From 790ed7ab47212fce7a1840132e8e0faf0cc1b925 Mon Sep 17 00:00:00 2001 From: Brian Flowers Date: Sun, 2 Jun 2024 21:40:21 -0400 Subject: [PATCH 1/1] Migration from github --- INSTALL | 30 + LICENSE | 661 + README.md | 8 + api.php | 918 + canvass.php | 167 + cccp-src.sh | 1 + common.php | 57 + css/canvass.css | 1 + css/common.css | 464 + css/leaflet.draw.css | 325 + css/login.css | 30 + css/pane1.css | 221 + css/pane2.css | 363 + css/phonebanking.css | 1 + css/research.css | 53 + css/settings.css | 40 + data/blockgroups.json | 792 + data/districts.json | 10 + data/precincts.json | 420 + data/school.json | 1 + data/stateLegisLower.json | 1 + data/stateLegisUpper.json | 1 + data/uscd.json | 1 + geocoder.sh | 26 + images/AddressLocate.png | Bin 0 -> 8784 bytes images/GPSLocate.png | Bin 0 -> 5007 bytes images/LastVoter.png | Bin 0 -> 8560 bytes images/ManualAdd.png | Bin 0 -> 12344 bytes images/Menu.png | Bin 0 -> 2573 bytes images/NearestVoter.png | Bin 0 -> 8636 bytes images/RefreshVoters.png | Bin 0 -> 14004 bytes images/cccp.png | Bin 0 -> 1448 bytes images/layers-2x.png | Bin 0 -> 1259 bytes images/layers.png | Bin 0 -> 696 bytes images/marker-icon-blue-hollow.png | Bin 0 -> 6302 bytes images/marker-icon-blue-light.png | Bin 0 -> 5965 bytes images/marker-icon-blue-small.png | Bin 0 -> 6424 bytes images/marker-icon-blue.png | Bin 0 -> 5903 bytes images/marker-icon-cash-green-light.png | Bin 0 -> 5684 bytes images/marker-icon-cash-green.png | Bin 0 -> 5703 bytes images/marker-icon-cash-red-light.png | Bin 0 -> 5695 bytes images/marker-icon-cash-red.png | Bin 0 -> 5711 bytes images/marker-icon-misc-green.png | Bin 0 -> 5898 bytes images/marker-icon-misc-orange.png | Bin 0 -> 5913 bytes images/marker-icon-misc-yellow.png | Bin 0 -> 5906 bytes images/marker-icon-purple-hollow.png | Bin 0 -> 6326 bytes images/marker-icon-purple-light.png | Bin 0 -> 5975 bytes images/marker-icon-purple-small.png | Bin 0 -> 6448 bytes images/marker-icon-purple.png | Bin 0 -> 5907 bytes images/marker-icon-red-hollow.png | Bin 0 -> 6308 bytes images/marker-icon-red-light.png | Bin 0 -> 5726 bytes images/marker-icon-red-small.png | Bin 0 -> 6423 bytes images/marker-icon-red.png | Bin 0 -> 5731 bytes images/marker-icon-rose-light.png | Bin 0 -> 6187 bytes images/marker-icon-rose.png | Bin 0 -> 6385 bytes images/marker-icon-tricolor.png | Bin 0 -> 6162 bytes images/marker-icon-white.png | Bin 0 -> 5499 bytes images/marker-icon.png | Bin 0 -> 1466 bytes images/marker-shadow.png | Bin 0 -> 618 bytes images/spritesheet-2x.png | Bin 0 -> 3581 bytes images/spritesheet.png | Bin 0 -> 1906 bytes images/spritesheet.svg | 156 + index.php | 55 + js/canvassing.js | 844 + js/common.js | 210 + js/contests.js | 115 + js/demographics.js | 222 + js/districts.js | 123 + js/dups.lst | 107428 +++++++++++++++++++++++++++++ js/leaflet.draw.js | 10 + js/license-table.html | 66 + js/login.js | 1 + js/phonebanking.js | 1 + js/precincts.js | 134 + js/settings.js | 134 + js/uscd.json | 1 + js/voters.js | 592 + login.php | 80 + phonebank.php | 65 + research.php | 233 + settings-api.php | 390 + settings.php | 546 + taskRunner.php | 958 + 83 files changed, 116956 insertions(+) create mode 100644 INSTALL create mode 100644 LICENSE create mode 100644 README.md create mode 100644 api.php create mode 100644 canvass.php create mode 100644 cccp-src.sh create mode 100644 common.php create mode 100644 css/canvass.css create mode 100644 css/common.css create mode 100644 css/leaflet.draw.css create mode 100644 css/login.css create mode 100644 css/pane1.css create mode 100644 css/pane2.css create mode 100644 css/phonebanking.css create mode 100644 css/research.css create mode 100644 css/settings.css create mode 100644 data/blockgroups.json create mode 100644 data/districts.json create mode 100644 data/precincts.json create mode 100644 data/school.json create mode 100644 data/stateLegisLower.json create mode 100644 data/stateLegisUpper.json create mode 100644 data/uscd.json create mode 100644 geocoder.sh create mode 100644 images/AddressLocate.png create mode 100644 images/GPSLocate.png create mode 100644 images/LastVoter.png create mode 100644 images/ManualAdd.png create mode 100644 images/Menu.png create mode 100644 images/NearestVoter.png create mode 100644 images/RefreshVoters.png create mode 100644 images/cccp.png create mode 100644 images/layers-2x.png create mode 100644 images/layers.png create mode 100644 images/marker-icon-blue-hollow.png create mode 100644 images/marker-icon-blue-light.png create mode 100644 images/marker-icon-blue-small.png create mode 100644 images/marker-icon-blue.png create mode 100644 images/marker-icon-cash-green-light.png create mode 100644 images/marker-icon-cash-green.png create mode 100644 images/marker-icon-cash-red-light.png create mode 100644 images/marker-icon-cash-red.png create mode 100644 images/marker-icon-misc-green.png create mode 100644 images/marker-icon-misc-orange.png create mode 100644 images/marker-icon-misc-yellow.png create mode 100644 images/marker-icon-purple-hollow.png create mode 100644 images/marker-icon-purple-light.png create mode 100644 images/marker-icon-purple-small.png create mode 100644 images/marker-icon-purple.png create mode 100644 images/marker-icon-red-hollow.png create mode 100644 images/marker-icon-red-light.png create mode 100644 images/marker-icon-red-small.png create mode 100644 images/marker-icon-red.png create mode 100644 images/marker-icon-rose-light.png create mode 100644 images/marker-icon-rose.png create mode 100644 images/marker-icon-tricolor.png create mode 100644 images/marker-icon-white.png create mode 100644 images/marker-icon.png create mode 100644 images/marker-shadow.png create mode 100644 images/spritesheet-2x.png create mode 100644 images/spritesheet.png create mode 100644 images/spritesheet.svg create mode 100644 index.php create mode 100644 js/canvassing.js create mode 100644 js/common.js create mode 100644 js/contests.js create mode 100644 js/demographics.js create mode 100644 js/districts.js create mode 100644 js/dups.lst create mode 100644 js/leaflet.draw.js create mode 100644 js/license-table.html create mode 100644 js/login.js create mode 100644 js/phonebanking.js create mode 100644 js/precincts.js create mode 100644 js/settings.js create mode 100644 js/uscd.json create mode 100644 js/voters.js create mode 100644 login.php create mode 100644 phonebank.php create mode 100644 research.php create mode 100644 settings-api.php create mode 100644 settings.php create mode 100644 taskRunner.php diff --git a/INSTALL b/INSTALL new file mode 100644 index 0000000..354ad7a --- /dev/null +++ b/INSTALL @@ -0,0 +1,30 @@ + +------------------------------------------------------------------------------- +ON DEBIAN SYSTEMS +------------------------------------------------------------------------------- + +sudo apt-get install apache2 php mariadb-server libapache2-mod-php php-mysql php-sqlite3 +sudo mysql_secure_installation +sudo apt-get install zip php-zip +sudo apt-get install php-geos + +##Install geos with geoPHP +##sudo apt-get install g++ cmake +##https://git.osgeo.org/gitea/geos/geos + +RECOMMEND UPDATING IN PHP.INI: +post_max_size = 512M +upload_max_filesize = 512M + +TASKRUNNER CRONTAB (as root) -- ensure taskRunner.log exists and is owned by the apache user: +0 * * * * nohup php /var/www/html/CCCP/taskRunner.php 1>>/var/www/html/CCCP/taskRunner.log 2>&1 + + + +------------------------------------------------------------------------------- +ON NON-DEBIAN SYSTEMS +------------------------------------------------------------------------------- + +If I ever do this I'll try to update the guide accordingly. + +Until then, check the Debian instructions and figure it out from there! diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..0ad25db --- /dev/null +++ b/LICENSE @@ -0,0 +1,661 @@ + GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for +software and other kinds of works, specifically designed to ensure +cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +our General Public Licenses are intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + Developers that use our General Public Licenses protect your rights +with two steps: (1) assert copyright on the software, and (2) offer +you this License which gives you legal permission to copy, distribute +and/or modify the software. + + A secondary benefit of defending all users' freedom is that +improvements made in alternate versions of the program, if they +receive widespread use, become available for other developers to +incorporate. Many developers of free software are heartened and +encouraged by the resulting cooperation. However, in the case of +software used on network servers, this result may fail to come about. +The GNU General Public License permits making a modified version and +letting the public access it on a server without ever releasing its +source code to the public. + + The GNU Affero General Public License is designed specifically to +ensure that, in such cases, the modified source code becomes available +to the community. It requires the operator of a network server to +provide the source code of the modified version running there to the +users of that server. Therefore, public use of a modified version, on +a publicly accessible server, gives the public access to the source +code of the modified version. + + An older license, called the Affero General Public License and +published by Affero, was designed to accomplish similar goals. This is +a different license, not a version of the Affero GPL, but Affero has +released a new version of the Affero GPL which permits relicensing under +this license. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU Affero General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the +Program, your modified version must prominently offer all users +interacting with it remotely through a computer network (if your version +supports such interaction) an opportunity to receive the Corresponding +Source of your version by providing access to the Corresponding Source +from a network server at no charge, through some standard or customary +means of facilitating copying of software. This Corresponding Source +shall include the Corresponding Source for any work covered by version 3 +of the GNU General Public License that is incorporated pursuant to the +following paragraph. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the work with which it is combined will remain governed by version +3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU Affero General Public License from time to time. Such new versions +will be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU Affero General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU Affero General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU Affero General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 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 Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer +network, you should also make sure that it provides a way for users to +get its source. For example, if your program is a web application, its +interface could display a "Source" link that leads users to an archive +of the code. There are many ways you could offer source, and different +solutions will be better for different programs; see section 13 for the +specific requirements. + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU AGPL, see +. diff --git a/README.md b/README.md new file mode 100644 index 0000000..1089f3b --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +NON-PUBLIC REPO; PLEASE DO NOT SHARE + +Unable to upload the data files listed below as they are larger than the 25MB github limit; can share those separately if needed; but should all be integrated into the main mariadb database +- blocks.json +- CanvassDB.sqlite3 +- DemographicDB.sqlite3 +- ElectionDB.sqlite3 +- VoterDB.sqlite3 diff --git a/api.php b/api.php new file mode 100644 index 0000000..8d382d3 --- /dev/null +++ b/api.php @@ -0,0 +1,918 @@ +. +*/ + +session_start(); +@ini_set('memory_limit', '1024M'); +set_time_limit(300); + +// Connect to MariaDB +$options = [ + PDO::ATTR_EMULATE_PREPARES => false, // Disable emulation mode for "real" prepared statements + PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC, // Make the default fetch be an associative array +]; +$dbh = new PDO("mysql:host=localhost;dbname=CCCP", "root", "yix", $options); + +$electionDB = new PDO("sqlite:data/ElectionDB.sqlite3"); +//$voterDB = new PDO("sqlite:data/VoterDB.sqlite3"); +//$canvassDB = new PDO("sqlite:data/CanvassDB.sqlite3"); +//$demographicsDB = new PDO("sqlite:data/DemographicDB.sqlite3"); + +// URL: ?get=precincts +// Fetch a list of precincts +// POST: contest [optional] -- select precincts involved in a particular contest(s) +// POST: district [optional] -- select precincts involved in a particular district(s) +if( isset($_GET['get']) && + $_GET['get'] == "precincts" ) { + $params = Array(); + if( !isset($_POST['contest']) ) { + $params = Array(); + } else { + $contests = explode(",", $_POST['contest']); + for($i = 0; $i < sizeof($contests); $i++) { + array_push($params, strtoupper($contests[$i])); + } + } + + $query = "SELECT DISTINCT substr('0000' || precinctId, -4, 4) as precinctId, precinctName, ". + "substr(precinctName, -5, -30) as precinctCity ". + "FROM results ". + (sizeof($params) > 0 ? + "WHERE UPPER(contest) IN (".str_repeat("?,",sizeof($paramss)-1)."?) AND year > 2020 " : + ""). + "ORDER BY precinctCity, precinctId ASC;"; + + $stmt = $electionDB -> prepare($query); + $stmt->execute($params); + $rows = $stmt->fetchAll(PDO::FETCH_ASSOC); + $retVal = []; + + foreach ($rows as $row) { + if( !isset($retVal[$row["precinctCity"]]) ) { + $retVal[$row["precinctCity"]] = []; + } + array_push($retVal[$row["precinctCity"]], $row); + } + print_r(json_encode($retVal)); + +// URL: ?get=districts +// Fetch the district details +// GET: id [optional] -- database ID of the area to retrieve the specific json +// GET: type [optional] -- type of district to fetch +} else if( isset($_GET['get']) && $_GET['get'] == "district" ) { + if( isset($_GET['id']) ) { + $query = "SELECT id, json ". + "FROM demographicArea ". + "WHERE id = ?;"; + $params = Array($_GET['id']); + } else if( isset($_GET['type']) ) { + $query = "SELECT distinct id, typeId ". + "FROM demographicArea ". + "WHERE type = ?"; // AND id NOT IN (SELECT distinct areaId FROM demographicStats);"; + $params = Array($_GET['type']); + } else { + $query = "SELECT distinct type ". + "FROM demographicArea "; //. +// "WHERE type NOT IN (SELECT distinct da.type FROM demographicStats ds, demographicArea da WHERE ds.areaId = da.id);"; + $params = Array(); + } + $stmt = $dbh -> prepare($query); + $stmt->execute($params); + $rows = $stmt->fetchAll(); + + print_r(json_encode($rows)); + +// URL: ?get=block +// Fetch the json for a particular demographic block +// GET: id [optional] -- a specific blockId to fetch +} else if( isset($_GET['get']) && $_GET['get'] == "block") { + $blockId = $_GET['id']; + $query = "SELECT typeId as blockId, json ". + "FROM demographicArea ". + "WHERE type = 'block' AND typeId LIKE '%".$blockId."';"; + + $stmt = $dbh -> prepare($query); + $stmt->execute($params); + $rows = $stmt->fetchAll(); + + print_r(json_encode($rows)); + +// URL: ?get=contests +// Fetch a list of all available contests +} else if( isset($_GET['get']) && $_GET['get'] == "contests" ) { + $query = "SELECT distinct c.year, UPPER(c.contest) as contest, t.typeName FROM contestTypes t, calculations c ". + "WHERE c.contest LIKE '%' || t.typeName || '%' ". + "AND c.contest NOT LIKE '1%' AND c.contest NOT LIKE '2%' ". + "AND c.contest NOT LIKE '3%' AND c.contest NOT LIKE '4%' ". + "AND c.contest NOT LIKE '5%' AND c.contest NOT LIKE '6%' ". + "AND c.contest NOT LIKE '7%' AND c.contest NOT LIKE '8%' ". + "AND c.contest NOT LIKE '9%' AND c.contest NOT LIKE '0%';"; + $stmt = $electionDB -> prepare($query); + $stmt->execute(); + $rows = $stmt->fetchAll(PDO::FETCH_ASSOC); + $retVal = []; + foreach ($rows as $row) { + if( !isset($retVal[$row["year"]]) ) { + $retVal[$row["year"]] = []; + } + if( !isset($retVal[$row["year"]][$row["typeName"]]) ) { + $retVal[$row["year"]][$row["typeName"]] = []; + } + array_push($retVal[$row["year"]][$row["typeName"]], $row); + } + print_r(json_encode($retVal)); + +//} else if( isset($_GET['get']) && $_GET['get'] == "demographics" ) { + +// URL: ?get=voterLocs +// fetch a list of voter locations (ie, to put pins in the map; NOT individual voter details) +// POST: parties -- csv list of parties to search for (ex: Democrat,Republican,Unaffiliated) +// history -- csv list of voter patterns to search for (ex: likely,unlikely,new,non) +// lists -- csv list of custom voter lists to include +// precincts -- csv list of precincts to restrict search to (ex: 0101,0102) +// minLat,minLon,maxLat,maxLon -- min/max coordinates to restrict search to +// pending -- show only voters not yet contacted +} else if( isset($_GET['get']) && $_GET['get'] == "voterLocs") { + $params = Array(); + $parties = Array(); + if( isset($_POST['parties']) && strlen($_POST['parties']) > 0) { + $parties = explode(",", $_POST['parties']); + for($i = 0; $i < sizeof($parties); $i++) { + array_push($params, strtoupper($parties[$i])); + } + } + + $history = ""; + if( isset($_POST['history']) && $_POST['history'] != "") { + $history = "AND (0 "; + $historyArr = explode(",", $_POST['history']); + for($i = 0; $i < sizeof($historyArr); $i++) { + if( $historyArr[$i] == "likely") { + $history .= "OR (voteCount >= 2) "; + } else if($historyArr[$i] == "unlikely") { + $history .= "OR (voteCount < 2 AND voteCount > 0) "; + } else if($historyArr[$i] == "non") { + $history .= "OR ((voteCount = 0 OR voteCount is null) AND voters.birthyear < 2000) "; + } else if($historyArr[$i] == "new") { + $history .= "OR ((voteCount = 0 OR voteCount is null) AND voters.birthyear > 2000) "; + } + } + $history .= ") "; + } + + $lists = Array(); + if( isset($_POST['lists']) && strlen($_POST['lists']) > 0 ) { + $lists = explode(",", $_POST['lists']); + for($i = 0; $i < sizeof($lists); $i++) { + array_push($params, $lists[$i]); + } + } + + $precincts = " "; + if( isset($_POST['precincts']) && strlen($_POST['precincts']) > 1 ) { + $precinctArr = explode(",", $_POST['precincts']); + $precincts .= " AND address.precinct IN(".str_repeat("?,", sizeof($precinctArr)-1)."?) "; + for($i = 0; $i < sizeof($precinctArr); $i++) { + array_push($params, $precinctArr[$i]); + } + } + + $latlon = " "; + if( isset($_POST['minLat']) && isset($_POST['minLon']) && isset($_POST['maxLat']) && isset($_POST['maxLon']) ) { + $latlon = " AND voters.latitude > ? AND voters.latitude < ?". + " AND voters.longitude > ? AND voters.longitude < ? "; + array_push($params, $_POST['minLat']); + array_push($params, $_POST['maxLat']); + array_push($params, $_POST['minLon']); + array_push($params, $_POST['maxLon']); + } + + + // GOAL: (Optionally) remove all contacted voters -- need to join with canvassing results (currently this is done in a second query below) + // Return location along with count of voters of each party/type...or just icon? + // These may need to alter how we account for 3k max + // Return an object: {"count": nnn, "overflow": true, voterLocs: [ {"display": {"history": non, "party": "Democrat"}, "lat": ..., "lon": ..., "address": ..., "count": ... } ] + + $query = "SELECT * FROM (SELECT voters.id as id, address.id as addressId, address.latitude,address.longitude,address.precinct,party,voters.birthyear,address.addressLine1, ". + (sizeof($lists) > 0 ? "list.icon, cv.listId, " : ""). + "(SELECT sum(voted) FROM voterHistory vh WHERE vh.voterId = voters.id) as voteCount ". + "FROM voters ". + (sizeof($lists) > 0 ? "LEFT JOIN customVoter cv ON voters.id = cv.voterId LEFT JOIN customLists list ON list.id = cv.listId " : ""). + ", voterAddresses address ". + "WHERE voters.addressId = address.id ". + (sizeof($lists) > 0 ? "AND (list.priority is null OR list.priority >= 0) ORDER BY list.priority DESC" : ""). + ") voters ". + "WHERE voters.longitude IS NOT NULL AND voters.latitude IS NOT NULL AND ((". + (sizeof($parties) > 0 ? + "(UPPER(voters.party) IN (".str_repeat("?,",sizeof($parties)-1)."?)" : + "(1 "). + $history. + (sizeof($parties)+strlen($history) > 0 ? "" : "AND 0 "). + (sizeof($lists) > 0 ? + ") OR (voters.listId IN (".str_repeat("?,",sizeof($lists)-1)."? )" : + ""). + "))) ". + $precincts. + $latlon. + "LIMIT 3000;"; + +//echo $query.PHP_EOL; +//print_r( $params ); +//print_r($dbh->errorInfo()); +//die(); + $stmt = $dbh -> prepare($query); +//print_r($dbh->errorInfo()); +//die(); + $stmt->execute($params); + $rows = $stmt->fetchAll(PDO::FETCH_ASSOC); + + // Reformat the results for display + $output = new stdClass; + $output->count = sizeOf($rows); + $output->overflow = $output->count==3000; + $output->voterLocs = Array(); + for($i = 0; $i < sizeOf($rows); $i++) { + $added = 0; + + // Exclude any that have already been canvassed + if(isset($_POST['pending'])) { + $cquery = "SELECT * FROM canvassResults WHERE voterId = ?;"; + $stmt = $dbh->prepare($cquery); + $stmt->execute(Array($rows[$i]['id'])); + $crows = $stmt->fetch(PDO::FETCH_ASSOC); + + if($crows != null) { + continue; + } + } + + // Set voter history flags + if($rows[$i]["voteCount"] >= 2) { + $history = "likely"; + } else if($rows[$i]["voteCount"] > 0 && $rows[$i]["voteCount"] < 2) { + $history = "likely"; + } else if((int)$rows[$i]["birthyear"] > 2000) { + $history = "new"; + } else { + $history = "non"; + } + + $icon = ""; + if(isset($rows[$i]["icon"])) { + $icon = $rows[$i]["icon"]; + } + + for($j = 0; $j < sizeOf($output->voterLocs); $j++) { + if($output->voterLocs[$j]->latitude == $rows[$i]['latitude'] && + $output->voterLocs[$j]->longitude == $rows[$i]['longitude']) { + $output->voterLocs[$j]->count++; + if( !isset($output->voterLocs[$j]->parties[$rows[$i]['party']]) ) { + $output->voterLocs[$j]->parties[$rows[$i]['party']] = 1; + } + $output->voterLocs[$j]->parties[$rows[$i]['party']]++; + if( !isset($output->voterLocs[$j]->histories[$history]) ) { + $output->voterLocs[$j]->histories[$history] = 1; + } + $output->voterLocs[$j]->histories[$history]++; + if( $icon != "" ) { + $output->voterLocs[$j]->icon = $icon; + } + $added = 1; + } + } + if($added == 0) { + $outputObj = new stdClass; + $outputObj->count = 1; + $outputObj->latitude = $rows[$i]['latitude']; + $outputObj->longitude = $rows[$i]['longitude']; + $outputObj->addressLine1 = $rows[$i]['addressLine1']; + $outputObj->parties = Array(); + $outputObj->parties[$rows[$i]['party']] = 1; + $outputObj->histories = Array(); + $outputObj->histories[$history] = 1; + if( $icon != "" ) { + $outputObj->icon = $icon; + } + array_push($output->voterLocs, $outputObj); + } + } + + for($i = 0; $i < sizeOf($output->voterLocs); $i++) { + $max = 0; + $party = ""; + $history = ""; + foreach($output->voterLocs[$i]->parties as $key => $count) { + if($count > $max) { + $max = $count; + $party = $key; + } + } + $max = 0; + foreach($output->voterLocs[$i]->histories as $key => $count) { + if($count > $max) { + $max = $count; + $history = $key; + } + } + $output->voterLocs[$i]->party = $party; + $output->voterLocs[$i]->history = $history; + } + + echo json_encode($output); + + +// URL: ?get=voterList +// fetch a list of voters at a particular location +// POST: lat,lon +// parties -- csv list of parties to include (ex: Democrat,Republican,Unaffiliated) +// history -- csv list of voter patterns to include (ex: likely,unlikely,new,non) +// lists -- csv list of ids of custom lists to search +} else if( isset($_GET['get']) && $_GET['get'] == "voterList") { + if( !isset($_GET['lat']) || !isset($_GET['lon']) ) { + echo "{}"; + die; + } + $params = [$_GET['lat'], $_GET['lon']]; + $parties = Array(); + if( isset($_POST['parties']) && strlen($_POST['parties']) > 0 ) { + $parties = explode(",", $_POST['parties']); + for($i = 0; $i < sizeof($parties); $i++) { + array_push($params, strtoupper($parties[$i])); + } + } + + $history = ""; + if( isset($_POST['history']) && $_POST['history'] != "") { + $history = "AND (0 "; + $historyArr = explode(",", $_POST['history']); + for($i = 0; $i < sizeof($historyArr); $i++) { + if( $historyArr[$i] == "likely") { + $history .= "OR (voteCount >= 2) "; + } else if($historyArr[$i] == "unlikely") { + $history .= "OR (voteCount < 2 AND voteCount > 0) "; + } else if($historyArr[$i] == "non") { + $history .= "OR ((voteCount = 0 OR voteCount is null) AND birthyear < 2000) "; + } else if($historyArr[$i] == "new") { + $history .= "OR ((voteCount = 0 OR voteCount is null) AND birthyear > 2000) "; + } + } + $history .= ") "; + } + + $lists = Array(); + if( isset($_POST['lists']) && strlen($_POST['lists']) > 0 ) { + $lists = explode(",", $_POST['lists']); + for($i = 0; $i < sizeof($lists); $i++) { + array_push($params, $lists[$i]); + } + } + +/* $query = "SELECT DISTINCT voters.id, voters.firstName, voters.middleName, voters.lastName, birthyear, ". + "phone, party, voterAddresses.addressLine1, voterAddresses.addressLine2, voterAddresses.city, voterAddresses.state, voterAddresses.zip, precinct, ". + "(SELECT sum(voted) FROM voterHistory vh WHERE vh.voterId = voters.id) as voteCount ". + "FROM voters, voterAddresses ". + (sizeof($lists) > 0 ? ", customLists list, customVoter cv " : ""). + "WHERE voters.addressId = voterAddresses.id ". + "AND voterAddresses.latitude LIKE ? AND voterAddresses.longitude LIKE ? AND ((". + (sizeof($parties) > 0 ? + "(UPPER(party) IN (".str_repeat("?,",sizeof($parties)-1)."?) " : + "("). + $history. + (sizeof($parties)+strlen($history) > 0 ? "" : "0"). + (sizeof($lists) > 0 ? + ") OR (list.id IN (".str_repeat("?,",sizeof($lists)-1)."?) AND list.id = cv.listId AND (cv.voterId = voters.id AND cv.addressId = voterAddresses.id) " : + ""). + "))); ";*/ + $query = "SELECT * FROM (SELECT voters.id as id, voters.firstName, voters.middleName, voters.lastName, voters.birthyear, party, ". + "address.id as addressId, address.latitude,address.longitude,address.precinct,address.addressLine1, address.addressLine2, ". + (sizeof($lists) > 0 ? "list.icon, cv.listId, " : ""). + "(SELECT sum(voted) FROM voterHistory vh WHERE vh.voterId = voters.id) as voteCount ". + "FROM voters ". + (sizeof($lists) > 0 ? "LEFT JOIN customVoter cv ON voters.id = cv.voterId LEFT JOIN customLists list ON list.id = cv.listId " : ""). + ", voterAddresses address ". + "WHERE voters.addressId = address.id ". + (sizeof($lists) > 0 ? "AND (list.priority is null OR list.priority >= 0) ORDER BY list.priority DESC" : ""). + ") voters ". + "WHERE voters.latitude LIKE ? AND voters.longitude LIKE ? AND ((". + (sizeof($parties) > 0 ? + "(UPPER(voters.party) IN (".str_repeat("?,",sizeof($parties)-1)."?)" : + "(1 "). + $history. + (sizeof($parties)+strlen($history) > 0 ? "" : "AND 0 "). + (sizeof($lists) > 0 ? + ") OR (voters.listId IN (".str_repeat("?,",sizeof($lists)-1)."? )" : + ""). + "))) ". + $precincts. + "LIMIT 3000;"; + + + + $stmt = $dbh->prepare($query); + $stmt->execute($params); + + $rows = $stmt->fetchAll(PDO::FETCH_ASSOC); + print_r( json_encode($rows) ); + +// URL: ?get=voterDetails +// fetch details of a particular voter +// POST: id +} else if( isset($_GET['get']) && $_GET['get'] == "voterDetails") { + if( !isset($_GET['id']) ) { + return "{}"; + } + $query = "SELECT voters.id, firstName, middleName, lastName, birthyear, ". + "phone, party, addressLine1, addressLine2, city, state, zip, precinct, ". + "CONCAT((SELECT sum(voted) FROM voterHistory vh ". + "WHERE vh.voterId = voters.id), ' of ', ". + "(SELECT max(v) FROM (SELECT sum(voted) as v FROM voterHistory vh2 ". + "GROUP BY vh2.voterId) subtab)) as history, ". + "(SELECT group_concat(year SEPARATOR ',') FROM voterHistory vh WHERE vh.voterId = voters.id) as historyStr ". + "FROM voters, voterAddresses ". + "WHERE voters.addressId = voterAddresses.id ". + "AND voters.id = ?;"; + + $stmt = $dbh->prepare($query); + $stmt->execute([$_GET['id']]); + $vrows = $stmt->fetchAll(PDO::FETCH_ASSOC); + + $query = "SELECT * FROM canvassResults WHERE voterId = ? ORDER BY timestamp DESC LIMIT 1;"; + $params = [$_GET['id']]; + $stmt = $dbh->prepare($query); + $stmt->execute($params); + $crows = $stmt->fetchAll(PDO::FETCH_ASSOC); + + $query = "SELECT * FROM customLists,customVoter WHERE customVoter.voterId = ? AND customVoter.listId = customLists.id ORDER BY priority DESC;"; + $params = [$_GET['id']]; + $stmt = $dbh->prepare($query); + $stmt->execute($params); + $cvrows = $stmt->fetchAll(PDO::FETCH_ASSOC); + for($i = 0; $i < sizeOf($cvrows); $i++) { + $cvrows[$i]['extras'] = json_decode($cvrows[$i]['extras']); + } + + $retVal = new stdClass(); + $retVal->voter = $vrows[0]; + $retVal->canvass = $crows[0]; + $retVal->custom = $cvrows; + print_r(json_encode($retVal)); + +// URL: ?get=turf +// fetch a list of turfs +} else if( isset($_GET['get']) && $_GET['get'] == "turf" ) { + $query = "SELECT t.id, t.name, t.json ". + "FROM turf t;"; + $stmt = $dbh->prepare($query); + $stmt->execute(); + $rows = $stmt->fetchAll(PDO::FETCH_ASSOC); + echo json_encode($rows); + + +// URL: ?get=demoAreas +// fetch a list of available demographic areas +} else if( isset($_GET['get']) && $_GET['get'] == "demoAreas") { + if( isset($_GET['type']) ) { + $types = Array(); + $types[0] = Array(); + $types[0]['type'] = $_GET['type']; + } else { + $query = "SELECT DISTINCT(type) FROM demographicArea WHERE id IN (SELECT DISTINCT(areaId) FROM demographicStats);"; + $stmt = $dbh->prepare($query); + $stmt->execute(); + $types = $stmt->fetchAll(); + } + + $areas = Array(); + foreach($types as $type) { + $query = "SELECT type, typeId, id as areaId, json FROM demographicArea WHERE type=? AND json!='';"; + $params= Array($type['type']); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + $rows = $stmt->fetchAll(); + array_push($areas, $rows); + } + + echo json_encode($areas); + +// URL: ?get=demoTypes +// fetch a list of avialable demographics for a given area +// POST: type -- the type of demographic area (ie, precinct, block, etc) +} else if( isset($_GET['get']) && $_GET['get'] == "demoTypes" ) { + if( isset($_GET['type']) ) { + $queryType = "AND da.type = ? "; + $params = Array($_GET['type']); + } else { + $queryType = ""; + $params = null; + } + + $query = "SELECT DISTINCT dd.* FROM demographicDefinitions dd, demographicStats ds, demographicArea da ". + "WHERE dd.id = ds.definitionId AND da.id = ds.areaId ". + $queryType." AND da.json != '';"; + + $stmt = $dbh->prepare($query); + $stmt->execute($params); + $rows = $stmt->fetchAll(); + + $retval = Array(); + $retval["Relative"] = Array(); + $retval["Absolute"] = Array(); + foreach($rows as $row) { + $category = trim($row['sourceName'], "0123456789")." (".$row['sourceId'].")"; + if( !isset($retval['Relative'][$category]) ) { + $retval['Relative'][$category] = Array(); + } + if( !isset($retval['Absolute'][$category]) ) { + $retval['Absolute'][$category] = Array(); + } + if($row['type'] == "R") { + array_push( $retval['Relative'][$category], $row ); + } else if($row['type'] == "A") { + array_push( $retval['Absolute'][$category], $row ); + } + } + print_r(json_encode($retval)); + +// URL: ?get=demos +// fetch the states for each demographic area for a given definition +// POST: id +} else if( isset($_GET['get']) && $_GET['get'] == "demos" ) { + if( !isset($_GET['id']) ) { + return "{}"; + } + $query = "SELECT da.id as id, dd.code as code, /*da.json as json,*/ ds.value as value FROM demographicArea da, ". + "(SELECT areaId, definitionId, value FROM demographicStats "./*WHERE value > 0.001*/") ds, ". + "demographicDefinitions dd WHERE dd.id = ds.definitionId AND da.id = ds.areaId AND ds.definitionId = ?;"; + + $stmt = $dbh->prepare($query); + $stmt->execute([$_GET['id']]); + $rows = $stmt->fetchAll(); + + print_r(json_encode($rows)); + +// URL: ?set=turf +// push a defined turf into the database +// POST: name -- name of the new turf +// turfPoints -- a list of latitude/longitude points defining the turf area +} else if( isset($_GET['set']) && $_GET['set'] == "turf" ) { + $name = $_POST['name']; + $points = $_POST['turfPoints']; + $query = "INSERT INTO turf(name, json) VALUES(?,?);"; + $stmt = $dbh->prepare($query); + $stmt->execute([$name, $points]); + $id = $dbh->lastInsertId(); + + echo '{"status": "OK", "id": '.$id.'}'; + +// URL: ?get=canvasses +// fetch a list of available canvasses +// POST: id (optional) +} else if( isset($_GET['get']) && $_GET['get'] == "canvasses") { + $query = "SELECT t.id, t.name, t.json ". + "FROM turf t"; + $params = []; + if( isset($_GET['id']) ) { + $query .= " WHERE t.id=?"; + $params = [$_GET['id']]; + } + + $stmt = $dbh->prepare($query); + $stmt->execute($params); + $rows = $stmt->fetchAll(PDO::FETCH_ASSOC); + + for($i = 0; $i < sizeof($rows); $i++) { + // Fetch the turf level stats + $query = "SELECT max(c.totalContacts) total, ". + "sum((SELECT count(distinct voterId) FROM canvassResults r WHERE r.canvassId = c.id)) madeContacts ". + "FROM canvasses c WHERE turfId = CAST(? AS INTEGER);"; + $stmt = $dbh->prepare($query); + $stmt->execute(Array($rows[$i]["id"])); + $irows = $stmt->fetchAll(PDO::FETCH_ASSOC); + $rows[$i]["totalContacts"] = isset($irows[0]["total"]) ? $irows[0]["total"] : 0; + $rows[$i]["madeContacts"] = isset($irows[0]["madeContacts"]) ? $irows[0]["madeContacts"] : 0; + + + // Fetch the canvasses in this turf + $query = "SELECT c.id, c.turfId, c.name, c.start, c.end, c.totalContacts, c.lastLoc, c.voterString, ". + "(SELECT count(distinct voterId) FROM canvassResults r WHERE r.canvassId = c.id) as madeContacts, ". + "(SELECT max(timestamp) FROM canvassResults r WHERE r.canvassId = c.id) as lastActive ". + "FROM canvasses c WHERE turfId = CAST(? AS INTEGER);"; + $stmt = $dbh->prepare($query); + $stmt->execute(Array($rows[$i]["id"])); + $irows = $stmt->fetchAll(PDO::FETCH_ASSOC); + $rows[$i]["canvasses"] = $irows; + } + + + print_r(json_encode($rows)); + +// URL: ?get=canvassResults +// fetch a list of results from a particular canvass +// GET: id -- id of the canvass to retrieve +// page [optional] -- which page of results to retrieve +// pageSize [optiona] -- number of results to retrieve +// format [optional] -- format=csv will provide a download of all results +} else if( isset($_GET['get']) && $_GET['get'] == "canvassResults") { + if( !isset($_GET['id']) ) { + return "{}"; + } + $id = $_GET['id']; + $page = isset($_GET['page']) ? $_GET['page'] : 0; + $pageSize = isset($_GET['pageSize']) ? $_GET['pageSize'] : 50; + + $query = "SELECT * FROM canvassResults WHERE canvassId=? ". + "ORDER BY timestamp DESC LIMIT ?,?;"; + $params= [$id, $page*$pageSize, $pageSize]; + $stmt = $dbh->prepare($query); + $stmt -> execute($params); + $rows = $stmt->fetchAll(PDO::FETCH_ASSOC); + + for($i = 0; $i < sizeOf($rows); $i++) { + $vid = $rows[$i]['voterId']; + $vquery = "SELECT firstName, lastName, birthyear, phone, party, addressLine1, addressLine2, city ". + "FROM voters, voterAddresses WHERE voters.addressId = voterAddresses.id AND voters.id=?;"; + $stmt = $dbh->prepare($vquery); + $stmt -> execute([$vid]); + $irow = $stmt->fetch(PDO::FETCH_ASSOC); + $rows[$i]['name'] = $irow['lastName'].", ".$irow['firstName']; + $rows[$i]['birthyear'] = $irow['birthyear']; + $rows[$i]['phone'] = $irow['phone']; + $rows[$i]['party'] = $irow['party']; + $rows[$i]['address'] = $irow['addressLine1']." ".$irow['addressLine2']; + $rows[$i]['city'] = $irow['city']; + } + + if(isset($_GET['format']) && $_GET['format'] == "csv") { + header('Content-Disposition: attachment; filename="canvassResults_'.$id.'.csv";'); + echo "result".str_replace("voterId", "voter", implode(",", array_keys($rows[0]))).PHP_EOL; + for($i = 0; $i < sizeOf($rows); $i++) { + echo implode(",", $rows[$i]).PHP_EOL; + } + } else { + echo json_encode($rows); + } + +// URL: ?set=canvass +// Update an existing canvass details +// POST: id +// name +// start (optional) +// end (optional) +// turfId +// voterStr (optional) +} else if( isset($_GET['set']) && $_GET['set'] == "canvass") { + $id = $_POST['id']; + $name = $_POST['name']; + $start = isset($_POST['start']) ? date ('Y-m-d H:i:s', $_POST['start']/1000) : '0000-00-00 00:00:00'; + $end = isset($_POST['end']) ? date ('Y-m-d H:i:s', $_POST['end']/1000) : '0000-00-00 00:00:00'; + $turf = $_POST['turfId']; + $lastLoc = isset($_POST['location']) ? $_POST['lastLoc'] : null; + if( isset($_POST['voterStr'] ) ) { + $voterStr = $_POST['voterStr']; + $voterArr = explode($voterStr, "&"); + } + $voterObj; + + if( isset($_POST['id']) && !isset($_POST['voterStr']) ) { + $query = "UPDATE canvasses SET start=?, end=? WHERE id=? AND start = '0000-00-00 00:00:00';"; + $params = [$start, $end, $id]; + $stmt = $dbh->prepare($query); + $stmt->execute($params); + print_r(json_encode($dbh->errorInfo())); + return; + } + + for($i = 0; $i < sizeof($voterArr); $i++) { + $kvarr = explode($voterArr[$i], "="); + $key = $kvarr[0]; + $val = isset($kvarr[1]) ? $kvarr[1] : ""; + $voterObj[$key] = $val; + } + + // Get the approximate number of eligible voters + $params = Array(); + if( !isset($voterObj["parties"]) ) { + $parties = Array(); + } else { + $parties = explode(",", $voterObj["parties"]); + for($i = 0; $i < sizeof($parties); $i++) { + array_push($params, $parties[$i]); + } + } + + $history = " "; + if( isset($voterObj["history"]) && $voterObj["history"] != "") { + $history = "AND (0 "; + $historyArr = explode(",", $voterObj["history"]); + for($i = 0; $i < sizeof($historyArr); $i++) { + if( $historyArr[$i] == "likely") { + $history .= "OR (voteCount >= 2) "; + } else if($historyArr[$i] == "unlikely") { + $history .= "OR (voteCount < 2 AND voteCount > 0) "; + } else if($historyArr[$i] == "non") { + $history .= "OR ((voteCount == 0 OR voteCount is null) AND CAST(SUBSTR(birthdate,0,5) AS INTEGER) < 2000) "; + } else if($historyArr[$i] == "new") { + $history .= "OR ((voteCount == 0 OR voteCount is null) AND CAST(SUBSTR(birthdate,0,5) AS INTEGER) > 2000) "; + } + } + $history .= ") "; + } + + $precincts = " "; + if( isset($voterObj["precincts"]) && strlen($voterObj["precincts"]) > 1 ) { + $precinctArr = explode(",", $voterObj["precincts"]); + $precincts .= " AND address.precinct IN(".str_repeat("?,", sizeof($precinctArr)-1)."?) "; + for($i = 0; $i < sizeof($precinctArr); $i++) { + array_push($params, $precinctArr[$i]); + } + } + + $query = "SELECT json FROM turf WHERE id=?"; + $stmt = $dbh->prepare($query); + $stmt->execute([$turf]); + $rows = $stmt->fetchAll(PDO::FETCH_ASSOC); + $minLat = null; $minLon = null; $maxLat = null; $maxLon = null; + $row = json_decode($rows[0]['json']); + + for($i = 0; $i < sizeof($row); $i++) { + if($minLat == null || $minLat > $row[$i]->lat) { + $minLat = $row[$i]->lat; + } + if($maxLat == null || $maxLat < $row[$i]->lat) { + $maxLat = $row[$i]->lat; + } + if($minLon == null || $minLon > $row[$i]->lng) { + $minLon = $row[$i]->lng; + } + if($maxLon == null || $maxLon < $row[$i]->lng) { + $maxLon = $row[$i]->lng; + } + } + $latlon = " AND address.latitude > ? AND address.latitude < ?". + " AND address.longitude > ? AND address.longitude < ? "; + array_push($params, $minLat); + array_push($params, $maxLat); + array_push($params, $minLon); + array_push($params, $maxLon); + + $query = "SELECT count(*) as c ". + "FROM voters, voterAddresses address ". + "WHERE voters.addressId = address.id ". + "AND address.longitude IS NOT NULL AND address.latitude IS NOT NULL ". + (sizeof($parties) > 0 ? + "AND party IN (".str_repeat("?,",sizeof($parties)-1)."?) " : + ""). + $history. + $precincts. + $latlon; + + $stmt = $dbh -> prepare($query); + $stmt->execute($params); + $rows = $stmt->fetchAll(PDO::FETCH_ASSOC); + $voterCount = $rows[0]['c']; + + + if( isset($_POST['id']) ) { + $query = "UPDATE canvasses SET "; + $params = []; + if( $name ) { + $query .= "name=? "; + array_push($params, $name); + } + if( $start ) { + $query .= "start=? "; + array_push($params, $start); + } + if( $end ) { + $query .= "end=? "; + array_push($params, $end); + } + if( $name ) { + $query .= "lastLoc=? "; + array_push($params, $lastLoc); + } + $stmt = $dbh->prepare($query); + $stmt->execute($params); + } else { + $query = "INSERT INTO canvasses(name, start, end, turfId, lastLoc, totalContacts, voterString) ". + "VALUES(?,?,?,?,?,?,?);"; + $params = [$name, $start, $end, $turf, $lastLoc, $voterCount, $voterStr]; + + $stmt = $dbh->prepare($query); + $stmt->execute($params); + } + print_r(json_encode($dbh->errorInfo())); + +// URL: ?set=canvassResult +// Insert voter details into the canvassResults table +// POST: id +// supportPct +// notes +// corrections +// dnc +// priority +// firstName +// middleName +// lastName +// birthdate +// sex +// age +// phone +// party +// address +// city +// state +// zip +} else if( isset($_GET['set']) && $_GET['set'] == "canvassResult") { + $corrections = $_POST["corrections"] == "true" ? 1 : 0; + $dnc = $_POST["dnc"] == "true" ? 1 : 0; + $id = $_POST['id']; + $canvassId = $_POST['canvassId']; + $notes = $_POST['notes']; + $priority = $_POST['priority'] == "true" ? 1 : 0; + $supportPct = $_POST['supportPct']; + if($notes == "") { + $notes = " "; + } + + if( isset($_POST['firstName']) ) { + $fname = isset($_POST['firstName']) ? $_POST['firstName'] : ""; + $mname = isset($_POST['middleName'])? $_POST['middleName']: ""; + $lname = isset($_POST['lastName']) ? $_POST['lastName'] : ""; + $bdate = isset($_POST['birthdate']) ? $_POST['birthdate'] : ""; + $sex = isset($_POST['sex']) ? $_POST['sex'] : ""; + $age = isset($_POST['age']) ? $_POST['age'] : 0; + $phone = isset($_POST['phone']) ? $_POST['phone'] : ""; + $party = isset($_POST['party']) ? $_POST['party'] : ""; + $lat = isset($_POST['lat']) ? $_POST['lat'] : 0; + $lon = isset($_POST['lon']) ? $_POST['lon'] : 0; + $address = isset($_POST['address']) ? $_POST['address'] : ""; + $city = isset($_POST['city']) ? $_POST['city'] : ""; + $state = isset($_POST['state']) ? $_POST['state'] : ""; + $zip = isset($_POST['zip']) ? $_POST['zip'] : ""; + $precinct= isset($_POST['precinct']) ? $_POST['precinct'] : ""; + $query = "INSERT INTO voterAddress(latitude, longitude, address, city, state, zip, precinct) ". + "VALUES(?, ?, ?, ?, ?, ?, ?); "; + $params = [$lat, $lon, $address, $city, $state, $zip, $precinct]; + $stmt = $dbh->prepare($query); + $stmt->execute($params); + if( $dbh->errorInfo()[0] != "00000") { + echo json_encode($dbh->errorInfo()); + die(); + } + $aid = $dbh->lastInsertId(); + + $query = "INSERT INTO voter(firstName, middleName, lastName, birthdate, sex, age, phone, party, addressId) ". + "VALUES(?,?,?,?,?,?,?,?,?); "; + $params = [$fname, $mname, $lname, $bdate, $sex, $age, $phone, $party, $aid]; + $stmt = $dbh->prepare($query); + $stmt->execute($params); + if( $dbh->errorInfo()[0] != "00000") { + echo json_encode($dbh->errorInfo()); + die(); + } + $id = $dbh->lastInsertId(); + } + + $query = "INSERT INTO canvassResults(voterId, canvassId, timestamp, userId, contactStatus, ". + "contactMethod, estSupportPct, notes, correctionsNeeded, priority, noContact) ". + "VALUES(?, ?, CURRENT_TIMESTAMP, ?, ?, ?, ?, ?, ?, ?, ?);"; + $params = [$id, $canvassId, time(), $_SESSION['userId'], "Canvass", $supportPct, $notes, $corrections, $priority, $dnc]; + $stmt = $dbh->prepare($query); + $stmt->execute($params); + print_r(json_encode($dbh->errorInfo())); + +// URL: ?delete=canvass +// Delete an existing canvass details +// POST: id +} else if( isset($_GET['delete']) && $_GET['delete'] == "canvass" & isset($_POST['id']) ) { + $id = $_POST['id']; + + $query = "DELETE FROM canvassResults WHERE canvassId=?;"; + $params = [$id]; + $stmt = $dbh->prepare($query); + $stmt->execute($params); + + $query = "DELETE FROM canvasses WHERE id=?;"; + $params = [$id]; + $stmt = $dbh->prepare($query); + $stmt->execute($params); + print_r(json_encode($dbh->errorInfo())); + return; +} + + +?> diff --git a/canvass.php b/canvass.php new file mode 100644 index 0000000..b820b68 --- /dev/null +++ b/canvass.php @@ -0,0 +1,167 @@ + + + + + + + + + + + + + + + + + + + + + + + + + CCCP: Cargobike Community Canvassing Program + + + + Canvassing | CCCP: Cargobike Community Canvassing Program + + + +
+
+ Content is loading...please stand by... + (0) +
+ + Home | Canvassing + +
+Canvassing +
+
+
+
+
+ + + + Hide Menu + + +
+ +
+
+ Content is loading...please stand by... + (0) +
+
+ +
+
+
+ +
+ + + + diff --git a/cccp-src.sh b/cccp-src.sh new file mode 100644 index 0000000..b7e5c83 --- /dev/null +++ b/cccp-src.sh @@ -0,0 +1 @@ +tar -cf cccp-src.tar css images js LICENSE INSTALL *.php diff --git a/common.php b/common.php new file mode 100644 index 0000000..ec8e32d --- /dev/null +++ b/common.php @@ -0,0 +1,57 @@ + + +License Info + + + +EOF; +} +?> diff --git a/css/canvass.css b/css/canvass.css new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/css/canvass.css @@ -0,0 +1 @@ + diff --git a/css/common.css b/css/common.css new file mode 100644 index 0000000..25f41bb --- /dev/null +++ b/css/common.css @@ -0,0 +1,464 @@ +/* +* This file is part of the Cargobike Community Canvassing Program (CCCP). +* Copyright 2023, Brian Flowers, SlightlyCyberpunk.com +* +* CCCP is free software: you can redistribute it and/or modify it under the terms +* of the GNU Affero General Public License as published by the Free Software +* Foundation, either version 3 of the License, or (at your option) any later version. +* +* CCCP 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 Affero General Public License for more details. + +* You should have received a copy of the Affero GNU General Public License along with CCCP. +* If not, see . +*/ + + +body { +} + +#breadcrumb { +/* display: block; + margin: 0.5em 0em; + font-size: 1.5em; + font-weight: bold; + width: calc(100% - 2em); + border: 2px solid black; + background-color: #FCC; + border-radius: 0.5em; + padding: 0.5em 1em;*/ + font-weight: bold; + color: #FEE; +} + +#breadcrub a:visited { + color: #CCC; +} + +#toastDiv { + position: fixed; + bottom: 2em; + left: 25%; + width: 50%; + height: 3em; + display: block; + padding: .5em; + color: white; + background-color: #422; + opacity: 0.9; + border-radius: 0.5em; + z-index: 1500; + text-align: center; + border: 2px solid yellow; + font-weight: bold; + transition: opacity 1s; +} + +#loadingIndicator { + display: none; + background-color: yellow; + font-weight: bold; + font-size: larger; + text-align: center; + position: fixed; + top: 0px; + left: 0px; + z-index: 1000; + width: inherit; + padding: 0em 2.6em; +} + +#map { + display: inline-block; + height: 100%; + width: 50%; + position: fixed; + top: 0px; + left: 50%; + z-index: 0; +} + +#map.full { + width: 100%; + left: 0%; +} + +#details { + display: none; + height: 100%; + width: 50%; + position: fixed; + top: 0px; + left: 50%; + z-index: 0; + font-size: 2em; + padding: 1em; + overflow-y: scroll; +} + +#details table { + border: 1px; + border-collapse: collapse; + margin-bottom: 4em; + width: 95%; +} + +#details td, #details th { + font-size: 2em; + text-align: left; + border: 1px solid black; +} + +#details label { + display: block; + font-weight: bold; +} + +#details textarea { + width: 90%; + height: 20em; + max-height: 30%; + margin-bottom: 2em; +} + +#details [type=range] { + width: 79%; + margin-bottom: 1em; +} + +#details button { + font-size: 2em; +} + +#canvassToolbar button.watching { + border: 6px solid red; +} + +#details button.unsaved { + background-color: red; +} + +#details #supportText { + width: 9%; + height: 2em; + margin-left: 1%; + vertical-align: top; +} + +#details [type=checkbox] { + transform: scale(3); + width: 3em; +} + +#details.full { + width: 100%; + left: 0%; +} + +#details th[colspan] { + text-align: center; +} + +#mapReturn { + font-size: 2em; + text-align: center; + position: absolute; +/* bottom: 1em;*/ + margin-left: -5em; + left: 50%; + width: 10em; +} + +#detailsControls { + padding: 0em 0em 5em 0em; +} + +#controls { + display: inline-block; + width: calc(50% - 6em); + height: 100%; + position: fixed; + top: 0px; + left: 0px; + padding: 0em 1em; + overflow-y: scroll; + scrollbar-width: thin; + z-index: 100; + background: white; + transition: height .2s, background-color .2s; + background-color: #400; + border-right: 3px solid black; + padding-top: .5em; +} + +#controls.min { + height: 6.8em; + padding: 0em; + background-color: transparent; + transition: height .2s, background-color .2s; +} + +#blackout { + width: 100%; + height: 100%; + background-color: black; + opacity: 0.8; + z-index: 1000; + position: absolute; +} + +#turfNameEntry { + position: absolute; + top: 40%; + left: 20%; + width: 60%; + z-index: 1500; + background-color: white; + text-align: center; + vertical-align: middle; +} + +@media screen and (orientation: portrait), (max-width: 600px) { + #controls { + position: fixed; + width: calc(100% - 6em); + top: 0px; + left: 0px; + } + + #map, #map.full { + width: 100%; + left: 0%; + } + + .leaflet-top, .leaflet-left { + position: fixed; + top: 8em !important; + left: 1em !important; + font-size: 2em; + } + + #details { +/* padding-top: 12em;*/ + width: 100%; + left: 0%; + height: calc(100% /*- 12em*/); + z-index: 0; + } +} + +.dataset { + position: relative; + top: 0px; + left: 0px; + width: 100%; + border: 3px solid; + border-collapse: collapse; + display: block; +} + + + +/*td, th { + border: 1px solid black; + min-width: 10%; +} + +tr { + width: 100%; + border: 3px solid; + border-color: inherit; +} + +th { + background-color: #FCC; +}*/ + +.category { + position: relative; + width: 100%; + display: inline-block; + text-align: left; + border-radius: .2em; + font-size: 2em; + margin-top: 1em; + padding: 0em .5em; + font-weight: bold; + text-decoration: none; + color: #FEE; + font-size: 2em; +/* background-color: #844;*/ + border-top: 2px solid white; + box-sizing: border-box; +} + +.category .toggle { + font-size: 0.8em; + display: inline-block; + border: 1px solid black; + border-radius: 0.2em; + width: 1em; + height: 0.8em; + padding-bottom: 0.2em; + margin-right: 0.5em; + text-align: center; + line-height: 1; +/* background-color: #866;*/ + background-color: #FCC; + color: #300; +} + +.category .toggle:hover { + background-color: #800; +} + +.category .list { + position: relative; + font-size: 0.7em; + margin: 0em; + padding: 1em; +} + +.category .list input { + vertical-align: middle; +} + +.category table, .category tr { + width: 100%; +} + +.subcategory { + margin-left: 1em; + margin-right: 1em; + margin-top: 1em; + margin-bottom:1em; + color: #FEE; + border-bottom: 1px dashed #FEE; +} + +#canvassing-list .subcategory input { + width: 100%; +} + +#canvassing-list .subcategory tr.new { + display: block; + margin-top: .8em; + margin-left: 1.3em; +} + +/*.nav:hover, .nav:active { + color: #FCC; + background-color: #C00; +}*/ + +.nav.on { + background-color: #C00; + color: #FCC; +} + +.nav.top { + width: calc(33% - 0.1em); +} + +.nav.info { + font-size: 1em; + height: 6em; + border-radius: 2em; + margin: .2em 0em; + padding: 1em 0em; +} + +.icon-img { + max-height: 1.6em; + margin-right: 100%; +} + +#voterSel { + height: 2em; +} + +#canvassToolbar { + position: fixed; + display: block; + bottom: 0em; + width: inherit; + z-index: 1000; + text-align: center; +} + +#canvassToolbar button { + max-width: 15%; + max-height: 15vw; + background-color: #FEE; + border-radius: 1em; + padding: 5px; + margin: 2px; + transition: width 1s; +} + +#canvassToolbar img { + max-width: calc(15vw - 10px); + max-height: calc(15vw - 10px); +} + +#geocoderAddrInput, #geocoderAddrInputSubmit { + width: 0px; + height: 3em; + padding: 0px; + margin: 0px; + transition: width 1s; +} + +#canvassToolbar.addrInput button, #canvassToolbar.addrInput button img { + width: 0px; + margin: 0px; + padding: 0px; +} + +#canvassToolbar.addrInput #geocoderAddrInput { + width: 50%; + max-width: 80%; +} + +#canvassToolbar.addrInput #geocoderAddrInputSubmit { + min-width: 10%; +} + +#detailsTable .notesCell { + border-bottom: 6px solid black; +} + +#paginator { + height: 2em; + position: relative; +} + +#paginator a:last-child { + position: absolute; + right: 2em; +} + +#paginator a { + padding: 0em 1em; +} + +.markerSelector { + font-size: 4em; + padding: 2px 6px; +} + +.markerSelector img { + height: .5em; + display: inline-block; +} + +#tasksList { + display: block; + z-index: 100; + position: fixed; + bottom: 0px; + right: 0px; + background-color: FCC; + padding: 0em 2em 2em 1em; +} diff --git a/css/leaflet.draw.css b/css/leaflet.draw.css new file mode 100644 index 0000000..dffca06 --- /dev/null +++ b/css/leaflet.draw.css @@ -0,0 +1,325 @@ +/* ================================================================== */ +/* Toolbars +/* ================================================================== */ + +.leaflet-draw-section { + position: relative; +} + +.leaflet-draw-toolbar { + margin-top: 12px; +} + +.leaflet-draw-toolbar-top { + margin-top: 0; +} + +.leaflet-draw-toolbar-notop a:first-child { + border-top-right-radius: 0; +} + +.leaflet-draw-toolbar-nobottom a:last-child { + border-bottom-right-radius: 0; +} + +.leaflet-draw-toolbar a { + background-image: url('images/spritesheet.png'); + background-image: linear-gradient(transparent, transparent), url('images/spritesheet.svg'); + background-repeat: no-repeat; + background-size: 300px 30px; + background-clip: padding-box; +} + +.leaflet-retina .leaflet-draw-toolbar a { + background-image: url('images/spritesheet-2x.png'); + background-image: linear-gradient(transparent, transparent), url('images/spritesheet.svg'); +} + +.leaflet-draw a { + display: block; + text-align: center; + text-decoration: none; +} + +.leaflet-draw a .sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + border: 0; +} + +/* ================================================================== */ +/* Toolbar actions menu +/* ================================================================== */ + +.leaflet-draw-actions { + display: none; + list-style: none; + margin: 0; + padding: 0; + position: absolute; + left: 26px; /* leaflet-draw-toolbar.left + leaflet-draw-toolbar.width */ + top: 0; + white-space: nowrap; +} + +.leaflet-touch .leaflet-draw-actions { + left: 32px; +} + +.leaflet-right .leaflet-draw-actions { + right: 26px; + left: auto; +} + +.leaflet-touch .leaflet-right .leaflet-draw-actions { + right: 32px; + left: auto; +} + +.leaflet-draw-actions li { + display: inline-block; +} + +.leaflet-draw-actions li:first-child a { + border-left: none; +} + +.leaflet-draw-actions li:last-child a { + -webkit-border-radius: 0 4px 4px 0; + border-radius: 0 4px 4px 0; +} + +.leaflet-right .leaflet-draw-actions li:last-child a { + -webkit-border-radius: 0; + border-radius: 0; +} + +.leaflet-right .leaflet-draw-actions li:first-child a { + -webkit-border-radius: 4px 0 0 4px; + border-radius: 4px 0 0 4px; +} + +.leaflet-draw-actions a { + background-color: #919187; + border-left: 1px solid #AAA; + color: #FFF; + font: 11px/19px "Helvetica Neue", Arial, Helvetica, sans-serif; + line-height: 28px; + text-decoration: none; + padding-left: 10px; + padding-right: 10px; + height: 28px; +} + +.leaflet-touch .leaflet-draw-actions a { + font-size: 12px; + line-height: 30px; + height: 30px; +} + +.leaflet-draw-actions-bottom { + margin-top: 0; +} + +.leaflet-draw-actions-top { + margin-top: 1px; +} + +.leaflet-draw-actions-top a, +.leaflet-draw-actions-bottom a { + height: 27px; + line-height: 27px; +} + +.leaflet-draw-actions a:hover { + background-color: #A0A098; +} + +.leaflet-draw-actions-top.leaflet-draw-actions-bottom a { + height: 26px; + line-height: 26px; +} + +/* ================================================================== */ +/* Draw toolbar +/* ================================================================== */ + +.leaflet-draw-toolbar .leaflet-draw-draw-polyline { + background-position: -2px -2px; +} + +.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polyline { + background-position: 0 -1px; +} + +.leaflet-draw-toolbar .leaflet-draw-draw-polygon { + background-position: -31px -2px; +} + +.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polygon { + background-position: -29px -1px; +} + +.leaflet-draw-toolbar .leaflet-draw-draw-rectangle { + background-position: -62px -2px; +} + +.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-rectangle { + background-position: -60px -1px; +} + +.leaflet-draw-toolbar .leaflet-draw-draw-circle { + background-position: -92px -2px; +} + +.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circle { + background-position: -90px -1px; +} + +.leaflet-draw-toolbar .leaflet-draw-draw-marker { + background-position: -122px -2px; +} + +.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-marker { + background-position: -120px -1px; +} + +.leaflet-draw-toolbar .leaflet-draw-draw-circlemarker { + background-position: -273px -2px; +} + +.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circlemarker { + background-position: -271px -1px; +} + +/* ================================================================== */ +/* Edit toolbar +/* ================================================================== */ + +.leaflet-draw-toolbar .leaflet-draw-edit-edit { + background-position: -152px -2px; +} + +.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit { + background-position: -150px -1px; +} + +.leaflet-draw-toolbar .leaflet-draw-edit-remove { + background-position: -182px -2px; +} + +.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove { + background-position: -180px -1px; +} + +.leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled { + background-position: -212px -2px; +} + +.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled { + background-position: -210px -1px; +} + +.leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled { + background-position: -242px -2px; +} + +.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled { + background-position: -240px -2px; +} + +/* ================================================================== */ +/* Drawing styles +/* ================================================================== */ + +.leaflet-mouse-marker { + background-color: #fff; + cursor: crosshair; +} + +.leaflet-draw-tooltip { + background: rgb(54, 54, 54); + background: rgba(0, 0, 0, 0.5); + border: 1px solid transparent; + -webkit-border-radius: 4px; + border-radius: 4px; + color: #fff; + font: 12px/18px "Helvetica Neue", Arial, Helvetica, sans-serif; + margin-left: 20px; + margin-top: -21px; + padding: 4px 8px; + position: absolute; + visibility: hidden; + white-space: nowrap; + z-index: 6; +} + +.leaflet-draw-tooltip:before { + border-right: 6px solid black; + border-right-color: rgba(0, 0, 0, 0.5); + border-top: 6px solid transparent; + border-bottom: 6px solid transparent; + content: ""; + position: absolute; + top: 7px; + left: -7px; +} + +.leaflet-error-draw-tooltip { + background-color: #F2DEDE; + border: 1px solid #E6B6BD; + color: #B94A48; +} + +.leaflet-error-draw-tooltip:before { + border-right-color: #E6B6BD; +} + +.leaflet-draw-tooltip-single { + margin-top: -12px +} + +.leaflet-draw-tooltip-subtext { + color: #f8d5e4; +} + +.leaflet-draw-guide-dash { + font-size: 1%; + opacity: 0.6; + position: absolute; + width: 5px; + height: 5px; +} + +/* ================================================================== */ +/* Edit styles +/* ================================================================== */ + +.leaflet-edit-marker-selected { + background-color: rgba(254, 87, 161, 0.1); + border: 4px dashed rgba(254, 87, 161, 0.6); + -webkit-border-radius: 4px; + border-radius: 4px; + box-sizing: content-box; +} + +.leaflet-edit-move { + cursor: move; +} + +.leaflet-edit-resize { + cursor: pointer; +} + +/* ================================================================== */ +/* Old IE styles +/* ================================================================== */ + +.leaflet-oldie .leaflet-draw-toolbar { + border: 1px solid #999; +} diff --git a/css/login.css b/css/login.css new file mode 100644 index 0000000..a680ed8 --- /dev/null +++ b/css/login.css @@ -0,0 +1,30 @@ +body { + background-color: #300; + text-align: center; + color: white; + font-weight: bold; +} + +#loginPrompt { + text-align: center; + border: 3px solid white; + border-radius: 1em; +/* position: absolute;*/ + display: inline-block; +/* top: calc(50% - 5em);*/ + margin-top: 25%; + min-height: 10em; + padding: 1em; +} + +#loginPrompt label { + display: block; + margin-top: 1em; +} + +#loginPrompt input[type=submit] { + display: block; + width: 50%; + margin-left: 25%; + margin-top: 0.5em; +} diff --git a/css/pane1.css b/css/pane1.css new file mode 100644 index 0000000..0123b93 --- /dev/null +++ b/css/pane1.css @@ -0,0 +1,221 @@ +/* +* This file is part of the Cargobike Community Canvassing Program (CCCP). +* Copyright 2023, Brian Flowers, SlightlyCyberpunk.com +* +* CCCP is free software: you can redistribute it and/or modify it under the terms +* of the GNU Affero General Public License as published by the Free Software +* Foundation, either version 3 of the License, or (at your option) any later version. +* +* CCCP 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 Affero General Public License for more details. + +* You should have received a copy of the Affero GNU General Public License along with CCCP. +* If not, see . +*/ + + +body { +} + +#breadcrumb { + font-weight: bold; + color: #FEE; + background-color: #000; + display: block; + margin: -.5em -1em; + padding: .4em 2em; + border-bottom:1px solid #FEE; +} + +a { + color: #FEE; +} + +a:visited { + color: #EEF; +} + +a.category { + text-decoration: underline; + padding-top: 0.25em; + margin-bottom: -0.5em; + padding-left: 1em; +} + +#toastDiv { + position: fixed; + bottom: 2em; + left: 25%; + width: 50%; + height: 3em; + display: block; + padding: .5em; + color: white; + background-color: #422; + opacity: 0.9; + border-radius: 0.5em; + z-index: 1500; + text-align: center; + border: 2px solid yellow; + font-weight: bold; + transition: opacity 1s; +} + +.loadingIndicator { + display: none; + visibility: hidden; + background-color: yellow; + font-weight: bold; + font-size: larger; + text-align: center; + padding: 0em 1em; + width: 100%; + margin-left: -1em; + margin-top: -0.5em; + height: 2em; +} + +#controls { + display: inline-block; + width: calc(50% - 2em); + height: 100%; + position: fixed; + top: 0px; + left: 0px; + padding: 0em 1em; + overflow-y: scroll; + scrollbar-width: thin; + z-index: 100; + transition: height .2s, background-color .2s; + background-color: #300; + border-right: 3px solid black; + padding-top: .5em; +} + +#controls.min { + height: 6.8em; + padding: 0em; + background-color: transparent; + transition: height .2s, background-color .2s; +} + +#blackout { + width: 100%; + height: 100%; + background-color: black; + opacity: 0.8; + z-index: 1000; + position: absolute; +} + +#licenseInfo { + background-color: #100; + padding: 0.2em; + margin-top: 2em; +} + +@media screen and (orientation: portrait), (max-width: 600px) { + #controls { + position: fixed; + width: calc(100% - 2em); + top: 0px; + left: 0px; + } +} + +.category { + position: relative; + width: 100%; + display: inline-block; + text-align: left; + border-radius: .2em; + font-size: 2em; + margin-top: 1em; + padding: 0em .5em; + font-weight: bold; + text-decoration: none; + color: #FEE; + font-size: 2em; + border-top: 2px solid white; + box-sizing: border-box; +} + +.category .toggle { + font-size: 0.8em; + display: inline-block; + border: 1px solid black; + border-radius: 0.2em; + width: 1em; + height: 0.8em; + padding-bottom: 0.2em; + margin-right: 0.5em; + text-align: center; + line-height: 1; + background-color: #FCC; + color: #300; +} + +.category .toggle:hover { + background-color: #800; +} + +.category .list { + position: relative; + font-size: 0.7em; + margin: 0em; + padding: 1em; + display: none; + color: #FEE; +} + +.category .list input { + vertical-align: middle; +} + +.category .list > p { + font-weight: normal; + font-size: .7em; +} + +.category table, .category tr { + min-width: 60%; +} + +.category table { + color: #FEE; + border-collapse: collapse; +} + +.category table tr { + border-bottom: 1px solid white; +} + +.category table tr th { + border-bottom: 3px double white; +} + +.category table tr td { + padding: 0.1em 0em; +} + + + +.subcategory { + margin-left: 1em; + margin-right: 1em; + margin-top: 0em; + margin-bottom:1em; + color: #FEE; + border-bottom: 1px dashed #FEE; +} + +#canvassing-list .subcategory input { + width: 100%; +} + +#canvassing-list .subcategory tr.new { + display: block; + margin-top: .8em; + margin-left: 1.3em; +} diff --git a/css/pane2.css b/css/pane2.css new file mode 100644 index 0000000..604bca0 --- /dev/null +++ b/css/pane2.css @@ -0,0 +1,363 @@ +/* +* This file is part of the Cargobike Community Canvassing Program (CCCP). +* Copyright 2023, Brian Flowers, SlightlyCyberpunk.com +* +* CCCP is free software: you can redistribute it and/or modify it under the terms +* of the GNU Affero General Public License as published by the Free Software +* Foundation, either version 3 of the License, or (at your option) any later version. +* +* CCCP 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 Affero General Public License for more details. + +* You should have received a copy of the Affero GNU General Public License along with CCCP. +* If not, see . +*/ + +#map { + display: inline-block; + height: 100%; + width: 50%; + position: fixed; + top: 0px; + left: 50%; + z-index: 0; +} + +#map.full { + width: 100%; + left: 0%; +} + +#details { + display: none; + height: 100%; + width: 50%; + position: fixed; + top: 0px; + left: 50%; + z-index: 0; + font-size: 2em; + padding: 1em; + overflow-y: scroll; + background-color: #f8f0f0; +} + +#details a { + color: blue; +} + +#details a:visited { + color: purple; +} + +#details table { + border: 1px; + border-collapse: collapse; + margin-bottom: 4em; + width: 95%; +} + +#details td, #details th { + font-size: 2em; + text-align: left; + border: 1px solid black; +} + +#details label { + display: block; + font-weight: bold; +} + +#details textarea { + width: 90%; + height: 20em; + max-height: 30%; + margin-bottom: 2em; +} + +#details [type=range] { + width: 79%; + margin-bottom: 1em; +} + +#details button { + font-size: 2em; +} + +#canvassToolbar button.watching { + border: 6px solid red; +} + +#details button.unsaved { + background-color: red; +} + +#details #supportText { + width: 9%; + height: 2em; + margin-left: 1%; + vertical-align: top; +} + +#details [type=checkbox] { + transform: scale(3); + width: 3em; +} + +#details.full { + width: 100%; + left: 0%; +} + +#details th[colspan] { + text-align: center; + background-color: #DDD; +} + +#mapReturn { + font-size: 2em; + text-align: center; + position: absolute; +/* bottom: 1em;*/ + margin-left: -5em; + left: 50%; + width: 10em; +} + +#detailsControls { + padding: 0em 0em 5em 0em; +} + +#blackout { + width: 100%; + height: 100%; + background-color: black; + opacity: 0.8; + z-index: 1000; + position: absolute; +} + +#turfNameEntry { + position: absolute; + top: 40%; + left: 20%; + width: 60%; + z-index: 1500; + background-color: white; + text-align: center; + vertical-align: middle; +} + +#voterBack { + float: right; + margin-right: 1em; +} + +@media screen and (orientation: portrait), (max-width: 600px) { + #map, #map.full { + width: 100%; + left: 0%; + } + + .leaflet-top, .leaflet-left { + position: fixed; + top: 8em !important; + left: 1em !important; + font-size: 2em; + } + + #details { + width: 100%; + left: 0%; + height: calc(100%); + z-index: 0; + } +} + +.loadingIndicator { + display: none; + visibility: hidden; + background-color: yellow; + font-weight: bold; + font-size: larger; + text-align: center; + padding: 0em 1em; + width: 100%; + margin-left: -1em; + margin-top: -0.5em; + height: 2em; +} + +.dataset { + position: relative; + top: 0px; + left: 0px; + width: 100%; + border: 3px solid; + border-collapse: collapse; + display: block; +} + +.category { + position: relative; + width: 100%; + display: inline-block; + text-align: left; + border-radius: .2em; + font-size: 2em; + margin-top: 1em; + padding: 0em .5em; + font-weight: bold; + text-decoration: none; + color: #FEE; + font-size: 2em; + border-top: 2px solid white; + box-sizing: border-box; +} + +.category .toggle { + font-size: 0.8em; + display: inline-block; + border: 1px solid black; + border-radius: 0.2em; + width: 1em; + height: 0.8em; + padding-bottom: 0.2em; + margin-right: 0.5em; + text-align: center; + line-height: 1; + background-color: #FCC; + color: #300; +} + +.category .toggle:hover { + background-color: #800; +} + +.category .list { + position: relative; + font-size: 0.7em; + margin: 0em; + padding: 1em; +} + +.category .list input { + vertical-align: middle; +} + +.category table, .category tr { + width: 100%; +} + +.subcategory { + margin-left: 1em; + margin-right: 1em; + margin-top: 1em; + margin-bottom:1em; + color: #FEE; + border-bottom: 1px dashed #FEE; +} + +#canvassing-list .subcategory input { + width: 100%; +} + +#canvassing-list .subcategory tr.new { + display: block; + margin-top: .8em; + margin-left: 1.3em; +} + +.nav.on { + background-color: #C00; + color: #FCC; +} + +.nav.top { + width: calc(33% - 0.1em); +} + +.nav.info { + font-size: 1em; + height: 6em; + border-radius: 2em; + margin: .2em 0em; + padding: 1em 0em; +} + +.icon-img { + max-height: 1.6em; + margin-right: 100%; +} + +#voterSel, #voterSupportRange { + width: calc(100% - 4em); + height: 3em; + margin-bottom: 1em; +} + +#canvassToolbar { + position: fixed; + display: block; + bottom: 0em; + width: inherit; + z-index: 1000; + text-align: center; +} + +#canvassToolbar button { + max-width: 15%; + max-height: 15vw; + background-color: #FEE; + border-radius: 1em; + padding: 5px; + margin: 2px; + transition: width 1s; +} + +#canvassToolbar img { + max-width: calc(15vw - 10px); + max-height: calc(15vw - 10px); +} + +#geocoderAddrInput, #geocoderAddrInputSubmit { + width: 0px; + height: 3em; + padding: 0px; + margin: 0px; + transition: width 1s; +} + +#canvassToolbar.addrInput button, #canvassToolbar.addrInput button img { + width: 0px; + margin: 0px; + padding: 0px; +} + +#canvassToolbar.addrInput #geocoderAddrInput { + width: 50%; + max-width: 80%; +} + +#canvassToolbar.addrInput #geocoderAddrInputSubmit { + min-width: 10%; +} + +#detailsTable .notesCell { + border-bottom: 6px solid black; +} + +#paginator { + height: 2em; + position: relative; +} + +#paginator a:last-child { + position: absolute; + right: 2em; +} + +#paginator a { + padding: 0em 1em; +} diff --git a/css/phonebanking.css b/css/phonebanking.css new file mode 100644 index 0000000..8d1c8b6 --- /dev/null +++ b/css/phonebanking.css @@ -0,0 +1 @@ + diff --git a/css/research.css b/css/research.css new file mode 100644 index 0000000..9660964 --- /dev/null +++ b/css/research.css @@ -0,0 +1,53 @@ +/* +* This file is part of the Cargobike Community Canvassing Program (CCCP). +* Copyright 2023, Brian Flowers, SlightlyCyberpunk.com +* +* CCCP is free software: you can redistribute it and/or modify it under the terms +* of the GNU Affero General Public License as published by the Free Software +* Foundation, either version 3 of the License, or (at your option) any later version. +* +* CCCP 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 Affero General Public License for more details. + +* You should have received a copy of the Affero GNU General Public License along with CCCP. +* If not, see . +*/ + + +input[type="color"] +{ + position: relative; + right: 1em; + float: right; +} + +.slider { + float: right; + margin-top: 1em; +} + +#districtsTable { + color: #FEE; + max-width: 30em; +} + +#demographic-lists div { + margin-left: 1em; + font-size: 0.8em; +} + +.header { + margin-left: 1em; +} + +.header a { + font-size: 0.8em; + padding: 0.1em 1em 0.1em 0em; +} + +.footer { + margin-left: 1em; + height: 3em; + vertical-align: top; +} diff --git a/css/settings.css b/css/settings.css new file mode 100644 index 0000000..f2638af --- /dev/null +++ b/css/settings.css @@ -0,0 +1,40 @@ +/* +* This file is part of the Cargobike Community Canvassing Program (CCCP). +* Copyright 2023, Brian Flowers, SlightlyCyberpunk.com +* +* CCCP is free software: you can redistribute it and/or modify it under the terms +* of the GNU Affero General Public License as published by the Free Software +* Foundation, either version 3 of the License, or (at your option) any later version. +* +* CCCP 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 Affero General Public License for more details. + +* You should have received a copy of the Affero GNU General Public License along with CCCP. +* If not, see . +*/ + +#tasksList { + display: block; + z-index: 100; + position: fixed; + bottom: 0px; + right: 0px; + background-color: FCC; + padding: 0em 2em 2em 1em; +} + +.icon-set { + display: inline-block; + border: 1px solid #800; + padding: 0.4em; + margin: 0.4em; +} + +.icon-title { + display: block; + text-align: center; + font-weight: bold; + font-size: 0.9em; + padding-bottom: 0.2em; +} diff --git a/data/blockgroups.json b/data/blockgroups.json new file mode 100644 index 0000000..491fb14 --- /dev/null +++ b/data/blockgroups.json @@ -0,0 +1,792 @@ +[{"type": "blockgroup", "typeId": 1011, "areaId": 28668, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.399691,41.79914199906],[-71.399093,41.79777999906],[-71.398582,41.79661599906],[-71.398384,41.79617299906],[-71.398268,41.79585799906],[-71.398193,41.79563499906],[-71.397926,41.79481099906],[-71.397774,41.79435699906],[-71.397583,41.79380399906],[-71.397552,41.79372399906],[-71.397392,41.79323599906],[-71.397209,41.79268299906],[-71.397064,41.79223599906],[-71.397026,41.79213299906],[-71.396843,41.79157299906],[-71.396652,41.79099999906],[-71.395935,41.79113799906],[-71.394585,41.79138899906],[-71.393967,41.79149599906],[-71.393936,41.79137399906],[-71.393784,41.79094299906],[-71.393578,41.79038999906],[-71.39357,41.79036299906],[-71.393417,41.79018799906],[-71.393097,41.78989399906],[-71.392822,41.78961599906],[-71.3927,41.78945899906],[-71.392654,41.78928799906],[-71.392647,41.78915799906],[-71.392654,41.78896699906],[-71.392693,41.78877299906],[-71.392715,41.78872299906],[-71.392731,41.78864699906],[-71.392752,41.78852099906],[-71.392784,41.78833399906],[-71.392822,41.78805499906],[-71.392746,41.78784199906],[-71.392677,41.78758199906],[-71.392647,41.78750199906],[-71.393875,41.78726599906],[-71.395325,41.78699899906],[-71.395042,41.78614799906],[-71.394132,41.78617399906],[-71.392563,41.78619699906],[-71.391777,41.78624299906],[-71.391289,41.78626299906],[-71.390603,41.78628899906],[-71.389921,41.78630799906],[-71.389413,41.78633499906],[-71.388993,41.78625799906],[-71.388712,41.78620799906],[-71.387385,41.78605299906],[-71.384769,41.78551899906],[-71.383699,41.78529999906],[-71.378198,41.78439999906],[-71.371972,41.78342699906],[-71.371798,41.78339999906],[-71.370498,41.78319999906],[-71.369948,41.78309799906],[-71.369694,41.78305799906],[-71.369931,41.78371699906],[-71.370198,41.78549999906],[-71.370229,41.78576499906],[-71.370162,41.78599299906],[-71.370106,41.78616499906],[-71.370137,41.78624499906],[-71.370172,41.78626599906],[-71.370308,41.78628099906],[-71.370494,41.78628599906],[-71.370615,41.78631099906],[-71.370872,41.78650199906],[-71.371008,41.78669399906],[-71.371023,41.78680999906],[-71.370968,41.78698599906],[-71.370887,41.78704199906],[-71.370731,41.78709199906],[-71.37064,41.78711199906],[-71.37055,41.78719799906],[-71.370509,41.78734899906],[-71.370535,41.78749999906],[-71.37063,41.78771699906],[-71.370696,41.78782799906],[-71.370756,41.78792799906],[-71.370827,41.78806999906],[-71.370862,41.78815499906],[-71.370923,41.78827599906],[-71.370953,41.78833699906],[-71.371205,41.78872999906],[-71.371351,41.78886599906],[-71.371406,41.78886599906],[-71.371482,41.78879499906],[-71.371568,41.78880999906],[-71.371603,41.78885599906],[-71.371638,41.78897699906],[-71.371689,41.78905199906],[-71.371739,41.78915299906],[-71.371764,41.78922299906],[-71.371779,41.78926399906],[-71.371789,41.78933399906],[-71.371739,41.78937999906],[-71.371689,41.78938999906],[-71.371663,41.78938999906],[-71.371663,41.78940999906],[-71.371949,41.78975799906],[-71.371978,41.78979299906],[-71.372002,41.78982299906],[-71.372031,41.78985799906],[-71.372147,41.78992899906],[-71.372162,41.78993899906],[-71.372218,41.79001499906],[-71.372263,41.79008499906],[-71.372278,41.79013099906],[-71.372329,41.79017599906],[-71.372399,41.79019599906],[-71.37255,41.79015599906],[-71.372591,41.79010999906],[-71.372616,41.79003499906],[-71.372606,41.78992899906],[-71.37258,41.78984799906],[-71.37257,41.78978799906],[-71.37258,41.78974799906],[-71.372601,41.78969199906],[-71.372648,41.78965399906],[-71.372762,41.78962699906],[-71.372853,41.78962199906],[-71.372883,41.78961099906],[-71.372888,41.78953099906],[-71.372821,41.78912299906],[-71.372767,41.78905699906],[-71.372691,41.78901199906],[-71.372626,41.78893099906],[-71.372575,41.78882999906],[-71.37256,41.78876999906],[-71.372591,41.78869899906],[-71.372656,41.78862899906],[-71.372711,41.78851799906],[-71.372732,41.78843199906],[-71.372742,41.78839199906],[-71.372767,41.78835199906],[-71.372812,41.78831599906],[-71.372923,41.78831599906],[-71.373024,41.78838699906],[-71.37311,41.78848799906],[-71.37318,41.78862899906],[-71.37321,41.78874999906],[-71.373195,41.78880999906],[-71.373115,41.78891099906],[-71.373009,41.78898199906],[-71.372923,41.78912299906],[-71.373009,41.78962699906],[-71.37313,41.78973199906],[-71.3732,41.78978799906],[-71.373261,41.78981799906],[-71.373306,41.78984299906],[-71.373281,41.78990399906],[-71.373256,41.78995899906],[-71.373251,41.79003499906],[-71.373234,41.79027399906],[-71.373343,41.79028899906],[-71.373558,41.79026199906],[-71.373672,41.79022699906],[-71.373786,41.79022299906],[-71.373865,41.79028899906],[-71.373882,41.79038499906],[-71.373874,41.79047299906],[-71.373825,41.79069599906],[-71.37379,41.79078799906],[-71.373716,41.79094599906],[-71.373689,41.79097199906],[-71.373628,41.79098999906],[-71.373536,41.79099399906],[-71.37347,41.79098099906],[-71.373352,41.79098999906],[-71.373269,41.79105099906],[-71.373277,41.79107299906],[-71.373308,41.79111699906],[-71.373584,41.79138899906],[-71.374084,41.79187999906],[-71.374176,41.79195899906],[-71.374246,41.79195899906],[-71.374334,41.79194999906],[-71.374373,41.79187999906],[-71.374382,41.79176599906],[-71.374373,41.79162099906],[-71.374369,41.79151099906],[-71.37436,41.79139799906],[-71.374369,41.79132299906],[-71.3744,41.79122699906],[-71.374417,41.79115199906],[-71.374509,41.79102499906],[-71.374579,41.79097699906],[-71.374693,41.79090699906],[-71.374702,41.79088499906],[-71.374798,41.79087999906],[-71.37482,41.79093699906],[-71.374829,41.79109099906],[-71.374794,41.79131399906],[-71.374733,41.79147599906],[-71.374632,41.79161699906],[-71.374571,41.79170899906],[-71.374487,41.79184899906],[-71.374443,41.79190599906],[-71.374415,41.79197399906],[-71.374378,41.79204599906],[-71.374382,41.79207299906],[-71.374444,41.79215999906],[-71.374816,41.79255499906],[-71.374886,41.79255499906],[-71.374921,41.79250299906],[-71.374915,41.79241599906],[-71.374927,41.79231099906],[-71.374962,41.79221199906],[-71.375014,41.79210099906],[-71.375031,41.79206699906],[-71.375078,41.79208399906],[-71.375084,41.79212499906],[-71.375159,41.79228799906],[-71.375206,41.79250899906],[-71.375189,41.79260799906],[-71.375159,41.79266599906],[-71.375136,41.79273599906],[-71.375154,41.79280599906],[-71.375177,41.79284599906],[-71.375416,41.79317199906],[-71.375718,41.79344599906],[-71.375754,41.79351899906],[-71.375797,41.79356399906],[-71.375875,41.79362099906],[-71.376131,41.79386499906],[-71.376283,41.79392299906],[-71.376461,41.79398799906],[-71.376591,41.79409899906],[-71.376682,41.79417599906],[-71.376846,41.79431499906],[-71.377034,41.79442399906],[-71.377144,41.79450499906],[-71.37722,41.79458099906],[-71.377299,41.79469999906],[-71.379999,41.79529999906],[-71.380799,41.79629999906],[-71.385199,41.80209999906],[-71.387599,41.80349999906],[-71.390099,41.80519999906],[-71.391499,41.80419999906],[-71.395571,41.80178799906],[-71.395736,41.80166599906],[-71.397499,41.80047799906],[-71.398252,41.79999899906],[-71.398751,41.79964199906],[-71.398949,41.79948799906],[-71.399147,41.79940499906],[-71.399223,41.79937999906],[-71.399293,41.79935399906],[-71.399691,41.79914199906]]]}}"}, +{"type": "blockgroup", "typeId": 1012, "areaId": 28669, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.396652,41.79099999906],[-71.396469,41.79043999906],[-71.396278,41.78987499906],[-71.396095,41.78932999906],[-71.395914,41.78877499906],[-71.395912,41.78875699906],[-71.395902,41.78873999906],[-71.395714,41.78816999906],[-71.395508,41.78756299906],[-71.395325,41.78699899906],[-71.393875,41.78726599906],[-71.392647,41.78750199906],[-71.392677,41.78758199906],[-71.392746,41.78784199906],[-71.392822,41.78805499906],[-71.392784,41.78833399906],[-71.392752,41.78852099906],[-71.392731,41.78864699906],[-71.392715,41.78872299906],[-71.392693,41.78877299906],[-71.392654,41.78896699906],[-71.392647,41.78915799906],[-71.392654,41.78928799906],[-71.3927,41.78945899906],[-71.392822,41.78961599906],[-71.393097,41.78989399906],[-71.393417,41.79018799906],[-71.39357,41.79036299906],[-71.393578,41.79038999906],[-71.393784,41.79094299906],[-71.393936,41.79137399906],[-71.393967,41.79149599906],[-71.394585,41.79138899906],[-71.395935,41.79113799906],[-71.396652,41.79099999906]]]}}"}, +{"type": "blockgroup", "typeId": 1013, "areaId": 28670, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.404854,41.79640199906],[-71.404846,41.79635199906],[-71.404701,41.79584499906],[-71.404503,41.79511999906],[-71.404373,41.79465499906],[-71.40419,41.79401799906],[-71.404189,41.79399999906],[-71.403999,41.79336899906],[-71.40377,41.79259099906],[-71.403284,41.79271399906],[-71.402893,41.79280099906],[-71.40226,41.79292299906],[-71.400673,41.79323199906],[-71.40049,41.79266699906],[-71.400488,41.79264899906],[-71.400337,41.79223999906],[-71.400299,41.79212199906],[-71.400101,41.79156499906],[-71.39991,41.79100799906],[-71.399719,41.79044699906],[-71.399719,41.79042799906],[-71.399529,41.78986699906],[-71.399345,41.78931799906],[-71.399162,41.78876099906],[-71.398972,41.78819699906],[-71.398766,41.78758999906],[-71.398567,41.78698699906],[-71.398384,41.78642699906],[-71.398247,41.78601099906],[-71.397728,41.78602999906],[-71.395042,41.78614799906],[-71.395325,41.78699899906],[-71.395508,41.78756299906],[-71.395714,41.78816999906],[-71.395902,41.78873999906],[-71.395912,41.78875699906],[-71.395914,41.78877499906],[-71.396095,41.78932999906],[-71.396278,41.78987499906],[-71.396469,41.79043999906],[-71.396652,41.79099999906],[-71.396843,41.79157299906],[-71.397026,41.79213299906],[-71.397064,41.79223599906],[-71.397209,41.79268299906],[-71.397392,41.79323599906],[-71.397552,41.79372399906],[-71.397583,41.79380399906],[-71.397774,41.79435699906],[-71.397926,41.79481099906],[-71.398193,41.79563499906],[-71.398268,41.79585799906],[-71.398384,41.79617299906],[-71.398582,41.79661599906],[-71.399093,41.79777999906],[-71.399691,41.79914199906],[-71.399845,41.79905099906],[-71.400705,41.79859799906],[-71.401523,41.79817299906],[-71.402091,41.79786499906],[-71.402366,41.79770499906],[-71.402752,41.79753199906],[-71.402969,41.79741599906],[-71.403091,41.79734999906],[-71.40338,41.79720299906],[-71.403529,41.79711899906],[-71.404569,41.79655199906],[-71.404854,41.79640199906]]]}}"}, +{"type": "blockgroup", "typeId": 1014, "areaId": 28671, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.40377,41.79259099906],[-71.403671,41.79224399906],[-71.403633,41.79208799906],[-71.403473,41.79151899906],[-71.403442,41.79140499906],[-71.40332,41.79097399906],[-71.403267,41.79075999906],[-71.403175,41.79041299906],[-71.403091,41.79011499906],[-71.403023,41.78984099906],[-71.402924,41.78948199906],[-71.402863,41.78925299906],[-71.40271,41.78868099906],[-71.402565,41.78813199906],[-71.402435,41.78766299906],[-71.402412,41.78756299906],[-71.402313,41.78719699906],[-71.40226,41.78694199906],[-71.402222,41.78671299906],[-71.401932,41.78634599906],[-71.401803,41.78614499906],[-71.401657,41.78588899906],[-71.401123,41.78590799906],[-71.398293,41.78600699906],[-71.398247,41.78601099906],[-71.398384,41.78642699906],[-71.398567,41.78698699906],[-71.398766,41.78758999906],[-71.398972,41.78819699906],[-71.399162,41.78876099906],[-71.399345,41.78931799906],[-71.399529,41.78986699906],[-71.399719,41.79042799906],[-71.399719,41.79044699906],[-71.39991,41.79100799906],[-71.400101,41.79156499906],[-71.400299,41.79212199906],[-71.400337,41.79223999906],[-71.400488,41.79264899906],[-71.40049,41.79266699906],[-71.400673,41.79323199906],[-71.40226,41.79292299906],[-71.402893,41.79280099906],[-71.403284,41.79271399906],[-71.40377,41.79259099906]]]}}"}, +{"type": "blockgroup", "typeId": 1021, "areaId": 28672, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.409447,41.79399999906],[-71.409241,41.79383499906],[-71.408974,41.79361699906],[-71.408653,41.79336499906],[-71.40834,41.79310999906],[-71.408127,41.79293799906],[-71.407982,41.79282399906],[-71.40789,41.79274699906],[-71.40731,41.79228599906],[-71.407166,41.79217099906],[-71.40667,41.79176299906],[-71.406328,41.79148699906],[-71.40625,41.79142399906],[-71.406013,41.79118699906],[-71.405884,41.79103099906],[-71.405617,41.79071799906],[-71.405334,41.79038999906],[-71.405205,41.79024099906],[-71.404861,41.78984099906],[-71.404823,41.78979099906],[-71.404404,41.78930299906],[-71.404366,41.78925699906],[-71.404022,41.78884099906],[-71.403641,41.78838699906],[-71.403236,41.78791399906],[-71.402924,41.78754399906],[-71.402874,41.78748799906],[-71.402832,41.78744099906],[-71.402756,41.78735399906],[-71.402443,41.78697599906],[-71.40239,41.78691899906],[-71.402222,41.78671299906],[-71.40226,41.78694199906],[-71.402313,41.78719699906],[-71.402412,41.78756299906],[-71.402435,41.78766299906],[-71.402565,41.78813199906],[-71.40271,41.78868099906],[-71.402863,41.78925299906],[-71.402924,41.78948199906],[-71.403023,41.78984099906],[-71.403091,41.79011499906],[-71.403175,41.79041299906],[-71.403267,41.79075999906],[-71.40332,41.79097399906],[-71.403442,41.79140499906],[-71.403473,41.79151899906],[-71.403633,41.79208799906],[-71.403671,41.79224399906],[-71.40377,41.79259099906],[-71.403999,41.79336899906],[-71.404189,41.79399999906],[-71.40419,41.79401799906],[-71.404373,41.79465499906],[-71.404503,41.79511999906],[-71.404701,41.79584499906],[-71.404846,41.79635199906],[-71.404854,41.79640199906],[-71.409447,41.79399999906]]]}}"}, +{"type": "blockgroup", "typeId": 1022, "areaId": 28673, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.416626,41.78089499906],[-71.416618,41.78074299906],[-71.416595,41.78061699906],[-71.416527,41.78050999906],[-71.416504,41.78049099906],[-71.41642,41.78041799906],[-71.416306,41.78037299906],[-71.416168,41.78034199906],[-71.415985,41.78031899906],[-71.415688,41.78032299906],[-71.415337,41.78033799906],[-71.415115,41.78032699906],[-71.414894,41.78026599906],[-71.414711,41.78016699906],[-71.41449,41.77999099906],[-71.414322,41.77978499906],[-71.41423,41.77959799906],[-71.414177,41.77943799906],[-71.414154,41.77926299906],[-71.414169,41.77912499906],[-71.414223,41.77893799906],[-71.414444,41.77840399906],[-71.414495,41.77825399906],[-71.414505,41.77822499906],[-71.414551,41.77805299906],[-71.414543,41.77776699906],[-71.414489,41.77744699906],[-71.414467,41.77731299906],[-71.414383,41.77693199906],[-71.414253,41.77654999906],[-71.414146,41.77627899906],[-71.41407,41.77600099906],[-71.414055,41.77578399906],[-71.41407,41.77563499906],[-71.414124,41.77548599906],[-71.414185,41.77537899906],[-71.414261,41.77527599906],[-71.414467,41.77511199906],[-71.414574,41.77503199906],[-71.414665,41.77497899906],[-71.414734,41.77489899906],[-71.414757,41.77477999906],[-71.414749,41.77469299906],[-71.414726,41.77459699906],[-71.414665,41.77450199906],[-71.414543,41.77439899906],[-71.414383,41.77429599906],[-71.414116,41.77414299906],[-71.413872,41.77395999906],[-71.413704,41.77383799906],[-71.413521,41.77371199906],[-71.4133,41.77362099906],[-71.41301,41.77355199906],[-71.412956,41.77353999906],[-71.413268,41.77289199906],[-71.413285,41.77285399906],[-71.413296,41.77283099906],[-71.413231,41.77282299906],[-71.412958,41.77274399906],[-71.412804,41.77268999906],[-71.412666,41.77264399906],[-71.412046,41.77241399906],[-71.411947,41.77238099906],[-71.411885,41.77242699906],[-71.410807,41.77320399906],[-71.410562,41.77337999906],[-71.410367,41.77352099906],[-71.410036,41.77375999906],[-71.41,41.77389999906],[-71.409937,41.77414799906],[-71.409926,41.77419299906],[-71.409483,41.77568899906],[-71.409468,41.77573899906],[-71.409276,41.77641099906],[-71.408787,41.77812499906],[-71.408241,41.77802499906],[-71.408199,41.77801699906],[-71.407257,41.77848399906],[-71.406397,41.77895699906],[-71.405984,41.77917299906],[-71.405964,41.77920399906],[-71.405814,41.77947899906],[-71.405669,41.77948999906],[-71.405233,41.77936299906],[-71.405114,41.77932799906],[-71.405036,41.77942499906],[-71.405021,41.77949599906],[-71.40487,41.77975699906],[-71.404811,41.77974199906],[-71.404327,41.78027299906],[-71.404305,41.78034999906],[-71.404106,41.78056299906],[-71.403783,41.78093199906],[-71.403768,41.78095599906],[-71.403574,41.78149999906],[-71.403247,41.78242299906],[-71.403081,41.78289399906],[-71.403051,41.78297899906],[-71.40309,41.78305399906],[-71.404247,41.78533099906],[-71.404259,41.78584899906],[-71.403896,41.78585199906],[-71.403656,41.78585399906],[-71.403419,41.78585399906],[-71.401657,41.78588899906],[-71.401803,41.78614499906],[-71.401932,41.78634599906],[-71.402222,41.78671299906],[-71.40239,41.78691899906],[-71.402443,41.78697599906],[-71.402756,41.78735399906],[-71.402832,41.78744099906],[-71.402874,41.78748799906],[-71.402924,41.78754399906],[-71.403236,41.78791399906],[-71.403641,41.78838699906],[-71.404022,41.78884099906],[-71.404366,41.78925699906],[-71.404404,41.78930299906],[-71.407402,41.78820799906],[-71.408272,41.78789499906],[-71.409225,41.78755199906],[-71.410255,41.78713199906],[-71.410439,41.78712799906],[-71.410645,41.78708299906],[-71.410988,41.78695299906],[-71.411377,41.78676199906],[-71.411682,41.78663599906],[-71.41172,41.78661299906],[-71.411896,41.78650699906],[-71.412079,41.78631999906],[-71.412239,41.78613999906],[-71.412384,41.78604899906],[-71.412529,41.78598799906],[-71.412704,41.78596499906],[-71.412949,41.78597599906],[-71.413177,41.78602599906],[-71.413391,41.78613999906],[-71.413544,41.78626999906],[-71.413635,41.78644199906],[-71.413673,41.78659799906],[-71.413666,41.78684599906],[-71.413567,41.78704099906],[-71.41333,41.78739499906],[-71.413223,41.78766299906],[-71.413193,41.78821199906],[-71.413167,41.78833899906],[-71.413147,41.78843699906],[-71.41317,41.78852099906],[-71.4132,41.78860499906],[-71.413254,41.78868099906],[-71.413305,41.78872299906],[-71.413368,41.78875699906],[-71.413422,41.78877999906],[-71.413536,41.78880299906],[-71.413658,41.78879899906],[-71.41379,41.78877099906],[-71.413948,41.78873799906],[-71.414078,41.78863499906],[-71.4142,41.78850599906],[-71.414268,41.78841799906],[-71.414352,41.78832199906],[-71.414444,41.78816199906],[-71.414497,41.78801699906],[-71.41452,41.78790199906],[-71.414536,41.78781899906],[-71.414558,41.78763199906],[-71.414566,41.78747899906],[-71.414551,41.78729199906],[-71.414536,41.78717799906],[-71.41453,41.78704799906],[-71.414528,41.78699099906],[-71.41452,41.78690699906],[-71.414558,41.78674699906],[-71.414642,41.78656399906],[-71.414734,41.78640699906],[-71.414818,41.78627799906],[-71.41487,41.78622899906],[-71.414961,41.78614499906],[-71.415039,41.78607899906],[-71.415215,41.78598799906],[-71.415306,41.78594599906],[-71.415459,41.78588499906],[-71.415634,41.78582399906],[-71.415573,41.78581199906],[-71.415543,41.78579299906],[-71.41552,41.78576699906],[-71.415504,41.78570599906],[-71.41552,41.78565599906],[-71.415558,41.78554499906],[-71.415573,41.78545399906],[-71.415611,41.78529399906],[-71.415543,41.78515199906],[-71.415436,41.78496899906],[-71.415352,41.78478999906],[-71.415331,41.78471499906],[-71.415311,41.78464299906],[-71.415298,41.78459499906],[-71.415298,41.78444699906],[-71.415413,41.78422499906],[-71.416023,41.78361899906],[-71.416069,41.78352699906],[-71.416031,41.78337499906],[-71.415958,41.78320299906],[-71.415932,41.78314199906],[-71.415947,41.78295099906],[-71.416054,41.78279099906],[-71.416298,41.78255799906],[-71.416496,41.78233699906],[-71.416611,41.78218799906],[-71.416626,41.78208499906],[-71.416626,41.78205899906],[-71.41658,41.78194399906],[-71.416489,41.78182599906],[-71.416191,41.78159299906],[-71.416313,41.78148999906],[-71.416443,41.78133799906],[-71.416542,41.78119299906],[-71.416603,41.78104399906],[-71.416626,41.78089499906]]]}}"}, +{"type": "blockgroup", "typeId": 1023, "areaId": 28674, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.413948,41.78873799906],[-71.41379,41.78877099906],[-71.413658,41.78879899906],[-71.413536,41.78880299906],[-71.413422,41.78877999906],[-71.413368,41.78875699906],[-71.413305,41.78872299906],[-71.413254,41.78868099906],[-71.4132,41.78860499906],[-71.41317,41.78852099906],[-71.413147,41.78843699906],[-71.413167,41.78833899906],[-71.413193,41.78821199906],[-71.413223,41.78766299906],[-71.41333,41.78739499906],[-71.413567,41.78704099906],[-71.413666,41.78684599906],[-71.413673,41.78659799906],[-71.413635,41.78644199906],[-71.413544,41.78626999906],[-71.413391,41.78613999906],[-71.413177,41.78602599906],[-71.412949,41.78597599906],[-71.412704,41.78596499906],[-71.412529,41.78598799906],[-71.412384,41.78604899906],[-71.412239,41.78613999906],[-71.412079,41.78631999906],[-71.411896,41.78650699906],[-71.41172,41.78661299906],[-71.411682,41.78663599906],[-71.411377,41.78676199906],[-71.410988,41.78695299906],[-71.410645,41.78708299906],[-71.410439,41.78712799906],[-71.410255,41.78713199906],[-71.409225,41.78755199906],[-71.408272,41.78789499906],[-71.407402,41.78820799906],[-71.404404,41.78930299906],[-71.404823,41.78979099906],[-71.404861,41.78984099906],[-71.405205,41.79024099906],[-71.405334,41.79038999906],[-71.405617,41.79071799906],[-71.405884,41.79103099906],[-71.406013,41.79118699906],[-71.40625,41.79142399906],[-71.406328,41.79148699906],[-71.40667,41.79176299906],[-71.407166,41.79217099906],[-71.40731,41.79228599906],[-71.40789,41.79274699906],[-71.407982,41.79282399906],[-71.408127,41.79293799906],[-71.408226,41.79277399906],[-71.408333,41.79267099906],[-71.408699,41.79242699906],[-71.408943,41.79229399906],[-71.409325,41.79205299906],[-71.409721,41.79172899906],[-71.409996,41.79148099906],[-71.410217,41.79123699906],[-71.41037,41.79105399906],[-71.410851,41.79067199906],[-71.412605,41.78935199906],[-71.412865,41.78916499906],[-71.412956,41.78913099906],[-71.413116,41.78905099906],[-71.41333,41.78898999906],[-71.413452,41.78895599906],[-71.413628,41.78889799906],[-71.413803,41.78882199906],[-71.413948,41.78873799906]]]}}"}, +{"type": "blockgroup", "typeId": 1024, "areaId": 28675, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.42381,41.77726699906],[-71.423653,41.77723699906],[-71.42305,41.77711899906],[-71.4226,41.77703099906],[-71.422129,41.77692799906],[-71.421898,41.77687799906],[-71.421421,41.77679199906],[-71.421394,41.77678699906],[-71.421356,41.77676799906],[-71.42025,41.77654299906],[-71.420221,41.77653599906],[-71.419962,41.77644399906],[-71.419916,41.77643599906],[-71.419716,41.77639599906],[-71.419532,41.77635999906],[-71.419429,41.77633999906],[-71.419437,41.77624299906],[-71.419459,41.77617599906],[-71.419478,41.77612099906],[-71.419507,41.77603699906],[-71.419524,41.77598699906],[-71.419531,41.77596799906],[-71.419537,41.77595299906],[-71.419459,41.77593999906],[-71.419181,41.77587099906],[-71.419005,41.77582699906],[-71.418972,41.77581699906],[-71.41866,41.77570799906],[-71.418569,41.77566399906],[-71.418452,41.77560599906],[-71.418416,41.77558899906],[-71.418303,41.77553799906],[-71.41826,41.77551899906],[-71.418012,41.77536899906],[-71.417712,41.77515099906],[-71.417664,41.77511599906],[-71.417488,41.77500899906],[-71.417427,41.77497099906],[-71.417114,41.77475399906],[-71.417014,41.77468099906],[-71.416977,41.77465399906],[-71.416916,41.77461599906],[-71.416752,41.77449899906],[-71.416504,41.77432299906],[-71.416473,41.77430299906],[-71.416168,41.77405499906],[-71.416138,41.77403599906],[-71.416039,41.77395599906],[-71.4151,41.77326999906],[-71.415047,41.77324299906],[-71.414963,41.77319299906],[-71.414925,41.77316999906],[-71.414879,41.77314399906],[-71.414558,41.77303699906],[-71.414307,41.77297599906],[-71.414223,41.77296099906],[-71.413834,41.77289599906],[-71.413296,41.77283099906],[-71.413285,41.77285399906],[-71.413268,41.77289199906],[-71.412956,41.77353999906],[-71.41301,41.77355199906],[-71.4133,41.77362099906],[-71.413521,41.77371199906],[-71.413704,41.77383799906],[-71.413872,41.77395999906],[-71.414116,41.77414299906],[-71.414383,41.77429599906],[-71.414543,41.77439899906],[-71.414665,41.77450199906],[-71.414726,41.77459699906],[-71.414749,41.77469299906],[-71.414757,41.77477999906],[-71.414734,41.77489899906],[-71.414665,41.77497899906],[-71.414574,41.77503199906],[-71.414467,41.77511199906],[-71.414261,41.77527599906],[-71.414185,41.77537899906],[-71.414124,41.77548599906],[-71.41407,41.77563499906],[-71.414055,41.77578399906],[-71.41407,41.77600099906],[-71.414146,41.77627899906],[-71.414253,41.77654999906],[-71.414383,41.77693199906],[-71.414467,41.77731299906],[-71.414489,41.77744699906],[-71.414543,41.77776699906],[-71.414551,41.77805299906],[-71.414505,41.77822499906],[-71.414495,41.77825399906],[-71.414444,41.77840399906],[-71.414223,41.77893799906],[-71.414169,41.77912499906],[-71.414154,41.77926299906],[-71.414177,41.77943799906],[-71.41423,41.77959799906],[-71.414322,41.77978499906],[-71.41449,41.77999099906],[-71.414711,41.78016699906],[-71.414894,41.78026599906],[-71.415115,41.78032699906],[-71.415337,41.78033799906],[-71.415688,41.78032299906],[-71.415985,41.78031899906],[-71.416168,41.78034199906],[-71.416306,41.78037299906],[-71.41642,41.78041799906],[-71.416504,41.78049099906],[-71.416527,41.78050999906],[-71.416595,41.78061699906],[-71.416618,41.78074299906],[-71.416626,41.78089499906],[-71.416603,41.78104399906],[-71.416542,41.78119299906],[-71.416443,41.78133799906],[-71.416313,41.78148999906],[-71.416191,41.78159299906],[-71.416489,41.78182599906],[-71.41658,41.78194399906],[-71.416626,41.78205899906],[-71.416626,41.78208499906],[-71.416611,41.78218799906],[-71.416496,41.78233699906],[-71.416298,41.78255799906],[-71.416054,41.78279099906],[-71.415947,41.78295099906],[-71.415932,41.78314199906],[-71.415958,41.78320299906],[-71.416031,41.78337499906],[-71.416069,41.78352699906],[-71.416023,41.78361899906],[-71.415413,41.78422499906],[-71.415298,41.78444699906],[-71.415298,41.78459499906],[-71.415311,41.78464299906],[-71.415331,41.78471499906],[-71.415352,41.78478999906],[-71.415436,41.78496899906],[-71.415543,41.78515199906],[-71.415611,41.78529399906],[-71.415573,41.78545399906],[-71.415558,41.78554499906],[-71.41552,41.78565599906],[-71.415504,41.78570599906],[-71.41552,41.78576699906],[-71.415543,41.78579299906],[-71.415573,41.78581199906],[-71.415634,41.78582399906],[-71.415459,41.78588499906],[-71.415306,41.78594599906],[-71.415215,41.78598799906],[-71.415039,41.78607899906],[-71.414961,41.78614499906],[-71.41487,41.78622899906],[-71.414818,41.78627799906],[-71.414734,41.78640699906],[-71.414642,41.78656399906],[-71.414558,41.78674699906],[-71.41452,41.78690699906],[-71.414528,41.78699099906],[-71.41453,41.78704799906],[-71.414536,41.78717799906],[-71.414551,41.78729199906],[-71.414566,41.78747899906],[-71.414558,41.78763199906],[-71.414536,41.78781899906],[-71.41452,41.78790199906],[-71.414497,41.78801699906],[-71.414444,41.78816199906],[-71.414352,41.78832199906],[-71.414268,41.78841799906],[-71.4142,41.78850599906],[-71.414078,41.78863499906],[-71.413948,41.78873799906],[-71.413803,41.78882199906],[-71.413628,41.78889799906],[-71.413452,41.78895599906],[-71.41333,41.78898999906],[-71.413116,41.78905099906],[-71.412956,41.78913099906],[-71.412865,41.78916499906],[-71.412605,41.78935199906],[-71.410851,41.79067199906],[-71.41037,41.79105399906],[-71.410217,41.79123699906],[-71.409996,41.79148099906],[-71.409721,41.79172899906],[-71.409325,41.79205299906],[-71.408943,41.79229399906],[-71.408699,41.79242699906],[-71.408333,41.79267099906],[-71.408226,41.79277399906],[-71.408127,41.79293799906],[-71.40834,41.79310999906],[-71.408653,41.79336499906],[-71.408974,41.79361699906],[-71.409241,41.79383499906],[-71.409447,41.79399999906],[-71.410827,41.79327899906],[-71.412789,41.79223699906],[-71.414384,41.79143499906],[-71.415851,41.79066499906],[-71.416683,41.79020599906],[-71.417152,41.78990699906],[-71.417591,41.78959199906],[-71.418038,41.78922699906],[-71.418601,41.78873099906],[-71.41907,41.78826099906],[-71.419592,41.78766799906],[-71.420063,41.78703299906],[-71.420131,41.78693999906],[-71.420286,41.78673099906],[-71.42051,41.78634399906],[-71.420527,41.78631699906],[-71.42061,41.78618399906],[-71.420551,41.78618099906],[-71.420807,41.78545499906],[-71.420875,41.78533499906],[-71.421187,41.78444799906],[-71.421881,41.78254699906],[-71.422033,41.78213099906],[-71.422132,41.78185999906],[-71.422172,41.78174899906],[-71.422214,41.78163499906],[-71.422284,41.78144799906],[-71.42232,41.78134999906],[-71.422624,41.78051699906],[-71.422763,41.78014399906],[-71.42381,41.77726699906]]]}}"}, +{"type": "blockgroup", "typeId": 2001, "areaId": 28676, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.426224,41.79553199906],[-71.425865,41.79562399906],[-71.425095,41.79585599906],[-71.424995,41.79588699906],[-71.421997,41.79681399906],[-71.420135,41.79739399906],[-71.419624,41.79754999906],[-71.419304,41.79765299906],[-71.418266,41.79796999906],[-71.417336,41.79826699906],[-71.416397,41.79854999906],[-71.415466,41.79885099906],[-71.415497,41.79887799906],[-71.416023,41.79929399906],[-71.416138,41.79938899906],[-71.416595,41.79975899906],[-71.416786,41.79991499906],[-71.416801,41.79993099906],[-71.417419,41.80043399906],[-71.417435,41.80044899906],[-71.418396,41.80017899906],[-71.419342,41.79989599906],[-71.420258,41.79959899906],[-71.421219,41.79930899906],[-71.422073,41.79903399906],[-71.423058,41.79873699906],[-71.423019,41.79866399906],[-71.423782,41.79843099906],[-71.42453,41.79825599906],[-71.425522,41.79796999906],[-71.426033,41.79783599906],[-71.426018,41.79776799906],[-71.425934,41.79761499906],[-71.425789,41.79733299906],[-71.425819,41.79713399906],[-71.42588,41.79685999906],[-71.42588,41.79684099906],[-71.425987,41.79645899906],[-71.426003,41.79634499906],[-71.426025,41.79621499906],[-71.426117,41.79583399906],[-71.426224,41.79553199906]]]}}"}, +{"type": "blockgroup", "typeId": 2002, "areaId": 28677, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.426459,41.79497299906],[-71.426204,41.79458699906],[-71.426054,41.79435599906],[-71.42586,41.79406099906],[-71.425145,41.79296899906],[-71.42391,41.79108399906],[-71.423857,41.79100199906],[-71.423777,41.79103299906],[-71.423599,41.79108799906],[-71.4226,41.79140499906],[-71.422516,41.79143099906],[-71.422874,41.79207999906],[-71.423218,41.79269399906],[-71.422729,41.79287699906],[-71.420219,41.79364399906],[-71.420578,41.79427299906],[-71.420944,41.79489899906],[-71.421295,41.79553999906],[-71.421646,41.79617299906],[-71.421997,41.79681399906],[-71.424995,41.79588699906],[-71.425095,41.79585599906],[-71.425865,41.79562399906],[-71.426224,41.79553199906],[-71.426254,41.79544799906],[-71.426331,41.79528699906],[-71.426369,41.79520799906],[-71.426409,41.79510199906],[-71.426429,41.79504999906],[-71.426459,41.79497299906]]]}}"}, +{"type": "blockgroup", "typeId": 2003, "areaId": 28678, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.421997,41.79681399906],[-71.421646,41.79617299906],[-71.421295,41.79553999906],[-71.420944,41.79489899906],[-71.420578,41.79427299906],[-71.420219,41.79364399906],[-71.41835,41.79421999906],[-71.416512,41.79479199906],[-71.41687,41.79543299906],[-71.417221,41.79606599906],[-71.417564,41.79669999906],[-71.417648,41.79685599906],[-71.417923,41.79732499906],[-71.418266,41.79796999906],[-71.419304,41.79765299906],[-71.419624,41.79754999906],[-71.420135,41.79739399906],[-71.421997,41.79681399906]]]}}"}, +{"type": "blockgroup", "typeId": 2004, "areaId": 28679, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.418266,41.79796999906],[-71.417923,41.79732499906],[-71.417648,41.79685599906],[-71.417564,41.79669999906],[-71.417221,41.79606599906],[-71.41687,41.79543299906],[-71.416512,41.79479199906],[-71.414658,41.79536799906],[-71.413765,41.79564999906],[-71.413207,41.79581899906],[-71.412575,41.79602099906],[-71.412117,41.79615799906],[-71.412766,41.79667299906],[-71.413071,41.79691699906],[-71.413437,41.79721099906],[-71.413467,41.79722999906],[-71.413727,41.79743999906],[-71.414024,41.79767199906],[-71.414116,41.79774499906],[-71.414665,41.79819899906],[-71.414772,41.79828599906],[-71.415466,41.79885099906],[-71.416397,41.79854999906],[-71.417336,41.79826699906],[-71.418266,41.79796999906]]]}}"}, +{"type": "blockgroup", "typeId": 2005, "areaId": 28680, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.423857,41.79100199906],[-71.423365,41.79025099906],[-71.423096,41.78989699906],[-71.422776,41.78939799906],[-71.422669,41.78923199906],[-71.422455,41.78881599906],[-71.422328,41.78856999906],[-71.422305,41.78851599906],[-71.422276,41.78845099906],[-71.422064,41.78793999906],[-71.421996,41.78775799906],[-71.421887,41.78740199906],[-71.421801,41.78704799906],[-71.421734,41.78669699906],[-71.421701,41.78647499906],[-71.421689,41.78637399906],[-71.421677,41.78629699906],[-71.421667,41.78618999906],[-71.421623,41.78618899906],[-71.421499,41.78618599906],[-71.421476,41.78618599906],[-71.42061,41.78618399906],[-71.420527,41.78631699906],[-71.42051,41.78634399906],[-71.420286,41.78673099906],[-71.420131,41.78693999906],[-71.420063,41.78703299906],[-71.419592,41.78766799906],[-71.41907,41.78826099906],[-71.418601,41.78873099906],[-71.418038,41.78922699906],[-71.417591,41.78959199906],[-71.417152,41.78990699906],[-71.416683,41.79020599906],[-71.415851,41.79066499906],[-71.414384,41.79143499906],[-71.412789,41.79223699906],[-71.410827,41.79327899906],[-71.409447,41.79399999906],[-71.409607,41.79412799906],[-71.409767,41.79425799906],[-71.409931,41.79439199906],[-71.410233,41.79463599906],[-71.410454,41.79480699906],[-71.410736,41.79502899906],[-71.41127,41.79547099906],[-71.41153,41.79568199906],[-71.412117,41.79615799906],[-71.412575,41.79602099906],[-71.413207,41.79581899906],[-71.413765,41.79564999906],[-71.414658,41.79536799906],[-71.416512,41.79479199906],[-71.41835,41.79421999906],[-71.420219,41.79364399906],[-71.422729,41.79287699906],[-71.423218,41.79269399906],[-71.422874,41.79207999906],[-71.422516,41.79143099906],[-71.4226,41.79140499906],[-71.423599,41.79108799906],[-71.423777,41.79103299906],[-71.423857,41.79100199906]]]}}"}, +{"type": "blockgroup", "typeId": 3011, "areaId": 28681, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.430588,41.80248999906],[-71.429916,41.80225399906],[-71.42942,41.80209399906],[-71.429298,41.80206299906],[-71.429108,41.80202499906],[-71.428482,41.80190999906],[-71.427643,41.80175399906],[-71.426338,41.80150599906],[-71.426186,41.80200199906],[-71.426071,41.80236799906],[-71.42588,41.80296299906],[-71.425705,41.80357399906],[-71.42556,41.80413799906],[-71.425392,41.80474099906],[-71.425224,41.80535099906],[-71.425064,41.80596499906],[-71.425011,41.80614099906],[-71.42498,41.80627399906],[-71.424965,41.80641199906],[-71.424942,41.80654899906],[-71.424894,41.80689499906],[-71.424866,41.80710199906],[-71.424858,41.80717499906],[-71.424797,41.80762899906],[-71.424774,41.80779299906],[-71.424721,41.80818199906],[-71.424683,41.80844499906],[-71.42466,41.80865099906],[-71.424629,41.80877699906],[-71.425484,41.80884199906],[-71.426598,41.80893699906],[-71.427597,41.80902899906],[-71.428009,41.80905199906],[-71.428162,41.80864299906],[-71.428406,41.80808299906],[-71.428688,41.80744199906],[-71.428955,41.80680799906],[-71.42923,41.80616399906],[-71.429581,41.80535899906],[-71.429955,41.80454999906],[-71.430161,41.80404299906],[-71.430214,41.80386399906],[-71.430328,41.80348599906],[-71.430481,41.80286799906],[-71.430588,41.80248999906]]]}}"}, +{"type": "blockgroup", "typeId": 3012, "areaId": 28682, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.431769,41.80051799906],[-71.431098,41.80028099906],[-71.430888,41.80020699906],[-71.430555,41.80007099906],[-71.430454,41.80002599906],[-71.430428,41.80001199906],[-71.43016,41.79986899906],[-71.429828,41.79964999906],[-71.42959,41.79946799906],[-71.429182,41.79906799906],[-71.428863,41.79867499906],[-71.428492,41.79809299906],[-71.428258,41.79772799906],[-71.4275,41.79656499906],[-71.426589,41.79517399906],[-71.426459,41.79497299906],[-71.426429,41.79504999906],[-71.426409,41.79510199906],[-71.426369,41.79520799906],[-71.426331,41.79528699906],[-71.426254,41.79544799906],[-71.426224,41.79553199906],[-71.426117,41.79583399906],[-71.426025,41.79621499906],[-71.426003,41.79634499906],[-71.425987,41.79645899906],[-71.42588,41.79684099906],[-71.42588,41.79685999906],[-71.425819,41.79713399906],[-71.425789,41.79733299906],[-71.425934,41.79761499906],[-71.426018,41.79776799906],[-71.426033,41.79783599906],[-71.426105,41.79809699906],[-71.426216,41.79849599906],[-71.426254,41.79861499906],[-71.426285,41.79874799906],[-71.426407,41.79920199906],[-71.426445,41.79938899906],[-71.426498,41.79964799906],[-71.426514,41.79990799906],[-71.42652,41.80019999906],[-71.426521,41.80023599906],[-71.426514,41.80048799906],[-71.426481,41.80070899906],[-71.426468,41.80079999906],[-71.426468,41.80110199906],[-71.426338,41.80150599906],[-71.427643,41.80175399906],[-71.428482,41.80190999906],[-71.429108,41.80202499906],[-71.429298,41.80206299906],[-71.42942,41.80209399906],[-71.429916,41.80225399906],[-71.430588,41.80248999906],[-71.430611,41.80239499906],[-71.430794,41.80210899906],[-71.431313,41.80126599906],[-71.431519,41.80092199906],[-71.431591,41.80080299906],[-71.431711,41.80060699906],[-71.431731,41.80057399906],[-71.431769,41.80051799906]]]}}"}, +{"type": "blockgroup", "typeId": 3021, "areaId": 28683, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.424942,41.80654899906],[-71.423576,41.80655699906],[-71.422493,41.80657999906],[-71.420052,41.80661799906],[-71.420197,41.80709499906],[-71.420242,41.80724699906],[-71.420433,41.80783499906],[-71.420456,41.80788799906],[-71.420639,41.80848699906],[-71.420677,41.80859399906],[-71.420845,41.80914699906],[-71.420846,41.80916499906],[-71.420929,41.80948299906],[-71.421005,41.80977199906],[-71.421051,41.80992499906],[-71.421082,41.81003199906],[-71.421272,41.81075299906],[-71.421547,41.81182099906],[-71.421547,41.81183999906],[-71.421631,41.81218299906],[-71.421643,41.81221199906],[-71.421837,41.81268699906],[-71.421928,41.81278999906],[-71.422035,41.81272499906],[-71.422173,41.81276699906],[-71.422569,41.81207299906],[-71.423157,41.81121399906],[-71.423569,41.81060399906],[-71.423965,41.81001299906],[-71.424049,41.80989099906],[-71.424377,41.80940599906],[-71.424507,41.80912799906],[-71.424561,41.80900599906],[-71.424599,41.80889099906],[-71.424629,41.80877699906],[-71.42466,41.80865099906],[-71.424683,41.80844499906],[-71.424721,41.80818199906],[-71.424774,41.80779299906],[-71.424797,41.80762899906],[-71.424858,41.80717499906],[-71.424866,41.80710199906],[-71.424894,41.80689499906],[-71.424942,41.80654899906]]]}}"}, +{"type": "blockgroup", "typeId": 3022, "areaId": 28684, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.426338,41.80150599906],[-71.425713,41.80138399906],[-71.425316,41.80129999906],[-71.425217,41.80129999906],[-71.425041,41.80132699906],[-71.424568,41.80143399906],[-71.422646,41.80188399906],[-71.421997,41.80203999906],[-71.421425,41.80221199906],[-71.420746,41.80242499906],[-71.41983,41.80270399906],[-71.418907,41.80297499906],[-71.41909,41.80356999906],[-71.419104,41.80361899906],[-71.419121,41.80367999906],[-71.419258,41.80411099906],[-71.41935,41.80441699906],[-71.419395,41.80455399906],[-71.41951,41.80487099906],[-71.419571,41.80507999906],[-71.419693,41.80547699906],[-71.419777,41.80572499906],[-71.419891,41.80607599906],[-71.420013,41.80647699906],[-71.420052,41.80661799906],[-71.422493,41.80657999906],[-71.422478,41.80601499906],[-71.422462,41.80540499906],[-71.42244,41.80480999906],[-71.422409,41.80421099906],[-71.422386,41.80364599906],[-71.422356,41.80334099906],[-71.423233,41.80301699906],[-71.424904,41.80242899906],[-71.425026,41.80237999906],[-71.425056,41.80237199906],[-71.425385,41.80224999906],[-71.425987,41.80203999906],[-71.426186,41.80200199906],[-71.426338,41.80150599906]]]}}"}, +{"type": "blockgroup", "typeId": 3023, "areaId": 28685, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.426186,41.80200199906],[-71.425987,41.80203999906],[-71.425385,41.80224999906],[-71.425056,41.80237199906],[-71.425026,41.80237999906],[-71.424904,41.80242899906],[-71.423233,41.80301699906],[-71.422356,41.80334099906],[-71.422386,41.80364599906],[-71.422409,41.80421099906],[-71.42244,41.80480999906],[-71.422462,41.80540499906],[-71.422478,41.80601499906],[-71.422493,41.80657999906],[-71.423576,41.80655699906],[-71.424942,41.80654899906],[-71.424965,41.80641199906],[-71.42498,41.80627399906],[-71.425011,41.80614099906],[-71.425064,41.80596499906],[-71.425224,41.80535099906],[-71.425392,41.80474099906],[-71.42556,41.80413799906],[-71.425705,41.80357399906],[-71.42588,41.80296299906],[-71.426071,41.80236799906],[-71.426186,41.80200199906]]]}}"}, +{"type": "blockgroup", "typeId": 3024, "areaId": 28686, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.426521,41.80023599906],[-71.42652,41.80019999906],[-71.426514,41.79990799906],[-71.426498,41.79964799906],[-71.426445,41.79938899906],[-71.426407,41.79920199906],[-71.426285,41.79874799906],[-71.426254,41.79861499906],[-71.426216,41.79849599906],[-71.426105,41.79809699906],[-71.426033,41.79783599906],[-71.425522,41.79796999906],[-71.42453,41.79825599906],[-71.423782,41.79843099906],[-71.423019,41.79866399906],[-71.423058,41.79873699906],[-71.422073,41.79903399906],[-71.421219,41.79930899906],[-71.420258,41.79959899906],[-71.419342,41.79989599906],[-71.418396,41.80017899906],[-71.417435,41.80044899906],[-71.417603,41.80058299906],[-71.417747,41.80071299906],[-71.417877,41.80085799906],[-71.417999,41.80098299906],[-71.418037,41.80102899906],[-71.418129,41.80114399906],[-71.418266,41.80134599906],[-71.418404,41.80157899906],[-71.418541,41.80185299906],[-71.418617,41.80207399906],[-71.418648,41.80214699906],[-71.418701,41.80229199906],[-71.418808,41.80263099906],[-71.418907,41.80297499906],[-71.41983,41.80270399906],[-71.420746,41.80242499906],[-71.421425,41.80221199906],[-71.421997,41.80203999906],[-71.422646,41.80188399906],[-71.424568,41.80143399906],[-71.425041,41.80132699906],[-71.425217,41.80129999906],[-71.425316,41.80129999906],[-71.425713,41.80138399906],[-71.426338,41.80150599906],[-71.426468,41.80110199906],[-71.426468,41.80079999906],[-71.426481,41.80070899906],[-71.426514,41.80048799906],[-71.426521,41.80023599906]]]}}"}, +{"type": "blockgroup", "typeId": 4001, "areaId": 28687, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.421005,41.80977199906],[-71.420929,41.80948299906],[-71.420846,41.80916499906],[-71.420845,41.80914699906],[-71.420677,41.80859399906],[-71.420639,41.80848699906],[-71.420456,41.80788799906],[-71.420433,41.80783499906],[-71.420242,41.80724699906],[-71.420197,41.80709499906],[-71.420052,41.80661799906],[-71.420013,41.80647699906],[-71.417763,41.80679699906],[-71.416878,41.80691499906],[-71.415855,41.80704599906],[-71.415474,41.80709499906],[-71.414604,41.80726999906],[-71.414473,41.80696599906],[-71.41423,41.80639599906],[-71.413368,41.80659099906],[-71.413528,41.80694199906],[-71.413508,41.80695699906],[-71.412125,41.80729699906],[-71.411255,41.80749899906],[-71.411674,41.80859799906],[-71.411865,41.80946399906],[-71.412758,41.80936399906],[-71.412895,41.81002799906],[-71.414246,41.80986399906],[-71.41436,41.80986399906],[-71.415665,41.80995599906],[-71.416069,41.80998199906],[-71.416412,41.81003999906],[-71.417526,41.81020699906],[-71.41819,41.81030299906],[-71.418457,41.81034499906],[-71.418877,41.81041699906],[-71.419403,41.81049299906],[-71.419769,41.81053199906],[-71.420296,41.81061599906],[-71.420774,41.81010799906],[-71.42086,41.81001699906],[-71.421005,41.80977199906]]]}}"}, +{"type": "blockgroup", "typeId": 4002, "areaId": 28688, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.420013,41.80647699906],[-71.419891,41.80607599906],[-71.419777,41.80572499906],[-71.419693,41.80547699906],[-71.419571,41.80507999906],[-71.41951,41.80487099906],[-71.419395,41.80455399906],[-71.41935,41.80441699906],[-71.419128,41.80453499906],[-71.419098,41.80454999906],[-71.418686,41.80465299906],[-71.417076,41.80502699906],[-71.416359,41.80519099906],[-71.415703,41.80533999906],[-71.41481,41.80555699906],[-71.413956,41.80574399906],[-71.413109,41.80593899906],[-71.413368,41.80659099906],[-71.41423,41.80639599906],[-71.414473,41.80696599906],[-71.414604,41.80726999906],[-71.415474,41.80709499906],[-71.415855,41.80704599906],[-71.416878,41.80691499906],[-71.417763,41.80679699906],[-71.420013,41.80647699906]]]}}"}, +{"type": "blockgroup", "typeId": 4003, "areaId": 28689, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.416359,41.80519099906],[-71.416199,41.80481299906],[-71.416031,41.80439799906],[-71.415741,41.80372599906],[-71.415527,41.80321899906],[-71.415115,41.80227299906],[-71.414688,41.80124299906],[-71.413998,41.80138699906],[-71.413925,41.80140299906],[-71.413849,41.80141799906],[-71.413124,41.80158199906],[-71.412399,41.80174999906],[-71.411774,41.80189899906],[-71.411682,41.80191799906],[-71.411018,41.80203999906],[-71.410233,41.80221599906],[-71.41069,41.80328799906],[-71.411247,41.80316199906],[-71.411484,41.80310399906],[-71.411774,41.80379499906],[-71.412117,41.80458799906],[-71.412399,41.80524799906],[-71.412445,41.80536999906],[-71.412552,41.80561799906],[-71.412735,41.80602599906],[-71.413109,41.80593899906],[-71.413956,41.80574399906],[-71.41481,41.80555699906],[-71.415703,41.80533999906],[-71.416359,41.80519099906]]]}}"}, +{"type": "blockgroup", "typeId": 4004, "areaId": 28690, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.41935,41.80441699906],[-71.419258,41.80411099906],[-71.419121,41.80367999906],[-71.419104,41.80361899906],[-71.41909,41.80356999906],[-71.418907,41.80297499906],[-71.418808,41.80263099906],[-71.418701,41.80229199906],[-71.418648,41.80214699906],[-71.418617,41.80207399906],[-71.418541,41.80185299906],[-71.418404,41.80157899906],[-71.418266,41.80134599906],[-71.418129,41.80114399906],[-71.418037,41.80102899906],[-71.417999,41.80098299906],[-71.417877,41.80085799906],[-71.417747,41.80071299906],[-71.417603,41.80058299906],[-71.417435,41.80044899906],[-71.417419,41.80043399906],[-71.41642,41.80072399906],[-71.415756,41.80092999906],[-71.415527,41.80100299906],[-71.415031,41.80114399906],[-71.414688,41.80124299906],[-71.415115,41.80227299906],[-71.415527,41.80321899906],[-71.415741,41.80372599906],[-71.416031,41.80439799906],[-71.416199,41.80481299906],[-71.416359,41.80519099906],[-71.417076,41.80502699906],[-71.418686,41.80465299906],[-71.419098,41.80454999906],[-71.419128,41.80453499906],[-71.41935,41.80441699906]]]}}"}, +{"type": "blockgroup", "typeId": 5001, "areaId": 28691, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.413124,41.80158199906],[-71.412682,41.80055599906],[-71.412468,41.80001799906],[-71.412254,41.79952999906],[-71.411903,41.79872899906],[-71.4104,41.79902999906],[-71.409813,41.79914099906],[-71.409726,41.79915799906],[-71.408997,41.79929699906],[-71.407936,41.79950299906],[-71.407257,41.79963299906],[-71.406754,41.79974399906],[-71.405838,41.79994599906],[-71.406044,41.80078499906],[-71.406097,41.80097999906],[-71.406166,41.80127699906],[-71.40625,41.80160899906],[-71.406357,41.80197499906],[-71.406525,41.80254399906],[-71.406563,41.80266599906],[-71.406685,41.80310399906],[-71.407417,41.80293299906],[-71.408096,41.80277299906],[-71.408119,41.80276499906],[-71.408783,41.80260799906],[-71.409485,41.80244099906],[-71.409798,41.80234499906],[-71.410233,41.80221599906],[-71.411018,41.80203999906],[-71.411682,41.80191799906],[-71.411774,41.80189899906],[-71.412399,41.80174999906],[-71.413124,41.80158199906]]]}}"}, +{"type": "blockgroup", "typeId": 5002, "areaId": 28692, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.417419,41.80043399906],[-71.416801,41.79993099906],[-71.416786,41.79991499906],[-71.416595,41.79975899906],[-71.416138,41.79938899906],[-71.416023,41.79929399906],[-71.415497,41.79887799906],[-71.415466,41.79885099906],[-71.414772,41.79828599906],[-71.414665,41.79819899906],[-71.41391,41.79834399906],[-71.413231,41.79847299906],[-71.412567,41.79859899906],[-71.411903,41.79872899906],[-71.412254,41.79952999906],[-71.412468,41.80001799906],[-71.412682,41.80055599906],[-71.413124,41.80158199906],[-71.413849,41.80141799906],[-71.413925,41.80140299906],[-71.413998,41.80138699906],[-71.414688,41.80124299906],[-71.415031,41.80114399906],[-71.415527,41.80100299906],[-71.415756,41.80092999906],[-71.41642,41.80072399906],[-71.417419,41.80043399906]]]}}"}, +{"type": "blockgroup", "typeId": 5003, "areaId": 28693, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.414665,41.79819899906],[-71.414116,41.79774499906],[-71.414024,41.79767199906],[-71.413727,41.79743999906],[-71.413467,41.79722999906],[-71.413437,41.79721099906],[-71.413071,41.79691699906],[-71.412766,41.79667299906],[-71.412117,41.79615799906],[-71.41153,41.79568199906],[-71.41127,41.79547099906],[-71.410736,41.79502899906],[-71.410454,41.79480699906],[-71.410233,41.79463599906],[-71.409931,41.79439199906],[-71.409767,41.79425799906],[-71.409607,41.79412799906],[-71.409447,41.79399999906],[-71.404854,41.79640199906],[-71.404907,41.79656599906],[-71.40496,41.79677299906],[-71.404968,41.79680599906],[-71.404984,41.79684399906],[-71.404999,41.79689799906],[-71.405006,41.79694399906],[-71.405151,41.79746599906],[-71.405212,41.79767199906],[-71.405373,41.79828599906],[-71.40554,41.79893499906],[-71.40564,41.79930899906],[-71.405838,41.79994599906],[-71.406754,41.79974399906],[-71.407257,41.79963299906],[-71.407936,41.79950299906],[-71.408997,41.79929699906],[-71.409726,41.79915799906],[-71.409813,41.79914099906],[-71.4104,41.79902999906],[-71.411903,41.79872899906],[-71.412567,41.79859899906],[-71.413231,41.79847299906],[-71.41391,41.79834399906],[-71.414665,41.79819899906]]]}}"}, +{"type": "blockgroup", "typeId": 6001, "areaId": 28694, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.415329,41.81692899906],[-71.415024,41.81675099906],[-71.41426,41.81628699906],[-71.413316,41.81576999906],[-71.412527,41.81540799906],[-71.411874,41.81512999906],[-71.412097,41.81510699906],[-71.412205,41.81509599906],[-71.412686,41.81504799906],[-71.412705,41.81504599906],[-71.413064,41.81498699906],[-71.413155,41.81497199906],[-71.413551,41.81491099906],[-71.413719,41.81487999906],[-71.413188,41.81463299906],[-71.412872,41.81448699906],[-71.412758,41.81442999906],[-71.412735,41.81441099906],[-71.412704,41.81438399906],[-71.412651,41.81430799906],[-71.412598,41.81409799906],[-71.412498,41.81382399906],[-71.412315,41.81328199906],[-71.412054,41.81256399906],[-71.411964,41.81231699906],[-71.411819,41.81191599906],[-71.41169,41.81159999906],[-71.41169,41.81157699906],[-71.411705,41.81154599906],[-71.411209,41.81022599906],[-71.409729,41.81044399906],[-71.408653,41.81059299906],[-71.407555,41.81074899906],[-71.407181,41.81081799906],[-71.407188,41.81067699906],[-71.407211,41.81013099906],[-71.407227,41.80956999906],[-71.407227,41.80851699906],[-71.407234,41.80823899906],[-71.407242,41.80790699906],[-71.407249,41.80731199906],[-71.407249,41.80688099906],[-71.407242,41.80654899906],[-71.407227,41.80593899906],[-71.407219,41.80575199906],[-71.407166,41.80535099906],[-71.407135,41.80519899906],[-71.407051,41.80470699906],[-71.407043,41.80464599906],[-71.406929,41.80409199906],[-71.406822,41.80367299906],[-71.406685,41.80310399906],[-71.406563,41.80266599906],[-71.406525,41.80254399906],[-71.406357,41.80197499906],[-71.40625,41.80160899906],[-71.406166,41.80127699906],[-71.406097,41.80097999906],[-71.406044,41.80078499906],[-71.405838,41.79994599906],[-71.40564,41.79930899906],[-71.40554,41.79893499906],[-71.405373,41.79828599906],[-71.405212,41.79767199906],[-71.405151,41.79746599906],[-71.405006,41.79694399906],[-71.404999,41.79689799906],[-71.404984,41.79684399906],[-71.404968,41.79680599906],[-71.40496,41.79677299906],[-71.404907,41.79656599906],[-71.404854,41.79640199906],[-71.404569,41.79655199906],[-71.403529,41.79711899906],[-71.40338,41.79720299906],[-71.403091,41.79734999906],[-71.402969,41.79741599906],[-71.402752,41.79753199906],[-71.402366,41.79770499906],[-71.402091,41.79786499906],[-71.401523,41.79817299906],[-71.400705,41.79859799906],[-71.399845,41.79905099906],[-71.399691,41.79914199906],[-71.399293,41.79935399906],[-71.399223,41.79937999906],[-71.399147,41.79940499906],[-71.398949,41.79948799906],[-71.398751,41.79964199906],[-71.398252,41.79999899906],[-71.397499,41.80047799906],[-71.395736,41.80166599906],[-71.395571,41.80178799906],[-71.391499,41.80419999906],[-71.390099,41.80519999906],[-71.391499,41.80599999906],[-71.393499,41.80709999906],[-71.394915,41.81059099906],[-71.394956,41.81068699906],[-71.394984,41.81077299906],[-71.3978,41.80989999906],[-71.398037,41.81027899906],[-71.3993,41.81229999906],[-71.399404,41.81243999906],[-71.400272,41.81359199906],[-71.401579,41.81532699906],[-71.401719,41.81551399906],[-71.403593,41.81800299906],[-71.404888,41.81999699906],[-71.406272,41.81970099906],[-71.406564,41.81962599906],[-71.406826,41.81956999906],[-71.407635,41.81939499906],[-71.407776,41.81939299906],[-71.408058,41.81935999906],[-71.408173,41.81931299906],[-71.408264,41.81929399906],[-71.409103,41.81912599906],[-71.409866,41.81901899906],[-71.410591,41.81896199906],[-71.411281,41.81893999906],[-71.411329,41.81893999906],[-71.411462,41.81878699906],[-71.411522,41.81881299906],[-71.411819,41.81894299906],[-71.411926,41.81899299906],[-71.412062,41.81905099906],[-71.412094,41.81906499906],[-71.412169,41.81909799906],[-71.412196,41.81910999906],[-71.412231,41.81912599906],[-71.412265,41.81907599906],[-71.413002,41.81825899906],[-71.413035,41.81822499906],[-71.414421,41.81689099906],[-71.414957,41.81719599906],[-71.415032,41.81723899906],[-71.415115,41.81715299906],[-71.415272,41.81699099906],[-71.415291,41.81697099906],[-71.415329,41.81692899906]]]}}"}, +{"type": "blockgroup", "typeId": 6002, "areaId": 28695, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.413528,41.80694199906],[-71.413368,41.80659099906],[-71.413109,41.80593899906],[-71.412735,41.80602599906],[-71.412552,41.80561799906],[-71.412445,41.80536999906],[-71.412399,41.80524799906],[-71.412117,41.80458799906],[-71.411774,41.80379499906],[-71.411484,41.80310399906],[-71.411247,41.80316199906],[-71.41069,41.80328799906],[-71.410233,41.80221599906],[-71.409798,41.80234499906],[-71.409485,41.80244099906],[-71.408783,41.80260799906],[-71.408119,41.80276499906],[-71.408096,41.80277299906],[-71.407417,41.80293299906],[-71.406685,41.80310399906],[-71.406822,41.80367299906],[-71.406929,41.80409199906],[-71.407043,41.80464599906],[-71.407051,41.80470699906],[-71.407135,41.80519899906],[-71.407166,41.80535099906],[-71.407219,41.80575199906],[-71.407227,41.80593899906],[-71.407242,41.80654899906],[-71.407249,41.80688099906],[-71.407249,41.80731199906],[-71.407242,41.80790699906],[-71.407234,41.80823899906],[-71.407227,41.80851699906],[-71.407227,41.80956999906],[-71.407211,41.81013099906],[-71.407188,41.81067699906],[-71.407181,41.81081799906],[-71.407555,41.81074899906],[-71.408653,41.81059299906],[-71.409729,41.81044399906],[-71.411209,41.81022599906],[-71.412796,41.81004299906],[-71.412895,41.81002799906],[-71.412758,41.80936399906],[-71.411865,41.80946399906],[-71.411674,41.80859799906],[-71.411255,41.80749899906],[-71.412125,41.80729699906],[-71.413508,41.80695699906],[-71.413528,41.80694199906]]]}}"}, +{"type": "blockgroup", "typeId": 7001, "areaId": 28696, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.416702,41.81549499906],[-71.416,41.81511299906],[-71.415775,41.81499599906],[-71.415657,41.81493399906],[-71.415558,41.81487299906],[-71.415489,41.81480399906],[-71.415436,41.81473499906],[-71.415298,41.81449499906],[-71.41526,41.81439199906],[-71.415237,41.81423599906],[-71.415215,41.81366699906],[-71.415161,41.81287399906],[-71.415161,41.81254999906],[-71.415169,41.81244699906],[-71.415192,41.81228299906],[-71.415268,41.81184799906],[-71.414017,41.81140499906],[-71.41333,41.81112299906],[-71.413246,41.81107299906],[-71.4132,41.81114999906],[-71.413109,41.81122199906],[-71.413055,41.81125299906],[-71.412994,41.81127499906],[-71.412872,41.81129499906],[-71.412758,41.81132099906],[-71.412575,41.81135199906],[-71.411781,41.81150099906],[-71.411721,41.81152499906],[-71.411705,41.81154599906],[-71.41169,41.81157699906],[-71.41169,41.81159999906],[-71.411819,41.81191599906],[-71.411964,41.81231699906],[-71.412054,41.81256399906],[-71.412315,41.81328199906],[-71.412498,41.81382399906],[-71.412598,41.81409799906],[-71.412651,41.81430799906],[-71.412704,41.81438399906],[-71.412735,41.81441099906],[-71.412758,41.81442999906],[-71.412872,41.81448699906],[-71.413188,41.81463299906],[-71.413719,41.81487999906],[-71.413551,41.81491099906],[-71.413155,41.81497199906],[-71.413064,41.81498699906],[-71.412705,41.81504599906],[-71.412686,41.81504799906],[-71.412205,41.81509599906],[-71.412097,41.81510699906],[-71.411874,41.81512999906],[-71.412527,41.81540799906],[-71.413316,41.81576999906],[-71.41426,41.81628699906],[-71.415024,41.81675099906],[-71.415329,41.81692899906],[-71.415428,41.81681799906],[-71.415451,41.81679899906],[-71.415518,41.81672899906],[-71.41565,41.81659299906],[-71.415672,41.81656999906],[-71.415756,41.81647899906],[-71.415878,41.81635699906],[-71.416702,41.81549499906]]]}}"}, +{"type": "blockgroup", "typeId": 7002, "areaId": 28697, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.421272,41.81075299906],[-71.421082,41.81003199906],[-71.421051,41.80992499906],[-71.421005,41.80977199906],[-71.42086,41.81001699906],[-71.420774,41.81010799906],[-71.420296,41.81061599906],[-71.419769,41.81053199906],[-71.419403,41.81049299906],[-71.418877,41.81041699906],[-71.418457,41.81034499906],[-71.41819,41.81030299906],[-71.417526,41.81020699906],[-71.416412,41.81003999906],[-71.416069,41.80998199906],[-71.415665,41.80995599906],[-71.41436,41.80986399906],[-71.414246,41.80986399906],[-71.412895,41.81002799906],[-71.412796,41.81004299906],[-71.411209,41.81022599906],[-71.411705,41.81154599906],[-71.411721,41.81152499906],[-71.411781,41.81150099906],[-71.412575,41.81135199906],[-71.412758,41.81132099906],[-71.412872,41.81129499906],[-71.412994,41.81127499906],[-71.413055,41.81125299906],[-71.413109,41.81122199906],[-71.4132,41.81114999906],[-71.413246,41.81107299906],[-71.41333,41.81112299906],[-71.414017,41.81140499906],[-71.415268,41.81184799906],[-71.415192,41.81228299906],[-71.415169,41.81244699906],[-71.415161,41.81254999906],[-71.415161,41.81287399906],[-71.415215,41.81366699906],[-71.415237,41.81423599906],[-71.41526,41.81439199906],[-71.415298,41.81449499906],[-71.415436,41.81473499906],[-71.415489,41.81480399906],[-71.415558,41.81487299906],[-71.415657,41.81493399906],[-71.415775,41.81499599906],[-71.416,41.81511299906],[-71.416702,41.81549499906],[-71.417053,41.81512099906],[-71.417142,41.81502899906],[-71.41748,41.81468199906],[-71.418076,41.81405299906],[-71.418099,41.81403699906],[-71.41861,41.81351099906],[-71.419113,41.81297699906],[-71.419608,41.81244799906],[-71.419617,41.81243099906],[-71.419937,41.81209599906],[-71.420128,41.81188999906],[-71.420307,41.81170999906],[-71.420654,41.81135899906],[-71.420708,41.81130999906],[-71.420937,41.81107699906],[-71.421272,41.81075299906]]]}}"}, +{"type": "blockgroup", "typeId": 7003, "areaId": 28698, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.422333,41.81741299906],[-71.422264,41.81716899906],[-71.4216,41.81637999906],[-71.420662,41.81528499906],[-71.420952,41.81475399906],[-71.421143,41.81442999906],[-71.421295,41.81415199906],[-71.42144,41.81389999906],[-71.421738,41.81347299906],[-71.421844,41.81330099906],[-71.421921,41.81317899906],[-71.42202,41.81301499906],[-71.422173,41.81276699906],[-71.422035,41.81272499906],[-71.421928,41.81278999906],[-71.421837,41.81268699906],[-71.421643,41.81221199906],[-71.421631,41.81218299906],[-71.421547,41.81183999906],[-71.421547,41.81182099906],[-71.421272,41.81075299906],[-71.420937,41.81107699906],[-71.420708,41.81130999906],[-71.420654,41.81135899906],[-71.420307,41.81170999906],[-71.420128,41.81188999906],[-71.419937,41.81209599906],[-71.419617,41.81243099906],[-71.419608,41.81244799906],[-71.419113,41.81297699906],[-71.41861,41.81351099906],[-71.418099,41.81403699906],[-71.418076,41.81405299906],[-71.41748,41.81468199906],[-71.417142,41.81502899906],[-71.417053,41.81512099906],[-71.416702,41.81549499906],[-71.415878,41.81635699906],[-71.415756,41.81647899906],[-71.415672,41.81656999906],[-71.41565,41.81659299906],[-71.415518,41.81672899906],[-71.415451,41.81679899906],[-71.415428,41.81681799906],[-71.415329,41.81692899906],[-71.415964,41.81735399906],[-71.416383,41.81763399906],[-71.416413,41.81765899906],[-71.416438,41.81767099906],[-71.416509,41.81771999906],[-71.416525,41.81772999906],[-71.417193,41.81815699906],[-71.418335,41.81900799906],[-71.418544,41.81892299906],[-71.418724,41.81885499906],[-71.418831,41.81880999906],[-71.419228,41.81863799906],[-71.419281,41.81861499906],[-71.420174,41.81822199906],[-71.420569,41.81803799906],[-71.420935,41.81786899906],[-71.421135,41.81777599906],[-71.421349,41.81767999906],[-71.421459,41.81763399906],[-71.421577,41.81759299906],[-71.421789,41.81751699906],[-71.421898,41.81747799906],[-71.421997,41.81745099906],[-71.422333,41.81741299906]]]}}"}, +{"type": "blockgroup", "typeId": 8001, "areaId": 28699, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.420158,41.82194099906],[-71.420154,41.82167099906],[-71.420105,41.82129699906],[-71.420057,41.82109699906],[-71.419958,41.82086299906],[-71.41971,41.82037499906],[-71.419562,41.82016999906],[-71.419351,41.81989499906],[-71.419173,41.82000699906],[-71.418846,41.82021299906],[-71.41803,41.82070799906],[-71.417946,41.82075899906],[-71.417198,41.82126199906],[-71.416824,41.82154099906],[-71.416451,41.82182299906],[-71.415909,41.82221599906],[-71.415497,41.82252099906],[-71.415428,41.82257499906],[-71.414795,41.82305099906],[-71.414375,41.82334099906],[-71.413994,41.82360099906],[-71.413399,41.82400899906],[-71.412766,41.82444799906],[-71.412697,41.82449699906],[-71.412491,41.82463499906],[-71.412048,41.82493599906],[-71.411514,41.82532899906],[-71.411026,41.82571399906],[-71.410782,41.82590499906],[-71.410286,41.82627099906],[-71.410149,41.82634699906],[-71.410049,41.82640799906],[-71.410011,41.82643099906],[-71.409983,41.82644599906],[-71.409804,41.82653899906],[-71.409654,41.82661699906],[-71.409633,41.82662799906],[-71.409615,41.82664099906],[-71.409515,41.82667899906],[-71.409309,41.82677099906],[-71.408951,41.82688499906],[-71.40873,41.82693499906],[-71.409058,41.82748799906],[-71.409184,41.82769499906],[-71.409286,41.82786199906],[-71.409351,41.82797199906],[-71.409447,41.82813599906],[-71.409538,41.82835399906],[-71.409584,41.82849099906],[-71.409637,41.82865499906],[-71.409729,41.82890699906],[-71.409813,41.82916399906],[-71.409988,41.82966999906],[-71.410156,41.83013899906],[-71.410248,41.83040999906],[-71.410393,41.83082599906],[-71.410408,41.83085599906],[-71.410629,41.83152799906],[-71.411331,41.83141699906],[-71.411447,41.83140199906],[-71.411507,41.83139399906],[-71.411621,41.83139399906],[-71.41229,41.83146799906],[-71.412346,41.83147399906],[-71.412418,41.83148199906],[-71.41247,41.83148699906],[-71.412804,41.83151999906],[-71.414026,41.83164299906],[-71.414131,41.83165399906],[-71.414497,41.83167599906],[-71.415573,41.83175299906],[-71.415981,41.83179399906],[-71.41629,41.83182499906],[-71.416441,41.83183999906],[-71.416595,41.83185599906],[-71.416878,41.83189399906],[-71.417196,41.83194899906],[-71.417224,41.83195399906],[-71.41745,41.83201199906],[-71.417503,41.83189399906],[-71.417679,41.83144799906],[-71.4177,41.83137799906],[-71.417793,41.83106599906],[-71.417819,41.83096399906],[-71.41783,41.83091899906],[-71.417862,41.83079499906],[-71.417925,41.83028299906],[-71.417997,41.82969199906],[-71.418009,41.82959399906],[-71.418015,41.82954799906],[-71.418076,41.82886899906],[-71.418152,41.82850299906],[-71.418289,41.82803699906],[-71.418129,41.82799099906],[-71.418152,41.82792499906],[-71.418218,41.82773999906],[-71.418274,41.82758299906],[-71.418442,41.82708499906],[-71.418474,41.82699699906],[-71.418488,41.82695899906],[-71.418557,41.82677399906],[-71.41863,41.82657599906],[-71.418732,41.82630199906],[-71.418829,41.82603999906],[-71.418839,41.82602299906],[-71.418877,41.82590499906],[-71.418982,41.82562299906],[-71.41906,41.82542799906],[-71.419113,41.82527199906],[-71.419189,41.82507699906],[-71.419235,41.82494499906],[-71.419342,41.82463799906],[-71.419472,41.82429899906],[-71.419533,41.82411999906],[-71.419594,41.82396699906],[-71.419708,41.82364699906],[-71.419818,41.82330999906],[-71.419868,41.82315799906],[-71.419876,41.82313399906],[-71.419899,41.82306299906],[-71.419922,41.82300899906],[-71.420067,41.82254399906],[-71.42012,41.82233799906],[-71.420151,41.82213999906],[-71.420151,41.82208299906],[-71.420158,41.82201799906],[-71.420158,41.82194099906]]]}}"}, +{"type": "blockgroup", "typeId": 8002, "areaId": 28700, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.419351,41.81989499906],[-71.419258,41.81979399906],[-71.419067,41.81960699906],[-71.418335,41.81900799906],[-71.417193,41.81815699906],[-71.416525,41.81772999906],[-71.416509,41.81771999906],[-71.416438,41.81767099906],[-71.416413,41.81765899906],[-71.416383,41.81763399906],[-71.415964,41.81735399906],[-71.415329,41.81692899906],[-71.415291,41.81697099906],[-71.415272,41.81699099906],[-71.415115,41.81715299906],[-71.415032,41.81723899906],[-71.414957,41.81719599906],[-71.414421,41.81689099906],[-71.413035,41.81822499906],[-71.413002,41.81825899906],[-71.412265,41.81907599906],[-71.412231,41.81912599906],[-71.412933,41.81943899906],[-71.413605,41.81973599906],[-71.413677,41.81976599906],[-71.414314,41.82003399906],[-71.414345,41.82005699906],[-71.414536,41.82027299906],[-71.414635,41.82038499906],[-71.41478,41.82053399906],[-71.414803,41.82055999906],[-71.415215,41.82089999906],[-71.415314,41.82097199906],[-71.415588,41.82118199906],[-71.416451,41.82182299906],[-71.416824,41.82154099906],[-71.417198,41.82126199906],[-71.417946,41.82075899906],[-71.41803,41.82070799906],[-71.418846,41.82021299906],[-71.419173,41.82000699906],[-71.419351,41.81989499906]]]}}"}, +{"type": "blockgroup", "typeId": 8003, "areaId": 28701, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.416451,41.82182299906],[-71.415588,41.82118199906],[-71.415314,41.82097199906],[-71.415215,41.82089999906],[-71.414803,41.82055999906],[-71.41478,41.82053399906],[-71.414635,41.82038499906],[-71.414536,41.82027299906],[-71.414345,41.82005699906],[-71.414314,41.82003399906],[-71.413677,41.81976599906],[-71.413605,41.81973599906],[-71.412933,41.81943899906],[-71.412231,41.81912599906],[-71.412196,41.81910999906],[-71.412169,41.81909799906],[-71.412094,41.81906499906],[-71.412062,41.81905099906],[-71.411926,41.81899299906],[-71.411819,41.81894299906],[-71.411522,41.81881299906],[-71.411462,41.81878699906],[-71.411329,41.81893999906],[-71.411281,41.81893999906],[-71.410591,41.81896199906],[-71.409866,41.81901899906],[-71.409103,41.81912599906],[-71.408264,41.81929399906],[-71.408173,41.81931299906],[-71.408058,41.81935999906],[-71.407776,41.81939299906],[-71.407635,41.81939499906],[-71.406826,41.81956999906],[-71.406564,41.81962599906],[-71.406272,41.81970099906],[-71.404888,41.81999699906],[-71.40503,41.82021599906],[-71.40515,41.82038499906],[-71.40636,41.82208999906],[-71.406813,41.82266899906],[-71.406592,41.82280199906],[-71.406502,41.82284899906],[-71.406349,41.82292599906],[-71.405869,41.82319299906],[-71.406166,41.82349799906],[-71.406433,41.82377199906],[-71.406654,41.82398199906],[-71.406731,41.82407799906],[-71.406737,41.82408799906],[-71.40686,41.82428699906],[-71.406868,41.82430999906],[-71.406908,41.82437399906],[-71.40712,41.82471099906],[-71.407318,41.82496599906],[-71.407814,41.82560699906],[-71.407837,41.82564199906],[-71.40815,41.82599999906],[-71.408197,41.82607599906],[-71.408278,41.82620699906],[-71.40873,41.82693499906],[-71.408951,41.82688499906],[-71.409309,41.82677099906],[-71.409515,41.82667899906],[-71.409615,41.82664099906],[-71.409633,41.82662799906],[-71.409654,41.82661699906],[-71.409804,41.82653899906],[-71.409983,41.82644599906],[-71.410011,41.82643099906],[-71.410049,41.82640799906],[-71.410149,41.82634699906],[-71.410286,41.82627099906],[-71.410782,41.82590499906],[-71.411026,41.82571399906],[-71.411514,41.82532899906],[-71.412048,41.82493599906],[-71.412491,41.82463499906],[-71.412697,41.82449699906],[-71.412766,41.82444799906],[-71.413399,41.82400899906],[-71.413994,41.82360099906],[-71.414375,41.82334099906],[-71.414795,41.82305099906],[-71.415428,41.82257499906],[-71.415497,41.82252099906],[-71.415909,41.82221599906],[-71.416451,41.82182299906]]]}}"}, +{"type": "blockgroup", "typeId": 9001, "areaId": 28702, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.43364,41.82421899906],[-71.433594,41.82420699906],[-71.43338,41.82417299906],[-71.433167,41.82413099906],[-71.43309,41.82411999906],[-71.432732,41.82404699906],[-71.432465,41.82400899906],[-71.432335,41.82398999906],[-71.432388,41.82382599906],[-71.432404,41.82368499906],[-71.432396,41.82359699906],[-71.432373,41.82348999906],[-71.432335,41.82340999906],[-71.432312,41.82337999906],[-71.432167,41.82317699906],[-71.431976,41.82292899906],[-71.431938,41.82289099906],[-71.431816,41.82273099906],[-71.431175,41.82287999906],[-71.430656,41.82300199906],[-71.429932,41.82316599906],[-71.42971,41.82277299906],[-71.429529,41.82282599906],[-71.429444,41.82285099906],[-71.428909,41.82301299906],[-71.429295,41.82367999906],[-71.429291,41.82376099906],[-71.428719,41.82372299906],[-71.428322,41.82369599906],[-71.428024,41.82367299906],[-71.427495,41.82363799906],[-71.426933,41.82359299906],[-71.426765,41.82331099906],[-71.426605,41.82307399906],[-71.426254,41.82255499906],[-71.426208,41.82248699906],[-71.425812,41.82246799906],[-71.425575,41.82245299906],[-71.425331,41.82243699906],[-71.424911,41.82240699906],[-71.424538,41.82238399906],[-71.423721,41.82232999906],[-71.423264,41.82228499906],[-71.422806,41.82225399906],[-71.422371,41.82222699906],[-71.421928,41.82219299906],[-71.421478,41.82215099906],[-71.421135,41.82212799906],[-71.420959,41.82207499906],[-71.420784,41.82197999906],[-71.420792,41.82194499906],[-71.420792,41.82182299906],[-71.420799,41.82178099906],[-71.420464,41.82186499906],[-71.420357,41.82189199906],[-71.420158,41.82194099906],[-71.420158,41.82201799906],[-71.420151,41.82208299906],[-71.420151,41.82213999906],[-71.42012,41.82233799906],[-71.420067,41.82254399906],[-71.419922,41.82300899906],[-71.419899,41.82306299906],[-71.419876,41.82313399906],[-71.419868,41.82315799906],[-71.419818,41.82330999906],[-71.419708,41.82364699906],[-71.419594,41.82396699906],[-71.419533,41.82411999906],[-71.419472,41.82429899906],[-71.419342,41.82463799906],[-71.419235,41.82494499906],[-71.419189,41.82507699906],[-71.419113,41.82527199906],[-71.41906,41.82542799906],[-71.418982,41.82562299906],[-71.418877,41.82590499906],[-71.418839,41.82602299906],[-71.419014,41.82605399906],[-71.419258,41.82609899906],[-71.419815,41.82618299906],[-71.42009,41.82621799906],[-71.420174,41.82622099906],[-71.420364,41.82622899906],[-71.420654,41.82622899906],[-71.421021,41.82621799906],[-71.421516,41.82616799906],[-71.423523,41.82598499906],[-71.42411,41.82594699906],[-71.4247,41.82593599906],[-71.425193,41.82593599906],[-71.425393,41.82593099906],[-71.42568,41.82591199906],[-71.425882,41.82589399906],[-71.425981,41.82588899906],[-71.426675,41.82583299906],[-71.427323,41.82576199906],[-71.428018,41.82566399906],[-71.428597,41.82555899906],[-71.429153,41.82544599906],[-71.429848,41.82529099906],[-71.431465,41.82492799906],[-71.431688,41.82487399906],[-71.432495,41.82467999906],[-71.432838,41.82456199906],[-71.433144,41.82445099906],[-71.433411,41.82433299906],[-71.43351,41.82427999906],[-71.43354,41.82426599906],[-71.43364,41.82421899906]]]}}"}, +{"type": "blockgroup", "typeId": 9002, "areaId": 28703, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.432556,41.82254799906],[-71.432297,41.82193399906],[-71.432137,41.82152199906],[-71.432045,41.82130799906],[-71.43177,41.82068299906],[-71.430496,41.82095699906],[-71.430367,41.82079699906],[-71.429428,41.82137299906],[-71.429222,41.82147999906],[-71.429016,41.82152599906],[-71.428776,41.82160999906],[-71.428238,41.82179999906],[-71.427391,41.82205599906],[-71.426582,41.82234199906],[-71.426208,41.82248699906],[-71.426254,41.82255499906],[-71.426605,41.82307399906],[-71.426765,41.82331099906],[-71.426933,41.82359299906],[-71.427495,41.82363799906],[-71.428024,41.82367299906],[-71.428322,41.82369599906],[-71.428719,41.82372299906],[-71.429291,41.82376099906],[-71.429295,41.82367999906],[-71.428909,41.82301299906],[-71.429444,41.82285099906],[-71.429529,41.82282599906],[-71.42971,41.82277299906],[-71.429932,41.82316599906],[-71.430656,41.82300199906],[-71.431175,41.82287999906],[-71.431816,41.82273099906],[-71.432556,41.82254799906]]]}}"}, +{"type": "blockgroup", "typeId": 10001, "areaId": 28704, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.435837,41.82043099906],[-71.435814,41.82036199906],[-71.435722,41.82015199906],[-71.435654,41.81992299906],[-71.435593,41.81978199906],[-71.435471,41.81951499906],[-71.435318,41.81914499906],[-71.435028,41.81847799906],[-71.435143,41.81845099906],[-71.434952,41.81752399906],[-71.434822,41.81695599906],[-71.434662,41.81618099906],[-71.43396,41.81628399906],[-71.43354,41.81634099906],[-71.432457,41.81645999906],[-71.431717,41.81654699906],[-71.431335,41.81658899906],[-71.430481,41.81668899906],[-71.430664,41.81766099906],[-71.430794,41.81825299906],[-71.430847,41.81844699906],[-71.430946,41.81869499906],[-71.430984,41.81879399906],[-71.431221,41.81936299906],[-71.431503,41.82004899906],[-71.43177,41.82068299906],[-71.432045,41.82130799906],[-71.433723,41.82089999906],[-71.434151,41.82079699906],[-71.434921,41.82063299906],[-71.435837,41.82043099906]]]}}"}, +{"type": "blockgroup", "typeId": 10002, "areaId": 28705, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.439534,41.81596199906],[-71.439484,41.81594499906],[-71.439423,41.81592199906],[-71.439392,41.81590999906],[-71.439354,41.81590299906],[-71.439171,41.81584799906],[-71.439011,41.81579999906],[-71.438918,41.81578099906],[-71.438858,41.81576899906],[-71.438751,41.81576499906],[-71.438652,41.81576499906],[-71.43811,41.81578799906],[-71.437424,41.81582599906],[-71.437042,41.81585699906],[-71.436531,41.81592199906],[-71.435387,41.81608199906],[-71.435204,41.81610499906],[-71.434662,41.81618099906],[-71.434822,41.81695599906],[-71.434952,41.81752399906],[-71.435143,41.81845099906],[-71.435028,41.81847799906],[-71.435318,41.81914499906],[-71.435471,41.81951499906],[-71.435593,41.81978199906],[-71.435654,41.81992299906],[-71.435722,41.82015199906],[-71.435814,41.82036199906],[-71.435837,41.82043099906],[-71.434921,41.82063299906],[-71.434151,41.82079699906],[-71.433723,41.82089999906],[-71.432045,41.82130799906],[-71.432137,41.82152199906],[-71.432297,41.82193399906],[-71.432556,41.82254799906],[-71.431816,41.82273099906],[-71.431938,41.82289099906],[-71.431976,41.82292899906],[-71.432167,41.82317699906],[-71.432312,41.82337999906],[-71.432335,41.82340999906],[-71.432373,41.82348999906],[-71.432396,41.82359699906],[-71.432404,41.82368499906],[-71.432388,41.82382599906],[-71.432335,41.82398999906],[-71.432465,41.82400899906],[-71.432732,41.82404699906],[-71.43309,41.82411999906],[-71.433167,41.82413099906],[-71.43338,41.82417299906],[-71.433594,41.82420699906],[-71.43364,41.82421899906],[-71.434067,41.82398999906],[-71.434669,41.82358599906],[-71.434944,41.82337199906],[-71.435173,41.82318499906],[-71.435333,41.82303199906],[-71.435585,41.82278099906],[-71.435852,41.82248699906],[-71.436089,41.82219299906],[-71.436272,41.82193799906],[-71.436534,41.82154399906],[-71.436546,41.82152599906],[-71.436722,41.82127799906],[-71.436974,41.82090799906],[-71.437126,41.82067499906],[-71.437553,41.82002299906],[-71.437623,41.81991399906],[-71.437846,41.81956499906],[-71.437881,41.81951099906],[-71.438019,41.81927499906],[-71.438092,41.81913699906],[-71.438133,41.81906099906],[-71.438278,41.81881699906],[-71.43844,41.81855899906],[-71.438499,41.81844699906],[-71.438828,41.81784399906],[-71.438942,41.81761599906],[-71.439018,41.81744799906],[-71.439303,41.81678799906],[-71.439422,41.81646999906],[-71.439534,41.81596199906]]]}}"}, +{"type": "blockgroup", "typeId": 11001, "areaId": 28706, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.43177,41.82068299906],[-71.431503,41.82004899906],[-71.431221,41.81936299906],[-71.430367,41.81956099906],[-71.429359,41.81979799906],[-71.428185,41.82007599906],[-71.428101,41.82009499906],[-71.427868,41.82014799906],[-71.427767,41.82017099906],[-71.427361,41.82026699906],[-71.426537,41.82046499906],[-71.425697,41.82065199906],[-71.425255,41.82076999906],[-71.424202,41.82100299906],[-71.424149,41.82101399906],[-71.423866,41.82109099906],[-71.423347,41.82120899906],[-71.422958,41.82130399906],[-71.422523,41.82140399906],[-71.42234,41.82145299906],[-71.422073,41.82151399906],[-71.421989,41.82153699906],[-71.421768,41.82158999906],[-71.421555,41.82165099906],[-71.421036,41.82172799906],[-71.420799,41.82178099906],[-71.420792,41.82182299906],[-71.420792,41.82194499906],[-71.420784,41.82197999906],[-71.420959,41.82207499906],[-71.421135,41.82212799906],[-71.421478,41.82215099906],[-71.421928,41.82219299906],[-71.422371,41.82222699906],[-71.422806,41.82225399906],[-71.423264,41.82228499906],[-71.423721,41.82232999906],[-71.424538,41.82238399906],[-71.424911,41.82240699906],[-71.425331,41.82243699906],[-71.425575,41.82245299906],[-71.425812,41.82246799906],[-71.426208,41.82248699906],[-71.426582,41.82234199906],[-71.427391,41.82205599906],[-71.428238,41.82179999906],[-71.428776,41.82160999906],[-71.429016,41.82152599906],[-71.429222,41.82147999906],[-71.429428,41.82137299906],[-71.430367,41.82079699906],[-71.430496,41.82095699906],[-71.43177,41.82068299906]]]}}"}, +{"type": "blockgroup", "typeId": 11002, "areaId": 28707, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.430664,41.81766099906],[-71.430481,41.81668899906],[-71.430305,41.81670799906],[-71.429054,41.81684499906],[-71.428482,41.81690599906],[-71.428406,41.81691699906],[-71.427185,41.81705099906],[-71.426254,41.81713099906],[-71.426132,41.81713899906],[-71.425537,41.81717699906],[-71.425148,41.81719999906],[-71.425034,41.81720699906],[-71.424637,41.81723799906],[-71.423584,41.81730999906],[-71.422333,41.81741299906],[-71.421997,41.81745099906],[-71.421898,41.81747799906],[-71.421789,41.81751699906],[-71.421577,41.81759299906],[-71.421459,41.81763399906],[-71.421349,41.81767999906],[-71.421135,41.81777599906],[-71.420935,41.81786899906],[-71.420569,41.81803799906],[-71.420174,41.81822199906],[-71.419281,41.81861499906],[-71.419228,41.81863799906],[-71.418831,41.81880999906],[-71.418724,41.81885499906],[-71.418544,41.81892299906],[-71.418335,41.81900799906],[-71.419067,41.81960699906],[-71.419258,41.81979399906],[-71.419351,41.81989499906],[-71.419562,41.82016999906],[-71.41971,41.82037499906],[-71.419958,41.82086299906],[-71.420057,41.82109699906],[-71.420105,41.82129699906],[-71.420154,41.82167099906],[-71.420158,41.82194099906],[-71.420357,41.82189199906],[-71.420464,41.82186499906],[-71.420799,41.82178099906],[-71.421036,41.82172799906],[-71.421555,41.82165099906],[-71.421768,41.82158999906],[-71.421989,41.82153699906],[-71.422073,41.82151399906],[-71.42234,41.82145299906],[-71.422523,41.82140399906],[-71.422958,41.82130399906],[-71.423347,41.82120899906],[-71.423866,41.82109099906],[-71.424149,41.82101399906],[-71.424202,41.82100299906],[-71.425255,41.82076999906],[-71.425697,41.82065199906],[-71.425468,41.82008699906],[-71.425301,41.81987399906],[-71.424911,41.81934699906],[-71.425957,41.81889699906],[-71.426727,41.81857699906],[-71.426803,41.81854299906],[-71.426949,41.81848099906],[-71.427483,41.81825599906],[-71.427719,41.81821099906],[-71.427986,41.81814999906],[-71.428276,41.81809999906],[-71.428711,41.81802399906],[-71.430176,41.81775299906],[-71.430664,41.81766099906]]]}}"}, +{"type": "blockgroup", "typeId": 11003, "areaId": 28708, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.431221,41.81936299906],[-71.430984,41.81879399906],[-71.430946,41.81869499906],[-71.430847,41.81844699906],[-71.430794,41.81825299906],[-71.430664,41.81766099906],[-71.430176,41.81775299906],[-71.428711,41.81802399906],[-71.428276,41.81809999906],[-71.427986,41.81814999906],[-71.427719,41.81821099906],[-71.427483,41.81825599906],[-71.426949,41.81848099906],[-71.426803,41.81854299906],[-71.426727,41.81857699906],[-71.425957,41.81889699906],[-71.424911,41.81934699906],[-71.425301,41.81987399906],[-71.425468,41.82008699906],[-71.425697,41.82065199906],[-71.426537,41.82046499906],[-71.427361,41.82026699906],[-71.427767,41.82017099906],[-71.427868,41.82014799906],[-71.428101,41.82009499906],[-71.428185,41.82007599906],[-71.429359,41.81979799906],[-71.430367,41.81956099906],[-71.431221,41.81936299906]]]}}"}, +{"type": "blockgroup", "typeId": 12001, "areaId": 28709, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.428406,41.81691699906],[-71.428062,41.81619299906],[-71.42794,41.81594499906],[-71.427605,41.81529199906],[-71.427216,41.81445699906],[-71.427167,41.81436999906],[-71.426933,41.81395699906],[-71.426552,41.81344999906],[-71.426468,41.81334299906],[-71.426147,41.81299599906],[-71.426109,41.81296899906],[-71.426041,41.81291599906],[-71.425926,41.81284299906],[-71.425895,41.81283099906],[-71.425789,41.81278599906],[-71.425652,41.81275599906],[-71.425461,41.81273999906],[-71.425117,41.81274399906],[-71.423882,41.81276699906],[-71.423531,41.81277099906],[-71.422791,41.81277499906],[-71.422173,41.81276699906],[-71.42202,41.81301499906],[-71.421921,41.81317899906],[-71.421844,41.81330099906],[-71.421738,41.81347299906],[-71.42144,41.81389999906],[-71.421295,41.81415199906],[-71.421143,41.81442999906],[-71.420952,41.81475399906],[-71.420662,41.81528499906],[-71.4216,41.81637999906],[-71.422264,41.81716899906],[-71.422333,41.81741299906],[-71.423584,41.81730999906],[-71.424637,41.81723799906],[-71.425034,41.81720699906],[-71.425148,41.81719999906],[-71.425537,41.81717699906],[-71.426132,41.81713899906],[-71.426254,41.81713099906],[-71.427185,41.81705099906],[-71.428406,41.81691699906]]]}}"}, +{"type": "blockgroup", "typeId": 12002, "areaId": 28710, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.431335,41.81658899906],[-71.431129,41.81607399906],[-71.431091,41.81598299906],[-71.430473,41.81459799906],[-71.430176,41.81391899906],[-71.429934,41.81337699906],[-71.429758,41.81298399906],[-71.429588,41.81260299906],[-71.429428,41.81225199906],[-71.429062,41.81141999906],[-71.42852,41.81154599906],[-71.427994,41.81164599906],[-71.427322,41.81158399906],[-71.426544,41.81151199906],[-71.42646,41.81203499906],[-71.426453,41.81222499906],[-71.42646,41.81227899906],[-71.426498,41.81233199906],[-71.426603,41.81244599906],[-71.425895,41.81283099906],[-71.425926,41.81284299906],[-71.426041,41.81291599906],[-71.426109,41.81296899906],[-71.426147,41.81299599906],[-71.426468,41.81334299906],[-71.426552,41.81344999906],[-71.426933,41.81395699906],[-71.427167,41.81436999906],[-71.427216,41.81445699906],[-71.427605,41.81529199906],[-71.42794,41.81594499906],[-71.428062,41.81619299906],[-71.428406,41.81691699906],[-71.428482,41.81690599906],[-71.429054,41.81684499906],[-71.430305,41.81670799906],[-71.430481,41.81668899906],[-71.431335,41.81658899906]]]}}"}, +{"type": "blockgroup", "typeId": 12003, "areaId": 28711, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.429062,41.81141999906],[-71.428802,41.81082499906],[-71.428612,41.81041299906],[-71.428322,41.80974199906],[-71.428009,41.80905199906],[-71.427597,41.80902899906],[-71.426598,41.80893699906],[-71.425484,41.80884199906],[-71.424629,41.80877699906],[-71.424599,41.80889099906],[-71.424561,41.80900599906],[-71.424507,41.80912799906],[-71.424377,41.80940599906],[-71.424049,41.80989099906],[-71.423965,41.81001299906],[-71.423569,41.81060399906],[-71.423157,41.81121399906],[-71.422569,41.81207299906],[-71.422173,41.81276699906],[-71.422791,41.81277499906],[-71.423531,41.81277099906],[-71.423882,41.81276699906],[-71.425117,41.81274399906],[-71.425461,41.81273999906],[-71.425652,41.81275599906],[-71.425789,41.81278599906],[-71.425895,41.81283099906],[-71.426603,41.81244599906],[-71.426498,41.81233199906],[-71.42646,41.81227899906],[-71.426453,41.81222499906],[-71.42646,41.81203499906],[-71.426544,41.81151199906],[-71.427322,41.81158399906],[-71.427994,41.81164599906],[-71.42852,41.81154599906],[-71.429062,41.81141999906]]]}}"}, +{"type": "blockgroup", "typeId": 13001, "areaId": 28712, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.437042,41.81585699906],[-71.436916,41.81547399906],[-71.436752,41.81497699906],[-71.43673,41.81488999906],[-71.436485,41.81412099906],[-71.436417,41.81392699906],[-71.436371,41.81378199906],[-71.436264,41.81348399906],[-71.436142,41.81313299906],[-71.434547,41.81324799906],[-71.43335,41.81331599906],[-71.433229,41.81332099906],[-71.432706,41.81334399906],[-71.432396,41.81335799906],[-71.431725,41.81339599906],[-71.431473,41.81272499906],[-71.431168,41.81188999906],[-71.431061,41.81185899906],[-71.430344,41.81221399906],[-71.429588,41.81260299906],[-71.429758,41.81298399906],[-71.429934,41.81337699906],[-71.430176,41.81391899906],[-71.430473,41.81459799906],[-71.431091,41.81598299906],[-71.431129,41.81607399906],[-71.431335,41.81658899906],[-71.431717,41.81654699906],[-71.432457,41.81645999906],[-71.43354,41.81634099906],[-71.43396,41.81628399906],[-71.434662,41.81618099906],[-71.435204,41.81610499906],[-71.435387,41.81608199906],[-71.436531,41.81592199906],[-71.437042,41.81585699906]]]}}"}, +{"type": "blockgroup", "typeId": 13002, "areaId": 28713, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.436142,41.81313299906],[-71.43593,41.81248699906],[-71.435928,41.81246899906],[-71.435684,41.81177099906],[-71.43557,41.81141699906],[-71.435463,41.81106899906],[-71.435318,41.81067299906],[-71.435204,41.81036799906],[-71.435127,41.81012699906],[-71.434959,41.81011999906],[-71.434364,41.80993299906],[-71.433683,41.80970999906],[-71.433449,41.80963499906],[-71.433105,41.80997099906],[-71.432617,41.81042499906],[-71.432053,41.81099299906],[-71.431564,41.81146599906],[-71.431412,41.81160399906],[-71.43129,41.81169899906],[-71.431137,41.81180599906],[-71.431061,41.81185899906],[-71.431168,41.81188999906],[-71.431473,41.81272499906],[-71.431725,41.81339599906],[-71.432396,41.81335799906],[-71.432706,41.81334399906],[-71.433229,41.81332099906],[-71.43335,41.81331599906],[-71.434547,41.81324799906],[-71.436142,41.81313299906]]]}}"}, +{"type": "blockgroup", "typeId": 13003, "areaId": 28714, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.44017,41.80909299906],[-71.440056,41.80894899906],[-71.440002,41.80890999906],[-71.439891,41.80888699906],[-71.439835,41.80887599906],[-71.439575,41.80894099906],[-71.439338,41.80902299906],[-71.438692,41.80920899906],[-71.438265,41.80932399906],[-71.437157,41.80958899906],[-71.435501,41.81003599906],[-71.435127,41.81012699906],[-71.435204,41.81036799906],[-71.435318,41.81067299906],[-71.435463,41.81106899906],[-71.43557,41.81141699906],[-71.435684,41.81177099906],[-71.436058,41.81178299906],[-71.437103,41.81182899906],[-71.438164,41.81188599906],[-71.438889,41.81191299906],[-71.439751,41.81195399906],[-71.439911,41.81196999906],[-71.439957,41.81181699906],[-71.43998,41.81146999906],[-71.440002,41.81127499906],[-71.440033,41.81095099906],[-71.440018,41.81059299906],[-71.440002,41.81037099906],[-71.439987,41.81003999906],[-71.439987,41.80983699906],[-71.440033,41.80952799906],[-71.440048,41.80937599906],[-71.440056,41.80931499906],[-71.440086,41.80916999906],[-71.44017,41.80909299906]]]}}"}, +{"type": "blockgroup", "typeId": 13004, "areaId": 28715, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.440809,41.80864099906],[-71.440567,41.80870399906],[-71.4403,41.80877699906],[-71.440186,41.80880399906],[-71.439835,41.80887599906],[-71.439891,41.80888699906],[-71.440002,41.80890999906],[-71.440056,41.80894899906],[-71.44017,41.80909299906],[-71.440086,41.80916999906],[-71.440056,41.80931499906],[-71.440048,41.80937599906],[-71.440033,41.80952799906],[-71.439987,41.80983699906],[-71.439987,41.81003999906],[-71.440002,41.81037099906],[-71.440018,41.81059299906],[-71.440033,41.81095099906],[-71.440002,41.81127499906],[-71.43998,41.81146999906],[-71.439957,41.81181699906],[-71.439911,41.81196999906],[-71.439751,41.81195399906],[-71.438889,41.81191299906],[-71.438164,41.81188599906],[-71.437103,41.81182899906],[-71.436058,41.81178299906],[-71.435684,41.81177099906],[-71.435928,41.81246899906],[-71.43593,41.81248699906],[-71.436142,41.81313299906],[-71.436264,41.81348399906],[-71.436371,41.81378199906],[-71.436417,41.81392699906],[-71.436485,41.81412099906],[-71.43673,41.81488999906],[-71.436752,41.81497699906],[-71.436916,41.81547399906],[-71.437042,41.81585699906],[-71.437424,41.81582599906],[-71.43811,41.81578799906],[-71.438652,41.81576499906],[-71.438751,41.81576499906],[-71.438858,41.81576899906],[-71.438918,41.81578099906],[-71.439011,41.81579999906],[-71.439171,41.81584799906],[-71.439354,41.81590299906],[-71.439392,41.81590999906],[-71.439423,41.81592199906],[-71.439484,41.81594499906],[-71.439534,41.81596199906],[-71.439613,41.81558199906],[-71.439838,41.81460099906],[-71.439865,41.81448399906],[-71.439873,41.81446699906],[-71.439941,41.81416699906],[-71.44001,41.81381599906],[-71.440079,41.81350699906],[-71.440224,41.81287799906],[-71.440369,41.81214099906],[-71.440453,41.81167599906],[-71.440567,41.81121399906],[-71.440582,41.81107699906],[-71.44059,41.81078299906],[-71.440628,41.81029099906],[-71.440809,41.80864099906]]]}}"}, +{"type": "blockgroup", "typeId": 14001, "areaId": 28716, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.433559,41.80950399906],[-71.432903,41.80932599906],[-71.432145,41.80910999906],[-71.431212,41.80883599906],[-71.43119,41.80882999906],[-71.430229,41.80855899906],[-71.428406,41.80808299906],[-71.428162,41.80864299906],[-71.428009,41.80905199906],[-71.428322,41.80974199906],[-71.428612,41.81041299906],[-71.428802,41.81082499906],[-71.429062,41.81141999906],[-71.429428,41.81225199906],[-71.429588,41.81260299906],[-71.430344,41.81221399906],[-71.431061,41.81185899906],[-71.431137,41.81180599906],[-71.43129,41.81169899906],[-71.431412,41.81160399906],[-71.431564,41.81146599906],[-71.432053,41.81099299906],[-71.432617,41.81042499906],[-71.433105,41.80997099906],[-71.433449,41.80963499906],[-71.433559,41.80950399906]]]}}"}, +{"type": "blockgroup", "typeId": 14002, "areaId": 28717, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.435707,41.80701099906],[-71.434402,41.80665599906],[-71.433574,41.80643999906],[-71.43325,41.80635499906],[-71.432007,41.80602299906],[-71.430733,41.80566399906],[-71.429581,41.80535899906],[-71.42923,41.80616399906],[-71.428955,41.80680799906],[-71.428688,41.80744199906],[-71.428406,41.80808299906],[-71.430229,41.80855899906],[-71.43119,41.80882999906],[-71.431212,41.80883599906],[-71.432145,41.80910999906],[-71.432903,41.80932599906],[-71.433559,41.80950399906],[-71.434059,41.80889499906],[-71.43454,41.80832299906],[-71.435074,41.80773199906],[-71.435707,41.80701099906]]]}}"}, +{"type": "blockgroup", "typeId": 14003, "areaId": 28718, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.439575,41.80894099906],[-71.43866,41.80848299906],[-71.43737,41.80786499906],[-71.435707,41.80701099906],[-71.435074,41.80773199906],[-71.43454,41.80832299906],[-71.434059,41.80889499906],[-71.433559,41.80950399906],[-71.433449,41.80963499906],[-71.433683,41.80970999906],[-71.434364,41.80993299906],[-71.434959,41.81011999906],[-71.435127,41.81012699906],[-71.435501,41.81003599906],[-71.437157,41.80958899906],[-71.438265,41.80932399906],[-71.438692,41.80920899906],[-71.439338,41.80902299906],[-71.439575,41.80894099906]]]}}"}, +{"type": "blockgroup", "typeId": 14004, "areaId": 28719, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.439938,41.80341499906],[-71.43987,41.80337599906],[-71.439579,41.80323999906],[-71.439162,41.80306199906],[-71.438658,41.80286799906],[-71.437279,41.80240099906],[-71.437046,41.80232299906],[-71.435164,41.80169299906],[-71.434762,41.80155499906],[-71.434369,41.80141899906],[-71.433629,41.80116499906],[-71.432467,41.80076099906],[-71.431769,41.80051799906],[-71.431731,41.80057399906],[-71.431711,41.80060699906],[-71.431591,41.80080299906],[-71.431519,41.80092199906],[-71.431313,41.80126599906],[-71.430794,41.80210899906],[-71.430611,41.80239499906],[-71.430588,41.80248999906],[-71.430481,41.80286799906],[-71.430328,41.80348599906],[-71.430214,41.80386399906],[-71.430161,41.80404299906],[-71.429955,41.80454999906],[-71.429581,41.80535899906],[-71.430733,41.80566399906],[-71.432007,41.80602299906],[-71.43325,41.80635499906],[-71.433574,41.80643999906],[-71.434402,41.80665599906],[-71.435707,41.80701099906],[-71.436295,41.80633899906],[-71.436615,41.80598099906],[-71.43679,41.80580099906],[-71.436897,41.80571399906],[-71.437302,41.80541599906],[-71.437355,41.80537399906],[-71.437775,41.80504999906],[-71.437874,41.80497699906],[-71.43856,41.80434799906],[-71.439026,41.80392099906],[-71.439163,41.80380199906],[-71.439255,41.80372999906],[-71.439484,41.80359599906],[-71.439621,41.80353499906],[-71.439743,41.80348599906],[-71.439811,41.80346399906],[-71.439857,41.80344399906],[-71.439912,41.80342499906],[-71.439938,41.80341499906]]]}}"}, +{"type": "blockgroup", "typeId": 14005, "areaId": 28720, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.441958,41.80665399906],[-71.441955,41.80646099906],[-71.44193,41.80622199906],[-71.441887,41.80599599906],[-71.441823,41.80571599906],[-71.441738,41.80547099906],[-71.441729,41.80544599906],[-71.441688,41.80536999906],[-71.441562,41.80513399906],[-71.441318,41.80474999906],[-71.441295,41.80471399906],[-71.441106,41.80447199906],[-71.440875,41.80422599906],[-71.440541,41.80394599906],[-71.440296,41.80374099906],[-71.440252,41.80370499906],[-71.440193,41.80365999906],[-71.440042,41.80347499906],[-71.43998,41.80343799906],[-71.439938,41.80341499906],[-71.439912,41.80342499906],[-71.439857,41.80344399906],[-71.439811,41.80346399906],[-71.439743,41.80348599906],[-71.439621,41.80353499906],[-71.439484,41.80359599906],[-71.439255,41.80372999906],[-71.439163,41.80380199906],[-71.439026,41.80392099906],[-71.43856,41.80434799906],[-71.437874,41.80497699906],[-71.437775,41.80504999906],[-71.437355,41.80537399906],[-71.437302,41.80541599906],[-71.436897,41.80571399906],[-71.43679,41.80580099906],[-71.436615,41.80598099906],[-71.436295,41.80633899906],[-71.435707,41.80701099906],[-71.43737,41.80786499906],[-71.43866,41.80848299906],[-71.439575,41.80894099906],[-71.439835,41.80887599906],[-71.440186,41.80880399906],[-71.4403,41.80877699906],[-71.440567,41.80870399906],[-71.440809,41.80864099906],[-71.440964,41.80860099906],[-71.441162,41.80853999906],[-71.44133,41.80849499906],[-71.441588,41.80841199906],[-71.441643,41.80839499906],[-71.441723,41.80837099906],[-71.441732,41.80833199906],[-71.441726,41.80826799906],[-71.441768,41.80784299906],[-71.441856,41.80745799906],[-71.441922,41.80705499906],[-71.441949,41.80685999906],[-71.441958,41.80665399906]]]}}"}, +{"type": "blockgroup", "typeId": 15001, "areaId": 28721, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.440002,41.80338699906],[-71.439938,41.80328899906],[-71.439553,41.80260599906],[-71.439368,41.80228499906],[-71.439308,41.80215099906],[-71.439266,41.80202699906],[-71.439246,41.80190799906],[-71.439232,41.80160499906],[-71.439239,41.80122599906],[-71.439245,41.80088899906],[-71.43924,41.80071599906],[-71.439234,41.80066299906],[-71.439228,41.80062199906],[-71.439229,41.80044399906],[-71.439241,41.80028999906],[-71.439241,41.80021599906],[-71.439242,41.80002899906],[-71.439288,41.79888599906],[-71.439335,41.79794699906],[-71.439353,41.79767999906],[-71.439358,41.79759799906],[-71.439359,41.79737699906],[-71.43934,41.79724099906],[-71.439058,41.79616599906],[-71.438875,41.79548399906],[-71.438541,41.79422899906],[-71.438448,41.79400799906],[-71.438345,41.79388399906],[-71.437941,41.79353599906],[-71.437769,41.79339899906],[-71.437642,41.79323899906],[-71.437538,41.79303199906],[-71.437483,41.79281999906],[-71.437461,41.79273299906],[-71.437427,41.79224499906],[-71.437421,41.79215599906],[-71.437408,41.79195099906],[-71.437376,41.79167999906],[-71.437362,41.79157299906],[-71.437302,41.79101999906],[-71.437263,41.79072999906],[-71.437184,41.79049199906],[-71.43716,41.79043299906],[-71.437135,41.79015199906],[-71.436915,41.78969999906],[-71.436785,41.78943299906],[-71.436794,41.78930399906],[-71.436824,41.78891499906],[-71.436828,41.78885899906],[-71.436836,41.78873799906],[-71.436482,41.78841199906],[-71.434334,41.78643299906],[-71.434207,41.78631999906],[-71.434122,41.78630899906],[-71.434046,41.78630699906],[-71.433729,41.78629599906],[-71.433676,41.78629499906],[-71.433571,41.78629199906],[-71.433296,41.78631199906],[-71.433235,41.78631599906],[-71.431702,41.78624599906],[-71.431603,41.78625399906],[-71.431625,41.78643799906],[-71.431625,41.78694199906],[-71.431618,41.78704499906],[-71.431595,41.78721999906],[-71.431572,41.78731899906],[-71.431541,41.78740699906],[-71.431526,41.78747199906],[-71.431511,41.78753299906],[-71.431442,41.78774599906],[-71.43132,41.78805899906],[-71.43132,41.78811599906],[-71.4313,41.78831699906],[-71.431075,41.78846799906],[-71.430465,41.78893899906],[-71.429824,41.78940999906],[-71.429443,41.78972999906],[-71.42942,41.78974899906],[-71.429298,41.78990199906],[-71.428879,41.79041299906],[-71.428551,41.79096199906],[-71.428291,41.79138899906],[-71.428207,41.79153399906],[-71.427826,41.79216399906],[-71.427773,41.79225899906],[-71.427475,41.79275099906],[-71.427254,41.79311799906],[-71.426979,41.79359399906],[-71.426941,41.79366699906],[-71.42688,41.79381199906],[-71.426788,41.79402199906],[-71.426773,41.79407499906],[-71.426643,41.79444099906],[-71.42662,41.79452499906],[-71.426567,41.79466999906],[-71.426537,41.79476899906],[-71.426459,41.79497299906],[-71.426589,41.79517399906],[-71.4275,41.79656499906],[-71.428258,41.79772799906],[-71.428492,41.79809299906],[-71.428863,41.79867499906],[-71.429182,41.79906799906],[-71.42959,41.79946799906],[-71.429828,41.79964999906],[-71.43016,41.79986899906],[-71.430428,41.80001199906],[-71.430454,41.80002599906],[-71.430555,41.80007099906],[-71.430888,41.80020699906],[-71.431098,41.80028099906],[-71.431769,41.80051799906],[-71.432467,41.80076099906],[-71.433629,41.80116499906],[-71.434369,41.80141899906],[-71.434762,41.80155499906],[-71.435164,41.80169299906],[-71.437046,41.80232299906],[-71.437279,41.80240099906],[-71.438658,41.80286799906],[-71.439162,41.80306199906],[-71.439579,41.80323999906],[-71.43987,41.80337599906],[-71.439938,41.80341499906],[-71.440002,41.80338699906]]]}}"}, +{"type": "blockgroup", "typeId": 15002, "areaId": 28722, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.430465,41.78893899906],[-71.430031,41.78877599906],[-71.429733,41.78867699906],[-71.428543,41.78826499906],[-71.427101,41.78778099906],[-71.427071,41.78777699906],[-71.426384,41.78776199906],[-71.426216,41.78776199906],[-71.425339,41.78775799906],[-71.424194,41.78773899906],[-71.423248,41.78773099906],[-71.423401,41.78848299906],[-71.423416,41.78851699906],[-71.423363,41.78852099906],[-71.422806,41.78852499906],[-71.422508,41.78851999906],[-71.422344,41.78851699906],[-71.422305,41.78851599906],[-71.422328,41.78856999906],[-71.422455,41.78881599906],[-71.422669,41.78923199906],[-71.422776,41.78939799906],[-71.423096,41.78989699906],[-71.423365,41.79025099906],[-71.423857,41.79100199906],[-71.42391,41.79108399906],[-71.425145,41.79296899906],[-71.42586,41.79406099906],[-71.426054,41.79435599906],[-71.426204,41.79458699906],[-71.426459,41.79497299906],[-71.426537,41.79476899906],[-71.426567,41.79466999906],[-71.42662,41.79452499906],[-71.426643,41.79444099906],[-71.426773,41.79407499906],[-71.426788,41.79402199906],[-71.42688,41.79381199906],[-71.426941,41.79366699906],[-71.426979,41.79359399906],[-71.427254,41.79311799906],[-71.427475,41.79275099906],[-71.427773,41.79225899906],[-71.427826,41.79216399906],[-71.428207,41.79153399906],[-71.428291,41.79138899906],[-71.428551,41.79096199906],[-71.428879,41.79041299906],[-71.429298,41.78990199906],[-71.42942,41.78974899906],[-71.429443,41.78972999906],[-71.429824,41.78940999906],[-71.430465,41.78893899906]]]}}"}, +{"type": "blockgroup", "typeId": 15003, "areaId": 28723, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.431625,41.78643799906],[-71.431603,41.78625399906],[-71.429003,41.78625699906],[-71.426257,41.78623199906],[-71.425806,41.78622699906],[-71.423755,41.78620799906],[-71.423585,41.78620799906],[-71.42311,41.78619999906],[-71.422899,41.78620199906],[-71.422037,41.78619299906],[-71.421846,41.78619199906],[-71.421757,41.78619099906],[-71.42172,41.78618999906],[-71.421667,41.78618999906],[-71.421677,41.78629699906],[-71.421689,41.78637399906],[-71.421701,41.78647499906],[-71.421734,41.78669699906],[-71.421801,41.78704799906],[-71.421887,41.78740199906],[-71.421996,41.78775799906],[-71.422064,41.78793999906],[-71.422276,41.78845099906],[-71.422305,41.78851599906],[-71.422344,41.78851699906],[-71.422508,41.78851999906],[-71.422806,41.78852499906],[-71.423363,41.78852099906],[-71.423416,41.78851699906],[-71.423401,41.78848299906],[-71.423248,41.78773099906],[-71.424194,41.78773899906],[-71.425339,41.78775799906],[-71.426216,41.78776199906],[-71.426384,41.78776199906],[-71.427071,41.78777699906],[-71.427101,41.78778099906],[-71.428543,41.78826499906],[-71.429733,41.78867699906],[-71.430031,41.78877599906],[-71.430465,41.78893899906],[-71.431075,41.78846799906],[-71.4313,41.78831699906],[-71.43132,41.78811599906],[-71.43132,41.78805899906],[-71.431442,41.78774599906],[-71.431511,41.78753299906],[-71.431526,41.78747199906],[-71.431541,41.78740699906],[-71.431572,41.78731899906],[-71.431595,41.78721999906],[-71.431618,41.78704499906],[-71.431625,41.78694199906],[-71.431625,41.78643799906]]]}}"}, +{"type": "blockgroup", "typeId": 16011, "areaId": 28724, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.451195,41.81570799906],[-71.451057,41.81502499906],[-71.450935,41.81435399906],[-71.45079,41.81365999906],[-71.450508,41.81367099906],[-71.449982,41.81370199906],[-71.449722,41.81371699906],[-71.449463,41.81372799906],[-71.448502,41.81378199906],[-71.44812,41.81386199906],[-71.447784,41.81393799906],[-71.447517,41.81402999906],[-71.447372,41.81414399906],[-71.447136,41.81433499906],[-71.446777,41.81460999906],[-71.44649,41.81492299906],[-71.446381,41.81503799906],[-71.44625,41.81516799906],[-71.446163,41.81525999906],[-71.446027,41.81539099906],[-71.445935,41.81545499906],[-71.445534,41.81567399906],[-71.445129,41.81592199906],[-71.445068,41.81596399906],[-71.444405,41.81637199906],[-71.443985,41.81662399906],[-71.443848,41.81668499906],[-71.44474,41.81677999906],[-71.444814,41.81678699906],[-71.445549,41.81685299906],[-71.446495,41.81694399906],[-71.44706,41.81699399906],[-71.447563,41.81704299906],[-71.447827,41.81706599906],[-71.447868,41.81706999906],[-71.44825,41.81710399906],[-71.448555,41.81713499906],[-71.449043,41.81718399906],[-71.449158,41.81719599906],[-71.449293,41.81720799906],[-71.449471,41.81722299906],[-71.449631,41.81724199906],[-71.449767,41.81725499906],[-71.449898,41.81726799906],[-71.450005,41.81651699906],[-71.45007,41.81617999906],[-71.450111,41.81596799906],[-71.450111,41.81590299906],[-71.450104,41.81582599906],[-71.450668,41.81575799906],[-71.451195,41.81570799906]]]}}"}, +{"type": "blockgroup", "typeId": 16012, "areaId": 28725, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.45079,41.81365999906],[-71.450432,41.81291199906],[-71.450241,41.81253099906],[-71.449944,41.81191999906],[-71.449638,41.81126399906],[-71.449348,41.81063099906],[-71.447571,41.81111099906],[-71.446342,41.81143199906],[-71.445839,41.81154599906],[-71.445702,41.81158399906],[-71.444847,41.81182899906],[-71.444801,41.81183999906],[-71.44428,41.81196599906],[-71.44402,41.81202799906],[-71.443888,41.81206099906],[-71.443402,41.81217799906],[-71.443161,41.81119199906],[-71.443077,41.81085599906],[-71.442924,41.81016899906],[-71.442772,41.80950499906],[-71.442482,41.80815499906],[-71.442169,41.80823899906],[-71.441978,41.80829599906],[-71.441767,41.80835799906],[-71.441723,41.80837099906],[-71.441643,41.80839499906],[-71.441588,41.80841199906],[-71.44133,41.80849499906],[-71.441162,41.80853999906],[-71.440964,41.80860099906],[-71.440809,41.80864099906],[-71.440628,41.81029099906],[-71.44059,41.81078299906],[-71.440582,41.81107699906],[-71.440567,41.81121399906],[-71.440453,41.81167599906],[-71.440369,41.81214099906],[-71.440224,41.81287799906],[-71.440079,41.81350699906],[-71.44001,41.81381599906],[-71.439941,41.81416699906],[-71.439873,41.81446699906],[-71.439865,41.81448399906],[-71.439838,41.81460099906],[-71.439613,41.81558199906],[-71.439534,41.81596199906],[-71.439552,41.81596799906],[-71.439606,41.81598699906],[-71.439713,41.81602499906],[-71.439875,41.81607899906],[-71.439922,41.81609499906],[-71.439983,41.81611599906],[-71.44059,41.81632199906],[-71.440933,41.81640599906],[-71.441277,41.81651299906],[-71.441628,41.81656599906],[-71.441864,41.81659699906],[-71.442047,41.81662799906],[-71.442245,41.81666199906],[-71.442757,41.81672699906],[-71.442818,41.81672999906],[-71.442932,41.81674199906],[-71.443199,41.81676099906],[-71.443321,41.81676499906],[-71.443489,41.81675699906],[-71.44355,41.81674999906],[-71.443611,41.81674199906],[-71.443848,41.81668499906],[-71.443985,41.81662399906],[-71.444405,41.81637199906],[-71.445068,41.81596399906],[-71.445129,41.81592199906],[-71.445534,41.81567399906],[-71.445935,41.81545499906],[-71.446027,41.81539099906],[-71.446163,41.81525999906],[-71.44625,41.81516799906],[-71.446381,41.81503799906],[-71.44649,41.81492299906],[-71.446777,41.81460999906],[-71.447136,41.81433499906],[-71.447372,41.81414399906],[-71.447517,41.81402999906],[-71.447784,41.81393799906],[-71.44812,41.81386199906],[-71.448502,41.81378199906],[-71.449463,41.81372799906],[-71.449722,41.81371699906],[-71.449982,41.81370199906],[-71.450508,41.81367099906],[-71.45079,41.81365999906]]]}}"}, +{"type": "blockgroup", "typeId": 16013, "areaId": 28726, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.45578,41.81525799906],[-71.455681,41.81457499906],[-71.455589,41.81388099906],[-71.455475,41.81320199906],[-71.455414,41.81321299906],[-71.454399,41.81333899906],[-71.453766,41.81342299906],[-71.453522,41.81344999906],[-71.452866,41.81352599906],[-71.452637,41.81354499906],[-71.452385,41.81357199906],[-71.452293,41.81357599906],[-71.45208,41.81359099906],[-71.451714,41.81360999906],[-71.45079,41.81365999906],[-71.450935,41.81435399906],[-71.451057,41.81502499906],[-71.451195,41.81570799906],[-71.452644,41.81555899906],[-71.453888,41.81542999906],[-71.45578,41.81525799906]]]}}"}, +{"type": "blockgroup", "typeId": 16021, "areaId": 28727, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.447571,41.81111099906],[-71.447258,41.81045199906],[-71.446938,41.80983699906],[-71.44664,41.80920799906],[-71.446342,41.80856699906],[-71.44603,41.80793399906],[-71.444191,41.80840699906],[-71.443901,41.80778499906],[-71.443695,41.80732699906],[-71.443642,41.80721699906],[-71.443664,41.80717299906],[-71.443687,41.80712499906],[-71.443678,41.80703199906],[-71.442865,41.80712999906],[-71.442223,41.80720299906],[-71.442214,41.80702699906],[-71.442198,41.80687399906],[-71.442154,41.80657299906],[-71.442136,41.80651399906],[-71.442015,41.80603999906],[-71.441869,41.80567399906],[-71.441718,41.80536499906],[-71.441618,41.80519299906],[-71.441541,41.80506299906],[-71.441402,41.80485299906],[-71.441318,41.80474999906],[-71.441562,41.80513399906],[-71.441688,41.80536999906],[-71.441729,41.80544599906],[-71.441738,41.80547099906],[-71.441823,41.80571599906],[-71.441887,41.80599599906],[-71.44193,41.80622199906],[-71.441955,41.80646099906],[-71.441958,41.80665399906],[-71.441949,41.80685999906],[-71.441922,41.80705499906],[-71.441856,41.80745799906],[-71.441768,41.80784299906],[-71.441726,41.80826799906],[-71.441732,41.80833199906],[-71.441723,41.80837099906],[-71.441767,41.80835799906],[-71.441978,41.80829599906],[-71.442169,41.80823899906],[-71.442482,41.80815499906],[-71.442772,41.80950499906],[-71.442924,41.81016899906],[-71.443077,41.81085599906],[-71.443161,41.81119199906],[-71.443402,41.81217799906],[-71.443888,41.81206099906],[-71.44402,41.81202799906],[-71.44428,41.81196599906],[-71.444801,41.81183999906],[-71.444847,41.81182899906],[-71.445702,41.81158399906],[-71.445839,41.81154599906],[-71.446342,41.81143199906],[-71.447571,41.81111099906]]]}}"}, +{"type": "blockgroup", "typeId": 16022, "areaId": 28728, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.449348,41.81063099906],[-71.449059,41.80998999906],[-71.449043,41.80996299906],[-71.448761,41.80936099906],[-71.448456,41.80872699906],[-71.448151,41.80809799906],[-71.447845,41.80745699906],[-71.447548,41.80682799906],[-71.447535,41.80667899906],[-71.447533,41.80665599906],[-71.447533,41.80661399906],[-71.447423,41.80662599906],[-71.444354,41.80695299906],[-71.443678,41.80703199906],[-71.443687,41.80712499906],[-71.443664,41.80717299906],[-71.443642,41.80721699906],[-71.443695,41.80732699906],[-71.443901,41.80778499906],[-71.444191,41.80840699906],[-71.44603,41.80793399906],[-71.446342,41.80856699906],[-71.44664,41.80920799906],[-71.446938,41.80983699906],[-71.447258,41.81045199906],[-71.447571,41.81111099906],[-71.449348,41.81063099906]]]}}"}, +{"type": "blockgroup", "typeId": 16023, "areaId": 28729, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.453537,41.80977599906],[-71.453362,41.80928399906],[-71.453194,41.80876499906],[-71.453026,41.80824299906],[-71.452728,41.80734999906],[-71.452713,41.80730099906],[-71.452545,41.80678899906],[-71.452522,41.80673999906],[-71.452354,41.80625899906],[-71.452332,41.80618699906],[-71.452314,41.80613299906],[-71.451335,41.80623799906],[-71.450679,41.80630699906],[-71.45043,41.80633999906],[-71.450285,41.80636199906],[-71.45023,41.80636999906],[-71.449642,41.80644999906],[-71.449256,41.80644899906],[-71.448826,41.80649399906],[-71.448019,41.80657599906],[-71.447533,41.80661399906],[-71.447533,41.80665599906],[-71.447535,41.80667899906],[-71.447548,41.80682799906],[-71.447845,41.80745699906],[-71.448151,41.80809799906],[-71.448456,41.80872699906],[-71.448761,41.80936099906],[-71.449043,41.80996299906],[-71.449059,41.80998999906],[-71.449348,41.81063099906],[-71.451195,41.81013499906],[-71.45192,41.80994799906],[-71.453323,41.80956599906],[-71.453346,41.80958199906],[-71.453537,41.80977599906]]]}}"}, +{"type": "blockgroup", "typeId": 16024, "areaId": 28730, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.455414,41.81321299906],[-71.454811,41.81209199906],[-71.454445,41.81140899906],[-71.454094,41.81072599906],[-71.453972,41.81051999906],[-71.453773,41.81018099906],[-71.453537,41.80977599906],[-71.453346,41.80958199906],[-71.453323,41.80956599906],[-71.45192,41.80994799906],[-71.451195,41.81013499906],[-71.449348,41.81063099906],[-71.449638,41.81126399906],[-71.449944,41.81191999906],[-71.450241,41.81253099906],[-71.450432,41.81291199906],[-71.45079,41.81365999906],[-71.451714,41.81360999906],[-71.45208,41.81359099906],[-71.452293,41.81357599906],[-71.452385,41.81357199906],[-71.452637,41.81354499906],[-71.452866,41.81352599906],[-71.453522,41.81344999906],[-71.453766,41.81342299906],[-71.454399,41.81333899906],[-71.455414,41.81321299906]]]}}"}, +{"type": "blockgroup", "typeId": 17001, "areaId": 28731, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.457703,41.80556899906],[-71.457214,41.80561799906],[-71.454941,41.80588199906],[-71.452314,41.80613299906],[-71.452332,41.80618699906],[-71.452354,41.80625899906],[-71.452522,41.80673999906],[-71.452545,41.80678899906],[-71.452713,41.80730099906],[-71.452728,41.80734999906],[-71.453026,41.80824299906],[-71.453194,41.80876499906],[-71.453362,41.80928399906],[-71.453537,41.80977599906],[-71.453773,41.81018099906],[-71.453972,41.81051999906],[-71.454094,41.81072599906],[-71.454113,41.81069099906],[-71.454254,41.81048599906],[-71.454369,41.81032199906],[-71.454773,41.80975699906],[-71.455238,41.80908999906],[-71.455276,41.80904399906],[-71.455414,41.80883799906],[-71.455635,41.80852899906],[-71.455772,41.80832299906],[-71.455994,41.80801399906],[-71.456146,41.80779299906],[-71.456291,41.80757899906],[-71.456345,41.80750699906],[-71.456398,41.80742299906],[-71.456741,41.80693099906],[-71.456764,41.80689999906],[-71.457123,41.80640799906],[-71.457138,41.80638899906],[-71.457657,41.80562999906],[-71.457703,41.80556899906]]]}}"}, +{"type": "blockgroup", "typeId": 17002, "areaId": 28732, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.46492,41.80587399906],[-71.464753,41.80592499906],[-71.464686,41.80594599906],[-71.464321,41.80542599906],[-71.46458,41.80537599906],[-71.464879,41.80532099906],[-71.464676,41.80508899906],[-71.464725,41.80496399906],[-71.464583,41.80499099906],[-71.46434,41.80499299906],[-71.464085,41.80497899906],[-71.463966,41.80499499906],[-71.463843,41.80502299906],[-71.463716,41.80504099906],[-71.463665,41.80504599906],[-71.463353,41.80507799906],[-71.463246,41.80509399906],[-71.463151,41.80511499906],[-71.463081,41.80513899906],[-71.463008,41.80517499906],[-71.462878,41.80516299906],[-71.462797,41.80513199906],[-71.462627,41.80505099906],[-71.462448,41.80498499906],[-71.462361,41.80496599906],[-71.462306,41.80496499906],[-71.461882,41.80509899906],[-71.461094,41.80519799906],[-71.460908,41.80522199906],[-71.459473,41.80536999906],[-71.457855,41.80555299906],[-71.457703,41.80556899906],[-71.457657,41.80562999906],[-71.457138,41.80638899906],[-71.457123,41.80640799906],[-71.456764,41.80689999906],[-71.456741,41.80693099906],[-71.456398,41.80742299906],[-71.456345,41.80750699906],[-71.457794,41.80805199906],[-71.45871,41.80842199906],[-71.459465,41.80873499906],[-71.46064,41.80921899906],[-71.461327,41.80949799906],[-71.462494,41.80997799906],[-71.462555,41.80982599906],[-71.462624,41.80968499906],[-71.462784,41.80940999906],[-71.463127,41.80882999906],[-71.463242,41.80862399906],[-71.463509,41.80816999906],[-71.463638,41.80794099906],[-71.46402,41.80727899906],[-71.464172,41.80701799906],[-71.464661,41.80615999906],[-71.464745,41.80604199906],[-71.464836,41.80594999906],[-71.46492,41.80587399906]]]}}"}, +{"type": "blockgroup", "typeId": 17003, "areaId": 28733, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.462494,41.80997799906],[-71.461327,41.80949799906],[-71.46064,41.80921899906],[-71.459465,41.80873499906],[-71.45871,41.80842199906],[-71.457794,41.80805199906],[-71.456345,41.80750699906],[-71.456291,41.80757899906],[-71.456146,41.80779299906],[-71.455994,41.80801399906],[-71.455772,41.80832299906],[-71.455635,41.80852899906],[-71.455414,41.80883799906],[-71.455276,41.80904399906],[-71.455238,41.80908999906],[-71.454773,41.80975699906],[-71.454369,41.81032199906],[-71.454254,41.81048599906],[-71.454113,41.81069099906],[-71.454094,41.81072599906],[-71.454445,41.81140899906],[-71.454811,41.81209199906],[-71.455414,41.81321299906],[-71.455475,41.81320199906],[-71.456619,41.81306099906],[-71.456734,41.81304599906],[-71.456959,41.81300799906],[-71.457397,41.81293499906],[-71.457848,41.81285899906],[-71.458023,41.81282699906],[-71.458969,41.81265599906],[-71.460115,41.81245799906],[-71.460228,41.81243899906],[-71.460321,41.81242499906],[-71.460381,41.81241599906],[-71.460602,41.81238199906],[-71.460945,41.81232499906],[-71.461113,41.81228999906],[-71.461288,41.81225599906],[-71.461472,41.81218699906],[-71.461586,41.81215299906],[-71.461655,41.81199999906],[-71.461998,41.81116799906],[-71.462195,41.81069099906],[-71.46244,41.81009699906],[-71.462494,41.80997799906]]]}}"}, +{"type": "blockgroup", "typeId": 18001, "areaId": 28734, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.470877,41.82194399906],[-71.47082,41.82180899906],[-71.470799,41.82175899906],[-71.470784,41.82171899906],[-71.470444,41.82090399906],[-71.470429,41.82081699906],[-71.470421,41.82080799906],[-71.470251,41.82037699906],[-71.470226,41.82031299906],[-71.470031,41.81982799906],[-71.469894,41.81984699906],[-71.46936,41.81992299906],[-71.468925,41.81998399906],[-71.468796,41.82000399906],[-71.468704,41.82000399906],[-71.468437,41.81996899906],[-71.467758,41.81986999906],[-71.467651,41.81985499906],[-71.467247,41.81979399906],[-71.46711,41.81977499906],[-71.467049,41.81976299906],[-71.466706,41.81971399906],[-71.466385,41.81966799906],[-71.465953,41.81960499906],[-71.465599,41.81955299906],[-71.465225,41.81949999906],[-71.464745,41.81943499906],[-71.464363,41.81938199906],[-71.463989,41.81932399906],[-71.463875,41.81930899906],[-71.463646,41.81927099906],[-71.463013,41.81917999906],[-71.46225,41.81907299906],[-71.461578,41.81898099906],[-71.461479,41.81911099906],[-71.461411,41.81925199906],[-71.461319,41.81952999906],[-71.46122,41.81993899906],[-71.460983,41.82086199906],[-71.4608,41.82160199906],[-71.460616,41.82230599906],[-71.460579,41.82244899906],[-71.460523,41.82267399906],[-71.460487,41.82281899906],[-71.461331,41.82296199906],[-71.461594,41.82300599906],[-71.46225,41.82308599906],[-71.462578,41.82311599906],[-71.462891,41.82313199906],[-71.463203,41.82313899906],[-71.463516,41.82313899906],[-71.463837,41.82312799906],[-71.463909,41.82312299906],[-71.464157,41.82310499906],[-71.464478,41.82307399906],[-71.464836,41.82302499906],[-71.465538,41.82290299906],[-71.465987,41.82282199906],[-71.466958,41.82264599906],[-71.468365,41.82239099906],[-71.470055,41.82209399906],[-71.470276,41.82205199906],[-71.470306,41.82204399906],[-71.47068,41.82197999906],[-71.470877,41.82194399906]]]}}"}, +{"type": "blockgroup", "typeId": 18002, "areaId": 28735, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.461578,41.81898099906],[-71.461029,41.81890499906],[-71.460716,41.81885899906],[-71.460587,41.81884399906],[-71.460075,41.81877099906],[-71.459732,41.81872599906],[-71.459122,41.81863399906],[-71.45874,41.81857699906],[-71.457932,41.81845499906],[-71.457397,41.81835199906],[-71.456993,41.81827499906],[-71.456726,41.81822199906],[-71.455826,41.81803899906],[-71.455315,41.81794699906],[-71.45472,41.81784399906],[-71.454227,41.81773099906],[-71.454102,41.81770299906],[-71.453949,41.81767699906],[-71.453804,41.81764999906],[-71.453346,41.81760099906],[-71.452171,41.81747799906],[-71.452072,41.81747099906],[-71.450752,41.81735199906],[-71.449898,41.81726799906],[-71.449767,41.81725499906],[-71.449631,41.81724199906],[-71.449471,41.81722299906],[-71.449293,41.81720799906],[-71.449158,41.81719599906],[-71.449043,41.81718399906],[-71.448555,41.81713499906],[-71.448792,41.81735599906],[-71.44886,41.81742899906],[-71.44912,41.81767999906],[-71.449257,41.81782199906],[-71.449492,41.81808499906],[-71.449638,41.81824899906],[-71.450592,41.81929799906],[-71.451218,41.81996199906],[-71.451584,41.82030099906],[-71.451653,41.82036999906],[-71.451889,41.82055999906],[-71.45211,41.82071299906],[-71.452339,41.82085799906],[-71.452583,41.82099499906],[-71.452858,41.82113299906],[-71.45314,41.82125899906],[-71.45343,41.82136899906],[-71.453712,41.82145699906],[-71.454002,41.82152899906],[-71.4543,41.82159399906],[-71.45436,41.82160599906],[-71.454548,41.82164399906],[-71.454605,41.82165499906],[-71.456446,41.82197099906],[-71.45775,41.82219599906],[-71.459113,41.82243099906],[-71.459221,41.82244999906],[-71.459347,41.82247199906],[-71.460523,41.82267399906],[-71.460579,41.82244899906],[-71.460616,41.82230599906],[-71.4608,41.82160199906],[-71.460983,41.82086199906],[-71.46122,41.81993899906],[-71.461319,41.81952999906],[-71.461411,41.81925199906],[-71.461479,41.81911099906],[-71.461578,41.81898099906]]]}}"}, +{"type": "blockgroup", "typeId": 18003, "areaId": 28736, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.45591,41.81606699906],[-71.455879,41.81587199906],[-71.45578,41.81525799906],[-71.453888,41.81542999906],[-71.452644,41.81555899906],[-71.451195,41.81570799906],[-71.450668,41.81575799906],[-71.450104,41.81582599906],[-71.450111,41.81590299906],[-71.450111,41.81596799906],[-71.45007,41.81617999906],[-71.450005,41.81651699906],[-71.449898,41.81726799906],[-71.450752,41.81735199906],[-71.452072,41.81747099906],[-71.452171,41.81747799906],[-71.453346,41.81760099906],[-71.453804,41.81764999906],[-71.453949,41.81767699906],[-71.454102,41.81770299906],[-71.454227,41.81773099906],[-71.45472,41.81784399906],[-71.455315,41.81794699906],[-71.455505,41.81738999906],[-71.455536,41.81728399906],[-71.45575,41.81655499906],[-71.455785,41.81646699906],[-71.455811,41.81640199906],[-71.455902,41.81614299906],[-71.45591,41.81610899906],[-71.45591,41.81606699906]]]}}"}, +{"type": "blockgroup", "typeId": 18004, "areaId": 28737, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.460075,41.81877099906],[-71.459656,41.81757699906],[-71.45945,41.81697099906],[-71.45916,41.81611599906],[-71.458313,41.81366699906],[-71.458038,41.81286599906],[-71.458023,41.81282699906],[-71.457848,41.81285899906],[-71.457397,41.81293499906],[-71.456959,41.81300799906],[-71.456734,41.81304599906],[-71.456619,41.81306099906],[-71.455475,41.81320199906],[-71.455589,41.81388099906],[-71.455681,41.81457499906],[-71.45578,41.81525799906],[-71.455879,41.81587199906],[-71.45591,41.81606699906],[-71.45591,41.81610899906],[-71.455902,41.81614299906],[-71.455811,41.81640199906],[-71.455785,41.81646699906],[-71.45575,41.81655499906],[-71.455536,41.81728399906],[-71.455505,41.81738999906],[-71.455315,41.81794699906],[-71.455826,41.81803899906],[-71.456726,41.81822199906],[-71.456993,41.81827499906],[-71.457397,41.81835199906],[-71.457932,41.81845499906],[-71.45874,41.81857699906],[-71.459122,41.81863399906],[-71.459732,41.81872599906],[-71.460075,41.81877099906]]]}}"}, +{"type": "blockgroup", "typeId": 18005, "areaId": 28738, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.463646,41.81927099906],[-71.4636,41.81909599906],[-71.463188,41.81799299906],[-71.463068,41.81766499906],[-71.462868,41.81711599906],[-71.462685,41.81649799906],[-71.462425,41.81579199906],[-71.462364,41.81570399906],[-71.462349,41.81566999906],[-71.462166,41.81510899906],[-71.462029,41.81471599906],[-71.46183,41.81406799906],[-71.461388,41.81394599906],[-71.460983,41.81381999906],[-71.460876,41.81378899906],[-71.461266,41.81288499906],[-71.46151,41.81234399906],[-71.461541,41.81226499906],[-71.461586,41.81215299906],[-71.461472,41.81218699906],[-71.461288,41.81225599906],[-71.461113,41.81228999906],[-71.460945,41.81232499906],[-71.460602,41.81238199906],[-71.460381,41.81241599906],[-71.460321,41.81242499906],[-71.460228,41.81243899906],[-71.460115,41.81245799906],[-71.458969,41.81265599906],[-71.458023,41.81282699906],[-71.458038,41.81286599906],[-71.458313,41.81366699906],[-71.45916,41.81611599906],[-71.45945,41.81697099906],[-71.459656,41.81757699906],[-71.460075,41.81877099906],[-71.460587,41.81884399906],[-71.460716,41.81885899906],[-71.461029,41.81890499906],[-71.461578,41.81898099906],[-71.46225,41.81907299906],[-71.463013,41.81917999906],[-71.463646,41.81927099906]]]}}"}, +{"type": "blockgroup", "typeId": 18006, "areaId": 28739, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.470031,41.81982799906],[-71.470015,41.81978799906],[-71.469954,41.81964099906],[-71.469938,41.81959099906],[-71.469673,41.81893299906],[-71.46965,41.81887599906],[-71.469493,41.81848499906],[-71.469411,41.81828199906],[-71.469393,41.81823599906],[-71.469347,41.81812199906],[-71.46926,41.81790499906],[-71.469226,41.81782099906],[-71.469184,41.81771599906],[-71.469018,41.81730499906],[-71.46882,41.81680999906],[-71.468695,41.81649799906],[-71.468625,41.81631799906],[-71.468345,41.81562299906],[-71.468285,41.81557499906],[-71.468208,41.81558599906],[-71.468178,41.81530399906],[-71.468163,41.81523099906],[-71.468155,41.81516999906],[-71.46814,41.81510499906],[-71.468132,41.81504099906],[-71.468109,41.81493799906],[-71.468094,41.81483799906],[-71.468056,41.81473499906],[-71.468025,41.81467099906],[-71.467949,41.81454499906],[-71.467834,41.81430099906],[-71.467804,41.81420099906],[-71.467867,41.81415599906],[-71.467698,41.81340199906],[-71.46768,41.81332499906],[-71.467675,41.81330799906],[-71.467572,41.81331699906],[-71.467045,41.81198699906],[-71.466671,41.81104299906],[-71.466551,41.81074199906],[-71.466603,41.81069999906],[-71.467865,41.81063899906],[-71.468703,41.81059999906],[-71.467782,41.80887599906],[-71.467082,41.80792799906],[-71.466945,41.80795599906],[-71.466803,41.80779999906],[-71.467121,41.80762299906],[-71.467703,41.80729999906],[-71.467851,41.80725099906],[-71.468109,41.80626499906],[-71.467903,41.80629999906],[-71.467945,41.80609099906],[-71.469064,41.80605899906],[-71.469072,41.80602199906],[-71.469111,41.80585099906],[-71.46914,41.80542699906],[-71.46928,41.80525199906],[-71.469165,41.80486399906],[-71.468417,41.80493199906],[-71.468121,41.80495199906],[-71.467731,41.80498899906],[-71.467668,41.80493899906],[-71.467072,41.80446999906],[-71.466893,41.80456799906],[-71.466793,41.80462399906],[-71.466698,41.80467599906],[-71.466644,41.80469899906],[-71.466507,41.80477499906],[-71.466385,41.80484799906],[-71.466278,41.80490499906],[-71.466179,41.80496599906],[-71.465935,41.80512999906],[-71.465759,41.80525599906],[-71.465107,41.80570399906],[-71.465057,41.80573999906],[-71.46492,41.80587399906],[-71.464836,41.80594999906],[-71.464745,41.80604199906],[-71.464661,41.80615999906],[-71.464172,41.80701799906],[-71.46402,41.80727899906],[-71.463638,41.80794099906],[-71.463509,41.80816999906],[-71.463242,41.80862399906],[-71.463127,41.80882999906],[-71.462784,41.80940999906],[-71.462624,41.80968499906],[-71.462555,41.80982599906],[-71.462494,41.80997799906],[-71.46244,41.81009699906],[-71.462195,41.81069099906],[-71.461998,41.81116799906],[-71.461655,41.81199999906],[-71.461586,41.81215299906],[-71.461541,41.81226499906],[-71.46151,41.81234399906],[-71.461266,41.81288499906],[-71.460876,41.81378899906],[-71.460983,41.81381999906],[-71.461388,41.81394599906],[-71.46183,41.81406799906],[-71.462029,41.81471599906],[-71.462166,41.81510899906],[-71.462349,41.81566999906],[-71.462364,41.81570399906],[-71.462425,41.81579199906],[-71.462685,41.81649799906],[-71.462868,41.81711599906],[-71.463068,41.81766499906],[-71.463188,41.81799299906],[-71.4636,41.81909599906],[-71.463646,41.81927099906],[-71.463875,41.81930899906],[-71.463989,41.81932399906],[-71.464363,41.81938199906],[-71.464745,41.81943499906],[-71.465225,41.81949999906],[-71.465599,41.81955299906],[-71.465953,41.81960499906],[-71.466385,41.81966799906],[-71.466706,41.81971399906],[-71.467049,41.81976299906],[-71.46711,41.81977499906],[-71.467247,41.81979399906],[-71.467651,41.81985499906],[-71.467758,41.81986999906],[-71.468437,41.81996899906],[-71.468704,41.82000399906],[-71.468796,41.82000399906],[-71.468925,41.81998399906],[-71.46936,41.81992299906],[-71.469894,41.81984699906],[-71.470031,41.81982799906]]]}}"}, +{"type": "blockgroup", "typeId": 19001, "areaId": 28740, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.442047,41.81662799906],[-71.441864,41.81659699906],[-71.441628,41.81656599906],[-71.441277,41.81651299906],[-71.440933,41.81640599906],[-71.44059,41.81632199906],[-71.439983,41.81611599906],[-71.439922,41.81609499906],[-71.439875,41.81607899906],[-71.439713,41.81602499906],[-71.439606,41.81598699906],[-71.439552,41.81596799906],[-71.439534,41.81596199906],[-71.439422,41.81646999906],[-71.439303,41.81678799906],[-71.439018,41.81744799906],[-71.438942,41.81761599906],[-71.438828,41.81784399906],[-71.438499,41.81844699906],[-71.43844,41.81855899906],[-71.438278,41.81881699906],[-71.438133,41.81906099906],[-71.438092,41.81913699906],[-71.438019,41.81927499906],[-71.437881,41.81951099906],[-71.437846,41.81956499906],[-71.437623,41.81991399906],[-71.437553,41.82002299906],[-71.437126,41.82067499906],[-71.436974,41.82090799906],[-71.436722,41.82127799906],[-71.436546,41.82152599906],[-71.436534,41.82154399906],[-71.436272,41.82193799906],[-71.436089,41.82219299906],[-71.435852,41.82248699906],[-71.435585,41.82278099906],[-71.435333,41.82303199906],[-71.435173,41.82318499906],[-71.434944,41.82337199906],[-71.434669,41.82358599906],[-71.434067,41.82398999906],[-71.43364,41.82421899906],[-71.433895,41.82426699906],[-71.433959,41.82427699906],[-71.43405,41.82429199906],[-71.434242,41.82432599906],[-71.434593,41.82437899906],[-71.435493,41.82446299906],[-71.435806,41.82446299906],[-71.436516,41.82447399906],[-71.436721,41.82447799906],[-71.437775,41.82449699906],[-71.438209,41.82451099906],[-71.438312,41.82451399906],[-71.438622,41.82452399906],[-71.439476,41.82456199906],[-71.439537,41.82433299906],[-71.439537,41.82430999906],[-71.439575,41.82413499906],[-71.439758,41.82325699906],[-71.439903,41.82261699906],[-71.439914,41.82259399906],[-71.439918,41.82257499906],[-71.439937,41.82247199906],[-71.440094,41.82178899906],[-71.440201,41.82126999906],[-71.440384,41.82023599906],[-71.440498,41.81951099906],[-71.44059,41.81896199906],[-71.440643,41.81868599906],[-71.440765,41.81805399906],[-71.440842,41.81777999906],[-71.44085,41.81772699906],[-71.44091,41.81735199906],[-71.440964,41.81700499906],[-71.440979,41.81687499906],[-71.441269,41.81677999906],[-71.441358,41.81675399906],[-71.441589,41.81668499906],[-71.441757,41.81664299906],[-71.442047,41.81662799906]]]}}"}, +{"type": "blockgroup", "typeId": 19002, "areaId": 28741, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.446999,41.82023599906],[-71.446907,41.82015599906],[-71.446869,41.82012199906],[-71.446533,41.81977099906],[-71.446457,41.81969499906],[-71.446213,41.81934399906],[-71.446152,41.81925999906],[-71.445953,41.81898899906],[-71.445808,41.81886299906],[-71.445656,41.81874099906],[-71.445374,41.81851199906],[-71.444649,41.81795099906],[-71.444107,41.81753899906],[-71.443701,41.81722699906],[-71.443642,41.81718099906],[-71.443619,41.81713499906],[-71.443558,41.81708099906],[-71.443565,41.81701299906],[-71.44355,41.81674999906],[-71.443489,41.81675699906],[-71.443321,41.81676499906],[-71.443199,41.81676099906],[-71.442932,41.81674199906],[-71.442818,41.81672999906],[-71.442757,41.81672699906],[-71.442245,41.81666199906],[-71.442047,41.81662799906],[-71.441757,41.81664299906],[-71.441589,41.81668499906],[-71.441358,41.81675399906],[-71.441269,41.81677999906],[-71.440979,41.81687499906],[-71.440964,41.81700499906],[-71.44091,41.81735199906],[-71.44085,41.81772699906],[-71.440842,41.81777999906],[-71.440765,41.81805399906],[-71.440643,41.81868599906],[-71.44059,41.81896199906],[-71.440498,41.81951099906],[-71.440788,41.81953399906],[-71.441177,41.81957599906],[-71.441391,41.81957999906],[-71.441483,41.81956899906],[-71.441628,41.81954199906],[-71.441765,41.81951099906],[-71.441849,41.81949599906],[-71.442085,41.81943899906],[-71.442203,41.81941499906],[-71.442268,41.81940099906],[-71.442321,41.81938799906],[-71.442375,41.81937399906],[-71.442505,41.81930499906],[-71.442695,41.81962999906],[-71.442932,41.82003399906],[-71.443192,41.82034299906],[-71.443436,41.82045699906],[-71.443237,41.82194899906],[-71.44413,41.82200199906],[-71.444992,41.82207099906],[-71.445017,41.82207499906],[-71.445885,41.82213199906],[-71.445961,41.82152899906],[-71.445961,41.82147199906],[-71.445992,41.82112899906],[-71.446037,41.82096099906],[-71.446121,41.82087299906],[-71.446449,41.82059499906],[-71.446999,41.82023599906]]]}}"}, +{"type": "blockgroup", "typeId": 19003, "areaId": 28742, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.456446,41.82197099906],[-71.454605,41.82165499906],[-71.454548,41.82164399906],[-71.45436,41.82160599906],[-71.4543,41.82159399906],[-71.454002,41.82152899906],[-71.453712,41.82145699906],[-71.45343,41.82136899906],[-71.45314,41.82125899906],[-71.452858,41.82113299906],[-71.452583,41.82099499906],[-71.452339,41.82085799906],[-71.45211,41.82071299906],[-71.451889,41.82055999906],[-71.451653,41.82036999906],[-71.451584,41.82030099906],[-71.451218,41.81996199906],[-71.450592,41.81929799906],[-71.449638,41.81824899906],[-71.449492,41.81808499906],[-71.449257,41.81782199906],[-71.44912,41.81767999906],[-71.44886,41.81742899906],[-71.448792,41.81735599906],[-71.448555,41.81713499906],[-71.44825,41.81710399906],[-71.447868,41.81706999906],[-71.447827,41.81706599906],[-71.447563,41.81704299906],[-71.44706,41.81699399906],[-71.446495,41.81694399906],[-71.445549,41.81685299906],[-71.444814,41.81678699906],[-71.44474,41.81677999906],[-71.443848,41.81668499906],[-71.443611,41.81674199906],[-71.44355,41.81674999906],[-71.443565,41.81701299906],[-71.443558,41.81708099906],[-71.443619,41.81713499906],[-71.443642,41.81718099906],[-71.443701,41.81722699906],[-71.444107,41.81753899906],[-71.444649,41.81795099906],[-71.445374,41.81851199906],[-71.445656,41.81874099906],[-71.445808,41.81886299906],[-71.445953,41.81898899906],[-71.446152,41.81925999906],[-71.446213,41.81934399906],[-71.446457,41.81969499906],[-71.446533,41.81977099906],[-71.446869,41.82012199906],[-71.446907,41.82015599906],[-71.446999,41.82023599906],[-71.447754,41.82089999906],[-71.4478,41.82093399906],[-71.448425,41.82139599906],[-71.448631,41.82154499906],[-71.449081,41.82187999906],[-71.449463,41.82216599906],[-71.449684,41.82232699906],[-71.45018,41.82269699906],[-71.450294,41.82278399906],[-71.450867,41.82319299906],[-71.45121,41.82343699906],[-71.4515,41.82364299906],[-71.451706,41.82379499906],[-71.451885,41.82392399906],[-71.452339,41.82424899906],[-71.452789,41.82456999906],[-71.453133,41.82472599906],[-71.453934,41.82509199906],[-71.454346,41.82457399906],[-71.454643,41.82419599906],[-71.454735,41.82407799906],[-71.455002,41.82374599906],[-71.455078,41.82366199906],[-71.456146,41.82233599906],[-71.456338,41.82209799906],[-71.456446,41.82197099906]]]}}"}, +{"type": "blockgroup", "typeId": 19004, "areaId": 28743, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.454086,41.82516099906],[-71.453934,41.82509199906],[-71.453133,41.82472599906],[-71.452789,41.82456999906],[-71.452339,41.82424899906],[-71.451885,41.82392399906],[-71.451706,41.82379499906],[-71.4515,41.82364299906],[-71.45121,41.82343699906],[-71.450867,41.82319299906],[-71.450294,41.82278399906],[-71.45018,41.82269699906],[-71.449684,41.82232699906],[-71.448669,41.82313199906],[-71.448822,41.82315399906],[-71.448784,41.82341399906],[-71.448692,41.82436799906],[-71.448631,41.82506599906],[-71.448852,41.82507499906],[-71.449249,41.82509199906],[-71.449341,41.82509999906],[-71.450096,41.82513399906],[-71.450829,41.82516899906],[-71.451172,41.82518799906],[-71.45153,41.82520299906],[-71.452202,41.82523699906],[-71.452698,41.82526799906],[-71.453018,41.82528299906],[-71.453484,41.82530199906],[-71.453972,41.82533599906],[-71.454086,41.82516099906]]]}}"}, +{"type": "blockgroup", "typeId": 19005, "areaId": 28744, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.449684,41.82232699906],[-71.449463,41.82216599906],[-71.449081,41.82187999906],[-71.448631,41.82154499906],[-71.448425,41.82139599906],[-71.4478,41.82093399906],[-71.447754,41.82089999906],[-71.446999,41.82023599906],[-71.446449,41.82059499906],[-71.446121,41.82087299906],[-71.446037,41.82096099906],[-71.445992,41.82112899906],[-71.445961,41.82147199906],[-71.445961,41.82152899906],[-71.445885,41.82213199906],[-71.445702,41.82327299906],[-71.444817,41.82332599906],[-71.444626,41.82485199906],[-71.445491,41.82490399906],[-71.445763,41.82492099906],[-71.446655,41.82496599906],[-71.447418,41.82500499906],[-71.447853,41.82502399906],[-71.448296,41.82504299906],[-71.448631,41.82506599906],[-71.448692,41.82436799906],[-71.448784,41.82341399906],[-71.448822,41.82315399906],[-71.448669,41.82313199906],[-71.449684,41.82232699906]]]}}"}, +{"type": "blockgroup", "typeId": 19006, "areaId": 28745, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.445885,41.82213199906],[-71.445017,41.82207499906],[-71.444992,41.82207099906],[-71.44413,41.82200199906],[-71.443237,41.82194899906],[-71.443436,41.82045699906],[-71.443192,41.82034299906],[-71.442932,41.82003399906],[-71.442695,41.81962999906],[-71.442505,41.81930499906],[-71.442375,41.81937399906],[-71.442321,41.81938799906],[-71.442268,41.81940099906],[-71.442203,41.81941499906],[-71.442085,41.81943899906],[-71.441849,41.81949599906],[-71.441765,41.81951099906],[-71.441628,41.81954199906],[-71.441483,41.81956899906],[-71.441391,41.81957999906],[-71.441177,41.81957599906],[-71.440788,41.81953399906],[-71.440498,41.81951099906],[-71.440384,41.82023599906],[-71.440201,41.82126999906],[-71.440094,41.82178899906],[-71.439937,41.82247199906],[-71.439918,41.82257499906],[-71.439914,41.82259399906],[-71.439903,41.82261699906],[-71.439758,41.82325699906],[-71.439575,41.82413499906],[-71.439537,41.82430999906],[-71.439537,41.82433299906],[-71.439476,41.82456199906],[-71.441566,41.82467999906],[-71.441956,41.82469899906],[-71.442429,41.82473399906],[-71.442917,41.82475699906],[-71.443398,41.82477999906],[-71.443718,41.82480199906],[-71.444626,41.82485199906],[-71.444817,41.82332599906],[-71.445702,41.82327299906],[-71.445885,41.82213199906]]]}}"}, +{"type": "blockgroup", "typeId": 20001, "areaId": 28746, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.471764,41.82415299906],[-71.471632,41.82381599906],[-71.4716,41.82373499906],[-71.471573,41.82366499906],[-71.471511,41.82351099906],[-71.471077,41.82238399906],[-71.471,41.82223899906],[-71.470895,41.82198699906],[-71.470877,41.82194399906],[-71.47068,41.82197999906],[-71.470306,41.82204399906],[-71.470276,41.82205199906],[-71.470055,41.82209399906],[-71.468365,41.82239099906],[-71.466958,41.82264599906],[-71.465987,41.82282199906],[-71.465538,41.82290299906],[-71.464836,41.82302499906],[-71.464478,41.82307399906],[-71.464157,41.82310499906],[-71.463909,41.82312299906],[-71.463837,41.82312799906],[-71.463516,41.82313899906],[-71.463203,41.82313899906],[-71.462891,41.82313199906],[-71.462578,41.82311599906],[-71.46225,41.82308599906],[-71.461594,41.82300599906],[-71.461331,41.82296199906],[-71.460487,41.82281899906],[-71.460523,41.82267399906],[-71.459347,41.82247199906],[-71.459221,41.82244999906],[-71.459113,41.82243099906],[-71.45775,41.82219599906],[-71.456446,41.82197099906],[-71.456338,41.82209799906],[-71.456146,41.82233599906],[-71.455078,41.82366199906],[-71.455002,41.82374599906],[-71.454735,41.82407799906],[-71.454643,41.82419599906],[-71.454346,41.82457399906],[-71.453934,41.82509199906],[-71.454086,41.82516099906],[-71.453972,41.82533599906],[-71.454659,41.82537499906],[-71.454834,41.82538599906],[-71.455391,41.82548099906],[-71.456444,41.82566099906],[-71.457008,41.82575999906],[-71.456995,41.82617999906],[-71.456984,41.82652899906],[-71.456963,41.82703799906],[-71.45694,41.82756799906],[-71.456917,41.82807899906],[-71.456902,41.82828899906],[-71.456894,41.82861299906],[-71.456276,41.82865099906],[-71.456131,41.82866299906],[-71.456184,41.82926899906],[-71.456284,41.83008999906],[-71.456291,41.83018899906],[-71.455559,41.83023799906],[-71.455475,41.83024599906],[-71.454826,41.83027999906],[-71.454811,41.83035999906],[-71.454689,41.83051699906],[-71.454613,41.83063499906],[-71.454597,41.83067299906],[-71.454689,41.83222999906],[-71.454552,41.83224099906],[-71.453796,41.83230999906],[-71.453026,41.83238199906],[-71.452782,41.83240899906],[-71.452873,41.83277099906],[-71.452957,41.83307599906],[-71.453094,41.83360299906],[-71.453117,41.83371699906],[-71.453156,41.83388499906],[-71.453232,41.83420199906],[-71.453278,41.83436599906],[-71.453384,41.83475899906],[-71.453436,41.83496899906],[-71.453514,41.83528499906],[-71.453559,41.83549799906],[-71.453629,41.83581899906],[-71.454796,41.83523199906],[-71.455032,41.83511399906],[-71.455101,41.83506399906],[-71.455154,41.83500299906],[-71.455368,41.83466299906],[-71.455399,41.83455299906],[-71.455399,41.83447199906],[-71.456074,41.83327999906],[-71.456114,41.83321099906],[-71.456286,41.83271299906],[-71.456497,41.83210799906],[-71.456764,41.83211099906],[-71.45697,41.83212699906],[-71.4571,41.83214599906],[-71.457321,41.83218799906],[-71.457458,41.83222999906],[-71.457504,41.83224099906],[-71.457581,41.83227199906],[-71.457718,41.83233599906],[-71.457932,41.83246999906],[-71.458171,41.83262799906],[-71.458397,41.83277899906],[-71.45858,41.83288999906],[-71.458885,41.83253499906],[-71.458923,41.83245499906],[-71.458939,41.83237099906],[-71.458954,41.83210399906],[-71.458961,41.83167599906],[-71.459005,41.83066199906],[-71.459015,41.83042899906],[-71.459045,41.82991799906],[-71.459053,41.82967899906],[-71.459061,41.82946799906],[-71.459084,41.82914699906],[-71.459167,41.82910499906],[-71.459404,41.82891499906],[-71.459526,41.82880399906],[-71.459595,41.82874699906],[-71.459702,41.82863999906],[-71.460114,41.82828899906],[-71.460854,41.82764399906],[-71.46006,41.82743499906],[-71.460007,41.82739999906],[-71.459663,41.82734299906],[-71.459421,41.82729499906],[-71.459032,41.82721799906],[-71.458427,41.82709899906],[-71.458221,41.82597399906],[-71.458483,41.82563599906],[-71.458563,41.82553099906],[-71.458664,41.82540099906],[-71.45887,41.82513799906],[-71.459076,41.82486699906],[-71.459305,41.82458499906],[-71.459511,41.82431799906],[-71.459534,41.82429899906],[-71.459694,41.82409299906],[-71.459763,41.82401699906],[-71.460047,41.82364399906],[-71.460102,41.82356799906],[-71.460175,41.82346799906],[-71.460219,41.82340699906],[-71.460251,41.82336299906],[-71.460429,41.82344199906],[-71.460684,41.82359799906],[-71.460704,41.82360999906],[-71.460888,41.82372899906],[-71.461078,41.82383299906],[-71.461248,41.82391799906],[-71.46145,41.82400799906],[-71.461825,41.82422099906],[-71.462002,41.82429399906],[-71.462171,41.82435099906],[-71.462206,41.82437199906],[-71.462233,41.82438799906],[-71.462285,41.82445499906],[-71.462279,41.82449299906],[-71.462327,41.82452599906],[-71.462423,41.82468699906],[-71.463152,41.82466399906],[-71.463185,41.82475399906],[-71.46402,41.82464199906],[-71.464493,41.82457899906],[-71.464703,41.82462299906],[-71.464924,41.82467099906],[-71.465216,41.82460399906],[-71.466295,41.82446899906],[-71.467885,41.82437699906],[-71.468209,41.82435799906],[-71.468399,41.82432199906],[-71.468981,41.82430299906],[-71.470791,41.82420899906],[-71.471306,41.82413899906],[-71.471764,41.82415299906]]]}}"}, +{"type": "blockgroup", "typeId": 20002, "areaId": 28747, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.472477,41.83430799906],[-71.472462,41.83423399906],[-71.472432,41.83418099906],[-71.472383,41.83412199906],[-71.472235,41.83399999906],[-71.472064,41.83387399906],[-71.471994,41.83380699906],[-71.471827,41.83362099906],[-71.471745,41.83353799906],[-71.471673,41.83348699906],[-71.47159,41.83343799906],[-71.471063,41.83320699906],[-71.470972,41.83315699906],[-71.470902,41.83310999906],[-71.470834,41.83307299906],[-71.470608,41.83298199906],[-71.470586,41.83296799906],[-71.470444,41.83291199906],[-71.470367,41.83287999906],[-71.470258,41.83283099906],[-71.469987,41.83272299906],[-71.469791,41.83265599906],[-71.469695,41.83263099906],[-71.469404,41.83257499906],[-71.469304,41.83257099906],[-71.469113,41.83253199906],[-71.469025,41.83250299906],[-71.46895,41.83246799906],[-71.468888,41.83242899906],[-71.468819,41.83236999906],[-71.468758,41.83230799906],[-71.468624,41.83221199906],[-71.468487,41.83211299906],[-71.468356,41.83203299906],[-71.468286,41.83198299906],[-71.468221,41.83192899906],[-71.468038,41.83172899906],[-71.467982,41.83168399906],[-71.467914,41.83163999906],[-71.467756,41.83155599906],[-71.467673,41.83151999906],[-71.46759,41.83149099906],[-71.467437,41.83145199906],[-71.467262,41.83141799906],[-71.467191,41.83140899906],[-71.467024,41.83140399906],[-71.466861,41.83140999906],[-71.466462,41.83145199906],[-71.466293,41.83148299906],[-71.466177,41.83150899906],[-71.466091,41.83151099906],[-71.465693,41.83144799906],[-71.465615,41.83141799906],[-71.465416,41.83131399906],[-71.465319,41.83127999906],[-71.465246,41.83126699906],[-71.4651,41.83126499906],[-71.464992,41.83124299906],[-71.464922,41.83121499906],[-71.46486,41.83118099906],[-71.464803,41.83111899906],[-71.464769,41.83104799906],[-71.464758,41.83099099906],[-71.464758,41.83093099906],[-71.464737,41.83087799906],[-71.464726,41.83082199906],[-71.464722,41.83076499906],[-71.464693,41.83065899906],[-71.464742,41.83058799906],[-71.46475,41.83031599906],[-71.464744,41.83024699906],[-71.464686,41.83012599906],[-71.464646,41.83007099906],[-71.464569,41.82987699906],[-71.464422,41.82959699906],[-71.464304,41.82939699906],[-71.46418,41.82922799906],[-71.464125,41.82913599906],[-71.464021,41.82893899906],[-71.463948,41.82884099906],[-71.463793,41.82868099906],[-71.463744,41.82861599906],[-71.463676,41.82847499906],[-71.463635,41.82840499906],[-71.463461,41.82821399906],[-71.463348,41.82807399906],[-71.463249,41.82796499906],[-71.4632,41.82791899906],[-71.463145,41.82788099906],[-71.463065,41.82783599906],[-71.462983,41.82783199906],[-71.46293,41.82784699906],[-71.462873,41.82780199906],[-71.462804,41.82776699906],[-71.462748,41.82776699906],[-71.46266,41.82774499906],[-71.462594,41.82769099906],[-71.462556,41.82764099906],[-71.462495,41.82752899906],[-71.462454,41.82748099906],[-71.462432,41.82741299906],[-71.462412,41.82730299906],[-71.462387,41.82724799906],[-71.462355,41.82719199906],[-71.462332,41.82713799906],[-71.462306,41.82704699906],[-71.462297,41.82697599906],[-71.462309,41.82678899906],[-71.462333,41.82673599906],[-71.462366,41.82668499906],[-71.462523,41.82646999906],[-71.462542,41.82645299906],[-71.462504,41.82612999906],[-71.462303,41.82579299906],[-71.46208,41.82553999906],[-71.461936,41.82511499906],[-71.462225,41.82478099906],[-71.462423,41.82468699906],[-71.462327,41.82452599906],[-71.462279,41.82449299906],[-71.462285,41.82445499906],[-71.462233,41.82438799906],[-71.462206,41.82437199906],[-71.462171,41.82435099906],[-71.462002,41.82429399906],[-71.461825,41.82422099906],[-71.46145,41.82400799906],[-71.461248,41.82391799906],[-71.461078,41.82383299906],[-71.460888,41.82372899906],[-71.460704,41.82360999906],[-71.460684,41.82359799906],[-71.460429,41.82344199906],[-71.460251,41.82336299906],[-71.460219,41.82340699906],[-71.460175,41.82346799906],[-71.460102,41.82356799906],[-71.460047,41.82364399906],[-71.459763,41.82401699906],[-71.459694,41.82409299906],[-71.459534,41.82429899906],[-71.459511,41.82431799906],[-71.459305,41.82458499906],[-71.459076,41.82486699906],[-71.45887,41.82513799906],[-71.458664,41.82540099906],[-71.458563,41.82553099906],[-71.458483,41.82563599906],[-71.458221,41.82597399906],[-71.458427,41.82709899906],[-71.459032,41.82721799906],[-71.459421,41.82729499906],[-71.459663,41.82734299906],[-71.460007,41.82739999906],[-71.46006,41.82743499906],[-71.460854,41.82764399906],[-71.460114,41.82828899906],[-71.459702,41.82863999906],[-71.459595,41.82874699906],[-71.459526,41.82880399906],[-71.459404,41.82891499906],[-71.459167,41.82910499906],[-71.459084,41.82914699906],[-71.459061,41.82946799906],[-71.459053,41.82967899906],[-71.459045,41.82991799906],[-71.459015,41.83042899906],[-71.459005,41.83066199906],[-71.458961,41.83167599906],[-71.458954,41.83210399906],[-71.458939,41.83237099906],[-71.458923,41.83245499906],[-71.458885,41.83253499906],[-71.45858,41.83288999906],[-71.458694,41.83295799906],[-71.458817,41.83302299906],[-71.4589,41.83306099906],[-71.459053,41.83311499906],[-71.45919,41.83313399906],[-71.459511,41.83314999906],[-71.459633,41.83315699906],[-71.460419,41.83317199906],[-71.46109,41.83317899906],[-71.461159,41.83317599906],[-71.461288,41.83315699906],[-71.461349,41.83313399906],[-71.461456,41.83306499906],[-71.461502,41.83303099906],[-71.461761,41.83276699906],[-71.461806,41.83272699906],[-71.461815,41.83270999906],[-71.461899,41.83264499906],[-71.462006,41.83259599906],[-71.462067,41.83258099906],[-71.462181,41.83256899906],[-71.462242,41.83257299906],[-71.462296,41.83258399906],[-71.462349,41.83259999906],[-71.46241,41.83261499906],[-71.462517,41.83266099906],[-71.463005,41.83293499906],[-71.46386,41.83340499906],[-71.464233,41.83358799906],[-71.464485,41.83370599906],[-71.464355,41.83388499906],[-71.464333,41.83393499906],[-71.464333,41.83403399906],[-71.463442,41.83400599906],[-71.463097,41.83399599906],[-71.462936,41.83398899906],[-71.462967,41.83431599906],[-71.462975,41.83444199906],[-71.462997,41.83460999906],[-71.463043,41.83480499906],[-71.463104,41.83499899906],[-71.46315,41.83510199906],[-71.463226,41.83530399906],[-71.463318,41.83550599906],[-71.463364,41.83562499906],[-71.463486,41.83589299906],[-71.463516,41.83595999906],[-71.46357,41.83606299906],[-71.463654,41.83627299906],[-71.463684,41.83637599906],[-71.463707,41.83648299906],[-71.463753,41.83663199906],[-71.463837,41.83703599906],[-71.463852,41.83713899906],[-71.463875,41.83723799906],[-71.464103,41.83800699906],[-71.464119,41.83806199906],[-71.464255,41.83903299906],[-71.464503,41.84079899906],[-71.464504,41.84090899906],[-71.464503,41.84154899906],[-71.46456,41.84206599906],[-71.465309,41.84156799906],[-71.465546,41.84141499906],[-71.465652,41.84133599906],[-71.466393,41.84085499906],[-71.466949,41.84047699906],[-71.46771,41.84007899906],[-71.467685,41.83996799906],[-71.468742,41.83925999906],[-71.469144,41.83900499906],[-71.470506,41.83809899906],[-71.470955,41.83787499906],[-71.471497,41.83755499906],[-71.472059,41.83722399906],[-71.472198,41.83714299906],[-71.472459,41.83698099906],[-71.472381,41.83693599906],[-71.472357,41.83690799906],[-71.472329,41.83687399906],[-71.472313,41.83681699906],[-71.472303,41.83675499906],[-71.472262,41.83669599906],[-71.472046,41.83651499906],[-71.472004,41.83647399906],[-71.471797,41.83627599906],[-71.471753,41.83622199906],[-71.471733,41.83618899906],[-71.471721,41.83616899906],[-71.471702,41.83610799906],[-71.471695,41.83604399906],[-71.471703,41.83597399906],[-71.471744,41.83584199906],[-71.471749,41.83578599906],[-71.471674,41.83565499906],[-71.471667,41.83559899906],[-71.471673,41.83555699906],[-71.471676,41.83553399906],[-71.471791,41.83523099906],[-71.471852,41.83510699906],[-71.471889,41.83504299906],[-71.471932,41.83498899906],[-71.471963,41.83493699906],[-71.471987,41.83490699906],[-71.472008,41.83491599906],[-71.472176,41.83493299906],[-71.472194,41.83489099906],[-71.472232,41.83483499906],[-71.472334,41.83470599906],[-71.472381,41.83463499906],[-71.472416,41.83456499906],[-71.472476,41.83436399906],[-71.472477,41.83430799906]]]}}"}, +{"type": "blockgroup", "typeId": 21011, "areaId": 28748, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.453629,41.83581899906],[-71.453559,41.83549799906],[-71.453514,41.83528499906],[-71.453436,41.83496899906],[-71.453384,41.83475899906],[-71.453278,41.83436599906],[-71.453232,41.83420199906],[-71.453156,41.83388499906],[-71.453117,41.83371699906],[-71.453094,41.83360299906],[-71.452957,41.83307599906],[-71.452873,41.83277099906],[-71.452782,41.83240899906],[-71.452339,41.83245099906],[-71.452049,41.83247799906],[-71.451607,41.83251999906],[-71.451324,41.83254599906],[-71.451035,41.83257299906],[-71.450607,41.83261899906],[-71.449745,41.83269899906],[-71.449928,41.83349199906],[-71.45005,41.83396099906],[-71.450096,41.83416399906],[-71.450211,41.83465599906],[-71.450287,41.83495699906],[-71.450333,41.83515199906],[-71.450485,41.83555999906],[-71.450722,41.83620799906],[-71.450912,41.83673099906],[-71.451157,41.83741799906],[-71.451469,41.83734499906],[-71.452675,41.83711199906],[-71.452835,41.83706999906],[-71.452911,41.83704399906],[-71.452957,41.83702099906],[-71.452995,41.83697499906],[-71.453011,41.83695199906],[-71.453049,41.83687599906],[-71.453094,41.83672699906],[-71.453094,41.83662799906],[-71.453087,41.83656299906],[-71.453079,41.83647199906],[-71.452911,41.83590699906],[-71.453201,41.83586899906],[-71.453568,41.83583499906],[-71.453629,41.83581899906]]]}}"}, +{"type": "blockgroup", "typeId": 21012, "areaId": 28749, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.451607,41.83866099906],[-71.451225,41.83762699906],[-71.451157,41.83741799906],[-71.450912,41.83673099906],[-71.450722,41.83620799906],[-71.450485,41.83555999906],[-71.450333,41.83515199906],[-71.450287,41.83495699906],[-71.449303,41.83481199906],[-71.448364,41.83471299906],[-71.447629,41.83500699906],[-71.447601,41.83500299906],[-71.446991,41.83523599906],[-71.446877,41.83528099906],[-71.446175,41.83555999906],[-71.445465,41.83583499906],[-71.445526,41.83642599906],[-71.445618,41.83724999906],[-71.445147,41.83728099906],[-71.444702,41.83731099906],[-71.44487,41.83896999906],[-71.44577,41.83897799906],[-71.445778,41.83863799906],[-71.446442,41.83863799906],[-71.446903,41.83864299906],[-71.447227,41.83864599906],[-71.448074,41.83864999906],[-71.448914,41.83865699906],[-71.449753,41.83866899906],[-71.450668,41.83866499906],[-71.451607,41.83866099906]]]}}"}, +{"type": "blockgroup", "typeId": 21013, "areaId": 28750, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.450287,41.83495699906],[-71.450211,41.83465599906],[-71.450096,41.83416399906],[-71.45005,41.83396099906],[-71.449928,41.83349199906],[-71.449745,41.83269899906],[-71.449348,41.83273699906],[-71.448975,41.83277899906],[-71.448814,41.83279799906],[-71.448662,41.83281699906],[-71.448196,41.83286299906],[-71.448112,41.83287399906],[-71.447922,41.83289699906],[-71.447365,41.83283199906],[-71.446632,41.83273299906],[-71.445862,41.83262299906],[-71.44558,41.83258099906],[-71.445107,41.83252299906],[-71.444527,41.83244699906],[-71.444382,41.83359099906],[-71.444389,41.83393899906],[-71.444412,41.83425499906],[-71.444458,41.83485799906],[-71.444611,41.83651399906],[-71.444649,41.83679199906],[-71.44466,41.83690499906],[-71.444702,41.83731099906],[-71.445147,41.83728099906],[-71.445618,41.83724999906],[-71.445526,41.83642599906],[-71.445465,41.83583499906],[-71.446175,41.83555999906],[-71.446877,41.83528099906],[-71.446991,41.83523599906],[-71.447601,41.83500299906],[-71.447629,41.83500699906],[-71.448364,41.83471299906],[-71.449303,41.83481199906],[-71.450287,41.83495699906]]]}}"}, +{"type": "blockgroup", "typeId": 21021, "areaId": 28751, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.454826,41.83027999906],[-71.45459,41.83029199906],[-71.453972,41.83033399906],[-71.45385,41.82901399906],[-71.453835,41.82881899906],[-71.453331,41.82879999906],[-71.453217,41.82879999906],[-71.453064,41.82879599906],[-71.45285,41.82878899906],[-71.452255,41.82879599906],[-71.451515,41.82881199906],[-71.450974,41.82886099906],[-71.450317,41.82891499906],[-71.449142,41.82902499906],[-71.449249,41.82959699906],[-71.449387,41.83042899906],[-71.449524,41.83124199906],[-71.449745,41.83269899906],[-71.450607,41.83261899906],[-71.451035,41.83257299906],[-71.451324,41.83254599906],[-71.451607,41.83251999906],[-71.452049,41.83247799906],[-71.452339,41.83245099906],[-71.452782,41.83240899906],[-71.453026,41.83238199906],[-71.453796,41.83230999906],[-71.454552,41.83224099906],[-71.454689,41.83222999906],[-71.454597,41.83067299906],[-71.454613,41.83063499906],[-71.454689,41.83051699906],[-71.454811,41.83035999906],[-71.454826,41.83027999906]]]}}"}, +{"type": "blockgroup", "typeId": 21022, "areaId": 28752, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.457008,41.82575999906],[-71.456444,41.82566099906],[-71.455391,41.82548099906],[-71.454834,41.82538599906],[-71.454659,41.82537499906],[-71.453972,41.82533599906],[-71.453896,41.82556899906],[-71.453835,41.82589299906],[-71.453728,41.82622899906],[-71.453682,41.82640499906],[-71.453674,41.82650399906],[-71.453697,41.82666799906],[-71.453773,41.82733499906],[-71.453911,41.82841099906],[-71.453957,41.82882299906],[-71.453835,41.82881899906],[-71.45385,41.82901399906],[-71.453972,41.83033399906],[-71.45459,41.83029199906],[-71.454826,41.83027999906],[-71.455475,41.83024599906],[-71.455559,41.83023799906],[-71.456291,41.83018899906],[-71.456284,41.83008999906],[-71.456184,41.82926899906],[-71.456131,41.82866299906],[-71.456276,41.82865099906],[-71.456894,41.82861299906],[-71.456902,41.82828899906],[-71.456917,41.82807899906],[-71.45694,41.82756799906],[-71.456963,41.82703799906],[-71.456984,41.82652899906],[-71.456995,41.82617999906],[-71.457008,41.82575999906]]]}}"}, +{"type": "blockgroup", "typeId": 21023, "areaId": 28753, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.449249,41.82959699906],[-71.449142,41.82902499906],[-71.449051,41.82850999906],[-71.44902,41.82828499906],[-71.448975,41.82801799906],[-71.448891,41.82747699906],[-71.448807,41.82694199906],[-71.448738,41.82645799906],[-71.4487,41.82614499906],[-71.448631,41.82570999906],[-71.448616,41.82560699906],[-71.448616,41.82548099906],[-71.448608,41.82534399906],[-71.448628,41.82510199906],[-71.448631,41.82506599906],[-71.448296,41.82504299906],[-71.447853,41.82502399906],[-71.447418,41.82500499906],[-71.446655,41.82496599906],[-71.445763,41.82492099906],[-71.445491,41.82490399906],[-71.444626,41.82485199906],[-71.443718,41.82480199906],[-71.443398,41.82477999906],[-71.443375,41.82511499906],[-71.443383,41.82522999906],[-71.443398,41.82544299906],[-71.443413,41.82550399906],[-71.443542,41.82620599906],[-71.443581,41.82642399906],[-71.443642,41.82683599906],[-71.443695,41.82717899906],[-71.44371,41.82724799906],[-71.443794,41.82776299906],[-71.443817,41.82790399906],[-71.443886,41.82838399906],[-71.443916,41.82854799906],[-71.443937,41.82868299906],[-71.444023,41.82923499906],[-71.444031,41.82928799906],[-71.44416,41.83004399906],[-71.445641,41.82991399906],[-71.447624,41.82973899906],[-71.448357,41.82966999906],[-71.449171,41.82960699906],[-71.449249,41.82959699906]]]}}"}, +{"type": "blockgroup", "typeId": 21024, "areaId": 28754, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.453972,41.82533599906],[-71.453484,41.82530199906],[-71.453018,41.82528299906],[-71.452698,41.82526799906],[-71.452202,41.82523699906],[-71.45153,41.82520299906],[-71.451172,41.82518799906],[-71.450829,41.82516899906],[-71.450096,41.82513399906],[-71.449341,41.82509999906],[-71.449249,41.82509199906],[-71.448852,41.82507499906],[-71.448631,41.82506599906],[-71.448628,41.82510199906],[-71.448608,41.82534399906],[-71.448616,41.82548099906],[-71.448616,41.82560699906],[-71.448631,41.82570999906],[-71.4487,41.82614499906],[-71.448738,41.82645799906],[-71.448807,41.82694199906],[-71.448891,41.82747699906],[-71.448975,41.82801799906],[-71.44902,41.82828499906],[-71.449051,41.82850999906],[-71.449142,41.82902499906],[-71.450317,41.82891499906],[-71.450974,41.82886099906],[-71.451515,41.82881199906],[-71.452255,41.82879599906],[-71.45285,41.82878899906],[-71.453064,41.82879599906],[-71.453217,41.82879999906],[-71.453331,41.82879999906],[-71.453835,41.82881899906],[-71.453957,41.82882299906],[-71.453911,41.82841099906],[-71.453773,41.82733499906],[-71.453697,41.82666799906],[-71.453674,41.82650399906],[-71.453682,41.82640499906],[-71.453728,41.82622899906],[-71.453835,41.82589299906],[-71.453896,41.82556899906],[-71.453972,41.82533599906]]]}}"}, +{"type": "blockgroup", "typeId": 21025, "areaId": 28755, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.449745,41.83269899906],[-71.449524,41.83124199906],[-71.449387,41.83042899906],[-71.449249,41.82959699906],[-71.449171,41.82960699906],[-71.448357,41.82966999906],[-71.447624,41.82973899906],[-71.445641,41.82991399906],[-71.44416,41.83004399906],[-71.444214,41.83040199906],[-71.44429,41.83088299906],[-71.444382,41.83142099906],[-71.44442,41.83167999906],[-71.444496,41.83226799906],[-71.444527,41.83244699906],[-71.445107,41.83252299906],[-71.44558,41.83258099906],[-71.445862,41.83262299906],[-71.446632,41.83273299906],[-71.447365,41.83283199906],[-71.447922,41.83289699906],[-71.448112,41.83287399906],[-71.448196,41.83286299906],[-71.448662,41.83281699906],[-71.448814,41.83279799906],[-71.448975,41.83277899906],[-71.449348,41.83273699906],[-71.449745,41.83269899906]]]}}"}, +{"type": "blockgroup", "typeId": 22001, "areaId": 28756, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.439339,41.83241699906],[-71.439224,41.83200799906],[-71.439117,41.83150899906],[-71.439011,41.83109699906],[-71.438995,41.83101999906],[-71.438843,41.83034099906],[-71.438774,41.83002499906],[-71.438698,41.82971999906],[-71.438576,41.82972699906],[-71.438484,41.82974599906],[-71.43795,41.82995999906],[-71.437767,41.83003999906],[-71.437614,41.83010499906],[-71.437134,41.83029199906],[-71.436928,41.83038299906],[-71.435585,41.83093599906],[-71.435196,41.83109699906],[-71.435112,41.83100899906],[-71.434692,41.83053199906],[-71.434479,41.83030699906],[-71.434212,41.82999399906],[-71.434021,41.82977299906],[-71.433815,41.82955199906],[-71.433449,41.82914399906],[-71.433304,41.82899899906],[-71.431966,41.82975699906],[-71.43177,41.82987199906],[-71.431412,41.83003999906],[-71.430504,41.83044399906],[-71.429718,41.83080299906],[-71.429504,41.83089799906],[-71.429222,41.83102399906],[-71.42865,41.83129099906],[-71.428474,41.83138699906],[-71.42836,41.83148999906],[-71.428474,41.83161499906],[-71.428604,41.83177199906],[-71.428619,41.83203199906],[-71.428627,41.83218399906],[-71.428734,41.83262299906],[-71.429001,41.83349999906],[-71.429253,41.83439599906],[-71.429596,41.83432399906],[-71.430237,41.83419399906],[-71.430534,41.83412599906],[-71.431419,41.83394999906],[-71.431656,41.83392299906],[-71.432076,41.83386199906],[-71.432449,41.83382399906],[-71.432526,41.83381999906],[-71.432663,41.83381999906],[-71.432808,41.83382799906],[-71.433121,41.83386599906],[-71.43335,41.83389999906],[-71.433426,41.83390799906],[-71.433693,41.83394999906],[-71.433929,41.83398099906],[-71.434143,41.83399199906],[-71.434311,41.83399199906],[-71.434464,41.83398099906],[-71.434746,41.83393099906],[-71.435135,41.83382799906],[-71.435318,41.83376299906],[-71.435463,41.83371399906],[-71.436211,41.83343099906],[-71.436523,41.83331699906],[-71.437141,41.83308799906],[-71.437828,41.83283999906],[-71.438538,41.83258399906],[-71.438957,41.83249299906],[-71.439339,41.83241699906]]]}}"}, +{"type": "blockgroup", "typeId": 22002, "areaId": 28757, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.441566,41.82467999906],[-71.439476,41.82456199906],[-71.43943,41.82474499906],[-71.439396,41.82489999906],[-71.439369,41.82502399906],[-71.439308,41.82520699906],[-71.439285,41.82527499906],[-71.439178,41.82552299906],[-71.439041,41.82575999906],[-71.438995,41.82583199906],[-71.438911,41.82595799906],[-71.438759,41.82612999906],[-71.438652,41.82623299906],[-71.438576,41.82630899906],[-71.438316,41.82650799906],[-71.438148,41.82661399906],[-71.438087,41.82665299906],[-71.438026,41.82667899906],[-71.437851,41.82676699906],[-71.437553,41.82689699906],[-71.437286,41.82701499906],[-71.436707,41.82728199906],[-71.436401,41.82741199906],[-71.43615,41.82751799906],[-71.43544,41.82783099906],[-71.435158,41.82796499906],[-71.434456,41.82834999906],[-71.433304,41.82899899906],[-71.433449,41.82914399906],[-71.433815,41.82955199906],[-71.434021,41.82977299906],[-71.434212,41.82999399906],[-71.434479,41.83030699906],[-71.434692,41.83053199906],[-71.435112,41.83100899906],[-71.435196,41.83109699906],[-71.435585,41.83093599906],[-71.436928,41.83038299906],[-71.437134,41.83029199906],[-71.437614,41.83010499906],[-71.437767,41.83003999906],[-71.43795,41.82995999906],[-71.438484,41.82974599906],[-71.438576,41.82972699906],[-71.438698,41.82971999906],[-71.438644,41.82942999906],[-71.438538,41.82898299906],[-71.438955,41.82889999906],[-71.439169,41.82881099906],[-71.43927,41.82873499906],[-71.439293,41.82869699906],[-71.439314,41.82868299906],[-71.439827,41.82810199906],[-71.440063,41.82757899906],[-71.440041,41.82698799906],[-71.440055,41.82697299906],[-71.440094,41.82690799906],[-71.440132,41.82675599906],[-71.440155,41.82660299906],[-71.44014,41.82651499906],[-71.440117,41.82650799906],[-71.441002,41.82619999906],[-71.441289,41.82616799906],[-71.441311,41.82601999906],[-71.441315,41.82597399906],[-71.441399,41.82575599906],[-71.441452,41.82555399906],[-71.44149,41.82533599906],[-71.441534,41.82500699906],[-71.441551,41.82488999906],[-71.441566,41.82467999906]]]}}"}, +{"type": "blockgroup", "typeId": 22003, "areaId": 28758, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.444031,41.82928799906],[-71.444023,41.82923499906],[-71.443937,41.82868299906],[-71.443916,41.82854799906],[-71.443886,41.82838399906],[-71.443817,41.82790399906],[-71.443794,41.82776299906],[-71.44371,41.82724799906],[-71.443695,41.82717899906],[-71.443642,41.82683599906],[-71.443581,41.82642399906],[-71.443542,41.82620599906],[-71.443413,41.82550399906],[-71.443398,41.82544299906],[-71.443383,41.82522999906],[-71.443375,41.82511499906],[-71.443398,41.82477999906],[-71.442917,41.82475699906],[-71.442429,41.82473399906],[-71.441956,41.82469899906],[-71.441566,41.82467999906],[-71.441551,41.82488999906],[-71.441534,41.82500699906],[-71.44149,41.82533599906],[-71.441452,41.82555399906],[-71.441399,41.82575599906],[-71.441315,41.82597399906],[-71.441311,41.82601999906],[-71.441289,41.82616799906],[-71.441002,41.82619999906],[-71.440117,41.82650799906],[-71.44014,41.82651499906],[-71.440155,41.82660299906],[-71.440132,41.82675599906],[-71.440094,41.82690799906],[-71.440055,41.82697299906],[-71.440041,41.82698799906],[-71.440063,41.82757899906],[-71.439827,41.82810199906],[-71.439314,41.82868299906],[-71.439293,41.82869699906],[-71.43927,41.82873499906],[-71.439169,41.82881099906],[-71.438955,41.82889999906],[-71.438538,41.82898299906],[-71.438644,41.82942999906],[-71.438698,41.82971999906],[-71.439583,41.82965099906],[-71.439812,41.82963599906],[-71.440377,41.82960299906],[-71.441185,41.82951699906],[-71.441948,41.82944499906],[-71.441986,41.82944499906],[-71.442337,41.82941399906],[-71.442787,41.82937999906],[-71.444031,41.82928799906]]]}}"}, +{"type": "blockgroup", "typeId": 22004, "areaId": 28759, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.444527,41.83244699906],[-71.444496,41.83226799906],[-71.44442,41.83167999906],[-71.444382,41.83142099906],[-71.44429,41.83088299906],[-71.444214,41.83040199906],[-71.44416,41.83004399906],[-71.444031,41.82928799906],[-71.442787,41.82937999906],[-71.442337,41.82941399906],[-71.441986,41.82944499906],[-71.441948,41.82944499906],[-71.441185,41.82951699906],[-71.440377,41.82960299906],[-71.439812,41.82963599906],[-71.439583,41.82965099906],[-71.438698,41.82971999906],[-71.438774,41.83002499906],[-71.438843,41.83034099906],[-71.438995,41.83101999906],[-71.439011,41.83109699906],[-71.439117,41.83150899906],[-71.439224,41.83200799906],[-71.439339,41.83241699906],[-71.439537,41.83239399906],[-71.439831,41.83235299906],[-71.440132,41.83232899906],[-71.440239,41.83231699906],[-71.440277,41.83231699906],[-71.440842,41.83227199906],[-71.440933,41.83226799906],[-71.44101,41.83226399906],[-71.44136,41.83226799906],[-71.441727,41.83227899906],[-71.442291,41.83229399906],[-71.442497,41.83230599906],[-71.442522,41.83230999906],[-71.443056,41.83232699906],[-71.443344,41.83233599906],[-71.443661,41.83234699906],[-71.443893,41.83235499906],[-71.444527,41.83244699906]]]}}"}, +{"type": "blockgroup", "typeId": 23001, "areaId": 28760, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.433632,41.83763899906],[-71.433464,41.83756299906],[-71.432838,41.83727599906],[-71.432083,41.83694099906],[-71.431252,41.83657499906],[-71.430862,41.83640699906],[-71.430595,41.83628499906],[-71.43045,41.83623099906],[-71.43042,41.83632999906],[-71.430069,41.83718899906],[-71.429924,41.83752799906],[-71.429878,41.83764999906],[-71.429626,41.83828399906],[-71.429611,41.83832899906],[-71.429359,41.83889799906],[-71.429169,41.83938599906],[-71.429092,41.83956499906],[-71.428848,41.84016799906],[-71.428833,41.84021799906],[-71.428505,41.84101899906],[-71.428825,41.84105299906],[-71.42942,41.84109899906],[-71.42972,41.84112399906],[-71.429871,41.84113699906],[-71.430367,41.84117499906],[-71.43132,41.84125499906],[-71.432205,41.84132799906],[-71.432281,41.84103399906],[-71.432411,41.84071699906],[-71.432434,41.84067499906],[-71.432861,41.84004199906],[-71.432953,41.83987799906],[-71.433014,41.83973299906],[-71.433044,41.83967599906],[-71.433128,41.83946599906],[-71.433296,41.83899299906],[-71.433434,41.83841299906],[-71.433632,41.83763899906]]]}}"}, +{"type": "blockgroup", "typeId": 23002, "areaId": 28761, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.439171,41.83550599906],[-71.439145,41.83541799906],[-71.439138,41.83538999906],[-71.439117,41.83528099906],[-71.439109,41.83526299906],[-71.439064,41.83503299906],[-71.43898,41.83466699906],[-71.438797,41.83381299906],[-71.438568,41.83266099906],[-71.438538,41.83258399906],[-71.437828,41.83283999906],[-71.437141,41.83308799906],[-71.436523,41.83331699906],[-71.436211,41.83343099906],[-71.435463,41.83371399906],[-71.435318,41.83376299906],[-71.435135,41.83382799906],[-71.434746,41.83393099906],[-71.434464,41.83398099906],[-71.434311,41.83399199906],[-71.434143,41.83399199906],[-71.433929,41.83398099906],[-71.433693,41.83394999906],[-71.433426,41.83390799906],[-71.43335,41.83389999906],[-71.433121,41.83386599906],[-71.432808,41.83382799906],[-71.432663,41.83381999906],[-71.432526,41.83381999906],[-71.432449,41.83382399906],[-71.432076,41.83386199906],[-71.431656,41.83392299906],[-71.431419,41.83394999906],[-71.430534,41.83412599906],[-71.430237,41.83419399906],[-71.430267,41.83437699906],[-71.430313,41.83501399906],[-71.430351,41.83521999906],[-71.430389,41.83534199906],[-71.430443,41.83567399906],[-71.430458,41.83591799906],[-71.430458,41.83609799906],[-71.43045,41.83623099906],[-71.430595,41.83628499906],[-71.430862,41.83640699906],[-71.431252,41.83657499906],[-71.432083,41.83694099906],[-71.432838,41.83727599906],[-71.433464,41.83756299906],[-71.433632,41.83763899906],[-71.43373,41.83768599906],[-71.4338,41.83771899906],[-71.434101,41.83784999906],[-71.434349,41.83795899906],[-71.434502,41.83803199906],[-71.435341,41.83840899906],[-71.435753,41.83860399906],[-71.436546,41.83895099906],[-71.43676,41.83904299906],[-71.43683,41.83907499906],[-71.437119,41.83920699906],[-71.437386,41.83931699906],[-71.438007,41.83957799906],[-71.43824,41.83967599906],[-71.438278,41.83956499906],[-71.438362,41.83928299906],[-71.438515,41.83869199906],[-71.438797,41.83766899906],[-71.438805,41.83759299906],[-71.438789,41.83747499906],[-71.438614,41.83686099906],[-71.438538,41.83655899906],[-71.438416,41.83614699906],[-71.438271,41.83556699906],[-71.438416,41.83555999906],[-71.439171,41.83550599906]]]}}"}, +{"type": "blockgroup", "typeId": 23003, "areaId": 28762, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.444527,41.83244699906],[-71.443893,41.83235499906],[-71.443661,41.83234699906],[-71.443344,41.83233599906],[-71.443056,41.83232699906],[-71.442522,41.83230999906],[-71.442497,41.83230599906],[-71.442291,41.83229399906],[-71.441727,41.83227899906],[-71.44136,41.83226799906],[-71.44101,41.83226399906],[-71.440933,41.83226799906],[-71.440842,41.83227199906],[-71.440277,41.83231699906],[-71.440239,41.83231699906],[-71.440132,41.83232899906],[-71.439831,41.83235299906],[-71.439537,41.83239399906],[-71.439339,41.83241699906],[-71.438957,41.83249299906],[-71.438538,41.83258399906],[-71.438568,41.83266099906],[-71.438797,41.83381299906],[-71.43898,41.83466699906],[-71.439064,41.83503299906],[-71.439109,41.83526299906],[-71.439117,41.83528099906],[-71.439514,41.83521299906],[-71.439804,41.83516299906],[-71.439938,41.83514399906],[-71.440331,41.83508699906],[-71.441124,41.83495699906],[-71.441788,41.83484299906],[-71.442169,41.83479699906],[-71.44249,41.83476299906],[-71.44252,41.83475899906],[-71.443039,41.83494599906],[-71.443146,41.83493999906],[-71.443169,41.83493399906],[-71.443306,41.83492699906],[-71.444458,41.83485799906],[-71.444412,41.83425499906],[-71.444389,41.83393899906],[-71.444382,41.83359099906],[-71.444527,41.83244699906]]]}}"}, +{"type": "blockgroup", "typeId": 23004, "areaId": 28763, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.44487,41.83896999906],[-71.444702,41.83731099906],[-71.44466,41.83690499906],[-71.444649,41.83679199906],[-71.444611,41.83651399906],[-71.444458,41.83485799906],[-71.443306,41.83492699906],[-71.443169,41.83493399906],[-71.443146,41.83493999906],[-71.443039,41.83494599906],[-71.44252,41.83475899906],[-71.44249,41.83476299906],[-71.442169,41.83479699906],[-71.441788,41.83484299906],[-71.441124,41.83495699906],[-71.440331,41.83508699906],[-71.439938,41.83514399906],[-71.439804,41.83516299906],[-71.439514,41.83521299906],[-71.439117,41.83528099906],[-71.439138,41.83538999906],[-71.439145,41.83541799906],[-71.439171,41.83550599906],[-71.438416,41.83555999906],[-71.438271,41.83556699906],[-71.438416,41.83614699906],[-71.438538,41.83655899906],[-71.438614,41.83686099906],[-71.438789,41.83747499906],[-71.438805,41.83759299906],[-71.438797,41.83766899906],[-71.43895,41.83764999906],[-71.439575,41.83754699906],[-71.439728,41.83751699906],[-71.440186,41.83746299906],[-71.440643,41.83739099906],[-71.441528,41.83724999906],[-71.441734,41.83795199906],[-71.442017,41.83899299906],[-71.442924,41.83896999906],[-71.44487,41.83896999906]]]}}"}, +{"type": "blockgroup", "typeId": 23005, "areaId": 28764, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.440567,41.84080899906],[-71.440552,41.84063299906],[-71.440094,41.84044299906],[-71.439949,41.84037799906],[-71.439804,41.84032099906],[-71.439095,41.84002699906],[-71.43824,41.83967599906],[-71.438007,41.83957799906],[-71.437386,41.83931699906],[-71.437119,41.83920699906],[-71.43683,41.83907499906],[-71.43676,41.83904299906],[-71.436546,41.83895099906],[-71.435753,41.83860399906],[-71.435341,41.83840899906],[-71.434502,41.83803199906],[-71.434349,41.83795899906],[-71.434101,41.83784999906],[-71.4338,41.83771899906],[-71.43373,41.83768599906],[-71.433632,41.83763899906],[-71.433434,41.83841299906],[-71.433296,41.83899299906],[-71.433128,41.83946599906],[-71.433044,41.83967599906],[-71.433014,41.83973299906],[-71.432953,41.83987799906],[-71.432861,41.84004199906],[-71.432434,41.84067499906],[-71.432411,41.84071699906],[-71.432281,41.84103399906],[-71.432205,41.84132799906],[-71.432465,41.84135099906],[-71.432755,41.84139299906],[-71.433594,41.84149599906],[-71.433853,41.84153699906],[-71.434227,41.84158299906],[-71.434456,41.84162099906],[-71.43502,41.84165599906],[-71.435173,41.84166299906],[-71.435486,41.84168599906],[-71.43586,41.84171299906],[-71.436783,41.84177399906],[-71.43721,41.84180499906],[-71.437416,41.84183499906],[-71.437691,41.84189199906],[-71.437737,41.84189999906],[-71.438377,41.84206399906],[-71.438576,41.84212099906],[-71.438858,41.84221599906],[-71.439148,41.84232299906],[-71.439438,41.84244499906],[-71.439629,41.84254799906],[-71.439796,41.84265099906],[-71.439873,41.84269299906],[-71.440498,41.84309399906],[-71.440521,41.84287299906],[-71.440521,41.84244899906],[-71.440544,41.84187299906],[-71.440552,41.84131599906],[-71.440567,41.84080899906]]]}}"}, +{"type": "blockgroup", "typeId": 23006, "areaId": 28765, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.445152,41.84258699906],[-71.445114,41.84183499906],[-71.445084,41.84098399906],[-71.445028,41.84043899906],[-71.445023,41.84039299906],[-71.444931,41.83954599906],[-71.44487,41.83896999906],[-71.442924,41.83896999906],[-71.442017,41.83899299906],[-71.441734,41.83795199906],[-71.441528,41.83724999906],[-71.440643,41.83739099906],[-71.440186,41.83746299906],[-71.439728,41.83751699906],[-71.439575,41.83754699906],[-71.43895,41.83764999906],[-71.438797,41.83766899906],[-71.438515,41.83869199906],[-71.438362,41.83928299906],[-71.438278,41.83956499906],[-71.43824,41.83967599906],[-71.439095,41.84002699906],[-71.439804,41.84032099906],[-71.439949,41.84037799906],[-71.440094,41.84044299906],[-71.440552,41.84063299906],[-71.440628,41.84066799906],[-71.441147,41.84088099906],[-71.441643,41.84109099906],[-71.442093,41.84128999906],[-71.442467,41.84144999906],[-71.443192,41.84174699906],[-71.443314,41.84180099906],[-71.444214,41.84218999906],[-71.445152,41.84258699906]]]}}"}, +{"type": "blockgroup", "typeId": 24001, "areaId": 28766, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.440498,41.84309399906],[-71.439873,41.84269299906],[-71.439796,41.84265099906],[-71.439629,41.84254799906],[-71.439438,41.84244499906],[-71.439148,41.84232299906],[-71.438858,41.84221599906],[-71.438576,41.84212099906],[-71.438377,41.84206399906],[-71.437737,41.84189999906],[-71.437691,41.84189199906],[-71.437416,41.84183499906],[-71.43721,41.84180499906],[-71.436783,41.84177399906],[-71.43586,41.84171299906],[-71.435486,41.84168599906],[-71.435173,41.84166299906],[-71.43502,41.84165599906],[-71.434456,41.84162099906],[-71.434227,41.84158299906],[-71.433853,41.84153699906],[-71.433594,41.84149599906],[-71.43315,41.84383999906],[-71.433121,41.84399399906],[-71.433043,41.84446399906],[-71.433033,41.84452399906],[-71.432999,41.84472699906],[-71.432884,41.84543999906],[-71.432816,41.84590099906],[-71.432732,41.84629399906],[-71.432643,41.84678999906],[-71.433313,41.84693899906],[-71.433674,41.84702499906],[-71.434205,41.84719699906],[-71.434475,41.84617899906],[-71.435089,41.84629099906],[-71.435921,41.84641299906],[-71.436798,41.84654199906],[-71.437668,41.84667199906],[-71.438004,41.84550099906],[-71.438029,41.84549499906],[-71.438889,41.84561199906],[-71.439713,41.84572599906],[-71.439896,41.84508499906],[-71.440102,41.84442899906],[-71.440178,41.84420399906],[-71.440323,41.84371899906],[-71.440498,41.84309399906]]]}}"}, +{"type": "blockgroup", "typeId": 24002, "areaId": 28767, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.443214,41.85080299906],[-71.443176,41.85025799906],[-71.443169,41.85018199906],[-71.44313,41.84962499906],[-71.443123,41.84946799906],[-71.443108,41.84930799906],[-71.443085,41.84907199906],[-71.443054,41.84866299906],[-71.443047,41.84851099906],[-71.443016,41.84809099906],[-71.443001,41.84792699906],[-71.442963,41.84749999906],[-71.442947,41.84730499906],[-71.442909,41.84683999906],[-71.442842,41.84602499906],[-71.442802,41.84554699906],[-71.442802,41.84550499906],[-71.442764,41.84513099906],[-71.442764,41.84509999906],[-71.442719,41.84471099906],[-71.442665,41.84401299906],[-71.442604,41.84336499906],[-71.44265,41.84337199906],[-71.442627,41.84295699906],[-71.442581,41.84256699906],[-71.442543,41.84253299906],[-71.442519,41.84252899906],[-71.441986,41.84254799906],[-71.441719,41.84256399906],[-71.441612,41.84255199906],[-71.441536,41.84252199906],[-71.441444,41.84242999906],[-71.441437,41.84220099906],[-71.441456,41.84165099906],[-71.441467,41.84135099906],[-71.441505,41.84125499906],[-71.441643,41.84109099906],[-71.441147,41.84088099906],[-71.440628,41.84066799906],[-71.440552,41.84063299906],[-71.440567,41.84080899906],[-71.440552,41.84131599906],[-71.440544,41.84187299906],[-71.440521,41.84244899906],[-71.440521,41.84287299906],[-71.440498,41.84309399906],[-71.440323,41.84371899906],[-71.440178,41.84420399906],[-71.440102,41.84442899906],[-71.439896,41.84508499906],[-71.439713,41.84572599906],[-71.438889,41.84561199906],[-71.438029,41.84549499906],[-71.438004,41.84550099906],[-71.437668,41.84667199906],[-71.436798,41.84654199906],[-71.435921,41.84641299906],[-71.435089,41.84629099906],[-71.434475,41.84617899906],[-71.434205,41.84719699906],[-71.434339,41.84726999906],[-71.434723,41.84746399906],[-71.435096,41.84763099906],[-71.435555,41.84778599906],[-71.43576,41.84787799906],[-71.436378,41.84814099906],[-71.437065,41.84842299906],[-71.437172,41.84847299906],[-71.437714,41.84869399906],[-71.438004,41.84881199906],[-71.43837,41.84896499906],[-71.438942,41.84920099906],[-71.439522,41.84944199906],[-71.439865,41.84957499906],[-71.440208,41.84970899906],[-71.440559,41.84984599906],[-71.440598,41.84985699906],[-71.441254,41.85009399906],[-71.441422,41.85015499906],[-71.441986,41.85037199906],[-71.442207,41.85045199906],[-71.443024,41.85073499906],[-71.443214,41.85080299906]]]}}"}, +{"type": "blockgroup", "typeId": 24003, "areaId": 28768, "json": "{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.43315,41.84383999906],[-71.433121,41.84399399906],[-71.433043,41.84446399906],[-71.431374,41.84433699906],[-71.430275,41.84425399906],[-71.429374,41.84416899906],[-71.429413,41.84354699906],[-71.429642,41.84334599906],[-71.429634,41.84331099906],[-71.429634,41.84324999906],[-71.429626,41.84312699906],[-71.429619,41.84302499906],[-71.429626,41.84289899906],[-71.429642,41.84286499906],[-71.429672,41.84282299906],[-71.429736,41.84179899906],[-71.429815,41.84131899906],[-71.429871,41.84113699906],[-71.430367,41.84117499906],[-71.43132,41.84125499906],[-71.432205,41.84132799906],[-71.432465,41.84135099906],[-71.432755,41.84139299906],[-71.433594,41.84149599906],[-71.43315,41.84383999906]]]]}"}, +{"type": "blockgroup", "typeId": 24004, "areaId": 28769, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.455905,41.84790299906],[-71.455854,41.84788199906],[-71.455833,41.84787399906],[-71.455391,41.84770199906],[-71.45507,41.84757599906],[-71.454857,41.84747699906],[-71.454079,41.84712199906],[-71.453278,41.84676399906],[-71.452583,41.84644299906],[-71.45211,41.84623299906],[-71.452057,41.84620999906],[-71.451668,41.84600099906],[-71.450943,41.84554299906],[-71.450813,41.84545899906],[-71.450233,41.84509699906],[-71.449684,41.84475299906],[-71.449623,41.84471499906],[-71.449234,41.84447499906],[-71.449135,41.84440999906],[-71.448975,41.84431099906],[-71.448372,41.84402099906],[-71.448158,41.84391799906],[-71.447853,41.84376899906],[-71.447586,41.84365499906],[-71.447334,41.84354799906],[-71.446953,41.84337599906],[-71.44696,41.84364699906],[-71.44696,41.84421199906],[-71.446991,41.84525699906],[-71.447365,41.84631299906],[-71.447601,41.84711499906],[-71.447609,41.84713199906],[-71.447876,41.84812899906],[-71.448044,41.84877399906],[-71.448264,41.84959899906],[-71.448265,41.84961699906],[-71.447754,41.84968199906],[-71.447289,41.84974699906],[-71.446548,41.84983399906],[-71.446468,41.84984399906],[-71.444473,41.85009799906],[-71.443176,41.85025799906],[-71.443214,41.85080299906],[-71.443497,41.85090299906],[-71.443596,41.85094499906],[-71.443687,41.85098299906],[-71.443764,41.85102099906],[-71.443832,41.85106299906],[-71.443909,41.85110099906],[-71.443985,41.85114699906],[-71.444138,41.85123799906],[-71.444374,41.85139099906],[-71.444572,41.85151699906],[-71.444649,41.85155899906],[-71.444824,41.85167699906],[-71.444931,41.85176099906],[-71.444992,41.85180699906],[-71.445068,41.85187499906],[-71.445137,41.85194799906],[-71.445419,41.85227999906],[-71.445496,41.85237099906],[-71.445808,41.85279799906],[-71.446007,41.85306899906],[-71.446075,41.85316799906],[-71.446159,41.85329399906],[-71.44648,41.85375199906],[-71.446561,41.85387399906],[-71.446686,41.85404999906],[-71.447182,41.85374499906],[-71.447913,41.85326099906],[-71.448324,41.85298099906],[-71.449493,41.85218499906],[-71.449569,41.85213299906],[-71.449632,41.85210199906],[-71.449829,41.85199399906],[-71.450654,41.85142499906],[-71.450907,41.85125699906],[-71.450973,41.85121399906],[-71.451263,41.85101999906],[-71.45184,41.85063499906],[-71.452352,41.85029299906],[-71.452509,41.85018799906],[-71.453552,41.84944499906],[-71.454073,41.84913599906],[-71.454503,41.84884599906],[-71.454909,41.84857499906],[-71.455376,41.84826099906],[-71.455554,41.84813999906],[-71.455581,41.84812199906],[-71.455671,41.84805999906],[-71.455753,41.84800599906],[-71.455905,41.84790299906]]]}}"}, +{"type": "blockgroup", "typeId": 24005, "areaId": 28770, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.448265,41.84961699906],[-71.448264,41.84959899906],[-71.448044,41.84877399906],[-71.447876,41.84812899906],[-71.447609,41.84713199906],[-71.447601,41.84711499906],[-71.447365,41.84631299906],[-71.446991,41.84525699906],[-71.44696,41.84421199906],[-71.44696,41.84364699906],[-71.446953,41.84337599906],[-71.446083,41.84298299906],[-71.445816,41.84286499906],[-71.445152,41.84258699906],[-71.444214,41.84218999906],[-71.443314,41.84180099906],[-71.443192,41.84174699906],[-71.442467,41.84144999906],[-71.442093,41.84128999906],[-71.441643,41.84109099906],[-71.441505,41.84125499906],[-71.441467,41.84135099906],[-71.441456,41.84165099906],[-71.441437,41.84220099906],[-71.441444,41.84242999906],[-71.441536,41.84252199906],[-71.441612,41.84255199906],[-71.441719,41.84256399906],[-71.441986,41.84254799906],[-71.442519,41.84252899906],[-71.442543,41.84253299906],[-71.442581,41.84256699906],[-71.442627,41.84295699906],[-71.44265,41.84337199906],[-71.442604,41.84336499906],[-71.442665,41.84401299906],[-71.442719,41.84471099906],[-71.442764,41.84509999906],[-71.442764,41.84513099906],[-71.442802,41.84550499906],[-71.442802,41.84554699906],[-71.442842,41.84602499906],[-71.442909,41.84683999906],[-71.442947,41.84730499906],[-71.442963,41.84749999906],[-71.443001,41.84792699906],[-71.443016,41.84809099906],[-71.443047,41.84851099906],[-71.443054,41.84866299906],[-71.443085,41.84907199906],[-71.443108,41.84930799906],[-71.443123,41.84946799906],[-71.44313,41.84962499906],[-71.443169,41.85018199906],[-71.443176,41.85025799906],[-71.444473,41.85009799906],[-71.446468,41.84984399906],[-71.446548,41.84983399906],[-71.447289,41.84974699906],[-71.447754,41.84968199906],[-71.448265,41.84961699906]]]}}"}, +{"type": "blockgroup", "typeId": 24006, "areaId": 28771, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.46456,41.84206599906],[-71.464503,41.84154899906],[-71.464504,41.84090899906],[-71.464503,41.84079899906],[-71.464255,41.83903299906],[-71.464119,41.83806199906],[-71.464103,41.83800699906],[-71.463875,41.83723799906],[-71.463852,41.83713899906],[-71.463837,41.83703599906],[-71.463753,41.83663199906],[-71.463707,41.83648299906],[-71.463684,41.83637599906],[-71.463654,41.83627299906],[-71.46357,41.83606299906],[-71.463516,41.83595999906],[-71.463486,41.83589299906],[-71.463364,41.83562499906],[-71.463318,41.83550599906],[-71.463226,41.83530399906],[-71.46315,41.83510199906],[-71.463104,41.83499899906],[-71.463043,41.83480499906],[-71.462997,41.83460999906],[-71.462975,41.83444199906],[-71.462967,41.83431599906],[-71.462936,41.83398899906],[-71.463097,41.83399599906],[-71.463442,41.83400599906],[-71.464333,41.83403399906],[-71.464333,41.83393499906],[-71.464355,41.83388499906],[-71.464485,41.83370599906],[-71.464233,41.83358799906],[-71.46386,41.83340499906],[-71.463005,41.83293499906],[-71.462517,41.83266099906],[-71.46241,41.83261499906],[-71.462349,41.83259999906],[-71.462296,41.83258399906],[-71.462242,41.83257299906],[-71.462181,41.83256899906],[-71.462067,41.83258099906],[-71.462006,41.83259599906],[-71.461899,41.83264499906],[-71.461815,41.83270999906],[-71.461806,41.83272699906],[-71.461761,41.83276699906],[-71.461502,41.83303099906],[-71.461456,41.83306499906],[-71.461349,41.83313399906],[-71.461288,41.83315699906],[-71.461159,41.83317599906],[-71.46109,41.83317899906],[-71.460419,41.83317199906],[-71.459633,41.83315699906],[-71.459511,41.83314999906],[-71.45919,41.83313399906],[-71.459053,41.83311499906],[-71.4589,41.83306099906],[-71.458817,41.83302299906],[-71.458694,41.83295799906],[-71.45858,41.83288999906],[-71.458397,41.83277899906],[-71.458171,41.83262799906],[-71.457932,41.83246999906],[-71.457718,41.83233599906],[-71.457581,41.83227199906],[-71.457504,41.83224099906],[-71.457458,41.83222999906],[-71.457321,41.83218799906],[-71.4571,41.83214599906],[-71.45697,41.83212699906],[-71.456764,41.83211099906],[-71.456497,41.83210799906],[-71.456286,41.83271299906],[-71.456114,41.83321099906],[-71.456074,41.83327999906],[-71.455399,41.83447199906],[-71.455399,41.83455299906],[-71.455368,41.83466299906],[-71.455154,41.83500299906],[-71.455101,41.83506399906],[-71.455032,41.83511399906],[-71.454796,41.83523199906],[-71.453629,41.83581899906],[-71.453568,41.83583499906],[-71.453201,41.83586899906],[-71.452911,41.83590699906],[-71.453079,41.83647199906],[-71.453087,41.83656299906],[-71.453094,41.83662799906],[-71.453094,41.83672699906],[-71.453049,41.83687599906],[-71.453011,41.83695199906],[-71.452995,41.83697499906],[-71.452957,41.83702099906],[-71.452911,41.83704399906],[-71.452835,41.83706999906],[-71.452675,41.83711199906],[-71.451469,41.83734499906],[-71.451157,41.83741799906],[-71.451225,41.83762699906],[-71.451607,41.83866099906],[-71.450668,41.83866499906],[-71.449753,41.83866899906],[-71.448914,41.83865699906],[-71.448074,41.83864999906],[-71.447227,41.83864599906],[-71.446903,41.83864299906],[-71.446442,41.83863799906],[-71.445778,41.83863799906],[-71.44577,41.83897799906],[-71.44487,41.83896999906],[-71.444931,41.83954599906],[-71.445023,41.84039299906],[-71.445028,41.84043899906],[-71.445084,41.84098399906],[-71.445114,41.84183499906],[-71.445152,41.84258699906],[-71.445816,41.84286499906],[-71.446083,41.84298299906],[-71.446953,41.84337599906],[-71.447334,41.84354799906],[-71.447586,41.84365499906],[-71.447853,41.84376899906],[-71.448158,41.84391799906],[-71.448372,41.84402099906],[-71.448975,41.84431099906],[-71.449135,41.84440999906],[-71.449234,41.84447499906],[-71.449623,41.84471499906],[-71.449684,41.84475299906],[-71.450233,41.84509699906],[-71.450813,41.84545899906],[-71.450943,41.84554299906],[-71.451668,41.84600099906],[-71.452057,41.84620999906],[-71.45211,41.84623299906],[-71.452583,41.84644299906],[-71.453278,41.84676399906],[-71.454079,41.84712199906],[-71.454857,41.84747699906],[-71.45507,41.84757599906],[-71.455391,41.84770199906],[-71.455833,41.84787399906],[-71.455854,41.84788199906],[-71.455905,41.84790299906],[-71.455992,41.84784399906],[-71.456127,41.84775199906],[-71.457565,41.84678599906],[-71.457629,41.84673099906],[-71.457978,41.84649299906],[-71.45845,41.84619099906],[-71.458656,41.84605399906],[-71.459526,41.84543999906],[-71.459865,41.84525199906],[-71.460292,41.84495699906],[-71.462484,41.84344399906],[-71.463187,41.84295999906],[-71.463531,41.84275099906],[-71.46456,41.84206599906]]]}}"}, +{"type": "blockgroup", "typeId": 25001, "areaId": 28772, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.430458,41.83591799906],[-71.430443,41.83567399906],[-71.430389,41.83534199906],[-71.430351,41.83521999906],[-71.430313,41.83501399906],[-71.430267,41.83437699906],[-71.430237,41.83419399906],[-71.429596,41.83432399906],[-71.429253,41.83439599906],[-71.429001,41.83349999906],[-71.428734,41.83262299906],[-71.428627,41.83218399906],[-71.428619,41.83203199906],[-71.428604,41.83177199906],[-71.428474,41.83161499906],[-71.42836,41.83148999906],[-71.428169,41.83168799906],[-71.427727,41.83216899906],[-71.427689,41.83220699906],[-71.427521,41.83238199906],[-71.427277,41.83265299906],[-71.427109,41.83282899906],[-71.42701,41.83291999906],[-71.426987,41.83293899906],[-71.426895,41.83298499906],[-71.426712,41.83302699906],[-71.426262,41.83309599906],[-71.42572,41.83318699906],[-71.425491,41.83322099906],[-71.424812,41.83333199906],[-71.424156,41.83343899906],[-71.423264,41.83356899906],[-71.421974,41.83376699906],[-71.423027,41.83417099906],[-71.423737,41.83446099906],[-71.424042,41.83457899906],[-71.42485,41.83490399906],[-71.425339,41.83509799906],[-71.425644,41.83521299906],[-71.426117,41.83541099906],[-71.426521,41.83557099906],[-71.427185,41.83584199906],[-71.427353,41.83590699906],[-71.427879,41.83611299906],[-71.428024,41.83614299906],[-71.4282,41.83616599906],[-71.428246,41.83616299906],[-71.428421,41.83615899906],[-71.428963,41.83611699906],[-71.429535,41.83607899906],[-71.429688,41.83607899906],[-71.429825,41.83608199906],[-71.429962,41.83609799906],[-71.43013,41.83613199906],[-71.430328,41.83618199906],[-71.43045,41.83623099906],[-71.430458,41.83609799906],[-71.430458,41.83591799906]]]}}"}, +{"type": "blockgroup", "typeId": 25002, "areaId": 28773, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.42836,41.83148999906],[-71.428314,41.83143199906],[-71.428207,41.83129899906],[-71.427917,41.83084899906],[-71.427765,41.83061999906],[-71.427467,41.83029899906],[-71.42733,41.83015399906],[-71.427162,41.82998699906],[-71.427048,41.82987999906],[-71.426926,41.82976199906],[-71.426788,41.82961999906],[-71.426704,41.82947899906],[-71.426605,41.82925799906],[-71.426315,41.82932299906],[-71.426018,41.82937599906],[-71.425636,41.82945999906],[-71.425438,41.82948299906],[-71.42527,41.82949799906],[-71.425125,41.82950199906],[-71.424919,41.82949799906],[-71.424721,41.82948299906],[-71.424049,41.82936899906],[-71.423607,41.82929199906],[-71.423164,41.82921199906],[-71.4226,41.82911699906],[-71.421883,41.82899099906],[-71.421432,41.82890699906],[-71.421387,41.82889599906],[-71.421127,41.82882699906],[-71.420013,41.82851399906],[-71.419434,41.82833899906],[-71.418556,41.82811699906],[-71.418503,41.82809799906],[-71.418289,41.82803699906],[-71.418152,41.82850299906],[-71.418076,41.82886899906],[-71.418015,41.82954799906],[-71.418009,41.82959399906],[-71.417997,41.82969199906],[-71.417925,41.83028299906],[-71.417862,41.83079499906],[-71.41783,41.83091899906],[-71.417819,41.83096399906],[-71.417793,41.83106599906],[-71.4177,41.83137799906],[-71.417679,41.83144799906],[-71.417503,41.83189399906],[-71.41745,41.83201199906],[-71.418015,41.83220699906],[-71.418152,41.83225599906],[-71.418282,41.83230199906],[-71.418562,41.83241299906],[-71.419136,41.83264199906],[-71.419197,41.83266399906],[-71.419991,41.83297299906],[-71.420555,41.83320199906],[-71.420685,41.83325999906],[-71.42115,41.83343499906],[-71.421661,41.83364499906],[-71.421974,41.83376699906],[-71.423264,41.83356899906],[-71.424156,41.83343899906],[-71.424812,41.83333199906],[-71.425491,41.83322099906],[-71.42572,41.83318699906],[-71.426262,41.83309599906],[-71.426712,41.83302699906],[-71.426895,41.83298499906],[-71.426987,41.83293899906],[-71.42701,41.83291999906],[-71.427109,41.83282899906],[-71.427277,41.83265299906],[-71.427521,41.83238199906],[-71.427689,41.83220699906],[-71.427727,41.83216899906],[-71.428169,41.83168799906],[-71.42836,41.83148999906]]]}}"}, +{"type": "blockgroup", "typeId": 25003, "areaId": 28774, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.439476,41.82456199906],[-71.438622,41.82452399906],[-71.438312,41.82451399906],[-71.438209,41.82451099906],[-71.437775,41.82449699906],[-71.436721,41.82447799906],[-71.436516,41.82447399906],[-71.435806,41.82446299906],[-71.435493,41.82446299906],[-71.434593,41.82437899906],[-71.434242,41.82432599906],[-71.43405,41.82429199906],[-71.433959,41.82427699906],[-71.433895,41.82426699906],[-71.43364,41.82421899906],[-71.43354,41.82426599906],[-71.43351,41.82427999906],[-71.433411,41.82433299906],[-71.433144,41.82445099906],[-71.432838,41.82456199906],[-71.432495,41.82467999906],[-71.431688,41.82487399906],[-71.431465,41.82492799906],[-71.429848,41.82529099906],[-71.429153,41.82544599906],[-71.428597,41.82555899906],[-71.428018,41.82566399906],[-71.427323,41.82576199906],[-71.426675,41.82583299906],[-71.425981,41.82588899906],[-71.425882,41.82589399906],[-71.42568,41.82591199906],[-71.425393,41.82593099906],[-71.425193,41.82593599906],[-71.4247,41.82593599906],[-71.42411,41.82594699906],[-71.423523,41.82598499906],[-71.421516,41.82616799906],[-71.421021,41.82621799906],[-71.420654,41.82622899906],[-71.420364,41.82622899906],[-71.420174,41.82622099906],[-71.42009,41.82621799906],[-71.419815,41.82618299906],[-71.419258,41.82609899906],[-71.419014,41.82605399906],[-71.418839,41.82602299906],[-71.418829,41.82603999906],[-71.418732,41.82630199906],[-71.41863,41.82657599906],[-71.418557,41.82677399906],[-71.418488,41.82695899906],[-71.418474,41.82699699906],[-71.418442,41.82708499906],[-71.418274,41.82758299906],[-71.418218,41.82773999906],[-71.418152,41.82792499906],[-71.418129,41.82799099906],[-71.418289,41.82803699906],[-71.418503,41.82809799906],[-71.418556,41.82811699906],[-71.419434,41.82833899906],[-71.420013,41.82851399906],[-71.421127,41.82882699906],[-71.421387,41.82889599906],[-71.421432,41.82890699906],[-71.421883,41.82899099906],[-71.4226,41.82911699906],[-71.423164,41.82921199906],[-71.423607,41.82929199906],[-71.424049,41.82936899906],[-71.424721,41.82948299906],[-71.424919,41.82949799906],[-71.425125,41.82950199906],[-71.42527,41.82949799906],[-71.425438,41.82948299906],[-71.425636,41.82945999906],[-71.426018,41.82937599906],[-71.426315,41.82932299906],[-71.426605,41.82925799906],[-71.426704,41.82947899906],[-71.426788,41.82961999906],[-71.426926,41.82976199906],[-71.427048,41.82987999906],[-71.427162,41.82998699906],[-71.42733,41.83015399906],[-71.427467,41.83029899906],[-71.427765,41.83061999906],[-71.427917,41.83084899906],[-71.428207,41.83129899906],[-71.428314,41.83143199906],[-71.42836,41.83148999906],[-71.428474,41.83138699906],[-71.42865,41.83129099906],[-71.429222,41.83102399906],[-71.429504,41.83089799906],[-71.429718,41.83080299906],[-71.430504,41.83044399906],[-71.431412,41.83003999906],[-71.43177,41.82987199906],[-71.431966,41.82975699906],[-71.433304,41.82899899906],[-71.434456,41.82834999906],[-71.435158,41.82796499906],[-71.43544,41.82783099906],[-71.43615,41.82751799906],[-71.436401,41.82741199906],[-71.436707,41.82728199906],[-71.437286,41.82701499906],[-71.437553,41.82689699906],[-71.437851,41.82676699906],[-71.438026,41.82667899906],[-71.438087,41.82665299906],[-71.438148,41.82661399906],[-71.438316,41.82650799906],[-71.438576,41.82630899906],[-71.438652,41.82623299906],[-71.438759,41.82612999906],[-71.438911,41.82595799906],[-71.438995,41.82583199906],[-71.439041,41.82575999906],[-71.439178,41.82552299906],[-71.439285,41.82527499906],[-71.439308,41.82520699906],[-71.439369,41.82502399906],[-71.439396,41.82489999906],[-71.43943,41.82474499906],[-71.439476,41.82456199906]]]}}"}, +{"type": "blockgroup", "typeId": 26001, "areaId": 28775, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.425644,41.83521299906],[-71.425339,41.83509799906],[-71.42485,41.83490399906],[-71.424042,41.83457899906],[-71.423737,41.83446099906],[-71.423027,41.83417099906],[-71.421974,41.83376699906],[-71.421661,41.83364499906],[-71.42115,41.83343499906],[-71.420685,41.83325999906],[-71.420555,41.83320199906],[-71.419991,41.83297299906],[-71.419197,41.83266399906],[-71.419136,41.83264199906],[-71.418562,41.83241299906],[-71.418282,41.83230199906],[-71.418152,41.83225599906],[-71.418015,41.83220699906],[-71.41745,41.83201199906],[-71.417149,41.83272099906],[-71.417099,41.83283999906],[-71.416885,41.83332099906],[-71.416817,41.83349599906],[-71.416549,41.83414199906],[-71.416489,41.83427399906],[-71.416374,41.83456399906],[-71.416321,41.83465599906],[-71.416283,41.83473599906],[-71.416319,41.83474499906],[-71.416367,41.83476299906],[-71.416756,41.83490399906],[-71.416954,41.83497599906],[-71.417564,41.83521299906],[-71.417946,41.83535799906],[-71.418205,41.83546399906],[-71.418402,41.83554699906],[-71.4188,41.83571199906],[-71.419662,41.83606699906],[-71.420084,41.83624199906],[-71.420242,41.83630799906],[-71.421478,41.83618199906],[-71.421928,41.83612399906],[-71.422623,41.83603699906],[-71.424156,41.83561699906],[-71.424614,41.83549499906],[-71.424889,41.83541899906],[-71.425354,41.83529299906],[-71.425644,41.83521299906]]]}}"}, +{"type": "blockgroup", "typeId": 26002, "areaId": 28776, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.425252,41.83850899906],[-71.425186,41.83837499906],[-71.424965,41.83782999906],[-71.424782,41.83733399906],[-71.424591,41.83681099906],[-71.4244,41.83628099906],[-71.424156,41.83561699906],[-71.422623,41.83603699906],[-71.421928,41.83612399906],[-71.421478,41.83618199906],[-71.420242,41.83630799906],[-71.420084,41.83624199906],[-71.419662,41.83606699906],[-71.4188,41.83571199906],[-71.418402,41.83554699906],[-71.418205,41.83546399906],[-71.417946,41.83535799906],[-71.417564,41.83521299906],[-71.416954,41.83497599906],[-71.416756,41.83490399906],[-71.416367,41.83476299906],[-71.416319,41.83474499906],[-71.416283,41.83473599906],[-71.41622,41.83485599906],[-71.416168,41.83495299906],[-71.416008,41.83531999906],[-71.415863,41.83558999906],[-71.415703,41.83584199906],[-71.415512,41.83610499906],[-71.415443,41.83618199906],[-71.415489,41.83639099906],[-71.415596,41.83664699906],[-71.415688,41.83683799906],[-71.415825,41.83706999906],[-71.41642,41.83811599906],[-71.416679,41.83858899906],[-71.416801,41.83881399906],[-71.417007,41.83919899906],[-71.417778,41.84059099906],[-71.417801,41.84063099906],[-71.417953,41.84063299906],[-71.418861,41.84063299906],[-71.418968,41.84068299906],[-71.419128,41.84066399906],[-71.419327,41.84067499906],[-71.419449,41.84068699906],[-71.419556,41.84070999906],[-71.419578,41.84071899906],[-71.419609,41.84072499906],[-71.419861,41.84081299906],[-71.420273,41.84016399906],[-71.420998,41.83904999906],[-71.421178,41.83875899906],[-71.421249,41.83864599906],[-71.421321,41.83854399906],[-71.421401,41.83843399906],[-71.421901,41.83859999906],[-71.422401,41.83837899906],[-71.423004,41.83825699906],[-71.423703,41.83777699906],[-71.423845,41.83783599906],[-71.423904,41.83785999906],[-71.424194,41.83801299906],[-71.424774,41.83835999906],[-71.424934,41.83846299906],[-71.425049,41.83855799906],[-71.425252,41.83850899906]]]}}"}, +{"type": "blockgroup", "typeId": 26003, "areaId": 28777, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.43045,41.83623099906],[-71.430328,41.83618199906],[-71.43013,41.83613199906],[-71.429962,41.83609799906],[-71.429825,41.83608199906],[-71.429688,41.83607899906],[-71.429535,41.83607899906],[-71.428963,41.83611699906],[-71.428421,41.83615899906],[-71.428246,41.83616299906],[-71.4282,41.83616599906],[-71.428024,41.83614299906],[-71.427879,41.83611299906],[-71.427353,41.83590699906],[-71.427185,41.83584199906],[-71.426521,41.83557099906],[-71.426117,41.83541099906],[-71.425644,41.83521299906],[-71.425354,41.83529299906],[-71.424889,41.83541899906],[-71.424614,41.83549499906],[-71.424156,41.83561699906],[-71.4244,41.83628099906],[-71.424591,41.83681099906],[-71.424782,41.83733399906],[-71.424965,41.83782999906],[-71.425186,41.83837499906],[-71.425252,41.83850899906],[-71.425049,41.83855799906],[-71.425079,41.83858099906],[-71.425814,41.83923999906],[-71.425827,41.83925599906],[-71.426399,41.83988999906],[-71.42688,41.84040499906],[-71.427032,41.84056899906],[-71.427091,41.84064299906],[-71.427155,41.84072099906],[-71.427231,41.84085099906],[-71.427261,41.84091899906],[-71.427444,41.84090799906],[-71.427605,41.84092299906],[-71.428505,41.84101899906],[-71.428833,41.84021799906],[-71.428848,41.84016799906],[-71.429092,41.83956499906],[-71.429169,41.83938599906],[-71.429359,41.83889799906],[-71.429611,41.83832899906],[-71.429626,41.83828399906],[-71.429878,41.83764999906],[-71.429924,41.83752799906],[-71.430069,41.83718899906],[-71.43042,41.83632999906],[-71.43045,41.83623099906]]]}}"}, +{"type": "blockgroup", "typeId": 27001, "areaId": 28778, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.43084,41.84762599906],[-71.430153,41.84704199906],[-71.429672,41.84661499906],[-71.429565,41.84651599906],[-71.429337,41.84633599906],[-71.428993,41.84605399906],[-71.428902,41.84592799906],[-71.428726,41.84554299906],[-71.428658,41.84538999906],[-71.428169,41.84433399906],[-71.427887,41.84373499906],[-71.427864,41.84368499906],[-71.427849,41.84363899906],[-71.42778,41.84347499906],[-71.427757,41.84325799906],[-71.427742,41.84317399906],[-71.427704,41.84295299906],[-71.427629,41.84254599906],[-71.427582,41.84228899906],[-71.427513,41.84188499906],[-71.427498,41.84175499906],[-71.426659,41.84225799906],[-71.426636,41.84227799906],[-71.426283,41.84250299906],[-71.425507,41.84300199906],[-71.424889,41.84339899906],[-71.423714,41.84418499906],[-71.42421,41.84462399906],[-71.424255,41.84466199906],[-71.424553,41.84491699906],[-71.424652,41.84498999906],[-71.424789,41.84504699906],[-71.425056,41.84512699906],[-71.425446,41.84521899906],[-71.425717,41.84528699906],[-71.426223,41.84541299906],[-71.427063,41.84562299906],[-71.427582,41.84574099906],[-71.426834,41.84632899906],[-71.426498,41.84661099906],[-71.426811,41.84680199906],[-71.427299,41.84704599906],[-71.427071,41.84727499906],[-71.426628,41.84773599906],[-71.426079,41.84831199906],[-71.425545,41.84886899906],[-71.425514,41.84889999906],[-71.425095,41.84933099906],[-71.425011,41.84942199906],[-71.42485,41.84956399906],[-71.424744,41.84963599906],[-71.42469,41.84967399906],[-71.424454,41.84979199906],[-71.424507,41.84985699906],[-71.425247,41.85069299906],[-71.425537,41.85106299906],[-71.425735,41.85133399906],[-71.425779,41.85140099906],[-71.42588,41.85155499906],[-71.425995,41.85174599906],[-71.42614,41.85200099906],[-71.426262,41.85223799906],[-71.426376,41.85248199906],[-71.42659,41.85296999906],[-71.426628,41.85308099906],[-71.426773,41.85311899906],[-71.427612,41.85335199906],[-71.427704,41.85337799906],[-71.428055,41.85347399906],[-71.42836,41.85355799906],[-71.428786,41.85366599906],[-71.428825,41.85367599906],[-71.429092,41.85313799906],[-71.429314,41.85267599906],[-71.42939,41.85250699906],[-71.429482,41.85230299906],[-71.42955,41.85219199906],[-71.429344,41.85209299906],[-71.429131,41.85188699906],[-71.429047,41.85184499906],[-71.42897,41.85184099906],[-71.428917,41.85184099906],[-71.428787,41.85180699906],[-71.428528,41.85166199906],[-71.428219,41.85147899906],[-71.4282,41.85145999906],[-71.428276,41.85139499906],[-71.428596,41.85118499906],[-71.428705,41.85111999906],[-71.428908,41.85100099906],[-71.429169,41.85084899906],[-71.429703,41.85052499906],[-71.42923,41.85008599906],[-71.428802,41.84967399906],[-71.428284,41.84917799906],[-71.428795,41.84884999906],[-71.429565,41.84839199906],[-71.43026,41.84797299906],[-71.43084,41.84762599906]]]}}"}, +{"type": "blockgroup", "typeId": 27002, "areaId": 28779, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.427582,41.84574099906],[-71.427063,41.84562299906],[-71.426223,41.84541299906],[-71.425717,41.84528699906],[-71.425446,41.84521899906],[-71.425056,41.84512699906],[-71.424789,41.84504699906],[-71.424652,41.84498999906],[-71.424553,41.84491699906],[-71.424255,41.84466199906],[-71.42421,41.84462399906],[-71.423714,41.84418499906],[-71.422668,41.84485599906],[-71.42215,41.84433699906],[-71.421608,41.84380299906],[-71.422554,41.84317799906],[-71.422485,41.84312099906],[-71.421997,41.84268199906],[-71.421631,41.84235399906],[-71.421417,41.84215499906],[-71.421379,41.84212899906],[-71.420403,41.84129299906],[-71.419861,41.84081299906],[-71.419609,41.84072499906],[-71.419578,41.84071899906],[-71.419556,41.84070999906],[-71.419449,41.84068699906],[-71.419327,41.84067499906],[-71.419128,41.84066399906],[-71.418968,41.84068299906],[-71.418861,41.84063299906],[-71.417953,41.84063299906],[-71.418009,41.84073499906],[-71.41803,41.84077499906],[-71.418266,41.84120599906],[-71.418968,41.84245299906],[-71.419472,41.84332999906],[-71.419563,41.84349399906],[-71.419637,41.84362099906],[-71.419953,41.84415699906],[-71.420311,41.84476499906],[-71.420647,41.84528399906],[-71.420914,41.84566499906],[-71.421509,41.84642799906],[-71.421959,41.84695799906],[-71.422676,41.84777099906],[-71.423584,41.84881199906],[-71.4244,41.84973499906],[-71.424454,41.84979199906],[-71.42469,41.84967399906],[-71.424744,41.84963599906],[-71.42485,41.84956399906],[-71.425011,41.84942199906],[-71.425095,41.84933099906],[-71.425514,41.84889999906],[-71.425545,41.84886899906],[-71.426079,41.84831199906],[-71.426628,41.84773599906],[-71.427071,41.84727499906],[-71.427299,41.84704599906],[-71.426811,41.84680199906],[-71.426498,41.84661099906],[-71.426834,41.84632899906],[-71.427582,41.84574099906]]]}}"}, +{"type": "blockgroup", "typeId": 27003, "areaId": 28780, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.427498,41.84175499906],[-71.427467,41.84161399906],[-71.427406,41.84129699906],[-71.427361,41.84112899906],[-71.427315,41.84101899906],[-71.427261,41.84091899906],[-71.427231,41.84085099906],[-71.427155,41.84072099906],[-71.427091,41.84064299906],[-71.427032,41.84056899906],[-71.42688,41.84040499906],[-71.426399,41.83988999906],[-71.425827,41.83925599906],[-71.425814,41.83923999906],[-71.425079,41.83858099906],[-71.425049,41.83855799906],[-71.424934,41.83846299906],[-71.424774,41.83835999906],[-71.424194,41.83801299906],[-71.423904,41.83785999906],[-71.423845,41.83783599906],[-71.423703,41.83777699906],[-71.423004,41.83825699906],[-71.422401,41.83837899906],[-71.421901,41.83859999906],[-71.421401,41.83843399906],[-71.421321,41.83854399906],[-71.421249,41.83864599906],[-71.421178,41.83875899906],[-71.420998,41.83904999906],[-71.420273,41.84016399906],[-71.419861,41.84081299906],[-71.420403,41.84129299906],[-71.421379,41.84212899906],[-71.421417,41.84215499906],[-71.421631,41.84235399906],[-71.421997,41.84268199906],[-71.422485,41.84312099906],[-71.422554,41.84317799906],[-71.421608,41.84380299906],[-71.42215,41.84433699906],[-71.422668,41.84485599906],[-71.423714,41.84418499906],[-71.424889,41.84339899906],[-71.425507,41.84300199906],[-71.426283,41.84250299906],[-71.426636,41.84227799906],[-71.426659,41.84225799906],[-71.427498,41.84175499906]]]}}"}, +{"type": "blockgroup", "typeId": 27004, "areaId": 28781, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.433043,41.84446399906],[-71.431374,41.84433699906],[-71.430275,41.84425399906],[-71.429374,41.84416899906],[-71.429413,41.84354699906],[-71.429642,41.84334599906],[-71.429634,41.84331099906],[-71.429634,41.84324999906],[-71.429626,41.84312699906],[-71.429619,41.84302499906],[-71.429626,41.84289899906],[-71.429642,41.84286499906],[-71.429672,41.84282299906],[-71.429736,41.84179899906],[-71.429815,41.84131899906],[-71.429871,41.84113699906],[-71.42972,41.84112399906],[-71.42942,41.84109899906],[-71.428825,41.84105299906],[-71.428505,41.84101899906],[-71.427605,41.84092299906],[-71.427444,41.84090799906],[-71.427261,41.84091899906],[-71.427315,41.84101899906],[-71.427361,41.84112899906],[-71.427406,41.84129699906],[-71.427467,41.84161399906],[-71.427498,41.84175499906],[-71.427513,41.84188499906],[-71.427582,41.84228899906],[-71.427629,41.84254599906],[-71.427704,41.84295299906],[-71.427742,41.84317399906],[-71.427757,41.84325799906],[-71.42778,41.84347499906],[-71.427849,41.84363899906],[-71.427864,41.84368499906],[-71.427887,41.84373499906],[-71.428169,41.84433399906],[-71.428658,41.84538999906],[-71.428726,41.84554299906],[-71.428902,41.84592799906],[-71.428993,41.84605399906],[-71.429771,41.84619099906],[-71.430145,41.84625599906],[-71.431061,41.84644299906],[-71.431831,41.84659999906],[-71.432643,41.84678999906],[-71.432732,41.84629399906],[-71.432816,41.84590099906],[-71.432884,41.84543999906],[-71.432999,41.84472699906],[-71.433033,41.84452399906],[-71.433043,41.84446399906]]]}}"}, +{"type": "blockgroup", "typeId": 28011, "areaId": 28782, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.446686,41.85404999906],[-71.446561,41.85387399906],[-71.44648,41.85375199906],[-71.446159,41.85329399906],[-71.446075,41.85316799906],[-71.446007,41.85306899906],[-71.445808,41.85279799906],[-71.445496,41.85237099906],[-71.445419,41.85227999906],[-71.445137,41.85194799906],[-71.445068,41.85187499906],[-71.444992,41.85180699906],[-71.444931,41.85176099906],[-71.444824,41.85167699906],[-71.444649,41.85155899906],[-71.444572,41.85151699906],[-71.444374,41.85139099906],[-71.444138,41.85123799906],[-71.443985,41.85114699906],[-71.443909,41.85110099906],[-71.443832,41.85106299906],[-71.443764,41.85102099906],[-71.443687,41.85098299906],[-71.443596,41.85094499906],[-71.443497,41.85090299906],[-71.443214,41.85080299906],[-71.443024,41.85073499906],[-71.442207,41.85045199906],[-71.441986,41.85037199906],[-71.441422,41.85015499906],[-71.441254,41.85009399906],[-71.440598,41.84985699906],[-71.440559,41.84984599906],[-71.440208,41.84970899906],[-71.439865,41.84957499906],[-71.439522,41.84944199906],[-71.438942,41.84920099906],[-71.438965,41.84927699906],[-71.438988,41.84933099906],[-71.438988,41.84952199906],[-71.438972,41.84959799906],[-71.438835,41.84994899906],[-71.438515,41.85060499906],[-71.438202,41.85132199906],[-71.438004,41.85179099906],[-71.437958,41.85192499906],[-71.43795,41.85201599906],[-71.437912,41.85210399906],[-71.437637,41.85234499906],[-71.437141,41.85275299906],[-71.437279,41.85283999906],[-71.437622,41.85307699906],[-71.43792,41.85327099906],[-71.43822,41.85346999906],[-71.438789,41.85384799906],[-71.439163,41.85409499906],[-71.439316,41.85419799906],[-71.439636,41.85440399906],[-71.439781,41.85450399906],[-71.440437,41.85493099906],[-71.441116,41.85537699906],[-71.441429,41.85556399906],[-71.441566,41.85565199906],[-71.441696,41.85573599906],[-71.441933,41.85589599906],[-71.442245,41.85608699906],[-71.442527,41.85626199906],[-71.44265,41.85633899906],[-71.442812,41.85644399906],[-71.442986,41.85655599906],[-71.443067,41.85646399906],[-71.443975,41.85587499906],[-71.444373,41.85560699906],[-71.444482,41.85553299906],[-71.445351,41.85494799906],[-71.445633,41.85475899906],[-71.446281,41.85432099906],[-71.446686,41.85404999906]]]}}"}, +{"type": "blockgroup", "typeId": 28012, "areaId": 28783, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.438988,41.84933099906],[-71.438965,41.84927699906],[-71.438942,41.84920099906],[-71.43837,41.84896499906],[-71.438004,41.84881199906],[-71.437714,41.84869399906],[-71.437172,41.84847299906],[-71.437065,41.84842299906],[-71.436378,41.84814099906],[-71.43576,41.84787799906],[-71.435555,41.84778599906],[-71.435096,41.84763099906],[-71.434723,41.84746399906],[-71.434339,41.84726999906],[-71.434205,41.84719699906],[-71.433674,41.84702499906],[-71.433313,41.84693899906],[-71.432643,41.84678999906],[-71.431831,41.84659999906],[-71.431061,41.84644299906],[-71.430145,41.84625599906],[-71.429771,41.84619099906],[-71.428993,41.84605399906],[-71.429337,41.84633599906],[-71.429565,41.84651599906],[-71.429672,41.84661499906],[-71.430153,41.84704199906],[-71.43084,41.84762599906],[-71.431114,41.84786199906],[-71.431358,41.84807999906],[-71.43158,41.84828599906],[-71.431839,41.84850299906],[-71.43232,41.84892299906],[-71.432747,41.84929299906],[-71.432884,41.84941499906],[-71.43335,41.84982299906],[-71.433815,41.85022699906],[-71.434099,41.85046999906],[-71.434158,41.85052099906],[-71.43454,41.85083799906],[-71.435036,41.85126499906],[-71.435516,41.85164999906],[-71.435669,41.85177999906],[-71.43586,41.85190999906],[-71.435921,41.85195199906],[-71.437141,41.85275299906],[-71.437637,41.85234499906],[-71.437912,41.85210399906],[-71.43795,41.85201599906],[-71.437958,41.85192499906],[-71.438004,41.85179099906],[-71.438202,41.85132199906],[-71.438515,41.85060499906],[-71.438835,41.84994899906],[-71.438972,41.84959799906],[-71.438988,41.84952199906],[-71.438988,41.84933099906]]]}}"}, +{"type": "blockgroup", "typeId": 28021, "areaId": 28784, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.442986,41.85655599906],[-71.442812,41.85644399906],[-71.44265,41.85633899906],[-71.442527,41.85626199906],[-71.442245,41.85608699906],[-71.441933,41.85589599906],[-71.441696,41.85573599906],[-71.441566,41.85565199906],[-71.441429,41.85556399906],[-71.441116,41.85537699906],[-71.440437,41.85493099906],[-71.439781,41.85450399906],[-71.439636,41.85440399906],[-71.439316,41.85419799906],[-71.439163,41.85409499906],[-71.438789,41.85384799906],[-71.43822,41.85346999906],[-71.43792,41.85327099906],[-71.437622,41.85307699906],[-71.437279,41.85283999906],[-71.437141,41.85275299906],[-71.435921,41.85195199906],[-71.43586,41.85190999906],[-71.435669,41.85177999906],[-71.435516,41.85164999906],[-71.435036,41.85126499906],[-71.43454,41.85083799906],[-71.434158,41.85052099906],[-71.434099,41.85046999906],[-71.433815,41.85022699906],[-71.432869,41.85082599906],[-71.432106,41.85129199906],[-71.431381,41.85174899906],[-71.431145,41.85190199906],[-71.43119,41.85194799906],[-71.431404,41.85208499906],[-71.433388,41.85272199906],[-71.43309,41.85334799906],[-71.432808,41.85398099906],[-71.432678,41.85427099906],[-71.432602,41.85445799906],[-71.432587,41.85451099906],[-71.431931,41.85444299906],[-71.431702,41.85440099906],[-71.431679,41.85439099906],[-71.431618,41.85437399906],[-71.430992,41.85421399906],[-71.430687,41.85414099906],[-71.430069,41.85398499906],[-71.428825,41.85367599906],[-71.428786,41.85366599906],[-71.42836,41.85355799906],[-71.428055,41.85347399906],[-71.427704,41.85337799906],[-71.427612,41.85335199906],[-71.426773,41.85311899906],[-71.426628,41.85308099906],[-71.426781,41.85346199906],[-71.426842,41.85363799906],[-71.427032,41.85414499906],[-71.427238,41.85464499906],[-71.427406,41.85501099906],[-71.42762,41.85539599906],[-71.42794,41.85599499906],[-71.428146,41.85635399906],[-71.428195,41.85643999906],[-71.428472,41.85692899906],[-71.428513,41.85700199906],[-71.428642,41.85723899906],[-71.428807,41.85757199906],[-71.428856,41.85766999906],[-71.429024,41.85804699906],[-71.429094,41.85823499906],[-71.429115,41.85829199906],[-71.429199,41.85853599906],[-71.429291,41.85878399906],[-71.429367,41.85900499906],[-71.429451,41.85922999906],[-71.429527,41.85945499906],[-71.429665,41.85994699906],[-71.429779,41.86047699906],[-71.429832,41.86075999906],[-71.429851,41.86088799906],[-71.429906,41.86125499906],[-71.430219,41.86129499906],[-71.430801,41.86137299906],[-71.433534,41.86174099906],[-71.434868,41.86183099906],[-71.434998,41.86182399906],[-71.436171,41.86107399906],[-71.436276,41.86104299906],[-71.436311,41.86100099906],[-71.436432,41.86089699906],[-71.437001,41.86051999906],[-71.438758,41.85935799906],[-71.442353,41.85696799906],[-71.442986,41.85655599906]]]}}"}, +{"type": "blockgroup", "typeId": 28022, "areaId": 28785, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.433815,41.85022699906],[-71.43335,41.84982299906],[-71.432884,41.84941499906],[-71.432747,41.84929299906],[-71.43232,41.84892299906],[-71.431839,41.84850299906],[-71.43158,41.84828599906],[-71.431358,41.84807999906],[-71.431114,41.84786199906],[-71.43084,41.84762599906],[-71.43026,41.84797299906],[-71.429565,41.84839199906],[-71.428795,41.84884999906],[-71.428284,41.84917799906],[-71.428802,41.84967399906],[-71.42923,41.85008599906],[-71.429703,41.85052499906],[-71.429169,41.85084899906],[-71.428908,41.85100099906],[-71.428705,41.85111999906],[-71.428596,41.85118499906],[-71.428276,41.85139499906],[-71.4282,41.85145999906],[-71.428219,41.85147899906],[-71.428528,41.85166199906],[-71.428787,41.85180699906],[-71.428917,41.85184099906],[-71.42897,41.85184099906],[-71.429047,41.85184499906],[-71.429131,41.85188699906],[-71.429344,41.85209299906],[-71.42955,41.85219199906],[-71.429482,41.85230299906],[-71.42939,41.85250699906],[-71.429314,41.85267599906],[-71.429092,41.85313799906],[-71.428825,41.85367599906],[-71.430069,41.85398499906],[-71.430687,41.85414099906],[-71.430992,41.85421399906],[-71.431618,41.85437399906],[-71.431679,41.85439099906],[-71.431702,41.85440099906],[-71.431931,41.85444299906],[-71.432587,41.85451099906],[-71.432602,41.85445799906],[-71.432678,41.85427099906],[-71.432808,41.85398099906],[-71.43309,41.85334799906],[-71.433388,41.85272199906],[-71.431404,41.85208499906],[-71.43119,41.85194799906],[-71.431145,41.85190199906],[-71.431381,41.85174899906],[-71.432106,41.85129199906],[-71.432869,41.85082599906],[-71.433815,41.85022699906]]]}}"}, +{"type": "blockgroup", "typeId": 29001, "areaId": 28786, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.422155,41.86026599906],[-71.422106,41.86013299906],[-71.422,41.85986699906],[-71.421845,41.85943099906],[-71.421768,41.85919599906],[-71.421684,41.85893199906],[-71.421593,41.85861599906],[-71.42144,41.85811199906],[-71.421341,41.85781099906],[-71.421188,41.85731099906],[-71.42112,41.85707499906],[-71.421097,41.85697899906],[-71.421043,41.85680399906],[-71.420464,41.85689499906],[-71.419548,41.85701399906],[-71.419319,41.85703999906],[-71.419029,41.85708999906],[-71.418945,41.85710099906],[-71.418823,41.85709799906],[-71.418602,41.85708199906],[-71.417992,41.85701799906],[-71.417839,41.85699099906],[-71.41733,41.85684099906],[-71.415657,41.85628099906],[-71.415092,41.85609099906],[-71.415018,41.85606499906],[-71.414787,41.85598399906],[-71.414253,41.85579299906],[-71.414215,41.85591499906],[-71.412521,41.85525899906],[-71.411667,41.85493899906],[-71.412025,41.85442399906],[-71.412338,41.85398099906],[-71.412422,41.85382799906],[-71.412491,41.85366399906],[-71.412628,41.85319099906],[-71.412857,41.85238599906],[-71.41301,41.85177199906],[-71.413025,41.85170399906],[-71.413033,41.85164999906],[-71.413437,41.85010499906],[-71.413528,41.84980399906],[-71.413574,41.84971199906],[-71.413773,41.84935799906],[-71.414024,41.84895299906],[-71.414124,41.84880099906],[-71.414413,41.84831199906],[-71.414711,41.84784299906],[-71.413933,41.84748799906],[-71.413414,41.84724399906],[-71.413226,41.84715399906],[-71.413146,41.84711599906],[-71.413107,41.84709699906],[-71.412971,41.84703199906],[-71.412689,41.84689699906],[-71.412187,41.84665599906],[-71.412125,41.84662599906],[-71.411934,41.84652699906],[-71.411751,41.84640499906],[-71.411568,41.84629099906],[-71.411415,41.84619499906],[-71.411331,41.84611499906],[-71.411301,41.84608099906],[-71.411186,41.84598499906],[-71.411224,41.84782799906],[-71.411224,41.84823199906],[-71.411217,41.84844599906],[-71.411171,41.84894899906],[-71.411156,41.84902999906],[-71.411133,41.84921299906],[-71.411018,41.84974699906],[-71.410873,41.85026599906],[-71.41066,41.85077699906],[-71.410539,41.85103899906],[-71.410507,41.85110899906],[-71.410286,41.85150499906],[-71.410149,41.85172999906],[-71.410027,41.85190999906],[-71.409966,41.85198599906],[-71.409882,41.85210799906],[-71.409729,41.85231399906],[-71.409538,41.85254699906],[-71.408966,41.85314199906],[-71.408463,41.85364499906],[-71.408058,41.85403399906],[-71.40712,41.85495799906],[-71.406654,41.85542699906],[-71.406593,41.85548399906],[-71.406527,41.85555099906],[-71.406219,41.85584999906],[-71.406059,41.85602599906],[-71.405792,41.85633899906],[-71.405639,41.85654199906],[-71.405543,41.85667199906],[-71.406674,41.85665099906],[-71.406901,41.85664699906],[-71.407445,41.85663599906],[-71.407507,41.85663499906],[-71.40766,41.85663199906],[-71.407866,41.85662699906],[-71.407912,41.85662599906],[-71.409275,41.85660099906],[-71.409576,41.85692599906],[-71.409656,41.85701299906],[-71.410073,41.85746299906],[-71.410357,41.85776999906],[-71.410793,41.85864199906],[-71.410779,41.85874799906],[-71.410861,41.85888999906],[-71.410996,41.85893099906],[-71.411057,41.85891299906],[-71.411386,41.85892699906],[-71.413269,41.85913499906],[-71.415871,41.85948899906],[-71.416544,41.85956599906],[-71.417418,41.85966599906],[-71.417548,41.85968099906],[-71.417714,41.85970099906],[-71.41979,41.85995799906],[-71.41987,41.85996799906],[-71.420241,41.86001699906],[-71.422155,41.86026599906]]]}}"}, +{"type": "blockgroup", "typeId": 29002, "areaId": 28787, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.421043,41.85680399906],[-71.421005,41.85667799906],[-71.420937,41.85636099906],[-71.420914,41.85623199906],[-71.42083,41.85571699906],[-71.420818,41.85561199906],[-71.420792,41.85538499906],[-71.420781,41.85531699906],[-71.420746,41.85510299906],[-71.420708,41.85493099906],[-71.420692,41.85484699906],[-71.420654,41.85464099906],[-71.420601,41.85427499906],[-71.420547,41.85395799906],[-71.420494,41.85361099906],[-71.420418,41.85310699906],[-71.419983,41.85324899906],[-71.419663,41.85334599906],[-71.418755,41.85362199906],[-71.418022,41.85382799906],[-71.417793,41.85390499906],[-71.417442,41.85400799906],[-71.417366,41.85401899906],[-71.417282,41.85401499906],[-71.417152,41.85399199906],[-71.416916,41.85395099906],[-71.416473,41.85386999906],[-71.416023,41.85379399906],[-71.415718,41.85374499906],[-71.415348,41.85367799906],[-71.415024,41.85361899906],[-71.414291,41.85349299906],[-71.414085,41.85345799906],[-71.413574,41.85336299906],[-71.413368,41.85332499906],[-71.413063,41.85327499906],[-71.412865,41.85323699906],[-71.412628,41.85319099906],[-71.412491,41.85366399906],[-71.412422,41.85382799906],[-71.412338,41.85398099906],[-71.412025,41.85442399906],[-71.411667,41.85493899906],[-71.412521,41.85525899906],[-71.414215,41.85591499906],[-71.414253,41.85579299906],[-71.414787,41.85598399906],[-71.415018,41.85606499906],[-71.415092,41.85609099906],[-71.415657,41.85628099906],[-71.41733,41.85684099906],[-71.417839,41.85699099906],[-71.417992,41.85701799906],[-71.418602,41.85708199906],[-71.418823,41.85709799906],[-71.418945,41.85710099906],[-71.419029,41.85708999906],[-71.419319,41.85703999906],[-71.419548,41.85701399906],[-71.420464,41.85689499906],[-71.421043,41.85680399906]]]}}"}, +{"type": "blockgroup", "typeId": 29003, "areaId": 28788, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.420418,41.85310699906],[-71.420395,41.85291699906],[-71.420364,41.85275999906],[-71.420319,41.85245499906],[-71.420288,41.85230999906],[-71.420258,41.85207699906],[-71.420212,41.85177599906],[-71.420212,41.85174199906],[-71.420158,41.85140599906],[-71.420143,41.85133399906],[-71.42012,41.85115799906],[-71.420044,41.85070799906],[-71.419975,41.85026199906],[-71.419556,41.85008199906],[-71.419044,41.84985399906],[-71.418762,41.84972799906],[-71.418365,41.84954799906],[-71.418205,41.84947999906],[-71.416611,41.84872399906],[-71.416588,41.84871699906],[-71.415977,41.84842299906],[-71.415337,41.84812899906],[-71.414711,41.84784299906],[-71.414413,41.84831199906],[-71.414124,41.84880099906],[-71.414024,41.84895299906],[-71.413773,41.84935799906],[-71.413574,41.84971199906],[-71.413528,41.84980399906],[-71.413437,41.85010499906],[-71.413033,41.85164999906],[-71.413025,41.85170399906],[-71.41301,41.85177199906],[-71.412857,41.85238599906],[-71.412628,41.85319099906],[-71.412865,41.85323699906],[-71.413063,41.85327499906],[-71.413368,41.85332499906],[-71.413574,41.85336299906],[-71.414085,41.85345799906],[-71.414291,41.85349299906],[-71.415024,41.85361899906],[-71.415348,41.85367799906],[-71.415718,41.85374499906],[-71.416023,41.85379399906],[-71.416473,41.85386999906],[-71.416916,41.85395099906],[-71.417152,41.85399199906],[-71.417282,41.85401499906],[-71.417366,41.85401899906],[-71.417442,41.85400799906],[-71.417793,41.85390499906],[-71.418022,41.85382799906],[-71.418755,41.85362199906],[-71.419663,41.85334599906],[-71.419983,41.85324899906],[-71.420418,41.85310699906]]]}}"}, +{"type": "blockgroup", "typeId": 29004, "areaId": 28789, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.426628,41.85308099906],[-71.42659,41.85296999906],[-71.426376,41.85248199906],[-71.426262,41.85223799906],[-71.42614,41.85200099906],[-71.425995,41.85174599906],[-71.42588,41.85155499906],[-71.425779,41.85140099906],[-71.425735,41.85133399906],[-71.425537,41.85106299906],[-71.425247,41.85069299906],[-71.424507,41.84985699906],[-71.424454,41.84979199906],[-71.4244,41.84973499906],[-71.423584,41.84881199906],[-71.422676,41.84777099906],[-71.421959,41.84695799906],[-71.421509,41.84642799906],[-71.420914,41.84566499906],[-71.420647,41.84528399906],[-71.420311,41.84476499906],[-71.419953,41.84415699906],[-71.419637,41.84362099906],[-71.419563,41.84349399906],[-71.419472,41.84332999906],[-71.418968,41.84245299906],[-71.418266,41.84120599906],[-71.41803,41.84077499906],[-71.418009,41.84073499906],[-71.417953,41.84063299906],[-71.417801,41.84063099906],[-71.417778,41.84059099906],[-71.417007,41.83919899906],[-71.416801,41.83881399906],[-71.416679,41.83858899906],[-71.41642,41.83811599906],[-71.415825,41.83706999906],[-71.415688,41.83683799906],[-71.415596,41.83664699906],[-71.415489,41.83639099906],[-71.415443,41.83618199906],[-71.415268,41.83637599906],[-71.415112,41.83652699906],[-71.415047,41.83659099906],[-71.415021,41.83661599906],[-71.41497,41.83666599906],[-71.414841,41.83677299906],[-71.414566,41.83698999906],[-71.414492,41.83703799906],[-71.413812,41.83748099906],[-71.413727,41.83753599906],[-71.412643,41.83818099906],[-71.41259,41.83822299906],[-71.412376,41.83837099906],[-71.412071,41.83861899906],[-71.41188,41.83880199906],[-71.411652,41.83908799906],[-71.411545,41.83924499906],[-71.41143,41.83943599906],[-71.411331,41.83963799906],[-71.411232,41.83990499906],[-71.411179,41.84012599906],[-71.411148,41.84032399906],[-71.411148,41.84044299906],[-71.41114,41.84056099906],[-71.41114,41.84083899906],[-71.411133,41.84092699906],[-71.411146,41.84176499906],[-71.411171,41.84336899906],[-71.411179,41.84355899906],[-71.411156,41.84405499906],[-71.411158,41.84417299906],[-71.411186,41.84598499906],[-71.411301,41.84608099906],[-71.411331,41.84611499906],[-71.411415,41.84619499906],[-71.411568,41.84629099906],[-71.411751,41.84640499906],[-71.411934,41.84652699906],[-71.412125,41.84662599906],[-71.412187,41.84665599906],[-71.412689,41.84689699906],[-71.412971,41.84703199906],[-71.413107,41.84709699906],[-71.413146,41.84711599906],[-71.413226,41.84715399906],[-71.413414,41.84724399906],[-71.413933,41.84748799906],[-71.414711,41.84784299906],[-71.415337,41.84812899906],[-71.415977,41.84842299906],[-71.416588,41.84871699906],[-71.416611,41.84872399906],[-71.418205,41.84947999906],[-71.418365,41.84954799906],[-71.418762,41.84972799906],[-71.419044,41.84985399906],[-71.419556,41.85008199906],[-71.419975,41.85026199906],[-71.420204,41.85037599906],[-71.420769,41.85061299906],[-71.421417,41.85089899906],[-71.422844,41.85150499906],[-71.423355,41.85172999906],[-71.423874,41.85195899906],[-71.424469,41.85221499906],[-71.425117,41.85248899906],[-71.425446,41.85262699906],[-71.425659,41.85272599906],[-71.425804,41.85278699906],[-71.425914,41.85283599906],[-71.426018,41.85288199906],[-71.426338,41.85300799906],[-71.426376,41.85301199906],[-71.426483,41.85304099906],[-71.426628,41.85308099906]]]}}"}, +{"type": "blockgroup", "typeId": 29005, "areaId": 28790, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.429906,41.86125499906],[-71.429851,41.86088799906],[-71.429832,41.86075999906],[-71.429779,41.86047699906],[-71.429665,41.85994699906],[-71.429527,41.85945499906],[-71.429451,41.85922999906],[-71.429367,41.85900499906],[-71.429291,41.85878399906],[-71.429199,41.85853599906],[-71.429115,41.85829199906],[-71.429094,41.85823499906],[-71.429024,41.85804699906],[-71.428856,41.85766999906],[-71.428807,41.85757199906],[-71.428642,41.85723899906],[-71.428513,41.85700199906],[-71.428472,41.85692899906],[-71.428195,41.85643999906],[-71.428146,41.85635399906],[-71.42794,41.85599499906],[-71.42762,41.85539599906],[-71.427406,41.85501099906],[-71.427238,41.85464499906],[-71.427032,41.85414499906],[-71.426842,41.85363799906],[-71.426781,41.85346199906],[-71.426628,41.85308099906],[-71.426483,41.85304099906],[-71.426376,41.85301199906],[-71.426338,41.85300799906],[-71.426018,41.85288199906],[-71.425914,41.85283599906],[-71.425804,41.85278699906],[-71.425659,41.85272599906],[-71.425446,41.85262699906],[-71.425117,41.85248899906],[-71.424469,41.85221499906],[-71.423874,41.85195899906],[-71.423355,41.85172999906],[-71.422844,41.85150499906],[-71.421417,41.85089899906],[-71.420769,41.85061299906],[-71.420204,41.85037599906],[-71.419975,41.85026199906],[-71.420044,41.85070799906],[-71.42012,41.85115799906],[-71.420143,41.85133399906],[-71.420158,41.85140599906],[-71.420212,41.85174199906],[-71.420212,41.85177599906],[-71.420258,41.85207699906],[-71.420288,41.85230999906],[-71.420319,41.85245499906],[-71.420364,41.85275999906],[-71.420395,41.85291699906],[-71.420418,41.85310699906],[-71.420494,41.85361099906],[-71.420547,41.85395799906],[-71.420601,41.85427499906],[-71.420654,41.85464099906],[-71.420692,41.85484699906],[-71.420708,41.85493099906],[-71.420746,41.85510299906],[-71.420781,41.85531699906],[-71.420792,41.85538499906],[-71.420818,41.85561199906],[-71.42083,41.85571699906],[-71.420914,41.85623199906],[-71.420937,41.85636099906],[-71.421005,41.85667799906],[-71.421043,41.85680399906],[-71.421097,41.85697899906],[-71.42112,41.85707499906],[-71.421188,41.85731099906],[-71.421341,41.85781099906],[-71.42144,41.85811199906],[-71.421593,41.85861599906],[-71.421684,41.85893199906],[-71.421768,41.85919599906],[-71.421845,41.85943099906],[-71.422,41.85986699906],[-71.422106,41.86013299906],[-71.422155,41.86026599906],[-71.423076,41.86038599906],[-71.425243,41.86066799906],[-71.425545,41.86070699906],[-71.425964,41.86075199906],[-71.427173,41.86091199906],[-71.427762,41.86098499906],[-71.428873,41.86111699906],[-71.428901,41.86111999906],[-71.42916,41.86114699906],[-71.429764,41.86121399906],[-71.429906,41.86125499906]]]}}"}, +{"type": "blockgroup", "typeId": 31001, "areaId": 28791, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.405457,41.83582699906],[-71.405449,41.83579999906],[-71.405449,41.83570499906],[-71.405441,41.83566999906],[-71.405441,41.83560599906],[-71.404106,41.83566299906],[-71.402138,41.83569299906],[-71.401566,41.83570899906],[-71.401543,41.83584599906],[-71.401176,41.83657799906],[-71.400818,41.83731799906],[-71.400581,41.83778399906],[-71.40052,41.83790199906],[-71.400505,41.83793299906],[-71.400337,41.83827899906],[-71.400101,41.83876799906],[-71.399826,41.83931699906],[-71.399643,41.83969499906],[-71.399307,41.84036599906],[-71.398987,41.84101899906],[-71.40023,41.84138099906],[-71.400856,41.84155699906],[-71.401794,41.84181199906],[-71.402893,41.84212099906],[-71.40329,41.84135099906],[-71.403351,41.84123199906],[-71.403595,41.84076299906],[-71.404022,41.83984799906],[-71.404037,41.83980599906],[-71.40406,41.83971399906],[-71.404068,41.83967999906],[-71.40419,41.83879899906],[-71.404199,41.83878199906],[-71.404267,41.83818199906],[-71.404292,41.83795899906],[-71.404373,41.83726499906],[-71.404394,41.83703099906],[-71.404411,41.83680699906],[-71.404419,41.83678799906],[-71.404419,41.83676899906],[-71.404442,41.83669299906],[-71.404465,41.83666599906],[-71.404518,41.83661699906],[-71.404572,41.83657799906],[-71.404625,41.83654799906],[-71.404869,41.83642999906],[-71.405083,41.83630799906],[-71.405129,41.83627699906],[-71.405266,41.83618899906],[-71.405373,41.83609399906],[-71.405411,41.83603999906],[-71.405449,41.83591499906],[-71.405449,41.83588399906],[-71.405457,41.83585699906],[-71.405457,41.83582699906]]]}}"}, +{"type": "blockgroup", "typeId": 31002, "areaId": 28792, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.409531,41.83834499906],[-71.409225,41.83834799906],[-71.408188,41.83835599906],[-71.40799,41.83836399906],[-71.407745,41.83838699906],[-71.40761,41.83840299906],[-71.406325,41.83855099906],[-71.405923,41.83859799906],[-71.405751,41.83861799906],[-71.405686,41.83862499906],[-71.405609,41.83863399906],[-71.404502,41.83876299906],[-71.40419,41.83879899906],[-71.404068,41.83967999906],[-71.40406,41.83971399906],[-71.404037,41.83980599906],[-71.404022,41.83984799906],[-71.403595,41.84076299906],[-71.403351,41.84123199906],[-71.40329,41.84135099906],[-71.402893,41.84212099906],[-71.403465,41.84229999906],[-71.404816,41.84219699906],[-71.407013,41.84200699906],[-71.407318,41.84198699906],[-71.407837,41.84195299906],[-71.407982,41.84199099906],[-71.40815,41.84171699906],[-71.408295,41.84147999906],[-71.408356,41.84133899906],[-71.408722,41.84062999906],[-71.409126,41.83951199906],[-71.409164,41.83941999906],[-71.409332,41.83897799906],[-71.409485,41.83853499906],[-71.409531,41.83834499906]]]}}"}, +{"type": "blockgroup", "typeId": 31003, "areaId": 28793, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.41745,41.83201199906],[-71.417224,41.83195399906],[-71.417196,41.83194899906],[-71.416878,41.83189399906],[-71.416595,41.83185599906],[-71.416441,41.83183999906],[-71.41629,41.83182499906],[-71.415981,41.83179399906],[-71.415573,41.83175299906],[-71.414497,41.83167599906],[-71.414131,41.83165399906],[-71.414026,41.83164299906],[-71.412804,41.83151999906],[-71.41247,41.83148699906],[-71.412418,41.83148199906],[-71.412346,41.83147399906],[-71.41229,41.83146799906],[-71.411621,41.83139399906],[-71.411507,41.83139399906],[-71.411447,41.83140199906],[-71.411331,41.83141699906],[-71.410629,41.83152799906],[-71.410663,41.83160299906],[-71.410759,41.83181399906],[-71.410812,41.83192799906],[-71.41095,41.83229799906],[-71.410835,41.83234799906],[-71.410789,41.83237799906],[-71.410759,41.83244299906],[-71.410744,41.83253499906],[-71.410713,41.83306899906],[-71.41069,41.83320599906],[-71.41066,41.83331299906],[-71.410545,41.83356899906],[-71.410172,41.83435399906],[-71.410149,41.83442299906],[-71.410095,41.83484299906],[-71.410065,41.83532699906],[-71.410049,41.83562099906],[-71.40995,41.83641799906],[-71.409904,41.83677299906],[-71.409882,41.83689499906],[-71.409767,41.83738699906],[-71.409698,41.83766599906],[-71.40963,41.83796299906],[-71.409531,41.83834499906],[-71.409485,41.83853499906],[-71.409332,41.83897799906],[-71.409164,41.83941999906],[-71.409126,41.83951199906],[-71.408722,41.84062999906],[-71.408356,41.84133899906],[-71.408295,41.84147999906],[-71.40815,41.84171699906],[-71.407982,41.84199099906],[-71.408203,41.84231599906],[-71.408386,41.84271599906],[-71.40847,41.84294499906],[-71.408691,41.84352499906],[-71.408714,41.84360099906],[-71.40873,41.84363599906],[-71.408791,41.84371899906],[-71.408974,41.84389499906],[-71.408989,41.84391399906],[-71.409454,41.84435699906],[-71.40947,41.84437599906],[-71.409897,41.84477599906],[-71.410042,41.84491299906],[-71.41042,41.84528099906],[-71.41095,41.84579499906],[-71.410988,41.84582099906],[-71.411186,41.84598499906],[-71.411158,41.84417299906],[-71.411156,41.84405499906],[-71.411179,41.84355899906],[-71.411171,41.84336899906],[-71.411146,41.84176499906],[-71.411133,41.84092699906],[-71.41114,41.84083899906],[-71.41114,41.84056099906],[-71.411148,41.84044299906],[-71.411148,41.84032399906],[-71.411179,41.84012599906],[-71.411232,41.83990499906],[-71.411331,41.83963799906],[-71.41143,41.83943599906],[-71.411545,41.83924499906],[-71.411652,41.83908799906],[-71.41188,41.83880199906],[-71.412071,41.83861899906],[-71.412376,41.83837099906],[-71.41259,41.83822299906],[-71.412643,41.83818099906],[-71.413727,41.83753599906],[-71.413812,41.83748099906],[-71.414492,41.83703799906],[-71.414566,41.83698999906],[-71.414841,41.83677299906],[-71.41497,41.83666599906],[-71.415021,41.83661599906],[-71.415047,41.83659099906],[-71.415112,41.83652699906],[-71.415268,41.83637599906],[-71.415443,41.83618199906],[-71.415512,41.83610499906],[-71.415703,41.83584199906],[-71.415863,41.83558999906],[-71.416008,41.83531999906],[-71.416168,41.83495299906],[-71.41622,41.83485599906],[-71.416283,41.83473599906],[-71.416321,41.83465599906],[-71.416374,41.83456399906],[-71.416489,41.83427399906],[-71.416549,41.83414199906],[-71.416817,41.83349599906],[-71.416885,41.83332099906],[-71.417099,41.83283999906],[-71.417149,41.83272099906],[-71.41745,41.83201199906]]]}}"}, +{"type": "blockgroup", "typeId": 31004, "areaId": 28794, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.41095,41.83229799906],[-71.410812,41.83192799906],[-71.410759,41.83181399906],[-71.410663,41.83160299906],[-71.410629,41.83152799906],[-71.410408,41.83085599906],[-71.410393,41.83082599906],[-71.410248,41.83040999906],[-71.410156,41.83013899906],[-71.409988,41.82966999906],[-71.409813,41.82916399906],[-71.409729,41.82890699906],[-71.409172,41.82895699906],[-71.408879,41.82898799906],[-71.408379,41.82904099906],[-71.408006,41.82908899906],[-71.407557,41.82914899906],[-71.407906,41.83040599906],[-71.408028,41.83101699906],[-71.408203,41.83195499906],[-71.408279,41.83267999906],[-71.408294,41.83297799906],[-71.408357,41.83370999906],[-71.408363,41.83391699906],[-71.408088,41.83399699906],[-71.4076,41.83399999906],[-71.407433,41.83400299906],[-71.406364,41.83402599906],[-71.405167,41.83410999906],[-71.405289,41.83419799906],[-71.40535,41.83476599906],[-71.405441,41.83560599906],[-71.405441,41.83566999906],[-71.405449,41.83570499906],[-71.405449,41.83579999906],[-71.405457,41.83582699906],[-71.405457,41.83585699906],[-71.405449,41.83588399906],[-71.405449,41.83591499906],[-71.405411,41.83603999906],[-71.405373,41.83609399906],[-71.405266,41.83618899906],[-71.405129,41.83627699906],[-71.405083,41.83630799906],[-71.404869,41.83642999906],[-71.404625,41.83654799906],[-71.404572,41.83657799906],[-71.404518,41.83661699906],[-71.404465,41.83666599906],[-71.404442,41.83669299906],[-71.404419,41.83676899906],[-71.404419,41.83678799906],[-71.404411,41.83680699906],[-71.404394,41.83703099906],[-71.404373,41.83726499906],[-71.404292,41.83795899906],[-71.404267,41.83818199906],[-71.404199,41.83878199906],[-71.40419,41.83879899906],[-71.404502,41.83876299906],[-71.405609,41.83863399906],[-71.405686,41.83862499906],[-71.405751,41.83861799906],[-71.405923,41.83859799906],[-71.406325,41.83855099906],[-71.40761,41.83840299906],[-71.407745,41.83838699906],[-71.40799,41.83836399906],[-71.408188,41.83835599906],[-71.409225,41.83834799906],[-71.409531,41.83834499906],[-71.40963,41.83796299906],[-71.409698,41.83766599906],[-71.409767,41.83738699906],[-71.409882,41.83689499906],[-71.409904,41.83677299906],[-71.40995,41.83641799906],[-71.410049,41.83562099906],[-71.410065,41.83532699906],[-71.410095,41.83484299906],[-71.410149,41.83442299906],[-71.410172,41.83435399906],[-71.410545,41.83356899906],[-71.41066,41.83331299906],[-71.41069,41.83320599906],[-71.410713,41.83306899906],[-71.410744,41.83253499906],[-71.410759,41.83244299906],[-71.410789,41.83237799906],[-71.410835,41.83234799906],[-71.41095,41.83229799906]]]}}"}, +{"type": "blockgroup", "typeId": 32001, "areaId": 28795, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.397209,41.84090399906],[-71.396248,41.84101899906],[-71.395363,41.84112199906],[-71.394447,41.84117899906],[-71.392586,41.84130899906],[-71.392715,41.84303699906],[-71.392632,41.84329199906],[-71.392454,41.84372999906],[-71.392319,41.84406299906],[-71.392128,41.84455499906],[-71.392067,41.84468499906],[-71.391785,41.84533699906],[-71.391632,41.84569499906],[-71.391518,41.84594699906],[-71.391258,41.84656899906],[-71.391632,41.84665299906],[-71.391762,41.84667199906],[-71.392334,41.84672499906],[-71.393288,41.84683199906],[-71.393692,41.84687799906],[-71.394157,41.84693899906],[-71.394447,41.84696999906],[-71.394653,41.84697699906],[-71.39476,41.84696999906],[-71.394852,41.84650799906],[-71.394859,41.84646599906],[-71.395004,41.84613799906],[-71.395065,41.84598899906],[-71.395126,41.84584799906],[-71.395279,41.84552399906],[-71.395317,41.84544799906],[-71.395325,41.84541699906],[-71.395615,41.84484099906],[-71.395645,41.84479099906],[-71.395958,41.84422299906],[-71.396317,41.84354399906],[-71.396538,41.84310899906],[-71.396591,41.84301399906],[-71.396873,41.84251799906],[-71.396873,41.84173599906],[-71.396973,41.84150299906],[-71.397049,41.84131999906],[-71.397209,41.84090399906]]]}}"}, +{"type": "blockgroup", "typeId": 32002, "areaId": 28796, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.402893,41.84212099906],[-71.401794,41.84181199906],[-71.400856,41.84155699906],[-71.40023,41.84138099906],[-71.398987,41.84101899906],[-71.39814,41.84079399906],[-71.397331,41.84057999906],[-71.397209,41.84090399906],[-71.397049,41.84131999906],[-71.396973,41.84150299906],[-71.396873,41.84173599906],[-71.396873,41.84251799906],[-71.396591,41.84301399906],[-71.396538,41.84310899906],[-71.396317,41.84354399906],[-71.397545,41.84389899906],[-71.397621,41.84375399906],[-71.398659,41.84402799906],[-71.399536,41.84425699906],[-71.39959,41.84414699906],[-71.400574,41.84442899906],[-71.401894,41.84478799906],[-71.402008,41.84445199906],[-71.402016,41.84442899906],[-71.402176,41.84398699906],[-71.402344,41.84351299906],[-71.402481,41.84304399906],[-71.402504,41.84295699906],[-71.402893,41.84212099906]]]}}"}, +{"type": "blockgroup", "typeId": 32003, "areaId": 28797, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.401894,41.84478799906],[-71.400574,41.84442899906],[-71.39959,41.84414699906],[-71.399536,41.84425699906],[-71.398659,41.84402799906],[-71.397621,41.84375399906],[-71.397545,41.84389899906],[-71.396317,41.84354399906],[-71.395958,41.84422299906],[-71.395645,41.84479099906],[-71.395615,41.84484099906],[-71.395325,41.84541699906],[-71.395317,41.84544799906],[-71.395279,41.84552399906],[-71.395126,41.84584799906],[-71.395065,41.84598899906],[-71.395004,41.84613799906],[-71.394859,41.84646599906],[-71.394852,41.84650799906],[-71.39476,41.84696999906],[-71.394905,41.84696599906],[-71.396057,41.84691199906],[-71.397713,41.84684399906],[-71.397995,41.84681699906],[-71.398323,41.84675999906],[-71.3993,41.84662199906],[-71.400269,41.84649999906],[-71.400734,41.84645499906],[-71.400772,41.84639699906],[-71.401077,41.84597799906],[-71.401413,41.84551199906],[-71.401489,41.84540199906],[-71.401855,41.84489099906],[-71.401894,41.84478799906]]]}}"}, +{"type": "blockgroup", "typeId": 32004, "areaId": 28798, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.407982,41.84199099906],[-71.407837,41.84195299906],[-71.407318,41.84198699906],[-71.407013,41.84200699906],[-71.404816,41.84219699906],[-71.403465,41.84229999906],[-71.402893,41.84212099906],[-71.402504,41.84295699906],[-71.402481,41.84304399906],[-71.402344,41.84351299906],[-71.402176,41.84398699906],[-71.402016,41.84442899906],[-71.402008,41.84445199906],[-71.401894,41.84478799906],[-71.401855,41.84489099906],[-71.401489,41.84540199906],[-71.401413,41.84551199906],[-71.401077,41.84597799906],[-71.400772,41.84639699906],[-71.400734,41.84645499906],[-71.401375,41.84650799906],[-71.403671,41.84665299906],[-71.404602,41.84672199906],[-71.405052,41.84675999906],[-71.405205,41.84678299906],[-71.405449,41.84639399906],[-71.405922,41.84556999906],[-71.406593,41.84439799906],[-71.407219,41.84327699906],[-71.407791,41.84231199906],[-71.407967,41.84200999906],[-71.407982,41.84199099906]]]}}"}, +{"type": "blockgroup", "typeId": 33001, "areaId": 28799, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.400757,41.85399599906],[-71.40065,41.85396299906],[-71.400612,41.85403099906],[-71.400551,41.85417599906],[-71.400108,41.85404599906],[-71.39949,41.85384399906],[-71.398636,41.85355399906],[-71.39785,41.85329799906],[-71.396782,41.85293999906],[-71.396149,41.85272199906],[-71.395714,41.85274499906],[-71.395142,41.85276799906],[-71.393143,41.85289799906],[-71.392601,41.85276799906],[-71.391037,41.85232499906],[-71.390915,41.85229099906],[-71.390266,41.85211599906],[-71.389949,41.85228299906],[-71.389595,41.85246999906],[-71.388893,41.85278699906],[-71.389,41.85286699906],[-71.389305,41.85311499906],[-71.389679,41.85348099906],[-71.389809,41.85362999906],[-71.390152,41.85403099906],[-71.390244,41.85415999906],[-71.390297,41.85422499906],[-71.390442,41.85444999906],[-71.39061,41.85469799906],[-71.390785,41.85500299906],[-71.390999,41.85543399906],[-71.391373,41.85616699906],[-71.391449,41.85621999906],[-71.391266,41.85659399906],[-71.391243,41.85665099906],[-71.391212,41.85670499906],[-71.391101,41.85694499906],[-71.392067,41.85692499906],[-71.392508,41.85691499906],[-71.39368,41.85689499906],[-71.395553,41.85685999906],[-71.399018,41.85679999906],[-71.399248,41.85679299906],[-71.399456,41.85678599906],[-71.399596,41.85678199906],[-71.399666,41.85661699906],[-71.400146,41.85547999906],[-71.400154,41.85544999906],[-71.400757,41.85399599906]]]}}"}, +{"type": "blockgroup", "typeId": 33002, "areaId": 28800, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.397537,41.84954499906],[-71.396652,41.84921299906],[-71.395943,41.84893799906],[-71.395187,41.84865199906],[-71.393921,41.84828899906],[-71.392746,41.84796099906],[-71.392433,41.84860999906],[-71.392113,41.84925099906],[-71.391907,41.84966699906],[-71.391785,41.84988399906],[-71.391624,41.85018199906],[-71.391472,41.85051299906],[-71.391449,41.85056699906],[-71.391174,41.85109299906],[-71.390884,41.85166499906],[-71.3908,41.85183299906],[-71.390739,41.85186399906],[-71.390533,41.85197399906],[-71.390266,41.85211599906],[-71.390915,41.85229099906],[-71.391037,41.85232499906],[-71.392601,41.85276799906],[-71.393143,41.85289799906],[-71.395142,41.85276799906],[-71.395714,41.85274499906],[-71.395798,41.85188699906],[-71.395836,41.85189799906],[-71.395958,41.85172299906],[-71.396233,41.85129499906],[-71.396629,41.85069699906],[-71.397034,41.85008999906],[-71.397484,41.84959399906],[-71.397537,41.84954499906]]]}}"}, +{"type": "blockgroup", "typeId": 33003, "areaId": 28801, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.405205,41.84678299906],[-71.405052,41.84675999906],[-71.404602,41.84672199906],[-71.403671,41.84665299906],[-71.401375,41.84650799906],[-71.400734,41.84645499906],[-71.400269,41.84649999906],[-71.3993,41.84662199906],[-71.398323,41.84675999906],[-71.397995,41.84681699906],[-71.397713,41.84684399906],[-71.396057,41.84691199906],[-71.394905,41.84696599906],[-71.39476,41.84696999906],[-71.394653,41.84697699906],[-71.394447,41.84696999906],[-71.394157,41.84693899906],[-71.393692,41.84687799906],[-71.393288,41.84683199906],[-71.393059,41.84730899906],[-71.393044,41.84732799906],[-71.392746,41.84796099906],[-71.393921,41.84828899906],[-71.395187,41.84865199906],[-71.395943,41.84893799906],[-71.396652,41.84921299906],[-71.397537,41.84954499906],[-71.397484,41.84959399906],[-71.397034,41.85008999906],[-71.398247,41.85052499906],[-71.399117,41.85082999906],[-71.400093,41.85115799906],[-71.400436,41.85055499906],[-71.401512,41.85091399906],[-71.402306,41.85119199906],[-71.402252,41.85127799906],[-71.402382,41.85132199906],[-71.40255,41.85105099906],[-71.403145,41.85003699906],[-71.403526,41.84941899906],[-71.403763,41.84904499906],[-71.403992,41.84867099906],[-71.404045,41.84858699906],[-71.404686,41.84759899906],[-71.405205,41.84678299906]]]}}"}, +{"type": "blockgroup", "typeId": 33004, "areaId": 28802, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.411224,41.84782799906],[-71.411186,41.84598499906],[-71.410988,41.84582099906],[-71.41095,41.84579499906],[-71.41042,41.84528099906],[-71.410042,41.84491299906],[-71.409897,41.84477599906],[-71.40947,41.84437599906],[-71.409454,41.84435699906],[-71.408989,41.84391399906],[-71.408974,41.84389499906],[-71.408791,41.84371899906],[-71.40873,41.84363599906],[-71.408714,41.84360099906],[-71.408691,41.84352499906],[-71.40847,41.84294499906],[-71.408386,41.84271599906],[-71.408203,41.84231599906],[-71.407982,41.84199099906],[-71.407967,41.84200999906],[-71.407791,41.84231199906],[-71.407219,41.84327699906],[-71.406593,41.84439799906],[-71.405922,41.84556999906],[-71.405449,41.84639399906],[-71.405205,41.84678299906],[-71.404686,41.84759899906],[-71.404045,41.84858699906],[-71.403992,41.84867099906],[-71.403763,41.84904499906],[-71.403526,41.84941899906],[-71.403145,41.85003699906],[-71.40255,41.85105099906],[-71.402382,41.85132199906],[-71.402252,41.85127799906],[-71.402306,41.85119199906],[-71.401512,41.85091399906],[-71.400436,41.85055499906],[-71.400093,41.85115799906],[-71.399117,41.85082999906],[-71.398247,41.85052499906],[-71.397034,41.85008999906],[-71.396629,41.85069699906],[-71.396233,41.85129499906],[-71.395958,41.85172299906],[-71.395836,41.85189799906],[-71.395798,41.85188699906],[-71.395714,41.85274499906],[-71.396149,41.85272199906],[-71.396782,41.85293999906],[-71.39785,41.85329799906],[-71.398636,41.85355399906],[-71.39949,41.85384399906],[-71.400108,41.85404599906],[-71.400551,41.85417599906],[-71.400612,41.85403099906],[-71.40065,41.85396299906],[-71.400757,41.85399599906],[-71.400154,41.85544999906],[-71.400146,41.85547999906],[-71.399666,41.85661699906],[-71.399596,41.85678199906],[-71.399724,41.85678499906],[-71.400613,41.85676699906],[-71.401424,41.85675799906],[-71.401977,41.85675399906],[-71.402504,41.85673199906],[-71.403805,41.85668599906],[-71.404518,41.85669199906],[-71.405073,41.85668199906],[-71.405328,41.85667699906],[-71.405543,41.85667199906],[-71.405639,41.85654199906],[-71.405792,41.85633899906],[-71.406059,41.85602599906],[-71.406219,41.85584999906],[-71.406527,41.85555099906],[-71.406593,41.85548399906],[-71.406654,41.85542699906],[-71.40712,41.85495799906],[-71.408058,41.85403399906],[-71.408463,41.85364499906],[-71.408966,41.85314199906],[-71.409538,41.85254699906],[-71.409729,41.85231399906],[-71.409882,41.85210799906],[-71.409966,41.85198599906],[-71.410027,41.85190999906],[-71.410149,41.85172999906],[-71.410286,41.85150499906],[-71.410507,41.85110899906],[-71.410539,41.85103899906],[-71.41066,41.85077699906],[-71.410873,41.85026599906],[-71.411018,41.84974699906],[-71.411133,41.84921299906],[-71.411156,41.84902999906],[-71.411171,41.84894899906],[-71.411217,41.84844599906],[-71.411224,41.84823199906],[-71.411224,41.84782799906]]]}}"}, +{"type": "blockgroup", "typeId": 34001, "areaId": 28803, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.393288,41.84683199906],[-71.392334,41.84672499906],[-71.391762,41.84667199906],[-71.391632,41.84665299906],[-71.391258,41.84656899906],[-71.391518,41.84594699906],[-71.391632,41.84569499906],[-71.391785,41.84533699906],[-71.392067,41.84468499906],[-71.392128,41.84455499906],[-71.392319,41.84406299906],[-71.392454,41.84372999906],[-71.392632,41.84329199906],[-71.392715,41.84303699906],[-71.392586,41.84130899906],[-71.392548,41.84084699906],[-71.392494,41.84028199906],[-71.392456,41.83970999906],[-71.392441,41.83950799906],[-71.392441,41.83939699906],[-71.392334,41.83900099906],[-71.391968,41.83904299906],[-71.391747,41.83904299906],[-71.391647,41.83903499906],[-71.391266,41.83902399906],[-71.391182,41.83901999906],[-71.390839,41.83898199906],[-71.390526,41.83890199906],[-71.389694,41.83902399906],[-71.389313,41.83908099906],[-71.388496,41.83918799906],[-71.388634,41.83979399906],[-71.388657,41.83985899906],[-71.388664,41.83990899906],[-71.388832,41.84052699906],[-71.388855,41.84062599906],[-71.389008,41.84121699906],[-71.389091,41.84153699906],[-71.38913,41.84180499906],[-71.389145,41.84189599906],[-71.389183,41.84226199906],[-71.389198,41.84283399906],[-71.389198,41.84429599906],[-71.389191,41.84479499906],[-71.389191,41.84580599906],[-71.389061,41.84574499906],[-71.388878,41.84571799906],[-71.388214,41.84564599906],[-71.387215,41.84553899906],[-71.387009,41.84551999906],[-71.386734,41.84555799906],[-71.386772,41.84616099906],[-71.386772,41.84645299906],[-71.384965,41.84739999906],[-71.382621,41.84739999906],[-71.381239,41.84802699906],[-71.380875,41.84797599906],[-71.378964,41.84770899906],[-71.377934,41.84718099906],[-71.37226,41.84415699906],[-71.37227,41.84473799906],[-71.372299,41.84649999906],[-71.372333,41.84687099906],[-71.372416,41.84872399906],[-71.372334,41.85054799906],[-71.374526,41.85713599906],[-71.374577,41.85714499906],[-71.374682,41.85717199906],[-71.374697,41.85717799906],[-71.374776,41.85720799906],[-71.374852,41.85725199906],[-71.374914,41.85730499906],[-71.374989,41.85738999906],[-71.375002,41.85741399906],[-71.375021,41.85744899906],[-71.376699,41.85749999906],[-71.376841,41.85747999906],[-71.379003,41.85747799906],[-71.379111,41.85746799906],[-71.381585,41.85712799906],[-71.383719,41.85708599906],[-71.387417,41.85701699906],[-71.387581,41.85701599906],[-71.389452,41.85697799906],[-71.390266,41.85696299906],[-71.391101,41.85694499906],[-71.391212,41.85670499906],[-71.391243,41.85665099906],[-71.391266,41.85659399906],[-71.391449,41.85621999906],[-71.391373,41.85616699906],[-71.390999,41.85543399906],[-71.390785,41.85500299906],[-71.39061,41.85469799906],[-71.390442,41.85444999906],[-71.390297,41.85422499906],[-71.390244,41.85415999906],[-71.390152,41.85403099906],[-71.389809,41.85362999906],[-71.389679,41.85348099906],[-71.389305,41.85311499906],[-71.389,41.85286699906],[-71.388893,41.85278699906],[-71.389595,41.85246999906],[-71.389949,41.85228299906],[-71.390266,41.85211599906],[-71.390533,41.85197399906],[-71.390739,41.85186399906],[-71.3908,41.85183299906],[-71.390884,41.85166499906],[-71.391174,41.85109299906],[-71.391449,41.85056699906],[-71.391472,41.85051299906],[-71.391624,41.85018199906],[-71.391785,41.84988399906],[-71.391907,41.84966699906],[-71.392113,41.84925099906],[-71.392433,41.84860999906],[-71.392746,41.84796099906],[-71.393044,41.84732799906],[-71.393059,41.84730899906],[-71.393288,41.84683199906]]]}}"}, +{"type": "blockgroup", "typeId": 34002, "areaId": 28804, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.389198,41.84283399906],[-71.389183,41.84226199906],[-71.389145,41.84189599906],[-71.38913,41.84180499906],[-71.389091,41.84153699906],[-71.389008,41.84121699906],[-71.388855,41.84062599906],[-71.388832,41.84052699906],[-71.388664,41.83990899906],[-71.388657,41.83985899906],[-71.388634,41.83979399906],[-71.388496,41.83918799906],[-71.386688,41.83944299906],[-71.38575,41.83957299906],[-71.385582,41.83888199906],[-71.385468,41.83838299906],[-71.385422,41.83821099906],[-71.385338,41.83783699906],[-71.384972,41.83641799906],[-71.384941,41.83628099906],[-71.384613,41.83534599906],[-71.384506,41.83502999906],[-71.384399,41.83473999906],[-71.384186,41.83413299906],[-71.383957,41.83345799906],[-71.383926,41.83338499906],[-71.383842,41.83298899906],[-71.383697,41.83351899906],[-71.383632,41.83375699906],[-71.383621,41.83377499906],[-71.383484,41.83421599906],[-71.383415,41.83426699906],[-71.383156,41.83455699906],[-71.382965,41.83473599906],[-71.382607,41.83499099906],[-71.382401,41.83512099906],[-71.382042,41.83528899906],[-71.381828,41.83536899906],[-71.381546,41.83545299906],[-71.380989,41.83560899906],[-71.380547,41.83576599906],[-71.380257,41.83586499906],[-71.379921,41.83595699906],[-71.379677,41.83599099906],[-71.379333,41.83599099906],[-71.379128,41.83599399906],[-71.376695,41.83619599906],[-71.37458,41.83643299906],[-71.373099,41.83659999906],[-71.372996,41.83806499906],[-71.372912,41.83925599906],[-71.372878,41.83986199906],[-71.372247,41.84333699906],[-71.37226,41.84415699906],[-71.377934,41.84718099906],[-71.378964,41.84770899906],[-71.380875,41.84797599906],[-71.381239,41.84802699906],[-71.382621,41.84739999906],[-71.384965,41.84739999906],[-71.386772,41.84645299906],[-71.386772,41.84616099906],[-71.386734,41.84555799906],[-71.387009,41.84551999906],[-71.387215,41.84553899906],[-71.388214,41.84564599906],[-71.388878,41.84571799906],[-71.389061,41.84574499906],[-71.389191,41.84580599906],[-71.389191,41.84479499906],[-71.389198,41.84429599906],[-71.389198,41.84283399906]]]}}"}, +{"type": "blockgroup", "typeId": 34003, "areaId": 28805, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.392334,41.83900099906],[-71.392159,41.83836399906],[-71.391991,41.83774899906],[-71.391769,41.83698999906],[-71.391647,41.83663599906],[-71.391579,41.83641799906],[-71.391373,41.83583799906],[-71.391296,41.83562499906],[-71.391167,41.83522799906],[-71.391075,41.83495699906],[-71.390793,41.83416399906],[-71.390335,41.83424799906],[-71.390007,41.83431599906],[-71.389244,41.83447299906],[-71.389214,41.83447599906],[-71.388252,41.83465199906],[-71.387321,41.83483499906],[-71.386414,41.83499899906],[-71.385536,41.83516699906],[-71.384613,41.83534599906],[-71.384941,41.83628099906],[-71.384972,41.83641799906],[-71.385338,41.83783699906],[-71.385422,41.83821099906],[-71.385468,41.83838299906],[-71.385582,41.83888199906],[-71.38575,41.83957299906],[-71.386688,41.83944299906],[-71.388496,41.83918799906],[-71.389313,41.83908099906],[-71.389694,41.83902399906],[-71.390526,41.83890199906],[-71.390839,41.83898199906],[-71.391182,41.83901999906],[-71.391266,41.83902399906],[-71.391647,41.83903499906],[-71.391747,41.83904299906],[-71.391968,41.83904299906],[-71.392334,41.83900099906]]]}}"}, +{"type": "blockgroup", "typeId": 34004, "areaId": 28806, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.401566,41.83568599906],[-71.40155,41.83561299906],[-71.401527,41.83531599906],[-71.401466,41.83482399906],[-71.400729,41.83487299906],[-71.400239,41.83490599906],[-71.399979,41.83492299906],[-71.398972,41.83501399906],[-71.398186,41.83506399906],[-71.398094,41.83506399906],[-71.398048,41.83507199906],[-71.398026,41.83508699906],[-71.398009,41.83509999906],[-71.397987,41.83515899906],[-71.397987,41.83521299906],[-71.397993,41.83531199906],[-71.396486,41.83535599906],[-71.396385,41.83517799906],[-71.395668,41.83391599906],[-71.395325,41.83330199906],[-71.395294,41.83330499906],[-71.394302,41.83348499906],[-71.393295,41.83368699906],[-71.392448,41.83385499906],[-71.391655,41.83398799906],[-71.391609,41.83399999906],[-71.391585,41.83400199906],[-71.390793,41.83416399906],[-71.391075,41.83495699906],[-71.391167,41.83522799906],[-71.391296,41.83562499906],[-71.391373,41.83583799906],[-71.391579,41.83641799906],[-71.391647,41.83663599906],[-71.391769,41.83698999906],[-71.391991,41.83774899906],[-71.392159,41.83836399906],[-71.392334,41.83900099906],[-71.392441,41.83939699906],[-71.392441,41.83950799906],[-71.392456,41.83970999906],[-71.392494,41.84028199906],[-71.392548,41.84084699906],[-71.392586,41.84130899906],[-71.394447,41.84117899906],[-71.395363,41.84112199906],[-71.396248,41.84101899906],[-71.397209,41.84090399906],[-71.397331,41.84057999906],[-71.39814,41.84079399906],[-71.398987,41.84101899906],[-71.399307,41.84036599906],[-71.399643,41.83969499906],[-71.399826,41.83931699906],[-71.400101,41.83876799906],[-71.400337,41.83827899906],[-71.400505,41.83793299906],[-71.40052,41.83790199906],[-71.400581,41.83778399906],[-71.400818,41.83731799906],[-71.401176,41.83657799906],[-71.401543,41.83584599906],[-71.401566,41.83570899906],[-71.401566,41.83568599906]]]}}"}, +{"type": "blockgroup", "typeId": 35001, "areaId": 28807, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.394302,41.83348499906],[-71.393967,41.83290499906],[-71.393623,41.83231399906],[-71.392807,41.83088699906],[-71.392479,41.83030699906],[-71.392372,41.82997899906],[-71.392166,41.82936899906],[-71.391663,41.82945599906],[-71.390968,41.82958199906],[-71.390928,41.82959399906],[-71.390152,41.82973899906],[-71.38932,41.82989499906],[-71.388245,41.83008599906],[-71.387901,41.83015399906],[-71.387848,41.83028399906],[-71.38784,41.83038699906],[-71.387856,41.83046699906],[-71.388084,41.83110799906],[-71.388138,41.83127199906],[-71.388184,41.83138999906],[-71.388298,41.83175299906],[-71.388489,41.83234399906],[-71.388596,41.83263399906],[-71.388817,41.83323699906],[-71.388985,41.83370599906],[-71.38903,41.83385099906],[-71.389244,41.83447299906],[-71.390007,41.83431599906],[-71.390335,41.83424799906],[-71.390793,41.83416399906],[-71.391585,41.83400199906],[-71.391609,41.83399999906],[-71.391655,41.83398799906],[-71.392448,41.83385499906],[-71.393295,41.83368699906],[-71.394302,41.83348499906]]]}}"}, +{"type": "blockgroup", "typeId": 35002, "areaId": 28808, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.394241,41.82283799906],[-71.394043,41.82284199906],[-71.392525,41.82297499906],[-71.392197,41.82299399906],[-71.392166,41.82299399906],[-71.390926,41.82309499906],[-71.389999,41.82318099906],[-71.389961,41.82286799906],[-71.389922,41.82263199906],[-71.38991,41.82255699906],[-71.388881,41.82265299906],[-71.388137,41.82271399906],[-71.383497,41.82274299906],[-71.383186,41.82269599906],[-71.3831,41.82270599906],[-71.382872,41.82269599906],[-71.382797,41.82269499906],[-71.382493,41.82312099906],[-71.382255,41.82340199906],[-71.382202,41.82346999906],[-71.381994,41.82364299906],[-71.381686,41.82387299906],[-71.381491,41.82402799906],[-71.381418,41.82410399906],[-71.38133,41.82423299906],[-71.381043,41.82462199906],[-71.381028,41.82464199906],[-71.38089,41.82481399906],[-71.380731,41.82502299906],[-71.380445,41.82536599906],[-71.380214,41.82566599906],[-71.38008,41.82582299906],[-71.379971,41.82597199906],[-71.379871,41.82612599906],[-71.37957,41.82648299906],[-71.379509,41.82655699906],[-71.379453,41.82665499906],[-71.377563,41.82911699906],[-71.377498,41.82920199906],[-71.377434,41.82928799906],[-71.377556,41.82929199906],[-71.37796,41.82931899906],[-71.378502,41.82934199906],[-71.379143,41.82937999906],[-71.379608,41.82939499906],[-71.37973,41.82939499906],[-71.379817,41.82939399906],[-71.379844,41.82917499906],[-71.379852,41.82910899906],[-71.379906,41.82896799906],[-71.38002,41.82886099906],[-71.380135,41.82881899906],[-71.380287,41.82877299906],[-71.380478,41.82874299906],[-71.380669,41.82872399906],[-71.380798,41.82869699906],[-71.38092,41.82864799906],[-71.381012,41.82856799906],[-71.38121,41.82816299906],[-71.381393,41.82769399906],[-71.381436,41.82747399906],[-71.381447,41.82741499906],[-71.381393,41.82739999906],[-71.38136,41.82736299906],[-71.381348,41.82731199906],[-71.381355,41.82726299906],[-71.381401,41.82723199906],[-71.381462,41.82722099906],[-71.381493,41.82722499906],[-71.381592,41.82689699906],[-71.381668,41.82685099906],[-71.381813,41.82682799906],[-71.382896,41.82681699906],[-71.382965,41.82681299906],[-71.384117,41.82681299906],[-71.384987,41.82681999906],[-71.385933,41.82680099906],[-71.386022,41.82680199906],[-71.386114,41.82680299906],[-71.386864,41.82680899906],[-71.387596,41.82680099906],[-71.388489,41.82671699906],[-71.389511,41.82662999906],[-71.390503,41.82653799906],[-71.391617,41.82645399906],[-71.392723,41.82635099906],[-71.393814,41.82626699906],[-71.393858,41.82587799906],[-71.39386,41.82585899906],[-71.39389,41.82556499906],[-71.393951,41.82510799906],[-71.394058,41.82430599906],[-71.394066,41.82427599906],[-71.394073,41.82421499906],[-71.394142,41.82353199906],[-71.394241,41.82283799906]]]}}"}, +{"type": "blockgroup", "typeId": 35003, "areaId": 28809, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.390968,41.82958199906],[-71.390854,41.82890299906],[-71.390854,41.82887599906],[-71.390747,41.82817799906],[-71.390602,41.82721299906],[-71.390503,41.82653799906],[-71.389511,41.82662999906],[-71.388489,41.82671699906],[-71.387596,41.82680099906],[-71.386864,41.82680899906],[-71.386114,41.82680299906],[-71.386022,41.82680199906],[-71.385933,41.82680099906],[-71.385742,41.82741199906],[-71.38574,41.82742999906],[-71.385498,41.82807899906],[-71.385269,41.82877699906],[-71.385259,41.82879399906],[-71.385033,41.82947499906],[-71.384811,41.83013899906],[-71.38459,41.83079899906],[-71.385582,41.83061199906],[-71.385674,41.83059699906],[-71.387901,41.83015399906],[-71.388245,41.83008599906],[-71.38932,41.82989499906],[-71.390152,41.82973899906],[-71.390928,41.82959399906],[-71.390968,41.82958199906]]]}}"}, +{"type": "blockgroup", "typeId": 35004, "areaId": 28810, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.389244,41.83447299906],[-71.38903,41.83385099906],[-71.388985,41.83370599906],[-71.388817,41.83323699906],[-71.388596,41.83263399906],[-71.388489,41.83234399906],[-71.388298,41.83175299906],[-71.388184,41.83138999906],[-71.388138,41.83127199906],[-71.388084,41.83110799906],[-71.387856,41.83046699906],[-71.38784,41.83038699906],[-71.387848,41.83028399906],[-71.387901,41.83015399906],[-71.385674,41.83059699906],[-71.385582,41.83061199906],[-71.38459,41.83079899906],[-71.384811,41.83013899906],[-71.385033,41.82947499906],[-71.385259,41.82879399906],[-71.385269,41.82877699906],[-71.385498,41.82807899906],[-71.38574,41.82742999906],[-71.385742,41.82741199906],[-71.385933,41.82680099906],[-71.384987,41.82681999906],[-71.384117,41.82681299906],[-71.382965,41.82681299906],[-71.382896,41.82681699906],[-71.381813,41.82682799906],[-71.381668,41.82685099906],[-71.381592,41.82689699906],[-71.381493,41.82722499906],[-71.381462,41.82722099906],[-71.381401,41.82723199906],[-71.381355,41.82726299906],[-71.381348,41.82731199906],[-71.38136,41.82736299906],[-71.381393,41.82739999906],[-71.381447,41.82741499906],[-71.381436,41.82747399906],[-71.381393,41.82769399906],[-71.38121,41.82816299906],[-71.381012,41.82856799906],[-71.38092,41.82864799906],[-71.380798,41.82869699906],[-71.380669,41.82872399906],[-71.380478,41.82874299906],[-71.380287,41.82877299906],[-71.380135,41.82881899906],[-71.38002,41.82886099906],[-71.379906,41.82896799906],[-71.379852,41.82910899906],[-71.379844,41.82917499906],[-71.379817,41.82939399906],[-71.37973,41.82939499906],[-71.379608,41.82939499906],[-71.379143,41.82937999906],[-71.378502,41.82934199906],[-71.37796,41.82931899906],[-71.377556,41.82929199906],[-71.377434,41.82928799906],[-71.374284,41.83190399906],[-71.373587,41.83248599906],[-71.373615,41.83250799906],[-71.373613,41.83260199906],[-71.373291,41.83516499906],[-71.373099,41.83659999906],[-71.37458,41.83643299906],[-71.376695,41.83619599906],[-71.379128,41.83599399906],[-71.379333,41.83599099906],[-71.379677,41.83599099906],[-71.379921,41.83595699906],[-71.380257,41.83586499906],[-71.380547,41.83576599906],[-71.380989,41.83560899906],[-71.381546,41.83545299906],[-71.381828,41.83536899906],[-71.382042,41.83528899906],[-71.382401,41.83512099906],[-71.382607,41.83499099906],[-71.382965,41.83473599906],[-71.383156,41.83455699906],[-71.383415,41.83426699906],[-71.383484,41.83421599906],[-71.383621,41.83377499906],[-71.383632,41.83375699906],[-71.383697,41.83351899906],[-71.383842,41.83298899906],[-71.383926,41.83338499906],[-71.383957,41.83345799906],[-71.384186,41.83413299906],[-71.384399,41.83473999906],[-71.384506,41.83502999906],[-71.384613,41.83534599906],[-71.385536,41.83516699906],[-71.386414,41.83499899906],[-71.387321,41.83483499906],[-71.388252,41.83465199906],[-71.389214,41.83447599906],[-71.389244,41.83447299906]]]}}"}, +{"type": "blockgroup", "typeId": 36011, "areaId": 28811, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.401466,41.83482399906],[-71.401367,41.83406399906],[-71.401321,41.83362999906],[-71.401244,41.83300799906],[-71.401208,41.83265999906],[-71.401169,41.83221399906],[-71.401077,41.83148199906],[-71.401001,41.83084099906],[-71.400902,41.83003199906],[-71.400787,41.82916599906],[-71.400719,41.82863599906],[-71.400703,41.82853299906],[-71.400673,41.82825499906],[-71.40065,41.82809799906],[-71.400589,41.82768599906],[-71.400581,41.82762899906],[-71.400536,41.82728199906],[-71.4005,41.82689299906],[-71.400452,41.82636599906],[-71.400368,41.82553499906],[-71.400315,41.82511199906],[-71.400269,41.82475999906],[-71.400146,41.82390999906],[-71.400121,41.82368099906],[-71.400059,41.82313299906],[-71.40004,41.82295599906],[-71.399994,41.82235299906],[-71.398956,41.82242199906],[-71.39859,41.82245299906],[-71.397903,41.82249499906],[-71.396835,41.82257799906],[-71.397018,41.82318499906],[-71.39707,41.82348099906],[-71.397125,41.82379199906],[-71.397202,41.82413899906],[-71.39721,41.82426999906],[-71.397226,41.82449999906],[-71.397263,41.82504999906],[-71.397263,41.82668299906],[-71.397232,41.82746499906],[-71.397232,41.82762099906],[-71.39724,41.82768199906],[-71.397362,41.82799699906],[-71.397385,41.82805599906],[-71.397507,41.82839999906],[-71.395638,41.82872399906],[-71.395477,41.82875099906],[-71.394821,41.82886099906],[-71.394308,41.82894999906],[-71.393936,41.82901399906],[-71.393127,41.82917399906],[-71.392166,41.82936899906],[-71.392372,41.82997899906],[-71.392479,41.83030699906],[-71.392807,41.83088699906],[-71.393623,41.83231399906],[-71.393967,41.83290499906],[-71.394302,41.83348499906],[-71.395294,41.83330499906],[-71.395325,41.83330199906],[-71.395668,41.83391599906],[-71.396385,41.83517799906],[-71.396486,41.83535599906],[-71.397993,41.83531199906],[-71.397987,41.83521299906],[-71.397987,41.83515899906],[-71.398009,41.83509999906],[-71.398026,41.83508699906],[-71.398048,41.83507199906],[-71.398094,41.83506399906],[-71.398186,41.83506399906],[-71.398972,41.83501399906],[-71.399979,41.83492299906],[-71.400239,41.83490599906],[-71.400729,41.83487299906],[-71.401466,41.83482399906]]]}}"}, +{"type": "blockgroup", "typeId": 36012, "areaId": 28812, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.393936,41.82901399906],[-71.393883,41.82762499906],[-71.393852,41.82699199906],[-71.393837,41.82673299906],[-71.393814,41.82626699906],[-71.392723,41.82635099906],[-71.391617,41.82645399906],[-71.390503,41.82653799906],[-71.390602,41.82721299906],[-71.390747,41.82817799906],[-71.390854,41.82887599906],[-71.390854,41.82890299906],[-71.390968,41.82958199906],[-71.391663,41.82945599906],[-71.392166,41.82936899906],[-71.393127,41.82917399906],[-71.393936,41.82901399906]]]}}"}, +{"type": "blockgroup", "typeId": 36013, "areaId": 28813, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.397507,41.82839999906],[-71.397385,41.82805599906],[-71.397362,41.82799699906],[-71.39724,41.82768199906],[-71.397232,41.82762099906],[-71.397232,41.82746499906],[-71.397263,41.82668299906],[-71.397263,41.82504999906],[-71.397226,41.82449999906],[-71.39721,41.82426999906],[-71.397202,41.82413899906],[-71.397125,41.82379199906],[-71.39707,41.82348099906],[-71.397018,41.82318499906],[-71.396835,41.82257799906],[-71.395821,41.82270099906],[-71.394638,41.82282999906],[-71.394241,41.82283799906],[-71.394142,41.82353199906],[-71.394073,41.82421499906],[-71.394066,41.82427599906],[-71.394058,41.82430599906],[-71.393951,41.82510799906],[-71.39389,41.82556499906],[-71.39386,41.82585899906],[-71.393858,41.82587799906],[-71.393814,41.82626699906],[-71.393837,41.82673299906],[-71.393852,41.82699199906],[-71.393883,41.82762499906],[-71.393936,41.82901399906],[-71.394308,41.82894999906],[-71.394821,41.82886099906],[-71.395477,41.82875099906],[-71.395638,41.82872399906],[-71.397507,41.82839999906]]]}}"}, +{"type": "blockgroup", "typeId": 36021, "areaId": 28814, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.407318,41.82496599906],[-71.40712,41.82471099906],[-71.406908,41.82437399906],[-71.406868,41.82430999906],[-71.40686,41.82428699906],[-71.406737,41.82408799906],[-71.406731,41.82407799906],[-71.406654,41.82398199906],[-71.406433,41.82377199906],[-71.406166,41.82349799906],[-71.405869,41.82319299906],[-71.404579,41.82350199906],[-71.404404,41.82333799906],[-71.403908,41.82282299906],[-71.403168,41.82205199906],[-71.40284,41.82218899906],[-71.402763,41.82221199906],[-71.402657,41.82222699906],[-71.40242,41.82224999906],[-71.402069,41.82225799906],[-71.401909,41.82225799906],[-71.401373,41.82228299906],[-71.401261,41.82228799906],[-71.401009,41.82229999906],[-71.4009,41.82230599906],[-71.400531,41.82232399906],[-71.400215,41.82234099906],[-71.399994,41.82235299906],[-71.40004,41.82295599906],[-71.400059,41.82313299906],[-71.400121,41.82368099906],[-71.400146,41.82390999906],[-71.400269,41.82475999906],[-71.400315,41.82511199906],[-71.400368,41.82553499906],[-71.402756,41.82535599906],[-71.403557,41.82530599906],[-71.404121,41.82527499906],[-71.40451,41.82525299906],[-71.404931,41.82523399906],[-71.405396,41.82521299906],[-71.40554,41.82520699906],[-71.40579,41.82518999906],[-71.406204,41.82516099906],[-71.406281,41.82525199906],[-71.406349,41.82533299906],[-71.407318,41.82496599906]]]}}"}, +{"type": "blockgroup", "typeId": 36022, "areaId": 28815, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.408363,41.83391699906],[-71.408357,41.83370999906],[-71.408294,41.83297799906],[-71.408279,41.83267999906],[-71.408203,41.83195499906],[-71.408028,41.83101699906],[-71.407906,41.83040599906],[-71.407557,41.82914899906],[-71.406822,41.82884199906],[-71.40686,41.82947899906],[-71.406998,41.83048999906],[-71.405602,41.83058899906],[-71.404999,41.83062699906],[-71.403679,41.83068799906],[-71.403263,41.83071099906],[-71.401001,41.83084099906],[-71.401077,41.83148199906],[-71.401169,41.83221399906],[-71.401208,41.83265999906],[-71.401244,41.83300799906],[-71.401321,41.83362999906],[-71.401367,41.83406399906],[-71.401466,41.83482399906],[-71.401527,41.83531599906],[-71.40155,41.83561299906],[-71.401566,41.83568599906],[-71.401566,41.83570899906],[-71.402138,41.83569299906],[-71.404106,41.83566299906],[-71.405441,41.83560599906],[-71.40535,41.83476599906],[-71.405289,41.83419799906],[-71.405167,41.83410999906],[-71.406364,41.83402599906],[-71.407433,41.83400299906],[-71.4076,41.83399999906],[-71.408088,41.83399699906],[-71.408363,41.83391699906]]]}}"}, +{"type": "blockgroup", "typeId": 36023, "areaId": 28816, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.409729,41.82890699906],[-71.409637,41.82865499906],[-71.409584,41.82849099906],[-71.409538,41.82835399906],[-71.409447,41.82813599906],[-71.409351,41.82797199906],[-71.409286,41.82786199906],[-71.409184,41.82769499906],[-71.409058,41.82748799906],[-71.40873,41.82693499906],[-71.408278,41.82620699906],[-71.408197,41.82607599906],[-71.40815,41.82599999906],[-71.407837,41.82564199906],[-71.407814,41.82560699906],[-71.407318,41.82496599906],[-71.406349,41.82533299906],[-71.406281,41.82525199906],[-71.406204,41.82516099906],[-71.40579,41.82518999906],[-71.40554,41.82520699906],[-71.405396,41.82521299906],[-71.404931,41.82523399906],[-71.40451,41.82525299906],[-71.404121,41.82527499906],[-71.403557,41.82530599906],[-71.402756,41.82535599906],[-71.400368,41.82553499906],[-71.400452,41.82636599906],[-71.4005,41.82689299906],[-71.400536,41.82728199906],[-71.400581,41.82762899906],[-71.400589,41.82768599906],[-71.40065,41.82809799906],[-71.400673,41.82825499906],[-71.400703,41.82853299906],[-71.400719,41.82863599906],[-71.400787,41.82916599906],[-71.400902,41.83003199906],[-71.401001,41.83084099906],[-71.403263,41.83071099906],[-71.403679,41.83068799906],[-71.404999,41.83062699906],[-71.405602,41.83058899906],[-71.406998,41.83048999906],[-71.40686,41.82947899906],[-71.406822,41.82884199906],[-71.407557,41.82914899906],[-71.408006,41.82908899906],[-71.408379,41.82904099906],[-71.408879,41.82898799906],[-71.409172,41.82895699906],[-71.409729,41.82890699906]]]}}"}, +{"type": "blockgroup", "typeId": 37001, "areaId": 28817, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.394043,41.82284199906],[-71.394012,41.82252899906],[-71.393959,41.82216999906],[-71.393898,41.82175399906],[-71.393829,41.82149499906],[-71.393822,41.82147699906],[-71.393814,41.82125099906],[-71.393715,41.82081199906],[-71.393669,41.82035799906],[-71.393631,41.82012899906],[-71.393532,41.82012899906],[-71.393414,41.82013799906],[-71.393336,41.82014399906],[-71.392185,41.82023899906],[-71.3918,41.82027099906],[-71.391724,41.82027699906],[-71.391513,41.82029599906],[-71.39122,41.82032399906],[-71.390686,41.82036999906],[-71.390152,41.82041199906],[-71.38958,41.82044599906],[-71.38958,41.82041199906],[-71.389496,41.81984299906],[-71.389518,41.81971799906],[-71.389542,41.81957599906],[-71.389557,41.81951099906],[-71.38958,41.81938899906],[-71.389604,41.81928699906],[-71.389626,41.81919499906],[-71.389648,41.81906499906],[-71.389653,41.81904299906],[-71.38932,41.81903399906],[-71.388954,41.81902499906],[-71.388728,41.81902399906],[-71.388182,41.81901499906],[-71.38774,41.81901099906],[-71.387366,41.81900799906],[-71.386628,41.81900899906],[-71.385572,41.81899599906],[-71.38547,41.81915699906],[-71.385445,41.81922399906],[-71.385417,41.81929699906],[-71.385379,41.81933999906],[-71.385276,41.81939299906],[-71.385255,41.81941399906],[-71.385222,41.81947899906],[-71.385229,41.81959099906],[-71.385228,41.81966199906],[-71.385184,41.81979999906],[-71.38509,41.82000999906],[-71.385052,41.82014499906],[-71.385031,41.82019499906],[-71.384553,41.82054799906],[-71.384464,41.82060199906],[-71.384384,41.82062599906],[-71.383963,41.82118099906],[-71.38309,41.82232699906],[-71.382942,41.82249599906],[-71.382814,41.82261999906],[-71.382797,41.82269499906],[-71.382872,41.82269599906],[-71.3831,41.82270599906],[-71.383186,41.82269599906],[-71.383497,41.82274299906],[-71.388137,41.82271399906],[-71.388881,41.82265299906],[-71.38991,41.82255699906],[-71.389922,41.82263199906],[-71.389961,41.82286799906],[-71.389999,41.82318099906],[-71.390926,41.82309499906],[-71.392166,41.82299399906],[-71.392197,41.82299399906],[-71.392525,41.82297499906],[-71.394043,41.82284199906]]]}}"}, +{"type": "blockgroup", "typeId": 37002, "areaId": 28818, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.406813,41.82266899906],[-71.40636,41.82208999906],[-71.40515,41.82038499906],[-71.40503,41.82021599906],[-71.404888,41.81999699906],[-71.403593,41.81800299906],[-71.401719,41.81551399906],[-71.401579,41.81532699906],[-71.400272,41.81359199906],[-71.399404,41.81243999906],[-71.3993,41.81229999906],[-71.398037,41.81027899906],[-71.3978,41.80989999906],[-71.394984,41.81077299906],[-71.395258,41.81166899906],[-71.393809,41.81425499906],[-71.393528,41.81475599906],[-71.392876,41.81512099906],[-71.391982,41.81521999906],[-71.391931,41.81522899906],[-71.391645,41.81528499906],[-71.39102,41.81540699906],[-71.389007,41.81598599906],[-71.38876,41.81594399906],[-71.388498,41.81590099906],[-71.387083,41.81637199906],[-71.386691,41.81738699906],[-71.386619,41.81771299906],[-71.386458,41.81796799906],[-71.386124,41.81835799906],[-71.385862,41.81895399906],[-71.385572,41.81899599906],[-71.386628,41.81900899906],[-71.387366,41.81900799906],[-71.38774,41.81901099906],[-71.388182,41.81901499906],[-71.388728,41.81902399906],[-71.388954,41.81902499906],[-71.38932,41.81903399906],[-71.389653,41.81904299906],[-71.389648,41.81906499906],[-71.389626,41.81919499906],[-71.389604,41.81928699906],[-71.38958,41.81938899906],[-71.389557,41.81951099906],[-71.389542,41.81957599906],[-71.389518,41.81971799906],[-71.389496,41.81984299906],[-71.38958,41.82041199906],[-71.38958,41.82044599906],[-71.390152,41.82041199906],[-71.390686,41.82036999906],[-71.39122,41.82032399906],[-71.391513,41.82029599906],[-71.391724,41.82027699906],[-71.3918,41.82027099906],[-71.392185,41.82023899906],[-71.393336,41.82014399906],[-71.393414,41.82013799906],[-71.393532,41.82012899906],[-71.393631,41.82012899906],[-71.393791,41.82015199906],[-71.393929,41.82015199906],[-71.394432,41.82010999906],[-71.394577,41.82006499906],[-71.394805,41.81999199906],[-71.394997,41.81993099906],[-71.395416,41.81980899906],[-71.395624,41.81974099906],[-71.396027,41.81961099906],[-71.396202,41.81959199906],[-71.396324,41.81957999906],[-71.396935,41.81955299906],[-71.398262,41.81947699906],[-71.399025,41.81942699906],[-71.399086,41.81942699906],[-71.399208,41.81940499906],[-71.399399,41.81936299906],[-71.399696,41.81928299906],[-71.39975,41.81927099906],[-71.400566,41.81914499906],[-71.4011,41.81977099906],[-71.401649,41.82036999906],[-71.402122,41.82088099906],[-71.40229,41.82105599906],[-71.402405,41.82120099906],[-71.402603,41.82144899906],[-71.402688,41.82153899906],[-71.403168,41.82205199906],[-71.403908,41.82282299906],[-71.404404,41.82333799906],[-71.404579,41.82350199906],[-71.405869,41.82319299906],[-71.406349,41.82292599906],[-71.406502,41.82284899906],[-71.406592,41.82280199906],[-71.406813,41.82266899906]]]}}"}, +{"type": "blockgroup", "typeId": 37003, "areaId": 28819, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.39859,41.82245299906],[-71.398491,41.82177399906],[-71.39843,41.82111699906],[-71.398384,41.82055999906],[-71.398323,41.81998399906],[-71.398296,41.81976599906],[-71.398282,41.81965299906],[-71.398262,41.81947699906],[-71.396935,41.81955299906],[-71.396324,41.81957999906],[-71.396202,41.81959199906],[-71.396027,41.81961099906],[-71.395624,41.81974099906],[-71.395416,41.81980899906],[-71.394997,41.81993099906],[-71.394805,41.81999199906],[-71.394577,41.82006499906],[-71.394432,41.82010999906],[-71.393929,41.82015199906],[-71.393791,41.82015199906],[-71.393631,41.82012899906],[-71.393669,41.82035799906],[-71.393715,41.82081199906],[-71.393814,41.82125099906],[-71.393822,41.82147699906],[-71.393829,41.82149499906],[-71.393898,41.82175399906],[-71.393959,41.82216999906],[-71.394012,41.82252899906],[-71.394043,41.82284199906],[-71.394241,41.82283799906],[-71.394638,41.82282999906],[-71.395821,41.82270099906],[-71.396835,41.82257799906],[-71.397903,41.82249499906],[-71.39859,41.82245299906]]]}}"}, +{"type": "blockgroup", "typeId": 37004, "areaId": 28820, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.403168,41.82205199906],[-71.402688,41.82153899906],[-71.402603,41.82144899906],[-71.402405,41.82120099906],[-71.40229,41.82105599906],[-71.402122,41.82088099906],[-71.401649,41.82036999906],[-71.4011,41.81977099906],[-71.400566,41.81914499906],[-71.39975,41.81927099906],[-71.399696,41.81928299906],[-71.399399,41.81936299906],[-71.399208,41.81940499906],[-71.399086,41.81942699906],[-71.399025,41.81942699906],[-71.398262,41.81947699906],[-71.398282,41.81965299906],[-71.398296,41.81976599906],[-71.398323,41.81998399906],[-71.398384,41.82055999906],[-71.39843,41.82111699906],[-71.398491,41.82177399906],[-71.39859,41.82245299906],[-71.398956,41.82242199906],[-71.399994,41.82235299906],[-71.400215,41.82234099906],[-71.400531,41.82232399906],[-71.4009,41.82230599906],[-71.401009,41.82229999906],[-71.401261,41.82228799906],[-71.401373,41.82228299906],[-71.401909,41.82225799906],[-71.402069,41.82225799906],[-71.40242,41.82224999906],[-71.402657,41.82222699906],[-71.402763,41.82221199906],[-71.40284,41.82218899906],[-71.403168,41.82205199906]]]}}"}, +{"type": "blockgroup", "typeId": 101011, "areaId": 28821, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.363744,41.85853999906],[-71.363724,41.85826199906],[-71.36369,41.85770099906],[-71.363645,41.85635999906],[-71.363503,41.85622399906],[-71.361954,41.85485499906],[-71.361771,41.85468699906],[-71.361732,41.85464899906],[-71.361137,41.85411799906],[-71.360927,41.85393499906],[-71.360291,41.85337799906],[-71.359764,41.85294299906],[-71.359268,41.85249299906],[-71.358742,41.85204299906],[-71.358238,41.85156599906],[-71.35775,41.85112399906],[-71.357727,41.85109699906],[-71.357239,41.85063199906],[-71.356773,41.85017799906],[-71.356609,41.85002199906],[-71.356018,41.84946399906],[-71.35582,41.84927699906],[-71.355438,41.84889599906],[-71.355426,41.84887999906],[-71.355125,41.84860199906],[-71.355004,41.84845199906],[-71.354851,41.84826299906],[-71.354706,41.84808299906],[-71.354477,41.84775499906],[-71.354485,41.84791599906],[-71.354485,41.84820199906],[-71.354477,41.84833899906],[-71.354454,41.84889199906],[-71.354454,41.84904099906],[-71.354431,41.84995699906],[-71.354416,41.85084199906],[-71.354401,41.85146699906],[-71.354378,41.85221899906],[-71.354355,41.85299299906],[-71.354378,41.85400799906],[-71.354393,41.85474399906],[-71.354393,41.85499599906],[-71.354416,41.85549499906],[-71.354431,41.85588499906],[-71.354462,41.85713999906],[-71.354469,41.85777699906],[-71.354477,41.85804699906],[-71.354477,41.85814299906],[-71.354485,41.85827299906],[-71.354492,41.85863899906],[-71.3545,41.85874899906],[-71.354505,41.85900099906],[-71.354507,41.85910399906],[-71.354507,41.85946699906],[-71.355367,41.85937799906],[-71.358688,41.85904599906],[-71.359184,41.85899599906],[-71.359991,41.85891599906],[-71.362491,41.85866599906],[-71.363744,41.85853999906]]]}}"}, +{"type": "blockgroup", "typeId": 101012, "areaId": 28822, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.365334,41.84764499906],[-71.365227,41.84707299906],[-71.365105,41.84651899906],[-71.365021,41.84598199906],[-71.364601,41.84569199906],[-71.364044,41.84529899906],[-71.363579,41.84498199906],[-71.363029,41.84456599906],[-71.362289,41.84406999906],[-71.361931,41.84376899906],[-71.361862,41.84368099906],[-71.361504,41.84303999906],[-71.361412,41.84289199906],[-71.36132,41.84286499906],[-71.360672,41.84242599906],[-71.360458,41.84228499906],[-71.359787,41.84278099906],[-71.359146,41.84326599906],[-71.358406,41.84378099906],[-71.357811,41.84330399906],[-71.357773,41.84326899906],[-71.35743,41.84297199906],[-71.357353,41.84290299906],[-71.356834,41.84247999906],[-71.356789,41.84242999906],[-71.35627,41.84182699906],[-71.355919,41.84139299906],[-71.355843,41.84131199906],[-71.355675,41.84111399906],[-71.35553,41.84092699906],[-71.355453,41.84083299906],[-71.355009,41.84144899906],[-71.354465,41.84222799906],[-71.35389,41.84299799906],[-71.352845,41.84449399906],[-71.352039,41.84563599906],[-71.352104,41.84570299906],[-71.352318,41.84590099906],[-71.352478,41.84601999906],[-71.352936,41.84634799906],[-71.353264,41.84658399906],[-71.353279,41.84659999906],[-71.353867,41.84706099906],[-71.354218,41.84743499906],[-71.354248,41.84748099906],[-71.354477,41.84775499906],[-71.354706,41.84808299906],[-71.354851,41.84826299906],[-71.355004,41.84845199906],[-71.355125,41.84860199906],[-71.355426,41.84887999906],[-71.355438,41.84889599906],[-71.35582,41.84927699906],[-71.356018,41.84946399906],[-71.356609,41.85002199906],[-71.356773,41.85017799906],[-71.357239,41.85063199906],[-71.357727,41.85109699906],[-71.35775,41.85112399906],[-71.358238,41.85156599906],[-71.358742,41.85204299906],[-71.359268,41.85249299906],[-71.359673,41.85215799906],[-71.360153,41.85175699906],[-71.360634,41.85133699906],[-71.361115,41.85092499906],[-71.361458,41.85063599906],[-71.36161,41.85050199906],[-71.362091,41.85009399906],[-71.362579,41.84967399906],[-71.363045,41.84927699906],[-71.36351,41.84890399906],[-71.363647,41.84878899906],[-71.36367,41.84877799906],[-71.364235,41.84828199906],[-71.364639,41.84794199906],[-71.364899,41.84782399906],[-71.365334,41.84764499906]]]}}"}, +{"type": "blockgroup", "typeId": 101013, "areaId": 28823, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.368827,41.83950199906],[-71.368778,41.83915099906],[-71.368778,41.83899299906],[-71.368779,41.83881199906],[-71.368512,41.83881199906],[-71.365139,41.83864099906],[-71.362238,41.83549799906],[-71.362226,41.83547299906],[-71.362205,41.83545799906],[-71.362183,41.83542299906],[-71.36218,41.83538599906],[-71.362194,41.83533299906],[-71.362244,41.83521799906],[-71.362242,41.83513799906],[-71.36223,41.83510099906],[-71.362138,41.83498299906],[-71.362069,41.83492099906],[-71.362046,41.83488899906],[-71.362044,41.83486199906],[-71.362042,41.83484099906],[-71.362064,41.83477999906],[-71.362123,41.83469899906],[-71.362136,41.83466399906],[-71.362138,41.83459099906],[-71.362119,41.83451199906],[-71.362079,41.83442799906],[-71.362007,41.83433299906],[-71.361921,41.83420499906],[-71.361874,41.83415699906],[-71.361808,41.83411199906],[-71.361545,41.83397699906],[-71.361486,41.83393299906],[-71.361442,41.83388699906],[-71.361409,41.83381699906],[-71.361405,41.83372899906],[-71.361393,41.83370999906],[-71.361373,41.83369399906],[-71.361346,41.83368199906],[-71.361316,41.83367499906],[-71.361283,41.83367499906],[-71.361214,41.83368399906],[-71.361147,41.83368599906],[-71.361117,41.83367999906],[-71.361088,41.83366899906],[-71.360971,41.83359399906],[-71.360909,41.83357699906],[-71.360875,41.83357499906],[-71.360651,41.83358599906],[-71.360599,41.83358799906],[-71.360532,41.83358299906],[-71.360404,41.83354799906],[-71.360286,41.83352999906],[-71.360138,41.83352999906],[-71.360067,41.83351299906],[-71.360012,41.83349099906],[-71.359919,41.83360699906],[-71.359871,41.83366799906],[-71.359459,41.83421299906],[-71.359047,41.83484599906],[-71.35862,41.83547199906],[-71.358192,41.83614699906],[-71.35775,41.83681099906],[-71.357605,41.83701699906],[-71.356613,41.83827999906],[-71.356209,41.83876399906],[-71.355835,41.83925199906],[-71.355461,41.83971399906],[-71.354973,41.84030199906],[-71.355019,41.84034299906],[-71.355324,41.84067499906],[-71.355453,41.84083299906],[-71.35553,41.84092699906],[-71.355675,41.84111399906],[-71.355843,41.84131199906],[-71.355919,41.84139299906],[-71.35627,41.84182699906],[-71.356789,41.84242999906],[-71.356834,41.84247999906],[-71.357353,41.84290299906],[-71.35743,41.84297199906],[-71.357773,41.84326899906],[-71.357811,41.84330399906],[-71.358406,41.84378099906],[-71.359146,41.84326599906],[-71.359787,41.84278099906],[-71.360458,41.84228499906],[-71.360672,41.84242599906],[-71.36132,41.84286499906],[-71.361412,41.84289199906],[-71.361572,41.84291499906],[-71.361771,41.84291799906],[-71.361923,41.84289199906],[-71.362167,41.84281199906],[-71.362267,41.84276999906],[-71.363129,41.84240299906],[-71.363297,41.84236899906],[-71.363525,41.84233899906],[-71.363731,41.84232299906],[-71.364189,41.84232299906],[-71.364265,41.84232699906],[-71.364624,41.84234999906],[-71.365257,41.84239999906],[-71.365501,41.84241899906],[-71.365677,41.84243799906],[-71.365875,41.84246099906],[-71.366325,41.84253699906],[-71.366943,41.84265899906],[-71.367848,41.84280999906],[-71.367903,41.84275299906],[-71.368624,41.84038399906],[-71.36875,41.83993899906],[-71.368782,41.83977599906],[-71.36882,41.83961699906],[-71.368827,41.83950199906]]]}}"}, +{"type": "blockgroup", "typeId": 101014, "areaId": 28824, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.375021,41.85744899906],[-71.375002,41.85741399906],[-71.374989,41.85738999906],[-71.374914,41.85730499906],[-71.374852,41.85725199906],[-71.374776,41.85720799906],[-71.374697,41.85717799906],[-71.374682,41.85717199906],[-71.374577,41.85714499906],[-71.374526,41.85713599906],[-71.372334,41.85054799906],[-71.372416,41.84872399906],[-71.372333,41.84687099906],[-71.372299,41.84649999906],[-71.37227,41.84473799906],[-71.37226,41.84415699906],[-71.372247,41.84333699906],[-71.372878,41.83986199906],[-71.372912,41.83925599906],[-71.372996,41.83806499906],[-71.371097,41.83848199906],[-71.369,41.83881199906],[-71.368779,41.83881199906],[-71.368778,41.83899299906],[-71.368778,41.83915099906],[-71.368827,41.83950199906],[-71.36882,41.83961699906],[-71.368782,41.83977599906],[-71.36875,41.83993899906],[-71.368624,41.84038399906],[-71.367903,41.84275299906],[-71.367848,41.84280999906],[-71.366943,41.84265899906],[-71.366325,41.84253699906],[-71.365875,41.84246099906],[-71.365677,41.84243799906],[-71.365501,41.84241899906],[-71.365257,41.84239999906],[-71.364624,41.84234999906],[-71.364265,41.84232699906],[-71.364189,41.84232299906],[-71.363731,41.84232299906],[-71.363525,41.84233899906],[-71.363297,41.84236899906],[-71.363129,41.84240299906],[-71.362267,41.84276999906],[-71.362167,41.84281199906],[-71.361923,41.84289199906],[-71.361771,41.84291799906],[-71.361572,41.84291499906],[-71.361412,41.84289199906],[-71.361504,41.84303999906],[-71.361862,41.84368099906],[-71.361931,41.84376899906],[-71.362289,41.84406999906],[-71.363029,41.84456599906],[-71.363579,41.84498199906],[-71.364044,41.84529899906],[-71.364601,41.84569199906],[-71.365021,41.84598199906],[-71.365105,41.84651899906],[-71.365227,41.84707299906],[-71.365334,41.84764499906],[-71.364899,41.84782399906],[-71.364639,41.84794199906],[-71.364235,41.84828199906],[-71.36367,41.84877799906],[-71.363647,41.84878899906],[-71.36351,41.84890399906],[-71.363045,41.84927699906],[-71.362579,41.84967399906],[-71.362091,41.85009399906],[-71.36161,41.85050199906],[-71.361458,41.85063599906],[-71.361115,41.85092499906],[-71.360634,41.85133699906],[-71.360153,41.85175699906],[-71.359673,41.85215799906],[-71.359268,41.85249299906],[-71.359764,41.85294299906],[-71.360291,41.85337799906],[-71.360927,41.85393499906],[-71.361137,41.85411799906],[-71.361732,41.85464899906],[-71.361771,41.85468699906],[-71.361954,41.85485499906],[-71.363503,41.85622399906],[-71.363645,41.85635999906],[-71.36369,41.85770099906],[-71.363724,41.85826199906],[-71.363744,41.85853999906],[-71.36449,41.85846499906],[-71.364732,41.85844199906],[-71.365795,41.85834099906],[-71.369853,41.85792099906],[-71.370369,41.85786799906],[-71.371105,41.85779399906],[-71.372935,41.85760499906],[-71.373525,41.85754499906],[-71.373837,41.85752499906],[-71.375021,41.85744899906]]]}}"}, +{"type": "blockgroup", "typeId": 101021, "areaId": 28825, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.354507,41.85910399906],[-71.354505,41.85900099906],[-71.3545,41.85874899906],[-71.354492,41.85863899906],[-71.354485,41.85827299906],[-71.354477,41.85814299906],[-71.354477,41.85804699906],[-71.354469,41.85777699906],[-71.354462,41.85713999906],[-71.354431,41.85588499906],[-71.354416,41.85549499906],[-71.354393,41.85499599906],[-71.354393,41.85474399906],[-71.354378,41.85400799906],[-71.354355,41.85299299906],[-71.354378,41.85221899906],[-71.354401,41.85146699906],[-71.354416,41.85084199906],[-71.354431,41.84995699906],[-71.354454,41.84904099906],[-71.354454,41.84889199906],[-71.354477,41.84833899906],[-71.354485,41.84820199906],[-71.354485,41.84791599906],[-71.354477,41.84775499906],[-71.354248,41.84748099906],[-71.354218,41.84743499906],[-71.353867,41.84706099906],[-71.353279,41.84659999906],[-71.353264,41.84658399906],[-71.352936,41.84634799906],[-71.352478,41.84601999906],[-71.352318,41.84590099906],[-71.352104,41.84570299906],[-71.352039,41.84563599906],[-71.350895,41.84725399906],[-71.350636,41.84761999906],[-71.350521,41.84778099906],[-71.350245,41.84817399906],[-71.349719,41.84890899906],[-71.349582,41.84909299906],[-71.349254,41.84953299906],[-71.348866,41.85010299906],[-71.348545,41.85055899906],[-71.348407,41.85076799906],[-71.348192,41.85109399906],[-71.347018,41.85274199906],[-71.346581,41.85337199906],[-71.346459,41.85353799906],[-71.346053,41.85409599906],[-71.345472,41.85491499906],[-71.344918,41.85570999906],[-71.344473,41.85635999906],[-71.343991,41.85704999906],[-71.343439,41.85782099906],[-71.342299,41.85945399906],[-71.341713,41.86030599906],[-71.341576,41.86050499906],[-71.341443,41.86070999906],[-71.342766,41.86069099906],[-71.342969,41.86068399906],[-71.343483,41.86063099906],[-71.349493,41.85999199906],[-71.349643,41.85997899906],[-71.35444,41.85947199906],[-71.354507,41.85946699906],[-71.354507,41.85910399906]]]}}"}, +{"type": "blockgroup", "typeId": 101022, "areaId": 28826, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.355453,41.84083299906],[-71.355324,41.84067499906],[-71.355019,41.84034299906],[-71.354973,41.84030199906],[-71.354492,41.84085799906],[-71.354327,41.84105999906],[-71.354126,41.84130499906],[-71.353996,41.84142699906],[-71.353836,41.84153699906],[-71.353714,41.84158699906],[-71.353569,41.84161799906],[-71.353378,41.84162099906],[-71.353271,41.84161799906],[-71.35302,41.84155699906],[-71.352638,41.84142699906],[-71.351997,41.84119799906],[-71.35186,41.84116399906],[-71.351791,41.84114499906],[-71.351616,41.84110999906],[-71.351372,41.84109099906],[-71.350609,41.84105299906],[-71.350136,41.84105299906],[-71.35004,41.84106999906],[-71.349754,41.84112499906],[-71.349281,41.84119799906],[-71.348854,41.84125499906],[-71.348236,41.84133899906],[-71.3479,41.84138899906],[-71.347221,41.84148799906],[-71.346657,41.84157599906],[-71.346405,41.84160199906],[-71.346222,41.84162499906],[-71.346115,41.84162899906],[-71.346062,41.84163299906],[-71.345848,41.84163699906],[-71.345375,41.84167099906],[-71.344765,41.84173999906],[-71.344154,41.84183899906],[-71.344002,41.84185799906],[-71.343857,41.84186899906],[-71.343284,41.84193399906],[-71.343162,41.84194799906],[-71.341778,41.84211199906],[-71.341504,41.84216599906],[-71.341269,41.84223899906],[-71.340803,41.84244999906],[-71.341002,41.84270099906],[-71.341015,41.84272599906],[-71.341334,41.84311999906],[-71.341931,41.84387399906],[-71.34255,41.84465599906],[-71.337783,41.85470999906],[-71.337726,41.85482199906],[-71.33771,41.85486099906],[-71.337367,41.85558699906],[-71.337265,41.85580499906],[-71.334986,41.86060999906],[-71.334653,41.86131399906],[-71.33514,41.86124699906],[-71.337776,41.86091699906],[-71.33883,41.86077699906],[-71.339217,41.86073599906],[-71.341443,41.86070999906],[-71.341576,41.86050499906],[-71.341713,41.86030599906],[-71.342299,41.85945399906],[-71.343439,41.85782099906],[-71.343991,41.85704999906],[-71.344473,41.85635999906],[-71.344918,41.85570999906],[-71.345472,41.85491499906],[-71.346053,41.85409599906],[-71.346459,41.85353799906],[-71.346581,41.85337199906],[-71.347018,41.85274199906],[-71.348192,41.85109399906],[-71.348407,41.85076799906],[-71.348545,41.85055899906],[-71.348866,41.85010299906],[-71.349254,41.84953299906],[-71.349582,41.84909299906],[-71.349719,41.84890899906],[-71.350245,41.84817399906],[-71.350521,41.84778099906],[-71.350636,41.84761999906],[-71.350895,41.84725399906],[-71.352039,41.84563599906],[-71.352845,41.84449399906],[-71.35389,41.84299799906],[-71.354465,41.84222799906],[-71.355009,41.84144899906],[-71.355453,41.84083299906]]]}}"}, +{"type": "blockgroup", "typeId": 101023, "areaId": 28827, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.351089,41.83020699906],[-71.351083,41.83017599906],[-71.351048,41.83012099906],[-71.351022,41.83009599906],[-71.350843,41.82996599906],[-71.350781,41.82990099906],[-71.35074,41.82986999906],[-71.350702,41.82985399906],[-71.350665,41.82985399906],[-71.350636,41.82986799906],[-71.350602,41.82989999906],[-71.350568,41.82995899906],[-71.35056,41.83002699906],[-71.350547,41.83004299906],[-71.350527,41.83005299906],[-71.350479,41.83006399906],[-71.350336,41.83006399906],[-71.350174,41.83008099906],[-71.350071,41.83007699906],[-71.350022,41.83006599906],[-71.34999,41.83004899906],[-71.34997,41.83001499906],[-71.349976,41.82998599906],[-71.349989,41.82996999906],[-71.350011,41.82995399906],[-71.35007,41.82992299906],[-71.350209,41.82987999906],[-71.350234,41.82986399906],[-71.350253,41.82984299906],[-71.350263,41.82981599906],[-71.350264,41.82978699906],[-71.350257,41.82975599906],[-71.350199,41.82962699906],[-71.350176,41.82959599906],[-71.350087,41.82951399906],[-71.350024,41.82943899906],[-71.350001,41.82941899906],[-71.349972,41.82940599906],[-71.349941,41.82940299906],[-71.34991,41.82940599906],[-71.34985,41.82942599906],[-71.349737,41.82948399906],[-71.349695,41.82951799906],[-71.349627,41.82959899906],[-71.34961,41.82961299906],[-71.349581,41.82962299906],[-71.349556,41.82962399906],[-71.34953,41.82961899906],[-71.349505,41.82960699906],[-71.349455,41.82956399906],[-71.349414,41.82950799906],[-71.349337,41.82936099906],[-71.349241,41.82924099906],[-71.349196,41.82916799906],[-71.349147,41.82904899906],[-71.349119,41.82893599906],[-71.34908,41.82884199906],[-71.349076,41.82881399906],[-71.34908,41.82878699906],[-71.349091,41.82876199906],[-71.349229,41.82856499906],[-71.349254,41.82854399906],[-71.349278,41.82853099906],[-71.349302,41.82852499906],[-71.349326,41.82853099906],[-71.349401,41.82856599906],[-71.349431,41.82856999906],[-71.349463,41.82856699906],[-71.349495,41.82855699906],[-71.349522,41.82854099906],[-71.349543,41.82852299906],[-71.349554,41.82850299906],[-71.349559,41.82848099906],[-71.349558,41.82841599906],[-71.349563,41.82835799906],[-71.349601,41.82823599906],[-71.3496,41.82811999906],[-71.349587,41.82805299906],[-71.349559,41.82798699906],[-71.349484,41.82787599906],[-71.349389,41.82762199906],[-71.349383,41.82752699906],[-71.349346,41.82735799906],[-71.349349,41.82730299906],[-71.349359,41.82728199906],[-71.34939,41.82724599906],[-71.349444,41.82720699906],[-71.349516,41.82713899906],[-71.349654,41.82705299906],[-71.349758,41.82697299906],[-71.349848,41.82689299906],[-71.349918,41.82680099906],[-71.34995,41.82674299906],[-71.350076,41.82639099906],[-71.350151,41.82613799906],[-71.350159,41.82607999906],[-71.350155,41.82605399906],[-71.350129,41.82598299906],[-71.350129,41.82596099906],[-71.350148,41.82588799906],[-71.350133,41.82577799906],[-71.350122,41.82575599906],[-71.350096,41.82572399906],[-71.350046,41.82569999906],[-71.349985,41.82568799906],[-71.349923,41.82568799906],[-71.349785,41.82570999906],[-71.349624,41.82572399906],[-71.349434,41.82572799906],[-71.349356,41.82571899906],[-71.349238,41.82569399906],[-71.349067,41.82567599906],[-71.348992,41.82565099906],[-71.348961,41.82563399906],[-71.348937,41.82561399906],[-71.348924,41.82559299906],[-71.348919,41.82556999906],[-71.348926,41.82549699906],[-71.348916,41.82545899906],[-71.348901,41.82544399906],[-71.348799,41.82540799906],[-71.348708,41.82536899906],[-71.348555,41.82530299906],[-71.348503,41.82527299906],[-71.348485,41.82525399906],[-71.34846,41.82521199906],[-71.348451,41.82515999906],[-71.348453,41.82507199906],[-71.34849,41.82495499906],[-71.34849,41.82490299906],[-71.348481,41.82488199906],[-71.348466,41.82486599906],[-71.348444,41.82485299906],[-71.348418,41.82484399906],[-71.348359,41.82483299906],[-71.348301,41.82483299906],[-71.348241,41.82484399906],[-71.348156,41.82487899906],[-71.348076,41.82492699906],[-71.348004,41.82499199906],[-71.347829,41.82513299906],[-71.34777,41.82517199906],[-71.347738,41.82518399906],[-71.34768,41.82519199906],[-71.347604,41.82520199906],[-71.347515,41.82523899906],[-71.347364,41.82531599906],[-71.347214,41.82541599906],[-71.347011,41.82557799906],[-71.346911,41.82564799906],[-71.346507,41.82589299906],[-71.346368,41.82595499906],[-71.346301,41.82597599906],[-71.346265,41.82597999906],[-71.346095,41.82598399906],[-71.345939,41.82627699906],[-71.345787,41.82656499906],[-71.345198,41.82767599906],[-71.344302,41.82840699906],[-71.343254,41.82925899906],[-71.337994,41.83354599906],[-71.337855,41.83365799906],[-71.337321,41.83409299906],[-71.335417,41.83564499906],[-71.336438,41.83693999906],[-71.336867,41.83747699906],[-71.337032,41.83767499906],[-71.337299,41.83802299906],[-71.337453,41.83823099906],[-71.340495,41.84209699906],[-71.340629,41.84223099906],[-71.340803,41.84244999906],[-71.341269,41.84223899906],[-71.341504,41.84216599906],[-71.341778,41.84211199906],[-71.343162,41.84194799906],[-71.343284,41.84193399906],[-71.343857,41.84186899906],[-71.344002,41.84185799906],[-71.344154,41.84183899906],[-71.344765,41.84173999906],[-71.345375,41.84167099906],[-71.345848,41.84163699906],[-71.346062,41.84163299906],[-71.346115,41.84162899906],[-71.346222,41.84162499906],[-71.346405,41.84160199906],[-71.346657,41.84157599906],[-71.347221,41.84148799906],[-71.3479,41.84138899906],[-71.348236,41.84133899906],[-71.348854,41.84125499906],[-71.349281,41.84119799906],[-71.349754,41.84112499906],[-71.349678,41.84098099906],[-71.349625,41.84080499906],[-71.349472,41.84020599906],[-71.34935,41.83967599906],[-71.349174,41.83887899906],[-71.349159,41.83879899906],[-71.34903,41.83825299906],[-71.348999,41.83814999906],[-71.348969,41.83801299906],[-71.348846,41.83749399906],[-71.348831,41.83744399906],[-71.348831,41.83741799906],[-71.348701,41.83685299906],[-71.348541,41.83619699906],[-71.348389,41.83555599906],[-71.348335,41.83534199906],[-71.348282,41.83521699906],[-71.34819,41.83486899906],[-71.348091,41.83443799906],[-71.347969,41.83385099906],[-71.347923,41.83368699906],[-71.34787,41.83352299906],[-71.347817,41.83342299906],[-71.347871,41.83336599906],[-71.347874,41.83330099906],[-71.347911,41.83323799906],[-71.347984,41.83312599906],[-71.348007,41.83309599906],[-71.348061,41.83302299906],[-71.34813,41.83295599906],[-71.348199,41.83292899906],[-71.348399,41.83269499906],[-71.348559,41.83255899906],[-71.348587,41.83253099906],[-71.348701,41.83244699906],[-71.348877,41.83235499906],[-71.349579,41.83210399906],[-71.349739,41.83203899906],[-71.34993,41.83194399906],[-71.350105,41.83184799906],[-71.350198,41.83176299906],[-71.350311,41.83166099906],[-71.350914,41.83102399906],[-71.350961,41.83097199906],[-71.351074,41.83084999906],[-71.351007,41.83079399906],[-71.350985,41.83075899906],[-71.350988,41.83072199906],[-71.351047,41.83062099906],[-71.351076,41.83055999906],[-71.351081,41.83052699906],[-71.351075,41.83045799906],[-71.351051,41.83036999906],[-71.351051,41.83033599906],[-71.351085,41.83023999906],[-71.351089,41.83020699906]]]}}"}, +{"type": "blockgroup", "typeId": 101024, "areaId": 28828, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.360012,41.83349099906],[-71.359831,41.83342899906],[-71.359737,41.83340599906],[-71.359643,41.83337799906],[-71.359532,41.83335399906],[-71.359326,41.83334199906],[-71.359156,41.83331399906],[-71.359035,41.83328199906],[-71.359005,41.83327399906],[-71.358819,41.83320799906],[-71.358692,41.83313699906],[-71.358624,41.83311199906],[-71.358407,41.83307099906],[-71.358266,41.83306199906],[-71.358176,41.83306799906],[-71.358037,41.83309199906],[-71.35795,41.83310699906],[-71.357534,41.83315799906],[-71.357435,41.83316299906],[-71.357385,41.83315799906],[-71.357285,41.83313499906],[-71.357192,41.83309499906],[-71.357062,41.83302399906],[-71.356883,41.83293399906],[-71.356822,41.83290899906],[-71.35673,41.83287099906],[-71.356629,41.83284199906],[-71.356422,41.83279999906],[-71.356209,41.83273799906],[-71.356072,41.83272799906],[-71.356036,41.83272599906],[-71.355732,41.83271799906],[-71.355642,41.83271099906],[-71.355563,41.83269599906],[-71.355489,41.83266599906],[-71.355389,41.83259999906],[-71.355293,41.83251999906],[-71.35527,41.83250099906],[-71.35517,41.83238099906],[-71.355136,41.83231899906],[-71.355122,41.83226199906],[-71.355132,41.83212899906],[-71.355123,41.83210299906],[-71.355108,41.83207799906],[-71.355047,41.83200399906],[-71.354997,41.83196399906],[-71.354939,41.83193299906],[-71.354911,41.83192399906],[-71.35487,41.83191099906],[-71.354799,41.83189699906],[-71.354576,41.83188299906],[-71.354511,41.83188899906],[-71.354459,41.83191199906],[-71.35444,41.83192799906],[-71.354395,41.83199599906],[-71.354359,41.83202899906],[-71.354311,41.83205599906],[-71.354256,41.83207499906],[-71.354167,41.83209499906],[-71.354055,41.83210599906],[-71.35388,41.83210699906],[-71.353636,41.83210899906],[-71.353559,41.83209799906],[-71.353317,41.83204899906],[-71.353247,41.83203899906],[-71.353108,41.83204299906],[-71.353039,41.83203499906],[-71.352982,41.83201599906],[-71.35294,41.83198799906],[-71.352922,41.83195399906],[-71.352926,41.83189799906],[-71.353004,41.83168699906],[-71.353006,41.83166299906],[-71.353002,41.83163999906],[-71.35299,41.83161999906],[-71.352944,41.83156699906],[-71.352885,41.83151499906],[-71.352808,41.83146699906],[-71.352652,41.83139299906],[-71.352616,41.83135399906],[-71.352595,41.83134399906],[-71.352511,41.83134199906],[-71.35246,41.83132899906],[-71.352314,41.83124199906],[-71.35223,41.83120099906],[-71.352141,41.83117499906],[-71.352081,41.83117199906],[-71.351974,41.83118199906],[-71.351651,41.83123499906],[-71.35159,41.83123599906],[-71.35153,41.83122599906],[-71.351437,41.83119599906],[-71.351385,41.83116599906],[-71.35122,41.83104799906],[-71.351182,41.83100299906],[-71.351099,41.83086999906],[-71.351074,41.83084999906],[-71.350961,41.83097199906],[-71.350914,41.83102399906],[-71.350311,41.83166099906],[-71.350198,41.83176299906],[-71.350105,41.83184799906],[-71.34993,41.83194399906],[-71.349739,41.83203899906],[-71.349579,41.83210399906],[-71.348877,41.83235499906],[-71.348701,41.83244699906],[-71.348587,41.83253099906],[-71.348559,41.83255899906],[-71.348399,41.83269499906],[-71.348199,41.83292899906],[-71.34813,41.83295599906],[-71.348061,41.83302299906],[-71.348007,41.83309599906],[-71.347984,41.83312599906],[-71.347911,41.83323799906],[-71.347874,41.83330099906],[-71.347871,41.83336599906],[-71.347817,41.83342299906],[-71.34787,41.83352299906],[-71.347923,41.83368699906],[-71.347969,41.83385099906],[-71.348091,41.83443799906],[-71.34819,41.83486899906],[-71.348282,41.83521699906],[-71.348335,41.83534199906],[-71.348389,41.83555599906],[-71.348541,41.83619699906],[-71.348701,41.83685299906],[-71.348831,41.83741799906],[-71.348831,41.83744399906],[-71.348846,41.83749399906],[-71.348969,41.83801299906],[-71.348999,41.83814999906],[-71.34903,41.83825299906],[-71.349159,41.83879899906],[-71.349174,41.83887899906],[-71.34935,41.83967599906],[-71.349472,41.84020599906],[-71.349625,41.84080499906],[-71.349678,41.84098099906],[-71.349754,41.84112499906],[-71.35004,41.84106999906],[-71.350136,41.84105299906],[-71.350609,41.84105299906],[-71.351372,41.84109099906],[-71.351616,41.84110999906],[-71.351791,41.84114499906],[-71.35186,41.84116399906],[-71.351997,41.84119799906],[-71.352638,41.84142699906],[-71.35302,41.84155699906],[-71.353271,41.84161799906],[-71.353378,41.84162099906],[-71.353569,41.84161799906],[-71.353714,41.84158699906],[-71.353836,41.84153699906],[-71.353996,41.84142699906],[-71.354126,41.84130499906],[-71.354327,41.84105999906],[-71.354492,41.84085799906],[-71.354973,41.84030199906],[-71.355461,41.83971399906],[-71.355835,41.83925199906],[-71.356209,41.83876399906],[-71.356613,41.83827999906],[-71.357605,41.83701699906],[-71.35775,41.83681099906],[-71.358192,41.83614699906],[-71.35862,41.83547199906],[-71.359047,41.83484599906],[-71.359459,41.83421299906],[-71.359871,41.83366799906],[-71.359919,41.83360699906],[-71.360012,41.83349099906]]]}}"}, +{"type": "blockgroup", "typeId": 102001, "areaId": 28829, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.377434,41.82928799906],[-71.376747,41.82924999906],[-71.375908,41.82919299906],[-71.375862,41.82918499906],[-71.375782,41.82917799906],[-71.375587,41.82915899906],[-71.375359,41.82911299906],[-71.375313,41.82910499906],[-71.375035,41.82902999906],[-71.374719,41.82894399906],[-71.374443,41.82886899906],[-71.373844,41.82865899906],[-71.373779,41.82863599906],[-71.373138,41.82843599906],[-71.373087,41.82841799906],[-71.373034,41.82839899906],[-71.37294,41.82836499906],[-71.372353,41.82816299906],[-71.371559,41.82788499906],[-71.371162,41.82775099906],[-71.370894,41.82766499906],[-71.37075,41.82761799906],[-71.370712,41.82760199906],[-71.368752,41.82690799906],[-71.368385,41.82678199906],[-71.367584,41.82651899906],[-71.36702,41.82632399906],[-71.366714,41.82622499906],[-71.36644,41.82614099906],[-71.366165,41.82607299906],[-71.365875,41.82601499906],[-71.365593,41.82596999906],[-71.365234,41.82592399906],[-71.36512,41.82590799906],[-71.365074,41.82597399906],[-71.364761,41.82632799906],[-71.364525,41.82655299906],[-71.364449,41.82662599906],[-71.363991,41.82703399906],[-71.363701,41.82733899906],[-71.363625,41.82745699906],[-71.363594,41.82752599906],[-71.363525,41.82770199906],[-71.363358,41.82815199906],[-71.363304,41.82829699906],[-71.363106,41.82882699906],[-71.362953,41.82924999906],[-71.362877,41.82942999906],[-71.362617,41.83006699906],[-71.362343,41.83041799906],[-71.362318,41.83045099906],[-71.362229,41.83056999906],[-71.362083,41.83076499906],[-71.362038,41.83082999906],[-71.361488,41.83156199906],[-71.361198,41.83194699906],[-71.360847,41.83239399906],[-71.360657,41.83264899906],[-71.360435,41.83295099906],[-71.360405,41.83299999906],[-71.360012,41.83349099906],[-71.360067,41.83351299906],[-71.360138,41.83352999906],[-71.360286,41.83352999906],[-71.360404,41.83354799906],[-71.360532,41.83358299906],[-71.360599,41.83358799906],[-71.360651,41.83358599906],[-71.360875,41.83357499906],[-71.360909,41.83357699906],[-71.360971,41.83359399906],[-71.361088,41.83366899906],[-71.361117,41.83367999906],[-71.361147,41.83368599906],[-71.361214,41.83368399906],[-71.361283,41.83367499906],[-71.361316,41.83367499906],[-71.361346,41.83368199906],[-71.361373,41.83369399906],[-71.361393,41.83370999906],[-71.361405,41.83372899906],[-71.361409,41.83381699906],[-71.361442,41.83388699906],[-71.361486,41.83393299906],[-71.361545,41.83397699906],[-71.361808,41.83411199906],[-71.361874,41.83415699906],[-71.361921,41.83420499906],[-71.362007,41.83433299906],[-71.362079,41.83442799906],[-71.362119,41.83451199906],[-71.362138,41.83459099906],[-71.362136,41.83466399906],[-71.362123,41.83469899906],[-71.362064,41.83477999906],[-71.362042,41.83484099906],[-71.362044,41.83486199906],[-71.362046,41.83488899906],[-71.362069,41.83492099906],[-71.362138,41.83498299906],[-71.36223,41.83510099906],[-71.362242,41.83513799906],[-71.362244,41.83521799906],[-71.362194,41.83533299906],[-71.36218,41.83538599906],[-71.362183,41.83542299906],[-71.362205,41.83545799906],[-71.362226,41.83547299906],[-71.362238,41.83549799906],[-71.365139,41.83864099906],[-71.368512,41.83881199906],[-71.369,41.83881199906],[-71.371097,41.83848199906],[-71.372996,41.83806499906],[-71.373099,41.83659999906],[-71.373291,41.83516499906],[-71.373613,41.83260199906],[-71.373615,41.83250799906],[-71.373587,41.83248599906],[-71.374284,41.83190399906],[-71.377434,41.82928799906]]]}}"}, +{"type": "blockgroup", "typeId": 102002, "areaId": 28830, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.37011,41.81459799906],[-71.370079,41.81459399906],[-71.369316,41.81441899906],[-71.369303,41.81441599906],[-71.368924,41.81433399906],[-71.367643,41.81407199906],[-71.367575,41.81421599906],[-71.367549,41.81427399906],[-71.367477,41.81445699906],[-71.367226,41.81503299906],[-71.367012,41.81545999906],[-71.366898,41.81569699906],[-71.366722,41.81609299906],[-71.366547,41.81648299906],[-71.366417,41.81673799906],[-71.366104,41.81735999906],[-71.366089,41.81738299906],[-71.36602,41.81745499906],[-71.365677,41.81798899906],[-71.365479,41.81838199906],[-71.365326,41.81884399906],[-71.365273,41.81917999906],[-71.365105,41.81912599906],[-71.36451,41.82012899906],[-71.364235,41.82071299906],[-71.364189,41.82071699906],[-71.364128,41.82072799906],[-71.363724,41.82146099906],[-71.363663,41.82154799906],[-71.363403,41.82195999906],[-71.363297,41.82214699906],[-71.363022,41.82262799906],[-71.36293,41.82277299906],[-71.363609,41.82298299906],[-71.364853,41.82343299906],[-71.366318,41.82390999906],[-71.366539,41.82350899906],[-71.366661,41.82330299906],[-71.366837,41.82302499906],[-71.366859,41.82298299906],[-71.367027,41.82269699906],[-71.367137,41.82254599906],[-71.367253,41.82237299906],[-71.367364,41.82221099906],[-71.367501,41.82195599906],[-71.367612,41.82169599906],[-71.367699,41.82142999906],[-71.367908,41.82075799906],[-71.367928,41.82069399906],[-71.368038,41.82032799906],[-71.368062,41.82024699906],[-71.368093,41.82014199906],[-71.368118,41.82005399906],[-71.368164,41.81988899906],[-71.368416,41.81912199906],[-71.368576,41.81857699906],[-71.368645,41.81839399906],[-71.368698,41.81830599906],[-71.369027,41.81772799906],[-71.369041,41.81767699906],[-71.36927,41.81700899906],[-71.369354,41.81677599906],[-71.369499,41.81634099906],[-71.369667,41.81586499906],[-71.369736,41.81566199906],[-71.369949,41.81504799906],[-71.369965,41.81500999906],[-71.370057,41.81474999906],[-71.37011,41.81459799906]]]}}"}, +{"type": "blockgroup", "typeId": 102003, "areaId": 28831, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.381524,41.81853899906],[-71.381432,41.81850799906],[-71.380989,41.81833599906],[-71.380951,41.81832499906],[-71.380341,41.81805499906],[-71.379608,41.81774499906],[-71.37925,41.81760399906],[-71.378629,41.81738399906],[-71.378484,41.81733099906],[-71.378418,41.81730999906],[-71.37812,41.81720699906],[-71.37764,41.81705099906],[-71.376869,41.81677999906],[-71.375885,41.81644399906],[-71.375153,41.81620799906],[-71.375084,41.81618099906],[-71.374954,41.81613899906],[-71.37413,41.81584899906],[-71.37336,41.81559399906],[-71.372238,41.81520499906],[-71.371826,41.81507099906],[-71.37114,41.81486899906],[-71.370819,41.81478099906],[-71.37011,41.81459799906],[-71.370057,41.81474999906],[-71.369965,41.81500999906],[-71.369949,41.81504799906],[-71.369736,41.81566199906],[-71.369667,41.81586499906],[-71.369499,41.81634099906],[-71.369354,41.81677599906],[-71.36927,41.81700899906],[-71.369041,41.81767699906],[-71.370016,41.81798299906],[-71.370094,41.81800799906],[-71.370709,41.81823299906],[-71.370834,41.81827899906],[-71.371574,41.81853899906],[-71.372337,41.81879399906],[-71.373726,41.81927099906],[-71.374245,41.81947299906],[-71.374565,41.81958399906],[-71.374756,41.81967899906],[-71.374878,41.81968299906],[-71.375267,41.81968299906],[-71.376282,41.81969099906],[-71.3769,41.81969499906],[-71.377281,41.81969799906],[-71.37764,41.81970199906],[-71.378281,41.81970999906],[-71.37896,41.81972099906],[-71.379082,41.81971399906],[-71.379196,41.81969799906],[-71.379341,41.81964899906],[-71.379593,41.81956099906],[-71.37986,41.81946899906],[-71.380348,41.81928999906],[-71.380531,41.81921799906],[-71.381056,41.81884599906],[-71.381324,41.81867199906],[-71.381368,41.81864299906],[-71.381524,41.81853899906]]]}}"}, +{"type": "blockgroup", "typeId": 102004, "areaId": 28832, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.375267,41.81968299906],[-71.374878,41.81968299906],[-71.374756,41.81967899906],[-71.374565,41.81958399906],[-71.374245,41.81947299906],[-71.373726,41.81927099906],[-71.372337,41.81879399906],[-71.371574,41.81853899906],[-71.370834,41.81827899906],[-71.370709,41.81823299906],[-71.370094,41.81800799906],[-71.370016,41.81798299906],[-71.369041,41.81767699906],[-71.369027,41.81772799906],[-71.368698,41.81830599906],[-71.368645,41.81839399906],[-71.368576,41.81857699906],[-71.368416,41.81912199906],[-71.368164,41.81988899906],[-71.368118,41.82005399906],[-71.368093,41.82014199906],[-71.368062,41.82024699906],[-71.368117,41.82025899906],[-71.368244,41.82031199906],[-71.36833,41.82036199906],[-71.36846,41.82043799906],[-71.368594,41.82050799906],[-71.370201,41.82139599906],[-71.370346,41.82147599906],[-71.370498,41.82156299906],[-71.371033,41.82186799906],[-71.371582,41.82218199906],[-71.37178,41.82229599906],[-71.372467,41.82267799906],[-71.372559,41.82272299906],[-71.373268,41.82311599906],[-71.373604,41.82256699906],[-71.373634,41.82250999906],[-71.373962,41.82195299906],[-71.374345,41.82130399906],[-71.374359,41.82128899906],[-71.374733,41.82066299906],[-71.374739,41.82064499906],[-71.375267,41.81968299906]]]}}"}, +{"type": "blockgroup", "typeId": 102005, "areaId": 28833, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.385572,41.81899599906],[-71.385335,41.81899099906],[-71.385214,41.81898999906],[-71.38485,41.81898099906],[-71.384671,41.81897999906],[-71.384048,41.81896999906],[-71.383876,41.81896199906],[-71.383377,41.81893699906],[-71.383238,41.81891899906],[-71.382965,41.81887999906],[-71.382854,41.81886799906],[-71.382785,41.81885499906],[-71.382283,41.81877999906],[-71.381972,41.81869499906],[-71.381771,41.81862799906],[-71.381688,41.81860199906],[-71.381524,41.81853899906],[-71.381368,41.81864299906],[-71.381324,41.81867199906],[-71.381056,41.81884599906],[-71.380531,41.81921799906],[-71.380348,41.81928999906],[-71.37986,41.81946899906],[-71.379593,41.81956099906],[-71.379341,41.81964899906],[-71.379196,41.81969799906],[-71.379082,41.81971399906],[-71.37896,41.81972099906],[-71.378281,41.81970999906],[-71.37764,41.81970199906],[-71.377281,41.81969799906],[-71.3769,41.81969499906],[-71.376282,41.81969099906],[-71.375267,41.81968299906],[-71.374739,41.82064499906],[-71.374733,41.82066299906],[-71.374359,41.82128899906],[-71.374345,41.82130399906],[-71.373962,41.82195299906],[-71.373634,41.82250999906],[-71.373604,41.82256699906],[-71.373268,41.82311599906],[-71.373383,41.82317699906],[-71.373978,41.82351699906],[-71.374641,41.82389099906],[-71.375374,41.82430599906],[-71.375526,41.82439799906],[-71.375946,41.82463499906],[-71.37616,41.82475299906],[-71.376846,41.82513799906],[-71.37722,41.82534399906],[-71.377403,41.82545499906],[-71.377556,41.82555799906],[-71.377678,41.82567999906],[-71.377693,41.82572199906],[-71.377731,41.82580599906],[-71.377731,41.82591199906],[-71.377693,41.82605399906],[-71.377617,41.82614499906],[-71.377495,41.82627899906],[-71.377396,41.82634399906],[-71.377197,41.82648099906],[-71.376808,41.82670599906],[-71.376106,41.82709499906],[-71.375961,41.82717899906],[-71.375198,41.82761399906],[-71.375122,41.82765199906],[-71.374832,41.82780099906],[-71.374462,41.82795699906],[-71.374108,41.82811199906],[-71.374069,41.82812899906],[-71.373665,41.82824699906],[-71.373589,41.82827399906],[-71.373344,41.82834199906],[-71.373087,41.82841799906],[-71.373138,41.82843599906],[-71.373779,41.82863599906],[-71.373844,41.82865899906],[-71.374443,41.82886899906],[-71.374719,41.82894399906],[-71.375035,41.82902999906],[-71.375313,41.82910499906],[-71.375359,41.82911299906],[-71.375587,41.82915899906],[-71.375782,41.82917799906],[-71.375862,41.82918499906],[-71.375908,41.82919299906],[-71.376747,41.82924999906],[-71.377434,41.82928799906],[-71.377498,41.82920199906],[-71.377563,41.82911699906],[-71.379453,41.82665499906],[-71.379509,41.82655699906],[-71.37957,41.82648299906],[-71.379871,41.82612599906],[-71.379971,41.82597199906],[-71.38008,41.82582299906],[-71.380214,41.82566599906],[-71.380445,41.82536599906],[-71.380731,41.82502299906],[-71.38089,41.82481399906],[-71.381028,41.82464199906],[-71.381043,41.82462199906],[-71.38133,41.82423299906],[-71.381418,41.82410399906],[-71.381491,41.82402799906],[-71.381686,41.82387299906],[-71.381994,41.82364299906],[-71.382202,41.82346999906],[-71.382255,41.82340199906],[-71.382493,41.82312099906],[-71.382797,41.82269499906],[-71.382814,41.82261999906],[-71.382942,41.82249599906],[-71.38309,41.82232699906],[-71.383963,41.82118099906],[-71.384384,41.82062599906],[-71.384464,41.82060199906],[-71.384553,41.82054799906],[-71.385031,41.82019499906],[-71.385052,41.82014499906],[-71.38509,41.82000999906],[-71.385184,41.81979999906],[-71.385228,41.81966199906],[-71.385229,41.81959099906],[-71.385222,41.81947899906],[-71.385255,41.81941399906],[-71.385276,41.81939299906],[-71.385379,41.81933999906],[-71.385417,41.81929699906],[-71.385445,41.81922399906],[-71.38547,41.81915699906],[-71.385572,41.81899599906]]]}}"}, +{"type": "blockgroup", "typeId": 102006, "areaId": 28834, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.377731,41.82580599906],[-71.377693,41.82572199906],[-71.377678,41.82567999906],[-71.377556,41.82555799906],[-71.377403,41.82545499906],[-71.37722,41.82534399906],[-71.376846,41.82513799906],[-71.37616,41.82475299906],[-71.375946,41.82463499906],[-71.375526,41.82439799906],[-71.375374,41.82430599906],[-71.374641,41.82389099906],[-71.373978,41.82351699906],[-71.373383,41.82317699906],[-71.373268,41.82311599906],[-71.372559,41.82272299906],[-71.372467,41.82267799906],[-71.37178,41.82229599906],[-71.371582,41.82218199906],[-71.371033,41.82186799906],[-71.370498,41.82156299906],[-71.370346,41.82147599906],[-71.370201,41.82139599906],[-71.368594,41.82050799906],[-71.36846,41.82043799906],[-71.36833,41.82036199906],[-71.368244,41.82031199906],[-71.368117,41.82025899906],[-71.368062,41.82024699906],[-71.368038,41.82032799906],[-71.367928,41.82069399906],[-71.367908,41.82075799906],[-71.367699,41.82142999906],[-71.367612,41.82169599906],[-71.367501,41.82195599906],[-71.367364,41.82221099906],[-71.367253,41.82237299906],[-71.367137,41.82254599906],[-71.367027,41.82269699906],[-71.366859,41.82298299906],[-71.366837,41.82302499906],[-71.366661,41.82330299906],[-71.366539,41.82350899906],[-71.366318,41.82390999906],[-71.365959,41.82452799906],[-71.365936,41.82456199906],[-71.365677,41.82501999906],[-71.365623,41.82512299906],[-71.365577,41.82520199906],[-71.365547,41.82525299906],[-71.365475,41.82536999906],[-71.365343,41.82557599906],[-71.365341,41.82557899906],[-71.365239,41.82573799906],[-71.36512,41.82590799906],[-71.365234,41.82592399906],[-71.365593,41.82596999906],[-71.365875,41.82601499906],[-71.366165,41.82607299906],[-71.36644,41.82614099906],[-71.366714,41.82622499906],[-71.36702,41.82632399906],[-71.367584,41.82651899906],[-71.368385,41.82678199906],[-71.368752,41.82690799906],[-71.370712,41.82760199906],[-71.37075,41.82761799906],[-71.370894,41.82766499906],[-71.371162,41.82775099906],[-71.371559,41.82788499906],[-71.372353,41.82816299906],[-71.37294,41.82836499906],[-71.373034,41.82839899906],[-71.373087,41.82841799906],[-71.373344,41.82834199906],[-71.373589,41.82827399906],[-71.373665,41.82824699906],[-71.374069,41.82812899906],[-71.374108,41.82811199906],[-71.374462,41.82795699906],[-71.374832,41.82780099906],[-71.375122,41.82765199906],[-71.375198,41.82761399906],[-71.375961,41.82717899906],[-71.376106,41.82709499906],[-71.376808,41.82670599906],[-71.377197,41.82648099906],[-71.377396,41.82634399906],[-71.377495,41.82627899906],[-71.377617,41.82614499906],[-71.377693,41.82605399906],[-71.377731,41.82591199906],[-71.377731,41.82580599906]]]}}"}, +{"type": "blockgroup", "typeId": 103001, "areaId": 28835, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.363594,41.82752599906],[-71.362649,41.82718099906],[-71.362858,41.82686999906],[-71.36322,41.82633199906],[-71.362625,41.82611799906],[-71.362521,41.82607899906],[-71.36164,41.82575299906],[-71.361176,41.82558099906],[-71.359566,41.82501199906],[-71.35994,41.82445499906],[-71.360069,41.82424199906],[-71.360413,41.82363499906],[-71.360711,41.82314399906],[-71.360862,41.82289499906],[-71.360909,41.82281899906],[-71.361005,41.82266799906],[-71.36129,41.82222399906],[-71.361656,41.82160199906],[-71.361662,41.82158399906],[-71.36174,41.82145699906],[-71.361961,41.82105999906],[-71.361862,41.82107899906],[-71.360985,41.82120499906],[-71.360531,41.82127399906],[-71.360095,41.82134099906],[-71.359344,41.82145699906],[-71.358208,41.82162099906],[-71.357674,41.82169299906],[-71.357422,41.82171599906],[-71.356941,41.82174299906],[-71.35663,41.82176699906],[-71.356191,41.82180199906],[-71.356163,41.82180399906],[-71.356125,41.82180399906],[-71.356075,41.82180799906],[-71.355995,41.82181499906],[-71.355662,41.82183599906],[-71.355278,41.82186099906],[-71.354393,41.82192599906],[-71.353683,41.82198299906],[-71.35331,41.82202499906],[-71.352692,41.82212799906],[-71.352341,41.82220499906],[-71.351379,41.82238799906],[-71.349945,41.82267399906],[-71.349403,41.82277699906],[-71.349305,41.82279599906],[-71.348802,41.82289499906],[-71.348327,41.82298799906],[-71.348007,41.82305099906],[-71.347854,41.82307999906],[-71.347496,41.82315799906],[-71.347545,41.82324599906],[-71.346315,41.82556799906],[-71.346095,41.82598399906],[-71.346265,41.82597999906],[-71.346301,41.82597599906],[-71.346368,41.82595499906],[-71.346507,41.82589299906],[-71.346911,41.82564799906],[-71.347011,41.82557799906],[-71.347214,41.82541599906],[-71.347364,41.82531599906],[-71.347515,41.82523899906],[-71.347604,41.82520199906],[-71.34768,41.82519199906],[-71.347738,41.82518399906],[-71.34777,41.82517199906],[-71.347829,41.82513299906],[-71.348004,41.82499199906],[-71.348076,41.82492699906],[-71.348156,41.82487899906],[-71.348241,41.82484399906],[-71.348301,41.82483299906],[-71.348359,41.82483299906],[-71.348418,41.82484399906],[-71.348444,41.82485299906],[-71.348466,41.82486599906],[-71.348481,41.82488199906],[-71.34849,41.82490299906],[-71.34849,41.82495499906],[-71.348453,41.82507199906],[-71.348451,41.82515999906],[-71.34846,41.82521199906],[-71.348485,41.82525399906],[-71.348503,41.82527299906],[-71.348555,41.82530299906],[-71.348708,41.82536899906],[-71.348799,41.82540799906],[-71.348901,41.82544399906],[-71.348916,41.82545899906],[-71.348926,41.82549699906],[-71.348919,41.82556999906],[-71.348924,41.82559299906],[-71.348937,41.82561399906],[-71.348961,41.82563399906],[-71.348992,41.82565099906],[-71.349067,41.82567599906],[-71.349238,41.82569399906],[-71.349356,41.82571899906],[-71.349434,41.82572799906],[-71.349624,41.82572399906],[-71.349785,41.82570999906],[-71.349923,41.82568799906],[-71.349985,41.82568799906],[-71.350046,41.82569999906],[-71.350096,41.82572399906],[-71.350122,41.82575599906],[-71.350133,41.82577799906],[-71.350148,41.82588799906],[-71.350129,41.82596099906],[-71.350129,41.82598299906],[-71.350155,41.82605399906],[-71.350159,41.82607999906],[-71.350151,41.82613799906],[-71.350076,41.82639099906],[-71.34995,41.82674299906],[-71.349918,41.82680099906],[-71.349848,41.82689299906],[-71.349758,41.82697299906],[-71.349654,41.82705299906],[-71.349516,41.82713899906],[-71.349444,41.82720699906],[-71.34939,41.82724599906],[-71.349359,41.82728199906],[-71.349349,41.82730299906],[-71.349346,41.82735799906],[-71.349383,41.82752699906],[-71.349389,41.82762199906],[-71.349484,41.82787599906],[-71.349559,41.82798699906],[-71.349587,41.82805299906],[-71.3496,41.82811999906],[-71.349601,41.82823599906],[-71.349563,41.82835799906],[-71.349558,41.82841599906],[-71.349559,41.82848099906],[-71.349554,41.82850299906],[-71.349543,41.82852299906],[-71.349522,41.82854099906],[-71.349495,41.82855699906],[-71.349463,41.82856699906],[-71.349431,41.82856999906],[-71.349401,41.82856599906],[-71.349326,41.82853099906],[-71.349302,41.82852499906],[-71.349278,41.82853099906],[-71.349254,41.82854399906],[-71.349229,41.82856499906],[-71.349091,41.82876199906],[-71.34908,41.82878699906],[-71.349076,41.82881399906],[-71.34908,41.82884199906],[-71.349119,41.82893599906],[-71.349147,41.82904899906],[-71.349196,41.82916799906],[-71.349241,41.82924099906],[-71.349337,41.82936099906],[-71.349414,41.82950799906],[-71.349455,41.82956399906],[-71.349505,41.82960699906],[-71.34953,41.82961899906],[-71.349556,41.82962399906],[-71.349581,41.82962299906],[-71.34961,41.82961299906],[-71.349627,41.82959899906],[-71.349695,41.82951799906],[-71.349737,41.82948399906],[-71.34985,41.82942599906],[-71.34991,41.82940599906],[-71.349941,41.82940299906],[-71.349972,41.82940599906],[-71.350001,41.82941899906],[-71.350024,41.82943899906],[-71.350087,41.82951399906],[-71.350176,41.82959599906],[-71.350199,41.82962699906],[-71.350257,41.82975599906],[-71.350264,41.82978699906],[-71.350263,41.82981599906],[-71.350253,41.82984299906],[-71.350234,41.82986399906],[-71.350209,41.82987999906],[-71.35007,41.82992299906],[-71.350011,41.82995399906],[-71.349989,41.82996999906],[-71.349976,41.82998599906],[-71.34997,41.83001499906],[-71.34999,41.83004899906],[-71.350022,41.83006599906],[-71.350071,41.83007699906],[-71.350174,41.83008099906],[-71.350336,41.83006399906],[-71.350479,41.83006399906],[-71.350527,41.83005299906],[-71.350547,41.83004299906],[-71.35056,41.83002699906],[-71.350568,41.82995899906],[-71.350602,41.82989999906],[-71.350636,41.82986799906],[-71.350665,41.82985399906],[-71.350702,41.82985399906],[-71.35074,41.82986999906],[-71.350781,41.82990099906],[-71.350843,41.82996599906],[-71.351022,41.83009599906],[-71.351048,41.83012099906],[-71.351083,41.83017599906],[-71.351089,41.83020699906],[-71.351085,41.83023999906],[-71.351051,41.83033599906],[-71.351051,41.83036999906],[-71.351075,41.83045799906],[-71.351081,41.83052699906],[-71.351076,41.83055999906],[-71.351047,41.83062099906],[-71.350988,41.83072199906],[-71.350985,41.83075899906],[-71.351007,41.83079399906],[-71.351074,41.83084999906],[-71.351099,41.83086999906],[-71.351182,41.83100299906],[-71.35122,41.83104799906],[-71.351385,41.83116599906],[-71.351437,41.83119599906],[-71.35153,41.83122599906],[-71.35159,41.83123599906],[-71.351651,41.83123499906],[-71.351974,41.83118199906],[-71.352081,41.83117199906],[-71.352141,41.83117499906],[-71.35223,41.83120099906],[-71.352314,41.83124199906],[-71.35246,41.83132899906],[-71.352511,41.83134199906],[-71.352595,41.83134399906],[-71.352616,41.83135399906],[-71.352652,41.83139299906],[-71.352808,41.83146699906],[-71.352885,41.83151499906],[-71.352944,41.83156699906],[-71.35299,41.83161999906],[-71.353002,41.83163999906],[-71.353006,41.83166299906],[-71.353004,41.83168699906],[-71.352926,41.83189799906],[-71.352922,41.83195399906],[-71.35294,41.83198799906],[-71.352982,41.83201599906],[-71.353039,41.83203499906],[-71.353108,41.83204299906],[-71.353247,41.83203899906],[-71.353317,41.83204899906],[-71.353559,41.83209799906],[-71.353636,41.83210899906],[-71.35388,41.83210699906],[-71.354055,41.83210599906],[-71.354167,41.83209499906],[-71.354256,41.83207499906],[-71.354311,41.83205599906],[-71.354359,41.83202899906],[-71.354395,41.83199599906],[-71.35444,41.83192799906],[-71.354459,41.83191199906],[-71.354511,41.83188899906],[-71.354576,41.83188299906],[-71.354799,41.83189699906],[-71.35487,41.83191099906],[-71.354911,41.83192399906],[-71.354939,41.83193299906],[-71.354997,41.83196399906],[-71.355047,41.83200399906],[-71.355108,41.83207799906],[-71.355123,41.83210299906],[-71.355132,41.83212899906],[-71.355122,41.83226199906],[-71.355136,41.83231899906],[-71.35517,41.83238099906],[-71.35527,41.83250099906],[-71.355293,41.83251999906],[-71.355389,41.83259999906],[-71.355489,41.83266599906],[-71.355563,41.83269599906],[-71.355642,41.83271099906],[-71.355732,41.83271799906],[-71.356036,41.83272599906],[-71.356072,41.83272799906],[-71.356209,41.83273799906],[-71.356422,41.83279999906],[-71.356629,41.83284199906],[-71.35673,41.83287099906],[-71.356822,41.83290899906],[-71.356883,41.83293399906],[-71.357062,41.83302399906],[-71.357192,41.83309499906],[-71.357285,41.83313499906],[-71.357385,41.83315799906],[-71.357435,41.83316299906],[-71.357534,41.83315799906],[-71.35795,41.83310699906],[-71.358037,41.83309199906],[-71.358176,41.83306799906],[-71.358266,41.83306199906],[-71.358407,41.83307099906],[-71.358624,41.83311199906],[-71.358692,41.83313699906],[-71.358819,41.83320799906],[-71.359005,41.83327399906],[-71.359035,41.83328199906],[-71.359156,41.83331399906],[-71.359326,41.83334199906],[-71.359532,41.83335399906],[-71.359643,41.83337799906],[-71.359737,41.83340599906],[-71.359831,41.83342899906],[-71.360012,41.83349099906],[-71.360405,41.83299999906],[-71.360435,41.83295099906],[-71.360657,41.83264899906],[-71.360847,41.83239399906],[-71.361198,41.83194699906],[-71.361488,41.83156199906],[-71.362038,41.83082999906],[-71.362083,41.83076499906],[-71.362229,41.83056999906],[-71.362318,41.83045099906],[-71.362343,41.83041799906],[-71.362617,41.83006699906],[-71.362877,41.82942999906],[-71.362953,41.82924999906],[-71.363106,41.82882699906],[-71.363304,41.82829699906],[-71.363358,41.82815199906],[-71.363525,41.82770199906],[-71.363594,41.82752599906]]]}}"}, +{"type": "blockgroup", "typeId": 103002, "areaId": 28836, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.366318,41.82390999906],[-71.364853,41.82343299906],[-71.363609,41.82298299906],[-71.36293,41.82277299906],[-71.363022,41.82262799906],[-71.363297,41.82214699906],[-71.363403,41.82195999906],[-71.363663,41.82154799906],[-71.363724,41.82146099906],[-71.364128,41.82072799906],[-71.364189,41.82071699906],[-71.364235,41.82071299906],[-71.36451,41.82012899906],[-71.365105,41.81912599906],[-71.364548,41.81893499906],[-71.364288,41.81884399906],[-71.36425,41.81883199906],[-71.363861,41.81867599906],[-71.363503,41.81853899906],[-71.363373,41.81848499906],[-71.362701,41.81822599906],[-71.362213,41.81807699906],[-71.361938,41.81799699906],[-71.36187,41.81797399906],[-71.36129,41.81780199906],[-71.361046,41.81772599906],[-71.360596,41.81758899906],[-71.360313,41.81750099906],[-71.35994,41.81738699906],[-71.359703,41.81731399906],[-71.359253,41.81717299906],[-71.359047,41.81710799906],[-71.358459,41.81693599906],[-71.358368,41.81690999906],[-71.357925,41.81678399906],[-71.357658,41.81670799906],[-71.357092,41.81652499906],[-71.35675,41.81641399906],[-71.35672,41.81640199906],[-71.356393,41.81623499906],[-71.355682,41.81587199906],[-71.355286,41.81568499906],[-71.354828,41.81545599906],[-71.354309,41.81520799906],[-71.353615,41.81487999906],[-71.353386,41.81476199906],[-71.353241,41.81469299906],[-71.35273,41.81435799906],[-71.352631,41.81428499906],[-71.351967,41.81383899906],[-71.351433,41.81346499906],[-71.351166,41.81328599906],[-71.3508,41.81305699906],[-71.350143,41.81269499906],[-71.349915,41.81256899906],[-71.349098,41.81212199906],[-71.348549,41.81182899906],[-71.348473,41.81178299906],[-71.34816,41.81159599906],[-71.347588,41.81127899906],[-71.347458,41.81121399906],[-71.34739,41.81118499906],[-71.347343,41.81116499906],[-71.34671,41.81090499906],[-71.346184,41.81072199906],[-71.345711,41.81053199906],[-71.34568,41.81052399906],[-71.345222,41.81035599906],[-71.344881,41.81021799906],[-71.344505,41.81006599906],[-71.343857,41.80982599906],[-71.34288,41.80945199906],[-71.342308,41.80923799906],[-71.341446,41.80889899906],[-71.340424,41.80850599906],[-71.340294,41.80844499906],[-71.340103,41.80843399906],[-71.33989,41.80840299906],[-71.3396,41.80839899906],[-71.339369,41.80845099906],[-71.339325,41.80846099906],[-71.339332,41.80852699906],[-71.340167,41.81002399906],[-71.340292,41.81023699906],[-71.340405,41.81044199906],[-71.340635,41.81086099906],[-71.341515,41.81244499906],[-71.341593,41.81257899906],[-71.343089,41.81526099906],[-71.347371,41.82293199906],[-71.347496,41.82315799906],[-71.347854,41.82307999906],[-71.348007,41.82305099906],[-71.348327,41.82298799906],[-71.348802,41.82289499906],[-71.349305,41.82279599906],[-71.349403,41.82277699906],[-71.349945,41.82267399906],[-71.351379,41.82238799906],[-71.352341,41.82220499906],[-71.352692,41.82212799906],[-71.35331,41.82202499906],[-71.353683,41.82198299906],[-71.354393,41.82192599906],[-71.355278,41.82186099906],[-71.355662,41.82183599906],[-71.355995,41.82181499906],[-71.356075,41.82180799906],[-71.356125,41.82180399906],[-71.356163,41.82180399906],[-71.356191,41.82180199906],[-71.35663,41.82176699906],[-71.356941,41.82174299906],[-71.357422,41.82171599906],[-71.357674,41.82169299906],[-71.358208,41.82162099906],[-71.359344,41.82145699906],[-71.360095,41.82134099906],[-71.360531,41.82127399906],[-71.360985,41.82120499906],[-71.361862,41.82107899906],[-71.361961,41.82105999906],[-71.36174,41.82145699906],[-71.361662,41.82158399906],[-71.361656,41.82160199906],[-71.36129,41.82222399906],[-71.361005,41.82266799906],[-71.360909,41.82281899906],[-71.360862,41.82289499906],[-71.360711,41.82314399906],[-71.360413,41.82363499906],[-71.360069,41.82424199906],[-71.35994,41.82445499906],[-71.359566,41.82501199906],[-71.361176,41.82558099906],[-71.36164,41.82575299906],[-71.362521,41.82607899906],[-71.362625,41.82611799906],[-71.36322,41.82633199906],[-71.362858,41.82686999906],[-71.362649,41.82718099906],[-71.363594,41.82752599906],[-71.363625,41.82745699906],[-71.363701,41.82733899906],[-71.363991,41.82703399906],[-71.364449,41.82662599906],[-71.364525,41.82655299906],[-71.364761,41.82632799906],[-71.365074,41.82597399906],[-71.36512,41.82590799906],[-71.365239,41.82573799906],[-71.365341,41.82557899906],[-71.365343,41.82557599906],[-71.365475,41.82536999906],[-71.365547,41.82525299906],[-71.365577,41.82520199906],[-71.365623,41.82512299906],[-71.365677,41.82501999906],[-71.365936,41.82456199906],[-71.365959,41.82452799906],[-71.366318,41.82390999906]]]}}"}, +{"type": "blockgroup", "typeId": 103003, "areaId": 28837, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.367643,41.81407199906],[-71.367609,41.81406499906],[-71.367098,41.81395699906],[-71.365894,41.81370199906],[-71.364971,41.81350699906],[-71.364632,41.81343499906],[-71.363408,41.81318499906],[-71.363266,41.81315599906],[-71.362788,41.81305499906],[-71.362003,41.81288899906],[-71.361957,41.81287899906],[-71.361071,41.81269199906],[-71.361013,41.81267999906],[-71.360863,41.81264799906],[-71.360252,41.81251899906],[-71.360163,41.81249999906],[-71.35941,41.81233799906],[-71.358475,41.81213799906],[-71.358131,41.81206099906],[-71.357368,41.81193199906],[-71.354752,41.81138599906],[-71.352631,41.81095499906],[-71.351357,41.81067999906],[-71.351242,41.81065799906],[-71.350937,41.81058899906],[-71.348412,41.81006999906],[-71.347916,41.80996099906],[-71.347771,41.80992899906],[-71.347427,41.80985999906],[-71.346886,41.80973799906],[-71.345772,41.80945199906],[-71.345343,41.80932799906],[-71.345284,41.80931099906],[-71.344947,41.80918899906],[-71.344475,41.80901699906],[-71.343559,41.80866999906],[-71.34314,41.80849499906],[-71.342575,41.80822799906],[-71.341881,41.80787299906],[-71.341805,41.80783799906],[-71.340912,41.80738399906],[-71.340523,41.80717099906],[-71.339596,41.80670799906],[-71.339466,41.80664799906],[-71.33942,41.80673299906],[-71.339408,41.80677799906],[-71.339404,41.80679099906],[-71.339358,41.80695899906],[-71.339452,41.80712099906],[-71.339428,41.80732799906],[-71.33922,41.80766899906],[-71.339243,41.80785599906],[-71.339186,41.80794399906],[-71.339195,41.80798999906],[-71.339214,41.80801799906],[-71.339341,41.80804299906],[-71.339379,41.80807799906],[-71.339383,41.80810999906],[-71.339315,41.80823899906],[-71.339325,41.80846099906],[-71.339369,41.80845099906],[-71.3396,41.80839899906],[-71.33989,41.80840299906],[-71.340103,41.80843399906],[-71.340294,41.80844499906],[-71.340424,41.80850599906],[-71.341446,41.80889899906],[-71.342308,41.80923799906],[-71.34288,41.80945199906],[-71.343857,41.80982599906],[-71.344505,41.81006599906],[-71.344881,41.81021799906],[-71.345222,41.81035599906],[-71.34568,41.81052399906],[-71.345711,41.81053199906],[-71.346184,41.81072199906],[-71.34671,41.81090499906],[-71.347343,41.81116499906],[-71.34739,41.81118499906],[-71.347458,41.81121399906],[-71.347588,41.81127899906],[-71.34816,41.81159599906],[-71.348473,41.81178299906],[-71.348549,41.81182899906],[-71.349098,41.81212199906],[-71.349915,41.81256899906],[-71.350143,41.81269499906],[-71.3508,41.81305699906],[-71.351166,41.81328599906],[-71.351433,41.81346499906],[-71.351967,41.81383899906],[-71.352631,41.81428499906],[-71.35273,41.81435799906],[-71.353241,41.81469299906],[-71.353386,41.81476199906],[-71.353615,41.81487999906],[-71.354309,41.81520799906],[-71.354828,41.81545599906],[-71.355286,41.81568499906],[-71.355682,41.81587199906],[-71.356393,41.81623499906],[-71.35672,41.81640199906],[-71.35675,41.81641399906],[-71.357092,41.81652499906],[-71.357658,41.81670799906],[-71.357925,41.81678399906],[-71.358368,41.81690999906],[-71.358459,41.81693599906],[-71.359047,41.81710799906],[-71.359253,41.81717299906],[-71.359703,41.81731399906],[-71.35994,41.81738699906],[-71.360313,41.81750099906],[-71.360596,41.81758899906],[-71.361046,41.81772599906],[-71.36129,41.81780199906],[-71.36187,41.81797399906],[-71.361938,41.81799699906],[-71.362213,41.81807699906],[-71.362701,41.81822599906],[-71.363373,41.81848499906],[-71.363503,41.81853899906],[-71.363861,41.81867599906],[-71.36425,41.81883199906],[-71.364288,41.81884399906],[-71.364548,41.81893499906],[-71.365105,41.81912599906],[-71.365273,41.81917999906],[-71.365326,41.81884399906],[-71.365479,41.81838199906],[-71.365677,41.81798899906],[-71.36602,41.81745499906],[-71.366089,41.81738299906],[-71.366104,41.81735999906],[-71.366417,41.81673799906],[-71.366547,41.81648299906],[-71.366722,41.81609299906],[-71.366898,41.81569699906],[-71.367012,41.81545999906],[-71.367226,41.81503299906],[-71.367477,41.81445699906],[-71.367549,41.81427399906],[-71.367575,41.81421599906],[-71.367643,41.81407199906]]]}}"}, +{"type": "blockgroup", "typeId": 104001, "areaId": 28838, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.371597,41.81037499906],[-71.370041,41.81008899906],[-71.369186,41.80993299906],[-71.369161,41.80993199906],[-71.36834,41.80977999906],[-71.368317,41.80977299906],[-71.36747,41.80961999906],[-71.367096,41.80954399906],[-71.366323,41.80941099906],[-71.366119,41.80937599906],[-71.365776,41.80930299906],[-71.365695,41.80928999906],[-71.365471,41.80925399906],[-71.365311,41.80924199906],[-71.365189,41.80926899906],[-71.365013,41.80934499906],[-71.364792,41.80942899906],[-71.365051,41.80975699906],[-71.365295,41.81008499906],[-71.365318,41.81014299906],[-71.365349,41.81024899906],[-71.365356,41.81034099906],[-71.365349,41.81043199906],[-71.365273,41.81070299906],[-71.365112,41.81114199906],[-71.364876,41.81181699906],[-71.364693,41.81227899906],[-71.364624,41.81253099906],[-71.363815,41.81232499906],[-71.363716,41.81229799906],[-71.363106,41.81214499906],[-71.362846,41.81278599906],[-71.36281,41.81295199906],[-71.362788,41.81305499906],[-71.363266,41.81315599906],[-71.363408,41.81318499906],[-71.364632,41.81343499906],[-71.364971,41.81350699906],[-71.365894,41.81370199906],[-71.367098,41.81395699906],[-71.367609,41.81406499906],[-71.367643,41.81407199906],[-71.368924,41.81433399906],[-71.369303,41.81441599906],[-71.369316,41.81441899906],[-71.370079,41.81459399906],[-71.37011,41.81459799906],[-71.370216,41.81430099906],[-71.370285,41.81409799906],[-71.370453,41.81364099906],[-71.370605,41.81322499906],[-71.370689,41.81303799906],[-71.370865,41.81261799906],[-71.371078,41.81216799906],[-71.371284,41.81167199906],[-71.371391,41.81143999906],[-71.371429,41.81131399906],[-71.371479,41.81097899906],[-71.371498,41.81085199906],[-71.371567,41.81053499906],[-71.371597,41.81037499906]]]}}"}, +{"type": "blockgroup", "typeId": 104002, "areaId": 28839, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.374062,41.80276099906],[-71.37307,41.80256699906],[-71.372269,41.80242199906],[-71.371048,41.80219199906],[-71.371025,41.80218499906],[-71.369324,41.80186499906],[-71.368912,41.80177299906],[-71.368103,41.80163599906],[-71.367508,41.80152099906],[-71.36673,41.80137999906],[-71.366493,41.80203599906],[-71.366051,41.80334899906],[-71.365753,41.80418799906],[-71.365593,41.80465699906],[-71.36528,41.80534399906],[-71.36514,41.80573599906],[-71.365128,41.80577099906],[-71.365112,41.80580499906],[-71.364868,41.80647999906],[-71.364639,41.80713699906],[-71.364433,41.80765899906],[-71.364273,41.80811299906],[-71.364128,41.80856299906],[-71.364792,41.80942899906],[-71.365013,41.80934499906],[-71.365189,41.80926899906],[-71.365311,41.80924199906],[-71.365471,41.80925399906],[-71.365695,41.80928999906],[-71.365776,41.80930299906],[-71.366119,41.80937599906],[-71.366323,41.80941099906],[-71.367096,41.80954399906],[-71.36747,41.80961999906],[-71.368317,41.80977299906],[-71.36834,41.80977999906],[-71.369161,41.80993199906],[-71.369186,41.80993299906],[-71.370041,41.81008899906],[-71.371597,41.81037499906],[-71.37162,41.81024599906],[-71.371773,41.80975699906],[-71.371857,41.80947499906],[-71.371948,41.80915499906],[-71.372047,41.80881899906],[-71.372269,41.80809399906],[-71.372365,41.80774899906],[-71.372375,41.80773199906],[-71.372452,41.80746799906],[-71.372575,41.80713199906],[-71.372847,41.80639899906],[-71.372925,41.80618999906],[-71.373131,41.80565999906],[-71.373213,41.80543399906],[-71.37326,41.80530499906],[-71.373444,41.80472199906],[-71.373688,41.80393199906],[-71.373866,41.80337599906],[-71.374062,41.80276099906]]]}}"}, +{"type": "blockgroup", "typeId": 104003, "areaId": 28840, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.395258,41.81166899906],[-71.394984,41.81077299906],[-71.394956,41.81068699906],[-71.394915,41.81059099906],[-71.393499,41.80709999906],[-71.391499,41.80599999906],[-71.390099,41.80519999906],[-71.387599,41.80349999906],[-71.385199,41.80209999906],[-71.380799,41.79629999906],[-71.378983,41.79715199906],[-71.378909,41.79718699906],[-71.378772,41.79729899906],[-71.377002,41.79874999906],[-71.376264,41.80067099906],[-71.37623,41.80068099906],[-71.376195,41.80075699906],[-71.376167,41.80075499906],[-71.375847,41.80067099906],[-71.375641,41.80060999906],[-71.37545,41.80052899906],[-71.375328,41.80046099906],[-71.375214,41.80038099906],[-71.374908,41.80046499906],[-71.374825,41.80051399906],[-71.374763,41.80057899906],[-71.374733,41.80061699906],[-71.374596,41.80107899906],[-71.374435,41.80159799906],[-71.374313,41.80195999906],[-71.374062,41.80276099906],[-71.373866,41.80337599906],[-71.373688,41.80393199906],[-71.373444,41.80472199906],[-71.37326,41.80530499906],[-71.373213,41.80543399906],[-71.373131,41.80565999906],[-71.372925,41.80618999906],[-71.372847,41.80639899906],[-71.372575,41.80713199906],[-71.372452,41.80746799906],[-71.372375,41.80773199906],[-71.372365,41.80774899906],[-71.372269,41.80809399906],[-71.372047,41.80881899906],[-71.371948,41.80915499906],[-71.371857,41.80947499906],[-71.371773,41.80975699906],[-71.37162,41.81024599906],[-71.371597,41.81037499906],[-71.371567,41.81053499906],[-71.371689,41.81055499906],[-71.371994,41.81065399906],[-71.372383,41.81077199906],[-71.372803,41.81090899906],[-71.373222,41.81104999906],[-71.373474,41.81113099906],[-71.374062,41.81132499906],[-71.374146,41.81135599906],[-71.374802,41.81155799906],[-71.375496,41.81177499906],[-71.376175,41.81198499906],[-71.376297,41.81202299906],[-71.376991,41.81225999906],[-71.377716,41.81248499906],[-71.378517,41.81276299906],[-71.378845,41.81288099906],[-71.379028,41.81294599906],[-71.379395,41.81306499906],[-71.379654,41.81315999906],[-71.379723,41.81318699906],[-71.380463,41.81343099906],[-71.381178,41.81369499906],[-71.38131,41.81374399906],[-71.382072,41.81399499906],[-71.382874,41.81426599906],[-71.382919,41.81428499906],[-71.383652,41.81454099906],[-71.384444,41.81481799906],[-71.384468,41.81482299906],[-71.385254,41.81510899906],[-71.384888,41.81573199906],[-71.384783,41.81586699906],[-71.3843,41.81667299906],[-71.383835,41.81738699906],[-71.38343,41.81803899906],[-71.383575,41.81810399906],[-71.383629,41.81813799906],[-71.383636,41.81819899906],[-71.383636,41.81826399906],[-71.383606,41.81833299906],[-71.383385,41.81868399906],[-71.383278,41.81885099906],[-71.383238,41.81891899906],[-71.383377,41.81893699906],[-71.383876,41.81896199906],[-71.384048,41.81896999906],[-71.384671,41.81897999906],[-71.38485,41.81898099906],[-71.385214,41.81898999906],[-71.385335,41.81899099906],[-71.385572,41.81899599906],[-71.385862,41.81895399906],[-71.386124,41.81835799906],[-71.386458,41.81796799906],[-71.386619,41.81771299906],[-71.386691,41.81738699906],[-71.387083,41.81637199906],[-71.388498,41.81590099906],[-71.38876,41.81594399906],[-71.389007,41.81598599906],[-71.39102,41.81540699906],[-71.391645,41.81528499906],[-71.391931,41.81522899906],[-71.391982,41.81521999906],[-71.392876,41.81512099906],[-71.393528,41.81475599906],[-71.393809,41.81425499906],[-71.395258,41.81166899906]]]}}"}, +{"type": "blockgroup", "typeId": 104004, "areaId": 28841, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.385254,41.81510899906],[-71.384468,41.81482299906],[-71.384444,41.81481799906],[-71.383652,41.81454099906],[-71.382919,41.81428499906],[-71.382874,41.81426599906],[-71.382072,41.81399499906],[-71.38131,41.81374399906],[-71.381178,41.81369499906],[-71.380463,41.81343099906],[-71.379723,41.81318699906],[-71.379654,41.81315999906],[-71.379395,41.81306499906],[-71.379028,41.81294599906],[-71.378845,41.81288099906],[-71.378517,41.81276299906],[-71.377716,41.81248499906],[-71.377457,41.81273299906],[-71.377281,41.81299999906],[-71.376953,41.81343099906],[-71.376602,41.81395699906],[-71.376259,41.81444499906],[-71.375946,41.81486899906],[-71.375648,41.81530799906],[-71.375237,41.81595599906],[-71.375099,41.81615099906],[-71.375084,41.81618099906],[-71.375153,41.81620799906],[-71.375885,41.81644399906],[-71.376869,41.81677999906],[-71.37764,41.81705099906],[-71.37812,41.81720699906],[-71.378418,41.81730999906],[-71.378484,41.81733099906],[-71.378629,41.81738399906],[-71.37925,41.81760399906],[-71.379608,41.81774499906],[-71.380341,41.81805499906],[-71.380951,41.81832499906],[-71.380989,41.81833599906],[-71.381432,41.81850799906],[-71.381524,41.81853899906],[-71.381688,41.81860199906],[-71.381771,41.81862799906],[-71.381972,41.81869499906],[-71.382283,41.81877999906],[-71.382785,41.81885499906],[-71.382854,41.81886799906],[-71.382965,41.81887999906],[-71.383238,41.81891899906],[-71.383278,41.81885099906],[-71.383385,41.81868399906],[-71.383606,41.81833299906],[-71.383636,41.81826399906],[-71.383636,41.81819899906],[-71.383629,41.81813799906],[-71.383575,41.81810399906],[-71.38343,41.81803899906],[-71.383835,41.81738699906],[-71.3843,41.81667299906],[-71.384783,41.81586699906],[-71.384888,41.81573199906],[-71.385254,41.81510899906]]]}}"}, +{"type": "blockgroup", "typeId": 104005, "areaId": 28842, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.377716,41.81248499906],[-71.376991,41.81225999906],[-71.376297,41.81202299906],[-71.376175,41.81198499906],[-71.375496,41.81177499906],[-71.374802,41.81155799906],[-71.374146,41.81135599906],[-71.374062,41.81132499906],[-71.373474,41.81113099906],[-71.373222,41.81104999906],[-71.372803,41.81090899906],[-71.372383,41.81077199906],[-71.371994,41.81065399906],[-71.371689,41.81055499906],[-71.371567,41.81053499906],[-71.371498,41.81085199906],[-71.371479,41.81097899906],[-71.371429,41.81131399906],[-71.371391,41.81143999906],[-71.371284,41.81167199906],[-71.371078,41.81216799906],[-71.370865,41.81261799906],[-71.370689,41.81303799906],[-71.370605,41.81322499906],[-71.370453,41.81364099906],[-71.370285,41.81409799906],[-71.370216,41.81430099906],[-71.37011,41.81459799906],[-71.370819,41.81478099906],[-71.37114,41.81486899906],[-71.371826,41.81507099906],[-71.372238,41.81520499906],[-71.37336,41.81559399906],[-71.37413,41.81584899906],[-71.374954,41.81613899906],[-71.375084,41.81618099906],[-71.375099,41.81615099906],[-71.375237,41.81595599906],[-71.375648,41.81530799906],[-71.375946,41.81486899906],[-71.376259,41.81444499906],[-71.376602,41.81395699906],[-71.376953,41.81343099906],[-71.377281,41.81299999906],[-71.377457,41.81273299906],[-71.377716,41.81248499906]]]}}"}, +{"type": "blockgroup", "typeId": 105011, "areaId": 28843, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.359833,41.80823899906],[-71.357895,41.80783799906],[-71.357147,41.80766299906],[-71.356934,41.80762099906],[-71.356224,41.80746799906],[-71.355988,41.80742599906],[-71.356323,41.80654499906],[-71.356333,41.80652599906],[-71.356361,41.80633899906],[-71.356384,41.80622099906],[-71.356575,41.80556899906],[-71.35659,41.80549999906],[-71.356789,41.80491299906],[-71.3568,41.80489599906],[-71.356946,41.80444399906],[-71.357002,41.80427199906],[-71.357018,41.80422199906],[-71.35706,41.80409099906],[-71.357239,41.80353199906],[-71.357307,41.80330999906],[-71.357528,41.80261899906],[-71.357529,41.80260099906],[-71.356552,41.80241399906],[-71.355972,41.80231499906],[-71.354156,41.80199099906],[-71.354158,41.80197299906],[-71.354352,41.80134399906],[-71.354362,41.80132699906],[-71.354568,41.80066299906],[-71.354797,41.79999199906],[-71.353348,41.79973599906],[-71.353477,41.79906099906],[-71.353561,41.79868299906],[-71.353638,41.79836299906],[-71.35363,41.79816099906],[-71.35363,41.79802299906],[-71.353622,41.79782099906],[-71.3536,41.79752699906],[-71.353508,41.79703499906],[-71.353442,41.79672499906],[-71.353271,41.79585599906],[-71.352997,41.79580699906],[-71.352432,41.79568499906],[-71.352272,41.79564699906],[-71.352219,41.79563099906],[-71.352034,41.79558099906],[-71.351982,41.79556699906],[-71.351555,41.79544799906],[-71.351456,41.79541399906],[-71.351288,41.79536099906],[-71.351028,41.79527299906],[-71.350533,41.79508199906],[-71.350067,41.79486799906],[-71.349648,41.79466199906],[-71.349197,41.79440299906],[-71.348816,41.79417399906],[-71.348755,41.79413999906],[-71.348099,41.79366299906],[-71.347763,41.79339199906],[-71.347527,41.79321299906],[-71.347023,41.79290399906],[-71.34668,41.79268299906],[-71.346291,41.79246899906],[-71.346123,41.79240799906],[-71.345299,41.79217899906],[-71.345108,41.79210299906],[-71.34476,41.79201399906],[-71.342606,41.79143899906],[-71.342252,41.79134699906],[-71.342026,41.79131499906],[-71.341456,41.79123599906],[-71.340922,41.79121799906],[-71.339932,41.79117699906],[-71.338533,41.79113499906],[-71.337355,41.79109399906],[-71.336343,41.79106199906],[-71.33593,41.79103699906],[-71.335487,41.79094699906],[-71.335213,41.79086299906],[-71.334831,41.79075199906],[-71.334427,41.79054599906],[-71.334206,41.79038199906],[-71.333778,41.78999299906],[-71.333366,41.78948199906],[-71.333153,41.78910099906],[-71.333099,41.78894799906],[-71.333,41.78863099906],[-71.332939,41.78863499906],[-71.332886,41.78864699906],[-71.332637,41.78874699906],[-71.331314,41.78852499906],[-71.330975,41.78842299906],[-71.330508,41.78839199906],[-71.32995,41.78833999906],[-71.329566,41.78829399906],[-71.329476,41.78827899906],[-71.329432,41.78827399906],[-71.329457,41.78832699906],[-71.329494,41.78836199906],[-71.32954,41.78839699906],[-71.32959,41.78842799906],[-71.329681,41.78849799906],[-71.329837,41.78855799906],[-71.329948,41.78859199906],[-71.330132,41.78861499906],[-71.330256,41.78862199906],[-71.330369,41.78863699906],[-71.330415,41.78865399906],[-71.330414,41.78870799906],[-71.330382,41.78874499906],[-71.330278,41.78879199906],[-71.330244,41.78883799906],[-71.330235,41.78888299906],[-71.330271,41.78890999906],[-71.330327,41.78892599906],[-71.330446,41.78896899906],[-71.330482,41.78899499906],[-71.330473,41.78906999906],[-71.330514,41.78911499906],[-71.330601,41.78911499906],[-71.330701,41.78908099906],[-71.330839,41.78906999906],[-71.33096,41.78906999906],[-71.331059,41.78909999906],[-71.331095,41.78914499906],[-71.331104,41.78917899906],[-71.331087,41.78920199906],[-71.331059,41.78922399906],[-71.330998,41.78929399906],[-71.330985,41.78932099906],[-71.33098,41.78942199906],[-71.330995,41.78949699906],[-71.331035,41.78956499906],[-71.331124,41.78956399906],[-71.331206,41.78951699906],[-71.331251,41.78941799906],[-71.331311,41.78934999906],[-71.331393,41.78932399906],[-71.331465,41.78930799906],[-71.331534,41.78931899906],[-71.331622,41.78939799906],[-71.331642,41.78947699906],[-71.331564,41.78955399906],[-71.331564,41.78959199906],[-71.331603,41.78962399906],[-71.331765,41.78969599906],[-71.331861,41.78972499906],[-71.33209,41.78979799906],[-71.332268,41.78989299906],[-71.332382,41.78992499906],[-71.332635,41.79003499906],[-71.332743,41.79015999906],[-71.332773,41.79027499906],[-71.332809,41.79038499906],[-71.332841,41.79051399906],[-71.332811,41.79058099906],[-71.332739,41.79063999906],[-71.332642,41.79065999906],[-71.332516,41.79063899906],[-71.33248,41.79065499906],[-71.332473,41.79070499906],[-71.332507,41.79079999906],[-71.332497,41.79084399906],[-71.332461,41.79086299906],[-71.332211,41.79095699906],[-71.332196,41.79097699906],[-71.332205,41.79099899906],[-71.332256,41.79105799906],[-71.332294,41.79112399906],[-71.332343,41.79120799906],[-71.332466,41.79135099906],[-71.332622,41.79156999906],[-71.332838,41.79193399906],[-71.332931,41.79211399906],[-71.33296,41.79225599906],[-71.333071,41.79241199906],[-71.333155,41.79257199906],[-71.333191,41.79271399906],[-71.333188,41.79278199906],[-71.333175,41.79281599906],[-71.333161,41.79283199906],[-71.33311,41.79286799906],[-71.33308,41.79293699906],[-71.333112,41.79304399906],[-71.333129,41.79306799906],[-71.333148,41.79308499906],[-71.333269,41.79312799906],[-71.333433,41.79316199906],[-71.33351,41.79316199906],[-71.333572,41.79319199906],[-71.33359,41.79323599906],[-71.333541,41.79330299906],[-71.333452,41.79334199906],[-71.333442,41.79336599906],[-71.333473,41.79338999906],[-71.333603,41.79339699906],[-71.333733,41.79343399906],[-71.333868,41.79352799906],[-71.333917,41.79356899906],[-71.333912,41.79361599906],[-71.333858,41.79364999906],[-71.333732,41.79370299906],[-71.333687,41.79374299906],[-71.333678,41.79378299906],[-71.333707,41.79380899906],[-71.333767,41.79381799906],[-71.333875,41.79384399906],[-71.333923,41.79387399906],[-71.333949,41.79390999906],[-71.333992,41.79392599906],[-71.334026,41.79392599906],[-71.334057,41.79390499906],[-71.3341,41.79390499906],[-71.334154,41.79393799906],[-71.334207,41.79400899906],[-71.334238,41.79413999906],[-71.334229,41.79424399906],[-71.334148,41.79433099906],[-71.334112,41.79438799906],[-71.334139,41.79442499906],[-71.334224,41.79443899906],[-71.334381,41.79442499906],[-71.334421,41.79444899906],[-71.334435,41.79447599906],[-71.334399,41.79459299906],[-71.334448,41.79467399906],[-71.334645,41.79483499906],[-71.334811,41.79491299906],[-71.335066,41.79498399906],[-71.335304,41.79502799906],[-71.335487,41.79519599906],[-71.335478,41.79533799906],[-71.335494,41.79537299906],[-71.335525,41.79540399906],[-71.33561,41.79545799906],[-71.335755,41.79552299906],[-71.335814,41.79552799906],[-71.335839,41.79552299906],[-71.335881,41.79550799906],[-71.335926,41.79547399906],[-71.335992,41.79546599906],[-71.336191,41.79550499906],[-71.336369,41.79566299906],[-71.336463,41.79573099906],[-71.336597,41.79575799906],[-71.336663,41.79573999906],[-71.33675,41.79576599906],[-71.336812,41.79576399906],[-71.336875,41.79574399906],[-71.336906,41.79567999906],[-71.337001,41.79558199906],[-71.337136,41.79549799906],[-71.337223,41.79548399906],[-71.337339,41.79553599906],[-71.337546,41.79555299906],[-71.337717,41.79557799906],[-71.337844,41.79556999906],[-71.337887,41.79557199906],[-71.337898,41.79560799906],[-71.337869,41.79568899906],[-71.337913,41.79572499906],[-71.337974,41.79573999906],[-71.338022,41.79573599906],[-71.338069,41.79573799906],[-71.338099,41.79575199906],[-71.338151,41.79578399906],[-71.338337,41.79581799906],[-71.338414,41.79581499906],[-71.338501,41.79582899906],[-71.338739,41.79590899906],[-71.338805,41.79592299906],[-71.338838,41.79593499906],[-71.338859,41.79596599906],[-71.338849,41.79602999906],[-71.339037,41.79620499906],[-71.339157,41.79633799906],[-71.339527,41.79641999906],[-71.339607,41.79638799906],[-71.339705,41.79640699906],[-71.339897,41.79651799906],[-71.339981,41.79659999906],[-71.340097,41.79663299906],[-71.340133,41.79668499906],[-71.340224,41.79674499906],[-71.340209,41.79680999906],[-71.34022,41.79685599906],[-71.340176,41.79691599906],[-71.340092,41.79706499906],[-71.340103,41.79709499906],[-71.340161,41.79711699906],[-71.340219,41.79711399906],[-71.340321,41.79703799906],[-71.340419,41.79701899906],[-71.340481,41.79703299906],[-71.340495,41.79707399906],[-71.340437,41.79717699906],[-71.340393,41.79727799906],[-71.3404,41.79748999906],[-71.34036,41.79755799906],[-71.340308,41.79760399906],[-71.340209,41.79761199906],[-71.340054,41.79758599906],[-71.339894,41.79762799906],[-71.339842,41.79774799906],[-71.339884,41.79786399906],[-71.339988,41.79794899906],[-71.339987,41.79814299906],[-71.340043,41.79821599906],[-71.340137,41.79824799906],[-71.340481,41.79827299906],[-71.340706,41.79831199906],[-71.340777,41.79840099906],[-71.340781,41.79860499906],[-71.340809,41.79874199906],[-71.340973,41.79894599906],[-71.34101,41.79912599906],[-71.34109,41.79929499906],[-71.341113,41.79946799906],[-71.341124,41.79954599906],[-71.34113,41.79959099906],[-71.341201,41.79977399906],[-71.341178,41.79984099906],[-71.341065,41.79986499906],[-71.340905,41.79991099906],[-71.340801,41.80002299906],[-71.340744,41.80032899906],[-71.340635,41.80052599906],[-71.340686,41.80059399906],[-71.340696,41.80064299906],[-71.340682,41.80068399906],[-71.34062,41.80075899906],[-71.340596,41.80089899906],[-71.340808,41.80105099906],[-71.340812,41.80109699906],[-71.34076,41.80115999906],[-71.34068,41.80119499906],[-71.340643,41.80125799906],[-71.340661,41.80136399906],[-71.340745,41.80167399906],[-71.340721,41.80181499906],[-71.340612,41.80201199906],[-71.340543,41.80207799906],[-71.340429,41.80218699906],[-71.340348,41.80228199906],[-71.340339,41.80238399906],[-71.340447,41.80250799906],[-71.340541,41.80253599906],[-71.340597,41.80260599906],[-71.340516,41.80274699906],[-71.340488,41.80284599906],[-71.34045,41.80294399906],[-71.340534,41.80309599906],[-71.340534,41.80315499906],[-71.340511,41.80322599906],[-71.340421,41.80333499906],[-71.340193,41.80367699906],[-71.340193,41.80374999906],[-71.340185,41.80379899906],[-71.34015,41.80382599906],[-71.340109,41.80384799906],[-71.340057,41.80388699906],[-71.339977,41.80388299906],[-71.339907,41.80390399906],[-71.339869,41.80402699906],[-71.339758,41.80432999906],[-71.339569,41.80462799906],[-71.339491,41.80475199906],[-71.339372,41.80501899906],[-71.339272,41.80510499906],[-71.339231,41.80515999906],[-71.339218,41.80524099906],[-71.33923,41.80541299906],[-71.339121,41.80564499906],[-71.339088,41.80578299906],[-71.339102,41.80583499906],[-71.339163,41.80589199906],[-71.339299,41.80592399906],[-71.339374,41.80605399906],[-71.339385,41.80612799906],[-71.339412,41.80616699906],[-71.339455,41.80619899906],[-71.33951,41.80621299906],[-71.33964,41.80628999906],[-71.339675,41.80633999906],[-71.339648,41.80639299906],[-71.339533,41.80652199906],[-71.339517,41.80655399906],[-71.339466,41.80664799906],[-71.339596,41.80670799906],[-71.340523,41.80717099906],[-71.340912,41.80738399906],[-71.341805,41.80783799906],[-71.341881,41.80787299906],[-71.342575,41.80822799906],[-71.34314,41.80849499906],[-71.343559,41.80866999906],[-71.344475,41.80901699906],[-71.344947,41.80918899906],[-71.345284,41.80931099906],[-71.345343,41.80932799906],[-71.345772,41.80945199906],[-71.346886,41.80973799906],[-71.347427,41.80985999906],[-71.347771,41.80992899906],[-71.347916,41.80996099906],[-71.348412,41.81006999906],[-71.350937,41.81058899906],[-71.351242,41.81065799906],[-71.351357,41.81067999906],[-71.352631,41.81095499906],[-71.354752,41.81138599906],[-71.357368,41.81193199906],[-71.358131,41.81206099906],[-71.358475,41.81213799906],[-71.358566,41.81187099906],[-71.358849,41.81107699906],[-71.359024,41.81050499906],[-71.359116,41.81024599906],[-71.35936,41.80956999906],[-71.359596,41.80893299906],[-71.359673,41.80869699906],[-71.359833,41.80823899906]]]}}"}, +{"type": "blockgroup", "typeId": 105012, "areaId": 28844, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.36673,41.80137999906],[-71.364998,41.80105999906],[-71.363136,41.80072399906],[-71.362503,41.80059799906],[-71.36245,41.80073899906],[-71.362251,41.80127299906],[-71.362228,41.80133099906],[-71.362045,41.80185299906],[-71.362,41.80197099906],[-71.361984,41.80200599906],[-71.361839,41.80242499906],[-71.361763,41.80263899906],[-71.361641,41.80300899906],[-71.361534,41.80330999906],[-71.361361,41.80379099906],[-71.361183,41.80428699906],[-71.360992,41.80485599906],[-71.360962,41.80494699906],[-71.360832,41.80533999906],[-71.360733,41.80559499906],[-71.360512,41.80627099906],[-71.360306,41.80685399906],[-71.360092,41.80746799906],[-71.359886,41.80808299906],[-71.359833,41.80823899906],[-71.359673,41.80869699906],[-71.359596,41.80893299906],[-71.35936,41.80956999906],[-71.359116,41.81024599906],[-71.359024,41.81050499906],[-71.358849,41.81107699906],[-71.358566,41.81187099906],[-71.358475,41.81213799906],[-71.35941,41.81233799906],[-71.360163,41.81249999906],[-71.360252,41.81251899906],[-71.360863,41.81264799906],[-71.361013,41.81267999906],[-71.361071,41.81269199906],[-71.361957,41.81287899906],[-71.362003,41.81288899906],[-71.362788,41.81305499906],[-71.36281,41.81295199906],[-71.362846,41.81278599906],[-71.363106,41.81214499906],[-71.363716,41.81229799906],[-71.363815,41.81232499906],[-71.364624,41.81253099906],[-71.364693,41.81227899906],[-71.364876,41.81181699906],[-71.365112,41.81114199906],[-71.365273,41.81070299906],[-71.365349,41.81043199906],[-71.365356,41.81034099906],[-71.365349,41.81024899906],[-71.365318,41.81014299906],[-71.365295,41.81008499906],[-71.365051,41.80975699906],[-71.364792,41.80942899906],[-71.364128,41.80856299906],[-71.364273,41.80811299906],[-71.364433,41.80765899906],[-71.364639,41.80713699906],[-71.364868,41.80647999906],[-71.365112,41.80580499906],[-71.365128,41.80577099906],[-71.36514,41.80573599906],[-71.36528,41.80534399906],[-71.365593,41.80465699906],[-71.365753,41.80418799906],[-71.366051,41.80334899906],[-71.366493,41.80203599906],[-71.36673,41.80137999906]]]}}"}, +{"type": "blockgroup", "typeId": 105013, "areaId": 28845, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.363365,41.79806499906],[-71.36248,41.79791999906],[-71.36235,41.79789399906],[-71.362226,41.79786899906],[-71.361866,41.79779599906],[-71.361191,41.79766099906],[-71.360512,41.79753099906],[-71.360237,41.79748199906],[-71.359558,41.79735899906],[-71.359329,41.79730599906],[-71.359116,41.79724899906],[-71.358467,41.79703499906],[-71.358368,41.79700499906],[-71.358229,41.79695799906],[-71.357635,41.79676099906],[-71.357147,41.79660399906],[-71.357033,41.79656599906],[-71.35688,41.79652399906],[-71.356712,41.79648599906],[-71.355682,41.79629499906],[-71.355003,41.79617299906],[-71.354598,41.79609799906],[-71.353779,41.79594899906],[-71.353271,41.79585599906],[-71.353442,41.79672499906],[-71.353508,41.79703499906],[-71.3536,41.79752699906],[-71.353622,41.79782099906],[-71.35363,41.79802299906],[-71.35363,41.79816099906],[-71.353638,41.79836299906],[-71.353561,41.79868299906],[-71.353477,41.79906099906],[-71.353348,41.79973599906],[-71.354797,41.79999199906],[-71.354568,41.80066299906],[-71.354362,41.80132699906],[-71.354352,41.80134399906],[-71.354158,41.80197299906],[-71.354156,41.80199099906],[-71.355972,41.80231499906],[-71.356552,41.80241399906],[-71.357529,41.80260099906],[-71.357528,41.80261899906],[-71.357307,41.80330999906],[-71.357239,41.80353199906],[-71.35706,41.80409099906],[-71.357018,41.80422199906],[-71.357002,41.80427199906],[-71.356946,41.80444399906],[-71.3568,41.80489599906],[-71.356789,41.80491299906],[-71.35659,41.80549999906],[-71.356575,41.80556899906],[-71.356384,41.80622099906],[-71.356361,41.80633899906],[-71.356333,41.80652599906],[-71.356323,41.80654499906],[-71.355988,41.80742599906],[-71.356224,41.80746799906],[-71.356934,41.80762099906],[-71.357147,41.80766299906],[-71.357895,41.80783799906],[-71.359833,41.80823899906],[-71.359886,41.80808299906],[-71.360092,41.80746799906],[-71.360306,41.80685399906],[-71.360512,41.80627099906],[-71.360733,41.80559499906],[-71.360832,41.80533999906],[-71.360962,41.80494699906],[-71.360992,41.80485599906],[-71.361183,41.80428699906],[-71.361361,41.80379099906],[-71.361534,41.80330999906],[-71.361641,41.80300899906],[-71.361763,41.80263899906],[-71.361839,41.80242499906],[-71.361984,41.80200599906],[-71.362,41.80197099906],[-71.362045,41.80185299906],[-71.362228,41.80133099906],[-71.362251,41.80127299906],[-71.36245,41.80073899906],[-71.362503,41.80059799906],[-71.362701,41.79997999906],[-71.362724,41.79993099906],[-71.362968,41.79923199906],[-71.363121,41.79879399906],[-71.363228,41.79850799906],[-71.363365,41.79806499906]]]}}"}, +{"type": "blockgroup", "typeId": 105021, "areaId": 28846, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.380799,41.79629999906],[-71.379999,41.79529999906],[-71.377299,41.79469999906],[-71.37722,41.79458099906],[-71.377144,41.79450499906],[-71.377034,41.79442399906],[-71.376846,41.79431499906],[-71.376682,41.79417599906],[-71.376591,41.79409899906],[-71.376461,41.79398799906],[-71.376283,41.79392299906],[-71.376131,41.79386499906],[-71.375875,41.79362099906],[-71.375797,41.79356399906],[-71.375754,41.79351899906],[-71.375718,41.79344599906],[-71.375416,41.79317199906],[-71.375177,41.79284599906],[-71.375154,41.79280599906],[-71.375136,41.79273599906],[-71.375159,41.79266599906],[-71.375189,41.79260799906],[-71.375206,41.79250899906],[-71.375159,41.79228799906],[-71.375084,41.79212499906],[-71.375078,41.79208399906],[-71.375031,41.79206699906],[-71.375014,41.79210099906],[-71.374962,41.79221199906],[-71.374927,41.79231099906],[-71.374915,41.79241599906],[-71.374921,41.79250299906],[-71.374886,41.79255499906],[-71.374816,41.79255499906],[-71.374444,41.79215999906],[-71.374382,41.79207299906],[-71.374378,41.79204599906],[-71.374415,41.79197399906],[-71.374443,41.79190599906],[-71.374487,41.79184899906],[-71.374571,41.79170899906],[-71.374632,41.79161699906],[-71.374733,41.79147599906],[-71.374794,41.79131399906],[-71.374829,41.79109099906],[-71.37482,41.79093699906],[-71.374798,41.79087999906],[-71.374702,41.79088499906],[-71.374693,41.79090699906],[-71.374579,41.79097699906],[-71.374509,41.79102499906],[-71.374417,41.79115199906],[-71.3744,41.79122699906],[-71.374369,41.79132299906],[-71.37436,41.79139799906],[-71.374369,41.79151099906],[-71.374373,41.79162099906],[-71.374382,41.79176599906],[-71.374373,41.79187999906],[-71.374334,41.79194999906],[-71.374246,41.79195899906],[-71.374176,41.79195899906],[-71.374084,41.79187999906],[-71.373584,41.79138899906],[-71.373308,41.79111699906],[-71.373277,41.79107299906],[-71.373269,41.79105099906],[-71.373352,41.79098999906],[-71.37347,41.79098099906],[-71.373536,41.79099399906],[-71.373628,41.79098999906],[-71.373689,41.79097199906],[-71.373716,41.79094599906],[-71.37379,41.79078799906],[-71.373825,41.79069599906],[-71.373874,41.79047299906],[-71.373882,41.79038499906],[-71.373865,41.79028899906],[-71.373786,41.79022299906],[-71.373672,41.79022699906],[-71.373558,41.79026199906],[-71.373343,41.79028899906],[-71.373234,41.79027399906],[-71.373251,41.79003499906],[-71.373256,41.78995899906],[-71.373281,41.78990399906],[-71.373306,41.78984299906],[-71.373261,41.78981799906],[-71.3732,41.78978799906],[-71.37313,41.78973199906],[-71.373009,41.78962699906],[-71.372923,41.78912299906],[-71.373009,41.78898199906],[-71.373115,41.78891099906],[-71.373195,41.78880999906],[-71.37321,41.78874999906],[-71.37318,41.78862899906],[-71.37311,41.78848799906],[-71.373024,41.78838699906],[-71.372923,41.78831599906],[-71.372812,41.78831599906],[-71.372767,41.78835199906],[-71.372742,41.78839199906],[-71.372732,41.78843199906],[-71.372711,41.78851799906],[-71.372656,41.78862899906],[-71.372591,41.78869899906],[-71.37256,41.78876999906],[-71.372575,41.78882999906],[-71.372626,41.78893099906],[-71.372691,41.78901199906],[-71.372767,41.78905699906],[-71.372821,41.78912299906],[-71.372888,41.78953099906],[-71.372883,41.78961099906],[-71.372853,41.78962199906],[-71.372762,41.78962699906],[-71.372648,41.78965399906],[-71.372601,41.78969199906],[-71.37258,41.78974799906],[-71.37257,41.78978799906],[-71.37258,41.78984799906],[-71.372606,41.78992899906],[-71.372616,41.79003499906],[-71.372591,41.79010999906],[-71.37255,41.79015599906],[-71.372399,41.79019599906],[-71.372329,41.79017599906],[-71.372278,41.79013099906],[-71.372263,41.79008499906],[-71.372218,41.79001499906],[-71.372162,41.78993899906],[-71.372147,41.78992899906],[-71.372031,41.78985799906],[-71.372002,41.78982299906],[-71.371978,41.78979299906],[-71.371949,41.78975799906],[-71.371663,41.78940999906],[-71.371663,41.78938999906],[-71.371689,41.78938999906],[-71.371739,41.78937999906],[-71.371789,41.78933399906],[-71.371779,41.78926399906],[-71.371764,41.78922299906],[-71.371739,41.78915299906],[-71.371689,41.78905199906],[-71.371638,41.78897699906],[-71.371603,41.78885599906],[-71.371568,41.78880999906],[-71.371482,41.78879499906],[-71.371406,41.78886599906],[-71.371351,41.78886599906],[-71.371205,41.78872999906],[-71.370953,41.78833699906],[-71.370923,41.78827599906],[-71.370862,41.78815499906],[-71.370827,41.78806999906],[-71.370756,41.78792799906],[-71.370696,41.78782799906],[-71.37063,41.78771699906],[-71.370535,41.78749999906],[-71.370509,41.78734899906],[-71.37055,41.78719799906],[-71.37064,41.78711199906],[-71.370731,41.78709199906],[-71.370887,41.78704199906],[-71.370968,41.78698599906],[-71.371023,41.78680999906],[-71.371008,41.78669399906],[-71.370872,41.78650199906],[-71.370615,41.78631099906],[-71.370494,41.78628599906],[-71.370308,41.78628099906],[-71.370172,41.78626599906],[-71.370137,41.78624499906],[-71.370106,41.78616499906],[-71.370162,41.78599299906],[-71.370229,41.78576499906],[-71.370198,41.78549999906],[-71.369931,41.78371699906],[-71.369694,41.78305799906],[-71.369948,41.78309799906],[-71.370498,41.78319999906],[-71.371798,41.78339999906],[-71.371972,41.78342699906],[-71.378198,41.78439999906],[-71.377798,41.78199999906],[-71.376998,41.77789999906],[-71.371698,41.77829999906],[-71.365887,41.77861199906],[-71.365757,41.77862699906],[-71.364693,41.77878199906],[-71.363136,41.77893399906],[-71.363129,41.77911399906],[-71.363129,41.77951799906],[-71.363152,41.77966699906],[-71.363162,41.77974799906],[-71.363166,41.77979099906],[-71.363174,41.77992599906],[-71.36322,41.78029999906],[-71.363319,41.78134499906],[-71.36335,41.78160899906],[-71.36338,41.78183399906],[-71.363388,41.78193699906],[-71.363495,41.78301999906],[-71.363625,41.78397799906],[-71.36367,41.78425999906],[-71.3638,41.78499599906],[-71.363914,41.78569799906],[-71.36409,41.78677699906],[-71.364128,41.78700599906],[-71.364197,41.78731499906],[-71.364227,41.78749499906],[-71.364426,41.78811999906],[-71.36454,41.78852099906],[-71.364761,41.78921899906],[-71.365067,41.79014599906],[-71.365069,41.79016399906],[-71.365273,41.79078299906],[-71.365402,41.79120299906],[-71.36542,41.79125999906],[-71.36544,41.79132099906],[-71.365474,41.79160899906],[-71.36547,41.79189699906],[-71.365419,41.79211099906],[-71.365315,41.79241399906],[-71.365135,41.79288099906],[-71.36512,41.79302599906],[-71.364975,41.79346099906],[-71.36496,41.79350699906],[-71.364784,41.79401799906],[-71.364693,41.79426999906],[-71.364403,41.79509699906],[-71.365387,41.79527999906],[-71.366631,41.79552499906],[-71.367043,41.79559299906],[-71.367172,41.79562399906],[-71.36721,41.79563499906],[-71.367371,41.79571199906],[-71.367661,41.79580299906],[-71.368019,41.79586399906],[-71.368416,41.79595599906],[-71.36869,41.79598999906],[-71.368988,41.79604299906],[-71.369278,41.79610799906],[-71.369659,41.79615799906],[-71.369387,41.79639399906],[-71.369011,41.79676399906],[-71.36879,41.79742799906],[-71.368577,41.79806999906],[-71.368576,41.79808799906],[-71.36834,41.79875899906],[-71.368126,41.79942299906],[-71.367867,41.80018999906],[-71.36718,41.80002999906],[-71.366951,41.80070899906],[-71.36673,41.80137999906],[-71.367508,41.80152099906],[-71.368103,41.80163599906],[-71.368912,41.80177299906],[-71.369324,41.80186499906],[-71.371025,41.80218499906],[-71.371048,41.80219199906],[-71.372269,41.80242199906],[-71.37307,41.80256699906],[-71.374062,41.80276099906],[-71.374313,41.80195999906],[-71.374435,41.80159799906],[-71.374596,41.80107899906],[-71.374733,41.80061699906],[-71.374763,41.80057899906],[-71.374825,41.80051399906],[-71.374908,41.80046499906],[-71.375214,41.80038099906],[-71.375328,41.80046099906],[-71.37545,41.80052899906],[-71.375641,41.80060999906],[-71.375847,41.80067099906],[-71.376167,41.80075499906],[-71.376195,41.80075699906],[-71.37623,41.80068099906],[-71.376264,41.80067099906],[-71.377002,41.79874999906],[-71.378772,41.79729899906],[-71.378909,41.79718699906],[-71.378983,41.79715199906],[-71.380799,41.79629999906]]]}}"}, +{"type": "blockgroup", "typeId": 105022, "areaId": 28847, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.369659,41.79615799906],[-71.369278,41.79610799906],[-71.368988,41.79604299906],[-71.36869,41.79598999906],[-71.368416,41.79595599906],[-71.368019,41.79586399906],[-71.367661,41.79580299906],[-71.367371,41.79571199906],[-71.36721,41.79563499906],[-71.367172,41.79562399906],[-71.367043,41.79559299906],[-71.366631,41.79552499906],[-71.365387,41.79527999906],[-71.364403,41.79509699906],[-71.364239,41.79557899906],[-71.364174,41.79577299906],[-71.364136,41.79587199906],[-71.363968,41.79634099906],[-71.363914,41.79650499906],[-71.363686,41.79716499906],[-71.363449,41.79783999906],[-71.363365,41.79806499906],[-71.363228,41.79850799906],[-71.363121,41.79879399906],[-71.362968,41.79923199906],[-71.362724,41.79993099906],[-71.362701,41.79997999906],[-71.362503,41.80059799906],[-71.363136,41.80072399906],[-71.364998,41.80105999906],[-71.36673,41.80137999906],[-71.366951,41.80070899906],[-71.36718,41.80002999906],[-71.367867,41.80018999906],[-71.368126,41.79942299906],[-71.36834,41.79875899906],[-71.368576,41.79808799906],[-71.368577,41.79806999906],[-71.36879,41.79742799906],[-71.369011,41.79676399906],[-71.369387,41.79639399906],[-71.369659,41.79615799906]]]}}"}, +{"type": "blockgroup", "typeId": 105023, "areaId": 28848, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.365474,41.79160899906],[-71.36544,41.79132099906],[-71.36542,41.79125999906],[-71.365402,41.79120299906],[-71.36393,41.79119899906],[-71.362801,41.79121799906],[-71.361263,41.79121399906],[-71.361277,41.79114399906],[-71.361335,41.79091399906],[-71.361333,41.79078999906],[-71.361253,41.79068599906],[-71.361158,41.79058899906],[-71.360988,41.79026499906],[-71.360955,41.79017899906],[-71.360856,41.79009299906],[-71.36078,41.79003399906],[-71.3607,41.78993399906],[-71.360648,41.78982499906],[-71.360586,41.78959199906],[-71.36056,41.78922099906],[-71.360542,41.78910999906],[-71.360509,41.78900199906],[-71.36048,41.78894899906],[-71.360437,41.78889999906],[-71.360151,41.78856799906],[-71.359915,41.78839799906],[-71.359807,41.78805499906],[-71.359779,41.78796599906],[-71.359726,41.78785199906],[-71.359665,41.78774599906],[-71.359562,41.78765199906],[-71.359509,41.78754099906],[-71.359502,41.78741199906],[-71.359478,41.78729199906],[-71.359414,41.78719099906],[-71.35936,41.78708299906],[-71.359266,41.78698899906],[-71.358844,41.78683499906],[-71.358772,41.78677499906],[-71.358718,41.78666299906],[-71.358659,41.78656799906],[-71.358556,41.78653299906],[-71.358434,41.78649099906],[-71.358351,41.78640099906],[-71.358256,41.78630899906],[-71.358151,41.78621699906],[-71.358024,41.78614499906],[-71.357885,41.78610599906],[-71.357746,41.78604999906],[-71.357668,41.78597299906],[-71.357748,41.78588199906],[-71.35773,41.78580299906],[-71.357682,41.78572599906],[-71.357572,41.78573299906],[-71.357449,41.78579099906],[-71.357365,41.78582099906],[-71.357329,41.78584699906],[-71.357184,41.78584699906],[-71.357029,41.78583999906],[-71.356878,41.78581999906],[-71.356733,41.78576499906],[-71.356621,41.78569299906],[-71.356525,41.78560399906],[-71.356421,41.78552099906],[-71.356303,41.78543999906],[-71.356113,41.78526899906],[-71.355998,41.78519799906],[-71.355864,41.78512899906],[-71.355619,41.78514999906],[-71.355502,41.78512499906],[-71.355368,41.78505199906],[-71.355212,41.78498799906],[-71.355065,41.78499399906],[-71.354944,41.78503799906],[-71.354852,41.78514699906],[-71.354762,41.78521399906],[-71.354594,41.78521999906],[-71.354435,41.78521899906],[-71.354275,41.78525499906],[-71.354119,41.78524399906],[-71.353962,41.78522199906],[-71.353827,41.78516999906],[-71.353709,41.78514799906],[-71.353615,41.78505499906],[-71.353501,41.78498399906],[-71.353336,41.78495999906],[-71.353167,41.78495699906],[-71.352996,41.78497299906],[-71.352834,41.78498199906],[-71.352686,41.78499799906],[-71.352275,41.78508199906],[-71.352216,41.78511899906],[-71.352112,41.78512099906],[-71.351964,41.78518599906],[-71.351905,41.78521899906],[-71.351839,41.78506999906],[-71.35178,41.78493799906],[-71.352228,41.78478499906],[-71.352515,41.78470199906],[-71.352676,41.78464999906],[-71.352806,41.78459999906],[-71.353095,41.78450899906],[-71.353374,41.78439399906],[-71.35351,41.78433399906],[-71.35362,41.78424599906],[-71.353712,41.78416099906],[-71.35384,41.78405899906],[-71.353796,41.78406999906],[-71.353726,41.78405799906],[-71.353675,41.78401299906],[-71.353685,41.78389299906],[-71.353738,41.78375699906],[-71.353745,41.78361499906],[-71.353745,41.78335199906],[-71.353752,41.78323699906],[-71.353776,41.78311699906],[-71.353783,41.78299999906],[-71.353803,41.78295099906],[-71.353715,41.78287999906],[-71.353578,41.78282899906],[-71.353539,41.78279699906],[-71.353496,41.78276199906],[-71.35346,41.78266599906],[-71.35353,41.78256199906],[-71.353577,41.78253699906],[-71.353468,41.78235899906],[-71.353424,41.78223799906],[-71.3534,41.78213899906],[-71.353425,41.78202899906],[-71.353494,41.78192299906],[-71.353537,41.78181599906],[-71.353533,41.78179799906],[-71.353514,41.78171699906],[-71.353451,41.78159599906],[-71.353482,41.78138899906],[-71.353434,41.78127799906],[-71.353394,41.78116199906],[-71.35337,41.78106899906],[-71.353364,41.78104799906],[-71.353359,41.78093699906],[-71.35339,41.78090399906],[-71.353541,41.78087699906],[-71.35368,41.78084199906],[-71.353811,41.78081499906],[-71.353877,41.78081299906],[-71.353988,41.78089499906],[-71.354104,41.78096199906],[-71.354241,41.78101999906],[-71.354351,41.78101199906],[-71.354508,41.78099099906],[-71.354654,41.78093899906],[-71.354791,41.78088399906],[-71.354875,41.78083799906],[-71.354919,41.78079099906],[-71.354958,41.78073299906],[-71.35489,41.78062699906],[-71.354849,41.78053799906],[-71.354655,41.78025499906],[-71.354571,41.77996399906],[-71.354558,41.77902799906],[-71.35506,41.77815499906],[-71.355672,41.77725799906],[-71.356879,41.77515799906],[-71.356537,41.77508499906],[-71.356071,41.77497499906],[-71.355698,41.77488299906],[-71.355515,41.77481799906],[-71.355385,41.77473799906],[-71.355278,41.77465399906],[-71.355179,41.77453199906],[-71.35511,41.77445599906],[-71.35511,41.77458199906],[-71.355095,41.77470799906],[-71.354988,41.77500499906],[-71.354729,41.77582899906],[-71.354462,41.77660799906],[-71.354454,41.77664199906],[-71.35437,41.77691999906],[-71.354324,41.77709599906],[-71.354309,41.77726399906],[-71.35405,41.77799199906],[-71.353958,41.77823999906],[-71.353859,41.77839699906],[-71.35376,41.77851899906],[-71.353668,41.77857999906],[-71.353569,41.77865999906],[-71.353348,41.77878199906],[-71.353233,41.77883499906],[-71.351654,41.77930099906],[-71.351204,41.77942999906],[-71.350922,41.77950999906],[-71.350189,41.77973899906],[-71.349556,41.77992599906],[-71.3489,41.78013199906],[-71.348557,41.78021599906],[-71.34845,41.78024699906],[-71.348259,41.78029299906],[-71.348053,41.78033099906],[-71.347862,41.78035699906],[-71.347664,41.78037599906],[-71.347382,41.78038399906],[-71.346664,41.78037999906],[-71.346084,41.78036199906],[-71.345802,41.78035399906],[-71.344833,41.78031499906],[-71.343628,41.78027299906],[-71.342827,41.78025099906],[-71.339989,41.78015899906],[-71.338997,41.78013199906],[-71.337502,41.78008299906],[-71.335587,41.78002199906],[-71.334976,41.78000299906],[-71.334747,41.77999899906],[-71.334381,41.77995699906],[-71.333549,41.77992999906],[-71.33342,41.77992999906],[-71.333397,41.77991099906],[-71.332832,41.77954099906],[-71.332642,41.77939599906],[-71.332367,41.77916699906],[-71.332024,41.77883099906],[-71.331718,41.77851499906],[-71.331543,41.77834699906],[-71.331116,41.77790499906],[-71.33094,41.77775599906],[-71.33078,41.77760699906],[-71.330574,41.77744699906],[-71.330482,41.77736999906],[-71.33004,41.77706899906],[-71.329536,41.77673299906],[-71.329193,41.77649699906],[-71.328226,41.77585799906],[-71.328178,41.77582599906],[-71.327728,41.77551699906],[-71.327591,41.77540199906],[-71.327309,41.77514299906],[-71.327194,41.77500199906],[-71.32695,41.77467299906],[-71.326706,41.77429599906],[-71.326698,41.77427699906],[-71.326469,41.77392999906],[-71.326309,41.77367399906],[-71.326065,41.77330399906],[-71.325783,41.77285799906],[-71.325661,41.77267399906],[-71.325447,41.77234999906],[-71.325172,41.77192299906],[-71.324966,41.77159099906],[-71.324816,41.77135899906],[-71.324776,41.77129699906],[-71.324717,41.77120099906],[-71.324604,41.77128099906],[-71.324523,41.77133899906],[-71.322678,41.77259199906],[-71.322607,41.77263999906],[-71.322589,41.77265199906],[-71.32256,41.77267199906],[-71.32193,41.77309999906],[-71.321365,41.77348399906],[-71.320607,41.77399899906],[-71.320534,41.77404899906],[-71.31995,41.77450999906],[-71.319541,41.77483099906],[-71.31949,41.77487099906],[-71.319142,41.77515699906],[-71.318223,41.77591299906],[-71.318089,41.77602399906],[-71.317911,41.77616799906],[-71.317873,41.77619899906],[-71.320004,41.77710299906],[-71.321751,41.77784299906],[-71.327792,41.78040699906],[-71.328472,41.78069399906],[-71.328507,41.78080399906],[-71.328639,41.78087199906],[-71.32867,41.78100299906],[-71.328787,41.78135199906],[-71.328848,41.78157099906],[-71.328862,41.78170599906],[-71.328855,41.78193599906],[-71.32886,41.78206599906],[-71.328887,41.78220099906],[-71.328957,41.78242499906],[-71.32905,41.78263899906],[-71.329096,41.78271899906],[-71.32915,41.78273999906],[-71.329209,41.78275699906],[-71.329296,41.78263399906],[-71.329315,41.78259299906],[-71.329326,41.78250699906],[-71.329317,41.78218799906],[-71.329329,41.78209699906],[-71.329355,41.78201099906],[-71.32939,41.78192499906],[-71.329418,41.78188399906],[-71.329462,41.78185099906],[-71.329521,41.78183699906],[-71.329582,41.78183599906],[-71.329632,41.78185699906],[-71.329725,41.78191799906],[-71.32976,41.78195799906],[-71.329803,41.78203799906],[-71.329834,41.78212799906],[-71.329866,41.78226199906],[-71.329896,41.78248699906],[-71.329896,41.78262599906],[-71.329878,41.78271199906],[-71.32986,41.78275299906],[-71.329832,41.78279399906],[-71.329725,41.78290399906],[-71.329694,41.78294599906],[-71.329672,41.78298699906],[-71.329662,41.78303199906],[-71.329663,41.78307699906],[-71.329673,41.78312199906],[-71.329692,41.78316599906],[-71.329835,41.78336599906],[-71.329854,41.78340599906],[-71.329854,41.78345099906],[-71.329791,41.78353299906],[-71.329813,41.78364599906],[-71.329894,41.78376099906],[-71.329912,41.78380099906],[-71.329906,41.78384599906],[-71.329892,41.78389199906],[-71.32989,41.78394999906],[-71.329863,41.78422499906],[-71.329869,41.78431499906],[-71.329894,41.78439999906],[-71.329918,41.78443599906],[-71.329993,41.78450699906],[-71.33013,41.78460699906],[-71.330206,41.78467799906],[-71.330232,41.78471799906],[-71.33025,41.78475799906],[-71.330268,41.78484299906],[-71.330274,41.78507299906],[-71.330286,41.78516299906],[-71.330302,41.78520699906],[-71.330352,41.78529599906],[-71.330391,41.78538099906],[-71.330393,41.78542199906],[-71.330375,41.78546199906],[-71.330342,41.78549899906],[-71.330262,41.78557299906],[-71.330233,41.78561399906],[-71.330186,41.78574599906],[-71.330104,41.78605299906],[-71.330046,41.78624699906],[-71.330038,41.78627499906],[-71.329998,41.78635699906],[-71.329912,41.78647599906],[-71.329888,41.78651699906],[-71.329872,41.78656199906],[-71.329847,41.78669799906],[-71.329831,41.78673899906],[-71.329807,41.78677999906],[-71.32965,41.78697699906],[-71.329627,41.78701799906],[-71.329607,41.78710399906],[-71.329606,41.78723899906],[-71.329651,41.78760299906],[-71.329652,41.78773799906],[-71.329637,41.78782399906],[-71.329598,41.78791399906],[-71.329517,41.78804199906],[-71.329448,41.78816999906],[-71.329435,41.78820999906],[-71.329429,41.78825099906],[-71.329432,41.78827399906],[-71.329476,41.78827899906],[-71.329566,41.78829399906],[-71.32995,41.78833999906],[-71.330508,41.78839199906],[-71.330975,41.78842299906],[-71.331314,41.78852499906],[-71.332637,41.78874699906],[-71.332886,41.78864699906],[-71.332939,41.78863499906],[-71.333,41.78863099906],[-71.333099,41.78894799906],[-71.333153,41.78910099906],[-71.333366,41.78948199906],[-71.333778,41.78999299906],[-71.334206,41.79038199906],[-71.334427,41.79054599906],[-71.334831,41.79075199906],[-71.335213,41.79086299906],[-71.335487,41.79094699906],[-71.33593,41.79103699906],[-71.336343,41.79106199906],[-71.337355,41.79109399906],[-71.338533,41.79113499906],[-71.339932,41.79117699906],[-71.340922,41.79121799906],[-71.341456,41.79123599906],[-71.342026,41.79131499906],[-71.342252,41.79134699906],[-71.342606,41.79143899906],[-71.34476,41.79201399906],[-71.345108,41.79210299906],[-71.345299,41.79217899906],[-71.346123,41.79240799906],[-71.346291,41.79246899906],[-71.34668,41.79268299906],[-71.347023,41.79290399906],[-71.347527,41.79321299906],[-71.347763,41.79339199906],[-71.348099,41.79366299906],[-71.348755,41.79413999906],[-71.348816,41.79417399906],[-71.349197,41.79440299906],[-71.349648,41.79466199906],[-71.350067,41.79486799906],[-71.350533,41.79508199906],[-71.351028,41.79527299906],[-71.351288,41.79536099906],[-71.351456,41.79541399906],[-71.351555,41.79544799906],[-71.351982,41.79556699906],[-71.352034,41.79558099906],[-71.352219,41.79563099906],[-71.352272,41.79564699906],[-71.352432,41.79568499906],[-71.352997,41.79580699906],[-71.353271,41.79585599906],[-71.353779,41.79594899906],[-71.354598,41.79609799906],[-71.355003,41.79617299906],[-71.355682,41.79629499906],[-71.356712,41.79648599906],[-71.35688,41.79652399906],[-71.357033,41.79656599906],[-71.357147,41.79660399906],[-71.357635,41.79676099906],[-71.358229,41.79695799906],[-71.358368,41.79700499906],[-71.358467,41.79703499906],[-71.359116,41.79724899906],[-71.359329,41.79730599906],[-71.359558,41.79735899906],[-71.360237,41.79748199906],[-71.360512,41.79753099906],[-71.361191,41.79766099906],[-71.361866,41.79779599906],[-71.362226,41.79786899906],[-71.36235,41.79789399906],[-71.36248,41.79791999906],[-71.363365,41.79806499906],[-71.363449,41.79783999906],[-71.363686,41.79716499906],[-71.363914,41.79650499906],[-71.363968,41.79634099906],[-71.364136,41.79587199906],[-71.364174,41.79577299906],[-71.364239,41.79557899906],[-71.364403,41.79509699906],[-71.364693,41.79426999906],[-71.364784,41.79401799906],[-71.36496,41.79350699906],[-71.364975,41.79346099906],[-71.36512,41.79302599906],[-71.365135,41.79288099906],[-71.365315,41.79241399906],[-71.365419,41.79211099906],[-71.36547,41.79189699906],[-71.365474,41.79160899906]]]}}"}, +{"type": "blockgroup", "typeId": 105024, "areaId": 28849, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.365402,41.79120299906],[-71.365273,41.79078299906],[-71.365069,41.79016399906],[-71.365067,41.79014599906],[-71.364761,41.78921899906],[-71.36454,41.78852099906],[-71.364426,41.78811999906],[-71.364227,41.78749499906],[-71.364197,41.78731499906],[-71.364128,41.78700599906],[-71.36409,41.78677699906],[-71.363914,41.78569799906],[-71.3638,41.78499599906],[-71.36367,41.78425999906],[-71.363625,41.78397799906],[-71.363495,41.78301999906],[-71.363388,41.78193699906],[-71.36338,41.78183399906],[-71.36335,41.78160899906],[-71.363319,41.78134499906],[-71.36322,41.78029999906],[-71.363174,41.77992599906],[-71.363166,41.77979099906],[-71.363162,41.77974799906],[-71.363094,41.77971999906],[-71.363075,41.77967099906],[-71.363014,41.77956399906],[-71.362892,41.77936899906],[-71.362865,41.77932299906],[-71.362717,41.77906799906],[-71.360138,41.77929299906],[-71.357895,41.77947399906],[-71.357713,41.77948899906],[-71.357727,41.77945699906],[-71.357849,41.77911799906],[-71.357964,41.77879299906],[-71.358192,41.77808799906],[-71.358513,41.77722199906],[-71.358917,41.77605099906],[-71.35862,41.77590599906],[-71.358223,41.77569199906],[-71.35791,41.77551999906],[-71.357573,41.77536599906],[-71.357536,41.77534899906],[-71.357094,41.77520399906],[-71.356879,41.77515799906],[-71.355672,41.77725799906],[-71.35506,41.77815499906],[-71.354558,41.77902799906],[-71.354571,41.77996399906],[-71.354655,41.78025499906],[-71.354849,41.78053799906],[-71.35489,41.78062699906],[-71.354958,41.78073299906],[-71.354919,41.78079099906],[-71.354875,41.78083799906],[-71.354791,41.78088399906],[-71.354654,41.78093899906],[-71.354508,41.78099099906],[-71.354351,41.78101199906],[-71.354241,41.78101999906],[-71.354104,41.78096199906],[-71.353988,41.78089499906],[-71.353877,41.78081299906],[-71.353811,41.78081499906],[-71.35368,41.78084199906],[-71.353541,41.78087699906],[-71.35339,41.78090399906],[-71.353359,41.78093699906],[-71.353364,41.78104799906],[-71.35337,41.78106899906],[-71.353394,41.78116199906],[-71.353434,41.78127799906],[-71.353482,41.78138899906],[-71.353451,41.78159599906],[-71.353514,41.78171699906],[-71.353533,41.78179799906],[-71.353537,41.78181599906],[-71.353494,41.78192299906],[-71.353425,41.78202899906],[-71.3534,41.78213899906],[-71.353424,41.78223799906],[-71.353468,41.78235899906],[-71.353577,41.78253699906],[-71.35353,41.78256199906],[-71.35346,41.78266599906],[-71.353496,41.78276199906],[-71.353539,41.78279699906],[-71.353578,41.78282899906],[-71.353715,41.78287999906],[-71.353803,41.78295099906],[-71.353783,41.78299999906],[-71.353776,41.78311699906],[-71.353752,41.78323699906],[-71.353745,41.78335199906],[-71.353745,41.78361499906],[-71.353738,41.78375699906],[-71.353685,41.78389299906],[-71.353675,41.78401299906],[-71.353726,41.78405799906],[-71.353796,41.78406999906],[-71.35384,41.78405899906],[-71.353712,41.78416099906],[-71.35362,41.78424599906],[-71.35351,41.78433399906],[-71.353374,41.78439399906],[-71.353095,41.78450899906],[-71.352806,41.78459999906],[-71.352676,41.78464999906],[-71.352515,41.78470199906],[-71.352228,41.78478499906],[-71.35178,41.78493799906],[-71.351839,41.78506999906],[-71.351905,41.78521899906],[-71.351964,41.78518599906],[-71.352112,41.78512099906],[-71.352216,41.78511899906],[-71.352275,41.78508199906],[-71.352686,41.78499799906],[-71.352834,41.78498199906],[-71.352996,41.78497299906],[-71.353167,41.78495699906],[-71.353336,41.78495999906],[-71.353501,41.78498399906],[-71.353615,41.78505499906],[-71.353709,41.78514799906],[-71.353827,41.78516999906],[-71.353962,41.78522199906],[-71.354119,41.78524399906],[-71.354275,41.78525499906],[-71.354435,41.78521899906],[-71.354594,41.78521999906],[-71.354762,41.78521399906],[-71.354852,41.78514699906],[-71.354944,41.78503799906],[-71.355065,41.78499399906],[-71.355212,41.78498799906],[-71.355368,41.78505199906],[-71.355502,41.78512499906],[-71.355619,41.78514999906],[-71.355864,41.78512899906],[-71.355998,41.78519799906],[-71.356113,41.78526899906],[-71.356303,41.78543999906],[-71.356421,41.78552099906],[-71.356525,41.78560399906],[-71.356621,41.78569299906],[-71.356733,41.78576499906],[-71.356878,41.78581999906],[-71.357029,41.78583999906],[-71.357184,41.78584699906],[-71.357329,41.78584699906],[-71.357365,41.78582099906],[-71.357449,41.78579099906],[-71.357572,41.78573299906],[-71.357682,41.78572599906],[-71.35773,41.78580299906],[-71.357748,41.78588199906],[-71.357668,41.78597299906],[-71.357746,41.78604999906],[-71.357885,41.78610599906],[-71.358024,41.78614499906],[-71.358151,41.78621699906],[-71.358256,41.78630899906],[-71.358351,41.78640099906],[-71.358434,41.78649099906],[-71.358556,41.78653299906],[-71.358659,41.78656799906],[-71.358718,41.78666299906],[-71.358772,41.78677499906],[-71.358844,41.78683499906],[-71.359266,41.78698899906],[-71.35936,41.78708299906],[-71.359414,41.78719099906],[-71.359478,41.78729199906],[-71.359502,41.78741199906],[-71.359509,41.78754099906],[-71.359562,41.78765199906],[-71.359665,41.78774599906],[-71.359726,41.78785199906],[-71.359779,41.78796599906],[-71.359807,41.78805499906],[-71.359915,41.78839799906],[-71.360151,41.78856799906],[-71.360437,41.78889999906],[-71.36048,41.78894899906],[-71.360509,41.78900199906],[-71.360542,41.78910999906],[-71.36056,41.78922099906],[-71.360586,41.78959199906],[-71.360648,41.78982499906],[-71.3607,41.78993399906],[-71.36078,41.79003399906],[-71.360856,41.79009299906],[-71.360955,41.79017899906],[-71.360988,41.79026499906],[-71.361158,41.79058899906],[-71.361253,41.79068599906],[-71.361333,41.79078999906],[-71.361335,41.79091399906],[-71.361277,41.79114399906],[-71.361263,41.79121399906],[-71.362801,41.79121799906],[-71.36393,41.79119899906],[-71.365402,41.79120299906]]]}}"}, +{"type": "blockgroup", "typeId": 106001, "areaId": 28850, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.378273,41.75529699906],[-71.375354,41.75036799906],[-71.375242,41.75015799906],[-71.374965,41.74964099906],[-71.373802,41.74749999906],[-71.372508,41.74472699906],[-71.368512,41.73942099906],[-71.368056,41.73889399906],[-71.366103,41.73666999906],[-71.365207,41.73564899906],[-71.360197,41.73890099906],[-71.356997,41.74160099906],[-71.356587,41.74288999906],[-71.355818,41.74530799906],[-71.355786,41.74540899906],[-71.355639,41.74586999906],[-71.355597,41.74600099906],[-71.355526,41.74618999906],[-71.355297,41.74680099906],[-71.355081,41.74749599906],[-71.353897,41.75130099906],[-71.354295,41.75641399906],[-71.353602,41.75884199906],[-71.353735,41.75882099906],[-71.354187,41.75874699906],[-71.355217,41.75859099906],[-71.356339,41.75842299906],[-71.357254,41.75827399906],[-71.358208,41.75813299906],[-71.35878,41.75804499906],[-71.358815,41.75803999906],[-71.359222,41.75797999906],[-71.359436,41.75797699906],[-71.359558,41.75797999906],[-71.359711,41.75799899906],[-71.359901,41.75807599906],[-71.359879,41.75793099906],[-71.359985,41.75790399906],[-71.360519,41.75774799906],[-71.36113,41.75757199906],[-71.378193,41.75698299906],[-71.378273,41.75529699906]]]}}"}, +{"type": "blockgroup", "typeId": 106002, "areaId": 28851, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.36367,41.77431899906],[-71.363663,41.77419699906],[-71.363632,41.77400199906],[-71.363571,41.77378799906],[-71.363539,41.77370199906],[-71.36348,41.77353999906],[-71.363258,41.77311699906],[-71.36322,41.77302899906],[-71.362976,41.77260599906],[-71.362869,41.77244599906],[-71.362823,41.77236899906],[-71.362602,41.77205699906],[-71.362556,41.77198399906],[-71.362503,41.77191499906],[-71.362228,41.77153799906],[-71.362099,41.77138499906],[-71.362022,41.77130499906],[-71.361916,41.77120999906],[-71.361801,41.77108799906],[-71.361694,41.77096199906],[-71.361541,41.77103299906],[-71.361004,41.77026999906],[-71.360956,41.77020199906],[-71.360471,41.76955199906],[-71.360058,41.76899699906],[-71.359497,41.76824499906],[-71.35945,41.76818199906],[-71.358508,41.76691899906],[-71.358395,41.76676699906],[-71.357807,41.76588999906],[-71.357459,41.76537199906],[-71.357337,41.76521199906],[-71.356526,41.76414999906],[-71.356066,41.76438899906],[-71.355998,41.76445099906],[-71.355953,41.76449499906],[-71.355878,41.76456599906],[-71.355811,41.76468099906],[-71.35578,41.76481299906],[-71.355781,41.76503299906],[-71.355791,41.76514399906],[-71.355791,41.76527499906],[-71.355801,41.76539999906],[-71.355761,41.76548999906],[-71.355631,41.76555599906],[-71.355561,41.76567099906],[-71.35552,41.76578399906],[-71.35549,41.76591399906],[-71.355486,41.76597199906],[-71.355483,41.76602999906],[-71.355495,41.76611199906],[-71.35553,41.76618099906],[-71.355627,41.76628999906],[-71.355841,41.76649999906],[-71.355908,41.76659899906],[-71.355963,41.76670099906],[-71.356052,41.76676899906],[-71.356205,41.76677599906],[-71.356333,41.76674699906],[-71.356458,41.76668699906],[-71.356563,41.76664899906],[-71.356617,41.76664799906],[-71.356761,41.76660299906],[-71.356812,41.76664399906],[-71.356814,41.76672799906],[-71.356715,41.76681399906],[-71.356682,41.76683299906],[-71.356622,41.76683999906],[-71.356451,41.76686899906],[-71.356348,41.76688099906],[-71.356314,41.76694899906],[-71.35631,41.76705999906],[-71.35629,41.76712299906],[-71.356252,41.76716099906],[-71.356204,41.76715799906],[-71.356176,41.76706299906],[-71.356124,41.76704599906],[-71.356081,41.76708299906],[-71.356076,41.76721599906],[-71.356084,41.76734399906],[-71.356082,41.76746599906],[-71.356088,41.76757799906],[-71.356074,41.76762399906],[-71.356046,41.76762399906],[-71.35598,41.76760299906],[-71.355877,41.76749599906],[-71.355736,41.76728999906],[-71.355702,41.76720699906],[-71.355686,41.76715199906],[-71.355528,41.76708399906],[-71.355447,41.76706399906],[-71.355286,41.76737999906],[-71.355164,41.76777599906],[-71.355154,41.76779299906],[-71.355083,41.76801099906],[-71.355026,41.76818799906],[-71.354958,41.76841699906],[-71.354752,41.76908499906],[-71.354553,41.76974899906],[-71.354317,41.77053499906],[-71.354118,41.77119399906],[-71.353615,41.77119799906],[-71.353638,41.77125899906],[-71.353638,41.77205999906],[-71.353668,41.77254099906],[-71.353668,41.77256399906],[-71.353676,41.77259099906],[-71.353683,41.77267099906],[-71.353699,41.77271999906],[-71.353813,41.77291499906],[-71.354164,41.77334199906],[-71.354378,41.77359399906],[-71.354836,41.77413599906],[-71.35511,41.77445599906],[-71.355179,41.77453199906],[-71.355278,41.77465399906],[-71.355385,41.77473799906],[-71.355515,41.77481799906],[-71.355698,41.77488299906],[-71.356071,41.77497499906],[-71.356537,41.77508499906],[-71.356879,41.77515799906],[-71.357094,41.77520399906],[-71.357536,41.77534899906],[-71.357573,41.77536599906],[-71.35791,41.77551999906],[-71.358223,41.77569199906],[-71.35862,41.77590599906],[-71.358917,41.77605099906],[-71.358513,41.77722199906],[-71.358192,41.77808799906],[-71.357964,41.77879299906],[-71.357849,41.77911799906],[-71.357727,41.77945699906],[-71.357713,41.77948899906],[-71.357895,41.77947399906],[-71.360138,41.77929299906],[-71.362717,41.77906799906],[-71.362865,41.77932299906],[-71.362892,41.77936899906],[-71.363014,41.77956399906],[-71.363075,41.77967099906],[-71.363094,41.77971999906],[-71.363162,41.77974799906],[-71.363152,41.77966699906],[-71.363129,41.77951799906],[-71.363129,41.77911399906],[-71.363136,41.77893399906],[-71.363152,41.77864799906],[-71.363164,41.77853299906],[-71.363182,41.77836999906],[-71.363182,41.77827099906],[-71.36319,41.77790799906],[-71.363213,41.77751199906],[-71.363219,41.77707499906],[-71.36322,41.77701599906],[-71.363274,41.77649699906],[-71.363289,41.77614999906],[-71.363319,41.77590199906],[-71.363373,41.77558499906],[-71.363426,41.77533699906],[-71.363602,41.77484499906],[-71.363639,41.77468599906],[-71.363655,41.77461999906],[-71.363667,41.77448799906],[-71.36367,41.77431899906]]]}}"}, +{"type": "blockgroup", "typeId": 106003, "areaId": 28852, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.377451,41.76959699906],[-71.367347,41.77035899906],[-71.366557,41.77041799906],[-71.366476,41.77042399906],[-71.36643,41.77042799906],[-71.366108,41.77045199906],[-71.365929,41.77046599906],[-71.365479,41.77050399906],[-71.364174,41.77061799906],[-71.363892,41.77064499906],[-71.363052,41.77072099906],[-71.362259,41.77079799906],[-71.362144,41.77080499906],[-71.362091,41.77081299906],[-71.362015,41.77083599906],[-71.361916,41.77088199906],[-71.361694,41.77096199906],[-71.361801,41.77108799906],[-71.361916,41.77120999906],[-71.362022,41.77130499906],[-71.362099,41.77138499906],[-71.362228,41.77153799906],[-71.362503,41.77191499906],[-71.362556,41.77198399906],[-71.362602,41.77205699906],[-71.362823,41.77236899906],[-71.362869,41.77244599906],[-71.362976,41.77260599906],[-71.36322,41.77302899906],[-71.363258,41.77311699906],[-71.36348,41.77353999906],[-71.363539,41.77370199906],[-71.363571,41.77378799906],[-71.363632,41.77400199906],[-71.363663,41.77419699906],[-71.36367,41.77431899906],[-71.363667,41.77448799906],[-71.363655,41.77461999906],[-71.363639,41.77468599906],[-71.363602,41.77484499906],[-71.363426,41.77533699906],[-71.363373,41.77558499906],[-71.363319,41.77590199906],[-71.363289,41.77614999906],[-71.363274,41.77649699906],[-71.36322,41.77701599906],[-71.363219,41.77707499906],[-71.363213,41.77751199906],[-71.36319,41.77790799906],[-71.363182,41.77827099906],[-71.363182,41.77836999906],[-71.363164,41.77853299906],[-71.363152,41.77864799906],[-71.363136,41.77893399906],[-71.364693,41.77878199906],[-71.365757,41.77862699906],[-71.365887,41.77861199906],[-71.371698,41.77829999906],[-71.376998,41.77789999906],[-71.377053,41.77663299906],[-71.377098,41.77559999906],[-71.377451,41.76959699906]]]}}"}, +{"type": "blockgroup", "typeId": 106004, "areaId": 28853, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.378193,41.75698299906],[-71.36113,41.75757199906],[-71.360519,41.75774799906],[-71.36055,41.75792299906],[-71.360606,41.75839799906],[-71.360641,41.75870099906],[-71.360641,41.75875899906],[-71.360626,41.75882699906],[-71.360611,41.75884599906],[-71.360565,41.75886199906],[-71.36048,41.75886899906],[-71.360336,41.75888099906],[-71.360458,41.75923199906],[-71.360628,41.75965699906],[-71.360761,41.76002599906],[-71.360817,41.76018099906],[-71.360992,41.76063199906],[-71.361137,41.76097099906],[-71.361397,41.76151699906],[-71.361481,41.76168399906],[-71.361526,41.76178699906],[-71.36161,41.76194799906],[-71.361664,41.76202399906],[-71.361794,41.76213499906],[-71.362007,41.76230199906],[-71.362068,41.76235599906],[-71.362076,41.76237899906],[-71.362091,41.76240199906],[-71.362114,41.76247399906],[-71.362134,41.76258999906],[-71.362152,41.76269099906],[-71.362305,41.76285199906],[-71.362396,41.76293899906],[-71.362633,41.76319099906],[-71.363075,41.76368299906],[-71.3638,41.76445399906],[-71.363983,41.76467899906],[-71.364029,41.76473599906],[-71.364479,41.76522799906],[-71.364853,41.76565599906],[-71.364967,41.76579999906],[-71.365189,41.76610199906],[-71.365219,41.76614799906],[-71.365494,41.76650599906],[-71.365571,41.76661499906],[-71.365829,41.76697899906],[-71.365875,41.76703299906],[-71.365616,41.76713599906],[-71.365288,41.76728099906],[-71.364876,41.76744799906],[-71.364464,41.76763899906],[-71.363808,41.76791399906],[-71.363319,41.76812399906],[-71.363007,41.76826099906],[-71.362671,41.76840999906],[-71.362602,41.76843299906],[-71.361954,41.76870299906],[-71.361954,41.76880599906],[-71.361664,41.76882599906],[-71.361496,41.76889799906],[-71.361435,41.76891699906],[-71.361259,41.76892899906],[-71.361252,41.76887499906],[-71.360321,41.76896199906],[-71.360237,41.76896999906],[-71.360058,41.76899699906],[-71.360471,41.76955199906],[-71.360956,41.77020199906],[-71.361004,41.77026999906],[-71.361541,41.77103299906],[-71.361694,41.77096199906],[-71.361916,41.77088199906],[-71.362015,41.77083599906],[-71.362091,41.77081299906],[-71.362144,41.77080499906],[-71.362259,41.77079799906],[-71.363052,41.77072099906],[-71.363892,41.77064499906],[-71.364174,41.77061799906],[-71.365479,41.77050399906],[-71.365929,41.77046599906],[-71.366108,41.77045199906],[-71.36643,41.77042799906],[-71.366476,41.77042399906],[-71.366557,41.77041799906],[-71.367347,41.77035899906],[-71.377451,41.76959699906],[-71.37752,41.76841999906],[-71.377613,41.76683599906],[-71.378193,41.75698299906]]]}}"}, +{"type": "blockgroup", "typeId": 106005, "areaId": 28854, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.365875,41.76703299906],[-71.365829,41.76697899906],[-71.365571,41.76661499906],[-71.365494,41.76650599906],[-71.365219,41.76614799906],[-71.365189,41.76610199906],[-71.364967,41.76579999906],[-71.364853,41.76565599906],[-71.364479,41.76522799906],[-71.364029,41.76473599906],[-71.363983,41.76467899906],[-71.3638,41.76445399906],[-71.363075,41.76368299906],[-71.362633,41.76319099906],[-71.362396,41.76293899906],[-71.362305,41.76285199906],[-71.362152,41.76269099906],[-71.362134,41.76258999906],[-71.362114,41.76247399906],[-71.362091,41.76240199906],[-71.362076,41.76237899906],[-71.362068,41.76235599906],[-71.362007,41.76230199906],[-71.361794,41.76213499906],[-71.361664,41.76202399906],[-71.36161,41.76194799906],[-71.361526,41.76178699906],[-71.361481,41.76168399906],[-71.361397,41.76151699906],[-71.361137,41.76097099906],[-71.360992,41.76063199906],[-71.360817,41.76018099906],[-71.360761,41.76002599906],[-71.360628,41.75965699906],[-71.360458,41.75923199906],[-71.360336,41.75888099906],[-71.36048,41.75886899906],[-71.360565,41.75886199906],[-71.360611,41.75884599906],[-71.360626,41.75882699906],[-71.360641,41.75875899906],[-71.360641,41.75870099906],[-71.360606,41.75839799906],[-71.36055,41.75792299906],[-71.360519,41.75774799906],[-71.359985,41.75790399906],[-71.359879,41.75793099906],[-71.359901,41.75807599906],[-71.360054,41.75890499906],[-71.360203,41.75993499906],[-71.360199,41.75997899906],[-71.360237,41.76024599906],[-71.360458,41.76161199906],[-71.360466,41.76169199906],[-71.360527,41.76208099906],[-71.360741,41.76337399906],[-71.360855,41.76408799906],[-71.360893,41.76429699906],[-71.360931,41.76457599906],[-71.36097,41.76479299906],[-71.360977,41.76488099906],[-71.360985,41.76498799906],[-71.361,41.76510199906],[-71.361008,41.76532399906],[-71.361046,41.76580399906],[-71.361092,41.76657099906],[-71.361099,41.76660499906],[-71.361137,41.76713199906],[-71.361153,41.76743699906],[-71.361168,41.76764699906],[-71.361252,41.76887499906],[-71.361259,41.76892899906],[-71.361435,41.76891699906],[-71.361496,41.76889799906],[-71.361664,41.76882599906],[-71.361954,41.76880599906],[-71.361954,41.76870299906],[-71.362602,41.76843299906],[-71.362671,41.76840999906],[-71.363007,41.76826099906],[-71.363319,41.76812399906],[-71.363808,41.76791399906],[-71.364464,41.76763899906],[-71.364876,41.76744799906],[-71.365288,41.76728099906],[-71.365616,41.76713599906],[-71.365875,41.76703299906]]]}}"}, +{"type": "blockgroup", "typeId": 106006, "areaId": 28855, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.361252,41.76887499906],[-71.361168,41.76764699906],[-71.361153,41.76743699906],[-71.361137,41.76713199906],[-71.361099,41.76660499906],[-71.361092,41.76657099906],[-71.361046,41.76580399906],[-71.361008,41.76532399906],[-71.361,41.76510199906],[-71.360985,41.76498799906],[-71.360977,41.76488099906],[-71.36097,41.76479299906],[-71.360931,41.76457599906],[-71.360893,41.76429699906],[-71.360855,41.76408799906],[-71.360741,41.76337399906],[-71.360527,41.76208099906],[-71.360466,41.76169199906],[-71.360458,41.76161199906],[-71.360237,41.76024599906],[-71.360199,41.75997899906],[-71.360203,41.75993499906],[-71.360054,41.75890499906],[-71.359901,41.75807599906],[-71.359711,41.75799899906],[-71.359558,41.75797999906],[-71.359436,41.75797699906],[-71.359222,41.75797999906],[-71.358815,41.75803999906],[-71.35878,41.75804499906],[-71.358208,41.75813299906],[-71.357254,41.75827399906],[-71.356339,41.75842299906],[-71.355217,41.75859099906],[-71.354187,41.75874699906],[-71.353735,41.75882099906],[-71.353602,41.75884199906],[-71.353993,41.76045599906],[-71.3539,41.76063799906],[-71.355178,41.76238199906],[-71.356244,41.76377899906],[-71.356526,41.76414999906],[-71.357337,41.76521199906],[-71.357459,41.76537199906],[-71.357807,41.76588999906],[-71.358395,41.76676699906],[-71.358508,41.76691899906],[-71.35945,41.76818199906],[-71.359497,41.76824499906],[-71.360058,41.76899699906],[-71.360237,41.76896999906],[-71.360321,41.76896199906],[-71.361252,41.76887499906]]]}}"}, +{"type": "blockgroup", "typeId": 107011, "areaId": 28856, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.35511,41.77445599906],[-71.354836,41.77413599906],[-71.354378,41.77359399906],[-71.354164,41.77334199906],[-71.353813,41.77291499906],[-71.353699,41.77271999906],[-71.353683,41.77267099906],[-71.353676,41.77259099906],[-71.353668,41.77256399906],[-71.353668,41.77254099906],[-71.353638,41.77205999906],[-71.353638,41.77186999906],[-71.352928,41.77186599906],[-71.352676,41.77186999906],[-71.351807,41.77187699906],[-71.350914,41.77188099906],[-71.34967,41.77188899906],[-71.349548,41.77188899906],[-71.349197,41.77188499906],[-71.348785,41.77185399906],[-71.348633,41.77183499906],[-71.348526,41.77182799906],[-71.348378,41.77182099906],[-71.348177,41.77179999906],[-71.347919,41.77178799906],[-71.347801,41.77179199906],[-71.347664,41.77179699906],[-71.347488,41.77179699906],[-71.347168,41.77178599906],[-71.346985,41.77178599906],[-71.345261,41.77176999906],[-71.345222,41.77176299906],[-71.345169,41.77175899906],[-71.3451,41.77173999906],[-71.345047,41.77172099906],[-71.34507,41.77169799906],[-71.345085,41.77167499906],[-71.345146,41.77160599906],[-71.345192,41.77154199906],[-71.345207,41.77149199906],[-71.345207,41.77133899906],[-71.34523,41.77114099906],[-71.344727,41.77113799906],[-71.344734,41.77046599906],[-71.344727,41.77022199906],[-71.341805,41.77015699906],[-71.342161,41.76952199906],[-71.342682,41.76953099906],[-71.343071,41.76954299906],[-71.343658,41.76955399906],[-71.34388,41.76954999906],[-71.34388,41.76933699906],[-71.343903,41.76878399906],[-71.343895,41.76840599906],[-71.343788,41.76833299906],[-71.343658,41.76834099906],[-71.343376,41.76832999906],[-71.342453,41.76830699906],[-71.341995,41.76829899906],[-71.341709,41.76828899906],[-71.341248,41.76827199906],[-71.340912,41.76826499906],[-71.340622,41.76825299906],[-71.340324,41.76822299906],[-71.339691,41.76807799906],[-71.339478,41.76799799906],[-71.339218,41.76787599906],[-71.339005,41.76776899906],[-71.338745,41.76761599906],[-71.33847,41.76744799906],[-71.338181,41.76728099906],[-71.338058,41.76724599906],[-71.337936,41.76722699906],[-71.337669,41.76719999906],[-71.337311,41.76718499906],[-71.335289,41.76707499906],[-71.334633,41.76703999906],[-71.333778,41.76700199906],[-71.333427,41.76697899906],[-71.333046,41.76694899906],[-71.332649,41.76694099906],[-71.332466,41.76692999906],[-71.332321,41.76692999906],[-71.33223,41.76692599906],[-71.332176,41.76655999906],[-71.332176,41.76653299906],[-71.332161,41.76643399906],[-71.332115,41.76629899906],[-71.3321,41.76626499906],[-71.332031,41.76619399906],[-71.331997,41.76616499906],[-71.331736,41.76634499906],[-71.331223,41.76670099906],[-71.329106,41.76816699906],[-71.328655,41.76847799906],[-71.325007,41.77100599906],[-71.324717,41.77120099906],[-71.324776,41.77129699906],[-71.324816,41.77135899906],[-71.324966,41.77159099906],[-71.325172,41.77192299906],[-71.325447,41.77234999906],[-71.325661,41.77267399906],[-71.325783,41.77285799906],[-71.326065,41.77330399906],[-71.326309,41.77367399906],[-71.326469,41.77392999906],[-71.326698,41.77427699906],[-71.326706,41.77429599906],[-71.32695,41.77467299906],[-71.327194,41.77500199906],[-71.327309,41.77514299906],[-71.327591,41.77540199906],[-71.327728,41.77551699906],[-71.328178,41.77582599906],[-71.328226,41.77585799906],[-71.329193,41.77649699906],[-71.329536,41.77673299906],[-71.33004,41.77706899906],[-71.330482,41.77736999906],[-71.330574,41.77744699906],[-71.33078,41.77760699906],[-71.33094,41.77775599906],[-71.331116,41.77790499906],[-71.331543,41.77834699906],[-71.331718,41.77851499906],[-71.332024,41.77883099906],[-71.332367,41.77916699906],[-71.332642,41.77939599906],[-71.332832,41.77954099906],[-71.333397,41.77991099906],[-71.33342,41.77992999906],[-71.333549,41.77992999906],[-71.334381,41.77995699906],[-71.334747,41.77999899906],[-71.334976,41.78000299906],[-71.335587,41.78002199906],[-71.337502,41.78008299906],[-71.338997,41.78013199906],[-71.339989,41.78015899906],[-71.342827,41.78025099906],[-71.343628,41.78027299906],[-71.344833,41.78031499906],[-71.345802,41.78035399906],[-71.346084,41.78036199906],[-71.346664,41.78037999906],[-71.347382,41.78038399906],[-71.347664,41.78037599906],[-71.347862,41.78035699906],[-71.348053,41.78033099906],[-71.348259,41.78029299906],[-71.34845,41.78024699906],[-71.348557,41.78021599906],[-71.3489,41.78013199906],[-71.349556,41.77992599906],[-71.350189,41.77973899906],[-71.350922,41.77950999906],[-71.351204,41.77942999906],[-71.351654,41.77930099906],[-71.353233,41.77883499906],[-71.353348,41.77878199906],[-71.353569,41.77865999906],[-71.353668,41.77857999906],[-71.35376,41.77851899906],[-71.353859,41.77839699906],[-71.353958,41.77823999906],[-71.35405,41.77799199906],[-71.354309,41.77726399906],[-71.354324,41.77709599906],[-71.35437,41.77691999906],[-71.354454,41.77664199906],[-71.354462,41.77660799906],[-71.354729,41.77582899906],[-71.354988,41.77500499906],[-71.355095,41.77470799906],[-71.35511,41.77458199906],[-71.35511,41.77445599906]]]}}"}, +{"type": "blockgroup", "typeId": 107012, "areaId": 28857, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.353638,41.77125899906],[-71.353615,41.77119799906],[-71.3536,41.77117499906],[-71.353592,41.77115199906],[-71.353577,41.77112999906],[-71.353554,41.77110699906],[-71.353462,41.77104599906],[-71.353394,41.77101499906],[-71.353279,41.77098799906],[-71.353226,41.77097699906],[-71.352661,41.77090099906],[-71.352409,41.77086599906],[-71.351799,41.77078599906],[-71.351555,41.77075199906],[-71.351234,41.77070999906],[-71.351156,41.77068799906],[-71.351044,41.77065699906],[-71.350899,41.77060699906],[-71.350822,41.77057999906],[-71.350716,41.77053499906],[-71.350479,41.77037399906],[-71.350449,41.77033199906],[-71.350372,41.77024799906],[-71.350311,41.77016099906],[-71.350143,41.76982099906],[-71.349998,41.76951599906],[-71.349838,41.76920699906],[-71.3498,41.76912699906],[-71.349655,41.76883699906],[-71.349487,41.76847499906],[-71.348129,41.76844799906],[-71.347252,41.76842899906],[-71.346352,41.76840599906],[-71.345474,41.76838699906],[-71.34481,41.76837199906],[-71.344612,41.76835599906],[-71.343788,41.76833299906],[-71.343895,41.76840599906],[-71.343903,41.76878399906],[-71.34388,41.76933699906],[-71.34388,41.76954999906],[-71.343658,41.76955399906],[-71.343071,41.76954299906],[-71.342682,41.76953099906],[-71.342161,41.76952199906],[-71.341805,41.77015699906],[-71.344727,41.77022199906],[-71.344734,41.77046599906],[-71.344727,41.77113799906],[-71.34523,41.77114099906],[-71.345207,41.77133899906],[-71.345207,41.77149199906],[-71.345192,41.77154199906],[-71.345146,41.77160599906],[-71.345085,41.77167499906],[-71.34507,41.77169799906],[-71.345047,41.77172099906],[-71.3451,41.77173999906],[-71.345169,41.77175899906],[-71.345222,41.77176299906],[-71.345261,41.77176999906],[-71.346985,41.77178599906],[-71.347168,41.77178599906],[-71.347488,41.77179699906],[-71.347664,41.77179699906],[-71.347801,41.77179199906],[-71.347919,41.77178799906],[-71.348177,41.77179999906],[-71.348378,41.77182099906],[-71.348526,41.77182799906],[-71.348633,41.77183499906],[-71.348785,41.77185399906],[-71.349197,41.77188499906],[-71.349548,41.77188899906],[-71.34967,41.77188899906],[-71.350914,41.77188099906],[-71.351807,41.77187699906],[-71.352676,41.77186999906],[-71.352928,41.77186599906],[-71.353638,41.77186999906],[-71.353638,41.77125899906]]]}}"}, +{"type": "blockgroup", "typeId": 107021, "areaId": 28858, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.341118,41.76319899906],[-71.340645,41.76314499906],[-71.340225,41.76309999906],[-71.340012,41.76307699906],[-71.339966,41.76307699906],[-71.339855,41.76306499906],[-71.339755,41.76304899906],[-71.339655,41.76304899906],[-71.339587,41.76304099906],[-71.339577,41.76307099906],[-71.339545,41.76312399906],[-71.3395,41.76317999906],[-71.339416,41.76324599906],[-71.339272,41.76329799906],[-71.339203,41.76336299906],[-71.339172,41.76342399906],[-71.339142,41.76357699906],[-71.338692,41.76353499906],[-71.338318,41.76349299906],[-71.338326,41.76336799906],[-71.338318,41.76335099906],[-71.338303,41.76330899906],[-71.338257,41.76328299906],[-71.338196,41.76326799906],[-71.338043,41.76325599906],[-71.337738,41.76324799906],[-71.337463,41.76322899906],[-71.337326,41.76322599906],[-71.337257,41.76321799906],[-71.337204,41.76319899906],[-71.337096,41.76311199906],[-71.337082,41.76309599906],[-71.336962,41.76299799906],[-71.336884,41.76292999906],[-71.336781,41.76285499906],[-71.335239,41.76392699906],[-71.333942,41.76482399906],[-71.332659,41.76571499906],[-71.331997,41.76616499906],[-71.332031,41.76619399906],[-71.3321,41.76626499906],[-71.332115,41.76629899906],[-71.332161,41.76643399906],[-71.332176,41.76653299906],[-71.332176,41.76655999906],[-71.33223,41.76692599906],[-71.332321,41.76692999906],[-71.332466,41.76692999906],[-71.332649,41.76694099906],[-71.333046,41.76694899906],[-71.333427,41.76697899906],[-71.333778,41.76700199906],[-71.334633,41.76703999906],[-71.335289,41.76707499906],[-71.337311,41.76718499906],[-71.337669,41.76719999906],[-71.337936,41.76722699906],[-71.338058,41.76724599906],[-71.338181,41.76728099906],[-71.33847,41.76744799906],[-71.338745,41.76761599906],[-71.339005,41.76776899906],[-71.339218,41.76787599906],[-71.339478,41.76799799906],[-71.339691,41.76807799906],[-71.340324,41.76822299906],[-71.340355,41.76801699906],[-71.34037,41.76783399906],[-71.340454,41.76720399906],[-71.340492,41.76686899906],[-71.34053,41.76653699906],[-71.340576,41.76621599906],[-71.340645,41.76558299906],[-71.340691,41.76520899906],[-71.340736,41.76498399906],[-71.340752,41.76480499906],[-71.34082,41.76456099906],[-71.340881,41.76441999906],[-71.340927,41.76429399906],[-71.341064,41.76348899906],[-71.341118,41.76319899906]]]}}"}, +{"type": "blockgroup", "typeId": 107022, "areaId": 28859, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.349487,41.76847499906],[-71.349484,41.76845699906],[-71.349197,41.76786399906],[-71.349174,41.76782599906],[-71.349129,41.76771899906],[-71.349045,41.76752499906],[-71.34903,41.76746399906],[-71.349007,41.76739899906],[-71.348965,41.76723799906],[-71.34893,41.76710099906],[-71.348923,41.76702499906],[-71.348831,41.76659799906],[-71.34878,41.76636699906],[-71.348724,41.76611299906],[-71.348724,41.76608999906],[-71.348656,41.76581199906],[-71.348618,41.76562499906],[-71.348549,41.76533899906],[-71.348396,41.76468299906],[-71.348381,41.76459499906],[-71.348068,41.76328699906],[-71.34716,41.76340099906],[-71.346298,41.76351499906],[-71.345428,41.76363799906],[-71.345291,41.76364499906],[-71.3452,41.76364499906],[-71.344971,41.76362999906],[-71.344513,41.76357699906],[-71.344139,41.76354599906],[-71.343857,41.76351199906],[-71.342804,41.76338999906],[-71.342316,41.76332499906],[-71.341755,41.76326599906],[-71.341118,41.76319899906],[-71.341064,41.76348899906],[-71.340927,41.76429399906],[-71.340881,41.76441999906],[-71.34082,41.76456099906],[-71.340752,41.76480499906],[-71.340736,41.76498399906],[-71.340691,41.76520899906],[-71.340645,41.76558299906],[-71.340576,41.76621599906],[-71.34053,41.76653699906],[-71.340492,41.76686899906],[-71.340454,41.76720399906],[-71.34037,41.76783399906],[-71.340355,41.76801699906],[-71.340324,41.76822299906],[-71.340622,41.76825299906],[-71.340912,41.76826499906],[-71.341248,41.76827199906],[-71.341709,41.76828899906],[-71.341995,41.76829899906],[-71.342453,41.76830699906],[-71.343376,41.76832999906],[-71.343658,41.76834099906],[-71.343788,41.76833299906],[-71.344612,41.76835599906],[-71.34481,41.76837199906],[-71.345474,41.76838699906],[-71.346352,41.76840599906],[-71.347252,41.76842899906],[-71.348129,41.76844799906],[-71.349487,41.76847499906]]]}}"}, +{"type": "blockgroup", "typeId": 107023, "areaId": 28860, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.354295,41.75641399906],[-71.353897,41.75130099906],[-71.351495,41.75263499906],[-71.351476,41.75264899906],[-71.349191,41.75425999906],[-71.348878,41.75447799906],[-71.348237,41.75491999906],[-71.347615,41.75535099906],[-71.347289,41.75557299906],[-71.347181,41.75565399906],[-71.346593,41.75605899906],[-71.34653,41.75610599906],[-71.345642,41.75671799906],[-71.345588,41.75675699906],[-71.345161,41.75705099906],[-71.344853,41.75726499906],[-71.34479,41.75729299906],[-71.344643,41.75736099906],[-71.34407,41.75780699906],[-71.343961,41.75788099906],[-71.343583,41.75814999906],[-71.343339,41.75831599906],[-71.343012,41.75853999906],[-71.342395,41.75896499906],[-71.342233,41.75907799906],[-71.342108,41.75916699906],[-71.340957,41.75997099906],[-71.339851,41.76073399906],[-71.338476,41.76168299906],[-71.336781,41.76285499906],[-71.336884,41.76292999906],[-71.336962,41.76299799906],[-71.337082,41.76309599906],[-71.337096,41.76311199906],[-71.337204,41.76319899906],[-71.337257,41.76321799906],[-71.337326,41.76322599906],[-71.337463,41.76322899906],[-71.337738,41.76324799906],[-71.338043,41.76325599906],[-71.338196,41.76326799906],[-71.338257,41.76328299906],[-71.338303,41.76330899906],[-71.338318,41.76335099906],[-71.338326,41.76336799906],[-71.338318,41.76349299906],[-71.338692,41.76353499906],[-71.339142,41.76357699906],[-71.339172,41.76342399906],[-71.339203,41.76336299906],[-71.339272,41.76329799906],[-71.339416,41.76324599906],[-71.3395,41.76317999906],[-71.339545,41.76312399906],[-71.339577,41.76307099906],[-71.339587,41.76304099906],[-71.339655,41.76304899906],[-71.339755,41.76304899906],[-71.339855,41.76306499906],[-71.339966,41.76307699906],[-71.340012,41.76307699906],[-71.340225,41.76309999906],[-71.340645,41.76314499906],[-71.341118,41.76319899906],[-71.341755,41.76326599906],[-71.342316,41.76332499906],[-71.342804,41.76338999906],[-71.343857,41.76351199906],[-71.344139,41.76354599906],[-71.344513,41.76357699906],[-71.344971,41.76362999906],[-71.3452,41.76364499906],[-71.345291,41.76364499906],[-71.345428,41.76363799906],[-71.346298,41.76351499906],[-71.34716,41.76340099906],[-71.348068,41.76328699906],[-71.347984,41.76295899906],[-71.347855,41.76241699906],[-71.347748,41.76200099906],[-71.34761,41.76143599906],[-71.347488,41.76097099906],[-71.347427,41.76074999906],[-71.347252,41.76001399906],[-71.347182,41.75975999906],[-71.34716,41.75966999906],[-71.347176,41.75963199906],[-71.347183,41.75959399906],[-71.347214,41.75952899906],[-71.347252,41.75948699906],[-71.34729,41.75946399906],[-71.347321,41.75945699906],[-71.347343,41.75944499906],[-71.347466,41.75941799906],[-71.347572,41.75942599906],[-71.347748,41.75944099906],[-71.348022,41.75947999906],[-71.348091,41.75949499906],[-71.348434,41.75956699906],[-71.348686,41.75959799906],[-71.348808,41.75960899906],[-71.349953,41.75972399906],[-71.35006,41.75973499906],[-71.350113,41.75973499906],[-71.350138,41.75973899906],[-71.350395,41.75974299906],[-71.350601,41.75972399906],[-71.350677,41.75970799906],[-71.350861,41.75967199906],[-71.350891,41.75966599906],[-71.351151,41.75959799906],[-71.351547,41.75946399906],[-71.351582,41.75944999906],[-71.351997,41.75928499906],[-71.352066,41.75925399906],[-71.352272,41.75917399906],[-71.352676,41.75902899906],[-71.352821,41.75898899906],[-71.352982,41.75895299906],[-71.35305,41.75894199906],[-71.353113,41.75892899906],[-71.353271,41.75889599906],[-71.353542,41.75885199906],[-71.353602,41.75884199906],[-71.354295,41.75641399906]]]}}"}, +{"type": "blockgroup", "typeId": 107024, "areaId": 28861, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.356814,41.76672799906],[-71.356812,41.76664399906],[-71.356761,41.76660299906],[-71.356617,41.76664799906],[-71.356563,41.76664899906],[-71.356458,41.76668699906],[-71.356333,41.76674699906],[-71.356205,41.76677599906],[-71.356052,41.76676899906],[-71.355963,41.76670099906],[-71.355908,41.76659899906],[-71.355841,41.76649999906],[-71.355627,41.76628999906],[-71.35553,41.76618099906],[-71.355495,41.76611199906],[-71.355483,41.76602999906],[-71.355486,41.76597199906],[-71.35549,41.76591399906],[-71.35552,41.76578399906],[-71.355561,41.76567099906],[-71.355631,41.76555599906],[-71.355761,41.76548999906],[-71.355801,41.76539999906],[-71.355791,41.76527499906],[-71.355791,41.76514399906],[-71.355781,41.76503299906],[-71.35578,41.76481299906],[-71.355811,41.76468099906],[-71.355878,41.76456599906],[-71.355953,41.76449499906],[-71.355998,41.76445099906],[-71.356066,41.76438899906],[-71.356526,41.76414999906],[-71.356244,41.76377899906],[-71.355178,41.76238199906],[-71.3539,41.76063799906],[-71.353993,41.76045599906],[-71.353602,41.75884199906],[-71.353542,41.75885199906],[-71.353271,41.75889599906],[-71.353113,41.75892899906],[-71.35305,41.75894199906],[-71.352982,41.75895299906],[-71.352821,41.75898899906],[-71.352676,41.75902899906],[-71.352272,41.75917399906],[-71.352066,41.75925399906],[-71.351997,41.75928499906],[-71.351582,41.75944999906],[-71.351547,41.75946399906],[-71.351151,41.75959799906],[-71.350891,41.75966599906],[-71.350861,41.75967199906],[-71.350677,41.75970799906],[-71.350601,41.75972399906],[-71.350395,41.75974299906],[-71.350138,41.75973899906],[-71.350113,41.75973499906],[-71.35006,41.75973499906],[-71.349953,41.75972399906],[-71.348808,41.75960899906],[-71.348686,41.75959799906],[-71.348434,41.75956699906],[-71.348091,41.75949499906],[-71.348022,41.75947999906],[-71.347748,41.75944099906],[-71.347572,41.75942599906],[-71.347466,41.75941799906],[-71.347343,41.75944499906],[-71.347321,41.75945699906],[-71.34729,41.75946399906],[-71.347252,41.75948699906],[-71.347214,41.75952899906],[-71.347183,41.75959399906],[-71.347176,41.75963199906],[-71.34716,41.75966999906],[-71.347182,41.75975999906],[-71.347252,41.76001399906],[-71.347427,41.76074999906],[-71.347488,41.76097099906],[-71.34761,41.76143599906],[-71.347748,41.76200099906],[-71.347855,41.76241699906],[-71.347984,41.76295899906],[-71.348068,41.76328699906],[-71.348381,41.76459499906],[-71.348396,41.76468299906],[-71.348549,41.76533899906],[-71.348618,41.76562499906],[-71.348656,41.76581199906],[-71.348724,41.76608999906],[-71.348724,41.76611299906],[-71.34878,41.76636699906],[-71.348831,41.76659799906],[-71.348923,41.76702499906],[-71.34893,41.76710099906],[-71.348965,41.76723799906],[-71.349007,41.76739899906],[-71.34903,41.76746399906],[-71.349045,41.76752499906],[-71.349129,41.76771899906],[-71.349174,41.76782599906],[-71.349197,41.76786399906],[-71.349484,41.76845699906],[-71.349487,41.76847499906],[-71.349655,41.76883699906],[-71.3498,41.76912699906],[-71.349838,41.76920699906],[-71.349998,41.76951599906],[-71.350143,41.76982099906],[-71.350311,41.77016099906],[-71.350372,41.77024799906],[-71.350449,41.77033199906],[-71.350479,41.77037399906],[-71.350716,41.77053499906],[-71.350822,41.77057999906],[-71.350899,41.77060699906],[-71.351044,41.77065699906],[-71.351156,41.77068799906],[-71.351234,41.77070999906],[-71.351555,41.77075199906],[-71.351799,41.77078599906],[-71.352409,41.77086599906],[-71.352661,41.77090099906],[-71.353226,41.77097699906],[-71.353279,41.77098799906],[-71.353394,41.77101499906],[-71.353462,41.77104599906],[-71.353554,41.77110699906],[-71.353577,41.77112999906],[-71.353592,41.77115199906],[-71.3536,41.77117499906],[-71.353615,41.77119799906],[-71.354118,41.77119399906],[-71.354317,41.77053499906],[-71.354553,41.76974899906],[-71.354752,41.76908499906],[-71.354958,41.76841699906],[-71.355026,41.76818799906],[-71.355083,41.76801099906],[-71.355154,41.76779299906],[-71.355164,41.76777599906],[-71.355286,41.76737999906],[-71.355447,41.76706399906],[-71.355528,41.76708399906],[-71.355686,41.76715199906],[-71.355702,41.76720699906],[-71.355736,41.76728999906],[-71.355877,41.76749599906],[-71.35598,41.76760299906],[-71.356046,41.76762399906],[-71.356074,41.76762399906],[-71.356088,41.76757799906],[-71.356082,41.76746599906],[-71.356084,41.76734399906],[-71.356076,41.76721599906],[-71.356081,41.76708299906],[-71.356124,41.76704599906],[-71.356176,41.76706299906],[-71.356204,41.76715799906],[-71.356252,41.76716099906],[-71.35629,41.76712299906],[-71.35631,41.76705999906],[-71.356314,41.76694899906],[-71.356348,41.76688099906],[-71.356451,41.76686899906],[-71.356622,41.76683999906],[-71.356682,41.76683299906],[-71.356715,41.76681399906],[-71.356814,41.76672799906]]]}}"}, +{"type": "blockgroup", "typeId": 108001, "areaId": 28862, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.387299,41.88952299906],[-71.387268,41.88883999906],[-71.387253,41.88817599906],[-71.387192,41.88721799906],[-71.387138,41.88659299906],[-71.387054,41.88580699906],[-71.386963,41.88511299906],[-71.386955,41.88509399906],[-71.386887,41.88454399906],[-71.38681,41.88397199906],[-71.386802,41.88395499906],[-71.386784,41.88375899906],[-71.386749,41.88338599906],[-71.386744,41.88333699906],[-71.386742,41.88331599906],[-71.386317,41.88337199906],[-71.386073,41.88340399906],[-71.385816,41.88343599906],[-71.385269,41.88351099906],[-71.383888,41.88368999906],[-71.382324,41.88389599906],[-71.381008,41.88406699906],[-71.380946,41.88407499906],[-71.3809,41.88529899906],[-71.380821,41.88589099906],[-71.380878,41.88652099906],[-71.380665,41.88706699906],[-71.380219,41.88792999906],[-71.381367,41.88851399906],[-71.381824,41.88836999906],[-71.381867,41.88836499906],[-71.382083,41.88835399906],[-71.382316,41.88890199906],[-71.382605,41.88885699906],[-71.382952,41.88957799906],[-71.383093,41.88986999906],[-71.381805,41.89149999906],[-71.381657,41.89249699906],[-71.381633,41.89265699906],[-71.381638,41.89269999906],[-71.381962,41.89254599906],[-71.382109,41.89248199906],[-71.382784,41.89213799906],[-71.382849,41.89210299906],[-71.383097,41.89196499906],[-71.383502,41.89168999906],[-71.383902,41.89137299906],[-71.384078,41.89120999906],[-71.384402,41.89084899906],[-71.384578,41.89058799906],[-71.384704,41.89037399906],[-71.384807,41.89015399906],[-71.38489,41.88993099906],[-71.384904,41.88989199906],[-71.384964,41.88966799906],[-71.384998,41.88953799906],[-71.385001,41.88951199906],[-71.385055,41.88951599906],[-71.385156,41.88952299906],[-71.385422,41.88953799906],[-71.385986,41.88953399906],[-71.38662,41.88952299906],[-71.387299,41.88952299906]]]}}"}, +{"type": "blockgroup", "typeId": 108002, "areaId": 28863, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.396103,41.88584899906],[-71.395981,41.88573799906],[-71.3955,41.88531099906],[-71.395424,41.88524599906],[-71.394852,41.88474999906],[-71.394823,41.88472399906],[-71.394798,41.88470099906],[-71.394699,41.88461699906],[-71.394387,41.88436799906],[-71.394203,41.88421999906],[-71.392982,41.88447999906],[-71.392731,41.88453699906],[-71.392113,41.88466599906],[-71.39193,41.88470499906],[-71.391563,41.88478099906],[-71.391243,41.88486899906],[-71.390373,41.88505599906],[-71.389961,41.88515499906],[-71.389343,41.88529199906],[-71.389206,41.88532599906],[-71.387383,41.88574599906],[-71.387054,41.88580699906],[-71.387138,41.88659299906],[-71.387192,41.88721799906],[-71.387253,41.88817599906],[-71.387268,41.88883999906],[-71.387299,41.88952299906],[-71.387939,41.88949199906],[-71.38932,41.88945399906],[-71.390236,41.88917199906],[-71.389885,41.88854599906],[-71.389755,41.88828999906],[-71.390556,41.88804599906],[-71.390594,41.88812599906],[-71.390907,41.88865699906],[-71.39122,41.88855699906],[-71.391899,41.88834799906],[-71.392624,41.88812299906],[-71.392494,41.88793199906],[-71.392349,41.88770699906],[-71.393799,41.88700099906],[-71.394897,41.88645899906],[-71.396103,41.88584899906]]]}}"}, +{"type": "blockgroup", "typeId": 108003, "areaId": 28864, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.394203,41.88421999906],[-71.393585,41.88373199906],[-71.392975,41.88325099906],[-71.392891,41.88318299906],[-71.392548,41.88285099906],[-71.392448,41.88274799906],[-71.39231,41.88259899906],[-71.39184,41.88266099906],[-71.391533,41.88268299906],[-71.390573,41.88281199906],[-71.390044,41.88288299906],[-71.389751,41.88292199906],[-71.389687,41.88292999906],[-71.389355,41.88297499906],[-71.388234,41.88312499906],[-71.386742,41.88331599906],[-71.386744,41.88333699906],[-71.386749,41.88338599906],[-71.386784,41.88375899906],[-71.386802,41.88395499906],[-71.38681,41.88397199906],[-71.386887,41.88454399906],[-71.386955,41.88509399906],[-71.386963,41.88511299906],[-71.387054,41.88580699906],[-71.387383,41.88574599906],[-71.389206,41.88532599906],[-71.389343,41.88529199906],[-71.389961,41.88515499906],[-71.390373,41.88505599906],[-71.391243,41.88486899906],[-71.391563,41.88478099906],[-71.39193,41.88470499906],[-71.392113,41.88466599906],[-71.392731,41.88453699906],[-71.392982,41.88447999906],[-71.394203,41.88421999906]]]}}"}, +{"type": "blockgroup", "typeId": 109001, "areaId": 28865, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.39006,41.89931899906],[-71.389842,41.89909399906],[-71.389748,41.89899799906],[-71.389351,41.89863999906],[-71.389015,41.89833099906],[-71.388947,41.89826199906],[-71.388802,41.89812899906],[-71.388702,41.89800999906],[-71.388618,41.89785399906],[-71.388565,41.89771699906],[-71.388489,41.89736899906],[-71.388359,41.89662899906],[-71.388359,41.89660599906],[-71.388199,41.89580199906],[-71.38816,41.89555799906],[-71.388046,41.89483599906],[-71.387978,41.89442799906],[-71.387924,41.89419199906],[-71.387779,41.89344799906],[-71.387703,41.89294799906],[-71.38768,41.89283799906],[-71.387642,41.89264699906],[-71.387558,41.89218499906],[-71.387497,41.89182299906],[-71.387474,41.89169299906],[-71.387383,41.89110199906],[-71.387367,41.89081599906],[-71.387337,41.89018199906],[-71.387314,41.88984299906],[-71.387299,41.88952299906],[-71.38662,41.88952299906],[-71.385986,41.88953399906],[-71.385422,41.88953799906],[-71.385156,41.88952299906],[-71.385055,41.88951599906],[-71.385001,41.88951199906],[-71.384998,41.88953799906],[-71.384964,41.88966799906],[-71.384904,41.88989199906],[-71.38489,41.88993099906],[-71.384807,41.89015399906],[-71.384704,41.89037399906],[-71.384578,41.89058799906],[-71.384402,41.89084899906],[-71.384078,41.89120999906],[-71.383902,41.89137299906],[-71.383502,41.89168999906],[-71.383097,41.89196499906],[-71.382849,41.89210299906],[-71.382784,41.89213799906],[-71.382109,41.89248199906],[-71.381962,41.89254599906],[-71.381638,41.89269999906],[-71.381624,41.89276899906],[-71.381463,41.89354599906],[-71.3821,41.89409899906],[-71.3823,41.89539899906],[-71.38299,41.89706199906],[-71.3836,41.89759899906],[-71.38366,41.89765499906],[-71.383738,41.89772799906],[-71.384644,41.89857399906],[-71.385932,41.89959099906],[-71.386249,41.89953899906],[-71.386348,41.89963599906],[-71.388236,41.89984599906],[-71.388268,41.89980499906],[-71.39006,41.89931899906]]]}}"}, +{"type": "blockgroup", "typeId": 109002, "areaId": 28866, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.397243,41.89678199906],[-71.3966,41.89619899906],[-71.396072,41.89583799906],[-71.395447,41.89552699906],[-71.395317,41.89547699906],[-71.395248,41.89543499906],[-71.395134,41.89535899906],[-71.394974,41.89527499906],[-71.394913,41.89521399906],[-71.394608,41.89498499906],[-71.393936,41.89453099906],[-71.394348,41.89420299906],[-71.394592,41.89400899906],[-71.394073,41.89335599906],[-71.393692,41.89349699906],[-71.393555,41.89353599906],[-71.393303,41.89356199906],[-71.390579,41.89387899906],[-71.390221,41.89391699906],[-71.388908,41.89406999906],[-71.388435,41.89413099906],[-71.387924,41.89419199906],[-71.387978,41.89442799906],[-71.388046,41.89483599906],[-71.38816,41.89555799906],[-71.388199,41.89580199906],[-71.388359,41.89660599906],[-71.388359,41.89662899906],[-71.388489,41.89736899906],[-71.388565,41.89771699906],[-71.388618,41.89785399906],[-71.388702,41.89800999906],[-71.388802,41.89812899906],[-71.388947,41.89826199906],[-71.389015,41.89833099906],[-71.389351,41.89863999906],[-71.389748,41.89899799906],[-71.389842,41.89909399906],[-71.39006,41.89931899906],[-71.391739,41.89834299906],[-71.39232,41.89812799906],[-71.393133,41.89784799906],[-71.394296,41.89765199906],[-71.395214,41.89738599906],[-71.396053,41.89713599906],[-71.397243,41.89678199906]]]}}"}, +{"type": "blockgroup", "typeId": 109003, "areaId": 28867, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.394073,41.89335599906],[-71.393654,41.89273499906],[-71.393219,41.89213199906],[-71.392784,41.89151799906],[-71.39238,41.89094899906],[-71.392052,41.89108299906],[-71.391556,41.89114399906],[-71.390556,41.89128499906],[-71.389503,41.89142199906],[-71.388535,41.89154099906],[-71.387474,41.89169299906],[-71.387497,41.89182299906],[-71.387558,41.89218499906],[-71.387642,41.89264699906],[-71.38768,41.89283799906],[-71.387703,41.89294799906],[-71.387779,41.89344799906],[-71.387924,41.89419199906],[-71.388435,41.89413099906],[-71.388908,41.89406999906],[-71.390221,41.89391699906],[-71.390579,41.89387899906],[-71.393303,41.89356199906],[-71.393555,41.89353599906],[-71.393692,41.89349699906],[-71.394073,41.89335599906]]]}}"}, +{"type": "blockgroup", "typeId": 109004, "areaId": 28868, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.39238,41.89094899906],[-71.392296,41.89083099906],[-71.391953,41.89034999906],[-71.391724,41.89001099906],[-71.391487,41.88968699906],[-71.391235,41.88925899906],[-71.390907,41.88865699906],[-71.390594,41.88812599906],[-71.390556,41.88804599906],[-71.389755,41.88828999906],[-71.389885,41.88854599906],[-71.390236,41.88917199906],[-71.38932,41.88945399906],[-71.387939,41.88949199906],[-71.387299,41.88952299906],[-71.387314,41.88984299906],[-71.387337,41.89018199906],[-71.387367,41.89081599906],[-71.387383,41.89110199906],[-71.387474,41.89169299906],[-71.388535,41.89154099906],[-71.389503,41.89142199906],[-71.390556,41.89128499906],[-71.391556,41.89114399906],[-71.392052,41.89108299906],[-71.39238,41.89094899906]]]}}"}, +{"type": "blockgroup", "typeId": 110001, "areaId": 28869, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.404568,41.89482399906],[-71.404533,41.89477199906],[-71.404503,41.89471799906],[-71.40448,41.89468399906],[-71.404335,41.89446299906],[-71.404106,41.89412699906],[-71.403984,41.89395499906],[-71.403885,41.89380599906],[-71.403679,41.89350899906],[-71.403412,41.89311999906],[-71.403107,41.89266999906],[-71.402565,41.89285999906],[-71.402405,41.89268499906],[-71.402245,41.89250599906],[-71.401939,41.89210499906],[-71.401703,41.89180399906],[-71.401474,41.89152899906],[-71.401268,41.89129299906],[-71.401093,41.89105999906],[-71.400978,41.89097599906],[-71.400307,41.89049899906],[-71.399651,41.89003799906],[-71.398499,41.89094499906],[-71.398239,41.89115499906],[-71.398102,41.89125799906],[-71.397217,41.89195599906],[-71.395988,41.89292099906],[-71.395592,41.89323399906],[-71.395325,41.89343999906],[-71.394592,41.89400899906],[-71.394348,41.89420299906],[-71.393936,41.89453099906],[-71.394608,41.89498499906],[-71.394913,41.89521399906],[-71.394974,41.89527499906],[-71.395134,41.89535899906],[-71.395248,41.89543499906],[-71.395317,41.89547699906],[-71.395447,41.89552699906],[-71.396072,41.89583799906],[-71.3966,41.89619899906],[-71.397243,41.89678199906],[-71.398145,41.89651299906],[-71.398941,41.89631299906],[-71.399518,41.89616699906],[-71.400869,41.89582699906],[-71.401353,41.89567599906],[-71.401855,41.89555999906],[-71.402001,41.89552599906],[-71.402379,41.89543799906],[-71.403488,41.89516799906],[-71.403673,41.89510799906],[-71.404401,41.89487699906],[-71.404568,41.89482399906]]]}}"}, +{"type": "blockgroup", "typeId": 110002, "areaId": 28870, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.398239,41.89115499906],[-71.397598,41.89068599906],[-71.39695,41.89021699906],[-71.396745,41.89002299906],[-71.396355,41.88965199906],[-71.396126,41.88942299906],[-71.395836,41.88914499906],[-71.395355,41.88866399906],[-71.394859,41.88816499906],[-71.394341,41.88757299906],[-71.393799,41.88700099906],[-71.392349,41.88770699906],[-71.392494,41.88793199906],[-71.392624,41.88812299906],[-71.391899,41.88834799906],[-71.39122,41.88855699906],[-71.390907,41.88865699906],[-71.391235,41.88925899906],[-71.391487,41.88968699906],[-71.391724,41.89001099906],[-71.391953,41.89034999906],[-71.392296,41.89083099906],[-71.39238,41.89094899906],[-71.392784,41.89151799906],[-71.393219,41.89213199906],[-71.393654,41.89273499906],[-71.394073,41.89335599906],[-71.394592,41.89400899906],[-71.395325,41.89343999906],[-71.395592,41.89323399906],[-71.395988,41.89292099906],[-71.397217,41.89195599906],[-71.398102,41.89125799906],[-71.398239,41.89115499906]]]}}"}, +{"type": "blockgroup", "typeId": 110003, "areaId": 28871, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.400459,41.88817999906],[-71.399864,41.88759599906],[-71.39962,41.88732899906],[-71.398865,41.88657399906],[-71.398613,41.88634099906],[-71.398346,41.88607399906],[-71.397667,41.88537999906],[-71.397354,41.88507799906],[-71.396744,41.88539099906],[-71.395981,41.88573799906],[-71.396103,41.88584899906],[-71.394897,41.88645899906],[-71.393799,41.88700099906],[-71.394341,41.88757299906],[-71.394859,41.88816499906],[-71.395355,41.88866399906],[-71.395836,41.88914499906],[-71.396126,41.88942299906],[-71.396355,41.88965199906],[-71.396745,41.89002299906],[-71.39695,41.89021699906],[-71.397598,41.89068599906],[-71.398239,41.89115499906],[-71.398499,41.89094499906],[-71.399651,41.89003799906],[-71.400177,41.88965199906],[-71.399895,41.88948099906],[-71.399498,41.88916399906],[-71.398979,41.88864099906],[-71.399773,41.88841199906],[-71.400459,41.88817999906]]]}}"}, +{"type": "blockgroup", "typeId": 111001, "areaId": 28872, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.407283,41.89163299906],[-71.407141,41.89128199906],[-71.406441,41.88913999906],[-71.406227,41.88849099906],[-71.406016,41.88784799906],[-71.40587,41.88739399906],[-71.405817,41.88723899906],[-71.405695,41.88724699906],[-71.403709,41.88739799906],[-71.402832,41.88747399906],[-71.401779,41.88755399906],[-71.401825,41.88780599906],[-71.40123,41.88796999906],[-71.400459,41.88817999906],[-71.399773,41.88841199906],[-71.398979,41.88864099906],[-71.399498,41.88916399906],[-71.399895,41.88948099906],[-71.400177,41.88965199906],[-71.399651,41.89003799906],[-71.400307,41.89049899906],[-71.400978,41.89097599906],[-71.401093,41.89105999906],[-71.401268,41.89129299906],[-71.401474,41.89152899906],[-71.401703,41.89180399906],[-71.401939,41.89210499906],[-71.402245,41.89250599906],[-71.402405,41.89268499906],[-71.402565,41.89285999906],[-71.403107,41.89266999906],[-71.403412,41.89311999906],[-71.403679,41.89350899906],[-71.403885,41.89380599906],[-71.403984,41.89395499906],[-71.404106,41.89412699906],[-71.404335,41.89446299906],[-71.40448,41.89468399906],[-71.404503,41.89471799906],[-71.404533,41.89477199906],[-71.404568,41.89482399906],[-71.404691,41.89478399906],[-71.405529,41.89376599906],[-71.407055,41.89190999906],[-71.407283,41.89163299906]]]}}"}, +{"type": "blockgroup", "typeId": 111002, "areaId": 28873, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.405817,41.88723899906],[-71.405485,41.88625399906],[-71.40489,41.88449699906],[-71.40428,41.88273899906],[-71.403805,41.88134799906],[-71.403706,41.88105899906],[-71.402907,41.88117799906],[-71.402163,41.88128299906],[-71.400211,41.88157399906],[-71.394872,41.88225899906],[-71.392931,41.88251599906],[-71.39231,41.88259899906],[-71.392448,41.88274799906],[-71.392548,41.88285099906],[-71.392891,41.88318299906],[-71.392975,41.88325099906],[-71.393585,41.88373199906],[-71.394203,41.88421999906],[-71.394387,41.88436799906],[-71.394699,41.88461699906],[-71.394798,41.88470099906],[-71.394823,41.88472399906],[-71.394852,41.88474999906],[-71.395424,41.88524599906],[-71.3955,41.88531099906],[-71.395981,41.88573799906],[-71.396744,41.88539099906],[-71.397354,41.88507799906],[-71.397667,41.88537999906],[-71.398346,41.88607399906],[-71.398613,41.88634099906],[-71.398865,41.88657399906],[-71.39962,41.88732899906],[-71.399864,41.88759599906],[-71.400459,41.88817999906],[-71.40123,41.88796999906],[-71.401825,41.88780599906],[-71.401779,41.88755399906],[-71.402832,41.88747399906],[-71.403709,41.88739799906],[-71.405695,41.88724699906],[-71.405817,41.88723899906]]]}}"}, +{"type": "blockgroup", "typeId": 112001, "areaId": 28874, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.396355,41.91923499906],[-71.396255,41.91907899906],[-71.395935,41.91850999906],[-71.39566,41.91804099906],[-71.395309,41.91742699906],[-71.395287,41.91739699906],[-71.39489,41.91673699906],[-71.394823,41.91662499906],[-71.394775,41.91652699906],[-71.394615,41.91624799906],[-71.394455,41.91598099906],[-71.394417,41.91589699906],[-71.394379,41.91582899906],[-71.394318,41.91568799906],[-71.394272,41.91559599906],[-71.394234,41.91550399906],[-71.394203,41.91541299906],[-71.394157,41.91530599906],[-71.394135,41.91524099906],[-71.394115,41.91518699906],[-71.394081,41.91509599906],[-71.394066,41.91506999906],[-71.393936,41.91471099906],[-71.393875,41.91455799906],[-71.393776,41.91430299906],[-71.393585,41.91385699906],[-71.393326,41.91325399906],[-71.39315,41.91284199906],[-71.393044,41.91260899906],[-71.392952,41.91263199906],[-71.392784,41.91264699906],[-71.392563,41.91265499906],[-71.392464,41.91265499906],[-71.392212,41.91266299906],[-71.391846,41.91266599906],[-71.391495,41.91268199906],[-71.391075,41.91269699906],[-71.390785,41.91270399906],[-71.390625,41.91271199906],[-71.390236,41.91275399906],[-71.390175,41.91275799906],[-71.389984,41.91278499906],[-71.389336,41.91290699906],[-71.389191,41.91293299906],[-71.388474,41.91308199906],[-71.388405,41.91309699906],[-71.388123,41.91314299906],[-71.387009,41.91327699906],[-71.386337,41.91340299906],[-71.385902,41.91348599906],[-71.385414,41.91358699906],[-71.384979,41.91367699906],[-71.384727,41.91375399906],[-71.384163,41.91390599906],[-71.384118,41.91391899906],[-71.383856,41.91399399906],[-71.383667,41.91404299906],[-71.382904,41.91428399906],[-71.381829,41.91461699906],[-71.381457,41.91473999906],[-71.38144,41.91474499906],[-71.38144,41.91499899906],[-71.381439,41.91528699906],[-71.381439,41.91547199906],[-71.382499,41.91589899906],[-71.382716,41.91596699906],[-71.384402,41.91650099906],[-71.384752,41.91656399906],[-71.386228,41.91684299906],[-71.386192,41.91694999906],[-71.386124,41.91710299906],[-71.386097,41.91714899906],[-71.38604,41.91724799906],[-71.385841,41.91749999906],[-71.38549,41.91789599906],[-71.385437,41.91798399906],[-71.385292,41.91827399906],[-71.385139,41.91864399906],[-71.385033,41.91892199906],[-71.384888,41.91943399906],[-71.384872,41.91958999906],[-71.384895,41.91990699906],[-71.386238,41.91988799906],[-71.38665,41.91987999906],[-71.387581,41.91985299906],[-71.388428,41.91982699906],[-71.388466,41.91982299906],[-71.388649,41.91981499906],[-71.389357,41.91980099906],[-71.389381,41.91980099906],[-71.390236,41.91978499906],[-71.391119,41.91975799906],[-71.391144,41.91975399906],[-71.391464,41.91974599906],[-71.392647,41.91962399906],[-71.392746,41.91961699906],[-71.393517,41.91951799906],[-71.393547,41.91951799906],[-71.393825,41.91948899906],[-71.393993,41.91947199906],[-71.394447,41.91942599906],[-71.394974,41.91936499906],[-71.396355,41.91923499906]]]}}"}, +{"type": "blockgroup", "typeId": 112002, "areaId": 28875, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.39325,41.90723399906],[-71.393227,41.90715799906],[-71.393112,41.90684099906],[-71.393074,41.90675399906],[-71.392975,41.90645999906],[-71.392754,41.90585699906],[-71.39247,41.90505699906],[-71.39238,41.90480399906],[-71.392227,41.90441099906],[-71.392082,41.90400299906],[-71.392021,41.90381999906],[-71.39183,41.90330099906],[-71.391601,41.90265799906],[-71.391453,41.90225399906],[-71.391212,41.90158799906],[-71.39093,41.90080599906],[-71.390808,41.90048199906],[-71.390701,41.90021099906],[-71.390648,41.90005499906],[-71.390564,41.89987599906],[-71.390503,41.89978799906],[-71.390396,41.89966999906],[-71.39026,41.89952799906],[-71.39006,41.89931899906],[-71.388268,41.89980499906],[-71.388236,41.89984599906],[-71.386348,41.89963599906],[-71.386249,41.89953899906],[-71.385932,41.89959099906],[-71.384644,41.89857399906],[-71.383738,41.89772799906],[-71.38366,41.89765499906],[-71.3836,41.89759899906],[-71.38299,41.89706199906],[-71.3823,41.89539899906],[-71.3821,41.89409899906],[-71.381463,41.89354599906],[-71.381463,41.89373099906],[-71.38146,41.89633899906],[-71.381459,41.89675599906],[-71.381458,41.89855399906],[-71.381456,41.89887899906],[-71.381457,41.89942299906],[-71.381456,41.89976699906],[-71.381456,41.89998799906],[-71.381455,41.90027599906],[-71.381454,41.90192099906],[-71.381452,41.90359799906],[-71.381449,41.90679599906],[-71.381446,41.90768699906],[-71.381448,41.90774799906],[-71.381446,41.91020599906],[-71.381445,41.91049699906],[-71.381443,41.91145699906],[-71.381443,41.91165099906],[-71.381444,41.91221199906],[-71.381442,41.91245699906],[-71.38144,41.91290299906],[-71.381441,41.91415099906],[-71.38144,41.91474499906],[-71.381457,41.91473999906],[-71.381829,41.91461699906],[-71.382904,41.91428399906],[-71.383667,41.91404299906],[-71.383856,41.91399399906],[-71.384118,41.91391899906],[-71.384163,41.91390599906],[-71.384727,41.91375399906],[-71.384979,41.91367699906],[-71.385414,41.91358699906],[-71.385902,41.91348599906],[-71.386337,41.91340299906],[-71.387009,41.91327699906],[-71.388123,41.91314299906],[-71.388405,41.91309699906],[-71.388474,41.91308199906],[-71.389191,41.91293299906],[-71.389336,41.91290699906],[-71.389984,41.91278499906],[-71.390175,41.91275799906],[-71.390236,41.91275399906],[-71.390625,41.91271199906],[-71.390785,41.91270399906],[-71.391075,41.91269699906],[-71.391495,41.91268199906],[-71.391846,41.91266599906],[-71.392212,41.91266299906],[-71.392464,41.91265499906],[-71.392563,41.91265499906],[-71.392784,41.91264699906],[-71.392952,41.91263199906],[-71.393044,41.91260899906],[-71.392784,41.91207899906],[-71.392525,41.91145299906],[-71.392502,41.91141499906],[-71.39212,41.91047699906],[-71.392052,41.91030099906],[-71.391731,41.90953099906],[-71.391418,41.90877499906],[-71.39135,41.90861499906],[-71.391075,41.90788999906],[-71.391525,41.90775699906],[-71.392032,41.90761299906],[-71.392092,41.90759299906],[-71.392129,41.90758099906],[-71.392162,41.90757099906],[-71.392426,41.90748599906],[-71.39325,41.90723399906]]]}}"}, +{"type": "blockgroup", "typeId": 112003, "areaId": 28876, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.40067,41.90184099906],[-71.400658,41.90171099906],[-71.400618,41.90157999906],[-71.400594,41.90152599906],[-71.400525,41.90141599906],[-71.400479,41.90136699906],[-71.400424,41.90132599906],[-71.400358,41.90129199906],[-71.400213,41.90123299906],[-71.400147,41.90119799906],[-71.400023,41.90111199906],[-71.399957,41.90107699906],[-71.399736,41.90098399906],[-71.399655,41.90096899906],[-71.399588,41.90097999906],[-71.399576,41.90102899906],[-71.399596,41.90108899906],[-71.399636,41.90113599906],[-71.399746,41.90124699906],[-71.399836,41.90136499906],[-71.399845,41.90142899906],[-71.399843,41.90148699906],[-71.399908,41.90161199906],[-71.399918,41.90166599906],[-71.399914,41.90180199906],[-71.399889,41.90186199906],[-71.399855,41.90187199906],[-71.399813,41.90185299906],[-71.399746,41.90179599906],[-71.399705,41.90174099906],[-71.399669,41.90167799906],[-71.399592,41.90145899906],[-71.399452,41.90119799906],[-71.399365,41.90107899906],[-71.399224,41.90091599906],[-71.399052,41.90076499906],[-71.398923,41.90066599906],[-71.398692,41.90051299906],[-71.398625,41.90046099906],[-71.398502,41.90035399906],[-71.398398,41.90027999906],[-71.398301,41.90022299906],[-71.398166,41.90015599906],[-71.397872,41.90004599906],[-71.397516,41.89990099906],[-71.397448,41.89986899906],[-71.397373,41.89984099906],[-71.39722,41.89979999906],[-71.397057,41.89976499906],[-71.397003,41.89975599906],[-71.396809,41.89972399906],[-71.396561,41.89970099906],[-71.396534,41.89970599906],[-71.394782,41.89862499906],[-71.394296,41.89765199906],[-71.393133,41.89784799906],[-71.39232,41.89812799906],[-71.391739,41.89834299906],[-71.39006,41.89931899906],[-71.39026,41.89952799906],[-71.390396,41.89966999906],[-71.390503,41.89978799906],[-71.390564,41.89987599906],[-71.390648,41.90005499906],[-71.390701,41.90021099906],[-71.390808,41.90048199906],[-71.39093,41.90080599906],[-71.391212,41.90158799906],[-71.391453,41.90225399906],[-71.391601,41.90265799906],[-71.39183,41.90330099906],[-71.392021,41.90381999906],[-71.392082,41.90400299906],[-71.392227,41.90441099906],[-71.39238,41.90480399906],[-71.39247,41.90505699906],[-71.392754,41.90585699906],[-71.392975,41.90645999906],[-71.393074,41.90675399906],[-71.393112,41.90684099906],[-71.393227,41.90715799906],[-71.39325,41.90723399906],[-71.39328,41.90732599906],[-71.393356,41.90748199906],[-71.393661,41.90739399906],[-71.393982,41.90730699906],[-71.39518,41.90693999906],[-71.396332,41.90660499906],[-71.397369,41.90628399906],[-71.397469,41.90625799906],[-71.397568,41.90623099906],[-71.397675,41.90620799906],[-71.397903,41.90617399906],[-71.39814,41.90615799906],[-71.398254,41.90615499906],[-71.39832,41.90615699906],[-71.398521,41.90616199906],[-71.398804,41.90619699906],[-71.398949,41.90622299906],[-71.399094,41.90626099906],[-71.399162,41.90629199906],[-71.399384,41.90631499906],[-71.399604,41.90635499906],[-71.399643,41.90628299906],[-71.399931,41.90586799906],[-71.400021,41.90569399906],[-71.400044,41.90562799906],[-71.400072,41.90549799906],[-71.400093,41.90521499906],[-71.400089,41.90500499906],[-71.400095,41.90486899906],[-71.400088,41.90479499906],[-71.400083,41.90472899906],[-71.400054,41.90458499906],[-71.399946,41.90427199906],[-71.399887,41.90413699906],[-71.399835,41.90394299906],[-71.399823,41.90388099906],[-71.399822,41.90372999906],[-71.39983,41.90365499906],[-71.399845,41.90358599906],[-71.399887,41.90345599906],[-71.399912,41.90332799906],[-71.399929,41.90326999906],[-71.400026,41.90304099906],[-71.400056,41.90298099906],[-71.400078,41.90291699906],[-71.400119,41.90271699906],[-71.400142,41.90265399906],[-71.400238,41.90247299906],[-71.400326,41.90235099906],[-71.400416,41.90224599906],[-71.400561,41.90210599906],[-71.4006,41.90205099906],[-71.400651,41.90193099906],[-71.40067,41.90184099906]]]}}"}, +{"type": "blockgroup", "typeId": 112004, "areaId": 28877, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.405131,41.91639299906],[-71.40503,41.91626099906],[-71.404911,41.91609799906],[-71.404785,41.91592399906],[-71.404611,41.91566699906],[-71.404519,41.91551999906],[-71.404492,41.91547199906],[-71.404459,41.91540999906],[-71.404216,41.91483999906],[-71.404158,41.91468899906],[-71.404068,41.91445899906],[-71.404015,41.91430299906],[-71.403946,41.91411999906],[-71.403755,41.91357399906],[-71.403725,41.91348999906],[-71.403366,41.91245299906],[-71.403191,41.91189599906],[-71.40316,41.91180399906],[-71.403061,41.91150299906],[-71.403023,41.91139299906],[-71.402944,41.91140999906],[-71.402864,41.91144099906],[-71.402744,41.91146199906],[-71.402574,41.91147099906],[-71.402366,41.91147599906],[-71.402139,41.91150099906],[-71.402034,41.91150599906],[-71.401749,41.91150699906],[-71.401671,41.91149499906],[-71.401577,41.91149399906],[-71.401504,41.91149799906],[-71.401349,41.91153399906],[-71.40127,41.91156499906],[-71.401206,41.91159999906],[-71.40108,41.91163199906],[-71.401002,41.91164099906],[-71.400944,41.91164099906],[-71.400868,41.91166899906],[-71.40079,41.91170499906],[-71.400601,41.91181199906],[-71.400463,41.91187399906],[-71.400402,41.91191299906],[-71.400338,41.91194599906],[-71.400269,41.91194699906],[-71.400248,41.91193699906],[-71.400181,41.91193099906],[-71.400083,41.91193799906],[-71.400142,41.91196899906],[-71.400146,41.91199699906],[-71.400138,41.91200999906],[-71.400058,41.91196499906],[-71.400032,41.91194899906],[-71.399798,41.91200099906],[-71.399638,41.91204399906],[-71.399558,41.91205699906],[-71.399379,41.91205999906],[-71.399299,41.91207499906],[-71.399222,41.91208299906],[-71.399053,41.91204999906],[-71.398911,41.91200799906],[-71.398765,41.91197199906],[-71.39862,41.91191599906],[-71.398478,41.91184899906],[-71.397989,41.91164099906],[-71.39769,41.91148599906],[-71.397496,41.91136699906],[-71.397389,41.91128299906],[-71.397322,41.91122299906],[-71.397264,41.91116299906],[-71.397117,41.91096899906],[-71.39706,41.91085899906],[-71.397046,41.91080199906],[-71.397045,41.91068199906],[-71.397052,41.91061599906],[-71.397072,41.91054399906],[-71.397162,41.91036099906],[-71.397242,41.91015799906],[-71.397279,41.91010799906],[-71.397343,41.91005799906],[-71.397534,41.90990899906],[-71.397603,41.90986399906],[-71.397684,41.90981999906],[-71.397864,41.90974299906],[-71.398018,41.90966899906],[-71.398164,41.90960799906],[-71.398231,41.90956999906],[-71.398283,41.90952499906],[-71.398372,41.90939699906],[-71.398431,41.90933999906],[-71.398486,41.90927599906],[-71.398562,41.90917099906],[-71.398614,41.90913299906],[-71.39865,41.90909399906],[-71.398639,41.90903699906],[-71.398643,41.90874699906],[-71.398659,41.90867299906],[-71.398701,41.90854599906],[-71.398839,41.90805399906],[-71.398936,41.90781699906],[-71.398977,41.90763999906],[-71.399068,41.90743999906],[-71.399167,41.90726499906],[-71.399279,41.90710499906],[-71.399314,41.90704099906],[-71.399482,41.90666299906],[-71.399577,41.90640599906],[-71.399604,41.90635499906],[-71.399384,41.90631499906],[-71.399162,41.90629199906],[-71.399094,41.90626099906],[-71.398949,41.90622299906],[-71.398804,41.90619699906],[-71.398521,41.90616199906],[-71.39832,41.90615699906],[-71.398254,41.90615499906],[-71.39814,41.90615799906],[-71.397903,41.90617399906],[-71.397675,41.90620799906],[-71.397568,41.90623099906],[-71.397469,41.90625799906],[-71.397369,41.90628399906],[-71.396332,41.90660499906],[-71.39518,41.90693999906],[-71.393982,41.90730699906],[-71.393661,41.90739399906],[-71.393356,41.90748199906],[-71.393639,41.90796699906],[-71.393856,41.90833799906],[-71.394157,41.90885199906],[-71.394279,41.90907299906],[-71.394501,41.90945799906],[-71.394646,41.90972499906],[-71.394844,41.91004899906],[-71.394943,41.91020999906],[-71.394974,41.91025199906],[-71.395084,41.91044299906],[-71.395294,41.91081999906],[-71.395584,41.91132399906],[-71.395966,41.91193799906],[-71.396118,41.91218599906],[-71.396164,41.91224699906],[-71.396202,41.91230799906],[-71.396385,41.91253299906],[-71.396402,41.91254599906],[-71.396576,41.91275399906],[-71.396912,41.91312399906],[-71.397202,41.91344099906],[-71.397339,41.91356699906],[-71.397446,41.91365099906],[-71.397537,41.91370799906],[-71.397705,41.91379499906],[-71.397957,41.91389499906],[-71.398091,41.91395199906],[-71.398796,41.91425299906],[-71.399078,41.91439099906],[-71.399681,41.91467699906],[-71.399956,41.91480599906],[-71.400002,41.91482899906],[-71.400368,41.91499299906],[-71.400757,41.91514999906],[-71.400993,41.91524099906],[-71.401089,41.91528099906],[-71.40123,41.91533999906],[-71.401413,41.91542799906],[-71.401558,41.91548899906],[-71.401733,41.91559199906],[-71.402,41.91574099906],[-71.40226,41.91590099906],[-71.402443,41.91601899906],[-71.402504,41.91604999906],[-71.402809,41.91620599906],[-71.402939,41.91625599906],[-71.403046,41.91627899906],[-71.403336,41.91630599906],[-71.403671,41.91632499906],[-71.403843,41.91633399906],[-71.404488,41.91636999906],[-71.405131,41.91639299906]]]}}"}, +{"type": "blockgroup", "typeId": 112005, "areaId": 28878, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.399956,41.91480599906],[-71.399681,41.91467699906],[-71.399078,41.91439099906],[-71.398796,41.91425299906],[-71.398091,41.91395199906],[-71.397957,41.91389499906],[-71.397705,41.91379499906],[-71.397537,41.91370799906],[-71.397446,41.91365099906],[-71.397339,41.91356699906],[-71.397202,41.91344099906],[-71.396912,41.91312399906],[-71.396576,41.91275399906],[-71.396402,41.91254599906],[-71.396385,41.91253299906],[-71.396202,41.91230799906],[-71.396164,41.91224699906],[-71.396118,41.91218599906],[-71.395966,41.91193799906],[-71.395584,41.91132399906],[-71.395294,41.91081999906],[-71.395084,41.91044299906],[-71.394974,41.91025199906],[-71.394943,41.91020999906],[-71.394844,41.91004899906],[-71.394646,41.90972499906],[-71.394501,41.90945799906],[-71.394279,41.90907299906],[-71.394157,41.90885199906],[-71.393856,41.90833799906],[-71.393639,41.90796699906],[-71.393356,41.90748199906],[-71.39328,41.90732599906],[-71.39325,41.90723399906],[-71.392426,41.90748599906],[-71.392162,41.90757099906],[-71.392129,41.90758099906],[-71.392092,41.90759299906],[-71.392032,41.90761299906],[-71.391525,41.90775699906],[-71.391075,41.90788999906],[-71.39135,41.90861499906],[-71.391418,41.90877499906],[-71.391731,41.90953099906],[-71.392052,41.91030099906],[-71.39212,41.91047699906],[-71.392502,41.91141499906],[-71.392525,41.91145299906],[-71.392784,41.91207899906],[-71.393044,41.91260899906],[-71.39315,41.91284199906],[-71.393326,41.91325399906],[-71.393585,41.91385699906],[-71.393776,41.91430299906],[-71.393875,41.91455799906],[-71.393936,41.91471099906],[-71.394066,41.91506999906],[-71.394081,41.91509599906],[-71.394115,41.91518699906],[-71.394135,41.91524099906],[-71.394157,41.91530599906],[-71.394203,41.91541299906],[-71.394234,41.91550399906],[-71.394272,41.91559599906],[-71.394318,41.91568799906],[-71.394379,41.91582899906],[-71.394417,41.91589699906],[-71.394455,41.91598099906],[-71.394615,41.91624799906],[-71.394775,41.91652699906],[-71.394823,41.91662499906],[-71.39489,41.91673699906],[-71.395287,41.91739699906],[-71.395615,41.91717899906],[-71.396324,41.91682399906],[-71.397346,41.91628599906],[-71.39872,41.91553499906],[-71.398918,41.91542799906],[-71.39901,41.91537099906],[-71.399712,41.91495099906],[-71.399956,41.91480599906]]]}}"}, +{"type": "blockgroup", "typeId": 113011, "areaId": 28879, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.408211,41.91990299906],[-71.407898,41.91961299906],[-71.4077,41.91940699906],[-71.407532,41.91921599906],[-71.407455,41.91911699906],[-71.407379,41.91903299906],[-71.407135,41.91873899906],[-71.406815,41.91834999906],[-71.406662,41.91817099906],[-71.406181,41.91760599906],[-71.405701,41.91705299906],[-71.405211,41.91647999906],[-71.405131,41.91639299906],[-71.404488,41.91636999906],[-71.403843,41.91633399906],[-71.403671,41.91632499906],[-71.403336,41.91630599906],[-71.403046,41.91627899906],[-71.402939,41.91625599906],[-71.402809,41.91620599906],[-71.402504,41.91604999906],[-71.402443,41.91601899906],[-71.40226,41.91590099906],[-71.402,41.91574099906],[-71.401733,41.91559199906],[-71.401558,41.91548899906],[-71.401413,41.91542799906],[-71.40123,41.91533999906],[-71.401089,41.91528099906],[-71.400993,41.91524099906],[-71.400757,41.91514999906],[-71.400368,41.91499299906],[-71.400002,41.91482899906],[-71.399956,41.91480599906],[-71.399712,41.91495099906],[-71.39901,41.91537099906],[-71.398918,41.91542799906],[-71.39872,41.91553499906],[-71.397346,41.91628599906],[-71.396324,41.91682399906],[-71.395615,41.91717899906],[-71.395287,41.91739699906],[-71.395309,41.91742699906],[-71.39566,41.91804099906],[-71.395935,41.91850999906],[-71.396255,41.91907899906],[-71.396355,41.91923499906],[-71.396561,41.91957899906],[-71.396713,41.91984899906],[-71.397079,41.92047499906],[-71.397659,41.92144399906],[-71.39785,41.92176099906],[-71.398102,41.92218799906],[-71.398354,41.92262999906],[-71.398438,41.92282899906],[-71.398598,41.92319099906],[-71.398727,41.92351899906],[-71.398849,41.92381299906],[-71.398987,41.92417899906],[-71.399193,41.92476699906],[-71.399223,41.92485799906],[-71.399269,41.92501099906],[-71.399399,41.92538499906],[-71.399414,41.92541499906],[-71.399544,41.92602899906],[-71.40126,41.92569399906],[-71.401535,41.92561299906],[-71.402008,41.92534599906],[-71.402504,41.92505999906],[-71.402908,41.92483499906],[-71.402733,41.92446099906],[-71.405174,41.92311899906],[-71.405182,41.92277899906],[-71.405212,41.92158499906],[-71.405861,41.92121499906],[-71.406563,41.92082999906],[-71.407265,41.92043299906],[-71.40802,41.92000999906],[-71.408211,41.91990299906]]]}}"}, +{"type": "blockgroup", "typeId": 113012, "areaId": 28880, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.433982,41.93821899906],[-71.43396,41.93819399906],[-71.433707,41.93807299906],[-71.433364,41.93769799906],[-71.433142,41.93724799906],[-71.432809,41.93683499906],[-71.432425,41.93648499906],[-71.431782,41.93569699906],[-71.431443,41.93536199906],[-71.431221,41.93500199906],[-71.430955,41.93463599906],[-71.430854,41.93427599906],[-71.430738,41.93394799906],[-71.430721,41.93369499906],[-71.430717,41.93339799906],[-71.430771,41.93293899906],[-71.4309,41.93238599906],[-71.431013,41.93188999906],[-71.431149,41.93141099906],[-71.431233,41.93099899906],[-71.431271,41.93079099906],[-71.431287,41.93054099906],[-71.431203,41.93008999906],[-71.431106,41.92957899906],[-71.431054,41.92901399906],[-71.430941,41.92851799906],[-71.430891,41.92788299906],[-71.430902,41.92727199906],[-71.430939,41.92698699906],[-71.430756,41.92659799906],[-71.430356,41.92606099906],[-71.429996,41.92562799906],[-71.429579,41.92477099906],[-71.429006,41.92406299906],[-71.428729,41.92382299906],[-71.428327,41.92354299906],[-71.427544,41.92319899906],[-71.426792,41.92290799906],[-71.426025,41.92266999906],[-71.425322,41.92246299906],[-71.424495,41.92233799906],[-71.423713,41.92225299906],[-71.422853,41.92223199906],[-71.422124,41.92224399906],[-71.421986,41.92222099906],[-71.4217,41.92214499906],[-71.420583,41.92148699906],[-71.420071,41.92119399906],[-71.419443,41.92062699906],[-71.419094,41.91999199906],[-71.418807,41.91926099906],[-71.418425,41.91881899906],[-71.416233,41.91780799906],[-71.415002,41.91711699906],[-71.414369,41.91676399906],[-71.414265,41.91673699906],[-71.41387,41.91651699906],[-71.413595,41.91636399906],[-71.413166,41.91613999906],[-71.412403,41.91572199906],[-71.412109,41.91556799906],[-71.411671,41.91537099906],[-71.411087,41.91501399906],[-71.411026,41.91498399906],[-71.410929,41.91493099906],[-71.41048,41.91469099906],[-71.40975,41.91429599906],[-71.409372,41.91409599906],[-71.409365,41.91406199906],[-71.409329,41.91401399906],[-71.409262,41.91397699906],[-71.408959,41.91386099906],[-71.408872,41.91376599906],[-71.408824,41.91371999906],[-71.408768,41.91363999906],[-71.408762,41.91361799906],[-71.408741,41.91359099906],[-71.408559,41.91335199906],[-71.408505,41.91331299906],[-71.408366,41.91319299906],[-71.408272,41.91311999906],[-71.408241,41.91307099906],[-71.408062,41.91293099906],[-71.407982,41.91288599906],[-71.407921,41.91282499906],[-71.407886,41.91277399906],[-71.407858,41.91271999906],[-71.407768,41.91248499906],[-71.407663,41.91232899906],[-71.407424,41.91205499906],[-71.407214,41.91184199906],[-71.40709,41.91174799906],[-71.40703,41.91170799906],[-71.406946,41.91166199906],[-71.406868,41.91162999906],[-71.406801,41.91159699906],[-71.406662,41.91151499906],[-71.406514,41.91141199906],[-71.406456,41.91137799906],[-71.406307,41.91130899906],[-71.406226,41.91129099906],[-71.406143,41.91123199906],[-71.406066,41.91120099906],[-71.406013,41.91119499906],[-71.40595,41.91115099906],[-71.405878,41.91112899906],[-71.405779,41.91110799906],[-71.405491,41.91102199906],[-71.405393,41.91099899906],[-71.405012,41.91095299906],[-71.404623,41.91089499906],[-71.404266,41.91086799906],[-71.404187,41.91086899906],[-71.404097,41.91087099906],[-71.404021,41.91088999906],[-71.403868,41.91089699906],[-71.403754,41.91093399906],[-71.403689,41.91096399906],[-71.403626,41.91099899906],[-71.403517,41.91107799906],[-71.403466,41.91112099906],[-71.403393,41.91117399906],[-71.403262,41.91124999906],[-71.403226,41.91130099906],[-71.403219,41.91131899906],[-71.403168,41.91136199906],[-71.403114,41.91139099906],[-71.403023,41.91139299906],[-71.403061,41.91150299906],[-71.40316,41.91180399906],[-71.403191,41.91189599906],[-71.403366,41.91245299906],[-71.403725,41.91348999906],[-71.403755,41.91357399906],[-71.403946,41.91411999906],[-71.404015,41.91430299906],[-71.404068,41.91445899906],[-71.404158,41.91468899906],[-71.404216,41.91483999906],[-71.404459,41.91540999906],[-71.404492,41.91547199906],[-71.404519,41.91551999906],[-71.404611,41.91566699906],[-71.404785,41.91592399906],[-71.404911,41.91609799906],[-71.40503,41.91626099906],[-71.405131,41.91639299906],[-71.405211,41.91647999906],[-71.405701,41.91705299906],[-71.406181,41.91760599906],[-71.406662,41.91817099906],[-71.406815,41.91834999906],[-71.407135,41.91873899906],[-71.407379,41.91903299906],[-71.407455,41.91911699906],[-71.407532,41.91921599906],[-71.4077,41.91940699906],[-71.407898,41.91961299906],[-71.408211,41.91990299906],[-71.40802,41.92000999906],[-71.408414,41.92074799906],[-71.408768,41.92140999906],[-71.409012,41.92176799906],[-71.409149,41.92192099906],[-71.409264,41.92203099906],[-71.409622,41.92223699906],[-71.410339,41.92272199906],[-71.41069,41.92296999906],[-71.411041,41.92325599906],[-71.411263,41.92347299906],[-71.411461,41.92371699906],[-71.411659,41.92397299906],[-71.411865,41.92429399906],[-71.411882,41.92431699906],[-71.411999,41.92447399906],[-71.412201,41.92474699906],[-71.412436,41.92491799906],[-71.412645,41.92499399906],[-71.412773,41.92504099906],[-71.41375,41.92530399906],[-71.414108,41.92538799906],[-71.414223,41.92538799906],[-71.41433,41.92537699906],[-71.414413,41.92532299906],[-71.41449,41.92521999906],[-71.41497,41.92539599906],[-71.415146,41.92546499906],[-71.415985,41.92578099906],[-71.41629,41.92590699906],[-71.416359,41.92593399906],[-71.416718,41.92612099906],[-71.417004,41.92630699906],[-71.417486,41.92661599906],[-71.417755,41.92677699906],[-71.418015,41.92689099906],[-71.418209,41.92696099906],[-71.418846,41.92718899906],[-71.41922,41.92738699906],[-71.419637,41.92766599906],[-71.419662,41.92768599906],[-71.419968,41.92792899906],[-71.420151,41.92807399906],[-71.420601,41.92849299906],[-71.421074,41.92888999906],[-71.421181,41.92896999906],[-71.421486,41.92921099906],[-71.421776,41.92943199906],[-71.421921,41.92953099906],[-71.422035,41.92959999906],[-71.422318,41.92975999906],[-71.422928,41.93007699906],[-71.424126,41.93067199906],[-71.424683,41.93089699906],[-71.424888,41.93098199906],[-71.425041,41.93104599906],[-71.425255,41.93115999906],[-71.425468,41.93133899906],[-71.425713,41.93166699906],[-71.425995,41.93210199906],[-71.426109,41.93229299906],[-71.426285,41.93256799906],[-71.426315,41.93262099906],[-71.426727,41.93326199906],[-71.426933,41.93356699906],[-71.427017,41.93369299906],[-71.4272,41.93385299906],[-71.427528,41.93403199906],[-71.42794,41.93423499906],[-71.428291,41.93445999906],[-71.428596,41.93474999906],[-71.42878,41.93503199906],[-71.428825,41.93518099906],[-71.428925,41.93545199906],[-71.429054,41.93605799906],[-71.429192,41.93663399906],[-71.429344,41.93705399906],[-71.429398,41.93715299906],[-71.429558,41.93757599906],[-71.429703,41.93779399906],[-71.42972,41.93781099906],[-71.429939,41.93803799906],[-71.430649,41.93856399906],[-71.431061,41.93884299906],[-71.431099,41.93886899906],[-71.431557,41.93919799906],[-71.431656,41.93926599906],[-71.431801,41.93937699906],[-71.432106,41.93920499906],[-71.432304,41.93909499906],[-71.432518,41.93897199906],[-71.432541,41.93896499906],[-71.432971,41.93873099906],[-71.433691,41.93836899906],[-71.43376,41.93833799906],[-71.433982,41.93821899906]]]}}"}, +{"type": "blockgroup", "typeId": 113013, "areaId": 28881, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.429558,41.93757599906],[-71.429398,41.93715299906],[-71.429344,41.93705399906],[-71.429192,41.93663399906],[-71.429054,41.93605799906],[-71.428925,41.93545199906],[-71.428825,41.93518099906],[-71.42878,41.93503199906],[-71.428596,41.93474999906],[-71.428291,41.93445999906],[-71.42794,41.93423499906],[-71.427528,41.93403199906],[-71.4272,41.93385299906],[-71.427017,41.93369299906],[-71.426933,41.93356699906],[-71.426727,41.93326199906],[-71.426315,41.93262099906],[-71.426285,41.93256799906],[-71.426109,41.93229299906],[-71.425995,41.93210199906],[-71.425713,41.93166699906],[-71.425468,41.93133899906],[-71.425255,41.93115999906],[-71.425041,41.93104599906],[-71.424888,41.93098199906],[-71.424683,41.93089699906],[-71.424126,41.93067199906],[-71.422928,41.93007699906],[-71.422318,41.92975999906],[-71.422035,41.92959999906],[-71.421921,41.92953099906],[-71.421776,41.92943199906],[-71.421486,41.92921099906],[-71.421181,41.92896999906],[-71.421074,41.92888999906],[-71.420601,41.92849299906],[-71.420151,41.92807399906],[-71.419968,41.92792899906],[-71.419662,41.92768599906],[-71.419637,41.92766599906],[-71.41922,41.92738699906],[-71.418846,41.92718899906],[-71.418209,41.92696099906],[-71.418015,41.92689099906],[-71.417755,41.92677699906],[-71.417486,41.92661599906],[-71.417004,41.92630699906],[-71.416718,41.92612099906],[-71.416359,41.92593399906],[-71.41629,41.92590699906],[-71.415985,41.92578099906],[-71.415146,41.92546499906],[-71.41497,41.92539599906],[-71.41449,41.92521999906],[-71.414413,41.92532299906],[-71.41433,41.92537699906],[-71.414223,41.92538799906],[-71.414108,41.92538799906],[-71.41375,41.92530399906],[-71.412773,41.92504099906],[-71.412645,41.92499399906],[-71.412436,41.92491799906],[-71.412201,41.92474699906],[-71.411999,41.92447399906],[-71.411882,41.92431699906],[-71.411865,41.92429399906],[-71.411659,41.92397299906],[-71.411461,41.92371699906],[-71.411263,41.92347299906],[-71.411041,41.92325599906],[-71.41069,41.92296999906],[-71.410339,41.92272199906],[-71.409622,41.92223699906],[-71.409264,41.92203099906],[-71.409149,41.92192099906],[-71.409012,41.92176799906],[-71.408768,41.92140999906],[-71.408414,41.92074799906],[-71.40802,41.92000999906],[-71.407265,41.92043299906],[-71.406563,41.92082999906],[-71.405861,41.92121499906],[-71.405212,41.92158499906],[-71.405182,41.92277899906],[-71.405174,41.92311899906],[-71.402733,41.92446099906],[-71.402908,41.92483499906],[-71.402504,41.92505999906],[-71.402008,41.92534599906],[-71.401535,41.92561299906],[-71.40126,41.92569399906],[-71.399544,41.92602899906],[-71.39962,41.92644099906],[-71.399658,41.92667799906],[-71.399681,41.92676899906],[-71.399742,41.92716199906],[-71.399805,41.92738299906],[-71.39985,41.92753999906],[-71.399872,41.92761599906],[-71.399979,41.92784099906],[-71.400009,41.92790599906],[-71.400041,41.92795799906],[-71.400093,41.92803999906],[-71.400291,41.92827999906],[-71.401314,41.92923399906],[-71.401512,41.92943999906],[-71.401657,41.92961899906],[-71.40168,41.92964899906],[-71.401695,41.92967999906],[-71.401779,41.92980599906],[-71.402008,41.93023299906],[-71.402039,41.93028299906],[-71.402061,41.93033599906],[-71.402107,41.93043499906],[-71.402298,41.93083599906],[-71.402382,41.93105699906],[-71.402405,41.93113299906],[-71.402443,41.93131999906],[-71.402451,41.93140399906],[-71.402451,41.93170499906],[-71.402428,41.93201099906],[-71.402412,41.93210999906],[-71.402321,41.93241099906],[-71.402283,41.93250699906],[-71.402252,41.93260599906],[-71.402168,41.93276999906],[-71.402092,41.93290299906],[-71.402023,41.93300999906],[-71.401871,41.93321199906],[-71.401787,41.93331099906],[-71.401604,41.93349799906],[-71.401505,41.93360899906],[-71.401291,41.93382999906],[-71.400963,41.93413499906],[-71.400681,41.93444099906],[-71.400482,41.93463899906],[-71.400375,41.93473399906],[-71.400276,41.93483399906],[-71.400169,41.93493299906],[-71.399933,41.93517699906],[-71.39978,41.93536799906],[-71.399704,41.93548999906],[-71.399551,41.93577599906],[-71.399429,41.93607699906],[-71.399376,41.93622199906],[-71.399345,41.93638199906],[-71.399323,41.93656499906],[-71.399323,41.93666499906],[-71.399315,41.93676399906],[-71.399323,41.93683199906],[-71.39933,41.93697399906],[-71.399345,41.93707699906],[-71.399406,41.93728299906],[-71.399475,41.93746199906],[-71.399498,41.93751499906],[-71.399628,41.93777099906],[-71.399803,41.93808699906],[-71.399918,41.93827799906],[-71.399963,41.93836999906],[-71.400024,41.93846899906],[-71.400078,41.93857199906],[-71.400139,41.93867099906],[-71.400208,41.93876999906],[-71.400436,41.93905599906],[-71.400505,41.93915199906],[-71.400719,41.93941899906],[-71.400887,41.93967799906],[-71.400978,41.93984999906],[-71.401085,41.94002899906],[-71.401566,41.94090999906],[-71.401766,41.94128499906],[-71.401954,41.94163599906],[-71.401978,41.94168099906],[-71.402092,41.94188299906],[-71.402733,41.94307299906],[-71.403229,41.94399599906],[-71.40332,41.94414899906],[-71.403351,41.94421799906],[-71.403389,41.94428299906],[-71.403442,41.94440099906],[-71.403458,41.94445399906],[-71.403481,41.94450799906],[-71.403549,41.94477799906],[-71.40358,41.94494199906],[-71.403687,41.94595299906],[-71.403744,41.94618299906],[-71.403776,41.94622399906],[-71.40387,41.94627999906],[-71.403983,41.94630199906],[-71.404165,41.94631199906],[-71.404457,41.94644299906],[-71.404869,41.94661699906],[-71.405083,41.94671199906],[-71.405411,41.94686099906],[-71.405991,41.94713599906],[-71.406967,41.94758599906],[-71.407196,41.94768899906],[-71.407486,41.94780299906],[-71.407661,41.94787199906],[-71.408173,41.94803999906],[-71.408684,41.94816599906],[-71.409065,41.94822699906],[-71.409485,41.94826899906],[-71.409912,41.94827999906],[-71.410332,41.94826099906],[-71.410789,41.94822299906],[-71.411324,41.94813899906],[-71.411751,41.94803199906],[-71.411919,41.94798999906],[-71.412392,41.94784899906],[-71.412413,41.94783599906],[-71.412865,41.94764299906],[-71.413353,41.94736899906],[-71.414467,41.94667099906],[-71.415062,41.94628099906],[-71.415263,41.94615499906],[-71.416573,41.94533499906],[-71.417931,41.94450399906],[-71.418831,41.94392799906],[-71.419189,41.94367599906],[-71.419458,41.94343399906],[-71.419716,41.94320299906],[-71.41996,41.94293999906],[-71.420372,41.94248599906],[-71.420631,41.94218799906],[-71.420807,41.94198999906],[-71.421356,41.94137599906],[-71.421448,41.94128399906],[-71.421906,41.94080699906],[-71.422478,41.94029999906],[-71.422809,41.94002299906],[-71.423347,41.93957899906],[-71.423706,41.93929699906],[-71.424179,41.93898399906],[-71.424614,41.93876299906],[-71.424713,41.93870899906],[-71.424766,41.93869099906],[-71.425331,41.93849599906],[-71.425414,41.93847099906],[-71.426094,41.93830099906],[-71.42733,41.93804599906],[-71.427628,41.93798399906],[-71.429001,41.93768299906],[-71.429558,41.93757599906]]]}}"}, +{"type": "blockgroup", "typeId": 113021, "areaId": 28882, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.403687,41.94595299906],[-71.40358,41.94494199906],[-71.403549,41.94477799906],[-71.403481,41.94450799906],[-71.403458,41.94445399906],[-71.403442,41.94440099906],[-71.403389,41.94428299906],[-71.403351,41.94421799906],[-71.40332,41.94414899906],[-71.403229,41.94399599906],[-71.402733,41.94307299906],[-71.402092,41.94188299906],[-71.401978,41.94168099906],[-71.401954,41.94163599906],[-71.401766,41.94128499906],[-71.401566,41.94090999906],[-71.401085,41.94002899906],[-71.400978,41.93984999906],[-71.400887,41.93967799906],[-71.400719,41.93941899906],[-71.400505,41.93915199906],[-71.400436,41.93905599906],[-71.400208,41.93876999906],[-71.400139,41.93867099906],[-71.400078,41.93857199906],[-71.400024,41.93846899906],[-71.399963,41.93836999906],[-71.399918,41.93827799906],[-71.399803,41.93808699906],[-71.399628,41.93777099906],[-71.399498,41.93751499906],[-71.399475,41.93746199906],[-71.399406,41.93728299906],[-71.399345,41.93707699906],[-71.39933,41.93697399906],[-71.399323,41.93683199906],[-71.399315,41.93676399906],[-71.399323,41.93666499906],[-71.399323,41.93656499906],[-71.399345,41.93638199906],[-71.399376,41.93622199906],[-71.399429,41.93607699906],[-71.399551,41.93577599906],[-71.399704,41.93548999906],[-71.39978,41.93536799906],[-71.399933,41.93517699906],[-71.400169,41.93493299906],[-71.400276,41.93483399906],[-71.400375,41.93473399906],[-71.400482,41.93463899906],[-71.400681,41.93444099906],[-71.400963,41.93413499906],[-71.401291,41.93382999906],[-71.401505,41.93360899906],[-71.401604,41.93349799906],[-71.401787,41.93331099906],[-71.401871,41.93321199906],[-71.402023,41.93300999906],[-71.402092,41.93290299906],[-71.402168,41.93276999906],[-71.402252,41.93260599906],[-71.402283,41.93250699906],[-71.402321,41.93241099906],[-71.402412,41.93210999906],[-71.402428,41.93201099906],[-71.402451,41.93170499906],[-71.402451,41.93140399906],[-71.402443,41.93131999906],[-71.402405,41.93113299906],[-71.402382,41.93105699906],[-71.402298,41.93083599906],[-71.402107,41.93043499906],[-71.402061,41.93033599906],[-71.402039,41.93028299906],[-71.402008,41.93023299906],[-71.401779,41.92980599906],[-71.401695,41.92967999906],[-71.40168,41.92964899906],[-71.401657,41.92961899906],[-71.401512,41.92943999906],[-71.401314,41.92923399906],[-71.400291,41.92827999906],[-71.400093,41.92803999906],[-71.400046,41.92818799906],[-71.400065,41.92888999906],[-71.400028,41.92915199906],[-71.399932,41.92933299906],[-71.399622,41.92944799906],[-71.399245,41.92949899906],[-71.398532,41.92964899906],[-71.398425,41.92967399906],[-71.39801,41.92977099906],[-71.397972,41.92979399906],[-71.397545,41.92960699906],[-71.397041,41.92946199906],[-71.396584,41.92932499906],[-71.396286,41.92921799906],[-71.396156,41.92919199906],[-71.396118,41.92918399906],[-71.395439,41.92921799906],[-71.395363,41.92921099906],[-71.395416,41.92971799906],[-71.3955,41.93019099906],[-71.395653,41.93019099906],[-71.395775,41.93020599906],[-71.39608,41.93027899906],[-71.396568,41.93041199906],[-71.397057,41.93053799906],[-71.396751,41.93079799906],[-71.39653,41.93101099906],[-71.396294,41.93131299906],[-71.396042,41.93168599906],[-71.395844,41.93196599906],[-71.395801,41.93202499906],[-71.395325,41.93267799906],[-71.395187,41.93287699906],[-71.39505,41.93323099906],[-71.394882,41.93357099906],[-71.394676,41.93404799906],[-71.394066,41.93538299906],[-71.393997,41.93562299906],[-71.393883,41.93595899906],[-71.393806,41.93621099906],[-71.393784,41.93644299906],[-71.393799,41.93664199906],[-71.393883,41.93687799906],[-71.394028,41.93709199906],[-71.394226,41.93734699906],[-71.394394,41.93755699906],[-71.394547,41.93776699906],[-71.394569,41.93784699906],[-71.394569,41.93794599906],[-71.394562,41.93805699906],[-71.394493,41.93846499906],[-71.394447,41.93864799906],[-71.394394,41.93887299906],[-71.394331,41.93910599906],[-71.394318,41.93915599906],[-71.394173,41.93944899906],[-71.39402,41.93979599906],[-71.393967,41.93989599906],[-71.393791,41.94029599906],[-71.393669,41.94058999906],[-71.393593,41.94075799906],[-71.39341,41.94107799906],[-71.393357,41.94113499906],[-71.39344,41.94114099906],[-71.3935,41.94113499906],[-71.39357,41.94111999906],[-71.39365,41.94111099906],[-71.393722,41.94111799906],[-71.393772,41.94115899906],[-71.3939,41.94123099906],[-71.393977,41.94125999906],[-71.394043,41.94129299906],[-71.394177,41.94135199906],[-71.394376,41.94148399906],[-71.394489,41.94158399906],[-71.394561,41.94161099906],[-71.394643,41.94162699906],[-71.394707,41.94166599906],[-71.394856,41.94186299906],[-71.395045,41.94200099906],[-71.395162,41.94208699906],[-71.395224,41.94214199906],[-71.395295,41.94217099906],[-71.395471,41.94216499906],[-71.395557,41.94218499906],[-71.395612,41.94222599906],[-71.395642,41.94227999906],[-71.395695,41.94233599906],[-71.395769,41.94234999906],[-71.395996,41.94233899906],[-71.3961,41.94234199906],[-71.39618,41.94234999906],[-71.39626,41.94237599906],[-71.396325,41.94240699906],[-71.396405,41.94241399906],[-71.39648,41.94240699906],[-71.396627,41.94237999906],[-71.396709,41.94236899906],[-71.396751,41.94242899906],[-71.397202,41.94309999906],[-71.396759,41.94342399906],[-71.396461,41.94362999906],[-71.396431,41.94369499906],[-71.396408,41.94383199906],[-71.396439,41.94445799906],[-71.396545,41.94530499906],[-71.39657,41.94530099906],[-71.39679,41.94523599906],[-71.397109,41.94516099906],[-71.397194,41.94514099906],[-71.397491,41.94509499906],[-71.397675,41.94508399906],[-71.397705,41.94508399906],[-71.398026,41.94511799906],[-71.398674,41.94524799906],[-71.398804,41.94527099906],[-71.399246,41.94536199906],[-71.399849,41.94553399906],[-71.400024,41.94558699906],[-71.400375,41.94570199906],[-71.400551,41.94575499906],[-71.401062,41.94593399906],[-71.401405,41.94606799906],[-71.401695,41.94621299906],[-71.401894,41.94628899906],[-71.402184,41.94634599906],[-71.402565,41.94638099906],[-71.402939,41.94640399906],[-71.40329,41.94643399906],[-71.403656,41.94647599906],[-71.403671,41.94639999906],[-71.403687,41.94595299906]]]}}"}, +{"type": "blockgroup", "typeId": 113022, "areaId": 28883, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.399399,41.92538499906],[-71.399269,41.92501099906],[-71.399223,41.92485799906],[-71.399193,41.92476699906],[-71.398987,41.92417899906],[-71.398849,41.92381299906],[-71.398727,41.92351899906],[-71.398598,41.92319099906],[-71.398438,41.92282899906],[-71.398354,41.92262999906],[-71.398102,41.92218799906],[-71.39785,41.92176099906],[-71.397659,41.92144399906],[-71.397079,41.92047499906],[-71.396713,41.91984899906],[-71.396561,41.91957899906],[-71.396355,41.91923499906],[-71.394974,41.91936499906],[-71.394447,41.91942599906],[-71.393993,41.91947199906],[-71.393825,41.91948899906],[-71.393547,41.91951799906],[-71.393517,41.91951799906],[-71.392746,41.91961699906],[-71.392647,41.91962399906],[-71.391464,41.91974599906],[-71.391144,41.91975399906],[-71.391119,41.91975799906],[-71.390236,41.91978499906],[-71.389381,41.91980099906],[-71.389357,41.91980099906],[-71.388649,41.91981499906],[-71.388466,41.91982299906],[-71.388428,41.91982699906],[-71.387581,41.91985299906],[-71.38665,41.91987999906],[-71.386238,41.91988799906],[-71.384895,41.91990699906],[-71.384941,41.92046399906],[-71.384979,41.92163499906],[-71.384987,41.92169599906],[-71.385033,41.92257699906],[-71.385048,41.92305399906],[-71.385078,41.92341199906],[-71.385101,41.92390999906],[-71.385105,41.92407399906],[-71.385117,41.92460299906],[-71.385124,41.92464799906],[-71.385179,41.92552199906],[-71.385216,41.92610499906],[-71.386116,41.92604399906],[-71.386152,41.92659699906],[-71.386185,41.92710099906],[-71.387039,41.92703199906],[-71.387794,41.92697099906],[-71.387932,41.92695599906],[-71.389191,41.92683799906],[-71.389763,41.92678099906],[-71.389771,41.92681499906],[-71.389877,41.92771899906],[-71.389915,41.92853699906],[-71.392624,41.92857699906],[-71.392433,41.92749399906],[-71.392242,41.92655899906],[-71.392181,41.92612099906],[-71.392174,41.92593799906],[-71.392184,41.92581499906],[-71.392189,41.92574699906],[-71.392206,41.92566299906],[-71.39222,41.92559799906],[-71.39225,41.92534299906],[-71.393783,41.92517699906],[-71.393875,41.92516699906],[-71.394547,41.92508699906],[-71.395378,41.92500299906],[-71.395988,41.92493399906],[-71.397,41.92483199906],[-71.397385,41.92479299906],[-71.397522,41.92480499906],[-71.397537,41.92482799906],[-71.397568,41.92486199906],[-71.397659,41.92502999906],[-71.397706,41.92505599906],[-71.397728,41.92506399906],[-71.397987,41.92554499906],[-71.398705,41.92547599906],[-71.399399,41.92538499906]]]}}"}, +{"type": "blockgroup", "typeId": 113023, "areaId": 28884, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.400093,41.92803999906],[-71.400041,41.92795799906],[-71.400009,41.92790599906],[-71.399979,41.92784099906],[-71.399872,41.92761599906],[-71.39985,41.92753999906],[-71.399805,41.92738299906],[-71.399742,41.92716199906],[-71.399681,41.92676899906],[-71.399658,41.92667799906],[-71.39962,41.92644099906],[-71.399544,41.92602899906],[-71.399414,41.92541499906],[-71.399399,41.92538499906],[-71.398705,41.92547599906],[-71.397987,41.92554499906],[-71.397728,41.92506399906],[-71.397706,41.92505599906],[-71.397659,41.92502999906],[-71.397568,41.92486199906],[-71.397537,41.92482799906],[-71.397522,41.92480499906],[-71.397385,41.92479299906],[-71.397,41.92483199906],[-71.395988,41.92493399906],[-71.395378,41.92500299906],[-71.394547,41.92508699906],[-71.393875,41.92516699906],[-71.393783,41.92517699906],[-71.39225,41.92534299906],[-71.39222,41.92559799906],[-71.392206,41.92566299906],[-71.392189,41.92574699906],[-71.392184,41.92581499906],[-71.392174,41.92593799906],[-71.392181,41.92612099906],[-71.392242,41.92655899906],[-71.392433,41.92749399906],[-71.392624,41.92857699906],[-71.389915,41.92853699906],[-71.389877,41.92771899906],[-71.389771,41.92681499906],[-71.389763,41.92678099906],[-71.389191,41.92683799906],[-71.387932,41.92695599906],[-71.387794,41.92697099906],[-71.387039,41.92703199906],[-71.386185,41.92710099906],[-71.386152,41.92659699906],[-71.386116,41.92604399906],[-71.385216,41.92610499906],[-71.385179,41.92552199906],[-71.385124,41.92464799906],[-71.385117,41.92460299906],[-71.385105,41.92407399906],[-71.385101,41.92390999906],[-71.385078,41.92341199906],[-71.385048,41.92305399906],[-71.385033,41.92257699906],[-71.384987,41.92169599906],[-71.384979,41.92163499906],[-71.384941,41.92046399906],[-71.384895,41.91990699906],[-71.384872,41.91958999906],[-71.384888,41.91943399906],[-71.385033,41.91892199906],[-71.385139,41.91864399906],[-71.385292,41.91827399906],[-71.385437,41.91798399906],[-71.38549,41.91789599906],[-71.385841,41.91749999906],[-71.38604,41.91724799906],[-71.386097,41.91714899906],[-71.386124,41.91710299906],[-71.386192,41.91694999906],[-71.386228,41.91684299906],[-71.384752,41.91656399906],[-71.384402,41.91650099906],[-71.382716,41.91596699906],[-71.382499,41.91589899906],[-71.381439,41.91547199906],[-71.381434,41.91972499906],[-71.381434,41.92060499906],[-71.381433,41.92114899906],[-71.381433,41.92130099906],[-71.381432,41.92136599906],[-71.381431,41.92300899906],[-71.381422,41.92315499906],[-71.38143,41.92363499906],[-71.381427,41.92650099906],[-71.381424,41.92893999906],[-71.381425,41.92982799906],[-71.381413,41.93969399906],[-71.381408,41.94362699906],[-71.381407,41.94481799906],[-71.3814,41.94768199906],[-71.381598,41.94788399906],[-71.381615,41.94790299906],[-71.381973,41.94824999906],[-71.382126,41.94841399906],[-71.382278,41.94855099906],[-71.382332,41.94860499906],[-71.382446,41.94869199906],[-71.382629,41.94879199906],[-71.38282,41.94891399906],[-71.383072,41.94904299906],[-71.383392,41.94919199906],[-71.383827,41.94936399906],[-71.383911,41.94939399906],[-71.384041,41.94944799906],[-71.384216,41.94950499906],[-71.384323,41.94954699906],[-71.384415,41.94947399906],[-71.384483,41.94943599906],[-71.384682,41.94938299906],[-71.385307,41.94918399906],[-71.38546,41.94914599906],[-71.38559,41.94909299906],[-71.385857,41.94901699906],[-71.386047,41.94895199906],[-71.386421,41.94883699906],[-71.386673,41.94877599906],[-71.386848,41.94875699906],[-71.387032,41.94874999906],[-71.387337,41.94875699906],[-71.387596,41.94872299906],[-71.387878,41.94864299906],[-71.387962,41.94861599906],[-71.388367,41.94845599906],[-71.388626,41.94836399906],[-71.388863,41.94828299906],[-71.389063,41.94821599906],[-71.389076,41.94821199906],[-71.389267,41.94816599906],[-71.389458,41.94813199906],[-71.389763,41.94808999906],[-71.389954,41.94802899906],[-71.390038,41.94799399906],[-71.390099,41.94795599906],[-71.390121,41.94794799906],[-71.390198,41.94787599906],[-71.390244,41.94781899906],[-71.39032,41.94767799906],[-71.390472,41.94745999906],[-71.390533,41.94733399906],[-71.390572,41.94727699906],[-71.390648,41.94714399906],[-71.390694,41.94708299906],[-71.390694,41.94706299906],[-71.390892,41.94679599906],[-71.390976,41.94666699906],[-71.391022,41.94660899906],[-71.391083,41.94654499906],[-71.391129,41.94648399906],[-71.391235,41.94638099906],[-71.391304,41.94633099906],[-71.39138,41.94628899906],[-71.391663,41.94618999906],[-71.392097,41.94604899906],[-71.392306,41.94598599906],[-71.392517,41.94592399906],[-71.392548,41.94591499906],[-71.392769,41.94588099906],[-71.393394,41.94595299906],[-71.393707,41.94599499906],[-71.393929,41.94601399906],[-71.394089,41.94601799906],[-71.394234,41.94600699906],[-71.394394,41.94597199906],[-71.394798,41.94585799906],[-71.395576,41.94560199906],[-71.395638,41.94558699906],[-71.39595,41.94549199906],[-71.396051,41.94545799906],[-71.396355,41.94535799906],[-71.396545,41.94530499906],[-71.396439,41.94445799906],[-71.396408,41.94383199906],[-71.396431,41.94369499906],[-71.396461,41.94362999906],[-71.396759,41.94342399906],[-71.397202,41.94309999906],[-71.396751,41.94242899906],[-71.396709,41.94236899906],[-71.396627,41.94237999906],[-71.39648,41.94240699906],[-71.396405,41.94241399906],[-71.396325,41.94240699906],[-71.39626,41.94237599906],[-71.39618,41.94234999906],[-71.3961,41.94234199906],[-71.395996,41.94233899906],[-71.395769,41.94234999906],[-71.395695,41.94233599906],[-71.395642,41.94227999906],[-71.395612,41.94222599906],[-71.395557,41.94218499906],[-71.395471,41.94216499906],[-71.395295,41.94217099906],[-71.395224,41.94214199906],[-71.395162,41.94208699906],[-71.395045,41.94200099906],[-71.394856,41.94186299906],[-71.394707,41.94166599906],[-71.394643,41.94162699906],[-71.394561,41.94161099906],[-71.394489,41.94158399906],[-71.394376,41.94148399906],[-71.394177,41.94135199906],[-71.394043,41.94129299906],[-71.393977,41.94125999906],[-71.3939,41.94123099906],[-71.393772,41.94115899906],[-71.393722,41.94111799906],[-71.39365,41.94111099906],[-71.39357,41.94111999906],[-71.3935,41.94113499906],[-71.39344,41.94114099906],[-71.393357,41.94113499906],[-71.39341,41.94107799906],[-71.393593,41.94075799906],[-71.393669,41.94058999906],[-71.393791,41.94029599906],[-71.393967,41.93989599906],[-71.39402,41.93979599906],[-71.394173,41.93944899906],[-71.394318,41.93915599906],[-71.394331,41.93910599906],[-71.394394,41.93887299906],[-71.394447,41.93864799906],[-71.394493,41.93846499906],[-71.394562,41.93805699906],[-71.394569,41.93794599906],[-71.394569,41.93784699906],[-71.394547,41.93776699906],[-71.394394,41.93755699906],[-71.394226,41.93734699906],[-71.394028,41.93709199906],[-71.393883,41.93687799906],[-71.393799,41.93664199906],[-71.393784,41.93644299906],[-71.393806,41.93621099906],[-71.393883,41.93595899906],[-71.393997,41.93562299906],[-71.394066,41.93538299906],[-71.394676,41.93404799906],[-71.394882,41.93357099906],[-71.39505,41.93323099906],[-71.395187,41.93287699906],[-71.395325,41.93267799906],[-71.395801,41.93202499906],[-71.395844,41.93196599906],[-71.396042,41.93168599906],[-71.396294,41.93131299906],[-71.39653,41.93101099906],[-71.396751,41.93079799906],[-71.397057,41.93053799906],[-71.396568,41.93041199906],[-71.39608,41.93027899906],[-71.395775,41.93020599906],[-71.395653,41.93019099906],[-71.3955,41.93019099906],[-71.395416,41.92971799906],[-71.395363,41.92921099906],[-71.395439,41.92921799906],[-71.396118,41.92918399906],[-71.396156,41.92919199906],[-71.396286,41.92921799906],[-71.396584,41.92932499906],[-71.397041,41.92946199906],[-71.397545,41.92960699906],[-71.397972,41.92979399906],[-71.39801,41.92977099906],[-71.398425,41.92967399906],[-71.398532,41.92964899906],[-71.399245,41.92949899906],[-71.399622,41.92944799906],[-71.399932,41.92933299906],[-71.400028,41.92915199906],[-71.400065,41.92888999906],[-71.400046,41.92818799906],[-71.400093,41.92803999906]]]}}"}, +{"type": "blockgroup", "typeId": 114021, "areaId": 28885, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.472726,41.99425999906],[-71.472593,41.99419399906],[-71.470181,41.99298799906],[-71.468057,41.99192499906],[-71.466811,41.99130199906],[-71.465688,41.99072099906],[-71.46087,41.98822699906],[-71.460838,41.98828499906],[-71.460938,41.98833099906],[-71.460976,41.98835799906],[-71.461014,41.98843799906],[-71.461029,41.98852199906],[-71.461014,41.98866299906],[-71.460999,41.98873499906],[-71.460899,41.98905199906],[-71.460876,41.98915099906],[-71.460861,41.98925399906],[-71.460854,41.98934199906],[-71.460854,41.98951699906],[-71.460869,41.98968099906],[-71.460869,41.98985699906],[-71.460861,41.98994799906],[-71.460831,41.99011199906],[-71.460808,41.99018099906],[-71.460777,41.99037199906],[-71.460777,41.99042899906],[-71.460785,41.99050099906],[-71.460808,41.99057399906],[-71.460838,41.99064299906],[-71.460884,41.99071099906],[-71.461052,41.99089799906],[-71.461121,41.99095199906],[-71.46122,41.99106199906],[-71.461319,41.99124499906],[-71.461365,41.99137899906],[-71.46138,41.99145499906],[-71.461388,41.99153099906],[-71.461365,41.99172199906],[-71.461342,41.99177899906],[-71.461266,41.99187099906],[-71.461197,41.99191299906],[-71.461082,41.99195499906],[-71.460831,41.99200799906],[-71.46064,41.99205799906],[-71.460548,41.99208799906],[-71.460426,41.99214599906],[-71.46032,41.99221799906],[-71.460274,41.99226399906],[-71.46019,41.99237099906],[-71.460052,41.99259599906],[-71.459946,41.99279399906],[-71.459915,41.99286299906],[-71.459839,41.99299599906],[-71.459801,41.99304199906],[-71.459709,41.99313399906],[-71.459671,41.99317899906],[-71.459534,41.99330099906],[-71.459496,41.99333999906],[-71.45945,41.99337799906],[-71.459335,41.99344599906],[-71.459221,41.99348399906],[-71.458961,41.99352599906],[-71.458626,41.99356799906],[-71.458527,41.99358399906],[-71.458427,41.99359499906],[-71.458282,41.99363699906],[-71.458191,41.99368299906],[-71.458122,41.99372499906],[-71.457893,41.99391199906],[-71.457771,41.99398399906],[-71.457634,41.99403399906],[-71.457428,41.99410199906],[-71.457336,41.99415599906],[-71.457298,41.99418599906],[-71.457222,41.99427799906],[-71.457176,41.99439199906],[-71.457161,41.99445699906],[-71.457138,41.99452199906],[-71.457108,41.99463999906],[-71.45697,41.99504099906],[-71.456932,41.99512499906],[-71.456902,41.99517399906],[-71.456873,41.99522799906],[-71.456841,41.99525799906],[-71.456782,41.99528299906],[-71.456704,41.99530999906],[-71.45668,41.99531899906],[-71.456741,41.99573099906],[-71.456627,41.99570499906],[-71.456406,41.99564699906],[-71.456299,41.99560899906],[-71.456161,41.99554399906],[-71.456093,41.99551799906],[-71.455971,41.99546099906],[-71.455612,41.99531599906],[-71.455399,41.99524299906],[-71.455162,41.99517799906],[-71.455017,41.99515899906],[-71.454514,41.99510999906],[-71.454292,41.99509799906],[-71.454178,41.99508699906],[-71.453911,41.99504899906],[-71.45372,41.99498399906],[-71.453285,41.99481199906],[-71.453087,41.99471999906],[-71.45269,41.99456399906],[-71.452454,41.99448799906],[-71.452217,41.99439999906],[-71.452087,41.99435799906],[-71.451859,41.99424699906],[-71.451752,41.99418599906],[-71.451653,41.99411799906],[-71.451569,41.99403799906],[-71.451492,41.99395399906],[-71.451378,41.99381299906],[-71.451279,41.99371299906],[-71.45118,41.99364499906],[-71.45105,41.99358699906],[-71.450974,41.99356799906],[-71.45079,41.99352999906],[-71.450409,41.99348099906],[-71.450317,41.99345799906],[-71.450241,41.99342699906],[-71.450027,41.99332399906],[-71.449951,41.99329799906],[-71.449883,41.99326699906],[-71.449692,41.99319799906],[-71.449593,41.99317199906],[-71.449501,41.99315299906],[-71.449303,41.99312199906],[-71.449142,41.99310299906],[-71.449112,41.99309499906],[-71.449059,41.99308799906],[-71.448776,41.99299599906],[-71.448509,41.99292799906],[-71.448448,41.99290499906],[-71.44838,41.99286699906],[-71.448318,41.99282499906],[-71.448158,41.99269899906],[-71.448097,41.99266099906],[-71.448013,41.99261899906],[-71.447922,41.99258399906],[-71.447823,41.99256499906],[-71.447716,41.99256099906],[-71.447487,41.99259599906],[-71.447319,41.99263799906],[-71.447243,41.99266799906],[-71.447159,41.99270999906],[-71.446991,41.99280899906],[-71.446899,41.99285099906],[-71.446632,41.99296199906],[-71.446327,41.99305699906],[-71.446198,41.99308799906],[-71.446075,41.99313399906],[-71.445976,41.99318299906],[-71.445885,41.99323999906],[-71.445801,41.99330499906],[-71.44574,41.99336599906],[-71.445602,41.99356499906],[-71.445549,41.99362899906],[-71.44548,41.99367899906],[-71.445419,41.99370999906],[-71.445351,41.99373199906],[-71.445274,41.99374799906],[-71.445183,41.99374399906],[-71.445084,41.99372899906],[-71.444992,41.99372099906],[-71.444916,41.99372899906],[-71.444839,41.99374399906],[-71.444656,41.99379299906],[-71.444557,41.99383199906],[-71.444321,41.99394199906],[-71.444016,41.99410999906],[-71.443878,41.99417099906],[-71.44381,41.99419399906],[-71.443695,41.99420899906],[-71.443642,41.99420899906],[-71.443581,41.99420199906],[-71.44352,41.99418999906],[-71.443459,41.99417099906],[-71.44342,41.99415199906],[-71.443275,41.99406099906],[-71.443214,41.99401099906],[-71.443153,41.99397299906],[-71.4431,41.99394599906],[-71.443039,41.99392299906],[-71.442978,41.99390799906],[-71.442917,41.99391199906],[-71.442856,41.99392699906],[-71.442642,41.99399599906],[-71.442505,41.99402599906],[-71.442398,41.99402999906],[-71.442322,41.99401899906],[-71.442245,41.99399899906],[-71.442047,41.99393799906],[-71.441948,41.99391599906],[-71.441872,41.99390399906],[-71.441803,41.99391199906],[-71.441658,41.99394199906],[-71.440956,41.99410999906],[-71.440086,41.99427399906],[-71.439888,41.99430099906],[-71.438873,41.99439199906],[-71.438225,41.99446099906],[-71.437927,41.99451799906],[-71.43763,41.99455599906],[-71.437401,41.99461399906],[-71.43721,41.99465199906],[-71.436516,41.99470499906],[-71.43615,41.99474299906],[-71.435776,41.99479299906],[-71.435616,41.99481999906],[-71.435562,41.99482699906],[-71.435303,41.99484299906],[-71.434891,41.99474699906],[-71.434631,41.99465599906],[-71.434357,41.99447599906],[-71.434067,41.99427799906],[-71.433899,41.99412199906],[-71.433792,41.99395799906],[-71.433678,41.99375199906],[-71.433594,41.99362599906],[-71.433304,41.99340399906],[-71.432999,41.99318299906],[-71.432716,41.99299599906],[-71.432373,41.99279399906],[-71.432068,41.99259899906],[-71.431618,41.99235199906],[-71.431259,41.99216499906],[-71.430969,41.99202299906],[-71.430695,41.99189799906],[-71.430542,41.99186699906],[-71.430476,41.99186899906],[-71.430412,41.99187099906],[-71.430244,41.99191699906],[-71.430122,41.99198199906],[-71.429947,41.99203499906],[-71.429749,41.99202699906],[-71.429512,41.99198499906],[-71.429359,41.99197799906],[-71.429146,41.99199299906],[-71.428864,41.99203499906],[-71.42868,41.99205799906],[-71.428436,41.99203499906],[-71.428185,41.99199299906],[-71.427948,41.99193999906],[-71.427917,41.99192799906],[-71.427742,41.99187899906],[-71.427574,41.99183699906],[-71.427345,41.99187499906],[-71.427101,41.99195899906],[-71.426712,41.99214899906],[-71.42662,41.99224099906],[-71.426498,41.99254599906],[-71.426323,41.99288199906],[-71.426277,41.99298899906],[-71.426285,41.99314499906],[-71.426315,41.99327499906],[-71.426315,41.99346199906],[-71.426308,41.99362199906],[-71.426216,41.99369799906],[-71.426056,41.99370199906],[-71.425888,41.99368299906],[-71.425369,41.99365199906],[-71.425034,41.99364899906],[-71.424774,41.99362599906],[-71.424614,41.99359499906],[-71.424477,41.99352599906],[-71.424347,41.99348099906],[-71.424232,41.99348099906],[-71.423965,41.99358399906],[-71.423698,41.99366799906],[-71.423531,41.99378599906],[-71.423393,41.99391599906],[-71.423294,41.99407199906],[-71.423119,41.99432399906],[-71.423019,41.99448799906],[-71.422944,41.99459799906],[-71.422928,41.99462099906],[-71.422768,41.99474699906],[-71.422569,41.99484299906],[-71.422279,41.99491899906],[-71.422012,41.99497199906],[-71.42173,41.99501799906],[-71.421509,41.99512899906],[-71.421472,41.99516099906],[-71.42128,41.99532699906],[-71.421165,41.99544099906],[-71.421013,41.99573099906],[-71.421005,41.99578899906],[-71.420975,41.99590299906],[-71.420937,41.99596399906],[-71.42083,41.99607499906],[-71.420631,41.99620799906],[-71.420525,41.99626899906],[-71.420443,41.99632199906],[-71.420405,41.99634499906],[-71.420219,41.99644499906],[-71.420006,41.99653599906],[-71.419876,41.99658199906],[-71.419472,41.99670399906],[-71.419403,41.99672699906],[-71.419151,41.99679899906],[-71.41951,41.99766899906],[-71.419807,41.99841699906],[-71.419909,41.99853099906],[-71.420008,41.99858099906],[-71.42003,41.99865199906],[-71.419997,41.99870699906],[-71.418716,41.99899299906],[-71.418587,41.99867999906],[-71.418526,41.99854999906],[-71.418472,41.99842099906],[-71.418365,41.99820699906],[-71.418289,41.99804699906],[-71.418213,41.99793199906],[-71.418098,41.99778399906],[-71.417976,41.99764299906],[-71.41774,41.99740999906],[-71.417526,41.99722299906],[-71.417397,41.99712799906],[-71.417259,41.99703599906],[-71.417236,41.99701699906],[-71.416992,41.99685299906],[-71.416847,41.99676499906],[-71.416632,41.99661799906],[-71.416477,41.99650799906],[-71.416328,41.99639899906],[-71.416153,41.99624999906],[-71.415924,41.99600599906],[-71.415825,41.99587999906],[-71.415756,41.99577699906],[-71.415695,41.99567399906],[-71.415627,41.99557099906],[-71.415589,41.99548899906],[-71.415337,41.99494899906],[-71.415291,41.99482699906],[-71.415215,41.99464399906],[-71.415161,41.99452999906],[-71.414909,41.99391199906],[-71.414757,41.99356099906],[-71.414536,41.99314499906],[-71.414215,41.99256099906],[-71.414032,41.99225599906],[-71.413994,41.99218399906],[-71.413933,41.99206899906],[-71.413818,41.99180599906],[-71.413399,41.99067299906],[-71.411867,41.99104699906],[-71.411738,41.99107899906],[-71.411369,41.99114199906],[-71.411026,41.99120299906],[-71.410454,41.99123799906],[-71.409782,41.99117999906],[-71.409155,41.99110899906],[-71.408363,41.99101299906],[-71.407867,41.99095899906],[-71.407402,41.99094799906],[-71.406555,41.99093599906],[-71.405792,41.99094799906],[-71.404472,41.99097099906],[-71.403992,41.99097099906],[-71.403763,41.99096699906],[-71.403511,41.99091299906],[-71.402931,41.99070699906],[-71.402397,41.99048199906],[-71.401947,41.99030699906],[-71.40081,41.98985299906],[-71.400177,41.98960499906],[-71.399696,41.98947499906],[-71.399587,41.98945699906],[-71.399101,41.98937599906],[-71.39843,41.98929599906],[-71.39782,41.98925799906],[-71.397745,41.98926099906],[-71.397377,41.98927299906],[-71.396965,41.98933799906],[-71.396796,41.98939499906],[-71.396686,41.98943099906],[-71.396645,41.98944499906],[-71.396362,41.98959399906],[-71.396095,41.98981499906],[-71.395889,41.99008599906],[-71.395699,41.99040999906],[-71.395554,41.99068799906],[-71.39537,41.99097399906],[-71.395119,41.99129099906],[-71.394379,41.99218799906],[-71.394035,41.99258399906],[-71.393776,41.99294299906],[-71.3936,41.99325599906],[-71.393498,41.99350999906],[-71.393448,41.99363299906],[-71.39328,41.99410599906],[-71.393082,41.99470499906],[-71.392838,41.99541899906],[-71.392227,41.99726099906],[-71.391703,41.99886599906],[-71.391678,41.99891999906],[-71.391647,41.99902299906],[-71.39164,41.99907299906],[-71.39164,41.99912299906],[-71.391541,41.99911899906],[-71.391487,41.99912599906],[-71.391273,41.99917999906],[-71.391182,41.99920699906],[-71.391098,41.99923699906],[-71.390938,41.99930999906],[-71.390678,41.99939699906],[-71.390182,41.99958799906],[-71.390015,41.99964099906],[-71.389923,41.99967599906],[-71.389847,41.99969899906],[-71.389763,41.99973299906],[-71.389503,41.99982099906],[-71.389427,41.99985099906],[-71.388893,42.00002299906],[-71.38871,42.00006899906],[-71.388618,42.00009899906],[-71.388527,42.00011799906],[-71.388329,42.00011399906],[-71.388138,42.00009899906],[-71.388016,42.00007999906],[-71.387833,42.00003799906],[-71.387733,42.00002299906],[-71.387558,41.99997699906],[-71.387466,41.99996199906],[-71.387375,41.99996599906],[-71.387108,42.00001099906],[-71.386925,42.00003099906],[-71.386841,42.00002699906],[-71.386414,41.99992399906],[-71.386322,41.99991199906],[-71.38623,41.99990499906],[-71.385948,41.99990799906],[-71.385551,41.99990499906],[-71.385445,41.99990099906],[-71.385178,41.99987799906],[-71.385002,41.99985099906],[-71.384834,41.99981699906],[-71.384758,41.99978999906],[-71.384674,41.99976699906],[-71.38459,41.99973699906],[-71.384499,41.99970999906],[-71.384171,41.99958399906],[-71.383934,41.99947399906],[-71.383751,41.99943199906],[-71.383575,41.99942799906],[-71.383286,41.99947699906],[-71.383102,41.99951599906],[-71.383011,41.99953099906],[-71.382828,41.99957299906],[-71.382645,41.99960699906],[-71.382233,41.99972899906],[-71.38208,41.99978999906],[-71.381866,41.99991599906],[-71.381683,41.99997699906],[-71.381505,42.00002099906],[-71.3815,42.00070999906],[-71.381499,42.00175399906],[-71.381501,42.00668199906],[-71.381503,42.01023999906],[-71.381401,42.01879799906],[-71.387301,42.01879799906],[-71.387409,42.01879099906],[-71.389587,42.01879599906],[-71.390748,42.01879799906],[-71.391733,42.01878899906],[-71.392724,42.01877499906],[-71.395119,42.01876499906],[-71.396578,42.01874799906],[-71.403025,42.01865399906],[-71.410661,42.01854899906],[-71.412368,42.01852499906],[-71.41426,42.01849899906],[-71.415624,42.01849799906],[-71.415708,42.01849799906],[-71.416976,42.01846799906],[-71.419503,42.01839799906],[-71.419858,42.01838499906],[-71.421994,42.01829899906],[-71.422481,42.01829799906],[-71.424089,42.01828299906],[-71.424407,42.01827999906],[-71.437519,42.01813799906],[-71.437738,42.01813999906],[-71.439047,42.01812199906],[-71.439153,42.01812099906],[-71.441298,42.01809799906],[-71.441511,42.01809199906],[-71.441555,42.01808599906],[-71.4468,42.01789899906],[-71.450003,42.01789799906],[-71.45024,42.01789499906],[-71.452735,42.01786399906],[-71.452835,42.01786299906],[-71.454035,42.01784799906],[-71.458104,42.01779799906],[-71.458157,42.01764799906],[-71.458214,42.01747899906],[-71.458237,42.01727299906],[-71.458282,42.01671999906],[-71.458313,42.01641099906],[-71.458313,42.01634999906],[-71.458321,42.01632299906],[-71.458336,42.01615099906],[-71.458402,42.01567399906],[-71.458414,42.01558899906],[-71.458423,42.01552499906],[-71.458542,42.01468299906],[-71.458725,42.01395799906],[-71.458733,42.01388499906],[-71.458733,42.01381299906],[-71.458755,42.01363399906],[-71.458794,42.01345399906],[-71.458832,42.01331299906],[-71.458878,42.01303899906],[-71.458908,42.01290099906],[-71.458977,42.01259999906],[-71.459007,42.01244699906],[-71.45903,42.01237099906],[-71.459045,42.01229099906],[-71.459068,42.01221499906],[-71.459076,42.01214199906],[-71.459122,42.01191299906],[-71.459145,42.01163099906],[-71.459175,42.01148599906],[-71.459183,42.01141399906],[-71.459244,42.01085699906],[-71.459297,42.01055099906],[-71.459351,42.01022299906],[-71.459488,42.00975799906],[-71.459641,42.00910199906],[-71.459686,42.00873899906],[-71.459747,42.00835799906],[-71.459747,42.00832399906],[-71.459793,42.00797299906],[-71.459846,42.00777099906],[-71.459877,42.00772099906],[-71.459891,42.00756999906],[-71.460167,42.00728299906],[-71.460566,42.00686899906],[-71.461449,42.00595299906],[-71.463733,42.00358599906],[-71.465352,42.00190599906],[-71.465829,42.00141299906],[-71.466359,42.00085999906],[-71.466992,42.00020899906],[-71.467311,41.99987599906],[-71.467359,41.99982999906],[-71.471607,41.99542099906],[-71.472726,41.99425999906]]]}}"}, +{"type": "blockgroup", "typeId": 114022, "areaId": 28886, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.461388,41.99153099906],[-71.46138,41.99145499906],[-71.461365,41.99137899906],[-71.461319,41.99124499906],[-71.46122,41.99106199906],[-71.461121,41.99095199906],[-71.461052,41.99089799906],[-71.460884,41.99071099906],[-71.460838,41.99064299906],[-71.460808,41.99057399906],[-71.460785,41.99050099906],[-71.460777,41.99042899906],[-71.460777,41.99037199906],[-71.460808,41.99018099906],[-71.460831,41.99011199906],[-71.460861,41.98994799906],[-71.460869,41.98985699906],[-71.460869,41.98968099906],[-71.460854,41.98951699906],[-71.460854,41.98934199906],[-71.460861,41.98925399906],[-71.460876,41.98915099906],[-71.460899,41.98905199906],[-71.460999,41.98873499906],[-71.461014,41.98866299906],[-71.461029,41.98852199906],[-71.461014,41.98843799906],[-71.460976,41.98835799906],[-71.460938,41.98833099906],[-71.460838,41.98828499906],[-71.46087,41.98822699906],[-71.460915,41.98812499906],[-71.460953,41.98802199906],[-71.460988,41.98789599906],[-71.461014,41.98780099906],[-71.461029,41.98768599906],[-71.461037,41.98757199906],[-71.461029,41.98742299906],[-71.460876,41.98642299906],[-71.460831,41.98619099906],[-71.460716,41.98551599906],[-71.460686,41.98525599906],[-71.460648,41.98499699906],[-71.460533,41.98447399906],[-71.459839,41.98226199906],[-71.459656,41.98170899906],[-71.459427,41.98090699906],[-71.459396,41.98074299906],[-71.459358,41.98057599906],[-71.459335,41.98026699906],[-71.459351,41.98011799906],[-71.459373,41.97997299906],[-71.459427,41.97982399906],[-71.459503,41.97967499906],[-71.459595,41.97953399906],[-71.459625,41.97949999906],[-71.459709,41.97938499906],[-71.459969,41.97909899906],[-71.460167,41.97890099906],[-71.460579,41.97851599906],[-71.460236,41.97825599906],[-71.459862,41.97790899906],[-71.459679,41.97774099906],[-71.459251,41.97738999906],[-71.458694,41.97689799906],[-71.457886,41.97620799906],[-71.457809,41.97613899906],[-71.457634,41.97597099906],[-71.456863,41.97522399906],[-71.456444,41.97487999906],[-71.456085,41.97457099906],[-71.456009,41.97450599906],[-71.455086,41.97371299906],[-71.454834,41.97350299906],[-71.454391,41.97312499906],[-71.454056,41.97284299906],[-71.4534,41.97227899906],[-71.452538,41.97154199906],[-71.452408,41.97143599906],[-71.452248,41.97129799906],[-71.452187,41.97124699906],[-71.451269,41.97048699906],[-71.450942,41.97021699906],[-71.450025,41.96945599906],[-71.449715,41.96919999906],[-71.449669,41.96915799906],[-71.449403,41.96894299906],[-71.449005,41.96861999906],[-71.448425,41.96813999906],[-71.447838,41.96767799906],[-71.447655,41.96783099906],[-71.44738,41.96809399906],[-71.44737,41.96811099906],[-71.447075,41.96841799906],[-71.446785,41.96868099906],[-71.446667,41.96877399906],[-71.446548,41.96886799906],[-71.446175,41.96909299906],[-71.445816,41.96936799906],[-71.445671,41.96949399906],[-71.445343,41.96987499906],[-71.445015,41.97022999906],[-71.444595,41.97069499906],[-71.444389,41.97085599906],[-71.444191,41.97100399906],[-71.443611,41.97132099906],[-71.443291,41.97146599906],[-71.442978,41.97157699906],[-71.442896,41.97158899906],[-71.442665,41.97162199906],[-71.442279,41.97163199906],[-71.442168,41.97163599906],[-71.442085,41.97163799906],[-71.441612,41.97165699906],[-71.441246,41.97164899906],[-71.441032,41.97160299906],[-71.440666,41.97145499906],[-71.440394,41.97132099906],[-71.440186,41.97121799906],[-71.439682,41.97098499906],[-71.439613,41.97095899906],[-71.438568,41.97049699906],[-71.437851,41.97019599906],[-71.437645,41.97010399906],[-71.437218,41.96991699906],[-71.437126,41.96988299906],[-71.436951,41.96982999906],[-71.436874,41.96981799906],[-71.436707,41.96982599906],[-71.436531,41.96984499906],[-71.436096,41.96990199906],[-71.435959,41.96992899906],[-71.43573,41.96997099906],[-71.435402,41.97004699906],[-71.435257,41.97008499906],[-71.434975,41.97018099906],[-71.434715,41.97030599906],[-71.434547,41.97039799906],[-71.434349,41.97047399906],[-71.434181,41.97050499906],[-71.433525,41.97058899906],[-71.432693,41.97064599906],[-71.432579,41.97066099906],[-71.432442,41.97069499906],[-71.431885,41.97093599906],[-71.431786,41.97095499906],[-71.431671,41.97095899906],[-71.431206,41.97095099906],[-71.431068,41.97096599906],[-71.430542,41.97105799906],[-71.430374,41.97107299906],[-71.43029,41.97107699906],[-71.430191,41.97107299906],[-71.430092,41.97106199906],[-71.429993,41.97104599906],[-71.429909,41.97102699906],[-71.429825,41.97100099906],[-71.429741,41.97098199906],[-71.429634,41.97096999906],[-71.429283,41.97095099906],[-71.429161,41.97093999906],[-71.428902,41.97093199906],[-71.428764,41.97093599906],[-71.428558,41.97095499906],[-71.42849,41.97096599906],[-71.428429,41.97098499906],[-71.428375,41.97100799906],[-71.428215,41.97111899906],[-71.428162,41.97116899906],[-71.42804,41.97124899906],[-71.427971,41.97128299906],[-71.427895,41.97131299906],[-71.427551,41.97140899906],[-71.427338,41.97148899906],[-71.42704,41.97161099906],[-71.426857,41.97169099906],[-71.426811,41.97171799906],[-71.426773,41.97173299906],[-71.426689,41.97177899906],[-71.426605,41.97183999906],[-71.426445,41.97197699906],[-71.426376,41.97204199906],[-71.426262,41.97216799906],[-71.426109,41.97231299906],[-71.426025,41.97237799906],[-71.425911,41.97244599906],[-71.425842,41.97246899906],[-71.425766,41.97248499906],[-71.425682,41.97249199906],[-71.425606,41.97248799906],[-71.425522,41.97247299906],[-71.42514,41.97236599906],[-71.425041,41.97235099906],[-71.424759,41.97232799906],[-71.424735,41.97232299906],[-71.424644,41.97231699906],[-71.424454,41.97228999906],[-71.424377,41.97227099906],[-71.423973,41.97220599906],[-71.423843,41.97219799906],[-71.423218,41.97219099906],[-71.422989,41.97217899906],[-71.42289,41.97215299906],[-71.422836,41.97212999906],[-71.422684,41.97201899906],[-71.422531,41.97188599906],[-71.422493,41.97184799906],[-71.422447,41.97181299906],[-71.422363,41.97176699906],[-71.422279,41.97172899906],[-71.422096,41.97166399906],[-71.422005,41.97164199906],[-71.421852,41.97158099906],[-71.421379,41.97133999906],[-71.421181,41.97125199906],[-71.420998,41.97119899906],[-71.420509,41.97108499906],[-71.420403,41.97105399906],[-71.420288,41.97103099906],[-71.420174,41.97101999906],[-71.419937,41.97101199906],[-71.419472,41.97101199906],[-71.419319,41.97100799906],[-71.418846,41.97100799906],[-71.418648,41.97098499906],[-71.418549,41.97096999906],[-71.418526,41.97106199906],[-71.418495,41.97114599906],[-71.418449,41.97122999906],[-71.41832,41.97153899906],[-71.418289,41.97164899906],[-71.418266,41.97176399906],[-71.418236,41.97221799906],[-71.418221,41.97232799906],[-71.41819,41.97244599906],[-71.418152,41.97256499906],[-71.418098,41.97267899906],[-71.418045,41.97276699906],[-71.417923,41.97293499906],[-71.417839,41.97304199906],[-71.417648,41.97325099906],[-71.417351,41.97359099906],[-71.417244,41.97369799906],[-71.416962,41.97400699906],[-71.416748,41.97426599906],[-71.416641,41.97441499906],[-71.416588,41.97450999906],[-71.416496,41.97470499906],[-71.416464,41.97479099906],[-71.416336,41.97514299906],[-71.416229,41.97537999906],[-71.415863,41.97610099906],[-71.415482,41.97692899906],[-71.415413,41.97711899906],[-71.415359,41.97729499906],[-71.415243,41.97774599906],[-71.41523,41.97779499906],[-71.415199,41.97794699906],[-71.415176,41.97809999906],[-71.415176,41.97820699906],[-71.415192,41.97842399906],[-71.415215,41.97855799906],[-71.415276,41.97882499906],[-71.415314,41.97896199906],[-71.415359,41.97909899906],[-71.415398,41.97923699906],[-71.415459,41.97940099906],[-71.415512,41.97956499906],[-71.415596,41.97988499906],[-71.415619,41.98003799906],[-71.415688,41.98037699906],[-71.415718,41.98056399906],[-71.415802,41.98097199906],[-71.415817,41.98107899906],[-71.41592,41.98159499906],[-71.415962,41.98180399906],[-71.416035,41.98222199906],[-71.416054,41.98232699906],[-71.416077,41.98249099906],[-71.4139,41.98263999906],[-71.413515,41.98266299906],[-71.411285,41.98280699906],[-71.4111,41.98281299906],[-71.410828,41.98282199906],[-71.410683,41.98282599906],[-71.410255,41.98281899906],[-71.410103,41.98281099906],[-71.409836,41.98279999906],[-71.40937,41.98276499906],[-71.408928,41.98270799906],[-71.40873,41.98268499906],[-71.408012,41.98255199906],[-71.40554,41.98197599906],[-71.404999,41.98185299906],[-71.404053,41.98163599906],[-71.402588,41.98130399906],[-71.401665,41.98109099906],[-71.400261,41.98076599906],[-71.399872,41.98067899906],[-71.399694,41.98064099906],[-71.399659,41.98063299906],[-71.399002,41.98048799906],[-71.397949,41.98023999906],[-71.39711,41.98004899906],[-71.39621,41.97983899906],[-71.395658,41.97971399906],[-71.395485,41.97967499906],[-71.395382,41.97964999906],[-71.395309,41.97963299906],[-71.395136,41.97959299906],[-71.394753,41.97950399906],[-71.394234,41.97937799906],[-71.393806,41.97924799906],[-71.393603,41.97917299906],[-71.393433,41.97911099906],[-71.393066,41.97895099906],[-71.392532,41.97867999906],[-71.392494,41.97865699906],[-71.39196,41.97831699906],[-71.391411,41.97786299906],[-71.391251,41.97772599906],[-71.391228,41.97774499906],[-71.391151,41.97777599906],[-71.391083,41.97780999906],[-71.390991,41.97784399906],[-71.390846,41.97792399906],[-71.390465,41.97811099906],[-71.390289,41.97818399906],[-71.389969,41.97833599906],[-71.389557,41.97849999906],[-71.389412,41.97857999906],[-71.38916,41.97870299906],[-71.389061,41.97873699906],[-71.388985,41.97877899906],[-71.388817,41.97885499906],[-71.388535,41.97896999906],[-71.388123,41.97917899906],[-71.388031,41.97921799906],[-71.387939,41.97926299906],[-71.387856,41.97931299906],[-71.387375,41.97954199906],[-71.387085,41.97968699906],[-71.387001,41.97972499906],[-71.386917,41.97975499906],[-71.386833,41.97979699906],[-71.386688,41.97984699906],[-71.386482,41.97991599906],[-71.386406,41.97994599906],[-71.386063,41.98004899906],[-71.385979,41.98006799906],[-71.385796,41.98011799906],[-71.385704,41.98013299906],[-71.385521,41.98018999906],[-71.385201,41.98034299906],[-71.385124,41.98038899906],[-71.384949,41.98047999906],[-71.384735,41.98062099906],[-71.384529,41.98074299906],[-71.384468,41.98078899906],[-71.384247,41.98092999906],[-71.384163,41.98096799906],[-71.384018,41.98107099906],[-71.383881,41.98115899906],[-71.383797,41.98119699906],[-71.38372,41.98123899906],[-71.383278,41.98145299906],[-71.383133,41.98152599906],[-71.382996,41.98158399906],[-71.382767,41.98166199906],[-71.382614,41.98171999906],[-71.382476,41.98178599906],[-71.382407,41.98183899906],[-71.382347,41.98190499906],[-71.382256,41.98204399906],[-71.38221,41.98209699906],[-71.382179,41.98215499906],[-71.382133,41.98221999906],[-71.382089,41.98227399906],[-71.381898,41.98243999906],[-71.3817,41.98258299906],[-71.381539,41.98267099906],[-71.381379,41.98277199906],[-71.381365,41.98277799906],[-71.381364,41.98444399906],[-71.381299,41.98508399906],[-71.381358,41.99020399906],[-71.381378,41.99202499906],[-71.381401,41.99409799906],[-71.381487,41.99919299906],[-71.381505,42.00002099906],[-71.381683,41.99997699906],[-71.381866,41.99991599906],[-71.38208,41.99978999906],[-71.382233,41.99972899906],[-71.382645,41.99960699906],[-71.382828,41.99957299906],[-71.383011,41.99953099906],[-71.383102,41.99951599906],[-71.383286,41.99947699906],[-71.383575,41.99942799906],[-71.383751,41.99943199906],[-71.383934,41.99947399906],[-71.384171,41.99958399906],[-71.384499,41.99970999906],[-71.38459,41.99973699906],[-71.384674,41.99976699906],[-71.384758,41.99978999906],[-71.384834,41.99981699906],[-71.385002,41.99985099906],[-71.385178,41.99987799906],[-71.385445,41.99990099906],[-71.385551,41.99990499906],[-71.385948,41.99990799906],[-71.38623,41.99990499906],[-71.386322,41.99991199906],[-71.386414,41.99992399906],[-71.386841,42.00002699906],[-71.386925,42.00003099906],[-71.387108,42.00001099906],[-71.387375,41.99996599906],[-71.387466,41.99996199906],[-71.387558,41.99997699906],[-71.387733,42.00002299906],[-71.387833,42.00003799906],[-71.388016,42.00007999906],[-71.388138,42.00009899906],[-71.388329,42.00011399906],[-71.388527,42.00011799906],[-71.388618,42.00009899906],[-71.38871,42.00006899906],[-71.388893,42.00002299906],[-71.389427,41.99985099906],[-71.389503,41.99982099906],[-71.389763,41.99973299906],[-71.389847,41.99969899906],[-71.389923,41.99967599906],[-71.390015,41.99964099906],[-71.390182,41.99958799906],[-71.390678,41.99939699906],[-71.390938,41.99930999906],[-71.391098,41.99923699906],[-71.391182,41.99920699906],[-71.391273,41.99917999906],[-71.391487,41.99912599906],[-71.391541,41.99911899906],[-71.39164,41.99912299906],[-71.39164,41.99907299906],[-71.391647,41.99902299906],[-71.391678,41.99891999906],[-71.391703,41.99886599906],[-71.392227,41.99726099906],[-71.392838,41.99541899906],[-71.393082,41.99470499906],[-71.39328,41.99410599906],[-71.393448,41.99363299906],[-71.393498,41.99350999906],[-71.3936,41.99325599906],[-71.393776,41.99294299906],[-71.394035,41.99258399906],[-71.394379,41.99218799906],[-71.395119,41.99129099906],[-71.39537,41.99097399906],[-71.395554,41.99068799906],[-71.395699,41.99040999906],[-71.395889,41.99008599906],[-71.396095,41.98981499906],[-71.396362,41.98959399906],[-71.396645,41.98944499906],[-71.396686,41.98943099906],[-71.396796,41.98939499906],[-71.396965,41.98933799906],[-71.397377,41.98927299906],[-71.397745,41.98926099906],[-71.39782,41.98925799906],[-71.39843,41.98929599906],[-71.399101,41.98937599906],[-71.399587,41.98945699906],[-71.399696,41.98947499906],[-71.400177,41.98960499906],[-71.40081,41.98985299906],[-71.401947,41.99030699906],[-71.402397,41.99048199906],[-71.402931,41.99070699906],[-71.403511,41.99091299906],[-71.403763,41.99096699906],[-71.403992,41.99097099906],[-71.404472,41.99097099906],[-71.405792,41.99094799906],[-71.406555,41.99093599906],[-71.407402,41.99094799906],[-71.407867,41.99095899906],[-71.408363,41.99101299906],[-71.409155,41.99110899906],[-71.409782,41.99117999906],[-71.410454,41.99123799906],[-71.411026,41.99120299906],[-71.411369,41.99114199906],[-71.411738,41.99107899906],[-71.411867,41.99104699906],[-71.413399,41.99067299906],[-71.413818,41.99180599906],[-71.413933,41.99206899906],[-71.413994,41.99218399906],[-71.414032,41.99225599906],[-71.414215,41.99256099906],[-71.414536,41.99314499906],[-71.414757,41.99356099906],[-71.414909,41.99391199906],[-71.415161,41.99452999906],[-71.415215,41.99464399906],[-71.415291,41.99482699906],[-71.415337,41.99494899906],[-71.415589,41.99548899906],[-71.415627,41.99557099906],[-71.415695,41.99567399906],[-71.415756,41.99577699906],[-71.415825,41.99587999906],[-71.415924,41.99600599906],[-71.416153,41.99624999906],[-71.416328,41.99639899906],[-71.416477,41.99650799906],[-71.416632,41.99661799906],[-71.416847,41.99676499906],[-71.416992,41.99685299906],[-71.417236,41.99701699906],[-71.417259,41.99703599906],[-71.417397,41.99712799906],[-71.417526,41.99722299906],[-71.41774,41.99740999906],[-71.417976,41.99764299906],[-71.418098,41.99778399906],[-71.418213,41.99793199906],[-71.418289,41.99804699906],[-71.418365,41.99820699906],[-71.418472,41.99842099906],[-71.418526,41.99854999906],[-71.418587,41.99867999906],[-71.418716,41.99899299906],[-71.419997,41.99870699906],[-71.42003,41.99865199906],[-71.420008,41.99858099906],[-71.419909,41.99853099906],[-71.419807,41.99841699906],[-71.41951,41.99766899906],[-71.419151,41.99679899906],[-71.419403,41.99672699906],[-71.419472,41.99670399906],[-71.419876,41.99658199906],[-71.420006,41.99653599906],[-71.420219,41.99644499906],[-71.420405,41.99634499906],[-71.420443,41.99632199906],[-71.420525,41.99626899906],[-71.420631,41.99620799906],[-71.42083,41.99607499906],[-71.420937,41.99596399906],[-71.420975,41.99590299906],[-71.421005,41.99578899906],[-71.421013,41.99573099906],[-71.421165,41.99544099906],[-71.42128,41.99532699906],[-71.421472,41.99516099906],[-71.421509,41.99512899906],[-71.42173,41.99501799906],[-71.422012,41.99497199906],[-71.422279,41.99491899906],[-71.422569,41.99484299906],[-71.422768,41.99474699906],[-71.422928,41.99462099906],[-71.422944,41.99459799906],[-71.423019,41.99448799906],[-71.423119,41.99432399906],[-71.423294,41.99407199906],[-71.423393,41.99391599906],[-71.423531,41.99378599906],[-71.423698,41.99366799906],[-71.423965,41.99358399906],[-71.424232,41.99348099906],[-71.424347,41.99348099906],[-71.424477,41.99352599906],[-71.424614,41.99359499906],[-71.424774,41.99362599906],[-71.425034,41.99364899906],[-71.425369,41.99365199906],[-71.425888,41.99368299906],[-71.426056,41.99370199906],[-71.426216,41.99369799906],[-71.426308,41.99362199906],[-71.426315,41.99346199906],[-71.426315,41.99327499906],[-71.426285,41.99314499906],[-71.426277,41.99298899906],[-71.426323,41.99288199906],[-71.426498,41.99254599906],[-71.42662,41.99224099906],[-71.426712,41.99214899906],[-71.427101,41.99195899906],[-71.427345,41.99187499906],[-71.427574,41.99183699906],[-71.427742,41.99187899906],[-71.427917,41.99192799906],[-71.427948,41.99193999906],[-71.428185,41.99199299906],[-71.428436,41.99203499906],[-71.42868,41.99205799906],[-71.428864,41.99203499906],[-71.429146,41.99199299906],[-71.429359,41.99197799906],[-71.429512,41.99198499906],[-71.429749,41.99202699906],[-71.429947,41.99203499906],[-71.430122,41.99198199906],[-71.430244,41.99191699906],[-71.430412,41.99187099906],[-71.430476,41.99186899906],[-71.430542,41.99186699906],[-71.430695,41.99189799906],[-71.430969,41.99202299906],[-71.431259,41.99216499906],[-71.431618,41.99235199906],[-71.432068,41.99259899906],[-71.432373,41.99279399906],[-71.432716,41.99299599906],[-71.432999,41.99318299906],[-71.433304,41.99340399906],[-71.433594,41.99362599906],[-71.433678,41.99375199906],[-71.433792,41.99395799906],[-71.433899,41.99412199906],[-71.434067,41.99427799906],[-71.434357,41.99447599906],[-71.434631,41.99465599906],[-71.434891,41.99474699906],[-71.435303,41.99484299906],[-71.435562,41.99482699906],[-71.435616,41.99481999906],[-71.435776,41.99479299906],[-71.43615,41.99474299906],[-71.436516,41.99470499906],[-71.43721,41.99465199906],[-71.437401,41.99461399906],[-71.43763,41.99455599906],[-71.437927,41.99451799906],[-71.438225,41.99446099906],[-71.438873,41.99439199906],[-71.439888,41.99430099906],[-71.440086,41.99427399906],[-71.440956,41.99410999906],[-71.441658,41.99394199906],[-71.441803,41.99391199906],[-71.441872,41.99390399906],[-71.441948,41.99391599906],[-71.442047,41.99393799906],[-71.442245,41.99399899906],[-71.442322,41.99401899906],[-71.442398,41.99402999906],[-71.442505,41.99402599906],[-71.442642,41.99399599906],[-71.442856,41.99392699906],[-71.442917,41.99391199906],[-71.442978,41.99390799906],[-71.443039,41.99392299906],[-71.4431,41.99394599906],[-71.443153,41.99397299906],[-71.443214,41.99401099906],[-71.443275,41.99406099906],[-71.44342,41.99415199906],[-71.443459,41.99417099906],[-71.44352,41.99418999906],[-71.443581,41.99420199906],[-71.443642,41.99420899906],[-71.443695,41.99420899906],[-71.44381,41.99419399906],[-71.443878,41.99417099906],[-71.444016,41.99410999906],[-71.444321,41.99394199906],[-71.444557,41.99383199906],[-71.444656,41.99379299906],[-71.444839,41.99374399906],[-71.444916,41.99372899906],[-71.444992,41.99372099906],[-71.445084,41.99372899906],[-71.445183,41.99374399906],[-71.445274,41.99374799906],[-71.445351,41.99373199906],[-71.445419,41.99370999906],[-71.44548,41.99367899906],[-71.445549,41.99362899906],[-71.445602,41.99356499906],[-71.44574,41.99336599906],[-71.445801,41.99330499906],[-71.445885,41.99323999906],[-71.445976,41.99318299906],[-71.446075,41.99313399906],[-71.446198,41.99308799906],[-71.446327,41.99305699906],[-71.446632,41.99296199906],[-71.446899,41.99285099906],[-71.446991,41.99280899906],[-71.447159,41.99270999906],[-71.447243,41.99266799906],[-71.447319,41.99263799906],[-71.447487,41.99259599906],[-71.447716,41.99256099906],[-71.447823,41.99256499906],[-71.447922,41.99258399906],[-71.448013,41.99261899906],[-71.448097,41.99266099906],[-71.448158,41.99269899906],[-71.448318,41.99282499906],[-71.44838,41.99286699906],[-71.448448,41.99290499906],[-71.448509,41.99292799906],[-71.448776,41.99299599906],[-71.449059,41.99308799906],[-71.449112,41.99309499906],[-71.449142,41.99310299906],[-71.449303,41.99312199906],[-71.449501,41.99315299906],[-71.449593,41.99317199906],[-71.449692,41.99319799906],[-71.449883,41.99326699906],[-71.449951,41.99329799906],[-71.450027,41.99332399906],[-71.450241,41.99342699906],[-71.450317,41.99345799906],[-71.450409,41.99348099906],[-71.45079,41.99352999906],[-71.450974,41.99356799906],[-71.45105,41.99358699906],[-71.45118,41.99364499906],[-71.451279,41.99371299906],[-71.451378,41.99381299906],[-71.451492,41.99395399906],[-71.451569,41.99403799906],[-71.451653,41.99411799906],[-71.451752,41.99418599906],[-71.451859,41.99424699906],[-71.452087,41.99435799906],[-71.452217,41.99439999906],[-71.452454,41.99448799906],[-71.45269,41.99456399906],[-71.453087,41.99471999906],[-71.453285,41.99481199906],[-71.45372,41.99498399906],[-71.453911,41.99504899906],[-71.454178,41.99508699906],[-71.454292,41.99509799906],[-71.454514,41.99510999906],[-71.455017,41.99515899906],[-71.455162,41.99517799906],[-71.455399,41.99524299906],[-71.455612,41.99531599906],[-71.455971,41.99546099906],[-71.456093,41.99551799906],[-71.456161,41.99554399906],[-71.456299,41.99560899906],[-71.456406,41.99564699906],[-71.456627,41.99570499906],[-71.456741,41.99573099906],[-71.45668,41.99531899906],[-71.456704,41.99530999906],[-71.456782,41.99528299906],[-71.456841,41.99525799906],[-71.456873,41.99522799906],[-71.456902,41.99517399906],[-71.456932,41.99512499906],[-71.45697,41.99504099906],[-71.457108,41.99463999906],[-71.457138,41.99452199906],[-71.457161,41.99445699906],[-71.457176,41.99439199906],[-71.457222,41.99427799906],[-71.457298,41.99418599906],[-71.457336,41.99415599906],[-71.457428,41.99410199906],[-71.457634,41.99403399906],[-71.457771,41.99398399906],[-71.457893,41.99391199906],[-71.458122,41.99372499906],[-71.458191,41.99368299906],[-71.458282,41.99363699906],[-71.458427,41.99359499906],[-71.458527,41.99358399906],[-71.458626,41.99356799906],[-71.458961,41.99352599906],[-71.459221,41.99348399906],[-71.459335,41.99344599906],[-71.45945,41.99337799906],[-71.459496,41.99333999906],[-71.459534,41.99330099906],[-71.459671,41.99317899906],[-71.459709,41.99313399906],[-71.459801,41.99304199906],[-71.459839,41.99299599906],[-71.459915,41.99286299906],[-71.459946,41.99279399906],[-71.460052,41.99259599906],[-71.46019,41.99237099906],[-71.460274,41.99226399906],[-71.46032,41.99221799906],[-71.460426,41.99214599906],[-71.460548,41.99208799906],[-71.46064,41.99205799906],[-71.460831,41.99200799906],[-71.461082,41.99195499906],[-71.461197,41.99191299906],[-71.461266,41.99187099906],[-71.461342,41.99177899906],[-71.461365,41.99172199906],[-71.461388,41.99153099906]]]}}"}, +{"type": "blockgroup", "typeId": 114031, "areaId": 28887, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.480327,41.98637799906],[-71.480301,41.98635899906],[-71.480186,41.98627899906],[-71.480095,41.98619499906],[-71.479851,41.98599199906],[-71.47958,41.98579899906],[-71.479454,41.98570999906],[-71.479411,41.98568599906],[-71.479202,41.98556899906],[-71.478783,41.98531699906],[-71.478533,41.98515999906],[-71.478462,41.98511499906],[-71.478287,41.98503099906],[-71.478027,41.98491299906],[-71.477806,41.98481799906],[-71.477516,41.98471499906],[-71.477448,41.98469199906],[-71.477058,41.98460399906],[-71.477013,41.98459199906],[-71.476616,41.98451999906],[-71.476389,41.98447499906],[-71.476349,41.98446699906],[-71.475891,41.98433299906],[-71.475258,41.98416099906],[-71.474808,41.98403499906],[-71.474007,41.98378799906],[-71.473801,41.98371499906],[-71.473534,41.98362399906],[-71.473495,41.98360799906],[-71.473,41.98343999906],[-71.472641,41.98331099906],[-71.471863,41.98299799906],[-71.471596,41.98288299906],[-71.471252,41.98270799906],[-71.47113,41.98265099906],[-71.470802,41.98249099906],[-71.470421,41.98229999906],[-71.470375,41.98228099906],[-71.470139,41.98216999906],[-71.469955,41.98209799906],[-71.469521,41.98194099906],[-71.468987,41.98175399906],[-71.46875,41.98166999906],[-71.468178,41.98146399906],[-71.467545,41.98124299906],[-71.467178,41.98110999906],[-71.466858,41.98099499906],[-71.466232,41.98078199906],[-71.466125,41.98073999906],[-71.465187,41.98040799906],[-71.464935,41.98031999906],[-71.464378,41.98010599906],[-71.464329,41.98008499906],[-71.464096,41.97998799906],[-71.463722,41.97980099906],[-71.463516,41.97970199906],[-71.462959,41.97943099906],[-71.462563,41.97927099906],[-71.462296,41.97917899906],[-71.461922,41.97907599906],[-71.461739,41.97903099906],[-71.461555,41.97898499906],[-71.461266,41.97888199906],[-71.460978,41.97874699906],[-71.460899,41.97870999906],[-71.460579,41.97851599906],[-71.460167,41.97890099906],[-71.459969,41.97909899906],[-71.459709,41.97938499906],[-71.459625,41.97949999906],[-71.459595,41.97953399906],[-71.459503,41.97967499906],[-71.459427,41.97982399906],[-71.459373,41.97997299906],[-71.459351,41.98011799906],[-71.459335,41.98026699906],[-71.459358,41.98057599906],[-71.459396,41.98074299906],[-71.459427,41.98090699906],[-71.459656,41.98170899906],[-71.459839,41.98226199906],[-71.460533,41.98447399906],[-71.460648,41.98499699906],[-71.460686,41.98525599906],[-71.460716,41.98551599906],[-71.460831,41.98619099906],[-71.460876,41.98642299906],[-71.461029,41.98742299906],[-71.461037,41.98757199906],[-71.461029,41.98768599906],[-71.461014,41.98780099906],[-71.460988,41.98789599906],[-71.460953,41.98802199906],[-71.460915,41.98812499906],[-71.46087,41.98822699906],[-71.465688,41.99072099906],[-71.466811,41.99130199906],[-71.468057,41.99192499906],[-71.470181,41.99298799906],[-71.472593,41.99419399906],[-71.472726,41.99425999906],[-71.472826,41.99415599906],[-71.47291,41.99406999906],[-71.472966,41.99400599906],[-71.474655,41.99226599906],[-71.476213,41.99064599906],[-71.478702,41.98806999906],[-71.478774,41.98798999906],[-71.479048,41.98770699906],[-71.479389,41.98735299906],[-71.479719,41.98700999906],[-71.479767,41.98695799906],[-71.480327,41.98637799906]]]}}"}, +{"type": "blockgroup", "typeId": 114032, "areaId": 28888, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.469992,41.97110799906],[-71.469964,41.97093099906],[-71.469291,41.97055899906],[-71.467261,41.96979399906],[-71.46536,41.96938899906],[-71.464898,41.96909499906],[-71.464559,41.96853099906],[-71.464389,41.96809599906],[-71.464582,41.96711299906],[-71.465002,41.96655399906],[-71.465011,41.96599799906],[-71.464088,41.96409199906],[-71.463932,41.96354199906],[-71.463647,41.96295099906],[-71.46294,41.96225799906],[-71.462516,41.96149799906],[-71.462227,41.96057299906],[-71.462229,41.95877299906],[-71.46215,41.95806499906],[-71.461972,41.95771799906],[-71.461781,41.95741499906],[-71.461004,41.95729899906],[-71.460061,41.95712299906],[-71.458906,41.95689999906],[-71.45814,41.95684899906],[-71.457241,41.95656799906],[-71.456509,41.95620099906],[-71.455219,41.95563399906],[-71.45436,41.95497799906],[-71.452315,41.95310499906],[-71.452027,41.95329399906],[-71.452103,41.95336499906],[-71.45231,41.95353899906],[-71.452374,41.95357099906],[-71.452576,41.95375299906],[-71.452699,41.95384199906],[-71.452751,41.95389599906],[-71.452893,41.95406299906],[-71.453016,41.95417399906],[-71.453094,41.95427299906],[-71.453131,41.95433299906],[-71.45316,41.95434799906],[-71.453198,41.95439599906],[-71.453244,41.95444099906],[-71.453253,41.95449499906],[-71.453203,41.95452699906],[-71.453204,41.95455599906],[-71.45325,41.95459999906],[-71.453367,41.95467599906],[-71.453476,41.95476699906],[-71.453545,41.95481799906],[-71.453658,41.95493299906],[-71.453758,41.95501499906],[-71.453802,41.95505899906],[-71.453891,41.95519499906],[-71.453942,41.95526499906],[-71.454048,41.95538599906],[-71.45426,41.95557799906],[-71.454365,41.95566499906],[-71.454474,41.95574199906],[-71.45478,41.95594099906],[-71.455034,41.95605799906],[-71.45525,41.95614699906],[-71.455331,41.95617499906],[-71.455422,41.95619999906],[-71.455516,41.95622099906],[-71.455596,41.95624899906],[-71.455641,41.95629499906],[-71.455676,41.95635399906],[-71.455617,41.95639199906],[-71.455513,41.95640799906],[-71.455343,41.95641199906],[-71.455314,41.95642699906],[-71.455329,41.95644799906],[-71.45549,41.95650299906],[-71.455673,41.95657199906],[-71.455882,41.95664499906],[-71.456032,41.95668999906],[-71.456359,41.95677199906],[-71.456434,41.95679599906],[-71.456502,41.95682499906],[-71.456792,41.95693099906],[-71.456873,41.95695599906],[-71.457044,41.95699899906],[-71.457213,41.95705499906],[-71.457384,41.95710499906],[-71.45763,41.95715699906],[-71.457876,41.95723399906],[-71.458053,41.95727499906],[-71.458125,41.95728499906],[-71.458199,41.95728899906],[-71.458453,41.95732499906],[-71.458797,41.95737999906],[-71.459082,41.95741999906],[-71.459545,41.95749399906],[-71.459632,41.95749499906],[-71.459702,41.95746299906],[-71.459765,41.95740099906],[-71.459744,41.95738999906],[-71.459602,41.95733699906],[-71.459515,41.95731499906],[-71.459223,41.95726699906],[-71.459042,41.95724399906],[-71.458946,41.95722799906],[-71.458772,41.95718999906],[-71.458617,41.95714099906],[-71.45816,41.95703499906],[-71.457652,41.95695899906],[-71.457285,41.95687699906],[-71.45687,41.95673499906],[-71.45673,41.95668299906],[-71.456597,41.95662099906],[-71.456518,41.95656599906],[-71.456473,41.95650899906],[-71.456533,41.95650299906],[-71.456606,41.95651699906],[-71.456753,41.95657899906],[-71.457058,41.95668599906],[-71.457353,41.95676199906],[-71.457621,41.95683999906],[-71.457723,41.95686499906],[-71.457873,41.95688999906],[-71.458221,41.95696699906],[-71.45847,41.95700799906],[-71.458631,41.95704199906],[-71.45878,41.95709099906],[-71.458862,41.95710799906],[-71.459034,41.95713599906],[-71.459384,41.95717899906],[-71.459537,41.95720599906],[-71.459861,41.95725399906],[-71.460633,41.95732699906],[-71.460931,41.95736399906],[-71.461032,41.95738299906],[-71.4611,41.95740099906],[-71.461442,41.95751199906],[-71.461515,41.95755899906],[-71.46158,41.95761599906],[-71.461755,41.95779699906],[-71.461803,41.95785899906],[-71.46184,41.95792299906],[-71.461948,41.95825199906],[-71.461963,41.95832299906],[-71.461971,41.95840299906],[-71.461995,41.95854299906],[-71.461999,41.95861799906],[-71.462032,41.95874899906],[-71.462055,41.95921199906],[-71.462117,41.95986899906],[-71.462131,41.96022999906],[-71.462192,41.96069899906],[-71.462215,41.96083399906],[-71.462241,41.96120399906],[-71.462295,41.96139699906],[-71.46232,41.96153099906],[-71.462397,41.96167099906],[-71.46244,41.96177699906],[-71.462501,41.96187999906],[-71.462548,41.96198799906],[-71.462578,41.96203899906],[-71.462628,41.96210199906],[-71.462669,41.96216299906],[-71.462723,41.96222499906],[-71.462784,41.96228599906],[-71.462764,41.96232599906],[-71.46272,41.96237099906],[-71.462682,41.96242099906],[-71.462656,41.96247199906],[-71.462613,41.96252299906],[-71.46244,41.96268099906],[-71.46241,41.96274399906],[-71.462407,41.96286499906],[-71.462415,41.96299199906],[-71.462431,41.96305199906],[-71.462439,41.96312099906],[-71.462442,41.96324299906],[-71.462427,41.96331999906],[-71.462395,41.96339499906],[-71.462329,41.96349899906],[-71.462287,41.96354899906],[-71.462184,41.96364499906],[-71.462164,41.96365699906],[-71.462095,41.96363299906],[-71.462034,41.96358299906],[-71.46199,41.96352699906],[-71.461932,41.96347399906],[-71.461859,41.96336999906],[-71.461779,41.96335099906],[-71.461634,41.96332899906],[-71.461555,41.96332499906],[-71.461471,41.96330999906],[-71.461379,41.96330399906],[-71.461129,41.96331199906],[-71.46098,41.96328699906],[-71.460822,41.96323499906],[-71.460743,41.96321799906],[-71.460656,41.96318599906],[-71.460519,41.96316699906],[-71.460493,41.96316299906],[-71.460416,41.96316599906],[-71.460338,41.96315699906],[-71.460123,41.96307599906],[-71.460034,41.96305499906],[-71.45994,41.96304399906],[-71.459642,41.96304699906],[-71.459413,41.96304899906],[-71.459338,41.96307499906],[-71.45926,41.96310999906],[-71.459209,41.96314899906],[-71.459126,41.96324399906],[-71.459067,41.96330299906],[-71.45898,41.96332099906],[-71.458888,41.96332099906],[-71.458725,41.96329699906],[-71.45864,41.96329899906],[-71.45855,41.96332799906],[-71.458472,41.96337199906],[-71.458396,41.96340699906],[-71.458304,41.96342199906],[-71.458227,41.96341599906],[-71.457687,41.96501199906],[-71.457245,41.96544599906],[-71.456421,41.96619399906],[-71.456406,41.96621299906],[-71.455833,41.96674299906],[-71.455482,41.96704499906],[-71.455421,41.96723599906],[-71.455444,41.96736899906],[-71.455536,41.96750999906],[-71.456024,41.96792199906],[-71.456184,41.96804799906],[-71.45652,41.96832999906],[-71.456192,41.96856299906],[-71.456223,41.96858599906],[-71.457397,41.96956999906],[-71.457008,41.96984499906],[-71.456703,41.97004699906],[-71.456177,41.96961199906],[-71.455582,41.96910899906],[-71.45491,41.96964299906],[-71.454216,41.97010399906],[-71.453873,41.97030599906],[-71.453552,41.97053099906],[-71.453133,41.97083299906],[-71.452797,41.97111899906],[-71.452408,41.97143599906],[-71.452538,41.97154199906],[-71.4534,41.97227899906],[-71.454056,41.97284299906],[-71.454391,41.97312499906],[-71.454834,41.97350299906],[-71.455086,41.97371299906],[-71.456009,41.97450599906],[-71.456085,41.97457099906],[-71.456444,41.97487999906],[-71.456863,41.97522399906],[-71.457634,41.97597099906],[-71.457809,41.97613899906],[-71.457886,41.97620799906],[-71.458694,41.97689799906],[-71.458781,41.97686399906],[-71.458878,41.97682999906],[-71.459213,41.97675699906],[-71.459825,41.97665399906],[-71.460279,41.97657699906],[-71.461418,41.97638699906],[-71.461479,41.97637899906],[-71.461541,41.97636699906],[-71.462234,41.97623799906],[-71.462463,41.97620799906],[-71.463135,41.97609299906],[-71.463211,41.97607799906],[-71.46357,41.97602799906],[-71.464561,41.97590299906],[-71.464767,41.97587999906],[-71.46508,41.97579999906],[-71.465393,41.97565499906],[-71.465514,41.97556899906],[-71.465645,41.97547499906],[-71.465942,41.97526599906],[-71.466133,41.97511299906],[-71.466562,41.97477699906],[-71.466675,41.97468899906],[-71.46682,41.97454799906],[-71.467003,41.97424299906],[-71.4673,41.97377799906],[-71.467369,41.97368199906],[-71.467575,41.97335399906],[-71.46766,41.97323799906],[-71.467766,41.97309499906],[-71.467957,41.97285099906],[-71.46814,41.97265999906],[-71.468361,41.97247699906],[-71.468476,41.97240099906],[-71.468559,41.97234699906],[-71.46888,41.97211799906],[-71.469048,41.97200799906],[-71.469315,41.97177499906],[-71.469444,41.97165299906],[-71.469467,41.97162199906],[-71.469498,41.97159599906],[-71.469726,41.97136899906],[-71.469992,41.97110799906]]]}}"}, +{"type": "blockgroup", "typeId": 114033, "areaId": 28889, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.462784,41.96228599906],[-71.462723,41.96222499906],[-71.462669,41.96216299906],[-71.462628,41.96210199906],[-71.462578,41.96203899906],[-71.462548,41.96198799906],[-71.462501,41.96187999906],[-71.46244,41.96177699906],[-71.462397,41.96167099906],[-71.46232,41.96153099906],[-71.462295,41.96139699906],[-71.462241,41.96120399906],[-71.462215,41.96083399906],[-71.462192,41.96069899906],[-71.462131,41.96022999906],[-71.462117,41.95986899906],[-71.462055,41.95921199906],[-71.462032,41.95874899906],[-71.461999,41.95861799906],[-71.461995,41.95854299906],[-71.461971,41.95840299906],[-71.461963,41.95832299906],[-71.461948,41.95825199906],[-71.46184,41.95792299906],[-71.461803,41.95785899906],[-71.461755,41.95779699906],[-71.46158,41.95761599906],[-71.461515,41.95755899906],[-71.461442,41.95751199906],[-71.4611,41.95740099906],[-71.461032,41.95738299906],[-71.460931,41.95736399906],[-71.460633,41.95732699906],[-71.459861,41.95725399906],[-71.459537,41.95720599906],[-71.459384,41.95717899906],[-71.459034,41.95713599906],[-71.458862,41.95710799906],[-71.45878,41.95709099906],[-71.458631,41.95704199906],[-71.45847,41.95700799906],[-71.458221,41.95696699906],[-71.457873,41.95688999906],[-71.457723,41.95686499906],[-71.457621,41.95683999906],[-71.457353,41.95676199906],[-71.457058,41.95668599906],[-71.456753,41.95657899906],[-71.456606,41.95651699906],[-71.456533,41.95650299906],[-71.456473,41.95650899906],[-71.456518,41.95656599906],[-71.456597,41.95662099906],[-71.45673,41.95668299906],[-71.45687,41.95673499906],[-71.457285,41.95687699906],[-71.457652,41.95695899906],[-71.45816,41.95703499906],[-71.458617,41.95714099906],[-71.458772,41.95718999906],[-71.458946,41.95722799906],[-71.459042,41.95724399906],[-71.459223,41.95726699906],[-71.459515,41.95731499906],[-71.459602,41.95733699906],[-71.459744,41.95738999906],[-71.459765,41.95740099906],[-71.459702,41.95746299906],[-71.459632,41.95749499906],[-71.459545,41.95749399906],[-71.459082,41.95741999906],[-71.458797,41.95737999906],[-71.458453,41.95732499906],[-71.458199,41.95728899906],[-71.458125,41.95728499906],[-71.458053,41.95727499906],[-71.457876,41.95723399906],[-71.45763,41.95715699906],[-71.457384,41.95710499906],[-71.457213,41.95705499906],[-71.457044,41.95699899906],[-71.456873,41.95695599906],[-71.456792,41.95693099906],[-71.456502,41.95682499906],[-71.456434,41.95679599906],[-71.456359,41.95677199906],[-71.456032,41.95668999906],[-71.455882,41.95664499906],[-71.455673,41.95657199906],[-71.45549,41.95650299906],[-71.455329,41.95644799906],[-71.455314,41.95642699906],[-71.455343,41.95641199906],[-71.455513,41.95640799906],[-71.455617,41.95639199906],[-71.455676,41.95635399906],[-71.455641,41.95629499906],[-71.455596,41.95624899906],[-71.455516,41.95622099906],[-71.455422,41.95619999906],[-71.455331,41.95617499906],[-71.45525,41.95614699906],[-71.455034,41.95605799906],[-71.45478,41.95594099906],[-71.454474,41.95574199906],[-71.454365,41.95566499906],[-71.45426,41.95557799906],[-71.454048,41.95538599906],[-71.453942,41.95526499906],[-71.453891,41.95519499906],[-71.453802,41.95505899906],[-71.453758,41.95501499906],[-71.453658,41.95493299906],[-71.453545,41.95481799906],[-71.453476,41.95476699906],[-71.453367,41.95467599906],[-71.45325,41.95459999906],[-71.453204,41.95455599906],[-71.453203,41.95452699906],[-71.453253,41.95449499906],[-71.453244,41.95444099906],[-71.453198,41.95439599906],[-71.45316,41.95434799906],[-71.453131,41.95433299906],[-71.453094,41.95427299906],[-71.453016,41.95417399906],[-71.452893,41.95406299906],[-71.452751,41.95389599906],[-71.452699,41.95384199906],[-71.452576,41.95375299906],[-71.452374,41.95357099906],[-71.45231,41.95353899906],[-71.452103,41.95336499906],[-71.452027,41.95329399906],[-71.452315,41.95310499906],[-71.451609,41.95240099906],[-71.451503,41.95218699906],[-71.451402,41.95159899906],[-71.451399,41.95155599906],[-71.451275,41.95030399906],[-71.450987,41.94991299906],[-71.45058,41.94957099906],[-71.449666,41.94917899906],[-71.449329,41.94920499906],[-71.448966,41.94911199906],[-71.44849,41.94893099906],[-71.448141,41.94911099906],[-71.447778,41.94909899906],[-71.447347,41.94910899906],[-71.446521,41.94879199906],[-71.44425,41.94817599906],[-71.443172,41.94777099906],[-71.442885,41.94765599906],[-71.442549,41.94740999906],[-71.442332,41.94709499906],[-71.442095,41.94659599906],[-71.441898,41.94623899906],[-71.441612,41.94590199906],[-71.441042,41.94494499906],[-71.440818,41.94458999906],[-71.440681,41.94445499906],[-71.439703,41.94377599906],[-71.439636,41.94372899906],[-71.439347,41.94357799906],[-71.439278,41.94354199906],[-71.439157,41.94341999906],[-71.438092,41.94262699906],[-71.437272,41.94182599906],[-71.436516,41.94119999906],[-71.435948,41.94062399906],[-71.435362,41.94002899906],[-71.434841,41.93919299906],[-71.434118,41.93837299906],[-71.433982,41.93821899906],[-71.43376,41.93833799906],[-71.433691,41.93836899906],[-71.432971,41.93873099906],[-71.432541,41.93896499906],[-71.432518,41.93897199906],[-71.432304,41.93909499906],[-71.432106,41.93920499906],[-71.431801,41.93937699906],[-71.432167,41.93965499906],[-71.432243,41.93971599906],[-71.432877,41.94016999906],[-71.433167,41.94037599906],[-71.433586,41.94070399906],[-71.433884,41.94097099906],[-71.434158,41.94127999906],[-71.43438,41.94161599906],[-71.434563,41.94198999906],[-71.434608,41.94215399906],[-71.4347,41.94233699906],[-71.434799,41.94251599906],[-71.434952,41.94281799906],[-71.435143,41.94314199906],[-71.435272,41.94331699906],[-71.435371,41.94343599906],[-71.435509,41.94358799906],[-71.435577,41.94366499906],[-71.435806,41.94389299906],[-71.436272,41.94431699906],[-71.436539,41.94456899906],[-71.436737,41.94474799906],[-71.437012,41.94499599906],[-71.437027,41.94501099906],[-71.437218,41.94518299906],[-71.438232,41.94615899906],[-71.438461,41.94639999906],[-71.438728,41.94666699906],[-71.43924,41.94722399906],[-71.439423,41.94746399906],[-71.439461,41.94751699906],[-71.439912,41.94821199906],[-71.440147,41.94857399906],[-71.440269,41.94875699906],[-71.440555,41.94920799906],[-71.440857,41.94968399906],[-71.441147,41.95029099906],[-71.441277,41.95071799906],[-71.441391,41.95120599906],[-71.44146,41.95149199906],[-71.441559,41.95189699906],[-71.441856,41.95304099906],[-71.442032,41.95370099906],[-71.442315,41.95476599906],[-71.442468,41.95534399906],[-71.44249,41.95542499906],[-71.442688,41.95622999906],[-71.442749,41.95653499906],[-71.442787,41.95696599906],[-71.44281,41.95762299906],[-71.442825,41.95774799906],[-71.442833,41.95779799906],[-71.442924,41.95815699906],[-71.443024,41.95842899906],[-71.44313,41.95871699906],[-71.443146,41.95873999906],[-71.443368,41.95934599906],[-71.443604,41.95997599906],[-71.44384,41.96060899906],[-71.444069,41.96123899906],[-71.444237,41.96171199906],[-71.444366,41.96204799906],[-71.44455,41.96255499906],[-71.444595,41.96268099906],[-71.444717,41.96303599906],[-71.444809,41.96332899906],[-71.445007,41.96396299906],[-71.44516,41.96439699906],[-71.445267,41.96466099906],[-71.445602,41.96522099906],[-71.445625,41.96524799906],[-71.44632,41.96635099906],[-71.446419,41.96647999906],[-71.446564,41.96663699906],[-71.44677,41.96682699906],[-71.447372,41.96730799906],[-71.447754,41.96760599906],[-71.447838,41.96767799906],[-71.448425,41.96813999906],[-71.449005,41.96861999906],[-71.449403,41.96894299906],[-71.449669,41.96915799906],[-71.449715,41.96919999906],[-71.450025,41.96945599906],[-71.450942,41.97021699906],[-71.451269,41.97048699906],[-71.452187,41.97124699906],[-71.452248,41.97129799906],[-71.452408,41.97143599906],[-71.452797,41.97111899906],[-71.453133,41.97083299906],[-71.453552,41.97053099906],[-71.453873,41.97030599906],[-71.454216,41.97010399906],[-71.45491,41.96964299906],[-71.455582,41.96910899906],[-71.456177,41.96961199906],[-71.456703,41.97004699906],[-71.457008,41.96984499906],[-71.457397,41.96956999906],[-71.456223,41.96858599906],[-71.456192,41.96856299906],[-71.45652,41.96832999906],[-71.456184,41.96804799906],[-71.456024,41.96792199906],[-71.455536,41.96750999906],[-71.455444,41.96736899906],[-71.455421,41.96723599906],[-71.455482,41.96704499906],[-71.455833,41.96674299906],[-71.456406,41.96621299906],[-71.456421,41.96619399906],[-71.457245,41.96544599906],[-71.457687,41.96501199906],[-71.458227,41.96341599906],[-71.458304,41.96342199906],[-71.458396,41.96340699906],[-71.458472,41.96337199906],[-71.45855,41.96332799906],[-71.45864,41.96329899906],[-71.458725,41.96329699906],[-71.458888,41.96332099906],[-71.45898,41.96332099906],[-71.459067,41.96330299906],[-71.459126,41.96324399906],[-71.459209,41.96314899906],[-71.45926,41.96310999906],[-71.459338,41.96307499906],[-71.459413,41.96304899906],[-71.459642,41.96304699906],[-71.45994,41.96304399906],[-71.460034,41.96305499906],[-71.460123,41.96307599906],[-71.460338,41.96315699906],[-71.460416,41.96316599906],[-71.460493,41.96316299906],[-71.460519,41.96316699906],[-71.460656,41.96318599906],[-71.460743,41.96321799906],[-71.460822,41.96323499906],[-71.46098,41.96328699906],[-71.461129,41.96331199906],[-71.461379,41.96330399906],[-71.461471,41.96330999906],[-71.461555,41.96332499906],[-71.461634,41.96332899906],[-71.461779,41.96335099906],[-71.461859,41.96336999906],[-71.461932,41.96347399906],[-71.46199,41.96352699906],[-71.462034,41.96358299906],[-71.462095,41.96363299906],[-71.462164,41.96365699906],[-71.462184,41.96364499906],[-71.462287,41.96354899906],[-71.462329,41.96349899906],[-71.462395,41.96339499906],[-71.462427,41.96331999906],[-71.462442,41.96324299906],[-71.462439,41.96312099906],[-71.462431,41.96305199906],[-71.462415,41.96299199906],[-71.462407,41.96286499906],[-71.46241,41.96274399906],[-71.46244,41.96268099906],[-71.462613,41.96252299906],[-71.462656,41.96247199906],[-71.462682,41.96242099906],[-71.46272,41.96237099906],[-71.462764,41.96232599906],[-71.462784,41.96228599906]]]}}"}, +{"type": "blockgroup", "typeId": 114034, "areaId": 28890, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.475023,41.98104199906],[-71.474995,41.98100099906],[-71.474442,41.98052199906],[-71.473915,41.97999199906],[-71.473548,41.97962099906],[-71.473396,41.97946499906],[-71.473122,41.97917599906],[-71.472862,41.97892399906],[-71.472336,41.97838599906],[-71.472158,41.97820499906],[-71.472046,41.97809199906],[-71.472,41.97804299906],[-71.471809,41.97787099906],[-71.471642,41.97771499906],[-71.470947,41.97713499906],[-71.470684,41.97689599906],[-71.470548,41.97677299906],[-71.470291,41.97653999906],[-71.469849,41.97613499906],[-71.469791,41.97608599906],[-71.468927,41.97636899906],[-71.468224,41.97543899906],[-71.467407,41.97501599906],[-71.467219,41.97514699906],[-71.466626,41.97483199906],[-71.466562,41.97477699906],[-71.466133,41.97511299906],[-71.465942,41.97526599906],[-71.465645,41.97547499906],[-71.465514,41.97556899906],[-71.465393,41.97565499906],[-71.46508,41.97579999906],[-71.464767,41.97587999906],[-71.464561,41.97590299906],[-71.46357,41.97602799906],[-71.463211,41.97607799906],[-71.463135,41.97609299906],[-71.462463,41.97620799906],[-71.462234,41.97623799906],[-71.461541,41.97636699906],[-71.461479,41.97637899906],[-71.461418,41.97638699906],[-71.460279,41.97657699906],[-71.459825,41.97665399906],[-71.459213,41.97675699906],[-71.458878,41.97682999906],[-71.458781,41.97686399906],[-71.458694,41.97689799906],[-71.459251,41.97738999906],[-71.459679,41.97774099906],[-71.459862,41.97790899906],[-71.460236,41.97825599906],[-71.460579,41.97851599906],[-71.460899,41.97870999906],[-71.460978,41.97874699906],[-71.461266,41.97888199906],[-71.461555,41.97898499906],[-71.461739,41.97903099906],[-71.461922,41.97907599906],[-71.462296,41.97917899906],[-71.462563,41.97927099906],[-71.462959,41.97943099906],[-71.463516,41.97970199906],[-71.463722,41.97980099906],[-71.464096,41.97998799906],[-71.464329,41.98008499906],[-71.464378,41.98010599906],[-71.464935,41.98031999906],[-71.465187,41.98040799906],[-71.466125,41.98073999906],[-71.466232,41.98078199906],[-71.466858,41.98099499906],[-71.467178,41.98110999906],[-71.467545,41.98124299906],[-71.468178,41.98146399906],[-71.46875,41.98166999906],[-71.468987,41.98175399906],[-71.469521,41.98194099906],[-71.469955,41.98209799906],[-71.470139,41.98216999906],[-71.470375,41.98228099906],[-71.470421,41.98229999906],[-71.470802,41.98249099906],[-71.47113,41.98265099906],[-71.471252,41.98270799906],[-71.471596,41.98288299906],[-71.472153,41.98257799906],[-71.472733,41.98227699906],[-71.473373,41.98191899906],[-71.47345,41.98187599906],[-71.474083,41.98153699906],[-71.474841,41.98113799906],[-71.475023,41.98104199906]]]}}"}, +{"type": "blockgroup", "typeId": 114035, "areaId": 28891, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.487364,41.97908499906],[-71.487205,41.97879799906],[-71.486491,41.97834499906],[-71.486156,41.97822199906],[-71.485283,41.97799699906],[-71.485146,41.97796599906],[-71.483892,41.97809699906],[-71.483499,41.97813599906],[-71.483051,41.97814399906],[-71.482797,41.97814899906],[-71.482435,41.97808699906],[-71.481785,41.97782499906],[-71.47947,41.97741199906],[-71.47877,41.97717899906],[-71.478657,41.97714099906],[-71.477866,41.97612999906],[-71.476176,41.97464499906],[-71.474141,41.97262399906],[-71.473264,41.97223799906],[-71.471787,41.97202199906],[-71.471043,41.97140599906],[-71.47031,41.97114399906],[-71.469992,41.97110799906],[-71.469726,41.97136899906],[-71.469498,41.97159599906],[-71.469467,41.97162199906],[-71.469444,41.97165299906],[-71.469315,41.97177499906],[-71.469048,41.97200799906],[-71.46888,41.97211799906],[-71.468559,41.97234699906],[-71.468476,41.97240099906],[-71.468361,41.97247699906],[-71.46814,41.97265999906],[-71.467957,41.97285099906],[-71.467766,41.97309499906],[-71.46766,41.97323799906],[-71.467575,41.97335399906],[-71.467369,41.97368199906],[-71.4673,41.97377799906],[-71.467003,41.97424299906],[-71.46682,41.97454799906],[-71.466675,41.97468899906],[-71.466562,41.97477699906],[-71.466626,41.97483199906],[-71.467219,41.97514699906],[-71.467407,41.97501599906],[-71.468224,41.97543899906],[-71.468927,41.97636899906],[-71.469791,41.97608599906],[-71.469849,41.97613499906],[-71.470291,41.97653999906],[-71.470548,41.97677299906],[-71.470684,41.97689599906],[-71.470947,41.97713499906],[-71.471642,41.97771499906],[-71.471809,41.97787099906],[-71.472,41.97804299906],[-71.472046,41.97809199906],[-71.472158,41.97820499906],[-71.472336,41.97838599906],[-71.472862,41.97892399906],[-71.473122,41.97917599906],[-71.473396,41.97946499906],[-71.473548,41.97962099906],[-71.473915,41.97999199906],[-71.474442,41.98052199906],[-71.474995,41.98100099906],[-71.475023,41.98104199906],[-71.474841,41.98113799906],[-71.474083,41.98153699906],[-71.47345,41.98187599906],[-71.473373,41.98191899906],[-71.472733,41.98227699906],[-71.472153,41.98257799906],[-71.471596,41.98288299906],[-71.471863,41.98299799906],[-71.472641,41.98331099906],[-71.473,41.98343999906],[-71.473495,41.98360799906],[-71.473534,41.98362399906],[-71.473801,41.98371499906],[-71.474007,41.98378799906],[-71.474808,41.98403499906],[-71.475258,41.98416099906],[-71.475891,41.98433299906],[-71.476349,41.98446699906],[-71.476389,41.98447499906],[-71.476616,41.98451999906],[-71.477013,41.98459199906],[-71.477058,41.98460399906],[-71.477448,41.98469199906],[-71.477516,41.98471499906],[-71.477806,41.98481799906],[-71.478027,41.98491299906],[-71.478287,41.98503099906],[-71.478462,41.98511499906],[-71.478533,41.98515999906],[-71.478783,41.98531699906],[-71.479202,41.98556899906],[-71.479411,41.98568599906],[-71.479454,41.98570999906],[-71.47958,41.98579899906],[-71.479851,41.98599199906],[-71.480095,41.98619499906],[-71.480186,41.98627899906],[-71.480301,41.98635899906],[-71.480327,41.98637799906],[-71.480427,41.98627499906],[-71.480454,41.98624799906],[-71.480865,41.98582099906],[-71.481022,41.98565799906],[-71.481063,41.98561699906],[-71.481223,41.98545499906],[-71.481279,41.98539399906],[-71.482104,41.98453999906],[-71.482141,41.98449999906],[-71.482247,41.98438899906],[-71.482556,41.98407199906],[-71.482857,41.98375799906],[-71.483126,41.98347799906],[-71.483158,41.98344499906],[-71.486799,41.97967299906],[-71.486963,41.97949899906],[-71.4872,41.97925599906],[-71.487243,41.97921099906],[-71.487364,41.97908499906]]]}}"}, +{"type": "blockgroup", "typeId": 114041, "areaId": 28892, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.394094,41.97402299906],[-71.394088,41.97396499906],[-71.394059,41.97389399906],[-71.39402,41.97382399906],[-71.39399,41.97375599906],[-71.393919,41.97370699906],[-71.393848,41.97368799906],[-71.393757,41.97368099906],[-71.393702,41.97373199906],[-71.393664,41.97384499906],[-71.393621,41.97388099906],[-71.393448,41.97392599906],[-71.393363,41.97392399906],[-71.393301,41.97385999906],[-71.393267,41.97380499906],[-71.393191,41.97376499906],[-71.393086,41.97375399906],[-71.392855,41.97375699906],[-71.392759,41.97373299906],[-71.392734,41.97368699906],[-71.392759,41.97363599906],[-71.392821,41.97359299906],[-71.392996,41.97352799906],[-71.393058,41.97349599906],[-71.393098,41.97343599906],[-71.393062,41.97338799906],[-71.392936,41.97330099906],[-71.392813,41.97322199906],[-71.392765,41.97317299906],[-71.392711,41.97312699906],[-71.392673,41.97307599906],[-71.392638,41.97301199906],[-71.392594,41.97295399906],[-71.39252,41.97292099906],[-71.392443,41.97290899906],[-71.39236,41.97290399906],[-71.392197,41.97290199906],[-71.392123,41.97289099906],[-71.392056,41.97286899906],[-71.391975,41.97284999906],[-71.391902,41.97284099906],[-71.391831,41.97280099906],[-71.391761,41.97277499906],[-71.391669,41.97271999906],[-71.391625,41.97267699906],[-71.391589,41.97262999906],[-71.391567,41.97259199906],[-71.391555,41.97257199906],[-71.391536,41.97251799906],[-71.391528,41.97245099906],[-71.391512,41.97239499906],[-71.391471,41.97234599906],[-71.391417,41.97226899906],[-71.391371,41.97222699906],[-71.391336,41.97216599906],[-71.391323,41.97213099906],[-71.391314,41.97205199906],[-71.391314,41.97200899906],[-71.391294,41.97192499906],[-71.391172,41.97164399906],[-71.391148,41.97155699906],[-71.391125,41.97142899906],[-71.391083,41.97133899906],[-71.390974,41.97119399906],[-71.390935,41.97111999906],[-71.390908,41.97099199906],[-71.390891,41.97085399906],[-71.390889,41.97059099906],[-71.390876,41.97048199906],[-71.390873,41.97021699906],[-71.390879,41.97016199906],[-71.390889,41.97007799906],[-71.390923,41.96997099906],[-71.390922,41.96990199906],[-71.390877,41.96985799906],[-71.390742,41.96977799906],[-71.390705,41.96972599906],[-71.390689,41.96967899906],[-71.390677,41.96957999906],[-71.390596,41.96940799906],[-71.390544,41.96930099906],[-71.390538,41.96891099906],[-71.389277,41.96833799906],[-71.388804,41.96784099906],[-71.388564,41.96755899906],[-71.388169,41.96710999906],[-71.387323,41.96519099906],[-71.387187,41.96385899906],[-71.387227,41.96374399906],[-71.387235,41.96317999906],[-71.387262,41.96298099906],[-71.387309,41.96280699906],[-71.387324,41.96271199906],[-71.387323,41.96262799906],[-71.387294,41.96253799906],[-71.387224,41.96231899906],[-71.387201,41.96223799906],[-71.387195,41.96211099906],[-71.387194,41.96197599906],[-71.387202,41.96191799906],[-71.387212,41.96188499906],[-71.387216,41.96182499906],[-71.387258,41.96167299906],[-71.387282,41.96162799906],[-71.387321,41.96158399906],[-71.387373,41.96154199906],[-71.387437,41.96150399906],[-71.387511,41.96147199906],[-71.387589,41.96145299906],[-71.387658,41.96145999906],[-71.387739,41.96128499906],[-71.387649,41.96116199906],[-71.387342,41.96064099906],[-71.387502,41.96044899906],[-71.387517,41.96034499906],[-71.387666,41.95988599906],[-71.387671,41.95978899906],[-71.387743,41.95909299906],[-71.387785,41.95885499906],[-71.387784,41.95876399906],[-71.387855,41.95859799906],[-71.388067,41.95768099906],[-71.388143,41.95731899906],[-71.388149,41.95725599906],[-71.38823,41.95701999906],[-71.388248,41.95695199906],[-71.388243,41.95679999906],[-71.388204,41.95668299906],[-71.388036,41.95655699906],[-71.388033,41.95643599906],[-71.388018,41.95638199906],[-71.387986,41.95633399906],[-71.387905,41.95624599906],[-71.387839,41.95614399906],[-71.387787,41.95603499906],[-71.387741,41.95588799906],[-71.387684,41.95578099906],[-71.387628,41.95570699906],[-71.387555,41.95569399906],[-71.38747,41.95569399906],[-71.387418,41.95568799906],[-71.387427,41.95549999906],[-71.387432,41.95538399906],[-71.38733,41.95517499906],[-71.387245,41.95508299906],[-71.387168,41.95501799906],[-71.387029,41.95491499906],[-71.386889,41.95478599906],[-71.386842,41.95473699906],[-71.38675,41.95463499906],[-71.386654,41.95454799906],[-71.386303,41.95430199906],[-71.386196,41.95420699906],[-71.386087,41.95410099906],[-71.386026,41.95405399906],[-71.385959,41.95401599906],[-71.385887,41.95398299906],[-71.385811,41.95395799906],[-71.385735,41.95394099906],[-71.385662,41.95393899906],[-71.385506,41.95395799906],[-71.385427,41.95396299906],[-71.385353,41.95395999906],[-71.385286,41.95394999906],[-71.385229,41.95393599906],[-71.385179,41.95391199906],[-71.385141,41.95387499906],[-71.385125,41.95382699906],[-71.385125,41.95377999906],[-71.385113,41.95374499906],[-71.385067,41.95372499906],[-71.384835,41.95366699906],[-71.384564,41.95363499906],[-71.384217,41.95351599906],[-71.38411,41.95347099906],[-71.384071,41.95344899906],[-71.384036,41.95341699906],[-71.384018,41.95338799906],[-71.383807,41.95319599906],[-71.383488,41.95290699906],[-71.382973,41.95290399906],[-71.382668,41.95288499906],[-71.382217,41.95288099906],[-71.381912,41.95286599906],[-71.3815,41.95286599906],[-71.381398,41.95286199906],[-71.381398,41.95488299906],[-71.381395,41.95570399906],[-71.381394,41.95642899906],[-71.381393,41.95741899906],[-71.381388,41.96295599906],[-71.381388,41.96299399906],[-71.381383,41.96675199906],[-71.381383,41.96697699906],[-71.381378,41.97139899906],[-71.381378,41.97264999906],[-71.381377,41.97268799906],[-71.381373,41.97613699906],[-71.381373,41.97638999906],[-71.381372,41.97719599906],[-71.381372,41.97728299906],[-71.381369,41.98023099906],[-71.381361,41.98267299906],[-71.381365,41.98277799906],[-71.381379,41.98277199906],[-71.381539,41.98267099906],[-71.3817,41.98258299906],[-71.381898,41.98243999906],[-71.382089,41.98227399906],[-71.382133,41.98221999906],[-71.382179,41.98215499906],[-71.38221,41.98209699906],[-71.382256,41.98204399906],[-71.382347,41.98190499906],[-71.382407,41.98183899906],[-71.382476,41.98178599906],[-71.382614,41.98171999906],[-71.382767,41.98166199906],[-71.382996,41.98158399906],[-71.383133,41.98152599906],[-71.383278,41.98145299906],[-71.38372,41.98123899906],[-71.383797,41.98119699906],[-71.383881,41.98115899906],[-71.384018,41.98107099906],[-71.384163,41.98096799906],[-71.384247,41.98092999906],[-71.384468,41.98078899906],[-71.384529,41.98074299906],[-71.384735,41.98062099906],[-71.384949,41.98047999906],[-71.385124,41.98038899906],[-71.385201,41.98034299906],[-71.385521,41.98018999906],[-71.385704,41.98013299906],[-71.385796,41.98011799906],[-71.385979,41.98006799906],[-71.386063,41.98004899906],[-71.386406,41.97994599906],[-71.386482,41.97991599906],[-71.386688,41.97984699906],[-71.386833,41.97979699906],[-71.386917,41.97975499906],[-71.387001,41.97972499906],[-71.387085,41.97968699906],[-71.387375,41.97954199906],[-71.387856,41.97931299906],[-71.387939,41.97926299906],[-71.388031,41.97921799906],[-71.388123,41.97917899906],[-71.388535,41.97896999906],[-71.388817,41.97885499906],[-71.388985,41.97877899906],[-71.389061,41.97873699906],[-71.38916,41.97870299906],[-71.389412,41.97857999906],[-71.389557,41.97849999906],[-71.389969,41.97833599906],[-71.390289,41.97818399906],[-71.390465,41.97811099906],[-71.390846,41.97792399906],[-71.390991,41.97784399906],[-71.391083,41.97780999906],[-71.391151,41.97777599906],[-71.391228,41.97774499906],[-71.391251,41.97772599906],[-71.391411,41.97786299906],[-71.39196,41.97831699906],[-71.392494,41.97865699906],[-71.392532,41.97867999906],[-71.393066,41.97895099906],[-71.393433,41.97911099906],[-71.393603,41.97917299906],[-71.393638,41.97912499906],[-71.393742,41.97900499906],[-71.393779,41.97892699906],[-71.393798,41.97886299906],[-71.393805,41.97853799906],[-71.393829,41.97833999906],[-71.393854,41.97822299906],[-71.393879,41.97798299906],[-71.393818,41.97794299906],[-71.393767,41.97789999906],[-71.393723,41.97785399906],[-71.3936,41.97767799906],[-71.393489,41.97748199906],[-71.393456,41.97741599906],[-71.393406,41.97729099906],[-71.393389,41.97722499906],[-71.393381,41.97715399906],[-71.393374,41.97700699906],[-71.393343,41.97680599906],[-71.393342,41.97667899906],[-71.393382,41.97662999906],[-71.393471,41.97658099906],[-71.393541,41.97653499906],[-71.3936,41.97647999906],[-71.393637,41.97642499906],[-71.393659,41.97636699906],[-71.393667,41.97630599906],[-71.393665,41.97610099906],[-71.393686,41.97603099906],[-71.393749,41.97597799906],[-71.393888,41.97588499906],[-71.393944,41.97583199906],[-71.393989,41.97577199906],[-71.394022,41.97571099906],[-71.39404,41.97564699906],[-71.394033,41.97558299906],[-71.394008,41.97551999906],[-71.393965,41.97546699906],[-71.393912,41.97541499906],[-71.393845,41.97537699906],[-71.393759,41.97535199906],[-71.393594,41.97531999906],[-71.393531,41.97528799906],[-71.393494,41.97521299906],[-71.393499,41.97514699906],[-71.393525,41.97508099906],[-71.39357,41.97502199906],[-71.393688,41.97491199906],[-71.393736,41.97485699906],[-71.393775,41.97480199906],[-71.393912,41.97465699906],[-71.393992,41.97455399906],[-71.394059,41.97442799906],[-71.39408,41.97436799906],[-71.394092,41.97430699906],[-71.394094,41.97402299906]]]}}"}, +{"type": "blockgroup", "typeId": 114042, "areaId": 28893, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.405045,41.98162099906],[-71.405014,41.98153299906],[-71.404686,41.98109099906],[-71.404533,41.98079699906],[-71.404404,41.98049199906],[-71.404259,41.98024399906],[-71.404076,41.98008699906],[-71.403954,41.98000099906],[-71.40374,41.97985099906],[-71.402718,41.97917899906],[-71.402161,41.97879799906],[-71.401718,41.97842799906],[-71.401337,41.97807699906],[-71.401077,41.97782099906],[-71.400841,41.97751199906],[-71.400604,41.97718399906],[-71.400208,41.97667699906],[-71.400169,41.97660799906],[-71.399864,41.97611599906],[-71.399857,41.97609699906],[-71.39978,41.97596699906],[-71.399933,41.97559399906],[-71.400108,41.97520399906],[-71.400276,41.97485699906],[-71.400383,41.97460599906],[-71.400421,41.97447599906],[-71.400436,41.97436099906],[-71.400383,41.97416699906],[-71.400238,41.97384299906],[-71.400078,41.97345399906],[-71.399811,41.97277499906],[-71.399788,41.97255299906],[-71.399796,41.97244999906],[-71.399809,41.97241999906],[-71.39994,41.97211099906],[-71.400017,41.97184799906],[-71.400154,41.97133599906],[-71.400215,41.97107699906],[-71.400497,41.97025299906],[-71.400581,41.97014999906],[-71.400772,41.96997099906],[-71.40081,41.96987899906],[-71.400841,41.96978799906],[-71.400856,41.96941399906],[-71.400848,41.96910099906],[-71.400826,41.96868099906],[-71.400826,41.96826199906],[-71.400818,41.96789899906],[-71.400864,41.96771599906],[-71.400978,41.96757899906],[-71.401146,41.96741899906],[-71.401276,41.96724299906],[-71.401428,41.96696099906],[-71.401466,41.96688099906],[-71.401558,41.96667099906],[-71.401642,41.96651499906],[-71.40181,41.96640799906],[-71.401749,41.96631599906],[-71.401634,41.96604499906],[-71.401512,41.96559899906],[-71.401443,41.96519899906],[-71.401411,41.96491699906],[-71.401398,41.96480199906],[-71.401398,41.96425999906],[-71.401428,41.96385999906],[-71.401497,41.96293299906],[-71.401505,41.96229599906],[-71.401512,41.96215099906],[-71.401527,41.96179599906],[-71.401512,41.96149399906],[-71.401512,41.96130399906],[-71.401497,41.96116299906],[-71.401489,41.96091499906],[-71.401459,41.96072299906],[-71.401428,41.96052899906],[-71.401413,41.96040699906],[-71.40126,41.95966699906],[-71.401039,41.95877799906],[-71.400917,41.95830899906],[-71.400833,41.95788199906],[-71.400803,41.95764899906],[-71.400787,41.95746599906],[-71.400773,41.95712599906],[-71.400772,41.95709599906],[-71.400772,41.95676399906],[-71.400787,41.95662699906],[-71.400856,41.95624199906],[-71.400948,41.95590199906],[-71.40097,41.95579499906],[-71.401039,41.95560099906],[-71.401062,41.95551699906],[-71.40123,41.95509299906],[-71.401505,41.95444099906],[-71.401802,41.95371999906],[-71.401988,41.95320399906],[-71.402023,41.95310999906],[-71.402115,41.95278199906],[-71.402145,41.95265999906],[-71.402161,41.95255999906],[-71.402222,41.95210299906],[-71.402267,41.95187799906],[-71.402321,41.95161099906],[-71.402351,41.95149199906],[-71.402383,41.95133199906],[-71.402451,41.95099999906],[-71.402542,41.95063399906],[-71.4026,41.95038399906],[-71.401062,41.95043199906],[-71.399292,41.95055399906],[-71.397491,41.95073699906],[-71.396378,41.95089699906],[-71.395712,41.95098899906],[-71.395546,41.95101199906],[-71.39344,41.95141199906],[-71.392342,41.95163799906],[-71.391815,41.95174799906],[-71.391449,41.95181699906],[-71.389862,41.95214799906],[-71.389737,41.95217399906],[-71.388618,41.95241499906],[-71.388382,41.95246099906],[-71.388023,41.95251799906],[-71.387657,41.95258299906],[-71.387444,41.95261799906],[-71.387405,41.95262099906],[-71.387154,41.95265999906],[-71.386635,41.95272399906],[-71.386375,41.95275099906],[-71.386066,41.95277799906],[-71.38562,41.95281599906],[-71.385386,41.95282599906],[-71.385353,41.95282699906],[-71.385109,41.95284699906],[-71.384026,41.95289999906],[-71.383759,41.95290799906],[-71.383488,41.95290699906],[-71.383807,41.95319599906],[-71.384018,41.95338799906],[-71.384036,41.95341699906],[-71.384071,41.95344899906],[-71.38411,41.95347099906],[-71.384217,41.95351599906],[-71.384564,41.95363499906],[-71.384835,41.95366699906],[-71.385067,41.95372499906],[-71.385113,41.95374499906],[-71.385125,41.95377999906],[-71.385125,41.95382699906],[-71.385141,41.95387499906],[-71.385179,41.95391199906],[-71.385229,41.95393599906],[-71.385286,41.95394999906],[-71.385353,41.95395999906],[-71.385427,41.95396299906],[-71.385506,41.95395799906],[-71.385662,41.95393899906],[-71.385735,41.95394099906],[-71.385811,41.95395799906],[-71.385887,41.95398299906],[-71.385959,41.95401599906],[-71.386026,41.95405399906],[-71.386087,41.95410099906],[-71.386196,41.95420699906],[-71.386303,41.95430199906],[-71.386654,41.95454799906],[-71.38675,41.95463499906],[-71.386842,41.95473699906],[-71.386889,41.95478599906],[-71.387029,41.95491499906],[-71.387168,41.95501799906],[-71.387245,41.95508299906],[-71.38733,41.95517499906],[-71.387432,41.95538399906],[-71.387427,41.95549999906],[-71.387418,41.95568799906],[-71.38747,41.95569399906],[-71.387555,41.95569399906],[-71.387628,41.95570699906],[-71.387684,41.95578099906],[-71.387741,41.95588799906],[-71.387787,41.95603499906],[-71.387839,41.95614399906],[-71.387905,41.95624599906],[-71.387986,41.95633399906],[-71.388018,41.95638199906],[-71.388033,41.95643599906],[-71.388036,41.95655699906],[-71.388204,41.95668299906],[-71.388243,41.95679999906],[-71.388248,41.95695199906],[-71.38823,41.95701999906],[-71.388149,41.95725599906],[-71.388143,41.95731899906],[-71.388067,41.95768099906],[-71.387855,41.95859799906],[-71.387784,41.95876399906],[-71.387785,41.95885499906],[-71.387743,41.95909299906],[-71.387671,41.95978899906],[-71.387666,41.95988599906],[-71.387517,41.96034499906],[-71.387502,41.96044899906],[-71.387342,41.96064099906],[-71.387649,41.96116199906],[-71.387739,41.96128499906],[-71.387658,41.96145999906],[-71.387589,41.96145299906],[-71.387511,41.96147199906],[-71.387437,41.96150399906],[-71.387373,41.96154199906],[-71.387321,41.96158399906],[-71.387282,41.96162799906],[-71.387258,41.96167299906],[-71.387216,41.96182499906],[-71.387212,41.96188499906],[-71.387202,41.96191799906],[-71.387194,41.96197599906],[-71.387195,41.96211099906],[-71.387201,41.96223799906],[-71.387224,41.96231899906],[-71.387294,41.96253799906],[-71.387323,41.96262799906],[-71.387324,41.96271199906],[-71.387309,41.96280699906],[-71.387262,41.96298099906],[-71.387235,41.96317999906],[-71.387227,41.96374399906],[-71.387187,41.96385899906],[-71.387323,41.96519099906],[-71.388169,41.96710999906],[-71.388564,41.96755899906],[-71.388804,41.96784099906],[-71.389277,41.96833799906],[-71.390538,41.96891099906],[-71.390544,41.96930099906],[-71.390596,41.96940799906],[-71.390677,41.96957999906],[-71.390689,41.96967899906],[-71.390705,41.96972599906],[-71.390742,41.96977799906],[-71.390877,41.96985799906],[-71.390922,41.96990199906],[-71.390923,41.96997099906],[-71.390889,41.97007799906],[-71.390879,41.97016199906],[-71.390873,41.97021699906],[-71.390876,41.97048199906],[-71.390889,41.97059099906],[-71.390891,41.97085399906],[-71.390908,41.97099199906],[-71.390935,41.97111999906],[-71.390974,41.97119399906],[-71.391083,41.97133899906],[-71.391125,41.97142899906],[-71.391148,41.97155699906],[-71.391172,41.97164399906],[-71.391294,41.97192499906],[-71.391314,41.97200899906],[-71.391314,41.97205199906],[-71.391323,41.97213099906],[-71.391336,41.97216599906],[-71.391371,41.97222699906],[-71.391417,41.97226899906],[-71.391471,41.97234599906],[-71.391512,41.97239499906],[-71.391528,41.97245099906],[-71.391536,41.97251799906],[-71.391555,41.97257199906],[-71.391567,41.97259199906],[-71.391589,41.97262999906],[-71.391625,41.97267699906],[-71.391669,41.97271999906],[-71.391761,41.97277499906],[-71.391831,41.97280099906],[-71.391902,41.97284099906],[-71.391975,41.97284999906],[-71.392056,41.97286899906],[-71.392123,41.97289099906],[-71.392197,41.97290199906],[-71.39236,41.97290399906],[-71.392443,41.97290899906],[-71.39252,41.97292099906],[-71.392594,41.97295399906],[-71.392638,41.97301199906],[-71.392673,41.97307599906],[-71.392711,41.97312699906],[-71.392765,41.97317299906],[-71.392813,41.97322199906],[-71.392936,41.97330099906],[-71.393062,41.97338799906],[-71.393098,41.97343599906],[-71.393058,41.97349599906],[-71.392996,41.97352799906],[-71.392821,41.97359299906],[-71.392759,41.97363599906],[-71.392734,41.97368699906],[-71.392759,41.97373299906],[-71.392855,41.97375699906],[-71.393086,41.97375399906],[-71.393191,41.97376499906],[-71.393267,41.97380499906],[-71.393301,41.97385999906],[-71.393363,41.97392399906],[-71.393448,41.97392599906],[-71.393621,41.97388099906],[-71.393664,41.97384499906],[-71.393702,41.97373199906],[-71.393757,41.97368099906],[-71.393848,41.97368799906],[-71.393919,41.97370699906],[-71.39399,41.97375599906],[-71.39402,41.97382399906],[-71.394059,41.97389399906],[-71.394088,41.97396499906],[-71.394094,41.97402299906],[-71.394092,41.97430699906],[-71.39408,41.97436799906],[-71.394059,41.97442799906],[-71.393992,41.97455399906],[-71.393912,41.97465699906],[-71.393775,41.97480199906],[-71.393736,41.97485699906],[-71.393688,41.97491199906],[-71.39357,41.97502199906],[-71.393525,41.97508099906],[-71.393499,41.97514699906],[-71.393494,41.97521299906],[-71.393531,41.97528799906],[-71.393594,41.97531999906],[-71.393759,41.97535199906],[-71.393845,41.97537699906],[-71.393912,41.97541499906],[-71.393965,41.97546699906],[-71.394008,41.97551999906],[-71.394033,41.97558299906],[-71.39404,41.97564699906],[-71.394022,41.97571099906],[-71.393989,41.97577199906],[-71.393944,41.97583199906],[-71.393888,41.97588499906],[-71.393749,41.97597799906],[-71.393686,41.97603099906],[-71.393665,41.97610099906],[-71.393667,41.97630599906],[-71.393659,41.97636699906],[-71.393637,41.97642499906],[-71.3936,41.97647999906],[-71.393541,41.97653499906],[-71.393471,41.97658099906],[-71.393382,41.97662999906],[-71.393342,41.97667899906],[-71.393343,41.97680599906],[-71.393374,41.97700699906],[-71.393381,41.97715399906],[-71.393389,41.97722499906],[-71.393406,41.97729099906],[-71.393456,41.97741599906],[-71.393489,41.97748199906],[-71.3936,41.97767799906],[-71.393723,41.97785399906],[-71.393767,41.97789999906],[-71.393818,41.97794299906],[-71.393879,41.97798299906],[-71.393854,41.97822299906],[-71.393829,41.97833999906],[-71.393805,41.97853799906],[-71.393798,41.97886299906],[-71.393779,41.97892699906],[-71.393742,41.97900499906],[-71.393638,41.97912499906],[-71.393603,41.97917299906],[-71.393806,41.97924799906],[-71.394234,41.97937799906],[-71.394753,41.97950399906],[-71.395136,41.97959299906],[-71.395309,41.97963299906],[-71.395382,41.97964999906],[-71.395485,41.97967499906],[-71.395658,41.97971399906],[-71.39621,41.97983899906],[-71.39711,41.98004899906],[-71.397949,41.98023999906],[-71.399002,41.98048799906],[-71.399659,41.98063299906],[-71.399694,41.98064099906],[-71.399872,41.98067899906],[-71.400261,41.98076599906],[-71.401665,41.98109099906],[-71.402588,41.98130399906],[-71.404053,41.98163599906],[-71.404999,41.98185299906],[-71.405045,41.98172799906],[-71.405045,41.98162099906]]]}}"}, +{"type": "blockgroup", "typeId": 114043, "areaId": 28894, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.403656,41.94647599906],[-71.40329,41.94643399906],[-71.402939,41.94640399906],[-71.402565,41.94638099906],[-71.402184,41.94634599906],[-71.401894,41.94628899906],[-71.401695,41.94621299906],[-71.401405,41.94606799906],[-71.401062,41.94593399906],[-71.400551,41.94575499906],[-71.400375,41.94570199906],[-71.400024,41.94558699906],[-71.399849,41.94553399906],[-71.399246,41.94536199906],[-71.398804,41.94527099906],[-71.398674,41.94524799906],[-71.398026,41.94511799906],[-71.397705,41.94508399906],[-71.397675,41.94508399906],[-71.397491,41.94509499906],[-71.397194,41.94514099906],[-71.397109,41.94516099906],[-71.39679,41.94523599906],[-71.39657,41.94530099906],[-71.396545,41.94530499906],[-71.396355,41.94535799906],[-71.396051,41.94545799906],[-71.39595,41.94549199906],[-71.395638,41.94558699906],[-71.395576,41.94560199906],[-71.394798,41.94585799906],[-71.394394,41.94597199906],[-71.394234,41.94600699906],[-71.394089,41.94601799906],[-71.393929,41.94601399906],[-71.393707,41.94599499906],[-71.393394,41.94595299906],[-71.392769,41.94588099906],[-71.392548,41.94591499906],[-71.392517,41.94592399906],[-71.392306,41.94598599906],[-71.392097,41.94604899906],[-71.391663,41.94618999906],[-71.39138,41.94628899906],[-71.391304,41.94633099906],[-71.391235,41.94638099906],[-71.391129,41.94648399906],[-71.391083,41.94654499906],[-71.391022,41.94660899906],[-71.390976,41.94666699906],[-71.390892,41.94679599906],[-71.390694,41.94706299906],[-71.390694,41.94708299906],[-71.390648,41.94714399906],[-71.390572,41.94727699906],[-71.390533,41.94733399906],[-71.390472,41.94745999906],[-71.39032,41.94767799906],[-71.390244,41.94781899906],[-71.390198,41.94787599906],[-71.390121,41.94794799906],[-71.390099,41.94795599906],[-71.390038,41.94799399906],[-71.389954,41.94802899906],[-71.389763,41.94808999906],[-71.389458,41.94813199906],[-71.389267,41.94816599906],[-71.389076,41.94821199906],[-71.389063,41.94821599906],[-71.388863,41.94828299906],[-71.388626,41.94836399906],[-71.388367,41.94845599906],[-71.387962,41.94861599906],[-71.387878,41.94864299906],[-71.387596,41.94872299906],[-71.387337,41.94875699906],[-71.387032,41.94874999906],[-71.386848,41.94875699906],[-71.386673,41.94877599906],[-71.386421,41.94883699906],[-71.386047,41.94895199906],[-71.385857,41.94901699906],[-71.38559,41.94909299906],[-71.38546,41.94914599906],[-71.385307,41.94918399906],[-71.384682,41.94938299906],[-71.384483,41.94943599906],[-71.384415,41.94947399906],[-71.384323,41.94954699906],[-71.384216,41.94950499906],[-71.384041,41.94944799906],[-71.383911,41.94939399906],[-71.383827,41.94936399906],[-71.383392,41.94919199906],[-71.383072,41.94904299906],[-71.38282,41.94891399906],[-71.382629,41.94879199906],[-71.382446,41.94869199906],[-71.382332,41.94860499906],[-71.382278,41.94855099906],[-71.382126,41.94841399906],[-71.381973,41.94824999906],[-71.381615,41.94790299906],[-71.381598,41.94788399906],[-71.3814,41.94768199906],[-71.3814,41.95121499906],[-71.381399,41.95166199906],[-71.3814,41.95174699906],[-71.381398,41.95286199906],[-71.3815,41.95286599906],[-71.381912,41.95286599906],[-71.382217,41.95288099906],[-71.382668,41.95288499906],[-71.382973,41.95290399906],[-71.383488,41.95290699906],[-71.383759,41.95290799906],[-71.384026,41.95289999906],[-71.385109,41.95284699906],[-71.385353,41.95282699906],[-71.385386,41.95282599906],[-71.38562,41.95281599906],[-71.386066,41.95277799906],[-71.386375,41.95275099906],[-71.386635,41.95272399906],[-71.387154,41.95265999906],[-71.387405,41.95262099906],[-71.387444,41.95261799906],[-71.387657,41.95258299906],[-71.388023,41.95251799906],[-71.388382,41.95246099906],[-71.388618,41.95241499906],[-71.389737,41.95217399906],[-71.389862,41.95214799906],[-71.391449,41.95181699906],[-71.391815,41.95174799906],[-71.392342,41.95163799906],[-71.39344,41.95141199906],[-71.395546,41.95101199906],[-71.395712,41.95098899906],[-71.396378,41.95089699906],[-71.397491,41.95073699906],[-71.399292,41.95055399906],[-71.401062,41.95043199906],[-71.4026,41.95038399906],[-71.402649,41.95017199906],[-71.402725,41.94980199906],[-71.402748,41.94972199906],[-71.402786,41.94955399906],[-71.40287,41.94924199906],[-71.402908,41.94909699906],[-71.402979,41.94887799906],[-71.403084,41.94855099906],[-71.403259,41.94796399906],[-71.403358,41.94765099906],[-71.403564,41.94685399906],[-71.403656,41.94647599906]]]}}"}, +{"type": "blockgroup", "typeId": 114051, "areaId": 28895, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.431099,41.93886899906],[-71.431061,41.93884299906],[-71.430649,41.93856399906],[-71.429939,41.93803799906],[-71.42972,41.93781099906],[-71.429703,41.93779399906],[-71.429558,41.93757599906],[-71.429001,41.93768299906],[-71.427628,41.93798399906],[-71.42733,41.93804599906],[-71.426094,41.93830099906],[-71.425414,41.93847099906],[-71.425331,41.93849599906],[-71.424766,41.93869099906],[-71.424713,41.93870899906],[-71.424614,41.93876299906],[-71.424179,41.93898399906],[-71.423706,41.93929699906],[-71.423347,41.93957899906],[-71.422809,41.94002299906],[-71.422478,41.94029999906],[-71.421906,41.94080699906],[-71.421448,41.94128399906],[-71.421356,41.94137599906],[-71.420807,41.94198999906],[-71.420631,41.94218799906],[-71.420372,41.94248599906],[-71.41996,41.94293999906],[-71.419716,41.94320299906],[-71.419458,41.94343399906],[-71.419189,41.94367599906],[-71.418831,41.94392799906],[-71.417931,41.94450399906],[-71.416573,41.94533499906],[-71.415263,41.94615499906],[-71.415062,41.94628099906],[-71.414467,41.94667099906],[-71.413353,41.94736899906],[-71.412865,41.94764299906],[-71.412413,41.94783599906],[-71.412392,41.94784899906],[-71.411919,41.94798999906],[-71.411751,41.94803199906],[-71.411324,41.94813899906],[-71.410789,41.94822299906],[-71.410332,41.94826099906],[-71.409912,41.94827999906],[-71.409485,41.94826899906],[-71.409065,41.94822699906],[-71.408684,41.94816599906],[-71.408173,41.94803999906],[-71.407661,41.94787199906],[-71.407486,41.94780299906],[-71.407196,41.94768899906],[-71.406967,41.94758599906],[-71.405991,41.94713599906],[-71.405411,41.94686099906],[-71.405083,41.94671199906],[-71.404869,41.94661699906],[-71.404457,41.94644299906],[-71.404165,41.94631199906],[-71.403983,41.94630199906],[-71.40387,41.94627999906],[-71.403776,41.94622399906],[-71.403744,41.94618299906],[-71.403687,41.94595299906],[-71.403671,41.94639999906],[-71.403656,41.94647599906],[-71.403564,41.94685399906],[-71.403358,41.94765099906],[-71.403259,41.94796399906],[-71.403084,41.94855099906],[-71.402979,41.94887799906],[-71.402908,41.94909699906],[-71.40287,41.94924199906],[-71.402786,41.94955399906],[-71.402748,41.94972199906],[-71.402725,41.94980199906],[-71.402649,41.95017199906],[-71.4026,41.95038399906],[-71.40274,41.95037799906],[-71.402916,41.95037499906],[-71.403526,41.95037499906],[-71.403648,41.95037699906],[-71.404961,41.95039399906],[-71.406052,41.95043199906],[-71.407646,41.95052299906],[-71.412949,41.95083599906],[-71.41395,41.95089599906],[-71.415573,41.95099299906],[-71.417757,41.95111899906],[-71.419369,41.95111199906],[-71.420799,41.95101199906],[-71.422199,41.95082999906],[-71.422384,41.95080499906],[-71.422682,41.95075699906],[-71.423873,41.95048799906],[-71.42493,41.95019399906],[-71.4262,41.94975599906],[-71.42707,41.94940299906],[-71.427261,41.94930999906],[-71.427261,41.94921899906],[-71.427254,41.94914599906],[-71.427185,41.94872299906],[-71.427155,41.94850199906],[-71.427126,41.94836599906],[-71.427091,41.94820099906],[-71.427071,41.94810899906],[-71.426941,41.94769299906],[-71.426842,41.94744899906],[-71.426704,41.94718199906],[-71.426422,41.94668999906],[-71.426247,41.94631599906],[-71.426239,41.94626599906],[-71.426224,41.94621299906],[-71.426208,41.94610199906],[-71.426208,41.94598799906],[-71.426216,41.94591899906],[-71.426216,41.94584699906],[-71.426247,41.94569799906],[-71.42627,41.94561799906],[-71.4263,41.94553799906],[-71.426346,41.94544599906],[-71.426498,41.94519799906],[-71.42652,41.94516899906],[-71.426605,41.94505299906],[-71.427208,41.94428599906],[-71.427361,41.94406899906],[-71.427536,41.94379799906],[-71.427925,41.94311499906],[-71.428116,41.94280599906],[-71.428284,41.94251299906],[-71.428421,41.94228499906],[-71.42849,41.94217299906],[-71.428696,41.94187199906],[-71.429642,41.94066599906],[-71.430481,41.93963999906],[-71.430725,41.93934199906],[-71.431099,41.93886899906]]]}}"}, +{"type": "blockgroup", "typeId": 114052, "areaId": 28896, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.429588,41.95945399906],[-71.429573,41.95929299906],[-71.42955,41.95916399906],[-71.429474,41.95896899906],[-71.429184,41.95849599906],[-71.42878,41.95796599906],[-71.42836,41.95740499906],[-71.4282,41.95713799906],[-71.428116,41.95684399906],[-71.428093,41.95642499906],[-71.428085,41.95564999906],[-71.428131,41.95524999906],[-71.42819,41.95487699906],[-71.428207,41.95477299906],[-71.428207,41.95451699906],[-71.428108,41.95413199906],[-71.427971,41.95376599906],[-71.427773,41.95347599906],[-71.427696,41.95340299906],[-71.427628,41.95333099906],[-71.427437,41.95314399906],[-71.427277,41.95286899906],[-71.427223,41.95266699906],[-71.427223,41.95246099906],[-71.427269,41.95217099906],[-71.427299,41.95193499906],[-71.427284,41.95173299906],[-71.427231,41.95144999906],[-71.427216,41.95125999906],[-71.427216,41.95098099906],[-71.427236,41.95072099906],[-71.427254,41.95048099906],[-71.427292,41.94977599906],[-71.427284,41.94968799906],[-71.42728,41.94959099906],[-71.427277,41.94952399906],[-71.427269,41.94938699906],[-71.427261,41.94930999906],[-71.42707,41.94940299906],[-71.4262,41.94975599906],[-71.42493,41.95019399906],[-71.423873,41.95048799906],[-71.422682,41.95075699906],[-71.422384,41.95080499906],[-71.422199,41.95082999906],[-71.420799,41.95101199906],[-71.419369,41.95111199906],[-71.417757,41.95111899906],[-71.415573,41.95099299906],[-71.41395,41.95089599906],[-71.412949,41.95083599906],[-71.407646,41.95052299906],[-71.406052,41.95043199906],[-71.404961,41.95039399906],[-71.403648,41.95037699906],[-71.403526,41.95037499906],[-71.402916,41.95037499906],[-71.40274,41.95037799906],[-71.4026,41.95038399906],[-71.402542,41.95063399906],[-71.402451,41.95099999906],[-71.402383,41.95133199906],[-71.402351,41.95149199906],[-71.402321,41.95161099906],[-71.402267,41.95187799906],[-71.402222,41.95210299906],[-71.402161,41.95255999906],[-71.402145,41.95265999906],[-71.402115,41.95278199906],[-71.402023,41.95310999906],[-71.401988,41.95320399906],[-71.401802,41.95371999906],[-71.401505,41.95444099906],[-71.40123,41.95509299906],[-71.401062,41.95551699906],[-71.401039,41.95560099906],[-71.40097,41.95579499906],[-71.400948,41.95590199906],[-71.400856,41.95624199906],[-71.400787,41.95662699906],[-71.400772,41.95676399906],[-71.400772,41.95687499906],[-71.400887,41.95699299906],[-71.400955,41.95707699906],[-71.401154,41.95722199906],[-71.401382,41.95747399906],[-71.401863,41.95804599906],[-71.402054,41.95820199906],[-71.402206,41.95826299906],[-71.402412,41.95830499906],[-71.402664,41.95831699906],[-71.403008,41.95830899906],[-71.403252,41.95832799906],[-71.403374,41.95835499906],[-71.403526,41.95840099906],[-71.403664,41.95845399906],[-71.40403,41.95857199906],[-71.404503,41.95873299906],[-71.404984,41.95891199906],[-71.405016,41.95892199906],[-71.405235,41.95898799906],[-71.405365,41.95901099906],[-71.40551,41.95900299906],[-71.405701,41.95895399906],[-71.406021,41.95883199906],[-71.406047,41.95882099906],[-71.406226,41.95874699906],[-71.406445,41.95865699906],[-71.406586,41.95859899906],[-71.407021,41.95846599906],[-71.407352,41.95835899906],[-71.407566,41.95829099906],[-71.407639,41.95826699906],[-71.40796,41.95816599906],[-71.408127,41.95811499906],[-71.408218,41.95810299906],[-71.408302,41.95809899906],[-71.408417,41.95811499906],[-71.408429,41.95811999906],[-71.408562,41.95817599906],[-71.408821,41.95830199906],[-71.409142,41.95848499906],[-71.409462,41.95871699906],[-71.409851,41.95903799906],[-71.410362,41.95938499906],[-71.410469,41.95947999906],[-71.410995,41.96006799906],[-71.411133,41.96015199906],[-71.411293,41.96018599906],[-71.411318,41.96018199906],[-71.411552,41.96022399906],[-71.411827,41.96024699906],[-71.412231,41.96029699906],[-71.412376,41.96033099906],[-71.412437,41.96034999906],[-71.412727,41.96041499906],[-71.413223,41.96049899906],[-71.413528,41.96065499906],[-71.413773,41.96084599906],[-71.414032,41.96108999906],[-71.414252,41.96132299906],[-71.414536,41.96162399906],[-71.414676,41.96180199906],[-71.414719,41.96185699906],[-71.414864,41.96202899906],[-71.415283,41.96249799906],[-71.415352,41.96252799906],[-71.415855,41.96266599906],[-71.416061,41.96275299906],[-71.416161,41.96284099906],[-71.416565,41.96315399906],[-71.416718,41.96327599906],[-71.417053,41.96356599906],[-71.41716,41.96372599906],[-71.417175,41.96381399906],[-71.417084,41.96422599906],[-71.417046,41.96442799906],[-71.417015,41.96467199906],[-71.417,41.96498899906],[-71.416893,41.96564099906],[-71.416817,41.96588899906],[-71.41674,41.96620899906],[-71.416779,41.96616199906],[-71.416908,41.96604199906],[-71.417084,41.96590799906],[-71.417229,41.96583599906],[-71.417389,41.96578199906],[-71.417557,41.96573999906],[-71.41835,41.96566399906],[-71.418968,41.96563299906],[-71.419136,41.96562999906],[-71.419991,41.96567199906],[-71.420288,41.96567499906],[-71.420395,41.96567899906],[-71.420624,41.96568299906],[-71.42099,41.96568299906],[-71.42112,41.96565599906],[-71.421379,41.96560299906],[-71.421692,41.96546599906],[-71.421989,41.96525999906],[-71.42218,41.96506099906],[-71.422333,41.96490899906],[-71.422638,41.96456099906],[-71.422974,41.96428699906],[-71.423241,41.96415699906],[-71.423477,41.96409199906],[-71.423752,41.96404599906],[-71.424049,41.96401599906],[-71.424683,41.96400799906],[-71.425041,41.96398199906],[-71.425377,41.96390899906],[-71.425659,41.96381799906],[-71.425949,41.96366499906],[-71.426285,41.96342099906],[-71.426628,41.96319999906],[-71.426933,41.96297099906],[-71.427193,41.96276899906],[-71.427361,41.96253999906],[-71.427765,41.96185699906],[-71.428001,41.96155499906],[-71.428291,41.96135299906],[-71.428558,41.96118899906],[-71.428864,41.96097899906],[-71.429024,41.96078099906],[-71.429283,41.96032299906],[-71.429495,41.95989799906],[-71.429527,41.95983499906],[-71.429581,41.95965199906],[-71.429588,41.95945399906]]]}}"}, +{"type": "blockgroup", "typeId": 114053, "areaId": 28897, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.418564,41.97059199906],[-71.41851,41.97031799906],[-71.418373,41.96998999906],[-71.418037,41.96922699906],[-71.417854,41.96886099906],[-71.417686,41.96849399906],[-71.417404,41.96813999906],[-71.417076,41.96783399906],[-71.416755,41.96747799906],[-71.41674,41.96746099906],[-71.416611,41.96719699906],[-71.41659,41.96710599906],[-71.41655,41.96693399906],[-71.416542,41.96667499906],[-71.416618,41.96641199906],[-71.41674,41.96620899906],[-71.416817,41.96588899906],[-71.416893,41.96564099906],[-71.417,41.96498899906],[-71.417015,41.96467199906],[-71.417046,41.96442799906],[-71.417084,41.96422599906],[-71.417175,41.96381399906],[-71.41716,41.96372599906],[-71.417053,41.96356599906],[-71.416718,41.96327599906],[-71.416565,41.96315399906],[-71.416161,41.96284099906],[-71.416061,41.96275299906],[-71.415855,41.96266599906],[-71.415352,41.96252799906],[-71.415283,41.96249799906],[-71.414864,41.96202899906],[-71.414719,41.96185699906],[-71.414676,41.96180199906],[-71.414536,41.96162399906],[-71.414252,41.96132299906],[-71.414032,41.96108999906],[-71.413773,41.96084599906],[-71.413528,41.96065499906],[-71.413223,41.96049899906],[-71.412727,41.96041499906],[-71.412437,41.96034999906],[-71.412376,41.96033099906],[-71.412231,41.96029699906],[-71.411827,41.96024699906],[-71.411552,41.96022399906],[-71.411318,41.96018199906],[-71.411293,41.96018599906],[-71.411133,41.96015199906],[-71.410995,41.96006799906],[-71.410469,41.95947999906],[-71.410362,41.95938499906],[-71.409851,41.95903799906],[-71.409462,41.95871699906],[-71.409142,41.95848499906],[-71.408821,41.95830199906],[-71.408562,41.95817599906],[-71.408429,41.95811999906],[-71.408417,41.95811499906],[-71.408302,41.95809899906],[-71.408218,41.95810299906],[-71.408127,41.95811499906],[-71.40796,41.95816599906],[-71.407639,41.95826699906],[-71.407566,41.95829099906],[-71.407352,41.95835899906],[-71.407021,41.95846599906],[-71.406586,41.95859899906],[-71.406445,41.95865699906],[-71.406226,41.95874699906],[-71.406047,41.95882099906],[-71.406021,41.95883199906],[-71.405701,41.95895399906],[-71.40551,41.95900299906],[-71.405365,41.95901099906],[-71.405235,41.95898799906],[-71.405016,41.95892199906],[-71.404984,41.95891199906],[-71.404503,41.95873299906],[-71.40403,41.95857199906],[-71.403664,41.95845399906],[-71.403526,41.95840099906],[-71.403374,41.95835499906],[-71.403252,41.95832799906],[-71.403008,41.95830899906],[-71.402664,41.95831699906],[-71.402412,41.95830499906],[-71.402206,41.95826299906],[-71.402054,41.95820199906],[-71.401863,41.95804599906],[-71.401382,41.95747399906],[-71.401154,41.95722199906],[-71.400955,41.95707699906],[-71.400887,41.95699299906],[-71.400772,41.95687499906],[-71.400772,41.95709599906],[-71.400773,41.95712599906],[-71.400787,41.95746599906],[-71.400803,41.95764899906],[-71.400833,41.95788199906],[-71.400917,41.95830899906],[-71.401039,41.95877799906],[-71.40126,41.95966699906],[-71.401413,41.96040699906],[-71.401428,41.96052899906],[-71.401459,41.96072299906],[-71.401489,41.96091499906],[-71.401497,41.96116299906],[-71.401512,41.96130399906],[-71.401512,41.96149399906],[-71.401527,41.96179599906],[-71.401512,41.96215099906],[-71.401505,41.96229599906],[-71.401497,41.96293299906],[-71.401428,41.96385999906],[-71.401398,41.96425999906],[-71.401398,41.96480199906],[-71.401411,41.96491699906],[-71.401443,41.96519899906],[-71.401512,41.96559899906],[-71.401634,41.96604499906],[-71.401749,41.96631599906],[-71.40181,41.96640799906],[-71.401642,41.96651499906],[-71.401558,41.96667099906],[-71.401466,41.96688099906],[-71.401428,41.96696099906],[-71.401276,41.96724299906],[-71.401146,41.96741899906],[-71.400978,41.96757899906],[-71.400864,41.96771599906],[-71.400818,41.96789899906],[-71.400826,41.96826199906],[-71.400826,41.96868099906],[-71.400848,41.96910099906],[-71.400856,41.96941399906],[-71.400841,41.96978799906],[-71.40081,41.96987899906],[-71.400772,41.96997099906],[-71.400581,41.97014999906],[-71.400497,41.97025299906],[-71.400215,41.97107699906],[-71.400154,41.97133599906],[-71.400017,41.97184799906],[-71.39994,41.97211099906],[-71.399809,41.97241999906],[-71.399796,41.97244999906],[-71.399788,41.97255299906],[-71.399811,41.97277499906],[-71.400078,41.97345399906],[-71.400238,41.97384299906],[-71.400383,41.97416699906],[-71.400436,41.97436099906],[-71.400421,41.97447599906],[-71.400383,41.97460599906],[-71.400276,41.97485699906],[-71.400108,41.97520399906],[-71.399933,41.97559399906],[-71.39978,41.97596699906],[-71.399857,41.97609699906],[-71.399864,41.97611599906],[-71.400169,41.97660799906],[-71.400208,41.97667699906],[-71.400604,41.97718399906],[-71.400841,41.97751199906],[-71.401077,41.97782099906],[-71.401337,41.97807699906],[-71.401718,41.97842799906],[-71.402161,41.97879799906],[-71.402718,41.97917899906],[-71.40374,41.97985099906],[-71.403954,41.98000099906],[-71.404076,41.98008699906],[-71.404259,41.98024399906],[-71.404404,41.98049199906],[-71.404533,41.98079699906],[-71.404686,41.98109099906],[-71.405014,41.98153299906],[-71.405045,41.98162099906],[-71.405045,41.98172799906],[-71.404999,41.98185299906],[-71.40554,41.98197599906],[-71.408012,41.98255199906],[-71.40873,41.98268499906],[-71.408928,41.98270799906],[-71.40937,41.98276499906],[-71.409836,41.98279999906],[-71.410103,41.98281099906],[-71.410255,41.98281899906],[-71.410683,41.98282599906],[-71.410828,41.98282199906],[-71.4111,41.98281299906],[-71.411285,41.98280699906],[-71.413515,41.98266299906],[-71.4139,41.98263999906],[-71.416077,41.98249099906],[-71.416054,41.98232699906],[-71.416035,41.98222199906],[-71.415962,41.98180399906],[-71.41592,41.98159499906],[-71.415817,41.98107899906],[-71.415802,41.98097199906],[-71.415718,41.98056399906],[-71.415688,41.98037699906],[-71.415619,41.98003799906],[-71.415596,41.97988499906],[-71.415512,41.97956499906],[-71.415459,41.97940099906],[-71.415398,41.97923699906],[-71.415359,41.97909899906],[-71.415314,41.97896199906],[-71.415276,41.97882499906],[-71.415215,41.97855799906],[-71.415192,41.97842399906],[-71.415176,41.97820699906],[-71.415176,41.97809999906],[-71.415199,41.97794699906],[-71.41523,41.97779499906],[-71.415243,41.97774599906],[-71.415359,41.97729499906],[-71.415413,41.97711899906],[-71.415482,41.97692899906],[-71.415863,41.97610099906],[-71.416229,41.97537999906],[-71.416336,41.97514299906],[-71.416464,41.97479099906],[-71.416496,41.97470499906],[-71.416588,41.97450999906],[-71.416641,41.97441499906],[-71.416748,41.97426599906],[-71.416962,41.97400699906],[-71.417244,41.97369799906],[-71.417351,41.97359099906],[-71.417648,41.97325099906],[-71.417839,41.97304199906],[-71.417923,41.97293499906],[-71.418045,41.97276699906],[-71.418098,41.97267899906],[-71.418152,41.97256499906],[-71.41819,41.97244599906],[-71.418221,41.97232799906],[-71.418236,41.97221799906],[-71.418266,41.97176399906],[-71.418289,41.97164899906],[-71.41832,41.97153899906],[-71.418449,41.97122999906],[-71.418495,41.97114599906],[-71.418526,41.97106199906],[-71.418549,41.97096999906],[-71.41856,41.97083399906],[-71.418564,41.97078699906],[-71.418564,41.97059199906]]]}}"}, +{"type": "blockgroup", "typeId": 114054, "areaId": 28898, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.447838,41.96767799906],[-71.447754,41.96760599906],[-71.447372,41.96730799906],[-71.44677,41.96682699906],[-71.446564,41.96663699906],[-71.446419,41.96647999906],[-71.44632,41.96635099906],[-71.445625,41.96524799906],[-71.445602,41.96522099906],[-71.445267,41.96466099906],[-71.44516,41.96439699906],[-71.445007,41.96396299906],[-71.444809,41.96332899906],[-71.444717,41.96303599906],[-71.444595,41.96268099906],[-71.44455,41.96255499906],[-71.444366,41.96204799906],[-71.444237,41.96171199906],[-71.444069,41.96123899906],[-71.44384,41.96060899906],[-71.443604,41.95997599906],[-71.443368,41.95934599906],[-71.443146,41.95873999906],[-71.44313,41.95871699906],[-71.443024,41.95842899906],[-71.442924,41.95815699906],[-71.442833,41.95779799906],[-71.442825,41.95774799906],[-71.44281,41.95762299906],[-71.442787,41.95696599906],[-71.442749,41.95653499906],[-71.442688,41.95622999906],[-71.44249,41.95542499906],[-71.442468,41.95534399906],[-71.442315,41.95476599906],[-71.442032,41.95370099906],[-71.441856,41.95304099906],[-71.441559,41.95189699906],[-71.44146,41.95149199906],[-71.441391,41.95120599906],[-71.441277,41.95071799906],[-71.441147,41.95029099906],[-71.440857,41.94968399906],[-71.440555,41.94920799906],[-71.440269,41.94875699906],[-71.440147,41.94857399906],[-71.439912,41.94821199906],[-71.439461,41.94751699906],[-71.439423,41.94746399906],[-71.43924,41.94722399906],[-71.438728,41.94666699906],[-71.438461,41.94639999906],[-71.438232,41.94615899906],[-71.437218,41.94518299906],[-71.437027,41.94501099906],[-71.437012,41.94499599906],[-71.436737,41.94474799906],[-71.436539,41.94456899906],[-71.436272,41.94431699906],[-71.435806,41.94389299906],[-71.435577,41.94366499906],[-71.435509,41.94358799906],[-71.435371,41.94343599906],[-71.435272,41.94331699906],[-71.435143,41.94314199906],[-71.434952,41.94281799906],[-71.434799,41.94251599906],[-71.4347,41.94233699906],[-71.434608,41.94215399906],[-71.434563,41.94198999906],[-71.43438,41.94161599906],[-71.434158,41.94127999906],[-71.433884,41.94097099906],[-71.433586,41.94070399906],[-71.433167,41.94037599906],[-71.432877,41.94016999906],[-71.432243,41.93971599906],[-71.432167,41.93965499906],[-71.431801,41.93937699906],[-71.431656,41.93926599906],[-71.431557,41.93919799906],[-71.431099,41.93886899906],[-71.430725,41.93934199906],[-71.430481,41.93963999906],[-71.429642,41.94066599906],[-71.428696,41.94187199906],[-71.42849,41.94217299906],[-71.428421,41.94228499906],[-71.428284,41.94251299906],[-71.428116,41.94280599906],[-71.427925,41.94311499906],[-71.427536,41.94379799906],[-71.427361,41.94406899906],[-71.427208,41.94428599906],[-71.426605,41.94505299906],[-71.42652,41.94516899906],[-71.426498,41.94519799906],[-71.426346,41.94544599906],[-71.4263,41.94553799906],[-71.42627,41.94561799906],[-71.426247,41.94569799906],[-71.426216,41.94584699906],[-71.426216,41.94591899906],[-71.426208,41.94598799906],[-71.426208,41.94610199906],[-71.426224,41.94621299906],[-71.426239,41.94626599906],[-71.426247,41.94631599906],[-71.426422,41.94668999906],[-71.426704,41.94718199906],[-71.426842,41.94744899906],[-71.426941,41.94769299906],[-71.427071,41.94810899906],[-71.427091,41.94820099906],[-71.427126,41.94836599906],[-71.427155,41.94850199906],[-71.427185,41.94872299906],[-71.427254,41.94914599906],[-71.427261,41.94921899906],[-71.427261,41.94930999906],[-71.427269,41.94938699906],[-71.427277,41.94952399906],[-71.42728,41.94959099906],[-71.427284,41.94968799906],[-71.427292,41.94977599906],[-71.427254,41.95048099906],[-71.427236,41.95072099906],[-71.427216,41.95098099906],[-71.427216,41.95125999906],[-71.427231,41.95144999906],[-71.427284,41.95173299906],[-71.427299,41.95193499906],[-71.427269,41.95217099906],[-71.427223,41.95246099906],[-71.427223,41.95266699906],[-71.427277,41.95286899906],[-71.427437,41.95314399906],[-71.427628,41.95333099906],[-71.427696,41.95340299906],[-71.427773,41.95347599906],[-71.427971,41.95376599906],[-71.428108,41.95413199906],[-71.428207,41.95451699906],[-71.428207,41.95477299906],[-71.42819,41.95487699906],[-71.428131,41.95524999906],[-71.428085,41.95564999906],[-71.428093,41.95642499906],[-71.428116,41.95684399906],[-71.4282,41.95713799906],[-71.42836,41.95740499906],[-71.42878,41.95796599906],[-71.429184,41.95849599906],[-71.429474,41.95896899906],[-71.42955,41.95916399906],[-71.429573,41.95929299906],[-71.429588,41.95945399906],[-71.429581,41.95965199906],[-71.429527,41.95983499906],[-71.429495,41.95989799906],[-71.429283,41.96032299906],[-71.429024,41.96078099906],[-71.428864,41.96097899906],[-71.428558,41.96118899906],[-71.428291,41.96135299906],[-71.428001,41.96155499906],[-71.427765,41.96185699906],[-71.427361,41.96253999906],[-71.427193,41.96276899906],[-71.426933,41.96297099906],[-71.426628,41.96319999906],[-71.426285,41.96342099906],[-71.425949,41.96366499906],[-71.425659,41.96381799906],[-71.425377,41.96390899906],[-71.425041,41.96398199906],[-71.424683,41.96400799906],[-71.424049,41.96401599906],[-71.423752,41.96404599906],[-71.423477,41.96409199906],[-71.423241,41.96415699906],[-71.422974,41.96428699906],[-71.422638,41.96456099906],[-71.422333,41.96490899906],[-71.42218,41.96506099906],[-71.421989,41.96525999906],[-71.421692,41.96546599906],[-71.421379,41.96560299906],[-71.42112,41.96565599906],[-71.42099,41.96568299906],[-71.420624,41.96568299906],[-71.420395,41.96567899906],[-71.420288,41.96567499906],[-71.419991,41.96567199906],[-71.419136,41.96562999906],[-71.418968,41.96563299906],[-71.41835,41.96566399906],[-71.417557,41.96573999906],[-71.417389,41.96578199906],[-71.417229,41.96583599906],[-71.417084,41.96590799906],[-71.416908,41.96604199906],[-71.416779,41.96616199906],[-71.41674,41.96620899906],[-71.416618,41.96641199906],[-71.416542,41.96667499906],[-71.41655,41.96693399906],[-71.41659,41.96710599906],[-71.416611,41.96719699906],[-71.41674,41.96746099906],[-71.416755,41.96747799906],[-71.417076,41.96783399906],[-71.417404,41.96813999906],[-71.417686,41.96849399906],[-71.417854,41.96886099906],[-71.418037,41.96922699906],[-71.418373,41.96998999906],[-71.41851,41.97031799906],[-71.418564,41.97059199906],[-71.418564,41.97078699906],[-71.41856,41.97083399906],[-71.418549,41.97096999906],[-71.418648,41.97098499906],[-71.418846,41.97100799906],[-71.419319,41.97100799906],[-71.419472,41.97101199906],[-71.419937,41.97101199906],[-71.420174,41.97101999906],[-71.420288,41.97103099906],[-71.420403,41.97105399906],[-71.420509,41.97108499906],[-71.420998,41.97119899906],[-71.421181,41.97125199906],[-71.421379,41.97133999906],[-71.421852,41.97158099906],[-71.422005,41.97164199906],[-71.422096,41.97166399906],[-71.422279,41.97172899906],[-71.422363,41.97176699906],[-71.422447,41.97181299906],[-71.422493,41.97184799906],[-71.422531,41.97188599906],[-71.422684,41.97201899906],[-71.422836,41.97212999906],[-71.42289,41.97215299906],[-71.422989,41.97217899906],[-71.423218,41.97219099906],[-71.423843,41.97219799906],[-71.423973,41.97220599906],[-71.424377,41.97227099906],[-71.424454,41.97228999906],[-71.424644,41.97231699906],[-71.424735,41.97232299906],[-71.424759,41.97232799906],[-71.425041,41.97235099906],[-71.42514,41.97236599906],[-71.425522,41.97247299906],[-71.425606,41.97248799906],[-71.425682,41.97249199906],[-71.425766,41.97248499906],[-71.425842,41.97246899906],[-71.425911,41.97244599906],[-71.426025,41.97237799906],[-71.426109,41.97231299906],[-71.426262,41.97216799906],[-71.426376,41.97204199906],[-71.426445,41.97197699906],[-71.426605,41.97183999906],[-71.426689,41.97177899906],[-71.426773,41.97173299906],[-71.426811,41.97171799906],[-71.426857,41.97169099906],[-71.42704,41.97161099906],[-71.427338,41.97148899906],[-71.427551,41.97140899906],[-71.427895,41.97131299906],[-71.427971,41.97128299906],[-71.42804,41.97124899906],[-71.428162,41.97116899906],[-71.428215,41.97111899906],[-71.428375,41.97100799906],[-71.428429,41.97098499906],[-71.42849,41.97096599906],[-71.428558,41.97095499906],[-71.428764,41.97093599906],[-71.428902,41.97093199906],[-71.429161,41.97093999906],[-71.429283,41.97095099906],[-71.429634,41.97096999906],[-71.429741,41.97098199906],[-71.429825,41.97100099906],[-71.429909,41.97102699906],[-71.429993,41.97104599906],[-71.430092,41.97106199906],[-71.430191,41.97107299906],[-71.43029,41.97107699906],[-71.430374,41.97107299906],[-71.430542,41.97105799906],[-71.431068,41.97096599906],[-71.431206,41.97095099906],[-71.431671,41.97095899906],[-71.431786,41.97095499906],[-71.431885,41.97093599906],[-71.432442,41.97069499906],[-71.432579,41.97066099906],[-71.432693,41.97064599906],[-71.433525,41.97058899906],[-71.434181,41.97050499906],[-71.434349,41.97047399906],[-71.434547,41.97039799906],[-71.434715,41.97030599906],[-71.434975,41.97018099906],[-71.435257,41.97008499906],[-71.435402,41.97004699906],[-71.43573,41.96997099906],[-71.435959,41.96992899906],[-71.436096,41.96990199906],[-71.436531,41.96984499906],[-71.436707,41.96982599906],[-71.436874,41.96981799906],[-71.436951,41.96982999906],[-71.437126,41.96988299906],[-71.437218,41.96991699906],[-71.437645,41.97010399906],[-71.437851,41.97019599906],[-71.438568,41.97049699906],[-71.439613,41.97095899906],[-71.439682,41.97098499906],[-71.440186,41.97121799906],[-71.440394,41.97132099906],[-71.440666,41.97145499906],[-71.441032,41.97160299906],[-71.441246,41.97164899906],[-71.441612,41.97165699906],[-71.442085,41.97163799906],[-71.442168,41.97163599906],[-71.442279,41.97163199906],[-71.442665,41.97162199906],[-71.442896,41.97158899906],[-71.442978,41.97157699906],[-71.443291,41.97146599906],[-71.443611,41.97132099906],[-71.444191,41.97100399906],[-71.444389,41.97085599906],[-71.444595,41.97069499906],[-71.445015,41.97022999906],[-71.445343,41.96987499906],[-71.445671,41.96949399906],[-71.445816,41.96936799906],[-71.446175,41.96909299906],[-71.446548,41.96886799906],[-71.446667,41.96877399906],[-71.446785,41.96868099906],[-71.447075,41.96841799906],[-71.44737,41.96811099906],[-71.44738,41.96809399906],[-71.447655,41.96783099906],[-71.447838,41.96767799906]]]}}"}, +{"type": "blockgroup", "typeId": 115001, "areaId": 28899, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.490788,41.94324099906],[-71.490748,41.94312699906],[-71.49066,41.94285399906],[-71.489316,41.93890699906],[-71.489167,41.93846899906],[-71.488987,41.93793699906],[-71.487462,41.93401899906],[-71.487204,41.93289799906],[-71.487152,41.93274799906],[-71.486304,41.93029799906],[-71.485605,41.92839799906],[-71.485182,41.92709199906],[-71.4845,41.92498899906],[-71.484337,41.92520499906],[-71.484161,41.92548799906],[-71.484055,41.92568599906],[-71.484039,41.92574299906],[-71.483963,41.92589199906],[-71.483833,41.92625399906],[-71.483727,41.92662799906],[-71.483681,41.92681099906],[-71.483223,41.92849299906],[-71.48291,41.92987799906],[-71.48283,41.93026099906],[-71.482811,41.93035099906],[-71.482765,41.93056899906],[-71.482744,41.93066099906],[-71.482635,41.93112899906],[-71.48243,41.93204899906],[-71.482201,41.93285399906],[-71.481766,41.93426499906],[-71.481628,41.93482999906],[-71.48156,41.93527199906],[-71.481552,41.93534099906],[-71.481544,41.93560799906],[-71.481544,41.93582899906],[-71.481529,41.93596299906],[-71.481476,41.93607699906],[-71.481384,41.93621099906],[-71.481277,41.93633699906],[-71.480927,41.93672899906],[-71.480728,41.93700399906],[-71.480362,41.93764899906],[-71.480133,41.93802599906],[-71.479836,41.93845399906],[-71.479798,41.93851799906],[-71.479713,41.93866299906],[-71.479637,41.93904599906],[-71.479599,41.93923999906],[-71.4795,41.93955999906],[-71.479355,41.93997199906],[-71.479263,41.94030799906],[-71.479187,41.94047499906],[-71.479095,41.94054399906],[-71.478973,41.94054399906],[-71.477539,41.94026199906],[-71.47718,41.94019699906],[-71.476997,41.94019299906],[-71.476822,41.94019699906],[-71.476631,41.94021199906],[-71.476402,41.94024699906],[-71.475952,41.94034199906],[-71.475555,41.94043399906],[-71.475174,41.94050199906],[-71.47493,41.94052899906],[-71.474663,41.94052499906],[-71.474445,41.94049999906],[-71.474691,41.94083699906],[-71.474708,41.94085399906],[-71.474947,41.94108799906],[-71.475055,41.94119499906],[-71.475361,41.94138999906],[-71.475288,41.94150199906],[-71.475243,41.94165399906],[-71.475266,41.94186399906],[-71.475433,41.94214199906],[-71.475853,41.94255399906],[-71.475998,41.94267699906],[-71.476068,41.94273099906],[-71.47587,41.94275399906],[-71.475891,41.94277199906],[-71.475705,41.94277899906],[-71.475675,41.94277999906],[-71.475449,41.94279099906],[-71.475048,41.94279899906],[-71.474365,41.94281399906],[-71.472374,41.94277599906],[-71.471596,41.94271099906],[-71.471026,41.94264399906],[-71.470558,41.94258899906],[-71.469673,41.94245399906],[-71.467888,41.94218099906],[-71.465858,41.94187899906],[-71.46301,41.94143399906],[-71.459137,41.94083399906],[-71.456718,41.94045599906],[-71.456566,41.94043399906],[-71.455704,41.93970099906],[-71.454966,41.93908399906],[-71.454376,41.93859099906],[-71.454201,41.93844599906],[-71.453575,41.93789299906],[-71.453331,41.93764499906],[-71.452972,41.93719499906],[-71.45253,41.93662599906],[-71.452316,41.93632899906],[-71.452202,41.93617999906],[-71.452011,41.93591299906],[-71.45166,41.93550899906],[-71.451378,41.93527599906],[-71.451004,41.93503999906],[-71.450668,41.93491399906],[-71.450386,41.93479899906],[-71.450104,41.93469199906],[-71.449951,41.93464299906],[-71.449781,41.93455399906],[-71.44873,41.93463099906],[-71.447723,41.93470399906],[-71.444305,41.93493999906],[-71.443718,41.93501999906],[-71.44326,41.93510099906],[-71.44281,41.93519599906],[-71.442162,41.93534099906],[-71.440697,41.93566099906],[-71.440448,41.93571399906],[-71.440304,41.93574499906],[-71.44001,41.93580799906],[-71.439873,41.93583699906],[-71.439713,41.93587099906],[-71.439689,41.93587299906],[-71.438118,41.93623399906],[-71.437889,41.93629299906],[-71.437553,41.93638199906],[-71.437376,41.93644499906],[-71.436966,41.93659199906],[-71.436709,41.93670599906],[-71.436679,41.93671899906],[-71.436559,41.93677299906],[-71.436285,41.93693299906],[-71.435471,41.93737399906],[-71.43484,41.93773899906],[-71.434669,41.93783799906],[-71.434161,41.93811999906],[-71.433982,41.93821899906],[-71.434118,41.93837299906],[-71.434841,41.93919299906],[-71.435362,41.94002899906],[-71.435948,41.94062399906],[-71.436516,41.94119999906],[-71.437272,41.94182599906],[-71.438092,41.94262699906],[-71.439157,41.94341999906],[-71.439278,41.94354199906],[-71.439347,41.94357799906],[-71.439636,41.94372899906],[-71.439703,41.94377599906],[-71.440681,41.94445499906],[-71.440818,41.94458999906],[-71.441042,41.94494499906],[-71.441612,41.94590199906],[-71.441898,41.94623899906],[-71.442095,41.94659599906],[-71.442332,41.94709499906],[-71.442549,41.94740999906],[-71.442885,41.94765599906],[-71.443172,41.94777099906],[-71.44425,41.94817599906],[-71.446521,41.94879199906],[-71.447347,41.94910899906],[-71.447778,41.94909899906],[-71.448141,41.94911099906],[-71.44849,41.94893099906],[-71.448966,41.94911199906],[-71.449329,41.94920499906],[-71.449666,41.94917899906],[-71.45058,41.94957099906],[-71.450987,41.94991299906],[-71.451275,41.95030399906],[-71.451399,41.95155599906],[-71.451402,41.95159899906],[-71.451503,41.95218699906],[-71.451609,41.95240099906],[-71.452315,41.95310499906],[-71.452472,41.95300299906],[-71.452713,41.95284699906],[-71.452845,41.95274899906],[-71.453018,41.95262099906],[-71.453484,41.95230899906],[-71.453545,41.95223599906],[-71.45356,41.95218299906],[-71.453568,41.95203399906],[-71.45356,41.95187799906],[-71.45359,41.95178199906],[-71.453636,41.95170999906],[-71.453705,41.95164899906],[-71.453827,41.95158799906],[-71.454002,41.95153799906],[-71.454216,41.95149599906],[-71.454422,41.95142699906],[-71.454659,41.95138499906],[-71.454933,41.95137399906],[-71.455391,41.95136999906],[-71.456879,41.95139699906],[-71.45739,41.95140099906],[-71.457664,41.95139699906],[-71.45784,41.95137799906],[-71.458267,41.95132799906],[-71.458527,41.95130199906],[-71.458702,41.95129399906],[-71.458809,41.95129799906],[-71.459122,41.95134399906],[-71.459442,41.95141199906],[-71.459582,41.95143499906],[-71.459694,41.95145399906],[-71.459946,41.95148099906],[-71.460182,41.95148499906],[-71.460365,41.95146599906],[-71.460556,41.95143499906],[-71.460754,41.95136999906],[-71.46096,41.95127099906],[-71.461601,41.95083599906],[-71.461675,41.95078399906],[-71.461906,41.95062299906],[-71.462158,41.95044699906],[-71.463264,41.94973799906],[-71.463959,41.94928699906],[-71.464912,41.94875299906],[-71.465508,41.94848999906],[-71.46611,41.94818899906],[-71.466202,41.94814699906],[-71.466621,41.94794499906],[-71.467163,41.94771599906],[-71.467675,41.94756299906],[-71.468275,41.94809199906],[-71.46835,41.94815799906],[-71.472982,41.95223599906],[-71.473722,41.95288899906],[-71.475396,41.95436299906],[-71.47954,41.95801199906],[-71.483149,41.95957099906],[-71.48325,41.95961499906],[-71.483413,41.95968599906],[-71.483769,41.95983999906],[-71.486991,41.96123199906],[-71.487012,41.96121399906],[-71.487041,41.96115499906],[-71.487045,41.96108599906],[-71.487039,41.96102699906],[-71.487015,41.96095599906],[-71.48698,41.96090499906],[-71.486886,41.96081099906],[-71.486829,41.96077099906],[-71.486747,41.96074399906],[-71.486647,41.96073899906],[-71.486545,41.96073899906],[-71.486456,41.96072399906],[-71.486308,41.96067899906],[-71.486162,41.96062099906],[-71.4861,41.96056999906],[-71.486075,41.96050199906],[-71.486064,41.96044199906],[-71.486063,41.96031199906],[-71.486095,41.96027599906],[-71.486163,41.96025199906],[-71.48625,41.96022899906],[-71.486338,41.96021899906],[-71.486375,41.96016099906],[-71.48652,41.96010499906],[-71.486583,41.96007199906],[-71.486613,41.96001399906],[-71.486614,41.95989399906],[-71.486638,41.95983599906],[-71.486644,41.95976899906],[-71.486667,41.95970499906],[-71.486717,41.95965299906],[-71.486738,41.95959199906],[-71.486726,41.95952999906],[-71.486701,41.95946599906],[-71.486689,41.95940199906],[-71.486688,41.95928199906],[-71.486716,41.95915799906],[-71.486747,41.95909599906],[-71.486869,41.95893099906],[-71.486978,41.95881399906],[-71.487052,41.95875399906],[-71.487087,41.95872299906],[-71.487152,41.95867499906],[-71.487287,41.95860699906],[-71.487313,41.95854399906],[-71.487313,41.95847999906],[-71.487292,41.95845599906],[-71.487153,41.95840699906],[-71.48697,41.95837999906],[-71.486782,41.95833799906],[-71.486613,41.95827499906],[-71.486538,41.95824099906],[-71.486501,41.95819499906],[-71.486476,41.95813899906],[-71.486456,41.95807699906],[-71.486452,41.95790499906],[-71.48642,41.95785499906],[-71.486368,41.95780199906],[-71.486362,41.95768199906],[-71.486306,41.95765499906],[-71.486233,41.95762699906],[-71.486135,41.95752099906],[-71.486017,41.95740599906],[-71.485985,41.95734999906],[-71.48598,41.95728399906],[-71.485993,41.95722999906],[-71.485909,41.95716499906],[-71.485865,41.95713499906],[-71.485781,41.95712499906],[-71.485633,41.95716399906],[-71.48557,41.95713999906],[-71.485513,41.95709199906],[-71.48547,41.95703299906],[-71.485442,41.95697399906],[-71.485354,41.95687299906],[-71.485314,41.95681099906],[-71.485311,41.95674199906],[-71.48536,41.95669399906],[-71.485408,41.95667299906],[-71.485484,41.95665799906],[-71.485476,41.95660199906],[-71.48542,41.95655399906],[-71.485362,41.95651499906],[-71.485315,41.95646599906],[-71.485272,41.95641199906],[-71.485243,41.95635799906],[-71.4852,41.95631199906],[-71.485084,41.95622999906],[-71.484973,41.95613799906],[-71.48496,41.95607799906],[-71.485077,41.95595599906],[-71.485142,41.95591699906],[-71.485231,41.95589299906],[-71.485509,41.95585399906],[-71.485594,41.95583399906],[-71.485671,41.95581099906],[-71.485758,41.95579299906],[-71.485852,41.95579499906],[-71.485909,41.95583999906],[-71.485986,41.95585199906],[-71.486062,41.95583899906],[-71.486145,41.95583599906],[-71.486224,41.95583899906],[-71.486303,41.95586099906],[-71.486373,41.95589899906],[-71.486478,41.95600999906],[-71.486553,41.95605999906],[-71.486683,41.95612899906],[-71.486811,41.95623199906],[-71.486891,41.95627999906],[-71.48697,41.95631499906],[-71.487049,41.95632499906],[-71.487128,41.95629299906],[-71.487256,41.95619699906],[-71.487367,41.95609599906],[-71.487419,41.95605499906],[-71.487466,41.95601499906],[-71.487491,41.95601299906],[-71.487547,41.95599999906],[-71.487597,41.95595999906],[-71.487664,41.95585299906],[-71.48769,41.95578699906],[-71.487691,41.95566699906],[-71.487684,41.95559499906],[-71.487629,41.95545499906],[-71.487624,41.95532299906],[-71.487635,41.95525399906],[-71.487692,41.95520599906],[-71.487766,41.95515599906],[-71.48783,41.95510299906],[-71.487891,41.95506099906],[-71.487941,41.95503399906],[-71.488021,41.95498199906],[-71.488072,41.95494099906],[-71.488129,41.95487099906],[-71.488149,41.95480599906],[-71.48815,41.95468499906],[-71.488141,41.95461299906],[-71.488088,41.95449299906],[-71.488072,41.95443499906],[-71.488071,41.95437699906],[-71.487954,41.95407099906],[-71.487935,41.95401899906],[-71.487846,41.95378899906],[-71.487769,41.95358299906],[-71.487754,41.95352199906],[-71.487724,41.95346399906],[-71.487615,41.95317299906],[-71.487621,41.95311599906],[-71.487747,41.95293999906],[-71.487751,41.95287199906],[-71.487854,41.95277799906],[-71.487882,41.95272199906],[-71.487901,41.95266799906],[-71.487887,41.95259999906],[-71.487835,41.95255099906],[-71.487689,41.95249499906],[-71.487471,41.95244899906],[-71.487435,41.95240099906],[-71.487416,41.95234399906],[-71.48741,41.95228299906],[-71.48741,41.95209899906],[-71.487401,41.95205599906],[-71.487387,41.95199399906],[-71.487393,41.95193499906],[-71.487442,41.95174799906],[-71.487444,41.95169099906],[-71.487432,41.95162899906],[-71.487377,41.95148099906],[-71.487338,41.95141499906],[-71.487293,41.95135099906],[-71.487264,41.95128499906],[-71.487229,41.95122499906],[-71.487179,41.95117299906],[-71.487129,41.95110899906],[-71.487129,41.95104299906],[-71.487188,41.95101799906],[-71.487248,41.95099899906],[-71.487282,41.95098399906],[-71.487411,41.95091699906],[-71.487427,41.95090199906],[-71.487456,41.95087399906],[-71.487482,41.95081399906],[-71.487478,41.95074899906],[-71.487437,41.95068499906],[-71.487324,41.95059099906],[-71.487255,41.95054899906],[-71.48719,41.95050399906],[-71.487143,41.95046699906],[-71.487116,41.95045499906],[-71.487023,41.95037599906],[-71.486974,41.95032899906],[-71.486937,41.95027299906],[-71.486873,41.95015799906],[-71.486763,41.95000199906],[-71.486717,41.94992599906],[-71.486701,41.94985799906],[-71.486701,41.94979499906],[-71.486729,41.94973299906],[-71.486786,41.94967299906],[-71.486826,41.94961299906],[-71.486842,41.94942399906],[-71.486843,41.94928399906],[-71.486869,41.94922199906],[-71.486975,41.94912299906],[-71.487005,41.94905899906],[-71.487,41.94899899906],[-71.486966,41.94894399906],[-71.486943,41.94888699906],[-71.486946,41.94882299906],[-71.486993,41.94876899906],[-71.487025,41.94871199906],[-71.487029,41.94864899906],[-71.487024,41.94858199906],[-71.486978,41.94846499906],[-71.486948,41.94840799906],[-71.486896,41.94835399906],[-71.486858,41.94830699906],[-71.486857,41.94823699906],[-71.486908,41.94818899906],[-71.487027,41.94809399906],[-71.487156,41.94796999906],[-71.487211,41.94790499906],[-71.487244,41.94784099906],[-71.487248,41.94771299906],[-71.487338,41.94753199906],[-71.487409,41.94735699906],[-71.487447,41.94718999906],[-71.48744,41.94711399906],[-71.487389,41.94704899906],[-71.487269,41.94693399906],[-71.487111,41.94669299906],[-71.487082,41.94663399906],[-71.487077,41.94651599906],[-71.487055,41.94644199906],[-71.487014,41.94639399906],[-71.48694,41.94633899906],[-71.486854,41.94630499906],[-71.486754,41.94628199906],[-71.486677,41.94627099906],[-71.486573,41.94626499906],[-71.486144,41.94626399906],[-71.486032,41.94625099906],[-71.485942,41.94620299906],[-71.485911,41.94617299906],[-71.485871,41.94613199906],[-71.485799,41.94606999906],[-71.485717,41.94601299906],[-71.485648,41.94594799906],[-71.485561,41.94591099906],[-71.485462,41.94588999906],[-71.485366,41.94588299906],[-71.485256,41.94589699906],[-71.485149,41.94592499906],[-71.485057,41.94592099906],[-71.484978,41.94590799906],[-71.4848,41.94590799906],[-71.484549,41.94590399906],[-71.484352,41.94592999906],[-71.484273,41.94588999906],[-71.484242,41.94584099906],[-71.484239,41.94578399906],[-71.484258,41.94572699906],[-71.484332,41.94559799906],[-71.484341,41.94553099906],[-71.484296,41.94546499906],[-71.484214,41.94537299906],[-71.484166,41.94530799906],[-71.484168,41.94524399906],[-71.484189,41.94517999906],[-71.484244,41.94505399906],[-71.484249,41.94497699906],[-71.484197,41.94480699906],[-71.48417,41.94475399906],[-71.484126,41.94468299906],[-71.484086,41.94462999906],[-71.48397,41.94445499906],[-71.48396,41.94439299906],[-71.483963,41.94432199906],[-71.483979,41.94424799906],[-71.484017,41.94418399906],[-71.484066,41.94412199906],[-71.484122,41.94406699906],[-71.484226,41.94397699906],[-71.484295,41.94393699906],[-71.48436,41.94390999906],[-71.484375,41.94387199906],[-71.484427,41.94391999906],[-71.484478,41.94391299906],[-71.484534,41.94385599906],[-71.484586,41.94381599906],[-71.484656,41.94378699906],[-71.48484,41.94375599906],[-71.484841,41.94373599906],[-71.484787,41.94367899906],[-71.484754,41.94361499906],[-71.484734,41.94355499906],[-71.484723,41.94349399906],[-71.484725,41.94343599906],[-71.484731,41.94337899906],[-71.484749,41.94330899906],[-71.484775,41.94323899906],[-71.484748,41.94316799906],[-71.484619,41.94293199906],[-71.484562,41.94277699906],[-71.48452,41.94271899906],[-71.484583,41.94269199906],[-71.484627,41.94263699906],[-71.484675,41.94259299906],[-71.484788,41.94250199906],[-71.484859,41.94245999906],[-71.48494,41.94243599906],[-71.48504,41.94243499906],[-71.485143,41.94244999906],[-71.485232,41.94247599906],[-71.485304,41.94250699906],[-71.485368,41.94255799906],[-71.485454,41.94267499906],[-71.485503,41.94271599906],[-71.485708,41.94283899906],[-71.485836,41.94290599906],[-71.485912,41.94293399906],[-71.48605,41.94297699906],[-71.486224,41.94300499906],[-71.486286,41.94303499906],[-71.486347,41.94307999906],[-71.486421,41.94312099906],[-71.486509,41.94315099906],[-71.486602,41.94318999906],[-71.486753,41.94326199906],[-71.486831,41.94330599906],[-71.486882,41.94336299906],[-71.486911,41.94343099906],[-71.48694,41.94363299906],[-71.486969,41.94368599906],[-71.487022,41.94373099906],[-71.487107,41.94376199906],[-71.487402,41.94389999906],[-71.487534,41.94397299906],[-71.487607,41.94400599906],[-71.487676,41.94402699906],[-71.487747,41.94404199906],[-71.48781,41.94406199906],[-71.487855,41.94408199906],[-71.487901,41.94410599906],[-71.487947,41.94415299906],[-71.487983,41.94421999906],[-71.488061,41.94433099906],[-71.4881,41.94439799906],[-71.488137,41.94440499906],[-71.488175,41.94440499906],[-71.488229,41.94439199906],[-71.488294,41.94436299906],[-71.488301,41.94434499906],[-71.48851,41.94424299906],[-71.488574,41.94419999906],[-71.488624,41.94414099906],[-71.488656,41.94408999906],[-71.488792,41.94400999906],[-71.48887,41.94397099906],[-71.488953,41.94394499906],[-71.489037,41.94392699906],[-71.489488,41.94384899906],[-71.4898,41.94377699906],[-71.490148,41.94368399906],[-71.490294,41.94364499906],[-71.490519,41.94356499906],[-71.490602,41.94352699906],[-71.490655,41.94348099906],[-71.490712,41.94341999906],[-71.490719,41.94329299906],[-71.490744,41.94325099906],[-71.490788,41.94324099906]]]}}"}, +{"type": "blockgroup", "typeId": 115002, "areaId": 28900, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.477348,41.96856699906],[-71.477196,41.96826199906],[-71.477058,41.96786499906],[-71.476875,41.96752899906],[-71.476616,41.96710599906],[-71.476471,41.96679699906],[-71.476318,41.96662899906],[-71.476181,41.96648799906],[-71.476135,41.96646499906],[-71.475891,41.96633899906],[-71.475693,41.96622099906],[-71.475609,41.96612499906],[-71.47556,41.96607199906],[-71.475418,41.96611799906],[-71.475128,41.96618999906],[-71.474739,41.96630099906],[-71.474609,41.96607599906],[-71.474426,41.96573999906],[-71.474182,41.96528599906],[-71.474168,41.96526999906],[-71.474121,41.96523299906],[-71.474037,41.96523699906],[-71.47377,41.96531299906],[-71.473396,41.96543099906],[-71.472885,41.96557999906],[-71.472427,41.96462199906],[-71.472359,41.96451599906],[-71.471458,41.96467199906],[-71.47113,41.96473699906],[-71.470291,41.96487799906],[-71.469498,41.96501199906],[-71.468422,41.96519499906],[-71.467773,41.96530199906],[-71.466904,41.96543899906],[-71.466705,41.96544999906],[-71.466614,41.96572499906],[-71.466591,41.96593099906],[-71.466606,41.96610999906],[-71.466667,41.96632399906],[-71.466789,41.96654099906],[-71.466995,41.96682699906],[-71.467201,41.96714399906],[-71.467407,41.96747999906],[-71.467651,41.96782699906],[-71.46788,41.96817399906],[-71.468117,41.96849399906],[-71.468163,41.96854399906],[-71.468391,41.96878799906],[-71.468651,41.96903999906],[-71.468719,41.96909699906],[-71.468933,41.96930299906],[-71.469269,41.96961199906],[-71.469788,41.97005499906],[-71.470047,41.97023799906],[-71.470528,41.97054699906],[-71.470657,41.97064199906],[-71.471031,41.97080999906],[-71.471344,41.97093599906],[-71.471901,41.97111899906],[-71.472336,41.97126399906],[-71.472664,41.97136699906],[-71.472893,41.97095499906],[-71.473022,41.97073699906],[-71.473366,41.97011599906],[-71.473511,41.96989799906],[-71.473831,41.96950099906],[-71.474174,41.96909699906],[-71.474609,41.96852899906],[-71.47496,41.96809399906],[-71.475006,41.96812399906],[-71.475227,41.96824599906],[-71.47554,41.96834899906],[-71.475769,41.96840999906],[-71.475868,41.96843699906],[-71.476181,41.96850599906],[-71.476456,41.96854399906],[-71.476601,41.96855499906],[-71.476753,41.96856699906],[-71.477013,41.96857099906],[-71.477127,41.96857099906],[-71.477193,41.96856899906],[-71.477348,41.96856699906]]]}}"}, +{"type": "blockgroup", "typeId": 115003, "areaId": 28901, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.489096,41.97474299906],[-71.488792,41.97443299906],[-71.48856,41.97412299906],[-71.488276,41.97363199906],[-71.487912,41.97338299906],[-71.48774,41.97322399906],[-71.487538,41.97295999906],[-71.487307,41.97235899906],[-71.487297,41.97226099906],[-71.487294,41.97210699906],[-71.487282,41.97158399906],[-71.487245,41.97134399906],[-71.487225,41.97113799906],[-71.487203,41.97099899906],[-71.487126,41.97075099906],[-71.48712,41.97067799906],[-71.487086,41.97061999906],[-71.487058,41.97055899906],[-71.487065,41.97053799906],[-71.487012,41.97000799906],[-71.48691,41.96999799906],[-71.486839,41.96998399906],[-71.486737,41.96995399906],[-71.486706,41.96975999906],[-71.486677,41.96970799906],[-71.486681,41.96948899906],[-71.48673,41.96944199906],[-71.486786,41.96940799906],[-71.486848,41.96936099906],[-71.486902,41.96931199906],[-71.486961,41.96926899906],[-71.487025,41.96923999906],[-71.487103,41.96921799906],[-71.487169,41.96918999906],[-71.487172,41.96913599906],[-71.48729,41.96907399906],[-71.487345,41.96903099906],[-71.487483,41.96896699906],[-71.487547,41.96892799906],[-71.487651,41.96882899906],[-71.487719,41.96877099906],[-71.48782,41.96869499906],[-71.487938,41.96862399906],[-71.488012,41.96856999906],[-71.488124,41.96846299906],[-71.488193,41.96840799906],[-71.48826,41.96835399906],[-71.48828,41.96830199906],[-71.48828,41.96818199906],[-71.488274,41.96811999906],[-71.488246,41.96806799906],[-71.488188,41.96801299906],[-71.488115,41.96796899906],[-71.488039,41.96793299906],[-71.487938,41.96792699906],[-71.487616,41.96792599906],[-71.487537,41.96791899906],[-71.487441,41.96789499906],[-71.487381,41.96785399906],[-71.487344,41.96780699906],[-71.487335,41.96774899906],[-71.487338,41.96767899906],[-71.48736,41.96761499906],[-71.487405,41.96755099906],[-71.487456,41.96750899906],[-71.487599,41.96741399906],[-71.487664,41.96737799906],[-71.487755,41.96737099906],[-71.487835,41.96737699906],[-71.487937,41.96731899906],[-71.487988,41.96726699906],[-71.487995,41.96720599906],[-71.487995,41.96714299906],[-71.48796,41.96708399906],[-71.487894,41.96703999906],[-71.48782,41.96702899906],[-71.487657,41.96702899906],[-71.487582,41.96701699906],[-71.487493,41.96699399906],[-71.487335,41.96694499906],[-71.487249,41.96693399906],[-71.487169,41.96694799906],[-71.487116,41.96700299906],[-71.487087,41.96711099906],[-71.487043,41.96713499906],[-71.486999,41.96710499906],[-71.486973,41.96703999906],[-71.486854,41.96679799906],[-71.48678,41.96660199906],[-71.486729,41.96654699906],[-71.486668,41.96649399906],[-71.48654,41.96640999906],[-71.486492,41.96635799906],[-71.486461,41.96630599906],[-71.48644,41.96624299906],[-71.486439,41.96591099906],[-71.486476,41.96586399906],[-71.486535,41.96582099906],[-71.486591,41.96577099906],[-71.486629,41.96571399906],[-71.486676,41.96567299906],[-71.486746,41.96563199906],[-71.486799,41.96559199906],[-71.48685,41.96553499906],[-71.48689,41.96547099906],[-71.486908,41.96541599906],[-71.486924,41.96509799906],[-71.486919,41.96497899906],[-71.486887,41.96492899906],[-71.486827,41.96488699906],[-71.486781,41.96482299906],[-71.486781,41.96471299906],[-71.486808,41.96465499906],[-71.486816,41.96462199906],[-71.486911,41.96452899906],[-71.486943,41.96447299906],[-71.48696,41.96441499906],[-71.486968,41.96434999906],[-71.486973,41.96423799906],[-71.486986,41.96411299906],[-71.487015,41.96405399906],[-71.487027,41.96398599906],[-71.487027,41.96376899906],[-71.487033,41.96370699906],[-71.487072,41.96365399906],[-71.487118,41.96361099906],[-71.487316,41.96350799906],[-71.487462,41.96344299906],[-71.487527,41.96339999906],[-71.487594,41.96336299906],[-71.487642,41.96331099906],[-71.487654,41.96325099906],[-71.487625,41.96313899906],[-71.487588,41.96302799906],[-71.487578,41.96298999906],[-71.487576,41.96287199906],[-71.487555,41.96281799906],[-71.487523,41.96276399906],[-71.487497,41.96270599906],[-71.487446,41.96265199906],[-71.487373,41.96260299906],[-71.487314,41.96254899906],[-71.487292,41.96248699906],[-71.48729,41.96242699906],[-71.487319,41.96235899906],[-71.487372,41.96231999906],[-71.487409,41.96226799906],[-71.487431,41.96219499906],[-71.487437,41.96211799906],[-71.487437,41.96197799906],[-71.487421,41.96192099906],[-71.48737,41.96186599906],[-71.487341,41.96180999906],[-71.487303,41.96176199906],[-71.487289,41.96170299906],[-71.487284,41.96163999906],[-71.487221,41.96153599906],[-71.487165,41.96148599906],[-71.486993,41.96142599906],[-71.486929,41.96138099906],[-71.486911,41.96131399906],[-71.486952,41.96126599906],[-71.486991,41.96123199906],[-71.483769,41.95983999906],[-71.483413,41.95968599906],[-71.48325,41.95961499906],[-71.483149,41.95957099906],[-71.47954,41.95801199906],[-71.475396,41.95436299906],[-71.473722,41.95288899906],[-71.472982,41.95223599906],[-71.46835,41.94815799906],[-71.468275,41.94809199906],[-71.467675,41.94756299906],[-71.467163,41.94771599906],[-71.466621,41.94794499906],[-71.466202,41.94814699906],[-71.46611,41.94818899906],[-71.465508,41.94848999906],[-71.464912,41.94875299906],[-71.463959,41.94928699906],[-71.463264,41.94973799906],[-71.462158,41.95044699906],[-71.461906,41.95062299906],[-71.461675,41.95078399906],[-71.461601,41.95083599906],[-71.46096,41.95127099906],[-71.460754,41.95136999906],[-71.460556,41.95143499906],[-71.460365,41.95146599906],[-71.460182,41.95148499906],[-71.459946,41.95148099906],[-71.459694,41.95145399906],[-71.459582,41.95143499906],[-71.459442,41.95141199906],[-71.459122,41.95134399906],[-71.458809,41.95129799906],[-71.458702,41.95129399906],[-71.458527,41.95130199906],[-71.458267,41.95132799906],[-71.45784,41.95137799906],[-71.457664,41.95139699906],[-71.45739,41.95140099906],[-71.456879,41.95139699906],[-71.455391,41.95136999906],[-71.454933,41.95137399906],[-71.454659,41.95138499906],[-71.454422,41.95142699906],[-71.454216,41.95149599906],[-71.454002,41.95153799906],[-71.453827,41.95158799906],[-71.453705,41.95164899906],[-71.453636,41.95170999906],[-71.45359,41.95178199906],[-71.45356,41.95187799906],[-71.453568,41.95203399906],[-71.45356,41.95218299906],[-71.453545,41.95223599906],[-71.453484,41.95230899906],[-71.453018,41.95262099906],[-71.452845,41.95274899906],[-71.452713,41.95284699906],[-71.452472,41.95300299906],[-71.452315,41.95310499906],[-71.45436,41.95497799906],[-71.455219,41.95563399906],[-71.456509,41.95620099906],[-71.457241,41.95656799906],[-71.45814,41.95684899906],[-71.458906,41.95689999906],[-71.460061,41.95712299906],[-71.461004,41.95729899906],[-71.461781,41.95741499906],[-71.461972,41.95771799906],[-71.46215,41.95806499906],[-71.462229,41.95877299906],[-71.462227,41.96057299906],[-71.462516,41.96149799906],[-71.46294,41.96225799906],[-71.463647,41.96295099906],[-71.463932,41.96354199906],[-71.464088,41.96409199906],[-71.465011,41.96599799906],[-71.465002,41.96655399906],[-71.464582,41.96711299906],[-71.464389,41.96809599906],[-71.464559,41.96853099906],[-71.464898,41.96909499906],[-71.46536,41.96938899906],[-71.467261,41.96979399906],[-71.469291,41.97055899906],[-71.469964,41.97093099906],[-71.469992,41.97110799906],[-71.47007,41.97103099906],[-71.470198,41.97090699906],[-71.470306,41.97080199906],[-71.470436,41.97066299906],[-71.47052,41.97057299906],[-71.470528,41.97054699906],[-71.470047,41.97023799906],[-71.469788,41.97005499906],[-71.469269,41.96961199906],[-71.468933,41.96930299906],[-71.468719,41.96909699906],[-71.468651,41.96903999906],[-71.468391,41.96878799906],[-71.468163,41.96854399906],[-71.468117,41.96849399906],[-71.46788,41.96817399906],[-71.467651,41.96782699906],[-71.467407,41.96747999906],[-71.467201,41.96714399906],[-71.466995,41.96682699906],[-71.466789,41.96654099906],[-71.466667,41.96632399906],[-71.466606,41.96610999906],[-71.466591,41.96593099906],[-71.466614,41.96572499906],[-71.466705,41.96544999906],[-71.466904,41.96543899906],[-71.467773,41.96530199906],[-71.468422,41.96519499906],[-71.469498,41.96501199906],[-71.470291,41.96487799906],[-71.47113,41.96473699906],[-71.471458,41.96467199906],[-71.472359,41.96451599906],[-71.472427,41.96462199906],[-71.472885,41.96557999906],[-71.473396,41.96543099906],[-71.47377,41.96531299906],[-71.474037,41.96523699906],[-71.474121,41.96523299906],[-71.474168,41.96526999906],[-71.474182,41.96528599906],[-71.474426,41.96573999906],[-71.474609,41.96607599906],[-71.474739,41.96630099906],[-71.475128,41.96618999906],[-71.475418,41.96611799906],[-71.47556,41.96607199906],[-71.475609,41.96612499906],[-71.475693,41.96622099906],[-71.475891,41.96633899906],[-71.476135,41.96646499906],[-71.476181,41.96648799906],[-71.476318,41.96662899906],[-71.476471,41.96679699906],[-71.476616,41.96710599906],[-71.476875,41.96752899906],[-71.477058,41.96786499906],[-71.477196,41.96826199906],[-71.477348,41.96856699906],[-71.47757,41.96854799906],[-71.477592,41.96853999906],[-71.477715,41.96868499906],[-71.478081,41.96897499906],[-71.478516,41.96924999906],[-71.478905,41.96953199906],[-71.479118,41.96971499906],[-71.479424,41.97004299906],[-71.47966,41.97030599906],[-71.480362,41.97107699906],[-71.480743,41.97150399906],[-71.481049,41.97182099906],[-71.4813,41.97203399906],[-71.481468,41.97214499906],[-71.481728,41.97231699906],[-71.481934,41.97246199906],[-71.482216,41.97265199906],[-71.482529,41.97288899906],[-71.482727,41.97315999906],[-71.48291,41.97353699906],[-71.483093,41.97388499906],[-71.483231,41.97423199906],[-71.483279,41.97439199906],[-71.483292,41.97443399906],[-71.48333,41.97468599906],[-71.483337,41.97485699906],[-71.483337,41.97493399906],[-71.483482,41.97598599906],[-71.483536,41.97615799906],[-71.483574,41.97623799906],[-71.48362,41.97631099906],[-71.483673,41.97637599906],[-71.483734,41.97643999906],[-71.483803,41.97649799906],[-71.483971,41.97659299906],[-71.484154,41.97667299906],[-71.484245,41.97670399906],[-71.484413,41.97674599906],[-71.484558,41.97676799906],[-71.485458,41.97695199906],[-71.485542,41.97697099906],[-71.485687,41.97699699906],[-71.485771,41.97701299906],[-71.48629,41.97710799906],[-71.486885,41.97724199906],[-71.487244,41.97733699906],[-71.487518,41.97742099906],[-71.487656,41.97746999906],[-71.487741,41.97751399906],[-71.487959,41.97753599906],[-71.487954,41.97750999906],[-71.487936,41.97746699906],[-71.487928,41.97739099906],[-71.487931,41.97733299906],[-71.48798,41.97727899906],[-71.488019,41.97721999906],[-71.488079,41.97717599906],[-71.488149,41.97714599906],[-71.488227,41.97712099906],[-71.488309,41.97711099906],[-71.488392,41.97711199906],[-71.488471,41.97713199906],[-71.488552,41.97712899906],[-71.488642,41.97711099906],[-71.488724,41.97708599906],[-71.488796,41.97704699906],[-71.488845,41.97699099906],[-71.48888,41.97687399906],[-71.48895,41.97669699906],[-71.488951,41.97652299906],[-71.488968,41.97649599906],[-71.488971,41.97585699906],[-71.489063,41.97547799906],[-71.489096,41.97474299906]]]}}"}, +{"type": "blockgroup", "typeId": 115004, "areaId": 28902, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.48802,41.97835599906],[-71.487967,41.97816999906],[-71.487959,41.97809999906],[-71.487959,41.97803199906],[-71.487969,41.97796199906],[-71.487969,41.97790599906],[-71.487961,41.97763399906],[-71.487959,41.97753599906],[-71.487741,41.97751399906],[-71.487656,41.97746999906],[-71.487518,41.97742099906],[-71.487244,41.97733699906],[-71.486885,41.97724199906],[-71.48629,41.97710799906],[-71.485771,41.97701299906],[-71.485687,41.97699699906],[-71.485542,41.97697099906],[-71.485458,41.97695199906],[-71.484558,41.97676799906],[-71.484413,41.97674599906],[-71.484245,41.97670399906],[-71.484154,41.97667299906],[-71.483971,41.97659299906],[-71.483803,41.97649799906],[-71.483734,41.97643999906],[-71.483673,41.97637599906],[-71.48362,41.97631099906],[-71.483574,41.97623799906],[-71.483536,41.97615799906],[-71.483482,41.97598599906],[-71.483337,41.97493399906],[-71.483337,41.97485699906],[-71.48333,41.97468599906],[-71.483292,41.97443399906],[-71.483279,41.97439199906],[-71.483231,41.97423199906],[-71.483093,41.97388499906],[-71.48291,41.97353699906],[-71.482727,41.97315999906],[-71.482529,41.97288899906],[-71.482216,41.97265199906],[-71.481934,41.97246199906],[-71.481728,41.97231699906],[-71.481468,41.97214499906],[-71.4813,41.97203399906],[-71.481049,41.97182099906],[-71.480743,41.97150399906],[-71.480362,41.97107699906],[-71.47966,41.97030599906],[-71.479424,41.97004299906],[-71.479118,41.96971499906],[-71.478905,41.96953199906],[-71.478516,41.96924999906],[-71.478081,41.96897499906],[-71.477715,41.96868499906],[-71.477592,41.96853999906],[-71.47757,41.96854799906],[-71.477348,41.96856699906],[-71.477193,41.96856899906],[-71.477127,41.96857099906],[-71.477013,41.96857099906],[-71.476753,41.96856699906],[-71.476601,41.96855499906],[-71.476456,41.96854399906],[-71.476181,41.96850599906],[-71.475868,41.96843699906],[-71.475769,41.96840999906],[-71.47554,41.96834899906],[-71.475227,41.96824599906],[-71.475006,41.96812399906],[-71.47496,41.96809399906],[-71.474609,41.96852899906],[-71.474174,41.96909699906],[-71.473831,41.96950099906],[-71.473511,41.96989799906],[-71.473366,41.97011599906],[-71.473022,41.97073699906],[-71.472893,41.97095499906],[-71.472664,41.97136699906],[-71.472336,41.97126399906],[-71.471901,41.97111899906],[-71.471344,41.97093599906],[-71.471031,41.97080999906],[-71.470657,41.97064199906],[-71.470528,41.97054699906],[-71.47052,41.97057299906],[-71.470436,41.97066299906],[-71.470306,41.97080199906],[-71.470198,41.97090699906],[-71.47007,41.97103099906],[-71.469992,41.97110799906],[-71.47031,41.97114399906],[-71.471043,41.97140599906],[-71.471787,41.97202199906],[-71.473264,41.97223799906],[-71.474141,41.97262399906],[-71.476176,41.97464499906],[-71.477866,41.97612999906],[-71.478657,41.97714099906],[-71.47877,41.97717899906],[-71.47947,41.97741199906],[-71.481785,41.97782499906],[-71.482435,41.97808699906],[-71.482797,41.97814899906],[-71.483051,41.97814399906],[-71.483499,41.97813599906],[-71.483892,41.97809699906],[-71.485146,41.97796599906],[-71.485283,41.97799699906],[-71.486156,41.97822199906],[-71.486491,41.97834499906],[-71.487205,41.97879799906],[-71.487364,41.97908499906],[-71.487651,41.97876999906],[-71.487713,41.97872899906],[-71.487774,41.97869699906],[-71.487833,41.97865699906],[-71.487859,41.97862999906],[-71.488007,41.97843199906],[-71.48802,41.97841399906],[-71.48802,41.97835599906]]]}}"}, +{"type": "blockgroup", "typeId": 116001, "areaId": 28903, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.466407,41.93469799906],[-71.466164,41.93447899906],[-71.466141,41.93445199906],[-71.465668,41.93403199906],[-71.464508,41.93296799906],[-71.463837,41.93233099906],[-71.463509,41.93196499906],[-71.461655,41.92951999906],[-71.460655,41.92818099906],[-71.459663,41.92686499906],[-71.458875,41.92579899906],[-71.45878,41.92584499906],[-71.458603,41.92592999906],[-71.458504,41.92597199906],[-71.458206,41.92608599906],[-71.458115,41.92612099906],[-71.45752,41.92633099906],[-71.456886,41.92649499906],[-71.455757,41.92676199906],[-71.45517,41.92688399906],[-71.454765,41.92696399906],[-71.454613,41.92700999906],[-71.45443,41.92708199906],[-71.454269,41.92722699906],[-71.453819,41.92785999906],[-71.453415,41.92838299906],[-71.453133,41.92871499906],[-71.452942,41.92891699906],[-71.452835,41.92898599906],[-71.452782,41.92900099906],[-71.452515,41.92908499906],[-71.452377,41.92914999906],[-71.45224,41.92919499906],[-71.452095,41.92920699906],[-71.451965,41.92918399906],[-71.451706,41.92912699906],[-71.451355,41.92902399906],[-71.450727,41.92889699906],[-71.450562,41.92886399906],[-71.450444,41.92884499906],[-71.450363,41.92883299906],[-71.450142,41.92876099906],[-71.449295,41.92848599906],[-71.448204,41.92811999906],[-71.447769,41.92798599906],[-71.447571,41.92793699906],[-71.447258,41.92790199906],[-71.446869,41.92784499906],[-71.44651,41.92778399906],[-71.446434,41.92774599906],[-71.446327,41.92769999906],[-71.446106,41.92756699906],[-71.44593,41.92740999906],[-71.445717,41.92713899906],[-71.445518,41.92681899906],[-71.445419,41.92663599906],[-71.444191,41.92718099906],[-71.443512,41.92748299906],[-71.443203,41.92762499906],[-71.442764,41.92782599906],[-71.442512,41.92794499906],[-71.442055,41.92816199906],[-71.440414,41.92892099906],[-71.439972,41.92915299906],[-71.439873,41.92909599906],[-71.43972,41.92900499906],[-71.439529,41.92889799906],[-71.438553,41.92832199906],[-71.438095,41.92806999906],[-71.43782,41.92792899906],[-71.436974,41.92751299906],[-71.436157,41.92710099906],[-71.435822,41.92693299906],[-71.435448,41.92672299906],[-71.435303,41.92662399906],[-71.435081,41.92647599906],[-71.434029,41.92573199906],[-71.433098,41.92508699906],[-71.432533,41.92468599906],[-71.432007,41.92432399906],[-71.431602,41.92402599906],[-71.431274,41.92380499906],[-71.431,41.92366799906],[-71.430664,41.92356499906],[-71.430191,41.92344299906],[-71.430168,41.92354199906],[-71.430168,41.92361099906],[-71.430214,41.92372499906],[-71.430511,41.92407599906],[-71.430756,41.92440399906],[-71.430977,41.92471299906],[-71.431229,41.92508299906],[-71.431519,41.92547599906],[-71.431953,41.92608299906],[-71.431999,41.92613599906],[-71.432281,41.92650199906],[-71.432304,41.92654799906],[-71.432335,41.92659399906],[-71.432358,41.92664299906],[-71.432388,41.92672699906],[-71.432396,41.92677699906],[-71.432419,41.92689899906],[-71.432434,41.92712799906],[-71.432442,41.92752099906],[-71.432465,41.92788299906],[-71.432287,41.92784299906],[-71.432281,41.92778799906],[-71.432274,41.92768099906],[-71.432243,41.92753599906],[-71.432152,41.92732599906],[-71.432121,41.92727699906],[-71.432045,41.92718499906],[-71.431999,41.92714699906],[-71.431892,41.92707799906],[-71.431847,41.92705899906],[-71.431755,41.92702899906],[-71.431702,41.92701699906],[-71.431664,41.92700999906],[-71.431564,41.92699999906],[-71.43148,41.92699099906],[-71.431411,41.92698799906],[-71.431282,41.92698299906],[-71.43118,41.92698399906],[-71.430939,41.92698699906],[-71.430902,41.92727199906],[-71.430891,41.92788299906],[-71.430941,41.92851799906],[-71.431054,41.92901399906],[-71.431106,41.92957899906],[-71.431203,41.93008999906],[-71.431287,41.93054099906],[-71.431271,41.93079099906],[-71.431233,41.93099899906],[-71.431149,41.93141099906],[-71.431013,41.93188999906],[-71.4309,41.93238599906],[-71.430771,41.93293899906],[-71.430717,41.93339799906],[-71.430721,41.93369499906],[-71.430738,41.93394799906],[-71.430854,41.93427599906],[-71.430955,41.93463599906],[-71.431221,41.93500199906],[-71.431443,41.93536199906],[-71.431782,41.93569699906],[-71.432425,41.93648499906],[-71.432809,41.93683499906],[-71.433142,41.93724799906],[-71.433364,41.93769799906],[-71.433707,41.93807299906],[-71.43396,41.93819399906],[-71.433982,41.93821899906],[-71.434161,41.93811999906],[-71.434669,41.93783799906],[-71.43484,41.93773899906],[-71.435471,41.93737399906],[-71.436285,41.93693299906],[-71.436559,41.93677299906],[-71.436679,41.93671899906],[-71.436709,41.93670599906],[-71.436966,41.93659199906],[-71.437376,41.93644499906],[-71.437553,41.93638199906],[-71.437889,41.93629299906],[-71.438118,41.93623399906],[-71.439689,41.93587299906],[-71.439713,41.93587099906],[-71.439873,41.93583699906],[-71.44001,41.93580799906],[-71.440304,41.93574499906],[-71.440448,41.93571399906],[-71.440697,41.93566099906],[-71.442162,41.93534099906],[-71.44281,41.93519599906],[-71.44326,41.93510099906],[-71.443718,41.93501999906],[-71.444305,41.93493999906],[-71.447723,41.93470399906],[-71.44873,41.93463099906],[-71.449781,41.93455399906],[-71.450661,41.93448999906],[-71.452057,41.93440999906],[-71.453308,41.93431899906],[-71.4539,41.93428699906],[-71.454025,41.93427999906],[-71.454582,41.93427299906],[-71.454937,41.93428099906],[-71.455093,41.93428399906],[-71.455185,41.93428399906],[-71.457245,41.93436099906],[-71.45771,41.93437599906],[-71.459076,41.93442899906],[-71.4615,41.93451699906],[-71.461569,41.93451999906],[-71.462021,41.93453599906],[-71.462776,41.93456599906],[-71.464195,41.93462399906],[-71.464622,41.93463499906],[-71.464656,41.93463599906],[-71.465477,41.93466199906],[-71.465944,41.93468099906],[-71.466232,41.93469199906],[-71.466407,41.93469799906]]]}}"}, +{"type": "blockgroup", "typeId": 116002, "areaId": 28904, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.473389,41.89197499906],[-71.472921,41.89073599906],[-71.472802,41.89042299906],[-71.472531,41.88962299906],[-71.47205,41.88819699906],[-71.471764,41.88735199906],[-71.471554,41.88673399906],[-71.470713,41.88426999906],[-71.470485,41.88359599906],[-71.470292,41.88301799906],[-71.469546,41.88085599906],[-71.469253,41.87996699906],[-71.468033,41.87641099906],[-71.466811,41.87291499906],[-71.466759,41.87276699906],[-71.466623,41.87279699906],[-71.463265,41.87352899906],[-71.461442,41.87370299906],[-71.455584,41.87442899906],[-71.449154,41.87524199906],[-71.447894,41.87538899906],[-71.447086,41.87548899906],[-71.446445,41.87556799906],[-71.445366,41.87570199906],[-71.443865,41.87588499906],[-71.443693,41.87590599906],[-71.441955,41.87611599906],[-71.44147,41.87618199906],[-71.440095,41.87634099906],[-71.438179,41.87658799906],[-71.436998,41.87675199906],[-71.434891,41.87703899906],[-71.434329,41.87711899906],[-71.43392,41.87717399906],[-71.433654,41.87720999906],[-71.43383,41.87749499906],[-71.434265,41.87823899906],[-71.434654,41.87892899906],[-71.434742,41.87910799906],[-71.434776,41.87917699906],[-71.43486,41.87933499906],[-71.434906,41.87942099906],[-71.434976,41.87956099906],[-71.435295,41.88020299906],[-71.436302,41.88242299906],[-71.436905,41.88378099906],[-71.437073,41.88413199906],[-71.437805,41.88576899906],[-71.438187,41.88659299906],[-71.438211,41.88664799906],[-71.438629,41.88760399906],[-71.438739,41.88784199906],[-71.438759,41.88788599906],[-71.438881,41.88816499906],[-71.438995,41.88841199906],[-71.439102,41.88865999906],[-71.439339,41.88916799906],[-71.439583,41.88966799906],[-71.439598,41.88968999906],[-71.439756,41.89000399906],[-71.439807,41.89009899906],[-71.439842,41.89016299906],[-71.43998,41.89039999906],[-71.440239,41.89082299906],[-71.440514,41.89124699906],[-71.440804,41.89166599906],[-71.440987,41.89191099906],[-71.441162,41.89215499906],[-71.441185,41.89218099906],[-71.441353,41.89239499906],[-71.441811,41.89292499906],[-71.442223,41.89339099906],[-71.442871,41.89414199906],[-71.443375,41.89468799906],[-71.443474,41.89480199906],[-71.443535,41.89487499906],[-71.444,41.89454999906],[-71.444244,41.89438599906],[-71.444325,41.89433799906],[-71.444565,41.89419899906],[-71.444672,41.89414599906],[-71.444778,41.89409299906],[-71.444939,41.89401999906],[-71.445198,41.89390899906],[-71.445648,41.89374499906],[-71.445847,41.89367699906],[-71.44606,41.89360799906],[-71.446213,41.89356599906],[-71.446251,41.89355099906],[-71.446732,41.89341399906],[-71.4468,41.89339099906],[-71.450015,41.89245299906],[-71.450488,41.89241599906],[-71.45073,41.89245299906],[-71.450946,41.89237999906],[-71.451401,41.89234399906],[-71.452675,41.89214699906],[-71.452929,41.89209999906],[-71.453087,41.89207099906],[-71.453293,41.89202899906],[-71.453514,41.89197199906],[-71.453728,41.89190699906],[-71.453934,41.89183799906],[-71.454185,41.89173899906],[-71.454437,41.89162799906],[-71.454674,41.89150599906],[-71.45491,41.89137599906],[-71.455139,41.89123499906],[-71.45536,41.89108699906],[-71.455568,41.89091999906],[-71.455589,41.89090299906],[-71.455754,41.89075899906],[-71.455811,41.89070899906],[-71.455933,41.89057899906],[-71.455963,41.89055599906],[-71.456146,41.89034699906],[-71.456406,41.89001499906],[-71.456779,41.88946899906],[-71.457016,41.88913299906],[-71.457392,41.88857899906],[-71.457443,41.88850399906],[-71.457497,41.88843199906],[-71.458466,41.88702799906],[-71.458763,41.88729099906],[-71.459061,41.88753499906],[-71.45919,41.88764599906],[-71.459373,41.88777899906],[-71.459442,41.88780999906],[-71.459618,41.88785899906],[-71.45974,41.88787499906],[-71.460121,41.88788999906],[-71.460381,41.88788999906],[-71.460526,41.88789399906],[-71.460701,41.88788599906],[-71.460884,41.88785599906],[-71.461174,41.88779099906],[-71.461372,41.88775599906],[-71.46167,41.88771799906],[-71.461853,41.88768799906],[-71.461941,41.88766799906],[-71.462135,41.88760399906],[-71.462426,41.88748899906],[-71.462524,41.88744399906],[-71.462677,41.88738299906],[-71.462769,41.88734099906],[-71.46299,41.88726799906],[-71.463005,41.88732099906],[-71.46302,41.88743199906],[-71.46302,41.88747799906],[-71.463013,41.88752699906],[-71.463013,41.88757299906],[-71.46299,41.88772199906],[-71.46299,41.88780599906],[-71.46302,41.88797399906],[-71.463036,41.88814899906],[-71.463051,41.88824099906],[-71.463074,41.88851199906],[-71.463074,41.88867199906],[-71.463058,41.88878999906],[-71.463058,41.88884699906],[-71.463074,41.88887399906],[-71.463081,41.88889699906],[-71.463104,41.88891599906],[-71.463127,41.88892699906],[-71.463165,41.88893499906],[-71.463364,41.88892699906],[-71.463455,41.88891599906],[-71.463707,41.88886999906],[-71.463783,41.88884399906],[-71.463829,41.88882399906],[-71.463982,41.88872899906],[-71.464043,41.88868299906],[-71.464111,41.88864499906],[-71.464233,41.88861799906],[-71.464386,41.88859899906],[-71.464485,41.88859199906],[-71.464577,41.88857999906],[-71.464714,41.88855399906],[-71.464989,41.88848099906],[-71.465096,41.88845799906],[-71.465195,41.88843199906],[-71.46537,41.88839299906],[-71.465515,41.88837099906],[-71.465575,41.88835699906],[-71.465599,41.88835499906],[-71.465721,41.88833199906],[-71.465866,41.88828699906],[-71.465942,41.88826799906],[-71.466064,41.88822199906],[-71.466133,41.88820299906],[-71.466232,41.88818699906],[-71.46637,41.88818399906],[-71.466454,41.88819499906],[-71.466629,41.88820999906],[-71.466713,41.88822199906],[-71.46701,41.88822899906],[-71.467247,41.88821799906],[-71.467377,41.88820299906],[-71.467514,41.88819899906],[-71.467758,41.88820599906],[-71.46772,41.88832099906],[-71.467506,41.88886299906],[-71.467379,41.88916399906],[-71.467354,41.88922199906],[-71.467232,41.88951099906],[-71.466965,41.89020499906],[-71.466667,41.89092999906],[-71.466621,41.89104099906],[-71.466591,41.89115099906],[-71.466576,41.89125399906],[-71.466568,41.89135699906],[-71.466568,41.89145999906],[-71.466576,41.89159799906],[-71.466621,41.89203599906],[-71.466667,41.89236099906],[-71.466698,41.89248699906],[-71.466736,41.89261199906],[-71.466766,41.89274199906],[-71.46698,41.89332199906],[-71.467053,41.89353499906],[-71.467171,41.89387899906],[-71.4673,41.89418399906],[-71.467529,41.89469499906],[-71.46769,41.89509199906],[-71.467796,41.89527099906],[-71.468056,41.89578999906],[-71.468063,41.89585899906],[-71.468147,41.89585899906],[-71.468262,41.89585099906],[-71.468307,41.89584399906],[-71.468498,41.89579399906],[-71.468803,41.89568699906],[-71.46904,41.89558799906],[-71.470055,41.89519099906],[-71.470381,41.89505999906],[-71.470474,41.89502299906],[-71.470566,41.89498099906],[-71.470764,41.89486699906],[-71.470924,41.89474899906],[-71.470985,41.89468399906],[-71.471031,41.89462699906],[-71.471064,41.89457699906],[-71.47126,41.89426199906],[-71.471298,41.89418599906],[-71.471633,41.89362599906],[-71.471806,41.89340099906],[-71.471866,41.89335199906],[-71.471961,41.89328799906],[-71.472097,41.89318999906],[-71.472291,41.89310099906],[-71.472686,41.89300399906],[-71.472794,41.89298199906],[-71.473022,41.89291799906],[-71.473114,41.89288699906],[-71.473167,41.89285699906],[-71.473198,41.89282199906],[-71.473228,41.89274599906],[-71.473236,41.89268899906],[-71.473343,41.89217399906],[-71.473358,41.89207499906],[-71.473389,41.89197499906]]]}}"}, +{"type": "blockgroup", "typeId": 116003, "areaId": 28905, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.458875,41.92579899906],[-71.458775,41.92566399906],[-71.457512,41.92396199906],[-71.457314,41.92366399906],[-71.457176,41.92343499906],[-71.457054,41.92320599906],[-71.45694,41.92297399906],[-71.456718,41.92249299906],[-71.456571,41.92215399906],[-71.456261,41.92145499906],[-71.456146,41.92119199906],[-71.456134,41.92116399906],[-71.455643,41.92002899906],[-71.454994,41.91855999906],[-71.453636,41.91545499906],[-71.453499,41.91512299906],[-71.453338,41.91475799906],[-71.453094,41.91420699906],[-71.452957,41.91391399906],[-71.451881,41.91144599906],[-71.451561,41.91075499906],[-71.451393,41.91041599906],[-71.451248,41.91014899906],[-71.45089,41.90952199906],[-71.450745,41.90926699906],[-71.450333,41.90857299906],[-71.449669,41.90739799906],[-71.449181,41.90658199906],[-71.448708,41.90573899906],[-71.448441,41.90523499906],[-71.44828,41.90488399906],[-71.44799,41.90418199906],[-71.447685,41.90341899906],[-71.44754,41.90303799906],[-71.447365,41.90255399906],[-71.447334,41.90248099906],[-71.447182,41.90252699906],[-71.447158,41.90253099906],[-71.447029,41.90256499906],[-71.446976,41.90258399906],[-71.446678,41.90265999906],[-71.446159,41.90280899906],[-71.445808,41.90289699906],[-71.445648,41.90292699906],[-71.445618,41.90293499906],[-71.445404,41.90296899906],[-71.445076,41.90301499906],[-71.444695,41.90304599906],[-71.444489,41.90305299906],[-71.44429,41.90306499906],[-71.443878,41.90311399906],[-71.443718,41.90314099906],[-71.443492,41.90318699906],[-71.443398,41.90320599906],[-71.44323,41.90324799906],[-71.443149,41.90327099906],[-71.443062,41.90329699906],[-71.442957,41.90333199906],[-71.44265,41.90343499906],[-71.442406,41.90352999906],[-71.441864,41.90375499906],[-71.441666,41.90385399906],[-71.441353,41.90404899906],[-71.441139,41.90422799906],[-71.44104,41.90431999906],[-71.440796,41.90457499906],[-71.440681,41.90470899906],[-71.44059,41.90484199906],[-71.440491,41.90497199906],[-71.440331,41.90520899906],[-71.440178,41.90541099906],[-71.440117,41.90550599906],[-71.439926,41.90576199906],[-71.439804,41.90588799906],[-71.439743,41.90594099906],[-71.439514,41.90610499906],[-71.439285,41.90625399906],[-71.439117,41.90634899906],[-71.438866,41.90650899906],[-71.438515,41.90672299906],[-71.43821,41.90688299906],[-71.438019,41.90695999906],[-71.43792,41.90698999906],[-71.437714,41.90703999906],[-71.437477,41.90707799906],[-71.437073,41.90712699906],[-71.436943,41.90714999906],[-71.436691,41.90721499906],[-71.436501,41.90729499906],[-71.436256,41.90741299906],[-71.436211,41.90743599906],[-71.436111,41.90747799906],[-71.435898,41.90755799906],[-71.435677,41.90760799906],[-71.435562,41.90761899906],[-71.435448,41.90762299906],[-71.435349,41.90761899906],[-71.435143,41.90758899906],[-71.43502,41.90756199906],[-71.434792,41.90749399906],[-71.434573,41.90741999906],[-71.434364,41.90734899906],[-71.434196,41.90727599906],[-71.434036,41.90718799906],[-71.433891,41.90709699906],[-71.433823,41.90704699906],[-71.433594,41.90692499906],[-71.433472,41.90687199906],[-71.43325,41.90679599906],[-71.433052,41.90674599906],[-71.432884,41.90671499906],[-71.432755,41.90670399906],[-71.432396,41.90669599906],[-71.432291,41.90669799906],[-71.431854,41.90670399906],[-71.431648,41.90669299906],[-71.432129,41.90775699906],[-71.432358,41.90809199906],[-71.432579,41.90840099906],[-71.432793,41.90871799906],[-71.432945,41.90901199906],[-71.433159,41.90934799906],[-71.433464,41.90973999906],[-71.433739,41.91004899906],[-71.433884,41.91025199906],[-71.433968,41.91043099906],[-71.434168,41.91120899906],[-71.434174,41.91123199906],[-71.434265,41.91144899906],[-71.434418,41.91167099906],[-71.43483,41.91210599906],[-71.434914,41.91220099906],[-71.434906,41.91254799906],[-71.434914,41.91279199906],[-71.434898,41.91296799906],[-71.43486,41.91307099906],[-71.434654,41.91344499906],[-71.434586,41.91364299906],[-71.434494,41.91382999906],[-71.434387,41.91398999906],[-71.434296,41.91411599906],[-71.434235,41.91425699906],[-71.434196,41.91438299906],[-71.434135,41.91475299906],[-71.434097,41.91483299906],[-71.434036,41.91492499906],[-71.433937,41.91503099906],[-71.4338,41.91513399906],[-71.433434,41.91535599906],[-71.433357,41.91542099906],[-71.433296,41.91550399906],[-71.433273,41.91557299906],[-71.433304,41.91591299906],[-71.433357,41.91640099906],[-71.433464,41.91699999906],[-71.433548,41.91757199906],[-71.43354,41.91770899906],[-71.433502,41.91788099906],[-71.433472,41.91797299906],[-71.433426,41.91804899906],[-71.433365,41.91810999906],[-71.433263,41.91817899906],[-71.433235,41.91820099906],[-71.433205,41.91821599906],[-71.433159,41.91823999906],[-71.43306,41.91826999906],[-71.432953,41.91828899906],[-71.432701,41.91829299906],[-71.432571,41.91828899906],[-71.432281,41.91825499906],[-71.432091,41.91822099906],[-71.431702,41.91817099906],[-71.430992,41.91811799906],[-71.430836,41.91808799906],[-71.430573,41.91803699906],[-71.430252,41.91800699906],[-71.430046,41.91799499906],[-71.429703,41.91801499906],[-71.429092,41.91805999906],[-71.428146,41.91809799906],[-71.427925,41.91810199906],[-71.427834,41.91812899906],[-71.427755,41.91818099906],[-71.427559,41.91832399906],[-71.42733,41.91855599906],[-71.427109,41.91875599906],[-71.426857,41.91898699906],[-71.42671,41.91909599906],[-71.4263,41.91939899906],[-71.426224,41.91946799906],[-71.426033,41.91955899906],[-71.425919,41.91958999906],[-71.425827,41.91962799906],[-71.425758,41.91966599906],[-71.42569,41.91971599906],[-71.425552,41.91992999906],[-71.425354,41.92021899906],[-71.425529,41.92030699906],[-71.425713,41.92040599906],[-71.425888,41.92050899906],[-71.426201,41.92071899906],[-71.426338,41.92082599906],[-71.426605,41.92105899906],[-71.426743,41.92118799906],[-71.426908,41.92135599906],[-71.427081,41.92153199906],[-71.427216,41.92166899906],[-71.427544,41.92192799906],[-71.427979,41.92221099906],[-71.429008,41.92282899906],[-71.429451,41.92310299906],[-71.429855,41.92333599906],[-71.430054,41.92340899906],[-71.430191,41.92344299906],[-71.430664,41.92356499906],[-71.431,41.92366799906],[-71.431274,41.92380499906],[-71.431602,41.92402599906],[-71.432007,41.92432399906],[-71.432533,41.92468599906],[-71.433098,41.92508699906],[-71.434029,41.92573199906],[-71.435081,41.92647599906],[-71.435303,41.92662399906],[-71.435448,41.92672299906],[-71.435822,41.92693299906],[-71.436157,41.92710099906],[-71.436974,41.92751299906],[-71.43782,41.92792899906],[-71.438095,41.92806999906],[-71.438553,41.92832199906],[-71.439529,41.92889799906],[-71.43972,41.92900499906],[-71.439873,41.92909599906],[-71.439972,41.92915299906],[-71.440414,41.92892099906],[-71.442055,41.92816199906],[-71.442512,41.92794499906],[-71.442764,41.92782599906],[-71.443203,41.92762499906],[-71.443512,41.92748299906],[-71.444191,41.92718099906],[-71.445419,41.92663599906],[-71.445518,41.92681899906],[-71.445717,41.92713899906],[-71.44593,41.92740999906],[-71.446106,41.92756699906],[-71.446327,41.92769999906],[-71.446434,41.92774599906],[-71.44651,41.92778399906],[-71.446869,41.92784499906],[-71.447258,41.92790199906],[-71.447571,41.92793699906],[-71.447769,41.92798599906],[-71.448204,41.92811999906],[-71.449295,41.92848599906],[-71.450142,41.92876099906],[-71.450363,41.92883299906],[-71.450444,41.92884499906],[-71.450562,41.92886399906],[-71.450727,41.92889699906],[-71.451355,41.92902399906],[-71.451706,41.92912699906],[-71.451965,41.92918399906],[-71.452095,41.92920699906],[-71.45224,41.92919499906],[-71.452377,41.92914999906],[-71.452515,41.92908499906],[-71.452782,41.92900099906],[-71.452835,41.92898599906],[-71.452942,41.92891699906],[-71.453133,41.92871499906],[-71.453415,41.92838299906],[-71.453819,41.92785999906],[-71.454269,41.92722699906],[-71.45443,41.92708199906],[-71.454613,41.92700999906],[-71.454765,41.92696399906],[-71.45517,41.92688399906],[-71.455757,41.92676199906],[-71.456886,41.92649499906],[-71.45752,41.92633099906],[-71.458115,41.92612099906],[-71.458206,41.92608599906],[-71.458504,41.92597199906],[-71.458603,41.92592999906],[-71.45878,41.92584499906],[-71.458875,41.92579899906]]]}}"}, +{"type": "blockgroup", "typeId": 116004, "areaId": 28906, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.482147,41.91768899906],[-71.481817,41.91691099906],[-71.481486,41.91593099906],[-71.48138,41.91561699906],[-71.481095,41.91477399906],[-71.480655,41.91347599906],[-71.477563,41.90438899906],[-71.477527,41.90427799906],[-71.477064,41.90292399906],[-71.476903,41.90244799906],[-71.4768,41.90214299906],[-71.476637,41.90167199906],[-71.476486,41.90135999906],[-71.47641,41.90119599906],[-71.476372,41.90097799906],[-71.476273,41.90082199906],[-71.476242,41.90071899906],[-71.476166,41.90051299906],[-71.475914,41.89978399906],[-71.475876,41.89964299906],[-71.47583,41.89949799906],[-71.475792,41.89935299906],[-71.4757,41.89910099906],[-71.475586,41.89872399906],[-71.475555,41.89853699906],[-71.475555,41.89847599906],[-71.475548,41.89841499906],[-71.475517,41.89827699906],[-71.475464,41.89814399906],[-71.475372,41.89786499906],[-71.475334,41.89771999906],[-71.475288,41.89757899906],[-71.475151,41.89721299906],[-71.47509,41.89695699906],[-71.475052,41.89683199906],[-71.475021,41.89675899906],[-71.474998,41.89668299906],[-71.474876,41.89640399906],[-71.474815,41.89630499906],[-71.474801,41.89628799906],[-71.474795,41.89624699906],[-71.474161,41.89401099906],[-71.473389,41.89197499906],[-71.473358,41.89207499906],[-71.473343,41.89217399906],[-71.473236,41.89268899906],[-71.473228,41.89274599906],[-71.473198,41.89282199906],[-71.473167,41.89285699906],[-71.473114,41.89288699906],[-71.473022,41.89291799906],[-71.472794,41.89298199906],[-71.472686,41.89300399906],[-71.472291,41.89310099906],[-71.472097,41.89318999906],[-71.471961,41.89328799906],[-71.471866,41.89335199906],[-71.471806,41.89340099906],[-71.471633,41.89362599906],[-71.471298,41.89418599906],[-71.47126,41.89426199906],[-71.471064,41.89457699906],[-71.471031,41.89462699906],[-71.470985,41.89468399906],[-71.470924,41.89474899906],[-71.470764,41.89486699906],[-71.470566,41.89498099906],[-71.470474,41.89502299906],[-71.470381,41.89505999906],[-71.470055,41.89519099906],[-71.46904,41.89558799906],[-71.468803,41.89568699906],[-71.468498,41.89579399906],[-71.468307,41.89584399906],[-71.468262,41.89585099906],[-71.468147,41.89585899906],[-71.468063,41.89585899906],[-71.468056,41.89578999906],[-71.467796,41.89527099906],[-71.46769,41.89509199906],[-71.467529,41.89469499906],[-71.4673,41.89418399906],[-71.467171,41.89387899906],[-71.467053,41.89353499906],[-71.46698,41.89332199906],[-71.466766,41.89274199906],[-71.466736,41.89261199906],[-71.466698,41.89248699906],[-71.466667,41.89236099906],[-71.466621,41.89203599906],[-71.466576,41.89159799906],[-71.466568,41.89145999906],[-71.466568,41.89135699906],[-71.466576,41.89125399906],[-71.466591,41.89115099906],[-71.466621,41.89104099906],[-71.466667,41.89092999906],[-71.466965,41.89020499906],[-71.467232,41.88951099906],[-71.467354,41.88922199906],[-71.467379,41.88916399906],[-71.467506,41.88886299906],[-71.46772,41.88832099906],[-71.467758,41.88820599906],[-71.467514,41.88819899906],[-71.467377,41.88820299906],[-71.467247,41.88821799906],[-71.46701,41.88822899906],[-71.466713,41.88822199906],[-71.466629,41.88820999906],[-71.466454,41.88819499906],[-71.46637,41.88818399906],[-71.466232,41.88818699906],[-71.466133,41.88820299906],[-71.466064,41.88822199906],[-71.465942,41.88826799906],[-71.465866,41.88828699906],[-71.465721,41.88833199906],[-71.465599,41.88835499906],[-71.465575,41.88835699906],[-71.465515,41.88837099906],[-71.46537,41.88839299906],[-71.465195,41.88843199906],[-71.465096,41.88845799906],[-71.464989,41.88848099906],[-71.464714,41.88855399906],[-71.464577,41.88857999906],[-71.464485,41.88859199906],[-71.464386,41.88859899906],[-71.464233,41.88861799906],[-71.464111,41.88864499906],[-71.464043,41.88868299906],[-71.463982,41.88872899906],[-71.463829,41.88882399906],[-71.463783,41.88884399906],[-71.463707,41.88886999906],[-71.463455,41.88891599906],[-71.463364,41.88892699906],[-71.463165,41.88893499906],[-71.463127,41.88892699906],[-71.463104,41.88891599906],[-71.463081,41.88889699906],[-71.463074,41.88887399906],[-71.463058,41.88884699906],[-71.463058,41.88878999906],[-71.463074,41.88867199906],[-71.463074,41.88851199906],[-71.463051,41.88824099906],[-71.463036,41.88814899906],[-71.46302,41.88797399906],[-71.46299,41.88780599906],[-71.46299,41.88772199906],[-71.463013,41.88757299906],[-71.463013,41.88752699906],[-71.46302,41.88747799906],[-71.46302,41.88743199906],[-71.463005,41.88732099906],[-71.46299,41.88726799906],[-71.462769,41.88734099906],[-71.462677,41.88738299906],[-71.462524,41.88744399906],[-71.462426,41.88748899906],[-71.462135,41.88760399906],[-71.461941,41.88766799906],[-71.461853,41.88768799906],[-71.46167,41.88771799906],[-71.461372,41.88775599906],[-71.461174,41.88779099906],[-71.460884,41.88785599906],[-71.460701,41.88788599906],[-71.460526,41.88789399906],[-71.460381,41.88788999906],[-71.460121,41.88788999906],[-71.45974,41.88787499906],[-71.459618,41.88785899906],[-71.459442,41.88780999906],[-71.459373,41.88777899906],[-71.45919,41.88764599906],[-71.459061,41.88753499906],[-71.458763,41.88729099906],[-71.458466,41.88702799906],[-71.457497,41.88843199906],[-71.457443,41.88850399906],[-71.457392,41.88857899906],[-71.457016,41.88913299906],[-71.456779,41.88946899906],[-71.456406,41.89001499906],[-71.456146,41.89034699906],[-71.455963,41.89055599906],[-71.455933,41.89057899906],[-71.455811,41.89070899906],[-71.455754,41.89075899906],[-71.455589,41.89090299906],[-71.455568,41.89091999906],[-71.45536,41.89108699906],[-71.455139,41.89123499906],[-71.45491,41.89137599906],[-71.454674,41.89150599906],[-71.454437,41.89162799906],[-71.454185,41.89173899906],[-71.453934,41.89183799906],[-71.453728,41.89190699906],[-71.453514,41.89197199906],[-71.453293,41.89202899906],[-71.453087,41.89207099906],[-71.452929,41.89209999906],[-71.452675,41.89214699906],[-71.451401,41.89234399906],[-71.450946,41.89237999906],[-71.45073,41.89245299906],[-71.450488,41.89241599906],[-71.450015,41.89245299906],[-71.4468,41.89339099906],[-71.446732,41.89341399906],[-71.446251,41.89355099906],[-71.446213,41.89356599906],[-71.44606,41.89360799906],[-71.445847,41.89367699906],[-71.445648,41.89374499906],[-71.445198,41.89390899906],[-71.444939,41.89401999906],[-71.444778,41.89409299906],[-71.444672,41.89414599906],[-71.444565,41.89419899906],[-71.444325,41.89433799906],[-71.444244,41.89438599906],[-71.444,41.89454999906],[-71.443535,41.89487499906],[-71.443611,41.89495099906],[-71.443909,41.89528699906],[-71.444077,41.89549599906],[-71.444199,41.89565699906],[-71.444397,41.89591199906],[-71.444733,41.89637399906],[-71.444878,41.89660599906],[-71.445023,41.89685399906],[-71.445152,41.89710599906],[-71.445274,41.89735799906],[-71.445396,41.89763299906],[-71.445423,41.89770299906],[-71.445503,41.89791099906],[-71.445618,41.89818599906],[-71.446304,41.89991799906],[-71.446465,41.90031399906],[-71.446495,41.90040599906],[-71.447205,41.90217599906],[-71.447311,41.90241599906],[-71.447334,41.90248099906],[-71.448044,41.90229399906],[-71.448441,41.90220299906],[-71.448524,41.90218699906],[-71.448875,41.90212199906],[-71.449051,41.90209999906],[-71.44915,41.90208799906],[-71.449486,41.90205799906],[-71.449806,41.90204599906],[-71.451073,41.90204199906],[-71.45134,41.90203899906],[-71.451607,41.90203099906],[-71.452087,41.90204199906],[-71.452309,41.90205399906],[-71.452522,41.90207299906],[-71.452751,41.90211099906],[-71.45298,41.90216099906],[-71.453194,41.90222499906],[-71.453407,41.90230899906],[-71.453987,41.90260699906],[-71.454926,41.90317199906],[-71.455254,41.90335799906],[-71.455574,41.90352999906],[-71.455894,41.90368999906],[-71.456299,41.90386199906],[-71.456421,41.90390799906],[-71.456657,41.90398799906],[-71.456757,41.90401799906],[-71.45713,41.90412099906],[-71.457413,41.90418599906],[-71.457748,41.90425099906],[-71.45826,41.90434299906],[-71.459469,41.90453399906],[-71.459546,41.90454599906],[-71.460564,41.90470499906],[-71.461876,41.90491899906],[-71.462723,41.90505999906],[-71.463379,41.90518099906],[-71.463737,41.90524699906],[-71.465027,41.90547199906],[-71.46579,41.90562099906],[-71.466248,41.90576199906],[-71.466599,41.90589899906],[-71.466949,41.90607799906],[-71.467323,41.90633399906],[-71.467773,41.90664699906],[-71.467964,41.90679199906],[-71.468048,41.90684899906],[-71.468353,41.90707799906],[-71.468623,41.90726499906],[-71.468941,41.90748599906],[-71.46917,41.90765799906],[-71.469406,41.90783699906],[-71.469948,41.90822599906],[-71.470245,41.90844699906],[-71.470932,41.90897799906],[-71.471222,41.90925999906],[-71.471451,41.90954199906],[-71.471741,41.90994299906],[-71.471959,41.91032299906],[-71.472031,41.91044999906],[-71.472282,41.91086199906],[-71.47245,41.91115599906],[-71.472656,41.91146499906],[-71.472931,41.91175099906],[-71.47319,41.91195699906],[-71.473495,41.91216999906],[-71.473969,41.91240299906],[-71.474228,41.91252099906],[-71.474426,41.91260899906],[-71.474861,41.91279199906],[-71.475945,41.91327299906],[-71.476479,41.91352099906],[-71.47665,41.91359599906],[-71.476848,41.91368299906],[-71.477097,41.91379199906],[-71.477562,41.91405099906],[-71.477989,41.91437099906],[-71.478514,41.91477599906],[-71.479248,41.91537099906],[-71.479271,41.91538199906],[-71.479813,41.91582499906],[-71.480255,41.91617599906],[-71.480911,41.91670999906],[-71.481124,41.91687599906],[-71.481644,41.91728199906],[-71.482147,41.91768899906]]]}}"}, +{"type": "blockgroup", "typeId": 116005, "areaId": 28907, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.4845,41.92498899906],[-71.484164,41.92397899906],[-71.483204,41.92105799906],[-71.482963,41.92007399906],[-71.482868,41.91979999906],[-71.482705,41.91900199906],[-71.482147,41.91768899906],[-71.481644,41.91728199906],[-71.481124,41.91687599906],[-71.480911,41.91670999906],[-71.480255,41.91617599906],[-71.479813,41.91582499906],[-71.479271,41.91538199906],[-71.479248,41.91537099906],[-71.478514,41.91477599906],[-71.477989,41.91437099906],[-71.477562,41.91405099906],[-71.477097,41.91379199906],[-71.476848,41.91368299906],[-71.47665,41.91359599906],[-71.476479,41.91352099906],[-71.475945,41.91327299906],[-71.474861,41.91279199906],[-71.474426,41.91260899906],[-71.474228,41.91252099906],[-71.473969,41.91240299906],[-71.473495,41.91216999906],[-71.47319,41.91195699906],[-71.472931,41.91175099906],[-71.472656,41.91146499906],[-71.47245,41.91115599906],[-71.472282,41.91086199906],[-71.472031,41.91044999906],[-71.471959,41.91032299906],[-71.471741,41.90994299906],[-71.471451,41.90954199906],[-71.471222,41.90925999906],[-71.470932,41.90897799906],[-71.470245,41.90844699906],[-71.469948,41.90822599906],[-71.469406,41.90783699906],[-71.46917,41.90765799906],[-71.468941,41.90748599906],[-71.468623,41.90726499906],[-71.468353,41.90707799906],[-71.468048,41.90684899906],[-71.467964,41.90679199906],[-71.467773,41.90664699906],[-71.467323,41.90633399906],[-71.466949,41.90607799906],[-71.466599,41.90589899906],[-71.466248,41.90576199906],[-71.46579,41.90562099906],[-71.465027,41.90547199906],[-71.463737,41.90524699906],[-71.463379,41.90518099906],[-71.462723,41.90505999906],[-71.461876,41.90491899906],[-71.460564,41.90470499906],[-71.459546,41.90454599906],[-71.459469,41.90453399906],[-71.45826,41.90434299906],[-71.457748,41.90425099906],[-71.457413,41.90418599906],[-71.45713,41.90412099906],[-71.456757,41.90401799906],[-71.456657,41.90398799906],[-71.456421,41.90390799906],[-71.456299,41.90386199906],[-71.455894,41.90368999906],[-71.455574,41.90352999906],[-71.455254,41.90335799906],[-71.454926,41.90317199906],[-71.453987,41.90260699906],[-71.453407,41.90230899906],[-71.453194,41.90222499906],[-71.45298,41.90216099906],[-71.452751,41.90211099906],[-71.452522,41.90207299906],[-71.452309,41.90205399906],[-71.452087,41.90204199906],[-71.451607,41.90203099906],[-71.45134,41.90203899906],[-71.451073,41.90204199906],[-71.449806,41.90204599906],[-71.449486,41.90205799906],[-71.44915,41.90208799906],[-71.449051,41.90209999906],[-71.448875,41.90212199906],[-71.448524,41.90218699906],[-71.448441,41.90220299906],[-71.448044,41.90229399906],[-71.447334,41.90248099906],[-71.447365,41.90255399906],[-71.44754,41.90303799906],[-71.447685,41.90341899906],[-71.44799,41.90418199906],[-71.44828,41.90488399906],[-71.448441,41.90523499906],[-71.448708,41.90573899906],[-71.449181,41.90658199906],[-71.449669,41.90739799906],[-71.450333,41.90857299906],[-71.450745,41.90926699906],[-71.45089,41.90952199906],[-71.451248,41.91014899906],[-71.451393,41.91041599906],[-71.451561,41.91075499906],[-71.451881,41.91144599906],[-71.452957,41.91391399906],[-71.453094,41.91420699906],[-71.453338,41.91475799906],[-71.453499,41.91512299906],[-71.453636,41.91545499906],[-71.454994,41.91855999906],[-71.455643,41.92002899906],[-71.456134,41.92116399906],[-71.456146,41.92119199906],[-71.456261,41.92145499906],[-71.456571,41.92215399906],[-71.456718,41.92249299906],[-71.45694,41.92297399906],[-71.457054,41.92320599906],[-71.457176,41.92343499906],[-71.457314,41.92366399906],[-71.457512,41.92396199906],[-71.458775,41.92566399906],[-71.458875,41.92579899906],[-71.459663,41.92686499906],[-71.460655,41.92818099906],[-71.461655,41.92951999906],[-71.463509,41.93196499906],[-71.463837,41.93233099906],[-71.464508,41.93296799906],[-71.465668,41.93403199906],[-71.466141,41.93445199906],[-71.466164,41.93447899906],[-71.466407,41.93469799906],[-71.466232,41.93469199906],[-71.465944,41.93468099906],[-71.465477,41.93466199906],[-71.464656,41.93463599906],[-71.464622,41.93463499906],[-71.464195,41.93462399906],[-71.462776,41.93456599906],[-71.462021,41.93453599906],[-71.461569,41.93451999906],[-71.4615,41.93451699906],[-71.459076,41.93442899906],[-71.45771,41.93437599906],[-71.457245,41.93436099906],[-71.455185,41.93428399906],[-71.455093,41.93428399906],[-71.454937,41.93428099906],[-71.454582,41.93427299906],[-71.454025,41.93427999906],[-71.4539,41.93428699906],[-71.453308,41.93431899906],[-71.452057,41.93440999906],[-71.450661,41.93448999906],[-71.449781,41.93455399906],[-71.449951,41.93464299906],[-71.450104,41.93469199906],[-71.450386,41.93479899906],[-71.450668,41.93491399906],[-71.451004,41.93503999906],[-71.451378,41.93527599906],[-71.45166,41.93550899906],[-71.452011,41.93591299906],[-71.452202,41.93617999906],[-71.452316,41.93632899906],[-71.45253,41.93662599906],[-71.452972,41.93719499906],[-71.453331,41.93764499906],[-71.453575,41.93789299906],[-71.454201,41.93844599906],[-71.454376,41.93859099906],[-71.454966,41.93908399906],[-71.455704,41.93970099906],[-71.456566,41.94043399906],[-71.456718,41.94045599906],[-71.459137,41.94083399906],[-71.46301,41.94143399906],[-71.465858,41.94187899906],[-71.467888,41.94218099906],[-71.469673,41.94245399906],[-71.470558,41.94258899906],[-71.471026,41.94264399906],[-71.471596,41.94271099906],[-71.472374,41.94277599906],[-71.474365,41.94281399906],[-71.475048,41.94279899906],[-71.475449,41.94279099906],[-71.475675,41.94277999906],[-71.475705,41.94277899906],[-71.475891,41.94277199906],[-71.47587,41.94275399906],[-71.476068,41.94273099906],[-71.475998,41.94267699906],[-71.475853,41.94255399906],[-71.475433,41.94214199906],[-71.475266,41.94186399906],[-71.475243,41.94165399906],[-71.475288,41.94150199906],[-71.475361,41.94138999906],[-71.475055,41.94119499906],[-71.474947,41.94108799906],[-71.474708,41.94085399906],[-71.474691,41.94083699906],[-71.474445,41.94049999906],[-71.474663,41.94052499906],[-71.47493,41.94052899906],[-71.475174,41.94050199906],[-71.475555,41.94043399906],[-71.475952,41.94034199906],[-71.476402,41.94024699906],[-71.476631,41.94021199906],[-71.476822,41.94019699906],[-71.476997,41.94019299906],[-71.47718,41.94019699906],[-71.477539,41.94026199906],[-71.478973,41.94054399906],[-71.479095,41.94054399906],[-71.479187,41.94047499906],[-71.479263,41.94030799906],[-71.479355,41.93997199906],[-71.4795,41.93955999906],[-71.479599,41.93923999906],[-71.479637,41.93904599906],[-71.479713,41.93866299906],[-71.479798,41.93851799906],[-71.479836,41.93845399906],[-71.480133,41.93802599906],[-71.480362,41.93764899906],[-71.480728,41.93700399906],[-71.480927,41.93672899906],[-71.481277,41.93633699906],[-71.481384,41.93621099906],[-71.481476,41.93607699906],[-71.481529,41.93596299906],[-71.481544,41.93582899906],[-71.481544,41.93560799906],[-71.481552,41.93534099906],[-71.48156,41.93527199906],[-71.481628,41.93482999906],[-71.481766,41.93426499906],[-71.482201,41.93285399906],[-71.48243,41.93204899906],[-71.482635,41.93112899906],[-71.482744,41.93066099906],[-71.482765,41.93056899906],[-71.482811,41.93035099906],[-71.48283,41.93026099906],[-71.48291,41.92987799906],[-71.483223,41.92849299906],[-71.483681,41.92681099906],[-71.483727,41.92662799906],[-71.483833,41.92625399906],[-71.483963,41.92589199906],[-71.484039,41.92574299906],[-71.484055,41.92568599906],[-71.484161,41.92548799906],[-71.484337,41.92520499906],[-71.4845,41.92498899906]]]}}"}, +{"type": "blockgroup", "typeId": 117011, "areaId": 28908, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.432465,41.92788299906],[-71.432442,41.92752099906],[-71.432434,41.92712799906],[-71.432419,41.92689899906],[-71.432396,41.92677699906],[-71.432388,41.92672699906],[-71.432358,41.92664299906],[-71.432335,41.92659399906],[-71.432304,41.92654799906],[-71.432281,41.92650199906],[-71.431999,41.92613599906],[-71.431953,41.92608299906],[-71.431519,41.92547599906],[-71.431229,41.92508299906],[-71.430977,41.92471299906],[-71.430756,41.92440399906],[-71.430511,41.92407599906],[-71.430214,41.92372499906],[-71.430168,41.92361099906],[-71.430168,41.92354199906],[-71.430191,41.92344299906],[-71.430054,41.92340899906],[-71.429855,41.92333599906],[-71.429451,41.92310299906],[-71.429008,41.92282899906],[-71.427979,41.92221099906],[-71.427544,41.92192799906],[-71.427216,41.92166899906],[-71.427081,41.92153199906],[-71.426908,41.92135599906],[-71.426743,41.92118799906],[-71.426605,41.92105899906],[-71.426338,41.92082599906],[-71.426201,41.92071899906],[-71.425888,41.92050899906],[-71.425713,41.92040599906],[-71.425529,41.92030699906],[-71.425354,41.92021899906],[-71.425117,41.92010899906],[-71.424988,41.92005299906],[-71.424904,41.92001699906],[-71.424706,41.91994099906],[-71.424591,41.91990699906],[-71.423897,41.91966999906],[-71.423706,41.91958999906],[-71.423569,41.91950199906],[-71.423439,41.91940699906],[-71.423317,41.91930399906],[-71.423195,41.91918599906],[-71.422882,41.91882299906],[-71.422676,41.91859099906],[-71.422508,41.91841899906],[-71.422348,41.91827399906],[-71.422173,41.91813299906],[-71.421989,41.91800299906],[-71.421799,41.91788099906],[-71.4216,41.91776999906],[-71.421394,41.91766399906],[-71.421188,41.91757199906],[-71.420967,41.91749199906],[-71.420509,41.91731299906],[-71.421097,41.91634799906],[-71.42115,41.91636299906],[-71.421265,41.91640499906],[-71.421593,41.91650799906],[-71.4217,41.91653399906],[-71.421822,41.91658399906],[-71.421936,41.91664899906],[-71.422035,41.91669499906],[-71.422203,41.91681299906],[-71.422539,41.91701099906],[-71.422592,41.91700699906],[-71.422638,41.91698099906],[-71.42337,41.91633999906],[-71.423271,41.91627099906],[-71.422966,41.91607299906],[-71.422661,41.91586299906],[-71.422493,41.91580599906],[-71.422363,41.91577499906],[-71.422226,41.91576399906],[-71.421997,41.91575599906],[-71.421745,41.91576399906],[-71.42128,41.91576399906],[-71.421104,41.91574499906],[-71.420898,41.91569099906],[-71.420731,41.91553899906],[-71.420715,41.91551999906],[-71.420502,41.91556499906],[-71.419998,41.91570299906],[-71.419182,41.91589399906],[-71.418602,41.91601899906],[-71.418564,41.91592799906],[-71.418449,41.91568399906],[-71.418312,41.91548499906],[-71.418236,41.91538999906],[-71.417938,41.91506999906],[-71.417786,41.91491299906],[-71.416687,41.91373099906],[-71.416618,41.91366599906],[-71.416504,41.91353599906],[-71.416336,41.91332999906],[-71.416191,41.91311599906],[-71.416161,41.91305499906],[-71.416,41.91278099906],[-71.415955,41.91268899906],[-71.415871,41.91254799906],[-71.41571,41.91225399906],[-71.415688,41.91219299906],[-71.415665,41.91214799906],[-71.41552,41.91179299906],[-71.415413,41.91149499906],[-71.415337,41.91128899906],[-71.415237,41.91097299906],[-71.415184,41.91074399906],[-71.415161,41.91060999906],[-71.415138,41.91022899906],[-71.415154,41.90999599906],[-71.415176,41.90988899906],[-71.415176,41.90986299906],[-71.415192,41.90978199906],[-71.415344,41.90931699906],[-71.415535,41.90883999906],[-71.415749,41.90827899906],[-71.415794,41.90811499906],[-71.415794,41.90796699906],[-71.415787,41.90789399906],[-71.415749,41.90780599906],[-71.415649,41.90763499906],[-71.415359,41.90727199906],[-71.415184,41.90704699906],[-71.414865,41.90662199906],[-71.414848,41.90660899906],[-71.414589,41.90625399906],[-71.414528,41.90617799906],[-71.414444,41.90605199906],[-71.414398,41.90596399906],[-71.414345,41.90587599906],[-71.414276,41.90570799906],[-71.414215,41.90555199906],[-71.414101,41.90507099906],[-71.414062,41.90496099906],[-71.414001,41.90473899906],[-71.413979,41.90462899906],[-71.41394,41.90447999906],[-71.413918,41.90441499906],[-71.413902,41.90433899906],[-71.413857,41.90418599906],[-71.413841,41.90410199906],[-71.413811,41.90399599906],[-71.413795,41.90386599906],[-71.413795,41.90377799906],[-71.413803,41.90372799906],[-71.413825,41.90364699906],[-71.413834,41.90361399906],[-71.413895,41.90348399906],[-71.414032,41.90325499906],[-71.414238,41.90298499906],[-71.414017,41.90298799906],[-71.413284,41.90296899906],[-71.413063,41.90296899906],[-71.412819,41.90297699906],[-71.412605,41.90299599906],[-71.412407,41.90301899906],[-71.412285,41.90304199906],[-71.411888,41.90313699906],[-71.411728,41.90317499906],[-71.41156,41.90322099906],[-71.411423,41.90326699906],[-71.411148,41.90336999906],[-71.411057,41.90340799906],[-71.410904,41.90346899906],[-71.410393,41.90368999906],[-71.410332,41.90371299906],[-71.41024,41.90375099906],[-71.409935,41.90387699906],[-71.409363,41.90412899906],[-71.409302,41.90415999906],[-71.408707,41.90440799906],[-71.408562,41.90447199906],[-71.408234,41.90462899906],[-71.408142,41.90466299906],[-71.408066,41.90470099906],[-71.407883,41.90484199906],[-71.407684,41.90500599906],[-71.407479,41.90520199906],[-71.407402,41.90527699906],[-71.407219,41.90545699906],[-71.406822,41.90586099906],[-71.406448,41.90623199906],[-71.406342,41.90633799906],[-71.406194,41.90647499906],[-71.406075,41.90658599906],[-71.405991,41.90666599906],[-71.405838,41.90679599906],[-71.405769,41.90683699906],[-71.405693,41.90687599906],[-71.405548,41.90693999906],[-71.405472,41.90696699906],[-71.405403,41.90698999906],[-71.40519,41.90703199906],[-71.404953,41.90705899906],[-71.404831,41.90706599906],[-71.404503,41.90706299906],[-71.404167,41.90705499906],[-71.403465,41.90702799906],[-71.403206,41.90699799906],[-71.402534,41.90687899906],[-71.401901,41.90676899906],[-71.400284,41.90647699906],[-71.399604,41.90635499906],[-71.399577,41.90640599906],[-71.399482,41.90666299906],[-71.399314,41.90704099906],[-71.399279,41.90710499906],[-71.399167,41.90726499906],[-71.399068,41.90743999906],[-71.398977,41.90763999906],[-71.398936,41.90781699906],[-71.398839,41.90805399906],[-71.398701,41.90854599906],[-71.398659,41.90867299906],[-71.398643,41.90874699906],[-71.398639,41.90903699906],[-71.39865,41.90909399906],[-71.398614,41.90913299906],[-71.398562,41.90917099906],[-71.398486,41.90927599906],[-71.398431,41.90933999906],[-71.398372,41.90939699906],[-71.398283,41.90952499906],[-71.398231,41.90956999906],[-71.398164,41.90960799906],[-71.398018,41.90966899906],[-71.397864,41.90974299906],[-71.397684,41.90981999906],[-71.397603,41.90986399906],[-71.397534,41.90990899906],[-71.397343,41.91005799906],[-71.397279,41.91010799906],[-71.397242,41.91015799906],[-71.397162,41.91036099906],[-71.397072,41.91054399906],[-71.397052,41.91061599906],[-71.397045,41.91068199906],[-71.397046,41.91080199906],[-71.39706,41.91085899906],[-71.397117,41.91096899906],[-71.397264,41.91116299906],[-71.397322,41.91122299906],[-71.397389,41.91128299906],[-71.397496,41.91136699906],[-71.39769,41.91148599906],[-71.397989,41.91164099906],[-71.398478,41.91184899906],[-71.39862,41.91191599906],[-71.398765,41.91197199906],[-71.398911,41.91200799906],[-71.399053,41.91204999906],[-71.399222,41.91208299906],[-71.399299,41.91207499906],[-71.399379,41.91205999906],[-71.399558,41.91205699906],[-71.399638,41.91204399906],[-71.399798,41.91200099906],[-71.400032,41.91194899906],[-71.400058,41.91196499906],[-71.400138,41.91200999906],[-71.400146,41.91199699906],[-71.400142,41.91196899906],[-71.400083,41.91193799906],[-71.400181,41.91193099906],[-71.400248,41.91193699906],[-71.400269,41.91194699906],[-71.400338,41.91194599906],[-71.400402,41.91191299906],[-71.400463,41.91187399906],[-71.400601,41.91181199906],[-71.40079,41.91170499906],[-71.400868,41.91166899906],[-71.400944,41.91164099906],[-71.401002,41.91164099906],[-71.40108,41.91163199906],[-71.401206,41.91159999906],[-71.40127,41.91156499906],[-71.401349,41.91153399906],[-71.401504,41.91149799906],[-71.401577,41.91149399906],[-71.401671,41.91149499906],[-71.401749,41.91150699906],[-71.402034,41.91150599906],[-71.402139,41.91150099906],[-71.402366,41.91147599906],[-71.402574,41.91147099906],[-71.402744,41.91146199906],[-71.402864,41.91144099906],[-71.402944,41.91140999906],[-71.403023,41.91139299906],[-71.403114,41.91139099906],[-71.403168,41.91136199906],[-71.403219,41.91131899906],[-71.403226,41.91130099906],[-71.403262,41.91124999906],[-71.403393,41.91117399906],[-71.403466,41.91112099906],[-71.403517,41.91107799906],[-71.403626,41.91099899906],[-71.403689,41.91096399906],[-71.403754,41.91093399906],[-71.403868,41.91089699906],[-71.404021,41.91088999906],[-71.404097,41.91087099906],[-71.404187,41.91086899906],[-71.404266,41.91086799906],[-71.404623,41.91089499906],[-71.405012,41.91095299906],[-71.405393,41.91099899906],[-71.405491,41.91102199906],[-71.405779,41.91110799906],[-71.405878,41.91112899906],[-71.40595,41.91115099906],[-71.406013,41.91119499906],[-71.406066,41.91120099906],[-71.406143,41.91123199906],[-71.406226,41.91129099906],[-71.406307,41.91130899906],[-71.406456,41.91137799906],[-71.406514,41.91141199906],[-71.406662,41.91151499906],[-71.406801,41.91159699906],[-71.406868,41.91162999906],[-71.406946,41.91166199906],[-71.40703,41.91170799906],[-71.40709,41.91174799906],[-71.407214,41.91184199906],[-71.407424,41.91205499906],[-71.407663,41.91232899906],[-71.407768,41.91248499906],[-71.407858,41.91271999906],[-71.407886,41.91277399906],[-71.407921,41.91282499906],[-71.407982,41.91288599906],[-71.408062,41.91293099906],[-71.408241,41.91307099906],[-71.408272,41.91311999906],[-71.408366,41.91319299906],[-71.408505,41.91331299906],[-71.408559,41.91335199906],[-71.408741,41.91359099906],[-71.408762,41.91361799906],[-71.408768,41.91363999906],[-71.408824,41.91371999906],[-71.408872,41.91376599906],[-71.408959,41.91386099906],[-71.409262,41.91397699906],[-71.409329,41.91401399906],[-71.409365,41.91406199906],[-71.409372,41.91409599906],[-71.40975,41.91429599906],[-71.41048,41.91469099906],[-71.410929,41.91493099906],[-71.411026,41.91498399906],[-71.411087,41.91501399906],[-71.411671,41.91537099906],[-71.412109,41.91556799906],[-71.412403,41.91572199906],[-71.413166,41.91613999906],[-71.413595,41.91636399906],[-71.41387,41.91651699906],[-71.414265,41.91673699906],[-71.414369,41.91676399906],[-71.415002,41.91711699906],[-71.416233,41.91780799906],[-71.418425,41.91881899906],[-71.418807,41.91926099906],[-71.419094,41.91999199906],[-71.419443,41.92062699906],[-71.420071,41.92119399906],[-71.420583,41.92148699906],[-71.4217,41.92214499906],[-71.421986,41.92222099906],[-71.422124,41.92224399906],[-71.422853,41.92223199906],[-71.423713,41.92225299906],[-71.424495,41.92233799906],[-71.425322,41.92246299906],[-71.426025,41.92266999906],[-71.426792,41.92290799906],[-71.427544,41.92319899906],[-71.428327,41.92354299906],[-71.428729,41.92382299906],[-71.429006,41.92406299906],[-71.429579,41.92477099906],[-71.429996,41.92562799906],[-71.430356,41.92606099906],[-71.430756,41.92659799906],[-71.430939,41.92698699906],[-71.43118,41.92698399906],[-71.431282,41.92698299906],[-71.431411,41.92698799906],[-71.43148,41.92699099906],[-71.431564,41.92699999906],[-71.431664,41.92700999906],[-71.431702,41.92701699906],[-71.431755,41.92702899906],[-71.431847,41.92705899906],[-71.431892,41.92707799906],[-71.431999,41.92714699906],[-71.432045,41.92718499906],[-71.432121,41.92727699906],[-71.432152,41.92732599906],[-71.432243,41.92753599906],[-71.432274,41.92768099906],[-71.432281,41.92778799906],[-71.432287,41.92784299906],[-71.432465,41.92788299906]]]}}"}, +{"type": "blockgroup", "typeId": 117012, "areaId": 28909, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.41877,41.90268299906],[-71.418533,41.90238199906],[-71.418045,41.90170299906],[-71.417831,41.90141699906],[-71.417572,41.90111199906],[-71.417519,41.90104299906],[-71.417343,41.90084099906],[-71.417259,41.90073399906],[-71.417099,41.90047499906],[-71.417053,41.90040599906],[-71.416748,41.89987199906],[-71.416588,41.89961999906],[-71.416405,41.89953199906],[-71.416321,41.89948699906],[-71.415833,41.89927299906],[-71.415413,41.89910099906],[-71.415237,41.89902899906],[-71.414627,41.89889899906],[-71.414055,41.89878799906],[-71.413399,41.89865099906],[-71.413254,41.89861299906],[-71.413185,41.89858999906],[-71.413063,41.89852899906],[-71.41301,41.89849499906],[-71.412949,41.89844899906],[-71.412331,41.89788799906],[-71.412102,41.89767099906],[-71.41201,41.89759099906],[-71.411545,41.89716299906],[-71.410889,41.89655299906],[-71.410378,41.89607999906],[-71.409805,41.89556899906],[-71.409645,41.89541999906],[-71.409294,41.89507299906],[-71.408714,41.89452399906],[-71.408676,41.89448899906],[-71.408531,41.89435199906],[-71.408104,41.89399299906],[-71.407997,41.89405099906],[-71.407829,41.89413099906],[-71.40757,41.89424099906],[-71.40728,41.89434099906],[-71.406776,41.89456599906],[-71.406403,41.89477899906],[-71.406311,41.89482499906],[-71.406204,41.89488599906],[-71.406143,41.89491299906],[-71.406097,41.89493899906],[-71.405991,41.89498899906],[-71.405785,41.89504199906],[-71.405685,41.89505799906],[-71.405502,41.89507699906],[-71.40535,41.89508099906],[-71.405273,41.89507299906],[-71.405205,41.89505399906],[-71.405144,41.89503099906],[-71.404976,41.89495099906],[-71.404938,41.89492399906],[-71.404755,41.89481399906],[-71.404691,41.89478399906],[-71.404568,41.89482399906],[-71.404401,41.89487699906],[-71.403673,41.89510799906],[-71.403488,41.89516799906],[-71.402379,41.89543799906],[-71.402001,41.89552599906],[-71.401855,41.89555999906],[-71.401353,41.89567599906],[-71.400869,41.89582699906],[-71.399518,41.89616699906],[-71.398941,41.89631299906],[-71.398145,41.89651299906],[-71.397243,41.89678199906],[-71.396053,41.89713599906],[-71.395214,41.89738599906],[-71.394296,41.89765199906],[-71.394782,41.89862499906],[-71.396534,41.89970599906],[-71.396561,41.89970099906],[-71.396809,41.89972399906],[-71.397003,41.89975599906],[-71.397057,41.89976499906],[-71.39722,41.89979999906],[-71.397373,41.89984099906],[-71.397448,41.89986899906],[-71.397516,41.89990099906],[-71.397872,41.90004599906],[-71.398166,41.90015599906],[-71.398301,41.90022299906],[-71.398398,41.90027999906],[-71.398502,41.90035399906],[-71.398625,41.90046099906],[-71.398692,41.90051299906],[-71.398923,41.90066599906],[-71.399052,41.90076499906],[-71.399224,41.90091599906],[-71.399365,41.90107899906],[-71.399452,41.90119799906],[-71.399592,41.90145899906],[-71.399669,41.90167799906],[-71.399705,41.90174099906],[-71.399746,41.90179599906],[-71.399813,41.90185299906],[-71.399855,41.90187199906],[-71.399889,41.90186199906],[-71.399914,41.90180199906],[-71.399918,41.90166599906],[-71.399908,41.90161199906],[-71.399843,41.90148699906],[-71.399845,41.90142899906],[-71.399836,41.90136499906],[-71.399746,41.90124699906],[-71.399636,41.90113599906],[-71.399596,41.90108899906],[-71.399576,41.90102899906],[-71.399588,41.90097999906],[-71.399655,41.90096899906],[-71.399736,41.90098399906],[-71.399957,41.90107699906],[-71.400023,41.90111199906],[-71.400147,41.90119799906],[-71.400213,41.90123299906],[-71.400358,41.90129199906],[-71.400424,41.90132599906],[-71.400479,41.90136699906],[-71.400525,41.90141599906],[-71.400594,41.90152599906],[-71.400618,41.90157999906],[-71.400658,41.90171099906],[-71.40067,41.90184099906],[-71.400651,41.90193099906],[-71.4006,41.90205099906],[-71.400561,41.90210599906],[-71.400416,41.90224599906],[-71.400326,41.90235099906],[-71.400238,41.90247299906],[-71.400142,41.90265399906],[-71.400119,41.90271699906],[-71.400078,41.90291699906],[-71.400056,41.90298099906],[-71.400026,41.90304099906],[-71.399929,41.90326999906],[-71.399912,41.90332799906],[-71.399887,41.90345599906],[-71.399845,41.90358599906],[-71.39983,41.90365499906],[-71.399822,41.90372999906],[-71.399823,41.90388099906],[-71.399835,41.90394299906],[-71.399887,41.90413699906],[-71.399946,41.90427199906],[-71.400054,41.90458499906],[-71.400083,41.90472899906],[-71.400088,41.90479499906],[-71.400095,41.90486899906],[-71.400089,41.90500499906],[-71.400093,41.90521499906],[-71.400072,41.90549799906],[-71.400044,41.90562799906],[-71.400021,41.90569399906],[-71.399931,41.90586799906],[-71.399643,41.90628299906],[-71.399604,41.90635499906],[-71.400284,41.90647699906],[-71.401901,41.90676899906],[-71.402534,41.90687899906],[-71.403206,41.90699799906],[-71.403465,41.90702799906],[-71.404167,41.90705499906],[-71.404503,41.90706299906],[-71.404831,41.90706599906],[-71.404953,41.90705899906],[-71.40519,41.90703199906],[-71.405403,41.90698999906],[-71.405472,41.90696699906],[-71.405548,41.90693999906],[-71.405693,41.90687599906],[-71.405769,41.90683699906],[-71.405838,41.90679599906],[-71.405991,41.90666599906],[-71.406075,41.90658599906],[-71.406194,41.90647499906],[-71.406342,41.90633799906],[-71.406448,41.90623199906],[-71.406822,41.90586099906],[-71.407219,41.90545699906],[-71.407402,41.90527699906],[-71.407479,41.90520199906],[-71.407684,41.90500599906],[-71.407883,41.90484199906],[-71.408066,41.90470099906],[-71.408142,41.90466299906],[-71.408234,41.90462899906],[-71.408562,41.90447199906],[-71.408707,41.90440799906],[-71.409302,41.90415999906],[-71.409363,41.90412899906],[-71.409935,41.90387699906],[-71.41024,41.90375099906],[-71.410332,41.90371299906],[-71.410393,41.90368999906],[-71.410904,41.90346899906],[-71.411057,41.90340799906],[-71.411148,41.90336999906],[-71.411423,41.90326699906],[-71.41156,41.90322099906],[-71.411728,41.90317499906],[-71.411888,41.90313699906],[-71.412285,41.90304199906],[-71.412407,41.90301899906],[-71.412605,41.90299599906],[-71.412819,41.90297699906],[-71.413063,41.90296899906],[-71.413284,41.90296899906],[-71.414017,41.90298799906],[-71.414238,41.90298499906],[-71.414497,41.90296899906],[-71.415001,41.90292699906],[-71.416931,41.90278999906],[-71.418411,41.90269499906],[-71.418648,41.90268299906],[-71.41877,41.90268299906]]]}}"}, +{"type": "blockgroup", "typeId": 117013, "areaId": 28910, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.434914,41.91220099906],[-71.43483,41.91210599906],[-71.434418,41.91167099906],[-71.434265,41.91144899906],[-71.434174,41.91123199906],[-71.434168,41.91120899906],[-71.433968,41.91043099906],[-71.433884,41.91025199906],[-71.433739,41.91004899906],[-71.433464,41.90973999906],[-71.433159,41.90934799906],[-71.432945,41.90901199906],[-71.432793,41.90871799906],[-71.432579,41.90840099906],[-71.432358,41.90809199906],[-71.432129,41.90775699906],[-71.431648,41.90669299906],[-71.431396,41.90665399906],[-71.431038,41.90656699906],[-71.430885,41.90653599906],[-71.430313,41.90640599906],[-71.429916,41.90630299906],[-71.42952,41.90618899906],[-71.429375,41.90613899906],[-71.42894,41.90597899906],[-71.428795,41.90592999906],[-71.42865,41.90587599906],[-71.428513,41.90582999906],[-71.428146,41.90571599906],[-71.427902,41.90564699906],[-71.426857,41.90539199906],[-71.426752,41.90536699906],[-71.426653,41.90534499906],[-71.426506,41.90531199906],[-71.426285,41.90525399906],[-71.425972,41.90518199906],[-71.425931,41.90516999906],[-71.425781,41.90512799906],[-71.42569,41.90509399906],[-71.425529,41.90502499906],[-71.425385,41.90494899906],[-71.42527,41.90486899906],[-71.425156,41.90479999906],[-71.425089,41.90477099906],[-71.424973,41.90470499906],[-71.424828,41.90463299906],[-71.424728,41.90459399906],[-71.424286,41.90444599906],[-71.423698,41.90426199906],[-71.423454,41.90418599906],[-71.42334,41.90415599906],[-71.423004,41.90404899906],[-71.422607,41.90393399906],[-71.422462,41.90388899906],[-71.422356,41.90385099906],[-71.422073,41.90373999906],[-71.421753,41.90359899906],[-71.421654,41.90356099906],[-71.421356,41.90342699906],[-71.421227,41.90336599906],[-71.420906,41.90323599906],[-71.420769,41.90317499906],[-71.420708,41.90315199906],[-71.420456,41.90302999906],[-71.419991,41.90286599906],[-71.419792,41.90280899906],[-71.419685,41.90278199906],[-71.419465,41.90273999906],[-71.419022,41.90268299906],[-71.418962,41.90268099906],[-71.418884,41.90267899906],[-71.41877,41.90268299906],[-71.418648,41.90268299906],[-71.418411,41.90269499906],[-71.416931,41.90278999906],[-71.415001,41.90292699906],[-71.414497,41.90296899906],[-71.414238,41.90298499906],[-71.414032,41.90325499906],[-71.413895,41.90348399906],[-71.413834,41.90361399906],[-71.413825,41.90364699906],[-71.413803,41.90372799906],[-71.413795,41.90377799906],[-71.413795,41.90386599906],[-71.413811,41.90399599906],[-71.413841,41.90410199906],[-71.413857,41.90418599906],[-71.413902,41.90433899906],[-71.413918,41.90441499906],[-71.41394,41.90447999906],[-71.413979,41.90462899906],[-71.414001,41.90473899906],[-71.414062,41.90496099906],[-71.414101,41.90507099906],[-71.414215,41.90555199906],[-71.414276,41.90570799906],[-71.414345,41.90587599906],[-71.414398,41.90596399906],[-71.414444,41.90605199906],[-71.414528,41.90617799906],[-71.414589,41.90625399906],[-71.414848,41.90660899906],[-71.414865,41.90662199906],[-71.415184,41.90704699906],[-71.415359,41.90727199906],[-71.415649,41.90763499906],[-71.415749,41.90780599906],[-71.415787,41.90789399906],[-71.415794,41.90796699906],[-71.415794,41.90811499906],[-71.415749,41.90827899906],[-71.415535,41.90883999906],[-71.415344,41.90931699906],[-71.415192,41.90978199906],[-71.415176,41.90986299906],[-71.415176,41.90988899906],[-71.415154,41.90999599906],[-71.415138,41.91022899906],[-71.415161,41.91060999906],[-71.415184,41.91074399906],[-71.415237,41.91097299906],[-71.415337,41.91128899906],[-71.415413,41.91149499906],[-71.41552,41.91179299906],[-71.415665,41.91214799906],[-71.415688,41.91219299906],[-71.41571,41.91225399906],[-71.415871,41.91254799906],[-71.415955,41.91268899906],[-71.416,41.91278099906],[-71.416161,41.91305499906],[-71.416191,41.91311599906],[-71.416336,41.91332999906],[-71.416504,41.91353599906],[-71.416618,41.91366599906],[-71.416687,41.91373099906],[-71.417786,41.91491299906],[-71.417938,41.91506999906],[-71.418236,41.91538999906],[-71.418312,41.91548499906],[-71.418449,41.91568399906],[-71.418564,41.91592799906],[-71.418602,41.91601899906],[-71.419182,41.91589399906],[-71.419998,41.91570299906],[-71.420502,41.91556499906],[-71.420715,41.91551999906],[-71.420731,41.91553899906],[-71.420898,41.91569099906],[-71.421104,41.91574499906],[-71.42128,41.91576399906],[-71.421745,41.91576399906],[-71.421997,41.91575599906],[-71.422226,41.91576399906],[-71.422363,41.91577499906],[-71.422493,41.91580599906],[-71.422661,41.91586299906],[-71.422966,41.91607299906],[-71.423271,41.91627099906],[-71.42337,41.91633999906],[-71.422638,41.91698099906],[-71.422592,41.91700699906],[-71.422539,41.91701099906],[-71.422203,41.91681299906],[-71.422035,41.91669499906],[-71.421936,41.91664899906],[-71.421822,41.91658399906],[-71.4217,41.91653399906],[-71.421593,41.91650799906],[-71.421265,41.91640499906],[-71.42115,41.91636299906],[-71.421097,41.91634799906],[-71.420509,41.91731299906],[-71.420967,41.91749199906],[-71.421188,41.91757199906],[-71.421394,41.91766399906],[-71.4216,41.91776999906],[-71.421799,41.91788099906],[-71.421989,41.91800299906],[-71.422173,41.91813299906],[-71.422348,41.91827399906],[-71.422508,41.91841899906],[-71.422676,41.91859099906],[-71.422882,41.91882299906],[-71.423195,41.91918599906],[-71.423317,41.91930399906],[-71.423439,41.91940699906],[-71.423569,41.91950199906],[-71.423706,41.91958999906],[-71.423897,41.91966999906],[-71.424591,41.91990699906],[-71.424706,41.91994099906],[-71.424904,41.92001699906],[-71.424988,41.92005299906],[-71.425117,41.92010899906],[-71.425354,41.92021899906],[-71.425552,41.91992999906],[-71.42569,41.91971599906],[-71.425758,41.91966599906],[-71.425827,41.91962799906],[-71.425919,41.91958999906],[-71.426033,41.91955899906],[-71.426224,41.91946799906],[-71.4263,41.91939899906],[-71.42671,41.91909599906],[-71.426857,41.91898699906],[-71.427109,41.91875599906],[-71.42733,41.91855599906],[-71.427559,41.91832399906],[-71.427755,41.91818099906],[-71.427834,41.91812899906],[-71.427925,41.91810199906],[-71.428146,41.91809799906],[-71.429092,41.91805999906],[-71.429703,41.91801499906],[-71.430046,41.91799499906],[-71.430252,41.91800699906],[-71.430573,41.91803699906],[-71.430836,41.91808799906],[-71.430992,41.91811799906],[-71.431702,41.91817099906],[-71.432091,41.91822099906],[-71.432281,41.91825499906],[-71.432571,41.91828899906],[-71.432701,41.91829299906],[-71.432953,41.91828899906],[-71.43306,41.91826999906],[-71.433159,41.91823999906],[-71.433205,41.91821599906],[-71.433235,41.91820099906],[-71.433263,41.91817899906],[-71.433365,41.91810999906],[-71.433426,41.91804899906],[-71.433472,41.91797299906],[-71.433502,41.91788099906],[-71.43354,41.91770899906],[-71.433548,41.91757199906],[-71.433464,41.91699999906],[-71.433357,41.91640099906],[-71.433304,41.91591299906],[-71.433273,41.91557299906],[-71.433296,41.91550399906],[-71.433357,41.91542099906],[-71.433434,41.91535599906],[-71.4338,41.91513399906],[-71.433937,41.91503099906],[-71.434036,41.91492499906],[-71.434097,41.91483299906],[-71.434135,41.91475299906],[-71.434196,41.91438299906],[-71.434235,41.91425699906],[-71.434296,41.91411599906],[-71.434387,41.91398999906],[-71.434494,41.91382999906],[-71.434586,41.91364299906],[-71.434654,41.91344499906],[-71.43486,41.91307099906],[-71.434898,41.91296799906],[-71.434914,41.91279199906],[-71.434906,41.91254799906],[-71.434914,41.91220099906]]]}}"}, +{"type": "blockgroup", "typeId": 117021, "areaId": 28911, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.416588,41.89961999906],[-71.416451,41.89942899906],[-71.416412,41.89939099906],[-71.416298,41.89925399906],[-71.416046,41.89899799906],[-71.415916,41.89887199906],[-71.41581,41.89876199906],[-71.415283,41.89826199906],[-71.414604,41.89758299906],[-71.413956,41.89690799906],[-71.413902,41.89685099906],[-71.413559,41.89649999906],[-71.41349,41.89642299906],[-71.413444,41.89637899906],[-71.413414,41.89635099906],[-71.413345,41.89627799906],[-71.413292,41.89622899906],[-71.413246,41.89617899906],[-71.413193,41.89612999906],[-71.412964,41.89594299906],[-71.412827,41.89585099906],[-71.412659,41.89575199906],[-71.41246,41.89565299906],[-71.412193,41.89550799906],[-71.411827,41.89531699906],[-71.41156,41.89516099906],[-71.411407,41.89505799906],[-71.411263,41.89495099906],[-71.41111,41.89478699906],[-71.411052,41.89470199906],[-71.410988,41.89460799906],[-71.410889,41.89442099906],[-71.410828,41.89422999906],[-71.410797,41.89402799906],[-71.410789,41.89382599906],[-71.410793,41.89380199906],[-71.41082,41.89363899906],[-71.410919,41.89326899906],[-71.411217,41.89245999906],[-71.41127,41.89231099906],[-71.411407,41.89194099906],[-71.411503,41.89171399906],[-71.411552,41.89159799906],[-71.411648,41.89136499906],[-71.411827,41.89093799906],[-71.411972,41.89056799906],[-71.41227,41.88978999906],[-71.412521,41.88915599906],[-71.412773,41.88851499906],[-71.412895,41.88822599906],[-71.413017,41.88790499906],[-71.413101,41.88770699906],[-71.413231,41.88737099906],[-71.413322,41.88714599906],[-71.413522,41.88663699906],[-71.413577,41.88649899906],[-71.413635,41.88636399906],[-71.413818,41.88590999906],[-71.413933,41.88563199906],[-71.414032,41.88537799906],[-71.414078,41.88525799906],[-71.414192,41.88497499906],[-71.414253,41.88484199906],[-71.414383,41.88450999906],[-71.414642,41.88387299906],[-71.414719,41.88368199906],[-71.414894,41.88325499906],[-71.414993,41.88300299906],[-71.415146,41.88261799906],[-71.415451,41.88185499906],[-71.415486,41.88176599906],[-71.415604,41.88146599906],[-71.415642,41.88135499906],[-71.415688,41.88124499906],[-71.415718,41.88113399906],[-71.415733,41.88101999906],[-71.415741,41.88089999906],[-71.415749,41.88079099906],[-71.415749,41.88060399906],[-71.415703,41.88022999906],[-71.415668,41.88007499906],[-71.415642,41.87996299906],[-71.415642,41.87993999906],[-71.415611,41.87982599906],[-71.41558,41.87967799906],[-71.415553,41.87954699906],[-71.413887,41.87977199906],[-71.41303,41.87986199906],[-71.41292,41.87987899906],[-71.411606,41.88006299906],[-71.410728,41.88018599906],[-71.409843,41.88029399906],[-71.408948,41.88040399906],[-71.40652,41.88070099906],[-71.406403,41.88071599906],[-71.40633,41.88072499906],[-71.405004,41.88089399906],[-71.404748,41.88092699906],[-71.403706,41.88105899906],[-71.403805,41.88134799906],[-71.40428,41.88273899906],[-71.40489,41.88449699906],[-71.405485,41.88625399906],[-71.405817,41.88723899906],[-71.40587,41.88739399906],[-71.406016,41.88784799906],[-71.406227,41.88849099906],[-71.406441,41.88913999906],[-71.407141,41.89128199906],[-71.407283,41.89163299906],[-71.407055,41.89190999906],[-71.405529,41.89376599906],[-71.404691,41.89478399906],[-71.404755,41.89481399906],[-71.404938,41.89492399906],[-71.404976,41.89495099906],[-71.405144,41.89503099906],[-71.405205,41.89505399906],[-71.405273,41.89507299906],[-71.40535,41.89508099906],[-71.405502,41.89507699906],[-71.405685,41.89505799906],[-71.405785,41.89504199906],[-71.405991,41.89498899906],[-71.406097,41.89493899906],[-71.406143,41.89491299906],[-71.406204,41.89488599906],[-71.406311,41.89482499906],[-71.406403,41.89477899906],[-71.406776,41.89456599906],[-71.40728,41.89434099906],[-71.40757,41.89424099906],[-71.407829,41.89413099906],[-71.407997,41.89405099906],[-71.408104,41.89399299906],[-71.408531,41.89435199906],[-71.408676,41.89448899906],[-71.408714,41.89452399906],[-71.409294,41.89507299906],[-71.409645,41.89541999906],[-71.409805,41.89556899906],[-71.410378,41.89607999906],[-71.410889,41.89655299906],[-71.411545,41.89716299906],[-71.41201,41.89759099906],[-71.412102,41.89767099906],[-71.412331,41.89788799906],[-71.412949,41.89844899906],[-71.41301,41.89849499906],[-71.413063,41.89852899906],[-71.413185,41.89858999906],[-71.413254,41.89861299906],[-71.413399,41.89865099906],[-71.414055,41.89878799906],[-71.414627,41.89889899906],[-71.415237,41.89902899906],[-71.415413,41.89910099906],[-71.415833,41.89927299906],[-71.416321,41.89948699906],[-71.416405,41.89953199906],[-71.416588,41.89961999906]]]}}"}, +{"type": "blockgroup", "typeId": 117022, "areaId": 28912, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.437073,41.88413199906],[-71.436905,41.88378099906],[-71.436302,41.88242299906],[-71.435295,41.88020299906],[-71.434976,41.87956099906],[-71.434906,41.87942099906],[-71.43486,41.87933499906],[-71.434776,41.87917699906],[-71.434742,41.87910799906],[-71.434654,41.87892899906],[-71.434265,41.87823899906],[-71.43383,41.87749499906],[-71.433654,41.87720999906],[-71.433513,41.87722299906],[-71.433484,41.87722599906],[-71.432525,41.87730899906],[-71.432337,41.87732599906],[-71.4321,41.87734999906],[-71.431382,41.87742099906],[-71.430198,41.87753899906],[-71.429625,41.87759599906],[-71.428817,41.87782599906],[-71.428045,41.87792999906],[-71.42635,41.87815799906],[-71.425217,41.87829099906],[-71.423908,41.87846199906],[-71.4219,41.87869499906],[-71.421853,41.87869999906],[-71.418564,41.87913899906],[-71.41806,41.87920399906],[-71.416481,41.87941999906],[-71.416112,41.87947099906],[-71.415656,41.87953299906],[-71.415553,41.87954699906],[-71.41558,41.87967799906],[-71.415611,41.87982599906],[-71.415642,41.87993999906],[-71.415642,41.87996299906],[-71.415668,41.88007499906],[-71.415703,41.88022999906],[-71.415749,41.88060399906],[-71.415749,41.88079099906],[-71.415741,41.88089999906],[-71.415733,41.88101999906],[-71.415718,41.88113399906],[-71.415688,41.88124499906],[-71.415642,41.88135499906],[-71.415604,41.88146599906],[-71.415486,41.88176599906],[-71.415451,41.88185499906],[-71.415146,41.88261799906],[-71.414993,41.88300299906],[-71.414894,41.88325499906],[-71.414719,41.88368199906],[-71.414642,41.88387299906],[-71.414383,41.88450999906],[-71.414253,41.88484199906],[-71.414192,41.88497499906],[-71.414078,41.88525799906],[-71.414032,41.88537799906],[-71.413933,41.88563199906],[-71.413818,41.88590999906],[-71.413635,41.88636399906],[-71.413577,41.88649899906],[-71.413522,41.88663699906],[-71.413322,41.88714599906],[-71.413231,41.88737099906],[-71.413994,41.88739399906],[-71.414391,41.88739799906],[-71.415237,41.88741699906],[-71.415295,41.88741799906],[-71.415878,41.88743199906],[-71.416985,41.88743999906],[-71.417107,41.88744699906],[-71.417297,41.88746999906],[-71.417465,41.88750799906],[-71.417534,41.88752699906],[-71.417595,41.88754999906],[-71.417732,41.88761899906],[-71.417847,41.88768799906],[-71.418022,41.88777899906],[-71.418251,41.88788999906],[-71.418442,41.88800399906],[-71.418564,41.88806899906],[-71.418633,41.88809999906],[-71.418694,41.88813399906],[-71.418755,41.88816499906],[-71.418816,41.88820299906],[-71.418907,41.88825199906],[-71.418945,41.88827899906],[-71.41906,41.88837799906],[-71.419128,41.88835099906],[-71.419253,41.88832099906],[-71.419281,41.88832099906],[-71.419357,41.88830899906],[-71.419464,41.88830599906],[-71.419563,41.88831699906],[-71.419685,41.88834799906],[-71.419762,41.88837399906],[-71.419899,41.88843499906],[-71.420059,41.88848899906],[-71.42025,41.88854199906],[-71.420364,41.88855399906],[-71.420479,41.88854999906],[-71.42067,41.88852299906],[-71.421417,41.88841999906],[-71.421577,41.88840099906],[-71.422112,41.88833599906],[-71.422401,41.88829399906],[-71.423264,41.88812599906],[-71.42334,41.88810699906],[-71.423721,41.88803499906],[-71.423836,41.88800799906],[-71.424274,41.88791699906],[-71.424323,41.88790699906],[-71.42437,41.88789699906],[-71.424759,41.88782499906],[-71.424873,41.88780999906],[-71.424927,41.88779399906],[-71.424995,41.88776799906],[-71.425346,41.88753899906],[-71.425446,41.88747799906],[-71.425537,41.88740899906],[-71.425629,41.88734799906],[-71.425812,41.88724099906],[-71.426308,41.88690899906],[-71.426338,41.88687099906],[-71.426407,41.88673399906],[-71.426437,41.88662299906],[-71.426529,41.88637499906],[-71.426559,41.88626899906],[-71.426605,41.88616199906],[-71.426666,41.88605499906],[-71.426712,41.88600899906],[-71.426865,41.88587199906],[-71.426933,41.88582199906],[-71.426978,41.88578399906],[-71.42704,41.88573099906],[-71.427315,41.88548699906],[-71.427467,41.88533399906],[-71.427597,41.88521599906],[-71.42762,41.88520099906],[-71.427689,41.88513199906],[-71.427773,41.88503599906],[-71.428085,41.88461299906],[-71.428589,41.88476899906],[-71.428665,41.88479599906],[-71.428841,41.88484999906],[-71.4291,41.88490699906],[-71.429214,41.88491099906],[-71.429337,41.88490299906],[-71.429504,41.88487199906],[-71.429688,41.88481499906],[-71.429932,41.88471599906],[-71.430122,41.88463199906],[-71.430473,41.88449499906],[-71.430717,41.88439199906],[-71.430908,41.88432299906],[-71.431091,41.88426599906],[-71.431282,41.88421599906],[-71.43145,41.88418999906],[-71.431618,41.88417099906],[-71.431778,41.88416699906],[-71.432007,41.88416699906],[-71.432846,41.88418599906],[-71.433334,41.88420899906],[-71.433868,41.88425799906],[-71.434219,41.88429999906],[-71.434601,41.88433099906],[-71.434814,41.88433799906],[-71.43502,41.88433799906],[-71.435249,41.88432699906],[-71.435707,41.88428499906],[-71.436569,41.88418999906],[-71.436821,41.88415899906],[-71.436928,41.88414799906],[-71.437073,41.88413199906]]]}}"}, +{"type": "blockgroup", "typeId": 117023, "areaId": 28913, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.447334,41.90248099906],[-71.447311,41.90241599906],[-71.447205,41.90217599906],[-71.446495,41.90040599906],[-71.446465,41.90031399906],[-71.446304,41.89991799906],[-71.445618,41.89818599906],[-71.445503,41.89791099906],[-71.445423,41.89770299906],[-71.445396,41.89763299906],[-71.445274,41.89735799906],[-71.445152,41.89710599906],[-71.445023,41.89685399906],[-71.444878,41.89660599906],[-71.444733,41.89637399906],[-71.444397,41.89591199906],[-71.444199,41.89565699906],[-71.444077,41.89549599906],[-71.443909,41.89528699906],[-71.443611,41.89495099906],[-71.443535,41.89487499906],[-71.443474,41.89480199906],[-71.443375,41.89468799906],[-71.442871,41.89414199906],[-71.442223,41.89339099906],[-71.441811,41.89292499906],[-71.441353,41.89239499906],[-71.441185,41.89218099906],[-71.441162,41.89215499906],[-71.440987,41.89191099906],[-71.440804,41.89166599906],[-71.440514,41.89124699906],[-71.440239,41.89082299906],[-71.43998,41.89039999906],[-71.439842,41.89016299906],[-71.439807,41.89009899906],[-71.439756,41.89000399906],[-71.439598,41.88968999906],[-71.439583,41.88966799906],[-71.439339,41.88916799906],[-71.439102,41.88865999906],[-71.438995,41.88841199906],[-71.438881,41.88816499906],[-71.438759,41.88788599906],[-71.438739,41.88784199906],[-71.438629,41.88760399906],[-71.438211,41.88664799906],[-71.438187,41.88659299906],[-71.437805,41.88576899906],[-71.437073,41.88413199906],[-71.436928,41.88414799906],[-71.436821,41.88415899906],[-71.436569,41.88418999906],[-71.435707,41.88428499906],[-71.435249,41.88432699906],[-71.43502,41.88433799906],[-71.434814,41.88433799906],[-71.434601,41.88433099906],[-71.434219,41.88429999906],[-71.433868,41.88425799906],[-71.433334,41.88420899906],[-71.432846,41.88418599906],[-71.432007,41.88416699906],[-71.431778,41.88416699906],[-71.431618,41.88417099906],[-71.43145,41.88418999906],[-71.431282,41.88421599906],[-71.431091,41.88426599906],[-71.430908,41.88432299906],[-71.430717,41.88439199906],[-71.430473,41.88449499906],[-71.430122,41.88463199906],[-71.429932,41.88471599906],[-71.429688,41.88481499906],[-71.429504,41.88487199906],[-71.429337,41.88490299906],[-71.429214,41.88491099906],[-71.4291,41.88490699906],[-71.428841,41.88484999906],[-71.428665,41.88479599906],[-71.428589,41.88476899906],[-71.428085,41.88461299906],[-71.427773,41.88503599906],[-71.427689,41.88513199906],[-71.42762,41.88520099906],[-71.427597,41.88521599906],[-71.427467,41.88533399906],[-71.427315,41.88548699906],[-71.42704,41.88573099906],[-71.426978,41.88578399906],[-71.426933,41.88582199906],[-71.426865,41.88587199906],[-71.426712,41.88600899906],[-71.426666,41.88605499906],[-71.426605,41.88616199906],[-71.426559,41.88626899906],[-71.426529,41.88637499906],[-71.426437,41.88662299906],[-71.426407,41.88673399906],[-71.426338,41.88687099906],[-71.426308,41.88690899906],[-71.425812,41.88724099906],[-71.425629,41.88734799906],[-71.425537,41.88740899906],[-71.425446,41.88747799906],[-71.425346,41.88753899906],[-71.424995,41.88776799906],[-71.424927,41.88779399906],[-71.424873,41.88780999906],[-71.424759,41.88782499906],[-71.42437,41.88789699906],[-71.424323,41.88790699906],[-71.424274,41.88791699906],[-71.423836,41.88800799906],[-71.423721,41.88803499906],[-71.42334,41.88810699906],[-71.423264,41.88812599906],[-71.422401,41.88829399906],[-71.422112,41.88833599906],[-71.421577,41.88840099906],[-71.421417,41.88841999906],[-71.42067,41.88852299906],[-71.420479,41.88854999906],[-71.420364,41.88855399906],[-71.42025,41.88854199906],[-71.420059,41.88848899906],[-71.419899,41.88843499906],[-71.419762,41.88837399906],[-71.419685,41.88834799906],[-71.419563,41.88831699906],[-71.419464,41.88830599906],[-71.419357,41.88830899906],[-71.419281,41.88832099906],[-71.419253,41.88832099906],[-71.419128,41.88835099906],[-71.41906,41.88837799906],[-71.418945,41.88827899906],[-71.418907,41.88825199906],[-71.418816,41.88820299906],[-71.418755,41.88816499906],[-71.418694,41.88813399906],[-71.418633,41.88809999906],[-71.418564,41.88806899906],[-71.418442,41.88800399906],[-71.418251,41.88788999906],[-71.418022,41.88777899906],[-71.417847,41.88768799906],[-71.417732,41.88761899906],[-71.417595,41.88754999906],[-71.417534,41.88752699906],[-71.417465,41.88750799906],[-71.417297,41.88746999906],[-71.417107,41.88744699906],[-71.416985,41.88743999906],[-71.415878,41.88743199906],[-71.415295,41.88741799906],[-71.415237,41.88741699906],[-71.414391,41.88739799906],[-71.413994,41.88739399906],[-71.413231,41.88737099906],[-71.413101,41.88770699906],[-71.413017,41.88790499906],[-71.412895,41.88822599906],[-71.412773,41.88851499906],[-71.412521,41.88915599906],[-71.41227,41.88978999906],[-71.411972,41.89056799906],[-71.411827,41.89093799906],[-71.411648,41.89136499906],[-71.411552,41.89159799906],[-71.411503,41.89171399906],[-71.411407,41.89194099906],[-71.41127,41.89231099906],[-71.411217,41.89245999906],[-71.410919,41.89326899906],[-71.41082,41.89363899906],[-71.410793,41.89380199906],[-71.410789,41.89382599906],[-71.410797,41.89402799906],[-71.410828,41.89422999906],[-71.410889,41.89442099906],[-71.410988,41.89460799906],[-71.411052,41.89470199906],[-71.41111,41.89478699906],[-71.411263,41.89495099906],[-71.411407,41.89505799906],[-71.41156,41.89516099906],[-71.411827,41.89531699906],[-71.412193,41.89550799906],[-71.41246,41.89565299906],[-71.412659,41.89575199906],[-71.412827,41.89585099906],[-71.412964,41.89594299906],[-71.413193,41.89612999906],[-71.413246,41.89617899906],[-71.413292,41.89622899906],[-71.413345,41.89627799906],[-71.413414,41.89635099906],[-71.413444,41.89637899906],[-71.41349,41.89642299906],[-71.413559,41.89649999906],[-71.413902,41.89685099906],[-71.413956,41.89690799906],[-71.414604,41.89758299906],[-71.415283,41.89826199906],[-71.41581,41.89876199906],[-71.415916,41.89887199906],[-71.416046,41.89899799906],[-71.416298,41.89925399906],[-71.416412,41.89939099906],[-71.416451,41.89942899906],[-71.416588,41.89961999906],[-71.416748,41.89987199906],[-71.417053,41.90040599906],[-71.417099,41.90047499906],[-71.417259,41.90073399906],[-71.417343,41.90084099906],[-71.417519,41.90104299906],[-71.417572,41.90111199906],[-71.417831,41.90141699906],[-71.418045,41.90170299906],[-71.418533,41.90238199906],[-71.41877,41.90268299906],[-71.418884,41.90267899906],[-71.418962,41.90268099906],[-71.419022,41.90268299906],[-71.419465,41.90273999906],[-71.419685,41.90278199906],[-71.419792,41.90280899906],[-71.419991,41.90286599906],[-71.420456,41.90302999906],[-71.420708,41.90315199906],[-71.420769,41.90317499906],[-71.420906,41.90323599906],[-71.421227,41.90336599906],[-71.421356,41.90342699906],[-71.421654,41.90356099906],[-71.421753,41.90359899906],[-71.422073,41.90373999906],[-71.422356,41.90385099906],[-71.422462,41.90388899906],[-71.422607,41.90393399906],[-71.423004,41.90404899906],[-71.42334,41.90415599906],[-71.423454,41.90418599906],[-71.423698,41.90426199906],[-71.424286,41.90444599906],[-71.424728,41.90459399906],[-71.424828,41.90463299906],[-71.424973,41.90470499906],[-71.425089,41.90477099906],[-71.425156,41.90479999906],[-71.42527,41.90486899906],[-71.425385,41.90494899906],[-71.425529,41.90502499906],[-71.42569,41.90509399906],[-71.425781,41.90512799906],[-71.425931,41.90516999906],[-71.425972,41.90518199906],[-71.426285,41.90525399906],[-71.426506,41.90531199906],[-71.426653,41.90534499906],[-71.426752,41.90536699906],[-71.426857,41.90539199906],[-71.427902,41.90564699906],[-71.428146,41.90571599906],[-71.428513,41.90582999906],[-71.42865,41.90587599906],[-71.428795,41.90592999906],[-71.42894,41.90597899906],[-71.429375,41.90613899906],[-71.42952,41.90618899906],[-71.429916,41.90630299906],[-71.430313,41.90640599906],[-71.430885,41.90653599906],[-71.431038,41.90656699906],[-71.431396,41.90665399906],[-71.431648,41.90669299906],[-71.431854,41.90670399906],[-71.432291,41.90669799906],[-71.432396,41.90669599906],[-71.432755,41.90670399906],[-71.432884,41.90671499906],[-71.433052,41.90674599906],[-71.43325,41.90679599906],[-71.433472,41.90687199906],[-71.433594,41.90692499906],[-71.433823,41.90704699906],[-71.433891,41.90709699906],[-71.434036,41.90718799906],[-71.434196,41.90727599906],[-71.434364,41.90734899906],[-71.434573,41.90741999906],[-71.434792,41.90749399906],[-71.43502,41.90756199906],[-71.435143,41.90758899906],[-71.435349,41.90761899906],[-71.435448,41.90762299906],[-71.435562,41.90761899906],[-71.435677,41.90760799906],[-71.435898,41.90755799906],[-71.436111,41.90747799906],[-71.436211,41.90743599906],[-71.436256,41.90741299906],[-71.436501,41.90729499906],[-71.436691,41.90721499906],[-71.436943,41.90714999906],[-71.437073,41.90712699906],[-71.437477,41.90707799906],[-71.437714,41.90703999906],[-71.43792,41.90698999906],[-71.438019,41.90695999906],[-71.43821,41.90688299906],[-71.438515,41.90672299906],[-71.438866,41.90650899906],[-71.439117,41.90634899906],[-71.439285,41.90625399906],[-71.439514,41.90610499906],[-71.439743,41.90594099906],[-71.439804,41.90588799906],[-71.439926,41.90576199906],[-71.440117,41.90550599906],[-71.440178,41.90541099906],[-71.440331,41.90520899906],[-71.440491,41.90497199906],[-71.44059,41.90484199906],[-71.440681,41.90470899906],[-71.440796,41.90457499906],[-71.44104,41.90431999906],[-71.441139,41.90422799906],[-71.441353,41.90404899906],[-71.441666,41.90385399906],[-71.441864,41.90375499906],[-71.442406,41.90352999906],[-71.44265,41.90343499906],[-71.442957,41.90333199906],[-71.443062,41.90329699906],[-71.443149,41.90327099906],[-71.44323,41.90324799906],[-71.443398,41.90320599906],[-71.443492,41.90318699906],[-71.443718,41.90314099906],[-71.443878,41.90311399906],[-71.44429,41.90306499906],[-71.444489,41.90305299906],[-71.444695,41.90304599906],[-71.445076,41.90301499906],[-71.445404,41.90296899906],[-71.445618,41.90293499906],[-71.445648,41.90292699906],[-71.445808,41.90289699906],[-71.446159,41.90280899906],[-71.446678,41.90265999906],[-71.446976,41.90258399906],[-71.447029,41.90256499906],[-71.447158,41.90253099906],[-71.447182,41.90252699906],[-71.447334,41.90248099906]]]}}"}, +{"type": "blockgroup", "typeId": 118001, "areaId": 28914, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.433654,41.87720999906],[-71.433462,41.87689799906],[-71.43337,41.87674899906],[-71.432999,41.87614799906],[-71.432579,41.87543899906],[-71.432312,41.87495399906],[-71.43219,41.87470999906],[-71.432076,41.87446599906],[-71.431824,41.87382499906],[-71.431729,41.87355299906],[-71.431709,41.87349599906],[-71.431679,41.87340899906],[-71.43162,41.87320199906],[-71.431557,41.87297399906],[-71.43145,41.87253599906],[-71.431313,41.87179899906],[-71.431236,41.87115899906],[-71.431229,41.87109399906],[-71.431213,41.87094099906],[-71.43087,41.86841199906],[-71.430861,41.86837099906],[-71.430725,41.86836599906],[-71.430075,41.86832899906],[-71.429521,41.86828699906],[-71.429282,41.86827099906],[-71.429009,41.86825299906],[-71.428871,41.86824499906],[-71.428167,41.86819799906],[-71.427942,41.86818499906],[-71.427606,41.86817099906],[-71.427558,41.86816699906],[-71.42723,41.86816399906],[-71.427004,41.86817499906],[-71.426833,41.86818099906],[-71.426697,41.86819299906],[-71.426441,41.86822299906],[-71.426154,41.86827499906],[-71.426018,41.86830899906],[-71.425209,41.86850699906],[-71.424675,41.86863299906],[-71.424057,41.86878599906],[-71.423897,41.86881999906],[-71.423126,41.86899899906],[-71.423012,41.86902599906],[-71.422348,41.86918599906],[-71.422081,41.86925499906],[-71.42157,41.86937299906],[-71.420731,41.86957199906],[-71.420219,41.86968999906],[-71.419876,41.86977399906],[-71.419868,41.86981899906],[-71.420156,41.87110499906],[-71.420524,41.87263299906],[-71.42083,41.87397699906],[-71.420987,41.87467699906],[-71.42114,41.87534599906],[-71.421336,41.87612799906],[-71.42144,41.87660099906],[-71.421461,41.87669599906],[-71.421588,41.87726699906],[-71.4219,41.87869499906],[-71.423908,41.87846199906],[-71.425217,41.87829099906],[-71.42635,41.87815799906],[-71.428045,41.87792999906],[-71.428817,41.87782599906],[-71.429625,41.87759599906],[-71.430198,41.87753899906],[-71.431382,41.87742099906],[-71.4321,41.87734999906],[-71.432337,41.87732599906],[-71.432525,41.87730899906],[-71.433484,41.87722599906],[-71.433513,41.87722299906],[-71.433654,41.87720999906]]]}}"}, +{"type": "blockgroup", "typeId": 118002, "areaId": 28915, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.425209,41.86850699906],[-71.424965,41.86785899906],[-71.42473,41.86720599906],[-71.424728,41.86718799906],[-71.424487,41.86653299906],[-71.424477,41.86651599906],[-71.424385,41.86627999906],[-71.424232,41.86586399906],[-71.423988,41.86522299906],[-71.42395,41.86512799906],[-71.423759,41.86460899906],[-71.423744,41.86457099906],[-71.423553,41.86404799906],[-71.423508,41.86392999906],[-71.423325,41.86342199906],[-71.423195,41.86306399906],[-71.423019,41.86258299906],[-71.422974,41.86246499906],[-71.422798,41.86199999906],[-71.42276,41.86189699906],[-71.422569,41.86138199906],[-71.422485,41.86115599906],[-71.422371,41.86085899906],[-71.422234,41.86047399906],[-71.422155,41.86026599906],[-71.420241,41.86001699906],[-71.41987,41.85996799906],[-71.41979,41.85995799906],[-71.417714,41.85970099906],[-71.417548,41.85968099906],[-71.417418,41.85966599906],[-71.417474,41.85990699906],[-71.41763,41.86054499906],[-71.417759,41.86109199906],[-71.417862,41.86150399906],[-71.417872,41.86157299906],[-71.417953,41.86215599906],[-71.41811,41.86279999906],[-71.418235,41.86329699906],[-71.418276,41.86347199906],[-71.418293,41.86354399906],[-71.418495,41.86436599906],[-71.418624,41.86484899906],[-71.418793,41.86547799906],[-71.418866,41.86575699906],[-71.418975,41.86616399906],[-71.419281,41.86744799906],[-71.419523,41.86842099906],[-71.419594,41.86910999906],[-71.419876,41.86977399906],[-71.420219,41.86968999906],[-71.420731,41.86957199906],[-71.42157,41.86937299906],[-71.422081,41.86925499906],[-71.422348,41.86918599906],[-71.423012,41.86902599906],[-71.423126,41.86899899906],[-71.423897,41.86881999906],[-71.424057,41.86878599906],[-71.424675,41.86863299906],[-71.425209,41.86850699906]]]}}"}, +{"type": "blockgroup", "typeId": 118003, "areaId": 28916, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.430861,41.86837099906],[-71.430855,41.86833999906],[-71.430679,41.86706499906],[-71.430557,41.86611599906],[-71.43045,41.86526099906],[-71.430404,41.86491499906],[-71.430321,41.86429199906],[-71.429977,41.86181599906],[-71.429924,41.86136999906],[-71.429906,41.86125499906],[-71.429764,41.86121399906],[-71.42916,41.86114699906],[-71.428901,41.86111999906],[-71.428873,41.86111699906],[-71.427762,41.86098499906],[-71.427173,41.86091199906],[-71.425964,41.86075199906],[-71.425545,41.86070699906],[-71.425243,41.86066799906],[-71.423076,41.86038599906],[-71.422155,41.86026599906],[-71.422234,41.86047399906],[-71.422371,41.86085899906],[-71.422485,41.86115599906],[-71.422569,41.86138199906],[-71.42276,41.86189699906],[-71.422798,41.86199999906],[-71.422974,41.86246499906],[-71.423019,41.86258299906],[-71.423195,41.86306399906],[-71.423325,41.86342199906],[-71.423508,41.86392999906],[-71.423553,41.86404799906],[-71.423744,41.86457099906],[-71.423759,41.86460899906],[-71.42395,41.86512799906],[-71.423988,41.86522299906],[-71.424232,41.86586399906],[-71.424385,41.86627999906],[-71.424477,41.86651599906],[-71.424487,41.86653299906],[-71.424728,41.86718799906],[-71.42473,41.86720599906],[-71.424965,41.86785899906],[-71.425209,41.86850699906],[-71.426018,41.86830899906],[-71.426154,41.86827499906],[-71.426441,41.86822299906],[-71.426697,41.86819299906],[-71.426833,41.86818099906],[-71.427004,41.86817499906],[-71.42723,41.86816399906],[-71.427558,41.86816699906],[-71.427606,41.86817099906],[-71.427942,41.86818499906],[-71.428167,41.86819799906],[-71.428871,41.86824499906],[-71.429009,41.86825299906],[-71.429282,41.86827099906],[-71.429521,41.86828699906],[-71.430075,41.86832899906],[-71.430725,41.86836599906],[-71.430861,41.86837099906]]]}}"}, +{"type": "blockgroup", "typeId": 118004, "areaId": 28917, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.44133,41.86930099906],[-71.441292,41.86914099906],[-71.441208,41.86897699906],[-71.441116,41.86875499906],[-71.440956,41.86837399906],[-71.440742,41.86788199906],[-71.440636,41.86760299906],[-71.440491,41.86720999906],[-71.440331,41.86685199906],[-71.44031,41.86682699906],[-71.439781,41.86609299906],[-71.439522,41.86574899906],[-71.43927,41.86540999906],[-71.438957,41.86500499906],[-71.438881,41.86490599906],[-71.438499,41.86441399906],[-71.438416,41.86433799906],[-71.438377,41.86429999906],[-71.438293,41.86423899906],[-71.438126,41.86411999906],[-71.437645,41.86380399906],[-71.437531,41.86373099906],[-71.436844,41.86328499906],[-71.436768,41.86323199906],[-71.436447,41.86302199906],[-71.436127,41.86275899906],[-71.435699,41.86241499906],[-71.435143,41.86195399906],[-71.434998,41.86182399906],[-71.434868,41.86183099906],[-71.433534,41.86174099906],[-71.430801,41.86137299906],[-71.430219,41.86129499906],[-71.429906,41.86125499906],[-71.429924,41.86136999906],[-71.429977,41.86181599906],[-71.430321,41.86429199906],[-71.430404,41.86491499906],[-71.43045,41.86526099906],[-71.430557,41.86611599906],[-71.430679,41.86706499906],[-71.430855,41.86833999906],[-71.430861,41.86837099906],[-71.43087,41.86841199906],[-71.431213,41.87094099906],[-71.431229,41.87109399906],[-71.431236,41.87115899906],[-71.431313,41.87179899906],[-71.43145,41.87253599906],[-71.431557,41.87297399906],[-71.43162,41.87320199906],[-71.431679,41.87340899906],[-71.431709,41.87349599906],[-71.431729,41.87355299906],[-71.431824,41.87382499906],[-71.432076,41.87446599906],[-71.43219,41.87470999906],[-71.432312,41.87495399906],[-71.432579,41.87543899906],[-71.432999,41.87614799906],[-71.43337,41.87674899906],[-71.433462,41.87689799906],[-71.433654,41.87720999906],[-71.43392,41.87717399906],[-71.434329,41.87711899906],[-71.434891,41.87703899906],[-71.436998,41.87675199906],[-71.438179,41.87658799906],[-71.438179,41.87653699906],[-71.438194,41.87643799906],[-71.438194,41.87639999906],[-71.438204,41.87637699906],[-71.438219,41.87629199906],[-71.438293,41.87603399906],[-71.438316,41.87597699906],[-71.438332,41.87591599906],[-71.438362,41.87583499906],[-71.438385,41.87575099906],[-71.438416,41.87567099906],[-71.438507,41.87548399906],[-71.438614,41.87530499906],[-71.43866,41.87521699906],[-71.438683,41.87519099906],[-71.438721,41.87513399906],[-71.438843,41.87498899906],[-71.43898,41.87483999906],[-71.439163,41.87462199906],[-71.439201,41.87456099906],[-71.439285,41.87445099906],[-71.439293,41.87442799906],[-71.439308,41.87440499906],[-71.439323,41.87435499906],[-71.439323,41.87433199906],[-71.439331,41.87430599906],[-71.439331,41.87419899906],[-71.43927,41.87347399906],[-71.439255,41.87323799906],[-71.439178,41.87254299906],[-71.43911,41.87179599906],[-71.43911,41.87162799906],[-71.439125,41.87147899906],[-71.439171,41.87134199906],[-71.439209,41.87129199906],[-71.439224,41.87126899906],[-71.439293,41.87119699906],[-71.439354,41.87112399906],[-71.43972,41.87082299906],[-71.440308,41.87034199906],[-71.440727,41.87000999906],[-71.440933,41.86984999906],[-71.441177,41.86965199906],[-71.441292,41.86952199906],[-71.441322,41.86941499906],[-71.44133,41.86930099906]]]}}"}, +{"type": "blockgroup", "typeId": 119011, "areaId": 28918, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.453045,41.86329599906],[-71.453003,41.86326599906],[-71.452911,41.86319699906],[-71.451851,41.86246099906],[-71.451385,41.86214799906],[-71.448921,41.86049299906],[-71.447952,41.85984799906],[-71.446869,41.85911899906],[-71.446218,41.85869699906],[-71.445969,41.85853599906],[-71.445229,41.85803999906],[-71.444885,41.85780699906],[-71.442986,41.85655599906],[-71.442353,41.85696799906],[-71.438758,41.85935799906],[-71.437001,41.86051999906],[-71.436432,41.86089699906],[-71.436311,41.86100099906],[-71.436276,41.86104299906],[-71.436171,41.86107399906],[-71.434998,41.86182399906],[-71.435143,41.86195399906],[-71.435699,41.86241499906],[-71.436127,41.86275899906],[-71.436447,41.86302199906],[-71.436768,41.86323199906],[-71.436844,41.86328499906],[-71.437531,41.86373099906],[-71.437645,41.86380399906],[-71.438126,41.86411999906],[-71.438293,41.86423899906],[-71.438377,41.86429999906],[-71.438416,41.86433799906],[-71.438499,41.86441399906],[-71.438881,41.86490599906],[-71.438957,41.86500499906],[-71.43927,41.86540999906],[-71.439522,41.86574899906],[-71.439781,41.86609299906],[-71.44031,41.86682699906],[-71.440567,41.86675499906],[-71.441066,41.86658899906],[-71.441123,41.86656699906],[-71.44117,41.86654999906],[-71.44126,41.86651799906],[-71.441938,41.86629699906],[-71.442021,41.86627099906],[-71.442546,41.86609199906],[-71.442678,41.86604399906],[-71.443048,41.86591599906],[-71.443309,41.86582099906],[-71.443625,41.86571699906],[-71.444083,41.86555999906],[-71.444338,41.86547599906],[-71.445125,41.86521599906],[-71.445951,41.86497199906],[-71.446757,41.86475999906],[-71.447787,41.86452299906],[-71.448041,41.86447299906],[-71.4483,41.86440899906],[-71.448797,41.86429799906],[-71.449036,41.86424099906],[-71.449496,41.86413799906],[-71.449964,41.86402499906],[-71.450131,41.86397399906],[-71.451328,41.86368399906],[-71.451633,41.86360799906],[-71.453045,41.86329599906]]]}}"}, +{"type": "blockgroup", "typeId": 119012, "areaId": 28919, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.461145,41.86165299906],[-71.460945,41.86093899906],[-71.46077,41.86027899906],[-71.460594,41.85964599906],[-71.460403,41.85900899906],[-71.460106,41.85800899906],[-71.460007,41.85801699906],[-71.459724,41.85805899906],[-71.459662,41.85807199906],[-71.459549,41.85809699906],[-71.4589,41.85826099906],[-71.458763,41.85829499906],[-71.458496,41.85834899906],[-71.458366,41.85836799906],[-71.458244,41.85838299906],[-71.458038,41.85839099906],[-71.457886,41.85839099906],[-71.457649,41.85837599906],[-71.457375,41.85834499906],[-71.457108,41.85830699906],[-71.456818,41.85824999906],[-71.456665,41.85820799906],[-71.456454,41.85814299906],[-71.455994,41.85800199906],[-71.455887,41.85797099906],[-71.45575,41.85792499906],[-71.455574,41.85787599906],[-71.455132,41.85773799906],[-71.455017,41.85769699906],[-71.45488,41.85764299906],[-71.45475,41.85758599906],[-71.454552,41.85749099906],[-71.454414,41.85740699906],[-71.453781,41.85692599906],[-71.453606,41.85680399906],[-71.45343,41.85668899906],[-71.4533,41.85662099906],[-71.453171,41.85656699906],[-71.452927,41.85648299906],[-71.452751,41.85644099906],[-71.452667,41.85642599906],[-71.452535,41.85640699906],[-71.452433,41.85639399906],[-71.452324,41.85637999906],[-71.451647,41.85631299906],[-71.450493,41.85620099906],[-71.450348,41.85618999906],[-71.449348,41.85607499906],[-71.449219,41.85606399906],[-71.448916,41.85601599906],[-71.448776,41.85599499906],[-71.448708,41.85597599906],[-71.448631,41.85595699906],[-71.448509,41.85591499906],[-71.448387,41.85586499906],[-71.448273,41.85581199906],[-71.448181,41.85576199906],[-71.44807,41.85569399906],[-71.448006,41.85565599906],[-71.447754,41.85547299906],[-71.447685,41.85540799906],[-71.447609,41.85534699906],[-71.447487,41.85520199906],[-71.447144,41.85473299906],[-71.44696,41.85446499906],[-71.446838,41.85427499906],[-71.446785,41.85420599906],[-71.446686,41.85404999906],[-71.446281,41.85432099906],[-71.445633,41.85475899906],[-71.445351,41.85494799906],[-71.444482,41.85553299906],[-71.444373,41.85560699906],[-71.443975,41.85587499906],[-71.443067,41.85646399906],[-71.442986,41.85655599906],[-71.444885,41.85780699906],[-71.445229,41.85803999906],[-71.445969,41.85853599906],[-71.446218,41.85869699906],[-71.446869,41.85911899906],[-71.447952,41.85984799906],[-71.448921,41.86049299906],[-71.451385,41.86214799906],[-71.451851,41.86246099906],[-71.452911,41.86319699906],[-71.453003,41.86326599906],[-71.453045,41.86329599906],[-71.453134,41.86328099906],[-71.453756,41.86314899906],[-71.4543,41.86300899906],[-71.454523,41.86295999906],[-71.454643,41.86292199906],[-71.456258,41.86254699906],[-71.456534,41.86248199906],[-71.457986,41.86220699906],[-71.458088,41.86218999906],[-71.458789,41.86204699906],[-71.459479,41.86192399906],[-71.459863,41.86185099906],[-71.460227,41.86178999906],[-71.460541,41.86174299906],[-71.461145,41.86165299906]]]}}"}, +{"type": "blockgroup", "typeId": 119021, "areaId": 28920, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.475526,41.87156999906],[-71.475464,41.87150199906],[-71.475327,41.87144099906],[-71.474869,41.87127699906],[-71.474388,41.87107099906],[-71.474007,41.87094499906],[-71.473602,41.87082299906],[-71.473022,41.87081899906],[-71.47287,41.87079999906],[-71.472835,41.87078899906],[-71.472717,41.87074999906],[-71.472511,41.87061299906],[-71.472206,41.87038799906],[-71.471588,41.86996499906],[-71.471497,41.86987299906],[-71.471413,41.86975099906],[-71.471413,41.86965899906],[-71.471497,41.86938099906],[-71.471573,41.86918699906],[-71.471634,41.86903399906],[-71.471802,41.86871699906],[-71.471878,41.86852299906],[-71.471909,41.86828599906],[-71.471928,41.86809599906],[-71.471939,41.86799599906],[-71.471931,41.86783999906],[-71.471825,41.86757699906],[-71.471718,41.86732899906],[-71.47155,41.86719099906],[-71.471298,41.86700399906],[-71.471252,41.86697399906],[-71.471115,41.86686299906],[-71.470932,41.86668399906],[-71.470856,41.86658899906],[-71.470825,41.86655799906],[-71.470817,41.86654099906],[-71.470573,41.86622599906],[-71.470409,41.86603599906],[-71.470299,41.86590999906],[-71.4702,41.86582599906],[-71.470039,41.86568799906],[-71.469696,41.86547499906],[-71.469406,41.86531399906],[-71.469307,41.86526099906],[-71.469198,41.86521699906],[-71.469025,41.86514899906],[-71.468971,41.86512799906],[-71.468704,41.86509699906],[-71.468638,41.86510199906],[-71.468491,41.86511599906],[-71.468231,41.86515799906],[-71.467964,41.86518899906],[-71.467903,41.86517699906],[-71.467781,41.86515399906],[-71.467424,41.86503499906],[-71.467323,41.86500199906],[-71.467161,41.86493799906],[-71.466936,41.86484899906],[-71.466782,41.86478799906],[-71.466301,41.86461299906],[-71.46624,41.86458599906],[-71.465904,41.86445599906],[-71.465683,41.86431899906],[-71.465393,41.86408999906],[-71.465134,41.86383699906],[-71.465088,41.86379199906],[-71.465027,41.86370799906],[-71.464836,41.86347999906],[-71.464805,41.86343499906],[-71.464607,41.86313999906],[-71.464516,41.86300699906],[-71.464416,41.86286999906],[-71.464294,41.86270099906],[-71.463951,41.86221299906],[-71.463573,41.86165699906],[-71.463493,41.86153799906],[-71.463287,41.86126299906],[-71.462677,41.86138199906],[-71.461891,41.86151499906],[-71.461145,41.86165299906],[-71.460541,41.86174299906],[-71.460227,41.86178999906],[-71.459863,41.86185099906],[-71.459479,41.86192399906],[-71.458789,41.86204699906],[-71.458088,41.86218999906],[-71.457986,41.86220699906],[-71.456534,41.86248199906],[-71.456258,41.86254699906],[-71.454643,41.86292199906],[-71.454523,41.86295999906],[-71.4543,41.86300899906],[-71.453756,41.86314899906],[-71.453134,41.86328099906],[-71.453045,41.86329599906],[-71.453072,41.86331599906],[-71.4531,41.86333199906],[-71.453751,41.86371999906],[-71.454432,41.86417399906],[-71.454628,41.86430399906],[-71.454773,41.86439499906],[-71.45546,41.86483799906],[-71.455963,41.86516599906],[-71.456543,41.86553199906],[-71.457771,41.86634399906],[-71.45787,41.86640899906],[-71.458076,41.86655799906],[-71.458344,41.86674499906],[-71.458754,41.86703699906],[-71.459579,41.86762599906],[-71.459655,41.86767999906],[-71.461304,41.86885099906],[-71.461601,41.86906099906],[-71.462196,41.86949199906],[-71.463778,41.87065099906],[-71.463982,41.87079999906],[-71.464714,41.87132999906],[-71.464886,41.87144999906],[-71.466759,41.87276699906],[-71.4669,41.87273799906],[-71.467504,41.87263399906],[-71.46769,41.87259899906],[-71.468359,41.87247799906],[-71.468845,41.87238999906],[-71.468913,41.87237799906],[-71.46922,41.87238999906],[-71.470359,41.87224299906],[-71.473271,41.87186599906],[-71.474456,41.87177499906],[-71.474826,41.87172699906],[-71.475526,41.87156999906]]]}}"}, +{"type": "blockgroup", "typeId": 119022, "areaId": 28921, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.455771,41.87381099906],[-71.455764,41.87361799906],[-71.455757,41.87355299906],[-71.455745,41.87353199906],[-71.45552,41.87350799906],[-71.455124,41.87346299906],[-71.455101,41.87334399906],[-71.455063,41.87321899906],[-71.454872,41.87286399906],[-71.454636,41.87230699906],[-71.454887,41.87220799906],[-71.454918,41.87213499906],[-71.454926,41.87205899906],[-71.454674,41.87147099906],[-71.454361,41.87079199906],[-71.454025,41.87007499906],[-71.453712,41.86937699906],[-71.453384,41.86865599906],[-71.452805,41.86883499906],[-71.452461,41.86893499906],[-71.452202,41.86897999906],[-71.452042,41.86896099906],[-71.451912,41.86892299906],[-71.45179,41.86882799906],[-71.451675,41.86862899906],[-71.451546,41.86838499906],[-71.45153,41.86831699906],[-71.451385,41.86798499906],[-71.45121,41.86766399906],[-71.451019,41.86745099906],[-71.45079,41.86721399906],[-71.450653,41.86706199906],[-71.450119,41.86750799906],[-71.449242,41.86821699906],[-71.449051,41.86837799906],[-71.44857,41.86875499906],[-71.44796,41.86925499906],[-71.447777,41.86936199906],[-71.447639,41.86939199906],[-71.447327,41.86941499906],[-71.447311,41.86967799906],[-71.447304,41.87033799906],[-71.447304,41.87044099906],[-71.447319,41.87056399906],[-71.44735,41.87063199906],[-71.447189,41.87049099906],[-71.447075,41.87042599906],[-71.446938,41.87037999906],[-71.446793,41.87035799906],[-71.446548,41.87036099906],[-71.446465,41.87034199906],[-71.445267,41.87049299906],[-71.444588,41.86947599906],[-71.444496,41.86947999906],[-71.444438,41.86945199906],[-71.444359,41.86941499906],[-71.444244,41.86933099906],[-71.444221,41.86931199906],[-71.443817,41.86911799906],[-71.443573,41.86897999906],[-71.443497,41.86889299906],[-71.443306,41.86854199906],[-71.443108,41.86814899906],[-71.442986,41.86787799906],[-71.442871,41.86767599906],[-71.442825,41.86761899906],[-71.442757,41.86751899906],[-71.442627,41.86742799906],[-71.442497,41.86740099906],[-71.442314,41.86741299906],[-71.442223,41.86741599906],[-71.441628,41.86748099906],[-71.441528,41.86748899906],[-71.440941,41.86754999906],[-71.440636,41.86760299906],[-71.440742,41.86788199906],[-71.440956,41.86837399906],[-71.441116,41.86875499906],[-71.441208,41.86897699906],[-71.441292,41.86914099906],[-71.44133,41.86930099906],[-71.441322,41.86941499906],[-71.441292,41.86952199906],[-71.441177,41.86965199906],[-71.440933,41.86984999906],[-71.440727,41.87000999906],[-71.440308,41.87034199906],[-71.43972,41.87082299906],[-71.439354,41.87112399906],[-71.439293,41.87119699906],[-71.439224,41.87126899906],[-71.439209,41.87129199906],[-71.439171,41.87134199906],[-71.439125,41.87147899906],[-71.43911,41.87162799906],[-71.43911,41.87179599906],[-71.439178,41.87254299906],[-71.439255,41.87323799906],[-71.43927,41.87347399906],[-71.439331,41.87419899906],[-71.439331,41.87430599906],[-71.439323,41.87433199906],[-71.439323,41.87435499906],[-71.439308,41.87440499906],[-71.439293,41.87442799906],[-71.439285,41.87445099906],[-71.439201,41.87456099906],[-71.439163,41.87462199906],[-71.43898,41.87483999906],[-71.438843,41.87498899906],[-71.438721,41.87513399906],[-71.438683,41.87519099906],[-71.43866,41.87521699906],[-71.438614,41.87530499906],[-71.438507,41.87548399906],[-71.438416,41.87567099906],[-71.438385,41.87575099906],[-71.438362,41.87583499906],[-71.438332,41.87591599906],[-71.438316,41.87597699906],[-71.438293,41.87603399906],[-71.438219,41.87629199906],[-71.438204,41.87637699906],[-71.438194,41.87639999906],[-71.438194,41.87643799906],[-71.438179,41.87653699906],[-71.438179,41.87658799906],[-71.440095,41.87634099906],[-71.44147,41.87618199906],[-71.441955,41.87611599906],[-71.443693,41.87590599906],[-71.443865,41.87588499906],[-71.445366,41.87570199906],[-71.446445,41.87556799906],[-71.447086,41.87548899906],[-71.447894,41.87538899906],[-71.449154,41.87524199906],[-71.455584,41.87442899906],[-71.455602,41.87429699906],[-71.45561,41.87415499906],[-71.455642,41.87408899906],[-71.455681,41.87403599906],[-71.455728,41.87392699906],[-71.455759,41.87386799906],[-71.455771,41.87381099906]]]}}"}, +{"type": "blockgroup", "typeId": 119023, "areaId": 28922, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.466759,41.87276699906],[-71.464886,41.87144999906],[-71.464714,41.87132999906],[-71.463982,41.87079999906],[-71.463778,41.87065099906],[-71.462196,41.86949199906],[-71.461601,41.86906099906],[-71.461304,41.86885099906],[-71.459655,41.86767999906],[-71.459579,41.86762599906],[-71.458754,41.86703699906],[-71.458344,41.86674499906],[-71.458076,41.86655799906],[-71.45787,41.86640899906],[-71.457771,41.86634399906],[-71.456543,41.86553199906],[-71.455963,41.86516599906],[-71.45546,41.86483799906],[-71.454773,41.86439499906],[-71.454628,41.86430399906],[-71.454432,41.86417399906],[-71.453751,41.86371999906],[-71.4531,41.86333199906],[-71.453072,41.86331599906],[-71.453045,41.86329599906],[-71.451633,41.86360799906],[-71.451328,41.86368399906],[-71.450131,41.86397399906],[-71.449964,41.86402499906],[-71.449496,41.86413799906],[-71.449036,41.86424099906],[-71.448797,41.86429799906],[-71.4483,41.86440899906],[-71.448041,41.86447299906],[-71.447787,41.86452299906],[-71.446757,41.86475999906],[-71.445951,41.86497199906],[-71.445125,41.86521599906],[-71.444338,41.86547599906],[-71.444083,41.86555999906],[-71.443625,41.86571699906],[-71.443309,41.86582099906],[-71.443048,41.86591599906],[-71.442678,41.86604399906],[-71.442546,41.86609199906],[-71.442021,41.86627099906],[-71.441938,41.86629699906],[-71.44126,41.86651799906],[-71.44117,41.86654999906],[-71.441123,41.86656699906],[-71.441066,41.86658899906],[-71.440567,41.86675499906],[-71.44031,41.86682699906],[-71.440331,41.86685199906],[-71.440491,41.86720999906],[-71.440636,41.86760299906],[-71.440941,41.86754999906],[-71.441528,41.86748899906],[-71.441628,41.86748099906],[-71.442223,41.86741599906],[-71.442314,41.86741299906],[-71.442497,41.86740099906],[-71.442627,41.86742799906],[-71.442757,41.86751899906],[-71.442825,41.86761899906],[-71.442871,41.86767599906],[-71.442986,41.86787799906],[-71.443108,41.86814899906],[-71.443306,41.86854199906],[-71.443497,41.86889299906],[-71.443573,41.86897999906],[-71.443817,41.86911799906],[-71.444221,41.86931199906],[-71.444244,41.86933099906],[-71.444359,41.86941499906],[-71.444438,41.86945199906],[-71.444496,41.86947999906],[-71.444588,41.86947599906],[-71.445267,41.87049299906],[-71.446465,41.87034199906],[-71.446548,41.87036099906],[-71.446793,41.87035799906],[-71.446938,41.87037999906],[-71.447075,41.87042599906],[-71.447189,41.87049099906],[-71.44735,41.87063199906],[-71.447319,41.87056399906],[-71.447304,41.87044099906],[-71.447304,41.87033799906],[-71.447311,41.86967799906],[-71.447327,41.86941499906],[-71.447639,41.86939199906],[-71.447777,41.86936199906],[-71.44796,41.86925499906],[-71.44857,41.86875499906],[-71.449051,41.86837799906],[-71.449242,41.86821699906],[-71.450119,41.86750799906],[-71.450653,41.86706199906],[-71.45079,41.86721399906],[-71.451019,41.86745099906],[-71.45121,41.86766399906],[-71.451385,41.86798499906],[-71.45153,41.86831699906],[-71.451546,41.86838499906],[-71.451675,41.86862899906],[-71.45179,41.86882799906],[-71.451912,41.86892299906],[-71.452042,41.86896099906],[-71.452202,41.86897999906],[-71.452461,41.86893499906],[-71.452805,41.86883499906],[-71.453384,41.86865599906],[-71.453712,41.86937699906],[-71.454025,41.87007499906],[-71.454361,41.87079199906],[-71.454674,41.87147099906],[-71.454926,41.87205899906],[-71.454918,41.87213499906],[-71.454887,41.87220799906],[-71.454636,41.87230699906],[-71.454872,41.87286399906],[-71.455063,41.87321899906],[-71.455101,41.87334399906],[-71.455124,41.87346299906],[-71.45552,41.87350799906],[-71.455745,41.87353199906],[-71.455757,41.87355299906],[-71.455764,41.87361799906],[-71.455771,41.87381099906],[-71.455759,41.87386799906],[-71.455728,41.87392699906],[-71.455681,41.87403599906],[-71.455642,41.87408899906],[-71.45561,41.87415499906],[-71.455602,41.87429699906],[-71.455584,41.87442899906],[-71.461442,41.87370299906],[-71.463265,41.87352899906],[-71.466623,41.87279699906],[-71.466759,41.87276699906]]]}}"}, +{"type": "blockgroup", "typeId": 120001, "areaId": 28923, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.46666,41.85269499906],[-71.466576,41.85261899906],[-71.466293,41.85240899906],[-71.465981,41.85223399906],[-71.465836,41.85215399906],[-71.465118,41.85179899906],[-71.465044,41.85176599906],[-71.465027,41.85175299906],[-71.464775,41.85163499906],[-71.463867,41.85119999906],[-71.463066,41.85082599906],[-71.462631,41.85061599906],[-71.462387,41.85050599906],[-71.461967,41.85031499906],[-71.461494,41.85011299906],[-71.460518,41.84969699906],[-71.45993,41.84944899906],[-71.459633,41.84933199906],[-71.459419,41.84924699906],[-71.459015,41.84909399906],[-71.458603,41.84894199906],[-71.457817,41.84864799906],[-71.4571,41.84837299906],[-71.4571,41.84897599906],[-71.457092,41.84957499906],[-71.457085,41.84978899906],[-71.457077,41.85001399906],[-71.457077,41.85060099906],[-71.4571,41.85095999906],[-71.457161,41.85158899906],[-71.457161,41.85165799906],[-71.457191,41.85190199906],[-71.45723,41.85221099906],[-71.457283,41.85250499906],[-71.457336,41.85284799906],[-71.457382,41.85312999906],[-71.45739,41.85321399906],[-71.457436,41.85338199906],[-71.457443,41.85346199906],[-71.457458,41.85350799906],[-71.457466,41.85356899906],[-71.457481,41.85362999906],[-71.457695,41.85414499906],[-71.45783,41.85450099906],[-71.458,41.85494999906],[-71.458084,41.85512899906],[-71.458153,41.85523199906],[-71.458183,41.85530099906],[-71.458665,41.85601399906],[-71.458778,41.85618199906],[-71.458885,41.85633099906],[-71.458984,41.85644099906],[-71.459011,41.85648799906],[-71.459029,41.85651099906],[-71.459373,41.85710099906],[-71.459435,41.85727699906],[-71.459496,41.85779999906],[-71.459549,41.85809699906],[-71.459662,41.85807199906],[-71.459724,41.85805899906],[-71.460007,41.85801699906],[-71.460106,41.85800899906],[-71.460403,41.85900899906],[-71.460594,41.85964599906],[-71.46077,41.86027899906],[-71.460945,41.86093899906],[-71.461145,41.86165299906],[-71.461891,41.86151499906],[-71.462677,41.86138199906],[-71.463287,41.86126299906],[-71.462967,41.86064099906],[-71.462997,41.86045499906],[-71.463003,41.86037699906],[-71.46302,41.86029799906],[-71.463043,41.86023699906],[-71.463097,41.86013399906],[-71.463165,41.85997399906],[-71.463249,41.85979099906],[-71.463341,41.85957699906],[-71.463429,41.85939599906],[-71.463524,41.85920299906],[-71.463715,41.85880299906],[-71.463936,41.85826499906],[-71.463997,41.85813099906],[-71.46405,41.85799799906],[-71.46418,41.85768499906],[-71.464447,41.85704399906],[-71.464478,41.85695999906],[-71.464531,41.85683399906],[-71.464615,41.85662099906],[-71.464638,41.85652199906],[-71.464653,41.85628499906],[-71.464668,41.85588799906],[-71.464668,41.85558299906],[-71.464676,41.85491599906],[-71.464684,41.85433999906],[-71.464684,41.85430499906],[-71.464714,41.85404999906],[-71.464737,41.85398899906],[-71.464798,41.85386699906],[-71.464844,41.85380599906],[-71.464874,41.85377499906],[-71.464951,41.85369499906],[-71.465027,41.85363799906],[-71.465111,41.85358399906],[-71.465424,41.85340099906],[-71.466133,41.85299699906],[-71.46666,41.85269499906]]]}}"}, +{"type": "blockgroup", "typeId": 120002, "areaId": 28924, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.459549,41.85809699906],[-71.459496,41.85779999906],[-71.459435,41.85727699906],[-71.459373,41.85710099906],[-71.459029,41.85651099906],[-71.459011,41.85648799906],[-71.458984,41.85644099906],[-71.458885,41.85633099906],[-71.458778,41.85618199906],[-71.458665,41.85601399906],[-71.458183,41.85530099906],[-71.458153,41.85523199906],[-71.458084,41.85512899906],[-71.458,41.85494999906],[-71.45783,41.85450099906],[-71.457695,41.85414499906],[-71.457481,41.85362999906],[-71.457466,41.85356899906],[-71.457458,41.85350799906],[-71.457443,41.85346199906],[-71.457436,41.85338199906],[-71.45739,41.85321399906],[-71.457382,41.85312999906],[-71.457336,41.85284799906],[-71.457283,41.85250499906],[-71.45723,41.85221099906],[-71.457191,41.85190199906],[-71.457161,41.85165799906],[-71.457161,41.85158899906],[-71.4571,41.85095999906],[-71.457077,41.85060099906],[-71.457077,41.85001399906],[-71.457085,41.84978899906],[-71.457092,41.84957499906],[-71.4571,41.84897599906],[-71.4571,41.84837299906],[-71.456184,41.84801099906],[-71.456025,41.84794999906],[-71.455956,41.84792299906],[-71.455905,41.84790299906],[-71.455753,41.84800599906],[-71.455671,41.84805999906],[-71.455581,41.84812199906],[-71.455554,41.84813999906],[-71.455376,41.84826099906],[-71.454909,41.84857499906],[-71.454503,41.84884599906],[-71.454073,41.84913599906],[-71.453552,41.84944499906],[-71.452509,41.85018799906],[-71.452352,41.85029299906],[-71.45184,41.85063499906],[-71.451263,41.85101999906],[-71.450973,41.85121399906],[-71.450907,41.85125699906],[-71.450654,41.85142499906],[-71.449829,41.85199399906],[-71.449632,41.85210199906],[-71.449569,41.85213299906],[-71.449493,41.85218499906],[-71.448324,41.85298099906],[-71.447913,41.85326099906],[-71.447182,41.85374499906],[-71.446686,41.85404999906],[-71.446785,41.85420599906],[-71.446838,41.85427499906],[-71.44696,41.85446499906],[-71.447144,41.85473299906],[-71.447487,41.85520199906],[-71.447609,41.85534699906],[-71.447685,41.85540799906],[-71.447754,41.85547299906],[-71.448006,41.85565599906],[-71.44807,41.85569399906],[-71.448181,41.85576199906],[-71.448273,41.85581199906],[-71.448387,41.85586499906],[-71.448509,41.85591499906],[-71.448631,41.85595699906],[-71.448708,41.85597599906],[-71.448776,41.85599499906],[-71.448916,41.85601599906],[-71.449219,41.85606399906],[-71.449348,41.85607499906],[-71.450348,41.85618999906],[-71.450493,41.85620099906],[-71.451647,41.85631299906],[-71.452324,41.85637999906],[-71.452433,41.85639399906],[-71.452535,41.85640699906],[-71.452667,41.85642599906],[-71.452751,41.85644099906],[-71.452927,41.85648299906],[-71.453171,41.85656699906],[-71.4533,41.85662099906],[-71.45343,41.85668899906],[-71.453606,41.85680399906],[-71.453781,41.85692599906],[-71.454414,41.85740699906],[-71.454552,41.85749099906],[-71.45475,41.85758599906],[-71.45488,41.85764299906],[-71.455017,41.85769699906],[-71.455132,41.85773799906],[-71.455574,41.85787599906],[-71.45575,41.85792499906],[-71.455887,41.85797099906],[-71.455994,41.85800199906],[-71.456454,41.85814299906],[-71.456665,41.85820799906],[-71.456818,41.85824999906],[-71.457108,41.85830699906],[-71.457375,41.85834499906],[-71.457649,41.85837599906],[-71.457886,41.85839099906],[-71.458038,41.85839099906],[-71.458244,41.85838299906],[-71.458366,41.85836799906],[-71.458496,41.85834899906],[-71.458763,41.85829499906],[-71.4589,41.85826099906],[-71.459549,41.85809699906]]]}}"}, +{"type": "blockgroup", "typeId": 120003, "areaId": 28925, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.469193,41.84244199906],[-71.469177,41.84230799906],[-71.469141,41.84207199906],[-71.469124,41.84196099906],[-71.46904,41.84149899906],[-71.469002,41.84123599906],[-71.468948,41.84090399906],[-71.468895,41.84053799906],[-71.468819,41.84001499906],[-71.468796,41.83987399906],[-71.468781,41.83980599906],[-71.468755,41.83944699906],[-71.468742,41.83925999906],[-71.467685,41.83996799906],[-71.46771,41.84007899906],[-71.466949,41.84047699906],[-71.466393,41.84085499906],[-71.465652,41.84133599906],[-71.465546,41.84141499906],[-71.465309,41.84156799906],[-71.46456,41.84206599906],[-71.463531,41.84275099906],[-71.463187,41.84295999906],[-71.462484,41.84344399906],[-71.460292,41.84495699906],[-71.459865,41.84525199906],[-71.459526,41.84543999906],[-71.458656,41.84605399906],[-71.45845,41.84619099906],[-71.457978,41.84649299906],[-71.457629,41.84673099906],[-71.457565,41.84678599906],[-71.456127,41.84775199906],[-71.455992,41.84784399906],[-71.455905,41.84790299906],[-71.455956,41.84792299906],[-71.456025,41.84794999906],[-71.456184,41.84801099906],[-71.4571,41.84837299906],[-71.457817,41.84864799906],[-71.458603,41.84894199906],[-71.459015,41.84909399906],[-71.459419,41.84924699906],[-71.459633,41.84933199906],[-71.45993,41.84944899906],[-71.460518,41.84969699906],[-71.461494,41.85011299906],[-71.461967,41.85031499906],[-71.462387,41.85050599906],[-71.462631,41.85061599906],[-71.463066,41.85082599906],[-71.463867,41.85119999906],[-71.464775,41.85163499906],[-71.465027,41.85175299906],[-71.465044,41.85176599906],[-71.465118,41.85179899906],[-71.465836,41.85215399906],[-71.465981,41.85223399906],[-71.466293,41.85240899906],[-71.466576,41.85261899906],[-71.466103,41.85201999906],[-71.465889,41.85176499906],[-71.46563,41.85142099906],[-71.465492,41.85123399906],[-71.465309,41.85102499906],[-71.465118,41.85077699906],[-71.46505,41.85067399906],[-71.464984,41.85053799906],[-71.464912,41.85039099906],[-71.464874,41.85029599906],[-71.464798,41.85005999906],[-71.464767,41.84995999906],[-71.464714,41.84981499906],[-71.464676,41.84966999906],[-71.464645,41.84958299906],[-71.464645,41.84956399906],[-71.464638,41.84954499906],[-71.46463,41.84948699906],[-71.464592,41.84934999906],[-71.464592,41.84925799906],[-71.4646,41.84921299906],[-71.464615,41.84916299906],[-71.464661,41.84906399906],[-71.464699,41.84900299906],[-71.464752,41.84894599906],[-71.464813,41.84889199906],[-71.46492,41.84880799906],[-71.465157,41.84865599906],[-71.465881,41.84817899906],[-71.466095,41.84799999906],[-71.466324,41.84779399906],[-71.467178,41.84686699906],[-71.467567,41.84646599906],[-71.467621,41.84639399906],[-71.46772,41.84624499906],[-71.467766,41.84616099906],[-71.467796,41.84611099906],[-71.467827,41.84604299906],[-71.467865,41.84592799906],[-71.467896,41.84582099906],[-71.467918,41.84559599906],[-71.467918,41.84498199906],[-71.467941,41.84467299906],[-71.467964,41.84457799906],[-71.468025,41.84442899906],[-71.468063,41.84435699906],[-71.468117,41.84427299906],[-71.468178,41.84419299906],[-71.468353,41.84392899906],[-71.468422,41.84382999906],[-71.468826,41.84330399906],[-71.468873,41.84323799906],[-71.468971,41.84310199906],[-71.469009,41.84304199906],[-71.469109,41.84288799906],[-71.469116,41.84286499906],[-71.469139,41.84282699906],[-71.469162,41.84276199906],[-71.469177,41.84269699906],[-71.469193,41.84256699906],[-71.469193,41.84244199906]]]}}"}, +{"type": "blockgroup", "typeId": 120004, "areaId": 28926, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.476212,41.85421799906],[-71.476028,41.85396199906],[-71.475945,41.85386699906],[-71.475746,41.85370599906],[-71.475571,41.85359199906],[-71.475281,41.85338999906],[-71.474884,41.85306899906],[-71.474541,41.85277899906],[-71.474342,41.85261199906],[-71.474121,41.85240899906],[-71.473938,41.85221099906],[-71.473869,41.85212299906],[-71.473808,41.85203199906],[-71.473747,41.85188699906],[-71.473717,41.85177999906],[-71.473694,41.85163899906],[-71.473595,41.85104399906],[-71.47345,41.84997899906],[-71.472702,41.85003299906],[-71.472549,41.85003999906],[-71.471954,41.85007499906],[-71.471512,41.85024299906],[-71.470963,41.85045199906],[-71.47065,41.85054399906],[-71.470573,41.84987599906],[-71.470551,41.84972399906],[-71.470535,41.84968899906],[-71.470413,41.84921299906],[-71.469612,41.84923899906],[-71.469246,41.84925099906],[-71.469223,41.84909799906],[-71.469193,41.84897999906],[-71.469078,41.84865599906],[-71.469002,41.84849199906],[-71.468925,41.84838099906],[-71.468834,41.84828899906],[-71.468399,41.84798799906],[-71.468254,41.84791599906],[-71.46814,41.84784699906],[-71.468086,41.84780099906],[-71.468056,41.84773599906],[-71.46801,41.84757999906],[-71.467972,41.84736999906],[-71.467857,41.84661499906],[-71.467827,41.84634399906],[-71.467766,41.84616099906],[-71.46772,41.84624499906],[-71.467621,41.84639399906],[-71.467567,41.84646599906],[-71.467178,41.84686699906],[-71.466324,41.84779399906],[-71.466095,41.84799999906],[-71.465881,41.84817899906],[-71.465157,41.84865599906],[-71.46492,41.84880799906],[-71.464813,41.84889199906],[-71.464752,41.84894599906],[-71.464699,41.84900299906],[-71.464661,41.84906399906],[-71.464615,41.84916299906],[-71.4646,41.84921299906],[-71.464592,41.84925799906],[-71.464592,41.84934999906],[-71.46463,41.84948699906],[-71.464638,41.84954499906],[-71.464645,41.84956399906],[-71.464645,41.84958299906],[-71.464676,41.84966999906],[-71.464714,41.84981499906],[-71.464767,41.84995999906],[-71.464798,41.85005999906],[-71.464874,41.85029599906],[-71.464912,41.85039099906],[-71.464984,41.85053799906],[-71.46505,41.85067399906],[-71.465118,41.85077699906],[-71.465309,41.85102499906],[-71.465492,41.85123399906],[-71.46563,41.85142099906],[-71.465889,41.85176499906],[-71.466103,41.85201999906],[-71.466576,41.85261899906],[-71.46666,41.85269499906],[-71.466843,41.85285499906],[-71.467987,41.85385099906],[-71.468246,41.85403099906],[-71.468399,41.85411099906],[-71.468441,41.85412599906],[-71.468513,41.85415299906],[-71.468559,41.85417199906],[-71.468735,41.85421399906],[-71.468834,41.85422899906],[-71.469284,41.85427099906],[-71.469498,41.85429399906],[-71.470161,41.85434699906],[-71.47039,41.85436599906],[-71.471405,41.85445799906],[-71.47213,41.85451899906],[-71.473564,41.85464199906],[-71.473602,41.85464499906],[-71.473638,41.85464899906],[-71.473729,41.85465399906],[-71.475105,41.85477099906],[-71.475159,41.85477399906],[-71.47525,41.85478999906],[-71.47538,41.85468699906],[-71.475586,41.85455699906],[-71.475746,41.85446199906],[-71.476051,41.85430499906],[-71.47612,41.85426299906],[-71.476212,41.85421799906]]]}}"}, +{"type": "blockgroup", "typeId": 120005, "areaId": 28927, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.475105,41.85477099906],[-71.473729,41.85465399906],[-71.473638,41.85464899906],[-71.473602,41.85464499906],[-71.473564,41.85464199906],[-71.47213,41.85451899906],[-71.471405,41.85445799906],[-71.47039,41.85436599906],[-71.470161,41.85434699906],[-71.469498,41.85429399906],[-71.469284,41.85427099906],[-71.468834,41.85422899906],[-71.468735,41.85421399906],[-71.468559,41.85417199906],[-71.468513,41.85415299906],[-71.468441,41.85412599906],[-71.468399,41.85411099906],[-71.468246,41.85403099906],[-71.467987,41.85385099906],[-71.466843,41.85285499906],[-71.46666,41.85269499906],[-71.466133,41.85299699906],[-71.465424,41.85340099906],[-71.465111,41.85358399906],[-71.465027,41.85363799906],[-71.464951,41.85369499906],[-71.464874,41.85377499906],[-71.464844,41.85380599906],[-71.464798,41.85386699906],[-71.464737,41.85398899906],[-71.464714,41.85404999906],[-71.464684,41.85430499906],[-71.464684,41.85433999906],[-71.464676,41.85491599906],[-71.464668,41.85558299906],[-71.464668,41.85588799906],[-71.464653,41.85628499906],[-71.464638,41.85652199906],[-71.464615,41.85662099906],[-71.464531,41.85683399906],[-71.464478,41.85695999906],[-71.464447,41.85704399906],[-71.46418,41.85768499906],[-71.46405,41.85799799906],[-71.463997,41.85813099906],[-71.463936,41.85826499906],[-71.463715,41.85880299906],[-71.463524,41.85920299906],[-71.463429,41.85939599906],[-71.463341,41.85957699906],[-71.463249,41.85979099906],[-71.463165,41.85997399906],[-71.463097,41.86013399906],[-71.463043,41.86023699906],[-71.46302,41.86029799906],[-71.463003,41.86037699906],[-71.462997,41.86045499906],[-71.462967,41.86064099906],[-71.463287,41.86126299906],[-71.463387,41.86124399906],[-71.463577,41.86120199906],[-71.464119,41.86109899906],[-71.464401,41.86104999906],[-71.464676,41.86099199906],[-71.464847,41.86096799906],[-71.465074,41.86093699906],[-71.465172,41.86092399906],[-71.465378,41.86089299906],[-71.46548,41.86087599906],[-71.46558,41.86085899906],[-71.465851,41.86081299906],[-71.466363,41.86071499906],[-71.466408,41.86070599906],[-71.467011,41.86059699906],[-71.467781,41.86045799906],[-71.467983,41.86041999906],[-71.468712,41.86028299906],[-71.4701,41.86002299906],[-71.470619,41.85993199906],[-71.47084,41.85989799906],[-71.471069,41.85986299906],[-71.471725,41.85978699906],[-71.471725,41.85971799906],[-71.471298,41.85927999906],[-71.471031,41.85897399906],[-71.470985,41.85892899906],[-71.470955,41.85888299906],[-71.470932,41.85883699906],[-71.470932,41.85880999906],[-71.470955,41.85875699906],[-71.471397,41.85842899906],[-71.47168,41.85821899906],[-71.471931,41.85802499906],[-71.472798,41.85736299906],[-71.472946,41.85724999906],[-71.473068,41.85715899906],[-71.473289,41.85698299906],[-71.473419,41.85688399906],[-71.473701,41.85668599906],[-71.474121,41.85634999906],[-71.474251,41.85625099906],[-71.474495,41.85606399906],[-71.474602,41.85597599906],[-71.474701,41.85591899906],[-71.474792,41.85585399906],[-71.474846,41.85582399906],[-71.474876,41.85577799906],[-71.474907,41.85572799906],[-71.475014,41.85529699906],[-71.475052,41.85506799906],[-71.475105,41.85477099906]]]}}"}, +{"type": "blockgroup", "typeId": 121021, "areaId": 28928, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.480974,41.85082099906],[-71.480954,41.85077599906],[-71.480843,41.85056299906],[-71.48084,41.85051399906],[-71.480908,41.85024499906],[-71.480911,41.85019699906],[-71.480907,41.85013899906],[-71.480889,41.85008099906],[-71.480812,41.84991499906],[-71.480779,41.84985499906],[-71.48075,41.84978999906],[-71.480745,41.84973599906],[-71.480688,41.84960899906],[-71.480631,41.84942699906],[-71.480619,41.84935299906],[-71.480504,41.84925499906],[-71.480503,41.84921599906],[-71.480503,41.84919699906],[-71.480552,41.84908499906],[-71.4806,41.84904499906],[-71.480583,41.84893999906],[-71.480577,41.84877699906],[-71.480575,41.84859299906],[-71.480569,41.84853299906],[-71.480577,41.84826399906],[-71.480553,41.84817499906],[-71.480597,41.84794499906],[-71.480585,41.84788199906],[-71.480581,41.84782699906],[-71.480592,41.84757199906],[-71.4806,41.84751499906],[-71.480617,41.84745899906],[-71.480641,41.84740099906],[-71.480743,41.84721099906],[-71.480715,41.84715799906],[-71.480697,41.84709399906],[-71.480643,41.84705399906],[-71.480597,41.84701199906],[-71.480571,41.84690299906],[-71.480538,41.84682199906],[-71.48054,41.84675099906],[-71.480551,41.84669299906],[-71.480575,41.84663599906],[-71.480602,41.84660499906],[-71.480782,41.84596999906],[-71.48033,41.84504399906],[-71.479586,41.84446199906],[-71.479521,41.84428299906],[-71.479004,41.84350099906],[-71.479012,41.84345799906],[-71.479019,41.84320999906],[-71.479011,41.84312499906],[-71.47899,41.84303899906],[-71.478951,41.84295399906],[-71.478888,41.84284599906],[-71.478784,41.84266699906],[-71.478706,41.84250599906],[-71.478672,41.84241799906],[-71.478659,41.84236899906],[-71.477882,41.84253699906],[-71.477226,41.84270099906],[-71.476891,41.84277299906],[-71.476715,41.84256699906],[-71.476387,41.84215499906],[-71.476372,41.84211699906],[-71.476214,41.84215199906],[-71.475662,41.84227399906],[-71.475531,41.84230499906],[-71.474876,41.84246099906],[-71.473694,41.84271999906],[-71.4729,41.84289899906],[-71.472237,41.84304799906],[-71.472046,41.84309399906],[-71.47197,41.84311299906],[-71.471207,41.84329199906],[-71.471115,41.84331499906],[-71.470619,41.84343699906],[-71.470352,41.84350199906],[-71.469521,41.84368899906],[-71.468689,41.84385699906],[-71.468353,41.84392899906],[-71.468178,41.84419299906],[-71.468117,41.84427299906],[-71.468063,41.84435699906],[-71.468025,41.84442899906],[-71.467964,41.84457799906],[-71.467941,41.84467299906],[-71.467918,41.84498199906],[-71.467918,41.84559599906],[-71.467896,41.84582099906],[-71.467865,41.84592799906],[-71.467827,41.84604299906],[-71.467796,41.84611099906],[-71.467766,41.84616099906],[-71.467827,41.84634399906],[-71.467857,41.84661499906],[-71.467972,41.84736999906],[-71.46801,41.84757999906],[-71.468056,41.84773599906],[-71.468086,41.84780099906],[-71.46814,41.84784699906],[-71.468254,41.84791599906],[-71.468399,41.84798799906],[-71.468834,41.84828899906],[-71.468925,41.84838099906],[-71.469002,41.84849199906],[-71.469078,41.84865599906],[-71.469193,41.84897999906],[-71.469223,41.84909799906],[-71.469246,41.84925099906],[-71.469612,41.84923899906],[-71.470413,41.84921299906],[-71.470535,41.84968899906],[-71.470551,41.84972399906],[-71.470573,41.84987599906],[-71.47065,41.85054399906],[-71.470963,41.85045199906],[-71.471512,41.85024299906],[-71.471954,41.85007499906],[-71.472557,41.84983799906],[-71.472694,41.84976999906],[-71.472847,41.84968199906],[-71.473198,41.84950299906],[-71.473503,41.84933099906],[-71.473709,41.84927399906],[-71.473787,41.84927299906],[-71.473915,41.84925799906],[-71.47467,41.84920099906],[-71.475868,41.84908699906],[-71.477318,41.84896099906],[-71.477898,41.84891499906],[-71.478386,41.84885399906],[-71.478561,41.84884299906],[-71.478844,41.84928099906],[-71.479263,41.84985699906],[-71.479317,41.84993699906],[-71.479652,41.85030399906],[-71.480164,41.85083899906],[-71.480286,41.85096699906],[-71.480934,41.85082999906],[-71.480974,41.85082099906]]]}}"}, +{"type": "blockgroup", "typeId": 121022, "areaId": 28929, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.478659,41.84236899906],[-71.478623,41.84223899906],[-71.478592,41.84215699906],[-71.478537,41.84208299906],[-71.47846,41.84201199906],[-71.478376,41.84195099906],[-71.478123,41.84180399906],[-71.477939,41.84171899906],[-71.477847,41.84166499906],[-71.4778,41.84162899906],[-71.477765,41.84160199906],[-71.477696,41.84153499906],[-71.47764,41.84146899906],[-71.477461,41.84064899906],[-71.477322,41.83963599906],[-71.477358,41.83946099906],[-71.477378,41.83939199906],[-71.477405,41.83932499906],[-71.477484,41.83919899906],[-71.47751,41.83912599906],[-71.477527,41.83875699906],[-71.477587,41.83844799906],[-71.477584,41.83831799906],[-71.477558,41.83822399906],[-71.477509,41.83815999906],[-71.477466,41.83811399906],[-71.477366,41.83802599906],[-71.477216,41.83791099906],[-71.477148,41.83788799906],[-71.477086,41.83785799906],[-71.477018,41.83782899906],[-71.476905,41.83780999906],[-71.476832,41.83782699906],[-71.476745,41.83789099906],[-71.476711,41.83794499906],[-71.476652,41.83808099906],[-71.476602,41.83813699906],[-71.476539,41.83817299906],[-71.476453,41.83819599906],[-71.476351,41.83818699906],[-71.476245,41.83815599906],[-71.47618,41.83812799906],[-71.476105,41.83807599906],[-71.476061,41.83802899906],[-71.476019,41.83797599906],[-71.475986,41.83795199906],[-71.475891,41.83794999906],[-71.47581,41.83796999906],[-71.47574,41.83799599906],[-71.47558,41.83811599906],[-71.475541,41.83816199906],[-71.475395,41.83821499906],[-71.475223,41.83828699906],[-71.47518,41.83830399906],[-71.474952,41.83836599906],[-71.474876,41.83838999906],[-71.474572,41.83852599906],[-71.474496,41.83857499906],[-71.474391,41.83867599906],[-71.474276,41.83873499906],[-71.473962,41.83882199906],[-71.473599,41.83895299906],[-71.473504,41.83897899906],[-71.473402,41.83899299906],[-71.47331,41.83898199906],[-71.473228,41.83893899906],[-71.473171,41.83887399906],[-71.473119,41.83877099906],[-71.473098,41.83869599906],[-71.473108,41.83841699906],[-71.473093,41.83828199906],[-71.473034,41.83802499906],[-71.473034,41.83797499906],[-71.472952,41.83786299906],[-71.472884,41.83773399906],[-71.472861,41.83767599906],[-71.472829,41.83752899906],[-71.4728,41.83745699906],[-71.472747,41.83736399906],[-71.472732,41.83733599906],[-71.472707,41.83727999906],[-71.472695,41.83722299906],[-71.47269,41.83714599906],[-71.472667,41.83711099906],[-71.472645,41.83707799906],[-71.472589,41.83703999906],[-71.472525,41.83700799906],[-71.472459,41.83698099906],[-71.472198,41.83714299906],[-71.472059,41.83722399906],[-71.471497,41.83755499906],[-71.470955,41.83787499906],[-71.470506,41.83809899906],[-71.469144,41.83900499906],[-71.468742,41.83925999906],[-71.468755,41.83944699906],[-71.468781,41.83980599906],[-71.468796,41.83987399906],[-71.468819,41.84001499906],[-71.468895,41.84053799906],[-71.468948,41.84090399906],[-71.469002,41.84123599906],[-71.46904,41.84149899906],[-71.469124,41.84196099906],[-71.469141,41.84207199906],[-71.469177,41.84230799906],[-71.469193,41.84244199906],[-71.469193,41.84256699906],[-71.469177,41.84269699906],[-71.469162,41.84276199906],[-71.469139,41.84282699906],[-71.469116,41.84286499906],[-71.469109,41.84288799906],[-71.469009,41.84304199906],[-71.468971,41.84310199906],[-71.468873,41.84323799906],[-71.468826,41.84330399906],[-71.468422,41.84382999906],[-71.468353,41.84392899906],[-71.468689,41.84385699906],[-71.469521,41.84368899906],[-71.470352,41.84350199906],[-71.470619,41.84343699906],[-71.471115,41.84331499906],[-71.471207,41.84329199906],[-71.47197,41.84311299906],[-71.472046,41.84309399906],[-71.472237,41.84304799906],[-71.4729,41.84289899906],[-71.473694,41.84271999906],[-71.474876,41.84246099906],[-71.475531,41.84230499906],[-71.475662,41.84227399906],[-71.476214,41.84215199906],[-71.476372,41.84211699906],[-71.476387,41.84215499906],[-71.476715,41.84256699906],[-71.476891,41.84277299906],[-71.477226,41.84270099906],[-71.477882,41.84253699906],[-71.478659,41.84236899906]]]}}"}, +{"type": "blockgroup", "typeId": 121023, "areaId": 28930, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.486065,41.85431199906],[-71.486049,41.85427699906],[-71.485982,41.85412399906],[-71.485901,41.85400999906],[-71.485817,41.85391899906],[-71.485777,41.85386599906],[-71.485745,41.85380799906],[-71.485723,41.85374999906],[-71.485693,41.85363299906],[-71.485668,41.85357399906],[-71.485636,41.85351899906],[-71.481165,41.85117599906],[-71.481106,41.85110399906],[-71.481034,41.85093699906],[-71.480994,41.85086699906],[-71.480974,41.85082099906],[-71.480934,41.85082999906],[-71.480286,41.85096699906],[-71.480164,41.85083899906],[-71.479652,41.85030399906],[-71.479317,41.84993699906],[-71.479263,41.84985699906],[-71.478844,41.84928099906],[-71.478561,41.84884299906],[-71.478386,41.84885399906],[-71.477898,41.84891499906],[-71.477318,41.84896099906],[-71.475868,41.84908699906],[-71.47467,41.84920099906],[-71.473915,41.84925799906],[-71.473787,41.84927299906],[-71.473709,41.84927399906],[-71.473503,41.84933099906],[-71.473198,41.84950299906],[-71.472847,41.84968199906],[-71.472694,41.84976999906],[-71.472557,41.84983799906],[-71.471954,41.85007499906],[-71.472549,41.85003999906],[-71.472702,41.85003299906],[-71.47345,41.84997899906],[-71.473595,41.85104399906],[-71.473694,41.85163899906],[-71.473717,41.85177999906],[-71.473747,41.85188699906],[-71.473808,41.85203199906],[-71.473869,41.85212299906],[-71.473938,41.85221099906],[-71.474121,41.85240899906],[-71.474342,41.85261199906],[-71.474541,41.85277899906],[-71.474884,41.85306899906],[-71.475281,41.85338999906],[-71.475571,41.85359199906],[-71.475746,41.85370599906],[-71.475945,41.85386699906],[-71.476028,41.85396199906],[-71.476212,41.85421799906],[-71.47612,41.85426299906],[-71.476051,41.85430499906],[-71.475746,41.85446199906],[-71.475586,41.85455699906],[-71.47538,41.85468699906],[-71.47525,41.85478999906],[-71.475433,41.85481999906],[-71.475655,41.85487399906],[-71.476059,41.85498799906],[-71.47673,41.85518599906],[-71.477043,41.85528199906],[-71.477234,41.85533499906],[-71.477409,41.85538899906],[-71.478096,41.85559099906],[-71.47879,41.85580099906],[-71.478958,41.85585399906],[-71.479568,41.85603299906],[-71.479675,41.85606799906],[-71.479889,41.85612499906],[-71.480713,41.85632699906],[-71.481079,41.85642599906],[-71.481285,41.85647199906],[-71.481369,41.85648699906],[-71.481659,41.85620899906],[-71.48217,41.85569799906],[-71.482391,41.85546099906],[-71.48288,41.85531599906],[-71.483925,41.85501899906],[-71.484894,41.85477799906],[-71.485374,41.85455299906],[-71.485555,41.85447699906],[-71.485575,41.85446899906],[-71.485717,41.85442999906],[-71.485819,41.85438999906],[-71.485892,41.85436299906],[-71.486065,41.85431199906]]]}}"}, +{"type": "blockgroup", "typeId": 121031, "areaId": 28931, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.474053,41.86264999906],[-71.473862,41.86138499906],[-71.473747,41.86078299906],[-71.473656,41.86038199906],[-71.473602,41.86003899906],[-71.473549,41.85977199906],[-71.473503,41.85959599906],[-71.472649,41.85968799906],[-71.472072,41.85974899906],[-71.471725,41.85978699906],[-71.471069,41.85986299906],[-71.47084,41.85989799906],[-71.470619,41.85993199906],[-71.4701,41.86002299906],[-71.468712,41.86028299906],[-71.467983,41.86041999906],[-71.467781,41.86045799906],[-71.467011,41.86059699906],[-71.466408,41.86070599906],[-71.466363,41.86071499906],[-71.465851,41.86081299906],[-71.46558,41.86085899906],[-71.46548,41.86087599906],[-71.465378,41.86089299906],[-71.465172,41.86092399906],[-71.465074,41.86093699906],[-71.464847,41.86096799906],[-71.464676,41.86099199906],[-71.464401,41.86104999906],[-71.464119,41.86109899906],[-71.463577,41.86120199906],[-71.463387,41.86124399906],[-71.463287,41.86126299906],[-71.463493,41.86153799906],[-71.463573,41.86165699906],[-71.463951,41.86221299906],[-71.464294,41.86270099906],[-71.464416,41.86286999906],[-71.464516,41.86300699906],[-71.464607,41.86313999906],[-71.464805,41.86343499906],[-71.464836,41.86347999906],[-71.465027,41.86370799906],[-71.465088,41.86379199906],[-71.465134,41.86383699906],[-71.465393,41.86408999906],[-71.465683,41.86431899906],[-71.465904,41.86445599906],[-71.46624,41.86458599906],[-71.466301,41.86461299906],[-71.466782,41.86478799906],[-71.466936,41.86484899906],[-71.467161,41.86493799906],[-71.467323,41.86500199906],[-71.467424,41.86503499906],[-71.467781,41.86515399906],[-71.467903,41.86517699906],[-71.467964,41.86518899906],[-71.468231,41.86515799906],[-71.468491,41.86511599906],[-71.468638,41.86510199906],[-71.468704,41.86509699906],[-71.468971,41.86512799906],[-71.469025,41.86514899906],[-71.469198,41.86521699906],[-71.469307,41.86526099906],[-71.469406,41.86531399906],[-71.469696,41.86547499906],[-71.470039,41.86568799906],[-71.4702,41.86582599906],[-71.470299,41.86590999906],[-71.470409,41.86603599906],[-71.470573,41.86622599906],[-71.470817,41.86654099906],[-71.470825,41.86655799906],[-71.470856,41.86658899906],[-71.470917,41.86654699906],[-71.471146,41.86640899906],[-71.471344,41.86630199906],[-71.471451,41.86622199906],[-71.471306,41.86613499906],[-71.471245,41.86608899906],[-71.471222,41.86606599906],[-71.471191,41.86602399906],[-71.471184,41.86600099906],[-71.471184,41.86593599906],[-71.471199,41.86590999906],[-71.471245,41.86586399906],[-71.471298,41.86582199906],[-71.47142,41.86574899906],[-71.471535,41.86568799906],[-71.471657,41.86563099906],[-71.471771,41.86556999906],[-71.471848,41.86553599906],[-71.471878,41.86551299906],[-71.471924,41.86543299906],[-71.471939,41.86539499906],[-71.471954,41.86531399906],[-71.471947,41.86527599906],[-71.471931,41.86524199906],[-71.471924,41.86520799906],[-71.471893,41.86513899906],[-71.471848,41.86507399906],[-71.471771,41.86502499906],[-71.471642,41.86496399906],[-71.471489,41.86492899906],[-71.471359,41.86487199906],[-71.471298,41.86481499906],[-71.471257,41.86472999906],[-71.471246,41.86467899906],[-71.471242,41.86462799906],[-71.471252,41.86457099906],[-71.471268,41.86454399906],[-71.471306,41.86450999906],[-71.471352,41.86448299906],[-71.471405,41.86446399906],[-71.471458,41.86445599906],[-71.471581,41.86445599906],[-71.471794,41.86447099906],[-71.471939,41.86446799906],[-71.472015,41.86445599906],[-71.472061,41.86444499906],[-71.472191,41.86438799906],[-71.472229,41.86436099906],[-71.47226,41.86432999906],[-71.47229,41.86428799906],[-71.472313,41.86424599906],[-71.472321,41.86420099906],[-71.472321,41.86412399906],[-71.472275,41.86401699906],[-71.472229,41.86394099906],[-71.472214,41.86389899906],[-71.472191,41.86385699906],[-71.472183,41.86381499906],[-71.472168,41.86377299906],[-71.472168,41.86370799906],[-71.472176,41.86368199906],[-71.472191,41.86365899906],[-71.472221,41.86359399906],[-71.472366,41.86337699906],[-71.472412,41.86327399906],[-71.47242,41.86324699906],[-71.47242,41.86314799906],[-71.472466,41.86313999906],[-71.472511,41.86312099906],[-71.472557,41.86308699906],[-71.472588,41.86304499906],[-71.472626,41.86295299906],[-71.472664,41.86287699906],[-71.472725,41.86272399906],[-71.472747,41.86263699906],[-71.473251,41.86265499906],[-71.474053,41.86264999906]]]}}"}, +{"type": "blockgroup", "typeId": 121032, "areaId": 28932, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.482292,41.86386899906],[-71.482109,41.86386499906],[-71.480507,41.86376599906],[-71.480583,41.86310599906],[-71.479988,41.86307099906],[-71.480042,41.86245699906],[-71.480064,41.86190399906],[-71.480071,41.86173899906],[-71.480076,41.86138399906],[-71.480114,41.86066799906],[-71.480148,41.86003099906],[-71.480139,41.86001099906],[-71.48008,41.85944399906],[-71.480064,41.85926799906],[-71.480034,41.85872699906],[-71.479599,41.85876099906],[-71.479385,41.85876799906],[-71.478836,41.85884899906],[-71.478129,41.85898099906],[-71.478043,41.85899699906],[-71.477967,41.85901299906],[-71.477898,41.85902799906],[-71.477298,41.85914499906],[-71.476921,41.85921899906],[-71.476273,41.85929899906],[-71.476112,41.85931799906],[-71.47599,41.85932899906],[-71.475358,41.85939999906],[-71.47525,41.85941299906],[-71.474477,41.85949399906],[-71.474386,41.85950399906],[-71.474373,41.85950499906],[-71.474236,41.85951599906],[-71.473503,41.85959599906],[-71.473549,41.85977199906],[-71.473602,41.86003899906],[-71.473656,41.86038199906],[-71.473747,41.86078299906],[-71.473862,41.86138499906],[-71.474053,41.86264999906],[-71.473251,41.86265499906],[-71.472747,41.86263699906],[-71.472725,41.86272399906],[-71.472664,41.86287699906],[-71.472626,41.86295299906],[-71.472588,41.86304499906],[-71.472557,41.86308699906],[-71.472511,41.86312099906],[-71.472466,41.86313999906],[-71.47242,41.86314799906],[-71.47242,41.86324699906],[-71.472412,41.86327399906],[-71.472366,41.86337699906],[-71.472221,41.86359399906],[-71.472191,41.86365899906],[-71.472176,41.86368199906],[-71.472168,41.86370799906],[-71.472168,41.86377299906],[-71.472183,41.86381499906],[-71.472191,41.86385699906],[-71.472214,41.86389899906],[-71.472229,41.86394099906],[-71.472275,41.86401699906],[-71.472321,41.86412399906],[-71.472321,41.86420099906],[-71.472313,41.86424599906],[-71.47229,41.86428799906],[-71.47226,41.86432999906],[-71.472229,41.86436099906],[-71.472191,41.86438799906],[-71.472061,41.86444499906],[-71.472015,41.86445599906],[-71.471939,41.86446799906],[-71.471794,41.86447099906],[-71.471581,41.86445599906],[-71.471458,41.86445599906],[-71.471405,41.86446399906],[-71.471352,41.86448299906],[-71.471306,41.86450999906],[-71.471268,41.86454399906],[-71.471252,41.86457099906],[-71.471242,41.86462799906],[-71.471246,41.86467899906],[-71.471257,41.86472999906],[-71.471298,41.86481499906],[-71.471359,41.86487199906],[-71.471489,41.86492899906],[-71.471642,41.86496399906],[-71.471771,41.86502499906],[-71.471848,41.86507399906],[-71.471893,41.86513899906],[-71.471924,41.86520799906],[-71.471931,41.86524199906],[-71.471947,41.86527599906],[-71.471954,41.86531399906],[-71.471939,41.86539499906],[-71.471924,41.86543299906],[-71.471878,41.86551299906],[-71.471848,41.86553599906],[-71.471771,41.86556999906],[-71.471657,41.86563099906],[-71.471535,41.86568799906],[-71.47142,41.86574899906],[-71.471298,41.86582199906],[-71.471245,41.86586399906],[-71.471199,41.86590999906],[-71.471184,41.86593599906],[-71.471184,41.86600099906],[-71.471191,41.86602399906],[-71.471222,41.86606599906],[-71.471245,41.86608899906],[-71.471306,41.86613499906],[-71.471451,41.86622199906],[-71.471344,41.86630199906],[-71.471146,41.86640899906],[-71.470917,41.86654699906],[-71.470856,41.86658899906],[-71.470932,41.86668399906],[-71.471115,41.86686299906],[-71.471252,41.86697399906],[-71.471313,41.86690899906],[-71.471382,41.86684399906],[-71.471443,41.86677899906],[-71.471527,41.86669899906],[-71.471771,41.86648199906],[-71.471848,41.86642099906],[-71.472008,41.86627999906],[-71.472099,41.86622599906],[-71.472404,41.86606999906],[-71.472626,41.86594399906],[-71.472811,41.86582499906],[-71.47287,41.86578799906],[-71.4739,41.86506999906],[-71.473976,41.86502099906],[-71.474045,41.86498599906],[-71.474113,41.86496699906],[-71.474342,41.86492499906],[-71.474617,41.86489499906],[-71.474739,41.86489099906],[-71.474922,41.86486399906],[-71.475052,41.86482599906],[-71.475357,41.86470799906],[-71.475479,41.86467399906],[-71.475647,41.86465799906],[-71.475763,41.86465199906],[-71.475967,41.86464299906],[-71.477638,41.86464299906],[-71.478424,41.86463899906],[-71.478432,41.86486099906],[-71.478439,41.86488699906],[-71.478439,41.86490599906],[-71.478469,41.86493999906],[-71.478493,41.86494399906],[-71.478752,41.86495199906],[-71.479057,41.86497099906],[-71.479584,41.86498999906],[-71.480103,41.86502799906],[-71.480255,41.86503599906],[-71.480438,41.86503999906],[-71.480484,41.86503199906],[-71.480537,41.86501299906],[-71.480553,41.86499899906],[-71.480576,41.86496699906],[-71.480583,41.86494399906],[-71.480644,41.86442199906],[-71.481766,41.86449799906],[-71.48185,41.86438799906],[-71.482048,41.86417799906],[-71.482208,41.86399099906],[-71.482292,41.86386899906]]]}}"}, +{"type": "blockgroup", "typeId": 121041, "areaId": 28933, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.487421,41.85907299906],[-71.487398,41.85889299906],[-71.487381,41.85884299906],[-71.487354,41.85871199906],[-71.487274,41.85838999906],[-71.487227,41.85792699906],[-71.487236,41.85772499906],[-71.487234,41.85767199906],[-71.487231,41.85759799906],[-71.487234,41.85746199906],[-71.487246,41.85733399906],[-71.487242,41.85700999906],[-71.487224,41.85694799906],[-71.487198,41.85682299906],[-71.48719,41.85668899906],[-71.487174,41.85658899906],[-71.487123,41.85625999906],[-71.487095,41.85613399906],[-71.48708,41.85610499906],[-71.487073,41.85608499906],[-71.487057,41.85603899906],[-71.487023,41.85597799906],[-71.486908,41.85566899906],[-71.486869,41.85554499906],[-71.486731,41.85527799906],[-71.486631,41.85515299906],[-71.486567,41.85509399906],[-71.486453,41.85500699906],[-71.486433,41.85499799906],[-71.486373,41.85495599906],[-71.486311,41.85491199906],[-71.48627,41.85486299906],[-71.486238,41.85480599906],[-71.48619,41.85461899906],[-71.486114,41.85443099906],[-71.486065,41.85431199906],[-71.485892,41.85436299906],[-71.485819,41.85438999906],[-71.485717,41.85442999906],[-71.485575,41.85446899906],[-71.485555,41.85447699906],[-71.485374,41.85455299906],[-71.484894,41.85477799906],[-71.483925,41.85501899906],[-71.48288,41.85531599906],[-71.482391,41.85546099906],[-71.48217,41.85569799906],[-71.481659,41.85620899906],[-71.481369,41.85648699906],[-71.481285,41.85647199906],[-71.481079,41.85642599906],[-71.480713,41.85632699906],[-71.479889,41.85612499906],[-71.479675,41.85606799906],[-71.479568,41.85603299906],[-71.478958,41.85585399906],[-71.47879,41.85580099906],[-71.478096,41.85559099906],[-71.477409,41.85538899906],[-71.477234,41.85533499906],[-71.477043,41.85528199906],[-71.47673,41.85518599906],[-71.476059,41.85498799906],[-71.475655,41.85487399906],[-71.475433,41.85481999906],[-71.47525,41.85478999906],[-71.475159,41.85477399906],[-71.475105,41.85477099906],[-71.475052,41.85506799906],[-71.475014,41.85529699906],[-71.474907,41.85572799906],[-71.474876,41.85577799906],[-71.474846,41.85582399906],[-71.474792,41.85585399906],[-71.474701,41.85591899906],[-71.474602,41.85597599906],[-71.474495,41.85606399906],[-71.474251,41.85625099906],[-71.474121,41.85634999906],[-71.473701,41.85668599906],[-71.473419,41.85688399906],[-71.473289,41.85698299906],[-71.473068,41.85715899906],[-71.472946,41.85724999906],[-71.472798,41.85736299906],[-71.471931,41.85802499906],[-71.47168,41.85821899906],[-71.471397,41.85842899906],[-71.470955,41.85875699906],[-71.470932,41.85880999906],[-71.470932,41.85883699906],[-71.470955,41.85888299906],[-71.470985,41.85892899906],[-71.471031,41.85897399906],[-71.471298,41.85927999906],[-71.471725,41.85971799906],[-71.471725,41.85978699906],[-71.472072,41.85974899906],[-71.472649,41.85968799906],[-71.473503,41.85959599906],[-71.474236,41.85951599906],[-71.474373,41.85950499906],[-71.474386,41.85950399906],[-71.474477,41.85949399906],[-71.47525,41.85941299906],[-71.475358,41.85939999906],[-71.47599,41.85932899906],[-71.476112,41.85931799906],[-71.476273,41.85929899906],[-71.476921,41.85921899906],[-71.477298,41.85914499906],[-71.477898,41.85902799906],[-71.477967,41.85901299906],[-71.478043,41.85899699906],[-71.478129,41.85898099906],[-71.478836,41.85884899906],[-71.479385,41.85876799906],[-71.479599,41.85876099906],[-71.480034,41.85872699906],[-71.480164,41.85871499906],[-71.480415,41.85867299906],[-71.480644,41.85864299906],[-71.481644,41.85845199906],[-71.482216,41.85834499906],[-71.483322,41.85811999906],[-71.483573,41.85807499906],[-71.483879,41.85802099906],[-71.484863,41.85786399906],[-71.485474,41.85814999906],[-71.485634,41.85823099906],[-71.48586,41.85834199906],[-71.486473,41.85863899906],[-71.486771,41.85877599906],[-71.486862,41.85882199906],[-71.48703,41.85890199906],[-71.487337,41.85903599906],[-71.487421,41.85907299906]]]}}"}, +{"type": "blockgroup", "typeId": 121042, "areaId": 28934, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.495545,41.86898299906],[-71.495506,41.86877599906],[-71.495487,41.86866899906],[-71.495459,41.86867499906],[-71.495392,41.86865999906],[-71.49525,41.86858999906],[-71.495192,41.86854899906],[-71.495048,41.86853599906],[-71.49486,41.86850699906],[-71.494669,41.86845399906],[-71.494578,41.86841799906],[-71.494451,41.86835499906],[-71.494084,41.86827599906],[-71.493375,41.86778299906],[-71.493152,41.86758099906],[-71.492952,41.86740099906],[-71.492854,41.86721299906],[-71.49268,41.86695999906],[-71.492523,41.86657799906],[-71.492383,41.86623499906],[-71.492353,41.86536499906],[-71.492319,41.86531699906],[-71.492202,41.86521399906],[-71.492064,41.86507299906],[-71.491875,41.86491399906],[-71.491829,41.86488199906],[-71.491686,41.86478299906],[-71.491634,41.86472299906],[-71.491587,41.86461599906],[-71.491551,41.86455999906],[-71.491503,41.86443199906],[-71.491462,41.86436799906],[-71.491308,41.86419099906],[-71.491185,41.86410699906],[-71.490929,41.86389599906],[-71.490818,41.86378699906],[-71.490619,41.86361399906],[-71.490558,41.86357399906],[-71.49042,41.86349799906],[-71.49028,41.86342699906],[-71.490124,41.86333499906],[-71.489885,41.86322299906],[-71.489651,41.86315599906],[-71.48949,41.86310399906],[-71.489248,41.86296999906],[-71.488985,41.86286099906],[-71.488888,41.86283799906],[-71.488742,41.86279699906],[-71.488676,41.86276099906],[-71.488608,41.86273999906],[-71.488565,41.86270799906],[-71.488547,41.86264999906],[-71.488483,41.86261699906],[-71.488446,41.86256699906],[-71.488422,41.86249799906],[-71.488388,41.86244599906],[-71.488251,41.86227799906],[-71.488161,41.86209899906],[-71.48815,41.86203299906],[-71.488161,41.86197399906],[-71.488215,41.86191999906],[-71.488237,41.86186199906],[-71.48823,41.86180699906],[-71.488216,41.86175099906],[-71.488178,41.86168999906],[-71.488127,41.86159299906],[-71.488057,41.86146199906],[-71.487923,41.86114399906],[-71.487868,41.86103899906],[-71.48782,41.86098599906],[-71.48783,41.86092899906],[-71.487833,41.86085899906],[-71.48782,41.86079899906],[-71.487802,41.86074499906],[-71.487796,41.86068599906],[-71.487797,41.86061899906],[-71.487768,41.86050099906],[-71.487789,41.86044099906],[-71.487823,41.86038199906],[-71.487831,41.86032199906],[-71.487806,41.86026399906],[-71.487794,41.86020299906],[-71.487784,41.86002899906],[-71.487691,41.85975499906],[-71.487688,41.85968099906],[-71.487654,41.85960299906],[-71.487646,41.85953599906],[-71.487674,41.85947399906],[-71.487672,41.85940699906],[-71.487631,41.85934299906],[-71.487516,41.85929099906],[-71.487378,41.85926999906],[-71.487365,41.85925399906],[-71.487387,41.85921899906],[-71.487433,41.85916899906],[-71.487429,41.85914099906],[-71.487421,41.85907299906],[-71.487337,41.85903599906],[-71.48703,41.85890199906],[-71.486862,41.85882199906],[-71.486771,41.85877599906],[-71.486473,41.85863899906],[-71.48586,41.85834199906],[-71.485634,41.85823099906],[-71.485474,41.85814999906],[-71.484863,41.85786399906],[-71.483879,41.85802099906],[-71.483573,41.85807499906],[-71.483322,41.85811999906],[-71.482216,41.85834499906],[-71.482315,41.85858899906],[-71.482323,41.85862399906],[-71.482368,41.85871099906],[-71.482422,41.85876099906],[-71.482491,41.85879899906],[-71.482529,41.85881399906],[-71.482574,41.85882599906],[-71.48262,41.85883299906],[-71.48275,41.85886399906],[-71.482811,41.85887499906],[-71.483017,41.85892499906],[-71.483185,41.85895199906],[-71.483246,41.85897099906],[-71.483269,41.85898199906],[-71.483292,41.85900499906],[-71.483299,41.85903499906],[-71.48336,41.85914999906],[-71.483429,41.85934399906],[-71.483513,41.85961899906],[-71.483704,41.86011099906],[-71.483887,41.86062199906],[-71.483902,41.86067999906],[-71.483978,41.86087399906],[-71.48407,41.86112999906],[-71.48423,41.86157199906],[-71.48439,41.86198799906],[-71.484505,41.86234699906],[-71.484634,41.86266299906],[-71.484703,41.86279299906],[-71.484962,41.86272399906],[-71.485046,41.86288799906],[-71.48513,41.86302599906],[-71.485275,41.86323199906],[-71.485374,41.86330799906],[-71.485435,41.86337299906],[-71.485535,41.86350599906],[-71.48584,41.86390699906],[-71.486298,41.86451699906],[-71.486839,41.86514699906],[-71.486877,41.86517299906],[-71.487106,41.86541699906],[-71.487275,41.86562899906],[-71.487289,41.86564599906],[-71.487366,41.86577999906],[-71.487511,41.86634099906],[-71.487518,41.86642099906],[-71.48748,41.86656199906],[-71.487411,41.86675599906],[-71.48735,41.86685599906],[-71.487572,41.86705799906],[-71.487961,41.86739299906],[-71.488016,41.86744699906],[-71.488182,41.86761099906],[-71.488243,41.86770199906],[-71.488258,41.86777899906],[-71.488251,41.86794999906],[-71.488197,41.86806099906],[-71.488098,41.86820199906],[-71.487946,41.86835099906],[-71.487701,41.86849999906],[-71.487526,41.86858399906],[-71.48732,41.86869399906],[-71.487144,41.86873599906],[-71.486984,41.86876299906],[-71.486702,41.86877399906],[-71.486679,41.86901099906],[-71.486641,41.86955599906],[-71.486641,41.86989999906],[-71.486676,41.87008899906],[-71.486682,41.87011899906],[-71.487944,41.86995699906],[-71.488709,41.86985699906],[-71.489866,41.86970599906],[-71.490489,41.86962899906],[-71.49128,41.86953399906],[-71.492477,41.86946499906],[-71.494783,41.86912199906],[-71.494854,41.86911199906],[-71.495061,41.86907999906],[-71.495545,41.86898299906]]]}}"}, +{"type": "blockgroup", "typeId": 121043, "areaId": 28935, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.488258,41.86777899906],[-71.488243,41.86770199906],[-71.488182,41.86761099906],[-71.488016,41.86744699906],[-71.487961,41.86739299906],[-71.487572,41.86705799906],[-71.48735,41.86685599906],[-71.487411,41.86675599906],[-71.48748,41.86656199906],[-71.487518,41.86642099906],[-71.487511,41.86634099906],[-71.487366,41.86577999906],[-71.487289,41.86564599906],[-71.487275,41.86562899906],[-71.487106,41.86541699906],[-71.486877,41.86517299906],[-71.486839,41.86514699906],[-71.486298,41.86451699906],[-71.48584,41.86390699906],[-71.485535,41.86350599906],[-71.485435,41.86337299906],[-71.485374,41.86330799906],[-71.485275,41.86323199906],[-71.48513,41.86302599906],[-71.485046,41.86288799906],[-71.484962,41.86272399906],[-71.484703,41.86279299906],[-71.484634,41.86266299906],[-71.484505,41.86234699906],[-71.48439,41.86198799906],[-71.48423,41.86157199906],[-71.48407,41.86112999906],[-71.483978,41.86087399906],[-71.483902,41.86067999906],[-71.483887,41.86062199906],[-71.483704,41.86011099906],[-71.483513,41.85961899906],[-71.483429,41.85934399906],[-71.48336,41.85914999906],[-71.483299,41.85903499906],[-71.483292,41.85900499906],[-71.483269,41.85898199906],[-71.483246,41.85897099906],[-71.483185,41.85895199906],[-71.483017,41.85892499906],[-71.482811,41.85887499906],[-71.48275,41.85886399906],[-71.48262,41.85883299906],[-71.482574,41.85882599906],[-71.482529,41.85881399906],[-71.482491,41.85879899906],[-71.482422,41.85876099906],[-71.482368,41.85871099906],[-71.482323,41.85862399906],[-71.482315,41.85858899906],[-71.482216,41.85834499906],[-71.481644,41.85845199906],[-71.480644,41.85864299906],[-71.480415,41.85867299906],[-71.480164,41.85871499906],[-71.480034,41.85872699906],[-71.480064,41.85926799906],[-71.48008,41.85944399906],[-71.480139,41.86001099906],[-71.480148,41.86003099906],[-71.480114,41.86066799906],[-71.480076,41.86138399906],[-71.480071,41.86173899906],[-71.480064,41.86190399906],[-71.480042,41.86245699906],[-71.479988,41.86307099906],[-71.480583,41.86310599906],[-71.480507,41.86376599906],[-71.482109,41.86386499906],[-71.482292,41.86386899906],[-71.482208,41.86399099906],[-71.482048,41.86417799906],[-71.48185,41.86438799906],[-71.481766,41.86449799906],[-71.480644,41.86442199906],[-71.480583,41.86494399906],[-71.480576,41.86496699906],[-71.480553,41.86499899906],[-71.480537,41.86501299906],[-71.480484,41.86503199906],[-71.480438,41.86503999906],[-71.480255,41.86503599906],[-71.480103,41.86502799906],[-71.479584,41.86498999906],[-71.479057,41.86497099906],[-71.478752,41.86495199906],[-71.478493,41.86494399906],[-71.478469,41.86493999906],[-71.478439,41.86490599906],[-71.478439,41.86488699906],[-71.478432,41.86486099906],[-71.478424,41.86463899906],[-71.477638,41.86464299906],[-71.475967,41.86464299906],[-71.475763,41.86465199906],[-71.475647,41.86465799906],[-71.475479,41.86467399906],[-71.475357,41.86470799906],[-71.475052,41.86482599906],[-71.474922,41.86486399906],[-71.474739,41.86489099906],[-71.474617,41.86489499906],[-71.474342,41.86492499906],[-71.474113,41.86496699906],[-71.474045,41.86498599906],[-71.473976,41.86502099906],[-71.4739,41.86506999906],[-71.47287,41.86578799906],[-71.472811,41.86582499906],[-71.472626,41.86594399906],[-71.472404,41.86606999906],[-71.472099,41.86622599906],[-71.472008,41.86627999906],[-71.471848,41.86642099906],[-71.471771,41.86648199906],[-71.471527,41.86669899906],[-71.471443,41.86677899906],[-71.471382,41.86684399906],[-71.471313,41.86690899906],[-71.471252,41.86697399906],[-71.471298,41.86700399906],[-71.47155,41.86719099906],[-71.471718,41.86732899906],[-71.471825,41.86757699906],[-71.471931,41.86783999906],[-71.471939,41.86799599906],[-71.471928,41.86809599906],[-71.471909,41.86828599906],[-71.471878,41.86852299906],[-71.471802,41.86871699906],[-71.471634,41.86903399906],[-71.471573,41.86918699906],[-71.471497,41.86938099906],[-71.471413,41.86965899906],[-71.471413,41.86975099906],[-71.471497,41.86987299906],[-71.471588,41.86996499906],[-71.472206,41.87038799906],[-71.472511,41.87061299906],[-71.472717,41.87074999906],[-71.472835,41.87078899906],[-71.47287,41.87079999906],[-71.473022,41.87081899906],[-71.473602,41.87082299906],[-71.474007,41.87094499906],[-71.474388,41.87107099906],[-71.474869,41.87127699906],[-71.475327,41.87144099906],[-71.475464,41.87150199906],[-71.475526,41.87156999906],[-71.482353,41.87068299906],[-71.484053,41.87046299906],[-71.484944,41.87034799906],[-71.486682,41.87011899906],[-71.486676,41.87008899906],[-71.486641,41.86989999906],[-71.486641,41.86955599906],[-71.486679,41.86901099906],[-71.486702,41.86877399906],[-71.486984,41.86876299906],[-71.487144,41.86873599906],[-71.48732,41.86869399906],[-71.487526,41.86858399906],[-71.487701,41.86849999906],[-71.487946,41.86835099906],[-71.488098,41.86820199906],[-71.488197,41.86806099906],[-71.488251,41.86794999906],[-71.488258,41.86777899906]]]}}"}, +{"type": "blockgroup", "typeId": 122001, "areaId": 28936, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.515831,41.82835799906],[-71.515793,41.82821699906],[-71.515755,41.82802999906],[-71.515587,41.82740399906],[-71.515495,41.82709899906],[-71.515205,41.82627899906],[-71.514999,41.82578999906],[-71.514832,41.82541699906],[-71.514714,41.82515499906],[-71.514488,41.82464999906],[-71.51432,41.82432599906],[-71.513741,41.82317699906],[-71.512619,41.82102199906],[-71.512497,41.82081199906],[-71.512451,41.82070899906],[-71.512428,41.82066699906],[-71.51236,41.82051799906],[-71.512283,41.82037399906],[-71.511971,41.81973599906],[-71.510811,41.81747399906],[-71.510223,41.81634099906],[-71.510117,41.81614699906],[-71.509834,41.81558599906],[-71.509697,41.81524299906],[-71.509575,41.81486899906],[-71.509399,41.81421999906],[-71.509293,41.81375099906],[-71.509276,41.81364899906],[-71.509254,41.81351499906],[-71.509224,41.81327799906],[-71.509209,41.81309099906],[-71.509209,41.81271699906],[-71.509186,41.81259899906],[-71.509186,41.81256499906],[-71.50914,41.81217199906],[-71.509125,41.81183599906],[-71.509126,41.81161199906],[-71.509127,41.81138899906],[-71.509137,41.81110299906],[-71.509155,41.81061899906],[-71.509178,41.81044399906],[-71.509209,41.81026499906],[-71.509232,41.81008499906],[-71.509499,41.80828499906],[-71.509895,41.80574399906],[-71.510025,41.80468399906],[-71.51004,41.80450099906],[-71.509532,41.80445999906],[-71.508677,41.80433699906],[-71.508507,41.80437899906],[-71.508316,41.80437499906],[-71.507607,41.80440899906],[-71.506882,41.80445099906],[-71.505501,41.80448899906],[-71.503639,41.80455799906],[-71.502983,41.80458499906],[-71.502602,41.80457699906],[-71.502121,41.80459199906],[-71.501953,41.80459599906],[-71.501724,41.80461099906],[-71.501556,41.80461099906],[-71.50145,41.80459999906],[-71.501183,41.80453499906],[-71.501091,41.80450099906],[-71.500999,41.80446199906],[-71.500961,41.80443999906],[-71.500862,41.80440099906],[-71.500679,41.80436299906],[-71.500549,41.80434799906],[-71.50045,41.80434799906],[-71.500343,41.80435899906],[-71.500229,41.80438999906],[-71.499789,41.80444099906],[-71.499359,41.80449299906],[-71.499306,41.80449299906],[-71.499023,41.80452299906],[-71.498863,41.80452699906],[-71.498787,41.80452699906],[-71.49852,41.80451199906],[-71.498367,41.80451199906],[-71.498146,41.80452299906],[-71.498016,41.80453499906],[-71.497917,41.80454999906],[-71.497681,41.80459999906],[-71.496834,41.80480199906],[-71.496376,41.80486699906],[-71.495529,41.80496999906],[-71.495265,41.80500899906],[-71.495124,41.80501099906],[-71.494991,41.80500599906],[-71.494884,41.80498599906],[-71.494795,41.80496199906],[-71.494714,41.80495599906],[-71.49464,41.80494499906],[-71.494573,41.80494799906],[-71.494485,41.80494199906],[-71.494278,41.80494499906],[-71.494217,41.80497399906],[-71.494016,41.80508999906],[-71.493679,41.80515699906],[-71.493034,41.80525599906],[-71.492973,41.80527099906],[-71.492126,41.80543899906],[-71.49189,41.80549599906],[-71.491837,41.80552299906],[-71.491661,41.80559899906],[-71.491455,41.80567199906],[-71.491173,41.80575899906],[-71.491005,41.80582399906],[-71.49113,41.80591299906],[-71.491211,41.80596899906],[-71.491325,41.80603799906],[-71.491577,41.80622499906],[-71.491859,41.80645799906],[-71.491943,41.80652199906],[-71.49202,41.80659099906],[-71.492203,41.80677399906],[-71.492348,41.80693399906],[-71.492393,41.80699199906],[-71.492561,41.80717799906],[-71.492767,41.80739199906],[-71.492973,41.80758699906],[-71.493019,41.80763599906],[-71.493103,41.80770499906],[-71.493179,41.80777699906],[-71.49324,41.80782699906],[-71.493378,41.80793799906],[-71.493553,41.80806399906],[-71.493736,41.80818899906],[-71.49382,41.80825399906],[-71.493856,41.80829199906],[-71.493942,41.80838399906],[-71.494179,41.80868899906],[-71.494232,41.80877299906],[-71.494293,41.80885299906],[-71.494347,41.80893699906],[-71.494415,41.80908199906],[-71.49446,41.80919199906],[-71.494476,41.80923099906],[-71.494583,41.80952799906],[-71.494621,41.80967699906],[-71.494667,41.80982999906],[-71.494705,41.80993299906],[-71.494736,41.81003599906],[-71.494759,41.81011199906],[-71.494797,41.81027999906],[-71.49482,41.81042099906],[-71.494865,41.81080599906],[-71.494873,41.81097799906],[-71.494873,41.81108899906],[-71.494911,41.81218299906],[-71.494904,41.81228999906],[-71.494904,41.81250799906],[-71.494911,41.81258799906],[-71.494911,41.81266799906],[-71.494942,41.81282799906],[-71.494965,41.81291199906],[-71.494995,41.81299599906],[-71.495018,41.81307999906],[-71.495049,41.81316799906],[-71.495071,41.81325099906],[-71.495088,41.81328999906],[-71.495163,41.81346099906],[-71.495216,41.81356399906],[-71.495398,41.81395899906],[-71.495568,41.81432899906],[-71.495651,41.81450699906],[-71.495957,41.81513999906],[-71.496109,41.81545299906],[-71.496391,41.81619299906],[-71.496414,41.81638299906],[-71.496483,41.81666199906],[-71.496574,41.81694799906],[-71.496658,41.81718099906],[-71.496758,41.81749299906],[-71.49678,41.81755099906],[-71.497002,41.81805799906],[-71.497169,41.81839799906],[-71.497238,41.81861899906],[-71.497479,41.81929799906],[-71.497555,41.81927899906],[-71.497581,41.81927899906],[-71.497645,41.81930399906],[-71.497712,41.81933699906],[-71.497852,41.81939299906],[-71.498003,41.81943599906],[-71.498082,41.81946699906],[-71.498163,41.81948999906],[-71.49823,41.81953199906],[-71.498673,41.82040699906],[-71.499112,41.82127499906],[-71.499116,41.82129699906],[-71.499162,41.82134799906],[-71.499199,41.82139699906],[-71.499259,41.82145299906],[-71.499321,41.82149999906],[-71.499377,41.82155699906],[-71.499411,41.82160899906],[-71.499424,41.82166299906],[-71.499427,41.82215799906],[-71.499453,41.82223699906],[-71.499511,41.82228399906],[-71.4996,41.82229399906],[-71.499764,41.82229399906],[-71.499863,41.82230899906],[-71.499937,41.82234199906],[-71.499988,41.82238599906],[-71.500064,41.82241999906],[-71.500216,41.82241999906],[-71.500289,41.82241399906],[-71.500369,41.82239199906],[-71.50046,41.82237299906],[-71.500547,41.82237699906],[-71.500637,41.82238999906],[-71.500735,41.82241099906],[-71.500839,41.82240299906],[-71.500929,41.82238099906],[-71.501018,41.82234999906],[-71.501173,41.82232199906],[-71.501338,41.82228199906],[-71.501517,41.82224399906],[-71.501594,41.82221299906],[-71.501653,41.82216899906],[-71.501712,41.82211799906],[-71.501794,41.82206799906],[-71.501887,41.82202799906],[-71.501987,41.82201299906],[-71.502074,41.82202599906],[-71.50222,41.82207099906],[-71.502309,41.82208799906],[-71.502477,41.82209399906],[-71.502567,41.82210799906],[-71.502701,41.82218199906],[-71.502768,41.82221299906],[-71.503011,41.82230599906],[-71.503177,41.82239099906],[-71.503242,41.82242999906],[-71.503285,41.82248199906],[-71.503325,41.82254099906],[-71.503436,41.82265699906],[-71.503498,41.82270799906],[-71.503566,41.82275099906],[-71.503751,41.82284799906],[-71.503866,41.82293599906],[-71.503901,41.82298399906],[-71.503924,41.82303599906],[-71.503926,41.82318399906],[-71.503933,41.82326199906],[-71.503975,41.82331699906],[-71.504047,41.82335699906],[-71.504131,41.82336799906],[-71.504199,41.82333699906],[-71.504257,41.82329199906],[-71.504329,41.82327099906],[-71.504354,41.82329799906],[-71.504366,41.82332299906],[-71.50438,41.82335399906],[-71.504478,41.82345899906],[-71.504551,41.82357399906],[-71.504629,41.82359799906],[-71.504688,41.82357099906],[-71.50474,41.82352499906],[-71.504819,41.82351399906],[-71.504915,41.82351299906],[-71.504956,41.82354299906],[-71.504982,41.82360199906],[-71.505017,41.82366499906],[-71.505101,41.82377299906],[-71.505135,41.82383499906],[-71.50516,41.82390199906],[-71.505208,41.82394599906],[-71.505283,41.82398199906],[-71.505342,41.82401599906],[-71.50538,41.82406499906],[-71.505382,41.82412599906],[-71.505431,41.82416899906],[-71.50552,41.82427099906],[-71.505574,41.82431499906],[-71.505594,41.82432599906],[-71.505655,41.82435699906],[-71.50575,41.82438799906],[-71.505815,41.82441599906],[-71.505901,41.82447099906],[-71.506069,41.82459199906],[-71.506191,41.82466799906],[-71.506257,41.82471999906],[-71.506299,41.82477599906],[-71.506333,41.82483299906],[-71.506346,41.82489099906],[-71.506346,41.82495399906],[-71.506357,41.82501699906],[-71.506386,41.82508099906],[-71.506412,41.82515699906],[-71.506471,41.82529199906],[-71.506481,41.82540599906],[-71.506516,41.82546599906],[-71.506523,41.82556199906],[-71.507133,41.82568699906],[-71.507195,41.82570299906],[-71.507439,41.82576399906],[-71.507584,41.82580599906],[-71.507889,41.82588599906],[-71.508179,41.82596999906],[-71.510414,41.82669399906],[-71.511032,41.82690799906],[-71.512108,41.82727799906],[-71.512421,41.82733499906],[-71.513412,41.82763299906],[-71.514641,41.82799899906],[-71.515831,41.82835799906]]]}}"}, +{"type": "blockgroup", "typeId": 122002, "areaId": 28937, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.569627,41.83507899906],[-71.569602,41.83497799906],[-71.569575,41.83478399906],[-71.569481,41.83439299906],[-71.569374,41.83388899906],[-71.568235,41.82850999906],[-71.567064,41.82254999906],[-71.566046,41.81717699906],[-71.565742,41.81557299906],[-71.56563,41.81498699906],[-71.563919,41.81485699906],[-71.563766,41.81484699906],[-71.563324,41.81481899906],[-71.562782,41.81477399906],[-71.561623,41.81468999906],[-71.561119,41.81464799906],[-71.560463,41.81460599906],[-71.560028,41.81456799906],[-71.55941,41.81452599906],[-71.558868,41.81449499906],[-71.558403,41.81446099906],[-71.557671,41.81438399906],[-71.556671,41.81429299906],[-71.556084,41.81428099906],[-71.555473,41.81425099906],[-71.555016,41.81421299906],[-71.554451,41.81415899906],[-71.55397,41.81414399906],[-71.553513,41.81410599906],[-71.55307,41.81406399906],[-71.552597,41.81402599906],[-71.55141,41.81395599906],[-71.551041,41.81393399906],[-71.550735,41.81390799906],[-71.55056,41.81392299906],[-71.550491,41.81397199906],[-71.5504,41.81413999906],[-71.550301,41.81426599906],[-71.550072,41.81442599906],[-71.549522,41.81482699906],[-71.549286,41.81500599906],[-71.549118,41.81510499906],[-71.548874,41.81515099906],[-71.54821,41.81522399906],[-71.54805,41.81520099906],[-71.54789,41.81518199906],[-71.547623,41.81513199906],[-71.547279,41.81502499906],[-71.547028,41.81495299906],[-71.546822,41.81496799906],[-71.546532,41.81504799906],[-71.546242,41.81518199906],[-71.545891,41.81531899906],[-71.545494,41.81543399906],[-71.544998,41.81555199906],[-71.544479,41.81570399906],[-71.544006,41.81581499906],[-71.543541,41.81590999906],[-71.543129,41.81597099906],[-71.542725,41.81606299906],[-71.542366,41.81610899906],[-71.541756,41.81614699906],[-71.541062,41.81595799906],[-71.540985,41.81593699906],[-71.540627,41.81581099906],[-71.540337,41.81567399906],[-71.54007,41.81552099906],[-71.53978,41.81536099906],[-71.53949,41.81516999906],[-71.539268,41.81500999906],[-71.53904,41.81481599906],[-71.538757,41.81463199906],[-71.5382,41.81432699906],[-71.537918,41.81424299906],[-71.53759,41.81418999906],[-71.537216,41.81412099906],[-71.536972,41.81408299906],[-71.536774,41.81406399906],[-71.536491,41.81402599906],[-71.53611,41.81400699906],[-71.535477,41.81401399906],[-71.535149,41.81401099906],[-71.534477,41.81396899906],[-71.534325,41.81395299906],[-71.533958,41.81388099906],[-71.53373,41.81381599906],[-71.533058,41.81360599906],[-71.532738,41.81351499906],[-71.53244,41.81340399906],[-71.532234,41.81333199906],[-71.531898,41.81322499906],[-71.531776,41.81319399906],[-71.531609,41.81316799906],[-71.531395,41.81314099906],[-71.531235,41.81311399906],[-71.53096,41.81304899906],[-71.530846,41.81302599906],[-71.530373,41.81302599906],[-71.530388,41.81322899906],[-71.530457,41.81361799906],[-71.530487,41.81386599906],[-71.530594,41.81441899906],[-71.530624,41.81467399906],[-71.53064,41.81496799906],[-71.530651,41.81508499906],[-71.530663,41.81521199906],[-71.530678,41.81548699906],[-71.530708,41.81562399906],[-71.530838,41.81587999906],[-71.530968,41.81606299906],[-71.531128,41.81632199906],[-71.531273,41.81652799906],[-71.531342,41.81661599906],[-71.531502,41.81676899906],[-71.531754,41.81695199906],[-71.531975,41.81710099906],[-71.532097,41.81719999906],[-71.532204,41.81732199906],[-71.532227,41.81737099906],[-71.532242,41.81740199906],[-71.532265,41.81750899906],[-71.532272,41.81771099906],[-71.532288,41.81785599906],[-71.532318,41.81796599906],[-71.532372,41.81808899906],[-71.532394,41.81815299906],[-71.532478,41.81833999906],[-71.5326,41.81857699906],[-71.532715,41.81884999906],[-71.532761,41.81895799906],[-71.53286,41.81916799906],[-71.533188,41.81993099906],[-71.53325,41.82009099906],[-71.533386,41.82044199906],[-71.533562,41.82084999906],[-71.533844,41.82153699906],[-71.534248,41.82242199906],[-71.534462,41.82294799906],[-71.53463,41.82333799906],[-71.534813,41.82373799906],[-71.534895,41.82393499906],[-71.535019,41.82422999906],[-71.535179,41.82462699906],[-71.535393,41.82505799906],[-71.535545,41.82540899906],[-71.535583,41.82547399906],[-71.535789,41.82592799906],[-71.536003,41.82641999906],[-71.536015,41.82643599906],[-71.536423,41.82735099906],[-71.536873,41.82825499906],[-71.537117,41.82880799906],[-71.537247,41.82908199906],[-71.537308,41.82923499906],[-71.537285,41.82936899906],[-71.537567,41.82942999906],[-71.538063,41.82956299906],[-71.538254,41.82961899906],[-71.539886,41.83010099906],[-71.540405,41.83024999906],[-71.541077,41.83045599906],[-71.541748,41.83064999906],[-71.542511,41.83088299906],[-71.543015,41.83102799906],[-71.543671,41.83122599906],[-71.544395,41.83143599906],[-71.545303,41.83171099906],[-71.546089,41.83195099906],[-71.546593,41.83209999906],[-71.546944,41.83219899906],[-71.547256,41.83229099906],[-71.547768,41.83242799906],[-71.548134,41.83249699906],[-71.54863,41.83256099906],[-71.549622,41.83268399906],[-71.550964,41.83284399906],[-71.551155,41.83286699906],[-71.55172,41.83293499906],[-71.552249,41.83299899906],[-71.552452,41.83302299906],[-71.553032,41.83308399906],[-71.553604,41.83315999906],[-71.5539,41.83318799906],[-71.554008,41.83319899906],[-71.555542,41.83326699906],[-71.555687,41.83327499906],[-71.556203,41.83329199906],[-71.556489,41.83330099906],[-71.556976,41.83331699906],[-71.557182,41.83332599906],[-71.557533,41.83333999906],[-71.558067,41.83337399906],[-71.558209,41.83339499906],[-71.558411,41.83342699906],[-71.558784,41.83349199906],[-71.559326,41.83359899906],[-71.560165,41.83377799906],[-71.561089,41.83396499906],[-71.561557,41.83406999906],[-71.561653,41.83409099906],[-71.562897,41.83434699906],[-71.563538,41.83448799906],[-71.563919,41.83455999906],[-71.564331,41.83463299906],[-71.564728,41.83468999906],[-71.565071,41.83473199906],[-71.565506,41.83477399906],[-71.566048,41.83481999906],[-71.566635,41.83484999906],[-71.567436,41.83491899906],[-71.567493,41.83492299906],[-71.568039,41.83496099906],[-71.56884,41.83502599906],[-71.569572,41.83507499906],[-71.569627,41.83507899906]]]}}"}, +{"type": "blockgroup", "typeId": 122003, "areaId": 28938, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.56563,41.81498699906],[-71.564473,41.81013899906],[-71.564345,41.80960299906],[-71.563301,41.80523299906],[-71.56258,41.80181099906],[-71.562423,41.80101499906],[-71.562317,41.80051499906],[-71.561623,41.79722599906],[-71.561209,41.79555999906],[-71.560075,41.79036999906],[-71.560009,41.79006199906],[-71.559856,41.78936799906],[-71.55929,41.78934399906],[-71.558582,41.78933499906],[-71.556891,41.78931699906],[-71.55524,41.78953699906],[-71.554912,41.78966899906],[-71.551681,41.79096199906],[-71.551568,41.79100699906],[-71.551445,41.79101399906],[-71.551262,41.79102399906],[-71.549237,41.79158699906],[-71.54731,41.79212599906],[-71.546089,41.79225499906],[-71.543488,41.79253799906],[-71.542328,41.79266399906],[-71.541527,41.79272799906],[-71.539726,41.79289599906],[-71.539436,41.79292699906],[-71.538834,41.79298399906],[-71.537621,41.79309099906],[-71.53698,41.79315199906],[-71.536316,41.79321699906],[-71.536186,41.79322399906],[-71.536064,41.79323599906],[-71.535255,41.79329699906],[-71.535027,41.79329699906],[-71.534676,41.79327399906],[-71.534225,41.79321299906],[-71.534126,41.79346099906],[-71.533875,41.79403299906],[-71.533852,41.79409399906],[-71.533722,41.79437599906],[-71.533577,41.79476899906],[-71.533325,41.79557799906],[-71.533272,41.79573399906],[-71.533142,41.79604699906],[-71.532852,41.79650899906],[-71.532631,41.79682899906],[-71.532234,41.79724899906],[-71.531898,41.79763399906],[-71.53157,41.79806099906],[-71.531349,41.79833199906],[-71.53109,41.79867599906],[-71.530991,41.79884299906],[-71.530777,41.79926699906],[-71.530586,41.79961799906],[-71.530441,41.79986599906],[-71.530167,41.80035799906],[-71.529999,41.80064399906],[-71.529915,41.80087699906],[-71.529877,41.80100999906],[-71.529861,41.80114399906],[-71.529884,41.80162399906],[-71.529892,41.80193299906],[-71.529892,41.80221899906],[-71.529884,41.80239899906],[-71.529869,41.80257399906],[-71.529846,41.80274199906],[-71.529808,41.80286799906],[-71.529762,41.80295899906],[-71.529755,41.80297899906],[-71.529686,41.80306599906],[-71.529648,41.80310099906],[-71.529579,41.80315399906],[-71.529457,41.80322299906],[-71.529228,41.80330699906],[-71.529007,41.80337099906],[-71.528404,41.80349299906],[-71.528145,41.80357399906],[-71.527928,41.80363599906],[-71.527664,41.80371099906],[-71.52755,41.80374899906],[-71.527351,41.80379499906],[-71.526596,41.80397399906],[-71.526421,41.80400799906],[-71.526306,41.80401999906],[-71.526115,41.80402799906],[-71.52581,41.80402399906],[-71.525513,41.80401199906],[-71.525169,41.80397399906],[-71.524765,41.80389799906],[-71.524414,41.80379499906],[-71.524139,41.80372999906],[-71.523926,41.80368399906],[-71.523758,41.80365399906],[-71.523544,41.80362299906],[-71.522972,41.80358099906],[-71.522766,41.80357399906],[-71.522621,41.80358899906],[-71.522118,41.80368399906],[-71.521347,41.80380999906],[-71.52095,41.80388599906],[-71.520805,41.80392099906],[-71.520233,41.80404999906],[-71.519936,41.80414199906],[-71.51973,41.80421399906],[-71.519493,41.80430999906],[-71.519081,41.80448499906],[-71.518776,41.80460699906],[-71.518623,41.80468799906],[-71.518501,41.80478299906],[-71.51825,41.80495499906],[-71.517906,41.80524399906],[-71.517677,41.80544699906],[-71.517517,41.80557599906],[-71.517403,41.80564899906],[-71.517273,41.80572099906],[-71.517082,41.80578999906],[-71.516808,41.80584699906],[-71.516586,41.80587399906],[-71.516479,41.80588199906],[-71.516388,41.80586199906],[-71.516205,41.80581299906],[-71.515961,41.80571699906],[-71.515312,41.80543099906],[-71.514786,41.80521199906],[-71.514618,41.80515299906],[-71.514472,41.80511099906],[-71.51442,41.80509599906],[-71.514353,41.80508299906],[-71.514,41.80501199906],[-71.512772,41.80476399906],[-71.511925,41.80464199906],[-71.511412,41.80460199906],[-71.510933,41.80456499906],[-71.51004,41.80450099906],[-71.510025,41.80468399906],[-71.509895,41.80574399906],[-71.509499,41.80828499906],[-71.509232,41.81008499906],[-71.509209,41.81026499906],[-71.509178,41.81044399906],[-71.509155,41.81061899906],[-71.509137,41.81110299906],[-71.509127,41.81138899906],[-71.509126,41.81161199906],[-71.509125,41.81183599906],[-71.50914,41.81217199906],[-71.509186,41.81256499906],[-71.509186,41.81259899906],[-71.509209,41.81271699906],[-71.509209,41.81309099906],[-71.509224,41.81327799906],[-71.509254,41.81351499906],[-71.509276,41.81364899906],[-71.509293,41.81375099906],[-71.509399,41.81421999906],[-71.509575,41.81486899906],[-71.509697,41.81524299906],[-71.509834,41.81558599906],[-71.510117,41.81614699906],[-71.510223,41.81634099906],[-71.510811,41.81747399906],[-71.511971,41.81973599906],[-71.512283,41.82037399906],[-71.51236,41.82051799906],[-71.512428,41.82066699906],[-71.512451,41.82070899906],[-71.512497,41.82081199906],[-71.512619,41.82102199906],[-71.513741,41.82317699906],[-71.51432,41.82432599906],[-71.514488,41.82464999906],[-71.514714,41.82515499906],[-71.514832,41.82541699906],[-71.514999,41.82578999906],[-71.515205,41.82627899906],[-71.515495,41.82709899906],[-71.515587,41.82740399906],[-71.515755,41.82802999906],[-71.515793,41.82821699906],[-71.515831,41.82835799906],[-71.516022,41.82841499906],[-71.516113,41.82843799906],[-71.517044,41.82871199906],[-71.517181,41.82875599906],[-71.517452,41.82883799906],[-71.518836,41.82925299906],[-71.519046,41.82931699906],[-71.519524,41.82945999906],[-71.519825,41.82954399906],[-71.519974,41.82958999906],[-71.520409,41.82971999906],[-71.520676,41.82980299906],[-71.521538,41.83005099906],[-71.521797,41.83011599906],[-71.521957,41.83015799906],[-71.522389,41.83025899906],[-71.522957,41.83039099906],[-71.52356,41.83053999906],[-71.524101,41.83068099906],[-71.524551,41.83079099906],[-71.52494,41.83089399906],[-71.525078,41.83092899906],[-71.525513,41.83098199906],[-71.525848,41.83100899906],[-71.52623,41.83101299906],[-71.526779,41.83098199906],[-71.527115,41.83094399906],[-71.527519,41.83087499906],[-71.528038,41.83077599906],[-71.528702,41.83064299906],[-71.530014,41.83039499906],[-71.530663,41.83026499906],[-71.53186,41.83003599906],[-71.532753,41.82987999906],[-71.533124,41.82981799906],[-71.533287,41.82979199906],[-71.534126,41.82965099906],[-71.535398,41.82943899906],[-71.535454,41.82942999906],[-71.535896,41.82936499906],[-71.536263,41.82933399906],[-71.536469,41.82932299906],[-71.536652,41.82932299906],[-71.536919,41.82933399906],[-71.537285,41.82936899906],[-71.537308,41.82923499906],[-71.537247,41.82908199906],[-71.537117,41.82880799906],[-71.536873,41.82825499906],[-71.536423,41.82735099906],[-71.536015,41.82643599906],[-71.536003,41.82641999906],[-71.535789,41.82592799906],[-71.535583,41.82547399906],[-71.535545,41.82540899906],[-71.535393,41.82505799906],[-71.535179,41.82462699906],[-71.535019,41.82422999906],[-71.534895,41.82393499906],[-71.534813,41.82373799906],[-71.53463,41.82333799906],[-71.534462,41.82294799906],[-71.534248,41.82242199906],[-71.533844,41.82153699906],[-71.533562,41.82084999906],[-71.533386,41.82044199906],[-71.53325,41.82009099906],[-71.533188,41.81993099906],[-71.53286,41.81916799906],[-71.532761,41.81895799906],[-71.532715,41.81884999906],[-71.5326,41.81857699906],[-71.532478,41.81833999906],[-71.532394,41.81815299906],[-71.532372,41.81808899906],[-71.532318,41.81796599906],[-71.532288,41.81785599906],[-71.532272,41.81771099906],[-71.532265,41.81750899906],[-71.532242,41.81740199906],[-71.532227,41.81737099906],[-71.532204,41.81732199906],[-71.532097,41.81719999906],[-71.531975,41.81710099906],[-71.531754,41.81695199906],[-71.531502,41.81676899906],[-71.531342,41.81661599906],[-71.531273,41.81652799906],[-71.531128,41.81632199906],[-71.530968,41.81606299906],[-71.530838,41.81587999906],[-71.530708,41.81562399906],[-71.530678,41.81548699906],[-71.530663,41.81521199906],[-71.530651,41.81508499906],[-71.53064,41.81496799906],[-71.530624,41.81467399906],[-71.530594,41.81441899906],[-71.530487,41.81386599906],[-71.530457,41.81361799906],[-71.530388,41.81322899906],[-71.530373,41.81302599906],[-71.530846,41.81302599906],[-71.53096,41.81304899906],[-71.531235,41.81311399906],[-71.531395,41.81314099906],[-71.531609,41.81316799906],[-71.531776,41.81319399906],[-71.531898,41.81322499906],[-71.532234,41.81333199906],[-71.53244,41.81340399906],[-71.532738,41.81351499906],[-71.533058,41.81360599906],[-71.53373,41.81381599906],[-71.533958,41.81388099906],[-71.534325,41.81395299906],[-71.534477,41.81396899906],[-71.535149,41.81401099906],[-71.535477,41.81401399906],[-71.53611,41.81400699906],[-71.536491,41.81402599906],[-71.536774,41.81406399906],[-71.536972,41.81408299906],[-71.537216,41.81412099906],[-71.53759,41.81418999906],[-71.537918,41.81424299906],[-71.5382,41.81432699906],[-71.538757,41.81463199906],[-71.53904,41.81481599906],[-71.539268,41.81500999906],[-71.53949,41.81516999906],[-71.53978,41.81536099906],[-71.54007,41.81552099906],[-71.540337,41.81567399906],[-71.540627,41.81581099906],[-71.540985,41.81593699906],[-71.541062,41.81595799906],[-71.541756,41.81614699906],[-71.542366,41.81610899906],[-71.542725,41.81606299906],[-71.543129,41.81597099906],[-71.543541,41.81590999906],[-71.544006,41.81581499906],[-71.544479,41.81570399906],[-71.544998,41.81555199906],[-71.545494,41.81543399906],[-71.545891,41.81531899906],[-71.546242,41.81518199906],[-71.546532,41.81504799906],[-71.546822,41.81496799906],[-71.547028,41.81495299906],[-71.547279,41.81502499906],[-71.547623,41.81513199906],[-71.54789,41.81518199906],[-71.54805,41.81520099906],[-71.54821,41.81522399906],[-71.548874,41.81515099906],[-71.549118,41.81510499906],[-71.549286,41.81500599906],[-71.549522,41.81482699906],[-71.550072,41.81442599906],[-71.550301,41.81426599906],[-71.5504,41.81413999906],[-71.550491,41.81397199906],[-71.55056,41.81392299906],[-71.550735,41.81390799906],[-71.551041,41.81393399906],[-71.55141,41.81395599906],[-71.552597,41.81402599906],[-71.55307,41.81406399906],[-71.553513,41.81410599906],[-71.55397,41.81414399906],[-71.554451,41.81415899906],[-71.555016,41.81421299906],[-71.555473,41.81425099906],[-71.556084,41.81428099906],[-71.556671,41.81429299906],[-71.557671,41.81438399906],[-71.558403,41.81446099906],[-71.558868,41.81449499906],[-71.55941,41.81452599906],[-71.560028,41.81456799906],[-71.560463,41.81460599906],[-71.561119,41.81464799906],[-71.561623,41.81468999906],[-71.562782,41.81477399906],[-71.563324,41.81481899906],[-71.563766,41.81484699906],[-71.563919,41.81485699906],[-71.56563,41.81498699906]]]}}"}, +{"type": "blockgroup", "typeId": 122004, "areaId": 28939, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.574642,41.85874799906],[-71.574628,41.85868099906],[-71.574468,41.85834799906],[-71.574112,41.85667799906],[-71.573776,41.85506399906],[-71.573395,41.85324399906],[-71.573232,41.85247599906],[-71.573027,41.85150899906],[-71.57188,41.84427699906],[-71.571838,41.84405399906],[-71.571606,41.84302099906],[-71.570639,41.83856599906],[-71.570114,41.83764599906],[-71.570078,41.83724999906],[-71.569655,41.83522099906],[-71.569627,41.83507899906],[-71.569572,41.83507499906],[-71.56884,41.83502599906],[-71.568039,41.83496099906],[-71.567493,41.83492299906],[-71.567436,41.83491899906],[-71.566635,41.83484999906],[-71.566048,41.83481999906],[-71.565506,41.83477399906],[-71.565071,41.83473199906],[-71.564728,41.83468999906],[-71.564331,41.83463299906],[-71.563919,41.83455999906],[-71.563538,41.83448799906],[-71.562897,41.83434699906],[-71.561653,41.83409099906],[-71.561557,41.83406999906],[-71.561089,41.83396499906],[-71.560165,41.83377799906],[-71.559326,41.83359899906],[-71.558784,41.83349199906],[-71.558411,41.83342699906],[-71.558209,41.83339499906],[-71.558067,41.83337399906],[-71.557533,41.83333999906],[-71.557182,41.83332599906],[-71.556976,41.83331699906],[-71.556489,41.83330099906],[-71.556203,41.83329199906],[-71.555687,41.83327499906],[-71.555542,41.83326699906],[-71.554008,41.83319899906],[-71.5539,41.83318799906],[-71.553604,41.83315999906],[-71.553032,41.83308399906],[-71.552452,41.83302299906],[-71.552249,41.83299899906],[-71.55172,41.83293499906],[-71.551155,41.83286699906],[-71.550964,41.83284399906],[-71.549622,41.83268399906],[-71.54863,41.83256099906],[-71.548134,41.83249699906],[-71.547768,41.83242799906],[-71.547256,41.83229099906],[-71.546944,41.83219899906],[-71.546593,41.83209999906],[-71.546089,41.83195099906],[-71.545303,41.83171099906],[-71.544395,41.83143599906],[-71.543671,41.83122599906],[-71.543015,41.83102799906],[-71.542511,41.83088299906],[-71.541748,41.83064999906],[-71.541077,41.83045599906],[-71.540405,41.83024999906],[-71.539886,41.83010099906],[-71.538254,41.82961899906],[-71.538063,41.82956299906],[-71.537567,41.82942999906],[-71.537285,41.82936899906],[-71.536919,41.82933399906],[-71.536652,41.82932299906],[-71.536469,41.82932299906],[-71.536263,41.82933399906],[-71.535896,41.82936499906],[-71.535454,41.82942999906],[-71.535398,41.82943899906],[-71.534126,41.82965099906],[-71.533287,41.82979199906],[-71.533124,41.82981799906],[-71.532753,41.82987999906],[-71.53186,41.83003599906],[-71.530663,41.83026499906],[-71.530014,41.83039499906],[-71.528702,41.83064299906],[-71.528038,41.83077599906],[-71.527519,41.83087499906],[-71.527115,41.83094399906],[-71.526779,41.83098199906],[-71.52623,41.83101299906],[-71.525848,41.83100899906],[-71.525513,41.83098199906],[-71.525078,41.83092899906],[-71.52494,41.83089399906],[-71.524551,41.83079099906],[-71.524101,41.83068099906],[-71.52356,41.83053999906],[-71.522957,41.83039099906],[-71.522389,41.83025899906],[-71.521957,41.83015799906],[-71.521797,41.83011599906],[-71.521538,41.83005099906],[-71.520676,41.82980299906],[-71.520409,41.82971999906],[-71.519974,41.82958999906],[-71.519825,41.82954399906],[-71.519524,41.82945999906],[-71.519046,41.82931699906],[-71.518836,41.82925299906],[-71.517452,41.82883799906],[-71.517181,41.82875599906],[-71.517044,41.82871199906],[-71.516113,41.82843799906],[-71.516022,41.82841499906],[-71.515831,41.82835799906],[-71.514641,41.82799899906],[-71.513412,41.82763299906],[-71.512421,41.82733499906],[-71.512108,41.82727799906],[-71.511032,41.82690799906],[-71.510414,41.82669399906],[-71.508179,41.82596999906],[-71.507889,41.82588599906],[-71.507584,41.82580599906],[-71.507439,41.82576399906],[-71.507195,41.82570299906],[-71.507195,41.82572599906],[-71.507187,41.82575199906],[-71.507187,41.82586699906],[-71.507217,41.82592799906],[-71.50724,41.82595799906],[-71.507713,41.82641599906],[-71.507828,41.82659899906],[-71.507904,41.82677799906],[-71.507904,41.82680499906],[-71.508011,41.82724399906],[-71.508056,41.82753699906],[-71.508057,41.82762499906],[-71.508049,41.82768999906],[-71.507996,41.82788499906],[-71.507965,41.82794999906],[-71.507927,41.82801399906],[-71.507881,41.82806799906],[-71.50782,41.82812099906],[-71.507362,41.82858999906],[-71.506927,41.82903699906],[-71.506744,41.82920099906],[-71.506508,41.82936899906],[-71.505959,41.82971199906],[-71.505936,41.82972699906],[-71.505585,41.82988699906],[-71.504875,41.83010099906],[-71.50428,41.83025699906],[-71.503967,41.83032999906],[-71.503471,41.83039899906],[-71.503339,41.83042699906],[-71.503204,41.83045599906],[-71.502991,41.83053599906],[-71.502769,41.83064699906],[-71.502632,41.83073399906],[-71.502281,41.83097799906],[-71.501923,41.83119999906],[-71.501831,41.83123399906],[-71.50185,41.83124599906],[-71.503006,41.83225699906],[-71.503517,41.83270299906],[-71.503937,41.83304999906],[-71.504066,41.83317599906],[-71.50441,41.83361099906],[-71.504593,41.83389999906],[-71.504791,41.83433199906],[-71.504875,41.83456799906],[-71.504967,41.83490799906],[-71.505058,41.83530799906],[-71.505135,41.83577699906],[-71.505153,41.83596499906],[-71.505173,41.83616299906],[-71.50518,41.83653599906],[-71.50518,41.83740599906],[-71.505211,41.83822999906],[-71.505234,41.83910799906],[-71.505211,41.83928299906],[-71.505203,41.83934799906],[-71.505135,41.83962999906],[-71.505058,41.83984799906],[-71.504913,41.84011499906],[-71.504738,41.84039299906],[-71.504562,41.84064899906],[-71.503815,41.84163999906],[-71.503876,41.84175099906],[-71.504036,41.84233499906],[-71.50425,41.84307499906],[-71.504265,41.84321599906],[-71.504242,41.84330699906],[-71.504219,41.84342999906],[-71.504173,41.84351299906],[-71.504105,41.84365799906],[-71.50399,41.84404399906],[-71.503952,41.84415799906],[-71.503883,41.84426899906],[-71.503853,41.84430699906],[-71.503487,41.84474199906],[-71.503204,41.84509999906],[-71.503117,41.84521399906],[-71.502678,41.84578699906],[-71.502419,41.84606899906],[-71.502304,41.84618399906],[-71.502136,41.84642399906],[-71.50206,41.84664499906],[-71.502029,41.84678599906],[-71.502182,41.84680899906],[-71.502388,41.84685499906],[-71.502602,41.84690899906],[-71.5028,41.84696999906],[-71.502968,41.84703099906],[-71.503258,41.84716399906],[-71.503571,41.84732099906],[-71.504143,41.84758799906],[-71.504341,41.84767499906],[-71.504639,41.84779399906],[-71.504936,41.84789299906],[-71.505135,41.84796499906],[-71.505356,41.84803799906],[-71.506498,41.84841299906],[-71.507355,41.84869399906],[-71.507553,41.84874699906],[-71.508026,41.84884999906],[-71.50827,41.84889599906],[-71.508499,41.84894199906],[-71.509338,41.84909099906],[-71.51046,41.84930799906],[-71.51078,41.84937999906],[-71.510818,41.84939199906],[-71.510933,41.84942199906],[-71.511024,41.84944499906],[-71.511185,41.84948299906],[-71.511459,41.84956099906],[-71.511574,41.84959399906],[-71.511689,41.84962399906],[-71.511763,41.84964499906],[-71.513832,41.85023099906],[-71.514503,41.85043699906],[-71.516388,41.85104799906],[-71.516708,41.85115799906],[-71.516945,41.85124999906],[-71.517212,41.85137199906],[-71.517494,41.85150899906],[-71.517807,41.85169599906],[-71.518173,41.85195199906],[-71.519951,41.85329799906],[-71.520195,41.85347399906],[-71.520521,41.85372099906],[-71.521049,41.85412099906],[-71.521254,41.85427699906],[-71.521271,41.85428999906],[-71.521591,41.85453399906],[-71.521873,41.85472899906],[-71.522194,41.85494199906],[-71.522243,41.85496999906],[-71.522522,41.85512899906],[-71.522804,41.85525499906],[-71.523155,41.85540399906],[-71.523582,41.85555599906],[-71.524467,41.85583499906],[-71.52462,41.85588699906],[-71.524925,41.85599099906],[-71.525139,41.85607499906],[-71.525345,41.85617099906],[-71.525642,41.85631899906],[-71.525787,41.85640699906],[-71.526047,41.85657899906],[-71.526253,41.85674699906],[-71.526466,41.85693699906],[-71.526749,41.85723099906],[-71.527466,41.85803199906],[-71.527931,41.85850899906],[-71.528687,41.85922199906],[-71.529373,41.85979099906],[-71.529854,41.86022899906],[-71.530151,41.86050799906],[-71.530411,41.86077899906],[-71.530609,41.86101199906],[-71.5308,41.86128999906],[-71.53096,41.86155699906],[-71.53112,41.86186599906],[-71.531311,41.86234699906],[-71.531433,41.86272799906],[-71.531471,41.86290399906],[-71.531502,41.86317099906],[-71.531502,41.86336499906],[-71.531494,41.86365499906],[-71.531483,41.86386299906],[-71.531482,41.86389899906],[-71.531464,41.86426899906],[-71.532043,41.86419499906],[-71.533274,41.86403799906],[-71.534903,41.86382999906],[-71.536003,41.86368599906],[-71.538525,41.86335699906],[-71.539405,41.86321999906],[-71.540216,41.86309499906],[-71.542475,41.86284199906],[-71.542997,41.86278299906],[-71.543502,41.86273399906],[-71.545071,41.86258499906],[-71.545422,41.86255199906],[-71.545476,41.86254699906],[-71.545536,41.86254099906],[-71.545655,41.86252999906],[-71.547354,41.86220699906],[-71.548429,41.86206399906],[-71.548653,41.86203399906],[-71.549385,41.86193699906],[-71.549907,41.86184899906],[-71.550423,41.86176499906],[-71.554998,41.86120699906],[-71.55687,41.86096899906],[-71.558448,41.86076299906],[-71.559747,41.86059099906],[-71.56018,41.86053599906],[-71.561768,41.86032899906],[-71.562903,41.86017999906],[-71.565924,41.85978299906],[-71.568658,41.85943099906],[-71.569894,41.85926699906],[-71.572473,41.85892799906],[-71.573608,41.85880699906],[-71.574642,41.85874799906]]]}}"}, +{"type": "blockgroup", "typeId": 123001, "areaId": 28940, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.505093,41.86772399906],[-71.504997,41.86768699906],[-71.504448,41.86749599906],[-71.504328,41.86745299906],[-71.503497,41.86715299906],[-71.503212,41.86704999906],[-71.502823,41.86690099906],[-71.502419,41.86672999906],[-71.502197,41.86664199906],[-71.501853,41.86649799906],[-71.500252,41.86582599906],[-71.499804,41.86563699906],[-71.49947,41.86549499906],[-71.498878,41.86524599906],[-71.498353,41.86502799906],[-71.497932,41.86485299906],[-71.49762,41.86472299906],[-71.496691,41.86432399906],[-71.496674,41.86431099906],[-71.496284,41.86411299906],[-71.496231,41.86408599906],[-71.495916,41.86391899906],[-71.49572,41.86381499906],[-71.495667,41.86378499906],[-71.495041,41.86341499906],[-71.494461,41.86307499906],[-71.494179,41.86290399906],[-71.494286,41.86279699906],[-71.494385,41.86266299906],[-71.494621,41.86281999906],[-71.494934,41.86301399906],[-71.495186,41.86316299906],[-71.495537,41.86297199906],[-71.495888,41.86276599906],[-71.495644,41.86260199906],[-71.495247,41.86236199906],[-71.49501,41.86219799906],[-71.494835,41.86202999906],[-71.494629,41.86186199906],[-71.493927,41.86133199906],[-71.49366,41.86111099906],[-71.493309,41.86083199906],[-71.492821,41.86042399906],[-71.492599,41.86025599906],[-71.49234,41.86004299906],[-71.492088,41.85984799906],[-71.491913,41.85970299906],[-71.49176,41.85950499906],[-71.491478,41.85911899906],[-71.49131,41.85892099906],[-71.491142,41.85870699906],[-71.49102,41.85850099906],[-71.490883,41.85805899906],[-71.490242,41.85814699906],[-71.489983,41.85816999906],[-71.489799,41.85757799906],[-71.489769,41.85750999906],[-71.489746,41.85747099906],[-71.489685,41.85744499906],[-71.489555,41.85739899906],[-71.489571,41.85731099906],[-71.489578,41.85723499906],[-71.489578,41.85713999906],[-71.489571,41.85705899906],[-71.48954,41.85696399906],[-71.489479,41.85680399906],[-71.489388,41.85662799906],[-71.489371,41.85659599906],[-71.489296,41.85643799906],[-71.48912,41.85608299906],[-71.48909,41.85603699906],[-71.489479,41.85597999906],[-71.489838,41.85591899906],[-71.490097,41.85588099906],[-71.48999,41.85567099906],[-71.489845,41.85536999906],[-71.489746,41.85520599906],[-71.4897,41.85515599906],[-71.489655,41.85512899906],[-71.489571,41.85511799906],[-71.489502,41.85511399906],[-71.489113,41.85521299906],[-71.488747,41.85531599906],[-71.488655,41.85513299906],[-71.488564,41.85493499906],[-71.488419,41.85464899906],[-71.488312,41.85443099906],[-71.488152,41.85409899906],[-71.487885,41.85356899906],[-71.487778,41.85335199906],[-71.487648,41.85306199906],[-71.487495,41.85277199906],[-71.48745,41.85266099906],[-71.487961,41.85259999906],[-71.488319,41.85254899906],[-71.488419,41.85253499906],[-71.488285,41.85189099906],[-71.489148,41.85178899906],[-71.48922,41.85177099906],[-71.489375,41.85174799906],[-71.490051,41.85168499906],[-71.490456,41.85166199906],[-71.490585,41.85164599906],[-71.490654,41.85162699906],[-71.490685,41.85160399906],[-71.490707,41.85156999906],[-71.490707,41.85151299906],[-71.490685,41.85126899906],[-71.490664,41.85112299906],[-71.490639,41.85095599906],[-71.489632,41.85105899906],[-71.489067,41.85113099906],[-71.488289,41.85124599906],[-71.487944,41.85133999906],[-71.487847,41.85137199906],[-71.487496,41.85139299906],[-71.487259,41.85140199906],[-71.487035,41.85142599906],[-71.486791,41.85120899906],[-71.486771,41.85112799906],[-71.486755,41.85103599906],[-71.48674,41.85087999906],[-71.48674,41.85081499906],[-71.486732,41.85075399906],[-71.486732,41.85011299906],[-71.48674,41.84999499906],[-71.48674,41.84944499906],[-71.486732,41.84911699906],[-71.486732,41.84666399906],[-71.48674,41.84649299906],[-71.48674,41.84607299906],[-71.48671,41.84587899906],[-71.486694,41.84581799906],[-71.486645,41.84561999906],[-71.486632,41.84557899906],[-71.48658,41.84542499906],[-71.486519,41.84526799906],[-71.486412,41.84506199906],[-71.486145,41.84457399906],[-71.486046,41.84437899906],[-71.485992,41.84428399906],[-71.485947,41.84418899906],[-71.485931,41.84416599906],[-71.485855,41.84402099906],[-71.48584,41.84398299906],[-71.485817,41.84394799906],[-71.485756,41.84380699906],[-71.485741,41.84373499906],[-71.485733,41.84371599906],[-71.485703,41.84361299906],[-71.48568,41.84355899906],[-71.485672,41.84350599906],[-71.485649,41.84341399906],[-71.485634,41.84331899906],[-71.485611,41.84322399906],[-71.485596,41.84313599906],[-71.485558,41.84300199906],[-71.485542,41.84289899906],[-71.485489,41.84268599906],[-71.485451,41.84258299906],[-71.485046,41.84263999906],[-71.484795,41.84266999906],[-71.484016,41.84276199906],[-71.483215,41.84286499906],[-71.482987,41.84289699906],[-71.482582,41.84295299906],[-71.481985,41.84303399906],[-71.481753,41.84294599906],[-71.481685,41.84297899906],[-71.48163,41.84302299906],[-71.481562,41.84306799906],[-71.481361,41.84318299906],[-71.481302,41.84320599906],[-71.481218,41.84322599906],[-71.481132,41.84325199906],[-71.481084,41.84326099906],[-71.481005,41.84325999906],[-71.480946,41.84329299906],[-71.480838,41.84337399906],[-71.480719,41.84344899906],[-71.48065,41.84348099906],[-71.480516,41.84350099906],[-71.480365,41.84348199906],[-71.480319,41.84348399906],[-71.480273,41.84351299906],[-71.480226,41.84360299906],[-71.480206,41.84366299906],[-71.479739,41.84405399906],[-71.479521,41.84428299906],[-71.479586,41.84446199906],[-71.48033,41.84504399906],[-71.480782,41.84596999906],[-71.480602,41.84660499906],[-71.480575,41.84663599906],[-71.480551,41.84669299906],[-71.48054,41.84675099906],[-71.480538,41.84682199906],[-71.480571,41.84690299906],[-71.480597,41.84701199906],[-71.480643,41.84705399906],[-71.480697,41.84709399906],[-71.480715,41.84715799906],[-71.480743,41.84721099906],[-71.480641,41.84740099906],[-71.480617,41.84745899906],[-71.4806,41.84751499906],[-71.480592,41.84757199906],[-71.480581,41.84782699906],[-71.480585,41.84788199906],[-71.480597,41.84794499906],[-71.480553,41.84817499906],[-71.480577,41.84826399906],[-71.480569,41.84853299906],[-71.480575,41.84859299906],[-71.480577,41.84877699906],[-71.480583,41.84893999906],[-71.4806,41.84904499906],[-71.480552,41.84908499906],[-71.480503,41.84919699906],[-71.480503,41.84921599906],[-71.480504,41.84925499906],[-71.480619,41.84935299906],[-71.480631,41.84942699906],[-71.480688,41.84960899906],[-71.480745,41.84973599906],[-71.48075,41.84978999906],[-71.480779,41.84985499906],[-71.480812,41.84991499906],[-71.480889,41.85008099906],[-71.480907,41.85013899906],[-71.480911,41.85019699906],[-71.480908,41.85024499906],[-71.48084,41.85051399906],[-71.480843,41.85056299906],[-71.480954,41.85077599906],[-71.480974,41.85082099906],[-71.480994,41.85086699906],[-71.481034,41.85093699906],[-71.481106,41.85110399906],[-71.481165,41.85117599906],[-71.485636,41.85351899906],[-71.485668,41.85357399906],[-71.485693,41.85363299906],[-71.485723,41.85374999906],[-71.485745,41.85380799906],[-71.485777,41.85386599906],[-71.485817,41.85391899906],[-71.485901,41.85400999906],[-71.485982,41.85412399906],[-71.486049,41.85427699906],[-71.486065,41.85431199906],[-71.486114,41.85443099906],[-71.48619,41.85461899906],[-71.486238,41.85480599906],[-71.48627,41.85486299906],[-71.486311,41.85491199906],[-71.486373,41.85495599906],[-71.486433,41.85499799906],[-71.486453,41.85500699906],[-71.486567,41.85509399906],[-71.486631,41.85515299906],[-71.486731,41.85527799906],[-71.486869,41.85554499906],[-71.486908,41.85566899906],[-71.487023,41.85597799906],[-71.487057,41.85603899906],[-71.487073,41.85608499906],[-71.48708,41.85610499906],[-71.487095,41.85613399906],[-71.487123,41.85625999906],[-71.487174,41.85658899906],[-71.48719,41.85668899906],[-71.487198,41.85682299906],[-71.487224,41.85694799906],[-71.487242,41.85700999906],[-71.487246,41.85733399906],[-71.487234,41.85746199906],[-71.487231,41.85759799906],[-71.487234,41.85767199906],[-71.487236,41.85772499906],[-71.487227,41.85792699906],[-71.487274,41.85838999906],[-71.487354,41.85871199906],[-71.487381,41.85884299906],[-71.487398,41.85889299906],[-71.487421,41.85907299906],[-71.487429,41.85914099906],[-71.487433,41.85916899906],[-71.487387,41.85921899906],[-71.487365,41.85925399906],[-71.487378,41.85926999906],[-71.487516,41.85929099906],[-71.487631,41.85934299906],[-71.487672,41.85940699906],[-71.487674,41.85947399906],[-71.487646,41.85953599906],[-71.487654,41.85960299906],[-71.487688,41.85968099906],[-71.487691,41.85975499906],[-71.487784,41.86002899906],[-71.487794,41.86020299906],[-71.487806,41.86026399906],[-71.487831,41.86032199906],[-71.487823,41.86038199906],[-71.487789,41.86044099906],[-71.487768,41.86050099906],[-71.487797,41.86061899906],[-71.487796,41.86068599906],[-71.487802,41.86074499906],[-71.48782,41.86079899906],[-71.487833,41.86085899906],[-71.48783,41.86092899906],[-71.48782,41.86098599906],[-71.487868,41.86103899906],[-71.487923,41.86114399906],[-71.488057,41.86146199906],[-71.488127,41.86159299906],[-71.488178,41.86168999906],[-71.488216,41.86175099906],[-71.48823,41.86180699906],[-71.488237,41.86186199906],[-71.488215,41.86191999906],[-71.488161,41.86197399906],[-71.48815,41.86203299906],[-71.488161,41.86209899906],[-71.488251,41.86227799906],[-71.488388,41.86244599906],[-71.488422,41.86249799906],[-71.488446,41.86256699906],[-71.488483,41.86261699906],[-71.488547,41.86264999906],[-71.488565,41.86270799906],[-71.488608,41.86273999906],[-71.488676,41.86276099906],[-71.488742,41.86279699906],[-71.488888,41.86283799906],[-71.488985,41.86286099906],[-71.489248,41.86296999906],[-71.48949,41.86310399906],[-71.489651,41.86315599906],[-71.489885,41.86322299906],[-71.490124,41.86333499906],[-71.49028,41.86342699906],[-71.49042,41.86349799906],[-71.490558,41.86357399906],[-71.490619,41.86361399906],[-71.490818,41.86378699906],[-71.490929,41.86389599906],[-71.491185,41.86410699906],[-71.491308,41.86419099906],[-71.491462,41.86436799906],[-71.491503,41.86443199906],[-71.491551,41.86455999906],[-71.491587,41.86461599906],[-71.491634,41.86472299906],[-71.491686,41.86478299906],[-71.491829,41.86488199906],[-71.491875,41.86491399906],[-71.492064,41.86507299906],[-71.492202,41.86521399906],[-71.492319,41.86531699906],[-71.492353,41.86536499906],[-71.492383,41.86623499906],[-71.492523,41.86657799906],[-71.49268,41.86695999906],[-71.492854,41.86721299906],[-71.492952,41.86740099906],[-71.493152,41.86758099906],[-71.493375,41.86778299906],[-71.494084,41.86827599906],[-71.494451,41.86835499906],[-71.494578,41.86841799906],[-71.494669,41.86845399906],[-71.49486,41.86850699906],[-71.495048,41.86853599906],[-71.495192,41.86854899906],[-71.49525,41.86858999906],[-71.495392,41.86865999906],[-71.495459,41.86867499906],[-71.495487,41.86866899906],[-71.495506,41.86877599906],[-71.495545,41.86898299906],[-71.495858,41.86893699906],[-71.496339,41.86886499906],[-71.496534,41.86883599906],[-71.496834,41.86879699906],[-71.496871,41.86879199906],[-71.497509,41.86871599906],[-71.498466,41.86859499906],[-71.499636,41.86843899906],[-71.499657,41.86847299906],[-71.499664,41.86849199906],[-71.499741,41.86861399906],[-71.500498,41.86833999906],[-71.500569,41.86831399906],[-71.501135,41.86823899906],[-71.502895,41.86800999906],[-71.504227,41.86783599906],[-71.505093,41.86772399906]]]}}"}, +{"type": "blockgroup", "typeId": 123002, "areaId": 28941, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.505234,41.83910799906],[-71.505211,41.83822999906],[-71.50518,41.83740599906],[-71.50518,41.83653599906],[-71.505173,41.83616299906],[-71.505153,41.83596499906],[-71.505135,41.83577699906],[-71.505058,41.83530799906],[-71.504967,41.83490799906],[-71.504875,41.83456799906],[-71.504791,41.83433199906],[-71.504593,41.83389999906],[-71.50441,41.83361099906],[-71.504066,41.83317599906],[-71.503937,41.83304999906],[-71.503517,41.83270299906],[-71.503006,41.83225699906],[-71.50185,41.83124599906],[-71.501831,41.83123399906],[-71.50177,41.83117699906],[-71.501633,41.83105899906],[-71.50132,41.83074999906],[-71.501213,41.83063099906],[-71.501137,41.83053799906],[-71.501114,41.83050899906],[-71.500862,41.83015399906],[-71.50074,41.82994799906],[-71.500694,41.82984899906],[-71.500565,41.82989899906],[-71.500313,41.82998299906],[-71.500092,41.83006699906],[-71.499847,41.83018099906],[-71.499489,41.83039099906],[-71.498856,41.83079499906],[-71.498611,41.83094799906],[-71.49852,41.83099699906],[-71.498352,41.83107799906],[-71.498184,41.83114199906],[-71.498032,41.83119199906],[-71.497932,41.83121499906],[-71.497734,41.83124899906],[-71.49749,41.83127199906],[-71.497368,41.83127599906],[-71.497246,41.83127199906],[-71.497009,41.83125699906],[-71.496761,41.83122999906],[-71.495209,41.83106999906],[-71.494568,41.83099699906],[-71.494354,41.83098599906],[-71.494171,41.83098599906],[-71.494019,41.83099699906],[-71.493866,41.83101299906],[-71.4935,41.83098599906],[-71.493233,41.83097799906],[-71.493195,41.83098199906],[-71.493141,41.83098199906],[-71.493034,41.83099399906],[-71.492966,41.83101699906],[-71.492783,41.83110799906],[-71.492661,41.83118099906],[-71.492523,41.83127599906],[-71.492462,41.83132599906],[-71.492393,41.83137499906],[-71.492271,41.83148599906],[-71.492226,41.83153499906],[-71.492149,41.83163799906],[-71.492125,41.83167599906],[-71.492058,41.83179099906],[-71.492035,41.83187099906],[-71.492035,41.83200099906],[-71.492043,41.83206899906],[-71.492012,41.83211899906],[-71.491982,41.83219099906],[-71.491913,41.83241999906],[-71.491882,41.83250799906],[-71.491768,41.83303499906],[-71.491692,41.83327499906],[-71.491623,41.83343499906],[-71.491531,41.83361399906],[-71.491325,41.83390799906],[-71.491158,41.83411399906],[-71.491013,41.83425499906],[-71.490723,41.83449599906],[-71.490509,41.83464099906],[-71.490395,41.83470899906],[-71.490334,41.83474699906],[-71.490265,41.83478899906],[-71.489807,41.83500699906],[-71.489647,41.83506399906],[-71.48954,41.83510199906],[-71.489334,41.83516699906],[-71.489082,41.83522799906],[-71.488892,41.83526199906],[-71.488762,41.83528499906],[-71.488403,41.83533099906],[-71.488159,41.83535399906],[-71.487961,41.83537299906],[-71.487442,41.83544499906],[-71.487289,41.83547199906],[-71.487007,41.83553699906],[-71.48687,41.83557499906],[-71.486694,41.83562899906],[-71.485725,41.83597199906],[-71.485245,41.83614699906],[-71.485016,41.83622399906],[-71.484436,41.83642999906],[-71.484222,41.83649799906],[-71.484047,41.83654799906],[-71.483864,41.83659399906],[-71.483833,41.83659699906],[-71.48362,41.83664699906],[-71.483368,41.83668899906],[-71.483072,41.83673899906],[-71.482957,41.83674699906],[-71.482848,41.83675499906],[-71.482597,41.83677299906],[-71.482391,41.83678099906],[-71.481796,41.83678099906],[-71.481613,41.83676899906],[-71.481247,41.83668899906],[-71.481171,41.83666599906],[-71.481102,41.83665099906],[-71.480566,41.83647999906],[-71.480478,41.83644499906],[-71.480171,41.83632299906],[-71.480066,41.83628499906],[-71.480003,41.83626199906],[-71.479767,41.83616999906],[-71.479622,41.83610499906],[-71.479358,41.83597099906],[-71.479012,41.83579599906],[-71.478687,41.83563899906],[-71.478516,41.83555599906],[-71.478119,41.83540699906],[-71.478012,41.83536899906],[-71.477753,41.83529299906],[-71.477623,41.83523899906],[-71.477577,41.83522399906],[-71.477463,41.83513999906],[-71.477356,41.83508699906],[-71.477257,41.83503699906],[-71.477158,41.83497599906],[-71.477036,41.83490399906],[-71.476685,41.83466299906],[-71.476463,41.83449199906],[-71.476128,41.83423199906],[-71.476051,41.83416699906],[-71.47583,41.83401499906],[-71.475571,41.83380499906],[-71.475479,41.83372899906],[-71.475319,41.83361399906],[-71.475182,41.83355299906],[-71.474968,41.83346599906],[-71.47467,41.83336599906],[-71.474365,41.83327499906],[-71.473976,41.83322099906],[-71.47374,41.83317899906],[-71.472534,41.83297299906],[-71.47213,41.83290499906],[-71.471558,41.83281699906],[-71.471222,41.83274799906],[-71.471031,41.83272899906],[-71.470917,41.83272899906],[-71.470863,41.83273699906],[-71.470688,41.83279799906],[-71.470642,41.83280899906],[-71.470604,41.83282899906],[-71.470444,41.83291199906],[-71.470586,41.83296799906],[-71.470608,41.83298199906],[-71.470834,41.83307299906],[-71.470902,41.83310999906],[-71.470972,41.83315699906],[-71.471063,41.83320699906],[-71.47159,41.83343799906],[-71.471673,41.83348699906],[-71.471745,41.83353799906],[-71.471827,41.83362099906],[-71.471994,41.83380699906],[-71.472064,41.83387399906],[-71.472235,41.83399999906],[-71.472383,41.83412199906],[-71.472432,41.83418099906],[-71.472462,41.83423399906],[-71.472477,41.83430799906],[-71.472476,41.83436399906],[-71.472416,41.83456499906],[-71.472381,41.83463499906],[-71.472334,41.83470599906],[-71.472232,41.83483499906],[-71.472194,41.83489099906],[-71.472176,41.83493299906],[-71.472008,41.83491599906],[-71.471987,41.83490699906],[-71.471963,41.83493699906],[-71.471932,41.83498899906],[-71.471889,41.83504299906],[-71.471852,41.83510699906],[-71.471791,41.83523099906],[-71.471676,41.83553399906],[-71.471673,41.83555699906],[-71.471667,41.83559899906],[-71.471674,41.83565499906],[-71.471749,41.83578599906],[-71.471744,41.83584199906],[-71.471703,41.83597399906],[-71.471695,41.83604399906],[-71.471702,41.83610799906],[-71.471721,41.83616899906],[-71.471733,41.83618899906],[-71.471753,41.83622199906],[-71.471797,41.83627599906],[-71.472004,41.83647399906],[-71.472046,41.83651499906],[-71.472262,41.83669599906],[-71.472303,41.83675499906],[-71.472313,41.83681699906],[-71.472329,41.83687399906],[-71.472357,41.83690799906],[-71.472381,41.83693599906],[-71.472459,41.83698099906],[-71.472525,41.83700799906],[-71.472589,41.83703999906],[-71.472645,41.83707799906],[-71.472667,41.83711099906],[-71.47269,41.83714599906],[-71.472695,41.83722299906],[-71.472707,41.83727999906],[-71.472732,41.83733599906],[-71.472747,41.83736399906],[-71.4728,41.83745699906],[-71.472829,41.83752899906],[-71.472861,41.83767599906],[-71.472884,41.83773399906],[-71.472952,41.83786299906],[-71.473034,41.83797499906],[-71.473034,41.83802499906],[-71.473093,41.83828199906],[-71.473108,41.83841699906],[-71.473098,41.83869599906],[-71.473119,41.83877099906],[-71.473171,41.83887399906],[-71.473228,41.83893899906],[-71.47331,41.83898199906],[-71.473402,41.83899299906],[-71.473504,41.83897899906],[-71.473599,41.83895299906],[-71.473962,41.83882199906],[-71.474276,41.83873499906],[-71.474391,41.83867599906],[-71.474496,41.83857499906],[-71.474572,41.83852599906],[-71.474876,41.83838999906],[-71.474952,41.83836599906],[-71.47518,41.83830399906],[-71.475223,41.83828699906],[-71.475395,41.83821499906],[-71.475541,41.83816199906],[-71.47558,41.83811599906],[-71.47574,41.83799599906],[-71.47581,41.83796999906],[-71.475891,41.83794999906],[-71.475986,41.83795199906],[-71.476019,41.83797599906],[-71.476061,41.83802899906],[-71.476105,41.83807599906],[-71.47618,41.83812799906],[-71.476245,41.83815599906],[-71.476351,41.83818699906],[-71.476453,41.83819599906],[-71.476539,41.83817299906],[-71.476602,41.83813699906],[-71.476652,41.83808099906],[-71.476711,41.83794499906],[-71.476745,41.83789099906],[-71.476832,41.83782699906],[-71.476905,41.83780999906],[-71.477018,41.83782899906],[-71.477086,41.83785799906],[-71.477148,41.83788799906],[-71.477216,41.83791099906],[-71.477366,41.83802599906],[-71.477466,41.83811399906],[-71.477509,41.83815999906],[-71.477558,41.83822399906],[-71.477584,41.83831799906],[-71.477587,41.83844799906],[-71.477527,41.83875699906],[-71.47751,41.83912599906],[-71.477484,41.83919899906],[-71.477405,41.83932499906],[-71.477378,41.83939199906],[-71.477358,41.83946099906],[-71.477322,41.83963599906],[-71.477461,41.84064899906],[-71.47764,41.84146899906],[-71.477696,41.84153499906],[-71.477765,41.84160199906],[-71.4778,41.84162899906],[-71.477847,41.84166499906],[-71.477939,41.84171899906],[-71.478123,41.84180399906],[-71.478376,41.84195099906],[-71.47846,41.84201199906],[-71.478537,41.84208299906],[-71.478592,41.84215699906],[-71.478623,41.84223899906],[-71.478659,41.84236899906],[-71.478672,41.84241799906],[-71.478706,41.84250599906],[-71.478784,41.84266699906],[-71.478888,41.84284599906],[-71.478951,41.84295399906],[-71.47899,41.84303899906],[-71.479011,41.84312499906],[-71.479019,41.84320999906],[-71.479012,41.84345799906],[-71.479004,41.84350099906],[-71.479521,41.84428299906],[-71.479739,41.84405399906],[-71.480206,41.84366299906],[-71.480226,41.84360299906],[-71.480273,41.84351299906],[-71.480319,41.84348399906],[-71.480365,41.84348199906],[-71.480516,41.84350099906],[-71.48065,41.84348099906],[-71.480719,41.84344899906],[-71.480838,41.84337399906],[-71.480946,41.84329299906],[-71.481005,41.84325999906],[-71.481084,41.84326099906],[-71.481132,41.84325199906],[-71.481218,41.84322599906],[-71.481302,41.84320599906],[-71.481361,41.84318299906],[-71.481562,41.84306799906],[-71.48163,41.84302299906],[-71.481685,41.84297899906],[-71.481753,41.84294599906],[-71.481985,41.84303399906],[-71.482582,41.84295299906],[-71.482987,41.84289699906],[-71.483215,41.84286499906],[-71.484016,41.84276199906],[-71.484795,41.84266999906],[-71.485046,41.84263999906],[-71.485451,41.84258299906],[-71.485489,41.84268599906],[-71.485542,41.84289899906],[-71.485558,41.84300199906],[-71.485832,41.84298299906],[-71.486,41.84296399906],[-71.486115,41.84296399906],[-71.486259,41.84297199906],[-71.48642,41.84296799906],[-71.486588,41.84294899906],[-71.488609,41.84255199906],[-71.488831,41.84250299906],[-71.489021,41.84247999906],[-71.489067,41.84245299906],[-71.489082,41.84241499906],[-71.489082,41.84234599906],[-71.489052,41.84218999906],[-71.488998,41.84197599906],[-71.48898,41.84184699906],[-71.488976,41.84181599906],[-71.488968,41.84169399906],[-71.488998,41.84160999906],[-71.489052,41.84155999906],[-71.489189,41.84145699906],[-71.489418,41.84132399906],[-71.489571,41.84118999906],[-71.490013,41.84138899906],[-71.490463,41.84158299906],[-71.491051,41.84184599906],[-71.49192,41.84224699906],[-71.492447,41.84251799906],[-71.492661,41.84263199906],[-71.492966,41.84281499906],[-71.493019,41.84284199906],[-71.493156,41.84292199906],[-71.493393,41.84306299906],[-71.493851,41.84334599906],[-71.494537,41.84374599906],[-71.49501,41.84403199906],[-71.495193,41.84415799906],[-71.495407,41.84431799906],[-71.495499,41.84439799906],[-71.495667,41.84456299906],[-71.495762,41.84466999906],[-71.495865,41.84478799906],[-71.496048,41.84504299906],[-71.496239,41.84534499906],[-71.496368,41.84555799906],[-71.496475,41.84571499906],[-71.49659,41.84587899906],[-71.496834,41.84611499906],[-71.496964,41.84620999906],[-71.497223,41.84635499906],[-71.497383,41.84643199906],[-71.497581,41.84650399906],[-71.497818,41.84656099906],[-71.498138,41.84662199906],[-71.498367,41.84666099906],[-71.499161,41.84677499906],[-71.499344,41.84679799906],[-71.499611,41.84681699906],[-71.499832,41.84682099906],[-71.500305,41.84681699906],[-71.500534,41.84680599906],[-71.500961,41.84678599906],[-71.501083,41.84677499906],[-71.501358,41.84675999906],[-71.501602,41.84675599906],[-71.501717,41.84675999906],[-71.501976,41.84677899906],[-71.502029,41.84678599906],[-71.50206,41.84664499906],[-71.502136,41.84642399906],[-71.502304,41.84618399906],[-71.502419,41.84606899906],[-71.502678,41.84578699906],[-71.503117,41.84521399906],[-71.503204,41.84509999906],[-71.503487,41.84474199906],[-71.503853,41.84430699906],[-71.503883,41.84426899906],[-71.503952,41.84415799906],[-71.50399,41.84404399906],[-71.504105,41.84365799906],[-71.504173,41.84351299906],[-71.504219,41.84342999906],[-71.504242,41.84330699906],[-71.504265,41.84321599906],[-71.50425,41.84307499906],[-71.504036,41.84233499906],[-71.503876,41.84175099906],[-71.503815,41.84163999906],[-71.504562,41.84064899906],[-71.504738,41.84039299906],[-71.504913,41.84011499906],[-71.505058,41.83984799906],[-71.505135,41.83962999906],[-71.505203,41.83934799906],[-71.505211,41.83928299906],[-71.505234,41.83910799906]]]}}"}, +{"type": "blockgroup", "typeId": 123003, "areaId": 28942, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.531502,41.86317099906],[-71.531471,41.86290399906],[-71.531433,41.86272799906],[-71.531311,41.86234699906],[-71.53112,41.86186599906],[-71.53096,41.86155699906],[-71.5308,41.86128999906],[-71.530609,41.86101199906],[-71.530411,41.86077899906],[-71.530151,41.86050799906],[-71.529854,41.86022899906],[-71.529373,41.85979099906],[-71.528687,41.85922199906],[-71.527931,41.85850899906],[-71.527466,41.85803199906],[-71.526749,41.85723099906],[-71.526466,41.85693699906],[-71.526253,41.85674699906],[-71.526047,41.85657899906],[-71.525787,41.85640699906],[-71.525642,41.85631899906],[-71.525345,41.85617099906],[-71.525139,41.85607499906],[-71.524925,41.85599099906],[-71.52462,41.85588699906],[-71.524467,41.85583499906],[-71.523582,41.85555599906],[-71.523155,41.85540399906],[-71.522804,41.85525499906],[-71.522522,41.85512899906],[-71.522243,41.85496999906],[-71.522194,41.85494199906],[-71.521873,41.85472899906],[-71.521591,41.85453399906],[-71.521271,41.85428999906],[-71.521254,41.85427699906],[-71.521049,41.85412099906],[-71.520521,41.85372099906],[-71.520195,41.85347399906],[-71.519951,41.85329799906],[-71.518173,41.85195199906],[-71.517807,41.85169599906],[-71.517494,41.85150899906],[-71.517212,41.85137199906],[-71.516945,41.85124999906],[-71.516708,41.85115799906],[-71.516388,41.85104799906],[-71.514503,41.85043699906],[-71.513832,41.85023099906],[-71.511763,41.84964499906],[-71.511689,41.84962399906],[-71.511574,41.84959399906],[-71.511459,41.84956099906],[-71.511185,41.84948299906],[-71.511024,41.84944499906],[-71.510933,41.84942199906],[-71.510818,41.84939199906],[-71.51078,41.84937999906],[-71.51046,41.84930799906],[-71.509338,41.84909099906],[-71.508499,41.84894199906],[-71.50827,41.84889599906],[-71.508026,41.84884999906],[-71.507553,41.84874699906],[-71.507355,41.84869399906],[-71.506498,41.84841299906],[-71.505356,41.84803799906],[-71.505135,41.84796499906],[-71.504936,41.84789299906],[-71.504639,41.84779399906],[-71.504341,41.84767499906],[-71.504143,41.84758799906],[-71.503571,41.84732099906],[-71.503258,41.84716399906],[-71.502968,41.84703099906],[-71.5028,41.84696999906],[-71.502602,41.84690899906],[-71.502388,41.84685499906],[-71.502182,41.84680899906],[-71.502029,41.84678599906],[-71.501976,41.84677899906],[-71.501717,41.84675999906],[-71.501602,41.84675599906],[-71.501358,41.84675999906],[-71.501083,41.84677499906],[-71.500961,41.84678599906],[-71.500534,41.84680599906],[-71.500305,41.84681699906],[-71.499832,41.84682099906],[-71.499611,41.84681699906],[-71.499344,41.84679799906],[-71.499161,41.84677499906],[-71.498367,41.84666099906],[-71.498138,41.84662199906],[-71.497818,41.84656099906],[-71.497581,41.84650399906],[-71.497383,41.84643199906],[-71.497223,41.84635499906],[-71.496964,41.84620999906],[-71.496834,41.84611499906],[-71.49659,41.84587899906],[-71.496475,41.84571499906],[-71.496368,41.84555799906],[-71.496239,41.84534499906],[-71.496048,41.84504299906],[-71.495865,41.84478799906],[-71.495762,41.84466999906],[-71.495667,41.84456299906],[-71.495499,41.84439799906],[-71.495407,41.84431799906],[-71.495193,41.84415799906],[-71.49501,41.84403199906],[-71.494537,41.84374599906],[-71.493851,41.84334599906],[-71.493393,41.84306299906],[-71.493156,41.84292199906],[-71.493019,41.84284199906],[-71.492966,41.84281499906],[-71.492661,41.84263199906],[-71.492447,41.84251799906],[-71.49192,41.84224699906],[-71.491051,41.84184599906],[-71.490463,41.84158299906],[-71.490013,41.84138899906],[-71.489571,41.84118999906],[-71.489418,41.84132399906],[-71.489189,41.84145699906],[-71.489052,41.84155999906],[-71.488998,41.84160999906],[-71.488968,41.84169399906],[-71.488976,41.84181599906],[-71.48898,41.84184699906],[-71.488998,41.84197599906],[-71.489052,41.84218999906],[-71.489082,41.84234599906],[-71.489082,41.84241499906],[-71.489067,41.84245299906],[-71.489021,41.84247999906],[-71.488831,41.84250299906],[-71.488609,41.84255199906],[-71.486588,41.84294899906],[-71.48642,41.84296799906],[-71.486259,41.84297199906],[-71.486115,41.84296399906],[-71.486,41.84296399906],[-71.485832,41.84298299906],[-71.485558,41.84300199906],[-71.485596,41.84313599906],[-71.485611,41.84322399906],[-71.485634,41.84331899906],[-71.485649,41.84341399906],[-71.485672,41.84350599906],[-71.48568,41.84355899906],[-71.485703,41.84361299906],[-71.485733,41.84371599906],[-71.485741,41.84373499906],[-71.485756,41.84380699906],[-71.485817,41.84394799906],[-71.48584,41.84398299906],[-71.485855,41.84402099906],[-71.485931,41.84416599906],[-71.485947,41.84418899906],[-71.485992,41.84428399906],[-71.486046,41.84437899906],[-71.486145,41.84457399906],[-71.486412,41.84506199906],[-71.486519,41.84526799906],[-71.48658,41.84542499906],[-71.486632,41.84557899906],[-71.486645,41.84561999906],[-71.486694,41.84581799906],[-71.48671,41.84587899906],[-71.48674,41.84607299906],[-71.48674,41.84649299906],[-71.486732,41.84666399906],[-71.486732,41.84911699906],[-71.48674,41.84944499906],[-71.48674,41.84999499906],[-71.486732,41.85011299906],[-71.486732,41.85075399906],[-71.48674,41.85081499906],[-71.48674,41.85087999906],[-71.486755,41.85103599906],[-71.486771,41.85112799906],[-71.486791,41.85120899906],[-71.487035,41.85142599906],[-71.487259,41.85140199906],[-71.487496,41.85139299906],[-71.487847,41.85137199906],[-71.487944,41.85133999906],[-71.488289,41.85124599906],[-71.489067,41.85113099906],[-71.489632,41.85105899906],[-71.490639,41.85095599906],[-71.490664,41.85112299906],[-71.490685,41.85126899906],[-71.490707,41.85151299906],[-71.490707,41.85156999906],[-71.490685,41.85160399906],[-71.490654,41.85162699906],[-71.490585,41.85164599906],[-71.490456,41.85166199906],[-71.490051,41.85168499906],[-71.489375,41.85174799906],[-71.48922,41.85177099906],[-71.489148,41.85178899906],[-71.488285,41.85189099906],[-71.488419,41.85253499906],[-71.488319,41.85254899906],[-71.487961,41.85259999906],[-71.48745,41.85266099906],[-71.487495,41.85277199906],[-71.487648,41.85306199906],[-71.487778,41.85335199906],[-71.487885,41.85356899906],[-71.488152,41.85409899906],[-71.488312,41.85443099906],[-71.488419,41.85464899906],[-71.488564,41.85493499906],[-71.488655,41.85513299906],[-71.488747,41.85531599906],[-71.489113,41.85521299906],[-71.489502,41.85511399906],[-71.489571,41.85511799906],[-71.489655,41.85512899906],[-71.4897,41.85515599906],[-71.489746,41.85520599906],[-71.489845,41.85536999906],[-71.48999,41.85567099906],[-71.490097,41.85588099906],[-71.489838,41.85591899906],[-71.489479,41.85597999906],[-71.48909,41.85603699906],[-71.48912,41.85608299906],[-71.489296,41.85643799906],[-71.489371,41.85659599906],[-71.489388,41.85662799906],[-71.489479,41.85680399906],[-71.48954,41.85696399906],[-71.489571,41.85705899906],[-71.489578,41.85713999906],[-71.489578,41.85723499906],[-71.489571,41.85731099906],[-71.489555,41.85739899906],[-71.489685,41.85744499906],[-71.489746,41.85747099906],[-71.489769,41.85750999906],[-71.489799,41.85757799906],[-71.489983,41.85816999906],[-71.490242,41.85814699906],[-71.490883,41.85805899906],[-71.49102,41.85850099906],[-71.491142,41.85870699906],[-71.49131,41.85892099906],[-71.491478,41.85911899906],[-71.49176,41.85950499906],[-71.491913,41.85970299906],[-71.492088,41.85984799906],[-71.49234,41.86004299906],[-71.492599,41.86025599906],[-71.492821,41.86042399906],[-71.493309,41.86083199906],[-71.49366,41.86111099906],[-71.493927,41.86133199906],[-71.494629,41.86186199906],[-71.494835,41.86202999906],[-71.49501,41.86219799906],[-71.495247,41.86236199906],[-71.495644,41.86260199906],[-71.495888,41.86276599906],[-71.495537,41.86297199906],[-71.495186,41.86316299906],[-71.494934,41.86301399906],[-71.494621,41.86281999906],[-71.494385,41.86266299906],[-71.494286,41.86279699906],[-71.494179,41.86290399906],[-71.494461,41.86307499906],[-71.495041,41.86341499906],[-71.495667,41.86378499906],[-71.49572,41.86381499906],[-71.495916,41.86391899906],[-71.496231,41.86408599906],[-71.496284,41.86411299906],[-71.496674,41.86431099906],[-71.496691,41.86432399906],[-71.49762,41.86472299906],[-71.497932,41.86485299906],[-71.498353,41.86502799906],[-71.498878,41.86524599906],[-71.49947,41.86549499906],[-71.499804,41.86563699906],[-71.500252,41.86582599906],[-71.501853,41.86649799906],[-71.502197,41.86664199906],[-71.502419,41.86672999906],[-71.502823,41.86690099906],[-71.503212,41.86704999906],[-71.503497,41.86715299906],[-71.504328,41.86745299906],[-71.504448,41.86749599906],[-71.504997,41.86768699906],[-71.505093,41.86772399906],[-71.506466,41.86754499906],[-71.507914,41.86735699906],[-71.508042,41.86734199906],[-71.50814,41.86732799906],[-71.51235,41.86677899906],[-71.51258,41.86674799906],[-71.513699,41.86660199906],[-71.513787,41.86658999906],[-71.514588,41.86648799906],[-71.515114,41.86642199906],[-71.515302,41.86639099906],[-71.523089,41.86537599906],[-71.523343,41.86534599906],[-71.526926,41.86487099906],[-71.527467,41.86479299906],[-71.530013,41.86442199906],[-71.530589,41.86435999906],[-71.531464,41.86426899906],[-71.531482,41.86389899906],[-71.531483,41.86386299906],[-71.531494,41.86365499906],[-71.531502,41.86336499906],[-71.531502,41.86317099906]]]}}"}, +{"type": "blockgroup", "typeId": 124011, "areaId": 28943, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.474365,41.83327499906],[-71.47424,41.83293399906],[-71.474159,41.83270999906],[-71.473976,41.83227199906],[-71.473862,41.83201599906],[-71.473755,41.83179499906],[-71.473587,41.83138699906],[-71.473503,41.83118799906],[-71.473373,41.83087499906],[-71.47332,41.83076499906],[-71.473282,41.83066899906],[-71.473167,41.83040599906],[-71.473061,41.83012799906],[-71.473015,41.83000599906],[-71.473007,41.82996699906],[-71.47287,41.82941799906],[-71.472855,41.82933799906],[-71.472801,41.82912099906],[-71.47271,41.82868599906],[-71.472542,41.82798799906],[-71.472404,41.82734699906],[-71.472351,41.82710999906],[-71.472237,41.82666399906],[-71.472168,41.82643499906],[-71.471878,41.82564199906],[-71.471817,41.82548899906],[-71.471733,41.82526399906],[-71.471657,41.82507699906],[-71.471565,41.82483699906],[-71.471413,41.82443599906],[-71.471306,41.82413899906],[-71.470791,41.82420899906],[-71.468981,41.82430299906],[-71.468399,41.82432199906],[-71.468209,41.82435799906],[-71.467885,41.82437699906],[-71.466295,41.82446899906],[-71.465216,41.82460399906],[-71.464924,41.82467099906],[-71.464703,41.82462299906],[-71.464493,41.82457899906],[-71.46402,41.82464199906],[-71.463185,41.82475399906],[-71.463152,41.82466399906],[-71.462423,41.82468699906],[-71.462225,41.82478099906],[-71.461936,41.82511499906],[-71.46208,41.82553999906],[-71.462303,41.82579299906],[-71.462504,41.82612999906],[-71.462542,41.82645299906],[-71.462523,41.82646999906],[-71.462366,41.82668499906],[-71.462333,41.82673599906],[-71.462309,41.82678899906],[-71.462297,41.82697599906],[-71.462306,41.82704699906],[-71.462332,41.82713799906],[-71.462355,41.82719199906],[-71.462387,41.82724799906],[-71.462412,41.82730299906],[-71.462432,41.82741299906],[-71.462454,41.82748099906],[-71.462495,41.82752899906],[-71.462556,41.82764099906],[-71.462594,41.82769099906],[-71.46266,41.82774499906],[-71.462748,41.82776699906],[-71.462804,41.82776699906],[-71.462873,41.82780199906],[-71.46293,41.82784699906],[-71.462983,41.82783199906],[-71.463065,41.82783599906],[-71.463145,41.82788099906],[-71.4632,41.82791899906],[-71.463249,41.82796499906],[-71.463348,41.82807399906],[-71.463461,41.82821399906],[-71.463635,41.82840499906],[-71.463676,41.82847499906],[-71.463744,41.82861599906],[-71.463793,41.82868099906],[-71.463948,41.82884099906],[-71.464021,41.82893899906],[-71.464125,41.82913599906],[-71.46418,41.82922799906],[-71.464304,41.82939699906],[-71.464422,41.82959699906],[-71.464569,41.82987699906],[-71.464646,41.83007099906],[-71.464686,41.83012599906],[-71.464744,41.83024699906],[-71.46475,41.83031599906],[-71.464742,41.83058799906],[-71.464693,41.83065899906],[-71.464722,41.83076499906],[-71.464726,41.83082199906],[-71.464737,41.83087799906],[-71.464758,41.83093099906],[-71.464758,41.83099099906],[-71.464769,41.83104799906],[-71.464803,41.83111899906],[-71.46486,41.83118099906],[-71.464922,41.83121499906],[-71.464992,41.83124299906],[-71.4651,41.83126499906],[-71.465246,41.83126699906],[-71.465319,41.83127999906],[-71.465416,41.83131399906],[-71.465615,41.83141799906],[-71.465693,41.83144799906],[-71.466091,41.83151099906],[-71.466177,41.83150899906],[-71.466293,41.83148299906],[-71.466462,41.83145199906],[-71.466861,41.83140999906],[-71.467024,41.83140399906],[-71.467191,41.83140899906],[-71.467262,41.83141799906],[-71.467437,41.83145199906],[-71.46759,41.83149099906],[-71.467673,41.83151999906],[-71.467756,41.83155599906],[-71.467914,41.83163999906],[-71.467982,41.83168399906],[-71.468038,41.83172899906],[-71.468221,41.83192899906],[-71.468286,41.83198299906],[-71.468356,41.83203299906],[-71.468487,41.83211299906],[-71.468624,41.83221199906],[-71.468758,41.83230799906],[-71.468819,41.83236999906],[-71.468888,41.83242899906],[-71.46895,41.83246799906],[-71.469025,41.83250299906],[-71.469113,41.83253199906],[-71.469304,41.83257099906],[-71.469404,41.83257499906],[-71.469695,41.83263099906],[-71.469791,41.83265599906],[-71.469987,41.83272299906],[-71.470258,41.83283099906],[-71.470367,41.83287999906],[-71.470444,41.83291199906],[-71.470604,41.83282899906],[-71.470642,41.83280899906],[-71.470688,41.83279799906],[-71.470863,41.83273699906],[-71.470917,41.83272899906],[-71.471031,41.83272899906],[-71.471222,41.83274799906],[-71.471558,41.83281699906],[-71.47213,41.83290499906],[-71.472534,41.83297299906],[-71.47374,41.83317899906],[-71.473976,41.83322099906],[-71.474365,41.83327499906]]]}}"}, +{"type": "blockgroup", "typeId": 124012, "areaId": 28944, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.48349,41.82179999906],[-71.482918,41.82163599906],[-71.482201,41.82142599906],[-71.481689,41.82127399906],[-71.481606,41.82125099906],[-71.480354,41.82086199906],[-71.479973,41.82074699906],[-71.479248,41.82053399906],[-71.478989,41.82045499906],[-71.478722,41.82037399906],[-71.478607,41.82034299906],[-71.47821,41.82047699906],[-71.477821,41.82059099906],[-71.477425,41.82069399906],[-71.47702,41.82079299906],[-71.476724,41.82086099906],[-71.476555,41.82089999906],[-71.475609,41.82109499906],[-71.475452,41.82112299906],[-71.475001,41.82120399906],[-71.474393,41.82131299906],[-71.473737,41.82143099906],[-71.47342,41.82148699906],[-71.47327,41.82151499906],[-71.471018,41.82191899906],[-71.470877,41.82194399906],[-71.470895,41.82198699906],[-71.471,41.82223899906],[-71.471077,41.82238399906],[-71.471511,41.82351099906],[-71.471573,41.82366499906],[-71.4716,41.82373499906],[-71.471632,41.82381599906],[-71.471764,41.82415299906],[-71.471306,41.82413899906],[-71.471413,41.82443599906],[-71.471565,41.82483699906],[-71.471657,41.82507699906],[-71.471733,41.82526399906],[-71.471817,41.82548899906],[-71.471878,41.82564199906],[-71.472168,41.82643499906],[-71.472237,41.82666399906],[-71.472351,41.82710999906],[-71.473198,41.82696499906],[-71.473846,41.82686199906],[-71.474503,41.82673599906],[-71.474541,41.82673299906],[-71.47464,41.82671399906],[-71.474716,41.82669099906],[-71.474823,41.82664499906],[-71.474876,41.82660699906],[-71.474953,41.82654199906],[-71.475128,41.82635899906],[-71.475327,41.82614899906],[-71.475456,41.82599999906],[-71.475525,41.82589699906],[-71.475571,41.82581299906],[-71.475609,41.82575599906],[-71.47583,41.82537499906],[-71.47596,41.82518399906],[-71.476021,41.82511499906],[-71.476151,41.82501599906],[-71.476295,41.82492099906],[-71.476616,41.82476799906],[-71.476654,41.82474499906],[-71.476746,41.82469599906],[-71.476848,41.82464699906],[-71.477058,41.82454699906],[-71.477196,41.82449699906],[-71.477272,41.82447799906],[-71.477432,41.82445499906],[-71.477562,41.82444799906],[-71.47773,41.82445099906],[-71.477936,41.82447799906],[-71.478088,41.82451199906],[-71.478127,41.82452799906],[-71.478157,41.82453499906],[-71.478264,41.82459299906],[-71.478424,41.82466499906],[-71.478523,41.82471799906],[-71.478615,41.82474899906],[-71.478691,41.82475999906],[-71.478783,41.82476399906],[-71.478867,41.82475999906],[-71.478973,41.82472999906],[-71.47908,41.82468799906],[-71.479134,41.82465399906],[-71.479218,41.82460799906],[-71.479591,41.82436799906],[-71.479912,41.82416199906],[-71.480286,41.82392099906],[-71.480701,41.82365699906],[-71.481682,41.82302099906],[-71.482307,41.82260899906],[-71.482384,41.82256299906],[-71.482765,41.82230799906],[-71.483383,41.82190299906],[-71.48349,41.82179999906]]]}}"}, +{"type": "blockgroup", "typeId": 124013, "areaId": 28945, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.485039,41.82216599906],[-71.484688,41.82210199906],[-71.484375,41.82203699906],[-71.484161,41.82198699906],[-71.483749,41.82187699906],[-71.48349,41.82179999906],[-71.483383,41.82190299906],[-71.482765,41.82230799906],[-71.482384,41.82256299906],[-71.482307,41.82260899906],[-71.481682,41.82302099906],[-71.480701,41.82365699906],[-71.480286,41.82392099906],[-71.479912,41.82416199906],[-71.479591,41.82436799906],[-71.479218,41.82460799906],[-71.479134,41.82465399906],[-71.47908,41.82468799906],[-71.478973,41.82472999906],[-71.478867,41.82475999906],[-71.478783,41.82476399906],[-71.478691,41.82475999906],[-71.478615,41.82474899906],[-71.478523,41.82471799906],[-71.478424,41.82466499906],[-71.478264,41.82459299906],[-71.478157,41.82453499906],[-71.478127,41.82452799906],[-71.478088,41.82451199906],[-71.477936,41.82447799906],[-71.47773,41.82445099906],[-71.477562,41.82444799906],[-71.477432,41.82445499906],[-71.477272,41.82447799906],[-71.477196,41.82449699906],[-71.477058,41.82454699906],[-71.476848,41.82464699906],[-71.476746,41.82469599906],[-71.476654,41.82474499906],[-71.476616,41.82476799906],[-71.476295,41.82492099906],[-71.476151,41.82501599906],[-71.476021,41.82511499906],[-71.47596,41.82518399906],[-71.47583,41.82537499906],[-71.475609,41.82575599906],[-71.475571,41.82581299906],[-71.475525,41.82589699906],[-71.475456,41.82599999906],[-71.475327,41.82614899906],[-71.475128,41.82635899906],[-71.474953,41.82654199906],[-71.474876,41.82660699906],[-71.474823,41.82664499906],[-71.474716,41.82669099906],[-71.47464,41.82671399906],[-71.474541,41.82673299906],[-71.474503,41.82673599906],[-71.473846,41.82686199906],[-71.473198,41.82696499906],[-71.472351,41.82710999906],[-71.472404,41.82734699906],[-71.472542,41.82798799906],[-71.47271,41.82868599906],[-71.472801,41.82912099906],[-71.472855,41.82933799906],[-71.47287,41.82941799906],[-71.473007,41.82996699906],[-71.473015,41.83000599906],[-71.473061,41.83012799906],[-71.473167,41.83040599906],[-71.473282,41.83066899906],[-71.47332,41.83076499906],[-71.473373,41.83087499906],[-71.473503,41.83118799906],[-71.473587,41.83138699906],[-71.473869,41.83125699906],[-71.474953,41.83078399906],[-71.4758,41.83040199906],[-71.477776,41.82953599906],[-71.477974,41.82944499906],[-71.478271,41.82930799906],[-71.479507,41.82878499906],[-71.480209,41.82847999906],[-71.480316,41.82842599906],[-71.480606,41.82829699906],[-71.480723,41.82824299906],[-71.480934,41.82814399906],[-71.481262,41.82797199906],[-71.482002,41.82864799906],[-71.482399,41.82901799906],[-71.483162,41.82966599906],[-71.483315,41.82954799906],[-71.483788,41.82915499906],[-71.483864,41.82908999906],[-71.484291,41.82874699906],[-71.484398,41.82866699906],[-71.484001,41.82831199906],[-71.483978,41.82829699906],[-71.483353,41.82772399906],[-71.482918,41.82733199906],[-71.482239,41.82672099906],[-71.481712,41.82626299906],[-71.481384,41.82596999906],[-71.482079,41.82551999906],[-71.481102,41.82464599906],[-71.481827,41.82421099906],[-71.482353,41.82386399906],[-71.482422,41.82382199906],[-71.482544,41.82377199906],[-71.482574,41.82375699906],[-71.482719,41.82370799906],[-71.483002,41.82362399906],[-71.483101,41.82358899906],[-71.483246,41.82352799906],[-71.483444,41.82342499906],[-71.483574,41.82334499906],[-71.483788,41.82320799906],[-71.483456,41.82285199906],[-71.483894,41.82295999906],[-71.484085,41.82299799906],[-71.484459,41.82307099906],[-71.484528,41.82305899906],[-71.484589,41.82303199906],[-71.484642,41.82297099906],[-71.484711,41.82287199906],[-71.484795,41.82271199906],[-71.485039,41.82216599906]]]}}"}, +{"type": "blockgroup", "typeId": 124014, "areaId": 28946, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.488159,41.83535399906],[-71.487915,41.83442299906],[-71.487732,41.83362599906],[-71.487503,41.83276399906],[-71.487312,41.83190899906],[-71.487038,41.83076499906],[-71.486008,41.83042299906],[-71.486031,41.83047099906],[-71.486061,41.83055499906],[-71.486092,41.83067299906],[-71.486092,41.83079899906],[-71.486076,41.83086399906],[-71.486046,41.83092899906],[-71.486008,41.83098999906],[-71.485962,41.83104699906],[-71.485847,41.83114599906],[-71.485725,41.83123399906],[-71.485626,41.83108899906],[-71.485609,41.83106699906],[-71.485687,41.83164299906],[-71.485711,41.83181899906],[-71.485252,41.83198899906],[-71.485115,41.83204299906],[-71.484985,41.83182899906],[-71.484863,41.83165699906],[-71.484787,41.83151599906],[-71.484695,41.83143599906],[-71.484637,41.83140799906],[-71.484327,41.83126199906],[-71.484082,41.83090999906],[-71.483376,41.82989099906],[-71.483162,41.82966599906],[-71.482399,41.82901799906],[-71.482002,41.82864799906],[-71.481262,41.82797199906],[-71.480934,41.82814399906],[-71.480723,41.82824299906],[-71.480606,41.82829699906],[-71.480316,41.82842599906],[-71.480209,41.82847999906],[-71.479507,41.82878499906],[-71.478271,41.82930799906],[-71.477974,41.82944499906],[-71.477776,41.82953599906],[-71.4758,41.83040199906],[-71.474953,41.83078399906],[-71.473869,41.83125699906],[-71.473587,41.83138699906],[-71.473755,41.83179499906],[-71.473862,41.83201599906],[-71.473976,41.83227199906],[-71.474159,41.83270999906],[-71.47424,41.83293399906],[-71.474365,41.83327499906],[-71.47467,41.83336599906],[-71.474968,41.83346599906],[-71.475182,41.83355299906],[-71.475319,41.83361399906],[-71.475479,41.83372899906],[-71.475571,41.83380499906],[-71.47583,41.83401499906],[-71.476051,41.83416699906],[-71.476128,41.83423199906],[-71.476463,41.83449199906],[-71.476685,41.83466299906],[-71.477036,41.83490399906],[-71.477158,41.83497599906],[-71.477257,41.83503699906],[-71.477356,41.83508699906],[-71.477463,41.83513999906],[-71.477577,41.83522399906],[-71.477623,41.83523899906],[-71.477753,41.83529299906],[-71.478012,41.83536899906],[-71.478119,41.83540699906],[-71.478516,41.83555599906],[-71.478687,41.83563899906],[-71.479012,41.83579599906],[-71.479358,41.83597099906],[-71.479622,41.83610499906],[-71.479767,41.83616999906],[-71.480003,41.83626199906],[-71.480066,41.83628499906],[-71.480171,41.83632299906],[-71.480478,41.83644499906],[-71.480566,41.83647999906],[-71.481102,41.83665099906],[-71.481171,41.83666599906],[-71.481247,41.83668899906],[-71.481613,41.83676899906],[-71.481796,41.83678099906],[-71.482391,41.83678099906],[-71.482597,41.83677299906],[-71.482848,41.83675499906],[-71.482957,41.83674699906],[-71.483072,41.83673899906],[-71.483368,41.83668899906],[-71.48362,41.83664699906],[-71.483833,41.83659699906],[-71.483864,41.83659399906],[-71.484047,41.83654799906],[-71.484222,41.83649799906],[-71.484436,41.83642999906],[-71.485016,41.83622399906],[-71.485245,41.83614699906],[-71.485725,41.83597199906],[-71.486694,41.83562899906],[-71.48687,41.83557499906],[-71.487007,41.83553699906],[-71.487289,41.83547199906],[-71.487442,41.83544499906],[-71.487961,41.83537299906],[-71.488159,41.83535399906]]]}}"}, +{"type": "blockgroup", "typeId": 124015, "areaId": 28947, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.508057,41.82762499906],[-71.508056,41.82753699906],[-71.508011,41.82724399906],[-71.507904,41.82680499906],[-71.507904,41.82677799906],[-71.507828,41.82659899906],[-71.507713,41.82641599906],[-71.50724,41.82595799906],[-71.507217,41.82592799906],[-71.507187,41.82586699906],[-71.507187,41.82575199906],[-71.507195,41.82572599906],[-71.507195,41.82570299906],[-71.507133,41.82568699906],[-71.506523,41.82556199906],[-71.506516,41.82546599906],[-71.506481,41.82540599906],[-71.506471,41.82529199906],[-71.506412,41.82515699906],[-71.506386,41.82508099906],[-71.506357,41.82501699906],[-71.506346,41.82495399906],[-71.506346,41.82489099906],[-71.506333,41.82483299906],[-71.506299,41.82477599906],[-71.506257,41.82471999906],[-71.506191,41.82466799906],[-71.506069,41.82459199906],[-71.505901,41.82447099906],[-71.505815,41.82441599906],[-71.50575,41.82438799906],[-71.505655,41.82435699906],[-71.505594,41.82432599906],[-71.505574,41.82431499906],[-71.50552,41.82427099906],[-71.505431,41.82416899906],[-71.505382,41.82412599906],[-71.50538,41.82406499906],[-71.505342,41.82401599906],[-71.505283,41.82398199906],[-71.505208,41.82394599906],[-71.50516,41.82390199906],[-71.505135,41.82383499906],[-71.505101,41.82377299906],[-71.505017,41.82366499906],[-71.504982,41.82360199906],[-71.504956,41.82354299906],[-71.504915,41.82351299906],[-71.504819,41.82351399906],[-71.50474,41.82352499906],[-71.504688,41.82357099906],[-71.504629,41.82359799906],[-71.504551,41.82357399906],[-71.504478,41.82345899906],[-71.50438,41.82335399906],[-71.504366,41.82332299906],[-71.504354,41.82329799906],[-71.504329,41.82327099906],[-71.504257,41.82329199906],[-71.504199,41.82333699906],[-71.504131,41.82336799906],[-71.504047,41.82335699906],[-71.503975,41.82331699906],[-71.503933,41.82326199906],[-71.503926,41.82318399906],[-71.503924,41.82303599906],[-71.503901,41.82298399906],[-71.503866,41.82293599906],[-71.503751,41.82284799906],[-71.503566,41.82275099906],[-71.503498,41.82270799906],[-71.503436,41.82265699906],[-71.503325,41.82254099906],[-71.503285,41.82248199906],[-71.503242,41.82242999906],[-71.503177,41.82239099906],[-71.503011,41.82230599906],[-71.502768,41.82221299906],[-71.502701,41.82218199906],[-71.502567,41.82210799906],[-71.502477,41.82209399906],[-71.502309,41.82208799906],[-71.50222,41.82207099906],[-71.502074,41.82202599906],[-71.501987,41.82201299906],[-71.501887,41.82202799906],[-71.501794,41.82206799906],[-71.501712,41.82211799906],[-71.501653,41.82216899906],[-71.501594,41.82221299906],[-71.501517,41.82224399906],[-71.501338,41.82228199906],[-71.501173,41.82232199906],[-71.501018,41.82234999906],[-71.500929,41.82238099906],[-71.500839,41.82240299906],[-71.500735,41.82241099906],[-71.500637,41.82238999906],[-71.500547,41.82237699906],[-71.50046,41.82237299906],[-71.500369,41.82239199906],[-71.500289,41.82241399906],[-71.500216,41.82241999906],[-71.500064,41.82241999906],[-71.499988,41.82238599906],[-71.499937,41.82234199906],[-71.499863,41.82230899906],[-71.499764,41.82229399906],[-71.4996,41.82229399906],[-71.499511,41.82228399906],[-71.499453,41.82223699906],[-71.499427,41.82215799906],[-71.499424,41.82166299906],[-71.499411,41.82160899906],[-71.499377,41.82155699906],[-71.499321,41.82149999906],[-71.499259,41.82145299906],[-71.499199,41.82139699906],[-71.499162,41.82134799906],[-71.499116,41.82129699906],[-71.499112,41.82127499906],[-71.498673,41.82040699906],[-71.49823,41.81953199906],[-71.498163,41.81948999906],[-71.498082,41.81946699906],[-71.498003,41.81943599906],[-71.497852,41.81939299906],[-71.497712,41.81933699906],[-71.497645,41.81930399906],[-71.497581,41.81927899906],[-71.497555,41.81927899906],[-71.497479,41.81929799906],[-71.497238,41.81861899906],[-71.497169,41.81839799906],[-71.497002,41.81805799906],[-71.49678,41.81755099906],[-71.496758,41.81749299906],[-71.496658,41.81718099906],[-71.496368,41.81716499906],[-71.495486,41.81710499906],[-71.494904,41.81706599906],[-71.493286,41.81697499906],[-71.491539,41.81685299906],[-71.490746,41.81682199906],[-71.490578,41.81681399906],[-71.490311,41.81681099906],[-71.489769,41.81681399906],[-71.489464,41.81682599906],[-71.488861,41.81687199906],[-71.488529,41.81690799906],[-71.488419,41.81692099906],[-71.488281,41.81693599906],[-71.487991,41.81697799906],[-71.487679,41.81702799906],[-71.487568,41.81704999906],[-71.487366,41.81708899906],[-71.487045,41.81714599906],[-71.486525,41.81726399906],[-71.486305,41.81731399906],[-71.485939,41.81740999906],[-71.485771,41.81746399906],[-71.485573,41.81752799906],[-71.48484,41.81777999906],[-71.483925,41.81815699906],[-71.483764,41.81822499906],[-71.481043,41.81936999906],[-71.480141,41.81975199906],[-71.479996,41.81980899906],[-71.47939,41.82005199906],[-71.478978,41.82020599906],[-71.47871,41.82030799906],[-71.478607,41.82034299906],[-71.478722,41.82037399906],[-71.478989,41.82045499906],[-71.479248,41.82053399906],[-71.479973,41.82074699906],[-71.480354,41.82086199906],[-71.481606,41.82125099906],[-71.481689,41.82127399906],[-71.482201,41.82142599906],[-71.482918,41.82163599906],[-71.48349,41.82179999906],[-71.483749,41.82187699906],[-71.484161,41.82198699906],[-71.484375,41.82203699906],[-71.484688,41.82210199906],[-71.485039,41.82216599906],[-71.484795,41.82271199906],[-71.484711,41.82287199906],[-71.484642,41.82297099906],[-71.484589,41.82303199906],[-71.484528,41.82305899906],[-71.484459,41.82307099906],[-71.484085,41.82299799906],[-71.483894,41.82295999906],[-71.483456,41.82285199906],[-71.483788,41.82320799906],[-71.483574,41.82334499906],[-71.483444,41.82342499906],[-71.483246,41.82352799906],[-71.483101,41.82358899906],[-71.483002,41.82362399906],[-71.482719,41.82370799906],[-71.482574,41.82375699906],[-71.482544,41.82377199906],[-71.482422,41.82382199906],[-71.482353,41.82386399906],[-71.481827,41.82421099906],[-71.481102,41.82464599906],[-71.482079,41.82551999906],[-71.481384,41.82596999906],[-71.481712,41.82626299906],[-71.482239,41.82672099906],[-71.482918,41.82733199906],[-71.483353,41.82772399906],[-71.483978,41.82829699906],[-71.484001,41.82831199906],[-71.484398,41.82866699906],[-71.484291,41.82874699906],[-71.483864,41.82908999906],[-71.483788,41.82915499906],[-71.483315,41.82954799906],[-71.483162,41.82966599906],[-71.483376,41.82989099906],[-71.484082,41.83090999906],[-71.484327,41.83126199906],[-71.484637,41.83140799906],[-71.484695,41.83143599906],[-71.484787,41.83151599906],[-71.484863,41.83165699906],[-71.484985,41.83182899906],[-71.485115,41.83204299906],[-71.485252,41.83198899906],[-71.485711,41.83181899906],[-71.485687,41.83164299906],[-71.485609,41.83106699906],[-71.485626,41.83108899906],[-71.485725,41.83123399906],[-71.485847,41.83114599906],[-71.485962,41.83104699906],[-71.486008,41.83098999906],[-71.486046,41.83092899906],[-71.486076,41.83086399906],[-71.486092,41.83079899906],[-71.486092,41.83067299906],[-71.486061,41.83055499906],[-71.486031,41.83047099906],[-71.486008,41.83042299906],[-71.487038,41.83076499906],[-71.487312,41.83190899906],[-71.487503,41.83276399906],[-71.487732,41.83362599906],[-71.487915,41.83442299906],[-71.488159,41.83535399906],[-71.488403,41.83533099906],[-71.488762,41.83528499906],[-71.488892,41.83526199906],[-71.489082,41.83522799906],[-71.489334,41.83516699906],[-71.48954,41.83510199906],[-71.489647,41.83506399906],[-71.489807,41.83500699906],[-71.490265,41.83478899906],[-71.490334,41.83474699906],[-71.490395,41.83470899906],[-71.490509,41.83464099906],[-71.490723,41.83449599906],[-71.491013,41.83425499906],[-71.491158,41.83411399906],[-71.491325,41.83390799906],[-71.491531,41.83361399906],[-71.491623,41.83343499906],[-71.491692,41.83327499906],[-71.491768,41.83303499906],[-71.491882,41.83250799906],[-71.491913,41.83241999906],[-71.491982,41.83219099906],[-71.492012,41.83211899906],[-71.492043,41.83206899906],[-71.492035,41.83200099906],[-71.492035,41.83187099906],[-71.492058,41.83179099906],[-71.492125,41.83167599906],[-71.492149,41.83163799906],[-71.492226,41.83153499906],[-71.492271,41.83148599906],[-71.492393,41.83137499906],[-71.492462,41.83132599906],[-71.492523,41.83127599906],[-71.492661,41.83118099906],[-71.492783,41.83110799906],[-71.492966,41.83101699906],[-71.493034,41.83099399906],[-71.493141,41.83098199906],[-71.493195,41.83098199906],[-71.493233,41.83097799906],[-71.4935,41.83098599906],[-71.493866,41.83101299906],[-71.494019,41.83099699906],[-71.494171,41.83098599906],[-71.494354,41.83098599906],[-71.494568,41.83099699906],[-71.495209,41.83106999906],[-71.496761,41.83122999906],[-71.497009,41.83125699906],[-71.497246,41.83127199906],[-71.497368,41.83127599906],[-71.49749,41.83127199906],[-71.497734,41.83124899906],[-71.497932,41.83121499906],[-71.498032,41.83119199906],[-71.498184,41.83114199906],[-71.498352,41.83107799906],[-71.49852,41.83099699906],[-71.498611,41.83094799906],[-71.498856,41.83079499906],[-71.499489,41.83039099906],[-71.499847,41.83018099906],[-71.500092,41.83006699906],[-71.500313,41.82998299906],[-71.500565,41.82989899906],[-71.500694,41.82984899906],[-71.50074,41.82994799906],[-71.500862,41.83015399906],[-71.501114,41.83050899906],[-71.501137,41.83053799906],[-71.501213,41.83063099906],[-71.50132,41.83074999906],[-71.501633,41.83105899906],[-71.50177,41.83117699906],[-71.501831,41.83123399906],[-71.501923,41.83119999906],[-71.502281,41.83097799906],[-71.502632,41.83073399906],[-71.502769,41.83064699906],[-71.502991,41.83053599906],[-71.503204,41.83045599906],[-71.503339,41.83042699906],[-71.503471,41.83039899906],[-71.503967,41.83032999906],[-71.50428,41.83025699906],[-71.504875,41.83010099906],[-71.505585,41.82988699906],[-71.505936,41.82972699906],[-71.505959,41.82971199906],[-71.506508,41.82936899906],[-71.506744,41.82920099906],[-71.506927,41.82903699906],[-71.507362,41.82858999906],[-71.50782,41.82812099906],[-71.507881,41.82806799906],[-71.507927,41.82801399906],[-71.507965,41.82794999906],[-71.507996,41.82788499906],[-71.508049,41.82768999906],[-71.508057,41.82762499906]]]}}"}, +{"type": "blockgroup", "typeId": 124021, "areaId": 28948, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.496658,41.81718099906],[-71.496574,41.81694799906],[-71.496483,41.81666199906],[-71.496414,41.81638299906],[-71.496391,41.81619299906],[-71.496109,41.81545299906],[-71.495957,41.81513999906],[-71.495651,41.81450699906],[-71.495568,41.81432899906],[-71.495398,41.81395899906],[-71.495216,41.81356399906],[-71.495163,41.81346099906],[-71.495088,41.81328999906],[-71.495071,41.81325099906],[-71.495049,41.81316799906],[-71.495018,41.81307999906],[-71.494995,41.81299599906],[-71.494965,41.81291199906],[-71.494942,41.81282799906],[-71.494911,41.81266799906],[-71.494911,41.81258799906],[-71.494904,41.81250799906],[-71.494904,41.81228999906],[-71.494911,41.81218299906],[-71.494873,41.81108899906],[-71.494873,41.81097799906],[-71.494865,41.81080599906],[-71.49482,41.81042099906],[-71.494797,41.81027999906],[-71.494759,41.81011199906],[-71.494736,41.81003599906],[-71.494705,41.80993299906],[-71.494667,41.80982999906],[-71.494621,41.80967699906],[-71.494583,41.80952799906],[-71.494476,41.80923099906],[-71.49446,41.80919199906],[-71.494415,41.80908199906],[-71.494347,41.80893699906],[-71.494293,41.80885299906],[-71.494232,41.80877299906],[-71.494179,41.80868899906],[-71.49398,41.80876899906],[-71.493126,41.80909299906],[-71.492401,41.80939499906],[-71.490465,41.81021499906],[-71.489754,41.81051599906],[-71.489304,41.81067999906],[-71.489174,41.81071899906],[-71.488785,41.81081799906],[-71.488541,41.81086699906],[-71.48835,41.81089399906],[-71.488274,41.81090499906],[-71.487976,41.81094399906],[-71.487549,41.81097399906],[-71.486641,41.81109199906],[-71.485985,41.81118399906],[-71.482796,41.81164899906],[-71.482491,41.81167199906],[-71.482185,41.81168399906],[-71.482033,41.81168699906],[-71.481766,41.81169499906],[-71.48085,41.81166499906],[-71.479897,41.81164599906],[-71.479698,41.81164199906],[-71.479202,41.81164199906],[-71.478657,41.81165499906],[-71.478577,41.81165699906],[-71.478485,41.81166099906],[-71.478249,41.81167999906],[-71.47805,41.81170699906],[-71.477798,41.81175599906],[-71.477669,41.81178699906],[-71.47744,41.81185199906],[-71.477005,41.81201199906],[-71.476631,41.81215999906],[-71.475967,41.81243899906],[-71.475792,41.81250799906],[-71.475098,41.81278199906],[-71.473839,41.81328299906],[-71.473221,41.81352999906],[-71.472656,41.81375099906],[-71.472366,41.81386599906],[-71.472168,41.81394999906],[-71.471428,41.81425499906],[-71.471138,41.81437299906],[-71.470795,41.81452199906],[-71.470306,41.81472799906],[-71.470032,41.81483799906],[-71.469833,41.81491899906],[-71.469711,41.81496799906],[-71.469238,41.81517399906],[-71.469177,41.81520099906],[-71.468781,41.81531499906],[-71.468575,41.81536899906],[-71.468294,41.81542899906],[-71.468239,41.81544099906],[-71.468193,41.81544499906],[-71.468208,41.81558599906],[-71.468285,41.81557499906],[-71.468345,41.81562299906],[-71.468625,41.81631799906],[-71.468695,41.81649799906],[-71.46882,41.81680999906],[-71.469018,41.81730499906],[-71.469184,41.81771599906],[-71.469226,41.81782099906],[-71.46926,41.81790499906],[-71.469347,41.81812199906],[-71.469393,41.81823599906],[-71.469411,41.81828199906],[-71.469493,41.81848499906],[-71.46965,41.81887599906],[-71.469673,41.81893299906],[-71.469938,41.81959099906],[-71.469954,41.81964099906],[-71.470015,41.81978799906],[-71.470031,41.81982799906],[-71.470226,41.82031299906],[-71.470251,41.82037699906],[-71.470421,41.82080799906],[-71.470429,41.82081699906],[-71.470444,41.82090399906],[-71.470784,41.82171899906],[-71.470799,41.82175899906],[-71.47082,41.82180899906],[-71.470877,41.82194399906],[-71.471018,41.82191899906],[-71.47327,41.82151499906],[-71.47342,41.82148699906],[-71.473737,41.82143099906],[-71.474393,41.82131299906],[-71.475001,41.82120399906],[-71.475452,41.82112299906],[-71.475609,41.82109499906],[-71.476555,41.82089999906],[-71.476724,41.82086099906],[-71.47702,41.82079299906],[-71.477425,41.82069399906],[-71.477821,41.82059099906],[-71.47821,41.82047699906],[-71.478607,41.82034299906],[-71.47871,41.82030799906],[-71.478978,41.82020599906],[-71.47939,41.82005199906],[-71.479996,41.81980899906],[-71.480141,41.81975199906],[-71.481043,41.81936999906],[-71.483764,41.81822499906],[-71.483925,41.81815699906],[-71.48484,41.81777999906],[-71.485573,41.81752799906],[-71.485771,41.81746399906],[-71.485939,41.81740999906],[-71.486305,41.81731399906],[-71.486525,41.81726399906],[-71.487045,41.81714599906],[-71.487366,41.81708899906],[-71.487568,41.81704999906],[-71.487679,41.81702799906],[-71.487991,41.81697799906],[-71.488281,41.81693599906],[-71.488419,41.81692099906],[-71.488529,41.81690799906],[-71.488861,41.81687199906],[-71.489464,41.81682599906],[-71.489769,41.81681399906],[-71.490311,41.81681099906],[-71.490578,41.81681399906],[-71.490746,41.81682199906],[-71.491539,41.81685299906],[-71.493286,41.81697499906],[-71.494904,41.81706599906],[-71.495486,41.81710499906],[-71.496368,41.81716499906],[-71.496658,41.81718099906]]]}}"}, +{"type": "blockgroup", "typeId": 124022, "areaId": 28949, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.494179,41.80868899906],[-71.493942,41.80838399906],[-71.493856,41.80829199906],[-71.49382,41.80825399906],[-71.493736,41.80818899906],[-71.493553,41.80806399906],[-71.493378,41.80793799906],[-71.49324,41.80782699906],[-71.493179,41.80777699906],[-71.493103,41.80770499906],[-71.493019,41.80763599906],[-71.492973,41.80758699906],[-71.492767,41.80739199906],[-71.492561,41.80717799906],[-71.492393,41.80699199906],[-71.492348,41.80693399906],[-71.492203,41.80677399906],[-71.49202,41.80659099906],[-71.491943,41.80652199906],[-71.491859,41.80645799906],[-71.491577,41.80622499906],[-71.491325,41.80603799906],[-71.491211,41.80596899906],[-71.49113,41.80591299906],[-71.491005,41.80582399906],[-71.490982,41.80581299906],[-71.490143,41.80519099906],[-71.489838,41.80491999906],[-71.488808,41.80498499906],[-71.488708,41.80498499906],[-71.488503,41.80500399906],[-71.488327,41.80503499906],[-71.488022,41.80512499906],[-71.48719,41.80536999906],[-71.48703,41.80537799906],[-71.486801,41.80535899906],[-71.486443,41.80534399906],[-71.485939,41.80531699906],[-71.48587,41.80530899906],[-71.485664,41.80529799906],[-71.485565,41.80528599906],[-71.485435,41.80526399906],[-71.485306,41.80523299906],[-71.485023,41.80517599906],[-71.484711,41.80512599906],[-71.484436,41.80509899906],[-71.484146,41.80508399906],[-71.48381,41.80507299906],[-71.483215,41.80506499906],[-71.482712,41.80505799906],[-71.482155,41.80507299906],[-71.481123,41.80512199906],[-71.481041,41.80512599906],[-71.480148,41.80516099906],[-71.479416,41.80517999906],[-71.478867,41.80519499906],[-71.478839,41.80519499906],[-71.476494,41.80523699906],[-71.476402,41.80524399906],[-71.476326,41.80525599906],[-71.47625,41.80506099906],[-71.476234,41.80503799906],[-71.476227,41.80501599906],[-71.476189,41.80494699906],[-71.476158,41.80487399906],[-71.47612,41.80480199906],[-71.476067,41.80467599906],[-71.476006,41.80454999906],[-71.475914,41.80432499906],[-71.475899,41.80429799906],[-71.475853,41.80416899906],[-71.475769,41.80387499906],[-71.47567,41.80344799906],[-71.475639,41.80334499906],[-71.475586,41.80312699906],[-71.47551,41.80290599906],[-71.475433,41.80273799906],[-71.475388,41.80265799906],[-71.475319,41.80258899906],[-71.475243,41.80252099906],[-71.475159,41.80246399906],[-71.47506,41.80240999906],[-71.474953,41.80236399906],[-71.474838,41.80232599906],[-71.474739,41.80230299906],[-71.474533,41.80226899906],[-71.474405,41.80223499906],[-71.474319,41.80221199906],[-71.474091,41.80212799906],[-71.47393,41.80205899906],[-71.473801,41.80199799906],[-71.473648,41.80191399906],[-71.47345,41.80181099906],[-71.473251,41.80174299906],[-71.473152,41.80172299906],[-71.472847,41.80165099906],[-71.472717,41.80165499906],[-71.472443,41.80165499906],[-71.472115,41.80166599906],[-71.471901,41.80165899906],[-71.471695,41.80165899906],[-71.471588,41.80166199906],[-71.471428,41.80166199906],[-71.471191,41.80166999906],[-71.470993,41.80171599906],[-71.470146,41.80200199906],[-71.469383,41.80226499906],[-71.469139,41.80232999906],[-71.468956,41.80238299906],[-71.468605,41.80281399906],[-71.468207,41.80327499906],[-71.468002,41.80351299906],[-71.467651,41.80395499906],[-71.46756,41.80405399906],[-71.467361,41.80424899906],[-71.467171,41.80440099906],[-71.467072,41.80446999906],[-71.467668,41.80493899906],[-71.467731,41.80498899906],[-71.468121,41.80495199906],[-71.468417,41.80493199906],[-71.469165,41.80486399906],[-71.46928,41.80525199906],[-71.46914,41.80542699906],[-71.469111,41.80585099906],[-71.469072,41.80602199906],[-71.469064,41.80605899906],[-71.467945,41.80609099906],[-71.467903,41.80629999906],[-71.468109,41.80626499906],[-71.467851,41.80725099906],[-71.467703,41.80729999906],[-71.467121,41.80762299906],[-71.466803,41.80779999906],[-71.466945,41.80795599906],[-71.467082,41.80792799906],[-71.467782,41.80887599906],[-71.468703,41.81059999906],[-71.467865,41.81063899906],[-71.466603,41.81069999906],[-71.466551,41.81074199906],[-71.466671,41.81104299906],[-71.467045,41.81198699906],[-71.467572,41.81331699906],[-71.467675,41.81330799906],[-71.46768,41.81332499906],[-71.467698,41.81340199906],[-71.467867,41.81415599906],[-71.467804,41.81420099906],[-71.467834,41.81430099906],[-71.467949,41.81454499906],[-71.468025,41.81467099906],[-71.468056,41.81473499906],[-71.468094,41.81483799906],[-71.468109,41.81493799906],[-71.468132,41.81504099906],[-71.46814,41.81510499906],[-71.468155,41.81516999906],[-71.468163,41.81523099906],[-71.468178,41.81530399906],[-71.468193,41.81544499906],[-71.468239,41.81544099906],[-71.468294,41.81542899906],[-71.468575,41.81536899906],[-71.468781,41.81531499906],[-71.469177,41.81520099906],[-71.469238,41.81517399906],[-71.469711,41.81496799906],[-71.469833,41.81491899906],[-71.470032,41.81483799906],[-71.470306,41.81472799906],[-71.470795,41.81452199906],[-71.471138,41.81437299906],[-71.471428,41.81425499906],[-71.472168,41.81394999906],[-71.472366,41.81386599906],[-71.472656,41.81375099906],[-71.473221,41.81352999906],[-71.473839,41.81328299906],[-71.475098,41.81278199906],[-71.475792,41.81250799906],[-71.475967,41.81243899906],[-71.476631,41.81215999906],[-71.477005,41.81201199906],[-71.47744,41.81185199906],[-71.477669,41.81178699906],[-71.477798,41.81175599906],[-71.47805,41.81170699906],[-71.478249,41.81167999906],[-71.478485,41.81166099906],[-71.478577,41.81165699906],[-71.478657,41.81165499906],[-71.479202,41.81164199906],[-71.479698,41.81164199906],[-71.479897,41.81164599906],[-71.48085,41.81166499906],[-71.481766,41.81169499906],[-71.482033,41.81168699906],[-71.482185,41.81168399906],[-71.482491,41.81167199906],[-71.482796,41.81164899906],[-71.485985,41.81118399906],[-71.486641,41.81109199906],[-71.487549,41.81097399906],[-71.487976,41.81094399906],[-71.488274,41.81090499906],[-71.48835,41.81089399906],[-71.488541,41.81086699906],[-71.488785,41.81081799906],[-71.489174,41.81071899906],[-71.489304,41.81067999906],[-71.489754,41.81051599906],[-71.490465,41.81021499906],[-71.492401,41.80939499906],[-71.493126,41.80909299906],[-71.49398,41.80876899906],[-71.494179,41.80868899906]]]}}"}, +{"type": "blockgroup", "typeId": 125001, "areaId": 28950, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.489838,41.80491999906],[-71.489632,41.80474099906],[-71.488235,41.80347099906],[-71.487068,41.80245999906],[-71.486877,41.80226899906],[-71.486832,41.80223099906],[-71.486656,41.80203999906],[-71.486534,41.80188799906],[-71.486458,41.80177299906],[-71.48632,41.80153999906],[-71.48613,41.80110199906],[-71.486069,41.80090299906],[-71.486061,41.80085399906],[-71.486031,41.80067799906],[-71.486023,41.80057899906],[-71.486023,41.80048399906],[-71.485901,41.79947299906],[-71.485893,41.79936999906],[-71.48587,41.79922899906],[-71.485832,41.79907199906],[-71.485802,41.79897699906],[-71.485779,41.79887399906],[-71.485748,41.79877099906],[-71.485703,41.79864499906],[-71.48568,41.79859499906],[-71.485634,41.79851899906],[-71.48555,41.79834399906],[-71.485443,41.79814499906],[-71.48539,41.79806099906],[-71.485268,41.79789399906],[-71.485039,41.79763799906],[-71.485001,41.79759199906],[-71.484848,41.79745099906],[-71.484642,41.79727199906],[-71.484497,41.79716899906],[-71.484108,41.79688299906],[-71.4834,41.79639599906],[-71.483015,41.79613099906],[-71.48283,41.79601199906],[-71.482765,41.79606899906],[-71.482727,41.79599799906],[-71.482498,41.79608499906],[-71.48233,41.79614299906],[-71.48201,41.79626099906],[-71.481956,41.79627999906],[-71.481758,41.79636399906],[-71.481552,41.79643599906],[-71.481354,41.79649699906],[-71.481102,41.79656599906],[-71.480904,41.79661199906],[-71.480705,41.79664999906],[-71.480453,41.79669199906],[-71.479942,41.79678699906],[-71.479813,41.79682199906],[-71.479736,41.79685199906],[-71.479568,41.79692799906],[-71.479537,41.79694599906],[-71.479447,41.79688299906],[-71.479369,41.79685099906],[-71.479282,41.79684799906],[-71.479002,41.79684899906],[-71.478929,41.79685399906],[-71.478794,41.79688199906],[-71.478682,41.79691199906],[-71.478615,41.79693899906],[-71.478537,41.79698199906],[-71.478457,41.79701799906],[-71.478398,41.79702999906],[-71.478254,41.79699799906],[-71.478179,41.79697199906],[-71.477952,41.79688199906],[-71.477879,41.79685599906],[-71.477808,41.79683599906],[-71.477706,41.79681799906],[-71.477601,41.79681699906],[-71.477452,41.79682299906],[-71.477347,41.79682299906],[-71.477244,41.79681199906],[-71.477024,41.79676799906],[-71.476802,41.79673799906],[-71.476694,41.79673699906],[-71.476589,41.79674199906],[-71.476436,41.79676299906],[-71.476352,41.79676699906],[-71.476191,41.79676399906],[-71.475834,41.79672099906],[-71.475744,41.79668999906],[-71.475684,41.79661099906],[-71.475655,41.79654299906],[-71.475621,41.79648399906],[-71.475562,41.79644199906],[-71.475474,41.79641699906],[-71.475382,41.79640699906],[-71.475287,41.79640299906],[-71.475202,41.79639399906],[-71.475119,41.79637199906],[-71.475027,41.79633099906],[-71.474957,41.79630499906],[-71.474879,41.79628499906],[-71.474801,41.79627099906],[-71.474724,41.79627099906],[-71.474642,41.79628199906],[-71.474563,41.79630399906],[-71.474488,41.79633599906],[-71.474293,41.79644399906],[-71.474161,41.79649699906],[-71.47408,41.79652299906],[-71.474009,41.79653099906],[-71.473984,41.79653199906],[-71.473717,41.79650499906],[-71.473682,41.79650499906],[-71.473602,41.79649699906],[-71.473448,41.79646299906],[-71.473361,41.79645599906],[-71.47312,41.79645499906],[-71.47296,41.79642399906],[-71.472733,41.79640499906],[-71.47257,41.79638299906],[-71.472512,41.79638299906],[-71.472431,41.79639099906],[-71.472362,41.79642299906],[-71.47231,41.79645999906],[-71.472235,41.79656299906],[-71.4721,41.79671599906],[-71.472063,41.79676599906],[-71.472036,41.79681599906],[-71.471912,41.79691999906],[-71.471932,41.79697999906],[-71.47194,41.79703699906],[-71.471992,41.79715999906],[-71.472014,41.79722899906],[-71.472026,41.79729599906],[-71.472021,41.79742399906],[-71.471976,41.79748299906],[-71.471823,41.79756999906],[-71.471784,41.79763099906],[-71.471768,41.79769899906],[-71.471786,41.79776499906],[-71.471819,41.79782599906],[-71.471807,41.79788599906],[-71.471705,41.79805299906],[-71.471665,41.79818299906],[-71.471635,41.79824699906],[-71.471609,41.79829099906],[-71.471598,41.79830999906],[-71.471552,41.79836899906],[-71.471501,41.79840799906],[-71.471347,41.79847899906],[-71.471253,41.79851299906],[-71.471005,41.79858199906],[-71.470932,41.79859599906],[-71.470909,41.79860199906],[-71.470845,41.79861799906],[-71.47066,41.79865699906],[-71.470496,41.79870999906],[-71.470451,41.79871699906],[-71.470387,41.79874399906],[-71.470105,41.79875799906],[-71.470042,41.79876799906],[-71.469973,41.79879799906],[-71.469832,41.79883099906],[-71.469752,41.79883599906],[-71.469678,41.79883599906],[-71.469597,41.79881199906],[-71.469522,41.79877399906],[-71.469463,41.79871699906],[-71.469428,41.79864399906],[-71.469384,41.79853199906],[-71.469328,41.79846199906],[-71.469278,41.79841999906],[-71.469077,41.79828999906],[-71.468939,41.79822999906],[-71.468849,41.79819099906],[-71.468834,41.79813699906],[-71.468794,41.79809799906],[-71.468666,41.79807899906],[-71.468572,41.79808899906],[-71.468489,41.79811199906],[-71.468413,41.79812599906],[-71.468341,41.79811899906],[-71.468211,41.79802999906],[-71.468122,41.79799799906],[-71.46792,41.79799599906],[-71.467813,41.79800299906],[-71.467716,41.79803199906],[-71.467636,41.79807099906],[-71.467582,41.79810899906],[-71.467479,41.79820499906],[-71.467441,41.79825699906],[-71.467348,41.79835399906],[-71.467374,41.79841499906],[-71.46738,41.79847999906],[-71.467354,41.79855299906],[-71.46727,41.79870399906],[-71.467185,41.79883999906],[-71.467081,41.79906499906],[-71.467018,41.79926199906],[-71.467009,41.79931699906],[-71.466991,41.79938199906],[-71.466906,41.79947399906],[-71.466905,41.79949199906],[-71.466881,41.79949399906],[-71.466869,41.79952799906],[-71.466871,41.79964199906],[-71.466924,41.79975399906],[-71.46694,41.79987399906],[-71.467022,41.80001699906],[-71.467027,41.80008499906],[-71.466993,41.80022899906],[-71.466968,41.80028299906],[-71.466893,41.80040199906],[-71.466873,41.80045899906],[-71.466859,41.80053099906],[-71.466854,41.80061899906],[-71.466871,41.80140699906],[-71.466851,41.80146299906],[-71.466804,41.80151599906],[-71.466685,41.80161599906],[-71.46665,41.80167899906],[-71.466623,41.80174899906],[-71.46659,41.80189299906],[-71.466582,41.80195799906],[-71.466546,41.80209599906],[-71.466509,41.80216199906],[-71.466461,41.80222799906],[-71.466338,41.80235099906],[-71.466292,41.80241299906],[-71.466209,41.80260199906],[-71.466167,41.80265199906],[-71.466027,41.80374899906],[-71.464315,41.80416299906],[-71.463665,41.80504599906],[-71.463716,41.80504099906],[-71.463843,41.80502299906],[-71.463966,41.80499499906],[-71.464085,41.80497899906],[-71.46434,41.80499299906],[-71.464583,41.80499099906],[-71.464725,41.80496399906],[-71.464676,41.80508899906],[-71.464879,41.80532099906],[-71.46458,41.80537599906],[-71.464321,41.80542599906],[-71.464686,41.80594599906],[-71.464753,41.80592499906],[-71.46492,41.80587399906],[-71.465057,41.80573999906],[-71.465107,41.80570399906],[-71.465759,41.80525599906],[-71.465935,41.80512999906],[-71.466179,41.80496599906],[-71.466278,41.80490499906],[-71.466385,41.80484799906],[-71.466507,41.80477499906],[-71.466644,41.80469899906],[-71.466698,41.80467599906],[-71.466793,41.80462399906],[-71.466893,41.80456799906],[-71.467072,41.80446999906],[-71.467171,41.80440099906],[-71.467361,41.80424899906],[-71.46756,41.80405399906],[-71.467651,41.80395499906],[-71.468002,41.80351299906],[-71.468207,41.80327499906],[-71.468605,41.80281399906],[-71.468956,41.80238299906],[-71.469139,41.80232999906],[-71.469383,41.80226499906],[-71.470146,41.80200199906],[-71.470993,41.80171599906],[-71.471191,41.80166999906],[-71.471428,41.80166199906],[-71.471588,41.80166199906],[-71.471695,41.80165899906],[-71.471901,41.80165899906],[-71.472115,41.80166599906],[-71.472443,41.80165499906],[-71.472717,41.80165499906],[-71.472847,41.80165099906],[-71.473152,41.80172299906],[-71.473251,41.80174299906],[-71.47345,41.80181099906],[-71.473648,41.80191399906],[-71.473801,41.80199799906],[-71.47393,41.80205899906],[-71.474091,41.80212799906],[-71.474319,41.80221199906],[-71.474405,41.80223499906],[-71.474533,41.80226899906],[-71.474739,41.80230299906],[-71.474838,41.80232599906],[-71.474953,41.80236399906],[-71.47506,41.80240999906],[-71.475159,41.80246399906],[-71.475243,41.80252099906],[-71.475319,41.80258899906],[-71.475388,41.80265799906],[-71.475433,41.80273799906],[-71.47551,41.80290599906],[-71.475586,41.80312699906],[-71.475639,41.80334499906],[-71.47567,41.80344799906],[-71.475769,41.80387499906],[-71.475853,41.80416899906],[-71.475899,41.80429799906],[-71.475914,41.80432499906],[-71.476006,41.80454999906],[-71.476067,41.80467599906],[-71.47612,41.80480199906],[-71.476158,41.80487399906],[-71.476189,41.80494699906],[-71.476227,41.80501599906],[-71.476234,41.80503799906],[-71.47625,41.80506099906],[-71.476326,41.80525599906],[-71.476402,41.80524399906],[-71.476494,41.80523699906],[-71.478839,41.80519499906],[-71.478867,41.80519499906],[-71.479416,41.80517999906],[-71.480148,41.80516099906],[-71.481041,41.80512599906],[-71.481123,41.80512199906],[-71.482155,41.80507299906],[-71.482712,41.80505799906],[-71.483215,41.80506499906],[-71.48381,41.80507299906],[-71.484146,41.80508399906],[-71.484436,41.80509899906],[-71.484711,41.80512599906],[-71.485023,41.80517599906],[-71.485306,41.80523299906],[-71.485435,41.80526399906],[-71.485565,41.80528599906],[-71.485664,41.80529799906],[-71.48587,41.80530899906],[-71.485939,41.80531699906],[-71.486443,41.80534399906],[-71.486801,41.80535899906],[-71.48703,41.80537799906],[-71.48719,41.80536999906],[-71.488022,41.80512499906],[-71.488327,41.80503499906],[-71.488503,41.80500399906],[-71.488708,41.80498499906],[-71.488808,41.80498499906],[-71.489838,41.80491999906]]]}}"}, +{"type": "blockgroup", "typeId": 125002, "areaId": 28951, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.506607,41.79454399906],[-71.506584,41.79427699906],[-71.506447,41.79324699906],[-71.505821,41.79331599906],[-71.504433,41.79354099906],[-71.504264,41.79356499906],[-71.503624,41.79365899906],[-71.502472,41.79379699906],[-71.502335,41.79387699906],[-71.501427,41.79409799906],[-71.501328,41.79412499906],[-71.500107,41.79441099906],[-71.499756,41.79449099906],[-71.499702,41.79450199906],[-71.499451,41.79386099906],[-71.498947,41.79296399906],[-71.497426,41.79089299906],[-71.49736,41.79090899906],[-71.496758,41.79103099906],[-71.496597,41.79106099906],[-71.495699,41.79117599906],[-71.495589,41.79118999906],[-71.49514,41.79124799906],[-71.495059,41.79125799906],[-71.495013,41.79126399906],[-71.493557,41.79144499906],[-71.493454,41.79145799906],[-71.493187,41.79149599906],[-71.493057,41.79151199906],[-71.493024,41.79151399906],[-71.492805,41.79152699906],[-71.49263,41.79152699906],[-71.492203,41.79151899906],[-71.491821,41.79148499906],[-71.491501,41.79144699906],[-71.490921,41.79138199906],[-71.4907,41.79136299906],[-71.490555,41.79135899906],[-71.490471,41.79136299906],[-71.490334,41.79136999906],[-71.490166,41.79139299906],[-71.490105,41.79140899906],[-71.489983,41.79143899906],[-71.489799,41.79149599906],[-71.489563,41.79159199906],[-71.48941,41.79167899906],[-71.488976,41.79200699906],[-71.488342,41.79249599906],[-71.487717,41.79297299906],[-71.487373,41.79322099906],[-71.486885,41.79357099906],[-71.486847,41.79360199906],[-71.486504,41.79386899906],[-71.486145,41.79409799906],[-71.485977,41.79421199906],[-71.485718,41.79437999906],[-71.485466,41.79452899906],[-71.485046,41.79477199906],[-71.484802,41.79491399906],[-71.484421,41.79515799906],[-71.484276,41.79524599906],[-71.483948,41.79541399906],[-71.483849,41.79545999906],[-71.483223,41.79576899906],[-71.482776,41.79597799906],[-71.482727,41.79599799906],[-71.482765,41.79606899906],[-71.48283,41.79601199906],[-71.483015,41.79613099906],[-71.4834,41.79639599906],[-71.484108,41.79688299906],[-71.484497,41.79716899906],[-71.484642,41.79727199906],[-71.484848,41.79745099906],[-71.485001,41.79759199906],[-71.485039,41.79763799906],[-71.485268,41.79789399906],[-71.48539,41.79806099906],[-71.485443,41.79814499906],[-71.48555,41.79834399906],[-71.485634,41.79851899906],[-71.48568,41.79859499906],[-71.485703,41.79864499906],[-71.485748,41.79877099906],[-71.485779,41.79887399906],[-71.485802,41.79897699906],[-71.485832,41.79907199906],[-71.48587,41.79922899906],[-71.485893,41.79936999906],[-71.485901,41.79947299906],[-71.486023,41.80048399906],[-71.486023,41.80057899906],[-71.486031,41.80067799906],[-71.486061,41.80085399906],[-71.486069,41.80090299906],[-71.48613,41.80110199906],[-71.48632,41.80153999906],[-71.486458,41.80177299906],[-71.486534,41.80188799906],[-71.486656,41.80203999906],[-71.486832,41.80223099906],[-71.486877,41.80226899906],[-71.487068,41.80245999906],[-71.488235,41.80347099906],[-71.489632,41.80474099906],[-71.489838,41.80491999906],[-71.490143,41.80519099906],[-71.490982,41.80581299906],[-71.491005,41.80582399906],[-71.491173,41.80575899906],[-71.491455,41.80567199906],[-71.491661,41.80559899906],[-71.491837,41.80552299906],[-71.49189,41.80549599906],[-71.492126,41.80543899906],[-71.492973,41.80527099906],[-71.493034,41.80525599906],[-71.493679,41.80515699906],[-71.494016,41.80508999906],[-71.494217,41.80497399906],[-71.494301,41.80487099906],[-71.494514,41.80466499906],[-71.495125,41.80412599906],[-71.495537,41.80376399906],[-71.496292,41.80308499906],[-71.496391,41.80297099906],[-71.496506,41.80286799906],[-71.496597,41.80280299906],[-71.496628,41.80277999906],[-71.496796,41.80267699906],[-71.496864,41.80264299906],[-71.497009,41.80258199906],[-71.497093,41.80255499906],[-71.497185,41.80253199906],[-71.497398,41.80248999906],[-71.497528,41.80247099906],[-71.498146,41.80239899906],[-71.498665,41.80232199906],[-71.498833,41.80228799906],[-71.499695,41.80205899906],[-71.499969,41.80199099906],[-71.5009,41.80173899906],[-71.500946,41.80172299906],[-71.500984,41.80171599906],[-71.501113,41.80167299906],[-71.501144,41.80166199906],[-71.501251,41.80163999906],[-71.501305,41.80162399906],[-71.501457,41.80158599906],[-71.501663,41.80151399906],[-71.501732,41.80147899906],[-71.501854,41.80140299906],[-71.501915,41.80135699906],[-71.502029,41.80126199906],[-71.502457,41.80085399906],[-71.502815,41.80044599906],[-71.50293,41.80030399906],[-71.503601,41.79965999906],[-71.503769,41.79949199906],[-71.504082,41.79918699906],[-71.504189,41.79908399906],[-71.504448,41.79882799906],[-71.504654,41.79861499906],[-71.504707,41.79854199906],[-71.50473,41.79851899906],[-71.50489,41.79825999906],[-71.504921,41.79819499906],[-71.505125,41.79782599906],[-71.505417,41.79729799906],[-71.505966,41.79626099906],[-71.506134,41.79595199906],[-71.506251,41.79573399906],[-71.506348,41.79555499906],[-71.506493,41.79523799906],[-71.506516,41.79516999906],[-71.506546,41.79510099906],[-71.506592,41.79489899906],[-71.506607,41.79476199906],[-71.506607,41.79454399906]]]}}"}, +{"type": "blockgroup", "typeId": 125003, "areaId": 28952, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.534225,41.79321299906],[-71.533745,41.79308699906],[-71.533325,41.79294599906],[-71.533012,41.79280499906],[-71.532845,41.79272499906],[-71.532616,41.79258699906],[-71.532242,41.79235099906],[-71.53196,41.79215999906],[-71.531601,41.79194299906],[-71.531227,41.79173299906],[-71.530968,41.79161499906],[-71.530556,41.79144699906],[-71.530144,41.79128999906],[-71.529755,41.79117199906],[-71.529266,41.79103499906],[-71.528633,41.79088199906],[-71.52697,41.79046599906],[-71.526634,41.79038599906],[-71.526405,41.79032899906],[-71.525764,41.79021799906],[-71.52459,41.79002799906],[-71.524178,41.78996999906],[-71.523926,41.78993599906],[-71.523552,41.78989399906],[-71.523155,41.78985999906],[-71.522719,41.78983199906],[-71.522491,41.78981099906],[-71.522349,41.78979899906],[-71.522171,41.78978299906],[-71.521797,41.78973799906],[-71.521431,41.78966899906],[-71.521095,41.78958899906],[-71.520805,41.78950499906],[-71.520569,41.78942499906],[-71.52021,41.78928399906],[-71.519653,41.78906999906],[-71.519348,41.78898199906],[-71.518982,41.78888699906],[-71.51894,41.78887899906],[-71.518608,41.78881099906],[-71.518379,41.78877299906],[-71.518188,41.78874599906],[-71.517715,41.78870399906],[-71.516998,41.78865399906],[-71.516174,41.78858199906],[-71.515995,41.78856399906],[-71.514804,41.78847699906],[-71.514148,41.78843299906],[-71.513844,41.78841699906],[-71.513332,41.78842099906],[-71.512715,41.78844099906],[-71.510951,41.78854499906],[-71.510369,41.78854599906],[-71.510025,41.78856999906],[-71.509331,41.78863099906],[-71.508659,41.78867299906],[-71.507615,41.78875699906],[-71.506531,41.78884499906],[-71.506058,41.78887899906],[-71.505753,41.78890199906],[-71.505089,41.78896299906],[-71.504417,41.78902399906],[-71.503792,41.78908499906],[-71.503067,41.78914299906],[-71.502838,41.78918799906],[-71.502655,41.78923399906],[-71.502144,41.78938299906],[-71.501068,41.78972199906],[-71.500931,41.78980599906],[-71.500824,41.78984499906],[-71.498497,41.79058099906],[-71.498207,41.79067199906],[-71.498001,41.79074099906],[-71.497887,41.79077099906],[-71.497765,41.79080999906],[-71.497426,41.79089299906],[-71.498947,41.79296399906],[-71.499451,41.79386099906],[-71.499702,41.79450199906],[-71.499756,41.79449099906],[-71.500107,41.79441099906],[-71.501328,41.79412499906],[-71.501427,41.79409799906],[-71.502335,41.79387699906],[-71.502472,41.79379699906],[-71.503624,41.79365899906],[-71.504264,41.79356499906],[-71.504433,41.79354099906],[-71.505821,41.79331599906],[-71.506447,41.79324699906],[-71.506584,41.79427699906],[-71.506607,41.79454399906],[-71.506607,41.79476199906],[-71.506592,41.79489899906],[-71.506546,41.79510099906],[-71.506516,41.79516999906],[-71.506493,41.79523799906],[-71.506348,41.79555499906],[-71.506251,41.79573399906],[-71.506134,41.79595199906],[-71.505966,41.79626099906],[-71.505417,41.79729799906],[-71.505125,41.79782599906],[-71.504921,41.79819499906],[-71.50489,41.79825999906],[-71.50473,41.79851899906],[-71.504707,41.79854199906],[-71.504654,41.79861499906],[-71.504448,41.79882799906],[-71.504189,41.79908399906],[-71.504082,41.79918699906],[-71.503769,41.79949199906],[-71.503601,41.79965999906],[-71.50293,41.80030399906],[-71.502815,41.80044599906],[-71.502457,41.80085399906],[-71.502029,41.80126199906],[-71.501915,41.80135699906],[-71.501854,41.80140299906],[-71.501732,41.80147899906],[-71.501663,41.80151399906],[-71.501457,41.80158599906],[-71.501305,41.80162399906],[-71.501251,41.80163999906],[-71.501144,41.80166199906],[-71.501113,41.80167299906],[-71.500984,41.80171599906],[-71.500946,41.80172299906],[-71.5009,41.80173899906],[-71.499969,41.80199099906],[-71.499695,41.80205899906],[-71.498833,41.80228799906],[-71.498665,41.80232199906],[-71.498146,41.80239899906],[-71.497528,41.80247099906],[-71.497398,41.80248999906],[-71.497185,41.80253199906],[-71.497093,41.80255499906],[-71.497009,41.80258199906],[-71.496864,41.80264299906],[-71.496796,41.80267699906],[-71.496628,41.80277999906],[-71.496597,41.80280299906],[-71.496506,41.80286799906],[-71.496391,41.80297099906],[-71.496292,41.80308499906],[-71.495537,41.80376399906],[-71.495125,41.80412599906],[-71.494514,41.80466499906],[-71.494301,41.80487099906],[-71.494217,41.80497399906],[-71.494278,41.80494499906],[-71.494485,41.80494199906],[-71.494573,41.80494799906],[-71.49464,41.80494499906],[-71.494714,41.80495599906],[-71.494795,41.80496199906],[-71.494884,41.80498599906],[-71.494991,41.80500599906],[-71.495124,41.80501099906],[-71.495265,41.80500899906],[-71.495529,41.80496999906],[-71.496376,41.80486699906],[-71.496834,41.80480199906],[-71.497681,41.80459999906],[-71.497917,41.80454999906],[-71.498016,41.80453499906],[-71.498146,41.80452299906],[-71.498367,41.80451199906],[-71.49852,41.80451199906],[-71.498787,41.80452699906],[-71.498863,41.80452699906],[-71.499023,41.80452299906],[-71.499306,41.80449299906],[-71.499359,41.80449299906],[-71.499789,41.80444099906],[-71.500229,41.80438999906],[-71.500343,41.80435899906],[-71.50045,41.80434799906],[-71.500549,41.80434799906],[-71.500679,41.80436299906],[-71.500862,41.80440099906],[-71.500961,41.80443999906],[-71.500999,41.80446199906],[-71.501091,41.80450099906],[-71.501183,41.80453499906],[-71.50145,41.80459999906],[-71.501556,41.80461099906],[-71.501724,41.80461099906],[-71.501953,41.80459599906],[-71.502121,41.80459199906],[-71.502602,41.80457699906],[-71.502983,41.80458499906],[-71.503639,41.80455799906],[-71.505501,41.80448899906],[-71.506882,41.80445099906],[-71.507607,41.80440899906],[-71.508316,41.80437499906],[-71.508507,41.80437899906],[-71.508677,41.80433699906],[-71.509532,41.80445999906],[-71.51004,41.80450099906],[-71.510933,41.80456499906],[-71.511412,41.80460199906],[-71.511925,41.80464199906],[-71.512772,41.80476399906],[-71.514,41.80501199906],[-71.514353,41.80508299906],[-71.51442,41.80509599906],[-71.514472,41.80511099906],[-71.514618,41.80515299906],[-71.514786,41.80521199906],[-71.515312,41.80543099906],[-71.515961,41.80571699906],[-71.516205,41.80581299906],[-71.516388,41.80586199906],[-71.516479,41.80588199906],[-71.516586,41.80587399906],[-71.516808,41.80584699906],[-71.517082,41.80578999906],[-71.517273,41.80572099906],[-71.517403,41.80564899906],[-71.517517,41.80557599906],[-71.517677,41.80544699906],[-71.517906,41.80524399906],[-71.51825,41.80495499906],[-71.518501,41.80478299906],[-71.518623,41.80468799906],[-71.518776,41.80460699906],[-71.519081,41.80448499906],[-71.519493,41.80430999906],[-71.51973,41.80421399906],[-71.519936,41.80414199906],[-71.520233,41.80404999906],[-71.520805,41.80392099906],[-71.52095,41.80388599906],[-71.521347,41.80380999906],[-71.522118,41.80368399906],[-71.522621,41.80358899906],[-71.522766,41.80357399906],[-71.522972,41.80358099906],[-71.523544,41.80362299906],[-71.523758,41.80365399906],[-71.523926,41.80368399906],[-71.524139,41.80372999906],[-71.524414,41.80379499906],[-71.524765,41.80389799906],[-71.525169,41.80397399906],[-71.525513,41.80401199906],[-71.52581,41.80402399906],[-71.526115,41.80402799906],[-71.526306,41.80401999906],[-71.526421,41.80400799906],[-71.526596,41.80397399906],[-71.527351,41.80379499906],[-71.52755,41.80374899906],[-71.527664,41.80371099906],[-71.527928,41.80363599906],[-71.528145,41.80357399906],[-71.528404,41.80349299906],[-71.529007,41.80337099906],[-71.529228,41.80330699906],[-71.529457,41.80322299906],[-71.529579,41.80315399906],[-71.529648,41.80310099906],[-71.529686,41.80306599906],[-71.529755,41.80297899906],[-71.529762,41.80295899906],[-71.529808,41.80286799906],[-71.529846,41.80274199906],[-71.529869,41.80257399906],[-71.529884,41.80239899906],[-71.529892,41.80221899906],[-71.529892,41.80193299906],[-71.529884,41.80162399906],[-71.529861,41.80114399906],[-71.529877,41.80100999906],[-71.529915,41.80087699906],[-71.529999,41.80064399906],[-71.530167,41.80035799906],[-71.530441,41.79986599906],[-71.530586,41.79961799906],[-71.530777,41.79926699906],[-71.530991,41.79884299906],[-71.53109,41.79867599906],[-71.531349,41.79833199906],[-71.53157,41.79806099906],[-71.531898,41.79763399906],[-71.532234,41.79724899906],[-71.532631,41.79682899906],[-71.532852,41.79650899906],[-71.533142,41.79604699906],[-71.533272,41.79573399906],[-71.533325,41.79557799906],[-71.533577,41.79476899906],[-71.533722,41.79437599906],[-71.533852,41.79409399906],[-71.533875,41.79403299906],[-71.534126,41.79346099906],[-71.534225,41.79321299906]]]}}"}, +{"type": "blockgroup", "typeId": 126011, "areaId": 28953, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.555328,41.93687399906],[-71.555305,41.93678999906],[-71.555304,41.93677199906],[-71.555214,41.93639799906],[-71.555191,41.93632499906],[-71.55513,41.93608099906],[-71.555,41.93560399906],[-71.554794,41.93501699906],[-71.554611,41.93458599906],[-71.554428,41.93422299906],[-71.554344,41.93408199906],[-71.55423,41.93387199906],[-71.554008,41.93342999906],[-71.553764,41.93298299906],[-71.553612,41.93266299906],[-71.553261,41.93202199906],[-71.552826,41.93134299906],[-71.552703,41.93117199906],[-71.552567,41.93098399906],[-71.552361,41.93065299906],[-71.552147,41.93034699906],[-71.55201,41.93009199906],[-71.551888,41.92979399906],[-71.55172,41.92934799906],[-71.551613,41.92898899906],[-71.551468,41.92843999906],[-71.551428,41.92830299906],[-71.551247,41.92768099906],[-71.551064,41.92710099906],[-71.550911,41.92649499906],[-71.550796,41.92607699906],[-71.550247,41.92407999906],[-71.54995,41.92306499906],[-71.549736,41.92227199906],[-71.549675,41.92206999906],[-71.549599,41.92184799906],[-71.549713,41.92180999906],[-71.549835,41.92177599906],[-71.54995,41.92174899906],[-71.550056,41.92174099906],[-71.550278,41.92174099906],[-71.550919,41.92177999906],[-71.551064,41.92178299906],[-71.551384,41.92179899906],[-71.551468,41.92179099906],[-71.551521,41.92177599906],[-71.551567,41.92175699906],[-71.551613,41.92172999906],[-71.551643,41.92169999906],[-71.551674,41.92165799906],[-71.55172,41.92150499906],[-71.551743,41.92134099906],[-71.551804,41.92100499906],[-71.551819,41.92089499906],[-71.551842,41.92078399906],[-71.551949,41.92054699906],[-71.552063,41.92040299906],[-71.552231,41.92029199906],[-71.552785,41.92008599906],[-71.552792,41.91996799906],[-71.552759,41.91981899906],[-71.552668,41.91968199906],[-71.552634,41.91956299906],[-71.552634,41.91942699906],[-71.552645,41.91937299906],[-71.552704,41.91925799906],[-71.552721,41.91920499906],[-71.552703,41.91914899906],[-71.552647,41.91909899906],[-71.55258,41.91905899906],[-71.552531,41.91901899906],[-71.552524,41.91895899906],[-71.552524,41.91890399906],[-71.552499,41.91872899906],[-71.552498,41.91861499906],[-71.552505,41.91852399906],[-71.553081,41.91769299906],[-71.552989,41.91694499906],[-71.552867,41.91567899906],[-71.552407,41.91479799906],[-71.552104,41.91401599906],[-71.551875,41.91361099906],[-71.551539,41.91347399906],[-71.550867,41.91326799906],[-71.55015,41.91283299906],[-71.549372,41.91211599906],[-71.549022,41.91176299906],[-71.548655,41.91139099906],[-71.547693,41.91022399906],[-71.546778,41.90894999906],[-71.545893,41.90771399906],[-71.545406,41.90689799906],[-71.545221,41.90650799906],[-71.544519,41.90539399906],[-71.544123,41.90457799906],[-71.543802,41.90331999906],[-71.543451,41.90226699906],[-71.543177,41.90092499906],[-71.543314,41.89945199906],[-71.543406,41.89916199906],[-71.543289,41.89872799906],[-71.543129,41.89881899906],[-71.542805,41.89900999906],[-71.542412,41.89924199906],[-71.542107,41.89940999906],[-71.541817,41.89963199906],[-71.541512,41.89995199906],[-71.540588,41.90094399906],[-71.540359,41.90117599906],[-71.540138,41.90133999906],[-71.539803,41.90154999906],[-71.53936,41.90179399906],[-71.538841,41.90208799906],[-71.538391,41.90233199906],[-71.537289,41.90299999906],[-71.536343,41.90349499906],[-71.536095,41.90362499906],[-71.536308,41.90386599906],[-71.536636,41.90420899906],[-71.53685,41.90444199906],[-71.537186,41.90478899906],[-71.537476,41.90509799906],[-71.537735,41.90538399906],[-71.538033,41.90569699906],[-71.538406,41.90610099906],[-71.537918,41.90664699906],[-71.537529,41.90706599906],[-71.537231,41.90740599906],[-71.53701,41.90763899906],[-71.536864,41.90780399906],[-71.536504,41.90821099906],[-71.536351,41.90838399906],[-71.53611,41.90865699906],[-71.536057,41.90872199906],[-71.535713,41.90909599906],[-71.534981,41.90992699906],[-71.534766,41.91013199906],[-71.534615,41.91027799906],[-71.534203,41.91061799906],[-71.534058,41.91072799906],[-71.533722,41.91095699906],[-71.533424,41.91112899906],[-71.532921,41.91140399906],[-71.532646,41.91153299906],[-71.532425,41.91164799906],[-71.531525,41.91207499906],[-71.531105,41.91228899906],[-71.530876,41.91239199906],[-71.529549,41.91304799906],[-71.528867,41.91337599906],[-71.528801,41.91340799906],[-71.528717,41.91344799906],[-71.52853,41.91353999906],[-71.528363,41.91362099906],[-71.526894,41.91434099906],[-71.526375,41.91458899906],[-71.526081,41.91473399906],[-71.525757,41.91489399906],[-71.525169,41.91517599906],[-71.522949,41.91626699906],[-71.522263,41.91659499906],[-71.521271,41.91707999906],[-71.520927,41.91724399906],[-71.520447,41.91748799906],[-71.520339,41.91736499906],[-71.520233,41.91724399906],[-71.520195,41.91719399906],[-71.520027,41.91699999906],[-71.519615,41.91649999906],[-71.519226,41.91603899906],[-71.518738,41.91544299906],[-71.518471,41.91510799906],[-71.518158,41.91473799906],[-71.517853,41.91436399906],[-71.517532,41.91398999906],[-71.517349,41.91378799906],[-71.517024,41.91345399906],[-71.516937,41.91336399906],[-71.516905,41.91333299906],[-71.516777,41.91321099906],[-71.516266,41.91271999906],[-71.516098,41.91259799906],[-71.515816,41.91235399906],[-71.515076,41.91167099906],[-71.514839,41.91144599906],[-71.514648,41.91121699906],[-71.513756,41.91035499906],[-71.51284,41.90950399906],[-71.51265,41.90931699906],[-71.512299,41.90899999906],[-71.511777,41.90853999906],[-71.511251,41.90806899906],[-71.511231,41.90805199906],[-71.511162,41.90809599906],[-71.510651,41.90855799906],[-71.510292,41.90891999906],[-71.509659,41.90957999906],[-71.509331,41.90994999906],[-71.509071,41.91027499906],[-71.508827,41.91060299906],[-71.508598,41.91093099906],[-71.508324,41.91135799906],[-71.508095,41.91174699906],[-71.507866,41.91215899906],[-71.5075,41.91290299906],[-71.507317,41.91336099906],[-71.507141,41.91394399906],[-71.506989,41.91450899906],[-71.506859,41.91522199906],[-71.506683,41.91636299906],[-71.506597,41.91689299906],[-71.506569,41.91706799906],[-71.50631,41.91885399906],[-71.506157,41.91980399906],[-71.506139,41.91989899906],[-71.50605,41.92037999906],[-71.50592,41.92094799906],[-71.505394,41.92348099906],[-71.505211,41.92430499906],[-71.505043,41.92497999906],[-71.504983,41.92517199906],[-71.504951,41.92527399906],[-71.50489,41.92547999906],[-71.504707,41.92596799906],[-71.504494,41.92647199906],[-71.504242,41.92700999906],[-71.504005,41.92743299906],[-71.5037,41.92795899906],[-71.503372,41.92844799906],[-71.503075,41.92885599906],[-71.502663,41.92935899906],[-71.502266,41.92980999906],[-71.501869,41.93022199906],[-71.501541,41.93054199906],[-71.501404,41.93067599906],[-71.500946,41.93108699906],[-71.500374,41.93154899906],[-71.499657,41.93207899906],[-71.498711,41.93267799906],[-71.497547,41.93339399906],[-71.496892,41.93379699906],[-71.49675,41.93388399906],[-71.496399,41.93409299906],[-71.494858,41.93503599906],[-71.492928,41.93618799906],[-71.49273,41.93630899906],[-71.490837,41.93746199906],[-71.489281,41.93839999906],[-71.489167,41.93846899906],[-71.489316,41.93890699906],[-71.49066,41.94285399906],[-71.490748,41.94312699906],[-71.490788,41.94324099906],[-71.49083,41.94323199906],[-71.490891,41.94321999906],[-71.49179,41.94313399906],[-71.500568,41.94228899906],[-71.502036,41.94214799906],[-71.502181,41.94213399906],[-71.502804,41.94207399906],[-71.502952,41.94205999906],[-71.503888,41.94196999906],[-71.504403,41.94192099906],[-71.505111,41.94185399906],[-71.508805,41.94149799906],[-71.511805,41.94129799906],[-71.512076,41.94126699906],[-71.521506,41.94019799906],[-71.526775,41.93971999906],[-71.527018,41.93969599906],[-71.536513,41.93875499906],[-71.536577,41.93874899906],[-71.539056,41.93852499906],[-71.541077,41.93833999906],[-71.542352,41.93820899906],[-71.55093,41.93734499906],[-71.551483,41.93728599906],[-71.551961,41.93723399906],[-71.554076,41.93700699906],[-71.554182,41.93699599906],[-71.554475,41.93696499906],[-71.555198,41.93688599906],[-71.555328,41.93687399906]]]}}"}, +{"type": "blockgroup", "typeId": 126012, "areaId": 28954, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.543289,41.89872799906],[-71.543245,41.89865699906],[-71.543131,41.89851399906],[-71.542902,41.89842999906],[-71.542597,41.89839199906],[-71.542261,41.89831499906],[-71.542002,41.89822399906],[-71.541574,41.89808599906],[-71.54133,41.89796399906],[-71.541117,41.89789599906],[-71.540873,41.89767399906],[-71.540689,41.89752899906],[-71.5404,41.89728499906],[-71.540155,41.89702599906],[-71.539911,41.89684999906],[-71.539576,41.89655299906],[-71.539306,41.89619899906],[-71.53866,41.89530199906],[-71.538492,41.89502699906],[-71.538218,41.89462999906],[-71.538004,41.89414999906],[-71.537867,41.89371499906],[-71.537775,41.89337099906],[-71.537638,41.89287499906],[-71.537622,41.89253199906],[-71.537455,41.89208999906],[-71.537287,41.89167799906],[-71.537134,41.89132699906],[-71.536936,41.89075499906],[-71.536737,41.89015899906],[-71.536722,41.88960999906],[-71.536539,41.88902299906],[-71.536463,41.88834399906],[-71.536173,41.88788599906],[-71.536005,41.88746599906],[-71.535776,41.88711499906],[-71.535608,41.88680999906],[-71.536342,41.88614199906],[-71.536373,41.88607699906],[-71.536064,41.88595999906],[-71.53566,41.88584099906],[-71.535255,41.88570799906],[-71.535004,41.88555499906],[-71.534523,41.88527699906],[-71.534348,41.88508999906],[-71.534157,41.88485699906],[-71.533966,41.88459799906],[-71.533745,41.88433099906],[-71.533577,41.88405599906],[-71.53344,41.88380799906],[-71.533112,41.88282799906],[-71.532959,41.88255699906],[-71.532829,41.88237799906],[-71.532661,41.88217899906],[-71.532539,41.88206899906],[-71.532455,41.88200799906],[-71.532372,41.88195399906],[-71.532227,41.88189699906],[-71.532036,41.88182799906],[-71.532227,41.88175999906],[-71.532372,41.88169499906],[-71.532516,41.88161799906],[-71.532608,41.88153799906],[-71.532669,41.88146599906],[-71.532738,41.88136699906],[-71.532806,41.88121399906],[-71.532822,41.88111099906],[-71.532814,41.88103899906],[-71.532799,41.88096199906],[-71.532738,41.88088599906],[-71.532631,41.88078299906],[-71.532303,41.88043599906],[-71.532234,41.88034399906],[-71.532173,41.88020299906],[-71.532143,41.88002799906],[-71.532135,41.87994399906],[-71.53215,41.87985999906],[-71.532181,41.87975699906],[-71.532242,41.87964599906],[-71.532318,41.87952399906],[-71.532417,41.87940199906],[-71.5326,41.87923799906],[-71.532646,41.87920799906],[-71.532784,41.87908899906],[-71.532967,41.87895999906],[-71.533226,41.87882999906],[-71.533409,41.87874599906],[-71.533722,41.87865799906],[-71.534172,41.87857799906],[-71.534622,41.87852499906],[-71.535027,41.87844499906],[-71.535347,41.87836799906],[-71.535388,41.87835199906],[-71.535606,41.87826899906],[-71.535812,41.87818499906],[-71.535965,41.87805199906],[-71.536102,41.87788799906],[-71.536568,41.87759399906],[-71.53672,41.87748299906],[-71.536804,41.87733099906],[-71.536888,41.87720499906],[-71.536522,41.87699899906],[-71.53614,41.87674299906],[-71.535469,41.87624699906],[-71.535067,41.87595799906],[-71.534607,41.87562599906],[-71.533707,41.87496199906],[-71.533514,41.87482399906],[-71.532669,41.87419899906],[-71.532448,41.87403099906],[-71.532188,41.87381399906],[-71.532013,41.87364999906],[-71.531988,41.87362399906],[-71.531891,41.87352399906],[-71.531715,41.87329499906],[-71.531639,41.87317999906],[-71.531509,41.87295899906],[-71.531387,41.87273799906],[-71.531311,41.87255899906],[-71.531189,41.87218899906],[-71.531052,41.87166599906],[-71.530899,41.87116199906],[-71.530792,41.87071599906],[-71.530724,41.87017799906],[-71.530785,41.86980799906],[-71.5308,41.86974399906],[-71.531021,41.86885799906],[-71.531219,41.86796999906],[-71.531281,41.86747399906],[-71.531303,41.86716099906],[-71.531334,41.86672999906],[-71.53138,41.86577999906],[-71.531441,41.86471599906],[-71.531464,41.86436099906],[-71.531464,41.86426899906],[-71.530589,41.86435999906],[-71.530013,41.86442199906],[-71.527467,41.86479299906],[-71.526926,41.86487099906],[-71.523343,41.86534599906],[-71.523089,41.86537599906],[-71.515302,41.86639099906],[-71.515114,41.86642199906],[-71.514588,41.86648799906],[-71.514619,41.86706099906],[-71.514626,41.86732499906],[-71.514664,41.86817599906],[-71.514659,41.86883099906],[-71.514658,41.86894299906],[-71.514679,41.86914099906],[-71.514687,41.86916399906],[-71.514687,41.86923199906],[-71.514702,41.86937699906],[-71.514702,41.86944599906],[-71.514725,41.86972399906],[-71.514763,41.87049899906],[-71.514784,41.87106799906],[-71.514793,41.87132299906],[-71.514877,41.87320299906],[-71.514893,41.87371799906],[-71.514899,41.87385999906],[-71.515022,41.87667599906],[-71.515022,41.87677399906],[-71.515045,41.87727699906],[-71.515129,41.87800199906],[-71.515213,41.87850999906],[-71.515373,41.87921099906],[-71.51548,41.87960799906],[-71.515536,41.87977199906],[-71.515671,41.88016499906],[-71.515907,41.88075999906],[-71.516174,41.88133199906],[-71.516411,41.88179399906],[-71.517075,41.88296899906],[-71.517342,41.88344999906],[-71.517876,41.88435699906],[-71.5187,41.88582599906],[-71.518936,41.88622999906],[-71.519363,41.88696299906],[-71.520136,41.88834399906],[-71.520187,41.88843499906],[-71.521126,41.89008299906],[-71.521584,41.89090699906],[-71.521721,41.89114399906],[-71.521843,41.89137999906],[-71.522057,41.89182699906],[-71.522316,41.89244499906],[-71.522392,41.89264299906],[-71.522469,41.89287599906],[-71.522537,41.89310799906],[-71.522659,41.89357399906],[-71.522751,41.89403899906],[-71.522771,41.89415399906],[-71.522789,41.89425699906],[-71.522797,41.89431399906],[-71.52285,41.89468799906],[-71.522896,41.89514499906],[-71.522926,41.89559599906],[-71.522919,41.89586999906],[-71.522911,41.89597699906],[-71.522903,41.89629699906],[-71.522835,41.89685399906],[-71.522797,41.89710199906],[-71.522705,41.89756399906],[-71.522499,41.89820499906],[-71.522423,41.89841099906],[-71.522357,41.89857399906],[-71.522339,41.89861699906],[-71.522247,41.89879999906],[-71.522049,41.89916599906],[-71.52195,41.89933799906],[-71.521736,41.89967699906],[-71.521629,41.89983399906],[-71.521515,41.89998999906],[-71.521255,41.90032199906],[-71.521194,41.90040599906],[-71.520981,41.90066099906],[-71.520599,41.90106299906],[-71.520401,41.90124899906],[-71.520035,41.90155399906],[-71.51976,41.90176399906],[-71.519615,41.90186699906],[-71.518059,41.90303399906],[-71.51693,41.90386999906],[-71.515892,41.90462899906],[-71.515419,41.90497999906],[-71.51339,41.90646699906],[-71.513145,41.90665099906],[-71.511421,41.90791299906],[-71.511368,41.90795099906],[-71.511258,41.90803099906],[-71.511231,41.90805199906],[-71.511251,41.90806899906],[-71.511777,41.90853999906],[-71.512299,41.90899999906],[-71.51265,41.90931699906],[-71.51284,41.90950399906],[-71.513756,41.91035499906],[-71.514648,41.91121699906],[-71.514839,41.91144599906],[-71.515076,41.91167099906],[-71.515816,41.91235399906],[-71.516098,41.91259799906],[-71.516266,41.91271999906],[-71.516777,41.91321099906],[-71.516905,41.91333299906],[-71.516937,41.91336399906],[-71.517024,41.91345399906],[-71.517349,41.91378799906],[-71.517532,41.91398999906],[-71.517853,41.91436399906],[-71.518158,41.91473799906],[-71.518471,41.91510799906],[-71.518738,41.91544299906],[-71.519226,41.91603899906],[-71.519615,41.91649999906],[-71.520027,41.91699999906],[-71.520195,41.91719399906],[-71.520233,41.91724399906],[-71.520339,41.91736499906],[-71.520447,41.91748799906],[-71.520927,41.91724399906],[-71.521271,41.91707999906],[-71.522263,41.91659499906],[-71.522949,41.91626699906],[-71.525169,41.91517599906],[-71.525757,41.91489399906],[-71.526081,41.91473399906],[-71.526375,41.91458899906],[-71.526894,41.91434099906],[-71.528363,41.91362099906],[-71.52853,41.91353999906],[-71.528717,41.91344799906],[-71.528801,41.91340799906],[-71.528867,41.91337599906],[-71.529549,41.91304799906],[-71.530876,41.91239199906],[-71.531105,41.91228899906],[-71.531525,41.91207499906],[-71.532425,41.91164799906],[-71.532646,41.91153299906],[-71.532921,41.91140399906],[-71.533424,41.91112899906],[-71.533722,41.91095699906],[-71.534058,41.91072799906],[-71.534203,41.91061799906],[-71.534615,41.91027799906],[-71.534766,41.91013199906],[-71.534981,41.90992699906],[-71.535713,41.90909599906],[-71.536057,41.90872199906],[-71.53611,41.90865699906],[-71.536351,41.90838399906],[-71.536504,41.90821099906],[-71.536864,41.90780399906],[-71.53701,41.90763899906],[-71.537231,41.90740599906],[-71.537529,41.90706599906],[-71.537918,41.90664699906],[-71.538406,41.90610099906],[-71.538033,41.90569699906],[-71.537735,41.90538399906],[-71.537476,41.90509799906],[-71.537186,41.90478899906],[-71.53685,41.90444199906],[-71.536636,41.90420899906],[-71.536308,41.90386599906],[-71.536095,41.90362499906],[-71.536343,41.90349499906],[-71.537289,41.90299999906],[-71.538391,41.90233199906],[-71.538841,41.90208799906],[-71.53936,41.90179399906],[-71.539803,41.90154999906],[-71.540138,41.90133999906],[-71.540359,41.90117599906],[-71.540588,41.90094399906],[-71.541512,41.89995199906],[-71.541817,41.89963199906],[-71.542107,41.89940999906],[-71.542412,41.89924199906],[-71.542805,41.89900999906],[-71.543129,41.89881899906],[-71.543289,41.89872799906]]]}}"}, +{"type": "blockgroup", "typeId": 126021, "areaId": 28955, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.522919,41.89586999906],[-71.52227,41.89534799906],[-71.522141,41.89523699906],[-71.521792,41.89495799906],[-71.521759,41.89493199906],[-71.5214,41.89468399906],[-71.521271,41.89459999906],[-71.520941,41.89440899906],[-71.52066,41.89424499906],[-71.520027,41.89389799906],[-71.519447,41.89358899906],[-71.518112,41.89286799906],[-71.517723,41.89265099906],[-71.517693,41.89263899906],[-71.517426,41.89245999906],[-71.516724,41.89190699906],[-71.515617,41.89102899906],[-71.515412,41.89086599906],[-71.515069,41.89059299906],[-71.514549,41.89017899906],[-71.514137,41.88985399906],[-71.512779,41.88876699906],[-71.512633,41.88865099906],[-71.511497,41.88774899906],[-71.510681,41.88792799906],[-71.510368,41.88801199906],[-71.510246,41.88803099906],[-71.510193,41.88803099906],[-71.510086,41.88801599906],[-71.509964,41.88798099906],[-71.50985,41.88792799906],[-71.509727,41.88785199906],[-71.50957,41.88788099906],[-71.509499,41.88789399906],[-71.508621,41.88811899906],[-71.508492,41.88821399906],[-71.508171,41.88848899906],[-71.508095,41.88855399906],[-71.507912,41.88875599906],[-71.507835,41.88881299906],[-71.507698,41.88888199906],[-71.507607,41.88891999906],[-71.5075,41.88895399906],[-71.507393,41.88897699906],[-71.507248,41.88899999906],[-71.507164,41.88900799906],[-71.505859,41.88929399906],[-71.505852,41.88926699906],[-71.505718,41.88932799906],[-71.5056,41.88936999906],[-71.505219,41.88949599906],[-71.505249,41.88968299906],[-71.505341,41.89017099906],[-71.505394,41.89054499906],[-71.505417,41.89066699906],[-71.505486,41.89115099906],[-71.505493,41.89135699906],[-71.50547,41.89154099906],[-71.505432,41.89178099906],[-71.505409,41.89206299906],[-71.505447,41.89251699906],[-71.505478,41.89264299906],[-71.505518,41.89271899906],[-71.505535,41.89274599906],[-71.505615,41.89285999906],[-71.506157,41.89341699906],[-71.506554,41.89384799906],[-71.50695,41.89426399906],[-71.507057,41.89442099906],[-71.507197,41.89461099906],[-71.507228,41.89465099906],[-71.507507,41.89498499906],[-71.507561,41.89504199906],[-71.507622,41.89511099906],[-71.507713,41.89525199906],[-71.507799,41.89540699906],[-71.507851,41.89549999906],[-71.507912,41.89562599906],[-71.50824,41.89628199906],[-71.508369,41.89652299906],[-71.508438,41.89667499906],[-71.508606,41.89701799906],[-71.508774,41.89731999906],[-71.508835,41.89748799906],[-71.508858,41.89756399906],[-71.50885,41.89762899906],[-71.50885,41.89768499906],[-71.508835,41.89773899906],[-71.508812,41.89779299906],[-71.508736,41.89791099906],[-71.508659,41.89798499906],[-71.508415,41.89821999906],[-71.508293,41.89834599906],[-71.508232,41.89844099906],[-71.507843,41.89836499906],[-71.5075,41.89831899906],[-71.507172,41.89824699906],[-71.50631,41.89807899906],[-71.506111,41.89802599906],[-71.506004,41.89821599906],[-71.505867,41.89853299906],[-71.50576,41.89881099906],[-71.505653,41.89911299906],[-71.505554,41.89936099906],[-71.50547,41.89961199906],[-71.505447,41.89969999906],[-71.505382,41.89986399906],[-71.505211,41.90025299906],[-71.505035,41.90061199906],[-71.504807,41.90113399906],[-71.504483,41.90180999906],[-71.504462,41.90193699906],[-71.506256,41.90352999906],[-71.506989,41.90417899906],[-71.507073,41.90424599906],[-71.507225,41.90436599906],[-71.507401,41.90458699906],[-71.507614,41.90479999906],[-71.507797,41.90497599906],[-71.508263,41.90540299906],[-71.508738,41.90581799906],[-71.508827,41.90589499906],[-71.508943,41.90599699906],[-71.509454,41.90644799906],[-71.509537,41.90652099906],[-71.509682,41.90665399906],[-71.510201,41.90711199906],[-71.510468,41.90735599906],[-71.510696,41.90756599906],[-71.511192,41.90801599906],[-71.511214,41.90803799906],[-71.511231,41.90805199906],[-71.511258,41.90803099906],[-71.511368,41.90795099906],[-71.511421,41.90791299906],[-71.513145,41.90665099906],[-71.51339,41.90646699906],[-71.515419,41.90497999906],[-71.515892,41.90462899906],[-71.51693,41.90386999906],[-71.518059,41.90303399906],[-71.519615,41.90186699906],[-71.51976,41.90176399906],[-71.520035,41.90155399906],[-71.520401,41.90124899906],[-71.520599,41.90106299906],[-71.520981,41.90066099906],[-71.521194,41.90040599906],[-71.521255,41.90032199906],[-71.521515,41.89998999906],[-71.521629,41.89983399906],[-71.521736,41.89967699906],[-71.52195,41.89933799906],[-71.522049,41.89916599906],[-71.522247,41.89879999906],[-71.522339,41.89861699906],[-71.522357,41.89857399906],[-71.522423,41.89841099906],[-71.522499,41.89820499906],[-71.522705,41.89756399906],[-71.522797,41.89710199906],[-71.522835,41.89685399906],[-71.522903,41.89629699906],[-71.522911,41.89597699906],[-71.522919,41.89586999906]]]}}"}, +{"type": "blockgroup", "typeId": 126022, "areaId": 28956, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.511497,41.88774899906],[-71.510498,41.88695099906],[-71.510391,41.88685999906],[-71.509109,41.88580299906],[-71.508659,41.88543299906],[-71.507668,41.88463599906],[-71.507629,41.88460199906],[-71.507574,41.88455999906],[-71.507427,41.88444799906],[-71.505264,41.88279699906],[-71.504555,41.88227799906],[-71.504211,41.88203399906],[-71.503889,41.88178699906],[-71.503571,41.88155399906],[-71.503212,41.88127499906],[-71.502823,41.88095499906],[-71.502647,41.88077499906],[-71.50262,41.88074499906],[-71.502547,41.88065999906],[-71.502518,41.88062699906],[-71.502396,41.88047799906],[-71.502266,41.88030999906],[-71.502136,41.88011899906],[-71.502037,41.87996299906],[-71.50177,41.87950899906],[-71.501663,41.87931799906],[-71.50161,41.87921099906],[-71.501511,41.87903999906],[-71.501244,41.87910799906],[-71.50061,41.87932199906],[-71.500496,41.87940199906],[-71.50032,41.87954699906],[-71.500259,41.87960799906],[-71.500237,41.87966499906],[-71.500221,41.87975699906],[-71.500153,41.87998999906],[-71.5,41.87998199906],[-71.49987,41.87998599906],[-71.499733,41.87999699906],[-71.499397,41.88004299906],[-71.499207,41.88008499906],[-71.499084,41.88011899906],[-71.499672,41.88102699906],[-71.499825,41.88124499906],[-71.499878,41.88130599906],[-71.499901,41.88136699906],[-71.499969,41.88145399906],[-71.500069,41.88154199906],[-71.500145,41.88162199906],[-71.500099,41.88178299906],[-71.500053,41.88190499906],[-71.500053,41.88193899906],[-71.500065,41.88199199906],[-71.50013,41.88226699906],[-71.500458,41.88335799906],[-71.500549,41.88363299906],[-71.50058,41.88368999906],[-71.500664,41.88378099906],[-71.501038,41.88413199906],[-71.501167,41.88426199906],[-71.50177,41.88482299906],[-71.501941,41.88497499906],[-71.502083,41.88510099906],[-71.502724,41.88569999906],[-71.502625,41.88576499906],[-71.502312,41.88594099906],[-71.501991,41.88610099906],[-71.501686,41.88623799906],[-71.501266,41.88640199906],[-71.500801,41.88659999906],[-71.500458,41.88675299906],[-71.500099,41.88692099906],[-71.499809,41.88708499906],[-71.499405,41.88726799906],[-71.499031,41.88740899906],[-71.498825,41.88747799906],[-71.49865,41.88751199906],[-71.498568,41.88751799906],[-71.498497,41.88752399906],[-71.498329,41.88753099906],[-71.498146,41.88752399906],[-71.497749,41.88748899906],[-71.49733,41.88744399906],[-71.49688,41.88737099906],[-71.496559,41.88730599906],[-71.496353,41.88728299906],[-71.496033,41.88727999906],[-71.49588,41.88727999906],[-71.495499,41.88727199906],[-71.495056,41.88725299906],[-71.49472,41.88725999906],[-71.494255,41.88730199906],[-71.493881,41.88734399906],[-71.49369,41.88737899906],[-71.492691,41.88764199906],[-71.492157,41.88776799906],[-71.491783,41.88786299906],[-71.491371,41.88798099906],[-71.491074,41.88807699906],[-71.490829,41.88816099906],[-71.490334,41.88830899906],[-71.489456,41.88854199906],[-71.48941,41.88856499906],[-71.489159,41.88864499906],[-71.489098,41.88866799906],[-71.488935,41.88875999906],[-71.488789,41.88883299906],[-71.488724,41.88887399906],[-71.488629,41.88890599906],[-71.488582,41.88891099906],[-71.488542,41.88890799906],[-71.488485,41.88889199906],[-71.488733,41.88904799906],[-71.489464,41.88951099906],[-71.490852,41.89040399906],[-71.491211,41.89067499906],[-71.491508,41.89090699906],[-71.491783,41.89114799906],[-71.492897,41.89207499906],[-71.493378,41.89248099906],[-71.493538,41.89261599906],[-71.493797,41.89284099906],[-71.494017,41.89302899906],[-71.494225,41.89320799906],[-71.494728,41.89360799906],[-71.495132,41.89390899906],[-71.495949,41.89449299906],[-71.496193,41.89467199906],[-71.496536,41.89491999906],[-71.496872,41.89520599906],[-71.497841,41.89605299906],[-71.498718,41.89683199906],[-71.500229,41.89818599906],[-71.500986,41.89884999906],[-71.501435,41.89925099906],[-71.504462,41.90193699906],[-71.504483,41.90180999906],[-71.504807,41.90113399906],[-71.505035,41.90061199906],[-71.505211,41.90025299906],[-71.505382,41.89986399906],[-71.505447,41.89969999906],[-71.50547,41.89961199906],[-71.505554,41.89936099906],[-71.505653,41.89911299906],[-71.50576,41.89881099906],[-71.505867,41.89853299906],[-71.506004,41.89821599906],[-71.506111,41.89802599906],[-71.50631,41.89807899906],[-71.507172,41.89824699906],[-71.5075,41.89831899906],[-71.507843,41.89836499906],[-71.508232,41.89844099906],[-71.508293,41.89834599906],[-71.508415,41.89821999906],[-71.508659,41.89798499906],[-71.508736,41.89791099906],[-71.508812,41.89779299906],[-71.508835,41.89773899906],[-71.50885,41.89768499906],[-71.50885,41.89762899906],[-71.508858,41.89756399906],[-71.508835,41.89748799906],[-71.508774,41.89731999906],[-71.508606,41.89701799906],[-71.508438,41.89667499906],[-71.508369,41.89652299906],[-71.50824,41.89628199906],[-71.507912,41.89562599906],[-71.507851,41.89549999906],[-71.507799,41.89540699906],[-71.507713,41.89525199906],[-71.507622,41.89511099906],[-71.507561,41.89504199906],[-71.507507,41.89498499906],[-71.507228,41.89465099906],[-71.507197,41.89461099906],[-71.507057,41.89442099906],[-71.50695,41.89426399906],[-71.506554,41.89384799906],[-71.506157,41.89341699906],[-71.505615,41.89285999906],[-71.505535,41.89274599906],[-71.505518,41.89271899906],[-71.505478,41.89264299906],[-71.505447,41.89251699906],[-71.505409,41.89206299906],[-71.505432,41.89178099906],[-71.50547,41.89154099906],[-71.505493,41.89135699906],[-71.505486,41.89115099906],[-71.505417,41.89066699906],[-71.505394,41.89054499906],[-71.505341,41.89017099906],[-71.505249,41.88968299906],[-71.505219,41.88949599906],[-71.5056,41.88936999906],[-71.505718,41.88932799906],[-71.505852,41.88926699906],[-71.505859,41.88929399906],[-71.507164,41.88900799906],[-71.507248,41.88899999906],[-71.507393,41.88897699906],[-71.5075,41.88895399906],[-71.507607,41.88891999906],[-71.507698,41.88888199906],[-71.507835,41.88881299906],[-71.507912,41.88875599906],[-71.508095,41.88855399906],[-71.508171,41.88848899906],[-71.508492,41.88821399906],[-71.508621,41.88811899906],[-71.509499,41.88789399906],[-71.50957,41.88788099906],[-71.509727,41.88785199906],[-71.50985,41.88792799906],[-71.509964,41.88798099906],[-71.510086,41.88801599906],[-71.510193,41.88803099906],[-71.510246,41.88803099906],[-71.510368,41.88801199906],[-71.510681,41.88792799906],[-71.511497,41.88774899906]]]}}"}, +{"type": "blockgroup", "typeId": 126023, "areaId": 28957, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.522926,41.89559599906],[-71.522896,41.89514499906],[-71.52285,41.89468799906],[-71.522797,41.89431399906],[-71.522789,41.89425699906],[-71.522771,41.89415399906],[-71.522751,41.89403899906],[-71.522659,41.89357399906],[-71.522537,41.89310799906],[-71.522469,41.89287599906],[-71.522392,41.89264299906],[-71.522316,41.89244499906],[-71.522057,41.89182699906],[-71.521843,41.89137999906],[-71.521721,41.89114399906],[-71.521584,41.89090699906],[-71.521126,41.89008299906],[-71.520187,41.88843499906],[-71.520136,41.88834399906],[-71.519363,41.88696299906],[-71.518936,41.88622999906],[-71.5187,41.88582599906],[-71.517876,41.88435699906],[-71.517342,41.88344999906],[-71.517075,41.88296899906],[-71.516411,41.88179399906],[-71.516174,41.88133199906],[-71.515907,41.88075999906],[-71.515671,41.88016499906],[-71.515536,41.87977199906],[-71.51548,41.87960799906],[-71.515373,41.87921099906],[-71.515213,41.87850999906],[-71.515129,41.87800199906],[-71.515045,41.87727699906],[-71.515022,41.87677399906],[-71.515022,41.87667599906],[-71.514899,41.87385999906],[-71.514893,41.87371799906],[-71.514877,41.87320299906],[-71.514793,41.87132299906],[-71.514784,41.87106799906],[-71.514763,41.87049899906],[-71.514725,41.86972399906],[-71.514702,41.86944599906],[-71.514702,41.86937699906],[-71.514687,41.86923199906],[-71.514687,41.86916399906],[-71.514679,41.86914099906],[-71.514658,41.86894299906],[-71.514659,41.86883099906],[-71.514664,41.86817599906],[-71.514626,41.86732499906],[-71.514619,41.86706099906],[-71.514588,41.86648799906],[-71.513787,41.86658999906],[-71.513699,41.86660199906],[-71.51258,41.86674799906],[-71.51235,41.86677899906],[-71.50814,41.86732799906],[-71.508042,41.86734199906],[-71.507914,41.86735699906],[-71.506466,41.86754499906],[-71.505093,41.86772399906],[-71.504227,41.86783599906],[-71.502895,41.86800999906],[-71.501135,41.86823899906],[-71.500569,41.86831399906],[-71.500498,41.86833999906],[-71.499741,41.86861399906],[-71.499664,41.86849199906],[-71.499657,41.86847299906],[-71.499636,41.86843899906],[-71.498466,41.86859499906],[-71.497509,41.86871599906],[-71.496871,41.86879199906],[-71.496834,41.86879699906],[-71.496534,41.86883599906],[-71.496339,41.86886499906],[-71.495858,41.86893699906],[-71.495545,41.86898299906],[-71.495061,41.86907999906],[-71.494854,41.86911199906],[-71.494783,41.86912199906],[-71.492477,41.86946499906],[-71.492607,41.86964799906],[-71.492684,41.86975299906],[-71.492744,41.86983499906],[-71.493073,41.87028099906],[-71.493309,41.87061299906],[-71.49353,41.87091099906],[-71.493942,41.87162399906],[-71.494093,41.87189799906],[-71.49411,41.87192899906],[-71.494293,41.87225299906],[-71.49469,41.87277999906],[-71.494804,41.87292499906],[-71.494919,41.87306199906],[-71.495148,41.87330199906],[-71.495361,41.87350799906],[-71.495598,41.87372199906],[-71.495934,41.87400099906],[-71.496819,41.87468699906],[-71.497086,41.87488899906],[-71.497391,41.87512999906],[-71.498161,41.87572099906],[-71.498364,41.87588699906],[-71.498558,41.87604499906],[-71.498795,41.87627399906],[-71.498917,41.87638099906],[-71.499222,41.87667499906],[-71.499619,41.87704799906],[-71.500053,41.87746399906],[-71.500465,41.87784999906],[-71.500786,41.87815899906],[-71.501152,41.87849399906],[-71.501282,41.87864299906],[-71.501465,41.87892499906],[-71.501511,41.87903999906],[-71.50161,41.87921099906],[-71.501663,41.87931799906],[-71.50177,41.87950899906],[-71.502037,41.87996299906],[-71.502136,41.88011899906],[-71.502266,41.88030999906],[-71.502396,41.88047799906],[-71.502518,41.88062699906],[-71.502547,41.88065999906],[-71.50262,41.88074499906],[-71.502647,41.88077499906],[-71.502823,41.88095499906],[-71.503212,41.88127499906],[-71.503571,41.88155399906],[-71.503889,41.88178699906],[-71.504211,41.88203399906],[-71.504555,41.88227799906],[-71.505264,41.88279699906],[-71.507427,41.88444799906],[-71.507574,41.88455999906],[-71.507629,41.88460199906],[-71.507668,41.88463599906],[-71.508659,41.88543299906],[-71.509109,41.88580299906],[-71.510391,41.88685999906],[-71.510498,41.88695099906],[-71.511497,41.88774899906],[-71.512633,41.88865099906],[-71.512779,41.88876699906],[-71.514137,41.88985399906],[-71.514549,41.89017899906],[-71.515069,41.89059299906],[-71.515412,41.89086599906],[-71.515617,41.89102899906],[-71.516724,41.89190699906],[-71.517426,41.89245999906],[-71.517693,41.89263899906],[-71.517723,41.89265099906],[-71.518112,41.89286799906],[-71.519447,41.89358899906],[-71.520027,41.89389799906],[-71.52066,41.89424499906],[-71.520941,41.89440899906],[-71.521271,41.89459999906],[-71.5214,41.89468399906],[-71.521759,41.89493199906],[-71.521792,41.89495799906],[-71.522141,41.89523699906],[-71.52227,41.89534799906],[-71.522919,41.89586999906],[-71.522926,41.89559599906]]]}}"}, +{"type": "blockgroup", "typeId": 126024, "areaId": 28958, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.511231,41.90805199906],[-71.511214,41.90803799906],[-71.511192,41.90801599906],[-71.510696,41.90756599906],[-71.510468,41.90735599906],[-71.510201,41.90711199906],[-71.509682,41.90665399906],[-71.509537,41.90652099906],[-71.509454,41.90644799906],[-71.508943,41.90599699906],[-71.508827,41.90589499906],[-71.508738,41.90581799906],[-71.508263,41.90540299906],[-71.507797,41.90497599906],[-71.507614,41.90479999906],[-71.507401,41.90458699906],[-71.507225,41.90436599906],[-71.507073,41.90424599906],[-71.506989,41.90417899906],[-71.506256,41.90352999906],[-71.504462,41.90193699906],[-71.501435,41.89925099906],[-71.500986,41.89884999906],[-71.500229,41.89818599906],[-71.498718,41.89683199906],[-71.497841,41.89605299906],[-71.496872,41.89520599906],[-71.496536,41.89491999906],[-71.496193,41.89467199906],[-71.495949,41.89449299906],[-71.495132,41.89390899906],[-71.494728,41.89360799906],[-71.494225,41.89320799906],[-71.494017,41.89302899906],[-71.493797,41.89284099906],[-71.493538,41.89261599906],[-71.493378,41.89248099906],[-71.492897,41.89207499906],[-71.491783,41.89114799906],[-71.491508,41.89090699906],[-71.491211,41.89067499906],[-71.490852,41.89040399906],[-71.489464,41.88951099906],[-71.488733,41.88904799906],[-71.488485,41.88889199906],[-71.488542,41.88890799906],[-71.488582,41.88891099906],[-71.488629,41.88890599906],[-71.488724,41.88887399906],[-71.488789,41.88883299906],[-71.488935,41.88875999906],[-71.489098,41.88866799906],[-71.489159,41.88864499906],[-71.48941,41.88856499906],[-71.489456,41.88854199906],[-71.490334,41.88830899906],[-71.490829,41.88816099906],[-71.491074,41.88807699906],[-71.491371,41.88798099906],[-71.491783,41.88786299906],[-71.492157,41.88776799906],[-71.492691,41.88764199906],[-71.49369,41.88737899906],[-71.493881,41.88734399906],[-71.494255,41.88730199906],[-71.49472,41.88725999906],[-71.495056,41.88725299906],[-71.495499,41.88727199906],[-71.49588,41.88727999906],[-71.496033,41.88727999906],[-71.496353,41.88728299906],[-71.496559,41.88730599906],[-71.49688,41.88737099906],[-71.49733,41.88744399906],[-71.497749,41.88748899906],[-71.498146,41.88752399906],[-71.498329,41.88753099906],[-71.498497,41.88752399906],[-71.498568,41.88751799906],[-71.49865,41.88751199906],[-71.498825,41.88747799906],[-71.499031,41.88740899906],[-71.499405,41.88726799906],[-71.499809,41.88708499906],[-71.500099,41.88692099906],[-71.500458,41.88675299906],[-71.500801,41.88659999906],[-71.501266,41.88640199906],[-71.501686,41.88623799906],[-71.501991,41.88610099906],[-71.502312,41.88594099906],[-71.502625,41.88576499906],[-71.502724,41.88569999906],[-71.502083,41.88510099906],[-71.501941,41.88497499906],[-71.50177,41.88482299906],[-71.501167,41.88426199906],[-71.501038,41.88413199906],[-71.500664,41.88378099906],[-71.50058,41.88368999906],[-71.500549,41.88363299906],[-71.500458,41.88335799906],[-71.50013,41.88226699906],[-71.500065,41.88199199906],[-71.500053,41.88193899906],[-71.500053,41.88190499906],[-71.500099,41.88178299906],[-71.500145,41.88162199906],[-71.500069,41.88154199906],[-71.499969,41.88145399906],[-71.499901,41.88136699906],[-71.499878,41.88130599906],[-71.499825,41.88124499906],[-71.499672,41.88102699906],[-71.499084,41.88011899906],[-71.499207,41.88008499906],[-71.499397,41.88004299906],[-71.499733,41.87999699906],[-71.49987,41.87998599906],[-71.5,41.87998199906],[-71.500153,41.87998999906],[-71.500221,41.87975699906],[-71.500237,41.87966499906],[-71.500259,41.87960799906],[-71.50032,41.87954699906],[-71.500496,41.87940199906],[-71.50061,41.87932199906],[-71.501244,41.87910799906],[-71.501511,41.87903999906],[-71.501465,41.87892499906],[-71.501282,41.87864299906],[-71.501152,41.87849399906],[-71.500786,41.87815899906],[-71.500465,41.87784999906],[-71.500053,41.87746399906],[-71.499619,41.87704799906],[-71.499222,41.87667499906],[-71.498917,41.87638099906],[-71.498795,41.87627399906],[-71.498558,41.87604499906],[-71.498364,41.87588699906],[-71.498161,41.87572099906],[-71.497391,41.87512999906],[-71.497086,41.87488899906],[-71.496819,41.87468699906],[-71.495934,41.87400099906],[-71.495598,41.87372199906],[-71.495361,41.87350799906],[-71.495148,41.87330199906],[-71.494919,41.87306199906],[-71.494804,41.87292499906],[-71.49469,41.87277999906],[-71.494293,41.87225299906],[-71.49411,41.87192899906],[-71.494093,41.87189799906],[-71.493942,41.87162399906],[-71.49353,41.87091099906],[-71.493309,41.87061299906],[-71.493073,41.87028099906],[-71.492744,41.86983499906],[-71.492684,41.86975299906],[-71.492607,41.86964799906],[-71.492477,41.86946499906],[-71.49128,41.86953399906],[-71.490489,41.86962899906],[-71.489866,41.86970599906],[-71.488709,41.86985699906],[-71.487944,41.86995699906],[-71.486682,41.87011899906],[-71.484944,41.87034799906],[-71.484053,41.87046299906],[-71.482353,41.87068299906],[-71.475526,41.87156999906],[-71.474826,41.87172699906],[-71.474456,41.87177499906],[-71.473271,41.87186599906],[-71.470359,41.87224299906],[-71.46922,41.87238999906],[-71.468913,41.87237799906],[-71.468845,41.87238999906],[-71.468359,41.87247799906],[-71.46769,41.87259899906],[-71.467504,41.87263399906],[-71.4669,41.87273799906],[-71.466759,41.87276699906],[-71.466811,41.87291499906],[-71.468033,41.87641099906],[-71.469253,41.87996699906],[-71.469546,41.88085599906],[-71.470292,41.88301799906],[-71.470485,41.88359599906],[-71.470713,41.88426999906],[-71.471554,41.88673399906],[-71.471764,41.88735199906],[-71.47205,41.88819699906],[-71.472531,41.88962299906],[-71.472802,41.89042299906],[-71.472921,41.89073599906],[-71.473389,41.89197499906],[-71.474161,41.89401099906],[-71.474795,41.89624699906],[-71.474801,41.89628799906],[-71.474815,41.89630499906],[-71.474876,41.89640399906],[-71.474998,41.89668299906],[-71.475021,41.89675899906],[-71.475052,41.89683199906],[-71.47509,41.89695699906],[-71.475151,41.89721299906],[-71.475288,41.89757899906],[-71.475334,41.89771999906],[-71.475372,41.89786499906],[-71.475464,41.89814399906],[-71.475517,41.89827699906],[-71.475548,41.89841499906],[-71.475555,41.89847599906],[-71.475555,41.89853699906],[-71.475586,41.89872399906],[-71.4757,41.89910099906],[-71.475792,41.89935299906],[-71.47583,41.89949799906],[-71.475876,41.89964299906],[-71.475914,41.89978399906],[-71.476166,41.90051299906],[-71.476242,41.90071899906],[-71.476273,41.90082199906],[-71.476372,41.90097799906],[-71.47641,41.90119599906],[-71.476486,41.90135999906],[-71.476637,41.90167199906],[-71.4768,41.90214299906],[-71.476903,41.90244799906],[-71.477064,41.90292399906],[-71.477527,41.90427799906],[-71.477563,41.90438899906],[-71.480655,41.91347599906],[-71.481095,41.91477399906],[-71.48138,41.91561699906],[-71.481486,41.91593099906],[-71.481817,41.91691099906],[-71.482147,41.91768899906],[-71.482705,41.91900199906],[-71.482868,41.91979999906],[-71.482963,41.92007399906],[-71.483204,41.92105799906],[-71.484164,41.92397899906],[-71.4845,41.92498899906],[-71.485182,41.92709199906],[-71.485605,41.92839799906],[-71.486304,41.93029799906],[-71.487152,41.93274799906],[-71.487204,41.93289799906],[-71.487462,41.93401899906],[-71.488987,41.93793699906],[-71.489167,41.93846899906],[-71.489281,41.93839999906],[-71.490837,41.93746199906],[-71.49273,41.93630899906],[-71.492928,41.93618799906],[-71.494858,41.93503599906],[-71.496399,41.93409299906],[-71.49675,41.93388399906],[-71.496892,41.93379699906],[-71.497547,41.93339399906],[-71.498711,41.93267799906],[-71.499657,41.93207899906],[-71.500374,41.93154899906],[-71.500946,41.93108699906],[-71.501404,41.93067599906],[-71.501541,41.93054199906],[-71.501869,41.93022199906],[-71.502266,41.92980999906],[-71.502663,41.92935899906],[-71.503075,41.92885599906],[-71.503372,41.92844799906],[-71.5037,41.92795899906],[-71.504005,41.92743299906],[-71.504242,41.92700999906],[-71.504494,41.92647199906],[-71.504707,41.92596799906],[-71.50489,41.92547999906],[-71.504951,41.92527399906],[-71.504983,41.92517199906],[-71.505043,41.92497999906],[-71.505211,41.92430499906],[-71.505394,41.92348099906],[-71.50592,41.92094799906],[-71.50605,41.92037999906],[-71.506139,41.91989899906],[-71.506157,41.91980399906],[-71.50631,41.91885399906],[-71.506569,41.91706799906],[-71.506597,41.91689299906],[-71.506683,41.91636299906],[-71.506859,41.91522199906],[-71.506989,41.91450899906],[-71.507141,41.91394399906],[-71.507317,41.91336099906],[-71.5075,41.91290299906],[-71.507866,41.91215899906],[-71.508095,41.91174699906],[-71.508324,41.91135799906],[-71.508598,41.91093099906],[-71.508827,41.91060299906],[-71.509071,41.91027499906],[-71.509331,41.90994999906],[-71.509659,41.90957999906],[-71.510292,41.90891999906],[-71.510651,41.90855799906],[-71.511162,41.90809599906],[-71.511231,41.90805199906]]]}}"}, +{"type": "blockgroup", "typeId": 127011, "areaId": 28959, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.559212,41.90058899906],[-71.559006,41.90014999906],[-71.558662,41.89936399906],[-71.558548,41.89912799906],[-71.558372,41.89880399906],[-71.558304,41.89873499906],[-71.558212,41.89862799906],[-71.557938,41.89845999906],[-71.55761,41.89821199906],[-71.557426,41.89810899906],[-71.556496,41.89761699906],[-71.55619,41.89743399906],[-71.555977,41.89725899906],[-71.55587,41.89712099906],[-71.555824,41.89689999906],[-71.555794,41.89665999906],[-71.555763,41.89649199906],[-71.555687,41.89637399906],[-71.555565,41.89625499906],[-71.55529,41.89610699906],[-71.554993,41.89596199906],[-71.554741,41.89580499906],[-71.554153,41.89540899906],[-71.553467,41.89492399906],[-71.553116,41.89469499906],[-71.552925,41.89454299906],[-71.552719,41.89436299906],[-71.55265,41.89426399906],[-71.552589,41.89410399906],[-71.552498,41.89393199906],[-71.552376,41.89375299906],[-71.552238,41.89358899906],[-71.552048,41.89338699906],[-71.551949,41.89325699906],[-71.551918,41.89316599906],[-71.551964,41.89301699906],[-71.552094,41.89279899906],[-71.552193,41.89258599906],[-71.552299,41.89237199906],[-71.552391,41.89215899906],[-71.552429,41.89204799906],[-71.552422,41.89192199906],[-71.552208,41.89152899906],[-71.552002,41.89121199906],[-71.551765,41.89083499906],[-71.551628,41.89067799906],[-71.551437,41.89054099906],[-71.551117,41.89032399906],[-71.550827,41.89016299906],[-71.550552,41.89004099906],[-71.55027,41.88999899906],[-71.549957,41.88999199906],[-71.549171,41.89001099906],[-71.548678,41.89001899906],[-71.548286,41.89002599906],[-71.547752,41.89002799906],[-71.547394,41.89002999906],[-71.547301,41.89001999906],[-71.547089,41.88999899906],[-71.546082,41.88985099906],[-71.545334,41.88972099906],[-71.544716,41.88963299906],[-71.544174,41.88954499906],[-71.542519,41.88922899906],[-71.542038,41.88912599906],[-71.541351,41.88895799906],[-71.541557,41.88860699906],[-71.541588,41.88856099906],[-71.541786,41.88811899906],[-71.541885,41.88780599906],[-71.542007,41.88743999906],[-71.542175,41.88685999906],[-71.542191,41.88665399906],[-71.542175,41.88644799906],[-71.542122,41.88627199906],[-71.542038,41.88607399906],[-71.541916,41.88588299906],[-71.541512,41.88528799906],[-71.541367,41.88509799906],[-71.54127,41.88496099906],[-71.541168,41.88481899906],[-71.541061,41.88462799906],[-71.540939,41.88437999906],[-71.540886,41.88418599906],[-71.540855,41.88394199906],[-71.540833,41.88366299906],[-71.540817,41.88337699906],[-71.540764,41.88304899906],[-71.540604,41.88239699906],[-71.540497,41.88201499906],[-71.540489,41.88185499906],[-71.540482,41.88180199906],[-71.540489,41.88148499906],[-71.540253,41.88137099906],[-71.540009,41.88107699906],[-71.539803,41.88078699906],[-71.539688,41.88058499906],[-71.539612,41.88035599906],[-71.539551,41.88004699906],[-71.539421,41.87920399906],[-71.539337,41.87882199906],[-71.539238,41.87855899906],[-71.539108,41.87834499906],[-71.538925,41.87812799906],[-71.538734,41.87794899906],[-71.538467,41.87776899906],[-71.538216,41.87764399906],[-71.537888,41.87753299906],[-71.537521,41.87742999906],[-71.537201,41.87732699906],[-71.537083,41.87728099906],[-71.536888,41.87720499906],[-71.536804,41.87733099906],[-71.53672,41.87748299906],[-71.536568,41.87759399906],[-71.536102,41.87788799906],[-71.535965,41.87805199906],[-71.535812,41.87818499906],[-71.535606,41.87826899906],[-71.535388,41.87835199906],[-71.535347,41.87836799906],[-71.535027,41.87844499906],[-71.534622,41.87852499906],[-71.534172,41.87857799906],[-71.533722,41.87865799906],[-71.533409,41.87874599906],[-71.533226,41.87882999906],[-71.532967,41.87895999906],[-71.532784,41.87908899906],[-71.532646,41.87920799906],[-71.5326,41.87923799906],[-71.532417,41.87940199906],[-71.532318,41.87952399906],[-71.532242,41.87964599906],[-71.532181,41.87975699906],[-71.53215,41.87985999906],[-71.532135,41.87994399906],[-71.532143,41.88002799906],[-71.532173,41.88020299906],[-71.532234,41.88034399906],[-71.532303,41.88043599906],[-71.532631,41.88078299906],[-71.532738,41.88088599906],[-71.532799,41.88096199906],[-71.532814,41.88103899906],[-71.532822,41.88111099906],[-71.532806,41.88121399906],[-71.532738,41.88136699906],[-71.532669,41.88146599906],[-71.532608,41.88153799906],[-71.532516,41.88161799906],[-71.532372,41.88169499906],[-71.532227,41.88175999906],[-71.532036,41.88182799906],[-71.532227,41.88189699906],[-71.532372,41.88195399906],[-71.532455,41.88200799906],[-71.532539,41.88206899906],[-71.532661,41.88217899906],[-71.532829,41.88237799906],[-71.532959,41.88255699906],[-71.533112,41.88282799906],[-71.53344,41.88380799906],[-71.533577,41.88405599906],[-71.533745,41.88433099906],[-71.533966,41.88459799906],[-71.534157,41.88485699906],[-71.534348,41.88508999906],[-71.534523,41.88527699906],[-71.535004,41.88555499906],[-71.535255,41.88570799906],[-71.53566,41.88584099906],[-71.536064,41.88595999906],[-71.536373,41.88607699906],[-71.536342,41.88614199906],[-71.535608,41.88680999906],[-71.535776,41.88711499906],[-71.536005,41.88746599906],[-71.536173,41.88788599906],[-71.536463,41.88834399906],[-71.536539,41.88902299906],[-71.536722,41.88960999906],[-71.536737,41.89015899906],[-71.536936,41.89075499906],[-71.537134,41.89132699906],[-71.537287,41.89167799906],[-71.537455,41.89208999906],[-71.537622,41.89253199906],[-71.537638,41.89287499906],[-71.537775,41.89337099906],[-71.537867,41.89371499906],[-71.538004,41.89414999906],[-71.538218,41.89462999906],[-71.538492,41.89502699906],[-71.53866,41.89530199906],[-71.539306,41.89619899906],[-71.539576,41.89655299906],[-71.539911,41.89684999906],[-71.540155,41.89702599906],[-71.5404,41.89728499906],[-71.540689,41.89752899906],[-71.540873,41.89767399906],[-71.541117,41.89789599906],[-71.54133,41.89796399906],[-71.541574,41.89808599906],[-71.542002,41.89822399906],[-71.542261,41.89831499906],[-71.542597,41.89839199906],[-71.542902,41.89842999906],[-71.543131,41.89851399906],[-71.543245,41.89865699906],[-71.543289,41.89872799906],[-71.543406,41.89916199906],[-71.543314,41.89945199906],[-71.543177,41.90092499906],[-71.543451,41.90226699906],[-71.543802,41.90331999906],[-71.544123,41.90457799906],[-71.544519,41.90539399906],[-71.545221,41.90650799906],[-71.545406,41.90689799906],[-71.545893,41.90771399906],[-71.546778,41.90894999906],[-71.547693,41.91022399906],[-71.548655,41.91139099906],[-71.549022,41.91176299906],[-71.549372,41.91211599906],[-71.55015,41.91283299906],[-71.550867,41.91326799906],[-71.551539,41.91347399906],[-71.551875,41.91361099906],[-71.552104,41.91401599906],[-71.552407,41.91479799906],[-71.554586,41.91425999906],[-71.554697,41.91423299906],[-71.554626,41.91405499906],[-71.554626,41.91378799906],[-71.55455,41.91354399906],[-71.554398,41.91329999906],[-71.554169,41.91305899906],[-71.553841,41.91277699906],[-71.553596,41.91252499906],[-71.553337,41.91223899906],[-71.553032,41.91186499906],[-71.55275,41.91155199906],[-71.552582,41.91136899906],[-71.55233,41.91118199906],[-71.55217,41.91107599906],[-71.551888,41.91089599906],[-71.551628,41.91068299906],[-71.551308,41.91033599906],[-71.551079,41.91001099906],[-71.550919,41.90973699906],[-71.550789,41.90949199906],[-71.550751,41.90928299906],[-71.550774,41.90908099906],[-71.550774,41.90892799906],[-71.550644,41.90859999906],[-71.550476,41.90825299906],[-71.550308,41.90792499906],[-71.550125,41.90764999906],[-71.549957,41.90746299906],[-71.549675,41.90721899906],[-71.54908,41.90682199906],[-71.548927,41.90666599906],[-71.548805,41.90648699906],[-71.548676,41.90625399906],[-71.548523,41.90610499906],[-71.548309,41.90593299906],[-71.548157,41.90577699906],[-71.54805,41.90556699906],[-71.547974,41.90529299906],[-71.54789,41.90493399906],[-71.547829,41.90462899906],[-71.547791,41.90449499906],[-71.547707,41.90428199906],[-71.547554,41.90410599906],[-71.547302,41.90386199906],[-71.546936,41.90349199906],[-71.546722,41.90323299906],[-71.546585,41.90278999906],[-71.546553,41.90262699906],[-71.546509,41.90239699906],[-71.546425,41.90204599906],[-71.546402,41.90181399906],[-71.546455,41.90159999906],[-71.5466,41.90137499906],[-71.546776,41.90113399906],[-71.546951,41.90092099906],[-71.547157,41.90064999906],[-71.547325,41.90037899906],[-71.547401,41.90013499906],[-71.547379,41.89986399906],[-71.547211,41.89964699906],[-71.547646,41.89960899906],[-71.547997,41.89958599906],[-71.54834,41.89958599906],[-71.548767,41.89962799906],[-71.548866,41.89962799906],[-71.549294,41.89963199906],[-71.54969,41.89966199906],[-71.550056,41.89969599906],[-71.550301,41.89977299906],[-71.550568,41.89999399906],[-71.550941,41.90025699906],[-71.551254,41.90059299906],[-71.55162,41.90088999906],[-71.552132,41.90132899906],[-71.552353,41.90154599906],[-71.552582,41.90174899906],[-71.553162,41.90224799906],[-71.553879,41.90279399906],[-71.554459,41.90324799906],[-71.554619,41.90336599906],[-71.554741,41.90343499906],[-71.554878,41.90344999906],[-71.555023,41.90343899906],[-71.555199,41.90335499906],[-71.555428,41.90315999906],[-71.555779,41.90287799906],[-71.556129,41.90261799906],[-71.556519,41.90230899906],[-71.556694,41.90216099906],[-71.557014,41.90192399906],[-71.557304,41.90172999906],[-71.557602,41.90155399906],[-71.557922,41.90137099906],[-71.55825,41.90116899906],[-71.558739,41.90088999906],[-71.55899,41.90073799906],[-71.559212,41.90058899906]]]}}"}, +{"type": "blockgroup", "typeId": 127012, "areaId": 28960, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.590312,41.93366499906],[-71.589067,41.92797999906],[-71.588347,41.92460699906],[-71.588303,41.92438199906],[-71.587812,41.92205299906],[-71.587696,41.92148999906],[-71.587561,41.92083899906],[-71.58726,41.91937899906],[-71.587105,41.91862899906],[-71.586729,41.91677299906],[-71.586327,41.91481099906],[-71.586244,41.91440499906],[-71.585821,41.91232599906],[-71.58519,41.90918899906],[-71.584837,41.90747499906],[-71.584366,41.90523699906],[-71.584229,41.90463399906],[-71.584027,41.90375299906],[-71.583905,41.90321999906],[-71.583633,41.90203199906],[-71.5832,41.89995999906],[-71.583101,41.89948199906],[-71.582895,41.89874499906],[-71.582724,41.89812799906],[-71.582593,41.89766399906],[-71.582479,41.89718599906],[-71.581891,41.89466499906],[-71.581842,41.89437199906],[-71.581731,41.89370199906],[-71.58169,41.89345999906],[-71.581087,41.88983699906],[-71.580355,41.88684499906],[-71.580299,41.88661799906],[-71.580286,41.88655399906],[-71.579908,41.88471999906],[-71.57975,41.88475399906],[-71.579498,41.88482999906],[-71.579193,41.88491399906],[-71.578857,41.88501699906],[-71.57856,41.88507099906],[-71.578419,41.88507699906],[-71.578293,41.88508199906],[-71.578087,41.88504799906],[-71.577827,41.88495999906],[-71.577606,41.88485699906],[-71.577255,41.88464699906],[-71.577057,41.88446799906],[-71.576912,41.88428099906],[-71.57679,41.88410599906],[-71.57663,41.88396799906],[-71.576447,41.88391099906],[-71.576218,41.88390699906],[-71.57592,41.88392599906],[-71.5756,41.88396799906],[-71.57531,41.88403699906],[-71.575027,41.88414399906],[-71.574654,41.88426599906],[-71.574356,41.88435699906],[-71.57415,41.88441499906],[-71.57373,41.88450199906],[-71.572792,41.88466999906],[-71.572335,41.88476699906],[-71.571831,41.88486899906],[-71.571037,41.88501699906],[-71.570763,41.88505199906],[-71.570549,41.88505899906],[-71.570717,41.88534499906],[-71.571014,41.88574599906],[-71.571259,41.88611199906],[-71.571915,41.88703499906],[-71.571793,41.88715699906],[-71.571777,41.88731799906],[-71.571777,41.88793199906],[-71.571774,41.88803199906],[-71.571762,41.88854199906],[-71.571739,41.88876699906],[-71.571701,41.88883599906],[-71.571609,41.88891999906],[-71.571297,41.88911099906],[-71.571167,41.88922099906],[-71.570541,41.88996499906],[-71.570381,41.89017499906],[-71.570221,41.89034699906],[-71.570091,41.89051099906],[-71.569916,41.89069399906],[-71.569786,41.89079999906],[-71.569642,41.89088799906],[-71.569611,41.89090699906],[-71.569321,41.89102899906],[-71.569153,41.89111299906],[-71.569038,41.89120499906],[-71.568909,41.89138799906],[-71.568771,41.89160499906],[-71.568703,41.89175799906],[-71.56868,41.89194899906],[-71.568665,41.89228399906],[-71.568629,41.89282899906],[-71.568626,41.89288699906],[-71.568634,41.89306999906],[-71.568832,41.89374499906],[-71.568878,41.89395499906],[-71.568901,41.89419899906],[-71.568893,41.89438999906],[-71.568863,41.89453899906],[-71.568771,41.89470299906],[-71.568657,41.89488199906],[-71.568481,41.89509599906],[-71.568344,41.89524699906],[-71.568298,41.89529799906],[-71.568092,41.89553799906],[-71.567955,41.89571399906],[-71.567902,41.89577499906],[-71.567627,41.89612999906],[-71.567421,41.89631699906],[-71.566917,41.89669399906],[-71.566734,41.89693499906],[-71.566582,41.89714399906],[-71.566483,41.89733099906],[-71.566406,41.89755999906],[-71.566422,41.89780799906],[-71.566421,41.89784199906],[-71.566422,41.89786899906],[-71.566666,41.89874599906],[-71.566681,41.89890699906],[-71.566635,41.89903999906],[-71.566559,41.89923099906],[-71.566536,41.89927699906],[-71.566422,41.89950199906],[-71.566315,41.89975699906],[-71.566269,41.89996299906],[-71.566231,41.90019199906],[-71.566147,41.90030699906],[-71.565948,41.90041699906],[-71.565643,41.90050899906],[-71.56543,41.90058099906],[-71.565239,41.90066499906],[-71.564987,41.90072999906],[-71.564659,41.90078699906],[-71.564285,41.90083299906],[-71.564064,41.90083299906],[-71.563759,41.90067299906],[-71.563484,41.90042099906],[-71.563324,41.90022299906],[-71.563179,41.90011599906],[-71.562828,41.89990999906],[-71.562553,41.89974199906],[-71.562309,41.89958199906],[-71.562057,41.89948699906],[-71.561813,41.89948699906],[-71.561684,41.89955099906],[-71.561607,41.89969299906],[-71.561493,41.89986399906],[-71.561348,41.89999799906],[-71.56115,41.90005099906],[-71.56044,41.90005499906],[-71.560196,41.90007399906],[-71.560059,41.90013099906],[-71.559212,41.90058899906],[-71.55899,41.90073799906],[-71.558739,41.90088999906],[-71.55825,41.90116899906],[-71.557922,41.90137099906],[-71.557602,41.90155399906],[-71.557304,41.90172999906],[-71.557014,41.90192399906],[-71.556694,41.90216099906],[-71.556519,41.90230899906],[-71.556129,41.90261799906],[-71.555779,41.90287799906],[-71.555428,41.90315999906],[-71.555199,41.90335499906],[-71.555023,41.90343899906],[-71.554878,41.90344999906],[-71.554741,41.90343499906],[-71.554619,41.90336599906],[-71.554459,41.90324799906],[-71.553879,41.90279399906],[-71.553162,41.90224799906],[-71.552582,41.90174899906],[-71.552353,41.90154599906],[-71.552132,41.90132899906],[-71.55162,41.90088999906],[-71.551254,41.90059299906],[-71.550941,41.90025699906],[-71.550568,41.89999399906],[-71.550301,41.89977299906],[-71.550056,41.89969599906],[-71.54969,41.89966199906],[-71.549294,41.89963199906],[-71.548866,41.89962799906],[-71.548767,41.89962799906],[-71.54834,41.89958599906],[-71.547997,41.89958599906],[-71.547646,41.89960899906],[-71.547211,41.89964699906],[-71.547379,41.89986399906],[-71.547401,41.90013499906],[-71.547325,41.90037899906],[-71.547157,41.90064999906],[-71.546951,41.90092099906],[-71.546776,41.90113399906],[-71.5466,41.90137499906],[-71.546455,41.90159999906],[-71.546402,41.90181399906],[-71.546425,41.90204599906],[-71.546509,41.90239699906],[-71.546553,41.90262699906],[-71.546585,41.90278999906],[-71.546722,41.90323299906],[-71.546936,41.90349199906],[-71.547302,41.90386199906],[-71.547554,41.90410599906],[-71.547707,41.90428199906],[-71.547791,41.90449499906],[-71.547829,41.90462899906],[-71.54789,41.90493399906],[-71.547974,41.90529299906],[-71.54805,41.90556699906],[-71.548157,41.90577699906],[-71.548309,41.90593299906],[-71.548523,41.90610499906],[-71.548676,41.90625399906],[-71.548805,41.90648699906],[-71.548927,41.90666599906],[-71.54908,41.90682199906],[-71.549675,41.90721899906],[-71.549957,41.90746299906],[-71.550125,41.90764999906],[-71.550308,41.90792499906],[-71.550476,41.90825299906],[-71.550644,41.90859999906],[-71.550774,41.90892799906],[-71.550774,41.90908099906],[-71.550751,41.90928299906],[-71.550789,41.90949199906],[-71.550919,41.90973699906],[-71.551079,41.91001099906],[-71.551308,41.91033599906],[-71.551628,41.91068299906],[-71.551888,41.91089599906],[-71.55217,41.91107599906],[-71.55233,41.91118199906],[-71.552582,41.91136899906],[-71.55275,41.91155199906],[-71.553032,41.91186499906],[-71.553337,41.91223899906],[-71.553596,41.91252499906],[-71.553841,41.91277699906],[-71.554169,41.91305899906],[-71.554398,41.91329999906],[-71.55455,41.91354399906],[-71.554626,41.91378799906],[-71.554626,41.91405499906],[-71.554697,41.91423299906],[-71.554586,41.91425999906],[-71.552407,41.91479799906],[-71.552867,41.91567899906],[-71.552989,41.91694499906],[-71.553081,41.91769299906],[-71.552505,41.91852399906],[-71.552498,41.91861499906],[-71.552499,41.91872899906],[-71.552524,41.91890399906],[-71.552524,41.91895899906],[-71.552531,41.91901899906],[-71.55258,41.91905899906],[-71.552647,41.91909899906],[-71.552703,41.91914899906],[-71.552721,41.91920499906],[-71.552704,41.91925799906],[-71.552645,41.91937299906],[-71.552634,41.91942699906],[-71.552634,41.91956299906],[-71.552668,41.91968199906],[-71.552759,41.91981899906],[-71.552792,41.91996799906],[-71.552785,41.92008599906],[-71.552231,41.92029199906],[-71.552063,41.92040299906],[-71.551949,41.92054699906],[-71.551842,41.92078399906],[-71.551819,41.92089499906],[-71.551804,41.92100499906],[-71.551743,41.92134099906],[-71.55172,41.92150499906],[-71.551674,41.92165799906],[-71.551643,41.92169999906],[-71.551613,41.92172999906],[-71.551567,41.92175699906],[-71.551521,41.92177599906],[-71.551468,41.92179099906],[-71.551384,41.92179899906],[-71.551064,41.92178299906],[-71.550919,41.92177999906],[-71.550278,41.92174099906],[-71.550056,41.92174099906],[-71.54995,41.92174899906],[-71.549835,41.92177599906],[-71.549713,41.92180999906],[-71.549599,41.92184799906],[-71.549675,41.92206999906],[-71.549736,41.92227199906],[-71.54995,41.92306499906],[-71.550247,41.92407999906],[-71.550796,41.92607699906],[-71.550911,41.92649499906],[-71.551064,41.92710099906],[-71.551247,41.92768099906],[-71.551428,41.92830299906],[-71.551468,41.92843999906],[-71.551613,41.92898899906],[-71.55172,41.92934799906],[-71.551888,41.92979399906],[-71.55201,41.93009199906],[-71.552147,41.93034699906],[-71.552361,41.93065299906],[-71.552567,41.93098399906],[-71.552703,41.93117199906],[-71.552826,41.93134299906],[-71.553261,41.93202199906],[-71.553612,41.93266299906],[-71.553764,41.93298299906],[-71.554008,41.93342999906],[-71.55423,41.93387199906],[-71.554344,41.93408199906],[-71.554428,41.93422299906],[-71.554611,41.93458599906],[-71.554794,41.93501699906],[-71.555,41.93560399906],[-71.55513,41.93608099906],[-71.555191,41.93632499906],[-71.555214,41.93639799906],[-71.555304,41.93677199906],[-71.555305,41.93678999906],[-71.555328,41.93687399906],[-71.55978,41.93646599906],[-71.559964,41.93644999906],[-71.562104,41.93625299906],[-71.563121,41.93615999906],[-71.564713,41.93601399906],[-71.574369,41.93512699906],[-71.585034,41.93414899906],[-71.585399,41.93411599906],[-71.590312,41.93366499906]]]}}"}, +{"type": "blockgroup", "typeId": 127013, "areaId": 28961, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.579908,41.88471999906],[-71.579389,41.88181199906],[-71.579351,41.88178299906],[-71.57933,41.88176099906],[-71.579216,41.88168299906],[-71.578972,41.88146599906],[-71.578885,41.88138699906],[-71.578484,41.88102299906],[-71.57811,41.88071099906],[-71.577728,41.88044699906],[-71.577393,41.88022999906],[-71.576851,41.87986799906],[-71.576569,41.87969599906],[-71.576332,41.87957399906],[-71.575958,41.87940199906],[-71.5756,41.87924999906],[-71.574974,41.87900899906],[-71.574471,41.87884899906],[-71.573586,41.87858199906],[-71.573219,41.87845999906],[-71.57312,41.87842199906],[-71.572845,41.87832599906],[-71.571968,41.87796399906],[-71.571533,41.87779199906],[-71.571487,41.87776899906],[-71.570992,41.87755599906],[-71.570509,41.87735999906],[-71.570428,41.87732699906],[-71.570175,41.87722399906],[-71.57,41.87715899906],[-71.569183,41.87682699906],[-71.568794,41.87667799906],[-71.568367,41.87652999906],[-71.567749,41.87635799906],[-71.567169,41.87618299906],[-71.566772,41.87607999906],[-71.566399,41.87597699906],[-71.565643,41.87575499906],[-71.565292,41.87563699906],[-71.564547,41.87537999906],[-71.564471,41.87535399906],[-71.564354,41.87531299906],[-71.563828,41.87513699906],[-71.563347,41.87498099906],[-71.563049,41.87488899906],[-71.562202,41.87465299906],[-71.561378,41.87442399906],[-71.560547,41.87419499906],[-71.559502,41.87390899906],[-71.558929,41.87374499906],[-71.55822,41.87356199906],[-71.557843,41.87345299906],[-71.557548,41.87336899906],[-71.556465,41.87308899906],[-71.555969,41.87294799906],[-71.55526,41.87276099906],[-71.554237,41.87247099906],[-71.554024,41.87240199906],[-71.55397,41.87236799906],[-71.553908,41.87232899906],[-71.553726,41.87221499906],[-71.553596,41.87210099906],[-71.553535,41.87204699906],[-71.553329,41.87183799906],[-71.553131,41.87165799906],[-71.552811,41.87146799906],[-71.552437,41.87132599906],[-71.552261,41.87126899906],[-71.551804,41.87119099906],[-71.551392,41.87111999906],[-71.550995,41.87105899906],[-71.550278,41.87093699906],[-71.550087,41.87123099906],[-71.549591,41.87190999906],[-71.549133,41.87251699906],[-71.548492,41.87322199906],[-71.548279,41.87346599906],[-71.548233,41.87351999906],[-71.547737,41.87408099906],[-71.547562,41.87429399906],[-71.547363,41.87456899906],[-71.547173,41.87488599906],[-71.54702,41.87511799906],[-71.546799,41.87546899906],[-71.54641,41.87608299906],[-71.546211,41.87641899906],[-71.546181,41.87645699906],[-71.545799,41.87705599906],[-71.545601,41.87726199906],[-71.545418,41.87742199906],[-71.545189,41.87756699906],[-71.544922,41.87768599906],[-71.544571,41.87778899906],[-71.54425,41.87782299906],[-71.543922,41.87783399906],[-71.543579,41.87783799906],[-71.543159,41.87784999906],[-71.542969,41.87786899906],[-71.54274,41.87791399906],[-71.542435,41.87801699906],[-71.542122,41.87818899906],[-71.541893,41.87836499906],[-71.541718,41.87858199906],[-71.541603,41.87879599906],[-71.541565,41.87887199906],[-71.541214,41.87963099906],[-71.540855,41.88042799906],[-71.540718,41.88077899906],[-71.54055,41.88113799906],[-71.540512,41.88137799906],[-71.540489,41.88148499906],[-71.540482,41.88180199906],[-71.540489,41.88185499906],[-71.540497,41.88201499906],[-71.540604,41.88239699906],[-71.540764,41.88304899906],[-71.540817,41.88337699906],[-71.540833,41.88366299906],[-71.540855,41.88394199906],[-71.540886,41.88418599906],[-71.540939,41.88437999906],[-71.541061,41.88462799906],[-71.541168,41.88481899906],[-71.54127,41.88496099906],[-71.541367,41.88509799906],[-71.541512,41.88528799906],[-71.541916,41.88588299906],[-71.542038,41.88607399906],[-71.542122,41.88627199906],[-71.542175,41.88644799906],[-71.542191,41.88665399906],[-71.542175,41.88685999906],[-71.542007,41.88743999906],[-71.541885,41.88780599906],[-71.541786,41.88811899906],[-71.541588,41.88856099906],[-71.541557,41.88860699906],[-71.541351,41.88895799906],[-71.542038,41.88912599906],[-71.542519,41.88922899906],[-71.544174,41.88954499906],[-71.544716,41.88963299906],[-71.545334,41.88972099906],[-71.546082,41.88985099906],[-71.547089,41.88999899906],[-71.547301,41.89001999906],[-71.547394,41.89002999906],[-71.547752,41.89002799906],[-71.548286,41.89002599906],[-71.548678,41.89001899906],[-71.549171,41.89001099906],[-71.549957,41.88999199906],[-71.55027,41.88999899906],[-71.550552,41.89004099906],[-71.550827,41.89016299906],[-71.551117,41.89032399906],[-71.551437,41.89054099906],[-71.551628,41.89067799906],[-71.551765,41.89083499906],[-71.552002,41.89121199906],[-71.552208,41.89152899906],[-71.552422,41.89192199906],[-71.552429,41.89204799906],[-71.552391,41.89215899906],[-71.552299,41.89237199906],[-71.552193,41.89258599906],[-71.552094,41.89279899906],[-71.551964,41.89301699906],[-71.551918,41.89316599906],[-71.551949,41.89325699906],[-71.552048,41.89338699906],[-71.552238,41.89358899906],[-71.552376,41.89375299906],[-71.552498,41.89393199906],[-71.552589,41.89410399906],[-71.55265,41.89426399906],[-71.552719,41.89436299906],[-71.552925,41.89454299906],[-71.553116,41.89469499906],[-71.553467,41.89492399906],[-71.554153,41.89540899906],[-71.554741,41.89580499906],[-71.554993,41.89596199906],[-71.55529,41.89610699906],[-71.555565,41.89625499906],[-71.555687,41.89637399906],[-71.555763,41.89649199906],[-71.555794,41.89665999906],[-71.555824,41.89689999906],[-71.55587,41.89712099906],[-71.555977,41.89725899906],[-71.55619,41.89743399906],[-71.556496,41.89761699906],[-71.557426,41.89810899906],[-71.55761,41.89821199906],[-71.557938,41.89845999906],[-71.558212,41.89862799906],[-71.558304,41.89873499906],[-71.558372,41.89880399906],[-71.558548,41.89912799906],[-71.558662,41.89936399906],[-71.559006,41.90014999906],[-71.559212,41.90058899906],[-71.560059,41.90013099906],[-71.560196,41.90007399906],[-71.56044,41.90005499906],[-71.56115,41.90005099906],[-71.561348,41.89999799906],[-71.561493,41.89986399906],[-71.561607,41.89969299906],[-71.561684,41.89955099906],[-71.561813,41.89948699906],[-71.562057,41.89948699906],[-71.562309,41.89958199906],[-71.562553,41.89974199906],[-71.562828,41.89990999906],[-71.563179,41.90011599906],[-71.563324,41.90022299906],[-71.563484,41.90042099906],[-71.563759,41.90067299906],[-71.564064,41.90083299906],[-71.564285,41.90083299906],[-71.564659,41.90078699906],[-71.564987,41.90072999906],[-71.565239,41.90066499906],[-71.56543,41.90058099906],[-71.565643,41.90050899906],[-71.565948,41.90041699906],[-71.566147,41.90030699906],[-71.566231,41.90019199906],[-71.566269,41.89996299906],[-71.566315,41.89975699906],[-71.566422,41.89950199906],[-71.566536,41.89927699906],[-71.566559,41.89923099906],[-71.566635,41.89903999906],[-71.566681,41.89890699906],[-71.566666,41.89874599906],[-71.566422,41.89786899906],[-71.566421,41.89784199906],[-71.566422,41.89780799906],[-71.566406,41.89755999906],[-71.566483,41.89733099906],[-71.566582,41.89714399906],[-71.566734,41.89693499906],[-71.566917,41.89669399906],[-71.567421,41.89631699906],[-71.567627,41.89612999906],[-71.567902,41.89577499906],[-71.567955,41.89571399906],[-71.568092,41.89553799906],[-71.568298,41.89529799906],[-71.568344,41.89524699906],[-71.568481,41.89509599906],[-71.568657,41.89488199906],[-71.568771,41.89470299906],[-71.568863,41.89453899906],[-71.568893,41.89438999906],[-71.568901,41.89419899906],[-71.568878,41.89395499906],[-71.568832,41.89374499906],[-71.568634,41.89306999906],[-71.568626,41.89288699906],[-71.568629,41.89282899906],[-71.568665,41.89228399906],[-71.56868,41.89194899906],[-71.568703,41.89175799906],[-71.568771,41.89160499906],[-71.568909,41.89138799906],[-71.569038,41.89120499906],[-71.569153,41.89111299906],[-71.569321,41.89102899906],[-71.569611,41.89090699906],[-71.569642,41.89088799906],[-71.569786,41.89079999906],[-71.569916,41.89069399906],[-71.570091,41.89051099906],[-71.570221,41.89034699906],[-71.570381,41.89017499906],[-71.570541,41.88996499906],[-71.571167,41.88922099906],[-71.571297,41.88911099906],[-71.571609,41.88891999906],[-71.571701,41.88883599906],[-71.571739,41.88876699906],[-71.571762,41.88854199906],[-71.571774,41.88803199906],[-71.571777,41.88793199906],[-71.571777,41.88731799906],[-71.571793,41.88715699906],[-71.571915,41.88703499906],[-71.571259,41.88611199906],[-71.571014,41.88574599906],[-71.570717,41.88534499906],[-71.570549,41.88505899906],[-71.570763,41.88505199906],[-71.571037,41.88501699906],[-71.571831,41.88486899906],[-71.572335,41.88476699906],[-71.572792,41.88466999906],[-71.57373,41.88450199906],[-71.57415,41.88441499906],[-71.574356,41.88435699906],[-71.574654,41.88426599906],[-71.575027,41.88414399906],[-71.57531,41.88403699906],[-71.5756,41.88396799906],[-71.57592,41.88392599906],[-71.576218,41.88390699906],[-71.576447,41.88391099906],[-71.57663,41.88396799906],[-71.57679,41.88410599906],[-71.576912,41.88428099906],[-71.577057,41.88446799906],[-71.577255,41.88464699906],[-71.577606,41.88485699906],[-71.577827,41.88495999906],[-71.578087,41.88504799906],[-71.578293,41.88508199906],[-71.578419,41.88507699906],[-71.57856,41.88507099906],[-71.578857,41.88501699906],[-71.579193,41.88491399906],[-71.579498,41.88482999906],[-71.57975,41.88475399906],[-71.579908,41.88471999906]]]}}"}, +{"type": "blockgroup", "typeId": 127021, "areaId": 28962, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.575653,41.86357299906],[-71.575625,41.86344199906],[-71.575523,41.86295699906],[-71.575077,41.86082899906],[-71.574642,41.85874799906],[-71.573608,41.85880699906],[-71.572473,41.85892799906],[-71.569894,41.85926699906],[-71.568658,41.85943099906],[-71.565924,41.85978299906],[-71.562903,41.86017999906],[-71.561768,41.86032899906],[-71.56018,41.86053599906],[-71.559747,41.86059099906],[-71.558448,41.86076299906],[-71.55687,41.86096899906],[-71.554998,41.86120699906],[-71.550423,41.86176499906],[-71.549907,41.86184899906],[-71.549385,41.86193699906],[-71.548653,41.86203399906],[-71.548429,41.86206399906],[-71.547354,41.86220699906],[-71.545655,41.86252999906],[-71.545536,41.86254099906],[-71.545476,41.86254699906],[-71.545422,41.86255199906],[-71.545071,41.86258499906],[-71.543502,41.86273399906],[-71.542997,41.86278299906],[-71.542475,41.86284199906],[-71.540216,41.86309499906],[-71.539405,41.86321999906],[-71.538525,41.86335699906],[-71.536003,41.86368599906],[-71.534903,41.86382999906],[-71.533274,41.86403799906],[-71.532043,41.86419499906],[-71.531464,41.86426899906],[-71.531464,41.86436099906],[-71.531441,41.86471599906],[-71.53138,41.86577999906],[-71.531334,41.86672999906],[-71.531303,41.86716099906],[-71.531281,41.86747399906],[-71.531219,41.86796999906],[-71.531021,41.86885799906],[-71.5308,41.86974399906],[-71.530785,41.86980799906],[-71.530724,41.87017799906],[-71.531289,41.87019199906],[-71.531441,41.87019699906],[-71.532112,41.87020899906],[-71.532883,41.87021599906],[-71.533691,41.87021599906],[-71.533951,41.87020499906],[-71.534554,41.87020499906],[-71.535042,41.87019299906],[-71.535454,41.87019099906],[-71.535667,41.87018999906],[-71.537781,41.87014799906],[-71.538033,41.87015199906],[-71.538551,41.87014399906],[-71.539185,41.87014799906],[-71.539963,41.87019299906],[-71.540489,41.87021299906],[-71.541046,41.87022399906],[-71.541351,41.87025099906],[-71.541679,41.87025099906],[-71.541696,41.86930599906],[-71.541907,41.86849599906],[-71.542038,41.86763799906],[-71.542379,41.86705799906],[-71.543273,41.86781899906],[-71.543273,41.86945099906],[-71.543175,41.87031199906],[-71.543907,41.87034599906],[-71.544975,41.87038399906],[-71.54612,41.87042599906],[-71.546669,41.87043799906],[-71.54734,41.87047199906],[-71.547722,41.87050599906],[-71.547966,41.87054399906],[-71.548485,41.87063199906],[-71.548958,41.87071599906],[-71.549767,41.87084999906],[-71.550278,41.87093699906],[-71.550995,41.87105899906],[-71.551392,41.87111999906],[-71.551804,41.87119099906],[-71.552261,41.87126899906],[-71.552444,41.87112399906],[-71.55278,41.87084599906],[-71.553261,41.87047999906],[-71.553688,41.87014799906],[-71.554108,41.86983099906],[-71.554244,41.86972999906],[-71.554596,41.86946899906],[-71.555038,41.86912899906],[-71.55549,41.86879599906],[-71.555587,41.86872499906],[-71.555695,41.86864499906],[-71.55603,41.86838199906],[-71.556259,41.86815999906],[-71.556587,41.86780499906],[-71.55677,41.86762999906],[-71.557091,41.86741599906],[-71.557549,41.86718799906],[-71.557747,41.86711499906],[-71.557823,41.86709099906],[-71.558067,41.86701599906],[-71.558472,41.86693999906],[-71.558583,41.86692099906],[-71.558876,41.86687099906],[-71.559158,41.86681699906],[-71.559624,41.86671099906],[-71.559975,41.86661499906],[-71.560501,41.86646299906],[-71.560555,41.86644399906],[-71.56115,41.86626099906],[-71.561516,41.86614999906],[-71.563942,41.86543299906],[-71.564907,41.86515199906],[-71.565094,41.86509799906],[-71.565163,41.86507799906],[-71.565697,41.86496399906],[-71.566261,41.86485299906],[-71.566345,41.86484099906],[-71.566673,41.86479199906],[-71.567139,41.86474199906],[-71.568451,41.86469299906],[-71.569344,41.86466599906],[-71.569725,41.86465499906],[-71.570221,41.86462399906],[-71.570534,41.86459399906],[-71.570862,41.86453999906],[-71.571031,41.86450699906],[-71.571304,41.86445599906],[-71.571815,41.86435299906],[-71.571999,41.86431099906],[-71.572582,41.86419399906],[-71.573019,41.86410699906],[-71.573105,41.86408999906],[-71.573647,41.86399099906],[-71.574318,41.86384999906],[-71.574844,41.86374699906],[-71.575272,41.86364699906],[-71.575653,41.86357299906]]]}}"}, +{"type": "blockgroup", "typeId": 127022, "areaId": 28963, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.579389,41.88181199906],[-71.579348,41.88161699906],[-71.579254,41.88115499906],[-71.578828,41.87903199906],[-71.578229,41.87600699906],[-71.57809,41.87529399906],[-71.57805,41.87508799906],[-71.578037,41.87502099906],[-71.577934,41.87449399906],[-71.577707,41.87332099906],[-71.577469,41.87210399906],[-71.577418,41.87187599906],[-71.577255,41.87110599906],[-71.577121,41.87047599906],[-71.576523,41.86776799906],[-71.576154,41.86598699906],[-71.576058,41.86552299906],[-71.575752,41.86405499906],[-71.575653,41.86357299906],[-71.575272,41.86364699906],[-71.574844,41.86374699906],[-71.574318,41.86384999906],[-71.573647,41.86399099906],[-71.573105,41.86408999906],[-71.573019,41.86410699906],[-71.572582,41.86419399906],[-71.571999,41.86431099906],[-71.571815,41.86435299906],[-71.571304,41.86445599906],[-71.571031,41.86450699906],[-71.570862,41.86453999906],[-71.570534,41.86459399906],[-71.570221,41.86462399906],[-71.569725,41.86465499906],[-71.569344,41.86466599906],[-71.568451,41.86469299906],[-71.567139,41.86474199906],[-71.566673,41.86479199906],[-71.566345,41.86484099906],[-71.566261,41.86485299906],[-71.565697,41.86496399906],[-71.565163,41.86507799906],[-71.565094,41.86509799906],[-71.564907,41.86515199906],[-71.563942,41.86543299906],[-71.561516,41.86614999906],[-71.56115,41.86626099906],[-71.560555,41.86644399906],[-71.560501,41.86646299906],[-71.559975,41.86661499906],[-71.559624,41.86671099906],[-71.559158,41.86681699906],[-71.558876,41.86687099906],[-71.558583,41.86692099906],[-71.558472,41.86693999906],[-71.558067,41.86701599906],[-71.557823,41.86709099906],[-71.557747,41.86711499906],[-71.557549,41.86718799906],[-71.557091,41.86741599906],[-71.55677,41.86762999906],[-71.556587,41.86780499906],[-71.556259,41.86815999906],[-71.55603,41.86838199906],[-71.555695,41.86864499906],[-71.555587,41.86872499906],[-71.55549,41.86879599906],[-71.555038,41.86912899906],[-71.554596,41.86946899906],[-71.554244,41.86972999906],[-71.554108,41.86983099906],[-71.553688,41.87014799906],[-71.553261,41.87047999906],[-71.55278,41.87084599906],[-71.552444,41.87112399906],[-71.552261,41.87126899906],[-71.552437,41.87132599906],[-71.552811,41.87146799906],[-71.553131,41.87165799906],[-71.553329,41.87183799906],[-71.553535,41.87204699906],[-71.553596,41.87210099906],[-71.553726,41.87221499906],[-71.553908,41.87232899906],[-71.55397,41.87236799906],[-71.554024,41.87240199906],[-71.554237,41.87247099906],[-71.55526,41.87276099906],[-71.555969,41.87294799906],[-71.556465,41.87308899906],[-71.557548,41.87336899906],[-71.557843,41.87345299906],[-71.55822,41.87356199906],[-71.558929,41.87374499906],[-71.559502,41.87390899906],[-71.560547,41.87419499906],[-71.561378,41.87442399906],[-71.562202,41.87465299906],[-71.563049,41.87488899906],[-71.563347,41.87498099906],[-71.563828,41.87513699906],[-71.564354,41.87531299906],[-71.564471,41.87535399906],[-71.564547,41.87537999906],[-71.565292,41.87563699906],[-71.565643,41.87575499906],[-71.566399,41.87597699906],[-71.566772,41.87607999906],[-71.567169,41.87618299906],[-71.567749,41.87635799906],[-71.568367,41.87652999906],[-71.568794,41.87667799906],[-71.569183,41.87682699906],[-71.57,41.87715899906],[-71.570175,41.87722399906],[-71.570428,41.87732699906],[-71.570509,41.87735999906],[-71.570992,41.87755599906],[-71.571487,41.87776899906],[-71.571533,41.87779199906],[-71.571968,41.87796399906],[-71.572845,41.87832599906],[-71.57312,41.87842199906],[-71.573219,41.87845999906],[-71.573586,41.87858199906],[-71.574471,41.87884899906],[-71.574974,41.87900899906],[-71.5756,41.87924999906],[-71.575958,41.87940199906],[-71.576332,41.87957399906],[-71.576569,41.87969599906],[-71.576851,41.87986799906],[-71.577393,41.88022999906],[-71.577728,41.88044699906],[-71.57811,41.88071099906],[-71.578484,41.88102299906],[-71.578885,41.88138699906],[-71.578972,41.88146599906],[-71.579216,41.88168299906],[-71.57933,41.88176099906],[-71.579351,41.88178299906],[-71.579389,41.88181199906]]]}}"}, +{"type": "blockgroup", "typeId": 127023, "areaId": 28964, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.550278,41.87093699906],[-71.549767,41.87084999906],[-71.548958,41.87071599906],[-71.548485,41.87063199906],[-71.547966,41.87054399906],[-71.547722,41.87050599906],[-71.54734,41.87047199906],[-71.546669,41.87043799906],[-71.54612,41.87042599906],[-71.544975,41.87038399906],[-71.543907,41.87034599906],[-71.543175,41.87031199906],[-71.543273,41.86945099906],[-71.543273,41.86781899906],[-71.542379,41.86705799906],[-71.542038,41.86763799906],[-71.541907,41.86849599906],[-71.541696,41.86930599906],[-71.541679,41.87025099906],[-71.541351,41.87025099906],[-71.541046,41.87022399906],[-71.540489,41.87021299906],[-71.539963,41.87019299906],[-71.539185,41.87014799906],[-71.538551,41.87014399906],[-71.538033,41.87015199906],[-71.537781,41.87014799906],[-71.535667,41.87018999906],[-71.535454,41.87019099906],[-71.535042,41.87019299906],[-71.534554,41.87020499906],[-71.533951,41.87020499906],[-71.533691,41.87021599906],[-71.532883,41.87021599906],[-71.532112,41.87020899906],[-71.531441,41.87019699906],[-71.531289,41.87019199906],[-71.530724,41.87017799906],[-71.530792,41.87071599906],[-71.530899,41.87116199906],[-71.531052,41.87166599906],[-71.531189,41.87218899906],[-71.531311,41.87255899906],[-71.531387,41.87273799906],[-71.531509,41.87295899906],[-71.531639,41.87317999906],[-71.531715,41.87329499906],[-71.531891,41.87352399906],[-71.531988,41.87362399906],[-71.532013,41.87364999906],[-71.532188,41.87381399906],[-71.532448,41.87403099906],[-71.532669,41.87419899906],[-71.533514,41.87482399906],[-71.533707,41.87496199906],[-71.534607,41.87562599906],[-71.535067,41.87595799906],[-71.535469,41.87624699906],[-71.53614,41.87674299906],[-71.536522,41.87699899906],[-71.536888,41.87720499906],[-71.537083,41.87728099906],[-71.537201,41.87732699906],[-71.537521,41.87742999906],[-71.537888,41.87753299906],[-71.538216,41.87764399906],[-71.538467,41.87776899906],[-71.538734,41.87794899906],[-71.538925,41.87812799906],[-71.539108,41.87834499906],[-71.539238,41.87855899906],[-71.539337,41.87882199906],[-71.539421,41.87920399906],[-71.539551,41.88004699906],[-71.539612,41.88035599906],[-71.539688,41.88058499906],[-71.539803,41.88078699906],[-71.540009,41.88107699906],[-71.540253,41.88137099906],[-71.540489,41.88148499906],[-71.540512,41.88137799906],[-71.54055,41.88113799906],[-71.540718,41.88077899906],[-71.540855,41.88042799906],[-71.541214,41.87963099906],[-71.541565,41.87887199906],[-71.541603,41.87879599906],[-71.541718,41.87858199906],[-71.541893,41.87836499906],[-71.542122,41.87818899906],[-71.542435,41.87801699906],[-71.54274,41.87791399906],[-71.542969,41.87786899906],[-71.543159,41.87784999906],[-71.543579,41.87783799906],[-71.543922,41.87783399906],[-71.54425,41.87782299906],[-71.544571,41.87778899906],[-71.544922,41.87768599906],[-71.545189,41.87756699906],[-71.545418,41.87742199906],[-71.545601,41.87726199906],[-71.545799,41.87705599906],[-71.546181,41.87645699906],[-71.546211,41.87641899906],[-71.54641,41.87608299906],[-71.546799,41.87546899906],[-71.54702,41.87511799906],[-71.547173,41.87488599906],[-71.547363,41.87456899906],[-71.547562,41.87429399906],[-71.547737,41.87408099906],[-71.548233,41.87351999906],[-71.548279,41.87346599906],[-71.548492,41.87322199906],[-71.549133,41.87251699906],[-71.549591,41.87190999906],[-71.550087,41.87123099906],[-71.550278,41.87093699906]]]}}"}, +{"type": "blockgroup", "typeId": 128011, "areaId": 28965, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.606731,42.01327999906],[-71.606584,42.01257699906],[-71.605278,42.00622199906],[-71.604693,42.00324599906],[-71.604556,42.00253599906],[-71.604119,42.00036699906],[-71.603631,41.99800399906],[-71.603526,41.99749999906],[-71.602879,41.99452399906],[-71.602488,41.99263699906],[-71.601756,41.98917499906],[-71.601659,41.98871099906],[-71.601637,41.98860399906],[-71.601593,41.98839299906],[-71.601401,41.98746599906],[-71.601357,41.98725799906],[-71.601212,41.98657299906],[-71.601203,41.98648499906],[-71.60087,41.98506499906],[-71.6007,41.98434799906],[-71.60066,41.98414399906],[-71.600605,41.98387899906],[-71.600443,41.98302699906],[-71.599392,41.98377899906],[-71.598196,41.98545699906],[-71.598017,41.98570899906],[-71.597897,41.98587699906],[-71.597813,41.98614099906],[-71.596417,41.99054599906],[-71.596008,41.99299799906],[-71.595776,41.99326199906],[-71.595394,41.99384999906],[-71.595165,41.99428399906],[-71.595071,41.99439899906],[-71.594842,41.99445099906],[-71.594785,41.99462299906],[-71.594839,41.99466299906],[-71.594753,41.99482599906],[-71.59451,41.99501799906],[-71.594255,41.99509099906],[-71.594114,41.99513199906],[-71.593628,41.99519299906],[-71.593513,41.99482699906],[-71.592763,41.99434199906],[-71.592013,41.99448599906],[-71.591427,41.99469999906],[-71.590538,41.99485199906],[-71.589335,41.99472399906],[-71.588162,41.99469499906],[-71.586975,41.99470199906],[-71.586123,41.99471899906],[-71.585331,41.99480599906],[-71.584981,41.99487199906],[-71.584418,41.99519399906],[-71.583856,41.99562999906],[-71.583248,41.99625499906],[-71.582868,41.99680399906],[-71.582351,41.99750799906],[-71.581816,41.99784899906],[-71.581379,41.99842599906],[-71.580732,41.99891599906],[-71.580633,41.99898999906],[-71.579781,41.99928799906],[-71.579368,41.99918599906],[-71.579076,41.99912999906],[-71.579021,41.99913999906],[-71.578953,41.99914099906],[-71.578976,41.99922199906],[-71.578998,41.99930399906],[-71.579048,41.99948099906],[-71.579094,41.99956099906],[-71.579193,41.99965299906],[-71.579391,41.99973299906],[-71.57959,41.99977899906],[-71.579795,41.99981399906],[-71.579903,41.99983199906],[-71.580132,41.99986599906],[-71.580322,41.99988199906],[-71.580048,41.99994699906],[-71.579956,41.99996899906],[-71.579605,42.00003799906],[-71.579323,42.00011099906],[-71.579147,42.00020999906],[-71.579109,42.00032399906],[-71.579323,42.00037399906],[-71.579674,42.00048799906],[-71.579987,42.00062599906],[-71.580147,42.00070999906],[-71.580345,42.00089299906],[-71.580498,42.00107599906],[-71.58065,42.00126599906],[-71.581055,42.00180099906],[-71.581322,42.00217099906],[-71.581718,42.00270499906],[-71.581993,42.00306699906],[-71.582283,42.00345599906],[-71.582573,42.00382999906],[-71.58311,42.00456899906],[-71.583412,42.00498599906],[-71.583753,42.00544999906],[-71.583771,42.00546299906],[-71.584084,42.00585199906],[-71.584503,42.00641999906],[-71.584785,42.00682799906],[-71.585115,42.00726499906],[-71.585197,42.00737399906],[-71.585312,42.00752299906],[-71.585907,42.00833499906],[-71.586235,42.00879699906],[-71.586388,42.00891099906],[-71.586601,42.00907099906],[-71.586754,42.00917399906],[-71.587006,42.00930799906],[-71.587311,42.00945999906],[-71.587547,42.00958299906],[-71.587852,42.00971599906],[-71.58815,42.00988399906],[-71.588463,42.01002499906],[-71.588753,42.01016199906],[-71.588997,42.01028799906],[-71.589371,42.01045199906],[-71.589546,42.01055499906],[-71.589894,42.01074999906],[-71.594095,42.01356099906],[-71.594116,42.01357499906],[-71.594332,42.01356799906],[-71.606369,42.01328799906],[-71.606731,42.01327999906]]]}}"}, +{"type": "blockgroup", "typeId": 128012, "areaId": 28966, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.55337,42.01451199906],[-71.553154,42.01344099906],[-71.552334,42.01321299906],[-71.551984,42.01295799906],[-71.551904,42.01209999906],[-71.551809,42.01131799906],[-71.551634,42.01038499906],[-71.55135,42.00975999906],[-71.550642,42.00893599906],[-71.550669,42.00887999906],[-71.551232,42.00775299906],[-71.551717,42.00723999906],[-71.552009,42.00671399906],[-71.552276,42.00612499906],[-71.552399,42.00548699906],[-71.552482,42.00502499906],[-71.552143,42.00444999906],[-71.552107,42.00439599906],[-71.552062,42.00433999906],[-71.552032,42.00427799906],[-71.551983,42.00420199906],[-71.551879,42.00409899906],[-71.551856,42.00401999906],[-71.551822,42.00396899906],[-71.551744,42.00390799906],[-71.551694,42.00384899906],[-71.551645,42.00371499906],[-71.551598,42.00366099906],[-71.551562,42.00360999906],[-71.55154,42.00354599906],[-71.551528,42.00347099906],[-71.551457,42.00343599906],[-71.551293,42.00334299906],[-71.551118,42.00332699906],[-71.551031,42.00332599906],[-71.550986,42.00331799906],[-71.550952,42.00326199906],[-71.550909,42.00317299906],[-71.550865,42.00310499906],[-71.550729,42.00298199906],[-71.550664,42.00293299906],[-71.550622,42.00287999906],[-71.550566,42.00277299906],[-71.550544,42.00270799906],[-71.550515,42.00265399906],[-71.55049,42.00257399906],[-71.550477,42.00245099906],[-71.550477,42.00237399906],[-71.550487,42.00231999906],[-71.550507,42.00226299906],[-71.550539,42.00213899906],[-71.550578,42.00208899906],[-71.550648,42.00204599906],[-71.550812,42.00198899906],[-71.550879,42.00194699906],[-71.550944,42.00189599906],[-71.55101,42.00186599906],[-71.55111,42.00183699906],[-71.55124,42.00176699906],[-71.551422,42.00171599906],[-71.5515,42.00168199906],[-71.551587,42.00162299906],[-71.551652,42.00156399906],[-71.551787,42.00148799906],[-71.551918,42.00139099906],[-71.552039,42.00131299906],[-71.552114,42.00125399906],[-71.552174,42.00119399906],[-71.552217,42.00114099906],[-71.552249,42.00108399906],[-71.552292,42.00103299906],[-71.552367,42.00099199906],[-71.552422,42.00095399906],[-71.552482,42.00089199906],[-71.552502,42.00082999906],[-71.552503,42.00063999906],[-71.552516,42.00056199906],[-71.552518,42.00051099906],[-71.552564,42.00045299906],[-71.552628,42.00039799906],[-71.5527,42.00030199906],[-71.552733,42.00024699906],[-71.552755,42.00018799906],[-71.552789,42.00012999906],[-71.552802,42.00007099906],[-71.552813,41.99996399906],[-71.552814,41.99989199906],[-71.552686,41.99987899906],[-71.551994,41.99980899906],[-71.551758,41.99977099906],[-71.551559,41.99972899906],[-71.551254,41.99964099906],[-71.550964,41.99954599906],[-71.549538,41.99902299906],[-71.549019,41.99883299906],[-71.54879,41.99874499906],[-71.548517,41.99862299906],[-71.548424,41.99858099906],[-71.54818,41.99844699906],[-71.547943,41.99829499906],[-71.547783,41.99817699906],[-71.547508,41.99801299906],[-71.547287,41.99787499906],[-71.547089,41.99777199906],[-71.546906,41.99768799906],[-71.546143,41.99742499906],[-71.545761,41.99731099906],[-71.545074,41.99707399906],[-71.54438,41.99680699906],[-71.544159,41.99666599906],[-71.543922,41.99653999906],[-71.543556,41.99631499906],[-71.543274,41.99616599906],[-71.542755,41.99584999906],[-71.542374,41.99562799906],[-71.542023,41.99543799906],[-71.541611,41.99520099906],[-71.54123,41.99499099906],[-71.540878,41.99480399906],[-71.54052,41.99461399906],[-71.54023,41.99444999906],[-71.539909,41.99425499906],[-71.53981,41.99417099906],[-71.539724,41.99408999906],[-71.539035,41.99400899906],[-71.538345,41.99391599906],[-71.536484,41.99367299906],[-71.534719,41.99347299906],[-71.534597,41.99345899906],[-71.53383,41.99341099906],[-71.533195,41.99341999906],[-71.533238,41.99351399906],[-71.535052,41.99779099906],[-71.535583,41.99903999906],[-71.535971,42.00000999906],[-71.536397,42.00107099906],[-71.537849,42.00467699906],[-71.538811,42.00717399906],[-71.539183,42.00814199906],[-71.539269,42.00836199906],[-71.539679,42.00939799906],[-71.539854,42.00987299906],[-71.539093,42.00987499906],[-71.537063,42.00987299906],[-71.536875,42.00987199906],[-71.536784,42.00988499906],[-71.535941,42.00987199906],[-71.535805,42.00986999906],[-71.534459,42.00984899906],[-71.533856,42.00983899906],[-71.5335,42.00983399906],[-71.532953,42.00982699906],[-71.532196,42.00981499906],[-71.5314,42.00980199906],[-71.530825,42.00979299906],[-71.530347,42.00978499906],[-71.530259,42.00978399906],[-71.529658,42.00982699906],[-71.529892,42.01006699906],[-71.529966,42.01014799906],[-71.529998,42.01018399906],[-71.530099,42.01031199906],[-71.530142,42.01037499906],[-71.530272,42.01061199906],[-71.530346,42.01078099906],[-71.530378,42.01088999906],[-71.530404,42.01104299906],[-71.530441,42.01118099906],[-71.530467,42.01131599906],[-71.530469,42.01140499906],[-71.530461,42.01162899906],[-71.530461,42.01178399906],[-71.530476,42.01212199906],[-71.530443,42.01221399906],[-71.530397,42.01240999906],[-71.530315,42.01268799906],[-71.530222,42.01296099906],[-71.53008,42.01326099906],[-71.52981,42.01363299906],[-71.529309,42.01433999906],[-71.529196,42.01452199906],[-71.529136,42.01470799906],[-71.529115,42.01493899906],[-71.52912,42.01499799906],[-71.529125,42.01506299906],[-71.5328,42.01497899906],[-71.533673,42.01495899906],[-71.534448,42.01494199906],[-71.53522,42.01492399906],[-71.535477,42.01491799906],[-71.536306,42.01489799906],[-71.536377,42.01489799906],[-71.537507,42.01487299906],[-71.537547,42.01487199906],[-71.537877,42.01486399906],[-71.542512,42.01475899906],[-71.54278,42.01475299906],[-71.543575,42.01473499906],[-71.543658,42.01473299906],[-71.551527,42.01455399906],[-71.553256,42.01451399906],[-71.55337,42.01451199906]]]}}"}, +{"type": "blockgroup", "typeId": 128013, "areaId": 28967, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.594116,42.01357499906],[-71.594095,42.01356099906],[-71.589894,42.01074999906],[-71.589546,42.01055499906],[-71.589371,42.01045199906],[-71.588997,42.01028799906],[-71.588753,42.01016199906],[-71.588463,42.01002499906],[-71.58815,42.00988399906],[-71.587852,42.00971599906],[-71.587547,42.00958299906],[-71.587311,42.00945999906],[-71.587006,42.00930799906],[-71.586754,42.00917399906],[-71.586601,42.00907099906],[-71.586388,42.00891099906],[-71.586235,42.00879699906],[-71.585907,42.00833499906],[-71.585312,42.00752299906],[-71.585197,42.00737399906],[-71.585115,42.00726499906],[-71.584785,42.00682799906],[-71.584503,42.00641999906],[-71.584084,42.00585199906],[-71.583771,42.00546299906],[-71.583753,42.00544999906],[-71.583412,42.00498599906],[-71.58311,42.00456899906],[-71.582573,42.00382999906],[-71.582283,42.00345599906],[-71.581993,42.00306699906],[-71.581718,42.00270499906],[-71.581322,42.00217099906],[-71.581055,42.00180099906],[-71.58065,42.00126599906],[-71.580498,42.00107599906],[-71.580345,42.00089299906],[-71.580147,42.00070999906],[-71.579987,42.00062599906],[-71.579674,42.00048799906],[-71.579323,42.00037399906],[-71.579109,42.00032399906],[-71.579147,42.00020999906],[-71.579323,42.00011099906],[-71.579605,42.00003799906],[-71.579956,41.99996899906],[-71.580048,41.99994699906],[-71.580322,41.99988199906],[-71.580132,41.99986599906],[-71.579903,41.99983199906],[-71.579795,41.99981399906],[-71.57959,41.99977899906],[-71.579391,41.99973299906],[-71.579193,41.99965299906],[-71.579094,41.99956099906],[-71.579048,41.99948099906],[-71.578998,41.99930399906],[-71.578976,41.99922199906],[-71.578953,41.99914099906],[-71.578768,41.99914399906],[-71.578687,41.99913799906],[-71.578472,41.99913699906],[-71.578389,41.99911699906],[-71.578199,41.99911299906],[-71.578112,41.99909199906],[-71.577959,41.99904299906],[-71.577811,41.99897499906],[-71.577741,41.99895599906],[-71.577664,41.99894399906],[-71.577547,41.99890999906],[-71.57741,41.99882599906],[-71.577337,41.99879399906],[-71.57723,41.99876799906],[-71.577123,41.99868199906],[-71.576956,41.99864399906],[-71.576812,41.99858299906],[-71.576745,41.99855999906],[-71.576659,41.99853699906],[-71.576569,41.99850499906],[-71.576489,41.99849399906],[-71.576183,41.99842699906],[-71.576116,41.99840099906],[-71.576038,41.99838899906],[-71.575837,41.99837499906],[-71.575512,41.99837699906],[-71.575338,41.99833699906],[-71.57517,41.99832499906],[-71.575086,41.99830999906],[-71.574901,41.99824799906],[-71.574743,41.99824799906],[-71.574625,41.99823799906],[-71.574553,41.99822299906],[-71.574291,41.99818399906],[-71.574208,41.99817699906],[-71.573761,41.99816699906],[-71.573391,41.99816999906],[-71.573308,41.99817599906],[-71.573149,41.99820899906],[-71.573124,41.99821599906],[-71.573078,41.99822899906],[-71.573039,41.99823699906],[-71.573001,41.99824399906],[-71.572888,41.99825399906],[-71.572833,41.99829399906],[-71.572761,41.99831699906],[-71.572682,41.99834899906],[-71.572613,41.99837099906],[-71.572554,41.99842699906],[-71.572476,41.99847599906],[-71.572401,41.99850799906],[-71.572296,41.99853799906],[-71.572219,41.99856499906],[-71.572135,41.99861399906],[-71.572084,41.99865699906],[-71.572011,41.99869299906],[-71.571938,41.99869699906],[-71.571847,41.99872199906],[-71.571616,41.99880799906],[-71.571415,41.99884099906],[-71.57126,41.99891399906],[-71.571164,41.99896899906],[-71.570852,41.99920199906],[-71.570813,41.99925599906],[-71.570776,41.99932499906],[-71.570629,41.99951499906],[-71.570556,41.99952799906],[-71.570398,41.99952199906],[-71.570306,41.99951099906],[-71.570295,41.99946499906],[-71.570258,41.99942099906],[-71.570186,41.99938599906],[-71.570121,41.99934099906],[-71.570077,41.99928699906],[-71.570044,41.99922299906],[-71.569837,41.99917199906],[-71.569662,41.99916699906],[-71.569584,41.99915799906],[-71.569518,41.99914599906],[-71.569475,41.99909799906],[-71.56932,41.99902999906],[-71.569161,41.99893699906],[-71.569094,41.99888799906],[-71.569044,41.99884099906],[-71.568974,41.99878499906],[-71.56892,41.99873499906],[-71.568839,41.99867899906],[-71.568785,41.99862699906],[-71.568741,41.99857499906],[-71.568718,41.99852299906],[-71.568538,41.99837099906],[-71.567745,41.99764899906],[-71.566409,41.99688399906],[-71.56613,41.99671199906],[-71.5659,41.99657099906],[-71.56526,41.99614899906],[-71.56481,41.99597599906],[-71.563997,41.99618699906],[-71.563899,41.99619799906],[-71.563806,41.99618499906],[-71.563726,41.99620099906],[-71.56365,41.99620399906],[-71.56357,41.99621199906],[-71.563521,41.99622599906],[-71.563503,41.99628199906],[-71.563473,41.99630599906],[-71.563295,41.99632599906],[-71.563198,41.99634499906],[-71.563147,41.99638799906],[-71.563033,41.99641499906],[-71.562955,41.99641999906],[-71.562892,41.99645299906],[-71.56282,41.99648199906],[-71.562785,41.99648799906],[-71.562723,41.99649899906],[-71.562294,41.99649399906],[-71.561808,41.99648099906],[-71.561616,41.99645699906],[-71.561215,41.99644899906],[-71.560916,41.99644699906],[-71.560704,41.99644099906],[-71.560589,41.99644099906],[-71.560167,41.99638999906],[-71.559239,41.99638999906],[-71.558543,41.99651199906],[-71.557796,41.99655799906],[-71.557029,41.99664699906],[-71.556832,41.99666999906],[-71.556804,41.99667299906],[-71.556077,41.99698799906],[-71.555846,41.99726299906],[-71.555986,41.99767199906],[-71.556386,41.99807299906],[-71.557073,41.99891099906],[-71.557047,41.99914899906],[-71.557037,41.99924199906],[-71.556966,41.99928999906],[-71.556834,41.99937799906],[-71.5567,41.99946799906],[-71.556598,41.99953599906],[-71.555801,41.99950399906],[-71.554548,41.99913799906],[-71.553458,41.99883499906],[-71.552801,41.99862199906],[-71.552219,41.99869599906],[-71.552263,41.99922299906],[-71.55259,41.99958999906],[-71.552814,41.99989199906],[-71.552813,41.99996399906],[-71.552802,42.00007099906],[-71.552789,42.00012999906],[-71.552755,42.00018799906],[-71.552733,42.00024699906],[-71.5527,42.00030199906],[-71.552628,42.00039799906],[-71.552564,42.00045299906],[-71.552518,42.00051099906],[-71.552516,42.00056199906],[-71.552503,42.00063999906],[-71.552502,42.00082999906],[-71.552482,42.00089199906],[-71.552422,42.00095399906],[-71.552367,42.00099199906],[-71.552292,42.00103299906],[-71.552249,42.00108399906],[-71.552217,42.00114099906],[-71.552174,42.00119399906],[-71.552114,42.00125399906],[-71.552039,42.00131299906],[-71.551918,42.00139099906],[-71.551787,42.00148799906],[-71.551652,42.00156399906],[-71.551587,42.00162299906],[-71.5515,42.00168199906],[-71.551422,42.00171599906],[-71.55124,42.00176699906],[-71.55111,42.00183699906],[-71.55101,42.00186599906],[-71.550944,42.00189599906],[-71.550879,42.00194699906],[-71.550812,42.00198899906],[-71.550648,42.00204599906],[-71.550578,42.00208899906],[-71.550539,42.00213899906],[-71.550507,42.00226299906],[-71.550487,42.00231999906],[-71.550477,42.00237399906],[-71.550477,42.00245099906],[-71.55049,42.00257399906],[-71.550515,42.00265399906],[-71.550544,42.00270799906],[-71.550566,42.00277299906],[-71.550622,42.00287999906],[-71.550664,42.00293299906],[-71.550729,42.00298199906],[-71.550865,42.00310499906],[-71.550909,42.00317299906],[-71.550952,42.00326199906],[-71.550986,42.00331799906],[-71.551031,42.00332599906],[-71.551118,42.00332699906],[-71.551293,42.00334299906],[-71.551457,42.00343599906],[-71.551528,42.00347099906],[-71.55154,42.00354599906],[-71.551562,42.00360999906],[-71.551598,42.00366099906],[-71.551645,42.00371499906],[-71.551694,42.00384899906],[-71.551744,42.00390799906],[-71.551822,42.00396899906],[-71.551856,42.00401999906],[-71.551879,42.00409899906],[-71.551983,42.00420199906],[-71.552032,42.00427799906],[-71.552062,42.00433999906],[-71.552107,42.00439599906],[-71.552143,42.00444999906],[-71.552482,42.00502499906],[-71.552399,42.00548699906],[-71.552276,42.00612499906],[-71.552009,42.00671399906],[-71.551717,42.00723999906],[-71.551232,42.00775299906],[-71.550669,42.00887999906],[-71.550642,42.00893599906],[-71.55135,42.00975999906],[-71.551634,42.01038499906],[-71.551809,42.01131799906],[-71.551904,42.01209999906],[-71.551984,42.01295799906],[-71.552334,42.01321299906],[-71.553154,42.01344099906],[-71.55337,42.01451199906],[-71.553526,42.01450799906],[-71.553618,42.01450499906],[-71.558748,42.01438799906],[-71.565485,42.01423499906],[-71.567578,42.01418699906],[-71.570322,42.01412399906],[-71.571346,42.01410099906],[-71.571897,42.01408799906],[-71.572386,42.01407299906],[-71.573055,42.01407099906],[-71.573399,42.01406099906],[-71.575887,42.01400699906],[-71.576188,42.01398999906],[-71.576816,42.01397499906],[-71.57845,42.01393799906],[-71.580471,42.01388899906],[-71.581528,42.01386699906],[-71.583019,42.01383299906],[-71.584608,42.01379599906],[-71.585356,42.01377799906],[-71.586861,42.01374299906],[-71.586988,42.01374099906],[-71.587254,42.01373399906],[-71.591389,42.01363899906],[-71.594116,42.01357499906]]]}}"}, +{"type": "blockgroup", "typeId": 128021, "areaId": 28968, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.557073,41.99891099906],[-71.556386,41.99807299906],[-71.555986,41.99767199906],[-71.555846,41.99726299906],[-71.556077,41.99698799906],[-71.556804,41.99667299906],[-71.556832,41.99666999906],[-71.556808,41.99661199906],[-71.556763,41.99650199906],[-71.556709,41.99635699906],[-71.556109,41.99486899906],[-71.555702,41.99392299906],[-71.555561,41.99362399906],[-71.555504,41.99350399906],[-71.555367,41.99324799906],[-71.55497,41.99255399906],[-71.55452,41.99184399906],[-71.554245,41.99148599906],[-71.553986,41.99111199906],[-71.553841,41.99093999906],[-71.553467,41.99048199906],[-71.553192,41.99016999906],[-71.552841,41.98979899906],[-71.552254,41.98918899906],[-71.552048,41.98899499906],[-71.55201,41.98896799906],[-71.551865,41.98882699906],[-71.551506,41.98850599906],[-71.551125,41.98817799906],[-71.550705,41.98783899906],[-71.550146,41.98741099906],[-71.548897,41.98647299906],[-71.547723,41.98557299906],[-71.546867,41.98491699906],[-71.546432,41.98457699906],[-71.54599,41.98424499906],[-71.545082,41.98353999906],[-71.544805,41.98333599906],[-71.54464,41.98321499906],[-71.543633,41.98245599906],[-71.542961,41.98193699906],[-71.541466,41.98079699906],[-71.541,41.98114799906],[-71.540779,41.98133899906],[-71.540512,41.98162099906],[-71.540306,41.98187999906],[-71.540115,41.98219299906],[-71.539925,41.98245599906],[-71.539703,41.98279599906],[-71.539536,41.98298999906],[-71.539124,41.98360799906],[-71.538933,41.98387899906],[-71.538795,41.98403899906],[-71.53849,41.98426099906],[-71.538221,41.98439999906],[-71.538112,41.98445599906],[-71.538063,41.98448099906],[-71.537913,41.98456299906],[-71.537767,41.98464199906],[-71.536926,41.98509999906],[-71.536621,41.98525599906],[-71.536263,41.98535499906],[-71.535858,41.98547399906],[-71.535675,41.98561099906],[-71.5354,41.98590499906],[-71.535156,41.98613399906],[-71.535004,41.98633599906],[-71.534859,41.98657999906],[-71.534668,41.98741499906],[-71.534546,41.98786899906],[-71.534487,41.98836099906],[-71.534485,41.98837999906],[-71.534424,41.98866999906],[-71.534363,41.98884599906],[-71.534279,41.98904399906],[-71.534126,41.98923099906],[-71.533836,41.98953599906],[-71.533806,41.98955499906],[-71.533669,41.98965499906],[-71.53334,41.98985699906],[-71.532936,41.98977699906],[-71.532715,41.98974199906],[-71.532295,41.98967399906],[-71.531754,41.98957399906],[-71.532235,41.99107499906],[-71.532355,41.99142999906],[-71.532386,41.99149999906],[-71.532651,41.99210499906],[-71.532658,41.99212099906],[-71.532957,41.99284499906],[-71.532964,41.99286299906],[-71.533195,41.99341999906],[-71.53383,41.99341099906],[-71.534597,41.99345899906],[-71.534719,41.99347299906],[-71.536484,41.99367299906],[-71.538345,41.99391599906],[-71.539035,41.99400899906],[-71.539724,41.99408999906],[-71.53981,41.99417099906],[-71.539909,41.99425499906],[-71.54023,41.99444999906],[-71.54052,41.99461399906],[-71.540878,41.99480399906],[-71.54123,41.99499099906],[-71.541611,41.99520099906],[-71.542023,41.99543799906],[-71.542374,41.99562799906],[-71.542755,41.99584999906],[-71.543274,41.99616599906],[-71.543556,41.99631499906],[-71.543922,41.99653999906],[-71.544159,41.99666599906],[-71.54438,41.99680699906],[-71.545074,41.99707399906],[-71.545761,41.99731099906],[-71.546143,41.99742499906],[-71.546906,41.99768799906],[-71.547089,41.99777199906],[-71.547287,41.99787499906],[-71.547508,41.99801299906],[-71.547783,41.99817699906],[-71.547943,41.99829499906],[-71.54818,41.99844699906],[-71.548424,41.99858099906],[-71.548517,41.99862299906],[-71.54879,41.99874499906],[-71.549019,41.99883299906],[-71.549538,41.99902299906],[-71.550964,41.99954599906],[-71.551254,41.99964099906],[-71.551559,41.99972899906],[-71.551758,41.99977099906],[-71.551994,41.99980899906],[-71.552686,41.99987899906],[-71.552814,41.99989199906],[-71.55259,41.99958999906],[-71.552263,41.99922299906],[-71.552219,41.99869599906],[-71.552801,41.99862199906],[-71.553458,41.99883499906],[-71.554548,41.99913799906],[-71.555801,41.99950399906],[-71.556598,41.99953599906],[-71.5567,41.99946799906],[-71.556834,41.99937799906],[-71.556966,41.99928999906],[-71.557037,41.99924199906],[-71.557047,41.99914899906],[-71.557073,41.99891099906]]]}}"}, +{"type": "blockgroup", "typeId": 128022, "areaId": 28969, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.541466,41.98079699906],[-71.541298,41.98066299906],[-71.540756,41.98025499906],[-71.540291,41.97988899906],[-71.539246,41.97911499906],[-71.538643,41.97869099906],[-71.538246,41.97841999906],[-71.537854,41.97816599906],[-71.537436,41.97792299906],[-71.536856,41.97759399906],[-71.536114,41.97719699906],[-71.535441,41.97687699906],[-71.534868,41.97661699906],[-71.534771,41.97657799906],[-71.534499,41.97646699906],[-71.534381,41.97641499906],[-71.534321,41.97639399906],[-71.533907,41.97623599906],[-71.533452,41.97605899906],[-71.532932,41.97587199906],[-71.532362,41.97569299906],[-71.531957,41.97557399906],[-71.531504,41.97543699906],[-71.531044,41.97531799906],[-71.530511,41.97518799906],[-71.529892,41.97504399906],[-71.529724,41.97501799906],[-71.529573,41.97498699906],[-71.529152,41.97489899906],[-71.528914,41.97484499906],[-71.528839,41.97482699906],[-71.528114,41.97466999906],[-71.527405,41.97453299906],[-71.526657,41.97437999906],[-71.526016,41.97425499906],[-71.524873,41.97402199906],[-71.523613,41.97376599906],[-71.523518,41.97374599906],[-71.522812,41.97359499906],[-71.522682,41.97355999906],[-71.522188,41.97344399906],[-71.521172,41.97320599906],[-71.519226,41.97274399906],[-71.517281,41.97229399906],[-71.516776,41.97217199906],[-71.51635,41.97206899906],[-71.51597,41.97197999906],[-71.515251,41.97181299906],[-71.514687,41.97167999906],[-71.514041,41.97152799906],[-71.513793,41.97146899906],[-71.511047,41.97082099906],[-71.509827,41.97054299906],[-71.508728,41.97028099906],[-71.508644,41.97026099906],[-71.508118,41.97013599906],[-71.507759,41.97005099906],[-71.507622,41.97000499906],[-71.507469,41.96994799906],[-71.507309,41.96987499906],[-71.507118,41.96977999906],[-71.506945,41.96967899906],[-71.506882,41.96964299906],[-71.506754,41.96955799906],[-71.50666,41.96950099906],[-71.506119,41.96914299906],[-71.505404,41.96871099906],[-71.505332,41.96876799906],[-71.505959,41.96918499906],[-71.506203,41.96937199906],[-71.506639,41.96975999906],[-71.507591,41.97062299906],[-71.507843,41.97084399906],[-71.507912,41.97092099906],[-71.507988,41.97099299906],[-71.508179,41.97117999906],[-71.508301,41.97129099906],[-71.508478,41.97148499906],[-71.508507,41.97151599906],[-71.50869,41.97175199906],[-71.508842,41.97198099906],[-71.508995,41.97222499906],[-71.509537,41.97317099906],[-71.509687,41.97343699906],[-71.509938,41.97388299906],[-71.510834,41.97547899906],[-71.511337,41.97640999906],[-71.511375,41.97646699906],[-71.511978,41.97751999906],[-71.512421,41.97830099906],[-71.512558,41.97854399906],[-71.513191,41.97965999906],[-71.513329,41.97989699906],[-71.513565,41.98032399906],[-71.513985,41.98109099906],[-71.514679,41.98233799906],[-71.514832,41.98262399906],[-71.514992,41.98283799906],[-71.51516,41.98300599906],[-71.515274,41.98306299906],[-71.515419,41.98313899906],[-71.515694,41.98325299906],[-71.515816,41.98327999906],[-71.516129,41.98334099906],[-71.516762,41.98340999906],[-71.517235,41.98343699906],[-71.517624,41.98353999906],[-71.517754,41.98356999906],[-71.517799,41.98358899906],[-71.518066,41.98369599906],[-71.518547,41.98396299906],[-71.518806,41.98412299906],[-71.51915,41.98432899906],[-71.519501,41.98458499906],[-71.519569,41.98463399906],[-71.519997,41.98488999906],[-71.520203,41.98500399906],[-71.520241,41.98502699906],[-71.520424,41.98511899906],[-71.52063,41.98520699906],[-71.521141,41.98534799906],[-71.521545,41.98544699906],[-71.521645,41.98546999906],[-71.522072,41.98558399906],[-71.522354,41.98565299906],[-71.522758,41.98579799906],[-71.52327,41.98599199906],[-71.523773,41.98616399906],[-71.523796,41.98617599906],[-71.523857,41.98619499906],[-71.524452,41.98640799906],[-71.524811,41.98654599906],[-71.525093,41.98665599906],[-71.525494,41.98684499906],[-71.525658,41.98692299906],[-71.525986,41.98710599906],[-71.526382,41.98736599906],[-71.527084,41.98784299906],[-71.527664,41.98822399906],[-71.528008,41.98840699906],[-71.528313,41.98853299906],[-71.530106,41.98916599906],[-71.530739,41.98935699906],[-71.53112,41.98945599906],[-71.531754,41.98957399906],[-71.532295,41.98967399906],[-71.532715,41.98974199906],[-71.532936,41.98977699906],[-71.53334,41.98985699906],[-71.533669,41.98965499906],[-71.533806,41.98955499906],[-71.533836,41.98953599906],[-71.534126,41.98923099906],[-71.534279,41.98904399906],[-71.534363,41.98884599906],[-71.534424,41.98866999906],[-71.534485,41.98837999906],[-71.534487,41.98836099906],[-71.534546,41.98786899906],[-71.534668,41.98741499906],[-71.534859,41.98657999906],[-71.535004,41.98633599906],[-71.535156,41.98613399906],[-71.5354,41.98590499906],[-71.535675,41.98561099906],[-71.535858,41.98547399906],[-71.536263,41.98535499906],[-71.536621,41.98525599906],[-71.536926,41.98509999906],[-71.537767,41.98464199906],[-71.537913,41.98456299906],[-71.538063,41.98448099906],[-71.538112,41.98445599906],[-71.538221,41.98439999906],[-71.53849,41.98426099906],[-71.538795,41.98403899906],[-71.538933,41.98387899906],[-71.539124,41.98360799906],[-71.539536,41.98298999906],[-71.539703,41.98279599906],[-71.539925,41.98245599906],[-71.540115,41.98219299906],[-71.540306,41.98187999906],[-71.540512,41.98162099906],[-71.540779,41.98133899906],[-71.541,41.98114799906],[-71.541466,41.98079699906]]]}}"}, +{"type": "blockgroup", "typeId": 128031, "areaId": 28970, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.578953,41.99914099906],[-71.578911,41.99899299906],[-71.578835,41.99882099906],[-71.578484,41.99835599906],[-71.577843,41.99753599906],[-71.577682,41.99734499906],[-71.57737,41.99694399906],[-71.577065,41.99656699906],[-71.576714,41.99615099906],[-71.5767,41.99613299906],[-71.576578,41.99597299906],[-71.576564,41.99595399906],[-71.57621,41.99549099906],[-71.575981,41.99516699906],[-71.575706,41.99480099906],[-71.575432,41.99441099906],[-71.575089,41.99394999906],[-71.574745,41.99347299906],[-71.574524,41.99317599906],[-71.574211,41.99272199906],[-71.57373,41.99208099906],[-71.573341,41.99152399906],[-71.573247,41.99139499906],[-71.572701,41.99064599906],[-71.572661,41.99058899906],[-71.572037,41.98970399906],[-71.571472,41.98886899906],[-71.571121,41.98837299906],[-71.570862,41.98796099906],[-71.570381,41.98725899906],[-71.569984,41.98666799906],[-71.569588,41.98612599906],[-71.568924,41.98513399906],[-71.568611,41.98469499906],[-71.568283,41.98422199906],[-71.567879,41.98362699906],[-71.567337,41.98283799906],[-71.566902,41.98224299906],[-71.566719,41.98203699906],[-71.566536,41.98184599906],[-71.566299,41.98163599906],[-71.566048,41.98142199906],[-71.565247,41.98082399906],[-71.56511,41.98071999906],[-71.564758,41.98045299906],[-71.563332,41.97941999906],[-71.562828,41.97904199906],[-71.561768,41.97826399906],[-71.560989,41.97767599906],[-71.560631,41.97739399906],[-71.56041,41.97720299906],[-71.560158,41.97695899906],[-71.55954,41.97630699906],[-71.559174,41.97588699906],[-71.5588,41.97537999906],[-71.558502,41.97495999906],[-71.558159,41.97449499906],[-71.557991,41.97422799906],[-71.557854,41.97399099906],[-71.557785,41.97383099906],[-71.557625,41.97340399906],[-71.557449,41.97283599906],[-71.557341,41.97252799906],[-71.557327,41.97248799906],[-71.557228,41.97216399906],[-71.557114,41.97184799906],[-71.557014,41.97149299906],[-71.556885,41.97113799906],[-71.556786,41.97081799906],[-71.556572,41.97019199906],[-71.556539,41.97010699906],[-71.556488,41.96997499906],[-71.556374,41.96976899906],[-71.556244,41.96956999906],[-71.556114,41.96939099906],[-71.555916,41.96917299906],[-71.555481,41.96874599906],[-71.555222,41.96850199906],[-71.554993,41.96826899906],[-71.554771,41.96803299906],[-71.554611,41.96783799906],[-71.554474,41.96762499906],[-71.554337,41.96739999906],[-71.554245,41.96717499906],[-71.553818,41.96597699906],[-71.553673,41.96554199906],[-71.553291,41.96448899906],[-71.55323,41.96430399906],[-71.553139,41.96403099906],[-71.553055,41.96380999906],[-71.552963,41.96358499906],[-71.552834,41.96335599906],[-71.55265,41.96306599906],[-71.551498,41.96133799906],[-71.551117,41.96078099906],[-71.550484,41.95981199906],[-71.550163,41.95934699906],[-71.549934,41.95899199906],[-71.54969,41.95864499906],[-71.549248,41.95797699906],[-71.549095,41.95772199906],[-71.54895,41.95743199906],[-71.548798,41.95708099906],[-71.548012,41.95507399906],[-71.547798,41.95457499906],[-71.547394,41.95454399906],[-71.546982,41.95454399906],[-71.546471,41.95458199906],[-71.546028,41.95464299906],[-71.54554,41.95471599906],[-71.545158,41.95478099906],[-71.544853,41.95484899906],[-71.544479,41.95496699906],[-71.544197,41.95508999906],[-71.543892,41.95525399906],[-71.543701,41.95538299906],[-71.543637,41.95542999906],[-71.543434,41.95557799906],[-71.543205,41.95577999906],[-71.543037,41.95595899906],[-71.54287,41.95619599906],[-71.542717,41.95648199906],[-71.542625,41.95672199906],[-71.542557,41.95705799906],[-71.542419,41.95809199906],[-71.542351,41.95842699906],[-71.542274,41.95863699906],[-71.542183,41.95880499906],[-71.542084,41.95894999906],[-71.541924,41.95886999906],[-71.541893,41.95883599906],[-71.541664,41.95857999906],[-71.541382,41.95828999906],[-71.541107,41.95806099906],[-71.540894,41.95786699906],[-71.540749,41.95777499906],[-71.540573,41.95774099906],[-71.540451,41.95772599906],[-71.540253,41.95773299906],[-71.539513,41.95791199906],[-71.539131,41.95799299906],[-71.53846,41.95806899906],[-71.538078,41.95813399906],[-71.537834,41.95821799906],[-71.536911,41.95859499906],[-71.535965,41.95896499906],[-71.535751,41.95903799906],[-71.535553,41.95906399906],[-71.535332,41.95904199906],[-71.535126,41.95904899906],[-71.534805,41.95911799906],[-71.533424,41.95950699906],[-71.532974,41.95963699906],[-71.532661,41.95973199906],[-71.532494,41.95977799906],[-71.532379,41.95979699906],[-71.532249,41.95980499906],[-71.532127,41.95980099906],[-71.532021,41.95978199906],[-71.531891,41.95973999906],[-71.531799,41.95968599906],[-71.531677,41.95960599906],[-71.53157,41.95955299906],[-71.53141,41.95951099906],[-71.531067,41.95946099906],[-71.53094,41.95944599906],[-71.530853,41.95943499906],[-71.530792,41.95942299906],[-71.53064,41.95940799906],[-71.530603,41.95940699906],[-71.530518,41.95940399906],[-71.530289,41.95940399906],[-71.52993,41.95941899906],[-71.529716,41.95943499906],[-71.529182,41.95948399906],[-71.529007,41.95949599906],[-71.528282,41.95948399906],[-71.527924,41.95947299906],[-71.52758,41.95944199906],[-71.527252,41.95940399906],[-71.526695,41.95934699906],[-71.526344,41.95932399906],[-71.526106,41.95928999906],[-71.525772,41.95921699906],[-71.5252,41.95908399906],[-71.524872,41.95902599906],[-71.524139,41.95892299906],[-71.524055,41.95890799906],[-71.52359,41.95884699906],[-71.523262,41.95878999906],[-71.523094,41.95875199906],[-71.522964,41.95869399906],[-71.522858,41.95863299906],[-71.52272,41.95851899906],[-71.522675,41.95846899906],[-71.52243,41.95816799906],[-71.522179,41.95781699906],[-71.522003,41.95759599906],[-71.521881,41.95749299906],[-71.521729,41.95741299906],[-71.520988,41.95713399906],[-71.520882,41.95706899906],[-71.520798,41.95700799906],[-71.520714,41.95692799906],[-71.520279,41.95640599906],[-71.520187,41.95627599906],[-71.51992,41.95583299906],[-71.519867,41.95570799906],[-71.519829,41.95564699906],[-71.519783,41.95558899906],[-71.51973,41.95553599906],[-71.519623,41.95545999906],[-71.519508,41.95542099906],[-71.519424,41.95541399906],[-71.519257,41.95542099906],[-71.519043,41.95544399906],[-71.518883,41.95544099906],[-71.518806,41.95543299906],[-71.5187,41.95541399906],[-71.518593,41.95538699906],[-71.518494,41.95535299906],[-71.518356,41.95528399906],[-71.518219,41.95520799906],[-71.518097,41.95512799906],[-71.517975,41.95502099906],[-71.51783,41.95492199906],[-71.517746,41.95487999906],[-71.517578,41.95480699906],[-71.51696,41.95457499906],[-71.516342,41.95429599906],[-71.515724,41.95391799906],[-71.515572,41.95384199906],[-71.515495,41.95381199906],[-71.51535,41.95377299906],[-71.515282,41.95376599906],[-71.515205,41.95377299906],[-71.515129,41.95378899906],[-71.514992,41.95382699906],[-71.514572,41.95397599906],[-71.514038,41.95419299906],[-71.512283,41.95474999906],[-71.511963,41.95484199906],[-71.510582,41.95518899906],[-71.509789,41.95527299906],[-71.509697,41.95527999906],[-71.509529,41.95530299906],[-71.509361,41.95533399906],[-71.509201,41.95537899906],[-71.509132,41.95540599906],[-71.509064,41.95544099906],[-71.508942,41.95552099906],[-71.508728,41.95564699906],[-71.508568,41.95570799906],[-71.508484,41.95572999906],[-71.5084,41.95574599906],[-71.508308,41.95575299906],[-71.508209,41.95574999906],[-71.508118,41.95573399906],[-71.508034,41.95571099906],[-71.50795,41.95568099906],[-71.507874,41.95563899906],[-71.507812,41.95559299906],[-71.507706,41.95548999906],[-71.507538,41.95534099906],[-71.507004,41.95491799906],[-71.50692,41.95486499906],[-71.506836,41.95481899906],[-71.506783,41.95479999906],[-71.506683,41.95477299906],[-71.506592,41.95476499906],[-71.506416,41.95477299906],[-71.506317,41.95478799906],[-71.506119,41.95482999906],[-71.505554,41.95498299906],[-71.50518,41.95509299906],[-71.505029,41.95514799906],[-71.504196,41.95545199906],[-71.503006,41.95590199906],[-71.502327,41.95614599906],[-71.501228,41.95650099906],[-71.50116,41.95651599906],[-71.501099,41.95653499906],[-71.501045,41.95655799906],[-71.500992,41.95658899906],[-71.500946,41.95662699906],[-71.500908,41.95666499906],[-71.50087,41.95671799906],[-71.500839,41.95677899906],[-71.500824,41.95684099906],[-71.500824,41.95690499906],[-71.500832,41.95697399906],[-71.500847,41.95704299906],[-71.501144,41.95764899906],[-71.501305,41.95795799906],[-71.501343,41.95806499906],[-71.50135,41.95812199906],[-71.501335,41.95818699906],[-71.501312,41.95824099906],[-71.501259,41.95828599906],[-71.501216,41.95831099906],[-71.501204,41.95831799906],[-71.501152,41.95834699906],[-71.501074,41.95838199906],[-71.501023,41.95840499906],[-71.501007,41.95841199906],[-71.500981,41.95842099906],[-71.500841,41.95846899906],[-71.500671,41.95852699906],[-71.499687,41.95890799906],[-71.498619,41.95930499906],[-71.498306,41.95939999906],[-71.498169,41.95943799906],[-71.498039,41.95945699906],[-71.497871,41.95947599906],[-71.497597,41.95953799906],[-71.497261,41.95962499906],[-71.496742,41.95976599906],[-71.496292,41.95989599906],[-71.496086,41.95994899906],[-71.495926,41.95982399906],[-71.495659,41.95952599906],[-71.494995,41.95868699906],[-71.494453,41.95798899906],[-71.494255,41.95771399906],[-71.494034,41.95733299906],[-71.493927,41.95712699906],[-71.493843,41.95692799906],[-71.4925,41.95544899906],[-71.492211,41.95519299906],[-71.491849,41.95496899906],[-71.491605,41.95486099906],[-71.491459,41.95472899906],[-71.491374,41.95453599906],[-71.491278,41.95436699906],[-71.491031,41.95429299906],[-71.490741,41.95421799906],[-71.490616,41.95416999906],[-71.489952,41.95346099906],[-71.489876,41.95336899906],[-71.48983,41.95332699906],[-71.489754,41.95327799906],[-71.489708,41.95325499906],[-71.489616,41.95321999906],[-71.489418,41.95315899906],[-71.488983,41.95304099906],[-71.488762,41.95294999906],[-71.488709,41.95292099906],[-71.488556,41.95281999906],[-71.488495,41.95276999906],[-71.488388,41.95266699906],[-71.487946,41.95228999906],[-71.4879,41.95225499906],[-71.487793,41.95218999906],[-71.487732,41.95215999906],[-71.487526,41.95208699906],[-71.487401,41.95205599906],[-71.48741,41.95209899906],[-71.48741,41.95228299906],[-71.487416,41.95234399906],[-71.487435,41.95240099906],[-71.487471,41.95244899906],[-71.487689,41.95249499906],[-71.487835,41.95255099906],[-71.487887,41.95259999906],[-71.487901,41.95266799906],[-71.487882,41.95272199906],[-71.487854,41.95277799906],[-71.487751,41.95287199906],[-71.487747,41.95293999906],[-71.487621,41.95311599906],[-71.487615,41.95317299906],[-71.487724,41.95346399906],[-71.487754,41.95352199906],[-71.487769,41.95358299906],[-71.487846,41.95378899906],[-71.487935,41.95401899906],[-71.487954,41.95407099906],[-71.488071,41.95437699906],[-71.488072,41.95443499906],[-71.488088,41.95449299906],[-71.488141,41.95461299906],[-71.48815,41.95468499906],[-71.488149,41.95480599906],[-71.488129,41.95487099906],[-71.488072,41.95494099906],[-71.488021,41.95498199906],[-71.487941,41.95503399906],[-71.487891,41.95506099906],[-71.48783,41.95510299906],[-71.487766,41.95515599906],[-71.487692,41.95520599906],[-71.487635,41.95525399906],[-71.487624,41.95532299906],[-71.487629,41.95545499906],[-71.487684,41.95559499906],[-71.487691,41.95566699906],[-71.48769,41.95578699906],[-71.487664,41.95585299906],[-71.487597,41.95595999906],[-71.487547,41.95599999906],[-71.487491,41.95601299906],[-71.487466,41.95601499906],[-71.487419,41.95605499906],[-71.487367,41.95609599906],[-71.487256,41.95619699906],[-71.487128,41.95629299906],[-71.487049,41.95632499906],[-71.48697,41.95631499906],[-71.486891,41.95627999906],[-71.486811,41.95623199906],[-71.486683,41.95612899906],[-71.486553,41.95605999906],[-71.486478,41.95600999906],[-71.486373,41.95589899906],[-71.486303,41.95586099906],[-71.486224,41.95583899906],[-71.486145,41.95583599906],[-71.486062,41.95583899906],[-71.485986,41.95585199906],[-71.485909,41.95583999906],[-71.485852,41.95579499906],[-71.485758,41.95579299906],[-71.485671,41.95581099906],[-71.485594,41.95583399906],[-71.485509,41.95585399906],[-71.485231,41.95589299906],[-71.485142,41.95591699906],[-71.485077,41.95595599906],[-71.48496,41.95607799906],[-71.484973,41.95613799906],[-71.485084,41.95622999906],[-71.4852,41.95631199906],[-71.485243,41.95635799906],[-71.485272,41.95641199906],[-71.485315,41.95646599906],[-71.485362,41.95651499906],[-71.48542,41.95655399906],[-71.485476,41.95660199906],[-71.485484,41.95665799906],[-71.485408,41.95667299906],[-71.48536,41.95669399906],[-71.485311,41.95674199906],[-71.485314,41.95681099906],[-71.485354,41.95687299906],[-71.485442,41.95697399906],[-71.48547,41.95703299906],[-71.485513,41.95709199906],[-71.48557,41.95713999906],[-71.485633,41.95716399906],[-71.485781,41.95712499906],[-71.485865,41.95713499906],[-71.485909,41.95716499906],[-71.485993,41.95722999906],[-71.48598,41.95728399906],[-71.485985,41.95734999906],[-71.486017,41.95740599906],[-71.486135,41.95752099906],[-71.486233,41.95762699906],[-71.486306,41.95765499906],[-71.486362,41.95768199906],[-71.486368,41.95780199906],[-71.48642,41.95785499906],[-71.486452,41.95790499906],[-71.486456,41.95807699906],[-71.486476,41.95813899906],[-71.486501,41.95819499906],[-71.486538,41.95824099906],[-71.486613,41.95827499906],[-71.486782,41.95833799906],[-71.48697,41.95837999906],[-71.487153,41.95840699906],[-71.487292,41.95845599906],[-71.487313,41.95847999906],[-71.487313,41.95854399906],[-71.487287,41.95860699906],[-71.487152,41.95867499906],[-71.487087,41.95872299906],[-71.487052,41.95875399906],[-71.486978,41.95881399906],[-71.486869,41.95893099906],[-71.486747,41.95909599906],[-71.486716,41.95915799906],[-71.486688,41.95928199906],[-71.486689,41.95940199906],[-71.486701,41.95946599906],[-71.486726,41.95952999906],[-71.486738,41.95959199906],[-71.486717,41.95965299906],[-71.486667,41.95970499906],[-71.486644,41.95976899906],[-71.486638,41.95983599906],[-71.486614,41.95989399906],[-71.486613,41.96001399906],[-71.486583,41.96007199906],[-71.48652,41.96010499906],[-71.486375,41.96016099906],[-71.486338,41.96021899906],[-71.48625,41.96022899906],[-71.486163,41.96025199906],[-71.486095,41.96027599906],[-71.486063,41.96031199906],[-71.486064,41.96044199906],[-71.486075,41.96050199906],[-71.4861,41.96056999906],[-71.486162,41.96062099906],[-71.486308,41.96067899906],[-71.486456,41.96072399906],[-71.486545,41.96073899906],[-71.486647,41.96073899906],[-71.486747,41.96074399906],[-71.486829,41.96077099906],[-71.486886,41.96081099906],[-71.48698,41.96090499906],[-71.487015,41.96095599906],[-71.487039,41.96102699906],[-71.487045,41.96108599906],[-71.487041,41.96115499906],[-71.487012,41.96121399906],[-71.486991,41.96123199906],[-71.486952,41.96126599906],[-71.486911,41.96131399906],[-71.486929,41.96138099906],[-71.486993,41.96142599906],[-71.487165,41.96148599906],[-71.487221,41.96153599906],[-71.487284,41.96163999906],[-71.487289,41.96170299906],[-71.487303,41.96176199906],[-71.487341,41.96180999906],[-71.48737,41.96186599906],[-71.487421,41.96192099906],[-71.487437,41.96197799906],[-71.487437,41.96211799906],[-71.487431,41.96219499906],[-71.487409,41.96226799906],[-71.487372,41.96231999906],[-71.487319,41.96235899906],[-71.48729,41.96242699906],[-71.487292,41.96248699906],[-71.487314,41.96254899906],[-71.487373,41.96260299906],[-71.487446,41.96265199906],[-71.487497,41.96270599906],[-71.487523,41.96276399906],[-71.487555,41.96281799906],[-71.487576,41.96287199906],[-71.487578,41.96298999906],[-71.487588,41.96302799906],[-71.487625,41.96313899906],[-71.487654,41.96325099906],[-71.487642,41.96331099906],[-71.487594,41.96336299906],[-71.487527,41.96339999906],[-71.487462,41.96344299906],[-71.487316,41.96350799906],[-71.487118,41.96361099906],[-71.487072,41.96365399906],[-71.487033,41.96370699906],[-71.487027,41.96376899906],[-71.487027,41.96398599906],[-71.487015,41.96405399906],[-71.486986,41.96411299906],[-71.486973,41.96423799906],[-71.486968,41.96434999906],[-71.48696,41.96441499906],[-71.486943,41.96447299906],[-71.486911,41.96452899906],[-71.486816,41.96462199906],[-71.486808,41.96465499906],[-71.486781,41.96471299906],[-71.486781,41.96482299906],[-71.486827,41.96488699906],[-71.486887,41.96492899906],[-71.486919,41.96497899906],[-71.486924,41.96509799906],[-71.486908,41.96541599906],[-71.48689,41.96547099906],[-71.48685,41.96553499906],[-71.486799,41.96559199906],[-71.486746,41.96563199906],[-71.486676,41.96567299906],[-71.486629,41.96571399906],[-71.486591,41.96577099906],[-71.486535,41.96582099906],[-71.486476,41.96586399906],[-71.486439,41.96591099906],[-71.48644,41.96624299906],[-71.486461,41.96630599906],[-71.486492,41.96635799906],[-71.48654,41.96640999906],[-71.486668,41.96649399906],[-71.486729,41.96654699906],[-71.48678,41.96660199906],[-71.486854,41.96679799906],[-71.486973,41.96703999906],[-71.486999,41.96710499906],[-71.487043,41.96713499906],[-71.487087,41.96711099906],[-71.487116,41.96700299906],[-71.487169,41.96694799906],[-71.487249,41.96693399906],[-71.487335,41.96694499906],[-71.487493,41.96699399906],[-71.487582,41.96701699906],[-71.487657,41.96702899906],[-71.48782,41.96702899906],[-71.487894,41.96703999906],[-71.48796,41.96708399906],[-71.487995,41.96714299906],[-71.487995,41.96720599906],[-71.487988,41.96726699906],[-71.487937,41.96731899906],[-71.487835,41.96737699906],[-71.487755,41.96737099906],[-71.487664,41.96737799906],[-71.487599,41.96741399906],[-71.487456,41.96750899906],[-71.487405,41.96755099906],[-71.48736,41.96761499906],[-71.487338,41.96767899906],[-71.487335,41.96774899906],[-71.487344,41.96780699906],[-71.487381,41.96785399906],[-71.487441,41.96789499906],[-71.487537,41.96791899906],[-71.487616,41.96792599906],[-71.487938,41.96792699906],[-71.488039,41.96793299906],[-71.488115,41.96796899906],[-71.488188,41.96801299906],[-71.488246,41.96806799906],[-71.488274,41.96811999906],[-71.48828,41.96818199906],[-71.48828,41.96830199906],[-71.48826,41.96835399906],[-71.488193,41.96840799906],[-71.488124,41.96846299906],[-71.488012,41.96856999906],[-71.487938,41.96862399906],[-71.48782,41.96869499906],[-71.487719,41.96877099906],[-71.487651,41.96882899906],[-71.487547,41.96892799906],[-71.487483,41.96896699906],[-71.487345,41.96903099906],[-71.48729,41.96907399906],[-71.487172,41.96913599906],[-71.487169,41.96918999906],[-71.487103,41.96921799906],[-71.487025,41.96923999906],[-71.486961,41.96926899906],[-71.486902,41.96931199906],[-71.486848,41.96936099906],[-71.486786,41.96940799906],[-71.48673,41.96944199906],[-71.486681,41.96948899906],[-71.486677,41.96970799906],[-71.486706,41.96975999906],[-71.486737,41.96995399906],[-71.486839,41.96998399906],[-71.48691,41.96999799906],[-71.487012,41.97000799906],[-71.487065,41.97053799906],[-71.487058,41.97055899906],[-71.487086,41.97061999906],[-71.48712,41.97067799906],[-71.487126,41.97075099906],[-71.487203,41.97099899906],[-71.487225,41.97113799906],[-71.487245,41.97134399906],[-71.487282,41.97158399906],[-71.487294,41.97210699906],[-71.487297,41.97226099906],[-71.487307,41.97235899906],[-71.487538,41.97295999906],[-71.48774,41.97322399906],[-71.487912,41.97338299906],[-71.488276,41.97363199906],[-71.48856,41.97412299906],[-71.488792,41.97443299906],[-71.489096,41.97474299906],[-71.489063,41.97547799906],[-71.488971,41.97585699906],[-71.488968,41.97649599906],[-71.488951,41.97652299906],[-71.48895,41.97669699906],[-71.48888,41.97687399906],[-71.488845,41.97699099906],[-71.488796,41.97704699906],[-71.488724,41.97708599906],[-71.488642,41.97711099906],[-71.488552,41.97712899906],[-71.488471,41.97713199906],[-71.488392,41.97711199906],[-71.488309,41.97711099906],[-71.488227,41.97712099906],[-71.488149,41.97714599906],[-71.488079,41.97717599906],[-71.488019,41.97721999906],[-71.48798,41.97727899906],[-71.487931,41.97733299906],[-71.487928,41.97739099906],[-71.487936,41.97746699906],[-71.487954,41.97750999906],[-71.487959,41.97753599906],[-71.487961,41.97763399906],[-71.487969,41.97790599906],[-71.487969,41.97796199906],[-71.487959,41.97803199906],[-71.487959,41.97809999906],[-71.487967,41.97816999906],[-71.48802,41.97835599906],[-71.48802,41.97841399906],[-71.488007,41.97843199906],[-71.487859,41.97862999906],[-71.487833,41.97865699906],[-71.487774,41.97869699906],[-71.487713,41.97872899906],[-71.487651,41.97876999906],[-71.487364,41.97908499906],[-71.487929,41.97915399906],[-71.488045,41.97916699906],[-71.488152,41.97917999906],[-71.488283,41.97919599906],[-71.488727,41.97925099906],[-71.489029,41.97928699906],[-71.489547,41.97934999906],[-71.489687,41.97936399906],[-71.491746,41.97961199906],[-71.493721,41.97985099906],[-71.499427,41.98054099906],[-71.500579,41.98068399906],[-71.504636,41.98131099906],[-71.505352,41.98143699906],[-71.505849,41.98152399906],[-71.507066,41.98173699906],[-71.512992,41.98277699906],[-71.515274,41.98306299906],[-71.51516,41.98300599906],[-71.514992,41.98283799906],[-71.514832,41.98262399906],[-71.514679,41.98233799906],[-71.513985,41.98109099906],[-71.513565,41.98032399906],[-71.513329,41.97989699906],[-71.513191,41.97965999906],[-71.512558,41.97854399906],[-71.512421,41.97830099906],[-71.511978,41.97751999906],[-71.511375,41.97646699906],[-71.511337,41.97640999906],[-71.510834,41.97547899906],[-71.509938,41.97388299906],[-71.509687,41.97343699906],[-71.509537,41.97317099906],[-71.508995,41.97222499906],[-71.508842,41.97198099906],[-71.50869,41.97175199906],[-71.508507,41.97151599906],[-71.508478,41.97148499906],[-71.508301,41.97129099906],[-71.508179,41.97117999906],[-71.507988,41.97099299906],[-71.507912,41.97092099906],[-71.507843,41.97084399906],[-71.507591,41.97062299906],[-71.506639,41.96975999906],[-71.506203,41.96937199906],[-71.505959,41.96918499906],[-71.505332,41.96876799906],[-71.505404,41.96871099906],[-71.506119,41.96914299906],[-71.50666,41.96950099906],[-71.506754,41.96955799906],[-71.506882,41.96964299906],[-71.506945,41.96967899906],[-71.507118,41.96977999906],[-71.507309,41.96987499906],[-71.507469,41.96994799906],[-71.507622,41.97000499906],[-71.507759,41.97005099906],[-71.508118,41.97013599906],[-71.508644,41.97026099906],[-71.508728,41.97028099906],[-71.509827,41.97054299906],[-71.511047,41.97082099906],[-71.513793,41.97146899906],[-71.514041,41.97152799906],[-71.514687,41.97167999906],[-71.515251,41.97181299906],[-71.51597,41.97197999906],[-71.51635,41.97206899906],[-71.516776,41.97217199906],[-71.517281,41.97229399906],[-71.519226,41.97274399906],[-71.521172,41.97320599906],[-71.522188,41.97344399906],[-71.522682,41.97355999906],[-71.522812,41.97359499906],[-71.523518,41.97374599906],[-71.523613,41.97376599906],[-71.524873,41.97402199906],[-71.526016,41.97425499906],[-71.526657,41.97437999906],[-71.527405,41.97453299906],[-71.528114,41.97466999906],[-71.528839,41.97482699906],[-71.528914,41.97484499906],[-71.529152,41.97489899906],[-71.529573,41.97498699906],[-71.529724,41.97501799906],[-71.529892,41.97504399906],[-71.530511,41.97518799906],[-71.531044,41.97531799906],[-71.531504,41.97543699906],[-71.531957,41.97557399906],[-71.532362,41.97569299906],[-71.532932,41.97587199906],[-71.533452,41.97605899906],[-71.533907,41.97623599906],[-71.534321,41.97639399906],[-71.534381,41.97641499906],[-71.534499,41.97646699906],[-71.534771,41.97657799906],[-71.534868,41.97661699906],[-71.535441,41.97687699906],[-71.536114,41.97719699906],[-71.536856,41.97759399906],[-71.537436,41.97792299906],[-71.537854,41.97816599906],[-71.538246,41.97841999906],[-71.538643,41.97869099906],[-71.539246,41.97911499906],[-71.540291,41.97988899906],[-71.540756,41.98025499906],[-71.541298,41.98066299906],[-71.541466,41.98079699906],[-71.542961,41.98193699906],[-71.543633,41.98245599906],[-71.54464,41.98321499906],[-71.544805,41.98333599906],[-71.545082,41.98353999906],[-71.54599,41.98424499906],[-71.546432,41.98457699906],[-71.546867,41.98491699906],[-71.547723,41.98557299906],[-71.548897,41.98647299906],[-71.550146,41.98741099906],[-71.550705,41.98783899906],[-71.551125,41.98817799906],[-71.551506,41.98850599906],[-71.551865,41.98882699906],[-71.55201,41.98896799906],[-71.552048,41.98899499906],[-71.552254,41.98918899906],[-71.552841,41.98979899906],[-71.553192,41.99016999906],[-71.553467,41.99048199906],[-71.553841,41.99093999906],[-71.553986,41.99111199906],[-71.554245,41.99148599906],[-71.55452,41.99184399906],[-71.55497,41.99255399906],[-71.555367,41.99324799906],[-71.555504,41.99350399906],[-71.555561,41.99362399906],[-71.555702,41.99392299906],[-71.556109,41.99486899906],[-71.556709,41.99635699906],[-71.556763,41.99650199906],[-71.556808,41.99661199906],[-71.556832,41.99666999906],[-71.557029,41.99664699906],[-71.557796,41.99655799906],[-71.558543,41.99651199906],[-71.559239,41.99638999906],[-71.560167,41.99638999906],[-71.560589,41.99644099906],[-71.560704,41.99644099906],[-71.560916,41.99644699906],[-71.561215,41.99644899906],[-71.561616,41.99645699906],[-71.561808,41.99648099906],[-71.562294,41.99649399906],[-71.562723,41.99649899906],[-71.562785,41.99648799906],[-71.56282,41.99648199906],[-71.562892,41.99645299906],[-71.562955,41.99641999906],[-71.563033,41.99641499906],[-71.563147,41.99638799906],[-71.563198,41.99634499906],[-71.563295,41.99632599906],[-71.563473,41.99630599906],[-71.563503,41.99628199906],[-71.563521,41.99622599906],[-71.56357,41.99621199906],[-71.56365,41.99620399906],[-71.563726,41.99620099906],[-71.563806,41.99618499906],[-71.563899,41.99619799906],[-71.563997,41.99618699906],[-71.56481,41.99597599906],[-71.56526,41.99614899906],[-71.5659,41.99657099906],[-71.56613,41.99671199906],[-71.566409,41.99688399906],[-71.567745,41.99764899906],[-71.568538,41.99837099906],[-71.568718,41.99852299906],[-71.568741,41.99857499906],[-71.568785,41.99862699906],[-71.568839,41.99867899906],[-71.56892,41.99873499906],[-71.568974,41.99878499906],[-71.569044,41.99884099906],[-71.569094,41.99888799906],[-71.569161,41.99893699906],[-71.56932,41.99902999906],[-71.569475,41.99909799906],[-71.569518,41.99914599906],[-71.569584,41.99915799906],[-71.569662,41.99916699906],[-71.569837,41.99917199906],[-71.570044,41.99922299906],[-71.570077,41.99928699906],[-71.570121,41.99934099906],[-71.570186,41.99938599906],[-71.570258,41.99942099906],[-71.570295,41.99946499906],[-71.570306,41.99951099906],[-71.570398,41.99952199906],[-71.570556,41.99952799906],[-71.570629,41.99951499906],[-71.570776,41.99932499906],[-71.570813,41.99925599906],[-71.570852,41.99920199906],[-71.571164,41.99896899906],[-71.57126,41.99891399906],[-71.571415,41.99884099906],[-71.571616,41.99880799906],[-71.571847,41.99872199906],[-71.571938,41.99869699906],[-71.572011,41.99869299906],[-71.572084,41.99865699906],[-71.572135,41.99861399906],[-71.572219,41.99856499906],[-71.572296,41.99853799906],[-71.572401,41.99850799906],[-71.572476,41.99847599906],[-71.572554,41.99842699906],[-71.572613,41.99837099906],[-71.572682,41.99834899906],[-71.572761,41.99831699906],[-71.572833,41.99829399906],[-71.572888,41.99825399906],[-71.573001,41.99824399906],[-71.573039,41.99823699906],[-71.573078,41.99822899906],[-71.573124,41.99821599906],[-71.573149,41.99820899906],[-71.573308,41.99817599906],[-71.573391,41.99816999906],[-71.573761,41.99816699906],[-71.574208,41.99817699906],[-71.574291,41.99818399906],[-71.574553,41.99822299906],[-71.574625,41.99823799906],[-71.574743,41.99824799906],[-71.574901,41.99824799906],[-71.575086,41.99830999906],[-71.57517,41.99832499906],[-71.575338,41.99833699906],[-71.575512,41.99837699906],[-71.575837,41.99837499906],[-71.576038,41.99838899906],[-71.576116,41.99840099906],[-71.576183,41.99842699906],[-71.576489,41.99849399906],[-71.576569,41.99850499906],[-71.576659,41.99853699906],[-71.576745,41.99855999906],[-71.576812,41.99858299906],[-71.576956,41.99864399906],[-71.577123,41.99868199906],[-71.57723,41.99876799906],[-71.577337,41.99879399906],[-71.57741,41.99882599906],[-71.577547,41.99890999906],[-71.577664,41.99894399906],[-71.577741,41.99895599906],[-71.577811,41.99897499906],[-71.577959,41.99904299906],[-71.578112,41.99909199906],[-71.578199,41.99911299906],[-71.578389,41.99911699906],[-71.578472,41.99913699906],[-71.578687,41.99913799906],[-71.578768,41.99914399906],[-71.578953,41.99914099906]]]}}"}, +{"type": "blockgroup", "typeId": 128032, "areaId": 28971, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.596898,41.96612299906],[-71.596637,41.96496899906],[-71.59618,41.96294299906],[-71.596167,41.96289399906],[-71.595978,41.96201799906],[-71.595235,41.95864199906],[-71.594832,41.95675599906],[-71.593658,41.95083599906],[-71.592451,41.94448799906],[-71.592278,41.94355899906],[-71.590404,41.93407799906],[-71.590312,41.93366499906],[-71.585399,41.93411599906],[-71.585034,41.93414899906],[-71.574369,41.93512699906],[-71.564713,41.93601399906],[-71.563121,41.93615999906],[-71.562104,41.93625299906],[-71.559964,41.93644999906],[-71.55978,41.93646599906],[-71.555328,41.93687399906],[-71.555542,41.93777799906],[-71.555641,41.93806499906],[-71.555855,41.93858699906],[-71.555961,41.93886399906],[-71.555992,41.93894599906],[-71.556145,41.93932299906],[-71.556366,41.93979299906],[-71.556483,41.93998099906],[-71.556533,41.94004499906],[-71.556631,41.94016899906],[-71.556816,41.94036099906],[-71.557686,41.94085299906],[-71.558052,41.94108599906],[-71.558319,41.94129599906],[-71.55851,41.94148599906],[-71.558769,41.94179199906],[-71.559112,41.94225599906],[-71.559181,41.94234799906],[-71.559227,41.94239799906],[-71.559326,41.94251599906],[-71.559465,41.94263899906],[-71.559352,41.94276099906],[-71.559338,41.94285399906],[-71.559364,41.94311099906],[-71.559372,41.94338199906],[-71.559349,41.94377499906],[-71.559311,41.94418699906],[-71.55928,41.94459899906],[-71.55925,41.94512199906],[-71.559207,41.94571999906],[-71.559204,41.94576299906],[-71.559158,41.94674699906],[-71.559151,41.94714699906],[-71.55913,41.94765599906],[-71.559128,41.94771599906],[-71.559097,41.94810099906],[-71.559059,41.94836399906],[-71.559042,41.94849899906],[-71.558952,41.94923399906],[-71.558929,41.94938299906],[-71.558899,41.94965399906],[-71.558868,41.95006199906],[-71.558846,41.95048899906],[-71.558807,41.95100799906],[-71.558792,41.95134399906],[-71.558777,41.95156499906],[-71.558754,41.95171699906],[-71.558693,41.95195799906],[-71.558754,41.95229699906],[-71.558838,41.95265599906],[-71.558952,41.95287299906],[-71.559135,41.95308299906],[-71.559273,41.95331599906],[-71.559418,41.95362899906],[-71.55957,41.95391499906],[-71.559776,41.95432299906],[-71.559937,41.95467799906],[-71.560081,41.95492899906],[-71.560257,41.95529599906],[-71.560432,41.95563899906],[-71.5606,41.95593999906],[-71.560707,41.95615799906],[-71.560783,41.95639399906],[-71.560966,41.95701599906],[-71.561058,41.95725999906],[-71.561218,41.95758099906],[-71.561302,41.95778699906],[-71.56144,41.95807599906],[-71.561577,41.95837799906],[-71.562109,41.95948299906],[-71.562225,41.95970499906],[-71.562477,41.96009799906],[-71.562637,41.96029999906],[-71.563072,41.96081199906],[-71.563232,41.96102499906],[-71.5634,41.96123099906],[-71.563515,41.96139099906],[-71.56366,41.96163199906],[-71.563751,41.96187199906],[-71.563812,41.96208599906],[-71.563912,41.96237599906],[-71.563965,41.96265399906],[-71.564049,41.96285999906],[-71.564201,41.96302799906],[-71.564362,41.96322999906],[-71.564522,41.96335199906],[-71.564651,41.96347799906],[-71.564766,41.96365399906],[-71.564888,41.96385999906],[-71.56498,41.96407699906],[-71.565033,41.96426399906],[-71.565041,41.96440499906],[-71.565025,41.96455399906],[-71.564972,41.96473699906],[-71.56498,41.96488599906],[-71.565033,41.96507299906],[-71.565117,41.96528999906],[-71.565224,41.96554599906],[-71.565331,41.96575899906],[-71.565475,41.96617099906],[-71.565567,41.96635799906],[-71.565598,41.96673299906],[-71.565604,41.96675499906],[-71.565651,41.96691099906],[-71.565796,41.96726999906],[-71.565872,41.96789199906],[-71.565926,41.96826899906],[-71.565971,41.96849399906],[-71.566032,41.96896399906],[-71.566093,41.96918099906],[-71.56617,41.96936799906],[-71.566277,41.96953199906],[-71.566399,41.96970699906],[-71.566589,41.96988699906],[-71.566765,41.97002799906],[-71.566994,41.97020299906],[-71.567444,41.97053499906],[-71.567596,41.97068399906],[-71.567726,41.97082899906],[-71.567848,41.97099299906],[-71.567993,41.97122599906],[-71.568138,41.97158099906],[-71.568222,41.97187399906],[-71.568237,41.97212199906],[-71.568298,41.97262199906],[-71.568314,41.97288099906],[-71.568405,41.97340799906],[-71.568443,41.97366299906],[-71.568527,41.97407199906],[-71.568588,41.97430799906],[-71.56868,41.97453699906],[-71.56881,41.97474699906],[-71.568977,41.97497199906],[-71.569168,41.97518499906],[-71.569298,41.97531499906],[-71.569511,41.97550599906],[-71.569695,41.97565099906],[-71.569916,41.97580699906],[-71.570038,41.97590999906],[-71.570107,41.97602099906],[-71.57019,41.97621899906],[-71.570244,41.97651299906],[-71.570312,41.97701299906],[-71.570381,41.97717999906],[-71.570541,41.97736699906],[-71.570717,41.97752399906],[-71.570908,41.97765399906],[-71.571068,41.97780999906],[-71.571182,41.97795099906],[-71.571259,41.97809199906],[-71.571273,41.97818699906],[-71.571281,41.97824099906],[-71.571281,41.97842399906],[-71.571297,41.97865299906],[-71.571335,41.97891599906],[-71.571411,41.97925199906],[-71.571487,41.97956799906],[-71.571515,41.97964699906],[-71.571594,41.97986999906],[-71.572006,41.98084299906],[-71.572159,41.98115499906],[-71.572258,41.98141499906],[-71.572296,41.98156699906],[-71.572319,41.98185699906],[-71.572319,41.98215899906],[-71.572395,41.98241399906],[-71.572426,41.98269999906],[-71.572693,41.98266199906],[-71.573349,41.98254799906],[-71.573624,41.98243699906],[-71.573845,41.98233399906],[-71.574188,41.98211299906],[-71.574455,41.98184999906],[-71.574661,41.98161699906],[-71.57489,41.98140299906],[-71.575027,41.98125499906],[-71.575264,41.98103299906],[-71.575546,41.98079299906],[-71.575806,41.98059499906],[-71.576057,41.98042699906],[-71.576416,41.98026299906],[-71.576729,41.98012899906],[-71.577072,41.98003399906],[-71.577629,41.97994999906],[-71.57798,41.97993899906],[-71.578804,41.98006799906],[-71.578967,41.97998999906],[-71.579155,41.97989999906],[-71.579361,41.97974799906],[-71.579708,41.97941599906],[-71.579872,41.97925899906],[-71.580139,41.97890499906],[-71.580391,41.97858399906],[-71.580589,41.97824099906],[-71.580676,41.97803399906],[-71.58075,41.97786299906],[-71.580948,41.97755399906],[-71.581215,41.97726099906],[-71.58149,41.97694399906],[-71.581779,41.97663499906],[-71.58197,41.97639799906],[-71.582222,41.97587199906],[-71.582397,41.97556699906],[-71.582565,41.97535299906],[-71.582802,41.97512799906],[-71.583389,41.97461299906],[-71.583672,41.97429799906],[-71.583691,41.97427499906],[-71.5839,41.97395699906],[-71.58403,41.97363999906],[-71.584076,41.97352999906],[-71.584305,41.97367099906],[-71.584444,41.97378599906],[-71.584471,41.97380599906],[-71.584474,41.97376799906],[-71.584314,41.97305799906],[-71.584399,41.97294599906],[-71.584549,41.97274799906],[-71.584862,41.97238499906],[-71.584999,41.97219799906],[-71.585068,41.97199199906],[-71.585121,41.97175599906],[-71.585182,41.97151899906],[-71.585266,41.97131299906],[-71.585487,41.97108499906],[-71.585701,41.97092799906],[-71.585854,41.97078299906],[-71.58593,41.97067999906],[-71.585938,41.97058099906],[-71.585907,41.97043999906],[-71.585907,41.97032199906],[-71.585983,41.97022599906],[-71.586639,41.96993299906],[-71.58709,41.96976499906],[-71.587204,41.96975299906],[-71.587479,41.96970399906],[-71.587639,41.96965399906],[-71.587776,41.96958499906],[-71.587906,41.96950499906],[-71.588089,41.96943299906],[-71.58828,41.96934499906],[-71.58844,41.96930699906],[-71.588608,41.96927999906],[-71.58886,41.96921499906],[-71.589111,41.96913899906],[-71.589508,41.96900599906],[-71.590027,41.96880299906],[-71.590106,41.96876899906],[-71.590431,41.96863599906],[-71.591484,41.96824299906],[-71.592056,41.96804799906],[-71.592369,41.96791099906],[-71.592857,41.96771999906],[-71.593185,41.96757899906],[-71.593521,41.96738099906],[-71.593605,41.96728099906],[-71.593704,41.96710599906],[-71.59375,41.96696099906],[-71.593857,41.96679299906],[-71.593987,41.96668999906],[-71.594353,41.96649899906],[-71.594627,41.96636599906],[-71.594963,41.96626699906],[-71.595131,41.96631199906],[-71.59539,41.96640399906],[-71.596056,41.96637399906],[-71.596205,41.96633699906],[-71.596312,41.96628399906],[-71.596423,41.96622799906],[-71.596542,41.96617899906],[-71.596634,41.96614799906],[-71.596713,41.96613999906],[-71.596898,41.96612299906]]]}}"}, +{"type": "blockgroup", "typeId": 128033, "areaId": 28972, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.600443,41.98302699906],[-71.600211,41.98181899906],[-71.599999,41.98081899906],[-71.599887,41.98028499906],[-71.599502,41.97844199906],[-71.599487,41.97837299906],[-71.599444,41.97816799906],[-71.599278,41.97738099906],[-71.599016,41.97614499906],[-71.598665,41.97439699906],[-71.598639,41.97426799906],[-71.598505,41.97365799906],[-71.598485,41.97356799906],[-71.597141,41.96722299906],[-71.596898,41.96612299906],[-71.596713,41.96613999906],[-71.596634,41.96614799906],[-71.596542,41.96617899906],[-71.596423,41.96622799906],[-71.596312,41.96628399906],[-71.596205,41.96633699906],[-71.596056,41.96637399906],[-71.59539,41.96640399906],[-71.595131,41.96631199906],[-71.594963,41.96626699906],[-71.594627,41.96636599906],[-71.594353,41.96649899906],[-71.593987,41.96668999906],[-71.593857,41.96679299906],[-71.59375,41.96696099906],[-71.593704,41.96710599906],[-71.593605,41.96728099906],[-71.593521,41.96738099906],[-71.593185,41.96757899906],[-71.592857,41.96771999906],[-71.592369,41.96791099906],[-71.592056,41.96804799906],[-71.591484,41.96824299906],[-71.590431,41.96863599906],[-71.590106,41.96876899906],[-71.590027,41.96880299906],[-71.589508,41.96900599906],[-71.589111,41.96913899906],[-71.58886,41.96921499906],[-71.588608,41.96927999906],[-71.58844,41.96930699906],[-71.58828,41.96934499906],[-71.588089,41.96943299906],[-71.587906,41.96950499906],[-71.587776,41.96958499906],[-71.587639,41.96965399906],[-71.587479,41.96970399906],[-71.587204,41.96975299906],[-71.58709,41.96976499906],[-71.586639,41.96993299906],[-71.585983,41.97022599906],[-71.585907,41.97032199906],[-71.585907,41.97043999906],[-71.585938,41.97058099906],[-71.58593,41.97067999906],[-71.585854,41.97078299906],[-71.585701,41.97092799906],[-71.585487,41.97108499906],[-71.585266,41.97131299906],[-71.585182,41.97151899906],[-71.585121,41.97175599906],[-71.585068,41.97199199906],[-71.584999,41.97219799906],[-71.584862,41.97238499906],[-71.584549,41.97274799906],[-71.584399,41.97294599906],[-71.584314,41.97305799906],[-71.584474,41.97376799906],[-71.584471,41.97380599906],[-71.584444,41.97378599906],[-71.584305,41.97367099906],[-71.584076,41.97352999906],[-71.58403,41.97363999906],[-71.5839,41.97395699906],[-71.583691,41.97427499906],[-71.583672,41.97429799906],[-71.583389,41.97461299906],[-71.582802,41.97512799906],[-71.582565,41.97535299906],[-71.582397,41.97556699906],[-71.582222,41.97587199906],[-71.58197,41.97639799906],[-71.581779,41.97663499906],[-71.58149,41.97694399906],[-71.581215,41.97726099906],[-71.580948,41.97755399906],[-71.58075,41.97786299906],[-71.580676,41.97803399906],[-71.580589,41.97824099906],[-71.580391,41.97858399906],[-71.580139,41.97890499906],[-71.579872,41.97925899906],[-71.579708,41.97941599906],[-71.579361,41.97974799906],[-71.579155,41.97989999906],[-71.578967,41.97998999906],[-71.578804,41.98006799906],[-71.57798,41.97993899906],[-71.577629,41.97994999906],[-71.577072,41.98003399906],[-71.576729,41.98012899906],[-71.576416,41.98026299906],[-71.576057,41.98042699906],[-71.575806,41.98059499906],[-71.575546,41.98079299906],[-71.575264,41.98103299906],[-71.575027,41.98125499906],[-71.57489,41.98140299906],[-71.574661,41.98161699906],[-71.574455,41.98184999906],[-71.574188,41.98211299906],[-71.573845,41.98233399906],[-71.573624,41.98243699906],[-71.573349,41.98254799906],[-71.572693,41.98266199906],[-71.572426,41.98269999906],[-71.572395,41.98241399906],[-71.572319,41.98215899906],[-71.572319,41.98185699906],[-71.572296,41.98156699906],[-71.572258,41.98141499906],[-71.572159,41.98115499906],[-71.572006,41.98084299906],[-71.571594,41.97986999906],[-71.571515,41.97964699906],[-71.571487,41.97956799906],[-71.571411,41.97925199906],[-71.571335,41.97891599906],[-71.571297,41.97865299906],[-71.571281,41.97842399906],[-71.571281,41.97824099906],[-71.571273,41.97818699906],[-71.571259,41.97809199906],[-71.571182,41.97795099906],[-71.571068,41.97780999906],[-71.570908,41.97765399906],[-71.570717,41.97752399906],[-71.570541,41.97736699906],[-71.570381,41.97717999906],[-71.570312,41.97701299906],[-71.570244,41.97651299906],[-71.57019,41.97621899906],[-71.570107,41.97602099906],[-71.570038,41.97590999906],[-71.569916,41.97580699906],[-71.569695,41.97565099906],[-71.569511,41.97550599906],[-71.569298,41.97531499906],[-71.569168,41.97518499906],[-71.568977,41.97497199906],[-71.56881,41.97474699906],[-71.56868,41.97453699906],[-71.568588,41.97430799906],[-71.568527,41.97407199906],[-71.568443,41.97366299906],[-71.568405,41.97340799906],[-71.568314,41.97288099906],[-71.568298,41.97262199906],[-71.568237,41.97212199906],[-71.568222,41.97187399906],[-71.568138,41.97158099906],[-71.567993,41.97122599906],[-71.567848,41.97099299906],[-71.567726,41.97082899906],[-71.567596,41.97068399906],[-71.567444,41.97053499906],[-71.566994,41.97020299906],[-71.566765,41.97002799906],[-71.566589,41.96988699906],[-71.566399,41.96970699906],[-71.566277,41.96953199906],[-71.56617,41.96936799906],[-71.566093,41.96918099906],[-71.566032,41.96896399906],[-71.565971,41.96849399906],[-71.565926,41.96826899906],[-71.565872,41.96789199906],[-71.565796,41.96726999906],[-71.565651,41.96691099906],[-71.565604,41.96675499906],[-71.565598,41.96673299906],[-71.565567,41.96635799906],[-71.565475,41.96617099906],[-71.565331,41.96575899906],[-71.565224,41.96554599906],[-71.565117,41.96528999906],[-71.565033,41.96507299906],[-71.56498,41.96488599906],[-71.564972,41.96473699906],[-71.565025,41.96455399906],[-71.565041,41.96440499906],[-71.565033,41.96426399906],[-71.56498,41.96407699906],[-71.564888,41.96385999906],[-71.564766,41.96365399906],[-71.564651,41.96347799906],[-71.564522,41.96335199906],[-71.564362,41.96322999906],[-71.564201,41.96302799906],[-71.564049,41.96285999906],[-71.563965,41.96265399906],[-71.563912,41.96237599906],[-71.563812,41.96208599906],[-71.563751,41.96187199906],[-71.56366,41.96163199906],[-71.563515,41.96139099906],[-71.5634,41.96123099906],[-71.563232,41.96102499906],[-71.563072,41.96081199906],[-71.562637,41.96029999906],[-71.562477,41.96009799906],[-71.562225,41.95970499906],[-71.562109,41.95948299906],[-71.561577,41.95837799906],[-71.56144,41.95807599906],[-71.561302,41.95778699906],[-71.561218,41.95758099906],[-71.561058,41.95725999906],[-71.560966,41.95701599906],[-71.560783,41.95639399906],[-71.560707,41.95615799906],[-71.5606,41.95593999906],[-71.560432,41.95563899906],[-71.560257,41.95529599906],[-71.560081,41.95492899906],[-71.559937,41.95467799906],[-71.559776,41.95432299906],[-71.55957,41.95391499906],[-71.559418,41.95362899906],[-71.559273,41.95331599906],[-71.559135,41.95308299906],[-71.558952,41.95287299906],[-71.558838,41.95265599906],[-71.558754,41.95229699906],[-71.558693,41.95195799906],[-71.558754,41.95171699906],[-71.558777,41.95156499906],[-71.558792,41.95134399906],[-71.558807,41.95100799906],[-71.558846,41.95048899906],[-71.558868,41.95006199906],[-71.558899,41.94965399906],[-71.558929,41.94938299906],[-71.558952,41.94923399906],[-71.559042,41.94849899906],[-71.559059,41.94836399906],[-71.559097,41.94810099906],[-71.559128,41.94771599906],[-71.55913,41.94765599906],[-71.559151,41.94714699906],[-71.559158,41.94674699906],[-71.559204,41.94576299906],[-71.559207,41.94571999906],[-71.55925,41.94512199906],[-71.55928,41.94459899906],[-71.559311,41.94418699906],[-71.559349,41.94377499906],[-71.559372,41.94338199906],[-71.559364,41.94311099906],[-71.559338,41.94285399906],[-71.559352,41.94276099906],[-71.559465,41.94263899906],[-71.559326,41.94251599906],[-71.559227,41.94239799906],[-71.559181,41.94234799906],[-71.559112,41.94225599906],[-71.558769,41.94179199906],[-71.55851,41.94148599906],[-71.558319,41.94129599906],[-71.558052,41.94108599906],[-71.557686,41.94085299906],[-71.556816,41.94036099906],[-71.556631,41.94016899906],[-71.556533,41.94004499906],[-71.556483,41.93998099906],[-71.556366,41.93979299906],[-71.556145,41.93932299906],[-71.555992,41.93894599906],[-71.555961,41.93886399906],[-71.555855,41.93858699906],[-71.555641,41.93806499906],[-71.555542,41.93777799906],[-71.555328,41.93687399906],[-71.555198,41.93688599906],[-71.554475,41.93696499906],[-71.554182,41.93699599906],[-71.554076,41.93700699906],[-71.551961,41.93723399906],[-71.551483,41.93728599906],[-71.55093,41.93734499906],[-71.542352,41.93820899906],[-71.541077,41.93833999906],[-71.539056,41.93852499906],[-71.536577,41.93874899906],[-71.536513,41.93875499906],[-71.527018,41.93969599906],[-71.526775,41.93971999906],[-71.521506,41.94019799906],[-71.512076,41.94126699906],[-71.511805,41.94129799906],[-71.508805,41.94149799906],[-71.505111,41.94185399906],[-71.504403,41.94192099906],[-71.503888,41.94196999906],[-71.502952,41.94205999906],[-71.502804,41.94207399906],[-71.502181,41.94213399906],[-71.502036,41.94214799906],[-71.500568,41.94228899906],[-71.49179,41.94313399906],[-71.490891,41.94321999906],[-71.49083,41.94323199906],[-71.490788,41.94324099906],[-71.490744,41.94325099906],[-71.490719,41.94329299906],[-71.490712,41.94341999906],[-71.490655,41.94348099906],[-71.490602,41.94352699906],[-71.490519,41.94356499906],[-71.490294,41.94364499906],[-71.490148,41.94368399906],[-71.4898,41.94377699906],[-71.489488,41.94384899906],[-71.489037,41.94392699906],[-71.488953,41.94394499906],[-71.48887,41.94397099906],[-71.488792,41.94400999906],[-71.488656,41.94408999906],[-71.488624,41.94414099906],[-71.488574,41.94419999906],[-71.48851,41.94424299906],[-71.488301,41.94434499906],[-71.488294,41.94436299906],[-71.488229,41.94439199906],[-71.488175,41.94440499906],[-71.488137,41.94440499906],[-71.4881,41.94439799906],[-71.488061,41.94433099906],[-71.487983,41.94421999906],[-71.487947,41.94415299906],[-71.487901,41.94410599906],[-71.487855,41.94408199906],[-71.48781,41.94406199906],[-71.487747,41.94404199906],[-71.487676,41.94402699906],[-71.487607,41.94400599906],[-71.487534,41.94397299906],[-71.487402,41.94389999906],[-71.487107,41.94376199906],[-71.487022,41.94373099906],[-71.486969,41.94368599906],[-71.48694,41.94363299906],[-71.486911,41.94343099906],[-71.486882,41.94336299906],[-71.486831,41.94330599906],[-71.486753,41.94326199906],[-71.486602,41.94318999906],[-71.486509,41.94315099906],[-71.486421,41.94312099906],[-71.486347,41.94307999906],[-71.486286,41.94303499906],[-71.486224,41.94300499906],[-71.48605,41.94297699906],[-71.485912,41.94293399906],[-71.485836,41.94290599906],[-71.485708,41.94283899906],[-71.485503,41.94271599906],[-71.485454,41.94267499906],[-71.485368,41.94255799906],[-71.485304,41.94250699906],[-71.485232,41.94247599906],[-71.485143,41.94244999906],[-71.48504,41.94243499906],[-71.48494,41.94243599906],[-71.484859,41.94245999906],[-71.484788,41.94250199906],[-71.484675,41.94259299906],[-71.484627,41.94263699906],[-71.484583,41.94269199906],[-71.48452,41.94271899906],[-71.484562,41.94277699906],[-71.484619,41.94293199906],[-71.484748,41.94316799906],[-71.484775,41.94323899906],[-71.484749,41.94330899906],[-71.484731,41.94337899906],[-71.484725,41.94343599906],[-71.484723,41.94349399906],[-71.484734,41.94355499906],[-71.484754,41.94361499906],[-71.484787,41.94367899906],[-71.484841,41.94373599906],[-71.48484,41.94375599906],[-71.484656,41.94378699906],[-71.484586,41.94381599906],[-71.484534,41.94385599906],[-71.484478,41.94391299906],[-71.484427,41.94391999906],[-71.484375,41.94387199906],[-71.48436,41.94390999906],[-71.484295,41.94393699906],[-71.484226,41.94397699906],[-71.484122,41.94406699906],[-71.484066,41.94412199906],[-71.484017,41.94418399906],[-71.483979,41.94424799906],[-71.483963,41.94432199906],[-71.48396,41.94439299906],[-71.48397,41.94445499906],[-71.484086,41.94462999906],[-71.484126,41.94468299906],[-71.48417,41.94475399906],[-71.484197,41.94480699906],[-71.484249,41.94497699906],[-71.484244,41.94505399906],[-71.484189,41.94517999906],[-71.484168,41.94524399906],[-71.484166,41.94530799906],[-71.484214,41.94537299906],[-71.484296,41.94546499906],[-71.484341,41.94553099906],[-71.484332,41.94559799906],[-71.484258,41.94572699906],[-71.484239,41.94578399906],[-71.484242,41.94584099906],[-71.484273,41.94588999906],[-71.484352,41.94592999906],[-71.484549,41.94590399906],[-71.4848,41.94590799906],[-71.484978,41.94590799906],[-71.485057,41.94592099906],[-71.485149,41.94592499906],[-71.485256,41.94589699906],[-71.485366,41.94588299906],[-71.485462,41.94588999906],[-71.485561,41.94591099906],[-71.485648,41.94594799906],[-71.485717,41.94601299906],[-71.485799,41.94606999906],[-71.485871,41.94613199906],[-71.485911,41.94617299906],[-71.485942,41.94620299906],[-71.486032,41.94625099906],[-71.486144,41.94626399906],[-71.486573,41.94626499906],[-71.486677,41.94627099906],[-71.486754,41.94628199906],[-71.486854,41.94630499906],[-71.48694,41.94633899906],[-71.487014,41.94639399906],[-71.487055,41.94644199906],[-71.487077,41.94651599906],[-71.487082,41.94663399906],[-71.487111,41.94669299906],[-71.487269,41.94693399906],[-71.487389,41.94704899906],[-71.48744,41.94711399906],[-71.487447,41.94718999906],[-71.487409,41.94735699906],[-71.487338,41.94753199906],[-71.487248,41.94771299906],[-71.487244,41.94784099906],[-71.487211,41.94790499906],[-71.487156,41.94796999906],[-71.487027,41.94809399906],[-71.486908,41.94818899906],[-71.486857,41.94823699906],[-71.486858,41.94830699906],[-71.486896,41.94835399906],[-71.486948,41.94840799906],[-71.486978,41.94846499906],[-71.487024,41.94858199906],[-71.487029,41.94864899906],[-71.487025,41.94871199906],[-71.486993,41.94876899906],[-71.486946,41.94882299906],[-71.486943,41.94888699906],[-71.486966,41.94894399906],[-71.487,41.94899899906],[-71.487005,41.94905899906],[-71.486975,41.94912299906],[-71.486869,41.94922199906],[-71.486843,41.94928399906],[-71.486842,41.94942399906],[-71.486826,41.94961299906],[-71.486786,41.94967299906],[-71.486729,41.94973299906],[-71.486701,41.94979499906],[-71.486701,41.94985799906],[-71.486717,41.94992599906],[-71.486763,41.95000199906],[-71.486873,41.95015799906],[-71.486937,41.95027299906],[-71.486974,41.95032899906],[-71.487023,41.95037599906],[-71.487116,41.95045499906],[-71.487143,41.95046699906],[-71.48719,41.95050399906],[-71.487255,41.95054899906],[-71.487324,41.95059099906],[-71.487437,41.95068499906],[-71.487478,41.95074899906],[-71.487482,41.95081399906],[-71.487456,41.95087399906],[-71.487427,41.95090199906],[-71.487411,41.95091699906],[-71.487282,41.95098399906],[-71.487248,41.95099899906],[-71.487188,41.95101799906],[-71.487129,41.95104299906],[-71.487129,41.95110899906],[-71.487179,41.95117299906],[-71.487229,41.95122499906],[-71.487264,41.95128499906],[-71.487293,41.95135099906],[-71.487338,41.95141499906],[-71.487377,41.95148099906],[-71.487432,41.95162899906],[-71.487444,41.95169099906],[-71.487442,41.95174799906],[-71.487393,41.95193499906],[-71.487387,41.95199399906],[-71.487401,41.95205599906],[-71.487526,41.95208699906],[-71.487732,41.95215999906],[-71.487793,41.95218999906],[-71.4879,41.95225499906],[-71.487946,41.95228999906],[-71.488388,41.95266699906],[-71.488495,41.95276999906],[-71.488556,41.95281999906],[-71.488709,41.95292099906],[-71.488762,41.95294999906],[-71.488983,41.95304099906],[-71.489418,41.95315899906],[-71.489616,41.95321999906],[-71.489708,41.95325499906],[-71.489754,41.95327799906],[-71.48983,41.95332699906],[-71.489876,41.95336899906],[-71.489952,41.95346099906],[-71.490616,41.95416999906],[-71.490741,41.95421799906],[-71.491031,41.95429299906],[-71.491278,41.95436699906],[-71.491374,41.95453599906],[-71.491459,41.95472899906],[-71.491605,41.95486099906],[-71.491849,41.95496899906],[-71.492211,41.95519299906],[-71.4925,41.95544899906],[-71.493843,41.95692799906],[-71.493927,41.95712699906],[-71.494034,41.95733299906],[-71.494255,41.95771399906],[-71.494453,41.95798899906],[-71.494995,41.95868699906],[-71.495659,41.95952599906],[-71.495926,41.95982399906],[-71.496086,41.95994899906],[-71.496292,41.95989599906],[-71.496742,41.95976599906],[-71.497261,41.95962499906],[-71.497597,41.95953799906],[-71.497871,41.95947599906],[-71.498039,41.95945699906],[-71.498169,41.95943799906],[-71.498306,41.95939999906],[-71.498619,41.95930499906],[-71.499687,41.95890799906],[-71.500671,41.95852699906],[-71.500841,41.95846899906],[-71.500981,41.95842099906],[-71.501007,41.95841199906],[-71.501023,41.95840499906],[-71.501074,41.95838199906],[-71.501152,41.95834699906],[-71.501204,41.95831799906],[-71.501216,41.95831099906],[-71.501259,41.95828599906],[-71.501312,41.95824099906],[-71.501335,41.95818699906],[-71.50135,41.95812199906],[-71.501343,41.95806499906],[-71.501305,41.95795799906],[-71.501144,41.95764899906],[-71.500847,41.95704299906],[-71.500832,41.95697399906],[-71.500824,41.95690499906],[-71.500824,41.95684099906],[-71.500839,41.95677899906],[-71.50087,41.95671799906],[-71.500908,41.95666499906],[-71.500946,41.95662699906],[-71.500992,41.95658899906],[-71.501045,41.95655799906],[-71.501099,41.95653499906],[-71.50116,41.95651599906],[-71.501228,41.95650099906],[-71.502327,41.95614599906],[-71.503006,41.95590199906],[-71.504196,41.95545199906],[-71.505029,41.95514799906],[-71.50518,41.95509299906],[-71.505554,41.95498299906],[-71.506119,41.95482999906],[-71.506317,41.95478799906],[-71.506416,41.95477299906],[-71.506592,41.95476499906],[-71.506683,41.95477299906],[-71.506783,41.95479999906],[-71.506836,41.95481899906],[-71.50692,41.95486499906],[-71.507004,41.95491799906],[-71.507538,41.95534099906],[-71.507706,41.95548999906],[-71.507812,41.95559299906],[-71.507874,41.95563899906],[-71.50795,41.95568099906],[-71.508034,41.95571099906],[-71.508118,41.95573399906],[-71.508209,41.95574999906],[-71.508308,41.95575299906],[-71.5084,41.95574599906],[-71.508484,41.95572999906],[-71.508568,41.95570799906],[-71.508728,41.95564699906],[-71.508942,41.95552099906],[-71.509064,41.95544099906],[-71.509132,41.95540599906],[-71.509201,41.95537899906],[-71.509361,41.95533399906],[-71.509529,41.95530299906],[-71.509697,41.95527999906],[-71.509789,41.95527299906],[-71.510582,41.95518899906],[-71.511963,41.95484199906],[-71.512283,41.95474999906],[-71.514038,41.95419299906],[-71.514572,41.95397599906],[-71.514992,41.95382699906],[-71.515129,41.95378899906],[-71.515205,41.95377299906],[-71.515282,41.95376599906],[-71.51535,41.95377299906],[-71.515495,41.95381199906],[-71.515572,41.95384199906],[-71.515724,41.95391799906],[-71.516342,41.95429599906],[-71.51696,41.95457499906],[-71.517578,41.95480699906],[-71.517746,41.95487999906],[-71.51783,41.95492199906],[-71.517975,41.95502099906],[-71.518097,41.95512799906],[-71.518219,41.95520799906],[-71.518356,41.95528399906],[-71.518494,41.95535299906],[-71.518593,41.95538699906],[-71.5187,41.95541399906],[-71.518806,41.95543299906],[-71.518883,41.95544099906],[-71.519043,41.95544399906],[-71.519257,41.95542099906],[-71.519424,41.95541399906],[-71.519508,41.95542099906],[-71.519623,41.95545999906],[-71.51973,41.95553599906],[-71.519783,41.95558899906],[-71.519829,41.95564699906],[-71.519867,41.95570799906],[-71.51992,41.95583299906],[-71.520187,41.95627599906],[-71.520279,41.95640599906],[-71.520714,41.95692799906],[-71.520798,41.95700799906],[-71.520882,41.95706899906],[-71.520988,41.95713399906],[-71.521729,41.95741299906],[-71.521881,41.95749299906],[-71.522003,41.95759599906],[-71.522179,41.95781699906],[-71.52243,41.95816799906],[-71.522675,41.95846899906],[-71.52272,41.95851899906],[-71.522858,41.95863299906],[-71.522964,41.95869399906],[-71.523094,41.95875199906],[-71.523262,41.95878999906],[-71.52359,41.95884699906],[-71.524055,41.95890799906],[-71.524139,41.95892299906],[-71.524872,41.95902599906],[-71.5252,41.95908399906],[-71.525772,41.95921699906],[-71.526106,41.95928999906],[-71.526344,41.95932399906],[-71.526695,41.95934699906],[-71.527252,41.95940399906],[-71.52758,41.95944199906],[-71.527924,41.95947299906],[-71.528282,41.95948399906],[-71.529007,41.95949599906],[-71.529182,41.95948399906],[-71.529716,41.95943499906],[-71.52993,41.95941899906],[-71.530289,41.95940399906],[-71.530518,41.95940399906],[-71.530603,41.95940699906],[-71.53064,41.95940799906],[-71.530792,41.95942299906],[-71.530853,41.95943499906],[-71.53094,41.95944599906],[-71.531067,41.95946099906],[-71.53141,41.95951099906],[-71.53157,41.95955299906],[-71.531677,41.95960599906],[-71.531799,41.95968599906],[-71.531891,41.95973999906],[-71.532021,41.95978199906],[-71.532127,41.95980099906],[-71.532249,41.95980499906],[-71.532379,41.95979699906],[-71.532494,41.95977799906],[-71.532661,41.95973199906],[-71.532974,41.95963699906],[-71.533424,41.95950699906],[-71.534805,41.95911799906],[-71.535126,41.95904899906],[-71.535332,41.95904199906],[-71.535553,41.95906399906],[-71.535751,41.95903799906],[-71.535965,41.95896499906],[-71.536911,41.95859499906],[-71.537834,41.95821799906],[-71.538078,41.95813399906],[-71.53846,41.95806899906],[-71.539131,41.95799299906],[-71.539513,41.95791199906],[-71.540253,41.95773299906],[-71.540451,41.95772599906],[-71.540573,41.95774099906],[-71.540749,41.95777499906],[-71.540894,41.95786699906],[-71.541107,41.95806099906],[-71.541382,41.95828999906],[-71.541664,41.95857999906],[-71.541893,41.95883599906],[-71.541924,41.95886999906],[-71.542084,41.95894999906],[-71.542183,41.95880499906],[-71.542274,41.95863699906],[-71.542351,41.95842699906],[-71.542419,41.95809199906],[-71.542557,41.95705799906],[-71.542625,41.95672199906],[-71.542717,41.95648199906],[-71.54287,41.95619599906],[-71.543037,41.95595899906],[-71.543205,41.95577999906],[-71.543434,41.95557799906],[-71.543637,41.95542999906],[-71.543701,41.95538299906],[-71.543892,41.95525399906],[-71.544197,41.95508999906],[-71.544479,41.95496699906],[-71.544853,41.95484899906],[-71.545158,41.95478099906],[-71.54554,41.95471599906],[-71.546028,41.95464299906],[-71.546471,41.95458199906],[-71.546982,41.95454399906],[-71.547394,41.95454399906],[-71.547798,41.95457499906],[-71.548012,41.95507399906],[-71.548798,41.95708099906],[-71.54895,41.95743199906],[-71.549095,41.95772199906],[-71.549248,41.95797699906],[-71.54969,41.95864499906],[-71.549934,41.95899199906],[-71.550163,41.95934699906],[-71.550484,41.95981199906],[-71.551117,41.96078099906],[-71.551498,41.96133799906],[-71.55265,41.96306599906],[-71.552834,41.96335599906],[-71.552963,41.96358499906],[-71.553055,41.96380999906],[-71.553139,41.96403099906],[-71.55323,41.96430399906],[-71.553291,41.96448899906],[-71.553673,41.96554199906],[-71.553818,41.96597699906],[-71.554245,41.96717499906],[-71.554337,41.96739999906],[-71.554474,41.96762499906],[-71.554611,41.96783799906],[-71.554771,41.96803299906],[-71.554993,41.96826899906],[-71.555222,41.96850199906],[-71.555481,41.96874599906],[-71.555916,41.96917299906],[-71.556114,41.96939099906],[-71.556244,41.96956999906],[-71.556374,41.96976899906],[-71.556488,41.96997499906],[-71.556539,41.97010699906],[-71.556572,41.97019199906],[-71.556786,41.97081799906],[-71.556885,41.97113799906],[-71.557014,41.97149299906],[-71.557114,41.97184799906],[-71.557228,41.97216399906],[-71.557327,41.97248799906],[-71.557341,41.97252799906],[-71.557449,41.97283599906],[-71.557625,41.97340399906],[-71.557785,41.97383099906],[-71.557854,41.97399099906],[-71.557991,41.97422799906],[-71.558159,41.97449499906],[-71.558502,41.97495999906],[-71.5588,41.97537999906],[-71.559174,41.97588699906],[-71.55954,41.97630699906],[-71.560158,41.97695899906],[-71.56041,41.97720299906],[-71.560631,41.97739399906],[-71.560989,41.97767599906],[-71.561768,41.97826399906],[-71.562828,41.97904199906],[-71.563332,41.97941999906],[-71.564758,41.98045299906],[-71.56511,41.98071999906],[-71.565247,41.98082399906],[-71.566048,41.98142199906],[-71.566299,41.98163599906],[-71.566536,41.98184599906],[-71.566719,41.98203699906],[-71.566902,41.98224299906],[-71.567337,41.98283799906],[-71.567879,41.98362699906],[-71.568283,41.98422199906],[-71.568611,41.98469499906],[-71.568924,41.98513399906],[-71.569588,41.98612599906],[-71.569984,41.98666799906],[-71.570381,41.98725899906],[-71.570862,41.98796099906],[-71.571121,41.98837299906],[-71.571472,41.98886899906],[-71.572037,41.98970399906],[-71.572661,41.99058899906],[-71.572701,41.99064599906],[-71.573247,41.99139499906],[-71.573341,41.99152399906],[-71.57373,41.99208099906],[-71.574211,41.99272199906],[-71.574524,41.99317599906],[-71.574745,41.99347299906],[-71.575089,41.99394999906],[-71.575432,41.99441099906],[-71.575706,41.99480099906],[-71.575981,41.99516699906],[-71.57621,41.99549099906],[-71.576564,41.99595399906],[-71.576578,41.99597299906],[-71.5767,41.99613299906],[-71.576714,41.99615099906],[-71.577065,41.99656699906],[-71.57737,41.99694399906],[-71.577682,41.99734499906],[-71.577843,41.99753599906],[-71.578484,41.99835599906],[-71.578835,41.99882099906],[-71.578911,41.99899299906],[-71.578953,41.99914099906],[-71.579021,41.99913999906],[-71.579076,41.99912999906],[-71.579368,41.99918599906],[-71.579781,41.99928799906],[-71.580633,41.99898999906],[-71.580732,41.99891599906],[-71.581379,41.99842599906],[-71.581816,41.99784899906],[-71.582351,41.99750799906],[-71.582868,41.99680399906],[-71.583248,41.99625499906],[-71.583856,41.99562999906],[-71.584418,41.99519399906],[-71.584981,41.99487199906],[-71.585331,41.99480599906],[-71.586123,41.99471899906],[-71.586975,41.99470199906],[-71.588162,41.99469499906],[-71.589335,41.99472399906],[-71.590538,41.99485199906],[-71.591427,41.99469999906],[-71.592013,41.99448599906],[-71.592763,41.99434199906],[-71.593513,41.99482699906],[-71.593628,41.99519299906],[-71.594114,41.99513199906],[-71.594255,41.99509099906],[-71.59451,41.99501799906],[-71.594753,41.99482599906],[-71.594839,41.99466299906],[-71.594785,41.99462299906],[-71.594842,41.99445099906],[-71.595071,41.99439899906],[-71.595165,41.99428399906],[-71.595394,41.99384999906],[-71.595776,41.99326199906],[-71.596008,41.99299799906],[-71.596417,41.99054599906],[-71.597813,41.98614099906],[-71.597897,41.98587699906],[-71.598017,41.98570899906],[-71.598196,41.98545699906],[-71.599392,41.98377899906],[-71.600443,41.98302699906]]]}}"}, +{"type": "blockgroup", "typeId": 129001, "areaId": 28973, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.695435,41.97307999906],[-71.695366,41.97280499906],[-71.695305,41.97261399906],[-71.695213,41.97235499906],[-71.695152,41.97215299906],[-71.694962,41.97148899906],[-71.694809,41.97101199906],[-71.694756,41.97082899906],[-71.694733,41.97071499906],[-71.694679,41.97055399906],[-71.694641,41.97041299906],[-71.694542,41.97014599906],[-71.694504,41.97001999906],[-71.694397,41.96970699906],[-71.694122,41.96883399906],[-71.693848,41.96792999906],[-71.693649,41.96726599906],[-71.693522,41.96686599906],[-71.69342,41.96654499906],[-71.693184,41.96577099906],[-71.693085,41.96574399906],[-71.69297,41.96573599906],[-71.692879,41.96573599906],[-71.692787,41.96575199906],[-71.692665,41.96575499906],[-71.692719,41.96566399906],[-71.692741,41.96561799906],[-71.692757,41.96559799906],[-71.692795,41.96552899906],[-71.69274,41.96554899906],[-71.692655,41.96556699906],[-71.692589,41.96559199906],[-71.692522,41.96562899906],[-71.692379,41.96568899906],[-71.692309,41.96572299906],[-71.692246,41.96576399906],[-71.692208,41.96581299906],[-71.692137,41.96592199906],[-71.692094,41.96597699906],[-71.691936,41.96614599906],[-71.691885,41.96618899906],[-71.69182,41.96622199906],[-71.691679,41.96630299906],[-71.691605,41.96633299906],[-71.691534,41.96635199906],[-71.691369,41.96638199906],[-71.691144,41.96644699906],[-71.690829,41.96650699906],[-71.690607,41.96658199906],[-71.690547,41.96662199906],[-71.69049,41.96666799906],[-71.690416,41.96677399906],[-71.690326,41.96687699906],[-71.69027,41.96691999906],[-71.690211,41.96695599906],[-71.690143,41.96698699906],[-71.690115,41.96699699906],[-71.689998,41.96703899906],[-71.689704,41.96713399906],[-71.689491,41.96698299906],[-71.689439,41.96693399906],[-71.689427,41.96687099906],[-71.689435,41.96681099906],[-71.689466,41.96675599906],[-71.689511,41.96669899906],[-71.689564,41.96665299906],[-71.68963,41.96660699906],[-71.689685,41.96656199906],[-71.689686,41.96651899906],[-71.689554,41.96643099906],[-71.689501,41.96638999906],[-71.689438,41.96634999906],[-71.689359,41.96631999906],[-71.689286,41.96628599906],[-71.689216,41.96624799906],[-71.689144,41.96621799906],[-71.689064,41.96619899906],[-71.68899,41.96618699906],[-71.688961,41.96617499906],[-71.688939,41.96612899906],[-71.688808,41.96616299906],[-71.688556,41.96624199906],[-71.688328,41.96628299906],[-71.688134,41.96630699906],[-71.687877,41.96632299906],[-71.687676,41.96632299906],[-71.687239,41.96631499906],[-71.686995,41.96629199906],[-71.686772,41.96626099906],[-71.686547,41.96622399906],[-71.68634,41.96617199906],[-71.686115,41.96609899906],[-71.684823,41.96571299906],[-71.683899,41.96546099906],[-71.683701,41.96539299906],[-71.683269,41.96524499906],[-71.682441,41.96497599906],[-71.681753,41.96478099906],[-71.681451,41.96469499906],[-71.681328,41.96465999906],[-71.681054,41.96458199906],[-71.679636,41.96414699906],[-71.678235,41.96373199906],[-71.678138,41.96370299906],[-71.678002,41.96366299906],[-71.676798,41.96327999906],[-71.67611,41.96307499906],[-71.675352,41.96285899906],[-71.675053,41.96280999906],[-71.674679,41.96279399906],[-71.673786,41.96278299906],[-71.673737,41.96278199906],[-71.673692,41.96276599906],[-71.673546,41.96271499906],[-71.673326,41.96265999906],[-71.67318,41.96262399906],[-71.67292,41.96256999906],[-71.672867,41.96256299906],[-71.672775,41.96254299906],[-71.672684,41.96252799906],[-71.672195,41.96247499906],[-71.671919,41.96242899906],[-71.671822,41.96241399906],[-71.671478,41.96234099906],[-71.671234,41.96227999906],[-71.671013,41.96221899906],[-71.670738,41.96216999906],[-71.67038,41.96212399906],[-71.670174,41.96211199906],[-71.669899,41.96208599906],[-71.669548,41.96206999906],[-71.669393,41.96207199906],[-71.669296,41.96207399906],[-71.669037,41.96209299906],[-71.668903,41.96210699906],[-71.668921,41.96222899906],[-71.668917,41.96229999906],[-71.668876,41.96244099906],[-71.668761,41.96253799906],[-71.66873,41.96260099906],[-71.668698,41.96269899906],[-71.668664,41.96280299906],[-71.668637,41.96292399906],[-71.668668,41.96298599906],[-71.668795,41.96316399906],[-71.668861,41.96321199906],[-71.66894,41.96329299906],[-71.669017,41.96336099906],[-71.669036,41.96341899906],[-71.669031,41.96358399906],[-71.668975,41.96364599906],[-71.668901,41.96370199906],[-71.668853,41.96374399906],[-71.668774,41.96387299906],[-71.668737,41.96392499906],[-71.668682,41.96396799906],[-71.668617,41.96400499906],[-71.6685,41.96409299906],[-71.668494,41.96415099906],[-71.668506,41.96424799906],[-71.668458,41.96425499906],[-71.668285,41.96430599906],[-71.667969,41.96440899906],[-71.667895,41.96444299906],[-71.667796,41.96446299906],[-71.667625,41.96447599906],[-71.667325,41.96450899906],[-71.667047,41.96453099906],[-71.666808,41.96455999906],[-71.666631,41.96457399906],[-71.666027,41.96457699906],[-71.665953,41.96457199906],[-71.66588,41.96454999906],[-71.665805,41.96454099906],[-71.665775,41.96452699906],[-71.665737,41.96450999906],[-71.665669,41.96447099906],[-71.66554,41.96436799906],[-71.665498,41.96432099906],[-71.665425,41.96419299906],[-71.665372,41.96413999906],[-71.665293,41.96403399906],[-71.665269,41.96397899906],[-71.665245,41.96390199906],[-71.665186,41.96377099906],[-71.665156,41.96365499906],[-71.665049,41.96348199906],[-71.664999,41.96343199906],[-71.664919,41.96340999906],[-71.664837,41.96340899906],[-71.664658,41.96343899906],[-71.664476,41.96345099906],[-71.664403,41.96346299906],[-71.664331,41.96348199906],[-71.664241,41.96349799906],[-71.66414,41.96352999906],[-71.664074,41.96357899906],[-71.663973,41.96366999906],[-71.663917,41.96370699906],[-71.663795,41.96387799906],[-71.663758,41.96393699906],[-71.663734,41.96400499906],[-71.663705,41.96405599906],[-71.663688,41.96411899906],[-71.663666,41.96425299906],[-71.663661,41.96433499906],[-71.663633,41.96439899906],[-71.663599,41.96445499906],[-71.663591,41.96450999906],[-71.663591,41.96463499906],[-71.663578,41.96468999906],[-71.663551,41.96476199906],[-71.663496,41.96484599906],[-71.663439,41.96491499906],[-71.663371,41.96498199906],[-71.663286,41.96508099906],[-71.663223,41.96520699906],[-71.663174,41.96524899906],[-71.663101,41.96529399906],[-71.663034,41.96531699906],[-71.662863,41.96536499906],[-71.662864,41.96543599906],[-71.662885,41.96550199906],[-71.663044,41.96557399906],[-71.663183,41.96563399906],[-71.663251,41.96565899906],[-71.663315,41.96571099906],[-71.663359,41.96576699906],[-71.663359,41.96593099906],[-71.663256,41.96592199906],[-71.663066,41.96591699906],[-71.662901,41.96592299906],[-71.662727,41.96597299906],[-71.662647,41.96598699906],[-71.662578,41.96601999906],[-71.662573,41.96607499906],[-71.662585,41.96615799906],[-71.662667,41.96614999906],[-71.662758,41.96615599906],[-71.662849,41.96617499906],[-71.662911,41.96623099906],[-71.662963,41.96628699906],[-71.662982,41.96635199906],[-71.662984,41.96640799906],[-71.663004,41.96646599906],[-71.663098,41.96651599906],[-71.663176,41.96652099906],[-71.663431,41.96651799906],[-71.663522,41.96650399906],[-71.663605,41.96649999906],[-71.663699,41.96650199906],[-71.663907,41.96654699906],[-71.664061,41.96658999906],[-71.664244,41.96663099906],[-71.66432,41.96666399906],[-71.664427,41.96675199906],[-71.664494,41.96678299906],[-71.664638,41.96685899906],[-71.664698,41.96692299906],[-71.664775,41.96712799906],[-71.66479,41.96719799906],[-71.664792,41.96741599906],[-71.664817,41.96749799906],[-71.664818,41.96762899906],[-71.664794,41.96769599906],[-71.664764,41.96774999906],[-71.664744,41.96780799906],[-71.664716,41.96785899906],[-71.664696,41.96791599906],[-71.664707,41.96797899906],[-71.664461,41.96815799906],[-71.664396,41.96819699906],[-71.664309,41.96830499906],[-71.664269,41.96836299906],[-71.664183,41.96847199906],[-71.664094,41.96853899906],[-71.664031,41.96862199906],[-71.663998,41.96867499906],[-71.664003,41.96871199906],[-71.664055,41.96880799906],[-71.664104,41.96890099906],[-71.664089,41.96904899906],[-71.66407,41.96912799906],[-71.664052,41.96916899906],[-71.66404,41.96919799906],[-71.66405,41.96927199906],[-71.664114,41.96938599906],[-71.664141,41.96945599906],[-71.664201,41.96950999906],[-71.664306,41.96953499906],[-71.664389,41.96957299906],[-71.664423,41.96963299906],[-71.664394,41.96991799906],[-71.664313,41.97007399906],[-71.664298,41.97013099906],[-71.664277,41.97025899906],[-71.664216,41.97038099906],[-71.66415,41.97045599906],[-71.664103,41.97050099906],[-71.664097,41.97052399906],[-71.664089,41.97055399906],[-71.664091,41.97061399906],[-71.664103,41.97066799906],[-71.664156,41.97078099906],[-71.664212,41.97083299906],[-71.664271,41.97087299906],[-71.6644,41.97099199906],[-71.664504,41.97111999906],[-71.664573,41.97117799906],[-71.664822,41.97135199906],[-71.664888,41.97138599906],[-71.66495,41.97144599906],[-71.664991,41.97149399906],[-71.665212,41.97167699906],[-71.66528,41.97171499906],[-71.665352,41.97173399906],[-71.665456,41.97173599906],[-71.665525,41.97175599906],[-71.66569,41.97182399906],[-71.665725,41.97189699906],[-71.665762,41.97194399906],[-71.665804,41.97200999906],[-71.665881,41.97210799906],[-71.665926,41.97215399906],[-71.665993,41.97219499906],[-71.666064,41.97225099906],[-71.666095,41.97231099906],[-71.666106,41.97236899906],[-71.666115,41.97249199906],[-71.66611,41.97264999906],[-71.666089,41.97270299906],[-71.666077,41.97294699906],[-71.66609,41.97307499906],[-71.666116,41.97318699906],[-71.666117,41.97325699906],[-71.666126,41.97331699906],[-71.666157,41.97337999906],[-71.666218,41.97359199906],[-71.666265,41.97370699906],[-71.66629,41.97380299906],[-71.666301,41.97386599906],[-71.666319,41.97391899906],[-71.666352,41.97397499906],[-71.666376,41.97403799906],[-71.666393,41.97409899906],[-71.666397,41.97415999906],[-71.666427,41.97428899906],[-71.666434,41.97434499906],[-71.666479,41.97437899906],[-71.66655,41.97439699906],[-71.666619,41.97436699906],[-71.666682,41.97437399906],[-71.666916,41.97451599906],[-71.667019,41.97463799906],[-71.667054,41.97469699906],[-71.667064,41.97475099906],[-71.667084,41.97481299906],[-71.667093,41.97486999906],[-71.667091,41.97492899906],[-71.667076,41.97501299906],[-71.667072,41.97512899906],[-71.667084,41.97524499906],[-71.667146,41.97528999906],[-71.667172,41.97534399906],[-71.66718,41.97539899906],[-71.667211,41.97551199906],[-71.667238,41.97557499906],[-71.667248,41.97564199906],[-71.667268,41.97570799906],[-71.667318,41.97575399906],[-71.667347,41.97580899906],[-71.6674,41.97589299906],[-71.667421,41.97594599906],[-71.667438,41.97607599906],[-71.667439,41.97613499906],[-71.66742,41.97622999906],[-71.66729,41.97632299906],[-71.667259,41.97637699906],[-71.667249,41.97687699906],[-71.66723,41.97693399906],[-71.667186,41.97699299906],[-71.667098,41.97706499906],[-71.667017,41.97714399906],[-71.666953,41.97718499906],[-71.666894,41.97723199906],[-71.666721,41.97729999906],[-71.666692,41.97735299906],[-71.666649,41.97740899906],[-71.666613,41.97748499906],[-71.666595,41.97759999906],[-71.666572,41.97765399906],[-71.666464,41.97774599906],[-71.666442,41.97780099906],[-71.666389,41.97783899906],[-71.66635,41.97788699906],[-71.666329,41.97794399906],[-71.666262,41.97798499906],[-71.666183,41.97800499906],[-71.666128,41.97804299906],[-71.66609,41.97810799906],[-71.666082,41.97816799906],[-71.666071,41.97823699906],[-71.666168,41.97826799906],[-71.666267,41.97833599906],[-71.666328,41.97840899906],[-71.666359,41.97849699906],[-71.666359,41.97854599906],[-71.666351,41.97859599906],[-71.666237,41.97895399906],[-71.666206,41.97917599906],[-71.666206,41.97926699906],[-71.666267,41.97946199906],[-71.666313,41.97954599906],[-71.666428,41.97968299906],[-71.666733,41.97994199906],[-71.666771,41.97996099906],[-71.666847,41.97997699906],[-71.666885,41.97997999906],[-71.666992,41.97997699906],[-71.667053,41.97996499906],[-71.66725,41.97989199906],[-71.667297,41.97987399906],[-71.668015,41.97956799906],[-71.668175,41.97945799906],[-71.668228,41.97940399906],[-71.668282,41.97933599906],[-71.668327,41.97925899906],[-71.668533,41.97873299906],[-71.66864,41.97838999906],[-71.668716,41.97800799906],[-71.668747,41.97788199906],[-71.668831,41.97769499906],[-71.668877,41.97763099906],[-71.668999,41.97735599906],[-71.669022,41.97728299906],[-71.669052,41.97721099906],[-71.66909,41.97707699906],[-71.669098,41.97701999906],[-71.669113,41.97696299906],[-71.669121,41.97690199906],[-71.669121,41.97684499906],[-71.669128,41.97678399906],[-71.669128,41.97666199906],[-71.669136,41.97660099906],[-71.669113,41.97602799906],[-71.669113,41.97584499906],[-71.669136,41.97564299906],[-71.669174,41.97552099906],[-71.669205,41.97545599906],[-71.669228,41.97539099906],[-71.669579,41.97458299906],[-71.669693,41.97428899906],[-71.669785,41.97412899906],[-71.669838,41.97402599906],[-71.669975,41.97388799906],[-71.670143,41.97378899906],[-71.670296,41.97372099906],[-71.670471,41.97367099906],[-71.670639,41.97363999906],[-71.670937,41.97363699906],[-71.6716,41.97371699906],[-71.672005,41.97374699906],[-71.672081,41.97366299906],[-71.67218,41.97350699906],[-71.672279,41.97331999906],[-71.67231,41.97317499906],[-71.67234,41.97289699906],[-71.67234,41.97247299906],[-71.672318,41.97211799906],[-71.672272,41.97176399906],[-71.672096,41.97100099906],[-71.671982,41.97055799906],[-71.671867,41.97016499906],[-71.671799,41.96987499906],[-71.671776,41.96972699906],[-71.671799,41.96959699906],[-71.671814,41.96950899906],[-71.671875,41.96937199906],[-71.672035,41.96919299906],[-71.672073,41.96915799906],[-71.672251,41.96896799906],[-71.672348,41.96886399906],[-71.672569,41.96868899906],[-71.672615,41.96858599906],[-71.672752,41.96824299906],[-71.672882,41.96799099906],[-71.67305,41.96772399906],[-71.673553,41.96698399906],[-71.673813,41.96660599906],[-71.67395,41.96641899906],[-71.674133,41.96603399906],[-71.674294,41.96564499906],[-71.674294,41.96549199906],[-71.674337,41.96548099906],[-71.674431,41.96545599906],[-71.674622,41.96540399906],[-71.67472,41.96548099906],[-71.674847,41.96547899906],[-71.675601,41.96623599906],[-71.676486,41.96823899906],[-71.676997,41.96961299906],[-71.67693,41.96961099906],[-71.676878,41.96959199906],[-71.676857,41.96956299906],[-71.676782,41.96958599906],[-71.676752,41.96961999906],[-71.67679,41.96968299906],[-71.676857,41.96971899906],[-71.676924,41.96974799906],[-71.677027,41.96978299906],[-71.677192,41.96981499906],[-71.677278,41.96983999906],[-71.677421,41.96991699906],[-71.677501,41.96995299906],[-71.677572,41.96997699906],[-71.677639,41.97000699906],[-71.677757,41.97010199906],[-71.677845,41.97016099906],[-71.677917,41.97019599906],[-71.677989,41.97024799906],[-71.678033,41.97030299906],[-71.678147,41.97049599906],[-71.678206,41.97061199906],[-71.678288,41.97072299906],[-71.678323,41.97077799906],[-71.678449,41.97085199906],[-71.678537,41.97090299906],[-71.678583,41.97089399906],[-71.678651,41.97093499906],[-71.678714,41.97093399906],[-71.678778,41.97090899906],[-71.678853,41.97091499906],[-71.678853,41.97095199906],[-71.678802,41.97099999906],[-71.678778,41.97103599906],[-71.678807,41.97107399906],[-71.678947,41.97110999906],[-71.679049,41.97108299906],[-71.679133,41.97109299906],[-71.679184,41.97111999906],[-71.679251,41.97116799906],[-71.679396,41.97124399906],[-71.679515,41.97134599906],[-71.679666,41.97139199906],[-71.679763,41.97140499906],[-71.679838,41.97140199906],[-71.679906,41.97134699906],[-71.68017,41.97124599906],[-71.680246,41.97123799906],[-71.680338,41.97124399906],[-71.680452,41.97129699906],[-71.68054,41.97134499906],[-71.680619,41.97137499906],[-71.680788,41.97145999906],[-71.680883,41.97149399906],[-71.680975,41.97150799906],[-71.681096,41.97151899906],[-71.681348,41.97151399906],[-71.681423,41.97150499906],[-71.681757,41.97139799906],[-71.681828,41.97135399906],[-71.681899,41.97129999906],[-71.682066,41.97118899906],[-71.682182,41.97109699906],[-71.682367,41.97096699906],[-71.682484,41.97086299906],[-71.682606,41.97073599906],[-71.682663,41.97068499906],[-71.682779,41.97059699906],[-71.682915,41.97046299906],[-71.68297,41.97041599906],[-71.683101,41.97032099906],[-71.683174,41.97027899906],[-71.683223,41.97023899906],[-71.68326,41.97017399906],[-71.68332,41.97011799906],[-71.683456,41.97006899906],[-71.683533,41.97005599906],[-71.683618,41.97005499906],[-71.683693,41.97004499906],[-71.683857,41.97004099906],[-71.683932,41.97005099906],[-71.684015,41.97006799906],[-71.684176,41.97008899906],[-71.684248,41.97010499906],[-71.68432,41.97012599906],[-71.684464,41.97018099906],[-71.684544,41.97018999906],[-71.684701,41.97019099906],[-71.684773,41.97018099906],[-71.684842,41.97015999906],[-71.684934,41.97010999906],[-71.685059,41.97015799906],[-71.685323,41.97027299906],[-71.685356,41.97028699906],[-71.685623,41.97039399906],[-71.686195,41.97063399906],[-71.686401,41.97071799906],[-71.686615,41.97079799906],[-71.687546,41.97114199906],[-71.689156,41.97172199906],[-71.689705,41.97192799906],[-71.691284,41.97253799906],[-71.69146,41.97260999906],[-71.69194,41.97277499906],[-71.692322,41.97291199906],[-71.692787,41.97306099906],[-71.692947,41.97309499906],[-71.692986,41.97309899906],[-71.693207,41.97310299906],[-71.693436,41.97308299906],[-71.693837,41.97303899906],[-71.693886,41.97303399906],[-71.694244,41.97300699906],[-71.694443,41.97300699906],[-71.694595,41.97299999906],[-71.69474,41.97299999906],[-71.694916,41.97300699906],[-71.695168,41.97302999906],[-71.695267,41.97304499906],[-71.695435,41.97307999906]]]}}"}, +{"type": "blockgroup", "typeId": 129002, "areaId": 28974, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.709869,41.97538799906],[-71.709824,41.97506299906],[-71.709781,41.97482799906],[-71.709686,41.97430399906],[-71.709663,41.97411699906],[-71.709641,41.97401399906],[-71.709641,41.97387699906],[-71.709656,41.97359099906],[-71.709656,41.97312899906],[-71.709648,41.97294199906],[-71.709648,41.97279699906],[-71.709633,41.97254899906],[-71.709633,41.97240399906],[-71.709648,41.97225999906],[-71.709648,41.97201199906],[-71.709625,41.97191999906],[-71.709557,41.97172199906],[-71.709427,41.97143599906],[-71.709305,41.97106599906],[-71.709251,41.97085199906],[-71.709152,41.97049699906],[-71.709129,41.97038299906],[-71.709106,41.97030999906],[-71.709015,41.96982999906],[-71.708977,41.96959699906],[-71.708961,41.96940799906],[-71.708923,41.96896699906],[-71.708908,41.96873899906],[-71.708885,41.96848699906],[-71.708864,41.96817799906],[-71.708847,41.96791799906],[-71.708847,41.96751399906],[-71.708862,41.96734199906],[-71.708863,41.96713799906],[-71.70887,41.96704499906],[-71.708893,41.96690399906],[-71.708908,41.96684999906],[-71.708778,41.96685799906],[-71.708389,41.96696899906],[-71.708183,41.96704499906],[-71.707512,41.96726999906],[-71.707409,41.96729399906],[-71.707268,41.96731599906],[-71.707146,41.96731599906],[-71.706993,41.96728899906],[-71.70681,41.96724299906],[-71.706635,41.96719399906],[-71.706535,41.96717499906],[-71.706078,41.96707199906],[-71.705864,41.96703299906],[-71.705742,41.96699099906],[-71.705635,41.96697199906],[-71.705574,41.96692999906],[-71.705544,41.96691499906],[-71.70549,41.96687699906],[-71.705399,41.96676999906],[-71.70536,41.96669799906],[-71.70533,41.96662099906],[-71.705307,41.96648799906],[-71.705292,41.96644999906],[-71.705276,41.96635099906],[-71.705261,41.96629699906],[-71.705254,41.96624399906],[-71.705238,41.96619399906],[-71.705215,41.96606099906],[-71.7052,41.96602199906],[-71.705185,41.96594599906],[-71.705185,41.96590799906],[-71.705177,41.96585099906],[-71.70517,41.96583199906],[-71.70517,41.96578199906],[-71.705162,41.96575199906],[-71.705162,41.96572099906],[-71.705154,41.96560699906],[-71.705154,41.96552299906],[-71.705139,41.96540099906],[-71.705101,41.96527099906],[-71.705078,41.96513699906],[-71.704987,41.96488599906],[-71.70488,41.96472499906],[-71.704704,41.96449999906],[-71.704453,41.96419099906],[-71.704147,41.96383699906],[-71.704041,41.96373699906],[-71.703934,41.96366899906],[-71.703659,41.96351599906],[-71.703468,41.96345899906],[-71.703278,41.96340899906],[-71.703094,41.96337499906],[-71.702995,41.96335199906],[-71.702193,41.96322599906],[-71.702072,41.96320699906],[-71.701866,41.96315799906],[-71.701782,41.96313099906],[-71.701729,41.96310799906],[-71.701553,41.96301299906],[-71.701462,41.96293599906],[-71.701385,41.96284899906],[-71.701341,41.96278099906],[-71.701317,41.96272299906],[-71.701286,41.96261999906],[-71.701263,41.96246699906],[-71.701241,41.96226099906],[-71.701218,41.96189499906],[-71.701202,41.96173099906],[-71.701171,41.96121899906],[-71.701157,41.96098299906],[-71.701152,41.96080899906],[-71.701141,41.96040699906],[-71.701118,41.96010199906],[-71.701111,41.95984299906],[-71.70108,41.95970899906],[-71.700943,41.95956399906],[-71.700974,41.95949199906],[-71.70105,41.95931599906],[-71.701088,41.95923599906],[-71.701141,41.95908699906],[-71.70121,41.95896499906],[-71.701312,41.95872799906],[-71.701385,41.95857599906],[-71.701393,41.95854899906],[-71.701447,41.95842699906],[-71.701477,41.95822899906],[-71.701477,41.95813799906],[-71.701469,41.95805699906],[-71.701431,41.95789299906],[-71.701332,41.95753899906],[-71.701324,41.95738599906],[-71.701332,41.95723299906],[-71.70137,41.95711099906],[-71.701424,41.95703099906],[-71.701492,41.95693599906],[-71.701546,41.95686299906],[-71.701927,41.95626399906],[-71.702011,41.95613099906],[-71.702028,41.95611699906],[-71.702065,41.95606199906],[-71.702141,41.95598999906],[-71.702217,41.95593599906],[-71.702271,41.95590999906],[-71.702301,41.95589099906],[-71.702332,41.95587899906],[-71.702469,41.95583999906],[-71.702431,41.95568799906],[-71.702431,41.95566899906],[-71.702408,41.95557799906],[-71.702393,41.95550899906],[-71.702362,41.95530299906],[-71.702354,41.95528399906],[-71.702301,41.95506699906],[-71.702217,41.95479199906],[-71.702164,41.95466599906],[-71.702095,41.95454399906],[-71.70192,41.95429199906],[-71.701828,41.95415099906],[-71.701683,41.95387299906],[-71.701614,41.95372799906],[-71.701538,41.95358699906],[-71.701439,41.95336499906],[-71.701233,41.95295699906],[-71.701157,41.95284299906],[-71.70108,41.95275899906],[-71.700996,41.95267899906],[-71.700905,41.95260199906],[-71.700714,41.95247299906],[-71.70047,41.95235399906],[-71.700333,41.95230099906],[-71.70018,41.95224799906],[-71.70002,41.95220199906],[-71.69986,41.95216799906],[-71.699707,41.95212599906],[-71.699547,41.95206499906],[-71.699394,41.95199599906],[-71.699257,41.95191199906],[-71.698814,41.95161099906],[-71.698677,41.95152299906],[-71.698517,41.95143499906],[-71.698364,41.95136599906],[-71.698257,41.95131299906],[-71.697838,41.95115699906],[-71.697342,41.95099999906],[-71.697166,41.95093499906],[-71.697128,41.95092399906],[-71.696907,41.95083599906],[-71.696655,41.95071399906],[-71.696419,41.95056499906],[-71.696289,41.95045099906],[-71.69606,41.95021399906],[-71.69585,41.94991399906],[-71.695831,41.94988599906],[-71.695671,41.94963799906],[-71.695557,41.94948999906],[-71.695282,41.94921099906],[-71.69503,41.94901999906],[-71.694946,41.94896299906],[-71.694817,41.94888299906],[-71.694237,41.94858199906],[-71.693886,41.94840999906],[-71.693596,41.94825699906],[-71.693001,41.94796799906],[-71.692619,41.94776499906],[-71.692123,41.94752499906],[-71.69191,41.94740699906],[-71.691772,41.94734199906],[-71.691681,41.94729599906],[-71.691322,41.94711299906],[-71.691185,41.94704799906],[-71.690895,41.94712099906],[-71.690689,41.94715899906],[-71.690407,41.94720499906],[-71.689804,41.94731499906],[-71.689568,41.94736899906],[-71.689224,41.94745999906],[-71.688942,41.94753999906],[-71.688293,41.94770799906],[-71.688133,41.94773499906],[-71.688004,41.94776199906],[-71.687057,41.94784499906],[-71.686668,41.94788699906],[-71.686371,41.94790599906],[-71.686142,41.94792599906],[-71.685745,41.94793299906],[-71.685349,41.94790599906],[-71.685364,41.94807399906],[-71.685394,41.94824999906],[-71.685425,41.94853599906],[-71.685463,41.94876099906],[-71.685509,41.94913899906],[-71.685532,41.94925699906],[-71.685562,41.94960399906],[-71.685585,41.94977999906],[-71.6856,41.94993999906],[-71.685616,41.95000499906],[-71.685654,41.95024899906],[-71.685738,41.95094699906],[-71.68576,41.95126299906],[-71.685806,41.95162199906],[-71.685829,41.95199599906],[-71.685837,41.95231599906],[-71.68589,41.95272399906],[-71.685913,41.95311699906],[-71.685898,41.95323599906],[-71.685852,41.95339599906],[-71.685806,41.95350599906],[-71.685753,41.95368599906],[-71.685677,41.95386899906],[-71.685638,41.95401399906],[-71.685623,41.95417399906],[-71.685616,41.95432999906],[-71.685638,41.95456699906],[-71.685669,41.95476499906],[-71.685822,41.95529199906],[-71.685898,41.95549799906],[-71.685997,41.95585999906],[-71.686028,41.95600099906],[-71.68605,41.95613899906],[-71.686058,41.95626099906],[-71.686058,41.95636399906],[-71.686043,41.95643999906],[-71.685951,41.95679499906],[-71.685883,41.95702399906],[-71.685838,41.95720999906],[-71.68573,41.95765699906],[-71.685722,41.95772199906],[-71.685692,41.95782099906],[-71.685654,41.95790499906],[-71.685577,41.95798499906],[-71.685516,41.95803099906],[-71.685394,41.95808799906],[-71.685326,41.95811499906],[-71.685005,41.95821399906],[-71.684677,41.95832099906],[-71.684357,41.95841999906],[-71.68409,41.95851899906],[-71.683304,41.95878999906],[-71.682673,41.95899199906],[-71.681656,41.95931599906],[-71.681404,41.95939999906],[-71.681046,41.95951099906],[-71.680939,41.95953799906],[-71.680618,41.95963299906],[-71.680328,41.95973999906],[-71.680237,41.95981199906],[-71.680183,41.95986199906],[-71.68018,41.95992499906],[-71.680176,41.96003699906],[-71.680176,41.96018599906],[-71.680191,41.96039599906],[-71.680191,41.96065099906],[-71.680208,41.96073299906],[-71.680222,41.96079999906],[-71.680298,41.96103299906],[-71.680374,41.96122199906],[-71.680405,41.96129999906],[-71.680412,41.96139499906],[-71.680428,41.96151399906],[-71.680428,41.96171999906],[-71.680443,41.96187999906],[-71.680443,41.96247099906],[-71.68042,41.96265799906],[-71.680359,41.96284099906],[-71.68029,41.96296699906],[-71.680244,41.96300899906],[-71.680195,41.96305299906],[-71.680176,41.96306999906],[-71.680054,41.96313499906],[-71.679848,41.96319599906],[-71.679268,41.96331399906],[-71.678917,41.96337899906],[-71.678719,41.96343199906],[-71.67852,41.96347799906],[-71.678368,41.96356199906],[-71.678138,41.96370299906],[-71.678235,41.96373199906],[-71.679636,41.96414699906],[-71.681054,41.96458199906],[-71.681328,41.96465999906],[-71.681451,41.96469499906],[-71.681753,41.96478099906],[-71.682441,41.96497599906],[-71.683269,41.96524499906],[-71.683701,41.96539299906],[-71.683899,41.96546099906],[-71.684823,41.96571299906],[-71.686115,41.96609899906],[-71.68634,41.96617199906],[-71.686547,41.96622399906],[-71.686772,41.96626099906],[-71.686995,41.96629199906],[-71.687239,41.96631499906],[-71.687676,41.96632299906],[-71.687877,41.96632299906],[-71.688134,41.96630699906],[-71.688328,41.96628299906],[-71.688556,41.96624199906],[-71.688808,41.96616299906],[-71.688939,41.96612899906],[-71.688961,41.96617499906],[-71.68899,41.96618699906],[-71.689064,41.96619899906],[-71.689144,41.96621799906],[-71.689216,41.96624799906],[-71.689286,41.96628599906],[-71.689359,41.96631999906],[-71.689438,41.96634999906],[-71.689501,41.96638999906],[-71.689554,41.96643099906],[-71.689686,41.96651899906],[-71.689685,41.96656199906],[-71.68963,41.96660699906],[-71.689564,41.96665299906],[-71.689511,41.96669899906],[-71.689466,41.96675599906],[-71.689435,41.96681099906],[-71.689427,41.96687099906],[-71.689439,41.96693399906],[-71.689491,41.96698299906],[-71.689704,41.96713399906],[-71.689998,41.96703899906],[-71.690115,41.96699699906],[-71.690143,41.96698699906],[-71.690211,41.96695599906],[-71.69027,41.96691999906],[-71.690326,41.96687699906],[-71.690416,41.96677399906],[-71.69049,41.96666799906],[-71.690547,41.96662199906],[-71.690607,41.96658199906],[-71.690829,41.96650699906],[-71.691144,41.96644699906],[-71.691369,41.96638199906],[-71.691534,41.96635199906],[-71.691605,41.96633299906],[-71.691679,41.96630299906],[-71.69182,41.96622199906],[-71.691885,41.96618899906],[-71.691936,41.96614599906],[-71.692094,41.96597699906],[-71.692137,41.96592199906],[-71.692208,41.96581299906],[-71.692246,41.96576399906],[-71.692309,41.96572299906],[-71.692379,41.96568899906],[-71.692522,41.96562899906],[-71.692589,41.96559199906],[-71.692655,41.96556699906],[-71.69274,41.96554899906],[-71.692795,41.96552899906],[-71.692757,41.96559799906],[-71.692741,41.96561799906],[-71.692719,41.96566399906],[-71.692665,41.96575499906],[-71.692787,41.96575199906],[-71.692879,41.96573599906],[-71.69297,41.96573599906],[-71.693085,41.96574399906],[-71.693184,41.96577099906],[-71.69342,41.96654499906],[-71.693522,41.96686599906],[-71.693649,41.96726599906],[-71.693848,41.96792999906],[-71.694122,41.96883399906],[-71.694397,41.96970699906],[-71.694504,41.97001999906],[-71.694542,41.97014599906],[-71.694641,41.97041299906],[-71.694679,41.97055399906],[-71.694733,41.97071499906],[-71.694756,41.97082899906],[-71.694809,41.97101199906],[-71.694962,41.97148899906],[-71.695152,41.97215299906],[-71.695213,41.97235499906],[-71.695305,41.97261399906],[-71.695366,41.97280499906],[-71.695435,41.97307999906],[-71.695709,41.97313299906],[-71.696564,41.97331199906],[-71.697021,41.97341899906],[-71.697155,41.97344299906],[-71.69754,41.97351499906],[-71.697716,41.97355299906],[-71.697884,41.97359499906],[-71.698021,41.97362099906],[-71.698143,41.97363699906],[-71.698586,41.97366899906],[-71.698662,41.97367499906],[-71.69911,41.97369699906],[-71.699791,41.97372399906],[-71.700172,41.97374299906],[-71.700539,41.97375099906],[-71.700859,41.97377399906],[-71.701324,41.97378199906],[-71.701477,41.97378899906],[-71.701569,41.97378899906],[-71.701653,41.97380099906],[-71.701744,41.97380799906],[-71.701912,41.97386199906],[-71.702003,41.97391499906],[-71.702095,41.97400299906],[-71.702431,41.97435799906],[-71.702629,41.97458599906],[-71.703232,41.97524999906],[-71.703484,41.97553599906],[-71.703964,41.97605099906],[-71.704605,41.97676799906],[-71.704742,41.97689099906],[-71.704826,41.97695499906],[-71.705009,41.97704299906],[-71.705116,41.97707699906],[-71.7052,41.97709699906],[-71.705246,41.97710799906],[-71.705383,41.97713099906],[-71.70562,41.97714199906],[-71.705818,41.97713499906],[-71.705978,41.97710799906],[-71.706123,41.97707699906],[-71.706749,41.97689099906],[-71.707008,41.97680999906],[-71.70742,41.97667299906],[-71.708023,41.97649399906],[-71.708079,41.97646899906],[-71.708191,41.97641799906],[-71.708313,41.97634099906],[-71.708603,41.97619199906],[-71.708763,41.97607399906],[-71.708923,41.97596699906],[-71.709091,41.97586399906],[-71.70929,41.97574999906],[-71.709579,41.97556299906],[-71.709724,41.97548299906],[-71.709869,41.97538799906]]]}}"}, +{"type": "blockgroup", "typeId": 129003, "areaId": 28975, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.730704,41.96540099906],[-71.730676,41.96534499906],[-71.730572,41.96526699906],[-71.730587,41.96517699906],[-71.730415,41.96516799906],[-71.730209,41.96515299906],[-71.730156,41.96515299906],[-71.730141,41.96496199906],[-71.730095,41.96488599906],[-71.730019,41.96482799906],[-71.729668,41.96463799906],[-71.729172,41.96444299906],[-71.728989,41.96438999906],[-71.728844,41.96433999906],[-71.728409,41.96427199906],[-71.728127,41.96422199906],[-71.727806,41.96417199906],[-71.727486,41.96411499906],[-71.727341,41.96408499906],[-71.72718,41.96403899906],[-71.727013,41.96397399906],[-71.726883,41.96393199906],[-71.726858,41.96392699906],[-71.726654,41.96384799906],[-71.726532,41.96379499906],[-71.72644,41.96374899906],[-71.726349,41.96368399906],[-71.726212,41.96352399906],[-71.726089,41.96340199906],[-71.726021,41.96331799906],[-71.725952,41.96328699906],[-71.725883,41.96326799906],[-71.725662,41.96325299906],[-71.725555,41.96324199906],[-71.72541,41.96323399906],[-71.725166,41.96320299906],[-71.724873,41.96315199906],[-71.72479,41.96314399906],[-71.72467,41.96313099906],[-71.724442,41.96309699906],[-71.724068,41.96305499906],[-71.723648,41.96302399906],[-71.723251,41.96301699906],[-71.72303,41.96302399906],[-71.722664,41.96301699906],[-71.722511,41.96299699906],[-71.722366,41.96298599906],[-71.722183,41.96295199906],[-71.722015,41.96291399906],[-71.721832,41.96287899906],[-71.721687,41.96285999906],[-71.72142,41.96278799906],[-71.721291,41.96272699906],[-71.721176,41.96266599906],[-71.720955,41.96249799906],[-71.720772,41.96233399906],[-71.720551,41.96212399906],[-71.720383,41.96192899906],[-71.720306,41.96181899906],[-71.720161,41.96162799906],[-71.720093,41.96152499906],[-71.720016,41.96138399906],[-71.719978,41.96132699906],[-71.719925,41.96122699906],[-71.719734,41.96076599906],[-71.719604,41.96037299906],[-71.719505,41.96011699906],[-71.719452,41.95993799906],[-71.719398,41.95981199906],[-71.719345,41.95973199906],[-71.719193,41.95958699906],[-71.719078,41.95952199906],[-71.718933,41.95945399906],[-71.718102,41.95918999906],[-71.717766,41.95910599906],[-71.717613,41.95905699906],[-71.717552,41.95899599906],[-71.717541,41.95897999906],[-71.717484,41.95893099906],[-71.717474,41.95891399906],[-71.717369,41.95879699906],[-71.717178,41.95854899906],[-71.716789,41.95809599906],[-71.716469,41.95771399906],[-71.716164,41.95739399906],[-71.716059,41.95728799906],[-71.715904,41.95712999906],[-71.71566,41.95691299906],[-71.715576,41.95684799906],[-71.715424,41.95674899906],[-71.715393,41.95672999906],[-71.715187,41.95663099906],[-71.714901,41.95648399906],[-71.714561,41.95630999906],[-71.714182,41.95610699906],[-71.713272,41.95561999906],[-71.712494,41.95521499906],[-71.712387,41.95517699906],[-71.712204,41.95510899906],[-71.712021,41.95501699906],[-71.711487,41.95476499906],[-71.711205,41.95461299906],[-71.711178,41.95460199906],[-71.711075,41.95455899906],[-71.71096,41.95449799906],[-71.710838,41.95445299906],[-71.710732,41.95442599906],[-71.710236,41.95433799906],[-71.709885,41.95429599906],[-71.709541,41.95429199906],[-71.709084,41.95432999906],[-71.708944,41.95434699906],[-71.708572,41.95439099906],[-71.708397,41.95442599906],[-71.708214,41.95447499906],[-71.708061,41.95453299906],[-71.708031,41.95454399906],[-71.707939,41.95458999906],[-71.707825,41.95467399906],[-71.707603,41.95480699906],[-71.70752,41.95484199906],[-71.707436,41.95486799906],[-71.707329,41.95489099906],[-71.706688,41.95500199906],[-71.706581,41.95503599906],[-71.706497,41.95506999906],[-71.706421,41.95513199906],[-71.706383,41.95519299906],[-71.706352,41.95526899906],[-71.706337,41.95533799906],[-71.706306,41.95539899906],[-71.706245,41.95547899906],[-71.706116,41.95555499906],[-71.7062,41.95569199906],[-71.706352,41.95601999906],[-71.706497,41.95634799906],[-71.706551,41.95645499906],[-71.706779,41.95697799906],[-71.707069,41.95761499906],[-71.707489,41.95854899906],[-71.707695,41.95896899906],[-71.707756,41.95910299906],[-71.707771,41.95917899906],[-71.707756,41.95922099906],[-71.707998,41.95958399906],[-71.708272,41.95994699906],[-71.708275,41.96042299906],[-71.707764,41.96059399906],[-71.707413,41.96074299906],[-71.707001,41.96089599906],[-71.706512,41.96108999906],[-71.706001,41.96128099906],[-71.70556,41.96145399906],[-71.705476,41.96148699906],[-71.705223,41.96158599906],[-71.704834,41.96172699906],[-71.705063,41.96221199906],[-71.705078,41.96225399906],[-71.705185,41.96246299906],[-71.705307,41.96272299906],[-71.705342,41.96279199906],[-71.705444,41.96299399906],[-71.705574,41.96322599906],[-71.70607,41.96406199906],[-71.706192,41.96430999906],[-71.706367,41.96462999906],[-71.706474,41.96481699906],[-71.706669,41.96519999906],[-71.706711,41.96528199906],[-71.706894,41.96562599906],[-71.707016,41.96588899906],[-71.707382,41.96657199906],[-71.706928,41.96670499906],[-71.706848,41.96672799906],[-71.706566,41.96682399906],[-71.706224,41.96690899906],[-71.705986,41.96696899906],[-71.705902,41.96698399906],[-71.705811,41.96699099906],[-71.705742,41.96699099906],[-71.705864,41.96703299906],[-71.706078,41.96707199906],[-71.706535,41.96717499906],[-71.706635,41.96719399906],[-71.70681,41.96724299906],[-71.706993,41.96728899906],[-71.707146,41.96731599906],[-71.707268,41.96731599906],[-71.707409,41.96729399906],[-71.707512,41.96726999906],[-71.708183,41.96704499906],[-71.708389,41.96696899906],[-71.708778,41.96685799906],[-71.708908,41.96684999906],[-71.708893,41.96690399906],[-71.70887,41.96704499906],[-71.708863,41.96713799906],[-71.708862,41.96734199906],[-71.708847,41.96751399906],[-71.708847,41.96773899906],[-71.708954,41.96773099906],[-71.709038,41.96771599906],[-71.709198,41.96765499906],[-71.709862,41.96742999906],[-71.710083,41.96731899906],[-71.710243,41.96720499906],[-71.710396,41.96708699906],[-71.710526,41.96696099906],[-71.710693,41.96681199906],[-71.710823,41.96668199906],[-71.711021,41.96653699906],[-71.711594,41.96613699906],[-71.711777,41.96601899906],[-71.712112,41.96582799906],[-71.71221,41.96574499906],[-71.712263,41.96577999906],[-71.712319,41.96580599906],[-71.712392,41.96582499906],[-71.712545,41.96587899906],[-71.712692,41.96594199906],[-71.712783,41.96596699906],[-71.712873,41.96597599906],[-71.712948,41.96597699906],[-71.713041,41.96596399906],[-71.713122,41.96594799906],[-71.713181,41.96591199906],[-71.713207,41.96585399906],[-71.7132,41.96579599906],[-71.713204,41.96568099906],[-71.713226,41.96556699906],[-71.713265,41.96550899906],[-71.713327,41.96546299906],[-71.713569,41.96538699906],[-71.713782,41.96532299906],[-71.713868,41.96528999906],[-71.714021,41.96522399906],[-71.71409,41.96520399906],[-71.714178,41.96520099906],[-71.714355,41.96520399906],[-71.714463,41.96520299906],[-71.714428,41.96527499906],[-71.714441,41.96530299906],[-71.714508,41.96532799906],[-71.714538,41.96538099906],[-71.714558,41.96543299906],[-71.714604,41.96547999906],[-71.714669,41.96550899906],[-71.714811,41.96558799906],[-71.714916,41.96568499906],[-71.714992,41.96571799906],[-71.715241,41.96579099906],[-71.715561,41.96587399906],[-71.715635,41.96591299906],[-71.715751,41.96602099906],[-71.715837,41.96613799906],[-71.715916,41.96626199906],[-71.715946,41.96632399906],[-71.716012,41.96648399906],[-71.716044,41.96660199906],[-71.716124,41.96670799906],[-71.716144,41.96677499906],[-71.716226,41.96695699906],[-71.716268,41.96697999906],[-71.716368,41.96688799906],[-71.716397,41.96683599906],[-71.716413,41.96686399906],[-71.716411,41.96691799906],[-71.716389,41.96697599906],[-71.716346,41.96702699906],[-71.716286,41.96706899906],[-71.716221,41.96709899906],[-71.716139,41.96710899906],[-71.716063,41.96710699906],[-71.71598,41.96711399906],[-71.715934,41.96715799906],[-71.715912,41.96721499906],[-71.715896,41.96727299906],[-71.715895,41.96732899906],[-71.715915,41.96738399906],[-71.715954,41.96756399906],[-71.715975,41.96768699906],[-71.71602,41.96774199906],[-71.716066,41.96775899906],[-71.716151,41.96783699906],[-71.716221,41.96785799906],[-71.716299,41.96786099906],[-71.716417,41.96789899906],[-71.716482,41.96791899906],[-71.716514,41.96792799906],[-71.716849,41.96797899906],[-71.717002,41.96801399906],[-71.717064,41.96804999906],[-71.717113,41.96809499906],[-71.717336,41.96833099906],[-71.717425,41.96844699906],[-71.717533,41.96861899906],[-71.717645,41.96877199906],[-71.717698,41.96881499906],[-71.717712,41.96883099906],[-71.717769,41.96886699906],[-71.717845,41.96889399906],[-71.717925,41.96891399906],[-71.718011,41.96892699906],[-71.718168,41.96893499906],[-71.718248,41.96893299906],[-71.718399,41.96895899906],[-71.718558,41.96900999906],[-71.718612,41.96905799906],[-71.718682,41.96910199906],[-71.718764,41.96910599906],[-71.718829,41.96914299906],[-71.718861,41.96920299906],[-71.718923,41.96943899906],[-71.718963,41.96948499906],[-71.719044,41.96949599906],[-71.719116,41.96948399906],[-71.719176,41.96944699906],[-71.719212,41.96938899906],[-71.719238,41.96927199906],[-71.719241,41.96921599906],[-71.719258,41.96916299906],[-71.719294,41.96912399906],[-71.719311,41.96910499906],[-71.719342,41.96905299906],[-71.719383,41.96893699906],[-71.719376,41.96887899906],[-71.719357,41.96881499906],[-71.719305,41.96868999906],[-71.719146,41.96839499906],[-71.719098,41.96826899906],[-71.719063,41.96815199906],[-71.719054,41.96809199906],[-71.719055,41.96797299906],[-71.719078,41.96786199906],[-71.719121,41.96774499906],[-71.719156,41.96768499906],[-71.71918,41.96762499906],[-71.719215,41.96757899906],[-71.719244,41.96754099906],[-71.719286,41.96748099906],[-71.719304,41.96742099906],[-71.719303,41.96736499906],[-71.719292,41.96730599906],[-71.719241,41.96719099906],[-71.719224,41.96713699906],[-71.719254,41.96702599906],[-71.719256,41.96696499906],[-71.719238,41.96683999906],[-71.719182,41.96667099906],[-71.719131,41.96648199906],[-71.719132,41.96641499906],[-71.719155,41.96635599906],[-71.719279,41.96627199906],[-71.71932,41.96621599906],[-71.719299,41.96617499906],[-71.719223,41.96616399906],[-71.71915,41.96613899906],[-71.71911,41.96608599906],[-71.719115,41.96602499906],[-71.719175,41.96598899906],[-71.719238,41.96595899906],[-71.719262,41.96590499906],[-71.719202,41.96586899906],[-71.719135,41.96584699906],[-71.719068,41.96581299906],[-71.719027,41.96576799906],[-71.719025,41.96571199906],[-71.719032,41.96565299906],[-71.719068,41.96559999906],[-71.719176,41.96551399906],[-71.719245,41.96547599906],[-71.719328,41.96545799906],[-71.719416,41.96544699906],[-71.719509,41.96544299906],[-71.719585,41.96544599906],[-71.719662,41.96546099906],[-71.719816,41.96550099906],[-71.720109,41.96560699906],[-71.720181,41.96561899906],[-71.720337,41.96566299906],[-71.720424,41.96566999906],[-71.720453,41.96567799906],[-71.720507,41.96569399906],[-71.720731,41.96578899906],[-71.720864,41.96585799906],[-71.721083,41.96596199906],[-71.721249,41.96601299906],[-71.721494,41.96605799906],[-71.721574,41.96607699906],[-71.721878,41.96617699906],[-71.721958,41.96620999906],[-71.722015,41.96624699906],[-71.722062,41.96629599906],[-71.722278,41.96636399906],[-71.722402,41.96619999906],[-71.722538,41.96597899906],[-71.722616,41.96588199906],[-71.722664,41.96583299906],[-71.722712,41.96579199906],[-71.722837,41.96571399906],[-71.722984,41.96565799906],[-71.723058,41.96563899906],[-71.723143,41.96565399906],[-71.723211,41.96568599906],[-71.723282,41.96572599906],[-71.723349,41.96577399906],[-71.723492,41.96585599906],[-71.723547,41.96590099906],[-71.723608,41.96593699906],[-71.723749,41.96600499906],[-71.723811,41.96604199906],[-71.723862,41.96608199906],[-71.723961,41.96617399906],[-71.724073,41.96626499906],[-71.724368,41.96640799906],[-71.724439,41.96643499906],[-71.724501,41.96646499906],[-71.724621,41.96654799906],[-71.724856,41.96673199906],[-71.724921,41.96676799906],[-71.725001,41.96679899906],[-71.725162,41.96683699906],[-71.725651,41.96698499906],[-71.72572,41.96700299906],[-71.725732,41.96700799906],[-71.725867,41.96706399906],[-71.725993,41.96713499906],[-71.72608,41.96715099906],[-71.726168,41.96715199906],[-71.72624,41.96715799906],[-71.726334,41.96717199906],[-71.726414,41.96719299906],[-71.726487,41.96722099906],[-71.726561,41.96722699906],[-71.726652,41.96722899906],[-71.726894,41.96724599906],[-71.726974,41.96725899906],[-71.727053,41.96726499906],[-71.727125,41.96727499906],[-71.727204,41.96727799906],[-71.727274,41.96725599906],[-71.727331,41.96720799906],[-71.727396,41.96713099906],[-71.727422,41.96707999906],[-71.7275,41.96701899906],[-71.72756,41.96700199906],[-71.727621,41.96696899906],[-71.72767,41.96691499906],[-71.727689,41.96674199906],[-71.72768,41.96667499906],[-71.727616,41.96655799906],[-71.727615,41.96649699906],[-71.727644,41.96643599906],[-71.727797,41.96622199906],[-71.727806,41.96615099906],[-71.727799,41.96607999906],[-71.727752,41.96589699906],[-71.727756,41.96575799906],[-71.727788,41.96570599906],[-71.727856,41.96567699906],[-71.727939,41.96566099906],[-71.72809,41.96562099906],[-71.72815,41.96557399906],[-71.728356,41.96548699906],[-71.728427,41.96547099906],[-71.728501,41.96546299906],[-71.728686,41.96545899906],[-71.728769,41.96547599906],[-71.728835,41.96550699906],[-71.728891,41.96557999906],[-71.729,41.96566699906],[-71.729037,41.96571499906],[-71.729023,41.96591699906],[-71.729026,41.96608899906],[-71.729044,41.96625599906],[-71.729063,41.96632799906],[-71.729274,41.96644099906],[-71.729377,41.96647199906],[-71.729451,41.96649899906],[-71.729472,41.96651599906],[-71.729473,41.96659299906],[-71.729482,41.96665199906],[-71.729508,41.96675999906],[-71.729501,41.96682899906],[-71.7295,41.96691099906],[-71.729519,41.96695699906],[-71.729581,41.96698799906],[-71.729659,41.96699299906],[-71.729737,41.96698999906],[-71.729841,41.96698699906],[-71.729909,41.96696299906],[-71.730046,41.96688799906],[-71.730093,41.96683599906],[-71.730115,41.96677799906],[-71.73014,41.96643999906],[-71.730146,41.96626799906],[-71.730173,41.96621599906],[-71.730254,41.96619799906],[-71.730308,41.96609199906],[-71.730331,41.96602799906],[-71.730315,41.96595999906],[-71.730288,41.96590299906],[-71.730316,41.96586399906],[-71.730375,41.96581699906],[-71.73043,41.96577999906],[-71.730494,41.96572899906],[-71.730513,41.96569199906],[-71.730472,41.96564499906],[-71.730448,41.96560199906],[-71.73045,41.96552599906],[-71.730489,41.96549399906],[-71.730579,41.96545999906],[-71.730659,41.96544199906],[-71.730704,41.96540099906]]]}}"}, +{"type": "blockgroup", "typeId": 129004, "areaId": 28976, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.709238,41.93072499906],[-71.707942,41.93073399906],[-71.707337,41.93074899906],[-71.700481,41.93092299906],[-71.700485,41.93094299906],[-71.700519,41.93104299906],[-71.700577,41.93121299906],[-71.700798,41.93177799906],[-71.700951,41.93212499906],[-71.701271,41.93282299906],[-71.701404,41.93313699906],[-71.701477,41.93331099906],[-71.70151,41.93338499906],[-71.70192,41.93429899906],[-71.702087,41.93469999906],[-71.702118,41.93478799906],[-71.702209,41.93500099906],[-71.702309,41.93526499906],[-71.70237,41.93540999906],[-71.702499,41.93560799906],[-71.702904,41.93608899906],[-71.702981,41.93617799906],[-71.703163,41.93638599906],[-71.703354,41.93663799906],[-71.703433,41.93673399906],[-71.703567,41.93689999906],[-71.703606,41.93694699906],[-71.703636,41.93698899906],[-71.703896,41.93729399906],[-71.704155,41.93761499906],[-71.704403,41.93792399906],[-71.704445,41.93797299906],[-71.704483,41.93806099906],[-71.704506,41.93810299906],[-71.70453,41.93814499906],[-71.704582,41.93826699906],[-71.704628,41.93841599906],[-71.704659,41.93856799906],[-71.704704,41.93883499906],[-71.70471,41.93889099906],[-71.704735,41.93914399906],[-71.70472,41.93922799906],[-71.704353,41.94089899906],[-71.7043,41.94118099906],[-71.704292,41.94141799906],[-71.704315,41.94206199906],[-71.704315,41.94221099906],[-71.704308,41.94230699906],[-71.704292,41.94242899906],[-71.704254,41.94252399906],[-71.704193,41.94259999906],[-71.704117,41.94267699906],[-71.70401,41.94275999906],[-71.703706,41.94296499906],[-71.703545,41.94307299906],[-71.703407,41.94318399906],[-71.703331,41.94326799906],[-71.703278,41.94333999906],[-71.703232,41.94341999906],[-71.703194,41.94359999906],[-71.703194,41.94369499906],[-71.703293,41.94462199906],[-71.7033,41.94475599906],[-71.703316,41.94489299906],[-71.703339,41.94501099906],[-71.703346,41.94512599906],[-71.703346,41.94527799906],[-71.703331,41.94538099906],[-71.70327,41.94554499906],[-71.703056,41.94605999906],[-71.703033,41.94615199906],[-71.702904,41.94634199906],[-71.70285,41.94638799906],[-71.702782,41.94643399906],[-71.70266,41.94652899906],[-71.702499,41.94666299906],[-71.702446,41.94672799906],[-71.7024,41.94679299906],[-71.70237,41.94685399906],[-71.702347,41.94692199906],[-71.702332,41.94699499906],[-71.702232,41.94781899906],[-71.702232,41.94819599906],[-71.702263,41.94845999906],[-71.702286,41.94857799906],[-71.702332,41.94866599906],[-71.702393,41.94874999906],[-71.702492,41.94887199906],[-71.702583,41.94895899906],[-71.70269,41.94912699906],[-71.702751,41.94931399906],[-71.702888,41.94987499906],[-71.702919,41.95004699906],[-71.702919,41.95043899906],[-71.702888,41.95065699906],[-71.702888,41.95077099906],[-71.702881,41.95087799906],[-71.702896,41.95114499906],[-71.702896,41.95135499906],[-71.702888,41.95143499906],[-71.702843,41.95159499906],[-71.702797,41.95166799906],[-71.702728,41.95173599906],[-71.70266,41.95179399906],[-71.702126,41.95213699906],[-71.701912,41.95228599906],[-71.701805,41.95236599906],[-71.701683,41.95243799906],[-71.701628,41.95247299906],[-71.701454,41.95258699906],[-71.701302,41.95269799906],[-71.701157,41.95284299906],[-71.701233,41.95295699906],[-71.701439,41.95336499906],[-71.701538,41.95358699906],[-71.701614,41.95372799906],[-71.701683,41.95387299906],[-71.701828,41.95415099906],[-71.70192,41.95429199906],[-71.702095,41.95454399906],[-71.702164,41.95466599906],[-71.702217,41.95479199906],[-71.702301,41.95506699906],[-71.702354,41.95528399906],[-71.702362,41.95530299906],[-71.702393,41.95550899906],[-71.702408,41.95557799906],[-71.702431,41.95566899906],[-71.702431,41.95568799906],[-71.702469,41.95583999906],[-71.702332,41.95587899906],[-71.702301,41.95589099906],[-71.702271,41.95590999906],[-71.702217,41.95593599906],[-71.702141,41.95598999906],[-71.702065,41.95606199906],[-71.702028,41.95611699906],[-71.702011,41.95613099906],[-71.701927,41.95626399906],[-71.701546,41.95686299906],[-71.701492,41.95693599906],[-71.701424,41.95703099906],[-71.70137,41.95711099906],[-71.701332,41.95723299906],[-71.701324,41.95738599906],[-71.701332,41.95753899906],[-71.701431,41.95789299906],[-71.701469,41.95805699906],[-71.701477,41.95813799906],[-71.701477,41.95822899906],[-71.701447,41.95842699906],[-71.701393,41.95854899906],[-71.701385,41.95857599906],[-71.701312,41.95872799906],[-71.70121,41.95896499906],[-71.701141,41.95908699906],[-71.701088,41.95923599906],[-71.70105,41.95931599906],[-71.700974,41.95949199906],[-71.700943,41.95956399906],[-71.70108,41.95970899906],[-71.701111,41.95984299906],[-71.701118,41.96010199906],[-71.701141,41.96040699906],[-71.701152,41.96080899906],[-71.701157,41.96098299906],[-71.701171,41.96121899906],[-71.701202,41.96173099906],[-71.701218,41.96189499906],[-71.701241,41.96226099906],[-71.701263,41.96246699906],[-71.701286,41.96261999906],[-71.701317,41.96272299906],[-71.701341,41.96278099906],[-71.701385,41.96284899906],[-71.701462,41.96293599906],[-71.701553,41.96301299906],[-71.701729,41.96310799906],[-71.701782,41.96313099906],[-71.701866,41.96315799906],[-71.702072,41.96320699906],[-71.702193,41.96322599906],[-71.702995,41.96335199906],[-71.703094,41.96337499906],[-71.703278,41.96340899906],[-71.703468,41.96345899906],[-71.703659,41.96351599906],[-71.703934,41.96366899906],[-71.704041,41.96373699906],[-71.704147,41.96383699906],[-71.704453,41.96419099906],[-71.704704,41.96449999906],[-71.70488,41.96472499906],[-71.704987,41.96488599906],[-71.705078,41.96513699906],[-71.705101,41.96527099906],[-71.705139,41.96540099906],[-71.705154,41.96552299906],[-71.705154,41.96560699906],[-71.705162,41.96572099906],[-71.705162,41.96575199906],[-71.70517,41.96578199906],[-71.70517,41.96583199906],[-71.705177,41.96585099906],[-71.705185,41.96590799906],[-71.705185,41.96594599906],[-71.7052,41.96602199906],[-71.705215,41.96606099906],[-71.705238,41.96619399906],[-71.705254,41.96624399906],[-71.705261,41.96629699906],[-71.705276,41.96635099906],[-71.705292,41.96644999906],[-71.705307,41.96648799906],[-71.70533,41.96662099906],[-71.70536,41.96669799906],[-71.705399,41.96676999906],[-71.70549,41.96687699906],[-71.705544,41.96691499906],[-71.705574,41.96692999906],[-71.705635,41.96697199906],[-71.705742,41.96699099906],[-71.705811,41.96699099906],[-71.705902,41.96698399906],[-71.705986,41.96696899906],[-71.706224,41.96690899906],[-71.706566,41.96682399906],[-71.706848,41.96672799906],[-71.706928,41.96670499906],[-71.707382,41.96657199906],[-71.707016,41.96588899906],[-71.706894,41.96562599906],[-71.706711,41.96528199906],[-71.706669,41.96519999906],[-71.706474,41.96481699906],[-71.706367,41.96462999906],[-71.706192,41.96430999906],[-71.70607,41.96406199906],[-71.705574,41.96322599906],[-71.705444,41.96299399906],[-71.705342,41.96279199906],[-71.705307,41.96272299906],[-71.705185,41.96246299906],[-71.705078,41.96225399906],[-71.705063,41.96221199906],[-71.704834,41.96172699906],[-71.705223,41.96158599906],[-71.705476,41.96148699906],[-71.70556,41.96145399906],[-71.706001,41.96128099906],[-71.706512,41.96108999906],[-71.707001,41.96089599906],[-71.707413,41.96074299906],[-71.707764,41.96059399906],[-71.708275,41.96042299906],[-71.708272,41.95994699906],[-71.707998,41.95958399906],[-71.707756,41.95922099906],[-71.707771,41.95917899906],[-71.707756,41.95910299906],[-71.707695,41.95896899906],[-71.707489,41.95854899906],[-71.707069,41.95761499906],[-71.706779,41.95697799906],[-71.706551,41.95645499906],[-71.706497,41.95634799906],[-71.706352,41.95601999906],[-71.7062,41.95569199906],[-71.706116,41.95555499906],[-71.706245,41.95547899906],[-71.706306,41.95539899906],[-71.706337,41.95533799906],[-71.706352,41.95526899906],[-71.706215,41.95477099906],[-71.706184,41.95465499906],[-71.706062,41.95408999906],[-71.706024,41.95386099906],[-71.706017,41.95373499906],[-71.706062,41.95338799906],[-71.706085,41.95326199906],[-71.706093,41.95314399906],[-71.70607,41.95301399906],[-71.706047,41.95271299906],[-71.706062,41.95223599906],[-71.706085,41.95209899906],[-71.706123,41.95196499906],[-71.706169,41.95186999906],[-71.706413,41.95146599906],[-71.70649,41.95127499906],[-71.706726,41.95080199906],[-71.706757,41.95064199906],[-71.706764,41.95056899906],[-71.706749,41.95016899906],[-71.706741,41.95013799906],[-71.70668,41.94958899906],[-71.70668,41.94953199906],[-71.706651,41.94950599906],[-71.706627,41.94950099906],[-71.706619,41.94914999906],[-71.706377,41.94880999906],[-71.70651,41.94741299906],[-71.70647,41.94624599906],[-71.706798,41.94435199906],[-71.707564,41.93980399906],[-71.708056,41.93713699906],[-71.70914,41.93082399906],[-71.709238,41.93072499906]]]}}"}, +{"type": "blockgroup", "typeId": 130011, "areaId": 28977, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.755106,42.00985699906],[-71.755098,42.00984199906],[-71.755058,42.00977299906],[-71.754585,42.00903299906],[-71.754097,42.00828199906],[-71.753975,42.00808299906],[-71.753662,42.00759499906],[-71.753418,42.00718299906],[-71.752991,42.00649999906],[-71.751663,42.00452399906],[-71.751183,42.00378799906],[-71.750977,42.00342899906],[-71.750946,42.00333399906],[-71.750946,42.00326199906],[-71.750954,42.00323499906],[-71.750969,42.00320799906],[-71.750092,42.00292199906],[-71.749542,42.00275799906],[-71.749111,42.00261699906],[-71.748788,42.00252199906],[-71.748116,42.00232299906],[-71.747963,42.00226999906],[-71.747879,42.00224699906],[-71.747505,42.00217099906],[-71.746284,42.00193799906],[-71.746033,42.00187699906],[-71.745972,42.00185399906],[-71.745911,42.00183899906],[-71.745804,42.00180099906],[-71.745331,42.00158299906],[-71.74527,42.00154899906],[-71.745201,42.00151799906],[-71.745079,42.00144999906],[-71.744965,42.00137299906],[-71.744858,42.00128599906],[-71.744652,42.00108299906],[-71.744438,42.00084299906],[-71.744072,42.00044599906],[-71.743988,42.00035099906],[-71.743546,41.99988599906],[-71.743431,41.99975599906],[-71.742859,41.99914599906],[-71.742783,41.99905799906],[-71.742447,41.99872199906],[-71.742271,41.99853899906],[-71.742058,41.99829499906],[-71.742027,41.99824499906],[-71.741989,41.99819899906],[-71.741951,41.99814199906],[-71.74192,41.99808499906],[-71.741844,41.99797399906],[-71.741798,41.99792099906],[-71.741394,41.99740199906],[-71.741127,41.99705099906],[-71.740829,41.99667699906],[-71.740707,41.99650599906],[-71.740578,41.99629599906],[-71.740547,41.99623499906],[-71.74041,41.99599799906],[-71.740395,41.99595999906],[-71.740334,41.99586099906],[-71.740312,41.99581699906],[-71.740303,41.99579999906],[-71.740211,41.99566299906],[-71.739853,41.99517399906],[-71.739494,41.99470499906],[-71.739418,41.99459499906],[-71.739372,41.99454499906],[-71.739143,41.99435799906],[-71.738358,41.99378599906],[-71.738235,41.99366799906],[-71.738113,41.99355699906],[-71.737778,41.99315299906],[-71.737373,41.99239699906],[-71.737015,41.99169899906],[-71.736938,41.99153499906],[-71.73687,41.99140899906],[-71.736824,41.99129499906],[-71.736778,41.99114199906],[-71.736748,41.99096699906],[-71.736732,41.99063099906],[-71.736748,41.99048599906],[-71.736748,41.99005099906],[-71.736763,41.98990199906],[-71.736763,41.98984099906],[-71.736847,41.98961599906],[-71.736908,41.98947499906],[-71.737076,41.98912399906],[-71.737137,41.98895599906],[-71.737206,41.98880399906],[-71.737228,41.98873499906],[-71.737282,41.98851799906],[-71.737312,41.98834599906],[-71.737312,41.98820099906],[-71.737297,41.98807099906],[-71.737297,41.98796499906],[-71.737274,41.98767899906],[-71.737244,41.98604999906],[-71.737236,41.98594999906],[-71.737232,41.98555399906],[-71.737228,41.98519099906],[-71.737213,41.98508099906],[-71.737167,41.98486299906],[-71.737099,41.98461499906],[-71.736992,41.98415799906],[-71.736954,41.98393599906],[-71.736916,41.98380699906],[-71.736794,41.98348999906],[-71.736702,41.98330299906],[-71.73661,41.98309699906],[-71.736511,41.98289899906],[-71.736252,41.98233399906],[-71.736137,41.98209799906],[-71.736061,41.98192599906],[-71.735847,41.98148699906],[-71.735672,41.98115899906],[-71.735596,41.98099099906],[-71.735397,41.98059499906],[-71.735291,41.98038499906],[-71.735229,41.98025099906],[-71.734924,41.97969399906],[-71.734863,41.97952699906],[-71.734848,41.97942699906],[-71.734795,41.97918699906],[-71.734566,41.97853099906],[-71.734444,41.97827099906],[-71.734398,41.97816099906],[-71.734161,41.97765399906],[-71.733887,41.97705499906],[-71.73349,41.97619599906],[-71.733398,41.97602499906],[-71.732925,41.97539099906],[-71.73259,41.97495699906],[-71.732254,41.97450999906],[-71.731995,41.97417799906],[-71.731834,41.97403299906],[-71.731743,41.97396499906],[-71.731621,41.97388799906],[-71.731369,41.97376999906],[-71.73101,41.97361399906],[-71.730644,41.97346099906],[-71.73027,41.97330499906],[-71.730087,41.97324799906],[-71.729935,41.97320899906],[-71.729568,41.97315599906],[-71.729347,41.97313699906],[-71.729224,41.97311999906],[-71.728828,41.97306799906],[-71.728554,41.97303799906],[-71.728302,41.97299999906],[-71.727989,41.97296099906],[-71.727669,41.97293499906],[-71.727364,41.97289699906],[-71.726982,41.97284299906],[-71.726794,41.97279799906],[-71.726631,41.97274399906],[-71.726592,41.97272399906],[-71.726532,41.97269399906],[-71.726215,41.97250599906],[-71.726173,41.97248099906],[-71.725903,41.97233899906],[-71.725517,41.97212999906],[-71.725082,41.97186699906],[-71.725041,41.97184399906],[-71.72496,41.97179799906],[-71.724915,41.97177499906],[-71.724785,41.97169099906],[-71.72438,41.97139399906],[-71.723961,41.97106199906],[-71.723576,41.97074999906],[-71.723358,41.97057299906],[-71.722855,41.97013499906],[-71.722588,41.96990999906],[-71.722282,41.96966899906],[-71.722,41.96943299906],[-71.721535,41.96907799906],[-71.72126,41.96887999906],[-71.720894,41.96864699906],[-71.720551,41.96842199906],[-71.720464,41.96835999906],[-71.720406,41.96831899906],[-71.720238,41.96822699906],[-71.72007,41.96810199906],[-71.719818,41.96795299906],[-71.719543,41.96777299906],[-71.719215,41.96757899906],[-71.71918,41.96762499906],[-71.719156,41.96768499906],[-71.719121,41.96774499906],[-71.719078,41.96786199906],[-71.719055,41.96797299906],[-71.719054,41.96809199906],[-71.719063,41.96815199906],[-71.719098,41.96826899906],[-71.719146,41.96839499906],[-71.719305,41.96868999906],[-71.719357,41.96881499906],[-71.719376,41.96887899906],[-71.719383,41.96893699906],[-71.719342,41.96905299906],[-71.719311,41.96910499906],[-71.719294,41.96912399906],[-71.719258,41.96916299906],[-71.719241,41.96921599906],[-71.719238,41.96927199906],[-71.719212,41.96938899906],[-71.719176,41.96944699906],[-71.719116,41.96948399906],[-71.719044,41.96949599906],[-71.718963,41.96948499906],[-71.718923,41.96943899906],[-71.718861,41.96920299906],[-71.718829,41.96914299906],[-71.718764,41.96910599906],[-71.718682,41.96910199906],[-71.718612,41.96905799906],[-71.718558,41.96900999906],[-71.718399,41.96895899906],[-71.718248,41.96893299906],[-71.718168,41.96893499906],[-71.718011,41.96892699906],[-71.717925,41.96891399906],[-71.717845,41.96889399906],[-71.717769,41.96886699906],[-71.717712,41.96883099906],[-71.717698,41.96881499906],[-71.717645,41.96877199906],[-71.717533,41.96861899906],[-71.717425,41.96844699906],[-71.717336,41.96833099906],[-71.717113,41.96809499906],[-71.717064,41.96804999906],[-71.717002,41.96801399906],[-71.716849,41.96797899906],[-71.716514,41.96792799906],[-71.716482,41.96791899906],[-71.716417,41.96789899906],[-71.716299,41.96786099906],[-71.716221,41.96785799906],[-71.716151,41.96783699906],[-71.716066,41.96775899906],[-71.71602,41.96774199906],[-71.715975,41.96768699906],[-71.715954,41.96756399906],[-71.715915,41.96738399906],[-71.715895,41.96732899906],[-71.715896,41.96727299906],[-71.715912,41.96721499906],[-71.715934,41.96715799906],[-71.71598,41.96711399906],[-71.716063,41.96710699906],[-71.716139,41.96710899906],[-71.716221,41.96709899906],[-71.716286,41.96706899906],[-71.716346,41.96702699906],[-71.716389,41.96697599906],[-71.716411,41.96691799906],[-71.716413,41.96686399906],[-71.716397,41.96683599906],[-71.716368,41.96688799906],[-71.716268,41.96697999906],[-71.716226,41.96695699906],[-71.716144,41.96677499906],[-71.716124,41.96670799906],[-71.716044,41.96660199906],[-71.716012,41.96648399906],[-71.715946,41.96632399906],[-71.715916,41.96626199906],[-71.715837,41.96613799906],[-71.715751,41.96602099906],[-71.715635,41.96591299906],[-71.715561,41.96587399906],[-71.715241,41.96579099906],[-71.714992,41.96571799906],[-71.714916,41.96568499906],[-71.714811,41.96558799906],[-71.714669,41.96550899906],[-71.714604,41.96547999906],[-71.714558,41.96543299906],[-71.714538,41.96538099906],[-71.714508,41.96532799906],[-71.714441,41.96530299906],[-71.714428,41.96527499906],[-71.714463,41.96520299906],[-71.714355,41.96520399906],[-71.714178,41.96520099906],[-71.71409,41.96520399906],[-71.714021,41.96522399906],[-71.713868,41.96528999906],[-71.713782,41.96532299906],[-71.713569,41.96538699906],[-71.713327,41.96546299906],[-71.713265,41.96550899906],[-71.713226,41.96556699906],[-71.713204,41.96568099906],[-71.7132,41.96579599906],[-71.713207,41.96585399906],[-71.713181,41.96591199906],[-71.713122,41.96594799906],[-71.713041,41.96596399906],[-71.712948,41.96597699906],[-71.712873,41.96597599906],[-71.712783,41.96596699906],[-71.712692,41.96594199906],[-71.712545,41.96587899906],[-71.712392,41.96582499906],[-71.712319,41.96580599906],[-71.712263,41.96577999906],[-71.71221,41.96574499906],[-71.712112,41.96582799906],[-71.711777,41.96601899906],[-71.711594,41.96613699906],[-71.711021,41.96653699906],[-71.710823,41.96668199906],[-71.710693,41.96681199906],[-71.710526,41.96696099906],[-71.710396,41.96708699906],[-71.710243,41.96720499906],[-71.710083,41.96731899906],[-71.709862,41.96742999906],[-71.709198,41.96765499906],[-71.709038,41.96771599906],[-71.708954,41.96773099906],[-71.708847,41.96773899906],[-71.708847,41.96791799906],[-71.708864,41.96817799906],[-71.708885,41.96848699906],[-71.708908,41.96873899906],[-71.708923,41.96896699906],[-71.708961,41.96940799906],[-71.708977,41.96959699906],[-71.709015,41.96982999906],[-71.709106,41.97030999906],[-71.709129,41.97038299906],[-71.709152,41.97049699906],[-71.709251,41.97085199906],[-71.709305,41.97106599906],[-71.709427,41.97143599906],[-71.709557,41.97172199906],[-71.709625,41.97191999906],[-71.709648,41.97201199906],[-71.709648,41.97225999906],[-71.709633,41.97240399906],[-71.709633,41.97254899906],[-71.709648,41.97279699906],[-71.709648,41.97294199906],[-71.709656,41.97312899906],[-71.709656,41.97359099906],[-71.709641,41.97387699906],[-71.709641,41.97401399906],[-71.709663,41.97411699906],[-71.709686,41.97430399906],[-71.709781,41.97482799906],[-71.709824,41.97506299906],[-71.709869,41.97538799906],[-71.709724,41.97548299906],[-71.709579,41.97556299906],[-71.70929,41.97574999906],[-71.709091,41.97586399906],[-71.708923,41.97596699906],[-71.708763,41.97607399906],[-71.708603,41.97619199906],[-71.708313,41.97634099906],[-71.708191,41.97641799906],[-71.708079,41.97646899906],[-71.708023,41.97649399906],[-71.70742,41.97667299906],[-71.707008,41.97680999906],[-71.706749,41.97689099906],[-71.706123,41.97707699906],[-71.705978,41.97710799906],[-71.705818,41.97713499906],[-71.70562,41.97714199906],[-71.705383,41.97713099906],[-71.705246,41.97710799906],[-71.7052,41.97709699906],[-71.705116,41.97707699906],[-71.705009,41.97704299906],[-71.704826,41.97695499906],[-71.704742,41.97689099906],[-71.704605,41.97676799906],[-71.703964,41.97605099906],[-71.703484,41.97553599906],[-71.703232,41.97524999906],[-71.702629,41.97458599906],[-71.702431,41.97435799906],[-71.702095,41.97400299906],[-71.702003,41.97391499906],[-71.701912,41.97386199906],[-71.701744,41.97380799906],[-71.701653,41.97380099906],[-71.701569,41.97378899906],[-71.701477,41.97378899906],[-71.701324,41.97378199906],[-71.700859,41.97377399906],[-71.700539,41.97375099906],[-71.700172,41.97374299906],[-71.699791,41.97372399906],[-71.69911,41.97369699906],[-71.698662,41.97367499906],[-71.698586,41.97366899906],[-71.698143,41.97363699906],[-71.698021,41.97362099906],[-71.697884,41.97359499906],[-71.697716,41.97355299906],[-71.69754,41.97351499906],[-71.697155,41.97344299906],[-71.697021,41.97341899906],[-71.696564,41.97331199906],[-71.695709,41.97313299906],[-71.695435,41.97307999906],[-71.695267,41.97304499906],[-71.695168,41.97302999906],[-71.694916,41.97300699906],[-71.69474,41.97299999906],[-71.694595,41.97299999906],[-71.694443,41.97300699906],[-71.694244,41.97300699906],[-71.693886,41.97303399906],[-71.693837,41.97303899906],[-71.693436,41.97308299906],[-71.693207,41.97310299906],[-71.692986,41.97309899906],[-71.692947,41.97309499906],[-71.692787,41.97306099906],[-71.692322,41.97291199906],[-71.69194,41.97277499906],[-71.69146,41.97260999906],[-71.691284,41.97253799906],[-71.689705,41.97192799906],[-71.689156,41.97172199906],[-71.687546,41.97114199906],[-71.686615,41.97079799906],[-71.686401,41.97071799906],[-71.686195,41.97063399906],[-71.685623,41.97039399906],[-71.685356,41.97028699906],[-71.685323,41.97027299906],[-71.685059,41.97015799906],[-71.684934,41.97010999906],[-71.684842,41.97015999906],[-71.684773,41.97018099906],[-71.684701,41.97019099906],[-71.684544,41.97018999906],[-71.684464,41.97018099906],[-71.68432,41.97012599906],[-71.684248,41.97010499906],[-71.684176,41.97008899906],[-71.684015,41.97006799906],[-71.683932,41.97005099906],[-71.683857,41.97004099906],[-71.683693,41.97004499906],[-71.683618,41.97005499906],[-71.683533,41.97005599906],[-71.683456,41.97006899906],[-71.68332,41.97011799906],[-71.68326,41.97017399906],[-71.683223,41.97023899906],[-71.683174,41.97027899906],[-71.683101,41.97032099906],[-71.68297,41.97041599906],[-71.682915,41.97046299906],[-71.682779,41.97059699906],[-71.682663,41.97068499906],[-71.682606,41.97073599906],[-71.682484,41.97086299906],[-71.682367,41.97096699906],[-71.682182,41.97109699906],[-71.682066,41.97118899906],[-71.681899,41.97129999906],[-71.681828,41.97135399906],[-71.681757,41.97139799906],[-71.681423,41.97150499906],[-71.681348,41.97151399906],[-71.681096,41.97151899906],[-71.680975,41.97150799906],[-71.680883,41.97149399906],[-71.680788,41.97145999906],[-71.680619,41.97137499906],[-71.68054,41.97134499906],[-71.680452,41.97129699906],[-71.680338,41.97124399906],[-71.680246,41.97123799906],[-71.68017,41.97124599906],[-71.679906,41.97134699906],[-71.679838,41.97140199906],[-71.679763,41.97140499906],[-71.679666,41.97139199906],[-71.679515,41.97134599906],[-71.679396,41.97124399906],[-71.679251,41.97116799906],[-71.679184,41.97111999906],[-71.679133,41.97109299906],[-71.679049,41.97108299906],[-71.678947,41.97110999906],[-71.678807,41.97107399906],[-71.678778,41.97103599906],[-71.678802,41.97099999906],[-71.678853,41.97095199906],[-71.678853,41.97091499906],[-71.678778,41.97090899906],[-71.678714,41.97093399906],[-71.678651,41.97093499906],[-71.678583,41.97089399906],[-71.678537,41.97090299906],[-71.678449,41.97085199906],[-71.678457,41.97102799906],[-71.678467,41.97126799906],[-71.678474,41.97133999906],[-71.678482,41.97156499906],[-71.678505,41.97194699906],[-71.678528,41.97211499906],[-71.678543,41.97216399906],[-71.678551,41.97221399906],[-71.678574,41.97227499906],[-71.678635,41.97239299906],[-71.678664,41.97243499906],[-71.678772,41.97259099906],[-71.678825,41.97265199906],[-71.678947,41.97281299906],[-71.679375,41.97333499906],[-71.679428,41.97341199906],[-71.679543,41.97355299906],[-71.679596,41.97362499906],[-71.679718,41.97376999906],[-71.67984,41.97392299906],[-71.679878,41.97397999906],[-71.679924,41.97403699906],[-71.680038,41.97420899906],[-71.680504,41.97506299906],[-71.680763,41.97552499906],[-71.681328,41.97653999906],[-71.681557,41.97693599906],[-71.681602,41.97700899906],[-71.682411,41.97843899906],[-71.682579,41.97871399906],[-71.682655,41.97887799906],[-71.682709,41.97898099906],[-71.682983,41.97964099906],[-71.68309,41.97997299906],[-71.683197,41.98039999906],[-71.68322,41.98052199906],[-71.683235,41.98066299906],[-71.683281,41.98095299906],[-71.683291,41.98112499906],[-71.683296,41.98121599906],[-71.683296,41.98135399906],[-71.683289,41.98149899906],[-71.683266,41.98166699906],[-71.683144,41.98231499906],[-71.683044,41.98296699906],[-71.682823,41.98432899906],[-71.6828,41.98465299906],[-71.682793,41.98517199906],[-71.682793,41.98559199906],[-71.682884,41.98728899906],[-71.682961,41.98817099906],[-71.682961,41.98825799906],[-71.683037,41.98921599906],[-71.68306,41.98963199906],[-71.68306,41.99013099906],[-71.683075,41.99050099906],[-71.683075,41.99064999906],[-71.68309,41.99089399906],[-71.683167,41.99119199906],[-71.683235,41.99152799906],[-71.683502,41.99243899906],[-71.683535,41.99258999906],[-71.683571,41.99275199906],[-71.683624,41.99293499906],[-71.683662,41.99313399906],[-71.683685,41.99334299906],[-71.683685,41.99342299906],[-71.68367,41.99357199906],[-71.683647,41.99365999906],[-71.683571,41.99380899906],[-71.683523,41.99386499906],[-71.683479,41.99391599906],[-71.682922,41.99449499906],[-71.682587,41.99483099906],[-71.682419,41.99501399906],[-71.682304,41.99515199906],[-71.682205,41.99529299906],[-71.682068,41.99557499906],[-71.682045,41.99564399906],[-71.682014,41.99581899906],[-71.681999,41.99599799906],[-71.681999,41.99608599906],[-71.682007,41.99616999906],[-71.682007,41.99639099906],[-71.682083,41.99782899906],[-71.682106,41.99839799906],[-71.682129,41.99867199906],[-71.682137,41.99894699906],[-71.682144,41.99898899906],[-71.682152,41.99914899906],[-71.682136,41.99931799906],[-71.682121,41.99949599906],[-71.682083,41.99969499906],[-71.682014,41.99994999906],[-71.681958,42.00007299906],[-71.681877,42.00025199906],[-71.681671,42.00064499906],[-71.681442,42.00115199906],[-71.681229,42.00153399906],[-71.681099,42.00179699906],[-71.681053,42.00198399906],[-71.681015,42.00217099906],[-71.681007,42.00242599906],[-71.681007,42.00265099906],[-71.681,42.00283099906],[-71.680969,42.00300999906],[-71.680871,42.00329699906],[-71.680862,42.00332299906],[-71.680595,42.00395199906],[-71.680443,42.00429499906],[-71.680305,42.00453899906],[-71.680183,42.00473799906],[-71.680031,42.00494799906],[-71.679909,42.00507399906],[-71.67968,42.00524099906],[-71.679466,42.00542099906],[-71.679153,42.00563799906],[-71.678757,42.00591999906],[-71.678223,42.00625599906],[-71.677963,42.00644699906],[-71.677223,42.00693099906],[-71.677156,42.00697899906],[-71.677063,42.00704599906],[-71.676946,42.00714999906],[-71.676918,42.00719499906],[-71.676857,42.00726299906],[-71.676781,42.00736999906],[-71.67672,42.00747299906],[-71.676682,42.00757999906],[-71.676659,42.00767499906],[-71.676651,42.00781999906],[-71.676651,42.00802199906],[-71.676712,42.00825499906],[-71.676895,42.00873599906],[-71.676918,42.00881199906],[-71.677032,42.00910899906],[-71.677087,42.00923599906],[-71.67715,42.00937999906],[-71.677216,42.00953299906],[-71.677391,42.00986499906],[-71.677544,42.01018899906],[-71.677704,42.01048299906],[-71.677879,42.01082999906],[-71.677963,42.01102799906],[-71.678001,42.01115399906],[-71.678017,42.01124199906],[-71.678024,42.01137199906],[-71.678019,42.01159799906],[-71.680521,42.01153699906],[-71.682217,42.01149999906],[-71.682432,42.01149499906],[-71.684843,42.01144099906],[-71.698585,42.01113499906],[-71.700633,42.01108899906],[-71.702161,42.01105499906],[-71.711052,42.01085499906],[-71.713558,42.01079599906],[-71.713704,42.01078499906],[-71.715625,42.01075199906],[-71.72091,42.01063299906],[-71.724934,42.01054199906],[-71.727535,42.01048299906],[-71.734064,42.01033399906],[-71.739039,42.01022199906],[-71.740881,42.01017899906],[-71.74957,42.00998099906],[-71.750278,42.00996599906],[-71.752087,42.00992399906],[-71.755106,42.00985699906]]]}}"}, +{"type": "blockgroup", "typeId": 130012, "areaId": 28978, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.799195,42.00421799906],[-71.799108,42.00009699906],[-71.798815,41.98909699906],[-71.798763,41.98514699906],[-71.798736,41.98298899906],[-71.798692,41.98031299906],[-71.798646,41.97691199906],[-71.798579,41.97189999906],[-71.798549,41.97042699906],[-71.79841,41.96371099906],[-71.798379,41.96294599906],[-71.798328,41.96165699906],[-71.798328,41.96164199906],[-71.798313,41.96123799906],[-71.798317,41.96121199906],[-71.798303,41.96097199906],[-71.798298,41.95761999906],[-71.7982,41.95535599906],[-71.798188,41.95387499906],[-71.798099,41.95381399906],[-71.798068,41.95372999906],[-71.798058,41.95146499906],[-71.798055,41.94890199906],[-71.798126,41.94885799906],[-71.798074,41.94650799906],[-71.798038,41.94507899906],[-71.798038,41.94506599906],[-71.798015,41.94171699906],[-71.797922,41.93539499906],[-71.79791,41.93411499906],[-71.79791,41.93321599906],[-71.797894,41.93236399906],[-71.797893,41.93221599906],[-71.797883,41.93101099906],[-71.797778,41.92864499906],[-71.797676,41.92864599906],[-71.797234,41.92865499906],[-71.796301,41.92867699906],[-71.791074,41.92878899906],[-71.788924,41.92881199906],[-71.787094,41.92887499906],[-71.785992,41.92889899906],[-71.784632,41.92892399906],[-71.781247,41.92899399906],[-71.770738,41.92921499906],[-71.770378,41.92922199906],[-71.768074,41.92926399906],[-71.76705,41.92927899906],[-71.766732,41.92929599906],[-71.766447,41.92929499906],[-71.765304,41.92932699906],[-71.765187,41.92932999906],[-71.762631,41.92938199906],[-71.758398,41.92946899906],[-71.754312,41.92955199906],[-71.750958,41.92961299906],[-71.742934,41.92974499906],[-71.741905,41.92975199906],[-71.736149,41.92989299906],[-71.728548,41.93007899906],[-71.728426,41.93007999906],[-71.725744,41.93018099906],[-71.722423,41.93030399906],[-71.721038,41.93035599906],[-71.717893,41.93047199906],[-71.717817,41.93060499906],[-71.714492,41.93069899906],[-71.709238,41.93072499906],[-71.70914,41.93082399906],[-71.708056,41.93713699906],[-71.707564,41.93980399906],[-71.706798,41.94435199906],[-71.70647,41.94624599906],[-71.70651,41.94741299906],[-71.706377,41.94880999906],[-71.706619,41.94914999906],[-71.706627,41.94950099906],[-71.706651,41.94950599906],[-71.70668,41.94953199906],[-71.70668,41.94958899906],[-71.706741,41.95013799906],[-71.706749,41.95016899906],[-71.706764,41.95056899906],[-71.706757,41.95064199906],[-71.706726,41.95080199906],[-71.70649,41.95127499906],[-71.706413,41.95146599906],[-71.706169,41.95186999906],[-71.706123,41.95196499906],[-71.706085,41.95209899906],[-71.706062,41.95223599906],[-71.706047,41.95271299906],[-71.70607,41.95301399906],[-71.706093,41.95314399906],[-71.706085,41.95326199906],[-71.706062,41.95338799906],[-71.706017,41.95373499906],[-71.706024,41.95386099906],[-71.706062,41.95408999906],[-71.706184,41.95465499906],[-71.706215,41.95477099906],[-71.706352,41.95526899906],[-71.706383,41.95519299906],[-71.706421,41.95513199906],[-71.706497,41.95506999906],[-71.706581,41.95503599906],[-71.706688,41.95500199906],[-71.707329,41.95489099906],[-71.707436,41.95486799906],[-71.70752,41.95484199906],[-71.707603,41.95480699906],[-71.707825,41.95467399906],[-71.707939,41.95458999906],[-71.708031,41.95454399906],[-71.708061,41.95453299906],[-71.708214,41.95447499906],[-71.708397,41.95442599906],[-71.708572,41.95439099906],[-71.708944,41.95434699906],[-71.709084,41.95432999906],[-71.709541,41.95429199906],[-71.709885,41.95429599906],[-71.710236,41.95433799906],[-71.710732,41.95442599906],[-71.710838,41.95445299906],[-71.71096,41.95449799906],[-71.711075,41.95455899906],[-71.711178,41.95460199906],[-71.711205,41.95461299906],[-71.711487,41.95476499906],[-71.712021,41.95501699906],[-71.712204,41.95510899906],[-71.712387,41.95517699906],[-71.712494,41.95521499906],[-71.713272,41.95561999906],[-71.714182,41.95610699906],[-71.714561,41.95630999906],[-71.714901,41.95648399906],[-71.715187,41.95663099906],[-71.715393,41.95672999906],[-71.715424,41.95674899906],[-71.715576,41.95684799906],[-71.71566,41.95691299906],[-71.715904,41.95712999906],[-71.716059,41.95728799906],[-71.716164,41.95739399906],[-71.716469,41.95771399906],[-71.716789,41.95809599906],[-71.717178,41.95854899906],[-71.717369,41.95879699906],[-71.717474,41.95891399906],[-71.717484,41.95893099906],[-71.717541,41.95897999906],[-71.717552,41.95899599906],[-71.717613,41.95905699906],[-71.717766,41.95910599906],[-71.718102,41.95918999906],[-71.718933,41.95945399906],[-71.719078,41.95952199906],[-71.719193,41.95958699906],[-71.719345,41.95973199906],[-71.719398,41.95981199906],[-71.719452,41.95993799906],[-71.719505,41.96011699906],[-71.719604,41.96037299906],[-71.719734,41.96076599906],[-71.719925,41.96122699906],[-71.719978,41.96132699906],[-71.720016,41.96138399906],[-71.720093,41.96152499906],[-71.720161,41.96162799906],[-71.720306,41.96181899906],[-71.720383,41.96192899906],[-71.720551,41.96212399906],[-71.720772,41.96233399906],[-71.720955,41.96249799906],[-71.721176,41.96266599906],[-71.721291,41.96272699906],[-71.72142,41.96278799906],[-71.721687,41.96285999906],[-71.721832,41.96287899906],[-71.722015,41.96291399906],[-71.722183,41.96295199906],[-71.722366,41.96298599906],[-71.722511,41.96299699906],[-71.722664,41.96301699906],[-71.72303,41.96302399906],[-71.723251,41.96301699906],[-71.723648,41.96302399906],[-71.724068,41.96305499906],[-71.724442,41.96309699906],[-71.72467,41.96313099906],[-71.72479,41.96314399906],[-71.724873,41.96315199906],[-71.725166,41.96320299906],[-71.72541,41.96323399906],[-71.725555,41.96324199906],[-71.725662,41.96325299906],[-71.725883,41.96326799906],[-71.725952,41.96328699906],[-71.726021,41.96331799906],[-71.726089,41.96340199906],[-71.726212,41.96352399906],[-71.726349,41.96368399906],[-71.72644,41.96374899906],[-71.726532,41.96379499906],[-71.726654,41.96384799906],[-71.726858,41.96392699906],[-71.726883,41.96393199906],[-71.727013,41.96397399906],[-71.72718,41.96403899906],[-71.727341,41.96408499906],[-71.727486,41.96411499906],[-71.727806,41.96417199906],[-71.728127,41.96422199906],[-71.728409,41.96427199906],[-71.728844,41.96433999906],[-71.728989,41.96438999906],[-71.729172,41.96444299906],[-71.729668,41.96463799906],[-71.730019,41.96482799906],[-71.730095,41.96488599906],[-71.730141,41.96496199906],[-71.730156,41.96515299906],[-71.730209,41.96515299906],[-71.730415,41.96516799906],[-71.730587,41.96517699906],[-71.730572,41.96526699906],[-71.730676,41.96534499906],[-71.730704,41.96540099906],[-71.730659,41.96544199906],[-71.730579,41.96545999906],[-71.730489,41.96549399906],[-71.73045,41.96552599906],[-71.730448,41.96560199906],[-71.730472,41.96564499906],[-71.730513,41.96569199906],[-71.730494,41.96572899906],[-71.73043,41.96577999906],[-71.730375,41.96581699906],[-71.730316,41.96586399906],[-71.730288,41.96590299906],[-71.730315,41.96595999906],[-71.730331,41.96602799906],[-71.730308,41.96609199906],[-71.730254,41.96619799906],[-71.730173,41.96621599906],[-71.730146,41.96626799906],[-71.73014,41.96643999906],[-71.730115,41.96677799906],[-71.730093,41.96683599906],[-71.730046,41.96688799906],[-71.729909,41.96696299906],[-71.729841,41.96698699906],[-71.729737,41.96698999906],[-71.729659,41.96699299906],[-71.729581,41.96698799906],[-71.729519,41.96695699906],[-71.7295,41.96691099906],[-71.729501,41.96682899906],[-71.729508,41.96675999906],[-71.729482,41.96665199906],[-71.729473,41.96659299906],[-71.729472,41.96651599906],[-71.729451,41.96649899906],[-71.729377,41.96647199906],[-71.729274,41.96644099906],[-71.729063,41.96632799906],[-71.729044,41.96625599906],[-71.729026,41.96608899906],[-71.729023,41.96591699906],[-71.729037,41.96571499906],[-71.729,41.96566699906],[-71.728891,41.96557999906],[-71.728835,41.96550699906],[-71.728769,41.96547599906],[-71.728686,41.96545899906],[-71.728501,41.96546299906],[-71.728427,41.96547099906],[-71.728356,41.96548699906],[-71.72815,41.96557399906],[-71.72809,41.96562099906],[-71.727939,41.96566099906],[-71.727856,41.96567699906],[-71.727788,41.96570599906],[-71.727756,41.96575799906],[-71.727752,41.96589699906],[-71.727799,41.96607999906],[-71.727806,41.96615099906],[-71.727797,41.96622199906],[-71.727644,41.96643599906],[-71.727615,41.96649699906],[-71.727616,41.96655799906],[-71.72768,41.96667499906],[-71.727689,41.96674199906],[-71.72767,41.96691499906],[-71.727621,41.96696899906],[-71.72756,41.96700199906],[-71.7275,41.96701899906],[-71.727422,41.96707999906],[-71.727396,41.96713099906],[-71.727331,41.96720799906],[-71.727274,41.96725599906],[-71.727204,41.96727799906],[-71.727125,41.96727499906],[-71.727053,41.96726499906],[-71.726974,41.96725899906],[-71.726894,41.96724599906],[-71.726652,41.96722899906],[-71.726561,41.96722699906],[-71.726487,41.96722099906],[-71.726414,41.96719299906],[-71.726334,41.96717199906],[-71.72624,41.96715799906],[-71.726168,41.96715199906],[-71.72608,41.96715099906],[-71.725993,41.96713499906],[-71.725867,41.96706399906],[-71.725732,41.96700799906],[-71.72572,41.96700299906],[-71.725651,41.96698499906],[-71.725162,41.96683699906],[-71.725001,41.96679899906],[-71.724921,41.96676799906],[-71.724856,41.96673199906],[-71.724621,41.96654799906],[-71.724501,41.96646499906],[-71.724439,41.96643499906],[-71.724368,41.96640799906],[-71.724073,41.96626499906],[-71.723961,41.96617399906],[-71.723862,41.96608199906],[-71.723811,41.96604199906],[-71.723749,41.96600499906],[-71.723608,41.96593699906],[-71.723547,41.96590099906],[-71.723492,41.96585599906],[-71.723349,41.96577399906],[-71.723282,41.96572599906],[-71.723211,41.96568599906],[-71.723143,41.96565399906],[-71.723058,41.96563899906],[-71.722984,41.96565799906],[-71.722837,41.96571399906],[-71.722712,41.96579199906],[-71.722664,41.96583299906],[-71.722616,41.96588199906],[-71.722538,41.96597899906],[-71.722402,41.96619999906],[-71.722278,41.96636399906],[-71.722062,41.96629599906],[-71.722015,41.96624699906],[-71.721958,41.96620999906],[-71.721878,41.96617699906],[-71.721574,41.96607699906],[-71.721494,41.96605799906],[-71.721249,41.96601299906],[-71.721083,41.96596199906],[-71.720864,41.96585799906],[-71.720731,41.96578899906],[-71.720507,41.96569399906],[-71.720453,41.96567799906],[-71.720424,41.96566999906],[-71.720337,41.96566299906],[-71.720181,41.96561899906],[-71.720109,41.96560699906],[-71.719816,41.96550099906],[-71.719662,41.96546099906],[-71.719585,41.96544599906],[-71.719509,41.96544299906],[-71.719416,41.96544699906],[-71.719328,41.96545799906],[-71.719245,41.96547599906],[-71.719176,41.96551399906],[-71.719068,41.96559999906],[-71.719032,41.96565299906],[-71.719025,41.96571199906],[-71.719027,41.96576799906],[-71.719068,41.96581299906],[-71.719135,41.96584699906],[-71.719202,41.96586899906],[-71.719262,41.96590499906],[-71.719238,41.96595899906],[-71.719175,41.96598899906],[-71.719115,41.96602499906],[-71.71911,41.96608599906],[-71.71915,41.96613899906],[-71.719223,41.96616399906],[-71.719299,41.96617499906],[-71.71932,41.96621599906],[-71.719279,41.96627199906],[-71.719155,41.96635599906],[-71.719132,41.96641499906],[-71.719131,41.96648199906],[-71.719182,41.96667099906],[-71.719238,41.96683999906],[-71.719256,41.96696499906],[-71.719254,41.96702599906],[-71.719224,41.96713699906],[-71.719241,41.96719099906],[-71.719292,41.96730599906],[-71.719303,41.96736499906],[-71.719304,41.96742099906],[-71.719286,41.96748099906],[-71.719244,41.96754099906],[-71.719215,41.96757899906],[-71.719543,41.96777299906],[-71.719818,41.96795299906],[-71.72007,41.96810199906],[-71.720238,41.96822699906],[-71.720406,41.96831899906],[-71.720464,41.96835999906],[-71.720551,41.96842199906],[-71.720894,41.96864699906],[-71.72126,41.96887999906],[-71.721535,41.96907799906],[-71.722,41.96943299906],[-71.722282,41.96966899906],[-71.722588,41.96990999906],[-71.722855,41.97013499906],[-71.723358,41.97057299906],[-71.723576,41.97074999906],[-71.723961,41.97106199906],[-71.72438,41.97139399906],[-71.724785,41.97169099906],[-71.724915,41.97177499906],[-71.72496,41.97179799906],[-71.725041,41.97184399906],[-71.725082,41.97186699906],[-71.725517,41.97212999906],[-71.725903,41.97233899906],[-71.726173,41.97248099906],[-71.726215,41.97250599906],[-71.726532,41.97269399906],[-71.726592,41.97272399906],[-71.726631,41.97274399906],[-71.726794,41.97279799906],[-71.726982,41.97284299906],[-71.727364,41.97289699906],[-71.727669,41.97293499906],[-71.727989,41.97296099906],[-71.728302,41.97299999906],[-71.728554,41.97303799906],[-71.728828,41.97306799906],[-71.729224,41.97311999906],[-71.729347,41.97313699906],[-71.729568,41.97315599906],[-71.729935,41.97320899906],[-71.730087,41.97324799906],[-71.73027,41.97330499906],[-71.730644,41.97346099906],[-71.73101,41.97361399906],[-71.731369,41.97376999906],[-71.731621,41.97388799906],[-71.731743,41.97396499906],[-71.731834,41.97403299906],[-71.731995,41.97417799906],[-71.732254,41.97450999906],[-71.73259,41.97495699906],[-71.732925,41.97539099906],[-71.733398,41.97602499906],[-71.73349,41.97619599906],[-71.733887,41.97705499906],[-71.734161,41.97765399906],[-71.734398,41.97816099906],[-71.734444,41.97827099906],[-71.734566,41.97853099906],[-71.734795,41.97918699906],[-71.734848,41.97942699906],[-71.734863,41.97952699906],[-71.734924,41.97969399906],[-71.735229,41.98025099906],[-71.735291,41.98038499906],[-71.735397,41.98059499906],[-71.735596,41.98099099906],[-71.735672,41.98115899906],[-71.735847,41.98148699906],[-71.736061,41.98192599906],[-71.736137,41.98209799906],[-71.736252,41.98233399906],[-71.736511,41.98289899906],[-71.73661,41.98309699906],[-71.736702,41.98330299906],[-71.736794,41.98348999906],[-71.736916,41.98380699906],[-71.736954,41.98393599906],[-71.736992,41.98415799906],[-71.737099,41.98461499906],[-71.737167,41.98486299906],[-71.737213,41.98508099906],[-71.737228,41.98519099906],[-71.737232,41.98555399906],[-71.737236,41.98594999906],[-71.737244,41.98604999906],[-71.737274,41.98767899906],[-71.737297,41.98796499906],[-71.737297,41.98807099906],[-71.737312,41.98820099906],[-71.737312,41.98834599906],[-71.737282,41.98851799906],[-71.737228,41.98873499906],[-71.737206,41.98880399906],[-71.737137,41.98895599906],[-71.737076,41.98912399906],[-71.736908,41.98947499906],[-71.736847,41.98961599906],[-71.736763,41.98984099906],[-71.736763,41.98990199906],[-71.736748,41.99005099906],[-71.736748,41.99048599906],[-71.736732,41.99063099906],[-71.736748,41.99096699906],[-71.736778,41.99114199906],[-71.736824,41.99129499906],[-71.73687,41.99140899906],[-71.736938,41.99153499906],[-71.737015,41.99169899906],[-71.737373,41.99239699906],[-71.737778,41.99315299906],[-71.738113,41.99355699906],[-71.738235,41.99366799906],[-71.738358,41.99378599906],[-71.739143,41.99435799906],[-71.739372,41.99454499906],[-71.739418,41.99459499906],[-71.739494,41.99470499906],[-71.739853,41.99517399906],[-71.740211,41.99566299906],[-71.740303,41.99579999906],[-71.740312,41.99581699906],[-71.740334,41.99586099906],[-71.740395,41.99595999906],[-71.74041,41.99599799906],[-71.740547,41.99623499906],[-71.740578,41.99629599906],[-71.740707,41.99650599906],[-71.740829,41.99667699906],[-71.741127,41.99705099906],[-71.741394,41.99740199906],[-71.741798,41.99792099906],[-71.741844,41.99797399906],[-71.74192,41.99808499906],[-71.741951,41.99814199906],[-71.741989,41.99819899906],[-71.742027,41.99824499906],[-71.742058,41.99829499906],[-71.742271,41.99853899906],[-71.742447,41.99872199906],[-71.742783,41.99905799906],[-71.742859,41.99914599906],[-71.743431,41.99975599906],[-71.743546,41.99988599906],[-71.743988,42.00035099906],[-71.744072,42.00044599906],[-71.744438,42.00084299906],[-71.744652,42.00108299906],[-71.744858,42.00128599906],[-71.744965,42.00137299906],[-71.745079,42.00144999906],[-71.745201,42.00151799906],[-71.74527,42.00154899906],[-71.745331,42.00158299906],[-71.745804,42.00180099906],[-71.745911,42.00183899906],[-71.745972,42.00185399906],[-71.746033,42.00187699906],[-71.746284,42.00193799906],[-71.747505,42.00217099906],[-71.747879,42.00224699906],[-71.747963,42.00226999906],[-71.748116,42.00232299906],[-71.748788,42.00252199906],[-71.749111,42.00261699906],[-71.749542,42.00275799906],[-71.750092,42.00292199906],[-71.750969,42.00320799906],[-71.750954,42.00323499906],[-71.750946,42.00326199906],[-71.750946,42.00333399906],[-71.750977,42.00342899906],[-71.751183,42.00378799906],[-71.751663,42.00452399906],[-71.752991,42.00649999906],[-71.753418,42.00718299906],[-71.753662,42.00759499906],[-71.753975,42.00808299906],[-71.754097,42.00828199906],[-71.754585,42.00903299906],[-71.755058,42.00977299906],[-71.755098,42.00984199906],[-71.755106,42.00985699906],[-71.755846,42.00983799906],[-71.765713,42.00961099906],[-71.76576,42.00961099906],[-71.76608,42.00960099906],[-71.766345,42.00959799906],[-71.771264,42.00948499906],[-71.771427,42.00948099906],[-71.799188,42.00805299906],[-71.799195,42.00421799906]]]}}"}, +{"type": "blockgroup", "typeId": 130021, "areaId": 28979, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.666588,42.00567199906],[-71.666557,42.00524899906],[-71.666451,42.00442499906],[-71.666351,42.00406599906],[-71.666334,42.00398299906],[-71.666328,42.00395599906],[-71.666336,42.00383799906],[-71.666412,42.00361999906],[-71.666443,42.00348699906],[-71.666435,42.00331499906],[-71.666359,42.00286899906],[-71.66629,42.00217399906],[-71.666153,42.00175099906],[-71.666064,42.00139599906],[-71.666054,42.00135799906],[-71.665871,42.00079299906],[-71.665733,42.00033599906],[-71.665642,41.99994699906],[-71.665596,41.99972199906],[-71.665459,41.99925599906],[-71.665329,41.99903899906],[-71.665154,41.99880999906],[-71.66494,41.99855399906],[-71.664902,41.99849299906],[-71.664635,41.99825999906],[-71.66452,41.99815399906],[-71.664421,41.99808499906],[-71.664246,41.99799299906],[-71.664124,41.99789799906],[-71.66394,41.99777599906],[-71.663803,41.99765799906],[-71.663719,41.99756199906],[-71.663673,41.99751999906],[-71.663597,41.99742899906],[-71.663567,41.99738299906],[-71.663467,41.99717299906],[-71.663338,41.99693299906],[-71.663292,41.99688699906],[-71.663254,41.99681099906],[-71.663231,41.99678799906],[-71.663139,41.99672299906],[-71.662949,41.99653999906],[-71.662827,41.99644099906],[-71.662781,41.99637599906],[-71.662727,41.99616199906],[-71.662643,41.99606299906],[-71.662567,41.99592599906],[-71.66243,41.99575799906],[-71.662369,41.99565499906],[-71.662346,41.99553299906],[-71.662323,41.99547199906],[-71.662285,41.99539599906],[-71.662216,41.99529599906],[-71.662148,41.99522399906],[-71.662056,41.99513999906],[-71.661956,41.99502399906],[-71.661934,41.99499899906],[-71.66185,41.99492999906],[-71.661758,41.99486499906],[-71.661636,41.99480099906],[-71.661514,41.99471699906],[-71.661308,41.99455299906],[-71.661209,41.99444999906],[-71.661095,41.99434999906],[-71.660759,41.99411399906],[-71.660614,41.99398799906],[-71.660446,41.99387399906],[-71.660347,41.99381999906],[-71.660248,41.99373599906],[-71.660179,41.99367099906],[-71.660088,41.99360699906],[-71.659874,41.99341199906],[-71.659752,41.99333199906],[-71.659615,41.99325199906],[-71.659523,41.99321699906],[-71.659348,41.99316799906],[-71.659157,41.99312999906],[-71.659027,41.99308799906],[-71.658897,41.99306499906],[-71.658791,41.99303399906],[-71.658661,41.99300799906],[-71.658554,41.99299199906],[-71.658249,41.99298099906],[-71.658073,41.99296199906],[-71.657936,41.99293099906],[-71.657275,41.99290799906],[-71.657188,41.99290499906],[-71.657089,41.99288599906],[-71.657005,41.99286299906],[-71.656914,41.99282499906],[-71.656896,41.99273599906],[-71.656853,41.99252299906],[-71.656799,41.99237399906],[-71.656738,41.99225999906],[-71.656647,41.99206899906],[-71.656555,41.99181399906],[-71.656464,41.99147399906],[-71.656052,41.99055499906],[-71.65583,41.99002099906],[-71.655617,41.98943299906],[-71.655426,41.98887299906],[-71.655167,41.98814799906],[-71.6549,41.98744999906],[-71.654854,41.98734299906],[-71.654808,41.98721699906],[-71.654793,41.98719399906],[-71.654755,41.98707999906],[-71.654716,41.98699599906],[-71.65464,41.98685499906],[-71.654556,41.98672899906],[-71.654343,41.98649199906],[-71.65387,41.98609499906],[-71.653763,41.98599999906],[-71.653275,41.98561499906],[-71.652374,41.98485599906],[-71.651375,41.98406999906],[-71.651176,41.98393199906],[-71.65097,41.98380299906],[-71.650719,41.98367699906],[-71.650261,41.98342499906],[-71.649933,41.98326099906],[-71.649574,41.98310099906],[-71.649223,41.98297499906],[-71.648697,41.98279999906],[-71.647308,41.98237599906],[-71.647206,41.98234099906],[-71.646675,41.98215899906],[-71.646133,41.98200199906],[-71.645652,41.98189199906],[-71.645584,41.98187599906],[-71.645325,41.98180399906],[-71.645172,41.98173099906],[-71.644539,41.98134599906],[-71.644043,41.98100999906],[-71.6437,41.98078499906],[-71.642288,41.97990399906],[-71.641853,41.97961799906],[-71.641403,41.97935499906],[-71.640961,41.97901899906],[-71.640843,41.97891499906],[-71.640526,41.97863799906],[-71.640366,41.97851199906],[-71.640228,41.97842799906],[-71.64006,41.97833999906],[-71.639793,41.97824099906],[-71.638657,41.97790099906],[-71.637825,41.97766099906],[-71.637321,41.97752399906],[-71.636627,41.97728299906],[-71.636246,41.97715799906],[-71.63522,41.97683899906],[-71.63446,41.97667299906],[-71.634163,41.97662399906],[-71.634129,41.97661999906],[-71.633598,41.97656199906],[-71.632843,41.97648599906],[-71.632729,41.97646699906],[-71.632484,41.97643699906],[-71.63221,41.97641399906],[-71.632141,41.97619199906],[-71.632118,41.97591399906],[-71.632111,41.97557099906],[-71.632118,41.97518499906],[-71.632137,41.97491499906],[-71.632139,41.97486599906],[-71.632146,41.97482199906],[-71.632202,41.97450999906],[-71.632217,41.97443399906],[-71.632721,41.97430799906],[-71.633728,41.97406799906],[-71.634247,41.97392999906],[-71.634666,41.97381199906],[-71.634979,41.97371299906],[-71.635277,41.97359799906],[-71.63562,41.97345399906],[-71.636024,41.97325499906],[-71.636414,41.97304199906],[-71.63678,41.97280099906],[-71.637474,41.97229799906],[-71.637505,41.97227099906],[-71.637688,41.97214099906],[-71.63784,41.97202299906],[-71.638,41.97190899906],[-71.638306,41.97167999906],[-71.638611,41.97146199906],[-71.640038,41.97038699906],[-71.640106,41.97034099906],[-71.640274,41.97021099906],[-71.640617,41.96996299906],[-71.640945,41.96971899906],[-71.641308,41.96943199906],[-71.641403,41.96935699906],[-71.641838,41.96900199906],[-71.642044,41.96881899906],[-71.642151,41.96872699906],[-71.642532,41.96837199906],[-71.642975,41.96793399906],[-71.643738,41.96713599906],[-71.64389,41.96698399906],[-71.644035,41.96682699906],[-71.644318,41.96653399906],[-71.644447,41.96639299906],[-71.644585,41.96625499906],[-71.644837,41.96598899906],[-71.64502,41.96579699906],[-71.645546,41.96525199906],[-71.646032,41.96473399906],[-71.646088,41.96467599906],[-71.646217,41.96454999906],[-71.647057,41.96366099906],[-71.647316,41.96339799906],[-71.647469,41.96322999906],[-71.648048,41.96263899906],[-71.648419,41.96224199906],[-71.648888,41.96173899906],[-71.649254,41.96137199906],[-71.649337,41.96127799906],[-71.649353,41.96125999906],[-71.64959,41.96099099906],[-71.649651,41.96091099906],[-71.649796,41.96073899906],[-71.649859,41.96064799906],[-71.649902,41.96058699906],[-71.649918,41.96057099906],[-71.649967,41.96049699906],[-71.650024,41.96041099906],[-71.650073,41.96034399906],[-71.650169,41.96020099906],[-71.650276,41.96004899906],[-71.650398,41.95982699906],[-71.650574,41.95952199906],[-71.65062,41.95942299906],[-71.650673,41.95932399906],[-71.650856,41.95894999906],[-71.65106,41.95851399906],[-71.651085,41.95846199906],[-71.651115,41.95839899906],[-71.651266,41.95808699906],[-71.65181,41.95695899906],[-71.652603,41.95533799906],[-71.652328,41.95517699906],[-71.652138,41.95508599906],[-71.651726,41.95487599906],[-71.651649,41.95484499906],[-71.651581,41.95481099906],[-71.651192,41.95464299906],[-71.651146,41.95461999906],[-71.651054,41.95457499906],[-71.650909,41.95449399906],[-71.650696,41.95436899906],[-71.650429,41.95420499906],[-71.650131,41.95399899906],[-71.650078,41.95395699906],[-71.649879,41.95381499906],[-71.649773,41.95369699906],[-71.64975,41.95368599906],[-71.649751,41.95370399906],[-71.649773,41.95378099906],[-71.64979,41.95387999906],[-71.649826,41.95402099906],[-71.649864,41.95414399906],[-71.650032,41.95454799906],[-71.65007,41.95462799906],[-71.650093,41.95471199906],[-71.650131,41.95480699906],[-71.650177,41.95498299906],[-71.650177,41.95502099906],[-71.650185,41.95505899906],[-71.650177,41.95509699906],[-71.650177,41.95516199906],[-71.650131,41.95543699906],[-71.650085,41.95553199906],[-71.650063,41.95556299906],[-71.649971,41.95573799906],[-71.649918,41.95582199906],[-71.649902,41.95585599906],[-71.649823,41.95599999906],[-71.649796,41.95606199906],[-71.649757,41.95612699906],[-71.649727,41.95619199906],[-71.649658,41.95630299906],[-71.64962,41.95635599906],[-71.649605,41.95638699906],[-71.649544,41.95646299906],[-71.649518,41.95648099906],[-71.649468,41.95651899906],[-71.649422,41.95655399906],[-71.649403,41.95657099906],[-71.649363,41.95654099906],[-71.649329,41.95647199906],[-71.649293,41.95642399906],[-71.649227,41.95631599906],[-71.649175,41.95627199906],[-71.649103,41.95622199906],[-71.649025,41.95617799906],[-71.648911,41.95609799906],[-71.648849,41.95603699906],[-71.648794,41.95599899906],[-71.648729,41.95591999906],[-71.648684,41.95590099906],[-71.648625,41.95585099906],[-71.648589,41.95580199906],[-71.648525,41.95574799906],[-71.648486,41.95569899906],[-71.648433,41.95560499906],[-71.648411,41.95555299906],[-71.648362,41.95550299906],[-71.648346,41.95544199906],[-71.648338,41.95535199906],[-71.648252,41.95526899906],[-71.648224,41.95518599906],[-71.648213,41.95510099906],[-71.648196,41.95503999906],[-71.648171,41.95481199906],[-71.648151,41.95473099906],[-71.648126,41.95466999906],[-71.648104,41.95451799906],[-71.648136,41.95443399906],[-71.648162,41.95441999906],[-71.64819,41.95444199906],[-71.648243,41.95449399906],[-71.648281,41.95454699906],[-71.64831,41.95462999906],[-71.648324,41.95483199906],[-71.648387,41.95486399906],[-71.648435,41.95485599906],[-71.648466,41.95481899906],[-71.648486,41.95464799906],[-71.648486,41.95458999906],[-71.648468,41.95452799906],[-71.648432,41.95447299906],[-71.648409,41.95441599906],[-71.648353,41.95436399906],[-71.648331,41.95430099906],[-71.648299,41.95424699906],[-71.648237,41.95420099906],[-71.648157,41.95408799906],[-71.648091,41.95404599906],[-71.648042,41.95400299906],[-71.648004,41.95395599906],[-71.647972,41.95390599906],[-71.647907,41.95386799906],[-71.647844,41.95381899906],[-71.647771,41.95379599906],[-71.647676,41.95377399906],[-71.647612,41.95373499906],[-71.647534,41.95372099906],[-71.647338,41.95371899906],[-71.647243,41.95372999906],[-71.647171,41.95376399906],[-71.647088,41.95379399906],[-71.647017,41.95383299906],[-71.646889,41.95391699906],[-71.646774,41.95400999906],[-71.646713,41.95404599906],[-71.646563,41.95411699906],[-71.646492,41.95413299906],[-71.646419,41.95410899906],[-71.646432,41.95408299906],[-71.646479,41.95402699906],[-71.646489,41.95396399906],[-71.64649,41.95385099906],[-71.646507,41.95377199906],[-71.646537,41.95371199906],[-71.6466,41.95368799906],[-71.646679,41.95370899906],[-71.646749,41.95376899906],[-71.646834,41.95377899906],[-71.646931,41.95378199906],[-71.647011,41.95375999906],[-71.647148,41.95368799906],[-71.647184,41.95363899906],[-71.647238,41.95361299906],[-71.647349,41.95358899906],[-71.647505,41.95357599906],[-71.647508,41.95351699906],[-71.647475,41.95345799906],[-71.647431,41.95339699906],[-71.647251,41.95332299906],[-71.647181,41.95329899906],[-71.647107,41.95330699906],[-71.647013,41.95331699906],[-71.646924,41.95331499906],[-71.646823,41.95329599906],[-71.64672,41.95325499906],[-71.646654,41.95321599906],[-71.64658,41.95318199906],[-71.646503,41.95316199906],[-71.646422,41.95316199906],[-71.646348,41.95316699906],[-71.646198,41.95319799906],[-71.64612,41.95322699906],[-71.645954,41.95326499906],[-71.645886,41.95328999906],[-71.645749,41.95335399906],[-71.645681,41.95339699906],[-71.645619,41.95344399906],[-71.645553,41.95344999906],[-71.645474,41.95342599906],[-71.645377,41.95338099906],[-71.645341,41.95331999906],[-71.64533,41.95324999906],[-71.645321,41.95311999906],[-71.645295,41.95305399906],[-71.64529,41.95297299906],[-71.645486,41.95292699906],[-71.645558,41.95289599906],[-71.645806,41.95289199906],[-71.646004,41.95284899906],[-71.646082,41.95281099906],[-71.646111,41.95277099906],[-71.646121,41.95268999906],[-71.646127,41.95254599906],[-71.646118,41.95239499906],[-71.646096,41.95227899906],[-71.646035,41.95220299906],[-71.646001,41.95215299906],[-71.645968,41.95206999906],[-71.645922,41.95202099906],[-71.645856,41.95197999906],[-71.645761,41.95195599906],[-71.645692,41.95191499906],[-71.645599,41.95190599906],[-71.645475,41.95190299906],[-71.645402,41.95191499906],[-71.645318,41.95194299906],[-71.645185,41.95200599906],[-71.645107,41.95202999906],[-71.645024,41.95203899906],[-71.644908,41.95203899906],[-71.644734,41.95202699906],[-71.644667,41.95199899906],[-71.644533,41.95192099906],[-71.644452,41.95185899906],[-71.644375,41.95184099906],[-71.644125,41.95181199906],[-71.644052,41.95179299906],[-71.64402,41.95173199906],[-71.644012,41.95165899906],[-71.644012,41.95159299906],[-71.644022,41.95153899906],[-71.644047,41.95147999906],[-71.644084,41.95142699906],[-71.644144,41.95131899906],[-71.644188,41.95126499906],[-71.644465,41.95110099906],[-71.644593,41.95103799906],[-71.644651,41.95099899906],[-71.644759,41.95095399906],[-71.644808,41.95090599906],[-71.64483,41.95084699906],[-71.644844,41.95071499906],[-71.644822,41.95001099906],[-71.644827,41.94994399906],[-71.644883,41.94982799906],[-71.644897,41.94975299906],[-71.644905,41.94963999906],[-71.645004,41.94946899906],[-71.645028,41.94938899906],[-71.645031,41.94932799906],[-71.645017,41.94926199906],[-71.645089,41.94924099906],[-71.645103,41.94921699906],[-71.645099,41.94902099906],[-71.645113,41.94881999906],[-71.6451,41.94874499906],[-71.645065,41.94860299906],[-71.644987,41.94860299906],[-71.644969,41.94854199906],[-71.644829,41.94853199906],[-71.644592,41.94850899906],[-71.644455,41.94848999906],[-71.644348,41.94846899906],[-71.644318,41.94846299906],[-71.64418,41.94844099906],[-71.643825,41.94835499906],[-71.643684,41.94832199906],[-71.643552,41.94835199906],[-71.643517,41.94835999906],[-71.643356,41.94840999906],[-71.643204,41.94846699906],[-71.643051,41.94851299906],[-71.642723,41.94858899906],[-71.642441,41.94864699906],[-71.642349,41.94866199906],[-71.642159,41.94871499906],[-71.641991,41.94877199906],[-71.64167,41.94890999906],[-71.641586,41.94895199906],[-71.64138,41.94903199906],[-71.641296,41.94905899906],[-71.641197,41.94907799906],[-71.640663,41.94920699906],[-71.640579,41.94922299906],[-71.640274,41.94929899906],[-71.640233,41.94931099906],[-71.640038,41.94937099906],[-71.639954,41.94940199906],[-71.638907,41.94986299906],[-71.638489,41.95004699906],[-71.63829,41.95012299906],[-71.638261,41.95013199906],[-71.6381,41.95018399906],[-71.637924,41.95022599906],[-71.637672,41.95024899906],[-71.637261,41.95025899906],[-71.637199,41.95025999906],[-71.636963,41.95025999906],[-71.636856,41.95024899906],[-71.636765,41.95023299906],[-71.636589,41.95019099906],[-71.636459,41.95017199906],[-71.636017,41.95016899906],[-71.635888,41.95017299906],[-71.635796,41.95017599906],[-71.635536,41.95021099906],[-71.63533,41.95024899906],[-71.63475,41.95034399906],[-71.6343,41.95040099906],[-71.633873,41.95041999906],[-71.63369,41.95040499906],[-71.633472,41.95039599906],[-71.633423,41.95039399906],[-71.633209,41.95037099906],[-71.632797,41.95033999906],[-71.632675,41.95034399906],[-71.632652,41.95035199906],[-71.632439,41.95038999906],[-71.632149,41.95048899906],[-71.631897,41.95059999906],[-71.631682,41.95072299906],[-71.631493,41.95081299906],[-71.63134,41.95085899906],[-71.631142,41.95089299906],[-71.630951,41.95090099906],[-71.630676,41.95089699906],[-71.630363,41.95090099906],[-71.630165,41.95091199906],[-71.629898,41.95096599906],[-71.629669,41.95103499906],[-71.629402,41.95112599906],[-71.629227,41.95117599906],[-71.628876,41.95132399906],[-71.628654,41.95142399906],[-71.628479,41.95148099906],[-71.628296,41.95152999906],[-71.628067,41.95156899906],[-71.627769,41.95157599906],[-71.626808,41.95154199906],[-71.626488,41.95152699906],[-71.626266,41.95152299906],[-71.626045,41.95150799906],[-71.625824,41.95146899906],[-71.625755,41.95160299906],[-71.625763,41.95181699906],[-71.625816,41.95218299906],[-71.62587,41.95246799906],[-71.625931,41.95284299906],[-71.626015,41.95355199906],[-71.626068,41.95393399906],[-71.626114,41.95426899906],[-71.626183,41.95482599906],[-71.626221,41.95520799906],[-71.626221,41.95547099906],[-71.626228,41.95570399906],[-71.626282,41.95590999906],[-71.624886,41.95613099906],[-71.624535,41.95617299906],[-71.623853,41.95626299906],[-71.623787,41.95627199906],[-71.622551,41.95645499906],[-71.622154,41.95650099906],[-71.621758,41.95656999906],[-71.62162,41.95657699906],[-71.621506,41.95657299906],[-71.621262,41.95651999906],[-71.620918,41.95642099906],[-71.620544,41.95634799906],[-71.620209,41.95626799906],[-71.619431,41.95600499906],[-71.618904,41.95583299906],[-71.618385,41.95566899906],[-71.617958,41.95553999906],[-71.617081,41.95526499906],[-71.616638,41.95513499906],[-71.616226,41.95500599906],[-71.615774,41.95487699906],[-71.61544,41.95478099906],[-71.615196,41.95472299906],[-71.615067,41.95471199906],[-71.61483,41.95471199906],[-71.614594,41.95474999906],[-71.613922,41.95489499906],[-71.613739,41.95491399906],[-71.613548,41.95490999906],[-71.613228,41.95486499906],[-71.612839,41.95478399906],[-71.612312,41.95465899906],[-71.611908,41.95453999906],[-71.611137,41.95434999906],[-71.610786,41.95424999906],[-71.610489,41.95415099906],[-71.610222,41.95408199906],[-71.609901,41.95402499906],[-71.60955,41.95398699906],[-71.60939,41.95403699906],[-71.609131,41.95409399906],[-71.608336,41.95425399906],[-71.608299,41.95426199906],[-71.607964,41.95434599906],[-71.607597,41.95445999906],[-71.607285,41.95460099906],[-71.60701,41.95474199906],[-71.60672,41.95488399906],[-71.606537,41.95497899906],[-71.606468,41.95502099906],[-71.606361,41.95511199906],[-71.606285,41.95519599906],[-71.606117,41.95545999906],[-71.605934,41.95579899906],[-71.605614,41.95630299906],[-71.605515,41.95648599906],[-71.605293,41.95677899906],[-71.605186,41.95685599906],[-71.604904,41.95697799906],[-71.604685,41.95703999906],[-71.604607,41.95706199906],[-71.60434,41.95709599906],[-71.60405,41.95712699906],[-71.603788,41.95712699906],[-71.603432,41.95714999906],[-71.603134,41.95719899906],[-71.602722,41.95727899906],[-71.602394,41.95736699906],[-71.602127,41.95745499906],[-71.602058,41.95747799906],[-71.6017,41.95761899906],[-71.601372,41.95772199906],[-71.600952,41.95782499906],[-71.600494,41.95791599906],[-71.600288,41.95797699906],[-71.600113,41.95806099906],[-71.599922,41.95816399906],[-71.599747,41.95826699906],[-71.599548,41.95842699906],[-71.599442,41.95854599906],[-71.599367,41.95869599906],[-71.59935,41.95871699906],[-71.599243,41.95893499906],[-71.599098,41.95926699906],[-71.598953,41.95957899906],[-71.598816,41.95989599906],[-71.598663,41.96021299906],[-71.598503,41.96052599906],[-71.598343,41.96085399906],[-71.598083,41.96133799906],[-71.59803,41.96149399906],[-71.598015,41.96152499906],[-71.597984,41.96163899906],[-71.597969,41.96175799906],[-71.597977,41.96209299906],[-71.598122,41.96306199906],[-71.598366,41.96408099906],[-71.598396,41.96451999906],[-71.598396,41.96483999906],[-71.598412,41.96494699906],[-71.598412,41.96498299906],[-71.598387,41.96503399906],[-71.598297,41.96515099906],[-71.598207,41.96526399906],[-71.598151,41.96534499906],[-71.598061,41.96545999906],[-71.597949,41.96558099906],[-71.597822,41.96574699906],[-71.597679,41.96588999906],[-71.597567,41.96595999906],[-71.597533,41.96598199906],[-71.597519,41.96600199906],[-71.597463,41.96603299906],[-71.597298,41.96608399906],[-71.597122,41.96609899906],[-71.597031,41.96610999906],[-71.596959,41.96611699906],[-71.596898,41.96612299906],[-71.597141,41.96722299906],[-71.598485,41.97356799906],[-71.598505,41.97365799906],[-71.598639,41.97426799906],[-71.598665,41.97439699906],[-71.599016,41.97614499906],[-71.599278,41.97738099906],[-71.599444,41.97816799906],[-71.599487,41.97837299906],[-71.599502,41.97844199906],[-71.599887,41.98028499906],[-71.599999,41.98081899906],[-71.600211,41.98181899906],[-71.600443,41.98302699906],[-71.600605,41.98387899906],[-71.60066,41.98414399906],[-71.6007,41.98434799906],[-71.60087,41.98506499906],[-71.601203,41.98648499906],[-71.601212,41.98657299906],[-71.601357,41.98725799906],[-71.601401,41.98746599906],[-71.601593,41.98839299906],[-71.601637,41.98860399906],[-71.601659,41.98871099906],[-71.601756,41.98917499906],[-71.602488,41.99263699906],[-71.602879,41.99452399906],[-71.603526,41.99749999906],[-71.603631,41.99800399906],[-71.604119,42.00036699906],[-71.604556,42.00253599906],[-71.604693,42.00324599906],[-71.605278,42.00622199906],[-71.606584,42.01257699906],[-71.606731,42.01327999906],[-71.60785,42.01325399906],[-71.6081,42.01324799906],[-71.614552,42.01309899906],[-71.623569,42.01288599906],[-71.625977,42.01282799906],[-71.633404,42.01266099906],[-71.634112,42.01263899906],[-71.635754,42.01259999906],[-71.636672,42.01257799906],[-71.641632,42.01246099906],[-71.64533,42.01237199906],[-71.649516,42.01227399906],[-71.654384,42.01215799906],[-71.6616,42.01198699906],[-71.661434,42.01192699906],[-71.661398,42.01191299906],[-71.661224,42.01182899906],[-71.66098,42.01171899906],[-71.660639,42.01154699906],[-71.660282,42.01135299906],[-71.659434,42.01081499906],[-71.658684,42.01032299906],[-71.658032,42.00992199906],[-71.65672,42.00905599906],[-71.655931,42.00854099906],[-71.655083,42.00800299906],[-71.655403,42.00799899906],[-71.655769,42.00796099906],[-71.656013,42.00796099906],[-71.656342,42.00797299906],[-71.656891,42.00796899906],[-71.657356,42.00792699906],[-71.657539,42.00788899906],[-71.658153,42.00773299906],[-71.65844,42.00765999906],[-71.65863,42.00759099906],[-71.658768,42.00753399906],[-71.658936,42.00743099906],[-71.659134,42.00728999906],[-71.65934,42.00711399906],[-71.659592,42.00692399906],[-71.659752,42.00683199906],[-71.659874,42.00676699906],[-71.659996,42.00671799906],[-71.660172,42.00668299906],[-71.660416,42.00668299906],[-71.660728,42.00672899906],[-71.660873,42.00677899906],[-71.661018,42.00682399906],[-71.661171,42.00685099906],[-71.6614,42.00685099906],[-71.661522,42.00683999906],[-71.661659,42.00679799906],[-71.661804,42.00672899906],[-71.661934,42.00665299906],[-71.662333,42.00638499906],[-71.662445,42.00630999906],[-71.662535,42.00626699906],[-71.662576,42.00624699906],[-71.662621,42.00622599906],[-71.662926,42.00611499906],[-71.663322,42.00598099906],[-71.663551,42.00591299906],[-71.663864,42.00585599906],[-71.664055,42.00582899906],[-71.664734,42.00583299906],[-71.664925,42.00581699906],[-71.665077,42.00581699906],[-71.665291,42.00578299906],[-71.665527,42.00572999906],[-71.665703,42.00570699906],[-71.665825,42.00570699906],[-71.665977,42.00572199906],[-71.666115,42.00574499906],[-71.666245,42.00578699906],[-71.66642,42.00585199906],[-71.66658,42.00593199906],[-71.666588,42.00567199906]]]}}"}, +{"type": "blockgroup", "typeId": 130022, "areaId": 28980, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.683685,41.99334299906],[-71.683662,41.99313399906],[-71.683624,41.99293499906],[-71.683571,41.99275199906],[-71.683535,41.99258999906],[-71.683502,41.99243899906],[-71.683235,41.99152799906],[-71.683167,41.99119199906],[-71.68309,41.99089399906],[-71.683075,41.99064999906],[-71.683075,41.99050099906],[-71.68306,41.99013099906],[-71.68306,41.98963199906],[-71.683037,41.98921599906],[-71.682961,41.98825799906],[-71.682961,41.98817099906],[-71.682884,41.98728899906],[-71.682793,41.98559199906],[-71.682793,41.98517199906],[-71.6828,41.98465299906],[-71.682823,41.98432899906],[-71.683044,41.98296699906],[-71.683144,41.98231499906],[-71.683266,41.98166699906],[-71.683289,41.98149899906],[-71.683296,41.98135399906],[-71.683296,41.98121599906],[-71.683291,41.98112499906],[-71.683281,41.98095299906],[-71.683235,41.98066299906],[-71.68322,41.98052199906],[-71.683197,41.98039999906],[-71.68309,41.97997299906],[-71.682983,41.97964099906],[-71.682709,41.97898099906],[-71.682655,41.97887799906],[-71.682579,41.97871399906],[-71.682411,41.97843899906],[-71.681602,41.97700899906],[-71.681557,41.97693599906],[-71.681328,41.97653999906],[-71.680763,41.97552499906],[-71.680504,41.97506299906],[-71.680038,41.97420899906],[-71.679924,41.97403699906],[-71.679878,41.97397999906],[-71.67984,41.97392299906],[-71.679718,41.97376999906],[-71.679596,41.97362499906],[-71.679543,41.97355299906],[-71.679428,41.97341199906],[-71.679375,41.97333499906],[-71.678947,41.97281299906],[-71.678825,41.97265199906],[-71.678772,41.97259099906],[-71.678664,41.97243499906],[-71.678635,41.97239299906],[-71.678574,41.97227499906],[-71.678551,41.97221399906],[-71.678543,41.97216399906],[-71.678528,41.97211499906],[-71.678505,41.97194699906],[-71.678482,41.97156499906],[-71.678474,41.97133999906],[-71.678467,41.97126799906],[-71.678457,41.97102799906],[-71.678449,41.97085199906],[-71.678323,41.97077799906],[-71.678288,41.97072299906],[-71.678206,41.97061199906],[-71.678147,41.97049599906],[-71.678033,41.97030299906],[-71.677989,41.97024799906],[-71.677917,41.97019599906],[-71.677845,41.97016099906],[-71.677757,41.97010199906],[-71.677639,41.97000699906],[-71.677572,41.96997699906],[-71.677501,41.96995299906],[-71.677421,41.96991699906],[-71.677278,41.96983999906],[-71.677192,41.96981499906],[-71.677027,41.96978299906],[-71.676924,41.96974799906],[-71.676857,41.96971899906],[-71.67679,41.96968299906],[-71.676752,41.96961999906],[-71.676782,41.96958599906],[-71.676857,41.96956299906],[-71.676878,41.96959199906],[-71.67693,41.96961099906],[-71.676997,41.96961299906],[-71.676486,41.96823899906],[-71.675601,41.96623599906],[-71.674847,41.96547899906],[-71.67472,41.96548099906],[-71.674622,41.96540399906],[-71.674431,41.96545599906],[-71.674337,41.96548099906],[-71.674294,41.96549199906],[-71.674294,41.96564499906],[-71.674133,41.96603399906],[-71.67395,41.96641899906],[-71.673813,41.96660599906],[-71.673553,41.96698399906],[-71.67305,41.96772399906],[-71.672882,41.96799099906],[-71.672752,41.96824299906],[-71.672615,41.96858599906],[-71.672569,41.96868899906],[-71.672348,41.96886399906],[-71.672251,41.96896799906],[-71.672073,41.96915799906],[-71.672035,41.96919299906],[-71.671875,41.96937199906],[-71.671814,41.96950899906],[-71.671799,41.96959699906],[-71.671776,41.96972699906],[-71.671799,41.96987499906],[-71.671867,41.97016499906],[-71.671982,41.97055799906],[-71.672096,41.97100099906],[-71.672272,41.97176399906],[-71.672318,41.97211799906],[-71.67234,41.97247299906],[-71.67234,41.97289699906],[-71.67231,41.97317499906],[-71.672279,41.97331999906],[-71.67218,41.97350699906],[-71.672081,41.97366299906],[-71.672005,41.97374699906],[-71.6716,41.97371699906],[-71.670937,41.97363699906],[-71.670639,41.97363999906],[-71.670471,41.97367099906],[-71.670296,41.97372099906],[-71.670143,41.97378899906],[-71.669975,41.97388799906],[-71.669838,41.97402599906],[-71.669785,41.97412899906],[-71.669693,41.97428899906],[-71.669579,41.97458299906],[-71.669228,41.97539099906],[-71.669205,41.97545599906],[-71.669174,41.97552099906],[-71.669136,41.97564299906],[-71.669113,41.97584499906],[-71.669113,41.97602799906],[-71.669136,41.97660099906],[-71.669128,41.97666199906],[-71.669128,41.97678399906],[-71.669121,41.97684499906],[-71.669121,41.97690199906],[-71.669113,41.97696299906],[-71.669098,41.97701999906],[-71.66909,41.97707699906],[-71.669052,41.97721099906],[-71.669022,41.97728299906],[-71.668999,41.97735599906],[-71.668877,41.97763099906],[-71.668831,41.97769499906],[-71.668747,41.97788199906],[-71.668716,41.97800799906],[-71.66864,41.97838999906],[-71.668533,41.97873299906],[-71.668327,41.97925899906],[-71.668282,41.97933599906],[-71.668228,41.97940399906],[-71.668175,41.97945799906],[-71.668015,41.97956799906],[-71.667297,41.97987399906],[-71.66725,41.97989199906],[-71.667053,41.97996499906],[-71.666992,41.97997699906],[-71.666885,41.97997999906],[-71.666847,41.97997699906],[-71.666771,41.97996099906],[-71.666733,41.97994199906],[-71.666428,41.97968299906],[-71.666313,41.97954599906],[-71.666267,41.97946199906],[-71.666206,41.97926699906],[-71.666206,41.97917599906],[-71.666237,41.97895399906],[-71.666351,41.97859599906],[-71.666359,41.97854599906],[-71.666359,41.97849699906],[-71.666328,41.97840899906],[-71.666267,41.97833599906],[-71.666168,41.97826799906],[-71.666071,41.97823699906],[-71.666082,41.97816799906],[-71.66609,41.97810799906],[-71.666128,41.97804299906],[-71.666183,41.97800499906],[-71.666262,41.97798499906],[-71.666329,41.97794399906],[-71.66635,41.97788699906],[-71.666389,41.97783899906],[-71.666442,41.97780099906],[-71.666464,41.97774599906],[-71.666572,41.97765399906],[-71.666595,41.97759999906],[-71.666613,41.97748499906],[-71.666649,41.97740899906],[-71.666692,41.97735299906],[-71.666721,41.97729999906],[-71.666894,41.97723199906],[-71.666953,41.97718499906],[-71.667017,41.97714399906],[-71.667098,41.97706499906],[-71.667186,41.97699299906],[-71.66723,41.97693399906],[-71.667249,41.97687699906],[-71.667259,41.97637699906],[-71.66729,41.97632299906],[-71.66742,41.97622999906],[-71.667439,41.97613499906],[-71.667438,41.97607599906],[-71.667421,41.97594599906],[-71.6674,41.97589299906],[-71.667347,41.97580899906],[-71.667318,41.97575399906],[-71.667268,41.97570799906],[-71.667248,41.97564199906],[-71.667238,41.97557499906],[-71.667211,41.97551199906],[-71.66718,41.97539899906],[-71.667172,41.97534399906],[-71.667146,41.97528999906],[-71.667084,41.97524499906],[-71.667072,41.97512899906],[-71.667076,41.97501299906],[-71.667091,41.97492899906],[-71.667093,41.97486999906],[-71.667084,41.97481299906],[-71.667064,41.97475099906],[-71.667054,41.97469699906],[-71.667019,41.97463799906],[-71.666916,41.97451599906],[-71.666682,41.97437399906],[-71.666619,41.97436699906],[-71.66655,41.97439699906],[-71.666479,41.97437899906],[-71.666434,41.97434499906],[-71.666427,41.97428899906],[-71.666397,41.97415999906],[-71.666393,41.97409899906],[-71.666376,41.97403799906],[-71.666352,41.97397499906],[-71.666319,41.97391899906],[-71.666301,41.97386599906],[-71.66629,41.97380299906],[-71.666265,41.97370699906],[-71.666218,41.97359199906],[-71.666157,41.97337999906],[-71.666126,41.97331699906],[-71.666117,41.97325699906],[-71.666116,41.97318699906],[-71.66609,41.97307499906],[-71.666077,41.97294699906],[-71.666089,41.97270299906],[-71.66611,41.97264999906],[-71.666115,41.97249199906],[-71.666106,41.97236899906],[-71.666095,41.97231099906],[-71.666064,41.97225099906],[-71.665993,41.97219499906],[-71.665926,41.97215399906],[-71.665881,41.97210799906],[-71.665804,41.97200999906],[-71.665762,41.97194399906],[-71.665725,41.97189699906],[-71.66569,41.97182399906],[-71.665525,41.97175599906],[-71.665456,41.97173599906],[-71.665352,41.97173399906],[-71.66528,41.97171499906],[-71.665212,41.97167699906],[-71.664991,41.97149399906],[-71.66495,41.97144599906],[-71.664888,41.97138599906],[-71.664822,41.97135199906],[-71.664573,41.97117799906],[-71.664504,41.97111999906],[-71.6644,41.97099199906],[-71.664271,41.97087299906],[-71.664212,41.97083299906],[-71.664156,41.97078099906],[-71.664103,41.97066799906],[-71.664091,41.97061399906],[-71.664089,41.97055399906],[-71.664097,41.97052399906],[-71.664103,41.97050099906],[-71.66415,41.97045599906],[-71.664216,41.97038099906],[-71.664277,41.97025899906],[-71.664298,41.97013099906],[-71.664313,41.97007399906],[-71.664394,41.96991799906],[-71.664423,41.96963299906],[-71.664389,41.96957299906],[-71.664306,41.96953499906],[-71.664201,41.96950999906],[-71.664141,41.96945599906],[-71.664114,41.96938599906],[-71.66405,41.96927199906],[-71.66404,41.96919799906],[-71.664052,41.96916899906],[-71.66407,41.96912799906],[-71.664089,41.96904899906],[-71.664104,41.96890099906],[-71.664055,41.96880799906],[-71.664003,41.96871199906],[-71.663998,41.96867499906],[-71.664031,41.96862199906],[-71.664094,41.96853899906],[-71.664183,41.96847199906],[-71.664269,41.96836299906],[-71.664309,41.96830499906],[-71.664396,41.96819699906],[-71.664461,41.96815799906],[-71.664707,41.96797899906],[-71.664696,41.96791599906],[-71.664716,41.96785899906],[-71.664744,41.96780799906],[-71.664764,41.96774999906],[-71.664794,41.96769599906],[-71.664818,41.96762899906],[-71.664817,41.96749799906],[-71.664792,41.96741599906],[-71.66479,41.96719799906],[-71.664775,41.96712799906],[-71.664698,41.96692299906],[-71.664638,41.96685899906],[-71.664494,41.96678299906],[-71.664427,41.96675199906],[-71.66432,41.96666399906],[-71.664244,41.96663099906],[-71.664061,41.96658999906],[-71.663907,41.96654699906],[-71.663699,41.96650199906],[-71.663605,41.96649999906],[-71.663522,41.96650399906],[-71.663431,41.96651799906],[-71.663176,41.96652099906],[-71.663098,41.96651599906],[-71.663004,41.96646599906],[-71.662984,41.96640799906],[-71.662982,41.96635199906],[-71.662963,41.96628699906],[-71.662911,41.96623099906],[-71.662849,41.96617499906],[-71.662758,41.96615599906],[-71.662667,41.96614999906],[-71.662585,41.96615799906],[-71.662573,41.96607499906],[-71.662578,41.96601999906],[-71.662647,41.96598699906],[-71.662727,41.96597299906],[-71.662901,41.96592299906],[-71.663066,41.96591699906],[-71.663256,41.96592199906],[-71.663359,41.96593099906],[-71.663359,41.96576699906],[-71.663315,41.96571099906],[-71.663251,41.96565899906],[-71.663183,41.96563399906],[-71.663044,41.96557399906],[-71.662885,41.96550199906],[-71.662864,41.96543599906],[-71.662863,41.96536499906],[-71.663034,41.96531699906],[-71.663101,41.96529399906],[-71.663174,41.96524899906],[-71.663223,41.96520699906],[-71.663286,41.96508099906],[-71.663371,41.96498199906],[-71.663439,41.96491499906],[-71.663496,41.96484599906],[-71.663551,41.96476199906],[-71.663578,41.96468999906],[-71.663591,41.96463499906],[-71.663591,41.96450999906],[-71.663599,41.96445499906],[-71.663633,41.96439899906],[-71.663661,41.96433499906],[-71.663666,41.96425299906],[-71.663688,41.96411899906],[-71.663705,41.96405599906],[-71.663734,41.96400499906],[-71.663758,41.96393699906],[-71.663795,41.96387799906],[-71.663917,41.96370699906],[-71.663973,41.96366999906],[-71.664074,41.96357899906],[-71.66414,41.96352999906],[-71.664241,41.96349799906],[-71.664331,41.96348199906],[-71.664403,41.96346299906],[-71.664476,41.96345099906],[-71.664658,41.96343899906],[-71.664837,41.96340899906],[-71.664919,41.96340999906],[-71.664999,41.96343199906],[-71.665049,41.96348199906],[-71.665156,41.96365499906],[-71.665186,41.96377099906],[-71.665245,41.96390199906],[-71.665269,41.96397899906],[-71.665293,41.96403399906],[-71.665372,41.96413999906],[-71.665425,41.96419299906],[-71.665498,41.96432099906],[-71.66554,41.96436799906],[-71.665669,41.96447099906],[-71.665737,41.96450999906],[-71.665775,41.96452699906],[-71.665805,41.96454099906],[-71.66588,41.96454999906],[-71.665953,41.96457199906],[-71.666027,41.96457699906],[-71.666631,41.96457399906],[-71.666808,41.96455999906],[-71.667047,41.96453099906],[-71.667325,41.96450899906],[-71.667625,41.96447599906],[-71.667796,41.96446299906],[-71.667895,41.96444299906],[-71.667969,41.96440899906],[-71.668285,41.96430599906],[-71.668458,41.96425499906],[-71.668506,41.96424799906],[-71.668494,41.96415099906],[-71.6685,41.96409299906],[-71.668617,41.96400499906],[-71.668682,41.96396799906],[-71.668737,41.96392499906],[-71.668774,41.96387299906],[-71.668853,41.96374399906],[-71.668901,41.96370199906],[-71.668975,41.96364599906],[-71.669031,41.96358399906],[-71.669036,41.96341899906],[-71.669017,41.96336099906],[-71.66894,41.96329299906],[-71.668861,41.96321199906],[-71.668795,41.96316399906],[-71.668668,41.96298599906],[-71.668637,41.96292399906],[-71.668664,41.96280299906],[-71.668698,41.96269899906],[-71.66873,41.96260099906],[-71.668761,41.96253799906],[-71.668876,41.96244099906],[-71.668917,41.96229999906],[-71.668921,41.96222899906],[-71.668903,41.96210699906],[-71.668816,41.96211599906],[-71.668419,41.96218499906],[-71.668068,41.96221899906],[-71.667908,41.96222699906],[-71.66761,41.96222699906],[-71.66713,41.96220399906],[-71.666595,41.96213499906],[-71.665947,41.96202099906],[-71.665543,41.96192899906],[-71.665413,41.96190299906],[-71.665283,41.96187199906],[-71.665031,41.96181899906],[-71.664703,41.96171199906],[-71.664421,41.96159699906],[-71.663956,41.96136899906],[-71.663788,41.96127699906],[-71.663612,41.96116299906],[-71.663239,41.96089199906],[-71.663139,41.96082699906],[-71.662994,41.96071999906],[-71.662979,41.96070499906],[-71.662575,41.96042299906],[-71.662399,41.96028499906],[-71.661926,41.95993799906],[-71.661858,41.95988099906],[-71.661781,41.95982699906],[-71.66153,41.95967899906],[-71.661469,41.95964799906],[-71.661415,41.95961399906],[-71.661301,41.95955299906],[-71.660445,41.95915799906],[-71.66021,41.95904899906],[-71.659851,41.95887399906],[-71.659782,41.95884699906],[-71.659615,41.95877099906],[-71.659378,41.95867499906],[-71.659241,41.95862599906],[-71.659035,41.95859499906],[-71.658829,41.95857599906],[-71.658325,41.95855699906],[-71.658089,41.95853799906],[-71.657944,41.95851899906],[-71.65773,41.95846899906],[-71.657501,41.95840099906],[-71.657265,41.95831699906],[-71.657036,41.95821799906],[-71.656662,41.95798899906],[-71.656242,41.95770599906],[-71.655739,41.95737499906],[-71.65554,41.95725299906],[-71.655151,41.95698899906],[-71.654839,41.95678299906],[-71.654617,41.95664999906],[-71.653763,41.95608899906],[-71.653519,41.95592099906],[-71.653421,41.95585599906],[-71.653084,41.95563099906],[-71.652809,41.95545999906],[-71.652603,41.95533799906],[-71.65181,41.95695899906],[-71.651266,41.95808699906],[-71.651115,41.95839899906],[-71.651085,41.95846199906],[-71.65106,41.95851399906],[-71.650856,41.95894999906],[-71.650673,41.95932399906],[-71.65062,41.95942299906],[-71.650574,41.95952199906],[-71.650398,41.95982699906],[-71.650276,41.96004899906],[-71.650169,41.96020099906],[-71.650073,41.96034399906],[-71.650024,41.96041099906],[-71.649967,41.96049699906],[-71.649918,41.96057099906],[-71.649902,41.96058699906],[-71.649859,41.96064799906],[-71.649796,41.96073899906],[-71.649651,41.96091099906],[-71.64959,41.96099099906],[-71.649353,41.96125999906],[-71.649337,41.96127799906],[-71.649254,41.96137199906],[-71.648888,41.96173899906],[-71.648419,41.96224199906],[-71.648048,41.96263899906],[-71.647469,41.96322999906],[-71.647316,41.96339799906],[-71.647057,41.96366099906],[-71.646217,41.96454999906],[-71.646088,41.96467599906],[-71.646032,41.96473399906],[-71.645546,41.96525199906],[-71.64502,41.96579699906],[-71.644837,41.96598899906],[-71.644585,41.96625499906],[-71.644447,41.96639299906],[-71.644318,41.96653399906],[-71.644035,41.96682699906],[-71.64389,41.96698399906],[-71.643738,41.96713599906],[-71.642975,41.96793399906],[-71.642532,41.96837199906],[-71.642151,41.96872699906],[-71.642044,41.96881899906],[-71.641838,41.96900199906],[-71.641403,41.96935699906],[-71.641308,41.96943199906],[-71.640945,41.96971899906],[-71.640617,41.96996299906],[-71.640274,41.97021099906],[-71.640106,41.97034099906],[-71.640038,41.97038699906],[-71.638611,41.97146199906],[-71.638306,41.97167999906],[-71.638,41.97190899906],[-71.63784,41.97202299906],[-71.637688,41.97214099906],[-71.637505,41.97227099906],[-71.637474,41.97229799906],[-71.63678,41.97280099906],[-71.636414,41.97304199906],[-71.636024,41.97325499906],[-71.63562,41.97345399906],[-71.635277,41.97359799906],[-71.634979,41.97371299906],[-71.634666,41.97381199906],[-71.634247,41.97392999906],[-71.633728,41.97406799906],[-71.632721,41.97430799906],[-71.632217,41.97443399906],[-71.632202,41.97450999906],[-71.632146,41.97482199906],[-71.632139,41.97486599906],[-71.632137,41.97491499906],[-71.632118,41.97518499906],[-71.632111,41.97557099906],[-71.632118,41.97591399906],[-71.632141,41.97619199906],[-71.63221,41.97641399906],[-71.632484,41.97643699906],[-71.632729,41.97646699906],[-71.632843,41.97648599906],[-71.633598,41.97656199906],[-71.634129,41.97661999906],[-71.634163,41.97662399906],[-71.63446,41.97667299906],[-71.63522,41.97683899906],[-71.636246,41.97715799906],[-71.636627,41.97728299906],[-71.637321,41.97752399906],[-71.637825,41.97766099906],[-71.638657,41.97790099906],[-71.639793,41.97824099906],[-71.64006,41.97833999906],[-71.640228,41.97842799906],[-71.640366,41.97851199906],[-71.640526,41.97863799906],[-71.640843,41.97891499906],[-71.640961,41.97901899906],[-71.641403,41.97935499906],[-71.641853,41.97961799906],[-71.642288,41.97990399906],[-71.6437,41.98078499906],[-71.644043,41.98100999906],[-71.644539,41.98134599906],[-71.645172,41.98173099906],[-71.645325,41.98180399906],[-71.645584,41.98187599906],[-71.645652,41.98189199906],[-71.646133,41.98200199906],[-71.646675,41.98215899906],[-71.647206,41.98234099906],[-71.647308,41.98237599906],[-71.648697,41.98279999906],[-71.649223,41.98297499906],[-71.649574,41.98310099906],[-71.649933,41.98326099906],[-71.650261,41.98342499906],[-71.650719,41.98367699906],[-71.65097,41.98380299906],[-71.651176,41.98393199906],[-71.651375,41.98406999906],[-71.652374,41.98485599906],[-71.653275,41.98561499906],[-71.653763,41.98599999906],[-71.65387,41.98609499906],[-71.654343,41.98649199906],[-71.654556,41.98672899906],[-71.65464,41.98685499906],[-71.654716,41.98699599906],[-71.654755,41.98707999906],[-71.654793,41.98719399906],[-71.654808,41.98721699906],[-71.654854,41.98734299906],[-71.6549,41.98744999906],[-71.655167,41.98814799906],[-71.655426,41.98887299906],[-71.655617,41.98943299906],[-71.65583,41.99002099906],[-71.656052,41.99055499906],[-71.656464,41.99147399906],[-71.656555,41.99181399906],[-71.656647,41.99206899906],[-71.656738,41.99225999906],[-71.656799,41.99237399906],[-71.656853,41.99252299906],[-71.656896,41.99273599906],[-71.656914,41.99282499906],[-71.657005,41.99286299906],[-71.657089,41.99288599906],[-71.657188,41.99290499906],[-71.657275,41.99290799906],[-71.657936,41.99293099906],[-71.658073,41.99296199906],[-71.658249,41.99298099906],[-71.658554,41.99299199906],[-71.658661,41.99300799906],[-71.658791,41.99303399906],[-71.658897,41.99306499906],[-71.659027,41.99308799906],[-71.659157,41.99312999906],[-71.659348,41.99316799906],[-71.659523,41.99321699906],[-71.659615,41.99325199906],[-71.659752,41.99333199906],[-71.659874,41.99341199906],[-71.660088,41.99360699906],[-71.660179,41.99367099906],[-71.660248,41.99373599906],[-71.660347,41.99381999906],[-71.660446,41.99387399906],[-71.660614,41.99398799906],[-71.660759,41.99411399906],[-71.661095,41.99434999906],[-71.661209,41.99444999906],[-71.661308,41.99455299906],[-71.661514,41.99471699906],[-71.661636,41.99480099906],[-71.661758,41.99486499906],[-71.66185,41.99492999906],[-71.661934,41.99499899906],[-71.661956,41.99502399906],[-71.662056,41.99513999906],[-71.662148,41.99522399906],[-71.662216,41.99529599906],[-71.662285,41.99539599906],[-71.662323,41.99547199906],[-71.662346,41.99553299906],[-71.662369,41.99565499906],[-71.66243,41.99575799906],[-71.662567,41.99592599906],[-71.662643,41.99606299906],[-71.662727,41.99616199906],[-71.662781,41.99637599906],[-71.662827,41.99644099906],[-71.662949,41.99653999906],[-71.663139,41.99672299906],[-71.663231,41.99678799906],[-71.663254,41.99681099906],[-71.663292,41.99688699906],[-71.663338,41.99693299906],[-71.663467,41.99717299906],[-71.663567,41.99738299906],[-71.663597,41.99742899906],[-71.663673,41.99751999906],[-71.663719,41.99756199906],[-71.663803,41.99765799906],[-71.66394,41.99777599906],[-71.664124,41.99789799906],[-71.664246,41.99799299906],[-71.664421,41.99808499906],[-71.66452,41.99815399906],[-71.664635,41.99825999906],[-71.664902,41.99849299906],[-71.66494,41.99855399906],[-71.665154,41.99880999906],[-71.665329,41.99903899906],[-71.665459,41.99925599906],[-71.665596,41.99972199906],[-71.665642,41.99994699906],[-71.665733,42.00033599906],[-71.665871,42.00079299906],[-71.666054,42.00135799906],[-71.666064,42.00139599906],[-71.666153,42.00175099906],[-71.66629,42.00217399906],[-71.666359,42.00286899906],[-71.666435,42.00331499906],[-71.666443,42.00348699906],[-71.666412,42.00361999906],[-71.666336,42.00383799906],[-71.666328,42.00395599906],[-71.666334,42.00398299906],[-71.666351,42.00406599906],[-71.666451,42.00442499906],[-71.666557,42.00524899906],[-71.666588,42.00567199906],[-71.66658,42.00593199906],[-71.66642,42.00585199906],[-71.666245,42.00578699906],[-71.666115,42.00574499906],[-71.665977,42.00572199906],[-71.665825,42.00570699906],[-71.665703,42.00570699906],[-71.665527,42.00572999906],[-71.665291,42.00578299906],[-71.665077,42.00581699906],[-71.664925,42.00581699906],[-71.664734,42.00583299906],[-71.664055,42.00582899906],[-71.663864,42.00585599906],[-71.663551,42.00591299906],[-71.663322,42.00598099906],[-71.662926,42.00611499906],[-71.662621,42.00622599906],[-71.662576,42.00624699906],[-71.662535,42.00626699906],[-71.662445,42.00630999906],[-71.662333,42.00638499906],[-71.661934,42.00665299906],[-71.661804,42.00672899906],[-71.661659,42.00679799906],[-71.661522,42.00683999906],[-71.6614,42.00685099906],[-71.661171,42.00685099906],[-71.661018,42.00682399906],[-71.660873,42.00677899906],[-71.660728,42.00672899906],[-71.660416,42.00668299906],[-71.660172,42.00668299906],[-71.659996,42.00671799906],[-71.659874,42.00676699906],[-71.659752,42.00683199906],[-71.659592,42.00692399906],[-71.65934,42.00711399906],[-71.659134,42.00728999906],[-71.658936,42.00743099906],[-71.658768,42.00753399906],[-71.65863,42.00759099906],[-71.65844,42.00765999906],[-71.658153,42.00773299906],[-71.657539,42.00788899906],[-71.657356,42.00792699906],[-71.656891,42.00796899906],[-71.656342,42.00797299906],[-71.656013,42.00796099906],[-71.655769,42.00796099906],[-71.655403,42.00799899906],[-71.655083,42.00800299906],[-71.655931,42.00854099906],[-71.65672,42.00905599906],[-71.658032,42.00992199906],[-71.658684,42.01032299906],[-71.659434,42.01081499906],[-71.660282,42.01135299906],[-71.660639,42.01154699906],[-71.66098,42.01171899906],[-71.661224,42.01182899906],[-71.661398,42.01191299906],[-71.661434,42.01192699906],[-71.6616,42.01198699906],[-71.668964,42.01181199906],[-71.669997,42.01178799906],[-71.674771,42.01167199906],[-71.674893,42.01167199906],[-71.675399,42.01165999906],[-71.678019,42.01159799906],[-71.678024,42.01137199906],[-71.678017,42.01124199906],[-71.678001,42.01115399906],[-71.677963,42.01102799906],[-71.677879,42.01082999906],[-71.677704,42.01048299906],[-71.677544,42.01018899906],[-71.677391,42.00986499906],[-71.677216,42.00953299906],[-71.67715,42.00937999906],[-71.677087,42.00923599906],[-71.677032,42.00910899906],[-71.676918,42.00881199906],[-71.676895,42.00873599906],[-71.676712,42.00825499906],[-71.676651,42.00802199906],[-71.676651,42.00781999906],[-71.676659,42.00767499906],[-71.676682,42.00757999906],[-71.67672,42.00747299906],[-71.676781,42.00736999906],[-71.676857,42.00726299906],[-71.676918,42.00719499906],[-71.676946,42.00714999906],[-71.677063,42.00704599906],[-71.677156,42.00697899906],[-71.677223,42.00693099906],[-71.677963,42.00644699906],[-71.678223,42.00625599906],[-71.678757,42.00591999906],[-71.679153,42.00563799906],[-71.679466,42.00542099906],[-71.67968,42.00524099906],[-71.679909,42.00507399906],[-71.680031,42.00494799906],[-71.680183,42.00473799906],[-71.680305,42.00453899906],[-71.680443,42.00429499906],[-71.680595,42.00395199906],[-71.680862,42.00332299906],[-71.680871,42.00329699906],[-71.680969,42.00300999906],[-71.681,42.00283099906],[-71.681007,42.00265099906],[-71.681007,42.00242599906],[-71.681015,42.00217099906],[-71.681053,42.00198399906],[-71.681099,42.00179699906],[-71.681229,42.00153399906],[-71.681442,42.00115199906],[-71.681671,42.00064499906],[-71.681877,42.00025199906],[-71.681958,42.00007299906],[-71.682014,41.99994999906],[-71.682083,41.99969499906],[-71.682121,41.99949599906],[-71.682136,41.99931799906],[-71.682152,41.99914899906],[-71.682144,41.99898899906],[-71.682137,41.99894699906],[-71.682129,41.99867199906],[-71.682106,41.99839799906],[-71.682083,41.99782899906],[-71.682007,41.99639099906],[-71.682007,41.99616999906],[-71.681999,41.99608599906],[-71.681999,41.99599799906],[-71.682014,41.99581899906],[-71.682045,41.99564399906],[-71.682068,41.99557499906],[-71.682205,41.99529299906],[-71.682304,41.99515199906],[-71.682419,41.99501399906],[-71.682587,41.99483099906],[-71.682922,41.99449499906],[-71.683479,41.99391599906],[-71.683523,41.99386499906],[-71.683571,41.99380899906],[-71.683647,41.99365999906],[-71.68367,41.99357199906],[-71.683685,41.99342299906],[-71.683685,41.99334299906]]]}}"}, +{"type": "blockgroup", "typeId": 130023, "areaId": 28981, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.704735,41.93914399906],[-71.70471,41.93889099906],[-71.704704,41.93883499906],[-71.704659,41.93856799906],[-71.704628,41.93841599906],[-71.704582,41.93826699906],[-71.70453,41.93814499906],[-71.704506,41.93810299906],[-71.704483,41.93806099906],[-71.704445,41.93797299906],[-71.704403,41.93792399906],[-71.704155,41.93761499906],[-71.703896,41.93729399906],[-71.703636,41.93698899906],[-71.703606,41.93694699906],[-71.703567,41.93689999906],[-71.703433,41.93673399906],[-71.703354,41.93663799906],[-71.703163,41.93638599906],[-71.702981,41.93617799906],[-71.702904,41.93608899906],[-71.702499,41.93560799906],[-71.70237,41.93540999906],[-71.702309,41.93526499906],[-71.702209,41.93500099906],[-71.702118,41.93478799906],[-71.702087,41.93469999906],[-71.70192,41.93429899906],[-71.70151,41.93338499906],[-71.701477,41.93331099906],[-71.701404,41.93313699906],[-71.701271,41.93282299906],[-71.700951,41.93212499906],[-71.700798,41.93177799906],[-71.700577,41.93121299906],[-71.700519,41.93104299906],[-71.700485,41.93094299906],[-71.700481,41.93092299906],[-71.698001,41.93098599906],[-71.691531,41.93109599906],[-71.689924,41.93114699906],[-71.685021,41.93130599906],[-71.681841,41.93140699906],[-71.681182,41.93142799906],[-71.678472,41.93151599906],[-71.677423,41.93154999906],[-71.67626,41.93158999906],[-71.675709,41.93160899906],[-71.67473,41.93163399906],[-71.672438,41.93167399906],[-71.669466,41.93172199906],[-71.66668,41.93177099906],[-71.666504,41.93204099906],[-71.665222,41.93397499906],[-71.663742,41.93622199906],[-71.663368,41.93677499906],[-71.66259,41.93796199906],[-71.661865,41.93907899906],[-71.661515,41.93960299906],[-71.660545,41.94105099906],[-71.659248,41.94300499906],[-71.658623,41.94396199906],[-71.658076,41.94478899906],[-71.657562,41.94556399906],[-71.657127,41.94622999906],[-71.656799,41.94673199906],[-71.656616,41.94703299906],[-71.656433,41.94737199906],[-71.65583,41.94858899906],[-71.655403,41.94948199906],[-71.655319,41.94965199906],[-71.655006,41.95029399906],[-71.654961,41.95040899906],[-71.654602,41.95117999906],[-71.653847,41.95272799906],[-71.653421,41.95360899906],[-71.65284,41.95481499906],[-71.652603,41.95533799906],[-71.652809,41.95545999906],[-71.653084,41.95563099906],[-71.653421,41.95585599906],[-71.653519,41.95592099906],[-71.653763,41.95608899906],[-71.654617,41.95664999906],[-71.654839,41.95678299906],[-71.655151,41.95698899906],[-71.65554,41.95725299906],[-71.655739,41.95737499906],[-71.656242,41.95770599906],[-71.656662,41.95798899906],[-71.657036,41.95821799906],[-71.657265,41.95831699906],[-71.657501,41.95840099906],[-71.65773,41.95846899906],[-71.657944,41.95851899906],[-71.658089,41.95853799906],[-71.658325,41.95855699906],[-71.658829,41.95857599906],[-71.659035,41.95859499906],[-71.659241,41.95862599906],[-71.659378,41.95867499906],[-71.659615,41.95877099906],[-71.659782,41.95884699906],[-71.659851,41.95887399906],[-71.66021,41.95904899906],[-71.660445,41.95915799906],[-71.661301,41.95955299906],[-71.661415,41.95961399906],[-71.661469,41.95964799906],[-71.66153,41.95967899906],[-71.661781,41.95982699906],[-71.661858,41.95988099906],[-71.661926,41.95993799906],[-71.662399,41.96028499906],[-71.662575,41.96042299906],[-71.662979,41.96070499906],[-71.662994,41.96071999906],[-71.663139,41.96082699906],[-71.663239,41.96089199906],[-71.663612,41.96116299906],[-71.663788,41.96127699906],[-71.663956,41.96136899906],[-71.664421,41.96159699906],[-71.664703,41.96171199906],[-71.665031,41.96181899906],[-71.665283,41.96187199906],[-71.665413,41.96190299906],[-71.665543,41.96192899906],[-71.665947,41.96202099906],[-71.666595,41.96213499906],[-71.66713,41.96220399906],[-71.66761,41.96222699906],[-71.667908,41.96222699906],[-71.668068,41.96221899906],[-71.668419,41.96218499906],[-71.668816,41.96211599906],[-71.668903,41.96210699906],[-71.669037,41.96209299906],[-71.669296,41.96207399906],[-71.669393,41.96207199906],[-71.669548,41.96206999906],[-71.669899,41.96208599906],[-71.670174,41.96211199906],[-71.67038,41.96212399906],[-71.670738,41.96216999906],[-71.671013,41.96221899906],[-71.671234,41.96227999906],[-71.671478,41.96234099906],[-71.671822,41.96241399906],[-71.671919,41.96242899906],[-71.672195,41.96247499906],[-71.672684,41.96252799906],[-71.672775,41.96254299906],[-71.672867,41.96256299906],[-71.67292,41.96256999906],[-71.67318,41.96262399906],[-71.673326,41.96265999906],[-71.673546,41.96271499906],[-71.673692,41.96276599906],[-71.673737,41.96278199906],[-71.673786,41.96278299906],[-71.674679,41.96279399906],[-71.675053,41.96280999906],[-71.675352,41.96285899906],[-71.67611,41.96307499906],[-71.676798,41.96327999906],[-71.678002,41.96366299906],[-71.678138,41.96370299906],[-71.678368,41.96356199906],[-71.67852,41.96347799906],[-71.678719,41.96343199906],[-71.678917,41.96337899906],[-71.679268,41.96331399906],[-71.679848,41.96319599906],[-71.680054,41.96313499906],[-71.680176,41.96306999906],[-71.680195,41.96305299906],[-71.680244,41.96300899906],[-71.68029,41.96296699906],[-71.680359,41.96284099906],[-71.68042,41.96265799906],[-71.680443,41.96247099906],[-71.680443,41.96187999906],[-71.680428,41.96171999906],[-71.680428,41.96151399906],[-71.680412,41.96139499906],[-71.680405,41.96129999906],[-71.680374,41.96122199906],[-71.680298,41.96103299906],[-71.680222,41.96079999906],[-71.680208,41.96073299906],[-71.680191,41.96065099906],[-71.680191,41.96039599906],[-71.680176,41.96018599906],[-71.680176,41.96003699906],[-71.68018,41.95992499906],[-71.680183,41.95986199906],[-71.680237,41.95981199906],[-71.680328,41.95973999906],[-71.680618,41.95963299906],[-71.680939,41.95953799906],[-71.681046,41.95951099906],[-71.681404,41.95939999906],[-71.681656,41.95931599906],[-71.682673,41.95899199906],[-71.683304,41.95878999906],[-71.68409,41.95851899906],[-71.684357,41.95841999906],[-71.684677,41.95832099906],[-71.685005,41.95821399906],[-71.685326,41.95811499906],[-71.685394,41.95808799906],[-71.685516,41.95803099906],[-71.685577,41.95798499906],[-71.685654,41.95790499906],[-71.685692,41.95782099906],[-71.685722,41.95772199906],[-71.68573,41.95765699906],[-71.685838,41.95720999906],[-71.685883,41.95702399906],[-71.685951,41.95679499906],[-71.686043,41.95643999906],[-71.686058,41.95636399906],[-71.686058,41.95626099906],[-71.68605,41.95613899906],[-71.686028,41.95600099906],[-71.685997,41.95585999906],[-71.685898,41.95549799906],[-71.685822,41.95529199906],[-71.685669,41.95476499906],[-71.685638,41.95456699906],[-71.685616,41.95432999906],[-71.685623,41.95417399906],[-71.685638,41.95401399906],[-71.685677,41.95386899906],[-71.685753,41.95368599906],[-71.685806,41.95350599906],[-71.685852,41.95339599906],[-71.685898,41.95323599906],[-71.685913,41.95311699906],[-71.68589,41.95272399906],[-71.685837,41.95231599906],[-71.685829,41.95199599906],[-71.685806,41.95162199906],[-71.68576,41.95126299906],[-71.685738,41.95094699906],[-71.685654,41.95024899906],[-71.685616,41.95000499906],[-71.6856,41.94993999906],[-71.685585,41.94977999906],[-71.685562,41.94960399906],[-71.685532,41.94925699906],[-71.685509,41.94913899906],[-71.685463,41.94876099906],[-71.685425,41.94853599906],[-71.685394,41.94824999906],[-71.685364,41.94807399906],[-71.685349,41.94790599906],[-71.685745,41.94793299906],[-71.686142,41.94792599906],[-71.686371,41.94790599906],[-71.686668,41.94788699906],[-71.687057,41.94784499906],[-71.688004,41.94776199906],[-71.688133,41.94773499906],[-71.688293,41.94770799906],[-71.688942,41.94753999906],[-71.689224,41.94745999906],[-71.689568,41.94736899906],[-71.689804,41.94731499906],[-71.690407,41.94720499906],[-71.690689,41.94715899906],[-71.690895,41.94712099906],[-71.691185,41.94704799906],[-71.691322,41.94711299906],[-71.691681,41.94729599906],[-71.691772,41.94734199906],[-71.69191,41.94740699906],[-71.692123,41.94752499906],[-71.692619,41.94776499906],[-71.693001,41.94796799906],[-71.693596,41.94825699906],[-71.693886,41.94840999906],[-71.694237,41.94858199906],[-71.694817,41.94888299906],[-71.694946,41.94896299906],[-71.69503,41.94901999906],[-71.695282,41.94921099906],[-71.695557,41.94948999906],[-71.695671,41.94963799906],[-71.695831,41.94988599906],[-71.69585,41.94991399906],[-71.69606,41.95021399906],[-71.696289,41.95045099906],[-71.696419,41.95056499906],[-71.696655,41.95071399906],[-71.696907,41.95083599906],[-71.697128,41.95092399906],[-71.697166,41.95093499906],[-71.697342,41.95099999906],[-71.697838,41.95115699906],[-71.698257,41.95131299906],[-71.698364,41.95136599906],[-71.698517,41.95143499906],[-71.698677,41.95152299906],[-71.698814,41.95161099906],[-71.699257,41.95191199906],[-71.699394,41.95199599906],[-71.699547,41.95206499906],[-71.699707,41.95212599906],[-71.69986,41.95216799906],[-71.70002,41.95220199906],[-71.70018,41.95224799906],[-71.700333,41.95230099906],[-71.70047,41.95235399906],[-71.700714,41.95247299906],[-71.700905,41.95260199906],[-71.700996,41.95267899906],[-71.70108,41.95275899906],[-71.701157,41.95284299906],[-71.701302,41.95269799906],[-71.701454,41.95258699906],[-71.701628,41.95247299906],[-71.701683,41.95243799906],[-71.701805,41.95236599906],[-71.701912,41.95228599906],[-71.702126,41.95213699906],[-71.70266,41.95179399906],[-71.702728,41.95173599906],[-71.702797,41.95166799906],[-71.702843,41.95159499906],[-71.702888,41.95143499906],[-71.702896,41.95135499906],[-71.702896,41.95114499906],[-71.702881,41.95087799906],[-71.702888,41.95077099906],[-71.702888,41.95065699906],[-71.702919,41.95043899906],[-71.702919,41.95004699906],[-71.702888,41.94987499906],[-71.702751,41.94931399906],[-71.70269,41.94912699906],[-71.702583,41.94895899906],[-71.702492,41.94887199906],[-71.702393,41.94874999906],[-71.702332,41.94866599906],[-71.702286,41.94857799906],[-71.702263,41.94845999906],[-71.702232,41.94819599906],[-71.702232,41.94781899906],[-71.702332,41.94699499906],[-71.702347,41.94692199906],[-71.70237,41.94685399906],[-71.7024,41.94679299906],[-71.702446,41.94672799906],[-71.702499,41.94666299906],[-71.70266,41.94652899906],[-71.702782,41.94643399906],[-71.70285,41.94638799906],[-71.702904,41.94634199906],[-71.703033,41.94615199906],[-71.703056,41.94605999906],[-71.70327,41.94554499906],[-71.703331,41.94538099906],[-71.703346,41.94527799906],[-71.703346,41.94512599906],[-71.703339,41.94501099906],[-71.703316,41.94489299906],[-71.7033,41.94475599906],[-71.703293,41.94462199906],[-71.703194,41.94369499906],[-71.703194,41.94359999906],[-71.703232,41.94341999906],[-71.703278,41.94333999906],[-71.703331,41.94326799906],[-71.703407,41.94318399906],[-71.703545,41.94307299906],[-71.703706,41.94296499906],[-71.70401,41.94275999906],[-71.704117,41.94267699906],[-71.704193,41.94259999906],[-71.704254,41.94252399906],[-71.704292,41.94242899906],[-71.704308,41.94230699906],[-71.704315,41.94221099906],[-71.704315,41.94206199906],[-71.704292,41.94141799906],[-71.7043,41.94118099906],[-71.704353,41.94089899906],[-71.70472,41.93922799906],[-71.704735,41.93914399906]]]}}"}, +{"type": "blockgroup", "typeId": 130024, "areaId": 28982, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.66668,41.93177099906],[-71.662664,41.93185799906],[-71.655144,41.93203299906],[-71.653265,41.93207999906],[-71.652838,41.93209199906],[-71.651586,41.93212299906],[-71.65105,41.93213599906],[-71.650775,41.93214299906],[-71.64799,41.93221299906],[-71.640931,41.93239799906],[-71.63973,41.93242899906],[-71.639715,41.93242899906],[-71.637348,41.93242099906],[-71.633437,41.93240699906],[-71.632458,41.93240399906],[-71.631873,41.93240199906],[-71.629387,41.93238099906],[-71.627577,41.93243899906],[-71.626123,41.93248599906],[-71.624375,41.93254299906],[-71.624437,41.93264699906],[-71.623867,41.93286799906],[-71.621663,41.93302299906],[-71.621809,41.93262599906],[-71.621559,41.93263499906],[-71.616851,41.93278399906],[-71.613563,41.93289699906],[-71.608526,41.93306699906],[-71.603364,41.93323999906],[-71.60297,41.93325099906],[-71.60235,41.93327199906],[-71.601648,41.93329499906],[-71.592788,41.93358499906],[-71.590312,41.93366499906],[-71.590404,41.93407799906],[-71.592278,41.94355899906],[-71.592451,41.94448799906],[-71.593658,41.95083599906],[-71.594832,41.95675599906],[-71.595235,41.95864199906],[-71.595978,41.96201799906],[-71.596167,41.96289399906],[-71.59618,41.96294299906],[-71.596637,41.96496899906],[-71.596898,41.96612299906],[-71.596959,41.96611699906],[-71.597031,41.96610999906],[-71.597122,41.96609899906],[-71.597298,41.96608399906],[-71.597463,41.96603299906],[-71.597519,41.96600199906],[-71.597533,41.96598199906],[-71.597567,41.96595999906],[-71.597679,41.96588999906],[-71.597822,41.96574699906],[-71.597949,41.96558099906],[-71.598061,41.96545999906],[-71.598151,41.96534499906],[-71.598207,41.96526399906],[-71.598297,41.96515099906],[-71.598387,41.96503399906],[-71.598412,41.96498299906],[-71.598412,41.96494699906],[-71.598396,41.96483999906],[-71.598396,41.96451999906],[-71.598366,41.96408099906],[-71.598122,41.96306199906],[-71.597977,41.96209299906],[-71.597969,41.96175799906],[-71.597984,41.96163899906],[-71.598015,41.96152499906],[-71.59803,41.96149399906],[-71.598083,41.96133799906],[-71.598343,41.96085399906],[-71.598503,41.96052599906],[-71.598663,41.96021299906],[-71.598816,41.95989599906],[-71.598953,41.95957899906],[-71.599098,41.95926699906],[-71.599243,41.95893499906],[-71.59935,41.95871699906],[-71.599367,41.95869599906],[-71.599442,41.95854599906],[-71.599548,41.95842699906],[-71.599747,41.95826699906],[-71.599922,41.95816399906],[-71.600113,41.95806099906],[-71.600288,41.95797699906],[-71.600494,41.95791599906],[-71.600952,41.95782499906],[-71.601372,41.95772199906],[-71.6017,41.95761899906],[-71.602058,41.95747799906],[-71.602127,41.95745499906],[-71.602394,41.95736699906],[-71.602722,41.95727899906],[-71.603134,41.95719899906],[-71.603432,41.95714999906],[-71.603788,41.95712699906],[-71.60405,41.95712699906],[-71.60434,41.95709599906],[-71.604607,41.95706199906],[-71.604685,41.95703999906],[-71.604904,41.95697799906],[-71.605186,41.95685599906],[-71.605293,41.95677899906],[-71.605515,41.95648599906],[-71.605614,41.95630299906],[-71.605934,41.95579899906],[-71.606117,41.95545999906],[-71.606285,41.95519599906],[-71.606361,41.95511199906],[-71.606468,41.95502099906],[-71.606537,41.95497899906],[-71.60672,41.95488399906],[-71.60701,41.95474199906],[-71.607285,41.95460099906],[-71.607597,41.95445999906],[-71.607964,41.95434599906],[-71.608299,41.95426199906],[-71.608336,41.95425399906],[-71.609131,41.95409399906],[-71.60939,41.95403699906],[-71.60955,41.95398699906],[-71.609901,41.95402499906],[-71.610222,41.95408199906],[-71.610489,41.95415099906],[-71.610786,41.95424999906],[-71.611137,41.95434999906],[-71.611908,41.95453999906],[-71.612312,41.95465899906],[-71.612839,41.95478399906],[-71.613228,41.95486499906],[-71.613548,41.95490999906],[-71.613739,41.95491399906],[-71.613922,41.95489499906],[-71.614594,41.95474999906],[-71.61483,41.95471199906],[-71.615067,41.95471199906],[-71.615196,41.95472299906],[-71.61544,41.95478099906],[-71.615774,41.95487699906],[-71.616226,41.95500599906],[-71.616638,41.95513499906],[-71.617081,41.95526499906],[-71.617958,41.95553999906],[-71.618385,41.95566899906],[-71.618904,41.95583299906],[-71.619431,41.95600499906],[-71.620209,41.95626799906],[-71.620544,41.95634799906],[-71.620918,41.95642099906],[-71.621262,41.95651999906],[-71.621506,41.95657299906],[-71.62162,41.95657699906],[-71.621758,41.95656999906],[-71.622154,41.95650099906],[-71.622551,41.95645499906],[-71.623787,41.95627199906],[-71.623853,41.95626299906],[-71.624535,41.95617299906],[-71.624886,41.95613099906],[-71.626282,41.95590999906],[-71.626228,41.95570399906],[-71.626221,41.95547099906],[-71.626221,41.95520799906],[-71.626183,41.95482599906],[-71.626114,41.95426899906],[-71.626068,41.95393399906],[-71.626015,41.95355199906],[-71.625931,41.95284299906],[-71.62587,41.95246799906],[-71.625816,41.95218299906],[-71.625763,41.95181699906],[-71.625755,41.95160299906],[-71.625824,41.95146899906],[-71.626045,41.95150799906],[-71.626266,41.95152299906],[-71.626488,41.95152699906],[-71.626808,41.95154199906],[-71.627769,41.95157599906],[-71.628067,41.95156899906],[-71.628296,41.95152999906],[-71.628479,41.95148099906],[-71.628654,41.95142399906],[-71.628876,41.95132399906],[-71.629227,41.95117599906],[-71.629402,41.95112599906],[-71.629669,41.95103499906],[-71.629898,41.95096599906],[-71.630165,41.95091199906],[-71.630363,41.95090099906],[-71.630676,41.95089699906],[-71.630951,41.95090099906],[-71.631142,41.95089299906],[-71.63134,41.95085899906],[-71.631493,41.95081299906],[-71.631682,41.95072299906],[-71.631897,41.95059999906],[-71.632149,41.95048899906],[-71.632439,41.95038999906],[-71.632652,41.95035199906],[-71.632675,41.95034399906],[-71.632797,41.95033999906],[-71.633209,41.95037099906],[-71.633423,41.95039399906],[-71.633472,41.95039599906],[-71.63369,41.95040499906],[-71.633873,41.95041999906],[-71.6343,41.95040099906],[-71.63475,41.95034399906],[-71.63533,41.95024899906],[-71.635536,41.95021099906],[-71.635796,41.95017599906],[-71.635888,41.95017299906],[-71.636017,41.95016899906],[-71.636459,41.95017199906],[-71.636589,41.95019099906],[-71.636765,41.95023299906],[-71.636856,41.95024899906],[-71.636963,41.95025999906],[-71.637199,41.95025999906],[-71.637261,41.95025899906],[-71.637672,41.95024899906],[-71.637924,41.95022599906],[-71.6381,41.95018399906],[-71.638261,41.95013199906],[-71.63829,41.95012299906],[-71.638489,41.95004699906],[-71.638907,41.94986299906],[-71.639954,41.94940199906],[-71.640038,41.94937099906],[-71.640233,41.94931099906],[-71.640274,41.94929899906],[-71.640579,41.94922299906],[-71.640663,41.94920699906],[-71.641197,41.94907799906],[-71.641296,41.94905899906],[-71.64138,41.94903199906],[-71.641586,41.94895199906],[-71.64167,41.94890999906],[-71.641991,41.94877199906],[-71.642159,41.94871499906],[-71.642349,41.94866199906],[-71.642441,41.94864699906],[-71.642723,41.94858899906],[-71.643051,41.94851299906],[-71.643204,41.94846699906],[-71.643356,41.94840999906],[-71.643517,41.94835999906],[-71.643552,41.94835199906],[-71.643684,41.94832199906],[-71.643825,41.94835499906],[-71.64418,41.94844099906],[-71.644318,41.94846299906],[-71.644348,41.94846899906],[-71.644455,41.94848999906],[-71.644592,41.94850899906],[-71.644829,41.94853199906],[-71.644969,41.94854199906],[-71.644987,41.94860299906],[-71.645065,41.94860299906],[-71.6451,41.94874499906],[-71.645113,41.94881999906],[-71.645099,41.94902099906],[-71.645103,41.94921699906],[-71.645089,41.94924099906],[-71.645017,41.94926199906],[-71.645031,41.94932799906],[-71.645028,41.94938899906],[-71.645004,41.94946899906],[-71.644905,41.94963999906],[-71.644897,41.94975299906],[-71.644883,41.94982799906],[-71.644827,41.94994399906],[-71.644822,41.95001099906],[-71.644844,41.95071499906],[-71.64483,41.95084699906],[-71.644808,41.95090599906],[-71.644759,41.95095399906],[-71.644651,41.95099899906],[-71.644593,41.95103799906],[-71.644465,41.95110099906],[-71.644188,41.95126499906],[-71.644144,41.95131899906],[-71.644084,41.95142699906],[-71.644047,41.95147999906],[-71.644022,41.95153899906],[-71.644012,41.95159299906],[-71.644012,41.95165899906],[-71.64402,41.95173199906],[-71.644052,41.95179299906],[-71.644125,41.95181199906],[-71.644375,41.95184099906],[-71.644452,41.95185899906],[-71.644533,41.95192099906],[-71.644667,41.95199899906],[-71.644734,41.95202699906],[-71.644908,41.95203899906],[-71.645024,41.95203899906],[-71.645107,41.95202999906],[-71.645185,41.95200599906],[-71.645318,41.95194299906],[-71.645402,41.95191499906],[-71.645475,41.95190299906],[-71.645599,41.95190599906],[-71.645692,41.95191499906],[-71.645761,41.95195599906],[-71.645856,41.95197999906],[-71.645922,41.95202099906],[-71.645968,41.95206999906],[-71.646001,41.95215299906],[-71.646035,41.95220299906],[-71.646096,41.95227899906],[-71.646118,41.95239499906],[-71.646127,41.95254599906],[-71.646121,41.95268999906],[-71.646111,41.95277099906],[-71.646082,41.95281099906],[-71.646004,41.95284899906],[-71.645806,41.95289199906],[-71.645558,41.95289599906],[-71.645486,41.95292699906],[-71.64529,41.95297299906],[-71.645295,41.95305399906],[-71.645321,41.95311999906],[-71.64533,41.95324999906],[-71.645341,41.95331999906],[-71.645377,41.95338099906],[-71.645474,41.95342599906],[-71.645553,41.95344999906],[-71.645619,41.95344399906],[-71.645681,41.95339699906],[-71.645749,41.95335399906],[-71.645886,41.95328999906],[-71.645954,41.95326499906],[-71.64612,41.95322699906],[-71.646198,41.95319799906],[-71.646348,41.95316699906],[-71.646422,41.95316199906],[-71.646503,41.95316199906],[-71.64658,41.95318199906],[-71.646654,41.95321599906],[-71.64672,41.95325499906],[-71.646823,41.95329599906],[-71.646924,41.95331499906],[-71.647013,41.95331699906],[-71.647107,41.95330699906],[-71.647181,41.95329899906],[-71.647251,41.95332299906],[-71.647431,41.95339699906],[-71.647475,41.95345799906],[-71.647508,41.95351699906],[-71.647505,41.95357599906],[-71.647349,41.95358899906],[-71.647238,41.95361299906],[-71.647184,41.95363899906],[-71.647148,41.95368799906],[-71.647011,41.95375999906],[-71.646931,41.95378199906],[-71.646834,41.95377899906],[-71.646749,41.95376899906],[-71.646679,41.95370899906],[-71.6466,41.95368799906],[-71.646537,41.95371199906],[-71.646507,41.95377199906],[-71.64649,41.95385099906],[-71.646489,41.95396399906],[-71.646479,41.95402699906],[-71.646432,41.95408299906],[-71.646419,41.95410899906],[-71.646492,41.95413299906],[-71.646563,41.95411699906],[-71.646713,41.95404599906],[-71.646774,41.95400999906],[-71.646889,41.95391699906],[-71.647017,41.95383299906],[-71.647088,41.95379399906],[-71.647171,41.95376399906],[-71.647243,41.95372999906],[-71.647338,41.95371899906],[-71.647534,41.95372099906],[-71.647612,41.95373499906],[-71.647676,41.95377399906],[-71.647771,41.95379599906],[-71.647844,41.95381899906],[-71.647907,41.95386799906],[-71.647972,41.95390599906],[-71.648004,41.95395599906],[-71.648042,41.95400299906],[-71.648091,41.95404599906],[-71.648157,41.95408799906],[-71.648237,41.95420099906],[-71.648299,41.95424699906],[-71.648331,41.95430099906],[-71.648353,41.95436399906],[-71.648409,41.95441599906],[-71.648432,41.95447299906],[-71.648468,41.95452799906],[-71.648486,41.95458999906],[-71.648486,41.95464799906],[-71.648466,41.95481899906],[-71.648435,41.95485599906],[-71.648387,41.95486399906],[-71.648324,41.95483199906],[-71.64831,41.95462999906],[-71.648281,41.95454699906],[-71.648243,41.95449399906],[-71.64819,41.95444199906],[-71.648162,41.95441999906],[-71.648136,41.95443399906],[-71.648104,41.95451799906],[-71.648126,41.95466999906],[-71.648151,41.95473099906],[-71.648171,41.95481199906],[-71.648196,41.95503999906],[-71.648213,41.95510099906],[-71.648224,41.95518599906],[-71.648252,41.95526899906],[-71.648338,41.95535199906],[-71.648346,41.95544199906],[-71.648362,41.95550299906],[-71.648411,41.95555299906],[-71.648433,41.95560499906],[-71.648486,41.95569899906],[-71.648525,41.95574799906],[-71.648589,41.95580199906],[-71.648625,41.95585099906],[-71.648684,41.95590099906],[-71.648729,41.95591999906],[-71.648794,41.95599899906],[-71.648849,41.95603699906],[-71.648911,41.95609799906],[-71.649025,41.95617799906],[-71.649103,41.95622199906],[-71.649175,41.95627199906],[-71.649227,41.95631599906],[-71.649293,41.95642399906],[-71.649329,41.95647199906],[-71.649363,41.95654099906],[-71.649403,41.95657099906],[-71.649422,41.95655399906],[-71.649468,41.95651899906],[-71.649518,41.95648099906],[-71.649544,41.95646299906],[-71.649605,41.95638699906],[-71.64962,41.95635599906],[-71.649658,41.95630299906],[-71.649727,41.95619199906],[-71.649757,41.95612699906],[-71.649796,41.95606199906],[-71.649823,41.95599999906],[-71.649902,41.95585599906],[-71.649918,41.95582199906],[-71.649971,41.95573799906],[-71.650063,41.95556299906],[-71.650085,41.95553199906],[-71.650131,41.95543699906],[-71.650177,41.95516199906],[-71.650177,41.95509699906],[-71.650185,41.95505899906],[-71.650177,41.95502099906],[-71.650177,41.95498299906],[-71.650131,41.95480699906],[-71.650093,41.95471199906],[-71.65007,41.95462799906],[-71.650032,41.95454799906],[-71.649864,41.95414399906],[-71.649826,41.95402099906],[-71.64979,41.95387999906],[-71.649773,41.95378099906],[-71.649751,41.95370399906],[-71.64975,41.95368599906],[-71.649773,41.95369699906],[-71.649879,41.95381499906],[-71.650078,41.95395699906],[-71.650131,41.95399899906],[-71.650429,41.95420499906],[-71.650696,41.95436899906],[-71.650909,41.95449399906],[-71.651054,41.95457499906],[-71.651146,41.95461999906],[-71.651192,41.95464299906],[-71.651581,41.95481099906],[-71.651649,41.95484499906],[-71.651726,41.95487599906],[-71.652138,41.95508599906],[-71.652328,41.95517699906],[-71.652603,41.95533799906],[-71.65284,41.95481499906],[-71.653421,41.95360899906],[-71.653847,41.95272799906],[-71.654602,41.95117999906],[-71.654961,41.95040899906],[-71.655006,41.95029399906],[-71.655319,41.94965199906],[-71.655403,41.94948199906],[-71.65583,41.94858899906],[-71.656433,41.94737199906],[-71.656616,41.94703299906],[-71.656799,41.94673199906],[-71.657127,41.94622999906],[-71.657562,41.94556399906],[-71.658076,41.94478899906],[-71.658623,41.94396199906],[-71.659248,41.94300499906],[-71.660545,41.94105099906],[-71.661515,41.93960299906],[-71.661865,41.93907899906],[-71.66259,41.93796199906],[-71.663368,41.93677499906],[-71.663742,41.93622199906],[-71.665222,41.93397499906],[-71.666504,41.93204099906],[-71.66668,41.93177099906]]]}}"}, +{"type": "blockgroup", "typeId": 131011, "areaId": 28983, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.751732,41.91322699906],[-71.751717,41.91303599906],[-71.751617,41.91270399906],[-71.75148,41.91247599906],[-71.751358,41.91225799906],[-71.751335,41.91213199906],[-71.751343,41.91192199906],[-71.75135,41.91146099906],[-71.75132,41.91135799906],[-71.751266,41.91123599906],[-71.751068,41.91099499906],[-71.750801,41.91071299906],[-71.750626,41.91040799906],[-71.750496,41.91021299906],[-71.750282,41.90991599906],[-71.750122,41.90965299906],[-71.749931,41.90931299906],[-71.749817,41.90905399906],[-71.74971,41.90874899906],[-71.74955,41.90843599906],[-71.749397,41.90808499906],[-71.749298,41.90787899906],[-71.74913,41.90737499906],[-71.749123,41.90724599906],[-71.74913,41.90716199906],[-71.749161,41.90707399906],[-71.749268,41.90689799906],[-71.749344,41.90673799906],[-71.749352,41.90620399906],[-71.749359,41.90602899906],[-71.749359,41.90588399906],[-71.749344,41.90576899906],[-71.749313,41.90568199906],[-71.749268,41.90561699906],[-71.749153,41.90546799906],[-71.748917,41.90520899906],[-71.74826,41.90450699906],[-71.747833,41.90399199906],[-71.747757,41.90388899906],[-71.747688,41.90380899906],[-71.747566,41.90360299906],[-71.747452,41.90336199906],[-71.74704,41.90236999906],[-71.746918,41.90201999906],[-71.746857,41.90190099906],[-71.74678,41.90179399906],[-71.746675,41.90169399906],[-71.74662,41.90164199906],[-71.745888,41.90111199906],[-71.745781,41.90100499906],[-71.745644,41.90087899906],[-71.745567,41.90075299906],[-71.745483,41.90056599906],[-71.745445,41.90031399906],[-71.745377,41.90006299906],[-71.745255,41.89951699906],[-71.745193,41.89927699906],[-71.745079,41.89870799906],[-71.745026,41.89855599906],[-71.74498,41.89847899906],[-71.744942,41.89840299906],[-71.744888,41.89834599906],[-71.744583,41.89797599906],[-71.744514,41.89786899906],[-71.744469,41.89767799906],[-71.744438,41.89757199906],[-71.744293,41.89651499906],[-71.74408,41.89485899906],[-71.743919,41.89369599906],[-71.743881,41.89347499906],[-71.743858,41.89327199906],[-71.743736,41.89240299906],[-71.743698,41.89217399906],[-71.743675,41.89197199906],[-71.743614,41.89156699906],[-71.743568,41.89136499906],[-71.7435,41.89118599906],[-71.743408,41.89102899906],[-71.742638,41.88982799906],[-71.742599,41.88977799906],[-71.742294,41.88928999906],[-71.741905,41.88869499906],[-71.741386,41.88787799906],[-71.741275,41.88770299906],[-71.741173,41.88754299906],[-71.740913,41.88709999906],[-71.740639,41.88716899906],[-71.73967,41.88749699906],[-71.739563,41.88752399906],[-71.739418,41.88753899906],[-71.739365,41.88753499906],[-71.739319,41.88752699906],[-71.739273,41.88750799906],[-71.739182,41.88745499906],[-71.738586,41.88690899906],[-71.737885,41.88628799906],[-71.737558,41.88596699906],[-71.737244,41.88565799906],[-71.736603,41.88499099906],[-71.736076,41.88442199906],[-71.735785,41.88409699906],[-71.73555,41.88383499906],[-71.734955,41.88319399906],[-71.73456,41.88277099906],[-71.734268,41.88245799906],[-71.733757,41.88188599906],[-71.733459,41.88153499906],[-71.733322,41.88143199906],[-71.733253,41.88138599906],[-71.733063,41.88132099906],[-71.732811,41.88128999906],[-71.731159,41.88116199906],[-71.730904,41.88114199906],[-71.73011,41.88108799906],[-71.729187,41.88101999906],[-71.728424,41.88095099906],[-71.727463,41.88088599906],[-71.72567,41.88074899906],[-71.724747,41.88068399906],[-71.724609,41.88066099906],[-71.724548,41.88064599906],[-71.724495,41.88062699906],[-71.724449,41.88060399906],[-71.72438,41.88054299906],[-71.724342,41.88047799906],[-71.724129,41.87970399906],[-71.723668,41.87810499906],[-71.72364,41.87800599906],[-71.723595,41.87789199906],[-71.723549,41.87781499906],[-71.723488,41.87774299906],[-71.723314,41.87756599906],[-71.722916,41.87716299906],[-71.722557,41.87681199906],[-71.72155,41.87576699906],[-71.720909,41.87512199906],[-71.720436,41.87470999906],[-71.720528,41.87471399906],[-71.720612,41.87470999906],[-71.720695,41.87469499906],[-71.720985,41.87461499906],[-71.721013,41.87460599906],[-71.721316,41.87450999906],[-71.721565,41.87443199906],[-71.721985,41.87427899906],[-71.72216,41.87420999906],[-71.722298,41.87417199906],[-71.72242,41.87415699906],[-71.722549,41.87415299906],[-71.722893,41.87417199906],[-71.722984,41.87418399906],[-71.723076,41.87419099906],[-71.723869,41.87429399906],[-71.724602,41.87441999906],[-71.725281,41.87452299906],[-71.726044,41.87464499906],[-71.72616,41.87466199906],[-71.72747,41.87485899906],[-71.727664,41.87488899906],[-71.728447,41.87501099906],[-71.728638,41.87504999906],[-71.728844,41.87510699906],[-71.729034,41.87519499906],[-71.729134,41.87524799906],[-71.729324,41.87531299906],[-71.7295,41.87535899906],[-71.729691,41.87536599906],[-71.729935,41.87535099906],[-71.730156,41.87531999906],[-71.730492,41.87525199906],[-71.730919,41.87512999906],[-71.73114,41.87507599906],[-71.731422,41.87499999906],[-71.731651,41.87494999906],[-71.731934,41.87490099906],[-71.7323,41.87484699906],[-71.73278,41.87478599906],[-71.733208,41.87469499906],[-71.734277,41.87449099906],[-71.734886,41.87437399906],[-71.735023,41.87435899906],[-71.735092,41.87435499906],[-71.73526,41.87435199906],[-71.735817,41.87437799906],[-71.736126,41.87437099906],[-71.736336,41.87436699906],[-71.737976,41.87426799906],[-71.739487,41.87419499906],[-71.739601,41.87417599906],[-71.739647,41.87416099906],[-71.739693,41.87414199906],[-71.739738,41.87410399906],[-71.739769,41.87405799906],[-71.739792,41.87401199906],[-71.739799,41.87396599906],[-71.739799,41.87391999906],[-71.739807,41.87387499906],[-71.739723,41.87330199906],[-71.739624,41.87270699906],[-71.739555,41.87217699906],[-71.739517,41.87164299906],[-71.739517,41.87150999906],[-71.739532,41.87145599906],[-71.739548,41.87140699906],[-71.739571,41.87123499906],[-71.739632,41.87104799906],[-71.7397,41.87086499906],[-71.739731,41.87071199906],[-71.739761,41.87060199906],[-71.739784,41.87034199906],[-71.739777,41.87011699906],[-71.739769,41.87007899906],[-71.739761,41.86987699906],[-71.739731,41.86949899906],[-71.739731,41.86941899906],[-71.7397,41.86890799906],[-71.739693,41.86862599906],[-71.73967,41.86818299906],[-71.73967,41.86761899906],[-71.739601,41.86685599906],[-71.739594,41.86659599906],[-71.739571,41.86617699906],[-71.739555,41.86556599906],[-71.73951,41.86495599906],[-71.73941,41.86405899906],[-71.739365,41.86350299906],[-71.739326,41.86321999906],[-71.73925,41.86288099906],[-71.739189,41.86266299906],[-71.73909,41.86234999906],[-71.739067,41.86211399906],[-71.739029,41.86157199906],[-71.739014,41.86142299906],[-71.739014,41.86084399906],[-71.738991,41.86061499906],[-71.73896,41.86037799906],[-71.738922,41.86016799906],[-71.738869,41.85991699906],[-71.738396,41.85832599906],[-71.737663,41.85574299906],[-71.737663,41.85572099906],[-71.736755,41.85575899906],[-71.736053,41.85579699906],[-71.734276,41.85588499906],[-71.733284,41.85590399906],[-71.732079,41.85594899906],[-71.731957,41.85595099906],[-71.731778,41.85595299906],[-71.730888,41.85596499906],[-71.729805,41.85597199906],[-71.728706,41.85597199906],[-71.728048,41.85594599906],[-71.727859,41.85593799906],[-71.727097,41.85597999906],[-71.726859,41.85598499906],[-71.726242,41.85599899906],[-71.725227,41.85599899906],[-71.724907,41.85598399906],[-71.724602,41.85594899906],[-71.724457,41.85592299906],[-71.72435,41.85589199906],[-71.720155,41.85594899906],[-71.719948,41.85595099906],[-71.717467,41.85598499906],[-71.716949,41.85599299906],[-71.714587,41.85602399906],[-71.709682,41.85613999906],[-71.704486,41.85625799906],[-71.703254,41.85629099906],[-71.702133,41.85633099906],[-71.699826,41.85635699906],[-71.69723,41.85638599906],[-71.692219,41.85644099906],[-71.69101,41.85645699906],[-71.689758,41.85647099906],[-71.689252,41.85647899906],[-71.688073,41.85649599906],[-71.680817,41.85659499906],[-71.678781,41.85662399906],[-71.676808,41.85664999906],[-71.676804,41.85667699906],[-71.676796,41.85673499906],[-71.676714,41.85733099906],[-71.676709,41.85736499906],[-71.676682,41.85755899906],[-71.676537,41.85843999906],[-71.676216,41.86052299906],[-71.676125,41.86118299906],[-71.676018,41.86191199906],[-71.67589,41.86274499906],[-71.67569,41.86404399906],[-71.67556,41.86498299906],[-71.675301,41.86661499906],[-71.675034,41.86830899906],[-71.67495,41.86889599906],[-71.67482,41.86970499906],[-71.674759,41.87016299906],[-71.67469,41.87059399906],[-71.674675,41.87071399906],[-71.674637,41.87101699906],[-71.674534,41.87164499906],[-71.674469,41.87204399906],[-71.674393,41.87261199906],[-71.674294,41.87328299906],[-71.674229,41.87366899906],[-71.674179,41.87396199906],[-71.674065,41.87472899906],[-71.673958,41.87536999906],[-71.673828,41.87629699906],[-71.673805,41.87650699906],[-71.673759,41.87676599906],[-71.673683,41.87698399906],[-71.67366,41.87702599906],[-71.673645,41.87707499906],[-71.673599,41.87717099906],[-71.67289,41.87832299906],[-71.672546,41.87886399906],[-71.672234,41.87937899906],[-71.670952,41.88138199906],[-71.670898,41.88145799906],[-71.670799,41.88161499906],[-71.670746,41.88172099906],[-71.670708,41.88183199906],[-71.670677,41.88194299906],[-71.670654,41.88209499906],[-71.670647,41.88225199906],[-71.670647,41.88240799906],[-71.670708,41.88313699906],[-71.670731,41.88352999906],[-71.670937,41.88599399906],[-71.670937,41.88611199906],[-71.670944,41.88623399906],[-71.670944,41.88646999906],[-71.670929,41.88674899906],[-71.670876,41.88713099906],[-71.670845,41.88743199906],[-71.670845,41.88750099906],[-71.67083,41.88765299906],[-71.67083,41.88780999906],[-71.670845,41.88806499906],[-71.67086,41.88819099906],[-71.670998,41.88882799906],[-71.671043,41.88905699906],[-71.671143,41.88948399906],[-71.671234,41.88996899906],[-71.671249,41.89016299906],[-71.671249,41.89033899906],[-71.671233,41.89049899906],[-71.671219,41.89057199906],[-71.671173,41.89073199906],[-71.670685,41.89180799906],[-71.670418,41.89240999906],[-71.670067,41.89318099906],[-71.669785,41.89378399906],[-71.669754,41.89387499906],[-71.66967,41.89407699906],[-71.669617,41.89419199906],[-71.669571,41.89430999906],[-71.669449,41.89465699906],[-71.669319,41.89521799906],[-71.669125,41.89594999906],[-71.669014,41.89637399906],[-71.668991,41.89653399906],[-71.668976,41.89658699906],[-71.668968,41.89664099906],[-71.668968,41.89671699906],[-71.668976,41.89681999906],[-71.669006,41.89694999906],[-71.669037,41.89701799906],[-71.66906,41.89708699906],[-71.669464,41.89798699906],[-71.669579,41.89826999906],[-71.669991,41.89921599906],[-71.670082,41.89946399906],[-71.670113,41.89952099906],[-71.670158,41.89963499906],[-71.670181,41.89983699906],[-71.670181,41.90005099906],[-71.670174,41.90011199906],[-71.670174,41.90017299906],[-71.670166,41.90019999906],[-71.670166,41.90023399906],[-71.670143,41.90030699906],[-71.670029,41.90057399906],[-71.669998,41.90063499906],[-71.669777,41.90101199906],[-71.669479,41.90148199906],[-71.66935,41.90170699906],[-71.669106,41.90206899906],[-71.668785,41.90256899906],[-71.668694,41.90270199906],[-71.668404,41.90317199906],[-71.668297,41.90338099906],[-71.668236,41.90348399906],[-71.668182,41.90359099906],[-71.668169,41.90361299906],[-71.668129,41.90368299906],[-71.668102,41.90374099906],[-71.667938,41.90403399906],[-71.667801,41.90429699906],[-71.667763,41.90438499906],[-71.667709,41.90447999906],[-71.667618,41.90467799906],[-71.667519,41.90484999906],[-71.66748,41.90493399906],[-71.667435,41.90501399906],[-71.667358,41.90516999906],[-71.667313,41.90527299906],[-71.667236,41.90547899906],[-71.667168,41.90573899906],[-71.667137,41.90604799906],[-71.667137,41.90636799906],[-71.667152,41.90650599906],[-71.667229,41.90690199906],[-71.66729,41.90715399906],[-71.667313,41.90722699906],[-71.667328,41.90729899906],[-71.667374,41.90745499906],[-71.667404,41.90753899906],[-71.667419,41.90762299906],[-71.667419,41.90766499906],[-71.667427,41.90770699906],[-71.667427,41.90774499906],[-71.667412,41.90780999906],[-71.667412,41.90784099906],[-71.667397,41.90793999906],[-71.667458,41.90799299906],[-71.667503,41.90804699906],[-71.667542,41.90810399906],[-71.667572,41.90816899906],[-71.667595,41.90819899906],[-71.667831,41.90814199906],[-71.668358,41.90799299906],[-71.66864,41.90790899906],[-71.668861,41.90782499906],[-71.669029,41.90775299906],[-71.669075,41.90772599906],[-71.66922,41.90766499906],[-71.669296,41.90762699906],[-71.669403,41.90755499906],[-71.669518,41.90746699906],[-71.669846,41.90719199906],[-71.669945,41.90708899906],[-71.670296,41.90676499906],[-71.670364,41.90669599906],[-71.670662,41.90640599906],[-71.670746,41.90633799906],[-71.671028,41.90608599906],[-71.671333,41.90579999906],[-71.671529,41.90562899906],[-71.671715,41.90546799906],[-71.671951,41.90523899906],[-71.672104,41.90510199906],[-71.672241,41.90496799906],[-71.672274,41.90493999906],[-71.672318,41.90490299906],[-71.672585,41.90465899906],[-71.672935,41.90434999906],[-71.673027,41.90427399906],[-71.673454,41.90386599906],[-71.673714,41.90365199906],[-71.673843,41.90353799906],[-71.67395,41.90345399906],[-71.674011,41.90341599906],[-71.674133,41.90335499906],[-71.674477,41.90316399906],[-71.674599,41.90310299906],[-71.674698,41.90304599906],[-71.674736,41.90301499906],[-71.674828,41.90295799906],[-71.674881,41.90291599906],[-71.675171,41.90274399906],[-71.675293,41.90268299906],[-71.675415,41.90262999906],[-71.675552,41.90257999906],[-71.675949,41.90246599906],[-71.676315,41.90237399906],[-71.676445,41.90234799906],[-71.677109,41.90219099906],[-71.677513,41.90211099906],[-71.677647,41.90208799906],[-71.678284,41.90197799906],[-71.678497,41.90194699906],[-71.678688,41.90192799906],[-71.678848,41.90191999906],[-71.678932,41.90191999906],[-71.679138,41.90191299906],[-71.679237,41.90191299906],[-71.679474,41.90190099906],[-71.67971,41.90187799906],[-71.680138,41.90185199906],[-71.680206,41.90184399906],[-71.68029,41.90183999906],[-71.68055,41.90181399906],[-71.680954,41.90175999906],[-71.681343,41.90172199906],[-71.681915,41.90165299906],[-71.682205,41.90160799906],[-71.682877,41.90146999906],[-71.683182,41.90143599906],[-71.683334,41.90143999906],[-71.683434,41.90145899906],[-71.683556,41.90149299906],[-71.683723,41.90156599906],[-71.683746,41.90157299906],[-71.683884,41.90165699906],[-71.68396,41.90169499906],[-71.684021,41.90173699906],[-71.684029,41.90175999906],[-71.684128,41.90184799906],[-71.684137,41.90186499906],[-71.684296,41.90201599906],[-71.68441,41.90209999906],[-71.684458,41.90211599906],[-71.684482,41.90211999906],[-71.684569,41.90218899906],[-71.684723,41.90228299906],[-71.685143,41.90249999906],[-71.685206,41.90253599906],[-71.685333,41.90260699906],[-71.68544,41.90264099906],[-71.685539,41.90266399906],[-71.685768,41.90266799906],[-71.685944,41.90264099906],[-71.68605,41.90261099906],[-71.686333,41.90254999906],[-71.686531,41.90251499906],[-71.686676,41.90249999906],[-71.687714,41.90245399906],[-71.688217,41.90242399906],[-71.688461,41.90238599906],[-71.688751,41.90233199906],[-71.688873,41.90231299906],[-71.689041,41.90229799906],[-71.689217,41.90228999906],[-71.689529,41.90229399906],[-71.689743,41.90231299906],[-71.690048,41.90237799906],[-71.690201,41.90240499906],[-71.690353,41.90246199906],[-71.690514,41.90251499906],[-71.690842,41.90264499906],[-71.69091,41.90267599906],[-71.691193,41.90278599906],[-71.691467,41.90293499906],[-71.691566,41.90299599906],[-71.69162,41.90303599906],[-71.691673,41.90307599906],[-71.691841,41.90321399906],[-71.691902,41.90328999906],[-71.691948,41.90336999906],[-71.691978,41.90344199906],[-71.691994,41.90352199906],[-71.692032,41.90401799906],[-71.69207,41.90421699906],[-71.692131,41.90444599906],[-71.692207,41.90465899906],[-71.692383,41.90507099906],[-71.692448,41.90515799906],[-71.692481,41.90519699906],[-71.692551,41.90527299906],[-71.692818,41.90552899906],[-71.693092,41.90574599906],[-71.693344,41.90591799906],[-71.693893,41.90628099906],[-71.694054,41.90637999906],[-71.694191,41.90645599906],[-71.694237,41.90648999906],[-71.69445,41.90661999906],[-71.694542,41.90666599906],[-71.694649,41.90670399906],[-71.695053,41.90682199906],[-71.695343,41.90689499906],[-71.695518,41.90692899906],[-71.695824,41.90696299906],[-71.696053,41.90699799906],[-71.696999,41.90704299906],[-71.697159,41.90705899906],[-71.697563,41.90714599906],[-71.697701,41.90718499906],[-71.697853,41.90724599906],[-71.698158,41.90735199906],[-71.698814,41.90755499906],[-71.699211,41.90769999906],[-71.699501,41.90779499906],[-71.700546,41.90818399906],[-71.700874,41.90831399906],[-71.701401,41.90851599906],[-71.702225,41.90883999906],[-71.70298,41.90915699906],[-71.703316,41.90928299906],[-71.704048,41.90951899906],[-71.704468,41.90971799906],[-71.704666,41.90982099906],[-71.70488,41.90994999906],[-71.704987,41.91002699906],[-71.705132,41.91015199906],[-71.705177,41.91021299906],[-71.705276,41.91032799906],[-71.705574,41.91069399906],[-71.705833,41.91107199906],[-71.706329,41.91189199906],[-71.706566,41.91225099906],[-71.706665,41.91243699906],[-71.706772,41.91261699906],[-71.706924,41.91297499906],[-71.707047,41.91324599906],[-71.707153,41.91352499906],[-71.707268,41.91386799906],[-71.707512,41.91479099906],[-71.707611,41.91510799906],[-71.707649,41.91525999906],[-71.707672,41.91539799906],[-71.707718,41.91558499906],[-71.707741,41.91574899906],[-71.707848,41.91636299906],[-71.707901,41.91661499906],[-71.708015,41.91725199906],[-71.708084,41.91758299906],[-71.708099,41.91768299906],[-71.708153,41.91789199906],[-71.708191,41.91799499906],[-71.708344,41.91819799906],[-71.708481,41.91831199906],[-71.708717,41.91852599906],[-71.708839,41.91862099906],[-71.708916,41.91868999906],[-71.709137,41.91884999906],[-71.70916,41.91887699906],[-71.709259,41.91896099906],[-71.709396,41.91902499906],[-71.710091,41.91927299906],[-71.710167,41.91930399906],[-71.710762,41.91952499906],[-71.712364,41.92011599906],[-71.713127,41.92040299906],[-71.713417,41.92050899906],[-71.713537,41.92055699906],[-71.713753,41.92063099906],[-71.713951,41.92069199906],[-71.714211,41.92076499906],[-71.714439,41.92081499906],[-71.714447,41.92090999906],[-71.714478,41.92103199906],[-71.71479,41.92186699906],[-71.714874,41.92204999906],[-71.714935,41.92216099906],[-71.715034,41.92228299906],[-71.715179,41.92243999906],[-71.715378,41.92266099906],[-71.715523,41.92283999906],[-71.715637,41.92298899906],[-71.715744,41.92316799906],[-71.715858,41.92337399906],[-71.715981,41.92356099906],[-71.716118,41.92379799906],[-71.716469,41.92433899906],[-71.716812,41.92491399906],[-71.716858,41.92499199906],[-71.716942,41.92509799906],[-71.717049,41.92521299906],[-71.717171,41.92533099906],[-71.717392,41.92549899906],[-71.717491,41.92555599906],[-71.717674,41.92564399906],[-71.717789,41.92568599906],[-71.717856,41.92570599906],[-71.717903,41.92571999906],[-71.718002,41.92574299906],[-71.718132,41.92576599906],[-71.718269,41.92577699906],[-71.718315,41.92578499906],[-71.718529,41.92580799906],[-71.718697,41.92584199906],[-71.718811,41.92587299906],[-71.718895,41.92591099906],[-71.718964,41.92596799906],[-71.719002,41.92603699906],[-71.719025,41.92609799906],[-71.718957,41.92609199906],[-71.715997,41.92733499906],[-71.714224,41.92770199906],[-71.713293,41.92796899906],[-71.710337,41.92960799906],[-71.709238,41.93072499906],[-71.714492,41.93069899906],[-71.717817,41.93060499906],[-71.717893,41.93047199906],[-71.721038,41.93035599906],[-71.722423,41.93030399906],[-71.725744,41.93018099906],[-71.728426,41.93007999906],[-71.728548,41.93007899906],[-71.736149,41.92989299906],[-71.741905,41.92975199906],[-71.74189,41.92952699906],[-71.741829,41.92927899906],[-71.741829,41.92913799906],[-71.741821,41.92908899906],[-71.741821,41.92853899906],[-71.741814,41.92845499906],[-71.741814,41.92837499906],[-71.741806,41.92828399906],[-71.741791,41.92818799906],[-71.741783,41.92809699906],[-71.74176,41.92800499906],[-71.741745,41.92790999906],[-71.741714,41.92781799906],[-71.741684,41.92774599906],[-71.741554,41.92748299906],[-71.741508,41.92736799906],[-71.741379,41.92707799906],[-71.741295,41.92690299906],[-71.741257,41.92681099906],[-71.741211,41.92672299906],[-71.741142,41.92660899906],[-71.74086,41.92620099906],[-71.740181,41.92535799906],[-71.739868,41.92494999906],[-71.739861,41.92494199906],[-71.739563,41.92457199906],[-71.739532,41.92454099906],[-71.739395,41.92433899906],[-71.73938,41.92430499906],[-71.739357,41.92427099906],[-71.739037,41.92370599906],[-71.738777,41.92326699906],[-71.73851,41.92283199906],[-71.738365,41.92256499906],[-71.738083,41.92209599906],[-71.73806,41.92204999906],[-71.737976,41.92192799906],[-71.737961,41.92189799906],[-71.737839,41.92178699906],[-71.737679,41.92167699906],[-71.73764,41.92164599906],[-71.737595,41.92161899906],[-71.737511,41.92155099906],[-71.737434,41.92145899906],[-71.737404,41.92139099906],[-71.737381,41.92135599906],[-71.737274,41.92105099906],[-71.737587,41.92103199906],[-71.737706,41.92102899906],[-71.737885,41.92102399906],[-71.737938,41.92102499906],[-71.738182,41.92103199906],[-71.738281,41.92103599906],[-71.738701,41.92106999906],[-71.739136,41.92112699906],[-71.739693,41.92122699906],[-71.741272,41.92156599906],[-71.74157,41.92161899906],[-71.741867,41.92166099906],[-71.742012,41.92167699906],[-71.742157,41.92168799906],[-71.742409,41.92169599906],[-71.742691,41.92169599906],[-71.742989,41.92168399906],[-71.743141,41.92166899906],[-71.743393,41.92163199906],[-71.743431,41.92162699906],[-71.743553,41.92160399906],[-71.743797,41.92154699906],[-71.744217,41.92146699906],[-71.745491,41.92119199906],[-71.746124,41.92105899906],[-71.746574,41.92095899906],[-71.746902,41.92090199906],[-71.747261,41.92084499906],[-71.749519,41.92050899906],[-71.750748,41.92033399906],[-71.750679,41.91970799906],[-71.75061,41.91945999906],[-71.750587,41.91929999906],[-71.750576,41.91924299906],[-71.750473,41.91870099906],[-71.750465,41.91853299906],[-71.750404,41.91833099906],[-71.75032,41.91816699906],[-71.750214,41.91800299906],[-71.750153,41.91786999906],[-71.75013,41.91770599906],[-71.750107,41.91747999906],[-71.750038,41.91680499906],[-71.750008,41.91659899906],[-71.750053,41.91632499906],[-71.750137,41.91600799906],[-71.750191,41.91573699906],[-71.750206,41.91559599906],[-71.750206,41.91542399906],[-71.7502,41.91532399906],[-71.750198,41.91529799906],[-71.750198,41.91518399906],[-71.750252,41.91509199906],[-71.750351,41.91501199906],[-71.750534,41.91494799906],[-71.750984,41.91485599906],[-71.75116,41.91480999906],[-71.751358,41.91469599906],[-71.751465,41.91460799906],[-71.751541,41.91451599906],[-71.751686,41.91426499906],[-71.751709,41.91417699906],[-71.751732,41.91322699906]]]}}"}, +{"type": "blockgroup", "typeId": 131012, "areaId": 28984, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.797778,41.92864499906],[-71.797732,41.92759199906],[-71.797726,41.92744599906],[-71.797547,41.92337799906],[-71.797355,41.91744499906],[-71.7973,41.91691499906],[-71.797299,41.91689099906],[-71.797265,41.91632999906],[-71.797262,41.91624699906],[-71.797112,41.91241799906],[-71.797105,41.91223099906],[-71.7969,41.90689699906],[-71.796711,41.90041599906],[-71.796698,41.89992099906],[-71.796683,41.89937699906],[-71.796573,41.89719499906],[-71.796555,41.89706599906],[-71.796563,41.89696699906],[-71.796522,41.89528799906],[-71.796434,41.89171999906],[-71.795956,41.88062199906],[-71.795863,41.87768799906],[-71.795744,41.87509699906],[-71.795404,41.86810899906],[-71.795356,41.86712599906],[-71.795286,41.86571299906],[-71.794966,41.85997199906],[-71.794941,41.85947499906],[-71.794906,41.85880499906],[-71.79468,41.85440899906],[-71.794496,41.85441099906],[-71.787391,41.85451299906],[-71.771376,41.85478299906],[-71.769958,41.85480599906],[-71.768763,41.85482699906],[-71.765988,41.85487399906],[-71.764137,41.85491799906],[-71.761118,41.85498999906],[-71.758215,41.85509299906],[-71.751348,41.85525999906],[-71.749488,41.85524399906],[-71.747668,41.85527899906],[-71.747483,41.85523599906],[-71.7472,41.85525499906],[-71.74659,41.85527399906],[-71.745811,41.85531999906],[-71.745458,41.85533799906],[-71.744484,41.85538899906],[-71.744026,41.85540399906],[-71.741852,41.85550299906],[-71.741066,41.85554899906],[-71.740379,41.85557899906],[-71.739138,41.85563999906],[-71.739059,41.85564399906],[-71.738701,41.85567099906],[-71.738327,41.85568199906],[-71.737663,41.85572099906],[-71.737663,41.85574299906],[-71.738396,41.85832599906],[-71.738869,41.85991699906],[-71.738922,41.86016799906],[-71.73896,41.86037799906],[-71.738991,41.86061499906],[-71.739014,41.86084399906],[-71.739014,41.86142299906],[-71.739029,41.86157199906],[-71.739067,41.86211399906],[-71.73909,41.86234999906],[-71.739189,41.86266299906],[-71.73925,41.86288099906],[-71.739326,41.86321999906],[-71.739365,41.86350299906],[-71.73941,41.86405899906],[-71.73951,41.86495599906],[-71.739555,41.86556599906],[-71.739571,41.86617699906],[-71.739594,41.86659599906],[-71.739601,41.86685599906],[-71.73967,41.86761899906],[-71.73967,41.86818299906],[-71.739693,41.86862599906],[-71.7397,41.86890799906],[-71.739731,41.86941899906],[-71.739731,41.86949899906],[-71.739761,41.86987699906],[-71.739769,41.87007899906],[-71.739777,41.87011699906],[-71.739784,41.87034199906],[-71.739761,41.87060199906],[-71.739731,41.87071199906],[-71.7397,41.87086499906],[-71.739632,41.87104799906],[-71.739571,41.87123499906],[-71.739548,41.87140699906],[-71.739532,41.87145599906],[-71.739517,41.87150999906],[-71.739517,41.87164299906],[-71.739555,41.87217699906],[-71.739624,41.87270699906],[-71.739723,41.87330199906],[-71.739807,41.87387499906],[-71.739799,41.87391999906],[-71.739799,41.87396599906],[-71.739792,41.87401199906],[-71.739769,41.87405799906],[-71.739738,41.87410399906],[-71.739693,41.87414199906],[-71.739647,41.87416099906],[-71.739601,41.87417599906],[-71.739487,41.87419499906],[-71.737976,41.87426799906],[-71.736336,41.87436699906],[-71.736126,41.87437099906],[-71.735817,41.87437799906],[-71.73526,41.87435199906],[-71.735092,41.87435499906],[-71.735023,41.87435899906],[-71.734886,41.87437399906],[-71.734277,41.87449099906],[-71.733208,41.87469499906],[-71.73278,41.87478599906],[-71.7323,41.87484699906],[-71.731934,41.87490099906],[-71.731651,41.87494999906],[-71.731422,41.87499999906],[-71.73114,41.87507599906],[-71.730919,41.87512999906],[-71.730492,41.87525199906],[-71.730156,41.87531999906],[-71.729935,41.87535099906],[-71.729691,41.87536599906],[-71.7295,41.87535899906],[-71.729324,41.87531299906],[-71.729134,41.87524799906],[-71.729034,41.87519499906],[-71.728844,41.87510699906],[-71.728638,41.87504999906],[-71.728447,41.87501099906],[-71.727664,41.87488899906],[-71.72747,41.87485899906],[-71.72616,41.87466199906],[-71.726044,41.87464499906],[-71.725281,41.87452299906],[-71.724602,41.87441999906],[-71.723869,41.87429399906],[-71.723076,41.87419099906],[-71.722984,41.87418399906],[-71.722893,41.87417199906],[-71.722549,41.87415299906],[-71.72242,41.87415699906],[-71.722298,41.87417199906],[-71.72216,41.87420999906],[-71.721985,41.87427899906],[-71.721565,41.87443199906],[-71.721316,41.87450999906],[-71.721013,41.87460599906],[-71.720985,41.87461499906],[-71.720695,41.87469499906],[-71.720612,41.87470999906],[-71.720528,41.87471399906],[-71.720436,41.87470999906],[-71.720909,41.87512199906],[-71.72155,41.87576699906],[-71.722557,41.87681199906],[-71.722916,41.87716299906],[-71.723314,41.87756599906],[-71.723488,41.87774299906],[-71.723549,41.87781499906],[-71.723595,41.87789199906],[-71.72364,41.87800599906],[-71.723668,41.87810499906],[-71.724129,41.87970399906],[-71.724342,41.88047799906],[-71.72438,41.88054299906],[-71.724449,41.88060399906],[-71.724495,41.88062699906],[-71.724548,41.88064599906],[-71.724609,41.88066099906],[-71.724747,41.88068399906],[-71.72567,41.88074899906],[-71.727463,41.88088599906],[-71.728424,41.88095099906],[-71.729187,41.88101999906],[-71.73011,41.88108799906],[-71.730904,41.88114199906],[-71.731159,41.88116199906],[-71.732811,41.88128999906],[-71.733063,41.88132099906],[-71.733253,41.88138599906],[-71.733322,41.88143199906],[-71.733459,41.88153499906],[-71.733757,41.88188599906],[-71.734268,41.88245799906],[-71.73456,41.88277099906],[-71.734955,41.88319399906],[-71.73555,41.88383499906],[-71.735785,41.88409699906],[-71.736076,41.88442199906],[-71.736603,41.88499099906],[-71.737244,41.88565799906],[-71.737558,41.88596699906],[-71.737885,41.88628799906],[-71.738586,41.88690899906],[-71.739182,41.88745499906],[-71.739273,41.88750799906],[-71.739319,41.88752699906],[-71.739365,41.88753499906],[-71.739418,41.88753899906],[-71.739563,41.88752399906],[-71.73967,41.88749699906],[-71.740639,41.88716899906],[-71.740913,41.88709999906],[-71.741173,41.88754299906],[-71.741275,41.88770299906],[-71.741386,41.88787799906],[-71.741905,41.88869499906],[-71.742294,41.88928999906],[-71.742599,41.88977799906],[-71.742638,41.88982799906],[-71.743408,41.89102899906],[-71.7435,41.89118599906],[-71.743568,41.89136499906],[-71.743614,41.89156699906],[-71.743675,41.89197199906],[-71.743698,41.89217399906],[-71.743736,41.89240299906],[-71.743858,41.89327199906],[-71.743881,41.89347499906],[-71.743919,41.89369599906],[-71.74408,41.89485899906],[-71.744293,41.89651499906],[-71.744438,41.89757199906],[-71.744469,41.89767799906],[-71.744514,41.89786899906],[-71.744583,41.89797599906],[-71.744888,41.89834599906],[-71.744942,41.89840299906],[-71.74498,41.89847899906],[-71.745026,41.89855599906],[-71.745079,41.89870799906],[-71.745193,41.89927699906],[-71.745255,41.89951699906],[-71.745377,41.90006299906],[-71.745445,41.90031399906],[-71.745483,41.90056599906],[-71.745567,41.90075299906],[-71.745644,41.90087899906],[-71.745781,41.90100499906],[-71.745888,41.90111199906],[-71.74662,41.90164199906],[-71.746675,41.90169399906],[-71.74678,41.90179399906],[-71.746857,41.90190099906],[-71.746918,41.90201999906],[-71.74704,41.90236999906],[-71.747452,41.90336199906],[-71.747566,41.90360299906],[-71.747688,41.90380899906],[-71.747757,41.90388899906],[-71.747833,41.90399199906],[-71.74826,41.90450699906],[-71.748917,41.90520899906],[-71.749153,41.90546799906],[-71.749268,41.90561699906],[-71.749313,41.90568199906],[-71.749344,41.90576899906],[-71.749359,41.90588399906],[-71.749359,41.90602899906],[-71.749352,41.90620399906],[-71.749344,41.90673799906],[-71.749268,41.90689799906],[-71.749161,41.90707399906],[-71.74913,41.90716199906],[-71.749123,41.90724599906],[-71.74913,41.90737499906],[-71.749298,41.90787899906],[-71.749397,41.90808499906],[-71.74955,41.90843599906],[-71.74971,41.90874899906],[-71.749817,41.90905399906],[-71.749931,41.90931299906],[-71.750122,41.90965299906],[-71.750282,41.90991599906],[-71.750496,41.91021299906],[-71.750626,41.91040799906],[-71.750801,41.91071299906],[-71.751068,41.91099499906],[-71.751266,41.91123599906],[-71.75132,41.91135799906],[-71.75135,41.91146099906],[-71.751343,41.91192199906],[-71.751335,41.91213199906],[-71.751358,41.91225799906],[-71.75148,41.91247599906],[-71.751617,41.91270399906],[-71.751717,41.91303599906],[-71.751732,41.91322699906],[-71.751709,41.91417699906],[-71.751686,41.91426499906],[-71.751541,41.91451599906],[-71.751465,41.91460799906],[-71.751358,41.91469599906],[-71.75116,41.91480999906],[-71.750984,41.91485599906],[-71.750534,41.91494799906],[-71.750351,41.91501199906],[-71.750252,41.91509199906],[-71.750198,41.91518399906],[-71.750198,41.91529799906],[-71.7502,41.91532399906],[-71.750206,41.91542399906],[-71.750206,41.91559599906],[-71.750191,41.91573699906],[-71.750137,41.91600799906],[-71.750053,41.91632499906],[-71.750008,41.91659899906],[-71.750038,41.91680499906],[-71.750107,41.91747999906],[-71.75013,41.91770599906],[-71.750153,41.91786999906],[-71.750214,41.91800299906],[-71.75032,41.91816699906],[-71.750404,41.91833099906],[-71.750465,41.91853299906],[-71.750473,41.91870099906],[-71.750576,41.91924299906],[-71.750587,41.91929999906],[-71.75061,41.91945999906],[-71.750679,41.91970799906],[-71.750748,41.92033399906],[-71.749519,41.92050899906],[-71.747261,41.92084499906],[-71.746902,41.92090199906],[-71.746574,41.92095899906],[-71.746124,41.92105899906],[-71.745491,41.92119199906],[-71.744217,41.92146699906],[-71.743797,41.92154699906],[-71.743553,41.92160399906],[-71.743431,41.92162699906],[-71.743393,41.92163199906],[-71.743141,41.92166899906],[-71.742989,41.92168399906],[-71.742691,41.92169599906],[-71.742409,41.92169599906],[-71.742157,41.92168799906],[-71.742012,41.92167699906],[-71.741867,41.92166099906],[-71.74157,41.92161899906],[-71.741272,41.92156599906],[-71.739693,41.92122699906],[-71.739136,41.92112699906],[-71.738701,41.92106999906],[-71.738281,41.92103599906],[-71.738182,41.92103199906],[-71.737938,41.92102499906],[-71.737885,41.92102399906],[-71.737706,41.92102899906],[-71.737587,41.92103199906],[-71.737274,41.92105099906],[-71.737381,41.92135599906],[-71.737404,41.92139099906],[-71.737434,41.92145899906],[-71.737511,41.92155099906],[-71.737595,41.92161899906],[-71.73764,41.92164599906],[-71.737679,41.92167699906],[-71.737839,41.92178699906],[-71.737961,41.92189799906],[-71.737976,41.92192799906],[-71.73806,41.92204999906],[-71.738083,41.92209599906],[-71.738365,41.92256499906],[-71.73851,41.92283199906],[-71.738777,41.92326699906],[-71.739037,41.92370599906],[-71.739357,41.92427099906],[-71.73938,41.92430499906],[-71.739395,41.92433899906],[-71.739532,41.92454099906],[-71.739563,41.92457199906],[-71.739861,41.92494199906],[-71.739868,41.92494999906],[-71.740181,41.92535799906],[-71.74086,41.92620099906],[-71.741142,41.92660899906],[-71.741211,41.92672299906],[-71.741257,41.92681099906],[-71.741295,41.92690299906],[-71.741379,41.92707799906],[-71.741508,41.92736799906],[-71.741554,41.92748299906],[-71.741684,41.92774599906],[-71.741714,41.92781799906],[-71.741745,41.92790999906],[-71.74176,41.92800499906],[-71.741783,41.92809699906],[-71.741791,41.92818799906],[-71.741806,41.92828399906],[-71.741814,41.92837499906],[-71.741814,41.92845499906],[-71.741821,41.92853899906],[-71.741821,41.92908899906],[-71.741829,41.92913799906],[-71.741829,41.92927899906],[-71.74189,41.92952699906],[-71.741905,41.92975199906],[-71.742934,41.92974499906],[-71.750958,41.92961299906],[-71.754312,41.92955199906],[-71.758398,41.92946899906],[-71.762631,41.92938199906],[-71.765187,41.92932999906],[-71.765304,41.92932699906],[-71.766447,41.92929499906],[-71.766732,41.92929599906],[-71.76705,41.92927899906],[-71.768074,41.92926399906],[-71.770378,41.92922199906],[-71.770738,41.92921499906],[-71.781247,41.92899399906],[-71.784632,41.92892399906],[-71.785992,41.92889899906],[-71.787094,41.92887499906],[-71.788924,41.92881199906],[-71.791074,41.92878899906],[-71.796301,41.92867699906],[-71.797234,41.92865499906],[-71.797676,41.92864599906],[-71.797778,41.92864499906]]]}}"}, +{"type": "blockgroup", "typeId": 131013, "areaId": 28985, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.719025,41.92609799906],[-71.719002,41.92603699906],[-71.718964,41.92596799906],[-71.718895,41.92591099906],[-71.718811,41.92587299906],[-71.718697,41.92584199906],[-71.718529,41.92580799906],[-71.718315,41.92578499906],[-71.718269,41.92577699906],[-71.718132,41.92576599906],[-71.718002,41.92574299906],[-71.717903,41.92571999906],[-71.717856,41.92570599906],[-71.717789,41.92568599906],[-71.717674,41.92564399906],[-71.717491,41.92555599906],[-71.717392,41.92549899906],[-71.717171,41.92533099906],[-71.717049,41.92521299906],[-71.716942,41.92509799906],[-71.716858,41.92499199906],[-71.716812,41.92491399906],[-71.716469,41.92433899906],[-71.716118,41.92379799906],[-71.715981,41.92356099906],[-71.715858,41.92337399906],[-71.715744,41.92316799906],[-71.715637,41.92298899906],[-71.715523,41.92283999906],[-71.715378,41.92266099906],[-71.715179,41.92243999906],[-71.715034,41.92228299906],[-71.714935,41.92216099906],[-71.714874,41.92204999906],[-71.71479,41.92186699906],[-71.714478,41.92103199906],[-71.714447,41.92090999906],[-71.714439,41.92081499906],[-71.714211,41.92076499906],[-71.713951,41.92069199906],[-71.713753,41.92063099906],[-71.713537,41.92055699906],[-71.713417,41.92050899906],[-71.713127,41.92040299906],[-71.712364,41.92011599906],[-71.710762,41.91952499906],[-71.710167,41.91930399906],[-71.710091,41.91927299906],[-71.709396,41.91902499906],[-71.709259,41.91896099906],[-71.70916,41.91887699906],[-71.709137,41.91884999906],[-71.708916,41.91868999906],[-71.708839,41.91862099906],[-71.708717,41.91852599906],[-71.708481,41.91831199906],[-71.708344,41.91819799906],[-71.708191,41.91799499906],[-71.708153,41.91789199906],[-71.708099,41.91768299906],[-71.708084,41.91758299906],[-71.708015,41.91725199906],[-71.707901,41.91661499906],[-71.707848,41.91636299906],[-71.707741,41.91574899906],[-71.707718,41.91558499906],[-71.707672,41.91539799906],[-71.707649,41.91525999906],[-71.707611,41.91510799906],[-71.707512,41.91479099906],[-71.707268,41.91386799906],[-71.707153,41.91352499906],[-71.707047,41.91324599906],[-71.706924,41.91297499906],[-71.706772,41.91261699906],[-71.706665,41.91243699906],[-71.706566,41.91225099906],[-71.706329,41.91189199906],[-71.705833,41.91107199906],[-71.705574,41.91069399906],[-71.705276,41.91032799906],[-71.705177,41.91021299906],[-71.705132,41.91015199906],[-71.704987,41.91002699906],[-71.70488,41.90994999906],[-71.704666,41.90982099906],[-71.704468,41.90971799906],[-71.704048,41.90951899906],[-71.703316,41.90928299906],[-71.70298,41.90915699906],[-71.702225,41.90883999906],[-71.701401,41.90851599906],[-71.700874,41.90831399906],[-71.700546,41.90818399906],[-71.699501,41.90779499906],[-71.699211,41.90769999906],[-71.698814,41.90755499906],[-71.698158,41.90735199906],[-71.697853,41.90724599906],[-71.697701,41.90718499906],[-71.697563,41.90714599906],[-71.697159,41.90705899906],[-71.696999,41.90704299906],[-71.696053,41.90699799906],[-71.695824,41.90696299906],[-71.695518,41.90692899906],[-71.695343,41.90689499906],[-71.695053,41.90682199906],[-71.694649,41.90670399906],[-71.694542,41.90666599906],[-71.69445,41.90661999906],[-71.694237,41.90648999906],[-71.694191,41.90645599906],[-71.694054,41.90637999906],[-71.693893,41.90628099906],[-71.693344,41.90591799906],[-71.693092,41.90574599906],[-71.692818,41.90552899906],[-71.692551,41.90527299906],[-71.692481,41.90519699906],[-71.692448,41.90515799906],[-71.692383,41.90507099906],[-71.692207,41.90465899906],[-71.692131,41.90444599906],[-71.69207,41.90421699906],[-71.692032,41.90401799906],[-71.691994,41.90352199906],[-71.691978,41.90344199906],[-71.691948,41.90336999906],[-71.691902,41.90328999906],[-71.691841,41.90321399906],[-71.691673,41.90307599906],[-71.69162,41.90303599906],[-71.691566,41.90299599906],[-71.691467,41.90293499906],[-71.691193,41.90278599906],[-71.69091,41.90267599906],[-71.690842,41.90264499906],[-71.690514,41.90251499906],[-71.690353,41.90246199906],[-71.690201,41.90240499906],[-71.690048,41.90237799906],[-71.689743,41.90231299906],[-71.689529,41.90229399906],[-71.689217,41.90228999906],[-71.689041,41.90229799906],[-71.688873,41.90231299906],[-71.688751,41.90233199906],[-71.688461,41.90238599906],[-71.688217,41.90242399906],[-71.687714,41.90245399906],[-71.686676,41.90249999906],[-71.686531,41.90251499906],[-71.686333,41.90254999906],[-71.68605,41.90261099906],[-71.685944,41.90264099906],[-71.685768,41.90266799906],[-71.685539,41.90266399906],[-71.68544,41.90264099906],[-71.685333,41.90260699906],[-71.685206,41.90253599906],[-71.685143,41.90249999906],[-71.684723,41.90228299906],[-71.684569,41.90218899906],[-71.684482,41.90211999906],[-71.684458,41.90211599906],[-71.68441,41.90209999906],[-71.684296,41.90201599906],[-71.684137,41.90186499906],[-71.684128,41.90184799906],[-71.684029,41.90175999906],[-71.684021,41.90173699906],[-71.68396,41.90169499906],[-71.683884,41.90165699906],[-71.683746,41.90157299906],[-71.683723,41.90156599906],[-71.683556,41.90149299906],[-71.683434,41.90145899906],[-71.683334,41.90143999906],[-71.683182,41.90143599906],[-71.682877,41.90146999906],[-71.682205,41.90160799906],[-71.681915,41.90165299906],[-71.681343,41.90172199906],[-71.680954,41.90175999906],[-71.68055,41.90181399906],[-71.68029,41.90183999906],[-71.680206,41.90184399906],[-71.680138,41.90185199906],[-71.67971,41.90187799906],[-71.679474,41.90190099906],[-71.679237,41.90191299906],[-71.679138,41.90191299906],[-71.678932,41.90191999906],[-71.678848,41.90191999906],[-71.678688,41.90192799906],[-71.678497,41.90194699906],[-71.678284,41.90197799906],[-71.677647,41.90208799906],[-71.677513,41.90211099906],[-71.677109,41.90219099906],[-71.676445,41.90234799906],[-71.676315,41.90237399906],[-71.675949,41.90246599906],[-71.675552,41.90257999906],[-71.675415,41.90262999906],[-71.675293,41.90268299906],[-71.675171,41.90274399906],[-71.674881,41.90291599906],[-71.674828,41.90295799906],[-71.674736,41.90301499906],[-71.674698,41.90304599906],[-71.674599,41.90310299906],[-71.674477,41.90316399906],[-71.674133,41.90335499906],[-71.674011,41.90341599906],[-71.67395,41.90345399906],[-71.673843,41.90353799906],[-71.673714,41.90365199906],[-71.673454,41.90386599906],[-71.673027,41.90427399906],[-71.672935,41.90434999906],[-71.672585,41.90465899906],[-71.672318,41.90490299906],[-71.672274,41.90493999906],[-71.672241,41.90496799906],[-71.672104,41.90510199906],[-71.671951,41.90523899906],[-71.671715,41.90546799906],[-71.671529,41.90562899906],[-71.671333,41.90579999906],[-71.671028,41.90608599906],[-71.670746,41.90633799906],[-71.670662,41.90640599906],[-71.670364,41.90669599906],[-71.670296,41.90676499906],[-71.669945,41.90708899906],[-71.669846,41.90719199906],[-71.669518,41.90746699906],[-71.669403,41.90755499906],[-71.669296,41.90762699906],[-71.66922,41.90766499906],[-71.669075,41.90772599906],[-71.669029,41.90775299906],[-71.668861,41.90782499906],[-71.66864,41.90790899906],[-71.668358,41.90799299906],[-71.667831,41.90814199906],[-71.667595,41.90819899906],[-71.667801,41.90877499906],[-71.667839,41.90890099906],[-71.668037,41.90945099906],[-71.668083,41.90959899906],[-71.668137,41.90974799906],[-71.668228,41.91004199906],[-71.668244,41.91008599906],[-71.668274,41.91016799906],[-71.668312,41.91029399906],[-71.66861,41.91113999906],[-71.668785,41.91169399906],[-71.668991,41.91229199906],[-71.668999,41.91233399906],[-71.669014,41.91237599906],[-71.669159,41.91276199906],[-71.66925,41.91294899906],[-71.669365,41.91312799906],[-71.669426,41.91319699906],[-71.669655,41.91342199906],[-71.669792,41.91353999906],[-71.670173,41.91389899906],[-71.670403,41.91411599906],[-71.670547,41.91426499906],[-71.670609,41.91431799906],[-71.670876,41.91458899906],[-71.670952,41.91467699906],[-71.671028,41.91474499906],[-71.671043,41.91476399906],[-71.671303,41.91503099906],[-71.67141,41.91512699906],[-71.671486,41.91517599906],[-71.671478,41.91546199906],[-71.671486,41.91552699906],[-71.671486,41.91558799906],[-71.671501,41.91565299906],[-71.671524,41.91583299906],[-71.671539,41.91588599906],[-71.671555,41.91599299906],[-71.671579,41.91607299906],[-71.671608,41.91621399906],[-71.671623,41.91625999906],[-71.671631,41.91630599906],[-71.671669,41.91640099906],[-71.671684,41.91645099906],[-71.671707,41.91649599906],[-71.671829,41.91682099906],[-71.671867,41.91690399906],[-71.671898,41.91698799906],[-71.671913,41.91704599906],[-71.671936,41.91710299906],[-71.671906,41.91715199906],[-71.67186,41.91725199906],[-71.671707,41.91749199906],[-71.671646,41.91760599906],[-71.671371,41.91802599906],[-71.671326,41.91810999906],[-71.671272,41.91819399906],[-71.671227,41.91828199906],[-71.671204,41.91833899906],[-71.671173,41.91839599906],[-71.671127,41.91850699906],[-71.671097,41.91855599906],[-71.671051,41.91866699906],[-71.671036,41.91872799906],[-71.671013,41.91878499906],[-71.671005,41.91883099906],[-71.67099,41.91887999906],[-71.670982,41.91892999906],[-71.670952,41.91902499906],[-71.670929,41.91912099906],[-71.670898,41.91921999906],[-71.670837,41.91949799906],[-71.670776,41.91989099906],[-71.670731,41.92009399906],[-71.670715,41.92018899906],[-71.670692,41.92028399906],[-71.670479,41.92143599906],[-71.670456,41.92151599906],[-71.67038,41.92195099906],[-71.670326,41.92221099906],[-71.670311,41.92231399906],[-71.67028,41.92246999906],[-71.670219,41.92285899906],[-71.670189,41.92299699906],[-71.670166,41.92315299906],[-71.670113,41.92344299906],[-71.670105,41.92346199906],[-71.669968,41.92424799906],[-71.66993,41.92444299906],[-71.669922,41.92448399906],[-71.669876,41.92469399906],[-71.669846,41.92480099906],[-71.669769,41.92523199906],[-71.669738,41.92538199906],[-71.669655,41.92578899906],[-71.669616,41.92594799906],[-71.669579,41.92609799906],[-71.66951,41.92642599906],[-71.669411,41.92687999906],[-71.669373,41.92702899906],[-71.669189,41.92759699906],[-71.669022,41.92801699906],[-71.668808,41.92845899906],[-71.668648,41.92875299906],[-71.668396,41.92917299906],[-71.668304,41.92930199906],[-71.668007,41.92976799906],[-71.667236,41.93093499906],[-71.66687,41.93147299906],[-71.666817,41.93156099906],[-71.66675,41.93166399906],[-71.66668,41.93177099906],[-71.669466,41.93172199906],[-71.672438,41.93167399906],[-71.67473,41.93163399906],[-71.675709,41.93160899906],[-71.67626,41.93158999906],[-71.677423,41.93154999906],[-71.678472,41.93151599906],[-71.681182,41.93142799906],[-71.681841,41.93140699906],[-71.685021,41.93130599906],[-71.689924,41.93114699906],[-71.691531,41.93109599906],[-71.698001,41.93098599906],[-71.700481,41.93092299906],[-71.707337,41.93074899906],[-71.707942,41.93073399906],[-71.709238,41.93072499906],[-71.710337,41.92960799906],[-71.713293,41.92796899906],[-71.714224,41.92770199906],[-71.715997,41.92733499906],[-71.718957,41.92609199906],[-71.719025,41.92609799906]]]}}"}, +{"type": "blockgroup", "typeId": 131021, "areaId": 28986, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.676808,41.85664999906],[-71.674644,41.85669999906],[-71.673427,41.85672699906],[-71.671927,41.85676099906],[-71.670326,41.85679599906],[-71.67003,41.85680199906],[-71.664332,41.85687599906],[-71.65938,41.85687099906],[-71.658733,41.85687299906],[-71.650725,41.85703799906],[-71.649973,41.85704999906],[-71.649831,41.85705199906],[-71.649029,41.85706899906],[-71.648798,41.85707699906],[-71.64596,41.85713599906],[-71.640467,41.85726399906],[-71.638753,41.85729299906],[-71.631734,41.85741299906],[-71.628334,41.85745799906],[-71.625955,41.85748999906],[-71.625777,41.85749099906],[-71.62466,41.85750299906],[-71.623613,41.85751399906],[-71.623563,41.85751499906],[-71.623186,41.85751799906],[-71.623147,41.85751899906],[-71.621412,41.85753699906],[-71.61416,41.85773699906],[-71.613133,41.85776599906],[-71.611174,41.85781999906],[-71.61075,41.85783199906],[-71.609414,41.85787099906],[-71.605259,41.85799099906],[-71.604992,41.85799899906],[-71.604996,41.85803999906],[-71.605011,41.85825299906],[-71.604996,41.85845199906],[-71.604912,41.85899399906],[-71.604782,41.85967299906],[-71.604691,41.85998899906],[-71.60449,41.86053699906],[-71.604401,41.86080599906],[-71.604279,41.86111099906],[-71.604179,41.86130099906],[-71.604126,41.86141599906],[-71.603836,41.86190399906],[-71.603676,41.86214399906],[-71.603607,41.86227399906],[-71.603539,41.86242699906],[-71.603493,41.86256399906],[-71.603477,41.86272399906],[-71.6035,41.86307099906],[-71.603539,41.86323499906],[-71.603622,41.86344899906],[-71.603699,41.86357499906],[-71.603821,41.86372799906],[-71.603973,41.86388399906],[-71.604172,41.86407099906],[-71.60437,41.86426499906],[-71.604416,41.86431499906],[-71.604729,41.86460499906],[-71.605392,41.86526499906],[-71.605858,41.86571099906],[-71.606125,41.86599299906],[-71.606156,41.86603499906],[-71.606369,41.86632499906],[-71.606476,41.86654299906],[-71.606537,41.86669899906],[-71.60659,41.86685199906],[-71.606667,41.86710399906],[-71.606789,41.86756899906],[-71.606827,41.86777499906],[-71.60685,41.86794999906],[-71.606857,41.86815599906],[-71.60685,41.86884699906],[-71.606843,41.86894799906],[-71.606827,41.86923599906],[-71.606789,41.86943099906],[-71.606728,41.86965199906],[-71.606644,41.86984299906],[-71.606499,41.87008999906],[-71.606354,41.87030399906],[-71.606239,41.87043799906],[-71.606163,41.87053299906],[-71.605988,41.87070499906],[-71.605057,41.87153599906],[-71.604401,41.87213899906],[-71.604004,41.87251999906],[-71.603683,41.87284899906],[-71.603111,41.87341699906],[-71.602776,41.87373699906],[-71.602587,41.87393599906],[-71.602403,41.87413099906],[-71.602318,41.87422199906],[-71.60173,41.87483199906],[-71.601509,41.87510299906],[-71.601341,41.87535899906],[-71.601234,41.87556499906],[-71.601143,41.87579699906],[-71.601074,41.87601899906],[-71.601028,41.87623199906],[-71.601006,41.87638499906],[-71.600975,41.87666699906],[-71.600975,41.87689599906],[-71.600983,41.87704799906],[-71.60112,41.87779999906],[-71.601166,41.87800599906],[-71.601173,41.87810099906],[-71.601257,41.87850199906],[-71.601287,41.87863299906],[-71.601341,41.87886399906],[-71.601395,41.87916599906],[-71.601517,41.87972999906],[-71.601608,41.88018399906],[-71.60173,41.88064199906],[-71.60183,41.88099299906],[-71.602028,41.88175199906],[-71.602219,41.88235099906],[-71.602264,41.88257599906],[-71.602257,41.88274799906],[-71.602226,41.88293499906],[-71.60218,41.88309099906],[-71.602112,41.88321699906],[-71.602013,41.88336199906],[-71.601868,41.88350699906],[-71.601654,41.88367499906],[-71.601395,41.88383099906],[-71.600868,41.88412899906],[-71.600647,41.88424299906],[-71.600311,41.88438399906],[-71.600105,41.88446399906],[-71.600065,41.88447299906],[-71.600156,41.88451199906],[-71.600233,41.88455399906],[-71.600208,41.88462199906],[-71.600161,41.88466399906],[-71.60014,41.88472499906],[-71.600112,41.88483799906],[-71.600172,41.88486799906],[-71.600199,41.88494299906],[-71.600193,41.88496999906],[-71.600216,41.88498099906],[-71.600352,41.88502099906],[-71.600524,41.88503799906],[-71.600621,41.88505699906],[-71.600705,41.88505999906],[-71.600717,41.88503399906],[-71.600721,41.88491699906],[-71.600782,41.88488099906],[-71.600853,41.88485299906],[-71.600929,41.88484099906],[-71.601125,41.88484699906],[-71.601195,41.88486299906],[-71.60132,41.88488399906],[-71.601402,41.88488999906],[-71.601441,41.88489299906],[-71.601511,41.88490999906],[-71.60169,41.88500699906],[-71.601719,41.88506399906],[-71.601677,41.88507199906],[-71.601593,41.88507699906],[-71.601562,41.88510599906],[-71.601579,41.88515499906],[-71.601715,41.88519799906],[-71.601784,41.88523099906],[-71.601876,41.88524499906],[-71.601998,41.88527699906],[-71.602108,41.88532899906],[-71.602187,41.88535199906],[-71.602509,41.88536799906],[-71.602602,41.88540499906],[-71.602894,41.88549199906],[-71.603009,41.88556199906],[-71.603036,41.88561399906],[-71.603051,41.88567499906],[-71.603048,41.88575599906],[-71.603093,41.88579999906],[-71.603193,41.88591899906],[-71.603371,41.88597999906],[-71.603426,41.88601099906],[-71.603397,41.88606099906],[-71.603516,41.88606699906],[-71.603574,41.88610299906],[-71.603613,41.88614799906],[-71.603621,41.88621199906],[-71.603767,41.88631599906],[-71.603841,41.88633299906],[-71.60399,41.88638199906],[-71.604181,41.88647799906],[-71.604214,41.88652899906],[-71.604326,41.88653699906],[-71.604424,41.88655099906],[-71.604596,41.88663199906],[-71.604433,41.88663399906],[-71.604145,41.88672799906],[-71.603909,41.88686099906],[-71.60396,41.88694399906],[-71.604252,41.88724799906],[-71.604449,41.88742699906],[-71.604747,41.88751399906],[-71.604818,41.88752199906],[-71.604857,41.88755699906],[-71.604907,41.88765299906],[-71.604905,41.88772199906],[-71.604969,41.88787899906],[-71.604991,41.88790299906],[-71.605105,41.88792499906],[-71.605178,41.88795799906],[-71.60526,41.88800499906],[-71.605308,41.88805899906],[-71.605384,41.88817599906],[-71.605487,41.88814099906],[-71.605557,41.88832899906],[-71.605614,41.88837499906],[-71.605663,41.88842099906],[-71.605725,41.88845199906],[-71.605803,41.88848499906],[-71.60586,41.88852899906],[-71.605906,41.88858799906],[-71.605948,41.88863299906],[-71.606007,41.88868699906],[-71.606011,41.88874899906],[-71.606039,41.88880599906],[-71.606091,41.88884499906],[-71.606169,41.88887399906],[-71.606249,41.88888999906],[-71.606244,41.88900099906],[-71.606324,41.88905899906],[-71.606383,41.88924499906],[-71.606415,41.88930599906],[-71.606597,41.88981699906],[-71.606617,41.88995899906],[-71.606635,41.89001499906],[-71.606668,41.89006399906],[-71.606697,41.89012599906],[-71.606734,41.89017499906],[-71.606807,41.89018399906],[-71.606836,41.89032399906],[-71.606832,41.89045299906],[-71.606822,41.89052399906],[-71.606842,41.89058299906],[-71.606917,41.89068799906],[-71.606952,41.89076699906],[-71.606969,41.89082499906],[-71.606998,41.89088699906],[-71.607017,41.89094599906],[-71.60704,41.89099599906],[-71.607076,41.89105399906],[-71.607256,41.89128599906],[-71.607294,41.89134299906],[-71.607338,41.89139099906],[-71.607394,41.89142799906],[-71.607453,41.89148199906],[-71.607408,41.89153599906],[-71.607584,41.89170799906],[-71.607631,41.89182599906],[-71.607648,41.89200299906],[-71.607615,41.89204099906],[-71.607602,41.89209599906],[-71.607672,41.89221999906],[-71.607691,41.89235399906],[-71.607704,41.89251099906],[-71.607968,41.89263099906],[-71.608029,41.89270199906],[-71.608059,41.89289899906],[-71.608154,41.89294099906],[-71.609024,41.89334499906],[-71.609077,41.89337499906],[-71.609528,41.89359299906],[-71.610069,41.89384499906],[-71.611397,41.89448499906],[-71.612724,41.89513399906],[-71.613571,41.89550399906],[-71.613663,41.89553699906],[-71.613937,41.89563399906],[-71.614265,41.89574099906],[-71.61483,41.89590799906],[-71.615211,41.89601099906],[-71.615837,41.89616399906],[-71.616142,41.89620599906],[-71.616447,41.89622899906],[-71.616661,41.89623299906],[-71.616943,41.89621699906],[-71.617218,41.89617899906],[-71.61747,41.89613699906],[-71.617676,41.89609099906],[-71.618077,41.89601199906],[-71.618118,41.89600399906],[-71.619255,41.89576699906],[-71.619659,41.89567899906],[-71.620262,41.89555399906],[-71.62104,41.89540099906],[-71.621788,41.89523299906],[-71.622437,41.89510299906],[-71.623138,41.89494699906],[-71.624019,41.89476199906],[-71.6241,41.89474499906],[-71.624596,41.89464999906],[-71.624893,41.89461499906],[-71.625168,41.89460399906],[-71.625473,41.89461899906],[-71.625847,41.89467599906],[-71.626076,41.89474099906],[-71.626396,41.89484799906],[-71.626656,41.89497799906],[-71.626938,41.89515699906],[-71.627571,41.89567199906],[-71.627937,41.89601099906],[-71.628349,41.89637399906],[-71.628693,41.89669399906],[-71.629021,41.89699199906],[-71.629639,41.89754099906],[-71.630035,41.89788099906],[-71.630356,41.89816999906],[-71.630806,41.89862399906],[-71.630926,41.89877699906],[-71.630974,41.89883799906],[-71.631432,41.89939099906],[-71.631767,41.89980699906],[-71.632164,41.90024899906],[-71.632301,41.90040999906],[-71.632576,41.90068799906],[-71.633018,41.90109599906],[-71.633095,41.90115699906],[-71.633347,41.90139399906],[-71.633447,41.90147899906],[-71.633537,41.90156199906],[-71.633636,41.90164599906],[-71.633835,41.90182899906],[-71.634079,41.90206499906],[-71.63504,41.90293099906],[-71.635246,41.90312999906],[-71.635506,41.90336599906],[-71.636108,41.90387699906],[-71.636162,41.90391199906],[-71.636208,41.90394999906],[-71.636261,41.90397999906],[-71.636322,41.90402199906],[-71.63652,41.90412899906],[-71.636726,41.90422399906],[-71.636787,41.90424699906],[-71.636841,41.90427399906],[-71.636902,41.90429299906],[-71.637146,41.90438799906],[-71.637222,41.90441099906],[-71.637337,41.90445699906],[-71.637543,41.90451799906],[-71.637619,41.90453299906],[-71.637872,41.90460199906],[-71.638123,41.90465199906],[-71.638367,41.90468999906],[-71.638649,41.90472399906],[-71.639053,41.90476199906],[-71.639458,41.90479299906],[-71.639961,41.90483899906],[-71.641487,41.90496399906],[-71.641594,41.90497599906],[-71.642456,41.90504499906],[-71.642761,41.90505999906],[-71.643547,41.90506699906],[-71.64415,41.90504499906],[-71.644386,41.90503299906],[-71.644736,41.90502399906],[-71.645012,41.90501799906],[-71.645118,41.90501299906],[-71.6455,41.90499499906],[-71.645805,41.90497599906],[-71.646263,41.90496199906],[-71.646294,41.90496099906],[-71.646469,41.90494899906],[-71.646652,41.90494199906],[-71.646828,41.90492999906],[-71.647317,41.90491999906],[-71.647346,41.90491899906],[-71.647781,41.90491899906],[-71.648415,41.90494199906],[-71.648865,41.90496799906],[-71.649452,41.90500999906],[-71.650742,41.90511699906],[-71.651077,41.90513999906],[-71.651749,41.90520099906],[-71.651901,41.90521199906],[-71.652046,41.90522799906],[-71.652222,41.90523899906],[-71.653244,41.90533099906],[-71.653948,41.90538899906],[-71.65435,41.90541799906],[-71.654533,41.90543699906],[-71.656166,41.90557099906],[-71.656586,41.90561299906],[-71.65686,41.90564699906],[-71.657234,41.90570799906],[-71.657318,41.90573099906],[-71.65741,41.90574999906],[-71.658508,41.90604499906],[-71.658592,41.90606699906],[-71.658966,41.90616199906],[-71.659225,41.90623399906],[-71.659363,41.90627299906],[-71.659836,41.90639899906],[-71.65992,41.90641799906],[-71.659958,41.90642799906],[-71.661064,41.90673099906],[-71.661583,41.90685999906],[-71.661919,41.90695599906],[-71.662315,41.90705899906],[-71.662842,41.90720399906],[-71.662949,41.90722999906],[-71.663055,41.90726099906],[-71.663148,41.90728299906],[-71.663544,41.90737499906],[-71.663872,41.90744399906],[-71.664062,41.90747499906],[-71.664558,41.90752799906],[-71.6651,41.90756199906],[-71.665886,41.90758899906],[-71.666016,41.90759699906],[-71.666359,41.90760799906],[-71.666618,41.90763099906],[-71.666756,41.90764999906],[-71.666992,41.90770699906],[-71.66716,41.90777599906],[-71.667213,41.90780299906],[-71.667282,41.90784799906],[-71.667397,41.90793999906],[-71.667412,41.90784099906],[-71.667412,41.90780999906],[-71.667427,41.90774499906],[-71.667427,41.90770699906],[-71.667419,41.90766499906],[-71.667419,41.90762299906],[-71.667404,41.90753899906],[-71.667374,41.90745499906],[-71.667328,41.90729899906],[-71.667313,41.90722699906],[-71.66729,41.90715399906],[-71.667229,41.90690199906],[-71.667152,41.90650599906],[-71.667137,41.90636799906],[-71.667137,41.90604799906],[-71.667168,41.90573899906],[-71.667236,41.90547899906],[-71.667313,41.90527299906],[-71.667358,41.90516999906],[-71.667435,41.90501399906],[-71.66748,41.90493399906],[-71.667519,41.90484999906],[-71.667618,41.90467799906],[-71.667709,41.90447999906],[-71.667763,41.90438499906],[-71.667801,41.90429699906],[-71.667938,41.90403399906],[-71.668102,41.90374099906],[-71.668129,41.90368299906],[-71.668169,41.90361299906],[-71.668182,41.90359099906],[-71.668236,41.90348399906],[-71.668297,41.90338099906],[-71.668404,41.90317199906],[-71.668694,41.90270199906],[-71.668785,41.90256899906],[-71.669106,41.90206899906],[-71.66935,41.90170699906],[-71.669479,41.90148199906],[-71.669777,41.90101199906],[-71.669998,41.90063499906],[-71.670029,41.90057399906],[-71.670143,41.90030699906],[-71.670166,41.90023399906],[-71.670166,41.90019999906],[-71.670174,41.90017299906],[-71.670174,41.90011199906],[-71.670181,41.90005099906],[-71.670181,41.89983699906],[-71.670158,41.89963499906],[-71.670113,41.89952099906],[-71.670082,41.89946399906],[-71.669991,41.89921599906],[-71.669579,41.89826999906],[-71.669464,41.89798699906],[-71.66906,41.89708699906],[-71.669037,41.89701799906],[-71.669006,41.89694999906],[-71.668976,41.89681999906],[-71.668968,41.89671699906],[-71.668968,41.89664099906],[-71.668976,41.89658699906],[-71.668991,41.89653399906],[-71.669014,41.89637399906],[-71.669125,41.89594999906],[-71.669319,41.89521799906],[-71.669449,41.89465699906],[-71.669571,41.89430999906],[-71.669617,41.89419199906],[-71.66967,41.89407699906],[-71.669754,41.89387499906],[-71.669785,41.89378399906],[-71.670067,41.89318099906],[-71.670418,41.89240999906],[-71.670685,41.89180799906],[-71.671173,41.89073199906],[-71.671219,41.89057199906],[-71.671233,41.89049899906],[-71.671249,41.89033899906],[-71.671249,41.89016299906],[-71.671234,41.88996899906],[-71.671143,41.88948399906],[-71.671043,41.88905699906],[-71.670998,41.88882799906],[-71.67086,41.88819099906],[-71.670845,41.88806499906],[-71.67083,41.88780999906],[-71.67083,41.88765299906],[-71.670845,41.88750099906],[-71.670845,41.88743199906],[-71.670876,41.88713099906],[-71.670929,41.88674899906],[-71.670944,41.88646999906],[-71.670944,41.88623399906],[-71.670937,41.88611199906],[-71.670937,41.88599399906],[-71.670731,41.88352999906],[-71.670708,41.88313699906],[-71.670647,41.88240799906],[-71.670647,41.88225199906],[-71.670654,41.88209499906],[-71.670677,41.88194299906],[-71.670708,41.88183199906],[-71.670746,41.88172099906],[-71.670799,41.88161499906],[-71.670898,41.88145799906],[-71.670952,41.88138199906],[-71.672234,41.87937899906],[-71.672546,41.87886399906],[-71.67289,41.87832299906],[-71.673599,41.87717099906],[-71.673645,41.87707499906],[-71.67366,41.87702599906],[-71.673683,41.87698399906],[-71.673759,41.87676599906],[-71.673805,41.87650699906],[-71.673828,41.87629699906],[-71.673958,41.87536999906],[-71.674065,41.87472899906],[-71.674179,41.87396199906],[-71.674229,41.87366899906],[-71.674294,41.87328299906],[-71.674393,41.87261199906],[-71.674469,41.87204399906],[-71.674534,41.87164499906],[-71.674637,41.87101699906],[-71.674675,41.87071399906],[-71.67469,41.87059399906],[-71.674759,41.87016299906],[-71.67482,41.86970499906],[-71.67495,41.86889599906],[-71.675034,41.86830899906],[-71.675301,41.86661499906],[-71.67556,41.86498299906],[-71.67569,41.86404399906],[-71.67589,41.86274499906],[-71.676018,41.86191199906],[-71.676125,41.86118299906],[-71.676216,41.86052299906],[-71.676537,41.85843999906],[-71.676682,41.85755899906],[-71.676709,41.85736499906],[-71.676714,41.85733099906],[-71.676796,41.85673499906],[-71.676804,41.85667699906],[-71.676808,41.85664999906]]]}}"}, +{"type": "blockgroup", "typeId": 131022, "areaId": 28987, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.671936,41.91710299906],[-71.671913,41.91704599906],[-71.671898,41.91698799906],[-71.671867,41.91690399906],[-71.671829,41.91682099906],[-71.671707,41.91649599906],[-71.671684,41.91645099906],[-71.671669,41.91640099906],[-71.671631,41.91630599906],[-71.671623,41.91625999906],[-71.671608,41.91621399906],[-71.671579,41.91607299906],[-71.671555,41.91599299906],[-71.671539,41.91588599906],[-71.671524,41.91583299906],[-71.671501,41.91565299906],[-71.671486,41.91558799906],[-71.671486,41.91552699906],[-71.671478,41.91546199906],[-71.671486,41.91517599906],[-71.67141,41.91512699906],[-71.671303,41.91503099906],[-71.671043,41.91476399906],[-71.671028,41.91474499906],[-71.670952,41.91467699906],[-71.670876,41.91458899906],[-71.670609,41.91431799906],[-71.670547,41.91426499906],[-71.670403,41.91411599906],[-71.670173,41.91389899906],[-71.669792,41.91353999906],[-71.669655,41.91342199906],[-71.669426,41.91319699906],[-71.669365,41.91312799906],[-71.66925,41.91294899906],[-71.669159,41.91276199906],[-71.669014,41.91237599906],[-71.668999,41.91233399906],[-71.668991,41.91229199906],[-71.668785,41.91169399906],[-71.66861,41.91113999906],[-71.668312,41.91029399906],[-71.668274,41.91016799906],[-71.668244,41.91008599906],[-71.668228,41.91004199906],[-71.668137,41.90974799906],[-71.668083,41.90959899906],[-71.668037,41.90945099906],[-71.667839,41.90890099906],[-71.667801,41.90877499906],[-71.667595,41.90819899906],[-71.667572,41.90816899906],[-71.667542,41.90810399906],[-71.667503,41.90804699906],[-71.667458,41.90799299906],[-71.667397,41.90793999906],[-71.667282,41.90784799906],[-71.667213,41.90780299906],[-71.66716,41.90777599906],[-71.666992,41.90770699906],[-71.666756,41.90764999906],[-71.666618,41.90763099906],[-71.666359,41.90760799906],[-71.666016,41.90759699906],[-71.665886,41.90758899906],[-71.6651,41.90756199906],[-71.664558,41.90752799906],[-71.664062,41.90747499906],[-71.663872,41.90744399906],[-71.663544,41.90737499906],[-71.663148,41.90728299906],[-71.663055,41.90726099906],[-71.662949,41.90722999906],[-71.662842,41.90720399906],[-71.662315,41.90705899906],[-71.661919,41.90695599906],[-71.661583,41.90685999906],[-71.661064,41.90673099906],[-71.659958,41.90642799906],[-71.65992,41.90641799906],[-71.659836,41.90639899906],[-71.659363,41.90627299906],[-71.659225,41.90623399906],[-71.658966,41.90616199906],[-71.658592,41.90606699906],[-71.658508,41.90604499906],[-71.65741,41.90574999906],[-71.657318,41.90573099906],[-71.657234,41.90570799906],[-71.65686,41.90564699906],[-71.656586,41.90561299906],[-71.656166,41.90557099906],[-71.654533,41.90543699906],[-71.65435,41.90541799906],[-71.653948,41.90538899906],[-71.653244,41.90533099906],[-71.652222,41.90523899906],[-71.652046,41.90522799906],[-71.651901,41.90521199906],[-71.651749,41.90520099906],[-71.651077,41.90513999906],[-71.650742,41.90511699906],[-71.649452,41.90500999906],[-71.648865,41.90496799906],[-71.648415,41.90494199906],[-71.647781,41.90491899906],[-71.647346,41.90491899906],[-71.647317,41.90491999906],[-71.646828,41.90492999906],[-71.646652,41.90494199906],[-71.646469,41.90494899906],[-71.646294,41.90496099906],[-71.646263,41.90496199906],[-71.645805,41.90497599906],[-71.6455,41.90499499906],[-71.645118,41.90501299906],[-71.645012,41.90501799906],[-71.644736,41.90502399906],[-71.644386,41.90503299906],[-71.64415,41.90504499906],[-71.643547,41.90506699906],[-71.642761,41.90505999906],[-71.642456,41.90504499906],[-71.641594,41.90497599906],[-71.641487,41.90496399906],[-71.639961,41.90483899906],[-71.639458,41.90479299906],[-71.639053,41.90476199906],[-71.638649,41.90472399906],[-71.638367,41.90468999906],[-71.638123,41.90465199906],[-71.637872,41.90460199906],[-71.637619,41.90453299906],[-71.637543,41.90451799906],[-71.637337,41.90445699906],[-71.637222,41.90441099906],[-71.637146,41.90438799906],[-71.636902,41.90429299906],[-71.636841,41.90427399906],[-71.636787,41.90424699906],[-71.636726,41.90422399906],[-71.63652,41.90412899906],[-71.636322,41.90402199906],[-71.636261,41.90397999906],[-71.636208,41.90394999906],[-71.636162,41.90391199906],[-71.636108,41.90387699906],[-71.635506,41.90336599906],[-71.635246,41.90312999906],[-71.63504,41.90293099906],[-71.634079,41.90206499906],[-71.633835,41.90182899906],[-71.633636,41.90164599906],[-71.633537,41.90156199906],[-71.633447,41.90147899906],[-71.633347,41.90139399906],[-71.633095,41.90115699906],[-71.633018,41.90109599906],[-71.632576,41.90068799906],[-71.632301,41.90040999906],[-71.632164,41.90024899906],[-71.631767,41.89980699906],[-71.631432,41.89939099906],[-71.630974,41.89883799906],[-71.630926,41.89877699906],[-71.630806,41.89862399906],[-71.630356,41.89816999906],[-71.630035,41.89788099906],[-71.629639,41.89754099906],[-71.629021,41.89699199906],[-71.628693,41.89669399906],[-71.628349,41.89637399906],[-71.627937,41.89601099906],[-71.627571,41.89567199906],[-71.626938,41.89515699906],[-71.626656,41.89497799906],[-71.626396,41.89484799906],[-71.626076,41.89474099906],[-71.625847,41.89467599906],[-71.625473,41.89461899906],[-71.625168,41.89460399906],[-71.624893,41.89461499906],[-71.624596,41.89464999906],[-71.6241,41.89474499906],[-71.624019,41.89476199906],[-71.623138,41.89494699906],[-71.622437,41.89510299906],[-71.621788,41.89523299906],[-71.62104,41.89540099906],[-71.620262,41.89555399906],[-71.619659,41.89567899906],[-71.619255,41.89576699906],[-71.618118,41.89600399906],[-71.618077,41.89601199906],[-71.617676,41.89609099906],[-71.61747,41.89613699906],[-71.617218,41.89617899906],[-71.616943,41.89621699906],[-71.616661,41.89623299906],[-71.616447,41.89622899906],[-71.616142,41.89620599906],[-71.615837,41.89616399906],[-71.615211,41.89601099906],[-71.61483,41.89590799906],[-71.614265,41.89574099906],[-71.613937,41.89563399906],[-71.613663,41.89553699906],[-71.613571,41.89550399906],[-71.612724,41.89513399906],[-71.611397,41.89448499906],[-71.610069,41.89384499906],[-71.609528,41.89359299906],[-71.609077,41.89337499906],[-71.608696,41.89335999906],[-71.60833,41.89333299906],[-71.608174,41.89330299906],[-71.607971,41.89326499906],[-71.607651,41.89317699906],[-71.607368,41.89336799906],[-71.607025,41.89362299906],[-71.606667,41.89390899906],[-71.606255,41.89420699906],[-71.605453,41.89475299906],[-71.605095,41.89500399906],[-71.604782,41.89523299906],[-71.604401,41.89549599906],[-71.60424,41.89562999906],[-71.603889,41.89594699906],[-71.603783,41.89602999906],[-71.603058,41.89641599906],[-71.602666,41.89661099906],[-71.602623,41.89663299906],[-71.602587,41.89664999906],[-71.602074,41.89688899906],[-71.601624,41.89705699906],[-71.601265,41.89720199906],[-71.599968,41.89768199906],[-71.59951,41.89784599906],[-71.599259,41.89794099906],[-71.599136,41.89798699906],[-71.598831,41.89809399906],[-71.598564,41.89819299906],[-71.598442,41.89825799906],[-71.598358,41.89831199906],[-71.598228,41.89845299906],[-71.597992,41.89883399906],[-71.597893,41.89897499906],[-71.597771,41.89910899906],[-71.597565,41.89931499906],[-71.597305,41.89954399906],[-71.596992,41.89982999906],[-71.596756,41.90005499906],[-71.596573,41.90026099906],[-71.596558,41.90028399906],[-71.59639,41.90046699906],[-71.595802,41.90127899906],[-71.595688,41.90145499906],[-71.595589,41.90158799906],[-71.595474,41.90166099906],[-71.595184,41.90178299906],[-71.594917,41.90185199906],[-71.594184,41.90199299906],[-71.594129,41.90191399906],[-71.593722,41.90176699906],[-71.593367,41.90159399906],[-71.593276,41.90159399906],[-71.593135,41.90158399906],[-71.592671,41.90159199906],[-71.592612,41.90147299906],[-71.592525,41.90140899906],[-71.59245,41.90128199906],[-71.592499,41.90110599906],[-71.59251,41.90104099906],[-71.592483,41.90092299906],[-71.592434,41.90082799906],[-71.592391,41.90078299906],[-71.592304,41.90078799906],[-71.59214,41.90078399906],[-71.591905,41.90075799906],[-71.591771,41.90056099906],[-71.59159,41.90044799906],[-71.591459,41.90032699906],[-71.59136,41.90028999906],[-71.591249,41.90023299906],[-71.591146,41.90018999906],[-71.5911,41.90015799906],[-71.590965,41.90003499906],[-71.590736,41.89994699906],[-71.590519,41.89983099906],[-71.59049,41.89978899906],[-71.59046,41.89974499906],[-71.590399,41.89972499906],[-71.590166,41.89957499906],[-71.590085,41.89956499906],[-71.58998,41.89954299906],[-71.589951,41.89948699906],[-71.589816,41.89934899906],[-71.589777,41.89932299906],[-71.589703,41.89930199906],[-71.589648,41.89932899906],[-71.589576,41.89931699906],[-71.589382,41.89926299906],[-71.589291,41.89921299906],[-71.589225,41.89918599906],[-71.589227,41.89916799906],[-71.589016,41.89903899906],[-71.588739,41.89877099906],[-71.588679,41.89867899906],[-71.588635,41.89859599906],[-71.588535,41.89854199906],[-71.588508,41.89846699906],[-71.588458,41.89839399906],[-71.588375,41.89833699906],[-71.588298,41.89826799906],[-71.588226,41.89819499906],[-71.588171,41.89815199906],[-71.588076,41.89806599906],[-71.58796,41.89794599906],[-71.587938,41.89788599906],[-71.587746,41.89778099906],[-71.587607,41.89777199906],[-71.587564,41.89773699906],[-71.587512,41.89767499906],[-71.587414,41.89758399906],[-71.587352,41.89745499906],[-71.587232,41.89733499906],[-71.587205,41.89727299906],[-71.587175,41.89708499906],[-71.587131,41.89701999906],[-71.587058,41.89693099906],[-71.586987,41.89687399906],[-71.586837,41.89678999906],[-71.586782,41.89674899906],[-71.586549,41.89663799906],[-71.586478,41.89659599906],[-71.586436,41.89653899906],[-71.586345,41.89645699906],[-71.586276,41.89640299906],[-71.586008,41.89628999906],[-71.585716,41.89620399906],[-71.585148,41.89600299906],[-71.584886,41.89593499906],[-71.584671,41.89585899906],[-71.584599,41.89582899906],[-71.584535,41.89572599906],[-71.584469,41.89565499906],[-71.584202,41.89549799906],[-71.584148,41.89529999906],[-71.584116,41.89527299906],[-71.584039,41.89523699906],[-71.583972,41.89523199906],[-71.583949,41.89522799906],[-71.583858,41.89516899906],[-71.583716,41.89512599906],[-71.583606,41.89515999906],[-71.583543,41.89507899906],[-71.583343,41.89504199906],[-71.583104,41.89501299906],[-71.582808,41.89501099906],[-71.582552,41.89497299906],[-71.5825,41.89495999906],[-71.582467,41.89495199906],[-71.582408,41.89491799906],[-71.582359,41.89487499906],[-71.582304,41.89483699906],[-71.582273,41.89478699906],[-71.582239,41.89472199906],[-71.582209,41.89468199906],[-71.582132,41.89466199906],[-71.581891,41.89466499906],[-71.582479,41.89718599906],[-71.582593,41.89766399906],[-71.582724,41.89812799906],[-71.582895,41.89874499906],[-71.583101,41.89948199906],[-71.5832,41.89995999906],[-71.583633,41.90203199906],[-71.583905,41.90321999906],[-71.584027,41.90375299906],[-71.584229,41.90463399906],[-71.584366,41.90523699906],[-71.584837,41.90747499906],[-71.58519,41.90918899906],[-71.585821,41.91232599906],[-71.586244,41.91440499906],[-71.586327,41.91481099906],[-71.586729,41.91677299906],[-71.587105,41.91862899906],[-71.58726,41.91937899906],[-71.587561,41.92083899906],[-71.587696,41.92148999906],[-71.587812,41.92205299906],[-71.588303,41.92438199906],[-71.588347,41.92460699906],[-71.589067,41.92797999906],[-71.590312,41.93366499906],[-71.592788,41.93358499906],[-71.601648,41.93329499906],[-71.60235,41.93327199906],[-71.60297,41.93325099906],[-71.603364,41.93323999906],[-71.608526,41.93306699906],[-71.613563,41.93289699906],[-71.616851,41.93278399906],[-71.621559,41.93263499906],[-71.621809,41.93262599906],[-71.621663,41.93302299906],[-71.623867,41.93286799906],[-71.624437,41.93264699906],[-71.624375,41.93254299906],[-71.626123,41.93248599906],[-71.627577,41.93243899906],[-71.629387,41.93238099906],[-71.631873,41.93240199906],[-71.632458,41.93240399906],[-71.633437,41.93240699906],[-71.637348,41.93242099906],[-71.639715,41.93242899906],[-71.63973,41.93242899906],[-71.640931,41.93239799906],[-71.64799,41.93221299906],[-71.650775,41.93214299906],[-71.65105,41.93213599906],[-71.651586,41.93212299906],[-71.652838,41.93209199906],[-71.653265,41.93207999906],[-71.655144,41.93203299906],[-71.662664,41.93185799906],[-71.66668,41.93177099906],[-71.66675,41.93166399906],[-71.666817,41.93156099906],[-71.66687,41.93147299906],[-71.667236,41.93093499906],[-71.668007,41.92976799906],[-71.668304,41.92930199906],[-71.668396,41.92917299906],[-71.668648,41.92875299906],[-71.668808,41.92845899906],[-71.669022,41.92801699906],[-71.669189,41.92759699906],[-71.669373,41.92702899906],[-71.669411,41.92687999906],[-71.66951,41.92642599906],[-71.669579,41.92609799906],[-71.669616,41.92594799906],[-71.669655,41.92578899906],[-71.669738,41.92538199906],[-71.669769,41.92523199906],[-71.669846,41.92480099906],[-71.669876,41.92469399906],[-71.669922,41.92448399906],[-71.66993,41.92444299906],[-71.669968,41.92424799906],[-71.670105,41.92346199906],[-71.670113,41.92344299906],[-71.670166,41.92315299906],[-71.670189,41.92299699906],[-71.670219,41.92285899906],[-71.67028,41.92246999906],[-71.670311,41.92231399906],[-71.670326,41.92221099906],[-71.67038,41.92195099906],[-71.670456,41.92151599906],[-71.670479,41.92143599906],[-71.670692,41.92028399906],[-71.670715,41.92018899906],[-71.670731,41.92009399906],[-71.670776,41.91989099906],[-71.670837,41.91949799906],[-71.670898,41.91921999906],[-71.670929,41.91912099906],[-71.670952,41.91902499906],[-71.670982,41.91892999906],[-71.67099,41.91887999906],[-71.671005,41.91883099906],[-71.671013,41.91878499906],[-71.671036,41.91872799906],[-71.671051,41.91866699906],[-71.671097,41.91855599906],[-71.671127,41.91850699906],[-71.671173,41.91839599906],[-71.671204,41.91833899906],[-71.671227,41.91828199906],[-71.671272,41.91819399906],[-71.671326,41.91810999906],[-71.671371,41.91802599906],[-71.671646,41.91760599906],[-71.671707,41.91749199906],[-71.67186,41.91725199906],[-71.671906,41.91715199906],[-71.671936,41.91710299906]]]}}"}, +{"type": "blockgroup", "typeId": 131023, "areaId": 28988, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.609077,41.89337499906],[-71.609024,41.89334499906],[-71.608154,41.89294099906],[-71.608059,41.89289899906],[-71.608029,41.89270199906],[-71.607968,41.89263099906],[-71.607704,41.89251099906],[-71.607691,41.89235399906],[-71.607672,41.89221999906],[-71.607602,41.89209599906],[-71.607615,41.89204099906],[-71.607648,41.89200299906],[-71.607631,41.89182599906],[-71.607584,41.89170799906],[-71.607408,41.89153599906],[-71.607453,41.89148199906],[-71.607394,41.89142799906],[-71.607338,41.89139099906],[-71.607294,41.89134299906],[-71.607256,41.89128599906],[-71.607076,41.89105399906],[-71.60704,41.89099599906],[-71.607017,41.89094599906],[-71.606998,41.89088699906],[-71.606969,41.89082499906],[-71.606952,41.89076699906],[-71.606917,41.89068799906],[-71.606842,41.89058299906],[-71.606822,41.89052399906],[-71.606832,41.89045299906],[-71.606836,41.89032399906],[-71.606807,41.89018399906],[-71.606734,41.89017499906],[-71.606697,41.89012599906],[-71.606668,41.89006399906],[-71.606635,41.89001499906],[-71.606617,41.88995899906],[-71.606597,41.88981699906],[-71.606415,41.88930599906],[-71.606383,41.88924499906],[-71.606324,41.88905899906],[-71.606244,41.88900099906],[-71.606249,41.88888999906],[-71.606169,41.88887399906],[-71.606091,41.88884499906],[-71.606039,41.88880599906],[-71.606011,41.88874899906],[-71.606007,41.88868699906],[-71.605948,41.88863299906],[-71.605906,41.88858799906],[-71.60586,41.88852899906],[-71.605803,41.88848499906],[-71.605725,41.88845199906],[-71.605663,41.88842099906],[-71.605614,41.88837499906],[-71.605557,41.88832899906],[-71.605487,41.88814099906],[-71.605384,41.88817599906],[-71.605308,41.88805899906],[-71.60526,41.88800499906],[-71.605178,41.88795799906],[-71.605105,41.88792499906],[-71.604991,41.88790299906],[-71.604969,41.88787899906],[-71.604905,41.88772199906],[-71.604907,41.88765299906],[-71.604857,41.88755699906],[-71.604818,41.88752199906],[-71.604747,41.88751399906],[-71.604449,41.88742699906],[-71.604252,41.88724799906],[-71.60396,41.88694399906],[-71.603909,41.88686099906],[-71.604145,41.88672799906],[-71.604433,41.88663399906],[-71.604596,41.88663199906],[-71.604424,41.88655099906],[-71.604326,41.88653699906],[-71.604214,41.88652899906],[-71.604181,41.88647799906],[-71.60399,41.88638199906],[-71.603841,41.88633299906],[-71.603767,41.88631599906],[-71.603621,41.88621199906],[-71.603613,41.88614799906],[-71.603574,41.88610299906],[-71.603516,41.88606699906],[-71.603397,41.88606099906],[-71.603426,41.88601099906],[-71.603371,41.88597999906],[-71.603193,41.88591899906],[-71.603093,41.88579999906],[-71.603048,41.88575599906],[-71.603051,41.88567499906],[-71.603036,41.88561399906],[-71.603009,41.88556199906],[-71.602894,41.88549199906],[-71.602602,41.88540499906],[-71.602509,41.88536799906],[-71.602187,41.88535199906],[-71.602108,41.88532899906],[-71.601998,41.88527699906],[-71.601876,41.88524499906],[-71.601784,41.88523099906],[-71.601715,41.88519799906],[-71.601579,41.88515499906],[-71.601562,41.88510599906],[-71.601593,41.88507699906],[-71.601677,41.88507199906],[-71.601719,41.88506399906],[-71.60169,41.88500699906],[-71.601511,41.88490999906],[-71.601441,41.88489299906],[-71.601402,41.88488999906],[-71.60132,41.88488399906],[-71.601195,41.88486299906],[-71.601125,41.88484699906],[-71.600929,41.88484099906],[-71.600853,41.88485299906],[-71.600782,41.88488099906],[-71.600721,41.88491699906],[-71.600717,41.88503399906],[-71.600705,41.88505999906],[-71.600621,41.88505699906],[-71.600524,41.88503799906],[-71.600352,41.88502099906],[-71.600216,41.88498099906],[-71.600193,41.88496999906],[-71.600199,41.88494299906],[-71.600172,41.88486799906],[-71.600112,41.88483799906],[-71.60014,41.88472499906],[-71.600161,41.88466399906],[-71.600208,41.88462199906],[-71.600233,41.88455399906],[-71.600156,41.88451199906],[-71.600065,41.88447299906],[-71.600105,41.88446399906],[-71.600311,41.88438399906],[-71.600647,41.88424299906],[-71.600868,41.88412899906],[-71.601395,41.88383099906],[-71.601654,41.88367499906],[-71.601868,41.88350699906],[-71.602013,41.88336199906],[-71.602112,41.88321699906],[-71.60218,41.88309099906],[-71.602226,41.88293499906],[-71.602257,41.88274799906],[-71.602264,41.88257599906],[-71.602219,41.88235099906],[-71.602028,41.88175199906],[-71.60183,41.88099299906],[-71.60173,41.88064199906],[-71.601608,41.88018399906],[-71.601517,41.87972999906],[-71.601395,41.87916599906],[-71.601341,41.87886399906],[-71.601287,41.87863299906],[-71.601257,41.87850199906],[-71.601173,41.87810099906],[-71.601166,41.87800599906],[-71.60112,41.87779999906],[-71.600983,41.87704799906],[-71.600975,41.87689599906],[-71.600975,41.87666699906],[-71.601006,41.87638499906],[-71.601028,41.87623199906],[-71.601074,41.87601899906],[-71.601143,41.87579699906],[-71.601234,41.87556499906],[-71.601341,41.87535899906],[-71.601509,41.87510299906],[-71.60173,41.87483199906],[-71.602318,41.87422199906],[-71.602403,41.87413099906],[-71.602587,41.87393599906],[-71.602776,41.87373699906],[-71.603111,41.87341699906],[-71.603683,41.87284899906],[-71.604004,41.87251999906],[-71.604401,41.87213899906],[-71.605057,41.87153599906],[-71.605988,41.87070499906],[-71.606163,41.87053299906],[-71.606239,41.87043799906],[-71.606354,41.87030399906],[-71.606499,41.87008999906],[-71.606644,41.86984299906],[-71.606728,41.86965199906],[-71.606789,41.86943099906],[-71.606827,41.86923599906],[-71.606843,41.86894799906],[-71.60685,41.86884699906],[-71.606857,41.86815599906],[-71.60685,41.86794999906],[-71.606827,41.86777499906],[-71.606789,41.86756899906],[-71.606667,41.86710399906],[-71.60659,41.86685199906],[-71.606537,41.86669899906],[-71.606476,41.86654299906],[-71.606369,41.86632499906],[-71.606156,41.86603499906],[-71.606125,41.86599299906],[-71.605858,41.86571099906],[-71.605392,41.86526499906],[-71.604729,41.86460499906],[-71.604416,41.86431499906],[-71.60437,41.86426499906],[-71.604172,41.86407099906],[-71.603973,41.86388399906],[-71.603821,41.86372799906],[-71.603699,41.86357499906],[-71.603622,41.86344899906],[-71.603539,41.86323499906],[-71.6035,41.86307099906],[-71.603477,41.86272399906],[-71.603493,41.86256399906],[-71.603539,41.86242699906],[-71.603607,41.86227399906],[-71.603676,41.86214399906],[-71.603836,41.86190399906],[-71.604126,41.86141599906],[-71.604179,41.86130099906],[-71.604279,41.86111099906],[-71.604401,41.86080599906],[-71.60449,41.86053699906],[-71.604691,41.85998899906],[-71.604782,41.85967299906],[-71.604912,41.85899399906],[-71.604996,41.85845199906],[-71.605011,41.85825299906],[-71.604996,41.85803999906],[-71.604992,41.85799899906],[-71.604491,41.85800699906],[-71.60194,41.85805899906],[-71.597599,41.85814299906],[-71.591853,41.85825299906],[-71.590012,41.85830699906],[-71.584632,41.85846499906],[-71.58341,41.85850299906],[-71.57906,41.85861999906],[-71.578454,41.85863499906],[-71.577772,41.85865299906],[-71.575144,41.85873399906],[-71.574642,41.85874799906],[-71.575077,41.86082899906],[-71.575523,41.86295699906],[-71.575625,41.86344199906],[-71.575653,41.86357299906],[-71.575752,41.86405499906],[-71.576058,41.86552299906],[-71.576154,41.86598699906],[-71.576523,41.86776799906],[-71.577121,41.87047599906],[-71.577255,41.87110599906],[-71.577418,41.87187599906],[-71.577469,41.87210399906],[-71.577707,41.87332099906],[-71.577934,41.87449399906],[-71.578037,41.87502099906],[-71.57805,41.87508799906],[-71.57809,41.87529399906],[-71.578229,41.87600699906],[-71.578828,41.87903199906],[-71.579254,41.88115499906],[-71.579348,41.88161699906],[-71.579389,41.88181199906],[-71.579908,41.88471999906],[-71.580286,41.88655399906],[-71.580299,41.88661799906],[-71.580355,41.88684499906],[-71.581087,41.88983699906],[-71.58169,41.89345999906],[-71.581731,41.89370199906],[-71.581842,41.89437199906],[-71.581891,41.89466499906],[-71.582132,41.89466199906],[-71.582209,41.89468199906],[-71.582239,41.89472199906],[-71.582273,41.89478699906],[-71.582304,41.89483699906],[-71.582359,41.89487499906],[-71.582408,41.89491799906],[-71.582467,41.89495199906],[-71.5825,41.89495999906],[-71.582552,41.89497299906],[-71.582808,41.89501099906],[-71.583104,41.89501299906],[-71.583343,41.89504199906],[-71.583543,41.89507899906],[-71.583606,41.89515999906],[-71.583716,41.89512599906],[-71.583858,41.89516899906],[-71.583949,41.89522799906],[-71.583972,41.89523199906],[-71.584039,41.89523699906],[-71.584116,41.89527299906],[-71.584148,41.89529999906],[-71.584202,41.89549799906],[-71.584469,41.89565499906],[-71.584535,41.89572599906],[-71.584599,41.89582899906],[-71.584671,41.89585899906],[-71.584886,41.89593499906],[-71.585148,41.89600299906],[-71.585716,41.89620399906],[-71.586008,41.89628999906],[-71.586276,41.89640299906],[-71.586345,41.89645699906],[-71.586436,41.89653899906],[-71.586478,41.89659599906],[-71.586549,41.89663799906],[-71.586782,41.89674899906],[-71.586837,41.89678999906],[-71.586987,41.89687399906],[-71.587058,41.89693099906],[-71.587131,41.89701999906],[-71.587175,41.89708499906],[-71.587205,41.89727299906],[-71.587232,41.89733499906],[-71.587352,41.89745499906],[-71.587414,41.89758399906],[-71.587512,41.89767499906],[-71.587564,41.89773699906],[-71.587607,41.89777199906],[-71.587746,41.89778099906],[-71.587938,41.89788599906],[-71.58796,41.89794599906],[-71.588076,41.89806599906],[-71.588171,41.89815199906],[-71.588226,41.89819499906],[-71.588298,41.89826799906],[-71.588375,41.89833699906],[-71.588458,41.89839399906],[-71.588508,41.89846699906],[-71.588535,41.89854199906],[-71.588635,41.89859599906],[-71.588679,41.89867899906],[-71.588739,41.89877099906],[-71.589016,41.89903899906],[-71.589227,41.89916799906],[-71.589225,41.89918599906],[-71.589291,41.89921299906],[-71.589382,41.89926299906],[-71.589576,41.89931699906],[-71.589648,41.89932899906],[-71.589703,41.89930199906],[-71.589777,41.89932299906],[-71.589816,41.89934899906],[-71.589951,41.89948699906],[-71.58998,41.89954299906],[-71.590085,41.89956499906],[-71.590166,41.89957499906],[-71.590399,41.89972499906],[-71.59046,41.89974499906],[-71.59049,41.89978899906],[-71.590519,41.89983099906],[-71.590736,41.89994699906],[-71.590965,41.90003499906],[-71.5911,41.90015799906],[-71.591146,41.90018999906],[-71.591249,41.90023299906],[-71.59136,41.90028999906],[-71.591459,41.90032699906],[-71.59159,41.90044799906],[-71.591771,41.90056099906],[-71.591905,41.90075799906],[-71.59214,41.90078399906],[-71.592304,41.90078799906],[-71.592391,41.90078299906],[-71.592434,41.90082799906],[-71.592483,41.90092299906],[-71.59251,41.90104099906],[-71.592499,41.90110599906],[-71.59245,41.90128199906],[-71.592525,41.90140899906],[-71.592612,41.90147299906],[-71.592671,41.90159199906],[-71.593135,41.90158399906],[-71.593276,41.90159399906],[-71.593367,41.90159399906],[-71.593722,41.90176699906],[-71.594129,41.90191399906],[-71.594184,41.90199299906],[-71.594917,41.90185199906],[-71.595184,41.90178299906],[-71.595474,41.90166099906],[-71.595589,41.90158799906],[-71.595688,41.90145499906],[-71.595802,41.90127899906],[-71.59639,41.90046699906],[-71.596558,41.90028399906],[-71.596573,41.90026099906],[-71.596756,41.90005499906],[-71.596992,41.89982999906],[-71.597305,41.89954399906],[-71.597565,41.89931499906],[-71.597771,41.89910899906],[-71.597893,41.89897499906],[-71.597992,41.89883399906],[-71.598228,41.89845299906],[-71.598358,41.89831199906],[-71.598442,41.89825799906],[-71.598564,41.89819299906],[-71.598831,41.89809399906],[-71.599136,41.89798699906],[-71.599259,41.89794099906],[-71.59951,41.89784599906],[-71.599968,41.89768199906],[-71.601265,41.89720199906],[-71.601624,41.89705699906],[-71.602074,41.89688899906],[-71.602587,41.89664999906],[-71.602623,41.89663299906],[-71.602666,41.89661099906],[-71.603058,41.89641599906],[-71.603783,41.89602999906],[-71.603889,41.89594699906],[-71.60424,41.89562999906],[-71.604401,41.89549599906],[-71.604782,41.89523299906],[-71.605095,41.89500399906],[-71.605453,41.89475299906],[-71.606255,41.89420699906],[-71.606667,41.89390899906],[-71.607025,41.89362299906],[-71.607368,41.89336799906],[-71.607651,41.89317699906],[-71.607971,41.89326499906],[-71.608174,41.89330299906],[-71.60833,41.89333299906],[-71.608696,41.89335999906],[-71.609077,41.89337499906]]]}}"}, +{"type": "blockgroup", "typeId": 132011, "areaId": 28989, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.613133,41.85776599906],[-71.613075,41.85739299906],[-71.613035,41.85714399906],[-71.612991,41.85695099906],[-71.612961,41.85677699906],[-71.61293,41.85653299906],[-71.612892,41.85644099906],[-71.612793,41.85628899906],[-71.612429,41.85587799906],[-71.611618,41.85496099906],[-71.611557,41.85489299906],[-71.611488,41.85480499906],[-71.611443,41.85476299906],[-71.611229,41.85464499906],[-71.611107,41.85458799906],[-71.610931,41.85453399906],[-71.61084,41.85451499906],[-71.610748,41.85450399906],[-71.610564,41.85447099906],[-71.610489,41.85445799906],[-71.610413,41.85443499906],[-71.610359,41.85440799906],[-71.610313,41.85437799906],[-71.610207,41.85429799906],[-71.609955,41.85405699906],[-71.609848,41.85397299906],[-71.609787,41.85393499906],[-71.60965,41.85387799906],[-71.609573,41.85385499906],[-71.609489,41.85381699906],[-71.609306,41.85374499906],[-71.608795,41.85359199906],[-71.608017,41.85336699906],[-71.607956,41.85333999906],[-71.607918,41.85330999906],[-71.607887,41.85327099906],[-71.607864,41.85323299906],[-71.607826,41.85312699906],[-71.607712,41.85257699906],[-71.607803,41.85254299906],[-71.607826,41.85251599906],[-71.607857,41.85248899906],[-71.607971,41.85235199906],[-71.608009,41.85229499906],[-71.608398,41.85182999906],[-71.608475,41.85171899906],[-71.609375,41.85050999906],[-71.609528,41.85031899906],[-71.6099,41.84991899906],[-71.610108,41.84967199906],[-71.610344,41.84931599906],[-71.61055,41.84894899906],[-71.610664,41.84876599906],[-71.610825,41.84855699906],[-71.611061,41.84831199906],[-71.611145,41.84825099906],[-71.611221,41.84820899906],[-71.611328,41.84816399906],[-71.611374,41.84813699906],[-71.611427,41.84811399906],[-71.611511,41.84804899906],[-71.611549,41.84800299906],[-71.61158,41.84795399906],[-71.611618,41.84788099906],[-71.611717,41.84762999906],[-71.611748,41.84752999906],[-71.611786,41.84733999906],[-71.611794,41.84725199906],[-71.611809,41.84716399906],[-71.61184,41.84666699906],[-71.611885,41.84608799906],[-71.611897,41.84589699906],[-71.611916,41.84559599906],[-71.611984,41.84482599906],[-71.612015,41.84462399906],[-71.612061,41.84439799906],[-71.612122,41.84403999906],[-71.612236,41.84344099906],[-71.612251,41.84328099906],[-71.612251,41.84314299906],[-71.612236,41.84308199906],[-71.612228,41.84302099906],[-71.612137,41.84281499906],[-71.61161,41.84209399906],[-71.611549,41.84202199906],[-71.611481,41.84195299906],[-71.61142,41.84188099906],[-71.611145,41.84160599906],[-71.61068,41.84117499906],[-71.610138,41.84065199906],[-71.610069,41.84056099906],[-71.610039,41.84051099906],[-71.610023,41.84046599906],[-71.610008,41.84036999906],[-71.610016,41.84030499906],[-71.610039,41.84023999906],[-71.610054,41.84017199906],[-71.6101,41.84002699906],[-71.610138,41.83979799906],[-71.610107,41.83952699906],[-71.609833,41.83954199906],[-71.609535,41.83957699906],[-71.60923,41.83962199906],[-71.60891,41.83967599906],[-71.607956,41.83984799906],[-71.606133,41.84015699906],[-71.605446,41.84023699906],[-71.604889,41.84027499906],[-71.602919,41.84033599906],[-71.602669,41.84034199906],[-71.60173,41.84036599906],[-71.601227,41.84036299906],[-71.600975,41.84034699906],[-71.600815,41.84033199906],[-71.600365,41.84027099906],[-71.599174,41.84006899906],[-71.596059,41.83951299906],[-71.596031,41.83950399906],[-71.594246,41.83918799906],[-71.593754,41.83909399906],[-71.590874,41.83854299906],[-71.589172,41.83821099906],[-71.587351,41.83786399906],[-71.584572,41.83733399906],[-71.583626,41.83713899906],[-71.583176,41.83705099906],[-71.580894,41.83661999906],[-71.579956,41.83643699906],[-71.579224,41.83630399906],[-71.577238,41.83592599906],[-71.576431,41.83577299906],[-71.575874,41.83567799906],[-71.575363,41.83561699906],[-71.574753,41.83551399906],[-71.574181,41.83545299906],[-71.573471,41.83538799906],[-71.573266,41.83536499906],[-71.572884,41.83532299906],[-71.571227,41.83520399906],[-71.570816,41.83517499906],[-71.56995,41.83510499906],[-71.569888,41.83509999906],[-71.56976,41.83508999906],[-71.569627,41.83507899906],[-71.569655,41.83522099906],[-71.570078,41.83724999906],[-71.570114,41.83764599906],[-71.570639,41.83856599906],[-71.571606,41.84302099906],[-71.571838,41.84405399906],[-71.57188,41.84427699906],[-71.573027,41.85150899906],[-71.573232,41.85247599906],[-71.573395,41.85324399906],[-71.573776,41.85506399906],[-71.574112,41.85667799906],[-71.574468,41.85834799906],[-71.574628,41.85868099906],[-71.574642,41.85874799906],[-71.575144,41.85873399906],[-71.577772,41.85865299906],[-71.578454,41.85863499906],[-71.57906,41.85861999906],[-71.58341,41.85850299906],[-71.584632,41.85846499906],[-71.590012,41.85830699906],[-71.591853,41.85825299906],[-71.597599,41.85814299906],[-71.60194,41.85805899906],[-71.604491,41.85800699906],[-71.604992,41.85799899906],[-71.605259,41.85799099906],[-71.609414,41.85787099906],[-71.61075,41.85783199906],[-71.611174,41.85781999906],[-71.613133,41.85776599906]]]}}"}, +{"type": "blockgroup", "typeId": 132012, "areaId": 28990, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.610107,41.83952699906],[-71.610101,41.83925799906],[-71.610028,41.83926999906],[-71.609751,41.83922199906],[-71.609675,41.83918399906],[-71.609482,41.83913699906],[-71.609288,41.83911399906],[-71.609011,41.83909799906],[-71.608845,41.83907899906],[-71.608769,41.83907799906],[-71.608471,41.83905099906],[-71.607119,41.83867999906],[-71.605105,41.83840399906],[-71.6039,41.83788799906],[-71.602097,41.83704199906],[-71.60095,41.83680999906],[-71.599524,41.83663499906],[-71.598028,41.83644299906],[-71.596801,41.83611499906],[-71.595971,41.83564599906],[-71.595053,41.83501199906],[-71.594234,41.83423199906],[-71.593767,41.83351299906],[-71.593448,41.83275299906],[-71.593464,41.83212999906],[-71.593626,41.83132899906],[-71.593566,41.83076899906],[-71.592978,41.82951999906],[-71.592351,41.82894699906],[-71.591978,41.82825699906],[-71.591632,41.82698199906],[-71.591351,41.82582099906],[-71.59161,41.82480099906],[-71.59217,41.82322399906],[-71.593179,41.81982299906],[-71.594618,41.81678399906],[-71.59511,41.81553799906],[-71.595198,41.81477899906],[-71.595314,41.81352499906],[-71.595413,41.81243099906],[-71.597934,41.80125499906],[-71.598177,41.80024699906],[-71.598275,41.79987099906],[-71.59895,41.79759099906],[-71.599612,41.79538799906],[-71.599796,41.79494499906],[-71.600672,41.79220199906],[-71.601549,41.78945999906],[-71.601544,41.78938799906],[-71.601509,41.78939099906],[-71.60099,41.78944399906],[-71.600624,41.78947399906],[-71.600235,41.78947799906],[-71.599754,41.78947399906],[-71.599182,41.78942899906],[-71.598724,41.78935199906],[-71.598267,41.78924899906],[-71.597664,41.78908499906],[-71.597275,41.78892899906],[-71.596886,41.78875699906],[-71.596535,41.78858199906],[-71.596176,41.78836799906],[-71.595947,41.78820399906],[-71.595726,41.78803299906],[-71.595673,41.78799099906],[-71.595383,41.78771999906],[-71.595016,41.78736499906],[-71.594696,41.78703699906],[-71.59433,41.78667099906],[-71.593933,41.78626599906],[-71.593613,41.78595399906],[-71.592903,41.78523999906],[-71.592598,41.78494299906],[-71.592354,41.78469099906],[-71.59214,41.78450399906],[-71.591866,41.78430899906],[-71.591583,41.78416099906],[-71.591354,41.78404999906],[-71.591057,41.78395499906],[-71.590637,41.78385199906],[-71.590294,41.78380599906],[-71.589943,41.78379099906],[-71.589622,41.78380199906],[-71.589348,41.78383999906],[-71.588951,41.78390899906],[-71.588577,41.78400799906],[-71.58812,41.78414199906],[-71.587715,41.78424799906],[-71.587372,41.78433199906],[-71.586967,41.78440899906],[-71.586548,41.78448099906],[-71.586128,41.78451899906],[-71.585663,41.78454999906],[-71.584587,41.78459199906],[-71.583916,41.78459899906],[-71.583397,41.78459199906],[-71.582977,41.78457299906],[-71.581398,41.78445399906],[-71.58123,41.78444699906],[-71.580933,41.78444699906],[-71.580559,41.78446999906],[-71.580215,41.78451199906],[-71.579895,41.78456899906],[-71.579536,41.78464899906],[-71.579414,41.78468299906],[-71.579025,41.78483599906],[-71.578453,41.78503799906],[-71.578293,41.78509899906],[-71.578209,41.78512599906],[-71.577827,41.78525199906],[-71.577332,41.78539999906],[-71.576401,41.78565999906],[-71.575523,41.78589199906],[-71.575409,41.78592699906],[-71.574806,41.78609499906],[-71.574692,41.78612099906],[-71.574577,41.78615199906],[-71.574394,41.78620899906],[-71.574295,41.78623599906],[-71.574051,41.78629699906],[-71.573387,41.78647999906],[-71.573105,41.78654899906],[-71.572845,41.78662099906],[-71.572197,41.78679699906],[-71.572029,41.78684599906],[-71.571678,41.78693799906],[-71.571388,41.78700599906],[-71.570808,41.78716999906],[-71.570244,41.78731899906],[-71.568604,41.78776899906],[-71.568146,41.78790699906],[-71.567146,41.78818499906],[-71.566872,41.78826899906],[-71.566666,41.78832999906],[-71.566704,41.78856999906],[-71.566727,41.78864699906],[-71.566742,41.78872299906],[-71.566765,41.78899799906],[-71.566765,41.78909699906],[-71.566772,41.78915399906],[-71.566772,41.78931399906],[-71.56677,41.78934299906],[-71.566765,41.78943999906],[-71.566742,41.78957399906],[-71.566711,41.78970299906],[-71.566635,41.78994399906],[-71.566589,41.79006199906],[-71.566452,41.79045099906],[-71.566399,41.79056199906],[-71.566299,41.79069899906],[-71.565895,41.79122899906],[-71.565796,41.79137399906],[-71.565483,41.79178999906],[-71.56543,41.79187799906],[-71.565308,41.79204599906],[-71.565247,41.79214099906],[-71.565178,41.79223299906],[-71.564926,41.79261799906],[-71.564873,41.79268599906],[-71.564781,41.79282399906],[-71.564743,41.79288899906],[-71.564697,41.79295299906],[-71.564445,41.79338799906],[-71.564308,41.79366699906],[-71.56411,41.79396799906],[-71.563965,41.79424699906],[-71.563789,41.79456299906],[-71.563667,41.79485699906],[-71.563484,41.79519999906],[-71.563271,41.79546699906],[-71.563065,41.79576099906],[-71.562775,41.79613099906],[-71.562553,41.79643999906],[-71.562317,41.79671899906],[-71.562096,41.79695499906],[-71.561874,41.79711199906],[-71.561623,41.79722599906],[-71.562317,41.80051499906],[-71.562423,41.80101499906],[-71.56258,41.80181099906],[-71.563301,41.80523299906],[-71.564345,41.80960299906],[-71.564473,41.81013899906],[-71.56563,41.81498699906],[-71.565742,41.81557299906],[-71.566046,41.81717699906],[-71.567064,41.82254999906],[-71.568235,41.82850999906],[-71.569374,41.83388899906],[-71.569481,41.83439299906],[-71.569575,41.83478399906],[-71.569602,41.83497799906],[-71.569627,41.83507899906],[-71.56976,41.83508999906],[-71.569888,41.83509999906],[-71.56995,41.83510499906],[-71.570816,41.83517499906],[-71.571227,41.83520399906],[-71.572884,41.83532299906],[-71.573266,41.83536499906],[-71.573471,41.83538799906],[-71.574181,41.83545299906],[-71.574753,41.83551399906],[-71.575363,41.83561699906],[-71.575874,41.83567799906],[-71.576431,41.83577299906],[-71.577238,41.83592599906],[-71.579224,41.83630399906],[-71.579956,41.83643699906],[-71.580894,41.83661999906],[-71.583176,41.83705099906],[-71.583626,41.83713899906],[-71.584572,41.83733399906],[-71.587351,41.83786399906],[-71.589172,41.83821099906],[-71.590874,41.83854299906],[-71.593754,41.83909399906],[-71.594246,41.83918799906],[-71.596031,41.83950399906],[-71.596059,41.83951299906],[-71.599174,41.84006899906],[-71.600365,41.84027099906],[-71.600815,41.84033199906],[-71.600975,41.84034699906],[-71.601227,41.84036299906],[-71.60173,41.84036599906],[-71.602669,41.84034199906],[-71.602919,41.84033599906],[-71.604889,41.84027499906],[-71.605446,41.84023699906],[-71.606133,41.84015699906],[-71.607956,41.83984799906],[-71.60891,41.83967599906],[-71.60923,41.83962199906],[-71.609535,41.83957699906],[-71.609833,41.83954199906],[-71.610107,41.83952699906]]]}}"}, +{"type": "blockgroup", "typeId": 132013, "areaId": 28991, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.60247,41.77864399906],[-71.602251,41.77756699906],[-71.59442,41.76376999906],[-71.590329,41.75563699906],[-71.590023,41.75504799906],[-71.589855,41.75365199906],[-71.589692,41.75261599906],[-71.589246,41.75096999906],[-71.589217,41.75094299906],[-71.589107,41.75085899906],[-71.589004,41.75078699906],[-71.588899,41.75073999906],[-71.588791,41.75080499906],[-71.588669,41.75087699906],[-71.588499,41.75099099906],[-71.588352,41.75108999906],[-71.588207,41.75117299906],[-71.588196,41.75107199906],[-71.588174,41.75086299906],[-71.587929,41.75067099906],[-71.587799,41.75057599906],[-71.587593,41.75045799906],[-71.587524,41.75043499906],[-71.587387,41.75041199906],[-71.587234,41.75040399906],[-71.587112,41.75040399906],[-71.586998,41.75041999906],[-71.586929,41.75044299906],[-71.5868,41.75050399906],[-71.586624,41.75060999906],[-71.586548,41.75066399906],[-71.586281,41.75096099906],[-71.586075,41.75116699906],[-71.585747,41.75154099906],[-71.585587,41.75170899906],[-71.585487,41.75180399906],[-71.585289,41.75197599906],[-71.585205,41.75204099906],[-71.584587,41.75242999906],[-71.583984,41.75278899906],[-71.583771,41.75291099906],[-71.583641,41.75297199906],[-71.583527,41.75301699906],[-71.583046,41.75316199906],[-71.582443,41.75325399906],[-71.581551,41.75334899906],[-71.580978,41.75341399906],[-71.580582,41.75347499906],[-71.580504,41.75349799906],[-71.578304,41.75359399906],[-71.578011,41.75323899906],[-71.577942,41.75316399906],[-71.577797,41.75300599906],[-71.577583,41.75278899906],[-71.577484,41.75269299906],[-71.577255,41.75240699906],[-71.576996,41.75213599906],[-71.576706,41.75178499906],[-71.576157,41.75130499906],[-71.575943,41.75112499906],[-71.575714,41.75099199906],[-71.575615,41.75073999906],[-71.575439,41.75045399906],[-71.575333,41.75030499906],[-71.575157,41.75008799906],[-71.575111,41.75003799906],[-71.574883,41.74975199906],[-71.574615,41.74944699906],[-71.574402,41.74917599906],[-71.574112,41.74882899906],[-71.573814,41.74851599906],[-71.573608,41.74824099906],[-71.573364,41.74794799906],[-71.573151,41.74766899906],[-71.573076,41.74760399906],[-71.572701,41.74771799906],[-71.5726,41.74775599906],[-71.572535,41.74780599906],[-71.572492,41.74786099906],[-71.572461,41.74792899906],[-71.572449,41.74800899906],[-71.572255,41.74809099906],[-71.572143,41.74812299906],[-71.572035,41.74812899906],[-71.571936,41.74814099906],[-71.571794,41.74818399906],[-71.571768,41.74821599906],[-71.571746,41.74826899906],[-71.571734,41.74832499906],[-71.571696,41.74843999906],[-71.571668,41.74856599906],[-71.571636,41.74861499906],[-71.571618,41.74867299906],[-71.571624,41.74873299906],[-71.571661,41.74884599906],[-71.571645,41.74919199906],[-71.571653,41.74925599906],[-71.571723,41.74929999906],[-71.571814,41.74932699906],[-71.571887,41.74935799906],[-71.571946,41.74940099906],[-71.571991,41.74945399906],[-71.572018,41.74950999906],[-71.572089,41.74961099906],[-71.572116,41.74967899906],[-71.572319,41.74984299906],[-71.572352,41.74989799906],[-71.572393,41.74995099906],[-71.57241,41.75000599906],[-71.572432,41.75012399906],[-71.572475,41.75017499906],[-71.572522,41.75024099906],[-71.572581,41.75039599906],[-71.57261,41.75059499906],[-71.572586,41.75066099906],[-71.572458,41.75073599906],[-71.572413,41.75077899906],[-71.572405,41.75089599906],[-71.572452,41.75093299906],[-71.572573,41.75101099906],[-71.572682,41.75111799906],[-71.572694,41.75117299906],[-71.572695,41.75123999906],[-71.572685,41.75137999906],[-71.572645,41.75145099906],[-71.572525,41.75154599906],[-71.57248,41.75159099906],[-71.572447,41.75164199906],[-71.57242,41.75170399906],[-71.572392,41.75201599906],[-71.572374,41.75207599906],[-71.572372,41.75215799906],[-71.572389,41.75222799906],[-71.572446,41.75226599906],[-71.57249,41.75232099906],[-71.572575,41.75249499906],[-71.572626,41.75256299906],[-71.572691,41.75262899906],[-71.572495,41.75271999906],[-71.572273,41.75291099906],[-71.572014,41.75312399906],[-71.571815,41.75318499906],[-71.571671,41.75322699906],[-71.571144,41.75334199906],[-71.570854,41.75337599906],[-71.571236,41.75221599906],[-71.571274,41.75202899906],[-71.571312,41.75180399906],[-71.571312,41.75160199906],[-71.571297,41.75137299906],[-71.571251,41.75118599906],[-71.571167,41.75093799906],[-71.57103,41.75068999906],[-71.570877,41.75044599906],[-71.570702,41.75023299906],[-71.57045,41.74997299906],[-71.570251,41.74973699906],[-71.570053,41.74943899906],[-71.569939,41.74917199906],[-71.56987,41.74889799906],[-71.569824,41.74853499906],[-71.569756,41.74815799906],[-71.569527,41.74677299906],[-71.56945,41.74626499906],[-71.569397,41.74598299906],[-71.569305,41.74559799906],[-71.569275,41.74547599906],[-71.569115,41.74509799906],[-71.568665,41.74409499906],[-71.568451,41.74360299906],[-71.568298,41.74327499906],[-71.568108,41.74294299906],[-71.567917,41.74257699906],[-71.567734,41.74225199906],[-71.567413,41.74165699906],[-71.56737,41.74157499906],[-71.567245,41.74133299906],[-71.567181,41.74121699906],[-71.566818,41.74055899906],[-71.566673,41.74027299906],[-71.566406,41.73979899906],[-71.566277,41.73959399906],[-71.565994,41.73924299906],[-71.56575,41.73899499906],[-71.565224,41.73849499906],[-71.565002,41.73829299906],[-71.564705,41.73800699906],[-71.564598,41.73791499906],[-71.564376,41.73770799906],[-71.56427,41.73760999906],[-71.564041,41.73738099906],[-71.563965,41.73728899906],[-71.56385,41.73711399906],[-71.563766,41.73693099906],[-71.563705,41.73677399906],[-71.56366,41.73661399906],[-71.563591,41.73639699906],[-71.563522,41.73614899906],[-71.563469,41.73587399906],[-71.563461,41.73581699906],[-71.5634,41.73535899906],[-71.563377,41.73502299906],[-71.563362,41.73471799906],[-71.563347,41.73454299906],[-71.563323,41.73441699906],[-71.563309,41.73433699906],[-71.563232,41.73412299906],[-71.563156,41.73394399906],[-71.563042,41.73373799906],[-71.562889,41.73347099906],[-71.562706,41.73318499906],[-71.562683,41.73302099906],[-71.562683,41.73282599906],[-71.562706,41.73255199906],[-71.562729,41.73223099906],[-71.562767,41.73184599906],[-71.56279,41.73152899906],[-71.562851,41.73071299906],[-71.562856,41.73062699906],[-71.562881,41.73024399906],[-71.562893,41.73012099906],[-71.562909,41.72995299906],[-71.562927,41.72976699906],[-71.562935,41.72971299906],[-71.562938,41.72967199906],[-71.562595,41.72967999906],[-71.562364,41.72968699906],[-71.560295,41.72973999906],[-71.560138,41.72974299906],[-71.557477,41.72981199906],[-71.556751,41.72982999906],[-71.556174,41.72984499906],[-71.554597,41.72988599906],[-71.554397,41.72989099906],[-71.552952,41.72992799906],[-71.552219,41.72994299906],[-71.550922,41.72996999906],[-71.550105,41.72998399906],[-71.550038,41.72998499906],[-71.549722,41.72998899906],[-71.549615,41.72998899906],[-71.548921,41.72999699906],[-71.548833,41.72999599906],[-71.548515,41.73000099906],[-71.547578,41.73002199906],[-71.54743,41.73002499906],[-71.547429,41.73030599906],[-71.547426,41.73106499906],[-71.547425,41.73124199906],[-71.547353,41.73120299906],[-71.547369,41.73127399906],[-71.547455,41.73165499906],[-71.54747,41.73166999906],[-71.547562,41.73180399906],[-71.547607,41.73192999906],[-71.54763,41.73198299906],[-71.547699,41.73227699906],[-71.547737,41.73256699906],[-71.547813,41.73302799906],[-71.547833,41.73315399906],[-71.547874,41.73340999906],[-71.547974,41.73387499906],[-71.548012,41.73413099906],[-71.548019,41.73419999906],[-71.548088,41.73447399906],[-71.54818,41.73475299906],[-71.548294,41.73517199906],[-71.548454,41.73565299906],[-71.548584,41.73599199906],[-71.548676,41.73631799906],[-71.548683,41.73634299906],[-71.548775,41.73660699906],[-71.548904,41.73719799906],[-71.549042,41.73786499906],[-71.549118,41.73832699906],[-71.549171,41.73857499906],[-71.549316,41.73941799906],[-71.549385,41.73978399906],[-71.549469,41.74014999906],[-71.5495,41.74034499906],[-71.549805,41.74188599906],[-71.549835,41.74198899906],[-71.549942,41.74243499906],[-71.550041,41.74285499906],[-71.550285,41.74399199906],[-71.550438,41.74468999906],[-71.550465,41.74480199906],[-71.550613,41.74540299906],[-71.5507,41.74585599906],[-71.550766,41.74619699906],[-71.550926,41.74697099906],[-71.551003,41.74726499906],[-71.551086,41.74763899906],[-71.551292,41.74872599906],[-71.551376,41.74914599906],[-71.551514,41.74978299906],[-71.551582,41.75015999906],[-71.551819,41.75123599906],[-71.551895,41.75159599906],[-71.551971,41.75196099906],[-71.552078,41.75243399906],[-71.55217,41.75291099906],[-71.552467,41.75434899906],[-71.552574,41.75490999906],[-71.552696,41.75545499906],[-71.55296,41.75639199906],[-71.553093,41.75686299906],[-71.553165,41.75698399906],[-71.553815,41.76056799906],[-71.553957,41.76140799906],[-71.554752,41.76520399906],[-71.554766,41.76527099906],[-71.555231,41.76749699906],[-71.555615,41.76933399906],[-71.556044,41.77178499906],[-71.556427,41.77401099906],[-71.55672,41.77503599906],[-71.557652,41.77951999906],[-71.557796,41.78038599906],[-71.558264,41.78318199906],[-71.558893,41.78696099906],[-71.55929,41.78934399906],[-71.559856,41.78936799906],[-71.560009,41.79006199906],[-71.560075,41.79036999906],[-71.561209,41.79555999906],[-71.561623,41.79722599906],[-71.561874,41.79711199906],[-71.562096,41.79695499906],[-71.562317,41.79671899906],[-71.562553,41.79643999906],[-71.562775,41.79613099906],[-71.563065,41.79576099906],[-71.563271,41.79546699906],[-71.563484,41.79519999906],[-71.563667,41.79485699906],[-71.563789,41.79456299906],[-71.563965,41.79424699906],[-71.56411,41.79396799906],[-71.564308,41.79366699906],[-71.564445,41.79338799906],[-71.564697,41.79295299906],[-71.564743,41.79288899906],[-71.564781,41.79282399906],[-71.564873,41.79268599906],[-71.564926,41.79261799906],[-71.565178,41.79223299906],[-71.565247,41.79214099906],[-71.565308,41.79204599906],[-71.56543,41.79187799906],[-71.565483,41.79178999906],[-71.565796,41.79137399906],[-71.565895,41.79122899906],[-71.566299,41.79069899906],[-71.566399,41.79056199906],[-71.566452,41.79045099906],[-71.566589,41.79006199906],[-71.566635,41.78994399906],[-71.566711,41.78970299906],[-71.566742,41.78957399906],[-71.566765,41.78943999906],[-71.56677,41.78934299906],[-71.566772,41.78931399906],[-71.566772,41.78915399906],[-71.566765,41.78909699906],[-71.566765,41.78899799906],[-71.566742,41.78872299906],[-71.566727,41.78864699906],[-71.566704,41.78856999906],[-71.566666,41.78832999906],[-71.566872,41.78826899906],[-71.567146,41.78818499906],[-71.568146,41.78790699906],[-71.568604,41.78776899906],[-71.570244,41.78731899906],[-71.570808,41.78716999906],[-71.571388,41.78700599906],[-71.571678,41.78693799906],[-71.572029,41.78684599906],[-71.572197,41.78679699906],[-71.572845,41.78662099906],[-71.573105,41.78654899906],[-71.573387,41.78647999906],[-71.574051,41.78629699906],[-71.574295,41.78623599906],[-71.574394,41.78620899906],[-71.574577,41.78615199906],[-71.574692,41.78612099906],[-71.574806,41.78609499906],[-71.575409,41.78592699906],[-71.575523,41.78589199906],[-71.576401,41.78565999906],[-71.577332,41.78539999906],[-71.577827,41.78525199906],[-71.578209,41.78512599906],[-71.578293,41.78509899906],[-71.578453,41.78503799906],[-71.579025,41.78483599906],[-71.579414,41.78468299906],[-71.579536,41.78464899906],[-71.579895,41.78456899906],[-71.580215,41.78451199906],[-71.580559,41.78446999906],[-71.580933,41.78444699906],[-71.58123,41.78444699906],[-71.581398,41.78445399906],[-71.582977,41.78457299906],[-71.583397,41.78459199906],[-71.583916,41.78459899906],[-71.584587,41.78459199906],[-71.585663,41.78454999906],[-71.586128,41.78451899906],[-71.586548,41.78448099906],[-71.586967,41.78440899906],[-71.587372,41.78433199906],[-71.587715,41.78424799906],[-71.58812,41.78414199906],[-71.588577,41.78400799906],[-71.588951,41.78390899906],[-71.589348,41.78383999906],[-71.589622,41.78380199906],[-71.589943,41.78379099906],[-71.590294,41.78380599906],[-71.590637,41.78385199906],[-71.591057,41.78395499906],[-71.591354,41.78404999906],[-71.591583,41.78416099906],[-71.591866,41.78430899906],[-71.59214,41.78450399906],[-71.592354,41.78469099906],[-71.592598,41.78494299906],[-71.592903,41.78523999906],[-71.593613,41.78595399906],[-71.593933,41.78626599906],[-71.59433,41.78667099906],[-71.594696,41.78703699906],[-71.595016,41.78736499906],[-71.595383,41.78771999906],[-71.595673,41.78799099906],[-71.595726,41.78803299906],[-71.595947,41.78820399906],[-71.596176,41.78836799906],[-71.596535,41.78858199906],[-71.596886,41.78875699906],[-71.597275,41.78892899906],[-71.597664,41.78908499906],[-71.598267,41.78924899906],[-71.598724,41.78935199906],[-71.599182,41.78942899906],[-71.599754,41.78947399906],[-71.600235,41.78947799906],[-71.600624,41.78947399906],[-71.60099,41.78944399906],[-71.601509,41.78939099906],[-71.601544,41.78938799906],[-71.601539,41.78930499906],[-71.60247,41.77864399906]]]}}"}, +{"type": "blockgroup", "typeId": 132014, "areaId": 28992, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.597034,41.74048399906],[-71.596991,41.74042399906],[-71.596889,41.74034799906],[-71.596801,41.74033999906],[-71.596565,41.74034399906],[-71.596463,41.74033799906],[-71.596391,41.74031399906],[-71.596322,41.74026399906],[-71.596272,41.74019299906],[-71.596263,41.74011699906],[-71.596295,41.73997399906],[-71.596282,41.73983199906],[-71.596267,41.73976499906],[-71.596238,41.73970699906],[-71.596193,41.73965099906],[-71.596071,41.73952399906],[-71.596016,41.73945899906],[-71.595989,41.73938499906],[-71.595997,41.73917399906],[-71.596012,41.73897299906],[-71.596013,41.73882699906],[-71.596008,41.73875599906],[-71.595925,41.73854499906],[-71.595877,41.73847999906],[-71.595696,41.73826099906],[-71.595416,41.73802999906],[-71.595275,41.73787799906],[-71.595045,41.73771299906],[-71.594713,41.73748399906],[-71.594649,41.73744799906],[-71.594396,41.73735499906],[-71.594263,41.73729699906],[-71.594166,41.73727499906],[-71.594085,41.73727299906],[-71.594003,41.73729099906],[-71.593935,41.73732699906],[-71.59387,41.73736699906],[-71.593804,41.73739899906],[-71.593734,41.73742099906],[-71.593661,41.73742599906],[-71.593588,41.73741499906],[-71.593526,41.73738399906],[-71.593467,41.73734199906],[-71.593322,41.73725499906],[-71.593243,41.73721399906],[-71.592906,41.73708099906],[-71.592839,41.73704599906],[-71.592672,41.73691599906],[-71.592624,41.73689799906],[-71.592468,41.73680799906],[-71.592383,41.73678299906],[-71.59229,41.73677299906],[-71.592199,41.73677499906],[-71.592023,41.73678899906],[-71.591937,41.73680399906],[-71.591852,41.73682899906],[-71.591758,41.73683999906],[-71.591666,41.73681999906],[-71.591486,41.73676799906],[-71.591392,41.73674999906],[-71.591301,41.73675699906],[-71.591202,41.73677799906],[-71.591104,41.73680399906],[-71.591013,41.73681999906],[-71.590933,41.73682699906],[-71.590837,41.73682699906],[-71.590761,41.73682099906],[-71.59069,41.73679699906],[-71.590601,41.73678599906],[-71.590219,41.73678699906],[-71.590034,41.73679299906],[-71.589878,41.73682299906],[-71.589795,41.73685499906],[-71.589714,41.73689899906],[-71.589636,41.73695099906],[-71.589569,41.73701099906],[-71.589369,41.73721099906],[-71.589311,41.73729199906],[-71.589155,41.73761799906],[-71.588954,41.73800699906],[-71.588912,41.73806399906],[-71.588882,41.73811599906],[-71.588858,41.73817899906],[-71.588809,41.73824299906],[-71.588738,41.73831399906],[-71.588657,41.73836899906],[-71.588574,41.73840399906],[-71.588489,41.73841199906],[-71.588404,41.73840399906],[-71.588307,41.73839399906],[-71.58768,41.73830199906],[-71.587591,41.73829499906],[-71.587312,41.73829699906],[-71.587152,41.73830399906],[-71.586917,41.73833099906],[-71.586832,41.73833499906],[-71.586742,41.73834499906],[-71.586655,41.73835999906],[-71.586574,41.73838799906],[-71.586444,41.73849099906],[-71.58638,41.73851999906],[-71.586304,41.73853099906],[-71.586141,41.73853099906],[-71.586069,41.73851899906],[-71.58603,41.73850699906],[-71.58599,41.73852799906],[-71.585821,41.73859299906],[-71.585582,41.73861299906],[-71.585462,41.73863199906],[-71.585325,41.73865299906],[-71.585216,41.73867099906],[-71.585069,41.73871799906],[-71.584976,41.73875999906],[-71.584915,41.73880199906],[-71.584877,41.73885299906],[-71.58475,41.73911399906],[-71.584721,41.73918299906],[-71.584615,41.73938799906],[-71.584568,41.73945199906],[-71.58451,41.73951099906],[-71.584321,41.73964999906],[-71.58404,41.73981299906],[-71.584002,41.73980699906],[-71.583926,41.73980199906],[-71.583851,41.73980199906],[-71.58367,41.73981699906],[-71.583591,41.73980599906],[-71.583497,41.73980699906],[-71.583308,41.73983299906],[-71.58323,41.73984899906],[-71.583156,41.73985499906],[-71.58307,41.73984099906],[-71.58297,41.73984399906],[-71.582795,41.73984499906],[-71.582724,41.73987799906],[-71.582625,41.73990299906],[-71.582543,41.73992899906],[-71.58234,41.74005399906],[-71.582185,41.74011099906],[-71.5821,41.74013299906],[-71.582004,41.74014399906],[-71.581831,41.74014199906],[-71.58173,41.74012799906],[-71.581644,41.74012099906],[-71.581556,41.74010499906],[-71.581484,41.74007699906],[-71.581418,41.74004599906],[-71.581374,41.73998999906],[-71.581311,41.73986799906],[-71.581267,41.73981899906],[-71.581188,41.73978999906],[-71.581106,41.73978999906],[-71.581037,41.73980499906],[-71.58099,41.73984399906],[-71.580571,41.73999399906],[-71.580306,41.73990499906],[-71.580206,41.73989499906],[-71.580131,41.73990499906],[-71.580045,41.73992299906],[-71.579998,41.73993699906],[-71.57998,41.73999399906],[-71.57998,41.74005199906],[-71.579958,41.74011599906],[-71.579931,41.74017099906],[-71.579869,41.74021699906],[-71.579806,41.74018999906],[-71.579726,41.74018999906],[-71.579641,41.74020099906],[-71.579566,41.74020599906],[-71.57934,41.74020199906],[-71.579187,41.74020599906],[-71.579068,41.74020899906],[-71.578974,41.74021599906],[-71.578857,41.74009299906],[-71.578506,41.73958999906],[-71.578178,41.73923899906],[-71.577995,41.73912799906],[-71.577896,41.73906299906],[-71.577568,41.73887999906],[-71.577248,41.73871199906],[-71.577049,41.73857099906],[-71.576744,41.73812899906],[-71.57798,41.73791499906],[-71.578423,41.73784299906],[-71.578751,41.73775899906],[-71.579041,41.73766299906],[-71.579597,41.73739199906],[-71.579872,41.73727799906],[-71.580177,41.73716399906],[-71.580544,41.73709099906],[-71.581039,41.73704099906],[-71.582672,41.73685199906],[-71.582653,41.73676099906],[-71.582667,41.73665899906],[-71.58269,41.73661799906],[-71.582708,41.73656199906],[-71.582708,41.73650699906],[-71.582741,41.73646399906],[-71.582747,41.73643599906],[-71.582522,41.73625299906],[-71.582489,41.73618799906],[-71.582504,41.73611899906],[-71.582577,41.73601899906],[-71.582647,41.73599299906],[-71.582709,41.73595399906],[-71.582744,41.73589099906],[-71.582722,41.73584399906],[-71.582739,41.73578299906],[-71.582793,41.73573999906],[-71.582864,41.73570899906],[-71.582886,41.73569499906],[-71.582923,41.73567199906],[-71.582954,41.73562099906],[-71.582972,41.73555399906],[-71.583004,41.73536699906],[-71.583008,41.73524699906],[-71.58302,41.73512499906],[-71.583068,41.73508299906],[-71.583142,41.73505199906],[-71.5832,41.73499999906],[-71.583282,41.73499599906],[-71.583363,41.73498099906],[-71.583416,41.73494199906],[-71.583481,41.73491199906],[-71.583513,41.73487099906],[-71.583499,41.73480799906],[-71.583532,41.73478099906],[-71.583613,41.73476099906],[-71.583764,41.73473699906],[-71.583998,41.73470999906],[-71.584091,41.73468399906],[-71.584178,41.73464899906],[-71.584248,41.73460899906],[-71.584289,41.73456399906],[-71.584289,41.73443899906],[-71.58437,41.73433199906],[-71.584386,41.73426999906],[-71.584389,41.73421599906],[-71.584436,41.73417499906],[-71.584506,41.73414799906],[-71.584569,41.73409999906],[-71.584592,41.73404299906],[-71.584598,41.73397099906],[-71.584617,41.73390299906],[-71.584648,41.73384899906],[-71.58479,41.73351999906],[-71.584834,41.73338899906],[-71.584872,41.73323899906],[-71.584881,41.73302699906],[-71.58488,41.73294999906],[-71.584858,41.73275999906],[-71.584855,41.73251999906],[-71.584841,41.73244099906],[-71.584811,41.73237199906],[-71.584729,41.73225799906],[-71.584568,41.73208399906],[-71.584477,41.73196999906],[-71.584414,41.73192099906],[-71.584339,41.73189599906],[-71.584274,41.73186099906],[-71.584236,41.73180799906],[-71.584174,41.73167099906],[-71.584908,41.73116299906],[-71.585281,41.73106799906],[-71.585739,41.73094599906],[-71.586105,41.73083499906],[-71.586212,41.73079299906],[-71.586273,41.73076199906],[-71.586319,41.73072799906],[-71.586365,41.73067099906],[-71.586426,41.73057199906],[-71.586456,41.73049199906],[-71.586502,41.73033099906],[-71.586517,41.73000299906],[-71.586517,41.72976299906],[-71.586494,41.72953799906],[-71.586411,41.72930899906],[-71.586205,41.72930499906],[-71.586189,41.72913599906],[-71.586186,41.72910499906],[-71.581093,41.72922999906],[-71.580411,41.72924499906],[-71.579879,41.72925999906],[-71.576525,41.72933999906],[-71.573168,41.72942199906],[-71.57038,41.72948999906],[-71.569776,41.72950499906],[-71.569442,41.72951299906],[-71.569277,41.72951699906],[-71.567787,41.72955399906],[-71.56663,41.72958199906],[-71.563128,41.72966699906],[-71.562938,41.72967199906],[-71.562935,41.72971299906],[-71.562927,41.72976699906],[-71.562909,41.72995299906],[-71.562893,41.73012099906],[-71.562881,41.73024399906],[-71.562856,41.73062699906],[-71.562851,41.73071299906],[-71.56279,41.73152899906],[-71.562767,41.73184599906],[-71.562729,41.73223099906],[-71.562706,41.73255199906],[-71.562683,41.73282599906],[-71.562683,41.73302099906],[-71.562706,41.73318499906],[-71.562889,41.73347099906],[-71.563042,41.73373799906],[-71.563156,41.73394399906],[-71.563232,41.73412299906],[-71.563309,41.73433699906],[-71.563323,41.73441699906],[-71.563347,41.73454299906],[-71.563362,41.73471799906],[-71.563377,41.73502299906],[-71.5634,41.73535899906],[-71.563461,41.73581699906],[-71.563469,41.73587399906],[-71.563522,41.73614899906],[-71.563591,41.73639699906],[-71.56366,41.73661399906],[-71.563705,41.73677399906],[-71.563766,41.73693099906],[-71.56385,41.73711399906],[-71.563965,41.73728899906],[-71.564041,41.73738099906],[-71.56427,41.73760999906],[-71.564376,41.73770799906],[-71.564598,41.73791499906],[-71.564705,41.73800699906],[-71.565002,41.73829299906],[-71.565224,41.73849499906],[-71.56575,41.73899499906],[-71.565994,41.73924299906],[-71.566277,41.73959399906],[-71.566406,41.73979899906],[-71.566673,41.74027299906],[-71.566818,41.74055899906],[-71.567181,41.74121699906],[-71.567245,41.74133299906],[-71.56737,41.74157499906],[-71.567413,41.74165699906],[-71.567734,41.74225199906],[-71.567917,41.74257699906],[-71.568108,41.74294299906],[-71.568298,41.74327499906],[-71.568451,41.74360299906],[-71.568665,41.74409499906],[-71.569115,41.74509799906],[-71.569275,41.74547599906],[-71.569305,41.74559799906],[-71.569397,41.74598299906],[-71.56945,41.74626499906],[-71.569527,41.74677299906],[-71.569756,41.74815799906],[-71.569824,41.74853499906],[-71.56987,41.74889799906],[-71.569939,41.74917199906],[-71.570053,41.74943899906],[-71.570251,41.74973699906],[-71.57045,41.74997299906],[-71.570702,41.75023299906],[-71.570877,41.75044599906],[-71.57103,41.75068999906],[-71.571167,41.75093799906],[-71.571251,41.75118599906],[-71.571297,41.75137299906],[-71.571312,41.75160199906],[-71.571312,41.75180399906],[-71.571274,41.75202899906],[-71.571236,41.75221599906],[-71.570854,41.75337599906],[-71.571144,41.75334199906],[-71.571671,41.75322699906],[-71.571815,41.75318499906],[-71.572014,41.75312399906],[-71.572273,41.75291099906],[-71.572495,41.75271999906],[-71.572691,41.75262899906],[-71.572626,41.75256299906],[-71.572575,41.75249499906],[-71.57249,41.75232099906],[-71.572446,41.75226599906],[-71.572389,41.75222799906],[-71.572372,41.75215799906],[-71.572374,41.75207599906],[-71.572392,41.75201599906],[-71.57242,41.75170399906],[-71.572447,41.75164199906],[-71.57248,41.75159099906],[-71.572525,41.75154599906],[-71.572645,41.75145099906],[-71.572685,41.75137999906],[-71.572695,41.75123999906],[-71.572694,41.75117299906],[-71.572682,41.75111799906],[-71.572573,41.75101099906],[-71.572452,41.75093299906],[-71.572405,41.75089599906],[-71.572413,41.75077899906],[-71.572458,41.75073599906],[-71.572586,41.75066099906],[-71.57261,41.75059499906],[-71.572581,41.75039599906],[-71.572522,41.75024099906],[-71.572475,41.75017499906],[-71.572432,41.75012399906],[-71.57241,41.75000599906],[-71.572393,41.74995099906],[-71.572352,41.74989799906],[-71.572319,41.74984299906],[-71.572116,41.74967899906],[-71.572089,41.74961099906],[-71.572018,41.74950999906],[-71.571991,41.74945399906],[-71.571946,41.74940099906],[-71.571887,41.74935799906],[-71.571814,41.74932699906],[-71.571723,41.74929999906],[-71.571653,41.74925599906],[-71.571645,41.74919199906],[-71.571661,41.74884599906],[-71.571624,41.74873299906],[-71.571618,41.74867299906],[-71.571636,41.74861499906],[-71.571668,41.74856599906],[-71.571696,41.74843999906],[-71.571734,41.74832499906],[-71.571746,41.74826899906],[-71.571768,41.74821599906],[-71.571794,41.74818399906],[-71.571936,41.74814099906],[-71.572035,41.74812899906],[-71.572143,41.74812299906],[-71.572255,41.74809099906],[-71.572449,41.74800899906],[-71.572461,41.74792899906],[-71.572492,41.74786099906],[-71.572535,41.74780599906],[-71.5726,41.74775599906],[-71.572701,41.74771799906],[-71.573076,41.74760399906],[-71.573151,41.74766899906],[-71.573364,41.74794799906],[-71.573608,41.74824099906],[-71.573814,41.74851599906],[-71.574112,41.74882899906],[-71.574402,41.74917599906],[-71.574615,41.74944699906],[-71.574883,41.74975199906],[-71.575111,41.75003799906],[-71.575157,41.75008799906],[-71.575333,41.75030499906],[-71.575439,41.75045399906],[-71.575615,41.75073999906],[-71.575714,41.75099199906],[-71.575943,41.75112499906],[-71.576157,41.75130499906],[-71.576706,41.75178499906],[-71.576996,41.75213599906],[-71.577255,41.75240699906],[-71.577484,41.75269299906],[-71.577583,41.75278899906],[-71.577797,41.75300599906],[-71.577942,41.75316399906],[-71.578011,41.75323899906],[-71.578304,41.75359399906],[-71.580504,41.75349799906],[-71.580582,41.75347499906],[-71.580978,41.75341399906],[-71.581551,41.75334899906],[-71.582443,41.75325399906],[-71.583046,41.75316199906],[-71.583527,41.75301699906],[-71.583641,41.75297199906],[-71.583771,41.75291099906],[-71.583984,41.75278899906],[-71.584587,41.75242999906],[-71.585205,41.75204099906],[-71.585289,41.75197599906],[-71.585487,41.75180399906],[-71.585587,41.75170899906],[-71.585747,41.75154099906],[-71.586075,41.75116699906],[-71.586281,41.75096099906],[-71.586548,41.75066399906],[-71.586624,41.75060999906],[-71.5868,41.75050399906],[-71.586929,41.75044299906],[-71.586998,41.75041999906],[-71.587112,41.75040399906],[-71.587234,41.75040399906],[-71.587387,41.75041199906],[-71.587524,41.75043499906],[-71.587593,41.75045799906],[-71.587799,41.75057599906],[-71.587929,41.75067099906],[-71.588174,41.75086299906],[-71.588196,41.75107199906],[-71.588207,41.75117299906],[-71.588352,41.75108999906],[-71.588499,41.75099099906],[-71.588669,41.75087699906],[-71.588791,41.75080499906],[-71.588899,41.75073999906],[-71.589188,41.75056799906],[-71.589415,41.75042799906],[-71.589706,41.75024799906],[-71.589783,41.75018699906],[-71.589928,41.75003799906],[-71.59005,41.74983999906],[-71.590126,41.74966799906],[-71.590157,41.74953799906],[-71.590195,41.74925999906],[-71.590202,41.74913799906],[-71.590256,41.74876399906],[-71.59034,41.74848899906],[-71.590408,41.74830599906],[-71.590454,41.74819899906],[-71.590599,41.74789799906],[-71.591064,41.74698999906],[-71.591156,41.74683399906],[-71.591316,41.74659299906],[-71.591408,41.74648699906],[-71.59166,41.74621999906],[-71.591751,41.74613599906],[-71.592079,41.74589499906],[-71.59227,41.74576599906],[-71.592445,41.74566299906],[-71.59285,41.74541099906],[-71.593857,41.74480399906],[-71.593979,41.74474299906],[-71.594204,41.74465999906],[-71.594299,41.74462499906],[-71.594482,41.74457599906],[-71.594589,41.74447999906],[-71.594666,41.74440399906],[-71.594994,41.74414099906],[-71.595177,41.74396899906],[-71.595352,41.74382799906],[-71.595512,41.74362599906],[-71.595558,41.74355699906],[-71.59565,41.74336599906],[-71.595856,41.74296199906],[-71.595886,41.74292399906],[-71.595985,41.74276699906],[-71.596092,41.74261899906],[-71.596214,41.74249299906],[-71.596283,41.74240499906],[-71.596397,41.74229399906],[-71.596512,41.74216799906],[-71.596588,41.74207299906],[-71.596619,41.74201599906],[-71.596687,41.74182899906],[-71.596695,41.74170699906],[-71.596779,41.74098599906],[-71.596802,41.74085599906],[-71.596832,41.74076499906],[-71.596886,41.74064999906],[-71.596992,41.74052399906],[-71.597034,41.74048399906]]]}}"}, +{"type": "blockgroup", "typeId": 132021, "areaId": 28993, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.69101,41.85645699906],[-71.690992,41.85630899906],[-71.690336,41.85227799906],[-71.690294,41.85202499906],[-71.690017,41.85031799906],[-71.689875,41.84954599906],[-71.689797,41.84906099906],[-71.689708,41.84850099906],[-71.689621,41.84796099906],[-71.689573,41.84768999906],[-71.689076,41.84487899906],[-71.688924,41.84430899906],[-71.688705,41.84336499906],[-71.688183,41.84031999906],[-71.686527,41.83071599906],[-71.686452,41.83028999906],[-71.686315,41.82941699906],[-71.686268,41.82914199906],[-71.685942,41.82774499906],[-71.685806,41.82698199906],[-71.68563,41.82615999906],[-71.685578,41.82565799906],[-71.6855,41.82537999906],[-71.685425,41.82539399906],[-71.685211,41.82543899906],[-71.683411,41.82578999906],[-71.683174,41.82582499906],[-71.682838,41.82585899906],[-71.682426,41.82589299906],[-71.681778,41.82592799906],[-71.680565,41.82598499906],[-71.680168,41.82599999906],[-71.679306,41.82604599906],[-71.678795,41.82606899906],[-71.678436,41.82607699906],[-71.677994,41.82606499906],[-71.677848,41.82605899906],[-71.67765,41.82604999906],[-71.677391,41.82602699906],[-71.677139,41.82600399906],[-71.676491,41.82592799906],[-71.676414,41.82591599906],[-71.676003,41.82586699906],[-71.675903,41.82585899906],[-71.675244,41.82583999906],[-71.674858,41.82582899906],[-71.674545,41.82585899906],[-71.674156,41.82593499906],[-71.674768,41.82575799906],[-71.675634,41.82581799906],[-71.67466,41.82566799906],[-71.674385,41.82563399906],[-71.673996,41.82558799906],[-71.673416,41.82552699906],[-71.672585,41.82548099906],[-71.672302,41.82547799906],[-71.671875,41.82549299906],[-71.670876,41.82547399906],[-71.670387,41.82545499906],[-71.669388,41.82544699906],[-71.667358,41.82539699906],[-71.666191,41.82537499906],[-71.665253,41.82534799906],[-71.663933,41.82532099906],[-71.663673,41.82532499906],[-71.663422,41.82533599906],[-71.663048,41.82538199906],[-71.662766,41.82542799906],[-71.6623,41.82553899906],[-71.661232,41.82585499906],[-71.660233,41.82614499906],[-71.659912,41.82625199906],[-71.658745,41.82659499906],[-71.658363,41.82671699906],[-71.658028,41.82681699906],[-71.657852,41.82686199906],[-71.657501,41.82693899906],[-71.657021,41.82703399906],[-71.65686,41.82706099906],[-71.656334,41.82712199906],[-71.655449,41.82718299906],[-71.654678,41.82722099906],[-71.653404,41.82729699906],[-71.653058,41.82731499906],[-71.652687,41.82733499906],[-71.651985,41.82738499906],[-71.650749,41.82745399906],[-71.648224,41.82761399906],[-71.647339,41.82766699906],[-71.646568,41.82771299906],[-71.646332,41.82772099906],[-71.645851,41.82772099906],[-71.645668,41.82771699906],[-71.645576,41.82770899906],[-71.645439,41.82770499906],[-71.64518,41.82768599906],[-71.644691,41.82761799906],[-71.643311,41.82732799906],[-71.640999,41.82686199906],[-71.640656,41.82680499906],[-71.640358,41.82676699906],[-71.640205,41.82675899906],[-71.639771,41.82675199906],[-71.639725,41.82675599906],[-71.639641,41.82675599906],[-71.639412,41.82677099906],[-71.63932,41.82677499906],[-71.638962,41.82681699906],[-71.638786,41.82684299906],[-71.638596,41.82687399906],[-71.63842,41.82691199906],[-71.638069,41.82700699906],[-71.637794,41.82710299906],[-71.636803,41.82747699906],[-71.636169,41.82773199906],[-71.634552,41.82837299906],[-71.633591,41.82874699906],[-71.630989,41.82977699906],[-71.630196,41.83008199906],[-71.630096,41.83012399906],[-71.629608,41.83030299906],[-71.62944,41.83035699906],[-71.62912,41.83043699906],[-71.628998,41.83046299906],[-71.628754,41.83050199906],[-71.628632,41.83051699906],[-71.628242,41.83053999906],[-71.626561,41.83058899906],[-71.626137,41.83060099906],[-71.625107,41.83062399906],[-71.624572,41.83063999906],[-71.624123,41.83065399906],[-71.623535,41.83068099906],[-71.623253,41.83070399906],[-71.623093,41.83072199906],[-71.622665,41.83077199906],[-71.621651,41.83091399906],[-71.620712,41.83103899906],[-71.619678,41.83118299906],[-71.618813,41.83130299906],[-71.61776,41.83142099906],[-71.617348,41.83145099906],[-71.617134,41.83146299906],[-71.615723,41.83156999906],[-71.614952,41.83162299906],[-71.61216,41.83181399906],[-71.611671,41.83184799906],[-71.611404,41.83185999906],[-71.611122,41.83185999906],[-71.611086,41.83185799906],[-71.610847,41.83184399906],[-71.610596,41.83181799906],[-71.610268,41.83175699906],[-71.609406,41.83159299906],[-71.608838,41.83147399906],[-71.608406,41.83138299906],[-71.60778,41.83125699906],[-71.607726,41.83124799906],[-71.607468,41.83120299906],[-71.607178,41.83116899906],[-71.60704,41.83116099906],[-71.606758,41.83115799906],[-71.606453,41.83117299906],[-71.606064,41.83122599906],[-71.605993,41.83124199906],[-71.605904,41.83126099906],[-71.605598,41.83134099906],[-71.603043,41.83211899906],[-71.602443,41.83230899906],[-71.602188,41.83238999906],[-71.601913,41.83247399906],[-71.601524,41.83258099906],[-71.60141,41.83260299906],[-71.601318,41.83262599906],[-71.601028,41.83267199906],[-71.600967,41.83267899906],[-71.600769,41.83270299906],[-71.600464,41.83272899906],[-71.600151,41.83274499906],[-71.600099,41.83274399906],[-71.599678,41.83273699906],[-71.599396,41.83271799906],[-71.597946,41.83255799906],[-71.59716,41.83248899906],[-71.596809,41.83247399906],[-71.596634,41.83246999906],[-71.596016,41.83248499906],[-71.595734,41.83249699906],[-71.594704,41.83257299906],[-71.593567,41.83273699906],[-71.593493,41.83274699906],[-71.593448,41.83275299906],[-71.593767,41.83351299906],[-71.594234,41.83423199906],[-71.595053,41.83501199906],[-71.595971,41.83564599906],[-71.596801,41.83611499906],[-71.598028,41.83644299906],[-71.599524,41.83663499906],[-71.60095,41.83680999906],[-71.602097,41.83704199906],[-71.6039,41.83788799906],[-71.605105,41.83840399906],[-71.607119,41.83867999906],[-71.608471,41.83905099906],[-71.608769,41.83907799906],[-71.608845,41.83907899906],[-71.609011,41.83909799906],[-71.609288,41.83911399906],[-71.609482,41.83913699906],[-71.609675,41.83918399906],[-71.609751,41.83922199906],[-71.610028,41.83926999906],[-71.610101,41.83925799906],[-71.610107,41.83952699906],[-71.610138,41.83979799906],[-71.6101,41.84002699906],[-71.610054,41.84017199906],[-71.610039,41.84023999906],[-71.610016,41.84030499906],[-71.610008,41.84036999906],[-71.610023,41.84046599906],[-71.610039,41.84051099906],[-71.610069,41.84056099906],[-71.610138,41.84065199906],[-71.61068,41.84117499906],[-71.611145,41.84160599906],[-71.61142,41.84188099906],[-71.611481,41.84195299906],[-71.611549,41.84202199906],[-71.61161,41.84209399906],[-71.612137,41.84281499906],[-71.612228,41.84302099906],[-71.612236,41.84308199906],[-71.612251,41.84314299906],[-71.612251,41.84328099906],[-71.612236,41.84344099906],[-71.612122,41.84403999906],[-71.612061,41.84439799906],[-71.612015,41.84462399906],[-71.611984,41.84482599906],[-71.611916,41.84559599906],[-71.611897,41.84589699906],[-71.611885,41.84608799906],[-71.61184,41.84666699906],[-71.611809,41.84716399906],[-71.611794,41.84725199906],[-71.611786,41.84733999906],[-71.611748,41.84752999906],[-71.611717,41.84762999906],[-71.611618,41.84788099906],[-71.61158,41.84795399906],[-71.611549,41.84800299906],[-71.611511,41.84804899906],[-71.611427,41.84811399906],[-71.611374,41.84813699906],[-71.611328,41.84816399906],[-71.611221,41.84820899906],[-71.611145,41.84825099906],[-71.611061,41.84831199906],[-71.610825,41.84855699906],[-71.610664,41.84876599906],[-71.61055,41.84894899906],[-71.610344,41.84931599906],[-71.610108,41.84967199906],[-71.6099,41.84991899906],[-71.609528,41.85031899906],[-71.609375,41.85050999906],[-71.608475,41.85171899906],[-71.608398,41.85182999906],[-71.608009,41.85229499906],[-71.607971,41.85235199906],[-71.607857,41.85248899906],[-71.607826,41.85251599906],[-71.607803,41.85254299906],[-71.607712,41.85257699906],[-71.607826,41.85312699906],[-71.607864,41.85323299906],[-71.607887,41.85327099906],[-71.607918,41.85330999906],[-71.607956,41.85333999906],[-71.608017,41.85336699906],[-71.608795,41.85359199906],[-71.609306,41.85374499906],[-71.609489,41.85381699906],[-71.609573,41.85385499906],[-71.60965,41.85387799906],[-71.609787,41.85393499906],[-71.609848,41.85397299906],[-71.609955,41.85405699906],[-71.610207,41.85429799906],[-71.610313,41.85437799906],[-71.610359,41.85440799906],[-71.610413,41.85443499906],[-71.610489,41.85445799906],[-71.610564,41.85447099906],[-71.610748,41.85450399906],[-71.61084,41.85451499906],[-71.610931,41.85453399906],[-71.611107,41.85458799906],[-71.611229,41.85464499906],[-71.611443,41.85476299906],[-71.611488,41.85480499906],[-71.611557,41.85489299906],[-71.611618,41.85496099906],[-71.612429,41.85587799906],[-71.612793,41.85628899906],[-71.612892,41.85644099906],[-71.61293,41.85653299906],[-71.612961,41.85677699906],[-71.612991,41.85695099906],[-71.613035,41.85714399906],[-71.613075,41.85739299906],[-71.613133,41.85776599906],[-71.61416,41.85773699906],[-71.621412,41.85753699906],[-71.623147,41.85751899906],[-71.623186,41.85751799906],[-71.623563,41.85751499906],[-71.623613,41.85751399906],[-71.62466,41.85750299906],[-71.625777,41.85749099906],[-71.625955,41.85748999906],[-71.628334,41.85745799906],[-71.631734,41.85741299906],[-71.638753,41.85729299906],[-71.640467,41.85726399906],[-71.64596,41.85713599906],[-71.648798,41.85707699906],[-71.649029,41.85706899906],[-71.649831,41.85705199906],[-71.649973,41.85704999906],[-71.650725,41.85703799906],[-71.658733,41.85687299906],[-71.65938,41.85687099906],[-71.664332,41.85687599906],[-71.67003,41.85680199906],[-71.670326,41.85679599906],[-71.671927,41.85676099906],[-71.673427,41.85672699906],[-71.674644,41.85669999906],[-71.676808,41.85664999906],[-71.678781,41.85662399906],[-71.680817,41.85659499906],[-71.688073,41.85649599906],[-71.689252,41.85647899906],[-71.689758,41.85647099906],[-71.69101,41.85645699906]]]}}"}, +{"type": "blockgroup", "typeId": 132022, "areaId": 28994, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.6855,41.82537999906],[-71.685479,41.82530399906],[-71.685311,41.82361699906],[-71.68482,41.82090599906],[-71.683376,41.81292399906],[-71.682663,41.80894899906],[-71.68111,41.80063999906],[-71.681002,41.79998899906],[-71.680138,41.79515499906],[-71.680137,41.79506199906],[-71.679978,41.79385799906],[-71.679969,41.79383699906],[-71.679916,41.79356599906],[-71.679749,41.79259599906],[-71.677496,41.79202199906],[-71.67632,41.79184999906],[-71.67374,41.79195299906],[-71.67376,41.79218899906],[-71.673719,41.79220499906],[-71.673673,41.79225899906],[-71.673666,41.79232199906],[-71.673675,41.79238199906],[-71.673724,41.79242799906],[-71.67375,41.79244399906],[-71.673689,41.79255199906],[-71.673667,41.79260399906],[-71.67365,41.79266399906],[-71.6736,41.79279699906],[-71.67356,41.79286099906],[-71.673514,41.79290799906],[-71.673455,41.79295499906],[-71.673388,41.79300799906],[-71.673266,41.79315699906],[-71.673218,41.79321599906],[-71.673166,41.79330699906],[-71.673117,41.79334899906],[-71.673058,41.79338799906],[-71.673007,41.79343399906],[-71.672821,41.79355499906],[-71.672669,41.79372799906],[-71.67261,41.79377999906],[-71.672456,41.79390299906],[-71.672384,41.79393499906],[-71.672327,41.79396999906],[-71.672254,41.79402599906],[-71.672175,41.79406599906],[-71.672101,41.79409299906],[-71.672028,41.79412599906],[-71.671956,41.79419299906],[-71.671885,41.79423199906],[-71.671717,41.79428399906],[-71.671651,41.79431499906],[-71.671319,41.79443999906],[-71.671157,41.79451399906],[-71.670888,41.79461999906],[-71.67081,41.79464099906],[-71.67073,41.79464499906],[-71.670538,41.79464099906],[-71.670458,41.79461699906],[-71.670332,41.79453699906],[-71.670266,41.79450199906],[-71.670211,41.79446199906],[-71.670136,41.79441499906],[-71.670079,41.79436999906],[-71.669983,41.79431399906],[-71.669915,41.79429099906],[-71.66984,41.79423599906],[-71.669786,41.79418599906],[-71.669641,41.79411099906],[-71.669439,41.79401899906],[-71.669356,41.79398799906],[-71.669303,41.79397399906],[-71.669169,41.79393099906],[-71.668994,41.79384999906],[-71.668826,41.79378999906],[-71.66867,41.79370999906],[-71.668505,41.79364999906],[-71.668467,41.79364099906],[-71.668419,41.79362899906],[-71.668158,41.79362799906],[-71.667335,41.79377099906],[-71.666019,41.79312399906],[-71.664067,41.79133499906],[-71.664064,41.79128799906],[-71.664042,41.79123499906],[-71.664013,41.79120799906],[-71.663983,41.79118899906],[-71.663895,41.79127899906],[-71.663742,41.79145799906],[-71.663597,41.79158799906],[-71.663239,41.79188899906],[-71.663033,41.79204599906],[-71.662529,41.79235499906],[-71.662346,41.79245799906],[-71.661774,41.79275499906],[-71.661362,41.79297999906],[-71.660484,41.79342299906],[-71.660156,41.79358299906],[-71.659828,41.79376999906],[-71.659309,41.79407499906],[-71.659164,41.79417799906],[-71.659081,41.79409799906],[-71.659004,41.79404399906],[-71.658867,41.79398299906],[-71.658842,41.79398599906],[-71.658821,41.79399499906],[-71.658653,41.79400999906],[-71.658432,41.79403699906],[-71.658104,41.79405199906],[-71.657372,41.79405599906],[-71.656995,41.79403799906],[-71.656807,41.79402899906],[-71.656036,41.79400599906],[-71.655579,41.79400299906],[-71.652794,41.79392599906],[-71.651337,41.79387699906],[-71.650543,41.79383899906],[-71.650375,41.79382299906],[-71.649979,41.79376199906],[-71.64978,41.79371299906],[-71.649422,41.79360999906],[-71.649223,41.79352599906],[-71.649017,41.79342699906],[-71.648575,41.79320499906],[-71.648079,41.79297999906],[-71.647903,41.79291199906],[-71.647591,41.79281999906],[-71.647408,41.79277799906],[-71.647209,41.79273999906],[-71.647087,41.79272499906],[-71.646873,41.79270599906],[-71.646515,41.79270599906],[-71.64637,41.79271299906],[-71.646156,41.79273199906],[-71.645364,41.79285699906],[-71.645332,41.79286199906],[-71.644997,41.79292299906],[-71.644417,41.79304499906],[-71.643822,41.79314399906],[-71.643379,41.79323199906],[-71.643013,41.79328899906],[-71.642525,41.79338799906],[-71.64225,41.79343399906],[-71.641991,41.79347199906],[-71.641563,41.79350999906],[-71.641357,41.79350999906],[-71.641159,41.79350299906],[-71.640793,41.79345699906],[-71.640594,41.79341899906],[-71.640396,41.79336899906],[-71.640198,41.79331199906],[-71.639717,41.79315599906],[-71.639336,41.79301799906],[-71.638672,41.79282399906],[-71.638458,41.79274699906],[-71.63829,41.79269399906],[-71.638031,41.79262899906],[-71.637917,41.79260999906],[-71.637787,41.79258299906],[-71.637627,41.79257199906],[-71.637489,41.79255699906],[-71.637268,41.79255299906],[-71.63707,41.79254199906],[-71.636848,41.79254899906],[-71.635849,41.79259899906],[-71.635338,41.79261399906],[-71.634857,41.79264499906],[-71.634171,41.79267099906],[-71.633759,41.79269399906],[-71.632874,41.79273599906],[-71.632362,41.79277799906],[-71.631767,41.79285799906],[-71.631203,41.79294599906],[-71.630287,41.79306399906],[-71.629921,41.79308699906],[-71.62957,41.79309099906],[-71.62915,41.79306399906],[-71.628784,41.79301099906],[-71.628281,41.79289999906],[-71.62796,41.79283499906],[-71.627563,41.79272799906],[-71.62722,41.79256799906],[-71.626846,41.79237699906],[-71.626549,41.79221299906],[-71.626297,41.79206799906],[-71.625656,41.79182399906],[-71.625313,41.79175599906],[-71.625244,41.79173999906],[-71.624741,41.79169499906],[-71.62429,41.79167899906],[-71.623886,41.79167599906],[-71.623383,41.79171399906],[-71.622948,41.79175199906],[-71.622391,41.79180899906],[-71.622009,41.79183899906],[-71.621902,41.79184699906],[-71.621353,41.79190399906],[-71.620857,41.79194999906],[-71.619904,41.79204599906],[-71.618523,41.79217899906],[-71.617981,41.79222099906],[-71.61747,41.79225199906],[-71.616852,41.79227799906],[-71.616364,41.79228599906],[-71.615921,41.79230099906],[-71.615685,41.79230099906],[-71.615395,41.79229399906],[-71.615074,41.79225499906],[-71.614769,41.79220199906],[-71.614365,41.79208399906],[-71.614006,41.79194999906],[-71.613632,41.79181299906],[-71.613304,41.79168699906],[-71.613014,41.79159499906],[-71.612083,41.79141599906],[-71.611755,41.79136699906],[-71.611504,41.79134799906],[-71.611237,41.79133599906],[-71.610886,41.79134399906],[-71.610489,41.79137399906],[-71.610069,41.79140099906],[-71.609711,41.79139699906],[-71.609337,41.79135499906],[-71.609032,41.79129799906],[-71.608719,41.79121799906],[-71.608376,41.79109999906],[-71.608032,41.79093599906],[-71.607712,41.79076399906],[-71.607422,41.79056499906],[-71.607117,41.79034799906],[-71.606773,41.79011899906],[-71.606483,41.78993199906],[-71.606316,41.78984499906],[-71.60598,41.78968399906],[-71.605637,41.78954699906],[-71.605362,41.78945499906],[-71.605049,41.78937899906],[-71.604752,41.78931799906],[-71.604485,41.78927599906],[-71.604225,41.78924599906],[-71.603912,41.78922299906],[-71.603508,41.78921899906],[-71.603104,41.78923799906],[-71.602173,41.78932999906],[-71.601544,41.78938799906],[-71.601549,41.78945999906],[-71.600672,41.79220199906],[-71.599796,41.79494499906],[-71.599612,41.79538799906],[-71.59895,41.79759099906],[-71.598275,41.79987099906],[-71.598177,41.80024699906],[-71.597934,41.80125499906],[-71.595413,41.81243099906],[-71.595314,41.81352499906],[-71.595198,41.81477899906],[-71.59511,41.81553799906],[-71.594618,41.81678399906],[-71.593179,41.81982299906],[-71.59217,41.82322399906],[-71.59161,41.82480099906],[-71.591351,41.82582099906],[-71.591632,41.82698199906],[-71.591978,41.82825699906],[-71.592351,41.82894699906],[-71.592978,41.82951999906],[-71.593566,41.83076899906],[-71.593626,41.83132899906],[-71.593464,41.83212999906],[-71.593448,41.83275299906],[-71.593493,41.83274699906],[-71.593567,41.83273699906],[-71.594704,41.83257299906],[-71.595734,41.83249699906],[-71.596016,41.83248499906],[-71.596634,41.83246999906],[-71.596809,41.83247399906],[-71.59716,41.83248899906],[-71.597946,41.83255799906],[-71.599396,41.83271799906],[-71.599678,41.83273699906],[-71.600099,41.83274399906],[-71.600151,41.83274499906],[-71.600464,41.83272899906],[-71.600769,41.83270299906],[-71.600967,41.83267899906],[-71.601028,41.83267199906],[-71.601318,41.83262599906],[-71.60141,41.83260299906],[-71.601524,41.83258099906],[-71.601913,41.83247399906],[-71.602188,41.83238999906],[-71.602443,41.83230899906],[-71.603043,41.83211899906],[-71.605598,41.83134099906],[-71.605904,41.83126099906],[-71.605993,41.83124199906],[-71.606064,41.83122599906],[-71.606453,41.83117299906],[-71.606758,41.83115799906],[-71.60704,41.83116099906],[-71.607178,41.83116899906],[-71.607468,41.83120299906],[-71.607726,41.83124799906],[-71.60778,41.83125699906],[-71.608406,41.83138299906],[-71.608838,41.83147399906],[-71.609406,41.83159299906],[-71.610268,41.83175699906],[-71.610596,41.83181799906],[-71.610847,41.83184399906],[-71.611086,41.83185799906],[-71.611122,41.83185999906],[-71.611404,41.83185999906],[-71.611671,41.83184799906],[-71.61216,41.83181399906],[-71.614952,41.83162299906],[-71.615723,41.83156999906],[-71.617134,41.83146299906],[-71.617348,41.83145099906],[-71.61776,41.83142099906],[-71.618813,41.83130299906],[-71.619678,41.83118299906],[-71.620712,41.83103899906],[-71.621651,41.83091399906],[-71.622665,41.83077199906],[-71.623093,41.83072199906],[-71.623253,41.83070399906],[-71.623535,41.83068099906],[-71.624123,41.83065399906],[-71.624572,41.83063999906],[-71.625107,41.83062399906],[-71.626137,41.83060099906],[-71.626561,41.83058899906],[-71.628242,41.83053999906],[-71.628632,41.83051699906],[-71.628754,41.83050199906],[-71.628998,41.83046299906],[-71.62912,41.83043699906],[-71.62944,41.83035699906],[-71.629608,41.83030299906],[-71.630096,41.83012399906],[-71.630196,41.83008199906],[-71.630989,41.82977699906],[-71.633591,41.82874699906],[-71.634552,41.82837299906],[-71.636169,41.82773199906],[-71.636803,41.82747699906],[-71.637794,41.82710299906],[-71.638069,41.82700699906],[-71.63842,41.82691199906],[-71.638596,41.82687399906],[-71.638786,41.82684299906],[-71.638962,41.82681699906],[-71.63932,41.82677499906],[-71.639412,41.82677099906],[-71.639641,41.82675599906],[-71.639725,41.82675599906],[-71.639771,41.82675199906],[-71.640205,41.82675899906],[-71.640358,41.82676699906],[-71.640656,41.82680499906],[-71.640999,41.82686199906],[-71.643311,41.82732799906],[-71.644691,41.82761799906],[-71.64518,41.82768599906],[-71.645439,41.82770499906],[-71.645576,41.82770899906],[-71.645668,41.82771699906],[-71.645851,41.82772099906],[-71.646332,41.82772099906],[-71.646568,41.82771299906],[-71.647339,41.82766699906],[-71.648224,41.82761399906],[-71.650749,41.82745399906],[-71.651985,41.82738499906],[-71.652687,41.82733499906],[-71.653058,41.82731499906],[-71.653404,41.82729699906],[-71.654678,41.82722099906],[-71.655449,41.82718299906],[-71.656334,41.82712199906],[-71.65686,41.82706099906],[-71.657021,41.82703399906],[-71.657501,41.82693899906],[-71.657852,41.82686199906],[-71.658028,41.82681699906],[-71.658363,41.82671699906],[-71.658745,41.82659499906],[-71.659912,41.82625199906],[-71.660233,41.82614499906],[-71.661232,41.82585499906],[-71.6623,41.82553899906],[-71.662766,41.82542799906],[-71.663048,41.82538199906],[-71.663422,41.82533599906],[-71.663673,41.82532499906],[-71.663933,41.82532099906],[-71.665253,41.82534799906],[-71.666191,41.82537499906],[-71.667358,41.82539699906],[-71.669388,41.82544699906],[-71.670387,41.82545499906],[-71.670876,41.82547399906],[-71.671875,41.82549299906],[-71.672302,41.82547799906],[-71.672585,41.82548099906],[-71.673416,41.82552699906],[-71.673996,41.82558799906],[-71.674385,41.82563399906],[-71.67466,41.82566799906],[-71.675634,41.82581799906],[-71.674768,41.82575799906],[-71.674156,41.82593499906],[-71.674545,41.82585899906],[-71.674858,41.82582899906],[-71.675244,41.82583999906],[-71.675903,41.82585899906],[-71.676003,41.82586699906],[-71.676414,41.82591599906],[-71.676491,41.82592799906],[-71.677139,41.82600399906],[-71.677391,41.82602699906],[-71.67765,41.82604999906],[-71.677848,41.82605899906],[-71.677994,41.82606499906],[-71.678436,41.82607699906],[-71.678795,41.82606899906],[-71.679306,41.82604599906],[-71.680168,41.82599999906],[-71.680565,41.82598499906],[-71.681778,41.82592799906],[-71.682426,41.82589299906],[-71.682838,41.82585899906],[-71.683174,41.82582499906],[-71.683411,41.82578999906],[-71.685211,41.82543899906],[-71.685425,41.82539399906],[-71.6855,41.82537999906]]]}}"}, +{"type": "blockgroup", "typeId": 132023, "areaId": 28995, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.679749,41.79259599906],[-71.679542,41.79139099906],[-71.679504,41.79120299906],[-71.678209,41.78356499906],[-71.678029,41.78255199906],[-71.677531,41.77990299906],[-71.677397,41.77914599906],[-71.677296,41.77840499906],[-71.677106,41.77758099906],[-71.677002,41.77700899906],[-71.676912,41.77638499906],[-71.676866,41.77617599906],[-71.676788,41.77581599906],[-71.676725,41.77540699906],[-71.67668,41.77511399906],[-71.676499,41.77403299906],[-71.676197,41.77220999906],[-71.675898,41.77038599906],[-71.675894,41.77036199906],[-71.67363,41.75764799906],[-71.673698,41.75754199906],[-71.673752,41.75741199906],[-71.673782,41.75726699906],[-71.673767,41.75701899906],[-71.673729,41.75675999906],[-71.67347,41.75579499906],[-71.673456,41.75567299906],[-71.673424,41.75539399906],[-71.673355,41.75495499906],[-71.673347,41.75489699906],[-71.673225,41.75396699906],[-71.673065,41.75279999906],[-71.672951,41.75202199906],[-71.672562,41.74996899906],[-71.672523,41.74980499906],[-71.672302,41.74874099906],[-71.672218,41.74830199906],[-71.672211,41.74817699906],[-71.672195,41.74790999906],[-71.672195,41.74776099906],[-71.670663,41.73986999906],[-71.670544,41.73925199906],[-71.670135,41.73697999906],[-71.669574,41.73385999906],[-71.668434,41.72746999906],[-71.667794,41.72745999906],[-71.666094,41.72743199906],[-71.666049,41.72743199906],[-71.665991,41.72743299906],[-71.663048,41.72748399906],[-71.662584,41.72749099906],[-71.662207,41.72749799906],[-71.657684,41.72757699906],[-71.657194,41.72758199906],[-71.648881,41.72767499906],[-71.647336,41.72774799906],[-71.64608,41.72776899906],[-71.645143,41.72778499906],[-71.644913,41.72778899906],[-71.644503,41.72779699906],[-71.644255,41.72779999906],[-71.644091,41.72780299906],[-71.641452,41.72784699906],[-71.641328,41.72784999906],[-71.641268,41.72784999906],[-71.640346,41.72786399906],[-71.638485,41.72790599906],[-71.637346,41.72793299906],[-71.636033,41.72796299906],[-71.633828,41.72801399906],[-71.633642,41.72801899906],[-71.633306,41.72802599906],[-71.631726,41.72806299906],[-71.628331,41.72814099906],[-71.627997,41.72814899906],[-71.626353,41.72818599906],[-71.624994,41.72821899906],[-71.62478,41.72822399906],[-71.624595,41.72822899906],[-71.624204,41.72823799906],[-71.618397,41.72836999906],[-71.618142,41.72837499906],[-71.617553,41.72838799906],[-71.613886,41.72846899906],[-71.612957,41.72848899906],[-71.612292,41.72850299906],[-71.611739,41.72851599906],[-71.607275,41.72861299906],[-71.602864,41.72871299906],[-71.600442,41.72876999906],[-71.598609,41.72881299906],[-71.598222,41.72882199906],[-71.597407,41.72884299906],[-71.597249,41.72884499906],[-71.5962,41.72886999906],[-71.593784,41.72892599906],[-71.591194,41.72898699906],[-71.586186,41.72910499906],[-71.586189,41.72913599906],[-71.586205,41.72930499906],[-71.586411,41.72930899906],[-71.586494,41.72953799906],[-71.586517,41.72976299906],[-71.586517,41.73000299906],[-71.586502,41.73033099906],[-71.586456,41.73049199906],[-71.586426,41.73057199906],[-71.586365,41.73067099906],[-71.586319,41.73072799906],[-71.586273,41.73076199906],[-71.586212,41.73079299906],[-71.586105,41.73083499906],[-71.585739,41.73094599906],[-71.585281,41.73106799906],[-71.584908,41.73116299906],[-71.584174,41.73167099906],[-71.584236,41.73180799906],[-71.584274,41.73186099906],[-71.584339,41.73189599906],[-71.584414,41.73192099906],[-71.584477,41.73196999906],[-71.584568,41.73208399906],[-71.584729,41.73225799906],[-71.584811,41.73237199906],[-71.584841,41.73244099906],[-71.584855,41.73251999906],[-71.584858,41.73275999906],[-71.58488,41.73294999906],[-71.584881,41.73302699906],[-71.584872,41.73323899906],[-71.584834,41.73338899906],[-71.58479,41.73351999906],[-71.584648,41.73384899906],[-71.584617,41.73390299906],[-71.584598,41.73397099906],[-71.584592,41.73404299906],[-71.584569,41.73409999906],[-71.584506,41.73414799906],[-71.584436,41.73417499906],[-71.584389,41.73421599906],[-71.584386,41.73426999906],[-71.58437,41.73433199906],[-71.584289,41.73443899906],[-71.584289,41.73456399906],[-71.584248,41.73460899906],[-71.584178,41.73464899906],[-71.584091,41.73468399906],[-71.583998,41.73470999906],[-71.583764,41.73473699906],[-71.583613,41.73476099906],[-71.583532,41.73478099906],[-71.583499,41.73480799906],[-71.583513,41.73487099906],[-71.583481,41.73491199906],[-71.583416,41.73494199906],[-71.583363,41.73498099906],[-71.583282,41.73499599906],[-71.5832,41.73499999906],[-71.583142,41.73505199906],[-71.583068,41.73508299906],[-71.58302,41.73512499906],[-71.583008,41.73524699906],[-71.583004,41.73536699906],[-71.582972,41.73555399906],[-71.582954,41.73562099906],[-71.582923,41.73567199906],[-71.582886,41.73569499906],[-71.582864,41.73570899906],[-71.582793,41.73573999906],[-71.582739,41.73578299906],[-71.582722,41.73584399906],[-71.582744,41.73589099906],[-71.582709,41.73595399906],[-71.582647,41.73599299906],[-71.582577,41.73601899906],[-71.582504,41.73611899906],[-71.582489,41.73618799906],[-71.582522,41.73625299906],[-71.582747,41.73643599906],[-71.582741,41.73646399906],[-71.582708,41.73650699906],[-71.582708,41.73656199906],[-71.58269,41.73661799906],[-71.582667,41.73665899906],[-71.582653,41.73676099906],[-71.582672,41.73685199906],[-71.581039,41.73704099906],[-71.580544,41.73709099906],[-71.580177,41.73716399906],[-71.579872,41.73727799906],[-71.579597,41.73739199906],[-71.579041,41.73766299906],[-71.578751,41.73775899906],[-71.578423,41.73784299906],[-71.57798,41.73791499906],[-71.576744,41.73812899906],[-71.577049,41.73857099906],[-71.577248,41.73871199906],[-71.577568,41.73887999906],[-71.577896,41.73906299906],[-71.577995,41.73912799906],[-71.578178,41.73923899906],[-71.578506,41.73958999906],[-71.578857,41.74009299906],[-71.578974,41.74021599906],[-71.579068,41.74020899906],[-71.579187,41.74020599906],[-71.57934,41.74020199906],[-71.579566,41.74020599906],[-71.579641,41.74020099906],[-71.579726,41.74018999906],[-71.579806,41.74018999906],[-71.579869,41.74021699906],[-71.579931,41.74017099906],[-71.579958,41.74011599906],[-71.57998,41.74005199906],[-71.57998,41.73999399906],[-71.579998,41.73993699906],[-71.580045,41.73992299906],[-71.580131,41.73990499906],[-71.580206,41.73989499906],[-71.580306,41.73990499906],[-71.580571,41.73999399906],[-71.58099,41.73984399906],[-71.581037,41.73980499906],[-71.581106,41.73978999906],[-71.581188,41.73978999906],[-71.581267,41.73981899906],[-71.581311,41.73986799906],[-71.581374,41.73998999906],[-71.581418,41.74004599906],[-71.581484,41.74007699906],[-71.581556,41.74010499906],[-71.581644,41.74012099906],[-71.58173,41.74012799906],[-71.581831,41.74014199906],[-71.582004,41.74014399906],[-71.5821,41.74013299906],[-71.582185,41.74011099906],[-71.58234,41.74005399906],[-71.582543,41.73992899906],[-71.582625,41.73990299906],[-71.582724,41.73987799906],[-71.582795,41.73984499906],[-71.58297,41.73984399906],[-71.58307,41.73984099906],[-71.583156,41.73985499906],[-71.58323,41.73984899906],[-71.583308,41.73983299906],[-71.583497,41.73980699906],[-71.583591,41.73980599906],[-71.58367,41.73981699906],[-71.583851,41.73980199906],[-71.583926,41.73980199906],[-71.584002,41.73980699906],[-71.58404,41.73981299906],[-71.584321,41.73964999906],[-71.58451,41.73951099906],[-71.584568,41.73945199906],[-71.584615,41.73938799906],[-71.584721,41.73918299906],[-71.58475,41.73911399906],[-71.584877,41.73885299906],[-71.584915,41.73880199906],[-71.584976,41.73875999906],[-71.585069,41.73871799906],[-71.585216,41.73867099906],[-71.585325,41.73865299906],[-71.585462,41.73863199906],[-71.585582,41.73861299906],[-71.585821,41.73859299906],[-71.58599,41.73852799906],[-71.58603,41.73850699906],[-71.586069,41.73851899906],[-71.586141,41.73853099906],[-71.586304,41.73853099906],[-71.58638,41.73851999906],[-71.586444,41.73849099906],[-71.586574,41.73838799906],[-71.586655,41.73835999906],[-71.586742,41.73834499906],[-71.586832,41.73833499906],[-71.586917,41.73833099906],[-71.587152,41.73830399906],[-71.587312,41.73829699906],[-71.587591,41.73829499906],[-71.58768,41.73830199906],[-71.588307,41.73839399906],[-71.588404,41.73840399906],[-71.588489,41.73841199906],[-71.588574,41.73840399906],[-71.588657,41.73836899906],[-71.588738,41.73831399906],[-71.588809,41.73824299906],[-71.588858,41.73817899906],[-71.588882,41.73811599906],[-71.588912,41.73806399906],[-71.588954,41.73800699906],[-71.589155,41.73761799906],[-71.589311,41.73729199906],[-71.589369,41.73721099906],[-71.589569,41.73701099906],[-71.589636,41.73695099906],[-71.589714,41.73689899906],[-71.589795,41.73685499906],[-71.589878,41.73682299906],[-71.590034,41.73679299906],[-71.590219,41.73678699906],[-71.590601,41.73678599906],[-71.59069,41.73679699906],[-71.590761,41.73682099906],[-71.590837,41.73682699906],[-71.590933,41.73682699906],[-71.591013,41.73681999906],[-71.591104,41.73680399906],[-71.591202,41.73677799906],[-71.591301,41.73675699906],[-71.591392,41.73674999906],[-71.591486,41.73676799906],[-71.591666,41.73681999906],[-71.591758,41.73683999906],[-71.591852,41.73682899906],[-71.591937,41.73680399906],[-71.592023,41.73678899906],[-71.592199,41.73677499906],[-71.59229,41.73677299906],[-71.592383,41.73678299906],[-71.592468,41.73680799906],[-71.592624,41.73689799906],[-71.592672,41.73691599906],[-71.592839,41.73704599906],[-71.592906,41.73708099906],[-71.593243,41.73721399906],[-71.593322,41.73725499906],[-71.593467,41.73734199906],[-71.593526,41.73738399906],[-71.593588,41.73741499906],[-71.593661,41.73742599906],[-71.593734,41.73742099906],[-71.593804,41.73739899906],[-71.59387,41.73736699906],[-71.593935,41.73732699906],[-71.594003,41.73729099906],[-71.594085,41.73727299906],[-71.594166,41.73727499906],[-71.594263,41.73729699906],[-71.594396,41.73735499906],[-71.594649,41.73744799906],[-71.594713,41.73748399906],[-71.595045,41.73771299906],[-71.595275,41.73787799906],[-71.595416,41.73802999906],[-71.595696,41.73826099906],[-71.595877,41.73847999906],[-71.595925,41.73854499906],[-71.596008,41.73875599906],[-71.596013,41.73882699906],[-71.596012,41.73897299906],[-71.595997,41.73917399906],[-71.595989,41.73938499906],[-71.596016,41.73945899906],[-71.596071,41.73952399906],[-71.596193,41.73965099906],[-71.596238,41.73970699906],[-71.596267,41.73976499906],[-71.596282,41.73983199906],[-71.596295,41.73997399906],[-71.596263,41.74011699906],[-71.596272,41.74019299906],[-71.596322,41.74026399906],[-71.596391,41.74031399906],[-71.596463,41.74033799906],[-71.596565,41.74034399906],[-71.596801,41.74033999906],[-71.596889,41.74034799906],[-71.596991,41.74042399906],[-71.597034,41.74048399906],[-71.596992,41.74052399906],[-71.596886,41.74064999906],[-71.596832,41.74076499906],[-71.596802,41.74085599906],[-71.596779,41.74098599906],[-71.596695,41.74170699906],[-71.596687,41.74182899906],[-71.596619,41.74201599906],[-71.596588,41.74207299906],[-71.596512,41.74216799906],[-71.596397,41.74229399906],[-71.596283,41.74240499906],[-71.596214,41.74249299906],[-71.596092,41.74261899906],[-71.595985,41.74276699906],[-71.595886,41.74292399906],[-71.595856,41.74296199906],[-71.59565,41.74336599906],[-71.595558,41.74355699906],[-71.595512,41.74362599906],[-71.595352,41.74382799906],[-71.595177,41.74396899906],[-71.594994,41.74414099906],[-71.594666,41.74440399906],[-71.594589,41.74447999906],[-71.594482,41.74457599906],[-71.594299,41.74462499906],[-71.594204,41.74465999906],[-71.593979,41.74474299906],[-71.593857,41.74480399906],[-71.59285,41.74541099906],[-71.592445,41.74566299906],[-71.59227,41.74576599906],[-71.592079,41.74589499906],[-71.591751,41.74613599906],[-71.59166,41.74621999906],[-71.591408,41.74648699906],[-71.591316,41.74659299906],[-71.591156,41.74683399906],[-71.591064,41.74698999906],[-71.590599,41.74789799906],[-71.590454,41.74819899906],[-71.590408,41.74830599906],[-71.59034,41.74848899906],[-71.590256,41.74876399906],[-71.590202,41.74913799906],[-71.590195,41.74925999906],[-71.590157,41.74953799906],[-71.590126,41.74966799906],[-71.59005,41.74983999906],[-71.589928,41.75003799906],[-71.589783,41.75018699906],[-71.589706,41.75024799906],[-71.589415,41.75042799906],[-71.589432,41.75045899906],[-71.589563,41.75053699906],[-71.589588,41.75054599906],[-71.589677,41.75063999906],[-71.589758,41.75082899906],[-71.589864,41.75095299906],[-71.590054,41.75100299906],[-71.590339,41.75106399906],[-71.59052,41.75112199906],[-71.590725,41.75119399906],[-71.590813,41.75123099906],[-71.59088,41.75127099906],[-71.590926,41.75131899906],[-71.590962,41.75137399906],[-71.590972,41.75143599906],[-71.590963,41.75150399906],[-71.590947,41.75157299906],[-71.590943,41.75169499906],[-71.590951,41.75175899906],[-71.590949,41.75189499906],[-71.590922,41.75195499906],[-71.590877,41.75200599906],[-71.59083,41.75207499906],[-71.590818,41.75215299906],[-71.590847,41.75222499906],[-71.590898,41.75227999906],[-71.590897,41.75231999906],[-71.590822,41.75233299906],[-71.590795,41.75237199906],[-71.590853,41.75241899906],[-71.590927,41.75243799906],[-71.590974,41.75248099906],[-71.590965,41.75255099906],[-71.590952,41.75260799906],[-71.59095,41.75266699906],[-71.590924,41.75279799906],[-71.590905,41.75286499906],[-71.590885,41.75299099906],[-71.590855,41.75311199906],[-71.590828,41.75318699906],[-71.590814,41.75330199906],[-71.590813,41.75336699906],[-71.59082,41.75343199906],[-71.590853,41.75348999906],[-71.590914,41.75354799906],[-71.590971,41.75359299906],[-71.591121,41.75366799906],[-71.591177,41.75370599906],[-71.59139,41.75377599906],[-71.591477,41.75380099906],[-71.591579,41.75380899906],[-71.591658,41.75382099906],[-71.591718,41.75385499906],[-71.591764,41.75390099906],[-71.59178,41.75396599906],[-71.591714,41.75401799906],[-71.591686,41.75408699906],[-71.591634,41.75412599906],[-71.591581,41.75417699906],[-71.591568,41.75423499906],[-71.591574,41.75429399906],[-71.591622,41.75434999906],[-71.591674,41.75436299906],[-71.59175,41.75436799906],[-71.591807,41.75442299906],[-71.591856,41.75448399906],[-71.591946,41.75464899906],[-71.591959,41.75470399906],[-71.591966,41.75476199906],[-71.591966,41.75497099906],[-71.591981,41.75504799906],[-71.592014,41.75508799906],[-71.592091,41.75509399906],[-71.592166,41.75508099906],[-71.592231,41.75503599906],[-71.592309,41.75501099906],[-71.59235,41.75497999906],[-71.592373,41.75491599906],[-71.592378,41.75477299906],[-71.592459,41.75476499906],[-71.592743,41.75476199906],[-71.592821,41.75472999906],[-71.59288,41.75468399906],[-71.592934,41.75462699906],[-71.593019,41.75451799906],[-71.593041,41.75444299906],[-71.593085,41.75439299906],[-71.593137,41.75434599906],[-71.593179,41.75433499906],[-71.593342,41.75436599906],[-71.593496,41.75441399906],[-71.593709,41.75442099906],[-71.59374,41.75441699906],[-71.593766,41.75436199906],[-71.594142,41.75435699906],[-71.594251,41.75435999906],[-71.594328,41.75436799906],[-71.594452,41.75439399906],[-71.594455,41.75445699906],[-71.59445,41.75452199906],[-71.59429,41.75455799906],[-71.594227,41.75458299906],[-71.594193,41.75465299906],[-71.594219,41.75473099906],[-71.594261,41.75477899906],[-71.594342,41.75481399906],[-71.594446,41.75486699906],[-71.594485,41.75492199906],[-71.594468,41.75500399906],[-71.594471,41.75507199906],[-71.594499,41.75511299906],[-71.59456,41.75515299906],[-71.594621,41.75518199906],[-71.594709,41.75520299906],[-71.594937,41.75520799906],[-71.595014,41.75519999906],[-71.595089,41.75517399906],[-71.595211,41.75510199906],[-71.595154,41.75496999906],[-71.59515,41.75490699906],[-71.59517,41.75484899906],[-71.595206,41.75480499906],[-71.595332,41.75480699906],[-71.59541,41.75479899906],[-71.595617,41.75474699906],[-71.5959,41.75473599906],[-71.595969,41.75474199906],[-71.596031,41.75478799906],[-71.596087,41.75484099906],[-71.596142,41.75485899906],[-71.596249,41.75483799906],[-71.59629,41.75480699906],[-71.596321,41.75474999906],[-71.596338,41.75469699906],[-71.596337,41.75463999906],[-71.596413,41.75453599906],[-71.596567,41.75447599906],[-71.596614,41.75443499906],[-71.596608,41.75435299906],[-71.596595,41.75427699906],[-71.596591,41.75421899906],[-71.596658,41.75415499906],[-71.596901,41.75405699906],[-71.596933,41.75400799906],[-71.596944,41.75395499906],[-71.596948,41.75389999906],[-71.596972,41.75384499906],[-71.597044,41.75376999906],[-71.597123,41.75373699906],[-71.597217,41.75370599906],[-71.597246,41.75365499906],[-71.597289,41.75360999906],[-71.597334,41.75353799906],[-71.597361,41.75347799906],[-71.597488,41.75329599906],[-71.597542,41.75323999906],[-71.597597,41.75319999906],[-71.597658,41.75313999906],[-71.597743,41.75301399906],[-71.597782,41.75296399906],[-71.597831,41.75291199906],[-71.597863,41.75285899906],[-71.598028,41.75269799906],[-71.598122,41.75261499906],[-71.598212,41.75249899906],[-71.59824,41.75242499906],[-71.598282,41.75228599906],[-71.598392,41.75210199906],[-71.598532,41.75194199906],[-71.598562,41.75188999906],[-71.598587,41.75182599906],[-71.598619,41.75177299906],[-71.598686,41.75172099906],[-71.598744,41.75166699906],[-71.598762,41.75159899906],[-71.598762,41.75153199906],[-71.598741,41.75147199906],[-71.598674,41.75144199906],[-71.598601,41.75141699906],[-71.598557,41.75135899906],[-71.598576,41.75131099906],[-71.598743,41.75121999906],[-71.598821,41.75119899906],[-71.598899,41.75119999906],[-71.59898,41.75121599906],[-71.599027,41.75128299906],[-71.599143,41.75163599906],[-71.599129,41.75166699906],[-71.599059,41.75168699906],[-71.599041,41.75172399906],[-71.599044,41.75186299906],[-71.599081,41.75192899906],[-71.599149,41.75196499906],[-71.599232,41.75195699906],[-71.599311,41.75193399906],[-71.599405,41.75192799906],[-71.599504,41.75192799906],[-71.599602,41.75194699906],[-71.599695,41.75197699906],[-71.599799,41.75198499906],[-71.599977,41.75198199906],[-71.600071,41.75197399906],[-71.600232,41.75194099906],[-71.60039,41.75194499906],[-71.600468,41.75196299906],[-71.600544,41.75198599906],[-71.600618,41.75199299906],[-71.600693,41.75198799906],[-71.600773,41.75197699906],[-71.600852,41.75195299906],[-71.600922,41.75191699906],[-71.601046,41.75179799906],[-71.601099,41.75175999906],[-71.601172,41.75172299906],[-71.60135,41.75165499906],[-71.601635,41.75155999906],[-71.60188,41.75146099906],[-71.602017,41.75140299906],[-71.602115,41.75137799906],[-71.602217,41.75137599906],[-71.602325,41.75136899906],[-71.602395,41.75134799906],[-71.602459,41.75130999906],[-71.602509,41.75125999906],[-71.602581,41.75114399906],[-71.602657,41.75108399906],[-71.603008,41.75087699906],[-71.603125,41.75079399906],[-71.603192,41.75074099906],[-71.603252,41.75068399906],[-71.603374,41.75058699906],[-71.603398,41.75053299906],[-71.603385,41.75041999906],[-71.60343,41.75037399906],[-71.603518,41.75032699906],[-71.603587,41.75029499906],[-71.603651,41.75025799906],[-71.603821,41.75013999906],[-71.603987,41.75004599906],[-71.604057,41.74998399906],[-71.604102,41.74993699906],[-71.604166,41.74983599906],[-71.604236,41.74969599906],[-71.60429,41.74963899906],[-71.604437,41.74955099906],[-71.604486,41.74948499906],[-71.6045,41.74940699906],[-71.604494,41.74907099906],[-71.604484,41.74900899906],[-71.604448,41.74889499906],[-71.604444,41.74882599906],[-71.604468,41.74876199906],[-71.604525,41.74875199906],[-71.604587,41.74878799906],[-71.604659,41.74883999906],[-71.60472,41.74887799906],[-71.604788,41.74890599906],[-71.604858,41.74892299906],[-71.604958,41.74892599906],[-71.605062,41.74891299906],[-71.60522,41.74887999906],[-71.605295,41.74887199906],[-71.605528,41.74886699906],[-71.605612,41.74886099906],[-71.605702,41.74884799906],[-71.605896,41.74880499906],[-71.606475,41.74861299906],[-71.606604,41.74855799906],[-71.606688,41.74851199906],[-71.606829,41.74839999906],[-71.606873,41.74834399906],[-71.606874,41.74828099906],[-71.60791726739288,41.749052963136506],[-71.607847,41.74914999906],[-71.607789,41.74918999906],[-71.607767,41.74924399906],[-71.607763,41.74930699906],[-71.607739,41.74937099906],[-71.607674,41.74941399906],[-71.6076,41.74944999906],[-71.60754,41.74949499906],[-71.607439,41.74960599906],[-71.607405,41.74965399906],[-71.607399,41.74973099906],[-71.607407,41.74980699906],[-71.607404,41.74987399906],[-71.607358,41.74994499906],[-71.607273,41.74997699906],[-71.607064,41.74997999906],[-71.606911,41.74999599906],[-71.606763,41.75002099906],[-71.606684,41.75006599906],[-71.606641,41.75013999906],[-71.606582,41.75026599906],[-71.606528,41.75031099906],[-71.606463,41.75033599906],[-71.606405,41.75036799906],[-71.606332,41.75039499906],[-71.606272,41.75042899906],[-71.606239,41.75047899906],[-71.606177,41.75051799906],[-71.606103,41.75053299906],[-71.606022,41.75053599906],[-71.605962,41.75059499906],[-71.605921,41.75064699906],[-71.605898,41.75071899906],[-71.605897,41.75078099906],[-71.605885,41.75083899906],[-71.605786,41.75093499906],[-71.605708,41.75107599906],[-71.60566,41.75114999906],[-71.60558,41.75125499906],[-71.605554,41.75131399906],[-71.605542,41.75142799906],[-71.605516,41.75149399906],[-71.605483,41.75149999906],[-71.605406,41.75146799906],[-71.605329,41.75144499906],[-71.605251,41.75144499906],[-71.605168,41.75147299906],[-71.605041,41.75159099906],[-71.604969,41.75164399906],[-71.60493,41.75171299906],[-71.604941,41.75194299906],[-71.604902,41.75206399906],[-71.604893,41.75212099906],[-71.604872,41.75217699906],[-71.60483,41.75220999906],[-71.604654,41.75219899906],[-71.604585,41.75221899906],[-71.604537,41.75226599906],[-71.604551,41.75232299906],[-71.604614,41.75234999906],[-71.604688,41.75235399906],[-71.604727,41.75236299906],[-71.604749,41.75242799906],[-71.604745,41.75249999906],[-71.604704,41.75255699906],[-71.604567,41.75258699906],[-71.604547,41.75266199906],[-71.604549,41.75281499906],[-71.604538,41.75286899906],[-71.604537,41.75298199906],[-71.604545,41.75303899906],[-71.604457,41.75321399906],[-71.604424,41.75329399906],[-71.604367,41.75333699906],[-71.604301,41.75337399906],[-71.60423,41.75342299906],[-71.604174,41.75355599906],[-71.604166,41.75380799906],[-71.604205,41.75385499906],[-71.604271,41.75390099906],[-71.604324,41.75395599906],[-71.604339,41.75402599906],[-71.604347,41.75417099906],[-71.604365,41.75426399906],[-71.604279,41.75437199906],[-71.60422,41.75461299906],[-71.604209,41.75467999906],[-71.604124,41.75470199906],[-71.604025,41.75471899906],[-71.603934,41.75474199906],[-71.603899,41.75479699906],[-71.603851,41.75480799906],[-71.603707,41.75480899906],[-71.603579,41.75482499906],[-71.6036,41.75484799906],[-71.603779,41.75495499906],[-71.603825,41.75500399906],[-71.603869,41.75506599906],[-71.603735,41.75507499906],[-71.603619,41.75509199906],[-71.603578,41.75512299906],[-71.60363,41.75515099906],[-71.603705,41.75517399906],[-71.603773,41.75520899906],[-71.603825,41.75525199906],[-71.603857,41.75532099906],[-71.603856,41.75552399906],[-71.60382,41.75560699906],[-71.60376,41.75564999906],[-71.603663,41.75573599906],[-71.603625,41.75580299906],[-71.603509,41.75597199906],[-71.603467,41.75602499906],[-71.603299,41.75618899906],[-71.603217,41.75625199906],[-71.603114,41.75631499906],[-71.602851,41.75643399906],[-71.602745,41.75646899906],[-71.602596,41.75654199906],[-71.60253,41.75656899906],[-71.602341,41.75661699906],[-71.602276,41.75664099906],[-71.602195,41.75677899906],[-71.602123,41.75686499906],[-71.602073,41.75691599906],[-71.602025,41.75698699906],[-71.60197,41.75702499906],[-71.60181,41.75709099906],[-71.601738,41.75710799906],[-71.601509,41.75710799906],[-71.601381,41.75716999906],[-71.601317,41.75720699906],[-71.601246,41.75727099906],[-71.601187,41.75733699906],[-71.601155,41.75739699906],[-71.601135,41.75746399906],[-71.601097,41.75752299906],[-71.60104,41.75755899906],[-71.600975,41.75761199906],[-71.600853,41.75778699906],[-71.600752,41.75781999906],[-71.600663,41.75786299906],[-71.600632,41.75793199906],[-71.600619,41.75799599906],[-71.600617,41.75805399906],[-71.600628,41.75814499906],[-71.600665,41.75823199906],[-71.600682,41.75828599906],[-71.600653,41.75835999906],[-71.600586,41.75840999906],[-71.600517,41.75844399906],[-71.600458,41.75848099906],[-71.600364,41.75859299906],[-71.60035,41.75865799906],[-71.600311,41.75870399906],[-71.600231,41.75877599906],[-71.600189,41.75882799906],[-71.600162,41.75889499906],[-71.600065,41.75902299906],[-71.600009,41.75906099906],[-71.599858,41.75912099906],[-71.599802,41.75915999906],[-71.599538,41.75943199906],[-71.599429,41.75957599906],[-71.599381,41.75965499906],[-71.599366,41.75972599906],[-71.599413,41.75983099906],[-71.599422,41.75989099906],[-71.599406,41.76010399906],[-71.599406,41.76016499906],[-71.599418,41.76023599906],[-71.599469,41.76031499906],[-71.599542,41.76037499906],[-71.599601,41.76044099906],[-71.59962,41.76051599906],[-71.599539,41.76060299906],[-71.599505,41.76067799906],[-71.599546,41.76071399906],[-71.59961,41.76074799906],[-71.59968,41.76080399906],[-71.599724,41.76085099906],[-71.599763,41.76090399906],[-71.599776,41.76095899906],[-71.599775,41.76103199906],[-71.599764,41.76113099906],[-71.599715,41.76119099906],[-71.599682,41.76124099906],[-71.599619,41.76127999906],[-71.599548,41.76134299906],[-71.599478,41.76137599906],[-71.599419,41.76137199906],[-71.599341,41.76130499906],[-71.599291,41.76128199906],[-71.599211,41.76129299906],[-71.599146,41.76134299906],[-71.599081,41.76136299906],[-71.598989,41.76137499906],[-71.598944,41.76142499906],[-71.598899,41.76151599906],[-71.598901,41.76172599906],[-71.598895,41.76197399906],[-71.598893,41.76203599906],[-71.598899,41.76217299906],[-71.598916,41.76223599906],[-71.598976,41.76231699906],[-71.599025,41.76235999906],[-71.599184,41.76248399906],[-71.599176,41.76252899906],[-71.599113,41.76264499906],[-71.599112,41.76272899906],[-71.599117,41.76279599906],[-71.599134,41.76281999906],[-71.599146,41.76283799906],[-71.599232,41.76284599906],[-71.599931,41.76285199906],[-71.599995,41.76286799906],[-71.600023,41.76292099906],[-71.600019,41.76311499906],[-71.599997,41.76327299906],[-71.600013,41.76329699906],[-71.600114,41.76334299906],[-71.600177,41.76337699906],[-71.600251,41.76339499906],[-71.600326,41.76339699906],[-71.600509,41.76342599906],[-71.600578,41.76344499906],[-71.600643,41.76349599906],[-71.600677,41.76354499906],[-71.600693,41.76359799906],[-71.600707,41.76373399906],[-71.600706,41.76383699906],[-71.60066,41.76407199906],[-71.600636,41.76452299906],[-71.600666,41.76459199906],[-71.600793,41.76474799906],[-71.600827,41.76479899906],[-71.60089,41.76495399906],[-71.600919,41.76509799906],[-71.600954,41.76516099906],[-71.601077,41.76520399906],[-71.601168,41.76521899906],[-71.601329,41.76521999906],[-71.601427,41.76524599906],[-71.6015,41.76530899906],[-71.601545,41.76537699906],[-71.601556,41.76550799906],[-71.601584,41.76559399906],[-71.601594,41.76566399906],[-71.601595,41.76575599906],[-71.601632,41.76616399906],[-71.601665,41.76636099906],[-71.601721,41.76640799906],[-71.601905,41.76649199906],[-71.60198,41.76652099906],[-71.602067,41.76657199906],[-71.602156,41.76660399906],[-71.602235,41.76662199906],[-71.602344,41.76665299906],[-71.602411,41.76669799906],[-71.602437,41.76675499906],[-71.60243,41.76681899906],[-71.602387,41.76684999906],[-71.6023,41.76688899906],[-71.602261,41.76694899906],[-71.602287,41.76716099906],[-71.602306,41.76721499906],[-71.602347,41.76739999906],[-71.602347,41.76745499906],[-71.602331,41.76752599906],[-71.602284,41.76757399906],[-71.602245,41.76763499906],[-71.602208,41.76773199906],[-71.602195,41.76779299906],[-71.60219,41.76789299906],[-71.602198,41.76796899906],[-71.602261,41.76811499906],[-71.602348,41.76823699906],[-71.602443,41.76839099906],[-71.602468,41.76845599906],[-71.602512,41.76852999906],[-71.602546,41.76860499906],[-71.60256,41.76867399906],[-71.60254,41.76949799906],[-71.602545,41.76968299906],[-71.602571,41.76982799906],[-71.602635,41.76998399906],[-71.60267,41.77003799906],[-71.602837,41.77012299906],[-71.602927,41.77014299906],[-71.603001,41.77017299906],[-71.602988,41.77064199906],[-71.602994,41.77069799906],[-71.603014,41.77078099906],[-71.603045,41.77083699906],[-71.603095,41.77087199906],[-71.603202,41.77086599906],[-71.603323,41.77083199906],[-71.603373,41.77078899906],[-71.60342,41.77073499906],[-71.603486,41.77067999906],[-71.603551,41.77061499906],[-71.603606,41.77053099906],[-71.603636,41.77047599906],[-71.603666,41.77040299906],[-71.603685,41.77034199906],[-71.603705,41.77023499906],[-71.603715,41.77011299906],[-71.603757,41.77003599906],[-71.603754,41.76991499906],[-71.603742,41.76983899906],[-71.603748,41.76959999906],[-71.603765,41.76953099906],[-71.60383,41.76949699906],[-71.603938,41.76943199906],[-71.604016,41.76939399906],[-71.604101,41.76935999906],[-71.604204,41.76934699906],[-71.604288,41.76934499906],[-71.604363,41.76933799906],[-71.604453,41.76932299906],[-71.604658,41.76928099906],[-71.60477,41.76926699906],[-71.605003,41.76924899906],[-71.605088,41.76922999906],[-71.60518,41.76919999906],[-71.605278,41.76916099906],[-71.60552,41.76908099906],[-71.605759,41.76895899906],[-71.605867,41.76891799906],[-71.605946,41.76889699906],[-71.606102,41.76883499906],[-71.606238,41.76880399906],[-71.606427,41.76877499906],[-71.606642,41.76877599906],[-71.606731,41.76877999906],[-71.607069,41.76881699906],[-71.607137,41.76883799906],[-71.60729,41.76890699906],[-71.607683,41.76898899906],[-71.607766,41.76903399906],[-71.607779,41.76909299906],[-71.607783,41.76915099906],[-71.607799,41.76923399906],[-71.607834,41.76923399906],[-71.607948,41.76921699906],[-71.608039,41.76918499906],[-71.608098,41.76914199906],[-71.608182,41.76901099906],[-71.608253,41.76888099906],[-71.608281,41.76881399906],[-71.608342,41.76873899906],[-71.6084,41.76867999906],[-71.608426,41.76862899906],[-71.608441,41.76854899906],[-71.608452,41.76833099906],[-71.608442,41.76824899906],[-71.60842,41.76818899906],[-71.608396,41.76804399906],[-71.608398,41.76798699906],[-71.608416,41.76786399906],[-71.60842,41.76780499906],[-71.608358,41.76751499906],[-71.608349,41.76745199906],[-71.608328,41.76736599906],[-71.608321,41.76730499906],[-71.608323,41.76724599906],[-71.60839,41.76693599906],[-71.608393,41.76685299906],[-71.608376,41.76673699906],[-71.608382,41.76665499906],[-71.608419,41.76650699906],[-71.608368,41.76645199906],[-71.608341,41.76638999906],[-71.608337,41.76618699906],[-71.608359,41.76613199906],[-71.608403,41.76614699906],[-71.608468,41.76618499906],[-71.608533,41.76619999906],[-71.60856,41.76614899906],[-71.608569,41.76609199906],[-71.608525,41.76603399906],[-71.608584,41.76592399906],[-71.608598,41.76586399906],[-71.6086,41.76579599906],[-71.608562,41.76574499906],[-71.6085,41.76562099906],[-71.608593,41.76558199906],[-71.608655,41.76554399906],[-71.608703,41.76548699906],[-71.60869,41.76545899906],[-71.608645,41.76539699906],[-71.608601,41.76529399906],[-71.608588,41.76521499906],[-71.608632,41.76514599906],[-71.608693,41.76511499906],[-71.60877,41.76510199906],[-71.608852,41.76509599906],[-71.608935,41.76508199906],[-71.609006,41.76505699906],[-71.609038,41.76504599906],[-71.609109,41.76500899906],[-71.60916,41.76496299906],[-71.609192,41.76494999906],[-71.60927,41.76494299906],[-71.609317,41.76491599906],[-71.609396,41.76487099906],[-71.609467,41.76488099906],[-71.609522,41.76492199906],[-71.60955,41.76497399906],[-71.609581,41.76520099906],[-71.609622,41.76533999906],[-71.609637,41.76546899906],[-71.609699,41.76571299906],[-71.609649,41.76583299906],[-71.609567,41.76596999906],[-71.609505,41.76615999906],[-71.609497,41.76641399906],[-71.609549,41.76645699906],[-71.609645,41.76646899906],[-71.609721,41.76646999906],[-71.60977,41.76649399906],[-71.609759,41.76655099906],[-71.609758,41.76660899906],[-71.609765,41.76667799906],[-71.609819,41.76674299906],[-71.609872,41.76679299906],[-71.609888,41.76684799906],[-71.609861,41.76690099906],[-71.609823,41.76694899906],[-71.609774,41.76699599906],[-71.609762,41.76705099906],[-71.609765,41.76710899906],[-71.609786,41.76720699906],[-71.609906,41.76738999906],[-71.610041,41.76756799906],[-71.610076,41.76761999906],[-71.610137,41.76766599906],[-71.610152,41.76770199906],[-71.610143,41.76796699906],[-71.610154,41.76820299906],[-71.610153,41.76827199906],[-71.610201,41.76830799906],[-71.610278,41.76834599906],[-71.610342,41.76838699906],[-71.610416,41.76845699906],[-71.610441,41.76850699906],[-71.610441,41.76857099906],[-71.610467,41.76870999906],[-71.610469,41.76879199906],[-71.610476,41.76884799906],[-71.610541,41.76896699906],[-71.61066,41.76910999906],[-71.610705,41.76917099906],[-71.610782,41.76926199906],[-71.610824,41.76932099906],[-71.610854,41.76938799906],[-71.610874,41.76946899906],[-71.610918,41.76952099906],[-71.610966,41.76956699906],[-71.611025,41.76960099906],[-71.611112,41.76963099906],[-71.611217,41.76964299906],[-71.611286,41.76966999906],[-71.611319,41.76971399906],[-71.611324,41.76979899906],[-71.61129,41.76985999906],[-71.611241,41.76991999906],[-71.611155,41.76997799906],[-71.61108,41.77000899906],[-71.611025,41.77005599906],[-71.611002,41.77012599906],[-71.610983,41.77024499906],[-71.610987,41.77030099906],[-71.611038,41.77035499906],[-71.61112,41.77038099906],[-71.611201,41.77039999906],[-71.61126,41.77043499906],[-71.611325,41.77048099906],[-71.611362,41.77053299906],[-71.61136,41.77065999906],[-71.611304,41.77080899906],[-71.611298,41.77102099906],[-71.611277,41.77109599906],[-71.611249,41.77116699906],[-71.611222,41.77121999906],[-71.611201,41.77128699906],[-71.611188,41.77144599906],[-71.61128,41.77151399906],[-71.611338,41.77154699906],[-71.611417,41.77153899906],[-71.611485,41.77150899906],[-71.611556,41.77146099906],[-71.611627,41.77142999906],[-71.611703,41.77143699906],[-71.611799,41.77145099906],[-71.611878,41.77147499906],[-71.611956,41.77152499906],[-71.611999,41.77158099906],[-71.61203,41.77163799906],[-71.612089,41.77179999906],[-71.612117,41.77185199906],[-71.612189,41.77196499906],[-71.612228,41.77201599906],[-71.612337,41.77210199906],[-71.612482,41.77216799906],[-71.612542,41.77221599906],[-71.61264,41.77236399906],[-71.612687,41.77239599906],[-71.61278,41.77243099906],[-71.612841,41.77247399906],[-71.612885,41.77252299906],[-71.612918,41.77257899906],[-71.612944,41.77265199906],[-71.612967,41.77265799906],[-71.613165,41.77265999906],[-71.613248,41.77253999906],[-71.613328,41.77253199906],[-71.613412,41.77264099906],[-71.613484,41.77265399906],[-71.613566,41.77265199906],[-71.613672,41.77263699906],[-71.613746,41.77259099906],[-71.613785,41.77254199906],[-71.61383,41.77245599906],[-71.613845,41.77239899906],[-71.613886,41.77237499906],[-71.614048,41.77231599906],[-71.614208,41.77224099906],[-71.614284,41.77219199906],[-71.614316,41.77212699906],[-71.614387,41.77208599906],[-71.614547,41.77202299906],[-71.614887,41.77186099906],[-71.614966,41.77180899906],[-71.614988,41.77175699906],[-71.615049,41.77156999906],[-71.615095,41.77150999906],[-71.61516,41.77147299906],[-71.615302,41.77140099906],[-71.615365,41.77134299906],[-71.615421,41.77121199906],[-71.615437,41.77115599906],[-71.615487,41.77068499906],[-71.615511,41.77062899906],[-71.61559,41.77057699906],[-71.615763,41.77048099906],[-71.616038,41.77048499906],[-71.616084,41.77046599906],[-71.616219,41.77036899906],[-71.616272,41.77032299906],[-71.616334,41.77025499906],[-71.616384,41.77021299906],[-71.61644,41.77017299906],[-71.616517,41.77008799906],[-71.616539,41.76999599906],[-71.616563,41.76937499906],[-71.616607,41.76931299906],[-71.616668,41.76926999906],[-71.616761,41.76918699906],[-71.616884,41.76906799906],[-71.617097,41.76892599906],[-71.617143,41.76887899906],[-71.61722,41.76882899906],[-71.617288,41.76879299906],[-71.617494,41.76865499906],[-71.617599,41.76859799906],[-71.617683,41.76856999906],[-71.617857,41.76852599906],[-71.618052,41.76848999906],[-71.618155,41.76845899906],[-71.618246,41.76840399906],[-71.618369,41.76835999906],[-71.61844,41.76832999906],[-71.618506,41.76829099906],[-71.61866,41.76823899906],[-71.618749,41.76819499906],[-71.618913,41.76809299906],[-71.619071,41.76800699906],[-71.619119,41.76796499906],[-71.619197,41.76788199906],[-71.619347,41.76767799906],[-71.61942,41.76766299906],[-71.619792,41.76767099906],[-71.619958,41.76766699906],[-71.620061,41.76764599906],[-71.620239,41.76757399906],[-71.62031,41.76752899906],[-71.62059,41.76737799906],[-71.620752,41.76725699906],[-71.620797,41.76719699906],[-71.620786,41.76712299906],[-71.620726,41.76704699906],[-71.620673,41.76696799906],[-71.62071,41.76691899906],[-71.620809,41.76682699906],[-71.620863,41.76678699906],[-71.620954,41.76674999906],[-71.62129,41.76669099906],[-71.621371,41.76667999906],[-71.621682,41.76668599906],[-71.621853,41.76669099906],[-71.621971,41.76671999906],[-71.622055,41.76676299906],[-71.622098,41.76680599906],[-71.622146,41.76688999906],[-71.622178,41.76696099906],[-71.622196,41.76710599906],[-71.622255,41.76716899906],[-71.622395,41.76727399906],[-71.622468,41.76733599906],[-71.622492,41.76740299906],[-71.622501,41.76747799906],[-71.622496,41.76761799906],[-71.622481,41.76770299906],[-71.622481,41.76776599906],[-71.622492,41.76784599906],[-71.622572,41.76787399906],[-71.62262,41.76791599906],[-71.622671,41.76799799906],[-71.622698,41.76805399906],[-71.622722,41.76812699906],[-71.622748,41.76823499906],[-71.622788,41.76831099906],[-71.622849,41.76847499906],[-71.622888,41.76861199906],[-71.622935,41.76869199906],[-71.622982,41.76875599906],[-71.623035,41.76879799906],[-71.623262,41.76893699906],[-71.623322,41.76897999906],[-71.623406,41.76902899906],[-71.623682,41.76913699906],[-71.624062,41.76926799906],[-71.624281,41.76933399906],[-71.624396,41.76935799906],[-71.624445,41.76940099906],[-71.624485,41.76945599906],[-71.624492,41.76951899906],[-71.624488,41.76961699906],[-71.624494,41.76968599906],[-71.624561,41.76972299906],[-71.624716,41.76975499906],[-71.624863,41.76972699906],[-71.624977,41.76971199906],[-71.625057,41.76968199906],[-71.625128,41.76966399906],[-71.625256,41.76963999906],[-71.625404,41.76964799906],[-71.625481,41.76963999906],[-71.625782,41.76954899906],[-71.625854,41.76956099906],[-71.625989,41.76963599906],[-71.626074,41.76964099906],[-71.626127,41.76962199906],[-71.626185,41.76958199906],[-71.626265,41.76951399906],[-71.626375,41.76940799906],[-71.626444,41.76936999906],[-71.626496,41.76938499906],[-71.626519,41.76944599906],[-71.626504,41.76966399906],[-71.626524,41.76972799906],[-71.626511,41.76980599906],[-71.626481,41.76984399906],[-71.626488,41.76991299906],[-71.626522,41.76996999906],[-71.626556,41.76999399906],[-71.626652,41.77001499906],[-71.62673,41.77002399906],[-71.62681,41.77001899906],[-71.626907,41.76998099906],[-71.627028,41.76994999906],[-71.627076,41.76998099906],[-71.627104,41.77003799906],[-71.627115,41.77011399906],[-71.62715,41.77015899906],[-71.627204,41.77019599906],[-71.62729,41.77023199906],[-71.627368,41.77024699906],[-71.628044,41.77026299906],[-71.628166,41.77026099906],[-71.628483,41.77021599906],[-71.628651,41.77020599906],[-71.628722,41.77019499906],[-71.628904,41.77018499906],[-71.629194,41.77016799906],[-71.629409,41.77016899906],[-71.629525,41.77016399906],[-71.629693,41.77011599906],[-71.629866,41.77000999906],[-71.629978,41.76995699906],[-71.630093,41.76992199906],[-71.630182,41.76988099906],[-71.630239,41.76983499906],[-71.630325,41.76978099906],[-71.630543,41.76968799906],[-71.630637,41.76962999906],[-71.630757,41.76948999906],[-71.630967,41.76936699906],[-71.631075,41.76928599906],[-71.631163,41.76925599906],[-71.631278,41.76925599906],[-71.63136,41.76929699906],[-71.631377,41.76932999906],[-71.631342,41.76938999906],[-71.63118,41.76948199906],[-71.631127,41.76952699906],[-71.631082,41.76957599906],[-71.631035,41.76966299906],[-71.631029,41.76972799906],[-71.631017,41.76978099906],[-71.630959,41.76981799906],[-71.630824,41.76995299906],[-71.630751,41.77001299906],[-71.630691,41.77010299906],[-71.630633,41.77016999906],[-71.630575,41.77021799906],[-71.630589,41.77040099906],[-71.630576,41.77051099906],[-71.630537,41.77057499906],[-71.630525,41.77061399906],[-71.630561,41.77072399906],[-71.630612,41.77084699906],[-71.630619,41.77089799906],[-71.630551,41.77098499906],[-71.630563,41.77105599906],[-71.630584,41.77112599906],[-71.63062,41.77121099906],[-71.63065,41.77125699906],[-71.630703,41.77120699906],[-71.630758,41.77112699906],[-71.630829,41.77106799906],[-71.630865,41.77105099906],[-71.630872,41.77111999906],[-71.630872,41.77117399906],[-71.630839,41.77134299906],[-71.63082,41.77140499906],[-71.630779,41.77147899906],[-71.630735,41.77152299906],[-71.630663,41.77160799906],[-71.630621,41.77168999906],[-71.630617,41.77175199906],[-71.630623,41.77180799906],[-71.630555,41.77187199906],[-71.630481,41.77196099906],[-71.63045,41.77201799906],[-71.630453,41.77215099906],[-71.630462,41.77220999906],[-71.630516,41.77225999906],[-71.630609,41.77228299906],[-71.630888,41.77228699906],[-71.630992,41.77234099906],[-71.631059,41.77236899906],[-71.631177,41.77238299906],[-71.631451,41.77238599906],[-71.631696,41.77240699906],[-71.631764,41.77242999906],[-71.631755,41.77256999906],[-71.631918,41.77283999906],[-71.631958,41.77289899906],[-71.632025,41.77304699906],[-71.632059,41.77310299906],[-71.632066,41.77316599906],[-71.63206,41.77323499906],[-71.632068,41.77338599906],[-71.632094,41.77343899906],[-71.632132,41.77349399906],[-71.63217,41.77356299906],[-71.632192,41.77363799906],[-71.63222,41.77370699906],[-71.632268,41.77376099906],[-71.632326,41.77379499906],[-71.632377,41.77381299906],[-71.632531,41.77380699906],[-71.632891,41.77381699906],[-71.632934,41.77380599906],[-71.633049,41.77369199906],[-71.63319,41.77368099906],[-71.633327,41.77367899906],[-71.633414,41.77368299906],[-71.633459,41.77375099906],[-71.633448,41.77381699906],[-71.633448,41.77389199906],[-71.633458,41.77395199906],[-71.633509,41.77400599906],[-71.633558,41.77403699906],[-71.633698,41.77403399906],[-71.633778,41.77402199906],[-71.633842,41.77399099906],[-71.633938,41.77392399906],[-71.633994,41.77386899906],[-71.634104,41.77381699906],[-71.634203,41.77379699906],[-71.634278,41.77379699906],[-71.634359,41.77377799906],[-71.634479,41.77372999906],[-71.634553,41.77370799906],[-71.634632,41.77369999906],[-71.634692,41.77370399906],[-71.634652,41.77378499906],[-71.634605,41.77383299906],[-71.63451,41.77391599906],[-71.634476,41.77397699906],[-71.634513,41.77407299906],[-71.634523,41.77411399906],[-71.634521,41.77413799906],[-71.634247,41.77414099906],[-71.634193,41.77418999906],[-71.634099,41.77425099906],[-71.634005,41.77427299906],[-71.633672,41.77431499906],[-71.633584,41.77435299906],[-71.633529,41.77439999906],[-71.633474,41.77445799906],[-71.633453,41.77453199906],[-71.633443,41.77460899906],[-71.633444,41.77467199906],[-71.633456,41.77473899906],[-71.633488,41.77479499906],[-71.633534,41.77485299906],[-71.633663,41.77488299906],[-71.633861,41.77489099906],[-71.633989,41.77489099906],[-71.634141,41.77487199906],[-71.634235,41.77483499906],[-71.634316,41.77479399906],[-71.634347,41.77479499906],[-71.634522,41.77483199906],[-71.63458,41.77486999906],[-71.634607,41.77490199906],[-71.634615,41.77496699906],[-71.634642,41.77498599906],[-71.634808,41.77500399906],[-71.634846,41.77501699906],[-71.634827,41.77507699906],[-71.634796,41.77513999906],[-71.63498,41.77514399906],[-71.635027,41.77514999906],[-71.635068,41.77522499906],[-71.635091,41.77525699906],[-71.635277,41.77531299906],[-71.635332,41.77530499906],[-71.635454,41.77525299906],[-71.635548,41.77523499906],[-71.635604,41.77523499906],[-71.635649,41.77525199906],[-71.635653,41.77535599906],[-71.635724,41.77536899906],[-71.635818,41.77536199906],[-71.635911,41.77530999906],[-71.635971,41.77525299906],[-71.63612,41.77529999906],[-71.636195,41.77531099906],[-71.636245,41.77524499906],[-71.63639,41.77512899906],[-71.636452,41.77510499906],[-71.636545,41.77515699906],[-71.636615,41.77518399906],[-71.636706,41.77520899906],[-71.636761,41.77524099906],[-71.63681,41.77530599906],[-71.636887,41.77537899906],[-71.636954,41.77541499906],[-71.636999,41.77546099906],[-71.637095,41.77550399906],[-71.63718,41.77550799906],[-71.637254,41.77550699906],[-71.637369,41.77557499906],[-71.637414,41.77564599906],[-71.637442,41.77570399906],[-71.637399,41.77579799906],[-71.637364,41.77584899906],[-71.637319,41.77593999906],[-71.637229,41.77604799906],[-71.637166,41.77609099906],[-71.637174,41.77612399906],[-71.637284,41.77617099906],[-71.637439,41.77624999906],[-71.637516,41.77630499906],[-71.637574,41.77634099906],[-71.637599,41.77640799906],[-71.63758,41.77647199906],[-71.637526,41.77652999906],[-71.637448,41.77658899906],[-71.637392,41.77666399906],[-71.637406,41.77669999906],[-71.637491,41.77673299906],[-71.637593,41.77675999906],[-71.637722,41.77677699906],[-71.637893,41.77677799906],[-71.637976,41.77678899906],[-71.638063,41.77683399906],[-71.63808,41.77684699906],[-71.637931,41.77687499906],[-71.637682,41.77695899906],[-71.637601,41.77700099906],[-71.637517,41.77701899906],[-71.637433,41.77704299906],[-71.637269,41.77715199906],[-71.637172,41.77720499906],[-71.63712,41.77724299906],[-71.637121,41.77728499906],[-71.637188,41.77733599906],[-71.637222,41.77738099906],[-71.637242,41.77744999906],[-71.637299,41.77753799906],[-71.637355,41.77761199906],[-71.637385,41.77766499906],[-71.637423,41.77777799906],[-71.637454,41.77794799906],[-71.637481,41.77799299906],[-71.637592,41.77800899906],[-71.637659,41.77803699906],[-71.637842,41.77813599906],[-71.637899,41.77817099906],[-71.63804,41.77830199906],[-71.638084,41.77835399906],[-71.638143,41.77840099906],[-71.638196,41.77845199906],[-71.638291,41.77859299906],[-71.638324,41.77862899906],[-71.638312,41.77876199906],[-71.638324,41.77885399906],[-71.63834,41.77892199906],[-71.638367,41.77894699906],[-71.638467,41.77895499906],[-71.638657,41.77897799906],[-71.638771,41.77898699906],[-71.638955,41.77901699906],[-71.639063,41.77905599906],[-71.639055,41.77908299906],[-71.639001,41.77912499906],[-71.63894,41.77915999906],[-71.638828,41.77919899906],[-71.638818,41.77921699906],[-71.638926,41.77923399906],[-71.639063,41.77924299906],[-71.639174,41.77945499906],[-71.639168,41.77959499906],[-71.639175,41.77972299906],[-71.639274,41.77984699906],[-71.639332,41.77988999906],[-71.639385,41.77994199906],[-71.639408,41.78000099906],[-71.639457,41.78005499906],[-71.639499,41.78011299906],[-71.639489,41.78025099906],[-71.639519,41.78028199906],[-71.63959,41.78029399906],[-71.639622,41.78028599906],[-71.639684,41.78022899906],[-71.639745,41.78018499906],[-71.639791,41.78013599906],[-71.639944,41.78012999906],[-71.64002,41.78013199906],[-71.640074,41.78029999906],[-71.640123,41.78039999906],[-71.640111,41.78045799906],[-71.640119,41.78051699906],[-71.640163,41.78056399906],[-71.640179,41.78061899906],[-71.640135,41.78064399906],[-71.640059,41.78065599906],[-71.640055,41.78072599906],[-71.640069,41.78079099906],[-71.640103,41.78083999906],[-71.640247,41.78093299906],[-71.640252,41.78099699906],[-71.640212,41.78117399906],[-71.640191,41.78131599906],[-71.640188,41.78146699906],[-71.640202,41.78166299906],[-71.640228,41.78171399906],[-71.640266,41.78176499906],[-71.640266,41.78182199906],[-71.64029,41.78187399906],[-71.640352,41.78190299906],[-71.640443,41.78191699906],[-71.640529,41.78191899906],[-71.640609,41.78192899906],[-71.640694,41.78195599906],[-71.640768,41.78196299906],[-71.640834,41.78196099906],[-71.640988,41.78183799906],[-71.641066,41.78182199906],[-71.64117,41.78181099906],[-71.641249,41.78181499906],[-71.641321,41.78182599906],[-71.641473,41.78176199906],[-71.641545,41.78172599906],[-71.641604,41.78166699906],[-71.641674,41.78161599906],[-71.6418,41.78153699906],[-71.641957,41.78149399906],[-71.642024,41.78144099906],[-71.642094,41.78140399906],[-71.642149,41.78135999906],[-71.642256,41.78124399906],[-71.642337,41.78112399906],[-71.642478,41.78098699906],[-71.642606,41.78086999906],[-71.642659,41.78079899906],[-71.64271,41.78075499906],[-71.642782,41.78071299906],[-71.642915,41.78061599906],[-71.642982,41.78057299906],[-71.643033,41.78050599906],[-71.643148,41.78037999906],[-71.643214,41.78033199906],[-71.64326,41.78028599906],[-71.643343,41.78022999906],[-71.643429,41.78019199906],[-71.643491,41.78012799906],[-71.643661,41.78003599906],[-71.643689,41.77997799906],[-71.643739,41.77991799906],[-71.643817,41.77988499906],[-71.643916,41.77987599906],[-71.643984,41.77984099906],[-71.64406,41.77979099906],[-71.644146,41.77974099906],[-71.644242,41.77971399906],[-71.64432,41.77970099906],[-71.644481,41.77965899906],[-71.64455,41.77963299906],[-71.64465,41.77960299906],[-71.64473,41.77958499906],[-71.644756,41.77959799906],[-71.644752,41.77973799906],[-71.644779,41.77978799906],[-71.64484,41.77978199906],[-71.644925,41.77974799906],[-71.644995,41.77972599906],[-71.64507,41.77969399906],[-71.645088,41.77963499906],[-71.645115,41.77961399906],[-71.645202,41.77961399906],[-71.645302,41.77961999906],[-71.645392,41.77966899906],[-71.645463,41.77970099906],[-71.645528,41.77974599906],[-71.645602,41.77977799906],[-71.645782,41.77982099906],[-71.64589,41.77986099906],[-71.645953,41.77990399906],[-71.646016,41.77994099906],[-71.646105,41.77996899906],[-71.646347,41.78001699906],[-71.646559,41.78014699906],[-71.646634,41.78018599906],[-71.646704,41.78020499906],[-71.646969,41.78025899906],[-71.647046,41.78026799906],[-71.64723,41.78027299906],[-71.647315,41.78027899906],[-71.647782,41.78027399906],[-71.647806,41.78027899906],[-71.647797,41.78033399906],[-71.647708,41.78035099906],[-71.647649,41.78038899906],[-71.647615,41.78044999906],[-71.647661,41.78055199906],[-71.6477,41.78059399906],[-71.647905,41.78067299906],[-71.648059,41.78072099906],[-71.648318,41.78077699906],[-71.648494,41.78079799906],[-71.648586,41.78081599906],[-71.648725,41.78086099906],[-71.6488,41.78086599906],[-71.648877,41.78085499906],[-71.648882,41.78078099906],[-71.648839,41.78074899906],[-71.648748,41.78071299906],[-71.648659,41.78069899906],[-71.648579,41.78068199906],[-71.648599,41.78062199906],[-71.648648,41.78055999906],[-71.648792,41.78044599906],[-71.64932,41.78044299906],[-71.649361,41.78044899906],[-71.649422,41.78045799906],[-71.649519,41.78049699906],[-71.649574,41.78054399906],[-71.649622,41.78056999906],[-71.649693,41.78057999906],[-71.649727,41.78062799906],[-71.649803,41.78077299906],[-71.649871,41.78080299906],[-71.649945,41.78082099906],[-71.650016,41.78084299906],[-71.650107,41.78085299906],[-71.65019,41.78085199906],[-71.650261,41.78085999906],[-71.650325,41.78087899906],[-71.650374,41.78092899906],[-71.650457,41.78096399906],[-71.650534,41.78097799906],[-71.650498,41.78112499906],[-71.650474,41.78118599906],[-71.650435,41.78123399906],[-71.650369,41.78125899906],[-71.650271,41.78125899906],[-71.650189,41.78125099906],[-71.650117,41.78123199906],[-71.650053,41.78120699906],[-71.649981,41.78119599906],[-71.649971,41.78122499906],[-71.650003,41.78141699906],[-71.650005,41.78154499906],[-71.650035,41.78161299906],[-71.650123,41.78162699906],[-71.650206,41.78163099906],[-71.650296,41.78165299906],[-71.6505,41.78172099906],[-71.650575,41.78175499906],[-71.650666,41.78178399906],[-71.650784,41.78179899906],[-71.650868,41.78183599906],[-71.650984,41.78187999906],[-71.651049,41.78192199906],[-71.651111,41.78197499906],[-71.651161,41.78202899906],[-71.651224,41.78208799906],[-71.65129,41.78211899906],[-71.651372,41.78211999906],[-71.651488,41.78203399906],[-71.651558,41.78199999906],[-71.651717,41.78200599906],[-71.651813,41.78202499906],[-71.65199,41.78210799906],[-71.652078,41.78214099906],[-71.652174,41.78218299906],[-71.652326,41.78218999906],[-71.652381,41.78222799906],[-71.652439,41.78225399906],[-71.65278196499857,41.78225052599672],[-71.65381345906671,41.78301377842],[-71.653782,41.78301599906],[-71.653404,41.78302499906],[-71.652837,41.78302899906],[-71.652769,41.78305799906],[-71.652762,41.78312199906],[-71.652772,41.78335299906],[-71.652786,41.78341499906],[-71.652827,41.78348099906],[-71.652886,41.78349899906],[-71.652958,41.78349299906],[-71.65305,41.78345799906],[-71.653119,41.78342299906],[-71.653147,41.78337999906],[-71.653151,41.78328799906],[-71.653175,41.78325399906],[-71.653255,41.78324899906],[-71.653349,41.78326599906],[-71.653579,41.78337599906],[-71.653624,41.78342099906],[-71.653695,41.78346499906],[-71.653754,41.78347099906],[-71.653829,41.78346399906],[-71.653911,41.78344299906],[-71.653983,41.78341199906],[-71.654053,41.78339199906],[-71.654211,41.78336299906],[-71.65426428735051,41.783347368103854],[-71.65745963836345,41.78571176309085],[-71.657349,41.78575099906],[-71.657267,41.78579499906],[-71.657095,41.78587199906],[-71.656994,41.78589299906],[-71.65691,41.78592799906],[-71.65686,41.78596899906],[-71.656791,41.78601099906],[-71.656714,41.78602699906],[-71.656627,41.78605999906],[-71.656544,41.78610699906],[-71.65649,41.78614399906],[-71.656416,41.78617199906],[-71.656314,41.78619799906],[-71.656242,41.78622199906],[-71.656155,41.78627099906],[-71.656078,41.78628399906],[-71.655858,41.78628499906],[-71.655792,41.78632699906],[-71.655748,41.78636599906],[-71.655759,41.78639099906],[-71.655743,41.78644799906],[-71.655691,41.78652499906],[-71.655629,41.78656799906],[-71.655428,41.78666399906],[-71.655294,41.78674799906],[-71.655129,41.78681699906],[-71.654962,41.78686099906],[-71.654884,41.78687099906],[-71.65362,41.78687999906],[-71.653544,41.78686999906],[-71.653455,41.78681499906],[-71.653414,41.78676699906],[-71.653371,41.78673199906],[-71.65327,41.78671999906],[-71.653091,41.78673599906],[-71.653009,41.78684699906],[-71.652966,41.78688199906],[-71.652865,41.78691399906],[-71.652803,41.78694199906],[-71.652779,41.78701199906],[-71.652766,41.78707899906],[-71.652713,41.78720199906],[-71.652702,41.78725699906],[-71.652669,41.78731499906],[-71.652583,41.78734799906],[-71.652519,41.78736499906],[-71.652388,41.78727399906],[-71.652339,41.78721999906],[-71.652274,41.78718999906],[-71.65219,41.78720899906],[-71.652168,41.78725899906],[-71.652165,41.78739299906],[-71.65214,41.78745199906],[-71.65214,41.78753099906],[-71.652151,41.78759899906],[-71.65218,41.78768099906],[-71.652228,41.78774499906],[-71.652306,41.78781099906],[-71.652386,41.78784199906],[-71.652479,41.78789099906],[-71.652558,41.78792599906],[-71.652525,41.78797599906],[-71.652511,41.78804399906],[-71.65257,41.78816199906],[-71.652592,41.78822099906],[-71.652692,41.78830899906],[-71.652758,41.78834899906],[-71.65281,41.78839899906],[-71.652843,41.78844999906],[-71.652927,41.78849799906],[-71.653021,41.78853799906],[-71.653092,41.78856099906],[-71.653162,41.78856399906],[-71.653183,41.78857299906],[-71.653141,41.78862399906],[-71.653142,41.78868299906],[-71.653177,41.78873299906],[-71.653253,41.78873999906],[-71.65335,41.78873699906],[-71.653479,41.78872299906],[-71.653542,41.78870699906],[-71.653631,41.78859699906],[-71.653711,41.78855999906],[-71.653785,41.78854299906],[-71.653877,41.78853499906],[-71.654039,41.78853699906],[-71.654101,41.78857099906],[-71.654129,41.78862599906],[-71.654082,41.78875999906],[-71.654042,41.78892299906],[-71.654048,41.78899399906],[-71.654102,41.78914299906],[-71.654155,41.78919999906],[-71.654303,41.78930599906],[-71.654372,41.78933099906],[-71.654561,41.78932999906],[-71.654656,41.78930899906],[-71.654741,41.78927599906],[-71.654864,41.78925299906],[-71.654961,41.78924199906],[-71.655122,41.78924099906],[-71.655197,41.78927099906],[-71.655272,41.78930799906],[-71.655409,41.78939099906],[-71.655452,41.78943799906],[-71.655507,41.78947299906],[-71.655561,41.78951699906],[-71.655618,41.78957099906],[-71.655679,41.78963899906],[-71.655834,41.78976699906],[-71.6559,41.78981599906],[-71.655914,41.78987099906],[-71.655936,41.78992499906],[-71.655984,41.78997399906],[-71.656062,41.79002799906],[-71.656131,41.79006199906],[-71.656203,41.79011299906],[-71.656309,41.79023299906],[-71.656385,41.79028499906],[-71.65645,41.79031499906],[-71.656541,41.79034999906],[-71.656582,41.79037699906],[-71.656628,41.79043099906],[-71.656711,41.79047599906],[-71.656775,41.79050199906],[-71.656927,41.79059399906],[-71.656977,41.79064399906],[-71.657015,41.79070199906],[-71.657055,41.79073799906],[-71.657209,41.79080599906],[-71.6574,41.79085099906],[-71.657487,41.79085899906],[-71.65813,41.79085699906],[-71.658206,41.79085199906],[-71.658385,41.79085299906],[-71.65845,41.79088799906],[-71.65852,41.79093799906],[-71.658593,41.79096499906],[-71.658682,41.79098099906],[-71.658775,41.79098499906],[-71.658934,41.79100699906],[-71.659219,41.79102899906],[-71.659401,41.79105399906],[-71.659493,41.79105799906],[-71.659809,41.79105399906],[-71.659881,41.79103899906],[-71.660031,41.79099699906],[-71.660237,41.79091999906],[-71.660661,41.79087399906],[-71.660834,41.79086799906],[-71.661161,41.79086599906],[-71.661507,41.79077799906],[-71.661612,41.79076299906],[-71.661711,41.79075399906],[-71.662098,41.79068199906],[-71.66255,41.79060499906],[-71.662638,41.79059899906],[-71.662801,41.79059799906],[-71.662885,41.79053999906],[-71.662975,41.79050699906],[-71.663136,41.79046099906],[-71.663239,41.79042099906],[-71.663429,41.79036399906],[-71.663511,41.79032799906],[-71.6636503793526,41.790292592208324],[-71.66426787109926,41.79074950426099],[-71.66426,41.79075999906],[-71.664211,41.79081299906],[-71.664166,41.79087399906],[-71.664018,41.79100499906],[-71.664017,41.79105999906],[-71.66408,41.79108899906],[-71.664123,41.79110399906],[-71.664177,41.79111699906],[-71.664207,41.79110999906],[-71.664256,41.79106499906],[-71.66442693473645,41.79086720315068],[-71.66655113284921,41.79243900022364],[-71.666578,41.79250199906],[-71.666615,41.79255499906],[-71.666682,41.79259199906],[-71.666827,41.79269199906],[-71.666936,41.79278999906],[-71.666999,41.79283099906],[-71.667055,41.79287999906],[-71.667134,41.79293399906],[-71.667204,41.79297599906],[-71.667272,41.79299699906],[-71.667342,41.79302499906],[-71.667382,41.79305499906],[-71.66738555144896,41.79305642696215],[-71.66785745524066,41.79340561143514],[-71.667693,41.79342099906],[-71.66752,41.79346899906],[-71.667443,41.79348199906],[-71.667349,41.79350399906],[-71.667205,41.79357099906],[-71.667183,41.79361099906],[-71.667234,41.79362599906],[-71.667308,41.79362399906],[-71.667383,41.79361499906],[-71.667488,41.79358799906],[-71.667563,41.79357899906],[-71.667754,41.79357399906],[-71.668031,41.79357299906],[-71.66808748748427,41.79357582343421],[-71.668158,41.79362799906],[-71.668419,41.79362899906],[-71.668467,41.79364099906],[-71.668505,41.79364999906],[-71.66867,41.79370999906],[-71.668826,41.79378999906],[-71.668994,41.79384999906],[-71.669169,41.79393099906],[-71.669303,41.79397399906],[-71.669356,41.79398799906],[-71.669439,41.79401899906],[-71.669641,41.79411099906],[-71.669786,41.79418599906],[-71.66984,41.79423599906],[-71.669915,41.79429099906],[-71.669983,41.79431399906],[-71.670079,41.79436999906],[-71.670136,41.79441499906],[-71.670211,41.79446199906],[-71.670266,41.79450199906],[-71.670332,41.79453699906],[-71.670458,41.79461699906],[-71.670538,41.79464099906],[-71.67073,41.79464499906],[-71.67081,41.79464099906],[-71.670888,41.79461999906],[-71.671157,41.79451399906],[-71.671319,41.79443999906],[-71.671651,41.79431499906],[-71.671717,41.79428399906],[-71.671885,41.79423199906],[-71.671956,41.79419299906],[-71.672028,41.79412599906],[-71.672101,41.79409299906],[-71.672175,41.79406599906],[-71.672254,41.79402599906],[-71.672327,41.79396999906],[-71.672384,41.79393499906],[-71.672456,41.79390299906],[-71.67261,41.79377999906],[-71.672669,41.79372799906],[-71.672821,41.79355499906],[-71.673007,41.79343399906],[-71.673058,41.79338799906],[-71.673117,41.79334899906],[-71.673166,41.79330699906],[-71.673218,41.79321599906],[-71.673266,41.79315699906],[-71.673388,41.79300799906],[-71.673455,41.79295499906],[-71.673514,41.79290799906],[-71.67356,41.79286099906],[-71.6736,41.79279699906],[-71.67365,41.79266399906],[-71.673667,41.79260399906],[-71.673689,41.79255199906],[-71.67375,41.79244399906],[-71.673724,41.79242799906],[-71.673675,41.79238199906],[-71.673666,41.79232199906],[-71.673673,41.79225899906],[-71.673719,41.79220499906],[-71.67376,41.79218899906],[-71.67374,41.79195299906],[-71.67632,41.79184999906],[-71.677496,41.79202199906],[-71.679749,41.79259599906]]],[[[-71.663983,41.79118899906],[-71.663911,41.79117099906],[-71.663832,41.79116899906],[-71.663736,41.79118099906],[-71.663657,41.79121499906],[-71.663646,41.79135699906],[-71.663625,41.79141599906],[-71.663517,41.79150899906],[-71.663465,41.79152799906],[-71.663376,41.79153799906],[-71.663296,41.79155899906],[-71.663217,41.79159499906],[-71.663145,41.79161999906],[-71.663034,41.79165099906],[-71.66296,41.79167899906],[-71.662883,41.79168199906],[-71.662732,41.79167799906],[-71.662655,41.79166199906],[-71.662564,41.79165199906],[-71.662492,41.79165999906],[-71.662427,41.79170699906],[-71.662334,41.79174399906],[-71.662276,41.79177899906],[-71.662189,41.79179699906],[-71.662109,41.79182699906],[-71.661813,41.79190699906],[-71.661741,41.79192199906],[-71.661672,41.79194299906],[-71.661609,41.79198099906],[-71.661558,41.79203699906],[-71.661535,41.79209999906],[-71.661502,41.79216299906],[-71.661435,41.79219599906],[-71.661345,41.79225299906],[-71.661319,41.79230899906],[-71.661277,41.79235599906],[-71.661212,41.79240699906],[-71.661108,41.79254299906],[-71.661066,41.79257899906],[-71.660853,41.79262999906],[-71.660767,41.79266599906],[-71.660526,41.79274699906],[-71.660406,41.79277599906],[-71.660316,41.79280499906],[-71.660233,41.79282399906],[-71.660048,41.79284499906],[-71.659953,41.79288599906],[-71.659924,41.79294199906],[-71.659916,41.79302099906],[-71.659817,41.79304399906],[-71.659724,41.79305899906],[-71.659542,41.79306599906],[-71.659415,41.79305699906],[-71.659334,41.79303099906],[-71.659272,41.79303099906],[-71.659222,41.79307799906],[-71.659148,41.79311799906],[-71.65902,41.79316199906],[-71.658826,41.79316599906],[-71.658749,41.79316099906],[-71.658664,41.79312799906],[-71.658606,41.79309499906],[-71.658499,41.79299799906],[-71.658457,41.79294699906],[-71.658452,41.79288199906],[-71.658438,41.79283399906],[-71.658334,41.79282299906],[-71.658234,41.79283699906],[-71.658157,41.79288999906],[-71.658111,41.79294299906],[-71.657941,41.79295099906],[-71.657853,41.79297799906],[-71.657753,41.79302599906],[-71.657675,41.79305199906],[-71.657599,41.79307099906],[-71.657534,41.79304599906],[-71.657491,41.79303599906],[-71.657446,41.79302499906],[-71.657386,41.79299999906],[-71.65735,41.79286199906],[-71.657318,41.79278499906],[-71.657278,41.79273199906],[-71.657301,41.79266899906],[-71.657336,41.79259999906],[-71.657362,41.79252699906],[-71.657376,41.79241399906],[-71.657395,41.79235499906],[-71.657433,41.79230399906],[-71.657457,41.79224899906],[-71.657447,41.79218299906],[-71.657411,41.79212999906],[-71.657285,41.79202399906],[-71.657191,41.79196799906],[-71.657091,41.79192099906],[-71.656913,41.79185799906],[-71.656755,41.79178499906],[-71.656629,41.79173599906],[-71.656529,41.79168999906],[-71.656352,41.79155299906],[-71.656228,41.79149499906],[-71.656133,41.79147499906],[-71.655965,41.79140799906],[-71.655711,41.79129799906],[-71.655645,41.79127299906],[-71.655594,41.79121699906],[-71.655531,41.79115999906],[-71.655455,41.79112499906],[-71.655371,41.79111099906],[-71.655263,41.79107699906],[-71.655172,41.79104099906],[-71.655101,41.79100599906],[-71.655048,41.79095699906],[-71.654972,41.79095399906],[-71.65478,41.79095899906],[-71.654692,41.79095799906],[-71.654685,41.79089599906],[-71.654685,41.79076699906],[-71.654638,41.79073199906],[-71.654567,41.79070699906],[-71.654496,41.79069499906],[-71.654275,41.79069899906],[-71.654207,41.79073699906],[-71.654135,41.79077099906],[-71.654076,41.79080399906],[-71.653792,41.79074999906],[-71.653732,41.79072299906],[-71.653736,41.79066099906],[-71.653731,41.79060499906],[-71.653719,41.79055099906],[-71.65367,41.79049999906],[-71.653577,41.79047099906],[-71.653404,41.79047799906],[-71.653288,41.79049299906],[-71.653214,41.79050699906],[-71.65313,41.79054199906],[-71.65306,41.79056099906],[-71.652846,41.79052599906],[-71.652784,41.79050099906],[-71.65279,41.79043199906],[-71.652788,41.79037599906],[-71.652516,41.79038199906],[-71.652303,41.79037199906],[-71.652242,41.79036499906],[-71.652219,41.79031499906],[-71.65214,41.79028599906],[-71.651727,41.79028899906],[-71.651627,41.79034099906],[-71.65156,41.79038499906],[-71.651497,41.79052099906],[-71.65145,41.79057899906],[-71.651404,41.79060999906],[-71.65123,41.79062099906],[-71.651157,41.79063399906],[-71.651092,41.79065899906],[-71.651053,41.79072699906],[-71.651007,41.79077999906],[-71.650896,41.79084599906],[-71.650838,41.79088499906],[-71.650716,41.79098899906],[-71.650638,41.79100299906],[-71.650431,41.79101199906],[-71.65034,41.79099199906],[-71.650259,41.79095999906],[-71.650184,41.79091399906],[-71.650133,41.79086399906],[-71.650063,41.79081899906],[-71.649949,41.79077399906],[-71.649825,41.79075599906],[-71.649711,41.79075199906],[-71.649642,41.79073599906],[-71.64959,41.79069599906],[-71.649555,41.79064099906],[-71.649486,41.79056399906],[-71.649319,41.79044499906],[-71.649234,41.79040799906],[-71.649163,41.79038999906],[-71.649079,41.79037399906],[-71.648978,41.79034099906],[-71.648808,41.79026699906],[-71.648694,41.79024699906],[-71.648615,41.79024799906],[-71.648567,41.79023299906],[-71.648538,41.79016399906],[-71.648499,41.79011199906],[-71.648483,41.79004899906],[-71.648419,41.78999399906],[-71.648221,41.78991199906],[-71.648102,41.78988199906],[-71.648011,41.78986399906],[-71.647911,41.78981999906],[-71.647623,41.78972499906],[-71.647517,41.78971499906],[-71.647414,41.78971799906],[-71.647338,41.78975199906],[-71.647305,41.78978599906],[-71.647235,41.78978299906],[-71.647222,41.78972599906],[-71.64722,41.78954499906],[-71.647191,41.78949899906],[-71.64712,41.78944699906],[-71.64708,41.78938499906],[-71.647,41.78933499906],[-71.646925,41.78931299906],[-71.646717,41.78922999906],[-71.646531,41.78916799906],[-71.64639,41.78912899906],[-71.646224,41.78907599906],[-71.646218,41.78903099906],[-71.646159,41.78898599906],[-71.646096,41.78896099906],[-71.646021,41.78898199906],[-71.646023,41.78905299906],[-71.645999,41.78910999906],[-71.645964,41.78916699906],[-71.645917,41.78921499906],[-71.645876,41.78924899906],[-71.645795,41.78927499906],[-71.645752,41.78932799906],[-71.645644,41.78933399906],[-71.645567,41.78933099906],[-71.645496,41.78928599906],[-71.645419,41.78925399906],[-71.645201,41.78919499906],[-71.645181,41.78912899906],[-71.645153,41.78906099906],[-71.64512,41.78891699906],[-71.645126,41.78874699906],[-71.645153,41.78861999906],[-71.645199,41.78850599906],[-71.645299,41.78830599906],[-71.64534,41.78826399906],[-71.645475,41.78819299906],[-71.64552,41.78797699906],[-71.64553,41.78789199906],[-71.645559,41.78774099906],[-71.64558,41.78767299906],[-71.645617,41.78759599906],[-71.645674,41.78753199906],[-71.645777,41.78746899906],[-71.645811,41.78740599906],[-71.645831,41.78732999906],[-71.645875,41.78726799906],[-71.645924,41.78721699906],[-71.645975,41.78717499906],[-71.646049,41.78713699906],[-71.646106,41.78709099906],[-71.646177,41.78705099906],[-71.646229,41.78700699906],[-71.646325,41.78683099906],[-71.646317,41.78677299906],[-71.646297,41.78670699906],[-71.646258,41.78664299906],[-71.646107,41.78653299906],[-71.646027,41.78649699906],[-71.645927,41.78646699906],[-71.645767,41.78645099906],[-71.645726,41.78639599906],[-71.645597,41.78634999906],[-71.645519,41.78633699906],[-71.645441,41.78634999906],[-71.645352,41.78638999906],[-71.645266,41.78642199906],[-71.645158,41.78643699906],[-71.645065,41.78643899906],[-71.645016,41.78642999906],[-71.644961,41.78638099906],[-71.644894,41.78635999906],[-71.644281,41.78635999906],[-71.644117,41.78640599906],[-71.643962,41.78645499906],[-71.643867,41.78647699906],[-71.643789,41.78652699906],[-71.643675,41.78668899906],[-71.64362,41.78678199906],[-71.643532,41.78705699906],[-71.64352,41.78707499906],[-71.643483,41.78713499906],[-71.643462,41.78721599906],[-71.643466,41.78732799906],[-71.643454,41.78746699906],[-71.643437,41.78753799906],[-71.643358,41.78761799906],[-71.64329,41.78766499906],[-71.643237,41.78771399906],[-71.643235,41.78801499906],[-71.643211,41.78823799906],[-71.643202,41.78838099906],[-71.643152,41.78853499906],[-71.643056,41.78871499906],[-71.643058,41.78880299906],[-71.643084,41.78900799906],[-71.6431,41.78908799906],[-71.643125,41.78916199906],[-71.643189,41.78925399906],[-71.643263,41.78933399906],[-71.64327,41.78941299906],[-71.643342,41.78952999906],[-71.64342,41.78955899906],[-71.643521,41.78957699906],[-71.643586,41.78960199906],[-71.643647,41.78964799906],[-71.643795,41.78972199906],[-71.64391,41.78976699906],[-71.643968,41.78982299906],[-71.644026,41.78986099906],[-71.644056,41.78991099906],[-71.644079,41.78996399906],[-71.644134,41.79000799906],[-71.644216,41.79003299906],[-71.64438,41.79005999906],[-71.644492,41.79014799906],[-71.644555,41.79022799906],[-71.644609,41.79028599906],[-71.644682,41.79033199906],[-71.644822,41.79046599906],[-71.64488,41.79053699906],[-71.644937,41.79059399906],[-71.645019,41.79063999906],[-71.645089,41.79067299906],[-71.645119,41.79080599906],[-71.645144,41.79088699906],[-71.645153,41.79095699906],[-71.645149,41.79143099906],[-71.645156,41.79154599906],[-71.645223,41.79167599906],[-71.645272,41.79172899906],[-71.645353,41.79180099906],[-71.645377,41.79192999906],[-71.645393,41.79198299906],[-71.645422,41.79204799906],[-71.645485,41.79211099906],[-71.645511,41.79217299906],[-71.645547,41.79222899906],[-71.645603,41.79226499906],[-71.645634,41.79231499906],[-71.645661,41.79237399906],[-71.645699,41.79241199906],[-71.645823,41.79248199906],[-71.645857,41.79252699906],[-71.645866,41.79264799906],[-71.645837,41.79267899906],[-71.645735,41.79269999906],[-71.645655,41.79270699906],[-71.645408,41.79274999906],[-71.645335,41.79276799906],[-71.645172,41.79280599906],[-71.645093,41.79281799906],[-71.644897,41.79282099906],[-71.644873,41.79281599906],[-71.644742,41.79266599906],[-71.644651,41.79247499906],[-71.644543,41.79243699906],[-71.644466,41.79242499906],[-71.644401,41.79240099906],[-71.644335,41.79233499906],[-71.644275,41.79229299906],[-71.644224,41.79222899906],[-71.644067,41.79212799906],[-71.644008,41.79209499906],[-71.643961,41.79204399906],[-71.6439,41.79199599906],[-71.643848,41.79194399906],[-71.643644,41.79170799906],[-71.643578,41.79164799906],[-71.643551,41.79159499906],[-71.6435,41.79154999906],[-71.643312,41.79145599906],[-71.643305,41.79139799906],[-71.643311,41.79128399906],[-71.643324,41.79120899906],[-71.643341,41.79114599906],[-71.643345,41.79108499906],[-71.643321,41.79101599906],[-71.643264,41.79097099906],[-71.643092,41.79097099906],[-71.643011,41.79100099906],[-71.642951,41.79104799906],[-71.642906,41.79111899906],[-71.642856,41.79115899906],[-71.642793,41.79119299906],[-71.642488,41.79119499906],[-71.642423,41.79116299906],[-71.642229,41.79104099906],[-71.642083,41.79092499906],[-71.642034,41.79087999906],[-71.641955,41.79082099906],[-71.6417,41.79073299906],[-71.641632,41.79070099906],[-71.641579,41.79061899906],[-71.641534,41.79057199906],[-71.641498,41.79052199906],[-71.641479,41.79042799906],[-71.641475,41.79037099906],[-71.641486,41.79030799906],[-71.641492,41.79021999906],[-71.641489,41.79016599906],[-71.641481,41.79014599906],[-71.641141,41.79014699906],[-71.641116,41.79013299906],[-71.641091,41.79007199906],[-71.641073,41.78998999906],[-71.641062,41.78984499906],[-71.641041,41.78971999906],[-71.641021,41.78966499906],[-71.64097,41.78944999906],[-71.640906,41.78929199906],[-71.64086,41.78921399906],[-71.640823,41.78916699906],[-71.640794,41.78911099906],[-71.64078,41.78904299906],[-71.640755,41.78897499906],[-71.640723,41.78892399906],[-71.640672,41.78885599906],[-71.640637,41.78878999906],[-71.640579,41.78874099906],[-71.6405,41.78869499906],[-71.640397,41.78857399906],[-71.640338,41.78852599906],[-71.640274,41.78848499906],[-71.640191,41.78845099906],[-71.640036,41.78840799906],[-71.639974,41.78837099906],[-71.639945,41.78829499906],[-71.639907,41.78805899906],[-71.639883,41.78799199906],[-71.639877,41.78793699906],[-71.639882,41.78787699906],[-71.639873,41.78751099906],[-71.639884,41.78745399906],[-71.639887,41.78739699906],[-71.6399,41.78733899906],[-71.639943,41.78729299906],[-71.639945,41.78721399906],[-71.639933,41.78714299906],[-71.639894,41.78709199906],[-71.639776,41.78699099906],[-71.639713,41.78695299906],[-71.639599,41.78685599906],[-71.639362,41.78677699906],[-71.639288,41.78677899906],[-71.639242,41.78682399906],[-71.639206,41.78688899906],[-71.639029,41.78698999906],[-71.639018,41.78704899906],[-71.638993,41.78710199906],[-71.638802,41.78724799906],[-71.638729,41.78729699906],[-71.638634,41.78733599906],[-71.638543,41.78735399906],[-71.638436,41.78738399906],[-71.638354,41.78741699906],[-71.638285,41.78745699906],[-71.638165,41.78748699906],[-71.6379,41.78748599906],[-71.637817,41.78748099906],[-71.637708,41.78745699906],[-71.637534,41.78736999906],[-71.637461,41.78739099906],[-71.637171,41.78739499906],[-71.637069,41.78739199906],[-71.637015,41.78733499906],[-71.636988,41.78723899906],[-71.636985,41.78716599906],[-71.636991,41.78709999906],[-71.63701,41.78703099906],[-71.637109,41.78694099906],[-71.637124,41.78688299906],[-71.637116,41.78658299906],[-71.637119,41.78643699906],[-71.637133,41.78637399906],[-71.637155,41.78631299906],[-71.637171,41.78623999906],[-71.63723,41.78612899906],[-71.63717,41.78607699906],[-71.637123,41.78599999906],[-71.63712,41.78577199906],[-71.637155,41.78571599906],[-71.637199,41.78557599906],[-71.637231,41.78550399906],[-71.637236,41.78544399906],[-71.637231,41.78537899906],[-71.637209,41.78532299906],[-71.637107,41.78520199906],[-71.6371,41.78513599906],[-71.637055,41.78509199906],[-71.636992,41.78505599906],[-71.636923,41.78502399906],[-71.636867,41.78498399906],[-71.636871,41.78468799906],[-71.636865,41.78462699906],[-71.636821,41.78449099906],[-71.636719,41.78437999906],[-71.636661,41.78433299906],[-71.636557,41.78422599906],[-71.636459,41.78418699906],[-71.636323,41.78412599906],[-71.636116,41.78408599906],[-71.63591,41.78403299906],[-71.635844,41.78399199906],[-71.635735,41.78394499906],[-71.635633,41.78393099906],[-71.635446,41.78393099906],[-71.635369,41.78392199906],[-71.635143,41.78387799906],[-71.635091,41.78385899906],[-71.635091,41.78379499906],[-71.635109,41.78374099906],[-71.635166,41.78368299906],[-71.63524,41.78365799906],[-71.635296,41.78362599906],[-71.635302,41.78356499906],[-71.635277,41.78349799906],[-71.635234,41.78343999906],[-71.635063,41.78343699906],[-71.635041,41.78348199906],[-71.635018,41.78349399906],[-71.634989,41.78343299906],[-71.634944,41.78337299906],[-71.634964,41.78332699906],[-71.635024,41.78328199906],[-71.635024,41.78322399906],[-71.635008,41.78313799906],[-71.634972,41.78309699906],[-71.634841,41.78305899906],[-71.634559,41.78303599906],[-71.634518,41.78301599906],[-71.634516,41.78294599906],[-71.634524,41.78288299906],[-71.63454,41.78282599906],[-71.634569,41.78274899906],[-71.634616,41.78269499906],[-71.634684,41.78264399906],[-71.63476,41.78260099906],[-71.634814,41.78252499906],[-71.634867,41.78249099906],[-71.635045,41.78243599906],[-71.635047,41.78208599906],[-71.635055,41.78201099906],[-71.635081,41.78195399906],[-71.635084,41.78188299906],[-71.635075,41.78182299906],[-71.635041,41.78173699906],[-71.634991,41.78169399906],[-71.634957,41.78163699906],[-71.634939,41.78158199906],[-71.634844,41.78151699906],[-71.634606,41.78143699906],[-71.634551,41.78138999906],[-71.634466,41.78132699906],[-71.634366,41.78127099906],[-71.634294,41.78124399906],[-71.634211,41.78124899906],[-71.634136,41.78125899906],[-71.634004,41.78134499906],[-71.633965,41.78140599906],[-71.633881,41.78159599906],[-71.633829,41.78168499906],[-71.633764,41.78165299906],[-71.633674,41.78159099906],[-71.63361,41.78155699906],[-71.633538,41.78151099906],[-71.633457,41.78140199906],[-71.633434,41.78122099906],[-71.633474,41.78117099906],[-71.633472,41.78112599906],[-71.633421,41.78107399906],[-71.633259,41.78099599906],[-71.633198,41.78092399906],[-71.633212,41.78086299906],[-71.633217,41.78081299906],[-71.633149,41.78077299906],[-71.633061,41.78077699906],[-71.632869,41.78077199906],[-71.632773,41.78077599906],[-71.63259,41.78077299906],[-71.632519,41.78074899906],[-71.632422,41.78074699906],[-71.632256,41.78075499906],[-71.632187,41.78074499906],[-71.63215,41.78069499906],[-71.632045,41.78058499906],[-71.631976,41.78053099906],[-71.631912,41.78049399906],[-71.631824,41.78048399906],[-71.631737,41.78049499906],[-71.631569,41.78053399906],[-71.631505,41.78049599906],[-71.63146,41.78045199906],[-71.631428,41.78038899906],[-71.631415,41.78033099906],[-71.631369,41.78028299906],[-71.631312,41.78024299906],[-71.631282,41.78020499906],[-71.631323,41.78015599906],[-71.63134,41.78008299906],[-71.631273,41.78004399906],[-71.631118,41.77999199906],[-71.631039,41.77998099906],[-71.630998,41.78002899906],[-71.630857,41.78013799906],[-71.630829,41.78020499906],[-71.630786,41.78024299906],[-71.630704,41.78024299906],[-71.630629,41.78025299906],[-71.630545,41.78025899906],[-71.630474,41.78027099906],[-71.630392,41.78030099906],[-71.630335,41.78034399906],[-71.6303,41.78040099906],[-71.630215,41.78048099906],[-71.630125,41.78053799906],[-71.630039,41.78060299906],[-71.630037,41.78063499906],[-71.630063,41.78069599906],[-71.63006,41.78082299906],[-71.630015,41.78089399906],[-71.629967,41.78093399906],[-71.629902,41.78097099906],[-71.629663,41.78107999906],[-71.629537,41.78116799906],[-71.629453,41.78118499906],[-71.629367,41.78119599906],[-71.629296,41.78118799906],[-71.629266,41.78113699906],[-71.629293,41.78107899906],[-71.629325,41.78102499906],[-71.629343,41.78095999906],[-71.629359,41.78087099906],[-71.62936,41.78080199906],[-71.629382,41.78071199906],[-71.629424,41.78048499906],[-71.629462,41.78037299906],[-71.629578,41.78012699906],[-71.629654,41.77997799906],[-71.629694,41.77992399906],[-71.629751,41.77988199906],[-71.62979,41.77977999906],[-71.629845,41.77960699906],[-71.62992,41.77956899906],[-71.629979,41.77952099906],[-71.62999,41.77917999906],[-71.629984,41.77894999906],[-71.629924,41.77885899906],[-71.629873,41.77880099906],[-71.629812,41.77876899906],[-71.629747,41.77874499906],[-71.629634,41.77873699906],[-71.629508,41.77873599906],[-71.629428,41.77872299906],[-71.629367,41.77865599906],[-71.629301,41.77860299906],[-71.629241,41.77856799906],[-71.629166,41.77853799906],[-71.62908,41.77853099906],[-71.62893,41.77853399906],[-71.628719,41.77855299906],[-71.628589,41.77857399906],[-71.628521,41.77859199906],[-71.628445,41.77863299906],[-71.628378,41.77867499906],[-71.628264,41.77868699906],[-71.628082,41.77869299906],[-71.627988,41.77873399906],[-71.627885,41.77876999906],[-71.627558,41.77880399906],[-71.627378,41.77883099906],[-71.627129,41.77888399906],[-71.627017,41.77887699906],[-71.626896,41.77889099906],[-71.626758,41.77893399906],[-71.626589,41.77897099906],[-71.6265,41.77897199906],[-71.626468,41.77889799906],[-71.626397,41.77883199906],[-71.626314,41.77880199906],[-71.626248,41.77880999906],[-71.626165,41.77887599906],[-71.626084,41.77889999906],[-71.625962,41.77890899906],[-71.625802,41.77890999906],[-71.625809,41.77884399906],[-71.625809,41.77871699906],[-71.625796,41.77863699906],[-71.625788,41.77861999906],[-71.625706,41.77862399906],[-71.625587,41.77863799906],[-71.625499,41.77866999906],[-71.625434,41.77873299906],[-71.625361,41.77878099906],[-71.625284,41.77878499906],[-71.625176,41.77863199906],[-71.625158,41.77857599906],[-71.625167,41.77836999906],[-71.62518,41.77827599906],[-71.625209,41.77824099906],[-71.625372,41.77817399906],[-71.625492,41.77813999906],[-71.625587,41.77811999906],[-71.625665,41.77808799906],[-71.625921,41.77792899906],[-71.625933,41.77786099906],[-71.625934,41.77780299906],[-71.625945,41.77771499906],[-71.625964,41.77764099906],[-71.625992,41.77755899906],[-71.626066,41.77744099906],[-71.626234,41.77728199906],[-71.626247,41.77718999906],[-71.626226,41.77695699906],[-71.626187,41.77690099906],[-71.626085,41.77685999906],[-71.626088,41.77683399906],[-71.626158,41.77667499906],[-71.626156,41.77656699906],[-71.626147,41.77648899906],[-71.626116,41.77641199906],[-71.626088,41.77637599906],[-71.626002,41.77636399906],[-71.625882,41.77635399906],[-71.625798,41.77632899906],[-71.625639,41.77625499906],[-71.625484,41.77621199906],[-71.625399,41.77619299906],[-71.625365,41.77612899906],[-71.625365,41.77605299906],[-71.625324,41.77594399906],[-71.625279,41.77589799906],[-71.62519,41.77582999906],[-71.625128,41.77578899906],[-71.625062,41.77576599906],[-71.62499,41.77575399906],[-71.624914,41.77574799906],[-71.624909,41.77568899906],[-71.624854,41.77560699906],[-71.624749,41.77557799906],[-71.624552,41.77550799906],[-71.624346,41.77544299906],[-71.62421,41.77540699906],[-71.624134,41.77532799906],[-71.623991,41.77519599906],[-71.623893,41.77518099906],[-71.623806,41.77517399906],[-71.62371,41.77513699906],[-71.623626,41.77506099906],[-71.623509,41.77497199906],[-71.623454,41.77493899906],[-71.623463,41.77475699906],[-71.623452,41.77465799906],[-71.623417,41.77461099906],[-71.62339,41.77454999906],[-71.623392,41.77435399906],[-71.623382,41.77426399906],[-71.623349,41.77419899906],[-71.623263,41.77412699906],[-71.623152,41.77407099906],[-71.623033,41.77403099906],[-71.622905,41.77400399906],[-71.622793,41.77399299906],[-71.622758,41.77399799906],[-71.622686,41.77416499906],[-71.622615,41.77423899906],[-71.622511,41.77438599906],[-71.622455,41.77444299906],[-71.622394,41.77454199906],[-71.622343,41.77466299906],[-71.622309,41.77471399906],[-71.622285,41.77477199906],[-71.62228,41.77491599906],[-71.622256,41.77499099906],[-71.622222,41.77504299906],[-71.622158,41.77508199906],[-71.622083,41.77508199906],[-71.62201,41.77506599906],[-71.621943,41.77501699906],[-71.621815,41.77494399906],[-71.621803,41.77485899906],[-71.621803,41.77480199906],[-71.621787,41.77473799906],[-71.621728,41.77468099906],[-71.621624,41.77461999906],[-71.621528,41.77462099906],[-71.621366,41.77477099906],[-71.621328,41.77484199906],[-71.621314,41.77493299906],[-71.62131,41.77511099906],[-71.621298,41.77515499906],[-71.621067,41.77534199906],[-71.621013,41.77541199906],[-71.620993,41.77546499906],[-71.620988,41.77557499906],[-71.620973,41.77565899906],[-71.620875,41.77585199906],[-71.620846,41.77592499906],[-71.620829,41.77599099906],[-71.620817,41.77668099906],[-71.6208,41.77674099906],[-71.620652,41.77690999906],[-71.62061,41.77697599906],[-71.620568,41.77715399906],[-71.620557,41.77723099906],[-71.620538,41.77729799906],[-71.620462,41.77750399906],[-71.62043,41.77756999906],[-71.620426,41.77760299906],[-71.620473,41.77772199906],[-71.620484,41.77781699906],[-71.620484,41.77787899906],[-71.620475,41.77796699906],[-71.620456,41.77802199906],[-71.620484,41.77811299906],[-71.620542,41.77818599906],[-71.620589,41.77823099906],[-71.620572,41.77830299906],[-71.620546,41.77837599906],[-71.62051,41.77842799906],[-71.620459,41.77851499906],[-71.620454,41.77857299906],[-71.620467,41.77864499906],[-71.620497,41.77871799906],[-71.620663,41.77887799906],[-71.620703,41.77895499906],[-71.620719,41.77902399906],[-71.620759,41.77910599906],[-71.620827,41.77915899906],[-71.620895,41.77923599906],[-71.620935,41.77928899906],[-71.62096,41.77934099906],[-71.620916,41.77957699906],[-71.620889,41.77976199906],[-71.62095,41.77982299906],[-71.621001,41.77986399906],[-71.621065,41.77990799906],[-71.621123,41.77996399906],[-71.621168,41.78001899906],[-71.621217,41.78006399906],[-71.62129,41.78012199906],[-71.621316,41.78018999906],[-71.621306,41.78022699906],[-71.621234,41.78026299906],[-71.621131,41.78034099906],[-71.621115,41.78040699906],[-71.621125,41.78050699906],[-71.621138,41.78053299906],[-71.621228,41.78054799906],[-71.621335,41.78054999906],[-71.621408,41.78053899906],[-71.621496,41.78053999906],[-71.621597,41.78056499906],[-71.621676,41.78059099906],[-71.621725,41.78063499906],[-71.621778,41.78071999906],[-71.621835,41.78076199906],[-71.621822,41.78086499906],[-71.621817,41.78094899906],[-71.621818,41.78103899906],[-71.6218,41.78115799906],[-71.621777,41.78121099906],[-71.621759,41.78126899906],[-71.621743,41.78134699906],[-71.621739,41.78147499906],[-71.621732,41.78154299906],[-71.621716,41.78162399906],[-71.62172,41.78173399906],[-71.621779,41.78192999906],[-71.621819,41.78199199906],[-71.621865,41.78204499906],[-71.621881,41.78215599906],[-71.621923,41.78222899906],[-71.621937,41.78229299906],[-71.621983,41.78236799906],[-71.622009,41.78243299906],[-71.621957,41.78246699906],[-71.621773,41.78249599906],[-71.621711,41.78252499906],[-71.621642,41.78254399906],[-71.621547,41.78253199906],[-71.621554,41.78247599906],[-71.621581,41.78241599906],[-71.62156,41.78235799906],[-71.621524,41.78229799906],[-71.621434,41.78218599906],[-71.621386,41.78214299906],[-71.621321,41.78210599906],[-71.621226,41.78206199906],[-71.621138,41.78204099906],[-71.621087,41.78205699906],[-71.621051,41.78212999906],[-71.621025,41.78224299906],[-71.620966,41.78235499906],[-71.620957,41.78242299906],[-71.620964,41.78253999906],[-71.620979,41.78260599906],[-71.621046,41.78270899906],[-71.621096,41.78275999906],[-71.62124,41.78280499906],[-71.621291,41.78284299906],[-71.621304,41.78290099906],[-71.621293,41.78295899906],[-71.621224,41.78299999906],[-71.621032,41.78298999906],[-71.620872,41.78296799906],[-71.620728,41.78289699906],[-71.620642,41.78287199906],[-71.620556,41.78285299906],[-71.620501,41.78279899906],[-71.620458,41.78276399906],[-71.620412,41.78270499906],[-71.6203,41.78259099906],[-71.620253,41.78242499906],[-71.620217,41.78236099906],[-71.620167,41.78233899906],[-71.619992,41.78236499906],[-71.619916,41.78239199906],[-71.619864,41.78243799906],[-71.619866,41.78249199906],[-71.619895,41.78255999906],[-71.61989,41.78261699906],[-71.619852,41.78262999906],[-71.619815,41.78260799906],[-71.619574,41.78235999906],[-71.619522,41.78231999906],[-71.619461,41.78231699906],[-71.619414,41.78236999906],[-71.61938,41.78242899906],[-71.619371,41.78249299906],[-71.619348,41.78254899906],[-71.619343,41.78266899906],[-71.619326,41.78272799906],[-71.61932,41.78278299906],[-71.619294,41.78290299906],[-71.619292,41.78304999906],[-71.619299,41.78353999906],[-71.619287,41.78359599906],[-71.6193,41.78372399906],[-71.61931,41.78377799906],[-71.619358,41.78385499906],[-71.619405,41.78389999906],[-71.619446,41.78395999906],[-71.619407,41.78408699906],[-71.619428,41.78415599906],[-71.619475,41.78422099906],[-71.619535,41.78427699906],[-71.619574,41.78432599906],[-71.619608,41.78439199906],[-71.61959,41.78445399906],[-71.61957,41.78455799906],[-71.619552,41.78461399906],[-71.619517,41.78467999906],[-71.61949,41.78477599906],[-71.619485,41.78487099906],[-71.619492,41.78492699906],[-71.619531,41.78498599906],[-71.619602,41.78506799906],[-71.619641,41.78512299906],[-71.619654,41.78516199906],[-71.619608,41.78520499906],[-71.619547,41.78534299906],[-71.619519,41.78542699906],[-71.619421,41.78580899906],[-71.619394,41.78587399906],[-71.619349,41.78592299906],[-71.619191,41.78602999906],[-71.619104,41.78602099906],[-71.618628,41.78602199906],[-71.618255,41.78600399906],[-71.61816,41.78598799906],[-71.618149,41.78592299906],[-71.618079,41.78580799906],[-71.618001,41.78573199906],[-71.617942,41.78568999906],[-71.617861,41.78564399906],[-71.617828,41.78558599906],[-71.617797,41.78551799906],[-71.617757,41.78546399906],[-71.617713,41.78536199906],[-71.617574,41.78524799906],[-71.617516,41.78517799906],[-71.617453,41.78511299906],[-71.617476,41.78492999906],[-71.617446,41.78477399906],[-71.617436,41.78462899906],[-71.617426,41.78456699906],[-71.617383,41.78448199906],[-71.61736,41.78442599906],[-71.617317,41.78436299906],[-71.617245,41.78427599906],[-71.617185,41.78424199906],[-71.617119,41.78421399906],[-71.617064,41.78417799906],[-71.617016,41.78413099906],[-71.616943,41.78412099906],[-71.616904,41.78412999906],[-71.616859,41.78417499906],[-71.616739,41.78416199906],[-71.616586,41.78410399906],[-71.616541,41.78406099906],[-71.616501,41.78400299906],[-71.616495,41.78393199906],[-71.616496,41.78387599906],[-71.616567,41.78377699906],[-71.6166,41.78371499906],[-71.616622,41.78364899906],[-71.616621,41.78358799906],[-71.616602,41.78355099906],[-71.616527,41.78355199906],[-71.61647,41.78358899906],[-71.61643,41.78358399906],[-71.616375,41.78353799906],[-71.616345,41.78348799906],[-71.616365,41.78343499906],[-71.616402,41.78336499906],[-71.61643,41.78329099906],[-71.616428,41.78316999906],[-71.616404,41.78311599906],[-71.616324,41.78300099906],[-71.616279,41.78295199906],[-71.616207,41.78292199906],[-71.616103,41.78290599906],[-71.616028,41.78291799906],[-71.615953,41.78295999906],[-71.61588,41.78295199906],[-71.615777,41.78290199906],[-71.615694,41.78287699906],[-71.615522,41.78286799906],[-71.615452,41.78284999906],[-71.615368,41.78280399906],[-71.615288,41.78277199906],[-71.615267,41.78270899906],[-71.615258,41.78264999906],[-71.615206,41.78253099906],[-71.615186,41.78247299906],[-71.615052,41.78228299906],[-71.614968,41.78214899906],[-71.614936,41.78207199906],[-71.614904,41.78194799906],[-71.614901,41.78184199906],[-71.614914,41.78178399906],[-71.614953,41.78167599906],[-71.614992,41.78160999906],[-71.615091,41.78147499906],[-71.615113,41.78138599906],[-71.615115,41.78131499906],[-71.615124,41.78125299906],[-71.615157,41.78120199906],[-71.615173,41.78114199906],[-71.615178,41.78106699906],[-71.615198,41.78093199906],[-71.615221,41.78087499906],[-71.615257,41.78080599906],[-71.615329,41.78070899906],[-71.615375,41.78065899906],[-71.615472,41.78057599906],[-71.615545,41.78037399906],[-71.615445,41.78027199906],[-71.61541,41.78022299906],[-71.615419,41.78016499906],[-71.615395,41.78005699906],[-71.615393,41.77998299906],[-71.615327,41.77987999906],[-71.615276,41.77985499906],[-71.615203,41.77984999906],[-71.615125,41.77983899906],[-71.615048,41.77977899906],[-71.615,41.77973599906],[-71.614921,41.77968899906],[-71.614887,41.77964099906],[-71.614871,41.77958499906],[-71.614867,41.77950899906],[-71.614882,41.77945399906],[-71.614904,41.77939899906],[-71.614951,41.77931599906],[-71.614961,41.77925099906],[-71.614963,41.77915499906],[-71.614959,41.77910099906],[-71.614872,41.77904799906],[-71.614798,41.77899699906],[-71.614733,41.77895899906],[-71.614737,41.77889699906],[-71.614723,41.77880399906],[-71.614714,41.77877699906],[-71.614671,41.77875099906],[-71.614605,41.77867899906],[-71.614539,41.77863699906],[-71.614524,41.77861599906],[-71.614521,41.77852799906],[-71.614506,41.77846399906],[-71.614471,41.77839899906],[-71.614368,41.77828699906],[-71.614324,41.77823299906],[-71.61427,41.77818499906],[-71.614197,41.77816299906],[-71.614149,41.77810499906],[-71.614092,41.77806999906],[-71.613904,41.77801199906],[-71.61368,41.77783799906],[-71.613554,41.77781599906],[-71.613506,41.77781899906],[-71.613425,41.77784899906],[-71.613342,41.77786799906],[-71.613315,41.77785799906],[-71.613296,41.77782199906],[-71.613314,41.77771299906],[-71.613274,41.77766199906],[-71.613202,41.77762199906],[-71.613132,41.77760299906],[-71.613055,41.77760299906],[-71.61289,41.77761699906],[-71.612236,41.77764199906],[-71.612221,41.77769599906],[-71.612235,41.77774999906],[-71.612243,41.77780699906],[-71.612281,41.77786599906],[-71.612301,41.77798599906],[-71.612302,41.77812999906],[-71.612261,41.77848199906],[-71.61224,41.77854299906],[-71.612232,41.77860299906],[-71.612195,41.77867999906],[-71.612174,41.77873999906],[-71.612177,41.77888499906],[-71.61215,41.77893899906],[-71.6121,41.77897599906],[-71.612048,41.77896199906],[-71.611911,41.77889899906],[-71.611759,41.77893499906],[-71.611725,41.77896899906],[-71.611691,41.77901399906],[-71.611452,41.77905999906],[-71.611386,41.77908699906],[-71.611339,41.77916799906],[-71.611282,41.77922699906],[-71.611206,41.77927299906],[-71.611142,41.77932299906],[-71.611155,41.77938099906],[-71.611137,41.77943699906],[-71.611111,41.77949599906],[-71.611059,41.77957799906],[-71.611026,41.77973299906],[-71.610969,41.77985499906],[-71.610921,41.77989799906],[-71.610887,41.77994999906],[-71.610858,41.78000999906],[-71.610814,41.78007799906],[-71.610796,41.78013199906],[-71.610764,41.78018699906],[-71.610696,41.78020799906],[-71.610623,41.78019699906],[-71.6106,41.78020699906],[-71.6106,41.78031999906],[-71.610475,41.78049099906],[-71.610415,41.78054499906],[-71.61033,41.78058599906],[-71.610255,41.78060899906],[-71.610173,41.78061499906],[-71.610023,41.78064599906],[-71.61006,41.78069799906],[-71.610107,41.78074299906],[-71.610129,41.78080399906],[-71.610123,41.78082199906],[-71.610003,41.78090399906],[-71.609938,41.78094199906],[-71.609894,41.78099599906],[-71.609845,41.78104199906],[-71.609796,41.78106999906],[-71.609708,41.78108699906],[-71.609665,41.78112399906],[-71.609623,41.78119299906],[-71.609576,41.78124299906],[-71.60954,41.78129399906],[-71.609554,41.78134799906],[-71.609601,41.78140199906],[-71.609592,41.78144699906],[-71.609568,41.78151099906],[-71.609538,41.78153499906],[-71.609451,41.78155199906],[-71.609358,41.78155999906],[-71.609283,41.78156199906],[-71.609137,41.78150599906],[-71.609056,41.78148999906],[-71.609001,41.78143599906],[-71.608974,41.78137399906],[-71.608921,41.78131999906],[-71.608844,41.78127099906],[-71.608648,41.78117699906],[-71.608551,41.78111499906],[-71.608473,41.78108599906],[-71.608372,41.78106199906],[-71.608262,41.78102499906],[-71.608188,41.78098299906],[-71.6081,41.78094699906],[-71.607959,41.78087799906],[-71.607766,41.78083699906],[-71.607681,41.78080599906],[-71.607603,41.78077199906],[-71.607495,41.78074299906],[-71.607314,41.78072299906],[-71.607204,41.78069099906],[-71.607079,41.78067199906],[-71.606808,41.78068299906],[-71.606738,41.78070399906],[-71.606665,41.78073699906],[-71.606569,41.78076299906],[-71.606492,41.78080599906],[-71.606454,41.78083499906],[-71.606448,41.78085999906],[-71.606329,41.78096399906],[-71.606252,41.78101599906],[-71.606175,41.78104599906],[-71.606051,41.78108199906],[-71.605977,41.78109899906],[-71.605886,41.78110099906],[-71.605858,41.78110999906],[-71.605823,41.78116299906],[-71.605685,41.78127899906],[-71.605606,41.78131199906],[-71.60559,41.78144199906],[-71.605603,41.78156099906],[-71.605616,41.78161999906],[-71.605619,41.78184099906],[-71.6056,41.78201299906],[-71.605583,41.78210499906],[-71.605555,41.78216999906],[-71.605506,41.78223799906],[-71.605494,41.78229399906],[-71.605508,41.78245899906],[-71.605503,41.78252999906],[-71.605467,41.78258399906],[-71.605445,41.78266399906],[-71.605419,41.78269299906],[-71.605325,41.78273899906],[-71.605254,41.78276699906],[-71.605224,41.78278899906],[-71.605225,41.78285599906],[-71.605217,41.78292899906],[-71.605208,41.78310999906],[-71.605199,41.78316399906],[-71.605171,41.78325499906],[-71.605159,41.78333999906],[-71.605159,41.78347299906],[-71.605154,41.78354599906],[-71.605142,41.78362199906],[-71.605122,41.78369399906],[-71.605121,41.78375399906],[-71.605048,41.78379599906],[-71.604988,41.78385799906],[-71.604941,41.78398199906],[-71.604923,41.78404999906],[-71.604924,41.78410599906],[-71.604958,41.78422599906],[-71.60503,41.78427699906],[-71.605066,41.78432699906],[-71.605104,41.78440999906],[-71.605151,41.78449499906],[-71.605165,41.78457899906],[-71.605179,41.78463299906],[-71.605181,41.78470099906],[-71.605194,41.78475499906],[-71.605283,41.78485799906],[-71.605346,41.78497699906],[-71.605361,41.78503299906],[-71.605383,41.78508899906],[-71.605395,41.78516099906],[-71.605414,41.78521599906],[-71.605435,41.78530199906],[-71.605496,41.78537699906],[-71.605566,41.78541899906],[-71.605662,41.78553599906],[-71.60574,41.78557399906],[-71.605888,41.78566399906],[-71.605956,41.78568899906],[-71.60602,41.78573199906],[-71.606101,41.78573399906],[-71.60619,41.78575699906],[-71.606257,41.78578599906],[-71.606333,41.78583399906],[-71.606385,41.78587299906],[-71.606443,41.78592599906],[-71.606525,41.78597699906],[-71.606587,41.78603299906],[-71.606587,41.78609299906],[-71.606585,41.78614699906],[-71.606532,41.78618999906],[-71.606337,41.78621899906],[-71.606263,41.78630399906],[-71.606244,41.78636799906],[-71.606234,41.78643099906],[-71.606202,41.78648899906],[-71.60615,41.78654599906],[-71.606035,41.78665099906],[-71.605978,41.78669099906],[-71.605907,41.78673199906],[-71.60583,41.78679399906],[-71.605773,41.78683399906],[-71.605667,41.78685099906],[-71.605603,41.78688399906],[-71.605546,41.78692899906],[-71.605448,41.78696699906],[-71.605337,41.78699699906],[-71.605254,41.78706199906],[-71.605213,41.78712199906],[-71.605178,41.78714099906],[-71.605067,41.78715099906],[-71.604861,41.78718499906],[-71.604777,41.78720499906],[-71.604448,41.78732399906],[-71.604354,41.78751299906],[-71.604341,41.78756799906],[-71.604294,41.78768099906],[-71.604263,41.78782699906],[-71.604266,41.78788899906],[-71.604259,41.78795399906],[-71.604275,41.78800299906],[-71.604325,41.78805599906],[-71.604371,41.78812599906],[-71.604393,41.78818199906],[-71.604412,41.78834099906],[-71.604413,41.78839899906],[-71.604386,41.78859399906],[-71.604354,41.78862699906],[-71.604287,41.78867999906],[-71.604288,41.78873099906],[-71.60438,41.78874199906],[-71.604439,41.78876099906],[-71.604416,41.78887299906],[-71.604395,41.78893199906],[-71.604382,41.78899399906],[-71.604413,41.78902799906],[-71.604463,41.78906799906],[-71.604472,41.78912499906],[-71.60444,41.78916399906],[-71.60436,41.78917299906],[-71.604193,41.78917099906],[-71.604097,41.78915699906],[-71.603978,41.78915299906],[-71.60382,41.78915499906],[-71.603725,41.78914699906],[-71.6033,41.78915199906],[-71.602358,41.78922999906],[-71.601539,41.78930499906],[-71.601544,41.78938799906],[-71.602173,41.78932999906],[-71.603104,41.78923799906],[-71.603508,41.78921899906],[-71.603912,41.78922299906],[-71.604225,41.78924599906],[-71.604485,41.78927599906],[-71.604752,41.78931799906],[-71.605049,41.78937899906],[-71.605362,41.78945499906],[-71.605637,41.78954699906],[-71.60598,41.78968399906],[-71.606316,41.78984499906],[-71.606483,41.78993199906],[-71.606773,41.79011899906],[-71.607117,41.79034799906],[-71.607422,41.79056499906],[-71.607712,41.79076399906],[-71.608032,41.79093599906],[-71.608376,41.79109999906],[-71.608719,41.79121799906],[-71.609032,41.79129799906],[-71.609337,41.79135499906],[-71.609711,41.79139699906],[-71.610069,41.79140099906],[-71.610489,41.79137399906],[-71.610886,41.79134399906],[-71.611237,41.79133599906],[-71.611504,41.79134799906],[-71.611755,41.79136699906],[-71.612083,41.79141599906],[-71.613014,41.79159499906],[-71.613304,41.79168699906],[-71.613632,41.79181299906],[-71.614006,41.79194999906],[-71.614365,41.79208399906],[-71.614769,41.79220199906],[-71.615074,41.79225499906],[-71.615395,41.79229399906],[-71.615685,41.79230099906],[-71.615921,41.79230099906],[-71.616364,41.79228599906],[-71.616852,41.79227799906],[-71.61747,41.79225199906],[-71.617981,41.79222099906],[-71.618523,41.79217899906],[-71.619904,41.79204599906],[-71.620857,41.79194999906],[-71.621353,41.79190399906],[-71.621902,41.79184699906],[-71.622009,41.79183899906],[-71.622391,41.79180899906],[-71.622948,41.79175199906],[-71.623383,41.79171399906],[-71.623886,41.79167599906],[-71.62429,41.79167899906],[-71.624741,41.79169499906],[-71.625244,41.79173999906],[-71.625313,41.79175599906],[-71.625656,41.79182399906],[-71.626297,41.79206799906],[-71.626549,41.79221299906],[-71.626846,41.79237699906],[-71.62722,41.79256799906],[-71.627563,41.79272799906],[-71.62796,41.79283499906],[-71.628281,41.79289999906],[-71.628784,41.79301099906],[-71.62915,41.79306399906],[-71.62957,41.79309099906],[-71.629921,41.79308699906],[-71.630287,41.79306399906],[-71.631203,41.79294599906],[-71.631767,41.79285799906],[-71.632362,41.79277799906],[-71.632874,41.79273599906],[-71.633759,41.79269399906],[-71.634171,41.79267099906],[-71.634857,41.79264499906],[-71.635338,41.79261399906],[-71.635849,41.79259899906],[-71.636848,41.79254899906],[-71.63707,41.79254199906],[-71.637268,41.79255299906],[-71.637489,41.79255699906],[-71.637627,41.79257199906],[-71.637787,41.79258299906],[-71.637917,41.79260999906],[-71.638031,41.79262899906],[-71.63829,41.79269399906],[-71.638458,41.79274699906],[-71.638672,41.79282399906],[-71.639336,41.79301799906],[-71.639717,41.79315599906],[-71.640198,41.79331199906],[-71.640396,41.79336899906],[-71.640594,41.79341899906],[-71.640793,41.79345699906],[-71.641159,41.79350299906],[-71.641357,41.79350999906],[-71.641563,41.79350999906],[-71.641991,41.79347199906],[-71.64225,41.79343399906],[-71.642525,41.79338799906],[-71.643013,41.79328899906],[-71.643379,41.79323199906],[-71.643822,41.79314399906],[-71.644417,41.79304499906],[-71.644997,41.79292299906],[-71.645332,41.79286199906],[-71.645364,41.79285699906],[-71.646156,41.79273199906],[-71.64637,41.79271299906],[-71.646515,41.79270599906],[-71.646873,41.79270599906],[-71.647087,41.79272499906],[-71.647209,41.79273999906],[-71.647408,41.79277799906],[-71.647591,41.79281999906],[-71.647903,41.79291199906],[-71.648079,41.79297999906],[-71.648575,41.79320499906],[-71.649017,41.79342699906],[-71.649223,41.79352599906],[-71.649422,41.79360999906],[-71.64978,41.79371299906],[-71.649979,41.79376199906],[-71.650375,41.79382299906],[-71.650543,41.79383899906],[-71.651337,41.79387699906],[-71.652794,41.79392599906],[-71.655579,41.79400299906],[-71.656036,41.79400599906],[-71.656807,41.79402899906],[-71.656995,41.79403799906],[-71.657372,41.79405599906],[-71.658104,41.79405199906],[-71.658432,41.79403699906],[-71.658653,41.79400999906],[-71.658821,41.79399499906],[-71.658842,41.79398599906],[-71.658867,41.79398299906],[-71.659004,41.79404399906],[-71.659081,41.79409799906],[-71.659164,41.79417799906],[-71.659309,41.79407499906],[-71.659828,41.79376999906],[-71.660156,41.79358299906],[-71.660484,41.79342299906],[-71.661362,41.79297999906],[-71.661774,41.79275499906],[-71.662346,41.79245799906],[-71.662529,41.79235499906],[-71.663033,41.79204599906],[-71.663239,41.79188899906],[-71.663597,41.79158799906],[-71.663742,41.79145799906],[-71.663895,41.79127899906],[-71.663983,41.79118899906]]]]}}"}, +{"type": "blockgroup", "typeId": 133001, "areaId": 28996, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.758514,41.85383599906],[-71.758415,41.85318399906],[-71.758186,41.85184499906],[-71.757988,41.85080699906],[-71.757942,41.85063199906],[-71.757874,41.85044099906],[-71.757736,41.85013199906],[-71.757614,41.84991099906],[-71.757545,41.84980399906],[-71.757446,41.84966299906],[-71.757324,41.84947599906],[-71.756485,41.84830499906],[-71.75631,41.84804199906],[-71.756073,41.84764099906],[-71.75602,41.84751499906],[-71.755966,41.84740399906],[-71.755859,41.84708799906],[-71.755531,41.84604599906],[-71.755119,41.84480299906],[-71.754959,41.84441399906],[-71.754822,41.84414299906],[-71.754623,41.84378399906],[-71.754402,41.84344099906],[-71.754219,41.84318899906],[-71.754105,41.84305599906],[-71.753998,41.84292199906],[-71.753677,41.84256399906],[-71.753273,41.84215899906],[-71.752312,41.84117899906],[-71.752129,41.84098099906],[-71.751991,41.84080499906],[-71.751869,41.84060699906],[-71.751793,41.84047299906],[-71.751617,41.84006099906],[-71.751221,41.83888999906],[-71.75103,41.83836699906],[-71.750992,41.83828399906],[-71.750961,41.83819999906],[-71.750809,41.83788699906],[-71.750763,41.83780699906],[-71.750656,41.83764599906],[-71.750275,41.83704799906],[-71.749832,41.83638799906],[-71.749535,41.83592599906],[-71.749527,41.83590699906],[-71.749512,41.83588799906],[-71.749428,41.83569699906],[-71.749374,41.83553299906],[-71.749344,41.83536899906],[-71.749329,41.83519399906],[-71.749329,41.83510599906],[-71.749352,41.83489199906],[-71.749367,41.83481199906],[-71.74939,41.83473199906],[-71.74942,41.83459499906],[-71.749443,41.83454099906],[-71.749458,41.83448399906],[-71.749619,41.83402599906],[-71.749702,41.83377099906],[-71.749741,41.83366799906],[-71.750076,41.83267199906],[-71.750305,41.83203499906],[-71.750669,41.83092999906],[-71.750755,41.83066899906],[-71.750832,41.83034499906],[-71.750862,41.83018099906],[-71.750877,41.82992199906],[-71.750877,41.82979199906],[-71.750862,41.82953599906],[-71.750847,41.82941099906],[-71.750786,41.82913999906],[-71.750748,41.82900199906],[-71.750938,41.82905199906],[-71.751396,41.82917399906],[-71.751633,41.82923099906],[-71.751877,41.82928099906],[-71.752111,41.82931499906],[-71.752136,41.82931899906],[-71.752312,41.82933799906],[-71.752495,41.82934999906],[-71.753708,41.82935299906],[-71.754128,41.82936099906],[-71.754051,41.82913999906],[-71.754013,41.82900599906],[-71.754008,41.82898799906],[-71.753761,41.82815899906],[-71.753281,41.82668299906],[-71.75309,41.82611799906],[-71.752907,41.82543899906],[-71.752747,41.82493599906],[-71.752586,41.82434499906],[-71.752563,41.82419999906],[-71.752586,41.82404699906],[-71.752602,41.82400099906],[-71.752632,41.82387899906],[-71.752701,41.82371099906],[-71.752777,41.82355099906],[-71.753029,41.82313199906],[-71.753403,41.82258999906],[-71.753548,41.82239199906],[-71.753677,41.82219299906],[-71.753738,41.82200599906],[-71.753784,41.82167799906],[-71.753769,41.82154799906],[-71.753716,41.82137299906],[-71.753433,41.82074699906],[-71.753128,41.82003799906],[-71.752756,41.81920499906],[-71.752373,41.81834799906],[-71.752251,41.81814999906],[-71.752182,41.81804699906],[-71.752098,41.81795499906],[-71.751999,41.81788299906],[-71.751892,41.81781799906],[-71.751747,41.81775299906],[-71.751595,41.81770299906],[-71.7509,41.81752799906],[-71.750748,41.81746699906],[-71.750214,41.81718399906],[-71.749893,41.81699799906],[-71.749765,41.81692899906],[-71.748821,41.81639299906],[-71.748528,41.81622699906],[-71.748016,41.81592899906],[-71.74752,41.81565099906],[-71.747086,41.81539199906],[-71.746872,41.81526899906],[-71.746689,41.81513999906],[-71.746605,41.81505599906],[-71.746529,41.81495999906],[-71.746445,41.81486899906],[-71.746346,41.81473499906],[-71.746207,41.81455999906],[-71.746117,41.81444499906],[-71.74601,41.81433899906],[-71.745903,41.81425099906],[-71.745773,41.81415599906],[-71.745537,41.81400299906],[-71.745407,41.81388099906],[-71.745277,41.81369799906],[-71.74456,41.81384499906],[-71.74395,41.81396899906],[-71.743317,41.81408699906],[-71.742752,41.81419799906],[-71.742447,41.81426199906],[-71.742111,41.81431599906],[-71.741867,41.81434599906],[-71.741554,41.81439199906],[-71.741081,41.81444199906],[-71.739822,41.81454499906],[-71.738396,41.81466699906],[-71.738014,41.81469299906],[-71.735657,41.81488399906],[-71.734416,41.81500599906],[-71.734031,41.81504499906],[-71.733876,41.81479199906],[-71.733673,41.81445699906],[-71.733421,41.81405599906],[-71.733032,41.81346499906],[-71.732841,41.81318299906],[-71.732594,41.81284499906],[-71.732384,41.81255699906],[-71.731979,41.81203799906],[-71.731628,41.81161099906],[-71.730568,41.81025299906],[-71.73011,41.80968099906],[-71.729713,41.80916199906],[-71.729286,41.80863199906],[-71.728882,41.80810499906],[-71.728645,41.80778499906],[-71.728485,41.80755199906],[-71.72834,41.80729699906],[-71.728203,41.80702599906],[-71.728088,41.80673999906],[-71.727997,41.80645799906],[-71.727936,41.80621699906],[-71.727898,41.80595799906],[-71.727859,41.80560699906],[-71.727821,41.80465299906],[-71.72781,41.80452199906],[-71.727785,41.80420999906],[-71.72776,41.80389399906],[-71.727699,41.80251699906],[-71.727592,41.80062099906],[-71.727585,41.80034599906],[-71.727539,41.80009499906],[-71.727509,41.79996099906],[-71.727493,41.79989599906],[-71.727478,41.79980899906],[-71.727409,41.79952199906],[-71.727325,41.79923199906],[-71.727219,41.79896499906],[-71.72715,41.79875199906],[-71.727051,41.79849599906],[-71.726395,41.79666099906],[-71.726097,41.79584899906],[-71.725955,41.79547599906],[-71.725868,41.79524599906],[-71.7257,41.79483799906],[-71.725525,41.79447899906],[-71.725327,41.79411699906],[-71.725128,41.79380799906],[-71.724922,41.79350999906],[-71.724686,41.79318999906],[-71.724464,41.79293099906],[-71.72406,41.79244599906],[-71.723732,41.79206499906],[-71.723534,41.79182399906],[-71.723274,41.79153399906],[-71.722458,41.79058099906],[-71.721886,41.78988999906],[-71.721725,41.78967999906],[-71.721573,41.78942899906],[-71.721497,41.78928399906],[-71.721466,41.78923399906],[-71.721382,41.78904299906],[-71.72049,41.78905099906],[-71.720451,41.78905499906],[-71.719879,41.78907399906],[-71.719116,41.78914299906],[-71.717957,41.78929499906],[-71.717445,41.78935199906],[-71.716685,41.78942899906],[-71.716202,41.78947799906],[-71.716087,41.78948199906],[-71.715874,41.78948199906],[-71.715302,41.78947099906],[-71.714149,41.78943299906],[-71.714035,41.78942499906],[-71.713768,41.78942099906],[-71.71352,41.78943799906],[-71.71344,41.78944399906],[-71.712982,41.78948199906],[-71.712547,41.78950099906],[-71.712135,41.78950499906],[-71.711952,41.78949399906],[-71.711769,41.78947799906],[-71.711555,41.78947399906],[-71.711319,41.78950099906],[-71.711151,41.78953899906],[-71.711052,41.78957399906],[-71.710938,41.78962299906],[-71.710907,41.78964599906],[-71.710289,41.79000499906],[-71.709877,41.79034399906],[-71.709785,41.79042799906],[-71.709709,41.79054299906],[-71.709656,41.79064899906],[-71.709618,41.79079399906],[-71.709534,41.79122899906],[-71.709381,41.79182399906],[-71.709331,41.79194299906],[-71.709274,41.79207999906],[-71.709238,41.79211899906],[-71.709213,41.79214899906],[-71.709145,41.79216799906],[-71.70903,41.79217499906],[-71.708946,41.79216799906],[-71.708839,41.79214499906],[-71.708817,41.79213699906],[-71.708115,41.79198799906],[-71.708057,41.79197699906],[-71.707596,41.79189299906],[-71.70742,41.79186999906],[-71.707253,41.79185899906],[-71.707062,41.79186599906],[-71.706909,41.79188899906],[-71.706757,41.79193499906],[-71.706635,41.79199999906],[-71.70652,41.79209499906],[-71.706161,41.79240799906],[-71.7061,41.79247699906],[-71.705673,41.79292299906],[-71.705574,41.79303699906],[-71.705467,41.79312499906],[-71.70536,41.79320099906],[-71.705215,41.79328499906],[-71.704979,41.79340399906],[-71.704765,41.79349899906],[-71.704582,41.79357099906],[-71.704178,41.79371299906],[-71.703979,41.79376999906],[-71.703781,41.79381899906],[-71.70356,41.79385799906],[-71.703125,41.79390299906],[-71.703075,41.79390699906],[-71.702911,41.79391899906],[-71.702492,41.79392999906],[-71.702255,41.79391899906],[-71.702087,41.79390299906],[-71.701698,41.79383899906],[-71.701523,41.79381599906],[-71.70092,41.79381899906],[-71.699928,41.79384999906],[-71.699028,41.79387299906],[-71.69822,41.79391999906],[-71.697986,41.79393899906],[-71.697808,41.79395899906],[-71.697517,41.79392999906],[-71.697289,41.79388799906],[-71.696732,41.79381899906],[-71.696655,41.79379999906],[-71.696579,41.79375799906],[-71.695953,41.79330099906],[-71.695831,41.79320499906],[-71.695755,41.79313699906],[-71.695679,41.79309099906],[-71.695587,41.79304499906],[-71.695488,41.79302199906],[-71.694672,41.79272499906],[-71.693665,41.79238099906],[-71.693489,41.79233599906],[-71.693291,41.79229399906],[-71.693199,41.79229699906],[-71.692719,41.79239699906],[-71.692505,41.79243099906],[-71.692322,41.79245399906],[-71.691902,41.79249599906],[-71.691528,41.79256099906],[-71.691338,41.79260299906],[-71.691162,41.79264799906],[-71.690971,41.79267899906],[-71.690811,41.79267899906],[-71.690369,41.79262499906],[-71.689842,41.79252199906],[-71.689682,41.79247699906],[-71.688591,41.79200699906],[-71.688232,41.79193499906],[-71.688034,41.79188199906],[-71.687683,41.79183199906],[-71.687157,41.79173999906],[-71.686729,41.79163699906],[-71.685989,41.79149599906],[-71.685677,41.79142799906],[-71.685532,41.79138599906],[-71.685432,41.79135099906],[-71.684486,41.79108799906],[-71.684319,41.79104599906],[-71.684196,41.79103499906],[-71.68412,41.79103499906],[-71.684013,41.79104999906],[-71.683876,41.79108399906],[-71.683327,41.79116399906],[-71.682938,41.79123699906],[-71.682648,41.79127499906],[-71.682549,41.79128299906],[-71.682436,41.79126899906],[-71.682376,41.79126199906],[-71.681816,41.79119499906],[-71.681496,41.79116399906],[-71.681007,41.79113799906],[-71.680695,41.79113399906],[-71.680466,41.79112599906],[-71.680267,41.79112999906],[-71.68013,41.79114499906],[-71.679848,41.79118699906],[-71.679703,41.79119899906],[-71.679504,41.79120299906],[-71.679542,41.79139099906],[-71.679749,41.79259599906],[-71.679916,41.79356599906],[-71.679969,41.79383699906],[-71.679978,41.79385799906],[-71.680137,41.79506199906],[-71.680138,41.79515499906],[-71.681002,41.79998899906],[-71.68111,41.80063999906],[-71.682663,41.80894899906],[-71.683376,41.81292399906],[-71.68482,41.82090599906],[-71.685311,41.82361699906],[-71.685479,41.82530399906],[-71.6855,41.82537999906],[-71.685578,41.82565799906],[-71.68563,41.82615999906],[-71.685806,41.82698199906],[-71.685942,41.82774499906],[-71.686268,41.82914199906],[-71.686315,41.82941699906],[-71.686452,41.83028999906],[-71.686527,41.83071599906],[-71.688183,41.84031999906],[-71.688705,41.84336499906],[-71.688924,41.84430899906],[-71.689076,41.84487899906],[-71.689573,41.84768999906],[-71.689621,41.84796099906],[-71.689708,41.84850099906],[-71.689797,41.84906099906],[-71.689875,41.84954599906],[-71.690017,41.85031799906],[-71.690294,41.85202499906],[-71.690336,41.85227799906],[-71.690992,41.85630899906],[-71.69101,41.85645699906],[-71.692219,41.85644099906],[-71.69723,41.85638599906],[-71.699826,41.85635699906],[-71.702133,41.85633099906],[-71.703254,41.85629099906],[-71.704486,41.85625799906],[-71.709682,41.85613999906],[-71.714587,41.85602399906],[-71.716949,41.85599299906],[-71.717467,41.85598499906],[-71.719948,41.85595099906],[-71.720155,41.85594899906],[-71.72435,41.85589199906],[-71.724457,41.85592299906],[-71.724602,41.85594899906],[-71.724907,41.85598399906],[-71.725227,41.85599899906],[-71.726242,41.85599899906],[-71.726859,41.85598499906],[-71.727097,41.85597999906],[-71.727859,41.85593799906],[-71.728048,41.85594599906],[-71.728706,41.85597199906],[-71.729805,41.85597199906],[-71.730888,41.85596499906],[-71.731778,41.85595299906],[-71.731957,41.85595099906],[-71.732079,41.85594899906],[-71.733284,41.85590399906],[-71.734276,41.85588499906],[-71.736053,41.85579699906],[-71.736755,41.85575899906],[-71.737663,41.85572099906],[-71.738327,41.85568199906],[-71.738701,41.85567099906],[-71.739059,41.85564399906],[-71.739138,41.85563999906],[-71.740379,41.85557899906],[-71.741066,41.85554899906],[-71.741852,41.85550299906],[-71.744026,41.85540399906],[-71.744484,41.85538899906],[-71.745458,41.85533799906],[-71.745811,41.85531999906],[-71.74659,41.85527399906],[-71.7472,41.85525499906],[-71.747483,41.85523599906],[-71.747668,41.85527899906],[-71.749488,41.85524399906],[-71.751348,41.85525999906],[-71.758215,41.85509299906],[-71.758221,41.85505899906],[-71.758224,41.85503799906],[-71.758293,41.85476299906],[-71.758469,41.85417599906],[-71.758507,41.85396599906],[-71.758514,41.85383599906]]]}}"}, +{"type": "blockgroup", "typeId": 133002, "areaId": 28997, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.79468,41.85440899906],[-71.794477,41.84923099906],[-71.794474,41.84915899906],[-71.794471,41.84908799906],[-71.794173,41.84141599906],[-71.794121,41.84110299906],[-71.794115,41.84096599906],[-71.794121,41.84063499906],[-71.794134,41.84000799906],[-71.794117,41.83989499906],[-71.794077,41.83934999906],[-71.79379,41.83270199906],[-71.793532,41.82758599906],[-71.79344,41.82563699906],[-71.793343,41.82294199906],[-71.79331,41.82179999906],[-71.793315,41.82177099906],[-71.793302,41.82156699906],[-71.793296,41.82138099906],[-71.793284,41.82125699906],[-71.793265,41.82063999906],[-71.793161,41.81716899906],[-71.793144,41.81638199906],[-71.793097,41.81472899906],[-71.793114,41.81465799906],[-71.793127,41.81460299906],[-71.792894,41.81252099906],[-71.792867,41.81098199906],[-71.7928,41.80929299906],[-71.792804,41.80920799906],[-71.792593,41.80401599906],[-71.792364,41.80005299906],[-71.792124,41.79539799906],[-71.792079,41.79507599906],[-71.79207,41.79490399906],[-71.792058,41.79459199906],[-71.792006,41.79323899906],[-71.791919,41.79071499906],[-71.791911,41.79047999906],[-71.79194,41.78961399906],[-71.791921,41.78913599906],[-71.791573,41.78128399906],[-71.79137,41.77729599906],[-71.791254,41.77449699906],[-71.791066,41.77020199906],[-71.791066,41.77017999906],[-71.790262,41.77049899906],[-71.789764,41.77068299906],[-71.788895,41.77102999906],[-71.788599,41.77115499906],[-71.788506,41.77119399906],[-71.787987,41.77139999906],[-71.787838,41.77146299906],[-71.787598,41.77156399906],[-71.787209,41.77171699906],[-71.786835,41.77185399906],[-71.786557,41.77196199906],[-71.786362,41.77203799906],[-71.785912,41.77219399906],[-71.785492,41.77234999906],[-71.785217,41.77247599906],[-71.78508,41.77254099906],[-71.784645,41.77273199906],[-71.783981,41.77304799906],[-71.783417,41.77330799906],[-71.782166,41.77390299906],[-71.781822,41.77405499906],[-71.781471,41.77419299906],[-71.781143,41.77431099906],[-71.780708,41.77444799906],[-71.780159,41.77463899906],[-71.78006,41.77466799906],[-71.779678,41.77477999906],[-71.778305,41.77522299906],[-71.77762,41.77547899906],[-71.777056,41.77568899906],[-71.776649,41.77583399906],[-71.776273,41.77597299906],[-71.775861,41.77611099906],[-71.774981,41.77639399906],[-71.774608,41.77650199906],[-71.774212,41.77662299906],[-71.773582,41.77680299906],[-71.772934,41.77701599906],[-71.772606,41.77712999906],[-71.772217,41.77727899906],[-71.772132,41.77730699906],[-71.7715,41.77751199906],[-71.771184,41.77762299906],[-71.771088,41.77765699906],[-71.769966,41.77806499906],[-71.769775,41.77814899906],[-71.769753,41.77816399906],[-71.769722,41.77817499906],[-71.769066,41.77851099906],[-71.768318,41.77886599906],[-71.767929,41.77901799906],[-71.767654,41.77909899906],[-71.767586,41.77912499906],[-71.767426,41.77917799906],[-71.76696,41.77933099906],[-71.766685,41.77940799906],[-71.766258,41.77954499906],[-71.765549,41.77976599906],[-71.765152,41.77989999906],[-71.764458,41.78010599906],[-71.764399,41.78012199906],[-71.764023,41.78022399906],[-71.763718,41.78031199906],[-71.763374,41.78039899906],[-71.762985,41.78048299906],[-71.762787,41.78053299906],[-71.762093,41.78073499906],[-71.761681,41.78086499906],[-71.761307,41.78101299906],[-71.760915,41.78115799906],[-71.760086,41.78146699906],[-71.759621,41.78164699906],[-71.75947,41.78170199906],[-71.759079,41.78184499906],[-71.758224,41.78217299906],[-71.756462,41.78282199906],[-71.756367,41.78285799906],[-71.755058,41.78335599906],[-71.754272,41.78364599906],[-71.753502,41.78392399906],[-71.752946,41.78413099906],[-71.752281,41.78437799906],[-71.75148,41.78468699906],[-71.750824,41.78492399906],[-71.750465,41.78504899906],[-71.750198,41.78513699906],[-71.749687,41.78526299906],[-71.748993,41.78541899906],[-71.747849,41.78568599906],[-71.747208,41.78584299906],[-71.746689,41.78596499906],[-71.746246,41.78604499906],[-71.746137,41.78607499906],[-71.745781,41.78617099906],[-71.744759,41.78640399906],[-71.744156,41.78655999906],[-71.743581,41.78668799906],[-71.743469,41.78671299906],[-71.742981,41.78684599906],[-71.742493,41.78696399906],[-71.742241,41.78703699906],[-71.74205,41.78710899906],[-71.741195,41.78755999906],[-71.740677,41.78778099906],[-71.740189,41.78801699906],[-71.739883,41.78818099906],[-71.73925,41.78860499906],[-71.738769,41.78894799906],[-71.738678,41.78901299906],[-71.738594,41.78906199906],[-71.738541,41.78909299906],[-71.738373,41.78915399906],[-71.73819,41.78920699906],[-71.737923,41.78926799906],[-71.737579,41.78931799906],[-71.737175,41.78938299906],[-71.736839,41.78941999906],[-71.736755,41.78942899906],[-71.736252,41.78947399906],[-71.734497,41.78959699906],[-71.733765,41.78962699906],[-71.733475,41.78961899906],[-71.733284,41.78960799906],[-71.73321,41.78959599906],[-71.732948,41.78955499906],[-71.732765,41.78950899906],[-71.732407,41.78939099906],[-71.732201,41.78931399906],[-71.73201,41.78924899906],[-71.731911,41.78921099906],[-71.73159,41.78910099906],[-71.73143,41.78903999906],[-71.730759,41.78882599906],[-71.73069,41.78879899906],[-71.730595,41.78876899906],[-71.730194,41.78864299906],[-71.729889,41.78855499906],[-71.729393,41.78840299906],[-71.72924,41.78836099906],[-71.729051,41.78833699906],[-71.728577,41.78827699906],[-71.728134,41.78822699906],[-71.727961,41.78821899906],[-71.727821,41.78821599906],[-71.7276,41.78822299906],[-71.72699,41.78828399906],[-71.725624,41.78842899906],[-71.725197,41.78848599906],[-71.724876,41.78854399906],[-71.723785,41.78881799906],[-71.721886,41.78919999906],[-71.721497,41.78928399906],[-71.721573,41.78942899906],[-71.721725,41.78967999906],[-71.721886,41.78988999906],[-71.722458,41.79058099906],[-71.723274,41.79153399906],[-71.723534,41.79182399906],[-71.723732,41.79206499906],[-71.72406,41.79244599906],[-71.724464,41.79293099906],[-71.724686,41.79318999906],[-71.724922,41.79350999906],[-71.725128,41.79380799906],[-71.725327,41.79411699906],[-71.725525,41.79447899906],[-71.7257,41.79483799906],[-71.725868,41.79524599906],[-71.725955,41.79547599906],[-71.726097,41.79584899906],[-71.726395,41.79666099906],[-71.727051,41.79849599906],[-71.72715,41.79875199906],[-71.727219,41.79896499906],[-71.727325,41.79923199906],[-71.727409,41.79952199906],[-71.727478,41.79980899906],[-71.727493,41.79989599906],[-71.727509,41.79996099906],[-71.727539,41.80009499906],[-71.727585,41.80034599906],[-71.727592,41.80062099906],[-71.727699,41.80251699906],[-71.72776,41.80389399906],[-71.727785,41.80420999906],[-71.72781,41.80452199906],[-71.727821,41.80465299906],[-71.727859,41.80560699906],[-71.727898,41.80595799906],[-71.727936,41.80621699906],[-71.727997,41.80645799906],[-71.728088,41.80673999906],[-71.728203,41.80702599906],[-71.72834,41.80729699906],[-71.728485,41.80755199906],[-71.728645,41.80778499906],[-71.728882,41.80810499906],[-71.729286,41.80863199906],[-71.729713,41.80916199906],[-71.73011,41.80968099906],[-71.730568,41.81025299906],[-71.731628,41.81161099906],[-71.731979,41.81203799906],[-71.732384,41.81255699906],[-71.732594,41.81284499906],[-71.732841,41.81318299906],[-71.733032,41.81346499906],[-71.733421,41.81405599906],[-71.733673,41.81445699906],[-71.733876,41.81479199906],[-71.734031,41.81504499906],[-71.734416,41.81500599906],[-71.735657,41.81488399906],[-71.738014,41.81469299906],[-71.738396,41.81466699906],[-71.739822,41.81454499906],[-71.741081,41.81444199906],[-71.741554,41.81439199906],[-71.741867,41.81434599906],[-71.742111,41.81431599906],[-71.742447,41.81426199906],[-71.742752,41.81419799906],[-71.743317,41.81408699906],[-71.74395,41.81396899906],[-71.74456,41.81384499906],[-71.745277,41.81369799906],[-71.745407,41.81388099906],[-71.745537,41.81400299906],[-71.745773,41.81415599906],[-71.745903,41.81425099906],[-71.74601,41.81433899906],[-71.746117,41.81444499906],[-71.746207,41.81455999906],[-71.746346,41.81473499906],[-71.746445,41.81486899906],[-71.746529,41.81495999906],[-71.746605,41.81505599906],[-71.746689,41.81513999906],[-71.746872,41.81526899906],[-71.747086,41.81539199906],[-71.74752,41.81565099906],[-71.748016,41.81592899906],[-71.748528,41.81622699906],[-71.748821,41.81639299906],[-71.749765,41.81692899906],[-71.749893,41.81699799906],[-71.750214,41.81718399906],[-71.750748,41.81746699906],[-71.7509,41.81752799906],[-71.751595,41.81770299906],[-71.751747,41.81775299906],[-71.751892,41.81781799906],[-71.751999,41.81788299906],[-71.752098,41.81795499906],[-71.752182,41.81804699906],[-71.752251,41.81814999906],[-71.752373,41.81834799906],[-71.752756,41.81920499906],[-71.753128,41.82003799906],[-71.753433,41.82074699906],[-71.753716,41.82137299906],[-71.753769,41.82154799906],[-71.753784,41.82167799906],[-71.753738,41.82200599906],[-71.753677,41.82219299906],[-71.753548,41.82239199906],[-71.753403,41.82258999906],[-71.753029,41.82313199906],[-71.752777,41.82355099906],[-71.752701,41.82371099906],[-71.752632,41.82387899906],[-71.752602,41.82400099906],[-71.752586,41.82404699906],[-71.752563,41.82419999906],[-71.752586,41.82434499906],[-71.752747,41.82493599906],[-71.752907,41.82543899906],[-71.75309,41.82611799906],[-71.753281,41.82668299906],[-71.753761,41.82815899906],[-71.754008,41.82898799906],[-71.754013,41.82900599906],[-71.754051,41.82913999906],[-71.754128,41.82936099906],[-71.753708,41.82935299906],[-71.752495,41.82934999906],[-71.752312,41.82933799906],[-71.752136,41.82931899906],[-71.752111,41.82931499906],[-71.751877,41.82928099906],[-71.751633,41.82923099906],[-71.751396,41.82917399906],[-71.750938,41.82905199906],[-71.750748,41.82900199906],[-71.750786,41.82913999906],[-71.750847,41.82941099906],[-71.750862,41.82953599906],[-71.750877,41.82979199906],[-71.750877,41.82992199906],[-71.750862,41.83018099906],[-71.750832,41.83034499906],[-71.750755,41.83066899906],[-71.750669,41.83092999906],[-71.750305,41.83203499906],[-71.750076,41.83267199906],[-71.749741,41.83366799906],[-71.749702,41.83377099906],[-71.749619,41.83402599906],[-71.749458,41.83448399906],[-71.749443,41.83454099906],[-71.74942,41.83459499906],[-71.74939,41.83473199906],[-71.749367,41.83481199906],[-71.749352,41.83489199906],[-71.749329,41.83510599906],[-71.749329,41.83519399906],[-71.749344,41.83536899906],[-71.749374,41.83553299906],[-71.749428,41.83569699906],[-71.749512,41.83588799906],[-71.749527,41.83590699906],[-71.749535,41.83592599906],[-71.749832,41.83638799906],[-71.750275,41.83704799906],[-71.750656,41.83764599906],[-71.750763,41.83780699906],[-71.750809,41.83788699906],[-71.750961,41.83819999906],[-71.750992,41.83828399906],[-71.75103,41.83836699906],[-71.751221,41.83888999906],[-71.751617,41.84006099906],[-71.751793,41.84047299906],[-71.751869,41.84060699906],[-71.751991,41.84080499906],[-71.752129,41.84098099906],[-71.752312,41.84117899906],[-71.753273,41.84215899906],[-71.753677,41.84256399906],[-71.753998,41.84292199906],[-71.754105,41.84305599906],[-71.754219,41.84318899906],[-71.754402,41.84344099906],[-71.754623,41.84378399906],[-71.754822,41.84414299906],[-71.754959,41.84441399906],[-71.755119,41.84480299906],[-71.755531,41.84604599906],[-71.755859,41.84708799906],[-71.755966,41.84740399906],[-71.75602,41.84751499906],[-71.756073,41.84764099906],[-71.75631,41.84804199906],[-71.756485,41.84830499906],[-71.757324,41.84947599906],[-71.757446,41.84966299906],[-71.757545,41.84980399906],[-71.757614,41.84991099906],[-71.757736,41.85013199906],[-71.757874,41.85044099906],[-71.757942,41.85063199906],[-71.757988,41.85080699906],[-71.758186,41.85184499906],[-71.758415,41.85318399906],[-71.758514,41.85383599906],[-71.758507,41.85396599906],[-71.758469,41.85417599906],[-71.758293,41.85476299906],[-71.758224,41.85503799906],[-71.758221,41.85505899906],[-71.758215,41.85509299906],[-71.761118,41.85498999906],[-71.764137,41.85491799906],[-71.765988,41.85487399906],[-71.768763,41.85482699906],[-71.769958,41.85480599906],[-71.771376,41.85478299906],[-71.787391,41.85451299906],[-71.794496,41.85441099906],[-71.79468,41.85440899906]]]}}"}, +{"type": "blockgroup", "typeId": 133003, "areaId": 28998, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.791066,41.77017999906],[-71.790554,41.75011699906],[-71.790327,41.74788299906],[-71.790323,41.74779199906],[-71.790195,41.74440899906],[-71.790103,41.74293499906],[-71.790089,41.74099099906],[-71.790094,41.74063199906],[-71.790016,41.73887599906],[-71.789902,41.73571399906],[-71.789768,41.73155599906],[-71.789729,41.72746299906],[-71.789711,41.72725399906],[-71.789709,41.72669199906],[-71.789704,41.72519799906],[-71.789669,41.72519899906],[-71.789562,41.72519999906],[-71.785969,41.72525999906],[-71.774906,41.72544299906],[-71.77447,41.72544899906],[-71.76844,41.72554499906],[-71.768377,41.72554899906],[-71.761192,41.72564799906],[-71.760908,41.72565199906],[-71.759306,41.72567399906],[-71.757864,41.72569599906],[-71.757764,41.72569699906],[-71.754698,41.72573999906],[-71.754649,41.72573999906],[-71.754572,41.72574099906],[-71.754402,41.72574399906],[-71.753127,41.72576199906],[-71.753098,41.72576499906],[-71.752988,41.72576399906],[-71.752846,41.72576599906],[-71.752389,41.72577299906],[-71.745964,41.72586299906],[-71.74076,41.72594099906],[-71.739508,41.72596999906],[-71.735023,41.72603299906],[-71.720368,41.72632099906],[-71.720257,41.72632299906],[-71.720111,41.72632599906],[-71.719838,41.72647999906],[-71.719589,41.72661199906],[-71.719406,41.72673799906],[-71.718887,41.72706199906],[-71.71804,41.72760799906],[-71.717567,41.72789399906],[-71.717758,41.72820299906],[-71.71817,41.72884799906],[-71.718964,41.73012899906],[-71.720558,41.73266199906],[-71.720871,41.73314699906],[-71.721169,41.73361999906],[-71.721511,41.73415499906],[-71.722107,41.73508499906],[-71.722336,41.73545099906],[-71.722422,41.73557899906],[-71.722582,41.73581499906],[-71.722603,41.73584699906],[-71.722839,41.73625599906],[-71.723083,41.73669399906],[-71.723236,41.73701299906],[-71.723495,41.73755299906],[-71.723539,41.73763799906],[-71.72364,41.73783099906],[-71.723778,41.73812499906],[-71.7239,41.73840299906],[-71.724014,41.73876599906],[-71.72409,41.73905399906],[-71.724098,41.73908199906],[-71.724335,41.73987999906],[-71.724525,41.74053999906],[-71.724548,41.74063899906],[-71.724548,41.74066899906],[-71.724558,41.74071799906],[-71.724579,41.74082199906],[-71.724625,41.74119899906],[-71.724709,41.74177899906],[-71.724838,41.74275199906],[-71.724951,41.74345299906],[-71.724991,41.74369799906],[-71.725009,41.74382199906],[-71.725067,41.74421699906],[-71.725395,41.74575399906],[-71.725418,41.74590699906],[-71.725441,41.74600599906],[-71.725449,41.74610099906],[-71.725449,41.74641399906],[-71.725433,41.74678399906],[-71.725433,41.74723399906],[-71.725441,41.74736799906],[-71.725456,41.74748999906],[-71.725525,41.74779499906],[-71.725594,41.74794799906],[-71.725647,41.74808099906],[-71.725784,41.74834399906],[-71.726097,41.74883699906],[-71.72628,41.74910399906],[-71.726425,41.74935899906],[-71.726524,41.74954599906],[-71.726608,41.74972499906],[-71.7267,41.74994699906],[-71.726807,41.75014899906],[-71.726883,41.75027099906],[-71.726977,41.75039499906],[-71.727051,41.75049199906],[-71.728188,41.75188099906],[-71.728447,41.75220499906],[-71.729279,41.75322699906],[-71.729324,41.75327699906],[-71.729401,41.75337599906],[-71.729507,41.75346799906],[-71.729652,41.75355499906],[-71.730042,41.75372299906],[-71.730148,41.75376099906],[-71.730255,41.75381499906],[-71.730354,41.75387599906],[-71.73042,41.75393899906],[-71.730507,41.75405899906],[-71.730576,41.75419999906],[-71.730613,41.75427099906],[-71.730728,41.75448999906],[-71.730815,41.75467199906],[-71.730865,41.75477599906],[-71.731071,41.75517699906],[-71.731201,41.75551199906],[-71.731483,41.75628699906],[-71.731506,41.75643199906],[-71.731643,41.75694799906],[-71.731712,41.75720599906],[-71.731766,41.75765199906],[-71.731766,41.75785399906],[-71.731758,41.75814099906],[-71.731758,41.75832699906],[-71.731819,41.75886199906],[-71.73185,41.75944499906],[-71.731873,41.75959799906],[-71.731941,41.75980799906],[-71.73214,41.76020399906],[-71.73246,41.76071899906],[-71.732742,41.76103199906],[-71.732903,41.76127199906],[-71.732948,41.76135999906],[-71.732986,41.76144999906],[-71.733002,41.76153599906],[-71.732979,41.76211499906],[-71.732986,41.76224099906],[-71.733047,41.76246299906],[-71.733185,41.76269099906],[-71.733322,41.76286699906],[-71.733551,41.76310299906],[-71.733658,41.76323299906],[-71.733711,41.76334399906],[-71.733734,41.76346199906],[-71.733742,41.76358799906],[-71.733734,41.76367599906],[-71.733704,41.76380899906],[-71.733604,41.76407199906],[-71.733513,41.76428199906],[-71.733444,41.76438499906],[-71.73336,41.76448799906],[-71.733231,41.76461799906],[-71.733002,41.76481599906],[-71.732582,41.76514099906],[-71.732445,41.76530499906],[-71.732399,41.76542299906],[-71.732399,41.76552199906],[-71.732437,41.76580799906],[-71.732498,41.76607099906],[-71.732498,41.76635699906],[-71.732513,41.76653699906],[-71.732498,41.76665099906],[-71.73246,41.76674699906],[-71.732376,41.76689499906],[-71.7323,41.76696399906],[-71.732185,41.76709399906],[-71.732048,41.76729599906],[-71.731979,41.76752499906],[-71.731911,41.76779899906],[-71.731827,41.76822999906],[-71.73172,41.76852799906],[-71.73159,41.76878399906],[-71.73143,41.76920699906],[-71.731333,41.76953199906],[-71.731293,41.76966499906],[-71.731224,41.76987799906],[-71.731163,41.77003499906],[-71.731102,41.77015699906],[-71.730965,41.77032499906],[-71.730766,41.77054599906],[-71.730659,41.77070199906],[-71.730591,41.77086999906],[-71.730575,41.77094899906],[-71.730553,41.77105299906],[-71.730522,41.77128199906],[-71.730507,41.77180099906],[-71.730515,41.77187299906],[-71.73053,41.77193099906],[-71.730537,41.77198799906],[-71.73056,41.77209499906],[-71.730576,41.77214099906],[-71.730583,41.77218999906],[-71.730629,41.77232699906],[-71.730659,41.77251099906],[-71.730659,41.77256799906],[-71.730675,41.77265899906],[-71.73069,41.77330399906],[-71.73069,41.77379199906],[-71.730675,41.77391799906],[-71.730614,41.77415799906],[-71.730553,41.77427299906],[-71.730476,41.77437999906],[-71.7304,41.77446699906],[-71.730003,41.77482999906],[-71.729767,41.77507399906],[-71.729584,41.77530299906],[-71.72924,41.77570299906],[-71.72921,41.77574499906],[-71.729134,41.77582899906],[-71.729088,41.77588699906],[-71.729034,41.77594399906],[-71.728928,41.77602399906],[-71.728767,41.77610799906],[-71.728653,41.77615699906],[-71.728157,41.77630999906],[-71.72802,41.77635599906],[-71.727882,41.77644299906],[-71.727661,41.77663799906],[-71.727455,41.77690499906],[-71.727211,41.77729399906],[-71.72715,41.77740499906],[-71.727058,41.77760699906],[-71.727051,41.77765299906],[-71.727051,41.77770199906],[-71.727036,41.77780499906],[-71.727036,41.77785899906],[-71.727028,41.77791199906],[-71.727013,41.77864799906],[-71.72702,41.77889599906],[-71.727051,41.77933499906],[-71.727074,41.77956399906],[-71.727058,41.77967799906],[-71.727036,41.77974699906],[-71.727127,41.77965199906],[-71.727165,41.77962099906],[-71.727257,41.77956799906],[-71.727356,41.77953299906],[-71.72747,41.77950999906],[-71.727608,41.77950699906],[-71.727669,41.77951399906],[-71.727837,41.77955199906],[-71.727974,41.77960199906],[-71.727995,41.77961199906],[-71.728058,41.77964399906],[-71.728127,41.77967099906],[-71.728264,41.77975799906],[-71.728775,41.78012799906],[-71.729004,41.78026599906],[-71.729126,41.78033399906],[-71.729309,41.78041499906],[-71.729576,41.78050199906],[-71.729851,41.78058599906],[-71.730064,41.78064299906],[-71.730232,41.78067399906],[-71.731415,41.78086099906],[-71.731812,41.78090699906],[-71.73214,41.78091799906],[-71.732338,41.78089099906],[-71.732574,41.78081099906],[-71.732788,41.78072399906],[-71.733078,41.78058199906],[-71.73333,41.78046399906],[-71.734146,41.78020899906],[-71.734291,41.78015099906],[-71.734398,41.78009799906],[-71.734505,41.78003299906],[-71.734634,41.77994199906],[-71.734787,41.77981599906],[-71.73494,41.77967099906],[-71.735077,41.77954899906],[-71.735176,41.77943399906],[-71.735329,41.77929299906],[-71.735649,41.77904499906],[-71.735809,41.77891199906],[-71.735931,41.77881999906],[-71.736115,41.77875499906],[-71.736259,41.77868999906],[-71.736488,41.77862899906],[-71.736801,41.77915999906],[-71.736854,41.77930199906],[-71.736862,41.77932399906],[-71.736946,41.77949499906],[-71.736969,41.77959099906],[-71.736977,41.77970499906],[-71.736969,41.77987299906],[-71.736946,41.78005999906],[-71.7369,41.78027299906],[-71.736877,41.78041799906],[-71.736847,41.78056299906],[-71.736832,41.78088399906],[-71.736832,41.78117799906],[-71.736824,41.78138699906],[-71.736839,41.78146399906],[-71.736862,41.78151699906],[-71.736916,41.78158599906],[-71.737061,41.78175399906],[-71.737335,41.78205099906],[-71.737663,41.78236799906],[-71.737968,41.78267699906],[-71.738548,41.78317999906],[-71.739273,41.78387499906],[-71.739449,41.78402299906],[-71.739723,41.78422199906],[-71.739929,41.78435499906],[-71.74012,41.78450399906],[-71.740318,41.78467899906],[-71.740669,41.78495399906],[-71.741028,41.78525499906],[-71.741112,41.78534699906],[-71.74118,41.78543499906],[-71.741211,41.78552599906],[-71.741219,41.78562899906],[-71.741196,41.78582399906],[-71.741188,41.78609799906],[-71.74117,41.78635099906],[-71.741158,41.78651399906],[-71.741158,41.78687999906],[-71.741188,41.78726999906],[-71.741195,41.78755999906],[-71.74205,41.78710899906],[-71.742241,41.78703699906],[-71.742493,41.78696399906],[-71.742981,41.78684599906],[-71.743469,41.78671299906],[-71.743581,41.78668799906],[-71.744156,41.78655999906],[-71.744759,41.78640399906],[-71.745781,41.78617099906],[-71.746137,41.78607499906],[-71.746246,41.78604499906],[-71.746689,41.78596499906],[-71.747208,41.78584299906],[-71.747849,41.78568599906],[-71.748993,41.78541899906],[-71.749687,41.78526299906],[-71.750198,41.78513699906],[-71.750465,41.78504899906],[-71.750824,41.78492399906],[-71.75148,41.78468699906],[-71.752281,41.78437799906],[-71.752946,41.78413099906],[-71.753502,41.78392399906],[-71.754272,41.78364599906],[-71.755058,41.78335599906],[-71.756367,41.78285799906],[-71.756462,41.78282199906],[-71.758224,41.78217299906],[-71.759079,41.78184499906],[-71.75947,41.78170199906],[-71.759621,41.78164699906],[-71.760086,41.78146699906],[-71.760915,41.78115799906],[-71.761307,41.78101299906],[-71.761681,41.78086499906],[-71.762093,41.78073499906],[-71.762787,41.78053299906],[-71.762985,41.78048299906],[-71.763374,41.78039899906],[-71.763718,41.78031199906],[-71.764023,41.78022399906],[-71.764399,41.78012199906],[-71.764458,41.78010599906],[-71.765152,41.77989999906],[-71.765549,41.77976599906],[-71.766258,41.77954499906],[-71.766685,41.77940799906],[-71.76696,41.77933099906],[-71.767426,41.77917799906],[-71.767586,41.77912499906],[-71.767654,41.77909899906],[-71.767929,41.77901799906],[-71.768318,41.77886599906],[-71.769066,41.77851099906],[-71.769722,41.77817499906],[-71.769753,41.77816399906],[-71.769775,41.77814899906],[-71.769966,41.77806499906],[-71.771088,41.77765699906],[-71.771184,41.77762299906],[-71.7715,41.77751199906],[-71.772132,41.77730699906],[-71.772217,41.77727899906],[-71.772606,41.77712999906],[-71.772934,41.77701599906],[-71.773582,41.77680299906],[-71.774212,41.77662299906],[-71.774608,41.77650199906],[-71.774981,41.77639399906],[-71.775861,41.77611099906],[-71.776273,41.77597299906],[-71.776649,41.77583399906],[-71.777056,41.77568899906],[-71.77762,41.77547899906],[-71.778305,41.77522299906],[-71.779678,41.77477999906],[-71.78006,41.77466799906],[-71.780159,41.77463899906],[-71.780708,41.77444799906],[-71.781143,41.77431099906],[-71.781471,41.77419299906],[-71.781822,41.77405499906],[-71.782166,41.77390299906],[-71.783417,41.77330799906],[-71.783981,41.77304799906],[-71.784645,41.77273199906],[-71.78508,41.77254099906],[-71.785217,41.77247599906],[-71.785492,41.77234999906],[-71.785912,41.77219399906],[-71.786362,41.77203799906],[-71.786557,41.77196199906],[-71.786835,41.77185399906],[-71.787209,41.77171699906],[-71.787598,41.77156399906],[-71.787838,41.77146299906],[-71.787987,41.77139999906],[-71.788506,41.77119399906],[-71.788599,41.77115499906],[-71.788895,41.77102999906],[-71.789764,41.77068299906],[-71.790262,41.77049899906],[-71.791066,41.77017999906]]]}}"}, +{"type": "blockgroup", "typeId": 133004, "areaId": 28999, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.741219,41.78562899906],[-71.741211,41.78552599906],[-71.74118,41.78543499906],[-71.741112,41.78534699906],[-71.741028,41.78525499906],[-71.740669,41.78495399906],[-71.740318,41.78467899906],[-71.74012,41.78450399906],[-71.739929,41.78435499906],[-71.739723,41.78422199906],[-71.739449,41.78402299906],[-71.739273,41.78387499906],[-71.738548,41.78317999906],[-71.737968,41.78267699906],[-71.737663,41.78236799906],[-71.737335,41.78205099906],[-71.737061,41.78175399906],[-71.736916,41.78158599906],[-71.736862,41.78151699906],[-71.736839,41.78146399906],[-71.736824,41.78138699906],[-71.736832,41.78117799906],[-71.736832,41.78088399906],[-71.736847,41.78056299906],[-71.736877,41.78041799906],[-71.7369,41.78027299906],[-71.736946,41.78005999906],[-71.736969,41.77987299906],[-71.736977,41.77970499906],[-71.736969,41.77959099906],[-71.736946,41.77949499906],[-71.736862,41.77932399906],[-71.736854,41.77930199906],[-71.736801,41.77915999906],[-71.736488,41.77862899906],[-71.736259,41.77868999906],[-71.736115,41.77875499906],[-71.735931,41.77881999906],[-71.735809,41.77891199906],[-71.735649,41.77904499906],[-71.735329,41.77929299906],[-71.735176,41.77943399906],[-71.735077,41.77954899906],[-71.73494,41.77967099906],[-71.734787,41.77981599906],[-71.734634,41.77994199906],[-71.734505,41.78003299906],[-71.734398,41.78009799906],[-71.734291,41.78015099906],[-71.734146,41.78020899906],[-71.73333,41.78046399906],[-71.733078,41.78058199906],[-71.732788,41.78072399906],[-71.732574,41.78081099906],[-71.732338,41.78089099906],[-71.73214,41.78091799906],[-71.731812,41.78090699906],[-71.731415,41.78086099906],[-71.730232,41.78067399906],[-71.730064,41.78064299906],[-71.729851,41.78058599906],[-71.729576,41.78050199906],[-71.729309,41.78041499906],[-71.729126,41.78033399906],[-71.729004,41.78026599906],[-71.728775,41.78012799906],[-71.728264,41.77975799906],[-71.728127,41.77967099906],[-71.728058,41.77964399906],[-71.727995,41.77961199906],[-71.727974,41.77960199906],[-71.727837,41.77955199906],[-71.727669,41.77951399906],[-71.727608,41.77950699906],[-71.72747,41.77950999906],[-71.727356,41.77953299906],[-71.727257,41.77956799906],[-71.727165,41.77962099906],[-71.727127,41.77965199906],[-71.727036,41.77974699906],[-71.727058,41.77967799906],[-71.727074,41.77956399906],[-71.727051,41.77933499906],[-71.72702,41.77889599906],[-71.727013,41.77864799906],[-71.727028,41.77791199906],[-71.727036,41.77785899906],[-71.727036,41.77780499906],[-71.727051,41.77770199906],[-71.727051,41.77765299906],[-71.727058,41.77760699906],[-71.72715,41.77740499906],[-71.727211,41.77729399906],[-71.727455,41.77690499906],[-71.727661,41.77663799906],[-71.727882,41.77644299906],[-71.72802,41.77635599906],[-71.728157,41.77630999906],[-71.728653,41.77615699906],[-71.728767,41.77610799906],[-71.728928,41.77602399906],[-71.729034,41.77594399906],[-71.729088,41.77588699906],[-71.729134,41.77582899906],[-71.72921,41.77574499906],[-71.72924,41.77570299906],[-71.729584,41.77530299906],[-71.729767,41.77507399906],[-71.730003,41.77482999906],[-71.7304,41.77446699906],[-71.730476,41.77437999906],[-71.730553,41.77427299906],[-71.730614,41.77415799906],[-71.730675,41.77391799906],[-71.73069,41.77379199906],[-71.73069,41.77330399906],[-71.730675,41.77265899906],[-71.730659,41.77256799906],[-71.730659,41.77251099906],[-71.730629,41.77232699906],[-71.730583,41.77218999906],[-71.730576,41.77214099906],[-71.73056,41.77209499906],[-71.730537,41.77198799906],[-71.73053,41.77193099906],[-71.730515,41.77187299906],[-71.730507,41.77180099906],[-71.730522,41.77128199906],[-71.730553,41.77105299906],[-71.730575,41.77094899906],[-71.730591,41.77086999906],[-71.730659,41.77070199906],[-71.730766,41.77054599906],[-71.730965,41.77032499906],[-71.731102,41.77015699906],[-71.731163,41.77003499906],[-71.731224,41.76987799906],[-71.731293,41.76966499906],[-71.731333,41.76953199906],[-71.73143,41.76920699906],[-71.73159,41.76878399906],[-71.73172,41.76852799906],[-71.731827,41.76822999906],[-71.731911,41.76779899906],[-71.731979,41.76752499906],[-71.732048,41.76729599906],[-71.732185,41.76709399906],[-71.7323,41.76696399906],[-71.732376,41.76689499906],[-71.73246,41.76674699906],[-71.732498,41.76665099906],[-71.732513,41.76653699906],[-71.732498,41.76635699906],[-71.732498,41.76607099906],[-71.732437,41.76580799906],[-71.732399,41.76552199906],[-71.732399,41.76542299906],[-71.732445,41.76530499906],[-71.732582,41.76514099906],[-71.733002,41.76481599906],[-71.733231,41.76461799906],[-71.73336,41.76448799906],[-71.733444,41.76438499906],[-71.733513,41.76428199906],[-71.733604,41.76407199906],[-71.733704,41.76380899906],[-71.733734,41.76367599906],[-71.733742,41.76358799906],[-71.733734,41.76346199906],[-71.733711,41.76334399906],[-71.733658,41.76323299906],[-71.733551,41.76310299906],[-71.733322,41.76286699906],[-71.733185,41.76269099906],[-71.733047,41.76246299906],[-71.732986,41.76224099906],[-71.732979,41.76211499906],[-71.733002,41.76153599906],[-71.732986,41.76144999906],[-71.732948,41.76135999906],[-71.732903,41.76127199906],[-71.732742,41.76103199906],[-71.73246,41.76071899906],[-71.73214,41.76020399906],[-71.731941,41.75980799906],[-71.731873,41.75959799906],[-71.73185,41.75944499906],[-71.731819,41.75886199906],[-71.731758,41.75832699906],[-71.731758,41.75814099906],[-71.731766,41.75785399906],[-71.731766,41.75765199906],[-71.731712,41.75720599906],[-71.731643,41.75694799906],[-71.731506,41.75643199906],[-71.731483,41.75628699906],[-71.731201,41.75551199906],[-71.731071,41.75517699906],[-71.730865,41.75477599906],[-71.730815,41.75467199906],[-71.730728,41.75448999906],[-71.730613,41.75427099906],[-71.730576,41.75419999906],[-71.730507,41.75405899906],[-71.73042,41.75393899906],[-71.730354,41.75387599906],[-71.730255,41.75381499906],[-71.730148,41.75376099906],[-71.730042,41.75372299906],[-71.729652,41.75355499906],[-71.729507,41.75346799906],[-71.729401,41.75337599906],[-71.729324,41.75327699906],[-71.729279,41.75322699906],[-71.728447,41.75220499906],[-71.728188,41.75188099906],[-71.727051,41.75049199906],[-71.726977,41.75039499906],[-71.726883,41.75027099906],[-71.726807,41.75014899906],[-71.7267,41.74994699906],[-71.726608,41.74972499906],[-71.726524,41.74954599906],[-71.726425,41.74935899906],[-71.72628,41.74910399906],[-71.726097,41.74883699906],[-71.725784,41.74834399906],[-71.725647,41.74808099906],[-71.725594,41.74794799906],[-71.725525,41.74779499906],[-71.725456,41.74748999906],[-71.725441,41.74736799906],[-71.725433,41.74723399906],[-71.725433,41.74678399906],[-71.725449,41.74641399906],[-71.725449,41.74610099906],[-71.725441,41.74600599906],[-71.725418,41.74590699906],[-71.725395,41.74575399906],[-71.725067,41.74421699906],[-71.725009,41.74382199906],[-71.724991,41.74369799906],[-71.724951,41.74345299906],[-71.724838,41.74275199906],[-71.724709,41.74177899906],[-71.724625,41.74119899906],[-71.724579,41.74082199906],[-71.724558,41.74071799906],[-71.724548,41.74066899906],[-71.724548,41.74063899906],[-71.724525,41.74053999906],[-71.724335,41.73987999906],[-71.724098,41.73908199906],[-71.72409,41.73905399906],[-71.724014,41.73876599906],[-71.7239,41.73840299906],[-71.723778,41.73812499906],[-71.72364,41.73783099906],[-71.723539,41.73763799906],[-71.723495,41.73755299906],[-71.723236,41.73701299906],[-71.723083,41.73669399906],[-71.722839,41.73625599906],[-71.722603,41.73584699906],[-71.722582,41.73581499906],[-71.722422,41.73557899906],[-71.722336,41.73545099906],[-71.722107,41.73508499906],[-71.721511,41.73415499906],[-71.721169,41.73361999906],[-71.720871,41.73314699906],[-71.720558,41.73266199906],[-71.718964,41.73012899906],[-71.71817,41.72884799906],[-71.717758,41.72820299906],[-71.717567,41.72789399906],[-71.71804,41.72760799906],[-71.718887,41.72706199906],[-71.719406,41.72673799906],[-71.719589,41.72661199906],[-71.719838,41.72647999906],[-71.720111,41.72632599906],[-71.720034,41.72632799906],[-71.71959,41.72633699906],[-71.719499,41.72633799906],[-71.719007,41.72634799906],[-71.715887,41.72640899906],[-71.713105,41.72645899906],[-71.712749,41.72646599906],[-71.704842,41.72660799906],[-71.703594,41.72663399906],[-71.700933,41.72668699906],[-71.700584,41.72669399906],[-71.698209,41.72674199906],[-71.696528,41.72678099906],[-71.686674,41.72700799906],[-71.684517,41.72705699906],[-71.684064,41.72706799906],[-71.68138,41.72712999906],[-71.679701,41.72716399906],[-71.6782,41.72719799906],[-71.673904,41.72729099906],[-71.672553,41.72731499906],[-71.671956,41.72732599906],[-71.6717,41.72733099906],[-71.669494,41.72737399906],[-71.668434,41.72746999906],[-71.669574,41.73385999906],[-71.670135,41.73697999906],[-71.670544,41.73925199906],[-71.670663,41.73986999906],[-71.672195,41.74776099906],[-71.672195,41.74790999906],[-71.672211,41.74817699906],[-71.672218,41.74830199906],[-71.672302,41.74874099906],[-71.672523,41.74980499906],[-71.672562,41.74996899906],[-71.672951,41.75202199906],[-71.673065,41.75279999906],[-71.673225,41.75396699906],[-71.673347,41.75489699906],[-71.673355,41.75495499906],[-71.673424,41.75539399906],[-71.673456,41.75567299906],[-71.67347,41.75579499906],[-71.673729,41.75675999906],[-71.673767,41.75701899906],[-71.673782,41.75726699906],[-71.673752,41.75741199906],[-71.673698,41.75754199906],[-71.67363,41.75764799906],[-71.675894,41.77036199906],[-71.675898,41.77038599906],[-71.676197,41.77220999906],[-71.676499,41.77403299906],[-71.67668,41.77511399906],[-71.676725,41.77540699906],[-71.676788,41.77581599906],[-71.676866,41.77617599906],[-71.676912,41.77638499906],[-71.677002,41.77700899906],[-71.677106,41.77758099906],[-71.677296,41.77840499906],[-71.677397,41.77914599906],[-71.677531,41.77990299906],[-71.678029,41.78255199906],[-71.678209,41.78356499906],[-71.679504,41.79120299906],[-71.679703,41.79119899906],[-71.679848,41.79118699906],[-71.68013,41.79114499906],[-71.680267,41.79112999906],[-71.680466,41.79112599906],[-71.680695,41.79113399906],[-71.681007,41.79113799906],[-71.681496,41.79116399906],[-71.681816,41.79119499906],[-71.682376,41.79126199906],[-71.682436,41.79126899906],[-71.682549,41.79128299906],[-71.682648,41.79127499906],[-71.682938,41.79123699906],[-71.683327,41.79116399906],[-71.683876,41.79108399906],[-71.684013,41.79104999906],[-71.68412,41.79103499906],[-71.684196,41.79103499906],[-71.684319,41.79104599906],[-71.684486,41.79108799906],[-71.685432,41.79135099906],[-71.685532,41.79138599906],[-71.685677,41.79142799906],[-71.685989,41.79149599906],[-71.686729,41.79163699906],[-71.687157,41.79173999906],[-71.687683,41.79183199906],[-71.688034,41.79188199906],[-71.688232,41.79193499906],[-71.688591,41.79200699906],[-71.689682,41.79247699906],[-71.689842,41.79252199906],[-71.690369,41.79262499906],[-71.690811,41.79267899906],[-71.690971,41.79267899906],[-71.691162,41.79264799906],[-71.691338,41.79260299906],[-71.691528,41.79256099906],[-71.691902,41.79249599906],[-71.692322,41.79245399906],[-71.692505,41.79243099906],[-71.692719,41.79239699906],[-71.693199,41.79229699906],[-71.693291,41.79229399906],[-71.693489,41.79233599906],[-71.693665,41.79238099906],[-71.694672,41.79272499906],[-71.695488,41.79302199906],[-71.695587,41.79304499906],[-71.695679,41.79309099906],[-71.695755,41.79313699906],[-71.695831,41.79320499906],[-71.695953,41.79330099906],[-71.696579,41.79375799906],[-71.696655,41.79379999906],[-71.696732,41.79381899906],[-71.697289,41.79388799906],[-71.697517,41.79392999906],[-71.697808,41.79395899906],[-71.697986,41.79393899906],[-71.69822,41.79391999906],[-71.699028,41.79387299906],[-71.699928,41.79384999906],[-71.70092,41.79381899906],[-71.701523,41.79381599906],[-71.701698,41.79383899906],[-71.702087,41.79390299906],[-71.702255,41.79391899906],[-71.702492,41.79392999906],[-71.702911,41.79391899906],[-71.703075,41.79390699906],[-71.703125,41.79390299906],[-71.70356,41.79385799906],[-71.703781,41.79381899906],[-71.703979,41.79376999906],[-71.704178,41.79371299906],[-71.704582,41.79357099906],[-71.704765,41.79349899906],[-71.704979,41.79340399906],[-71.705215,41.79328499906],[-71.70536,41.79320099906],[-71.705467,41.79312499906],[-71.705574,41.79303699906],[-71.705673,41.79292299906],[-71.7061,41.79247699906],[-71.706161,41.79240799906],[-71.70652,41.79209499906],[-71.706635,41.79199999906],[-71.706757,41.79193499906],[-71.706909,41.79188899906],[-71.707062,41.79186599906],[-71.707253,41.79185899906],[-71.70742,41.79186999906],[-71.707596,41.79189299906],[-71.708057,41.79197699906],[-71.708115,41.79198799906],[-71.708817,41.79213699906],[-71.708839,41.79214499906],[-71.708946,41.79216799906],[-71.70903,41.79217499906],[-71.709145,41.79216799906],[-71.709213,41.79214899906],[-71.709238,41.79211899906],[-71.709274,41.79207999906],[-71.709331,41.79194299906],[-71.709381,41.79182399906],[-71.709534,41.79122899906],[-71.709618,41.79079399906],[-71.709656,41.79064899906],[-71.709709,41.79054299906],[-71.709785,41.79042799906],[-71.709877,41.79034399906],[-71.710289,41.79000499906],[-71.710907,41.78964599906],[-71.710938,41.78962299906],[-71.711052,41.78957399906],[-71.711151,41.78953899906],[-71.711319,41.78950099906],[-71.711555,41.78947399906],[-71.711769,41.78947799906],[-71.711952,41.78949399906],[-71.712135,41.78950499906],[-71.712547,41.78950099906],[-71.712982,41.78948199906],[-71.71344,41.78944399906],[-71.71352,41.78943799906],[-71.713768,41.78942099906],[-71.714035,41.78942499906],[-71.714149,41.78943299906],[-71.715302,41.78947099906],[-71.715874,41.78948199906],[-71.716087,41.78948199906],[-71.716202,41.78947799906],[-71.716685,41.78942899906],[-71.717445,41.78935199906],[-71.717957,41.78929499906],[-71.719116,41.78914299906],[-71.719879,41.78907399906],[-71.720451,41.78905499906],[-71.72049,41.78905099906],[-71.721382,41.78904299906],[-71.721466,41.78923399906],[-71.721497,41.78928399906],[-71.721886,41.78919999906],[-71.723785,41.78881799906],[-71.724876,41.78854399906],[-71.725197,41.78848599906],[-71.725624,41.78842899906],[-71.72699,41.78828399906],[-71.7276,41.78822299906],[-71.727821,41.78821599906],[-71.727961,41.78821899906],[-71.728134,41.78822699906],[-71.728577,41.78827699906],[-71.729051,41.78833699906],[-71.72924,41.78836099906],[-71.729393,41.78840299906],[-71.729889,41.78855499906],[-71.730194,41.78864299906],[-71.730595,41.78876899906],[-71.73069,41.78879899906],[-71.730759,41.78882599906],[-71.73143,41.78903999906],[-71.73159,41.78910099906],[-71.731911,41.78921099906],[-71.73201,41.78924899906],[-71.732201,41.78931399906],[-71.732407,41.78939099906],[-71.732765,41.78950899906],[-71.732948,41.78955499906],[-71.73321,41.78959599906],[-71.733284,41.78960799906],[-71.733475,41.78961899906],[-71.733765,41.78962699906],[-71.734497,41.78959699906],[-71.736252,41.78947399906],[-71.736755,41.78942899906],[-71.736839,41.78941999906],[-71.737175,41.78938299906],[-71.737579,41.78931799906],[-71.737923,41.78926799906],[-71.73819,41.78920699906],[-71.738373,41.78915399906],[-71.738541,41.78909299906],[-71.738594,41.78906199906],[-71.738678,41.78901299906],[-71.738769,41.78894799906],[-71.73925,41.78860499906],[-71.739883,41.78818099906],[-71.740189,41.78801699906],[-71.740677,41.78778099906],[-71.741195,41.78755999906],[-71.741188,41.78726999906],[-71.741158,41.78687999906],[-71.741158,41.78651399906],[-71.74117,41.78635099906],[-71.741188,41.78609799906],[-71.741196,41.78582399906],[-71.741219,41.78562899906]]]}}"}, +{"type": "blockgroup", "typeId": 134001, "areaId": 29000, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.402817,41.77469999906],[-71.402308,41.77471499906],[-71.400429,41.77476899906],[-71.398438,41.77483399906],[-71.398407,41.77478399906],[-71.397537,41.77493299906],[-71.395279,41.77534099906],[-71.391747,41.77600499906],[-71.39119,41.77610799906],[-71.390401,41.77627399906],[-71.390455,41.77642699906],[-71.390587,41.77666799906],[-71.390782,41.77697199906],[-71.390995,41.77742599906],[-71.391035,41.77751799906],[-71.391047,41.77774699906],[-71.391058,41.77776399906],[-71.391064,41.77777599906],[-71.391138,41.77778699906],[-71.391196,41.77781599906],[-71.391236,41.77786799906],[-71.391253,41.77791899906],[-71.391207,41.77795399906],[-71.39119,41.77796499906],[-71.391144,41.77801099906],[-71.391138,41.77809199906],[-71.391127,41.77814899906],[-71.391098,41.77821799906],[-71.391058,41.77824699906],[-71.391041,41.77828699906],[-71.391018,41.77837299906],[-71.390978,41.77852199906],[-71.390903,41.77874099906],[-71.390892,41.77879199906],[-71.390947,41.77884799906],[-71.391031,41.77892399906],[-71.391025,41.77905899906],[-71.391059,41.77939699906],[-71.391077,41.77970199906],[-71.391115,41.77979599906],[-71.391174,41.77978499906],[-71.391487,41.77972799906],[-71.391747,41.77967799906],[-71.392097,41.77962099906],[-71.39238,41.77957199906],[-71.392853,41.77947599906],[-71.393593,41.77931999906],[-71.394714,41.77911399906],[-71.396255,41.77881599906],[-71.397827,41.77850699906],[-71.3993,41.77823599906],[-71.399734,41.77815999906],[-71.400411,41.77800599906],[-71.400436,41.77781699906],[-71.400604,41.77753399906],[-71.400841,41.77723699906],[-71.401016,41.77701999906],[-71.401314,41.77663799906],[-71.401489,41.77641299906],[-71.401688,41.77615399906],[-71.401863,41.77592799906],[-71.402145,41.77556599906],[-71.402359,41.77529499906],[-71.402817,41.77469999906]]]}}"}, +{"type": "blockgroup", "typeId": 134002, "areaId": 29001, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.405396,41.77078599906],[-71.405388,41.77055399906],[-71.405319,41.76946599906],[-71.405319,41.76940199906],[-71.405304,41.76925299906],[-71.405243,41.76818099906],[-71.40522,41.76791399906],[-71.405214,41.76779799906],[-71.405203,41.76760999906],[-71.405086,41.76761799906],[-71.404261,41.76777699906],[-71.403849,41.76784499906],[-71.403468,41.76785599906],[-71.403026,41.76779899906],[-71.40269,41.76769499906],[-71.402355,41.76752399906],[-71.40208,41.76721499906],[-71.401776,41.76686099906],[-71.401563,41.76668899906],[-71.401395,41.76655199906],[-71.401151,41.76649499906],[-71.400846,41.76650599906],[-71.400678,41.76666599906],[-71.400616,41.76683699906],[-71.400601,41.76706499906],[-71.400585,41.76737399906],[-71.400585,41.76761399906],[-71.400569,41.76779599906],[-71.400477,41.76795599906],[-71.400263,41.76814999906],[-71.400203,41.76818099906],[-71.400019,41.76827599906],[-71.399805,41.76833299906],[-71.399577,41.76832099906],[-71.399378,41.76826399906],[-71.399134,41.76814899906],[-71.398617,41.76791399906],[-71.398052,41.76765699906],[-71.39764,41.76750799906],[-71.397113,41.76739799906],[-71.397091,41.76739399906],[-71.396435,41.76725599906],[-71.396121,41.76716699906],[-71.396069,41.76715299906],[-71.395886,41.76703799906],[-71.395734,41.76688999906],[-71.395628,41.76668399906],[-71.395598,41.76638699906],[-71.395603,41.76599399906],[-71.395565,41.76561399906],[-71.395523,41.76518599906],[-71.395412,41.76483699906],[-71.395204,41.76464499906],[-71.394731,41.76424499906],[-71.394457,41.76410699906],[-71.394121,41.76403799906],[-71.393725,41.76401499906],[-71.392962,41.76393499906],[-71.391969,41.76386399906],[-71.3918,41.76390299906],[-71.39155,41.76400799906],[-71.391314,41.76418399906],[-71.391077,41.76435599906],[-71.391054,41.76437299906],[-71.390534,41.76439099906],[-71.390549,41.76457099906],[-71.390564,41.76473599906],[-71.390594,41.76484699906],[-71.390671,41.76513699906],[-71.3908,41.76552599906],[-71.390823,41.76560599906],[-71.390945,41.76593399906],[-71.391068,41.76620099906],[-71.39122,41.76653299906],[-71.391258,41.76660499906],[-71.391357,41.76682699906],[-71.391632,41.76740299906],[-71.391663,41.76744799906],[-71.391762,41.76766599906],[-71.391846,41.76782599906],[-71.391922,41.76799799906],[-71.39222,41.76856999906],[-71.392258,41.76863499906],[-71.392311,41.76874199906],[-71.392441,41.76894399906],[-71.392632,41.76917299906],[-71.392761,41.76930599906],[-71.393173,41.76975599906],[-71.393593,41.77018699906],[-71.393623,41.77022599906],[-71.393768,41.77038199906],[-71.394325,41.77098499906],[-71.39463,41.77131699906],[-71.394882,41.77158399906],[-71.39492,41.77162599906],[-71.394989,41.77168699906],[-71.395073,41.77176699906],[-71.395409,41.77202999906],[-71.39576,41.77228899906],[-71.396004,41.77246499906],[-71.396318,41.77269099906],[-71.396423,41.77276599906],[-71.39679,41.77302899906],[-71.396851,41.77307499906],[-71.397041,41.77321599906],[-71.397314,41.77342099906],[-71.397339,41.77342199906],[-71.397598,41.77371599906],[-71.398033,41.77427299906],[-71.398407,41.77478399906],[-71.398438,41.77483399906],[-71.400429,41.77476899906],[-71.402308,41.77471499906],[-71.402817,41.77469999906],[-71.40316,41.77426499906],[-71.403954,41.77324699906],[-71.404204,41.77294099906],[-71.404297,41.77282699906],[-71.404724,41.77230499906],[-71.405151,41.77174799906],[-71.405273,41.77150299906],[-71.405289,41.77146899906],[-71.405315,41.77137399906],[-71.405373,41.77116799906],[-71.405388,41.77088499906],[-71.405396,41.77078599906]]]}}"}, +{"type": "blockgroup", "typeId": 134003, "areaId": 29002, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.398407,41.77478399906],[-71.398033,41.77427299906],[-71.397598,41.77371599906],[-71.397339,41.77342199906],[-71.397314,41.77342099906],[-71.397041,41.77321599906],[-71.396851,41.77307499906],[-71.39679,41.77302899906],[-71.396423,41.77276599906],[-71.396318,41.77269099906],[-71.396004,41.77246499906],[-71.39576,41.77228899906],[-71.395409,41.77202999906],[-71.395073,41.77176699906],[-71.394989,41.77168699906],[-71.39492,41.77162599906],[-71.394882,41.77158399906],[-71.39463,41.77131699906],[-71.394325,41.77098499906],[-71.393768,41.77038199906],[-71.393623,41.77022599906],[-71.393593,41.77018699906],[-71.393173,41.76975599906],[-71.392761,41.76930599906],[-71.392632,41.76917299906],[-71.392441,41.76894399906],[-71.392311,41.76874199906],[-71.392258,41.76863499906],[-71.39222,41.76856999906],[-71.391922,41.76799799906],[-71.391846,41.76782599906],[-71.391762,41.76766599906],[-71.391663,41.76744799906],[-71.391632,41.76740299906],[-71.391357,41.76682699906],[-71.391258,41.76660499906],[-71.39122,41.76653299906],[-71.391068,41.76620099906],[-71.390945,41.76593399906],[-71.390823,41.76560599906],[-71.3908,41.76552599906],[-71.390671,41.76513699906],[-71.390594,41.76484699906],[-71.390564,41.76473599906],[-71.390549,41.76457099906],[-71.390534,41.76439099906],[-71.390416,41.76442699906],[-71.389898,41.76429899906],[-71.389451,41.76424099906],[-71.389198,41.76413199906],[-71.389031,41.76403399906],[-71.38892,41.76397799906],[-71.388517,41.76377499906],[-71.386525,41.76004499906],[-71.385659,41.75842099906],[-71.384733,41.75760199906],[-71.382971,41.75617399906],[-71.38225,41.75604099906],[-71.381116,41.75582899906],[-71.380971,41.75580199906],[-71.378273,41.75529699906],[-71.378193,41.75698299906],[-71.377613,41.76683599906],[-71.37752,41.76841999906],[-71.377451,41.76959699906],[-71.377098,41.77559999906],[-71.377053,41.77663299906],[-71.376998,41.77789999906],[-71.377798,41.78199999906],[-71.388581,41.78026799906],[-71.391115,41.77979599906],[-71.391077,41.77970199906],[-71.391059,41.77939699906],[-71.391025,41.77905899906],[-71.391031,41.77892399906],[-71.390947,41.77884799906],[-71.390892,41.77879199906],[-71.390903,41.77874099906],[-71.390978,41.77852199906],[-71.391018,41.77837299906],[-71.391041,41.77828699906],[-71.391058,41.77824699906],[-71.391098,41.77821799906],[-71.391127,41.77814899906],[-71.391138,41.77809199906],[-71.391144,41.77801099906],[-71.39119,41.77796499906],[-71.391207,41.77795399906],[-71.391253,41.77791899906],[-71.391236,41.77786799906],[-71.391196,41.77781599906],[-71.391138,41.77778699906],[-71.391064,41.77777599906],[-71.391058,41.77776399906],[-71.391047,41.77774699906],[-71.391035,41.77751799906],[-71.390995,41.77742599906],[-71.390782,41.77697199906],[-71.390587,41.77666799906],[-71.390455,41.77642699906],[-71.390401,41.77627399906],[-71.39119,41.77610799906],[-71.391747,41.77600499906],[-71.395279,41.77534099906],[-71.397537,41.77493299906],[-71.398407,41.77478399906]]]}}"}, +{"type": "blockgroup", "typeId": 135001, "areaId": 29003, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.397682,41.78316099906],[-71.397499,41.78259299906],[-71.397308,41.78200899906],[-71.397049,41.78121199906],[-71.396896,41.78073899906],[-71.396721,41.78017799906],[-71.396614,41.77984999906],[-71.396255,41.77881599906],[-71.394714,41.77911399906],[-71.393593,41.77931999906],[-71.392853,41.77947599906],[-71.39238,41.77957199906],[-71.392097,41.77962099906],[-71.391747,41.77967799906],[-71.391487,41.77972799906],[-71.391174,41.77978499906],[-71.391115,41.77979599906],[-71.388581,41.78026799906],[-71.377798,41.78199999906],[-71.378198,41.78439999906],[-71.383699,41.78529999906],[-71.384769,41.78551899906],[-71.387385,41.78605299906],[-71.388712,41.78620799906],[-71.388993,41.78625799906],[-71.389413,41.78633499906],[-71.389921,41.78630799906],[-71.390603,41.78628899906],[-71.391289,41.78626299906],[-71.391777,41.78624299906],[-71.392563,41.78619699906],[-71.394132,41.78617399906],[-71.395042,41.78614799906],[-71.39502,41.78607899906],[-71.394989,41.78598799906],[-71.394882,41.78564799906],[-71.394867,41.78560299906],[-71.394691,41.78507199906],[-71.39451,41.78452899906],[-71.394501,41.78451199906],[-71.394325,41.78398099906],[-71.394096,41.78329799906],[-71.394501,41.78327899906],[-71.395851,41.78324099906],[-71.397682,41.78316099906]]]}}"}, +{"type": "blockgroup", "typeId": 135002, "areaId": 29004, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.401314,41.78425199906],[-71.401237,41.78370299906],[-71.401154,41.78306999906],[-71.401146,41.78303899906],[-71.399994,41.78307699906],[-71.398628,41.78313099906],[-71.397682,41.78316099906],[-71.395851,41.78324099906],[-71.394501,41.78327899906],[-71.394096,41.78329799906],[-71.394325,41.78398099906],[-71.394501,41.78451199906],[-71.39451,41.78452899906],[-71.394691,41.78507199906],[-71.394867,41.78560299906],[-71.394882,41.78564799906],[-71.394989,41.78598799906],[-71.39502,41.78607899906],[-71.395042,41.78614799906],[-71.397728,41.78602999906],[-71.39772,41.78594999906],[-71.39769,41.78548799906],[-71.397644,41.78494299906],[-71.397606,41.78438899906],[-71.399399,41.78431699906],[-71.401314,41.78425199906]]]}}"}, +{"type": "blockgroup", "typeId": 135003, "areaId": 29005, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.401146,41.78303899906],[-71.401108,41.78274899906],[-71.401062,41.78239099906],[-71.40097,41.78169599906],[-71.400963,41.78166999906],[-71.400833,41.78066999906],[-71.400674,41.77945599906],[-71.40062,41.77910199906],[-71.400411,41.77800599906],[-71.399734,41.77815999906],[-71.3993,41.77823599906],[-71.397827,41.77850699906],[-71.396255,41.77881599906],[-71.396614,41.77984999906],[-71.396721,41.78017799906],[-71.396896,41.78073899906],[-71.397049,41.78121199906],[-71.397308,41.78200899906],[-71.397499,41.78259299906],[-71.397682,41.78316099906],[-71.398628,41.78313099906],[-71.399994,41.78307699906],[-71.401146,41.78303899906]]]}}"}, +{"type": "blockgroup", "typeId": 135004, "areaId": 29006, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.406397,41.77895699906],[-71.406281,41.77892299906],[-71.406204,41.77889599906],[-71.406036,41.77884699906],[-71.403351,41.77800399906],[-71.400841,41.77723699906],[-71.400604,41.77753399906],[-71.400436,41.77781699906],[-71.400411,41.77800599906],[-71.40062,41.77910199906],[-71.400674,41.77945599906],[-71.400833,41.78066999906],[-71.400963,41.78166999906],[-71.40097,41.78169599906],[-71.401062,41.78239099906],[-71.401108,41.78274899906],[-71.401146,41.78303899906],[-71.401154,41.78306999906],[-71.401237,41.78370299906],[-71.401314,41.78425199906],[-71.399399,41.78431699906],[-71.397606,41.78438899906],[-71.397644,41.78494299906],[-71.39769,41.78548799906],[-71.39772,41.78594999906],[-71.397728,41.78602999906],[-71.398247,41.78601099906],[-71.398293,41.78600699906],[-71.401123,41.78590799906],[-71.401657,41.78588899906],[-71.403419,41.78585399906],[-71.403656,41.78585399906],[-71.403896,41.78585199906],[-71.404259,41.78584899906],[-71.404247,41.78533099906],[-71.40309,41.78305399906],[-71.403051,41.78297899906],[-71.403081,41.78289399906],[-71.403247,41.78242299906],[-71.403574,41.78149999906],[-71.403768,41.78095599906],[-71.403783,41.78093199906],[-71.404106,41.78056299906],[-71.404305,41.78034999906],[-71.404327,41.78027299906],[-71.404811,41.77974199906],[-71.40487,41.77975699906],[-71.405021,41.77949599906],[-71.405036,41.77942499906],[-71.405114,41.77932799906],[-71.405233,41.77936299906],[-71.405669,41.77948999906],[-71.405814,41.77947899906],[-71.405964,41.77920399906],[-71.405984,41.77917299906],[-71.406397,41.77895699906]]]}}"}, +{"type": "blockgroup", "typeId": 135005, "areaId": 29007, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.411947,41.77238099906],[-71.411903,41.77236599906],[-71.411346,41.77216299906],[-71.41095,41.77204099906],[-71.410828,41.77200299906],[-71.410484,41.77196499906],[-71.410338,41.77197599906],[-71.410072,41.77199599906],[-71.409935,41.77202199906],[-71.409637,41.77208299906],[-71.409027,41.77221299906],[-71.408134,41.77239999906],[-71.407906,41.77244599906],[-71.407227,41.77259099906],[-71.407112,41.77261399906],[-71.406349,41.77277799906],[-71.405403,41.77297999906],[-71.405342,41.77299499906],[-71.404583,41.77313999906],[-71.404471,41.77316199906],[-71.403954,41.77324699906],[-71.40316,41.77426499906],[-71.402817,41.77469999906],[-71.402359,41.77529499906],[-71.402145,41.77556599906],[-71.401863,41.77592799906],[-71.401688,41.77615399906],[-71.401489,41.77641299906],[-71.401314,41.77663799906],[-71.401016,41.77701999906],[-71.400841,41.77723699906],[-71.403351,41.77800399906],[-71.406036,41.77884699906],[-71.406204,41.77889599906],[-71.406281,41.77892299906],[-71.406397,41.77895699906],[-71.407257,41.77848399906],[-71.408199,41.77801699906],[-71.408241,41.77802499906],[-71.408787,41.77812499906],[-71.409276,41.77641099906],[-71.409468,41.77573899906],[-71.409483,41.77568899906],[-71.409926,41.77419299906],[-71.409937,41.77414799906],[-71.41,41.77389999906],[-71.410036,41.77375999906],[-71.410367,41.77352099906],[-71.410562,41.77337999906],[-71.410807,41.77320399906],[-71.411885,41.77242699906],[-71.411947,41.77238099906]]]}}"}, +{"type": "blockgroup", "typeId": 136001, "areaId": 29008, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.416412,41.76945499906],[-71.416405,41.76940899906],[-71.416405,41.76928699906],[-71.416359,41.76889299906],[-71.416346,41.76878399906],[-71.416344,41.76876399906],[-71.416292,41.76840699906],[-71.416283,41.76834499906],[-71.416245,41.76795999906],[-71.41624,41.76782399906],[-71.415775,41.76791199906],[-71.415374,41.76794199906],[-71.415131,41.76796099906],[-71.414702,41.76795699906],[-71.41461,41.76795599906],[-71.414204,41.76792399906],[-71.414112,41.76792299906],[-71.413838,41.76788599906],[-71.413303,41.76777899906],[-71.413161,41.76774599906],[-71.412779,41.76763999906],[-71.412638,41.76758999906],[-71.412529,41.76753799906],[-71.412494,41.76608799906],[-71.412491,41.76596099906],[-71.41227,41.76531199906],[-71.412225,41.76518199906],[-71.412183,41.76505799906],[-71.412116,41.76514799906],[-71.411419,41.76608599906],[-71.41116,41.76630299906],[-71.410728,41.76653999906],[-71.410702,41.76655399906],[-71.410259,41.76665599906],[-71.40979,41.76676599906],[-71.409751,41.76677499906],[-71.409678,41.76678299906],[-71.409234,41.76684299906],[-71.4089,41.76688799906],[-71.408629,41.76694499906],[-71.408375,41.76703699906],[-71.408114,41.76714899906],[-71.407777,41.76726399906],[-71.407191,41.76740399906],[-71.406449,41.76745999906],[-71.405646,41.76758399906],[-71.405203,41.76760999906],[-71.405214,41.76779799906],[-71.40522,41.76791399906],[-71.405243,41.76818099906],[-71.405304,41.76925299906],[-71.405319,41.76940199906],[-71.405319,41.76946599906],[-71.405388,41.77055399906],[-71.405396,41.77078599906],[-71.405388,41.77088499906],[-71.405373,41.77116799906],[-71.405315,41.77137399906],[-71.405289,41.77146899906],[-71.405273,41.77150299906],[-71.405151,41.77174799906],[-71.404724,41.77230499906],[-71.404297,41.77282699906],[-71.404204,41.77294099906],[-71.403954,41.77324699906],[-71.404471,41.77316199906],[-71.404583,41.77313999906],[-71.405342,41.77299499906],[-71.405403,41.77297999906],[-71.406349,41.77277799906],[-71.407112,41.77261399906],[-71.407227,41.77259099906],[-71.407906,41.77244599906],[-71.408134,41.77239999906],[-71.409027,41.77221299906],[-71.409637,41.77208299906],[-71.409935,41.77202199906],[-71.410072,41.77199599906],[-71.410338,41.77197599906],[-71.410484,41.77196499906],[-71.410828,41.77200299906],[-71.41095,41.77204099906],[-71.411346,41.77216299906],[-71.411903,41.77236599906],[-71.411947,41.77238099906],[-71.412046,41.77241399906],[-71.412666,41.77264399906],[-71.412804,41.77268999906],[-71.412958,41.77274399906],[-71.413231,41.77282299906],[-71.413296,41.77283099906],[-71.413834,41.77289599906],[-71.414223,41.77296099906],[-71.414307,41.77297599906],[-71.414558,41.77303699906],[-71.414879,41.77314399906],[-71.414925,41.77316999906],[-71.414963,41.77319299906],[-71.415077,41.77294199906],[-71.415489,41.77201099906],[-71.415764,41.77130499906],[-71.41597,41.77076699906],[-71.416214,41.77016099906],[-71.416298,41.76995099906],[-71.416389,41.76968799906],[-71.416412,41.76956199906],[-71.416412,41.76945499906]]]}}"}, +{"type": "blockgroup", "typeId": 136002, "areaId": 29009, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.42989,41.76076099906],[-71.4295,41.76067999906],[-71.428879,41.76059299906],[-71.428361,41.76052399906],[-71.427735,41.76054599906],[-71.427277,41.76065999906],[-71.427033,41.76073999906],[-71.426774,41.76083099906],[-71.426587,41.76090399906],[-71.426357,41.76098099906],[-71.426248,41.76101699906],[-71.426224,41.76102499906],[-71.425873,41.76118499906],[-71.42553,41.76136399906],[-71.425263,41.76150399906],[-71.424965,41.76165199906],[-71.4244,41.76193099906],[-71.423858,41.76223399906],[-71.4234,41.76259999906],[-71.423186,41.76279399906],[-71.422957,41.76297099906],[-71.422916,41.76302999906],[-71.422743,41.76327899906],[-71.422603,41.76350899906],[-71.422483,41.76379299906],[-71.422376,41.76404399906],[-71.422223,41.76430599906],[-71.421994,41.76457999906],[-71.421913,41.76462999906],[-71.421735,41.76473999906],[-71.421312,41.76487899906],[-71.420941,41.76488799906],[-71.420738,41.76488399906],[-71.42062,41.76488199906],[-71.420285,41.76487599906],[-71.419797,41.76478499906],[-71.419523,41.76466999906],[-71.41934,41.76460099906],[-71.419096,41.76444099906],[-71.418971,41.76434799906],[-71.418898,41.76429299906],[-71.418867,41.76429299906],[-71.41873,41.76409699906],[-71.418715,41.76407599906],[-71.4187,41.76394999906],[-71.418761,41.76381299906],[-71.419036,41.76354999906],[-71.419494,41.76307099906],[-71.420121,41.76217499906],[-71.420197,41.76198599906],[-71.420152,41.76183799906],[-71.420091,41.76174599906],[-71.419969,41.76166599906],[-71.41974,41.76162599906],[-71.419435,41.76170599906],[-71.419078,41.76188499906],[-71.418946,41.76195099906],[-71.418519,41.76204199906],[-71.417848,41.76216699906],[-71.417586,41.76225399906],[-71.417405,41.76231599906],[-71.417066,41.76249099906],[-71.416657,41.76276099906],[-71.416336,41.76285199906],[-71.416016,41.76289699906],[-71.415806,41.76290199906],[-71.415131,41.76291899906],[-71.41475,41.76291899906],[-71.414383,41.76295299906],[-71.414124,41.76305599906],[-71.413971,41.76312399906],[-71.413803,41.76322699906],[-71.413677,41.76332799906],[-71.413589,41.76354599906],[-71.413543,41.76368299906],[-71.413492,41.76381799906],[-71.413482,41.76384299906],[-71.413314,41.76408299906],[-71.412642,41.76454499906],[-71.412352,41.76483099906],[-71.412183,41.76505799906],[-71.412225,41.76518199906],[-71.41227,41.76531199906],[-71.412491,41.76596099906],[-71.412494,41.76608799906],[-71.412529,41.76753799906],[-71.412638,41.76758999906],[-71.412779,41.76763999906],[-71.413161,41.76774599906],[-71.413303,41.76777899906],[-71.413838,41.76788599906],[-71.414112,41.76792299906],[-71.414204,41.76792399906],[-71.41461,41.76795599906],[-71.414702,41.76795699906],[-71.415131,41.76796099906],[-71.415374,41.76794199906],[-71.415775,41.76791199906],[-71.41624,41.76782399906],[-71.416245,41.76795999906],[-71.417963,41.76772899906],[-71.418076,41.76820799906],[-71.418136,41.76847299906],[-71.418162,41.76858599906],[-71.418302,41.76919799906],[-71.418327,41.76930599906],[-71.418427,41.76929899906],[-71.418483,41.76928799906],[-71.418976,41.76918799906],[-71.41909,41.76917599906],[-71.419044,41.76882199906],[-71.419014,41.76869599906],[-71.418953,41.76842899906],[-71.418869,41.76802099906],[-71.421165,41.76764299906],[-71.420959,41.76697199906],[-71.420936,41.76689499906],[-71.421785,41.76672799906],[-71.421923,41.76669999906],[-71.42262,41.76655599906],[-71.422927,41.76649299906],[-71.423522,41.76641199906],[-71.423565,41.76640599906],[-71.424047,41.76638699906],[-71.424487,41.76640899906],[-71.424563,41.76642099906],[-71.424881,41.76647299906],[-71.425148,41.76654199906],[-71.425232,41.76626199906],[-71.425529,41.76631499906],[-71.425591,41.76632299906],[-71.425667,41.76632299906],[-71.425789,41.76629999906],[-71.425957,41.76675799906],[-71.426033,41.76687599906],[-71.426064,41.76690299906],[-71.42614,41.76695599906],[-71.426186,41.76697499906],[-71.42627,41.76698299906],[-71.426338,41.76698299906],[-71.426445,41.76697199906],[-71.427771,41.76659599906],[-71.427877,41.76630799906],[-71.428324,41.76508599906],[-71.428812,41.76373999906],[-71.429094,41.76296099906],[-71.429295,41.76240699906],[-71.429843,41.76089599906],[-71.429864,41.76083799906],[-71.42989,41.76076099906]]]}}"}, +{"type": "blockgroup", "typeId": 136003, "areaId": 29010, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.427771,41.76659599906],[-71.426445,41.76697199906],[-71.426338,41.76698299906],[-71.42627,41.76698299906],[-71.426186,41.76697499906],[-71.42614,41.76695599906],[-71.426064,41.76690299906],[-71.426033,41.76687599906],[-71.425957,41.76675799906],[-71.425789,41.76629999906],[-71.425667,41.76632299906],[-71.425591,41.76632299906],[-71.425529,41.76631499906],[-71.425232,41.76626199906],[-71.425148,41.76654199906],[-71.424881,41.76647299906],[-71.424563,41.76642099906],[-71.424487,41.76640899906],[-71.424047,41.76638699906],[-71.423565,41.76640599906],[-71.423522,41.76641199906],[-71.422927,41.76649299906],[-71.42262,41.76655599906],[-71.421923,41.76669999906],[-71.421785,41.76672799906],[-71.420936,41.76689499906],[-71.420959,41.76697199906],[-71.421165,41.76764299906],[-71.418869,41.76802099906],[-71.418953,41.76842899906],[-71.419014,41.76869599906],[-71.419044,41.76882199906],[-71.41909,41.76917599906],[-71.418976,41.76918799906],[-71.418483,41.76928799906],[-71.418427,41.76929899906],[-71.418327,41.76930599906],[-71.418302,41.76919799906],[-71.418162,41.76858599906],[-71.418136,41.76847299906],[-71.418076,41.76820799906],[-71.417963,41.76772899906],[-71.416245,41.76795999906],[-71.416283,41.76834499906],[-71.416292,41.76840699906],[-71.416344,41.76876399906],[-71.416346,41.76878399906],[-71.416359,41.76889299906],[-71.416405,41.76928699906],[-71.416405,41.76940899906],[-71.416412,41.76945499906],[-71.416412,41.76956199906],[-71.416389,41.76968799906],[-71.416298,41.76995099906],[-71.416214,41.77016099906],[-71.41597,41.77076699906],[-71.415764,41.77130499906],[-71.415489,41.77201099906],[-71.415077,41.77294199906],[-71.414963,41.77319299906],[-71.415047,41.77324299906],[-71.4151,41.77326999906],[-71.416039,41.77395599906],[-71.416138,41.77403599906],[-71.416168,41.77405499906],[-71.416473,41.77430299906],[-71.416504,41.77432299906],[-71.416752,41.77449899906],[-71.416916,41.77461599906],[-71.416977,41.77465399906],[-71.417014,41.77468099906],[-71.417114,41.77475399906],[-71.417427,41.77497099906],[-71.417488,41.77500899906],[-71.417664,41.77511599906],[-71.417712,41.77515099906],[-71.418012,41.77536899906],[-71.41826,41.77551899906],[-71.418303,41.77553799906],[-71.418416,41.77558899906],[-71.418452,41.77560599906],[-71.418569,41.77566399906],[-71.41866,41.77570799906],[-71.418972,41.77581699906],[-71.419005,41.77582699906],[-71.419181,41.77587099906],[-71.419459,41.77593999906],[-71.419537,41.77595299906],[-71.419531,41.77596799906],[-71.419524,41.77598699906],[-71.419507,41.77603699906],[-71.419478,41.77612099906],[-71.419459,41.77617599906],[-71.419437,41.77624299906],[-71.419429,41.77633999906],[-71.419532,41.77635999906],[-71.419716,41.77639599906],[-71.419916,41.77643599906],[-71.419962,41.77644399906],[-71.420221,41.77653599906],[-71.42025,41.77654299906],[-71.421356,41.77676799906],[-71.421394,41.77678699906],[-71.421421,41.77679199906],[-71.421898,41.77687799906],[-71.422129,41.77692799906],[-71.4226,41.77703099906],[-71.42305,41.77711899906],[-71.423653,41.77723699906],[-71.42381,41.77726699906],[-71.423846,41.77727399906],[-71.423887,41.77728199906],[-71.423924,41.77716999906],[-71.424098,41.77667499906],[-71.424121,41.77661299906],[-71.424507,41.77554599906],[-71.424576,41.77535999906],[-71.424767,41.77484699906],[-71.425585,41.77258899906],[-71.425775,41.77206699906],[-71.425975,41.77152499906],[-71.426263,41.77074699906],[-71.426652,41.76965699906],[-71.427771,41.76659599906]]]}}"}, +{"type": "blockgroup", "typeId": 137011, "areaId": 29011, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.431603,41.78625399906],[-71.431564,41.78608299906],[-71.431473,41.78572799906],[-71.431435,41.78559899906],[-71.431374,41.78536599906],[-71.431305,41.78509099906],[-71.43129,41.78504599906],[-71.431213,41.78476299906],[-71.431114,41.78444699906],[-71.431068,41.78429399906],[-71.430923,41.78385199906],[-71.430901,41.78376399906],[-71.430847,41.78358499906],[-71.430687,41.78309999906],[-71.430679,41.78306199906],[-71.430565,41.78268799906],[-71.430489,41.78264999906],[-71.430229,41.78253899906],[-71.429962,41.78244799906],[-71.429672,41.78237499906],[-71.429462,41.78233299906],[-71.429405,41.78232199906],[-71.429268,41.78230299906],[-71.429024,41.78227599906],[-71.428787,41.78226099906],[-71.428574,41.78224899906],[-71.428149,41.78221899906],[-71.426605,41.78210799906],[-71.424828,41.78200899906],[-71.424612,41.78200199906],[-71.424408,41.78198599906],[-71.424179,41.78197499906],[-71.423691,41.78194999906],[-71.42321,41.78192499906],[-71.422863,41.78190999906],[-71.422791,41.78190199906],[-71.422585,41.78188799906],[-71.422527,41.78188499906],[-71.422481,41.78188199906],[-71.422395,41.78187599906],[-71.422262,41.78186699906],[-71.422132,41.78185999906],[-71.422033,41.78213099906],[-71.421881,41.78254699906],[-71.421187,41.78444799906],[-71.420875,41.78533499906],[-71.420807,41.78545499906],[-71.420551,41.78618099906],[-71.42061,41.78618399906],[-71.421476,41.78618599906],[-71.421499,41.78618599906],[-71.421623,41.78618899906],[-71.421667,41.78618999906],[-71.42172,41.78618999906],[-71.421757,41.78619099906],[-71.421846,41.78619199906],[-71.422037,41.78619299906],[-71.422899,41.78620199906],[-71.42311,41.78619999906],[-71.423585,41.78620799906],[-71.423755,41.78620799906],[-71.425806,41.78622699906],[-71.426257,41.78623199906],[-71.429003,41.78625699906],[-71.431603,41.78625399906]]]}}"}, +{"type": "blockgroup", "typeId": 137012, "areaId": 29012, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.435837,41.77894199906],[-71.435692,41.77891499906],[-71.434654,41.77870599906],[-71.433945,41.77856399906],[-71.433029,41.77838099906],[-71.432487,41.77827799906],[-71.432022,41.77818299906],[-71.431077,41.77799399906],[-71.430279,41.77783499906],[-71.42968,41.77771399906],[-71.429359,41.77765299906],[-71.428482,41.77747699906],[-71.427582,41.77730199906],[-71.426682,41.77712199906],[-71.426468,41.77708199906],[-71.426416,41.77707199906],[-71.426323,41.77705399906],[-71.426094,41.77700799906],[-71.42588,41.77696599906],[-71.425781,41.77694299906],[-71.425613,41.77691699906],[-71.425232,41.77683299906],[-71.424868,41.77676099906],[-71.424249,41.77663799906],[-71.424175,41.77662299906],[-71.424121,41.77661299906],[-71.424098,41.77667499906],[-71.423924,41.77716999906],[-71.423887,41.77728199906],[-71.423846,41.77727399906],[-71.42381,41.77726699906],[-71.422763,41.78014399906],[-71.422624,41.78051699906],[-71.42232,41.78134999906],[-71.422284,41.78144799906],[-71.422214,41.78163499906],[-71.422172,41.78174899906],[-71.422132,41.78185999906],[-71.422262,41.78186699906],[-71.422395,41.78187599906],[-71.422481,41.78188199906],[-71.422527,41.78188499906],[-71.422585,41.78188799906],[-71.422791,41.78190199906],[-71.422863,41.78190999906],[-71.42321,41.78192499906],[-71.423691,41.78194999906],[-71.424179,41.78197499906],[-71.424408,41.78198599906],[-71.424612,41.78200199906],[-71.424828,41.78200899906],[-71.426605,41.78210799906],[-71.428149,41.78221899906],[-71.428574,41.78224899906],[-71.428787,41.78226099906],[-71.429024,41.78227599906],[-71.429268,41.78230299906],[-71.429405,41.78232199906],[-71.429462,41.78233299906],[-71.429672,41.78237499906],[-71.429962,41.78244799906],[-71.430229,41.78253899906],[-71.430489,41.78264999906],[-71.430565,41.78268799906],[-71.430679,41.78306199906],[-71.430663,41.78296299906],[-71.430649,41.78288999906],[-71.430641,41.78287299906],[-71.430641,41.78266499906],[-71.430649,41.78259699906],[-71.430666,41.78254099906],[-71.43071,41.78239399906],[-71.430771,41.78224899906],[-71.430817,41.78216899906],[-71.430855,41.78210399906],[-71.430977,41.78193999906],[-71.431046,41.78186399906],[-71.43119,41.78173399906],[-71.431335,41.78161999906],[-71.431549,41.78147099906],[-71.431839,41.78128099906],[-71.432422,41.78091899906],[-71.433174,41.78042199906],[-71.433708,41.78010199906],[-71.433868,41.78001399906],[-71.434311,41.77976199906],[-71.434578,41.77961699906],[-71.435143,41.77930799906],[-71.435623,41.77905299906],[-71.435638,41.77902599906],[-71.435837,41.77894199906]]]}}"}, +{"type": "blockgroup", "typeId": 137013, "areaId": 29013, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.432365,41.77200699906],[-71.431778,41.77189299906],[-71.431488,41.77183199906],[-71.430588,41.77164799906],[-71.429924,41.77151099906],[-71.429703,41.77146899906],[-71.428818,41.77128599906],[-71.428284,41.77274299906],[-71.427933,41.77267099906],[-71.427696,41.77262099906],[-71.427383,41.77255999906],[-71.427467,41.77231999906],[-71.427634,41.77186199906],[-71.426236,41.77158099906],[-71.426136,41.77156099906],[-71.425975,41.77152499906],[-71.425775,41.77206699906],[-71.425585,41.77258899906],[-71.424767,41.77484699906],[-71.424576,41.77535999906],[-71.424507,41.77554599906],[-71.424121,41.77661299906],[-71.424175,41.77662299906],[-71.424249,41.77663799906],[-71.424868,41.77676099906],[-71.425232,41.77683299906],[-71.425613,41.77691699906],[-71.425781,41.77694299906],[-71.42588,41.77696599906],[-71.426094,41.77700799906],[-71.426323,41.77705399906],[-71.426416,41.77707199906],[-71.426468,41.77708199906],[-71.426682,41.77712199906],[-71.427582,41.77730199906],[-71.428482,41.77747699906],[-71.429359,41.77765299906],[-71.42968,41.77771399906],[-71.430279,41.77783499906],[-71.430274,41.77777899906],[-71.430527,41.77705399906],[-71.430779,41.77638599906],[-71.431297,41.77492099906],[-71.43158,41.77415499906],[-71.431839,41.77347199906],[-71.432068,41.77281999906],[-71.432365,41.77200699906]]]}}"}, +{"type": "blockgroup", "typeId": 137014, "areaId": 29014, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.437333,41.77457699906],[-71.437263,41.77408599906],[-71.437225,41.77386499906],[-71.437157,41.77340699906],[-71.437103,41.77307499906],[-71.437088,41.77295299906],[-71.43705,41.77273199906],[-71.436996,41.77235799906],[-71.436974,41.77225899906],[-71.436775,41.77228499906],[-71.436157,41.77237699906],[-71.435127,41.77253299906],[-71.434647,41.77260599906],[-71.434013,41.77270899906],[-71.434029,41.77262899906],[-71.434029,41.77255999906],[-71.434006,41.77246899906],[-71.433937,41.77236199906],[-71.433891,41.77233899906],[-71.433792,41.77230499906],[-71.433243,41.77218999906],[-71.433075,41.77215199906],[-71.432365,41.77200699906],[-71.432068,41.77281999906],[-71.431839,41.77347199906],[-71.43158,41.77415499906],[-71.431297,41.77492099906],[-71.430779,41.77638599906],[-71.430527,41.77705399906],[-71.430274,41.77777899906],[-71.430279,41.77783499906],[-71.431077,41.77799399906],[-71.432022,41.77818299906],[-71.432487,41.77827799906],[-71.433029,41.77838099906],[-71.433945,41.77856399906],[-71.434654,41.77870599906],[-71.435692,41.77891499906],[-71.435692,41.77889599906],[-71.436211,41.77745399906],[-71.436638,41.77623699906],[-71.436729,41.77599299906],[-71.43708,41.77499799906],[-71.437248,41.77455099906],[-71.437333,41.77457699906]]]}}"}, +{"type": "blockgroup", "typeId": 137021, "areaId": 29015, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.445824,41.77784699906],[-71.445436,41.77763799906],[-71.445274,41.77754999906],[-71.445061,41.77742799906],[-71.444725,41.77724499906],[-71.444633,41.77720299906],[-71.444466,41.77715699906],[-71.444298,41.77714199906],[-71.443489,41.77722499906],[-71.442439,41.77732999906],[-71.441455,41.77743799906],[-71.440048,41.77753399906],[-71.437691,41.77776299906],[-71.436211,41.77745399906],[-71.435692,41.77889599906],[-71.435692,41.77891499906],[-71.435837,41.77894199906],[-71.436584,41.77912499906],[-71.436783,41.77918599906],[-71.436836,41.77920899906],[-71.436897,41.77922799906],[-71.437164,41.77934599906],[-71.437363,41.77946099906],[-71.438728,41.78021999906],[-71.438942,41.78033799906],[-71.439886,41.78086899906],[-71.440028,41.78094399906],[-71.440863,41.78140799906],[-71.441454,41.78097699906],[-71.441524,41.78092799906],[-71.442063,41.78053399906],[-71.442142,41.78046799906],[-71.442554,41.78019399906],[-71.442602,41.78015299906],[-71.443141,41.77979499906],[-71.443596,41.77944199906],[-71.443672,41.77938499906],[-71.44381,41.77929699906],[-71.444221,41.77900299906],[-71.444748,41.77862499906],[-71.444885,41.77852599906],[-71.445305,41.77822099906],[-71.445518,41.77806499906],[-71.445824,41.77784699906]]]}}"}, +{"type": "blockgroup", "typeId": 137022, "areaId": 29016, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.451256,41.77333099906],[-71.450768,41.77307099906],[-71.450462,41.77290299906],[-71.449791,41.77255199906],[-71.449707,41.77247599906],[-71.449631,41.77228899906],[-71.449448,41.77164499906],[-71.449295,41.77116399906],[-71.449234,41.77098799906],[-71.448204,41.77122499906],[-71.447792,41.77132399906],[-71.447624,41.77134699906],[-71.447478,41.77135299906],[-71.447508,41.77144799906],[-71.447638,41.77159699906],[-71.447581,41.77165399906],[-71.447601,41.77170599906],[-71.447652,41.77178299906],[-71.447654,41.77182899906],[-71.447597,41.77191499906],[-71.447527,41.77195199906],[-71.447473,41.77199499906],[-71.447464,41.77205099906],[-71.447432,41.77211099906],[-71.447378,41.77216899906],[-71.447348,41.77222399906],[-71.447341,41.77228099906],[-71.447319,41.77234199906],[-71.447274,41.77240599906],[-71.447217,41.77246399906],[-71.44718,41.77252499906],[-71.447126,41.77265899906],[-71.44704,41.77278299906],[-71.446889,41.77290599906],[-71.446726,41.77299199906],[-71.446649,41.77302799906],[-71.446463,41.77308699906],[-71.446393,41.77313099906],[-71.44631,41.77323899906],[-71.446131,41.77337099906],[-71.445936,41.77356399906],[-71.445909,41.77361799906],[-71.445882,41.77369999906],[-71.445564,41.77354799906],[-71.445045,41.77357099906],[-71.443687,41.77366299906],[-71.443703,41.77394499906],[-71.443756,41.77435299906],[-71.443077,41.77439899906],[-71.442078,41.77445999906],[-71.441711,41.77448699906],[-71.440269,41.77457799906],[-71.439667,41.77461999906],[-71.437393,41.77477599906],[-71.437333,41.77457699906],[-71.437248,41.77455099906],[-71.43708,41.77499799906],[-71.436729,41.77599299906],[-71.436638,41.77623699906],[-71.436211,41.77745399906],[-71.437691,41.77776299906],[-71.440048,41.77753399906],[-71.441455,41.77743799906],[-71.442439,41.77732999906],[-71.443489,41.77722499906],[-71.444298,41.77714199906],[-71.444466,41.77715699906],[-71.444633,41.77720299906],[-71.444725,41.77724499906],[-71.445061,41.77742799906],[-71.445274,41.77754999906],[-71.445436,41.77763799906],[-71.445824,41.77784699906],[-71.446144,41.77760699906],[-71.44635,41.77745799906],[-71.446433,41.77739999906],[-71.446785,41.77715299906],[-71.447365,41.77673699906],[-71.447945,41.77631399906],[-71.448044,41.77624099906],[-71.44854,41.77589399906],[-71.448608,41.77584099906],[-71.449112,41.77547799906],[-71.449173,41.77543299906],[-71.449333,41.77529499906],[-71.449379,41.77526099906],[-71.449448,41.77519199906],[-71.449593,41.77505899906],[-71.449638,41.77500899906],[-71.449707,41.77494799906],[-71.449837,41.77479199906],[-71.450241,41.77437999906],[-71.451042,41.77354799906],[-71.451256,41.77333099906]]]}}"}, +{"type": "blockgroup", "typeId": 137023, "areaId": 29017, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.447654,41.77182899906],[-71.447652,41.77178299906],[-71.447601,41.77170599906],[-71.447581,41.77165399906],[-71.447638,41.77159699906],[-71.447508,41.77144799906],[-71.447478,41.77135299906],[-71.447166,41.77136599906],[-71.446114,41.77138099906],[-71.445641,41.77141999906],[-71.445061,41.77148799906],[-71.444557,41.77153399906],[-71.444138,41.77157199906],[-71.443886,41.77159499906],[-71.443465,41.77161899906],[-71.443199,41.77163299906],[-71.442406,41.77168699906],[-71.441415,41.77175899906],[-71.440505,41.77181999906],[-71.439868,41.77186499906],[-71.439403,41.77190799906],[-71.439159,41.77191599906],[-71.438708,41.77194199906],[-71.436943,41.77204899906],[-71.436974,41.77225899906],[-71.436996,41.77235799906],[-71.43705,41.77273199906],[-71.437088,41.77295299906],[-71.437103,41.77307499906],[-71.437157,41.77340699906],[-71.437225,41.77386499906],[-71.437263,41.77408599906],[-71.437333,41.77457699906],[-71.437393,41.77477599906],[-71.439667,41.77461999906],[-71.440269,41.77457799906],[-71.441711,41.77448699906],[-71.442078,41.77445999906],[-71.443077,41.77439899906],[-71.443756,41.77435299906],[-71.443703,41.77394499906],[-71.443687,41.77366299906],[-71.445045,41.77357099906],[-71.445564,41.77354799906],[-71.445882,41.77369999906],[-71.445909,41.77361799906],[-71.445936,41.77356399906],[-71.446131,41.77337099906],[-71.44631,41.77323899906],[-71.446393,41.77313099906],[-71.446463,41.77308699906],[-71.446649,41.77302799906],[-71.446726,41.77299199906],[-71.446889,41.77290599906],[-71.44704,41.77278299906],[-71.447126,41.77265899906],[-71.44718,41.77252499906],[-71.447217,41.77246399906],[-71.447274,41.77240599906],[-71.447319,41.77234199906],[-71.447341,41.77228099906],[-71.447348,41.77222399906],[-71.447378,41.77216899906],[-71.447432,41.77211099906],[-71.447464,41.77205099906],[-71.447473,41.77199499906],[-71.447527,41.77195199906],[-71.447597,41.77191499906],[-71.447654,41.77182899906]]]}}"}, +{"type": "blockgroup", "typeId": 138001, "areaId": 29018, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.440697,41.76613599906],[-71.439224,41.76602199906],[-71.439026,41.76600299906],[-71.438667,41.76597599906],[-71.438606,41.76596799906],[-71.438454,41.76596499906],[-71.438416,41.76596099906],[-71.438339,41.76596799906],[-71.438309,41.76597999906],[-71.438271,41.76598699906],[-71.438141,41.76604499906],[-71.437988,41.76613599906],[-71.43737,41.76658999906],[-71.437035,41.76683399906],[-71.436974,41.76686899906],[-71.436829,41.76693699906],[-71.436676,41.76699399906],[-71.436134,41.76717799906],[-71.435959,41.76723099906],[-71.43586,41.76726199906],[-71.4356,41.76734199906],[-71.43515,41.76748999906],[-71.434998,41.76753999906],[-71.434837,41.76759299906],[-71.434685,41.76763199906],[-71.434624,41.76764299906],[-71.434372,41.76765399906],[-71.433586,41.76767699906],[-71.433388,41.76726199906],[-71.432983,41.76644899906],[-71.432205,41.76668499906],[-71.43187,41.76678499906],[-71.431534,41.76689099906],[-71.430851,41.76709799906],[-71.430648,41.76715999906],[-71.430214,41.76729199906],[-71.429915,41.76723299906],[-71.430253,41.76629899906],[-71.430984,41.76430499906],[-71.430995,41.76427699906],[-71.431007,41.76424799906],[-71.431697,41.76234499906],[-71.432076,41.76129899906],[-71.432097,41.76124299906],[-71.43235,41.76057399906],[-71.432503,41.76021599906],[-71.432686,41.75984599906],[-71.432767,41.75969699906],[-71.432884,41.75947599906],[-71.43291,41.75943299906],[-71.432968,41.75933499906],[-71.432916,41.75933199906],[-71.432833,41.75932699906],[-71.432675,41.75932699906],[-71.432374,41.75932799906],[-71.432196,41.75938299906],[-71.432053,41.75944399906],[-71.431932,41.75949799906],[-71.431642,41.75965799906],[-71.431443,41.75982899906],[-71.431275,41.76004599906],[-71.431107,41.76038899906],[-71.430969,41.76061699906],[-71.430817,41.76078799906],[-71.430557,41.76087899906],[-71.430522,41.76087799906],[-71.430298,41.76086799906],[-71.430081,41.76080999906],[-71.429945,41.76077299906],[-71.42989,41.76076099906],[-71.429864,41.76083799906],[-71.429843,41.76089599906],[-71.429295,41.76240699906],[-71.429094,41.76296099906],[-71.428812,41.76373999906],[-71.428324,41.76508599906],[-71.427877,41.76630799906],[-71.427771,41.76659599906],[-71.426652,41.76965699906],[-71.426263,41.77074699906],[-71.425975,41.77152499906],[-71.426136,41.77156099906],[-71.426236,41.77158099906],[-71.427634,41.77186199906],[-71.427467,41.77231999906],[-71.427383,41.77255999906],[-71.427696,41.77262099906],[-71.427933,41.77267099906],[-71.428284,41.77274299906],[-71.428818,41.77128599906],[-71.429703,41.77146899906],[-71.429924,41.77151099906],[-71.430588,41.77164799906],[-71.431488,41.77183199906],[-71.431778,41.77189299906],[-71.432365,41.77200699906],[-71.433075,41.77215199906],[-71.433243,41.77218999906],[-71.433792,41.77230499906],[-71.433891,41.77233899906],[-71.433937,41.77236199906],[-71.434006,41.77246899906],[-71.434029,41.77255999906],[-71.434029,41.77262899906],[-71.434013,41.77270899906],[-71.434647,41.77260599906],[-71.435127,41.77253299906],[-71.436157,41.77237699906],[-71.436775,41.77228499906],[-71.436974,41.77225899906],[-71.436943,41.77204899906],[-71.436905,41.77185399906],[-71.436897,41.77176699906],[-71.436897,41.77170199906],[-71.43692,41.77151899906],[-71.436951,41.77145399906],[-71.436981,41.77136199906],[-71.437035,41.77129399906],[-71.437096,41.77120199906],[-71.437172,41.77111099906],[-71.4375,41.77067199906],[-71.437943,41.77009599906],[-71.438393,41.76950099906],[-71.438858,41.76890199906],[-71.438934,41.76880599906],[-71.439209,41.76842899906],[-71.439232,41.76840199906],[-71.439331,41.76826099906],[-71.439644,41.76785699906],[-71.440033,41.76735299906],[-71.440109,41.76725399906],[-71.440224,41.76710499906],[-71.440308,41.76697199906],[-71.440456,41.76664799906],[-71.440468,41.76663199906],[-71.440697,41.76613599906]]]}}"}, +{"type": "blockgroup", "typeId": 138002, "areaId": 29019, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.445488,41.76767299906],[-71.445009,41.76750299906],[-71.444321,41.76724999906],[-71.442749,41.76669299906],[-71.442604,41.76664399906],[-71.442383,41.76656299906],[-71.441444,41.76622799906],[-71.44088,41.76601899906],[-71.440765,41.76597599906],[-71.440697,41.76613599906],[-71.440468,41.76663199906],[-71.440456,41.76664799906],[-71.440308,41.76697199906],[-71.440224,41.76710499906],[-71.440109,41.76725399906],[-71.440033,41.76735299906],[-71.439644,41.76785699906],[-71.439331,41.76826099906],[-71.439232,41.76840199906],[-71.439209,41.76842899906],[-71.438934,41.76880599906],[-71.438858,41.76890199906],[-71.438393,41.76950099906],[-71.437943,41.77009599906],[-71.4375,41.77067199906],[-71.437172,41.77111099906],[-71.437096,41.77120199906],[-71.437035,41.77129399906],[-71.436981,41.77136199906],[-71.436951,41.77145399906],[-71.43692,41.77151899906],[-71.436897,41.77170199906],[-71.436897,41.77176699906],[-71.436905,41.77185399906],[-71.436943,41.77204899906],[-71.438708,41.77194199906],[-71.439159,41.77191599906],[-71.439403,41.77190799906],[-71.439868,41.77186499906],[-71.440505,41.77181999906],[-71.441415,41.77175899906],[-71.442406,41.77168699906],[-71.443199,41.77163299906],[-71.443465,41.77161899906],[-71.443886,41.77159499906],[-71.444138,41.77157199906],[-71.443642,41.77135799906],[-71.444031,41.77074099906],[-71.444366,41.77021799906],[-71.444687,41.76973299906],[-71.444672,41.76968799906],[-71.444633,41.76962699906],[-71.444572,41.76953899906],[-71.444542,41.76944399906],[-71.44455,41.76934399906],[-71.444763,41.76892899906],[-71.445114,41.76829899906],[-71.445488,41.76767299906]]]}}"}, +{"type": "blockgroup", "typeId": 138003, "areaId": 29020, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.453776,41.77071599906],[-71.453665,41.77064399906],[-71.453611,41.77059899906],[-71.453565,41.77055299906],[-71.453508,41.77051399906],[-71.453427,41.77047299906],[-71.453109,41.77033999906],[-71.453019,41.77031399906],[-71.452918,41.77029099906],[-71.452838,41.77025999906],[-71.452768,41.77020899906],[-71.452723,41.77015899906],[-71.452654,41.77007999906],[-71.452591,41.77001799906],[-71.45234,41.76982799906],[-71.452243,41.76973299906],[-71.452195,41.76966199906],[-71.452152,41.76955699906],[-71.452116,41.76943099906],[-71.452091,41.76937799906],[-71.452047,41.76932299906],[-71.451938,41.76922099906],[-71.451907,41.76916499906],[-71.451857,41.76899299906],[-71.451857,41.76868999906],[-71.451847,41.76862799906],[-71.451822,41.76857199906],[-71.451789,41.76851999906],[-71.451749,41.76847299906],[-71.451702,41.76842799906],[-71.451644,41.76838799906],[-71.451575,41.76835399906],[-71.451494,41.76832399906],[-71.451264,41.76825999906],[-71.451163,41.76824299906],[-71.450961,41.76824099906],[-71.450856,41.76824799906],[-71.450795,41.76828199906],[-71.45075,41.76833399906],[-71.450667,41.76845399906],[-71.450593,41.76858299906],[-71.450536,41.76863999906],[-71.450458,41.76869199906],[-71.450377,41.76873399906],[-71.4503,41.76876399906],[-71.450257,41.76877099906],[-71.450208,41.76877899906],[-71.450131,41.76877699906],[-71.450049,41.76876399906],[-71.449907,41.76872199906],[-71.449841,41.76868799906],[-71.449784,41.76864799906],[-71.449716,41.76858599906],[-71.449673,41.76853899906],[-71.449609,41.76842299906],[-71.449531,41.76830299906],[-71.449484,41.76824899906],[-71.449445,41.76819599906],[-71.449429,41.76814099906],[-71.449437,41.76808499906],[-71.449466,41.76802999906],[-71.449607,41.76780499906],[-71.449587,41.76773799906],[-71.449546,41.76769099906],[-71.449492,41.76763899906],[-71.449443,41.76760099906],[-71.449295,41.76748499906],[-71.449078,41.76729599906],[-71.448901,41.76715999906],[-71.448838,41.76711899906],[-71.448768,41.76708699906],[-71.448689,41.76706799906],[-71.448597,41.76705699906],[-71.448519,41.76705299906],[-71.448442,41.76702799906],[-71.448435,41.76697199906],[-71.448436,41.76691599906],[-71.448465,41.76679799906],[-71.448467,41.76673999906],[-71.448452,41.76668699906],[-71.448381,41.76662299906],[-71.448178,41.76649999906],[-71.4481,41.76645899906],[-71.448013,41.76642599906],[-71.447773,41.76636899906],[-71.447706,41.76634599906],[-71.447638,41.76631299906],[-71.447583,41.76627299906],[-71.447538,41.76620799906],[-71.447547,41.76613099906],[-71.44758,41.76607899906],[-71.447667,41.76598699906],[-71.447699,41.76591799906],[-71.447683,41.76584799906],[-71.447653,41.76579399906],[-71.447603,41.76566799906],[-71.447589,41.76560699906],[-71.447615,41.76555499906],[-71.447616,41.76549399906],[-71.447544,41.76543299906],[-71.44739,41.76535899906],[-71.447327,41.76531599906],[-71.447277,41.76527299906],[-71.447228,41.76521599906],[-71.44722,41.76519199906],[-71.447211,41.76516199906],[-71.447189,41.76511899906],[-71.44709,41.76510999906],[-71.447046,41.76509899906],[-71.447004,41.76508899906],[-71.446942,41.76505299906],[-71.446889,41.76499699906],[-71.446863,41.76493099906],[-71.446867,41.76486099906],[-71.446891,41.76479499906],[-71.446926,41.76473399906],[-71.446953,41.76466499906],[-71.446925,41.76460899906],[-71.446845,41.76455899906],[-71.44669,41.76450899906],[-71.446584,41.76447499906],[-71.446487,41.76445699906],[-71.446397,41.76443099906],[-71.446335,41.76438899906],[-71.446285,41.76434299906],[-71.446163,41.76425199906],[-71.446123,41.76418999906],[-71.446095,41.76413699906],[-71.446005,41.76402199906],[-71.445943,41.76397199906],[-71.44585,41.76396699906],[-71.445752,41.76397799906],[-71.445659,41.76396199906],[-71.445581,41.76390799906],[-71.445539,41.76385699906],[-71.445508,41.76380899906],[-71.445376,41.76372599906],[-71.445349,41.76366699906],[-71.445337,41.76360399906],[-71.445303,41.76356599906],[-71.445234,41.76357299906],[-71.445144,41.76360799906],[-71.44504,41.76361899906],[-71.444969,41.76360199906],[-71.444896,41.76354699906],[-71.444889,41.76346399906],[-71.444909,41.76340599906],[-71.444919,41.76334999906],[-71.444919,41.76322099906],[-71.444895,41.76314499906],[-71.444856,41.76309499906],[-71.444803,41.76305799906],[-71.444704,41.76303499906],[-71.444618,41.76300799906],[-71.444569,41.76295599906],[-71.444566,41.76288399906],[-71.444534,41.76281199906],[-71.444488,41.76276599906],[-71.444255,41.76259699906],[-71.444199,41.76256099906],[-71.444095,41.76247399906],[-71.444023,41.76236899906],[-71.443967,41.76232899906],[-71.443905,41.76229599906],[-71.443807,41.76220999906],[-71.44377,41.76216199906],[-71.443747,41.76209999906],[-71.443748,41.76204499906],[-71.443825,41.76179199906],[-71.443828,41.76174199906],[-71.443852,41.76166699906],[-71.443883,41.76159999906],[-71.443872,41.76153199906],[-71.443846,41.76148099906],[-71.443757,41.76138599906],[-71.443685,41.76124699906],[-71.443621,41.76112299906],[-71.443613,41.76110399906],[-71.443605,41.76104299906],[-71.443612,41.76097999906],[-71.443698,41.76073899906],[-71.443691,41.76066399906],[-71.443647,41.76051399906],[-71.443583,41.76036599906],[-71.443557,41.76028799906],[-71.443528,41.76021999906],[-71.443426,41.76005899906],[-71.443358,41.75990499906],[-71.443298,41.75981999906],[-71.443146,41.75998299906],[-71.443085,41.76005599906],[-71.443016,41.76016199906],[-71.442924,41.76033399906],[-71.442879,41.76047099906],[-71.442833,41.76057399906],[-71.442802,41.76069599906],[-71.442764,41.76085999906],[-71.442696,41.76108899906],[-71.442635,41.76132199906],[-71.442467,41.76192899906],[-71.442429,41.76208899906],[-71.442375,41.76226799906],[-71.442345,41.76238999906],[-71.442299,41.76251999906],[-71.442223,41.76269899906],[-71.442178,41.76279199906],[-71.442108,41.76293899906],[-71.442024,41.76313799906],[-71.441971,41.76326399906],[-71.441856,41.76351299906],[-71.441742,41.76376299906],[-71.441635,41.76401099906],[-71.441467,41.76437399906],[-71.441338,41.76466399906],[-71.441177,41.76500299906],[-71.441101,41.76516299906],[-71.44104,41.76533099906],[-71.44091,41.76563299906],[-71.440765,41.76597599906],[-71.44088,41.76601899906],[-71.441444,41.76622799906],[-71.442383,41.76656299906],[-71.442604,41.76664399906],[-71.442749,41.76669299906],[-71.444321,41.76724999906],[-71.445009,41.76750299906],[-71.445488,41.76767299906],[-71.445114,41.76829899906],[-71.444763,41.76892899906],[-71.44455,41.76934399906],[-71.444542,41.76944399906],[-71.444572,41.76953899906],[-71.444633,41.76962699906],[-71.444672,41.76968799906],[-71.444687,41.76973299906],[-71.444366,41.77021799906],[-71.444031,41.77074099906],[-71.443642,41.77135799906],[-71.444138,41.77157199906],[-71.444557,41.77153399906],[-71.445061,41.77148799906],[-71.445641,41.77141999906],[-71.446114,41.77138099906],[-71.447166,41.77136599906],[-71.447478,41.77135299906],[-71.447624,41.77134699906],[-71.447792,41.77132399906],[-71.448204,41.77122499906],[-71.449234,41.77098799906],[-71.449295,41.77116399906],[-71.449448,41.77164499906],[-71.449631,41.77228899906],[-71.449707,41.77247599906],[-71.449791,41.77255199906],[-71.450462,41.77290299906],[-71.450768,41.77307099906],[-71.451256,41.77333099906],[-71.451549,41.77302799906],[-71.451721,41.77284999906],[-71.452202,41.77234999906],[-71.452682,41.77185799906],[-71.453224,41.77129399906],[-71.453346,41.77115999906],[-71.453776,41.77071599906]]]}}"}, +{"type": "blockgroup", "typeId": 138004, "areaId": 29021, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.443298,41.75981999906],[-71.44324,41.75973699906],[-71.443144,41.75957499906],[-71.443032,41.75941599906],[-71.442952,41.75923999906],[-71.44291,41.75916599906],[-71.442865,41.75911399906],[-71.442818,41.75906999906],[-71.442623,41.75894599906],[-71.442513,41.75885099906],[-71.44246,41.75879699906],[-71.442344,41.75863299906],[-71.44229,41.75857199906],[-71.442137,41.75842999906],[-71.442083,41.75838599906],[-71.442035,41.75833699906],[-71.44198,41.75829699906],[-71.441913,41.75825899906],[-71.441794,41.75821199906],[-71.44176,41.75820299906],[-71.441625,41.75817099906],[-71.441539,41.75814299906],[-71.441409,41.75811499906],[-71.441362,41.75810399906],[-71.441211,41.75805499906],[-71.44113,41.75803499906],[-71.441051,41.75802399906],[-71.440982,41.75800899906],[-71.440896,41.75795799906],[-71.44081,41.75796199906],[-71.440574,41.75791199906],[-71.440558,41.75793199906],[-71.440398,41.75805299906],[-71.440096,41.75807699906],[-71.439612,41.75803399906],[-71.439303,41.75787799906],[-71.439118,41.75782899906],[-71.438829,41.75782899906],[-71.438508,41.75794299906],[-71.438218,41.75810199906],[-71.438111,41.75828499906],[-71.437989,41.75896999906],[-71.437927,41.75917599906],[-71.437836,41.75943899906],[-71.437698,41.75966699906],[-71.437561,41.75982699906],[-71.437377,41.75990699906],[-71.437164,41.75996399906],[-71.436904,41.75997499906],[-71.436599,41.75994099906],[-71.436401,41.75984899906],[-71.436249,41.75975799906],[-71.436096,41.75971199906],[-71.435883,41.75967699906],[-71.435593,41.75972299906],[-71.435242,41.75979099906],[-71.434998,41.75988299906],[-71.434845,41.75997399906],[-71.434601,41.76011599906],[-71.434494,41.76024199906],[-71.434387,41.76039099906],[-71.43426,41.76059199906],[-71.434134,41.76078899906],[-71.434069,41.76093599906],[-71.434051,41.76098399906],[-71.434005,41.76123499906],[-71.433958,41.76136199906],[-71.433775,41.76144099906],[-71.433531,41.76145199906],[-71.433348,41.76137199906],[-71.433167,41.76123499906],[-71.433013,41.76107499906],[-71.432891,41.76089199906],[-71.432892,41.76059499906],[-71.432938,41.76040199906],[-71.43298,41.76031299906],[-71.433045,41.76019599906],[-71.433197,41.76005799906],[-71.43335,41.75990899906],[-71.433396,41.75976199906],[-71.433394,41.75967699906],[-71.433395,41.75961299906],[-71.433335,41.75949899906],[-71.433244,41.75940799906],[-71.433186,41.75938399906],[-71.433076,41.75933899906],[-71.432968,41.75933499906],[-71.43291,41.75943299906],[-71.432884,41.75947599906],[-71.432767,41.75969699906],[-71.432686,41.75984599906],[-71.432503,41.76021599906],[-71.43235,41.76057399906],[-71.432097,41.76124299906],[-71.432076,41.76129899906],[-71.431697,41.76234499906],[-71.431007,41.76424799906],[-71.430995,41.76427699906],[-71.430984,41.76430499906],[-71.430253,41.76629899906],[-71.429915,41.76723299906],[-71.430214,41.76729199906],[-71.430648,41.76715999906],[-71.430851,41.76709799906],[-71.431534,41.76689099906],[-71.43187,41.76678499906],[-71.432205,41.76668499906],[-71.432983,41.76644899906],[-71.433388,41.76726199906],[-71.433586,41.76767699906],[-71.434372,41.76765399906],[-71.434624,41.76764299906],[-71.434685,41.76763199906],[-71.434837,41.76759299906],[-71.434998,41.76753999906],[-71.43515,41.76748999906],[-71.4356,41.76734199906],[-71.43586,41.76726199906],[-71.435959,41.76723099906],[-71.436134,41.76717799906],[-71.436676,41.76699399906],[-71.436829,41.76693699906],[-71.436974,41.76686899906],[-71.437035,41.76683399906],[-71.43737,41.76658999906],[-71.437988,41.76613599906],[-71.438141,41.76604499906],[-71.438271,41.76598699906],[-71.438309,41.76597999906],[-71.438339,41.76596799906],[-71.438416,41.76596099906],[-71.438454,41.76596499906],[-71.438606,41.76596799906],[-71.438667,41.76597599906],[-71.439026,41.76600299906],[-71.439224,41.76602199906],[-71.440697,41.76613599906],[-71.440765,41.76597599906],[-71.44091,41.76563299906],[-71.44104,41.76533099906],[-71.441101,41.76516299906],[-71.441177,41.76500299906],[-71.441338,41.76466399906],[-71.441467,41.76437399906],[-71.441635,41.76401099906],[-71.441742,41.76376299906],[-71.441856,41.76351299906],[-71.441971,41.76326399906],[-71.442024,41.76313799906],[-71.442108,41.76293899906],[-71.442178,41.76279199906],[-71.442223,41.76269899906],[-71.442299,41.76251999906],[-71.442345,41.76238999906],[-71.442375,41.76226799906],[-71.442429,41.76208899906],[-71.442467,41.76192899906],[-71.442635,41.76132199906],[-71.442696,41.76108899906],[-71.442764,41.76085999906],[-71.442802,41.76069599906],[-71.442833,41.76057399906],[-71.442879,41.76047099906],[-71.442924,41.76033399906],[-71.443016,41.76016199906],[-71.443085,41.76005599906],[-71.443146,41.75998299906],[-71.443298,41.75981999906]]]}}"}, +{"type": "blockgroup", "typeId": 139001, "areaId": 29022, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.458778,41.76537299906],[-71.458557,41.76523599906],[-71.458504,41.76515599906],[-71.458458,41.76509899906],[-71.458466,41.76495399906],[-71.45845,41.76455299906],[-71.45845,41.76414099906],[-71.458298,41.76414499906],[-71.458191,41.76412599906],[-71.458038,41.76407999906],[-71.457939,41.76401899906],[-71.457024,41.76353499906],[-71.456917,41.76344699906],[-71.456772,41.76328299906],[-71.456558,41.76291299906],[-71.456169,41.76304599906],[-71.455658,41.76323599906],[-71.455639,41.76329399906],[-71.455587,41.76332799906],[-71.455521,41.76333599906],[-71.455448,41.76331799906],[-71.455011,41.76345299906],[-71.45491,41.76348499906],[-71.454781,41.76353499906],[-71.454079,41.76378599906],[-71.453369,41.76402299906],[-71.452682,41.76415999906],[-71.452637,41.76417199906],[-71.452118,41.76420599906],[-71.451805,41.76421399906],[-71.451492,41.76418299906],[-71.451408,41.76417499906],[-71.450844,41.76409499906],[-71.450806,41.76408799906],[-71.450348,41.76396199906],[-71.450218,41.76391999906],[-71.450119,41.76388899906],[-71.449684,41.76370199906],[-71.449249,41.76343499906],[-71.448898,41.76318399906],[-71.448341,41.76263799906],[-71.447731,41.76196699906],[-71.447624,41.76185599906],[-71.447273,41.76148199906],[-71.446632,41.76087599906],[-71.446304,41.76060499906],[-71.446175,41.76056299906],[-71.445976,41.76054399906],[-71.445618,41.76059299906],[-71.445038,41.76069599906],[-71.444664,41.76093699906],[-71.444572,41.76102099906],[-71.44455,41.76104699906],[-71.444397,41.76117699906],[-71.444305,41.76122999906],[-71.444206,41.76126499906],[-71.444107,41.76127999906],[-71.443954,41.76128399906],[-71.443878,41.76127999906],[-71.443771,41.76126499906],[-71.443726,41.76125299906],[-71.443685,41.76124699906],[-71.443757,41.76138599906],[-71.443846,41.76148099906],[-71.443872,41.76153199906],[-71.443883,41.76159999906],[-71.443852,41.76166699906],[-71.443828,41.76174199906],[-71.443825,41.76179199906],[-71.443748,41.76204499906],[-71.443747,41.76209999906],[-71.44377,41.76216199906],[-71.443807,41.76220999906],[-71.443905,41.76229599906],[-71.443967,41.76232899906],[-71.444023,41.76236899906],[-71.444095,41.76247399906],[-71.444199,41.76256099906],[-71.444255,41.76259699906],[-71.444488,41.76276599906],[-71.444534,41.76281199906],[-71.444566,41.76288399906],[-71.444569,41.76295599906],[-71.444618,41.76300799906],[-71.444704,41.76303499906],[-71.444803,41.76305799906],[-71.444856,41.76309499906],[-71.444895,41.76314499906],[-71.444919,41.76322099906],[-71.444919,41.76334999906],[-71.444909,41.76340599906],[-71.444889,41.76346399906],[-71.444896,41.76354699906],[-71.444969,41.76360199906],[-71.44504,41.76361899906],[-71.445144,41.76360799906],[-71.445234,41.76357299906],[-71.445303,41.76356599906],[-71.445337,41.76360399906],[-71.445349,41.76366699906],[-71.445376,41.76372599906],[-71.445508,41.76380899906],[-71.445539,41.76385699906],[-71.445581,41.76390799906],[-71.445659,41.76396199906],[-71.445752,41.76397799906],[-71.44585,41.76396699906],[-71.445943,41.76397199906],[-71.446005,41.76402199906],[-71.446095,41.76413699906],[-71.446123,41.76418999906],[-71.446163,41.76425199906],[-71.446285,41.76434299906],[-71.446335,41.76438899906],[-71.446397,41.76443099906],[-71.446487,41.76445699906],[-71.446584,41.76447499906],[-71.44669,41.76450899906],[-71.446845,41.76455899906],[-71.446925,41.76460899906],[-71.446953,41.76466499906],[-71.446926,41.76473399906],[-71.446891,41.76479499906],[-71.446867,41.76486099906],[-71.446863,41.76493099906],[-71.446889,41.76499699906],[-71.446942,41.76505299906],[-71.447004,41.76508899906],[-71.447046,41.76509899906],[-71.44709,41.76510999906],[-71.447189,41.76511899906],[-71.447211,41.76516199906],[-71.44722,41.76519199906],[-71.447228,41.76521599906],[-71.447277,41.76527299906],[-71.447327,41.76531599906],[-71.44739,41.76535899906],[-71.447544,41.76543299906],[-71.447616,41.76549399906],[-71.447615,41.76555499906],[-71.447589,41.76560699906],[-71.447603,41.76566799906],[-71.447653,41.76579399906],[-71.447683,41.76584799906],[-71.447699,41.76591799906],[-71.447667,41.76598699906],[-71.44758,41.76607899906],[-71.447547,41.76613099906],[-71.447538,41.76620799906],[-71.447583,41.76627299906],[-71.447638,41.76631299906],[-71.447706,41.76634599906],[-71.447773,41.76636899906],[-71.448013,41.76642599906],[-71.4481,41.76645899906],[-71.448178,41.76649999906],[-71.448381,41.76662299906],[-71.448452,41.76668699906],[-71.448467,41.76673999906],[-71.448465,41.76679799906],[-71.448436,41.76691599906],[-71.448435,41.76697199906],[-71.448442,41.76702799906],[-71.448519,41.76705299906],[-71.448597,41.76705699906],[-71.448689,41.76706799906],[-71.448768,41.76708699906],[-71.448838,41.76711899906],[-71.448901,41.76715999906],[-71.449078,41.76729599906],[-71.449295,41.76748499906],[-71.449443,41.76760099906],[-71.449492,41.76763899906],[-71.449546,41.76769099906],[-71.449587,41.76773799906],[-71.449607,41.76780499906],[-71.449466,41.76802999906],[-71.449437,41.76808499906],[-71.449429,41.76814099906],[-71.449445,41.76819599906],[-71.449484,41.76824899906],[-71.449531,41.76830299906],[-71.449609,41.76842299906],[-71.449673,41.76853899906],[-71.449716,41.76858599906],[-71.449784,41.76864799906],[-71.449841,41.76868799906],[-71.449907,41.76872199906],[-71.450049,41.76876399906],[-71.450131,41.76877699906],[-71.450208,41.76877899906],[-71.450257,41.76877099906],[-71.4503,41.76876399906],[-71.450377,41.76873399906],[-71.450458,41.76869199906],[-71.450536,41.76863999906],[-71.450593,41.76858299906],[-71.450667,41.76845399906],[-71.45075,41.76833399906],[-71.450795,41.76828199906],[-71.450856,41.76824799906],[-71.450961,41.76824099906],[-71.451163,41.76824299906],[-71.451264,41.76825999906],[-71.451494,41.76832399906],[-71.451575,41.76835399906],[-71.451644,41.76838799906],[-71.451702,41.76842799906],[-71.451749,41.76847299906],[-71.451789,41.76851999906],[-71.451822,41.76857199906],[-71.451847,41.76862799906],[-71.451857,41.76868999906],[-71.451857,41.76899299906],[-71.451907,41.76916499906],[-71.451938,41.76922099906],[-71.452047,41.76932299906],[-71.452091,41.76937799906],[-71.452116,41.76943099906],[-71.452152,41.76955699906],[-71.452195,41.76966199906],[-71.452243,41.76973299906],[-71.45234,41.76982799906],[-71.452591,41.77001799906],[-71.452654,41.77007999906],[-71.452723,41.77015899906],[-71.452768,41.77020899906],[-71.452838,41.77025999906],[-71.452918,41.77029099906],[-71.453019,41.77031399906],[-71.453109,41.77033999906],[-71.453427,41.77047299906],[-71.453508,41.77051399906],[-71.453565,41.77055299906],[-71.453611,41.77059899906],[-71.453665,41.77064399906],[-71.453776,41.77071599906],[-71.454597,41.76986699906],[-71.455376,41.76905099906],[-71.455876,41.76848799906],[-71.456333,41.76802599906],[-71.45649,41.76787599906],[-71.457047,41.76732599906],[-71.457703,41.76655999906],[-71.458061,41.76619299906],[-71.458359,41.76587699906],[-71.458656,41.76556399906],[-71.458778,41.76537299906]]]}}"}, +{"type": "blockgroup", "typeId": 139002, "areaId": 29023, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.457024,41.76164999906],[-71.457016,41.76160399906],[-71.456978,41.76145899906],[-71.456902,41.76136399906],[-71.456787,41.76126899906],[-71.456734,41.76118099906],[-71.456657,41.76125699906],[-71.456505,41.76128399906],[-71.455681,41.76127199906],[-71.455627,41.76127199906],[-71.455437,41.76125699906],[-71.455246,41.76124199906],[-71.454964,41.76120399906],[-71.454819,41.76116199906],[-71.45459,41.76106999906],[-71.454277,41.76089499906],[-71.454079,41.76071899906],[-71.453865,41.76048299906],[-71.45369,41.76034499906],[-71.453484,41.76024999906],[-71.45314,41.76014699906],[-71.452621,41.76000599906],[-71.452393,41.75993299906],[-71.452309,41.75988799906],[-71.45224,41.75979999906],[-71.452156,41.75965899906],[-71.452003,41.75950599906],[-71.451599,41.75922799906],[-71.45134,41.75904099906],[-71.451088,41.75890699906],[-71.450714,41.75874299906],[-71.450554,41.75867799906],[-71.450157,41.75852599906],[-71.449768,41.75837299906],[-71.449562,41.75827799906],[-71.449303,41.75813699906],[-71.44912,41.75800699906],[-71.448952,41.75788899906],[-71.448654,41.75766799906],[-71.44838,41.75747299906],[-71.447952,41.75774399906],[-71.44767,41.75786199906],[-71.447026,41.75813299906],[-71.446899,41.75818599906],[-71.446487,41.75834299906],[-71.446075,41.75848399906],[-71.445595,41.75863999906],[-71.445534,41.75866299906],[-71.445099,41.75880799906],[-71.444778,41.75888399906],[-71.444374,41.75869399906],[-71.44418,41.75889399906],[-71.443993,41.75908999906],[-71.443459,41.75964699906],[-71.443298,41.75981999906],[-71.443358,41.75990499906],[-71.443426,41.76005899906],[-71.443528,41.76021999906],[-71.443557,41.76028799906],[-71.443583,41.76036599906],[-71.443647,41.76051399906],[-71.443691,41.76066399906],[-71.443698,41.76073899906],[-71.443612,41.76097999906],[-71.443605,41.76104299906],[-71.443613,41.76110399906],[-71.443621,41.76112299906],[-71.443685,41.76124699906],[-71.443726,41.76125299906],[-71.443771,41.76126499906],[-71.443878,41.76127999906],[-71.443954,41.76128399906],[-71.444107,41.76127999906],[-71.444206,41.76126499906],[-71.444305,41.76122999906],[-71.444397,41.76117699906],[-71.44455,41.76104699906],[-71.444572,41.76102099906],[-71.444664,41.76093699906],[-71.445038,41.76069599906],[-71.445618,41.76059299906],[-71.445976,41.76054399906],[-71.446175,41.76056299906],[-71.446304,41.76060499906],[-71.446632,41.76087599906],[-71.447273,41.76148199906],[-71.447624,41.76185599906],[-71.447731,41.76196699906],[-71.448341,41.76263799906],[-71.448898,41.76318399906],[-71.449249,41.76343499906],[-71.449684,41.76370199906],[-71.450119,41.76388899906],[-71.450218,41.76391999906],[-71.450348,41.76396199906],[-71.450806,41.76408799906],[-71.450844,41.76409499906],[-71.451408,41.76417499906],[-71.451492,41.76418299906],[-71.451805,41.76421399906],[-71.452118,41.76420599906],[-71.452637,41.76417199906],[-71.452682,41.76415999906],[-71.453369,41.76402299906],[-71.454079,41.76378599906],[-71.454781,41.76353499906],[-71.45491,41.76348499906],[-71.455011,41.76345299906],[-71.455448,41.76331799906],[-71.455521,41.76333599906],[-71.455587,41.76332799906],[-71.455639,41.76329399906],[-71.455658,41.76323599906],[-71.456169,41.76304599906],[-71.456558,41.76291299906],[-71.456627,41.76288599906],[-71.456902,41.76275999906],[-71.456955,41.76268399906],[-71.457008,41.76244399906],[-71.457008,41.76234099906],[-71.457024,41.76192499906],[-71.457024,41.76164999906]]]}}"}, +{"type": "blockgroup", "typeId": 139003, "areaId": 29024, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.461498,41.76278799906],[-71.461456,41.76224899906],[-71.461445,41.76210599906],[-71.461349,41.76081499906],[-71.461304,41.76011699906],[-71.461263,41.75975399906],[-71.461243,41.75962099906],[-71.461212,41.75951799906],[-71.461166,41.75941799906],[-71.461121,41.75934199906],[-71.461014,41.75920099906],[-71.460915,41.75910599906],[-71.460808,41.75901799906],[-71.460297,41.75856399906],[-71.460179,41.75846899906],[-71.460166,41.75845099906],[-71.460091,41.75838399906],[-71.459778,41.75807599906],[-71.459564,41.75787699906],[-71.459167,41.75745799906],[-71.458969,41.75727499906],[-71.458733,41.75704599906],[-71.458565,41.75689699906],[-71.458542,41.75687399906],[-71.458237,41.75659199906],[-71.45787,41.75626399906],[-71.457672,41.75606899906],[-71.457588,41.75598499906],[-71.457108,41.75553499906],[-71.456673,41.75519199906],[-71.456413,41.75500499906],[-71.455925,41.75472599906],[-71.455391,41.75443599906],[-71.45507,41.75425299906],[-71.454643,41.75401299906],[-71.453987,41.75365799906],[-71.453459,41.75335399906],[-71.452896,41.75304399906],[-71.452301,41.75272399906],[-71.452156,41.75263999906],[-71.45137,41.75222399906],[-71.451614,41.75172799906],[-71.451714,41.75134299906],[-71.451721,41.75126299906],[-71.451729,41.75121699906],[-71.451759,41.75093799906],[-71.451775,41.75080499906],[-71.45179,41.75066399906],[-71.451828,41.75023699906],[-71.451857,41.75011499906],[-71.451887,41.74998999906],[-71.451668,41.74994999906],[-71.451124,41.74983899906],[-71.448547,41.74930999906],[-71.447906,41.74917199906],[-71.447556,41.74909599906],[-71.447159,41.74901199906],[-71.446691,41.74891799906],[-71.446615,41.74890199906],[-71.446538,41.74888699906],[-71.446616,41.74907199906],[-71.446615,41.74952699906],[-71.446606,41.74966399906],[-71.446594,41.74967999906],[-71.446569,41.74990499906],[-71.44631,41.75025899906],[-71.445974,41.75055599906],[-71.445593,41.75074999906],[-71.444982,41.75089799906],[-71.444677,41.75093299906],[-71.444418,41.75087499906],[-71.444174,41.75074999906],[-71.443976,41.75066899906],[-71.443732,41.75062399906],[-71.443213,41.75070299906],[-71.442435,41.75098899906],[-71.442326,41.75104399906],[-71.441748,41.75134199906],[-71.441625,41.75142899906],[-71.441451,41.75155399906],[-71.441277,41.75167799906],[-71.441092,41.75180999906],[-71.440619,41.75215299906],[-71.440374,41.75242699906],[-71.440191,41.75276899906],[-71.440191,41.75291799906],[-71.440313,41.75321499906],[-71.440465,41.75347599906],[-71.440566,41.75361899906],[-71.440587,41.75364899906],[-71.44068,41.75378599906],[-71.440998,41.75425499906],[-71.44112,41.75451699906],[-71.441165,41.75471199906],[-71.441152,41.75477099906],[-71.44112,41.75491699906],[-71.440967,41.75508799906],[-71.440799,41.75521399906],[-71.440639,41.75525399906],[-71.440524,41.75528199906],[-71.44028,41.75529399906],[-71.439685,41.75526999906],[-71.439533,41.75530499906],[-71.439456,41.75541899906],[-71.43938,41.75568199906],[-71.439302,41.75590299906],[-71.439288,41.75594399906],[-71.439196,41.75619499906],[-71.43912,41.75638999906],[-71.439196,41.75660699906],[-71.439348,41.75675499906],[-71.439655,41.75693399906],[-71.439854,41.75701999906],[-71.440169,41.75718399906],[-71.440412,41.75730499906],[-71.440551,41.75741899906],[-71.440654,41.75764199906],[-71.440662,41.75779499906],[-71.440574,41.75791199906],[-71.44081,41.75796199906],[-71.440896,41.75795799906],[-71.440982,41.75800899906],[-71.441051,41.75802399906],[-71.44113,41.75803499906],[-71.441211,41.75805499906],[-71.441362,41.75810399906],[-71.441409,41.75811499906],[-71.441539,41.75814299906],[-71.441625,41.75817099906],[-71.44176,41.75820299906],[-71.441794,41.75821199906],[-71.441913,41.75825899906],[-71.44198,41.75829699906],[-71.442035,41.75833699906],[-71.442083,41.75838599906],[-71.442137,41.75842999906],[-71.44229,41.75857199906],[-71.442344,41.75863299906],[-71.44246,41.75879699906],[-71.442513,41.75885099906],[-71.442623,41.75894599906],[-71.442818,41.75906999906],[-71.442865,41.75911399906],[-71.44291,41.75916599906],[-71.442952,41.75923999906],[-71.443032,41.75941599906],[-71.443144,41.75957499906],[-71.44324,41.75973699906],[-71.443298,41.75981999906],[-71.443459,41.75964699906],[-71.443993,41.75908999906],[-71.44418,41.75889399906],[-71.444374,41.75869399906],[-71.444778,41.75888399906],[-71.445099,41.75880799906],[-71.445534,41.75866299906],[-71.445595,41.75863999906],[-71.446075,41.75848399906],[-71.446487,41.75834299906],[-71.446899,41.75818599906],[-71.447026,41.75813299906],[-71.44767,41.75786199906],[-71.447952,41.75774399906],[-71.44838,41.75747299906],[-71.448654,41.75766799906],[-71.448952,41.75788899906],[-71.44912,41.75800699906],[-71.449303,41.75813699906],[-71.449562,41.75827799906],[-71.449768,41.75837299906],[-71.450157,41.75852599906],[-71.450554,41.75867799906],[-71.450714,41.75874299906],[-71.451088,41.75890699906],[-71.45134,41.75904099906],[-71.451599,41.75922799906],[-71.452003,41.75950599906],[-71.452156,41.75965899906],[-71.45224,41.75979999906],[-71.452309,41.75988799906],[-71.452393,41.75993299906],[-71.452621,41.76000599906],[-71.45314,41.76014699906],[-71.453484,41.76024999906],[-71.45369,41.76034499906],[-71.453865,41.76048299906],[-71.454079,41.76071899906],[-71.454277,41.76089499906],[-71.45459,41.76106999906],[-71.454819,41.76116199906],[-71.454964,41.76120399906],[-71.455246,41.76124199906],[-71.455437,41.76125699906],[-71.455627,41.76127199906],[-71.455681,41.76127199906],[-71.456505,41.76128399906],[-71.456657,41.76125699906],[-71.456734,41.76118099906],[-71.456787,41.76126899906],[-71.456902,41.76136399906],[-71.456978,41.76145899906],[-71.457016,41.76160399906],[-71.457024,41.76164999906],[-71.457024,41.76192499906],[-71.457008,41.76234099906],[-71.457008,41.76244399906],[-71.456955,41.76268399906],[-71.456902,41.76275999906],[-71.456627,41.76288599906],[-71.456558,41.76291299906],[-71.456772,41.76328299906],[-71.456917,41.76344699906],[-71.457024,41.76353499906],[-71.457939,41.76401899906],[-71.458038,41.76407999906],[-71.458191,41.76412599906],[-71.458298,41.76414499906],[-71.45845,41.76414099906],[-71.45845,41.76455299906],[-71.458466,41.76495399906],[-71.458458,41.76509899906],[-71.458504,41.76515599906],[-71.458557,41.76523599906],[-71.458778,41.76537299906],[-71.458931,41.76515199906],[-71.458939,41.76513299906],[-71.459018,41.76515899906],[-71.459274,41.76523999906],[-71.459335,41.76510199906],[-71.459541,41.76474799906],[-71.4599,41.76435899906],[-71.460381,41.76385899906],[-71.46051,41.76374399906],[-71.460838,41.76344699906],[-71.461112,41.76327099906],[-71.461395,41.76311999906],[-71.461468,41.76296399906],[-71.461492,41.76287799906],[-71.461498,41.76278799906]]]}}"}, +{"type": "blockgroup", "typeId": 140001, "areaId": 29025, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.440863,41.78140799906],[-71.440028,41.78094399906],[-71.439886,41.78086899906],[-71.438942,41.78033799906],[-71.438728,41.78021999906],[-71.437363,41.77946099906],[-71.437164,41.77934599906],[-71.436897,41.77922799906],[-71.436836,41.77920899906],[-71.436783,41.77918599906],[-71.436584,41.77912499906],[-71.435837,41.77894199906],[-71.435638,41.77902599906],[-71.435623,41.77905299906],[-71.435143,41.77930799906],[-71.434578,41.77961699906],[-71.434311,41.77976199906],[-71.433868,41.78001399906],[-71.433708,41.78010199906],[-71.433174,41.78042199906],[-71.432422,41.78091899906],[-71.431839,41.78128099906],[-71.431549,41.78147099906],[-71.431335,41.78161999906],[-71.43119,41.78173399906],[-71.431046,41.78186399906],[-71.430977,41.78193999906],[-71.430855,41.78210399906],[-71.430817,41.78216899906],[-71.430771,41.78224899906],[-71.43071,41.78239399906],[-71.430666,41.78254099906],[-71.430649,41.78259699906],[-71.430641,41.78266499906],[-71.430641,41.78287299906],[-71.430649,41.78288999906],[-71.430663,41.78296299906],[-71.430679,41.78306199906],[-71.430687,41.78309999906],[-71.430847,41.78358499906],[-71.430901,41.78376399906],[-71.430923,41.78385199906],[-71.431068,41.78429399906],[-71.431114,41.78444699906],[-71.431213,41.78476299906],[-71.43129,41.78504599906],[-71.431305,41.78509099906],[-71.431374,41.78536599906],[-71.431435,41.78559899906],[-71.431473,41.78572799906],[-71.431564,41.78608299906],[-71.431603,41.78625399906],[-71.431702,41.78624599906],[-71.433235,41.78631599906],[-71.433296,41.78631199906],[-71.433571,41.78629199906],[-71.433676,41.78629499906],[-71.433729,41.78629599906],[-71.434046,41.78630699906],[-71.434127,41.78624899906],[-71.434622,41.78591099906],[-71.434806,41.78578699906],[-71.434951,41.78567699906],[-71.435067,41.78559099906],[-71.435135,41.78554299906],[-71.43565,41.78516399906],[-71.435906,41.78497899906],[-71.436177,41.78478799906],[-71.436298,41.78469799906],[-71.436923,41.78424399906],[-71.437541,41.78379699906],[-71.438182,41.78333599906],[-71.438804,41.78288399906],[-71.439444,41.78241999906],[-71.44007,41.78197699906],[-71.440863,41.78140799906]]]}}"}, +{"type": "blockgroup", "typeId": 140002, "areaId": 29026, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.446022,41.78036499906],[-71.445221,41.78005599906],[-71.44445,41.77975799906],[-71.443596,41.77944199906],[-71.443141,41.77979499906],[-71.442602,41.78015299906],[-71.442554,41.78019399906],[-71.442142,41.78046799906],[-71.442063,41.78053399906],[-71.441524,41.78092799906],[-71.441454,41.78097699906],[-71.440863,41.78140799906],[-71.44007,41.78197699906],[-71.439444,41.78241999906],[-71.438804,41.78288399906],[-71.438182,41.78333599906],[-71.437541,41.78379699906],[-71.436923,41.78424399906],[-71.436298,41.78469799906],[-71.436177,41.78478799906],[-71.435906,41.78497899906],[-71.43565,41.78516399906],[-71.435135,41.78554299906],[-71.435159,41.78556299906],[-71.43544,41.78580099906],[-71.436592,41.78620099906],[-71.43782,41.78663599906],[-71.438789,41.78698699906],[-71.439529,41.78725799906],[-71.441385,41.78773699906],[-71.44146,41.78768299906],[-71.441508,41.78763799906],[-71.44151,41.78757999906],[-71.441531,41.78751999906],[-71.441615,41.78742399906],[-71.441683,41.78738499906],[-71.441759,41.78735899906],[-71.441844,41.78733999906],[-71.441933,41.78733999906],[-71.442008,41.78737499906],[-71.442087,41.78740399906],[-71.442174,41.78741799906],[-71.442415,41.78742999906],[-71.442492,41.78744499906],[-71.442582,41.78746899906],[-71.442663,41.78749899906],[-71.442727,41.78752899906],[-71.44279,41.78756599906],[-71.442841,41.78761899906],[-71.442876,41.78773499906],[-71.442917,41.78779499906],[-71.442986,41.78782699906],[-71.443062,41.78785099906],[-71.443296,41.78789999906],[-71.4434,41.78792199906],[-71.443508,41.78793999906],[-71.443592,41.78795499906],[-71.443607,41.78795799906],[-71.443623,41.78795999906],[-71.443657,41.78775799906],[-71.443832,41.78711699906],[-71.443947,41.78671599906],[-71.444153,41.78596499906],[-71.444389,41.78511399906],[-71.444572,41.78446999906],[-71.444778,41.78370999906],[-71.444992,41.78295499906],[-71.445129,41.78240999906],[-71.445251,41.78195999906],[-71.44532,41.78174199906],[-71.445404,41.78148699906],[-71.445541,41.78111599906],[-71.445595,41.78096799906],[-71.445724,41.78076199906],[-71.446022,41.78036499906]]]}}"}, +{"type": "blockgroup", "typeId": 140003, "areaId": 29027, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.452484,41.78996299906],[-71.452477,41.78989799906],[-71.452441,41.78975899906],[-71.452425,41.78967299906],[-71.452415,41.78964999906],[-71.45237,41.78945199906],[-71.452347,41.78938299906],[-71.452301,41.78927999906],[-71.452072,41.78883699906],[-71.452065,41.78881499906],[-71.452011,41.78871499906],[-71.451973,41.78861999906],[-71.451927,41.78852799906],[-71.451889,41.78843299906],[-71.451843,41.78834499906],[-71.451805,41.78825399906],[-71.451775,41.78816599906],[-71.451736,41.78809699906],[-71.451714,41.78802899906],[-71.451683,41.78795999906],[-71.451637,41.78773099906],[-71.45163,41.78762099906],[-71.451607,41.78742599906],[-71.451538,41.78698299906],[-71.451508,41.78673899906],[-71.451469,41.78651799906],[-71.45137,41.78581199906],[-71.451332,41.78550299906],[-71.451309,41.78536599906],[-71.45121,41.78452299906],[-71.45118,41.78424499906],[-71.451134,41.78388599906],[-71.451096,41.78387799906],[-71.450523,41.78371799906],[-71.450356,41.78366899906],[-71.449707,41.78348899906],[-71.449532,41.78343999906],[-71.448891,41.78326399906],[-71.448051,41.78303899906],[-71.447533,41.78289399906],[-71.446999,41.78277999906],[-71.446831,41.78274499906],[-71.446617,41.78269999906],[-71.445999,41.78258099906],[-71.445732,41.78252799906],[-71.445305,41.78244799906],[-71.445129,41.78240999906],[-71.444992,41.78295499906],[-71.444778,41.78370999906],[-71.444572,41.78446999906],[-71.444389,41.78511399906],[-71.444153,41.78596499906],[-71.443947,41.78671599906],[-71.443832,41.78711699906],[-71.443657,41.78775799906],[-71.443623,41.78795999906],[-71.443656,41.78796399906],[-71.443678,41.78796599906],[-71.443857,41.78796099906],[-71.443945,41.78797999906],[-71.44403,41.78800399906],[-71.444123,41.78801799906],[-71.444207,41.78804699906],[-71.444243,41.78806799906],[-71.444272,41.78808499906],[-71.4443,41.78811199906],[-71.444322,41.78813399906],[-71.444374,41.78817599906],[-71.444425,41.78822499906],[-71.444507,41.78833299906],[-71.444536,41.78838399906],[-71.444591,41.78843899906],[-71.444656,41.78846999906],[-71.444744,41.78849699906],[-71.444826,41.78850999906],[-71.445053,41.78856199906],[-71.445199,41.78861799906],[-71.445323,41.78869999906],[-71.44534,41.78871499906],[-71.445421,41.78854799906],[-71.445855,41.78825499906],[-71.446175,41.78868099906],[-71.446198,41.78870399906],[-71.446846,41.78936399906],[-71.447029,41.78955499906],[-71.447426,41.78998199906],[-71.447739,41.79031399906],[-71.447983,41.79058099906],[-71.448166,41.79077099906],[-71.448509,41.79113799906],[-71.448578,41.79121799906],[-71.448997,41.79167899906],[-71.449112,41.79180499906],[-71.448645,41.79191099906],[-71.447641,41.79213899906],[-71.44771,41.79218699906],[-71.447868,41.79264499906],[-71.448044,41.79308699906],[-71.448143,41.79314399906],[-71.448359,41.79325799906],[-71.44902,41.79360599906],[-71.449615,41.79372399906],[-71.450447,41.79385799906],[-71.450623,41.79357499906],[-71.451042,41.79292299906],[-71.451141,41.79277799906],[-71.451263,41.79259099906],[-71.4515,41.79222099906],[-71.45208,41.79123299906],[-71.452232,41.79092799906],[-71.452263,41.79083999906],[-71.452301,41.79075199906],[-71.452408,41.79046199906],[-71.452454,41.79028699906],[-71.452469,41.79021099906],[-71.452484,41.79007699906],[-71.452484,41.78996299906]]]}}"}, +{"type": "blockgroup", "typeId": 140004, "areaId": 29028, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.456099,41.78425999906],[-71.456066,41.78419899906],[-71.456027,41.78413899906],[-71.455992,41.78401899906],[-71.455967,41.78395599906],[-71.455871,41.78377899906],[-71.455804,41.78359099906],[-71.455686,41.78334499906],[-71.455629,41.78316099906],[-71.455617,41.78310499906],[-71.455559,41.78291799906],[-71.455463,41.78269199906],[-71.455386,41.78255699906],[-71.455357,41.78248099906],[-71.45531,41.78232599906],[-71.455172,41.78196399906],[-71.455095,41.78179399906],[-71.455084,41.78177399906],[-71.454984,41.78159699906],[-71.454947,41.78154599906],[-71.454768,41.78136499906],[-71.454638,41.78124299906],[-71.454581,41.78118299906],[-71.454479,41.78106099906],[-71.454157,41.78081199906],[-71.454086,41.78075299906],[-71.454061,41.78072999906],[-71.454022,41.78069299906],[-71.453895,41.78056099906],[-71.453831,41.78050599906],[-71.453611,41.78036099906],[-71.453246,41.78008099906],[-71.453206,41.78003199906],[-71.453179,41.77997599906],[-71.453126,41.77980399906],[-71.4531,41.77974399906],[-71.453039,41.77968399906],[-71.452961,41.77964299906],[-71.452811,41.77957699906],[-71.452666,41.77952399906],[-71.452593,41.77948599906],[-71.452164,41.77959399906],[-71.452141,41.77957899906],[-71.452065,41.77957899906],[-71.451591,41.77963999906],[-71.451248,41.77967799906],[-71.451012,41.77970499906],[-71.45092,41.77971599906],[-71.450813,41.77975799906],[-71.450722,41.77980799906],[-71.450653,41.77986099906],[-71.4506,41.77992999906],[-71.450455,41.78020899906],[-71.450218,41.78064699906],[-71.449905,41.78059399906],[-71.44989,41.78065499906],[-71.44986,41.78071999906],[-71.449776,41.78081099906],[-71.449638,41.78089099906],[-71.449463,41.78094899906],[-71.449318,41.78097899906],[-71.448936,41.78102499906],[-71.448692,41.78106699906],[-71.448128,41.78114299906],[-71.448036,41.78114299906],[-71.447716,41.78102099906],[-71.447507,41.78093599906],[-71.446907,41.78069299906],[-71.446259,41.78045699906],[-71.446022,41.78036499906],[-71.445724,41.78076199906],[-71.445595,41.78096799906],[-71.445541,41.78111599906],[-71.445404,41.78148699906],[-71.44532,41.78174199906],[-71.445251,41.78195999906],[-71.445129,41.78240999906],[-71.445305,41.78244799906],[-71.445732,41.78252799906],[-71.445999,41.78258099906],[-71.446617,41.78269999906],[-71.446831,41.78274499906],[-71.446999,41.78277999906],[-71.447533,41.78289399906],[-71.448051,41.78303899906],[-71.448891,41.78326399906],[-71.449532,41.78343999906],[-71.449707,41.78348899906],[-71.450356,41.78366899906],[-71.450523,41.78371799906],[-71.451096,41.78387799906],[-71.451134,41.78388599906],[-71.451653,41.78402699906],[-71.452179,41.78416799906],[-71.452652,41.78429799906],[-71.453178,41.78443099906],[-71.453491,41.78451199906],[-71.453964,41.78462599906],[-71.454155,41.78465999906],[-71.454254,41.78466799906],[-71.454422,41.78467199906],[-71.454651,41.78464899906],[-71.454826,41.78462199906],[-71.454964,41.78458799906],[-71.455055,41.78456099906],[-71.456001,41.78428599906],[-71.456099,41.78425999906]]]}}"}, +{"type": "blockgroup", "typeId": 140005, "areaId": 29029, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.454431,41.77281199906],[-71.45443,41.77261599906],[-71.454407,41.77249099906],[-71.454358,41.77239499906],[-71.45429,41.77233599906],[-71.454255,41.77228399906],[-71.45417,41.77209799906],[-71.454161,41.77203199906],[-71.454182,41.77196799906],[-71.45427,41.77185899906],[-71.45428,41.77180099906],[-71.454256,41.77166799906],[-71.45416,41.77145499906],[-71.454117,41.77131899906],[-71.454106,41.77125699906],[-71.454103,41.77112799906],[-71.454089,41.77106899906],[-71.454043,41.77094599906],[-71.454005,41.77089099906],[-71.453965,41.77084299906],[-71.453776,41.77071599906],[-71.453346,41.77115999906],[-71.453224,41.77129399906],[-71.452682,41.77185799906],[-71.452202,41.77234999906],[-71.451721,41.77284999906],[-71.451549,41.77302799906],[-71.451256,41.77333099906],[-71.451042,41.77354799906],[-71.450241,41.77437999906],[-71.449837,41.77479199906],[-71.449707,41.77494799906],[-71.449638,41.77500899906],[-71.449593,41.77505899906],[-71.449448,41.77519199906],[-71.449379,41.77526099906],[-71.449333,41.77529499906],[-71.449173,41.77543299906],[-71.449112,41.77547799906],[-71.448608,41.77584099906],[-71.44854,41.77589399906],[-71.448044,41.77624099906],[-71.447945,41.77631399906],[-71.447365,41.77673699906],[-71.446785,41.77715299906],[-71.446433,41.77739999906],[-71.44635,41.77745799906],[-71.446144,41.77760699906],[-71.445824,41.77784699906],[-71.445518,41.77806499906],[-71.445305,41.77822099906],[-71.444885,41.77852599906],[-71.444748,41.77862499906],[-71.444221,41.77900299906],[-71.44381,41.77929699906],[-71.443672,41.77938499906],[-71.443596,41.77944199906],[-71.44445,41.77975799906],[-71.445221,41.78005599906],[-71.446022,41.78036499906],[-71.446259,41.78045699906],[-71.446907,41.78069299906],[-71.447507,41.78093599906],[-71.447716,41.78102099906],[-71.448036,41.78114299906],[-71.448128,41.78114299906],[-71.448692,41.78106699906],[-71.448936,41.78102499906],[-71.449318,41.78097899906],[-71.449463,41.78094899906],[-71.449638,41.78089099906],[-71.449776,41.78081099906],[-71.44986,41.78071999906],[-71.44989,41.78065499906],[-71.449905,41.78059399906],[-71.450218,41.78064699906],[-71.450455,41.78020899906],[-71.4506,41.77992999906],[-71.450653,41.77986099906],[-71.450722,41.77980799906],[-71.450813,41.77975799906],[-71.45092,41.77971599906],[-71.451012,41.77970499906],[-71.451248,41.77967799906],[-71.451591,41.77963999906],[-71.452065,41.77957899906],[-71.452141,41.77957899906],[-71.452164,41.77959399906],[-71.452593,41.77948599906],[-71.452546,41.77944299906],[-71.452512,41.77939399906],[-71.452449,41.77925599906],[-71.452438,41.77917999906],[-71.452438,41.77912399906],[-71.452449,41.77898799906],[-71.452477,41.77884299906],[-71.45252,41.77870699906],[-71.452511,41.77861599906],[-71.452473,41.77856099906],[-71.452383,41.77852899906],[-71.452285,41.77851299906],[-71.452192,41.77848199906],[-71.452108,41.77843399906],[-71.452046,41.77836899906],[-71.452009,41.77829499906],[-71.451995,41.77822699906],[-71.452004,41.77815799906],[-71.452038,41.77808999906],[-71.452078,41.77804299906],[-71.452194,41.77794599906],[-71.452221,41.77787899906],[-71.452212,41.77780799906],[-71.452123,41.77753199906],[-71.45209,41.77740399906],[-71.452088,41.77738299906],[-71.452084,41.77733899906],[-71.452088,41.77727999906],[-71.452131,41.77718799906],[-71.452143,41.77712999906],[-71.452146,41.77698799906],[-71.452134,41.77693099906],[-71.452096,41.77686699906],[-71.452041,41.77681899906],[-71.451912,41.77673799906],[-71.451667,41.77664499906],[-71.451591,41.77660399906],[-71.451532,41.77655699906],[-71.451507,41.77649099906],[-71.451507,41.77643399906],[-71.451523,41.77636399906],[-71.4516,41.77618699906],[-71.451749,41.77591599906],[-71.451793,41.77584799906],[-71.451849,41.77578399906],[-71.451957,41.77570499906],[-71.452022,41.77565199906],[-71.452163,41.77550799906],[-71.45223,41.77546299906],[-71.45231,41.77542699906],[-71.452388,41.77538199906],[-71.452446,41.77533199906],[-71.452467,41.77529699906],[-71.452492,41.77524699906],[-71.452509,41.77518599906],[-71.452493,41.77512599906],[-71.452442,41.77506399906],[-71.452372,41.77501499906],[-71.452333,41.77493699906],[-71.45237,41.77488599906],[-71.452432,41.77483699906],[-71.452517,41.77480099906],[-71.452616,41.77478799906],[-71.452701,41.77476099906],[-71.452765,41.77472599906],[-71.452899,41.77473299906],[-71.452987,41.77474199906],[-71.453077,41.77472599906],[-71.453144,41.77468099906],[-71.453203,41.77462499906],[-71.453288,41.77449799906],[-71.453393,41.77438599906],[-71.453458,41.77434099906],[-71.45352,41.77430699906],[-71.453569,41.77429099906],[-71.453581,41.77429599906],[-71.453634,41.77426199906],[-71.453671,41.77424899906],[-71.453716,41.77423399906],[-71.453797,41.77423199906],[-71.453873,41.77420999906],[-71.453918,41.77416699906],[-71.45394,41.77411499906],[-71.454008,41.77405899906],[-71.454067,41.77399599906],[-71.454111,41.77393399906],[-71.454106,41.77387399906],[-71.454084,41.77381099906],[-71.454077,41.77373599906],[-71.45408,41.77365899906],[-71.454095,41.77359899906],[-71.454119,41.77353399906],[-71.454154,41.77347099906],[-71.454269,41.77330799906],[-71.454347,41.77317799906],[-71.454378,41.77310299906],[-71.45442,41.77295699906],[-71.454431,41.77287999906],[-71.454431,41.77281199906]]]}}"}, +{"type": "blockgroup", "typeId": 141001, "areaId": 29030, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.452314,41.80613299906],[-71.452294,41.80607599906],[-71.452103,41.80550399906],[-71.451889,41.80472199906],[-71.451927,41.80409199906],[-71.451965,41.80347099906],[-71.452003,41.80277999906],[-71.450333,41.80272699906],[-71.449409,41.80267699906],[-71.448929,41.80266199906],[-71.448738,41.80264299906],[-71.448715,41.80263099906],[-71.448608,41.80259299906],[-71.448219,41.80242199906],[-71.447586,41.80211999906],[-71.446991,41.80183399906],[-71.445824,41.80128899906],[-71.44561,41.80151399906],[-71.445328,41.80169299906],[-71.445084,41.80185299906],[-71.445053,41.80186799906],[-71.444687,41.80203999906],[-71.444435,41.80215099906],[-71.444,41.80232999906],[-71.443695,41.80245599906],[-71.44339,41.80400499906],[-71.443192,41.80495099906],[-71.443161,41.80513399906],[-71.442461,41.80498799906],[-71.441318,41.80474999906],[-71.441402,41.80485299906],[-71.441541,41.80506299906],[-71.441618,41.80519299906],[-71.441718,41.80536499906],[-71.441869,41.80567399906],[-71.442015,41.80603999906],[-71.442136,41.80651399906],[-71.442154,41.80657299906],[-71.442198,41.80687399906],[-71.442214,41.80702699906],[-71.442223,41.80720299906],[-71.442865,41.80712999906],[-71.443678,41.80703199906],[-71.444354,41.80695299906],[-71.447423,41.80662599906],[-71.447533,41.80661399906],[-71.448019,41.80657599906],[-71.448826,41.80649399906],[-71.449256,41.80644899906],[-71.449642,41.80644999906],[-71.45023,41.80636999906],[-71.450285,41.80636199906],[-71.45043,41.80633999906],[-71.450679,41.80630699906],[-71.451335,41.80623799906],[-71.452314,41.80613299906]]]}}"}, +{"type": "blockgroup", "typeId": 141002, "areaId": 29031, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.449112,41.79180499906],[-71.448997,41.79167899906],[-71.448578,41.79121799906],[-71.448509,41.79113799906],[-71.448166,41.79077099906],[-71.447983,41.79058099906],[-71.447739,41.79031399906],[-71.447426,41.78998199906],[-71.447029,41.78955499906],[-71.446846,41.78936399906],[-71.446198,41.78870399906],[-71.446175,41.78868099906],[-71.445855,41.78825499906],[-71.445421,41.78854799906],[-71.44534,41.78871499906],[-71.445323,41.78869999906],[-71.445199,41.78861799906],[-71.445053,41.78856199906],[-71.444826,41.78850999906],[-71.444744,41.78849699906],[-71.444656,41.78846999906],[-71.444591,41.78843899906],[-71.444536,41.78838399906],[-71.444507,41.78833299906],[-71.444425,41.78822499906],[-71.444374,41.78817599906],[-71.444322,41.78813399906],[-71.4443,41.78811199906],[-71.444272,41.78808499906],[-71.444243,41.78806799906],[-71.444207,41.78804699906],[-71.444123,41.78801799906],[-71.44403,41.78800399906],[-71.443945,41.78797999906],[-71.443857,41.78796099906],[-71.443678,41.78796599906],[-71.443656,41.78796399906],[-71.443623,41.78795999906],[-71.443607,41.78795799906],[-71.443592,41.78795499906],[-71.443508,41.78793999906],[-71.4434,41.78792199906],[-71.443296,41.78789999906],[-71.443062,41.78785099906],[-71.442986,41.78782699906],[-71.442917,41.78779499906],[-71.442876,41.78773499906],[-71.442841,41.78761899906],[-71.44279,41.78756599906],[-71.442727,41.78752899906],[-71.442663,41.78749899906],[-71.442582,41.78746899906],[-71.442492,41.78744499906],[-71.442415,41.78742999906],[-71.442174,41.78741799906],[-71.442087,41.78740399906],[-71.442008,41.78737499906],[-71.441933,41.78733999906],[-71.441844,41.78733999906],[-71.441759,41.78735899906],[-71.441683,41.78738499906],[-71.441615,41.78742399906],[-71.441531,41.78751999906],[-71.44151,41.78757999906],[-71.441508,41.78763799906],[-71.44146,41.78768299906],[-71.441385,41.78773699906],[-71.439529,41.78725799906],[-71.438789,41.78698699906],[-71.43782,41.78663599906],[-71.436592,41.78620099906],[-71.43544,41.78580099906],[-71.435159,41.78556299906],[-71.435135,41.78554299906],[-71.435067,41.78559099906],[-71.434951,41.78567699906],[-71.434806,41.78578699906],[-71.434622,41.78591099906],[-71.434127,41.78624899906],[-71.434046,41.78630699906],[-71.434122,41.78630899906],[-71.434207,41.78631999906],[-71.434334,41.78643299906],[-71.436482,41.78841199906],[-71.436836,41.78873799906],[-71.436828,41.78885899906],[-71.436824,41.78891499906],[-71.436794,41.78930399906],[-71.436785,41.78943299906],[-71.436915,41.78969999906],[-71.437135,41.79015199906],[-71.43716,41.79043299906],[-71.437184,41.79049199906],[-71.437263,41.79072999906],[-71.437302,41.79101999906],[-71.437362,41.79157299906],[-71.437376,41.79167999906],[-71.437408,41.79195099906],[-71.437421,41.79215599906],[-71.437427,41.79224499906],[-71.437461,41.79273299906],[-71.437483,41.79281999906],[-71.437538,41.79303199906],[-71.437642,41.79323899906],[-71.437769,41.79339899906],[-71.437941,41.79353599906],[-71.438345,41.79388399906],[-71.438448,41.79400799906],[-71.438541,41.79422899906],[-71.438633,41.79420799906],[-71.43924,41.79407099906],[-71.439926,41.79391899906],[-71.440224,41.79387299906],[-71.440323,41.79386499906],[-71.440572,41.79374699906],[-71.440697,41.79403299906],[-71.440979,41.79503599906],[-71.440986,41.79506699906],[-71.441177,41.79589799906],[-71.441216,41.79621499906],[-71.441231,41.79651299906],[-71.441223,41.79686699906],[-71.441215,41.79689999906],[-71.44146,41.79692099906],[-71.441907,41.79697799906],[-71.441795,41.79732799906],[-71.441655,41.79775199906],[-71.441487,41.79824699906],[-71.441473,41.79831499906],[-71.441426,41.79854499906],[-71.441414,41.79882799906],[-71.441437,41.79906499906],[-71.441498,41.79959099906],[-71.441589,41.80044899906],[-71.441666,41.80134599906],[-71.441681,41.80147599906],[-71.441734,41.80202099906],[-71.441788,41.80268499906],[-71.441833,41.80301999906],[-71.442413,41.80290999906],[-71.442604,41.80286799906],[-71.442825,41.80280299906],[-71.442993,41.80274199906],[-71.443019,41.80261699906],[-71.443271,41.80160199906],[-71.443319,41.80146799906],[-71.44333,41.80143699906],[-71.443531,41.80087799906],[-71.443741,41.80029299906],[-71.443889,41.79988099906],[-71.443943,41.79975499906],[-71.443953,41.79973299906],[-71.44415,41.79927899906],[-71.444233,41.79911899906],[-71.444395,41.79880599906],[-71.444602,41.79840599906],[-71.444884,41.79786099906],[-71.445058,41.79752499906],[-71.445096,41.79746299906],[-71.445469,41.79687099906],[-71.446158,41.79591399906],[-71.446254,41.79577399906],[-71.44656,41.79533499906],[-71.447029,41.79471799906],[-71.448359,41.79325799906],[-71.448143,41.79314399906],[-71.448044,41.79308699906],[-71.447868,41.79264499906],[-71.44771,41.79218699906],[-71.447641,41.79213899906],[-71.448645,41.79191099906],[-71.449112,41.79180499906]]]}}"}, +{"type": "blockgroup", "typeId": 141003, "areaId": 29032, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.452576,41.79526099906],[-71.45182,41.79507799906],[-71.451721,41.79505499906],[-71.450897,41.79485299906],[-71.449997,41.79463199906],[-71.450302,41.79408999906],[-71.450447,41.79385799906],[-71.449615,41.79372399906],[-71.44902,41.79360599906],[-71.448359,41.79325799906],[-71.447029,41.79471799906],[-71.44656,41.79533499906],[-71.446254,41.79577399906],[-71.446158,41.79591399906],[-71.445469,41.79687099906],[-71.445096,41.79746299906],[-71.445058,41.79752499906],[-71.444884,41.79786099906],[-71.444602,41.79840599906],[-71.444395,41.79880599906],[-71.444233,41.79911899906],[-71.44415,41.79927899906],[-71.443953,41.79973299906],[-71.443943,41.79975499906],[-71.443889,41.79988099906],[-71.443741,41.80029299906],[-71.443531,41.80087799906],[-71.44333,41.80143699906],[-71.443319,41.80146799906],[-71.443271,41.80160199906],[-71.443019,41.80261699906],[-71.442993,41.80274199906],[-71.442825,41.80280299906],[-71.442604,41.80286799906],[-71.442413,41.80290999906],[-71.441833,41.80301999906],[-71.441788,41.80268499906],[-71.441734,41.80202099906],[-71.441681,41.80147599906],[-71.441666,41.80134599906],[-71.441589,41.80044899906],[-71.441498,41.79959099906],[-71.441437,41.79906499906],[-71.441414,41.79882799906],[-71.441426,41.79854499906],[-71.441473,41.79831499906],[-71.441487,41.79824699906],[-71.441655,41.79775199906],[-71.441795,41.79732799906],[-71.441907,41.79697799906],[-71.44146,41.79692099906],[-71.441215,41.79689999906],[-71.441223,41.79686699906],[-71.441231,41.79651299906],[-71.441216,41.79621499906],[-71.441177,41.79589799906],[-71.440986,41.79506699906],[-71.440979,41.79503599906],[-71.440697,41.79403299906],[-71.440572,41.79374699906],[-71.440323,41.79386499906],[-71.440224,41.79387299906],[-71.439926,41.79391899906],[-71.43924,41.79407099906],[-71.438633,41.79420799906],[-71.438541,41.79422899906],[-71.438875,41.79548399906],[-71.439058,41.79616599906],[-71.43934,41.79724099906],[-71.439359,41.79737699906],[-71.439358,41.79759799906],[-71.439353,41.79767999906],[-71.439335,41.79794699906],[-71.439288,41.79888599906],[-71.439242,41.80002899906],[-71.439241,41.80021599906],[-71.439241,41.80028999906],[-71.439229,41.80044399906],[-71.439228,41.80062199906],[-71.439234,41.80066299906],[-71.43924,41.80071599906],[-71.439245,41.80088899906],[-71.439239,41.80122599906],[-71.439232,41.80160499906],[-71.439246,41.80190799906],[-71.439266,41.80202699906],[-71.439308,41.80215099906],[-71.439368,41.80228499906],[-71.439553,41.80260599906],[-71.439938,41.80328899906],[-71.440002,41.80338699906],[-71.439938,41.80341499906],[-71.43998,41.80343799906],[-71.440042,41.80347499906],[-71.440193,41.80365999906],[-71.440252,41.80370499906],[-71.440296,41.80374099906],[-71.440541,41.80394599906],[-71.440875,41.80422599906],[-71.441106,41.80447199906],[-71.441295,41.80471399906],[-71.441318,41.80474999906],[-71.442461,41.80498799906],[-71.443161,41.80513399906],[-71.443192,41.80495099906],[-71.44339,41.80400499906],[-71.443695,41.80245599906],[-71.444,41.80232999906],[-71.444435,41.80215099906],[-71.444687,41.80203999906],[-71.445053,41.80186799906],[-71.445084,41.80185299906],[-71.445328,41.80169299906],[-71.44561,41.80151399906],[-71.445824,41.80128899906],[-71.446991,41.80183399906],[-71.447586,41.80211999906],[-71.448219,41.80242199906],[-71.448608,41.80259299906],[-71.448715,41.80263099906],[-71.448738,41.80264299906],[-71.448929,41.80266199906],[-71.449409,41.80267699906],[-71.450333,41.80272699906],[-71.452003,41.80277999906],[-71.452034,41.80225399906],[-71.452072,41.80169699906],[-71.45211,41.80109799906],[-71.452164,41.80044599906],[-71.452217,41.79978899906],[-71.452255,41.79913299906],[-71.452316,41.79846599906],[-71.45237,41.79780999906],[-71.452423,41.79716499906],[-71.452469,41.79655499906],[-71.452522,41.79592899906],[-71.452576,41.79526099906]]]}}"}, +{"type": "blockgroup", "typeId": 142001, "areaId": 29033, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.48391,41.73160299906],[-71.483618,41.73161199906],[-71.482303,41.73161999906],[-71.482072,41.73162599906],[-71.481746,41.73163499906],[-71.481566,41.73163899906],[-71.480111,41.73165399906],[-71.480004,41.73165699906],[-71.479852,41.73166099906],[-71.47976,41.73166299906],[-71.479194,41.73167599906],[-71.478309,41.73169699906],[-71.477686,41.73171099906],[-71.477082,41.73172499906],[-71.476971,41.73175199906],[-71.476815,41.73178899906],[-71.476712,41.73181399906],[-71.475583,41.73186299906],[-71.474739,41.73189999906],[-71.472806,41.73195499906],[-71.469672,41.73204499906],[-71.469139,41.73206199906],[-71.467939,41.73207899906],[-71.467958,41.73219099906],[-71.468025,41.73250199906],[-71.468193,41.73319199906],[-71.468231,41.73337899906],[-71.468468,41.73435599906],[-71.468581,41.73480899906],[-71.46862,41.73486699906],[-71.468338,41.73504599906],[-71.468094,41.73520299906],[-71.467934,41.73530599906],[-71.467545,41.73557999906],[-71.467026,41.73594699906],[-71.466492,41.73633199906],[-71.466431,41.73637399906],[-71.465981,41.73671699906],[-71.465843,41.73681599906],[-71.465637,41.73696899906],[-71.465585,41.73700599906],[-71.465946,41.73719699906],[-71.466737,41.73761099906],[-71.466979,41.73769499906],[-71.467218,41.73770699906],[-71.468021,41.73732799906],[-71.468262,41.73741199906],[-71.468319,41.73724899906],[-71.468329,41.73721799906],[-71.468684,41.73715199906],[-71.470416,41.73681699906],[-71.470449,41.73725799906],[-71.470457,41.73736599906],[-71.470702,41.73740199906],[-71.471012,41.73721699906],[-71.471532,41.73690599906],[-71.471973,41.73701699906],[-71.472111,41.73705099906],[-71.472296,41.73709699906],[-71.472541,41.73912099906],[-71.473663,41.73885799906],[-71.473985,41.73923399906],[-71.475191,41.73898399906],[-71.475329,41.73896599906],[-71.475496,41.73900799906],[-71.475675,41.73908499906],[-71.476044,41.73866699906],[-71.476498,41.73893999906],[-71.476639,41.73902499906],[-71.477142,41.73850299906],[-71.477531,41.73810999906],[-71.477821,41.73783899906],[-71.477984,41.73764299906],[-71.478035,41.73753399906],[-71.478066,41.73738399906],[-71.478092,41.73716599906],[-71.478177,41.73762099906],[-71.478186,41.73767699906],[-71.478214,41.73786799906],[-71.478255,41.73802799906],[-71.478394,41.73846399906],[-71.478416,41.73855599906],[-71.478424,41.73862099906],[-71.478447,41.73870799906],[-71.478462,41.73879999906],[-71.478592,41.73935699906],[-71.478607,41.73940899906],[-71.478821,41.73928799906],[-71.478935,41.73921199906],[-71.479256,41.73895999906],[-71.479568,41.73865499906],[-71.479828,41.73830799906],[-71.479851,41.73827699906],[-71.480125,41.73767499906],[-71.480179,41.73751399906],[-71.480461,41.73677399906],[-71.480644,41.73641599906],[-71.48069,41.73633599906],[-71.480751,41.73625599906],[-71.480804,41.73617599906],[-71.48101,41.73592399906],[-71.481102,41.73584399906],[-71.4813,41.73569499906],[-71.481415,41.73561899906],[-71.481668,41.73546799906],[-71.482025,41.73524499906],[-71.48217,41.73514899906],[-71.482307,41.73504599906],[-71.482452,41.73494699906],[-71.482521,41.73489799906],[-71.482666,41.73480599906],[-71.48302,41.73459399906],[-71.483373,41.73346599906],[-71.483858,41.73177899906],[-71.483887,41.73167799906],[-71.48391,41.73160299906]]]}}"}, +{"type": "blockgroup", "typeId": 142002, "areaId": 29034, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.478607,41.73940899906],[-71.478592,41.73935699906],[-71.478462,41.73879999906],[-71.478447,41.73870799906],[-71.478424,41.73862099906],[-71.478416,41.73855599906],[-71.478394,41.73846399906],[-71.478255,41.73802799906],[-71.478214,41.73786799906],[-71.478186,41.73767699906],[-71.478177,41.73762099906],[-71.478092,41.73716599906],[-71.478066,41.73738399906],[-71.478035,41.73753399906],[-71.477984,41.73764299906],[-71.477821,41.73783899906],[-71.477531,41.73810999906],[-71.477142,41.73850299906],[-71.476639,41.73902499906],[-71.476498,41.73893999906],[-71.476044,41.73866699906],[-71.475675,41.73908499906],[-71.475496,41.73900799906],[-71.475329,41.73896599906],[-71.475191,41.73898399906],[-71.473985,41.73923399906],[-71.473663,41.73885799906],[-71.472541,41.73912099906],[-71.472296,41.73709699906],[-71.472111,41.73705099906],[-71.471973,41.73701699906],[-71.471532,41.73690599906],[-71.471012,41.73721699906],[-71.470702,41.73740199906],[-71.470457,41.73736599906],[-71.470449,41.73725799906],[-71.470416,41.73681699906],[-71.468684,41.73715199906],[-71.468329,41.73721799906],[-71.468319,41.73724899906],[-71.468262,41.73741199906],[-71.468021,41.73732799906],[-71.467218,41.73770699906],[-71.466979,41.73769499906],[-71.466737,41.73761099906],[-71.465946,41.73719699906],[-71.465585,41.73700599906],[-71.465637,41.73696899906],[-71.465843,41.73681599906],[-71.465981,41.73671699906],[-71.466431,41.73637399906],[-71.466492,41.73633199906],[-71.467026,41.73594699906],[-71.467545,41.73557999906],[-71.467934,41.73530599906],[-71.468094,41.73520299906],[-71.468338,41.73504599906],[-71.46862,41.73486699906],[-71.468581,41.73480899906],[-71.468468,41.73435599906],[-71.468231,41.73337899906],[-71.468193,41.73319199906],[-71.468025,41.73250199906],[-71.467958,41.73219099906],[-71.467939,41.73207899906],[-71.467471,41.73207899906],[-71.46713,41.73208399906],[-71.466873,41.73208899906],[-71.466026,41.73210599906],[-71.464999,41.73213899906],[-71.464318,41.73215899906],[-71.463641,41.73217999906],[-71.463032,41.73219799906],[-71.462525,41.73221199906],[-71.46169,41.73223699906],[-71.461058,41.73225499906],[-71.460599,41.73226799906],[-71.460249,41.73227799906],[-71.457599,41.73235499906],[-71.456412,41.73238899906],[-71.455974,41.73246099906],[-71.455718,41.73241299906],[-71.455575,41.73238599906],[-71.455342,41.73236499906],[-71.454907,41.73244299906],[-71.454419,41.73262599906],[-71.453896,41.73288699906],[-71.453669,41.73300399906],[-71.45346,41.73318699906],[-71.453286,41.73332999906],[-71.453129,41.73352599906],[-71.453007,41.73370799906],[-71.452937,41.73386499906],[-71.452867,41.73408699906],[-71.45285,41.73433499906],[-71.452971,41.73476499906],[-71.453215,41.73528799906],[-71.453424,41.73562699906],[-71.45358,41.73592699906],[-71.453754,41.73623999906],[-71.453824,41.73647499906],[-71.453893,41.73667099906],[-71.453911,41.73693199906],[-71.453841,41.73719299906],[-71.453736,41.73742799906],[-71.453492,41.73768899906],[-71.453178,41.73796299906],[-71.452986,41.73809299906],[-71.45276,41.73826299906],[-71.452533,41.73856299906],[-71.452341,41.73884999906],[-71.452097,41.73911699906],[-71.451748,41.73945599906],[-71.451278,41.73970399906],[-71.450563,41.73992599906],[-71.449953,41.74002999906],[-71.449256,41.74001599906],[-71.447802,41.74001799906],[-71.447377,41.74000399906],[-71.447059,41.73999399906],[-71.446449,41.73998599906],[-71.446375,41.73998699906],[-71.446313,41.73998599906],[-71.446198,41.73997899906],[-71.446071,41.73997499906],[-71.445303,41.74004499906],[-71.444684,41.74015499906],[-71.444291,41.74039599906],[-71.444116,41.74063599906],[-71.444029,41.74089599906],[-71.443966,41.74115799906],[-71.443963,41.74117999906],[-71.443945,41.74119599906],[-71.443937,41.74129299906],[-71.44394,41.74164299906],[-71.443906,41.74192399906],[-71.443932,41.74229399906],[-71.443935,41.74260099906],[-71.443935,41.74263099906],[-71.443974,41.74294599906],[-71.444044,41.74334899906],[-71.444095,41.74351199906],[-71.444111,41.74356399906],[-71.444186,41.74382399906],[-71.444261,41.74395499906],[-71.444298,41.74405499906],[-71.444359,41.74420899906],[-71.444433,41.74441299906],[-71.444496,41.74452799906],[-71.444535,41.74459799906],[-71.444578,41.74467399906],[-71.444706,41.74491499906],[-71.444891,41.74521199906],[-71.445125,41.74542299906],[-71.445327,41.74560699906],[-71.445459,41.74603699906],[-71.445548,41.74621799906],[-71.445948,41.74724699906],[-71.446421,41.74860599906],[-71.446538,41.74888699906],[-71.446615,41.74890199906],[-71.446691,41.74891799906],[-71.447159,41.74901199906],[-71.447556,41.74909599906],[-71.447906,41.74917199906],[-71.448547,41.74930999906],[-71.451124,41.74983899906],[-71.451668,41.74994999906],[-71.451887,41.74998999906],[-71.451857,41.75011499906],[-71.451828,41.75023699906],[-71.45179,41.75066399906],[-71.451775,41.75080499906],[-71.451759,41.75093799906],[-71.451729,41.75121699906],[-71.451721,41.75126299906],[-71.451714,41.75134299906],[-71.451614,41.75172799906],[-71.45137,41.75222399906],[-71.452156,41.75263999906],[-71.452301,41.75272399906],[-71.452896,41.75304399906],[-71.453459,41.75335399906],[-71.453987,41.75365799906],[-71.454643,41.75401299906],[-71.45507,41.75425299906],[-71.455391,41.75443599906],[-71.455925,41.75472599906],[-71.456413,41.75500499906],[-71.456673,41.75519199906],[-71.457108,41.75553499906],[-71.457588,41.75598499906],[-71.457672,41.75606899906],[-71.45787,41.75626399906],[-71.458237,41.75659199906],[-71.458542,41.75687399906],[-71.458565,41.75689699906],[-71.458733,41.75704599906],[-71.458969,41.75727499906],[-71.459167,41.75745799906],[-71.459564,41.75787699906],[-71.459778,41.75807599906],[-71.460091,41.75838399906],[-71.460166,41.75845099906],[-71.460179,41.75846899906],[-71.460279,41.75832199906],[-71.460409,41.75810599906],[-71.460751,41.75760399906],[-71.461039,41.75724599906],[-71.461319,41.75687399906],[-71.461403,41.75675199906],[-71.461747,41.75632699906],[-71.4618,41.75626399906],[-71.462006,41.75601999906],[-71.462318,41.75561899906],[-71.46255,41.75532199906],[-71.462616,41.75523799906],[-71.463176,41.75450299906],[-71.463753,41.75374599906],[-71.464127,41.75326499906],[-71.464172,41.75321199906],[-71.464249,41.75310499906],[-71.464302,41.75304399906],[-71.464523,41.75275799906],[-71.465111,41.75198699906],[-71.465706,41.75123999906],[-71.466309,41.75044599906],[-71.466812,41.74979399906],[-71.467354,41.74913399906],[-71.467601,41.74881699906],[-71.467751,41.74862299906],[-71.468147,41.74815399906],[-71.468735,41.74748999906],[-71.469124,41.74705899906],[-71.469643,41.74645599906],[-71.470215,41.74582699906],[-71.470757,41.74521599906],[-71.470871,41.74507499906],[-71.471527,41.74438899906],[-71.471581,41.74432399906],[-71.471642,41.74441899906],[-71.47287,41.74304199906],[-71.47346,41.74239299906],[-71.474075,41.74171799906],[-71.474358,41.74146699906],[-71.47459,41.74125899906],[-71.475113,41.74079099906],[-71.475533,41.74053599906],[-71.475838,41.74039799906],[-71.476517,41.74015799906],[-71.477144,41.73995699906],[-71.477364,41.73988699906],[-71.47802,41.73965499906],[-71.478439,41.73950199906],[-71.478607,41.73940899906]]]}}"}, +{"type": "blockgroup", "typeId": 143001, "areaId": 29035, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.46779,41.77736199906],[-71.466896,41.77724099906],[-71.466797,41.77719899906],[-71.466691,41.77716899906],[-71.466331,41.77706499906],[-71.466331,41.77694699906],[-71.466377,41.77655799906],[-71.466393,41.77646299906],[-71.466461,41.77584499906],[-71.466553,41.77524199906],[-71.465927,41.77509299906],[-71.46521,41.77492899906],[-71.464844,41.77484099906],[-71.464043,41.77464699906],[-71.463234,41.77445199906],[-71.462898,41.77437199906],[-71.462654,41.77497499906],[-71.460383,41.77444899906],[-71.458862,41.77409699906],[-71.458618,41.77403999906],[-71.458366,41.77396399906],[-71.458237,41.77394099906],[-71.457794,41.77383799906],[-71.457443,41.77376199906],[-71.457352,41.77419999906],[-71.457352,41.77421999906],[-71.457314,41.77437199906],[-71.457291,41.77445999906],[-71.457184,41.77499799906],[-71.457047,41.77564599906],[-71.457008,41.77582599906],[-71.456985,41.77591699906],[-71.456909,41.77629499906],[-71.45681,41.77679399906],[-71.456772,41.77695499906],[-71.45665,41.77760299906],[-71.456528,41.77825499906],[-71.45652,41.77827499906],[-71.456482,41.77854499906],[-71.456474,41.77864499906],[-71.456474,41.77874399906],[-71.45649,41.77896899906],[-71.456505,41.77907899906],[-71.456528,41.77917899906],[-71.456674,41.77971099906],[-71.45681,41.78020499906],[-71.456886,41.78050599906],[-71.456978,41.78085699906],[-71.457153,41.78148299906],[-71.45723,41.78174199906],[-71.457298,41.78199799906],[-71.457321,41.78212399906],[-71.457352,41.78224599906],[-71.457397,41.78250899906],[-71.457413,41.78266899906],[-71.457428,41.78291699906],[-71.457413,41.78314999906],[-71.45726,41.78397399906],[-71.457657,41.78389699906],[-71.460182,41.78359599906],[-71.460411,41.78356599906],[-71.461105,41.78346999906],[-71.462789,41.78219599906],[-71.463724,41.78142299906],[-71.464282,41.78093799906],[-71.464331,41.78089599906],[-71.464629,41.78062899906],[-71.464928,41.78035099906],[-71.465222,41.78006999906],[-71.46524,41.78005199906],[-71.465793,41.77950199906],[-71.466777,41.77849299906],[-71.466811,41.77845299906],[-71.46721,41.77801699906],[-71.467641,41.77753699906],[-71.46779,41.77736199906]]]}}"}, +{"type": "blockgroup", "typeId": 143002, "areaId": 29036, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.473286,41.76712199906],[-71.473038,41.76708199906],[-71.472961,41.76707499906],[-71.472885,41.76706299906],[-71.472748,41.76703299906],[-71.472626,41.76699399906],[-71.472221,41.76688399906],[-71.472023,41.76681499906],[-71.471802,41.76673099906],[-71.471649,41.76665499906],[-71.471573,41.76661299906],[-71.471474,41.76654799906],[-71.471352,41.76642199906],[-71.471306,41.76635399906],[-71.471268,41.76627699906],[-71.471237,41.76611299906],[-71.471237,41.76596099906],[-71.471252,41.76588399906],[-71.471275,41.76579999906],[-71.471306,41.76571699906],[-71.471436,41.76546499906],[-71.471611,41.76522399906],[-71.471672,41.76514799906],[-71.471725,41.76506399906],[-71.471848,41.76489999906],[-71.471909,41.76482799906],[-71.472015,41.76467899906],[-71.472069,41.76458399906],[-71.472084,41.76454199906],[-71.472214,41.76428999906],[-71.472282,41.76412199906],[-71.472313,41.76396199906],[-71.472313,41.76389299906],[-71.472305,41.76382099906],[-71.472275,41.76368299906],[-71.472214,41.76354599906],[-71.472132,41.76342399906],[-71.472099,41.76337399906],[-71.472046,41.76331299906],[-71.471924,41.76319499906],[-71.471848,41.76313799906],[-71.47168,41.76303899906],[-71.471512,41.76290899906],[-71.471474,41.76288599906],[-71.470901,41.76253499906],[-71.470734,41.76245499906],[-71.470535,41.76238299906],[-71.470299,41.76231799906],[-71.470032,41.76226799906],[-71.469742,41.76222999906],[-71.469391,41.76220299906],[-71.469292,41.76219899906],[-71.469028,41.76220799906],[-71.468956,41.76221099906],[-71.468758,41.76223399906],[-71.46862,41.76225699906],[-71.468002,41.76241299906],[-71.467834,41.76246599906],[-71.467323,41.76262699906],[-71.466805,41.76280999906],[-71.466667,41.76287099906],[-71.466461,41.76297799906],[-71.466133,41.76316799906],[-71.466019,41.76324099906],[-71.465904,41.76330199906],[-71.465752,41.76336699906],[-71.465656,41.76339999906],[-71.465599,41.76341999906],[-71.465439,41.76346199906],[-71.465309,41.76348499906],[-71.465164,41.76349999906],[-71.465027,41.76350799906],[-71.464844,41.76349599906],[-71.464752,41.76348099906],[-71.464638,41.76345399906],[-71.464417,41.76337799906],[-71.464302,41.76332899906],[-71.464073,41.76322199906],[-71.463799,41.76311899906],[-71.46347,41.76302699906],[-71.463097,41.76293899906],[-71.462936,41.76290899906],[-71.462776,41.76287799906],[-71.462532,41.76284799906],[-71.462318,41.76284399906],[-71.462158,41.76285899906],[-71.461794,41.76294199906],[-71.462257,41.76340899906],[-71.462852,41.76402299906],[-71.463203,41.76439299906],[-71.463158,41.76468699906],[-71.46315,41.76479299906],[-71.463142,41.76488099906],[-71.463158,41.76518199906],[-71.463242,41.76559799906],[-71.463348,41.76611699906],[-71.463432,41.76647599906],[-71.463478,41.76665099906],[-71.463547,41.76697199906],[-71.463753,41.76786799906],[-71.463776,41.76795199906],[-71.463913,41.76856599906],[-71.463913,41.76859299906],[-71.464142,41.76952699906],[-71.46431,41.77024099906],[-71.464333,41.77034399906],[-71.46447,41.77071399906],[-71.464622,41.77102999906],[-71.464783,41.77126699906],[-71.465004,41.77149999906],[-71.4655,41.77190799906],[-71.466408,41.77253299906],[-71.466934,41.77288099906],[-71.4673,41.77312899906],[-71.467789,41.77339899906],[-71.468773,41.77390699906],[-71.468748,41.77397699906],[-71.468575,41.77446699906],[-71.468506,41.77473799906],[-71.468468,41.77500199906],[-71.46846,41.77505099906],[-71.468452,41.77522299906],[-71.468452,41.77557799906],[-71.468468,41.77575699906],[-71.468498,41.77593999906],[-71.468521,41.77604699906],[-71.46859,41.77625699906],[-71.468623,41.77633099906],[-71.468641,41.77630799906],[-71.469059,41.77574299906],[-71.46948,41.77514499906],[-71.469722,41.77478499906],[-71.470195,41.77406199906],[-71.470483,41.77355699906],[-71.470529,41.77347599906],[-71.470563,41.77342099906],[-71.470738,41.77313899906],[-71.471147,41.77240399906],[-71.471528,41.77166299906],[-71.471888,41.77091299906],[-71.47191,41.77086299906],[-71.472013,41.77063999906],[-71.472211,41.77020999906],[-71.472438,41.76962699906],[-71.472942,41.76822699906],[-71.473231,41.76731999906],[-71.473286,41.76712199906]]]}}"}, +{"type": "blockgroup", "typeId": 143003, "areaId": 29037, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.468773,41.77390699906],[-71.467789,41.77339899906],[-71.4673,41.77312899906],[-71.466934,41.77288099906],[-71.466408,41.77253299906],[-71.4655,41.77190799906],[-71.465004,41.77149999906],[-71.464783,41.77126699906],[-71.464622,41.77102999906],[-71.46447,41.77071399906],[-71.464333,41.77034399906],[-71.46431,41.77024099906],[-71.464142,41.76952699906],[-71.463913,41.76859299906],[-71.463913,41.76856599906],[-71.463776,41.76795199906],[-71.463753,41.76786799906],[-71.463547,41.76697199906],[-71.463478,41.76665099906],[-71.463432,41.76647599906],[-71.463348,41.76611699906],[-71.463242,41.76559799906],[-71.463158,41.76518199906],[-71.463142,41.76488099906],[-71.46315,41.76479299906],[-71.463158,41.76468699906],[-71.463203,41.76439299906],[-71.462852,41.76402299906],[-71.462257,41.76340899906],[-71.461794,41.76294199906],[-71.461617,41.76301599906],[-71.461395,41.76311999906],[-71.461112,41.76327099906],[-71.460838,41.76344699906],[-71.46051,41.76374399906],[-71.460381,41.76385899906],[-71.4599,41.76435899906],[-71.459541,41.76474799906],[-71.459335,41.76510199906],[-71.459274,41.76523999906],[-71.459018,41.76515899906],[-71.458939,41.76513299906],[-71.458931,41.76515199906],[-71.458778,41.76537299906],[-71.458656,41.76556399906],[-71.458359,41.76587699906],[-71.458061,41.76619299906],[-71.457703,41.76655999906],[-71.457047,41.76732599906],[-71.45649,41.76787599906],[-71.456333,41.76802599906],[-71.455876,41.76848799906],[-71.455376,41.76905099906],[-71.454597,41.76986699906],[-71.453776,41.77071599906],[-71.453965,41.77084299906],[-71.454005,41.77089099906],[-71.454043,41.77094599906],[-71.454089,41.77106899906],[-71.454103,41.77112799906],[-71.454106,41.77125699906],[-71.454117,41.77131899906],[-71.45416,41.77145499906],[-71.454256,41.77166799906],[-71.45428,41.77180099906],[-71.45427,41.77185899906],[-71.454182,41.77196799906],[-71.454161,41.77203199906],[-71.45417,41.77209799906],[-71.454255,41.77228399906],[-71.45429,41.77233599906],[-71.454358,41.77239499906],[-71.454407,41.77249099906],[-71.45443,41.77261599906],[-71.454431,41.77281199906],[-71.454431,41.77287999906],[-71.45442,41.77295699906],[-71.454378,41.77310299906],[-71.454347,41.77317799906],[-71.454269,41.77330799906],[-71.454154,41.77347099906],[-71.454119,41.77353399906],[-71.454095,41.77359899906],[-71.45408,41.77365899906],[-71.454077,41.77373599906],[-71.454084,41.77381099906],[-71.454106,41.77387399906],[-71.454111,41.77393399906],[-71.454067,41.77399599906],[-71.454008,41.77405899906],[-71.45394,41.77411499906],[-71.453918,41.77416699906],[-71.453873,41.77420999906],[-71.453797,41.77423199906],[-71.453716,41.77423399906],[-71.453671,41.77424899906],[-71.453634,41.77426199906],[-71.453581,41.77429599906],[-71.453569,41.77429099906],[-71.45352,41.77430699906],[-71.453458,41.77434099906],[-71.453393,41.77438599906],[-71.453288,41.77449799906],[-71.453203,41.77462499906],[-71.453144,41.77468099906],[-71.453077,41.77472599906],[-71.452987,41.77474199906],[-71.452899,41.77473299906],[-71.452765,41.77472599906],[-71.452701,41.77476099906],[-71.452616,41.77478799906],[-71.452517,41.77480099906],[-71.452432,41.77483699906],[-71.45237,41.77488599906],[-71.452333,41.77493699906],[-71.452372,41.77501499906],[-71.452442,41.77506399906],[-71.452493,41.77512599906],[-71.452509,41.77518599906],[-71.452492,41.77524699906],[-71.452467,41.77529699906],[-71.452446,41.77533199906],[-71.452388,41.77538199906],[-71.45231,41.77542699906],[-71.45223,41.77546299906],[-71.452163,41.77550799906],[-71.452022,41.77565199906],[-71.451957,41.77570499906],[-71.451849,41.77578399906],[-71.451793,41.77584799906],[-71.451749,41.77591599906],[-71.4516,41.77618699906],[-71.451523,41.77636399906],[-71.451507,41.77643399906],[-71.451507,41.77649099906],[-71.451532,41.77655699906],[-71.451591,41.77660399906],[-71.451667,41.77664499906],[-71.451912,41.77673799906],[-71.452041,41.77681899906],[-71.452096,41.77686699906],[-71.452134,41.77693099906],[-71.452146,41.77698799906],[-71.452143,41.77712999906],[-71.452131,41.77718799906],[-71.452088,41.77727999906],[-71.452084,41.77733899906],[-71.452088,41.77738299906],[-71.45209,41.77740399906],[-71.452123,41.77753199906],[-71.452212,41.77780799906],[-71.452221,41.77787899906],[-71.452194,41.77794599906],[-71.452078,41.77804299906],[-71.452038,41.77808999906],[-71.452004,41.77815799906],[-71.451995,41.77822699906],[-71.452009,41.77829499906],[-71.452046,41.77836899906],[-71.452108,41.77843399906],[-71.452192,41.77848199906],[-71.452285,41.77851299906],[-71.452383,41.77852899906],[-71.452473,41.77856099906],[-71.452511,41.77861599906],[-71.45252,41.77870699906],[-71.452477,41.77884299906],[-71.452449,41.77898799906],[-71.452438,41.77912399906],[-71.452438,41.77917999906],[-71.452449,41.77925599906],[-71.452512,41.77939399906],[-71.452546,41.77944299906],[-71.452593,41.77948599906],[-71.452666,41.77952399906],[-71.452811,41.77957699906],[-71.452961,41.77964299906],[-71.453039,41.77968399906],[-71.4531,41.77974399906],[-71.453126,41.77980399906],[-71.453179,41.77997599906],[-71.453206,41.78003199906],[-71.453246,41.78008099906],[-71.453611,41.78036099906],[-71.453831,41.78050599906],[-71.453895,41.78056099906],[-71.454022,41.78069299906],[-71.454061,41.78072999906],[-71.454086,41.78075299906],[-71.454157,41.78081199906],[-71.454479,41.78106099906],[-71.454581,41.78118299906],[-71.454638,41.78124299906],[-71.454768,41.78136499906],[-71.454947,41.78154599906],[-71.454984,41.78159699906],[-71.455084,41.78177399906],[-71.455095,41.78179399906],[-71.455172,41.78196399906],[-71.45531,41.78232599906],[-71.455357,41.78248099906],[-71.455386,41.78255699906],[-71.455463,41.78269199906],[-71.455559,41.78291799906],[-71.455617,41.78310499906],[-71.455629,41.78316099906],[-71.455686,41.78334499906],[-71.455804,41.78359099906],[-71.455871,41.78377899906],[-71.455967,41.78395599906],[-71.455992,41.78401899906],[-71.456027,41.78413899906],[-71.456066,41.78419899906],[-71.456099,41.78425999906],[-71.456896,41.78404399906],[-71.456993,41.78401899906],[-71.45726,41.78397399906],[-71.457413,41.78314999906],[-71.457428,41.78291699906],[-71.457413,41.78266899906],[-71.457397,41.78250899906],[-71.457352,41.78224599906],[-71.457321,41.78212399906],[-71.457298,41.78199799906],[-71.45723,41.78174199906],[-71.457153,41.78148299906],[-71.456978,41.78085699906],[-71.456886,41.78050599906],[-71.45681,41.78020499906],[-71.456674,41.77971099906],[-71.456528,41.77917899906],[-71.456505,41.77907899906],[-71.45649,41.77896899906],[-71.456474,41.77874399906],[-71.456474,41.77864499906],[-71.456482,41.77854499906],[-71.45652,41.77827499906],[-71.456528,41.77825499906],[-71.45665,41.77760299906],[-71.456772,41.77695499906],[-71.45681,41.77679399906],[-71.456909,41.77629499906],[-71.456985,41.77591699906],[-71.457008,41.77582599906],[-71.457047,41.77564599906],[-71.457184,41.77499799906],[-71.457291,41.77445999906],[-71.457314,41.77437199906],[-71.457352,41.77421999906],[-71.457352,41.77419999906],[-71.457443,41.77376199906],[-71.457794,41.77383799906],[-71.458237,41.77394099906],[-71.458366,41.77396399906],[-71.458618,41.77403999906],[-71.458862,41.77409699906],[-71.460383,41.77444899906],[-71.462654,41.77497499906],[-71.462898,41.77437199906],[-71.463234,41.77445199906],[-71.464043,41.77464699906],[-71.464844,41.77484099906],[-71.46521,41.77492899906],[-71.465927,41.77509299906],[-71.466553,41.77524199906],[-71.466461,41.77584499906],[-71.466393,41.77646299906],[-71.466377,41.77655799906],[-71.466331,41.77694699906],[-71.466331,41.77706499906],[-71.466691,41.77716899906],[-71.466797,41.77719899906],[-71.466896,41.77724099906],[-71.46779,41.77736199906],[-71.467905,41.77722899906],[-71.468163,41.77691799906],[-71.468546,41.77643199906],[-71.468589,41.77637399906],[-71.468608,41.77634999906],[-71.468623,41.77633099906],[-71.46859,41.77625699906],[-71.468521,41.77604699906],[-71.468498,41.77593999906],[-71.468468,41.77575699906],[-71.468452,41.77557799906],[-71.468452,41.77522299906],[-71.46846,41.77505099906],[-71.468468,41.77500199906],[-71.468506,41.77473799906],[-71.468575,41.77446699906],[-71.468748,41.77397699906],[-71.468773,41.77390699906]]]}}"}, +{"type": "blockgroup", "typeId": 144001, "areaId": 29038, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.476468,41.75650599906],[-71.475845,41.75658799906],[-71.475769,41.75659199906],[-71.475479,41.75662199906],[-71.475388,41.75662999906],[-71.475273,41.75664899906],[-71.474998,41.75664499906],[-71.474609,41.75665299906],[-71.47422,41.75664899906],[-71.473846,41.75663799906],[-71.473473,41.75661799906],[-71.473106,41.75659199906],[-71.472618,41.75653799906],[-71.472497,41.75652099906],[-71.472137,41.75646999906],[-71.471664,41.75638599906],[-71.471245,41.75629799906],[-71.470833,41.75619899906],[-71.470428,41.75608799906],[-71.469971,41.75595099906],[-71.469528,41.75579799906],[-71.469353,41.75572999906],[-71.469093,41.75562999906],[-71.468765,41.75548599906],[-71.468369,41.75529499906],[-71.468033,41.75514199906],[-71.465942,41.75408199906],[-71.464882,41.75356299906],[-71.464676,41.75347499906],[-71.464579,41.75341999906],[-71.4645,41.75337599906],[-71.464272,41.75326499906],[-71.464172,41.75321199906],[-71.464127,41.75326499906],[-71.463753,41.75374599906],[-71.463176,41.75450299906],[-71.462616,41.75523799906],[-71.46255,41.75532199906],[-71.462318,41.75561899906],[-71.462006,41.75601999906],[-71.4618,41.75626399906],[-71.461747,41.75632699906],[-71.461403,41.75675199906],[-71.461319,41.75687399906],[-71.461039,41.75724599906],[-71.460751,41.75760399906],[-71.460409,41.75810599906],[-71.460279,41.75832199906],[-71.460179,41.75846899906],[-71.460297,41.75856399906],[-71.460808,41.75901799906],[-71.460915,41.75910599906],[-71.461014,41.75920099906],[-71.461121,41.75934199906],[-71.461166,41.75941799906],[-71.461212,41.75951799906],[-71.461243,41.75962099906],[-71.461263,41.75975399906],[-71.461304,41.76011699906],[-71.461349,41.76081499906],[-71.461445,41.76210599906],[-71.461456,41.76224899906],[-71.461498,41.76278799906],[-71.461492,41.76287799906],[-71.461468,41.76296399906],[-71.461395,41.76311999906],[-71.461617,41.76301599906],[-71.461794,41.76294199906],[-71.462158,41.76285899906],[-71.462318,41.76284399906],[-71.462532,41.76284799906],[-71.462776,41.76287799906],[-71.462936,41.76290899906],[-71.463097,41.76293899906],[-71.46347,41.76302699906],[-71.463799,41.76311899906],[-71.464073,41.76322199906],[-71.464302,41.76332899906],[-71.464417,41.76337799906],[-71.464638,41.76345399906],[-71.464752,41.76348099906],[-71.464844,41.76349599906],[-71.465027,41.76350799906],[-71.465164,41.76349999906],[-71.465309,41.76348499906],[-71.465439,41.76346199906],[-71.465599,41.76341999906],[-71.465656,41.76339999906],[-71.465752,41.76336699906],[-71.465904,41.76330199906],[-71.466019,41.76324099906],[-71.466133,41.76316799906],[-71.466461,41.76297799906],[-71.466667,41.76287099906],[-71.466805,41.76280999906],[-71.467323,41.76262699906],[-71.467834,41.76246599906],[-71.468002,41.76241299906],[-71.46862,41.76225699906],[-71.468758,41.76223399906],[-71.468956,41.76221099906],[-71.469028,41.76220799906],[-71.469292,41.76219899906],[-71.469391,41.76220299906],[-71.469742,41.76222999906],[-71.470032,41.76226799906],[-71.470299,41.76231799906],[-71.470535,41.76238299906],[-71.470734,41.76245499906],[-71.470901,41.76253499906],[-71.471474,41.76288599906],[-71.471512,41.76290899906],[-71.47168,41.76303899906],[-71.471848,41.76313799906],[-71.471924,41.76319499906],[-71.472046,41.76331299906],[-71.472099,41.76337399906],[-71.472132,41.76342399906],[-71.472214,41.76354599906],[-71.472275,41.76368299906],[-71.472305,41.76382099906],[-71.472313,41.76389299906],[-71.472313,41.76396199906],[-71.472282,41.76412199906],[-71.472214,41.76428999906],[-71.472084,41.76454199906],[-71.472069,41.76458399906],[-71.472015,41.76467899906],[-71.471909,41.76482799906],[-71.471848,41.76489999906],[-71.471725,41.76506399906],[-71.471672,41.76514799906],[-71.471611,41.76522399906],[-71.471436,41.76546499906],[-71.471306,41.76571699906],[-71.471275,41.76579999906],[-71.471252,41.76588399906],[-71.471237,41.76596099906],[-71.471237,41.76611299906],[-71.471268,41.76627699906],[-71.471306,41.76635399906],[-71.471352,41.76642199906],[-71.471474,41.76654799906],[-71.471573,41.76661299906],[-71.471649,41.76665499906],[-71.471802,41.76673099906],[-71.472023,41.76681499906],[-71.472221,41.76688399906],[-71.472626,41.76699399906],[-71.472748,41.76703299906],[-71.472885,41.76706299906],[-71.472961,41.76707499906],[-71.473038,41.76708199906],[-71.473286,41.76712199906],[-71.473613,41.76594299906],[-71.473938,41.76489599906],[-71.474205,41.76409399906],[-71.47447,41.76316699906],[-71.474731,41.76232199906],[-71.474883,41.76181699906],[-71.475004,41.76141699906],[-71.475077,41.76116299906],[-71.475091,41.76111699906],[-71.47524,41.76060499906],[-71.475267,41.76050799906],[-71.475313,41.76035399906],[-71.475854,41.75869199906],[-71.475879,41.75859599906],[-71.476106,41.75772099906],[-71.476421,41.75666999906],[-71.476468,41.75650599906]]]}}"}, +{"type": "blockgroup", "typeId": 144002, "areaId": 29039, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.477432,41.75196499906],[-71.476952,41.75190399906],[-71.476631,41.75184199906],[-71.476479,41.75180099906],[-71.476357,41.75175099906],[-71.476242,41.75169799906],[-71.476128,41.75163299906],[-71.476059,41.75158699906],[-71.475868,41.75142699906],[-71.475807,41.75136599906],[-71.475693,41.75122799906],[-71.475639,41.75115599906],[-71.475578,41.75108699906],[-71.475426,41.75098399906],[-71.475349,41.75094199906],[-71.475204,41.75088099906],[-71.475136,41.75085799906],[-71.475021,41.75082799906],[-71.474899,41.75080499906],[-71.474785,41.75077799906],[-71.474686,41.75076299906],[-71.474495,41.75072099906],[-71.474388,41.75068699906],[-71.474289,41.75064499906],[-71.474182,41.75060299906],[-71.474083,41.75055699906],[-71.473885,41.75045399906],[-71.473755,41.75037799906],[-71.473572,41.75027799906],[-71.47345,41.75022099906],[-71.473274,41.75012999906],[-71.473221,41.75009499906],[-71.473045,41.74999599906],[-71.472778,41.74984699906],[-71.472687,41.74980199906],[-71.472496,41.74972899906],[-71.472298,41.74966799906],[-71.472198,41.74964099906],[-71.472099,41.74962199906],[-71.471825,41.74960699906],[-71.471542,41.74960299906],[-71.471069,41.74961899906],[-71.470665,41.74962599906],[-71.470276,41.74963799906],[-71.470047,41.74963799906],[-71.470024,41.74895099906],[-71.469994,41.74837499906],[-71.469963,41.74828699906],[-71.469902,41.74819199906],[-71.469879,41.74816499906],[-71.469765,41.74803199906],[-71.46949,41.74789399906],[-71.469185,41.74774899906],[-71.468857,41.74754699906],[-71.468735,41.74748999906],[-71.468147,41.74815399906],[-71.467751,41.74862299906],[-71.467601,41.74881699906],[-71.467354,41.74913399906],[-71.466812,41.74979399906],[-71.466309,41.75044599906],[-71.465706,41.75123999906],[-71.465111,41.75198699906],[-71.464523,41.75275799906],[-71.464302,41.75304399906],[-71.464249,41.75310499906],[-71.464172,41.75321199906],[-71.464272,41.75326499906],[-71.4645,41.75337599906],[-71.464579,41.75341999906],[-71.464676,41.75347499906],[-71.464882,41.75356299906],[-71.465942,41.75408199906],[-71.468033,41.75514199906],[-71.468369,41.75529499906],[-71.468765,41.75548599906],[-71.469093,41.75562999906],[-71.469353,41.75572999906],[-71.469528,41.75579799906],[-71.469971,41.75595099906],[-71.470428,41.75608799906],[-71.470833,41.75619899906],[-71.471245,41.75629799906],[-71.471664,41.75638599906],[-71.472137,41.75646999906],[-71.472497,41.75652099906],[-71.472618,41.75653799906],[-71.473106,41.75659199906],[-71.473473,41.75661799906],[-71.473846,41.75663799906],[-71.47422,41.75664899906],[-71.474609,41.75665299906],[-71.474998,41.75664499906],[-71.475273,41.75664899906],[-71.475388,41.75662999906],[-71.475479,41.75662199906],[-71.475555,41.75646999906],[-71.475594,41.75640499906],[-71.475632,41.75634399906],[-71.475693,41.75621799906],[-71.475761,41.75609599906],[-71.475822,41.75596999906],[-71.475868,41.75589799906],[-71.47607,41.75550999906],[-71.476112,41.75543199906],[-71.476425,41.75478699906],[-71.476601,41.75444799906],[-71.476852,41.75397099906],[-71.476944,41.75374999906],[-71.476997,41.75357099906],[-71.477104,41.75317399906],[-71.477432,41.75196499906]]]}}"}, +{"type": "blockgroup", "typeId": 144003, "areaId": 29040, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.48302,41.73459399906],[-71.482666,41.73480599906],[-71.482521,41.73489799906],[-71.482452,41.73494699906],[-71.482307,41.73504599906],[-71.48217,41.73514899906],[-71.482025,41.73524499906],[-71.481668,41.73546799906],[-71.481415,41.73561899906],[-71.4813,41.73569499906],[-71.481102,41.73584399906],[-71.48101,41.73592399906],[-71.480804,41.73617599906],[-71.480751,41.73625599906],[-71.48069,41.73633599906],[-71.480644,41.73641599906],[-71.480461,41.73677399906],[-71.480179,41.73751399906],[-71.480125,41.73767499906],[-71.479851,41.73827699906],[-71.479828,41.73830799906],[-71.479568,41.73865499906],[-71.479256,41.73895999906],[-71.478935,41.73921199906],[-71.478821,41.73928799906],[-71.478607,41.73940899906],[-71.478439,41.73950199906],[-71.47802,41.73965499906],[-71.477364,41.73988699906],[-71.477144,41.73995699906],[-71.476517,41.74015799906],[-71.475838,41.74039799906],[-71.475533,41.74053599906],[-71.475113,41.74079099906],[-71.47459,41.74125899906],[-71.474358,41.74146699906],[-71.474075,41.74171799906],[-71.47346,41.74239299906],[-71.47287,41.74304199906],[-71.471642,41.74441899906],[-71.471581,41.74432399906],[-71.471527,41.74438899906],[-71.470871,41.74507499906],[-71.470757,41.74521599906],[-71.470215,41.74582699906],[-71.469643,41.74645599906],[-71.469124,41.74705899906],[-71.468735,41.74748999906],[-71.468857,41.74754699906],[-71.469185,41.74774899906],[-71.46949,41.74789399906],[-71.469765,41.74803199906],[-71.469879,41.74816499906],[-71.469902,41.74819199906],[-71.469963,41.74828699906],[-71.469994,41.74837499906],[-71.470024,41.74895099906],[-71.470047,41.74963799906],[-71.470276,41.74963799906],[-71.470665,41.74962599906],[-71.471069,41.74961899906],[-71.471542,41.74960299906],[-71.471825,41.74960699906],[-71.472099,41.74962199906],[-71.472198,41.74964099906],[-71.472298,41.74966799906],[-71.472496,41.74972899906],[-71.472687,41.74980199906],[-71.472778,41.74984699906],[-71.473045,41.74999599906],[-71.473221,41.75009499906],[-71.473274,41.75012999906],[-71.47345,41.75022099906],[-71.473572,41.75027799906],[-71.473755,41.75037799906],[-71.473885,41.75045399906],[-71.474083,41.75055699906],[-71.474182,41.75060299906],[-71.474289,41.75064499906],[-71.474388,41.75068699906],[-71.474495,41.75072099906],[-71.474686,41.75076299906],[-71.474785,41.75077799906],[-71.474899,41.75080499906],[-71.475021,41.75082799906],[-71.475136,41.75085799906],[-71.475204,41.75088099906],[-71.475349,41.75094199906],[-71.475426,41.75098399906],[-71.475578,41.75108699906],[-71.475639,41.75115599906],[-71.475693,41.75122799906],[-71.475807,41.75136599906],[-71.475868,41.75142699906],[-71.476059,41.75158699906],[-71.476128,41.75163299906],[-71.476242,41.75169799906],[-71.476357,41.75175099906],[-71.476479,41.75180099906],[-71.476631,41.75184199906],[-71.476952,41.75190399906],[-71.477432,41.75196499906],[-71.477104,41.75317399906],[-71.476997,41.75357099906],[-71.476944,41.75374999906],[-71.476852,41.75397099906],[-71.476601,41.75444799906],[-71.476425,41.75478699906],[-71.476112,41.75543199906],[-71.47607,41.75550999906],[-71.475868,41.75589799906],[-71.475822,41.75596999906],[-71.475761,41.75609599906],[-71.475693,41.75621799906],[-71.475632,41.75634399906],[-71.475594,41.75640499906],[-71.475555,41.75646999906],[-71.475479,41.75662199906],[-71.475769,41.75659199906],[-71.475845,41.75658799906],[-71.476468,41.75650599906],[-71.47651,41.75636499906],[-71.476738,41.75558199906],[-71.476956,41.75483199906],[-71.477327,41.75361299906],[-71.477497,41.75305199906],[-71.477545,41.75290099906],[-71.478126,41.75107899906],[-71.478217,41.75075799906],[-71.478936,41.74822199906],[-71.479182,41.74729799906],[-71.479434,41.74658399906],[-71.479475,41.74645499906],[-71.479496,41.74638999906],[-71.479568,41.74616299906],[-71.479853,41.74515799906],[-71.479865,41.74512099906],[-71.480055,41.74452699906],[-71.480141,41.74422399906],[-71.480333,41.74354399906],[-71.480422,41.74322699906],[-71.480604,41.74258499906],[-71.480657,41.74241399906],[-71.480875,41.74171699906],[-71.481125,41.74091499906],[-71.481538,41.73954899906],[-71.481844,41.73853799906],[-71.481873,41.73844499906],[-71.482398,41.73675299906],[-71.482754,41.73545299906],[-71.48302,41.73459399906]]]}}"}, +{"type": "blockgroup", "typeId": 145011, "areaId": 29041, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.504063,41.76522099906],[-71.504042,41.76515799906],[-71.503857,41.76505499906],[-71.503853,41.76499599906],[-71.503816,41.76493799906],[-71.503759,41.76489999906],[-71.503718,41.76485299906],[-71.503655,41.76480999906],[-71.503383,41.76466099906],[-71.50331,41.76465699906],[-71.503244,41.76468399906],[-71.503162,41.76467799906],[-71.503116,41.76464299906],[-71.503132,41.76458699906],[-71.50319,41.76455099906],[-71.503235,41.76450399906],[-71.503239,41.76444499906],[-71.503236,41.76438499906],[-71.503204,41.76432899906],[-71.50314,41.76429399906],[-71.503071,41.76427599906],[-71.502922,41.76425499906],[-71.502864,41.76421899906],[-71.502828,41.76415799906],[-71.502816,41.76409399906],[-71.502815,41.76391199906],[-71.502778,41.76385999906],[-71.502702,41.76385199906],[-71.502552,41.76384799906],[-71.502543,41.76379399906],[-71.502587,41.76374099906],[-71.502603,41.76368999906],[-71.502602,41.76357799906],[-71.502569,41.76352799906],[-71.502514,41.76348999906],[-71.50245,41.76345799906],[-71.502412,41.76340099906],[-71.502363,41.76329499906],[-71.502323,41.76323699906],[-71.502257,41.76321899906],[-71.502012,41.76322099906],[-71.501933,41.76320599906],[-71.50181,41.76313199906],[-71.501756,41.76308999906],[-71.501726,41.76303399906],[-71.501725,41.76285599906],[-71.501746,41.76279999906],[-71.501793,41.76275399906],[-71.501771,41.76263399906],[-71.501767,41.76256599906],[-71.501753,41.76250199906],[-71.501692,41.76238499906],[-71.501645,41.76232499906],[-71.501502,41.76223399906],[-71.501438,41.76220499906],[-71.501361,41.76220199906],[-71.501282,41.76218699906],[-71.501209,41.76215999906],[-71.501177,41.76213699906],[-71.501188,41.76208199906],[-71.50123,41.76202699906],[-71.501237,41.76196299906],[-71.501254,41.76190199906],[-71.501255,41.76183999906],[-71.501245,41.76178399906],[-71.501129,41.76167899906],[-71.501086,41.76163499906],[-71.501024,41.76160199906],[-71.500859,41.76154299906],[-71.500709,41.76150399906],[-71.500635,41.76147299906],[-71.500569,41.76142599906],[-71.500474,41.76133199906],[-71.500404,41.76130599906],[-71.50032,41.76130399906],[-71.500233,41.76129699906],[-71.50016,41.76126399906],[-71.50015,41.76120199906],[-71.500161,41.76113999906],[-71.50024,41.76109599906],[-71.50031,41.76107799906],[-71.500368,41.76104399906],[-71.500362,41.76098799906],[-71.500309,41.76093099906],[-71.500255,41.76089099906],[-71.500113,41.76075799906],[-71.500051,41.76071299906],[-71.499969,41.76070899906],[-71.499879,41.76068099906],[-71.499677,41.76056399906],[-71.499628,41.76052199906],[-71.499612,41.76046599906],[-71.499633,41.76041099906],[-71.499693,41.76035499906],[-71.499765,41.76030899906],[-71.499825,41.76027599906],[-71.499849,41.76024799906],[-71.499878,41.76019399906],[-71.499873,41.76013699906],[-71.499787,41.76002699906],[-71.499729,41.75999099906],[-71.499734,41.75993699906],[-71.499778,41.75988499906],[-71.499797,41.75983399906],[-71.49976,41.75976999906],[-71.499711,41.75972999906],[-71.49957,41.75964999906],[-71.499501,41.75963099906],[-71.499332,41.75962999906],[-71.499242,41.75962399906],[-71.499188,41.75958099906],[-71.499178,41.75951499906],[-71.499209,41.75947199906],[-71.499299,41.75943499906],[-71.499366,41.75941399906],[-71.499417,41.75937499906],[-71.499423,41.75931899906],[-71.499399,41.75924199906],[-71.499255,41.75906599906],[-71.499178,41.75894999906],[-71.499088,41.75877899906],[-71.499056,41.75872899906],[-71.498998,41.75868499906],[-71.498843,41.75860699906],[-71.498775,41.75856399906],[-71.498725,41.75851099906],[-71.498688,41.75845399906],[-71.498658,41.75838999906],[-71.498636,41.75831899906],[-71.498627,41.75792799906],[-71.498607,41.75786899906],[-71.498564,41.75781199906],[-71.498507,41.75775099906],[-71.498436,41.75769299906],[-71.498288,41.75760099906],[-71.498246,41.75755199906],[-71.498144,41.75739599906],[-71.4981,41.75735199906],[-71.497997,41.75727299906],[-71.497967,41.75719499906],[-71.497979,41.75713099906],[-71.498034,41.75699499906],[-71.498033,41.75692899906],[-71.49802,41.75685999906],[-71.497995,41.75679499906],[-71.49796,41.75673399906],[-71.497912,41.75667499906],[-71.497799,41.75656399906],[-71.497754,41.75651099906],[-71.497681,41.75639599906],[-71.497576,41.75631799906],[-71.497539,41.75635299906],[-71.497513,41.75638899906],[-71.497463,41.75639799906],[-71.497467,41.75636699906],[-71.497482,41.75629799906],[-71.497513,41.75623299906],[-71.497559,41.75616499906],[-71.49762,41.75610399906],[-71.497688,41.75603899906],[-71.497849,41.75585899906],[-71.497887,41.75580999906],[-71.49791,41.75575999906],[-71.497932,41.75572999906],[-71.498009,41.75552699906],[-71.498024,41.75545099906],[-71.498032,41.75537899906],[-71.498032,41.75530599906],[-71.498024,41.75522199906],[-71.497978,41.75505399906],[-71.497971,41.75496299906],[-71.497971,41.75470399906],[-71.497978,41.75463099906],[-71.497978,41.75456199906],[-71.498047,41.75429499906],[-71.498424,41.75363399906],[-71.498493,41.75356399906],[-71.498597,41.75350799906],[-71.498444,41.75350599906],[-71.498383,41.75350199906],[-71.498314,41.75348999906],[-71.498253,41.75347499906],[-71.498184,41.75344499906],[-71.498062,41.75336799906],[-71.497803,41.75321999906],[-71.496788,41.75254099906],[-71.495972,41.75202199906],[-71.495956,41.75200699906],[-71.495445,41.75169399906],[-71.495178,41.75151099906],[-71.494835,41.75126599906],[-71.494431,41.75088099906],[-71.493637,41.75028199906],[-71.493538,41.75020999906],[-71.493484,41.75017899906],[-71.493362,41.75013699906],[-71.493301,41.75012599906],[-71.49321,41.75012199906],[-71.493142,41.75012699906],[-71.493073,41.75013399906],[-71.493027,41.75014499906],[-71.49295,41.75018299906],[-71.491951,41.75052299906],[-71.491881,41.75054799906],[-71.491519,41.75068199906],[-71.491486,41.75069399906],[-71.491249,41.75081299906],[-71.490532,41.75115199906],[-71.490467,41.75117999906],[-71.489952,41.75139999906],[-71.489916,41.75141399906],[-71.489563,41.75155599906],[-71.489182,41.75144599906],[-71.488449,41.75120199906],[-71.488174,41.75109499906],[-71.487724,41.75089999906],[-71.487495,41.75081299906],[-71.487473,41.75080499906],[-71.487392,41.75075799906],[-71.487289,41.75069799906],[-71.486122,41.74974799906],[-71.486,41.74963399906],[-71.485475,41.74916099906],[-71.485382,41.74907699906],[-71.485222,41.74896999906],[-71.485184,41.74893999906],[-71.485077,41.74887799906],[-71.484978,41.74882899906],[-71.484771,41.74875099906],[-71.484459,41.74865699906],[-71.48439,41.74863399906],[-71.484314,41.74861499906],[-71.483772,41.74846599906],[-71.48372,41.74845099906],[-71.483474,41.74883199906],[-71.48338,41.74897799906],[-71.4833,41.74909999906],[-71.482668,41.75007899906],[-71.482559,41.75024799906],[-71.482193,41.75084299906],[-71.482124,41.75096899906],[-71.481888,41.75140399906],[-71.481649,41.75182999906],[-71.481575,41.75196499906],[-71.481293,41.75252899906],[-71.481202,41.75274099906],[-71.48101,41.75318899906],[-71.480759,41.75385999906],[-71.48067,41.75412099906],[-71.48053,41.75453599906],[-71.480338,41.75523799906],[-71.480263,41.75556599906],[-71.480253,41.75560699906],[-71.480225,41.75572599906],[-71.480118,41.75619099906],[-71.480118,41.75626799906],[-71.480003,41.75697699906],[-71.479919,41.75774399906],[-71.479889,41.75826299906],[-71.479874,41.75851399906],[-71.479874,41.75928499906],[-71.479935,41.76039499906],[-71.480034,41.76107799906],[-71.480087,41.76150099906],[-71.480099,41.76156099906],[-71.480309,41.76256799906],[-71.480316,41.76259999906],[-71.480576,41.76351199906],[-71.480896,41.76441599906],[-71.481262,41.76530499906],[-71.481689,41.76617399906],[-71.48195,41.76664499906],[-71.481956,41.76666299906],[-71.482025,41.76678099906],[-71.48217,41.76703299906],[-71.482697,41.76787199906],[-71.483109,41.76845599906],[-71.483551,41.76903199906],[-71.484016,41.76959199906],[-71.48439,41.77001599906],[-71.485168,41.77083999906],[-71.485558,41.77122099906],[-71.485985,41.77161799906],[-71.486351,41.77192699906],[-71.486725,41.77222099906],[-71.487167,41.77255599906],[-71.487762,41.77297199906],[-71.488182,41.77324299906],[-71.488388,41.77336699906],[-71.48912,41.77298299906],[-71.489191,41.77294599906],[-71.491656,41.77273899906],[-71.499078,41.76873299906],[-71.499531,41.76848799906],[-71.501897,41.76706699906],[-71.502569,41.76666199906],[-71.503094,41.76634799906],[-71.50359,41.76582499906],[-71.504032,41.76535899906],[-71.504034,41.76527699906],[-71.504063,41.76522099906]]]}}"}, +{"type": "blockgroup", "typeId": 145012, "areaId": 29042, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.522476,41.77803899906],[-71.522372,41.77795899906],[-71.521637,41.77739299906],[-71.521515,41.77735899906],[-71.521423,41.77729799906],[-71.521301,41.77701999906],[-71.521141,41.77667199906],[-71.521004,41.77630599906],[-71.520889,41.77607299906],[-71.520393,41.77523399906],[-71.520103,41.77472299906],[-71.519737,41.77412399906],[-71.520702,41.77362899906],[-71.520674,41.77356299906],[-71.520657,41.77349899906],[-71.520624,41.77344299906],[-71.520613,41.77325399906],[-71.520596,41.77319299906],[-71.520595,41.77313799906],[-71.520566,41.77309099906],[-71.520496,41.77307099906],[-71.520436,41.77303499906],[-71.520329,41.77293699906],[-71.520288,41.77289199906],[-71.520273,41.77283399906],[-71.520281,41.77277499906],[-71.520377,41.77268399906],[-71.520368,41.77261399906],[-71.520337,41.77255799906],[-71.520148,41.77227399906],[-71.520126,41.77221699906],[-71.520034,41.77212599906],[-71.519999,41.77207099906],[-71.519876,41.77192999906],[-71.519676,41.77179999906],[-71.519595,41.77177999906],[-71.519535,41.77173599906],[-71.519499,41.77167999906],[-71.519449,41.77163799906],[-71.519383,41.77160199906],[-71.519301,41.77158099906],[-71.519144,41.77157399906],[-71.519062,41.77154699906],[-71.518905,41.77150799906],[-71.518827,41.77149699906],[-71.518725,41.77149799906],[-71.518647,41.77151999906],[-71.518582,41.77154799906],[-71.518488,41.77154999906],[-71.518412,41.77155799906],[-71.51833,41.77154299906],[-71.518252,41.77151599906],[-71.518186,41.77148399906],[-71.51814,41.77143799906],[-71.518055,41.77133899906],[-71.51796,41.77117099906],[-71.517847,41.77093499906],[-71.517829,41.77087499906],[-71.517817,41.77080799906],[-71.51777,41.77075299906],[-71.517709,41.77071999906],[-71.517658,41.77067699906],[-71.517596,41.77063699906],[-71.517528,41.77060499906],[-71.517451,41.77058999906],[-71.517408,41.77055399906],[-71.517408,41.77046899906],[-71.517353,41.77042299906],[-71.517288,41.77040299906],[-71.517201,41.77040399906],[-71.517133,41.77039299906],[-71.517106,41.77033699906],[-71.517107,41.77027499906],[-71.517076,41.77022299906],[-71.517036,41.77016799906],[-71.516967,41.77013399906],[-71.516895,41.77014899906],[-71.516827,41.77014599906],[-71.516789,41.77009399906],[-71.516736,41.77004699906],[-71.516667,41.77005699906],[-71.516629,41.77008499906],[-71.516598,41.77005499906],[-71.516586,41.76999199906],[-71.516548,41.76993999906],[-71.51641,41.76987499906],[-71.516276,41.76982399906],[-71.516202,41.76978199906],[-71.516128,41.76974799906],[-71.516067,41.76975599906],[-71.516014,41.76980499906],[-71.51597,41.76983299906],[-71.515899,41.76980999906],[-71.515837,41.76977899906],[-71.515811,41.76972499906],[-71.515762,41.76968199906],[-71.515687,41.76964099906],[-71.515646,41.76961399906],[-71.51562,41.76956499906],[-71.515535,41.76953599906],[-71.515444,41.76951899906],[-71.515374,41.76948999906],[-71.515322,41.76944199906],[-71.51527,41.76939699906],[-71.51523,41.76934799906],[-71.51519,41.76923899906],[-71.515136,41.76919699906],[-71.5151,41.76914899906],[-71.515061,41.76912499906],[-71.515022,41.76910899906],[-71.514966,41.76906399906],[-71.514901,41.76902999906],[-71.514749,41.76901199906],[-71.514703,41.76896899906],[-71.514662,41.76893899906],[-71.514591,41.76896199906],[-71.514518,41.76896799906],[-71.514438,41.76896199906],[-71.514352,41.76896199906],[-71.514271,41.76899399906],[-71.514215,41.76903699906],[-71.514149,41.76903999906],[-71.514036,41.76895799906],[-71.513881,41.76891799906],[-71.513804,41.76889199906],[-71.513646,41.76886899906],[-71.513595,41.76882999906],[-71.513553,41.76878299906],[-71.513518,41.76873299906],[-71.513447,41.76870999906],[-71.513373,41.76870299906],[-71.513347,41.76869399906],[-71.513381,41.76865999906],[-71.513373,41.76863499906],[-71.513309,41.76862899906],[-71.513294,41.76862799906],[-71.513131,41.76862199906],[-71.513056,41.76859199906],[-71.512974,41.76859199906],[-71.512905,41.76861299906],[-71.512833,41.76862799906],[-71.512684,41.76863099906],[-71.512617,41.76865899906],[-71.512534,41.76865999906],[-71.51245,41.76863499906],[-71.512397,41.76859599906],[-71.512345,41.76854999906],[-71.512301,41.76854999906],[-71.512245,41.76860399906],[-71.512157,41.76862799906],[-71.511738,41.76862099906],[-71.511658,41.76861599906],[-71.51159,41.76864099906],[-71.511525,41.76865399906],[-71.511438,41.76864199906],[-71.511358,41.76861499906],[-71.511241,41.76852899906],[-71.511184,41.76848199906],[-71.51114,41.76843299906],[-71.511087,41.76838599906],[-71.511029,41.76838099906],[-71.510991,41.76842099906],[-71.510915,41.76841599906],[-71.510799,41.76838699906],[-71.510682,41.76835699906],[-71.510657,41.76834599906],[-71.510611,41.76834699906],[-71.510529,41.76833899906],[-71.510465,41.76830499906],[-71.510401,41.76826399906],[-71.510348,41.76822199906],[-71.510199,41.76818099906],[-71.510187,41.76811999906],[-71.51015,41.76806799906],[-71.510097,41.76802399906],[-71.510019,41.76800099906],[-71.509954,41.76796499906],[-71.509943,41.76790999906],[-71.509978,41.76786099906],[-71.510002,41.76779899906],[-71.509994,41.76774199906],[-71.509944,41.76769299906],[-71.509879,41.76765999906],[-71.509801,41.76763399906],[-71.509647,41.76763599906],[-71.509555,41.76773199906],[-71.509508,41.76772299906],[-71.509476,41.76766399906],[-71.509435,41.76763199906],[-71.509353,41.76763999906],[-71.50927,41.76771699906],[-71.508969,41.76771899906],[-71.508913,41.76775399906],[-71.508855,41.76776599906],[-71.508792,41.76773599906],[-71.508717,41.76771199906],[-71.508558,41.76768899906],[-71.508492,41.76765999906],[-71.508441,41.76761999906],[-71.508382,41.76758899906],[-71.508371,41.76753399906],[-71.508322,41.76748899906],[-71.508274,41.76747199906],[-71.508261,41.76743399906],[-71.508187,41.76740999906],[-71.508051,41.76736699906],[-71.508018,41.76734499906],[-71.507967,41.76732799906],[-71.507884,41.76732799906],[-71.507799,41.76731999906],[-71.507738,41.76728799906],[-71.507647,41.76718899906],[-71.507598,41.76714399906],[-71.507534,41.76710199906],[-71.507472,41.76706999906],[-71.507251,41.76698899906],[-71.507163,41.76697199906],[-71.507087,41.76698799906],[-71.507014,41.76702199906],[-71.506937,41.76704799906],[-71.506777,41.76705199906],[-71.506698,41.76702899906],[-71.506567,41.76693199906],[-71.506501,41.76688799906],[-71.506478,41.76683799906],[-71.506477,41.76677999906],[-71.506451,41.76672099906],[-71.506391,41.76669599906],[-71.506305,41.76671199906],[-71.506268,41.76671399906],[-71.506208,41.76668899906],[-71.506188,41.76665699906],[-71.506125,41.76652399906],[-71.506072,41.76648499906],[-71.506004,41.76644699906],[-71.505937,41.76642599906],[-71.505853,41.76641499906],[-71.50577,41.76639499906],[-71.505696,41.76636899906],[-71.505629,41.76630399906],[-71.505543,41.76623699906],[-71.505468,41.76620699906],[-71.50539,41.76620599906],[-71.50535,41.76618899906],[-71.505325,41.76613499906],[-71.505323,41.76606699906],[-71.505294,41.76593599906],[-71.505241,41.76588199906],[-71.505187,41.76583899906],[-71.505156,41.76578699906],[-71.505114,41.76573999906],[-71.504961,41.76573799906],[-71.504888,41.76573299906],[-71.504816,41.76571499906],[-71.504762,41.76567499906],[-71.504709,41.76562299906],[-71.504676,41.76561999906],[-71.504227,41.76593399906],[-71.504143,41.76598699906],[-71.504051,41.76601399906],[-71.503883,41.76601799906],[-71.503815,41.76599499906],[-71.50359,41.76582499906],[-71.503094,41.76634799906],[-71.502569,41.76666199906],[-71.501897,41.76706699906],[-71.499531,41.76848799906],[-71.499078,41.76873299906],[-71.491656,41.77273899906],[-71.489191,41.77294599906],[-71.48912,41.77298299906],[-71.488388,41.77336699906],[-71.488556,41.77346799906],[-71.489075,41.77376899906],[-71.489601,41.77404399906],[-71.490234,41.77435299906],[-71.491669,41.77500199906],[-71.49321,41.77569199906],[-71.493629,41.77588699906],[-71.494246,41.77616399906],[-71.495773,41.77684799906],[-71.496422,41.77714899906],[-71.496918,41.77739699906],[-71.497467,41.77770199906],[-71.497787,41.77789799906],[-71.497955,41.77799999906],[-71.498222,41.77817899906],[-71.498772,41.77857199906],[-71.499306,41.77898399906],[-71.499825,41.77944899906],[-71.500328,41.77994199906],[-71.500702,41.78037299906],[-71.501175,41.78029599906],[-71.501633,41.78023899906],[-71.501884,41.78022399906],[-71.502151,41.78021599906],[-71.502251,41.78021999906],[-71.50235,41.78021999906],[-71.502823,41.78026999906],[-71.503014,41.78029299906],[-71.503448,41.78038399906],[-71.504387,41.78059399906],[-71.504639,41.78066299906],[-71.505271,41.78080799906],[-71.505318,41.78081899906],[-71.50602,41.78098699906],[-71.506241,41.78103599906],[-71.506615,41.78112399906],[-71.507065,41.78123199906],[-71.507202,41.78126499906],[-71.507706,41.78137599906],[-71.508041,41.78145599906],[-71.508354,41.78152499906],[-71.508926,41.78166199906],[-71.509438,41.78177999906],[-71.50946,41.78178799906],[-71.509865,41.78187599906],[-71.510132,41.78191799906],[-71.510307,41.78193699906],[-71.510559,41.78195199906],[-71.510719,41.78195599906],[-71.51107,41.78192499906],[-71.511159,41.78191099906],[-71.511383,41.78187599906],[-71.511515,41.78184299906],[-71.512039,41.78166199906],[-71.512496,41.78149599906],[-71.513069,41.78128799906],[-71.514587,41.78072699906],[-71.515144,41.78052499906],[-71.516228,41.78013599906],[-71.516897,41.77990999906],[-71.517343,41.77975899906],[-71.518683,41.77930599906],[-71.519165,41.77914399906],[-71.51946,41.77904699906],[-71.519676,41.77897499906],[-71.519921,41.77889599906],[-71.520676,41.77864099906],[-71.52078,41.77860599906],[-71.52152,41.77835799906],[-71.522476,41.77803899906]]]}}"}, +{"type": "blockgroup", "typeId": 145013, "areaId": 29043, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.535545,41.77178599906],[-71.535271,41.77166699906],[-71.534569,41.77133199906],[-71.533943,41.77104199906],[-71.533386,41.77075999906],[-71.532784,41.77043499906],[-71.53244,41.77017599906],[-71.532356,41.77009999906],[-71.532337,41.77007999906],[-71.532135,41.76986699906],[-71.532028,41.76973299906],[-71.531914,41.76957699906],[-71.531799,41.76943599906],[-71.531761,41.76938199906],[-71.531593,41.76917999906],[-71.531425,41.76902399906],[-71.531311,41.76890599906],[-71.530975,41.76863499906],[-71.530846,41.76854299906],[-71.530518,41.76834499906],[-71.530106,41.76820099906],[-71.529884,41.76812399906],[-71.529633,41.76800899906],[-71.529358,41.76787199906],[-71.529205,41.76778399906],[-71.528831,41.76753999906],[-71.52845,41.76726499906],[-71.52829,41.76715499906],[-71.528076,41.76703599906],[-71.527901,41.76695599906],[-71.527733,41.76689099906],[-71.527542,41.76682999906],[-71.527336,41.76677699906],[-71.526474,41.76662799906],[-71.526306,41.76658199906],[-71.526176,41.76653299906],[-71.526047,41.76647599906],[-71.525658,41.76628499906],[-71.525444,41.76620099906],[-71.525276,41.76614399906],[-71.52507,41.76609399906],[-71.524841,41.76604499906],[-71.524628,41.76600999906],[-71.524404,41.76598099906],[-71.5243,41.76596799906],[-71.523994,41.76595399906],[-71.523969,41.76595299906],[-71.523843,41.76594699906],[-71.523727,41.76594199906],[-71.523567,41.76591899906],[-71.523453,41.76588799906],[-71.523354,41.76585399906],[-71.523239,41.76579699906],[-71.523102,41.76573599906],[-71.522926,41.76566699906],[-71.522469,41.76553299906],[-71.522255,41.76546099906],[-71.522095,41.76539999906],[-71.522011,41.76535399906],[-71.521935,41.76529699906],[-71.521866,41.76522799906],[-71.52169,41.76501799906],[-71.521584,41.76491499906],[-71.521439,41.76478999906],[-71.521286,41.76466799906],[-71.521179,41.76459499906],[-71.520935,41.76445399906],[-71.520592,41.76429699906],[-71.520416,41.76419399906],[-71.520226,41.76407199906],[-71.519981,41.76386599906],[-71.519753,41.76366399906],[-71.5196,41.76349999906],[-71.519386,41.76323299906],[-71.519119,41.76288599906],[-71.518936,41.76266099906],[-71.518929,41.76264199906],[-71.51886,41.76252699906],[-71.51884,41.76246499906],[-71.518806,41.76235999906],[-71.518791,41.76229099906],[-71.518799,41.76209999906],[-71.518829,41.76177599906],[-71.51886,41.76151699906],[-71.518867,41.76136799906],[-71.518639,41.75865599906],[-71.518593,41.75843799906],[-71.518562,41.75831999906],[-71.518517,41.75819399906],[-71.51841,41.75799899906],[-71.518318,41.75786999906],[-71.518211,41.75774399906],[-71.51785,41.75729399906],[-71.517555,41.75692699906],[-71.517303,41.75656099906],[-71.516289,41.75538599906],[-71.51535,41.75426499906],[-71.514793,41.75356499906],[-71.514751,41.75351199906],[-71.514488,41.75318099906],[-71.514381,41.75308599906],[-71.514275,41.75302899906],[-71.514183,41.75296799906],[-71.514137,41.75301399906],[-71.51403,41.75310499906],[-71.513893,41.75319699906],[-71.512688,41.75385699906],[-71.512413,41.75400199906],[-71.512268,41.75406999906],[-71.512154,41.75411199906],[-71.511859,41.75420699906],[-71.511604,41.75428799906],[-71.511284,41.75435299906],[-71.510948,41.75439799906],[-71.510773,41.75441699906],[-71.510597,41.75442899906],[-71.510399,41.75443299906],[-71.509995,41.75442499906],[-71.508156,41.75432599906],[-71.507484,41.75427599906],[-71.507164,41.75420799906],[-71.50673,41.75409499906],[-71.506561,41.75405099906],[-71.506058,41.75394399906],[-71.505783,41.75387999906],[-71.505554,41.75383799906],[-71.504781,41.75371799906],[-71.503456,41.75351299906],[-71.502251,41.75331499906],[-71.50209,41.75328399906],[-71.501953,41.75326199906],[-71.501831,41.75324599906],[-71.501656,41.75323499906],[-71.50148,41.75323899906],[-71.500282,41.75332299906],[-71.499107,41.75340999906],[-71.498856,41.75343699906],[-71.498706,41.75346999906],[-71.498597,41.75350799906],[-71.498493,41.75356399906],[-71.498424,41.75363399906],[-71.498047,41.75429499906],[-71.497978,41.75456199906],[-71.497978,41.75463099906],[-71.497971,41.75470399906],[-71.497971,41.75496299906],[-71.497978,41.75505399906],[-71.498024,41.75522199906],[-71.498032,41.75530599906],[-71.498032,41.75537899906],[-71.498024,41.75545099906],[-71.498009,41.75552699906],[-71.497932,41.75572999906],[-71.49791,41.75575999906],[-71.497887,41.75580999906],[-71.497849,41.75585899906],[-71.497688,41.75603899906],[-71.49762,41.75610399906],[-71.497559,41.75616499906],[-71.497513,41.75623299906],[-71.497482,41.75629799906],[-71.497467,41.75636699906],[-71.497463,41.75639799906],[-71.497513,41.75638899906],[-71.497539,41.75635299906],[-71.497576,41.75631799906],[-71.497681,41.75639599906],[-71.497754,41.75651099906],[-71.497799,41.75656399906],[-71.497912,41.75667499906],[-71.49796,41.75673399906],[-71.497995,41.75679499906],[-71.49802,41.75685999906],[-71.498033,41.75692899906],[-71.498034,41.75699499906],[-71.497979,41.75713099906],[-71.497967,41.75719499906],[-71.497997,41.75727299906],[-71.4981,41.75735199906],[-71.498144,41.75739599906],[-71.498246,41.75755199906],[-71.498288,41.75760099906],[-71.498436,41.75769299906],[-71.498507,41.75775099906],[-71.498564,41.75781199906],[-71.498607,41.75786899906],[-71.498627,41.75792799906],[-71.498636,41.75831899906],[-71.498658,41.75838999906],[-71.498688,41.75845399906],[-71.498725,41.75851099906],[-71.498775,41.75856399906],[-71.498843,41.75860699906],[-71.498998,41.75868499906],[-71.499056,41.75872899906],[-71.499088,41.75877899906],[-71.499178,41.75894999906],[-71.499255,41.75906599906],[-71.499399,41.75924199906],[-71.499423,41.75931899906],[-71.499417,41.75937499906],[-71.499366,41.75941399906],[-71.499299,41.75943499906],[-71.499209,41.75947199906],[-71.499178,41.75951499906],[-71.499188,41.75958099906],[-71.499242,41.75962399906],[-71.499332,41.75962999906],[-71.499501,41.75963099906],[-71.49957,41.75964999906],[-71.499711,41.75972999906],[-71.49976,41.75976999906],[-71.499797,41.75983399906],[-71.499778,41.75988499906],[-71.499734,41.75993699906],[-71.499729,41.75999099906],[-71.499787,41.76002699906],[-71.499873,41.76013699906],[-71.499878,41.76019399906],[-71.499849,41.76024799906],[-71.499825,41.76027599906],[-71.499765,41.76030899906],[-71.499693,41.76035499906],[-71.499633,41.76041099906],[-71.499612,41.76046599906],[-71.499628,41.76052199906],[-71.499677,41.76056399906],[-71.499879,41.76068099906],[-71.499969,41.76070899906],[-71.500051,41.76071299906],[-71.500113,41.76075799906],[-71.500255,41.76089099906],[-71.500309,41.76093099906],[-71.500362,41.76098799906],[-71.500368,41.76104399906],[-71.50031,41.76107799906],[-71.50024,41.76109599906],[-71.500161,41.76113999906],[-71.50015,41.76120199906],[-71.50016,41.76126399906],[-71.500233,41.76129699906],[-71.50032,41.76130399906],[-71.500404,41.76130599906],[-71.500474,41.76133199906],[-71.500569,41.76142599906],[-71.500635,41.76147299906],[-71.500709,41.76150399906],[-71.500859,41.76154299906],[-71.501024,41.76160199906],[-71.501086,41.76163499906],[-71.501129,41.76167899906],[-71.501245,41.76178399906],[-71.501255,41.76183999906],[-71.501254,41.76190199906],[-71.501237,41.76196299906],[-71.50123,41.76202699906],[-71.501188,41.76208199906],[-71.501177,41.76213699906],[-71.501209,41.76215999906],[-71.501282,41.76218699906],[-71.501361,41.76220199906],[-71.501438,41.76220499906],[-71.501502,41.76223399906],[-71.501645,41.76232499906],[-71.501692,41.76238499906],[-71.501753,41.76250199906],[-71.501767,41.76256599906],[-71.501771,41.76263399906],[-71.501793,41.76275399906],[-71.501746,41.76279999906],[-71.501725,41.76285599906],[-71.501726,41.76303399906],[-71.501756,41.76308999906],[-71.50181,41.76313199906],[-71.501933,41.76320599906],[-71.502012,41.76322099906],[-71.502257,41.76321899906],[-71.502323,41.76323699906],[-71.502363,41.76329499906],[-71.502412,41.76340099906],[-71.50245,41.76345799906],[-71.502514,41.76348999906],[-71.502569,41.76352799906],[-71.502602,41.76357799906],[-71.502603,41.76368999906],[-71.502587,41.76374099906],[-71.502543,41.76379399906],[-71.502552,41.76384799906],[-71.502702,41.76385199906],[-71.502778,41.76385999906],[-71.502815,41.76391199906],[-71.502816,41.76409399906],[-71.502828,41.76415799906],[-71.502864,41.76421899906],[-71.502922,41.76425499906],[-71.503071,41.76427599906],[-71.50314,41.76429399906],[-71.503204,41.76432899906],[-71.503236,41.76438499906],[-71.503239,41.76444499906],[-71.503235,41.76450399906],[-71.50319,41.76455099906],[-71.503132,41.76458699906],[-71.503116,41.76464299906],[-71.503162,41.76467799906],[-71.503244,41.76468399906],[-71.50331,41.76465699906],[-71.503383,41.76466099906],[-71.503655,41.76480999906],[-71.503718,41.76485299906],[-71.503759,41.76489999906],[-71.503816,41.76493799906],[-71.503853,41.76499599906],[-71.503857,41.76505499906],[-71.504042,41.76515799906],[-71.504063,41.76522099906],[-71.504034,41.76527699906],[-71.504032,41.76535899906],[-71.50359,41.76582499906],[-71.503815,41.76599499906],[-71.503883,41.76601799906],[-71.504051,41.76601399906],[-71.504143,41.76598699906],[-71.504227,41.76593399906],[-71.504676,41.76561999906],[-71.504709,41.76562299906],[-71.504762,41.76567499906],[-71.504816,41.76571499906],[-71.504888,41.76573299906],[-71.504961,41.76573799906],[-71.505114,41.76573999906],[-71.505156,41.76578699906],[-71.505187,41.76583899906],[-71.505241,41.76588199906],[-71.505294,41.76593599906],[-71.505323,41.76606699906],[-71.505325,41.76613499906],[-71.50535,41.76618899906],[-71.50539,41.76620599906],[-71.505468,41.76620699906],[-71.505543,41.76623699906],[-71.505629,41.76630399906],[-71.505696,41.76636899906],[-71.50577,41.76639499906],[-71.505853,41.76641499906],[-71.505937,41.76642599906],[-71.506004,41.76644699906],[-71.506072,41.76648499906],[-71.506125,41.76652399906],[-71.506188,41.76665699906],[-71.506208,41.76668899906],[-71.506268,41.76671399906],[-71.506305,41.76671199906],[-71.506391,41.76669599906],[-71.506451,41.76672099906],[-71.506477,41.76677999906],[-71.506478,41.76683799906],[-71.506501,41.76688799906],[-71.506567,41.76693199906],[-71.506698,41.76702899906],[-71.506777,41.76705199906],[-71.506937,41.76704799906],[-71.507014,41.76702199906],[-71.507087,41.76698799906],[-71.507163,41.76697199906],[-71.507251,41.76698899906],[-71.507472,41.76706999906],[-71.507534,41.76710199906],[-71.507598,41.76714399906],[-71.507647,41.76718899906],[-71.507738,41.76728799906],[-71.507799,41.76731999906],[-71.507884,41.76732799906],[-71.507967,41.76732799906],[-71.508018,41.76734499906],[-71.508051,41.76736699906],[-71.508187,41.76740999906],[-71.508261,41.76743399906],[-71.508274,41.76747199906],[-71.508322,41.76748899906],[-71.508371,41.76753399906],[-71.508382,41.76758899906],[-71.508441,41.76761999906],[-71.508492,41.76765999906],[-71.508558,41.76768899906],[-71.508717,41.76771199906],[-71.508792,41.76773599906],[-71.508855,41.76776599906],[-71.508913,41.76775399906],[-71.508969,41.76771899906],[-71.50927,41.76771699906],[-71.509353,41.76763999906],[-71.509435,41.76763199906],[-71.509476,41.76766399906],[-71.509508,41.76772299906],[-71.509555,41.76773199906],[-71.509647,41.76763599906],[-71.509801,41.76763399906],[-71.509879,41.76765999906],[-71.509944,41.76769299906],[-71.509994,41.76774199906],[-71.510002,41.76779899906],[-71.509978,41.76786099906],[-71.509943,41.76790999906],[-71.509954,41.76796499906],[-71.510019,41.76800099906],[-71.510097,41.76802399906],[-71.51015,41.76806799906],[-71.510187,41.76811999906],[-71.510199,41.76818099906],[-71.510348,41.76822199906],[-71.510401,41.76826399906],[-71.510465,41.76830499906],[-71.510529,41.76833899906],[-71.510611,41.76834699906],[-71.510657,41.76834599906],[-71.510682,41.76835699906],[-71.510799,41.76838699906],[-71.510915,41.76841599906],[-71.510991,41.76842099906],[-71.511029,41.76838099906],[-71.511087,41.76838599906],[-71.51114,41.76843299906],[-71.511184,41.76848199906],[-71.511241,41.76852899906],[-71.511358,41.76861499906],[-71.511438,41.76864199906],[-71.511525,41.76865399906],[-71.51159,41.76864099906],[-71.511658,41.76861599906],[-71.511738,41.76862099906],[-71.512157,41.76862799906],[-71.512245,41.76860399906],[-71.512301,41.76854999906],[-71.512345,41.76854999906],[-71.512397,41.76859599906],[-71.51245,41.76863499906],[-71.512534,41.76865999906],[-71.512617,41.76865899906],[-71.512684,41.76863099906],[-71.512833,41.76862799906],[-71.512905,41.76861299906],[-71.512974,41.76859199906],[-71.513056,41.76859199906],[-71.513131,41.76862199906],[-71.513294,41.76862799906],[-71.513309,41.76862899906],[-71.513373,41.76863499906],[-71.513381,41.76865999906],[-71.513347,41.76869399906],[-71.513373,41.76870299906],[-71.513447,41.76870999906],[-71.513518,41.76873299906],[-71.513553,41.76878299906],[-71.513595,41.76882999906],[-71.513646,41.76886899906],[-71.513804,41.76889199906],[-71.513881,41.76891799906],[-71.514036,41.76895799906],[-71.514149,41.76903999906],[-71.514215,41.76903699906],[-71.514271,41.76899399906],[-71.514352,41.76896199906],[-71.514438,41.76896199906],[-71.514518,41.76896799906],[-71.514591,41.76896199906],[-71.514662,41.76893899906],[-71.514703,41.76896899906],[-71.514749,41.76901199906],[-71.514901,41.76902999906],[-71.514966,41.76906399906],[-71.515022,41.76910899906],[-71.515061,41.76912499906],[-71.5151,41.76914899906],[-71.515136,41.76919699906],[-71.51519,41.76923899906],[-71.51523,41.76934799906],[-71.51527,41.76939699906],[-71.515322,41.76944199906],[-71.515374,41.76948999906],[-71.515444,41.76951899906],[-71.515535,41.76953599906],[-71.51562,41.76956499906],[-71.515646,41.76961399906],[-71.515687,41.76964099906],[-71.515762,41.76968199906],[-71.515811,41.76972499906],[-71.515837,41.76977899906],[-71.515899,41.76980999906],[-71.51597,41.76983299906],[-71.516014,41.76980499906],[-71.516067,41.76975599906],[-71.516128,41.76974799906],[-71.516202,41.76978199906],[-71.516276,41.76982399906],[-71.51641,41.76987499906],[-71.516548,41.76993999906],[-71.516586,41.76999199906],[-71.516598,41.77005499906],[-71.516629,41.77008499906],[-71.516667,41.77005699906],[-71.516736,41.77004699906],[-71.516789,41.77009399906],[-71.516827,41.77014599906],[-71.516895,41.77014899906],[-71.516967,41.77013399906],[-71.517036,41.77016799906],[-71.517076,41.77022299906],[-71.517107,41.77027499906],[-71.517106,41.77033699906],[-71.517133,41.77039299906],[-71.517201,41.77040399906],[-71.517288,41.77040299906],[-71.517353,41.77042299906],[-71.517408,41.77046899906],[-71.517408,41.77055399906],[-71.517451,41.77058999906],[-71.517528,41.77060499906],[-71.517596,41.77063699906],[-71.517658,41.77067699906],[-71.517709,41.77071999906],[-71.51777,41.77075299906],[-71.517817,41.77080799906],[-71.517829,41.77087499906],[-71.517847,41.77093499906],[-71.51796,41.77117099906],[-71.518055,41.77133899906],[-71.51814,41.77143799906],[-71.518186,41.77148399906],[-71.518252,41.77151599906],[-71.51833,41.77154299906],[-71.518412,41.77155799906],[-71.518488,41.77154999906],[-71.518582,41.77154799906],[-71.518647,41.77151999906],[-71.518725,41.77149799906],[-71.518827,41.77149699906],[-71.518905,41.77150799906],[-71.519062,41.77154699906],[-71.519144,41.77157399906],[-71.519301,41.77158099906],[-71.519383,41.77160199906],[-71.519449,41.77163799906],[-71.519499,41.77167999906],[-71.519535,41.77173599906],[-71.519595,41.77177999906],[-71.519676,41.77179999906],[-71.519876,41.77192999906],[-71.519999,41.77207099906],[-71.520034,41.77212599906],[-71.520126,41.77221699906],[-71.520148,41.77227399906],[-71.520337,41.77255799906],[-71.520368,41.77261399906],[-71.520377,41.77268399906],[-71.520281,41.77277499906],[-71.520273,41.77283399906],[-71.520288,41.77289199906],[-71.520329,41.77293699906],[-71.520436,41.77303499906],[-71.520496,41.77307099906],[-71.520566,41.77309099906],[-71.520595,41.77313799906],[-71.520596,41.77319299906],[-71.520613,41.77325399906],[-71.520624,41.77344299906],[-71.520657,41.77349899906],[-71.520674,41.77356299906],[-71.520702,41.77362899906],[-71.519737,41.77412399906],[-71.520103,41.77472299906],[-71.520393,41.77523399906],[-71.520889,41.77607299906],[-71.521004,41.77630599906],[-71.521141,41.77667199906],[-71.521301,41.77701999906],[-71.521423,41.77729799906],[-71.521515,41.77735899906],[-71.521637,41.77739299906],[-71.522372,41.77795899906],[-71.522476,41.77803899906],[-71.522949,41.77788199906],[-71.523098,41.77783099906],[-71.523249,41.77777999906],[-71.523357,41.77774299906],[-71.523903,41.77755699906],[-71.524353,41.77740899906],[-71.524408,41.77738999906],[-71.524719,41.77728299906],[-71.525085,41.77712199906],[-71.525383,41.77697399906],[-71.526146,41.77653899906],[-71.526626,41.77625199906],[-71.526817,41.77613399906],[-71.527397,41.77579899906],[-71.527567,41.77569799906],[-71.528625,41.77507399906],[-71.529015,41.77485999906],[-71.529327,41.77469999906],[-71.529633,41.77456299906],[-71.529861,41.77445599906],[-71.530731,41.77407499906],[-71.531715,41.77366299906],[-71.532341,41.77339199906],[-71.532867,41.77315899906],[-71.533234,41.77297599906],[-71.53326,41.77296199906],[-71.533829,41.77266299906],[-71.535545,41.77178599906]]]}}"}, +{"type": "blockgroup", "typeId": 145021, "areaId": 29044, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.500702,41.78037299906],[-71.500328,41.77994199906],[-71.499825,41.77944899906],[-71.499306,41.77898399906],[-71.498772,41.77857199906],[-71.498222,41.77817899906],[-71.497955,41.77799999906],[-71.497787,41.77789799906],[-71.497467,41.77770199906],[-71.496918,41.77739699906],[-71.496422,41.77714899906],[-71.495773,41.77684799906],[-71.494246,41.77616399906],[-71.493629,41.77588699906],[-71.49321,41.77569199906],[-71.491669,41.77500199906],[-71.490234,41.77435299906],[-71.489601,41.77404399906],[-71.489075,41.77376899906],[-71.488556,41.77346799906],[-71.488388,41.77336699906],[-71.488182,41.77324299906],[-71.487762,41.77297199906],[-71.487167,41.77255599906],[-71.486725,41.77222099906],[-71.486351,41.77192699906],[-71.485985,41.77161799906],[-71.485558,41.77122099906],[-71.485168,41.77083999906],[-71.48439,41.77001599906],[-71.484016,41.76959199906],[-71.483551,41.76903199906],[-71.483109,41.76845599906],[-71.482697,41.76787199906],[-71.48217,41.76703299906],[-71.482025,41.76678099906],[-71.48201,41.76704799906],[-71.482025,41.76739099906],[-71.482037,41.76753399906],[-71.482124,41.76848599906],[-71.482132,41.76857799906],[-71.482132,41.76888699906],[-71.482124,41.76901599906],[-71.482109,41.76914599906],[-71.482079,41.76929099906],[-71.482043,41.76942299906],[-71.482033,41.76943999906],[-71.481934,41.76972599906],[-71.481819,41.76998499906],[-71.481804,41.77003099906],[-71.48175,41.77015299906],[-71.481659,41.77040099906],[-71.481628,41.77050799906],[-71.481606,41.77061799906],[-71.48159,41.77067199906],[-71.48156,41.77085899906],[-71.481544,41.77099199906],[-71.481522,41.77148099906],[-71.481522,41.77182399906],[-71.481407,41.77178599906],[-71.481207,41.77172999906],[-71.480202,41.77145399906],[-71.479416,41.77122499906],[-71.478485,41.77096899906],[-71.478012,41.77082799906],[-71.477234,41.77061099906],[-71.476326,41.77035499906],[-71.476097,41.77028299906],[-71.476036,41.77027099906],[-71.475861,41.77024499906],[-71.475578,41.77021799906],[-71.47506,41.77018699906],[-71.474993,41.77017699906],[-71.474815,41.77014899906],[-71.473644,41.76998299906],[-71.472984,41.76988999906],[-71.473068,41.76970699906],[-71.473206,41.76936699906],[-71.473732,41.76779899906],[-71.473907,41.76722699906],[-71.473286,41.76712199906],[-71.473231,41.76731999906],[-71.472942,41.76822699906],[-71.472438,41.76962699906],[-71.472211,41.77020999906],[-71.472013,41.77063999906],[-71.47191,41.77086299906],[-71.471888,41.77091299906],[-71.471528,41.77166299906],[-71.471147,41.77240399906],[-71.470738,41.77313899906],[-71.470563,41.77342099906],[-71.4711,41.77361299906],[-71.472122,41.77377699906],[-71.472519,41.77384899906],[-71.47261,41.77386099906],[-71.472641,41.77386099906],[-71.472496,41.77444499906],[-71.472321,41.77510099906],[-71.472153,41.77574499906],[-71.471977,41.77638599906],[-71.471809,41.77703899906],[-71.471649,41.77768299906],[-71.471474,41.77833599906],[-71.471809,41.77835499906],[-71.473465,41.77852599906],[-71.474365,41.77862199906],[-71.475243,41.77872499906],[-71.476006,41.77880499906],[-71.476173,41.77880499906],[-71.476364,41.77890399906],[-71.476532,41.77899899906],[-71.476662,41.77904499906],[-71.476753,41.77908299906],[-71.476959,41.77915199906],[-71.477272,41.77915599906],[-71.477455,41.77914799906],[-71.477603,41.77912999906],[-71.477715,41.77911799906],[-71.477982,41.77907599906],[-71.479447,41.77886799906],[-71.47995,41.77879699906],[-71.480202,41.77874799906],[-71.480438,41.77870899906],[-71.480698,41.77865199906],[-71.480843,41.77862199906],[-71.481316,41.77851499906],[-71.48188,41.77837799906],[-71.482269,41.77828599906],[-71.482396,41.77826399906],[-71.482491,41.77824799906],[-71.482605,41.77823299906],[-71.482841,41.77822099906],[-71.482956,41.77822499906],[-71.483075,41.77823399906],[-71.48317,41.77824799906],[-71.483281,41.77826699906],[-71.483383,41.77828599906],[-71.483597,41.77833899906],[-71.483742,41.77838099906],[-71.4842,41.77853799906],[-71.484589,41.77866399906],[-71.484856,41.77873199906],[-71.484993,41.77876299906],[-71.485237,41.77880499906],[-71.485497,41.77883499906],[-71.485527,41.77883499906],[-71.485756,41.77884699906],[-71.485847,41.77885099906],[-71.48642,41.77883499906],[-71.48764,41.77879299906],[-71.488136,41.77878199906],[-71.488693,41.77876699906],[-71.489014,41.77878199906],[-71.489212,41.77880499906],[-71.489632,41.77890399906],[-71.489777,41.77894599906],[-71.489899,41.77899199906],[-71.490074,41.77907199906],[-71.490219,41.77914799906],[-71.490479,41.77931199906],[-71.490974,41.77967099906],[-71.491234,41.77986499906],[-71.491539,41.78006699906],[-71.49189,41.78023899906],[-71.492241,41.78039899906],[-71.49259,41.78054499906],[-71.492943,41.78069299906],[-71.493324,41.78082299906],[-71.493599,41.78089899906],[-71.493629,41.78090299906],[-71.493912,41.78097199906],[-71.494077,41.78100799906],[-71.494158,41.78102599906],[-71.494454,41.78107699906],[-71.494789,41.78111299906],[-71.495082,41.78113199906],[-71.495499,41.78113199906],[-71.495758,41.78112399906],[-71.496109,41.78110099906],[-71.4963,41.78108199906],[-71.49646,41.78105899906],[-71.496857,41.78100199906],[-71.49736,41.78091399906],[-71.497527,41.78088799906],[-71.497856,41.78083799906],[-71.49826,41.78077299906],[-71.498537,41.78072499906],[-71.498641,41.78070699906],[-71.498856,41.78066999906],[-71.49926,41.78060499906],[-71.499958,41.78048999906],[-71.500397,41.78041799906],[-71.500702,41.78037299906]]]}}"}, +{"type": "blockgroup", "typeId": 145022, "areaId": 29045, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.48372,41.74845099906],[-71.483467,41.74838299906],[-71.48336,41.74835999906],[-71.482948,41.74824099906],[-71.482658,41.74813799906],[-71.482475,41.74805099906],[-71.482246,41.74789799906],[-71.481796,41.74751699906],[-71.48143,41.74722699906],[-71.481094,41.74695199906],[-71.480843,41.74673499906],[-71.480637,41.74656699906],[-71.480469,41.74648999906],[-71.480296,41.74644999906],[-71.480109,41.74643399906],[-71.479703,41.74643399906],[-71.479536,41.74639599906],[-71.479496,41.74638999906],[-71.479475,41.74645499906],[-71.479434,41.74658399906],[-71.479182,41.74729799906],[-71.478936,41.74822199906],[-71.478217,41.75075799906],[-71.478126,41.75107899906],[-71.477545,41.75290099906],[-71.477497,41.75305199906],[-71.477327,41.75361299906],[-71.476956,41.75483199906],[-71.476738,41.75558199906],[-71.47651,41.75636499906],[-71.476468,41.75650599906],[-71.476421,41.75666999906],[-71.476106,41.75772099906],[-71.475879,41.75859599906],[-71.475854,41.75869199906],[-71.475313,41.76035399906],[-71.475267,41.76050799906],[-71.47524,41.76060499906],[-71.475091,41.76111699906],[-71.475077,41.76116299906],[-71.475004,41.76141699906],[-71.474883,41.76181699906],[-71.474731,41.76232199906],[-71.47447,41.76316699906],[-71.474205,41.76409399906],[-71.473938,41.76489599906],[-71.473613,41.76594299906],[-71.473286,41.76712199906],[-71.473907,41.76722699906],[-71.473732,41.76779899906],[-71.473206,41.76936699906],[-71.473068,41.76970699906],[-71.472984,41.76988999906],[-71.473644,41.76998299906],[-71.474815,41.77014899906],[-71.474993,41.77017699906],[-71.47506,41.77018699906],[-71.475578,41.77021799906],[-71.475861,41.77024499906],[-71.476036,41.77027099906],[-71.476097,41.77028299906],[-71.476326,41.77035499906],[-71.477234,41.77061099906],[-71.478012,41.77082799906],[-71.478485,41.77096899906],[-71.479416,41.77122499906],[-71.480202,41.77145399906],[-71.481207,41.77172999906],[-71.481407,41.77178599906],[-71.481522,41.77182399906],[-71.481522,41.77148099906],[-71.481544,41.77099199906],[-71.48156,41.77085899906],[-71.48159,41.77067199906],[-71.481606,41.77061799906],[-71.481628,41.77050799906],[-71.481659,41.77040099906],[-71.48175,41.77015299906],[-71.481804,41.77003099906],[-71.481819,41.76998499906],[-71.481934,41.76972599906],[-71.482033,41.76943999906],[-71.482043,41.76942299906],[-71.482079,41.76929099906],[-71.482109,41.76914599906],[-71.482124,41.76901599906],[-71.482132,41.76888699906],[-71.482132,41.76857799906],[-71.482124,41.76848599906],[-71.482037,41.76753399906],[-71.482025,41.76739099906],[-71.48201,41.76704799906],[-71.482025,41.76678099906],[-71.481956,41.76666299906],[-71.48195,41.76664499906],[-71.481689,41.76617399906],[-71.481262,41.76530499906],[-71.480896,41.76441599906],[-71.480576,41.76351199906],[-71.480316,41.76259999906],[-71.480309,41.76256799906],[-71.480099,41.76156099906],[-71.480087,41.76150099906],[-71.480034,41.76107799906],[-71.479935,41.76039499906],[-71.479874,41.75928499906],[-71.479874,41.75851399906],[-71.479889,41.75826299906],[-71.479919,41.75774399906],[-71.480003,41.75697699906],[-71.480118,41.75626799906],[-71.480118,41.75619099906],[-71.480225,41.75572599906],[-71.480253,41.75560699906],[-71.480263,41.75556599906],[-71.480338,41.75523799906],[-71.48053,41.75453599906],[-71.48067,41.75412099906],[-71.480759,41.75385999906],[-71.48101,41.75318899906],[-71.481202,41.75274099906],[-71.481293,41.75252899906],[-71.481575,41.75196499906],[-71.481649,41.75182999906],[-71.481888,41.75140399906],[-71.482124,41.75096899906],[-71.482193,41.75084299906],[-71.482559,41.75024799906],[-71.482668,41.75007899906],[-71.4833,41.74909999906],[-71.48338,41.74897799906],[-71.483474,41.74883199906],[-71.48372,41.74845099906]]]}}"}, +{"type": "blockgroup", "typeId": 145023, "areaId": 29046, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.476532,41.77899899906],[-71.476364,41.77890399906],[-71.476173,41.77880499906],[-71.476006,41.77880499906],[-71.475243,41.77872499906],[-71.474365,41.77862199906],[-71.473465,41.77852599906],[-71.471809,41.77835499906],[-71.471474,41.77833599906],[-71.471649,41.77768299906],[-71.471809,41.77703899906],[-71.471977,41.77638599906],[-71.472153,41.77574499906],[-71.472321,41.77510099906],[-71.472496,41.77444499906],[-71.472641,41.77386099906],[-71.47261,41.77386099906],[-71.472519,41.77384899906],[-71.472122,41.77377699906],[-71.4711,41.77361299906],[-71.470563,41.77342099906],[-71.470529,41.77347599906],[-71.470483,41.77355699906],[-71.470195,41.77406199906],[-71.469722,41.77478499906],[-71.46948,41.77514499906],[-71.469059,41.77574299906],[-71.468641,41.77630799906],[-71.468623,41.77633099906],[-71.468608,41.77634999906],[-71.468589,41.77637399906],[-71.468546,41.77643199906],[-71.468163,41.77691799906],[-71.467905,41.77722899906],[-71.46779,41.77736199906],[-71.467641,41.77753699906],[-71.46721,41.77801699906],[-71.466811,41.77845299906],[-71.466777,41.77849299906],[-71.465793,41.77950199906],[-71.46524,41.78005199906],[-71.465222,41.78006999906],[-71.464928,41.78035099906],[-71.464629,41.78062899906],[-71.464331,41.78089599906],[-71.464282,41.78093799906],[-71.463724,41.78142299906],[-71.462789,41.78219599906],[-71.461105,41.78346999906],[-71.462044,41.78330599906],[-71.463905,41.78299699906],[-71.464249,41.78292799906],[-71.464325,41.78290899906],[-71.4645,41.78284799906],[-71.464684,41.78277599906],[-71.464874,41.78269199906],[-71.465279,41.78251599906],[-71.465836,41.78224199906],[-71.466209,41.78214299906],[-71.467102,41.78192899906],[-71.469193,41.78142499906],[-71.469345,41.78139099906],[-71.469833,41.78128399906],[-71.470047,41.78124199906],[-71.470245,41.78119999906],[-71.470726,41.78111599906],[-71.470818,41.78110899906],[-71.471123,41.78107499906],[-71.471298,41.78105499906],[-71.471634,41.78102499906],[-71.472191,41.78097199906],[-71.472263,41.78096399906],[-71.472294,41.78096099906],[-71.472336,41.78095599906],[-71.472382,41.78094899906],[-71.472885,41.78090699906],[-71.473289,41.78083799906],[-71.473801,41.78073099906],[-71.473999,41.78068199906],[-71.47419,41.78063599906],[-71.474792,41.78040299906],[-71.475075,41.78023099906],[-71.475273,41.78011299906],[-71.475334,41.78007099906],[-71.475838,41.77968599906],[-71.476028,41.77950299906],[-71.476288,41.77925099906],[-71.476532,41.77899899906]]]}}"}, +{"type": "blockgroup", "typeId": 146001, "areaId": 29047, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.523848,41.76586699906],[-71.522963,41.76323499906],[-71.522764,41.76264299906],[-71.52244,41.76168099906],[-71.520552,41.75606599906],[-71.520216,41.75506699906],[-71.518679,41.75039899906],[-71.518622,41.75023499906],[-71.518582,41.75010499906],[-71.518459,41.74972799906],[-71.51689,41.74491399906],[-71.516445,41.74354699906],[-71.515548,41.74079599906],[-71.515398,41.74054899906],[-71.51466,41.73932899906],[-71.513353,41.73723499906],[-71.512176,41.73534999906],[-71.512344,41.73532899906],[-71.512408,41.73531899906],[-71.51313,41.73520299906],[-71.513329,41.73517599906],[-71.513465,41.73516699906],[-71.51358,41.73516099906],[-71.513779,41.73516499906],[-71.513977,41.73518799906],[-71.514336,41.73525999906],[-71.514488,41.73530199906],[-71.514626,41.73535499906],[-71.514793,41.73539699906],[-71.51487,41.73541999906],[-71.515358,41.73467999906],[-71.515701,41.73420299906],[-71.515961,41.73366199906],[-71.516167,41.73319999906],[-71.51627,41.73297299906],[-71.516348,41.73280099906],[-71.516396,41.73269699906],[-71.517189,41.73218199906],[-71.517845,41.73176599906],[-71.518303,41.73148299906],[-71.518616,41.73127699906],[-71.519257,41.73088499906],[-71.519663,41.73061899906],[-71.519413,41.73046899906],[-71.518705,41.73050799906],[-71.516861,41.73060799906],[-71.513294,41.73069399906],[-71.513225,41.73069699906],[-71.513183,41.73069799906],[-71.512331,41.73072699906],[-71.511985,41.73073999906],[-71.509616,41.73082199906],[-71.509486,41.73082599906],[-71.509355,41.73083099906],[-71.508643,41.73085599906],[-71.507805,41.73088499906],[-71.504616,41.73099599906],[-71.503659,41.73101799906],[-71.501832,41.73106099906],[-71.497942,41.73115099906],[-71.497849,41.73114999906],[-71.496226,41.73120899906],[-71.495797,41.73122399906],[-71.494834,41.73125699906],[-71.494694,41.73126199906],[-71.494364,41.73127299906],[-71.494144,41.73128099906],[-71.493751,41.73129499906],[-71.493451,41.73130499906],[-71.490677,41.73140099906],[-71.490182,41.73141799906],[-71.488246,41.73147199906],[-71.487054,41.73150499906],[-71.486835,41.73151099906],[-71.486568,41.73151899906],[-71.486718,41.73170199906],[-71.48756,41.73271599906],[-71.487946,41.73318899906],[-71.488304,41.73367299906],[-71.488472,41.73391699906],[-71.48867,41.73424899906],[-71.488711,41.73432399906],[-71.488853,41.73458499906],[-71.489014,41.73492399906],[-71.489029,41.73495899906],[-71.489151,41.73524899906],[-71.489273,41.73557699906],[-71.489372,41.73590899906],[-71.489426,41.73618699906],[-71.48951,41.73674799906],[-71.489548,41.73734999906],[-71.489548,41.73765199906],[-71.48954,41.73792299906],[-71.48951,41.73819399906],[-71.489471,41.73846099906],[-71.489365,41.73896399906],[-71.489296,41.73921199906],[-71.48922,41.73945599906],[-71.489037,41.73992899906],[-71.48901,41.73998499906],[-71.488914,41.74018499906],[-71.488785,41.74043299906],[-71.488678,41.74062699906],[-71.488541,41.74086799906],[-71.487907,41.74188599906],[-71.487831,41.74199699906],[-71.485954,41.74493399906],[-71.485578,41.74552399906],[-71.485046,41.74635699906],[-71.485008,41.74641599906],[-71.484902,41.74658599906],[-71.484009,41.74800899906],[-71.48372,41.74845099906],[-71.483772,41.74846599906],[-71.484314,41.74861499906],[-71.48439,41.74863399906],[-71.484459,41.74865699906],[-71.484771,41.74875099906],[-71.484978,41.74882899906],[-71.485077,41.74887799906],[-71.485184,41.74893999906],[-71.485222,41.74896999906],[-71.485382,41.74907699906],[-71.485475,41.74916099906],[-71.486,41.74963399906],[-71.486122,41.74974799906],[-71.487289,41.75069799906],[-71.487392,41.75075799906],[-71.487473,41.75080499906],[-71.487495,41.75081299906],[-71.487724,41.75089999906],[-71.488174,41.75109499906],[-71.488449,41.75120199906],[-71.489182,41.75144599906],[-71.489563,41.75155599906],[-71.489916,41.75141399906],[-71.489952,41.75139999906],[-71.490467,41.75117999906],[-71.490532,41.75115199906],[-71.491249,41.75081299906],[-71.491486,41.75069399906],[-71.491519,41.75068199906],[-71.491881,41.75054799906],[-71.491951,41.75052299906],[-71.49295,41.75018299906],[-71.493027,41.75014499906],[-71.493073,41.75013399906],[-71.493142,41.75012699906],[-71.49321,41.75012199906],[-71.493301,41.75012599906],[-71.493362,41.75013699906],[-71.493484,41.75017899906],[-71.493538,41.75020999906],[-71.493637,41.75028199906],[-71.494431,41.75088099906],[-71.494835,41.75126599906],[-71.495178,41.75151099906],[-71.495445,41.75169399906],[-71.495956,41.75200699906],[-71.495972,41.75202199906],[-71.496788,41.75254099906],[-71.497803,41.75321999906],[-71.498062,41.75336799906],[-71.498184,41.75344499906],[-71.498253,41.75347499906],[-71.498314,41.75348999906],[-71.498383,41.75350199906],[-71.498444,41.75350599906],[-71.498597,41.75350799906],[-71.498706,41.75346999906],[-71.498856,41.75343699906],[-71.499107,41.75340999906],[-71.500282,41.75332299906],[-71.50148,41.75323899906],[-71.501656,41.75323499906],[-71.501831,41.75324599906],[-71.501953,41.75326199906],[-71.50209,41.75328399906],[-71.502251,41.75331499906],[-71.503456,41.75351299906],[-71.504781,41.75371799906],[-71.505554,41.75383799906],[-71.505783,41.75387999906],[-71.506058,41.75394399906],[-71.506561,41.75405099906],[-71.50673,41.75409499906],[-71.507164,41.75420799906],[-71.507484,41.75427599906],[-71.508156,41.75432599906],[-71.509995,41.75442499906],[-71.510399,41.75443299906],[-71.510597,41.75442899906],[-71.510773,41.75441699906],[-71.510948,41.75439799906],[-71.511284,41.75435299906],[-71.511604,41.75428799906],[-71.511859,41.75420699906],[-71.512154,41.75411199906],[-71.512268,41.75406999906],[-71.512413,41.75400199906],[-71.512688,41.75385699906],[-71.513893,41.75319699906],[-71.51403,41.75310499906],[-71.514137,41.75301399906],[-71.514183,41.75296799906],[-71.514275,41.75302899906],[-71.514381,41.75308599906],[-71.514488,41.75318099906],[-71.514751,41.75351199906],[-71.514793,41.75356499906],[-71.51535,41.75426499906],[-71.516289,41.75538599906],[-71.517303,41.75656099906],[-71.517555,41.75692699906],[-71.51785,41.75729399906],[-71.518211,41.75774399906],[-71.518318,41.75786999906],[-71.51841,41.75799899906],[-71.518517,41.75819399906],[-71.518562,41.75831999906],[-71.518593,41.75843799906],[-71.518639,41.75865599906],[-71.518867,41.76136799906],[-71.51886,41.76151699906],[-71.518829,41.76177599906],[-71.518799,41.76209999906],[-71.518791,41.76229099906],[-71.518806,41.76235999906],[-71.51884,41.76246499906],[-71.51886,41.76252699906],[-71.518929,41.76264199906],[-71.518936,41.76266099906],[-71.519119,41.76288599906],[-71.519386,41.76323299906],[-71.5196,41.76349999906],[-71.519753,41.76366399906],[-71.519981,41.76386599906],[-71.520226,41.76407199906],[-71.520416,41.76419399906],[-71.520592,41.76429699906],[-71.520935,41.76445399906],[-71.521179,41.76459499906],[-71.521286,41.76466799906],[-71.521439,41.76478999906],[-71.521584,41.76491499906],[-71.52169,41.76501799906],[-71.521866,41.76522799906],[-71.521935,41.76529699906],[-71.522011,41.76535399906],[-71.522095,41.76539999906],[-71.522255,41.76546099906],[-71.522469,41.76553299906],[-71.522926,41.76566699906],[-71.523102,41.76573599906],[-71.523239,41.76579699906],[-71.523354,41.76585399906],[-71.523453,41.76588799906],[-71.523567,41.76591899906],[-71.523727,41.76594199906],[-71.523843,41.76594699906],[-71.523848,41.76586699906]]]}}"}, +{"type": "blockgroup", "typeId": 146002, "areaId": 29048, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.55929,41.78934399906],[-71.558893,41.78696099906],[-71.558264,41.78318199906],[-71.557796,41.78038599906],[-71.557652,41.77951999906],[-71.55672,41.77503599906],[-71.556427,41.77401099906],[-71.556044,41.77178499906],[-71.555615,41.76933399906],[-71.555231,41.76749699906],[-71.554766,41.76527099906],[-71.554619,41.76528199906],[-71.553955,41.76533899906],[-71.553207,41.76539199906],[-71.551872,41.76550699906],[-71.55072,41.76559099906],[-71.549454,41.76569399906],[-71.548866,41.76575499906],[-71.548401,41.76583099906],[-71.548031,41.76590099906],[-71.54763,41.76597599906],[-71.54702,41.76610599906],[-71.546356,41.76625399906],[-71.545601,41.76641499906],[-71.545059,41.76653699906],[-71.544762,41.76663199906],[-71.544357,41.76680399906],[-71.544044,41.76695599906],[-71.543365,41.76731899906],[-71.543256,41.76738299906],[-71.54277,41.76766999906],[-71.542442,41.76782999906],[-71.54216,41.76795199906],[-71.541824,41.76808499906],[-71.541389,41.76826899906],[-71.541127,41.76839799906],[-71.541008,41.76845599906],[-71.540779,41.76858499906],[-71.540558,41.76872299906],[-71.540451,41.76879499906],[-71.540344,41.76885999906],[-71.540245,41.76892899906],[-71.539742,41.76925999906],[-71.53949,41.76943599906],[-71.539291,41.76956199906],[-71.538177,41.77030199906],[-71.537949,41.77046599906],[-71.537643,41.77065999906],[-71.537544,41.77071399906],[-71.53746,41.77076699906],[-71.537277,41.77086599906],[-71.537018,41.77101499906],[-71.536697,41.77117199906],[-71.536514,41.77126999906],[-71.536308,41.77138099906],[-71.536194,41.77144599906],[-71.53609,41.77149799906],[-71.536072,41.77151099906],[-71.535545,41.77178599906],[-71.533829,41.77266299906],[-71.53326,41.77296199906],[-71.533234,41.77297599906],[-71.532867,41.77315899906],[-71.532341,41.77339199906],[-71.531715,41.77366299906],[-71.530731,41.77407499906],[-71.529861,41.77445599906],[-71.529633,41.77456299906],[-71.529327,41.77469999906],[-71.529015,41.77485999906],[-71.528625,41.77507399906],[-71.527567,41.77569799906],[-71.527397,41.77579899906],[-71.526817,41.77613399906],[-71.526626,41.77625199906],[-71.526146,41.77653899906],[-71.525383,41.77697399906],[-71.525085,41.77712199906],[-71.524719,41.77728299906],[-71.524408,41.77738999906],[-71.524353,41.77740899906],[-71.523903,41.77755699906],[-71.523357,41.77774299906],[-71.523249,41.77777999906],[-71.523098,41.77783099906],[-71.522949,41.77788199906],[-71.522476,41.77803899906],[-71.52152,41.77835799906],[-71.52078,41.77860599906],[-71.520676,41.77864099906],[-71.519921,41.77889599906],[-71.519676,41.77897499906],[-71.51946,41.77904699906],[-71.519165,41.77914399906],[-71.518683,41.77930599906],[-71.517343,41.77975899906],[-71.516897,41.77990999906],[-71.516228,41.78013599906],[-71.515144,41.78052499906],[-71.514587,41.78072699906],[-71.513069,41.78128799906],[-71.512496,41.78149599906],[-71.512039,41.78166199906],[-71.511515,41.78184299906],[-71.511383,41.78187599906],[-71.511159,41.78191099906],[-71.51107,41.78192499906],[-71.510719,41.78195599906],[-71.510559,41.78195199906],[-71.510307,41.78193699906],[-71.510132,41.78191799906],[-71.509865,41.78187599906],[-71.50946,41.78178799906],[-71.509438,41.78177999906],[-71.508926,41.78166199906],[-71.508354,41.78152499906],[-71.508041,41.78145599906],[-71.507706,41.78137599906],[-71.507202,41.78126499906],[-71.507065,41.78123199906],[-71.506615,41.78112399906],[-71.506241,41.78103599906],[-71.50602,41.78098699906],[-71.505318,41.78081899906],[-71.505271,41.78080799906],[-71.504639,41.78066299906],[-71.504387,41.78059399906],[-71.503448,41.78038399906],[-71.503014,41.78029299906],[-71.502823,41.78026999906],[-71.50235,41.78021999906],[-71.502251,41.78021999906],[-71.502151,41.78021599906],[-71.501884,41.78022399906],[-71.501633,41.78023899906],[-71.501175,41.78029599906],[-71.500702,41.78037299906],[-71.500862,41.78054799906],[-71.501266,41.78108199906],[-71.501794,41.78186699906],[-71.501839,41.78193299906],[-71.502046,41.78225799906],[-71.50222,41.78253199906],[-71.502663,41.78321099906],[-71.503357,41.78430199906],[-71.504311,41.78578899906],[-71.505165,41.78720099906],[-71.505951,41.78865099906],[-71.506012,41.78878399906],[-71.506049,41.78885099906],[-71.506058,41.78887899906],[-71.506531,41.78884499906],[-71.507615,41.78875699906],[-71.508659,41.78867299906],[-71.509331,41.78863099906],[-71.510025,41.78856999906],[-71.510369,41.78854599906],[-71.510951,41.78854499906],[-71.512715,41.78844099906],[-71.513332,41.78842099906],[-71.513844,41.78841699906],[-71.514148,41.78843299906],[-71.514804,41.78847699906],[-71.515995,41.78856399906],[-71.516174,41.78858199906],[-71.516998,41.78865399906],[-71.517715,41.78870399906],[-71.518188,41.78874599906],[-71.518379,41.78877299906],[-71.518608,41.78881099906],[-71.51894,41.78887899906],[-71.518982,41.78888699906],[-71.519348,41.78898199906],[-71.519653,41.78906999906],[-71.52021,41.78928399906],[-71.520569,41.78942499906],[-71.520805,41.78950499906],[-71.521095,41.78958899906],[-71.521431,41.78966899906],[-71.521797,41.78973799906],[-71.522171,41.78978299906],[-71.522349,41.78979899906],[-71.522491,41.78981099906],[-71.522719,41.78983199906],[-71.523155,41.78985999906],[-71.523552,41.78989399906],[-71.523926,41.78993599906],[-71.524178,41.78996999906],[-71.52459,41.79002799906],[-71.525764,41.79021799906],[-71.526405,41.79032899906],[-71.526634,41.79038599906],[-71.52697,41.79046599906],[-71.528633,41.79088199906],[-71.529266,41.79103499906],[-71.529755,41.79117199906],[-71.530144,41.79128999906],[-71.530556,41.79144699906],[-71.530968,41.79161499906],[-71.531227,41.79173299906],[-71.531601,41.79194299906],[-71.53196,41.79215999906],[-71.532242,41.79235099906],[-71.532616,41.79258699906],[-71.532845,41.79272499906],[-71.533012,41.79280499906],[-71.533325,41.79294599906],[-71.533745,41.79308699906],[-71.534225,41.79321299906],[-71.534676,41.79327399906],[-71.535027,41.79329699906],[-71.535255,41.79329699906],[-71.536064,41.79323599906],[-71.536186,41.79322399906],[-71.536316,41.79321699906],[-71.53698,41.79315199906],[-71.537621,41.79309099906],[-71.538834,41.79298399906],[-71.539436,41.79292699906],[-71.539726,41.79289599906],[-71.541527,41.79272799906],[-71.542328,41.79266399906],[-71.543488,41.79253799906],[-71.546089,41.79225499906],[-71.54731,41.79212599906],[-71.549237,41.79158699906],[-71.551262,41.79102399906],[-71.551445,41.79101399906],[-71.551568,41.79100699906],[-71.551681,41.79096199906],[-71.554912,41.78966899906],[-71.55524,41.78953699906],[-71.556891,41.78931699906],[-71.558582,41.78933499906],[-71.55929,41.78934399906]]]}}"}, +{"type": "blockgroup", "typeId": 146003, "areaId": 29049, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.489548,41.73734999906],[-71.48951,41.73674799906],[-71.489426,41.73618699906],[-71.489372,41.73590899906],[-71.489273,41.73557699906],[-71.489151,41.73524899906],[-71.489029,41.73495899906],[-71.489014,41.73492399906],[-71.488853,41.73458499906],[-71.488711,41.73432399906],[-71.48867,41.73424899906],[-71.488472,41.73391699906],[-71.488304,41.73367299906],[-71.487946,41.73318899906],[-71.48756,41.73271599906],[-71.486718,41.73170199906],[-71.486568,41.73151899906],[-71.486164,41.73153299906],[-71.486039,41.73153599906],[-71.484158,41.73159499906],[-71.48391,41.73160299906],[-71.483887,41.73167799906],[-71.483858,41.73177899906],[-71.483373,41.73346599906],[-71.48302,41.73459399906],[-71.482754,41.73545299906],[-71.482398,41.73675299906],[-71.481873,41.73844499906],[-71.481844,41.73853799906],[-71.481538,41.73954899906],[-71.481125,41.74091499906],[-71.480875,41.74171699906],[-71.480657,41.74241399906],[-71.480604,41.74258499906],[-71.480422,41.74322699906],[-71.480333,41.74354399906],[-71.480141,41.74422399906],[-71.480055,41.74452699906],[-71.479865,41.74512099906],[-71.479853,41.74515799906],[-71.479568,41.74616299906],[-71.479496,41.74638999906],[-71.479536,41.74639599906],[-71.479703,41.74643399906],[-71.480109,41.74643399906],[-71.480296,41.74644999906],[-71.480469,41.74648999906],[-71.480637,41.74656699906],[-71.480843,41.74673499906],[-71.481094,41.74695199906],[-71.48143,41.74722699906],[-71.481796,41.74751699906],[-71.482246,41.74789799906],[-71.482475,41.74805099906],[-71.482658,41.74813799906],[-71.482948,41.74824099906],[-71.48336,41.74835999906],[-71.483467,41.74838299906],[-71.48372,41.74845099906],[-71.484009,41.74800899906],[-71.484902,41.74658599906],[-71.485008,41.74641599906],[-71.485046,41.74635699906],[-71.485578,41.74552399906],[-71.485954,41.74493399906],[-71.487831,41.74199699906],[-71.487907,41.74188599906],[-71.488541,41.74086799906],[-71.488678,41.74062699906],[-71.488785,41.74043299906],[-71.488914,41.74018499906],[-71.48901,41.73998499906],[-71.489037,41.73992899906],[-71.48922,41.73945599906],[-71.489296,41.73921199906],[-71.489365,41.73896399906],[-71.489471,41.73846099906],[-71.48951,41.73819399906],[-71.48954,41.73792299906],[-71.489548,41.73765199906],[-71.489548,41.73734999906]]]}}"}, +{"type": "blockgroup", "typeId": 146004, "areaId": 29050, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.554766,41.76527099906],[-71.554752,41.76520399906],[-71.553957,41.76140799906],[-71.553815,41.76056799906],[-71.553165,41.75698399906],[-71.553093,41.75686299906],[-71.55296,41.75639199906],[-71.552696,41.75545499906],[-71.552574,41.75490999906],[-71.552467,41.75434899906],[-71.55217,41.75291099906],[-71.552078,41.75243399906],[-71.551971,41.75196099906],[-71.551895,41.75159599906],[-71.551819,41.75123599906],[-71.551582,41.75015999906],[-71.551514,41.74978299906],[-71.551376,41.74914599906],[-71.551292,41.74872599906],[-71.551086,41.74763899906],[-71.551003,41.74726499906],[-71.550926,41.74697099906],[-71.550766,41.74619699906],[-71.5507,41.74585599906],[-71.550613,41.74540299906],[-71.550465,41.74480199906],[-71.550438,41.74468999906],[-71.550285,41.74399199906],[-71.550041,41.74285499906],[-71.549942,41.74243499906],[-71.549835,41.74198899906],[-71.549805,41.74188599906],[-71.5495,41.74034499906],[-71.549469,41.74014999906],[-71.549385,41.73978399906],[-71.549316,41.73941799906],[-71.549171,41.73857499906],[-71.549118,41.73832699906],[-71.549042,41.73786499906],[-71.548904,41.73719799906],[-71.548775,41.73660699906],[-71.548683,41.73634299906],[-71.548676,41.73631799906],[-71.548584,41.73599199906],[-71.548454,41.73565299906],[-71.548294,41.73517199906],[-71.54818,41.73475299906],[-71.548088,41.73447399906],[-71.548019,41.73419999906],[-71.548012,41.73413099906],[-71.547974,41.73387499906],[-71.547874,41.73340999906],[-71.547833,41.73315399906],[-71.547813,41.73302799906],[-71.547737,41.73256699906],[-71.547699,41.73227699906],[-71.54763,41.73198299906],[-71.547607,41.73192999906],[-71.547562,41.73180399906],[-71.54747,41.73166999906],[-71.547455,41.73165499906],[-71.547369,41.73127399906],[-71.547353,41.73120299906],[-71.546984,41.73100699906],[-71.546788,41.73086399906],[-71.546439,41.73053699906],[-71.545963,41.73009199906],[-71.545807,41.73009699906],[-71.545578,41.73008399906],[-71.545497,41.73007699906],[-71.545461,41.73007399906],[-71.545364,41.73006599906],[-71.545143,41.73007199906],[-71.544724,41.73007599906],[-71.544171,41.73010299906],[-71.540803,41.73012699906],[-71.540441,41.73012999906],[-71.540233,41.73013099906],[-71.538966,41.73014099906],[-71.538377,41.73014499906],[-71.535684,41.73016499906],[-71.535609,41.73016499906],[-71.534965,41.73016999906],[-71.534438,41.73017399906],[-71.534426,41.73017199906],[-71.534321,41.73016899906],[-71.534286,41.73017099906],[-71.53402,41.73018099906],[-71.533159,41.73019699906],[-71.532217,41.73021299906],[-71.531692,41.73022299906],[-71.531229,41.73023099906],[-71.530701,41.73024099906],[-71.530518,41.73024399906],[-71.529232,41.73025699906],[-71.52775,41.73027399906],[-71.525348,41.73032799906],[-71.5245,41.73034599906],[-71.523144,41.73036299906],[-71.522962,41.73036699906],[-71.522282,41.73038299906],[-71.521494,41.73040299906],[-71.521424,41.73040299906],[-71.52041,41.73042899906],[-71.520063,41.73043299906],[-71.519981,41.73043799906],[-71.519928,41.73044299906],[-71.519865,41.73044399906],[-71.519413,41.73046899906],[-71.519663,41.73061899906],[-71.519257,41.73088499906],[-71.518616,41.73127699906],[-71.518303,41.73148299906],[-71.517845,41.73176599906],[-71.517189,41.73218199906],[-71.516396,41.73269699906],[-71.516348,41.73280099906],[-71.51627,41.73297299906],[-71.516167,41.73319999906],[-71.515961,41.73366199906],[-71.515701,41.73420299906],[-71.515358,41.73467999906],[-71.51487,41.73541999906],[-71.514793,41.73539699906],[-71.514626,41.73535499906],[-71.514488,41.73530199906],[-71.514336,41.73525999906],[-71.513977,41.73518799906],[-71.513779,41.73516499906],[-71.51358,41.73516099906],[-71.513465,41.73516699906],[-71.513329,41.73517599906],[-71.51313,41.73520299906],[-71.512408,41.73531899906],[-71.512344,41.73532899906],[-71.512176,41.73534999906],[-71.513353,41.73723499906],[-71.51466,41.73932899906],[-71.515398,41.74054899906],[-71.515548,41.74079599906],[-71.516445,41.74354699906],[-71.51689,41.74491399906],[-71.518459,41.74972799906],[-71.518582,41.75010499906],[-71.518622,41.75023499906],[-71.518679,41.75039899906],[-71.520216,41.75506699906],[-71.520552,41.75606599906],[-71.52244,41.76168099906],[-71.522764,41.76264299906],[-71.522963,41.76323499906],[-71.523848,41.76586699906],[-71.523843,41.76594699906],[-71.523969,41.76595299906],[-71.523994,41.76595399906],[-71.5243,41.76596799906],[-71.524404,41.76598099906],[-71.524628,41.76600999906],[-71.524841,41.76604499906],[-71.52507,41.76609399906],[-71.525276,41.76614399906],[-71.525444,41.76620099906],[-71.525658,41.76628499906],[-71.526047,41.76647599906],[-71.526176,41.76653299906],[-71.526306,41.76658199906],[-71.526474,41.76662799906],[-71.527336,41.76677699906],[-71.527542,41.76682999906],[-71.527733,41.76689099906],[-71.527901,41.76695599906],[-71.528076,41.76703599906],[-71.52829,41.76715499906],[-71.52845,41.76726499906],[-71.528831,41.76753999906],[-71.529205,41.76778399906],[-71.529358,41.76787199906],[-71.529633,41.76800899906],[-71.529884,41.76812399906],[-71.530106,41.76820099906],[-71.530518,41.76834499906],[-71.530846,41.76854299906],[-71.530975,41.76863499906],[-71.531311,41.76890599906],[-71.531425,41.76902399906],[-71.531593,41.76917999906],[-71.531761,41.76938199906],[-71.531799,41.76943599906],[-71.531914,41.76957699906],[-71.532028,41.76973299906],[-71.532135,41.76986699906],[-71.532337,41.77007999906],[-71.532356,41.77009999906],[-71.53244,41.77017599906],[-71.532784,41.77043499906],[-71.533386,41.77075999906],[-71.533943,41.77104199906],[-71.534569,41.77133199906],[-71.535271,41.77166699906],[-71.535545,41.77178599906],[-71.536072,41.77151099906],[-71.53609,41.77149799906],[-71.536194,41.77144599906],[-71.536308,41.77138099906],[-71.536514,41.77126999906],[-71.536697,41.77117199906],[-71.537018,41.77101499906],[-71.537277,41.77086599906],[-71.53746,41.77076699906],[-71.537544,41.77071399906],[-71.537643,41.77065999906],[-71.537949,41.77046599906],[-71.538177,41.77030199906],[-71.539291,41.76956199906],[-71.53949,41.76943599906],[-71.539742,41.76925999906],[-71.540245,41.76892899906],[-71.540344,41.76885999906],[-71.540451,41.76879499906],[-71.540558,41.76872299906],[-71.540779,41.76858499906],[-71.541008,41.76845599906],[-71.541127,41.76839799906],[-71.541389,41.76826899906],[-71.541824,41.76808499906],[-71.54216,41.76795199906],[-71.542442,41.76782999906],[-71.54277,41.76766999906],[-71.543256,41.76738299906],[-71.543365,41.76731899906],[-71.544044,41.76695599906],[-71.544357,41.76680399906],[-71.544762,41.76663199906],[-71.545059,41.76653699906],[-71.545601,41.76641499906],[-71.546356,41.76625399906],[-71.54702,41.76610599906],[-71.54763,41.76597599906],[-71.548031,41.76590099906],[-71.548401,41.76583099906],[-71.548866,41.76575499906],[-71.549454,41.76569399906],[-71.55072,41.76559099906],[-71.551872,41.76550699906],[-71.553207,41.76539199906],[-71.553955,41.76533899906],[-71.554619,41.76528199906],[-71.554766,41.76527099906]]]}}"}, +{"type": "blockgroup", "typeId": 147001, "areaId": 29051, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.458412,41.80252099906],[-71.458374,41.80215099906],[-71.458351,41.80197899906],[-71.45826,41.80137599906],[-71.458199,41.80100999906],[-71.45816,41.80070899906],[-71.458061,41.80003699906],[-71.45797,41.79936599906],[-71.457092,41.79933499906],[-71.455391,41.79925899906],[-71.453751,41.79919099906],[-71.452255,41.79913299906],[-71.452217,41.79978899906],[-71.452164,41.80044599906],[-71.45211,41.80109799906],[-71.452072,41.80169699906],[-71.452034,41.80225399906],[-71.452003,41.80277999906],[-71.451965,41.80347099906],[-71.451927,41.80409199906],[-71.451889,41.80472199906],[-71.452103,41.80550399906],[-71.452294,41.80607599906],[-71.452314,41.80613299906],[-71.454941,41.80588199906],[-71.457214,41.80561799906],[-71.457703,41.80556899906],[-71.457748,41.80550399906],[-71.45777,41.80546899906],[-71.45813,41.80489699906],[-71.458115,41.80449699906],[-71.458138,41.80425999906],[-71.458244,41.80365399906],[-71.458344,41.80308899906],[-71.458405,41.80273099906],[-71.458412,41.80252099906]]]}}"}, +{"type": "blockgroup", "typeId": 147002, "areaId": 29052, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.45797,41.79936599906],[-71.45787,41.79870999906],[-71.457771,41.79804199906],[-71.457695,41.79752699906],[-71.457642,41.79717999906],[-71.457603,41.79687499906],[-71.457575,41.79669199906],[-71.45755,41.79651999906],[-71.457474,41.79592499906],[-71.457474,41.79584899906],[-71.457458,41.79560899906],[-71.457451,41.79544799906],[-71.457489,41.79514299906],[-71.457589,41.79474799906],[-71.457642,41.79453699906],[-71.457703,41.79418199906],[-71.45771,41.79408999906],[-71.457718,41.79373599906],[-71.45768,41.79340699906],[-71.457603,41.79298399906],[-71.457489,41.79227399906],[-71.457382,41.79167199906],[-71.456505,41.79175599906],[-71.455635,41.79184299906],[-71.454926,41.79191199906],[-71.454163,41.79198799906],[-71.453453,41.79206099906],[-71.452728,41.79213699906],[-71.452499,41.79089399906],[-71.452232,41.79092799906],[-71.45208,41.79123299906],[-71.4515,41.79222099906],[-71.451263,41.79259099906],[-71.451141,41.79277799906],[-71.451042,41.79292299906],[-71.450623,41.79357499906],[-71.450447,41.79385799906],[-71.450302,41.79408999906],[-71.449997,41.79463199906],[-71.450897,41.79485299906],[-71.451721,41.79505499906],[-71.45182,41.79507799906],[-71.452576,41.79526099906],[-71.452522,41.79592899906],[-71.452469,41.79655499906],[-71.452423,41.79716499906],[-71.45237,41.79780999906],[-71.452316,41.79846599906],[-71.452255,41.79913299906],[-71.453751,41.79919099906],[-71.455391,41.79925899906],[-71.457092,41.79933499906],[-71.45797,41.79936599906]]]}}"}, +{"type": "blockgroup", "typeId": 147003, "areaId": 29053, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.457382,41.79167199906],[-71.457298,41.79121399906],[-71.457214,41.79064899906],[-71.457184,41.79037499906],[-71.457092,41.78990599906],[-71.456955,41.78943999906],[-71.456833,41.78908499906],[-71.456757,41.78891399906],[-71.456696,41.78879199906],[-71.456627,41.78866999906],[-71.456467,41.78841799906],[-71.456375,41.78829199906],[-71.456306,41.78817699906],[-71.456291,41.78816199906],[-71.456261,41.78810099906],[-71.456223,41.78803999906],[-71.456192,41.78797499906],[-71.456169,41.78790299906],[-71.456125,41.78772199906],[-71.456116,41.78768499906],[-71.456085,41.78745999906],[-71.456061,41.78714699906],[-71.456055,41.78707499906],[-71.456039,41.78699899906],[-71.456024,41.78692199906],[-71.456017,41.78684599906],[-71.455986,41.78665199906],[-71.455986,41.78643399906],[-71.456001,41.78631199906],[-71.456024,41.78619399906],[-71.456055,41.78606799906],[-71.4561,41.78594199906],[-71.456207,41.78569799906],[-71.456306,41.78553399906],[-71.456436,41.78535099906],[-71.456522,41.78524199906],[-71.456691,41.78504999906],[-71.456856,41.78486299906],[-71.457039,41.78462999906],[-71.457054,41.78460299906],[-71.457115,41.78447299906],[-71.457169,41.78431699906],[-71.457222,41.78410299906],[-71.457245,41.78403899906],[-71.45726,41.78397399906],[-71.456993,41.78401899906],[-71.456896,41.78404399906],[-71.456099,41.78425999906],[-71.456001,41.78428599906],[-71.455055,41.78456099906],[-71.454964,41.78458799906],[-71.454826,41.78462199906],[-71.454651,41.78464899906],[-71.454422,41.78467199906],[-71.454254,41.78466799906],[-71.454155,41.78465999906],[-71.453964,41.78462599906],[-71.453491,41.78451199906],[-71.453178,41.78443099906],[-71.452652,41.78429799906],[-71.452179,41.78416799906],[-71.451653,41.78402699906],[-71.451134,41.78388599906],[-71.45118,41.78424499906],[-71.45121,41.78452299906],[-71.451309,41.78536599906],[-71.451332,41.78550299906],[-71.45137,41.78581199906],[-71.451469,41.78651799906],[-71.451508,41.78673899906],[-71.451538,41.78698299906],[-71.451607,41.78742599906],[-71.45163,41.78762099906],[-71.451637,41.78773099906],[-71.451683,41.78795999906],[-71.451714,41.78802899906],[-71.451736,41.78809699906],[-71.451775,41.78816599906],[-71.451805,41.78825399906],[-71.451843,41.78834499906],[-71.451889,41.78843299906],[-71.451927,41.78852799906],[-71.451973,41.78861999906],[-71.452011,41.78871499906],[-71.452065,41.78881499906],[-71.452072,41.78883699906],[-71.452301,41.78927999906],[-71.452347,41.78938299906],[-71.45237,41.78945199906],[-71.452415,41.78964999906],[-71.452425,41.78967299906],[-71.452441,41.78975899906],[-71.452477,41.78989799906],[-71.452484,41.78996299906],[-71.452484,41.79007699906],[-71.452469,41.79021099906],[-71.452454,41.79028699906],[-71.452408,41.79046199906],[-71.452301,41.79075199906],[-71.452263,41.79083999906],[-71.452232,41.79092799906],[-71.452499,41.79089399906],[-71.452728,41.79213699906],[-71.453453,41.79206099906],[-71.454163,41.79198799906],[-71.454926,41.79191199906],[-71.455635,41.79184299906],[-71.456505,41.79175599906],[-71.457382,41.79167199906]]]}}"}, +{"type": "blockgroup", "typeId": 147004, "areaId": 29054, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.464874,41.78269199906],[-71.464684,41.78277599906],[-71.4645,41.78284799906],[-71.464325,41.78290899906],[-71.464249,41.78292799906],[-71.463905,41.78299699906],[-71.462044,41.78330599906],[-71.461105,41.78346999906],[-71.460411,41.78356599906],[-71.460182,41.78359599906],[-71.457657,41.78389699906],[-71.45726,41.78397399906],[-71.457245,41.78403899906],[-71.457222,41.78410299906],[-71.457169,41.78431699906],[-71.457115,41.78447299906],[-71.457054,41.78460299906],[-71.457039,41.78462999906],[-71.456856,41.78486299906],[-71.456691,41.78504999906],[-71.456522,41.78524199906],[-71.456436,41.78535099906],[-71.456306,41.78553399906],[-71.456207,41.78569799906],[-71.4561,41.78594199906],[-71.456055,41.78606799906],[-71.456024,41.78619399906],[-71.456001,41.78631199906],[-71.455986,41.78643399906],[-71.455986,41.78665199906],[-71.456017,41.78684599906],[-71.456024,41.78692199906],[-71.456039,41.78699899906],[-71.456055,41.78707499906],[-71.456061,41.78714699906],[-71.456085,41.78745999906],[-71.456116,41.78768499906],[-71.456125,41.78772199906],[-71.456169,41.78790299906],[-71.456192,41.78797499906],[-71.456223,41.78803999906],[-71.456261,41.78810099906],[-71.456291,41.78816199906],[-71.456306,41.78817699906],[-71.456375,41.78829199906],[-71.456467,41.78841799906],[-71.456627,41.78866999906],[-71.456696,41.78879199906],[-71.456757,41.78891399906],[-71.456833,41.78908499906],[-71.456955,41.78943999906],[-71.457092,41.78990599906],[-71.457184,41.79037499906],[-71.457245,41.79035599906],[-71.457298,41.79032899906],[-71.457809,41.79012299906],[-71.458237,41.78993999906],[-71.458481,41.78984099906],[-71.458603,41.78980599906],[-71.458687,41.78979099906],[-71.458786,41.78978299906],[-71.458984,41.78978699906],[-71.4592,41.78981199906],[-71.459618,41.78985999906],[-71.460024,41.78989699906],[-71.460144,41.78990899906],[-71.460289,41.78991699906],[-71.460335,41.78992099906],[-71.460457,41.78992099906],[-71.460831,41.78987899906],[-71.461395,41.78980299906],[-71.461777,41.78974899906],[-71.462151,41.78969999906],[-71.462341,41.78966899906],[-71.46244,41.78963499906],[-71.462517,41.78958499906],[-71.462555,41.78955499906],[-71.462585,41.78951999906],[-71.462646,41.78942899906],[-71.462708,41.78930699906],[-71.462746,41.78922299906],[-71.462952,41.78867299906],[-71.463203,41.78803599906],[-71.463326,41.78771199906],[-71.463448,41.78738799906],[-71.463539,41.78715499906],[-71.463699,41.78672399906],[-71.46373,41.78664399906],[-71.463905,41.78620899906],[-71.463936,41.78611399906],[-71.463959,41.78605999906],[-71.464043,41.78581999906],[-71.464104,41.78557199906],[-71.464249,41.78503799906],[-71.464272,41.78492699906],[-71.464386,41.78450399906],[-71.464424,41.78436999906],[-71.464607,41.78369499906],[-71.464874,41.78269199906]]]}}"}, +{"type": "blockgroup", "typeId": 147005, "areaId": 29055, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.472896,41.78376599906],[-71.472888,41.78358799906],[-71.472858,41.78289299906],[-71.472852,41.78275999906],[-71.472845,41.78255599906],[-71.472832,41.78240999906],[-71.472811,41.78226399906],[-71.472782,41.78211799906],[-71.472666,41.78170799906],[-71.472614,41.78158099906],[-71.472577,41.78150999906],[-71.472546,41.78144099906],[-71.472442,41.78123499906],[-71.472294,41.78096099906],[-71.472263,41.78096399906],[-71.472191,41.78097199906],[-71.471634,41.78102499906],[-71.471298,41.78105499906],[-71.471123,41.78107499906],[-71.470818,41.78110899906],[-71.470726,41.78111599906],[-71.470245,41.78119999906],[-71.470047,41.78124199906],[-71.469833,41.78128399906],[-71.469345,41.78139099906],[-71.469193,41.78142499906],[-71.467102,41.78192899906],[-71.466209,41.78214299906],[-71.465836,41.78224199906],[-71.465279,41.78251599906],[-71.464874,41.78269199906],[-71.464607,41.78369499906],[-71.464424,41.78436999906],[-71.464386,41.78450399906],[-71.464272,41.78492699906],[-71.464249,41.78503799906],[-71.467003,41.78502299906],[-71.467636,41.78499999906],[-71.469093,41.78498799906],[-71.469185,41.78498499906],[-71.46965,41.78500399906],[-71.470039,41.78503399906],[-71.470131,41.78504599906],[-71.47049,41.78510699906],[-71.470894,41.78514499906],[-71.471268,41.78519799906],[-71.471687,41.78524399906],[-71.472588,41.78534699906],[-71.472679,41.78534299906],[-71.472761,41.78533599906],[-71.47285,41.78462599906],[-71.47286,41.78455699906],[-71.47288,41.78442499906],[-71.472895,41.78418499906],[-71.472896,41.78376599906]]]}}"}, +{"type": "blockgroup", "typeId": 147006, "areaId": 29056, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.479736,41.79685199906],[-71.479683,41.79669999906],[-71.479614,41.79658899906],[-71.47953,41.79651999906],[-71.479309,41.79637099906],[-71.479156,41.79627999906],[-71.478867,41.79612399906],[-71.478333,41.79580299906],[-71.478195,41.79573099906],[-71.477989,41.79562799906],[-71.47789,41.79558599906],[-71.477844,41.79555899906],[-71.477745,41.79552099906],[-71.477638,41.79547899906],[-71.47683,41.79519999906],[-71.476074,41.79492999906],[-71.475853,41.79484899906],[-71.475441,41.79471199906],[-71.474976,41.79453999906],[-71.474808,41.79448299906],[-71.474251,41.79429199906],[-71.473976,41.79418199906],[-71.47393,41.79414699906],[-71.473885,41.79412099906],[-71.473816,41.79407899906],[-71.47374,41.79400999906],[-71.473679,41.79393399906],[-71.473625,41.79384599906],[-71.473442,41.79331999906],[-71.47332,41.79306799906],[-71.473228,41.79291499906],[-71.473099,41.79274699906],[-71.472992,41.79262499906],[-71.472848,41.79242299906],[-71.472801,41.79235799906],[-71.472755,41.79228199906],[-71.472568,41.79200699906],[-71.472534,41.79195799906],[-71.472361,41.79166099906],[-71.472336,41.79161799906],[-71.472229,41.79140099906],[-71.472191,41.79130599906],[-71.472099,41.79098099906],[-71.472076,41.79087099906],[-71.472046,41.79064599906],[-71.472038,41.79053099906],[-71.472038,41.79037899906],[-71.472054,41.79022599906],[-71.472132,41.79002099906],[-71.472407,41.78789899906],[-71.472444,41.78765999906],[-71.472451,41.78756499906],[-71.472547,41.78687299906],[-71.47256,41.78677699906],[-71.472627,41.78630299906],[-71.472761,41.78533599906],[-71.472679,41.78534299906],[-71.472588,41.78534699906],[-71.471687,41.78524399906],[-71.471268,41.78519799906],[-71.470894,41.78514499906],[-71.47049,41.78510699906],[-71.470131,41.78504599906],[-71.470039,41.78503399906],[-71.46965,41.78500399906],[-71.469185,41.78498499906],[-71.469093,41.78498799906],[-71.467636,41.78499999906],[-71.467003,41.78502299906],[-71.464249,41.78503799906],[-71.464104,41.78557199906],[-71.464043,41.78581999906],[-71.463959,41.78605999906],[-71.463936,41.78611399906],[-71.463905,41.78620899906],[-71.46373,41.78664399906],[-71.463699,41.78672399906],[-71.463539,41.78715499906],[-71.463448,41.78738799906],[-71.463326,41.78771199906],[-71.463203,41.78803599906],[-71.462952,41.78867299906],[-71.462746,41.78922299906],[-71.462708,41.78930699906],[-71.462646,41.78942899906],[-71.462585,41.78951999906],[-71.462555,41.78955499906],[-71.462517,41.78958499906],[-71.46244,41.78963499906],[-71.462341,41.78966899906],[-71.462151,41.78969999906],[-71.461777,41.78974899906],[-71.461395,41.78980299906],[-71.460831,41.78987899906],[-71.460457,41.78992099906],[-71.460335,41.78992099906],[-71.460289,41.78991699906],[-71.460144,41.78990899906],[-71.460024,41.78989699906],[-71.459618,41.78985999906],[-71.4592,41.78981199906],[-71.458984,41.78978699906],[-71.458786,41.78978299906],[-71.458687,41.78979099906],[-71.458603,41.78980599906],[-71.458481,41.78984099906],[-71.458237,41.78993999906],[-71.457809,41.79012299906],[-71.457298,41.79032899906],[-71.457245,41.79035599906],[-71.457184,41.79037499906],[-71.457214,41.79064899906],[-71.457298,41.79121399906],[-71.457382,41.79167199906],[-71.457489,41.79227399906],[-71.457603,41.79298399906],[-71.45768,41.79340699906],[-71.457718,41.79373599906],[-71.45771,41.79408999906],[-71.457703,41.79418199906],[-71.457642,41.79453699906],[-71.457589,41.79474799906],[-71.457489,41.79514299906],[-71.457451,41.79544799906],[-71.457458,41.79560899906],[-71.457474,41.79584899906],[-71.457474,41.79592499906],[-71.45755,41.79651999906],[-71.457575,41.79669199906],[-71.457603,41.79687499906],[-71.457642,41.79717999906],[-71.457695,41.79752699906],[-71.457771,41.79804199906],[-71.45787,41.79870999906],[-71.45797,41.79936599906],[-71.458061,41.80003699906],[-71.45816,41.80070899906],[-71.458199,41.80100999906],[-71.45826,41.80137599906],[-71.458351,41.80197899906],[-71.458374,41.80215099906],[-71.458412,41.80252099906],[-71.458405,41.80273099906],[-71.458344,41.80308899906],[-71.458244,41.80365399906],[-71.458138,41.80425999906],[-71.458115,41.80449699906],[-71.45813,41.80489699906],[-71.45777,41.80546899906],[-71.457748,41.80550399906],[-71.457703,41.80556899906],[-71.457855,41.80555299906],[-71.459473,41.80536999906],[-71.460908,41.80522199906],[-71.461094,41.80519799906],[-71.461882,41.80509899906],[-71.462306,41.80496499906],[-71.462361,41.80496599906],[-71.462448,41.80498499906],[-71.462627,41.80505099906],[-71.462797,41.80513199906],[-71.462878,41.80516299906],[-71.463008,41.80517499906],[-71.463081,41.80513899906],[-71.463151,41.80511499906],[-71.463246,41.80509399906],[-71.463353,41.80507799906],[-71.463665,41.80504599906],[-71.464315,41.80416299906],[-71.466027,41.80374899906],[-71.466167,41.80265199906],[-71.466209,41.80260199906],[-71.466292,41.80241299906],[-71.466338,41.80235099906],[-71.466461,41.80222799906],[-71.466509,41.80216199906],[-71.466546,41.80209599906],[-71.466582,41.80195799906],[-71.46659,41.80189299906],[-71.466623,41.80174899906],[-71.46665,41.80167899906],[-71.466685,41.80161599906],[-71.466804,41.80151599906],[-71.466851,41.80146299906],[-71.466871,41.80140699906],[-71.466854,41.80061899906],[-71.466859,41.80053099906],[-71.466873,41.80045899906],[-71.466893,41.80040199906],[-71.466968,41.80028299906],[-71.466993,41.80022899906],[-71.467027,41.80008499906],[-71.467022,41.80001699906],[-71.46694,41.79987399906],[-71.466924,41.79975399906],[-71.466871,41.79964199906],[-71.466869,41.79952799906],[-71.466881,41.79949399906],[-71.466905,41.79949199906],[-71.466906,41.79947399906],[-71.466991,41.79938199906],[-71.467009,41.79931699906],[-71.467018,41.79926199906],[-71.467081,41.79906499906],[-71.467185,41.79883999906],[-71.46727,41.79870399906],[-71.467354,41.79855299906],[-71.46738,41.79847999906],[-71.467374,41.79841499906],[-71.467348,41.79835399906],[-71.467441,41.79825699906],[-71.467479,41.79820499906],[-71.467582,41.79810899906],[-71.467636,41.79807099906],[-71.467716,41.79803199906],[-71.467813,41.79800299906],[-71.46792,41.79799599906],[-71.468122,41.79799799906],[-71.468211,41.79802999906],[-71.468341,41.79811899906],[-71.468413,41.79812599906],[-71.468489,41.79811199906],[-71.468572,41.79808899906],[-71.468666,41.79807899906],[-71.468794,41.79809799906],[-71.468834,41.79813699906],[-71.468849,41.79819099906],[-71.468939,41.79822999906],[-71.469077,41.79828999906],[-71.469278,41.79841999906],[-71.469328,41.79846199906],[-71.469384,41.79853199906],[-71.469428,41.79864399906],[-71.469463,41.79871699906],[-71.469522,41.79877399906],[-71.469597,41.79881199906],[-71.469678,41.79883599906],[-71.469752,41.79883599906],[-71.469832,41.79883099906],[-71.469973,41.79879799906],[-71.470042,41.79876799906],[-71.470105,41.79875799906],[-71.470387,41.79874399906],[-71.470451,41.79871699906],[-71.470496,41.79870999906],[-71.47066,41.79865699906],[-71.470845,41.79861799906],[-71.470909,41.79860199906],[-71.470932,41.79859599906],[-71.471005,41.79858199906],[-71.471253,41.79851299906],[-71.471347,41.79847899906],[-71.471501,41.79840799906],[-71.471552,41.79836899906],[-71.471598,41.79830999906],[-71.471609,41.79829099906],[-71.471635,41.79824699906],[-71.471665,41.79818299906],[-71.471705,41.79805299906],[-71.471807,41.79788599906],[-71.471819,41.79782599906],[-71.471786,41.79776499906],[-71.471768,41.79769899906],[-71.471784,41.79763099906],[-71.471823,41.79756999906],[-71.471976,41.79748299906],[-71.472021,41.79742399906],[-71.472026,41.79729599906],[-71.472014,41.79722899906],[-71.471992,41.79715999906],[-71.47194,41.79703699906],[-71.471932,41.79697999906],[-71.471912,41.79691999906],[-71.472036,41.79681599906],[-71.472063,41.79676599906],[-71.4721,41.79671599906],[-71.472235,41.79656299906],[-71.47231,41.79645999906],[-71.472362,41.79642299906],[-71.472431,41.79639099906],[-71.472512,41.79638299906],[-71.47257,41.79638299906],[-71.472733,41.79640499906],[-71.47296,41.79642399906],[-71.47312,41.79645499906],[-71.473361,41.79645599906],[-71.473448,41.79646299906],[-71.473602,41.79649699906],[-71.473682,41.79650499906],[-71.473717,41.79650499906],[-71.473984,41.79653199906],[-71.474009,41.79653099906],[-71.47408,41.79652299906],[-71.474161,41.79649699906],[-71.474293,41.79644399906],[-71.474488,41.79633599906],[-71.474563,41.79630399906],[-71.474642,41.79628199906],[-71.474724,41.79627099906],[-71.474801,41.79627099906],[-71.474879,41.79628499906],[-71.474957,41.79630499906],[-71.475027,41.79633099906],[-71.475119,41.79637199906],[-71.475202,41.79639399906],[-71.475287,41.79640299906],[-71.475382,41.79640699906],[-71.475474,41.79641699906],[-71.475562,41.79644199906],[-71.475621,41.79648399906],[-71.475655,41.79654299906],[-71.475684,41.79661099906],[-71.475744,41.79668999906],[-71.475834,41.79672099906],[-71.476191,41.79676399906],[-71.476352,41.79676699906],[-71.476436,41.79676299906],[-71.476589,41.79674199906],[-71.476694,41.79673699906],[-71.476802,41.79673799906],[-71.477024,41.79676799906],[-71.477244,41.79681199906],[-71.477347,41.79682299906],[-71.477452,41.79682299906],[-71.477601,41.79681699906],[-71.477706,41.79681799906],[-71.477808,41.79683599906],[-71.477879,41.79685599906],[-71.477952,41.79688199906],[-71.478179,41.79697199906],[-71.478254,41.79699799906],[-71.478398,41.79702999906],[-71.478457,41.79701799906],[-71.478537,41.79698199906],[-71.478615,41.79693899906],[-71.478682,41.79691199906],[-71.478794,41.79688199906],[-71.478929,41.79685399906],[-71.479002,41.79684899906],[-71.479282,41.79684799906],[-71.479369,41.79685099906],[-71.479447,41.79688299906],[-71.479537,41.79694599906],[-71.479568,41.79692799906],[-71.479736,41.79685199906]]]}}"}, +{"type": "blockgroup", "typeId": 148001, "areaId": 29057, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.487373,41.79322099906],[-71.486984,41.79292299906],[-71.486923,41.79288099906],[-71.486839,41.79280099906],[-71.486786,41.79273199906],[-71.486755,41.79267099906],[-71.48674,41.79260599906],[-71.486626,41.79228199906],[-71.485977,41.79059999906],[-71.485168,41.79077099906],[-71.484627,41.78939799906],[-71.484024,41.78824599906],[-71.483932,41.78806699906],[-71.483826,41.78784599906],[-71.48377,41.78791799906],[-71.483689,41.78797299906],[-71.483566,41.78800599906],[-71.483322,41.78809399906],[-71.48304,41.78817699906],[-71.482933,41.78821199906],[-71.482353,41.78836399906],[-71.482033,41.78847499906],[-71.48185,41.78851299906],[-71.481674,41.78850599906],[-71.481552,41.78845599906],[-71.481422,41.78841399906],[-71.481361,41.78840599906],[-71.480499,41.78846399906],[-71.480414,41.78783199906],[-71.48032,41.78783799906],[-71.479546,41.78787999906],[-71.478662,41.78796199906],[-71.478119,41.78801299906],[-71.477791,41.78804399906],[-71.476913,41.78812799906],[-71.47702,41.78894399906],[-71.477104,41.78958899906],[-71.476791,41.78961199906],[-71.476524,41.78963899906],[-71.475586,41.78970699906],[-71.475539,41.78970499906],[-71.47551,41.78969599906],[-71.475418,41.78964999906],[-71.474533,41.78915399906],[-71.473938,41.78881099906],[-71.473656,41.78863499906],[-71.473015,41.78819699906],[-71.47274,41.78802899906],[-71.472626,41.78795599906],[-71.472557,41.78792999906],[-71.472473,41.78790699906],[-71.472407,41.78789899906],[-71.472132,41.79002099906],[-71.472054,41.79022599906],[-71.472038,41.79037899906],[-71.472038,41.79053099906],[-71.472046,41.79064599906],[-71.472076,41.79087099906],[-71.472099,41.79098099906],[-71.472191,41.79130599906],[-71.472229,41.79140099906],[-71.472336,41.79161799906],[-71.472361,41.79166099906],[-71.472534,41.79195799906],[-71.472568,41.79200699906],[-71.472755,41.79228199906],[-71.472801,41.79235799906],[-71.472848,41.79242299906],[-71.472992,41.79262499906],[-71.473099,41.79274699906],[-71.473228,41.79291499906],[-71.47332,41.79306799906],[-71.473442,41.79331999906],[-71.473625,41.79384599906],[-71.473679,41.79393399906],[-71.47374,41.79400999906],[-71.473816,41.79407899906],[-71.473885,41.79412099906],[-71.47393,41.79414699906],[-71.473976,41.79418199906],[-71.474251,41.79429199906],[-71.474808,41.79448299906],[-71.474976,41.79453999906],[-71.475441,41.79471199906],[-71.475853,41.79484899906],[-71.476074,41.79492999906],[-71.47683,41.79519999906],[-71.477638,41.79547899906],[-71.477745,41.79552099906],[-71.477844,41.79555899906],[-71.47789,41.79558599906],[-71.477989,41.79562799906],[-71.478195,41.79573099906],[-71.478333,41.79580299906],[-71.478867,41.79612399906],[-71.479156,41.79627999906],[-71.479309,41.79637099906],[-71.47953,41.79651999906],[-71.479614,41.79658899906],[-71.479683,41.79669999906],[-71.479736,41.79685199906],[-71.479813,41.79682199906],[-71.479942,41.79678699906],[-71.480453,41.79669199906],[-71.480705,41.79664999906],[-71.480904,41.79661199906],[-71.481102,41.79656599906],[-71.481354,41.79649699906],[-71.481552,41.79643599906],[-71.481758,41.79636399906],[-71.481956,41.79627999906],[-71.48201,41.79626099906],[-71.48233,41.79614299906],[-71.482498,41.79608499906],[-71.482727,41.79599799906],[-71.482776,41.79597799906],[-71.483223,41.79576899906],[-71.483849,41.79545999906],[-71.483948,41.79541399906],[-71.484276,41.79524599906],[-71.484421,41.79515799906],[-71.484802,41.79491399906],[-71.485046,41.79477199906],[-71.485466,41.79452899906],[-71.485718,41.79437999906],[-71.485977,41.79421199906],[-71.486145,41.79409799906],[-71.486504,41.79386899906],[-71.486847,41.79360199906],[-71.486885,41.79357099906],[-71.487373,41.79322099906]]]}}"}, +{"type": "blockgroup", "typeId": 148002, "areaId": 29058, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.506058,41.78887899906],[-71.506049,41.78885099906],[-71.506012,41.78878399906],[-71.505951,41.78865099906],[-71.505165,41.78720099906],[-71.504311,41.78578899906],[-71.503357,41.78430199906],[-71.502663,41.78321099906],[-71.50222,41.78253199906],[-71.502046,41.78225799906],[-71.501839,41.78193299906],[-71.501794,41.78186699906],[-71.501266,41.78108199906],[-71.500862,41.78054799906],[-71.500702,41.78037299906],[-71.500397,41.78041799906],[-71.499958,41.78048999906],[-71.49926,41.78060499906],[-71.498856,41.78066999906],[-71.498641,41.78070699906],[-71.498537,41.78072499906],[-71.49826,41.78077299906],[-71.497856,41.78083799906],[-71.497527,41.78088799906],[-71.49736,41.78091399906],[-71.496857,41.78100199906],[-71.49646,41.78105899906],[-71.4963,41.78108199906],[-71.496307,41.78115499906],[-71.496262,41.78118899906],[-71.495285,41.78150599906],[-71.495171,41.78153199906],[-71.494926,41.78155499906],[-71.494835,41.78154799906],[-71.494713,41.78152499906],[-71.494644,41.78165799906],[-71.494553,41.78191799906],[-71.494461,41.78208199906],[-71.494377,41.78228799906],[-71.494301,41.78245499906],[-71.494247,41.78258899906],[-71.494209,41.78270699906],[-71.494179,41.78292499906],[-71.494217,41.78322599906],[-71.494301,41.78359999906],[-71.494362,41.78365299906],[-71.494469,41.78370999906],[-71.494616,41.78394099906],[-71.494528,41.78396999906],[-71.494466,41.78401599906],[-71.494453,41.78408099906],[-71.494453,41.78411899906],[-71.494334,41.78411899906],[-71.494296,41.78405599906],[-71.494236,41.78400199906],[-71.494177,41.78395999906],[-71.494093,41.78392399906],[-71.49402,41.78393599906],[-71.493945,41.78397399906],[-71.493886,41.78402199906],[-71.493831,41.78408499906],[-71.493761,41.78404499906],[-71.493694,41.78399499906],[-71.493619,41.78395199906],[-71.493545,41.78392999906],[-71.493403,41.78384199906],[-71.493334,41.78378699906],[-71.493218,41.78367599906],[-71.493158,41.78362799906],[-71.492972,41.78351599906],[-71.492892,41.78345899906],[-71.492854,41.78340599906],[-71.492844,41.78334199906],[-71.492844,41.78321799906],[-71.492834,41.78308199906],[-71.492815,41.78302699906],[-71.492758,41.78297299906],[-71.492672,41.78305499906],[-71.492585,41.78309999906],[-71.492495,41.78310299906],[-71.492428,41.78305699906],[-71.492372,41.78298899906],[-71.49235,41.78295199906],[-71.491966,41.78321499906],[-71.491608,41.78346299906],[-71.491554,41.78341699906],[-71.491364,41.78328299906],[-71.491295,41.78326399906],[-71.491203,41.78325299906],[-71.490929,41.78324099906],[-71.490631,41.78324099906],[-71.490059,41.78321099906],[-71.489937,41.78321799906],[-71.489853,41.78323699906],[-71.489754,41.78327599906],[-71.489662,41.78332099906],[-71.489586,41.78335199906],[-71.489517,41.78335599906],[-71.489418,41.78335599906],[-71.488495,41.78327899906],[-71.488487,41.78340099906],[-71.488533,41.78354299906],[-71.488785,41.78414199906],[-71.488823,41.78418399906],[-71.488899,41.78428299906],[-71.489067,41.78446999906],[-71.489532,41.78498799906],[-71.489647,41.78509499906],[-71.489677,41.78513299906],[-71.4897,41.78517499906],[-71.489731,41.78526299906],[-71.489746,41.78535499906],[-71.489746,41.78546499906],[-71.489716,41.78569399906],[-71.489632,41.78609499906],[-71.489563,41.78650299906],[-71.488609,41.78641099906],[-71.48764,41.78649099906],[-71.487616,41.78665399906],[-71.487534,41.78721199906],[-71.487259,41.78720499906],[-71.48716,41.78721199906],[-71.487083,41.78722799906],[-71.486984,41.78726199906],[-71.486183,41.78749499906],[-71.486061,41.78754799906],[-71.486015,41.78758199906],[-71.485985,41.78761699906],[-71.485938,41.78773699906],[-71.485924,41.78780699906],[-71.485939,41.78790299906],[-71.486076,41.78829599906],[-71.485786,41.78830299906],[-71.485611,41.78829599906],[-71.485443,41.78826899906],[-71.485313,41.78826499906],[-71.485207,41.78827999906],[-71.485115,41.78829999906],[-71.484825,41.78747599906],[-71.483978,41.78769299906],[-71.483902,41.78773099906],[-71.483871,41.78775399906],[-71.483841,41.78780399906],[-71.483826,41.78784599906],[-71.483932,41.78806699906],[-71.484024,41.78824599906],[-71.484627,41.78939799906],[-71.485168,41.79077099906],[-71.485977,41.79059999906],[-71.486626,41.79228199906],[-71.48674,41.79260599906],[-71.486755,41.79267099906],[-71.486786,41.79273199906],[-71.486839,41.79280099906],[-71.486923,41.79288099906],[-71.486984,41.79292299906],[-71.487373,41.79322099906],[-71.487717,41.79297299906],[-71.488342,41.79249599906],[-71.488976,41.79200699906],[-71.48941,41.79167899906],[-71.489563,41.79159199906],[-71.489799,41.79149599906],[-71.489983,41.79143899906],[-71.490105,41.79140899906],[-71.490166,41.79139299906],[-71.490334,41.79136999906],[-71.490471,41.79136299906],[-71.490555,41.79135899906],[-71.4907,41.79136299906],[-71.490921,41.79138199906],[-71.491501,41.79144699906],[-71.491821,41.79148499906],[-71.492203,41.79151899906],[-71.49263,41.79152699906],[-71.492805,41.79152699906],[-71.493024,41.79151399906],[-71.493057,41.79151199906],[-71.493187,41.79149599906],[-71.493454,41.79145799906],[-71.493557,41.79144499906],[-71.495013,41.79126399906],[-71.495059,41.79125799906],[-71.49514,41.79124799906],[-71.495589,41.79118999906],[-71.495699,41.79117599906],[-71.496597,41.79106099906],[-71.496758,41.79103099906],[-71.49736,41.79090899906],[-71.497426,41.79089299906],[-71.497765,41.79080999906],[-71.497887,41.79077099906],[-71.498001,41.79074099906],[-71.498207,41.79067199906],[-71.498497,41.79058099906],[-71.500824,41.78984499906],[-71.500931,41.78980599906],[-71.501068,41.78972199906],[-71.502144,41.78938299906],[-71.502655,41.78923399906],[-71.502838,41.78918799906],[-71.503067,41.78914299906],[-71.503792,41.78908499906],[-71.504417,41.78902399906],[-71.505089,41.78896299906],[-71.505753,41.78890199906],[-71.506058,41.78887899906]]]}}"}, +{"type": "blockgroup", "typeId": 148003, "areaId": 29059, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.496307,41.78115499906],[-71.4963,41.78108199906],[-71.496109,41.78110099906],[-71.495758,41.78112399906],[-71.495499,41.78113199906],[-71.495082,41.78113199906],[-71.494789,41.78111299906],[-71.494454,41.78107699906],[-71.494158,41.78102599906],[-71.494077,41.78100799906],[-71.493912,41.78097199906],[-71.493629,41.78090299906],[-71.493599,41.78089899906],[-71.493324,41.78082299906],[-71.492943,41.78069299906],[-71.49259,41.78054499906],[-71.492241,41.78039899906],[-71.49189,41.78023899906],[-71.491539,41.78006699906],[-71.491234,41.77986499906],[-71.490974,41.77967099906],[-71.490479,41.77931199906],[-71.490219,41.77914799906],[-71.490074,41.77907199906],[-71.489899,41.77899199906],[-71.489777,41.77894599906],[-71.489632,41.77890399906],[-71.489212,41.77880499906],[-71.489014,41.77878199906],[-71.488693,41.77876699906],[-71.488136,41.77878199906],[-71.48764,41.77879299906],[-71.48642,41.77883499906],[-71.485847,41.77885099906],[-71.485756,41.77884699906],[-71.485527,41.77883499906],[-71.485497,41.77883499906],[-71.485237,41.77880499906],[-71.484993,41.77876299906],[-71.484856,41.77873199906],[-71.484589,41.77866399906],[-71.4842,41.77853799906],[-71.483742,41.77838099906],[-71.483597,41.77833899906],[-71.483383,41.77828599906],[-71.483281,41.77826699906],[-71.48317,41.77824799906],[-71.483075,41.77823399906],[-71.482956,41.77822499906],[-71.482841,41.77822099906],[-71.482605,41.77823299906],[-71.482491,41.77824799906],[-71.482396,41.77826399906],[-71.482269,41.77828599906],[-71.48188,41.77837799906],[-71.481316,41.77851499906],[-71.480843,41.77862199906],[-71.480698,41.77865199906],[-71.480438,41.77870899906],[-71.480202,41.77874799906],[-71.47995,41.77879699906],[-71.479447,41.77886799906],[-71.477982,41.77907599906],[-71.477715,41.77911799906],[-71.477603,41.77912999906],[-71.477455,41.77914799906],[-71.477272,41.77915599906],[-71.476959,41.77915199906],[-71.476753,41.77908299906],[-71.476662,41.77904499906],[-71.476532,41.77899899906],[-71.476288,41.77925099906],[-71.476028,41.77950299906],[-71.475838,41.77968599906],[-71.475334,41.78007099906],[-71.475273,41.78011299906],[-71.475075,41.78023099906],[-71.474792,41.78040299906],[-71.47419,41.78063599906],[-71.473999,41.78068199906],[-71.473801,41.78073099906],[-71.473289,41.78083799906],[-71.472885,41.78090699906],[-71.472382,41.78094899906],[-71.472336,41.78095599906],[-71.472294,41.78096099906],[-71.472442,41.78123499906],[-71.472546,41.78144099906],[-71.472577,41.78150999906],[-71.472614,41.78158099906],[-71.472666,41.78170799906],[-71.472782,41.78211799906],[-71.472811,41.78226399906],[-71.472832,41.78240999906],[-71.472845,41.78255599906],[-71.472852,41.78275999906],[-71.472858,41.78289299906],[-71.472888,41.78358799906],[-71.472896,41.78376599906],[-71.472895,41.78418499906],[-71.47288,41.78442499906],[-71.47286,41.78455699906],[-71.47285,41.78462599906],[-71.472761,41.78533599906],[-71.472627,41.78630299906],[-71.47256,41.78677699906],[-71.472547,41.78687299906],[-71.472451,41.78756499906],[-71.472444,41.78765999906],[-71.472407,41.78789899906],[-71.472473,41.78790699906],[-71.472557,41.78792999906],[-71.472626,41.78795599906],[-71.47274,41.78802899906],[-71.473015,41.78819699906],[-71.473656,41.78863499906],[-71.473938,41.78881099906],[-71.474533,41.78915399906],[-71.475418,41.78964999906],[-71.47551,41.78969599906],[-71.475539,41.78970499906],[-71.475586,41.78970699906],[-71.476524,41.78963899906],[-71.476791,41.78961199906],[-71.477104,41.78958899906],[-71.47702,41.78894399906],[-71.476913,41.78812799906],[-71.477791,41.78804399906],[-71.478119,41.78801299906],[-71.478662,41.78796199906],[-71.479546,41.78787999906],[-71.48032,41.78783799906],[-71.480414,41.78783199906],[-71.480499,41.78846399906],[-71.481361,41.78840599906],[-71.481422,41.78841399906],[-71.481552,41.78845599906],[-71.481674,41.78850599906],[-71.48185,41.78851299906],[-71.482033,41.78847499906],[-71.482353,41.78836399906],[-71.482933,41.78821199906],[-71.48304,41.78817699906],[-71.483322,41.78809399906],[-71.483566,41.78800599906],[-71.483689,41.78797299906],[-71.48377,41.78791799906],[-71.483826,41.78784599906],[-71.483841,41.78780399906],[-71.483871,41.78775399906],[-71.483902,41.78773099906],[-71.483978,41.78769299906],[-71.484825,41.78747599906],[-71.485115,41.78829999906],[-71.485207,41.78827999906],[-71.485313,41.78826499906],[-71.485443,41.78826899906],[-71.485611,41.78829599906],[-71.485786,41.78830299906],[-71.486076,41.78829599906],[-71.485939,41.78790299906],[-71.485924,41.78780699906],[-71.485938,41.78773699906],[-71.485985,41.78761699906],[-71.486015,41.78758199906],[-71.486061,41.78754799906],[-71.486183,41.78749499906],[-71.486984,41.78726199906],[-71.487083,41.78722799906],[-71.48716,41.78721199906],[-71.487259,41.78720499906],[-71.487534,41.78721199906],[-71.487616,41.78665399906],[-71.48764,41.78649099906],[-71.488609,41.78641099906],[-71.489563,41.78650299906],[-71.489632,41.78609499906],[-71.489716,41.78569399906],[-71.489746,41.78546499906],[-71.489746,41.78535499906],[-71.489731,41.78526299906],[-71.4897,41.78517499906],[-71.489677,41.78513299906],[-71.489647,41.78509499906],[-71.489532,41.78498799906],[-71.489067,41.78446999906],[-71.488899,41.78428299906],[-71.488823,41.78418399906],[-71.488785,41.78414199906],[-71.488533,41.78354299906],[-71.488487,41.78340099906],[-71.488495,41.78327899906],[-71.489418,41.78335599906],[-71.489517,41.78335599906],[-71.489586,41.78335199906],[-71.489662,41.78332099906],[-71.489754,41.78327599906],[-71.489853,41.78323699906],[-71.489937,41.78321799906],[-71.490059,41.78321099906],[-71.490631,41.78324099906],[-71.490929,41.78324099906],[-71.491203,41.78325299906],[-71.491295,41.78326399906],[-71.491364,41.78328299906],[-71.491554,41.78341699906],[-71.491608,41.78346299906],[-71.491966,41.78321499906],[-71.49235,41.78295199906],[-71.492372,41.78298899906],[-71.492428,41.78305699906],[-71.492495,41.78310299906],[-71.492585,41.78309999906],[-71.492672,41.78305499906],[-71.492758,41.78297299906],[-71.492815,41.78302699906],[-71.492834,41.78308199906],[-71.492844,41.78321799906],[-71.492844,41.78334199906],[-71.492854,41.78340599906],[-71.492892,41.78345899906],[-71.492972,41.78351599906],[-71.493158,41.78362799906],[-71.493218,41.78367599906],[-71.493334,41.78378699906],[-71.493403,41.78384199906],[-71.493545,41.78392999906],[-71.493619,41.78395199906],[-71.493694,41.78399499906],[-71.493761,41.78404499906],[-71.493831,41.78408499906],[-71.493886,41.78402199906],[-71.493945,41.78397399906],[-71.49402,41.78393599906],[-71.494093,41.78392399906],[-71.494177,41.78395999906],[-71.494236,41.78400199906],[-71.494296,41.78405599906],[-71.494334,41.78411899906],[-71.494453,41.78411899906],[-71.494453,41.78408099906],[-71.494466,41.78401599906],[-71.494528,41.78396999906],[-71.494616,41.78394099906],[-71.494469,41.78370999906],[-71.494362,41.78365299906],[-71.494301,41.78359999906],[-71.494217,41.78322599906],[-71.494179,41.78292499906],[-71.494209,41.78270699906],[-71.494247,41.78258899906],[-71.494301,41.78245499906],[-71.494377,41.78228799906],[-71.494461,41.78208199906],[-71.494553,41.78191799906],[-71.494644,41.78165799906],[-71.494713,41.78152499906],[-71.494835,41.78154799906],[-71.494926,41.78155499906],[-71.495171,41.78153199906],[-71.495285,41.78150599906],[-71.496262,41.78118899906],[-71.496307,41.78115499906]]]}}"}, +{"type": "blockgroup", "typeId": 150001, "areaId": 29060, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.415553,41.87954699906],[-71.41555,41.87953199906],[-71.415489,41.87926099906],[-71.415352,41.87862799906],[-71.415237,41.87807099906],[-71.415077,41.87734999906],[-71.41507,41.87728899906],[-71.414894,41.87645299906],[-71.414734,41.87569399906],[-71.414589,41.87502299906],[-71.414436,41.87427499906],[-71.414284,41.87358099906],[-71.414146,41.87292099906],[-71.413933,41.87189499906],[-71.413887,41.87166199906],[-71.413788,41.87121199906],[-71.413445,41.87129199906],[-71.412895,41.87143699906],[-71.412704,41.87148999906],[-71.411705,41.87173799906],[-71.411545,41.87177699906],[-71.410461,41.87206999906],[-71.410133,41.87215399906],[-71.40937,41.87235299906],[-71.408615,41.87253599906],[-71.408393,41.87258799906],[-71.407288,41.87288299906],[-71.406303,41.87313099906],[-71.405922,41.87322199906],[-71.405551,41.87329499906],[-71.405633,41.87341999906],[-71.405752,41.87367399906],[-71.405804,41.87380199906],[-71.405868,41.87401399906],[-71.405912,41.87422999906],[-71.405936,41.87444599906],[-71.405941,41.87462299906],[-71.405933,41.87479999906],[-71.405913,41.87497599906],[-71.405881,41.87513899906],[-71.405838,41.87530099906],[-71.405787,41.87546099906],[-71.405766,41.87551399906],[-71.40563,41.87585799906],[-71.405557,41.87609099906],[-71.405534,41.87620899906],[-71.405527,41.87632499906],[-71.40554,41.87655899906],[-71.405573,41.87681399906],[-71.405648,41.87719799906],[-71.405896,41.87834799906],[-71.405944,41.87857199906],[-71.406337,41.88040899906],[-71.406403,41.88071599906],[-71.40652,41.88070099906],[-71.408948,41.88040399906],[-71.409843,41.88029399906],[-71.410728,41.88018599906],[-71.411606,41.88006299906],[-71.41292,41.87987899906],[-71.41303,41.87986199906],[-71.413887,41.87977199906],[-71.415553,41.87954699906]]]}}"}, +{"type": "blockgroup", "typeId": 150002, "areaId": 29061, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.4219,41.87869499906],[-71.421588,41.87726699906],[-71.421461,41.87669599906],[-71.42144,41.87660099906],[-71.421336,41.87612799906],[-71.42114,41.87534599906],[-71.420987,41.87467699906],[-71.42083,41.87397699906],[-71.420524,41.87263299906],[-71.420156,41.87110499906],[-71.419868,41.86981899906],[-71.419876,41.86977399906],[-71.418999,41.86998399906],[-71.418343,41.87013599906],[-71.417709,41.87028899906],[-71.416534,41.87057099906],[-71.41552,41.87080799906],[-71.413788,41.87121199906],[-71.413887,41.87166199906],[-71.413933,41.87189499906],[-71.414146,41.87292099906],[-71.414284,41.87358099906],[-71.414436,41.87427499906],[-71.414589,41.87502299906],[-71.414734,41.87569399906],[-71.414894,41.87645299906],[-71.41507,41.87728899906],[-71.415077,41.87734999906],[-71.415237,41.87807099906],[-71.415352,41.87862799906],[-71.415489,41.87926099906],[-71.41555,41.87953199906],[-71.415553,41.87954699906],[-71.415656,41.87953299906],[-71.416112,41.87947099906],[-71.416481,41.87941999906],[-71.41806,41.87920399906],[-71.418564,41.87913899906],[-71.421853,41.87869999906],[-71.4219,41.87869499906]]]}}"}, +{"type": "blockgroup", "typeId": 151001, "areaId": 29062, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.406403,41.88071599906],[-71.406337,41.88040899906],[-71.405944,41.87857199906],[-71.405896,41.87834799906],[-71.405648,41.87719799906],[-71.405509,41.87718099906],[-71.405365,41.87716299906],[-71.404884,41.87710599906],[-71.404755,41.87708999906],[-71.404671,41.87707899906],[-71.404152,41.87701799906],[-71.403931,41.87699899906],[-71.403716,41.87698299906],[-71.403381,41.87695699906],[-71.402573,41.87692599906],[-71.402351,41.87692999906],[-71.401848,41.87692999906],[-71.401489,41.87694499906],[-71.401085,41.87696099906],[-71.399658,41.87702199906],[-71.398888,41.87709399906],[-71.398293,41.87715499906],[-71.398132,41.87717099906],[-71.39727,41.87727699906],[-71.39695,41.87730799906],[-71.396362,41.87736899906],[-71.395477,41.87748299906],[-71.395321,41.87733699906],[-71.39521,41.87723199906],[-71.395035,41.87707699906],[-71.394944,41.87699199906],[-71.394786,41.87707399906],[-71.392708,41.87832199906],[-71.391576,41.87894199906],[-71.391051,41.87926199906],[-71.389948,41.87993299906],[-71.389466,41.88027099906],[-71.389404,41.88030599906],[-71.389464,41.88034999906],[-71.389503,41.88037899906],[-71.389885,41.88066099906],[-71.390205,41.88091699906],[-71.390678,41.88127099906],[-71.391151,41.88162599906],[-71.391212,41.88167999906],[-71.392156,41.88242899906],[-71.392166,41.88244599906],[-71.392296,41.88258399906],[-71.39231,41.88259899906],[-71.392931,41.88251599906],[-71.394872,41.88225899906],[-71.400211,41.88157399906],[-71.402163,41.88128299906],[-71.402907,41.88117799906],[-71.403706,41.88105899906],[-71.404748,41.88092699906],[-71.405004,41.88089399906],[-71.40633,41.88072499906],[-71.406403,41.88071599906]]]}}"}, +{"type": "blockgroup", "typeId": 151002, "areaId": 29063, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.403152,41.87366499906],[-71.402969,41.87302399906],[-71.402794,41.87236399906],[-71.402611,41.87171599906],[-71.402428,41.87106699906],[-71.402962,41.87099799906],[-71.403047,41.87098199906],[-71.403014,41.87095099906],[-71.402893,41.87083699906],[-71.402766,41.87074599906],[-71.402587,41.87062899906],[-71.4025,41.87058099906],[-71.402472,41.87056499906],[-71.402341,41.87050399906],[-71.402012,41.87039999906],[-71.401843,41.87036899906],[-71.401698,41.87034999906],[-71.401557,41.87034899906],[-71.401433,41.87035999906],[-71.401276,41.87038399906],[-71.401146,41.87041899906],[-71.401003,41.87047299906],[-71.400866,41.87053399906],[-71.400784,41.87059099906],[-71.400732,41.87062699906],[-71.400627,41.87071599906],[-71.400337,41.87099299906],[-71.400072,41.87134599906],[-71.39998,41.87144999906],[-71.39989,41.87155299906],[-71.399669,41.87194499906],[-71.399385,41.87236999906],[-71.398998,41.87294899906],[-71.398823,41.87321099906],[-71.39871,41.87339099906],[-71.398624,41.87352599906],[-71.398025,41.87447599906],[-71.397856,41.87474299906],[-71.39763,41.87510099906],[-71.397271,41.87552399906],[-71.396893,41.87588699906],[-71.39676,41.87597899906],[-71.395315,41.87680699906],[-71.394944,41.87699199906],[-71.395035,41.87707699906],[-71.39521,41.87723199906],[-71.395321,41.87733699906],[-71.395477,41.87748299906],[-71.396362,41.87736899906],[-71.39695,41.87730799906],[-71.39727,41.87727699906],[-71.398132,41.87717099906],[-71.398293,41.87715499906],[-71.398888,41.87709399906],[-71.399658,41.87702199906],[-71.401085,41.87696099906],[-71.401489,41.87694499906],[-71.401848,41.87692999906],[-71.402351,41.87692999906],[-71.402237,41.87652199906],[-71.402054,41.87587699906],[-71.401871,41.87522099906],[-71.401703,41.87456499906],[-71.401512,41.87389399906],[-71.402359,41.87377199906],[-71.403152,41.87366499906]]]}}"}, +{"type": "blockgroup", "typeId": 151003, "areaId": 29064, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.405941,41.87462299906],[-71.405936,41.87444599906],[-71.405912,41.87422999906],[-71.405868,41.87401399906],[-71.405804,41.87380199906],[-71.405752,41.87367399906],[-71.405633,41.87341999906],[-71.405551,41.87329499906],[-71.405433,41.87311299906],[-71.405179,41.87281099906],[-71.404815,41.87244699906],[-71.404394,41.87208999906],[-71.403854,41.87168999906],[-71.403719,41.87160299906],[-71.40356,41.87147999906],[-71.403412,41.87134499906],[-71.403205,41.87112999906],[-71.403117,41.87104799906],[-71.403047,41.87098199906],[-71.402962,41.87099799906],[-71.402428,41.87106699906],[-71.402611,41.87171599906],[-71.402794,41.87236399906],[-71.402969,41.87302399906],[-71.403152,41.87366499906],[-71.402359,41.87377199906],[-71.401512,41.87389399906],[-71.401703,41.87456499906],[-71.401871,41.87522099906],[-71.402054,41.87587699906],[-71.402237,41.87652199906],[-71.402351,41.87692999906],[-71.402573,41.87692599906],[-71.403381,41.87695699906],[-71.403716,41.87698299906],[-71.403931,41.87699899906],[-71.404152,41.87701799906],[-71.404671,41.87707899906],[-71.404755,41.87708999906],[-71.404884,41.87710599906],[-71.405365,41.87716299906],[-71.405509,41.87718099906],[-71.405648,41.87719799906],[-71.405573,41.87681399906],[-71.40554,41.87655899906],[-71.405527,41.87632499906],[-71.405534,41.87620899906],[-71.405557,41.87609099906],[-71.40563,41.87585799906],[-71.405766,41.87551399906],[-71.405787,41.87546099906],[-71.405838,41.87530099906],[-71.405881,41.87513899906],[-71.405913,41.87497599906],[-71.405933,41.87479999906],[-71.405941,41.87462299906]]]}}"}, +{"type": "blockgroup", "typeId": 152001, "areaId": 29065, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.385269,41.88351099906],[-71.385259,41.88349099906],[-71.385256,41.88347299906],[-71.385231,41.88333899906],[-71.385193,41.88315199906],[-71.385078,41.88266799906],[-71.384995,41.88234699906],[-71.384972,41.88211399906],[-71.384964,41.88207999906],[-71.384967,41.88199999906],[-71.384972,41.88187799906],[-71.385021,41.88145699906],[-71.385063,41.88109599906],[-71.385117,41.88080199906],[-71.385078,41.88023399906],[-71.385056,41.87988999906],[-71.383911,41.87989399906],[-71.382797,41.87988699906],[-71.382423,41.87987899906],[-71.381807,41.87984799906],[-71.381824,41.87997099906],[-71.381849,41.88028199906],[-71.381837,41.88060599906],[-71.381792,41.88091599906],[-71.381728,41.88114499906],[-71.381644,41.88134699906],[-71.381544,41.88153499906],[-71.381414,41.88183299906],[-71.381234,41.88224599906],[-71.381159,41.88239299906],[-71.381111,41.88252099906],[-71.381074,41.88266199906],[-71.38103,41.88287499906],[-71.381018,41.88310899906],[-71.380994,41.88329999906],[-71.380991,41.88332399906],[-71.380977,41.88355299906],[-71.380979,41.88361399906],[-71.380981,41.88370899906],[-71.380984,41.88374899906],[-71.381008,41.88406699906],[-71.382324,41.88389599906],[-71.383888,41.88368999906],[-71.385269,41.88351099906]]]}}"}, +{"type": "blockgroup", "typeId": 152002, "areaId": 29066, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.388718,41.87669399906],[-71.388596,41.87571699906],[-71.388084,41.87574799906],[-71.387337,41.87571299906],[-71.38736,41.87554599906],[-71.387383,41.87536599906],[-71.387421,41.87494299906],[-71.387428,41.87489699906],[-71.387512,41.87422199906],[-71.387543,41.87385199906],[-71.387581,41.87350499906],[-71.387436,41.87349699906],[-71.387154,41.87350499906],[-71.386864,41.87350099906],[-71.386464,41.87349399906],[-71.386319,41.87349299906],[-71.386149,41.87347999906],[-71.385996,41.87346099906],[-71.385884,41.87344599906],[-71.385598,41.87339199906],[-71.385496,41.87337599906],[-71.385323,41.87333899906],[-71.384903,41.87340199906],[-71.384699,41.87342999906],[-71.384701,41.87351099906],[-71.38469,41.87364899906],[-71.384622,41.87408999906],[-71.384512,41.87438799906],[-71.384431,41.87462899906],[-71.384281,41.87498799906],[-71.384148,41.87536799906],[-71.383954,41.87573399906],[-71.383927,41.87580699906],[-71.383725,41.87616999906],[-71.383682,41.87626899906],[-71.383574,41.87637699906],[-71.383543,41.87639399906],[-71.383528,41.87640899906],[-71.383474,41.87645799906],[-71.383444,41.87649599906],[-71.383397,41.87655599906],[-71.383348,41.87661799906],[-71.3832,41.87674399906],[-71.38314,41.87682899906],[-71.382614,41.87725899906],[-71.382496,41.87728899906],[-71.382353,41.87731099906],[-71.38225,41.87734299906],[-71.382146,41.87738099906],[-71.382063,41.87743599906],[-71.3819,41.87751399906],[-71.381841,41.87755299906],[-71.381809,41.87758699906],[-71.381773,41.87765299906],[-71.381628,41.87805399906],[-71.38162,41.87814499906],[-71.381614,41.87849999906],[-71.381632,41.87866699906],[-71.38167,41.87889699906],[-71.381732,41.87939599906],[-71.381771,41.87958699906],[-71.381807,41.87984799906],[-71.382423,41.87987899906],[-71.382797,41.87988699906],[-71.383911,41.87989399906],[-71.385056,41.87988999906],[-71.385078,41.88023399906],[-71.385117,41.88080199906],[-71.385681,41.88078699906],[-71.38649,41.88075299906],[-71.386497,41.88077099906],[-71.386505,41.88088599906],[-71.386757,41.88086699906],[-71.386986,41.88083299906],[-71.387238,41.88077199906],[-71.387482,41.88067999906],[-71.387711,41.88058499906],[-71.388,41.88044399906],[-71.387695,41.88016899906],[-71.387466,41.87991699906],[-71.386971,41.87934099906],[-71.387686,41.87891099906],[-71.38774,41.87879999906],[-71.387933,41.87869699906],[-71.388611,41.87842899906],[-71.388443,41.87791099906],[-71.388434,41.87789399906],[-71.388306,41.87744099906],[-71.388245,41.87729299906],[-71.388153,41.87711699906],[-71.387993,41.87695299906],[-71.388145,41.87691099906],[-71.388657,41.87671999906],[-71.388718,41.87669399906]]]}}"}, +{"type": "blockgroup", "typeId": 152003, "areaId": 29067, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.39231,41.88259899906],[-71.392296,41.88258399906],[-71.392166,41.88244599906],[-71.392156,41.88242899906],[-71.391212,41.88167999906],[-71.391151,41.88162599906],[-71.390678,41.88127099906],[-71.390205,41.88091699906],[-71.389885,41.88066099906],[-71.389503,41.88037899906],[-71.389464,41.88034999906],[-71.389404,41.88030599906],[-71.38913,41.88011199906],[-71.388855,41.87988699906],[-71.388603,41.87968099906],[-71.388275,41.87942899906],[-71.388054,41.87919599906],[-71.387786,41.87885999906],[-71.38774,41.87879999906],[-71.387686,41.87891099906],[-71.386971,41.87934099906],[-71.387466,41.87991699906],[-71.387695,41.88016899906],[-71.388,41.88044399906],[-71.387711,41.88058499906],[-71.387482,41.88067999906],[-71.387238,41.88077199906],[-71.386986,41.88083299906],[-71.386757,41.88086699906],[-71.386505,41.88088599906],[-71.386497,41.88077099906],[-71.38649,41.88075299906],[-71.385681,41.88078699906],[-71.385117,41.88080199906],[-71.385063,41.88109599906],[-71.385021,41.88145699906],[-71.384972,41.88187799906],[-71.384967,41.88199999906],[-71.384964,41.88207999906],[-71.384972,41.88211399906],[-71.384995,41.88234699906],[-71.385078,41.88266799906],[-71.385193,41.88315199906],[-71.385231,41.88333899906],[-71.385256,41.88347299906],[-71.385259,41.88349099906],[-71.385269,41.88351099906],[-71.385816,41.88343599906],[-71.386073,41.88340399906],[-71.386317,41.88337199906],[-71.386742,41.88331599906],[-71.388234,41.88312499906],[-71.389355,41.88297499906],[-71.389687,41.88292999906],[-71.389751,41.88292199906],[-71.390044,41.88288299906],[-71.390573,41.88281199906],[-71.391533,41.88268299906],[-71.39184,41.88266099906],[-71.39231,41.88259899906]]]}}"}, +{"type": "blockgroup", "typeId": 153001, "areaId": 29068, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.379082,41.89015599906],[-71.378883,41.89016299906],[-71.378777,41.89017099906],[-71.378555,41.89018199906],[-71.377373,41.89023199906],[-71.375877,41.89029299906],[-71.37574,41.89030099906],[-71.374901,41.89033499906],[-71.373917,41.89038099906],[-71.373322,41.89040399906],[-71.373179,41.89069699906],[-71.372978,41.89110899906],[-71.372704,41.89163999906],[-71.37265,41.89174299906],[-71.372353,41.89229999906],[-71.37233,41.89234499906],[-71.372269,41.89245199906],[-71.372246,41.89250899906],[-71.372215,41.89255899906],[-71.372185,41.89261999906],[-71.371933,41.89311599906],[-71.371819,41.89334099906],[-71.371498,41.89396299906],[-71.371475,41.89401599906],[-71.371231,41.89450099906],[-71.371215,41.89453499906],[-71.37119,41.89458599906],[-71.37113,41.89470999906],[-71.37109,41.89477299906],[-71.373798,41.89445399906],[-71.373897,41.89444199906],[-71.37409,41.89441899906],[-71.376091,41.89418199906],[-71.376369,41.89415099906],[-71.376472,41.89403999906],[-71.376499,41.89401099906],[-71.37653,41.89397799906],[-71.377457,41.89297499906],[-71.377495,41.89293699906],[-71.377625,41.89278799906],[-71.377777,41.89262799906],[-71.378113,41.89225799906],[-71.378334,41.89200599906],[-71.378479,41.89180799906],[-71.378593,41.89163599906],[-71.3787,41.89144899906],[-71.378815,41.89122399906],[-71.378952,41.89085399906],[-71.379005,41.89065899906],[-71.379059,41.89036599906],[-71.379082,41.89015599906]]]}}"}, +{"type": "blockgroup", "typeId": 153002, "areaId": 29069, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.379089,41.88981999906],[-71.379066,41.88943899906],[-71.379007,41.88873299906],[-71.378937,41.88789699906],[-71.37886,41.88689799906],[-71.378805,41.88610799906],[-71.378769,41.88560499906],[-71.378739,41.88527099906],[-71.378532,41.88519299906],[-71.378166,41.88506699906],[-71.37812,41.88505599906],[-71.378059,41.88503299906],[-71.377876,41.88497499906],[-71.377029,41.88474699906],[-71.376328,41.88454399906],[-71.375999,41.88516199906],[-71.375671,41.88579599906],[-71.375343,41.88643599906],[-71.375076,41.88697099906],[-71.375015,41.88708899906],[-71.37471,41.88770099906],[-71.374695,41.88772199906],[-71.374527,41.88806199906],[-71.374359,41.88837799906],[-71.374229,41.88863399906],[-71.374039,41.88901499906],[-71.374024,41.88903299906],[-71.37368,41.88969399906],[-71.373322,41.89040399906],[-71.373917,41.89038099906],[-71.374901,41.89033499906],[-71.37574,41.89030099906],[-71.375877,41.89029299906],[-71.377373,41.89023199906],[-71.378555,41.89018199906],[-71.378777,41.89017099906],[-71.378883,41.89016299906],[-71.379082,41.89015599906],[-71.379082,41.89006799906],[-71.379089,41.88996899906],[-71.379089,41.88981999906]]]}}"}, +{"type": "blockgroup", "typeId": 154001, "areaId": 29070, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.373322,41.89040399906],[-71.373123,41.89049499906],[-71.372932,41.88993499906],[-71.372922,41.88991799906],[-71.372818,41.88959899906],[-71.372612,41.88909099906],[-71.372368,41.88845099906],[-71.372276,41.88816099906],[-71.372131,41.88777899906],[-71.372105,41.88772499906],[-71.371887,41.88710399906],[-71.371704,41.88660799906],[-71.371674,41.88650499906],[-71.371498,41.88597899906],[-71.371488,41.88596199906],[-71.371317,41.88549599906],[-71.371262,41.88534499906],[-71.371124,41.88489199906],[-71.371056,41.88468899906],[-71.370834,41.88466299906],[-71.37043,41.88484199906],[-71.370308,41.88488399906],[-71.370224,41.88490699906],[-71.370071,41.88493699906],[-71.369843,41.88496399906],[-71.36927,41.88503599906],[-71.36747,41.88519699906],[-71.367382,41.88520299906],[-71.367027,41.88522699906],[-71.367089,41.88532299906],[-71.367167,41.88544299906],[-71.367626,41.88627699906],[-71.367736,41.88647599906],[-71.368175,41.88727199906],[-71.368362,41.88760099906],[-71.368693,41.88805999906],[-71.370391,41.89019099906],[-71.370522,41.89036199906],[-71.370736,41.89062899906],[-71.370994,41.89095699906],[-71.371124,41.89111299906],[-71.371629,41.89173999906],[-71.371658,41.89178099906],[-71.372246,41.89250899906],[-71.372269,41.89245199906],[-71.37233,41.89234499906],[-71.372353,41.89229999906],[-71.37265,41.89174299906],[-71.372704,41.89163999906],[-71.372978,41.89110899906],[-71.373179,41.89069699906],[-71.373322,41.89040399906]]]}}"}, +{"type": "blockgroup", "typeId": 154002, "areaId": 29071, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.376328,41.88454399906],[-71.376053,41.88446799906],[-71.375786,41.88437999906],[-71.375755,41.88437699906],[-71.375656,41.88435699906],[-71.375496,41.88434199906],[-71.375061,41.88431199906],[-71.374237,41.88425399906],[-71.37394,41.88423499906],[-71.373802,41.88423499906],[-71.373718,41.88423899906],[-71.373299,41.88427699906],[-71.372192,41.88437699906],[-71.371948,41.88439199906],[-71.371805,41.88438099906],[-71.371699,41.88435399906],[-71.371582,41.88431199906],[-71.371452,41.88426399906],[-71.371353,41.88439899906],[-71.371124,41.88453299906],[-71.370834,41.88466299906],[-71.371056,41.88468899906],[-71.371124,41.88489199906],[-71.371262,41.88534499906],[-71.371317,41.88549599906],[-71.371488,41.88596199906],[-71.371498,41.88597899906],[-71.371674,41.88650499906],[-71.371704,41.88660799906],[-71.371887,41.88710399906],[-71.372105,41.88772499906],[-71.372131,41.88777899906],[-71.372276,41.88816099906],[-71.372368,41.88845099906],[-71.372612,41.88909099906],[-71.372818,41.88959899906],[-71.372922,41.88991799906],[-71.372932,41.88993499906],[-71.373123,41.89049499906],[-71.373322,41.89040399906],[-71.37368,41.88969399906],[-71.374024,41.88903299906],[-71.374039,41.88901499906],[-71.374229,41.88863399906],[-71.374359,41.88837799906],[-71.374527,41.88806199906],[-71.374695,41.88772199906],[-71.37471,41.88770099906],[-71.375015,41.88708899906],[-71.375076,41.88697099906],[-71.375343,41.88643599906],[-71.375671,41.88579599906],[-71.375999,41.88516199906],[-71.376328,41.88454399906]]]}}"}, +{"type": "blockgroup", "typeId": 155001, "areaId": 29072, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.365457,41.89544099906],[-71.36528,41.89497899906],[-71.365227,41.89485199906],[-71.365211,41.89482899906],[-71.364944,41.89426799906],[-71.364891,41.89415399906],[-71.364647,41.89362699906],[-71.364471,41.89322699906],[-71.364395,41.89302799906],[-71.364334,41.89290199906],[-71.364265,41.89277299906],[-71.363487,41.89305499906],[-71.362817,41.89331099906],[-71.362793,41.89331399906],[-71.362015,41.89331799906],[-71.361969,41.89332199906],[-71.361191,41.89331099906],[-71.361166,41.89330699906],[-71.359589,41.89330699906],[-71.358772,41.89331399906],[-71.358322,41.89330699906],[-71.357979,41.89329499906],[-71.357899,41.89329199906],[-71.357506,41.89327999906],[-71.356108,41.89322499906],[-71.35598,41.89324699906],[-71.355965,41.89312699906],[-71.354362,41.89405799906],[-71.354042,41.89424099906],[-71.354103,41.89456599906],[-71.354164,41.89482899906],[-71.354248,41.89520599906],[-71.354286,41.89541999906],[-71.35434,41.89570599906],[-71.354362,41.89579799906],[-71.354515,41.89649999906],[-71.354544,41.89662899906],[-71.354554,41.89671099906],[-71.354558,41.89672799906],[-71.355058,41.89666899906],[-71.355581,41.89660699906],[-71.356067,41.89654999906],[-71.356757,41.89646799906],[-71.357755,41.89634999906],[-71.358695,41.89623999906],[-71.359049,41.89619699906],[-71.359541,41.89613899906],[-71.365041,41.89548999906],[-71.365457,41.89544099906]]]}}"}, +{"type": "blockgroup", "typeId": 155002, "areaId": 29073, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.364265,41.89277299906],[-71.364166,41.89259699906],[-71.364105,41.89245199906],[-71.364082,41.89232299906],[-71.364052,41.89203299906],[-71.363951,41.89114399906],[-71.363937,41.89101799906],[-71.363899,41.89071999906],[-71.363869,41.89049099906],[-71.363838,41.89023999906],[-71.363785,41.88979699906],[-71.363754,41.88943899906],[-71.363739,41.88926699906],[-71.363663,41.88862999906],[-71.363533,41.88870599906],[-71.36245,41.88934699906],[-71.36232,41.88942699906],[-71.361404,41.88996099906],[-71.360336,41.89057499906],[-71.359314,41.89116299906],[-71.359016,41.89134599906],[-71.358299,41.89178499906],[-71.358124,41.89189099906],[-71.357286,41.89234399906],[-71.357269,41.89235699906],[-71.356216,41.89297899906],[-71.355965,41.89312699906],[-71.35598,41.89324699906],[-71.356108,41.89322499906],[-71.357506,41.89327999906],[-71.357899,41.89329199906],[-71.357979,41.89329499906],[-71.358322,41.89330699906],[-71.358772,41.89331399906],[-71.359589,41.89330699906],[-71.361166,41.89330699906],[-71.361191,41.89331099906],[-71.361969,41.89332199906],[-71.362015,41.89331799906],[-71.362793,41.89331399906],[-71.362817,41.89331099906],[-71.363487,41.89305499906],[-71.364265,41.89277299906]]]}}"}, +{"type": "blockgroup", "typeId": 155003, "areaId": 29074, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.372246,41.89250899906],[-71.371658,41.89178099906],[-71.371629,41.89173999906],[-71.371124,41.89111299906],[-71.370994,41.89095699906],[-71.370736,41.89062899906],[-71.370522,41.89036199906],[-71.370391,41.89019099906],[-71.368693,41.88805999906],[-71.368362,41.88760099906],[-71.368175,41.88727199906],[-71.367736,41.88647599906],[-71.367626,41.88627699906],[-71.367538,41.88632999906],[-71.366837,41.88674499906],[-71.366676,41.88683699906],[-71.366074,41.88719899906],[-71.36599,41.88724899906],[-71.365829,41.88734399906],[-71.36573,41.88740899906],[-71.365532,41.88752399906],[-71.364685,41.88803899906],[-71.364288,41.88826799906],[-71.363663,41.88862999906],[-71.363739,41.88926699906],[-71.363754,41.88943899906],[-71.363785,41.88979699906],[-71.363838,41.89023999906],[-71.363869,41.89049099906],[-71.363899,41.89071999906],[-71.363937,41.89101799906],[-71.363951,41.89114399906],[-71.364052,41.89203299906],[-71.364082,41.89232299906],[-71.364105,41.89245199906],[-71.364166,41.89259699906],[-71.364265,41.89277299906],[-71.364708,41.89260099906],[-71.365135,41.89260099906],[-71.367943,41.89263199906],[-71.368721,41.89263499906],[-71.370872,41.89265799906],[-71.371651,41.89266199906],[-71.371819,41.89266199906],[-71.372185,41.89261999906],[-71.372215,41.89255899906],[-71.372246,41.89250899906]]]}}"}, +{"type": "blockgroup", "typeId": 155004, "areaId": 29075, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.372185,41.89261999906],[-71.371819,41.89266199906],[-71.371651,41.89266199906],[-71.370872,41.89265799906],[-71.368721,41.89263499906],[-71.367943,41.89263199906],[-71.365135,41.89260099906],[-71.364708,41.89260099906],[-71.364265,41.89277299906],[-71.364334,41.89290199906],[-71.364395,41.89302799906],[-71.364471,41.89322699906],[-71.364647,41.89362699906],[-71.364891,41.89415399906],[-71.364944,41.89426799906],[-71.365211,41.89482899906],[-71.365227,41.89485199906],[-71.36528,41.89497899906],[-71.365457,41.89544099906],[-71.365856,41.89539299906],[-71.366113,41.89536299906],[-71.366239,41.89534799906],[-71.37109,41.89477299906],[-71.37113,41.89470999906],[-71.37119,41.89458599906],[-71.371215,41.89453499906],[-71.371231,41.89450099906],[-71.371475,41.89401599906],[-71.371498,41.89396299906],[-71.371819,41.89334099906],[-71.371933,41.89311599906],[-71.372185,41.89261999906]]]}}"}, +{"type": "blockgroup", "typeId": 156001, "areaId": 29076, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.361404,41.88996099906],[-71.360275,41.88988499906],[-71.358833,41.88981599906],[-71.356819,41.88974399906],[-71.35569,41.88970199906],[-71.354103,41.88962599906],[-71.354088,41.89023599906],[-71.354088,41.89027399906],[-71.35408,41.89092999906],[-71.35408,41.89133099906],[-71.354073,41.89158999906],[-71.354073,41.89215499906],[-71.354065,41.89276099906],[-71.354057,41.89282999906],[-71.354057,41.89334499906],[-71.354042,41.89424099906],[-71.354362,41.89405799906],[-71.355965,41.89312699906],[-71.356216,41.89297899906],[-71.357269,41.89235699906],[-71.357286,41.89234399906],[-71.358124,41.89189099906],[-71.358299,41.89178499906],[-71.359016,41.89134599906],[-71.359314,41.89116299906],[-71.360336,41.89057499906],[-71.361404,41.88996099906]]]}}"}, +{"type": "blockgroup", "typeId": 156002, "areaId": 29077, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.363533,41.88870599906],[-71.36216,41.88862999906],[-71.35891,41.88851199906],[-71.358246,41.88848499906],[-71.356918,41.88844299906],[-71.356949,41.88798499906],[-71.356934,41.88790499906],[-71.356705,41.88732099906],[-71.355087,41.88771399906],[-71.354126,41.88793599906],[-71.354118,41.88833599906],[-71.354111,41.88904599906],[-71.354103,41.88962599906],[-71.35569,41.88970199906],[-71.356819,41.88974399906],[-71.358833,41.88981599906],[-71.360275,41.88988499906],[-71.361404,41.88996099906],[-71.36232,41.88942699906],[-71.36245,41.88934699906],[-71.363533,41.88870599906]]]}}"}, +{"type": "blockgroup", "typeId": 156003, "areaId": 29078, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.367626,41.88627699906],[-71.367167,41.88544299906],[-71.367089,41.88532299906],[-71.367027,41.88522699906],[-71.366707,41.88528099906],[-71.366371,41.88531099906],[-71.365494,41.88539099906],[-71.365158,41.88542199906],[-71.364632,41.88547099906],[-71.364342,41.88550199906],[-71.364288,41.88551299906],[-71.363945,41.88558599906],[-71.363205,41.88576899906],[-71.362564,41.88592099906],[-71.362167,41.88601299906],[-71.361748,41.88611599906],[-71.361313,41.88621899906],[-71.361115,41.88626899906],[-71.360977,41.88629899906],[-71.3601,41.88650499906],[-71.359245,41.88671499906],[-71.358429,41.88691299906],[-71.358223,41.88695899906],[-71.357849,41.88705099906],[-71.357582,41.88711199906],[-71.356705,41.88732099906],[-71.356934,41.88790499906],[-71.356949,41.88798499906],[-71.356918,41.88844299906],[-71.358246,41.88848499906],[-71.35891,41.88851199906],[-71.36216,41.88862999906],[-71.363533,41.88870599906],[-71.363663,41.88862999906],[-71.364288,41.88826799906],[-71.364685,41.88803899906],[-71.365532,41.88752399906],[-71.36573,41.88740899906],[-71.365829,41.88734399906],[-71.36599,41.88724899906],[-71.366074,41.88719899906],[-71.366676,41.88683699906],[-71.366837,41.88674499906],[-71.367538,41.88632999906],[-71.367626,41.88627699906]]]}}"}, +{"type": "blockgroup", "typeId": 157001, "areaId": 29079, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.345934,41.89774999906],[-71.345845,41.89741499906],[-71.345833,41.89739599906],[-71.345634,41.89675499906],[-71.345428,41.89611099906],[-71.345169,41.89535899906],[-71.345032,41.89493599906],[-71.344978,41.89475999906],[-71.344803,41.89423399906],[-71.344711,41.89392099906],[-71.344635,41.89361599906],[-71.344528,41.89318799906],[-71.344482,41.89297899906],[-71.344452,41.89283399906],[-71.344276,41.89219699906],[-71.344139,41.89163999906],[-71.34417,41.89150999906],[-71.342979,41.89107099906],[-71.342209,41.89078099906],[-71.341759,41.89059799906],[-71.341667,41.89060199906],[-71.341545,41.89060199906],[-71.341331,41.89057899906],[-71.341148,41.89054899906],[-71.340828,41.89046499906],[-71.340215,41.89025099906],[-71.340149,41.89022799906],[-71.340087,41.89020499906],[-71.340018,41.89017999906],[-71.339903,41.89014499906],[-71.33985,41.89012999906],[-71.339786,41.89061899906],[-71.339767,41.89079399906],[-71.339539,41.89257999906],[-71.339517,41.89276999906],[-71.339324,41.89431099906],[-71.339307,41.89443899906],[-71.339292,41.89457399906],[-71.339286,41.89460899906],[-71.338787,41.89859299906],[-71.341316,41.89829399906],[-71.343864,41.89799299906],[-71.344105,41.89796399906],[-71.345934,41.89774999906]]]}}"}, +{"type": "blockgroup", "typeId": 157002, "areaId": 29080, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.354126,41.88793599906],[-71.353157,41.88817599906],[-71.352257,41.88839299906],[-71.351616,41.88854599906],[-71.350533,41.88881699906],[-71.349609,41.88903399906],[-71.34919,41.88912999906],[-71.348351,41.88932799906],[-71.347504,41.88952999906],[-71.347452,41.88954199906],[-71.346802,41.88970199906],[-71.346375,41.88980899906],[-71.345917,41.88991499906],[-71.345459,41.89002599906],[-71.345108,41.89010999906],[-71.344238,41.89031199906],[-71.344055,41.89035799906],[-71.343063,41.89051799906],[-71.34269,41.89056399906],[-71.342461,41.89058299906],[-71.341759,41.89059799906],[-71.342209,41.89078099906],[-71.342979,41.89107099906],[-71.34417,41.89150999906],[-71.344292,41.89154099906],[-71.344406,41.89155199906],[-71.344431,41.89155599906],[-71.345322,41.89160899906],[-71.346207,41.89166599906],[-71.346344,41.89167399906],[-71.347107,41.89172399906],[-71.347916,41.89177299906],[-71.348083,41.89178099906],[-71.348717,41.89182299906],[-71.348999,41.89184199906],[-71.349594,41.89187999906],[-71.349892,41.89189899906],[-71.350403,41.89193299906],[-71.3507,41.89195299906],[-71.35128,41.89198699906],[-71.351494,41.89199799906],[-71.352226,41.89204399906],[-71.353111,41.89209699906],[-71.354073,41.89215499906],[-71.354073,41.89158999906],[-71.35408,41.89133099906],[-71.35408,41.89092999906],[-71.354088,41.89027399906],[-71.354088,41.89023599906],[-71.354103,41.88962599906],[-71.354111,41.88904599906],[-71.354118,41.88833599906],[-71.354126,41.88793599906]]]}}"}, +{"type": "blockgroup", "typeId": 157003, "areaId": 29081, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.354073,41.89215499906],[-71.353111,41.89209699906],[-71.352226,41.89204399906],[-71.351494,41.89199799906],[-71.35128,41.89198699906],[-71.3507,41.89195299906],[-71.350403,41.89193299906],[-71.349892,41.89189899906],[-71.349594,41.89187999906],[-71.348999,41.89184199906],[-71.348717,41.89182299906],[-71.348083,41.89178099906],[-71.347916,41.89177299906],[-71.347107,41.89172399906],[-71.346344,41.89167399906],[-71.346207,41.89166599906],[-71.345322,41.89160899906],[-71.344431,41.89155599906],[-71.344406,41.89155199906],[-71.344292,41.89154099906],[-71.34417,41.89150999906],[-71.344139,41.89163999906],[-71.344276,41.89219699906],[-71.344452,41.89283399906],[-71.344482,41.89297899906],[-71.344528,41.89318799906],[-71.344635,41.89361599906],[-71.344711,41.89392099906],[-71.344803,41.89423399906],[-71.344978,41.89475999906],[-71.345032,41.89493599906],[-71.345169,41.89535899906],[-71.345428,41.89611099906],[-71.345634,41.89675499906],[-71.345833,41.89739599906],[-71.345845,41.89741499906],[-71.345934,41.89774999906],[-71.346499,41.89768099906],[-71.346809,41.89764499906],[-71.347849,41.89752199906],[-71.348504,41.89744399906],[-71.348565,41.89743399906],[-71.349419,41.89692299906],[-71.350235,41.89644599906],[-71.35041,41.89635099906],[-71.34993,41.89583999906],[-71.34964,41.89550399906],[-71.349632,41.89545399906],[-71.349625,41.89531299906],[-71.349617,41.89516099906],[-71.349594,41.89495799906],[-71.34951,41.89453899906],[-71.349464,41.89430999906],[-71.349411,41.89398999906],[-71.349396,41.89387499906],[-71.349304,41.89343299906],[-71.350151,41.89333699906],[-71.350708,41.89330699906],[-71.351456,41.89332199906],[-71.352211,41.89332199906],[-71.353104,41.89332599906],[-71.354057,41.89334499906],[-71.354057,41.89282999906],[-71.354065,41.89276099906],[-71.354073,41.89215499906]]]}}"}, +{"type": "blockgroup", "typeId": 157004, "areaId": 29082, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.354558,41.89672799906],[-71.354554,41.89671099906],[-71.354544,41.89662899906],[-71.354515,41.89649999906],[-71.354362,41.89579799906],[-71.35434,41.89570599906],[-71.354286,41.89541999906],[-71.354248,41.89520599906],[-71.354164,41.89482899906],[-71.354103,41.89456599906],[-71.354042,41.89424099906],[-71.354057,41.89334499906],[-71.353104,41.89332599906],[-71.352211,41.89332199906],[-71.351456,41.89332199906],[-71.350708,41.89330699906],[-71.350151,41.89333699906],[-71.349304,41.89343299906],[-71.349396,41.89387499906],[-71.349411,41.89398999906],[-71.349464,41.89430999906],[-71.34951,41.89453899906],[-71.349594,41.89495799906],[-71.349617,41.89516099906],[-71.349625,41.89531299906],[-71.349632,41.89545399906],[-71.34964,41.89550399906],[-71.34993,41.89583999906],[-71.35041,41.89635099906],[-71.350235,41.89644599906],[-71.349419,41.89692299906],[-71.348565,41.89743399906],[-71.349436,41.89733399906],[-71.350383,41.89722299906],[-71.351297,41.89711399906],[-71.351335,41.89710999906],[-71.352555,41.89696499906],[-71.35294,41.89691999906],[-71.354193,41.89677099906],[-71.354558,41.89672799906]]]}}"}, +{"type": "blockgroup", "typeId": 158001, "areaId": 29083, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.348938,41.88014599906],[-71.348114,41.88013799906],[-71.347122,41.88011599906],[-71.347137,41.87927599906],[-71.347145,41.87914999906],[-71.34716,41.87855899906],[-71.34716,41.87776899906],[-71.347164,41.87773399906],[-71.347168,41.87768599906],[-71.347183,41.87708299906],[-71.346695,41.87698799906],[-71.346085,41.87686899906],[-71.345444,41.87673999906],[-71.345299,41.87670899906],[-71.344879,41.87662499906],[-71.344609,41.87657499906],[-71.344406,41.87653699906],[-71.344025,41.87646899906],[-71.343811,41.87641199906],[-71.343727,41.87638899906],[-71.343468,41.87632799906],[-71.34345,41.87631499906],[-71.343391,41.87628599906],[-71.343277,41.87622099906],[-71.343063,41.87607599906],[-71.342903,41.87593499906],[-71.342728,41.87568999906],[-71.342624,41.87553999906],[-71.342537,41.87541599906],[-71.342407,41.87521399906],[-71.342262,41.87503399906],[-71.342079,41.87484399906],[-71.341904,41.87468699906],[-71.341637,41.87448899906],[-71.341202,41.87423299906],[-71.34111,41.87420299906],[-71.341003,41.87416399906],[-71.340861,41.87411299906],[-71.340844,41.87414199906],[-71.340798,41.87426899906],[-71.340783,41.87437999906],[-71.340804,41.87449399906],[-71.340786,41.87460999906],[-71.340801,41.87471799906],[-71.340781,41.87494899906],[-71.340742,41.87507299906],[-71.340603,41.87514899906],[-71.340457,41.87515999906],[-71.340129,41.87523399906],[-71.340015,41.87532699906],[-71.339847,41.87534099906],[-71.339545,41.87540199906],[-71.339448,41.87549699906],[-71.339461,41.87561199906],[-71.339464,41.87574299906],[-71.339566,41.87583499906],[-71.339595,41.87596199906],[-71.33886,41.87611199906],[-71.33983,41.87883199906],[-71.33996,41.87921299906],[-71.340164,41.87976899906],[-71.340473,41.88069899906],[-71.340626,41.88106199906],[-71.34089,41.88180399906],[-71.34085,41.88212699906],[-71.340752,41.88290399906],[-71.340204,41.88728499906],[-71.33985,41.89012999906],[-71.339903,41.89014499906],[-71.340018,41.89017999906],[-71.340087,41.89020499906],[-71.340149,41.89022799906],[-71.340215,41.89025099906],[-71.340828,41.89046499906],[-71.341148,41.89054899906],[-71.341331,41.89057899906],[-71.341545,41.89060199906],[-71.341667,41.89060199906],[-71.341759,41.89059799906],[-71.342461,41.89058299906],[-71.34269,41.89056399906],[-71.343063,41.89051799906],[-71.344055,41.89035799906],[-71.344238,41.89031199906],[-71.345108,41.89010999906],[-71.345459,41.89002599906],[-71.345917,41.88991499906],[-71.346375,41.88980899906],[-71.346802,41.88970199906],[-71.347452,41.88954199906],[-71.347504,41.88952999906],[-71.347313,41.88882799906],[-71.34713,41.88814899906],[-71.346954,41.88746999906],[-71.346878,41.88718399906],[-71.346786,41.88680299906],[-71.346611,41.88610499906],[-71.346436,41.88541399906],[-71.346222,41.88462399906],[-71.346031,41.88391099906],[-71.345978,41.88368599906],[-71.345825,41.88308299906],[-71.345795,41.88289999906],[-71.345749,41.88210699906],[-71.345711,41.88144699906],[-71.345673,41.88077899906],[-71.346817,41.88077899906],[-71.348701,41.88080599906],[-71.348938,41.88014599906]]]}}"}, +{"type": "blockgroup", "typeId": 158002, "areaId": 29084, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.354263,41.87847899906],[-71.353287,41.87828099906],[-71.352112,41.87805599906],[-71.351423,41.87792399906],[-71.351112,41.87786499906],[-71.35051,41.87774199906],[-71.349854,41.87760899906],[-71.349609,41.87756299906],[-71.348689,41.87737799906],[-71.347908,41.87721999906],[-71.347817,41.87720299906],[-71.347183,41.87708299906],[-71.347168,41.87768599906],[-71.347164,41.87773399906],[-71.34716,41.87776899906],[-71.34716,41.87855899906],[-71.347145,41.87914999906],[-71.347137,41.87927599906],[-71.347122,41.88011599906],[-71.348114,41.88013799906],[-71.348938,41.88014599906],[-71.348701,41.88080599906],[-71.348938,41.88080999906],[-71.349937,41.88080999906],[-71.350517,41.88081399906],[-71.351936,41.88082899906],[-71.352943,41.88083299906],[-71.35421,41.88084799906],[-71.354225,41.88022199906],[-71.35424,41.87916599906],[-71.354263,41.87847899906]]]}}"}, +{"type": "blockgroup", "typeId": 158003, "areaId": 29085, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.35421,41.88084799906],[-71.352943,41.88083299906],[-71.351936,41.88082899906],[-71.350517,41.88081399906],[-71.349937,41.88080999906],[-71.348938,41.88080999906],[-71.348701,41.88080599906],[-71.346817,41.88077899906],[-71.345673,41.88077899906],[-71.345711,41.88144699906],[-71.345749,41.88210699906],[-71.345795,41.88289999906],[-71.345825,41.88308299906],[-71.345978,41.88368599906],[-71.346031,41.88391099906],[-71.346222,41.88462399906],[-71.346436,41.88541399906],[-71.347473,41.88518899906],[-71.348297,41.88499099906],[-71.350548,41.88445699906],[-71.350616,41.88444099906],[-71.351669,41.88440299906],[-71.352928,41.88437999906],[-71.354179,41.88432299906],[-71.354187,41.88348799906],[-71.354187,41.88314399906],[-71.354195,41.88282399906],[-71.354202,41.88216799906],[-71.35421,41.88150399906],[-71.35421,41.88084799906]]]}}"}, +{"type": "blockgroup", "typeId": 158004, "areaId": 29086, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.354179,41.88432299906],[-71.352928,41.88437999906],[-71.351669,41.88440299906],[-71.350616,41.88444099906],[-71.350548,41.88445699906],[-71.348297,41.88499099906],[-71.347473,41.88518899906],[-71.346436,41.88541399906],[-71.346611,41.88610499906],[-71.346786,41.88680299906],[-71.346878,41.88718399906],[-71.346954,41.88746999906],[-71.348755,41.88704299906],[-71.351379,41.88640999906],[-71.352524,41.88614699906],[-71.353607,41.88588699906],[-71.354149,41.88576099906],[-71.354156,41.88567399906],[-71.354156,41.88545599906],[-71.354164,41.88508199906],[-71.354164,41.88489199906],[-71.354179,41.88432299906]]]}}"}, +{"type": "blockgroup", "typeId": 158005, "areaId": 29087, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.354149,41.88576099906],[-71.353607,41.88588699906],[-71.352524,41.88614699906],[-71.351379,41.88640999906],[-71.348755,41.88704299906],[-71.346954,41.88746999906],[-71.34713,41.88814899906],[-71.347313,41.88882799906],[-71.347504,41.88952999906],[-71.348351,41.88932799906],[-71.34919,41.88912999906],[-71.349609,41.88903399906],[-71.350533,41.88881699906],[-71.351616,41.88854599906],[-71.352257,41.88839299906],[-71.353157,41.88817599906],[-71.354126,41.88793599906],[-71.354134,41.88720699906],[-71.354141,41.88650899906],[-71.354149,41.88576099906]]]}}"}, +{"type": "blockgroup", "typeId": 159001, "areaId": 29088, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.364294,41.88536499906],[-71.364281,41.88516999906],[-71.364288,41.88459399906],[-71.362373,41.88453699906],[-71.361298,41.88451399906],[-71.359222,41.88445999906],[-71.357071,41.88439899906],[-71.356026,41.88436499906],[-71.354179,41.88432299906],[-71.354164,41.88489199906],[-71.354164,41.88508199906],[-71.354156,41.88545599906],[-71.354156,41.88567399906],[-71.354149,41.88576099906],[-71.354141,41.88650899906],[-71.354134,41.88720699906],[-71.354126,41.88793599906],[-71.355087,41.88771399906],[-71.356705,41.88732099906],[-71.357582,41.88711199906],[-71.357849,41.88705099906],[-71.358223,41.88695899906],[-71.358429,41.88691299906],[-71.359245,41.88671499906],[-71.3601,41.88650499906],[-71.360977,41.88629899906],[-71.361115,41.88626899906],[-71.361313,41.88621899906],[-71.361748,41.88611599906],[-71.362167,41.88601299906],[-71.362564,41.88592099906],[-71.363205,41.88576899906],[-71.363945,41.88558599906],[-71.364288,41.88551299906],[-71.364294,41.88536499906]]]}}"}, +{"type": "blockgroup", "typeId": 159002, "areaId": 29089, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.357353,41.87900499906],[-71.356873,41.87890999906],[-71.356018,41.87873799906],[-71.355591,41.87865099906],[-71.355156,41.87857099906],[-71.354469,41.87844099906],[-71.354263,41.87839899906],[-71.354263,41.87847899906],[-71.35424,41.87916599906],[-71.354225,41.88022199906],[-71.35421,41.88084799906],[-71.35421,41.88150399906],[-71.354202,41.88216799906],[-71.354195,41.88282399906],[-71.354187,41.88314399906],[-71.354187,41.88348799906],[-71.354179,41.88432299906],[-71.356026,41.88436499906],[-71.357071,41.88439899906],[-71.357109,41.88357899906],[-71.357132,41.88292699906],[-71.357132,41.88285799906],[-71.357185,41.88226699906],[-71.357178,41.88159199906],[-71.357254,41.88091699906],[-71.357285,41.88025699906],[-71.357323,41.87958099906],[-71.357346,41.87910499906],[-71.357353,41.87900499906]]]}}"}, +{"type": "blockgroup", "typeId": 159003, "areaId": 29090, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.361122,41.87975899906],[-71.360832,41.87970399906],[-71.360023,41.87953899906],[-71.358742,41.87927599906],[-71.357628,41.87906299906],[-71.357353,41.87900499906],[-71.357346,41.87910499906],[-71.357323,41.87958099906],[-71.357285,41.88025699906],[-71.357254,41.88091699906],[-71.357178,41.88159199906],[-71.357185,41.88226699906],[-71.357132,41.88285799906],[-71.357132,41.88292699906],[-71.357109,41.88357899906],[-71.358253,41.88361399906],[-71.359314,41.88365199906],[-71.360443,41.88368599906],[-71.360474,41.88315999906],[-71.360489,41.88304099906],[-71.360542,41.88237799906],[-71.360771,41.88238499906],[-71.360954,41.88106199906],[-71.360954,41.88102299906],[-71.361107,41.87985999906],[-71.361122,41.87975899906]]]}}"}, +{"type": "blockgroup", "typeId": 159004, "areaId": 29091, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.367027,41.88522699906],[-71.366759,41.88481899906],[-71.366511,41.88437799906],[-71.36579,41.88301899906],[-71.365586,41.88266199906],[-71.365471,41.88240699906],[-71.365247,41.88183899906],[-71.365183,41.88165899906],[-71.365062,41.88127999906],[-71.364982,41.88095999906],[-71.364933,41.88065299906],[-71.364925,41.88057599906],[-71.364915,41.88048699906],[-71.364874,41.88047399906],[-71.364777,41.88044399906],[-71.364377,41.88035399906],[-71.363976,41.88026399906],[-71.36353,41.88018599906],[-71.362747,41.88005099906],[-71.362649,41.88003499906],[-71.362236,41.87997099906],[-71.361122,41.87975899906],[-71.361107,41.87985999906],[-71.360954,41.88102299906],[-71.360954,41.88106199906],[-71.360771,41.88238499906],[-71.360542,41.88237799906],[-71.360489,41.88304099906],[-71.360474,41.88315999906],[-71.360443,41.88368599906],[-71.359314,41.88365199906],[-71.358253,41.88361399906],[-71.357109,41.88357899906],[-71.357071,41.88439899906],[-71.359222,41.88445999906],[-71.361298,41.88451399906],[-71.362373,41.88453699906],[-71.364288,41.88459399906],[-71.364281,41.88516999906],[-71.364294,41.88536499906],[-71.364288,41.88551299906],[-71.364342,41.88550199906],[-71.364632,41.88547099906],[-71.365158,41.88542199906],[-71.365494,41.88539099906],[-71.366371,41.88531099906],[-71.366707,41.88528099906],[-71.367027,41.88522699906]]]}}"}, +{"type": "blockgroup", "typeId": 160001, "areaId": 29092, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.383397,41.87655599906],[-71.38337,41.87652999906],[-71.383245,41.87640999906],[-71.383189,41.87635699906],[-71.383171,41.87633899906],[-71.383087,41.87630499906],[-71.382957,41.87630799906],[-71.38282,41.87632399906],[-71.382225,41.87638899906],[-71.38192,41.87647999906],[-71.381828,41.87651399906],[-71.38169,41.87647599906],[-71.381622,41.87645699906],[-71.381592,41.87644999906],[-71.380356,41.87650699906],[-71.379906,41.87651799906],[-71.379738,41.87655299906],[-71.379623,41.87657499906],[-71.379539,41.87659499906],[-71.379364,41.87708699906],[-71.379016,41.87792699906],[-71.378989,41.87800199906],[-71.378962,41.87805999906],[-71.378937,41.87811699906],[-71.378586,41.87880699906],[-71.378304,41.87938699906],[-71.378235,41.87950999906],[-71.378054,41.87984899906],[-71.377998,41.87995499906],[-71.377579,41.88082499906],[-71.37748,41.88110399906],[-71.377426,41.88138999906],[-71.377426,41.88154599906],[-71.377434,41.88170199906],[-71.377449,41.88185099906],[-71.377472,41.88196199906],[-71.377548,41.88215599906],[-71.377617,41.88234299906],[-71.377747,41.88260699906],[-71.377892,41.88284699906],[-71.37809,41.88313299906],[-71.378166,41.88323599906],[-71.378365,41.88353699906],[-71.378464,41.88370899906],[-71.37854,41.88387299906],[-71.378632,41.88422799906],[-71.378677,41.88445299906],[-71.3787,41.88484199906],[-71.378736,41.88524099906],[-71.378739,41.88527099906],[-71.378769,41.88560499906],[-71.378805,41.88610799906],[-71.37886,41.88689799906],[-71.378937,41.88789699906],[-71.379007,41.88873299906],[-71.379066,41.88943899906],[-71.379089,41.88981999906],[-71.379089,41.88996899906],[-71.379082,41.89006799906],[-71.379082,41.89015599906],[-71.379059,41.89036599906],[-71.379005,41.89065899906],[-71.378952,41.89085399906],[-71.378815,41.89122399906],[-71.3787,41.89144899906],[-71.378593,41.89163599906],[-71.378479,41.89180799906],[-71.378334,41.89200599906],[-71.378113,41.89225799906],[-71.377777,41.89262799906],[-71.377625,41.89278799906],[-71.377495,41.89293699906],[-71.377457,41.89297499906],[-71.37653,41.89397799906],[-71.376499,41.89401099906],[-71.376472,41.89403999906],[-71.376369,41.89415099906],[-71.377599,41.89400299906],[-71.378443,41.89390799906],[-71.381125,41.89358399906],[-71.381341,41.89355999906],[-71.381463,41.89354599906],[-71.381624,41.89276899906],[-71.381638,41.89269999906],[-71.381633,41.89265699906],[-71.381657,41.89249699906],[-71.381805,41.89149999906],[-71.383093,41.88986999906],[-71.382952,41.88957799906],[-71.382605,41.88885699906],[-71.382316,41.88890199906],[-71.382083,41.88835399906],[-71.381867,41.88836499906],[-71.381824,41.88836999906],[-71.381367,41.88851399906],[-71.380219,41.88792999906],[-71.380665,41.88706699906],[-71.380878,41.88652099906],[-71.380821,41.88589099906],[-71.3809,41.88529899906],[-71.380946,41.88407499906],[-71.381008,41.88406699906],[-71.380984,41.88374899906],[-71.380981,41.88370899906],[-71.380979,41.88361399906],[-71.380977,41.88355299906],[-71.380991,41.88332399906],[-71.380994,41.88329999906],[-71.381018,41.88310899906],[-71.38103,41.88287499906],[-71.381074,41.88266199906],[-71.381111,41.88252099906],[-71.381159,41.88239299906],[-71.381234,41.88224599906],[-71.381414,41.88183299906],[-71.381544,41.88153499906],[-71.381644,41.88134699906],[-71.381728,41.88114499906],[-71.381792,41.88091599906],[-71.381837,41.88060599906],[-71.381849,41.88028199906],[-71.381824,41.87997099906],[-71.381807,41.87984799906],[-71.381771,41.87958699906],[-71.381732,41.87939599906],[-71.38167,41.87889699906],[-71.381632,41.87866699906],[-71.381614,41.87849999906],[-71.38162,41.87814499906],[-71.381628,41.87805399906],[-71.381773,41.87765299906],[-71.381809,41.87758699906],[-71.381841,41.87755299906],[-71.3819,41.87751399906],[-71.382063,41.87743599906],[-71.382146,41.87738099906],[-71.38225,41.87734299906],[-71.382353,41.87731099906],[-71.382496,41.87728899906],[-71.382614,41.87725899906],[-71.38314,41.87682899906],[-71.3832,41.87674399906],[-71.383348,41.87661799906],[-71.383397,41.87655599906]]]}}"}, +{"type": "blockgroup", "typeId": 160002, "areaId": 29093, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.379539,41.87659499906],[-71.379349,41.87662899906],[-71.379044,41.87668999906],[-71.378372,41.87679299906],[-71.377266,41.87696799906],[-71.37706,41.87700299906],[-71.376106,41.87716699906],[-71.375214,41.87732699906],[-71.37429,41.87747999906],[-71.373253,41.87766599906],[-71.373024,41.87771999906],[-71.372971,41.87782699906],[-71.372917,41.87803299906],[-71.372871,41.87851699906],[-71.372841,41.87898299906],[-71.370857,41.87945599906],[-71.370003,41.87966499906],[-71.369522,41.87977999906],[-71.368599,41.88000099906],[-71.367805,41.88019599906],[-71.366997,41.88038299906],[-71.366685,41.88045899906],[-71.366318,41.88054999906],[-71.36602,41.88061899906],[-71.365615,41.88065199906],[-71.365426,41.88059999906],[-71.365189,41.88057099906],[-71.36507,41.88053299906],[-71.364998,41.88051199906],[-71.364915,41.88048699906],[-71.364925,41.88057599906],[-71.364933,41.88065299906],[-71.364982,41.88095999906],[-71.365062,41.88127999906],[-71.365183,41.88165899906],[-71.365247,41.88183899906],[-71.365471,41.88240699906],[-71.365586,41.88266199906],[-71.36579,41.88301899906],[-71.366511,41.88437799906],[-71.366759,41.88481899906],[-71.367027,41.88522699906],[-71.367382,41.88520299906],[-71.36747,41.88519699906],[-71.36927,41.88503599906],[-71.369843,41.88496399906],[-71.370071,41.88493699906],[-71.370224,41.88490699906],[-71.370308,41.88488399906],[-71.37043,41.88484199906],[-71.370834,41.88466299906],[-71.371124,41.88453299906],[-71.371353,41.88439899906],[-71.371452,41.88426399906],[-71.371498,41.88420099906],[-71.371529,41.88414399906],[-71.371574,41.88405999906],[-71.371864,41.88322099906],[-71.372062,41.88262699906],[-71.372116,41.88246899906],[-71.372314,41.88193099906],[-71.372334,41.88186399906],[-71.372345,41.88184699906],[-71.372482,41.88137099906],[-71.372581,41.88083299906],[-71.372612,41.88069199906],[-71.37265,41.88049699906],[-71.372688,41.88027999906],[-71.372803,41.87969599906],[-71.373535,41.87959699906],[-71.374397,41.87949799906],[-71.374756,41.87943999906],[-71.375061,41.87939099906],[-71.375763,41.87929199906],[-71.375847,41.87927599906],[-71.376381,41.87921899906],[-71.376785,41.87914699906],[-71.377281,41.87905099906],[-71.37738,41.87914699906],[-71.377518,41.87927199906],[-71.377632,41.87934499906],[-71.377777,41.87938699906],[-71.378081,41.87946899906],[-71.378235,41.87950999906],[-71.378304,41.87938699906],[-71.378586,41.87880699906],[-71.378937,41.87811699906],[-71.378962,41.87805999906],[-71.378989,41.87800199906],[-71.379016,41.87792699906],[-71.379364,41.87708699906],[-71.379539,41.87659499906]]]}}"}, +{"type": "blockgroup", "typeId": 160003, "areaId": 29094, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.378739,41.88527099906],[-71.378736,41.88524099906],[-71.3787,41.88484199906],[-71.378677,41.88445299906],[-71.378632,41.88422799906],[-71.37854,41.88387299906],[-71.378464,41.88370899906],[-71.378365,41.88353699906],[-71.378166,41.88323599906],[-71.37809,41.88313299906],[-71.377892,41.88284699906],[-71.377747,41.88260699906],[-71.377617,41.88234299906],[-71.377548,41.88215599906],[-71.377472,41.88196199906],[-71.377449,41.88185099906],[-71.377434,41.88170199906],[-71.377426,41.88154599906],[-71.377426,41.88138999906],[-71.37748,41.88110399906],[-71.377579,41.88082499906],[-71.377998,41.87995499906],[-71.378054,41.87984899906],[-71.378235,41.87950999906],[-71.378081,41.87946899906],[-71.377777,41.87938699906],[-71.377632,41.87934499906],[-71.377518,41.87927199906],[-71.37738,41.87914699906],[-71.377281,41.87905099906],[-71.376785,41.87914699906],[-71.376381,41.87921899906],[-71.375847,41.87927599906],[-71.375763,41.87929199906],[-71.375061,41.87939099906],[-71.374756,41.87943999906],[-71.374397,41.87949799906],[-71.373535,41.87959699906],[-71.372803,41.87969599906],[-71.372688,41.88027999906],[-71.37265,41.88049699906],[-71.372612,41.88069199906],[-71.372581,41.88083299906],[-71.372482,41.88137099906],[-71.372345,41.88184699906],[-71.372334,41.88186399906],[-71.372314,41.88193099906],[-71.372116,41.88246899906],[-71.372062,41.88262699906],[-71.371864,41.88322099906],[-71.371574,41.88405999906],[-71.371529,41.88414399906],[-71.371498,41.88420099906],[-71.371452,41.88426399906],[-71.371582,41.88431199906],[-71.371699,41.88435399906],[-71.371805,41.88438099906],[-71.371948,41.88439199906],[-71.372192,41.88437699906],[-71.373299,41.88427699906],[-71.373718,41.88423899906],[-71.373802,41.88423499906],[-71.37394,41.88423499906],[-71.374237,41.88425399906],[-71.375061,41.88431199906],[-71.375496,41.88434199906],[-71.375656,41.88435699906],[-71.375755,41.88437699906],[-71.375786,41.88437999906],[-71.376053,41.88446799906],[-71.376328,41.88454399906],[-71.377029,41.88474699906],[-71.377876,41.88497499906],[-71.378059,41.88503299906],[-71.37812,41.88505599906],[-71.378166,41.88506699906],[-71.378532,41.88519299906],[-71.378739,41.88527099906]]]}}"}, +{"type": "blockgroup", "typeId": 161001, "areaId": 29095, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.394944,41.87699199906],[-71.394782,41.87684299906],[-71.394675,41.87673799906],[-71.394367,41.87643899906],[-71.394267,41.87634299906],[-71.393738,41.87583199906],[-71.39312,41.87525199906],[-71.392632,41.87477899906],[-71.392708,41.87471399906],[-71.393166,41.87419099906],[-71.393532,41.87374099906],[-71.393715,41.87351999906],[-71.394363,41.87273399906],[-71.394409,41.87268099906],[-71.39447,41.87260099906],[-71.39451,41.87254899906],[-71.394547,41.87250099906],[-71.394568,41.87247899906],[-71.393898,41.87257799906],[-71.392356,41.87282299906],[-71.391456,41.87296599906],[-71.391022,41.87303499906],[-71.390793,41.87306599906],[-71.390572,41.87308499906],[-71.390503,41.87309299906],[-71.390297,41.87311199906],[-71.389753,41.87313999906],[-71.389687,41.87314199906],[-71.389191,41.87315399906],[-71.388062,41.87313799906],[-71.387476,41.87313799906],[-71.386894,41.87315399906],[-71.386421,41.87319199906],[-71.385887,41.87325699906],[-71.385504,41.87331199906],[-71.385323,41.87333899906],[-71.385496,41.87337599906],[-71.385598,41.87339199906],[-71.385884,41.87344599906],[-71.385996,41.87346099906],[-71.386149,41.87347999906],[-71.386319,41.87349299906],[-71.386464,41.87349399906],[-71.386864,41.87350099906],[-71.387154,41.87350499906],[-71.387436,41.87349699906],[-71.387581,41.87350499906],[-71.387543,41.87385199906],[-71.387512,41.87422199906],[-71.387428,41.87489699906],[-71.387421,41.87494299906],[-71.387383,41.87536599906],[-71.38736,41.87554599906],[-71.387337,41.87571299906],[-71.388084,41.87574799906],[-71.388596,41.87571699906],[-71.388718,41.87669399906],[-71.388657,41.87671999906],[-71.388145,41.87691099906],[-71.387993,41.87695299906],[-71.388153,41.87711699906],[-71.388245,41.87729299906],[-71.388306,41.87744099906],[-71.388434,41.87789399906],[-71.388443,41.87791099906],[-71.388611,41.87842899906],[-71.387933,41.87869699906],[-71.38774,41.87879999906],[-71.387786,41.87885999906],[-71.388054,41.87919599906],[-71.388275,41.87942899906],[-71.388603,41.87968099906],[-71.388855,41.87988699906],[-71.38913,41.88011199906],[-71.389404,41.88030599906],[-71.389466,41.88027099906],[-71.389948,41.87993299906],[-71.391051,41.87926199906],[-71.391576,41.87894199906],[-71.392708,41.87832199906],[-71.394786,41.87707399906],[-71.394944,41.87699199906]]]}}"}, +{"type": "blockgroup", "typeId": 161002, "areaId": 29096, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.392356,41.87282299906],[-71.39235,41.87269999906],[-71.39234,41.87251699906],[-71.392334,41.87241399906],[-71.392273,41.87154399906],[-71.392197,41.87074999906],[-71.39212,41.86970499906],[-71.391258,41.86984599906],[-71.390373,41.86999099906],[-71.389847,41.87007899906],[-71.389465,41.87013599906],[-71.389328,41.87016299906],[-71.389236,41.87017099906],[-71.389137,41.87017399906],[-71.389053,41.87016699906],[-71.388947,41.87013199906],[-71.38855,41.86991499906],[-71.388229,41.86969799906],[-71.388016,41.86988799906],[-71.387977,41.86992799906],[-71.387825,41.87008699906],[-71.387787,41.87010199906],[-71.387722,41.87017799906],[-71.387009,41.87101399906],[-71.387001,41.87106299906],[-71.386688,41.87139499906],[-71.385852,41.87234699906],[-71.385837,41.87235699906],[-71.385822,41.87236499906],[-71.385795,41.87237299906],[-71.385772,41.87237299906],[-71.385755,41.87236999906],[-71.385729,41.87236499906],[-71.385618,41.87233899906],[-71.385605,41.87239099906],[-71.385582,41.87254699906],[-71.385376,41.87255099906],[-71.384888,41.87258499906],[-71.384743,41.87259299906],[-71.384552,41.87260799906],[-71.384619,41.87278499906],[-71.384662,41.87294799906],[-71.384693,41.87328499906],[-71.384699,41.87342999906],[-71.384903,41.87340199906],[-71.385323,41.87333899906],[-71.385504,41.87331199906],[-71.385887,41.87325699906],[-71.386421,41.87319199906],[-71.386894,41.87315399906],[-71.387476,41.87313799906],[-71.388062,41.87313799906],[-71.389191,41.87315399906],[-71.389687,41.87314199906],[-71.389753,41.87313999906],[-71.390297,41.87311199906],[-71.390503,41.87309299906],[-71.390572,41.87308499906],[-71.390793,41.87306599906],[-71.391022,41.87303499906],[-71.391456,41.87296599906],[-71.392356,41.87282299906]]]}}"}, +{"type": "blockgroup", "typeId": 161003, "areaId": 29097, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.402066,41.86735099906],[-71.401952,41.86719899906],[-71.401828,41.86703499906],[-71.40155,41.86734399906],[-71.401459,41.86741999906],[-71.401367,41.86748499906],[-71.401283,41.86753099906],[-71.401199,41.86756499906],[-71.401054,41.86761099906],[-71.400925,41.86764099906],[-71.400795,41.86765699906],[-71.400558,41.86766399906],[-71.400452,41.86769899906],[-71.400032,41.86792799906],[-71.399889,41.86800799906],[-71.399452,41.86825199906],[-71.398697,41.86870599906],[-71.39859,41.86875899906],[-71.397202,41.86894999906],[-71.39608,41.86909099906],[-71.39595,41.86910999906],[-71.395134,41.86922499906],[-71.394501,41.86931599906],[-71.393944,41.86939999906],[-71.393593,41.86945699906],[-71.393501,41.86947299906],[-71.392982,41.86955999906],[-71.392906,41.86957199906],[-71.39212,41.86970499906],[-71.392197,41.87074999906],[-71.392273,41.87154399906],[-71.392334,41.87241399906],[-71.39234,41.87251699906],[-71.39235,41.87269999906],[-71.392356,41.87282299906],[-71.393898,41.87257799906],[-71.394568,41.87247899906],[-71.394875,41.87243299906],[-71.395082,41.87240199906],[-71.396216,41.87223299906],[-71.397118,41.87208599906],[-71.397484,41.87199399906],[-71.397896,41.87187199906],[-71.398216,41.87175799906],[-71.398285,41.87171899906],[-71.398379,41.87167399906],[-71.398483,41.87162399906],[-71.398895,41.87140299906],[-71.39901,41.87132599906],[-71.399132,41.87125799906],[-71.399284,41.87115499906],[-71.39946,41.87101399906],[-71.39954,41.87094499906],[-71.399826,41.87069699906],[-71.39994,41.87058299906],[-71.400047,41.87045699906],[-71.400056,41.87043999906],[-71.400169,41.87031199906],[-71.400375,41.87000999906],[-71.401131,41.86882799906],[-71.401566,41.86814499906],[-71.40188,41.86764599906],[-71.402066,41.86735099906]]]}}"}, +{"type": "blockgroup", "typeId": 161004, "areaId": 29098, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.39871,41.87339099906],[-71.398701,41.87334399906],[-71.398696,41.87331799906],[-71.39868,41.87322899906],[-71.398628,41.87294799906],[-71.398605,41.87286799906],[-71.398582,41.87274899906],[-71.398438,41.87208899906],[-71.398422,41.87200499906],[-71.398379,41.87167399906],[-71.398285,41.87171899906],[-71.398216,41.87175799906],[-71.397896,41.87187199906],[-71.397484,41.87199399906],[-71.397118,41.87208599906],[-71.396216,41.87223299906],[-71.395082,41.87240199906],[-71.394875,41.87243299906],[-71.394568,41.87247899906],[-71.394547,41.87250099906],[-71.39451,41.87254899906],[-71.39447,41.87260099906],[-71.394409,41.87268099906],[-71.394363,41.87273399906],[-71.393715,41.87351999906],[-71.393532,41.87374099906],[-71.393166,41.87419099906],[-71.392708,41.87471399906],[-71.392632,41.87477899906],[-71.39312,41.87525199906],[-71.393738,41.87583199906],[-71.394267,41.87634299906],[-71.394367,41.87643899906],[-71.394675,41.87673799906],[-71.394782,41.87684299906],[-71.394944,41.87699199906],[-71.395315,41.87680699906],[-71.39676,41.87597899906],[-71.396893,41.87588699906],[-71.397271,41.87552399906],[-71.39763,41.87510099906],[-71.397856,41.87474299906],[-71.398025,41.87447599906],[-71.398624,41.87352599906],[-71.39871,41.87339099906]]]}}"}, +{"type": "blockgroup", "typeId": 163001, "areaId": 29099, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.417709,41.87028899906],[-71.417282,41.86968599906],[-71.416847,41.86904899906],[-71.41658,41.86866399906],[-71.416443,41.86846899906],[-71.416222,41.86814899906],[-71.416031,41.86787399906],[-71.415863,41.86763799906],[-71.415611,41.86728699906],[-71.415497,41.86711499906],[-71.415184,41.86666099906],[-71.415172,41.86664099906],[-71.415161,41.86662299906],[-71.414787,41.86608499906],[-71.414383,41.86550899906],[-71.414345,41.86544399906],[-71.414162,41.86518499906],[-71.413933,41.86484499906],[-71.413719,41.86453999906],[-71.413666,41.86444499906],[-71.413467,41.86401399906],[-71.413368,41.86381899906],[-71.413048,41.86317799906],[-71.412621,41.86227399906],[-71.411842,41.86065299906],[-71.411644,41.86022199906],[-71.411575,41.86005799906],[-71.411438,41.85971499906],[-71.411362,41.85954699906],[-71.41124,41.85932499906],[-71.411194,41.85922999906],[-71.411057,41.85891299906],[-71.410996,41.85893099906],[-71.410861,41.85888999906],[-71.410779,41.85874799906],[-71.410793,41.85864199906],[-71.410357,41.85776999906],[-71.410073,41.85746299906],[-71.409656,41.85701299906],[-71.409576,41.85692599906],[-71.409275,41.85660099906],[-71.407912,41.85662599906],[-71.407866,41.85662699906],[-71.40766,41.85663199906],[-71.407507,41.85663499906],[-71.407445,41.85663599906],[-71.406901,41.85664699906],[-71.406674,41.85665099906],[-71.405543,41.85667199906],[-71.405487,41.85674999906],[-71.405174,41.85725399906],[-71.405075,41.85745599906],[-71.404938,41.85775399906],[-71.404755,41.85826099906],[-71.404678,41.85851299906],[-71.40464,41.85865399906],[-71.40461,41.85878399906],[-71.404572,41.85902799906],[-71.404518,41.85950499906],[-71.40451,41.85967999906],[-71.40451,41.86078999906],[-71.404518,41.86177399906],[-71.404503,41.86196899906],[-71.404503,41.86213699906],[-71.404472,41.86233899906],[-71.404449,41.86254899906],[-71.404327,41.86316299906],[-71.404175,41.86365899906],[-71.403999,41.86412799906],[-71.403947,41.86424299906],[-71.403877,41.86439899906],[-71.403725,41.86468499906],[-71.403564,41.86497099906],[-71.403397,41.86524999906],[-71.403015,41.86584099906],[-71.40241,41.86680199906],[-71.402066,41.86735099906],[-71.40188,41.86764599906],[-71.401566,41.86814499906],[-71.401131,41.86882799906],[-71.400375,41.87000999906],[-71.400169,41.87031199906],[-71.400056,41.87043999906],[-71.400047,41.87045699906],[-71.39994,41.87058299906],[-71.399826,41.87069699906],[-71.39954,41.87094499906],[-71.39946,41.87101399906],[-71.399284,41.87115499906],[-71.399132,41.87125799906],[-71.39901,41.87132599906],[-71.398895,41.87140299906],[-71.398483,41.87162399906],[-71.398379,41.87167399906],[-71.398422,41.87200499906],[-71.398438,41.87208899906],[-71.398582,41.87274899906],[-71.398605,41.87286799906],[-71.398628,41.87294799906],[-71.39868,41.87322899906],[-71.398696,41.87331799906],[-71.398701,41.87334399906],[-71.39871,41.87339099906],[-71.398823,41.87321099906],[-71.398998,41.87294899906],[-71.399385,41.87236999906],[-71.399669,41.87194499906],[-71.39989,41.87155299906],[-71.39998,41.87144999906],[-71.400072,41.87134599906],[-71.400337,41.87099299906],[-71.400627,41.87071599906],[-71.400732,41.87062699906],[-71.400784,41.87059099906],[-71.400866,41.87053399906],[-71.401003,41.87047299906],[-71.401146,41.87041899906],[-71.401276,41.87038399906],[-71.401433,41.87035999906],[-71.401557,41.87034899906],[-71.401698,41.87034999906],[-71.401843,41.87036899906],[-71.402012,41.87039999906],[-71.402341,41.87050399906],[-71.402472,41.87056499906],[-71.4025,41.87058099906],[-71.402587,41.87062899906],[-71.402766,41.87074599906],[-71.402893,41.87083699906],[-71.403014,41.87095099906],[-71.403047,41.87098199906],[-71.403117,41.87104799906],[-71.403205,41.87112999906],[-71.403412,41.87134499906],[-71.40356,41.87147999906],[-71.403719,41.87160299906],[-71.403854,41.87168999906],[-71.404394,41.87208999906],[-71.404815,41.87244699906],[-71.405179,41.87281099906],[-71.405433,41.87311299906],[-71.405551,41.87329499906],[-71.405922,41.87322199906],[-71.406303,41.87313099906],[-71.407288,41.87288299906],[-71.408393,41.87258799906],[-71.408615,41.87253599906],[-71.40937,41.87235299906],[-71.410133,41.87215399906],[-71.410461,41.87206999906],[-71.411545,41.87177699906],[-71.411705,41.87173799906],[-71.412704,41.87148999906],[-71.412895,41.87143699906],[-71.413445,41.87129199906],[-71.413788,41.87121199906],[-71.41552,41.87080799906],[-71.416534,41.87057099906],[-71.417709,41.87028899906]]]}}"}, +{"type": "blockgroup", "typeId": 163002, "areaId": 29100, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.418624,41.86484899906],[-71.418495,41.86436599906],[-71.418293,41.86354399906],[-71.418276,41.86347199906],[-71.418235,41.86329699906],[-71.41811,41.86279999906],[-71.417953,41.86215599906],[-71.417872,41.86157299906],[-71.417862,41.86150399906],[-71.417759,41.86109199906],[-71.41763,41.86054499906],[-71.417474,41.85990699906],[-71.417418,41.85966599906],[-71.416544,41.85956599906],[-71.415871,41.85948899906],[-71.413269,41.85913499906],[-71.411386,41.85892699906],[-71.411057,41.85891299906],[-71.411194,41.85922999906],[-71.41124,41.85932499906],[-71.411362,41.85954699906],[-71.411438,41.85971499906],[-71.411575,41.86005799906],[-71.411644,41.86022199906],[-71.411842,41.86065299906],[-71.412621,41.86227399906],[-71.413048,41.86317799906],[-71.413368,41.86381899906],[-71.413467,41.86401399906],[-71.413666,41.86444499906],[-71.413719,41.86453999906],[-71.413933,41.86484499906],[-71.414162,41.86518499906],[-71.414345,41.86544399906],[-71.414383,41.86550899906],[-71.414787,41.86608499906],[-71.4151,41.86596299906],[-71.41584,41.86566499906],[-71.416481,41.86541699906],[-71.417336,41.86506699906],[-71.417915,41.86482999906],[-71.417999,41.86479199906],[-71.418358,41.86482199906],[-71.418624,41.86484899906]]]}}"}, +{"type": "blockgroup", "typeId": 163003, "areaId": 29101, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.419876,41.86977399906],[-71.419594,41.86910999906],[-71.419523,41.86842099906],[-71.419281,41.86744799906],[-71.418975,41.86616399906],[-71.418866,41.86575699906],[-71.418793,41.86547799906],[-71.418624,41.86484899906],[-71.418358,41.86482199906],[-71.417999,41.86479199906],[-71.417915,41.86482999906],[-71.417336,41.86506699906],[-71.416481,41.86541699906],[-71.41584,41.86566499906],[-71.4151,41.86596299906],[-71.414787,41.86608499906],[-71.415161,41.86662299906],[-71.415172,41.86664099906],[-71.415184,41.86666099906],[-71.415497,41.86711499906],[-71.415611,41.86728699906],[-71.415863,41.86763799906],[-71.416031,41.86787399906],[-71.416222,41.86814899906],[-71.416443,41.86846899906],[-71.41658,41.86866399906],[-71.416847,41.86904899906],[-71.417282,41.86968599906],[-71.417709,41.87028899906],[-71.418343,41.87013599906],[-71.418999,41.86998399906],[-71.419876,41.86977399906]]]}}"}, +{"type": "blockgroup", "typeId": 164001, "areaId": 29102, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.399384,41.86406299906],[-71.399361,41.86378099906],[-71.399338,41.86358299906],[-71.399246,41.86297199906],[-71.399193,41.86244599906],[-71.399162,41.86214399906],[-71.399155,41.86212499906],[-71.399124,41.86180099906],[-71.399088,41.86148299906],[-71.399086,41.86144299906],[-71.399055,41.86112999906],[-71.39904,41.86090899906],[-71.398987,41.86034799906],[-71.398971,41.86021299906],[-71.39896,41.86011799906],[-71.398941,41.85995899906],[-71.398894,41.85943299906],[-71.398926,41.85869599906],[-71.398949,41.85853999906],[-71.398964,41.85838299906],[-71.399101,41.85802799906],[-71.399025,41.85808199906],[-71.398933,41.85813499906],[-71.398811,41.85814699906],[-71.398727,41.85816199906],[-71.398643,41.85821899906],[-71.398582,41.85829899906],[-71.398109,41.85880999906],[-71.397652,41.85932199906],[-71.397202,41.85982899906],[-71.396744,41.86032899906],[-71.396286,41.86081699906],[-71.396255,41.86085099906],[-71.395844,41.86131299906],[-71.395554,41.86162899906],[-71.395416,41.86178199906],[-71.394974,41.86227799906],[-71.394928,41.86232799906],[-71.394516,41.86278199906],[-71.394127,41.86321599906],[-71.394073,41.86327399906],[-71.393623,41.86376599906],[-71.393394,41.86401399906],[-71.393166,41.86426199906],[-71.392677,41.86479899906],[-71.393433,41.86518499906],[-71.394211,41.86557799906],[-71.39473,41.86584099906],[-71.394936,41.86589799906],[-71.395088,41.86589799906],[-71.396454,41.86569999906],[-71.396761,41.86565699906],[-71.399223,41.86531399906],[-71.399239,41.86522299906],[-71.399307,41.86467399906],[-71.399323,41.86455199906],[-71.399376,41.86413599906],[-71.399384,41.86406299906]]]}}"}, +{"type": "blockgroup", "typeId": 164002, "areaId": 29103, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.405543,41.85667199906],[-71.405328,41.85667699906],[-71.405073,41.85668199906],[-71.404518,41.85669199906],[-71.403805,41.85668599906],[-71.402504,41.85673199906],[-71.401977,41.85675399906],[-71.401424,41.85675799906],[-71.400613,41.85676699906],[-71.399724,41.85678499906],[-71.399596,41.85678199906],[-71.399567,41.85684999906],[-71.399422,41.85719699906],[-71.399307,41.85748699906],[-71.399101,41.85802799906],[-71.398964,41.85838299906],[-71.398949,41.85853999906],[-71.398926,41.85869599906],[-71.398894,41.85943299906],[-71.398941,41.85995899906],[-71.39896,41.86011799906],[-71.398971,41.86021299906],[-71.398987,41.86034799906],[-71.39904,41.86090899906],[-71.399055,41.86112999906],[-71.399086,41.86144299906],[-71.399088,41.86148299906],[-71.399124,41.86180099906],[-71.399155,41.86212499906],[-71.399162,41.86214399906],[-71.399193,41.86244599906],[-71.399246,41.86297199906],[-71.399338,41.86358299906],[-71.399361,41.86378099906],[-71.399384,41.86406299906],[-71.399376,41.86413599906],[-71.399323,41.86455199906],[-71.399307,41.86467399906],[-71.399239,41.86522299906],[-71.399223,41.86531399906],[-71.399178,41.86578399906],[-71.39917,41.86586399906],[-71.399117,41.86643199906],[-71.399055,41.86697399906],[-71.399048,41.86704599906],[-71.398972,41.86759899906],[-71.398865,41.86804199906],[-71.398697,41.86870599906],[-71.399452,41.86825199906],[-71.399889,41.86800799906],[-71.400032,41.86792799906],[-71.400452,41.86769899906],[-71.400558,41.86766399906],[-71.400795,41.86765699906],[-71.400925,41.86764099906],[-71.401054,41.86761099906],[-71.401199,41.86756499906],[-71.401283,41.86753099906],[-71.401367,41.86748499906],[-71.401459,41.86741999906],[-71.40155,41.86734399906],[-71.401828,41.86703499906],[-71.401952,41.86719899906],[-71.402066,41.86735099906],[-71.40241,41.86680199906],[-71.403015,41.86584099906],[-71.403397,41.86524999906],[-71.403564,41.86497099906],[-71.403725,41.86468499906],[-71.403877,41.86439899906],[-71.403947,41.86424299906],[-71.403999,41.86412799906],[-71.404175,41.86365899906],[-71.404327,41.86316299906],[-71.404449,41.86254899906],[-71.404472,41.86233899906],[-71.404503,41.86213699906],[-71.404503,41.86196899906],[-71.404518,41.86177399906],[-71.40451,41.86078999906],[-71.40451,41.85967999906],[-71.404518,41.85950499906],[-71.404572,41.85902799906],[-71.40461,41.85878399906],[-71.40464,41.85865399906],[-71.404678,41.85851299906],[-71.404755,41.85826099906],[-71.404938,41.85775399906],[-71.405075,41.85745599906],[-71.405174,41.85725399906],[-71.405487,41.85674999906],[-71.405543,41.85667199906]]]}}"}, +{"type": "blockgroup", "typeId": 164003, "areaId": 29104, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.394501,41.86931599906],[-71.394325,41.86863699906],[-71.394119,41.86770599906],[-71.393944,41.86702299906],[-71.393909,41.86697099906],[-71.393821,41.86690899906],[-71.393357,41.86665999906],[-71.393288,41.86661099906],[-71.393745,41.86609599906],[-71.394211,41.86557799906],[-71.393433,41.86518499906],[-71.392677,41.86479899906],[-71.392204,41.86531799906],[-71.391731,41.86583299906],[-71.391228,41.86640199906],[-71.390724,41.86695899906],[-71.390268,41.86750999906],[-71.390213,41.86758799906],[-71.390171,41.86762899906],[-71.389898,41.86789499906],[-71.389603,41.86818299906],[-71.389381,41.86844599906],[-71.389229,41.86859899906],[-71.389208,41.86861999906],[-71.388809,41.86906399906],[-71.388229,41.86969799906],[-71.38855,41.86991499906],[-71.388947,41.87013199906],[-71.389053,41.87016699906],[-71.389137,41.87017399906],[-71.389236,41.87017099906],[-71.389328,41.87016299906],[-71.389465,41.87013599906],[-71.389847,41.87007899906],[-71.390373,41.86999099906],[-71.391258,41.86984599906],[-71.39212,41.86970499906],[-71.392906,41.86957199906],[-71.392982,41.86955999906],[-71.393501,41.86947299906],[-71.393593,41.86945699906],[-71.393944,41.86939999906],[-71.394501,41.86931599906]]]}}"}, +{"type": "blockgroup", "typeId": 164004, "areaId": 29105, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.399223,41.86531399906],[-71.396761,41.86565699906],[-71.396454,41.86569999906],[-71.395088,41.86589799906],[-71.394936,41.86589799906],[-71.39473,41.86584099906],[-71.394211,41.86557799906],[-71.393745,41.86609599906],[-71.393288,41.86661099906],[-71.393357,41.86665999906],[-71.393821,41.86690899906],[-71.393909,41.86697099906],[-71.393944,41.86702299906],[-71.394119,41.86770599906],[-71.394325,41.86863699906],[-71.394501,41.86931599906],[-71.395134,41.86922499906],[-71.39595,41.86910999906],[-71.39608,41.86909099906],[-71.397202,41.86894999906],[-71.39859,41.86875899906],[-71.398697,41.86870599906],[-71.398865,41.86804199906],[-71.398972,41.86759899906],[-71.399048,41.86704599906],[-71.399055,41.86697399906],[-71.399117,41.86643199906],[-71.39917,41.86586399906],[-71.399178,41.86578399906],[-71.399223,41.86531399906]]]}}"}, +{"type": "blockgroup", "typeId": 165001, "areaId": 29106, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.391101,41.85694499906],[-71.390266,41.85696299906],[-71.389452,41.85697799906],[-71.387581,41.85701599906],[-71.387417,41.85701699906],[-71.383719,41.85708599906],[-71.383934,41.85780299906],[-71.383911,41.85785299906],[-71.383888,41.85818899906],[-71.38385,41.85850499906],[-71.383783,41.85894899906],[-71.383774,41.85896699906],[-71.383713,41.85946299906],[-71.383713,41.85986299906],[-71.383736,41.86042799906],[-71.383774,41.86095799906],[-71.383774,41.86142299906],[-71.383781,41.86163699906],[-71.383766,41.86180099906],[-71.383736,41.86200299906],[-71.383682,41.86219799906],[-71.383575,41.86249499906],[-71.38347,41.86284799906],[-71.383461,41.86286499906],[-71.383339,41.86322799906],[-71.383293,41.86342099906],[-71.383286,41.86345299906],[-71.383278,41.86356699906],[-71.383286,41.86368899906],[-71.383301,41.86379999906],[-71.383339,41.86399799906],[-71.383343,41.86401599906],[-71.38342,41.86420099906],[-71.383606,41.86464299906],[-71.383888,41.86525699906],[-71.384392,41.86516999906],[-71.384766,41.86509999906],[-71.384805,41.86508999906],[-71.385117,41.86503199906],[-71.385605,41.86493299906],[-71.386086,41.86486099906],[-71.386322,41.86486399906],[-71.386711,41.86488299906],[-71.387383,41.86490199906],[-71.387398,41.86465499906],[-71.387413,41.86459399906],[-71.387436,41.86451299906],[-71.387543,41.86421199906],[-71.387596,41.86410899906],[-71.387764,41.86378099906],[-71.388039,41.86321599906],[-71.388222,41.86282699906],[-71.388237,41.86280399906],[-71.388466,41.86233499906],[-71.38855,41.86217499906],[-71.388786,41.86171699906],[-71.388817,41.86164499906],[-71.388839,41.86159999906],[-71.388885,41.86150699906],[-71.389076,41.86110699906],[-71.389343,41.86056499906],[-71.389618,41.85998199906],[-71.389664,41.85988999906],[-71.389999,41.85922199906],[-71.390338,41.85853499906],[-71.390343,41.85851699906],[-71.390678,41.85781499906],[-71.390709,41.85776499906],[-71.390999,41.85715899906],[-71.391029,41.85710499906],[-71.391101,41.85694499906]]]}}"}, +{"type": "blockgroup", "typeId": 165002, "areaId": 29107, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.399596,41.85678199906],[-71.399456,41.85678599906],[-71.399248,41.85679299906],[-71.399018,41.85679999906],[-71.395553,41.85685999906],[-71.39368,41.85689499906],[-71.392508,41.85691499906],[-71.392067,41.85692499906],[-71.391101,41.85694499906],[-71.391029,41.85710499906],[-71.390999,41.85715899906],[-71.390709,41.85776499906],[-71.390678,41.85781499906],[-71.390343,41.85851699906],[-71.390338,41.85853499906],[-71.389999,41.85922199906],[-71.389664,41.85988999906],[-71.389618,41.85998199906],[-71.389343,41.86056499906],[-71.39019,41.86052299906],[-71.390381,41.86050799906],[-71.391136,41.86045099906],[-71.391571,41.86041299906],[-71.392456,41.86035199906],[-71.393631,41.86089299906],[-71.394562,41.86136199906],[-71.395416,41.86178199906],[-71.395554,41.86162899906],[-71.395844,41.86131299906],[-71.396255,41.86085099906],[-71.396286,41.86081699906],[-71.396744,41.86032899906],[-71.397202,41.85982899906],[-71.397652,41.85932199906],[-71.398109,41.85880999906],[-71.398582,41.85829899906],[-71.398643,41.85821899906],[-71.398727,41.85816199906],[-71.398811,41.85814699906],[-71.398933,41.85813499906],[-71.399025,41.85808199906],[-71.399101,41.85802799906],[-71.399307,41.85748699906],[-71.399422,41.85719699906],[-71.399567,41.85684999906],[-71.399596,41.85678199906]]]}}"}, +{"type": "blockgroup", "typeId": 165003, "areaId": 29108, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.395416,41.86178199906],[-71.394562,41.86136199906],[-71.393631,41.86089299906],[-71.392456,41.86035199906],[-71.391571,41.86041299906],[-71.391136,41.86045099906],[-71.390381,41.86050799906],[-71.39019,41.86052299906],[-71.389343,41.86056499906],[-71.389076,41.86110699906],[-71.388885,41.86150699906],[-71.388839,41.86159999906],[-71.388817,41.86164499906],[-71.388786,41.86171699906],[-71.38855,41.86217499906],[-71.388466,41.86233499906],[-71.388237,41.86280399906],[-71.388222,41.86282699906],[-71.388039,41.86321599906],[-71.387764,41.86378099906],[-71.387596,41.86410899906],[-71.387543,41.86421199906],[-71.387436,41.86451299906],[-71.387413,41.86459399906],[-71.387398,41.86465499906],[-71.387383,41.86490199906],[-71.387329,41.86550899906],[-71.387291,41.86614199906],[-71.387848,41.86611599906],[-71.389534,41.86606999906],[-71.389824,41.86606599906],[-71.39032,41.86604699906],[-71.390373,41.86604299906],[-71.390541,41.86606599906],[-71.39077,41.86617299906],[-71.391228,41.86640199906],[-71.391731,41.86583299906],[-71.392204,41.86531799906],[-71.392677,41.86479899906],[-71.393166,41.86426199906],[-71.393394,41.86401399906],[-71.393623,41.86376599906],[-71.394073,41.86327399906],[-71.394127,41.86321599906],[-71.394516,41.86278199906],[-71.394928,41.86232799906],[-71.394974,41.86227799906],[-71.395416,41.86178199906]]]}}"}, +{"type": "blockgroup", "typeId": 166001, "areaId": 29109, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.391228,41.86640199906],[-71.39077,41.86617299906],[-71.390541,41.86606599906],[-71.390373,41.86604299906],[-71.39032,41.86604699906],[-71.389824,41.86606599906],[-71.389534,41.86606999906],[-71.387848,41.86611599906],[-71.387291,41.86614199906],[-71.387329,41.86550899906],[-71.387383,41.86490199906],[-71.386711,41.86488299906],[-71.386322,41.86486399906],[-71.386086,41.86486099906],[-71.385605,41.86493299906],[-71.385117,41.86503199906],[-71.384805,41.86508999906],[-71.384766,41.86509999906],[-71.384392,41.86516999906],[-71.383888,41.86525699906],[-71.383606,41.86464299906],[-71.38342,41.86420099906],[-71.383343,41.86401599906],[-71.383339,41.86399799906],[-71.383301,41.86379999906],[-71.383286,41.86368899906],[-71.383278,41.86356699906],[-71.383286,41.86345299906],[-71.383293,41.86342099906],[-71.383339,41.86322799906],[-71.383461,41.86286499906],[-71.38347,41.86284799906],[-71.383575,41.86249499906],[-71.383682,41.86219799906],[-71.383736,41.86200299906],[-71.383766,41.86180099906],[-71.383781,41.86163699906],[-71.383774,41.86142299906],[-71.383774,41.86095799906],[-71.383736,41.86042799906],[-71.383713,41.85986299906],[-71.383713,41.85946299906],[-71.383774,41.85896699906],[-71.383783,41.85894899906],[-71.38385,41.85850499906],[-71.383888,41.85818899906],[-71.383911,41.85785299906],[-71.383934,41.85780299906],[-71.383719,41.85708599906],[-71.381585,41.85712799906],[-71.379111,41.85746799906],[-71.379003,41.85747799906],[-71.376841,41.85747999906],[-71.376699,41.85749999906],[-71.378299,41.86219999906],[-71.378599,41.86369999906],[-71.379304,41.86557999906],[-71.380399,41.86849899906],[-71.381703,41.86985499906],[-71.3829,41.87109899906],[-71.383291,41.87146199906],[-71.384552,41.87260799906],[-71.384743,41.87259299906],[-71.384888,41.87258499906],[-71.385376,41.87255099906],[-71.385582,41.87254699906],[-71.385605,41.87239099906],[-71.385618,41.87233899906],[-71.385729,41.87236499906],[-71.385755,41.87236999906],[-71.385772,41.87237299906],[-71.385795,41.87237299906],[-71.385822,41.87236499906],[-71.385837,41.87235699906],[-71.385852,41.87234699906],[-71.386688,41.87139499906],[-71.387001,41.87106299906],[-71.387009,41.87101399906],[-71.387722,41.87017799906],[-71.387787,41.87010199906],[-71.387825,41.87008699906],[-71.387977,41.86992799906],[-71.388016,41.86988799906],[-71.388229,41.86969799906],[-71.388809,41.86906399906],[-71.389208,41.86861999906],[-71.389229,41.86859899906],[-71.389381,41.86844599906],[-71.389603,41.86818299906],[-71.389898,41.86789499906],[-71.390171,41.86762899906],[-71.390213,41.86758799906],[-71.390268,41.86750999906],[-71.390724,41.86695899906],[-71.391228,41.86640199906]]]}}"}, +{"type": "blockgroup", "typeId": 167001, "areaId": 29110, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.381798,41.87632799906],[-71.381752,41.87629699906],[-71.38163,41.87612899906],[-71.381531,41.87594999906],[-71.381462,41.87578999906],[-71.381378,41.87563299906],[-71.381218,41.87499599906],[-71.381111,41.87448499906],[-71.381088,41.87439299906],[-71.381058,41.87422599906],[-71.381035,41.87414199906],[-71.380959,41.87396999906],[-71.380938,41.87394199906],[-71.380979,41.87381599906],[-71.380974,41.87377899906],[-71.380936,41.87361499906],[-71.380814,41.87307699906],[-71.380341,41.87314599906],[-71.38031,41.87314999906],[-71.379738,41.87316899906],[-71.379662,41.87318799906],[-71.379051,41.87330999906],[-71.378114,41.87348699906],[-71.37809,41.87348899906],[-71.377121,41.87366499906],[-71.376663,41.87375299906],[-71.376236,41.87383299906],[-71.375343,41.87401199906],[-71.374458,41.87417999906],[-71.374275,41.87421399906],[-71.373558,41.87434799906],[-71.372231,41.87459199906],[-71.372169,41.87459899906],[-71.372154,41.87498899906],[-71.372169,41.87512999906],[-71.372208,41.87529799906],[-71.372269,41.87544999906],[-71.372566,41.87606399906],[-71.372658,41.87627799906],[-71.372864,41.87694899906],[-71.372955,41.87726999906],[-71.373062,41.87764699906],[-71.373024,41.87771999906],[-71.373253,41.87766599906],[-71.37429,41.87747999906],[-71.375214,41.87732699906],[-71.376106,41.87716699906],[-71.37706,41.87700299906],[-71.377266,41.87696799906],[-71.378372,41.87679299906],[-71.379044,41.87668999906],[-71.379349,41.87662899906],[-71.379539,41.87659499906],[-71.379623,41.87657499906],[-71.379738,41.87655299906],[-71.379906,41.87651799906],[-71.380356,41.87650699906],[-71.381592,41.87644999906],[-71.381622,41.87645699906],[-71.38169,41.87647599906],[-71.381744,41.87639999906],[-71.381798,41.87632799906]]]}}"}, +{"type": "blockgroup", "typeId": 167002, "areaId": 29111, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.384701,41.87351099906],[-71.384699,41.87342999906],[-71.384693,41.87328499906],[-71.384662,41.87294799906],[-71.384619,41.87278499906],[-71.384552,41.87260799906],[-71.383291,41.87146199906],[-71.3829,41.87109899906],[-71.381703,41.86985499906],[-71.380399,41.86849899906],[-71.379304,41.86557999906],[-71.378599,41.86369999906],[-71.377838,41.86438399906],[-71.375635,41.86533999906],[-71.375679,41.86557799906],[-71.375702,41.86566499906],[-71.375725,41.86572999906],[-71.375755,41.86579499906],[-71.375778,41.86583699906],[-71.375833,41.86589899906],[-71.375862,41.86593199906],[-71.376709,41.86682899906],[-71.376728,41.86684099906],[-71.377235,41.86740099906],[-71.37677,41.86764099906],[-71.376282,41.86790499906],[-71.375862,41.86810699906],[-71.374359,41.86886999906],[-71.373878,41.86910999906],[-71.374397,41.86967099906],[-71.374496,41.86985399906],[-71.375031,41.87101699906],[-71.375305,41.87170799906],[-71.374428,41.87192499906],[-71.373558,41.87213499906],[-71.372665,41.87234899906],[-71.372406,41.87241399906],[-71.372246,41.87247499906],[-71.372222,41.87248599906],[-71.371811,41.87258899906],[-71.371887,41.87290999906],[-71.371928,41.87306599906],[-71.372124,41.87380599906],[-71.372154,41.87417999906],[-71.372169,41.87459899906],[-71.372231,41.87459199906],[-71.373558,41.87434799906],[-71.374275,41.87421399906],[-71.374458,41.87417999906],[-71.375343,41.87401199906],[-71.376236,41.87383299906],[-71.376663,41.87375299906],[-71.377121,41.87366499906],[-71.37809,41.87348899906],[-71.378114,41.87348699906],[-71.379051,41.87330999906],[-71.379662,41.87318799906],[-71.379738,41.87316899906],[-71.38031,41.87314999906],[-71.380341,41.87314599906],[-71.380814,41.87307699906],[-71.380936,41.87361499906],[-71.380974,41.87377899906],[-71.380979,41.87381599906],[-71.380938,41.87394199906],[-71.380959,41.87396999906],[-71.381035,41.87414199906],[-71.381058,41.87422599906],[-71.381088,41.87439299906],[-71.381111,41.87448499906],[-71.381218,41.87499599906],[-71.381378,41.87563299906],[-71.381462,41.87578999906],[-71.381531,41.87594999906],[-71.38163,41.87612899906],[-71.381752,41.87629699906],[-71.381798,41.87632799906],[-71.381744,41.87639999906],[-71.38169,41.87647599906],[-71.381828,41.87651399906],[-71.38192,41.87647999906],[-71.382225,41.87638899906],[-71.38282,41.87632399906],[-71.382957,41.87630799906],[-71.383087,41.87630499906],[-71.383171,41.87633899906],[-71.383189,41.87635699906],[-71.383245,41.87640999906],[-71.38337,41.87652999906],[-71.383397,41.87655599906],[-71.383444,41.87649599906],[-71.383474,41.87645799906],[-71.383528,41.87640899906],[-71.383543,41.87639399906],[-71.383574,41.87637699906],[-71.383682,41.87626899906],[-71.383725,41.87616999906],[-71.383927,41.87580699906],[-71.383954,41.87573399906],[-71.384148,41.87536799906],[-71.384281,41.87498799906],[-71.384431,41.87462899906],[-71.384512,41.87438799906],[-71.384622,41.87408999906],[-71.38469,41.87364899906],[-71.384701,41.87351099906]]]}}"}, +{"type": "blockgroup", "typeId": 168001, "areaId": 29112, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.364915,41.88048699906],[-71.364872,41.87997599906],[-71.364791,41.87850899906],[-71.364741,41.87763699906],[-71.364725,41.87729599906],[-71.364702,41.87696599906],[-71.364655,41.87628099906],[-71.363052,41.87626999906],[-71.362152,41.87626999906],[-71.361404,41.87628599906],[-71.360954,41.87627799906],[-71.360497,41.87627399906],[-71.359665,41.87625899906],[-71.358841,41.87624699906],[-71.358817,41.87624399906],[-71.358315,41.87623199906],[-71.358177,41.87622799906],[-71.357933,41.87621299906],[-71.35704,41.87616299906],[-71.35627,41.87612199906],[-71.356133,41.87611799906],[-71.355232,41.87607999906],[-71.354294,41.87604099906],[-71.354263,41.87839899906],[-71.354469,41.87844099906],[-71.355156,41.87857099906],[-71.355591,41.87865099906],[-71.356018,41.87873799906],[-71.356873,41.87890999906],[-71.357353,41.87900499906],[-71.357628,41.87906299906],[-71.358742,41.87927599906],[-71.360023,41.87953899906],[-71.360832,41.87970399906],[-71.361122,41.87975899906],[-71.362236,41.87997099906],[-71.362649,41.88003499906],[-71.362747,41.88005099906],[-71.36353,41.88018599906],[-71.363976,41.88026399906],[-71.364377,41.88035399906],[-71.364777,41.88044399906],[-71.364874,41.88047399906],[-71.364915,41.88048699906]]]}}"}, +{"type": "blockgroup", "typeId": 168002, "areaId": 29113, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.358315,41.87551499906],[-71.358276,41.87507199906],[-71.358276,41.87453799906],[-71.358284,41.87441599906],[-71.358284,41.87421799906],[-71.358253,41.87376799906],[-71.358231,41.87330999906],[-71.358223,41.87309299906],[-71.3582,41.87241399906],[-71.358192,41.87206599906],[-71.358192,41.87183199906],[-71.3582,41.87181499906],[-71.358139,41.87170799906],[-71.358139,41.87114299906],[-71.358116,41.87032699906],[-71.357262,41.87029599906],[-71.357155,41.87029299906],[-71.356232,41.87026599906],[-71.356163,41.87026199906],[-71.355301,41.87023899906],[-71.35437,41.87021299906],[-71.35437,41.87042999906],[-71.354355,41.87113199906],[-71.354347,41.87178799906],[-71.35434,41.87202499906],[-71.354324,41.87327599906],[-71.354309,41.87443499906],[-71.354301,41.87536999906],[-71.354294,41.87604099906],[-71.355232,41.87607999906],[-71.356133,41.87611799906],[-71.35627,41.87612199906],[-71.35704,41.87616299906],[-71.357933,41.87621299906],[-71.358177,41.87622799906],[-71.358315,41.87623199906],[-71.358315,41.87551499906]]]}}"}, +{"type": "blockgroup", "typeId": 168003, "areaId": 29114, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.364655,41.87628099906],[-71.364637,41.87604299906],[-71.364618,41.87540699906],[-71.364587,41.87495599906],[-71.364558,41.87443899906],[-71.364543,41.87416599906],[-71.36452,41.87384299906],[-71.364514,41.87343899906],[-71.36452,41.87329499906],[-71.364532,41.87302799906],[-71.364415,41.87097799906],[-71.364382,41.87042199906],[-71.364381,41.87040699906],[-71.364182,41.87040699906],[-71.362701,41.87039899906],[-71.361702,41.87039199906],[-71.360672,41.87037999906],[-71.360252,41.87037999906],[-71.359489,41.87036499906],[-71.359024,41.87035399906],[-71.358795,41.87034999906],[-71.358612,41.87034199906],[-71.358177,41.87033099906],[-71.358116,41.87032699906],[-71.358139,41.87114299906],[-71.358139,41.87170799906],[-71.3582,41.87181499906],[-71.358192,41.87183199906],[-71.358192,41.87206599906],[-71.3582,41.87241399906],[-71.358223,41.87309299906],[-71.358231,41.87330999906],[-71.358253,41.87376799906],[-71.358284,41.87421799906],[-71.358284,41.87441599906],[-71.358276,41.87453799906],[-71.358276,41.87507199906],[-71.358315,41.87551499906],[-71.358315,41.87623199906],[-71.358817,41.87624399906],[-71.358841,41.87624699906],[-71.359665,41.87625899906],[-71.360497,41.87627399906],[-71.360954,41.87627799906],[-71.361404,41.87628599906],[-71.362152,41.87626999906],[-71.363052,41.87626999906],[-71.364655,41.87628099906]]]}}"}, +{"type": "blockgroup", "typeId": 169001, "areaId": 29115, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.354347,41.87178799906],[-71.353416,41.87174599906],[-71.352478,41.87171199906],[-71.351555,41.87168099906],[-71.350647,41.87162799906],[-71.349739,41.87159699906],[-71.349701,41.87323799906],[-71.348923,41.87323399906],[-71.348778,41.87323799906],[-71.34787,41.87323799906],[-71.347245,41.87325299906],[-71.347221,41.87325699906],[-71.347198,41.87326799906],[-71.346924,41.87413399906],[-71.346748,41.87486299906],[-71.346756,41.87531299906],[-71.347832,41.87532399906],[-71.348755,41.87533599906],[-71.349663,41.87534299906],[-71.350578,41.87533999906],[-71.351501,41.87533599906],[-71.352425,41.87534299906],[-71.353256,41.87534299906],[-71.353363,41.87534699906],[-71.353455,41.87535099906],[-71.354301,41.87536999906],[-71.354309,41.87443499906],[-71.354324,41.87327599906],[-71.35434,41.87202499906],[-71.354347,41.87178799906]]]}}"}, +{"type": "blockgroup", "typeId": 169002, "areaId": 29116, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.354413,41.86644799906],[-71.354287,41.86644799906],[-71.347741,41.86626599906],[-71.347581,41.86626199906],[-71.346705,41.86618599906],[-71.34538,41.86607299906],[-71.345366,41.86607099906],[-71.340909,41.86569499906],[-71.340586,41.86585999906],[-71.340535,41.86582899906],[-71.340458,41.86571099906],[-71.340439,41.86558499906],[-71.340439,41.86546999906],[-71.340414,41.86536299906],[-71.340354,41.86524399906],[-71.3403,41.86512099906],[-71.34026,41.86501299906],[-71.340252,41.86499199906],[-71.340148,41.86474299906],[-71.340045,41.86451199906],[-71.340004,41.86443899906],[-71.33991,41.86426699906],[-71.339856,41.86416999906],[-71.339757,41.86408999906],[-71.339639,41.86401199906],[-71.339508,41.86393999906],[-71.339331,41.86386999906],[-71.339221,41.86382199906],[-71.339459,41.86348999906],[-71.340013,41.86267599906],[-71.340531,41.86193899906],[-71.341385,41.86079899906],[-71.341443,41.86070999906],[-71.339217,41.86073599906],[-71.33883,41.86077699906],[-71.337776,41.86091699906],[-71.33514,41.86124699906],[-71.334653,41.86131399906],[-71.334302,41.86205399906],[-71.334255,41.86215099906],[-71.33404,41.86260399906],[-71.33408,41.86271599906],[-71.334097,41.86279999906],[-71.334295,41.86331799906],[-71.335315,41.86617599906],[-71.33599,41.86806999906],[-71.336741,41.87017299906],[-71.3374,41.87201899906],[-71.337447,41.87215199906],[-71.337818,41.87317099906],[-71.338468,41.87501399906],[-71.33886,41.87611199906],[-71.339595,41.87596199906],[-71.339566,41.87583499906],[-71.339464,41.87574299906],[-71.339461,41.87561199906],[-71.339448,41.87549699906],[-71.339545,41.87540199906],[-71.339847,41.87534099906],[-71.340015,41.87532699906],[-71.340129,41.87523399906],[-71.340457,41.87515999906],[-71.340603,41.87514899906],[-71.340742,41.87507299906],[-71.340781,41.87494899906],[-71.340801,41.87471799906],[-71.340786,41.87460999906],[-71.340804,41.87449399906],[-71.340783,41.87437999906],[-71.340798,41.87426899906],[-71.340844,41.87414199906],[-71.340861,41.87411299906],[-71.341003,41.87416399906],[-71.34111,41.87420299906],[-71.341202,41.87423299906],[-71.341637,41.87448899906],[-71.341904,41.87468699906],[-71.342079,41.87484399906],[-71.342262,41.87503399906],[-71.342407,41.87521399906],[-71.342537,41.87541599906],[-71.342624,41.87553999906],[-71.342728,41.87568999906],[-71.342903,41.87593499906],[-71.343063,41.87607599906],[-71.343277,41.87622099906],[-71.343391,41.87628599906],[-71.34345,41.87631499906],[-71.343468,41.87632799906],[-71.343727,41.87638899906],[-71.343811,41.87641199906],[-71.344025,41.87646899906],[-71.344406,41.87653699906],[-71.344609,41.87657499906],[-71.344879,41.87662499906],[-71.345299,41.87670899906],[-71.345444,41.87673999906],[-71.346085,41.87686899906],[-71.346695,41.87698799906],[-71.346687,41.87686899906],[-71.346703,41.87666699906],[-71.346741,41.87585799906],[-71.346756,41.87531299906],[-71.346748,41.87486299906],[-71.346924,41.87413399906],[-71.347198,41.87326799906],[-71.347221,41.87325699906],[-71.347245,41.87325299906],[-71.34787,41.87323799906],[-71.348778,41.87323799906],[-71.348923,41.87323399906],[-71.349701,41.87323799906],[-71.349739,41.87159699906],[-71.350647,41.87162799906],[-71.351555,41.87168099906],[-71.352478,41.87171199906],[-71.353416,41.87174599906],[-71.354347,41.87178799906],[-71.354355,41.87113199906],[-71.35437,41.87042999906],[-71.35437,41.87021299906],[-71.354378,41.86975499906],[-71.354378,41.86944199906],[-71.354385,41.86877099906],[-71.354393,41.86844999906],[-71.354393,41.86796999906],[-71.354411,41.86658699906],[-71.354412,41.86650799906],[-71.354413,41.86644799906]]]}}"}, +{"type": "blockgroup", "typeId": 169003, "areaId": 29117, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.354301,41.87536999906],[-71.353455,41.87535099906],[-71.353363,41.87534699906],[-71.353256,41.87534299906],[-71.352425,41.87534299906],[-71.351501,41.87533599906],[-71.350578,41.87533999906],[-71.349663,41.87534299906],[-71.348755,41.87533599906],[-71.347832,41.87532399906],[-71.346756,41.87531299906],[-71.346741,41.87585799906],[-71.346703,41.87666699906],[-71.346687,41.87686899906],[-71.346695,41.87698799906],[-71.347183,41.87708299906],[-71.347817,41.87720299906],[-71.347908,41.87721999906],[-71.348689,41.87737799906],[-71.349609,41.87756299906],[-71.349854,41.87760899906],[-71.35051,41.87774199906],[-71.351112,41.87786499906],[-71.351423,41.87792399906],[-71.352112,41.87805599906],[-71.353287,41.87828099906],[-71.354263,41.87847899906],[-71.354263,41.87839899906],[-71.354294,41.87604099906],[-71.354301,41.87536999906]]]}}"}, +{"type": "blockgroup", "typeId": 170001, "areaId": 29118, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.364074,41.86423099906],[-71.364063,41.86393699906],[-71.363934,41.86173699906],[-71.363884,41.86075099906],[-71.363836,41.86010599906],[-71.363802,41.85929799906],[-71.36375,41.85862199906],[-71.363744,41.85853999906],[-71.362491,41.85866599906],[-71.359991,41.85891599906],[-71.359184,41.85899599906],[-71.358688,41.85904599906],[-71.358681,41.85908099906],[-71.358698,41.85932699906],[-71.358711,41.85951199906],[-71.358749,41.86014899906],[-71.358795,41.86081699906],[-71.358574,41.86082099906],[-71.358597,41.86160299906],[-71.358658,41.86283499906],[-71.358704,41.86349899906],[-71.358742,41.86422299906],[-71.358765,41.86467699906],[-71.358963,41.86466999906],[-71.359642,41.86465099906],[-71.360474,41.86464299906],[-71.361275,41.86464699906],[-71.362136,41.86463999906],[-71.362167,41.86463999906],[-71.36264,41.86463499906],[-71.363944,41.86465999906],[-71.364067,41.86466199906],[-71.364072,41.86435799906],[-71.364074,41.86423099906]]]}}"}, +{"type": "blockgroup", "typeId": 170002, "areaId": 29119, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.364381,41.87040699906],[-71.364363,41.87002499906],[-71.364327,41.86943499906],[-71.364287,41.86875799906],[-71.364277,41.86869799906],[-71.364215,41.86743699906],[-71.364155,41.86639599906],[-71.364103,41.86550299906],[-71.364094,41.86535599906],[-71.364056,41.86487499906],[-71.364067,41.86466199906],[-71.363944,41.86465999906],[-71.36264,41.86463499906],[-71.362167,41.86463999906],[-71.362136,41.86463999906],[-71.361275,41.86464699906],[-71.360474,41.86464299906],[-71.359642,41.86465099906],[-71.358963,41.86466999906],[-71.358955,41.86529199906],[-71.358948,41.86540999906],[-71.358948,41.86624899906],[-71.358945,41.86641699906],[-71.358932,41.86705399906],[-71.35894,41.86801499906],[-71.359001,41.86906099906],[-71.359024,41.87035399906],[-71.359489,41.87036499906],[-71.360252,41.87037999906],[-71.360672,41.87037999906],[-71.361702,41.87039199906],[-71.362701,41.87039899906],[-71.364182,41.87040699906],[-71.364381,41.87040699906]]]}}"}, +{"type": "blockgroup", "typeId": 170003, "areaId": 29120, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.359024,41.87035399906],[-71.359001,41.86906099906],[-71.35894,41.86801499906],[-71.358932,41.86705399906],[-71.358945,41.86641699906],[-71.358948,41.86624899906],[-71.358948,41.86540999906],[-71.358955,41.86529199906],[-71.358963,41.86466999906],[-71.358765,41.86467699906],[-71.358742,41.86422299906],[-71.357353,41.86422299906],[-71.357117,41.86418499906],[-71.356247,41.86418899906],[-71.355377,41.86418499906],[-71.354446,41.86418499906],[-71.354439,41.86458999906],[-71.354431,41.86525299906],[-71.35443,41.86530099906],[-71.354416,41.86621499906],[-71.354413,41.86644799906],[-71.354412,41.86650799906],[-71.354411,41.86658699906],[-71.354393,41.86796999906],[-71.354393,41.86844999906],[-71.354385,41.86877099906],[-71.354378,41.86944199906],[-71.354378,41.86975499906],[-71.35437,41.87021299906],[-71.355301,41.87023899906],[-71.356163,41.87026199906],[-71.356232,41.87026599906],[-71.357155,41.87029299906],[-71.357262,41.87029599906],[-71.358116,41.87032699906],[-71.358177,41.87033099906],[-71.358612,41.87034199906],[-71.358795,41.87034999906],[-71.359024,41.87035399906]]]}}"}, +{"type": "blockgroup", "typeId": 170004, "areaId": 29121, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.358795,41.86081699906],[-71.358749,41.86014899906],[-71.358711,41.85951199906],[-71.358698,41.85932699906],[-71.358681,41.85908099906],[-71.358688,41.85904599906],[-71.355367,41.85937799906],[-71.354507,41.85946699906],[-71.354507,41.85957299906],[-71.354494,41.86052699906],[-71.354492,41.86074099906],[-71.354492,41.86086999906],[-71.354462,41.86267899906],[-71.354462,41.86278199906],[-71.354446,41.86418499906],[-71.355377,41.86418499906],[-71.356247,41.86418899906],[-71.357117,41.86418499906],[-71.357353,41.86422299906],[-71.358742,41.86422299906],[-71.358704,41.86349899906],[-71.358658,41.86283499906],[-71.358597,41.86160299906],[-71.358574,41.86082099906],[-71.358795,41.86081699906]]]}}"}, +{"type": "blockgroup", "typeId": 170005, "areaId": 29122, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.354507,41.85946699906],[-71.35444,41.85947199906],[-71.349643,41.85997899906],[-71.349493,41.85999199906],[-71.343483,41.86063099906],[-71.342969,41.86068399906],[-71.342766,41.86069099906],[-71.341443,41.86070999906],[-71.341385,41.86079899906],[-71.340531,41.86193899906],[-71.340013,41.86267599906],[-71.339459,41.86348999906],[-71.339221,41.86382199906],[-71.339331,41.86386999906],[-71.339508,41.86393999906],[-71.339639,41.86401199906],[-71.339757,41.86408999906],[-71.339856,41.86416999906],[-71.33991,41.86426699906],[-71.340004,41.86443899906],[-71.340045,41.86451199906],[-71.340148,41.86474299906],[-71.340252,41.86499199906],[-71.34026,41.86501299906],[-71.3403,41.86512099906],[-71.340354,41.86524399906],[-71.340414,41.86536299906],[-71.340439,41.86546999906],[-71.340439,41.86558499906],[-71.340458,41.86571099906],[-71.340535,41.86582899906],[-71.340586,41.86585999906],[-71.340909,41.86569499906],[-71.345366,41.86607099906],[-71.34538,41.86607299906],[-71.346705,41.86618599906],[-71.347581,41.86626199906],[-71.347741,41.86626599906],[-71.354287,41.86644799906],[-71.354413,41.86644799906],[-71.354416,41.86621499906],[-71.35443,41.86530099906],[-71.354431,41.86525299906],[-71.354439,41.86458999906],[-71.354446,41.86418499906],[-71.354462,41.86278199906],[-71.354462,41.86267899906],[-71.354492,41.86086999906],[-71.354492,41.86074099906],[-71.354494,41.86052699906],[-71.354507,41.85957299906],[-71.354507,41.85946699906]]]}}"}, +{"type": "blockgroup", "typeId": 171001, "areaId": 29123, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.378599,41.86369999906],[-71.378299,41.86219999906],[-71.376699,41.85749999906],[-71.375021,41.85744899906],[-71.373837,41.85752499906],[-71.373525,41.85754499906],[-71.372935,41.85760499906],[-71.371105,41.85779399906],[-71.370369,41.85786799906],[-71.369853,41.85792099906],[-71.365795,41.85834099906],[-71.366142,41.85866899906],[-71.366852,41.85932499906],[-71.367767,41.86018799906],[-71.368069,41.86046099906],[-71.368134,41.86051899906],[-71.36834,41.86071399906],[-71.368576,41.86093099906],[-71.36908,41.86138499906],[-71.369598,41.86186999906],[-71.370003,41.86227799906],[-71.370277,41.86253699906],[-71.370534,41.86278799906],[-71.370712,41.86296099906],[-71.371338,41.86353299906],[-71.371369,41.86356299906],[-71.371479,41.86366999906],[-71.371696,41.86387999906],[-71.371849,41.86403299906],[-71.372078,41.86423899906],[-71.372215,41.86436799906],[-71.372391,41.86453199906],[-71.372581,41.86471899906],[-71.372765,41.86489499906],[-71.373024,41.86514999906],[-71.373337,41.86544399906],[-71.373863,41.86594399906],[-71.373993,41.86605799906],[-71.374168,41.86621899906],[-71.374374,41.86642499906],[-71.37442,41.86647799906],[-71.374603,41.86667599906],[-71.374878,41.86698899906],[-71.375114,41.86726799906],[-71.375366,41.86754599906],[-71.375664,41.86787799906],[-71.375862,41.86810699906],[-71.376282,41.86790499906],[-71.37677,41.86764099906],[-71.377235,41.86740099906],[-71.376728,41.86684099906],[-71.376709,41.86682899906],[-71.375862,41.86593199906],[-71.375833,41.86589899906],[-71.375778,41.86583699906],[-71.375755,41.86579499906],[-71.375725,41.86572999906],[-71.375702,41.86566499906],[-71.375679,41.86557799906],[-71.375635,41.86533999906],[-71.377838,41.86438399906],[-71.378599,41.86369999906]]]}}"}, +{"type": "blockgroup", "typeId": 171002, "areaId": 29124, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.373062,41.87764699906],[-71.372955,41.87726999906],[-71.372864,41.87694899906],[-71.372658,41.87627799906],[-71.372566,41.87606399906],[-71.372269,41.87544999906],[-71.372208,41.87529799906],[-71.372169,41.87512999906],[-71.372154,41.87498899906],[-71.372169,41.87459899906],[-71.372154,41.87417999906],[-71.372124,41.87380599906],[-71.371928,41.87306599906],[-71.371887,41.87290999906],[-71.371811,41.87258899906],[-71.371803,41.87253999906],[-71.37178,41.87247799906],[-71.371727,41.87233699906],[-71.371658,41.87222299906],[-71.371498,41.87201699906],[-71.371399,41.87192899906],[-71.371284,41.87184899906],[-71.371155,41.87177699906],[-71.371047,41.87171199906],[-71.370995,41.87168099906],[-71.370672,41.87152199906],[-71.370605,41.87148999906],[-71.370201,41.87131099906],[-71.369995,41.87121999906],[-71.369698,41.87108199906],[-71.369408,41.87097199906],[-71.369209,41.87089499906],[-71.368744,41.87073499906],[-71.368622,41.87068899906],[-71.36837,41.87061699906],[-71.368217,41.87058999906],[-71.368004,41.87056699906],[-71.367149,41.87050599906],[-71.366928,41.87049099906],[-71.366188,41.87043799906],[-71.365954,41.87042999906],[-71.365929,41.87042599906],[-71.365318,41.87041899906],[-71.364522,41.87040799906],[-71.364449,41.87040699906],[-71.364381,41.87040699906],[-71.364382,41.87042199906],[-71.364415,41.87097799906],[-71.364532,41.87302799906],[-71.36452,41.87329499906],[-71.364514,41.87343899906],[-71.36452,41.87384299906],[-71.364543,41.87416599906],[-71.364558,41.87443899906],[-71.364587,41.87495599906],[-71.364618,41.87540699906],[-71.364637,41.87604299906],[-71.364655,41.87628099906],[-71.364702,41.87696599906],[-71.364725,41.87729599906],[-71.364741,41.87763699906],[-71.364791,41.87850899906],[-71.364872,41.87997599906],[-71.364915,41.88048699906],[-71.364998,41.88051199906],[-71.36507,41.88053299906],[-71.365189,41.88057099906],[-71.365426,41.88059999906],[-71.365615,41.88065199906],[-71.36602,41.88061899906],[-71.366318,41.88054999906],[-71.366685,41.88045899906],[-71.366997,41.88038299906],[-71.367805,41.88019599906],[-71.368599,41.88000099906],[-71.369522,41.87977999906],[-71.370003,41.87966499906],[-71.370857,41.87945599906],[-71.372841,41.87898299906],[-71.372871,41.87851699906],[-71.372917,41.87803299906],[-71.372971,41.87782699906],[-71.373024,41.87771999906],[-71.373062,41.87764699906]]]}}"}, +{"type": "blockgroup", "typeId": 171003, "areaId": 29125, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.373177,41.87018599906],[-71.373131,41.86948799906],[-71.373077,41.86877099906],[-71.373055,41.86821699906],[-71.373062,41.86786299906],[-71.373062,41.86764899906],[-71.373093,41.86715299906],[-71.373131,41.86645899906],[-71.373131,41.86643599906],[-71.37262,41.86589799906],[-71.372261,41.86551299906],[-71.372208,41.86500899906],[-71.372215,41.86496399906],[-71.372238,41.86491799906],[-71.372581,41.86471899906],[-71.372391,41.86453199906],[-71.372215,41.86436799906],[-71.372078,41.86423899906],[-71.371849,41.86403299906],[-71.371696,41.86387999906],[-71.371479,41.86366999906],[-71.371369,41.86356299906],[-71.371338,41.86353299906],[-71.370712,41.86296099906],[-71.370534,41.86278799906],[-71.370277,41.86253699906],[-71.370003,41.86227799906],[-71.369598,41.86186999906],[-71.36908,41.86138499906],[-71.368576,41.86093099906],[-71.36834,41.86071399906],[-71.368134,41.86051899906],[-71.368069,41.86046099906],[-71.367767,41.86018799906],[-71.366852,41.85932499906],[-71.366142,41.85866899906],[-71.365795,41.85834099906],[-71.364732,41.85844199906],[-71.36449,41.85846499906],[-71.363744,41.85853999906],[-71.36375,41.85862199906],[-71.363802,41.85929799906],[-71.363836,41.86010599906],[-71.363884,41.86075099906],[-71.363934,41.86173699906],[-71.364063,41.86393699906],[-71.364074,41.86423099906],[-71.364072,41.86435799906],[-71.364067,41.86466199906],[-71.364056,41.86487499906],[-71.364094,41.86535599906],[-71.364103,41.86550299906],[-71.364155,41.86639599906],[-71.364215,41.86743699906],[-71.364277,41.86869799906],[-71.364287,41.86875799906],[-71.364327,41.86943499906],[-71.364363,41.87002499906],[-71.364381,41.87040699906],[-71.364449,41.87040699906],[-71.364522,41.87040799906],[-71.365318,41.87041899906],[-71.365929,41.87042599906],[-71.365954,41.87042999906],[-71.366188,41.87043799906],[-71.366928,41.87049099906],[-71.367149,41.87050599906],[-71.368004,41.87056699906],[-71.368217,41.87058999906],[-71.36837,41.87061699906],[-71.368622,41.87068899906],[-71.368744,41.87073499906],[-71.369209,41.87089499906],[-71.369408,41.87097199906],[-71.369698,41.87108199906],[-71.369995,41.87121999906],[-71.370201,41.87131099906],[-71.370605,41.87148999906],[-71.370672,41.87152199906],[-71.370995,41.87168099906],[-71.371047,41.87171199906],[-71.371155,41.87177699906],[-71.371284,41.87184899906],[-71.371399,41.87192899906],[-71.371498,41.87201699906],[-71.371658,41.87222299906],[-71.371727,41.87233699906],[-71.37178,41.87247799906],[-71.372238,41.87238699906],[-71.372475,41.87192499906],[-71.37256,41.87174699906],[-71.372887,41.87107099906],[-71.372978,41.87086099906],[-71.373116,41.87052899906],[-71.373177,41.87029599906],[-71.373177,41.87018599906]]]}}"}, +{"type": "blockgroup", "typeId": 171004, "areaId": 29126, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.375862,41.86810699906],[-71.375664,41.86787799906],[-71.375366,41.86754599906],[-71.375114,41.86726799906],[-71.374878,41.86698899906],[-71.374603,41.86667599906],[-71.37442,41.86647799906],[-71.374374,41.86642499906],[-71.374168,41.86621899906],[-71.373993,41.86605799906],[-71.373863,41.86594399906],[-71.373337,41.86544399906],[-71.373024,41.86514999906],[-71.372765,41.86489499906],[-71.372581,41.86471899906],[-71.372238,41.86491799906],[-71.372215,41.86496399906],[-71.372208,41.86500899906],[-71.372261,41.86551299906],[-71.37262,41.86589799906],[-71.373131,41.86643599906],[-71.373131,41.86645899906],[-71.373093,41.86715299906],[-71.373062,41.86764899906],[-71.373062,41.86786299906],[-71.373055,41.86821699906],[-71.373077,41.86877099906],[-71.373131,41.86948799906],[-71.373177,41.87018599906],[-71.373177,41.87029599906],[-71.373116,41.87052899906],[-71.372978,41.87086099906],[-71.372887,41.87107099906],[-71.37256,41.87174699906],[-71.372475,41.87192499906],[-71.372238,41.87238699906],[-71.37178,41.87247799906],[-71.371803,41.87253999906],[-71.371811,41.87258899906],[-71.372222,41.87248599906],[-71.372246,41.87247499906],[-71.372406,41.87241399906],[-71.372665,41.87234899906],[-71.373558,41.87213499906],[-71.374428,41.87192499906],[-71.375305,41.87170799906],[-71.375031,41.87101699906],[-71.374496,41.86985399906],[-71.374397,41.86967099906],[-71.373878,41.86910999906],[-71.374359,41.86886999906],[-71.375862,41.86810699906]]]}}"}, +{"type": "blockgroup", "typeId": 173001, "areaId": 29127, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.526527,42.01298899906],[-71.52607,42.01247399906],[-71.525566,42.01192899906],[-71.525208,42.01153199906],[-71.525063,42.01135599906],[-71.524391,42.01060899906],[-71.523781,42.00994099906],[-71.523682,42.00983799906],[-71.522736,42.01030299906],[-71.522446,42.01044499906],[-71.521706,42.01081799906],[-71.520584,42.01138699906],[-71.519089,42.01213799906],[-71.518463,42.01244699906],[-71.51786,42.01275299906],[-71.517296,42.01298099906],[-71.51638,42.01332499906],[-71.51619,42.01339299906],[-71.516022,42.01344299906],[-71.515442,42.01354599906],[-71.514114,42.01375599906],[-71.513794,42.01379799906],[-71.513336,42.01385899906],[-71.513023,42.01390799906],[-71.512322,42.01400499906],[-71.512182,42.01449399906],[-71.512019,42.01502599906],[-71.511689,42.01610099906],[-71.511633,42.01627999906],[-71.514168,42.01609299906],[-71.514439,42.01607299906],[-71.516379,42.01592899906],[-71.516614,42.01591199906],[-71.517175,42.01586999906],[-71.518809,42.01574699906],[-71.519188,42.01572099906],[-71.519774,42.01567999906],[-71.520411,42.01563099906],[-71.520734,42.01560499906],[-71.521404,42.01555699906],[-71.521714,42.01553299906],[-71.523255,42.01541899906],[-71.524641,42.01531599906],[-71.524643,42.01514399906],[-71.52462,42.01499599906],[-71.524529,42.01470899906],[-71.52433,42.01417199906],[-71.524185,42.01380199906],[-71.524124,42.01363399906],[-71.52594,42.01316499906],[-71.526527,42.01298899906]]]}}"}, +{"type": "blockgroup", "typeId": 173002, "areaId": 29128, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.523682,42.00983799906],[-71.523011,42.00911099906],[-71.522896,42.00898699906],[-71.522568,42.00865599906],[-71.522316,42.00836199906],[-71.52179,42.00777099906],[-71.521553,42.00750699906],[-71.520981,42.00678999906],[-71.520882,42.00667999906],[-71.520523,42.00623299906],[-71.520183,42.00581099906],[-71.519844,42.00538999906],[-71.519745,42.00527599906],[-71.519684,42.00521499906],[-71.519585,42.00514199906],[-71.519379,42.00501299906],[-71.519211,42.00491299906],[-71.519031,42.00480599906],[-71.518929,42.00474899906],[-71.518799,42.00471899906],[-71.518179,42.00462199906],[-71.518118,42.00470099906],[-71.51673,42.00652699906],[-71.516675,42.00659699906],[-71.516581,42.00671499906],[-71.516539,42.00676899906],[-71.516747,42.00676299906],[-71.51635,42.00736599906],[-71.515991,42.00775899906],[-71.515862,42.00788499906],[-71.51545,42.00827799906],[-71.515198,42.00860599906],[-71.515083,42.00877399906],[-71.514999,42.00890399906],[-71.514893,42.00901799906],[-71.514557,42.00938799906],[-71.514282,42.00970499906],[-71.514282,42.00982299906],[-71.514252,42.01023499906],[-71.514252,42.01035299906],[-71.514244,42.01047099906],[-71.514244,42.01054799906],[-71.514236,42.01062799906],[-71.514236,42.01070799906],[-71.513557,42.01069299906],[-71.513427,42.01069599906],[-71.513143,42.01136999906],[-71.513049,42.01159399906],[-71.512881,42.01208799906],[-71.512773,42.01240599906],[-71.512498,42.01323499906],[-71.512322,42.01400499906],[-71.513023,42.01390799906],[-71.513336,42.01385899906],[-71.513794,42.01379799906],[-71.514114,42.01375599906],[-71.515442,42.01354599906],[-71.516022,42.01344299906],[-71.51619,42.01339299906],[-71.51638,42.01332499906],[-71.517296,42.01298099906],[-71.51786,42.01275299906],[-71.518463,42.01244699906],[-71.519089,42.01213799906],[-71.520584,42.01138699906],[-71.521706,42.01081799906],[-71.522446,42.01044499906],[-71.522736,42.01030299906],[-71.523682,42.00983799906]]]}}"}, +{"type": "blockgroup", "typeId": 173003, "areaId": 29129, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.530476,42.01212199906],[-71.530461,42.01178399906],[-71.530461,42.01162899906],[-71.530469,42.01140499906],[-71.530467,42.01131599906],[-71.530441,42.01118099906],[-71.530404,42.01104299906],[-71.530378,42.01088999906],[-71.530346,42.01078099906],[-71.530272,42.01061199906],[-71.530142,42.01037499906],[-71.530099,42.01031199906],[-71.529998,42.01018399906],[-71.529966,42.01014799906],[-71.529892,42.01006699906],[-71.529658,42.00982699906],[-71.529498,42.00990499906],[-71.529414,42.00980299906],[-71.529322,42.00968799906],[-71.529106,42.00959799906],[-71.528635,42.00947499906],[-71.528283,42.00932999906],[-71.528039,42.00906299906],[-71.527771,42.00887399906],[-71.52739,42.00869999906],[-71.52707,42.00850699906],[-71.526787,42.00835999906],[-71.526517,42.00824099906],[-71.526308,42.00812099906],[-71.526124,42.00801999906],[-71.525952,42.00790999906],[-71.52578,42.00772699906],[-71.525644,42.00759799906],[-71.525472,42.00741499906],[-71.525325,42.00717599906],[-71.525226,42.00688199906],[-71.5252,42.00660499906],[-71.525139,42.00629199906],[-71.525077,42.00603999906],[-71.525031,42.00584199906],[-71.525,42.00551399906],[-71.524882,42.00522499906],[-71.524836,42.00469899906],[-71.524869,42.00454199906],[-71.524612,42.00448099906],[-71.524073,42.00435799906],[-71.523754,42.00429899906],[-71.523125,42.00422599906],[-71.522896,42.00420999906],[-71.522691,42.00420399906],[-71.522262,42.00420699906],[-71.522074,42.00421899906],[-71.521584,42.00426799906],[-71.521306,42.00430299906],[-71.520925,42.00438299906],[-71.520408,42.00450799906],[-71.519118,42.00478599906],[-71.519031,42.00480599906],[-71.519211,42.00491299906],[-71.519379,42.00501299906],[-71.519585,42.00514199906],[-71.519684,42.00521499906],[-71.519745,42.00527599906],[-71.519844,42.00538999906],[-71.520183,42.00581099906],[-71.520523,42.00623299906],[-71.520882,42.00667999906],[-71.520981,42.00678999906],[-71.521553,42.00750699906],[-71.52179,42.00777099906],[-71.522316,42.00836199906],[-71.522568,42.00865599906],[-71.522896,42.00898699906],[-71.523011,42.00911099906],[-71.523682,42.00983799906],[-71.523781,42.00994099906],[-71.524391,42.01060899906],[-71.525063,42.01135599906],[-71.525208,42.01153199906],[-71.525566,42.01192899906],[-71.52607,42.01247399906],[-71.526527,42.01298899906],[-71.52594,42.01316499906],[-71.524124,42.01363399906],[-71.524185,42.01380199906],[-71.52433,42.01417199906],[-71.524529,42.01470899906],[-71.52462,42.01499599906],[-71.524643,42.01514399906],[-71.524641,42.01531599906],[-71.52718,42.01512799906],[-71.527576,42.01509899906],[-71.527702,42.01509499906],[-71.528665,42.01507199906],[-71.529017,42.01506399906],[-71.529125,42.01506299906],[-71.52912,42.01499799906],[-71.529115,42.01493899906],[-71.529136,42.01470799906],[-71.529196,42.01452199906],[-71.529309,42.01433999906],[-71.52981,42.01363299906],[-71.53008,42.01326099906],[-71.530222,42.01296099906],[-71.530315,42.01268799906],[-71.530397,42.01240999906],[-71.530443,42.01221399906],[-71.530476,42.01212199906]]]}}"}, +{"type": "blockgroup", "typeId": 174001, "areaId": 29130, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.539854,42.00987299906],[-71.539679,42.00939799906],[-71.539269,42.00836199906],[-71.539183,42.00814199906],[-71.538811,42.00717399906],[-71.537849,42.00467699906],[-71.536397,42.00107099906],[-71.535971,42.00000999906],[-71.535466,42.00012199906],[-71.534799,42.00027099906],[-71.533992,42.00044799906],[-71.53392,42.00046499906],[-71.533836,42.00048299906],[-71.533081,42.00064099906],[-71.532234,42.00081999906],[-71.53141,42.00099199906],[-71.530548,42.00117499906],[-71.529701,42.00136199906],[-71.528786,42.00155599906],[-71.527893,42.00173999906],[-71.526939,42.00193399906],[-71.526024,42.00211299906],[-71.52534,42.00226099906],[-71.525095,42.00231399906],[-71.525016,42.00232999906],[-71.524746,42.00238899906],[-71.524345,42.00247599906],[-71.523453,42.00266299906],[-71.523094,42.00274299906],[-71.522964,42.00278499906],[-71.522865,42.00283799906],[-71.522804,42.00287999906],[-71.522758,42.00294099906],[-71.52269,42.00300999906],[-71.522301,42.00356699906],[-71.52211,42.00384899906],[-71.521957,42.00405499906],[-71.521912,42.00415399906],[-71.521997,42.00418799906],[-71.522074,42.00421899906],[-71.522262,42.00420699906],[-71.522691,42.00420399906],[-71.522896,42.00420999906],[-71.523125,42.00422599906],[-71.523754,42.00429899906],[-71.524073,42.00435799906],[-71.524612,42.00448099906],[-71.524869,42.00454199906],[-71.524836,42.00469899906],[-71.524882,42.00522499906],[-71.525,42.00551399906],[-71.525031,42.00584199906],[-71.525077,42.00603999906],[-71.525139,42.00629199906],[-71.5252,42.00660499906],[-71.525226,42.00688199906],[-71.525325,42.00717599906],[-71.525472,42.00741499906],[-71.525644,42.00759799906],[-71.52578,42.00772699906],[-71.525952,42.00790999906],[-71.526124,42.00801999906],[-71.526308,42.00812099906],[-71.526517,42.00824099906],[-71.526787,42.00835999906],[-71.52707,42.00850699906],[-71.52739,42.00869999906],[-71.527771,42.00887399906],[-71.528039,42.00906299906],[-71.528283,42.00932999906],[-71.528635,42.00947499906],[-71.529106,42.00959799906],[-71.529322,42.00968799906],[-71.529414,42.00980299906],[-71.529498,42.00990499906],[-71.529658,42.00982699906],[-71.530259,42.00978399906],[-71.530347,42.00978499906],[-71.530825,42.00979299906],[-71.5314,42.00980199906],[-71.532196,42.00981499906],[-71.532953,42.00982699906],[-71.5335,42.00983399906],[-71.533856,42.00983899906],[-71.534459,42.00984899906],[-71.535805,42.00986999906],[-71.535941,42.00987199906],[-71.536784,42.00988499906],[-71.536875,42.00987199906],[-71.537063,42.00987299906],[-71.539093,42.00987499906],[-71.539854,42.00987299906]]]}}"}, +{"type": "blockgroup", "typeId": 174002, "areaId": 29131, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.529701,42.00136199906],[-71.529312,42.00032799906],[-71.529243,42.00016799906],[-71.529045,41.99965299906],[-71.528847,41.99910399906],[-71.528511,41.99823799906],[-71.527924,41.99824499906],[-71.527519,41.99825699906],[-71.527176,41.99825999906],[-71.526596,41.99825699906],[-71.526543,41.99825299906],[-71.526321,41.99823799906],[-71.526115,41.99819199906],[-71.525429,41.99795899906],[-71.525172,41.99787999906],[-71.524528,41.99835099906],[-71.523038,41.99944199906],[-71.523049,41.99947899906],[-71.523114,41.99969899906],[-71.522719,42.00082499906],[-71.522687,42.00110399906],[-71.522663,42.00135599906],[-71.522448,42.00136499906],[-71.522026,42.00146999906],[-71.521767,42.00161499906],[-71.521553,42.00176799906],[-71.521262,42.00193599906],[-71.52082,42.00207999906],[-71.52033,42.00217899906],[-71.520005,42.00222699906],[-71.519802,42.00249299906],[-71.519723,42.00259599906],[-71.519275,42.00318099906],[-71.51877,42.00384599906],[-71.518303,42.00445999906],[-71.518179,42.00462199906],[-71.518799,42.00471899906],[-71.518929,42.00474899906],[-71.519031,42.00480599906],[-71.519118,42.00478599906],[-71.520408,42.00450799906],[-71.520925,42.00438299906],[-71.521306,42.00430299906],[-71.521584,42.00426799906],[-71.522074,42.00421899906],[-71.521997,42.00418799906],[-71.521912,42.00415399906],[-71.521957,42.00405499906],[-71.52211,42.00384899906],[-71.522301,42.00356699906],[-71.52269,42.00300999906],[-71.522758,42.00294099906],[-71.522804,42.00287999906],[-71.522865,42.00283799906],[-71.522964,42.00278499906],[-71.523094,42.00274299906],[-71.523453,42.00266299906],[-71.524345,42.00247599906],[-71.524746,42.00238899906],[-71.525016,42.00232999906],[-71.525095,42.00231399906],[-71.52534,42.00226099906],[-71.526024,42.00211299906],[-71.526939,42.00193399906],[-71.527893,42.00173999906],[-71.528786,42.00155599906],[-71.529701,42.00136199906]]]}}"}, +{"type": "blockgroup", "typeId": 174003, "areaId": 29132, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.535971,42.00000999906],[-71.535583,41.99903999906],[-71.535052,41.99779099906],[-71.533238,41.99351399906],[-71.533195,41.99341999906],[-71.533135,41.99342199906],[-71.533071,41.99343099906],[-71.532654,41.99348599906],[-71.532589,41.99349499906],[-71.53207,41.99358499906],[-71.531496,41.99372499906],[-71.530914,41.99393299906],[-71.530448,41.99415199906],[-71.529996,41.99439099906],[-71.529444,41.99475599906],[-71.529308,41.99485599906],[-71.526114,41.99719799906],[-71.525172,41.99787999906],[-71.525429,41.99795899906],[-71.526115,41.99819199906],[-71.526321,41.99823799906],[-71.526543,41.99825299906],[-71.526596,41.99825699906],[-71.527176,41.99825999906],[-71.527519,41.99825699906],[-71.527924,41.99824499906],[-71.528511,41.99823799906],[-71.528847,41.99910399906],[-71.529045,41.99965299906],[-71.529243,42.00016799906],[-71.529312,42.00032799906],[-71.529701,42.00136199906],[-71.530548,42.00117499906],[-71.53141,42.00099199906],[-71.532234,42.00081999906],[-71.533081,42.00064099906],[-71.533836,42.00048299906],[-71.53392,42.00046499906],[-71.533992,42.00044799906],[-71.534799,42.00027099906],[-71.535466,42.00012199906],[-71.535971,42.00000999906]]]}}"}, +{"type": "blockgroup", "typeId": 175001, "areaId": 29133, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.533195,41.99341999906],[-71.532964,41.99286299906],[-71.532957,41.99284499906],[-71.532658,41.99212099906],[-71.532651,41.99210499906],[-71.532386,41.99149999906],[-71.532355,41.99142999906],[-71.532235,41.99107499906],[-71.531754,41.98957399906],[-71.531563,41.98970399906],[-71.531395,41.98981099906],[-71.531319,41.98986799906],[-71.53083,41.99020399906],[-71.530304,41.99055899906],[-71.530136,41.99063499906],[-71.529922,41.99070699906],[-71.529694,41.99078399906],[-71.528625,41.98973799906],[-71.52816,41.99003999906],[-71.527939,41.99019199906],[-71.527725,41.99033399906],[-71.527228,41.99075599906],[-71.527214,41.99077199906],[-71.526016,41.99179099906],[-71.525436,41.99230999906],[-71.524879,41.99290099906],[-71.524872,41.99291999906],[-71.524788,41.99303799906],[-71.524025,41.99389999906],[-71.523811,41.99414399906],[-71.523033,41.99500299906],[-71.522026,41.99520899906],[-71.522408,41.99594899906],[-71.522629,41.99642599906],[-71.52269,41.99639499906],[-71.5233,41.99613599906],[-71.523575,41.99643699906],[-71.523643,41.99652099906],[-71.523911,41.99683399906],[-71.524071,41.99698299906],[-71.524246,41.99714999906],[-71.524403,41.99732699906],[-71.524483,41.99741699906],[-71.524651,41.99764999906],[-71.524719,41.99771899906],[-71.525032,41.99783699906],[-71.525172,41.99787999906],[-71.526114,41.99719799906],[-71.529308,41.99485599906],[-71.529444,41.99475599906],[-71.529996,41.99439099906],[-71.530448,41.99415199906],[-71.530914,41.99393299906],[-71.531496,41.99372499906],[-71.53207,41.99358499906],[-71.532589,41.99349499906],[-71.532654,41.99348599906],[-71.533071,41.99343099906],[-71.533135,41.99342199906],[-71.533195,41.99341999906]]]}}"}, +{"type": "blockgroup", "typeId": 175002, "areaId": 29134, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.531754,41.98957399906],[-71.53112,41.98945599906],[-71.530739,41.98935699906],[-71.530106,41.98916599906],[-71.528313,41.98853299906],[-71.528008,41.98840699906],[-71.527664,41.98822399906],[-71.527084,41.98784299906],[-71.526382,41.98736599906],[-71.525986,41.98710599906],[-71.525658,41.98692299906],[-71.525494,41.98684499906],[-71.525093,41.98665599906],[-71.524811,41.98654599906],[-71.524452,41.98640799906],[-71.523857,41.98619499906],[-71.523796,41.98617599906],[-71.523773,41.98616399906],[-71.52327,41.98599199906],[-71.522758,41.98579799906],[-71.522354,41.98565299906],[-71.522171,41.98657599906],[-71.522018,41.98736999906],[-71.52179,41.98871199906],[-71.521721,41.98909199906],[-71.521713,41.98910899906],[-71.521584,41.98984099906],[-71.521507,41.99022299906],[-71.521255,41.99153499906],[-71.521246,41.99155199906],[-71.521027,41.99272899906],[-71.520142,41.99264099906],[-71.519981,41.99338899906],[-71.51989,41.99385799906],[-71.521057,41.99333999906],[-71.5214,41.99399899906],[-71.521667,41.99452199906],[-71.522026,41.99520899906],[-71.523033,41.99500299906],[-71.523811,41.99414399906],[-71.524025,41.99389999906],[-71.524788,41.99303799906],[-71.524872,41.99291999906],[-71.524879,41.99290099906],[-71.525436,41.99230999906],[-71.526016,41.99179099906],[-71.527214,41.99077199906],[-71.527228,41.99075599906],[-71.527725,41.99033399906],[-71.527939,41.99019199906],[-71.52816,41.99003999906],[-71.528625,41.98973799906],[-71.529694,41.99078399906],[-71.529922,41.99070699906],[-71.530136,41.99063499906],[-71.530304,41.99055899906],[-71.53083,41.99020399906],[-71.531319,41.98986799906],[-71.531395,41.98981099906],[-71.531563,41.98970399906],[-71.531754,41.98957399906]]]}}"}, +{"type": "blockgroup", "typeId": 175003, "areaId": 29135, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.522354,41.98565299906],[-71.522072,41.98558399906],[-71.521645,41.98546999906],[-71.521545,41.98544699906],[-71.521141,41.98534799906],[-71.52063,41.98520699906],[-71.520424,41.98511899906],[-71.520241,41.98502699906],[-71.520203,41.98500399906],[-71.519997,41.98488999906],[-71.519569,41.98463399906],[-71.519501,41.98458499906],[-71.51915,41.98432899906],[-71.518806,41.98412299906],[-71.518547,41.98396299906],[-71.518066,41.98369599906],[-71.517799,41.98358899906],[-71.517754,41.98356999906],[-71.517624,41.98353999906],[-71.517235,41.98343699906],[-71.516762,41.98340999906],[-71.516129,41.98334099906],[-71.515816,41.98327999906],[-71.515778,41.98376499906],[-71.515739,41.98439399906],[-71.515717,41.98551199906],[-71.515709,41.98565299906],[-71.515709,41.98586299906],[-71.515648,41.98620599906],[-71.51564,41.98625599906],[-71.515465,41.98713299906],[-71.515457,41.98714999906],[-71.515335,41.98777599906],[-71.515327,41.98779299906],[-71.515327,41.98781199906],[-71.515205,41.98844099906],[-71.515106,41.98895999906],[-71.515106,41.98897899906],[-71.5149,41.98994799906],[-71.514791,41.99046299906],[-71.515455,41.99068099906],[-71.515873,41.99082599906],[-71.51631,41.99100099906],[-71.516557,41.99108199906],[-71.517044,41.99137399906],[-71.517471,41.99163399906],[-71.517792,41.99183299906],[-71.518005,41.99197399906],[-71.518135,41.99207699906],[-71.518364,41.99233999906],[-71.518463,41.99248899906],[-71.518501,41.99253799906],[-71.518532,41.99269899906],[-71.51844,41.99302299906],[-71.518196,41.99350399906],[-71.517815,41.99416699906],[-71.518333,41.99420499906],[-71.518715,41.99424699906],[-71.518814,41.99425899906],[-71.519028,41.99420899906],[-71.519379,41.99407599906],[-71.51989,41.99385799906],[-71.519981,41.99338899906],[-71.520142,41.99264099906],[-71.521027,41.99272899906],[-71.521246,41.99155199906],[-71.521255,41.99153499906],[-71.521507,41.99022299906],[-71.521584,41.98984099906],[-71.521713,41.98910899906],[-71.521721,41.98909199906],[-71.52179,41.98871199906],[-71.522018,41.98736999906],[-71.522171,41.98657599906],[-71.522354,41.98565299906]]]}}"}, +{"type": "blockgroup", "typeId": 176001, "areaId": 29136, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.525172,41.99787999906],[-71.525032,41.99783699906],[-71.524719,41.99771899906],[-71.524651,41.99764999906],[-71.524483,41.99741699906],[-71.524403,41.99732699906],[-71.524246,41.99714999906],[-71.524071,41.99698299906],[-71.523911,41.99683399906],[-71.523643,41.99652099906],[-71.523575,41.99643699906],[-71.5233,41.99613599906],[-71.52269,41.99639499906],[-71.522629,41.99642599906],[-71.522072,41.99666999906],[-71.521286,41.99705899906],[-71.520676,41.99738299906],[-71.520119,41.99767299906],[-71.519775,41.99786399906],[-71.519508,41.99799699906],[-71.519264,41.99813099906],[-71.519119,41.99820299906],[-71.518959,41.99829899906],[-71.518837,41.99838299906],[-71.518478,41.99870299906],[-71.518395,41.99876799906],[-71.518318,41.99882899906],[-71.518188,41.99891999906],[-71.518129,41.99894499906],[-71.518047,41.99909299906],[-71.517908,41.99933699906],[-71.517852,41.99944499906],[-71.517867,41.99952999906],[-71.517893,41.99967999906],[-71.518204,42.00004399906],[-71.518272,42.00020799906],[-71.518298,42.00032499906],[-71.518281,42.00064999906],[-71.518363,42.00114099906],[-71.518402,42.00153499906],[-71.518615,42.00180999906],[-71.518939,42.00203399906],[-71.519302,42.00220699906],[-71.520005,42.00222699906],[-71.52033,42.00217899906],[-71.52082,42.00207999906],[-71.521262,42.00193599906],[-71.521553,42.00176799906],[-71.521767,42.00161499906],[-71.522026,42.00146999906],[-71.522448,42.00136499906],[-71.522663,42.00135599906],[-71.522687,42.00110399906],[-71.522719,42.00082499906],[-71.523114,41.99969899906],[-71.523049,41.99947899906],[-71.523038,41.99944199906],[-71.524528,41.99835099906],[-71.525172,41.99787999906]]]}}"}, +{"type": "blockgroup", "typeId": 176002, "areaId": 29137, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.522629,41.99642599906],[-71.522408,41.99594899906],[-71.522026,41.99520899906],[-71.521667,41.99452199906],[-71.5214,41.99399899906],[-71.521057,41.99333999906],[-71.51989,41.99385799906],[-71.519379,41.99407599906],[-71.519028,41.99420899906],[-71.518814,41.99425899906],[-71.518715,41.99424699906],[-71.518333,41.99420499906],[-71.517815,41.99416699906],[-71.518196,41.99350399906],[-71.51844,41.99302299906],[-71.518532,41.99269899906],[-71.518501,41.99253799906],[-71.518463,41.99248899906],[-71.518364,41.99233999906],[-71.518135,41.99207699906],[-71.518005,41.99197399906],[-71.517792,41.99183299906],[-71.517471,41.99163399906],[-71.517044,41.99137399906],[-71.516557,41.99108199906],[-71.51631,41.99100099906],[-71.515873,41.99082599906],[-71.515455,41.99068099906],[-71.514791,41.99046299906],[-71.514664,41.99106599906],[-71.514481,41.99191999906],[-71.514351,41.99259599906],[-71.514236,41.99276699906],[-71.51339,41.99428199906],[-71.51297,41.99503699906],[-71.512466,41.99586899906],[-71.513374,41.99631499906],[-71.513695,41.99645999906],[-71.513832,41.99650599906],[-71.514015,41.99653999906],[-71.514244,41.99655899906],[-71.514801,41.99654799906],[-71.5149,41.99644899906],[-71.515015,41.99634599906],[-71.515099,41.99629199906],[-71.515205,41.99623499906],[-71.515434,41.99616599906],[-71.516609,41.99584599906],[-71.516823,41.99578099906],[-71.516968,41.99575799906],[-71.517059,41.99575399906],[-71.517075,41.99577699906],[-71.517105,41.99584599906],[-71.517372,41.99624999906],[-71.517708,41.99673499906],[-71.518089,41.99726899906],[-71.518204,41.99744399906],[-71.518318,41.99757799906],[-71.518417,41.99769199906],[-71.518852,41.99816099906],[-71.518959,41.99829899906],[-71.519119,41.99820299906],[-71.519264,41.99813099906],[-71.519508,41.99799699906],[-71.519775,41.99786399906],[-71.520119,41.99767299906],[-71.520676,41.99738299906],[-71.521286,41.99705899906],[-71.522072,41.99666999906],[-71.522629,41.99642599906]]]}}"}, +{"type": "blockgroup", "typeId": 177001, "areaId": 29138, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.500351,41.99430499906],[-71.500259,41.99424699906],[-71.500168,41.99415199906],[-71.499657,41.99352999906],[-71.49939,41.99326299906],[-71.499382,41.99307599906],[-71.499382,41.99272899906],[-71.499367,41.99215299906],[-71.499382,41.99125299906],[-71.499367,41.99055899906],[-71.499367,41.98958199906],[-71.499329,41.98951299906],[-71.499252,41.98949399906],[-71.499084,41.98953199906],[-71.498718,41.98962799906],[-71.498474,41.98968099906],[-71.498154,41.98975399906],[-71.497963,41.98980299906],[-71.497574,41.98988699906],[-71.497215,41.98993299906],[-71.496727,41.98998599906],[-71.495735,41.99012799906],[-71.495911,41.98946399906],[-71.496033,41.98897899906],[-71.496063,41.98874999906],[-71.496216,41.98823199906],[-71.496368,41.98751099906],[-71.496166,41.98746699906],[-71.496071,41.98744599906],[-71.496038,41.98742899906],[-71.495995,41.98740799906],[-71.495941,41.98734699906],[-71.495781,41.98693499906],[-71.495567,41.98648799906],[-71.495163,41.98545499906],[-71.495407,41.98539699906],[-71.49556,41.98535499906],[-71.495682,41.98529099906],[-71.495758,41.98522199906],[-71.495819,41.98514199906],[-71.495842,41.98505799906],[-71.495842,41.98496199906],[-71.495827,41.98485899906],[-71.495789,41.98474099906],[-71.495651,41.98442799906],[-71.495506,41.98411599906],[-71.494652,41.98426799906],[-71.4945,41.98430299906],[-71.49427,41.98435599906],[-71.49382,41.98444699906],[-71.493637,41.98405799906],[-71.493408,41.98348199906],[-71.493141,41.98281499906],[-71.492653,41.98164399906],[-71.492485,41.98125099906],[-71.491746,41.97961199906],[-71.489687,41.97936399906],[-71.489547,41.97934999906],[-71.489029,41.97928699906],[-71.488727,41.97925099906],[-71.488283,41.97919599906],[-71.488152,41.97917999906],[-71.488045,41.97916699906],[-71.487929,41.97915399906],[-71.487364,41.97908499906],[-71.487464,41.97926599906],[-71.488202,41.98059799906],[-71.488998,41.98299599906],[-71.490765,41.98601299906],[-71.49108,41.98691499906],[-71.491593,41.98838199906],[-71.491486,41.98989299906],[-71.491883,41.99159299906],[-71.492379,41.99369199906],[-71.492658,41.99408799906],[-71.492794,41.99458699906],[-71.492893,41.99511699906],[-71.493166,41.99568099906],[-71.493546,41.99632499906],[-71.49388,41.99686599906],[-71.494291,41.99744599906],[-71.494757,41.99798699906],[-71.495229,41.99836899906],[-71.495601,41.99873899906],[-71.496403,41.99919699906],[-71.497106,41.99980099906],[-71.49728,42.00007999906],[-71.497361,42.00021899906],[-71.497742,42.00110299906],[-71.497938,42.00175099906],[-71.498045,42.00226199906],[-71.498094,42.00272799906],[-71.498175,42.00303999906],[-71.498218,42.00310899906],[-71.498484,42.00307599906],[-71.498932,42.00302099906],[-71.499088,42.00298299906],[-71.499084,42.00293399906],[-71.499008,42.00230799906],[-71.498932,42.00189599906],[-71.49884,42.00127399906],[-71.498772,42.00088499906],[-71.498772,42.00080099906],[-71.498779,42.00072099906],[-71.49881,42.00063699906],[-71.498886,42.00050699906],[-71.499061,42.00027899906],[-71.499153,42.00016399906],[-71.499214,42.00011399906],[-71.499268,42.00007199906],[-71.499367,42.00000799906],[-71.49926,41.99983199906],[-71.498985,41.99940099906],[-71.498566,41.99876399906],[-71.498383,41.99840899906],[-71.498199,41.99808499906],[-71.497787,41.99727599906],[-71.497719,41.99713099906],[-71.497604,41.99692899906],[-71.497406,41.99669999906],[-71.497246,41.99654399906],[-71.497086,41.99640699906],[-71.496925,41.99625799906],[-71.496544,41.99591399906],[-71.497574,41.99575799906],[-71.49839,41.99563999906],[-71.498505,41.99562499906],[-71.498985,41.99553699906],[-71.499115,41.99543799906],[-71.499329,41.99525099906],[-71.499474,41.99507099906],[-71.499603,41.99481599906],[-71.499741,41.99459799906],[-71.499901,41.99448399906],[-71.500351,41.99430499906]]]}}"}, +{"type": "blockgroup", "typeId": 177002, "areaId": 29139, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.515816,41.98327999906],[-71.515694,41.98325299906],[-71.515419,41.98313899906],[-71.515274,41.98306299906],[-71.512992,41.98277699906],[-71.507066,41.98173699906],[-71.505849,41.98152399906],[-71.505352,41.98143699906],[-71.504636,41.98131099906],[-71.500579,41.98068399906],[-71.499427,41.98054099906],[-71.493721,41.97985099906],[-71.491746,41.97961199906],[-71.492485,41.98125099906],[-71.492653,41.98164399906],[-71.493141,41.98281499906],[-71.493408,41.98348199906],[-71.493637,41.98405799906],[-71.49382,41.98444699906],[-71.49427,41.98435599906],[-71.4945,41.98430299906],[-71.494652,41.98426799906],[-71.495506,41.98411599906],[-71.495651,41.98442799906],[-71.495789,41.98474099906],[-71.495827,41.98485899906],[-71.495842,41.98496199906],[-71.495842,41.98505799906],[-71.495819,41.98514199906],[-71.495758,41.98522199906],[-71.495682,41.98529099906],[-71.49556,41.98535499906],[-71.495407,41.98539699906],[-71.495163,41.98545499906],[-71.495567,41.98648799906],[-71.495781,41.98693499906],[-71.495941,41.98734699906],[-71.495995,41.98740799906],[-71.496038,41.98742899906],[-71.496071,41.98744599906],[-71.496166,41.98746699906],[-71.496368,41.98751099906],[-71.496216,41.98823199906],[-71.496063,41.98874999906],[-71.496033,41.98897899906],[-71.495911,41.98946399906],[-71.495735,41.99012799906],[-71.496727,41.98998599906],[-71.497215,41.98993299906],[-71.497574,41.98988699906],[-71.497963,41.98980299906],[-71.498154,41.98975399906],[-71.498474,41.98968099906],[-71.498718,41.98962799906],[-71.499084,41.98953199906],[-71.499252,41.98949399906],[-71.499329,41.98951299906],[-71.499367,41.98958199906],[-71.499367,41.99055899906],[-71.499382,41.99125299906],[-71.499367,41.99215299906],[-71.499382,41.99272899906],[-71.499382,41.99307599906],[-71.49939,41.99326299906],[-71.499657,41.99352999906],[-71.500168,41.99415199906],[-71.500259,41.99424699906],[-71.500351,41.99430499906],[-71.500488,41.99436999906],[-71.50164,41.99461699906],[-71.501968,41.99467799906],[-71.502083,41.99468199906],[-71.502258,41.99467499906],[-71.502586,41.99463299906],[-71.50299,41.99457199906],[-71.503166,41.99454499906],[-71.503492,41.99451099906],[-71.503723,41.99448799906],[-71.504036,41.99446899906],[-71.504532,41.99446499906],[-71.5047,41.99446899906],[-71.505142,41.99450699906],[-71.50563,41.99455599906],[-71.505913,41.99459099906],[-71.50618,41.99463699906],[-71.506485,41.99468999906],[-71.507294,41.99484599906],[-71.507462,41.99487699906],[-71.507942,41.99498699906],[-71.508301,41.99504899906],[-71.508446,41.99505999906],[-71.508568,41.99506399906],[-71.508698,41.99505999906],[-71.508873,41.99504099906],[-71.509644,41.99487299906],[-71.509972,41.99480399906],[-71.510468,41.99471999906],[-71.51059,41.99470899906],[-71.510628,41.99470899906],[-71.510712,41.99451799906],[-71.510818,41.99434299906],[-71.51075,41.99409499906],[-71.510567,41.99352599906],[-71.510361,41.99284699906],[-71.510155,41.99217999906],[-71.509979,41.99156499906],[-71.509964,41.99151199906],[-71.509903,41.99126099906],[-71.50988,41.99095499906],[-71.50988,41.99078399906],[-71.509857,41.99077199906],[-71.509857,41.99035999906],[-71.509872,41.99004399906],[-71.509903,41.98981499906],[-71.509933,41.98953599906],[-71.509979,41.98927699906],[-71.509979,41.98922099906],[-71.50999,41.98915499906],[-71.509995,41.98901399906],[-71.510071,41.98852199906],[-71.510101,41.98846799906],[-71.510124,41.98846099906],[-71.510147,41.98845299906],[-71.510532,41.98840199906],[-71.51104,41.98833499906],[-71.511208,41.98831199906],[-71.511917,41.98823199906],[-71.512657,41.98814399906],[-71.512596,41.98747299906],[-71.512589,41.98743399906],[-71.512543,41.98680899906],[-71.512527,41.98676299906],[-71.512466,41.98654599906],[-71.512352,41.98621699906],[-71.512268,41.98598099906],[-71.512108,41.98557699906],[-71.513191,41.98536299906],[-71.513847,41.98521799906],[-71.513615,41.98465299906],[-71.51342,41.98413499906],[-71.513397,41.98400499906],[-71.51339,41.98397099906],[-71.513496,41.98392899906],[-71.514046,41.98380299906],[-71.51429,41.98405799906],[-71.514389,41.98416899906],[-71.515152,41.98496199906],[-71.515343,41.98514599906],[-71.515648,41.98552699906],[-71.515717,41.98551199906],[-71.515739,41.98439399906],[-71.515778,41.98376499906],[-71.515816,41.98327999906]]]}}"}, +{"type": "blockgroup", "typeId": 177003, "areaId": 29140, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.515717,41.98551199906],[-71.515648,41.98552699906],[-71.515343,41.98514599906],[-71.515152,41.98496199906],[-71.514389,41.98416899906],[-71.51429,41.98405799906],[-71.514046,41.98380299906],[-71.513496,41.98392899906],[-71.51339,41.98397099906],[-71.513397,41.98400499906],[-71.51342,41.98413499906],[-71.513615,41.98465299906],[-71.513847,41.98521799906],[-71.513191,41.98536299906],[-71.512108,41.98557699906],[-71.512268,41.98598099906],[-71.512352,41.98621699906],[-71.512466,41.98654599906],[-71.512527,41.98676299906],[-71.512543,41.98680899906],[-71.512589,41.98743399906],[-71.512596,41.98747299906],[-71.512657,41.98814399906],[-71.511917,41.98823199906],[-71.511208,41.98831199906],[-71.51104,41.98833499906],[-71.510532,41.98840199906],[-71.510147,41.98845299906],[-71.510124,41.98846099906],[-71.510101,41.98846799906],[-71.510071,41.98852199906],[-71.509995,41.98901399906],[-71.50999,41.98915499906],[-71.509979,41.98922099906],[-71.509979,41.98927699906],[-71.509933,41.98953599906],[-71.509903,41.98981499906],[-71.509872,41.99004399906],[-71.509857,41.99035999906],[-71.509857,41.99077199906],[-71.50988,41.99078399906],[-71.50988,41.99095499906],[-71.509903,41.99126099906],[-71.509964,41.99151199906],[-71.509979,41.99156499906],[-71.510155,41.99217999906],[-71.510361,41.99284699906],[-71.510567,41.99352599906],[-71.51075,41.99409499906],[-71.510818,41.99434299906],[-71.510712,41.99451799906],[-71.510628,41.99470899906],[-71.510727,41.99470899906],[-71.510872,41.99471999906],[-71.510968,41.99474299906],[-71.511032,41.99476999906],[-71.511169,41.99485799906],[-71.511528,41.99513999906],[-71.51178,41.99532299906],[-71.512466,41.99586899906],[-71.51297,41.99503699906],[-71.51339,41.99428199906],[-71.514236,41.99276699906],[-71.514351,41.99259599906],[-71.514481,41.99191999906],[-71.514664,41.99106599906],[-71.514791,41.99046299906],[-71.5149,41.98994799906],[-71.515106,41.98897899906],[-71.515106,41.98895999906],[-71.515205,41.98844099906],[-71.515327,41.98781199906],[-71.515327,41.98779299906],[-71.515335,41.98777599906],[-71.515457,41.98714999906],[-71.515465,41.98713299906],[-71.51564,41.98625599906],[-71.515648,41.98620599906],[-71.515709,41.98586299906],[-71.515709,41.98565299906],[-71.515717,41.98551199906]]]}}"}, +{"type": "blockgroup", "typeId": 178001, "areaId": 29141, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.507294,41.99484599906],[-71.506485,41.99468999906],[-71.50618,41.99463699906],[-71.505913,41.99459099906],[-71.50563,41.99455599906],[-71.505142,41.99450699906],[-71.5047,41.99446899906],[-71.504532,41.99446499906],[-71.504036,41.99446899906],[-71.503723,41.99448799906],[-71.503492,41.99451099906],[-71.503166,41.99454499906],[-71.50299,41.99457199906],[-71.502586,41.99463299906],[-71.502258,41.99467499906],[-71.502083,41.99468199906],[-71.501968,41.99467799906],[-71.50164,41.99461699906],[-71.500488,41.99436999906],[-71.500351,41.99430499906],[-71.499901,41.99448399906],[-71.499741,41.99459799906],[-71.499603,41.99481599906],[-71.499474,41.99507099906],[-71.499329,41.99525099906],[-71.499115,41.99543799906],[-71.498985,41.99553699906],[-71.498505,41.99562499906],[-71.49839,41.99563999906],[-71.497574,41.99575799906],[-71.496544,41.99591399906],[-71.496925,41.99625799906],[-71.497086,41.99640699906],[-71.497246,41.99654399906],[-71.497406,41.99669999906],[-71.497604,41.99692899906],[-71.497719,41.99713099906],[-71.497787,41.99727599906],[-71.498199,41.99808499906],[-71.498253,41.99806599906],[-71.498352,41.99804299906],[-71.500229,41.99811199906],[-71.501816,41.99818399906],[-71.50235,41.99820699906],[-71.502731,41.99823399906],[-71.50309,41.99824099906],[-71.50351,41.99824899906],[-71.503975,41.99827199906],[-71.504395,41.99829899906],[-71.505211,41.99832899906],[-71.505653,41.99833699906],[-71.506111,41.99835599906],[-71.506645,41.99838599906],[-71.507034,41.99840199906],[-71.50708,41.99773399906],[-71.507095,41.99745199906],[-71.507118,41.99717299906],[-71.507126,41.99701699906],[-71.507202,41.99627299906],[-71.507225,41.99576599906],[-71.507233,41.99563599906],[-71.507294,41.99484599906]]]}}"}, +{"type": "blockgroup", "typeId": 178002, "areaId": 29142, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.512466,41.99586899906],[-71.51178,41.99532299906],[-71.511528,41.99513999906],[-71.511169,41.99485799906],[-71.511032,41.99476999906],[-71.510968,41.99474299906],[-71.510872,41.99471999906],[-71.510727,41.99470899906],[-71.51059,41.99470899906],[-71.510468,41.99471999906],[-71.509972,41.99480399906],[-71.509644,41.99487299906],[-71.508873,41.99504099906],[-71.508698,41.99505999906],[-71.508568,41.99506399906],[-71.508446,41.99505999906],[-71.508301,41.99504899906],[-71.507942,41.99498699906],[-71.507462,41.99487699906],[-71.507294,41.99484599906],[-71.507233,41.99563599906],[-71.507225,41.99576599906],[-71.507202,41.99627299906],[-71.507126,41.99701699906],[-71.507118,41.99717299906],[-71.507095,41.99745199906],[-71.50708,41.99773399906],[-71.507034,41.99840199906],[-71.507545,41.99842099906],[-71.507675,41.99842499906],[-71.507797,41.99843599906],[-71.50795,41.99846599906],[-71.508728,41.99878699906],[-71.509835,41.99931099906],[-71.51062,41.99830999906],[-71.510696,41.99819899906],[-71.51123,41.99748599906],[-71.511475,41.99716599906],[-71.51178,41.99676099906],[-71.512466,41.99586899906]]]}}"}, +{"type": "blockgroup", "typeId": 178003, "areaId": 29143, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.518959,41.99829899906],[-71.518852,41.99816099906],[-71.518417,41.99769199906],[-71.518318,41.99757799906],[-71.518204,41.99744399906],[-71.518089,41.99726899906],[-71.517708,41.99673499906],[-71.517372,41.99624999906],[-71.517105,41.99584599906],[-71.517075,41.99577699906],[-71.517059,41.99575399906],[-71.516968,41.99575799906],[-71.516823,41.99578099906],[-71.516609,41.99584599906],[-71.515434,41.99616599906],[-71.515205,41.99623499906],[-71.515099,41.99629199906],[-71.515015,41.99634599906],[-71.5149,41.99644899906],[-71.514801,41.99654799906],[-71.514244,41.99655899906],[-71.514015,41.99653999906],[-71.513832,41.99650599906],[-71.513695,41.99645999906],[-71.513374,41.99631499906],[-71.512466,41.99586899906],[-71.51178,41.99676099906],[-71.511475,41.99716599906],[-71.51123,41.99748599906],[-71.510696,41.99819899906],[-71.51062,41.99830999906],[-71.509835,41.99931099906],[-71.511024,41.99978499906],[-71.511709,42.00005399906],[-71.511984,42.00014399906],[-71.512288,42.00017999906],[-71.512484,42.00020099906],[-71.512676,42.00021499906],[-71.512904,42.00021899906],[-71.513106,42.00018799906],[-71.513347,42.00016199906],[-71.51356,41.99994599906],[-71.513691,41.99977499906],[-71.513856,41.99957999906],[-71.513955,41.99944399906],[-71.514062,41.99922599906],[-71.51418,41.99902799906],[-71.514312,41.99885299906],[-71.514671,41.99856699906],[-71.515214,41.99839099906],[-71.515319,41.99817399906],[-71.51553,41.99801599906],[-71.515921,41.99796599906],[-71.516049,41.99795899906],[-71.516259,41.99790299906],[-71.516637,41.99795399906],[-71.516881,41.99805599906],[-71.517063,41.99813499906],[-71.517167,41.99824299906],[-71.518129,41.99894499906],[-71.518188,41.99891999906],[-71.518318,41.99882899906],[-71.518395,41.99876799906],[-71.518478,41.99870299906],[-71.518837,41.99838299906],[-71.518959,41.99829899906]]]}}"}, +{"type": "blockgroup", "typeId": 179001, "areaId": 29144, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.511805,42.00250099906],[-71.511594,42.00241899906],[-71.511246,42.00228099906],[-71.511169,42.00225799906],[-71.510963,42.00222399906],[-71.510424,42.00222799906],[-71.510368,42.00222799906],[-71.509735,42.00224699906],[-71.509603,42.00224599906],[-71.509186,42.00224299906],[-71.508179,42.00224699906],[-71.507637,42.00224699906],[-71.507156,42.00223899906],[-71.506653,42.00221999906],[-71.506424,42.00221299906],[-71.505867,42.00218599906],[-71.505379,42.00217099906],[-71.504089,42.00211299906],[-71.502808,42.00206799906],[-71.502739,42.00206399906],[-71.502565,42.00205899906],[-71.502335,42.00205199906],[-71.501831,42.00204099906],[-71.501518,42.00201799906],[-71.501373,42.00202199906],[-71.501266,42.00203699906],[-71.501152,42.00207099906],[-71.501038,42.00212499906],[-71.500404,42.00251799906],[-71.500084,42.00268899906],[-71.499901,42.00276899906],[-71.499748,42.00283099906],[-71.49955,42.00288799906],[-71.499405,42.00291799906],[-71.499199,42.00295599906],[-71.499088,42.00298299906],[-71.498932,42.00302099906],[-71.498484,42.00307599906],[-71.498218,42.00310899906],[-71.498534,42.00361699906],[-71.499205,42.00419799906],[-71.499609,42.00467599906],[-71.499899,42.00497799906],[-71.50083,42.00566099906],[-71.50095,42.00575699906],[-71.501347,42.00602899906],[-71.501831,42.00630699906],[-71.50236,42.00646999906],[-71.502847,42.00660599906],[-71.503339,42.00670999906],[-71.504338,42.00653899906],[-71.504834,42.00630499906],[-71.505246,42.00600899906],[-71.505749,42.00552499906],[-71.506131,42.00518899906],[-71.506619,42.00492099906],[-71.507389,42.00469599906],[-71.508232,42.00450299906],[-71.50851,42.00442599906],[-71.509044,42.00432299906],[-71.509653,42.00412899906],[-71.510233,42.00384499906],[-71.510516,42.00353299906],[-71.511025,42.00294399906],[-71.511422,42.00261699906],[-71.511805,42.00250099906]]]}}"}, +{"type": "blockgroup", "typeId": 179002, "areaId": 29145, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.506882,42.00105299906],[-71.506821,42.00103399906],[-71.506767,42.00102199906],[-71.506516,42.00100299906],[-71.505447,42.00095699906],[-71.505569,41.99971399906],[-71.505608,41.99934399906],[-71.505615,41.99906499906],[-71.505615,41.99902699906],[-71.505646,41.99835899906],[-71.505653,41.99833699906],[-71.505211,41.99832899906],[-71.504395,41.99829899906],[-71.503975,41.99827199906],[-71.50351,41.99824899906],[-71.50309,41.99824099906],[-71.502731,41.99823399906],[-71.50235,41.99820699906],[-71.501816,41.99818399906],[-71.500229,41.99811199906],[-71.498352,41.99804299906],[-71.498253,41.99806599906],[-71.498199,41.99808499906],[-71.498383,41.99840899906],[-71.498566,41.99876399906],[-71.498985,41.99940099906],[-71.49926,41.99983199906],[-71.499367,42.00000799906],[-71.499268,42.00007199906],[-71.499214,42.00011399906],[-71.499153,42.00016399906],[-71.499061,42.00027899906],[-71.498886,42.00050699906],[-71.49881,42.00063699906],[-71.498779,42.00072099906],[-71.498772,42.00080099906],[-71.498772,42.00088499906],[-71.49884,42.00127399906],[-71.498932,42.00189599906],[-71.499008,42.00230799906],[-71.499084,42.00293399906],[-71.499088,42.00298299906],[-71.499199,42.00295599906],[-71.499405,42.00291799906],[-71.49955,42.00288799906],[-71.499748,42.00283099906],[-71.499901,42.00276899906],[-71.500084,42.00268899906],[-71.500404,42.00251799906],[-71.501038,42.00212499906],[-71.501152,42.00207099906],[-71.501266,42.00203699906],[-71.501373,42.00202199906],[-71.501518,42.00201799906],[-71.501831,42.00204099906],[-71.502335,42.00205199906],[-71.502565,42.00205899906],[-71.502739,42.00206399906],[-71.502808,42.00206799906],[-71.504089,42.00211299906],[-71.505379,42.00217099906],[-71.505867,42.00218599906],[-71.506424,42.00221299906],[-71.506653,42.00221999906],[-71.506706,42.00175899906],[-71.506744,42.00135399906],[-71.506744,42.00120899906],[-71.506775,42.00114399906],[-71.50679,42.00112499906],[-71.506882,42.00105299906]]]}}"}, +{"type": "blockgroup", "typeId": 179003, "areaId": 29146, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.513347,42.00016199906],[-71.513106,42.00018799906],[-71.512904,42.00021899906],[-71.512676,42.00021499906],[-71.512484,42.00020099906],[-71.512288,42.00017999906],[-71.511984,42.00014399906],[-71.511709,42.00005399906],[-71.511024,41.99978499906],[-71.509835,41.99931099906],[-71.508728,41.99878699906],[-71.50795,41.99846599906],[-71.507797,41.99843599906],[-71.507675,41.99842499906],[-71.507545,41.99842099906],[-71.507034,41.99840199906],[-71.506645,41.99838599906],[-71.506111,41.99835599906],[-71.505653,41.99833699906],[-71.505646,41.99835899906],[-71.505615,41.99902699906],[-71.505615,41.99906499906],[-71.505608,41.99934399906],[-71.505569,41.99971399906],[-71.505447,42.00095699906],[-71.506516,42.00100299906],[-71.506767,42.00102199906],[-71.506821,42.00103399906],[-71.506882,42.00105299906],[-71.50679,42.00112499906],[-71.506775,42.00114399906],[-71.506744,42.00120899906],[-71.506744,42.00135399906],[-71.506706,42.00175899906],[-71.506653,42.00221999906],[-71.507156,42.00223899906],[-71.507637,42.00224699906],[-71.508179,42.00224699906],[-71.509186,42.00224299906],[-71.509603,42.00224599906],[-71.509735,42.00224699906],[-71.510368,42.00222799906],[-71.510424,42.00222799906],[-71.510963,42.00222399906],[-71.511169,42.00225799906],[-71.511246,42.00228099906],[-71.511594,42.00241899906],[-71.511805,42.00250099906],[-71.512014,42.00236999906],[-71.51241,42.00199299906],[-71.512582,42.00169299906],[-71.51292,42.00117599906],[-71.512928,42.00116399906],[-71.513301,42.00026999906],[-71.513313,42.00024199906],[-71.513338,42.00018399906],[-71.513347,42.00016199906]]]}}"}, +{"type": "blockgroup", "typeId": 180001, "areaId": 29147, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.516747,42.00676299906],[-71.516539,42.00676899906],[-71.516487,42.00677099906],[-71.516319,42.00675599906],[-71.516289,42.00675599906],[-71.516243,42.00674799906],[-71.516121,42.00672899906],[-71.515976,42.00669099906],[-71.515739,42.00660699906],[-71.515121,42.00640099906],[-71.514954,42.00633999906],[-71.514023,42.00604999906],[-71.513771,42.00600399906],[-71.513329,42.00591699906],[-71.513138,42.00588599906],[-71.512872,42.00584999906],[-71.512688,42.00582899906],[-71.512596,42.00577899906],[-71.512505,42.00573699906],[-71.512436,42.00572999906],[-71.512276,42.00576399906],[-71.511948,42.00596999906],[-71.511864,42.00604599906],[-71.511749,42.00614499906],[-71.510956,42.00677099906],[-71.510719,42.00691199906],[-71.510254,42.00716399906],[-71.510162,42.00720599906],[-71.510017,42.00728199906],[-71.509621,42.00747699906],[-71.509415,42.00757199906],[-71.508804,42.00778599906],[-71.508667,42.00782399906],[-71.508217,42.00796099906],[-71.50795,42.00802999906],[-71.50769,42.00809099906],[-71.506873,42.00826099906],[-71.506226,42.00839599906],[-71.505789,42.00848399906],[-71.505699,42.00849899906],[-71.505325,42.00857199906],[-71.504379,42.00873199906],[-71.504325,42.00874299906],[-71.503853,42.00883499906],[-71.503624,42.00888799906],[-71.503517,42.00892299906],[-71.50341,42.00897199906],[-71.503212,42.00908699906],[-71.503098,42.00915899906],[-71.502762,42.00940699906],[-71.502518,42.00959399906],[-71.502319,42.00976199906],[-71.502228,42.00984999906],[-71.502075,42.00999799906],[-71.501945,42.01015099906],[-71.501823,42.01030299906],[-71.502571,42.01040599906],[-71.503044,42.01045599906],[-71.503532,42.01052099906],[-71.503632,42.01053199906],[-71.504112,42.01060499906],[-71.504982,42.01062799906],[-71.505302,42.01063499906],[-71.505539,42.01063899906],[-71.506577,42.01066999906],[-71.507362,42.01069299906],[-71.508568,42.01073499906],[-71.508851,42.01074299906],[-71.509101,42.01074899906],[-71.510384,42.01079199906],[-71.510841,42.01077699906],[-71.512054,42.01070399906],[-71.512383,42.01068899906],[-71.512482,42.01068899906],[-71.513427,42.01069599906],[-71.513557,42.01069299906],[-71.514236,42.01070799906],[-71.514236,42.01062799906],[-71.514244,42.01054799906],[-71.514244,42.01047099906],[-71.514252,42.01035299906],[-71.514252,42.01023499906],[-71.514282,42.00982299906],[-71.514282,42.00970499906],[-71.514557,42.00938799906],[-71.514893,42.00901799906],[-71.514999,42.00890399906],[-71.515083,42.00877399906],[-71.515198,42.00860599906],[-71.51545,42.00827799906],[-71.515862,42.00788499906],[-71.515991,42.00775899906],[-71.51635,42.00736599906],[-71.516747,42.00676299906]]]}}"}, +{"type": "blockgroup", "typeId": 180002, "areaId": 29148, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.519275,42.00318099906],[-71.51915,42.00313899906],[-71.518982,42.00314699906],[-71.518646,42.00314699906],[-71.517616,42.00323099906],[-71.517296,42.00326199906],[-71.516823,42.00330399906],[-71.516327,42.00332599906],[-71.515999,42.00335299906],[-71.515106,42.00342599906],[-71.514969,42.00344799906],[-71.514832,42.00347899906],[-71.514397,42.00358999906],[-71.51416,42.00361599906],[-71.51403,42.00361999906],[-71.513885,42.00361299906],[-71.513756,42.00358999906],[-71.513618,42.00355499906],[-71.513512,42.00350999906],[-71.513382,42.00342599906],[-71.51331,42.00336199906],[-71.513245,42.00330399906],[-71.513084,42.00318499906],[-71.512906,42.00302599906],[-71.512805,42.00293999906],[-71.512665,42.00284599906],[-71.512552,42.00279899906],[-71.512329,42.00270499906],[-71.512022,42.00258599906],[-71.511805,42.00250099906],[-71.511422,42.00261699906],[-71.511025,42.00294399906],[-71.510516,42.00353299906],[-71.510233,42.00384499906],[-71.509653,42.00412899906],[-71.509044,42.00432299906],[-71.50851,42.00442599906],[-71.508232,42.00450299906],[-71.507389,42.00469599906],[-71.506619,42.00492099906],[-71.506131,42.00518899906],[-71.505749,42.00552499906],[-71.505246,42.00600899906],[-71.504834,42.00630499906],[-71.504338,42.00653899906],[-71.503339,42.00670999906],[-71.503327,42.00697399906],[-71.503307,42.00705299906],[-71.503312,42.00709099906],[-71.503268,42.00711199906],[-71.503062,42.00711599906],[-71.502968,42.00713899906],[-71.502861,42.00719199906],[-71.502425,42.00765299906],[-71.501833,42.00827899906],[-71.500692,42.00948499906],[-71.50071,42.00950999906],[-71.500725,42.00954099906],[-71.500763,42.00958299906],[-71.500938,42.00973899906],[-71.500969,42.00976199906],[-71.501381,42.01008199906],[-71.501518,42.01017399906],[-71.501587,42.01021199906],[-71.501663,42.01024599906],[-71.501747,42.01027299906],[-71.501823,42.01030299906],[-71.501945,42.01015099906],[-71.502075,42.00999799906],[-71.502228,42.00984999906],[-71.502319,42.00976199906],[-71.502518,42.00959399906],[-71.502762,42.00940699906],[-71.503098,42.00915899906],[-71.503212,42.00908699906],[-71.50341,42.00897199906],[-71.503517,42.00892299906],[-71.503624,42.00888799906],[-71.503853,42.00883499906],[-71.504325,42.00874299906],[-71.504379,42.00873199906],[-71.505325,42.00857199906],[-71.505699,42.00849899906],[-71.505789,42.00848399906],[-71.506226,42.00839599906],[-71.506873,42.00826099906],[-71.50769,42.00809099906],[-71.50795,42.00802999906],[-71.508217,42.00796099906],[-71.508667,42.00782399906],[-71.508804,42.00778599906],[-71.509415,42.00757199906],[-71.509621,42.00747699906],[-71.510017,42.00728199906],[-71.510162,42.00720599906],[-71.510254,42.00716399906],[-71.510719,42.00691199906],[-71.510956,42.00677099906],[-71.511749,42.00614499906],[-71.511864,42.00604599906],[-71.511948,42.00596999906],[-71.512276,42.00576399906],[-71.512436,42.00572999906],[-71.512505,42.00573699906],[-71.512596,42.00577899906],[-71.512688,42.00582899906],[-71.512872,42.00584999906],[-71.513138,42.00588599906],[-71.513329,42.00591699906],[-71.513771,42.00600399906],[-71.514023,42.00604999906],[-71.514954,42.00633999906],[-71.515121,42.00640099906],[-71.515739,42.00660699906],[-71.515976,42.00669099906],[-71.516121,42.00672899906],[-71.516243,42.00674799906],[-71.516289,42.00675599906],[-71.516319,42.00675599906],[-71.516487,42.00677099906],[-71.516539,42.00676899906],[-71.516581,42.00671499906],[-71.516675,42.00659699906],[-71.51673,42.00652699906],[-71.518118,42.00470099906],[-71.518179,42.00462199906],[-71.518303,42.00445999906],[-71.51877,42.00384599906],[-71.519275,42.00318099906]]]}}"}, +{"type": "blockgroup", "typeId": 180003, "areaId": 29149, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.520005,42.00222699906],[-71.519302,42.00220699906],[-71.518939,42.00203399906],[-71.518615,42.00180999906],[-71.518402,42.00153499906],[-71.518363,42.00114099906],[-71.518281,42.00064999906],[-71.518298,42.00032499906],[-71.518272,42.00020799906],[-71.518204,42.00004399906],[-71.517893,41.99967999906],[-71.517867,41.99952999906],[-71.517852,41.99944499906],[-71.517908,41.99933699906],[-71.518047,41.99909299906],[-71.518129,41.99894499906],[-71.517167,41.99824299906],[-71.517063,41.99813499906],[-71.516881,41.99805599906],[-71.516637,41.99795399906],[-71.516259,41.99790299906],[-71.516049,41.99795899906],[-71.515921,41.99796599906],[-71.51553,41.99801599906],[-71.515319,41.99817399906],[-71.515214,41.99839099906],[-71.514671,41.99856699906],[-71.514312,41.99885299906],[-71.51418,41.99902799906],[-71.514062,41.99922599906],[-71.513955,41.99944399906],[-71.513856,41.99957999906],[-71.513691,41.99977499906],[-71.51356,41.99994599906],[-71.513347,42.00016199906],[-71.513338,42.00018399906],[-71.513313,42.00024199906],[-71.513301,42.00026999906],[-71.512928,42.00116399906],[-71.51292,42.00117599906],[-71.512582,42.00169299906],[-71.51241,42.00199299906],[-71.512014,42.00236999906],[-71.511805,42.00250099906],[-71.512022,42.00258599906],[-71.512329,42.00270499906],[-71.512552,42.00279899906],[-71.512665,42.00284599906],[-71.512805,42.00293999906],[-71.512906,42.00302599906],[-71.513084,42.00318499906],[-71.513245,42.00330399906],[-71.51331,42.00336199906],[-71.513382,42.00342599906],[-71.513512,42.00350999906],[-71.513618,42.00355499906],[-71.513756,42.00358999906],[-71.513885,42.00361299906],[-71.51403,42.00361999906],[-71.51416,42.00361599906],[-71.514397,42.00358999906],[-71.514832,42.00347899906],[-71.514969,42.00344799906],[-71.515106,42.00342599906],[-71.515999,42.00335299906],[-71.516327,42.00332599906],[-71.516823,42.00330399906],[-71.517296,42.00326199906],[-71.517616,42.00323099906],[-71.518646,42.00314699906],[-71.518982,42.00314699906],[-71.51915,42.00313899906],[-71.519275,42.00318099906],[-71.519723,42.00259599906],[-71.519802,42.00249299906],[-71.520005,42.00222699906]]]}}"}, +{"type": "blockgroup", "typeId": 181001, "areaId": 29150, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.513427,42.01069599906],[-71.512482,42.01068899906],[-71.512383,42.01068899906],[-71.512054,42.01070399906],[-71.510841,42.01077699906],[-71.510384,42.01079199906],[-71.509101,42.01074899906],[-71.508851,42.01074299906],[-71.508568,42.01073499906],[-71.507362,42.01069299906],[-71.506577,42.01066999906],[-71.505539,42.01063899906],[-71.505302,42.01063499906],[-71.504982,42.01062799906],[-71.504112,42.01060499906],[-71.503632,42.01053199906],[-71.503532,42.01052099906],[-71.50338,42.01117699906],[-71.503357,42.01125299906],[-71.503212,42.01192099906],[-71.503067,42.01248899906],[-71.502922,42.01320599906],[-71.502911,42.01322399906],[-71.502739,42.01396899906],[-71.502586,42.01462199906],[-71.502457,42.01525499906],[-71.502289,42.01600599906],[-71.502182,42.01641799906],[-71.502129,42.01665899906],[-71.502054,42.01699099906],[-71.503128,42.01691199906],[-71.505263,42.01674799906],[-71.505728,42.01671199906],[-71.506017,42.01669799906],[-71.506306,42.01667599906],[-71.506428,42.01666699906],[-71.506859,42.01663499906],[-71.507155,42.01661299906],[-71.511446,42.01629499906],[-71.511633,42.01627999906],[-71.511689,42.01610099906],[-71.512019,42.01502599906],[-71.512182,42.01449399906],[-71.512322,42.01400499906],[-71.512498,42.01323499906],[-71.512773,42.01240599906],[-71.512881,42.01208799906],[-71.513049,42.01159399906],[-71.513143,42.01136999906],[-71.513427,42.01069599906]]]}}"}, +{"type": "blockgroup", "typeId": 181002, "areaId": 29151, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.503532,42.01052099906],[-71.503044,42.01045599906],[-71.502571,42.01040599906],[-71.501823,42.01030299906],[-71.501747,42.01027299906],[-71.501663,42.01024599906],[-71.501587,42.01021199906],[-71.501518,42.01017399906],[-71.501381,42.01008199906],[-71.500969,42.00976199906],[-71.500938,42.00973899906],[-71.500763,42.00958299906],[-71.500725,42.00954099906],[-71.50071,42.00950999906],[-71.500692,42.00948499906],[-71.500583,42.00959999906],[-71.500566,42.00962799906],[-71.500511,42.00966399906],[-71.500374,42.00981199906],[-71.500342,42.00987299906],[-71.500328,42.00992799906],[-71.500324,42.00999699906],[-71.500324,42.01024899906],[-71.500339,42.01074599906],[-71.500376,42.01105399906],[-71.500396,42.01129599906],[-71.500415,42.01136399906],[-71.500457,42.01144499906],[-71.500575,42.01158299906],[-71.500594,42.01167899906],[-71.500604,42.01188099906],[-71.500628,42.01208699906],[-71.5006,42.01218099906],[-71.500571,42.01227699906],[-71.50052,42.01269099906],[-71.50052,42.01296399906],[-71.500527,42.01310899906],[-71.500516,42.01334499906],[-71.500522,42.01350599906],[-71.500552,42.01363899906],[-71.500501,42.01378699906],[-71.500267,42.01430199906],[-71.500188,42.01440899906],[-71.500098,42.01454799906],[-71.500068,42.01467299906],[-71.500112,42.01479199906],[-71.500178,42.01487399906],[-71.500195,42.01492599906],[-71.500208,42.01504899906],[-71.500189,42.01527999906],[-71.500137,42.01533999906],[-71.500075,42.01537899906],[-71.499909,42.01541899906],[-71.499817,42.01543399906],[-71.499585,42.01546299906],[-71.499458,42.01545199906],[-71.499345,42.01542799906],[-71.499101,42.01536399906],[-71.498929,42.01532499906],[-71.498682,42.01526899906],[-71.498467,42.01520599906],[-71.498539,42.01509599906],[-71.498511,42.01504999906],[-71.498438,42.01502199906],[-71.498357,42.01501099906],[-71.498301,42.01498699906],[-71.498271,42.01493099906],[-71.498216,42.01488699906],[-71.498127,42.01487299906],[-71.498059,42.01486799906],[-71.497861,42.01487199906],[-71.497675,42.01489499906],[-71.497596,42.01492299906],[-71.497514,42.01495799906],[-71.497433,42.01498699906],[-71.497341,42.01498899906],[-71.497271,42.01497299906],[-71.497195,42.01494299906],[-71.49712,42.01491999906],[-71.497041,42.01487299906],[-71.496984,42.01483199906],[-71.496873,42.01473699906],[-71.496816,42.01467499906],[-71.496758,42.01459199906],[-71.496706,42.01448999906],[-71.496613,42.01432399906],[-71.496596,42.01429499906],[-71.496577,42.01425399906],[-71.496523,42.01420799906],[-71.496451,42.01416999906],[-71.496371,42.01415399906],[-71.496275,42.01414999906],[-71.496107,42.01415399906],[-71.495931,42.01420099906],[-71.495851,42.01422699906],[-71.495775,42.01426299906],[-71.495713,42.01429799906],[-71.495664,42.01433999906],[-71.495529,42.01447599906],[-71.495461,42.01452899906],[-71.49537,42.01454599906],[-71.49528,42.01457199906],[-71.495224,42.01460999906],[-71.495067,42.01463799906],[-71.494965,42.01464399906],[-71.494804,42.01460999906],[-71.494708,42.01458299906],[-71.494635,42.01456799906],[-71.494538,42.01454099906],[-71.494456,42.01452599906],[-71.494386,42.01449199906],[-71.494292,42.01446899906],[-71.494101,42.01444899906],[-71.493941,42.01444799906],[-71.493859,42.01445299906],[-71.493759,42.01446499906],[-71.493692,42.01448699906],[-71.493626,42.01454799906],[-71.49355,42.01465499906],[-71.493499,42.01470999906],[-71.493358,42.01483999906],[-71.493285,42.01491799906],[-71.493205,42.01497099906],[-71.493129,42.01496799906],[-71.493129,42.01489999906],[-71.493174,42.01477699906],[-71.493214,42.01471199906],[-71.493309,42.01461399906],[-71.493352,42.01455999906],[-71.493398,42.01451499906],[-71.493457,42.01447599906],[-71.493658,42.01437199906],[-71.493893,42.01428299906],[-71.493979,42.01426899906],[-71.494198,42.01424699906],[-71.494321,42.01422799906],[-71.49444,42.01418999906],[-71.49469,42.01408899906],[-71.494933,42.01397499906],[-71.495053,42.01391199906],[-71.495237,42.01382299906],[-71.495344,42.01375199906],[-71.495406,42.01366899906],[-71.495398,42.01363099906],[-71.495316,42.01358499906],[-71.495256,42.01357699906],[-71.495187,42.01356699906],[-71.495061,42.01358599906],[-71.49501,42.01364799906],[-71.494999,42.01372299906],[-71.494962,42.01378399906],[-71.494557,42.01399999906],[-71.49438,42.01409799906],[-71.494276,42.01413899906],[-71.494165,42.01417299906],[-71.494047,42.01419999906],[-71.493921,42.01420099906],[-71.493792,42.01419299906],[-71.493663,42.01421499906],[-71.493552,42.01425699906],[-71.49345,42.01430599906],[-71.493244,42.01442499906],[-71.493034,42.01456599906],[-71.492947,42.01464099906],[-71.49287,42.01471499906],[-71.492867,42.01476899906],[-71.492909,42.01481499906],[-71.492923,42.01487499906],[-71.492913,42.01493999906],[-71.492891,42.01499999906],[-71.492881,42.01505999906],[-71.492857,42.01512599906],[-71.492847,42.01519599906],[-71.492877,42.01524399906],[-71.492907,42.01524599906],[-71.492994,42.01522299906],[-71.493079,42.01521599906],[-71.493112,42.01523799906],[-71.49309,42.01536499906],[-71.493103,42.01538099906],[-71.493042,42.01552699906],[-71.493003,42.01560499906],[-71.492908,42.01570699906],[-71.492671,42.01584699906],[-71.492504,42.01590899906],[-71.492276,42.01594299906],[-71.492097,42.01601899906],[-71.492024,42.01604199906],[-71.491817,42.01616199906],[-71.491604,42.01635799906],[-71.491467,42.01651799906],[-71.491403,42.01664699906],[-71.491402,42.01679099906],[-71.491446,42.01693499906],[-71.491471,42.01705099906],[-71.491413,42.01711399906],[-71.49136,42.01718399906],[-71.491404,42.01721799906],[-71.491397,42.01723599906],[-71.491384,42.01725499906],[-71.491324,42.01737299906],[-71.492671,42.01735299906],[-71.49357,42.01733999906],[-71.494428,42.01732799906],[-71.495296,42.01731499906],[-71.496186,42.01730199906],[-71.497677,42.01728099906],[-71.498259,42.01727199906],[-71.499065,42.01721299906],[-71.499135,42.01720699906],[-71.499244,42.01719899906],[-71.501996,42.01699499906],[-71.502054,42.01699099906],[-71.502129,42.01665899906],[-71.502182,42.01641799906],[-71.502289,42.01600599906],[-71.502457,42.01525499906],[-71.502586,42.01462199906],[-71.502739,42.01396899906],[-71.502911,42.01322399906],[-71.502922,42.01320599906],[-71.503067,42.01248899906],[-71.503212,42.01192099906],[-71.503357,42.01125299906],[-71.50338,42.01117699906],[-71.503532,42.01052099906]]]}}"}, +{"type": "blockgroup", "typeId": 182001, "areaId": 29152, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.500692,42.00948499906],[-71.500671,42.00945699906],[-71.50061,42.00931499906],[-71.500587,42.00924699906],[-71.500366,42.00873599906],[-71.500244,42.00843799906],[-71.500206,42.00831199906],[-71.500092,42.00801499906],[-71.500069,42.00797299906],[-71.500038,42.00793099906],[-71.499977,42.00788499906],[-71.499893,42.00782799906],[-71.499901,42.00795699906],[-71.499969,42.00814399906],[-71.5,42.00829299906],[-71.5,42.00836599906],[-71.500008,42.00846899906],[-71.499992,42.00897599906],[-71.499992,42.00925399906],[-71.499985,42.00930399906],[-71.499962,42.00933499906],[-71.499916,42.00933799906],[-71.499092,42.00933499906],[-71.499031,42.00933099906],[-71.497955,42.00932699906],[-71.496689,42.00931199906],[-71.495773,42.00929599906],[-71.494888,42.00928499906],[-71.493988,42.00927399906],[-71.493568,42.00926999906],[-71.492897,42.00925399906],[-71.492699,42.00923899906],[-71.492531,42.01073099906],[-71.492477,42.01131599906],[-71.492432,42.01153599906],[-71.492424,42.01166199906],[-71.49239,42.01200799906],[-71.492378,42.01213499906],[-71.49231,42.01244699906],[-71.49221,42.01314499906],[-71.492134,42.01363799906],[-71.492119,42.01377099906],[-71.491989,42.01455699906],[-71.491844,42.01555299906],[-71.493042,42.01552699906],[-71.493103,42.01538099906],[-71.49309,42.01536499906],[-71.493112,42.01523799906],[-71.493079,42.01521599906],[-71.492994,42.01522299906],[-71.492907,42.01524599906],[-71.492877,42.01524399906],[-71.492847,42.01519599906],[-71.492857,42.01512599906],[-71.492881,42.01505999906],[-71.492891,42.01499999906],[-71.492913,42.01493999906],[-71.492923,42.01487499906],[-71.492909,42.01481499906],[-71.492867,42.01476899906],[-71.49287,42.01471499906],[-71.492947,42.01464099906],[-71.493034,42.01456599906],[-71.493244,42.01442499906],[-71.49345,42.01430599906],[-71.493552,42.01425699906],[-71.493663,42.01421499906],[-71.493792,42.01419299906],[-71.493921,42.01420099906],[-71.494047,42.01419999906],[-71.494165,42.01417299906],[-71.494276,42.01413899906],[-71.49438,42.01409799906],[-71.494557,42.01399999906],[-71.494962,42.01378399906],[-71.494999,42.01372299906],[-71.49501,42.01364799906],[-71.495061,42.01358599906],[-71.495187,42.01356699906],[-71.495256,42.01357699906],[-71.495316,42.01358499906],[-71.495398,42.01363099906],[-71.495406,42.01366899906],[-71.495344,42.01375199906],[-71.495237,42.01382299906],[-71.495053,42.01391199906],[-71.494933,42.01397499906],[-71.49469,42.01408899906],[-71.49444,42.01418999906],[-71.494321,42.01422799906],[-71.494198,42.01424699906],[-71.493979,42.01426899906],[-71.493893,42.01428299906],[-71.493658,42.01437199906],[-71.493457,42.01447599906],[-71.493398,42.01451499906],[-71.493352,42.01455999906],[-71.493309,42.01461399906],[-71.493214,42.01471199906],[-71.493174,42.01477699906],[-71.493129,42.01489999906],[-71.493129,42.01496799906],[-71.493205,42.01497099906],[-71.493285,42.01491799906],[-71.493358,42.01483999906],[-71.493499,42.01470999906],[-71.49355,42.01465499906],[-71.493626,42.01454799906],[-71.493692,42.01448699906],[-71.493759,42.01446499906],[-71.493859,42.01445299906],[-71.493941,42.01444799906],[-71.494101,42.01444899906],[-71.494292,42.01446899906],[-71.494386,42.01449199906],[-71.494456,42.01452599906],[-71.494538,42.01454099906],[-71.494635,42.01456799906],[-71.494708,42.01458299906],[-71.494804,42.01460999906],[-71.494965,42.01464399906],[-71.495067,42.01463799906],[-71.495224,42.01460999906],[-71.49528,42.01457199906],[-71.49537,42.01454599906],[-71.495461,42.01452899906],[-71.495529,42.01447599906],[-71.495664,42.01433999906],[-71.495713,42.01429799906],[-71.495775,42.01426299906],[-71.495851,42.01422699906],[-71.495931,42.01420099906],[-71.496107,42.01415399906],[-71.496275,42.01414999906],[-71.496371,42.01415399906],[-71.496451,42.01416999906],[-71.496523,42.01420799906],[-71.496577,42.01425399906],[-71.496596,42.01429499906],[-71.496613,42.01432399906],[-71.496706,42.01448999906],[-71.496758,42.01459199906],[-71.496816,42.01467499906],[-71.496873,42.01473699906],[-71.496984,42.01483199906],[-71.497041,42.01487299906],[-71.49712,42.01491999906],[-71.497195,42.01494299906],[-71.497271,42.01497299906],[-71.497341,42.01498899906],[-71.497433,42.01498699906],[-71.497514,42.01495799906],[-71.497596,42.01492299906],[-71.497675,42.01489499906],[-71.497861,42.01487199906],[-71.498059,42.01486799906],[-71.498127,42.01487299906],[-71.498216,42.01488699906],[-71.498271,42.01493099906],[-71.498301,42.01498699906],[-71.498357,42.01501099906],[-71.498438,42.01502199906],[-71.498511,42.01504999906],[-71.498539,42.01509599906],[-71.498467,42.01520599906],[-71.498682,42.01526899906],[-71.498929,42.01532499906],[-71.499101,42.01536399906],[-71.499345,42.01542799906],[-71.499458,42.01545199906],[-71.499585,42.01546299906],[-71.499817,42.01543399906],[-71.499909,42.01541899906],[-71.500075,42.01537899906],[-71.500137,42.01533999906],[-71.500189,42.01527999906],[-71.500208,42.01504899906],[-71.500195,42.01492599906],[-71.500178,42.01487399906],[-71.500112,42.01479199906],[-71.500068,42.01467299906],[-71.500098,42.01454799906],[-71.500188,42.01440899906],[-71.500267,42.01430199906],[-71.500501,42.01378699906],[-71.500552,42.01363899906],[-71.500522,42.01350599906],[-71.500516,42.01334499906],[-71.500527,42.01310899906],[-71.50052,42.01296399906],[-71.50052,42.01269099906],[-71.500571,42.01227699906],[-71.5006,42.01218099906],[-71.500628,42.01208699906],[-71.500604,42.01188099906],[-71.500594,42.01167899906],[-71.500575,42.01158299906],[-71.500457,42.01144499906],[-71.500415,42.01136399906],[-71.500396,42.01129599906],[-71.500376,42.01105399906],[-71.500339,42.01074599906],[-71.500324,42.01024899906],[-71.500324,42.00999699906],[-71.500328,42.00992799906],[-71.500342,42.00987299906],[-71.500374,42.00981199906],[-71.500511,42.00966399906],[-71.500566,42.00962799906],[-71.500583,42.00959999906],[-71.500692,42.00948499906]]]}}"}, +{"type": "blockgroup", "typeId": 182002, "areaId": 29153, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.500008,42.00846899906],[-71.5,42.00836599906],[-71.5,42.00829299906],[-71.499969,42.00814399906],[-71.499901,42.00795699906],[-71.499893,42.00782799906],[-71.499786,42.00774399906],[-71.499634,42.00764099906],[-71.499298,42.00743899906],[-71.499222,42.00740099906],[-71.499084,42.00735499906],[-71.499046,42.00733599906],[-71.499001,42.00731999906],[-71.498856,42.00725599906],[-71.498795,42.00723299906],[-71.498024,42.00725899906],[-71.49713,42.00750199906],[-71.496895,42.00756099906],[-71.496712,42.00758599906],[-71.496554,42.00759999906],[-71.495824,42.00761399906],[-71.495781,42.00760299906],[-71.495231,42.00761399906],[-71.494911,42.00760299906],[-71.494232,42.00760299906],[-71.494034,42.00760999906],[-71.493874,42.00761799906],[-71.493668,42.00764799906],[-71.493599,42.00766399906],[-71.493462,42.00770599906],[-71.493393,42.00773199906],[-71.492867,42.00789599906],[-71.492653,42.00796099906],[-71.492279,42.00807999906],[-71.492188,42.00811399906],[-71.492096,42.00813299906],[-71.491951,42.00813699906],[-71.491707,42.00812499906],[-71.491447,42.00809499906],[-71.491394,42.00808299906],[-71.491341,42.00807599906],[-71.491257,42.00805299906],[-71.491089,42.00799599906],[-71.490097,42.00765199906],[-71.490028,42.00763699906],[-71.489883,42.00758699906],[-71.489815,42.00755699906],[-71.489746,42.00752999906],[-71.489708,42.00750699906],[-71.489502,42.00785099906],[-71.489326,42.00812099906],[-71.489166,42.00836599906],[-71.489029,42.00858699906],[-71.490242,42.00907499906],[-71.491405,42.00989799906],[-71.491662,42.01024499906],[-71.491693,42.01027499906],[-71.49183,42.01040499906],[-71.491998,42.01058099906],[-71.492477,42.01131599906],[-71.492531,42.01073099906],[-71.492699,42.00923899906],[-71.492897,42.00925399906],[-71.493568,42.00926999906],[-71.493988,42.00927399906],[-71.494888,42.00928499906],[-71.495773,42.00929599906],[-71.496689,42.00931199906],[-71.497955,42.00932699906],[-71.499031,42.00933099906],[-71.499092,42.00933499906],[-71.499916,42.00933799906],[-71.499962,42.00933499906],[-71.499985,42.00930399906],[-71.499992,42.00925399906],[-71.499992,42.00897599906],[-71.500008,42.00846899906]]]}}"}, +{"type": "blockgroup", "typeId": 183001, "areaId": 29154, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.503339,42.00670999906],[-71.502847,42.00660599906],[-71.50236,42.00646999906],[-71.501831,42.00630699906],[-71.501347,42.00602899906],[-71.50095,42.00575699906],[-71.50083,42.00566099906],[-71.499899,42.00497799906],[-71.499609,42.00467599906],[-71.499205,42.00419799906],[-71.498534,42.00361699906],[-71.498218,42.00310899906],[-71.497987,42.00313699906],[-71.497562,42.00318799906],[-71.497375,42.00321199906],[-71.497307,42.00321199906],[-71.497231,42.00319699906],[-71.497093,42.00318099906],[-71.497169,42.00332599906],[-71.497215,42.00338699906],[-71.497253,42.00344799906],[-71.497391,42.00362399906],[-71.49752,42.00375399906],[-71.497589,42.00381499906],[-71.49852,42.00452399906],[-71.49871,42.00470599906],[-71.498718,42.00472299906],[-71.498734,42.00473799906],[-71.498756,42.00478399906],[-71.498764,42.00481399906],[-71.498764,42.00484499906],[-71.498749,42.00487499906],[-71.498726,42.00490199906],[-71.498695,42.00492499906],[-71.498657,42.00494399906],[-71.498474,42.00500099906],[-71.498283,42.00504299906],[-71.497993,42.00507699906],[-71.497858,42.00509499906],[-71.497093,42.00519599906],[-71.496536,42.00526799906],[-71.495245,42.00543199906],[-71.494553,42.00551999906],[-71.493713,42.00558099906],[-71.493124,42.00561099906],[-71.492981,42.00561899906],[-71.49173,42.00569199906],[-71.491142,42.00572199906],[-71.490402,42.00575599906],[-71.49025,42.00576799906],[-71.489574,42.00580599906],[-71.489471,42.00581199906],[-71.489011,42.00583799906],[-71.488487,42.00586699906],[-71.488373,42.00587099906],[-71.488251,42.00585899906],[-71.488045,42.00581399906],[-71.487885,42.00577199906],[-71.48761,42.00567999906],[-71.487511,42.00565699906],[-71.48793,42.00606899906],[-71.48864,42.00664499906],[-71.488663,42.00665999906],[-71.489166,42.00710299906],[-71.489204,42.00713699906],[-71.489235,42.00717199906],[-71.489632,42.00746199906],[-71.489708,42.00750699906],[-71.489746,42.00752999906],[-71.489815,42.00755699906],[-71.489883,42.00758699906],[-71.490028,42.00763699906],[-71.490097,42.00765199906],[-71.491089,42.00799599906],[-71.491257,42.00805299906],[-71.491341,42.00807599906],[-71.491394,42.00808299906],[-71.491447,42.00809499906],[-71.491707,42.00812499906],[-71.491951,42.00813699906],[-71.492096,42.00813299906],[-71.492188,42.00811399906],[-71.492279,42.00807999906],[-71.492653,42.00796099906],[-71.492867,42.00789599906],[-71.493393,42.00773199906],[-71.493462,42.00770599906],[-71.493599,42.00766399906],[-71.493668,42.00764799906],[-71.493874,42.00761799906],[-71.494034,42.00760999906],[-71.494232,42.00760299906],[-71.494911,42.00760299906],[-71.495231,42.00761399906],[-71.495781,42.00760299906],[-71.495824,42.00761399906],[-71.496554,42.00759999906],[-71.496712,42.00758599906],[-71.496895,42.00756099906],[-71.49713,42.00750199906],[-71.498024,42.00725899906],[-71.498795,42.00723299906],[-71.498856,42.00725599906],[-71.499001,42.00731999906],[-71.499046,42.00733599906],[-71.499084,42.00735499906],[-71.499222,42.00740099906],[-71.499298,42.00743899906],[-71.499634,42.00764099906],[-71.499786,42.00774399906],[-71.499893,42.00782799906],[-71.499977,42.00788499906],[-71.500038,42.00793099906],[-71.500069,42.00797299906],[-71.500092,42.00801499906],[-71.500206,42.00831199906],[-71.500244,42.00843799906],[-71.500366,42.00873599906],[-71.500587,42.00924699906],[-71.50061,42.00931499906],[-71.500671,42.00945699906],[-71.500692,42.00948499906],[-71.501833,42.00827899906],[-71.502425,42.00765299906],[-71.502861,42.00719199906],[-71.502968,42.00713899906],[-71.503062,42.00711599906],[-71.503268,42.00711199906],[-71.503312,42.00709099906],[-71.503307,42.00705299906],[-71.503327,42.00697399906],[-71.503339,42.00670999906]]]}}"}, +{"type": "blockgroup", "typeId": 184001, "areaId": 29155, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.486435,42.01144799906],[-71.486382,42.01132199906],[-71.48629,42.01115399906],[-71.486252,42.01106999906],[-71.486198,42.01098299906],[-71.486153,42.01089499906],[-71.486115,42.01080299906],[-71.486092,42.01070799906],[-71.486061,42.01050899906],[-71.486058,42.01048399906],[-71.486015,42.01007499906],[-71.48597,42.00979599906],[-71.485901,42.00948699906],[-71.485901,42.00945999906],[-71.485832,42.00918599906],[-71.485832,42.00916699906],[-71.485756,42.00882699906],[-71.485718,42.00868199906],[-71.485687,42.00853699906],[-71.485649,42.00838899906],[-71.485649,42.00836599906],[-71.485626,42.00828599906],[-71.485619,42.00823599906],[-71.485657,42.00790399906],[-71.485672,42.00776699906],[-71.48568,42.00762899906],[-71.485695,42.00754899906],[-71.485725,42.00733199906],[-71.485741,42.00706899906],[-71.485752,42.00659799906],[-71.485764,42.00605399906],[-71.485786,42.00583599906],[-71.485901,42.00524899906],[-71.485865,42.00523599906],[-71.485085,42.00504299906],[-71.484651,42.00492799906],[-71.483871,42.00472299906],[-71.483635,42.00468399906],[-71.48343,42.00462499906],[-71.48317,42.00455099906],[-71.482857,42.00448199906],[-71.482529,42.00441699906],[-71.482147,42.00433699906],[-71.481674,42.00424599906],[-71.481216,42.00415399906],[-71.480919,42.00410099906],[-71.480804,42.00407799906],[-71.479836,42.00389899906],[-71.479752,42.00399799906],[-71.479568,42.00419199906],[-71.479431,42.00431799906],[-71.478928,42.00471899906],[-71.478699,42.00490599906],[-71.478516,42.00506599906],[-71.478279,42.00530199906],[-71.478134,42.00548199906],[-71.478058,42.00558499906],[-71.477989,42.00568799906],[-71.477928,42.00579099906],[-71.477875,42.00589799906],[-71.477699,42.00620999906],[-71.477642,42.00632199906],[-71.477608,42.00638999906],[-71.477531,42.00652699906],[-71.47744,42.00671799906],[-71.477394,42.00680199906],[-71.477356,42.00688899906],[-71.477325,42.00698099906],[-71.477318,42.00702699906],[-71.477295,42.00711399906],[-71.477272,42.00727499906],[-71.477272,42.00748099906],[-71.47728,42.00759099906],[-71.477333,42.00797299906],[-71.477379,42.00826599906],[-71.477379,42.00829299906],[-71.477417,42.00860199906],[-71.477432,42.00876999906],[-71.477455,42.00894199906],[-71.47747,42.00911299906],[-71.477539,42.00960899906],[-71.477562,42.00973099906],[-71.477577,42.00985299906],[-71.477638,42.01011299906],[-71.477829,42.01066199906],[-71.47789,42.01079899906],[-71.477898,42.01083399906],[-71.477913,42.01086799906],[-71.478111,42.01130699906],[-71.478126,42.01135299906],[-71.478142,42.01140599906],[-71.478294,42.01179099906],[-71.478394,42.01198599906],[-71.478462,42.01208499906],[-71.478561,42.01222199906],[-71.478752,42.01242399906],[-71.479042,42.01267599906],[-71.479256,42.01287099906],[-71.479668,42.01322899906],[-71.479797,42.01334799906],[-71.479866,42.01340499906],[-71.481323,42.01296199906],[-71.4814,42.01293899906],[-71.482147,42.01271399906],[-71.483116,42.01242099906],[-71.483955,42.01218399906],[-71.484421,42.01203899906],[-71.486435,42.01144799906]]]}}"}, +{"type": "blockgroup", "typeId": 184002, "areaId": 29156, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.483784,42.01748099906],[-71.483689,42.01739499906],[-71.483672,42.01737899906],[-71.483565,42.01732599906],[-71.483498,42.01728399906],[-71.483284,42.01714699906],[-71.483215,42.01708999906],[-71.483086,42.01696799906],[-71.483025,42.01688399906],[-71.482979,42.01679599906],[-71.482925,42.01670799906],[-71.482803,42.01655999906],[-71.482765,42.01650999906],[-71.482712,42.01645299906],[-71.482577,42.01632599906],[-71.482483,42.01623899906],[-71.482452,42.01621999906],[-71.482246,42.01604099906],[-71.482066,42.01590499906],[-71.48202,42.01587399906],[-71.481966,42.01582399906],[-71.481239,42.01583899906],[-71.479743,42.01584699906],[-71.479199,42.01582799906],[-71.478931,42.01581199906],[-71.478379,42.01576599906],[-71.477151,42.01564699906],[-71.476232,42.01557399906],[-71.475238,42.01548099906],[-71.474554,42.01541799906],[-71.473656,42.01532099906],[-71.473343,42.01529299906],[-71.47312,42.01526599906],[-71.472312,42.01518899906],[-71.471884,42.01514299906],[-71.470184,42.01497799906],[-71.467948,42.01475299906],[-71.467529,42.01471399906],[-71.466499,42.01460899906],[-71.466565,42.01425799906],[-71.466588,42.01414399906],[-71.466614,42.01396099906],[-71.466653,42.01369099906],[-71.466675,42.01359299906],[-71.466675,42.01357299906],[-71.466713,42.01340099906],[-71.466759,42.01312299906],[-71.466789,42.01282099906],[-71.466797,42.01258499906],[-71.466774,42.01226799906],[-71.466751,42.01216899906],[-71.466667,42.01185999906],[-71.466591,42.01167299906],[-71.466507,42.01149399906],[-71.466438,42.01131399906],[-71.466331,42.01114699906],[-71.465958,42.01071499906],[-71.465904,42.01067399906],[-71.465691,42.01048999906],[-71.465225,42.01016199906],[-71.464897,42.00998299906],[-71.464661,42.00986899906],[-71.46434,42.00975399906],[-71.46402,42.00965499906],[-71.463745,42.00958599906],[-71.463524,42.00955599906],[-71.462975,42.00953699906],[-71.462669,42.00955999906],[-71.462433,42.00959799906],[-71.462189,42.00966299906],[-71.461899,42.00976199906],[-71.461685,42.00985299906],[-71.461639,42.00987599906],[-71.461372,42.01002899906],[-71.461128,42.01021999906],[-71.460922,42.01042199906],[-71.460739,42.01066199906],[-71.46064,42.01083799906],[-71.460091,42.01068499906],[-71.459297,42.01055099906],[-71.459244,42.01085699906],[-71.459183,42.01141399906],[-71.459175,42.01148599906],[-71.459145,42.01163099906],[-71.459122,42.01191299906],[-71.459076,42.01214199906],[-71.459068,42.01221499906],[-71.459045,42.01229099906],[-71.45903,42.01237099906],[-71.459007,42.01244699906],[-71.458977,42.01259999906],[-71.458908,42.01290099906],[-71.458878,42.01303899906],[-71.458832,42.01331299906],[-71.458794,42.01345399906],[-71.458755,42.01363399906],[-71.458733,42.01381299906],[-71.458733,42.01388499906],[-71.458725,42.01395799906],[-71.458542,42.01468299906],[-71.458423,42.01552499906],[-71.458414,42.01558899906],[-71.458402,42.01567399906],[-71.458336,42.01615099906],[-71.458321,42.01632299906],[-71.458313,42.01634999906],[-71.458313,42.01641099906],[-71.458282,42.01671999906],[-71.458237,42.01727299906],[-71.458214,42.01747899906],[-71.458157,42.01764799906],[-71.458104,42.01779799906],[-71.463456,42.01773199906],[-71.465467,42.01770799906],[-71.473124,42.01762099906],[-71.481929,42.01751699906],[-71.481971,42.01750799906],[-71.482743,42.01749599906],[-71.483784,42.01748099906]]]}}"}, +{"type": "blockgroup", "typeId": 184003, "areaId": 29157, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.493042,42.01552699906],[-71.491844,42.01555299906],[-71.491989,42.01455699906],[-71.492119,42.01377099906],[-71.492134,42.01363799906],[-71.49221,42.01314499906],[-71.49231,42.01244699906],[-71.492378,42.01213499906],[-71.49239,42.01200799906],[-71.492424,42.01166199906],[-71.492432,42.01153599906],[-71.492477,42.01131599906],[-71.491998,42.01058099906],[-71.49183,42.01040499906],[-71.491693,42.01027499906],[-71.491662,42.01024499906],[-71.491405,42.00989799906],[-71.490242,42.00907499906],[-71.489029,42.00858699906],[-71.489166,42.00836599906],[-71.489326,42.00812099906],[-71.489502,42.00785099906],[-71.489708,42.00750699906],[-71.489632,42.00746199906],[-71.489235,42.00717199906],[-71.489204,42.00713699906],[-71.489166,42.00710299906],[-71.488663,42.00665999906],[-71.48864,42.00664499906],[-71.48793,42.00606899906],[-71.487511,42.00565699906],[-71.487175,42.00556899906],[-71.485901,42.00524899906],[-71.485786,42.00583599906],[-71.485764,42.00605399906],[-71.485752,42.00659799906],[-71.485741,42.00706899906],[-71.485725,42.00733199906],[-71.485695,42.00754899906],[-71.48568,42.00762899906],[-71.485672,42.00776699906],[-71.485657,42.00790399906],[-71.485619,42.00823599906],[-71.485626,42.00828599906],[-71.485649,42.00836599906],[-71.485649,42.00838899906],[-71.485687,42.00853699906],[-71.485718,42.00868199906],[-71.485756,42.00882699906],[-71.485832,42.00916699906],[-71.485832,42.00918599906],[-71.485901,42.00945999906],[-71.485901,42.00948699906],[-71.48597,42.00979599906],[-71.486015,42.01007499906],[-71.486058,42.01048399906],[-71.486061,42.01050899906],[-71.486092,42.01070799906],[-71.486115,42.01080299906],[-71.486153,42.01089499906],[-71.486198,42.01098299906],[-71.486252,42.01106999906],[-71.48629,42.01115399906],[-71.486382,42.01132199906],[-71.486435,42.01144799906],[-71.484421,42.01203899906],[-71.483955,42.01218399906],[-71.483116,42.01242099906],[-71.482147,42.01271399906],[-71.4814,42.01293899906],[-71.481323,42.01296199906],[-71.479866,42.01340499906],[-71.479996,42.01351899906],[-71.480067,42.01358899906],[-71.480271,42.01379099906],[-71.480354,42.01388499906],[-71.480453,42.01401499906],[-71.480637,42.01428599906],[-71.480659,42.01433199906],[-71.480705,42.01439699906],[-71.480766,42.01450699906],[-71.480835,42.01461399906],[-71.480919,42.01470899906],[-71.480995,42.01480499906],[-71.481087,42.01489599906],[-71.481552,42.01540199906],[-71.481966,42.01582399906],[-71.48202,42.01587399906],[-71.482066,42.01590499906],[-71.482246,42.01604099906],[-71.482452,42.01621999906],[-71.482483,42.01623899906],[-71.482577,42.01632599906],[-71.482712,42.01645299906],[-71.482765,42.01650999906],[-71.482803,42.01655999906],[-71.482925,42.01670799906],[-71.482979,42.01679599906],[-71.483025,42.01688399906],[-71.483086,42.01696799906],[-71.483215,42.01708999906],[-71.483284,42.01714699906],[-71.483498,42.01728399906],[-71.483565,42.01732599906],[-71.483672,42.01737899906],[-71.483689,42.01739499906],[-71.483784,42.01748099906],[-71.484841,42.01746599906],[-71.485368,42.01745899906],[-71.485487,42.01745899906],[-71.486652,42.01744099906],[-71.489389,42.01740099906],[-71.491324,42.01737299906],[-71.491384,42.01725499906],[-71.491397,42.01723599906],[-71.491404,42.01721799906],[-71.49136,42.01718399906],[-71.491413,42.01711399906],[-71.491471,42.01705099906],[-71.491446,42.01693499906],[-71.491402,42.01679099906],[-71.491403,42.01664699906],[-71.491467,42.01651799906],[-71.491604,42.01635799906],[-71.491817,42.01616199906],[-71.492024,42.01604199906],[-71.492097,42.01601899906],[-71.492276,42.01594299906],[-71.492504,42.01590899906],[-71.492671,42.01584699906],[-71.492908,42.01570699906],[-71.493003,42.01560499906],[-71.493042,42.01552699906]]]}}"}, +{"type": "blockgroup", "typeId": 184004, "areaId": 29158, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.481966,42.01582399906],[-71.481552,42.01540199906],[-71.481087,42.01489599906],[-71.480995,42.01480499906],[-71.480919,42.01470899906],[-71.480835,42.01461399906],[-71.480766,42.01450699906],[-71.480705,42.01439699906],[-71.480659,42.01433199906],[-71.480637,42.01428599906],[-71.480453,42.01401499906],[-71.480354,42.01388499906],[-71.480271,42.01379099906],[-71.480067,42.01358899906],[-71.479996,42.01351899906],[-71.479866,42.01340499906],[-71.479797,42.01334799906],[-71.479668,42.01322899906],[-71.479256,42.01287099906],[-71.479042,42.01267599906],[-71.478752,42.01242399906],[-71.478561,42.01222199906],[-71.478462,42.01208499906],[-71.478394,42.01198599906],[-71.478294,42.01179099906],[-71.478142,42.01140599906],[-71.478126,42.01135299906],[-71.478111,42.01130699906],[-71.477913,42.01086799906],[-71.477898,42.01083399906],[-71.47789,42.01079899906],[-71.477829,42.01066199906],[-71.477638,42.01011299906],[-71.477577,42.00985299906],[-71.477562,42.00973099906],[-71.477539,42.00960899906],[-71.47747,42.00911299906],[-71.477455,42.00894199906],[-71.477432,42.00876999906],[-71.477417,42.00860199906],[-71.477379,42.00829299906],[-71.477379,42.00826599906],[-71.477333,42.00797299906],[-71.47728,42.00759099906],[-71.477272,42.00748099906],[-71.477272,42.00727499906],[-71.477295,42.00711399906],[-71.477318,42.00702699906],[-71.477325,42.00698099906],[-71.477356,42.00688899906],[-71.477394,42.00680199906],[-71.47744,42.00671799906],[-71.477531,42.00652699906],[-71.477608,42.00638999906],[-71.477642,42.00632199906],[-71.477699,42.00620999906],[-71.477875,42.00589799906],[-71.477928,42.00579099906],[-71.477989,42.00568799906],[-71.478058,42.00558499906],[-71.478134,42.00548199906],[-71.478279,42.00530199906],[-71.478516,42.00506599906],[-71.478699,42.00490599906],[-71.478928,42.00471899906],[-71.479431,42.00431799906],[-71.479568,42.00419199906],[-71.479752,42.00399799906],[-71.479836,42.00389899906],[-71.480034,42.00357799906],[-71.480118,42.00340699906],[-71.48024,42.00307099906],[-71.480385,42.00247999906],[-71.480388,42.00244299906],[-71.480251,42.00245899906],[-71.480196,42.00249899906],[-71.480128,42.00253799906],[-71.480054,42.00255799906],[-71.479812,42.00254799906],[-71.479736,42.00253499906],[-71.479421,42.00253599906],[-71.4787,42.00322799906],[-71.478688,42.00337599906],[-71.478701,42.00355999906],[-71.478631,42.00364599906],[-71.478605,42.00367699906],[-71.478584,42.00370399906],[-71.478438,42.00364399906],[-71.478353,42.00362499906],[-71.478283,42.00364399906],[-71.478117,42.00377499906],[-71.477961,42.00392099906],[-71.477918,42.00398299906],[-71.477912,42.00404699906],[-71.477936,42.00406399906],[-71.477811,42.00412999906],[-71.477797,42.00411499906],[-71.477723,42.00411599906],[-71.477558,42.00415199906],[-71.477487,42.00417699906],[-71.477432,42.00421499906],[-71.477381,42.00426499906],[-71.477338,42.00431799906],[-71.477308,42.00437799906],[-71.477281,42.00450699906],[-71.477223,42.00457599906],[-71.477092,42.00456299906],[-71.47695,42.00455999906],[-71.476837,42.00456199906],[-71.47667,42.00457299906],[-71.476547,42.00457499906],[-71.476491,42.00457499906],[-71.476421,42.00456099906],[-71.476368,42.00451799906],[-71.476284,42.00434299906],[-71.476242,42.00427999906],[-71.476193,42.00421899906],[-71.476115,42.00410799906],[-71.476051,42.00399399906],[-71.476003,42.00392599906],[-71.475962,42.00385799906],[-71.475902,42.00373499906],[-71.475879,42.00366999906],[-71.475832,42.00362199906],[-71.475769,42.00357699906],[-71.475695,42.00353999906],[-71.475615,42.00350899906],[-71.47544,42.00342999906],[-71.475293,42.00337699906],[-71.475097,42.00328799906],[-71.47502,42.00323199906],[-71.474881,42.00311999906],[-71.474823,42.00295099906],[-71.474732,42.00284899906],[-71.474603,42.00276299906],[-71.474421,42.00253399906],[-71.474391,42.00246099906],[-71.474394,42.00238999906],[-71.474341,42.00226999906],[-71.474306,42.00221799906],[-71.474246,42.00219799906],[-71.474069,42.00220099906],[-71.473989,42.00222599906],[-71.473901,42.00224699906],[-71.473808,42.00223899906],[-71.473737,42.00221699906],[-71.473631,42.00220699906],[-71.473533,42.00223999906],[-71.473429,42.00223999906],[-71.473359,42.00225899906],[-71.473264,42.00229099906],[-71.473168,42.00230599906],[-71.47309,42.00230699906],[-71.47303,42.00225599906],[-71.472978,42.00219999906],[-71.472923,42.00219099906],[-71.472862,42.00221999906],[-71.472795,42.00224399906],[-71.472718,42.00225299906],[-71.472643,42.00227599906],[-71.472591,42.00232299906],[-71.472426,42.00249499906],[-71.47237,42.00252899906],[-71.47223,42.00258299906],[-71.472136,42.00260599906],[-71.472039,42.00261599906],[-71.471962,42.00260299906],[-71.471882,42.00259699906],[-71.471733,42.00252999906],[-71.471533,42.00241699906],[-71.471422,42.00233299906],[-71.471332,42.00224399906],[-71.471283,42.00220199906],[-71.471221,42.00216399906],[-71.471077,42.00208799906],[-71.470997,42.00205299906],[-71.47092,42.00204699906],[-71.470852,42.00207999906],[-71.470774,42.00211199906],[-71.470691,42.00210299906],[-71.470605,42.00205699906],[-71.470524,42.00200599906],[-71.470461,42.00194999906],[-71.470396,42.00190499906],[-71.470306,42.00188199906],[-71.470233,42.00187799906],[-71.470155,42.00185699906],[-71.47,42.00182399906],[-71.469895,42.00180899906],[-71.469738,42.00177399906],[-71.469474,42.00177299906],[-71.469396,42.00177999906],[-71.469309,42.00179999906],[-71.469058,42.00187499906],[-71.46899,42.00190899906],[-71.468967,42.00194099906],[-71.468908,42.00197599906],[-71.468847,42.00201899906],[-71.46881,42.00206699906],[-71.468757,42.00211299906],[-71.46869,42.00215899906],[-71.468637,42.00220799906],[-71.468577,42.00225199906],[-71.46851,42.00228699906],[-71.468433,42.00231999906],[-71.468199,42.00239799906],[-71.467971,42.00248999906],[-71.467815,42.00256699906],[-71.467634,42.00264499906],[-71.467388,42.00272899906],[-71.467305,42.00276999906],[-71.467237,42.00281199906],[-71.467181,42.00286099906],[-71.467149,42.00291899906],[-71.467071,42.00301799906],[-71.467008,42.00304599906],[-71.466928,42.00305099906],[-71.466762,42.00304999906],[-71.466681,42.00303999906],[-71.466592,42.00303899906],[-71.466518,42.00305499906],[-71.466368,42.00311699906],[-71.46629,42.00312499906],[-71.466207,42.00312699906],[-71.465979,42.00314899906],[-71.465753,42.00319499906],[-71.465421,42.00323599906],[-71.465338,42.00325899906],[-71.465319,42.00330199906],[-71.465322,42.00358499906],[-71.465284,42.00360299906],[-71.465253,42.00361899906],[-71.465169,42.00362299906],[-71.464977,42.00358099906],[-71.464889,42.00355499906],[-71.464817,42.00352699906],[-71.464739,42.00352399906],[-71.464651,42.00354399906],[-71.464577,42.00359399906],[-71.464513,42.00364699906],[-71.464423,42.00365999906],[-71.464347,42.00365099906],[-71.464276,42.00361899906],[-71.464198,42.00358999906],[-71.464114,42.00357599906],[-71.464081,42.00358399906],[-71.464043,42.00359299906],[-71.463953,42.00359999906],[-71.463867,42.00360099906],[-71.463793,42.00359599906],[-71.463733,42.00358599906],[-71.461449,42.00595299906],[-71.460566,42.00686899906],[-71.460167,42.00728299906],[-71.459891,42.00756999906],[-71.459877,42.00772099906],[-71.459846,42.00777099906],[-71.459793,42.00797299906],[-71.459747,42.00832399906],[-71.459747,42.00835799906],[-71.459686,42.00873899906],[-71.459641,42.00910199906],[-71.459488,42.00975799906],[-71.459351,42.01022299906],[-71.459297,42.01055099906],[-71.460091,42.01068499906],[-71.46064,42.01083799906],[-71.460739,42.01066199906],[-71.460922,42.01042199906],[-71.461128,42.01021999906],[-71.461372,42.01002899906],[-71.461639,42.00987599906],[-71.461685,42.00985299906],[-71.461899,42.00976199906],[-71.462189,42.00966299906],[-71.462433,42.00959799906],[-71.462669,42.00955999906],[-71.462975,42.00953699906],[-71.463524,42.00955599906],[-71.463745,42.00958599906],[-71.46402,42.00965499906],[-71.46434,42.00975399906],[-71.464661,42.00986899906],[-71.464897,42.00998299906],[-71.465225,42.01016199906],[-71.465691,42.01048999906],[-71.465904,42.01067399906],[-71.465958,42.01071499906],[-71.466331,42.01114699906],[-71.466438,42.01131399906],[-71.466507,42.01149399906],[-71.466591,42.01167299906],[-71.466667,42.01185999906],[-71.466751,42.01216899906],[-71.466774,42.01226799906],[-71.466797,42.01258499906],[-71.466789,42.01282099906],[-71.466759,42.01312299906],[-71.466713,42.01340099906],[-71.466675,42.01357299906],[-71.466675,42.01359299906],[-71.466653,42.01369099906],[-71.466614,42.01396099906],[-71.466588,42.01414399906],[-71.466565,42.01425799906],[-71.466499,42.01460899906],[-71.467529,42.01471399906],[-71.467948,42.01475299906],[-71.470184,42.01497799906],[-71.471884,42.01514299906],[-71.472312,42.01518899906],[-71.47312,42.01526599906],[-71.473343,42.01529299906],[-71.473656,42.01532099906],[-71.474554,42.01541799906],[-71.475238,42.01548099906],[-71.476232,42.01557399906],[-71.477151,42.01564699906],[-71.478379,42.01576599906],[-71.478931,42.01581199906],[-71.479199,42.01582799906],[-71.479743,42.01584699906],[-71.481239,42.01583899906],[-71.481966,42.01582399906]]]}}"}, +{"type": "blockgroup", "typeId": 185001, "areaId": 29159, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.498218,42.00310899906],[-71.498175,42.00303999906],[-71.498094,42.00272799906],[-71.498045,42.00226199906],[-71.497938,42.00175099906],[-71.497742,42.00110299906],[-71.497361,42.00021899906],[-71.49728,42.00007999906],[-71.497106,41.99980099906],[-71.496403,41.99919699906],[-71.495601,41.99873899906],[-71.495229,41.99836899906],[-71.494757,41.99798699906],[-71.494291,41.99744599906],[-71.49388,41.99686599906],[-71.493546,41.99632499906],[-71.493166,41.99568099906],[-71.492893,41.99511699906],[-71.492794,41.99458699906],[-71.492658,41.99408799906],[-71.492379,41.99369199906],[-71.491883,41.99159299906],[-71.491486,41.98989299906],[-71.491593,41.98838199906],[-71.49108,41.98691499906],[-71.490765,41.98601299906],[-71.488998,41.98299599906],[-71.488202,41.98059799906],[-71.487464,41.97926599906],[-71.487364,41.97908499906],[-71.487243,41.97921099906],[-71.4872,41.97925599906],[-71.486963,41.97949899906],[-71.486799,41.97967299906],[-71.483158,41.98344499906],[-71.483126,41.98347799906],[-71.482857,41.98375799906],[-71.482556,41.98407199906],[-71.482247,41.98438899906],[-71.482141,41.98449999906],[-71.482104,41.98453999906],[-71.481279,41.98539399906],[-71.481223,41.98545499906],[-71.481063,41.98561699906],[-71.481022,41.98565799906],[-71.480865,41.98582099906],[-71.480454,41.98624799906],[-71.480427,41.98627499906],[-71.480327,41.98637799906],[-71.480476,41.98649199906],[-71.480659,41.98664899906],[-71.480812,41.98678199906],[-71.481026,41.98700299906],[-71.481117,41.98712899906],[-71.481201,41.98722799906],[-71.481331,41.98746499906],[-71.481429,41.98767199906],[-71.481522,41.98790399906],[-71.481583,41.98815199906],[-71.481621,41.98844099906],[-71.481622,41.98849199906],[-71.481628,41.98880399906],[-71.481659,41.98962399906],[-71.481697,41.98977699906],[-71.481728,41.98991399906],[-71.481804,41.99006699906],[-71.481949,41.99031099906],[-71.482224,41.99059699906],[-71.482811,41.99113799906],[-71.483063,41.99137499906],[-71.483154,41.99144699906],[-71.483665,41.99185299906],[-71.483711,41.99188999906],[-71.484734,41.99265699906],[-71.485054,41.99290499906],[-71.485352,41.99314199906],[-71.486328,41.99391899906],[-71.486794,41.99428599906],[-71.487165,41.99457299906],[-71.487221,41.99461699906],[-71.487816,41.99509799906],[-71.48793,41.99520099906],[-71.48795,41.99521199906],[-71.488304,41.99552199906],[-71.488365,41.99557099906],[-71.48867,41.99585299906],[-71.488762,41.99594899906],[-71.489647,41.99682599906],[-71.49015,41.99732599906],[-71.490227,41.99739499906],[-71.490417,41.99760799906],[-71.490524,41.99775699906],[-71.490552,41.99780599906],[-71.49057,41.99783699906],[-71.490761,41.99813499906],[-71.491058,41.99863399906],[-71.491554,41.99944299906],[-71.49157,41.99947699906],[-71.4916,41.99953499906],[-71.491714,41.99970199906],[-71.491837,41.99985499906],[-71.49202,42.00005699906],[-71.492058,42.00009199906],[-71.492111,42.00014899906],[-71.49221,42.00023699906],[-71.492409,42.00038099906],[-71.492645,42.00052599906],[-71.492775,42.00060299906],[-71.492867,42.00065199906],[-71.493011,42.00072099906],[-71.493317,42.00084299906],[-71.494354,42.00129699906],[-71.494576,42.00139599906],[-71.495003,42.00153699906],[-71.495537,42.00170899906],[-71.49563,42.00173299906],[-71.495905,42.00185199906],[-71.495964,42.00187699906],[-71.496071,42.00192999906],[-71.496239,42.00203299906],[-71.496399,42.00214799906],[-71.496475,42.00220899906],[-71.496681,42.00240699906],[-71.496742,42.00247599906],[-71.496796,42.00254799906],[-71.496872,42.00268899906],[-71.496979,42.00292999906],[-71.497009,42.00301399906],[-71.497047,42.00308199906],[-71.497093,42.00318099906],[-71.497231,42.00319699906],[-71.497307,42.00321199906],[-71.497375,42.00321199906],[-71.497562,42.00318799906],[-71.497987,42.00313699906],[-71.498218,42.00310899906]]]}}"}, +{"type": "blockgroup", "typeId": 185002, "areaId": 29160, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.498764,42.00481399906],[-71.498756,42.00478399906],[-71.498734,42.00473799906],[-71.498718,42.00472299906],[-71.49871,42.00470599906],[-71.49852,42.00452399906],[-71.497589,42.00381499906],[-71.49752,42.00375399906],[-71.497391,42.00362399906],[-71.497253,42.00344799906],[-71.497215,42.00338699906],[-71.497169,42.00332599906],[-71.497093,42.00318099906],[-71.497047,42.00308199906],[-71.497009,42.00301399906],[-71.496979,42.00292999906],[-71.496872,42.00268899906],[-71.496796,42.00254799906],[-71.496742,42.00247599906],[-71.496681,42.00240699906],[-71.496475,42.00220899906],[-71.496399,42.00214799906],[-71.496239,42.00203299906],[-71.496071,42.00192999906],[-71.495964,42.00187699906],[-71.495905,42.00185199906],[-71.49563,42.00173299906],[-71.495537,42.00170899906],[-71.495003,42.00153699906],[-71.494576,42.00139599906],[-71.494354,42.00129699906],[-71.493317,42.00084299906],[-71.493011,42.00072099906],[-71.492867,42.00065199906],[-71.492775,42.00060299906],[-71.492645,42.00052599906],[-71.492409,42.00038099906],[-71.49221,42.00023699906],[-71.492111,42.00014899906],[-71.492058,42.00009199906],[-71.49202,42.00005699906],[-71.491837,41.99985499906],[-71.491714,41.99970199906],[-71.4916,41.99953499906],[-71.49157,41.99947699906],[-71.491554,41.99944299906],[-71.491058,41.99863399906],[-71.490761,41.99813499906],[-71.49057,41.99783699906],[-71.490552,41.99780599906],[-71.490524,41.99775699906],[-71.490417,41.99760799906],[-71.490227,41.99739499906],[-71.49015,41.99732599906],[-71.489647,41.99682599906],[-71.488762,41.99594899906],[-71.48867,41.99585299906],[-71.488365,41.99557099906],[-71.488304,41.99552199906],[-71.48795,41.99521199906],[-71.48793,41.99520099906],[-71.487816,41.99509799906],[-71.487221,41.99461699906],[-71.487165,41.99457299906],[-71.486794,41.99428599906],[-71.486328,41.99391899906],[-71.485352,41.99314199906],[-71.485054,41.99290499906],[-71.484734,41.99265699906],[-71.483711,41.99188999906],[-71.483665,41.99185299906],[-71.483154,41.99144699906],[-71.483063,41.99137499906],[-71.482811,41.99113799906],[-71.482224,41.99059699906],[-71.481949,41.99031099906],[-71.481804,41.99006699906],[-71.481728,41.98991399906],[-71.481697,41.98977699906],[-71.481659,41.98962399906],[-71.481628,41.98880399906],[-71.481622,41.98849199906],[-71.481621,41.98844099906],[-71.481583,41.98815199906],[-71.481522,41.98790399906],[-71.481429,41.98767199906],[-71.481331,41.98746499906],[-71.481201,41.98722799906],[-71.481117,41.98712899906],[-71.481026,41.98700299906],[-71.480812,41.98678199906],[-71.480659,41.98664899906],[-71.480476,41.98649199906],[-71.480327,41.98637799906],[-71.479767,41.98695799906],[-71.479719,41.98700999906],[-71.479389,41.98735299906],[-71.479048,41.98770699906],[-71.478774,41.98798999906],[-71.478702,41.98806999906],[-71.476213,41.99064599906],[-71.474655,41.99226599906],[-71.472966,41.99400599906],[-71.47291,41.99406999906],[-71.472826,41.99415599906],[-71.472726,41.99425999906],[-71.471607,41.99542099906],[-71.467359,41.99982999906],[-71.467311,41.99987599906],[-71.466992,42.00020899906],[-71.466359,42.00085999906],[-71.465829,42.00141299906],[-71.465352,42.00190599906],[-71.463733,42.00358599906],[-71.463793,42.00359599906],[-71.463867,42.00360099906],[-71.463953,42.00359999906],[-71.464043,42.00359299906],[-71.464081,42.00358399906],[-71.464114,42.00357599906],[-71.464198,42.00358999906],[-71.464276,42.00361899906],[-71.464347,42.00365099906],[-71.464423,42.00365999906],[-71.464513,42.00364699906],[-71.464577,42.00359399906],[-71.464651,42.00354399906],[-71.464739,42.00352399906],[-71.464817,42.00352699906],[-71.464889,42.00355499906],[-71.464977,42.00358099906],[-71.465169,42.00362299906],[-71.465253,42.00361899906],[-71.465284,42.00360299906],[-71.465322,42.00358499906],[-71.465319,42.00330199906],[-71.465338,42.00325899906],[-71.465421,42.00323599906],[-71.465753,42.00319499906],[-71.465979,42.00314899906],[-71.466207,42.00312699906],[-71.46629,42.00312499906],[-71.466368,42.00311699906],[-71.466518,42.00305499906],[-71.466592,42.00303899906],[-71.466681,42.00303999906],[-71.466762,42.00304999906],[-71.466928,42.00305099906],[-71.467008,42.00304599906],[-71.467071,42.00301799906],[-71.467149,42.00291899906],[-71.467181,42.00286099906],[-71.467237,42.00281199906],[-71.467305,42.00276999906],[-71.467388,42.00272899906],[-71.467634,42.00264499906],[-71.467815,42.00256699906],[-71.467971,42.00248999906],[-71.468199,42.00239799906],[-71.468433,42.00231999906],[-71.46851,42.00228699906],[-71.468577,42.00225199906],[-71.468637,42.00220799906],[-71.46869,42.00215899906],[-71.468757,42.00211299906],[-71.46881,42.00206699906],[-71.468847,42.00201899906],[-71.468908,42.00197599906],[-71.468967,42.00194099906],[-71.46899,42.00190899906],[-71.469058,42.00187499906],[-71.469309,42.00179999906],[-71.469396,42.00177999906],[-71.469474,42.00177299906],[-71.469738,42.00177399906],[-71.469895,42.00180899906],[-71.47,42.00182399906],[-71.470155,42.00185699906],[-71.470233,42.00187799906],[-71.470306,42.00188199906],[-71.470396,42.00190499906],[-71.470461,42.00194999906],[-71.470524,42.00200599906],[-71.470605,42.00205699906],[-71.470691,42.00210299906],[-71.470774,42.00211199906],[-71.470852,42.00207999906],[-71.47092,42.00204699906],[-71.470997,42.00205299906],[-71.471077,42.00208799906],[-71.471221,42.00216399906],[-71.471283,42.00220199906],[-71.471332,42.00224399906],[-71.471422,42.00233299906],[-71.471533,42.00241699906],[-71.471733,42.00252999906],[-71.471882,42.00259699906],[-71.471962,42.00260299906],[-71.472039,42.00261599906],[-71.472136,42.00260599906],[-71.47223,42.00258299906],[-71.47237,42.00252899906],[-71.472426,42.00249499906],[-71.472591,42.00232299906],[-71.472643,42.00227599906],[-71.472718,42.00225299906],[-71.472795,42.00224399906],[-71.472862,42.00221999906],[-71.472923,42.00219099906],[-71.472978,42.00219999906],[-71.47303,42.00225599906],[-71.47309,42.00230699906],[-71.473168,42.00230599906],[-71.473264,42.00229099906],[-71.473359,42.00225899906],[-71.473429,42.00223999906],[-71.473533,42.00223999906],[-71.473631,42.00220699906],[-71.473737,42.00221699906],[-71.473808,42.00223899906],[-71.473901,42.00224699906],[-71.473989,42.00222599906],[-71.474069,42.00220099906],[-71.474246,42.00219799906],[-71.474306,42.00221799906],[-71.474341,42.00226999906],[-71.474394,42.00238999906],[-71.474391,42.00246099906],[-71.474421,42.00253399906],[-71.474603,42.00276299906],[-71.474732,42.00284899906],[-71.474823,42.00295099906],[-71.474881,42.00311999906],[-71.47502,42.00323199906],[-71.475097,42.00328799906],[-71.475293,42.00337699906],[-71.47544,42.00342999906],[-71.475615,42.00350899906],[-71.475695,42.00353999906],[-71.475769,42.00357699906],[-71.475832,42.00362199906],[-71.475879,42.00366999906],[-71.475902,42.00373499906],[-71.475962,42.00385799906],[-71.476003,42.00392599906],[-71.476051,42.00399399906],[-71.476115,42.00410799906],[-71.476193,42.00421899906],[-71.476242,42.00427999906],[-71.476284,42.00434299906],[-71.476368,42.00451799906],[-71.476421,42.00456099906],[-71.476491,42.00457499906],[-71.476547,42.00457499906],[-71.47667,42.00457299906],[-71.476837,42.00456199906],[-71.47695,42.00455999906],[-71.477092,42.00456299906],[-71.477223,42.00457599906],[-71.477281,42.00450699906],[-71.477308,42.00437799906],[-71.477338,42.00431799906],[-71.477381,42.00426499906],[-71.477432,42.00421499906],[-71.477487,42.00417699906],[-71.477558,42.00415199906],[-71.477723,42.00411599906],[-71.477797,42.00411499906],[-71.477811,42.00412999906],[-71.477936,42.00406399906],[-71.477912,42.00404699906],[-71.477918,42.00398299906],[-71.477961,42.00392099906],[-71.478117,42.00377499906],[-71.478283,42.00364399906],[-71.478353,42.00362499906],[-71.478438,42.00364399906],[-71.478584,42.00370399906],[-71.478605,42.00367699906],[-71.478631,42.00364599906],[-71.478701,42.00355999906],[-71.478688,42.00337599906],[-71.4787,42.00322799906],[-71.479421,42.00253599906],[-71.479736,42.00253499906],[-71.479812,42.00254799906],[-71.480054,42.00255799906],[-71.480128,42.00253799906],[-71.480196,42.00249899906],[-71.480251,42.00245899906],[-71.480388,42.00244299906],[-71.480385,42.00247999906],[-71.48024,42.00307099906],[-71.480118,42.00340699906],[-71.480034,42.00357799906],[-71.479836,42.00389899906],[-71.480804,42.00407799906],[-71.480919,42.00410099906],[-71.481216,42.00415399906],[-71.481674,42.00424599906],[-71.482147,42.00433699906],[-71.482529,42.00441699906],[-71.482857,42.00448199906],[-71.48317,42.00455099906],[-71.48343,42.00462499906],[-71.483635,42.00468399906],[-71.483871,42.00472299906],[-71.484651,42.00492799906],[-71.485085,42.00504299906],[-71.485865,42.00523599906],[-71.485901,42.00524899906],[-71.487175,42.00556899906],[-71.487511,42.00565699906],[-71.48761,42.00567999906],[-71.487885,42.00577199906],[-71.488045,42.00581399906],[-71.488251,42.00585899906],[-71.488373,42.00587099906],[-71.488487,42.00586699906],[-71.489011,42.00583799906],[-71.489471,42.00581199906],[-71.489574,42.00580599906],[-71.49025,42.00576799906],[-71.490402,42.00575599906],[-71.491142,42.00572199906],[-71.49173,42.00569199906],[-71.492981,42.00561899906],[-71.493124,42.00561099906],[-71.493713,42.00558099906],[-71.494553,42.00551999906],[-71.495245,42.00543199906],[-71.496536,42.00526799906],[-71.497093,42.00519599906],[-71.497858,42.00509499906],[-71.497993,42.00507699906],[-71.498283,42.00504299906],[-71.498474,42.00500099906],[-71.498657,42.00494399906],[-71.498695,42.00492499906],[-71.498726,42.00490199906],[-71.498749,42.00487499906],[-71.498764,42.00484499906],[-71.498764,42.00481399906]]]}}"}, +{"type": "blockgroup", "typeId": 201011, "areaId": 29161, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.518562,41.68167699906],[-71.518555,41.68149699906],[-71.518539,41.68127699906],[-71.518517,41.68103899906],[-71.518463,41.68069799906],[-71.518448,41.68053999906],[-71.518387,41.68020899906],[-71.518364,41.68006499906],[-71.518341,41.67986299906],[-71.518303,41.67959799906],[-71.518265,41.67944999906],[-71.518234,41.67941899906],[-71.518196,41.67940199906],[-71.518135,41.67938999906],[-71.518059,41.67939199906],[-71.517921,41.67940799906],[-71.517601,41.67943799906],[-71.517519,41.67944499906],[-71.517204,41.67947299906],[-71.517029,41.67948599906],[-71.516907,41.67950199906],[-71.516762,41.67950999906],[-71.516602,41.67953599906],[-71.516334,41.67955999906],[-71.516045,41.67959799906],[-71.515571,41.67966199906],[-71.515152,41.67971199906],[-71.51474,41.67975699906],[-71.514374,41.67980099906],[-71.514092,41.67982499906],[-71.514015,41.67940399906],[-71.513946,41.67904499906],[-71.513901,41.67885199906],[-71.513832,41.67846599906],[-71.513794,41.67830499906],[-71.513771,41.67821999906],[-71.513741,41.67816699906],[-71.513664,41.67810099906],[-71.513481,41.67797899906],[-71.513283,41.67785699906],[-71.513206,41.67779099906],[-71.513176,41.67772899906],[-71.513161,41.67767999906],[-71.513168,41.67762499906],[-71.513206,41.67752999906],[-71.513306,41.67732999906],[-71.513397,41.67718399906],[-71.513428,41.67708399906],[-71.51342,41.67681399906],[-71.513413,41.67649899906],[-71.513412,41.67613899906],[-71.513405,41.67586399906],[-71.513405,41.67566999906],[-71.513428,41.67553499906],[-71.513298,41.67543399906],[-71.513199,41.67534199906],[-71.512848,41.67514199906],[-71.512398,41.67489499906],[-71.512192,41.67477399906],[-71.512116,41.67471199906],[-71.512077,41.67462799906],[-71.511986,41.67451299906],[-71.511909,41.67448699906],[-71.511635,41.67438999906],[-71.511314,41.67426599906],[-71.511235,41.67423299906],[-71.511169,41.67420599906],[-71.511078,41.67410499906],[-71.511055,41.67402899906],[-71.511032,41.67375399906],[-71.511024,41.67353799906],[-71.510643,41.67355099906],[-71.510162,41.67355699906],[-71.510083,41.67355799906],[-71.510025,41.67355899906],[-71.509499,41.67356699906],[-71.509454,41.67356899906],[-71.509201,41.67357799906],[-71.508789,41.67358299906],[-71.508316,41.67359799906],[-71.507851,41.67360799906],[-71.507355,41.67362299906],[-71.506645,41.67363399906],[-71.505943,41.67363999906],[-71.505363,41.67364899906],[-71.504814,41.67365099906],[-71.504364,41.67364299906],[-71.503769,41.67364299906],[-71.503265,41.67364499906],[-71.50277,41.67365099906],[-71.502381,41.67366399906],[-71.502228,41.67367199906],[-71.502075,41.67367499906],[-71.501244,41.67371599906],[-71.500313,41.67375399906],[-71.499901,41.67376699906],[-71.499836,41.67377599906],[-71.499868,41.67425099906],[-71.499903,41.67487199906],[-71.499907,41.67494499906],[-71.499931,41.67556099906],[-71.499975,41.67659299906],[-71.499991,41.67687199906],[-71.499999,41.67720499906],[-71.5,41.67732999906],[-71.500001,41.67738999906],[-71.499997,41.67744099906],[-71.500011,41.67773599906],[-71.500039,41.67881299906],[-71.500052,41.67921199906],[-71.500062,41.67948099906],[-71.500136,41.68022799906],[-71.500238,41.68108799906],[-71.5003,41.68158899906],[-71.500335,41.68186899906],[-71.500409,41.68247899906],[-71.500569,41.68371599906],[-71.500723,41.68501599906],[-71.500793,41.68501499906],[-71.501595,41.68499699906],[-71.502144,41.68499899906],[-71.502182,41.68499799906],[-71.502739,41.68496799906],[-71.503304,41.68494199906],[-71.503505,41.68493799906],[-71.503647,41.68493499906],[-71.503845,41.68492599906],[-71.504112,41.68491599906],[-71.504195,41.68491399906],[-71.504555,41.68490599906],[-71.504683,41.68490399906],[-71.505081,41.68489899906],[-71.505745,41.68489299906],[-71.505798,41.68489199906],[-71.506393,41.68488799906],[-71.507157,41.68487599906],[-71.50724,41.68487399906],[-71.507454,41.68487399906],[-71.508888,41.68482899906],[-71.509437,41.68481299906],[-71.509598,41.68480499906],[-71.509895,41.68479399906],[-71.510246,41.68479499906],[-71.510552,41.68479799906],[-71.510605,41.68479599906],[-71.510719,41.68479799906],[-71.511094,41.68480799906],[-71.511286,41.68480599906],[-71.511658,41.68480499906],[-71.5121,41.68479099906],[-71.512428,41.68478399906],[-71.512855,41.68476499906],[-71.512984,41.68475899906],[-71.513283,41.68474699906],[-71.513542,41.68473699906],[-71.513779,41.68472699906],[-71.514084,41.68471599906],[-71.514206,41.68470899906],[-71.514694,41.68469299906],[-71.515274,41.68467199906],[-71.515846,41.68464099906],[-71.516083,41.68463599906],[-71.516281,41.68463199906],[-71.516617,41.68462399906],[-71.516953,41.68460299906],[-71.51712,41.68459499906],[-71.517406,41.68458299906],[-71.517601,41.68457599906],[-71.517639,41.68457899906],[-71.51783,41.68457099906],[-71.517815,41.68432799906],[-71.517807,41.68424199906],[-71.517792,41.68402199906],[-71.517777,41.68385999906],[-71.517784,41.68369399906],[-71.517792,41.68358099906],[-71.517838,41.68344899906],[-71.517876,41.68330899906],[-71.517937,41.68318599906],[-71.518005,41.68308099906],[-71.518036,41.68303499906],[-71.518127,41.68289399906],[-71.518242,41.68271999906],[-71.518285,41.68262599906],[-71.51831,41.68256999906],[-71.518379,41.68243799906],[-71.518433,41.68223799906],[-71.518486,41.68207099906],[-71.518539,41.68191599906],[-71.518562,41.68182599906],[-71.518562,41.68167699906]]]}}"}, +{"type": "blockgroup", "typeId": 201012, "areaId": 29162, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.533379,41.66215599906],[-71.533204,41.66217999906],[-71.532303,41.66219099906],[-71.530587,41.66221399906],[-71.530553,41.66220799906],[-71.530476,41.66220499906],[-71.529274,41.66222299906],[-71.525946,41.66224499906],[-71.523993,41.66229599906],[-71.523544,41.66230199906],[-71.522588,41.66230999906],[-71.520695,41.66238599906],[-71.520245,41.66240399906],[-71.519457,41.66240799906],[-71.519164,41.66240999906],[-71.517422,41.66241699906],[-71.51657,41.66243799906],[-71.514049,41.66249899906],[-71.513188,41.66251999906],[-71.5131,41.66252299906],[-71.512616,41.66253399906],[-71.51198,41.66255299906],[-71.510739,41.66259599906],[-71.509322,41.66263799906],[-71.507632,41.66269499906],[-71.507307,41.66270499906],[-71.506775,41.66271699906],[-71.506347,41.66273899906],[-71.504866,41.66279199906],[-71.503139,41.66284399906],[-71.5014,41.66288999906],[-71.499674,41.66293599906],[-71.499225,41.66294799906],[-71.499228,41.66304399906],[-71.499237,41.66336599906],[-71.499252,41.66364499906],[-71.49926,41.66375299906],[-71.499275,41.66386099906],[-71.499283,41.66397299906],[-71.499313,41.66416599906],[-71.499321,41.66426099906],[-71.499321,41.66434599906],[-71.499306,41.66438199906],[-71.499283,41.66440499906],[-71.49926,41.66442399906],[-71.49923,41.66444299906],[-71.499199,41.66445699906],[-71.499123,41.66447599906],[-71.4991,41.66448999906],[-71.499054,41.66450899906],[-71.499031,41.66452299906],[-71.499016,41.66454199906],[-71.49897,41.66457899906],[-71.498932,41.66460699906],[-71.499145,41.66500299906],[-71.49923,41.66518099906],[-71.499298,41.66533699906],[-71.499367,41.66554299906],[-71.499405,41.66572699906],[-71.499428,41.66585699906],[-71.499451,41.66612199906],[-71.499455,41.66621599906],[-71.499473,41.66650899906],[-71.499481,41.66664799906],[-71.499532,41.66743699906],[-71.499543,41.66766599906],[-71.499611,41.66881599906],[-71.499672,41.66986799906],[-71.499702,41.67107899906],[-71.499701,41.67138999906],[-71.499652,41.67170599906],[-71.499759,41.67291399906],[-71.499836,41.67377599906],[-71.499901,41.67376699906],[-71.500313,41.67375399906],[-71.501244,41.67371599906],[-71.502075,41.67367499906],[-71.502228,41.67367199906],[-71.502381,41.67366399906],[-71.50277,41.67365099906],[-71.503265,41.67364499906],[-71.503769,41.67364299906],[-71.504364,41.67364299906],[-71.504814,41.67365099906],[-71.505363,41.67364899906],[-71.505943,41.67363999906],[-71.506645,41.67363399906],[-71.507355,41.67362299906],[-71.507851,41.67360799906],[-71.508316,41.67359799906],[-71.508789,41.67358299906],[-71.509201,41.67357799906],[-71.509454,41.67356899906],[-71.509499,41.67356699906],[-71.510025,41.67355899906],[-71.510083,41.67355799906],[-71.510162,41.67355699906],[-71.510643,41.67355099906],[-71.511024,41.67353799906],[-71.511307,41.67353199906],[-71.511551,41.67352199906],[-71.511902,41.67350099906],[-71.511955,41.67349999906],[-71.512451,41.67347099906],[-71.512924,41.67345199906],[-71.513313,41.67342999906],[-71.513733,41.67341599906],[-71.514296,41.67338999906],[-71.514542,41.67337999906],[-71.514954,41.67337999906],[-71.515038,41.67337899906],[-71.515617,41.67337899906],[-71.516151,41.67336799906],[-71.51664,41.67334399906],[-71.517136,41.67332799906],[-71.517448,41.67331199906],[-71.517792,41.67330499906],[-71.518043,41.67330399906],[-71.518158,41.67330999906],[-71.518341,41.67328799906],[-71.518486,41.67326699906],[-71.518799,41.67321099906],[-71.518906,41.67318099906],[-71.51899,41.67314299906],[-71.519074,41.67308799906],[-71.519203,41.67297699906],[-71.519379,41.67279699906],[-71.519546,41.67261299906],[-71.519753,41.67239299906],[-71.519852,41.67227799906],[-71.519918,41.67220699906],[-71.520012,41.67210799906],[-71.520058,41.67205299906],[-71.520126,41.67199699906],[-71.520172,41.67195599906],[-71.520203,41.67194199906],[-71.520248,41.67191399906],[-71.52034,41.67188499906],[-71.520409,41.67186899906],[-71.520508,41.67185399906],[-71.520706,41.67183599906],[-71.52076,41.67183499906],[-71.521088,41.67181399906],[-71.52137,41.67180299906],[-71.521957,41.67177699906],[-71.522491,41.67175599906],[-71.522508,41.67175699906],[-71.522576,41.67175899906],[-71.522827,41.67174399906],[-71.52301,41.67173599906],[-71.523262,41.67173899906],[-71.523567,41.67172799906],[-71.523994,41.67171899906],[-71.524493,41.67171699906],[-71.524963,41.67170599906],[-71.525314,41.67170799906],[-71.525612,41.67170599906],[-71.525795,41.67170599906],[-71.526138,41.67170299906],[-71.526261,41.67170499906],[-71.52668,41.67169599906],[-71.526802,41.67168899906],[-71.52697,41.67166699906],[-71.52713,41.67164099906],[-71.527328,41.67162299906],[-71.52758,41.67161699906],[-71.52787,41.67160699906],[-71.528244,41.67159799906],[-71.528549,41.67160499906],[-71.528763,41.67161399906],[-71.529083,41.67161099906],[-71.529281,41.67160699906],[-71.529411,41.67160399906],[-71.529732,41.67160599906],[-71.530044,41.67160399906],[-71.530464,41.67161199906],[-71.530622,41.67161999906],[-71.530716,41.67162499906],[-71.530884,41.67163499906],[-71.531105,41.67166099906],[-71.531372,41.67170499906],[-71.531517,41.67172399906],[-71.5317,41.67176499906],[-71.531838,41.67183899906],[-71.532005,41.67191599906],[-71.532158,41.67200199906],[-71.532181,41.67198399906],[-71.532329,41.67201699906],[-71.532406,41.67202899906],[-71.532552,41.67205399906],[-71.532616,41.67206099906],[-71.532806,41.67208499906],[-71.532984,41.67208499906],[-71.533182,41.67208599906],[-71.533199,41.67139299906],[-71.5332,41.67130299906],[-71.533218,41.67114599906],[-71.533243,41.66956699906],[-71.533245,41.66943699906],[-71.533272,41.66808099906],[-71.533277,41.66800799906],[-71.533277,41.66798399906],[-71.533288,41.66738199906],[-71.533295,41.66699999906],[-71.533315,41.66582199906],[-71.533366,41.66286999906],[-71.533377,41.66226199906],[-71.533379,41.66215599906]]]}}"}, +{"type": "blockgroup", "typeId": 201013, "areaId": 29163, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.523778,41.68413599906],[-71.523706,41.68407599906],[-71.523606,41.68395799906],[-71.523506,41.68377099906],[-71.523399,41.68365099906],[-71.523239,41.68350599906],[-71.523132,41.68335999906],[-71.523094,41.68329799906],[-71.523041,41.68316899906],[-71.523033,41.68304299906],[-71.523033,41.68281699906],[-71.523018,41.68255699906],[-71.523003,41.68226899906],[-71.52298,41.68193199906],[-71.522957,41.68165699906],[-71.522942,41.68144599906],[-71.522909,41.68107499906],[-71.522873,41.68070899906],[-71.522873,41.68066399906],[-71.52285,41.68032699906],[-71.522827,41.68015199906],[-71.522797,41.68006699906],[-71.522751,41.67997299906],[-71.522728,41.67993799906],[-71.522583,41.67976999906],[-71.522407,41.67957099906],[-71.522202,41.67932299906],[-71.522003,41.67906199906],[-71.521866,41.67886699906],[-71.521774,41.67878299906],[-71.52166,41.67870899906],[-71.521446,41.67863299906],[-71.52124,41.67855199906],[-71.521149,41.67852199906],[-71.520973,41.67845399906],[-71.520821,41.67838999906],[-71.520599,41.67825999906],[-71.520287,41.67801899906],[-71.519982,41.67779099906],[-71.51973,41.67763499906],[-71.519592,41.67752099906],[-71.519516,41.67743699906],[-71.519455,41.67731699906],[-71.519432,41.67714199906],[-71.519409,41.67671399906],[-71.519386,41.67642199906],[-71.519376,41.67626699906],[-71.51934,41.67567599906],[-71.519325,41.67541499906],[-71.519295,41.67511799906],[-71.519272,41.67487999906],[-71.519249,41.67457899906],[-71.519241,41.67449299906],[-71.519218,41.67440399906],[-71.519165,41.67426499906],[-71.519074,41.67413699906],[-71.518951,41.67402199906],[-71.518852,41.67394399906],[-71.518761,41.67385499906],[-71.5186,41.67370599906],[-71.518303,41.67345099906],[-71.518158,41.67330999906],[-71.518043,41.67330399906],[-71.517792,41.67330499906],[-71.517448,41.67331199906],[-71.517136,41.67332799906],[-71.51664,41.67334399906],[-71.516151,41.67336799906],[-71.515617,41.67337899906],[-71.515038,41.67337899906],[-71.514954,41.67337999906],[-71.514542,41.67337999906],[-71.514296,41.67338999906],[-71.513733,41.67341599906],[-71.513313,41.67342999906],[-71.512924,41.67345199906],[-71.512451,41.67347099906],[-71.511955,41.67349999906],[-71.511902,41.67350099906],[-71.511551,41.67352199906],[-71.511307,41.67353199906],[-71.511024,41.67353799906],[-71.511032,41.67375399906],[-71.511055,41.67402899906],[-71.511078,41.67410499906],[-71.511169,41.67420599906],[-71.511235,41.67423299906],[-71.511314,41.67426599906],[-71.511635,41.67438999906],[-71.511909,41.67448699906],[-71.511986,41.67451299906],[-71.512077,41.67462799906],[-71.512116,41.67471199906],[-71.512192,41.67477399906],[-71.512398,41.67489499906],[-71.512848,41.67514199906],[-71.513199,41.67534199906],[-71.513298,41.67543399906],[-71.513428,41.67553499906],[-71.513405,41.67566999906],[-71.513405,41.67586399906],[-71.513412,41.67613899906],[-71.513413,41.67649899906],[-71.51342,41.67681399906],[-71.513428,41.67708399906],[-71.513397,41.67718399906],[-71.513306,41.67732999906],[-71.513206,41.67752999906],[-71.513168,41.67762499906],[-71.513161,41.67767999906],[-71.513176,41.67772899906],[-71.513206,41.67779099906],[-71.513283,41.67785699906],[-71.513481,41.67797899906],[-71.513664,41.67810099906],[-71.513741,41.67816699906],[-71.513771,41.67821999906],[-71.513794,41.67830499906],[-71.513832,41.67846599906],[-71.513901,41.67885199906],[-71.513946,41.67904499906],[-71.514015,41.67940399906],[-71.514092,41.67982499906],[-71.514374,41.67980099906],[-71.51474,41.67975699906],[-71.515152,41.67971199906],[-71.515571,41.67966199906],[-71.516045,41.67959799906],[-71.516334,41.67955999906],[-71.516602,41.67953599906],[-71.516762,41.67950999906],[-71.516907,41.67950199906],[-71.517029,41.67948599906],[-71.517204,41.67947299906],[-71.517519,41.67944499906],[-71.517601,41.67943799906],[-71.517921,41.67940799906],[-71.518059,41.67939199906],[-71.518135,41.67938999906],[-71.518196,41.67940199906],[-71.518234,41.67941899906],[-71.518265,41.67944999906],[-71.518303,41.67959799906],[-71.518341,41.67986299906],[-71.518364,41.68006499906],[-71.518387,41.68020899906],[-71.518448,41.68053999906],[-71.518463,41.68069799906],[-71.518517,41.68103899906],[-71.518539,41.68127699906],[-71.518555,41.68149699906],[-71.518562,41.68167699906],[-71.518562,41.68182599906],[-71.518539,41.68191599906],[-71.518486,41.68207099906],[-71.518433,41.68223799906],[-71.518379,41.68243799906],[-71.51831,41.68256999906],[-71.518285,41.68262599906],[-71.518242,41.68271999906],[-71.518127,41.68289399906],[-71.518036,41.68303499906],[-71.518005,41.68308099906],[-71.517937,41.68318599906],[-71.517876,41.68330899906],[-71.517838,41.68344899906],[-71.517792,41.68358099906],[-71.517784,41.68369399906],[-71.517777,41.68385999906],[-71.517792,41.68402199906],[-71.517807,41.68424199906],[-71.517815,41.68432799906],[-71.51783,41.68457099906],[-71.517914,41.68456399906],[-71.51815,41.68455499906],[-71.518272,41.68455199906],[-71.518509,41.68454199906],[-71.518715,41.68453799906],[-71.518761,41.68453699906],[-71.518944,41.68452799906],[-71.519386,41.68450999906],[-71.519585,41.68450499906],[-71.519668,41.68450299906],[-71.520066,41.68450399906],[-71.520371,41.68448799906],[-71.520706,41.68448499906],[-71.520982,41.68447899906],[-71.521126,41.68447599906],[-71.521507,41.68447199906],[-71.521889,41.68444999906],[-71.522201,41.68443899906],[-71.522408,41.68442999906],[-71.522491,41.68442299906],[-71.522575,41.68441699906],[-71.522781,41.68440799906],[-71.52298,41.68439499906],[-71.52314,41.68436899906],[-71.523262,41.68434299906],[-71.523315,41.68432399906],[-71.523529,41.68425699906],[-71.523575,41.68423799906],[-71.523659,41.68421299906],[-71.523778,41.68413599906]]]}}"}, +{"type": "blockgroup", "typeId": 201014, "areaId": 29164, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.533182,41.67208599906],[-71.532984,41.67208499906],[-71.532806,41.67208499906],[-71.532616,41.67206099906],[-71.532552,41.67205399906],[-71.532406,41.67202899906],[-71.532329,41.67201699906],[-71.532181,41.67198399906],[-71.532158,41.67200199906],[-71.532005,41.67191599906],[-71.531838,41.67183899906],[-71.5317,41.67176499906],[-71.531517,41.67172399906],[-71.531372,41.67170499906],[-71.531105,41.67166099906],[-71.530884,41.67163499906],[-71.530716,41.67162499906],[-71.530622,41.67161999906],[-71.530464,41.67161199906],[-71.530044,41.67160399906],[-71.529732,41.67160599906],[-71.529411,41.67160399906],[-71.529281,41.67160699906],[-71.529083,41.67161099906],[-71.528763,41.67161399906],[-71.528549,41.67160499906],[-71.528244,41.67159799906],[-71.52787,41.67160699906],[-71.52758,41.67161699906],[-71.527328,41.67162299906],[-71.52713,41.67164099906],[-71.52697,41.67166699906],[-71.526802,41.67168899906],[-71.52668,41.67169599906],[-71.526261,41.67170499906],[-71.526138,41.67170299906],[-71.525795,41.67170599906],[-71.525612,41.67170599906],[-71.525314,41.67170799906],[-71.524963,41.67170599906],[-71.524493,41.67171699906],[-71.523994,41.67171899906],[-71.523567,41.67172799906],[-71.523262,41.67173899906],[-71.52301,41.67173599906],[-71.522827,41.67174399906],[-71.522576,41.67175899906],[-71.522508,41.67175699906],[-71.522491,41.67175599906],[-71.521957,41.67177699906],[-71.52137,41.67180299906],[-71.521088,41.67181399906],[-71.52076,41.67183499906],[-71.520706,41.67183599906],[-71.520508,41.67185399906],[-71.520409,41.67186899906],[-71.52034,41.67188499906],[-71.520248,41.67191399906],[-71.520203,41.67194199906],[-71.520172,41.67195599906],[-71.520126,41.67199699906],[-71.520058,41.67205299906],[-71.520012,41.67210799906],[-71.519918,41.67220699906],[-71.519852,41.67227799906],[-71.519753,41.67239299906],[-71.519546,41.67261299906],[-71.519379,41.67279699906],[-71.519203,41.67297699906],[-71.519074,41.67308799906],[-71.51899,41.67314299906],[-71.518906,41.67318099906],[-71.518799,41.67321099906],[-71.518486,41.67326699906],[-71.518341,41.67328799906],[-71.518158,41.67330999906],[-71.518303,41.67345099906],[-71.5186,41.67370599906],[-71.518761,41.67385499906],[-71.518852,41.67394399906],[-71.518951,41.67402199906],[-71.519074,41.67413699906],[-71.519165,41.67426499906],[-71.519218,41.67440399906],[-71.519241,41.67449299906],[-71.519249,41.67457899906],[-71.519272,41.67487999906],[-71.519295,41.67511799906],[-71.519325,41.67541499906],[-71.51934,41.67567599906],[-71.519376,41.67626699906],[-71.519386,41.67642199906],[-71.519409,41.67671399906],[-71.519432,41.67714199906],[-71.519455,41.67731699906],[-71.519516,41.67743699906],[-71.519592,41.67752099906],[-71.51973,41.67763499906],[-71.519982,41.67779099906],[-71.520287,41.67801899906],[-71.520599,41.67825999906],[-71.520821,41.67838999906],[-71.520973,41.67845399906],[-71.521149,41.67852199906],[-71.52124,41.67855199906],[-71.521446,41.67863299906],[-71.52166,41.67870899906],[-71.521774,41.67878299906],[-71.521866,41.67886699906],[-71.522003,41.67906199906],[-71.522202,41.67932299906],[-71.522407,41.67957099906],[-71.522583,41.67976999906],[-71.522728,41.67993799906],[-71.522751,41.67997299906],[-71.522797,41.68006699906],[-71.522827,41.68015199906],[-71.52285,41.68032699906],[-71.522873,41.68066399906],[-71.522873,41.68070899906],[-71.522909,41.68107499906],[-71.522942,41.68144599906],[-71.522957,41.68165699906],[-71.52298,41.68193199906],[-71.523003,41.68226899906],[-71.523018,41.68255699906],[-71.523033,41.68281699906],[-71.523033,41.68304299906],[-71.523041,41.68316899906],[-71.523094,41.68329799906],[-71.523132,41.68335999906],[-71.523239,41.68350599906],[-71.523399,41.68365099906],[-71.523506,41.68377099906],[-71.523606,41.68395799906],[-71.523706,41.68407599906],[-71.523778,41.68413599906],[-71.523903,41.68402799906],[-71.524094,41.68385699906],[-71.524124,41.68382899906],[-71.524406,41.68360699906],[-71.524651,41.68341199906],[-71.524933,41.68318499906],[-71.525162,41.68296399906],[-71.525299,41.68279899906],[-71.525401,41.68266599906],[-71.525444,41.68261099906],[-71.525535,41.68245599906],[-71.525596,41.68236499906],[-71.52565,41.68225999906],[-71.525772,41.68200499906],[-71.525917,41.68173199906],[-71.526115,41.68138999906],[-71.526253,41.68121999906],[-71.52639,41.68110499906],[-71.526604,41.68095599906],[-71.526764,41.68087599906],[-71.526805,41.68085699906],[-71.52697,41.68078099906],[-71.527268,41.68067099906],[-71.527336,41.68064699906],[-71.527473,41.68060299906],[-71.527687,41.68054499906],[-71.527954,41.68048899906],[-71.52832,41.68043599906],[-71.528702,41.68039199906],[-71.528847,41.68037499906],[-71.529442,41.68031199906],[-71.529587,41.68029999906],[-71.52969,41.68029499906],[-71.529858,41.68027499906],[-71.53005,41.68025199906],[-71.530386,41.68019799906],[-71.530481,41.68018299906],[-71.530904,41.68011399906],[-71.531631,41.67998499906],[-71.53196,41.67991899906],[-71.532486,41.67983999906],[-71.532638,41.67982599906],[-71.532988,41.67977199906],[-71.532989,41.67972399906],[-71.532995,41.67956699906],[-71.533041,41.67775799906],[-71.533089,41.67592499906],[-71.533089,41.67560699906],[-71.533124,41.67427799906],[-71.533172,41.67247099906],[-71.533182,41.67208599906]]]}}"}, +{"type": "blockgroup", "typeId": 201021, "areaId": 29165, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.511574,41.69608699906],[-71.511444,41.69585599906],[-71.511185,41.69533899906],[-71.511017,41.69503599906],[-71.510719,41.69473699906],[-71.510361,41.69441999906],[-71.510246,41.69426099906],[-71.510208,41.69415299906],[-71.510192,41.69409999906],[-71.510124,41.69388099906],[-71.51004,41.69354499906],[-71.51001,41.69343699906],[-71.509994,41.69338399906],[-71.509926,41.69312799906],[-71.509895,41.69277799906],[-71.509895,41.69262899906],[-71.509865,41.69212999906],[-71.509857,41.69194999906],[-71.509827,41.69148699906],[-71.509788,41.69079899906],[-71.509773,41.69048799906],[-71.50975,41.69021399906],[-71.509743,41.69018299906],[-71.509712,41.68967899906],[-71.509712,41.68963899906],[-71.509705,41.68949499906],[-71.509689,41.68920199906],[-71.509667,41.68890999906],[-71.509648,41.68872099906],[-71.509628,41.68850999906],[-71.509621,41.68790199906],[-71.509598,41.68752499906],[-71.509575,41.68725699906],[-71.509567,41.68715199906],[-71.509567,41.68711099906],[-71.509559,41.68705299906],[-71.509551,41.68689199906],[-71.509541,41.68664899906],[-71.509529,41.68638199906],[-71.509529,41.68632799906],[-71.509468,41.68525299906],[-71.509437,41.68481299906],[-71.508888,41.68482899906],[-71.507454,41.68487399906],[-71.50724,41.68487399906],[-71.507157,41.68487599906],[-71.506393,41.68488799906],[-71.505798,41.68489199906],[-71.505745,41.68489299906],[-71.505081,41.68489899906],[-71.504683,41.68490399906],[-71.504555,41.68490599906],[-71.504195,41.68491399906],[-71.504112,41.68491599906],[-71.503845,41.68492599906],[-71.503647,41.68493499906],[-71.503505,41.68493799906],[-71.503304,41.68494199906],[-71.502739,41.68496799906],[-71.502182,41.68499799906],[-71.502144,41.68499899906],[-71.501595,41.68499699906],[-71.500793,41.68501499906],[-71.500723,41.68501599906],[-71.500885,41.68594899906],[-71.50103,41.68758999906],[-71.501068,41.68789399906],[-71.501106,41.68820999906],[-71.501113,41.68834699906],[-71.501129,41.68862299906],[-71.501137,41.68893399906],[-71.501129,41.68934799906],[-71.501144,41.68973099906],[-71.50116,41.68995999906],[-71.501167,41.69013599906],[-71.501198,41.69062999906],[-71.501251,41.69137699906],[-71.501258,41.69149399906],[-71.501297,41.69205999906],[-71.501327,41.69270299906],[-71.501343,41.69289699906],[-71.501373,41.69317099906],[-71.501449,41.69410599906],[-71.501521,41.69479099906],[-71.501679,41.69647399906],[-71.501869,41.69646999906],[-71.502792,41.69643199906],[-71.502884,41.69642499906],[-71.503342,41.69641499906],[-71.5037,41.69639399906],[-71.504082,41.69638999906],[-71.504333,41.69639799906],[-71.50473,41.69641199906],[-71.504883,41.69640899906],[-71.505447,41.69644099906],[-71.5056,41.69646099906],[-71.505776,41.69646999906],[-71.506142,41.69646699906],[-71.506241,41.69645999906],[-71.506332,41.69645799906],[-71.506462,41.69645499906],[-71.50679,41.69641199906],[-71.506904,41.69639599906],[-71.507347,41.69633699906],[-71.507721,41.69628399906],[-71.507942,41.69626499906],[-71.508263,41.69624499906],[-71.508606,41.69622799906],[-71.509148,41.69620299906],[-71.511216,41.69610399906],[-71.511574,41.69608699906]]]}}"}, +{"type": "blockgroup", "typeId": 201022, "areaId": 29166, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.532988,41.67977199906],[-71.532638,41.67982599906],[-71.532486,41.67983999906],[-71.53196,41.67991899906],[-71.531631,41.67998499906],[-71.530904,41.68011399906],[-71.530481,41.68018299906],[-71.530386,41.68019799906],[-71.53005,41.68025199906],[-71.529858,41.68027499906],[-71.52969,41.68029499906],[-71.529587,41.68029999906],[-71.529442,41.68031199906],[-71.528847,41.68037499906],[-71.528702,41.68039199906],[-71.52832,41.68043599906],[-71.527954,41.68048899906],[-71.527687,41.68054499906],[-71.527473,41.68060299906],[-71.527336,41.68064699906],[-71.527268,41.68067099906],[-71.52697,41.68078099906],[-71.526805,41.68085699906],[-71.526764,41.68087599906],[-71.526604,41.68095599906],[-71.52639,41.68110499906],[-71.526253,41.68121999906],[-71.526115,41.68138999906],[-71.525917,41.68173199906],[-71.525772,41.68200499906],[-71.52565,41.68225999906],[-71.525596,41.68236499906],[-71.525535,41.68245599906],[-71.525444,41.68261099906],[-71.525401,41.68266599906],[-71.525299,41.68279899906],[-71.525162,41.68296399906],[-71.524933,41.68318499906],[-71.524651,41.68341199906],[-71.524406,41.68360699906],[-71.524124,41.68382899906],[-71.524094,41.68385699906],[-71.523903,41.68402799906],[-71.523778,41.68413599906],[-71.523659,41.68421299906],[-71.523575,41.68423799906],[-71.523529,41.68425699906],[-71.523315,41.68432399906],[-71.523262,41.68434299906],[-71.52314,41.68436899906],[-71.52298,41.68439499906],[-71.522781,41.68440799906],[-71.522575,41.68441699906],[-71.522491,41.68442299906],[-71.522408,41.68442999906],[-71.522201,41.68443899906],[-71.521889,41.68444999906],[-71.521507,41.68447199906],[-71.521126,41.68447599906],[-71.520982,41.68447899906],[-71.520706,41.68448499906],[-71.520371,41.68448799906],[-71.520066,41.68450399906],[-71.520096,41.68488999906],[-71.520096,41.68496699906],[-71.520111,41.68536299906],[-71.520119,41.68571799906],[-71.520141,41.68613199906],[-71.520149,41.68645199906],[-71.520164,41.68690199906],[-71.520172,41.68711299906],[-71.520188,41.68728399906],[-71.520202,41.68769299906],[-71.520218,41.68796299906],[-71.520233,41.68807099906],[-71.520248,41.68830499906],[-71.520264,41.68861999906],[-71.520275,41.68877799906],[-71.520294,41.68904699906],[-71.520332,41.68932999906],[-71.520371,41.68960299906],[-71.520386,41.68967099906],[-71.520454,41.69014199906],[-71.52047,41.69028099906],[-71.520477,41.69035799906],[-71.520515,41.69060499906],[-71.520558,41.69085899906],[-71.520569,41.69092799906],[-71.520645,41.69144399906],[-71.520721,41.69190599906],[-71.520828,41.69215599906],[-71.52092,41.69240099906],[-71.521126,41.69300899906],[-71.521317,41.69359899906],[-71.521462,41.69411899906],[-71.522034,41.69563699906],[-71.522144,41.69591799906],[-71.522202,41.69591699906],[-71.522255,41.69590699906],[-71.522316,41.69590599906],[-71.522385,41.69589099906],[-71.522438,41.69585799906],[-71.522522,41.69581599906],[-71.522583,41.69576499906],[-71.522613,41.69569199906],[-71.522614,41.69562899906],[-71.522598,41.69556199906],[-71.522583,41.69553999906],[-71.52256,41.69550899906],[-71.522491,41.69545099906],[-71.522462,41.69542999906],[-71.522392,41.69537699906],[-71.522346,41.69531499906],[-71.522308,41.69524799906],[-71.52227,41.69517699906],[-71.522239,41.69509699906],[-71.522232,41.69504299906],[-71.522247,41.69497999906],[-71.522255,41.69491199906],[-71.522255,41.69484399906],[-71.522278,41.69477599906],[-71.522331,41.69471199906],[-71.5224,41.69465199906],[-71.52243,41.69460199906],[-71.522431,41.69454799906],[-71.522453,41.69450199906],[-71.522507,41.69445599906],[-71.522553,41.69439599906],[-71.522583,41.69434599906],[-71.522613,41.69426899906],[-71.522636,41.69419599906],[-71.522644,41.69414199906],[-71.522659,41.69406499906],[-71.522652,41.69398399906],[-71.522637,41.69393099906],[-71.522606,41.69387299906],[-71.522583,41.69381899906],[-71.522491,41.69367699906],[-71.522438,41.69360599906],[-71.522339,41.69350999906],[-71.522286,41.69346099906],[-71.522232,41.69340399906],[-71.522171,41.69334699906],[-71.52211,41.69328499906],[-71.522049,41.69322799906],[-71.521996,41.69316999906],[-71.521957,41.69310799906],[-71.521934,41.69304599906],[-71.521957,41.69298199906],[-71.521965,41.69291899906],[-71.522003,41.69285899906],[-71.522064,41.69282199906],[-71.522125,41.69277999906],[-71.522179,41.69273399906],[-71.522232,41.69269699906],[-71.522293,41.69264099906],[-71.522339,41.69257299906],[-71.522362,41.69250499906],[-71.522377,41.69242799906],[-71.522385,41.69236499906],[-71.522423,41.69230099906],[-71.522461,41.69224999906],[-71.522469,41.69218699906],[-71.522514,41.69213199906],[-71.522552,41.69207299906],[-71.522552,41.69201899906],[-71.52256,41.69195599906],[-71.522583,41.69192399906],[-71.522606,41.69188699906],[-71.522652,41.69184599906],[-71.522713,41.69178599906],[-71.522754,41.69173199906],[-71.522827,41.69168399906],[-71.522919,41.69166399906],[-71.522972,41.69166699906],[-71.523064,41.69168799906],[-71.523117,41.69165099906],[-71.523171,41.69160899906],[-71.523216,41.69159899906],[-71.52327,41.69166099906],[-71.523308,41.69173199906],[-71.523453,41.69181399906],[-71.523552,41.69185699906],[-71.523628,41.69188699906],[-71.523697,41.69191299906],[-71.523773,41.69193799906],[-71.523842,41.69196799906],[-71.523918,41.69197999906],[-71.523995,41.69195999906],[-71.524086,41.69196299906],[-71.524162,41.69196999906],[-71.5243,41.69200299906],[-71.524391,41.69203699906],[-71.524483,41.69206599906],[-71.524582,41.69207299906],[-71.524681,41.69209399906],[-71.52475,41.69210999906],[-71.524849,41.69212099906],[-71.525017,41.69217599906],[-71.525093,41.69220199906],[-71.525169,41.69222199906],[-71.525253,41.69223899906],[-71.52536,41.69224499906],[-71.525445,41.69224299906],[-71.525528,41.69221499906],[-71.525597,41.69216799906],[-71.525726,41.69207099906],[-71.525787,41.69201499906],[-71.525825,41.69195999906],[-71.525848,41.69189199906],[-71.525841,41.69183799906],[-71.525764,41.69180399906],[-71.525734,41.69174599906],[-71.525719,41.69168799906],[-71.525665,41.69162199906],[-71.525619,41.69157799906],[-71.52552,41.69146699906],[-71.525482,41.69141899906],[-71.525436,41.69136599906],[-71.525383,41.69130799906],[-71.52533,41.69126399906],[-71.525276,41.69122499906],[-71.525238,41.69117599906],[-71.525246,41.69110899906],[-71.525246,41.69097799906],[-71.525261,41.69090099906],[-71.525299,41.69082799906],[-71.52536,41.69068299906],[-71.525383,41.69062399906],[-71.525398,41.69056899906],[-71.525444,41.69050499906],[-71.525474,41.69046399906],[-71.525505,41.69040899906],[-71.525528,41.69035899906],[-71.525604,41.69021399906],[-71.525642,41.69014999906],[-71.525688,41.69010399906],[-71.525734,41.69005299906],[-71.525802,41.69001099906],[-71.52594,41.68993599906],[-71.526009,41.68990699906],[-71.526085,41.68988799906],[-71.526161,41.68987299906],[-71.526253,41.68985299906],[-71.526337,41.68983699906],[-71.526428,41.68982599906],[-71.526527,41.68980599906],[-71.526619,41.68978099906],[-71.52668,41.68974399906],[-71.526718,41.68968899906],[-71.526741,41.68962599906],[-71.526772,41.68957099906],[-71.526787,41.68950299906],[-71.526787,41.68931799906],[-71.526764,41.68925999906],[-71.526726,41.68918899906],[-71.526726,41.68913499906],[-71.526756,41.68900799906],[-71.526764,41.68895899906],[-71.526764,41.68881499906],[-71.52681,41.68867899906],[-71.526825,41.68861099906],[-71.52684,41.68853399906],[-71.526863,41.68846099906],[-71.526886,41.68839799906],[-71.526901,41.68832999906],[-71.526916,41.68819899906],[-71.526924,41.68813999906],[-71.526939,41.68808599906],[-71.526947,41.68802299906],[-71.526947,41.68788299906],[-71.526939,41.68781999906],[-71.526924,41.68775699906],[-71.526901,41.68768999906],[-71.526878,41.68763199906],[-71.52684,41.68756999906],[-71.526817,41.68750799906],[-71.526802,41.68748099906],[-71.526787,41.68744099906],[-71.526768,41.68741599906],[-71.526657,41.68729899906],[-71.526596,41.68724199906],[-71.526527,41.68718499906],[-71.526451,41.68713299906],[-71.526375,41.68707599906],[-71.526298,41.68702799906],[-71.526123,41.68694599906],[-71.526039,41.68690299906],[-71.52597,41.68686899906],[-71.525894,41.68684299906],[-71.525818,41.68682299906],[-71.525719,41.68680699906],[-71.525635,41.68679099906],[-71.525559,41.68676499906],[-71.52549,41.68671699906],[-71.525421,41.68667399906],[-71.525353,41.68662099906],[-71.525307,41.68657299906],[-71.525261,41.68651999906],[-71.525215,41.68647599906],[-71.525154,41.68642699906],[-71.525116,41.68637899906],[-71.525116,41.68632499906],[-71.525108,41.68629299906],[-71.525085,41.68623999906],[-71.52507,41.68618599906],[-71.525055,41.68611899906],[-71.525002,41.68594399906],[-71.524994,41.68589099906],[-71.524963,41.68583699906],[-71.524918,41.68580199906],[-71.52494,41.68578799906],[-71.525002,41.68573699906],[-71.525062,41.68569099906],[-71.525101,41.68563999906],[-71.525253,41.68565499906],[-71.525322,41.68566699906],[-71.525368,41.68570699906],[-71.525437,41.68572799906],[-71.525597,41.68574199906],[-71.525665,41.68573199906],[-71.525719,41.68568099906],[-71.525787,41.68563399906],[-71.525803,41.68558899906],[-71.525803,41.68552599906],[-71.525871,41.68548799906],[-71.52594,41.68544199906],[-71.526024,41.68542699906],[-71.526108,41.68539799906],[-71.526184,41.68542799906],[-71.52626,41.68546199906],[-71.526344,41.68547399906],[-71.526413,41.68549899906],[-71.526443,41.68555699906],[-71.526459,41.68562899906],[-71.526459,41.68575899906],[-71.526451,41.68581799906],[-71.526451,41.68599399906],[-71.526474,41.68600199906],[-71.526543,41.68598299906],[-71.52655,41.68592399906],[-71.526551,41.68579299906],[-71.52655,41.68550099906],[-71.526596,41.68547299906],[-71.526673,41.68544799906],[-71.526749,41.68541999906],[-71.52684,41.68539499906],[-71.526916,41.68538399906],[-71.527008,41.68538199906],[-71.527092,41.68540799906],[-71.527168,41.68545499906],[-71.527237,41.68551699906],[-71.52729,41.68555199906],[-71.527306,41.68551099906],[-71.527435,41.68554899906],[-71.527489,41.68555599906],[-71.527481,41.68558799906],[-71.527512,41.68560499906],[-71.527588,41.68559499906],[-71.527664,41.68557999906],[-71.527733,41.68555099906],[-71.527802,41.68552699906],[-71.52787,41.68549399906],[-71.527954,41.68546499906],[-71.528023,41.68543199906],[-71.528099,41.68538999906],[-71.528153,41.68535299906],[-71.528214,41.68531999906],[-71.528275,41.68527799906],[-71.528328,41.68522699906],[-71.528412,41.68520299906],[-71.528458,41.68516999906],[-71.528504,41.68510599906],[-71.528565,41.68505999906],[-71.528633,41.68503599906],[-71.528648,41.68498199906],[-71.528679,41.68492699906],[-71.528709,41.68486799906],[-71.52874,41.68481299906],[-71.528763,41.68475399906],[-71.528786,41.68468099906],[-71.528816,41.68454599906],[-71.528824,41.68446399906],[-71.528824,41.68427099906],[-71.528809,41.68423999906],[-71.528801,41.68421299906],[-71.528778,41.68414999906],[-71.528793,41.68407799906],[-71.528778,41.68396599906],[-71.528786,41.68390699906],[-71.528801,41.68383399906],[-71.528824,41.68376199906],[-71.5289,41.68363399906],[-71.528946,41.68357499906],[-71.529007,41.68352399906],[-71.52906,41.68347699906],[-71.529083,41.68341799906],[-71.529144,41.68338099906],[-71.529221,41.68334799906],[-71.529281,41.68331099906],[-71.529351,41.68328199906],[-71.529381,41.68322299906],[-71.529442,41.68318999906],[-71.529518,41.68316099906],[-71.529587,41.68312799906],[-71.529633,41.68307799906],[-71.529701,41.68303599906],[-71.529778,41.68300199906],[-71.529831,41.68294699906],[-71.529884,41.68292799906],[-71.530045,41.68289699906],[-71.530128,41.68290899906],[-71.530213,41.68291199906],[-71.530289,41.68292399906],[-71.530365,41.68291699906],[-71.530441,41.68293399906],[-71.530517,41.68293199906],[-71.530609,41.68291199906],[-71.530685,41.68287899906],[-71.530746,41.68285499906],[-71.530823,41.68281699906],[-71.530891,41.68277999906],[-71.530945,41.68273799906],[-71.530998,41.68269199906],[-71.531052,41.68264099906],[-71.53112,41.68260799906],[-71.531181,41.68256199906],[-71.531265,41.68250999906],[-71.531365,41.68241799906],[-71.531418,41.68236699906],[-71.531479,41.68231199906],[-71.531547,41.68226499906],[-71.531624,41.68221899906],[-71.531677,41.68217699906],[-71.531723,41.68213099906],[-71.531769,41.68207099906],[-71.531837,41.68202899906],[-71.531914,41.68202799906],[-71.531975,41.68199499906],[-71.532028,41.68194899906],[-71.532081,41.68193399906],[-71.53215,41.68189199906],[-71.532227,41.68185899906],[-71.532303,41.68183399906],[-71.532379,41.68183299906],[-71.532433,41.68182299906],[-71.532501,41.68182599906],[-71.532578,41.68180999906],[-71.532607,41.68181699906],[-71.532648,41.68182599906],[-71.532707,41.68180299906],[-71.532738,41.68182899906],[-71.532753,41.68187899906],[-71.532799,41.68189099906],[-71.532875,41.68192099906],[-71.532908,41.68163899906],[-71.532902,41.68157199906],[-71.532909,41.68038699906],[-71.532962,41.68032599906],[-71.532968,41.68021599906],[-71.532972,41.68013299906],[-71.532983,41.67990299906],[-71.532988,41.67977199906]]]}}"}, +{"type": "blockgroup", "typeId": 201023, "areaId": 29167, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.522034,41.69563699906],[-71.521462,41.69411899906],[-71.521317,41.69359899906],[-71.521126,41.69300899906],[-71.52092,41.69240099906],[-71.520828,41.69215599906],[-71.520721,41.69190599906],[-71.520645,41.69144399906],[-71.520569,41.69092799906],[-71.520558,41.69085899906],[-71.520515,41.69060499906],[-71.520477,41.69035799906],[-71.52047,41.69028099906],[-71.520454,41.69014199906],[-71.520386,41.68967099906],[-71.520371,41.68960299906],[-71.520332,41.68932999906],[-71.520294,41.68904699906],[-71.520275,41.68877799906],[-71.520264,41.68861999906],[-71.520248,41.68830499906],[-71.520233,41.68807099906],[-71.520218,41.68796299906],[-71.520202,41.68769299906],[-71.520188,41.68728399906],[-71.520172,41.68711299906],[-71.520164,41.68690199906],[-71.520149,41.68645199906],[-71.520141,41.68613199906],[-71.520119,41.68571799906],[-71.520111,41.68536299906],[-71.520096,41.68496699906],[-71.520096,41.68488999906],[-71.520066,41.68450399906],[-71.519668,41.68450299906],[-71.519585,41.68450499906],[-71.519386,41.68450999906],[-71.518944,41.68452799906],[-71.518761,41.68453699906],[-71.518715,41.68453799906],[-71.518509,41.68454199906],[-71.518272,41.68455199906],[-71.51815,41.68455499906],[-71.517914,41.68456399906],[-71.51783,41.68457099906],[-71.517639,41.68457899906],[-71.517601,41.68457599906],[-71.517406,41.68458299906],[-71.51712,41.68459499906],[-71.516953,41.68460299906],[-71.516617,41.68462399906],[-71.516281,41.68463199906],[-71.516083,41.68463599906],[-71.515846,41.68464099906],[-71.515274,41.68467199906],[-71.514694,41.68469299906],[-71.514206,41.68470899906],[-71.514084,41.68471599906],[-71.513779,41.68472699906],[-71.513542,41.68473699906],[-71.513283,41.68474699906],[-71.512984,41.68475899906],[-71.512855,41.68476499906],[-71.512428,41.68478399906],[-71.5121,41.68479099906],[-71.511658,41.68480499906],[-71.511286,41.68480599906],[-71.511094,41.68480799906],[-71.510719,41.68479799906],[-71.510605,41.68479599906],[-71.510552,41.68479799906],[-71.510246,41.68479499906],[-71.509895,41.68479399906],[-71.509598,41.68480499906],[-71.509437,41.68481299906],[-71.509468,41.68525299906],[-71.509529,41.68632799906],[-71.509529,41.68638199906],[-71.509541,41.68664899906],[-71.509551,41.68689199906],[-71.509559,41.68705299906],[-71.509567,41.68711099906],[-71.509567,41.68715199906],[-71.509575,41.68725699906],[-71.509598,41.68752499906],[-71.509621,41.68790199906],[-71.509628,41.68850999906],[-71.509648,41.68872099906],[-71.509667,41.68890999906],[-71.509689,41.68920199906],[-71.509705,41.68949499906],[-71.509712,41.68963899906],[-71.509712,41.68967899906],[-71.509743,41.69018299906],[-71.50975,41.69021399906],[-71.509773,41.69048799906],[-71.509788,41.69079899906],[-71.509827,41.69148699906],[-71.509857,41.69194999906],[-71.509865,41.69212999906],[-71.509895,41.69262899906],[-71.509895,41.69277799906],[-71.509926,41.69312799906],[-71.509994,41.69338399906],[-71.51001,41.69343699906],[-71.51004,41.69354499906],[-71.510124,41.69388099906],[-71.510192,41.69409999906],[-71.510208,41.69415299906],[-71.510246,41.69426099906],[-71.510361,41.69441999906],[-71.510719,41.69473699906],[-71.511017,41.69503599906],[-71.511185,41.69533899906],[-71.511444,41.69585599906],[-71.511574,41.69608699906],[-71.511742,41.69608799906],[-71.512184,41.69607399906],[-71.512558,41.69606999906],[-71.513443,41.69605099906],[-71.514177,41.69604599906],[-71.514252,41.69604599906],[-71.514544,41.69604299906],[-71.514712,41.69604199906],[-71.514977,41.69603999906],[-71.515419,41.69603899906],[-71.515885,41.69602899906],[-71.516335,41.69602299906],[-71.516594,41.69601699906],[-71.5168,41.69601299906],[-71.517159,41.69600099906],[-71.517342,41.69599199906],[-71.51738,41.69598699906],[-71.517859,41.69596099906],[-71.518298,41.69593799906],[-71.518532,41.69592599906],[-71.518913,41.69589899906],[-71.519646,41.69586099906],[-71.520569,41.69580899906],[-71.521065,41.69578499906],[-71.521332,41.69577399906],[-71.521599,41.69572799906],[-71.521881,41.69567199906],[-71.522034,41.69563699906]]]}}"}, +{"type": "blockgroup", "typeId": 202001, "areaId": 29168, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.523682,41.71543699906],[-71.523453,41.71533399906],[-71.523232,41.71521699906],[-71.523049,41.71511799906],[-71.522888,41.71502699906],[-71.52272,41.71494499906],[-71.522644,41.71490599906],[-71.522591,41.71487999906],[-71.522476,41.71481999906],[-71.52195,41.71455199906],[-71.521446,41.71430199906],[-71.521111,41.71415199906],[-71.520951,41.71408299906],[-71.520767,41.71400999906],[-71.520561,41.71395199906],[-71.520393,41.71391499906],[-71.520294,41.71388999906],[-71.520195,41.71386999906],[-71.520163,41.71386499906],[-71.520073,41.71384999906],[-71.520081,41.71369199906],[-71.52005,41.71300399906],[-71.520019,41.71223899906],[-71.519997,41.71201899906],[-71.519989,41.71176699906],[-71.519974,41.71154199906],[-71.519974,41.71140699906],[-71.519989,41.71123099906],[-71.520058,41.71116199906],[-71.520157,41.71105599906],[-71.520218,41.71094199906],[-71.52047,41.71048199906],[-71.520836,41.70978499906],[-71.520912,41.70963499906],[-71.521118,41.70924799906],[-71.521271,41.70897399906],[-71.521332,41.70886499906],[-71.521553,41.70844099906],[-71.521584,41.70839499906],[-71.521561,41.70825199906],[-71.521538,41.70807699906],[-71.521523,41.70799099906],[-71.521507,41.70787499906],[-71.521484,41.70775299906],[-71.521462,41.70764999906],[-71.521446,41.70762799906],[-71.521408,41.70757999906],[-71.521347,41.70752699906],[-71.521225,41.70744399906],[-71.521073,41.70733499906],[-71.520882,41.70723499906],[-71.52076,41.70717899906],[-71.52066,41.70714099906],[-71.520537,41.70711999906],[-71.520477,41.70710899906],[-71.520401,41.70709299906],[-71.520355,41.70708299906],[-71.520263,41.70706399906],[-71.519959,41.70700799906],[-71.519287,41.70686999906],[-71.518845,41.70677599906],[-71.518639,41.70673999906],[-71.518395,41.70668599906],[-71.51812,41.70662899906],[-71.517845,41.70657699906],[-71.51757,41.70652899906],[-71.517425,41.70649599906],[-71.517197,41.70645199906],[-71.516915,41.70639899906],[-71.51677,41.70637999906],[-71.516411,41.70630199906],[-71.516129,41.70624499906],[-71.51577,41.70616799906],[-71.515351,41.70608699906],[-71.515152,41.70604199906],[-71.514847,41.70598499906],[-71.514488,41.70591599906],[-71.514458,41.70591299906],[-71.514313,41.70587999906],[-71.514252,41.70586299906],[-71.514145,41.70584299906],[-71.514053,41.70582199906],[-71.513863,41.70578599906],[-71.513657,41.70575499906],[-71.513474,41.70571299906],[-71.513336,41.70569399906],[-71.51326,41.70583099906],[-71.513191,41.70596699906],[-71.51313,41.70608999906],[-71.513062,41.70621299906],[-71.513001,41.70631399906],[-71.512924,41.70645099906],[-71.512795,41.70663799906],[-71.512764,41.70667499906],[-71.512634,41.70678999906],[-71.512482,41.70689699906],[-71.512192,41.70706999906],[-71.511971,41.70719599906],[-71.511904,41.70722999906],[-71.511475,41.70745499906],[-71.511063,41.70764399906],[-71.510971,41.70768699906],[-71.510872,41.70773399906],[-71.510689,41.70780999906],[-71.510391,41.70793799906],[-71.510002,41.70808599906],[-71.509598,41.70826099906],[-71.509277,41.70838999906],[-71.507664,41.70907499906],[-71.507233,41.70925899906],[-71.506691,41.70948199906],[-71.506584,41.70968299906],[-71.506256,41.71019899906],[-71.506187,41.71029499906],[-71.506088,41.71044099906],[-71.505966,41.71060599906],[-71.505821,41.71077599906],[-71.505688,41.71090099906],[-71.505604,41.71098099906],[-71.505404,41.71115399906],[-71.505294,41.71123999906],[-71.505188,41.71130699906],[-71.505005,41.71135599906],[-71.504883,41.71138599906],[-71.504745,41.71139799906],[-71.503568,41.71142699906],[-71.503502,41.71142899906],[-71.50338,41.71142799906],[-71.502365,41.71147199906],[-71.502899,41.71159099906],[-71.504723,41.71215899906],[-71.505363,41.71237099906],[-71.505631,41.71247299906],[-71.505875,41.71256699906],[-71.506912,41.71305299906],[-71.507278,41.71322899906],[-71.507431,41.71330299906],[-71.507545,41.71335199906],[-71.507698,41.71341799906],[-71.507813,41.71346099906],[-71.508156,41.71357999906],[-71.508263,41.71361799906],[-71.508362,41.71365199906],[-71.508438,41.71367199906],[-71.508652,41.71372599906],[-71.508873,41.71377499906],[-71.509094,41.71381599906],[-71.509201,41.71382699906],[-71.509315,41.71384199906],[-71.509575,41.71387299906],[-71.509712,41.71388299906],[-71.509888,41.71389299906],[-71.510056,41.71390699906],[-71.510231,41.71391699906],[-71.511116,41.71396099906],[-71.512345,41.71406899906],[-71.51329,41.71417899906],[-71.513662,41.71424299906],[-71.514378,41.71436599906],[-71.514336,41.71438599906],[-71.514259,41.71441399906],[-71.514175,41.71444799906],[-71.514099,41.71447599906],[-71.51403,41.71450899906],[-71.513962,41.71452399906],[-71.513794,41.71452799906],[-71.51371,41.71452499906],[-71.513527,41.71452899906],[-71.513443,41.71452699906],[-71.513351,41.71452899906],[-71.513252,41.71451699906],[-71.513145,41.71450599906],[-71.512947,41.71450199906],[-71.512863,41.71449899906],[-71.512687,41.71450299906],[-71.512596,41.71451399906],[-71.512497,41.71453799906],[-71.512428,41.71455299906],[-71.512405,41.71456299906],[-71.512329,41.71458299906],[-71.512268,41.71462399906],[-71.51223,41.71466599906],[-71.512291,41.71479499906],[-71.512367,41.71476199906],[-71.512344,41.71469499906],[-71.512627,41.71460299906],[-71.51268,41.71466499906],[-71.512413,41.71480999906],[-71.512314,41.71483099906],[-71.51223,41.71486799906],[-71.512138,41.71490199906],[-71.511955,41.71497799906],[-71.511902,41.71500599906],[-71.511865,41.71501699906],[-71.511795,41.71504899906],[-71.511658,41.71511499906],[-71.51152,41.71520799906],[-71.511398,41.71529199906],[-71.511345,41.71533799906],[-71.511276,41.71537999906],[-71.511207,41.71543599906],[-71.511146,41.71548699906],[-71.511086,41.71554599906],[-71.511032,41.71561099906],[-71.51091,41.71572999906],[-71.510857,41.71578599906],[-71.510811,41.71583599906],[-71.510742,41.71595899906],[-71.510735,41.71601799906],[-71.510742,41.71608099906],[-71.51078,41.71614299906],[-71.510819,41.71621399906],[-71.510811,41.71626799906],[-71.510758,41.71631499906],[-71.510719,41.71633799906],[-71.510681,41.71635699906],[-71.510635,41.71637099906],[-71.510584,41.71638399906],[-71.510511,41.71648699906],[-71.510704,41.71649399906],[-71.510696,41.71650699906],[-71.510719,41.71652699906],[-71.510811,41.71656099906],[-71.510879,41.71658199906],[-71.510971,41.71662499906],[-71.511063,41.71665499906],[-71.511147,41.71667999906],[-71.511207,41.71672799906],[-71.511261,41.71676699906],[-71.511322,41.71680699906],[-71.511391,41.71684599906],[-71.511459,41.71689799906],[-71.51152,41.71694199906],[-71.511589,41.71698499906],[-71.51165,41.71702899906],[-71.511711,41.71706799906],[-71.511784,41.71710999906],[-71.511786,41.71724299906],[-71.511786,41.71732799906],[-71.511796,41.71749399906],[-71.511856,41.71754199906],[-71.511925,41.71758999906],[-71.511978,41.71764299906],[-71.512024,41.71769599906],[-71.51207,41.71775799906],[-71.512123,41.71781599906],[-71.512169,41.71789099906],[-71.512207,41.71798099906],[-71.512238,41.71806499906],[-71.512268,41.71814099906],[-71.512298,41.71820799906],[-71.512329,41.71827099906],[-71.512359,41.71831899906],[-71.512413,41.71845299906],[-71.512444,41.71853399906],[-71.512466,41.71859599906],[-71.512505,41.71865899906],[-71.51252,41.71868099906],[-71.512588,41.71875599906],[-71.512657,41.71881299906],[-71.512733,41.71887399906],[-71.512818,41.71893999906],[-71.512901,41.71900599906],[-71.51297,41.71906699906],[-71.513031,41.71913299906],[-71.513168,41.71926499906],[-71.513229,41.71932699906],[-71.51329,41.71938399906],[-71.513405,41.71949399906],[-71.513451,41.71955199906],[-71.513504,41.71960899906],[-71.513573,41.71966599906],[-71.513718,41.71976699906],[-71.513847,41.71983099906],[-71.513924,41.71985699906],[-71.514007,41.71988199906],[-71.514099,41.71991199906],[-71.514191,41.71992799906],[-71.51429,41.71995199906],[-71.514389,41.71997299906],[-71.514572,41.72000499906],[-71.51477,41.72002699906],[-71.514816,41.72003499906],[-71.51487,41.72004299906],[-71.514961,41.72005499906],[-71.515053,41.72006199906],[-71.515144,41.72006399906],[-71.515411,41.72005799906],[-71.515503,41.72005199906],[-71.515594,41.72004499906],[-71.515801,41.72003199906],[-71.515976,41.72000099906],[-71.51606,41.71998099906],[-71.516128,41.71995299906],[-71.516205,41.71991899906],[-71.516267,41.71989299906],[-71.516281,41.71988599906],[-71.516434,41.71983799906],[-71.516518,41.71981399906],[-71.516602,41.71979399906],[-71.516678,41.71976899906],[-71.516762,41.71973599906],[-71.516846,41.71970699906],[-71.516914,41.71967899906],[-71.516975,41.71964099906],[-71.517044,41.71960799906],[-71.517105,41.71957099906],[-71.517174,41.71953299906],[-71.517235,41.71949199906],[-71.517311,41.71945399906],[-71.51738,41.71941199906],[-71.517456,41.71937899906],[-71.51754,41.71934099906],[-71.517609,41.71929899906],[-71.517632,41.71928899906],[-71.517685,41.71925699906],[-71.517746,41.71921499906],[-71.517822,41.71915499906],[-71.517883,41.71909499906],[-71.517998,41.71894399906],[-71.518028,41.71889299906],[-71.518074,41.71884699906],[-71.518127,41.71880999906],[-71.518173,41.71876899906],[-71.518227,41.71871799906],[-71.51828,41.71866299906],[-71.518334,41.71860299906],[-71.518379,41.71854799906],[-71.518425,41.71849699906],[-71.518471,41.71845599906],[-71.518524,41.71838699906],[-71.518562,41.71831399906],[-71.518578,41.71825999906],[-71.518601,41.71820499906],[-71.518616,41.71814599906],[-71.518639,41.71809199906],[-71.518654,41.71802899906],[-71.518662,41.71796999906],[-71.518661,41.71790699906],[-71.518662,41.71784399906],[-71.518662,41.71766799906],[-71.518608,41.71758399906],[-71.518578,41.71753499906],[-71.518539,41.71748199906],[-71.518509,41.71742799906],[-71.518486,41.71736599906],[-71.518486,41.71729799906],[-71.518516,41.71724399906],[-71.518539,41.71718899906],[-71.518562,41.71712099906],[-71.51857,41.71704399906],[-71.51857,41.71697199906],[-71.518562,41.71690899906],[-71.518562,41.71682399906],[-71.518547,41.71671099906],[-71.518547,41.71635999906],[-71.518562,41.71628299906],[-71.518585,41.71620599906],[-71.518616,41.71613799906],[-71.518654,41.71607399906],[-71.5187,41.71600599906],[-71.518738,41.71593699906],[-71.518753,41.71587399906],[-71.518768,41.71581999906],[-71.518791,41.71576499906],[-71.518807,41.71568799906],[-71.518814,41.71562899906],[-71.518829,41.71555699906],[-71.518837,41.71549399906],[-71.518829,41.71543499906],[-71.518837,41.71538099906],[-71.518837,41.71535899906],[-71.51886,41.71529999906],[-71.518875,41.71522699906],[-71.518898,41.71516799906],[-71.518936,41.71511799906],[-71.518982,41.71506299906],[-71.519028,41.71502099906],[-71.519097,41.71497899906],[-71.519173,41.71493699906],[-71.519249,41.71490799906],[-71.519325,41.71487499906],[-71.519409,41.71484599906],[-71.519508,41.71482599906],[-71.519592,41.71481499906],[-71.519676,41.71481799906],[-71.519753,41.71482999906],[-71.519844,41.71484599906],[-71.520012,41.71487399906],[-71.520119,41.71489799906],[-71.520203,41.71491399906],[-71.520302,41.71492599906],[-71.520538,41.71496099906],[-71.52079,41.71500999906],[-71.520874,41.71502099906],[-71.52095,41.71503799906],[-71.521027,41.71504899906],[-71.521103,41.71506599906],[-71.521179,41.71507799906],[-71.521263,41.71508899906],[-71.52134,41.71510099906],[-71.521423,41.71512199906],[-71.5215,41.71514699906],[-71.521591,41.71516799906],[-71.521675,41.71519299906],[-71.521767,41.71520899906],[-71.521858,41.71522899906],[-71.52195,41.71524499906],[-71.522041,41.71525199906],[-71.522232,41.71525699906],[-71.522316,41.71525499906],[-71.5224,41.71525799906],[-71.522484,41.71527399906],[-71.522568,41.71529499906],[-71.522591,41.71530299906],[-71.522659,41.71531999906],[-71.522736,41.71534499906],[-71.522812,41.71537999906],[-71.52288,41.71541899906],[-71.523018,41.71547899906],[-71.523094,41.71551299906],[-71.523155,41.71554799906],[-71.523216,41.71558699906],[-71.523285,41.71562599906],[-71.523346,41.71566999906],[-71.523407,41.71570399906],[-71.523476,41.71573899906],[-71.523544,41.71577799906],[-71.523596,41.71580399906],[-71.523644,41.71559199906],[-71.523682,41.71543699906]]]}}"}, +{"type": "blockgroup", "typeId": 202002, "areaId": 29169, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.524575,41.70107999906],[-71.524208,41.70080799906],[-71.52388,41.70055899906],[-71.523811,41.70048399906],[-71.523773,41.70040799906],[-71.523468,41.69939299906],[-71.523224,41.69852899906],[-71.52298,41.69766099906],[-71.522858,41.69721299906],[-71.52269,41.69665799906],[-71.522629,41.69638999906],[-71.522263,41.69646999906],[-71.522272,41.69634299906],[-71.522247,41.69619999906],[-71.522194,41.69605599906],[-71.522144,41.69591799906],[-71.522034,41.69563699906],[-71.521881,41.69567199906],[-71.521599,41.69572799906],[-71.521332,41.69577399906],[-71.521065,41.69578499906],[-71.520569,41.69580899906],[-71.519646,41.69586099906],[-71.518913,41.69589899906],[-71.518844,41.69602699906],[-71.518631,41.69639199906],[-71.518394,41.69680699906],[-71.51828,41.69701199906],[-71.517998,41.69750899906],[-71.517807,41.69785499906],[-71.517662,41.69809299906],[-71.517517,41.69834299906],[-71.517433,41.69849799906],[-71.517265,41.69878999906],[-71.517174,41.69895399906],[-71.517029,41.69920099906],[-71.516815,41.69958399906],[-71.516701,41.69977099906],[-71.516418,41.70026299906],[-71.516167,41.70069699906],[-71.51608,41.70084899906],[-71.515953,41.70107499906],[-71.51574,41.70146299906],[-71.515556,41.70179099906],[-71.515175,41.70248799906],[-71.515053,41.70269299906],[-71.514856,41.70303699906],[-71.514763,41.70319999906],[-71.514507,41.70364099906],[-71.514329,41.70395699906],[-71.514038,41.70447199906],[-71.513626,41.70517399906],[-71.513428,41.70551599906],[-71.513336,41.70569399906],[-71.513474,41.70571299906],[-71.513657,41.70575499906],[-71.513863,41.70578599906],[-71.514053,41.70582199906],[-71.514145,41.70584299906],[-71.514252,41.70586299906],[-71.514313,41.70587999906],[-71.514458,41.70591299906],[-71.514488,41.70591599906],[-71.514847,41.70598499906],[-71.515152,41.70604199906],[-71.515351,41.70608699906],[-71.51577,41.70616799906],[-71.516129,41.70624499906],[-71.516411,41.70630199906],[-71.51677,41.70637999906],[-71.516915,41.70639899906],[-71.517197,41.70645199906],[-71.517425,41.70649599906],[-71.51757,41.70652899906],[-71.517845,41.70657699906],[-71.51812,41.70662899906],[-71.518395,41.70668599906],[-71.518639,41.70673999906],[-71.518845,41.70677599906],[-71.519287,41.70686999906],[-71.519959,41.70700799906],[-71.520263,41.70706399906],[-71.520355,41.70708299906],[-71.520401,41.70709299906],[-71.520477,41.70710899906],[-71.520537,41.70711999906],[-71.52066,41.70714099906],[-71.52076,41.70717899906],[-71.520882,41.70723499906],[-71.521073,41.70733499906],[-71.521225,41.70744399906],[-71.521347,41.70752699906],[-71.521408,41.70757999906],[-71.521446,41.70762799906],[-71.521462,41.70764999906],[-71.521484,41.70775299906],[-71.521507,41.70787499906],[-71.521523,41.70799099906],[-71.521538,41.70807699906],[-71.521561,41.70825199906],[-71.521584,41.70839499906],[-71.52166,41.70825399906],[-71.521723,41.70815399906],[-71.521713,41.70809999906],[-71.521706,41.70805299906],[-71.521652,41.70769099906],[-71.521607,41.70715199906],[-71.521576,41.70672499906],[-71.521591,41.70653999906],[-71.521599,41.70624699906],[-71.521622,41.70593099906],[-71.521683,41.70560599906],[-71.521721,41.70533499906],[-71.521759,41.70512199906],[-71.521835,41.70484099906],[-71.521927,41.70446599906],[-71.522087,41.70397099906],[-71.522179,41.70372599906],[-71.522278,41.70348499906],[-71.5224,41.70326599906],[-71.522507,41.70308799906],[-71.522705,41.70278199906],[-71.522964,41.70246099906],[-71.523216,41.70216799906],[-71.523388,41.70200299906],[-71.52346,41.70193299906],[-71.524498,41.70113499906],[-71.524575,41.70107999906]]]}}"}, +{"type": "blockgroup", "typeId": 202003, "areaId": 29170, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.533119,41.69510999906],[-71.5331,41.69464899906],[-71.533092,41.69351299906],[-71.533096,41.69283199906],[-71.53307,41.69199199906],[-71.533076,41.69194499906],[-71.533093,41.69115799906],[-71.533088,41.69049999906],[-71.533086,41.69010299906],[-71.533032,41.68958599906],[-71.533009,41.68849799906],[-71.532975,41.68699499906],[-71.532977,41.68692199906],[-71.532938,41.68534799906],[-71.532934,41.68512199906],[-71.532964,41.68445999906],[-71.532909,41.68415899906],[-71.53287,41.68285099906],[-71.532857,41.68236099906],[-71.532875,41.68192099906],[-71.532799,41.68189099906],[-71.532753,41.68187899906],[-71.532738,41.68182899906],[-71.532707,41.68180299906],[-71.532648,41.68182599906],[-71.532607,41.68181699906],[-71.532578,41.68180999906],[-71.532501,41.68182599906],[-71.532433,41.68182299906],[-71.532379,41.68183299906],[-71.532303,41.68183399906],[-71.532227,41.68185899906],[-71.53215,41.68189199906],[-71.532081,41.68193399906],[-71.532028,41.68194899906],[-71.531975,41.68199499906],[-71.531914,41.68202799906],[-71.531837,41.68202899906],[-71.531769,41.68207099906],[-71.531723,41.68213099906],[-71.531677,41.68217699906],[-71.531624,41.68221899906],[-71.531547,41.68226499906],[-71.531479,41.68231199906],[-71.531418,41.68236699906],[-71.531365,41.68241799906],[-71.531265,41.68250999906],[-71.531181,41.68256199906],[-71.53112,41.68260799906],[-71.531052,41.68264099906],[-71.530998,41.68269199906],[-71.530945,41.68273799906],[-71.530891,41.68277999906],[-71.530823,41.68281699906],[-71.530746,41.68285499906],[-71.530685,41.68287899906],[-71.530609,41.68291199906],[-71.530517,41.68293199906],[-71.530441,41.68293399906],[-71.530365,41.68291699906],[-71.530289,41.68292399906],[-71.530213,41.68291199906],[-71.530128,41.68290899906],[-71.530045,41.68289699906],[-71.529884,41.68292799906],[-71.529831,41.68294699906],[-71.529778,41.68300199906],[-71.529701,41.68303599906],[-71.529633,41.68307799906],[-71.529587,41.68312799906],[-71.529518,41.68316099906],[-71.529442,41.68318999906],[-71.529381,41.68322299906],[-71.529351,41.68328199906],[-71.529281,41.68331099906],[-71.529221,41.68334799906],[-71.529144,41.68338099906],[-71.529083,41.68341799906],[-71.52906,41.68347699906],[-71.529007,41.68352399906],[-71.528946,41.68357499906],[-71.5289,41.68363399906],[-71.528824,41.68376199906],[-71.528801,41.68383399906],[-71.528786,41.68390699906],[-71.528778,41.68396599906],[-71.528793,41.68407799906],[-71.528778,41.68414999906],[-71.528801,41.68421299906],[-71.528809,41.68423999906],[-71.528824,41.68427099906],[-71.528824,41.68446399906],[-71.528816,41.68454599906],[-71.528786,41.68468099906],[-71.528763,41.68475399906],[-71.52874,41.68481299906],[-71.528709,41.68486799906],[-71.528679,41.68492699906],[-71.528648,41.68498199906],[-71.528633,41.68503599906],[-71.528565,41.68505999906],[-71.528504,41.68510599906],[-71.528458,41.68516999906],[-71.528412,41.68520299906],[-71.528328,41.68522699906],[-71.528275,41.68527799906],[-71.528214,41.68531999906],[-71.528153,41.68535299906],[-71.528099,41.68538999906],[-71.528023,41.68543199906],[-71.527954,41.68546499906],[-71.52787,41.68549399906],[-71.527802,41.68552699906],[-71.527733,41.68555099906],[-71.527664,41.68557999906],[-71.527588,41.68559499906],[-71.527512,41.68560499906],[-71.527481,41.68558799906],[-71.527489,41.68555599906],[-71.527435,41.68554899906],[-71.527306,41.68551099906],[-71.52729,41.68555199906],[-71.527237,41.68551699906],[-71.527168,41.68545499906],[-71.527092,41.68540799906],[-71.527008,41.68538199906],[-71.526916,41.68538399906],[-71.52684,41.68539499906],[-71.526749,41.68541999906],[-71.526673,41.68544799906],[-71.526596,41.68547299906],[-71.52655,41.68550099906],[-71.526551,41.68579299906],[-71.52655,41.68592399906],[-71.526543,41.68598299906],[-71.526474,41.68600199906],[-71.526451,41.68599399906],[-71.526451,41.68581799906],[-71.526459,41.68575899906],[-71.526459,41.68562899906],[-71.526443,41.68555699906],[-71.526413,41.68549899906],[-71.526344,41.68547399906],[-71.52626,41.68546199906],[-71.526184,41.68542799906],[-71.526108,41.68539799906],[-71.526024,41.68542699906],[-71.52594,41.68544199906],[-71.525871,41.68548799906],[-71.525803,41.68552599906],[-71.525803,41.68558899906],[-71.525787,41.68563399906],[-71.525719,41.68568099906],[-71.525665,41.68573199906],[-71.525597,41.68574199906],[-71.525437,41.68572799906],[-71.525368,41.68570699906],[-71.525322,41.68566699906],[-71.525253,41.68565499906],[-71.525101,41.68563999906],[-71.525062,41.68569099906],[-71.525002,41.68573699906],[-71.52494,41.68578799906],[-71.524918,41.68580199906],[-71.524963,41.68583699906],[-71.524994,41.68589099906],[-71.525002,41.68594399906],[-71.525055,41.68611899906],[-71.52507,41.68618599906],[-71.525085,41.68623999906],[-71.525108,41.68629299906],[-71.525116,41.68632499906],[-71.525116,41.68637899906],[-71.525154,41.68642699906],[-71.525215,41.68647599906],[-71.525261,41.68651999906],[-71.525307,41.68657299906],[-71.525353,41.68662099906],[-71.525421,41.68667399906],[-71.52549,41.68671699906],[-71.525559,41.68676499906],[-71.525635,41.68679099906],[-71.525719,41.68680699906],[-71.525818,41.68682299906],[-71.525894,41.68684299906],[-71.52597,41.68686899906],[-71.526039,41.68690299906],[-71.526123,41.68694599906],[-71.526298,41.68702799906],[-71.526375,41.68707599906],[-71.526451,41.68713299906],[-71.526527,41.68718499906],[-71.526596,41.68724199906],[-71.526657,41.68729899906],[-71.526768,41.68741599906],[-71.526787,41.68744099906],[-71.526802,41.68748099906],[-71.526817,41.68750799906],[-71.52684,41.68756999906],[-71.526878,41.68763199906],[-71.526901,41.68768999906],[-71.526924,41.68775699906],[-71.526939,41.68781999906],[-71.526947,41.68788299906],[-71.526947,41.68802299906],[-71.526939,41.68808599906],[-71.526924,41.68813999906],[-71.526916,41.68819899906],[-71.526901,41.68832999906],[-71.526886,41.68839799906],[-71.526863,41.68846099906],[-71.52684,41.68853399906],[-71.526825,41.68861099906],[-71.52681,41.68867899906],[-71.526764,41.68881499906],[-71.526764,41.68895899906],[-71.526756,41.68900799906],[-71.526726,41.68913499906],[-71.526726,41.68918899906],[-71.526764,41.68925999906],[-71.526787,41.68931799906],[-71.526787,41.68950299906],[-71.526772,41.68957099906],[-71.526741,41.68962599906],[-71.526718,41.68968899906],[-71.52668,41.68974399906],[-71.526619,41.68978099906],[-71.526527,41.68980599906],[-71.526428,41.68982599906],[-71.526337,41.68983699906],[-71.526253,41.68985299906],[-71.526161,41.68987299906],[-71.526085,41.68988799906],[-71.526009,41.68990699906],[-71.52594,41.68993599906],[-71.525802,41.69001099906],[-71.525734,41.69005299906],[-71.525688,41.69010399906],[-71.525642,41.69014999906],[-71.525604,41.69021399906],[-71.525528,41.69035899906],[-71.525505,41.69040899906],[-71.525474,41.69046399906],[-71.525444,41.69050499906],[-71.525398,41.69056899906],[-71.525383,41.69062399906],[-71.52536,41.69068299906],[-71.525299,41.69082799906],[-71.525261,41.69090099906],[-71.525246,41.69097799906],[-71.525246,41.69110899906],[-71.525238,41.69117599906],[-71.525276,41.69122499906],[-71.52533,41.69126399906],[-71.525383,41.69130799906],[-71.525436,41.69136599906],[-71.525482,41.69141899906],[-71.52552,41.69146699906],[-71.525619,41.69157799906],[-71.525665,41.69162199906],[-71.525719,41.69168799906],[-71.525734,41.69174599906],[-71.525764,41.69180399906],[-71.525841,41.69183799906],[-71.525848,41.69189199906],[-71.525825,41.69195999906],[-71.525787,41.69201499906],[-71.525726,41.69207099906],[-71.525597,41.69216799906],[-71.525528,41.69221499906],[-71.525445,41.69224299906],[-71.52536,41.69224499906],[-71.525253,41.69223899906],[-71.525169,41.69222199906],[-71.525093,41.69220199906],[-71.525017,41.69217599906],[-71.524849,41.69212099906],[-71.52475,41.69210999906],[-71.524681,41.69209399906],[-71.524582,41.69207299906],[-71.524483,41.69206599906],[-71.524391,41.69203699906],[-71.5243,41.69200299906],[-71.524162,41.69196999906],[-71.524086,41.69196299906],[-71.523995,41.69195999906],[-71.523918,41.69197999906],[-71.523842,41.69196799906],[-71.523773,41.69193799906],[-71.523697,41.69191299906],[-71.523628,41.69188699906],[-71.523552,41.69185699906],[-71.523453,41.69181399906],[-71.523308,41.69173199906],[-71.52327,41.69166099906],[-71.523216,41.69159899906],[-71.523171,41.69160899906],[-71.523117,41.69165099906],[-71.523064,41.69168799906],[-71.522972,41.69166699906],[-71.522919,41.69166399906],[-71.522827,41.69168399906],[-71.522754,41.69173199906],[-71.522713,41.69178599906],[-71.522652,41.69184599906],[-71.522606,41.69188699906],[-71.522583,41.69192399906],[-71.52256,41.69195599906],[-71.522552,41.69201899906],[-71.522552,41.69207299906],[-71.522514,41.69213199906],[-71.522469,41.69218699906],[-71.522461,41.69224999906],[-71.522423,41.69230099906],[-71.522385,41.69236499906],[-71.522377,41.69242799906],[-71.522362,41.69250499906],[-71.522339,41.69257299906],[-71.522293,41.69264099906],[-71.522232,41.69269699906],[-71.522179,41.69273399906],[-71.522125,41.69277999906],[-71.522064,41.69282199906],[-71.522003,41.69285899906],[-71.521965,41.69291899906],[-71.521957,41.69298199906],[-71.521934,41.69304599906],[-71.521957,41.69310799906],[-71.521996,41.69316999906],[-71.522049,41.69322799906],[-71.52211,41.69328499906],[-71.522171,41.69334699906],[-71.522232,41.69340399906],[-71.522286,41.69346099906],[-71.522339,41.69350999906],[-71.522438,41.69360599906],[-71.522491,41.69367699906],[-71.522583,41.69381899906],[-71.522606,41.69387299906],[-71.522637,41.69393099906],[-71.522652,41.69398399906],[-71.522659,41.69406499906],[-71.522644,41.69414199906],[-71.522636,41.69419599906],[-71.522613,41.69426899906],[-71.522583,41.69434599906],[-71.522553,41.69439599906],[-71.522507,41.69445599906],[-71.522453,41.69450199906],[-71.522431,41.69454799906],[-71.52243,41.69460199906],[-71.5224,41.69465199906],[-71.522331,41.69471199906],[-71.522278,41.69477599906],[-71.522255,41.69484399906],[-71.522255,41.69491199906],[-71.522247,41.69497999906],[-71.522232,41.69504299906],[-71.522239,41.69509699906],[-71.52227,41.69517699906],[-71.522308,41.69524799906],[-71.522346,41.69531499906],[-71.522392,41.69537699906],[-71.522462,41.69542999906],[-71.522491,41.69545099906],[-71.52256,41.69550899906],[-71.522583,41.69553999906],[-71.522598,41.69556199906],[-71.522614,41.69562899906],[-71.522613,41.69569199906],[-71.522583,41.69576499906],[-71.522522,41.69581599906],[-71.522438,41.69585799906],[-71.522385,41.69589099906],[-71.522316,41.69590599906],[-71.522255,41.69590699906],[-71.522202,41.69591699906],[-71.522144,41.69591799906],[-71.522194,41.69605599906],[-71.522247,41.69619999906],[-71.522272,41.69634299906],[-71.522263,41.69646999906],[-71.522629,41.69638999906],[-71.52269,41.69665799906],[-71.522858,41.69721299906],[-71.52298,41.69766099906],[-71.523224,41.69852899906],[-71.523468,41.69939299906],[-71.523773,41.70040799906],[-71.523811,41.70048399906],[-71.52388,41.70055899906],[-71.524208,41.70080799906],[-71.524575,41.70107999906],[-71.525122,41.70069199906],[-71.525276,41.70058199906],[-71.525917,41.70013099906],[-71.526672,41.69958399906],[-71.527153,41.69924199906],[-71.52733,41.69911599906],[-71.527653,41.69888699906],[-71.528262,41.69845699906],[-71.528351,41.69839499906],[-71.528786,41.69809199906],[-71.529323,41.69771099906],[-71.529602,41.69751499906],[-71.530281,41.69702699906],[-71.530366,41.69696499906],[-71.530991,41.69650299906],[-71.531674,41.69602699906],[-71.531738,41.69598199906],[-71.531929,41.69587399906],[-71.532196,41.69572899906],[-71.532501,41.69557799906],[-71.532822,41.69543599906],[-71.533006,41.69536799906],[-71.533109,41.69532999906],[-71.533119,41.69510999906]]]}}"}, +{"type": "blockgroup", "typeId": 203001, "areaId": 29171, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.534068,41.72197999906],[-71.534043,41.72190499906],[-71.534047,41.72171399906],[-71.534034,41.72165599906],[-71.534004,41.72123999906],[-71.534015,41.72114199906],[-71.533973,41.72088499906],[-71.533966,41.71943299906],[-71.533944,41.71905699906],[-71.533942,41.71901699906],[-71.533938,41.71884799906],[-71.533923,41.71827899906],[-71.533883,41.71767999906],[-71.533896,41.71751399906],[-71.53386,41.71642499906],[-71.533859,41.71613599906],[-71.533849,41.71600899906],[-71.533845,41.71594699906],[-71.533841,41.71592199906],[-71.533838,41.71587399906],[-71.533836,41.71579899906],[-71.533825,41.71534399906],[-71.533824,41.71528999906],[-71.533791,41.71525499906],[-71.533799,41.71451099906],[-71.533774,41.71374499906],[-71.533774,41.71372699906],[-71.533734,41.71372999906],[-71.533234,41.71376299906],[-71.532608,41.71379099906],[-71.532127,41.71382399906],[-71.53186,41.71384299906],[-71.531105,41.71389099906],[-71.530296,41.71394099906],[-71.529602,41.71398699906],[-71.52932,41.71400699906],[-71.528864,41.71403699906],[-71.528626,41.71405399906],[-71.527634,41.71411199906],[-71.526474,41.71418199906],[-71.526443,41.71418299906],[-71.525902,41.71421299906],[-71.525009,41.71427799906],[-71.524651,41.71430299906],[-71.524124,41.71431499906],[-71.523834,41.71430799906],[-71.523819,41.71438899906],[-71.523796,41.71455199906],[-71.523781,41.71465099906],[-71.523766,41.71477299906],[-71.523735,41.71504899906],[-71.523705,41.71528799906],[-71.523689,41.71540099906],[-71.523682,41.71543699906],[-71.523644,41.71559199906],[-71.523596,41.71580399906],[-71.523621,41.71581699906],[-71.523766,41.71587599906],[-71.523865,41.71591499906],[-71.524025,41.71599699906],[-71.524109,41.71603599906],[-71.524239,41.71610899906],[-71.5243,41.71615699906],[-71.524361,41.71619199906],[-71.524429,41.71622699906],[-71.524506,41.71625599906],[-71.524597,41.71628099906],[-71.524696,41.71630599906],[-71.524879,41.71634699906],[-71.525108,41.71640999906],[-71.525185,41.71642199906],[-71.525269,41.71643799906],[-71.525345,41.71645399906],[-71.525421,41.71647499906],[-71.525505,41.71649999906],[-71.525589,41.71651599906],[-71.525673,41.71653699906],[-71.525765,41.71655799906],[-71.525848,41.71658299906],[-71.525917,41.71661299906],[-71.526054,41.71668199906],[-71.526123,41.71672099906],[-71.526184,41.71676399906],[-71.526238,41.71680799906],[-71.526263,41.71684699906],[-71.526276,41.71686599906],[-71.526383,41.71698099906],[-71.526436,41.71703399906],[-71.526527,41.71713099906],[-71.526566,41.71717899906],[-71.526604,41.71723299906],[-71.526649,41.71728099906],[-71.526688,41.71733399906],[-71.526726,41.71737799906],[-71.526756,41.71743199906],[-71.526794,41.71747599906],[-71.526825,41.71752499906],[-71.526863,41.71758299906],[-71.526894,41.71763999906],[-71.526917,41.71769799906],[-71.526932,41.71777899906],[-71.526932,41.71803599906],[-71.52691,41.71811199906],[-71.526863,41.71818099906],[-71.526817,41.71823199906],[-71.526756,41.71827799906],[-71.526718,41.71832399906],[-71.526672,41.71838799906],[-71.526657,41.71844699906],[-71.52665,41.71851499906],[-71.526649,41.71858699906],[-71.526657,41.71866299906],[-71.52668,41.71873899906],[-71.526703,41.71879299906],[-71.526733,41.71886899906],[-71.526779,41.71900299906],[-71.526787,41.71907499906],[-71.526787,41.71918699906],[-71.526802,41.71930899906],[-71.526848,41.71942499906],[-71.526878,41.71947799906],[-71.526917,41.71952699906],[-71.526955,41.71957999906],[-71.527,41.71962399906],[-71.527062,41.71968099906],[-71.527206,41.71978199906],[-71.52726,41.71982499906],[-71.527313,41.71986499906],[-71.527435,41.71993399906],[-71.527496,41.71996399906],[-71.527558,41.71998999906],[-71.527641,41.72003799906],[-71.527725,41.72007599906],[-71.527817,41.72010599906],[-71.527893,41.72012699906],[-71.527977,41.72015599906],[-71.528042,41.72019399906],[-71.528061,41.72020399906],[-71.528229,41.72029899906],[-71.528351,41.72036899906],[-71.52842,41.72040299906],[-71.528481,41.72044199906],[-71.528603,41.72052999906],[-71.528671,41.72056399906],[-71.52874,41.72060799906],[-71.528808,41.72064199906],[-71.52887,41.72066799906],[-71.528961,41.72068899906],[-71.529053,41.72067799906],[-71.529144,41.72065299906],[-71.529236,41.72062399906],[-71.529305,41.72059099906],[-71.529373,41.72056199906],[-71.529442,41.72052899906],[-71.529503,41.72049699906],[-71.52961,41.72044499906],[-71.529656,41.72042599906],[-71.529724,41.72040199906],[-71.529823,41.72037699906],[-71.529915,41.72036599906],[-71.530014,41.72034999906],[-71.530113,41.72035199906],[-71.530205,41.72035499906],[-71.530312,41.72036199906],[-71.530388,41.72036899906],[-71.530464,41.72038099906],[-71.530617,41.72042199906],[-71.530685,41.72043899906],[-71.530762,41.72045499906],[-71.530846,41.72047599906],[-71.530914,41.72048299906],[-71.530968,41.72050499906],[-71.531036,41.72052099906],[-71.531105,41.72052899906],[-71.531181,41.72054499906],[-71.531273,41.72055699906],[-71.531349,41.72057699906],[-71.531418,41.72060699906],[-71.531502,41.72065099906],[-71.53154,41.72066799906],[-71.531578,41.72068899906],[-71.531669,41.72072299906],[-71.531731,41.72074899906],[-71.531799,41.72077899906],[-71.531868,41.72081399906],[-71.531937,41.72085299906],[-71.53199,41.72089699906],[-71.532112,41.72098399906],[-71.532165,41.72102399906],[-71.532211,41.72105799906],[-71.53225,41.72107999906],[-71.53228,41.72110199906],[-71.532349,41.72112699906],[-71.53244,41.72115199906],[-71.532524,41.72119499906],[-71.532593,41.72122499906],[-71.532669,41.72125999906],[-71.53273,41.72129399906],[-71.532791,41.72133799906],[-71.532852,41.72137699906],[-71.532929,41.72142099906],[-71.532997,41.72146399906],[-71.533203,41.72156799906],[-71.533325,41.72165499906],[-71.533386,41.72168499906],[-71.533462,41.72171999906],[-71.533592,41.72181099906],[-71.533653,41.72185999906],[-71.533707,41.72189899906],[-71.533813,41.72199599906],[-71.533874,41.72204799906],[-71.533905,41.72207699906],[-71.533936,41.72210499906],[-71.533997,41.72215799906],[-71.534055,41.72220399906],[-71.534068,41.72197999906]]]}}"}, +{"type": "blockgroup", "typeId": 203002, "areaId": 29172, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.533774,41.71372699906],[-71.533753,41.71277499906],[-71.533756,41.71263599906],[-71.533747,41.71217599906],[-71.533689,41.71126299906],[-71.533647,41.71061599906],[-71.533642,41.71053799906],[-71.533627,41.71023799906],[-71.53359,41.70951499906],[-71.53357,41.70910499906],[-71.533588,41.70905999906],[-71.533557,41.70882999906],[-71.533546,41.70863299906],[-71.533541,41.70851799906],[-71.533542,41.70847199906],[-71.533541,41.70845899906],[-71.533498,41.70847299906],[-71.533234,41.70856199906],[-71.53289,41.70867799906],[-71.532608,41.70877899906],[-71.532158,41.70893299906],[-71.531906,41.70900999906],[-71.531563,41.70912999906],[-71.531349,41.70919399906],[-71.531189,41.70926499906],[-71.530998,41.70930499906],[-71.530929,41.70933399906],[-71.530792,41.70933699906],[-71.530663,41.70930799906],[-71.530464,41.70928999906],[-71.530418,41.70927699906],[-71.530075,41.70922199906],[-71.529747,41.70917499906],[-71.529342,41.70909799906],[-71.529068,41.70907299906],[-71.528656,41.70903199906],[-71.528587,41.70901999906],[-71.528297,41.70899999906],[-71.527969,41.70897099906],[-71.527657,41.70894599906],[-71.527527,41.70893999906],[-71.527497,41.70893599906],[-71.527099,41.70889499906],[-71.526703,41.70886799906],[-71.526474,41.70883699906],[-71.526382,41.70881699906],[-71.526344,41.70879999906],[-71.526276,41.70876499906],[-71.526016,41.70864899906],[-71.52581,41.70855499906],[-71.525757,41.70853299906],[-71.525718,41.70852099906],[-71.52565,41.70851299906],[-71.525551,41.70851099906],[-71.525375,41.70850999906],[-71.525093,41.70851599906],[-71.524742,41.70852899906],[-71.524605,41.70853199906],[-71.524269,41.70853899906],[-71.523987,41.70853599906],[-71.523773,41.70855399906],[-71.523682,41.70856499906],[-71.523499,41.70860099906],[-71.523338,41.70863099906],[-71.523079,41.70867799906],[-71.522705,41.70874399906],[-71.522583,41.70876099906],[-71.52253,41.70876599906],[-71.522473,41.70853199906],[-71.522463,41.70834799906],[-71.522483,41.70814899906],[-71.522537,41.70789999906],[-71.522597,41.70769199906],[-71.522491,41.70745199906],[-71.522408,41.70752199906],[-71.522171,41.70770199906],[-71.521888,41.70795599906],[-71.52182,41.70803399906],[-71.521751,41.70810799906],[-71.521723,41.70815399906],[-71.52166,41.70825399906],[-71.521584,41.70839499906],[-71.521553,41.70844099906],[-71.521332,41.70886499906],[-71.521271,41.70897399906],[-71.521118,41.70924799906],[-71.520912,41.70963499906],[-71.520836,41.70978499906],[-71.52047,41.71048199906],[-71.520218,41.71094199906],[-71.520157,41.71105599906],[-71.520058,41.71116199906],[-71.519989,41.71123099906],[-71.519974,41.71140699906],[-71.519974,41.71154199906],[-71.519989,41.71176699906],[-71.519997,41.71201899906],[-71.520019,41.71223899906],[-71.52005,41.71300399906],[-71.520081,41.71369199906],[-71.520073,41.71384999906],[-71.520163,41.71386499906],[-71.520195,41.71386999906],[-71.520294,41.71388999906],[-71.520393,41.71391499906],[-71.520561,41.71395199906],[-71.520767,41.71400999906],[-71.520951,41.71408299906],[-71.521111,41.71415199906],[-71.521446,41.71430199906],[-71.52195,41.71455199906],[-71.522476,41.71481999906],[-71.522591,41.71487999906],[-71.522644,41.71490599906],[-71.52272,41.71494499906],[-71.522888,41.71502699906],[-71.523049,41.71511799906],[-71.523232,41.71521699906],[-71.523453,41.71533399906],[-71.523682,41.71543699906],[-71.523689,41.71540099906],[-71.523705,41.71528799906],[-71.523735,41.71504899906],[-71.523766,41.71477299906],[-71.523781,41.71465099906],[-71.523796,41.71455199906],[-71.523819,41.71438899906],[-71.523834,41.71430799906],[-71.524124,41.71431499906],[-71.524651,41.71430299906],[-71.525009,41.71427799906],[-71.525902,41.71421299906],[-71.526443,41.71418299906],[-71.526474,41.71418199906],[-71.527634,41.71411199906],[-71.528626,41.71405399906],[-71.528864,41.71403699906],[-71.52932,41.71400699906],[-71.529602,41.71398699906],[-71.530296,41.71394099906],[-71.531105,41.71389099906],[-71.53186,41.71384299906],[-71.532127,41.71382399906],[-71.532608,41.71379099906],[-71.533234,41.71376299906],[-71.533734,41.71372999906],[-71.533774,41.71372699906]]]}}"}, +{"type": "blockgroup", "typeId": 203003, "areaId": 29173, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.533547,41.70788899906],[-71.533546,41.70759499906],[-71.53351,41.70690899906],[-71.533488,41.70681399906],[-71.533492,41.70657499906],[-71.533497,41.70628899906],[-71.53346,41.70538099906],[-71.533317,41.70537699906],[-71.533135,41.70535799906],[-71.532906,41.70534099906],[-71.532639,41.70531499906],[-71.532349,41.70528699906],[-71.532288,41.70528199906],[-71.531891,41.70523699906],[-71.531586,41.70522099906],[-71.531067,41.70517899906],[-71.530846,41.70515199906],[-71.530388,41.70511699906],[-71.529762,41.70505899906],[-71.529602,41.70504899906],[-71.529457,41.70503399906],[-71.528793,41.70498099906],[-71.528351,41.70493699906],[-71.528145,41.70491399906],[-71.527801,41.70488099906],[-71.527107,41.70482899906],[-71.527145,41.70460299906],[-71.526756,41.70454399906],[-71.526283,41.70447799906],[-71.52578,41.70434499906],[-71.525436,41.70425299906],[-71.524884,41.70413999906],[-71.524559,41.70407399906],[-71.524513,41.70404799906],[-71.524468,41.70408099906],[-71.524307,41.70421999906],[-71.5243,41.70410699906],[-71.524277,41.70403999906],[-71.524208,41.70387499906],[-71.523849,41.70304099906],[-71.52372,41.70273299906],[-71.523582,41.70242999906],[-71.523529,41.70230899906],[-71.523468,41.70218499906],[-71.52343,41.70210399906],[-71.523388,41.70200299906],[-71.523216,41.70216799906],[-71.522964,41.70246099906],[-71.522705,41.70278199906],[-71.522507,41.70308799906],[-71.5224,41.70326599906],[-71.522278,41.70348499906],[-71.522179,41.70372599906],[-71.522087,41.70397099906],[-71.521927,41.70446599906],[-71.521835,41.70484099906],[-71.521759,41.70512199906],[-71.521721,41.70533499906],[-71.521683,41.70560599906],[-71.521622,41.70593099906],[-71.521599,41.70624699906],[-71.521591,41.70653999906],[-71.521576,41.70672499906],[-71.521607,41.70715199906],[-71.521652,41.70769099906],[-71.521706,41.70805299906],[-71.521713,41.70809999906],[-71.521723,41.70815399906],[-71.521751,41.70810799906],[-71.52182,41.70803399906],[-71.521888,41.70795599906],[-71.522171,41.70770199906],[-71.522408,41.70752199906],[-71.522491,41.70745199906],[-71.522597,41.70769199906],[-71.522537,41.70789999906],[-71.522483,41.70814899906],[-71.522463,41.70834799906],[-71.522473,41.70853199906],[-71.52253,41.70876599906],[-71.522583,41.70876099906],[-71.522705,41.70874399906],[-71.523079,41.70867799906],[-71.523338,41.70863099906],[-71.523499,41.70860099906],[-71.523682,41.70856499906],[-71.523773,41.70855399906],[-71.523987,41.70853599906],[-71.524269,41.70853899906],[-71.524605,41.70853199906],[-71.524742,41.70852899906],[-71.525093,41.70851599906],[-71.525375,41.70850999906],[-71.525551,41.70851099906],[-71.52565,41.70851299906],[-71.525718,41.70852099906],[-71.525757,41.70853299906],[-71.52581,41.70855499906],[-71.526016,41.70864899906],[-71.526276,41.70876499906],[-71.526344,41.70879999906],[-71.526382,41.70881699906],[-71.526474,41.70883699906],[-71.526703,41.70886799906],[-71.527099,41.70889499906],[-71.527497,41.70893599906],[-71.527527,41.70893999906],[-71.527657,41.70894599906],[-71.527969,41.70897099906],[-71.528297,41.70899999906],[-71.528587,41.70901999906],[-71.528656,41.70903199906],[-71.529068,41.70907299906],[-71.529342,41.70909799906],[-71.529747,41.70917499906],[-71.530075,41.70922199906],[-71.530418,41.70927699906],[-71.530464,41.70928999906],[-71.530663,41.70930799906],[-71.530792,41.70933699906],[-71.530929,41.70933399906],[-71.530998,41.70930499906],[-71.531189,41.70926499906],[-71.531349,41.70919399906],[-71.531563,41.70912999906],[-71.531906,41.70900999906],[-71.532158,41.70893299906],[-71.532608,41.70877899906],[-71.53289,41.70867799906],[-71.533234,41.70856199906],[-71.533498,41.70847299906],[-71.533541,41.70845899906],[-71.533542,41.70833199906],[-71.533544,41.70816399906],[-71.533542,41.70800099906],[-71.533547,41.70788899906]]]}}"}, +{"type": "blockgroup", "typeId": 203004, "areaId": 29174, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.529762,41.70505899906],[-71.529709,41.70468599906],[-71.529655,41.70431399906],[-71.52961,41.70395399906],[-71.529602,41.70387399906],[-71.529587,41.70375199906],[-71.529556,41.70357699906],[-71.529526,41.70324899906],[-71.529472,41.70284499906],[-71.529427,41.70253499906],[-71.529381,41.70218999906],[-71.529366,41.70212299906],[-71.529335,41.70204699906],[-71.529305,41.70200199906],[-71.529137,41.70172199906],[-71.528931,41.70131699906],[-71.528785,41.70105899906],[-71.528618,41.70075699906],[-71.528519,41.70056999906],[-71.528374,41.70063599906],[-71.528328,41.70064999906],[-71.528175,41.70069899906],[-71.527832,41.70079599906],[-71.527511,41.70087099906],[-71.526894,41.70102399906],[-71.526611,41.70109299906],[-71.52636,41.70114799906],[-71.525734,41.70130199906],[-71.525246,41.70142099906],[-71.525047,41.70146499906],[-71.524971,41.70136799906],[-71.524681,41.70115799906],[-71.524575,41.70107999906],[-71.524498,41.70113499906],[-71.52346,41.70193299906],[-71.523388,41.70200299906],[-71.52343,41.70210399906],[-71.523468,41.70218499906],[-71.523529,41.70230899906],[-71.523582,41.70242999906],[-71.52372,41.70273299906],[-71.523849,41.70304099906],[-71.524208,41.70387499906],[-71.524277,41.70403999906],[-71.5243,41.70410699906],[-71.524307,41.70421999906],[-71.524468,41.70408099906],[-71.524513,41.70404799906],[-71.524559,41.70407399906],[-71.524884,41.70413999906],[-71.525436,41.70425299906],[-71.52578,41.70434499906],[-71.526283,41.70447799906],[-71.526756,41.70454399906],[-71.527145,41.70460299906],[-71.527107,41.70482899906],[-71.527801,41.70488099906],[-71.528145,41.70491399906],[-71.528351,41.70493699906],[-71.528793,41.70498099906],[-71.529457,41.70503399906],[-71.529602,41.70504899906],[-71.529762,41.70505899906]]]}}"}, +{"type": "blockgroup", "typeId": 203005, "areaId": 29175, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.53346,41.70538099906],[-71.533392,41.70353499906],[-71.533374,41.70326299906],[-71.533381,41.70310299906],[-71.53337,41.70292599906],[-71.533374,41.70282599906],[-71.533361,41.70265599906],[-71.533356,41.70248699906],[-71.533353,41.70240799906],[-71.533342,41.70205499906],[-71.533341,41.70201799906],[-71.533326,41.70160299906],[-71.533322,41.70150199906],[-71.533315,41.70130799906],[-71.533311,41.70119899906],[-71.53331,41.70116999906],[-71.533309,41.70112599906],[-71.533307,41.70107199906],[-71.533306,41.70104999906],[-71.533302,41.70094599906],[-71.533272,41.70074699906],[-71.533269,41.70061699906],[-71.533264,41.70031599906],[-71.533255,41.70026899906],[-71.533246,41.70018299906],[-71.533242,41.69985099906],[-71.533223,41.69976199906],[-71.533211,41.69970499906],[-71.533236,41.69964699906],[-71.533231,41.69949399906],[-71.53322,41.69912299906],[-71.533213,41.69887599906],[-71.533221,41.69866399906],[-71.533215,41.69848699906],[-71.533219,41.69840399906],[-71.533215,41.69830499906],[-71.533216,41.69820899906],[-71.533219,41.69814599906],[-71.53321,41.69799199906],[-71.533201,41.69764699906],[-71.533211,41.69723799906],[-71.533146,41.69680199906],[-71.533139,41.69658299906],[-71.533117,41.69593299906],[-71.533113,41.69558999906],[-71.533109,41.69532999906],[-71.533006,41.69536799906],[-71.532822,41.69543599906],[-71.532501,41.69557799906],[-71.532196,41.69572899906],[-71.531929,41.69587399906],[-71.531738,41.69598199906],[-71.531674,41.69602699906],[-71.530991,41.69650299906],[-71.530366,41.69696499906],[-71.530281,41.69702699906],[-71.529602,41.69751499906],[-71.529323,41.69771099906],[-71.528786,41.69809199906],[-71.528351,41.69839499906],[-71.528262,41.69845699906],[-71.527653,41.69888699906],[-71.52733,41.69911599906],[-71.527153,41.69924199906],[-71.526672,41.69958399906],[-71.525917,41.70013099906],[-71.525276,41.70058199906],[-71.525122,41.70069199906],[-71.524575,41.70107999906],[-71.524681,41.70115799906],[-71.524971,41.70136799906],[-71.525047,41.70146499906],[-71.525246,41.70142099906],[-71.525734,41.70130199906],[-71.52636,41.70114799906],[-71.526611,41.70109299906],[-71.526894,41.70102399906],[-71.527511,41.70087099906],[-71.527832,41.70079599906],[-71.528175,41.70069899906],[-71.528328,41.70064999906],[-71.528374,41.70063599906],[-71.528519,41.70056999906],[-71.528618,41.70075699906],[-71.528785,41.70105899906],[-71.528931,41.70131699906],[-71.529137,41.70172199906],[-71.529305,41.70200199906],[-71.529335,41.70204699906],[-71.529366,41.70212299906],[-71.529381,41.70218999906],[-71.529427,41.70253499906],[-71.529472,41.70284499906],[-71.529526,41.70324899906],[-71.529556,41.70357699906],[-71.529587,41.70375199906],[-71.529602,41.70387399906],[-71.52961,41.70395399906],[-71.529655,41.70431399906],[-71.529709,41.70468599906],[-71.529762,41.70505899906],[-71.530388,41.70511699906],[-71.530846,41.70515199906],[-71.531067,41.70517899906],[-71.531586,41.70522099906],[-71.531891,41.70523699906],[-71.532288,41.70528199906],[-71.532349,41.70528699906],[-71.532639,41.70531499906],[-71.532906,41.70534099906],[-71.533135,41.70535799906],[-71.533317,41.70537699906],[-71.53346,41.70538099906]]]}}"}, +{"type": "blockgroup", "typeId": 204001, "areaId": 29176, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.525467,41.72432699906],[-71.525375,41.72424799906],[-71.525299,41.72416899906],[-71.525223,41.72409399906],[-71.525192,41.72405399906],[-71.525063,41.72399399906],[-71.52491,41.72393399906],[-71.524757,41.72389299906],[-71.524651,41.72384999906],[-71.524567,41.72381099906],[-71.52446,41.72373299906],[-71.52433,41.72361799906],[-71.524216,41.72347699906],[-71.524101,41.72329899906],[-71.524002,41.72335999906],[-71.523773,41.72344999906],[-71.52356,41.72354499906],[-71.523377,41.72364399906],[-71.523244,41.72374199906],[-71.523109,41.72380699906],[-71.523025,41.72384499906],[-71.522904,41.72387499906],[-71.522789,41.72387299906],[-71.52272,41.72386499906],[-71.522644,41.72385399906],[-71.52259,41.72384099906],[-71.52243,41.72380899906],[-71.522209,41.72374999906],[-71.52208,41.72372599906],[-71.521965,41.72371499906],[-71.521843,41.72373199906],[-71.521568,41.72378699906],[-71.521286,41.72390599906],[-71.521156,41.72394899906],[-71.520981,41.72398899906],[-71.520447,41.72405899906],[-71.519668,41.72419299906],[-71.519119,41.72431399906],[-71.518631,41.72441399906],[-71.518509,41.72444399906],[-71.518211,41.72451399906],[-71.517868,41.72458899906],[-71.517494,41.72467799906],[-71.517235,41.72472899906],[-71.517126,41.72473999906],[-71.516919,41.72475999906],[-71.516487,41.72480399906],[-71.516502,41.72517299906],[-71.516609,41.72663799906],[-71.516708,41.72801799906],[-71.516768,41.72884199906],[-71.5168,41.72927699906],[-71.516815,41.72952499906],[-71.516861,41.73010499906],[-71.516861,41.73025299906],[-71.516869,41.73032999906],[-71.516869,41.73043799906],[-71.516861,41.73054599906],[-71.516861,41.73060799906],[-71.518705,41.73050799906],[-71.519413,41.73046899906],[-71.519865,41.73044399906],[-71.519928,41.73044299906],[-71.519974,41.73040999906],[-71.520035,41.73037299906],[-71.520119,41.73029399906],[-71.520226,41.73016099906],[-71.520309,41.73005599906],[-71.52034,41.73000999906],[-71.520455,41.72984399906],[-71.520492,41.72979099906],[-71.520683,41.72955199906],[-71.520874,41.72929599906],[-71.520905,41.72924999906],[-71.521164,41.72892899906],[-71.521393,41.72863599906],[-71.521629,41.72833799906],[-71.521813,41.72810899906],[-71.522003,41.72790199906],[-71.522125,41.72780499906],[-71.522438,41.72761399906],[-71.522642,41.72748399906],[-71.522762,41.72741199906],[-71.52301,41.72726299906],[-71.523186,41.72715599906],[-71.523224,41.72712799906],[-71.523262,41.72710899906],[-71.523712,41.72682499906],[-71.523804,41.72675999906],[-71.523941,41.72667499906],[-71.524193,41.72652599906],[-71.524299,41.72644199906],[-71.524353,41.72640499906],[-71.524399,41.72637699906],[-71.524628,41.72620999906],[-71.52478,41.72607599906],[-71.524872,41.72599299906],[-71.525001,41.72587299906],[-71.525027,41.72583599906],[-71.52507,41.72577299906],[-71.525078,41.72574499906],[-71.525147,41.72559999906],[-71.525188,41.72546899906],[-71.5252,41.72543199906],[-71.525253,41.72523699906],[-71.525261,41.72518699906],[-71.525283,41.72506699906],[-71.525291,41.72501999906],[-71.52533,41.72480799906],[-71.525391,41.72455399906],[-71.525413,41.72440999906],[-71.525467,41.72432699906]]]}}"}, +{"type": "blockgroup", "typeId": 204002, "areaId": 29177, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.532165,41.72102399906],[-71.532112,41.72098399906],[-71.53199,41.72089699906],[-71.531937,41.72085299906],[-71.531868,41.72081399906],[-71.531799,41.72077899906],[-71.531731,41.72074899906],[-71.531669,41.72072299906],[-71.531578,41.72068899906],[-71.53154,41.72066799906],[-71.531502,41.72065099906],[-71.531418,41.72060699906],[-71.531349,41.72057699906],[-71.531273,41.72055699906],[-71.531181,41.72054499906],[-71.531105,41.72052899906],[-71.531036,41.72052099906],[-71.530968,41.72050499906],[-71.530914,41.72048299906],[-71.530846,41.72047599906],[-71.530762,41.72045499906],[-71.530685,41.72043899906],[-71.530617,41.72042199906],[-71.530464,41.72038099906],[-71.530388,41.72036899906],[-71.530312,41.72036199906],[-71.530205,41.72035499906],[-71.530113,41.72035199906],[-71.530014,41.72034999906],[-71.529915,41.72036599906],[-71.529823,41.72037699906],[-71.529724,41.72040199906],[-71.529656,41.72042599906],[-71.52961,41.72044499906],[-71.529503,41.72049699906],[-71.529442,41.72052899906],[-71.529373,41.72056199906],[-71.529305,41.72059099906],[-71.529236,41.72062399906],[-71.529144,41.72065299906],[-71.529053,41.72067799906],[-71.528961,41.72068899906],[-71.52887,41.72066799906],[-71.528808,41.72064199906],[-71.52874,41.72060799906],[-71.528671,41.72056399906],[-71.528603,41.72052999906],[-71.528481,41.72044199906],[-71.52842,41.72040299906],[-71.528351,41.72036899906],[-71.528229,41.72029899906],[-71.528061,41.72020399906],[-71.528042,41.72019399906],[-71.527977,41.72015599906],[-71.527893,41.72012699906],[-71.527817,41.72010599906],[-71.527725,41.72007599906],[-71.527641,41.72003799906],[-71.527558,41.71998999906],[-71.527496,41.71996399906],[-71.527435,41.71993399906],[-71.527313,41.71986499906],[-71.52726,41.71982499906],[-71.527206,41.71978199906],[-71.527062,41.71968099906],[-71.527,41.71962399906],[-71.526955,41.71957999906],[-71.526917,41.71952699906],[-71.526878,41.71947799906],[-71.526848,41.71942499906],[-71.526802,41.71930899906],[-71.526787,41.71918699906],[-71.526787,41.71907499906],[-71.526779,41.71900299906],[-71.526733,41.71886899906],[-71.526703,41.71879299906],[-71.52668,41.71873899906],[-71.526657,41.71866299906],[-71.526649,41.71858699906],[-71.52665,41.71851499906],[-71.526657,41.71844699906],[-71.526672,41.71838799906],[-71.526718,41.71832399906],[-71.526756,41.71827799906],[-71.526817,41.71823199906],[-71.526863,41.71818099906],[-71.52691,41.71811199906],[-71.526932,41.71803599906],[-71.526932,41.71777899906],[-71.526917,41.71769799906],[-71.526894,41.71763999906],[-71.526863,41.71758299906],[-71.526825,41.71752499906],[-71.526794,41.71747599906],[-71.526756,41.71743199906],[-71.526726,41.71737799906],[-71.526688,41.71733399906],[-71.526649,41.71728099906],[-71.526604,41.71723299906],[-71.526566,41.71717899906],[-71.526527,41.71713099906],[-71.526436,41.71703399906],[-71.526383,41.71698099906],[-71.526276,41.71686599906],[-71.526263,41.71684699906],[-71.526238,41.71680799906],[-71.526184,41.71676399906],[-71.526123,41.71672099906],[-71.526054,41.71668199906],[-71.525917,41.71661299906],[-71.525848,41.71658299906],[-71.525765,41.71655799906],[-71.525673,41.71653699906],[-71.525589,41.71651599906],[-71.525505,41.71649999906],[-71.525421,41.71647499906],[-71.525345,41.71645399906],[-71.525269,41.71643799906],[-71.525185,41.71642199906],[-71.525108,41.71640999906],[-71.524879,41.71634699906],[-71.524696,41.71630599906],[-71.524597,41.71628099906],[-71.524506,41.71625599906],[-71.524429,41.71622699906],[-71.524361,41.71619199906],[-71.5243,41.71615699906],[-71.524239,41.71610899906],[-71.524109,41.71603599906],[-71.524025,41.71599699906],[-71.523865,41.71591499906],[-71.523766,41.71587599906],[-71.523621,41.71581699906],[-71.523596,41.71580399906],[-71.523544,41.71577799906],[-71.523476,41.71573899906],[-71.523407,41.71570399906],[-71.523346,41.71566999906],[-71.523285,41.71562599906],[-71.523216,41.71558699906],[-71.523155,41.71554799906],[-71.523094,41.71551299906],[-71.523018,41.71547899906],[-71.52288,41.71541899906],[-71.522812,41.71537999906],[-71.522736,41.71534499906],[-71.522659,41.71531999906],[-71.522591,41.71530299906],[-71.522568,41.71529499906],[-71.522484,41.71527399906],[-71.5224,41.71525799906],[-71.522316,41.71525499906],[-71.522232,41.71525699906],[-71.522041,41.71525199906],[-71.52195,41.71524499906],[-71.521858,41.71522899906],[-71.521767,41.71520899906],[-71.521675,41.71519299906],[-71.521591,41.71516799906],[-71.5215,41.71514699906],[-71.521423,41.71512199906],[-71.52134,41.71510099906],[-71.521263,41.71508899906],[-71.521179,41.71507799906],[-71.521103,41.71506599906],[-71.521027,41.71504899906],[-71.52095,41.71503799906],[-71.520874,41.71502099906],[-71.52079,41.71500999906],[-71.520538,41.71496099906],[-71.520302,41.71492599906],[-71.520203,41.71491399906],[-71.520119,41.71489799906],[-71.520012,41.71487399906],[-71.519844,41.71484599906],[-71.519753,41.71482999906],[-71.519676,41.71481799906],[-71.519592,41.71481499906],[-71.519508,41.71482599906],[-71.519409,41.71484599906],[-71.519325,41.71487499906],[-71.519249,41.71490799906],[-71.519173,41.71493699906],[-71.519097,41.71497899906],[-71.519028,41.71502099906],[-71.518982,41.71506299906],[-71.518936,41.71511799906],[-71.518898,41.71516799906],[-71.518875,41.71522699906],[-71.51886,41.71529999906],[-71.518837,41.71535899906],[-71.518837,41.71538099906],[-71.518829,41.71543499906],[-71.518837,41.71549399906],[-71.518829,41.71555699906],[-71.518814,41.71562899906],[-71.518807,41.71568799906],[-71.518791,41.71576499906],[-71.518768,41.71581999906],[-71.518753,41.71587399906],[-71.518738,41.71593699906],[-71.5187,41.71600599906],[-71.518654,41.71607399906],[-71.518616,41.71613799906],[-71.518585,41.71620599906],[-71.518562,41.71628299906],[-71.518547,41.71635999906],[-71.518547,41.71671099906],[-71.518562,41.71682399906],[-71.518562,41.71690899906],[-71.51857,41.71697199906],[-71.51857,41.71704399906],[-71.518562,41.71712099906],[-71.518539,41.71718899906],[-71.518516,41.71724399906],[-71.518486,41.71729799906],[-71.518486,41.71736599906],[-71.518509,41.71742799906],[-71.518539,41.71748199906],[-71.518578,41.71753499906],[-71.518608,41.71758399906],[-71.518662,41.71766799906],[-71.519058,41.71778599906],[-71.519851,41.71794499906],[-71.520958,41.71816699906],[-71.521001,41.71817499906],[-71.520996,41.71822499906],[-71.520973,41.71829299906],[-71.521072,41.71893899906],[-71.521095,41.71931199906],[-71.521133,41.71965399906],[-71.52121,41.72025099906],[-71.521225,41.72040799906],[-71.521232,41.72045799906],[-71.521324,41.72135199906],[-71.52137,41.72188699906],[-71.521446,41.72277699906],[-71.521484,41.72341499906],[-71.52153,41.72365299906],[-71.521568,41.72378699906],[-71.521843,41.72373199906],[-71.521965,41.72371499906],[-71.52208,41.72372599906],[-71.522209,41.72374999906],[-71.52243,41.72380899906],[-71.52259,41.72384099906],[-71.522644,41.72385399906],[-71.52272,41.72386499906],[-71.522789,41.72387299906],[-71.522904,41.72387499906],[-71.523025,41.72384499906],[-71.523109,41.72380699906],[-71.523244,41.72374199906],[-71.523377,41.72364399906],[-71.52356,41.72354499906],[-71.523773,41.72344999906],[-71.524002,41.72335999906],[-71.524101,41.72329899906],[-71.524216,41.72347699906],[-71.52433,41.72361799906],[-71.52446,41.72373299906],[-71.524567,41.72381099906],[-71.524651,41.72384999906],[-71.524757,41.72389299906],[-71.52491,41.72393399906],[-71.525063,41.72399399906],[-71.525192,41.72405399906],[-71.525223,41.72409399906],[-71.525299,41.72416899906],[-71.525375,41.72424799906],[-71.525467,41.72432699906],[-71.525543,41.72424899906],[-71.52561,41.72419499906],[-71.525719,41.72412399906],[-71.525856,41.72405299906],[-71.526017,41.72395499906],[-71.526123,41.72389399906],[-71.526199,41.72383399906],[-71.526291,41.72375499906],[-71.52636,41.72363199906],[-71.526421,41.72354499906],[-71.526573,41.72327599906],[-71.526665,41.72309899906],[-71.526672,41.72307599906],[-71.526962,41.72257899906],[-71.527069,41.72235999906],[-71.527169,41.72215099906],[-71.527252,41.72189199906],[-71.527268,41.72173499906],[-71.527275,41.72156299906],[-71.527298,41.72130199906],[-71.527313,41.72108099906],[-71.527313,41.72098199906],[-71.527344,41.72090899906],[-71.527405,41.72082599906],[-71.527483,41.72072399906],[-71.527736,41.72079599906],[-71.527835,41.72080099906],[-71.52793,41.72080799906],[-71.528038,41.72081199906],[-71.528267,41.72083399906],[-71.528641,41.72085799906],[-71.529152,41.72090099906],[-71.52961,41.72093099906],[-71.530037,41.72096199906],[-71.531059,41.72102999906],[-71.531685,41.72106499906],[-71.531837,41.72107999906],[-71.531975,41.72113099906],[-71.532013,41.72115699906],[-71.532165,41.72102399906]]]}}"}, +{"type": "blockgroup", "typeId": 204003, "areaId": 29178, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.534286,41.73017099906],[-71.534269,41.72980799906],[-71.534248,41.72933599906],[-71.534216,41.72905799906],[-71.534198,41.72890099906],[-71.534211,41.72884499906],[-71.534273,41.72877399906],[-71.534266,41.72856699906],[-71.53424,41.72781499906],[-71.534239,41.72777199906],[-71.534233,41.72711699906],[-71.534233,41.72709299906],[-71.534203,41.72580999906],[-71.534152,41.72476899906],[-71.534133,41.72404099906],[-71.53412,41.72392199906],[-71.534128,41.72386399906],[-71.534082,41.72302099906],[-71.534084,41.72297899906],[-71.534082,41.72275499906],[-71.534083,41.72253799906],[-71.534055,41.72220399906],[-71.533997,41.72215799906],[-71.533936,41.72210499906],[-71.533905,41.72207699906],[-71.533874,41.72204799906],[-71.533813,41.72199599906],[-71.533707,41.72189899906],[-71.533653,41.72185999906],[-71.533592,41.72181099906],[-71.533462,41.72171999906],[-71.533386,41.72168499906],[-71.533325,41.72165499906],[-71.533203,41.72156799906],[-71.532997,41.72146399906],[-71.532929,41.72142099906],[-71.532852,41.72137699906],[-71.532791,41.72133799906],[-71.53273,41.72129399906],[-71.532669,41.72125999906],[-71.532593,41.72122499906],[-71.532524,41.72119499906],[-71.53244,41.72115199906],[-71.532349,41.72112699906],[-71.53228,41.72110199906],[-71.53225,41.72107999906],[-71.532211,41.72105799906],[-71.532165,41.72102399906],[-71.532013,41.72115699906],[-71.531975,41.72113099906],[-71.531837,41.72107999906],[-71.531685,41.72106499906],[-71.531059,41.72102999906],[-71.530037,41.72096199906],[-71.52961,41.72093099906],[-71.529152,41.72090099906],[-71.528641,41.72085799906],[-71.528267,41.72083399906],[-71.528038,41.72081199906],[-71.52793,41.72080799906],[-71.527835,41.72080099906],[-71.527736,41.72079599906],[-71.527483,41.72072399906],[-71.527405,41.72082599906],[-71.527344,41.72090899906],[-71.527313,41.72098199906],[-71.527313,41.72108099906],[-71.527298,41.72130199906],[-71.527275,41.72156299906],[-71.527268,41.72173499906],[-71.527252,41.72189199906],[-71.527169,41.72215099906],[-71.527069,41.72235999906],[-71.526962,41.72257899906],[-71.526672,41.72307599906],[-71.526665,41.72309899906],[-71.526573,41.72327599906],[-71.526421,41.72354499906],[-71.52636,41.72363199906],[-71.526291,41.72375499906],[-71.526199,41.72383399906],[-71.526123,41.72389399906],[-71.526017,41.72395499906],[-71.525856,41.72405299906],[-71.525719,41.72412399906],[-71.52561,41.72419499906],[-71.525543,41.72424899906],[-71.525467,41.72432699906],[-71.525413,41.72440999906],[-71.525391,41.72455399906],[-71.52533,41.72480799906],[-71.525291,41.72501999906],[-71.525283,41.72506699906],[-71.525261,41.72518699906],[-71.525253,41.72523699906],[-71.5252,41.72543199906],[-71.525188,41.72546899906],[-71.525147,41.72559999906],[-71.525078,41.72574499906],[-71.52507,41.72577299906],[-71.525027,41.72583599906],[-71.525001,41.72587299906],[-71.524872,41.72599299906],[-71.52478,41.72607599906],[-71.524628,41.72620999906],[-71.524399,41.72637699906],[-71.524353,41.72640499906],[-71.524299,41.72644199906],[-71.524193,41.72652599906],[-71.523941,41.72667499906],[-71.523804,41.72675999906],[-71.523712,41.72682499906],[-71.523262,41.72710899906],[-71.523224,41.72712799906],[-71.523186,41.72715599906],[-71.52301,41.72726299906],[-71.522762,41.72741199906],[-71.522642,41.72748399906],[-71.522438,41.72761399906],[-71.522125,41.72780499906],[-71.522003,41.72790199906],[-71.521813,41.72810899906],[-71.521629,41.72833799906],[-71.521393,41.72863599906],[-71.521164,41.72892899906],[-71.520905,41.72924999906],[-71.520874,41.72929599906],[-71.520683,41.72955199906],[-71.520492,41.72979099906],[-71.520455,41.72984399906],[-71.52034,41.73000999906],[-71.520309,41.73005599906],[-71.520226,41.73016099906],[-71.520119,41.73029399906],[-71.520035,41.73037299906],[-71.519974,41.73040999906],[-71.519928,41.73044299906],[-71.519981,41.73043799906],[-71.520063,41.73043299906],[-71.52041,41.73042899906],[-71.521424,41.73040299906],[-71.521494,41.73040299906],[-71.522282,41.73038299906],[-71.522962,41.73036699906],[-71.523144,41.73036299906],[-71.5245,41.73034599906],[-71.525348,41.73032799906],[-71.52775,41.73027399906],[-71.529232,41.73025699906],[-71.530518,41.73024399906],[-71.530701,41.73024099906],[-71.531229,41.73023099906],[-71.531692,41.73022299906],[-71.532217,41.73021299906],[-71.533159,41.73019699906],[-71.53402,41.73018099906],[-71.534286,41.73017099906]]]}}"}, +{"type": "blockgroup", "typeId": 205001, "areaId": 29179, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.516869,41.73032999906],[-71.516861,41.73025299906],[-71.516861,41.73010499906],[-71.516815,41.72952499906],[-71.5168,41.72927699906],[-71.516768,41.72884199906],[-71.516708,41.72801799906],[-71.516609,41.72663799906],[-71.516502,41.72517299906],[-71.516487,41.72480399906],[-71.515442,41.72483999906],[-71.515182,41.72484999906],[-71.514786,41.72490799906],[-71.514709,41.72490599906],[-71.514343,41.72488199906],[-71.513931,41.72488699906],[-71.513252,41.72490399906],[-71.512871,41.72491399906],[-71.511971,41.72494299906],[-71.511886,41.72493999906],[-71.51181,41.72494199906],[-71.511726,41.72493899906],[-71.511551,41.72492499906],[-71.511407,41.72490899906],[-71.511261,41.72489099906],[-71.511169,41.72487499906],[-71.510918,41.72483999906],[-71.510826,41.72482799906],[-71.510758,41.72481599906],[-71.510605,41.72480199906],[-71.510391,41.72480599906],[-71.510269,41.72481799906],[-71.510208,41.72482799906],[-71.510132,41.72483899906],[-71.510063,41.72484999906],[-71.509995,41.72486499906],[-71.508995,41.72502199906],[-71.50837,41.72510699906],[-71.508309,41.72511299906],[-71.507954,41.72515999906],[-71.507866,41.72517199906],[-71.507538,41.72521099906],[-71.506622,41.72536599906],[-71.506569,41.72537199906],[-71.505607,41.72550999906],[-71.504608,41.72567099906],[-71.503395,41.72592699906],[-71.50248,41.72609999906],[-71.502365,41.72612999906],[-71.50194,41.72622799906],[-71.501539,41.72635399906],[-71.501434,41.72639799906],[-71.50132,41.72647199906],[-71.501236,41.72656399906],[-71.501167,41.72674599906],[-71.501098,41.72707599906],[-71.501065,41.72760399906],[-71.500983,41.72776099906],[-71.500735,41.72796699906],[-71.500457,41.72807699906],[-71.500168,41.72810799906],[-71.499927,41.72809899906],[-71.499778,41.72805799906],[-71.499514,41.72794299906],[-71.49911,41.72770299906],[-71.498606,41.72719999906],[-71.498331,41.72688699906],[-71.497936,41.72664299906],[-71.497389,41.72631499906],[-71.496973,41.72611699906],[-71.496525,41.72600999906],[-71.495989,41.72584099906],[-71.495683,41.72572099906],[-71.49544,41.72562999906],[-71.495094,41.72554899906],[-71.495033,41.72554599906],[-71.49485,41.72556799906],[-71.494758,41.72557499906],[-71.494614,41.72558199906],[-71.494468,41.72558599906],[-71.494324,41.72558399906],[-71.494278,41.72557599906],[-71.494171,41.72556899906],[-71.494041,41.72555399906],[-71.493957,41.72553799906],[-71.493912,41.72552599906],[-71.493843,41.72549999906],[-71.493782,41.72547899906],[-71.49321,41.72521699906],[-71.493111,41.72516899906],[-71.493034,41.72512999906],[-71.492981,41.72509499906],[-71.492653,41.72489099906],[-71.492378,41.72469899906],[-71.492081,41.72449399906],[-71.49202,41.72445899906],[-71.491974,41.72442399906],[-71.491913,41.72438899906],[-71.491873,41.72437199906],[-71.491829,41.72435899906],[-71.491776,41.72434699906],[-71.491684,41.72433099906],[-71.491638,41.72432799906],[-71.491592,41.72432899906],[-71.491531,41.72432499906],[-71.49147,41.72431799906],[-71.491417,41.72431399906],[-71.490906,41.72428899906],[-71.490852,41.72428199906],[-71.490745,41.72426599906],[-71.4907,41.72425299906],[-71.490646,41.72424099906],[-71.490456,41.72415999906],[-71.490372,41.72412099906],[-71.490295,41.72407699906],[-71.490211,41.72403899906],[-71.490151,41.72400899906],[-71.490089,41.72398299906],[-71.48999,41.72392599906],[-71.489952,41.72389599906],[-71.489914,41.72386499906],[-71.489861,41.72382599906],[-71.489792,41.72375999906],[-71.489515,41.72338199906],[-71.489466,41.72324499906],[-71.489386,41.72301299906],[-71.489327,41.72283999906],[-71.489235,41.72290299906],[-71.489158,41.72294899906],[-71.489102,41.72298599906],[-71.489082,41.72299999906],[-71.48893,41.72311199906],[-71.488861,41.72317199906],[-71.488808,41.72322299906],[-71.488754,41.72326399906],[-71.488617,41.72337499906],[-71.488548,41.72343499906],[-71.488472,41.72348199906],[-71.488418,41.72352399906],[-71.488327,41.72361599906],[-71.488273,41.72365699906],[-71.48822,41.72370399906],[-71.488159,41.72374499906],[-71.488098,41.72379199906],[-71.488037,41.72384299906],[-71.487984,41.72388399906],[-71.4879,41.72394499906],[-71.487389,41.72437899906],[-71.487327,41.72444299906],[-71.487267,41.72451199906],[-71.487221,41.72455799906],[-71.487167,41.72461799906],[-71.487106,41.72467299906],[-71.487045,41.72473299906],[-71.486984,41.72480199906],[-71.486931,41.72487099906],[-71.486862,41.72493499906],[-71.486801,41.72500399906],[-71.486748,41.72506799906],[-71.486687,41.72512399906],[-71.486634,41.72518299906],[-71.48658,41.72523399906],[-71.486526,41.72528899906],[-71.486473,41.72532699906],[-71.486412,41.72538199906],[-71.486366,41.72542799906],[-71.486328,41.72548699906],[-71.486275,41.72559199906],[-71.486221,41.72566099906],[-71.486145,41.72576099906],[-71.486099,41.72581199906],[-71.486046,41.72586699906],[-71.485954,41.72596799906],[-71.485901,41.72601899906],[-71.485863,41.72606499906],[-71.485802,41.72612499906],[-71.485764,41.72617499906],[-71.485702,41.72622099906],[-71.485603,41.72628699906],[-71.48555,41.72631899906],[-71.485507,41.72632799906],[-71.485497,41.72636099906],[-71.485481,41.72639299906],[-71.485054,41.72779299906],[-71.48481,41.72861799906],[-71.484781,41.72872399906],[-71.484713,41.72894099906],[-71.484645,41.72914799906],[-71.484596,41.72931199906],[-71.48391,41.73160299906],[-71.484158,41.73159499906],[-71.486039,41.73153599906],[-71.486164,41.73153299906],[-71.486568,41.73151899906],[-71.486835,41.73151099906],[-71.487054,41.73150499906],[-71.488246,41.73147199906],[-71.490182,41.73141799906],[-71.490677,41.73140099906],[-71.493451,41.73130499906],[-71.493751,41.73129499906],[-71.494144,41.73128099906],[-71.494364,41.73127299906],[-71.494694,41.73126199906],[-71.494834,41.73125699906],[-71.495797,41.73122399906],[-71.496226,41.73120899906],[-71.497849,41.73114999906],[-71.497942,41.73115099906],[-71.501832,41.73106099906],[-71.503659,41.73101799906],[-71.504616,41.73099599906],[-71.507805,41.73088499906],[-71.508643,41.73085599906],[-71.509355,41.73083099906],[-71.509486,41.73082599906],[-71.509616,41.73082199906],[-71.511985,41.73073999906],[-71.512331,41.73072699906],[-71.513183,41.73069799906],[-71.513225,41.73069699906],[-71.513294,41.73069399906],[-71.516861,41.73060799906],[-71.516861,41.73054599906],[-71.516869,41.73043799906],[-71.516869,41.73032999906]]]}}"}, +{"type": "blockgroup", "typeId": 205002, "areaId": 29180, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.521568,41.72378699906],[-71.52153,41.72365299906],[-71.521484,41.72341499906],[-71.521446,41.72277699906],[-71.52137,41.72188699906],[-71.521324,41.72135199906],[-71.521232,41.72045799906],[-71.521225,41.72040799906],[-71.52121,41.72025099906],[-71.521133,41.71965399906],[-71.521095,41.71931199906],[-71.521072,41.71893899906],[-71.520973,41.71829299906],[-71.520996,41.71822499906],[-71.521001,41.71817499906],[-71.520958,41.71816699906],[-71.519851,41.71794499906],[-71.519058,41.71778599906],[-71.518662,41.71766799906],[-71.518662,41.71784399906],[-71.518661,41.71790699906],[-71.518662,41.71796999906],[-71.518654,41.71802899906],[-71.518639,41.71809199906],[-71.518616,41.71814599906],[-71.518601,41.71820499906],[-71.518578,41.71825999906],[-71.518562,41.71831399906],[-71.518524,41.71838699906],[-71.518471,41.71845599906],[-71.518425,41.71849699906],[-71.518379,41.71854799906],[-71.518334,41.71860299906],[-71.51828,41.71866299906],[-71.518227,41.71871799906],[-71.518173,41.71876899906],[-71.518127,41.71880999906],[-71.518074,41.71884699906],[-71.518028,41.71889299906],[-71.517998,41.71894399906],[-71.517883,41.71909499906],[-71.517822,41.71915499906],[-71.517746,41.71921499906],[-71.517685,41.71925699906],[-71.517632,41.71928899906],[-71.517609,41.71929899906],[-71.51754,41.71934099906],[-71.517456,41.71937899906],[-71.51738,41.71941199906],[-71.517311,41.71945399906],[-71.517235,41.71949199906],[-71.517174,41.71953299906],[-71.517105,41.71957099906],[-71.517044,41.71960799906],[-71.516975,41.71964099906],[-71.516914,41.71967899906],[-71.516846,41.71970699906],[-71.516762,41.71973599906],[-71.516678,41.71976899906],[-71.516602,41.71979399906],[-71.516518,41.71981399906],[-71.516434,41.71983799906],[-71.516281,41.71988599906],[-71.516267,41.71989299906],[-71.516205,41.71991899906],[-71.516128,41.71995299906],[-71.51606,41.71998099906],[-71.515976,41.72000099906],[-71.515801,41.72003199906],[-71.515594,41.72004499906],[-71.515503,41.72005199906],[-71.515411,41.72005799906],[-71.515144,41.72006399906],[-71.515053,41.72006199906],[-71.514961,41.72005499906],[-71.51487,41.72004299906],[-71.514816,41.72003499906],[-71.51477,41.72002699906],[-71.514572,41.72000499906],[-71.514389,41.71997299906],[-71.51429,41.71995199906],[-71.514191,41.71992799906],[-71.514099,41.71991199906],[-71.514007,41.71988199906],[-71.513924,41.71985699906],[-71.513847,41.71983099906],[-71.513718,41.71976699906],[-71.513573,41.71966599906],[-71.513504,41.71960899906],[-71.513451,41.71955199906],[-71.513405,41.71949399906],[-71.51329,41.71938399906],[-71.513229,41.71932699906],[-71.513168,41.71926499906],[-71.513031,41.71913299906],[-71.51297,41.71906699906],[-71.512901,41.71900599906],[-71.512818,41.71893999906],[-71.512733,41.71887399906],[-71.512657,41.71881299906],[-71.512588,41.71875599906],[-71.51252,41.71868099906],[-71.512505,41.71865899906],[-71.512466,41.71859599906],[-71.512444,41.71853399906],[-71.512413,41.71845299906],[-71.512359,41.71831899906],[-71.512329,41.71827099906],[-71.512298,41.71820799906],[-71.512268,41.71814099906],[-71.512238,41.71806499906],[-71.512207,41.71798099906],[-71.512169,41.71789099906],[-71.512123,41.71781599906],[-71.51207,41.71775799906],[-71.512024,41.71769599906],[-71.511978,41.71764299906],[-71.511925,41.71758999906],[-71.511856,41.71754199906],[-71.511796,41.71749399906],[-71.511786,41.71732799906],[-71.511786,41.71724299906],[-71.511784,41.71710999906],[-71.511711,41.71706799906],[-71.51165,41.71702899906],[-71.511589,41.71698499906],[-71.51152,41.71694199906],[-71.511459,41.71689799906],[-71.511391,41.71684599906],[-71.511322,41.71680699906],[-71.511261,41.71676699906],[-71.511207,41.71672799906],[-71.511147,41.71667999906],[-71.511063,41.71665499906],[-71.510971,41.71662499906],[-71.510879,41.71658199906],[-71.510811,41.71656099906],[-71.510719,41.71652699906],[-71.510696,41.71650699906],[-71.510704,41.71649399906],[-71.510511,41.71648699906],[-71.510584,41.71638399906],[-71.510635,41.71637099906],[-71.510681,41.71635699906],[-71.510719,41.71633799906],[-71.510758,41.71631499906],[-71.510811,41.71626799906],[-71.510819,41.71621399906],[-71.51078,41.71614299906],[-71.510742,41.71608099906],[-71.510735,41.71601799906],[-71.510742,41.71595899906],[-71.510811,41.71583599906],[-71.510857,41.71578599906],[-71.51091,41.71572999906],[-71.511032,41.71561099906],[-71.511086,41.71554599906],[-71.511146,41.71548699906],[-71.511207,41.71543599906],[-71.511276,41.71537999906],[-71.511345,41.71533799906],[-71.511398,41.71529199906],[-71.51152,41.71520799906],[-71.511658,41.71511499906],[-71.511795,41.71504899906],[-71.511865,41.71501699906],[-71.511902,41.71500599906],[-71.511955,41.71497799906],[-71.512138,41.71490199906],[-71.51223,41.71486799906],[-71.512314,41.71483099906],[-71.512413,41.71480999906],[-71.51268,41.71466499906],[-71.512627,41.71460299906],[-71.512344,41.71469499906],[-71.512367,41.71476199906],[-71.512291,41.71479499906],[-71.51223,41.71466599906],[-71.512268,41.71462399906],[-71.512329,41.71458299906],[-71.512405,41.71456299906],[-71.512428,41.71455299906],[-71.512497,41.71453799906],[-71.512596,41.71451399906],[-71.512687,41.71450299906],[-71.512863,41.71449899906],[-71.512947,41.71450199906],[-71.513145,41.71450599906],[-71.513252,41.71451699906],[-71.513351,41.71452899906],[-71.513443,41.71452699906],[-71.513527,41.71452899906],[-71.51371,41.71452499906],[-71.513794,41.71452799906],[-71.513962,41.71452399906],[-71.51403,41.71450899906],[-71.514099,41.71447599906],[-71.514175,41.71444799906],[-71.514259,41.71441399906],[-71.514336,41.71438599906],[-71.514378,41.71436599906],[-71.513662,41.71424299906],[-71.51329,41.71417899906],[-71.512345,41.71406899906],[-71.511116,41.71396099906],[-71.510231,41.71391699906],[-71.510056,41.71390699906],[-71.509888,41.71389299906],[-71.509712,41.71388299906],[-71.509575,41.71387299906],[-71.509315,41.71384199906],[-71.509201,41.71382699906],[-71.509094,41.71381599906],[-71.508873,41.71377499906],[-71.508652,41.71372599906],[-71.508438,41.71367199906],[-71.508362,41.71365199906],[-71.508263,41.71361799906],[-71.508156,41.71357999906],[-71.507813,41.71346099906],[-71.507698,41.71341799906],[-71.507545,41.71335199906],[-71.507431,41.71330299906],[-71.507278,41.71322899906],[-71.506912,41.71305299906],[-71.505875,41.71256699906],[-71.505631,41.71247299906],[-71.505363,41.71237099906],[-71.504723,41.71215899906],[-71.502899,41.71159099906],[-71.502365,41.71147199906],[-71.501267,41.71153199906],[-71.501076,41.71154999906],[-71.500908,41.71157599906],[-71.500786,41.71160599906],[-71.500717,41.71162499906],[-71.500633,41.71165899906],[-71.500557,41.71168699906],[-71.500481,41.71172499906],[-71.500382,41.71177199906],[-71.50032,41.71179599906],[-71.500253,41.71182299906],[-71.500015,41.71191999906],[-71.499649,41.71206299906],[-71.499557,41.71210099906],[-71.499115,41.71227699906],[-71.498918,41.71235199906],[-71.498535,41.71250099906],[-71.498449,41.71253699906],[-71.498311,41.71259399906],[-71.497963,41.71273899906],[-71.497879,41.71277199906],[-71.497734,41.71283799906],[-71.497566,41.71290499906],[-71.49749,41.71293799906],[-71.497437,41.71296599906],[-71.497269,41.71306899906],[-71.497185,41.71312499906],[-71.497116,41.71316699906],[-71.497055,41.71320899906],[-71.497002,41.71325499906],[-71.496948,41.71329699906],[-71.496887,41.71336599906],[-71.496826,41.71342999906],[-71.496773,41.71349899906],[-71.496597,41.71370899906],[-71.495946,41.71448399906],[-71.495834,41.71461799906],[-71.49556,41.71494399906],[-71.495415,41.71512199906],[-71.495334,41.71522699906],[-71.495255,41.71533299906],[-71.495216,41.71538299906],[-71.494629,41.71608499906],[-71.494179,41.71666699906],[-71.493958,41.71690599906],[-71.493889,41.71696599906],[-71.493584,41.71723799906],[-71.493446,41.71735799906],[-71.493338,41.71744999906],[-71.492892,41.71782599906],[-71.492874,41.71781199906],[-71.492821,41.71778099906],[-71.492706,41.71776999906],[-71.492615,41.71778599906],[-71.492531,41.71778299906],[-71.49247,41.71774399906],[-71.492439,41.71768599906],[-71.492417,41.71762399906],[-71.492348,41.71759399906],[-71.492279,41.71757299906],[-71.492172,41.71756999906],[-71.492088,41.71755899906],[-71.491913,41.71753099906],[-71.491821,41.71752799906],[-71.491738,41.71752999906],[-71.491661,41.71752699906],[-71.491585,41.71751599906],[-71.491501,41.71750799906],[-71.491409,41.71750099906],[-71.49131,41.71748999906],[-71.491219,41.71747799906],[-71.491119,41.71746699906],[-71.491012,41.71746899906],[-71.490906,41.71746699906],[-71.490814,41.71746899906],[-71.49073,41.71746699906],[-71.490631,41.71749099906],[-71.490539,41.71751599906],[-71.490463,41.71754899906],[-71.490379,41.71758699906],[-71.490288,41.71762499906],[-71.490234,41.71765699906],[-71.490181,41.71769899906],[-71.490089,41.71779099906],[-71.490013,41.71788299906],[-71.489952,41.71794699906],[-71.489906,41.71800699906],[-71.489868,41.71806199906],[-71.489815,41.71818399906],[-71.489784,41.71823899906],[-71.489716,41.71836699906],[-71.48967,41.71842599906],[-71.489594,41.71854499906],[-71.489571,41.71860399906],[-71.489533,41.71865899906],[-71.48951,41.71871299906],[-71.489495,41.71878999906],[-71.489479,41.71893899906],[-71.489479,41.71924499906],[-71.489494,41.71936699906],[-71.48954,41.71941499906],[-71.48954,41.71887899906],[-71.489876,41.71820599906],[-71.490578,41.71762699906],[-71.490593,41.71770399906],[-71.490585,41.71775799906],[-71.490539,41.71782599906],[-71.490471,41.71788599906],[-71.490417,41.71792399906],[-71.490349,41.71796099906],[-71.490288,41.71800299906],[-71.490227,41.71803599906],[-71.490165,41.71807299906],[-71.490105,41.71811499906],[-71.490066,41.71816099906],[-71.490028,41.71821999906],[-71.489983,41.71827999906],[-71.489952,41.71834299906],[-71.489914,41.71839799906],[-71.489883,41.71846199906],[-71.489845,41.71852099906],[-71.489815,41.71859399906],[-71.489792,41.71867599906],[-71.489776,41.71875699906],[-71.489754,41.71882999906],[-71.489738,41.71890199906],[-71.489731,41.71897899906],[-71.489731,41.71943799906],[-71.489746,41.71959099906],[-71.489754,41.71964899906],[-71.489769,41.71971199906],[-71.489776,41.71977899906],[-71.489807,41.71985099906],[-71.48983,41.71992699906],[-71.489861,41.72000299906],[-71.489922,41.72013599906],[-71.48996,41.72019899906],[-71.48999,41.72026499906],[-71.490013,41.72032299906],[-71.490036,41.72038599906],[-71.490059,41.72045299906],[-71.49012,41.72064799906],[-71.490196,41.72087299906],[-71.490219,41.72094899906],[-71.490234,41.72102999906],[-71.490257,41.72110199906],[-71.490272,41.72117299906],[-71.49028,41.72122699906],[-71.49028,41.72140299906],[-71.490273,41.72146199906],[-71.490257,41.72153399906],[-71.490227,41.72165199906],[-71.490227,41.72171499906],[-71.490211,41.72182799906],[-71.490196,41.72194499906],[-71.490189,41.72200799906],[-71.490173,41.72207199906],[-71.490151,41.72213099906],[-71.490112,41.72218599906],[-71.490074,41.72224899906],[-71.490036,41.72230399906],[-71.48999,41.72236799906],[-71.489929,41.72242799906],[-71.489868,41.72248399906],[-71.489807,41.72252499906],[-71.489754,41.72256299906],[-71.4897,41.72260399906],[-71.489655,41.72264599906],[-71.489581,41.72269499906],[-71.489494,41.72273899906],[-71.489426,41.72277199906],[-71.489327,41.72283999906],[-71.489386,41.72301299906],[-71.489466,41.72324499906],[-71.489515,41.72338199906],[-71.489792,41.72375999906],[-71.489861,41.72382599906],[-71.489914,41.72386499906],[-71.489952,41.72389599906],[-71.48999,41.72392599906],[-71.490089,41.72398299906],[-71.490151,41.72400899906],[-71.490211,41.72403899906],[-71.490295,41.72407699906],[-71.490372,41.72412099906],[-71.490456,41.72415999906],[-71.490646,41.72424099906],[-71.4907,41.72425299906],[-71.490745,41.72426599906],[-71.490852,41.72428199906],[-71.490906,41.72428899906],[-71.491417,41.72431399906],[-71.49147,41.72431799906],[-71.491531,41.72432499906],[-71.491592,41.72432899906],[-71.491638,41.72432799906],[-71.491684,41.72433099906],[-71.491776,41.72434699906],[-71.491829,41.72435899906],[-71.491873,41.72437199906],[-71.491913,41.72438899906],[-71.491974,41.72442399906],[-71.49202,41.72445899906],[-71.492081,41.72449399906],[-71.492378,41.72469899906],[-71.492653,41.72489099906],[-71.492981,41.72509499906],[-71.493034,41.72512999906],[-71.493111,41.72516899906],[-71.49321,41.72521699906],[-71.493782,41.72547899906],[-71.493843,41.72549999906],[-71.493912,41.72552599906],[-71.493957,41.72553799906],[-71.494041,41.72555399906],[-71.494171,41.72556899906],[-71.494278,41.72557599906],[-71.494324,41.72558399906],[-71.494468,41.72558599906],[-71.494614,41.72558199906],[-71.494758,41.72557499906],[-71.49485,41.72556799906],[-71.495033,41.72554599906],[-71.495094,41.72554899906],[-71.49544,41.72562999906],[-71.495683,41.72572099906],[-71.495989,41.72584099906],[-71.496525,41.72600999906],[-71.496973,41.72611699906],[-71.497389,41.72631499906],[-71.497936,41.72664299906],[-71.498331,41.72688699906],[-71.498606,41.72719999906],[-71.49911,41.72770299906],[-71.499514,41.72794299906],[-71.499778,41.72805799906],[-71.499927,41.72809899906],[-71.500168,41.72810799906],[-71.500457,41.72807699906],[-71.500735,41.72796699906],[-71.500983,41.72776099906],[-71.501065,41.72760399906],[-71.501098,41.72707599906],[-71.501167,41.72674599906],[-71.501236,41.72656399906],[-71.50132,41.72647199906],[-71.501434,41.72639799906],[-71.501539,41.72635399906],[-71.50194,41.72622799906],[-71.502365,41.72612999906],[-71.50248,41.72609999906],[-71.503395,41.72592699906],[-71.504608,41.72567099906],[-71.505607,41.72550999906],[-71.506569,41.72537199906],[-71.506622,41.72536599906],[-71.507538,41.72521099906],[-71.507866,41.72517199906],[-71.507954,41.72515999906],[-71.508309,41.72511299906],[-71.50837,41.72510699906],[-71.508995,41.72502199906],[-71.509995,41.72486499906],[-71.510063,41.72484999906],[-71.510132,41.72483899906],[-71.510208,41.72482799906],[-71.510269,41.72481799906],[-71.510391,41.72480599906],[-71.510605,41.72480199906],[-71.510758,41.72481599906],[-71.510826,41.72482799906],[-71.510918,41.72483999906],[-71.511169,41.72487499906],[-71.511261,41.72489099906],[-71.511407,41.72490899906],[-71.511551,41.72492499906],[-71.511726,41.72493899906],[-71.51181,41.72494199906],[-71.511886,41.72493999906],[-71.511971,41.72494299906],[-71.512871,41.72491399906],[-71.513252,41.72490399906],[-71.513931,41.72488699906],[-71.514343,41.72488199906],[-71.514709,41.72490599906],[-71.514786,41.72490799906],[-71.515182,41.72484999906],[-71.515442,41.72483999906],[-71.516487,41.72480399906],[-71.516919,41.72475999906],[-71.517126,41.72473999906],[-71.517235,41.72472899906],[-71.517494,41.72467799906],[-71.517868,41.72458899906],[-71.518211,41.72451399906],[-71.518509,41.72444399906],[-71.518631,41.72441399906],[-71.519119,41.72431399906],[-71.519668,41.72419299906],[-71.520447,41.72405899906],[-71.520981,41.72398899906],[-71.521156,41.72394899906],[-71.521286,41.72390599906],[-71.521568,41.72378699906]]]}}"}, +{"type": "blockgroup", "typeId": 206011, "areaId": 29181, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.550038,41.72998499906],[-71.550016,41.72996799906],[-71.549805,41.72983699906],[-71.549576,41.72966699906],[-71.549255,41.72944399906],[-71.548897,41.72918699906],[-71.548614,41.72897199906],[-71.548446,41.72882299906],[-71.548378,41.72872499906],[-71.54847,41.72865999906],[-71.548561,41.72854999906],[-71.548584,41.72836499906],[-71.548597,41.72796999906],[-71.548559,41.72764399906],[-71.548553,41.72759099906],[-71.548462,41.72718299906],[-71.54834,41.72672699906],[-71.548149,41.72610999906],[-71.548065,41.72578699906],[-71.547974,41.72546499906],[-71.547829,41.72465299906],[-71.547768,41.72431199906],[-71.547729,41.72399799906],[-71.547676,41.72358899906],[-71.547577,41.72306899906],[-71.547447,41.72252299906],[-71.547333,41.72200699906],[-71.54715,41.72170099906],[-71.546956,41.72138699906],[-71.546783,41.72105599906],[-71.546723,41.72093099906],[-71.546684,41.72085099906],[-71.546478,41.72052699906],[-71.546234,41.72018999906],[-71.546003,41.71988199906],[-71.54586,41.71973899906],[-71.545715,41.71962499906],[-71.545555,41.71955699906],[-71.54525,41.71949999906],[-71.544876,41.71943699906],[-71.544388,41.71933499906],[-71.544022,41.71929299906],[-71.543686,41.71929599906],[-71.543388,41.71932099906],[-71.543236,41.71933299906],[-71.542603,41.71953599906],[-71.542107,41.71965499906],[-71.541542,41.71968099906],[-71.541046,41.71972799906],[-71.540382,41.71976999906],[-71.539856,41.71982699906],[-71.539444,41.71991199906],[-71.538788,41.72010699906],[-71.538216,41.72034499906],[-71.538094,41.72038799906],[-71.537674,41.72059499906],[-71.53717,41.72095799906],[-71.536636,41.72134299906],[-71.536057,41.72175199906],[-71.535805,41.72192499906],[-71.535408,41.72221699906],[-71.534981,41.72186599906],[-71.534577,41.72156399906],[-71.534439,41.72142799906],[-71.534157,41.72123199906],[-71.534015,41.72114199906],[-71.534004,41.72123999906],[-71.534034,41.72165599906],[-71.534047,41.72171399906],[-71.534043,41.72190499906],[-71.534068,41.72197999906],[-71.534055,41.72220399906],[-71.534083,41.72253799906],[-71.534082,41.72275499906],[-71.534084,41.72297899906],[-71.534082,41.72302099906],[-71.534128,41.72386399906],[-71.53412,41.72392199906],[-71.534133,41.72404099906],[-71.534152,41.72476899906],[-71.534203,41.72580999906],[-71.534233,41.72709299906],[-71.534233,41.72711699906],[-71.534239,41.72777199906],[-71.53424,41.72781499906],[-71.534266,41.72856699906],[-71.534273,41.72877399906],[-71.534211,41.72884499906],[-71.534198,41.72890099906],[-71.534216,41.72905799906],[-71.534248,41.72933599906],[-71.534269,41.72980799906],[-71.534286,41.73017099906],[-71.534321,41.73016899906],[-71.534426,41.73017199906],[-71.534438,41.73017399906],[-71.534965,41.73016999906],[-71.535609,41.73016499906],[-71.535684,41.73016499906],[-71.538377,41.73014499906],[-71.538966,41.73014099906],[-71.540233,41.73013099906],[-71.540441,41.73012999906],[-71.540803,41.73012699906],[-71.544171,41.73010299906],[-71.544724,41.73007599906],[-71.545143,41.73007199906],[-71.545364,41.73006599906],[-71.545461,41.73007399906],[-71.545497,41.73007699906],[-71.545578,41.73008399906],[-71.545807,41.73009699906],[-71.545963,41.73009199906],[-71.546439,41.73053699906],[-71.546788,41.73086399906],[-71.546984,41.73100699906],[-71.547353,41.73120299906],[-71.547425,41.73124199906],[-71.547426,41.73106499906],[-71.547429,41.73030599906],[-71.54743,41.73002499906],[-71.547578,41.73002199906],[-71.548515,41.73000099906],[-71.548833,41.72999599906],[-71.548921,41.72999699906],[-71.549615,41.72998899906],[-71.549722,41.72998899906],[-71.550038,41.72998499906]]]}}"}, +{"type": "blockgroup", "typeId": 206012, "areaId": 29182, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.548248,41.70764499906],[-71.548126,41.70727399906],[-71.548004,41.70691599906],[-71.547867,41.70657299906],[-71.547569,41.70593099906],[-71.547463,41.70571699906],[-71.547317,41.70546299906],[-71.547226,41.70531699906],[-71.547066,41.70501899906],[-71.546845,41.70464099906],[-71.546669,41.70432999906],[-71.546494,41.70404999906],[-71.546326,41.70374699906],[-71.546173,41.70347999906],[-71.546005,41.70321799906],[-71.545922,41.70305799906],[-71.545723,41.70294099906],[-71.54538,41.70275999906],[-71.545029,41.70255999906],[-71.544739,41.70240899906],[-71.544479,41.70225699906],[-71.544312,41.70215299906],[-71.544143,41.70197599906],[-71.543923,41.70173799906],[-71.543823,41.70161899906],[-71.54348,41.70124399906],[-71.543213,41.70095699906],[-71.542908,41.70065699906],[-71.542687,41.70094099906],[-71.542435,41.70121699906],[-71.54213,41.70155699906],[-71.541847,41.70189699906],[-71.541527,41.70226399906],[-71.540947,41.70295199906],[-71.540184,41.70290199906],[-71.539886,41.70288999906],[-71.53965,41.70289999906],[-71.539436,41.70293599906],[-71.539169,41.70303699906],[-71.538917,41.70314599906],[-71.538719,41.70322199906],[-71.538505,41.70323999906],[-71.538109,41.70323599906],[-71.537674,41.70321399906],[-71.537109,41.70314999906],[-71.536537,41.70306799906],[-71.536064,41.70304699906],[-71.535919,41.70304499906],[-71.535866,41.70304599906],[-71.535751,41.70304899906],[-71.534813,41.70308299906],[-71.53479,41.70293499906],[-71.534767,41.70269699906],[-71.534752,41.70253099906],[-71.534728,41.70234699906],[-71.534721,41.70229299906],[-71.534706,41.70219399906],[-71.534676,41.70194199906],[-71.53464,41.70169699906],[-71.534637,41.70167299906],[-71.534607,41.70147599906],[-71.534607,41.70143099906],[-71.534553,41.70110299906],[-71.534546,41.70104899906],[-71.534515,41.70085199906],[-71.53418,41.70087699906],[-71.53376,41.70091299906],[-71.533364,41.70094499906],[-71.533302,41.70094599906],[-71.533306,41.70104999906],[-71.533307,41.70107199906],[-71.533309,41.70112599906],[-71.53331,41.70116999906],[-71.533311,41.70119899906],[-71.533315,41.70130799906],[-71.533322,41.70150199906],[-71.533326,41.70160299906],[-71.533341,41.70201799906],[-71.533342,41.70205499906],[-71.533353,41.70240799906],[-71.533356,41.70248699906],[-71.533361,41.70265599906],[-71.533374,41.70282599906],[-71.53337,41.70292599906],[-71.533381,41.70310299906],[-71.533374,41.70326299906],[-71.533392,41.70353499906],[-71.53346,41.70538099906],[-71.533497,41.70628899906],[-71.533492,41.70657499906],[-71.533488,41.70681399906],[-71.53351,41.70690899906],[-71.533546,41.70759499906],[-71.533547,41.70788899906],[-71.533542,41.70800099906],[-71.533544,41.70816399906],[-71.533542,41.70833199906],[-71.533541,41.70845899906],[-71.533542,41.70847199906],[-71.533541,41.70851799906],[-71.533546,41.70863299906],[-71.533557,41.70882999906],[-71.533588,41.70905999906],[-71.53357,41.70910499906],[-71.53359,41.70951499906],[-71.533627,41.71023799906],[-71.533642,41.71053799906],[-71.533647,41.71061599906],[-71.533689,41.71126299906],[-71.533747,41.71217599906],[-71.533756,41.71263599906],[-71.533753,41.71277499906],[-71.533774,41.71372699906],[-71.533774,41.71374499906],[-71.533799,41.71451099906],[-71.533791,41.71525499906],[-71.533824,41.71528999906],[-71.533825,41.71534399906],[-71.533836,41.71579899906],[-71.533838,41.71587399906],[-71.533841,41.71592199906],[-71.533845,41.71594699906],[-71.533849,41.71600899906],[-71.533859,41.71613599906],[-71.53386,41.71642499906],[-71.533896,41.71751399906],[-71.533883,41.71767999906],[-71.533923,41.71827899906],[-71.533938,41.71884799906],[-71.533942,41.71901699906],[-71.533944,41.71905699906],[-71.533966,41.71943299906],[-71.533973,41.72088499906],[-71.534015,41.72114199906],[-71.534157,41.72123199906],[-71.534439,41.72142799906],[-71.534577,41.72156399906],[-71.534981,41.72186599906],[-71.535408,41.72221699906],[-71.535805,41.72192499906],[-71.536057,41.72175199906],[-71.536636,41.72134299906],[-71.53717,41.72095799906],[-71.537674,41.72059499906],[-71.538094,41.72038799906],[-71.538216,41.72034499906],[-71.538788,41.72010699906],[-71.539444,41.71991199906],[-71.539856,41.71982699906],[-71.540382,41.71976999906],[-71.541046,41.71972799906],[-71.541542,41.71968099906],[-71.542107,41.71965499906],[-71.542603,41.71953599906],[-71.543236,41.71933299906],[-71.543198,41.71914499906],[-71.543091,41.71879199906],[-71.542992,41.71852399906],[-71.542946,41.71839399906],[-71.542732,41.71781799906],[-71.542518,41.71737199906],[-71.542435,41.71716199906],[-71.542389,41.71694299906],[-71.542343,41.71670099906],[-71.542351,41.71647999906],[-71.542404,41.71639799906],[-71.542526,41.71628699906],[-71.542702,41.71616099906],[-71.543022,41.71597399906],[-71.543846,41.71547899906],[-71.544098,41.71530599906],[-71.544388,41.71501599906],[-71.544632,41.71473199906],[-71.544716,41.71464899906],[-71.544808,41.71454799906],[-71.544869,41.71448299906],[-71.544998,41.71423299906],[-71.545072,41.71411899906],[-71.545189,41.71393999906],[-71.545395,41.71359399906],[-71.54557,41.71337399906],[-71.545777,41.71309899906],[-71.545899,41.71292499906],[-71.545953,41.71280399906],[-71.545982,41.71262099906],[-71.545975,41.71243699906],[-71.545937,41.71221299906],[-71.545822,41.71189499906],[-71.545746,41.71167599906],[-71.5457,41.71156499906],[-71.545669,41.71141199906],[-71.545723,41.71127199906],[-71.545891,41.71105199906],[-71.546066,41.71084099906],[-71.546242,41.71063399906],[-71.546288,41.71051599906],[-71.546295,41.71034899906],[-71.546272,41.71014299906],[-71.546211,41.70995499906],[-71.546196,41.70979299906],[-71.546257,41.70964299906],[-71.546364,41.70950599906],[-71.546555,41.70934399906],[-71.54686,41.70918899906],[-71.547173,41.70901499906],[-71.547547,41.70876799906],[-71.547829,41.70856799906],[-71.547951,41.70829499906],[-71.548104,41.70796799906],[-71.548248,41.70764499906]]]}}"}, +{"type": "blockgroup", "typeId": 206013, "areaId": 29183, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.576525,41.72933999906],[-71.576523,41.72930599906],[-71.576408,41.72886299906],[-71.57634,41.72861699906],[-71.576163,41.72828299906],[-71.576011,41.72793099906],[-71.575858,41.72756799906],[-71.575661,41.72701299906],[-71.575507,41.72663999906],[-71.575377,41.72626399906],[-71.575225,41.72584799906],[-71.575118,41.72557099906],[-71.57508,41.72534199906],[-71.575072,41.72501799906],[-71.575072,41.72465399906],[-71.575057,41.72442899906],[-71.575004,41.72417299906],[-71.574952,41.72406699906],[-71.574898,41.72395999906],[-71.574745,41.72363899906],[-71.574615,41.72328099906],[-71.574493,41.72294199906],[-71.574326,41.72252699906],[-71.574219,41.72229999906],[-71.57412,41.72218499906],[-71.574051,41.72211399906],[-71.573769,41.72201299906],[-71.573364,41.72198099906],[-71.572899,41.72197299906],[-71.572411,41.72198399906],[-71.572075,41.72198299906],[-71.571838,41.72196099906],[-71.571716,41.72190499906],[-71.571655,41.72177599906],[-71.571655,41.72155499906],[-71.57165,41.72119899906],[-71.571648,41.72107799906],[-71.571617,41.72048499906],[-71.571617,41.72023199906],[-71.57161,41.71997999906],[-71.571594,41.71885499906],[-71.571594,41.71881499906],[-71.571602,41.71830499906],[-71.571594,41.71775199906],[-71.571617,41.71693599906],[-71.571617,41.71643599906],[-71.57164,41.71622399906],[-71.571678,41.71602099906],[-71.571754,41.71565399906],[-71.571838,41.71534199906],[-71.571915,41.71498399906],[-71.571991,41.71465799906],[-71.572022,41.71453599906],[-71.57206,41.71435999906],[-71.572205,41.71370799906],[-71.572281,41.71333699906],[-71.572365,41.71313699906],[-71.572548,41.71288499906],[-71.572769,41.71260999906],[-71.57296,41.71234499906],[-71.57312,41.71209299906],[-71.573258,41.71174799906],[-71.573288,41.71167499906],[-71.573357,41.71131299906],[-71.573403,41.71107799906],[-71.573441,41.71077999906],[-71.573509,41.71037799906],[-71.573509,41.71010299906],[-71.573525,41.70990899906],[-71.57357,41.70961099906],[-71.573593,41.70935799906],[-71.57357,41.70912899906],[-71.573554,41.70904899906],[-71.573525,41.70890499906],[-71.57352,41.70882299906],[-71.573509,41.70864899906],[-71.573502,41.70845099906],[-71.573456,41.70827199906],[-71.57341,41.70815099906],[-71.573318,41.70800899906],[-71.573173,41.70780099906],[-71.572952,41.70749499906],[-71.572899,41.70733399906],[-71.572906,41.70716299906],[-71.572975,41.70697199906],[-71.572998,41.70683199906],[-71.573006,41.70667899906],[-71.572968,41.70651299906],[-71.572899,41.70636099906],[-71.5728,41.70625099906],[-71.572632,41.70611999906],[-71.572487,41.70603699906],[-71.57243,41.70600699906],[-71.572327,41.70595499906],[-71.572197,41.70581899906],[-71.572121,41.70566699906],[-71.572103,41.70563999906],[-71.572014,41.70550299906],[-71.571869,41.70533499906],[-71.571793,41.70526199906],[-71.571732,41.70520299906],[-71.57148,41.70503799906],[-71.571258,41.70486299906],[-71.571129,41.70472099906],[-71.571045,41.70456999906],[-71.570946,41.70442799906],[-71.570831,41.70430899906],[-71.570648,41.70416499906],[-71.570458,41.70399799906],[-71.570297,41.70384399906],[-71.570175,41.70368499906],[-71.570084,41.70355099906],[-71.569954,41.70345999906],[-71.56974,41.70336099906],[-71.569542,41.70326599906],[-71.569472,41.70319899906],[-71.56942,41.70314799906],[-71.56926,41.70299299906],[-71.569038,41.70278199906],[-71.568825,41.70257099906],[-71.568542,41.70232499906],[-71.568253,41.70210199906],[-71.567978,41.70185599906],[-71.567726,41.70161799906],[-71.567551,41.70142899906],[-71.567352,41.70126199906],[-71.567131,41.70107799906],[-71.567001,41.70094999906],[-71.566643,41.70065599906],[-71.566528,41.70048799906],[-71.566398,41.70027099906],[-71.566315,41.70013199906],[-71.566238,41.69993999906],[-71.566162,41.69970299906],[-71.566117,41.69950199906],[-71.566063,41.69926899906],[-71.566032,41.69905799906],[-71.566017,41.69884199906],[-71.565987,41.69856799906],[-71.565964,41.69834299906],[-71.565925,41.69814199906],[-71.565865,41.69785499906],[-71.565811,41.69764899906],[-71.565796,41.69752299906],[-71.565765,41.69685699906],[-71.565742,41.69660099906],[-71.565727,41.69634899906],[-71.565712,41.69616099906],[-71.565689,41.69598499906],[-71.565636,41.69578899906],[-71.565506,41.69543599906],[-71.56543,41.69517199906],[-71.565323,41.69490399906],[-71.565269,41.69475199906],[-71.564743,41.69473699906],[-71.563843,41.69467999906],[-71.56353,41.69465599906],[-71.563065,41.69463499906],[-71.561859,41.69456699906],[-71.56131,41.69452099906],[-71.560623,41.69448199906],[-71.560139,41.69444899906],[-71.560074,41.69444499906],[-71.559113,41.69436699906],[-71.558616,41.69434199906],[-71.558144,41.69432499906],[-71.557785,41.69430599906],[-71.557854,41.69464699906],[-71.557899,41.69504699906],[-71.557938,41.69538399906],[-71.557961,41.69561299906],[-71.557976,41.69600899906],[-71.557983,41.69641399906],[-71.557976,41.69673799906],[-71.557961,41.69712999906],[-71.557953,41.69718499906],[-71.557922,41.69753199906],[-71.557884,41.69783499906],[-71.557877,41.69801499906],[-71.557823,41.69842599906],[-71.557785,41.69880499906],[-71.557739,41.69918899906],[-71.557701,41.69955899906],[-71.557671,41.69981199906],[-71.55764,41.70010499906],[-71.557625,41.70040699906],[-71.557609,41.70108699906],[-71.557587,41.70210999906],[-71.557587,41.70239799906],[-71.557573,41.70276399906],[-71.557564,41.70325399906],[-71.557556,41.70369099906],[-71.557541,41.70420999906],[-71.557548,41.70468699906],[-71.557541,41.70519599906],[-71.557541,41.70557899906],[-71.557533,41.70607399906],[-71.557525,41.70628899906],[-71.557518,41.70651999906],[-71.557513,41.70678999906],[-71.557511,41.70691199906],[-71.557518,41.70710999906],[-71.557518,41.70782599906],[-71.55751,41.70825399906],[-71.557503,41.70855099906],[-71.55751,41.70877199906],[-71.557533,41.70906899906],[-71.557617,41.70938599906],[-71.557716,41.70968999906],[-71.557869,41.71000199906],[-71.55796,41.71018899906],[-71.558166,41.71060799906],[-71.558304,41.71089799906],[-71.558388,41.71111599906],[-71.558472,41.71139399906],[-71.558525,41.71162699906],[-71.55854,41.71172099906],[-71.55854,41.71175699906],[-71.558571,41.71196299906],[-71.558571,41.71215699906],[-71.558579,41.71228799906],[-71.558563,41.71245399906],[-71.55854,41.71269799906],[-71.558517,41.71281099906],[-71.558327,41.71363099906],[-71.558285,41.71380299906],[-71.558243,41.71397899906],[-71.558197,41.71423199906],[-71.558121,41.71453999906],[-71.558105,41.71459899906],[-71.558029,41.71494799906],[-71.557938,41.71530499906],[-71.557907,41.71546399906],[-71.557838,41.71573999906],[-71.557754,41.71608399906],[-71.557709,41.71631499906],[-71.557671,41.71653199906],[-71.557663,41.71672099906],[-71.557655,41.71693699906],[-71.557671,41.71712599906],[-71.557686,41.71727399906],[-71.557739,41.71756599906],[-71.557846,41.71794599906],[-71.55806,41.71863499906],[-71.558182,41.71898799906],[-71.558319,41.71939499906],[-71.558426,41.71973899906],[-71.558449,41.71981899906],[-71.558563,41.72023599906],[-71.558724,41.72071399906],[-71.558861,41.72112999906],[-71.559013,41.72161299906],[-71.559158,41.72201499906],[-71.559189,41.72209499906],[-71.559326,41.72241599906],[-71.559486,41.72279499906],[-71.55967,41.72321899906],[-71.55986,41.72366999906],[-71.560074,41.72415099906],[-71.560249,41.72446299906],[-71.560402,41.72470699906],[-71.560421,41.72473399906],[-71.560669,41.72508799906],[-71.561043,41.72558399906],[-71.561455,41.72613299906],[-71.561798,41.72657599906],[-71.562286,41.72723199906],[-71.562508,41.72753699906],[-71.562713,41.72783399906],[-71.562843,41.72810199906],[-71.562882,41.72820899906],[-71.562937,41.72839799906],[-71.562991,41.72866199906],[-71.56299,41.72889699906],[-71.562966,41.72927899906],[-71.562938,41.72967199906],[-71.563128,41.72966699906],[-71.56663,41.72958199906],[-71.567787,41.72955399906],[-71.569277,41.72951699906],[-71.569442,41.72951299906],[-71.569776,41.72950499906],[-71.57038,41.72948999906],[-71.573168,41.72942199906],[-71.576525,41.72933999906]]]}}"}, +{"type": "blockgroup", "typeId": 206014, "areaId": 29184, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.562991,41.72866199906],[-71.562937,41.72839799906],[-71.562882,41.72820899906],[-71.562843,41.72810199906],[-71.562713,41.72783399906],[-71.562508,41.72753699906],[-71.562286,41.72723199906],[-71.561798,41.72657599906],[-71.561455,41.72613299906],[-71.561043,41.72558399906],[-71.560669,41.72508799906],[-71.560421,41.72473399906],[-71.560402,41.72470699906],[-71.560249,41.72446299906],[-71.560074,41.72415099906],[-71.55986,41.72366999906],[-71.55967,41.72321899906],[-71.559486,41.72279499906],[-71.559326,41.72241599906],[-71.559189,41.72209499906],[-71.559158,41.72201499906],[-71.559013,41.72161299906],[-71.558861,41.72112999906],[-71.558724,41.72071399906],[-71.558563,41.72023599906],[-71.558449,41.71981899906],[-71.558426,41.71973899906],[-71.558319,41.71939499906],[-71.558182,41.71898799906],[-71.55806,41.71863499906],[-71.557846,41.71794599906],[-71.557739,41.71756599906],[-71.557686,41.71727399906],[-71.557671,41.71712599906],[-71.557655,41.71693699906],[-71.557663,41.71672099906],[-71.557671,41.71653199906],[-71.557709,41.71631499906],[-71.557754,41.71608399906],[-71.557838,41.71573999906],[-71.557907,41.71546399906],[-71.557938,41.71530499906],[-71.558029,41.71494799906],[-71.558105,41.71459899906],[-71.558121,41.71453999906],[-71.558197,41.71423199906],[-71.558243,41.71397899906],[-71.558285,41.71380299906],[-71.558327,41.71363099906],[-71.558517,41.71281099906],[-71.55854,41.71269799906],[-71.558563,41.71245399906],[-71.558579,41.71228799906],[-71.558571,41.71215699906],[-71.558571,41.71196299906],[-71.55854,41.71175699906],[-71.55854,41.71172099906],[-71.558525,41.71162699906],[-71.558472,41.71139399906],[-71.558388,41.71111599906],[-71.558304,41.71089799906],[-71.558166,41.71060799906],[-71.55796,41.71018899906],[-71.557869,41.71000199906],[-71.557716,41.70968999906],[-71.557617,41.70938599906],[-71.557533,41.70906899906],[-71.55693,41.70905499906],[-71.556313,41.70903699906],[-71.555687,41.70902899906],[-71.555122,41.70902799906],[-71.554482,41.70901899906],[-71.553764,41.70902599906],[-71.552986,41.70903899906],[-71.552475,41.70904599906],[-71.552289,41.70905199906],[-71.551705,41.70907199906],[-71.551132,41.70908499906],[-71.550838,41.70909399906],[-71.550392,41.70910999906],[-71.549759,41.70911499906],[-71.549004,41.70913199906],[-71.548531,41.70914299906],[-71.548012,41.70914999906],[-71.547417,41.70917199906],[-71.54686,41.70918899906],[-71.546555,41.70934399906],[-71.546364,41.70950599906],[-71.546257,41.70964299906],[-71.546196,41.70979299906],[-71.546211,41.70995499906],[-71.546272,41.71014299906],[-71.546295,41.71034899906],[-71.546288,41.71051599906],[-71.546242,41.71063399906],[-71.546066,41.71084099906],[-71.545891,41.71105199906],[-71.545723,41.71127199906],[-71.545669,41.71141199906],[-71.5457,41.71156499906],[-71.545746,41.71167599906],[-71.545822,41.71189499906],[-71.545937,41.71221299906],[-71.545975,41.71243699906],[-71.545982,41.71262099906],[-71.545953,41.71280399906],[-71.545899,41.71292499906],[-71.545777,41.71309899906],[-71.54557,41.71337399906],[-71.545395,41.71359399906],[-71.545189,41.71393999906],[-71.545072,41.71411899906],[-71.544998,41.71423299906],[-71.544869,41.71448299906],[-71.544808,41.71454799906],[-71.544716,41.71464899906],[-71.544632,41.71473199906],[-71.544388,41.71501599906],[-71.544098,41.71530599906],[-71.543846,41.71547899906],[-71.543022,41.71597399906],[-71.542702,41.71616099906],[-71.542526,41.71628699906],[-71.542404,41.71639799906],[-71.542351,41.71647999906],[-71.542343,41.71670099906],[-71.542389,41.71694299906],[-71.542435,41.71716199906],[-71.542518,41.71737199906],[-71.542732,41.71781799906],[-71.542946,41.71839399906],[-71.542992,41.71852399906],[-71.543091,41.71879199906],[-71.543198,41.71914499906],[-71.543236,41.71933299906],[-71.543388,41.71932099906],[-71.543686,41.71929599906],[-71.544022,41.71929299906],[-71.544388,41.71933499906],[-71.544876,41.71943699906],[-71.54525,41.71949999906],[-71.545555,41.71955699906],[-71.545715,41.71962499906],[-71.54586,41.71973899906],[-71.546003,41.71988199906],[-71.546234,41.72018999906],[-71.546478,41.72052699906],[-71.546684,41.72085099906],[-71.546723,41.72093099906],[-71.546783,41.72105599906],[-71.546956,41.72138699906],[-71.54715,41.72170099906],[-71.547333,41.72200699906],[-71.547447,41.72252299906],[-71.547577,41.72306899906],[-71.547676,41.72358899906],[-71.547729,41.72399799906],[-71.547768,41.72431199906],[-71.547829,41.72465299906],[-71.547974,41.72546499906],[-71.548065,41.72578699906],[-71.548149,41.72610999906],[-71.54834,41.72672699906],[-71.548462,41.72718299906],[-71.548553,41.72759099906],[-71.548559,41.72764399906],[-71.548597,41.72796999906],[-71.548584,41.72836499906],[-71.548561,41.72854999906],[-71.54847,41.72865999906],[-71.548378,41.72872499906],[-71.548446,41.72882299906],[-71.548614,41.72897199906],[-71.548897,41.72918699906],[-71.549255,41.72944399906],[-71.549576,41.72966699906],[-71.549805,41.72983699906],[-71.550016,41.72996799906],[-71.550038,41.72998499906],[-71.550105,41.72998399906],[-71.550922,41.72996999906],[-71.552219,41.72994299906],[-71.552952,41.72992799906],[-71.554397,41.72989099906],[-71.554597,41.72988599906],[-71.556174,41.72984499906],[-71.556751,41.72982999906],[-71.557477,41.72981199906],[-71.560138,41.72974299906],[-71.560295,41.72973999906],[-71.562364,41.72968699906],[-71.562595,41.72967999906],[-71.562938,41.72967199906],[-71.562966,41.72927899906],[-71.56299,41.72889699906],[-71.562991,41.72866199906]]]}}"}, +{"type": "blockgroup", "typeId": 206021, "areaId": 29185, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.595276,41.69389799906],[-71.595156,41.69384599906],[-71.594896,41.69373499906],[-71.594524,41.69355799906],[-71.594043,41.69327999906],[-71.593854,41.69317699906],[-71.59362,41.69307699906],[-71.593487,41.69304399906],[-71.593351,41.69307499906],[-71.593044,41.69333699906],[-71.592792,41.69357999906],[-71.592733,41.69359399906],[-71.592647,41.69359699906],[-71.592565,41.69358999906],[-71.59253,41.69357299906],[-71.592471,41.69357499906],[-71.592439,41.69355899906],[-71.592348,41.69345699906],[-71.592205,41.69353499906],[-71.591998,41.69374799906],[-71.591949,41.69385499906],[-71.59189,41.69412499906],[-71.591884,41.69413699906],[-71.592073,41.69435999906],[-71.592323,41.69454799906],[-71.592369,41.69457899906],[-71.592354,41.69466299906],[-71.592229,41.69478999906],[-71.592157,41.69482299906],[-71.591957,41.69486399906],[-71.591676,41.69494399906],[-71.591494,41.69520199906],[-71.591309,41.69547499906],[-71.591115,41.69557599906],[-71.590965,41.69562899906],[-71.590688,41.69570899906],[-71.590652,41.69570599906],[-71.59011,41.69575699906],[-71.590092,41.69575299906],[-71.589666,41.69558499906],[-71.589588,41.69547699906],[-71.589554,41.69540299906],[-71.589552,41.69515899906],[-71.589379,41.69467799906],[-71.589576,41.69437799906],[-71.589625,41.69430299906],[-71.58975,41.69414199906],[-71.589764,41.69412399906],[-71.589699,41.69405999906],[-71.589642,41.69400399906],[-71.589548,41.69391199906],[-71.589218,41.69361199906],[-71.588884,41.69367399906],[-71.588657,41.69397899906],[-71.588402,41.69431899906],[-71.588377,41.69433299906],[-71.587594,41.69449299906],[-71.587515,41.69448399906],[-71.587261,41.69448899906],[-71.587034,41.69438999906],[-71.586732,41.69424199906],[-71.586704,41.69423599906],[-71.586529,41.69428099906],[-71.586222,41.69449499906],[-71.58621,41.69450399906],[-71.585994,41.69456999906],[-71.585977,41.69456999906],[-71.585809,41.69495499906],[-71.5858,41.69497299906],[-71.585214,41.69471999906],[-71.584902,41.69481399906],[-71.584511,41.69523199906],[-71.5845,41.69524099906],[-71.584157,41.69525199906],[-71.583603,41.69515199906],[-71.583583,41.69515399906],[-71.583439,41.69538899906],[-71.583307,41.69556499906],[-71.582998,41.69554299906],[-71.582809,41.69542099906],[-71.582472,41.69527799906],[-71.582194,41.69544599906],[-71.582229,41.69594699906],[-71.582182,41.69599899906],[-71.581787,41.69607599906],[-71.581665,41.69614299906],[-71.581589,41.69630199906],[-71.581531,41.69659799906],[-71.581531,41.69662199906],[-71.581209,41.69663399906],[-71.580849,41.69666499906],[-71.580586,41.69662099906],[-71.580482,41.69654599906],[-71.580294,41.69646999906],[-71.580039,41.69648699906],[-71.579884,41.69642099906],[-71.57994,41.69628199906],[-71.580292,41.69622799906],[-71.580529,41.69617599906],[-71.580499,41.69605699906],[-71.580606,41.69601999906],[-71.5804,41.69585599906],[-71.580149,41.69572699906],[-71.579617,41.69572899906],[-71.579043,41.69562099906],[-71.578518,41.69559199906],[-71.577989,41.69544199906],[-71.577574,41.69547599906],[-71.577558,41.69546399906],[-71.577058,41.69504199906],[-71.576978,41.69411499906],[-71.576965,41.69410899906],[-71.57662,41.69377399906],[-71.575901,41.69351399906],[-71.575805,41.69347799906],[-71.575526,41.69337499906],[-71.575168,41.69322799906],[-71.574839,41.69297799906],[-71.574654,41.69268299906],[-71.57458,41.69233399906],[-71.574624,41.69211299906],[-71.574777,41.69195099906],[-71.574947,41.69162299906],[-71.575071,41.69139799906],[-71.57513,41.69122899906],[-71.575141,41.69110099906],[-71.575129,41.69098899906],[-71.57487,41.69072899906],[-71.574715,41.69042699906],[-71.574504,41.69023999906],[-71.574379,41.69014699906],[-71.574186,41.69007299906],[-71.574038,41.69010699906],[-71.57386,41.69042099906],[-71.573464,41.69065899906],[-71.572887,41.69049199906],[-71.572309,41.69019899906],[-71.572093,41.69009099906],[-71.571678,41.68984399906],[-71.571655,41.68983999906],[-71.571134,41.68977699906],[-71.570634,41.68996299906],[-71.570358,41.69026899906],[-71.570152,41.69035399906],[-71.569859,41.69047399906],[-71.569838,41.69048299906],[-71.569187,41.69033799906],[-71.569171,41.69032799906],[-71.568912,41.68994899906],[-71.568901,41.68994399906],[-71.568308,41.68996199906],[-71.567861,41.69005099906],[-71.567386,41.69010899906],[-71.567186,41.69010199906],[-71.566713,41.69005399906],[-71.566649,41.69004399906],[-71.566622,41.69003899906],[-71.566507,41.69003499906],[-71.566194,41.68995799906],[-71.565727,41.68989699906],[-71.56567,41.68983599906],[-71.565469,41.68969599906],[-71.564965,41.68974399906],[-71.564904,41.68976699906],[-71.564565,41.69010999906],[-71.564075,41.69029299906],[-71.564021,41.69028999906],[-71.563616,41.69025999906],[-71.563389,41.69018799906],[-71.563374,41.69018599906],[-71.563149,41.68999299906],[-71.563132,41.68998599906],[-71.563036,41.68974399906],[-71.56299,41.68947199906],[-71.562959,41.68933299906],[-71.562773,41.68876999906],[-71.56246,41.68803499906],[-71.562296,41.68759099906],[-71.562281,41.68743899906],[-71.56225,41.68691299906],[-71.562129,41.68667099906],[-71.561758,41.68637199906],[-71.561318,41.68616399906],[-71.560841,41.68599399906],[-71.560839,41.68591299906],[-71.560822,41.68456199906],[-71.560814,41.68406699906],[-71.560707,41.68382599906],[-71.560675,41.68378799906],[-71.560554,41.68364899906],[-71.560425,41.68354799906],[-71.560226,41.68343599906],[-71.560074,41.68334899906],[-71.55967,41.68315999906],[-71.559051,41.68331299906],[-71.558685,41.68339799906],[-71.558594,41.68340899906],[-71.55796,41.68350899906],[-71.55761,41.68356199906],[-71.556747,41.68370199906],[-71.555939,41.68383299906],[-71.555832,41.68385299906],[-71.555122,41.68396399906],[-71.55471,41.68404899906],[-71.554008,41.68422299906],[-71.553986,41.68423199906],[-71.553711,41.68430099906],[-71.553673,41.68431599906],[-71.553429,41.68438399906],[-71.552925,41.68452999906],[-71.552361,41.68468199906],[-71.551785,41.68485099906],[-71.551811,41.68493799906],[-71.551834,41.68512199906],[-71.551849,41.68522999906],[-71.551895,41.68530099906],[-71.551941,41.68540799906],[-71.551964,41.68546599906],[-71.552017,41.68555499906],[-71.552063,41.68572499906],[-71.552248,41.68599799906],[-71.552424,41.68611199906],[-71.554135,41.68723499906],[-71.552578,41.68911799906],[-71.551981,41.68932299906],[-71.550976,41.68906299906],[-71.550126,41.68887899906],[-71.550099,41.68887399906],[-71.549453,41.69055199906],[-71.549924,41.69188599906],[-71.549319,41.69344099906],[-71.548732,41.69389799906],[-71.548807,41.69403399906],[-71.548821,41.69407199906],[-71.548843,41.69411499906],[-71.54885,41.69449999906],[-71.548839,41.69451099906],[-71.548465,41.69481099906],[-71.548392,41.69484899906],[-71.547389,41.69545699906],[-71.547023,41.69551099906],[-71.546983,41.69552099906],[-71.54695,41.69552399906],[-71.546993,41.69561699906],[-71.547142,41.69593399906],[-71.547403,41.69640599906],[-71.547585,41.69617199906],[-71.547806,41.69588499906],[-71.54808,41.69557999906],[-71.548279,41.69544499906],[-71.549034,41.69504599906],[-71.5494,41.69490299906],[-71.549759,41.69481799906],[-71.550102,41.69479699906],[-71.55053,41.69477799906],[-71.550651,41.69477599906],[-71.551476,41.69474799906],[-71.55188,41.69472999906],[-71.552147,41.69468899906],[-71.552311,41.69465999906],[-71.552521,41.69458999906],[-71.552918,41.69441499906],[-71.553119,41.69430999906],[-71.553642,41.69403799906],[-71.554214,41.69367399906],[-71.554817,41.69326899906],[-71.555618,41.69272899906],[-71.556465,41.69217399906],[-71.556984,41.69182999906],[-71.557098,41.69175499906],[-71.557243,41.69217999906],[-71.557373,41.69268999906],[-71.557503,41.69314199906],[-71.557617,41.69359399906],[-71.557709,41.69392999906],[-71.557785,41.69430599906],[-71.558144,41.69432499906],[-71.558616,41.69434199906],[-71.559113,41.69436699906],[-71.560074,41.69444499906],[-71.560139,41.69444899906],[-71.560623,41.69448199906],[-71.56131,41.69452099906],[-71.561859,41.69456699906],[-71.563065,41.69463499906],[-71.56353,41.69465599906],[-71.563843,41.69467999906],[-71.564743,41.69473699906],[-71.565269,41.69475199906],[-71.565323,41.69490399906],[-71.56543,41.69517199906],[-71.565506,41.69543599906],[-71.565636,41.69578899906],[-71.565689,41.69598499906],[-71.565712,41.69616099906],[-71.565727,41.69634899906],[-71.565742,41.69660099906],[-71.565765,41.69685699906],[-71.565796,41.69752299906],[-71.565811,41.69764899906],[-71.565865,41.69785499906],[-71.565925,41.69814199906],[-71.565964,41.69834299906],[-71.565987,41.69856799906],[-71.566017,41.69884199906],[-71.566032,41.69905799906],[-71.566063,41.69926899906],[-71.566117,41.69950199906],[-71.566162,41.69970299906],[-71.566238,41.69993999906],[-71.566315,41.70013199906],[-71.566398,41.70027099906],[-71.566528,41.70048799906],[-71.566643,41.70065599906],[-71.567001,41.70094999906],[-71.567131,41.70107799906],[-71.567352,41.70126199906],[-71.567551,41.70142899906],[-71.567726,41.70161799906],[-71.567978,41.70185599906],[-71.568253,41.70210199906],[-71.568542,41.70232499906],[-71.568825,41.70257099906],[-71.569038,41.70278199906],[-71.56926,41.70299299906],[-71.56942,41.70314799906],[-71.569472,41.70319899906],[-71.569542,41.70326599906],[-71.56974,41.70336099906],[-71.569954,41.70345999906],[-71.570084,41.70355099906],[-71.570175,41.70368499906],[-71.570297,41.70384399906],[-71.570458,41.70399799906],[-71.570648,41.70416499906],[-71.570831,41.70430899906],[-71.570946,41.70442799906],[-71.571045,41.70456999906],[-71.571129,41.70472099906],[-71.571258,41.70486299906],[-71.57148,41.70503799906],[-71.571732,41.70520299906],[-71.571793,41.70526199906],[-71.571869,41.70533499906],[-71.572014,41.70550299906],[-71.572103,41.70563999906],[-71.572121,41.70566699906],[-71.572197,41.70581899906],[-71.572327,41.70595499906],[-71.57243,41.70600699906],[-71.572487,41.70603699906],[-71.572632,41.70611999906],[-71.5728,41.70625099906],[-71.572899,41.70636099906],[-71.572968,41.70651299906],[-71.573006,41.70667899906],[-71.572998,41.70683199906],[-71.572975,41.70697199906],[-71.572906,41.70716299906],[-71.572899,41.70733399906],[-71.572952,41.70749499906],[-71.573173,41.70780099906],[-71.573318,41.70800899906],[-71.57341,41.70815099906],[-71.573456,41.70827199906],[-71.573502,41.70845099906],[-71.573509,41.70864899906],[-71.57352,41.70882299906],[-71.573525,41.70890499906],[-71.573554,41.70904899906],[-71.57357,41.70912899906],[-71.573593,41.70935799906],[-71.57357,41.70961099906],[-71.573525,41.70990899906],[-71.573509,41.71010299906],[-71.573509,41.71037799906],[-71.573815,41.71014599906],[-71.574082,41.70990999906],[-71.574387,41.70973199906],[-71.574753,41.70956199906],[-71.575043,41.70940199906],[-71.575294,41.70928399906],[-71.575401,41.70918299906],[-71.575485,41.70912699906],[-71.575531,41.70909399906],[-71.575592,41.70881399906],[-71.575691,41.70847399906],[-71.57571,41.70839099906],[-71.575752,41.70821599906],[-71.57576,41.70804399906],[-71.575767,41.70794099906],[-71.575745,41.70767999906],[-71.575752,41.70745899906],[-71.575844,41.70718699906],[-71.575989,41.70682799906],[-71.576103,41.70664499906],[-71.576263,41.70643899906],[-71.576431,41.70625499906],[-71.57653,41.70604599906],[-71.576645,41.70581799906],[-71.576744,41.70559099906],[-71.576782,41.70552899906],[-71.576813,41.70547699906],[-71.576889,41.70522299906],[-71.57695,41.70502299906],[-71.576996,41.70482399906],[-71.577049,41.70458899906],[-71.577064,41.70430899906],[-71.577057,41.70406199906],[-71.577057,41.70382799906],[-71.577042,41.70350799906],[-71.577041,41.70319699906],[-71.57704,41.70317099906],[-71.577019,41.70288699906],[-71.576996,41.70259499906],[-71.576985,41.70247599906],[-71.576973,41.70234299906],[-71.57698,41.70214099906],[-71.577003,41.70198699906],[-71.577042,41.70181099906],[-71.577087,41.70175099906],[-71.577133,41.70169099906],[-71.577309,41.70157899906],[-71.577446,41.70151299906],[-71.577683,41.70141299906],[-71.577995,41.70134299906],[-71.57824,41.70131099906],[-71.578407,41.70127099906],[-71.578583,41.70118199906],[-71.578674,41.70107599906],[-71.578751,41.70096199906],[-71.57885,41.70078399906],[-71.578957,41.70062799906],[-71.579109,41.70046699906],[-71.5793,41.70030099906],[-71.579552,41.70013799906],[-71.579788,41.69999699906],[-71.579986,41.69991199906],[-71.580177,41.69983499906],[-71.58033,41.69979099906],[-71.580524,41.69985999906],[-71.580964,41.69988599906],[-71.581442,41.69989499906],[-71.581624,41.69989299906],[-71.58175,41.69988799906],[-71.582006,41.69989199906],[-71.582159,41.69984699906],[-71.582227,41.69977099906],[-71.582329,41.69965199906],[-71.582596,41.69977199906],[-71.583519,41.70016099906],[-71.583885,41.70030999906],[-71.584099,41.70037799906],[-71.584297,41.70043599906],[-71.584495,41.70047699906],[-71.584702,41.70052199906],[-71.584953,41.70056099906],[-71.585247,41.70058899906],[-71.585938,41.70062899906],[-71.586571,41.70066399906],[-71.587097,41.70068799906],[-71.587525,41.70070599906],[-71.587951,41.70073199906],[-71.588325,41.70075099906],[-71.588684,41.70077899906],[-71.588882,41.70080599906],[-71.589241,41.70086099906],[-71.589493,41.70089599906],[-71.589739,41.70094999906],[-71.589828,41.70096899906],[-71.590187,41.70105599906],[-71.590637,41.70118499906],[-71.590996,41.70129899906],[-71.591064,41.70131999906],[-71.591416,41.70143299906],[-71.591499,41.70125999906],[-71.591576,41.70107799906],[-71.591667,41.70085999906],[-71.591759,41.70047999906],[-71.591812,41.70027599906],[-71.591881,41.70002199906],[-71.591926,41.69971499906],[-71.591972,41.69949299906],[-71.592018,41.69933899906],[-71.592037,41.69929399906],[-71.592113,41.69923999906],[-71.59219,41.69917799906],[-71.592294,41.69914899906],[-71.592554,41.69914099906],[-71.592853,41.69914599906],[-71.593339,41.69914599906],[-71.593672,41.69913199906],[-71.593799,41.69913199906],[-71.593964,41.69900299906],[-71.593941,41.69895399906],[-71.593964,41.69884899906],[-71.594017,41.69873599906],[-71.594063,41.69863099906],[-71.594086,41.69852199906],[-71.594185,41.69852899906],[-71.5942,41.69842099906],[-71.5942,41.69819599906],[-71.594215,41.69808299906],[-71.594246,41.69795099906],[-71.594254,41.69782999906],[-71.594284,41.69770699906],[-71.594292,41.69759899906],[-71.594299,41.69747699906],[-71.594314,41.69736499906],[-71.594345,41.69725599906],[-71.594459,41.69723499906],[-71.594505,41.69717999906],[-71.59452,41.69705799906],[-71.594521,41.69696299906],[-71.594521,41.69667099906],[-71.594528,41.69654499906],[-71.594551,41.69641399906],[-71.594566,41.69627799906],[-71.594574,41.69613799906],[-71.594567,41.69601199906],[-71.594566,41.69589099906],[-71.594574,41.69578299906],[-71.594589,41.69564299906],[-71.594589,41.69551699906],[-71.594559,41.69542699906],[-71.594444,41.69534899906],[-71.594368,41.69526499906],[-71.59436,41.69515299906],[-71.594406,41.69504299906],[-71.594475,41.69494299906],[-71.594528,41.69482899906],[-71.594605,41.69471899906],[-71.594673,41.69460499906],[-71.594757,41.69449499906],[-71.594841,41.69438099906],[-71.594917,41.69428399906],[-71.594969,41.69420899906],[-71.594986,41.69418399906],[-71.595062,41.69408299906],[-71.595146,41.69397699906],[-71.595276,41.69389799906]]]}}"}, +{"type": "blockgroup", "typeId": 206022, "areaId": 29186, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.59539,41.69344999906],[-71.595383,41.69339599906],[-71.595345,41.69332499906],[-71.595283,41.69324899906],[-71.595162,41.69316199906],[-71.594994,41.69299899906],[-71.594948,41.69295999906],[-71.594879,41.69290699906],[-71.594868,41.69289499906],[-71.59462,41.69271499906],[-71.594383,41.69260799906],[-71.594086,41.69246599906],[-71.59372,41.69228099906],[-71.593109,41.69195699906],[-71.592964,41.69186099906],[-71.592796,41.69176099906],[-71.592552,41.69156799906],[-71.592339,41.69136599906],[-71.592087,41.69117799906],[-71.591843,41.69100299906],[-71.591576,41.69081999906],[-71.591522,41.69078599906],[-71.591278,41.69062899906],[-71.591019,41.69046399906],[-71.590858,41.69034099906],[-71.590714,41.69024099906],[-71.590584,41.69014899906],[-71.590462,41.69002599906],[-71.590264,41.68978699906],[-71.590073,41.68953899906],[-71.58992,41.68931799906],[-71.589859,41.68925099906],[-71.589745,41.68911899906],[-71.589584,41.68895999906],[-71.589378,41.68876199906],[-71.589172,41.68855499906],[-71.588974,41.68837499906],[-71.588753,41.68819599906],[-71.588539,41.68803799906],[-71.588341,41.68790799906],[-71.58815,41.68773599906],[-71.58802,41.68759999906],[-71.588005,41.68732999906],[-71.58799,41.68708299906],[-71.587967,41.68657899906],[-71.587959,41.68588999906],[-71.587959,41.68543499906],[-71.587921,41.68488699906],[-71.587906,41.68457199906],[-71.587906,41.68437799906],[-71.587921,41.68429699906],[-71.587944,41.68403499906],[-71.587944,41.68382299906],[-71.587906,41.68351399906],[-71.587868,41.68314099906],[-71.58786,41.68311399906],[-71.587829,41.68284399906],[-71.587809,41.68257999906],[-71.587798,41.68244999906],[-71.587784,41.68226399906],[-71.587753,41.68194099906],[-71.587731,41.68160799906],[-71.587723,41.68137399906],[-71.587692,41.68107299906],[-71.587639,41.68077299906],[-71.587593,41.68046799906],[-71.587585,41.68041999906],[-71.587532,41.68007699906],[-71.587479,41.67969599906],[-71.587417,41.67942199906],[-71.587379,41.67912599906],[-71.587288,41.67879499906],[-71.587189,41.67849999906],[-71.586991,41.67855799906],[-71.586655,41.67863799906],[-71.586258,41.67870999906],[-71.586227,41.67871499906],[-71.585991,41.67874699906],[-71.585655,41.67877799906],[-71.585297,41.67880399906],[-71.584824,41.67883699906],[-71.584366,41.67887399906],[-71.584068,41.67889899906],[-71.583786,41.67891899906],[-71.583076,41.67894399906],[-71.582153,41.67897799906],[-71.581879,41.67898899906],[-71.581093,41.67901099906],[-71.580783,41.67901799906],[-71.580612,41.67902099906],[-71.580253,41.67902999906],[-71.580032,41.67904799906],[-71.579689,41.67908299906],[-71.579521,41.67910899906],[-71.579071,41.67916399906],[-71.578911,41.67920799906],[-71.578499,41.67930799906],[-71.578255,41.67935799906],[-71.577858,41.67945699906],[-71.577789,41.67947199906],[-71.577316,41.67959499906],[-71.577148,41.67963999906],[-71.576866,41.67970399906],[-71.576538,41.67976599906],[-71.576319,41.67980799906],[-71.576257,41.67981999906],[-71.575804,41.67987999906],[-71.575305,41.67993599906],[-71.574854,41.67996999906],[-71.574237,41.68004699906],[-71.573265,41.68013599906],[-71.572899,41.68018099906],[-71.572693,41.68020299906],[-71.571709,41.68030599906],[-71.571014,41.68038599906],[-71.570038,41.68050599906],[-71.569199,41.68059699906],[-71.568573,41.68069199906],[-71.568222,41.68076699906],[-71.567383,41.68096599906],[-71.567306,41.68098599906],[-71.566551,41.68115999906],[-71.5662,41.68123999906],[-71.565811,41.68132999906],[-71.564789,41.68155999906],[-71.564683,41.68158499906],[-71.564041,41.68173899906],[-71.563393,41.68188799906],[-71.562767,41.68204599906],[-71.562386,41.68215799906],[-71.562038,41.68228399906],[-71.561821,41.68236399906],[-71.561165,41.68263999906],[-71.560811,41.68277299906],[-71.560669,41.68282699906],[-71.55967,41.68315999906],[-71.560074,41.68334899906],[-71.560226,41.68343599906],[-71.560425,41.68354799906],[-71.560554,41.68364899906],[-71.560675,41.68378799906],[-71.560707,41.68382599906],[-71.560814,41.68406699906],[-71.560822,41.68456199906],[-71.560839,41.68591299906],[-71.560841,41.68599399906],[-71.561318,41.68616399906],[-71.561758,41.68637199906],[-71.562129,41.68667099906],[-71.56225,41.68691299906],[-71.562281,41.68743899906],[-71.562296,41.68759099906],[-71.56246,41.68803499906],[-71.562773,41.68876999906],[-71.562959,41.68933299906],[-71.56299,41.68947199906],[-71.563036,41.68974399906],[-71.563132,41.68998599906],[-71.563149,41.68999299906],[-71.563374,41.69018599906],[-71.563389,41.69018799906],[-71.563616,41.69025999906],[-71.564021,41.69028999906],[-71.564075,41.69029299906],[-71.564565,41.69010999906],[-71.564904,41.68976699906],[-71.564965,41.68974399906],[-71.565469,41.68969599906],[-71.56567,41.68983599906],[-71.565727,41.68989699906],[-71.566194,41.68995799906],[-71.566507,41.69003499906],[-71.566622,41.69003899906],[-71.566649,41.69004399906],[-71.566713,41.69005399906],[-71.567186,41.69010199906],[-71.567386,41.69010899906],[-71.567861,41.69005099906],[-71.568308,41.68996199906],[-71.568901,41.68994399906],[-71.568912,41.68994899906],[-71.569171,41.69032799906],[-71.569187,41.69033799906],[-71.569838,41.69048299906],[-71.569859,41.69047399906],[-71.570152,41.69035399906],[-71.570358,41.69026899906],[-71.570634,41.68996299906],[-71.571134,41.68977699906],[-71.571655,41.68983999906],[-71.571678,41.68984399906],[-71.572093,41.69009099906],[-71.572309,41.69019899906],[-71.572887,41.69049199906],[-71.573464,41.69065899906],[-71.57386,41.69042099906],[-71.574038,41.69010699906],[-71.574186,41.69007299906],[-71.574379,41.69014699906],[-71.574504,41.69023999906],[-71.574715,41.69042699906],[-71.57487,41.69072899906],[-71.575129,41.69098899906],[-71.575141,41.69110099906],[-71.57513,41.69122899906],[-71.575071,41.69139799906],[-71.574947,41.69162299906],[-71.574777,41.69195099906],[-71.574624,41.69211299906],[-71.57458,41.69233399906],[-71.574654,41.69268299906],[-71.574839,41.69297799906],[-71.575168,41.69322799906],[-71.575526,41.69337499906],[-71.575805,41.69347799906],[-71.575901,41.69351399906],[-71.57662,41.69377399906],[-71.576965,41.69410899906],[-71.576978,41.69411499906],[-71.577058,41.69504199906],[-71.577558,41.69546399906],[-71.577574,41.69547599906],[-71.577989,41.69544199906],[-71.578518,41.69559199906],[-71.579043,41.69562099906],[-71.579617,41.69572899906],[-71.580149,41.69572699906],[-71.5804,41.69585599906],[-71.580606,41.69601999906],[-71.580499,41.69605699906],[-71.580529,41.69617599906],[-71.580292,41.69622799906],[-71.57994,41.69628199906],[-71.579884,41.69642099906],[-71.580039,41.69648699906],[-71.580294,41.69646999906],[-71.580482,41.69654599906],[-71.580586,41.69662099906],[-71.580849,41.69666499906],[-71.581209,41.69663399906],[-71.581531,41.69662199906],[-71.581531,41.69659799906],[-71.581589,41.69630199906],[-71.581665,41.69614299906],[-71.581787,41.69607599906],[-71.582182,41.69599899906],[-71.582229,41.69594699906],[-71.582194,41.69544599906],[-71.582472,41.69527799906],[-71.582809,41.69542099906],[-71.582998,41.69554299906],[-71.583307,41.69556499906],[-71.583439,41.69538899906],[-71.583583,41.69515399906],[-71.583603,41.69515199906],[-71.584157,41.69525199906],[-71.5845,41.69524099906],[-71.584511,41.69523199906],[-71.584902,41.69481399906],[-71.585214,41.69471999906],[-71.5858,41.69497299906],[-71.585809,41.69495499906],[-71.585977,41.69456999906],[-71.585994,41.69456999906],[-71.58621,41.69450399906],[-71.586222,41.69449499906],[-71.586529,41.69428099906],[-71.586704,41.69423599906],[-71.586732,41.69424199906],[-71.587034,41.69438999906],[-71.587261,41.69448899906],[-71.587515,41.69448399906],[-71.587594,41.69449299906],[-71.588377,41.69433299906],[-71.588402,41.69431899906],[-71.588657,41.69397899906],[-71.588884,41.69367399906],[-71.589218,41.69361199906],[-71.589548,41.69391199906],[-71.589642,41.69400399906],[-71.589699,41.69405999906],[-71.589764,41.69412399906],[-71.58975,41.69414199906],[-71.589625,41.69430299906],[-71.589576,41.69437799906],[-71.589379,41.69467799906],[-71.589552,41.69515899906],[-71.589554,41.69540299906],[-71.589588,41.69547699906],[-71.589666,41.69558499906],[-71.590092,41.69575299906],[-71.59011,41.69575699906],[-71.590652,41.69570599906],[-71.590688,41.69570899906],[-71.590965,41.69562899906],[-71.591115,41.69557599906],[-71.591309,41.69547499906],[-71.591494,41.69520199906],[-71.591676,41.69494399906],[-71.591957,41.69486399906],[-71.592157,41.69482299906],[-71.592229,41.69478999906],[-71.592354,41.69466299906],[-71.592369,41.69457899906],[-71.592323,41.69454799906],[-71.592073,41.69435999906],[-71.591884,41.69413699906],[-71.59189,41.69412499906],[-71.591949,41.69385499906],[-71.591998,41.69374799906],[-71.592205,41.69353499906],[-71.592348,41.69345699906],[-71.592439,41.69355899906],[-71.592471,41.69357499906],[-71.59253,41.69357299906],[-71.592565,41.69358999906],[-71.592647,41.69359699906],[-71.592733,41.69359399906],[-71.592792,41.69357999906],[-71.593044,41.69333699906],[-71.593351,41.69307499906],[-71.593487,41.69304399906],[-71.59362,41.69307699906],[-71.593854,41.69317699906],[-71.594043,41.69327999906],[-71.594524,41.69355799906],[-71.594896,41.69373499906],[-71.595156,41.69384599906],[-71.595306,41.69364399906],[-71.595322,41.69362699906],[-71.595375,41.69354499906],[-71.59539,41.69344999906]]]}}"}, +{"type": "blockgroup", "typeId": 206031, "areaId": 29187, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.55967,41.68315999906],[-71.559181,41.68288299906],[-71.559151,41.68286999906],[-71.558937,41.68263599906],[-71.558785,41.68233299906],[-71.558632,41.68201199906],[-71.558441,41.68159299906],[-71.55825,41.68120099906],[-71.558162,41.68099099906],[-71.558144,41.68094699906],[-71.557953,41.68055899906],[-71.557869,41.68037199906],[-71.557678,41.67998899906],[-71.55748,41.67952499906],[-71.557304,41.67915999906],[-71.557129,41.67877199906],[-71.556892,41.67829999906],[-71.556732,41.67796999906],[-71.556534,41.67759199906],[-71.556371,41.67726699906],[-71.556297,41.67711999906],[-71.556053,41.67670599906],[-71.555771,41.67622199906],[-71.555649,41.67593199906],[-71.555382,41.67545199906],[-71.555153,41.67501499906],[-71.554924,41.67458799906],[-71.554817,41.67440599906],[-71.554611,41.67398299906],[-71.554512,41.67378699906],[-71.554413,41.67361299906],[-71.554245,41.67328799906],[-71.554192,41.67318999906],[-71.554008,41.67283399906],[-71.553779,41.67245699906],[-71.553536,41.67202099906],[-71.553459,41.67189599906],[-71.553352,41.67173199906],[-71.553101,41.67130999906],[-71.552811,41.67084299906],[-71.552648,41.67057599906],[-71.552559,41.67042999906],[-71.552345,41.67011999906],[-71.552086,41.66968399906],[-71.551666,41.66895099906],[-71.551544,41.66871499906],[-71.551407,41.66846999906],[-71.551262,41.66822999906],[-71.551117,41.66803999906],[-71.550934,41.66782799906],[-71.5507,41.66762899906],[-71.550674,41.66760799906],[-71.550362,41.66737599906],[-71.549995,41.66717699906],[-71.549614,41.66700999906],[-71.549232,41.66690199906],[-71.548805,41.66678999906],[-71.548598,41.66673799906],[-71.548424,41.66669399906],[-71.547981,41.66655999906],[-71.547561,41.66640699906],[-71.547218,41.66625699906],[-71.546791,41.66605499906],[-71.546432,41.66584199906],[-71.546051,41.66558499906],[-71.545731,41.66534899906],[-71.545357,41.66503799906],[-71.544975,41.66473499906],[-71.544838,41.66462099906],[-71.544601,41.66441999906],[-71.544197,41.66409099906],[-71.543854,41.66381899906],[-71.543785,41.66376199906],[-71.54332,41.66337599906],[-71.542953,41.66309199906],[-71.542702,41.66289899906],[-71.542366,41.66261799906],[-71.542023,41.66236499906],[-71.541657,41.66210699906],[-71.541633,41.66208999906],[-71.541566,41.66204099906],[-71.541475,41.66197699906],[-71.540918,41.66198899906],[-71.540041,41.66200799906],[-71.533464,41.66215399906],[-71.533379,41.66215599906],[-71.533377,41.66226199906],[-71.533366,41.66286999906],[-71.533315,41.66582199906],[-71.533295,41.66699999906],[-71.533288,41.66738199906],[-71.533277,41.66798399906],[-71.533277,41.66800799906],[-71.533272,41.66808099906],[-71.533245,41.66943699906],[-71.533243,41.66956699906],[-71.533218,41.67114599906],[-71.5332,41.67130299906],[-71.533199,41.67139299906],[-71.533182,41.67208599906],[-71.533172,41.67247099906],[-71.533124,41.67427799906],[-71.533089,41.67560699906],[-71.533089,41.67592499906],[-71.533041,41.67775799906],[-71.532995,41.67956699906],[-71.532989,41.67972399906],[-71.532988,41.67977199906],[-71.533132,41.67974999906],[-71.53447,41.67955799906],[-71.534935,41.67950199906],[-71.535286,41.67945899906],[-71.535705,41.67940399906],[-71.536026,41.67936999906],[-71.53614,41.67935899906],[-71.536308,41.67934599906],[-71.536514,41.67933199906],[-71.536758,41.67931799906],[-71.537056,41.67932999906],[-71.53743,41.67935699906],[-71.537629,41.67938099906],[-71.537743,41.67939499906],[-71.538276,41.67948699906],[-71.538574,41.67954799906],[-71.538834,41.67963199906],[-71.538956,41.67966999906],[-71.539345,41.67979699906],[-71.539711,41.67996399906],[-71.540085,41.68015399906],[-71.540726,41.68056299906],[-71.541077,41.68082599906],[-71.541299,41.68097899906],[-71.541679,41.68123999906],[-71.541756,41.68128799906],[-71.542191,41.68158899906],[-71.542694,41.68192899906],[-71.543221,41.68226399906],[-71.543739,41.68258599906],[-71.543938,41.68271199906],[-71.544228,41.68288999906],[-71.544624,41.68315199906],[-71.544975,41.68337399906],[-71.545288,41.68357799906],[-71.545906,41.68399299906],[-71.546387,41.68431999906],[-71.54641,41.68432799906],[-71.54657,41.68443299906],[-71.546844,41.68461099906],[-71.547142,41.68476699906],[-71.547524,41.68493799906],[-71.54792,41.68510099906],[-71.548271,41.68520099906],[-71.548653,41.68529599906],[-71.548684,41.68529999906],[-71.54905,41.68534999906],[-71.549423,41.68535999906],[-71.549774,41.68533899906],[-71.550049,41.68530999906],[-71.550354,41.68523999906],[-71.550735,41.68513299906],[-71.551186,41.68501499906],[-71.551712,41.68487199906],[-71.551785,41.68485099906],[-71.552361,41.68468199906],[-71.552925,41.68452999906],[-71.553429,41.68438399906],[-71.553673,41.68431599906],[-71.553711,41.68430099906],[-71.553986,41.68423199906],[-71.554008,41.68422299906],[-71.55471,41.68404899906],[-71.555122,41.68396399906],[-71.555832,41.68385299906],[-71.555939,41.68383299906],[-71.556747,41.68370199906],[-71.55761,41.68356199906],[-71.55796,41.68350899906],[-71.558594,41.68340899906],[-71.558685,41.68339799906],[-71.559051,41.68331299906],[-71.55967,41.68315999906]]]}}"}, +{"type": "blockgroup", "typeId": 206032, "areaId": 29188, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.568222,41.68076699906],[-71.567985,41.68057899906],[-71.567726,41.68027799906],[-71.567558,41.67998899906],[-71.567413,41.67961899906],[-71.567345,41.67926899906],[-71.567261,41.67889699906],[-71.567162,41.67851699906],[-71.567062,41.67822199906],[-71.566986,41.67805699906],[-71.566872,41.67789299906],[-71.566681,41.67769899906],[-71.566338,41.67742699906],[-71.566277,41.67737499906],[-71.566193,41.67728699906],[-71.566048,41.67712799906],[-71.565865,41.67680799906],[-71.565819,41.67654699906],[-71.565811,41.67634899906],[-71.565826,41.67622699906],[-71.565925,41.67596399906],[-71.566078,41.67566299906],[-71.566139,41.67556299906],[-71.566193,41.67547199906],[-71.566292,41.67531199906],[-71.566445,41.67505599906],[-71.566597,41.67481399906],[-71.566712,41.67456899906],[-71.566765,41.67431099906],[-71.566826,41.67394899906],[-71.566895,41.67362799906],[-71.566925,41.67343399906],[-71.566193,41.67335499906],[-71.56604,41.67334099906],[-71.565552,41.67328899906],[-71.565109,41.67325299906],[-71.564926,41.67326699906],[-71.564377,41.67341799906],[-71.563827,41.67356099906],[-71.56353,41.67364399906],[-71.563179,41.67374199906],[-71.562935,41.67384699906],[-71.562729,41.67394599906],[-71.56247,41.67409999906],[-71.562233,41.67419999906],[-71.561928,41.67427899906],[-71.561765,41.67430999906],[-71.561218,41.67441199906],[-71.560814,41.67450699906],[-71.560478,41.67455499906],[-71.56028,41.67457199906],[-71.559944,41.67456199906],[-71.559754,41.67453899906],[-71.559616,41.67452399906],[-71.559311,41.67450899906],[-71.559173,41.67452099906],[-71.559074,41.67453199906],[-71.558853,41.67459999906],[-71.558563,41.67471899906],[-71.55835,41.67481799906],[-71.558021,41.67500599906],[-71.557648,41.67523499906],[-71.557289,41.67548099906],[-71.557105,41.67559599906],[-71.556892,41.67572899906],[-71.55658,41.67594699906],[-71.556313,41.67605699906],[-71.556038,41.67614399906],[-71.555771,41.67622199906],[-71.556053,41.67670599906],[-71.556297,41.67711999906],[-71.556371,41.67726699906],[-71.556534,41.67759199906],[-71.556732,41.67796999906],[-71.556892,41.67829999906],[-71.557129,41.67877199906],[-71.557304,41.67915999906],[-71.55748,41.67952499906],[-71.557678,41.67998899906],[-71.557869,41.68037199906],[-71.557953,41.68055899906],[-71.558144,41.68094699906],[-71.558162,41.68099099906],[-71.55825,41.68120099906],[-71.558441,41.68159299906],[-71.558632,41.68201199906],[-71.558785,41.68233299906],[-71.558937,41.68263599906],[-71.559151,41.68286999906],[-71.559181,41.68288299906],[-71.55967,41.68315999906],[-71.560669,41.68282699906],[-71.560811,41.68277299906],[-71.561165,41.68263999906],[-71.561821,41.68236399906],[-71.562038,41.68228399906],[-71.562386,41.68215799906],[-71.562767,41.68204599906],[-71.563393,41.68188799906],[-71.564041,41.68173899906],[-71.564683,41.68158499906],[-71.564789,41.68155999906],[-71.565811,41.68132999906],[-71.5662,41.68123999906],[-71.566551,41.68115999906],[-71.567306,41.68098599906],[-71.567383,41.68096599906],[-71.568222,41.68076699906]]]}}"}, +{"type": "blockgroup", "typeId": 206033, "areaId": 29189, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.572671,41.66127499906],[-71.572563,41.66127799906],[-71.571794,41.66130199906],[-71.571535,41.66130699906],[-71.571505,41.66122599906],[-71.567596,41.66130099906],[-71.567594,41.66140499906],[-71.566002,41.66146199906],[-71.560783,41.66154899906],[-71.558914,41.66158899906],[-71.558845,41.66159099906],[-71.558438,41.66159899906],[-71.557907,41.66161599906],[-71.556978,41.66163399906],[-71.556243,41.66163999906],[-71.556038,41.66163999906],[-71.555465,41.66164499906],[-71.554876,41.66166299906],[-71.554496,41.66167499906],[-71.55392,41.66169399906],[-71.553731,41.66169899906],[-71.551348,41.66175099906],[-71.551109,41.66175699906],[-71.549829,41.66178699906],[-71.54974,41.66178699906],[-71.54945,41.66180399906],[-71.549389,41.66180399906],[-71.547113,41.66185099906],[-71.547036,41.66185299906],[-71.546677,41.66186099906],[-71.544438,41.66190299906],[-71.542752,41.66194799906],[-71.541971,41.66196499906],[-71.541475,41.66197699906],[-71.541566,41.66204099906],[-71.541633,41.66208999906],[-71.541657,41.66210699906],[-71.542023,41.66236499906],[-71.542366,41.66261799906],[-71.542702,41.66289899906],[-71.542953,41.66309199906],[-71.54332,41.66337599906],[-71.543785,41.66376199906],[-71.543854,41.66381899906],[-71.544197,41.66409099906],[-71.544601,41.66441999906],[-71.544838,41.66462099906],[-71.544975,41.66473499906],[-71.545357,41.66503799906],[-71.545731,41.66534899906],[-71.546051,41.66558499906],[-71.546432,41.66584199906],[-71.546791,41.66605499906],[-71.547218,41.66625699906],[-71.547561,41.66640699906],[-71.547981,41.66655999906],[-71.548424,41.66669399906],[-71.548598,41.66673799906],[-71.548805,41.66678999906],[-71.549232,41.66690199906],[-71.549614,41.66700999906],[-71.549995,41.66717699906],[-71.550362,41.66737599906],[-71.550674,41.66760799906],[-71.5507,41.66762899906],[-71.550934,41.66782799906],[-71.551117,41.66803999906],[-71.551262,41.66822999906],[-71.551407,41.66846999906],[-71.551544,41.66871499906],[-71.551666,41.66895099906],[-71.552086,41.66968399906],[-71.552345,41.67011999906],[-71.552559,41.67042999906],[-71.552648,41.67057599906],[-71.552811,41.67084299906],[-71.553101,41.67130999906],[-71.553352,41.67173199906],[-71.553459,41.67189599906],[-71.553536,41.67202099906],[-71.553779,41.67245699906],[-71.554008,41.67283399906],[-71.554192,41.67318999906],[-71.554245,41.67328799906],[-71.554413,41.67361299906],[-71.554512,41.67378699906],[-71.554611,41.67398299906],[-71.554817,41.67440599906],[-71.554924,41.67458799906],[-71.555153,41.67501499906],[-71.555382,41.67545199906],[-71.555649,41.67593199906],[-71.555771,41.67622199906],[-71.556038,41.67614399906],[-71.556313,41.67605699906],[-71.55658,41.67594699906],[-71.556892,41.67572899906],[-71.557105,41.67559599906],[-71.557289,41.67548099906],[-71.557648,41.67523499906],[-71.558021,41.67500599906],[-71.55835,41.67481799906],[-71.558563,41.67471899906],[-71.558853,41.67459999906],[-71.559074,41.67453199906],[-71.559173,41.67452099906],[-71.559311,41.67450899906],[-71.559616,41.67452399906],[-71.559754,41.67453899906],[-71.559944,41.67456199906],[-71.56028,41.67457199906],[-71.560478,41.67455499906],[-71.560814,41.67450699906],[-71.561218,41.67441199906],[-71.561765,41.67430999906],[-71.561928,41.67427899906],[-71.562233,41.67419999906],[-71.56247,41.67409999906],[-71.562729,41.67394599906],[-71.562935,41.67384699906],[-71.563179,41.67374199906],[-71.56353,41.67364399906],[-71.563827,41.67356099906],[-71.564377,41.67341799906],[-71.564926,41.67326699906],[-71.565109,41.67325299906],[-71.565552,41.67328899906],[-71.56604,41.67334099906],[-71.566193,41.67335499906],[-71.566925,41.67343399906],[-71.566978,41.67326599906],[-71.567276,41.67261099906],[-71.567429,41.67227399906],[-71.567589,41.67190999906],[-71.567703,41.67160999906],[-71.56781,41.67133299906],[-71.567848,41.67122399906],[-71.567909,41.67106999906],[-71.568131,41.67058799906],[-71.568253,41.67037299906],[-71.568329,41.67026199906],[-71.56839,41.67017699906],[-71.568565,41.66996099906],[-71.56864,41.66985499906],[-71.568749,41.66970499906],[-71.568916,41.66949799906],[-71.569069,41.66929699906],[-71.569183,41.66912799906],[-71.569305,41.66891799906],[-71.569435,41.66866699906],[-71.56958,41.66831699906],[-71.569679,41.66808099906],[-71.569809,41.66776299906],[-71.569858,41.66762199906],[-71.5699,41.66750399906],[-71.569969,41.66728599906],[-71.570038,41.66701899906],[-71.570114,41.66667999906],[-71.570198,41.66634499906],[-71.570259,41.66602299906],[-71.570317,41.66575999906],[-71.570407,41.66535299906],[-71.570427,41.66526299906],[-71.570503,41.66482899906],[-71.570595,41.66436799906],[-71.570725,41.66363499906],[-71.570839,41.66326399906],[-71.570862,41.66319099906],[-71.571022,41.66296699906],[-71.571243,41.66276399906],[-71.571533,41.66254599906],[-71.571747,41.66235199906],[-71.572022,41.66210699906],[-71.572082,41.66203399906],[-71.572205,41.66189599906],[-71.572433,41.66161099906],[-71.572671,41.66127499906]]]}}"}, +{"type": "blockgroup", "typeId": 206034, "areaId": 29190, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.589768,41.66051499906],[-71.589488,41.66052399906],[-71.587679,41.66060999906],[-71.585579,41.66071299906],[-71.583326,41.66082199906],[-71.582756,41.66082999906],[-71.582443,41.66083399906],[-71.582372,41.66083499906],[-71.582166,41.66083799906],[-71.580672,41.66086199906],[-71.577828,41.66105399906],[-71.577319,41.66108799906],[-71.5773,41.66108999906],[-71.576019,41.66114599906],[-71.573852,41.66121499906],[-71.573771,41.66123999906],[-71.573646,41.66124399906],[-71.573267,41.66125599906],[-71.572951,41.66126599906],[-71.572671,41.66127499906],[-71.572433,41.66161099906],[-71.572205,41.66189599906],[-71.572082,41.66203399906],[-71.572022,41.66210699906],[-71.571747,41.66235199906],[-71.571533,41.66254599906],[-71.571243,41.66276399906],[-71.571022,41.66296699906],[-71.570862,41.66319099906],[-71.570839,41.66326399906],[-71.570725,41.66363499906],[-71.570595,41.66436799906],[-71.570503,41.66482899906],[-71.570427,41.66526299906],[-71.570407,41.66535299906],[-71.570317,41.66575999906],[-71.570259,41.66602299906],[-71.570198,41.66634499906],[-71.570114,41.66667999906],[-71.570038,41.66701899906],[-71.569969,41.66728599906],[-71.5699,41.66750399906],[-71.569858,41.66762199906],[-71.569809,41.66776299906],[-71.569679,41.66808099906],[-71.56958,41.66831699906],[-71.569435,41.66866699906],[-71.569305,41.66891799906],[-71.569183,41.66912799906],[-71.569069,41.66929699906],[-71.568916,41.66949799906],[-71.568749,41.66970499906],[-71.56864,41.66985499906],[-71.568565,41.66996099906],[-71.56839,41.67017699906],[-71.568329,41.67026199906],[-71.568253,41.67037299906],[-71.568131,41.67058799906],[-71.567909,41.67106999906],[-71.567848,41.67122399906],[-71.56781,41.67133299906],[-71.567703,41.67160999906],[-71.567589,41.67190999906],[-71.567429,41.67227399906],[-71.567276,41.67261099906],[-71.566978,41.67326599906],[-71.566925,41.67343399906],[-71.566895,41.67362799906],[-71.566826,41.67394899906],[-71.566765,41.67431099906],[-71.566712,41.67456899906],[-71.566597,41.67481399906],[-71.566445,41.67505599906],[-71.566292,41.67531199906],[-71.566193,41.67547199906],[-71.566139,41.67556299906],[-71.566078,41.67566299906],[-71.565925,41.67596399906],[-71.565826,41.67622699906],[-71.565811,41.67634899906],[-71.565819,41.67654699906],[-71.565865,41.67680799906],[-71.566048,41.67712799906],[-71.566193,41.67728699906],[-71.566277,41.67737499906],[-71.566338,41.67742699906],[-71.566681,41.67769899906],[-71.566872,41.67789299906],[-71.566986,41.67805699906],[-71.567062,41.67822199906],[-71.567162,41.67851699906],[-71.567261,41.67889699906],[-71.567345,41.67926899906],[-71.567413,41.67961899906],[-71.567558,41.67998899906],[-71.567726,41.68027799906],[-71.567985,41.68057899906],[-71.568222,41.68076699906],[-71.568573,41.68069199906],[-71.569199,41.68059699906],[-71.570038,41.68050599906],[-71.571014,41.68038599906],[-71.571709,41.68030599906],[-71.572693,41.68020299906],[-71.572899,41.68018099906],[-71.573265,41.68013599906],[-71.574237,41.68004699906],[-71.574854,41.67996999906],[-71.575305,41.67993599906],[-71.575804,41.67987999906],[-71.576257,41.67981999906],[-71.576319,41.67980799906],[-71.576538,41.67976599906],[-71.576866,41.67970399906],[-71.577148,41.67963999906],[-71.577316,41.67959499906],[-71.577789,41.67947199906],[-71.577858,41.67945699906],[-71.578255,41.67935799906],[-71.578499,41.67930799906],[-71.578911,41.67920799906],[-71.579071,41.67916399906],[-71.579521,41.67910899906],[-71.579689,41.67908299906],[-71.580032,41.67904799906],[-71.580253,41.67902999906],[-71.580612,41.67902099906],[-71.580783,41.67901799906],[-71.580803,41.67889099906],[-71.580731,41.67884499906],[-71.580798,41.67862199906],[-71.581212,41.67800599906],[-71.581735,41.67767899906],[-71.581814,41.67763099906],[-71.582364,41.67697499906],[-71.582476,41.67632199906],[-71.582363,41.67614099906],[-71.582316,41.67529999906],[-71.582609,41.67421599906],[-71.582465,41.67407199906],[-71.582533,41.67364499906],[-71.582536,41.67354899906],[-71.582422,41.67312699906],[-71.582622,41.67297399906],[-71.582614,41.67284799906],[-71.582724,41.67274999906],[-71.582705,41.67270099906],[-71.582514,41.67238599906],[-71.582536,41.67230299906],[-71.582763,41.67212199906],[-71.582773,41.67190499906],[-71.582647,41.67164199906],[-71.582622,41.67152799906],[-71.582606,41.67123899906],[-71.582632,41.67105699906],[-71.582684,41.67095999906],[-71.582728,41.67090199906],[-71.582755,41.67084099906],[-71.582757,41.67076399906],[-71.582728,41.67067599906],[-71.582771,41.67059599906],[-71.582866,41.67053299906],[-71.582957,41.67050399906],[-71.582985,41.67046199906],[-71.582977,41.67040799906],[-71.582932,41.67034999906],[-71.582718,41.67027899906],[-71.582459,41.67030299906],[-71.582367,41.67027799906],[-71.582367,41.67014299906],[-71.582405,41.66998399906],[-71.582245,41.66982099906],[-71.582214,41.66963699906],[-71.582214,41.66946099906],[-71.582237,41.66924499906],[-71.582337,41.66910799906],[-71.582344,41.66905799906],[-71.582344,41.66880599906],[-71.58239,41.66866499906],[-71.582374,41.66834599906],[-71.582237,41.66819599906],[-71.582214,41.66811999906],[-71.582199,41.66806599906],[-71.582253,41.66797499906],[-71.582306,41.66793699906],[-71.582466,41.66780299906],[-71.582565,41.66778699906],[-71.582657,41.66777199906],[-71.58268,41.66775299906],[-71.582916,41.66756799906],[-71.583092,41.66739299906],[-71.583267,41.66728099906],[-71.583397,41.66721899906],[-71.583481,41.66703699906],[-71.583618,41.66701599906],[-71.583786,41.66693099906],[-71.583977,41.66681499906],[-71.584045,41.66674999906],[-71.584076,41.66663699906],[-71.584168,41.66650399906],[-71.58432,41.66631199906],[-71.584534,41.66617599906],[-71.584709,41.66598299906],[-71.584839,41.66583599906],[-71.58506,41.66568699906],[-71.585274,41.66550699906],[-71.585503,41.66535699906],[-71.585625,41.66525099906],[-71.585716,41.66516299906],[-71.585884,41.66498399906],[-71.586059,41.66472799906],[-71.586258,41.66452099906],[-71.586487,41.66433999906],[-71.586677,41.66423699906],[-71.586716,41.66423099906],[-71.587067,41.66410599906],[-71.587158,41.66402299906],[-71.587257,41.66395799906],[-71.587379,41.66384699906],[-71.587486,41.66375899906],[-71.587624,41.66362499906],[-71.587639,41.66360299906],[-71.587669,41.66359699906],[-71.587791,41.66354999906],[-71.587845,41.66353499906],[-71.587959,41.66346899906],[-71.588082,41.66340299906],[-71.588135,41.66337099906],[-71.588158,41.66334299906],[-71.588249,41.66317899906],[-71.588303,41.66298399906],[-71.588402,41.66275699906],[-71.588524,41.66256499906],[-71.588661,41.66242699906],[-71.588753,41.66215399906],[-71.588737,41.66199699906],[-71.588737,41.66176299906],[-71.588875,41.66141299906],[-71.589005,41.66118099906],[-71.589066,41.66105299906],[-71.589272,41.66081399906],[-71.589493,41.66066099906],[-71.589768,41.66051499906]]]}}"}, +{"type": "blockgroup", "typeId": 206041, "areaId": 29191, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.557983,41.69641399906],[-71.557976,41.69600899906],[-71.557961,41.69561299906],[-71.557938,41.69538399906],[-71.557899,41.69504699906],[-71.557854,41.69464699906],[-71.557785,41.69430599906],[-71.557709,41.69392999906],[-71.557617,41.69359399906],[-71.557503,41.69314199906],[-71.557373,41.69268999906],[-71.557243,41.69217999906],[-71.557098,41.69175499906],[-71.556984,41.69182999906],[-71.556465,41.69217399906],[-71.555618,41.69272899906],[-71.554817,41.69326899906],[-71.554214,41.69367399906],[-71.553642,41.69403799906],[-71.553119,41.69430999906],[-71.552918,41.69441499906],[-71.552521,41.69458999906],[-71.552311,41.69465999906],[-71.552147,41.69468899906],[-71.55188,41.69472999906],[-71.551476,41.69474799906],[-71.550651,41.69477599906],[-71.55053,41.69477799906],[-71.550102,41.69479699906],[-71.549759,41.69481799906],[-71.5494,41.69490299906],[-71.549034,41.69504599906],[-71.548279,41.69544499906],[-71.54808,41.69557999906],[-71.547806,41.69588499906],[-71.547585,41.69617199906],[-71.547403,41.69640599906],[-71.547188,41.69664499906],[-71.547005,41.69682899906],[-71.546722,41.69698399906],[-71.546501,41.69707899906],[-71.546242,41.69714299906],[-71.545746,41.69721299906],[-71.545143,41.69727999906],[-71.544594,41.69735099906],[-71.544535,41.69735399906],[-71.544296,41.69736599906],[-71.543983,41.69733299906],[-71.543671,41.69728599906],[-71.54364,41.69752499906],[-71.543655,41.69776799906],[-71.543716,41.69814499906],[-71.54377,41.69857999906],[-71.543854,41.69898799906],[-71.543877,41.69920399906],[-71.543869,41.69933899906],[-71.543831,41.69949799906],[-71.543755,41.69962499906],[-71.543541,41.69989999906],[-71.543228,41.70029399906],[-71.542908,41.70065699906],[-71.543213,41.70095699906],[-71.54348,41.70124399906],[-71.543823,41.70161899906],[-71.543923,41.70173799906],[-71.544143,41.70197599906],[-71.544312,41.70215299906],[-71.544479,41.70225699906],[-71.544739,41.70240899906],[-71.545029,41.70255999906],[-71.54538,41.70275999906],[-71.545723,41.70294099906],[-71.545922,41.70305799906],[-71.546005,41.70321799906],[-71.546173,41.70347999906],[-71.546326,41.70374699906],[-71.546494,41.70404999906],[-71.546669,41.70432999906],[-71.546845,41.70464099906],[-71.547066,41.70501899906],[-71.547226,41.70531699906],[-71.547317,41.70546299906],[-71.547463,41.70571699906],[-71.547569,41.70593099906],[-71.547867,41.70657299906],[-71.548004,41.70691599906],[-71.548126,41.70727399906],[-71.548248,41.70764499906],[-71.548104,41.70796799906],[-71.547951,41.70829499906],[-71.547829,41.70856799906],[-71.547547,41.70876799906],[-71.547173,41.70901499906],[-71.54686,41.70918899906],[-71.547417,41.70917199906],[-71.548012,41.70914999906],[-71.548531,41.70914299906],[-71.549004,41.70913199906],[-71.549759,41.70911499906],[-71.550392,41.70910999906],[-71.550838,41.70909399906],[-71.551132,41.70908499906],[-71.551705,41.70907199906],[-71.552289,41.70905199906],[-71.552475,41.70904599906],[-71.552986,41.70903899906],[-71.553764,41.70902599906],[-71.554482,41.70901899906],[-71.555122,41.70902799906],[-71.555687,41.70902899906],[-71.556313,41.70903699906],[-71.55693,41.70905499906],[-71.557533,41.70906899906],[-71.55751,41.70877199906],[-71.557503,41.70855099906],[-71.55751,41.70825399906],[-71.557518,41.70782599906],[-71.557518,41.70710999906],[-71.557511,41.70691199906],[-71.557513,41.70678999906],[-71.557518,41.70651999906],[-71.557525,41.70628899906],[-71.557533,41.70607399906],[-71.557541,41.70557899906],[-71.557541,41.70519599906],[-71.557548,41.70468699906],[-71.557541,41.70420999906],[-71.557556,41.70369099906],[-71.557564,41.70325399906],[-71.557573,41.70276399906],[-71.557587,41.70239799906],[-71.557587,41.70210999906],[-71.557609,41.70108699906],[-71.557625,41.70040699906],[-71.55764,41.70010499906],[-71.557671,41.69981199906],[-71.557701,41.69955899906],[-71.557739,41.69918899906],[-71.557785,41.69880499906],[-71.557823,41.69842599906],[-71.557877,41.69801499906],[-71.557884,41.69783499906],[-71.557922,41.69753199906],[-71.557953,41.69718499906],[-71.557961,41.69712999906],[-71.557976,41.69673799906],[-71.557983,41.69641399906]]]}}"}, +{"type": "blockgroup", "typeId": 206042, "areaId": 29192, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.543877,41.69920399906],[-71.543854,41.69898799906],[-71.54377,41.69857999906],[-71.543716,41.69814499906],[-71.543655,41.69776799906],[-71.54364,41.69752499906],[-71.543671,41.69728599906],[-71.543121,41.69708199906],[-71.542755,41.69688699906],[-71.542358,41.69665299906],[-71.542061,41.69642499906],[-71.541824,41.69619599906],[-71.541565,41.69595399906],[-71.541062,41.69557799906],[-71.540741,41.69544099906],[-71.540413,41.69537199906],[-71.540031,41.69532599906],[-71.539551,41.69532799906],[-71.539322,41.69533299906],[-71.538895,41.69535599906],[-71.538246,41.69537499906],[-71.53743,41.69540599906],[-71.536499,41.69543999906],[-71.536209,41.69544199906],[-71.536041,41.69544999906],[-71.535408,41.69547299906],[-71.53524,41.69548199906],[-71.534729,41.69550199906],[-71.534424,41.69551299906],[-71.534096,41.69551999906],[-71.53376,41.69552799906],[-71.53334,41.69555499906],[-71.533203,41.69557199906],[-71.533113,41.69558999906],[-71.533117,41.69593299906],[-71.533139,41.69658299906],[-71.533146,41.69680199906],[-71.533211,41.69723799906],[-71.533201,41.69764699906],[-71.53321,41.69799199906],[-71.533219,41.69814599906],[-71.533216,41.69820899906],[-71.533215,41.69830499906],[-71.533219,41.69840399906],[-71.533215,41.69848699906],[-71.533221,41.69866399906],[-71.533213,41.69887599906],[-71.53322,41.69912299906],[-71.533231,41.69949399906],[-71.533236,41.69964699906],[-71.533211,41.69970499906],[-71.533223,41.69976199906],[-71.533242,41.69985099906],[-71.533246,41.70018299906],[-71.533255,41.70026899906],[-71.533264,41.70031599906],[-71.533269,41.70061699906],[-71.533272,41.70074699906],[-71.533302,41.70094599906],[-71.533364,41.70094499906],[-71.53376,41.70091299906],[-71.53418,41.70087699906],[-71.534515,41.70085199906],[-71.534546,41.70104899906],[-71.534553,41.70110299906],[-71.534607,41.70143099906],[-71.534607,41.70147599906],[-71.534637,41.70167299906],[-71.53464,41.70169699906],[-71.534676,41.70194199906],[-71.534706,41.70219399906],[-71.534721,41.70229299906],[-71.534728,41.70234699906],[-71.534752,41.70253099906],[-71.534767,41.70269699906],[-71.53479,41.70293499906],[-71.534813,41.70308299906],[-71.535751,41.70304899906],[-71.535866,41.70304599906],[-71.535919,41.70304499906],[-71.536064,41.70304699906],[-71.536537,41.70306799906],[-71.537109,41.70314999906],[-71.537674,41.70321399906],[-71.538109,41.70323599906],[-71.538505,41.70323999906],[-71.538719,41.70322199906],[-71.538917,41.70314599906],[-71.539169,41.70303699906],[-71.539436,41.70293599906],[-71.53965,41.70289999906],[-71.539886,41.70288999906],[-71.540184,41.70290199906],[-71.540947,41.70295199906],[-71.541527,41.70226399906],[-71.541847,41.70189699906],[-71.54213,41.70155699906],[-71.542435,41.70121699906],[-71.542687,41.70094099906],[-71.542908,41.70065699906],[-71.543228,41.70029399906],[-71.543541,41.69989999906],[-71.543755,41.69962499906],[-71.543831,41.69949799906],[-71.543869,41.69933899906],[-71.543877,41.69920399906]]]}}"}, +{"type": "blockgroup", "typeId": 206043, "areaId": 29193, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.554135,41.68723499906],[-71.552424,41.68611199906],[-71.552248,41.68599799906],[-71.552063,41.68572499906],[-71.552017,41.68555499906],[-71.551964,41.68546599906],[-71.551941,41.68540799906],[-71.551895,41.68530099906],[-71.551849,41.68522999906],[-71.551834,41.68512199906],[-71.551811,41.68493799906],[-71.551785,41.68485099906],[-71.551712,41.68487199906],[-71.551186,41.68501499906],[-71.550735,41.68513299906],[-71.550354,41.68523999906],[-71.550049,41.68530999906],[-71.549774,41.68533899906],[-71.549423,41.68535999906],[-71.54905,41.68534999906],[-71.548684,41.68529999906],[-71.548653,41.68529599906],[-71.548271,41.68520099906],[-71.54792,41.68510099906],[-71.547524,41.68493799906],[-71.547142,41.68476699906],[-71.546844,41.68461099906],[-71.54657,41.68443299906],[-71.54641,41.68432799906],[-71.546387,41.68431999906],[-71.545906,41.68399299906],[-71.545288,41.68357799906],[-71.544975,41.68337399906],[-71.544624,41.68315199906],[-71.544228,41.68288999906],[-71.543938,41.68271199906],[-71.543739,41.68258599906],[-71.543221,41.68226399906],[-71.542694,41.68192899906],[-71.542191,41.68158899906],[-71.541756,41.68128799906],[-71.541679,41.68123999906],[-71.541299,41.68097899906],[-71.541077,41.68082599906],[-71.540726,41.68056299906],[-71.540085,41.68015399906],[-71.539711,41.67996399906],[-71.539345,41.67979699906],[-71.538956,41.67966999906],[-71.538834,41.67963199906],[-71.538574,41.67954799906],[-71.538276,41.67948699906],[-71.537743,41.67939499906],[-71.537629,41.67938099906],[-71.53743,41.67935699906],[-71.537056,41.67932999906],[-71.536758,41.67931799906],[-71.536514,41.67933199906],[-71.536308,41.67934599906],[-71.53614,41.67935899906],[-71.536026,41.67936999906],[-71.535705,41.67940399906],[-71.535286,41.67945899906],[-71.534935,41.67950199906],[-71.53447,41.67955799906],[-71.533132,41.67974999906],[-71.532988,41.67977199906],[-71.532983,41.67990299906],[-71.532972,41.68013299906],[-71.532968,41.68021599906],[-71.532962,41.68032599906],[-71.532909,41.68038699906],[-71.532902,41.68157199906],[-71.532908,41.68163899906],[-71.532875,41.68192099906],[-71.532857,41.68236099906],[-71.53287,41.68285099906],[-71.532909,41.68415899906],[-71.532964,41.68445999906],[-71.532934,41.68512199906],[-71.532938,41.68534799906],[-71.532977,41.68692199906],[-71.532975,41.68699499906],[-71.533009,41.68849799906],[-71.533032,41.68958599906],[-71.533086,41.69010299906],[-71.533088,41.69049999906],[-71.533093,41.69115799906],[-71.533076,41.69194499906],[-71.53307,41.69199199906],[-71.533096,41.69283199906],[-71.533092,41.69351299906],[-71.5331,41.69464899906],[-71.533119,41.69510999906],[-71.533109,41.69532999906],[-71.533113,41.69558999906],[-71.533203,41.69557199906],[-71.53334,41.69555499906],[-71.53376,41.69552799906],[-71.534096,41.69551999906],[-71.534424,41.69551299906],[-71.534729,41.69550199906],[-71.53524,41.69548199906],[-71.535408,41.69547299906],[-71.536041,41.69544999906],[-71.536209,41.69544199906],[-71.536499,41.69543999906],[-71.53743,41.69540599906],[-71.538246,41.69537499906],[-71.538895,41.69535599906],[-71.539322,41.69533299906],[-71.539551,41.69532799906],[-71.540031,41.69532599906],[-71.540413,41.69537199906],[-71.540741,41.69544099906],[-71.541062,41.69557799906],[-71.541565,41.69595399906],[-71.541824,41.69619599906],[-71.542061,41.69642499906],[-71.542358,41.69665299906],[-71.542755,41.69688699906],[-71.543121,41.69708199906],[-71.543671,41.69728599906],[-71.543983,41.69733299906],[-71.544296,41.69736599906],[-71.544535,41.69735399906],[-71.544594,41.69735099906],[-71.545143,41.69727999906],[-71.545746,41.69721299906],[-71.546242,41.69714299906],[-71.546501,41.69707899906],[-71.546722,41.69698399906],[-71.547005,41.69682899906],[-71.547188,41.69664499906],[-71.547403,41.69640599906],[-71.547142,41.69593399906],[-71.546993,41.69561699906],[-71.54695,41.69552399906],[-71.546983,41.69552099906],[-71.547023,41.69551099906],[-71.547389,41.69545699906],[-71.548392,41.69484899906],[-71.548465,41.69481099906],[-71.548839,41.69451099906],[-71.54885,41.69449999906],[-71.548843,41.69411499906],[-71.548821,41.69407199906],[-71.548807,41.69403399906],[-71.548732,41.69389799906],[-71.549319,41.69344099906],[-71.549924,41.69188599906],[-71.549453,41.69055199906],[-71.550099,41.68887399906],[-71.550126,41.68887899906],[-71.550976,41.68906299906],[-71.551981,41.68932299906],[-71.552578,41.68911799906],[-71.554135,41.68723499906]]]}}"}, +{"type": "blockgroup", "typeId": 207011, "areaId": 29194, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.789704,41.72519799906],[-71.789703,41.72456299906],[-71.789274,41.71198699906],[-71.789272,41.71192899906],[-71.789128,41.70771999906],[-71.789063,41.70762099906],[-71.789078,41.70748099906],[-71.789117,41.70739999906],[-71.789069,41.70596399906],[-71.788887,41.70073899906],[-71.788804,41.69833599906],[-71.788718,41.69569399906],[-71.788715,41.69559799906],[-71.788579,41.69159199906],[-71.788577,41.69152599906],[-71.788432,41.68727899906],[-71.788397,41.68621799906],[-71.787938,41.67264699906],[-71.787843,41.66981699906],[-71.787643,41.66551499906],[-71.78743,41.66064999906],[-71.787288,41.65728999906],[-71.787239,41.65611099906],[-71.78051,41.65628999906],[-71.775787,41.65641899906],[-71.769653,41.65656699906],[-71.765305,41.65666299906],[-71.758949,41.65686999906],[-71.746543,41.65714299906],[-71.745858,41.65719399906],[-71.744158,41.65725199906],[-71.740357,41.65736899906],[-71.740124,41.65739699906],[-71.739624,41.65735199906],[-71.735619,41.65743699906],[-71.735324,41.65746899906],[-71.728788,41.65763999906],[-71.727881,41.65767599906],[-71.726768,41.65768799906],[-71.725854,41.65770699906],[-71.725468,41.65769299906],[-71.725359,41.65771799906],[-71.724984,41.65772799906],[-71.724407,41.65773399906],[-71.721074,41.65784199906],[-71.720295,41.65785599906],[-71.720105,41.65786399906],[-71.71986,41.65787199906],[-71.710821,41.65814099906],[-71.707097,41.65822399906],[-71.70365,41.65830099906],[-71.703539,41.65830399906],[-71.70283,41.65831999906],[-71.702144,41.65833499906],[-71.701641,41.65834599906],[-71.694939,41.65842399906],[-71.694939,41.65871999906],[-71.694941,41.65897699906],[-71.694946,41.65950599906],[-71.694954,41.66006799906],[-71.694959,41.66083499906],[-71.694969,41.66207599906],[-71.694971,41.66257899906],[-71.694978,41.66388699906],[-71.694984,41.66479599906],[-71.694985,41.66626799906],[-71.694999,41.66737999906],[-71.695007,41.66906399906],[-71.695007,41.66917699906],[-71.695015,41.67074399906],[-71.695023,41.67131999906],[-71.69503,41.67208499906],[-71.69503,41.67252199906],[-71.695046,41.67354799906],[-71.695046,41.67437699906],[-71.69503,41.67474199906],[-71.695015,41.67502599906],[-71.694969,41.67532899906],[-71.694961,41.67542799906],[-71.694908,41.67578499906],[-71.694901,41.67581199906],[-71.694885,41.67596999906],[-71.694855,41.67617099906],[-71.694794,41.67657099906],[-71.694763,41.67684699906],[-71.694717,41.67711799906],[-71.694693,41.67733399906],[-71.694687,41.67738399906],[-71.694603,41.67784099906],[-71.694557,41.67821999906],[-71.69439,41.67939099906],[-71.69416,41.68098999906],[-71.694122,41.68122099906],[-71.694087,41.68149099906],[-71.694,41.68215099906],[-71.693825,41.68329899906],[-71.693741,41.68401199906],[-71.693726,41.68407999906],[-71.693726,41.68412499906],[-71.693718,41.68416199906],[-71.69366,41.68457699906],[-71.693642,41.68470799906],[-71.693626,41.68478999906],[-71.693535,41.68544899906],[-71.693413,41.68620899906],[-71.693369,41.68659199906],[-71.693321,41.68690399906],[-71.693268,41.68729299906],[-71.693245,41.68749999906],[-71.693191,41.68788899906],[-71.693169,41.68819999906],[-71.693161,41.68853399906],[-71.693161,41.68873599906],[-71.693184,41.68923999906],[-71.693237,41.68991899906],[-71.693298,41.69065999906],[-71.693322,41.69102899906],[-71.693474,41.69303399906],[-71.693585,41.69444999906],[-71.693611,41.69494399906],[-71.693649,41.69543399906],[-71.693695,41.69593299906],[-71.693748,41.69661199906],[-71.693802,41.69731699906],[-71.693855,41.69807299906],[-71.693893,41.69849999906],[-71.693894,41.69858499906],[-71.693916,41.69885499906],[-71.693939,41.69903899906],[-71.69397,41.69925399906],[-71.694016,41.69946499906],[-71.694069,41.69967099906],[-71.69413,41.69988099906],[-71.694198,41.70009499906],[-71.694313,41.70039399906],[-71.695175,41.70225599906],[-71.695892,41.70372599906],[-71.696419,41.70482599906],[-71.697174,41.70637899906],[-71.697495,41.70707899906],[-71.698178,41.70848299906],[-71.698738,41.70964799906],[-71.699089,41.71039199906],[-71.699364,41.71096599906],[-71.699669,41.71159799906],[-71.700066,41.71240799906],[-71.700111,41.71251099906],[-71.700203,41.71271599906],[-71.700249,41.71283199906],[-71.700294,41.71295699906],[-71.70034,41.71307299906],[-71.700461,41.71349299906],[-71.700485,41.71359199906],[-71.700531,41.71384699906],[-71.700561,41.71400399906],[-71.700585,41.71416099906],[-71.7006,41.71431899906],[-71.700615,41.71444899906],[-71.700638,41.71483999906],[-71.700638,41.71676699906],[-71.700615,41.72141199906],[-71.700586,41.72643299906],[-71.700584,41.72669399906],[-71.700933,41.72668699906],[-71.703594,41.72663399906],[-71.704842,41.72660799906],[-71.712749,41.72646599906],[-71.713105,41.72645899906],[-71.715887,41.72640899906],[-71.719007,41.72634799906],[-71.719499,41.72633799906],[-71.71959,41.72633699906],[-71.720034,41.72632799906],[-71.720111,41.72632599906],[-71.720257,41.72632299906],[-71.720368,41.72632099906],[-71.735023,41.72603299906],[-71.739508,41.72596999906],[-71.74076,41.72594099906],[-71.745964,41.72586299906],[-71.752389,41.72577299906],[-71.752846,41.72576599906],[-71.752988,41.72576399906],[-71.753098,41.72576499906],[-71.753127,41.72576199906],[-71.754402,41.72574399906],[-71.754572,41.72574099906],[-71.754649,41.72573999906],[-71.754698,41.72573999906],[-71.757764,41.72569699906],[-71.757864,41.72569599906],[-71.759306,41.72567399906],[-71.760908,41.72565199906],[-71.761192,41.72564799906],[-71.768377,41.72554899906],[-71.76844,41.72554499906],[-71.77447,41.72544899906],[-71.774906,41.72544299906],[-71.785969,41.72525999906],[-71.789562,41.72519999906],[-71.789669,41.72519899906],[-71.789704,41.72519799906]]]}}"}, +{"type": "blockgroup", "typeId": 207021, "areaId": 29195, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.655212,41.71919999906],[-71.654518,41.71900899906],[-71.654007,41.71888999906],[-71.653572,41.71879599906],[-71.653213,41.71868299906],[-71.65319,41.71856199906],[-71.653145,41.71845499906],[-71.653107,41.71828899906],[-71.653053,41.71811499906],[-71.652962,41.71788699906],[-71.652885,41.71766799906],[-71.652886,41.71753299906],[-71.652893,41.71737599906],[-71.652901,41.71723599906],[-71.652908,41.71713199906],[-71.652924,41.71702399906],[-71.652908,41.71691599906],[-71.652847,41.71672399906],[-71.652779,41.71645999906],[-71.652717,41.71615899906],[-71.652634,41.71588699906],[-71.652527,41.71546599906],[-71.652435,41.71504899906],[-71.652359,41.71473099906],[-71.652293,41.71449299906],[-71.652283,41.71445399906],[-71.652283,41.71443599906],[-71.652216,41.71418099906],[-71.652191,41.71408699906],[-71.652101,41.71388499906],[-71.652084,41.71384599906],[-71.652023,41.71374399906],[-71.651894,41.71358499906],[-71.65184,41.71350899906],[-71.651675,41.71329599906],[-71.651604,41.71320399906],[-71.651367,41.71290299906],[-71.651344,41.71287199906],[-71.651154,41.71256599906],[-71.651031,41.71237099906],[-71.650955,41.71220999906],[-71.650818,41.71196599906],[-71.650726,41.71176499906],[-71.650673,41.71170399906],[-71.650642,41.71167299906],[-71.650536,41.71153599906],[-71.650383,41.71132699906],[-71.650306,41.71122599906],[-71.650276,41.71114099906],[-71.650261,41.71107399906],[-71.650261,41.71099299906],[-71.650276,41.71081199906],[-71.650093,41.71079399906],[-71.649879,41.71075799906],[-71.649704,41.71072599906],[-71.649483,41.71067299906],[-71.6493,41.71063199906],[-71.649116,41.71057299906],[-71.648933,41.71050999906],[-71.648651,41.71040399906],[-71.648331,41.71026299906],[-71.647904,41.71007399906],[-71.647522,41.70990299906],[-71.64714,41.70972699906],[-71.646919,41.70962899906],[-71.646759,41.70955599906],[-71.646645,41.70949499906],[-71.646469,41.70940899906],[-71.646317,41.70929099906],[-71.646103,41.70914799906],[-71.645828,41.70892899906],[-71.645378,41.70850199906],[-71.644897,41.70804999906],[-71.644648,41.70782299906],[-71.644363,41.70756199906],[-71.643814,41.70705199906],[-71.643206,41.70647399906],[-71.642937,41.70621699906],[-71.642454,41.70575999906],[-71.642052,41.70536799906],[-71.641044,41.70443199906],[-71.640678,41.70408899906],[-71.640602,41.70400999906],[-71.640518,41.70393599906],[-71.640434,41.70387399906],[-71.640267,41.70376999906],[-71.640175,41.70370899906],[-71.640083,41.70365299906],[-71.639984,41.70359699906],[-71.639671,41.70346399906],[-71.639488,41.70339599906],[-71.639282,41.70332899906],[-71.639046,41.70327099906],[-71.638535,41.70316599906],[-71.637886,41.70302299906],[-71.636772,41.70279199906],[-71.635948,41.70263099906],[-71.635703,41.70258699906],[-71.635132,41.70248299906],[-71.63514,41.70239399906],[-71.635162,41.70216299906],[-71.635193,41.70189599906],[-71.635216,41.70163899906],[-71.635239,41.70139999906],[-71.635239,41.70125599906],[-71.635231,41.70116999906],[-71.635264,41.70112999906],[-71.635291,41.70105699906],[-71.635297,41.70103099906],[-71.635347,41.70089799906],[-71.635403,41.70079999906],[-71.635454,41.70072999906],[-71.635496,41.70066599906],[-71.635532,41.70060699906],[-71.635566,41.70053699906],[-71.635576,41.70051199906],[-71.63559,41.70047299906],[-71.63559,41.70039699906],[-71.635582,41.70033399906],[-71.635559,41.70027099906],[-71.635536,41.70022199906],[-71.63546,41.70011199906],[-71.635315,41.69992999906],[-71.635124,41.69970899906],[-71.634972,41.69955999906],[-71.634842,41.69940099906],[-71.634765,41.69929399906],[-71.634689,41.69916999906],[-71.634628,41.69901799906],[-71.63459,41.69888899906],[-71.634567,41.69880399906],[-71.634552,41.69875899906],[-71.634499,41.69852099906],[-71.634483,41.69839999906],[-71.634476,41.69828299906],[-71.634475,41.69815299906],[-71.634483,41.69807199906],[-71.634514,41.69796299906],[-71.634552,41.69788999906],[-71.634582,41.69781699906],[-71.634659,41.69767599906],[-71.634766,41.69749799906],[-71.634821,41.69738499906],[-71.634949,41.69712899906],[-71.635056,41.69690999906],[-71.635216,41.69663199906],[-71.635346,41.69639899906],[-71.635437,41.69621199906],[-71.635513,41.69601699906],[-71.635536,41.69593499906],[-71.635551,41.69588999906],[-71.635582,41.69580799906],[-71.635597,41.69578099906],[-71.63562,41.69575299906],[-71.635666,41.69567099906],[-71.635698,41.69562599906],[-71.635742,41.69556599906],[-71.636002,41.69524899906],[-71.636215,41.69492499906],[-71.636261,41.69486499906],[-71.636337,41.69474599906],[-71.636444,41.69458199906],[-71.636498,41.69450399906],[-71.636543,41.69442599906],[-71.636589,41.69435299906],[-71.636635,41.69427599906],[-71.636665,41.69419399906],[-71.636696,41.69411699906],[-71.636734,41.69403499906],[-71.636818,41.69355999906],[-71.636902,41.69304899906],[-71.637062,41.69204099906],[-71.637214,41.69127199906],[-71.637337,41.69067499906],[-71.637512,41.68987399906],[-71.637573,41.68956199906],[-71.637579,41.68952299906],[-71.637657,41.68908699906],[-71.637741,41.68865799906],[-71.637741,41.68861199906],[-71.637749,41.68857199906],[-71.637749,41.68846399906],[-71.637756,41.68839599906],[-71.637749,41.68833299906],[-71.637749,41.68826599906],[-71.637741,41.68820299906],[-71.637726,41.68813999906],[-71.637703,41.68809099906],[-71.637665,41.68804199906],[-71.637619,41.68799399906],[-71.637283,41.68774499906],[-71.637245,41.68769199906],[-71.637215,41.68763799906],[-71.637184,41.68758499906],[-71.637153,41.68748199906],[-71.637146,41.68743299906],[-71.637161,41.68732399906],[-71.637199,41.68721999906],[-71.637245,41.68711999906],[-71.637283,41.68702899906],[-71.63742,41.68674699906],[-71.637436,41.68670999906],[-71.637451,41.68666899906],[-71.637459,41.68662899906],[-71.637466,41.68657399906],[-71.637466,41.68646199906],[-71.637459,41.68639399906],[-71.637443,41.68632699906],[-71.637436,41.68625499906],[-71.637394,41.68601199906],[-71.637359,41.68581599906],[-71.637184,41.68527999906],[-71.637047,41.68475099906],[-71.637017,41.68462599906],[-71.636978,41.68446899906],[-71.636909,41.68424599906],[-71.636894,41.68418699906],[-71.636879,41.68415599906],[-71.636711,41.68375499906],[-71.636696,41.68370099906],[-71.636673,41.68364799906],[-71.636612,41.68342399906],[-71.636498,41.68293599906],[-71.636414,41.68251899906],[-71.636345,41.68220499906],[-71.63623,41.68171199906],[-71.636116,41.68119299906],[-71.63604,41.68093799906],[-71.635994,41.68079499906],[-71.635841,41.68038399906],[-71.635704,41.68006299906],[-71.635681,41.68000499906],[-71.635635,41.67987999906],[-71.63562,41.67980399906],[-71.635605,41.67976799906],[-71.635605,41.67972299906],[-71.63559,41.67963799906],[-71.635589,41.67955699906],[-71.635582,41.67952499906],[-71.635567,41.67946699906],[-71.635551,41.67941399906],[-71.635536,41.67935999906],[-71.635529,41.67932399906],[-71.635528,41.67929199906],[-71.635521,41.67926599906],[-71.635429,41.67897099906],[-71.635392,41.67885699906],[-71.6353,41.67856799906],[-71.635246,41.67829499906],[-71.635178,41.67801299906],[-71.634933,41.67694699906],[-71.634872,41.67665499906],[-71.634827,41.67647599906],[-71.63472,41.67610499906],[-71.63459,41.67569799906],[-71.634506,41.67543899906],[-71.634422,41.67520199906],[-71.634354,41.67499199906],[-71.634277,41.67459699906],[-71.634194,41.67429799906],[-71.634026,41.67373399906],[-71.633865,41.67316599906],[-71.633804,41.67291099906],[-71.63372,41.67252499906],[-71.63369,41.67236399906],[-71.633705,41.67220099906],[-71.633324,41.67211599906],[-71.632492,41.67189599906],[-71.632378,41.67186299906],[-71.632095,41.67177899906],[-71.631294,41.67154499906],[-71.630226,41.67122299906],[-71.629807,41.67107899906],[-71.62944,41.67091199906],[-71.628987,41.67070099906],[-71.628906,41.67066299906],[-71.628258,41.67035399906],[-71.627365,41.66992399906],[-71.626451,41.66945999906],[-71.626381,41.66942399906],[-71.624871,41.66862599906],[-71.624237,41.66829299906],[-71.623741,41.66803899906],[-71.623352,41.66781799906],[-71.623055,41.66763599906],[-71.622627,41.66735299906],[-71.622101,41.66695499906],[-71.621506,41.66648699906],[-71.621117,41.66618999906],[-71.620842,41.66600199906],[-71.62069,41.66590199906],[-71.620575,41.66583699906],[-71.620461,41.66577699906],[-71.619995,41.66554399906],[-71.61982,41.66547599906],[-71.619515,41.66535199906],[-71.619293,41.66525599906],[-71.619241,41.66523299906],[-71.618361,41.66574599906],[-71.617561,41.66629799906],[-71.615927,41.66870699906],[-71.615125,41.66942999906],[-71.613963,41.66993499906],[-71.613657,41.67006799906],[-71.612215,41.67057899906],[-71.61194,41.67067799906],[-71.611672,41.67074799906],[-71.610766,41.67098299906],[-71.609715,41.67099999906],[-71.608431,41.67074799906],[-71.608269,41.67088199906],[-71.608115,41.67113699906],[-71.607795,41.67154899906],[-71.60749,41.67216299906],[-71.607916,41.67298099906],[-71.607994,41.67312899906],[-71.60801,41.67320399906],[-71.607624,41.67351299906],[-71.607484,41.67362599906],[-71.606793,41.67417399906],[-71.606107,41.67533699906],[-71.605455,41.67680899906],[-71.605337,41.67721999906],[-71.605659,41.67888099906],[-71.605723,41.67970099906],[-71.605765,41.68013999906],[-71.605742,41.68024399906],[-71.605619,41.68041999906],[-71.605367,41.68090199906],[-71.605029,41.68155399906],[-71.60485,41.68222399906],[-71.604774,41.68267599906],[-71.604981,41.68340999906],[-71.605933,41.68649299906],[-71.606322,41.68723399906],[-71.606999,41.68973199906],[-71.607123,41.69327899906],[-71.607095,41.69464199906],[-71.607297,41.69558499906],[-71.607293,41.69587799906],[-71.607529,41.69598199906],[-71.607666,41.69604399906],[-71.607906,41.69611399906],[-71.608292,41.69628199906],[-71.610584,41.69636799906],[-71.61279,41.69657399906],[-71.612989,41.69659299906],[-71.613801,41.69675999906],[-71.615121,41.69703199906],[-71.616401,41.69744099906],[-71.617353,41.69777999906],[-71.618196,41.69827099906],[-71.621002,41.70020399906],[-71.622178,41.70112099906],[-71.623222,41.70190699906],[-71.623795,41.70248399906],[-71.624121,41.70268999906],[-71.624263,41.70271799906],[-71.624796,41.70276099906],[-71.624991,41.70268799906],[-71.625449,41.70259599906],[-71.626152,41.70246599906],[-71.626213,41.70247199906],[-71.626292,41.70247699906],[-71.626398,41.70248399906],[-71.626911,41.70247199906],[-71.627157,41.70241199906],[-71.627479,41.70251099906],[-71.627767,41.70265699906],[-71.628091,41.70305399906],[-71.628317,41.70328999906],[-71.628375,41.70341999906],[-71.62847,41.70363199906],[-71.628522,41.70374899906],[-71.628662,41.70388899906],[-71.62875,41.70397799906],[-71.628792,41.70401899906],[-71.629295,41.70484399906],[-71.629393,41.70527299906],[-71.629563,41.70547399906],[-71.630576,41.70604499906],[-71.631581,41.70650399906],[-71.632502,41.70740499906],[-71.633201,41.70813299906],[-71.633807,41.70860599906],[-71.634479,41.70891299906],[-71.635921,41.70919299906],[-71.637461,41.70933799906],[-71.639222,41.70974799906],[-71.640321,41.71015099906],[-71.643468,41.71279499906],[-71.645257,41.71386999906],[-71.64569,41.71417499906],[-71.645892,41.71469999906],[-71.645844,41.71498299906],[-71.645697,41.71542599906],[-71.645397,41.71582699906],[-71.645157,41.71619399906],[-71.645114,41.71662299906],[-71.64521,41.71712799906],[-71.645206,41.71740999906],[-71.64511,41.71762599906],[-71.645104,41.71783999906],[-71.645203,41.71806299906],[-71.645249,41.71830399906],[-71.645225,41.71834499906],[-71.645218,41.71839899906],[-71.645203,41.71845399906],[-71.645157,41.71858099906],[-71.645127,41.71863499906],[-71.645111,41.71869899906],[-71.645111,41.71877499906],[-71.645129,41.71884499906],[-71.645149,41.71892799906],[-71.645163,41.71896899906],[-71.645197,41.72124499906],[-71.645006,41.72168599906],[-71.644283,41.72335199906],[-71.644043,41.72390499906],[-71.643973,41.72413199906],[-71.643925,41.72428699906],[-71.643668,41.72511799906],[-71.64354,41.72553199906],[-71.643514,41.72562899906],[-71.643502,41.72564699906],[-71.6437,41.72565199906],[-71.644119,41.72565599906],[-71.644493,41.72565699906],[-71.644768,41.72565499906],[-71.644966,41.72565499906],[-71.645088,41.72562499906],[-71.645172,41.72560099906],[-71.645554,41.72534899906],[-71.645973,41.72512699906],[-71.646652,41.72478299906],[-71.646759,41.72472199906],[-71.647057,41.72459299906],[-71.647644,41.72420599906],[-71.64788,41.72409299906],[-71.648125,41.72393399906],[-71.648491,41.72375899906],[-71.648895,41.72353299906],[-71.649307,41.72334399906],[-71.649643,41.72316899906],[-71.649863,41.72306999906],[-71.650032,41.72299399906],[-71.650246,41.72292599906],[-71.650406,41.72287299906],[-71.650551,41.72279299906],[-71.650635,41.72271899906],[-71.650726,41.72261799906],[-71.651009,41.72231399906],[-71.651199,41.72214299906],[-71.651588,41.72178699906],[-71.65197,41.72147199906],[-71.652084,41.72137899906],[-71.652992,41.72068799906],[-71.653259,41.72050999906],[-71.653572,41.72030499906],[-71.654167,41.71982699906],[-71.654762,41.71943999906],[-71.655052,41.71927099906],[-71.655212,41.71919999906]]]}}"}, +{"type": "blockgroup", "typeId": 207022, "areaId": 29196, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.700638,41.71483999906],[-71.700615,41.71444899906],[-71.7006,41.71431899906],[-71.700585,41.71416099906],[-71.700561,41.71400399906],[-71.700531,41.71384699906],[-71.700485,41.71359199906],[-71.700461,41.71349299906],[-71.70034,41.71307299906],[-71.700294,41.71295699906],[-71.700249,41.71283199906],[-71.700203,41.71271599906],[-71.700111,41.71251099906],[-71.700066,41.71240799906],[-71.699669,41.71159799906],[-71.699364,41.71096599906],[-71.699089,41.71039199906],[-71.698738,41.70964799906],[-71.698178,41.70848299906],[-71.697495,41.70707899906],[-71.697174,41.70637899906],[-71.696419,41.70482599906],[-71.695892,41.70372599906],[-71.695175,41.70225599906],[-71.694313,41.70039399906],[-71.694198,41.70009499906],[-71.69413,41.69988099906],[-71.694069,41.69967099906],[-71.694016,41.69946499906],[-71.69397,41.69925399906],[-71.693939,41.69903899906],[-71.693916,41.69885499906],[-71.693894,41.69858499906],[-71.693893,41.69849999906],[-71.693855,41.69807299906],[-71.693802,41.69731699906],[-71.693748,41.69661199906],[-71.693695,41.69593299906],[-71.693649,41.69543399906],[-71.693611,41.69494399906],[-71.693585,41.69444999906],[-71.693474,41.69303399906],[-71.693322,41.69102899906],[-71.693298,41.69065999906],[-71.693237,41.68991899906],[-71.693184,41.68923999906],[-71.693161,41.68873599906],[-71.693161,41.68853399906],[-71.693169,41.68819999906],[-71.693191,41.68788899906],[-71.693245,41.68749999906],[-71.693268,41.68729299906],[-71.693321,41.68690399906],[-71.693369,41.68659199906],[-71.693413,41.68620899906],[-71.693535,41.68544899906],[-71.693626,41.68478999906],[-71.693642,41.68470799906],[-71.69366,41.68457699906],[-71.693718,41.68416199906],[-71.693726,41.68412499906],[-71.693726,41.68407999906],[-71.693741,41.68401199906],[-71.693825,41.68329899906],[-71.694,41.68215099906],[-71.694087,41.68149099906],[-71.694122,41.68122099906],[-71.69416,41.68098999906],[-71.69439,41.67939099906],[-71.694557,41.67821999906],[-71.694603,41.67784099906],[-71.694687,41.67738399906],[-71.694693,41.67733399906],[-71.694717,41.67711799906],[-71.694763,41.67684699906],[-71.694794,41.67657099906],[-71.694855,41.67617099906],[-71.694885,41.67596999906],[-71.694901,41.67581199906],[-71.694908,41.67578499906],[-71.694961,41.67542799906],[-71.694969,41.67532899906],[-71.695015,41.67502599906],[-71.69503,41.67474199906],[-71.695046,41.67437699906],[-71.695046,41.67354799906],[-71.69503,41.67252199906],[-71.69503,41.67208499906],[-71.695023,41.67131999906],[-71.695015,41.67074399906],[-71.695007,41.66917699906],[-71.695007,41.66906399906],[-71.694999,41.66737999906],[-71.694985,41.66626799906],[-71.694984,41.66479599906],[-71.694978,41.66388699906],[-71.694971,41.66257899906],[-71.694969,41.66207599906],[-71.694959,41.66083499906],[-71.694954,41.66006799906],[-71.694946,41.65950599906],[-71.694941,41.65897699906],[-71.694939,41.65871999906],[-71.694939,41.65842399906],[-71.691019,41.65851399906],[-71.684921,41.65855599906],[-71.67881,41.65863999906],[-71.67379,41.65861299906],[-71.673515,41.65863799906],[-71.673279,41.65862999906],[-71.673012,41.65867199906],[-71.667094,41.65870699906],[-71.666069,41.65873799906],[-71.666039,41.65872099906],[-71.666008,41.65870799906],[-71.66597,41.65869999906],[-71.665939,41.65869199906],[-71.665909,41.65869299906],[-71.665871,41.65868899906],[-71.665428,41.65870799906],[-71.664795,41.65872299906],[-71.662941,41.65879299906],[-71.662453,41.65880899906],[-71.662255,41.65881699906],[-71.661959,41.65882799906],[-71.661614,41.65884199906],[-71.661035,41.65884999906],[-71.66008,41.65886399906],[-71.659386,41.65888399906],[-71.658195,41.65889799906],[-71.657677,41.65890099906],[-71.657081,41.65891099906],[-71.656502,41.65894199906],[-71.655937,41.65896899906],[-71.6549,41.65899299906],[-71.653869,41.65901199906],[-71.653412,41.65901799906],[-71.653221,41.65901799906],[-71.652847,41.65902199906],[-71.65229,41.65904399906],[-71.651619,41.65905899906],[-71.651573,41.65905599906],[-71.650933,41.65906599906],[-71.649605,41.65911499906],[-71.649539,41.65911799906],[-71.649097,41.65913799906],[-71.648216,41.65917799906],[-71.648151,41.65918099906],[-71.64708,41.65922299906],[-71.646286,41.65922299906],[-71.645676,41.65924999906],[-71.645202,41.65926999906],[-71.64463,41.65929199906],[-71.64309,41.65932799906],[-71.642921,41.65933199906],[-71.642258,41.65936999906],[-71.642052,41.65937899906],[-71.641781,41.65938699906],[-71.64148,41.65939599906],[-71.640838,41.65941999906],[-71.640343,41.65943599906],[-71.639984,41.65944899906],[-71.63974,41.65944499906],[-71.639481,41.65945999906],[-71.639436,41.65946099906],[-71.639008,41.65947099906],[-71.638542,41.65948599906],[-71.637512,41.65949699906],[-71.637032,41.65950299906],[-71.636316,41.65951999906],[-71.635933,41.65952799906],[-71.635536,41.65953299906],[-71.634926,41.65955099906],[-71.633141,41.65959199906],[-71.632324,41.65960699906],[-71.631653,41.65962199906],[-71.631104,41.65963899906],[-71.630486,41.65964899906],[-71.629914,41.65966599906],[-71.629509,41.65966699906],[-71.629478,41.65966699906],[-71.62912,41.65968399906],[-71.62884,41.65968499906],[-71.628673,41.65965699906],[-71.628475,41.65962099906],[-71.62831,41.65959299906],[-71.62823,41.65957899906],[-71.622871,41.65968299906],[-71.622371,41.65968799906],[-71.622375,41.65972999906],[-71.622378,41.66021599906],[-71.622223,41.66038499906],[-71.621647,41.66085799906],[-71.62141,41.66199699906],[-71.620491,41.66288899906],[-71.620629,41.66354399906],[-71.620502,41.66393399906],[-71.620417,41.66454499906],[-71.619798,41.66490399906],[-71.619284,41.66520899906],[-71.619241,41.66523299906],[-71.619293,41.66525599906],[-71.619515,41.66535199906],[-71.61982,41.66547599906],[-71.619995,41.66554399906],[-71.620461,41.66577699906],[-71.620575,41.66583699906],[-71.62069,41.66590199906],[-71.620842,41.66600199906],[-71.621117,41.66618999906],[-71.621506,41.66648699906],[-71.622101,41.66695499906],[-71.622627,41.66735299906],[-71.623055,41.66763599906],[-71.623352,41.66781799906],[-71.623741,41.66803899906],[-71.624237,41.66829299906],[-71.624871,41.66862599906],[-71.626381,41.66942399906],[-71.626451,41.66945999906],[-71.627365,41.66992399906],[-71.628258,41.67035399906],[-71.628906,41.67066299906],[-71.628987,41.67070099906],[-71.62944,41.67091199906],[-71.629807,41.67107899906],[-71.630226,41.67122299906],[-71.631294,41.67154499906],[-71.632095,41.67177899906],[-71.632378,41.67186299906],[-71.632492,41.67189599906],[-71.633324,41.67211599906],[-71.633705,41.67220099906],[-71.63369,41.67236399906],[-71.63372,41.67252499906],[-71.633804,41.67291099906],[-71.633865,41.67316599906],[-71.634026,41.67373399906],[-71.634194,41.67429799906],[-71.634277,41.67459699906],[-71.634354,41.67499199906],[-71.634422,41.67520199906],[-71.634506,41.67543899906],[-71.63459,41.67569799906],[-71.63472,41.67610499906],[-71.634827,41.67647599906],[-71.634872,41.67665499906],[-71.634933,41.67694699906],[-71.635178,41.67801299906],[-71.635246,41.67829499906],[-71.6353,41.67856799906],[-71.635392,41.67885699906],[-71.635429,41.67897099906],[-71.635521,41.67926599906],[-71.635528,41.67929199906],[-71.635529,41.67932399906],[-71.635536,41.67935999906],[-71.635551,41.67941399906],[-71.635567,41.67946699906],[-71.635582,41.67952499906],[-71.635589,41.67955699906],[-71.63559,41.67963799906],[-71.635605,41.67972299906],[-71.635605,41.67976799906],[-71.63562,41.67980399906],[-71.635635,41.67987999906],[-71.635681,41.68000499906],[-71.635704,41.68006299906],[-71.635841,41.68038399906],[-71.635994,41.68079499906],[-71.63604,41.68093799906],[-71.636116,41.68119299906],[-71.63623,41.68171199906],[-71.636345,41.68220499906],[-71.636414,41.68251899906],[-71.636498,41.68293599906],[-71.636612,41.68342399906],[-71.636673,41.68364799906],[-71.636696,41.68370099906],[-71.636711,41.68375499906],[-71.636879,41.68415599906],[-71.636894,41.68418699906],[-71.636909,41.68424599906],[-71.636978,41.68446899906],[-71.637017,41.68462599906],[-71.637047,41.68475099906],[-71.637184,41.68527999906],[-71.637359,41.68581599906],[-71.637394,41.68601199906],[-71.637436,41.68625499906],[-71.637443,41.68632699906],[-71.637459,41.68639399906],[-71.637466,41.68646199906],[-71.637466,41.68657399906],[-71.637459,41.68662899906],[-71.637451,41.68666899906],[-71.637436,41.68670999906],[-71.63742,41.68674699906],[-71.637283,41.68702899906],[-71.637245,41.68711999906],[-71.637199,41.68721999906],[-71.637161,41.68732399906],[-71.637146,41.68743299906],[-71.637153,41.68748199906],[-71.637184,41.68758499906],[-71.637215,41.68763799906],[-71.637245,41.68769199906],[-71.637283,41.68774499906],[-71.637619,41.68799399906],[-71.637665,41.68804199906],[-71.637703,41.68809099906],[-71.637726,41.68813999906],[-71.637741,41.68820299906],[-71.637749,41.68826599906],[-71.637749,41.68833299906],[-71.637756,41.68839599906],[-71.637749,41.68846399906],[-71.637749,41.68857199906],[-71.637741,41.68861199906],[-71.637741,41.68865799906],[-71.637657,41.68908699906],[-71.637579,41.68952299906],[-71.637573,41.68956199906],[-71.637512,41.68987399906],[-71.637337,41.69067499906],[-71.637214,41.69127199906],[-71.637062,41.69204099906],[-71.636902,41.69304899906],[-71.636818,41.69355999906],[-71.636734,41.69403499906],[-71.636696,41.69411699906],[-71.636665,41.69419399906],[-71.636635,41.69427599906],[-71.636589,41.69435299906],[-71.636543,41.69442599906],[-71.636498,41.69450399906],[-71.636444,41.69458199906],[-71.636337,41.69474599906],[-71.636261,41.69486499906],[-71.636215,41.69492499906],[-71.636002,41.69524899906],[-71.635742,41.69556599906],[-71.635698,41.69562599906],[-71.635666,41.69567099906],[-71.63562,41.69575299906],[-71.635597,41.69578099906],[-71.635582,41.69580799906],[-71.635551,41.69588999906],[-71.635536,41.69593499906],[-71.635513,41.69601699906],[-71.635437,41.69621199906],[-71.635346,41.69639899906],[-71.635216,41.69663199906],[-71.635056,41.69690999906],[-71.634949,41.69712899906],[-71.634821,41.69738499906],[-71.634766,41.69749799906],[-71.634659,41.69767599906],[-71.634582,41.69781699906],[-71.634552,41.69788999906],[-71.634514,41.69796299906],[-71.634483,41.69807199906],[-71.634475,41.69815299906],[-71.634476,41.69828299906],[-71.634483,41.69839999906],[-71.634499,41.69852099906],[-71.634552,41.69875899906],[-71.634567,41.69880399906],[-71.63459,41.69888899906],[-71.634628,41.69901799906],[-71.634689,41.69916999906],[-71.634765,41.69929399906],[-71.634842,41.69940099906],[-71.634972,41.69955999906],[-71.635124,41.69970899906],[-71.635315,41.69992999906],[-71.63546,41.70011199906],[-71.635536,41.70022199906],[-71.635559,41.70027099906],[-71.635582,41.70033399906],[-71.63559,41.70039699906],[-71.63559,41.70047299906],[-71.635576,41.70051199906],[-71.635566,41.70053699906],[-71.635532,41.70060699906],[-71.635496,41.70066599906],[-71.635454,41.70072999906],[-71.635403,41.70079999906],[-71.635347,41.70089799906],[-71.635297,41.70103099906],[-71.635291,41.70105699906],[-71.635264,41.70112999906],[-71.635231,41.70116999906],[-71.635239,41.70125599906],[-71.635239,41.70139999906],[-71.635216,41.70163899906],[-71.635193,41.70189599906],[-71.635162,41.70216299906],[-71.63514,41.70239399906],[-71.635132,41.70248299906],[-71.635703,41.70258699906],[-71.635948,41.70263099906],[-71.636772,41.70279199906],[-71.637886,41.70302299906],[-71.638535,41.70316599906],[-71.639046,41.70327099906],[-71.639282,41.70332899906],[-71.639488,41.70339599906],[-71.639671,41.70346399906],[-71.639984,41.70359699906],[-71.640083,41.70365299906],[-71.640175,41.70370899906],[-71.640267,41.70376999906],[-71.640434,41.70387399906],[-71.640518,41.70393599906],[-71.640602,41.70400999906],[-71.640678,41.70408899906],[-71.641044,41.70443199906],[-71.642052,41.70536799906],[-71.642454,41.70575999906],[-71.642937,41.70621699906],[-71.643206,41.70647399906],[-71.643814,41.70705199906],[-71.644363,41.70756199906],[-71.644648,41.70782299906],[-71.644897,41.70804999906],[-71.645378,41.70850199906],[-71.645828,41.70892899906],[-71.646103,41.70914799906],[-71.646317,41.70929099906],[-71.646469,41.70940899906],[-71.646645,41.70949499906],[-71.646759,41.70955599906],[-71.646919,41.70962899906],[-71.64714,41.70972699906],[-71.647522,41.70990299906],[-71.647904,41.71007399906],[-71.648331,41.71026299906],[-71.648651,41.71040399906],[-71.648933,41.71050999906],[-71.649116,41.71057299906],[-71.6493,41.71063199906],[-71.649483,41.71067299906],[-71.649704,41.71072599906],[-71.649879,41.71075799906],[-71.650093,41.71079399906],[-71.650276,41.71081199906],[-71.650261,41.71099299906],[-71.650261,41.71107399906],[-71.650276,41.71114099906],[-71.650306,41.71122599906],[-71.650383,41.71132699906],[-71.650536,41.71153599906],[-71.650642,41.71167299906],[-71.650673,41.71170399906],[-71.650726,41.71176499906],[-71.650818,41.71196599906],[-71.650955,41.71220999906],[-71.651031,41.71237099906],[-71.651154,41.71256599906],[-71.651344,41.71287199906],[-71.651367,41.71290299906],[-71.651604,41.71320399906],[-71.651675,41.71329599906],[-71.65184,41.71350899906],[-71.651894,41.71358499906],[-71.652023,41.71374399906],[-71.652084,41.71384599906],[-71.652101,41.71388499906],[-71.652191,41.71408699906],[-71.652216,41.71418099906],[-71.652283,41.71443599906],[-71.652283,41.71445399906],[-71.652293,41.71449299906],[-71.652359,41.71473099906],[-71.652435,41.71504899906],[-71.652527,41.71546599906],[-71.652634,41.71588699906],[-71.652717,41.71615899906],[-71.652779,41.71645999906],[-71.652847,41.71672399906],[-71.652908,41.71691599906],[-71.652924,41.71702399906],[-71.652908,41.71713199906],[-71.652901,41.71723599906],[-71.652893,41.71737599906],[-71.652886,41.71753299906],[-71.652885,41.71766799906],[-71.652962,41.71788699906],[-71.653053,41.71811499906],[-71.653107,41.71828899906],[-71.653145,41.71845499906],[-71.65319,41.71856199906],[-71.653213,41.71868299906],[-71.653572,41.71879599906],[-71.654007,41.71888999906],[-71.654518,41.71900899906],[-71.655212,41.71919999906],[-71.655052,41.71927099906],[-71.654762,41.71943999906],[-71.654167,41.71982699906],[-71.653572,41.72030499906],[-71.653259,41.72050999906],[-71.652992,41.72068799906],[-71.652084,41.72137899906],[-71.65197,41.72147199906],[-71.651588,41.72178699906],[-71.651199,41.72214299906],[-71.651009,41.72231399906],[-71.650726,41.72261799906],[-71.650635,41.72271899906],[-71.650551,41.72279299906],[-71.650406,41.72287299906],[-71.650246,41.72292599906],[-71.650032,41.72299399906],[-71.649863,41.72306999906],[-71.649643,41.72316899906],[-71.649307,41.72334399906],[-71.648895,41.72353299906],[-71.648491,41.72375899906],[-71.648125,41.72393399906],[-71.64788,41.72409299906],[-71.647644,41.72420599906],[-71.647057,41.72459299906],[-71.646759,41.72472199906],[-71.646652,41.72478299906],[-71.645973,41.72512699906],[-71.645554,41.72534899906],[-71.645172,41.72560099906],[-71.645088,41.72562499906],[-71.644966,41.72565499906],[-71.644768,41.72565499906],[-71.644493,41.72565699906],[-71.644119,41.72565599906],[-71.6437,41.72565199906],[-71.643502,41.72564699906],[-71.643509,41.72572899906],[-71.643562,41.72577699906],[-71.6436,41.72585299906],[-71.643623,41.72591099906],[-71.643654,41.72596399906],[-71.643685,41.72602199906],[-71.6437,41.72610299906],[-71.643707,41.72616099906],[-71.643723,41.72622399906],[-71.643738,41.72629099906],[-71.643738,41.72634499906],[-71.643753,41.72641199906],[-71.643814,41.72649199906],[-71.643837,41.72656299906],[-71.643875,41.72662599906],[-71.643921,41.72666999906],[-71.643959,41.72673199906],[-71.643959,41.72678599906],[-71.643966,41.72683999906],[-71.643951,41.72685799906],[-71.643974,41.72692899906],[-71.643967,41.72698799906],[-71.643959,41.72704199906],[-71.643959,41.72717299906],[-71.643982,41.72723499906],[-71.644005,41.72728899906],[-71.64402,41.72734299906],[-71.644028,41.72740999906],[-71.64402,41.72746899906],[-71.64402,41.72752299906],[-71.644012,41.72759099906],[-71.644058,41.72763899906],[-71.644155,41.72772099906],[-71.644255,41.72779999906],[-71.644503,41.72779699906],[-71.644913,41.72778899906],[-71.645143,41.72778499906],[-71.64608,41.72776899906],[-71.647336,41.72774799906],[-71.648881,41.72767499906],[-71.657194,41.72758199906],[-71.657684,41.72757699906],[-71.662207,41.72749799906],[-71.662584,41.72749099906],[-71.663048,41.72748399906],[-71.665991,41.72743299906],[-71.666049,41.72743199906],[-71.666094,41.72743199906],[-71.667794,41.72745999906],[-71.668434,41.72746999906],[-71.669494,41.72737399906],[-71.6717,41.72733099906],[-71.671956,41.72732599906],[-71.672553,41.72731499906],[-71.673904,41.72729099906],[-71.6782,41.72719799906],[-71.679701,41.72716399906],[-71.68138,41.72712999906],[-71.684064,41.72706799906],[-71.684517,41.72705699906],[-71.686674,41.72700799906],[-71.696528,41.72678099906],[-71.698209,41.72674199906],[-71.700584,41.72669399906],[-71.700586,41.72643299906],[-71.700615,41.72141199906],[-71.700638,41.71676699906],[-71.700638,41.71483999906]]]}}"}, +{"type": "blockgroup", "typeId": 207031, "areaId": 29197, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.645892,41.71469999906],[-71.64569,41.71417499906],[-71.645257,41.71386999906],[-71.643468,41.71279499906],[-71.640321,41.71015099906],[-71.639222,41.70974799906],[-71.637461,41.70933799906],[-71.635921,41.70919299906],[-71.634479,41.70891299906],[-71.633807,41.70860599906],[-71.633201,41.70813299906],[-71.632502,41.70740499906],[-71.631581,41.70650399906],[-71.630576,41.70604499906],[-71.629563,41.70547399906],[-71.629393,41.70527299906],[-71.629295,41.70484399906],[-71.628792,41.70401899906],[-71.62875,41.70397799906],[-71.628662,41.70388899906],[-71.628522,41.70374899906],[-71.62847,41.70363199906],[-71.628391,41.70365199906],[-71.628235,41.70368999906],[-71.627685,41.70381999906],[-71.627045,41.70396999906],[-71.626778,41.70402999906],[-71.626549,41.70407999906],[-71.626343,41.70412099906],[-71.626175,41.70415599906],[-71.625984,41.70418799906],[-71.625923,41.70419399906],[-71.625687,41.70422099906],[-71.625526,41.70424299906],[-71.625305,41.70426599906],[-71.625038,41.70429499906],[-71.624809,41.70431399906],[-71.624443,41.70433999906],[-71.623696,41.70440699906],[-71.623161,41.70443699906],[-71.622643,41.70445799906],[-71.622581,41.70445399906],[-71.622345,41.70445499906],[-71.621986,41.70445499906],[-71.621872,41.70445699906],[-71.621544,41.70445599906],[-71.621063,41.70446199906],[-71.620979,41.70445999906],[-71.620743,41.70446899906],[-71.620496,41.70448399906],[-71.620292,41.70449299906],[-71.620041,41.70451199906],[-71.619599,41.70455899906],[-71.61937,41.70458199906],[-71.618935,41.70462799906],[-71.618622,41.70467099906],[-71.618088,41.70472799906],[-71.617851,41.70474199906],[-71.617684,41.70475099906],[-71.617233,41.70476099906],[-71.61689,41.70475499906],[-71.616737,41.70474999906],[-71.616493,41.70473699906],[-71.616173,41.70472199906],[-71.615722,41.70468699906],[-71.614784,41.70462799906],[-71.614258,41.70458999906],[-71.61367,41.70455399906],[-71.613373,41.70453799906],[-71.613045,41.70451399906],[-71.612419,41.70446099906],[-71.612243,41.70442899906],[-71.611771,41.70433099906],[-71.611496,41.70424799906],[-71.611321,41.70418399906],[-71.611076,41.70409999906],[-71.610558,41.70392699906],[-71.610092,41.70376199906],[-71.609726,41.70363499906],[-71.609436,41.70354699906],[-71.6092,41.70348899906],[-71.609169,41.70348499906],[-71.608909,41.70343699906],[-71.608688,41.70341099906],[-71.608544,41.70339599906],[-71.608376,41.70338599906],[-71.608238,41.70338999906],[-71.608131,41.70338699906],[-71.607964,41.70339099906],[-71.607803,41.70339899906],[-71.607659,41.70342099906],[-71.607491,41.70343399906],[-71.607197,41.70348499906],[-71.607033,41.70351599906],[-71.606743,41.70357699906],[-71.606514,41.70362699906],[-71.606262,41.70368699906],[-71.606071,41.70371799906],[-71.606033,41.70372799906],[-71.605835,41.70376399906],[-71.605675,41.70378999906],[-71.605538,41.70380199906],[-71.605431,41.70380399906],[-71.605293,41.70381199906],[-71.605049,41.70381799906],[-71.60495,41.70381099906],[-71.604767,41.70380199906],[-71.604637,41.70379099906],[-71.604332,41.70374399906],[-71.604133,41.70369899906],[-71.603798,41.70363399906],[-71.603462,41.70356499906],[-71.603165,41.70349999906],[-71.602844,41.70343099906],[-71.602783,41.70341899906],[-71.602478,41.70335399906],[-71.602219,41.70330099906],[-71.602028,41.70327399906],[-71.601784,41.70323399906],[-71.601562,41.70322099906],[-71.601379,41.70321599906],[-71.601059,41.70322399906],[-71.600815,41.70323799906],[-71.600586,41.70325699906],[-71.600342,41.70327999906],[-71.600121,41.70329899906],[-71.599907,41.70331299906],[-71.59919,41.70337799906],[-71.598869,41.70339899906],[-71.598625,41.70340899906],[-71.598465,41.70340799906],[-71.598259,41.70340399906],[-71.598037,41.70338699906],[-71.597862,41.70337199906],[-71.597679,41.70334999906],[-71.597504,41.70331799906],[-71.597336,41.70328999906],[-71.597163,41.70324899906],[-71.597145,41.70324499906],[-71.597008,41.70320699906],[-71.596886,41.70316899906],[-71.59642,41.70302699906],[-71.595825,41.70283299906],[-71.595696,41.70279599906],[-71.594856,41.70252199906],[-71.594002,41.70225299906],[-71.593739,41.70216899906],[-71.593481,41.70208099906],[-71.593155,41.70197499906],[-71.593102,41.70196299906],[-71.592171,41.70166799906],[-71.591416,41.70143299906],[-71.591064,41.70131999906],[-71.590996,41.70129899906],[-71.590637,41.70118499906],[-71.590187,41.70105599906],[-71.589828,41.70096899906],[-71.589739,41.70094999906],[-71.589493,41.70089599906],[-71.589241,41.70086099906],[-71.588882,41.70080599906],[-71.588684,41.70077899906],[-71.588325,41.70075099906],[-71.587951,41.70073199906],[-71.587525,41.70070599906],[-71.587097,41.70068799906],[-71.586571,41.70066399906],[-71.585938,41.70062899906],[-71.585247,41.70058899906],[-71.584953,41.70056099906],[-71.584702,41.70052199906],[-71.584495,41.70047699906],[-71.584297,41.70043599906],[-71.584099,41.70037799906],[-71.583885,41.70030999906],[-71.583519,41.70016099906],[-71.582596,41.69977199906],[-71.582329,41.69965199906],[-71.582227,41.69977099906],[-71.582159,41.69984699906],[-71.582006,41.69989199906],[-71.58175,41.69988799906],[-71.581624,41.69989299906],[-71.581442,41.69989499906],[-71.580964,41.69988599906],[-71.580524,41.69985999906],[-71.58033,41.69979099906],[-71.580177,41.69983499906],[-71.579986,41.69991199906],[-71.579788,41.69999699906],[-71.579552,41.70013799906],[-71.5793,41.70030099906],[-71.579109,41.70046699906],[-71.578957,41.70062799906],[-71.57885,41.70078399906],[-71.578751,41.70096199906],[-71.578674,41.70107599906],[-71.578583,41.70118199906],[-71.578407,41.70127099906],[-71.57824,41.70131099906],[-71.577995,41.70134299906],[-71.577683,41.70141299906],[-71.577446,41.70151299906],[-71.577309,41.70157899906],[-71.577133,41.70169099906],[-71.577087,41.70175099906],[-71.577042,41.70181099906],[-71.577003,41.70198699906],[-71.57698,41.70214099906],[-71.576973,41.70234299906],[-71.576985,41.70247599906],[-71.576996,41.70259499906],[-71.577019,41.70288699906],[-71.57704,41.70317099906],[-71.577041,41.70319699906],[-71.577042,41.70350799906],[-71.577057,41.70382799906],[-71.577057,41.70406199906],[-71.577064,41.70430899906],[-71.577049,41.70458899906],[-71.576996,41.70482399906],[-71.57695,41.70502299906],[-71.576889,41.70522299906],[-71.576813,41.70547699906],[-71.576782,41.70552899906],[-71.576744,41.70559099906],[-71.576645,41.70581799906],[-71.57653,41.70604599906],[-71.576431,41.70625499906],[-71.576263,41.70643899906],[-71.576103,41.70664499906],[-71.575989,41.70682799906],[-71.575844,41.70718699906],[-71.575752,41.70745899906],[-71.575745,41.70767999906],[-71.575767,41.70794099906],[-71.57576,41.70804399906],[-71.575752,41.70821599906],[-71.57571,41.70839099906],[-71.575691,41.70847399906],[-71.575592,41.70881399906],[-71.575531,41.70909399906],[-71.575485,41.70912699906],[-71.575401,41.70918299906],[-71.575294,41.70928399906],[-71.575043,41.70940199906],[-71.574753,41.70956199906],[-71.574387,41.70973199906],[-71.574082,41.70990999906],[-71.573815,41.71014599906],[-71.573509,41.71037799906],[-71.573441,41.71077999906],[-71.573403,41.71107799906],[-71.573357,41.71131299906],[-71.573288,41.71167499906],[-71.573258,41.71174799906],[-71.57312,41.71209299906],[-71.57296,41.71234499906],[-71.572769,41.71260999906],[-71.572548,41.71288499906],[-71.572365,41.71313699906],[-71.572281,41.71333699906],[-71.572205,41.71370799906],[-71.57206,41.71435999906],[-71.572022,41.71453599906],[-71.571991,41.71465799906],[-71.571915,41.71498399906],[-71.571838,41.71534199906],[-71.571754,41.71565399906],[-71.571678,41.71602099906],[-71.57164,41.71622399906],[-71.571617,41.71643599906],[-71.571617,41.71693599906],[-71.571594,41.71775199906],[-71.571602,41.71830499906],[-71.571594,41.71881499906],[-71.571594,41.71885499906],[-71.57161,41.71997999906],[-71.571617,41.72023199906],[-71.571617,41.72048499906],[-71.571648,41.72107799906],[-71.57165,41.72119899906],[-71.571655,41.72155499906],[-71.571655,41.72177599906],[-71.571716,41.72190499906],[-71.571838,41.72196099906],[-71.572075,41.72198299906],[-71.572411,41.72198399906],[-71.572899,41.72197299906],[-71.573364,41.72198099906],[-71.573769,41.72201299906],[-71.574051,41.72211399906],[-71.57412,41.72218499906],[-71.574219,41.72229999906],[-71.574326,41.72252699906],[-71.574493,41.72294199906],[-71.574615,41.72328099906],[-71.574745,41.72363899906],[-71.574898,41.72395999906],[-71.574952,41.72406699906],[-71.575004,41.72417299906],[-71.575057,41.72442899906],[-71.575072,41.72465399906],[-71.575072,41.72501799906],[-71.57508,41.72534199906],[-71.575118,41.72557099906],[-71.575225,41.72584799906],[-71.575377,41.72626399906],[-71.575507,41.72663999906],[-71.575661,41.72701299906],[-71.575858,41.72756799906],[-71.576011,41.72793099906],[-71.576163,41.72828299906],[-71.57634,41.72861699906],[-71.576408,41.72886299906],[-71.576523,41.72930599906],[-71.576525,41.72933999906],[-71.579879,41.72925999906],[-71.580411,41.72924499906],[-71.581093,41.72922999906],[-71.586186,41.72910499906],[-71.591194,41.72898699906],[-71.593784,41.72892599906],[-71.5962,41.72886999906],[-71.597249,41.72884499906],[-71.597407,41.72884299906],[-71.598222,41.72882199906],[-71.598609,41.72881299906],[-71.600442,41.72876999906],[-71.602864,41.72871299906],[-71.607275,41.72861299906],[-71.611739,41.72851599906],[-71.612292,41.72850299906],[-71.612957,41.72848899906],[-71.613886,41.72846899906],[-71.617553,41.72838799906],[-71.618142,41.72837499906],[-71.618397,41.72836999906],[-71.624204,41.72823799906],[-71.624595,41.72822899906],[-71.62478,41.72822399906],[-71.624994,41.72821899906],[-71.626353,41.72818599906],[-71.627997,41.72814899906],[-71.628331,41.72814099906],[-71.631726,41.72806299906],[-71.633306,41.72802599906],[-71.633642,41.72801899906],[-71.633828,41.72801399906],[-71.636033,41.72796299906],[-71.637346,41.72793299906],[-71.638485,41.72790599906],[-71.640346,41.72786399906],[-71.641268,41.72784999906],[-71.641328,41.72784999906],[-71.641452,41.72784699906],[-71.644091,41.72780299906],[-71.644255,41.72779999906],[-71.644155,41.72772099906],[-71.644058,41.72763899906],[-71.644012,41.72759099906],[-71.64402,41.72752299906],[-71.64402,41.72746899906],[-71.644028,41.72740999906],[-71.64402,41.72734299906],[-71.644005,41.72728899906],[-71.643982,41.72723499906],[-71.643959,41.72717299906],[-71.643959,41.72704199906],[-71.643967,41.72698799906],[-71.643974,41.72692899906],[-71.643951,41.72685799906],[-71.643966,41.72683999906],[-71.643959,41.72678599906],[-71.643959,41.72673199906],[-71.643921,41.72666999906],[-71.643875,41.72662599906],[-71.643837,41.72656299906],[-71.643814,41.72649199906],[-71.643753,41.72641199906],[-71.643738,41.72634499906],[-71.643738,41.72629099906],[-71.643723,41.72622399906],[-71.643707,41.72616099906],[-71.6437,41.72610299906],[-71.643685,41.72602199906],[-71.643654,41.72596399906],[-71.643623,41.72591099906],[-71.6436,41.72585299906],[-71.643562,41.72577699906],[-71.643509,41.72572899906],[-71.643502,41.72564699906],[-71.643514,41.72562899906],[-71.64354,41.72553199906],[-71.643668,41.72511799906],[-71.643925,41.72428699906],[-71.643973,41.72413199906],[-71.644043,41.72390499906],[-71.644283,41.72335199906],[-71.645006,41.72168599906],[-71.645197,41.72124499906],[-71.645163,41.71896899906],[-71.645149,41.71892799906],[-71.645129,41.71884499906],[-71.645111,41.71877499906],[-71.645111,41.71869899906],[-71.645127,41.71863499906],[-71.645157,41.71858099906],[-71.645203,41.71845399906],[-71.645218,41.71839899906],[-71.645225,41.71834499906],[-71.645249,41.71830399906],[-71.645203,41.71806299906],[-71.645104,41.71783999906],[-71.64511,41.71762599906],[-71.645206,41.71740999906],[-71.64521,41.71712799906],[-71.645114,41.71662299906],[-71.645157,41.71619399906],[-71.645397,41.71582699906],[-71.645697,41.71542599906],[-71.645844,41.71498299906],[-71.645892,41.71469999906]]]}}"}, +{"type": "blockgroup", "typeId": 207032, "areaId": 29198, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.622378,41.66021599906],[-71.622375,41.65972999906],[-71.622371,41.65968799906],[-71.621918,41.65969499906],[-71.617456,41.65977799906],[-71.610888,41.65997599906],[-71.606857,41.66008099906],[-71.602958,41.66019099906],[-71.597647,41.66031999906],[-71.592955,41.66043399906],[-71.589768,41.66051499906],[-71.589493,41.66066099906],[-71.589272,41.66081399906],[-71.589066,41.66105299906],[-71.589005,41.66118099906],[-71.588875,41.66141299906],[-71.588737,41.66176299906],[-71.588737,41.66199699906],[-71.588753,41.66215399906],[-71.588661,41.66242699906],[-71.588524,41.66256499906],[-71.588402,41.66275699906],[-71.588303,41.66298399906],[-71.588249,41.66317899906],[-71.588158,41.66334299906],[-71.588135,41.66337099906],[-71.588082,41.66340299906],[-71.587959,41.66346899906],[-71.587845,41.66353499906],[-71.587791,41.66354999906],[-71.587669,41.66359699906],[-71.587639,41.66360299906],[-71.587624,41.66362499906],[-71.587486,41.66375899906],[-71.587379,41.66384699906],[-71.587257,41.66395799906],[-71.587158,41.66402299906],[-71.587067,41.66410599906],[-71.586716,41.66423099906],[-71.586677,41.66423699906],[-71.586487,41.66433999906],[-71.586258,41.66452099906],[-71.586059,41.66472799906],[-71.585884,41.66498399906],[-71.585716,41.66516299906],[-71.585625,41.66525099906],[-71.585503,41.66535699906],[-71.585274,41.66550699906],[-71.58506,41.66568699906],[-71.584839,41.66583599906],[-71.584709,41.66598299906],[-71.584534,41.66617599906],[-71.58432,41.66631199906],[-71.584168,41.66650399906],[-71.584076,41.66663699906],[-71.584045,41.66674999906],[-71.583977,41.66681499906],[-71.583786,41.66693099906],[-71.583618,41.66701599906],[-71.583481,41.66703699906],[-71.583397,41.66721899906],[-71.583267,41.66728099906],[-71.583092,41.66739299906],[-71.582916,41.66756799906],[-71.58268,41.66775299906],[-71.582657,41.66777199906],[-71.582565,41.66778699906],[-71.582466,41.66780299906],[-71.582306,41.66793699906],[-71.582253,41.66797499906],[-71.582199,41.66806599906],[-71.582214,41.66811999906],[-71.582237,41.66819599906],[-71.582374,41.66834599906],[-71.58239,41.66866499906],[-71.582344,41.66880599906],[-71.582344,41.66905799906],[-71.582337,41.66910799906],[-71.582237,41.66924499906],[-71.582214,41.66946099906],[-71.582214,41.66963699906],[-71.582245,41.66982099906],[-71.582405,41.66998399906],[-71.582367,41.67014299906],[-71.582367,41.67027799906],[-71.582459,41.67030299906],[-71.582718,41.67027899906],[-71.582932,41.67034999906],[-71.582977,41.67040799906],[-71.582985,41.67046199906],[-71.582957,41.67050399906],[-71.582866,41.67053299906],[-71.582771,41.67059599906],[-71.582728,41.67067599906],[-71.582757,41.67076399906],[-71.582755,41.67084099906],[-71.582728,41.67090199906],[-71.582684,41.67095999906],[-71.582632,41.67105699906],[-71.582606,41.67123899906],[-71.582622,41.67152799906],[-71.582647,41.67164199906],[-71.582773,41.67190499906],[-71.582763,41.67212199906],[-71.582536,41.67230299906],[-71.582514,41.67238599906],[-71.582705,41.67270099906],[-71.582724,41.67274999906],[-71.582614,41.67284799906],[-71.582622,41.67297399906],[-71.582422,41.67312699906],[-71.582536,41.67354899906],[-71.582533,41.67364499906],[-71.582465,41.67407199906],[-71.582609,41.67421599906],[-71.582316,41.67529999906],[-71.582363,41.67614099906],[-71.582476,41.67632199906],[-71.582364,41.67697499906],[-71.581814,41.67763099906],[-71.581735,41.67767899906],[-71.581212,41.67800599906],[-71.580798,41.67862199906],[-71.580731,41.67884499906],[-71.580803,41.67889099906],[-71.580783,41.67901799906],[-71.581093,41.67901099906],[-71.581879,41.67898899906],[-71.582153,41.67897799906],[-71.583076,41.67894399906],[-71.583786,41.67891899906],[-71.584068,41.67889899906],[-71.584366,41.67887399906],[-71.584824,41.67883699906],[-71.585297,41.67880399906],[-71.585655,41.67877799906],[-71.585991,41.67874699906],[-71.586227,41.67871499906],[-71.586258,41.67870999906],[-71.586655,41.67863799906],[-71.586991,41.67855799906],[-71.587189,41.67849999906],[-71.587265,41.67847999906],[-71.587509,41.67838499906],[-71.587715,41.67828999906],[-71.587975,41.67816699906],[-71.58815,41.67805899906],[-71.588425,41.67788199906],[-71.588455,41.67785899906],[-71.588806,41.67763499906],[-71.589615,41.67709399906],[-71.589793,41.67698199906],[-71.589981,41.67686499906],[-71.590469,41.67653499906],[-71.590919,41.67624499906],[-71.591377,41.67595599906],[-71.591759,41.67572699906],[-71.592201,41.67545099906],[-71.592591,41.67521699906],[-71.592697,41.67514699906],[-71.59274,41.67511999906],[-71.593387,41.67472299906],[-71.594642,41.67394099906],[-71.595955,41.67308799906],[-71.596853,41.67245299906],[-71.5979,41.67171499906],[-71.600029,41.67008199906],[-71.600296,41.67000399906],[-71.600533,41.66992199906],[-71.600716,41.66987299906],[-71.6008,41.66984799906],[-71.601021,41.66978899906],[-71.603386,41.66922699906],[-71.604469,41.66896399906],[-71.60466,41.66891899906],[-71.604951,41.66884599906],[-71.604855,41.66892599906],[-71.604835,41.66895999906],[-71.604821,41.66901599906],[-71.604814,41.66908899906],[-71.60482,41.66924799906],[-71.604881,41.66947199906],[-71.60498,41.66994299906],[-71.605034,41.67021199906],[-71.605087,41.67050799906],[-71.605095,41.67055699906],[-71.605133,41.67076799906],[-71.605194,41.67098299906],[-71.605248,41.67118399906],[-71.605309,41.67133099906],[-71.605369,41.67143799906],[-71.605446,41.67155299906],[-71.6055,41.67162399906],[-71.605538,41.67167299906],[-71.605652,41.67178699906],[-71.60569,41.67182399906],[-71.605789,41.67190999906],[-71.60598,41.67205899906],[-71.606262,41.67227299906],[-71.606674,41.67257899906],[-71.606995,41.67279299906],[-71.607239,41.67290899906],[-71.607552,41.67303199906],[-71.607857,41.67310199906],[-71.607889,41.67310499906],[-71.607994,41.67312899906],[-71.607916,41.67298099906],[-71.60749,41.67216299906],[-71.607795,41.67154899906],[-71.608115,41.67113699906],[-71.608269,41.67088199906],[-71.608431,41.67074799906],[-71.609715,41.67099999906],[-71.610766,41.67098299906],[-71.611672,41.67074799906],[-71.61194,41.67067799906],[-71.612215,41.67057899906],[-71.613657,41.67006799906],[-71.613963,41.66993499906],[-71.615125,41.66942999906],[-71.615927,41.66870699906],[-71.617561,41.66629799906],[-71.618361,41.66574599906],[-71.619241,41.66523299906],[-71.619284,41.66520899906],[-71.619798,41.66490399906],[-71.620417,41.66454499906],[-71.620502,41.66393399906],[-71.620629,41.66354399906],[-71.620491,41.66288899906],[-71.62141,41.66199699906],[-71.621647,41.66085799906],[-71.622223,41.66038499906],[-71.622378,41.66021599906]]]}}"}, +{"type": "blockgroup", "typeId": 207033, "areaId": 29199, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.62847,41.70363199906],[-71.628375,41.70341999906],[-71.628317,41.70328999906],[-71.628091,41.70305399906],[-71.627767,41.70265699906],[-71.627479,41.70251099906],[-71.627157,41.70241199906],[-71.626911,41.70247199906],[-71.626398,41.70248399906],[-71.626292,41.70247699906],[-71.626213,41.70247199906],[-71.626152,41.70246599906],[-71.625449,41.70259599906],[-71.624991,41.70268799906],[-71.624796,41.70276099906],[-71.624263,41.70271799906],[-71.624121,41.70268999906],[-71.623795,41.70248399906],[-71.623222,41.70190699906],[-71.622178,41.70112099906],[-71.621002,41.70020399906],[-71.618196,41.69827099906],[-71.617353,41.69777999906],[-71.616401,41.69744099906],[-71.615121,41.69703199906],[-71.613801,41.69675999906],[-71.612989,41.69659299906],[-71.61279,41.69657399906],[-71.610584,41.69636799906],[-71.608292,41.69628199906],[-71.607906,41.69611399906],[-71.607666,41.69604399906],[-71.607529,41.69598199906],[-71.607293,41.69587799906],[-71.607297,41.69558499906],[-71.607095,41.69464199906],[-71.607123,41.69327899906],[-71.606999,41.68973199906],[-71.606322,41.68723399906],[-71.605933,41.68649299906],[-71.604981,41.68340999906],[-71.604774,41.68267599906],[-71.60485,41.68222399906],[-71.605029,41.68155399906],[-71.605367,41.68090199906],[-71.605619,41.68041999906],[-71.605742,41.68024399906],[-71.605765,41.68013999906],[-71.605723,41.67970099906],[-71.605659,41.67888099906],[-71.605337,41.67721999906],[-71.605455,41.67680899906],[-71.606107,41.67533699906],[-71.606793,41.67417399906],[-71.607484,41.67362599906],[-71.607624,41.67351299906],[-71.60801,41.67320399906],[-71.607994,41.67312899906],[-71.607889,41.67310499906],[-71.607857,41.67310199906],[-71.607552,41.67303199906],[-71.607239,41.67290899906],[-71.606995,41.67279299906],[-71.606674,41.67257899906],[-71.606262,41.67227299906],[-71.60598,41.67205899906],[-71.605789,41.67190999906],[-71.60569,41.67182399906],[-71.605652,41.67178699906],[-71.605538,41.67167299906],[-71.6055,41.67162399906],[-71.605446,41.67155299906],[-71.605369,41.67143799906],[-71.605309,41.67133099906],[-71.605248,41.67118399906],[-71.605194,41.67098299906],[-71.605133,41.67076799906],[-71.605095,41.67055699906],[-71.605087,41.67050799906],[-71.605034,41.67021199906],[-71.60498,41.66994299906],[-71.604881,41.66947199906],[-71.60482,41.66924799906],[-71.604814,41.66908899906],[-71.604821,41.66901599906],[-71.604835,41.66895999906],[-71.604855,41.66892599906],[-71.604951,41.66884599906],[-71.60466,41.66891899906],[-71.604469,41.66896399906],[-71.603386,41.66922699906],[-71.601021,41.66978899906],[-71.6008,41.66984799906],[-71.600716,41.66987299906],[-71.600533,41.66992199906],[-71.600296,41.67000399906],[-71.600029,41.67008199906],[-71.5979,41.67171499906],[-71.596853,41.67245299906],[-71.595955,41.67308799906],[-71.594642,41.67394099906],[-71.593387,41.67472299906],[-71.59274,41.67511999906],[-71.592697,41.67514699906],[-71.592591,41.67521699906],[-71.592201,41.67545099906],[-71.591759,41.67572699906],[-71.591377,41.67595599906],[-71.590919,41.67624499906],[-71.590469,41.67653499906],[-71.589981,41.67686499906],[-71.589793,41.67698199906],[-71.589615,41.67709399906],[-71.588806,41.67763499906],[-71.588455,41.67785899906],[-71.588425,41.67788199906],[-71.58815,41.67805899906],[-71.587975,41.67816699906],[-71.587715,41.67828999906],[-71.587509,41.67838499906],[-71.587265,41.67847999906],[-71.587189,41.67849999906],[-71.587288,41.67879499906],[-71.587379,41.67912599906],[-71.587417,41.67942199906],[-71.587479,41.67969599906],[-71.587532,41.68007699906],[-71.587585,41.68041999906],[-71.587593,41.68046799906],[-71.587639,41.68077299906],[-71.587692,41.68107299906],[-71.587723,41.68137399906],[-71.587731,41.68160799906],[-71.587753,41.68194099906],[-71.587784,41.68226399906],[-71.587798,41.68244999906],[-71.587809,41.68257999906],[-71.587829,41.68284399906],[-71.58786,41.68311399906],[-71.587868,41.68314099906],[-71.587906,41.68351399906],[-71.587944,41.68382299906],[-71.587944,41.68403499906],[-71.587921,41.68429699906],[-71.587906,41.68437799906],[-71.587906,41.68457199906],[-71.587921,41.68488699906],[-71.587959,41.68543499906],[-71.587959,41.68588999906],[-71.587967,41.68657899906],[-71.58799,41.68708299906],[-71.588005,41.68732999906],[-71.58802,41.68759999906],[-71.58815,41.68773599906],[-71.588341,41.68790799906],[-71.588539,41.68803799906],[-71.588753,41.68819599906],[-71.588974,41.68837499906],[-71.589172,41.68855499906],[-71.589378,41.68876199906],[-71.589584,41.68895999906],[-71.589745,41.68911899906],[-71.589859,41.68925099906],[-71.58992,41.68931799906],[-71.590073,41.68953899906],[-71.590264,41.68978699906],[-71.590462,41.69002599906],[-71.590584,41.69014899906],[-71.590714,41.69024099906],[-71.590858,41.69034099906],[-71.591019,41.69046399906],[-71.591278,41.69062899906],[-71.591522,41.69078599906],[-71.591576,41.69081999906],[-71.591843,41.69100299906],[-71.592087,41.69117799906],[-71.592339,41.69136599906],[-71.592552,41.69156799906],[-71.592796,41.69176099906],[-71.592964,41.69186099906],[-71.593109,41.69195699906],[-71.59372,41.69228099906],[-71.594086,41.69246599906],[-71.594383,41.69260799906],[-71.59462,41.69271499906],[-71.594868,41.69289499906],[-71.594879,41.69290699906],[-71.594948,41.69295999906],[-71.594994,41.69299899906],[-71.595162,41.69316199906],[-71.595283,41.69324899906],[-71.595345,41.69332499906],[-71.595383,41.69339599906],[-71.59539,41.69344999906],[-71.595375,41.69354499906],[-71.595322,41.69362699906],[-71.595306,41.69364399906],[-71.595156,41.69384599906],[-71.595276,41.69389799906],[-71.595146,41.69397699906],[-71.595062,41.69408299906],[-71.594986,41.69418399906],[-71.594969,41.69420899906],[-71.594917,41.69428399906],[-71.594841,41.69438099906],[-71.594757,41.69449499906],[-71.594673,41.69460499906],[-71.594605,41.69471899906],[-71.594528,41.69482899906],[-71.594475,41.69494299906],[-71.594406,41.69504299906],[-71.59436,41.69515299906],[-71.594368,41.69526499906],[-71.594444,41.69534899906],[-71.594559,41.69542699906],[-71.594589,41.69551699906],[-71.594589,41.69564299906],[-71.594574,41.69578299906],[-71.594566,41.69589099906],[-71.594567,41.69601199906],[-71.594574,41.69613799906],[-71.594566,41.69627799906],[-71.594551,41.69641399906],[-71.594528,41.69654499906],[-71.594521,41.69667099906],[-71.594521,41.69696299906],[-71.59452,41.69705799906],[-71.594505,41.69717999906],[-71.594459,41.69723499906],[-71.594345,41.69725599906],[-71.594314,41.69736499906],[-71.594299,41.69747699906],[-71.594292,41.69759899906],[-71.594284,41.69770699906],[-71.594254,41.69782999906],[-71.594246,41.69795099906],[-71.594215,41.69808299906],[-71.5942,41.69819599906],[-71.5942,41.69842099906],[-71.594185,41.69852899906],[-71.594086,41.69852199906],[-71.594063,41.69863099906],[-71.594017,41.69873599906],[-71.593964,41.69884899906],[-71.593941,41.69895399906],[-71.593964,41.69900299906],[-71.593799,41.69913199906],[-71.593672,41.69913199906],[-71.593339,41.69914599906],[-71.592853,41.69914599906],[-71.592554,41.69914099906],[-71.592294,41.69914899906],[-71.59219,41.69917799906],[-71.592113,41.69923999906],[-71.592037,41.69929399906],[-71.592018,41.69933899906],[-71.591972,41.69949299906],[-71.591926,41.69971499906],[-71.591881,41.70002199906],[-71.591812,41.70027599906],[-71.591759,41.70047999906],[-71.591667,41.70085999906],[-71.591576,41.70107799906],[-71.591499,41.70125999906],[-71.591416,41.70143299906],[-71.592171,41.70166799906],[-71.593102,41.70196299906],[-71.593155,41.70197499906],[-71.593481,41.70208099906],[-71.593739,41.70216899906],[-71.594002,41.70225299906],[-71.594856,41.70252199906],[-71.595696,41.70279599906],[-71.595825,41.70283299906],[-71.59642,41.70302699906],[-71.596886,41.70316899906],[-71.597008,41.70320699906],[-71.597145,41.70324499906],[-71.597163,41.70324899906],[-71.597336,41.70328999906],[-71.597504,41.70331799906],[-71.597679,41.70334999906],[-71.597862,41.70337199906],[-71.598037,41.70338699906],[-71.598259,41.70340399906],[-71.598465,41.70340799906],[-71.598625,41.70340899906],[-71.598869,41.70339899906],[-71.59919,41.70337799906],[-71.599907,41.70331299906],[-71.600121,41.70329899906],[-71.600342,41.70327999906],[-71.600586,41.70325699906],[-71.600815,41.70323799906],[-71.601059,41.70322399906],[-71.601379,41.70321599906],[-71.601562,41.70322099906],[-71.601784,41.70323399906],[-71.602028,41.70327399906],[-71.602219,41.70330099906],[-71.602478,41.70335399906],[-71.602783,41.70341899906],[-71.602844,41.70343099906],[-71.603165,41.70349999906],[-71.603462,41.70356499906],[-71.603798,41.70363399906],[-71.604133,41.70369899906],[-71.604332,41.70374399906],[-71.604637,41.70379099906],[-71.604767,41.70380199906],[-71.60495,41.70381099906],[-71.605049,41.70381799906],[-71.605293,41.70381199906],[-71.605431,41.70380399906],[-71.605538,41.70380199906],[-71.605675,41.70378999906],[-71.605835,41.70376399906],[-71.606033,41.70372799906],[-71.606071,41.70371799906],[-71.606262,41.70368699906],[-71.606514,41.70362699906],[-71.606743,41.70357699906],[-71.607033,41.70351599906],[-71.607197,41.70348499906],[-71.607491,41.70343399906],[-71.607659,41.70342099906],[-71.607803,41.70339899906],[-71.607964,41.70339099906],[-71.608131,41.70338699906],[-71.608238,41.70338999906],[-71.608376,41.70338599906],[-71.608544,41.70339599906],[-71.608688,41.70341099906],[-71.608909,41.70343699906],[-71.609169,41.70348499906],[-71.6092,41.70348899906],[-71.609436,41.70354699906],[-71.609726,41.70363499906],[-71.610092,41.70376199906],[-71.610558,41.70392699906],[-71.611076,41.70409999906],[-71.611321,41.70418399906],[-71.611496,41.70424799906],[-71.611771,41.70433099906],[-71.612243,41.70442899906],[-71.612419,41.70446099906],[-71.613045,41.70451399906],[-71.613373,41.70453799906],[-71.61367,41.70455399906],[-71.614258,41.70458999906],[-71.614784,41.70462799906],[-71.615722,41.70468699906],[-71.616173,41.70472199906],[-71.616493,41.70473699906],[-71.616737,41.70474999906],[-71.61689,41.70475499906],[-71.617233,41.70476099906],[-71.617684,41.70475099906],[-71.617851,41.70474199906],[-71.618088,41.70472799906],[-71.618622,41.70467099906],[-71.618935,41.70462799906],[-71.61937,41.70458199906],[-71.619599,41.70455899906],[-71.620041,41.70451199906],[-71.620292,41.70449299906],[-71.620496,41.70448399906],[-71.620743,41.70446899906],[-71.620979,41.70445999906],[-71.621063,41.70446199906],[-71.621544,41.70445599906],[-71.621872,41.70445699906],[-71.621986,41.70445499906],[-71.622345,41.70445499906],[-71.622581,41.70445399906],[-71.622643,41.70445799906],[-71.623161,41.70443699906],[-71.623696,41.70440699906],[-71.624443,41.70433999906],[-71.624809,41.70431399906],[-71.625038,41.70429499906],[-71.625305,41.70426599906],[-71.625526,41.70424299906],[-71.625687,41.70422099906],[-71.625923,41.70419399906],[-71.625984,41.70418799906],[-71.626175,41.70415599906],[-71.626343,41.70412099906],[-71.626549,41.70407999906],[-71.626778,41.70402999906],[-71.627045,41.70396999906],[-71.627685,41.70381999906],[-71.628235,41.70368999906],[-71.628391,41.70365199906],[-71.62847,41.70363199906]]]}}"}, +{"type": "blockgroup", "typeId": 208001, "areaId": 29200, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.606674,41.64923999906],[-71.606323,41.64918899906],[-71.606018,41.64917399906],[-71.605636,41.64917299906],[-71.605217,41.64917799906],[-71.604881,41.64916799906],[-71.604584,41.64913899906],[-71.604294,41.64910499906],[-71.603897,41.64904599906],[-71.603477,41.64897899906],[-71.602875,41.64889399906],[-71.602753,41.64887799906],[-71.60215,41.64878399906],[-71.601433,41.64866999906],[-71.600792,41.64857599906],[-71.60009,41.64846599906],[-71.599678,41.64840799906],[-71.599266,41.64834499906],[-71.598968,41.64829799906],[-71.598556,41.64822999906],[-71.598251,41.64818799906],[-71.597496,41.64806999906],[-71.597015,41.64799999906],[-71.595665,41.64778699906],[-71.594902,41.64767799906],[-71.594231,41.64758099906],[-71.593452,41.64746299906],[-71.592301,41.64729099906],[-71.591476,41.64716499906],[-71.590553,41.64703299906],[-71.589821,41.64690999906],[-71.589035,41.64678799906],[-71.588058,41.64665299906],[-71.587639,41.64661199906],[-71.587227,41.64658599906],[-71.586479,41.64657599906],[-71.585983,41.64659099906],[-71.58551,41.64662399906],[-71.585472,41.64662999906],[-71.58503,41.64667099906],[-71.584557,41.64674899906],[-71.58403,41.64683799906],[-71.583969,41.64685299906],[-71.583321,41.64700199906],[-71.58297,41.64707799906],[-71.582092,41.64729599906],[-71.581398,41.64745499906],[-71.580894,41.64757899906],[-71.580315,41.64771399906],[-71.579605,41.64787399906],[-71.578232,41.64820199906],[-71.578056,41.64824199906],[-71.577492,41.64837599906],[-71.576958,41.64850099906],[-71.576538,41.64859599906],[-71.575966,41.64873399906],[-71.575462,41.64885799906],[-71.575306,41.64889299906],[-71.574959,41.64896899906],[-71.574402,41.64910699906],[-71.574036,41.64920099906],[-71.573585,41.64930099906],[-71.573151,41.64938699906],[-71.572785,41.64947699906],[-71.572311,41.64959499906],[-71.571793,41.64971499906],[-71.57132,41.64982899906],[-71.570816,41.64997599906],[-71.570412,41.65011499906],[-71.570053,41.65027199906],[-71.569184,41.65067399906],[-71.568771,41.65085899906],[-71.568268,41.65108599906],[-71.56768,41.65134299906],[-71.567162,41.65158399906],[-71.566505,41.65189599906],[-71.56617,41.65204299906],[-71.566017,41.65210499906],[-71.56546,41.65236499906],[-71.565048,41.65255899906],[-71.564067,41.65299099906],[-71.564049,41.65299999906],[-71.5634,41.65330199906],[-71.562881,41.65353899906],[-71.562561,41.65368099906],[-71.56221,41.65384199906],[-71.561844,41.65400399906],[-71.561432,41.65416099906],[-71.56115,41.65424899906],[-71.561096,41.65426399906],[-71.560799,41.65433799906],[-71.560562,41.65437899906],[-71.560219,41.65444499906],[-71.559692,41.65448799906],[-71.559436,41.65450599906],[-71.559212,41.65452199906],[-71.559158,41.65451799906],[-71.559044,41.65451599906],[-71.55883,41.65449799906],[-71.558621,41.65448099906],[-71.558388,41.65444499906],[-71.558324,41.65443599906],[-71.557892,41.65437499906],[-71.55748,41.65429899906],[-71.557327,41.65427499906],[-71.557098,41.65423999906],[-71.556641,41.65415999906],[-71.556328,41.65410799906],[-71.555924,41.65403199906],[-71.555656,41.65398399906],[-71.555321,41.65394599906],[-71.555054,41.65394299906],[-71.554917,41.65394199906],[-71.554672,41.65397399906],[-71.554296,41.65401399906],[-71.554245,41.65401999906],[-71.553894,41.65405399906],[-71.553474,41.65410899906],[-71.552506,41.65422899906],[-71.552002,41.65429499906],[-71.551605,41.65433899906],[-71.551232,41.65438799906],[-71.550751,41.65444399906],[-71.550728,41.65431399906],[-71.550697,41.65416099906],[-71.550652,41.65386099906],[-71.550636,41.65350099906],[-71.550621,41.65302799906],[-71.550621,41.65262799906],[-71.550636,41.65227599906],[-71.550667,41.65194699906],[-71.550667,41.65170299906],[-71.550652,41.65144699906],[-71.550591,41.65109699906],[-71.550598,41.65073199906],[-71.550606,41.65022799906],[-71.550598,41.64990799906],[-71.55059,41.64969699906],[-71.550575,41.64915699906],[-71.550545,41.64864399906],[-71.550514,41.64825299906],[-71.550514,41.64821699906],[-71.55053,41.64804999906],[-71.550583,41.64773399906],[-71.550583,41.64740899906],[-71.550552,41.64710399906],[-71.550552,41.64685599906],[-71.550553,41.64660399906],[-71.550491,41.64639799906],[-71.550392,41.64631499906],[-71.550186,41.64627399906],[-71.549843,41.64625899906],[-71.549347,41.64629299906],[-71.548752,41.64631099906],[-71.548088,41.64632499906],[-71.547417,41.64633599906],[-71.547142,41.64633699906],[-71.547106,41.64633699906],[-71.546917,41.64633399906],[-71.54673,41.64628299906],[-71.546625,41.64628299906],[-71.546578,41.64645299906],[-71.546648,41.64886799906],[-71.546678,41.64967599906],[-71.546764,41.65190899906],[-71.54678,41.65238999906],[-71.546809,41.65300699906],[-71.546895,41.65453699906],[-71.546961,41.65575099906],[-71.547015,41.65743099906],[-71.547027,41.65844899906],[-71.547033,41.65873799906],[-71.547039,41.65924299906],[-71.547041,41.65938599906],[-71.547048,41.65996699906],[-71.547051,41.66018899906],[-71.547045,41.66039599906],[-71.547052,41.66054499906],[-71.547102,41.66149299906],[-71.547113,41.66185099906],[-71.549389,41.66180399906],[-71.54945,41.66180399906],[-71.54974,41.66178699906],[-71.549829,41.66178699906],[-71.551109,41.66175699906],[-71.551348,41.66175099906],[-71.553731,41.66169899906],[-71.55392,41.66169399906],[-71.554496,41.66167499906],[-71.554876,41.66166299906],[-71.555465,41.66164499906],[-71.556038,41.66163999906],[-71.556243,41.66163999906],[-71.556978,41.66163399906],[-71.557907,41.66161599906],[-71.558438,41.66159899906],[-71.558845,41.66159099906],[-71.558914,41.66158899906],[-71.560783,41.66154899906],[-71.566002,41.66146199906],[-71.567594,41.66140499906],[-71.567596,41.66130099906],[-71.571505,41.66122599906],[-71.571535,41.66130699906],[-71.571794,41.66130199906],[-71.572563,41.66127799906],[-71.572671,41.66127499906],[-71.572951,41.66126599906],[-71.573267,41.66125599906],[-71.573646,41.66124399906],[-71.573771,41.66123999906],[-71.573852,41.66121499906],[-71.576019,41.66114599906],[-71.5773,41.66108999906],[-71.577319,41.66108799906],[-71.577828,41.66105399906],[-71.580672,41.66086199906],[-71.582166,41.66083799906],[-71.582372,41.66083499906],[-71.582443,41.66083399906],[-71.582756,41.66082999906],[-71.583326,41.66082199906],[-71.585579,41.66071299906],[-71.587679,41.66060999906],[-71.589488,41.66052399906],[-71.589768,41.66051499906],[-71.592955,41.66043399906],[-71.597647,41.66031999906],[-71.602958,41.66019099906],[-71.603032,41.65996399906],[-71.603093,41.65977799906],[-71.603104,41.65974499906],[-71.604179,41.65646499906],[-71.604309,41.65607099906],[-71.604401,41.65578899906],[-71.60524,41.65323499906],[-71.60529,41.65308299906],[-71.60556,41.65227799906],[-71.605705,41.65182899906],[-71.605804,41.65149799906],[-71.605958,41.65103299906],[-71.606011,41.65088099906],[-71.606308,41.65002299906],[-71.606384,41.64979099906],[-71.60656,41.64944099906],[-71.606674,41.64923999906]]]}}"}, +{"type": "blockgroup", "typeId": 208002, "areaId": 29201, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.694939,41.65763699906],[-71.694931,41.65725899906],[-71.6949,41.65697199906],[-71.6949,41.65694499906],[-71.694878,41.65672499906],[-71.694855,41.65652199906],[-71.694824,41.65634799906],[-71.694794,41.65619099906],[-71.694756,41.65601599906],[-71.694687,41.65577399906],[-71.694542,41.65524599906],[-71.694283,41.65432499906],[-71.693977,41.65326499906],[-71.693815,41.65266899906],[-71.693741,41.65240099906],[-71.693588,41.65188299906],[-71.69342,41.65124699906],[-71.693245,41.65065199906],[-71.693146,41.65032999906],[-71.692978,41.64974399906],[-71.692932,41.64956499906],[-71.692642,41.64852699906],[-71.692513,41.64806199906],[-71.6922,41.64697099906],[-71.692017,41.64629499906],[-71.691803,41.64554799906],[-71.691658,41.64506099906],[-71.691521,41.64463199906],[-71.691376,41.64424799906],[-71.691208,41.64389099906],[-71.691063,41.64355699906],[-71.690857,41.64316999906],[-71.690514,41.64260599906],[-71.690232,41.64211799906],[-71.689949,41.64163799906],[-71.689552,41.64098999906],[-71.689487,41.64087899906],[-71.68934,41.64063099906],[-71.689247,41.64047399906],[-71.688988,41.64004799906],[-71.688873,41.63986199906],[-71.688705,41.63956399906],[-71.688591,41.63936899906],[-71.68795,41.63830699906],[-71.687653,41.63779199906],[-71.687195,41.63702799906],[-71.686363,41.63562499906],[-71.686134,41.63523799906],[-71.6857,41.63450999906],[-71.685493,41.63414999906],[-71.685371,41.63394999906],[-71.684975,41.63325699906],[-71.684747,41.63286499906],[-71.68457,41.63255899906],[-71.684296,41.63207899906],[-71.684082,41.63170599906],[-71.68396,41.63150199906],[-71.683678,41.63101799906],[-71.683273,41.63031099906],[-71.682686,41.62929399906],[-71.682526,41.62902299906],[-71.682342,41.62872499906],[-71.682182,41.62851299906],[-71.681999,41.62827399906],[-71.681671,41.62788499906],[-71.681503,41.62768199906],[-71.68145,41.62763399906],[-71.681305,41.62748399906],[-71.681244,41.62741799906],[-71.67949,41.62565099906],[-71.679062,41.62520799906],[-71.674316,41.62038799906],[-71.671753,41.61778599906],[-71.671287,41.61731499906],[-71.671082,41.61710899906],[-71.670715,41.61672099906],[-71.67012,41.61612199906],[-71.669441,41.61543099906],[-71.668831,41.61481499906],[-71.668167,41.61414099906],[-71.667572,41.61353399906],[-71.667503,41.61346799906],[-71.667053,41.61300099906],[-71.66658,41.61251199906],[-71.666168,41.61208899906],[-71.666016,41.61193999906],[-71.665581,41.61150399906],[-71.665428,41.61134999906],[-71.664599,41.61050499906],[-71.664414,41.61031499906],[-71.664001,41.60988799906],[-71.663933,41.60982199906],[-71.663345,41.60921899906],[-71.662758,41.60865099906],[-71.662392,41.60827699906],[-71.662071,41.60794699906],[-71.661301,41.60715799906],[-71.661102,41.60701899906],[-71.660972,41.60688199906],[-71.660004,41.60590499906],[-71.659737,41.60563199906],[-71.658989,41.60486999906],[-71.657632,41.60350099906],[-71.657181,41.60303399906],[-71.657227,41.60292099906],[-71.655685,41.60134399906],[-71.653854,41.59949999906],[-71.65361,41.59935199906],[-71.653503,41.59925599906],[-71.653183,41.59896599906],[-71.653091,41.59888699906],[-71.653068,41.59886399906],[-71.653019,41.59882799906],[-71.65159,41.59916299906],[-71.651411,41.59920599906],[-71.651194,41.59925799906],[-71.649535,41.59965299906],[-71.649079,41.59976099906],[-71.648805,41.59983099906],[-71.648212,41.59996799906],[-71.648045,41.60000599906],[-71.647732,41.60007899906],[-71.647516,41.60012899906],[-71.646894,41.60027499906],[-71.646222,41.60043399906],[-71.645242,41.60066399906],[-71.643983,41.60097899906],[-71.643726,41.60098099906],[-71.643603,41.60098299906],[-71.643354,41.60096199906],[-71.642526,41.60095999906],[-71.642279,41.60095999906],[-71.64191,41.60095899906],[-71.641596,41.60095899906],[-71.637813,41.60095099906],[-71.637321,41.60094799906],[-71.636984,41.60094799906],[-71.627476,41.60091499906],[-71.620732,41.60089599906],[-71.620461,41.60089599906],[-71.618256,41.60088999906],[-71.616306,41.60088399906],[-71.613725,41.60087599906],[-71.613553,41.60087599906],[-71.610305,41.60086599906],[-71.607932,41.60085499906],[-71.604941,41.60087499906],[-71.604801,41.60087899906],[-71.604687,41.60088299906],[-71.602638,41.60094599906],[-71.601799,41.60097199906],[-71.596779,41.60112699906],[-71.596034,41.60114899906],[-71.5959,41.60114999906],[-71.59419,41.60116499906],[-71.591374,41.60118799906],[-71.590413,41.60119599906],[-71.583158,41.60125699906],[-71.578016,41.60129899906],[-71.577125,41.60130699906],[-71.574285,41.60135099906],[-71.571753,41.60139099906],[-71.569257,41.60144299906],[-71.569152,41.60144299906],[-71.567392,41.60144799906],[-71.564705,41.60144299906],[-71.563853,41.60146199906],[-71.557869,41.60159499906],[-71.552429,41.60174699906],[-71.551279,41.60177399906],[-71.550504,41.60179599906],[-71.547388,41.60187399906],[-71.546147,41.60189099906],[-71.545013,41.60191599906],[-71.544807,41.60199299906],[-71.545201,41.60946699906],[-71.54532,41.61216899906],[-71.545368,41.61317999906],[-71.54537,41.61324499906],[-71.545403,41.61393899906],[-71.545432,41.61455899906],[-71.545447,41.61492099906],[-71.545567,41.61744599906],[-71.545785,41.62146599906],[-71.545802,41.62176599906],[-71.545813,41.62199999906],[-71.545883,41.62321199906],[-71.545927,41.62397399906],[-71.545931,41.62403999906],[-71.545957,41.62423899906],[-71.545965,41.62434899906],[-71.545979,41.62447599906],[-71.546019,41.62484399906],[-71.546053,41.62516799906],[-71.546092,41.62576099906],[-71.546122,41.62654799906],[-71.546127,41.62666099906],[-71.546144,41.62726199906],[-71.546164,41.62797499906],[-71.546195,41.62931999906],[-71.546199,41.62959499906],[-71.546187,41.63052399906],[-71.546233,41.63163199906],[-71.546257,41.63211899906],[-71.546259,41.63280399906],[-71.546259,41.63297299906],[-71.546258,41.63321799906],[-71.546257,41.63333399906],[-71.54626,41.63384499906],[-71.546262,41.63426399906],[-71.54627,41.63521399906],[-71.54628,41.63539599906],[-71.546306,41.63585399906],[-71.546339,41.63644599906],[-71.546324,41.63664399906],[-71.546309,41.63685399906],[-71.546288,41.63713199906],[-71.546348,41.63767099906],[-71.546351,41.63813499906],[-71.546349,41.63834299906],[-71.546347,41.63865599906],[-71.546344,41.63906299906],[-71.546356,41.63915399906],[-71.546379,41.63931099906],[-71.54641,41.63968499906],[-71.54641,41.63997699906],[-71.546433,41.64047699906],[-71.54641,41.64070199906],[-71.546385,41.64083499906],[-71.546374,41.64099299906],[-71.546364,41.64113599906],[-71.546363,41.64127899906],[-71.546371,41.64144599906],[-71.546395,41.64173899906],[-71.546409,41.64184199906],[-71.546417,41.64208499906],[-71.546442,41.64232599906],[-71.54658,41.64354399906],[-71.5466,41.64373799906],[-71.546623,41.64410199906],[-71.546639,41.64447499906],[-71.546646,41.64483099906],[-71.546662,41.64512799906],[-71.546669,41.64540699906],[-71.546661,41.64568599906],[-71.546638,41.64600599906],[-71.546654,41.64617699906],[-71.546625,41.64628299906],[-71.54673,41.64628299906],[-71.546917,41.64633399906],[-71.547106,41.64633699906],[-71.547142,41.64633699906],[-71.547417,41.64633599906],[-71.548088,41.64632499906],[-71.548752,41.64631099906],[-71.549347,41.64629299906],[-71.549843,41.64625899906],[-71.550186,41.64627399906],[-71.550392,41.64631499906],[-71.550491,41.64639799906],[-71.550553,41.64660399906],[-71.550552,41.64685599906],[-71.550552,41.64710399906],[-71.550583,41.64740899906],[-71.550583,41.64773399906],[-71.55053,41.64804999906],[-71.550514,41.64821699906],[-71.550514,41.64825299906],[-71.550545,41.64864399906],[-71.550575,41.64915699906],[-71.55059,41.64969699906],[-71.550598,41.64990799906],[-71.550606,41.65022799906],[-71.550598,41.65073199906],[-71.550591,41.65109699906],[-71.550652,41.65144699906],[-71.550667,41.65170299906],[-71.550667,41.65194699906],[-71.550636,41.65227599906],[-71.550621,41.65262799906],[-71.550621,41.65302799906],[-71.550636,41.65350099906],[-71.550652,41.65386099906],[-71.550697,41.65416099906],[-71.550728,41.65431399906],[-71.550751,41.65444399906],[-71.551232,41.65438799906],[-71.551605,41.65433899906],[-71.552002,41.65429499906],[-71.552506,41.65422899906],[-71.553474,41.65410899906],[-71.553894,41.65405399906],[-71.554245,41.65401999906],[-71.554296,41.65401399906],[-71.554672,41.65397399906],[-71.554917,41.65394199906],[-71.555054,41.65394299906],[-71.555321,41.65394599906],[-71.555656,41.65398399906],[-71.555924,41.65403199906],[-71.556328,41.65410799906],[-71.556641,41.65415999906],[-71.557098,41.65423999906],[-71.557327,41.65427499906],[-71.55748,41.65429899906],[-71.557892,41.65437499906],[-71.558324,41.65443599906],[-71.558388,41.65444499906],[-71.558621,41.65448099906],[-71.55883,41.65449799906],[-71.559044,41.65451599906],[-71.559158,41.65451799906],[-71.559212,41.65452199906],[-71.559436,41.65450599906],[-71.559692,41.65448799906],[-71.560219,41.65444499906],[-71.560562,41.65437899906],[-71.560799,41.65433799906],[-71.561096,41.65426399906],[-71.56115,41.65424899906],[-71.561432,41.65416099906],[-71.561844,41.65400399906],[-71.56221,41.65384199906],[-71.562561,41.65368099906],[-71.562881,41.65353899906],[-71.5634,41.65330199906],[-71.564049,41.65299999906],[-71.564067,41.65299099906],[-71.565048,41.65255899906],[-71.56546,41.65236499906],[-71.566017,41.65210499906],[-71.56617,41.65204299906],[-71.566505,41.65189599906],[-71.567162,41.65158399906],[-71.56768,41.65134299906],[-71.568268,41.65108599906],[-71.568771,41.65085899906],[-71.569184,41.65067399906],[-71.570053,41.65027199906],[-71.570412,41.65011499906],[-71.570816,41.64997599906],[-71.57132,41.64982899906],[-71.571793,41.64971499906],[-71.572311,41.64959499906],[-71.572785,41.64947699906],[-71.573151,41.64938699906],[-71.573585,41.64930099906],[-71.574036,41.64920099906],[-71.574402,41.64910699906],[-71.574959,41.64896899906],[-71.575306,41.64889299906],[-71.575462,41.64885799906],[-71.575966,41.64873399906],[-71.576538,41.64859599906],[-71.576958,41.64850099906],[-71.577492,41.64837599906],[-71.578056,41.64824199906],[-71.578232,41.64820199906],[-71.579605,41.64787399906],[-71.580315,41.64771399906],[-71.580894,41.64757899906],[-71.581398,41.64745499906],[-71.582092,41.64729599906],[-71.58297,41.64707799906],[-71.583321,41.64700199906],[-71.583969,41.64685299906],[-71.58403,41.64683799906],[-71.584557,41.64674899906],[-71.58503,41.64667099906],[-71.585472,41.64662999906],[-71.58551,41.64662399906],[-71.585983,41.64659099906],[-71.586479,41.64657599906],[-71.587227,41.64658599906],[-71.587639,41.64661199906],[-71.588058,41.64665299906],[-71.589035,41.64678799906],[-71.589821,41.64690999906],[-71.590553,41.64703299906],[-71.591476,41.64716499906],[-71.592301,41.64729099906],[-71.593452,41.64746299906],[-71.594231,41.64758099906],[-71.594902,41.64767799906],[-71.595665,41.64778699906],[-71.597015,41.64799999906],[-71.597496,41.64806999906],[-71.598251,41.64818799906],[-71.598556,41.64822999906],[-71.598968,41.64829799906],[-71.599266,41.64834499906],[-71.599678,41.64840799906],[-71.60009,41.64846599906],[-71.600792,41.64857599906],[-71.601433,41.64866999906],[-71.60215,41.64878399906],[-71.602753,41.64887799906],[-71.602875,41.64889399906],[-71.603477,41.64897899906],[-71.603897,41.64904599906],[-71.604294,41.64910499906],[-71.604584,41.64913899906],[-71.604881,41.64916799906],[-71.605217,41.64917799906],[-71.605636,41.64917299906],[-71.606018,41.64917399906],[-71.606323,41.64918899906],[-71.606674,41.64923999906],[-71.60656,41.64944099906],[-71.606384,41.64979099906],[-71.606308,41.65002299906],[-71.606011,41.65088099906],[-71.605958,41.65103299906],[-71.605804,41.65149799906],[-71.605705,41.65182899906],[-71.60556,41.65227799906],[-71.60529,41.65308299906],[-71.60524,41.65323499906],[-71.604401,41.65578899906],[-71.604309,41.65607099906],[-71.604179,41.65646499906],[-71.603104,41.65974499906],[-71.603093,41.65977799906],[-71.603032,41.65996399906],[-71.602958,41.66019099906],[-71.606857,41.66008099906],[-71.610888,41.65997599906],[-71.617456,41.65977799906],[-71.621918,41.65969499906],[-71.622371,41.65968799906],[-71.622871,41.65968299906],[-71.62823,41.65957899906],[-71.62831,41.65959299906],[-71.628475,41.65962099906],[-71.628673,41.65965699906],[-71.62884,41.65968499906],[-71.62912,41.65968399906],[-71.629478,41.65966699906],[-71.629509,41.65966699906],[-71.629914,41.65966599906],[-71.630486,41.65964899906],[-71.631104,41.65963899906],[-71.631653,41.65962199906],[-71.632324,41.65960699906],[-71.633141,41.65959199906],[-71.634926,41.65955099906],[-71.635536,41.65953299906],[-71.635933,41.65952799906],[-71.636316,41.65951999906],[-71.637032,41.65950299906],[-71.637512,41.65949699906],[-71.638542,41.65948599906],[-71.639008,41.65947099906],[-71.639436,41.65946099906],[-71.639481,41.65945999906],[-71.63974,41.65944499906],[-71.639984,41.65944899906],[-71.640343,41.65943599906],[-71.640838,41.65941999906],[-71.64148,41.65939599906],[-71.641781,41.65938699906],[-71.642052,41.65937899906],[-71.642258,41.65936999906],[-71.642921,41.65933199906],[-71.64309,41.65932799906],[-71.64463,41.65929199906],[-71.645202,41.65926999906],[-71.645676,41.65924999906],[-71.646286,41.65922299906],[-71.64708,41.65922299906],[-71.648151,41.65918099906],[-71.648216,41.65917799906],[-71.649097,41.65913799906],[-71.649539,41.65911799906],[-71.649605,41.65911499906],[-71.650933,41.65906599906],[-71.651573,41.65905599906],[-71.651619,41.65905899906],[-71.65229,41.65904399906],[-71.652847,41.65902199906],[-71.653221,41.65901799906],[-71.653412,41.65901799906],[-71.653869,41.65901199906],[-71.6549,41.65899299906],[-71.655937,41.65896899906],[-71.656502,41.65894199906],[-71.657081,41.65891099906],[-71.657677,41.65890099906],[-71.658195,41.65889799906],[-71.659386,41.65888399906],[-71.66008,41.65886399906],[-71.661035,41.65884999906],[-71.661614,41.65884199906],[-71.661959,41.65882799906],[-71.662255,41.65881699906],[-71.662453,41.65880899906],[-71.662941,41.65879299906],[-71.664795,41.65872299906],[-71.665428,41.65870799906],[-71.665871,41.65868899906],[-71.665909,41.65869299906],[-71.665939,41.65869199906],[-71.66597,41.65869999906],[-71.666008,41.65870799906],[-71.666039,41.65872099906],[-71.666069,41.65873799906],[-71.667094,41.65870699906],[-71.673012,41.65867199906],[-71.673279,41.65862999906],[-71.673515,41.65863799906],[-71.67379,41.65861299906],[-71.67881,41.65863999906],[-71.684921,41.65855599906],[-71.691019,41.65851399906],[-71.694939,41.65842399906],[-71.694939,41.65763699906]]]}}"}, +{"type": "blockgroup", "typeId": 208003, "areaId": 29202, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.789247,41.59684699906],[-71.785882,41.59698199906],[-71.781354,41.59716099906],[-71.777408,41.59732199906],[-71.772647,41.59752399906],[-71.771409,41.59757899906],[-71.764776,41.59786999906],[-71.763108,41.59794399906],[-71.760811,41.59804399906],[-71.750205,41.59836599906],[-71.749826,41.59837499906],[-71.74958,41.59838499906],[-71.74865,41.59841299906],[-71.746456,41.59850999906],[-71.745525,41.59855399906],[-71.745408,41.59855899906],[-71.744672,41.59859399906],[-71.743526,41.59864699906],[-71.74332,41.59865699906],[-71.742428,41.59866799906],[-71.735075,41.59872099906],[-71.734643,41.59871999906],[-71.732201,41.59871799906],[-71.729351,41.59870999906],[-71.728865,41.59870899906],[-71.726869,41.59870299906],[-71.724478,41.59869599906],[-71.724228,41.59869499906],[-71.719828,41.59871099906],[-71.717464,41.59871899906],[-71.71402,41.59875699906],[-71.710527,41.59879599906],[-71.710436,41.59879699906],[-71.709783,41.59880399906],[-71.707187,41.59883199906],[-71.70388,41.59886799906],[-71.703835,41.59886799906],[-71.703409,41.59886899906],[-71.699088,41.59886899906],[-71.69313,41.59886699906],[-71.692908,41.59886799906],[-71.692842,41.59886899906],[-71.690166,41.59883999906],[-71.688444,41.59882199906],[-71.685951,41.59873599906],[-71.683884,41.59873499906],[-71.682079,41.59873399906],[-71.676448,41.59873099906],[-71.674622,41.59872999906],[-71.672127,41.59873099906],[-71.671839,41.59873099906],[-71.670068,41.59871999906],[-71.669415,41.59871099906],[-71.668099,41.59867199906],[-71.666054,41.59861599906],[-71.665003,41.59861599906],[-71.664217,41.59861199906],[-71.663177,41.59868999906],[-71.661475,41.59868999906],[-71.659704,41.59868899906],[-71.659395,41.59869199906],[-71.659074,41.59869399906],[-71.658757,41.59869299906],[-71.658624,41.59869299906],[-71.658387,41.59869199906],[-71.658328,41.59869099906],[-71.657511,41.59869299906],[-71.655686,41.59869699906],[-71.655305,41.59869799906],[-71.654787,41.59869899906],[-71.654634,41.59869899906],[-71.653693,41.59870099906],[-71.65357,41.59870099906],[-71.653173,41.59879599906],[-71.653019,41.59882799906],[-71.653068,41.59886399906],[-71.653091,41.59888699906],[-71.653183,41.59896599906],[-71.653503,41.59925599906],[-71.65361,41.59935199906],[-71.653854,41.59949999906],[-71.655685,41.60134399906],[-71.657227,41.60292099906],[-71.657181,41.60303399906],[-71.657632,41.60350099906],[-71.658989,41.60486999906],[-71.659737,41.60563199906],[-71.660004,41.60590499906],[-71.660972,41.60688199906],[-71.661102,41.60701899906],[-71.661301,41.60715799906],[-71.662071,41.60794699906],[-71.662392,41.60827699906],[-71.662758,41.60865099906],[-71.663345,41.60921899906],[-71.663933,41.60982199906],[-71.664001,41.60988799906],[-71.664414,41.61031499906],[-71.664599,41.61050499906],[-71.665428,41.61134999906],[-71.665581,41.61150399906],[-71.666016,41.61193999906],[-71.666168,41.61208899906],[-71.66658,41.61251199906],[-71.667053,41.61300099906],[-71.667503,41.61346799906],[-71.667572,41.61353399906],[-71.668167,41.61414099906],[-71.668831,41.61481499906],[-71.669441,41.61543099906],[-71.67012,41.61612199906],[-71.670715,41.61672099906],[-71.671082,41.61710899906],[-71.671287,41.61731499906],[-71.671753,41.61778599906],[-71.674316,41.62038799906],[-71.679062,41.62520799906],[-71.67949,41.62565099906],[-71.681244,41.62741799906],[-71.681305,41.62748399906],[-71.68145,41.62763399906],[-71.681503,41.62768199906],[-71.681671,41.62788499906],[-71.681999,41.62827399906],[-71.682182,41.62851299906],[-71.682342,41.62872499906],[-71.682526,41.62902299906],[-71.682686,41.62929399906],[-71.683273,41.63031099906],[-71.683678,41.63101799906],[-71.68396,41.63150199906],[-71.684082,41.63170599906],[-71.684296,41.63207899906],[-71.68457,41.63255899906],[-71.684747,41.63286499906],[-71.684975,41.63325699906],[-71.685371,41.63394999906],[-71.685493,41.63414999906],[-71.6857,41.63450999906],[-71.686134,41.63523799906],[-71.686363,41.63562499906],[-71.687195,41.63702799906],[-71.687653,41.63779199906],[-71.68795,41.63830699906],[-71.688591,41.63936899906],[-71.688705,41.63956399906],[-71.688873,41.63986199906],[-71.688988,41.64004799906],[-71.689247,41.64047399906],[-71.68934,41.64063099906],[-71.689487,41.64087899906],[-71.689552,41.64098999906],[-71.689949,41.64163799906],[-71.690232,41.64211799906],[-71.690514,41.64260599906],[-71.690857,41.64316999906],[-71.691063,41.64355699906],[-71.691208,41.64389099906],[-71.691376,41.64424799906],[-71.691521,41.64463199906],[-71.691658,41.64506099906],[-71.691803,41.64554799906],[-71.692017,41.64629499906],[-71.6922,41.64697099906],[-71.692513,41.64806199906],[-71.692642,41.64852699906],[-71.692932,41.64956499906],[-71.692978,41.64974399906],[-71.693146,41.65032999906],[-71.693245,41.65065199906],[-71.69342,41.65124699906],[-71.693588,41.65188299906],[-71.693741,41.65240099906],[-71.693815,41.65266899906],[-71.693977,41.65326499906],[-71.694283,41.65432499906],[-71.694542,41.65524599906],[-71.694687,41.65577399906],[-71.694756,41.65601599906],[-71.694794,41.65619099906],[-71.694824,41.65634799906],[-71.694855,41.65652199906],[-71.694878,41.65672499906],[-71.6949,41.65694499906],[-71.6949,41.65697199906],[-71.694931,41.65725899906],[-71.694939,41.65763699906],[-71.694939,41.65842399906],[-71.701641,41.65834599906],[-71.702144,41.65833499906],[-71.70283,41.65831999906],[-71.703539,41.65830399906],[-71.70365,41.65830099906],[-71.707097,41.65822399906],[-71.710821,41.65814099906],[-71.71986,41.65787199906],[-71.720105,41.65786399906],[-71.720295,41.65785599906],[-71.721074,41.65784199906],[-71.724407,41.65773399906],[-71.724984,41.65772799906],[-71.725359,41.65771799906],[-71.725468,41.65769299906],[-71.725854,41.65770699906],[-71.726768,41.65768799906],[-71.727881,41.65767599906],[-71.728788,41.65763999906],[-71.735324,41.65746899906],[-71.735619,41.65743699906],[-71.739624,41.65735199906],[-71.740124,41.65739699906],[-71.740357,41.65736899906],[-71.744158,41.65725199906],[-71.745858,41.65719399906],[-71.746543,41.65714299906],[-71.758949,41.65686999906],[-71.765305,41.65666299906],[-71.769653,41.65656699906],[-71.775787,41.65641899906],[-71.78051,41.65628999906],[-71.787239,41.65611099906],[-71.787247,41.65606499906],[-71.787649,41.64027399906],[-71.787712,41.63833999906],[-71.787726,41.63794599906],[-71.787846,41.63444999906],[-71.787984,41.62934699906],[-71.788213,41.62101699906],[-71.788376,41.61728299906],[-71.788554,41.61384799906],[-71.788647,41.61205699906],[-71.788853,41.60771299906],[-71.788856,41.60765999906],[-71.788902,41.60731599906],[-71.789044,41.60352099906],[-71.789247,41.59684699906]]]}}"}, +{"type": "blockgroup", "typeId": 209011, "areaId": 29203, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.455856,41.65809199906],[-71.455253,41.65768999906],[-71.454857,41.65741099906],[-71.454392,41.65710499906],[-71.454247,41.65700899906],[-71.454056,41.65687399906],[-71.453834,41.65672099906],[-71.453758,41.65666799906],[-71.453094,41.65624599906],[-71.453148,41.65619099906],[-71.45398,41.65523599906],[-71.453697,41.65522899906],[-71.45327,41.65520599906],[-71.453072,41.65520199906],[-71.45285,41.65519299906],[-71.452652,41.65518399906],[-71.45198,41.65514399906],[-71.451447,41.65511499906],[-71.451294,41.65510399906],[-71.451198,41.65509799906],[-71.451141,41.65509499906],[-71.450867,41.65507799906],[-71.450989,41.65491699906],[-71.451271,41.65460099906],[-71.451706,41.65402399906],[-71.451897,41.65377199906],[-71.452019,41.65359399906],[-71.452141,41.65337999906],[-71.451989,41.65321199906],[-71.450538,41.65161099906],[-71.450447,41.65151499906],[-71.450376,41.65144899906],[-71.449389,41.65248699906],[-71.449315,41.65256599906],[-71.446018,41.65537599906],[-71.443021,41.66019999906],[-71.4423,41.66401899906],[-71.444969,41.66402899906],[-71.445244,41.66402299906],[-71.445572,41.66406599906],[-71.445778,41.66406599906],[-71.446167,41.66408499906],[-71.446304,41.66408799906],[-71.446355,41.66408899906],[-71.446472,41.66409199906],[-71.446808,41.66407999906],[-71.44741,41.66404899906],[-71.447441,41.66404899906],[-71.448311,41.66402599906],[-71.449142,41.66398499906],[-71.450127,41.66396399906],[-71.451088,41.66392999906],[-71.451218,41.66392299906],[-71.451217,41.66388899906],[-71.451179,41.66327099906],[-71.45118,41.66318599906],[-71.451157,41.66271799906],[-71.451157,41.66266399906],[-71.451134,41.66222699906],[-71.451096,41.66160199906],[-71.45108,41.66114799906],[-71.45108,41.66106199906],[-71.451073,41.66088199906],[-71.451065,41.66073999906],[-71.45105,41.66045499906],[-71.45105,41.66023899906],[-71.451042,41.65998699906],[-71.451042,41.65944599906],[-71.451126,41.65941799906],[-71.451248,41.65930199906],[-71.451645,41.65896099906],[-71.452126,41.65853599906],[-71.452194,41.65847199906],[-71.452873,41.65787199906],[-71.453858,41.65849499906],[-71.454643,41.65898199906],[-71.454826,41.65908199906],[-71.455246,41.65871299906],[-71.455467,41.65850099906],[-71.455856,41.65809199906]]]}}"}, +{"type": "blockgroup", "typeId": 209012, "areaId": 29204, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.474434,41.64782199906],[-71.47419,41.64761099906],[-71.473709,41.64732899906],[-71.472656,41.64673899906],[-71.472053,41.64638299906],[-71.471199,41.64594699906],[-71.470688,41.64569199906],[-71.470474,41.64558799906],[-71.469757,41.64521199906],[-71.469502,41.64506699906],[-71.469475,41.64505099906],[-71.469223,41.64490399906],[-71.468628,41.64452499906],[-71.468124,41.64423399906],[-71.467911,41.64411199906],[-71.467514,41.64385999906],[-71.467346,41.64375999906],[-71.466858,41.64345999906],[-71.466637,41.64332499906],[-71.466575,41.64328499906],[-71.46592,41.64288099906],[-71.46582,41.64295499906],[-71.465652,41.64309799906],[-71.465416,41.64329699906],[-71.465119,41.64358199906],[-71.464966,41.64375699906],[-71.464715,41.64398799906],[-71.464509,41.64417599906],[-71.464399,41.64427699906],[-71.464115,41.64444899906],[-71.463783,41.64465099906],[-71.463553,41.64488299906],[-71.46324,41.64516499906],[-71.463014,41.64544399906],[-71.462371,41.64579299906],[-71.462281,41.64587599906],[-71.462204,41.64594799906],[-71.461342,41.64674299906],[-71.4612,41.64687399906],[-71.460539,41.64748599906],[-71.460027,41.64796099906],[-71.459776,41.64819299906],[-71.459101,41.64883699906],[-71.459018,41.64891499906],[-71.458969,41.64896399906],[-71.458856,41.64907199906],[-71.458654,41.64926599906],[-71.458726,41.64934499906],[-71.458838,41.64939999906],[-71.459545,41.64975299906],[-71.459913,41.65005099906],[-71.460182,41.65027199906],[-71.46048,41.65063899906],[-71.460663,41.65087399906],[-71.460907,41.65119299906],[-71.461243,41.65160499906],[-71.461357,41.65174599906],[-71.461739,41.65219699906],[-71.461754,41.65221999906],[-71.462044,41.65259599906],[-71.462112,41.65267999906],[-71.462181,41.65276899906],[-71.46225,41.65285299906],[-71.46241,41.65305199906],[-71.462456,41.65318599906],[-71.462486,41.65325299906],[-71.462509,41.65331099906],[-71.46254,41.65336899906],[-71.462563,41.65342699906],[-71.462593,41.65349399906],[-71.462616,41.65356499906],[-71.462654,41.65363199906],[-71.462677,41.65368599906],[-71.462715,41.65373899906],[-71.462746,41.65379199906],[-71.462784,41.65384599906],[-71.46283,41.65389399906],[-71.462876,41.65394699906],[-71.462944,41.65400899906],[-71.463021,41.65406999906],[-71.463097,41.65412699906],[-71.463181,41.65419299906],[-71.463272,41.65425799906],[-71.463364,41.65432899906],[-71.463432,41.65437699906],[-71.463585,41.65448099906],[-71.463661,41.65454299906],[-71.46373,41.65460399906],[-71.463806,41.65466599906],[-71.463882,41.65471799906],[-71.46402,41.65482299906],[-71.464126,41.65490699906],[-71.464203,41.65497699906],[-71.464218,41.65490899906],[-71.464241,41.65484099906],[-71.464264,41.65477799906],[-71.464295,41.65468199906],[-71.464355,41.65448699906],[-71.464409,41.65438299906],[-71.46447,41.65428199906],[-71.464539,41.65418199906],[-71.464629,41.65409299906],[-71.46466,41.65406199906],[-71.464729,41.65400699906],[-71.465225,41.65358199906],[-71.465767,41.65314199906],[-71.466271,41.65273499906],[-71.466736,41.65233799906],[-71.467232,41.65188999906],[-71.467316,41.65183499906],[-71.467361,41.65180699906],[-71.4674,41.65177899906],[-71.467491,41.65173199906],[-71.467537,41.65171299906],[-71.467628,41.65168399906],[-71.467697,41.65167799906],[-71.467766,41.65166699906],[-71.467835,41.65166999906],[-71.467964,41.65166299906],[-71.468209,41.65166699906],[-71.468391,41.65165799906],[-71.468575,41.65164999906],[-71.468903,41.65162499906],[-71.469055,41.65161699906],[-71.469208,41.65160499906],[-71.469391,41.65158299906],[-71.469482,41.65156699906],[-71.469566,41.65155699906],[-71.469643,41.65154599906],[-71.469894,41.65148599906],[-71.470039,41.65143399906],[-71.4701,41.65140099906],[-71.470162,41.65137299906],[-71.470192,41.65135399906],[-71.47023,41.65133999906],[-71.470261,41.65132499906],[-71.470352,41.65125999906],[-71.470428,41.65118699906],[-71.470512,41.65111299906],[-71.470635,41.65100199906],[-71.471008,41.65062899906],[-71.471466,41.65023199906],[-71.471748,41.64998299906],[-71.472061,41.64971099906],[-71.472397,41.64941099906],[-71.472794,41.64906899906],[-71.473381,41.64854699906],[-71.473701,41.64826999906],[-71.473762,41.64822399906],[-71.473816,41.64818199906],[-71.474022,41.64803399906],[-71.474205,41.64791299906],[-71.474342,41.64784699906],[-71.474434,41.64782199906]]]}}"}, +{"type": "blockgroup", "typeId": 209013, "areaId": 29205, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.464203,41.65497699906],[-71.464126,41.65490699906],[-71.46402,41.65482299906],[-71.463882,41.65471799906],[-71.463806,41.65466599906],[-71.46373,41.65460399906],[-71.463661,41.65454299906],[-71.463585,41.65448099906],[-71.463432,41.65437699906],[-71.463364,41.65432899906],[-71.463272,41.65425799906],[-71.463181,41.65419299906],[-71.463097,41.65412699906],[-71.463021,41.65406999906],[-71.462944,41.65400899906],[-71.462876,41.65394699906],[-71.46283,41.65389399906],[-71.462784,41.65384599906],[-71.462746,41.65379199906],[-71.462715,41.65373899906],[-71.462677,41.65368599906],[-71.462654,41.65363199906],[-71.462616,41.65356499906],[-71.462593,41.65349399906],[-71.462563,41.65342699906],[-71.46254,41.65336899906],[-71.462509,41.65331099906],[-71.462486,41.65325299906],[-71.462456,41.65318599906],[-71.46241,41.65305199906],[-71.46225,41.65285299906],[-71.462181,41.65276899906],[-71.462112,41.65267999906],[-71.462044,41.65259599906],[-71.461754,41.65221999906],[-71.461739,41.65219699906],[-71.461357,41.65174599906],[-71.461243,41.65160499906],[-71.460907,41.65119299906],[-71.460663,41.65087399906],[-71.46048,41.65063899906],[-71.460182,41.65027199906],[-71.459913,41.65005099906],[-71.459545,41.64975299906],[-71.458838,41.64939999906],[-71.458726,41.64934499906],[-71.458654,41.64926599906],[-71.458621,41.64929799906],[-71.458462,41.64944699906],[-71.458109,41.64978599906],[-71.458017,41.64980899906],[-71.45661,41.64834399906],[-71.456588,41.64831599906],[-71.456403,41.64812799906],[-71.456412,41.64805599906],[-71.456429,41.64792899906],[-71.456339,41.64779399906],[-71.456208,41.64770799906],[-71.455986,41.64762799906],[-71.455766,41.64751599906],[-71.455574,41.64744799906],[-71.455476,41.64741399906],[-71.455169,41.64738399906],[-71.454876,41.64744499906],[-71.454645,41.64756699906],[-71.454473,41.64769899906],[-71.454308,41.64782599906],[-71.454082,41.64798399906],[-71.453787,41.64810699906],[-71.453055,41.64836599906],[-71.452881,41.64843999906],[-71.452157,41.64849199906],[-71.450847,41.65066599906],[-71.450376,41.65144899906],[-71.450447,41.65151499906],[-71.450538,41.65161099906],[-71.451989,41.65321199906],[-71.452141,41.65337999906],[-71.452019,41.65359399906],[-71.451897,41.65377199906],[-71.451706,41.65402399906],[-71.451271,41.65460099906],[-71.450989,41.65491699906],[-71.450867,41.65507799906],[-71.451141,41.65509499906],[-71.451198,41.65509799906],[-71.451294,41.65510399906],[-71.451447,41.65511499906],[-71.45198,41.65514399906],[-71.452652,41.65518399906],[-71.45285,41.65519299906],[-71.453072,41.65520199906],[-71.45327,41.65520599906],[-71.453697,41.65522899906],[-71.45398,41.65523599906],[-71.453148,41.65619099906],[-71.453094,41.65624599906],[-71.453758,41.65666799906],[-71.453834,41.65672099906],[-71.454056,41.65687399906],[-71.454247,41.65700899906],[-71.454392,41.65710499906],[-71.454857,41.65741099906],[-71.455253,41.65768999906],[-71.455856,41.65809199906],[-71.455467,41.65850099906],[-71.455246,41.65871299906],[-71.454826,41.65908199906],[-71.454643,41.65898199906],[-71.453858,41.65849499906],[-71.452873,41.65787199906],[-71.452194,41.65847199906],[-71.452126,41.65853599906],[-71.451645,41.65896099906],[-71.451248,41.65930199906],[-71.451126,41.65941799906],[-71.451042,41.65944599906],[-71.451042,41.65998699906],[-71.45105,41.66023899906],[-71.45105,41.66045499906],[-71.451065,41.66073999906],[-71.451073,41.66088199906],[-71.45108,41.66106199906],[-71.45108,41.66114799906],[-71.451096,41.66160199906],[-71.451134,41.66222699906],[-71.451157,41.66266399906],[-71.451157,41.66271799906],[-71.45118,41.66318599906],[-71.451179,41.66327099906],[-71.451217,41.66388899906],[-71.451218,41.66392299906],[-71.451912,41.66388999906],[-71.452301,41.66387799906],[-71.452835,41.66385299906],[-71.453972,41.66381899906],[-71.454903,41.66380399906],[-71.455368,41.66379399906],[-71.455658,41.66378799906],[-71.456749,41.66376499906],[-71.45829,41.66370499906],[-71.458984,41.66267199906],[-71.459274,41.66220199906],[-71.459618,41.66164099906],[-71.460106,41.66088299906],[-71.460167,41.66078699906],[-71.46019,41.66074999906],[-71.460266,41.66054599906],[-71.460274,41.66029799906],[-71.460259,41.65996099906],[-71.460266,41.65966399906],[-71.460358,41.65944099906],[-71.460411,41.65935399906],[-71.460464,41.65930399906],[-71.460716,41.65909099906],[-71.461029,41.65882299906],[-71.461487,41.65841299906],[-71.462013,41.65796399906],[-71.462135,41.65786299906],[-71.46225,41.65776099906],[-71.462501,41.65755299906],[-71.462631,41.65745099906],[-71.462723,41.65737299906],[-71.462914,41.65719299906],[-71.462967,41.65713299906],[-71.463066,41.65702799906],[-71.463158,41.65692199906],[-71.463188,41.65688099906],[-71.463241,41.65681199906],[-71.463326,41.65670699906],[-71.463417,41.65659199906],[-71.463501,41.65647799906],[-71.463577,41.65635899906],[-71.463745,41.65607699906],[-71.463833,41.65592399906],[-71.463921,41.65574899906],[-71.463974,41.65565299906],[-71.464031,41.65556399906],[-71.464051,41.65553399906],[-71.464088,41.65546599906],[-71.464126,41.65537899906],[-71.464157,41.65529299906],[-71.46418,41.65520299906],[-71.464188,41.65512999906],[-71.464203,41.65497699906]]]}}"}, +{"type": "blockgroup", "typeId": 209031, "areaId": 29206, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.547113,41.66185099906],[-71.547102,41.66149299906],[-71.547052,41.66054499906],[-71.547045,41.66039599906],[-71.547051,41.66018899906],[-71.547048,41.65996699906],[-71.547041,41.65938599906],[-71.547039,41.65924299906],[-71.547033,41.65873799906],[-71.547027,41.65844899906],[-71.547015,41.65743099906],[-71.546961,41.65575099906],[-71.546895,41.65453699906],[-71.546809,41.65300699906],[-71.54678,41.65238999906],[-71.546764,41.65190899906],[-71.546678,41.64967599906],[-71.546648,41.64886799906],[-71.546578,41.64645299906],[-71.546625,41.64628299906],[-71.546654,41.64617699906],[-71.546638,41.64600599906],[-71.546661,41.64568599906],[-71.546669,41.64540699906],[-71.546662,41.64512799906],[-71.546646,41.64483099906],[-71.546639,41.64447499906],[-71.546623,41.64410199906],[-71.5466,41.64373799906],[-71.54658,41.64354399906],[-71.546442,41.64232599906],[-71.546417,41.64208499906],[-71.546346,41.64207999906],[-71.546143,41.64209299906],[-71.545975,41.64210399906],[-71.545881,41.64209099906],[-71.54577,41.64207599906],[-71.545681,41.64206399906],[-71.545598,41.64205199906],[-71.545477,41.64202899906],[-71.545248,41.64198299906],[-71.545153,41.64196399906],[-71.54504,41.64194199906],[-71.544959,41.64193899906],[-71.544811,41.64193499906],[-71.544624,41.64192899906],[-71.544541,41.64192999906],[-71.5444,41.64193099906],[-71.544231,41.64193199906],[-71.544043,41.64193799906],[-71.543802,41.64194699906],[-71.543647,41.64195399906],[-71.543428,41.64196499906],[-71.543273,41.64197299906],[-71.543257,41.64197299906],[-71.543181,41.64197999906],[-71.543004,41.64199499906],[-71.542875,41.64200599906],[-71.54267,41.64200199906],[-71.542475,41.64199899906],[-71.541336,41.64202199906],[-71.541264,41.64202999906],[-71.54085,41.64207199906],[-71.540494,41.64208899906],[-71.540245,41.64211199906],[-71.54001,41.64212799906],[-71.539734,41.64214499906],[-71.539554,41.64215099906],[-71.539278,41.64217999906],[-71.539157,41.64218399906],[-71.538969,41.64219099906],[-71.53866,41.64220399906],[-71.538408,41.64221699906],[-71.538074,41.64226399906],[-71.538028,41.64227299906],[-71.537889,41.64227399906],[-71.537748,41.64227399906],[-71.537619,41.64229099906],[-71.537388,41.64229899906],[-71.537257,41.64229199906],[-71.536864,41.64225199906],[-71.536655,41.64220899906],[-71.536408,41.64211199906],[-71.536308,41.64206699906],[-71.536066,41.64195799906],[-71.535795,41.64188299906],[-71.535726,41.64186699906],[-71.535658,41.64185799906],[-71.535555,41.64184299906],[-71.535372,41.64187599906],[-71.535265,41.64194099906],[-71.535217,41.64194799906],[-71.535158,41.64195799906],[-71.535036,41.64195499906],[-71.534835,41.64194999906],[-71.534739,41.64194199906],[-71.534546,41.64192599906],[-71.534198,41.64187699906],[-71.533695,41.64182299906],[-71.533632,41.64182499906],[-71.53342,41.64183199906],[-71.533362,41.64183399906],[-71.533107,41.64186099906],[-71.532763,41.64189299906],[-71.532578,41.64192199906],[-71.532131,41.64196299906],[-71.531734,41.64201799906],[-71.531522,41.64204199906],[-71.531458,41.64204899906],[-71.531051,41.64211199906],[-71.530817,41.64212999906],[-71.530678,41.64215699906],[-71.530472,41.64219399906],[-71.530121,41.64222799906],[-71.529572,41.64233899906],[-71.529198,41.64240599906],[-71.528687,41.64251199906],[-71.528534,41.64256899906],[-71.528107,41.64269099906],[-71.527817,41.64276999906],[-71.527672,41.64280499906],[-71.527519,41.64281199906],[-71.527494,41.64281299906],[-71.527432,41.64281399906],[-71.527054,41.64281799906],[-71.526558,41.64283399906],[-71.525795,41.64284099906],[-71.525543,41.64284199906],[-71.525185,41.64284099906],[-71.524521,41.64285999906],[-71.523743,41.64285499906],[-71.523117,41.64285999906],[-71.522118,41.64288199906],[-71.521705,41.64290399906],[-71.521622,41.64291899906],[-71.5214,41.64293299906],[-71.521034,41.64298199906],[-71.520394,41.64308999906],[-71.519791,41.64317999906],[-71.519493,41.64322299906],[-71.519218,41.64323299906],[-71.518768,41.64324799906],[-71.518478,41.64324099906],[-71.518295,41.64324899906],[-71.518271,41.64325099906],[-71.517891,41.64328899906],[-71.517372,41.64333199906],[-71.516151,41.64343099906],[-71.515991,41.64343499906],[-71.515854,41.64341999906],[-71.515709,41.64339099906],[-71.514915,41.64316499906],[-71.514687,41.64311199906],[-71.514542,41.64308399906],[-71.514465,41.64308099906],[-71.514328,41.64310599906],[-71.513901,41.64317899906],[-71.513245,41.64330099906],[-71.512688,41.64340799906],[-71.512199,41.64348199906],[-71.511688,41.64355599906],[-71.511208,41.64362899906],[-71.510857,41.64368599906],[-71.510383,41.64371899906],[-71.510139,41.64373399906],[-71.509728,41.64378299906],[-71.509285,41.64387399906],[-71.50856,41.64403399906],[-71.508202,41.64412299906],[-71.50795,41.64418199906],[-71.507912,41.64419699906],[-71.507832,41.64421099906],[-71.507629,41.64424799906],[-71.507439,41.64427899906],[-71.507149,41.64430799906],[-71.506928,41.64431699906],[-71.506508,41.64433099906],[-71.50602,41.64435899906],[-71.505875,41.64437199906],[-71.505425,41.64440799906],[-71.504684,41.64446499906],[-71.503959,41.64453699906],[-71.503105,41.64461699906],[-71.502388,41.64468199906],[-71.501869,41.64473799906],[-71.501724,41.64474999906],[-71.501549,41.64477699906],[-71.500587,41.64488799906],[-71.499489,41.64502399906],[-71.499168,41.64505399906],[-71.498657,41.64510999906],[-71.4981,41.64516199906],[-71.497642,41.64520799906],[-71.497453,41.64522299906],[-71.497124,41.64525099906],[-71.496567,41.64531299906],[-71.495552,41.64544299906],[-71.495377,41.64547799906],[-71.495209,41.64548799906],[-71.494408,41.64553099906],[-71.493568,41.64560299906],[-71.493118,41.64563499906],[-71.492989,41.64564699906],[-71.4926,41.64566899906],[-71.49237,41.64568299906],[-71.492241,41.64569499906],[-71.492142,41.64569699906],[-71.491539,41.64574599906],[-71.491123,41.64577699906],[-71.490951,41.64578999906],[-71.490166,41.64585699906],[-71.489456,41.64590399906],[-71.488922,41.64594199906],[-71.488701,41.64596099906],[-71.488037,41.64600699906],[-71.487999,41.64601199906],[-71.487671,41.64604199906],[-71.488348,41.65064599906],[-71.4897,41.65974599906],[-71.490158,41.66287399906],[-71.490173,41.66297299906],[-71.490206,41.66319299906],[-71.490386,41.66318699906],[-71.490578,41.66318099906],[-71.492166,41.66313799906],[-71.492996,41.66311799906],[-71.493618,41.66309899906],[-71.494093,41.66308399906],[-71.494222,41.66308199906],[-71.494601,41.66307199906],[-71.497119,41.66300399906],[-71.497822,41.66298599906],[-71.498043,41.66297899906],[-71.498165,41.66297599906],[-71.499225,41.66294799906],[-71.499674,41.66293599906],[-71.5014,41.66288999906],[-71.503139,41.66284399906],[-71.504866,41.66279199906],[-71.506347,41.66273899906],[-71.506775,41.66271699906],[-71.507307,41.66270499906],[-71.507632,41.66269499906],[-71.509322,41.66263799906],[-71.510739,41.66259599906],[-71.51198,41.66255299906],[-71.512616,41.66253399906],[-71.5131,41.66252299906],[-71.513188,41.66251999906],[-71.514049,41.66249899906],[-71.51657,41.66243799906],[-71.517422,41.66241699906],[-71.519164,41.66240999906],[-71.519457,41.66240799906],[-71.520245,41.66240399906],[-71.520695,41.66238599906],[-71.522588,41.66230999906],[-71.523544,41.66230199906],[-71.523993,41.66229599906],[-71.525946,41.66224499906],[-71.529274,41.66222299906],[-71.530476,41.66220499906],[-71.530553,41.66220799906],[-71.530587,41.66221399906],[-71.532303,41.66219099906],[-71.533204,41.66217999906],[-71.533379,41.66215599906],[-71.533464,41.66215399906],[-71.540041,41.66200799906],[-71.540918,41.66198899906],[-71.541475,41.66197699906],[-71.541971,41.66196499906],[-71.542752,41.66194799906],[-71.544438,41.66190299906],[-71.546677,41.66186099906],[-71.547036,41.66185299906],[-71.547113,41.66185099906]]]}}"}, +{"type": "blockgroup", "typeId": 209032, "areaId": 29207, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.521416,41.60443599906],[-71.521339,41.60431099906],[-71.521156,41.60397799906],[-71.520928,41.60359499906],[-71.52079,41.60333299906],[-71.520622,41.60299899906],[-71.5205,41.60276299906],[-71.520454,41.60267799906],[-71.520447,41.60261599906],[-71.520295,41.60261699906],[-71.519386,41.60262299906],[-71.517761,41.60262899906],[-71.51575,41.60262799906],[-71.510712,41.60262499906],[-71.506515,41.60262299906],[-71.499588,41.60264699906],[-71.498518,41.60265599906],[-71.498405,41.60265499906],[-71.498095,41.60265299906],[-71.497851,41.60265099906],[-71.49646,41.60263999906],[-71.495838,41.60263599906],[-71.495697,41.60263399906],[-71.495689,41.60267999906],[-71.495628,41.60297699906],[-71.495537,41.60348299906],[-71.495438,41.60389499906],[-71.495354,41.60414399906],[-71.495324,41.60421299906],[-71.495255,41.60437199906],[-71.495064,41.60472699906],[-71.494927,41.60493299906],[-71.494758,41.60518399906],[-71.494667,41.60532099906],[-71.494522,41.60553599906],[-71.494171,41.60604799906],[-71.493919,41.60641799906],[-71.493637,41.60683799906],[-71.493439,41.60713499906],[-71.493378,41.60722199906],[-71.493217,41.60745599906],[-71.493027,41.60772499906],[-71.492989,41.60777599906],[-71.492973,41.60781199906],[-71.492905,41.60791299906],[-71.49276,41.60815399906],[-71.492622,41.60847699906],[-71.492554,41.60870799906],[-71.492508,41.60890299906],[-71.492485,41.60909299906],[-71.492462,41.60942599906],[-71.492444,41.60963099906],[-71.492348,41.61017599906],[-71.492165,41.61214399906],[-71.492119,41.61259499906],[-71.491875,41.61384799906],[-71.49176,41.61393999906],[-71.491501,41.61415699906],[-71.491043,41.61452799906],[-71.490623,41.61487399906],[-71.490181,41.61524899906],[-71.48967,41.61566999906],[-71.489258,41.61602499906],[-71.488899,41.61631699906],[-71.488518,41.61664499906],[-71.488174,41.61690899906],[-71.488007,41.61707899906],[-71.487625,41.61751499906],[-71.487457,41.61772599906],[-71.487251,41.61803699906],[-71.487076,41.61835599906],[-71.486916,41.61867899906],[-71.486794,41.61896999906],[-71.486694,41.61926399906],[-71.486618,41.61956799906],[-71.486564,41.61982999906],[-71.486527,41.62009199906],[-71.486511,41.62036299906],[-71.486504,41.62065599906],[-71.486519,41.62095199906],[-71.486526,41.62124899906],[-71.48658,41.62272999906],[-71.486632,41.62434099906],[-71.486648,41.62486299906],[-71.486656,41.62502899906],[-71.486658,41.62528199906],[-71.486656,41.62543499906],[-71.486656,41.62554299906],[-71.486756,41.62795399906],[-71.486755,41.62803999906],[-71.486794,41.62925399906],[-71.486797,41.62934299906],[-71.486801,41.62944399906],[-71.486831,41.63046899906],[-71.486873,41.63137499906],[-71.486884,41.63159499906],[-71.486911,41.63240699906],[-71.486916,41.63318099906],[-71.486961,41.63461899906],[-71.486984,41.63523499906],[-71.487038,41.63672899906],[-71.487137,41.63973499906],[-71.48716,41.64027999906],[-71.487175,41.64083299906],[-71.487198,41.64137799906],[-71.487229,41.64193499906],[-71.487266,41.64248799906],[-71.487305,41.64304599906],[-71.487373,41.64370599906],[-71.48745,41.64436199906],[-71.487526,41.64502199906],[-71.487617,41.64567299906],[-71.487663,41.64599199906],[-71.487671,41.64604199906],[-71.487999,41.64601199906],[-71.488037,41.64600699906],[-71.488701,41.64596099906],[-71.488922,41.64594199906],[-71.489456,41.64590399906],[-71.490166,41.64585699906],[-71.490951,41.64578999906],[-71.491123,41.64577699906],[-71.491539,41.64574599906],[-71.492142,41.64569699906],[-71.492241,41.64569499906],[-71.49237,41.64568299906],[-71.4926,41.64566899906],[-71.492989,41.64564699906],[-71.493118,41.64563499906],[-71.493568,41.64560299906],[-71.494408,41.64553099906],[-71.495209,41.64548799906],[-71.495377,41.64547799906],[-71.495552,41.64544299906],[-71.496567,41.64531299906],[-71.497124,41.64525099906],[-71.497453,41.64522299906],[-71.497642,41.64520799906],[-71.4981,41.64516199906],[-71.498657,41.64510999906],[-71.499168,41.64505399906],[-71.499489,41.64502399906],[-71.500587,41.64488799906],[-71.501549,41.64477699906],[-71.501724,41.64474999906],[-71.501869,41.64473799906],[-71.502388,41.64468199906],[-71.503105,41.64461699906],[-71.503959,41.64453699906],[-71.504684,41.64446499906],[-71.505425,41.64440799906],[-71.505875,41.64437199906],[-71.50602,41.64435899906],[-71.506508,41.64433099906],[-71.506928,41.64431699906],[-71.507149,41.64430799906],[-71.507439,41.64427899906],[-71.507629,41.64424799906],[-71.507832,41.64421099906],[-71.507912,41.64419699906],[-71.50795,41.64418199906],[-71.508202,41.64412299906],[-71.50856,41.64403399906],[-71.509285,41.64387399906],[-71.509728,41.64378299906],[-71.510139,41.64373399906],[-71.510383,41.64371899906],[-71.510857,41.64368599906],[-71.511208,41.64362899906],[-71.511688,41.64355599906],[-71.512199,41.64348199906],[-71.512688,41.64340799906],[-71.513245,41.64330099906],[-71.513901,41.64317899906],[-71.514328,41.64310599906],[-71.514465,41.64308099906],[-71.514542,41.64308399906],[-71.514519,41.64287699906],[-71.514488,41.64265199906],[-71.514519,41.64229599906],[-71.51458,41.64174099906],[-71.514618,41.64117699906],[-71.514633,41.64074899906],[-71.514633,41.64029899906],[-71.514641,41.63998799906],[-71.514656,41.63958699906],[-71.514656,41.63925299906],[-71.514664,41.63908699906],[-71.514671,41.63884299906],[-71.514694,41.63853199906],[-71.514717,41.63819799906],[-71.51474,41.63788299906],[-71.514755,41.63771999906],[-71.514786,41.63748099906],[-71.514816,41.63723699906],[-71.514824,41.63688999906],[-71.514808,41.63657999906],[-71.514793,41.63611199906],[-71.514801,41.63577799906],[-71.514816,41.63555299906],[-71.514816,41.63546299906],[-71.514824,41.63535899906],[-71.514816,41.63510299906],[-71.514824,41.63481899906],[-71.514869,41.63453799906],[-71.514885,41.63440799906],[-71.514877,41.63430899906],[-71.514862,41.63422799906],[-71.514854,41.63413799906],[-71.514801,41.63393199906],[-71.514702,41.63364599906],[-71.514496,41.63318699906],[-71.514381,41.63291899906],[-71.514297,41.63261899906],[-71.514229,41.63232299906],[-71.514213,41.63222499906],[-71.514183,41.63205899906],[-71.514128,41.63181599906],[-71.514122,41.63178999906],[-71.514031,41.63144999906],[-71.513992,41.63134699906],[-71.513817,41.63087299906],[-71.513656,41.63040399906],[-71.51358,41.63011299906],[-71.513489,41.62974599906],[-71.513471,41.62967599906],[-71.513443,41.62956699906],[-71.513405,41.62944599906],[-71.513359,41.62928899906],[-71.513237,41.62890499906],[-71.513016,41.62836899906],[-71.512833,41.62781499906],[-71.512711,41.62745699906],[-71.512543,41.62693399906],[-71.512474,41.62673299906],[-71.512413,41.62651399906],[-71.512314,41.62622799906],[-71.512238,41.62588199906],[-71.512177,41.62554599906],[-71.5121,41.62530499906],[-71.512032,41.62512999906],[-71.511955,41.62496099906],[-71.511841,41.62462599906],[-71.511719,41.62422799906],[-71.51162,41.62389199906],[-71.51152,41.62352099906],[-71.511459,41.62326999906],[-71.511368,41.62296999906],[-71.511307,41.62272799906],[-71.511215,41.62238799906],[-71.511055,41.62193699906],[-71.510979,41.62169999906],[-71.510864,41.62136899906],[-71.51078,41.62104199906],[-71.510765,41.62099299906],[-71.510696,41.62071099906],[-71.510582,41.62030299906],[-71.510422,41.61978399906],[-71.510353,41.61957899906],[-71.510277,41.61932799906],[-71.510155,41.61897099906],[-71.510017,41.61850099906],[-71.509811,41.61773099906],[-71.509752,41.61744399906],[-71.509689,41.61712099906],[-71.509643,41.61689199906],[-71.509605,41.61669499906],[-71.509575,41.61646199906],[-71.509545,41.61620099906],[-71.509529,41.61597599906],[-71.509522,41.61586799906],[-71.509514,41.61584099906],[-71.509498,41.61568899906],[-71.509468,41.61522599906],[-71.50946,41.61495599906],[-71.509445,41.61471699906],[-71.509445,41.61432099906],[-71.509444,41.61429499906],[-71.509438,41.61419499906],[-71.509415,41.61396999906],[-71.509384,41.61368699906],[-71.509384,41.61353399906],[-71.509377,41.61346199906],[-71.509377,41.61326399906],[-71.509388,41.61315999906],[-71.509415,41.61289899906],[-71.509453,41.61257399906],[-71.509491,41.61230199906],[-71.509537,41.61203099906],[-71.50959,41.61174199906],[-71.509636,41.61144799906],[-71.509674,41.61115899906],[-71.509766,41.61062599906],[-71.509804,41.61045799906],[-71.509834,41.61036299906],[-71.509895,41.61025799906],[-71.509972,41.61010799906],[-71.510033,41.60997599906],[-71.510216,41.60954899906],[-71.510338,41.60932999906],[-71.510468,41.60908399906],[-71.510559,41.60891499906],[-71.510628,41.60874299906],[-71.510674,41.60858899906],[-71.510704,41.60849799906],[-71.51078,41.60841999906],[-71.510948,41.60833499906],[-71.511192,41.60825299906],[-71.511444,41.60819799906],[-71.511749,41.60816399906],[-71.511955,41.60814599906],[-71.512085,41.60814799906],[-71.51226,41.60815299906],[-71.512459,41.60817999906],[-71.512599,41.60819099906],[-71.51265,41.60819399906],[-71.512802,41.60819499906],[-71.51294,41.60817899906],[-71.513084,41.60813099906],[-71.51342,41.60799699906],[-71.513557,41.60795799906],[-71.513695,41.60792399906],[-71.513916,41.60787799906],[-71.514206,41.60785799906],[-71.514534,41.60787399906],[-71.514954,41.60789199906],[-71.515373,41.60789999906],[-71.515701,41.60790199906],[-71.515808,41.60788599906],[-71.515846,41.60788099906],[-71.516007,41.60779199906],[-71.516068,41.60775899906],[-71.516334,41.60757299906],[-71.516594,41.60733799906],[-71.516853,41.60711199906],[-71.517044,41.60690899906],[-71.517151,41.60678099906],[-71.517173,41.60676099906],[-71.517273,41.60667499906],[-71.517449,41.60651299906],[-71.5177,41.60634499906],[-71.518059,41.60617999906],[-71.518364,41.60605599906],[-71.518631,41.60597799906],[-71.518791,41.60593399906],[-71.519035,41.60591499906],[-71.519287,41.60587399906],[-71.519569,41.60584499906],[-71.519684,41.60581599906],[-71.519783,41.60576799906],[-71.519837,41.60573999906],[-71.519898,41.60570699906],[-71.520004,41.60561499906],[-71.520202,41.60539899906],[-71.520233,41.60536699906],[-71.520447,41.60515899906],[-71.520714,41.60493299906],[-71.520912,41.60477999906],[-71.521019,41.60470099906],[-71.521256,41.60453799906],[-71.521416,41.60443599906]]]}}"}, +{"type": "blockgroup", "typeId": 209033, "areaId": 29208, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.546433,41.64047699906],[-71.54641,41.63997699906],[-71.54641,41.63968499906],[-71.546379,41.63931099906],[-71.546356,41.63915399906],[-71.546344,41.63906299906],[-71.546347,41.63865599906],[-71.546349,41.63834299906],[-71.546351,41.63813499906],[-71.546348,41.63767099906],[-71.546288,41.63713199906],[-71.546309,41.63685399906],[-71.546324,41.63664399906],[-71.546339,41.63644599906],[-71.546306,41.63585399906],[-71.54628,41.63539599906],[-71.54627,41.63521399906],[-71.546262,41.63426399906],[-71.54626,41.63384499906],[-71.546257,41.63333399906],[-71.546258,41.63321799906],[-71.546259,41.63297299906],[-71.546259,41.63280399906],[-71.546257,41.63211899906],[-71.546233,41.63163199906],[-71.546187,41.63052399906],[-71.546199,41.62959499906],[-71.546195,41.62931999906],[-71.546164,41.62797499906],[-71.546144,41.62726199906],[-71.546127,41.62666099906],[-71.546122,41.62654799906],[-71.546092,41.62576099906],[-71.546053,41.62516799906],[-71.546019,41.62484399906],[-71.545979,41.62447599906],[-71.545965,41.62434899906],[-71.545957,41.62423899906],[-71.545931,41.62403999906],[-71.545927,41.62397399906],[-71.545883,41.62321199906],[-71.545813,41.62199999906],[-71.545802,41.62176599906],[-71.545785,41.62146599906],[-71.545567,41.61744599906],[-71.545447,41.61492099906],[-71.545432,41.61455899906],[-71.545403,41.61393899906],[-71.54537,41.61324499906],[-71.545368,41.61317999906],[-71.54532,41.61216899906],[-71.545201,41.60946699906],[-71.544807,41.60199299906],[-71.543884,41.60201599906],[-71.543793,41.60201799906],[-71.533326,41.60227599906],[-71.53328,41.60227699906],[-71.53138,41.60232299906],[-71.529266,41.60237599906],[-71.528305,41.60240599906],[-71.52793,41.60241799906],[-71.52277,41.60254999906],[-71.522429,41.60256599906],[-71.522076,41.60258299906],[-71.52071,41.60261699906],[-71.520491,41.60261599906],[-71.520447,41.60261599906],[-71.520454,41.60267799906],[-71.5205,41.60276299906],[-71.520622,41.60299899906],[-71.52079,41.60333299906],[-71.520928,41.60359499906],[-71.521156,41.60397799906],[-71.521339,41.60431099906],[-71.521416,41.60443599906],[-71.521256,41.60453799906],[-71.521019,41.60470099906],[-71.520912,41.60477999906],[-71.520714,41.60493299906],[-71.520447,41.60515899906],[-71.520233,41.60536699906],[-71.520202,41.60539899906],[-71.520004,41.60561499906],[-71.519898,41.60570699906],[-71.519837,41.60573999906],[-71.519783,41.60576799906],[-71.519684,41.60581599906],[-71.519569,41.60584499906],[-71.519287,41.60587399906],[-71.519035,41.60591499906],[-71.518791,41.60593399906],[-71.518631,41.60597799906],[-71.518364,41.60605599906],[-71.518059,41.60617999906],[-71.5177,41.60634499906],[-71.517449,41.60651299906],[-71.517273,41.60667499906],[-71.517173,41.60676099906],[-71.517151,41.60678099906],[-71.517044,41.60690899906],[-71.516853,41.60711199906],[-71.516594,41.60733799906],[-71.516334,41.60757299906],[-71.516068,41.60775899906],[-71.516007,41.60779199906],[-71.515846,41.60788099906],[-71.515808,41.60788599906],[-71.515701,41.60790199906],[-71.515373,41.60789999906],[-71.514954,41.60789199906],[-71.514534,41.60787399906],[-71.514206,41.60785799906],[-71.513916,41.60787799906],[-71.513695,41.60792399906],[-71.513557,41.60795799906],[-71.51342,41.60799699906],[-71.513084,41.60813099906],[-71.51294,41.60817899906],[-71.512802,41.60819499906],[-71.51265,41.60819399906],[-71.512599,41.60819099906],[-71.512459,41.60817999906],[-71.51226,41.60815299906],[-71.512085,41.60814799906],[-71.511955,41.60814599906],[-71.511749,41.60816399906],[-71.511444,41.60819799906],[-71.511192,41.60825299906],[-71.510948,41.60833499906],[-71.51078,41.60841999906],[-71.510704,41.60849799906],[-71.510674,41.60858899906],[-71.510628,41.60874299906],[-71.510559,41.60891499906],[-71.510468,41.60908399906],[-71.510338,41.60932999906],[-71.510216,41.60954899906],[-71.510033,41.60997599906],[-71.509972,41.61010799906],[-71.509895,41.61025799906],[-71.509834,41.61036299906],[-71.509804,41.61045799906],[-71.509766,41.61062599906],[-71.509674,41.61115899906],[-71.509636,41.61144799906],[-71.50959,41.61174199906],[-71.509537,41.61203099906],[-71.509491,41.61230199906],[-71.509453,41.61257399906],[-71.509415,41.61289899906],[-71.509388,41.61315999906],[-71.509377,41.61326399906],[-71.509377,41.61346199906],[-71.509384,41.61353399906],[-71.509384,41.61368699906],[-71.509415,41.61396999906],[-71.509438,41.61419499906],[-71.509444,41.61429499906],[-71.509445,41.61432099906],[-71.509445,41.61471699906],[-71.50946,41.61495599906],[-71.509468,41.61522599906],[-71.509498,41.61568899906],[-71.509514,41.61584099906],[-71.509522,41.61586799906],[-71.509529,41.61597599906],[-71.509545,41.61620099906],[-71.509575,41.61646199906],[-71.509605,41.61669499906],[-71.509643,41.61689199906],[-71.509689,41.61712099906],[-71.509752,41.61744399906],[-71.509811,41.61773099906],[-71.510017,41.61850099906],[-71.510155,41.61897099906],[-71.510277,41.61932799906],[-71.510353,41.61957899906],[-71.510422,41.61978399906],[-71.510582,41.62030299906],[-71.510696,41.62071099906],[-71.510765,41.62099299906],[-71.51078,41.62104199906],[-71.510864,41.62136899906],[-71.510979,41.62169999906],[-71.511055,41.62193699906],[-71.511215,41.62238799906],[-71.511307,41.62272799906],[-71.511368,41.62296999906],[-71.511459,41.62326999906],[-71.51152,41.62352099906],[-71.51162,41.62389199906],[-71.511719,41.62422799906],[-71.511841,41.62462599906],[-71.511955,41.62496099906],[-71.512032,41.62512999906],[-71.5121,41.62530499906],[-71.512177,41.62554599906],[-71.512238,41.62588199906],[-71.512314,41.62622799906],[-71.512413,41.62651399906],[-71.512474,41.62673299906],[-71.512543,41.62693399906],[-71.512711,41.62745699906],[-71.512833,41.62781499906],[-71.513016,41.62836899906],[-71.513237,41.62890499906],[-71.513359,41.62928899906],[-71.513405,41.62944599906],[-71.513443,41.62956699906],[-71.513471,41.62967599906],[-71.513489,41.62974599906],[-71.51358,41.63011299906],[-71.513656,41.63040399906],[-71.513817,41.63087299906],[-71.513992,41.63134699906],[-71.514031,41.63144999906],[-71.514122,41.63178999906],[-71.514128,41.63181599906],[-71.514183,41.63205899906],[-71.514213,41.63222499906],[-71.514229,41.63232299906],[-71.514297,41.63261899906],[-71.514381,41.63291899906],[-71.514496,41.63318699906],[-71.514702,41.63364599906],[-71.514801,41.63393199906],[-71.514854,41.63413799906],[-71.514862,41.63422799906],[-71.514877,41.63430899906],[-71.514885,41.63440799906],[-71.514869,41.63453799906],[-71.514824,41.63481899906],[-71.514816,41.63510299906],[-71.514824,41.63535899906],[-71.514816,41.63546299906],[-71.514816,41.63555299906],[-71.514801,41.63577799906],[-71.514793,41.63611199906],[-71.514808,41.63657999906],[-71.514824,41.63688999906],[-71.514816,41.63723699906],[-71.514786,41.63748099906],[-71.514755,41.63771999906],[-71.51474,41.63788299906],[-71.514717,41.63819799906],[-71.514694,41.63853199906],[-71.514671,41.63884299906],[-71.514664,41.63908699906],[-71.514656,41.63925299906],[-71.514656,41.63958699906],[-71.514641,41.63998799906],[-71.514633,41.64029899906],[-71.514633,41.64074899906],[-71.514618,41.64117699906],[-71.51458,41.64174099906],[-71.514519,41.64229599906],[-71.514488,41.64265199906],[-71.514519,41.64287699906],[-71.514542,41.64308399906],[-71.514687,41.64311199906],[-71.514915,41.64316499906],[-71.515709,41.64339099906],[-71.515854,41.64341999906],[-71.515991,41.64343499906],[-71.516151,41.64343099906],[-71.517372,41.64333199906],[-71.517891,41.64328899906],[-71.518271,41.64325099906],[-71.518295,41.64324899906],[-71.518478,41.64324099906],[-71.518768,41.64324799906],[-71.519218,41.64323299906],[-71.519493,41.64322299906],[-71.519791,41.64317999906],[-71.520394,41.64308999906],[-71.521034,41.64298199906],[-71.5214,41.64293299906],[-71.521622,41.64291899906],[-71.521705,41.64290399906],[-71.522118,41.64288199906],[-71.523117,41.64285999906],[-71.523743,41.64285499906],[-71.524521,41.64285999906],[-71.525185,41.64284099906],[-71.525543,41.64284199906],[-71.525795,41.64284099906],[-71.526558,41.64283399906],[-71.527054,41.64281799906],[-71.527432,41.64281399906],[-71.527494,41.64281299906],[-71.527519,41.64281199906],[-71.527672,41.64280499906],[-71.527817,41.64276999906],[-71.528107,41.64269099906],[-71.528534,41.64256899906],[-71.528687,41.64251199906],[-71.529198,41.64240599906],[-71.529572,41.64233899906],[-71.530121,41.64222799906],[-71.530472,41.64219399906],[-71.530678,41.64215699906],[-71.530817,41.64212999906],[-71.531051,41.64211199906],[-71.531458,41.64204899906],[-71.531522,41.64204199906],[-71.531734,41.64201799906],[-71.532131,41.64196299906],[-71.532578,41.64192199906],[-71.532763,41.64189299906],[-71.533107,41.64186099906],[-71.533362,41.64183399906],[-71.53342,41.64183199906],[-71.533632,41.64182499906],[-71.533695,41.64182299906],[-71.534198,41.64187699906],[-71.534546,41.64192599906],[-71.534739,41.64194199906],[-71.534835,41.64194999906],[-71.535036,41.64195499906],[-71.535158,41.64195799906],[-71.535217,41.64194799906],[-71.535265,41.64194099906],[-71.535372,41.64187599906],[-71.535555,41.64184299906],[-71.535658,41.64185799906],[-71.535726,41.64186699906],[-71.535795,41.64188299906],[-71.536066,41.64195799906],[-71.536308,41.64206699906],[-71.536408,41.64211199906],[-71.536655,41.64220899906],[-71.536864,41.64225199906],[-71.537257,41.64229199906],[-71.537388,41.64229899906],[-71.537619,41.64229099906],[-71.537748,41.64227399906],[-71.537889,41.64227399906],[-71.538028,41.64227299906],[-71.538074,41.64226399906],[-71.538408,41.64221699906],[-71.53866,41.64220399906],[-71.538969,41.64219099906],[-71.539157,41.64218399906],[-71.539278,41.64217999906],[-71.539554,41.64215099906],[-71.539734,41.64214499906],[-71.54001,41.64212799906],[-71.540245,41.64211199906],[-71.540494,41.64208899906],[-71.54085,41.64207199906],[-71.541264,41.64202999906],[-71.541336,41.64202199906],[-71.542475,41.64199899906],[-71.54267,41.64200199906],[-71.542875,41.64200599906],[-71.543004,41.64199499906],[-71.543181,41.64197999906],[-71.543257,41.64197299906],[-71.543273,41.64197299906],[-71.543428,41.64196499906],[-71.543647,41.64195399906],[-71.543802,41.64194699906],[-71.544043,41.64193799906],[-71.544231,41.64193199906],[-71.5444,41.64193099906],[-71.544541,41.64192999906],[-71.544624,41.64192899906],[-71.544811,41.64193499906],[-71.544959,41.64193899906],[-71.54504,41.64194199906],[-71.545153,41.64196399906],[-71.545248,41.64198299906],[-71.545477,41.64202899906],[-71.545598,41.64205199906],[-71.545681,41.64206399906],[-71.54577,41.64207599906],[-71.545881,41.64209099906],[-71.545975,41.64210399906],[-71.546143,41.64209299906],[-71.546346,41.64207999906],[-71.546417,41.64208499906],[-71.546409,41.64184199906],[-71.546395,41.64173899906],[-71.546371,41.64144599906],[-71.546363,41.64127899906],[-71.546364,41.64113599906],[-71.546374,41.64099299906],[-71.546385,41.64083499906],[-71.54641,41.64070199906],[-71.546433,41.64047699906]]]}}"}, +{"type": "blockgroup", "typeId": 209041, "areaId": 29209, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.490206,41.66319299906],[-71.490173,41.66297299906],[-71.490158,41.66287399906],[-71.4897,41.65974599906],[-71.488348,41.65064599906],[-71.487671,41.64604199906],[-71.487465,41.64605499906],[-71.487419,41.64605999906],[-71.487137,41.64608499906],[-71.486961,41.64609699906],[-71.48658,41.64613299906],[-71.485977,41.64618199906],[-71.485924,41.64619199906],[-71.484581,41.64630599906],[-71.48423,41.64633199906],[-71.484116,41.64634399906],[-71.48349,41.64639299906],[-71.482567,41.64650299906],[-71.481895,41.64656299906],[-71.481827,41.64657299906],[-71.48072,41.64669599906],[-71.480431,41.64673399906],[-71.479355,41.64687399906],[-71.478696,41.64695299906],[-71.478523,41.64697299906],[-71.47786,41.64707299906],[-71.476959,41.64726799906],[-71.476326,41.64738999906],[-71.475799,41.64750899906],[-71.475502,41.64757399906],[-71.475023,41.64768799906],[-71.474503,41.64780299906],[-71.474434,41.64782199906],[-71.474342,41.64784699906],[-71.474205,41.64791299906],[-71.474022,41.64803399906],[-71.473816,41.64818199906],[-71.473762,41.64822399906],[-71.473701,41.64826999906],[-71.473381,41.64854699906],[-71.472794,41.64906899906],[-71.472397,41.64941099906],[-71.472061,41.64971099906],[-71.471748,41.64998299906],[-71.471466,41.65023199906],[-71.471008,41.65062899906],[-71.470635,41.65100199906],[-71.470512,41.65111299906],[-71.470428,41.65118699906],[-71.470352,41.65125999906],[-71.470261,41.65132499906],[-71.47023,41.65133999906],[-71.470192,41.65135399906],[-71.470162,41.65137299906],[-71.4701,41.65140099906],[-71.470039,41.65143399906],[-71.469894,41.65148599906],[-71.469643,41.65154599906],[-71.469566,41.65155699906],[-71.469482,41.65156699906],[-71.469391,41.65158299906],[-71.469208,41.65160499906],[-71.469055,41.65161699906],[-71.468903,41.65162499906],[-71.468575,41.65164999906],[-71.468391,41.65165799906],[-71.468209,41.65166699906],[-71.467964,41.65166299906],[-71.467835,41.65166999906],[-71.467766,41.65166699906],[-71.467697,41.65167799906],[-71.467628,41.65168399906],[-71.467537,41.65171299906],[-71.467491,41.65173199906],[-71.4674,41.65177899906],[-71.467361,41.65180699906],[-71.467316,41.65183499906],[-71.467232,41.65188999906],[-71.466736,41.65233799906],[-71.466271,41.65273499906],[-71.465767,41.65314199906],[-71.465225,41.65358199906],[-71.464729,41.65400699906],[-71.46466,41.65406199906],[-71.464629,41.65409299906],[-71.464539,41.65418199906],[-71.46447,41.65428199906],[-71.464409,41.65438299906],[-71.464355,41.65448699906],[-71.464295,41.65468199906],[-71.464264,41.65477799906],[-71.464241,41.65484099906],[-71.464218,41.65490899906],[-71.464203,41.65497699906],[-71.464188,41.65512999906],[-71.46418,41.65520299906],[-71.464157,41.65529299906],[-71.464126,41.65537899906],[-71.464088,41.65546599906],[-71.464051,41.65553399906],[-71.464031,41.65556399906],[-71.463974,41.65565299906],[-71.463921,41.65574899906],[-71.463833,41.65592399906],[-71.463745,41.65607699906],[-71.463577,41.65635899906],[-71.463501,41.65647799906],[-71.463417,41.65659199906],[-71.463326,41.65670699906],[-71.463241,41.65681199906],[-71.463188,41.65688099906],[-71.463158,41.65692199906],[-71.463066,41.65702799906],[-71.462967,41.65713299906],[-71.462914,41.65719299906],[-71.462723,41.65737299906],[-71.462631,41.65745099906],[-71.462501,41.65755299906],[-71.46225,41.65776099906],[-71.462135,41.65786299906],[-71.462013,41.65796399906],[-71.461487,41.65841299906],[-71.461029,41.65882299906],[-71.460716,41.65909099906],[-71.460464,41.65930399906],[-71.460411,41.65935399906],[-71.460358,41.65944099906],[-71.460266,41.65966399906],[-71.460259,41.65996099906],[-71.460274,41.66029799906],[-71.460266,41.66054599906],[-71.46019,41.66074999906],[-71.460167,41.66078699906],[-71.460106,41.66088299906],[-71.459618,41.66164099906],[-71.459274,41.66220199906],[-71.458984,41.66267199906],[-71.45829,41.66370499906],[-71.45853,41.66373399906],[-71.458919,41.66373399906],[-71.459534,41.66373099906],[-71.459647,41.66373399906],[-71.459795,41.66374699906],[-71.463726,41.66372499906],[-71.464115,41.66372299906],[-71.464514,41.66371999906],[-71.465007,41.66371699906],[-71.465121,41.66371599906],[-71.465178,41.66371599906],[-71.466037,41.66368499906],[-71.46614,41.66367899906],[-71.468239,41.66362799906],[-71.46985,41.66358799906],[-71.469996,41.66358299906],[-71.47278,41.66352599906],[-71.472941,41.66352399906],[-71.473633,41.66351399906],[-71.473923,41.66350999906],[-71.475833,41.66348499906],[-71.475941,41.66348399906],[-71.476521,41.66347499906],[-71.477069,41.66346599906],[-71.479295,41.66339799906],[-71.479691,41.66338399906],[-71.479839,41.66338999906],[-71.480272,41.66338599906],[-71.484055,41.66335799906],[-71.484434,41.66334799906],[-71.486536,41.66329099906],[-71.487163,41.66327399906],[-71.48744,41.66326699906],[-71.487803,41.66325699906],[-71.487947,41.66325299906],[-71.488028,41.66325099906],[-71.488189,41.66324699906],[-71.488365,41.66324099906],[-71.489513,41.66321099906],[-71.490206,41.66319299906]]]}}"}, +{"type": "blockgroup", "typeId": 209042, "areaId": 29210, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.495697,41.60263399906],[-71.495541,41.60263299906],[-71.494662,41.60262699906],[-71.494466,41.60262499906],[-71.491614,41.60260299906],[-71.491245,41.60259999906],[-71.490892,41.60259699906],[-71.490538,41.60259499906],[-71.490141,41.60259199906],[-71.488451,41.60257899906],[-71.48781,41.60257399906],[-71.486071,41.60256799906],[-71.485453,41.60256599906],[-71.485361,41.60257399906],[-71.485272,41.60258299906],[-71.484427,41.60259099906],[-71.484454,41.60367799906],[-71.484458,41.60373899906],[-71.484581,41.60463099906],[-71.48465,41.60536699906],[-71.484786,41.60682599906],[-71.484863,41.60764999906],[-71.484965,41.60867199906],[-71.485031,41.60933999906],[-71.485092,41.60995999906],[-71.485138,41.61041399906],[-71.485283,41.61183299906],[-71.48539,41.61191699906],[-71.485451,41.61202299906],[-71.48542,41.61215899906],[-71.485379,41.61241799906],[-71.485386,41.61243299906],[-71.485371,41.61249199906],[-71.485403,41.61257199906],[-71.485443,41.61263099906],[-71.485461,41.61269199906],[-71.485436,41.61275499906],[-71.485399,41.61281699906],[-71.485384,41.61287199906],[-71.485403,41.61292999906],[-71.485451,41.61297399906],[-71.485538,41.61298699906],[-71.485652,41.61298599906],[-71.485765,41.61298699906],[-71.485873,41.61299999906],[-71.485985,41.61303099906],[-71.486069,41.61306999906],[-71.486148,41.61312299906],[-71.486215,41.61318399906],[-71.486273,41.61324099906],[-71.486332,41.61327599906],[-71.486413,41.61328899906],[-71.486511,41.61329599906],[-71.486624,41.61329999906],[-71.486746,41.61331599906],[-71.486851,41.61334499906],[-71.486925,41.61337999906],[-71.487005,41.61340699906],[-71.487094,41.61343099906],[-71.487175,41.61345899906],[-71.487279,41.61345999906],[-71.487358,41.61342699906],[-71.487443,41.61344399906],[-71.487503,41.61348699906],[-71.487515,41.61353599906],[-71.487479,41.61359099906],[-71.487419,41.61365399906],[-71.487356,41.61372099906],[-71.487286,41.61378599906],[-71.487223,41.61384699906],[-71.487178,41.61391099906],[-71.487161,41.61397999906],[-71.487195,41.61403699906],[-71.487264,41.61406999906],[-71.487355,41.61409499906],[-71.487456,41.61412099906],[-71.487546,41.61415399906],[-71.48761,41.61420099906],[-71.487631,41.61426499906],[-71.487632,41.61433499906],[-71.487609,41.61440499906],[-71.487567,41.61447899906],[-71.487559,41.61455399906],[-71.487567,41.61462999906],[-71.487559,41.61470099906],[-71.487556,41.61476899906],[-71.487569,41.61482899906],[-71.487613,41.61487899906],[-71.487686,41.61491699906],[-71.487765,41.61494399906],[-71.487831,41.61498699906],[-71.487888,41.61504199906],[-71.487944,41.61509999906],[-71.488005,41.61516899906],[-71.488031,41.61521299906],[-71.488036,41.61527199906],[-71.488021,41.61533699906],[-71.487999,41.61539999906],[-71.487965,41.61545599906],[-71.487912,41.61550299906],[-71.487844,41.61553499906],[-71.487777,41.61556399906],[-71.487724,41.61562699906],[-71.487771,41.61572999906],[-71.487826,41.61578999906],[-71.487889,41.61585399906],[-71.487947,41.61592399906],[-71.488039,41.61604799906],[-71.488065,41.61610599906],[-71.488077,41.61617399906],[-71.48807,41.61625199906],[-71.488039,41.61633399906],[-71.487989,41.61641099906],[-71.487926,41.61648999906],[-71.487854,41.61656699906],[-71.487788,41.61663899906],[-71.487726,41.61670799906],[-71.487663,41.61677299906],[-71.487591,41.61682999906],[-71.487515,41.61687999906],[-71.487441,41.61690499906],[-71.487361,41.61689499906],[-71.487279,41.61685599906],[-71.487196,41.61679899906],[-71.487117,41.61673599906],[-71.487048,41.61668499906],[-71.487005,41.61666699906],[-71.48697,41.61665299906],[-71.486873,41.61663699906],[-71.486762,41.61664999906],[-71.486651,41.61668999906],[-71.486534,41.61673999906],[-71.486414,41.61678599906],[-71.486291,41.61682799906],[-71.486173,41.61686899906],[-71.48607,41.61690299906],[-71.486001,41.61693499906],[-71.486009,41.61705099906],[-71.486066,41.61712399906],[-71.486139,41.61719999906],[-71.486213,41.61727899906],[-71.486273,41.61735999906],[-71.48631,41.61744699906],[-71.486304,41.61753399906],[-71.486267,41.61762999906],[-71.486235,41.61773099906],[-71.486212,41.61783699906],[-71.4862,41.61789199906],[-71.486192,41.61794599906],[-71.486189,41.61800099906],[-71.48619,41.61805499906],[-71.48619,41.61817099906],[-71.486191,41.61823099906],[-71.486196,41.61829099906],[-71.486208,41.61835099906],[-71.486225,41.61840999906],[-71.486245,41.61846599906],[-71.486264,41.61852199906],[-71.486282,41.61858099906],[-71.486299,41.61863799906],[-71.486317,41.61869499906],[-71.486327,41.61873199906],[-71.486334,41.61875899906],[-71.486295,41.61884399906],[-71.486288,41.61889799906],[-71.486303,41.61894199906],[-71.486299,41.61900999906],[-71.486279,41.61906399906],[-71.486245,41.61909099906],[-71.486173,41.61906699906],[-71.486159,41.61908899906],[-71.486143,41.61915299906],[-71.486209,41.61918299906],[-71.486234,41.61924099906],[-71.486213,41.61930099906],[-71.486199,41.61935499906],[-71.486197,41.61941899906],[-71.486196,41.61949599906],[-71.486195,41.61957499906],[-71.486183,41.61962899906],[-71.486147,41.61970399906],[-71.486111,41.61977399906],[-71.486073,41.61983299906],[-71.486017,41.61987399906],[-71.48595,41.61990099906],[-71.485873,41.61993199906],[-71.485815,41.61998599906],[-71.48571,41.61997299906],[-71.485627,41.61997099906],[-71.485571,41.62001299906],[-71.485511,41.62005699906],[-71.48543,41.62009499906],[-71.485345,41.62013299906],[-71.485261,41.62017599906],[-71.485185,41.62022099906],[-71.485115,41.62026599906],[-71.485047,41.62031499906],[-71.484993,41.62036099906],[-71.484954,41.62041099906],[-71.484919,41.62047099906],[-71.484884,41.62054299906],[-71.484856,41.62059499906],[-71.484823,41.62064599906],[-71.484771,41.62071299906],[-71.484724,41.62077399906],[-71.484685,41.62082899906],[-71.484646,41.62087999906],[-71.484601,41.62093999906],[-71.484557,41.62099699906],[-71.484508,41.62105899906],[-71.484457,41.62112399906],[-71.484418,41.62117399906],[-71.484379,41.62122799906],[-71.484338,41.62128599906],[-71.484302,41.62134499906],[-71.48427,41.62140699906],[-71.484228,41.62146099906],[-71.484175,41.62150399906],[-71.484121,41.62154599906],[-71.484067,41.62158699906],[-71.484008,41.62162399906],[-71.483939,41.62165299906],[-71.483868,41.62167699906],[-71.483752,41.62169799906],[-71.483698,41.62166499906],[-71.483702,41.62160999906],[-71.483726,41.62153799906],[-71.483722,41.62147999906],[-71.483682,41.62140699906],[-71.4836,41.62137299906],[-71.483497,41.62137499906],[-71.483403,41.62141099906],[-71.483339,41.62147199906],[-71.483306,41.62154699906],[-71.483297,41.62160399906],[-71.483293,41.62166599906],[-71.483294,41.62172699906],[-71.483302,41.62178599906],[-71.483318,41.62184799906],[-71.483334,41.62191299906],[-71.483355,41.62197599906],[-71.483355,41.62205799906],[-71.483321,41.62211799906],[-71.483241,41.62214799906],[-71.48317,41.62215999906],[-71.483094,41.62217299906],[-71.483017,41.62219099906],[-71.482916,41.62222199906],[-71.482851,41.62224999906],[-71.482789,41.62228399906],[-71.482735,41.62232699906],[-71.482693,41.62237599906],[-71.482662,41.62245499906],[-71.482649,41.62251099906],[-71.482635,41.62257199906],[-71.482613,41.62263799906],[-71.482593,41.62270999906],[-71.482576,41.62278399906],[-71.482566,41.62285799906],[-71.482563,41.62292499906],[-71.482554,41.62298299906],[-71.482462,41.62311599906],[-71.482443,41.62319099906],[-71.482422,41.62326999906],[-71.482443,41.62332099906],[-71.482491,41.62336699906],[-71.482512,41.62342099906],[-71.482475,41.62346999906],[-71.482462,41.62351699906],[-71.482482,41.62357999906],[-71.482417,41.62360999906],[-71.48232,41.62362999906],[-71.482234,41.62362499906],[-71.482174,41.62359099906],[-71.482115,41.62354699906],[-71.482023,41.62353299906],[-71.481953,41.62354599906],[-71.481897,41.62356299906],[-71.481855,41.62358399906],[-71.48185,41.62367399906],[-71.481875,41.62371899906],[-71.481852,41.62372699906],[-71.481811,41.62373699906],[-71.481738,41.62376899906],[-71.481628,41.62378199906],[-71.48153,41.62378999906],[-71.481325,41.62380299906],[-71.480816,41.62387699906],[-71.480654,41.62391399906],[-71.480578,41.62393199906],[-71.480475,41.62395599906],[-71.480378,41.62397699906],[-71.480304,41.62399699906],[-71.480236,41.62402099906],[-71.480167,41.62405999906],[-71.480104,41.62410699906],[-71.48006,41.62415899906],[-71.480018,41.62422499906],[-71.479985,41.62427799906],[-71.479958,41.62433199906],[-71.479923,41.62439099906],[-71.479839,41.62445199906],[-71.47977,41.62447799906],[-71.479358,41.62419999906],[-71.476302,41.62603699906],[-71.476128,41.62613999906],[-71.476023,41.62620399906],[-71.476007,41.62621399906],[-71.47191,41.62867799906],[-71.47132,41.62907599906],[-71.471744,41.62998999906],[-71.47189,41.63036599906],[-71.471961,41.63054899906],[-71.472092,41.63089799906],[-71.472535,41.63207699906],[-71.472523,41.63208599906],[-71.472454,41.63214299906],[-71.472394,41.63219899906],[-71.472337,41.63224199906],[-71.472267,41.63229699906],[-71.472242,41.63234899906],[-71.472238,41.63248799906],[-71.472229,41.63255699906],[-71.47221,41.63262399906],[-71.472177,41.63268799906],[-71.472135,41.63274699906],[-71.472077,41.63279599906],[-71.472002,41.63283999906],[-71.471917,41.63287999906],[-71.471823,41.63291399906],[-71.471718,41.63294499906],[-71.471612,41.63297499906],[-71.471521,41.63300199906],[-71.471445,41.63302699906],[-71.471373,41.63304999906],[-71.471302,41.63307999906],[-71.471239,41.63311999906],[-71.471182,41.63316499906],[-71.471134,41.63320799906],[-71.471081,41.63324899906],[-71.470999,41.63328299906],[-71.470903,41.63331899906],[-71.470807,41.63336199906],[-71.470722,41.63341699906],[-71.470652,41.63347599906],[-71.47053,41.63359799906],[-71.470475,41.63366099906],[-71.470427,41.63372799906],[-71.47038,41.63379999906],[-71.470269,41.63394799906],[-71.470213,41.63401099906],[-71.47011,41.63414599906],[-71.470058,41.63420699906],[-71.470017,41.63425499906],[-71.469964,41.63430499906],[-71.469905,41.63435599906],[-71.469845,41.63440699906],[-71.469806,41.63443799906],[-71.469787,41.63445299906],[-71.469727,41.63449899906],[-71.469666,41.63453599906],[-71.469567,41.63456299906],[-71.469461,41.63456599906],[-71.469387,41.63457299906],[-71.469305,41.63458799906],[-71.469216,41.63459599906],[-71.469034,41.63459599906],[-71.468961,41.63459299906],[-71.46887,41.63458499906],[-71.468787,41.63456899906],[-71.468702,41.63454499906],[-71.468614,41.63451699906],[-71.468552,41.63449099906],[-71.468464,41.63444199906],[-71.468403,41.63439699906],[-71.468372,41.63437399906],[-71.468335,41.63434499906],[-71.468266,41.63429099906],[-71.468203,41.63424199906],[-71.468141,41.63420699906],[-71.468077,41.63416499906],[-71.468008,41.63414399906],[-71.467928,41.63414799906],[-71.467844,41.63416499906],[-71.467867,41.63436699906],[-71.467873,41.63442199906],[-71.468013,41.63538799906],[-71.4681,41.63550199906],[-71.468379,41.63682799906],[-71.468422,41.63704499906],[-71.468526,41.63760299906],[-71.468692,41.63859399906],[-71.468541,41.63863499906],[-71.467737,41.63870099906],[-71.465875,41.63883099906],[-71.464831,41.63890399906],[-71.464874,41.63896699906],[-71.465014,41.63990099906],[-71.465156,41.64065499906],[-71.465574,41.64301199906],[-71.465652,41.64309799906],[-71.46582,41.64295499906],[-71.46592,41.64288099906],[-71.466575,41.64328499906],[-71.466637,41.64332499906],[-71.466858,41.64345999906],[-71.467346,41.64375999906],[-71.467514,41.64385999906],[-71.467911,41.64411199906],[-71.468124,41.64423399906],[-71.468628,41.64452499906],[-71.469223,41.64490399906],[-71.469475,41.64505099906],[-71.469502,41.64506699906],[-71.469757,41.64521199906],[-71.470474,41.64558799906],[-71.470688,41.64569199906],[-71.471199,41.64594699906],[-71.472053,41.64638299906],[-71.472656,41.64673899906],[-71.473709,41.64732899906],[-71.47419,41.64761099906],[-71.474434,41.64782199906],[-71.474503,41.64780299906],[-71.475023,41.64768799906],[-71.475502,41.64757399906],[-71.475799,41.64750899906],[-71.476326,41.64738999906],[-71.476959,41.64726799906],[-71.47786,41.64707299906],[-71.478523,41.64697299906],[-71.478696,41.64695299906],[-71.479355,41.64687399906],[-71.480431,41.64673399906],[-71.48072,41.64669599906],[-71.481827,41.64657299906],[-71.481895,41.64656299906],[-71.482567,41.64650299906],[-71.48349,41.64639299906],[-71.484116,41.64634399906],[-71.48423,41.64633199906],[-71.484581,41.64630599906],[-71.485924,41.64619199906],[-71.485977,41.64618199906],[-71.48658,41.64613299906],[-71.486961,41.64609699906],[-71.487137,41.64608499906],[-71.487419,41.64605999906],[-71.487465,41.64605499906],[-71.487671,41.64604199906],[-71.487663,41.64599199906],[-71.487617,41.64567299906],[-71.487526,41.64502199906],[-71.48745,41.64436199906],[-71.487373,41.64370599906],[-71.487305,41.64304599906],[-71.487266,41.64248799906],[-71.487229,41.64193499906],[-71.487198,41.64137799906],[-71.487175,41.64083299906],[-71.48716,41.64027999906],[-71.487137,41.63973499906],[-71.487038,41.63672899906],[-71.486984,41.63523499906],[-71.486961,41.63461899906],[-71.486916,41.63318099906],[-71.486911,41.63240699906],[-71.486884,41.63159499906],[-71.486873,41.63137499906],[-71.486831,41.63046899906],[-71.486801,41.62944399906],[-71.486797,41.62934299906],[-71.486794,41.62925399906],[-71.486755,41.62803999906],[-71.486756,41.62795399906],[-71.486656,41.62554299906],[-71.486656,41.62543499906],[-71.486658,41.62528199906],[-71.486656,41.62502899906],[-71.486648,41.62486299906],[-71.486632,41.62434099906],[-71.48658,41.62272999906],[-71.486526,41.62124899906],[-71.486519,41.62095199906],[-71.486504,41.62065599906],[-71.486511,41.62036299906],[-71.486527,41.62009199906],[-71.486564,41.61982999906],[-71.486618,41.61956799906],[-71.486694,41.61926399906],[-71.486794,41.61896999906],[-71.486916,41.61867899906],[-71.487076,41.61835599906],[-71.487251,41.61803699906],[-71.487457,41.61772599906],[-71.487625,41.61751499906],[-71.488007,41.61707899906],[-71.488174,41.61690899906],[-71.488518,41.61664499906],[-71.488899,41.61631699906],[-71.489258,41.61602499906],[-71.48967,41.61566999906],[-71.490181,41.61524899906],[-71.490623,41.61487399906],[-71.491043,41.61452799906],[-71.491501,41.61415699906],[-71.49176,41.61393999906],[-71.491875,41.61384799906],[-71.492119,41.61259499906],[-71.492165,41.61214399906],[-71.492348,41.61017599906],[-71.492444,41.60963099906],[-71.492462,41.60942599906],[-71.492485,41.60909299906],[-71.492508,41.60890299906],[-71.492554,41.60870799906],[-71.492622,41.60847699906],[-71.49276,41.60815399906],[-71.492905,41.60791299906],[-71.492973,41.60781199906],[-71.492989,41.60777599906],[-71.493027,41.60772499906],[-71.493217,41.60745599906],[-71.493378,41.60722199906],[-71.493439,41.60713499906],[-71.493637,41.60683799906],[-71.493919,41.60641799906],[-71.494171,41.60604799906],[-71.494522,41.60553599906],[-71.494667,41.60532099906],[-71.494758,41.60518399906],[-71.494927,41.60493299906],[-71.495064,41.60472699906],[-71.495255,41.60437199906],[-71.495324,41.60421299906],[-71.495354,41.60414399906],[-71.495438,41.60389499906],[-71.495537,41.60348299906],[-71.495628,41.60297699906],[-71.495689,41.60267999906],[-71.495697,41.60263399906]]]}}"}, +{"type": "blockgroup", "typeId": 210011, "areaId": 29211, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.415806,41.76290199906],[-71.415732,41.76280399906],[-71.415131,41.76199499906],[-71.415055,41.76183499906],[-71.414955,41.76184099906],[-71.414841,41.76182999906],[-71.414711,41.76179699906],[-71.414177,41.76157399906],[-71.414139,41.76155699906],[-71.413574,41.76135199906],[-71.413071,41.76123199906],[-71.41304,41.76122399906],[-71.412613,41.76110199906],[-71.412445,41.76103799906],[-71.412308,41.76095099906],[-71.412216,41.76088099906],[-71.412155,41.76080599906],[-71.412087,41.76070799906],[-71.412041,41.76053799906],[-71.411888,41.75992399906],[-71.411713,41.75923899906],[-71.411537,41.75843199906],[-71.4114,41.75783199906],[-71.411354,41.75765699906],[-71.411209,41.75702999906],[-71.411095,41.75655899906],[-71.411019,41.75623599906],[-71.410965,41.75598499906],[-71.410614,41.75623099906],[-71.410545,41.75627799906],[-71.41047,41.75633199906],[-71.410263,41.75648199906],[-71.40991,41.75673399906],[-71.409592,41.75695999906],[-71.408806,41.75749899906],[-71.40831,41.75784699906],[-71.408226,41.75790699906],[-71.407967,41.75808799906],[-71.407417,41.75847299906],[-71.407182,41.75863299906],[-71.406783,41.75891299906],[-71.406395,41.75918399906],[-71.406021,41.75943899906],[-71.405876,41.75954599906],[-71.405783,41.75960999906],[-71.405716,41.75965599906],[-71.404915,41.76020999906],[-71.404754,41.76031699906],[-71.404793,41.76106399906],[-71.404808,41.76134299906],[-71.404831,41.76171999906],[-71.404877,41.76249399906],[-71.404892,41.76275899906],[-71.404922,41.76315499906],[-71.40496,41.76380299906],[-71.404991,41.76416199906],[-71.405014,41.76444999906],[-71.405023,41.76466399906],[-71.405076,41.76559799906],[-71.4051,41.76623599906],[-71.40519,41.76745699906],[-71.405203,41.76760999906],[-71.405646,41.76758399906],[-71.406449,41.76745999906],[-71.407191,41.76740399906],[-71.407777,41.76726399906],[-71.408114,41.76714899906],[-71.408375,41.76703699906],[-71.408629,41.76694499906],[-71.4089,41.76688799906],[-71.409234,41.76684299906],[-71.409678,41.76678299906],[-71.409751,41.76677499906],[-71.40979,41.76676599906],[-71.410259,41.76665599906],[-71.410702,41.76655399906],[-71.410728,41.76653999906],[-71.41116,41.76630299906],[-71.411419,41.76608599906],[-71.412116,41.76514799906],[-71.412183,41.76505799906],[-71.412352,41.76483099906],[-71.412642,41.76454499906],[-71.413314,41.76408299906],[-71.413482,41.76384299906],[-71.413492,41.76381799906],[-71.413543,41.76368299906],[-71.413589,41.76354599906],[-71.413677,41.76332799906],[-71.413803,41.76322699906],[-71.413971,41.76312399906],[-71.414124,41.76305599906],[-71.414383,41.76295299906],[-71.41475,41.76291899906],[-71.415131,41.76291899906],[-71.415806,41.76290199906]]]}}"}, +{"type": "blockgroup", "typeId": 210012, "areaId": 29212, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.42202,41.75209199906],[-71.422012,41.75202899906],[-71.421997,41.75197099906],[-71.421951,41.75186399906],[-71.421898,41.75180599906],[-71.421852,41.75175799906],[-71.421814,41.75170899906],[-71.421784,41.75165999906],[-71.42176,41.75160199906],[-71.421753,41.75154399906],[-71.421745,41.75148999906],[-71.421745,41.75143099906],[-71.421776,41.75131299906],[-71.421791,41.75119599906],[-71.421791,41.75101099906],[-71.421776,41.75095299906],[-71.421707,41.75091399906],[-71.421638,41.75090199906],[-71.421562,41.75091699906],[-71.421486,41.75094999906],[-71.421409,41.75097399906],[-71.421333,41.75099399906],[-71.421155,41.75102999906],[-71.421066,41.75104899906],[-71.421005,41.75106399906],[-71.420944,41.75109199906],[-71.420876,41.75111599906],[-71.420815,41.75114499906],[-71.420754,41.75118199906],[-71.420669,41.75127399906],[-71.420593,41.75129799906],[-71.420471,41.75137199906],[-71.420372,41.75140199906],[-71.420288,41.75140299906],[-71.420212,41.75143599906],[-71.420143,41.75145099906],[-71.420075,41.75144399906],[-71.419991,41.75145899906],[-71.419907,41.75145599906],[-71.41983,41.75143099906],[-71.419754,41.75143699906],[-71.419678,41.75142499906],[-71.419594,41.75141299906],[-71.419525,41.75143699906],[-71.419449,41.75144399906],[-71.419365,41.75142299906],[-71.419319,41.75140599906],[-71.419311,41.75133799906],[-71.419243,41.75130799906],[-71.419128,41.75123399906],[-71.419067,41.75119899906],[-71.419014,41.75115999906],[-71.418953,41.75112099906],[-71.418899,41.75107699906],[-71.418884,41.75095599906],[-71.418869,41.75090199906],[-71.418869,41.75085199906],[-71.418838,41.75065999906],[-71.418793,41.75068299906],[-71.418305,41.75094499906],[-71.418091,41.75106199906],[-71.417458,41.75146299906],[-71.416939,41.75182999906],[-71.416466,41.75216399906],[-71.415795,41.75264199906],[-71.41552,41.75282799906],[-71.415176,41.75306399906],[-71.413841,41.75397999906],[-71.413796,41.75400799906],[-71.413177,41.75443899906],[-71.412659,41.75480599906],[-71.412514,41.75490399906],[-71.412254,41.75508899906],[-71.411721,41.75546099906],[-71.410965,41.75598499906],[-71.411019,41.75623599906],[-71.411095,41.75655899906],[-71.411209,41.75702999906],[-71.411354,41.75765699906],[-71.4114,41.75783199906],[-71.411537,41.75843199906],[-71.411713,41.75923899906],[-71.411888,41.75992399906],[-71.412041,41.76053799906],[-71.412087,41.76070799906],[-71.412155,41.76080599906],[-71.412216,41.76088099906],[-71.412308,41.76095099906],[-71.412445,41.76103799906],[-71.412613,41.76110199906],[-71.41304,41.76122399906],[-71.413071,41.76123199906],[-71.413574,41.76135199906],[-71.414139,41.76155699906],[-71.414177,41.76157399906],[-71.414711,41.76179699906],[-71.414841,41.76182999906],[-71.414955,41.76184099906],[-71.415055,41.76183499906],[-71.415131,41.76199499906],[-71.415732,41.76280399906],[-71.415806,41.76290199906],[-71.416016,41.76289699906],[-71.416336,41.76285199906],[-71.416657,41.76276099906],[-71.417066,41.76249099906],[-71.417405,41.76231599906],[-71.417586,41.76225399906],[-71.417848,41.76216699906],[-71.418519,41.76204199906],[-71.418946,41.76195099906],[-71.419078,41.76188499906],[-71.419019,41.76177899906],[-71.419214,41.76168799906],[-71.419307,41.76164499906],[-71.419716,41.76151499906],[-71.419986,41.76155499906],[-71.420082,41.76160299906],[-71.420135,41.76151599906],[-71.420151,41.76142099906],[-71.420174,41.76137599906],[-71.420227,41.76133399906],[-71.42025,41.76129299906],[-71.420258,41.76127499906],[-71.420273,41.76121999906],[-71.420288,41.76108499906],[-71.420288,41.76102199906],[-71.420303,41.76095399906],[-71.420349,41.76089899906],[-71.420418,41.76086199906],[-71.420494,41.76087399906],[-71.420563,41.76090799906],[-71.420639,41.76092499906],[-71.420715,41.76093599906],[-71.420807,41.76094799906],[-71.420868,41.76091099906],[-71.420921,41.76086899906],[-71.420975,41.76082299906],[-71.421021,41.76077699906],[-71.421066,41.76071699906],[-71.421074,41.76064999906],[-71.421059,41.76058699906],[-71.42102,41.76051999906],[-71.420967,41.76046699906],[-71.420929,41.76040099906],[-71.420891,41.76034699906],[-71.420784,41.76025899906],[-71.420746,41.76020599906],[-71.420746,41.76014299906],[-71.420761,41.76008399906],[-71.420799,41.76002999906],[-71.420921,41.75994599906],[-71.420929,41.75988299906],[-71.420929,41.75982899906],[-71.420914,41.75970299906],[-71.420891,41.75967599906],[-71.420868,41.75965899906],[-71.420799,41.75963799906],[-71.420738,41.75960799906],[-71.420685,41.75955499906],[-71.420647,41.75951499906],[-71.420555,41.75939999906],[-71.420517,41.75935099906],[-71.420494,41.75929699906],[-71.420463,41.75924399906],[-71.420448,41.75918999906],[-71.420448,41.75913199906],[-71.420441,41.75906899906],[-71.42041,41.75900699906],[-71.420379,41.75894899906],[-71.420357,41.75888599906],[-71.420303,41.75876999906],[-71.420303,41.75870699906],[-71.420288,41.75863999906],[-71.420227,41.75852399906],[-71.420166,41.75848499906],[-71.42012,41.75843599906],[-71.420082,41.75838299906],[-71.420052,41.75832499906],[-71.420013,41.75825799906],[-71.41999,41.75819999906],[-71.419952,41.75814699906],[-71.419922,41.75809399906],[-71.419861,41.75796899906],[-71.419845,41.75791099906],[-71.419838,41.75783899906],[-71.419838,41.75777599906],[-71.419846,41.75770299906],[-71.419838,41.75763199906],[-71.419807,41.75755599906],[-71.419739,41.75741799906],[-71.419708,41.75734599906],[-71.419678,41.75719799906],[-71.419647,41.75708599906],[-71.419647,41.75685699906],[-71.419655,41.75677999906],[-71.419678,41.75675199906],[-71.419701,41.75671599906],[-71.419762,41.75664699906],[-71.419808,41.75660099906],[-71.419876,41.75653699906],[-71.419945,41.75647699906],[-71.419998,41.75641699906],[-71.420044,41.75637099906],[-71.420097,41.75631099906],[-71.420227,41.75620499906],[-71.420372,41.75611599906],[-71.420402,41.75609299906],[-71.420425,41.75607499906],[-71.420471,41.75603299906],[-71.42054,41.75598199906],[-71.420601,41.75592699906],[-71.420669,41.75587999906],[-71.420807,41.75579599906],[-71.420883,41.75575399906],[-71.420952,41.75572999906],[-71.421028,41.75572399906],[-71.421239,41.75567399906],[-71.421226,41.75560299906],[-71.421188,41.75532899906],[-71.421177,41.75521099906],[-71.421173,41.75517599906],[-71.42115,41.75503699906],[-71.42112,41.75487999906],[-71.421097,41.75474999906],[-71.421112,41.75468199906],[-71.421143,41.75462299906],[-71.421203,41.75457199906],[-71.421295,41.75452999906],[-71.421387,41.75446499906],[-71.421427,41.75441299906],[-71.42144,41.75439599906],[-71.421463,41.75429699906],[-71.421438,41.75409799906],[-71.421402,41.75379399906],[-71.421799,41.75376299906],[-71.422001,41.75374499906],[-71.421982,41.75369099906],[-71.421944,41.75362399906],[-71.421921,41.75356599906],[-71.421883,41.75351799906],[-71.421837,41.75346899906],[-71.421806,41.75341599906],[-71.421776,41.75335799906],[-71.421768,41.75329899906],[-71.421776,41.75324099906],[-71.421768,41.75318199906],[-71.421768,41.75305199906],[-71.421772,41.75302199906],[-71.421783,41.75292499906],[-71.421814,41.75280299906],[-71.421906,41.75262599906],[-71.421943,41.75256199906],[-71.421974,41.75250299906],[-71.421997,41.75243899906],[-71.422005,41.75238499906],[-71.422012,41.75232199906],[-71.422012,41.75226799906],[-71.42202,41.75220899906],[-71.42202,41.75209199906]]]}}"}, +{"type": "blockgroup", "typeId": 210021, "areaId": 29213, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.405203,41.76760999906],[-71.40519,41.76745699906],[-71.4051,41.76623599906],[-71.405076,41.76559799906],[-71.405023,41.76466399906],[-71.405014,41.76444999906],[-71.404991,41.76416199906],[-71.40496,41.76380299906],[-71.404922,41.76315499906],[-71.404892,41.76275899906],[-71.404877,41.76249399906],[-71.404831,41.76171999906],[-71.404808,41.76134299906],[-71.404793,41.76106399906],[-71.404754,41.76031699906],[-71.404297,41.76062399906],[-71.403824,41.76092599906],[-71.403656,41.76103299906],[-71.403031,41.76137099906],[-71.402977,41.76139899906],[-71.402474,41.76162599906],[-71.402374,41.76166399906],[-71.402222,41.76172499906],[-71.401977,41.76181599906],[-71.401596,41.76194099906],[-71.40139,41.76199499906],[-71.401291,41.76201999906],[-71.400818,41.76208799906],[-71.400719,41.76210399906],[-71.400482,41.76213999906],[-71.400253,41.76216699906],[-71.399808,41.76223599906],[-71.39962,41.76226599906],[-71.399162,41.76231599906],[-71.39843,41.76236299906],[-71.398399,41.76236399906],[-71.397935,41.76239199906],[-71.397759,41.76240399906],[-71.397447,41.76242199906],[-71.397286,41.76243199906],[-71.397118,41.76243999906],[-71.396817,41.76245699906],[-71.396736,41.76246099906],[-71.396431,41.76247699906],[-71.396233,41.76248899906],[-71.395233,41.76254199906],[-71.394775,41.76256999906],[-71.394577,41.76258299906],[-71.394256,41.76259399906],[-71.39418,41.76219899906],[-71.394066,41.76156199906],[-71.39405,41.76146399906],[-71.393952,41.76099699906],[-71.393844,41.76043199906],[-71.393761,41.76001099906],[-71.393715,41.75969599906],[-71.393707,41.75965199906],[-71.3937,41.75911099906],[-71.393204,41.75910399906],[-71.392021,41.75910999906],[-71.39241,41.75876899906],[-71.392601,41.75859799906],[-71.392777,41.75844599906],[-71.392891,41.75834499906],[-71.393601,41.75771299906],[-71.393631,41.75768099906],[-71.393684,41.75759899906],[-71.393692,41.75755299906],[-71.393699,41.75748999906],[-71.39373,41.75717899906],[-71.393753,41.75691299906],[-71.392624,41.75680099906],[-71.392143,41.75676199906],[-71.391785,41.75671499906],[-71.391678,41.75669899906],[-71.391625,41.75669599906],[-71.391312,41.75667099906],[-71.391228,41.75666799906],[-71.390763,41.75661899906],[-71.39019,41.75656799906],[-71.389709,41.75651499906],[-71.389526,41.75649599906],[-71.389389,41.75648599906],[-71.389214,41.75648899906],[-71.388634,41.75665499906],[-71.387955,41.75682199906],[-71.387291,41.75700199906],[-71.387115,41.75705099906],[-71.386681,41.75716299906],[-71.386344,41.75671199906],[-71.384733,41.75760199906],[-71.385659,41.75842099906],[-71.386525,41.76004499906],[-71.388517,41.76377499906],[-71.38892,41.76397799906],[-71.389031,41.76403399906],[-71.389198,41.76413199906],[-71.389451,41.76424099906],[-71.389898,41.76429899906],[-71.390416,41.76442699906],[-71.390534,41.76439099906],[-71.391054,41.76437299906],[-71.391077,41.76435599906],[-71.391314,41.76418399906],[-71.39155,41.76400799906],[-71.3918,41.76390299906],[-71.391969,41.76386399906],[-71.392962,41.76393499906],[-71.393725,41.76401499906],[-71.394121,41.76403799906],[-71.394457,41.76410699906],[-71.394731,41.76424499906],[-71.395204,41.76464499906],[-71.395412,41.76483699906],[-71.395523,41.76518599906],[-71.395565,41.76561399906],[-71.395603,41.76599399906],[-71.395598,41.76638699906],[-71.395628,41.76668399906],[-71.395734,41.76688999906],[-71.395886,41.76703799906],[-71.396069,41.76715299906],[-71.396121,41.76716699906],[-71.396435,41.76725599906],[-71.397091,41.76739399906],[-71.397113,41.76739799906],[-71.39764,41.76750799906],[-71.398052,41.76765699906],[-71.398617,41.76791399906],[-71.399134,41.76814899906],[-71.399378,41.76826399906],[-71.399577,41.76832099906],[-71.399805,41.76833299906],[-71.400019,41.76827599906],[-71.400203,41.76818099906],[-71.400263,41.76814999906],[-71.400477,41.76795599906],[-71.400569,41.76779599906],[-71.400585,41.76761399906],[-71.400585,41.76737399906],[-71.400601,41.76706499906],[-71.400616,41.76683699906],[-71.400678,41.76666599906],[-71.400846,41.76650599906],[-71.401151,41.76649499906],[-71.401395,41.76655199906],[-71.401563,41.76668899906],[-71.401776,41.76686099906],[-71.40208,41.76721499906],[-71.402355,41.76752399906],[-71.40269,41.76769499906],[-71.403026,41.76779899906],[-71.403468,41.76785599906],[-71.403849,41.76784499906],[-71.404261,41.76777699906],[-71.405086,41.76761799906],[-71.405203,41.76760999906]]]}}"}, +{"type": "blockgroup", "typeId": 210022, "areaId": 29214, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.394028,41.75343999906],[-71.394017,41.75285499906],[-71.394013,41.75258399906],[-71.394005,41.75229599906],[-71.39399,41.75188199906],[-71.393966,41.75128399906],[-71.392944,41.75126499906],[-71.392044,41.75124299906],[-71.391792,41.75122599906],[-71.391342,41.75119899906],[-71.391037,41.75116899906],[-71.391007,41.75077799906],[-71.390991,41.75009799906],[-71.389038,41.75012099906],[-71.387825,41.75013299906],[-71.38649,41.75015599906],[-71.38491,41.75017999906],[-71.383583,41.75019799906],[-71.383621,41.75049899906],[-71.383667,41.75074599906],[-71.383697,41.75092099906],[-71.382583,41.75121299906],[-71.382371,41.75108399906],[-71.380959,41.75022299906],[-71.380191,41.74981099906],[-71.374965,41.74964099906],[-71.375242,41.75015799906],[-71.375354,41.75036799906],[-71.378273,41.75529699906],[-71.380971,41.75580199906],[-71.381116,41.75582899906],[-71.38225,41.75604099906],[-71.382971,41.75617399906],[-71.384733,41.75760199906],[-71.386344,41.75671199906],[-71.386681,41.75716299906],[-71.387115,41.75705099906],[-71.387291,41.75700199906],[-71.387955,41.75682199906],[-71.388634,41.75665499906],[-71.389214,41.75648899906],[-71.389389,41.75648599906],[-71.389526,41.75649599906],[-71.389709,41.75651499906],[-71.39019,41.75656799906],[-71.390763,41.75661899906],[-71.391228,41.75666799906],[-71.391312,41.75667099906],[-71.391625,41.75669599906],[-71.391678,41.75669899906],[-71.391785,41.75671499906],[-71.392143,41.75676199906],[-71.392624,41.75680099906],[-71.393753,41.75691299906],[-71.393776,41.75662399906],[-71.393814,41.75622199906],[-71.393829,41.75607799906],[-71.393845,41.75586199906],[-71.393875,41.75553699906],[-71.393906,41.75513999906],[-71.393936,41.75485099906],[-71.393997,41.75429099906],[-71.394028,41.75343999906]]]}}"}, +{"type": "blockgroup", "typeId": 210023, "areaId": 29215, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.404754,41.76031699906],[-71.404716,41.75979099906],[-71.404657,41.75900999906],[-71.404631,41.75867499906],[-71.404526,41.75732199906],[-71.404472,41.75646399906],[-71.40445,41.75622999906],[-71.404434,41.75595599906],[-71.404411,41.75559099906],[-71.40435,41.75477299906],[-71.404289,41.75399099906],[-71.404266,41.75363099906],[-71.404236,41.75326699906],[-71.404175,41.75257499906],[-71.404137,41.75211199906],[-71.404122,41.75189999906],[-71.404114,41.75183299906],[-71.404068,41.75130299906],[-71.404045,41.75101499906],[-71.40403,41.75070399906],[-71.404007,41.75029999906],[-71.404037,41.75001099906],[-71.404045,41.74992999906],[-71.404106,41.74960899906],[-71.40419,41.74932299906],[-71.404221,41.74922299906],[-71.404419,41.74878299906],[-71.404556,41.74854499906],[-71.403717,41.74867599906],[-71.401883,41.74897199906],[-71.401772,41.74899099906],[-71.401726,41.74900099906],[-71.40152,41.74903199906],[-71.401291,41.74906899906],[-71.400925,41.74912999906],[-71.399391,41.74937399906],[-71.398498,41.74951399906],[-71.398087,41.74958099906],[-71.39663,41.74981199906],[-71.396484,41.74983499906],[-71.395805,41.75018299906],[-71.395706,41.75023899906],[-71.39563,41.75028599906],[-71.395103,41.75058899906],[-71.394844,41.75074299906],[-71.394814,41.75075699906],[-71.394455,41.75096299906],[-71.393966,41.75128399906],[-71.39399,41.75188199906],[-71.394005,41.75229599906],[-71.394013,41.75258399906],[-71.394017,41.75285499906],[-71.394028,41.75343999906],[-71.393997,41.75429099906],[-71.393936,41.75485099906],[-71.393906,41.75513999906],[-71.393875,41.75553699906],[-71.393845,41.75586199906],[-71.393829,41.75607799906],[-71.393814,41.75622199906],[-71.393776,41.75662399906],[-71.393753,41.75691299906],[-71.39373,41.75717899906],[-71.393699,41.75748999906],[-71.393692,41.75755299906],[-71.393684,41.75759899906],[-71.393631,41.75768099906],[-71.393601,41.75771299906],[-71.392891,41.75834499906],[-71.392777,41.75844599906],[-71.392601,41.75859799906],[-71.39241,41.75876899906],[-71.392021,41.75910999906],[-71.393204,41.75910399906],[-71.3937,41.75911099906],[-71.393707,41.75965199906],[-71.393715,41.75969599906],[-71.393761,41.76001099906],[-71.393844,41.76043199906],[-71.393952,41.76099699906],[-71.39405,41.76146399906],[-71.394066,41.76156199906],[-71.39418,41.76219899906],[-71.394256,41.76259399906],[-71.394577,41.76258299906],[-71.394775,41.76256999906],[-71.395233,41.76254199906],[-71.396233,41.76248899906],[-71.396431,41.76247699906],[-71.396736,41.76246099906],[-71.396817,41.76245699906],[-71.397118,41.76243999906],[-71.397286,41.76243199906],[-71.397447,41.76242199906],[-71.397759,41.76240399906],[-71.397935,41.76239199906],[-71.398399,41.76236399906],[-71.39843,41.76236299906],[-71.399162,41.76231599906],[-71.39962,41.76226599906],[-71.399808,41.76223599906],[-71.400253,41.76216699906],[-71.400482,41.76213999906],[-71.400719,41.76210399906],[-71.400818,41.76208799906],[-71.401291,41.76201999906],[-71.40139,41.76199499906],[-71.401596,41.76194099906],[-71.401977,41.76181599906],[-71.402222,41.76172499906],[-71.402374,41.76166399906],[-71.402474,41.76162599906],[-71.402977,41.76139899906],[-71.403031,41.76137099906],[-71.403656,41.76103299906],[-71.403824,41.76092599906],[-71.404297,41.76062399906],[-71.404754,41.76031699906]]]}}"}, +{"type": "blockgroup", "typeId": 211001, "areaId": 29216, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.432022,41.75490999906],[-71.431839,41.75487499906],[-71.431805,41.75486799906],[-71.431784,41.75484199906],[-71.43177,41.75482399906],[-71.43171,41.75479799906],[-71.431582,41.75474399906],[-71.431497,41.75471599906],[-71.431442,41.75469799906],[-71.430603,41.75451299906],[-71.430458,41.75447999906],[-71.429894,41.75436599906],[-71.429779,41.75433299906],[-71.429688,41.75430299906],[-71.429665,41.75428599906],[-71.429634,41.75425899906],[-71.429596,41.75421899906],[-71.42955,41.75415299906],[-71.429176,41.75360699906],[-71.429169,41.75357099906],[-71.429024,41.75331299906],[-71.428619,41.75261399906],[-71.428329,41.75212999906],[-71.428184,41.75187199906],[-71.427864,41.75132499906],[-71.427429,41.75058599906],[-71.426781,41.74949199906],[-71.426651,41.74927899906],[-71.426354,41.74877599906],[-71.42598,41.74814499906],[-71.425331,41.74703299906],[-71.425186,41.74712599906],[-71.424628,41.74745499906],[-71.424163,41.74773299906],[-71.42399,41.74782399906],[-71.423926,41.74786099906],[-71.423328,41.74821799906],[-71.423228,41.74827699906],[-71.422977,41.74843299906],[-71.422587,41.74868099906],[-71.422552,41.74869999906],[-71.422477,41.74874199906],[-71.42213,41.74895099906],[-71.421914,41.74906799906],[-71.421854,41.74910099906],[-71.421713,41.74919599906],[-71.421158,41.74952499906],[-71.421053,41.74957999906],[-71.420769,41.74973199906],[-71.420403,41.74992399906],[-71.420136,41.75005599906],[-71.420035,41.75010099906],[-71.419685,41.75025899906],[-71.419456,41.75036299906],[-71.418999,41.75057899906],[-71.418838,41.75065999906],[-71.418869,41.75085199906],[-71.418869,41.75090199906],[-71.418884,41.75095599906],[-71.418899,41.75107699906],[-71.418953,41.75112099906],[-71.419014,41.75115999906],[-71.419067,41.75119899906],[-71.419128,41.75123399906],[-71.419243,41.75130799906],[-71.419311,41.75133799906],[-71.419319,41.75140599906],[-71.419365,41.75142299906],[-71.419449,41.75144399906],[-71.419525,41.75143699906],[-71.419594,41.75141299906],[-71.419678,41.75142499906],[-71.419754,41.75143699906],[-71.41983,41.75143099906],[-71.419907,41.75145599906],[-71.419991,41.75145899906],[-71.420075,41.75144399906],[-71.420143,41.75145099906],[-71.420212,41.75143599906],[-71.420288,41.75140299906],[-71.420372,41.75140199906],[-71.420471,41.75137199906],[-71.420593,41.75129799906],[-71.420669,41.75127399906],[-71.420754,41.75118199906],[-71.420815,41.75114499906],[-71.420876,41.75111599906],[-71.420944,41.75109199906],[-71.421005,41.75106399906],[-71.421066,41.75104899906],[-71.421155,41.75102999906],[-71.421333,41.75099399906],[-71.421409,41.75097399906],[-71.421486,41.75094999906],[-71.421562,41.75091699906],[-71.421638,41.75090199906],[-71.421707,41.75091399906],[-71.421776,41.75095299906],[-71.421791,41.75101099906],[-71.421791,41.75119599906],[-71.421776,41.75131299906],[-71.421745,41.75143099906],[-71.421745,41.75148999906],[-71.421753,41.75154399906],[-71.42176,41.75160199906],[-71.421784,41.75165999906],[-71.421814,41.75170899906],[-71.421852,41.75175799906],[-71.421898,41.75180599906],[-71.421951,41.75186399906],[-71.421997,41.75197099906],[-71.422012,41.75202899906],[-71.42202,41.75209199906],[-71.42202,41.75220899906],[-71.422012,41.75226799906],[-71.422012,41.75232199906],[-71.422005,41.75238499906],[-71.421997,41.75243899906],[-71.421974,41.75250299906],[-71.421943,41.75256199906],[-71.421906,41.75262599906],[-71.421814,41.75280299906],[-71.421783,41.75292499906],[-71.421772,41.75302199906],[-71.421768,41.75305199906],[-71.421768,41.75318199906],[-71.421776,41.75324099906],[-71.421768,41.75329899906],[-71.421776,41.75335799906],[-71.421806,41.75341599906],[-71.421837,41.75346899906],[-71.421883,41.75351799906],[-71.421921,41.75356599906],[-71.421944,41.75362399906],[-71.421982,41.75369099906],[-71.422001,41.75374499906],[-71.421799,41.75376299906],[-71.421402,41.75379399906],[-71.421438,41.75409799906],[-71.421463,41.75429699906],[-71.42144,41.75439599906],[-71.421427,41.75441299906],[-71.421387,41.75446499906],[-71.421295,41.75452999906],[-71.421203,41.75457199906],[-71.421143,41.75462299906],[-71.421112,41.75468199906],[-71.421097,41.75474999906],[-71.42112,41.75487999906],[-71.42115,41.75503699906],[-71.421173,41.75517599906],[-71.421177,41.75521099906],[-71.421188,41.75532899906],[-71.421226,41.75560299906],[-71.421239,41.75567399906],[-71.421028,41.75572399906],[-71.420952,41.75572999906],[-71.420883,41.75575399906],[-71.420807,41.75579599906],[-71.420669,41.75587999906],[-71.420601,41.75592699906],[-71.42054,41.75598199906],[-71.420471,41.75603299906],[-71.420425,41.75607499906],[-71.420402,41.75609299906],[-71.420372,41.75611599906],[-71.420227,41.75620499906],[-71.420097,41.75631099906],[-71.420044,41.75637099906],[-71.419998,41.75641699906],[-71.419945,41.75647699906],[-71.419876,41.75653699906],[-71.419808,41.75660099906],[-71.419762,41.75664699906],[-71.419701,41.75671599906],[-71.419678,41.75675199906],[-71.419655,41.75677999906],[-71.419647,41.75685699906],[-71.419647,41.75708599906],[-71.419678,41.75719799906],[-71.419708,41.75734599906],[-71.419739,41.75741799906],[-71.419807,41.75755599906],[-71.419838,41.75763199906],[-71.419846,41.75770299906],[-71.419838,41.75777599906],[-71.419838,41.75783899906],[-71.419845,41.75791099906],[-71.419861,41.75796899906],[-71.419922,41.75809399906],[-71.419952,41.75814699906],[-71.41999,41.75819999906],[-71.420013,41.75825799906],[-71.420052,41.75832499906],[-71.420082,41.75838299906],[-71.42012,41.75843599906],[-71.420166,41.75848499906],[-71.420227,41.75852399906],[-71.420288,41.75863999906],[-71.420303,41.75870699906],[-71.420303,41.75876999906],[-71.420357,41.75888599906],[-71.420379,41.75894899906],[-71.42041,41.75900699906],[-71.420441,41.75906899906],[-71.420448,41.75913199906],[-71.420448,41.75918999906],[-71.420463,41.75924399906],[-71.420494,41.75929699906],[-71.420517,41.75935099906],[-71.420555,41.75939999906],[-71.420647,41.75951499906],[-71.420685,41.75955499906],[-71.420738,41.75960799906],[-71.420799,41.75963799906],[-71.420868,41.75965899906],[-71.420891,41.75967599906],[-71.420914,41.75970299906],[-71.420929,41.75982899906],[-71.420929,41.75988299906],[-71.420921,41.75994599906],[-71.420799,41.76002999906],[-71.420761,41.76008399906],[-71.420746,41.76014299906],[-71.420746,41.76020599906],[-71.420784,41.76025899906],[-71.420891,41.76034699906],[-71.420929,41.76040099906],[-71.420967,41.76046699906],[-71.42102,41.76051999906],[-71.421059,41.76058699906],[-71.421074,41.76064999906],[-71.421066,41.76071699906],[-71.421021,41.76077699906],[-71.420975,41.76082299906],[-71.420921,41.76086899906],[-71.420868,41.76091099906],[-71.420807,41.76094799906],[-71.420715,41.76093599906],[-71.420639,41.76092499906],[-71.420563,41.76090799906],[-71.420494,41.76087399906],[-71.420418,41.76086199906],[-71.420349,41.76089899906],[-71.420303,41.76095399906],[-71.420288,41.76102199906],[-71.420288,41.76108499906],[-71.420273,41.76121999906],[-71.420258,41.76127499906],[-71.42025,41.76129299906],[-71.420227,41.76133399906],[-71.420174,41.76137599906],[-71.420151,41.76142099906],[-71.420135,41.76151599906],[-71.420082,41.76160299906],[-71.419986,41.76155499906],[-71.419716,41.76151499906],[-71.419307,41.76164499906],[-71.419214,41.76168799906],[-71.419019,41.76177899906],[-71.419078,41.76188499906],[-71.419435,41.76170599906],[-71.41974,41.76162599906],[-71.419969,41.76166599906],[-71.420091,41.76174599906],[-71.420152,41.76183799906],[-71.420197,41.76198599906],[-71.420121,41.76217499906],[-71.419494,41.76307099906],[-71.419036,41.76354999906],[-71.418761,41.76381299906],[-71.4187,41.76394999906],[-71.418715,41.76407599906],[-71.41873,41.76409699906],[-71.418867,41.76429299906],[-71.418898,41.76429299906],[-71.418971,41.76434799906],[-71.419096,41.76444099906],[-71.41934,41.76460099906],[-71.419523,41.76466999906],[-71.419797,41.76478499906],[-71.420285,41.76487599906],[-71.42062,41.76488199906],[-71.420738,41.76488399906],[-71.420941,41.76488799906],[-71.421312,41.76487899906],[-71.421735,41.76473999906],[-71.421913,41.76462999906],[-71.421994,41.76457999906],[-71.422223,41.76430599906],[-71.422376,41.76404399906],[-71.422483,41.76379299906],[-71.422603,41.76350899906],[-71.422743,41.76327899906],[-71.422916,41.76302999906],[-71.422957,41.76297099906],[-71.423186,41.76279399906],[-71.4234,41.76259999906],[-71.423858,41.76223399906],[-71.4244,41.76193099906],[-71.424965,41.76165199906],[-71.425263,41.76150399906],[-71.42553,41.76136399906],[-71.425873,41.76118499906],[-71.426224,41.76102499906],[-71.426248,41.76101699906],[-71.426357,41.76098099906],[-71.426587,41.76090399906],[-71.426774,41.76083099906],[-71.427033,41.76073999906],[-71.427277,41.76065999906],[-71.427735,41.76054599906],[-71.428361,41.76052399906],[-71.428879,41.76059299906],[-71.4295,41.76067999906],[-71.42989,41.76076099906],[-71.429918,41.76068499906],[-71.429947,41.76061099906],[-71.430023,41.76041099906],[-71.430992,41.75776099906],[-71.431541,41.75624999906],[-71.43166,41.75591499906],[-71.431824,41.75545599906],[-71.432022,41.75490999906]]]}}"}, +{"type": "blockgroup", "typeId": 211002, "areaId": 29217, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.446616,41.74907199906],[-71.446538,41.74888699906],[-71.446421,41.74860599906],[-71.445948,41.74724699906],[-71.445548,41.74621799906],[-71.445459,41.74603699906],[-71.445327,41.74560699906],[-71.445125,41.74542299906],[-71.444891,41.74521199906],[-71.444706,41.74491499906],[-71.444578,41.74467399906],[-71.444535,41.74459799906],[-71.444496,41.74452799906],[-71.444433,41.74441299906],[-71.444359,41.74420899906],[-71.444051,41.74500499906],[-71.44397,41.74521399906],[-71.443475,41.74650099906],[-71.443231,41.74714199906],[-71.443109,41.74743399906],[-71.442795,41.74811699906],[-71.442573,41.74806799906],[-71.442284,41.74799299906],[-71.441643,41.74788499906],[-71.441368,41.74782799906],[-71.441101,41.74776999906],[-71.440277,41.74759899906],[-71.440002,41.74754099906],[-71.439888,41.74752599906],[-71.439774,41.74750099906],[-71.439331,41.74741199906],[-71.439079,41.74735799906],[-71.438835,41.74730499906],[-71.438591,41.74724299906],[-71.438049,41.74708799906],[-71.437561,41.74691799906],[-71.43734,41.74682799906],[-71.436559,41.74652199906],[-71.436035,41.74624299906],[-71.435371,41.74587399906],[-71.435333,41.74585199906],[-71.435165,41.74575299906],[-71.435135,41.74573099906],[-71.434982,41.74563499906],[-71.434807,41.74551699906],[-71.434624,41.74539499906],[-71.434456,41.74526799906],[-71.434301,41.74514199906],[-71.434128,41.74499999906],[-71.433945,41.74484699906],[-71.433769,41.74467599906],[-71.433594,41.74452999906],[-71.433434,41.74437599906],[-71.433106,41.74404899906],[-71.432694,41.74355799906],[-71.431366,41.74188399906],[-71.431274,41.74176899906],[-71.43119,41.74186999906],[-71.430847,41.74225099906],[-71.430512,41.74263199906],[-71.430183,41.74301699906],[-71.429772,41.74339499906],[-71.429687,41.74347799906],[-71.429426,41.74371199906],[-71.428734,41.74433499906],[-71.428398,41.74463099906],[-71.427872,41.74508299906],[-71.427429,41.74546599906],[-71.427239,41.74564099906],[-71.426468,41.74627899906],[-71.426346,41.74636299906],[-71.425331,41.74703299906],[-71.42598,41.74814499906],[-71.426354,41.74877599906],[-71.426651,41.74927899906],[-71.426781,41.74949199906],[-71.427429,41.75058599906],[-71.427864,41.75132499906],[-71.428184,41.75187199906],[-71.428329,41.75212999906],[-71.428619,41.75261399906],[-71.429024,41.75331299906],[-71.429169,41.75357099906],[-71.429176,41.75360699906],[-71.42955,41.75415299906],[-71.429596,41.75421899906],[-71.429634,41.75425899906],[-71.429665,41.75428599906],[-71.429688,41.75430299906],[-71.429779,41.75433299906],[-71.429894,41.75436599906],[-71.430458,41.75447999906],[-71.430603,41.75451299906],[-71.431442,41.75469799906],[-71.431497,41.75471599906],[-71.431582,41.75474399906],[-71.43171,41.75479799906],[-71.43177,41.75482399906],[-71.431784,41.75484199906],[-71.431805,41.75486799906],[-71.431839,41.75487499906],[-71.432022,41.75490999906],[-71.431824,41.75545599906],[-71.43166,41.75591499906],[-71.431541,41.75624999906],[-71.430992,41.75776099906],[-71.430023,41.76041099906],[-71.429947,41.76061099906],[-71.429918,41.76068499906],[-71.42989,41.76076099906],[-71.429945,41.76077299906],[-71.430081,41.76080999906],[-71.430298,41.76086799906],[-71.430522,41.76087799906],[-71.430557,41.76087899906],[-71.430817,41.76078799906],[-71.430969,41.76061699906],[-71.431107,41.76038899906],[-71.431275,41.76004599906],[-71.431443,41.75982899906],[-71.431642,41.75965799906],[-71.431932,41.75949799906],[-71.432053,41.75944399906],[-71.432196,41.75938299906],[-71.432374,41.75932799906],[-71.432675,41.75932699906],[-71.432833,41.75932699906],[-71.432916,41.75933199906],[-71.432968,41.75933499906],[-71.433076,41.75933899906],[-71.433186,41.75938399906],[-71.433244,41.75940799906],[-71.433335,41.75949899906],[-71.433395,41.75961299906],[-71.433394,41.75967699906],[-71.433396,41.75976199906],[-71.43335,41.75990899906],[-71.433197,41.76005799906],[-71.433045,41.76019599906],[-71.43298,41.76031299906],[-71.432938,41.76040199906],[-71.432892,41.76059499906],[-71.432891,41.76089199906],[-71.433013,41.76107499906],[-71.433167,41.76123499906],[-71.433348,41.76137199906],[-71.433531,41.76145199906],[-71.433775,41.76144099906],[-71.433958,41.76136199906],[-71.434005,41.76123499906],[-71.434051,41.76098399906],[-71.434069,41.76093599906],[-71.434134,41.76078899906],[-71.43426,41.76059199906],[-71.434387,41.76039099906],[-71.434494,41.76024199906],[-71.434601,41.76011599906],[-71.434845,41.75997399906],[-71.434998,41.75988299906],[-71.435242,41.75979099906],[-71.435593,41.75972299906],[-71.435883,41.75967699906],[-71.436096,41.75971199906],[-71.436249,41.75975799906],[-71.436401,41.75984899906],[-71.436599,41.75994099906],[-71.436904,41.75997499906],[-71.437164,41.75996399906],[-71.437377,41.75990699906],[-71.437561,41.75982699906],[-71.437698,41.75966699906],[-71.437836,41.75943899906],[-71.437927,41.75917599906],[-71.437989,41.75896999906],[-71.438111,41.75828499906],[-71.438218,41.75810199906],[-71.438508,41.75794299906],[-71.438829,41.75782899906],[-71.439118,41.75782899906],[-71.439303,41.75787799906],[-71.439612,41.75803399906],[-71.440096,41.75807699906],[-71.440398,41.75805299906],[-71.440558,41.75793199906],[-71.440574,41.75791199906],[-71.440662,41.75779499906],[-71.440654,41.75764199906],[-71.440551,41.75741899906],[-71.440412,41.75730499906],[-71.440169,41.75718399906],[-71.439854,41.75701999906],[-71.439655,41.75693399906],[-71.439348,41.75675499906],[-71.439196,41.75660699906],[-71.43912,41.75638999906],[-71.439196,41.75619499906],[-71.439288,41.75594399906],[-71.439302,41.75590299906],[-71.43938,41.75568199906],[-71.439456,41.75541899906],[-71.439533,41.75530499906],[-71.439685,41.75526999906],[-71.44028,41.75529399906],[-71.440524,41.75528199906],[-71.440639,41.75525399906],[-71.440799,41.75521399906],[-71.440967,41.75508799906],[-71.44112,41.75491699906],[-71.441152,41.75477099906],[-71.441165,41.75471199906],[-71.44112,41.75451699906],[-71.440998,41.75425499906],[-71.44068,41.75378599906],[-71.440587,41.75364899906],[-71.440566,41.75361899906],[-71.440465,41.75347599906],[-71.440313,41.75321499906],[-71.440191,41.75291799906],[-71.440191,41.75276899906],[-71.440374,41.75242699906],[-71.440619,41.75215299906],[-71.441092,41.75180999906],[-71.441277,41.75167799906],[-71.441451,41.75155399906],[-71.441625,41.75142899906],[-71.441748,41.75134199906],[-71.442326,41.75104399906],[-71.442435,41.75098899906],[-71.443213,41.75070299906],[-71.443732,41.75062399906],[-71.443976,41.75066899906],[-71.444174,41.75074999906],[-71.444418,41.75087499906],[-71.444677,41.75093299906],[-71.444982,41.75089799906],[-71.445593,41.75074999906],[-71.445974,41.75055599906],[-71.44631,41.75025899906],[-71.446569,41.74990499906],[-71.446594,41.74967999906],[-71.446606,41.74966399906],[-71.446615,41.74952699906],[-71.446616,41.74907199906]]]}}"}, +{"type": "blockgroup", "typeId": 211003, "areaId": 29218, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.436501,41.73256199906],[-71.436371,41.73256499906],[-71.43567,41.73257899906],[-71.434418,41.73260599906],[-71.433121,41.73264699906],[-71.432244,41.73267899906],[-71.43116,41.73270199906],[-71.430572,41.73271899906],[-71.429756,41.73274999906],[-71.427833,41.73280799906],[-71.427445,41.73281699906],[-71.426895,41.73283299906],[-71.425896,41.73286699906],[-71.42363,41.73293799906],[-71.421791,41.73299899906],[-71.421501,41.73300499906],[-71.419708,41.73305599906],[-71.419334,41.73306399906],[-71.417793,41.73310999906],[-71.416584,41.73314899906],[-71.416542,41.73314999906],[-71.415947,41.73317199906],[-71.415093,41.73319399906],[-71.415008,41.73319599906],[-71.414261,41.73322099906],[-71.414322,41.73380899906],[-71.414353,41.73437099906],[-71.414352,41.73464599906],[-71.413536,41.73507799906],[-71.413574,41.73510399906],[-71.413597,41.73516599906],[-71.413628,41.73521499906],[-71.413673,41.73526399906],[-71.413726,41.73530099906],[-71.413188,41.73537799906],[-71.412705,41.73541099906],[-71.409247,41.73535699906],[-71.407999,41.73537599906],[-71.407784,41.73523599906],[-71.407756,41.73521799906],[-71.407679,41.73516699906],[-71.407989,41.73592299906],[-71.408017,41.73606799906],[-71.408081,41.73643499906],[-71.408104,41.73660999906],[-71.408134,41.73692499906],[-71.408137,41.73716199906],[-71.408142,41.73740599906],[-71.409104,41.73734999906],[-71.409782,41.73731799906],[-71.410739,41.73725499906],[-71.410744,41.73729799906],[-71.410744,41.73740599906],[-71.411667,41.73730999906],[-71.412392,41.73722299906],[-71.412681,41.73718499906],[-71.412871,41.73716299906],[-71.413063,41.73714099906],[-71.413696,41.73738899906],[-71.413742,41.73784299906],[-71.414131,41.73783399906],[-71.414284,41.73781299906],[-71.414391,41.73778399906],[-71.41452,41.73774099906],[-71.414635,41.73767099906],[-71.41468,41.73763799906],[-71.414764,41.73757799906],[-71.41494,41.73749299906],[-71.415108,41.73744499906],[-71.415634,41.73735699906],[-71.415857,41.73726099906],[-71.417062,41.73674599906],[-71.417252,41.73710699906],[-71.417091,41.73729499906],[-71.417038,41.73739499906],[-71.417038,41.73773699906],[-71.417046,41.73815599906],[-71.417069,41.73848899906],[-71.417091,41.73892099906],[-71.417098,41.73892999906],[-71.417133,41.73897699906],[-71.417305,41.73911899906],[-71.417267,41.73918699906],[-71.417198,41.73929199906],[-71.417122,41.73942899906],[-71.417076,41.73952899906],[-71.417053,41.73961899906],[-71.417061,41.73988499906],[-71.417046,41.74030399906],[-71.417069,41.74055099906],[-71.417061,41.74088499906],[-71.417076,41.74096099906],[-71.417129,41.74103199906],[-71.417229,41.74111099906],[-71.417381,41.74126499906],[-71.41745,41.74134899906],[-71.417694,41.74132099906],[-71.418266,41.74122799906],[-71.41877,41.74115899906],[-71.418785,41.74126299906],[-71.418846,41.74162099906],[-71.418846,41.74166199906],[-71.419693,41.74153199906],[-71.419891,41.74149999906],[-71.42041,41.74140799906],[-71.420845,41.74131799906],[-71.420944,41.74132999906],[-71.421753,41.74145199906],[-71.421806,41.74150499906],[-71.422043,41.74194099906],[-71.422066,41.74197199906],[-71.422203,41.74220799906],[-71.422394,41.74238399906],[-71.422775,41.74266399906],[-71.423027,41.74284799906],[-71.423248,41.74305999906],[-71.423439,41.74324499906],[-71.423538,41.74332799906],[-71.423859,41.74348399906],[-71.424164,41.74362099906],[-71.424408,41.74374199906],[-71.424522,41.74383399906],[-71.424614,41.74399899906],[-71.424667,41.74410199906],[-71.424744,41.74426699906],[-71.424843,41.74439999906],[-71.424889,41.74447099906],[-71.425049,41.74450799906],[-71.425598,41.74462199906],[-71.426025,41.74472999906],[-71.426094,41.74473799906],[-71.426407,41.74482599906],[-71.42659,41.74493499906],[-71.426971,41.74517399906],[-71.427429,41.74546599906],[-71.427872,41.74508299906],[-71.428398,41.74463099906],[-71.428734,41.74433499906],[-71.429426,41.74371199906],[-71.429687,41.74347799906],[-71.429772,41.74339499906],[-71.430183,41.74301699906],[-71.430512,41.74263199906],[-71.430847,41.74225099906],[-71.43119,41.74186999906],[-71.431274,41.74176899906],[-71.431328,41.74170499906],[-71.431389,41.74163599906],[-71.431656,41.74126999906],[-71.431915,41.74091299906],[-71.432114,41.74062499906],[-71.432159,41.74055199906],[-71.432274,41.74036999906],[-71.432403,41.74014199906],[-71.432587,41.73983199906],[-71.432747,41.73955399906],[-71.432869,41.73934399906],[-71.432945,41.73919399906],[-71.433022,41.73904799906],[-71.433235,41.73870599906],[-71.433327,41.73854599906],[-71.433485,41.73827399906],[-71.433641,41.73814999906],[-71.433915,41.73763499906],[-71.434188,41.73712299906],[-71.43446,41.73662199906],[-71.434735,41.73611499906],[-71.434823,41.73595199906],[-71.434982,41.73565699906],[-71.435113,41.73543299906],[-71.435211,41.73523899906],[-71.4354,41.73489099906],[-71.435558,41.73459099906],[-71.435743,41.73427499906],[-71.435913,41.73395099906],[-71.436212,41.73328299906],[-71.436381,41.73290699906],[-71.436501,41.73256199906]]]}}"}, +{"type": "blockgroup", "typeId": 211004, "areaId": 29219, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.458435,41.72846999906],[-71.458282,41.72830199906],[-71.458176,41.72820499906],[-71.458054,41.72810899906],[-71.457932,41.72802099906],[-71.457855,41.72796899906],[-71.457771,41.72792099906],[-71.45768,41.72787299906],[-71.457596,41.72783499906],[-71.457504,41.72780099906],[-71.45742,41.72776599906],[-71.457298,41.72772399906],[-71.457184,41.72768099906],[-71.457062,41.72763899906],[-71.455895,41.72725899906],[-71.45517,41.72701699906],[-71.454842,41.72690299906],[-71.45478,41.72687699906],[-71.45472,41.72706299906],[-71.454704,41.72710799906],[-71.454521,41.72765299906],[-71.454308,41.72829199906],[-71.454102,41.72901299906],[-71.454086,41.72906199906],[-71.454063,41.72915799906],[-71.453926,41.72916499906],[-71.453774,41.72916799906],[-71.453178,41.72917199906],[-71.452812,41.72917999906],[-71.452682,41.72917799906],[-71.452492,41.72917799906],[-71.452026,41.72916699906],[-71.451614,41.72915599906],[-71.451004,41.72915499906],[-71.450554,41.72916499906],[-71.450378,41.72916499906],[-71.450066,41.72916599906],[-71.4496,41.72917599906],[-71.449425,41.72918899906],[-71.449364,41.72919499906],[-71.449326,41.72919999906],[-71.449211,41.72922499906],[-71.449066,41.72926899906],[-71.448776,41.72936499906],[-71.447983,41.72964299906],[-71.447373,41.72985899906],[-71.446953,41.72999799906],[-71.446686,41.73008899906],[-71.446503,41.73014699906],[-71.446365,41.73017299906],[-71.446304,41.73018799906],[-71.44619,41.73020399906],[-71.446113,41.73020999906],[-71.446075,41.73021499906],[-71.445991,41.73020799906],[-71.445862,41.73019299906],[-71.445679,41.73016899906],[-71.445023,41.73003499906],[-71.444824,41.72999399906],[-71.444016,41.72982199906],[-71.443657,41.72974899906],[-71.442734,41.72952499906],[-71.442665,41.72950399906],[-71.442589,41.72947899906],[-71.442528,41.72944799906],[-71.442451,41.72941399906],[-71.442413,41.72938799906],[-71.442307,41.72929999906],[-71.442207,41.72917599906],[-71.442055,41.72889999906],[-71.442009,41.72882399906],[-71.441971,41.72874399906],[-71.441925,41.72866899906],[-71.441879,41.72859799906],[-71.441818,41.72851299906],[-71.441788,41.72846899906],[-71.441723,41.72839399906],[-71.441696,41.72836199906],[-71.441727,41.72828099906],[-71.442741,41.72548599906],[-71.443559,41.72325599906],[-71.443576,41.72320899906],[-71.443604,41.72313099906],[-71.443633,41.72305299906],[-71.443764,41.72273099906],[-71.44387,41.72243999906],[-71.444096,41.72182099906],[-71.444308,41.72123799906],[-71.444572,41.72051599906],[-71.444004,41.72020799906],[-71.443451,41.71997199906],[-71.442764,41.71973499906],[-71.442459,41.72024099906],[-71.442261,41.72057799906],[-71.442207,41.72066999906],[-71.441976,41.72106899906],[-71.441569,41.72170899906],[-71.441506,41.72181399906],[-71.441461,41.72188999906],[-71.441339,41.72209099906],[-71.441184,41.72234699906],[-71.440972,41.72270699906],[-71.440782,41.72303299906],[-71.440735,41.72312299906],[-71.440596,41.72333699906],[-71.440485,41.72352299906],[-71.440127,41.72410699906],[-71.439911,41.72454599906],[-71.439797,41.72473299906],[-71.439764,41.72478799906],[-71.439408,41.72534999906],[-71.439342,41.72547299906],[-71.439325,41.72550199906],[-71.439242,41.72568599906],[-71.439078,41.72602699906],[-71.439023,41.72616699906],[-71.438845,41.72659999906],[-71.438778,41.72676799906],[-71.43876,41.72681999906],[-71.438647,41.72713799906],[-71.438576,41.72728499906],[-71.438451,41.72758499906],[-71.438413,41.72767199906],[-71.438327,41.72789999906],[-71.438032,41.72858899906],[-71.43773,41.72930399906],[-71.437402,41.73012599906],[-71.437325,41.73032299906],[-71.437064,41.73096299906],[-71.436829,41.73161099906],[-71.4366,41.73226299906],[-71.436501,41.73256199906],[-71.436381,41.73290699906],[-71.436212,41.73328299906],[-71.435913,41.73395099906],[-71.435743,41.73427499906],[-71.435558,41.73459099906],[-71.4354,41.73489099906],[-71.435211,41.73523899906],[-71.435113,41.73543299906],[-71.434982,41.73565699906],[-71.434823,41.73595199906],[-71.434735,41.73611499906],[-71.43446,41.73662199906],[-71.434188,41.73712299906],[-71.433915,41.73763499906],[-71.433641,41.73814999906],[-71.433485,41.73827399906],[-71.433327,41.73854599906],[-71.433235,41.73870599906],[-71.433022,41.73904799906],[-71.432945,41.73919399906],[-71.432869,41.73934399906],[-71.432747,41.73955399906],[-71.432587,41.73983199906],[-71.432403,41.74014199906],[-71.432274,41.74036999906],[-71.432159,41.74055199906],[-71.432114,41.74062499906],[-71.431915,41.74091299906],[-71.431656,41.74126999906],[-71.431389,41.74163599906],[-71.431328,41.74170499906],[-71.431274,41.74176899906],[-71.431366,41.74188399906],[-71.432694,41.74355799906],[-71.433106,41.74404899906],[-71.433434,41.74437599906],[-71.433594,41.74452999906],[-71.433769,41.74467599906],[-71.433945,41.74484699906],[-71.434128,41.74499999906],[-71.434301,41.74514199906],[-71.434456,41.74526799906],[-71.434624,41.74539499906],[-71.434807,41.74551699906],[-71.434982,41.74563499906],[-71.435135,41.74573099906],[-71.435165,41.74575299906],[-71.435333,41.74585199906],[-71.435371,41.74587399906],[-71.436035,41.74624299906],[-71.436559,41.74652199906],[-71.43734,41.74682799906],[-71.437561,41.74691799906],[-71.438049,41.74708799906],[-71.438591,41.74724299906],[-71.438835,41.74730499906],[-71.439079,41.74735799906],[-71.439331,41.74741199906],[-71.439774,41.74750099906],[-71.439888,41.74752599906],[-71.440002,41.74754099906],[-71.440277,41.74759899906],[-71.441101,41.74776999906],[-71.441368,41.74782799906],[-71.441643,41.74788499906],[-71.442284,41.74799299906],[-71.442573,41.74806799906],[-71.442795,41.74811699906],[-71.443109,41.74743399906],[-71.443231,41.74714199906],[-71.443475,41.74650099906],[-71.44397,41.74521399906],[-71.444051,41.74500499906],[-71.444359,41.74420899906],[-71.444298,41.74405499906],[-71.444261,41.74395499906],[-71.444186,41.74382399906],[-71.444111,41.74356399906],[-71.444095,41.74351199906],[-71.444044,41.74334899906],[-71.443974,41.74294599906],[-71.443935,41.74263099906],[-71.443935,41.74260099906],[-71.443932,41.74229399906],[-71.443906,41.74192399906],[-71.44394,41.74164299906],[-71.443937,41.74129299906],[-71.443945,41.74119599906],[-71.443963,41.74117999906],[-71.443966,41.74115799906],[-71.444029,41.74089599906],[-71.444116,41.74063599906],[-71.444291,41.74039599906],[-71.444684,41.74015499906],[-71.445303,41.74004499906],[-71.446071,41.73997499906],[-71.446198,41.73997899906],[-71.446242,41.73989399906],[-71.446334,41.73972599906],[-71.446631,41.73922799906],[-71.446646,41.73920099906],[-71.446937,41.73873999906],[-71.447188,41.73837899906],[-71.44744,41.73801299906],[-71.447707,41.73766099906],[-71.447806,41.73752799906],[-71.447834,41.73748799906],[-71.447868,41.73743999906],[-71.448074,41.73717899906],[-71.448456,41.73670299906],[-71.44886,41.73623499906],[-71.449333,41.73571599906],[-71.449822,41.73520999906],[-71.45034,41.73471299906],[-71.450707,41.73437599906],[-71.451088,41.73403899906],[-71.451477,41.73371099906],[-71.451943,41.73333699906],[-71.452423,41.73297499906],[-71.452896,41.73260899906],[-71.453292,41.73231299906],[-71.4534,41.73223399906],[-71.454857,41.73114899906],[-71.456345,41.73003199906],[-71.456398,41.72998999906],[-71.458267,41.72859499906],[-71.458412,41.72848799906],[-71.458435,41.72846999906]]]}}"}, +{"type": "blockgroup", "typeId": 212001, "areaId": 29220, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.427429,41.74546599906],[-71.426971,41.74517399906],[-71.42659,41.74493499906],[-71.426407,41.74482599906],[-71.426094,41.74473799906],[-71.426025,41.74472999906],[-71.425598,41.74462199906],[-71.425049,41.74450799906],[-71.424889,41.74447099906],[-71.424843,41.74439999906],[-71.424744,41.74426699906],[-71.424667,41.74410199906],[-71.424614,41.74399899906],[-71.424522,41.74383399906],[-71.424408,41.74374199906],[-71.424164,41.74362099906],[-71.423859,41.74348399906],[-71.423538,41.74332799906],[-71.423439,41.74324499906],[-71.423248,41.74305999906],[-71.423027,41.74284799906],[-71.422775,41.74266399906],[-71.422394,41.74238399906],[-71.422203,41.74220799906],[-71.422066,41.74197199906],[-71.422043,41.74194099906],[-71.421806,41.74150499906],[-71.421753,41.74145199906],[-71.420944,41.74132999906],[-71.420845,41.74131799906],[-71.42041,41.74140799906],[-71.419891,41.74149999906],[-71.419693,41.74153199906],[-71.418846,41.74166199906],[-71.418846,41.74162099906],[-71.418785,41.74126299906],[-71.41877,41.74115899906],[-71.418266,41.74122799906],[-71.417694,41.74132099906],[-71.41745,41.74134899906],[-71.417381,41.74126499906],[-71.417229,41.74111099906],[-71.417129,41.74103199906],[-71.417076,41.74096099906],[-71.417061,41.74088499906],[-71.417069,41.74055099906],[-71.417046,41.74030399906],[-71.416824,41.74030899906],[-71.415985,41.74038899906],[-71.415268,41.74048099906],[-71.415123,41.74049699906],[-71.414673,41.74054299906],[-71.413979,41.74062499906],[-71.413391,41.74069599906],[-71.412949,41.74074599906],[-71.412781,41.74076299906],[-71.412834,41.74109499906],[-71.41291,41.74144499906],[-71.412964,41.74168199906],[-71.41301,41.74196499906],[-71.413033,41.74208599906],[-71.413048,41.74213499906],[-71.413109,41.74244699906],[-71.413139,41.74259299906],[-71.413231,41.74300899906],[-71.413246,41.74309899906],[-71.413238,41.74316699906],[-71.4132,41.74326199906],[-71.413155,41.74334899906],[-71.413124,41.74343499906],[-71.413109,41.74350699906],[-71.413117,41.74359699906],[-71.41314,41.74375699906],[-71.413147,41.74380399906],[-71.4132,41.74408199906],[-71.413284,41.74457499906],[-71.413299,41.74464399906],[-71.413376,41.74498799906],[-71.413437,41.74527899906],[-71.413506,41.74542599906],[-71.413567,41.74551999906],[-71.413635,41.74559499906],[-71.413643,41.74560399906],[-71.413742,41.74569199906],[-71.41388,41.74577899906],[-71.414131,41.74589999906],[-71.414742,41.74616599906],[-71.415428,41.74645299906],[-71.415687,41.74656499906],[-71.416092,41.74673599906],[-71.416382,41.74691899906],[-71.416565,41.74709599906],[-71.416603,41.74716199906],[-71.416725,41.74734399906],[-71.416847,41.74764799906],[-71.416954,41.74792099906],[-71.41703,41.74812199906],[-71.417099,41.74832299906],[-71.417099,41.74845299906],[-71.417092,41.74866499906],[-71.417007,41.74904499906],[-71.416817,41.74987799906],[-71.41668,41.75046599906],[-71.416603,41.75060299906],[-71.416549,41.75067799906],[-71.416519,41.75072199906],[-71.416466,41.75078099906],[-71.41642,41.75082699906],[-71.41629,41.75094299906],[-71.416198,41.75101699906],[-71.416115,41.75108099906],[-71.416054,41.75112299906],[-71.416176,41.75113899906],[-71.41626,41.75118599906],[-71.416862,41.75168299906],[-71.416901,41.75173999906],[-71.416939,41.75182999906],[-71.417458,41.75146299906],[-71.418091,41.75106199906],[-71.418305,41.75094499906],[-71.418793,41.75068299906],[-71.418838,41.75065999906],[-71.418999,41.75057899906],[-71.419456,41.75036299906],[-71.419685,41.75025899906],[-71.420035,41.75010099906],[-71.420136,41.75005599906],[-71.420403,41.74992399906],[-71.420769,41.74973199906],[-71.421053,41.74957999906],[-71.421158,41.74952499906],[-71.421713,41.74919599906],[-71.421854,41.74910099906],[-71.421914,41.74906799906],[-71.42213,41.74895099906],[-71.422477,41.74874199906],[-71.422552,41.74869999906],[-71.422587,41.74868099906],[-71.422977,41.74843299906],[-71.423228,41.74827699906],[-71.423328,41.74821799906],[-71.423926,41.74786099906],[-71.42399,41.74782399906],[-71.424163,41.74773299906],[-71.424628,41.74745499906],[-71.425186,41.74712599906],[-71.425331,41.74703299906],[-71.426346,41.74636299906],[-71.426468,41.74627899906],[-71.427239,41.74564099906],[-71.427429,41.74546599906]]]}}"}, +{"type": "blockgroup", "typeId": 212002, "areaId": 29221, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.417305,41.73911899906],[-71.417133,41.73897699906],[-71.417098,41.73892999906],[-71.417091,41.73892099906],[-71.417069,41.73848899906],[-71.417046,41.73815599906],[-71.417038,41.73773699906],[-71.417038,41.73739499906],[-71.417091,41.73729499906],[-71.417252,41.73710699906],[-71.417062,41.73674599906],[-71.415857,41.73726099906],[-71.415634,41.73735699906],[-71.415108,41.73744499906],[-71.41494,41.73749299906],[-71.414764,41.73757799906],[-71.41468,41.73763799906],[-71.414635,41.73767099906],[-71.41452,41.73774099906],[-71.414391,41.73778399906],[-71.414284,41.73781299906],[-71.414131,41.73783399906],[-71.413742,41.73784299906],[-71.413696,41.73738899906],[-71.413063,41.73714099906],[-71.412871,41.73716299906],[-71.412681,41.73718499906],[-71.412392,41.73722299906],[-71.411667,41.73730999906],[-71.410744,41.73740599906],[-71.410744,41.73729799906],[-71.410739,41.73725499906],[-71.409782,41.73731799906],[-71.409104,41.73734999906],[-71.408142,41.73740599906],[-71.408172,41.73852299906],[-71.408173,41.73866699906],[-71.40815,41.73903599906],[-71.408142,41.73916699906],[-71.408073,41.73991599906],[-71.40805,41.74009699906],[-71.408035,41.74028599906],[-71.407959,41.74098099906],[-71.407928,41.74128799906],[-71.407906,41.74144199906],[-71.407867,41.74183899906],[-71.407852,41.74198799906],[-71.407845,41.74205999906],[-71.407761,41.74246199906],[-71.407707,41.74267099906],[-71.407692,41.74272499906],[-71.407433,41.74330699906],[-71.407418,41.74333399906],[-71.407341,41.74350199906],[-71.407112,41.74401599906],[-71.406937,41.74440199906],[-71.40686,41.74456599906],[-71.406807,41.74467499906],[-71.406739,41.74480299906],[-71.406548,41.74510399906],[-71.406372,41.74538199906],[-71.40588,41.74612599906],[-71.405731,41.74639499906],[-71.405617,41.74659999906],[-71.405479,41.74685099906],[-71.40535,41.74709199906],[-71.405327,41.74713299906],[-71.405075,41.74760199906],[-71.405037,41.74766199906],[-71.404869,41.74798099906],[-71.404724,41.74823999906],[-71.404556,41.74854499906],[-71.404419,41.74878299906],[-71.404221,41.74922299906],[-71.40419,41.74932299906],[-71.404106,41.74960899906],[-71.404045,41.74992999906],[-71.404037,41.75001099906],[-71.404007,41.75029999906],[-71.40403,41.75070399906],[-71.404045,41.75101499906],[-71.404068,41.75130299906],[-71.404114,41.75183299906],[-71.404122,41.75189999906],[-71.404137,41.75211199906],[-71.404175,41.75257499906],[-71.404236,41.75326699906],[-71.404266,41.75363099906],[-71.404289,41.75399099906],[-71.40435,41.75477299906],[-71.404411,41.75559099906],[-71.404434,41.75595599906],[-71.40445,41.75622999906],[-71.404472,41.75646399906],[-71.404526,41.75732199906],[-71.404631,41.75867499906],[-71.404657,41.75900999906],[-71.404716,41.75979099906],[-71.404754,41.76031699906],[-71.404915,41.76020999906],[-71.405716,41.75965599906],[-71.405783,41.75960999906],[-71.405876,41.75954599906],[-71.406021,41.75943899906],[-71.406395,41.75918399906],[-71.406783,41.75891299906],[-71.407182,41.75863299906],[-71.407417,41.75847299906],[-71.407967,41.75808799906],[-71.408226,41.75790699906],[-71.40831,41.75784699906],[-71.408806,41.75749899906],[-71.409592,41.75695999906],[-71.40991,41.75673399906],[-71.410263,41.75648199906],[-71.41047,41.75633199906],[-71.410545,41.75627799906],[-71.410614,41.75623099906],[-71.410965,41.75598499906],[-71.411721,41.75546099906],[-71.412254,41.75508899906],[-71.412514,41.75490399906],[-71.412659,41.75480599906],[-71.413177,41.75443899906],[-71.413796,41.75400799906],[-71.413841,41.75397999906],[-71.415176,41.75306399906],[-71.41552,41.75282799906],[-71.415795,41.75264199906],[-71.416466,41.75216399906],[-71.416939,41.75182999906],[-71.416901,41.75173999906],[-71.416862,41.75168299906],[-71.41626,41.75118599906],[-71.416176,41.75113899906],[-71.416054,41.75112299906],[-71.416115,41.75108099906],[-71.416198,41.75101699906],[-71.41629,41.75094299906],[-71.41642,41.75082699906],[-71.416466,41.75078099906],[-71.416519,41.75072199906],[-71.416549,41.75067799906],[-71.416603,41.75060299906],[-71.41668,41.75046599906],[-71.416817,41.74987799906],[-71.417007,41.74904499906],[-71.417092,41.74866499906],[-71.417099,41.74845299906],[-71.417099,41.74832299906],[-71.41703,41.74812199906],[-71.416954,41.74792099906],[-71.416847,41.74764799906],[-71.416725,41.74734399906],[-71.416603,41.74716199906],[-71.416565,41.74709599906],[-71.416382,41.74691899906],[-71.416092,41.74673599906],[-71.415687,41.74656499906],[-71.415428,41.74645299906],[-71.414742,41.74616599906],[-71.414131,41.74589999906],[-71.41388,41.74577899906],[-71.413742,41.74569199906],[-71.413643,41.74560399906],[-71.413635,41.74559499906],[-71.413567,41.74551999906],[-71.413506,41.74542599906],[-71.413437,41.74527899906],[-71.413376,41.74498799906],[-71.413299,41.74464399906],[-71.413284,41.74457499906],[-71.4132,41.74408199906],[-71.413147,41.74380399906],[-71.41314,41.74375699906],[-71.413117,41.74359699906],[-71.413109,41.74350699906],[-71.413124,41.74343499906],[-71.413155,41.74334899906],[-71.4132,41.74326199906],[-71.413238,41.74316699906],[-71.413246,41.74309899906],[-71.413231,41.74300899906],[-71.413139,41.74259299906],[-71.413109,41.74244699906],[-71.413048,41.74213499906],[-71.413033,41.74208599906],[-71.41301,41.74196499906],[-71.412964,41.74168199906],[-71.41291,41.74144499906],[-71.412834,41.74109499906],[-71.412781,41.74076299906],[-71.412949,41.74074599906],[-71.413391,41.74069599906],[-71.413979,41.74062499906],[-71.414673,41.74054299906],[-71.415123,41.74049699906],[-71.415268,41.74048099906],[-71.415985,41.74038899906],[-71.416824,41.74030899906],[-71.417046,41.74030399906],[-71.417061,41.73988499906],[-71.417053,41.73961899906],[-71.417076,41.73952899906],[-71.417122,41.73942899906],[-71.417198,41.73929199906],[-71.417267,41.73918699906],[-71.417305,41.73911899906]]]}}"}, +{"type": "blockgroup", "typeId": 213001, "areaId": 29222, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.394882,41.74694199906],[-71.394768,41.74684099906],[-71.394692,41.74676999906],[-71.394631,41.74669499906],[-71.394463,41.74646899906],[-71.394364,41.74634499906],[-71.394264,41.74609499906],[-71.394179,41.74587599906],[-71.39415,41.74569199906],[-71.394112,41.74531899906],[-71.393944,41.74446699906],[-71.393913,41.74429599906],[-71.393783,41.74357399906],[-71.393646,41.74283399906],[-71.393532,41.74228699906],[-71.393471,41.74227499906],[-71.393417,41.74225799906],[-71.393364,41.74223199906],[-71.393326,41.74220099906],[-71.393295,41.74216999906],[-71.39328,41.74213399906],[-71.393105,41.74213799906],[-71.39283,41.74216599906],[-71.392517,41.74219999906],[-71.392464,41.74220499906],[-71.392044,41.74224999906],[-71.391807,41.74228699906],[-71.391647,41.74230799906],[-71.391159,41.74239899906],[-71.390762,41.74245699906],[-71.390266,41.74256199906],[-71.390175,41.74258599906],[-71.389946,41.74262699906],[-71.389725,41.74266799906],[-71.389275,41.74275799906],[-71.389061,41.74281699906],[-71.388901,41.74284699906],[-71.388626,41.74291599906],[-71.388321,41.74298099906],[-71.388245,41.74299599906],[-71.388001,41.74304999906],[-71.387703,41.74311999906],[-71.387352,41.74316699906],[-71.386978,41.74322499906],[-71.386902,41.74323099906],[-71.386284,41.74331099906],[-71.385971,41.74335799906],[-71.38575,41.74338499906],[-71.385369,41.74342899906],[-71.385002,41.74346799906],[-71.384674,41.74349299906],[-71.3843,41.74354599906],[-71.384098,41.74356299906],[-71.383972,41.74357499906],[-71.383698,41.74358499906],[-71.383453,41.74358199906],[-71.383285,41.74356699906],[-71.383079,41.74352199906],[-71.383049,41.74351299906],[-71.382942,41.74348399906],[-71.382881,41.74347199906],[-71.382752,41.74343799906],[-71.382812,41.74323499906],[-71.382836,41.74310799906],[-71.382843,41.74305399906],[-71.382843,41.74299099906],[-71.382797,41.74284799906],[-71.382736,41.74268199906],[-71.38266,41.74243199906],[-71.382606,41.74228899906],[-71.382576,41.74215399906],[-71.382553,41.74200599906],[-71.382545,41.74193899906],[-71.38253,41.74171799906],[-71.382492,41.74147599906],[-71.382439,41.74125599906],[-71.382431,41.74116699906],[-71.3824,41.74096499906],[-71.382393,41.74076699906],[-71.382408,41.74061299906],[-71.38237,41.74050099906],[-71.382347,41.74034899906],[-71.38234,41.74015999906],[-71.382347,41.73996099906],[-71.382309,41.73975999906],[-71.38224,41.73956299906],[-71.382156,41.73936699906],[-71.38205,41.73920699906],[-71.382019,41.73915299906],[-71.381943,41.73902899906],[-71.381927,41.73887999906],[-71.38195,41.73875799906],[-71.381988,41.73863999906],[-71.382034,41.73853099906],[-71.382096,41.73833699906],[-71.382118,41.73815099906],[-71.382134,41.73802499906],[-71.382134,41.73790299906],[-71.382103,41.73778699906],[-71.38208,41.73766599906],[-71.38205,41.73754499906],[-71.382042,41.73743299906],[-71.38205,41.73731999906],[-71.38205,41.73720699906],[-71.382065,41.73710299906],[-71.382072,41.73699099906],[-71.382065,41.73686499906],[-71.38205,41.73672999906],[-71.382027,41.73655499906],[-71.382004,41.73638899906],[-71.381996,41.73622199906],[-71.381721,41.73619599906],[-71.380977,41.73617399906],[-71.366103,41.73666999906],[-71.368056,41.73889399906],[-71.368512,41.73942099906],[-71.372508,41.74472699906],[-71.373802,41.74749999906],[-71.374965,41.74964099906],[-71.380191,41.74981099906],[-71.380959,41.75022299906],[-71.382371,41.75108399906],[-71.382583,41.75121299906],[-71.383697,41.75092099906],[-71.383667,41.75074599906],[-71.383621,41.75049899906],[-71.383583,41.75019799906],[-71.38491,41.75017999906],[-71.38649,41.75015599906],[-71.387825,41.75013299906],[-71.389038,41.75012099906],[-71.390991,41.75009799906],[-71.390968,41.74939199906],[-71.390991,41.74879699906],[-71.390946,41.74868999906],[-71.39122,41.74862599906],[-71.391388,41.74856799906],[-71.391533,41.74851099906],[-71.391693,41.74843599906],[-71.3918,41.74837899906],[-71.391838,41.74835599906],[-71.392197,41.74814599906],[-71.392755,41.74781799906],[-71.393166,41.74757199906],[-71.393494,41.74738099906],[-71.393822,41.74722499906],[-71.393929,41.74717299906],[-71.394066,41.74712499906],[-71.394226,41.74707299906],[-71.39431,41.74705299906],[-71.394768,41.74696199906],[-71.394882,41.74694199906]]]}}"}, +{"type": "blockgroup", "typeId": 213002, "areaId": 29223, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.408104,41.73660999906],[-71.408081,41.73643499906],[-71.408017,41.73606799906],[-71.407989,41.73592299906],[-71.407679,41.73516699906],[-71.407267,41.73409899906],[-71.40708,41.73358499906],[-71.407044,41.73345299906],[-71.406975,41.73345499906],[-71.406196,41.73349799906],[-71.406098,41.73350399906],[-71.405815,41.73352399906],[-71.404953,41.73355499906],[-71.404289,41.73353299906],[-71.404152,41.73352299906],[-71.403481,41.73346499906],[-71.40303,41.73336599906],[-71.402893,41.73333699906],[-71.402489,41.73321999906],[-71.402328,41.73317299906],[-71.402268,41.73315199906],[-71.401474,41.73281299906],[-71.401154,41.73266999906],[-71.400589,41.73241699906],[-71.400482,41.73237499906],[-71.399574,41.73196599906],[-71.398537,41.73150599906],[-71.398415,41.73144999906],[-71.397621,41.73109199906],[-71.397324,41.73095899906],[-71.397108,41.73086299906],[-71.396271,41.73048999906],[-71.395821,41.73030099906],[-71.395568,41.73019699906],[-71.395309,41.73009099906],[-71.395119,41.73000999906],[-71.395007,41.72996299906],[-71.394905,41.72991999906],[-71.394295,41.72966199906],[-71.393799,41.72945199906],[-71.392914,41.72908299906],[-71.3927,41.72900199906],[-71.391983,41.72871999906],[-71.391831,41.72865499906],[-71.39164,41.72857799906],[-71.391572,41.72855199906],[-71.390762,41.72823799906],[-71.390625,41.72818499906],[-71.390282,41.72804799906],[-71.389511,41.72773099906],[-71.389259,41.72761399906],[-71.385895,41.72802199906],[-71.384476,41.72818199906],[-71.384033,41.72824099906],[-71.383934,41.72824699906],[-71.383904,41.72823899906],[-71.383835,41.72820499906],[-71.383598,41.72797999906],[-71.38327,41.72769399906],[-71.38308,41.72754499906],[-71.383049,41.72751799906],[-71.382729,41.72772799906],[-71.3825,41.72790299906],[-71.382005,41.72798999906],[-71.380832,41.72813599906],[-71.367009,41.73410399906],[-71.365583,41.73463599906],[-71.364561,41.73492799906],[-71.365207,41.73564899906],[-71.366103,41.73666999906],[-71.380977,41.73617399906],[-71.381721,41.73619599906],[-71.381996,41.73622199906],[-71.382004,41.73638899906],[-71.382027,41.73655499906],[-71.38205,41.73672999906],[-71.382065,41.73686499906],[-71.382072,41.73699099906],[-71.382065,41.73710299906],[-71.38205,41.73720699906],[-71.38205,41.73731999906],[-71.382042,41.73743299906],[-71.38205,41.73754499906],[-71.38208,41.73766599906],[-71.382103,41.73778699906],[-71.382134,41.73790299906],[-71.382134,41.73802499906],[-71.382118,41.73815099906],[-71.382096,41.73833699906],[-71.382034,41.73853099906],[-71.381988,41.73863999906],[-71.38195,41.73875799906],[-71.381927,41.73887999906],[-71.381943,41.73902899906],[-71.382019,41.73915299906],[-71.38205,41.73920699906],[-71.382156,41.73936699906],[-71.38224,41.73956299906],[-71.382309,41.73975999906],[-71.382347,41.73996099906],[-71.38234,41.74015999906],[-71.382347,41.74034899906],[-71.38237,41.74050099906],[-71.382408,41.74061299906],[-71.382393,41.74076699906],[-71.3824,41.74096499906],[-71.382431,41.74116699906],[-71.382439,41.74125599906],[-71.382492,41.74147599906],[-71.38253,41.74171799906],[-71.382545,41.74193899906],[-71.382553,41.74200599906],[-71.382576,41.74215399906],[-71.382606,41.74228899906],[-71.38266,41.74243199906],[-71.382736,41.74268199906],[-71.382797,41.74284799906],[-71.382843,41.74299099906],[-71.382843,41.74305399906],[-71.382836,41.74310799906],[-71.382812,41.74323499906],[-71.382752,41.74343799906],[-71.382881,41.74347199906],[-71.382942,41.74348399906],[-71.383049,41.74351299906],[-71.383079,41.74352199906],[-71.383285,41.74356699906],[-71.383453,41.74358199906],[-71.383698,41.74358499906],[-71.383972,41.74357499906],[-71.384098,41.74356299906],[-71.3843,41.74354599906],[-71.384674,41.74349299906],[-71.385002,41.74346799906],[-71.385369,41.74342899906],[-71.38575,41.74338499906],[-71.385971,41.74335799906],[-71.386284,41.74331099906],[-71.386902,41.74323099906],[-71.386978,41.74322499906],[-71.387352,41.74316699906],[-71.387703,41.74311999906],[-71.388001,41.74304999906],[-71.388245,41.74299599906],[-71.388321,41.74298099906],[-71.388626,41.74291599906],[-71.388901,41.74284699906],[-71.389061,41.74281699906],[-71.389275,41.74275799906],[-71.389725,41.74266799906],[-71.389946,41.74262699906],[-71.390175,41.74258599906],[-71.390266,41.74256199906],[-71.390762,41.74245699906],[-71.391159,41.74239899906],[-71.391647,41.74230799906],[-71.391807,41.74228699906],[-71.392044,41.74224999906],[-71.392464,41.74220499906],[-71.392517,41.74219999906],[-71.39283,41.74216599906],[-71.393105,41.74213799906],[-71.39328,41.74213399906],[-71.393273,41.74208499906],[-71.393288,41.74204399906],[-71.393349,41.74197999906],[-71.39341,41.74194699906],[-71.393478,41.74193199906],[-71.39344,41.74172999906],[-71.39312,41.73989999906],[-71.393181,41.73988499906],[-71.393227,41.73986099906],[-71.393249,41.73983399906],[-71.393288,41.73980199906],[-71.393303,41.73976999906],[-71.393318,41.73972399906],[-71.393318,41.73969699906],[-71.393669,41.73964499906],[-71.394104,41.73960899906],[-71.394341,41.73959099906],[-71.394638,41.73957099906],[-71.395065,41.73959799906],[-71.395454,41.73967099906],[-71.395508,41.73968299906],[-71.395851,41.73974799906],[-71.396309,41.73993699906],[-71.396469,41.73999199906],[-71.396629,41.74007399906],[-71.39666,41.74009199906],[-71.396744,41.74014799906],[-71.396881,41.74026699906],[-71.397384,41.74069799906],[-71.397453,41.74079099906],[-71.39785,41.74073299906],[-71.398285,41.74069299906],[-71.398392,41.74068599906],[-71.398339,41.74028599906],[-71.398247,41.73987399906],[-71.398155,41.73941599906],[-71.398048,41.73898199906],[-71.398537,41.73892699906],[-71.39904,41.73889399906],[-71.399513,41.73889299906],[-71.400101,41.73891599906],[-71.400528,41.73896599906],[-71.400673,41.73901299906],[-71.400871,41.73911699906],[-71.401291,41.73870199906],[-71.401421,41.73859599906],[-71.401749,41.73833299906],[-71.401993,41.73811599906],[-71.40203,41.73807999906],[-71.402184,41.73793599906],[-71.402512,41.73760499906],[-71.402634,41.73749899906],[-71.402824,41.73733299906],[-71.403175,41.73712799906],[-71.403549,41.73695799906],[-71.403915,41.73683699906],[-71.404015,41.73681699906],[-71.404381,41.73675599906],[-71.404571,41.73673799906],[-71.404755,41.73673399906],[-71.405098,41.73673599906],[-71.405609,41.73677499906],[-71.405922,41.73679499906],[-71.406021,41.73679299906],[-71.406235,41.73678899906],[-71.406616,41.73677599906],[-71.406967,41.73674199906],[-71.407226,41.73669999906],[-71.407425,41.73666899906],[-71.40756,41.73664399906],[-71.408104,41.73660999906]]]}}"}, +{"type": "blockgroup", "typeId": 213003, "areaId": 29224, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.406548,41.74510399906],[-71.405922,41.74517599906],[-71.405609,41.74522299906],[-71.405182,41.74528999906],[-71.404785,41.74535299906],[-71.404686,41.74536799906],[-71.403954,41.74548699906],[-71.403015,41.74564199906],[-71.402916,41.74565699906],[-71.402306,41.74575599906],[-71.402223,41.74576899906],[-71.401871,41.74582799906],[-71.401054,41.74596199906],[-71.400932,41.74597799906],[-71.400207,41.74609199906],[-71.399376,41.74622699906],[-71.398544,41.74635699906],[-71.397247,41.74656399906],[-71.396606,41.74666299906],[-71.396218,41.74672499906],[-71.394882,41.74694199906],[-71.394768,41.74696199906],[-71.39431,41.74705299906],[-71.394226,41.74707299906],[-71.394066,41.74712499906],[-71.393929,41.74717299906],[-71.393822,41.74722499906],[-71.393494,41.74738099906],[-71.393166,41.74757199906],[-71.392755,41.74781799906],[-71.392197,41.74814599906],[-71.391838,41.74835599906],[-71.3918,41.74837899906],[-71.391693,41.74843599906],[-71.391533,41.74851099906],[-71.391388,41.74856799906],[-71.39122,41.74862599906],[-71.390946,41.74868999906],[-71.390991,41.74879699906],[-71.390968,41.74939199906],[-71.390991,41.75009799906],[-71.391007,41.75077799906],[-71.391037,41.75116899906],[-71.391342,41.75119899906],[-71.391792,41.75122599906],[-71.392044,41.75124299906],[-71.392944,41.75126499906],[-71.393966,41.75128399906],[-71.394455,41.75096299906],[-71.394814,41.75075699906],[-71.394844,41.75074299906],[-71.395103,41.75058899906],[-71.39563,41.75028599906],[-71.395706,41.75023899906],[-71.395805,41.75018299906],[-71.396484,41.74983499906],[-71.39663,41.74981199906],[-71.398087,41.74958099906],[-71.398498,41.74951399906],[-71.399391,41.74937399906],[-71.400925,41.74912999906],[-71.401291,41.74906899906],[-71.40152,41.74903199906],[-71.401726,41.74900099906],[-71.401772,41.74899099906],[-71.401883,41.74897199906],[-71.403717,41.74867599906],[-71.404556,41.74854499906],[-71.404724,41.74823999906],[-71.404869,41.74798099906],[-71.405037,41.74766199906],[-71.405075,41.74760199906],[-71.405327,41.74713299906],[-71.40535,41.74709199906],[-71.405479,41.74685099906],[-71.405617,41.74659999906],[-71.405731,41.74639499906],[-71.40588,41.74612599906],[-71.406372,41.74538199906],[-71.406548,41.74510399906]]]}}"}, +{"type": "blockgroup", "typeId": 213004, "areaId": 29225, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.408173,41.73866699906],[-71.408172,41.73852299906],[-71.408142,41.73740599906],[-71.408137,41.73716199906],[-71.408134,41.73692499906],[-71.408104,41.73660999906],[-71.40756,41.73664399906],[-71.407425,41.73666899906],[-71.407226,41.73669999906],[-71.406967,41.73674199906],[-71.406616,41.73677599906],[-71.406235,41.73678899906],[-71.406021,41.73679299906],[-71.405922,41.73679499906],[-71.405609,41.73677499906],[-71.405098,41.73673599906],[-71.404755,41.73673399906],[-71.404571,41.73673799906],[-71.404381,41.73675599906],[-71.404015,41.73681699906],[-71.403915,41.73683699906],[-71.403549,41.73695799906],[-71.403175,41.73712799906],[-71.402824,41.73733299906],[-71.402634,41.73749899906],[-71.402512,41.73760499906],[-71.402184,41.73793599906],[-71.40203,41.73807999906],[-71.401993,41.73811599906],[-71.401749,41.73833299906],[-71.401421,41.73859599906],[-71.401291,41.73870199906],[-71.400871,41.73911699906],[-71.400673,41.73901299906],[-71.400528,41.73896599906],[-71.400101,41.73891599906],[-71.399513,41.73889299906],[-71.39904,41.73889399906],[-71.398537,41.73892699906],[-71.398048,41.73898199906],[-71.398155,41.73941599906],[-71.398247,41.73987399906],[-71.398339,41.74028599906],[-71.398392,41.74068599906],[-71.398285,41.74069299906],[-71.39785,41.74073299906],[-71.397453,41.74079099906],[-71.397384,41.74069799906],[-71.396881,41.74026699906],[-71.396744,41.74014799906],[-71.39666,41.74009199906],[-71.396629,41.74007399906],[-71.396469,41.73999199906],[-71.396309,41.73993699906],[-71.395851,41.73974799906],[-71.395508,41.73968299906],[-71.395454,41.73967099906],[-71.395065,41.73959799906],[-71.394638,41.73957099906],[-71.394341,41.73959099906],[-71.394104,41.73960899906],[-71.393669,41.73964499906],[-71.393318,41.73969699906],[-71.393318,41.73972399906],[-71.393303,41.73976999906],[-71.393288,41.73980199906],[-71.393249,41.73983399906],[-71.393227,41.73986099906],[-71.393181,41.73988499906],[-71.39312,41.73989999906],[-71.39344,41.74172999906],[-71.393478,41.74193199906],[-71.39341,41.74194699906],[-71.393349,41.74197999906],[-71.393288,41.74204399906],[-71.393273,41.74208499906],[-71.39328,41.74213399906],[-71.393295,41.74216999906],[-71.393326,41.74220099906],[-71.393364,41.74223199906],[-71.393417,41.74225799906],[-71.393471,41.74227499906],[-71.393532,41.74228699906],[-71.393646,41.74283399906],[-71.393783,41.74357399906],[-71.393913,41.74429599906],[-71.393944,41.74446699906],[-71.394112,41.74531899906],[-71.39415,41.74569199906],[-71.394179,41.74587599906],[-71.394264,41.74609499906],[-71.394364,41.74634499906],[-71.394463,41.74646899906],[-71.394631,41.74669499906],[-71.394692,41.74676999906],[-71.394768,41.74684099906],[-71.394882,41.74694199906],[-71.396218,41.74672499906],[-71.396606,41.74666299906],[-71.397247,41.74656399906],[-71.398544,41.74635699906],[-71.399376,41.74622699906],[-71.400207,41.74609199906],[-71.400932,41.74597799906],[-71.401054,41.74596199906],[-71.401871,41.74582799906],[-71.402223,41.74576899906],[-71.402306,41.74575599906],[-71.402916,41.74565699906],[-71.403015,41.74564199906],[-71.403954,41.74548699906],[-71.404686,41.74536799906],[-71.404785,41.74535299906],[-71.405182,41.74528999906],[-71.405609,41.74522299906],[-71.405922,41.74517599906],[-71.406548,41.74510399906],[-71.406739,41.74480299906],[-71.406807,41.74467499906],[-71.40686,41.74456599906],[-71.406937,41.74440199906],[-71.407112,41.74401599906],[-71.407341,41.74350199906],[-71.407418,41.74333399906],[-71.407433,41.74330699906],[-71.407692,41.74272499906],[-71.407707,41.74267099906],[-71.407761,41.74246199906],[-71.407845,41.74205999906],[-71.407852,41.74198799906],[-71.407867,41.74183899906],[-71.407906,41.74144199906],[-71.407928,41.74128799906],[-71.407959,41.74098099906],[-71.408035,41.74028599906],[-71.40805,41.74009699906],[-71.408073,41.73991599906],[-71.408142,41.73916699906],[-71.40815,41.73903599906],[-71.408173,41.73866699906]]]}}"}, +{"type": "blockgroup", "typeId": 214011, "areaId": 29226, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.415271,41.71617999906],[-71.41523,41.71611999906],[-71.415176,41.71607599906],[-71.41513,41.71603199906],[-71.415077,41.71598399906],[-71.415024,41.71594399906],[-71.414955,41.71589599906],[-71.414887,41.71583899906],[-71.414833,41.71577299906],[-71.414803,41.71572699906],[-71.414428,41.71548799906],[-71.414365,41.71543999906],[-71.414315,41.71539599906],[-71.412988,41.71426399906],[-71.413281,41.71407599906],[-71.413345,41.71408299906],[-71.413415,41.71401699906],[-71.413132,41.71298499906],[-71.412811,41.71282499906],[-71.412506,41.71269199906],[-71.412338,41.71259599906],[-71.412048,41.71247599906],[-71.411743,41.71234299906],[-71.411476,41.71218699906],[-71.41124,41.71203799906],[-71.411049,41.71191599906],[-71.410828,41.71178999906],[-71.410736,41.71173399906],[-71.41037,41.71152499906],[-71.40979,41.71119499906],[-71.409409,41.71099599906],[-71.408844,41.71067499906],[-71.408569,41.71052299906],[-71.408356,41.71040599906],[-71.408127,41.71027999906],[-71.407562,41.71000399906],[-71.407081,41.70976099906],[-71.406616,41.70992399906],[-71.406082,41.71010199906],[-71.405205,41.71040899906],[-71.404739,41.71056699906],[-71.40432,41.71071999906],[-71.403671,41.71095399906],[-71.403336,41.71106899906],[-71.402618,41.71132299906],[-71.401993,41.71153899906],[-71.401451,41.71172599906],[-71.401065,41.71186399906],[-71.400986,41.71189299906],[-71.400688,41.71199799906],[-71.40031,41.71213699906],[-71.400069,41.71222499906],[-71.399887,41.71228999906],[-71.399559,41.71240399906],[-71.399055,41.71258199906],[-71.399132,41.71297599906],[-71.399147,41.71314699906],[-71.399193,41.71360499906],[-71.399254,41.71409099906],[-71.399285,41.71437599906],[-71.3993,41.71448099906],[-71.3993,41.71451299906],[-71.39933,41.71479599906],[-71.399399,41.71517699906],[-71.399437,41.71531599906],[-71.399475,41.71545899906],[-71.399521,41.71559299906],[-71.399574,41.71571399906],[-71.399615,41.71580599906],[-71.399661,41.71589599906],[-71.399701,41.71595699906],[-71.399735,41.71601799906],[-71.399775,41.71607899906],[-71.399802,41.71612299906],[-71.399815,41.71614499906],[-71.399833,41.71617399906],[-71.399918,41.71630999906],[-71.400101,41.71654099906],[-71.400253,41.71670799906],[-71.40033,41.71678799906],[-71.400413,41.71686699906],[-71.400528,41.71698199906],[-71.400627,41.71707399906],[-71.400665,41.71711899906],[-71.401024,41.71747599906],[-71.40126,41.71771399906],[-71.401465,41.71792399906],[-71.401604,41.71806699906],[-71.401642,41.71810199906],[-71.401993,41.71846399906],[-71.402061,41.71853499906],[-71.402474,41.71900399906],[-71.402558,41.71908699906],[-71.402924,41.71948999906],[-71.403313,41.71990899906],[-71.403492,41.72017599906],[-71.40358,41.72030399906],[-71.403755,41.72070599906],[-71.403793,41.72083599906],[-71.403885,41.72112199906],[-71.404411,41.72102999906],[-71.404579,41.72096799906],[-71.404571,41.72102199906],[-71.404617,41.72109799906],[-71.405006,41.72139599906],[-71.405297,41.72164199906],[-71.405373,41.72172599906],[-71.405464,41.72177799906],[-71.40554,41.72181699906],[-71.405632,41.72182899906],[-71.405914,41.72180899906],[-71.40628,41.72173399906],[-71.406449,41.72171199906],[-71.407601,41.72151699906],[-71.40818,41.72140999906],[-71.408531,41.72135399906],[-71.408691,41.72130099906],[-71.408768,41.72128099906],[-71.408867,41.72157599906],[-71.408997,41.72198299906],[-71.409104,41.72233199906],[-71.409149,41.72252499906],[-71.409696,41.72253799906],[-71.410043,41.72254699906],[-71.410057,41.72250999906],[-71.410072,41.72244299906],[-71.410072,41.72232999906],[-71.410042,41.72226299906],[-71.410004,41.72220999906],[-71.409943,41.72214799906],[-71.409889,41.72209099906],[-71.409843,41.72204699906],[-71.40976,41.72193599906],[-71.409721,41.72186399906],[-71.409699,41.72180199906],[-71.409683,41.72174399906],[-71.409668,41.72168099906],[-71.409668,41.72150099906],[-71.409675,41.72144199906],[-71.409691,41.72137899906],[-71.409706,41.72131099906],[-71.409744,41.72124299906],[-71.409798,41.72117399906],[-71.409851,41.72111899906],[-71.409905,41.72106799906],[-71.409927,41.72103599906],[-71.41005,41.72093899906],[-71.410103,41.72089299906],[-71.410179,41.72085099906],[-71.410248,41.72082199906],[-71.410408,41.72075999906],[-71.410469,41.72073199906],[-71.410538,41.72070399906],[-71.410606,41.72067099906],[-71.410675,41.72064699906],[-71.410782,41.72061299906],[-71.41098,41.72052799906],[-71.411064,41.72048499906],[-71.41114,41.72044299906],[-71.41124,41.72040499906],[-71.411346,41.72037099906],[-71.411468,41.72033699906],[-71.411583,41.72030299906],[-71.411682,41.72026999906],[-71.411796,41.72023999906],[-71.41188,41.72022099906],[-71.411919,41.72021499906],[-71.412049,41.72018999906],[-71.41217,41.72016499906],[-71.4123,41.72014399906],[-71.412437,41.72013199906],[-71.412537,41.72011699906],[-71.412811,41.72006999906],[-71.412941,41.72004999906],[-71.413055,41.72003399906],[-71.413162,41.72001799906],[-71.413254,41.72000299906],[-71.413338,41.71999599906],[-71.413422,41.71999899906],[-71.413582,41.71998699906],[-71.413688,41.71995699906],[-71.413773,41.71993799906],[-71.413872,41.71990399906],[-71.413978,41.71986599906],[-71.414078,41.71983199906],[-71.414177,41.71980299906],[-71.414269,41.71977399906],[-71.414353,41.71974499906],[-71.414436,41.71972099906],[-71.414512,41.71970099906],[-71.414597,41.71967299906],[-71.41468,41.71962999906],[-71.414734,41.71959799906],[-71.41481,41.71954199906],[-71.414864,41.71948199906],[-71.414894,41.71942299906],[-71.414917,41.71936899906],[-71.414963,41.71931399906],[-71.414993,41.71925499906],[-71.415009,41.71921799906],[-71.415016,41.71918699906],[-71.415016,41.71913699906],[-71.415024,41.71907799906],[-71.415054,41.71902799906],[-71.415085,41.71898699906],[-71.415123,41.71894999906],[-71.415146,41.71890499906],[-71.415161,41.71883199906],[-71.415161,41.71876899906],[-71.415153,41.71871099906],[-71.415131,41.71865299906],[-71.415085,41.71860899906],[-71.415092,41.71854999906],[-71.415123,41.71849099906],[-71.415131,41.71842799906],[-71.415092,41.71837399906],[-71.414948,41.71830099906],[-71.414917,41.71826999906],[-71.414925,41.71823799906],[-71.414955,41.71821099906],[-71.415024,41.71816899906],[-71.415077,41.71812299906],[-71.415062,41.71806399906],[-71.415016,41.71800199906],[-71.41494,41.71795399906],[-71.414848,41.71791999906],[-71.414787,41.71786299906],[-71.414757,41.71781399906],[-71.414711,41.71776999906],[-71.414635,41.71772199906],[-71.414566,41.71770999906],[-71.414497,41.71767499906],[-71.414482,41.71759499906],[-71.414482,41.71753199906],[-71.414467,41.71747799906],[-71.414421,41.71742499906],[-71.414368,41.71738499906],[-71.414314,41.71733699906],[-71.414299,41.71728799906],[-71.414353,41.71723699906],[-71.414406,41.71719499906],[-71.414429,41.71710899906],[-71.414429,41.71704599906],[-71.414436,41.71698799906],[-71.414444,41.71693299906],[-71.414482,41.71687399906],[-71.414505,41.71681099906],[-71.41452,41.71675199906],[-71.414543,41.71668799906],[-71.414589,41.71664699906],[-71.414635,41.71662299906],[-71.414665,41.71660899906],[-71.414757,41.71657999906],[-71.414833,41.71656099906],[-71.414909,41.71654999906],[-71.415009,41.71652999906],[-71.415047,41.71650699906],[-71.415085,41.71648299906],[-71.415108,41.71642399906],[-71.415077,41.71639299906],[-71.415123,41.71634299906],[-71.415184,41.71629699906],[-71.415245,41.71624099906],[-71.415271,41.71617999906]]]}}"}, +{"type": "blockgroup", "typeId": 214012, "areaId": 29227, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.416245,41.72557799906],[-71.416221,41.72539299906],[-71.416161,41.72507999906],[-71.416069,41.72480699906],[-71.415993,41.72461499906],[-71.415924,41.72450799906],[-71.415802,41.72428099906],[-71.415703,41.72409399906],[-71.415581,41.72389399906],[-71.415482,41.72368399906],[-71.415382,41.72349699906],[-71.415283,41.72332399906],[-71.415146,41.72316899906],[-71.415016,41.72299199906],[-71.414963,41.72288899906],[-71.41494,41.72277699906],[-71.414955,41.72264199906],[-71.414993,41.72241999906],[-71.415047,41.72218499906],[-71.415123,41.72197199906],[-71.415199,41.72178999906],[-71.415375,41.72152099906],[-71.415565,41.72123699906],[-71.415741,41.72095499906],[-71.415802,41.72084099906],[-71.415863,41.72073599906],[-71.415932,41.72064399906],[-71.41597,41.72052599906],[-71.415955,41.72040499906],[-71.415893,41.72022599906],[-71.41581,41.72002099906],[-71.41571,41.71980199906],[-71.415634,41.71960999906],[-71.415611,41.71949399906],[-71.415642,41.71941199906],[-71.415772,41.71931899906],[-71.41597,41.71924799906],[-71.415514,41.71702799906],[-71.415254,41.71626999906],[-71.415291,41.71616599906],[-71.415232,41.71606399906],[-71.415099,41.71593899906],[-71.414803,41.71572699906],[-71.414833,41.71577299906],[-71.414887,41.71583899906],[-71.414955,41.71589599906],[-71.415024,41.71594399906],[-71.415077,41.71598399906],[-71.41513,41.71603199906],[-71.415176,41.71607599906],[-71.41523,41.71611999906],[-71.415271,41.71617999906],[-71.415245,41.71624099906],[-71.415184,41.71629699906],[-71.415123,41.71634299906],[-71.415077,41.71639299906],[-71.415108,41.71642399906],[-71.415085,41.71648299906],[-71.415047,41.71650699906],[-71.415009,41.71652999906],[-71.414909,41.71654999906],[-71.414833,41.71656099906],[-71.414757,41.71657999906],[-71.414665,41.71660899906],[-71.414635,41.71662299906],[-71.414589,41.71664699906],[-71.414543,41.71668799906],[-71.41452,41.71675199906],[-71.414505,41.71681099906],[-71.414482,41.71687399906],[-71.414444,41.71693299906],[-71.414436,41.71698799906],[-71.414429,41.71704599906],[-71.414429,41.71710899906],[-71.414406,41.71719499906],[-71.414353,41.71723699906],[-71.414299,41.71728799906],[-71.414314,41.71733699906],[-71.414368,41.71738499906],[-71.414421,41.71742499906],[-71.414467,41.71747799906],[-71.414482,41.71753199906],[-71.414482,41.71759499906],[-71.414497,41.71767499906],[-71.414566,41.71770999906],[-71.414635,41.71772199906],[-71.414711,41.71776999906],[-71.414757,41.71781399906],[-71.414787,41.71786299906],[-71.414848,41.71791999906],[-71.41494,41.71795399906],[-71.415016,41.71800199906],[-71.415062,41.71806399906],[-71.415077,41.71812299906],[-71.415024,41.71816899906],[-71.414955,41.71821099906],[-71.414925,41.71823799906],[-71.414917,41.71826999906],[-71.414948,41.71830099906],[-71.415092,41.71837399906],[-71.415131,41.71842799906],[-71.415123,41.71849099906],[-71.415092,41.71854999906],[-71.415085,41.71860899906],[-71.415131,41.71865299906],[-71.415153,41.71871099906],[-71.415161,41.71876899906],[-71.415161,41.71883199906],[-71.415146,41.71890499906],[-71.415123,41.71894999906],[-71.415085,41.71898699906],[-71.415054,41.71902799906],[-71.415024,41.71907799906],[-71.415016,41.71913699906],[-71.415016,41.71918699906],[-71.415009,41.71921799906],[-71.414993,41.71925499906],[-71.414963,41.71931399906],[-71.414917,41.71936899906],[-71.414894,41.71942299906],[-71.414864,41.71948199906],[-71.41481,41.71954199906],[-71.414734,41.71959799906],[-71.41468,41.71962999906],[-71.414597,41.71967299906],[-71.414512,41.71970099906],[-71.414436,41.71972099906],[-71.414353,41.71974499906],[-71.414269,41.71977399906],[-71.414177,41.71980299906],[-71.414078,41.71983199906],[-71.413978,41.71986599906],[-71.413872,41.71990399906],[-71.413773,41.71993799906],[-71.413688,41.71995699906],[-71.413582,41.71998699906],[-71.413422,41.71999899906],[-71.413338,41.71999599906],[-71.413254,41.72000299906],[-71.413162,41.72001799906],[-71.413055,41.72003399906],[-71.412941,41.72004999906],[-71.412811,41.72006999906],[-71.412537,41.72011699906],[-71.412437,41.72013199906],[-71.4123,41.72014399906],[-71.41217,41.72016499906],[-71.412049,41.72018999906],[-71.411919,41.72021499906],[-71.41188,41.72022099906],[-71.411796,41.72023999906],[-71.411682,41.72026999906],[-71.411583,41.72030299906],[-71.411468,41.72033699906],[-71.411346,41.72037099906],[-71.41124,41.72040499906],[-71.41114,41.72044299906],[-71.411064,41.72048499906],[-71.41098,41.72052799906],[-71.410782,41.72061299906],[-71.410675,41.72064699906],[-71.410606,41.72067099906],[-71.410538,41.72070399906],[-71.410469,41.72073199906],[-71.410408,41.72075999906],[-71.410248,41.72082199906],[-71.410179,41.72085099906],[-71.410103,41.72089299906],[-71.41005,41.72093899906],[-71.409927,41.72103599906],[-71.409905,41.72106799906],[-71.409851,41.72111899906],[-71.409798,41.72117399906],[-71.409744,41.72124299906],[-71.409706,41.72131099906],[-71.409691,41.72137899906],[-71.409675,41.72144199906],[-71.409668,41.72150099906],[-71.409668,41.72168099906],[-71.409683,41.72174399906],[-71.409699,41.72180199906],[-71.409721,41.72186399906],[-71.40976,41.72193599906],[-71.409843,41.72204699906],[-71.409889,41.72209099906],[-71.409943,41.72214799906],[-71.410004,41.72220999906],[-71.410042,41.72226299906],[-71.410072,41.72232999906],[-71.410072,41.72244299906],[-71.410057,41.72250999906],[-71.410043,41.72254699906],[-71.409696,41.72253799906],[-71.409149,41.72252499906],[-71.409104,41.72233199906],[-71.408997,41.72198299906],[-71.408867,41.72157599906],[-71.408768,41.72128099906],[-71.408691,41.72130099906],[-71.408531,41.72135399906],[-71.40818,41.72140999906],[-71.407601,41.72151699906],[-71.406449,41.72171199906],[-71.40628,41.72173399906],[-71.405914,41.72180899906],[-71.405632,41.72182899906],[-71.40554,41.72181699906],[-71.405464,41.72177799906],[-71.405373,41.72172599906],[-71.405297,41.72164199906],[-71.405006,41.72139599906],[-71.404617,41.72109799906],[-71.404571,41.72102199906],[-71.404579,41.72096799906],[-71.404411,41.72102999906],[-71.403885,41.72112199906],[-71.403923,41.72121599906],[-71.403969,41.72136399906],[-71.403992,41.72144399906],[-71.404152,41.72194499906],[-71.404282,41.72234299906],[-71.404327,41.72248599906],[-71.404396,41.72273299906],[-71.40448,41.72301899906],[-71.404556,41.72328299906],[-71.404587,41.72338599906],[-71.40464,41.72357899906],[-71.404709,41.72380199906],[-71.404846,41.72428999906],[-71.40493,41.72457699906],[-71.405007,41.72484499906],[-71.405106,41.72520299906],[-71.405205,41.72553499906],[-71.405252,41.72570699906],[-71.405266,41.72575799906],[-71.405419,41.72630499906],[-71.405441,41.72637199906],[-71.405571,41.72685099906],[-71.405586,41.72693599906],[-71.405655,41.72719599906],[-71.405701,41.72735699906],[-71.405708,41.72738799906],[-71.4058,41.72779199906],[-71.405838,41.72792999906],[-71.40593,41.72835199906],[-71.40596,41.72846399906],[-71.406074,41.72901999906],[-71.40609,41.72907799906],[-71.406685,41.72904299906],[-71.406792,41.72903599906],[-71.40728,41.72900799906],[-71.407967,41.72897099906],[-71.408455,41.72894299906],[-71.409134,41.72891099906],[-71.409257,41.72890299906],[-71.409737,41.72887499906],[-71.410263,41.72884199906],[-71.41037,41.72883999906],[-71.411163,41.72879599906],[-71.411202,41.72879499906],[-71.411789,41.72876499906],[-71.412033,41.72874599906],[-71.412414,41.72872499906],[-71.412689,41.72870999906],[-71.412735,41.72870399906],[-71.413002,41.72868999906],[-71.413284,41.72867899906],[-71.414009,41.72863699906],[-71.414238,41.72860499906],[-71.414398,41.72858799906],[-71.414458,41.72856699906],[-71.414543,41.72853599906],[-71.414673,41.72845699906],[-71.414833,41.72834999906],[-71.415016,41.72820599906],[-71.415184,41.72808599906],[-71.41539,41.72791899906],[-71.415542,41.72776299906],[-71.41568,41.72761099906],[-71.415802,41.72741499906],[-71.415871,41.72722899906],[-71.415924,41.72701199906],[-71.415947,41.72689899906],[-71.415993,41.72670899906],[-71.416038,41.72649199906],[-71.4161,41.72623399906],[-71.416176,41.72598899906],[-71.416222,41.72576699906],[-71.416245,41.72557799906]]]}}"}, +{"type": "blockgroup", "typeId": 214013, "areaId": 29228, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.420982,41.72457299906],[-71.420967,41.72451899906],[-71.420937,41.72448799906],[-71.420853,41.72447599906],[-71.420334,41.72448299906],[-71.419968,41.72449499906],[-71.420097,41.72390199906],[-71.420041,41.72384999906],[-71.419231,41.72375799906],[-71.419266,41.72359999906],[-71.419342,41.72319799906],[-71.418943,41.72301599906],[-71.418541,41.72283199906],[-71.418509,41.72263499906],[-71.417718,41.72247299906],[-71.41723,41.72237299906],[-71.41718,41.72206499906],[-71.417145,41.72113099906],[-71.41597,41.71924799906],[-71.415772,41.71931899906],[-71.415642,41.71941199906],[-71.415611,41.71949399906],[-71.415634,41.71960999906],[-71.41571,41.71980199906],[-71.41581,41.72002099906],[-71.415893,41.72022599906],[-71.415955,41.72040499906],[-71.41597,41.72052599906],[-71.415932,41.72064399906],[-71.415863,41.72073599906],[-71.415802,41.72084099906],[-71.415741,41.72095499906],[-71.415565,41.72123699906],[-71.415375,41.72152099906],[-71.415199,41.72178999906],[-71.415123,41.72197199906],[-71.415047,41.72218499906],[-71.414993,41.72241999906],[-71.414955,41.72264199906],[-71.41494,41.72277699906],[-71.414963,41.72288899906],[-71.415016,41.72299199906],[-71.415146,41.72316899906],[-71.415283,41.72332399906],[-71.415382,41.72349699906],[-71.415482,41.72368399906],[-71.415581,41.72389399906],[-71.415703,41.72409399906],[-71.415802,41.72428099906],[-71.415924,41.72450799906],[-71.415993,41.72461499906],[-71.416069,41.72480699906],[-71.416161,41.72507999906],[-71.416221,41.72539299906],[-71.416245,41.72557799906],[-71.416222,41.72576699906],[-71.416176,41.72598899906],[-71.4161,41.72623399906],[-71.416038,41.72649199906],[-71.415993,41.72670899906],[-71.415947,41.72689899906],[-71.415924,41.72701199906],[-71.415871,41.72722899906],[-71.415802,41.72741499906],[-71.41568,41.72761099906],[-71.415542,41.72776299906],[-71.41539,41.72791899906],[-71.415184,41.72808599906],[-71.415016,41.72820599906],[-71.414833,41.72834999906],[-71.414673,41.72845699906],[-71.414543,41.72853599906],[-71.414458,41.72856699906],[-71.414398,41.72858799906],[-71.414238,41.72860499906],[-71.414009,41.72863699906],[-71.413284,41.72867899906],[-71.413002,41.72868999906],[-71.412735,41.72870399906],[-71.412689,41.72870999906],[-71.412414,41.72872499906],[-71.412033,41.72874599906],[-71.411789,41.72876499906],[-71.411202,41.72879499906],[-71.411163,41.72879599906],[-71.41037,41.72883999906],[-71.410263,41.72884199906],[-71.409737,41.72887499906],[-71.409257,41.72890299906],[-71.409134,41.72891099906],[-71.408455,41.72894299906],[-71.407967,41.72897099906],[-71.40728,41.72900799906],[-71.406792,41.72903599906],[-71.406685,41.72904299906],[-71.40609,41.72907799906],[-71.406197,41.72956699906],[-71.40625,41.72983599906],[-71.406311,41.73010499906],[-71.406341,41.73023499906],[-71.406395,41.73053699906],[-71.406522,41.73106699906],[-71.40654,41.73116199906],[-71.406692,41.73191399906],[-71.406805,41.73247399906],[-71.406857,41.73276599906],[-71.407044,41.73345299906],[-71.40708,41.73358499906],[-71.407267,41.73409899906],[-71.407679,41.73516699906],[-71.407756,41.73521799906],[-71.407784,41.73523599906],[-71.407999,41.73537599906],[-71.409247,41.73535699906],[-71.412705,41.73541099906],[-71.413188,41.73537799906],[-71.413726,41.73530099906],[-71.413673,41.73526399906],[-71.413628,41.73521499906],[-71.413597,41.73516599906],[-71.413574,41.73510399906],[-71.413536,41.73507799906],[-71.414352,41.73464599906],[-71.414353,41.73437099906],[-71.414322,41.73380899906],[-71.414261,41.73322099906],[-71.415008,41.73319599906],[-71.415093,41.73319399906],[-71.415947,41.73317199906],[-71.416542,41.73314999906],[-71.416584,41.73314899906],[-71.414734,41.72898699906],[-71.415742,41.72802399906],[-71.416527,41.72796699906],[-71.41742,41.72802999906],[-71.417864,41.72802199906],[-71.418297,41.72801599906],[-71.419174,41.72806899906],[-71.419258,41.72771599906],[-71.419334,41.72741699906],[-71.419449,41.72742899906],[-71.419708,41.72746399906],[-71.420174,41.72751699906],[-71.420235,41.72751999906],[-71.420273,41.72751899906],[-71.420326,41.72750499906],[-71.420365,41.72748999906],[-71.42038,41.72747199906],[-71.42054,41.72663099906],[-71.420769,41.72555899906],[-71.420929,41.72485299906],[-71.420975,41.72460399906],[-71.420982,41.72457299906]]]}}"}, +{"type": "blockgroup", "typeId": 214021, "areaId": 29229, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.407044,41.73345299906],[-71.406857,41.73276599906],[-71.406805,41.73247399906],[-71.406692,41.73191399906],[-71.40654,41.73116199906],[-71.406522,41.73106699906],[-71.406395,41.73053699906],[-71.406341,41.73023499906],[-71.406311,41.73010499906],[-71.40625,41.72983599906],[-71.406197,41.72956699906],[-71.40609,41.72907799906],[-71.406074,41.72901999906],[-71.40596,41.72846399906],[-71.40593,41.72835199906],[-71.405838,41.72792999906],[-71.4058,41.72779199906],[-71.405708,41.72738799906],[-71.405701,41.72735699906],[-71.405655,41.72719599906],[-71.405586,41.72693599906],[-71.405571,41.72685099906],[-71.405441,41.72637199906],[-71.405419,41.72630499906],[-71.405266,41.72575799906],[-71.405252,41.72570699906],[-71.405205,41.72553499906],[-71.405106,41.72520299906],[-71.405007,41.72484499906],[-71.40493,41.72457699906],[-71.404846,41.72428999906],[-71.404709,41.72380199906],[-71.40464,41.72357899906],[-71.404587,41.72338599906],[-71.404556,41.72328299906],[-71.40448,41.72301899906],[-71.404396,41.72273299906],[-71.404327,41.72248599906],[-71.404282,41.72234299906],[-71.404152,41.72194499906],[-71.403992,41.72144399906],[-71.402588,41.72175699906],[-71.401482,41.72202799906],[-71.401276,41.72208199906],[-71.400612,41.72224399906],[-71.399712,41.72245699906],[-71.399429,41.72255699906],[-71.39933,41.72267599906],[-71.399078,41.72320399906],[-71.399071,41.72322699906],[-71.398842,41.72374899906],[-71.398811,41.72382199906],[-71.398521,41.72440899906],[-71.398193,41.72438399906],[-71.39801,41.72436099906],[-71.397835,41.72435099906],[-71.397713,41.72436699906],[-71.397576,41.72441099906],[-71.397385,41.72449599906],[-71.397217,41.72460099906],[-71.397125,41.72465899906],[-71.396897,41.72486199906],[-71.396927,41.72492399906],[-71.396972,41.72500399906],[-71.397018,41.72510699906],[-71.397057,41.72527699906],[-71.397056,41.72536299906],[-71.396996,41.72546299906],[-71.396881,41.72559999906],[-71.396591,41.72589499906],[-71.39582,41.72672599906],[-71.395493,41.72706099906],[-71.395119,41.72746499906],[-71.394798,41.72782799906],[-71.394623,41.72797599906],[-71.394417,41.72806999906],[-71.393959,41.72820999906],[-71.393707,41.72829599906],[-71.393555,41.72837599906],[-71.393501,41.72840899906],[-71.39341,41.72848699906],[-71.393272,41.72862099906],[-71.392914,41.72908299906],[-71.393799,41.72945199906],[-71.394295,41.72966199906],[-71.394905,41.72991999906],[-71.395007,41.72996299906],[-71.395119,41.73000999906],[-71.395309,41.73009099906],[-71.395568,41.73019699906],[-71.395821,41.73030099906],[-71.396271,41.73048999906],[-71.397108,41.73086299906],[-71.397324,41.73095899906],[-71.397621,41.73109199906],[-71.398415,41.73144999906],[-71.398537,41.73150599906],[-71.399574,41.73196599906],[-71.400482,41.73237499906],[-71.400589,41.73241699906],[-71.401154,41.73266999906],[-71.401474,41.73281299906],[-71.402268,41.73315199906],[-71.402328,41.73317299906],[-71.402489,41.73321999906],[-71.402893,41.73333699906],[-71.40303,41.73336599906],[-71.403481,41.73346499906],[-71.404152,41.73352299906],[-71.404289,41.73353299906],[-71.404953,41.73355499906],[-71.405815,41.73352399906],[-71.406098,41.73350399906],[-71.406196,41.73349799906],[-71.406975,41.73345499906],[-71.407044,41.73345299906]]]}}"}, +{"type": "blockgroup", "typeId": 214022, "areaId": 29230, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.397057,41.72527699906],[-71.397018,41.72510699906],[-71.396972,41.72500399906],[-71.396927,41.72492399906],[-71.396897,41.72486199906],[-71.396606,41.72471499906],[-71.396561,41.72469799906],[-71.39592,41.72435999906],[-71.395851,41.72432499906],[-71.395371,41.72405999906],[-71.395126,41.72392999906],[-71.394814,41.72376099906],[-71.394348,41.72352299906],[-71.394173,41.72342799906],[-71.39399,41.72336399906],[-71.393868,41.72334399906],[-71.39373,41.72333399906],[-71.393616,41.72334499906],[-71.393501,41.72335199906],[-71.39341,41.72337199906],[-71.393295,41.72340599906],[-71.393181,41.72346199906],[-71.393005,41.72357799906],[-71.392708,41.72381399906],[-71.392433,41.72400899906],[-71.392304,41.72414199906],[-71.391945,41.72395199906],[-71.391838,41.72389099906],[-71.391754,41.72384799906],[-71.391548,41.72376199906],[-71.391654,41.72357299906],[-71.391739,41.72346099906],[-71.391838,41.72336399906],[-71.391937,41.72329899906],[-71.39212,41.72322299906],[-71.392151,41.72318599906],[-71.392151,41.72312299906],[-71.392113,41.72308799906],[-71.392067,41.72304799906],[-71.391937,41.72300199906],[-71.391838,41.72296299906],[-71.391739,41.72291599906],[-71.391647,41.72287699906],[-71.391525,41.72285699906],[-71.391418,41.72284099906],[-71.391319,41.72283399906],[-71.391205,41.72283699906],[-71.391106,41.72284299906],[-71.390999,41.72286799906],[-71.390869,41.72289299906],[-71.390709,41.72297299906],[-71.389763,41.72346999906],[-71.388939,41.72388399906],[-71.387695,41.72457099906],[-71.386894,41.72498899906],[-71.385552,41.72573699906],[-71.385689,41.72581099906],[-71.386536,41.72624799906],[-71.387045,41.72650399906],[-71.387405,41.72668499906],[-71.387451,41.72670199906],[-71.38755,41.72675399906],[-71.388168,41.72706499906],[-71.388451,41.72721299906],[-71.38858,41.72727299906],[-71.389259,41.72761399906],[-71.389511,41.72773099906],[-71.390282,41.72804799906],[-71.390625,41.72818499906],[-71.390762,41.72823799906],[-71.391572,41.72855199906],[-71.39164,41.72857799906],[-71.391831,41.72865499906],[-71.391983,41.72871999906],[-71.3927,41.72900199906],[-71.392914,41.72908299906],[-71.393272,41.72862099906],[-71.39341,41.72848699906],[-71.393501,41.72840899906],[-71.393555,41.72837599906],[-71.393707,41.72829599906],[-71.393959,41.72820999906],[-71.394417,41.72806999906],[-71.394623,41.72797599906],[-71.394798,41.72782799906],[-71.395119,41.72746499906],[-71.395493,41.72706099906],[-71.39582,41.72672599906],[-71.396591,41.72589499906],[-71.396881,41.72559999906],[-71.396996,41.72546299906],[-71.397056,41.72536299906],[-71.397057,41.72527699906]]]}}"}, +{"type": "blockgroup", "typeId": 214023, "areaId": 29231, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.403992,41.72144399906],[-71.403969,41.72136399906],[-71.403923,41.72121599906],[-71.403885,41.72112199906],[-71.403793,41.72083599906],[-71.403755,41.72070599906],[-71.40358,41.72030399906],[-71.403492,41.72017599906],[-71.403313,41.71990899906],[-71.402924,41.71948999906],[-71.402558,41.71908699906],[-71.402474,41.71900399906],[-71.402061,41.71853499906],[-71.401993,41.71846399906],[-71.401642,41.71810199906],[-71.401576,41.71811399906],[-71.401138,41.71819399906],[-71.401085,41.71820199906],[-71.400101,41.71835499906],[-71.399605,41.71843799906],[-71.398743,41.71858199906],[-71.398463,41.71863199906],[-71.398262,41.71866799906],[-71.397156,41.71886699906],[-71.395843,41.71910599906],[-71.395607,41.71913799906],[-71.394073,41.71938599906],[-71.394043,41.71937799906],[-71.394058,41.71987699906],[-71.394058,41.72013399906],[-71.393127,41.71992799906],[-71.392502,41.71979699906],[-71.392288,41.71974799906],[-71.391846,41.71965299906],[-71.391678,41.71962099906],[-71.391197,41.71952299906],[-71.390602,41.71940399906],[-71.390389,41.71935899906],[-71.390292,41.71934199906],[-71.390137,41.71931499906],[-71.389923,41.71926999906],[-71.389809,41.71924099906],[-71.389748,41.71922899906],[-71.389717,41.71921999906],[-71.389633,41.71918999906],[-71.38958,41.71917299906],[-71.389496,41.71913499906],[-71.389443,41.71911299906],[-71.38932,41.71905699906],[-71.389259,41.71902299906],[-71.389229,41.71900499906],[-71.38916,41.71897499906],[-71.389091,41.71893099906],[-71.388954,41.71883999906],[-71.388908,41.71881399906],[-71.388763,41.71871799906],[-71.388496,41.71855199906],[-71.388367,41.71845999906],[-71.388206,41.71835499906],[-71.387924,41.71816799906],[-71.38723,41.71775399906],[-71.386215,41.71714899906],[-71.385322,41.71653799906],[-71.384712,41.71617599906],[-71.384605,41.71668299906],[-71.384529,41.71741399906],[-71.38447,41.71787999906],[-71.384445,41.71806899906],[-71.384384,41.71879499906],[-71.384308,41.71942699906],[-71.384209,41.72019499906],[-71.384201,41.72028499906],[-71.384102,41.72128199906],[-71.384064,41.72166599906],[-71.384033,41.72176499906],[-71.383865,41.72189499906],[-71.383087,41.72252399906],[-71.382751,41.72280999906],[-71.381866,41.72353499906],[-71.382515,41.72394499906],[-71.382942,41.72421499906],[-71.383087,41.72430199906],[-71.383171,41.72435499906],[-71.383606,41.72461099906],[-71.383919,41.72482099906],[-71.383957,41.72485199906],[-71.38456,41.72522199906],[-71.384697,41.72530899906],[-71.385185,41.72556499906],[-71.385552,41.72573699906],[-71.386894,41.72498899906],[-71.387695,41.72457099906],[-71.388939,41.72388399906],[-71.389763,41.72346999906],[-71.390709,41.72297299906],[-71.390869,41.72289299906],[-71.390999,41.72286799906],[-71.391106,41.72284299906],[-71.391205,41.72283699906],[-71.391319,41.72283399906],[-71.391418,41.72284099906],[-71.391525,41.72285699906],[-71.391647,41.72287699906],[-71.391739,41.72291599906],[-71.391838,41.72296299906],[-71.391937,41.72300199906],[-71.392067,41.72304799906],[-71.392113,41.72308799906],[-71.392151,41.72312299906],[-71.392151,41.72318599906],[-71.39212,41.72322299906],[-71.391937,41.72329899906],[-71.391838,41.72336399906],[-71.391739,41.72346099906],[-71.391654,41.72357299906],[-71.391548,41.72376199906],[-71.391754,41.72384799906],[-71.391838,41.72389099906],[-71.391945,41.72395199906],[-71.392304,41.72414199906],[-71.392433,41.72400899906],[-71.392708,41.72381399906],[-71.393005,41.72357799906],[-71.393181,41.72346199906],[-71.393295,41.72340599906],[-71.39341,41.72337199906],[-71.393501,41.72335199906],[-71.393616,41.72334499906],[-71.39373,41.72333399906],[-71.393868,41.72334399906],[-71.39399,41.72336399906],[-71.394173,41.72342799906],[-71.394348,41.72352299906],[-71.394814,41.72376099906],[-71.395126,41.72392999906],[-71.395371,41.72405999906],[-71.395851,41.72432499906],[-71.39592,41.72435999906],[-71.396561,41.72469799906],[-71.396606,41.72471499906],[-71.396897,41.72486199906],[-71.397125,41.72465899906],[-71.397217,41.72460099906],[-71.397385,41.72449599906],[-71.397576,41.72441099906],[-71.397713,41.72436699906],[-71.397835,41.72435099906],[-71.39801,41.72436099906],[-71.398193,41.72438399906],[-71.398521,41.72440899906],[-71.398811,41.72382199906],[-71.398842,41.72374899906],[-71.399071,41.72322699906],[-71.399078,41.72320399906],[-71.39933,41.72267599906],[-71.399429,41.72255699906],[-71.399712,41.72245699906],[-71.400612,41.72224399906],[-71.401276,41.72208199906],[-71.401482,41.72202799906],[-71.402588,41.72175699906],[-71.403992,41.72144399906]]]}}"}, +{"type": "blockgroup", "typeId": 215011, "areaId": 29232, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.389259,41.72761399906],[-71.38858,41.72727299906],[-71.388451,41.72721299906],[-71.388168,41.72706499906],[-71.38755,41.72675399906],[-71.387451,41.72670199906],[-71.387405,41.72668499906],[-71.387045,41.72650399906],[-71.386536,41.72624799906],[-71.385689,41.72581099906],[-71.385552,41.72573699906],[-71.385185,41.72556499906],[-71.384697,41.72530899906],[-71.38456,41.72522199906],[-71.383957,41.72485199906],[-71.383919,41.72482099906],[-71.383606,41.72461099906],[-71.383171,41.72435499906],[-71.383087,41.72430199906],[-71.382942,41.72421499906],[-71.382515,41.72394499906],[-71.381866,41.72353499906],[-71.382751,41.72280999906],[-71.383087,41.72252399906],[-71.383865,41.72189499906],[-71.384033,41.72176499906],[-71.383904,41.72170499906],[-71.38337,41.72126099906],[-71.383087,41.72101099906],[-71.382797,41.72075099906],[-71.382271,41.72027099906],[-71.382218,41.72022699906],[-71.381767,41.72062399906],[-71.381309,41.72102499906],[-71.380966,41.72128899906],[-71.380707,41.72149699906],[-71.379807,41.72225399906],[-71.380112,41.72243699906],[-71.379021,41.72317499906],[-71.378784,41.72334199906],[-71.378395,41.72328599906],[-71.365583,41.73463599906],[-71.367009,41.73410399906],[-71.380832,41.72813599906],[-71.382005,41.72798999906],[-71.3825,41.72790299906],[-71.382729,41.72772799906],[-71.383049,41.72751799906],[-71.38308,41.72754499906],[-71.38327,41.72769399906],[-71.383598,41.72797999906],[-71.383835,41.72820499906],[-71.383904,41.72823899906],[-71.383934,41.72824699906],[-71.384033,41.72824099906],[-71.384476,41.72818199906],[-71.385895,41.72802199906],[-71.389259,41.72761399906]]]}}"}, +{"type": "blockgroup", "typeId": 215012, "areaId": 29233, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.382218,41.72022699906],[-71.382179,41.72019599906],[-71.381927,41.71998099906],[-71.381332,41.71945699906],[-71.380829,41.71902599906],[-71.380363,41.71858999906],[-71.380943,41.71819099906],[-71.381195,41.71804199906],[-71.380829,41.71775199906],[-71.380348,41.71730299906],[-71.379883,41.71687599906],[-71.379509,41.71656399906],[-71.379089,41.71615799906],[-71.378853,41.71597399906],[-71.378365,41.71553399906],[-71.377777,41.71503199906],[-71.377342,41.71461399906],[-71.376785,41.71486399906],[-71.376566,41.71498299906],[-71.376297,41.71512999906],[-71.37619,41.71519999906],[-71.376106,41.71526499906],[-71.376038,41.71532499906],[-71.375916,41.71544499906],[-71.375832,41.71555899906],[-71.375771,41.71554699906],[-71.375702,41.71552599906],[-71.375641,41.71550899906],[-71.375588,41.71548699906],[-71.375526,41.71547099906],[-71.375473,41.71544499906],[-71.375427,41.71543199906],[-71.375389,41.71540999906],[-71.375344,41.71539799906],[-71.374647,41.71585899906],[-71.374389,41.71602099906],[-71.373962,41.71630499906],[-71.373421,41.71667099906],[-71.373253,41.71678799906],[-71.37265,41.71716899906],[-71.372437,41.71730899906],[-71.371925,41.71765299906],[-71.371887,41.71767999906],[-71.371506,41.71793099906],[-71.3713,41.71806199906],[-71.371254,41.71815299906],[-71.371246,41.71817999906],[-71.371246,41.71825199906],[-71.370445,41.71847599906],[-71.35689,41.72847199906],[-71.364561,41.73492799906],[-71.365583,41.73463599906],[-71.378395,41.72328599906],[-71.378784,41.72334199906],[-71.379021,41.72317499906],[-71.380112,41.72243699906],[-71.379807,41.72225399906],[-71.380707,41.72149699906],[-71.380966,41.72128899906],[-71.381309,41.72102499906],[-71.381767,41.72062399906],[-71.382218,41.72022699906]]]}}"}, +{"type": "blockgroup", "typeId": 215013, "areaId": 29234, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.386765,41.71404399906],[-71.386146,41.71370199906],[-71.385536,41.71338499906],[-71.384941,41.71306899906],[-71.384308,41.71273499906],[-71.384003,41.71256199906],[-71.38388,41.71251499906],[-71.383659,41.71244699906],[-71.383141,41.71211999906],[-71.383103,41.71209899906],[-71.382477,41.71167899906],[-71.381798,41.71120199906],[-71.381058,41.71071799906],[-71.380753,41.71131899906],[-71.380341,41.71211099906],[-71.38028,41.71225199906],[-71.380043,41.71269799906],[-71.379948,41.71286399906],[-71.379868,41.71300299906],[-71.379829,41.71306199906],[-71.379738,41.71318099906],[-71.379685,41.71325499906],[-71.379524,41.71341099906],[-71.379221,41.71362299906],[-71.379187,41.71364699906],[-71.379104,41.71370399906],[-71.37896,41.71380599906],[-71.378723,41.71393199906],[-71.378021,41.71427499906],[-71.377709,41.71442599906],[-71.377342,41.71461399906],[-71.377777,41.71503199906],[-71.378365,41.71553399906],[-71.378853,41.71597399906],[-71.379089,41.71615799906],[-71.379509,41.71656399906],[-71.379883,41.71687599906],[-71.380348,41.71730299906],[-71.380829,41.71775199906],[-71.381195,41.71804199906],[-71.380943,41.71819099906],[-71.380363,41.71858999906],[-71.380829,41.71902599906],[-71.381332,41.71945699906],[-71.381927,41.71998099906],[-71.382179,41.72019599906],[-71.382218,41.72022699906],[-71.382271,41.72027099906],[-71.382797,41.72075099906],[-71.383087,41.72101099906],[-71.38337,41.72126099906],[-71.383904,41.72170499906],[-71.384033,41.72176499906],[-71.384064,41.72166599906],[-71.384102,41.72128199906],[-71.384201,41.72028499906],[-71.384209,41.72019499906],[-71.384308,41.71942699906],[-71.384384,41.71879499906],[-71.384445,41.71806899906],[-71.38447,41.71787999906],[-71.384529,41.71741399906],[-71.384605,41.71668299906],[-71.384712,41.71617599906],[-71.385292,41.71557499906],[-71.385834,41.71500399906],[-71.386322,41.71449899906],[-71.386765,41.71404399906]]]}}"}, +{"type": "blockgroup", "typeId": 215014, "areaId": 29235, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.382991,41.70884399906],[-71.382874,41.70878399906],[-71.382828,41.70876299906],[-71.382736,41.70871499906],[-71.382599,41.70867799906],[-71.382462,41.70863099906],[-71.382355,41.70855199906],[-71.382233,41.70847399906],[-71.382111,41.70840899906],[-71.381981,41.70836199906],[-71.381844,41.70831499906],[-71.381706,41.70827299906],[-71.381676,41.70828199906],[-71.38166,41.70831399906],[-71.381683,41.70841699906],[-71.381752,41.70848399906],[-71.381897,41.70853899906],[-71.381966,41.70857399906],[-71.382011,41.70861799906],[-71.382004,41.70865799906],[-71.38192,41.70869599906],[-71.381782,41.70868099906],[-71.381683,41.70863399906],[-71.381577,41.70855899906],[-71.381447,41.70849399906],[-71.381386,41.70840099906],[-71.381287,41.70829499906],[-71.381172,41.70820699906],[-71.381081,41.70819599906],[-71.381035,41.70819699906],[-71.38089,41.70822699906],[-71.380791,41.70829599906],[-71.380745,41.70833799906],[-71.380699,41.70835199906],[-71.38057,41.70834099906],[-71.380531,41.70831999906],[-71.380424,41.70825399906],[-71.380379,41.70823699906],[-71.380257,41.70822199906],[-71.380218,41.70821799906],[-71.380127,41.70820599906],[-71.380028,41.70820399906],[-71.379875,41.70822099906],[-71.379715,41.70827399906],[-71.379639,41.70835599906],[-71.379639,41.70838799906],[-71.3797,41.70842199906],[-71.379822,41.70850099906],[-71.379799,41.70858299906],[-71.379715,41.70868799906],[-71.379562,41.70876299906],[-71.379387,41.70880299906],[-71.379242,41.70883299906],[-71.379082,41.70887699906],[-71.378929,41.70892499906],[-71.378776,41.70897699906],[-71.378756,41.70899799906],[-71.378708,41.70904599906],[-71.378685,41.70915499906],[-71.378632,41.70928699906],[-71.378548,41.70940999906],[-71.378487,41.70950999906],[-71.378433,41.70963299906],[-71.378418,41.70976399906],[-71.378418,41.70987599906],[-71.37838,41.70994899906],[-71.378303,41.71000899906],[-71.378166,41.71008899906],[-71.378013,41.71017299906],[-71.377892,41.71026999906],[-71.3778,41.71035299906],[-71.377685,41.71043699906],[-71.377541,41.71049399906],[-71.377443,41.71050399906],[-71.377362,41.71051699906],[-71.37726,41.71050399906],[-71.377153,41.71053199906],[-71.377088,41.71063499906],[-71.377022,41.71075199906],[-71.376952,41.71084899906],[-71.376846,41.71093599906],[-71.376609,41.71109699906],[-71.376549,41.71118599906],[-71.376583,41.71124099906],[-71.37664,41.71120299906],[-71.376726,41.71112199906],[-71.376801,41.71107199906],[-71.376839,41.71113399906],[-71.376831,41.71125099906],[-71.376783,41.71129899906],[-71.376748,41.71131499906],[-71.376728,41.71132099906],[-71.376606,41.71135999906],[-71.376481,41.71143099906],[-71.376381,41.71150399906],[-71.376278,41.71159599906],[-71.376197,41.71168999906],[-71.376176,41.71173299906],[-71.376144,41.71179199906],[-71.376213,41.71186399906],[-71.376203,41.71197699906],[-71.376169,41.71205699906],[-71.376106,41.71209499906],[-71.375938,41.71213799906],[-71.375898,41.71215399906],[-71.375803,41.71219399906],[-71.375787,41.71221499906],[-71.375953,41.71227799906],[-71.37602,41.71233399906],[-71.375986,41.71238199906],[-71.375854,41.71245699906],[-71.375732,41.71248199906],[-71.375597,41.71244099906],[-71.375561,41.71237599906],[-71.375524,41.71218199906],[-71.375401,41.71214299906],[-71.375278,41.71216299906],[-71.375169,41.71218699906],[-71.375047,41.71225899906],[-71.374923,41.71233599906],[-71.374814,41.71242199906],[-71.374712,41.71250099906],[-71.374596,41.71256299906],[-71.37451,41.71254699906],[-71.374153,41.71258299906],[-71.373086,41.71266899906],[-71.372481,41.71272499906],[-71.371684,41.71269999906],[-71.3711,41.71267699906],[-71.370534,41.71271999906],[-71.370377,41.71282299906],[-71.370156,41.71306299906],[-71.369949,41.71338499906],[-71.369799,41.71356999906],[-71.368623,41.71388499906],[-71.367403,41.71303699906],[-71.366777,41.71260099906],[-71.366331,41.71261099906],[-71.365953,41.71267699906],[-71.365722,41.71279099906],[-71.365639,41.71296799906],[-71.365503,41.71319699906],[-71.36536,41.71327499906],[-71.365147,41.71326299906],[-71.36492,41.71315099906],[-71.364198,41.71237799906],[-71.363557,41.71195599906],[-71.362855,41.71173599906],[-71.342585,41.71557699906],[-71.34836,41.72072399906],[-71.35508,41.72696199906],[-71.35689,41.72847199906],[-71.370445,41.71847599906],[-71.371246,41.71825199906],[-71.371246,41.71817999906],[-71.371254,41.71815299906],[-71.3713,41.71806199906],[-71.371506,41.71793099906],[-71.371887,41.71767999906],[-71.371925,41.71765299906],[-71.372437,41.71730899906],[-71.37265,41.71716899906],[-71.373253,41.71678799906],[-71.373421,41.71667099906],[-71.373962,41.71630499906],[-71.374389,41.71602099906],[-71.374647,41.71585899906],[-71.375344,41.71539799906],[-71.375389,41.71540999906],[-71.375427,41.71543199906],[-71.375473,41.71544499906],[-71.375526,41.71547099906],[-71.375588,41.71548699906],[-71.375641,41.71550899906],[-71.375702,41.71552599906],[-71.375771,41.71554699906],[-71.375832,41.71555899906],[-71.375916,41.71544499906],[-71.376038,41.71532499906],[-71.376106,41.71526499906],[-71.37619,41.71519999906],[-71.376297,41.71512999906],[-71.376566,41.71498299906],[-71.376785,41.71486399906],[-71.377342,41.71461399906],[-71.377709,41.71442599906],[-71.378021,41.71427499906],[-71.378723,41.71393199906],[-71.37896,41.71380599906],[-71.379104,41.71370399906],[-71.379187,41.71364699906],[-71.379221,41.71362299906],[-71.379524,41.71341099906],[-71.379685,41.71325499906],[-71.379738,41.71318099906],[-71.379829,41.71306199906],[-71.379868,41.71300299906],[-71.379948,41.71286399906],[-71.380043,41.71269799906],[-71.38028,41.71225199906],[-71.380341,41.71211099906],[-71.380753,41.71131899906],[-71.381058,41.71071799906],[-71.381149,41.71056399906],[-71.381371,41.71025699906],[-71.381576,41.71001799906],[-71.381714,41.70987099906],[-71.381882,41.70972399906],[-71.382072,41.70959399906],[-71.382332,41.70940799906],[-71.382606,41.70921799906],[-71.382805,41.70904699906],[-71.382942,41.70890499906],[-71.382991,41.70884399906]]]}}"}, +{"type": "blockgroup", "typeId": 215021, "areaId": 29236, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.375278,41.71216299906],[-71.375023,41.71146899906],[-71.374908,41.71120999906],[-71.374794,41.71097399906],[-71.374764,41.71089299906],[-71.374725,41.71081699906],[-71.374619,41.71058099906],[-71.374611,41.71055399906],[-71.374558,41.71039799906],[-71.374443,41.71007099906],[-71.374313,41.70967799906],[-71.374298,41.70962799906],[-71.374268,41.70956199906],[-71.37423,41.70950399906],[-71.374176,41.70943299906],[-71.373924,41.70911799906],[-71.373646,41.70877799906],[-71.373398,41.70846299906],[-71.373268,41.70830299906],[-71.372933,41.70788699906],[-71.372879,41.70781999906],[-71.372688,41.70758999906],[-71.37236,41.70719199906],[-71.372261,41.70707699906],[-71.372238,41.70704099906],[-71.371902,41.70663799906],[-71.371658,41.70634199906],[-71.371444,41.70607599906],[-71.371267,41.70585999906],[-71.371216,41.70579699906],[-71.371152,41.70572299906],[-71.371094,41.70565499906],[-71.371048,41.70557999906],[-71.371002,41.70549999906],[-71.370964,41.70542799906],[-71.370949,41.70540199906],[-71.370934,41.70537499906],[-71.370621,41.70463799906],[-71.370346,41.70399599906],[-71.370071,41.70333499906],[-71.369789,41.70266099906],[-71.369499,41.70199099906],[-71.369232,41.70132599906],[-71.368668,41.70145399906],[-71.368004,41.70162099906],[-71.367676,41.70169999906],[-71.367371,41.70175999906],[-71.367294,41.70176599906],[-71.365417,41.70164699906],[-71.365277,41.70159299906],[-71.331648,41.70145099906],[-71.331408,41.70228099906],[-71.331316,41.70279999906],[-71.331315,41.70290199906],[-71.333869,41.70577599906],[-71.335052,41.70710599906],[-71.342585,41.71557699906],[-71.362855,41.71173599906],[-71.363557,41.71195599906],[-71.364198,41.71237799906],[-71.36492,41.71315099906],[-71.365147,41.71326299906],[-71.36536,41.71327499906],[-71.365503,41.71319699906],[-71.365639,41.71296799906],[-71.365722,41.71279099906],[-71.365953,41.71267699906],[-71.366331,41.71261099906],[-71.366777,41.71260099906],[-71.367403,41.71303699906],[-71.368623,41.71388499906],[-71.369799,41.71356999906],[-71.369949,41.71338499906],[-71.370156,41.71306299906],[-71.370377,41.71282299906],[-71.370534,41.71271999906],[-71.3711,41.71267699906],[-71.371684,41.71269999906],[-71.372481,41.71272499906],[-71.373086,41.71266899906],[-71.374153,41.71258299906],[-71.37451,41.71254699906],[-71.374596,41.71256299906],[-71.374712,41.71250099906],[-71.374814,41.71242199906],[-71.374923,41.71233599906],[-71.375047,41.71225899906],[-71.375169,41.71218699906],[-71.375278,41.71216299906]]]}}"}, +{"type": "blockgroup", "typeId": 215022, "areaId": 29237, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.379356,41.69743299906],[-71.379349,41.69734799906],[-71.379326,41.69702799906],[-71.379318,41.69687499906],[-71.379295,41.69671399906],[-71.37928,41.69659699906],[-71.379257,41.69619199906],[-71.379173,41.69540999906],[-71.37915,41.69514099906],[-71.379051,41.69434099906],[-71.379013,41.69406699906],[-71.378922,41.69340699906],[-71.378822,41.69272499906],[-71.378822,41.69269799906],[-71.378761,41.69227099906],[-71.378731,41.69191199906],[-71.378662,41.69141799906],[-71.378639,41.69128699906],[-71.378624,41.69121599906],[-71.378563,41.69064999906],[-71.378517,41.69038899906],[-71.378457,41.68994499906],[-71.378433,41.68976499906],[-71.378357,41.68909599906],[-71.378273,41.68850799906],[-71.377846,41.68855699906],[-71.377243,41.68862799906],[-71.376929,41.68866699906],[-71.376549,41.68871399906],[-71.376137,41.68876799906],[-71.375649,41.68882799906],[-71.375122,41.68889699906],[-71.374861,41.68893199906],[-71.374039,41.68902699906],[-71.373632,41.68908099906],[-71.373139,41.68914499906],[-71.372455,41.68921999906],[-71.372383,41.68922799906],[-71.371498,41.68934099906],[-71.371429,41.68935599906],[-71.371338,41.68937099906],[-71.371277,41.68939999906],[-71.371223,41.68943699906],[-71.371201,41.68945499906],[-71.370186,41.68799699906],[-71.369889,41.68756899906],[-71.369671,41.68709599906],[-71.369794,41.68701599906],[-71.370111,41.68680899906],[-71.36975,41.68660599906],[-71.355982,41.67678299906],[-71.355126,41.67750699906],[-71.354069,41.67816499906],[-71.352354,41.67888499906],[-71.33097,41.68696199906],[-71.325667,41.69321299906],[-71.329925,41.69804399906],[-71.332015,41.70037999906],[-71.331648,41.70145099906],[-71.365277,41.70159299906],[-71.365417,41.70164699906],[-71.367294,41.70176599906],[-71.367371,41.70175999906],[-71.367676,41.70169999906],[-71.368004,41.70162099906],[-71.368668,41.70145399906],[-71.369232,41.70132599906],[-71.370033,41.70114299906],[-71.370437,41.70105299906],[-71.370918,41.70094399906],[-71.371178,41.70087999906],[-71.371277,41.70085099906],[-71.372337,41.70060899906],[-71.373093,41.70042599906],[-71.373375,41.70036199906],[-71.373917,41.70022499906],[-71.373879,41.70020799906],[-71.373772,41.70013799906],[-71.373535,41.69995799906],[-71.373383,41.69983499906],[-71.373329,41.69978699906],[-71.373245,41.69971599906],[-71.373871,41.69903199906],[-71.375191,41.69870299906],[-71.375648,41.69860799906],[-71.376129,41.69849899906],[-71.376244,41.69848399906],[-71.376373,41.69844899906],[-71.376472,41.69842499906],[-71.376557,41.69839999906],[-71.376625,41.69836799906],[-71.376732,41.69831999906],[-71.376877,41.69824999906],[-71.377228,41.69807099906],[-71.377823,41.69777499906],[-71.378307,41.69753299906],[-71.378357,41.69751699906],[-71.378433,41.69749699906],[-71.378548,41.69748099906],[-71.379356,41.69743299906]]]}}"}, +{"type": "blockgroup", "typeId": 215023, "areaId": 29238, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.384521,41.70345499906],[-71.383888,41.70306199906],[-71.383537,41.70284499906],[-71.383125,41.70258299906],[-71.383011,41.70250899906],[-71.382919,41.70245699906],[-71.382805,41.70238699906],[-71.38241,41.70214099906],[-71.382286,41.70206399906],[-71.382135,41.70197399906],[-71.382118,41.70196399906],[-71.381989,41.70188599906],[-71.381592,41.70164199906],[-71.381416,41.70153799906],[-71.380928,41.70124599906],[-71.380745,41.70112799906],[-71.38002,41.70068799906],[-71.379227,41.70020099906],[-71.378967,41.70032299906],[-71.378731,41.70042699906],[-71.378609,41.70048399906],[-71.378365,41.70060599906],[-71.378258,41.70064399906],[-71.378181,41.70067199906],[-71.378105,41.70069699906],[-71.378037,41.70071599906],[-71.377915,41.70074599906],[-71.377754,41.70077999906],[-71.377342,41.70088299906],[-71.377022,41.70095799906],[-71.376655,41.70104199906],[-71.376114,41.70116999906],[-71.375976,41.70120399906],[-71.375961,41.70117799906],[-71.375938,41.70115099906],[-71.375877,41.70112499906],[-71.375679,41.70105299906],[-71.375511,41.70098399906],[-71.375336,41.70091999906],[-71.375145,41.70083399906],[-71.374901,41.70073099906],[-71.374748,41.70066199906],[-71.374435,41.70051599906],[-71.374252,41.70042899906],[-71.374176,41.70038199906],[-71.374085,41.70032899906],[-71.37394,41.70024699906],[-71.373917,41.70022499906],[-71.373375,41.70036199906],[-71.373093,41.70042599906],[-71.372337,41.70060899906],[-71.371277,41.70085099906],[-71.371178,41.70087999906],[-71.370918,41.70094399906],[-71.370437,41.70105299906],[-71.370033,41.70114299906],[-71.369232,41.70132599906],[-71.369499,41.70199099906],[-71.369789,41.70266099906],[-71.370071,41.70333499906],[-71.370346,41.70399599906],[-71.370621,41.70463799906],[-71.370934,41.70537499906],[-71.370949,41.70540199906],[-71.370964,41.70542799906],[-71.371002,41.70549999906],[-71.371048,41.70557999906],[-71.371094,41.70565499906],[-71.371152,41.70572299906],[-71.371216,41.70579699906],[-71.371267,41.70585999906],[-71.371444,41.70607599906],[-71.371658,41.70634199906],[-71.371902,41.70663799906],[-71.372238,41.70704099906],[-71.372261,41.70707699906],[-71.37236,41.70719199906],[-71.372688,41.70758999906],[-71.372879,41.70781999906],[-71.372933,41.70788699906],[-71.373268,41.70830299906],[-71.373398,41.70846299906],[-71.373646,41.70877799906],[-71.373924,41.70911799906],[-71.374176,41.70943299906],[-71.37423,41.70950399906],[-71.374268,41.70956199906],[-71.374298,41.70962799906],[-71.374313,41.70967799906],[-71.374443,41.71007099906],[-71.374558,41.71039799906],[-71.374611,41.71055399906],[-71.374619,41.71058099906],[-71.374725,41.71081699906],[-71.374764,41.71089299906],[-71.374794,41.71097399906],[-71.374908,41.71120999906],[-71.375023,41.71146899906],[-71.375278,41.71216299906],[-71.375401,41.71214299906],[-71.375524,41.71218199906],[-71.375561,41.71237599906],[-71.375597,41.71244099906],[-71.375732,41.71248199906],[-71.375854,41.71245699906],[-71.375986,41.71238199906],[-71.37602,41.71233399906],[-71.375953,41.71227799906],[-71.375787,41.71221499906],[-71.375803,41.71219399906],[-71.375898,41.71215399906],[-71.375938,41.71213799906],[-71.376106,41.71209499906],[-71.376169,41.71205699906],[-71.376203,41.71197699906],[-71.376213,41.71186399906],[-71.376144,41.71179199906],[-71.376176,41.71173299906],[-71.376197,41.71168999906],[-71.376278,41.71159599906],[-71.376381,41.71150399906],[-71.376481,41.71143099906],[-71.376606,41.71135999906],[-71.376728,41.71132099906],[-71.376748,41.71131499906],[-71.376783,41.71129899906],[-71.376831,41.71125099906],[-71.376839,41.71113399906],[-71.376801,41.71107199906],[-71.376726,41.71112199906],[-71.37664,41.71120299906],[-71.376583,41.71124099906],[-71.376549,41.71118599906],[-71.376609,41.71109699906],[-71.376846,41.71093599906],[-71.376952,41.71084899906],[-71.377022,41.71075199906],[-71.377088,41.71063499906],[-71.377153,41.71053199906],[-71.37726,41.71050399906],[-71.377362,41.71051699906],[-71.377443,41.71050399906],[-71.377541,41.71049399906],[-71.377685,41.71043699906],[-71.3778,41.71035299906],[-71.377892,41.71026999906],[-71.378013,41.71017299906],[-71.378166,41.71008899906],[-71.378303,41.71000899906],[-71.37838,41.70994899906],[-71.378418,41.70987599906],[-71.378418,41.70976399906],[-71.378433,41.70963299906],[-71.378487,41.70950999906],[-71.378548,41.70940999906],[-71.378632,41.70928699906],[-71.378685,41.70915499906],[-71.378708,41.70904599906],[-71.378756,41.70899799906],[-71.378776,41.70897699906],[-71.378929,41.70892499906],[-71.379082,41.70887699906],[-71.379242,41.70883299906],[-71.379387,41.70880299906],[-71.379562,41.70876299906],[-71.379715,41.70868799906],[-71.379799,41.70858299906],[-71.379822,41.70850099906],[-71.3797,41.70842199906],[-71.379639,41.70838799906],[-71.379639,41.70835599906],[-71.379715,41.70827399906],[-71.379875,41.70822099906],[-71.380028,41.70820399906],[-71.380127,41.70820599906],[-71.380218,41.70821799906],[-71.380257,41.70822199906],[-71.380379,41.70823699906],[-71.380424,41.70825399906],[-71.380531,41.70831999906],[-71.38057,41.70834099906],[-71.380699,41.70835199906],[-71.380745,41.70833799906],[-71.380791,41.70829599906],[-71.38089,41.70822699906],[-71.381035,41.70819699906],[-71.381081,41.70819599906],[-71.381172,41.70820699906],[-71.381287,41.70829499906],[-71.381386,41.70840099906],[-71.381447,41.70849399906],[-71.381577,41.70855899906],[-71.381683,41.70863399906],[-71.381782,41.70868099906],[-71.38192,41.70869599906],[-71.382004,41.70865799906],[-71.382011,41.70861799906],[-71.381966,41.70857399906],[-71.381897,41.70853899906],[-71.381752,41.70848399906],[-71.381683,41.70841699906],[-71.38166,41.70831399906],[-71.381676,41.70828199906],[-71.381706,41.70827299906],[-71.381844,41.70831499906],[-71.381981,41.70836199906],[-71.382111,41.70840899906],[-71.382233,41.70847399906],[-71.382355,41.70855199906],[-71.382462,41.70863099906],[-71.382599,41.70867799906],[-71.382736,41.70871499906],[-71.382828,41.70876299906],[-71.382874,41.70878399906],[-71.382991,41.70884399906],[-71.383049,41.70877199906],[-71.383156,41.70859399906],[-71.383232,41.70844799906],[-71.383285,41.70829399906],[-71.383331,41.70812699906],[-71.383354,41.70798199906],[-71.383362,41.70772099906],[-71.383362,41.70763999906],[-71.383369,41.70710799906],[-71.383423,41.70646299906],[-71.383461,41.70606099906],[-71.383514,41.70578099906],[-71.383545,41.70564999906],[-71.383659,41.70525599906],[-71.383789,41.70485699906],[-71.383884,41.70457599906],[-71.384011,41.70426899906],[-71.384101,41.70406499906],[-71.384179,41.70391999906],[-71.384279,41.70376099906],[-71.384377,41.70363699906],[-71.384521,41.70345499906]]]}}"}, +{"type": "blockgroup", "typeId": 215024, "areaId": 29239, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.39103,41.69200599906],[-71.389256,41.69217799906],[-71.388657,41.69223699906],[-71.387993,41.69233599906],[-71.387657,41.69237499906],[-71.386886,41.69246699906],[-71.386284,41.69252899906],[-71.385335,41.69317599906],[-71.385322,41.69318399906],[-71.38527,41.69322199906],[-71.384751,41.69360099906],[-71.384132,41.69405599906],[-71.383789,41.69431499906],[-71.383484,41.69453699906],[-71.383324,41.69465799906],[-71.383141,41.69477399906],[-71.383095,41.69480199906],[-71.382713,41.69499899906],[-71.382324,41.69515099906],[-71.382205,41.69519099906],[-71.382123,41.69521799906],[-71.381836,41.69531499906],[-71.38163,41.69537299906],[-71.381363,41.69543199906],[-71.381149,41.69546399906],[-71.380882,41.69549199906],[-71.380699,41.69550499906],[-71.380501,41.69550899906],[-71.380211,41.69548799906],[-71.379456,41.69542699906],[-71.379173,41.69540999906],[-71.379257,41.69619199906],[-71.37928,41.69659699906],[-71.379295,41.69671399906],[-71.379318,41.69687499906],[-71.379326,41.69702799906],[-71.379349,41.69734799906],[-71.379356,41.69743299906],[-71.378548,41.69748099906],[-71.378433,41.69749699906],[-71.378357,41.69751699906],[-71.378307,41.69753299906],[-71.377823,41.69777499906],[-71.377228,41.69807099906],[-71.376877,41.69824999906],[-71.376732,41.69831999906],[-71.376625,41.69836799906],[-71.376557,41.69839999906],[-71.376472,41.69842499906],[-71.376373,41.69844899906],[-71.376244,41.69848399906],[-71.376129,41.69849899906],[-71.375648,41.69860799906],[-71.375191,41.69870299906],[-71.373871,41.69903199906],[-71.373245,41.69971599906],[-71.373329,41.69978699906],[-71.373383,41.69983499906],[-71.373535,41.69995799906],[-71.373772,41.70013799906],[-71.373879,41.70020799906],[-71.373917,41.70022499906],[-71.37394,41.70024699906],[-71.374085,41.70032899906],[-71.374176,41.70038199906],[-71.374252,41.70042899906],[-71.374435,41.70051599906],[-71.374748,41.70066199906],[-71.374901,41.70073099906],[-71.375145,41.70083399906],[-71.375336,41.70091999906],[-71.375511,41.70098399906],[-71.375679,41.70105299906],[-71.375877,41.70112499906],[-71.375938,41.70115099906],[-71.375961,41.70117799906],[-71.375976,41.70120399906],[-71.376114,41.70116999906],[-71.376655,41.70104199906],[-71.377022,41.70095799906],[-71.377342,41.70088299906],[-71.377754,41.70077999906],[-71.377915,41.70074599906],[-71.378037,41.70071599906],[-71.378105,41.70069699906],[-71.378181,41.70067199906],[-71.378258,41.70064399906],[-71.378365,41.70060599906],[-71.378609,41.70048399906],[-71.378731,41.70042699906],[-71.378967,41.70032299906],[-71.379227,41.70020099906],[-71.38002,41.70068799906],[-71.380745,41.70112799906],[-71.380928,41.70124599906],[-71.381416,41.70153799906],[-71.381592,41.70164199906],[-71.381989,41.70188599906],[-71.382118,41.70196399906],[-71.382135,41.70197399906],[-71.382286,41.70206399906],[-71.38241,41.70214099906],[-71.382805,41.70238699906],[-71.382919,41.70245699906],[-71.383011,41.70250899906],[-71.383125,41.70258299906],[-71.383537,41.70284499906],[-71.383888,41.70306199906],[-71.384521,41.70345499906],[-71.385002,41.70306599906],[-71.385162,41.70292799906],[-71.385429,41.70268799906],[-71.385765,41.70241999906],[-71.385925,41.70228199906],[-71.386055,41.70217099906],[-71.386467,41.70181999906],[-71.386963,41.70141799906],[-71.386787,41.70125099906],[-71.386757,41.70121799906],[-71.386727,41.70117999906],[-71.386658,41.70105999906],[-71.386643,41.70100999906],[-71.386612,41.70093399906],[-71.386566,41.70077799906],[-71.386505,41.70058499906],[-71.386467,41.70046899906],[-71.386406,41.70030799906],[-71.386276,41.69993699906],[-71.386253,41.69986999906],[-71.386009,41.69913199906],[-71.385895,41.69877399906],[-71.3857,41.69844199906],[-71.385668,41.69734199906],[-71.389197,41.69547899906],[-71.39103,41.69200599906]]]}}"}, +{"type": "blockgroup", "typeId": 216001, "areaId": 29240, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.391914,41.68849899906],[-71.391643,41.68725699906],[-71.391584,41.68679599906],[-71.391423,41.68452499906],[-71.391589,41.68348099906],[-71.391729,41.68227299906],[-71.390489,41.68253399906],[-71.389908,41.68266899906],[-71.389816,41.68267499906],[-71.389679,41.68268699906],[-71.389527,41.68271299906],[-71.389412,41.68272899906],[-71.389297,41.68274899906],[-71.389168,41.68281899906],[-71.389084,41.68287099906],[-71.389015,41.68292599906],[-71.388947,41.68300899906],[-71.388878,41.68308699906],[-71.388835,41.68313799906],[-71.388802,41.68317799906],[-71.388725,41.68321999906],[-71.388649,41.68324399906],[-71.388496,41.68328399906],[-71.388237,41.68331999906],[-71.387779,41.68338899906],[-71.387703,41.68340399906],[-71.387436,41.68345399906],[-71.387024,41.68352099906],[-71.386505,41.68360899906],[-71.386085,41.68367599906],[-71.385605,41.68374899906],[-71.384995,41.68386499906],[-71.384445,41.68395799906],[-71.384254,41.68398699906],[-71.383812,41.68405599906],[-71.383156,41.68417299906],[-71.38311,41.68418299906],[-71.382553,41.68426699906],[-71.381973,41.68439599906],[-71.38176,41.68445899906],[-71.381676,41.68450599906],[-71.381645,41.68453799906],[-71.381622,41.68461499906],[-71.381622,41.68470999906],[-71.381653,41.68507799906],[-71.381691,41.68559099906],[-71.381691,41.68573899906],[-71.381683,41.68582099906],[-71.381638,41.68588899906],[-71.381584,41.68594899906],[-71.381523,41.68601299906],[-71.381218,41.68602799906],[-71.380654,41.68604499906],[-71.37999,41.68606699906],[-71.37912,41.68610299906],[-71.37838,41.68613199906],[-71.378464,41.68573399906],[-71.377548,41.68581199906],[-71.376793,41.68590399906],[-71.376257,41.68597399906],[-71.376015,41.68600599906],[-71.375198,41.68608999906],[-71.374619,41.68614199906],[-71.374208,41.68620699906],[-71.374123,41.68621999906],[-71.373833,41.68625799906],[-71.373642,41.68627999906],[-71.373528,41.68630499906],[-71.373482,41.68634599906],[-71.373398,41.68649199906],[-71.373337,41.68657899906],[-71.373261,41.68666999906],[-71.373184,41.68672999906],[-71.3731,41.68677699906],[-71.372986,41.68680699906],[-71.372894,41.68681299906],[-71.372757,41.68678899906],[-71.37265,41.68675499906],[-71.372528,41.68668599906],[-71.372505,41.68662699906],[-71.372398,41.68649899906],[-71.372353,41.68639199906],[-71.372253,41.68622299906],[-71.372177,41.68616099906],[-71.372101,41.68604999906],[-71.372002,41.68600299906],[-71.371918,41.68595499906],[-71.371712,41.68589199906],[-71.371597,41.68587599906],[-71.37143,41.68590699906],[-71.370111,41.68680899906],[-71.369794,41.68701599906],[-71.369671,41.68709599906],[-71.369889,41.68756899906],[-71.370186,41.68799699906],[-71.371201,41.68945499906],[-71.371223,41.68943699906],[-71.371277,41.68939999906],[-71.371338,41.68937099906],[-71.371429,41.68935599906],[-71.371498,41.68934099906],[-71.372383,41.68922799906],[-71.372455,41.68921999906],[-71.373139,41.68914499906],[-71.373632,41.68908099906],[-71.374039,41.68902699906],[-71.374861,41.68893199906],[-71.375122,41.68889699906],[-71.375649,41.68882799906],[-71.376137,41.68876799906],[-71.376549,41.68871399906],[-71.376929,41.68866699906],[-71.377243,41.68862799906],[-71.377846,41.68855699906],[-71.378273,41.68850799906],[-71.378357,41.68909599906],[-71.378433,41.68976499906],[-71.378457,41.68994499906],[-71.378517,41.69038899906],[-71.378563,41.69064999906],[-71.378624,41.69121599906],[-71.378639,41.69128699906],[-71.378662,41.69141799906],[-71.378731,41.69191199906],[-71.378761,41.69227099906],[-71.378822,41.69269799906],[-71.378822,41.69272499906],[-71.378922,41.69340699906],[-71.379013,41.69406699906],[-71.379051,41.69434099906],[-71.37915,41.69514099906],[-71.379173,41.69540999906],[-71.379456,41.69542699906],[-71.380211,41.69548799906],[-71.380501,41.69550899906],[-71.380699,41.69550499906],[-71.380882,41.69549199906],[-71.381149,41.69546399906],[-71.381363,41.69543199906],[-71.38163,41.69537299906],[-71.381836,41.69531499906],[-71.382123,41.69521799906],[-71.382205,41.69519099906],[-71.382324,41.69515099906],[-71.382713,41.69499899906],[-71.383095,41.69480199906],[-71.383141,41.69477399906],[-71.383324,41.69465799906],[-71.383484,41.69453699906],[-71.383789,41.69431499906],[-71.384132,41.69405599906],[-71.384751,41.69360099906],[-71.38527,41.69322199906],[-71.385322,41.69318399906],[-71.385335,41.69317599906],[-71.386284,41.69252899906],[-71.386886,41.69246699906],[-71.387657,41.69237499906],[-71.387993,41.69233599906],[-71.388657,41.69223699906],[-71.389256,41.69217799906],[-71.39103,41.69200599906],[-71.391402,41.68948699906],[-71.391566,41.68922199906],[-71.391914,41.68849899906]]]}}"}, +{"type": "blockgroup", "typeId": 216002, "areaId": 29241, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.393201,41.66959199906],[-71.392214,41.66474099906],[-71.39132,41.65916199906],[-71.390914,41.65667299906],[-71.390103,41.65229299906],[-71.380542,41.65032599906],[-71.380525,41.65047499906],[-71.380598,41.65055299906],[-71.379718,41.65645799906],[-71.379111,41.65766499906],[-71.378972,41.65797699906],[-71.378074,41.65895599906],[-71.376581,41.66029499906],[-71.375974,41.66140399906],[-71.374783,41.66276499906],[-71.373683,41.66339299906],[-71.373038,41.66363099906],[-71.371237,41.66429499906],[-71.367566,41.66587599906],[-71.365094,41.66702799906],[-71.363289,41.66793699906],[-71.361532,41.66919199906],[-71.360888,41.66987599906],[-71.360359,41.67040599906],[-71.359465,41.67182799906],[-71.358092,41.67420199906],[-71.356613,41.67626999906],[-71.355982,41.67678299906],[-71.36975,41.68660599906],[-71.370111,41.68680899906],[-71.37143,41.68590699906],[-71.371597,41.68587599906],[-71.371712,41.68589199906],[-71.371918,41.68595499906],[-71.372002,41.68600299906],[-71.372101,41.68604999906],[-71.372177,41.68616099906],[-71.372253,41.68622299906],[-71.372353,41.68639199906],[-71.372398,41.68649899906],[-71.372505,41.68662699906],[-71.372528,41.68668599906],[-71.37265,41.68675499906],[-71.372757,41.68678899906],[-71.372894,41.68681299906],[-71.372986,41.68680699906],[-71.3731,41.68677699906],[-71.373184,41.68672999906],[-71.373261,41.68666999906],[-71.373337,41.68657899906],[-71.373398,41.68649199906],[-71.373482,41.68634599906],[-71.373528,41.68630499906],[-71.373642,41.68627999906],[-71.373833,41.68625799906],[-71.374123,41.68621999906],[-71.374208,41.68620699906],[-71.374619,41.68614199906],[-71.375198,41.68608999906],[-71.376015,41.68600599906],[-71.376257,41.68597399906],[-71.376793,41.68590399906],[-71.377548,41.68581199906],[-71.378464,41.68573399906],[-71.37838,41.68613199906],[-71.37912,41.68610299906],[-71.37999,41.68606699906],[-71.380654,41.68604499906],[-71.381218,41.68602799906],[-71.381523,41.68601299906],[-71.381584,41.68594899906],[-71.381638,41.68588899906],[-71.381683,41.68582099906],[-71.381691,41.68573899906],[-71.381691,41.68559099906],[-71.381653,41.68507799906],[-71.381622,41.68470999906],[-71.381622,41.68461499906],[-71.381645,41.68453799906],[-71.381676,41.68450599906],[-71.38176,41.68445899906],[-71.381973,41.68439599906],[-71.382553,41.68426699906],[-71.38311,41.68418299906],[-71.383156,41.68417299906],[-71.383812,41.68405599906],[-71.384254,41.68398699906],[-71.384445,41.68395799906],[-71.384995,41.68386499906],[-71.385605,41.68374899906],[-71.386085,41.68367599906],[-71.386505,41.68360899906],[-71.387024,41.68352099906],[-71.387436,41.68345399906],[-71.387703,41.68340399906],[-71.387779,41.68338899906],[-71.388237,41.68331999906],[-71.388496,41.68328399906],[-71.388649,41.68324399906],[-71.388725,41.68321999906],[-71.388802,41.68317799906],[-71.388835,41.68313799906],[-71.388878,41.68308699906],[-71.388947,41.68300899906],[-71.389015,41.68292599906],[-71.389084,41.68287099906],[-71.389168,41.68281899906],[-71.389297,41.68274899906],[-71.389412,41.68272899906],[-71.389527,41.68271299906],[-71.389679,41.68268699906],[-71.389816,41.68267499906],[-71.389908,41.68266899906],[-71.390489,41.68253399906],[-71.391729,41.68227299906],[-71.391786,41.68178399906],[-71.393201,41.66959199906]]]}}"}, +{"type": "blockgroup", "typeId": 217001, "areaId": 29242, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.399043,41.70103999906],[-71.39904,41.70101299906],[-71.399015,41.70059599906],[-71.398995,41.70036999906],[-71.398994,41.70033399906],[-71.398979,41.70023099906],[-71.398911,41.69936299906],[-71.398804,41.69841099906],[-71.398659,41.69689199906],[-71.398644,41.69675699906],[-71.398636,41.69663099906],[-71.398598,41.69620899906],[-71.398544,41.69566499906],[-71.398521,41.69543099906],[-71.398499,41.69510799906],[-71.398445,41.69453699906],[-71.398392,41.69391199906],[-71.398354,41.69361599906],[-71.398315,41.69321099906],[-71.398254,41.69255499906],[-71.398247,41.69244299906],[-71.398232,41.69231199906],[-71.398186,41.69182699906],[-71.398171,41.69162899906],[-71.398163,41.69140899906],[-71.398163,41.69123299906],[-71.39817,41.69113799906],[-71.398171,41.69103899906],[-71.39817,41.69097599906],[-71.39817,41.69080899906],[-71.398171,41.69064699906],[-71.398171,41.68967899906],[-71.397392,41.68967299906],[-71.396599,41.68967999906],[-71.395828,41.68967399906],[-71.395096,41.68967099906],[-71.394936,41.68966999906],[-71.394669,41.68967599906],[-71.3945,41.68965099906],[-71.393969,41.68957299906],[-71.391566,41.68922199906],[-71.391402,41.68948699906],[-71.39103,41.69200599906],[-71.389197,41.69547899906],[-71.385668,41.69734199906],[-71.3857,41.69844199906],[-71.385895,41.69877399906],[-71.386009,41.69913199906],[-71.386253,41.69986999906],[-71.386276,41.69993699906],[-71.386406,41.70030799906],[-71.386467,41.70046899906],[-71.386505,41.70058499906],[-71.386566,41.70077799906],[-71.386612,41.70093399906],[-71.386643,41.70100999906],[-71.386658,41.70105999906],[-71.386727,41.70117999906],[-71.386757,41.70121799906],[-71.386787,41.70125099906],[-71.386963,41.70141799906],[-71.387253,41.70122699906],[-71.387596,41.70105399906],[-71.387718,41.70100599906],[-71.387894,41.70093499906],[-71.388092,41.70087199906],[-71.388199,41.70084299906],[-71.388405,41.70078499906],[-71.388558,41.70075399906],[-71.388664,41.70073899906],[-71.38884,41.70070799906],[-71.389092,41.70067099906],[-71.389183,41.70065599906],[-71.389412,41.70062399906],[-71.389649,41.70058299906],[-71.389786,41.70057599906],[-71.390083,41.70057899906],[-71.390289,41.70057899906],[-71.390457,41.70057999906],[-71.390724,41.70059199906],[-71.391182,41.70060999906],[-71.391365,41.70061999906],[-71.391525,41.70062099906],[-71.391754,41.70063399906],[-71.391876,41.70063599906],[-71.391983,41.70064299906],[-71.392502,41.70065899906],[-71.392731,41.70065899906],[-71.39283,41.70066099906],[-71.392967,41.70065799906],[-71.393562,41.70066399906],[-71.39373,41.70066499906],[-71.393822,41.70066299906],[-71.394012,41.70066299906],[-71.394241,41.70066799906],[-71.394486,41.70067199906],[-71.39463,41.70067799906],[-71.39476,41.70068399906],[-71.395187,41.70069799906],[-71.395538,41.70072199906],[-71.395691,41.70073199906],[-71.39654,41.70080899906],[-71.396774,41.70083099906],[-71.397148,41.70087699906],[-71.397511,41.70090699906],[-71.398526,41.70099399906],[-71.399043,41.70103999906]]]}}"}, +{"type": "blockgroup", "typeId": 217002, "areaId": 29243, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.403644,41.68963099906],[-71.40285,41.68664599906],[-71.402065,41.68530999906],[-71.399484,41.67925099906],[-71.393201,41.66959199906],[-71.391786,41.68178399906],[-71.391729,41.68227299906],[-71.391589,41.68348099906],[-71.391423,41.68452499906],[-71.391584,41.68679599906],[-71.391643,41.68725699906],[-71.391914,41.68849899906],[-71.391566,41.68922199906],[-71.393969,41.68957299906],[-71.3945,41.68965099906],[-71.394669,41.68967599906],[-71.394936,41.68966999906],[-71.395096,41.68967099906],[-71.395828,41.68967399906],[-71.396599,41.68967999906],[-71.397392,41.68967299906],[-71.398171,41.68967899906],[-71.398971,41.68967599906],[-71.399086,41.68967799906],[-71.399704,41.68967399906],[-71.400429,41.68967699906],[-71.400955,41.68969299906],[-71.401436,41.68969699906],[-71.401535,41.68969899906],[-71.401718,41.68969499906],[-71.402023,41.68970199906],[-71.402321,41.68969199906],[-71.40274,41.68966899906],[-71.403011,41.68965599906],[-71.403644,41.68963099906]]]}}"}, +{"type": "blockgroup", "typeId": 217003, "areaId": 29244, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.408035,41.69489999906],[-71.407151,41.69448699906],[-71.404082,41.69071499906],[-71.40398,41.69047499906],[-71.403808,41.69017299906],[-71.403798,41.69013899906],[-71.40377,41.69006999906],[-71.403749,41.69002399906],[-71.403644,41.68963099906],[-71.403011,41.68965599906],[-71.40274,41.68966899906],[-71.402321,41.68969199906],[-71.402023,41.68970199906],[-71.401718,41.68969499906],[-71.401535,41.68969899906],[-71.401436,41.68969699906],[-71.400955,41.68969299906],[-71.400429,41.68967699906],[-71.399704,41.68967399906],[-71.399086,41.68967799906],[-71.398971,41.68967599906],[-71.398171,41.68967899906],[-71.398171,41.69064699906],[-71.39817,41.69080899906],[-71.39817,41.69097599906],[-71.398171,41.69103899906],[-71.39817,41.69113799906],[-71.398163,41.69123299906],[-71.398163,41.69140899906],[-71.398171,41.69162899906],[-71.398186,41.69182699906],[-71.398232,41.69231199906],[-71.398247,41.69244299906],[-71.398254,41.69255499906],[-71.398315,41.69321099906],[-71.398354,41.69361599906],[-71.398392,41.69391199906],[-71.398445,41.69453699906],[-71.398499,41.69510799906],[-71.398521,41.69543099906],[-71.398544,41.69566499906],[-71.398598,41.69620899906],[-71.398636,41.69663099906],[-71.398644,41.69675699906],[-71.399468,41.69676299906],[-71.399826,41.69676399906],[-71.400909,41.69675499906],[-71.401001,41.69695099906],[-71.401741,41.69688599906],[-71.402481,41.69682599906],[-71.402542,41.69682399906],[-71.403519,41.69676799906],[-71.40387,41.69674299906],[-71.404236,41.69672099906],[-71.405044,41.69666799906],[-71.405067,41.69650999906],[-71.405113,41.69636499906],[-71.405213,41.69624199906],[-71.405737,41.69614899906],[-71.405727,41.69617799906],[-71.405731,41.69623199906],[-71.405742,41.69629599906],[-71.405798,41.69646599906],[-71.405817,41.69652899906],[-71.405858,41.69664499906],[-71.405849,41.69669899906],[-71.405806,41.69674699906],[-71.405767,41.69679399906],[-71.405735,41.69684299906],[-71.405707,41.69689399906],[-71.405687,41.69694599906],[-71.405679,41.69700499906],[-71.405722,41.69702999906],[-71.405792,41.69699899906],[-71.405822,41.69695099906],[-71.405822,41.69688999906],[-71.405866,41.69684199906],[-71.405942,41.69682599906],[-71.405987,41.69677899906],[-71.405999,41.69673899906],[-71.406005,41.69672299906],[-71.406051,41.69666799906],[-71.406134,41.69657299906],[-71.406198,41.69653999906],[-71.406277,41.69651599906],[-71.406355,41.69650399906],[-71.406433,41.69650199906],[-71.406505,41.69651799906],[-71.406523,41.69657299906],[-71.406518,41.69662799906],[-71.406517,41.69668799906],[-71.406546,41.69670099906],[-71.40662,41.69666399906],[-71.40666,41.69660699906],[-71.406665,41.69654799906],[-71.406692,41.69648899906],[-71.406726,41.69646499906],[-71.407204,41.69659199906],[-71.407295,41.69651799906],[-71.40744,41.69639299906],[-71.407631,41.69629499906],[-71.407829,41.69623599906],[-71.407982,41.69622899906],[-71.408028,41.69589399906],[-71.407722,41.69585099906],[-71.408035,41.69489999906]]]}}"}, +{"type": "blockgroup", "typeId": 217004, "areaId": 29245, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.407982,41.69622899906],[-71.407829,41.69623599906],[-71.407631,41.69629499906],[-71.40744,41.69639299906],[-71.407295,41.69651799906],[-71.407204,41.69659199906],[-71.406726,41.69646499906],[-71.406692,41.69648899906],[-71.406665,41.69654799906],[-71.40666,41.69660699906],[-71.40662,41.69666399906],[-71.406546,41.69670099906],[-71.406517,41.69668799906],[-71.406518,41.69662799906],[-71.406523,41.69657299906],[-71.406505,41.69651799906],[-71.406433,41.69650199906],[-71.406355,41.69650399906],[-71.406277,41.69651599906],[-71.406198,41.69653999906],[-71.406134,41.69657299906],[-71.406051,41.69666799906],[-71.406005,41.69672299906],[-71.405999,41.69673899906],[-71.405987,41.69677899906],[-71.405942,41.69682599906],[-71.405866,41.69684199906],[-71.405822,41.69688999906],[-71.405822,41.69695099906],[-71.405792,41.69699899906],[-71.405722,41.69702999906],[-71.405679,41.69700499906],[-71.405687,41.69694599906],[-71.405707,41.69689399906],[-71.405735,41.69684299906],[-71.405767,41.69679399906],[-71.405806,41.69674699906],[-71.405849,41.69669899906],[-71.405858,41.69664499906],[-71.405817,41.69652899906],[-71.405798,41.69646599906],[-71.405742,41.69629599906],[-71.405731,41.69623199906],[-71.405727,41.69617799906],[-71.405737,41.69614899906],[-71.405213,41.69624199906],[-71.405113,41.69636499906],[-71.405067,41.69650999906],[-71.405044,41.69666799906],[-71.404236,41.69672099906],[-71.40387,41.69674299906],[-71.403519,41.69676799906],[-71.402542,41.69682399906],[-71.402481,41.69682599906],[-71.401741,41.69688599906],[-71.401001,41.69695099906],[-71.400909,41.69675499906],[-71.399826,41.69676399906],[-71.399468,41.69676299906],[-71.398644,41.69675699906],[-71.398659,41.69689199906],[-71.398804,41.69841099906],[-71.398911,41.69936299906],[-71.398979,41.70023099906],[-71.398994,41.70033399906],[-71.398995,41.70036999906],[-71.399015,41.70059599906],[-71.39904,41.70101299906],[-71.399043,41.70103999906],[-71.399556,41.70108999906],[-71.399948,41.70112799906],[-71.400836,41.70120399906],[-71.401173,41.70123299906],[-71.401463,41.70127499906],[-71.40183,41.70134099906],[-71.40205,41.70140099906],[-71.402227,41.70145499906],[-71.402889,41.70167299906],[-71.403247,41.70179099906],[-71.403536,41.70189299906],[-71.404157,41.70210999906],[-71.404825,41.70233299906],[-71.405785,41.70264199906],[-71.406618,41.70286099906],[-71.407121,41.70299199906],[-71.407127,41.70296999906],[-71.407326,41.70146199906],[-71.407379,41.70097899906],[-71.407559,41.69957699906],[-71.407662,41.69877099906],[-71.407806,41.69756099906],[-71.407906,41.69685199906],[-71.407982,41.69622899906]]]}}"}, +{"type": "blockgroup", "typeId": 217005, "areaId": 29246, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.420319,41.70406599906],[-71.420097,41.70388599906],[-71.420021,41.70385599906],[-71.419945,41.70383499906],[-71.419876,41.70380999906],[-71.419807,41.70377499906],[-71.419762,41.70373099906],[-71.419739,41.70369599906],[-71.419731,41.70367799906],[-71.419639,41.70358099906],[-71.419586,41.70354099906],[-71.419541,41.70349699906],[-71.419479,41.70344899906],[-71.419426,41.70340499906],[-71.419304,41.70331699906],[-71.419243,41.70326899906],[-71.419098,41.70320499906],[-71.419052,41.70316499906],[-71.418999,41.70311699906],[-71.41893,41.70308699906],[-71.418862,41.70306599906],[-71.418793,41.70303999906],[-71.418656,41.70297999906],[-71.418594,41.70295899906],[-71.418518,41.70292899906],[-71.418457,41.70289399906],[-71.418388,41.70286799906],[-71.41832,41.70285199906],[-71.418213,41.70283599906],[-71.418159,41.70282799906],[-71.418091,41.70279399906],[-71.418053,41.70274499906],[-71.41803,41.70269099906],[-71.418007,41.70263299906],[-71.417954,41.70257599906],[-71.417885,41.70254599906],[-71.417809,41.70253399906],[-71.417732,41.70251299906],[-71.417664,41.70246899906],[-71.41761,41.70242499906],[-71.417572,41.70237199906],[-71.417557,41.70230899906],[-71.417557,41.70219199906],[-71.417526,41.70207099906],[-71.417519,41.70201299906],[-71.417549,41.70195799906],[-71.417572,41.70190399906],[-71.417595,41.70184499906],[-71.417618,41.70178999906],[-71.41761,41.70173199906],[-71.41761,41.70155199906],[-71.417503,41.70146399906],[-71.417435,41.70144299906],[-71.417359,41.70142199906],[-71.417328,41.70137799906],[-71.417358,41.70132299906],[-71.417412,41.70127199906],[-71.417458,41.70121699906],[-71.417443,41.70115499906],[-71.417442,41.70109599906],[-71.417389,41.70104799906],[-71.417267,41.70096899906],[-71.417221,41.70092999906],[-71.417168,41.70088099906],[-71.417107,41.70084199906],[-71.417076,41.70079799906],[-71.417084,41.70073399906],[-71.417084,41.70067599906],[-71.417053,41.70060899906],[-71.417015,41.70055599906],[-71.416962,41.70050299906],[-71.416893,41.70045899906],[-71.416832,41.70041099906],[-71.41684,41.70036599906],[-71.416878,41.70031999906],[-71.416825,41.70027599906],[-71.416832,41.70022599906],[-71.416824,41.70018999906],[-71.416755,41.70015599906],[-71.416694,41.70012099906],[-71.416664,41.70006299906],[-71.416649,41.70000499906],[-71.416641,41.69995099906],[-71.416603,41.69990699906],[-71.416557,41.69985799906],[-71.416534,41.69980499906],[-71.416519,41.69975099906],[-71.416496,41.69969699906],[-71.416489,41.69964799906],[-71.416504,41.69959799906],[-71.416456,41.69959599906],[-71.416408,41.69954499906],[-71.416378,41.69948699906],[-71.416343,41.69943099906],[-71.416266,41.69932299906],[-71.416234,41.69927299906],[-71.416217,41.69921699906],[-71.416158,41.69917599906],[-71.416135,41.69916999906],[-71.416075,41.69915499906],[-71.415998,41.69915999906],[-71.415914,41.69914899906],[-71.415773,41.69909799906],[-71.41564,41.69904099906],[-71.415571,41.69901899906],[-71.41551,41.69898099906],[-71.415478,41.69891999906],[-71.415435,41.69886299906],[-71.41537,41.69882099906],[-71.415293,41.69878999906],[-71.415221,41.69875799906],[-71.415176,41.69870799906],[-71.415126,41.69866099906],[-71.41506,41.69862799906],[-71.414999,41.69859199906],[-71.414942,41.69855699906],[-71.414878,41.69852099906],[-71.414815,41.69848399906],[-71.414755,41.69843999906],[-71.414727,41.69840999906],[-71.414717,41.69833299906],[-71.414303,41.69776899906],[-71.409799,41.69570699906],[-71.408035,41.69489999906],[-71.407722,41.69585099906],[-71.408028,41.69589399906],[-71.407982,41.69622899906],[-71.407906,41.69685199906],[-71.407806,41.69756099906],[-71.407662,41.69877099906],[-71.407559,41.69957699906],[-71.407379,41.70097899906],[-71.407326,41.70146199906],[-71.407127,41.70296999906],[-71.407121,41.70299199906],[-71.407295,41.70304199906],[-71.408018,41.70321999906],[-71.408269,41.70327999906],[-71.409069,41.70348799906],[-71.409804,41.70368499906],[-71.410067,41.70375099906],[-71.410987,41.70398899906],[-71.411424,41.70409599906],[-71.411791,41.70419099906],[-71.41218,41.70428899906],[-71.412466,41.70436399906],[-71.412575,41.70439199906],[-71.412825,41.70445699906],[-71.413283,41.70457499906],[-71.413504,41.70463199906],[-71.414192,41.70481199906],[-71.414915,41.70498599906],[-71.415612,41.70516899906],[-71.416196,41.70530899906],[-71.41712,41.70552799906],[-71.417616,41.70559099906],[-71.417816,41.70556399906],[-71.417958,41.70553199906],[-71.418123,41.70547399906],[-71.418281,41.70540299906],[-71.41843,41.70531599906],[-71.418578,41.70521899906],[-71.418991,41.70490899906],[-71.419044,41.70487599906],[-71.419243,41.70473699906],[-71.419441,41.70460199906],[-71.419724,41.70440299906],[-71.419815,41.70434199906],[-71.419998,41.70422999906],[-71.42009,41.70418299906],[-71.420288,41.70407999906],[-71.420319,41.70406599906]]]}}"}, +{"type": "blockgroup", "typeId": 218001, "areaId": 29247, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.401642,41.71810199906],[-71.401604,41.71806699906],[-71.401465,41.71792399906],[-71.40126,41.71771399906],[-71.401024,41.71747599906],[-71.400665,41.71711899906],[-71.400627,41.71707399906],[-71.400528,41.71698199906],[-71.400413,41.71686699906],[-71.40033,41.71678799906],[-71.400253,41.71670799906],[-71.400101,41.71654099906],[-71.399918,41.71630999906],[-71.399833,41.71617399906],[-71.399815,41.71614499906],[-71.399802,41.71612299906],[-71.399775,41.71607899906],[-71.399735,41.71601799906],[-71.399701,41.71595699906],[-71.399661,41.71589599906],[-71.399615,41.71580599906],[-71.399574,41.71571399906],[-71.399521,41.71559299906],[-71.399475,41.71545899906],[-71.399437,41.71531599906],[-71.399399,41.71517699906],[-71.39933,41.71479599906],[-71.3993,41.71451299906],[-71.3993,41.71448099906],[-71.399285,41.71437599906],[-71.399254,41.71409099906],[-71.399193,41.71360499906],[-71.399147,41.71314699906],[-71.399132,41.71297599906],[-71.399055,41.71258199906],[-71.399025,41.71236599906],[-71.39901,41.71222199906],[-71.399001,41.71199499906],[-71.398899,41.71166799906],[-71.398691,41.71111399906],[-71.398093,41.70972799906],[-71.397998,41.70934599906],[-71.397929,41.70920199906],[-71.39789,41.70912999906],[-71.397849,41.70904499906],[-71.397804,41.70895999906],[-71.397743,41.70884399906],[-71.397552,41.70846099906],[-71.397301,41.70795799906],[-71.397202,41.70780599906],[-71.397133,41.70770899906],[-71.39711,41.70768199906],[-71.397057,41.70761599906],[-71.396973,41.70752299906],[-71.396881,41.70742599906],[-71.39679,41.70733799906],[-71.39669,41.70724499906],[-71.396576,41.70714399906],[-71.396538,41.70711799906],[-71.396454,41.70705199906],[-71.396324,41.70695999906],[-71.396194,41.70687699906],[-71.396057,41.70680799906],[-71.39592,41.70673399906],[-71.395516,41.70653599906],[-71.395393,41.70648399906],[-71.395279,41.70644199906],[-71.395157,41.70639899906],[-71.395043,41.70636099906],[-71.39428,41.70605599906],[-71.392433,41.70532099906],[-71.391869,41.70509399906],[-71.390724,41.70462299906],[-71.390526,41.70454599906],[-71.390152,41.70439599906],[-71.389984,41.70432299906],[-71.389939,41.70429699906],[-71.38977,41.70420999906],[-71.389679,41.70414899906],[-71.389404,41.70398399906],[-71.389221,41.70386099906],[-71.388962,41.70369999906],[-71.388832,41.70360799906],[-71.388641,41.70348599906],[-71.388496,41.70338999906],[-71.388442,41.70335099906],[-71.388084,41.70309199906],[-71.387894,41.70294799906],[-71.387397,41.70255999906],[-71.38723,41.70243499906],[-71.386894,41.70218499906],[-71.386467,41.70181999906],[-71.386055,41.70217099906],[-71.385925,41.70228199906],[-71.385765,41.70241999906],[-71.385429,41.70268799906],[-71.385162,41.70292799906],[-71.385002,41.70306599906],[-71.384521,41.70345499906],[-71.384377,41.70363699906],[-71.384279,41.70376099906],[-71.384179,41.70391999906],[-71.384101,41.70406499906],[-71.384011,41.70426899906],[-71.383884,41.70457599906],[-71.383789,41.70485699906],[-71.383659,41.70525599906],[-71.383545,41.70564999906],[-71.383514,41.70578099906],[-71.383461,41.70606099906],[-71.383423,41.70646299906],[-71.383369,41.70710799906],[-71.383362,41.70763999906],[-71.383362,41.70772099906],[-71.383354,41.70798199906],[-71.383331,41.70812699906],[-71.383285,41.70829399906],[-71.383232,41.70844799906],[-71.383156,41.70859399906],[-71.383049,41.70877199906],[-71.382991,41.70884399906],[-71.382942,41.70890499906],[-71.382805,41.70904699906],[-71.382606,41.70921799906],[-71.382332,41.70940799906],[-71.382072,41.70959399906],[-71.381882,41.70972399906],[-71.381714,41.70987099906],[-71.381576,41.71001799906],[-71.381371,41.71025699906],[-71.381149,41.71056399906],[-71.381058,41.71071799906],[-71.381798,41.71120199906],[-71.382477,41.71167899906],[-71.383103,41.71209899906],[-71.383141,41.71211999906],[-71.383659,41.71244699906],[-71.38388,41.71251499906],[-71.384003,41.71256199906],[-71.384308,41.71273499906],[-71.384941,41.71306899906],[-71.385536,41.71338499906],[-71.386146,41.71370199906],[-71.386765,41.71404399906],[-71.386322,41.71449899906],[-71.385834,41.71500399906],[-71.385292,41.71557499906],[-71.384712,41.71617599906],[-71.385322,41.71653799906],[-71.386215,41.71714899906],[-71.38723,41.71775399906],[-71.387924,41.71816799906],[-71.388206,41.71835499906],[-71.388367,41.71845999906],[-71.388496,41.71855199906],[-71.388763,41.71871799906],[-71.388908,41.71881399906],[-71.388954,41.71883999906],[-71.389091,41.71893099906],[-71.38916,41.71897499906],[-71.389229,41.71900499906],[-71.389259,41.71902299906],[-71.38932,41.71905699906],[-71.389443,41.71911299906],[-71.389496,41.71913499906],[-71.38958,41.71917299906],[-71.389633,41.71918999906],[-71.389717,41.71921999906],[-71.389748,41.71922899906],[-71.389809,41.71924099906],[-71.389923,41.71926999906],[-71.390137,41.71931499906],[-71.390292,41.71934199906],[-71.390389,41.71935899906],[-71.390602,41.71940399906],[-71.391197,41.71952299906],[-71.391678,41.71962099906],[-71.391846,41.71965299906],[-71.392288,41.71974799906],[-71.392502,41.71979699906],[-71.393127,41.71992799906],[-71.394058,41.72013399906],[-71.394058,41.71987699906],[-71.394043,41.71937799906],[-71.394073,41.71938599906],[-71.395607,41.71913799906],[-71.395843,41.71910599906],[-71.397156,41.71886699906],[-71.398262,41.71866799906],[-71.398463,41.71863199906],[-71.398743,41.71858199906],[-71.399605,41.71843799906],[-71.400101,41.71835499906],[-71.401085,41.71820199906],[-71.401138,41.71819399906],[-71.401576,41.71811399906],[-71.401642,41.71810199906]]]}}"}, +{"type": "blockgroup", "typeId": 218002, "areaId": 29248, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.417748,41.70583999906],[-71.417616,41.70559099906],[-71.41712,41.70552799906],[-71.416196,41.70530899906],[-71.415612,41.70516899906],[-71.414915,41.70498599906],[-71.414192,41.70481199906],[-71.413504,41.70463199906],[-71.413283,41.70457499906],[-71.412825,41.70445699906],[-71.412575,41.70439199906],[-71.412466,41.70436399906],[-71.41218,41.70428899906],[-71.411791,41.70419099906],[-71.411424,41.70409599906],[-71.410987,41.70398899906],[-71.410067,41.70375099906],[-71.409804,41.70368499906],[-71.409069,41.70348799906],[-71.408269,41.70327999906],[-71.408018,41.70321999906],[-71.407295,41.70304199906],[-71.407121,41.70299199906],[-71.406618,41.70286099906],[-71.405785,41.70264199906],[-71.404825,41.70233299906],[-71.404157,41.70210999906],[-71.403536,41.70189299906],[-71.403247,41.70179099906],[-71.402889,41.70167299906],[-71.402227,41.70145499906],[-71.40205,41.70140099906],[-71.40183,41.70134099906],[-71.401463,41.70127499906],[-71.401173,41.70123299906],[-71.400836,41.70120399906],[-71.399948,41.70112799906],[-71.399556,41.70108999906],[-71.399043,41.70103999906],[-71.398526,41.70099399906],[-71.397511,41.70090699906],[-71.397148,41.70087699906],[-71.396774,41.70083099906],[-71.39654,41.70080899906],[-71.395691,41.70073199906],[-71.395538,41.70072199906],[-71.395187,41.70069799906],[-71.39476,41.70068399906],[-71.39463,41.70067799906],[-71.394486,41.70067199906],[-71.394241,41.70066799906],[-71.394012,41.70066299906],[-71.393822,41.70066299906],[-71.39373,41.70066499906],[-71.393562,41.70066399906],[-71.392967,41.70065799906],[-71.39283,41.70066099906],[-71.392731,41.70065899906],[-71.392502,41.70065899906],[-71.391983,41.70064299906],[-71.391876,41.70063599906],[-71.391754,41.70063399906],[-71.391525,41.70062099906],[-71.391365,41.70061999906],[-71.391182,41.70060999906],[-71.390724,41.70059199906],[-71.390457,41.70057999906],[-71.390289,41.70057899906],[-71.390083,41.70057899906],[-71.389786,41.70057599906],[-71.389649,41.70058299906],[-71.389412,41.70062399906],[-71.389183,41.70065599906],[-71.389092,41.70067099906],[-71.38884,41.70070799906],[-71.388664,41.70073899906],[-71.388558,41.70075399906],[-71.388405,41.70078499906],[-71.388199,41.70084299906],[-71.388092,41.70087199906],[-71.387894,41.70093499906],[-71.387718,41.70100599906],[-71.387596,41.70105399906],[-71.387253,41.70122699906],[-71.386963,41.70141799906],[-71.386467,41.70181999906],[-71.386894,41.70218499906],[-71.38723,41.70243499906],[-71.387397,41.70255999906],[-71.387894,41.70294799906],[-71.388084,41.70309199906],[-71.388442,41.70335099906],[-71.388496,41.70338999906],[-71.388641,41.70348599906],[-71.388832,41.70360799906],[-71.388962,41.70369999906],[-71.389221,41.70386099906],[-71.389404,41.70398399906],[-71.389679,41.70414899906],[-71.38977,41.70420999906],[-71.389939,41.70429699906],[-71.389984,41.70432299906],[-71.390152,41.70439599906],[-71.390526,41.70454599906],[-71.390724,41.70462299906],[-71.391869,41.70509399906],[-71.392433,41.70532099906],[-71.39428,41.70605599906],[-71.395043,41.70636099906],[-71.395157,41.70639899906],[-71.395279,41.70644199906],[-71.395393,41.70648399906],[-71.395516,41.70653599906],[-71.39592,41.70673399906],[-71.396057,41.70680799906],[-71.396194,41.70687699906],[-71.396324,41.70695999906],[-71.396454,41.70705199906],[-71.396538,41.70711799906],[-71.396576,41.70714399906],[-71.39669,41.70724499906],[-71.39679,41.70733799906],[-71.396881,41.70742599906],[-71.396973,41.70752299906],[-71.397057,41.70761599906],[-71.39711,41.70768199906],[-71.397133,41.70770899906],[-71.397202,41.70780599906],[-71.397301,41.70795799906],[-71.397552,41.70846099906],[-71.397743,41.70884399906],[-71.397804,41.70895999906],[-71.397849,41.70904499906],[-71.39789,41.70912999906],[-71.397929,41.70920199906],[-71.397998,41.70934599906],[-71.398093,41.70972799906],[-71.398691,41.71111399906],[-71.398899,41.71166799906],[-71.399001,41.71199499906],[-71.39901,41.71222199906],[-71.399025,41.71236599906],[-71.399055,41.71258199906],[-71.399559,41.71240399906],[-71.399887,41.71228999906],[-71.400069,41.71222499906],[-71.40031,41.71213699906],[-71.400688,41.71199799906],[-71.400986,41.71189299906],[-71.401065,41.71186399906],[-71.401451,41.71172599906],[-71.401993,41.71153899906],[-71.402618,41.71132299906],[-71.403336,41.71106899906],[-71.403671,41.71095399906],[-71.40432,41.71071999906],[-71.404739,41.71056699906],[-71.405205,41.71040899906],[-71.406082,41.71010199906],[-71.406616,41.70992399906],[-71.407081,41.70976099906],[-71.407187,41.70971199906],[-71.407759,41.70951699906],[-71.407944,41.70948199906],[-71.408699,41.70922799906],[-71.408936,41.70915099906],[-71.409721,41.70884999906],[-71.409828,41.70880799906],[-71.410118,41.70870299906],[-71.410194,41.70866899906],[-71.41069,41.70848299906],[-71.410905,41.70840399906],[-71.41108,41.70833999906],[-71.41124,41.70827799906],[-71.411972,41.70800599906],[-71.41272,41.70772899906],[-71.41291,41.70765299906],[-71.413856,41.70729099906],[-71.414917,41.70689099906],[-71.415695,41.70659499906],[-71.415848,41.70654199906],[-71.416359,41.70635099906],[-71.41703,41.70610299906],[-71.417389,41.70597899906],[-71.417748,41.70583999906]]]}}"}, +{"type": "blockgroup", "typeId": 219011, "areaId": 29249, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.447868,41.71144599906],[-71.447811,41.71144499906],[-71.447655,41.71143499906],[-71.447517,41.71143299906],[-71.447388,41.71142699906],[-71.447334,41.71142399906],[-71.447167,41.71140399906],[-71.447133,41.71139799906],[-71.447083,41.71138899906],[-71.446961,41.71136899906],[-71.446906,41.71136199906],[-71.446724,41.71133799906],[-71.44664,41.71132199906],[-71.446419,41.71128099906],[-71.446213,41.71123199906],[-71.446038,41.71119499906],[-71.44561,41.71107299906],[-71.445289,41.71103999906],[-71.445114,41.71101599906],[-71.444938,41.71099299906],[-71.444016,41.71086399906],[-71.443977,41.71085999906],[-71.443901,41.71084799906],[-71.443311,41.71076599906],[-71.443024,41.71072699906],[-71.442749,41.71068799906],[-71.44207,41.71059499906],[-71.44149,41.71051199906],[-71.43882,41.71395499906],[-71.438454,41.71450799906],[-71.436676,41.71640999906],[-71.437057,41.71661399906],[-71.438339,41.71731599906],[-71.438632,41.71748099906],[-71.439072,41.71772799906],[-71.439919,41.71819699906],[-71.44088,41.71873499906],[-71.440964,41.71878199906],[-71.441281,41.71895499906],[-71.441902,41.71929399906],[-71.441978,41.71933299906],[-71.44203,41.71935999906],[-71.442764,41.71973499906],[-71.443451,41.71997199906],[-71.444004,41.72020799906],[-71.444572,41.72051599906],[-71.444672,41.72024399906],[-71.444765,41.71998699906],[-71.444816,41.71984399906],[-71.444988,41.71936899906],[-71.445199,41.71878499906],[-71.44596,41.71667699906],[-71.446028,41.71648999906],[-71.446459,41.71529699906],[-71.446682,41.71468199906],[-71.446732,41.71454399906],[-71.446968,41.71388099906],[-71.447033,41.71370499906],[-71.447221,41.71319799906],[-71.447754,41.71176199906],[-71.44783,41.71156199906],[-71.447861,41.71146699906],[-71.447868,41.71144599906]]]}}"}, +{"type": "blockgroup", "typeId": 219012, "areaId": 29250, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.441582,41.70502099906],[-71.441574,41.70498499906],[-71.441574,41.70494899906],[-71.44151,41.70441199906],[-71.44149,41.70424899906],[-71.441441,41.70387599906],[-71.441406,41.70361099906],[-71.4413,41.70279799906],[-71.441246,41.70237099906],[-71.441131,41.70134299906],[-71.441116,41.70123899906],[-71.441048,41.70060099906],[-71.440781,41.70063899906],[-71.44043,41.70068699906],[-71.439934,41.70075599906],[-71.439423,41.70082699906],[-71.43911,41.70087199906],[-71.437683,41.70109599906],[-71.437302,41.70115399906],[-71.436973,41.70120999906],[-71.436074,41.70136499906],[-71.435615,41.70143699906],[-71.435226,41.70150399906],[-71.43454,41.70161799906],[-71.434364,41.70164799906],[-71.433998,41.70170599906],[-71.433884,41.70172599906],[-71.433661,41.70176199906],[-71.433464,41.70179399906],[-71.432892,41.70189099906],[-71.432678,41.70192699906],[-71.432624,41.70193499906],[-71.432521,41.70194999906],[-71.432258,41.70198999906],[-71.431251,41.70215099906],[-71.430588,41.70225999906],[-71.429947,41.70235399906],[-71.429733,41.70238999906],[-71.429633,41.70240499906],[-71.429222,41.70246899906],[-71.428337,41.70260499906],[-71.428093,41.70264599906],[-71.428055,41.70265099906],[-71.427376,41.70276399906],[-71.427269,41.70277599906],[-71.426292,41.70293599906],[-71.426003,41.70298299906],[-71.425301,41.70309199906],[-71.424301,41.70323899906],[-71.425529,41.70384799906],[-71.426109,41.70411499906],[-71.426498,41.70428699906],[-71.426712,41.70438599906],[-71.427646,41.70480199906],[-71.427783,41.70486399906],[-71.428505,41.70518999906],[-71.42865,41.70525499906],[-71.429115,41.70546099906],[-71.429634,41.70569299906],[-71.431206,41.70639899906],[-71.43158,41.70657499906],[-71.43172,41.70663999906],[-71.432112,41.70681899906],[-71.432396,41.70694999906],[-71.432747,41.70711299906],[-71.433899,41.70765599906],[-71.434014,41.70771299906],[-71.434357,41.70786299906],[-71.434715,41.70803099906],[-71.434822,41.70807799906],[-71.435341,41.70829199906],[-71.435509,41.70836799906],[-71.435638,41.70842599906],[-71.435989,41.70858899906],[-71.436081,41.70863299906],[-71.436226,41.70870099906],[-71.436386,41.70877899906],[-71.43753,41.70931299906],[-71.438202,41.70964099906],[-71.438698,41.70988299906],[-71.438805,41.70993899906],[-71.438919,41.70999099906],[-71.439125,41.71007599906],[-71.439224,41.71010599906],[-71.439255,41.71011899906],[-71.439323,41.71013999906],[-71.439438,41.71016899906],[-71.439545,41.71020699906],[-71.439651,41.71023199906],[-71.439766,41.71025599906],[-71.439926,41.71028399906],[-71.439995,41.71030099906],[-71.440269,41.71033599906],[-71.440391,41.70981499906],[-71.440437,41.70963899906],[-71.440597,41.70897799906],[-71.440659,41.70875099906],[-71.440717,41.70851799906],[-71.440767,41.70831799906],[-71.440887,41.70783699906],[-71.440941,41.70762399906],[-71.441116,41.70693999906],[-71.44117,41.70674099906],[-71.441284,41.70626599906],[-71.441338,41.70603999906],[-71.441452,41.70559599906],[-71.441528,41.70527399906],[-71.441566,41.70513399906],[-71.441574,41.70509799906],[-71.441582,41.70504399906],[-71.441582,41.70502099906]]]}}"}, +{"type": "blockgroup", "typeId": 219013, "areaId": 29251, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.452281,41.69931499906],[-71.452049,41.69921899906],[-71.451736,41.69911299906],[-71.45166,41.69908799906],[-71.45134,41.69904499906],[-71.450867,41.69895599906],[-71.450302,41.69885499906],[-71.449776,41.69875399906],[-71.449554,41.69870899906],[-71.449438,41.69868599906],[-71.449349,41.69866899906],[-71.449089,41.69861599906],[-71.448608,41.69855799906],[-71.448082,41.69849299906],[-71.447838,41.69845799906],[-71.447183,41.69837799906],[-71.446281,41.69826999906],[-71.445534,41.69817799906],[-71.44561,41.69848699906],[-71.445793,41.69909099906],[-71.44603,41.69983799906],[-71.445282,41.69995299906],[-71.445091,41.69997999906],[-71.44484,41.70002099906],[-71.444321,41.70009999906],[-71.443916,41.70016199906],[-71.443626,41.70020399906],[-71.442924,41.70030899906],[-71.442852,41.70032099906],[-71.442528,41.70037599906],[-71.441398,41.70054899906],[-71.441048,41.70060099906],[-71.441116,41.70123899906],[-71.441131,41.70134299906],[-71.441246,41.70237099906],[-71.4413,41.70279799906],[-71.441406,41.70361099906],[-71.441441,41.70387599906],[-71.44149,41.70424899906],[-71.44151,41.70441199906],[-71.441574,41.70494899906],[-71.441574,41.70498499906],[-71.441582,41.70502099906],[-71.441582,41.70504399906],[-71.441574,41.70509799906],[-71.441566,41.70513399906],[-71.441528,41.70527399906],[-71.441452,41.70559599906],[-71.441338,41.70603999906],[-71.441284,41.70626599906],[-71.44117,41.70674099906],[-71.441116,41.70693999906],[-71.440941,41.70762399906],[-71.440887,41.70783699906],[-71.440767,41.70831799906],[-71.440717,41.70851799906],[-71.440659,41.70875099906],[-71.440597,41.70897799906],[-71.440437,41.70963899906],[-71.440391,41.70981499906],[-71.440269,41.71033599906],[-71.440407,41.71035499906],[-71.441013,41.71044499906],[-71.441261,41.71048099906],[-71.44149,41.71051199906],[-71.44207,41.71059499906],[-71.442749,41.71068799906],[-71.443024,41.71072699906],[-71.443311,41.71076599906],[-71.443901,41.71084799906],[-71.443977,41.71085999906],[-71.444016,41.71086399906],[-71.444938,41.71099299906],[-71.445114,41.71101599906],[-71.445289,41.71103999906],[-71.44561,41.71107299906],[-71.446038,41.71119499906],[-71.446213,41.71123199906],[-71.446419,41.71128099906],[-71.44664,41.71132199906],[-71.446724,41.71133799906],[-71.446906,41.71136199906],[-71.446961,41.71136899906],[-71.447083,41.71138899906],[-71.447133,41.71139799906],[-71.447167,41.71140399906],[-71.447334,41.71142399906],[-71.447388,41.71142699906],[-71.447517,41.71143299906],[-71.447655,41.71143499906],[-71.447811,41.71144499906],[-71.447868,41.71144599906],[-71.447884,41.71140199906],[-71.447909,41.71133599906],[-71.447917,41.71131399906],[-71.448341,41.71015499906],[-71.448517,41.70966999906],[-71.448792,41.70891199906],[-71.449341,41.70739599906],[-71.449982,41.70565299906],[-71.450232,41.70495899906],[-71.450381,41.70454299906],[-71.450581,41.70398599906],[-71.45086,41.70320899906],[-71.450912,41.70306199906],[-71.450942,41.70298099906],[-71.451017,41.70277299906],[-71.451347,41.70185799906],[-71.451494,41.70144999906],[-71.45175,41.70075699906],[-71.452255,41.69939499906],[-71.452263,41.69936299906],[-71.452281,41.69931499906]]]}}"}, +{"type": "blockgroup", "typeId": 219021, "areaId": 29252, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.431931,41.71406499906],[-71.431511,41.71393899906],[-71.431366,41.71388799906],[-71.431229,41.71383699906],[-71.431091,41.71379099906],[-71.430984,41.71375199906],[-71.430863,41.71370099906],[-71.430748,41.71364499906],[-71.430641,41.71358399906],[-71.430588,41.71354899906],[-71.430176,41.71332799906],[-71.429871,41.71315899906],[-71.429718,41.71307199906],[-71.429108,41.71273799906],[-71.42849,41.71239599906],[-71.428276,41.71227799906],[-71.42791,41.71206599906],[-71.427208,41.71166599906],[-71.426941,41.71151899906],[-71.426544,41.71129699906],[-71.426308,41.71117199906],[-71.425751,41.71085899906],[-71.425461,41.71069899906],[-71.424797,41.71032999906],[-71.424133,41.70996599906],[-71.423668,41.70970499906],[-71.423378,41.70954899906],[-71.423134,41.70941499906],[-71.422943,41.70930599906],[-71.422752,41.70921099906],[-71.422409,41.70901599906],[-71.422333,41.70897299906],[-71.422058,41.70882099906],[-71.42173,41.70863399906],[-71.421677,41.70860399906],[-71.421425,41.70845999906],[-71.421112,41.70829599906],[-71.420502,41.70794799906],[-71.420204,41.70777899906],[-71.420113,41.70773099906],[-71.419945,41.70763599906],[-71.419907,41.70761899906],[-71.419792,41.70755399906],[-71.419739,41.70751899906],[-71.419718,41.70750899906],[-71.419693,41.70749699906],[-71.419576,41.70742099906],[-71.41948,41.70735799906],[-71.419373,41.70727899906],[-71.419327,41.70723899906],[-71.419281,41.70720899906],[-71.419205,41.70714699906],[-71.419166,41.70711199906],[-71.419121,41.70707699906],[-71.419075,41.70703699906],[-71.418991,41.70696699906],[-71.418907,41.70689199906],[-71.418831,41.70681699906],[-71.418754,41.70675099906],[-71.418678,41.70668999906],[-71.41861,41.70662399906],[-71.418495,41.70652299906],[-71.418373,41.70642599906],[-71.41835,41.70639999906],[-71.418259,41.70632499906],[-71.418159,41.70623299906],[-71.418053,41.70613999906],[-71.417946,41.70604299906],[-71.417877,41.70597699906],[-71.417816,41.70591099906],[-71.417748,41.70583999906],[-71.417389,41.70597899906],[-71.41703,41.70610299906],[-71.416359,41.70635099906],[-71.415848,41.70654199906],[-71.415695,41.70659499906],[-71.414917,41.70689099906],[-71.413856,41.70729099906],[-71.41291,41.70765299906],[-71.41272,41.70772899906],[-71.411972,41.70800599906],[-71.41124,41.70827799906],[-71.41108,41.70833999906],[-71.410905,41.70840399906],[-71.41069,41.70848299906],[-71.410194,41.70866899906],[-71.410118,41.70870299906],[-71.409828,41.70880799906],[-71.409721,41.70884999906],[-71.408936,41.70915099906],[-71.408699,41.70922799906],[-71.407944,41.70948199906],[-71.407759,41.70951699906],[-71.407187,41.70971199906],[-71.407081,41.70976099906],[-71.407562,41.71000399906],[-71.408127,41.71027999906],[-71.408356,41.71040599906],[-71.408569,41.71052299906],[-71.408844,41.71067499906],[-71.409409,41.71099599906],[-71.40979,41.71119499906],[-71.41037,41.71152499906],[-71.410736,41.71173399906],[-71.410828,41.71178999906],[-71.411049,41.71191599906],[-71.41124,41.71203799906],[-71.411476,41.71218699906],[-71.411743,41.71234299906],[-71.412048,41.71247599906],[-71.412338,41.71259599906],[-71.412506,41.71269199906],[-71.412811,41.71282499906],[-71.413132,41.71298499906],[-71.415615,41.71206999906],[-71.417338,41.71143599906],[-71.417893,41.71183799906],[-71.419552,41.71394199906],[-71.421406,41.71629399906],[-71.422105,41.71640199906],[-71.422205,41.71679799906],[-71.423309,41.71683199906],[-71.423225,41.71683899906],[-71.423141,41.71683999906],[-71.423065,41.71684199906],[-71.423019,41.71686099906],[-71.422981,41.71689299906],[-71.422913,41.71693099906],[-71.422829,41.71693299906],[-71.422745,41.71694799906],[-71.422684,41.71698099906],[-71.422623,41.71702299906],[-71.422561,41.71705099906],[-71.422501,41.71708799906],[-71.422417,41.71709399906],[-71.422348,41.71709599906],[-71.422272,41.71709299906],[-71.422195,41.71711299906],[-71.422112,41.71714099906],[-71.422043,41.71717399906],[-71.421974,41.71720299906],[-71.421906,41.71722199906],[-71.421814,41.71725599906],[-71.421761,41.71731999906],[-71.42173,41.71739299906],[-71.421707,41.71744299906],[-71.421677,41.71749299906],[-71.421646,41.71756099906],[-71.421616,41.71761999906],[-71.421585,41.71766999906],[-71.421555,41.71772499906],[-71.421509,41.71779799906],[-71.42144,41.71782599906],[-71.421364,41.71781899906],[-71.421295,41.71779399906],[-71.421173,41.71773299906],[-71.421089,41.71771199906],[-71.42102,41.71769099906],[-71.420929,41.71767099906],[-71.42086,41.71765899906],[-71.420784,41.71764699906],[-71.420685,41.71762599906],[-71.420639,41.71766799906],[-71.420578,41.71769199906],[-71.420517,41.71773799906],[-71.420456,41.71778899906],[-71.42038,41.71781699906],[-71.420311,41.71783199906],[-71.420227,41.71782099906],[-71.420059,41.71791399906],[-71.420013,41.71795099906],[-71.419937,41.71798899906],[-71.419892,41.71802999906],[-71.419884,41.71804799906],[-71.419899,41.71809799906],[-71.41996,41.71814099906],[-71.420021,41.71818099906],[-71.42009,41.71822399906],[-71.420158,41.71826799906],[-71.420212,41.71831199906],[-71.420265,41.71834699906],[-71.420342,41.71838099906],[-71.420433,41.71841099906],[-71.420509,41.71844499906],[-71.420585,41.71849299906],[-71.420639,41.71853699906],[-71.420731,41.71858899906],[-71.420776,41.71861999906],[-71.42083,41.71867199906],[-71.420883,41.71872099906],[-71.420952,41.71876399906],[-71.421021,41.71878999906],[-71.421097,41.71880199906],[-71.421173,41.71883199906],[-71.421219,41.71887999906],[-71.421265,41.71893799906],[-71.421341,41.71895399906],[-71.421425,41.71895699906],[-71.421524,41.71893199906],[-71.421608,41.71892599906],[-71.421692,41.71892399906],[-71.421723,41.71893699906],[-71.421845,41.71900699906],[-71.421906,41.71905099906],[-71.421959,41.71910799906],[-71.421997,41.71916599906],[-71.422028,41.71923699906],[-71.42205,41.71930399906],[-71.422089,41.71936199906],[-71.422134,41.71940099906],[-71.422203,41.71944499906],[-71.422264,41.71947099906],[-71.422333,41.71951399906],[-71.422401,41.71954899906],[-71.42247,41.71959299906],[-71.422524,41.71963199906],[-71.422577,41.71966699906],[-71.422645,41.71969699906],[-71.422729,41.71971799906],[-71.422806,41.71972099906],[-71.423073,41.71967899906],[-71.423149,41.71967699906],[-71.423218,41.71969399906],[-71.423286,41.71972799906],[-71.423347,41.71983499906],[-71.423393,41.71988399906],[-71.423439,41.71992799906],[-71.423493,41.71997599906],[-71.423538,41.72003399906],[-71.423645,41.72013999906],[-71.423706,41.72018299906],[-71.423767,41.72023199906],[-71.42382,41.72026699906],[-71.423889,41.72028799906],[-71.423966,41.72030799906],[-71.424049,41.72034299906],[-71.424126,41.72036399906],[-71.42421,41.72038399906],[-71.424301,41.72039599906],[-71.424393,41.72041199906],[-71.424591,41.72043499906],[-71.424682,41.72044199906],[-71.42482,41.72065099906],[-71.425438,41.72095699906],[-71.426071,41.72125499906],[-71.426125,41.72122699906],[-71.426155,41.72120799906],[-71.426178,41.72118899906],[-71.426201,41.72116599906],[-71.426208,41.72113499906],[-71.426231,41.72108499906],[-71.426239,41.72103099906],[-71.426262,41.72093999906],[-71.426285,41.72081299906],[-71.426315,41.72069599906],[-71.426338,41.72061899906],[-71.426369,41.72054099906],[-71.426399,41.72046899906],[-71.426445,41.72040899906],[-71.426514,41.72031299906],[-71.426582,41.72023499906],[-71.426668,41.72013299906],[-71.429848,41.71591999906],[-71.429909,41.71587299906],[-71.430054,41.71574399906],[-71.43026,41.71559099906],[-71.430573,41.71533299906],[-71.430817,41.71511999906],[-71.43129,41.71472699906],[-71.431503,41.71453399906],[-71.431656,41.71438199906],[-71.431816,41.71421599906],[-71.431931,41.71406499906]]]}}"}, +{"type": "blockgroup", "typeId": 219022, "areaId": 29253, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.428384,41.70926199906],[-71.428365,41.70909099906],[-71.428229,41.70881099906],[-71.428124,41.70861599906],[-71.428101,41.70858099906],[-71.428055,41.70850099906],[-71.427994,41.70841199906],[-71.427933,41.70831799906],[-71.427879,41.70822999906],[-71.427811,41.70812699906],[-71.427765,41.70805199906],[-71.42775,41.70802499906],[-71.427681,41.70791899906],[-71.427627,41.70782999906],[-71.427574,41.70773199906],[-71.427513,41.70764299906],[-71.427467,41.70756699906],[-71.427414,41.70748699906],[-71.427399,41.70746099906],[-71.427345,41.70737599906],[-71.427322,41.70733599906],[-71.427292,41.70729599906],[-71.427261,41.70725199906],[-71.427223,41.70720799906],[-71.427177,41.70716399906],[-71.427071,41.70705799906],[-71.42701,41.70700999906],[-71.426956,41.70696599906],[-71.426895,41.70692599906],[-71.426842,41.70688299906],[-71.426773,41.70684299906],[-71.426643,41.70676999906],[-71.426003,41.70641799906],[-71.426285,41.70610599906],[-71.426613,41.70576199906],[-71.426817,41.70563899906],[-71.427185,41.70541599906],[-71.427646,41.70480199906],[-71.426712,41.70438599906],[-71.426498,41.70428699906],[-71.426109,41.70411499906],[-71.425529,41.70384799906],[-71.424301,41.70323899906],[-71.423515,41.70338199906],[-71.423347,41.70340799906],[-71.423004,41.70346499906],[-71.422646,41.70352199906],[-71.422531,41.70354199906],[-71.42215,41.70359499906],[-71.421959,41.70362599906],[-71.421768,41.70365299906],[-71.421577,41.70368399906],[-71.421471,41.70369999906],[-71.421356,41.70372499906],[-71.421249,41.70374499906],[-71.42112,41.70377899906],[-71.420998,41.70381799906],[-71.420875,41.70385199906],[-71.420746,41.70389499906],[-71.420624,41.70394299906],[-71.420501,41.70398599906],[-71.420393,41.70403399906],[-71.420319,41.70406599906],[-71.420288,41.70407999906],[-71.42009,41.70418299906],[-71.419998,41.70422999906],[-71.419815,41.70434199906],[-71.419724,41.70440299906],[-71.419441,41.70460199906],[-71.419243,41.70473699906],[-71.419044,41.70487599906],[-71.418991,41.70490899906],[-71.418578,41.70521899906],[-71.41843,41.70531599906],[-71.418281,41.70540299906],[-71.418123,41.70547399906],[-71.417958,41.70553199906],[-71.417816,41.70556399906],[-71.417616,41.70559099906],[-71.417748,41.70583999906],[-71.417816,41.70591099906],[-71.417877,41.70597699906],[-71.417946,41.70604299906],[-71.418053,41.70613999906],[-71.418159,41.70623299906],[-71.418259,41.70632499906],[-71.41835,41.70639999906],[-71.418373,41.70642599906],[-71.418495,41.70652299906],[-71.41861,41.70662399906],[-71.418678,41.70668999906],[-71.418754,41.70675099906],[-71.418831,41.70681699906],[-71.418907,41.70689199906],[-71.418991,41.70696699906],[-71.419075,41.70703699906],[-71.419121,41.70707699906],[-71.419166,41.70711199906],[-71.419205,41.70714699906],[-71.419281,41.70720899906],[-71.419327,41.70723899906],[-71.419373,41.70727899906],[-71.41948,41.70735799906],[-71.419576,41.70742099906],[-71.419693,41.70749699906],[-71.419718,41.70750899906],[-71.419739,41.70751899906],[-71.419792,41.70755399906],[-71.419907,41.70761899906],[-71.419945,41.70763599906],[-71.420113,41.70773099906],[-71.420204,41.70777899906],[-71.420502,41.70794799906],[-71.421112,41.70829599906],[-71.421425,41.70845999906],[-71.421677,41.70860399906],[-71.42173,41.70863399906],[-71.422058,41.70882099906],[-71.422333,41.70897299906],[-71.422409,41.70901599906],[-71.422752,41.70921099906],[-71.422943,41.70930599906],[-71.423134,41.70941499906],[-71.423378,41.70954899906],[-71.423668,41.70970499906],[-71.424133,41.70996599906],[-71.424797,41.71032999906],[-71.425461,41.71069899906],[-71.425751,41.71085899906],[-71.426308,41.71117199906],[-71.426544,41.71129699906],[-71.427063,41.71074199906],[-71.427528,41.71026799906],[-71.427719,41.71007899906],[-71.427803,41.70999199906],[-71.427887,41.70989999906],[-71.427971,41.70981299906],[-71.428108,41.70967499906],[-71.428227,41.70951399906],[-71.428295,41.70940099906],[-71.428352,41.70930599906],[-71.428384,41.70926199906]]]}}"}, +{"type": "blockgroup", "typeId": 219023, "areaId": 29254, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.436081,41.70863299906],[-71.435989,41.70858899906],[-71.435638,41.70842599906],[-71.435509,41.70836799906],[-71.435341,41.70829199906],[-71.434822,41.70807799906],[-71.434715,41.70803099906],[-71.434357,41.70786299906],[-71.434014,41.70771299906],[-71.433899,41.70765599906],[-71.432747,41.70711299906],[-71.432396,41.70694999906],[-71.432112,41.70681899906],[-71.43172,41.70663999906],[-71.43158,41.70657499906],[-71.431206,41.70639899906],[-71.429634,41.70569299906],[-71.429115,41.70546099906],[-71.42865,41.70525499906],[-71.428505,41.70518999906],[-71.427783,41.70486399906],[-71.427646,41.70480199906],[-71.427185,41.70541599906],[-71.426817,41.70563899906],[-71.426613,41.70576199906],[-71.426285,41.70610599906],[-71.426003,41.70641799906],[-71.426643,41.70676999906],[-71.426773,41.70684299906],[-71.426842,41.70688299906],[-71.426895,41.70692599906],[-71.426956,41.70696599906],[-71.42701,41.70700999906],[-71.427071,41.70705799906],[-71.427177,41.70716399906],[-71.427223,41.70720799906],[-71.427261,41.70725199906],[-71.427292,41.70729599906],[-71.427322,41.70733599906],[-71.427345,41.70737599906],[-71.427399,41.70746099906],[-71.427414,41.70748699906],[-71.427467,41.70756699906],[-71.427513,41.70764299906],[-71.427574,41.70773199906],[-71.427627,41.70782999906],[-71.427681,41.70791899906],[-71.42775,41.70802499906],[-71.427765,41.70805199906],[-71.427811,41.70812699906],[-71.427879,41.70822999906],[-71.427933,41.70831799906],[-71.427994,41.70841199906],[-71.428055,41.70850099906],[-71.428101,41.70858099906],[-71.428124,41.70861599906],[-71.428229,41.70881099906],[-71.428365,41.70909099906],[-71.428384,41.70926199906],[-71.428352,41.70930599906],[-71.428295,41.70940099906],[-71.428227,41.70951399906],[-71.428108,41.70967499906],[-71.427971,41.70981299906],[-71.427887,41.70989999906],[-71.427803,41.70999199906],[-71.427719,41.71007899906],[-71.427528,41.71026799906],[-71.427063,41.71074199906],[-71.426544,41.71129699906],[-71.426941,41.71151899906],[-71.427208,41.71166599906],[-71.42791,41.71206599906],[-71.428276,41.71227799906],[-71.42849,41.71239599906],[-71.429108,41.71273799906],[-71.429718,41.71307199906],[-71.429871,41.71315899906],[-71.430176,41.71332799906],[-71.430588,41.71354899906],[-71.430641,41.71358399906],[-71.430748,41.71364499906],[-71.430863,41.71370099906],[-71.430984,41.71375199906],[-71.431091,41.71379099906],[-71.431229,41.71383699906],[-71.431366,41.71388799906],[-71.431511,41.71393899906],[-71.431931,41.71406499906],[-71.432106,41.71385899906],[-71.432411,41.71346999906],[-71.432877,41.71286599906],[-71.432927,41.71279899906],[-71.433268,41.71234199906],[-71.433737,41.71175999906],[-71.433808,41.71167399906],[-71.43435,41.71098699906],[-71.434948,41.71023599906],[-71.435341,41.70974299906],[-71.435815,41.70911899906],[-71.435941,41.70889699906],[-71.436028,41.70872399906],[-71.436081,41.70863299906]]]}}"}, +{"type": "blockgroup", "typeId": 219031, "areaId": 29255, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.44603,41.69983799906],[-71.445793,41.69909099906],[-71.44561,41.69848699906],[-71.445534,41.69817799906],[-71.444565,41.69805899906],[-71.444275,41.69801999906],[-71.443741,41.69795499906],[-71.44323,41.69788899906],[-71.442421,41.69778899906],[-71.442101,41.69775099906],[-71.44171,41.69769599906],[-71.441284,41.69763799906],[-71.441177,41.69762699906],[-71.440186,41.69751299906],[-71.439934,41.69748199906],[-71.439171,41.69738599906],[-71.43866,41.69732399906],[-71.438072,41.69724699906],[-71.437698,41.69720099906],[-71.436935,41.69710899906],[-71.436294,41.69702799906],[-71.435166,41.69688999906],[-71.434967,41.69686699906],[-71.434914,41.69685899906],[-71.434097,41.69675499906],[-71.434029,41.69674299906],[-71.433609,41.69669299906],[-71.433098,41.69662699906],[-71.432396,41.69654299906],[-71.432144,41.69651199906],[-71.431023,41.69635999906],[-71.430779,41.69632999906],[-71.430496,41.69629499906],[-71.43,41.69629199906],[-71.429214,41.69633599906],[-71.429039,41.69634799906],[-71.428062,41.69639199906],[-71.428032,41.69633399906],[-71.427055,41.69635399906],[-71.426193,41.69637699906],[-71.425148,41.69641699906],[-71.425041,41.69641899906],[-71.424378,41.69644199906],[-71.423645,41.69645799906],[-71.423248,41.69647099906],[-71.422363,41.69649799906],[-71.421478,41.69651699906],[-71.421501,41.69676899906],[-71.421516,41.69714699906],[-71.421516,41.69719199906],[-71.421532,41.69730799906],[-71.421585,41.69748299906],[-71.421669,41.69764299906],[-71.421768,41.69774499906],[-71.42186,41.69778799906],[-71.421997,41.69781599906],[-71.422127,41.69782699906],[-71.422371,41.69782699906],[-71.422791,41.69781299906],[-71.422821,41.69798799906],[-71.422882,41.69821699906],[-71.422919,41.69834299906],[-71.422974,41.69852999906],[-71.423023,41.69868899906],[-71.423157,41.69911599906],[-71.423172,41.69914699906],[-71.42334,41.69966999906],[-71.42337,41.69988999906],[-71.423348,41.69999399906],[-71.42334,41.70009799906],[-71.423416,41.70040699906],[-71.423744,41.70149499906],[-71.424301,41.70323899906],[-71.425301,41.70309199906],[-71.426003,41.70298299906],[-71.426292,41.70293599906],[-71.427269,41.70277599906],[-71.427376,41.70276399906],[-71.428055,41.70265099906],[-71.428093,41.70264599906],[-71.428337,41.70260499906],[-71.429222,41.70246899906],[-71.429633,41.70240499906],[-71.429733,41.70238999906],[-71.429947,41.70235399906],[-71.430588,41.70225999906],[-71.431251,41.70215099906],[-71.432258,41.70198999906],[-71.432521,41.70194999906],[-71.432624,41.70193499906],[-71.432678,41.70192699906],[-71.432892,41.70189099906],[-71.433464,41.70179399906],[-71.433661,41.70176199906],[-71.433884,41.70172599906],[-71.433998,41.70170599906],[-71.434364,41.70164799906],[-71.43454,41.70161799906],[-71.435226,41.70150399906],[-71.435615,41.70143699906],[-71.436074,41.70136499906],[-71.436973,41.70120999906],[-71.437302,41.70115399906],[-71.437683,41.70109599906],[-71.43911,41.70087199906],[-71.439423,41.70082699906],[-71.439934,41.70075599906],[-71.44043,41.70068699906],[-71.440781,41.70063899906],[-71.441048,41.70060099906],[-71.441398,41.70054899906],[-71.442528,41.70037599906],[-71.442852,41.70032099906],[-71.442924,41.70030899906],[-71.443626,41.70020399906],[-71.443916,41.70016199906],[-71.444321,41.70009999906],[-71.44484,41.70002099906],[-71.445091,41.69997999906],[-71.445282,41.69995299906],[-71.44603,41.69983799906]]]}}"}, +{"type": "blockgroup", "typeId": 219032, "areaId": 29256, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.430123,41.68585899906],[-71.430034,41.67819999906],[-71.430064,41.67565799906],[-71.423504,41.67634599906],[-71.4082,41.67451999906],[-71.393201,41.66959199906],[-71.399484,41.67925099906],[-71.402065,41.68530999906],[-71.40285,41.68664599906],[-71.403644,41.68963099906],[-71.403749,41.69002399906],[-71.40377,41.69006999906],[-71.403798,41.69013899906],[-71.403808,41.69017299906],[-71.40398,41.69047499906],[-71.404082,41.69071499906],[-71.407151,41.69448699906],[-71.408035,41.69489999906],[-71.409799,41.69570699906],[-71.414303,41.69776899906],[-71.414717,41.69833299906],[-71.414727,41.69840999906],[-71.414755,41.69843999906],[-71.414815,41.69848399906],[-71.414878,41.69852099906],[-71.414942,41.69855699906],[-71.414999,41.69859199906],[-71.41506,41.69862799906],[-71.415126,41.69866099906],[-71.415176,41.69870799906],[-71.415221,41.69875799906],[-71.415293,41.69878999906],[-71.41537,41.69882099906],[-71.415435,41.69886299906],[-71.415478,41.69891999906],[-71.41551,41.69898099906],[-71.415571,41.69901899906],[-71.41564,41.69904099906],[-71.415773,41.69909799906],[-71.415914,41.69914899906],[-71.415998,41.69915999906],[-71.416075,41.69915499906],[-71.416135,41.69916999906],[-71.416158,41.69917599906],[-71.416217,41.69921699906],[-71.416234,41.69927299906],[-71.416266,41.69932299906],[-71.416343,41.69943099906],[-71.416378,41.69948699906],[-71.416408,41.69954499906],[-71.416456,41.69959599906],[-71.416504,41.69959799906],[-71.416489,41.69964799906],[-71.416496,41.69969699906],[-71.416519,41.69975099906],[-71.416534,41.69980499906],[-71.416557,41.69985799906],[-71.416603,41.69990699906],[-71.416641,41.69995099906],[-71.416649,41.70000499906],[-71.416664,41.70006299906],[-71.416694,41.70012099906],[-71.416755,41.70015599906],[-71.416824,41.70018999906],[-71.416832,41.70022599906],[-71.416825,41.70027599906],[-71.416878,41.70031999906],[-71.41684,41.70036599906],[-71.416832,41.70041099906],[-71.416893,41.70045899906],[-71.416962,41.70050299906],[-71.417015,41.70055599906],[-71.417053,41.70060899906],[-71.417084,41.70067599906],[-71.417084,41.70073399906],[-71.417076,41.70079799906],[-71.417107,41.70084199906],[-71.417168,41.70088099906],[-71.417221,41.70092999906],[-71.417267,41.70096899906],[-71.417389,41.70104799906],[-71.417442,41.70109599906],[-71.417443,41.70115499906],[-71.417458,41.70121699906],[-71.417412,41.70127199906],[-71.417358,41.70132299906],[-71.417328,41.70137799906],[-71.417359,41.70142199906],[-71.417435,41.70144299906],[-71.417503,41.70146399906],[-71.41761,41.70155199906],[-71.41761,41.70173199906],[-71.417618,41.70178999906],[-71.417595,41.70184499906],[-71.417572,41.70190399906],[-71.417549,41.70195799906],[-71.417519,41.70201299906],[-71.417526,41.70207099906],[-71.417557,41.70219199906],[-71.417557,41.70230899906],[-71.417572,41.70237199906],[-71.41761,41.70242499906],[-71.417664,41.70246899906],[-71.417732,41.70251299906],[-71.417809,41.70253399906],[-71.417885,41.70254599906],[-71.417954,41.70257599906],[-71.418007,41.70263299906],[-71.41803,41.70269099906],[-71.418053,41.70274499906],[-71.418091,41.70279399906],[-71.418159,41.70282799906],[-71.418213,41.70283599906],[-71.41832,41.70285199906],[-71.418388,41.70286799906],[-71.418457,41.70289399906],[-71.418518,41.70292899906],[-71.418594,41.70295899906],[-71.418656,41.70297999906],[-71.418793,41.70303999906],[-71.418862,41.70306599906],[-71.41893,41.70308699906],[-71.418999,41.70311699906],[-71.419052,41.70316499906],[-71.419098,41.70320499906],[-71.419243,41.70326899906],[-71.419304,41.70331699906],[-71.419426,41.70340499906],[-71.419479,41.70344899906],[-71.419541,41.70349699906],[-71.419586,41.70354099906],[-71.419639,41.70358099906],[-71.419731,41.70367799906],[-71.419739,41.70369599906],[-71.419762,41.70373099906],[-71.419807,41.70377499906],[-71.419876,41.70380999906],[-71.419945,41.70383499906],[-71.420021,41.70385599906],[-71.420097,41.70388599906],[-71.420319,41.70406599906],[-71.420393,41.70403399906],[-71.420501,41.70398599906],[-71.420624,41.70394299906],[-71.420746,41.70389499906],[-71.420875,41.70385199906],[-71.420998,41.70381799906],[-71.42112,41.70377899906],[-71.421249,41.70374499906],[-71.421356,41.70372499906],[-71.421471,41.70369999906],[-71.421577,41.70368399906],[-71.421768,41.70365299906],[-71.421959,41.70362599906],[-71.42215,41.70359499906],[-71.422531,41.70354199906],[-71.422646,41.70352199906],[-71.423004,41.70346499906],[-71.423347,41.70340799906],[-71.423515,41.70338199906],[-71.424301,41.70323899906],[-71.423744,41.70149499906],[-71.423416,41.70040699906],[-71.42334,41.70009799906],[-71.423348,41.69999399906],[-71.42337,41.69988999906],[-71.42334,41.69966999906],[-71.423172,41.69914699906],[-71.423157,41.69911599906],[-71.423023,41.69868899906],[-71.422974,41.69852999906],[-71.422919,41.69834299906],[-71.422882,41.69821699906],[-71.422821,41.69798799906],[-71.422791,41.69781299906],[-71.422371,41.69782699906],[-71.422127,41.69782699906],[-71.421997,41.69781599906],[-71.42186,41.69778799906],[-71.421768,41.69774499906],[-71.421669,41.69764299906],[-71.421585,41.69748299906],[-71.421532,41.69730799906],[-71.421516,41.69719199906],[-71.421516,41.69714699906],[-71.421501,41.69676899906],[-71.421478,41.69651699906],[-71.422363,41.69649799906],[-71.423248,41.69647099906],[-71.423645,41.69645799906],[-71.424378,41.69644199906],[-71.425041,41.69641899906],[-71.425148,41.69641699906],[-71.426193,41.69637699906],[-71.427055,41.69635399906],[-71.428032,41.69633399906],[-71.428062,41.69639199906],[-71.429039,41.69634799906],[-71.429214,41.69633599906],[-71.429176,41.69605699906],[-71.429077,41.69582999906],[-71.429016,41.69571799906],[-71.429153,41.69567899906],[-71.429245,41.69565999906],[-71.429802,41.69563399906],[-71.429901,41.69560999906],[-71.429971,41.69556499906],[-71.429993,41.69550399906],[-71.429985,41.69538699906],[-71.429939,41.69522199906],[-71.429894,41.69489399906],[-71.429802,41.69451699906],[-71.429756,41.69420799906],[-71.42968,41.69382699906],[-71.429642,41.69362499906],[-71.429596,41.69317499906],[-71.429619,41.69271999906],[-71.429626,41.69256199906],[-71.42968,41.69163399906],[-71.429726,41.69024099906],[-71.429741,41.68996599906],[-71.429756,41.68950599906],[-71.429761,41.68932399906],[-71.429763,41.68926699906],[-71.429779,41.68872199906],[-71.429797,41.68828399906],[-71.42981,41.68797399906],[-71.429826,41.68775299906],[-71.429863,41.68724399906],[-71.429878,41.68708999906],[-71.429895,41.68686099906],[-71.429916,41.68657399906],[-71.429932,41.68636399906],[-71.430123,41.68585899906]]]}}"}, +{"type": "blockgroup", "typeId": 220001, "areaId": 29257, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.459152,41.69677999906],[-71.458923,41.69626199906],[-71.458862,41.69618199906],[-71.458649,41.69589899906],[-71.458198,41.69547199906],[-71.457642,41.69496599906],[-71.457581,41.69490799906],[-71.456886,41.69420299906],[-71.456711,41.69394499906],[-71.456589,41.69376299906],[-71.456479,41.69350499906],[-71.45639,41.69329499906],[-71.456367,41.69312899906],[-71.456329,41.69287299906],[-71.456314,41.69258499906],[-71.456299,41.69232799906],[-71.456306,41.69180999906],[-71.456314,41.69146399906],[-71.456273,41.69092999906],[-71.456262,41.69079199906],[-71.456261,41.69077099906],[-71.45623,41.69063199906],[-71.456154,41.69030499906],[-71.456062,41.68999599906],[-71.455956,41.68960699906],[-71.455879,41.68935199906],[-71.455704,41.68863499906],[-71.455689,41.68855899906],[-71.455444,41.68803699906],[-71.45536,41.68785399906],[-71.454979,41.68731299906],[-71.454819,41.68710499906],[-71.454452,41.68663099906],[-71.454147,41.68616499906],[-71.454018,41.68596899906],[-71.453865,41.68582399906],[-71.45359,41.68553699906],[-71.452591,41.68454499906],[-71.452568,41.68452299906],[-71.452377,41.68431999906],[-71.452293,41.68423199906],[-71.45224,41.68417899906],[-71.45166,41.68356499906],[-71.45138,41.68320499906],[-71.45108,41.68282099906],[-71.451034,41.68276399906],[-71.45087,41.68248699906],[-71.450691,41.68218599906],[-71.450403,41.68166699906],[-71.450256,41.68140199906],[-71.449974,41.68071499906],[-71.449743,41.68018899906],[-71.449692,41.68007199906],[-71.449417,41.67947499906],[-71.449387,41.67940799906],[-71.449364,41.67935899906],[-71.449236,41.67907799906],[-71.44921,41.67901899906],[-71.449074,41.67871699906],[-71.449005,41.67853399906],[-71.448822,41.67799699906],[-71.44857,41.67708399906],[-71.448555,41.67697599906],[-71.448534,41.67676899906],[-71.448525,41.67667799906],[-71.44851,41.67652299906],[-71.448506,41.67647899906],[-71.448494,41.67635999906],[-71.448435,41.67582699906],[-71.448425,41.67573099906],[-71.448357,41.67507999906],[-71.448349,41.67502199906],[-71.448342,41.67494999906],[-71.448204,41.67385399906],[-71.448128,41.67318399906],[-71.448097,41.67276199906],[-71.448074,41.67244299906],[-71.448074,41.67241599906],[-71.44809,41.67214499906],[-71.448105,41.67178399906],[-71.448163,41.67134199906],[-71.448187,41.67115999906],[-71.448206,41.67100299906],[-71.448265,41.67054699906],[-71.44828,41.67046999906],[-71.448364,41.67013499906],[-71.448471,41.66979499906],[-71.448639,41.66934099906],[-71.448731,41.66912999906],[-71.44883,41.66890499906],[-71.448891,41.66876399906],[-71.449036,41.66841899906],[-71.44915,41.66815099906],[-71.449371,41.66767299906],[-71.449471,41.66747699906],[-71.449486,41.66744599906],[-71.449624,41.66715299906],[-71.449768,41.66684999906],[-71.449776,41.66681299906],[-71.449982,41.66619199906],[-71.450119,41.66568899906],[-71.450172,41.66546299906],[-71.450188,41.66523799906],[-71.450188,41.66505299906],[-71.450127,41.66399599906],[-71.450127,41.66396399906],[-71.449142,41.66398499906],[-71.448311,41.66402599906],[-71.447441,41.66404899906],[-71.44741,41.66404899906],[-71.446808,41.66407999906],[-71.446472,41.66409199906],[-71.446355,41.66408899906],[-71.446304,41.66408799906],[-71.446167,41.66408499906],[-71.445778,41.66406599906],[-71.445572,41.66406599906],[-71.445244,41.66402299906],[-71.444969,41.66402899906],[-71.4423,41.66401899906],[-71.442398,41.66755699906],[-71.440806,41.66961299906],[-71.439748,41.67079899906],[-71.434639,41.67443399906],[-71.430064,41.67565799906],[-71.430034,41.67819999906],[-71.433238,41.67893099906],[-71.437019,41.68018699906],[-71.438112,41.68065199906],[-71.439611,41.68147099906],[-71.440988,41.68223399906],[-71.444198,41.68482299906],[-71.44546,41.68627699906],[-71.445994,41.68673199906],[-71.446238,41.68720199906],[-71.446154,41.68758199906],[-71.445716,41.68846899906],[-71.445043,41.69003199906],[-71.44522,41.69124899906],[-71.44631,41.69258499906],[-71.449146,41.69450299906],[-71.450568,41.69564899906],[-71.452464,41.69621899906],[-71.453155,41.69644299906],[-71.453275,41.69656999906],[-71.45341,41.69620399906],[-71.453461,41.69618399906],[-71.45349,41.69610799906],[-71.453529,41.69611199906],[-71.453575,41.69611499906],[-71.453644,41.69612299906],[-71.453705,41.69612599906],[-71.453766,41.69612499906],[-71.454086,41.69612699906],[-71.454246,41.69612299906],[-71.454369,41.69612499906],[-71.454537,41.69613099906],[-71.454674,41.69612799906],[-71.454811,41.69613399906],[-71.454949,41.69613099906],[-71.455086,41.69613699906],[-71.455216,41.69613399906],[-71.455345,41.69612699906],[-71.455795,41.69611699906],[-71.455956,41.69611799906],[-71.456055,41.69611599906],[-71.456245,41.69612999906],[-71.456345,41.69614199906],[-71.456444,41.69614899906],[-71.456543,41.69616399906],[-71.456665,41.69618899906],[-71.456757,41.69621599906],[-71.45678,41.69622199906],[-71.456894,41.69625999906],[-71.457176,41.69634899906],[-71.457466,41.69643699906],[-71.457611,41.69647899906],[-71.457764,41.69652099906],[-71.457955,41.69657999906],[-71.458153,41.69663899906],[-71.458466,41.69671799906],[-71.45858,41.69674199906],[-71.458694,41.69676199906],[-71.458847,41.69677299906],[-71.459,41.69677799906],[-71.459152,41.69677999906]]]}}"}, +{"type": "blockgroup", "typeId": 220002, "areaId": 29258, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.46576,41.69920099906],[-71.465622,41.69909999906],[-71.464961,41.69866799906],[-71.464668,41.69850299906],[-71.464534,41.69844699906],[-71.464442,41.69837499906],[-71.464385,41.69830799906],[-71.464365,41.69823599906],[-71.464272,41.69810799906],[-71.464206,41.69806199906],[-71.464139,41.69804099906],[-71.463913,41.69804699906],[-71.463298,41.69833799906],[-71.463127,41.69783399906],[-71.463028,41.69762399906],[-71.462852,41.69751099906],[-71.462395,41.69732299906],[-71.461678,41.69706299906],[-71.46154,41.69703899906],[-71.461525,41.69698499906],[-71.461578,41.69685399906],[-71.461662,41.69672599906],[-71.461708,41.69661699906],[-71.461647,41.69653699906],[-71.461502,41.69649099906],[-71.461319,41.69649899906],[-71.461166,41.69654699906],[-71.461036,41.69660399906],[-71.460914,41.69661599906],[-71.460762,41.69658699906],[-71.460144,41.69681199906],[-71.459923,41.69687999906],[-71.459762,41.69692899906],[-71.45961,41.69697699906],[-71.459297,41.69707399906],[-71.459198,41.69688199906],[-71.459152,41.69677999906],[-71.459,41.69677799906],[-71.458847,41.69677299906],[-71.458694,41.69676199906],[-71.45858,41.69674199906],[-71.458466,41.69671799906],[-71.458153,41.69663899906],[-71.457955,41.69657999906],[-71.457764,41.69652099906],[-71.457611,41.69647899906],[-71.457466,41.69643699906],[-71.457176,41.69634899906],[-71.456894,41.69625999906],[-71.45678,41.69622199906],[-71.456757,41.69621599906],[-71.456665,41.69618899906],[-71.456543,41.69616399906],[-71.456444,41.69614899906],[-71.456345,41.69614199906],[-71.456245,41.69612999906],[-71.456055,41.69611599906],[-71.455956,41.69611799906],[-71.455795,41.69611699906],[-71.455345,41.69612699906],[-71.455216,41.69613399906],[-71.455086,41.69613699906],[-71.454949,41.69613099906],[-71.454811,41.69613399906],[-71.454674,41.69612799906],[-71.454537,41.69613099906],[-71.454369,41.69612499906],[-71.454246,41.69612299906],[-71.454086,41.69612699906],[-71.453766,41.69612499906],[-71.453705,41.69612599906],[-71.453644,41.69612299906],[-71.453575,41.69611499906],[-71.453529,41.69611199906],[-71.45349,41.69610799906],[-71.453461,41.69618399906],[-71.45341,41.69620399906],[-71.453275,41.69656999906],[-71.453155,41.69644299906],[-71.452464,41.69621899906],[-71.450568,41.69564899906],[-71.449146,41.69450299906],[-71.44631,41.69258499906],[-71.44522,41.69124899906],[-71.445043,41.69003199906],[-71.445716,41.68846899906],[-71.446154,41.68758199906],[-71.446238,41.68720199906],[-71.445994,41.68673199906],[-71.44546,41.68627699906],[-71.444198,41.68482299906],[-71.440988,41.68223399906],[-71.439611,41.68147099906],[-71.438112,41.68065199906],[-71.437019,41.68018699906],[-71.433238,41.67893099906],[-71.430034,41.67819999906],[-71.430123,41.68585899906],[-71.429932,41.68636399906],[-71.429916,41.68657399906],[-71.429895,41.68686099906],[-71.429878,41.68708999906],[-71.429863,41.68724399906],[-71.429826,41.68775299906],[-71.42981,41.68797399906],[-71.429797,41.68828399906],[-71.429779,41.68872199906],[-71.429763,41.68926699906],[-71.429761,41.68932399906],[-71.429756,41.68950599906],[-71.429741,41.68996599906],[-71.429726,41.69024099906],[-71.42968,41.69163399906],[-71.429626,41.69256199906],[-71.429619,41.69271999906],[-71.429596,41.69317499906],[-71.429642,41.69362499906],[-71.42968,41.69382699906],[-71.429756,41.69420799906],[-71.429802,41.69451699906],[-71.429894,41.69489399906],[-71.429939,41.69522199906],[-71.429985,41.69538699906],[-71.429993,41.69550399906],[-71.429971,41.69556499906],[-71.429901,41.69560999906],[-71.429802,41.69563399906],[-71.429245,41.69565999906],[-71.429153,41.69567899906],[-71.429016,41.69571799906],[-71.429077,41.69582999906],[-71.429176,41.69605699906],[-71.429214,41.69633599906],[-71.43,41.69629199906],[-71.430496,41.69629499906],[-71.430779,41.69632999906],[-71.431023,41.69635999906],[-71.432144,41.69651199906],[-71.432396,41.69654299906],[-71.433098,41.69662699906],[-71.433609,41.69669299906],[-71.434029,41.69674299906],[-71.434097,41.69675499906],[-71.434914,41.69685899906],[-71.434967,41.69686699906],[-71.435166,41.69688999906],[-71.436294,41.69702799906],[-71.436935,41.69710899906],[-71.437698,41.69720099906],[-71.438072,41.69724699906],[-71.43866,41.69732399906],[-71.439171,41.69738599906],[-71.439934,41.69748199906],[-71.440186,41.69751299906],[-71.441177,41.69762699906],[-71.441284,41.69763799906],[-71.44171,41.69769599906],[-71.442101,41.69775099906],[-71.442421,41.69778899906],[-71.44323,41.69788899906],[-71.443741,41.69795499906],[-71.444275,41.69801999906],[-71.444565,41.69805899906],[-71.445534,41.69817799906],[-71.446281,41.69826999906],[-71.447183,41.69837799906],[-71.447838,41.69845799906],[-71.448082,41.69849299906],[-71.448608,41.69855799906],[-71.449089,41.69861599906],[-71.449349,41.69866899906],[-71.449438,41.69868599906],[-71.449554,41.69870899906],[-71.449776,41.69875399906],[-71.450302,41.69885499906],[-71.450867,41.69895599906],[-71.45134,41.69904499906],[-71.45166,41.69908799906],[-71.451736,41.69911299906],[-71.452049,41.69921899906],[-71.452281,41.69931499906],[-71.452263,41.69936299906],[-71.452255,41.69939499906],[-71.45175,41.70075699906],[-71.451494,41.70144999906],[-71.451347,41.70185799906],[-71.451017,41.70277299906],[-71.450942,41.70298099906],[-71.451007,41.70296199906],[-71.451134,41.70292699906],[-71.451164,41.70291699906],[-71.451492,41.70286499906],[-71.452035,41.70284099906],[-71.452103,41.70283799906],[-71.452206,41.70283599906],[-71.453062,41.70281299906],[-71.453424,41.70274999906],[-71.453871,41.70265499906],[-71.4541,41.70261699906],[-71.454306,41.70262499906],[-71.454507,41.70269299906],[-71.454524,41.70297999906],[-71.454384,41.70321299906],[-71.454224,41.70348199906],[-71.454777,41.70352299906],[-71.454811,41.70347399906],[-71.454865,41.70337399906],[-71.455017,41.70323999906],[-71.455093,41.70320199906],[-71.455162,41.70314199906],[-71.455238,41.70309999906],[-71.45533,41.70310699906],[-71.455368,41.70308399906],[-71.455383,41.70301599906],[-71.455414,41.70296599906],[-71.45546,41.70291999906],[-71.455521,41.70287799906],[-71.455589,41.70282199906],[-71.455666,41.70277999906],[-71.455765,41.70276499906],[-71.455849,41.70276299906],[-71.455963,41.70278299906],[-71.456055,41.70287499906],[-71.456078,41.70295599906],[-71.455994,41.70303899906],[-71.455971,41.70314699906],[-71.45607,41.70326199906],[-71.456261,41.70330799906],[-71.45636,41.70330599906],[-71.456373,41.70330499906],[-71.456474,41.70329899906],[-71.456741,41.70331599906],[-71.456823,41.70332399906],[-71.457054,41.70334899906],[-71.45729,41.70339799906],[-71.457596,41.70346799906],[-71.457729,41.70349399906],[-71.457847,41.70351699906],[-71.458099,41.70360599906],[-71.458305,41.70362899906],[-71.45861,41.70358199906],[-71.458745,41.70355999906],[-71.458862,41.70353999906],[-71.459137,41.70351199906],[-71.459602,41.70351999906],[-71.459885,41.70358199906],[-71.460083,41.70364899906],[-71.460258,41.70364599906],[-71.460419,41.70361999906],[-71.460594,41.70361099906],[-71.460709,41.70366299906],[-71.460724,41.70372099906],[-71.460732,41.70386099906],[-71.460808,41.70393599906],[-71.460831,41.70393099906],[-71.46093,41.70379299906],[-71.461014,41.70363399906],[-71.461052,41.70364199906],[-71.461359,41.70335899906],[-71.461464,41.70332699906],[-71.461502,41.70330799906],[-71.461533,41.70328999906],[-71.46154,41.70324399906],[-71.461464,41.70314199906],[-71.461456,41.70311999906],[-71.461494,41.70300699906],[-71.461489,41.70290899906],[-71.461574,41.70282399906],[-71.461657,41.70276299906],[-71.461718,41.70268499906],[-71.461087,41.70150499906],[-71.461037,41.70144499906],[-71.460937,41.70129399906],[-71.460915,41.70112799906],[-71.460968,41.70097799906],[-71.460991,41.70082899906],[-71.460983,41.70071199906],[-71.461113,41.70060599906],[-71.461478,41.70055799906],[-71.462099,41.70019899906],[-71.464057,41.69916999906],[-71.464172,41.69907699906],[-71.464218,41.69901699906],[-71.464271,41.69898399906],[-71.464348,41.69898699906],[-71.464409,41.69899099906],[-71.464478,41.69899799906],[-71.464554,41.69899599906],[-71.464622,41.69899899906],[-71.464668,41.69900299906],[-71.464744,41.69900099906],[-71.464829,41.69901299906],[-71.464897,41.69901599906],[-71.464958,41.69902399906],[-71.465027,41.69903999906],[-71.465111,41.69904299906],[-71.465202,41.69904099906],[-71.465294,41.69905299906],[-71.46537,41.69907799906],[-71.465439,41.69914899906],[-71.465477,41.69919699906],[-71.465553,41.69923199906],[-71.465629,41.69922599906],[-71.46576,41.69920099906]]]}}"}, +{"type": "blockgroup", "typeId": 221001, "areaId": 29259, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.470852,41.71616999906],[-71.470812,41.71616799906],[-71.470186,41.71616099906],[-71.469454,41.71617499906],[-71.468698,41.71625999906],[-71.468208,41.71632199906],[-71.466322,41.71660299906],[-71.463767,41.71693699906],[-71.463554,41.71694199906],[-71.463238,41.71692099906],[-71.463067,41.71690099906],[-71.46257,41.71677199906],[-71.462372,41.71669499906],[-71.462135,41.71656999906],[-71.461757,41.71643499906],[-71.461327,41.71628099906],[-71.461052,41.71616999906],[-71.46076,41.71605999906],[-71.460533,41.71597399906],[-71.45958,41.71559799906],[-71.459335,41.71549999906],[-71.458816,41.71529399906],[-71.457664,41.71484199906],[-71.456909,41.71454699906],[-71.456779,41.71449099906],[-71.456352,41.71433399906],[-71.456093,41.71423599906],[-71.455887,41.71415899906],[-71.455826,41.71413399906],[-71.454956,41.71380099906],[-71.454819,41.71375399906],[-71.45414,41.71349899906],[-71.453926,41.71342199906],[-71.4524,41.71286899906],[-71.452019,41.71272899906],[-71.451134,41.71240999906],[-71.450851,41.71231199906],[-71.450676,41.71224399906],[-71.45018,41.71206599906],[-71.449974,41.71198899906],[-71.449501,41.71181899906],[-71.449341,41.71175699906],[-71.449105,41.71167599906],[-71.448922,41.71161399906],[-71.44883,41.71158599906],[-71.448649,41.71154799906],[-71.448379,41.71149599906],[-71.448114,41.71146099906],[-71.447923,41.71145299906],[-71.447868,41.71144599906],[-71.447861,41.71146699906],[-71.44783,41.71156199906],[-71.447754,41.71176199906],[-71.447221,41.71319799906],[-71.447033,41.71370499906],[-71.446968,41.71388099906],[-71.446732,41.71454399906],[-71.446682,41.71468199906],[-71.446459,41.71529699906],[-71.446028,41.71648999906],[-71.44596,41.71667699906],[-71.445199,41.71878499906],[-71.444988,41.71936899906],[-71.444816,41.71984399906],[-71.444765,41.71998699906],[-71.444672,41.72024399906],[-71.444572,41.72051599906],[-71.444308,41.72123799906],[-71.444096,41.72182099906],[-71.44387,41.72243999906],[-71.443764,41.72273099906],[-71.443633,41.72305299906],[-71.443604,41.72313099906],[-71.443576,41.72320899906],[-71.443559,41.72325599906],[-71.442741,41.72548599906],[-71.441727,41.72828099906],[-71.441696,41.72836199906],[-71.441723,41.72839399906],[-71.441788,41.72846899906],[-71.441818,41.72851299906],[-71.441879,41.72859799906],[-71.441925,41.72866899906],[-71.441971,41.72874399906],[-71.442009,41.72882399906],[-71.442055,41.72889999906],[-71.442207,41.72917599906],[-71.442307,41.72929999906],[-71.442413,41.72938799906],[-71.442451,41.72941399906],[-71.442528,41.72944799906],[-71.442589,41.72947899906],[-71.442665,41.72950399906],[-71.442734,41.72952499906],[-71.443657,41.72974899906],[-71.444016,41.72982199906],[-71.444824,41.72999399906],[-71.445023,41.73003499906],[-71.445679,41.73016899906],[-71.445862,41.73019299906],[-71.445991,41.73020799906],[-71.446075,41.73021499906],[-71.446113,41.73020999906],[-71.44619,41.73020399906],[-71.446304,41.73018799906],[-71.446365,41.73017299906],[-71.446503,41.73014699906],[-71.446686,41.73008899906],[-71.446953,41.72999799906],[-71.447373,41.72985899906],[-71.447983,41.72964299906],[-71.448776,41.72936499906],[-71.449066,41.72926899906],[-71.449211,41.72922499906],[-71.449326,41.72919999906],[-71.449364,41.72919499906],[-71.449425,41.72918899906],[-71.4496,41.72917599906],[-71.450066,41.72916599906],[-71.450378,41.72916499906],[-71.450554,41.72916499906],[-71.451004,41.72915499906],[-71.451614,41.72915599906],[-71.452026,41.72916699906],[-71.452492,41.72917799906],[-71.452682,41.72917799906],[-71.452812,41.72917999906],[-71.453178,41.72917199906],[-71.453774,41.72916799906],[-71.453926,41.72916499906],[-71.454063,41.72915799906],[-71.454086,41.72906199906],[-71.454102,41.72901299906],[-71.454308,41.72829199906],[-71.454521,41.72765299906],[-71.454704,41.72710799906],[-71.45472,41.72706299906],[-71.45478,41.72687699906],[-71.454842,41.72690299906],[-71.45517,41.72701699906],[-71.455895,41.72725899906],[-71.457062,41.72763899906],[-71.457184,41.72768099906],[-71.457298,41.72772399906],[-71.45742,41.72776599906],[-71.457504,41.72780099906],[-71.457596,41.72783499906],[-71.45768,41.72787299906],[-71.457771,41.72792099906],[-71.457855,41.72796899906],[-71.457932,41.72802099906],[-71.458054,41.72810899906],[-71.458176,41.72820499906],[-71.458282,41.72830199906],[-71.458435,41.72846999906],[-71.458511,41.72841899906],[-71.458542,41.72839099906],[-71.459709,41.72751899906],[-71.460454,41.72696499906],[-71.461373,41.72628099906],[-71.464857,41.72367699906],[-71.465813,41.72296199906],[-71.466705,41.72227599906],[-71.466828,41.72216599906],[-71.466904,41.72210099906],[-71.467468,41.72160199906],[-71.467827,41.72126199906],[-71.468193,41.72087099906],[-71.468536,41.72047599906],[-71.468719,41.72025199906],[-71.468864,41.72006799906],[-71.469147,41.71967999906],[-71.469246,41.71953799906],[-71.469597,41.71899899906],[-71.469917,41.71844299906],[-71.470138,41.71800599906],[-71.470149,41.71798199906],[-71.470345,41.71755999906],[-71.470528,41.71711499906],[-71.470688,41.71668799906],[-71.470735,41.71654499906],[-71.470852,41.71616999906]]]}}"}, +{"type": "blockgroup", "typeId": 221002, "areaId": 29260, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.463776,41.71379199906],[-71.46312,41.71354099906],[-71.462288,41.71322099906],[-71.461128,41.71278599906],[-71.460541,41.71256899906],[-71.459549,41.71219899906],[-71.459389,41.71214399906],[-71.458969,41.71198099906],[-71.458038,41.71163199906],[-71.457626,41.71147899906],[-71.457039,41.71125699906],[-71.45636,41.71101099906],[-71.455933,41.71085799906],[-71.454201,41.71018799906],[-71.452454,41.70954499906],[-71.450676,41.70883999906],[-71.451126,41.70818199906],[-71.451591,41.70750999906],[-71.452041,41.70684299906],[-71.452187,41.70663299906],[-71.452492,41.70621199906],[-71.453102,41.70531599906],[-71.45343,41.70482699906],[-71.453644,41.70450799906],[-71.453834,41.70416999906],[-71.454109,41.70369599906],[-71.454224,41.70348199906],[-71.454384,41.70321299906],[-71.454524,41.70297999906],[-71.454507,41.70269299906],[-71.454306,41.70262499906],[-71.4541,41.70261699906],[-71.453871,41.70265499906],[-71.453424,41.70274999906],[-71.453062,41.70281299906],[-71.452206,41.70283599906],[-71.452103,41.70283799906],[-71.452035,41.70284099906],[-71.451492,41.70286499906],[-71.451164,41.70291699906],[-71.451134,41.70292699906],[-71.451007,41.70296199906],[-71.450942,41.70298099906],[-71.450912,41.70306199906],[-71.45086,41.70320899906],[-71.450581,41.70398599906],[-71.450381,41.70454299906],[-71.450232,41.70495899906],[-71.449982,41.70565299906],[-71.449341,41.70739599906],[-71.448792,41.70891199906],[-71.448517,41.70966999906],[-71.448341,41.71015499906],[-71.447917,41.71131399906],[-71.447909,41.71133599906],[-71.447884,41.71140199906],[-71.447868,41.71144599906],[-71.447923,41.71145299906],[-71.448114,41.71146099906],[-71.448379,41.71149599906],[-71.448649,41.71154799906],[-71.44883,41.71158599906],[-71.448922,41.71161399906],[-71.449105,41.71167599906],[-71.449341,41.71175699906],[-71.449501,41.71181899906],[-71.449974,41.71198899906],[-71.45018,41.71206599906],[-71.450676,41.71224399906],[-71.450851,41.71231199906],[-71.451134,41.71240999906],[-71.452019,41.71272899906],[-71.4524,41.71286899906],[-71.453926,41.71342199906],[-71.45414,41.71349899906],[-71.454819,41.71375399906],[-71.454956,41.71380099906],[-71.455826,41.71413399906],[-71.455887,41.71415899906],[-71.456093,41.71423599906],[-71.456352,41.71433399906],[-71.456779,41.71449099906],[-71.456909,41.71454699906],[-71.457664,41.71484199906],[-71.458816,41.71529399906],[-71.459335,41.71549999906],[-71.45958,41.71559799906],[-71.460533,41.71597399906],[-71.46076,41.71605999906],[-71.461052,41.71616999906],[-71.461327,41.71628099906],[-71.461757,41.71643499906],[-71.462135,41.71656999906],[-71.462372,41.71669499906],[-71.46257,41.71677199906],[-71.463067,41.71690099906],[-71.463238,41.71692099906],[-71.463554,41.71694199906],[-71.463512,41.71678099906],[-71.463401,41.71616199906],[-71.463385,41.71606699906],[-71.463394,41.71556099906],[-71.463405,41.71531399906],[-71.463566,41.71451899906],[-71.463707,41.71408599906],[-71.463776,41.71379199906]]]}}"}, +{"type": "blockgroup", "typeId": 221003, "areaId": 29261, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.490486,41.70976899906],[-71.49041,41.70975499906],[-71.489665,41.70961799906],[-71.48941,41.70956999906],[-71.488846,41.70945999906],[-71.488113,41.70932799906],[-71.487983,41.70929899906],[-71.487724,41.70922799906],[-71.48761,41.70918499906],[-71.487503,41.70914699906],[-71.487311,41.70906299906],[-71.487259,41.70903999906],[-71.486473,41.70864699906],[-71.485962,41.70840599906],[-71.485176,41.70802699906],[-71.484314,41.70761299906],[-71.483841,41.70739399906],[-71.483727,41.70733799906],[-71.482559,41.70678199906],[-71.482125,41.70657499906],[-71.481812,41.70642399906],[-71.480606,41.70584199906],[-71.480133,41.70559999906],[-71.479747,41.70540699906],[-71.479584,41.70532399906],[-71.478589,41.70480999906],[-71.477951,41.70448099906],[-71.477699,41.70435199906],[-71.476746,41.70385399906],[-71.476448,41.70370299906],[-71.476159,41.70355099906],[-71.4758,41.70336099906],[-71.475212,41.70305399906],[-71.475052,41.70297199906],[-71.474251,41.70255299906],[-71.474129,41.70249199906],[-71.47403,41.70243999906],[-71.473709,41.70225299906],[-71.473183,41.70199499906],[-71.472649,41.70176799906],[-71.472588,41.70174199906],[-71.472215,41.70162599906],[-71.472175,41.70161399906],[-71.472145,41.70160399906],[-71.471733,41.70146799906],[-71.471643,41.70143799906],[-71.471039,41.70124299906],[-71.469345,41.70069499906],[-71.468506,41.70041599906],[-71.468277,41.70034399906],[-71.467923,41.70022899906],[-71.467713,41.70016199906],[-71.467255,41.70000999906],[-71.467148,41.69997199906],[-71.467079,41.69994199906],[-71.467003,41.69990299906],[-71.466865,41.69983799906],[-71.46669,41.69975199906],[-71.466484,41.69963899906],[-71.466133,41.69944399906],[-71.466019,41.69937899906],[-71.465927,41.69931799906],[-71.465812,41.69923999906],[-71.46576,41.69920099906],[-71.465629,41.69922599906],[-71.465553,41.69923199906],[-71.465477,41.69919699906],[-71.465439,41.69914899906],[-71.46537,41.69907799906],[-71.465294,41.69905299906],[-71.465202,41.69904099906],[-71.465111,41.69904299906],[-71.465027,41.69903999906],[-71.464958,41.69902399906],[-71.464897,41.69901599906],[-71.464829,41.69901299906],[-71.464744,41.69900099906],[-71.464668,41.69900299906],[-71.464622,41.69899899906],[-71.464554,41.69899599906],[-71.464478,41.69899799906],[-71.464409,41.69899099906],[-71.464348,41.69898699906],[-71.464271,41.69898399906],[-71.464218,41.69901699906],[-71.464172,41.69907699906],[-71.464057,41.69916999906],[-71.462099,41.70019899906],[-71.461478,41.70055799906],[-71.461113,41.70060599906],[-71.460983,41.70071199906],[-71.460991,41.70082899906],[-71.460968,41.70097799906],[-71.460915,41.70112799906],[-71.460937,41.70129399906],[-71.461037,41.70144499906],[-71.461087,41.70150499906],[-71.461718,41.70268499906],[-71.461657,41.70276299906],[-71.461574,41.70282399906],[-71.461489,41.70290899906],[-71.461494,41.70300699906],[-71.461456,41.70311999906],[-71.461464,41.70314199906],[-71.46154,41.70324399906],[-71.461533,41.70328999906],[-71.461502,41.70330799906],[-71.461464,41.70332699906],[-71.461359,41.70335899906],[-71.461426,41.70348599906],[-71.46167,41.70376799906],[-71.461716,41.70382199906],[-71.462143,41.70426699906],[-71.462441,41.70459899906],[-71.462601,41.70485199906],[-71.462654,41.70498599906],[-71.462692,41.70509299906],[-71.462784,41.70538399906],[-71.462845,41.70558999906],[-71.462936,41.70591399906],[-71.462998,41.70613599906],[-71.463041,41.70626299906],[-71.463067,41.70633899906],[-71.463135,41.70653399906],[-71.463221,41.70677499906],[-71.463333,41.70708799906],[-71.463562,41.70770899906],[-71.463623,41.70788699906],[-71.463829,41.70846399906],[-71.463936,41.70874499906],[-71.464104,41.70921899906],[-71.464287,41.70973799906],[-71.464355,41.70994299906],[-71.464417,41.71022999906],[-71.464424,41.71044199906],[-71.464432,41.71055399906],[-71.464432,41.71067099906],[-71.464401,41.71081099906],[-71.464346,41.71109799906],[-71.464279,41.71145299906],[-71.46421,41.71176599906],[-71.464111,41.71218599906],[-71.464096,41.71224499906],[-71.463951,41.71297299906],[-71.46389,41.71328099906],[-71.463776,41.71379199906],[-71.463707,41.71408599906],[-71.463566,41.71451899906],[-71.463405,41.71531399906],[-71.463394,41.71556099906],[-71.463385,41.71606699906],[-71.463401,41.71616199906],[-71.463512,41.71678099906],[-71.463554,41.71694199906],[-71.463767,41.71693699906],[-71.466322,41.71660299906],[-71.468208,41.71632199906],[-71.468698,41.71625999906],[-71.469454,41.71617499906],[-71.470186,41.71616099906],[-71.470812,41.71616799906],[-71.470852,41.71616999906],[-71.47127,41.71616499906],[-71.471307,41.71616699906],[-71.47168,41.71614399906],[-71.474052,41.71613799906],[-71.474246,41.71636899906],[-71.476845,41.71961699906],[-71.476953,41.71974699906],[-71.477151,41.71998499906],[-71.478022,41.72108599906],[-71.479065,41.72230699906],[-71.479912,41.72335199906],[-71.480436,41.72398799906],[-71.480514,41.72408299906],[-71.480608,41.72419699906],[-71.48085,41.72384499906],[-71.481252,41.72337599906],[-71.481361,41.72324499906],[-71.4814,41.72319799906],[-71.481453,41.72313899906],[-71.481644,41.72291399906],[-71.481685,41.72286099906],[-71.481728,41.72280799906],[-71.481813,41.72271199906],[-71.48185,41.72267099906],[-71.48201,41.72248299906],[-71.482208,41.72226199906],[-71.482269,41.72219299906],[-71.482529,41.72190799906],[-71.482605,41.72182599906],[-71.482752,41.72165999906],[-71.482918,41.72147199906],[-71.483048,41.72133399906],[-71.483177,41.72118699906],[-71.483315,41.72103099906],[-71.483472,41.72085799906],[-71.483849,41.72046099906],[-71.484329,41.71998699906],[-71.484718,41.71962299906],[-71.48539,41.71903199906],[-71.485962,41.71848399906],[-71.486479,41.71785899906],[-71.486771,41.71745299906],[-71.487053,41.71701499906],[-71.487366,41.71647199906],[-71.487452,41.71632099906],[-71.487619,41.71601199906],[-71.487756,41.71572799906],[-71.487942,41.71531199906],[-71.487949,41.71529299906],[-71.48797,41.71525099906],[-71.488096,41.71486299906],[-71.488233,41.71452999906],[-71.488444,41.71400199906],[-71.488567,41.71369599906],[-71.489053,41.71254199906],[-71.489383,41.71175399906],[-71.489732,41.71107999906],[-71.48982,41.71092999906],[-71.489897,41.71078099906],[-71.490083,41.71045399906],[-71.490486,41.70976899906]]]}}"}, +{"type": "blockgroup", "typeId": 221004, "areaId": 29262, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.464432,41.71055399906],[-71.464424,41.71044199906],[-71.464417,41.71022999906],[-71.464355,41.70994299906],[-71.464287,41.70973799906],[-71.464104,41.70921899906],[-71.463936,41.70874499906],[-71.463829,41.70846399906],[-71.463623,41.70788699906],[-71.463562,41.70770899906],[-71.463333,41.70708799906],[-71.463221,41.70677499906],[-71.463135,41.70653399906],[-71.463067,41.70633899906],[-71.463041,41.70626299906],[-71.462998,41.70613599906],[-71.462936,41.70591399906],[-71.462845,41.70558999906],[-71.462784,41.70538399906],[-71.462692,41.70509299906],[-71.462654,41.70498599906],[-71.462601,41.70485199906],[-71.462441,41.70459899906],[-71.462143,41.70426699906],[-71.461716,41.70382199906],[-71.46167,41.70376799906],[-71.461426,41.70348599906],[-71.461359,41.70335899906],[-71.461052,41.70364199906],[-71.461014,41.70363399906],[-71.46093,41.70379299906],[-71.460831,41.70393099906],[-71.460808,41.70393599906],[-71.460732,41.70386099906],[-71.460724,41.70372099906],[-71.460709,41.70366299906],[-71.460594,41.70361099906],[-71.460419,41.70361999906],[-71.460258,41.70364599906],[-71.460083,41.70364899906],[-71.459885,41.70358199906],[-71.459602,41.70351999906],[-71.459137,41.70351199906],[-71.458862,41.70353999906],[-71.458745,41.70355999906],[-71.45861,41.70358199906],[-71.458305,41.70362899906],[-71.458099,41.70360599906],[-71.457847,41.70351699906],[-71.457729,41.70349399906],[-71.457596,41.70346799906],[-71.45729,41.70339799906],[-71.457054,41.70334899906],[-71.456823,41.70332399906],[-71.456741,41.70331599906],[-71.456474,41.70329899906],[-71.456373,41.70330499906],[-71.45636,41.70330599906],[-71.456261,41.70330799906],[-71.45607,41.70326199906],[-71.455971,41.70314699906],[-71.455994,41.70303899906],[-71.456078,41.70295599906],[-71.456055,41.70287499906],[-71.455963,41.70278299906],[-71.455849,41.70276299906],[-71.455765,41.70276499906],[-71.455666,41.70277999906],[-71.455589,41.70282199906],[-71.455521,41.70287799906],[-71.45546,41.70291999906],[-71.455414,41.70296599906],[-71.455383,41.70301599906],[-71.455368,41.70308399906],[-71.45533,41.70310699906],[-71.455238,41.70309999906],[-71.455162,41.70314199906],[-71.455093,41.70320199906],[-71.455017,41.70323999906],[-71.454865,41.70337399906],[-71.454811,41.70347399906],[-71.454777,41.70352299906],[-71.454224,41.70348199906],[-71.454109,41.70369599906],[-71.453834,41.70416999906],[-71.453644,41.70450799906],[-71.45343,41.70482699906],[-71.453102,41.70531599906],[-71.452492,41.70621199906],[-71.452187,41.70663299906],[-71.452041,41.70684299906],[-71.451591,41.70750999906],[-71.451126,41.70818199906],[-71.450676,41.70883999906],[-71.452454,41.70954499906],[-71.454201,41.71018799906],[-71.455933,41.71085799906],[-71.45636,41.71101099906],[-71.457039,41.71125699906],[-71.457626,41.71147899906],[-71.458038,41.71163199906],[-71.458969,41.71198099906],[-71.459389,41.71214399906],[-71.459549,41.71219899906],[-71.460541,41.71256899906],[-71.461128,41.71278599906],[-71.462288,41.71322099906],[-71.46312,41.71354099906],[-71.463776,41.71379199906],[-71.46389,41.71328099906],[-71.463951,41.71297299906],[-71.464096,41.71224499906],[-71.464111,41.71218599906],[-71.46421,41.71176599906],[-71.464279,41.71145299906],[-71.464346,41.71109799906],[-71.464401,41.71081099906],[-71.464432,41.71067099906],[-71.464432,41.71055399906]]]}}"}, +{"type": "blockgroup", "typeId": 222011, "areaId": 29263, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.477218,41.68810099906],[-71.477196,41.68521499906],[-71.476677,41.68523999906],[-71.476189,41.68525499906],[-71.476051,41.68526199906],[-71.475487,41.68529699906],[-71.475436,41.68529899906],[-71.474975,41.68531699906],[-71.474861,41.68531999906],[-71.474564,41.68532599906],[-71.474144,41.68531699906],[-71.473717,41.68529899906],[-71.473633,41.68529199906],[-71.473343,41.68526699906],[-71.472931,41.68522599906],[-71.472526,41.68516699906],[-71.472054,41.68512299906],[-71.471657,41.68509999906],[-71.471176,41.68507499906],[-71.470169,41.68503799906],[-71.469795,41.68503099906],[-71.469459,41.68502599906],[-71.468926,41.68499699906],[-71.468849,41.68499399906],[-71.468796,41.68499499906],[-71.468513,41.68498799906],[-71.468109,41.68501499906],[-71.467811,41.68502999906],[-71.467537,41.68504899906],[-71.466798,41.68509799906],[-71.466743,41.68510199906],[-71.46653,41.68512499906],[-71.466019,41.68516699906],[-71.465675,41.68520199906],[-71.465542,41.68521799906],[-71.465233,41.68525599906],[-71.465141,41.68526699906],[-71.465187,41.68565799906],[-71.465218,41.68599499906],[-71.465301,41.68647999906],[-71.46534,41.68693399906],[-71.465347,41.68710899906],[-71.465378,41.68763499906],[-71.465408,41.68800899906],[-71.465431,41.68840399906],[-71.465462,41.68879999906],[-71.465462,41.68892199906],[-71.465492,41.68923199906],[-71.465515,41.68960899906],[-71.46553,41.68981199906],[-71.465576,41.69078299906],[-71.465542,41.69090799906],[-71.465454,41.69124099906],[-71.465434,41.69137199906],[-71.465393,41.69163399906],[-71.465401,41.69181399906],[-71.465507,41.69249099906],[-71.465515,41.69251799906],[-71.465569,41.69299899906],[-71.465645,41.69337999906],[-71.46579,41.69357999906],[-71.466295,41.69401899906],[-71.466538,41.69422999906],[-71.466743,41.69449599906],[-71.466888,41.69475399906],[-71.466911,41.69488899906],[-71.466881,41.69502899906],[-71.46682,41.69548899906],[-71.466774,41.69575599906],[-71.466728,41.69605899906],[-71.466667,41.69650599906],[-71.466583,41.69702099906],[-71.46653,41.69745399906],[-71.466499,41.69772499906],[-71.466057,41.69768999906],[-71.46598,41.69768599906],[-71.465752,41.69767399906],[-71.465561,41.69766399906],[-71.465248,41.69768499906],[-71.464882,41.69773299906],[-71.464737,41.69777199906],[-71.464689,41.69778399906],[-71.464508,41.69783099906],[-71.464477,41.69784099906],[-71.463913,41.69804699906],[-71.464139,41.69804099906],[-71.464206,41.69806199906],[-71.464272,41.69810799906],[-71.464365,41.69823599906],[-71.464385,41.69830799906],[-71.464442,41.69837499906],[-71.464534,41.69844699906],[-71.464668,41.69850299906],[-71.464961,41.69866799906],[-71.465622,41.69909999906],[-71.46576,41.69920099906],[-71.465812,41.69923999906],[-71.465927,41.69931799906],[-71.466019,41.69937899906],[-71.466133,41.69944399906],[-71.466484,41.69963899906],[-71.46669,41.69975199906],[-71.466865,41.69983799906],[-71.467003,41.69990299906],[-71.467079,41.69994199906],[-71.467148,41.69997199906],[-71.467255,41.70000999906],[-71.467713,41.70016199906],[-71.467923,41.70022899906],[-71.468277,41.70034399906],[-71.468506,41.70041599906],[-71.469345,41.70069499906],[-71.471039,41.70124299906],[-71.471643,41.70143799906],[-71.471733,41.70146799906],[-71.472145,41.70160399906],[-71.472175,41.70161399906],[-71.472215,41.70162599906],[-71.472588,41.70174199906],[-71.472649,41.70176799906],[-71.473183,41.70199499906],[-71.473709,41.70225299906],[-71.47377,41.70204499906],[-71.473961,41.70145599906],[-71.474411,41.70007699906],[-71.474537,41.69968399906],[-71.474681,41.69923499906],[-71.474785,41.69891199906],[-71.474983,41.69828599906],[-71.475121,41.69785499906],[-71.475204,41.69754699906],[-71.475239,41.69744299906],[-71.475898,41.69545099906],[-71.476014,41.69508799906],[-71.476326,41.69411899906],[-71.476456,41.69364799906],[-71.476593,41.69317599906],[-71.476723,41.69270499906],[-71.476814,41.69226599906],[-71.476906,41.69183199906],[-71.476982,41.69139799906],[-71.477005,41.69121799906],[-71.477058,41.69088799906],[-71.477127,41.69037299906],[-71.477173,41.68985799906],[-71.477203,41.68927199906],[-71.477211,41.68869099906],[-71.477218,41.68810099906]]]}}"}, +{"type": "blockgroup", "typeId": 222012, "areaId": 29264, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.478012,41.67402099906],[-71.477486,41.67432299906],[-71.477333,41.67444599906],[-71.477295,41.67448099906],[-71.477277,41.67450899906],[-71.477269,41.67453599906],[-71.477256,41.67455999906],[-71.477233,41.67458499906],[-71.477209,41.67460499906],[-71.477184,41.67461599906],[-71.47711,41.67465899906],[-71.477039,41.67466499906],[-71.477002,41.67464099906],[-71.476967,41.67463799906],[-71.476921,41.67462499906],[-71.476883,41.67461299906],[-71.476837,41.67459999906],[-71.476799,41.67458299906],[-71.476692,41.67453999906],[-71.476585,41.67450199906],[-71.476555,41.67449399906],[-71.476506,41.67447599906],[-71.476372,41.67443899906],[-71.476273,41.67440999906],[-71.476166,41.67438499906],[-71.476036,41.67435199906],[-71.475914,41.67431799906],[-71.475784,41.67428999906],[-71.475594,41.67424399906],[-71.475395,41.67419899906],[-71.475205,41.67415799906],[-71.47496,41.67409999906],[-71.474838,41.67407599906],[-71.474754,41.67406399906],[-71.474571,41.67404099906],[-71.474417,41.67401399906],[-71.474229,41.67398099906],[-71.473793,41.67390499906],[-71.473083,41.67373099906],[-71.472629,41.67361599906],[-71.472291,41.67352999906],[-71.472199,41.67350699906],[-71.471703,41.67340899906],[-71.471619,41.67339799906],[-71.47113,41.67332699906],[-71.47039,41.67327999906],[-71.470123,41.67325399906],[-71.469833,41.67321999906],[-71.469345,41.67317599906],[-71.469177,41.67316199906],[-71.468788,41.67314299906],[-71.468268,41.67313999906],[-71.46814,41.67313899906],[-71.467201,41.67317699906],[-71.466042,41.67322499906],[-71.465874,41.67322399906],[-71.46518,41.67323899906],[-71.465088,41.67323599906],[-71.464516,41.67320799906],[-71.463799,41.67307499906],[-71.46315,41.67288599906],[-71.463051,41.67284799906],[-71.462761,41.67272799906],[-71.462402,41.67261799906],[-71.462151,41.67257899906],[-71.461517,41.67252899906],[-71.4608,41.67249099906],[-71.459686,41.67244799906],[-71.459124,41.67242599906],[-71.4589,41.67242799906],[-71.458771,41.67242999906],[-71.457848,41.67241399906],[-71.457848,41.67293199906],[-71.457916,41.67406999906],[-71.457932,41.67435799906],[-71.45797,41.67484299906],[-71.457977,41.67501899906],[-71.458008,41.67525199906],[-71.458031,41.67543199906],[-71.458046,41.67558499906],[-71.458061,41.67569199906],[-71.458161,41.67621299906],[-71.458267,41.67674599906],[-71.458511,41.67727699906],[-71.458916,41.67803799906],[-71.458948,41.67809299906],[-71.459335,41.67876299906],[-71.460045,41.67978399906],[-71.460236,41.68006299906],[-71.460777,41.68095199906],[-71.461319,41.68187699906],[-71.461517,41.68213899906],[-71.461594,41.68224099906],[-71.46212,41.68304499906],[-71.462196,41.68318699906],[-71.462387,41.68353399906],[-71.462555,41.68388599906],[-71.462669,41.68409999906],[-71.462746,41.68423299906],[-71.462799,41.68432199906],[-71.46312,41.68487399906],[-71.463211,41.68506099906],[-71.463257,41.68514999906],[-71.46331,41.68539199906],[-71.463569,41.68540499906],[-71.463875,41.68541199906],[-71.464165,41.68539599906],[-71.464249,41.68539499906],[-71.464752,41.68532999906],[-71.465141,41.68526699906],[-71.465233,41.68525599906],[-71.465542,41.68521799906],[-71.465675,41.68520199906],[-71.466019,41.68516699906],[-71.46653,41.68512499906],[-71.466743,41.68510199906],[-71.466798,41.68509799906],[-71.467537,41.68504899906],[-71.467811,41.68502999906],[-71.468109,41.68501499906],[-71.468513,41.68498799906],[-71.468796,41.68499499906],[-71.468849,41.68499399906],[-71.468926,41.68499699906],[-71.469459,41.68502599906],[-71.469795,41.68503099906],[-71.470169,41.68503799906],[-71.471176,41.68507499906],[-71.471657,41.68509999906],[-71.472054,41.68512299906],[-71.472526,41.68516699906],[-71.472931,41.68522599906],[-71.473343,41.68526699906],[-71.473633,41.68529199906],[-71.473717,41.68529899906],[-71.474144,41.68531699906],[-71.474564,41.68532599906],[-71.474861,41.68531999906],[-71.474975,41.68531699906],[-71.475436,41.68529899906],[-71.475487,41.68529699906],[-71.476051,41.68526199906],[-71.476189,41.68525499906],[-71.476677,41.68523999906],[-71.477196,41.68521499906],[-71.477196,41.68423799906],[-71.477165,41.68099199906],[-71.477158,41.67899699906],[-71.477142,41.67784499906],[-71.477165,41.67726799906],[-71.477219,41.67675299906],[-71.477295,41.67623799906],[-71.477371,41.67584499906],[-71.477394,41.67573199906],[-71.477508,41.67536499906],[-71.477577,41.67515599906],[-71.477791,41.67458899906],[-71.478012,41.67402099906]]]}}"}, +{"type": "blockgroup", "typeId": 222013, "areaId": 29265, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.490326,41.66410899906],[-71.490318,41.66395199906],[-71.49028,41.66364199906],[-71.490208,41.66320799906],[-71.490206,41.66319299906],[-71.489513,41.66321099906],[-71.488365,41.66324099906],[-71.488189,41.66324699906],[-71.488028,41.66325099906],[-71.487947,41.66325299906],[-71.487803,41.66325699906],[-71.48744,41.66326699906],[-71.487163,41.66327399906],[-71.486536,41.66329099906],[-71.484434,41.66334799906],[-71.484055,41.66335799906],[-71.480272,41.66338599906],[-71.479839,41.66338999906],[-71.479691,41.66338399906],[-71.479295,41.66339799906],[-71.477069,41.66346599906],[-71.476521,41.66347499906],[-71.475941,41.66348399906],[-71.475833,41.66348499906],[-71.473923,41.66350999906],[-71.473633,41.66351399906],[-71.472941,41.66352399906],[-71.47278,41.66352599906],[-71.469996,41.66358299906],[-71.46985,41.66358799906],[-71.468239,41.66362799906],[-71.46614,41.66367899906],[-71.466037,41.66368499906],[-71.465178,41.66371599906],[-71.465121,41.66371599906],[-71.465007,41.66371699906],[-71.464514,41.66371999906],[-71.464115,41.66372299906],[-71.463726,41.66372499906],[-71.459795,41.66374699906],[-71.459647,41.66373399906],[-71.459534,41.66373099906],[-71.458919,41.66373399906],[-71.45853,41.66373399906],[-71.45829,41.66370499906],[-71.456749,41.66376499906],[-71.455658,41.66378799906],[-71.455368,41.66379399906],[-71.454903,41.66380399906],[-71.453972,41.66381899906],[-71.452835,41.66385299906],[-71.452301,41.66387799906],[-71.451912,41.66388999906],[-71.451218,41.66392299906],[-71.451088,41.66392999906],[-71.450127,41.66396399906],[-71.450127,41.66399599906],[-71.450188,41.66505299906],[-71.450188,41.66523799906],[-71.450172,41.66546299906],[-71.450119,41.66568899906],[-71.449982,41.66619199906],[-71.449776,41.66681299906],[-71.449768,41.66684999906],[-71.449624,41.66715299906],[-71.449486,41.66744599906],[-71.449471,41.66747699906],[-71.449371,41.66767299906],[-71.44915,41.66815099906],[-71.449036,41.66841899906],[-71.448891,41.66876399906],[-71.44883,41.66890499906],[-71.448731,41.66912999906],[-71.448639,41.66934099906],[-71.448471,41.66979499906],[-71.448364,41.67013499906],[-71.44828,41.67046999906],[-71.448265,41.67054699906],[-71.448206,41.67100299906],[-71.448187,41.67115999906],[-71.448163,41.67134199906],[-71.448105,41.67178399906],[-71.44809,41.67214499906],[-71.448074,41.67241599906],[-71.448074,41.67244299906],[-71.448097,41.67276199906],[-71.448341,41.67274799906],[-71.448624,41.67274199906],[-71.44902,41.67272899906],[-71.449372,41.67271199906],[-71.449791,41.67268099906],[-71.450111,41.67264199906],[-71.450378,41.67253299906],[-71.450569,41.67246099906],[-71.450752,41.67243499906],[-71.451103,41.67241899906],[-71.451323,41.67241999906],[-71.451569,41.67242199906],[-71.452362,41.67243199906],[-71.452736,41.67241499906],[-71.453156,41.67239699906],[-71.453743,41.67234899906],[-71.454193,41.67228499906],[-71.454949,41.67220599906],[-71.455986,41.67213399906],[-71.456383,41.67212099906],[-71.457848,41.67207599906],[-71.457848,41.67241399906],[-71.458771,41.67242999906],[-71.4589,41.67242799906],[-71.459124,41.67242599906],[-71.459686,41.67244799906],[-71.4608,41.67249099906],[-71.461517,41.67252899906],[-71.462151,41.67257899906],[-71.462402,41.67261799906],[-71.462761,41.67272799906],[-71.463051,41.67284799906],[-71.46315,41.67288599906],[-71.463799,41.67307499906],[-71.464516,41.67320799906],[-71.465088,41.67323599906],[-71.46518,41.67323899906],[-71.465874,41.67322399906],[-71.466042,41.67322499906],[-71.467201,41.67317699906],[-71.46814,41.67313899906],[-71.468268,41.67313999906],[-71.468788,41.67314299906],[-71.469177,41.67316199906],[-71.469345,41.67317599906],[-71.469833,41.67321999906],[-71.470123,41.67325399906],[-71.47039,41.67327999906],[-71.47113,41.67332699906],[-71.471619,41.67339799906],[-71.471703,41.67340899906],[-71.472199,41.67350699906],[-71.472291,41.67352999906],[-71.472629,41.67361599906],[-71.473083,41.67373099906],[-71.473793,41.67390499906],[-71.474229,41.67398099906],[-71.474417,41.67401399906],[-71.474571,41.67404099906],[-71.474754,41.67406399906],[-71.474838,41.67407599906],[-71.47496,41.67409999906],[-71.475205,41.67415799906],[-71.475395,41.67419899906],[-71.475594,41.67424399906],[-71.475784,41.67428999906],[-71.475914,41.67431799906],[-71.476036,41.67435199906],[-71.476166,41.67438499906],[-71.476273,41.67440999906],[-71.476372,41.67443899906],[-71.476506,41.67447599906],[-71.476555,41.67449399906],[-71.476585,41.67450199906],[-71.476692,41.67453999906],[-71.476799,41.67458299906],[-71.476837,41.67459999906],[-71.476883,41.67461299906],[-71.476921,41.67462499906],[-71.476967,41.67463799906],[-71.477002,41.67464099906],[-71.477039,41.67466499906],[-71.47711,41.67465899906],[-71.477184,41.67461599906],[-71.477209,41.67460499906],[-71.477233,41.67458499906],[-71.477256,41.67455999906],[-71.477269,41.67453599906],[-71.477277,41.67450899906],[-71.477295,41.67448099906],[-71.477333,41.67444599906],[-71.477486,41.67432299906],[-71.478012,41.67402099906],[-71.478051,41.67395099906],[-71.4785,41.67313699906],[-71.478768,41.67270799906],[-71.479019,41.67234699906],[-71.479294,41.67200299906],[-71.479576,41.67165899906],[-71.479996,41.67120399906],[-71.480391,41.67082099906],[-71.480446,41.67076699906],[-71.480927,41.67035099906],[-71.481415,41.66995299906],[-71.48177,41.66969599906],[-71.481941,41.66957299906],[-71.482483,41.66921399906],[-71.482735,41.66907399906],[-71.483162,41.66881199906],[-71.483582,41.66855099906],[-71.484024,41.66831199906],[-71.484314,41.66816999906],[-71.484619,41.66803799906],[-71.484924,41.66790999906],[-71.485199,41.66779999906],[-71.485481,41.66769499906],[-71.485756,41.66758499906],[-71.485969,41.66750399906],[-71.486053,41.66747099906],[-71.486359,41.66735599906],[-71.486382,41.66734199906],[-71.486656,41.66723699906],[-71.486974,41.66711899906],[-71.487244,41.66700799906],[-71.487287,41.66699199906],[-71.487541,41.66689399906],[-71.487824,41.66678399906],[-71.488106,41.66667899906],[-71.48838,41.66656499906],[-71.488587,41.66646999906],[-71.488785,41.66636699906],[-71.488991,41.66626299906],[-71.489258,41.66608199906],[-71.489387,41.66597999906],[-71.489586,41.66581399906],[-71.489677,41.66572599906],[-71.489777,41.66562099906],[-71.489868,41.66550999906],[-71.489952,41.66539599906],[-71.490044,41.66524999906],[-71.490127,41.66509499906],[-71.490196,41.66494499906],[-71.490234,41.66483199906],[-71.490265,41.66471799906],[-71.490288,41.66460499906],[-71.49031,41.66443799906],[-71.490326,41.66427099906],[-71.490326,41.66410899906]]]}}"}, +{"type": "blockgroup", "typeId": 222014, "areaId": 29266, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.46331,41.68539199906],[-71.463257,41.68514999906],[-71.463211,41.68506099906],[-71.46312,41.68487399906],[-71.462799,41.68432199906],[-71.462746,41.68423299906],[-71.462669,41.68409999906],[-71.462555,41.68388599906],[-71.462387,41.68353399906],[-71.462196,41.68318699906],[-71.46212,41.68304499906],[-71.461594,41.68224099906],[-71.461517,41.68213899906],[-71.461319,41.68187699906],[-71.460777,41.68095199906],[-71.460236,41.68006299906],[-71.460045,41.67978399906],[-71.459335,41.67876299906],[-71.458948,41.67809299906],[-71.458916,41.67803799906],[-71.458511,41.67727699906],[-71.458267,41.67674599906],[-71.458161,41.67621299906],[-71.458061,41.67569199906],[-71.458046,41.67558499906],[-71.458031,41.67543199906],[-71.458008,41.67525199906],[-71.457977,41.67501899906],[-71.45797,41.67484299906],[-71.457932,41.67435799906],[-71.457916,41.67406999906],[-71.457848,41.67293199906],[-71.457848,41.67207599906],[-71.456383,41.67212099906],[-71.455986,41.67213399906],[-71.454949,41.67220599906],[-71.454193,41.67228499906],[-71.453743,41.67234899906],[-71.453156,41.67239699906],[-71.452736,41.67241499906],[-71.452362,41.67243199906],[-71.451569,41.67242199906],[-71.451323,41.67241999906],[-71.451103,41.67241899906],[-71.450752,41.67243499906],[-71.450569,41.67246099906],[-71.450378,41.67253299906],[-71.450111,41.67264199906],[-71.449791,41.67268099906],[-71.449372,41.67271199906],[-71.44902,41.67272899906],[-71.448624,41.67274199906],[-71.448341,41.67274799906],[-71.448097,41.67276199906],[-71.448128,41.67318399906],[-71.448204,41.67385399906],[-71.448342,41.67494999906],[-71.448349,41.67502199906],[-71.448357,41.67507999906],[-71.448425,41.67573099906],[-71.448435,41.67582699906],[-71.448494,41.67635999906],[-71.448506,41.67647899906],[-71.44851,41.67652299906],[-71.448525,41.67667799906],[-71.448534,41.67676899906],[-71.448555,41.67697599906],[-71.44857,41.67708399906],[-71.448822,41.67799699906],[-71.449005,41.67853399906],[-71.449074,41.67871699906],[-71.44921,41.67901899906],[-71.449236,41.67907799906],[-71.449364,41.67935899906],[-71.449387,41.67940799906],[-71.449417,41.67947499906],[-71.449692,41.68007199906],[-71.449743,41.68018899906],[-71.449974,41.68071499906],[-71.450256,41.68140199906],[-71.450403,41.68166699906],[-71.450691,41.68218599906],[-71.45087,41.68248699906],[-71.451034,41.68276399906],[-71.45108,41.68282099906],[-71.45138,41.68320499906],[-71.45166,41.68356499906],[-71.45224,41.68417899906],[-71.452293,41.68423199906],[-71.452377,41.68431999906],[-71.452568,41.68452299906],[-71.452591,41.68454499906],[-71.45359,41.68553699906],[-71.453865,41.68582399906],[-71.453918,41.68582699906],[-71.45414,41.68580899906],[-71.454483,41.68574299906],[-71.454758,41.68570599906],[-71.455009,41.68567799906],[-71.455658,41.68564199906],[-71.45591,41.68562699906],[-71.456161,41.68561299906],[-71.456375,41.68559899906],[-71.456413,41.68559799906],[-71.457077,41.68555699906],[-71.457397,41.68556399906],[-71.457573,41.68555999906],[-71.457809,41.68556899906],[-71.458161,41.68561099906],[-71.458542,41.68567899906],[-71.458954,41.68572399906],[-71.459335,41.68574799906],[-71.459496,41.68574899906],[-71.459869,41.68569599906],[-71.459923,41.68568999906],[-71.46035,41.68559099906],[-71.460861,41.68548499906],[-71.461311,41.68541699906],[-71.461535,41.68540499906],[-71.461838,41.68538799906],[-71.462402,41.68537599906],[-71.462845,41.68537099906],[-71.462974,41.68537699906],[-71.46331,41.68539199906]]]}}"}, +{"type": "blockgroup", "typeId": 222015, "areaId": 29267, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.466911,41.69488899906],[-71.466888,41.69475399906],[-71.466743,41.69449599906],[-71.466538,41.69422999906],[-71.466295,41.69401899906],[-71.46579,41.69357999906],[-71.465645,41.69337999906],[-71.465569,41.69299899906],[-71.465515,41.69251799906],[-71.465507,41.69249099906],[-71.465401,41.69181399906],[-71.465393,41.69163399906],[-71.465434,41.69137199906],[-71.465454,41.69124099906],[-71.465542,41.69090799906],[-71.465576,41.69078299906],[-71.46553,41.68981199906],[-71.465515,41.68960899906],[-71.465492,41.68923199906],[-71.465462,41.68892199906],[-71.465462,41.68879999906],[-71.465431,41.68840399906],[-71.465408,41.68800899906],[-71.465378,41.68763499906],[-71.465347,41.68710899906],[-71.46534,41.68693399906],[-71.465301,41.68647999906],[-71.465218,41.68599499906],[-71.465187,41.68565799906],[-71.465141,41.68526699906],[-71.464752,41.68532999906],[-71.464249,41.68539499906],[-71.464165,41.68539599906],[-71.463875,41.68541199906],[-71.463569,41.68540499906],[-71.46331,41.68539199906],[-71.462974,41.68537699906],[-71.462845,41.68537099906],[-71.462402,41.68537599906],[-71.461838,41.68538799906],[-71.461535,41.68540499906],[-71.461311,41.68541699906],[-71.460861,41.68548499906],[-71.46035,41.68559099906],[-71.459923,41.68568999906],[-71.459869,41.68569599906],[-71.459496,41.68574899906],[-71.459335,41.68574799906],[-71.458954,41.68572399906],[-71.458542,41.68567899906],[-71.458161,41.68561099906],[-71.457809,41.68556899906],[-71.457573,41.68555999906],[-71.457397,41.68556399906],[-71.457077,41.68555699906],[-71.456413,41.68559799906],[-71.456375,41.68559899906],[-71.456161,41.68561299906],[-71.45591,41.68562699906],[-71.455658,41.68564199906],[-71.455009,41.68567799906],[-71.454758,41.68570599906],[-71.454483,41.68574299906],[-71.45414,41.68580899906],[-71.453918,41.68582699906],[-71.453865,41.68582399906],[-71.454018,41.68596899906],[-71.454147,41.68616499906],[-71.454452,41.68663099906],[-71.454819,41.68710499906],[-71.454979,41.68731299906],[-71.45536,41.68785399906],[-71.455444,41.68803699906],[-71.455689,41.68855899906],[-71.455704,41.68863499906],[-71.455879,41.68935199906],[-71.455956,41.68960699906],[-71.456062,41.68999599906],[-71.456154,41.69030499906],[-71.45623,41.69063199906],[-71.456261,41.69077099906],[-71.456262,41.69079199906],[-71.456273,41.69092999906],[-71.456314,41.69146399906],[-71.456306,41.69180999906],[-71.456299,41.69232799906],[-71.456314,41.69258499906],[-71.456329,41.69287299906],[-71.456367,41.69312899906],[-71.45639,41.69329499906],[-71.456479,41.69350499906],[-71.456589,41.69376299906],[-71.456711,41.69394499906],[-71.456886,41.69420299906],[-71.457581,41.69490799906],[-71.457642,41.69496599906],[-71.458198,41.69547199906],[-71.458649,41.69589899906],[-71.458862,41.69618199906],[-71.458923,41.69626199906],[-71.459152,41.69677999906],[-71.459198,41.69688199906],[-71.459297,41.69707399906],[-71.45961,41.69697699906],[-71.459762,41.69692899906],[-71.459923,41.69687999906],[-71.460144,41.69681199906],[-71.460762,41.69658699906],[-71.460914,41.69661599906],[-71.461036,41.69660399906],[-71.461166,41.69654699906],[-71.461319,41.69649899906],[-71.461502,41.69649099906],[-71.461647,41.69653699906],[-71.461708,41.69661699906],[-71.461662,41.69672599906],[-71.461578,41.69685399906],[-71.461525,41.69698499906],[-71.46154,41.69703899906],[-71.461678,41.69706299906],[-71.462395,41.69732299906],[-71.462852,41.69751099906],[-71.463028,41.69762399906],[-71.463127,41.69783399906],[-71.463298,41.69833799906],[-71.463913,41.69804699906],[-71.464477,41.69784099906],[-71.464508,41.69783099906],[-71.464689,41.69778399906],[-71.464737,41.69777199906],[-71.464882,41.69773299906],[-71.465248,41.69768499906],[-71.465561,41.69766399906],[-71.465752,41.69767399906],[-71.46598,41.69768599906],[-71.466057,41.69768999906],[-71.466499,41.69772499906],[-71.46653,41.69745399906],[-71.466583,41.69702099906],[-71.466667,41.69650599906],[-71.466728,41.69605899906],[-71.466774,41.69575599906],[-71.46682,41.69548899906],[-71.466881,41.69502899906],[-71.466911,41.69488899906]]]}}"}, +{"type": "blockgroup", "typeId": 222021, "areaId": 29268, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.500723,41.68501599906],[-71.500569,41.68371599906],[-71.500409,41.68247899906],[-71.500335,41.68186899906],[-71.5003,41.68158899906],[-71.500238,41.68108799906],[-71.500136,41.68022799906],[-71.500062,41.67948099906],[-71.500052,41.67921199906],[-71.500039,41.67881299906],[-71.500011,41.67773599906],[-71.499997,41.67744099906],[-71.500001,41.67738999906],[-71.5,41.67732999906],[-71.499999,41.67720499906],[-71.499991,41.67687199906],[-71.499975,41.67659299906],[-71.499931,41.67556099906],[-71.499907,41.67494499906],[-71.499903,41.67487199906],[-71.499868,41.67425099906],[-71.499836,41.67377599906],[-71.499759,41.67291399906],[-71.499652,41.67170599906],[-71.499701,41.67138999906],[-71.499702,41.67107899906],[-71.499672,41.66986799906],[-71.499611,41.66881599906],[-71.499543,41.66766599906],[-71.499532,41.66743699906],[-71.499481,41.66664799906],[-71.499473,41.66650899906],[-71.499455,41.66621599906],[-71.499451,41.66612199906],[-71.499428,41.66585699906],[-71.499405,41.66572699906],[-71.499367,41.66554299906],[-71.499298,41.66533699906],[-71.49923,41.66518099906],[-71.499145,41.66500299906],[-71.498932,41.66460699906],[-71.49897,41.66457899906],[-71.499016,41.66454199906],[-71.499031,41.66452299906],[-71.499054,41.66450899906],[-71.4991,41.66448999906],[-71.499123,41.66447599906],[-71.499199,41.66445699906],[-71.49923,41.66444299906],[-71.49926,41.66442399906],[-71.499283,41.66440499906],[-71.499306,41.66438199906],[-71.499321,41.66434599906],[-71.499321,41.66426099906],[-71.499313,41.66416599906],[-71.499283,41.66397299906],[-71.499275,41.66386099906],[-71.49926,41.66375299906],[-71.499252,41.66364499906],[-71.499237,41.66336599906],[-71.499228,41.66304399906],[-71.499225,41.66294799906],[-71.498165,41.66297599906],[-71.498043,41.66297899906],[-71.497822,41.66298599906],[-71.497119,41.66300399906],[-71.494601,41.66307199906],[-71.494222,41.66308199906],[-71.494093,41.66308399906],[-71.493618,41.66309899906],[-71.492996,41.66311799906],[-71.492166,41.66313799906],[-71.490578,41.66318099906],[-71.490386,41.66318699906],[-71.490206,41.66319299906],[-71.490208,41.66320799906],[-71.49028,41.66364199906],[-71.490318,41.66395199906],[-71.490326,41.66410899906],[-71.490326,41.66427099906],[-71.49031,41.66443799906],[-71.490288,41.66460499906],[-71.490265,41.66471799906],[-71.490234,41.66483199906],[-71.490196,41.66494499906],[-71.490127,41.66509499906],[-71.490044,41.66524999906],[-71.489952,41.66539599906],[-71.489868,41.66550999906],[-71.489777,41.66562099906],[-71.489677,41.66572599906],[-71.489586,41.66581399906],[-71.489387,41.66597999906],[-71.489258,41.66608199906],[-71.488991,41.66626299906],[-71.488785,41.66636699906],[-71.488587,41.66646999906],[-71.48838,41.66656499906],[-71.488106,41.66667899906],[-71.487824,41.66678399906],[-71.487541,41.66689399906],[-71.487287,41.66699199906],[-71.487244,41.66700799906],[-71.486974,41.66711899906],[-71.486656,41.66723699906],[-71.486382,41.66734199906],[-71.486359,41.66735599906],[-71.486053,41.66747099906],[-71.485969,41.66750399906],[-71.485756,41.66758499906],[-71.485481,41.66769499906],[-71.485199,41.66779999906],[-71.484924,41.66790999906],[-71.484619,41.66803799906],[-71.484314,41.66816999906],[-71.484024,41.66831199906],[-71.483582,41.66855099906],[-71.483162,41.66881199906],[-71.482735,41.66907399906],[-71.482483,41.66921399906],[-71.481941,41.66957299906],[-71.48177,41.66969599906],[-71.481415,41.66995299906],[-71.480927,41.67035099906],[-71.480446,41.67076699906],[-71.480391,41.67082099906],[-71.479996,41.67120399906],[-71.479576,41.67165899906],[-71.479294,41.67200299906],[-71.479019,41.67234699906],[-71.478768,41.67270799906],[-71.4785,41.67313699906],[-71.478051,41.67395099906],[-71.478012,41.67402099906],[-71.477791,41.67458899906],[-71.477577,41.67515599906],[-71.477508,41.67536499906],[-71.477394,41.67573199906],[-71.477371,41.67584499906],[-71.477295,41.67623799906],[-71.477219,41.67675299906],[-71.477165,41.67726799906],[-71.477142,41.67784499906],[-71.477158,41.67899699906],[-71.477165,41.68099199906],[-71.477196,41.68423799906],[-71.477196,41.68521499906],[-71.477379,41.68520699906],[-71.477524,41.68519899906],[-71.477989,41.68517999906],[-71.478539,41.68514999906],[-71.479118,41.68512899906],[-71.479225,41.68512199906],[-71.479393,41.68511799906],[-71.479751,41.68511099906],[-71.479874,41.68511199906],[-71.479927,41.68511599906],[-71.47998,41.68511499906],[-71.480087,41.68512099906],[-71.480194,41.68513299906],[-71.480308,41.68513899906],[-71.480415,41.68514599906],[-71.480675,41.68516699906],[-71.480804,41.68518199906],[-71.480906,41.68519899906],[-71.481056,41.68522199906],[-71.481178,41.68525099906],[-71.481262,41.68527599906],[-71.481354,41.68530599906],[-71.481438,41.68533999906],[-71.481537,41.68539199906],[-71.481735,41.68548699906],[-71.481842,41.68552899906],[-71.481941,41.68556299906],[-71.482056,41.68558799906],[-71.482162,41.68560299906],[-71.482269,41.68560999906],[-71.482697,41.68561899906],[-71.482818,41.68561599906],[-71.482941,41.68561399906],[-71.483063,41.68561099906],[-71.483216,41.68561199906],[-71.48336,41.68561399906],[-71.483513,41.68560599906],[-71.483833,41.68559899906],[-71.483993,41.68559099906],[-71.484222,41.68558999906],[-71.484291,41.68558399906],[-71.485229,41.68556399906],[-71.485428,41.68556399906],[-71.485619,41.68555599906],[-71.485817,41.68554199906],[-71.485962,41.68552599906],[-71.486107,41.68551799906],[-71.486252,41.68549699906],[-71.486397,41.68547999906],[-71.487061,41.68538499906],[-71.487244,41.68536299906],[-71.487396,41.68535099906],[-71.487686,41.68532599906],[-71.487816,41.68532399906],[-71.488075,41.68533099906],[-71.488521,41.68536099906],[-71.488648,41.68536899906],[-71.489105,41.68537699906],[-71.489624,41.68536499906],[-71.490563,41.68537199906],[-71.491005,41.68535799906],[-71.491661,41.68534399906],[-71.492241,41.68534499906],[-71.492645,41.68533599906],[-71.492706,41.68533499906],[-71.492922,41.68532299906],[-71.492981,41.68531999906],[-71.493149,41.68530699906],[-71.493477,41.68527699906],[-71.493591,41.68526999906],[-71.494171,41.68522599906],[-71.495201,41.68518099906],[-71.495678,41.68516299906],[-71.495813,41.68515899906],[-71.496124,41.68514799906],[-71.496834,41.68511899906],[-71.496977,41.68511599906],[-71.497612,41.68510199906],[-71.498161,41.68509899906],[-71.498367,41.68509499906],[-71.498604,41.68509799906],[-71.499245,41.68507599906],[-71.499428,41.68507199906],[-71.500633,41.68501799906],[-71.500723,41.68501599906]]]}}"}, +{"type": "blockgroup", "typeId": 222022, "areaId": 29269, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.501038,41.68801299906],[-71.50103,41.68758999906],[-71.500885,41.68594899906],[-71.500723,41.68501599906],[-71.500633,41.68501799906],[-71.499428,41.68507199906],[-71.499245,41.68507599906],[-71.498604,41.68509799906],[-71.498367,41.68509499906],[-71.498161,41.68509899906],[-71.497612,41.68510199906],[-71.496977,41.68511599906],[-71.496834,41.68511899906],[-71.496124,41.68514799906],[-71.495813,41.68515899906],[-71.495678,41.68516299906],[-71.495201,41.68518099906],[-71.494171,41.68522599906],[-71.493591,41.68526999906],[-71.493477,41.68527699906],[-71.493149,41.68530699906],[-71.492981,41.68531999906],[-71.492922,41.68532299906],[-71.492706,41.68533499906],[-71.492645,41.68533599906],[-71.492241,41.68534499906],[-71.491661,41.68534399906],[-71.491005,41.68535799906],[-71.490563,41.68537199906],[-71.489624,41.68536499906],[-71.489105,41.68537699906],[-71.488648,41.68536899906],[-71.488521,41.68536099906],[-71.488075,41.68533099906],[-71.487816,41.68532399906],[-71.487686,41.68532599906],[-71.487396,41.68535099906],[-71.487244,41.68536299906],[-71.487061,41.68538499906],[-71.486397,41.68547999906],[-71.486252,41.68549699906],[-71.486107,41.68551799906],[-71.485962,41.68552599906],[-71.485817,41.68554199906],[-71.485619,41.68555599906],[-71.485428,41.68556399906],[-71.485229,41.68556399906],[-71.484291,41.68558399906],[-71.484222,41.68558999906],[-71.483993,41.68559099906],[-71.483833,41.68559899906],[-71.483513,41.68560599906],[-71.48336,41.68561399906],[-71.483216,41.68561199906],[-71.483063,41.68561099906],[-71.482941,41.68561399906],[-71.482818,41.68561599906],[-71.482697,41.68561899906],[-71.482269,41.68560999906],[-71.482162,41.68560299906],[-71.482056,41.68558799906],[-71.481941,41.68556299906],[-71.481842,41.68552899906],[-71.481735,41.68548699906],[-71.481537,41.68539199906],[-71.481438,41.68533999906],[-71.481354,41.68530599906],[-71.481262,41.68527599906],[-71.481178,41.68525099906],[-71.481056,41.68522199906],[-71.480906,41.68519899906],[-71.480804,41.68518199906],[-71.480675,41.68516699906],[-71.480415,41.68514599906],[-71.480308,41.68513899906],[-71.480194,41.68513299906],[-71.480087,41.68512099906],[-71.47998,41.68511499906],[-71.479927,41.68511599906],[-71.479874,41.68511199906],[-71.479751,41.68511099906],[-71.479393,41.68511799906],[-71.479225,41.68512199906],[-71.479118,41.68512899906],[-71.478539,41.68514999906],[-71.477989,41.68517999906],[-71.477524,41.68519899906],[-71.477379,41.68520699906],[-71.477196,41.68521499906],[-71.477218,41.68810099906],[-71.477211,41.68869099906],[-71.477203,41.68927199906],[-71.477173,41.68985799906],[-71.477127,41.69037299906],[-71.477058,41.69088799906],[-71.477005,41.69121799906],[-71.476982,41.69139799906],[-71.476906,41.69183199906],[-71.476814,41.69226599906],[-71.476723,41.69270499906],[-71.476593,41.69317599906],[-71.476456,41.69364799906],[-71.476326,41.69411899906],[-71.476014,41.69508799906],[-71.475898,41.69545099906],[-71.475239,41.69744299906],[-71.475204,41.69754699906],[-71.475121,41.69785499906],[-71.474983,41.69828599906],[-71.474785,41.69891199906],[-71.474681,41.69923499906],[-71.474537,41.69968399906],[-71.474411,41.70007699906],[-71.473961,41.70145599906],[-71.47377,41.70204499906],[-71.473709,41.70225299906],[-71.47403,41.70243999906],[-71.474129,41.70249199906],[-71.474251,41.70255299906],[-71.475052,41.70297199906],[-71.475212,41.70305399906],[-71.4758,41.70336099906],[-71.476159,41.70355099906],[-71.476448,41.70370299906],[-71.476746,41.70385399906],[-71.477699,41.70435199906],[-71.477951,41.70448099906],[-71.478589,41.70480999906],[-71.479584,41.70532399906],[-71.479747,41.70540699906],[-71.480133,41.70559999906],[-71.480606,41.70584199906],[-71.481812,41.70642399906],[-71.482125,41.70657499906],[-71.482559,41.70678199906],[-71.483727,41.70733799906],[-71.483841,41.70739399906],[-71.484314,41.70761299906],[-71.485176,41.70802699906],[-71.485962,41.70840599906],[-71.486473,41.70864699906],[-71.487259,41.70903999906],[-71.487311,41.70906299906],[-71.487503,41.70914699906],[-71.48761,41.70918499906],[-71.487724,41.70922799906],[-71.487983,41.70929899906],[-71.488113,41.70932799906],[-71.488846,41.70945999906],[-71.48941,41.70956999906],[-71.489665,41.70961799906],[-71.49041,41.70975499906],[-71.490486,41.70976899906],[-71.490861,41.70910699906],[-71.491416,41.70817199906],[-71.49174,41.70764599906],[-71.491839,41.70747799906],[-71.492037,41.70711599906],[-71.492158,41.70690099906],[-71.492403,41.70640699906],[-71.493412,41.70468399906],[-71.494816,41.70229099906],[-71.495229,41.70158199906],[-71.495543,41.70102899906],[-71.495867,41.70044399906],[-71.496052,41.70007899906],[-71.496344,41.69944099906],[-71.496481,41.69911799906],[-71.496617,41.69894499906],[-71.496811,41.69854799906],[-71.496948,41.69824699906],[-71.49764,41.69670899906],[-71.498413,41.69494699906],[-71.498589,41.69455099906],[-71.499031,41.69350099906],[-71.49939,41.69268699906],[-71.499626,41.69215999906],[-71.499741,41.69188699906],[-71.499843,41.69165499906],[-71.500229,41.69078699906],[-71.500603,41.68996799906],[-71.500771,41.68955399906],[-71.500854,41.68929099906],[-71.500961,41.68889699906],[-71.500969,41.68884299906],[-71.500991,41.68870599906],[-71.500999,41.68866199906],[-71.501022,41.68844599906],[-71.50103,41.68826099906],[-71.501038,41.68801299906]]]}}"}, +{"type": "blockgroup", "typeId": 223001, "areaId": 29270, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.518913,41.69589899906],[-71.518532,41.69592599906],[-71.518298,41.69593799906],[-71.517859,41.69596099906],[-71.51738,41.69598699906],[-71.517342,41.69599199906],[-71.517159,41.69600099906],[-71.5168,41.69601299906],[-71.516594,41.69601699906],[-71.516335,41.69602299906],[-71.515885,41.69602899906],[-71.515419,41.69603899906],[-71.514977,41.69603999906],[-71.514712,41.69604199906],[-71.514544,41.69604299906],[-71.514252,41.69604599906],[-71.514177,41.69604599906],[-71.513443,41.69605099906],[-71.512558,41.69606999906],[-71.512184,41.69607399906],[-71.511742,41.69608799906],[-71.511574,41.69608699906],[-71.511216,41.69610399906],[-71.509148,41.69620299906],[-71.508606,41.69622799906],[-71.508263,41.69624499906],[-71.507942,41.69626499906],[-71.507721,41.69628399906],[-71.507347,41.69633699906],[-71.506904,41.69639599906],[-71.50679,41.69641199906],[-71.506462,41.69645499906],[-71.506332,41.69645799906],[-71.506241,41.69645999906],[-71.506142,41.69646699906],[-71.505776,41.69646999906],[-71.5056,41.69646099906],[-71.505447,41.69644099906],[-71.504883,41.69640899906],[-71.50473,41.69641199906],[-71.504333,41.69639799906],[-71.504082,41.69638999906],[-71.5037,41.69639399906],[-71.503342,41.69641499906],[-71.502884,41.69642499906],[-71.502792,41.69643199906],[-71.501869,41.69646999906],[-71.501679,41.69647399906],[-71.501521,41.69479099906],[-71.501449,41.69410599906],[-71.501373,41.69317099906],[-71.501343,41.69289699906],[-71.501327,41.69270299906],[-71.501297,41.69205999906],[-71.501258,41.69149399906],[-71.501251,41.69137699906],[-71.501198,41.69062999906],[-71.501167,41.69013599906],[-71.50116,41.68995999906],[-71.501144,41.68973099906],[-71.501129,41.68934799906],[-71.501137,41.68893399906],[-71.501129,41.68862299906],[-71.501113,41.68834699906],[-71.501106,41.68820999906],[-71.501068,41.68789399906],[-71.50103,41.68758999906],[-71.501038,41.68801299906],[-71.50103,41.68826099906],[-71.501022,41.68844599906],[-71.500999,41.68866199906],[-71.500991,41.68870599906],[-71.500969,41.68884299906],[-71.500961,41.68889699906],[-71.500854,41.68929099906],[-71.500771,41.68955399906],[-71.500603,41.68996799906],[-71.500229,41.69078699906],[-71.499843,41.69165499906],[-71.499741,41.69188699906],[-71.499626,41.69215999906],[-71.49939,41.69268699906],[-71.499031,41.69350099906],[-71.498589,41.69455099906],[-71.498413,41.69494699906],[-71.49764,41.69670899906],[-71.496948,41.69824699906],[-71.496811,41.69854799906],[-71.496617,41.69894499906],[-71.496481,41.69911799906],[-71.496344,41.69944099906],[-71.496052,41.70007899906],[-71.495867,41.70044399906],[-71.495543,41.70102899906],[-71.495229,41.70158199906],[-71.494816,41.70229099906],[-71.493412,41.70468399906],[-71.492403,41.70640699906],[-71.492158,41.70690099906],[-71.492037,41.70711599906],[-71.491839,41.70747799906],[-71.49174,41.70764599906],[-71.491416,41.70817199906],[-71.490861,41.70910699906],[-71.490486,41.70976899906],[-71.491287,41.70992099906],[-71.492477,41.71015199906],[-71.494888,41.71060399906],[-71.495267,41.71067399906],[-71.495705,41.71075699906],[-71.497231,41.71105299906],[-71.499008,41.71139199906],[-71.499321,41.71143899906],[-71.500252,41.71156299906],[-71.500443,41.71158599906],[-71.500507,41.71158899906],[-71.500786,41.71160599906],[-71.500908,41.71157599906],[-71.501076,41.71154999906],[-71.501267,41.71153199906],[-71.502365,41.71147199906],[-71.50338,41.71142799906],[-71.503502,41.71142899906],[-71.503568,41.71142699906],[-71.504745,41.71139799906],[-71.504883,41.71138599906],[-71.505005,41.71135599906],[-71.505188,41.71130699906],[-71.505294,41.71123999906],[-71.505404,41.71115399906],[-71.505604,41.71098099906],[-71.505688,41.71090099906],[-71.505821,41.71077599906],[-71.505966,41.71060599906],[-71.506088,41.71044099906],[-71.506187,41.71029499906],[-71.506256,41.71019899906],[-71.506584,41.70968299906],[-71.506691,41.70948199906],[-71.507233,41.70925899906],[-71.507664,41.70907499906],[-71.509277,41.70838999906],[-71.509598,41.70826099906],[-71.510002,41.70808599906],[-71.510391,41.70793799906],[-71.510689,41.70780999906],[-71.510872,41.70773399906],[-71.510971,41.70768699906],[-71.511063,41.70764399906],[-71.511475,41.70745499906],[-71.511904,41.70722999906],[-71.511971,41.70719599906],[-71.512192,41.70706999906],[-71.512482,41.70689699906],[-71.512634,41.70678999906],[-71.512764,41.70667499906],[-71.512795,41.70663799906],[-71.512924,41.70645099906],[-71.513001,41.70631399906],[-71.513062,41.70621299906],[-71.51313,41.70608999906],[-71.513191,41.70596699906],[-71.51326,41.70583099906],[-71.513336,41.70569399906],[-71.513428,41.70551599906],[-71.513626,41.70517399906],[-71.514038,41.70447199906],[-71.514329,41.70395699906],[-71.514507,41.70364099906],[-71.514763,41.70319999906],[-71.514856,41.70303699906],[-71.515053,41.70269299906],[-71.515175,41.70248799906],[-71.515556,41.70179099906],[-71.51574,41.70146299906],[-71.515953,41.70107499906],[-71.51608,41.70084899906],[-71.516167,41.70069699906],[-71.516418,41.70026299906],[-71.516701,41.69977099906],[-71.516815,41.69958399906],[-71.517029,41.69920099906],[-71.517174,41.69895399906],[-71.517265,41.69878999906],[-71.517433,41.69849799906],[-71.517517,41.69834299906],[-71.517662,41.69809299906],[-71.517807,41.69785499906],[-71.517998,41.69750899906],[-71.51828,41.69701199906],[-71.518394,41.69680699906],[-71.518631,41.69639199906],[-71.518844,41.69602699906],[-71.518913,41.69589899906]]]}}"}, +{"type": "blockgroup", "typeId": 223002, "areaId": 29271, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.500786,41.71160599906],[-71.500507,41.71158899906],[-71.500443,41.71158599906],[-71.500252,41.71156299906],[-71.499321,41.71143899906],[-71.499008,41.71139199906],[-71.497231,41.71105299906],[-71.495705,41.71075699906],[-71.495267,41.71067399906],[-71.494888,41.71060399906],[-71.492477,41.71015199906],[-71.491287,41.70992099906],[-71.490486,41.70976899906],[-71.490083,41.71045399906],[-71.489897,41.71078099906],[-71.48982,41.71092999906],[-71.489732,41.71107999906],[-71.489383,41.71175399906],[-71.489053,41.71254199906],[-71.488567,41.71369599906],[-71.488444,41.71400199906],[-71.488233,41.71452999906],[-71.488096,41.71486299906],[-71.48797,41.71525099906],[-71.487949,41.71529299906],[-71.487942,41.71531199906],[-71.487756,41.71572799906],[-71.487619,41.71601199906],[-71.487452,41.71632099906],[-71.487366,41.71647199906],[-71.487053,41.71701499906],[-71.486771,41.71745299906],[-71.486479,41.71785899906],[-71.485962,41.71848399906],[-71.48539,41.71903199906],[-71.484718,41.71962299906],[-71.484329,41.71998699906],[-71.483849,41.72046099906],[-71.483472,41.72085799906],[-71.483315,41.72103099906],[-71.483177,41.72118699906],[-71.483048,41.72133399906],[-71.482918,41.72147199906],[-71.482752,41.72165999906],[-71.482605,41.72182599906],[-71.482529,41.72190799906],[-71.482269,41.72219299906],[-71.482208,41.72226199906],[-71.48201,41.72248299906],[-71.48185,41.72267099906],[-71.481813,41.72271199906],[-71.481728,41.72280799906],[-71.481685,41.72286099906],[-71.481644,41.72291399906],[-71.481453,41.72313899906],[-71.4814,41.72319799906],[-71.481361,41.72324499906],[-71.481252,41.72337599906],[-71.48085,41.72384499906],[-71.480608,41.72419699906],[-71.480824,41.72447699906],[-71.481376,41.72515299906],[-71.481544,41.72534799906],[-71.482689,41.72675599906],[-71.483237,41.72742799906],[-71.483398,41.72762699906],[-71.484154,41.72853799906],[-71.484444,41.72889599906],[-71.484781,41.72872399906],[-71.48481,41.72861799906],[-71.485054,41.72779299906],[-71.485481,41.72639299906],[-71.485497,41.72636099906],[-71.485507,41.72632799906],[-71.48555,41.72631899906],[-71.485603,41.72628699906],[-71.485702,41.72622099906],[-71.485764,41.72617499906],[-71.485802,41.72612499906],[-71.485863,41.72606499906],[-71.485901,41.72601899906],[-71.485954,41.72596799906],[-71.486046,41.72586699906],[-71.486099,41.72581199906],[-71.486145,41.72576099906],[-71.486221,41.72566099906],[-71.486275,41.72559199906],[-71.486328,41.72548699906],[-71.486366,41.72542799906],[-71.486412,41.72538199906],[-71.486473,41.72532699906],[-71.486526,41.72528899906],[-71.48658,41.72523399906],[-71.486634,41.72518299906],[-71.486687,41.72512399906],[-71.486748,41.72506799906],[-71.486801,41.72500399906],[-71.486862,41.72493499906],[-71.486931,41.72487099906],[-71.486984,41.72480199906],[-71.487045,41.72473299906],[-71.487106,41.72467299906],[-71.487167,41.72461799906],[-71.487221,41.72455799906],[-71.487267,41.72451199906],[-71.487327,41.72444299906],[-71.487389,41.72437899906],[-71.4879,41.72394499906],[-71.487984,41.72388399906],[-71.488037,41.72384299906],[-71.488098,41.72379199906],[-71.488159,41.72374499906],[-71.48822,41.72370399906],[-71.488273,41.72365699906],[-71.488327,41.72361599906],[-71.488418,41.72352399906],[-71.488472,41.72348199906],[-71.488548,41.72343499906],[-71.488617,41.72337499906],[-71.488754,41.72326399906],[-71.488808,41.72322299906],[-71.488861,41.72317199906],[-71.48893,41.72311199906],[-71.489082,41.72299999906],[-71.489102,41.72298599906],[-71.489158,41.72294899906],[-71.489235,41.72290299906],[-71.489327,41.72283999906],[-71.489426,41.72277199906],[-71.489494,41.72273899906],[-71.489581,41.72269499906],[-71.489655,41.72264599906],[-71.4897,41.72260399906],[-71.489754,41.72256299906],[-71.489807,41.72252499906],[-71.489868,41.72248399906],[-71.489929,41.72242799906],[-71.48999,41.72236799906],[-71.490036,41.72230399906],[-71.490074,41.72224899906],[-71.490112,41.72218599906],[-71.490151,41.72213099906],[-71.490173,41.72207199906],[-71.490189,41.72200799906],[-71.490196,41.72194499906],[-71.490211,41.72182799906],[-71.490227,41.72171499906],[-71.490227,41.72165199906],[-71.490257,41.72153399906],[-71.490273,41.72146199906],[-71.49028,41.72140299906],[-71.49028,41.72122699906],[-71.490272,41.72117299906],[-71.490257,41.72110199906],[-71.490234,41.72102999906],[-71.490219,41.72094899906],[-71.490196,41.72087299906],[-71.49012,41.72064799906],[-71.490059,41.72045299906],[-71.490036,41.72038599906],[-71.490013,41.72032299906],[-71.48999,41.72026499906],[-71.48996,41.72019899906],[-71.489922,41.72013599906],[-71.489861,41.72000299906],[-71.48983,41.71992699906],[-71.489807,41.71985099906],[-71.489776,41.71977899906],[-71.489769,41.71971199906],[-71.489754,41.71964899906],[-71.489746,41.71959099906],[-71.489731,41.71943799906],[-71.489731,41.71897899906],[-71.489738,41.71890199906],[-71.489754,41.71882999906],[-71.489776,41.71875699906],[-71.489792,41.71867599906],[-71.489815,41.71859399906],[-71.489845,41.71852099906],[-71.489883,41.71846199906],[-71.489914,41.71839799906],[-71.489952,41.71834299906],[-71.489983,41.71827999906],[-71.490028,41.71821999906],[-71.490066,41.71816099906],[-71.490105,41.71811499906],[-71.490165,41.71807299906],[-71.490227,41.71803599906],[-71.490288,41.71800299906],[-71.490349,41.71796099906],[-71.490417,41.71792399906],[-71.490471,41.71788599906],[-71.490539,41.71782599906],[-71.490585,41.71775799906],[-71.490593,41.71770399906],[-71.490578,41.71762699906],[-71.489876,41.71820599906],[-71.48954,41.71887899906],[-71.48954,41.71941499906],[-71.489494,41.71936699906],[-71.489479,41.71924499906],[-71.489479,41.71893899906],[-71.489495,41.71878999906],[-71.48951,41.71871299906],[-71.489533,41.71865899906],[-71.489571,41.71860399906],[-71.489594,41.71854499906],[-71.48967,41.71842599906],[-71.489716,41.71836699906],[-71.489784,41.71823899906],[-71.489815,41.71818399906],[-71.489868,41.71806199906],[-71.489906,41.71800699906],[-71.489952,41.71794699906],[-71.490013,41.71788299906],[-71.490089,41.71779099906],[-71.490181,41.71769899906],[-71.490234,41.71765699906],[-71.490288,41.71762499906],[-71.490379,41.71758699906],[-71.490463,41.71754899906],[-71.490539,41.71751599906],[-71.490631,41.71749099906],[-71.49073,41.71746699906],[-71.490814,41.71746899906],[-71.490906,41.71746699906],[-71.491012,41.71746899906],[-71.491119,41.71746699906],[-71.491219,41.71747799906],[-71.49131,41.71748999906],[-71.491409,41.71750099906],[-71.491501,41.71750799906],[-71.491585,41.71751599906],[-71.491661,41.71752699906],[-71.491738,41.71752999906],[-71.491821,41.71752799906],[-71.491913,41.71753099906],[-71.492088,41.71755899906],[-71.492172,41.71756999906],[-71.492279,41.71757299906],[-71.492348,41.71759399906],[-71.492417,41.71762399906],[-71.492439,41.71768599906],[-71.49247,41.71774399906],[-71.492531,41.71778299906],[-71.492615,41.71778599906],[-71.492706,41.71776999906],[-71.492821,41.71778099906],[-71.492874,41.71781199906],[-71.492892,41.71782599906],[-71.493338,41.71744999906],[-71.493446,41.71735799906],[-71.493584,41.71723799906],[-71.493889,41.71696599906],[-71.493958,41.71690599906],[-71.494179,41.71666699906],[-71.494629,41.71608499906],[-71.495216,41.71538299906],[-71.495255,41.71533299906],[-71.495334,41.71522699906],[-71.495415,41.71512199906],[-71.49556,41.71494399906],[-71.495834,41.71461799906],[-71.495946,41.71448399906],[-71.496597,41.71370899906],[-71.496773,41.71349899906],[-71.496826,41.71342999906],[-71.496887,41.71336599906],[-71.496948,41.71329699906],[-71.497002,41.71325499906],[-71.497055,41.71320899906],[-71.497116,41.71316699906],[-71.497185,41.71312499906],[-71.497269,41.71306899906],[-71.497437,41.71296599906],[-71.49749,41.71293799906],[-71.497566,41.71290499906],[-71.497734,41.71283799906],[-71.497879,41.71277199906],[-71.497963,41.71273899906],[-71.498311,41.71259399906],[-71.498449,41.71253699906],[-71.498535,41.71250099906],[-71.498918,41.71235199906],[-71.499115,41.71227699906],[-71.499557,41.71210099906],[-71.499649,41.71206299906],[-71.500015,41.71191999906],[-71.500253,41.71182299906],[-71.50032,41.71179599906],[-71.500382,41.71177199906],[-71.500481,41.71172499906],[-71.500557,41.71168699906],[-71.500633,41.71165899906],[-71.500717,41.71162499906],[-71.500786,41.71160599906]]]}}"}, +{"type": "blockgroup", "typeId": 223003, "areaId": 29272, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.484781,41.72872399906],[-71.484444,41.72889599906],[-71.484154,41.72853799906],[-71.483398,41.72762699906],[-71.483237,41.72742799906],[-71.482689,41.72675599906],[-71.481544,41.72534799906],[-71.481376,41.72515299906],[-71.480824,41.72447699906],[-71.480608,41.72419699906],[-71.480514,41.72408299906],[-71.480436,41.72398799906],[-71.479912,41.72335199906],[-71.479065,41.72230699906],[-71.478022,41.72108599906],[-71.477151,41.71998499906],[-71.476953,41.71974699906],[-71.476845,41.71961699906],[-71.474246,41.71636899906],[-71.474052,41.71613799906],[-71.47168,41.71614399906],[-71.471307,41.71616699906],[-71.47127,41.71616499906],[-71.470852,41.71616999906],[-71.470735,41.71654499906],[-71.470688,41.71668799906],[-71.470528,41.71711499906],[-71.470345,41.71755999906],[-71.470149,41.71798199906],[-71.470138,41.71800599906],[-71.469917,41.71844299906],[-71.469597,41.71899899906],[-71.469246,41.71953799906],[-71.469147,41.71967999906],[-71.468864,41.72006799906],[-71.468719,41.72025199906],[-71.468536,41.72047599906],[-71.468193,41.72087099906],[-71.467827,41.72126199906],[-71.467468,41.72160199906],[-71.466904,41.72210099906],[-71.466828,41.72216599906],[-71.466881,41.72220499906],[-71.466949,41.72225799906],[-71.467012,41.72230399906],[-71.467186,41.72242799906],[-71.467453,41.72260199906],[-71.46759,41.72268499906],[-71.467781,41.72280299906],[-71.468163,41.72302899906],[-71.468307,41.72311099906],[-71.468887,41.72344999906],[-71.469757,41.72396199906],[-71.470207,41.72421799906],[-71.470482,41.72437499906],[-71.471291,41.72485699906],[-71.472214,41.72539599906],[-71.472342,41.72548099906],[-71.472708,41.72570099906],[-71.473396,41.72612699906],[-71.473663,41.72628299906],[-71.473663,41.72639099906],[-71.473694,41.72658899906],[-71.473747,41.72681299906],[-71.473854,41.72750799906],[-71.473868,41.72775199906],[-71.473872,41.72780999906],[-71.473877,41.72789999906],[-71.473938,41.72833099906],[-71.473968,41.72850499906],[-71.474014,41.72883799906],[-71.474114,41.72897499906],[-71.474266,41.72924699906],[-71.47441,41.72945599906],[-71.474571,41.72968999906],[-71.474812,41.73007899906],[-71.474907,41.73023199906],[-71.47506,41.73040899906],[-71.475125,41.73047499906],[-71.475212,41.73056299906],[-71.475219,41.73057099906],[-71.475608,41.73086399906],[-71.476021,41.73117699906],[-71.476486,41.73152699906],[-71.476708,41.73169299906],[-71.476815,41.73178899906],[-71.476971,41.73175199906],[-71.477082,41.73172499906],[-71.477686,41.73171099906],[-71.478309,41.73169699906],[-71.479194,41.73167599906],[-71.47976,41.73166299906],[-71.479852,41.73166099906],[-71.480004,41.73165699906],[-71.480111,41.73165399906],[-71.481566,41.73163899906],[-71.481746,41.73163499906],[-71.482072,41.73162599906],[-71.482303,41.73161999906],[-71.483618,41.73161199906],[-71.48391,41.73160299906],[-71.484596,41.72931199906],[-71.484645,41.72914799906],[-71.484713,41.72894099906],[-71.484781,41.72872399906]]]}}"}, +{"type": "blockgroup", "typeId": 223004, "areaId": 29273, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.476815,41.73178899906],[-71.476708,41.73169299906],[-71.476486,41.73152699906],[-71.476021,41.73117699906],[-71.475608,41.73086399906],[-71.475219,41.73057099906],[-71.475212,41.73056299906],[-71.475125,41.73047499906],[-71.47506,41.73040899906],[-71.474907,41.73023199906],[-71.474812,41.73007899906],[-71.474571,41.72968999906],[-71.47441,41.72945599906],[-71.474266,41.72924699906],[-71.474114,41.72897499906],[-71.474014,41.72883799906],[-71.473968,41.72850499906],[-71.473938,41.72833099906],[-71.473877,41.72789999906],[-71.473872,41.72780999906],[-71.473868,41.72775199906],[-71.473854,41.72750799906],[-71.473747,41.72681299906],[-71.473694,41.72658899906],[-71.473663,41.72639099906],[-71.473663,41.72628299906],[-71.473396,41.72612699906],[-71.472708,41.72570099906],[-71.472342,41.72548099906],[-71.472214,41.72539599906],[-71.471291,41.72485699906],[-71.470482,41.72437499906],[-71.470207,41.72421799906],[-71.469757,41.72396199906],[-71.468887,41.72344999906],[-71.468307,41.72311099906],[-71.468163,41.72302899906],[-71.467781,41.72280299906],[-71.46759,41.72268499906],[-71.467453,41.72260199906],[-71.467186,41.72242799906],[-71.467012,41.72230399906],[-71.466949,41.72225799906],[-71.466881,41.72220499906],[-71.466828,41.72216599906],[-71.466705,41.72227599906],[-71.465813,41.72296199906],[-71.464857,41.72367699906],[-71.461373,41.72628099906],[-71.460454,41.72696499906],[-71.459709,41.72751899906],[-71.458542,41.72839099906],[-71.458511,41.72841899906],[-71.458435,41.72846999906],[-71.458412,41.72848799906],[-71.458267,41.72859499906],[-71.456398,41.72998999906],[-71.456345,41.73003199906],[-71.454857,41.73114899906],[-71.4534,41.73223399906],[-71.453292,41.73231299906],[-71.452896,41.73260899906],[-71.452423,41.73297499906],[-71.451943,41.73333699906],[-71.451477,41.73371099906],[-71.451088,41.73403899906],[-71.450707,41.73437599906],[-71.45034,41.73471299906],[-71.449822,41.73520999906],[-71.449333,41.73571599906],[-71.44886,41.73623499906],[-71.448456,41.73670299906],[-71.448074,41.73717899906],[-71.447868,41.73743999906],[-71.447834,41.73748799906],[-71.447806,41.73752799906],[-71.447707,41.73766099906],[-71.44744,41.73801299906],[-71.447188,41.73837899906],[-71.446937,41.73873999906],[-71.446646,41.73920099906],[-71.446631,41.73922799906],[-71.446334,41.73972599906],[-71.446242,41.73989399906],[-71.446198,41.73997899906],[-71.446313,41.73998599906],[-71.446375,41.73998699906],[-71.446449,41.73998599906],[-71.447059,41.73999399906],[-71.447377,41.74000399906],[-71.447802,41.74001799906],[-71.449256,41.74001599906],[-71.449953,41.74002999906],[-71.450563,41.73992599906],[-71.451278,41.73970399906],[-71.451748,41.73945599906],[-71.452097,41.73911699906],[-71.452341,41.73884999906],[-71.452533,41.73856299906],[-71.45276,41.73826299906],[-71.452986,41.73809299906],[-71.453178,41.73796299906],[-71.453492,41.73768899906],[-71.453736,41.73742799906],[-71.453841,41.73719299906],[-71.453911,41.73693199906],[-71.453893,41.73667099906],[-71.453824,41.73647499906],[-71.453754,41.73623999906],[-71.45358,41.73592699906],[-71.453424,41.73562699906],[-71.453215,41.73528799906],[-71.452971,41.73476499906],[-71.45285,41.73433499906],[-71.452867,41.73408699906],[-71.452937,41.73386499906],[-71.453007,41.73370799906],[-71.453129,41.73352599906],[-71.453286,41.73332999906],[-71.45346,41.73318699906],[-71.453669,41.73300399906],[-71.453896,41.73288699906],[-71.454419,41.73262599906],[-71.454907,41.73244299906],[-71.455342,41.73236499906],[-71.455575,41.73238599906],[-71.455718,41.73241299906],[-71.455974,41.73246099906],[-71.456412,41.73238899906],[-71.457599,41.73235499906],[-71.460249,41.73227799906],[-71.460599,41.73226799906],[-71.461058,41.73225499906],[-71.46169,41.73223699906],[-71.462525,41.73221199906],[-71.463032,41.73219799906],[-71.463641,41.73217999906],[-71.464318,41.73215899906],[-71.464999,41.73213899906],[-71.466026,41.73210599906],[-71.466873,41.73208899906],[-71.46713,41.73208399906],[-71.467471,41.73207899906],[-71.467939,41.73207899906],[-71.469139,41.73206199906],[-71.469672,41.73204499906],[-71.472806,41.73195499906],[-71.474739,41.73189999906],[-71.475583,41.73186299906],[-71.476712,41.73181399906],[-71.476815,41.73178899906]]]}}"}, +{"type": "blockgroup", "typeId": 224001, "areaId": 29274, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.458654,41.64926599906],[-71.458625,41.64923299906],[-71.45842,41.64900499906],[-71.458202,41.64871799906],[-71.458115,41.64856899906],[-71.458099,41.64854699906],[-71.458038,41.64848499906],[-71.458008,41.64845899906],[-71.457748,41.64822099906],[-71.457344,41.64789199906],[-71.457096,41.64771999906],[-71.457067,41.64770099906],[-71.456901,41.64758599906],[-71.456398,41.64724999906],[-71.456322,41.64719299906],[-71.455681,41.64676999906],[-71.455048,41.64633799906],[-71.454743,41.64613699906],[-71.454376,41.64589299906],[-71.453796,41.64553599906],[-71.453079,41.64523199906],[-71.453049,41.64521399906],[-71.452583,41.64505299906],[-71.452209,41.64496599906],[-71.452248,41.64482999906],[-71.452247,41.64476299906],[-71.452217,41.64468299906],[-71.452118,41.64461299906],[-71.45195,41.64452599906],[-71.451317,41.64423799906],[-71.450745,41.64397099906],[-71.4505,41.64382799906],[-71.44986,41.64344899906],[-71.449524,41.64324899906],[-71.449394,41.64317099906],[-71.448982,41.64297299906],[-71.448112,41.64259099906],[-71.447212,41.64219999906],[-71.447075,41.64214399906],[-71.446838,41.64204099906],[-71.44606,41.64170699906],[-71.445473,41.64144399906],[-71.445297,41.64137599906],[-71.445084,41.64137299906],[-71.445125,41.64141899906],[-71.445151,41.64146899906],[-71.445152,41.64152599906],[-71.445139,41.64159099906],[-71.445122,41.64164399906],[-71.445096,41.64170599906],[-71.445059,41.64176299906],[-71.445017,41.64180799906],[-71.444968,41.64185199906],[-71.444901,41.64189799906],[-71.444838,41.64193199906],[-71.444771,41.64196599906],[-71.444711,41.64199599906],[-71.444673,41.64200999906],[-71.444642,41.64202099906],[-71.444575,41.64204699906],[-71.444492,41.64208199906],[-71.444422,41.64210999906],[-71.444361,41.64214099906],[-71.444295,41.64217399906],[-71.444228,41.64221099906],[-71.444174,41.64225099906],[-71.44412,41.64228999906],[-71.444061,41.64232799906],[-71.444006,41.64236599906],[-71.443936,41.64241199906],[-71.443859,41.64245299906],[-71.443789,41.64248799906],[-71.443712,41.64252099906],[-71.443638,41.64254299906],[-71.443552,41.64254399906],[-71.443471,41.64254099906],[-71.443391,41.64253699906],[-71.443307,41.64252999906],[-71.443223,41.64252499906],[-71.443133,41.64252199906],[-71.443052,41.64252499906],[-71.442974,41.64254299906],[-71.442909,41.64257699906],[-71.442851,41.64261199906],[-71.442786,41.64264399906],[-71.442707,41.64266899906],[-71.442669,41.64267099906],[-71.442633,41.64267199906],[-71.442559,41.64267199906],[-71.442473,41.64267699906],[-71.442398,41.64268999906],[-71.442374,41.64272999906],[-71.442387,41.64278399906],[-71.442384,41.64284599906],[-71.442322,41.64289299906],[-71.442281,41.64292099906],[-71.442283,41.64294599906],[-71.442266,41.64302099906],[-71.442252,41.64305199906],[-71.442203,41.64309599906],[-71.442141,41.64313999906],[-71.442079,41.64318599906],[-71.44203,41.64322899906],[-71.441986,41.64327499906],[-71.441964,41.64332799906],[-71.441974,41.64338999906],[-71.442008,41.64344099906],[-71.442074,41.64348999906],[-71.442126,41.64354899906],[-71.442165,41.64359499906],[-71.442211,41.64363799906],[-71.442278,41.64370199906],[-71.442317,41.64375199906],[-71.442355,41.64380999906],[-71.442397,41.64387299906],[-71.442441,41.64393499906],[-71.442479,41.64400099906],[-71.442511,41.64406399906],[-71.442545,41.64412399906],[-71.442582,41.64417799906],[-71.442614,41.64422999906],[-71.442652,41.64428099906],[-71.442691,41.64433499906],[-71.442717,41.64439799906],[-71.442729,41.64447499906],[-71.442735,41.64454199906],[-71.442737,41.64460999906],[-71.442737,41.64467499906],[-71.442731,41.64473899906],[-71.442713,41.64480199906],[-71.442692,41.64485799906],[-71.442665,41.64492299906],[-71.442677,41.64499199906],[-71.442717,41.64505999906],[-71.442775,41.64512299906],[-71.44283,41.64518999906],[-71.442843,41.64524599906],[-71.442831,41.64530899906],[-71.442818,41.64537199906],[-71.442798,41.64543199906],[-71.442771,41.64548499906],[-71.442714,41.64554999906],[-71.442676,41.64559599906],[-71.442647,41.64564599906],[-71.442617,41.64571199906],[-71.442583,41.64574999906],[-71.442571,41.64576499906],[-71.442508,41.64581799906],[-71.442429,41.64585099906],[-71.442342,41.64586099906],[-71.442281,41.64589099906],[-71.442213,41.64592899906],[-71.442135,41.64595499906],[-71.442048,41.64596499906],[-71.44196,41.64596799906],[-71.44179,41.64596799906],[-71.441703,41.64597099906],[-71.441614,41.64598699906],[-71.441527,41.64600899906],[-71.441443,41.64603899906],[-71.441357,41.64606699906],[-71.441266,41.64608999906],[-71.441176,41.64610999906],[-71.441093,41.64612899906],[-71.441015,41.64614799906],[-71.440925,41.64617999906],[-71.440893,41.64619799906],[-71.440859,41.64621699906],[-71.440791,41.64625599906],[-71.440716,41.64630299906],[-71.440645,41.64635799906],[-71.440594,41.64640699906],[-71.44056,41.64645899906],[-71.440588,41.64650399906],[-71.44063,41.64650999906],[-71.44072,41.64650899906],[-71.440798,41.64651399906],[-71.440841,41.64655999906],[-71.440748,41.64657599906],[-71.440672,41.64661399906],[-71.440584,41.64660899906],[-71.440516,41.64658099906],[-71.440432,41.64661299906],[-71.440385,41.64667299906],[-71.440402,41.64674799906],[-71.440425,41.64680099906],[-71.440437,41.64686099906],[-71.440444,41.64692399906],[-71.44045,41.64698399906],[-71.440452,41.64703799906],[-71.440433,41.64711499906],[-71.440392,41.64716599906],[-71.440339,41.64721599906],[-71.440221,41.64731899906],[-71.440165,41.64736999906],[-71.440076,41.64747599906],[-71.439984,41.64759599906],[-71.439927,41.64765599906],[-71.439862,41.64770899906],[-71.439793,41.64776299906],[-71.439719,41.64781199906],[-71.43947,41.64793699906],[-71.439301,41.64802299906],[-71.439215,41.64805799906],[-71.439127,41.64808499906],[-71.43904,41.64810799906],[-71.438958,41.64813899906],[-71.43879,41.64822199906],[-71.438692,41.64826799906],[-71.438591,41.64832299906],[-71.438494,41.64838299906],[-71.438403,41.64844099906],[-71.438309,41.64849499906],[-71.438215,41.64854299906],[-71.438135,41.64858699906],[-71.437013,41.64884999906],[-71.436639,41.64893799906],[-71.435993,41.64920299906],[-71.435944,41.64922299906],[-71.432796,41.65132299906],[-71.428941,41.65056899906],[-71.423884,41.65388799906],[-71.422316,41.65421699906],[-71.42148,41.65439399906],[-71.417581,41.65495199906],[-71.412818,41.65437099906],[-71.408734,41.65382099906],[-71.408156,41.65381099906],[-71.402645,41.65388599906],[-71.391084,41.65234999906],[-71.390103,41.65229299906],[-71.390914,41.65667299906],[-71.39132,41.65916199906],[-71.392214,41.66474099906],[-71.393201,41.66959199906],[-71.4082,41.67451999906],[-71.423504,41.67634599906],[-71.430064,41.67565799906],[-71.434639,41.67443399906],[-71.439748,41.67079899906],[-71.440806,41.66961299906],[-71.442398,41.66755699906],[-71.4423,41.66401899906],[-71.443021,41.66019999906],[-71.446018,41.65537599906],[-71.449315,41.65256599906],[-71.449389,41.65248699906],[-71.450376,41.65144899906],[-71.450847,41.65066599906],[-71.452157,41.64849199906],[-71.452881,41.64843999906],[-71.453055,41.64836599906],[-71.453787,41.64810699906],[-71.454082,41.64798399906],[-71.454308,41.64782599906],[-71.454473,41.64769899906],[-71.454645,41.64756699906],[-71.454876,41.64744499906],[-71.455169,41.64738399906],[-71.455476,41.64741399906],[-71.455574,41.64744799906],[-71.455766,41.64751599906],[-71.455986,41.64762799906],[-71.456208,41.64770799906],[-71.456339,41.64779399906],[-71.456429,41.64792899906],[-71.456412,41.64805599906],[-71.456403,41.64812799906],[-71.456588,41.64831599906],[-71.45661,41.64834399906],[-71.458017,41.64980899906],[-71.458109,41.64978599906],[-71.458462,41.64944699906],[-71.458621,41.64929799906],[-71.458654,41.64926599906]]]}}"}, +{"type": "blockgroup", "typeId": 224002, "areaId": 29275, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.468692,41.63859399906],[-71.468526,41.63760299906],[-71.468422,41.63704499906],[-71.468379,41.63682799906],[-71.4681,41.63550199906],[-71.468013,41.63538799906],[-71.467873,41.63442199906],[-71.467867,41.63436699906],[-71.467844,41.63416499906],[-71.467743,41.63419699906],[-71.46765,41.63422199906],[-71.467611,41.63423099906],[-71.467542,41.63424799906],[-71.467457,41.63427799906],[-71.467388,41.63430899906],[-71.467326,41.63437699906],[-71.467284,41.63442699906],[-71.467198,41.63446999906],[-71.467109,41.63449699906],[-71.467048,41.63453999906],[-71.466997,41.63459599906],[-71.466952,41.63465899906],[-71.466902,41.63472399906],[-71.466846,41.63478299906],[-71.466799,41.63484199906],[-71.46675,41.63489599906],[-71.466693,41.63494199906],[-71.466563,41.63501799906],[-71.466511,41.63506299906],[-71.466472,41.63511799906],[-71.466433,41.63517899906],[-71.46639,41.63524499906],[-71.46635,41.63530999906],[-71.466325,41.63537499906],[-71.466308,41.63543799906],[-71.466246,41.63548799906],[-71.466163,41.63552399906],[-71.466065,41.63554699906],[-71.465966,41.63557699906],[-71.465882,41.63560799906],[-71.465814,41.63564599906],[-71.465742,41.63568299906],[-71.465666,41.63571299906],[-71.465586,41.63573099906],[-71.465511,41.63575999906],[-71.465448,41.63579599906],[-71.465395,41.63586299906],[-71.465345,41.63591199906],[-71.465287,41.63596099906],[-71.465217,41.63601299906],[-71.465146,41.63606399906],[-71.465083,41.63610399906],[-71.465019,41.63613299906],[-71.464958,41.63616699906],[-71.464897,41.63620199906],[-71.464799,41.63623499906],[-71.464726,41.63624599906],[-71.464649,41.63626799906],[-71.464576,41.63629599906],[-71.464512,41.63632699906],[-71.464455,41.63635799906],[-71.464385,41.63639899906],[-71.464312,41.63644899906],[-71.464239,41.63648099906],[-71.464159,41.63652199906],[-71.464095,41.63655099906],[-71.464022,41.63656999906],[-71.463949,41.63657599906],[-71.463851,41.63657399906],[-71.463769,41.63656999906],[-71.463682,41.63655999906],[-71.4636,41.63654599906],[-71.463524,41.63653799906],[-71.463436,41.63654399906],[-71.463373,41.63658199906],[-71.46332,41.63663999906],[-71.463297,41.63669099906],[-71.463273,41.63675299906],[-71.463251,41.63681699906],[-71.463231,41.63688099906],[-71.463222,41.63690999906],[-71.463212,41.63694299906],[-71.463188,41.63700999906],[-71.46316,41.63707399906],[-71.463126,41.63713899906],[-71.463089,41.63720499906],[-71.463045,41.63726899906],[-71.463032,41.63728799906],[-71.463002,41.63733099906],[-71.462963,41.63740099906],[-71.462935,41.63746799906],[-71.462915,41.63752899906],[-71.462892,41.63758299906],[-71.462862,41.63763299906],[-71.46283,41.63768499906],[-71.462788,41.63775599906],[-71.462758,41.63781999906],[-71.462731,41.63787599906],[-71.462691,41.63794399906],[-71.462665,41.63799699906],[-71.462629,41.63806599906],[-71.462594,41.63811999906],[-71.462557,41.63817299906],[-71.462531,41.63822699906],[-71.462525,41.63825499906],[-71.462466,41.63832699906],[-71.462354,41.63837999906],[-71.462247,41.63836299906],[-71.462212,41.63835699906],[-71.462181,41.63834999906],[-71.462108,41.63833299906],[-71.462023,41.63831099906],[-71.461932,41.63828699906],[-71.461835,41.63826399906],[-71.461741,41.63824299906],[-71.461649,41.63821499906],[-71.461577,41.63818699906],[-71.461501,41.63815699906],[-71.461433,41.63812999906],[-71.461351,41.63808499906],[-71.461295,41.63802399906],[-71.461254,41.63797899906],[-71.461187,41.63791899906],[-71.461108,41.63787999906],[-71.461003,41.63788799906],[-71.460932,41.63791799906],[-71.460868,41.63795299906],[-71.460798,41.63798699906],[-71.460719,41.63802099906],[-71.460635,41.63806199906],[-71.460552,41.63809999906],[-71.460461,41.63811799906],[-71.46036,41.63811999906],[-71.460252,41.63811799906],[-71.460153,41.63811599906],[-71.460069,41.63811299906],[-71.459975,41.63811299906],[-71.459902,41.63810899906],[-71.459818,41.63809799906],[-71.459724,41.63808099906],[-71.45965,41.63806299906],[-71.45956,41.63804099906],[-71.459464,41.63801899906],[-71.45937,41.63800099906],[-71.459279,41.63798399906],[-71.459194,41.63796699906],[-71.459123,41.63794599906],[-71.459047,41.63788699906],[-71.459035,41.63786699906],[-71.459009,41.63782299906],[-71.458969,41.63775399906],[-71.458921,41.63768599906],[-71.45887,41.63762299906],[-71.45882,41.63756299906],[-71.458768,41.63750399906],[-71.458722,41.63743699906],[-71.458673,41.63736899906],[-71.45862,41.63730399906],[-71.458569,41.63724199906],[-71.458525,41.63717699906],[-71.458501,41.63713899906],[-71.458485,41.63711299906],[-71.458445,41.63704699906],[-71.458411,41.63698199906],[-71.458384,41.63692099906],[-71.458367,41.63685899906],[-71.458351,41.63679499906],[-71.458341,41.63672699906],[-71.458337,41.63665599906],[-71.458337,41.63646199906],[-71.458324,41.63636599906],[-71.458255,41.63632399906],[-71.458191,41.63630999906],[-71.457878,41.63606899906],[-71.457667,41.63590199906],[-71.457497,41.63585099906],[-71.457299,41.63579199906],[-71.456513,41.63560699906],[-71.455997,41.63540399906],[-71.45558,41.63510899906],[-71.455236,41.63462999906],[-71.454672,41.63370799906],[-71.45423,41.63295299906],[-71.45417,41.63272599906],[-71.454059,41.63230799906],[-71.454084,41.63192099906],[-71.454231,41.63155199906],[-71.454388,41.63123399906],[-71.454404,41.63120199906],[-71.45433,41.63066799906],[-71.454207,41.63048799906],[-71.453972,41.63014499906],[-71.453963,41.63013199906],[-71.453955,41.63011899906],[-71.453943,41.63009999906],[-71.45391,41.63004799906],[-71.453892,41.63004899906],[-71.453668,41.63001799906],[-71.453404,41.62995199906],[-71.453264,41.62988899906],[-71.453241,41.62988099906],[-71.45311,41.62985899906],[-71.453073,41.62985199906],[-71.453056,41.62984799906],[-71.453,41.62983399906],[-71.452928,41.62980299906],[-71.452848,41.62975799906],[-71.452788,41.62970799906],[-71.452713,41.62966199906],[-71.452643,41.62961799906],[-71.452587,41.62957899906],[-71.452507,41.62952899906],[-71.452426,41.62947799906],[-71.452351,41.62943899906],[-71.45234,41.62943299906],[-71.45227,41.62941299906],[-71.452189,41.62939899906],[-71.452097,41.62939699906],[-71.451782,41.62939699906],[-71.451697,41.62940999906],[-71.451614,41.62942499906],[-71.451539,41.62942599906],[-71.451366,41.62945499906],[-71.451313,41.62949599906],[-71.451287,41.62957499906],[-71.451271,41.62963999906],[-71.451267,41.62970399906],[-71.451272,41.62976699906],[-71.451281,41.62980699906],[-71.451285,41.62982799906],[-71.451305,41.62988799906],[-71.451339,41.62995099906],[-71.451384,41.63001399906],[-71.451432,41.63007699906],[-71.451478,41.63013499906],[-71.451512,41.63018599906],[-71.451534,41.63026199906],[-71.451535,41.63033899906],[-71.451505,41.63038599906],[-71.451414,41.63041199906],[-71.451307,41.63042799906],[-71.451219,41.63046099906],[-71.451143,41.63050099906],[-71.451075,41.63053599906],[-71.450978,41.63056499906],[-71.450906,41.63056999906],[-71.450821,41.63056899906],[-71.450731,41.63056899906],[-71.450641,41.63057199906],[-71.450551,41.63058799906],[-71.450453,41.63061199906],[-71.450393,41.63063099906],[-71.450359,41.63064199906],[-71.450299,41.63066699906],[-71.450276,41.63067699906],[-71.450199,41.63071699906],[-71.450126,41.63075399906],[-71.450055,41.63078399906],[-71.449985,41.63081299906],[-71.449915,41.63084499906],[-71.449854,41.63088499906],[-71.449808,41.63093199906],[-71.449782,41.63098799906],[-71.449753,41.63105199906],[-71.449718,41.63111799906],[-71.449684,41.63117699906],[-71.449661,41.63123099906],[-71.449659,41.63130599906],[-71.449659,41.63136199906],[-71.449649,41.63143599906],[-71.449628,41.63149499906],[-71.449606,41.63155699906],[-71.449575,41.63162099906],[-71.449524,41.63167899906],[-71.449464,41.63173799906],[-71.449412,41.63180199906],[-71.449402,41.63181799906],[-71.449371,41.63186899906],[-71.449346,41.63193599906],[-71.449339,41.63200499906],[-71.449339,41.63208799906],[-71.449332,41.63217899906],[-71.44932,41.63219499906],[-71.449277,41.63225599906],[-71.449186,41.63231199906],[-71.449093,41.63236199906],[-71.44901,41.63241699906],[-71.448941,41.63247299906],[-71.448888,41.63252499906],[-71.448849,41.63258899906],[-71.448812,41.63265999906],[-71.44877,41.63273299906],[-71.448736,41.63281699906],[-71.448732,41.63290599906],[-71.448739,41.63298799906],[-71.448711,41.63305799906],[-71.44864,41.63311899906],[-71.448558,41.63317699906],[-71.448488,41.63323599906],[-71.448444,41.63329999906],[-71.448447,41.63337699906],[-71.448473,41.63346399906],[-71.448502,41.63356099906],[-71.448522,41.63365799906],[-71.448535,41.63374199906],[-71.448543,41.63381599906],[-71.448549,41.63388599906],[-71.448572,41.63395699906],[-71.448609,41.63403299906],[-71.448651,41.63411299906],[-71.448705,41.63418499906],[-71.448765,41.63425099906],[-71.44881,41.63429599906],[-71.44888,41.63435199906],[-71.448971,41.63439299906],[-71.449041,41.63441599906],[-71.449118,41.63444099906],[-71.449272,41.63450099906],[-71.449335,41.63453199906],[-71.449414,41.63457499906],[-71.449475,41.63462599906],[-71.449518,41.63468699906],[-71.449542,41.63474199906],[-71.449567,41.63480999906],[-71.449575,41.63487999906],[-71.44957,41.63495099906],[-71.449558,41.63502399906],[-71.449531,41.63510299906],[-71.449491,41.63517999906],[-71.449424,41.63524599906],[-71.449344,41.63530699906],[-71.449268,41.63536199906],[-71.449201,41.63540599906],[-71.449123,41.63544999906],[-71.449059,41.63547999906],[-71.448984,41.63548499906],[-71.448915,41.63551299906],[-71.448861,41.63555299906],[-71.448817,41.63560599906],[-71.448794,41.63566099906],[-71.448797,41.63571899906],[-71.448818,41.63577299906],[-71.448855,41.63582499906],[-71.448912,41.63588299906],[-71.448982,41.63594099906],[-71.44906,41.63599599906],[-71.449133,41.63604899906],[-71.449205,41.63610199906],[-71.449283,41.63615099906],[-71.449345,41.63620399906],[-71.449385,41.63626799906],[-71.449397,41.63634199906],[-71.449388,41.63641899906],[-71.449368,41.63649899906],[-71.449339,41.63658099906],[-71.449311,41.63666099906],[-71.449286,41.63672999906],[-71.449248,41.63679399906],[-71.449206,41.63685199906],[-71.449159,41.63690299906],[-71.449102,41.63693999906],[-71.448996,41.63694299906],[-71.448916,41.63692499906],[-71.448825,41.63690699906],[-71.448731,41.63689999906],[-71.448639,41.63691999906],[-71.44854,41.63695599906],[-71.448439,41.63700099906],[-71.448338,41.63704499906],[-71.448247,41.63708699906],[-71.448164,41.63712499906],[-71.448086,41.63716199906],[-71.448019,41.63719999906],[-71.447964,41.63724999906],[-71.44793,41.63731099906],[-71.44792,41.63738099906],[-71.44793,41.63745499906],[-71.447953,41.63753099906],[-71.447971,41.63759499906],[-71.447937,41.63765699906],[-71.447872,41.63772399906],[-71.447809,41.63780199906],[-71.447742,41.63787199906],[-71.447675,41.63792499906],[-71.447611,41.63796199906],[-71.44754,41.63799099906],[-71.447475,41.63801799906],[-71.447399,41.63804799906],[-71.447327,41.63808599906],[-71.447255,41.63812799906],[-71.447185,41.63817299906],[-71.447121,41.63821599906],[-71.44706,41.63824999906],[-71.446988,41.63829799906],[-71.446942,41.63834999906],[-71.446909,41.63840999906],[-71.446905,41.63846699906],[-71.446908,41.63852899906],[-71.446941,41.63859099906],[-71.447002,41.63864999906],[-71.447071,41.63867999906],[-71.447094,41.63871499906],[-71.447058,41.63878999906],[-71.447013,41.63884199906],[-71.446961,41.63888699906],[-71.446885,41.63892299906],[-71.446809,41.63893599906],[-71.446733,41.63895399906],[-71.446662,41.63896799906],[-71.446591,41.63899999906],[-71.446525,41.63902399906],[-71.446448,41.63904699906],[-71.446379,41.63906599906],[-71.446319,41.63909599906],[-71.44625,41.63911199906],[-71.446201,41.63913999906],[-71.446194,41.63907499906],[-71.4462,41.63901299906],[-71.446223,41.63895199906],[-71.446244,41.63890699906],[-71.446251,41.63889299906],[-71.446277,41.63883699906],[-71.446276,41.63876299906],[-71.446231,41.63874299906],[-71.446151,41.63876999906],[-71.4461,41.63880999906],[-71.446054,41.63885499906],[-71.446015,41.63890199906],[-71.445991,41.63895699906],[-71.445978,41.63901299906],[-71.445965,41.63907399906],[-71.445958,41.63913599906],[-71.445958,41.63919999906],[-71.445956,41.63926199906],[-71.445946,41.63931899906],[-71.445932,41.63937799906],[-71.445911,41.63944199906],[-71.445891,41.63950799906],[-71.445878,41.63957199906],[-71.445899,41.63963499906],[-71.445903,41.63968999906],[-71.445908,41.63974499906],[-71.445899,41.63980699906],[-71.445889,41.63986099906],[-71.445885,41.63991699906],[-71.445864,41.63998099906],[-71.445792,41.63998999906],[-71.445715,41.63999099906],[-71.445623,41.63998899906],[-71.445545,41.63998799906],[-71.445471,41.64002299906],[-71.44541,41.64007299906],[-71.445341,41.64010899906],[-71.445266,41.64015299906],[-71.445208,41.64020199906],[-71.445154,41.64025099906],[-71.445111,41.64030199906],[-71.445067,41.64034699906],[-71.445013,41.64038999906],[-71.444962,41.64042899906],[-71.444911,41.64046999906],[-71.444863,41.64052099906],[-71.444837,41.64057999906],[-71.44483,41.64064099906],[-71.444804,41.64069399906],[-71.444782,41.64075299906],[-71.444794,41.64080899906],[-71.444813,41.64087099906],[-71.444838,41.64092299906],[-71.444845,41.64093599906],[-71.444868,41.64098099906],[-71.4449,41.64103699906],[-71.444943,41.64109399906],[-71.444992,41.64114099906],[-71.445084,41.64137299906],[-71.445297,41.64137599906],[-71.445473,41.64144399906],[-71.44606,41.64170699906],[-71.446838,41.64204099906],[-71.447075,41.64214399906],[-71.447212,41.64219999906],[-71.448112,41.64259099906],[-71.448982,41.64297299906],[-71.449394,41.64317099906],[-71.449524,41.64324899906],[-71.44986,41.64344899906],[-71.4505,41.64382799906],[-71.450745,41.64397099906],[-71.451317,41.64423799906],[-71.45195,41.64452599906],[-71.452118,41.64461299906],[-71.452217,41.64468299906],[-71.452247,41.64476299906],[-71.452248,41.64482999906],[-71.452209,41.64496599906],[-71.452583,41.64505299906],[-71.453049,41.64521399906],[-71.453079,41.64523199906],[-71.453796,41.64553599906],[-71.454376,41.64589299906],[-71.454743,41.64613699906],[-71.455048,41.64633799906],[-71.455681,41.64676999906],[-71.456322,41.64719299906],[-71.456398,41.64724999906],[-71.456901,41.64758599906],[-71.457067,41.64770099906],[-71.457096,41.64771999906],[-71.457344,41.64789199906],[-71.457748,41.64822099906],[-71.458008,41.64845899906],[-71.458038,41.64848499906],[-71.458099,41.64854699906],[-71.458115,41.64856899906],[-71.458202,41.64871799906],[-71.45842,41.64900499906],[-71.458625,41.64923299906],[-71.458654,41.64926599906],[-71.458856,41.64907199906],[-71.458969,41.64896399906],[-71.459018,41.64891499906],[-71.459101,41.64883699906],[-71.459776,41.64819299906],[-71.460027,41.64796099906],[-71.460539,41.64748599906],[-71.4612,41.64687399906],[-71.461342,41.64674299906],[-71.462204,41.64594799906],[-71.462281,41.64587599906],[-71.462371,41.64579299906],[-71.463014,41.64544399906],[-71.46324,41.64516499906],[-71.463553,41.64488299906],[-71.463783,41.64465099906],[-71.464115,41.64444899906],[-71.464399,41.64427699906],[-71.464509,41.64417599906],[-71.464715,41.64398799906],[-71.464966,41.64375699906],[-71.465119,41.64358199906],[-71.465416,41.64329699906],[-71.465652,41.64309799906],[-71.465574,41.64301199906],[-71.465156,41.64065499906],[-71.465014,41.63990099906],[-71.464874,41.63896699906],[-71.464831,41.63890399906],[-71.465875,41.63883099906],[-71.467737,41.63870099906],[-71.468541,41.63863499906],[-71.468692,41.63859399906]]]}}"}, +{"type": "blockgroup", "typeId": 301001, "areaId": 29276, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.342395,41.75896499906],[-71.342232,41.75895299906],[-71.341797,41.75893499906],[-71.341316,41.75889499906],[-71.341126,41.75888499906],[-71.340912,41.75885799906],[-71.340823,41.75883699906],[-71.340614,41.75878799906],[-71.340485,41.75873599906],[-71.340347,41.75866199906],[-71.340225,41.75856599906],[-71.34008,41.75841099906],[-71.340052,41.75835899906],[-71.339997,41.75821499906],[-71.339966,41.75809399906],[-71.339966,41.75807599906],[-71.339951,41.75797199906],[-71.339966,41.75779699906],[-71.340012,41.75741699906],[-71.340019,41.75722399906],[-71.340027,41.75718699906],[-71.340065,41.75687099906],[-71.340096,41.75652399906],[-71.340111,41.75629399906],[-71.340141,41.75582999906],[-71.340164,41.75556799906],[-71.34018,41.75525699906],[-71.340203,41.75496799906],[-71.340256,41.75430499906],[-71.340301,41.75363799906],[-71.340355,41.75298399906],[-71.340378,41.75265899906],[-71.340416,41.75227099906],[-71.340439,41.75190099906],[-71.340523,41.75121999906],[-71.340546,41.75108399906],[-71.340599,41.75064599906],[-71.340683,41.75019399906],[-71.340736,41.74974299906],[-71.340769,41.74956999906],[-71.34082,41.74929999906],[-71.340904,41.74874399906],[-71.341004,41.74825999906],[-71.341042,41.74814699906],[-71.341103,41.74798799906],[-71.341217,41.74771599906],[-71.341255,41.74757999906],[-71.341301,41.74736299906],[-71.341331,41.74718599906],[-71.341339,41.74705599906],[-71.341354,41.74697399906],[-71.340882,41.74696099906],[-71.340203,41.74695299906],[-71.339714,41.74693999906],[-71.339523,41.74693499906],[-71.339379,41.74693799906],[-71.339004,41.74693199906],[-71.338859,41.74693499906],[-71.338463,41.74692999906],[-71.337982,41.74691699906],[-71.337586,41.74689799906],[-71.337097,41.74688099906],[-71.336876,41.74688099906],[-71.336479,41.74684899906],[-71.336029,41.74682599906],[-71.335434,41.74679299906],[-71.335312,41.74678199906],[-71.334686,41.74675899906],[-71.334579,41.74675199906],[-71.334106,41.74672099906],[-71.333855,41.74670799906],[-71.333706,41.74669899906],[-71.333099,41.74666499906],[-71.332756,41.74664499906],[-71.332382,41.74662999906],[-71.331642,41.74659599906],[-71.330933,41.74656499906],[-71.330856,41.74717899906],[-71.330833,41.74729599906],[-71.330803,41.74752699906],[-71.33078,41.74764399906],[-71.330734,41.74794199906],[-71.330719,41.74809599906],[-71.330689,41.74829899906],[-71.330681,41.74841599906],[-71.330658,41.74857899906],[-71.33065,41.74867799906],[-71.330605,41.74897599906],[-71.330597,41.74907999906],[-71.330551,41.74936899906],[-71.330521,41.74967099906],[-71.330498,41.74976599906],[-71.330483,41.74986599906],[-71.330459,41.74996099906],[-71.330429,41.75014599906],[-71.330406,41.75024099906],[-71.330363,41.75048099906],[-71.33033,41.75065199906],[-71.330322,41.75072899906],[-71.330307,41.75080599906],[-71.330307,41.75088299906],[-71.330292,41.75104099906],[-71.330292,41.75129699906],[-71.330299,41.75135599906],[-71.330299,41.75146799906],[-71.330307,41.75157599906],[-71.330345,41.75211999906],[-71.330345,41.75219699906],[-71.330383,41.75267299906],[-71.330406,41.75305099906],[-71.330422,41.75322599906],[-71.330456,41.75376499906],[-71.33046,41.75382499906],[-71.33049,41.75417999906],[-71.33049,41.75425199906],[-71.330513,41.75450799906],[-71.330559,41.75483099906],[-71.330582,41.75498399906],[-71.330635,41.75524399906],[-71.330711,41.75557099906],[-71.330788,41.75587599906],[-71.330849,41.75614499906],[-71.330849,41.75617199906],[-71.330917,41.75644499906],[-71.330994,41.75672299906],[-71.331161,41.75720599906],[-71.331192,41.75787099906],[-71.3312,41.75791199906],[-71.331215,41.75819499906],[-71.331253,41.75869399906],[-71.331259,41.75879599906],[-71.331276,41.75906799906],[-71.331322,41.75965699906],[-71.331329,41.75987299906],[-71.33136,41.76025499906],[-71.331375,41.76056499906],[-71.331413,41.76091599906],[-71.331436,41.76122099906],[-71.331467,41.76151799906],[-71.331489,41.76189599906],[-71.331528,41.76239499906],[-71.331589,41.76336199906],[-71.331589,41.76369899906],[-71.331574,41.76400999906],[-71.331566,41.76433899906],[-71.331551,41.76454699906],[-71.331551,41.76466799906],[-71.331558,41.76474899906],[-71.331581,41.76481599906],[-71.331635,41.76488299906],[-71.331795,41.76504199906],[-71.332008,41.76520799906],[-71.332223,41.76538099906],[-71.332352,41.76548499906],[-71.332659,41.76571499906],[-71.333942,41.76482399906],[-71.335239,41.76392699906],[-71.336781,41.76285499906],[-71.338476,41.76168299906],[-71.339851,41.76073399906],[-71.340957,41.75997099906],[-71.342108,41.75916699906],[-71.342233,41.75907799906],[-71.342395,41.75896499906]]]}}"}, +{"type": "blockgroup", "typeId": 301002, "areaId": 29277, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.341477,41.74508499906],[-71.341454,41.74491399906],[-71.341415,41.74454999906],[-71.341362,41.74427699906],[-71.341329,41.74414999906],[-71.34127,41.74391399906],[-71.34124,41.74378399906],[-71.341194,41.74364499906],[-71.341072,41.74331499906],[-71.340835,41.74265299906],[-71.340591,41.74200499906],[-71.340355,41.74138399906],[-71.340103,41.74070899906],[-71.339813,41.73998099906],[-71.339577,41.73939599906],[-71.339493,41.73909599906],[-71.339287,41.73857299906],[-71.339035,41.73796999906],[-71.338974,41.73781399906],[-71.338333,41.73601699906],[-71.338142,41.73551799906],[-71.337494,41.73382699906],[-71.337028,41.73263899906],[-71.336853,41.73219699906],[-71.336311,41.73233399906],[-71.336212,41.73238499906],[-71.335953,41.73259299906],[-71.335663,41.73270699906],[-71.33538,41.73280299906],[-71.335098,41.73289199906],[-71.334968,41.73293299906],[-71.33432,41.73312199906],[-71.334064,41.73320099906],[-71.333557,41.73335799906],[-71.333351,41.73345699906],[-71.333267,41.73350799906],[-71.333237,41.73361199906],[-71.333244,41.73376999906],[-71.333183,41.73421699906],[-71.333076,41.73450299906],[-71.332985,41.73462599906],[-71.332878,41.73475399906],[-71.332802,41.73495399906],[-71.332832,41.73520099906],[-71.332893,41.73538399906],[-71.333008,41.73580499906],[-71.333015,41.73604799906],[-71.332985,41.73624699906],[-71.332971,41.73629899906],[-71.332855,41.73674999906],[-71.332794,41.73709299906],[-71.33271,41.73735199906],[-71.332619,41.73749699906],[-71.332497,41.73760799906],[-71.33242,41.73778499906],[-71.332253,41.73812199906],[-71.332161,41.73809699906],[-71.332047,41.73811699906],[-71.331695,41.73837199906],[-71.33154,41.73847099906],[-71.331493,41.73849999906],[-71.331467,41.73851599906],[-71.331131,41.73867099906],[-71.330856,41.73880299906],[-71.330673,41.73889699906],[-71.33038,41.73903899906],[-71.330673,41.73962199906],[-71.331078,41.74046899906],[-71.331116,41.74056299906],[-71.331161,41.74069699906],[-71.331215,41.74088499906],[-71.331232,41.74100799906],[-71.331245,41.74110499906],[-71.331253,41.74130299906],[-71.331253,41.74160999906],[-71.33123,41.74209599906],[-71.331203,41.74262999906],[-71.331078,41.74516599906],[-71.33107,41.74523799906],[-71.33107,41.74530599906],[-71.331032,41.74574799906],[-71.331001,41.74596499906],[-71.330986,41.74618599906],[-71.330963,41.74638399906],[-71.330933,41.74656499906],[-71.331642,41.74659599906],[-71.332382,41.74662999906],[-71.332756,41.74664499906],[-71.333099,41.74666499906],[-71.333706,41.74669899906],[-71.333855,41.74670799906],[-71.334106,41.74672099906],[-71.334579,41.74675199906],[-71.334686,41.74675899906],[-71.335312,41.74678199906],[-71.335434,41.74679299906],[-71.336029,41.74682599906],[-71.336479,41.74684899906],[-71.336876,41.74688099906],[-71.337097,41.74688099906],[-71.337586,41.74689799906],[-71.337982,41.74691699906],[-71.338463,41.74692999906],[-71.338859,41.74693499906],[-71.339004,41.74693199906],[-71.339379,41.74693799906],[-71.339523,41.74693499906],[-71.339714,41.74693999906],[-71.340203,41.74695299906],[-71.340882,41.74696099906],[-71.341354,41.74697399906],[-71.341393,41.74674399906],[-71.341408,41.74661299906],[-71.341423,41.74633799906],[-71.341446,41.74618399906],[-71.341446,41.74613499906],[-71.341461,41.74591799906],[-71.341461,41.74578299906],[-71.341469,41.74566199906],[-71.341476,41.74535999906],[-71.341469,41.74519299906],[-71.341477,41.74508499906]]]}}"}, +{"type": "blockgroup", "typeId": 301003, "areaId": 29278, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.365207,41.73564899906],[-71.364561,41.73492799906],[-71.35689,41.72847199906],[-71.35508,41.72696199906],[-71.341223,41.73015199906],[-71.341225,41.73019299906],[-71.341211,41.73025699906],[-71.341185,41.73032299906],[-71.341158,41.73037399906],[-71.341122,41.73042299906],[-71.341065,41.73045999906],[-71.340915,41.73043699906],[-71.340862,41.73039399906],[-71.340798,41.73039499906],[-71.340555,41.73042899906],[-71.340445,41.73044899906],[-71.340265,41.73047399906],[-71.340105,41.73048999906],[-71.340074,41.73049299906],[-71.339936,41.73051399906],[-71.339821,41.73053599906],[-71.339721,41.73056099906],[-71.339492,41.73062899906],[-71.339119,41.73073199906],[-71.338868,41.73081399906],[-71.338762,41.73084099906],[-71.338669,41.73087599906],[-71.338584,41.73091599906],[-71.338244,41.73102099906],[-71.338104,41.73104099906],[-71.338006,41.73107699906],[-71.337886,41.73113399906],[-71.337764,41.73118499906],[-71.337402,41.73136099906],[-71.337125,41.73145399906],[-71.336981,41.73148999906],[-71.336881,41.73150099906],[-71.33685,41.73149699906],[-71.336792,41.73151299906],[-71.336749,41.73154199906],[-71.336716,41.73157599906],[-71.336626,41.73157999906],[-71.33667,41.73169599906],[-71.336754,41.73195999906],[-71.336853,41.73219699906],[-71.337028,41.73263899906],[-71.337494,41.73382699906],[-71.338142,41.73551799906],[-71.338333,41.73601699906],[-71.338974,41.73781399906],[-71.339035,41.73796999906],[-71.339287,41.73857299906],[-71.339493,41.73909599906],[-71.339577,41.73939599906],[-71.339813,41.73998099906],[-71.340103,41.74070899906],[-71.340355,41.74138399906],[-71.340591,41.74200499906],[-71.340835,41.74265299906],[-71.341072,41.74331499906],[-71.341194,41.74364499906],[-71.34124,41.74378399906],[-71.34127,41.74391399906],[-71.341329,41.74414999906],[-71.341362,41.74427699906],[-71.341415,41.74454999906],[-71.341454,41.74491399906],[-71.341477,41.74508499906],[-71.341469,41.74519299906],[-71.341476,41.74535999906],[-71.341469,41.74566199906],[-71.341461,41.74578299906],[-71.341461,41.74591799906],[-71.341446,41.74613499906],[-71.341446,41.74618399906],[-71.341423,41.74633799906],[-71.341408,41.74661299906],[-71.341393,41.74674399906],[-71.341354,41.74697399906],[-71.341339,41.74705599906],[-71.341331,41.74718599906],[-71.341301,41.74736299906],[-71.341255,41.74757999906],[-71.341453,41.74761199906],[-71.341797,41.74765399906],[-71.342964,41.74783799906],[-71.344724,41.74809799906],[-71.344783,41.74810699906],[-71.345131,41.74816699906],[-71.345184,41.74817099906],[-71.345371,41.74819999906],[-71.345665,41.74824599906],[-71.34575,41.74825999906],[-71.346444,41.74839199906],[-71.346787,41.74845199906],[-71.346901,41.74847299906],[-71.347641,41.74861999906],[-71.348755,41.74884499906],[-71.349571,41.74899999906],[-71.349831,41.74824199906],[-71.349922,41.74798399906],[-71.350021,41.74767999906],[-71.350037,41.74759399906],[-71.350036,41.74754799906],[-71.35006,41.74741299906],[-71.350075,41.74735899906],[-71.350121,41.74713799906],[-71.350197,41.74658199906],[-71.35096,41.74641799906],[-71.351746,41.74627599906],[-71.352356,41.74617299906],[-71.352562,41.74612399906],[-71.35277,41.74603099906],[-71.353137,41.74586699906],[-71.355818,41.74530799906],[-71.356587,41.74288999906],[-71.356997,41.74160099906],[-71.360197,41.73890099906],[-71.365207,41.73564899906]]]}}"}, +{"type": "blockgroup", "typeId": 301004, "areaId": 29279, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.355818,41.74530799906],[-71.353137,41.74586699906],[-71.35277,41.74603099906],[-71.352562,41.74612399906],[-71.352356,41.74617299906],[-71.351746,41.74627599906],[-71.35096,41.74641799906],[-71.350197,41.74658199906],[-71.350121,41.74713799906],[-71.350075,41.74735899906],[-71.35006,41.74741299906],[-71.350036,41.74754799906],[-71.350037,41.74759399906],[-71.350021,41.74767999906],[-71.349922,41.74798399906],[-71.349831,41.74824199906],[-71.349571,41.74899999906],[-71.348755,41.74884499906],[-71.347641,41.74861999906],[-71.346901,41.74847299906],[-71.346787,41.74845199906],[-71.346444,41.74839199906],[-71.34575,41.74825999906],[-71.345665,41.74824599906],[-71.345371,41.74819999906],[-71.345184,41.74817099906],[-71.345131,41.74816699906],[-71.344783,41.74810699906],[-71.344724,41.74809799906],[-71.342964,41.74783799906],[-71.341797,41.74765399906],[-71.341453,41.74761199906],[-71.341255,41.74757999906],[-71.341217,41.74771599906],[-71.341103,41.74798799906],[-71.341042,41.74814699906],[-71.341004,41.74825999906],[-71.340904,41.74874399906],[-71.34082,41.74929999906],[-71.340769,41.74956999906],[-71.340736,41.74974299906],[-71.340683,41.75019399906],[-71.340599,41.75064599906],[-71.340546,41.75108399906],[-71.340523,41.75121999906],[-71.340439,41.75190099906],[-71.340416,41.75227099906],[-71.340378,41.75265899906],[-71.340355,41.75298399906],[-71.340301,41.75363799906],[-71.340256,41.75430499906],[-71.340203,41.75496799906],[-71.34018,41.75525699906],[-71.340164,41.75556799906],[-71.340141,41.75582999906],[-71.340111,41.75629399906],[-71.340096,41.75652399906],[-71.340065,41.75687099906],[-71.340027,41.75718699906],[-71.340019,41.75722399906],[-71.340012,41.75741699906],[-71.339966,41.75779699906],[-71.339951,41.75797199906],[-71.339966,41.75807599906],[-71.339966,41.75809399906],[-71.339997,41.75821499906],[-71.340052,41.75835899906],[-71.34008,41.75841099906],[-71.340225,41.75856599906],[-71.340347,41.75866199906],[-71.340485,41.75873599906],[-71.340614,41.75878799906],[-71.340823,41.75883699906],[-71.340912,41.75885799906],[-71.341126,41.75888499906],[-71.341316,41.75889499906],[-71.341797,41.75893499906],[-71.342232,41.75895299906],[-71.342395,41.75896499906],[-71.343012,41.75853999906],[-71.343339,41.75831599906],[-71.343583,41.75814999906],[-71.343961,41.75788099906],[-71.34407,41.75780699906],[-71.344643,41.75736099906],[-71.34479,41.75729299906],[-71.344853,41.75726499906],[-71.345161,41.75705099906],[-71.345588,41.75675699906],[-71.345642,41.75671799906],[-71.34653,41.75610599906],[-71.346593,41.75605899906],[-71.347181,41.75565399906],[-71.347289,41.75557299906],[-71.347615,41.75535099906],[-71.348237,41.75491999906],[-71.348878,41.75447799906],[-71.349191,41.75425999906],[-71.351476,41.75264899906],[-71.351495,41.75263499906],[-71.353897,41.75130099906],[-71.355081,41.74749599906],[-71.355297,41.74680099906],[-71.355526,41.74618999906],[-71.355597,41.74600099906],[-71.355639,41.74586999906],[-71.355786,41.74540899906],[-71.355818,41.74530799906]]]}}"}, +{"type": "blockgroup", "typeId": 302001, "areaId": 29280, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.332659,41.76571499906],[-71.332352,41.76548499906],[-71.332223,41.76538099906],[-71.332008,41.76520799906],[-71.331795,41.76504199906],[-71.331635,41.76488299906],[-71.331581,41.76481599906],[-71.331558,41.76474899906],[-71.331551,41.76466799906],[-71.331551,41.76454699906],[-71.331566,41.76433899906],[-71.331574,41.76400999906],[-71.331589,41.76369899906],[-71.331589,41.76336199906],[-71.331528,41.76239499906],[-71.331489,41.76189599906],[-71.331467,41.76151799906],[-71.331436,41.76122099906],[-71.331413,41.76091599906],[-71.331375,41.76056499906],[-71.33136,41.76025499906],[-71.331329,41.75987299906],[-71.331322,41.75965699906],[-71.331276,41.75906799906],[-71.331259,41.75879599906],[-71.331253,41.75869399906],[-71.331215,41.75819499906],[-71.3312,41.75791199906],[-71.331192,41.75787099906],[-71.331161,41.75720599906],[-71.330994,41.75672299906],[-71.330917,41.75644499906],[-71.330849,41.75617199906],[-71.330849,41.75614499906],[-71.330788,41.75587599906],[-71.330711,41.75557099906],[-71.330635,41.75524399906],[-71.330582,41.75498399906],[-71.330559,41.75483099906],[-71.330513,41.75450799906],[-71.33049,41.75425199906],[-71.33049,41.75417999906],[-71.33046,41.75382499906],[-71.330456,41.75376499906],[-71.330422,41.75322599906],[-71.330406,41.75305099906],[-71.330383,41.75267299906],[-71.330345,41.75219699906],[-71.330345,41.75211999906],[-71.330307,41.75157599906],[-71.330299,41.75146799906],[-71.330299,41.75135599906],[-71.330292,41.75129699906],[-71.330292,41.75104099906],[-71.330307,41.75088299906],[-71.330307,41.75080599906],[-71.330322,41.75072899906],[-71.33033,41.75065199906],[-71.330363,41.75048099906],[-71.330406,41.75024099906],[-71.330429,41.75014599906],[-71.330459,41.74996099906],[-71.330483,41.74986599906],[-71.330498,41.74976599906],[-71.330521,41.74967099906],[-71.330551,41.74936899906],[-71.330597,41.74907999906],[-71.330605,41.74897599906],[-71.33065,41.74867799906],[-71.330658,41.74857899906],[-71.330681,41.74841599906],[-71.330689,41.74829899906],[-71.330185,41.74829999906],[-71.329254,41.74831899906],[-71.32851,41.74833899906],[-71.327141,41.74838499906],[-71.32663,41.74842199906],[-71.324051,41.74862699906],[-71.323456,41.74867099906],[-71.323196,41.74868999906],[-71.321315,41.74882599906],[-71.319216,41.74896899906],[-71.319168,41.74898299906],[-71.319084,41.74900199906],[-71.31897,41.74907199906],[-71.318427,41.74949599906],[-71.318299,41.74957299906],[-71.318144,41.74966499906],[-71.317435,41.75002599906],[-71.317588,41.75025699906],[-71.31909,41.75252399906],[-71.319024,41.75974599906],[-71.319769,41.76208599906],[-71.319532,41.76885999906],[-71.319437,41.77333599906],[-71.319878,41.77434699906],[-71.31995,41.77450999906],[-71.320534,41.77404899906],[-71.320607,41.77399899906],[-71.321365,41.77348399906],[-71.32193,41.77309999906],[-71.32256,41.77267199906],[-71.322589,41.77265199906],[-71.322607,41.77263999906],[-71.322678,41.77259199906],[-71.324523,41.77133899906],[-71.324604,41.77128099906],[-71.324717,41.77120099906],[-71.325007,41.77100599906],[-71.328655,41.76847799906],[-71.329106,41.76816699906],[-71.331223,41.76670099906],[-71.331736,41.76634499906],[-71.331997,41.76616499906],[-71.332659,41.76571499906]]]}}"}, +{"type": "blockgroup", "typeId": 302002, "areaId": 29281, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.331253,41.74130299906],[-71.331245,41.74110499906],[-71.331232,41.74100799906],[-71.331215,41.74088499906],[-71.331161,41.74069699906],[-71.331116,41.74056299906],[-71.331078,41.74046899906],[-71.330673,41.73962199906],[-71.33038,41.73903899906],[-71.330331,41.73893999906],[-71.330315,41.73890899906],[-71.329361,41.73886499906],[-71.328529,41.73883199906],[-71.327911,41.73881299906],[-71.327339,41.73881099906],[-71.326973,41.73880999906],[-71.325585,41.73882899906],[-71.32402,41.73884699906],[-71.323532,41.73884799906],[-71.322708,41.73885599906],[-71.322648,41.73885699906],[-71.321365,41.73887399906],[-71.320564,41.73888099906],[-71.319778,41.73888299906],[-71.318955,41.73889999906],[-71.318649,41.73890599906],[-71.31826,41.73889999906],[-71.317399,41.73890899906],[-71.317368,41.73890499906],[-71.31662,41.73891599906],[-71.316578,41.73891699906],[-71.31588,41.73893999906],[-71.31575,41.73894699906],[-71.315392,41.73898499906],[-71.314834,41.73901899906],[-71.314827,41.73906399906],[-71.314771,41.73999599906],[-71.314522,41.74169599906],[-71.314491,41.74184899906],[-71.31446,41.74203399906],[-71.314301,41.74301999906],[-71.31327,41.74299499906],[-71.313004,41.74299199906],[-71.312889,41.74299399906],[-71.312752,41.74306399906],[-71.312874,41.74313399906],[-71.313072,41.74325599906],[-71.3134,41.74343399906],[-71.313675,41.74359099906],[-71.313919,41.74373899906],[-71.314095,41.74387899906],[-71.314232,41.74399799906],[-71.314308,41.74407799906],[-71.314385,41.74415299906],[-71.314575,41.74436999906],[-71.314878,41.74469299906],[-71.316002,41.74591199906],[-71.3163,41.74622199906],[-71.317291,41.74729599906],[-71.318882,41.74897899906],[-71.31897,41.74907199906],[-71.319084,41.74900199906],[-71.319168,41.74898299906],[-71.319216,41.74896899906],[-71.321315,41.74882599906],[-71.323196,41.74868999906],[-71.323456,41.74867099906],[-71.324051,41.74862699906],[-71.32663,41.74842199906],[-71.327141,41.74838499906],[-71.32851,41.74833899906],[-71.329254,41.74831899906],[-71.330185,41.74829999906],[-71.330689,41.74829899906],[-71.330719,41.74809599906],[-71.330734,41.74794199906],[-71.33078,41.74764399906],[-71.330803,41.74752699906],[-71.330833,41.74729599906],[-71.330856,41.74717899906],[-71.330933,41.74656499906],[-71.330963,41.74638399906],[-71.330986,41.74618599906],[-71.331001,41.74596499906],[-71.331032,41.74574799906],[-71.33107,41.74530599906],[-71.33107,41.74523799906],[-71.331078,41.74516599906],[-71.331203,41.74262999906],[-71.33123,41.74209599906],[-71.331253,41.74160999906],[-71.331253,41.74130299906]]]}}"}, +{"type": "blockgroup", "typeId": 302003, "areaId": 29282, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.330315,41.73890899906],[-71.329939,41.73806799906],[-71.329767,41.73809099906],[-71.329655,41.73808299906],[-71.329506,41.73800799906],[-71.329301,41.73795999906],[-71.328436,41.73782499906],[-71.327349,41.73765999906],[-71.325627,41.73753299906],[-71.324869,41.73750899906],[-71.324196,41.73750499906],[-71.321382,41.73749099906],[-71.320572,41.73749399906],[-71.319794,41.73750099906],[-71.318968,41.73750599906],[-71.318226,41.73751999906],[-71.317162,41.73752699906],[-71.315468,41.73752499906],[-71.314621,41.73752899906],[-71.312804,41.73753999906],[-71.312675,41.73757699906],[-71.312523,41.73757999906],[-71.312258,41.73749099906],[-71.312162,41.73748999906],[-71.312003,41.73749199906],[-71.31174,41.73760299906],[-71.308336,41.73763399906],[-71.304548,41.73762599906],[-71.304489,41.73762599906],[-71.304423,41.73762699906],[-71.302403,41.73764199906],[-71.296133,41.73768299906],[-71.295822,41.73768299906],[-71.29945,41.74144799906],[-71.306163,41.74277899906],[-71.307319,41.74300799906],[-71.317172,41.74976199906],[-71.317435,41.75002599906],[-71.318144,41.74966499906],[-71.318299,41.74957299906],[-71.318427,41.74949599906],[-71.31897,41.74907199906],[-71.318882,41.74897899906],[-71.317291,41.74729599906],[-71.3163,41.74622199906],[-71.316002,41.74591199906],[-71.314878,41.74469299906],[-71.314575,41.74436999906],[-71.314385,41.74415299906],[-71.314308,41.74407799906],[-71.314232,41.74399799906],[-71.314095,41.74387899906],[-71.313919,41.74373899906],[-71.313675,41.74359099906],[-71.3134,41.74343399906],[-71.313072,41.74325599906],[-71.312874,41.74313399906],[-71.312752,41.74306399906],[-71.312889,41.74299399906],[-71.313004,41.74299199906],[-71.31327,41.74299499906],[-71.314301,41.74301999906],[-71.31446,41.74203399906],[-71.314491,41.74184899906],[-71.314522,41.74169599906],[-71.314771,41.73999599906],[-71.314827,41.73906399906],[-71.314834,41.73901899906],[-71.315392,41.73898499906],[-71.31575,41.73894699906],[-71.31588,41.73893999906],[-71.316578,41.73891699906],[-71.31662,41.73891599906],[-71.317368,41.73890499906],[-71.317399,41.73890899906],[-71.31826,41.73889999906],[-71.318649,41.73890599906],[-71.318955,41.73889999906],[-71.319778,41.73888299906],[-71.320564,41.73888099906],[-71.321365,41.73887399906],[-71.322648,41.73885699906],[-71.322708,41.73885599906],[-71.323532,41.73884799906],[-71.32402,41.73884699906],[-71.325585,41.73882899906],[-71.326973,41.73880999906],[-71.327339,41.73881099906],[-71.327911,41.73881299906],[-71.328529,41.73883199906],[-71.329361,41.73886499906],[-71.330315,41.73890899906]]]}}"}, +{"type": "blockgroup", "typeId": 303001, "areaId": 29283, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.300865,41.74350599906],[-71.300361,41.74332699906],[-71.300247,41.74329299906],[-71.300018,41.74321199906],[-71.299782,41.74311799906],[-71.299553,41.74298699906],[-71.299446,41.74289899906],[-71.299133,41.74258599906],[-71.299019,41.74244799906],[-71.298783,41.74221499906],[-71.298706,41.74215799906],[-71.298614,41.74210499906],[-71.29853,41.74207999906],[-71.298431,41.74205899906],[-71.298187,41.74206399906],[-71.297607,41.74211599906],[-71.297432,41.74211999906],[-71.297287,41.74210499906],[-71.297157,41.74207599906],[-71.297058,41.74202799906],[-71.296944,41.74196299906],[-71.29678,41.74185099906],[-71.296272,41.74145399906],[-71.295906,41.74113699906],[-71.295578,41.74081099906],[-71.295288,41.74051499906],[-71.295235,41.74043499906],[-71.295174,41.74036799906],[-71.295113,41.74029799906],[-71.295036,41.74010999906],[-71.294823,41.73951099906],[-71.294647,41.73898699906],[-71.294426,41.73829799906],[-71.294373,41.73807899906],[-71.294289,41.73776499906],[-71.29426,41.73768599906],[-71.294342,41.73766199906],[-71.294479,41.73764499906],[-71.294549,41.73765799906],[-71.294635,41.73768399906],[-71.295143,41.73768099906],[-71.295822,41.73768299906],[-71.295796,41.73765599906],[-71.295855,41.73669699906],[-71.294083,41.73307099906],[-71.292018,41.73287499906],[-71.289494,41.73260099906],[-71.2898,41.73380699906],[-71.289431,41.73668899906],[-71.289337,41.73742699906],[-71.289305,41.73777699906],[-71.2893,41.73779699906],[-71.289002,41.73895899906],[-71.288931,41.73905899906],[-71.286593,41.74240099906],[-71.28641,41.74404799906],[-71.284748,41.75891799906],[-71.284404,41.76200499906],[-71.285796,41.76259699906],[-71.286131,41.76273799906],[-71.294185,41.76614799906],[-71.294753,41.76638899906],[-71.294891,41.76614999906],[-71.295364,41.76545099906],[-71.295784,41.76494299906],[-71.295563,41.76486199906],[-71.295082,41.76469599906],[-71.294411,41.76447099906],[-71.294006,41.76432999906],[-71.293671,41.76414799906],[-71.293427,41.76390499906],[-71.293282,41.76363799906],[-71.293152,41.76327599906],[-71.292938,41.76247399906],[-71.2929,41.76218599906],[-71.292915,41.76186199906],[-71.29295,41.76156399906],[-71.292977,41.76133799906],[-71.293014,41.76109399906],[-71.29306,41.76065699906],[-71.293121,41.76017799906],[-71.293159,41.75984499906],[-71.293251,41.75904099906],[-71.29335,41.75843099906],[-71.293442,41.75797899906],[-71.293533,41.75744999906],[-71.293602,41.75708799906],[-71.293678,41.75669499906],[-71.2938,41.75610699906],[-71.2938,41.75608499906],[-71.293922,41.75545599906],[-71.294044,41.75481899906],[-71.294144,41.75426299906],[-71.294255,41.75363499906],[-71.294278,41.75349999906],[-71.294334,41.75318299906],[-71.29435,41.75308799906],[-71.294434,41.75258699906],[-71.294609,41.75162799906],[-71.29467,41.75134399906],[-71.294731,41.75110799906],[-71.2948,41.75088199906],[-71.294922,41.75053699906],[-71.294929,41.75046899906],[-71.294968,41.75028399906],[-71.294998,41.75008999906],[-71.295006,41.74990899906],[-71.294991,41.74958499906],[-71.294975,41.74950599906],[-71.29496,41.74942399906],[-71.294874,41.74909999906],[-71.294739,41.74858599906],[-71.294518,41.74770799906],[-71.294441,41.74740799906],[-71.294914,41.74720899906],[-71.295585,41.74683599906],[-71.296203,41.74650399906],[-71.29713,41.74599299906],[-71.297745,41.74565299906],[-71.297874,41.74558799906],[-71.297981,41.74552199906],[-71.298058,41.74544899906],[-71.298088,41.74540799906],[-71.298103,41.74533099906],[-71.298103,41.74528999906],[-71.298088,41.74523199906],[-71.298057,41.74514699906],[-71.298004,41.74504499906],[-71.298004,41.74494099906],[-71.298019,41.74490499906],[-71.298058,41.74486299906],[-71.298111,41.74481699906],[-71.298325,41.74471799906],[-71.29879,41.74449699906],[-71.299477,41.74417799906],[-71.299881,41.74399399906],[-71.300758,41.74358399906],[-71.300865,41.74350599906]]]}}"}, +{"type": "blockgroup", "typeId": 303002, "areaId": 29284, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.317435,41.75002599906],[-71.317172,41.74976199906],[-71.307319,41.74300799906],[-71.306163,41.74277899906],[-71.29945,41.74144799906],[-71.295822,41.73768299906],[-71.295143,41.73768099906],[-71.294635,41.73768399906],[-71.294549,41.73765799906],[-71.294479,41.73764499906],[-71.294342,41.73766199906],[-71.29426,41.73768599906],[-71.294289,41.73776499906],[-71.294373,41.73807899906],[-71.294426,41.73829799906],[-71.294647,41.73898699906],[-71.294823,41.73951099906],[-71.295036,41.74010999906],[-71.295113,41.74029799906],[-71.295174,41.74036799906],[-71.295235,41.74043499906],[-71.295288,41.74051499906],[-71.295578,41.74081099906],[-71.295906,41.74113699906],[-71.296272,41.74145399906],[-71.29678,41.74185099906],[-71.296944,41.74196299906],[-71.297058,41.74202799906],[-71.297157,41.74207599906],[-71.297287,41.74210499906],[-71.297432,41.74211999906],[-71.297607,41.74211599906],[-71.298187,41.74206399906],[-71.298431,41.74205899906],[-71.29853,41.74207999906],[-71.298614,41.74210499906],[-71.298706,41.74215799906],[-71.298783,41.74221499906],[-71.299019,41.74244799906],[-71.299133,41.74258599906],[-71.299446,41.74289899906],[-71.299553,41.74298699906],[-71.299782,41.74311799906],[-71.300018,41.74321199906],[-71.300247,41.74329299906],[-71.300361,41.74332699906],[-71.300865,41.74350599906],[-71.300758,41.74358399906],[-71.299881,41.74399399906],[-71.299477,41.74417799906],[-71.29879,41.74449699906],[-71.298325,41.74471799906],[-71.298111,41.74481699906],[-71.298058,41.74486299906],[-71.298019,41.74490499906],[-71.298004,41.74494099906],[-71.298004,41.74504499906],[-71.298057,41.74514699906],[-71.298088,41.74523199906],[-71.298103,41.74528999906],[-71.298103,41.74533099906],[-71.298088,41.74540799906],[-71.298058,41.74544899906],[-71.297981,41.74552199906],[-71.297874,41.74558799906],[-71.297745,41.74565299906],[-71.29713,41.74599299906],[-71.296203,41.74650399906],[-71.295585,41.74683599906],[-71.294914,41.74720899906],[-71.294441,41.74740799906],[-71.294518,41.74770799906],[-71.294739,41.74858599906],[-71.294874,41.74909999906],[-71.29496,41.74942399906],[-71.294975,41.74950599906],[-71.294991,41.74958499906],[-71.295006,41.74990899906],[-71.294998,41.75008999906],[-71.294968,41.75028399906],[-71.294929,41.75046899906],[-71.294922,41.75053699906],[-71.2948,41.75088199906],[-71.294731,41.75110799906],[-71.29467,41.75134399906],[-71.294609,41.75162799906],[-71.294434,41.75258699906],[-71.29435,41.75308799906],[-71.294334,41.75318299906],[-71.294278,41.75349999906],[-71.294255,41.75363499906],[-71.294144,41.75426299906],[-71.294044,41.75481899906],[-71.293922,41.75545599906],[-71.2938,41.75608499906],[-71.2938,41.75610699906],[-71.293678,41.75669499906],[-71.293602,41.75708799906],[-71.293533,41.75744999906],[-71.293442,41.75797899906],[-71.29335,41.75843099906],[-71.293251,41.75904099906],[-71.293159,41.75984499906],[-71.293121,41.76017799906],[-71.29306,41.76065699906],[-71.293014,41.76109399906],[-71.292977,41.76133799906],[-71.29295,41.76156399906],[-71.292915,41.76186199906],[-71.2929,41.76218599906],[-71.292938,41.76247399906],[-71.293152,41.76327599906],[-71.293282,41.76363799906],[-71.293427,41.76390499906],[-71.293671,41.76414799906],[-71.294006,41.76432999906],[-71.294411,41.76447099906],[-71.295082,41.76469599906],[-71.295563,41.76486199906],[-71.295784,41.76494299906],[-71.295364,41.76545099906],[-71.294891,41.76614999906],[-71.294753,41.76638899906],[-71.2977,41.76763899906],[-71.297563,41.76738999906],[-71.29731,41.76689099906],[-71.297272,41.76667899906],[-71.297272,41.76651199906],[-71.297279,41.76647599906],[-71.297279,41.76643999906],[-71.297294,41.76636299906],[-71.297371,41.76614999906],[-71.297447,41.76598599906],[-71.297554,41.76578999906],[-71.297615,41.76564999906],[-71.297646,41.76558599906],[-71.297669,41.76553099906],[-71.297728,41.76540799906],[-71.29792,41.76501299906],[-71.298088,41.76470299906],[-71.298347,41.76418499906],[-71.298404,41.76406399906],[-71.29853,41.76380299906],[-71.298599,41.76368499906],[-71.298637,41.76358499906],[-71.298843,41.76314399906],[-71.29895,41.76287999906],[-71.299202,41.76236699906],[-71.299362,41.76202999906],[-71.299476,41.76174399906],[-71.299675,41.76132099906],[-71.299789,41.76111599906],[-71.299812,41.76104799906],[-71.299904,41.76085699906],[-71.300156,41.76032099906],[-71.300263,41.76006699906],[-71.300377,41.75982099906],[-71.300476,41.75962599906],[-71.30069,41.75917599906],[-71.300766,41.75900699906],[-71.300842,41.75888899906],[-71.300865,41.75882099906],[-71.300926,41.75869399906],[-71.300972,41.75863399906],[-71.30101,41.75856599906],[-71.301041,41.75849299906],[-71.301178,41.75826099906],[-71.301323,41.75800099906],[-71.30146,41.75771899906],[-71.301659,41.75736399906],[-71.301987,41.75676299906],[-71.302032,41.75669499906],[-71.302063,41.75661699906],[-71.302204,41.75632899906],[-71.302322,41.75611299906],[-71.302341,41.75606399906],[-71.302448,41.75586499906],[-71.302521,41.75574799906],[-71.302704,41.75534399906],[-71.302772,41.75521199906],[-71.302772,41.75519799906],[-71.303017,41.75471099906],[-71.303093,41.75455699906],[-71.303495,41.75370099906],[-71.303559,41.75356599906],[-71.303624,41.75342599906],[-71.303657,41.75335699906],[-71.304001,41.75262499906],[-71.304138,41.75232499906],[-71.304726,41.75112399906],[-71.304985,41.75104699906],[-71.305214,41.75098399906],[-71.305397,41.75094399906],[-71.305664,41.75086199906],[-71.305817,41.75078299906],[-71.306,41.75065699906],[-71.306351,41.75040299906],[-71.30648,41.75031899906],[-71.306572,41.75027699906],[-71.306633,41.75025699906],[-71.306694,41.75024299906],[-71.306763,41.75023699906],[-71.306854,41.75023499906],[-71.306923,41.75024699906],[-71.307297,41.75029399906],[-71.307366,41.75030599906],[-71.307793,41.75035999906],[-71.308426,41.75044599906],[-71.308617,41.75047899906],[-71.308808,41.75052399906],[-71.309341,41.75064399906],[-71.309746,41.75074399906],[-71.309799,41.75076099906],[-71.30983,41.75076499906],[-71.31015,41.75084899906],[-71.310486,41.75093199906],[-71.310875,41.75099599906],[-71.312111,41.75118299906],[-71.312271,41.75121099906],[-71.313004,41.75131299906],[-71.313476,41.75138099906],[-71.313896,41.75144399906],[-71.314163,41.75147499906],[-71.314262,41.75147299906],[-71.314331,41.75146699906],[-71.314415,41.75145199906],[-71.314575,41.75139399906],[-71.314674,41.75135199906],[-71.31514,41.75110399906],[-71.316216,41.75052999906],[-71.316419,41.75044999906],[-71.316679,41.75034799906],[-71.317067,41.75019599906],[-71.317194,41.75014799906],[-71.317435,41.75002599906]]]}}"}, +{"type": "blockgroup", "typeId": 303003, "areaId": 29285, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.31995,41.77450999906],[-71.319878,41.77434699906],[-71.319437,41.77333599906],[-71.319532,41.76885999906],[-71.319769,41.76208599906],[-71.319024,41.75974599906],[-71.31909,41.75252399906],[-71.317588,41.75025699906],[-71.317435,41.75002599906],[-71.317194,41.75014799906],[-71.317067,41.75019599906],[-71.316679,41.75034799906],[-71.316419,41.75044999906],[-71.316216,41.75052999906],[-71.31514,41.75110399906],[-71.314674,41.75135199906],[-71.314575,41.75139399906],[-71.314415,41.75145199906],[-71.314331,41.75146699906],[-71.314262,41.75147299906],[-71.314163,41.75147499906],[-71.313896,41.75144399906],[-71.313476,41.75138099906],[-71.313004,41.75131299906],[-71.312271,41.75121099906],[-71.312111,41.75118299906],[-71.310875,41.75099599906],[-71.310486,41.75093199906],[-71.31015,41.75084899906],[-71.30983,41.75076499906],[-71.309799,41.75076099906],[-71.309746,41.75074399906],[-71.309341,41.75064399906],[-71.308808,41.75052399906],[-71.308617,41.75047899906],[-71.308426,41.75044599906],[-71.307793,41.75035999906],[-71.307366,41.75030599906],[-71.307297,41.75029399906],[-71.306923,41.75024699906],[-71.306854,41.75023499906],[-71.306763,41.75023699906],[-71.306694,41.75024299906],[-71.306633,41.75025699906],[-71.306572,41.75027699906],[-71.30648,41.75031899906],[-71.306351,41.75040299906],[-71.306,41.75065699906],[-71.305817,41.75078299906],[-71.305664,41.75086199906],[-71.305397,41.75094399906],[-71.305214,41.75098399906],[-71.304985,41.75104699906],[-71.304726,41.75112399906],[-71.304138,41.75232499906],[-71.304001,41.75262499906],[-71.303657,41.75335699906],[-71.303624,41.75342599906],[-71.303559,41.75356599906],[-71.303495,41.75370099906],[-71.303093,41.75455699906],[-71.303017,41.75471099906],[-71.302772,41.75519799906],[-71.302772,41.75521199906],[-71.302704,41.75534399906],[-71.302521,41.75574799906],[-71.302448,41.75586499906],[-71.302341,41.75606399906],[-71.302322,41.75611299906],[-71.302204,41.75632899906],[-71.302063,41.75661699906],[-71.302032,41.75669499906],[-71.301987,41.75676299906],[-71.301659,41.75736399906],[-71.30146,41.75771899906],[-71.301323,41.75800099906],[-71.301178,41.75826099906],[-71.301041,41.75849299906],[-71.30101,41.75856599906],[-71.300972,41.75863399906],[-71.300926,41.75869399906],[-71.300865,41.75882099906],[-71.300842,41.75888899906],[-71.300766,41.75900699906],[-71.30069,41.75917599906],[-71.300476,41.75962599906],[-71.300377,41.75982099906],[-71.300263,41.76006699906],[-71.300156,41.76032099906],[-71.299904,41.76085699906],[-71.299812,41.76104799906],[-71.299789,41.76111599906],[-71.299675,41.76132099906],[-71.299476,41.76174399906],[-71.299362,41.76202999906],[-71.299202,41.76236699906],[-71.29895,41.76287999906],[-71.298843,41.76314399906],[-71.298637,41.76358499906],[-71.298599,41.76368499906],[-71.29853,41.76380299906],[-71.298404,41.76406399906],[-71.298347,41.76418499906],[-71.298088,41.76470299906],[-71.29792,41.76501299906],[-71.297728,41.76540799906],[-71.297669,41.76553099906],[-71.297646,41.76558599906],[-71.297615,41.76564999906],[-71.297554,41.76578999906],[-71.297447,41.76598599906],[-71.297371,41.76614999906],[-71.297294,41.76636299906],[-71.297279,41.76643999906],[-71.297279,41.76647599906],[-71.297272,41.76651199906],[-71.297272,41.76667899906],[-71.29731,41.76689099906],[-71.297563,41.76738999906],[-71.2977,41.76763899906],[-71.302245,41.76955999906],[-71.303586,41.77012699906],[-71.30624,41.77124899906],[-71.306274,41.77127099906],[-71.307632,41.77185399906],[-71.3086,41.77226399906],[-71.308777,41.77233299906],[-71.309039,41.77244899906],[-71.310355,41.77300899906],[-71.311784,41.77361399906],[-71.314668,41.77483799906],[-71.317734,41.77613999906],[-71.317873,41.77619899906],[-71.317911,41.77616799906],[-71.318089,41.77602399906],[-71.318223,41.77591299906],[-71.319142,41.77515699906],[-71.31949,41.77487099906],[-71.319541,41.77483099906],[-71.31995,41.77450999906]]]}}"}, +{"type": "blockgroup", "typeId": 304001, "areaId": 29286, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.304548,41.73762599906],[-71.304445,41.73756299906],[-71.304298,41.73747499906],[-71.304138,41.73732899906],[-71.304039,41.73721899906],[-71.303947,41.73708599906],[-71.303856,41.73692499906],[-71.303772,41.73679199906],[-71.303696,41.73664899906],[-71.303619,41.73651999906],[-71.303543,41.73640499906],[-71.303444,41.73629899906],[-71.303329,41.73619699906],[-71.303215,41.73610999906],[-71.303085,41.73606699906],[-71.302963,41.73603799906],[-71.302811,41.73600999906],[-71.302765,41.73600599906],[-71.302908,41.73597499906],[-71.303007,41.73594299906],[-71.303086,41.73590499906],[-71.303166,41.73583299906],[-71.303254,41.73572099906],[-71.303314,41.73558499906],[-71.303307,41.73555399906],[-71.303062,41.73474399906],[-71.302749,41.73356599906],[-71.30262,41.73305899906],[-71.302544,41.73274699906],[-71.30234,41.73190999906],[-71.302322,41.73183599906],[-71.302177,41.73125799906],[-71.30191,41.73011999906],[-71.301743,41.72944699906],[-71.30159,41.72879799906],[-71.30043,41.72872199906],[-71.299492,41.72865499906],[-71.299423,41.72865199906],[-71.29837,41.72858699906],[-71.297074,41.72850499906],[-71.296127,41.72843899906],[-71.295158,41.72837199906],[-71.293846,41.72826299906],[-71.293846,41.72804299906],[-71.293823,41.72750699906],[-71.293808,41.72707099906],[-71.293808,41.72640899906],[-71.293907,41.72540699906],[-71.293953,41.72501899906],[-71.294106,41.72410599906],[-71.294136,41.72379499906],[-71.29422,41.72316699906],[-71.294258,41.72277899906],[-71.294319,41.72231899906],[-71.294334,41.72214299906],[-71.294327,41.72201699906],[-71.294289,41.72160799906],[-71.294235,41.72114999906],[-71.294151,41.72065199906],[-71.29406,41.72006799906],[-71.294013,41.71969799906],[-71.293953,41.71923299906],[-71.293938,41.71916999906],[-71.293915,41.71900799906],[-71.293846,41.71865799906],[-71.293755,41.71805699906],[-71.293732,41.71785899906],[-71.293701,41.71773799906],[-71.293663,41.71761699906],[-71.293632,41.71753699906],[-71.29361,41.71727199906],[-71.293602,41.71701999906],[-71.293579,41.71685799906],[-71.293541,41.71667899906],[-71.293409,41.71593099906],[-71.292854,41.71175899906],[-71.289294,41.71600099906],[-71.289113,41.71674499906],[-71.287604,41.72294899906],[-71.287494,41.72340099906],[-71.287478,41.72380299906],[-71.287465,41.72413099906],[-71.287321,41.72780399906],[-71.287294,41.72850099906],[-71.288254,41.73029099906],[-71.289494,41.73260099906],[-71.292018,41.73287499906],[-71.294083,41.73307099906],[-71.295855,41.73669699906],[-71.295796,41.73765599906],[-71.295822,41.73768299906],[-71.296133,41.73768299906],[-71.302403,41.73764199906],[-71.304423,41.73762699906],[-71.304489,41.73762599906],[-71.304548,41.73762599906]]]}}"}, +{"type": "blockgroup", "typeId": 304002, "areaId": 29287, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.312111,41.72842399906],[-71.311966,41.72760699906],[-71.311775,41.72657599906],[-71.311699,41.72611799906],[-71.311607,41.72561999906],[-71.311539,41.72525199906],[-71.311526,41.72517299906],[-71.311378,41.72420999906],[-71.31134,41.72408999906],[-71.311224,41.72338599906],[-71.311173,41.72307999906],[-71.311164,41.72302399906],[-71.311054,41.72227099906],[-71.310237,41.71726199906],[-71.306708,41.70668799906],[-71.30234,41.70147899906],[-71.301764,41.70194299906],[-71.301114,41.70271099906],[-71.300843,41.70310199906],[-71.298476,41.70484199906],[-71.296947,41.70599399906],[-71.29526,41.70726899906],[-71.294039,41.71027999906],[-71.293989,41.71040399906],[-71.292854,41.71175899906],[-71.293409,41.71593099906],[-71.293541,41.71667899906],[-71.293579,41.71685799906],[-71.293602,41.71701999906],[-71.29361,41.71727199906],[-71.293632,41.71753699906],[-71.293663,41.71761699906],[-71.293701,41.71773799906],[-71.293732,41.71785899906],[-71.293755,41.71805699906],[-71.293846,41.71865799906],[-71.293915,41.71900799906],[-71.293938,41.71916999906],[-71.293953,41.71923299906],[-71.294013,41.71969799906],[-71.29406,41.72006799906],[-71.294151,41.72065199906],[-71.294235,41.72114999906],[-71.294289,41.72160799906],[-71.294327,41.72201699906],[-71.294334,41.72214299906],[-71.294319,41.72231899906],[-71.294258,41.72277899906],[-71.29422,41.72316699906],[-71.294136,41.72379499906],[-71.294106,41.72410599906],[-71.293953,41.72501899906],[-71.293907,41.72540699906],[-71.293808,41.72640899906],[-71.293808,41.72707099906],[-71.293823,41.72750699906],[-71.293846,41.72804299906],[-71.293846,41.72826299906],[-71.295158,41.72837199906],[-71.296127,41.72843899906],[-71.297074,41.72850499906],[-71.29837,41.72858699906],[-71.299423,41.72865199906],[-71.299492,41.72865499906],[-71.30043,41.72872199906],[-71.30159,41.72879799906],[-71.301743,41.72944699906],[-71.303436,41.72929199906],[-71.303871,41.72925599906],[-71.305695,41.72909299906],[-71.306374,41.72902599906],[-71.307185,41.72895699906],[-71.30809,41.72887899906],[-71.30818,41.72886899906],[-71.308291,41.72885799906],[-71.308411,41.72884499906],[-71.309311,41.72876899906],[-71.309807,41.72872699906],[-71.310226,41.72868699906],[-71.311134,41.72861899906],[-71.31176,41.72859799906],[-71.312088,41.72859999906],[-71.312111,41.72860399906],[-71.312111,41.72842399906]]]}}"}, +{"type": "blockgroup", "typeId": 304003, "areaId": 29288, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.35508,41.72696199906],[-71.34836,41.72072399906],[-71.342585,41.71557699906],[-71.335052,41.70710599906],[-71.333869,41.70577599906],[-71.331315,41.70290199906],[-71.331316,41.70279999906],[-71.331408,41.70228099906],[-71.331648,41.70145099906],[-71.332015,41.70037999906],[-71.329925,41.69804399906],[-71.325667,41.69321299906],[-71.33097,41.68696199906],[-71.328976,41.67993599906],[-71.315775,41.69023599906],[-71.312595,41.69289799906],[-71.30234,41.70147899906],[-71.306708,41.70668799906],[-71.310237,41.71726199906],[-71.311054,41.72227099906],[-71.311164,41.72302399906],[-71.311173,41.72307999906],[-71.311224,41.72338599906],[-71.31134,41.72408999906],[-71.311378,41.72420999906],[-71.311526,41.72517299906],[-71.311539,41.72525199906],[-71.311607,41.72561999906],[-71.311699,41.72611799906],[-71.311775,41.72657599906],[-71.311966,41.72760699906],[-71.312111,41.72842399906],[-71.312111,41.72860399906],[-71.312088,41.72859999906],[-71.31176,41.72859799906],[-71.311134,41.72861899906],[-71.310226,41.72868699906],[-71.309807,41.72872699906],[-71.309311,41.72876899906],[-71.308411,41.72884499906],[-71.308291,41.72885799906],[-71.30818,41.72886899906],[-71.30809,41.72887899906],[-71.307185,41.72895699906],[-71.306374,41.72902599906],[-71.305695,41.72909299906],[-71.303871,41.72925599906],[-71.303436,41.72929199906],[-71.301743,41.72944699906],[-71.30191,41.73011999906],[-71.302177,41.73125799906],[-71.302322,41.73183599906],[-71.30234,41.73190999906],[-71.302544,41.73274699906],[-71.30262,41.73305899906],[-71.302749,41.73356599906],[-71.303062,41.73474399906],[-71.303307,41.73555399906],[-71.303314,41.73558499906],[-71.303254,41.73572099906],[-71.303166,41.73583299906],[-71.303086,41.73590499906],[-71.303007,41.73594299906],[-71.302908,41.73597499906],[-71.302765,41.73600599906],[-71.302811,41.73600999906],[-71.302963,41.73603799906],[-71.303085,41.73606699906],[-71.303215,41.73610999906],[-71.303329,41.73619699906],[-71.303444,41.73629899906],[-71.303543,41.73640499906],[-71.303619,41.73651999906],[-71.303696,41.73664899906],[-71.303772,41.73679199906],[-71.303856,41.73692499906],[-71.303947,41.73708599906],[-71.304039,41.73721899906],[-71.304138,41.73732899906],[-71.304298,41.73747499906],[-71.304445,41.73756299906],[-71.304548,41.73762599906],[-71.308336,41.73763399906],[-71.31174,41.73760299906],[-71.312003,41.73749199906],[-71.312162,41.73748999906],[-71.312258,41.73749099906],[-71.312523,41.73757999906],[-71.312675,41.73757699906],[-71.312804,41.73753999906],[-71.314621,41.73752899906],[-71.315468,41.73752499906],[-71.317162,41.73752699906],[-71.318226,41.73751999906],[-71.318968,41.73750599906],[-71.319794,41.73750099906],[-71.320572,41.73749399906],[-71.321382,41.73749099906],[-71.324196,41.73750499906],[-71.324869,41.73750899906],[-71.325627,41.73753299906],[-71.327349,41.73765999906],[-71.328436,41.73782499906],[-71.329301,41.73795999906],[-71.329506,41.73800799906],[-71.329655,41.73808299906],[-71.329767,41.73809099906],[-71.329939,41.73806799906],[-71.330315,41.73890899906],[-71.330331,41.73893999906],[-71.33038,41.73903899906],[-71.330673,41.73889699906],[-71.330856,41.73880299906],[-71.331131,41.73867099906],[-71.331467,41.73851599906],[-71.331493,41.73849999906],[-71.33154,41.73847099906],[-71.331695,41.73837199906],[-71.332047,41.73811699906],[-71.332161,41.73809699906],[-71.332253,41.73812199906],[-71.33242,41.73778499906],[-71.332497,41.73760799906],[-71.332619,41.73749699906],[-71.33271,41.73735199906],[-71.332794,41.73709299906],[-71.332855,41.73674999906],[-71.332971,41.73629899906],[-71.332985,41.73624699906],[-71.333015,41.73604799906],[-71.333008,41.73580499906],[-71.332893,41.73538399906],[-71.332832,41.73520099906],[-71.332802,41.73495399906],[-71.332878,41.73475399906],[-71.332985,41.73462599906],[-71.333076,41.73450299906],[-71.333183,41.73421699906],[-71.333244,41.73376999906],[-71.333237,41.73361199906],[-71.333267,41.73350799906],[-71.333351,41.73345699906],[-71.333557,41.73335799906],[-71.334064,41.73320099906],[-71.33432,41.73312199906],[-71.334968,41.73293299906],[-71.335098,41.73289199906],[-71.33538,41.73280299906],[-71.335663,41.73270699906],[-71.335953,41.73259299906],[-71.336212,41.73238499906],[-71.336311,41.73233399906],[-71.336853,41.73219699906],[-71.336754,41.73195999906],[-71.33667,41.73169599906],[-71.336626,41.73157999906],[-71.336716,41.73157599906],[-71.336749,41.73154199906],[-71.336792,41.73151299906],[-71.33685,41.73149699906],[-71.336881,41.73150099906],[-71.336981,41.73148999906],[-71.337125,41.73145399906],[-71.337402,41.73136099906],[-71.337764,41.73118499906],[-71.337886,41.73113399906],[-71.338006,41.73107699906],[-71.338104,41.73104099906],[-71.338244,41.73102099906],[-71.338584,41.73091599906],[-71.338669,41.73087599906],[-71.338762,41.73084099906],[-71.338868,41.73081399906],[-71.339119,41.73073199906],[-71.339492,41.73062899906],[-71.339721,41.73056099906],[-71.339821,41.73053599906],[-71.339936,41.73051399906],[-71.340074,41.73049299906],[-71.340105,41.73048999906],[-71.340265,41.73047399906],[-71.340445,41.73044899906],[-71.340555,41.73042899906],[-71.340798,41.73039499906],[-71.340862,41.73039399906],[-71.340915,41.73043699906],[-71.341065,41.73045999906],[-71.341122,41.73042299906],[-71.341158,41.73037399906],[-71.341185,41.73032299906],[-71.341211,41.73025699906],[-71.341225,41.73019299906],[-71.341223,41.73015199906],[-71.35508,41.72696199906]]]}}"}, +{"type": "blockgroup", "typeId": 305001, "areaId": 29289, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.289337,41.73742699906],[-71.288925,41.73746699906],[-71.288757,41.73747499906],[-71.288559,41.73747899906],[-71.288383,41.73747799906],[-71.2882,41.73746299906],[-71.288048,41.73744399906],[-71.287903,41.73741499906],[-71.287788,41.73737699906],[-71.287628,41.73730399906],[-71.287193,41.73699699906],[-71.287048,41.73688299906],[-71.286415,41.73639099906],[-71.286049,41.73610999906],[-71.285732,41.73586299906],[-71.285599,41.73575899906],[-71.285393,41.73560599906],[-71.284798,41.73516299906],[-71.283936,41.73450899906],[-71.283722,41.73432799906],[-71.283646,41.73424899906],[-71.283615,41.73421299906],[-71.283531,41.73409799906],[-71.28344,41.73394699906],[-71.283402,41.73381699906],[-71.283333,41.73361599906],[-71.283211,41.73313599906],[-71.283127,41.73282699906],[-71.283066,41.73257199906],[-71.282959,41.73212299906],[-71.282834,41.73152899906],[-71.282722,41.73100199906],[-71.282685,41.73081399906],[-71.282585,41.73041099906],[-71.28257,41.73035699906],[-71.281598,41.73027599906],[-71.281113,41.73023699906],[-71.281036,41.73023399906],[-71.280785,41.73021199906],[-71.280618,41.73019699906],[-71.280588,41.73019399906],[-71.28038,41.73017499906],[-71.280365,41.73017599906],[-71.279709,41.73011199906],[-71.279503,41.73009799906],[-71.278908,41.73004199906],[-71.27877,41.73003199906],[-71.277817,41.72994199906],[-71.277191,41.72988699906],[-71.27655,41.72983199906],[-71.276131,41.72979299906],[-71.275718,41.72975399906],[-71.2761,41.73071099906],[-71.275864,41.73078699906],[-71.275665,41.73088999906],[-71.275467,41.73111499906],[-71.275337,41.73132899906],[-71.274971,41.73196199906],[-71.274826,41.73218599906],[-71.274658,41.73237799906],[-71.274437,41.73255799906],[-71.274117,41.73276299906],[-71.273811,41.73297099906],[-71.273598,41.73312899906],[-71.273453,41.73321699906],[-71.273515,41.73331899906],[-71.273583,41.73343099906],[-71.273731,41.73376899906],[-71.273857,41.73376299906],[-71.274147,41.73368699906],[-71.274422,41.73353399906],[-71.274678,41.73324799906],[-71.27519,41.73304499906],[-71.276106,41.73299199906],[-71.276413,41.73306099906],[-71.276877,41.73316799906],[-71.278203,41.73448899906],[-71.279193,41.73547499906],[-71.279291,41.73557199906],[-71.279708,41.73598699906],[-71.284224,41.74048399906],[-71.286593,41.74240099906],[-71.288931,41.73905899906],[-71.289002,41.73895899906],[-71.2893,41.73779699906],[-71.289305,41.73777699906],[-71.289337,41.73742699906]]]}}"}, +{"type": "blockgroup", "typeId": 305002, "areaId": 29290, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.28257,41.73035699906],[-71.282463,41.72991299906],[-71.282347,41.72944699906],[-71.282333,41.72938399906],[-71.282249,41.72905299906],[-71.282158,41.72869099906],[-71.282143,41.72862299906],[-71.282112,41.72849299906],[-71.282036,41.72817899906],[-71.281944,41.72775799906],[-71.281921,41.72766799906],[-71.281723,41.72686599906],[-71.281692,41.72674499906],[-71.281639,41.72643999906],[-71.281616,41.72632799906],[-71.281532,41.72574799906],[-71.281494,41.72535299906],[-71.281076,41.72539499906],[-71.281008,41.72540199906],[-71.280716,41.72543099906],[-71.280067,41.72545299906],[-71.279175,41.72551099906],[-71.278732,41.72551599906],[-71.278008,41.72556199906],[-71.277306,41.72559799906],[-71.276004,41.72566599906],[-71.275554,41.72568799906],[-71.275436,41.72569399906],[-71.275215,41.72569399906],[-71.274712,41.72567199906],[-71.274424,41.72565299906],[-71.273903,41.72561999906],[-71.273186,41.72558099906],[-71.273056,41.72557899906],[-71.272308,41.72553499906],[-71.271622,41.72548999906],[-71.270973,41.72546199906],[-71.270906,41.72545699906],[-71.27034,41.72541599906],[-71.270088,41.72542099906],[-71.270119,41.72581699906],[-71.270058,41.72602299906],[-71.270043,41.72627099906],[-71.270042,41.72628299906],[-71.270027,41.72642199906],[-71.270027,41.72647599906],[-71.269951,41.72718499906],[-71.269946,41.72723199906],[-71.26986,41.72804299906],[-71.269737,41.72922399906],[-71.269593,41.73060099906],[-71.269554,41.73109199906],[-71.270027,41.73133499906],[-71.27018,41.73143099906],[-71.270378,41.73152199906],[-71.270523,41.73156399906],[-71.271042,41.73179699906],[-71.271119,41.73183099906],[-71.271912,41.73217999906],[-71.272629,41.73250399906],[-71.272965,41.73271799906],[-71.273247,41.73297399906],[-71.273453,41.73321699906],[-71.273598,41.73312899906],[-71.273811,41.73297099906],[-71.274117,41.73276299906],[-71.274437,41.73255799906],[-71.274658,41.73237799906],[-71.274826,41.73218599906],[-71.274971,41.73196199906],[-71.275337,41.73132899906],[-71.275467,41.73111499906],[-71.275665,41.73088999906],[-71.275864,41.73078699906],[-71.2761,41.73071099906],[-71.275718,41.72975399906],[-71.276131,41.72979299906],[-71.27655,41.72983199906],[-71.277191,41.72988699906],[-71.277817,41.72994199906],[-71.27877,41.73003199906],[-71.278908,41.73004199906],[-71.279503,41.73009799906],[-71.279709,41.73011199906],[-71.280365,41.73017599906],[-71.28038,41.73017499906],[-71.280588,41.73019399906],[-71.280618,41.73019699906],[-71.280785,41.73021199906],[-71.281036,41.73023399906],[-71.281113,41.73023699906],[-71.281598,41.73027599906],[-71.28257,41.73035699906]]]}}"}, +{"type": "blockgroup", "typeId": 305003, "areaId": 29291, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.2898,41.73380699906],[-71.289494,41.73260099906],[-71.288254,41.73029099906],[-71.287294,41.72850099906],[-71.287321,41.72780399906],[-71.287465,41.72413099906],[-71.287478,41.72380299906],[-71.286499,41.72383799906],[-71.286103,41.72385499906],[-71.285425,41.72388399906],[-71.284653,41.72391699906],[-71.283753,41.72403399906],[-71.282615,41.72419599906],[-71.281838,41.72430599906],[-71.281456,41.72437699906],[-71.281433,41.72438099906],[-71.281436,41.72443099906],[-71.281456,41.72482699906],[-71.281494,41.72535299906],[-71.281532,41.72574799906],[-71.281616,41.72632799906],[-71.281639,41.72643999906],[-71.281692,41.72674499906],[-71.281723,41.72686599906],[-71.281921,41.72766799906],[-71.281944,41.72775799906],[-71.282036,41.72817899906],[-71.282112,41.72849299906],[-71.282143,41.72862299906],[-71.282158,41.72869099906],[-71.282249,41.72905299906],[-71.282333,41.72938399906],[-71.282347,41.72944699906],[-71.282463,41.72991299906],[-71.28257,41.73035699906],[-71.282585,41.73041099906],[-71.282685,41.73081399906],[-71.282722,41.73100199906],[-71.282834,41.73152899906],[-71.282959,41.73212299906],[-71.283066,41.73257199906],[-71.283127,41.73282699906],[-71.283211,41.73313599906],[-71.283333,41.73361599906],[-71.283402,41.73381699906],[-71.28344,41.73394699906],[-71.283531,41.73409799906],[-71.283615,41.73421299906],[-71.283646,41.73424899906],[-71.283722,41.73432799906],[-71.283936,41.73450899906],[-71.284798,41.73516299906],[-71.285393,41.73560599906],[-71.285599,41.73575899906],[-71.285732,41.73586299906],[-71.286049,41.73610999906],[-71.286415,41.73639099906],[-71.287048,41.73688299906],[-71.287193,41.73699699906],[-71.287628,41.73730399906],[-71.287788,41.73737699906],[-71.287903,41.73741499906],[-71.288048,41.73744399906],[-71.2882,41.73746299906],[-71.288383,41.73747799906],[-71.288559,41.73747899906],[-71.288757,41.73747499906],[-71.288925,41.73746699906],[-71.289337,41.73742699906],[-71.289431,41.73668899906],[-71.2898,41.73380699906]]]}}"}, +{"type": "blockgroup", "typeId": 306011, "areaId": 29292, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.286593,41.74240099906],[-71.284224,41.74048399906],[-71.279708,41.73598699906],[-71.279291,41.73557199906],[-71.279193,41.73547499906],[-71.278203,41.73448899906],[-71.276877,41.73316799906],[-71.276413,41.73306099906],[-71.276106,41.73299199906],[-71.27519,41.73304499906],[-71.274678,41.73324799906],[-71.274422,41.73353399906],[-71.274147,41.73368699906],[-71.273857,41.73376299906],[-71.273731,41.73376899906],[-71.273583,41.73343099906],[-71.273515,41.73331899906],[-71.273453,41.73321699906],[-71.273247,41.73297399906],[-71.272965,41.73271799906],[-71.272629,41.73250399906],[-71.271912,41.73217999906],[-71.271119,41.73183099906],[-71.271042,41.73179699906],[-71.270523,41.73156399906],[-71.270378,41.73152199906],[-71.27018,41.73143099906],[-71.270027,41.73133499906],[-71.269554,41.73109199906],[-71.269593,41.73060099906],[-71.269737,41.72922399906],[-71.268845,41.72917399906],[-71.268387,41.72914699906],[-71.26786,41.72912199906],[-71.267509,41.72912399906],[-71.266716,41.72914399906],[-71.265923,41.72916499906],[-71.265663,41.72916999906],[-71.265076,41.72917699906],[-71.264237,41.72920699906],[-71.263763,41.72923899906],[-71.263115,41.72931399906],[-71.262738,41.72938599906],[-71.262665,41.72939999906],[-71.262714,41.72949999906],[-71.262877,41.72969399906],[-71.263939,41.72950699906],[-71.264721,41.73168499906],[-71.26465,41.73448999906],[-71.264294,41.73538299906],[-71.263086,41.73705099906],[-71.260627,41.73820599906],[-71.260514,41.73834799906],[-71.260186,41.73926299906],[-71.259999,41.73941899906],[-71.259904,41.73949299906],[-71.259869,41.73951199906],[-71.259829,41.73957299906],[-71.259702,41.73976899906],[-71.259688,41.73984799906],[-71.259661,41.74000699906],[-71.259581,41.74046899906],[-71.259581,41.74100799906],[-71.259027,41.74142399906],[-71.258331,41.74163899906],[-71.258137,41.74176499906],[-71.257687,41.74206099906],[-71.257005,41.74287299906],[-71.256332,41.74321299906],[-71.255648,41.74368699906],[-71.255596,41.74373699906],[-71.255585,41.74374199906],[-71.255494,41.74374899906],[-71.255408,41.74369499906],[-71.255367,41.74369499906],[-71.255323,41.74371699906],[-71.255309,41.74373499906],[-71.255301,41.74375799906],[-71.2553,41.74380899906],[-71.255308,41.74383599906],[-71.25534,41.74388599906],[-71.255407,41.74395199906],[-71.255433,41.74398499906],[-71.255438,41.74399799906],[-71.255437,41.74401699906],[-71.255427,41.74403699906],[-71.255375,41.74408599906],[-71.255358,41.74409599906],[-71.255265,41.74411799906],[-71.255237,41.74412799906],[-71.25519,41.74415199906],[-71.255174,41.74415599906],[-71.255144,41.74418199906],[-71.255139,41.74420799906],[-71.25512,41.74425199906],[-71.255117,41.74427099906],[-71.255069,41.74431399906],[-71.255048,41.74434999906],[-71.255036,41.74439699906],[-71.254984,41.74453999906],[-71.254959,41.74458099906],[-71.254924,41.74461299906],[-71.254856,41.74465499906],[-71.254823,41.74468399906],[-71.254802,41.74469699906],[-71.254775,41.74470199906],[-71.25464,41.74477099906],[-71.256402,41.74677699906],[-71.257566,41.74809499906],[-71.261067,41.75208199906],[-71.263755,41.75322499906],[-71.263871,41.75327499906],[-71.26467,41.75361599906],[-71.265878,41.75412799906],[-71.266137,41.75423799906],[-71.270835,41.75623599906],[-71.283207,41.76148799906],[-71.283421,41.76157899906],[-71.284057,41.76185399906],[-71.284404,41.76200499906],[-71.284748,41.75891799906],[-71.28641,41.74404799906],[-71.286593,41.74240099906]]]}}"}, +{"type": "blockgroup", "typeId": 306012, "areaId": 29293, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.264721,41.73168499906],[-71.263939,41.72950699906],[-71.262877,41.72969399906],[-71.262714,41.72949999906],[-71.262665,41.72939999906],[-71.262556,41.72933999906],[-71.26242,41.72926499906],[-71.262397,41.72904999906],[-71.263046,41.72729299906],[-71.26322,41.72610299906],[-71.263323,41.72490699906],[-71.26341,41.72391399906],[-71.262093,41.72301399906],[-71.257359,41.72309699906],[-71.256103,41.72469199906],[-71.255796,41.72470099906],[-71.254888,41.72477899906],[-71.254906,41.72486499906],[-71.254918,41.72489699906],[-71.254948,41.72502599906],[-71.254971,41.72515599906],[-71.255026,41.72535899906],[-71.255166,41.72574399906],[-71.25532,41.72608399906],[-71.255601,41.72658899906],[-71.255913,41.72692999906],[-71.25618,41.72721299906],[-71.256302,41.72731399906],[-71.256378,41.72752399906],[-71.256638,41.72779799906],[-71.256867,41.72806799906],[-71.256996,41.72829999906],[-71.257141,41.72853999906],[-71.257286,41.72885299906],[-71.257416,41.72920099906],[-71.257561,41.72951399906],[-71.257759,41.72987899906],[-71.257957,41.73023099906],[-71.258149,41.73059399906],[-71.258261,41.73080799906],[-71.257569,41.73105799906],[-71.256988,41.73127199906],[-71.256455,41.73145799906],[-71.255623,41.73175399906],[-71.255035,41.73197699906],[-71.254738,41.73207799906],[-71.253944,41.73235899906],[-71.253494,41.73252099906],[-71.253113,41.73266299906],[-71.252663,41.73282099906],[-71.252327,41.73293999906],[-71.251456,41.73325599906],[-71.251381,41.73328299906],[-71.250931,41.73345399906],[-71.250656,41.73354499906],[-71.24987,41.73382099906],[-71.248856,41.73420099906],[-71.248795,41.73424299906],[-71.24865,41.73428599906],[-71.248482,41.73431699906],[-71.248306,41.73434299906],[-71.2482,41.73434499906],[-71.247986,41.73431699906],[-71.247627,41.73424299906],[-71.24646,41.73411299906],[-71.245397,41.73398899906],[-71.245237,41.73398299906],[-71.24515,41.73397299906],[-71.24796,41.73717199906],[-71.249344,41.73874399906],[-71.252041,41.74181799906],[-71.253381,41.74333799906],[-71.25464,41.74477099906],[-71.254775,41.74470199906],[-71.254802,41.74469699906],[-71.254823,41.74468399906],[-71.254856,41.74465499906],[-71.254924,41.74461299906],[-71.254959,41.74458099906],[-71.254984,41.74453999906],[-71.255036,41.74439699906],[-71.255048,41.74434999906],[-71.255069,41.74431399906],[-71.255117,41.74427099906],[-71.25512,41.74425199906],[-71.255139,41.74420799906],[-71.255144,41.74418199906],[-71.255174,41.74415599906],[-71.25519,41.74415199906],[-71.255237,41.74412799906],[-71.255265,41.74411799906],[-71.255358,41.74409599906],[-71.255375,41.74408599906],[-71.255427,41.74403699906],[-71.255437,41.74401699906],[-71.255438,41.74399799906],[-71.255433,41.74398499906],[-71.255407,41.74395199906],[-71.25534,41.74388599906],[-71.255308,41.74383599906],[-71.2553,41.74380899906],[-71.255301,41.74375799906],[-71.255309,41.74373499906],[-71.255323,41.74371699906],[-71.255367,41.74369499906],[-71.255408,41.74369499906],[-71.255494,41.74374899906],[-71.255585,41.74374199906],[-71.255596,41.74373699906],[-71.255648,41.74368699906],[-71.256332,41.74321299906],[-71.257005,41.74287299906],[-71.257687,41.74206099906],[-71.258137,41.74176499906],[-71.258331,41.74163899906],[-71.259027,41.74142399906],[-71.259581,41.74100799906],[-71.259581,41.74046899906],[-71.259661,41.74000699906],[-71.259688,41.73984799906],[-71.259702,41.73976899906],[-71.259829,41.73957299906],[-71.259869,41.73951199906],[-71.259904,41.73949299906],[-71.259999,41.73941899906],[-71.260186,41.73926299906],[-71.260514,41.73834799906],[-71.260627,41.73820599906],[-71.263086,41.73705099906],[-71.264294,41.73538299906],[-71.26465,41.73448999906],[-71.264721,41.73168499906]]]}}"}, +{"type": "blockgroup", "typeId": 306013, "areaId": 29294, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.262093,41.72301399906],[-71.259862,41.72116199906],[-71.255492,41.71460099906],[-71.25543,41.71480799906],[-71.25153,41.71540799906],[-71.25023,41.71220799906],[-71.246558,41.70341499906],[-71.24643,41.70310799906],[-71.24643,41.70260799906],[-71.24443,41.70120799906],[-71.243565,41.69789399906],[-71.24323,41.69660799906],[-71.22429,41.69164299906],[-71.210429,41.68800899906],[-71.208371,41.69059799906],[-71.222471,41.70767899906],[-71.225998,41.71224199906],[-71.226254,41.71255299906],[-71.226408,41.71272499906],[-71.226403,41.71263299906],[-71.226826,41.71311399906],[-71.227175,41.71351199906],[-71.227993,41.71444299906],[-71.229468,41.71612299906],[-71.231071,41.71794799906],[-71.235982,41.72353799906],[-71.243262,41.73183199906],[-71.24515,41.73397299906],[-71.245237,41.73398299906],[-71.245397,41.73398899906],[-71.24646,41.73411299906],[-71.247627,41.73424299906],[-71.247986,41.73431699906],[-71.2482,41.73434499906],[-71.248306,41.73434299906],[-71.248482,41.73431699906],[-71.24865,41.73428599906],[-71.248795,41.73424299906],[-71.248856,41.73420099906],[-71.24987,41.73382099906],[-71.250656,41.73354499906],[-71.250931,41.73345399906],[-71.251381,41.73328299906],[-71.251456,41.73325599906],[-71.252327,41.73293999906],[-71.252663,41.73282099906],[-71.253113,41.73266299906],[-71.253494,41.73252099906],[-71.253944,41.73235899906],[-71.254738,41.73207799906],[-71.255035,41.73197699906],[-71.255623,41.73175399906],[-71.256455,41.73145799906],[-71.256988,41.73127199906],[-71.257569,41.73105799906],[-71.258261,41.73080799906],[-71.258149,41.73059399906],[-71.257957,41.73023099906],[-71.257759,41.72987899906],[-71.257561,41.72951399906],[-71.257416,41.72920099906],[-71.257286,41.72885299906],[-71.257141,41.72853999906],[-71.256996,41.72829999906],[-71.256867,41.72806799906],[-71.256638,41.72779799906],[-71.256378,41.72752399906],[-71.256302,41.72731399906],[-71.25618,41.72721299906],[-71.255913,41.72692999906],[-71.255601,41.72658899906],[-71.25532,41.72608399906],[-71.255166,41.72574399906],[-71.255026,41.72535899906],[-71.254971,41.72515599906],[-71.254948,41.72502599906],[-71.254918,41.72489699906],[-71.254906,41.72486499906],[-71.254888,41.72477899906],[-71.255796,41.72470099906],[-71.256103,41.72469199906],[-71.257359,41.72309699906],[-71.262093,41.72301399906]]]}}"}, +{"type": "blockgroup", "typeId": 306021, "areaId": 29295, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.281494,41.72535299906],[-71.281456,41.72482699906],[-71.281436,41.72443099906],[-71.281433,41.72438099906],[-71.281427,41.72432599906],[-71.281425,41.72430399906],[-71.28138,41.72381099906],[-71.281357,41.72356799906],[-71.281349,41.72337899906],[-71.281288,41.72248399906],[-71.281258,41.72187699906],[-71.27948,41.72177699906],[-71.278763,41.72174199906],[-71.277687,41.72168199906],[-71.275917,41.72158599906],[-71.275758,41.72157799906],[-71.274721,41.72152899906],[-71.273666,41.72147299906],[-71.27359,41.72146999906],[-71.273491,41.72146299906],[-71.27285,41.72143499906],[-71.272125,41.72139599906],[-71.271712,41.72137599906],[-71.271179,41.72135099906],[-71.270325,41.72130999906],[-71.269257,41.72124099906],[-71.26915,41.72065699906],[-71.267693,41.72066399906],[-71.266853,41.72067999906],[-71.265106,41.72069199906],[-71.264834,41.72068699906],[-71.264656,41.72068299906],[-71.264211,41.72069499906],[-71.263836,41.72069699906],[-71.263385,41.72069999906],[-71.262837,41.72071399906],[-71.262703,41.72071699906],[-71.262035,41.72086499906],[-71.261339,41.72101699906],[-71.259862,41.72116199906],[-71.262093,41.72301399906],[-71.26341,41.72391399906],[-71.263323,41.72490699906],[-71.26322,41.72610299906],[-71.263046,41.72729299906],[-71.262397,41.72904999906],[-71.26242,41.72926499906],[-71.262556,41.72933999906],[-71.262665,41.72939999906],[-71.262738,41.72938599906],[-71.263115,41.72931399906],[-71.263763,41.72923899906],[-71.264237,41.72920699906],[-71.265076,41.72917699906],[-71.265663,41.72916999906],[-71.265923,41.72916499906],[-71.266716,41.72914399906],[-71.267509,41.72912399906],[-71.26786,41.72912199906],[-71.268387,41.72914699906],[-71.268845,41.72917399906],[-71.269737,41.72922399906],[-71.26986,41.72804299906],[-71.269946,41.72723199906],[-71.269951,41.72718499906],[-71.270027,41.72647599906],[-71.270027,41.72642199906],[-71.270042,41.72628299906],[-71.270043,41.72627099906],[-71.270058,41.72602299906],[-71.270119,41.72581699906],[-71.270088,41.72542099906],[-71.27034,41.72541599906],[-71.270906,41.72545699906],[-71.270973,41.72546199906],[-71.271622,41.72548999906],[-71.272308,41.72553499906],[-71.273056,41.72557899906],[-71.273186,41.72558099906],[-71.273903,41.72561999906],[-71.274424,41.72565299906],[-71.274712,41.72567199906],[-71.275215,41.72569399906],[-71.275436,41.72569399906],[-71.275554,41.72568799906],[-71.276004,41.72566599906],[-71.277306,41.72559799906],[-71.278008,41.72556199906],[-71.278732,41.72551599906],[-71.279175,41.72551099906],[-71.280067,41.72545299906],[-71.280716,41.72543099906],[-71.281008,41.72540199906],[-71.281076,41.72539499906],[-71.281494,41.72535299906]]]}}"}, +{"type": "blockgroup", "typeId": 306022, "areaId": 29296, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.26915,41.72065699906],[-71.269055,41.72024099906],[-71.269005,41.72002099906],[-71.268883,41.71944199906],[-71.268829,41.71911899906],[-71.268736,41.71863699906],[-71.268631,41.71810299906],[-71.268613,41.71801099906],[-71.268463,41.71732499906],[-71.268356,41.71684099906],[-71.268318,41.71666599906],[-71.268261,41.71640799906],[-71.268204,41.71615499906],[-71.268166,41.71598499906],[-71.268028,41.71535699906],[-71.267975,41.71511899906],[-71.267883,41.71470299906],[-71.267868,41.71463499906],[-71.267784,41.71423599906],[-71.267601,41.71340599906],[-71.267538,41.71308799906],[-71.267494,41.71288599906],[-71.263718,41.71341699906],[-71.263379,41.71346499906],[-71.262371,41.71360699906],[-71.261582,41.71371899906],[-71.261079,41.71378399906],[-71.259514,41.71400299906],[-71.259227,41.71403799906],[-71.258159,41.71417199906],[-71.258099,41.71417899906],[-71.255492,41.71460099906],[-71.259862,41.72116199906],[-71.261339,41.72101699906],[-71.262035,41.72086499906],[-71.262703,41.72071699906],[-71.262837,41.72071399906],[-71.263385,41.72069999906],[-71.263836,41.72069699906],[-71.264211,41.72069499906],[-71.264656,41.72068299906],[-71.264834,41.72068699906],[-71.265106,41.72069199906],[-71.266853,41.72067999906],[-71.267693,41.72066399906],[-71.26915,41.72065699906]]]}}"}, +{"type": "blockgroup", "typeId": 306023, "areaId": 29297, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.281258,41.72187699906],[-71.281204,41.72116199906],[-71.281158,41.72049599906],[-71.281131,41.72017999906],[-71.28112,41.72004699906],[-71.281105,41.71973599906],[-71.281098,41.71958299906],[-71.281052,41.71895399906],[-71.280991,41.71798199906],[-71.280983,41.71783399906],[-71.280945,41.71719099906],[-71.280932,41.71701399906],[-71.280907,41.71664199906],[-71.280899,41.71652899906],[-71.280861,41.71607999906],[-71.280808,41.71530599906],[-71.280784,41.71495999906],[-71.280768,41.71469799906],[-71.280731,41.71409199906],[-71.280701,41.71366499906],[-71.280683,41.71339499906],[-71.280651,41.71294699906],[-71.280647,41.71287699906],[-71.280631,41.71263699906],[-71.280625,41.71254099906],[-71.280614,41.71239099906],[-71.280587,41.71199999906],[-71.280583,41.71193999906],[-71.280574,41.71180199906],[-71.280548,41.71143399906],[-71.28054,41.71130799906],[-71.280532,41.71116899906],[-71.280524,41.71105899906],[-71.279677,41.71118299906],[-71.27818,41.71140299906],[-71.275623,41.71173199906],[-71.274539,41.71189899906],[-71.272413,41.71218899906],[-71.272151,41.71222399906],[-71.271172,41.71235899906],[-71.270021,41.71252199906],[-71.267494,41.71288599906],[-71.267538,41.71308799906],[-71.267601,41.71340599906],[-71.267784,41.71423599906],[-71.267868,41.71463499906],[-71.267883,41.71470299906],[-71.267975,41.71511899906],[-71.268028,41.71535699906],[-71.268166,41.71598499906],[-71.268204,41.71615499906],[-71.268261,41.71640799906],[-71.268318,41.71666599906],[-71.268356,41.71684099906],[-71.268463,41.71732499906],[-71.268613,41.71801099906],[-71.268631,41.71810299906],[-71.268736,41.71863699906],[-71.268829,41.71911899906],[-71.268883,41.71944199906],[-71.269005,41.72002099906],[-71.269055,41.72024099906],[-71.26915,41.72065699906],[-71.269257,41.72124099906],[-71.270325,41.72130999906],[-71.271179,41.72135099906],[-71.271712,41.72137599906],[-71.272125,41.72139599906],[-71.27285,41.72143499906],[-71.273491,41.72146299906],[-71.27359,41.72146999906],[-71.273666,41.72147299906],[-71.274721,41.72152899906],[-71.275758,41.72157799906],[-71.275917,41.72158599906],[-71.277687,41.72168199906],[-71.278763,41.72174199906],[-71.27948,41.72177699906],[-71.281258,41.72187699906]]]}}"}, +{"type": "blockgroup", "typeId": 306024, "areaId": 29298, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.294039,41.71027999906],[-71.291377,41.70954999906],[-71.286964,41.71016299906],[-71.286889,41.71017399906],[-71.281138,41.71097399906],[-71.28071,41.71103399906],[-71.280524,41.71105899906],[-71.280532,41.71116899906],[-71.28054,41.71130799906],[-71.280548,41.71143399906],[-71.280574,41.71180199906],[-71.280583,41.71193999906],[-71.280587,41.71199999906],[-71.280614,41.71239099906],[-71.280625,41.71254099906],[-71.280631,41.71263699906],[-71.280647,41.71287699906],[-71.280651,41.71294699906],[-71.280683,41.71339499906],[-71.280701,41.71366499906],[-71.280731,41.71409199906],[-71.280768,41.71469799906],[-71.280784,41.71495999906],[-71.280808,41.71530599906],[-71.280861,41.71607999906],[-71.280899,41.71652899906],[-71.280907,41.71664199906],[-71.280932,41.71701399906],[-71.280945,41.71719099906],[-71.280983,41.71783399906],[-71.280991,41.71798199906],[-71.281052,41.71895399906],[-71.281098,41.71958299906],[-71.281105,41.71973599906],[-71.28112,41.72004699906],[-71.281131,41.72017999906],[-71.281158,41.72049599906],[-71.281204,41.72116199906],[-71.281258,41.72187699906],[-71.281288,41.72248399906],[-71.281349,41.72337899906],[-71.281357,41.72356799906],[-71.28138,41.72381099906],[-71.281425,41.72430399906],[-71.281427,41.72432599906],[-71.281433,41.72438099906],[-71.281456,41.72437699906],[-71.281838,41.72430599906],[-71.282615,41.72419599906],[-71.283753,41.72403399906],[-71.284653,41.72391699906],[-71.285425,41.72388399906],[-71.286103,41.72385499906],[-71.286499,41.72383799906],[-71.287478,41.72380299906],[-71.287494,41.72340099906],[-71.287604,41.72294899906],[-71.289113,41.71674499906],[-71.289294,41.71600099906],[-71.292854,41.71175899906],[-71.293989,41.71040399906],[-71.294039,41.71027999906]]]}}"}, +{"type": "blockgroup", "typeId": 307001, "areaId": 29299, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.276192,41.67708499906],[-71.275932,41.67641899906],[-71.275894,41.67629799906],[-71.275703,41.67577099906],[-71.275589,41.67543499906],[-71.275467,41.67512299906],[-71.275169,41.67436699906],[-71.275101,41.67417499906],[-71.274132,41.67436099906],[-71.273392,41.67452399906],[-71.273361,41.67452499906],[-71.272461,41.67470899906],[-71.271507,41.67491699906],[-71.270546,41.67509399906],[-71.270286,41.67513999906],[-71.269936,41.67520999906],[-71.269592,41.67526999906],[-71.269272,41.67533899906],[-71.269203,41.67535499906],[-71.268989,41.67539499906],[-71.268501,41.67549499906],[-71.268188,41.67555499906],[-71.26783,41.67563799906],[-71.267883,41.67578099906],[-71.268295,41.67698499906],[-71.268608,41.67787499906],[-71.269692,41.67766399906],[-71.270058,41.67759799906],[-71.27095,41.67742299906],[-71.271611,41.67728999906],[-71.27243,41.67712399906],[-71.273285,41.67694899906],[-71.274185,41.67676499906],[-71.274353,41.67744999906],[-71.275047,41.67730599906],[-71.276192,41.67708499906]]]}}"}, +{"type": "blockgroup", "typeId": 307002, "areaId": 29300, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.275101,41.67417499906],[-71.274895,41.67361599906],[-71.27449,41.67253499906],[-71.2742,41.67174799906],[-71.273887,41.67092499906],[-71.273377,41.67102999906],[-71.272606,41.67117999906],[-71.271248,41.67147699906],[-71.270569,41.67162599906],[-71.269737,41.67179999906],[-71.269402,41.67186499906],[-71.268822,41.67197599906],[-71.268707,41.67200099906],[-71.268601,41.67202099906],[-71.268242,41.67209499906],[-71.267723,41.67220899906],[-71.267555,41.67224399906],[-71.267479,41.67226299906],[-71.267395,41.67229199906],[-71.267143,41.67243199906],[-71.26709,41.67246899906],[-71.26696,41.67252099906],[-71.266899,41.67253199906],[-71.266785,41.67254299906],[-71.267128,41.67361699906],[-71.267441,41.67458799906],[-71.267632,41.67509699906],[-71.267715,41.67535199906],[-71.26783,41.67563799906],[-71.268188,41.67555499906],[-71.268501,41.67549499906],[-71.268989,41.67539499906],[-71.269203,41.67535499906],[-71.269272,41.67533899906],[-71.269592,41.67526999906],[-71.269936,41.67520999906],[-71.270286,41.67513999906],[-71.270546,41.67509399906],[-71.271507,41.67491699906],[-71.272461,41.67470899906],[-71.273361,41.67452499906],[-71.273392,41.67452399906],[-71.274132,41.67436099906],[-71.275101,41.67417499906]]]}}"}, +{"type": "blockgroup", "typeId": 307003, "areaId": 29301, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.273887,41.67092499906],[-71.273567,41.67006699906],[-71.273384,41.66956199906],[-71.27327,41.66927099906],[-71.273171,41.66898499906],[-71.273064,41.66871299906],[-71.272667,41.66765799906],[-71.272431,41.66700899906],[-71.272049,41.66602199906],[-71.271515,41.66612699906],[-71.270416,41.66635099906],[-71.269814,41.66647099906],[-71.269379,41.66656999906],[-71.269539,41.66698599906],[-71.270012,41.66821499906],[-71.269365,41.66840199906],[-71.268448,41.66858799906],[-71.267784,41.66873599906],[-71.267433,41.66880999906],[-71.267784,41.66969999906],[-71.267929,41.67018299906],[-71.267754,41.67022299906],[-71.267494,41.67026799906],[-71.267372,41.67029299906],[-71.267349,41.67029399906],[-71.267304,41.67028599906],[-71.26664,41.67008199906],[-71.267159,41.67128799906],[-71.267555,41.67224399906],[-71.267723,41.67220899906],[-71.268242,41.67209499906],[-71.268601,41.67202099906],[-71.268707,41.67200099906],[-71.268822,41.67197599906],[-71.269402,41.67186499906],[-71.269737,41.67179999906],[-71.270569,41.67162599906],[-71.271248,41.67147699906],[-71.272606,41.67117999906],[-71.273377,41.67102999906],[-71.273887,41.67092499906]]]}}"}, +{"type": "blockgroup", "typeId": 307004, "areaId": 29302, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.28279,41.67563699906],[-71.28232,41.66902099906],[-71.281893,41.66550099906],[-71.276467,41.66611399906],[-71.276613,41.66651999906],[-71.276637,41.66658099906],[-71.27671,41.66676699906],[-71.276069,41.66688799906],[-71.275276,41.66707499906],[-71.274575,41.66721899906],[-71.273804,41.66740999906],[-71.273109,41.66755899906],[-71.272667,41.66765799906],[-71.273064,41.66871299906],[-71.273171,41.66898499906],[-71.27327,41.66927099906],[-71.273384,41.66956199906],[-71.273567,41.67006699906],[-71.273887,41.67092499906],[-71.2742,41.67174799906],[-71.27449,41.67253499906],[-71.274895,41.67361599906],[-71.275101,41.67417499906],[-71.275169,41.67436699906],[-71.275467,41.67512299906],[-71.275589,41.67543499906],[-71.275703,41.67577099906],[-71.275894,41.67629799906],[-71.275932,41.67641899906],[-71.276192,41.67708499906],[-71.276695,41.67697199906],[-71.277435,41.67682599906],[-71.278717,41.67657999906],[-71.278952,41.67654499906],[-71.278992,41.67653899906],[-71.279057,41.67654399906],[-71.28279,41.67563699906]]]}}"}, +{"type": "blockgroup", "typeId": 308001, "areaId": 29303, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.270012,41.66821499906],[-71.269539,41.66698599906],[-71.269379,41.66656999906],[-71.269157,41.66598399906],[-71.269112,41.66586799906],[-71.268891,41.66529599906],[-71.268776,41.66498299906],[-71.268715,41.66481299906],[-71.268364,41.66389299906],[-71.268291,41.66370499906],[-71.268104,41.66321799906],[-71.267029,41.66345499906],[-71.266701,41.66352299906],[-71.266589,41.66353999906],[-71.266243,41.66361999906],[-71.265373,41.66381599906],[-71.265289,41.66383199906],[-71.265175,41.66385199906],[-71.264763,41.66394599906],[-71.264404,41.66401599906],[-71.264137,41.66408399906],[-71.263756,41.66421799906],[-71.26358,41.66427099906],[-71.263458,41.66429999906],[-71.263268,41.66434399906],[-71.26271,41.66445399906],[-71.262138,41.66458299906],[-71.261666,41.66467899906],[-71.261192,41.66477699906],[-71.260429,41.66492299906],[-71.259842,41.66504699906],[-71.259445,41.66511799906],[-71.258789,41.66526999906],[-71.258209,41.66538499906],[-71.257645,41.66551299906],[-71.257332,41.66556399906],[-71.257672,41.66713799906],[-71.257711,41.66732099906],[-71.257896,41.66817899906],[-71.258263,41.66992299906],[-71.258389,41.67049899906],[-71.258476,41.67090099906],[-71.258736,41.67217499906],[-71.258843,41.67268599906],[-71.258987,41.67331299906],[-71.259033,41.67353299906],[-71.259079,41.67372099906],[-71.259102,41.67383799906],[-71.259376,41.67506599906],[-71.259674,41.67645699906],[-71.259796,41.67703999906],[-71.259895,41.67754199906],[-71.260063,41.67830399906],[-71.260144,41.67869199906],[-71.260205,41.67898499906],[-71.260254,41.67921899906],[-71.260368,41.67973899906],[-71.261037,41.67959799906],[-71.261145,41.67957499906],[-71.261261,41.67955099906],[-71.262575,41.67928599906],[-71.262749,41.67925099906],[-71.26313,41.67918099906],[-71.263763,41.67904199906],[-71.264244,41.67893799906],[-71.264473,41.67889299906],[-71.264709,41.67883899906],[-71.264816,41.67879599906],[-71.264931,41.67874399906],[-71.265175,41.67860899906],[-71.265373,41.67851899906],[-71.26548,41.67848599906],[-71.265671,41.67844599906],[-71.266342,41.67831999906],[-71.266846,41.67821999906],[-71.267761,41.67804899906],[-71.268608,41.67787499906],[-71.268295,41.67698499906],[-71.267883,41.67578099906],[-71.26783,41.67563799906],[-71.267715,41.67535199906],[-71.267632,41.67509699906],[-71.267441,41.67458799906],[-71.267128,41.67361699906],[-71.266785,41.67254299906],[-71.266899,41.67253199906],[-71.26696,41.67252099906],[-71.26709,41.67246899906],[-71.267143,41.67243199906],[-71.267395,41.67229199906],[-71.267479,41.67226299906],[-71.267555,41.67224399906],[-71.267159,41.67128799906],[-71.26664,41.67008199906],[-71.267304,41.67028599906],[-71.267349,41.67029399906],[-71.267372,41.67029299906],[-71.267494,41.67026799906],[-71.267754,41.67022299906],[-71.267929,41.67018299906],[-71.267784,41.66969999906],[-71.267433,41.66880999906],[-71.267784,41.66873599906],[-71.268448,41.66858799906],[-71.269365,41.66840199906],[-71.270012,41.66821499906]]]}}"}, +{"type": "blockgroup", "typeId": 308002, "areaId": 29304, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.281994,41.65015099906],[-71.277725,41.65085399906],[-71.275727,41.65067799906],[-71.27478,41.64983199906],[-71.273438,41.64751999906],[-71.270203,41.64208899906],[-71.268048,41.63986799906],[-71.267197,41.63899099906],[-71.2659,41.63854399906],[-71.265381,41.63836599906],[-71.257016,41.63814499906],[-71.259755,41.64280999906],[-71.259895,41.64309299906],[-71.260202,41.64359999906],[-71.260968,41.64491699906],[-71.261307,41.64545199906],[-71.261482,41.64569599906],[-71.261604,41.64585099906],[-71.261703,41.64602499906],[-71.261848,41.64631399906],[-71.261894,41.64644399906],[-71.26194,41.64659599906],[-71.261963,41.64691599906],[-71.261963,41.64715899906],[-71.261977,41.64730099906],[-71.261986,41.64737899906],[-71.262039,41.64762999906],[-71.262093,41.64776399906],[-71.26223,41.64805399906],[-71.262688,41.64891399906],[-71.262795,41.64911499906],[-71.2631,41.64979799906],[-71.263245,41.65018699906],[-71.263313,41.65036999906],[-71.263508,41.65091399906],[-71.263565,41.65107199906],[-71.263962,41.65215899906],[-71.264286,41.65300699906],[-71.264381,41.65325399906],[-71.264519,41.65363399906],[-71.264702,41.65415199906],[-71.265137,41.65529199906],[-71.265648,41.65664199906],[-71.265953,41.65747399906],[-71.266098,41.65786199906],[-71.266663,41.65939099906],[-71.266731,41.65955699906],[-71.266808,41.65985699906],[-71.266892,41.66006699906],[-71.26694,41.66019499906],[-71.267009,41.66036299906],[-71.267105,41.66056799906],[-71.267181,41.66071899906],[-71.267311,41.66110799906],[-71.267342,41.66122399906],[-71.26746,41.66153099906],[-71.267551,41.66176699906],[-71.267639,41.66199799906],[-71.267708,41.66216699906],[-71.267914,41.66271699906],[-71.268104,41.66321799906],[-71.268291,41.66370499906],[-71.268364,41.66389299906],[-71.268715,41.66481299906],[-71.268776,41.66498299906],[-71.268891,41.66529599906],[-71.269112,41.66586799906],[-71.269157,41.66598399906],[-71.269379,41.66656999906],[-71.269814,41.66647099906],[-71.270416,41.66635099906],[-71.271515,41.66612699906],[-71.272049,41.66602199906],[-71.272431,41.66700899906],[-71.272667,41.66765799906],[-71.273109,41.66755899906],[-71.273804,41.66740999906],[-71.274575,41.66721899906],[-71.275276,41.66707499906],[-71.276069,41.66688799906],[-71.27671,41.66676699906],[-71.276637,41.66658099906],[-71.276613,41.66651999906],[-71.276467,41.66611399906],[-71.281893,41.66550099906],[-71.281943,41.65782999906],[-71.281994,41.65015099906]]]}}"}, +{"type": "blockgroup", "typeId": 308003, "areaId": 29305, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.268104,41.66321799906],[-71.267914,41.66271699906],[-71.267708,41.66216699906],[-71.267639,41.66199799906],[-71.267551,41.66176699906],[-71.26746,41.66153099906],[-71.267342,41.66122399906],[-71.267311,41.66110799906],[-71.267181,41.66071899906],[-71.267105,41.66056799906],[-71.267009,41.66036299906],[-71.26694,41.66019499906],[-71.266892,41.66006699906],[-71.266808,41.65985699906],[-71.266731,41.65955699906],[-71.266663,41.65939099906],[-71.266098,41.65786199906],[-71.265953,41.65747399906],[-71.265648,41.65664199906],[-71.265137,41.65529199906],[-71.264702,41.65415199906],[-71.264519,41.65363399906],[-71.264381,41.65325399906],[-71.264286,41.65300699906],[-71.263962,41.65215899906],[-71.263565,41.65107199906],[-71.263508,41.65091399906],[-71.263313,41.65036999906],[-71.263245,41.65018699906],[-71.2631,41.64979799906],[-71.262795,41.64911499906],[-71.262688,41.64891399906],[-71.26223,41.64805399906],[-71.262093,41.64776399906],[-71.262039,41.64762999906],[-71.261986,41.64737899906],[-71.261977,41.64730099906],[-71.261963,41.64715899906],[-71.261963,41.64691599906],[-71.26194,41.64659599906],[-71.261894,41.64644399906],[-71.261848,41.64631399906],[-71.261703,41.64602499906],[-71.261604,41.64585099906],[-71.261482,41.64569599906],[-71.261307,41.64545199906],[-71.260968,41.64491699906],[-71.260202,41.64359999906],[-71.259895,41.64309299906],[-71.259755,41.64280999906],[-71.257016,41.63814499906],[-71.256728,41.63813699906],[-71.255263,41.63911299906],[-71.254378,41.63960199906],[-71.252914,41.64063099906],[-71.251373,41.64181399906],[-71.250137,41.64296599906],[-71.249068,41.64399699906],[-71.248855,41.64420199906],[-71.247771,41.64526999906],[-71.246551,41.64609399906],[-71.244903,41.64746699906],[-71.242416,41.64974099906],[-71.239638,41.65216699906],[-71.236982,41.65464699906],[-71.23535,41.65611199906],[-71.235151,41.65633299906],[-71.234739,41.65658499906],[-71.2321,41.65902599906],[-71.230147,41.66066599906],[-71.227614,41.66303899906],[-71.225966,41.66473299906],[-71.224898,41.66583099906],[-71.224608,41.66605299906],[-71.224073,41.66667999906],[-71.222562,41.66846599906],[-71.221356,41.67003699906],[-71.221143,41.67041899906],[-71.221006,41.67180699906],[-71.220838,41.67319599906],[-71.220716,41.67507999906],[-71.220716,41.67534699906],[-71.220304,41.67573599906],[-71.217832,41.67891799906],[-71.217634,41.67914899906],[-71.235504,41.67728099906],[-71.23712,41.67654699906],[-71.237145,41.67667799906],[-71.237153,41.67678099906],[-71.237167,41.67687599906],[-71.23719,41.67699099906],[-71.237198,41.67706999906],[-71.237218,41.67716699906],[-71.23723,41.67721899906],[-71.237244,41.67724699906],[-71.237282,41.67721499906],[-71.237335,41.67719099906],[-71.237534,41.67714199906],[-71.237572,41.67714099906],[-71.237686,41.67712599906],[-71.237724,41.67712899906],[-71.237762,41.67712399906],[-71.237993,41.67709399906],[-71.238172,41.67707599906],[-71.23826,41.67706499906],[-71.23859,41.67703499906],[-71.238686,41.67702599906],[-71.238976,41.67700199906],[-71.239298,41.67697799906],[-71.239402,41.67697399906],[-71.239483,41.67696899906],[-71.239678,41.67695499906],[-71.239846,41.67693099906],[-71.239963,41.67691899906],[-71.240094,41.67689399906],[-71.24016,41.67688799906],[-71.240219,41.67687799906],[-71.240288,41.67688499906],[-71.240372,41.67688899906],[-71.240445,41.67690099906],[-71.240536,41.67690899906],[-71.240696,41.67693299906],[-71.240877,41.67697299906],[-71.240973,41.67698499906],[-71.241051,41.67700299906],[-71.241266,41.67703799906],[-71.241402,41.67707099906],[-71.241425,41.67715199906],[-71.241615,41.67805299906],[-71.241631,41.67808899906],[-71.241646,41.67815199906],[-71.241661,41.67818299906],[-71.24173,41.67827199906],[-71.241829,41.67832399906],[-71.241882,41.67833599906],[-71.241928,41.67835299906],[-71.242027,41.67836499906],[-71.242195,41.67836199906],[-71.242325,41.67834999906],[-71.242416,41.67833499906],[-71.242668,41.67827599906],[-71.242821,41.67822799906],[-71.242973,41.67816599906],[-71.24305,41.67812899906],[-71.243256,41.67799399906],[-71.243385,41.67788399906],[-71.243507,41.67775099906],[-71.243713,41.67748499906],[-71.243797,41.67738499906],[-71.243965,41.67714299906],[-71.244049,41.67701099906],[-71.244209,41.67672399906],[-71.244278,41.67657399906],[-71.244682,41.67576899906],[-71.244919,41.67532299906],[-71.244995,41.67522199906],[-71.245094,41.67515699906],[-71.24514,41.67513799906],[-71.245285,41.67509999906],[-71.246452,41.67495999906],[-71.24659,41.67494799906],[-71.247512,41.67484199906],[-71.247818,41.67480699906],[-71.247994,41.67478999906],[-71.250076,41.67455099906],[-71.251434,41.67441199906],[-71.253617,41.67416499906],[-71.254654,41.67404699906],[-71.255531,41.67394899906],[-71.256378,41.67386399906],[-71.257178,41.67380299906],[-71.257279,41.67379199906],[-71.257332,41.67378699906],[-71.257439,41.67377599906],[-71.258194,41.67368899906],[-71.258613,41.67362699906],[-71.258827,41.67358199906],[-71.259033,41.67353299906],[-71.258987,41.67331299906],[-71.258843,41.67268599906],[-71.258736,41.67217499906],[-71.258476,41.67090099906],[-71.258389,41.67049899906],[-71.258263,41.66992299906],[-71.257896,41.66817899906],[-71.257711,41.66732099906],[-71.257672,41.66713799906],[-71.257332,41.66556399906],[-71.257645,41.66551299906],[-71.258209,41.66538499906],[-71.258789,41.66526999906],[-71.259445,41.66511799906],[-71.259842,41.66504699906],[-71.260429,41.66492299906],[-71.261192,41.66477699906],[-71.261666,41.66467899906],[-71.262138,41.66458299906],[-71.26271,41.66445399906],[-71.263268,41.66434399906],[-71.263458,41.66429999906],[-71.26358,41.66427099906],[-71.263756,41.66421799906],[-71.264137,41.66408399906],[-71.264404,41.66401599906],[-71.264763,41.66394599906],[-71.265175,41.66385199906],[-71.265289,41.66383199906],[-71.265373,41.66381599906],[-71.266243,41.66361999906],[-71.266589,41.66353999906],[-71.266701,41.66352299906],[-71.267029,41.66345499906],[-71.268104,41.66321799906]]]}}"}, +{"type": "blockgroup", "typeId": 309011, "areaId": 29306, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.267494,41.71288599906],[-71.267433,41.71254499906],[-71.267342,41.71214299906],[-71.267242,41.71170199906],[-71.267186,41.71144199906],[-71.267082,41.71096699906],[-71.267075,41.71095399906],[-71.266966,41.71041699906],[-71.266785,41.70952299906],[-71.266533,41.70829399906],[-71.266373,41.70745499906],[-71.266319,41.70723999906],[-71.266052,41.70597499906],[-71.265945,41.70544199906],[-71.265648,41.70399299906],[-71.265244,41.70205099906],[-71.265152,41.70163399906],[-71.264961,41.70067399906],[-71.264702,41.69942699906],[-71.263351,41.69958499906],[-71.261292,41.69980999906],[-71.260765,41.69986099906],[-71.259896,41.69996799906],[-71.25985,41.69997799906],[-71.259788,41.70001899906],[-71.259766,41.70004699906],[-71.259758,41.70007899906],[-71.259743,41.70010999906],[-71.259735,41.70014699906],[-71.259735,41.70018299906],[-71.259712,41.70032299906],[-71.259697,41.70033599906],[-71.259689,41.70034999906],[-71.25962,41.70039199906],[-71.25959,41.70040199906],[-71.25927,41.70044799906],[-71.258698,41.70051399906],[-71.258057,41.70059399906],[-71.256882,41.70074299906],[-71.256088,41.70083499906],[-71.255234,41.70093799906],[-71.254982,41.70098299906],[-71.254944,41.70099299906],[-71.255188,41.70212699906],[-71.254791,41.70239199906],[-71.254616,41.70249899906],[-71.254486,41.70257799906],[-71.254211,41.70273199906],[-71.25415,41.70275099906],[-71.254051,41.70277499906],[-71.253929,41.70279099906],[-71.25338,41.70287899906],[-71.252853,41.70295199906],[-71.2518,41.70312099906],[-71.251251,41.70319999906],[-71.250977,41.70324599906],[-71.250885,41.70325599906],[-71.250076,41.70337099906],[-71.249992,41.70337799906],[-71.249603,41.70340799906],[-71.249176,41.70342899906],[-71.248934,41.70347299906],[-71.248821,41.70349299906],[-71.246558,41.70341499906],[-71.25023,41.71220799906],[-71.25153,41.71540799906],[-71.25543,41.71480799906],[-71.255492,41.71460099906],[-71.258099,41.71417899906],[-71.258159,41.71417199906],[-71.259227,41.71403799906],[-71.259514,41.71400299906],[-71.261079,41.71378399906],[-71.261582,41.71371899906],[-71.262371,41.71360699906],[-71.263379,41.71346499906],[-71.263718,41.71341699906],[-71.267494,41.71288599906]]]}}"}, +{"type": "blockgroup", "typeId": 309012, "areaId": 29307, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.264702,41.69942699906],[-71.264572,41.69877699906],[-71.264418,41.69805499906],[-71.264408,41.69799899906],[-71.263887,41.69555399906],[-71.263628,41.69435199906],[-71.263321,41.69285699906],[-71.26329,41.69275399906],[-71.263245,41.69258899906],[-71.263207,41.69239999906],[-71.263054,41.69172799906],[-71.262985,41.69143599906],[-71.262963,41.69131499906],[-71.262878,41.69094799906],[-71.262817,41.69064299906],[-71.262794,41.69055799906],[-71.26255,41.68946399906],[-71.262436,41.68895299906],[-71.262245,41.68805099906],[-71.262161,41.68769299906],[-71.26197,41.68686799906],[-71.26194,41.68671099906],[-71.260864,41.68685399906],[-71.259834,41.68698199906],[-71.259087,41.68706899906],[-71.257225,41.68730299906],[-71.256615,41.68738699906],[-71.256248,41.68743099906],[-71.255221,41.68755599906],[-71.254791,41.68760299906],[-71.254204,41.68767299906],[-71.253578,41.68774899906],[-71.253189,41.68779199906],[-71.252808,41.68784499906],[-71.252235,41.68791899906],[-71.251366,41.68803499906],[-71.250778,41.68811899906],[-71.250343,41.68817699906],[-71.24929,41.68832799906],[-71.248962,41.68838399906],[-71.248398,41.68846699906],[-71.248245,41.68849299906],[-71.24749,41.68859299906],[-71.247406,41.68860799906],[-71.246582,41.68871899906],[-71.245659,41.68885399906],[-71.244743,41.68898899906],[-71.243835,41.68910999906],[-71.242919,41.68921699906],[-71.22429,41.69164299906],[-71.24323,41.69660799906],[-71.243565,41.69789399906],[-71.24443,41.70120799906],[-71.24643,41.70260799906],[-71.24643,41.70310799906],[-71.246558,41.70341499906],[-71.248821,41.70349299906],[-71.248934,41.70347299906],[-71.249176,41.70342899906],[-71.249603,41.70340799906],[-71.249992,41.70337799906],[-71.250076,41.70337099906],[-71.250885,41.70325599906],[-71.250977,41.70324599906],[-71.251251,41.70319999906],[-71.2518,41.70312099906],[-71.252853,41.70295199906],[-71.25338,41.70287899906],[-71.253929,41.70279099906],[-71.254051,41.70277499906],[-71.25415,41.70275099906],[-71.254211,41.70273199906],[-71.254486,41.70257799906],[-71.254616,41.70249899906],[-71.254791,41.70239199906],[-71.255188,41.70212699906],[-71.254944,41.70099299906],[-71.254982,41.70098299906],[-71.255234,41.70093799906],[-71.256088,41.70083499906],[-71.256882,41.70074299906],[-71.258057,41.70059399906],[-71.258698,41.70051399906],[-71.25927,41.70044799906],[-71.25959,41.70040199906],[-71.25962,41.70039199906],[-71.259689,41.70034999906],[-71.259697,41.70033599906],[-71.259712,41.70032299906],[-71.259735,41.70018299906],[-71.259735,41.70014699906],[-71.259743,41.70010999906],[-71.259758,41.70007899906],[-71.259766,41.70004699906],[-71.259788,41.70001899906],[-71.25985,41.69997799906],[-71.259896,41.69996799906],[-71.260765,41.69986099906],[-71.261292,41.69980999906],[-71.263351,41.69958499906],[-71.264702,41.69942699906]]]}}"}, +{"type": "blockgroup", "typeId": 309013, "areaId": 29308, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.26194,41.68671099906],[-71.261734,41.68579599906],[-71.261627,41.68535199906],[-71.261606,41.68524599906],[-71.261574,41.68508299906],[-71.26139,41.68424699906],[-71.261328,41.68394899906],[-71.261162,41.68320899906],[-71.261154,41.68319999906],[-71.260994,41.68247399906],[-71.260941,41.68225899906],[-71.260895,41.68202099906],[-71.260857,41.68188199906],[-71.260841,41.68179699906],[-71.260666,41.68099899906],[-71.260635,41.68088699906],[-71.260605,41.68073899906],[-71.260506,41.68032599906],[-71.260368,41.67973899906],[-71.260254,41.67921899906],[-71.260205,41.67898499906],[-71.260144,41.67869199906],[-71.260063,41.67830399906],[-71.259895,41.67754199906],[-71.259796,41.67703999906],[-71.259674,41.67645699906],[-71.259376,41.67506599906],[-71.259102,41.67383799906],[-71.259079,41.67372099906],[-71.259033,41.67353299906],[-71.258827,41.67358199906],[-71.258613,41.67362699906],[-71.258194,41.67368899906],[-71.257439,41.67377599906],[-71.257332,41.67378699906],[-71.257279,41.67379199906],[-71.257178,41.67380299906],[-71.256378,41.67386399906],[-71.255531,41.67394899906],[-71.254654,41.67404699906],[-71.253617,41.67416499906],[-71.251434,41.67441199906],[-71.250076,41.67455099906],[-71.247994,41.67478999906],[-71.247818,41.67480699906],[-71.247512,41.67484199906],[-71.24659,41.67494799906],[-71.246452,41.67495999906],[-71.245285,41.67509999906],[-71.24514,41.67513799906],[-71.245094,41.67515699906],[-71.244995,41.67522199906],[-71.244919,41.67532299906],[-71.244682,41.67576899906],[-71.244278,41.67657399906],[-71.244209,41.67672399906],[-71.244049,41.67701099906],[-71.243965,41.67714299906],[-71.243797,41.67738499906],[-71.243713,41.67748499906],[-71.243507,41.67775099906],[-71.243385,41.67788399906],[-71.243256,41.67799399906],[-71.24305,41.67812899906],[-71.242973,41.67816599906],[-71.242821,41.67822799906],[-71.242668,41.67827599906],[-71.242416,41.67833499906],[-71.242325,41.67834999906],[-71.242195,41.67836199906],[-71.242027,41.67836499906],[-71.241928,41.67835299906],[-71.241882,41.67833599906],[-71.241829,41.67832399906],[-71.24173,41.67827199906],[-71.241661,41.67818299906],[-71.241646,41.67815199906],[-71.241631,41.67808899906],[-71.241615,41.67805299906],[-71.241425,41.67715199906],[-71.241402,41.67707099906],[-71.241266,41.67703799906],[-71.241051,41.67700299906],[-71.240973,41.67698499906],[-71.240877,41.67697299906],[-71.240696,41.67693299906],[-71.240536,41.67690899906],[-71.240445,41.67690099906],[-71.240372,41.67688899906],[-71.240288,41.67688499906],[-71.240219,41.67687799906],[-71.24016,41.67688799906],[-71.240094,41.67689399906],[-71.239963,41.67691899906],[-71.239846,41.67693099906],[-71.239678,41.67695499906],[-71.239483,41.67696899906],[-71.239402,41.67697399906],[-71.239298,41.67697799906],[-71.238976,41.67700199906],[-71.238686,41.67702599906],[-71.23859,41.67703499906],[-71.23826,41.67706499906],[-71.238172,41.67707599906],[-71.237993,41.67709399906],[-71.237762,41.67712399906],[-71.237724,41.67712899906],[-71.237686,41.67712599906],[-71.237572,41.67714099906],[-71.237534,41.67714199906],[-71.237335,41.67719099906],[-71.237282,41.67721499906],[-71.237244,41.67724699906],[-71.23723,41.67721899906],[-71.237218,41.67716699906],[-71.237198,41.67706999906],[-71.23719,41.67699099906],[-71.237167,41.67687599906],[-71.237153,41.67678099906],[-71.237145,41.67667799906],[-71.23712,41.67654699906],[-71.235504,41.67728099906],[-71.217634,41.67914899906],[-71.216884,41.68002999906],[-71.215757,41.68135199906],[-71.215047,41.68221199906],[-71.214109,41.68334999906],[-71.212628,41.68524999906],[-71.210858,41.68749299906],[-71.210429,41.68800899906],[-71.22429,41.69164299906],[-71.242919,41.68921699906],[-71.243835,41.68910999906],[-71.244743,41.68898899906],[-71.245659,41.68885399906],[-71.246582,41.68871899906],[-71.247406,41.68860799906],[-71.24749,41.68859299906],[-71.248245,41.68849299906],[-71.248398,41.68846699906],[-71.248962,41.68838399906],[-71.24929,41.68832799906],[-71.250343,41.68817699906],[-71.250778,41.68811899906],[-71.251366,41.68803499906],[-71.252235,41.68791899906],[-71.252808,41.68784499906],[-71.253189,41.68779199906],[-71.253578,41.68774899906],[-71.254204,41.68767299906],[-71.254791,41.68760299906],[-71.255221,41.68755599906],[-71.256248,41.68743099906],[-71.256615,41.68738699906],[-71.257225,41.68730299906],[-71.259087,41.68706899906],[-71.259834,41.68698199906],[-71.260864,41.68685399906],[-71.26194,41.68671099906]]]}}"}, +{"type": "blockgroup", "typeId": 309021, "areaId": 29309, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.280524,41.71105899906],[-71.280522,41.71102599906],[-71.280502,41.71069699906],[-71.280449,41.70995899906],[-71.280418,41.70952299906],[-71.280396,41.70914199906],[-71.280372,41.70873599906],[-71.280347,41.70836399906],[-71.280342,41.70828699906],[-71.280312,41.70783699906],[-71.280304,41.70771099906],[-71.280258,41.70693699906],[-71.280251,41.70683799906],[-71.280205,41.70621299906],[-71.280195,41.70603299906],[-71.280159,41.70535399906],[-71.280136,41.70504399906],[-71.28006,41.70410399906],[-71.280052,41.70407299906],[-71.280029,41.70386999906],[-71.279999,41.70355999906],[-71.279945,41.70314199906],[-71.279922,41.70295399906],[-71.2799,41.70252199906],[-71.2799,41.70244999906],[-71.279877,41.70223399906],[-71.279838,41.70176699906],[-71.2798,41.70106499906],[-71.279785,41.70091699906],[-71.279766,41.70064499906],[-71.279747,41.70036399906],[-71.279747,41.70030099906],[-71.279716,41.69988699906],[-71.279709,41.69972899906],[-71.279671,41.69922599906],[-71.279656,41.69891099906],[-71.279652,41.69885299906],[-71.279633,41.69857799906],[-71.279594,41.69804699906],[-71.279587,41.69782199906],[-71.279564,41.69743099906],[-71.279556,41.69719299906],[-71.279526,41.69657599906],[-71.279472,41.69568599906],[-71.279457,41.69536199906],[-71.279427,41.69472299906],[-71.279411,41.69452499906],[-71.279404,41.69432299906],[-71.279388,41.69410199906],[-71.279381,41.69396699906],[-71.279381,41.69387299906],[-71.27932,41.69290099906],[-71.279304,41.69265799906],[-71.278275,41.69277299906],[-71.276407,41.69299599906],[-71.27552,41.69309799906],[-71.274979,41.69316699906],[-71.274307,41.69325299906],[-71.27391,41.69329699906],[-71.2733,41.69337199906],[-71.272522,41.69345899906],[-71.271565,41.69354999906],[-71.270752,41.69362899906],[-71.269905,41.69370499906],[-71.269188,41.69377699906],[-71.268501,41.69383099906],[-71.267921,41.69389199906],[-71.267322,41.69394799906],[-71.267154,41.69396399906],[-71.266283,41.69405699906],[-71.265477,41.69413799906],[-71.264286,41.69427499906],[-71.263806,41.69432599906],[-71.263667,41.69434099906],[-71.263628,41.69435199906],[-71.263887,41.69555399906],[-71.264408,41.69799899906],[-71.264418,41.69805499906],[-71.264572,41.69877699906],[-71.264702,41.69942699906],[-71.264961,41.70067399906],[-71.265152,41.70163399906],[-71.265244,41.70205099906],[-71.265648,41.70399299906],[-71.265945,41.70544199906],[-71.266052,41.70597499906],[-71.266319,41.70723999906],[-71.266373,41.70745499906],[-71.266533,41.70829399906],[-71.266785,41.70952299906],[-71.266966,41.71041699906],[-71.267075,41.71095399906],[-71.267082,41.71096699906],[-71.267186,41.71144199906],[-71.267242,41.71170199906],[-71.267342,41.71214299906],[-71.267433,41.71254499906],[-71.267494,41.71288599906],[-71.270021,41.71252199906],[-71.271172,41.71235899906],[-71.272151,41.71222399906],[-71.272413,41.71218899906],[-71.274539,41.71189899906],[-71.275623,41.71173199906],[-71.27818,41.71140299906],[-71.279677,41.71118299906],[-71.280524,41.71105899906]]]}}"}, +{"type": "blockgroup", "typeId": 309022, "areaId": 29310, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.312595,41.69289799906],[-71.299996,41.69191299906],[-71.29263,41.69178299906],[-71.290878,41.69176599906],[-71.290939,41.69187799906],[-71.291,41.69195699906],[-71.291031,41.69201099906],[-71.291099,41.69217599906],[-71.291176,41.69239499906],[-71.291313,41.69274799906],[-71.291504,41.69324399906],[-71.291265,41.69328499906],[-71.291222,41.69328999906],[-71.29039,41.69339699906],[-71.289742,41.69346899906],[-71.289551,41.69348599906],[-71.289528,41.69349099906],[-71.288917,41.69354399906],[-71.288574,41.69358199906],[-71.287857,41.69366399906],[-71.287285,41.69373399906],[-71.286942,41.69377199906],[-71.28637,41.69383799906],[-71.285919,41.69389099906],[-71.284935,41.69400999906],[-71.284691,41.69404199906],[-71.283829,41.69413599906],[-71.283684,41.69414799906],[-71.283508,41.69416499906],[-71.283257,41.69417899906],[-71.283005,41.69417899906],[-71.282425,41.69414999906],[-71.282281,41.69413899906],[-71.281418,41.69410299906],[-71.281067,41.69409099906],[-71.280914,41.69408999906],[-71.280754,41.69408399906],[-71.280495,41.69408899906],[-71.280418,41.69408599906],[-71.279701,41.69410099906],[-71.279388,41.69410199906],[-71.279404,41.69432299906],[-71.279411,41.69452499906],[-71.279427,41.69472299906],[-71.279457,41.69536199906],[-71.279472,41.69568599906],[-71.279526,41.69657599906],[-71.279556,41.69719299906],[-71.279564,41.69743099906],[-71.279587,41.69782199906],[-71.279594,41.69804699906],[-71.279633,41.69857799906],[-71.279652,41.69885299906],[-71.279656,41.69891099906],[-71.279671,41.69922599906],[-71.279709,41.69972899906],[-71.279716,41.69988699906],[-71.279747,41.70030099906],[-71.279747,41.70036399906],[-71.279766,41.70064499906],[-71.279785,41.70091699906],[-71.2798,41.70106499906],[-71.279838,41.70176699906],[-71.279877,41.70223399906],[-71.2799,41.70244999906],[-71.2799,41.70252199906],[-71.279922,41.70295399906],[-71.279945,41.70314199906],[-71.279999,41.70355999906],[-71.280029,41.70386999906],[-71.280052,41.70407299906],[-71.28006,41.70410399906],[-71.280136,41.70504399906],[-71.280159,41.70535399906],[-71.280195,41.70603299906],[-71.280205,41.70621299906],[-71.280251,41.70683799906],[-71.280258,41.70693699906],[-71.280304,41.70771099906],[-71.280312,41.70783699906],[-71.280342,41.70828699906],[-71.280347,41.70836399906],[-71.280372,41.70873599906],[-71.280396,41.70914199906],[-71.280418,41.70952299906],[-71.280449,41.70995899906],[-71.280502,41.71069699906],[-71.280522,41.71102599906],[-71.280524,41.71105899906],[-71.28071,41.71103399906],[-71.281138,41.71097399906],[-71.286889,41.71017399906],[-71.286964,41.71016299906],[-71.291377,41.70954999906],[-71.294039,41.71027999906],[-71.29526,41.70726899906],[-71.296947,41.70599399906],[-71.298476,41.70484199906],[-71.300843,41.70310199906],[-71.301114,41.70271099906],[-71.301764,41.70194299906],[-71.30234,41.70147899906],[-71.312595,41.69289799906]]]}}"}, +{"type": "blockgroup", "typeId": 309023, "areaId": 29311, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.328976,41.67993599906],[-71.325904,41.66959499906],[-71.323717,41.66222899906],[-71.321825,41.65714799906],[-71.319292,41.65250199906],[-71.31824,41.65064799906],[-71.31711,41.64931999906],[-71.315539,41.64740499906],[-71.313647,41.64568099906],[-71.311465,41.64404799906],[-71.307055,41.64254499906],[-71.303468,41.64215599906],[-71.301049,41.64254999906],[-71.300279,41.64267499906],[-71.296525,41.64435399906],[-71.29438,41.64621799906],[-71.291688,41.64855699906],[-71.290061,41.64882399906],[-71.281994,41.65015099906],[-71.281943,41.65782999906],[-71.281893,41.66550099906],[-71.28232,41.66902099906],[-71.28279,41.67563699906],[-71.279057,41.67654399906],[-71.278992,41.67653899906],[-71.278952,41.67654499906],[-71.278717,41.67657999906],[-71.278717,41.67666099906],[-71.278709,41.67689999906],[-71.278701,41.67708599906],[-71.278626,41.67869399906],[-71.278625,41.67909499906],[-71.278642,41.67940399906],[-71.278648,41.67949099906],[-71.278664,41.67962099906],[-71.278679,41.68021099906],[-71.278717,41.68099299906],[-71.278755,41.68164099906],[-71.278755,41.68175799906],[-71.278778,41.68235699906],[-71.278808,41.68285599906],[-71.278808,41.68291899906],[-71.278816,41.68312999906],[-71.278826,41.68342799906],[-71.278829,41.68362599906],[-71.278831,41.68373199906],[-71.278839,41.68390399906],[-71.278854,41.68411099906],[-71.278854,41.68420999906],[-71.27887,41.68441699906],[-71.27887,41.68451199906],[-71.278893,41.68482199906],[-71.278906,41.68506399906],[-71.278915,41.68523599906],[-71.278931,41.68540199906],[-71.278946,41.68581599906],[-71.278961,41.68600099906],[-71.278961,41.68610399906],[-71.278981,41.68667999906],[-71.279007,41.68731899906],[-71.279014,41.68738199906],[-71.279038,41.68781399906],[-71.279045,41.68799799906],[-71.279076,41.68844799906],[-71.279098,41.68902799906],[-71.279152,41.68981499906],[-71.279198,41.69063899906],[-71.279205,41.69070599906],[-71.279251,41.69165999906],[-71.279304,41.69265799906],[-71.27932,41.69290099906],[-71.279381,41.69387299906],[-71.279381,41.69396699906],[-71.279388,41.69410199906],[-71.279701,41.69410099906],[-71.280418,41.69408599906],[-71.280495,41.69408899906],[-71.280754,41.69408399906],[-71.280914,41.69408999906],[-71.281067,41.69409099906],[-71.281418,41.69410299906],[-71.282281,41.69413899906],[-71.282425,41.69414999906],[-71.283005,41.69417899906],[-71.283257,41.69417899906],[-71.283508,41.69416499906],[-71.283684,41.69414799906],[-71.283829,41.69413599906],[-71.284691,41.69404199906],[-71.284935,41.69400999906],[-71.285919,41.69389099906],[-71.28637,41.69383799906],[-71.286942,41.69377199906],[-71.287285,41.69373399906],[-71.287857,41.69366399906],[-71.288574,41.69358199906],[-71.288917,41.69354399906],[-71.289528,41.69349099906],[-71.289551,41.69348599906],[-71.289742,41.69346899906],[-71.29039,41.69339699906],[-71.291222,41.69328999906],[-71.291265,41.69328499906],[-71.291504,41.69324399906],[-71.291313,41.69274799906],[-71.291176,41.69239499906],[-71.291099,41.69217599906],[-71.291031,41.69201099906],[-71.291,41.69195699906],[-71.290939,41.69187799906],[-71.290878,41.69176599906],[-71.29263,41.69178299906],[-71.299996,41.69191299906],[-71.312595,41.69289799906],[-71.315775,41.69023599906],[-71.328976,41.67993599906]]]}}"}, +{"type": "blockgroup", "typeId": 309024, "areaId": 29312, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.279304,41.69265799906],[-71.279251,41.69165999906],[-71.279205,41.69070599906],[-71.279198,41.69063899906],[-71.279152,41.68981499906],[-71.279098,41.68902799906],[-71.279076,41.68844799906],[-71.279045,41.68799799906],[-71.279038,41.68781399906],[-71.279014,41.68738199906],[-71.279007,41.68731899906],[-71.278981,41.68667999906],[-71.278961,41.68610399906],[-71.278961,41.68600099906],[-71.278946,41.68581599906],[-71.278931,41.68540199906],[-71.278915,41.68523599906],[-71.278906,41.68506399906],[-71.278893,41.68482199906],[-71.27887,41.68451199906],[-71.27887,41.68441699906],[-71.278854,41.68420999906],[-71.278854,41.68411099906],[-71.278839,41.68390399906],[-71.278831,41.68373199906],[-71.278829,41.68362599906],[-71.278826,41.68342799906],[-71.278816,41.68312999906],[-71.278808,41.68291899906],[-71.278808,41.68285599906],[-71.278778,41.68235699906],[-71.278755,41.68175799906],[-71.278755,41.68164099906],[-71.278717,41.68099299906],[-71.278679,41.68021099906],[-71.278664,41.67962099906],[-71.278648,41.67949099906],[-71.278642,41.67940399906],[-71.278625,41.67909499906],[-71.278626,41.67869399906],[-71.278701,41.67708599906],[-71.278709,41.67689999906],[-71.278717,41.67666099906],[-71.278717,41.67657999906],[-71.277435,41.67682599906],[-71.276695,41.67697199906],[-71.276192,41.67708499906],[-71.275047,41.67730599906],[-71.274353,41.67744999906],[-71.274185,41.67676499906],[-71.273285,41.67694899906],[-71.27243,41.67712399906],[-71.271611,41.67728999906],[-71.27095,41.67742299906],[-71.270058,41.67759799906],[-71.269692,41.67766399906],[-71.268608,41.67787499906],[-71.267761,41.67804899906],[-71.266846,41.67821999906],[-71.266342,41.67831999906],[-71.265671,41.67844599906],[-71.26548,41.67848599906],[-71.265373,41.67851899906],[-71.265175,41.67860899906],[-71.264931,41.67874399906],[-71.264816,41.67879599906],[-71.264709,41.67883899906],[-71.264473,41.67889299906],[-71.264244,41.67893799906],[-71.263763,41.67904199906],[-71.26313,41.67918099906],[-71.262749,41.67925099906],[-71.262575,41.67928599906],[-71.261261,41.67955099906],[-71.261145,41.67957499906],[-71.261037,41.67959799906],[-71.260368,41.67973899906],[-71.260506,41.68032599906],[-71.260605,41.68073899906],[-71.260635,41.68088699906],[-71.260666,41.68099899906],[-71.260841,41.68179699906],[-71.260857,41.68188199906],[-71.260895,41.68202099906],[-71.260941,41.68225899906],[-71.260994,41.68247399906],[-71.261154,41.68319999906],[-71.261162,41.68320899906],[-71.261328,41.68394899906],[-71.26139,41.68424699906],[-71.261574,41.68508299906],[-71.261606,41.68524599906],[-71.261627,41.68535199906],[-71.261734,41.68579599906],[-71.26194,41.68671099906],[-71.26197,41.68686799906],[-71.262161,41.68769299906],[-71.262245,41.68805099906],[-71.262436,41.68895299906],[-71.26255,41.68946399906],[-71.262794,41.69055799906],[-71.262817,41.69064299906],[-71.262878,41.69094799906],[-71.262963,41.69131499906],[-71.262985,41.69143599906],[-71.263054,41.69172799906],[-71.263207,41.69239999906],[-71.263245,41.69258899906],[-71.26329,41.69275399906],[-71.263321,41.69285699906],[-71.263628,41.69435199906],[-71.263667,41.69434099906],[-71.263806,41.69432599906],[-71.264286,41.69427499906],[-71.265477,41.69413799906],[-71.266283,41.69405699906],[-71.267154,41.69396399906],[-71.267322,41.69394799906],[-71.267921,41.69389199906],[-71.268501,41.69383099906],[-71.269188,41.69377699906],[-71.269905,41.69370499906],[-71.270752,41.69362899906],[-71.271565,41.69354999906],[-71.272522,41.69345899906],[-71.2733,41.69337199906],[-71.27391,41.69329699906],[-71.274307,41.69325299906],[-71.274979,41.69316699906],[-71.27552,41.69309799906],[-71.276407,41.69299599906],[-71.278275,41.69277299906],[-71.279304,41.69265799906]]]}}"}, +{"type": "blockgroup", "typeId": 401011, "areaId": 29313, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.244163,41.62850399906],[-71.244125,41.62845999906],[-71.244079,41.62839699906],[-71.244049,41.62835299906],[-71.243995,41.62828599906],[-71.243888,41.62814399906],[-71.243697,41.62790099906],[-71.243431,41.62758099906],[-71.243095,41.62716899906],[-71.242935,41.62696499906],[-71.242469,41.62638399906],[-71.241859,41.62563099906],[-71.241691,41.62542699906],[-71.241439,41.62514799906],[-71.240944,41.62460399906],[-71.240852,41.62449799906],[-71.240295,41.62383699906],[-71.239234,41.62259699906],[-71.238349,41.62157899906],[-71.238159,41.62136599906],[-71.238121,41.62123599906],[-71.238113,41.62112399906],[-71.238113,41.62103399906],[-71.238125,41.62091899906],[-71.238021,41.62085999906],[-71.237992,41.62082099906],[-71.237582,41.62032699906],[-71.237067,41.61966299906],[-71.235793,41.62008899906],[-71.232982,41.62075599906],[-71.230349,41.62105599906],[-71.224904,41.62148999906],[-71.220843,41.62175699906],[-71.219058,41.62269099906],[-71.217987,41.62352499906],[-71.217083,41.62372799906],[-71.216823,41.62515399906],[-71.216762,41.62548499906],[-71.216736,41.62563199906],[-71.215886,41.62922399906],[-71.215667,41.63022999906],[-71.214155,41.63799699906],[-71.214151,41.63801999906],[-71.214127,41.63814199906],[-71.214714,41.63809199906],[-71.215586,41.63807199906],[-71.216491,41.63807899906],[-71.216778,41.63808499906],[-71.217338,41.63809799906],[-71.217627,41.63810699906],[-71.218446,41.63813599906],[-71.218879,41.63817399906],[-71.219312,41.63819699906],[-71.220514,41.63824699906],[-71.221353,41.63822499906],[-71.221732,41.63820699906],[-71.222572,41.63818199906],[-71.223208,41.63814799906],[-71.22389,41.63810099906],[-71.224503,41.63804099906],[-71.225238,41.63795099906],[-71.225859,41.63786899906],[-71.226366,41.63778099906],[-71.226589,41.63775099906],[-71.227157,41.63762999906],[-71.228569,41.63731399906],[-71.229301,41.63711099906],[-71.229911,41.63693199906],[-71.23011,41.63686999906],[-71.230621,41.63671099906],[-71.231269,41.63647799906],[-71.232116,41.63615099906],[-71.233138,41.63570799906],[-71.234413,41.63514199906],[-71.235397,41.63471399906],[-71.236488,41.63421899906],[-71.236923,41.63403099906],[-71.237503,41.63377199906],[-71.238372,41.63337699906],[-71.238777,41.63315699906],[-71.239234,41.63287399906],[-71.239776,41.63249399906],[-71.240348,41.63200099906],[-71.240425,41.63193199906],[-71.241104,41.63131499906],[-71.241668,41.63079499906],[-71.242393,41.63012399906],[-71.243187,41.62939199906],[-71.243454,41.62915299906],[-71.243786,41.62885199906],[-71.243926,41.62872499906],[-71.243965,41.62868799906],[-71.244102,41.62856399906],[-71.244163,41.62850399906]]],[[[-71.222737,41.61519099906],[-71.221785,41.61356399906],[-71.219485,41.61285499906],[-71.219175,41.61283999906],[-71.218797,41.61428199906],[-71.218048,41.61841699906],[-71.218657,41.61840999906],[-71.219972,41.61834199906],[-71.222284,41.61729199906],[-71.222737,41.61519099906]]]]}}"}, +{"type": "blockgroup", "typeId": 401012, "areaId": 29314, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.256904,41.61776599906],[-71.256889,41.61763599906],[-71.256866,41.61753299906],[-71.256851,41.61745199906],[-71.25682,41.61732199906],[-71.256637,41.61664099906],[-71.256607,41.61651599906],[-71.256401,41.61568199906],[-71.256256,41.61515399906],[-71.256164,41.61478599906],[-71.255912,41.61493499906],[-71.255378,41.61520699906],[-71.255096,41.61536599906],[-71.25492,41.61547699906],[-71.254821,41.61553799906],[-71.254554,41.61570499906],[-71.254379,41.61581599906],[-71.254203,41.61592299906],[-71.254066,41.61599799906],[-71.253952,41.61606399906],[-71.253829,41.61611499906],[-71.253684,41.61617699906],[-71.25357,41.61622399906],[-71.253096,41.61641199906],[-71.253036,41.61643699906],[-71.252784,41.61654099906],[-71.252533,41.61663599906],[-71.252227,41.61676399906],[-71.252143,41.61679699906],[-71.252052,41.61682599906],[-71.251908,41.61686199906],[-71.251777,41.61688999906],[-71.251655,41.61690999906],[-71.251525,41.61692199906],[-71.251441,41.61693699906],[-71.251358,41.61694299906],[-71.251312,41.61694799906],[-71.251274,41.61694499906],[-71.251197,41.61695099906],[-71.250991,41.61694099906],[-71.250877,41.61693399906],[-71.250846,41.61692999906],[-71.250595,41.61689499906],[-71.250533,41.61688299906],[-71.250442,41.61685699906],[-71.25035,41.61683199906],[-71.250259,41.61680199906],[-71.250213,41.61678099906],[-71.250122,41.61674699906],[-71.249893,41.61664699906],[-71.249639,41.61654299906],[-71.249435,41.61645799906],[-71.249061,41.61628999906],[-71.248797,41.61617899906],[-71.24858,41.61608799906],[-71.24855,41.61607499906],[-71.248046,41.61587299906],[-71.247772,41.61576599906],[-71.247665,41.61571799906],[-71.246877,41.61537899906],[-71.246475,41.61520599906],[-71.245948,41.61501299906],[-71.24594,41.61530599906],[-71.246017,41.61605699906],[-71.246116,41.61678399906],[-71.246162,41.61722499906],[-71.246162,41.61725599906],[-71.2462,41.61757099906],[-71.2462,41.61779599906],[-71.246185,41.61802099906],[-71.246139,41.61824299906],[-71.246025,41.61859599906],[-71.245935,41.61880499906],[-71.245872,41.61895499906],[-71.245834,41.61904099906],[-71.24562,41.61953199906],[-71.245584,41.61961099906],[-71.245536,41.61971799906],[-71.245429,41.61995899906],[-71.245292,41.62026299906],[-71.245266,41.62031599906],[-71.245178,41.62049499906],[-71.244926,41.62047299906],[-71.244648,41.62043799906],[-71.244461,41.62041499906],[-71.244277,41.62038199906],[-71.244117,41.62035799906],[-71.243903,41.62032199906],[-71.243057,41.62022599906],[-71.242736,41.62019199906],[-71.242446,41.62015799906],[-71.242233,41.62013399906],[-71.241782,41.62008399906],[-71.241523,41.62006199906],[-71.241348,41.62004799906],[-71.241272,41.62003999906],[-71.240928,41.62001499906],[-71.240753,41.62001399906],[-71.240638,41.62001199906],[-71.240371,41.62003999906],[-71.240173,41.62007999906],[-71.239967,41.62011099906],[-71.2397,41.62018299906],[-71.239463,41.62026499906],[-71.239234,41.62036399906],[-71.238792,41.62059299906],[-71.238289,41.62084099906],[-71.238125,41.62091899906],[-71.238113,41.62103399906],[-71.238113,41.62112399906],[-71.238121,41.62123599906],[-71.238159,41.62136599906],[-71.238349,41.62157899906],[-71.239234,41.62259699906],[-71.240295,41.62383699906],[-71.240852,41.62449799906],[-71.240944,41.62460399906],[-71.241439,41.62514799906],[-71.241691,41.62542699906],[-71.241859,41.62563099906],[-71.242469,41.62638399906],[-71.242935,41.62696499906],[-71.243095,41.62716899906],[-71.243431,41.62758099906],[-71.243697,41.62790099906],[-71.243888,41.62814399906],[-71.243995,41.62828599906],[-71.244049,41.62835299906],[-71.244079,41.62839699906],[-71.244125,41.62845999906],[-71.244163,41.62850399906],[-71.244209,41.62856599906],[-71.244323,41.62870799906],[-71.244644,41.62911599906],[-71.244949,41.62943899906],[-71.245193,41.62965899906],[-71.245322,41.62975399906],[-71.245445,41.62984299906],[-71.245735,41.63003999906],[-71.245935,41.63017199906],[-71.24607,41.63025899906],[-71.246437,41.63041799906],[-71.246612,41.63048699906],[-71.246978,41.63062799906],[-71.247985,41.63090599906],[-71.249099,41.63120399906],[-71.249603,41.63134299906],[-71.250541,41.63158499906],[-71.251411,41.63181599906],[-71.251945,41.63195899906],[-71.253082,41.63226099906],[-71.253372,41.63234999906],[-71.253486,41.63240599906],[-71.253524,41.63242799906],[-71.253585,41.63247099906],[-71.253631,41.63235799906],[-71.253746,41.63204899906],[-71.253784,41.63196299906],[-71.25389,41.63167299906],[-71.253936,41.63153699906],[-71.254195,41.63078899906],[-71.254234,41.63066599906],[-71.25428,41.63053499906],[-71.254652,41.62943599906],[-71.254745,41.62917499906],[-71.254765,41.62911199906],[-71.25502,41.62831799906],[-71.255081,41.62813199906],[-71.255249,41.62755699906],[-71.255439,41.62692799906],[-71.255493,41.62672399906],[-71.255531,41.62659299906],[-71.255813,41.62554699906],[-71.255973,41.62491799906],[-71.256118,41.62433799906],[-71.256156,41.62419799906],[-71.256363,41.62338799906],[-71.256584,41.62246499906],[-71.25669,41.62202599906],[-71.256697,41.62198699906],[-71.256721,41.62185399906],[-71.256752,41.62171399906],[-71.25679,41.62145699906],[-71.256813,41.62122699906],[-71.256815,41.62108499906],[-71.25682,41.62084399906],[-71.256828,41.62058799906],[-71.256835,41.62038399906],[-71.256859,41.61978899906],[-71.256866,41.61964499906],[-71.256881,41.61931999906],[-71.256886,41.61915999906],[-71.256896,41.61885599906],[-71.256904,41.61858099906],[-71.256904,41.61776599906]]]}}"}, +{"type": "blockgroup", "typeId": 401013, "areaId": 29315, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.256497,41.63748899906],[-71.255696,41.63613899906],[-71.255564,41.63591599906],[-71.2554,41.63563999906],[-71.255011,41.63494499906],[-71.254327,41.63374999906],[-71.254058,41.63324999906],[-71.253929,41.63304999906],[-71.253822,41.63284999906],[-71.253753,41.63272899906],[-71.253692,41.63263999906],[-71.253585,41.63247099906],[-71.253524,41.63242799906],[-71.253486,41.63240599906],[-71.253372,41.63234999906],[-71.253082,41.63226099906],[-71.251945,41.63195899906],[-71.251411,41.63181599906],[-71.250541,41.63158499906],[-71.249603,41.63134299906],[-71.249099,41.63120399906],[-71.247985,41.63090599906],[-71.246978,41.63062799906],[-71.246612,41.63048699906],[-71.246437,41.63041799906],[-71.24607,41.63025899906],[-71.245935,41.63017199906],[-71.245735,41.63003999906],[-71.245445,41.62984299906],[-71.245322,41.62975399906],[-71.245193,41.62965899906],[-71.244949,41.62943899906],[-71.244644,41.62911599906],[-71.244323,41.62870799906],[-71.244209,41.62856599906],[-71.244163,41.62850399906],[-71.244102,41.62856399906],[-71.243965,41.62868799906],[-71.243926,41.62872499906],[-71.243786,41.62885199906],[-71.243454,41.62915299906],[-71.243187,41.62939199906],[-71.242393,41.63012399906],[-71.241668,41.63079499906],[-71.241104,41.63131499906],[-71.240425,41.63193199906],[-71.240348,41.63200099906],[-71.239776,41.63249399906],[-71.239234,41.63287399906],[-71.238777,41.63315699906],[-71.238372,41.63337699906],[-71.237503,41.63377199906],[-71.236923,41.63403099906],[-71.236488,41.63421899906],[-71.235397,41.63471399906],[-71.234413,41.63514199906],[-71.233138,41.63570799906],[-71.232116,41.63615099906],[-71.231269,41.63647799906],[-71.230621,41.63671099906],[-71.23011,41.63686999906],[-71.229911,41.63693199906],[-71.229301,41.63711099906],[-71.228569,41.63731399906],[-71.227157,41.63762999906],[-71.226589,41.63775099906],[-71.226366,41.63778099906],[-71.225859,41.63786899906],[-71.225238,41.63795099906],[-71.224503,41.63804099906],[-71.22389,41.63810099906],[-71.223208,41.63814799906],[-71.222572,41.63818199906],[-71.221732,41.63820699906],[-71.221353,41.63822499906],[-71.220514,41.63824699906],[-71.219312,41.63819699906],[-71.218879,41.63817399906],[-71.218446,41.63813599906],[-71.217627,41.63810699906],[-71.217338,41.63809799906],[-71.216778,41.63808499906],[-71.216491,41.63807899906],[-71.215586,41.63807199906],[-71.214714,41.63809199906],[-71.214127,41.63814199906],[-71.214104,41.63826199906],[-71.214074,41.63836499906],[-71.214054,41.63845599906],[-71.213999,41.63876899906],[-71.213982,41.63881399906],[-71.21396,41.63887599906],[-71.21319,41.64462099906],[-71.214284,41.64469599906],[-71.214284,41.64746499906],[-71.216931,41.64983899906],[-71.216084,41.65284599906],[-71.215773,41.65532799906],[-71.216825,41.65822799906],[-71.220637,41.65925599906],[-71.224555,41.65704099906],[-71.22752,41.65260899906],[-71.229108,41.64841499906],[-71.23345,41.64698999906],[-71.236732,41.64398299906],[-71.238215,41.64152999906],[-71.243721,41.64224199906],[-71.247367,41.64216699906],[-71.248644,41.64191199906],[-71.251941,41.64056899906],[-71.254278,41.63913499906],[-71.255357,41.63846299906],[-71.256378,41.63753999906],[-71.256497,41.63748899906]]]}}"}, +{"type": "blockgroup", "typeId": 401021, "areaId": 29316, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.25769,41.55088199906],[-71.257087,41.55083599906],[-71.25698,41.55082399906],[-71.256694,41.55081599906],[-71.256011,41.55079799906],[-71.25521,41.55077799906],[-71.254997,41.55077299906],[-71.253974,41.55073499906],[-71.253392,41.55071799906],[-71.25299,41.55070399906],[-71.252342,41.55068599906],[-71.251991,41.55070599906],[-71.251426,41.55076599906],[-71.250488,41.55087899906],[-71.249031,41.55109299906],[-71.247924,41.55123599906],[-71.247169,41.55132699906],[-71.246048,41.55146599906],[-71.245178,41.55157799906],[-71.244758,41.55162599906],[-71.244491,41.55166799906],[-71.244438,41.55167799906],[-71.244308,41.55170299906],[-71.24414,41.55173299906],[-71.243927,41.55180499906],[-71.243743,41.55188899906],[-71.242706,41.55232799906],[-71.242439,41.55244599906],[-71.242286,41.55251199906],[-71.242042,41.55261199906],[-71.241859,41.55265599906],[-71.241668,41.55267699906],[-71.241233,41.55265899906],[-71.240776,41.55263599906],[-71.240074,41.55261399906],[-71.238411,41.55257899906],[-71.237892,41.55257099906],[-71.237693,41.55256999906],[-71.237419,41.55256699906],[-71.237258,41.55256099906],[-71.23706,41.55255999906],[-71.236839,41.55254199906],[-71.236747,41.55251199906],[-71.236694,41.55248199906],[-71.236633,41.55244199906],[-71.236564,41.55239899906],[-71.236511,41.55235499906],[-71.236473,41.55231499906],[-71.236404,41.55227999906],[-71.236328,41.55225899906],[-71.236259,41.55224699906],[-71.236175,41.55223999906],[-71.236038,41.55225099906],[-71.235984,41.55226099906],[-71.235923,41.55226699906],[-71.23412,41.55206999906],[-71.231578,41.55179099906],[-71.231412,41.55223699906],[-71.231412,41.55352799906],[-71.232275,41.55456199906],[-71.233771,41.55490599906],[-71.234749,41.55580999906],[-71.234807,41.55718799906],[-71.234231,41.55886699906],[-71.234807,41.55981399906],[-71.234979,41.56123499906],[-71.233426,41.56454999906],[-71.23285,41.56640199906],[-71.232908,41.56894199906],[-71.232972,41.57031199906],[-71.232814,41.57144099906],[-71.232814,41.57312399906],[-71.232139,41.57491999906],[-71.231464,41.57620999906],[-71.232363,41.57741799906],[-71.234614,41.57828599906],[-71.235065,41.57952099906],[-71.23634,41.58081099906],[-71.236865,41.58187699906],[-71.23739,41.58266299906],[-71.238065,41.58349799906],[-71.241461,41.58348999906],[-71.241451,41.58346599906],[-71.24141,41.58340899906],[-71.241365,41.58336499906],[-71.24131,41.58332099906],[-71.241253,41.58327799906],[-71.241201,41.58323599906],[-71.241148,41.58318299906],[-71.241102,41.58313399906],[-71.24104,41.58309399906],[-71.240963,41.58303899906],[-71.240911,41.58300099906],[-71.240846,41.58295699906],[-71.240789,41.58291699906],[-71.240735,41.58287299906],[-71.240676,41.58282799906],[-71.24062,41.58279399906],[-71.240568,41.58275199906],[-71.240517,41.58269399906],[-71.24047,41.58263699906],[-71.240418,41.58258299906],[-71.240361,41.58253299906],[-71.240311,41.58247599906],[-71.240279,41.58243199906],[-71.240179,41.58230699906],[-71.240272,41.58226899906],[-71.240326,41.58224499906],[-71.240402,41.58221699906],[-71.240463,41.58218799906],[-71.240516,41.58214199906],[-71.2406,41.58203299906],[-71.240646,41.58197799906],[-71.240684,41.58191799906],[-71.240707,41.58185499906],[-71.24073,41.58179999906],[-71.240753,41.58174099906],[-71.240768,41.58167299906],[-71.240776,41.58159199906],[-71.240783,41.58153799906],[-71.240814,41.58146999906],[-71.240844,41.58141099906],[-71.240913,41.58135499906],[-71.240966,41.58129099906],[-71.241058,41.58118999906],[-71.241111,41.58114899906],[-71.241195,41.58110199906],[-71.241287,41.58108199906],[-71.241378,41.58106699906],[-71.241454,41.58103399906],[-71.2415,41.58097899906],[-71.241577,41.58092399906],[-71.241653,41.58089999906],[-71.241729,41.58088499906],[-71.241806,41.58086099906],[-71.241882,41.58083199906],[-71.241951,41.58080399906],[-71.242004,41.58076699906],[-71.242065,41.58072999906],[-71.242126,41.58068299906],[-71.242179,41.58061499906],[-71.242225,41.58054599906],[-71.242294,41.58049499906],[-71.242378,41.58047599906],[-71.242446,41.58046999906],[-71.242538,41.58046799906],[-71.242599,41.58043499906],[-71.242652,41.58039399906],[-71.242683,41.58032599906],[-71.242744,41.58026999906],[-71.242828,41.58025499906],[-71.242912,41.58028499906],[-71.243003,41.58030099906],[-71.243171,41.58026199906],[-71.24324,41.58021099906],[-71.243324,41.58020099906],[-71.243408,41.58023899906],[-71.243484,41.58028799906],[-71.243545,41.58032199906],[-71.243636,41.58035199906],[-71.24372,41.58035499906],[-71.243812,41.58033499906],[-71.243896,41.58029299906],[-71.243973,41.58025099906],[-71.244056,41.58021299906],[-71.244224,41.58020999906],[-71.244316,41.58018999906],[-71.244484,41.58015999906],[-71.244583,41.58015799906],[-71.244651,41.58013899906],[-71.24472,41.58011499906],[-71.244804,41.58008199906],[-71.24488,41.58008499906],[-71.244979,41.58009199906],[-71.245078,41.58011199906],[-71.245147,41.58013299906],[-71.245247,41.58017199906],[-71.245323,41.58021099906],[-71.245407,41.58023199906],[-71.245552,41.58016199906],[-71.245605,41.58010199906],[-71.24562,41.58004799906],[-71.24562,41.57997599906],[-71.245651,41.57992099906],[-71.245681,41.57986199906],[-71.245757,41.57974799906],[-71.245811,41.57968799906],[-71.245872,41.57962799906],[-71.245925,41.57960899906],[-71.246009,41.57962099906],[-71.246078,41.57963299906],[-71.246154,41.57964499906],[-71.24623,41.57964799906],[-71.246337,41.57963299906],[-71.246437,41.57962199906],[-71.246536,41.57963299906],[-71.246612,41.57966799906],[-71.246673,41.57970299906],[-71.246727,41.57975599906],[-71.246803,41.57986199906],[-71.246879,41.57989199906],[-71.246971,41.57989099906],[-71.247047,41.57990299906],[-71.247123,41.57992399906],[-71.247215,41.57993499906],[-71.247306,41.57993399906],[-71.247398,41.57989999906],[-71.247467,41.57986699906],[-71.24765,41.57985499906],[-71.247726,41.57985799906],[-71.247802,41.57984699906],[-71.247848,41.57980599906],[-71.247917,41.57980499906],[-71.247993,41.57981699906],[-71.248069,41.57982399906],[-71.248153,41.57982699906],[-71.248191,41.57983499906],[-71.248584,41.57990799906],[-71.248664,41.58035299906],[-71.248794,41.58097199906],[-71.248908,41.58157799906],[-71.249267,41.58149399906],[-71.249336,41.58146999906],[-71.249381,41.58144699906],[-71.249557,41.58130799906],[-71.249801,41.58107799906],[-71.250137,41.58079699906],[-71.25029,41.58068599906],[-71.250404,41.58059799906],[-71.250465,41.58055599906],[-71.250594,41.58051799906],[-71.251518,41.58040099906],[-71.252197,41.58031099906],[-71.252434,41.58029299906],[-71.252433,41.58026999906],[-71.252418,41.58015299906],[-71.252403,41.58009499906],[-71.252357,41.57973999906],[-71.252342,41.57956899906],[-71.252319,41.57939899906],[-71.252296,41.57926899906],[-71.252265,41.57914299906],[-71.252235,41.57901299906],[-71.252136,41.57851899906],[-71.25209,41.57828599906],[-71.252059,41.57811999906],[-71.251853,41.57711599906],[-71.251846,41.57707099906],[-71.251671,41.57612399906],[-71.25164,41.57592599906],[-71.25163,41.57587099906],[-71.251503,41.57512299906],[-71.251472,41.57490299906],[-71.251373,41.57428799906],[-71.251365,41.57425199906],[-71.251228,41.57338099906],[-71.251197,41.57318399906],[-71.251129,41.57277099906],[-71.251091,41.57252799906],[-71.250938,41.57154999906],[-71.250907,41.57137499906],[-71.250808,41.57073699906],[-71.250787,41.57057899906],[-71.25077,41.57045899906],[-71.250747,41.57020199906],[-71.25074,41.57002199906],[-71.25074,41.56984699906],[-71.250747,41.56976599906],[-71.250755,41.56963499906],[-71.25077,41.56953499906],[-71.250801,41.56929199906],[-71.250839,41.56911099906],[-71.250907,41.56892499906],[-71.250961,41.56877999906],[-71.251014,41.56866599906],[-71.251129,41.56842999906],[-71.251175,41.56832099906],[-71.251235,41.56820199906],[-71.251449,41.56773899906],[-71.251487,41.56765699906],[-71.251549,41.56751599906],[-71.251594,41.56741199906],[-71.251708,41.56717099906],[-71.251846,41.56688399906],[-71.252181,41.56617099906],[-71.252609,41.56525299906],[-71.252647,41.56515699906],[-71.253074,41.56414899906],[-71.25324,41.56371399906],[-71.253471,41.56310999906],[-71.253617,41.56273799906],[-71.253669,41.56260699906],[-71.253775,41.56232999906],[-71.253944,41.56188799906],[-71.254272,41.56103699906],[-71.254669,41.56001999906],[-71.255401,41.55804699906],[-71.255642,41.55741999906],[-71.255882,41.55679899906],[-71.256339,41.55560599906],[-71.256469,41.55521599906],[-71.256706,41.55441399906],[-71.256736,41.55430099906],[-71.256759,41.55420999906],[-71.25679,41.55411999906],[-71.257003,41.55337699906],[-71.257408,41.55191499906],[-71.25761,41.55116199906],[-71.257629,41.55109099906],[-71.257654,41.55100399906],[-71.25769,41.55088199906]]]}}"}, +{"type": "blockgroup", "typeId": 401022, "areaId": 29317, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.265724,41.53817999906],[-71.264991,41.53753999906],[-71.264083,41.53685499906],[-71.263145,41.53617099906],[-71.262252,41.53549499906],[-71.261878,41.53521899906],[-71.261581,41.53499899906],[-71.261093,41.53463099906],[-71.260963,41.53454299906],[-71.260902,41.53448599906],[-71.26087,41.53444899906],[-71.260245,41.53410499906],[-71.260179,41.53405599906],[-71.259185,41.53331899906],[-71.258719,41.53297299906],[-71.258117,41.53252799906],[-71.256582,41.53139199906],[-71.255386,41.53053499906],[-71.254998,41.53021699906],[-71.254709,41.53000299906],[-71.253508,41.52911299906],[-71.252196,41.52814199906],[-71.250318,41.52674999906],[-71.2483,41.52525499906],[-71.247751,41.52484799906],[-71.247122,41.52438199906],[-71.246906,41.52422099906],[-71.24639,41.52383899906],[-71.245856,41.52344299906],[-71.244621,41.52252599906],[-71.243782,41.52191899906],[-71.242523,41.52096499906],[-71.242461,41.52092499906],[-71.241755,41.52039999906],[-71.240398,41.51939199906],[-71.238215,41.51775099906],[-71.237988,41.51758299906],[-71.235838,41.51591299906],[-71.235826,41.51590299906],[-71.23486,41.51515699906],[-71.234153,41.51461099906],[-71.23339,41.51402699906],[-71.233359,41.51398399906],[-71.233355,41.51392599906],[-71.233352,41.51381399906],[-71.233333,41.51374999906],[-71.233297,41.51368899906],[-71.233237,41.51365699906],[-71.233163,41.51365399906],[-71.233126,41.51368999906],[-71.23309,41.51363599906],[-71.23306,41.51362099906],[-71.232998,41.51363099906],[-71.232995,41.51369799906],[-71.232984,41.51375999906],[-71.233019,41.51382299906],[-71.233061,41.51387099906],[-71.233077,41.51392599906],[-71.233077,41.51398499906],[-71.233059,41.51403999906],[-71.233039,41.51411099906],[-71.233029,41.51417999906],[-71.233034,41.51431399906],[-71.233063,41.51437199906],[-71.233098,41.51442499906],[-71.233102,41.51455199906],[-71.233112,41.51459599906],[-71.233189,41.51460099906],[-71.233237,41.51461399906],[-71.233189,41.51467399906],[-71.23315,41.51473299906],[-71.233124,41.51477499906],[-71.233184,41.51481599906],[-71.233252,41.51483399906],[-71.233283,41.51484999906],[-71.233317,41.51488799906],[-71.23334,41.51491899906],[-71.233334,41.51494099906],[-71.230396,41.51299699906],[-71.230147,41.51420899906],[-71.229341,41.51593099906],[-71.229341,41.51730899906],[-71.228306,41.51791199906],[-71.227271,41.51971999906],[-71.226466,41.52350899906],[-71.225584,41.52590199906],[-71.225546,41.52600599906],[-71.224971,41.52876099906],[-71.226236,41.52988099906],[-71.226351,41.53099999906],[-71.227271,41.53220599906],[-71.229111,41.53229199906],[-71.231297,41.53280899906],[-71.233022,41.53435899906],[-71.233022,41.53935299906],[-71.231987,41.54159199906],[-71.232562,41.54245299906],[-71.233252,41.54357199906],[-71.233137,41.54572499906],[-71.232217,41.54796399906],[-71.231757,41.54942799906],[-71.231578,41.55179099906],[-71.23412,41.55206999906],[-71.235923,41.55226699906],[-71.235984,41.55226099906],[-71.236038,41.55225099906],[-71.236175,41.55223999906],[-71.236259,41.55224699906],[-71.236328,41.55225899906],[-71.236404,41.55227999906],[-71.236473,41.55231499906],[-71.236511,41.55235499906],[-71.236564,41.55239899906],[-71.236633,41.55244199906],[-71.236694,41.55248199906],[-71.236747,41.55251199906],[-71.236839,41.55254199906],[-71.23706,41.55255999906],[-71.237258,41.55256099906],[-71.237419,41.55256699906],[-71.237693,41.55256999906],[-71.237892,41.55257099906],[-71.238411,41.55257899906],[-71.240074,41.55261399906],[-71.240776,41.55263599906],[-71.241233,41.55265899906],[-71.241668,41.55267699906],[-71.241859,41.55265599906],[-71.242042,41.55261199906],[-71.242286,41.55251199906],[-71.242439,41.55244599906],[-71.242706,41.55232799906],[-71.243743,41.55188899906],[-71.243927,41.55180499906],[-71.24414,41.55173299906],[-71.244308,41.55170299906],[-71.244438,41.55167799906],[-71.244491,41.55166799906],[-71.244758,41.55162599906],[-71.245178,41.55157799906],[-71.246048,41.55146599906],[-71.247169,41.55132699906],[-71.247924,41.55123599906],[-71.249031,41.55109299906],[-71.250488,41.55087899906],[-71.251426,41.55076599906],[-71.251991,41.55070599906],[-71.252342,41.55068599906],[-71.25299,41.55070399906],[-71.253392,41.55071799906],[-71.253974,41.55073499906],[-71.254997,41.55077299906],[-71.25521,41.55077799906],[-71.256011,41.55079799906],[-71.256694,41.55081599906],[-71.25698,41.55082399906],[-71.257087,41.55083599906],[-71.25769,41.55088199906],[-71.257713,41.55080499906],[-71.25778,41.55062799906],[-71.258102,41.54979299906],[-71.258369,41.54911699906],[-71.258514,41.54875899906],[-71.258666,41.54843999906],[-71.25885,41.54814399906],[-71.258857,41.54812599906],[-71.259126,41.54773999906],[-71.259376,41.54738199906],[-71.259429,41.54729999906],[-71.259742,41.54686099906],[-71.260108,41.54633599906],[-71.260124,41.54631799906],[-71.260482,41.54581099906],[-71.260681,41.54551399906],[-71.260917,41.54518499906],[-71.260986,41.54508899906],[-71.261177,41.54483299906],[-71.261238,41.54475599906],[-71.261406,41.54453199906],[-71.261589,41.54429399906],[-71.261886,41.54387399906],[-71.262283,41.54327199906],[-71.263069,41.54211699906],[-71.263244,41.54185199906],[-71.263481,41.54150499906],[-71.263503,41.54145999906],[-71.263618,41.54129499906],[-71.263893,41.54088499906],[-71.263954,41.54079299906],[-71.264244,41.54036399906],[-71.264533,41.53993999906],[-71.264556,41.53990799906],[-71.264908,41.53938799906],[-71.265022,41.53920999906],[-71.265159,41.53899999906],[-71.265251,41.53887199906],[-71.26535,41.53872599906],[-71.265395,41.53865299906],[-71.265541,41.53844299906],[-71.265571,41.53839299906],[-71.265663,41.53826899906],[-71.265724,41.53817999906]]]}}"}, +{"type": "blockgroup", "typeId": 401023, "areaId": 29318, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.256164,41.61478599906],[-71.256126,41.61465199906],[-71.256057,41.61447299906],[-71.255729,41.61370499906],[-71.255271,41.61268299906],[-71.254951,41.61194999906],[-71.254784,41.61157199906],[-71.254722,41.61143299906],[-71.254692,41.61136099906],[-71.254486,41.61089699906],[-71.254432,41.61078499906],[-71.254386,41.61068299906],[-71.254342,41.61055499906],[-71.254303,41.61048199906],[-71.254234,41.61033399906],[-71.25415,41.61013799906],[-71.254081,41.60998599906],[-71.253753,41.60924499906],[-71.253608,41.60891499906],[-71.25354,41.60875799906],[-71.253425,41.60848599906],[-71.253341,41.60831199906],[-71.253318,41.60824899906],[-71.253013,41.60758899906],[-71.252708,41.60687899906],[-71.252342,41.60606199906],[-71.251945,41.60516899906],[-71.251655,41.60451299906],[-71.251495,41.60414199906],[-71.251419,41.60397199906],[-71.250801,41.60256599906],[-71.250618,41.60215499906],[-71.250427,41.60172699906],[-71.250396,41.60165499906],[-71.250061,41.60092299906],[-71.250007,41.60074399906],[-71.249999,41.60060499906],[-71.25019,41.60007899906],[-71.25045,41.59942099906],[-71.250732,41.59885699906],[-71.250785,41.59875199906],[-71.251023,41.59824199906],[-71.25106,41.59816599906],[-71.251335,41.59747099906],[-71.25164,41.59673999906],[-71.251731,41.59652699906],[-71.251831,41.59628199906],[-71.25217,41.59545499906],[-71.252288,41.59515599906],[-71.252372,41.59495199906],[-71.252449,41.59476099906],[-71.252532,41.59455199906],[-71.252563,41.59448399906],[-71.252891,41.59367599906],[-71.252922,41.59360799906],[-71.25315,41.59305899906],[-71.253318,41.59249699906],[-71.253433,41.59209899906],[-71.253624,41.59134699906],[-71.253654,41.59110799906],[-71.253661,41.59103099906],[-71.253692,41.59084599906],[-71.253684,41.59050799906],[-71.253677,41.59043699906],[-71.253646,41.59019799906],[-71.253631,41.59005499906],[-71.253578,41.58983999906],[-71.253494,41.58959799906],[-71.253334,41.58906999906],[-71.253151,41.58848299906],[-71.252906,41.58772699906],[-71.252815,41.58743199906],[-71.25267,41.58698399906],[-71.252426,41.58621899906],[-71.252387,41.58607999906],[-71.252349,41.58594999906],[-71.252334,41.58587999906],[-71.252319,41.58581099906],[-71.252288,41.58569499906],[-71.252242,41.58546199906],[-71.252235,41.58536299906],[-71.25222,41.58515999906],[-71.252212,41.58507499906],[-71.252212,41.58490799906],[-71.252227,41.58478599906],[-71.252235,41.58466499906],[-71.25225,41.58454299906],[-71.252281,41.58419099906],[-71.252304,41.58390699906],[-71.252319,41.58377599906],[-71.252334,41.58353699906],[-71.252342,41.58345999906],[-71.252357,41.58330199906],[-71.252403,41.58285599906],[-71.252448,41.58229199906],[-71.252479,41.58204799906],[-71.252487,41.58192599906],[-71.252502,41.58177699906],[-71.25251,41.58162399906],[-71.25251,41.58130899906],[-71.252494,41.58098499906],[-71.252487,41.58080499906],[-71.252456,41.58044999906],[-71.252434,41.58029299906],[-71.252197,41.58031099906],[-71.251518,41.58040099906],[-71.250594,41.58051799906],[-71.250465,41.58055599906],[-71.250404,41.58059799906],[-71.25029,41.58068599906],[-71.250137,41.58079699906],[-71.249801,41.58107799906],[-71.249557,41.58130799906],[-71.249381,41.58144699906],[-71.249336,41.58146999906],[-71.249267,41.58149399906],[-71.248908,41.58157799906],[-71.248794,41.58097199906],[-71.248664,41.58035299906],[-71.248584,41.57990799906],[-71.248191,41.57983499906],[-71.248153,41.57982699906],[-71.248069,41.57982399906],[-71.247993,41.57981699906],[-71.247917,41.57980499906],[-71.247848,41.57980599906],[-71.247802,41.57984699906],[-71.247726,41.57985799906],[-71.24765,41.57985499906],[-71.247467,41.57986699906],[-71.247398,41.57989999906],[-71.247306,41.57993399906],[-71.247215,41.57993499906],[-71.247123,41.57992399906],[-71.247047,41.57990299906],[-71.246971,41.57989099906],[-71.246879,41.57989199906],[-71.246803,41.57986199906],[-71.246727,41.57975599906],[-71.246673,41.57970299906],[-71.246612,41.57966799906],[-71.246536,41.57963299906],[-71.246437,41.57962199906],[-71.246337,41.57963299906],[-71.24623,41.57964799906],[-71.246154,41.57964499906],[-71.246078,41.57963299906],[-71.246009,41.57962099906],[-71.245925,41.57960899906],[-71.245872,41.57962799906],[-71.245811,41.57968799906],[-71.245757,41.57974799906],[-71.245681,41.57986199906],[-71.245651,41.57992099906],[-71.24562,41.57997599906],[-71.24562,41.58004799906],[-71.245605,41.58010199906],[-71.245552,41.58016199906],[-71.245407,41.58023199906],[-71.245323,41.58021099906],[-71.245247,41.58017199906],[-71.245147,41.58013299906],[-71.245078,41.58011199906],[-71.244979,41.58009199906],[-71.24488,41.58008499906],[-71.244804,41.58008199906],[-71.24472,41.58011499906],[-71.244651,41.58013899906],[-71.244583,41.58015799906],[-71.244484,41.58015999906],[-71.244316,41.58018999906],[-71.244224,41.58020999906],[-71.244056,41.58021299906],[-71.243973,41.58025099906],[-71.243896,41.58029299906],[-71.243812,41.58033499906],[-71.24372,41.58035499906],[-71.243636,41.58035199906],[-71.243545,41.58032199906],[-71.243484,41.58028799906],[-71.243408,41.58023899906],[-71.243324,41.58020099906],[-71.24324,41.58021099906],[-71.243171,41.58026199906],[-71.243003,41.58030099906],[-71.242912,41.58028499906],[-71.242828,41.58025499906],[-71.242744,41.58026999906],[-71.242683,41.58032599906],[-71.242652,41.58039399906],[-71.242599,41.58043499906],[-71.242538,41.58046799906],[-71.242446,41.58046999906],[-71.242378,41.58047599906],[-71.242294,41.58049499906],[-71.242225,41.58054599906],[-71.242179,41.58061499906],[-71.242126,41.58068299906],[-71.242065,41.58072999906],[-71.242004,41.58076699906],[-71.241951,41.58080399906],[-71.241882,41.58083199906],[-71.241806,41.58086099906],[-71.241729,41.58088499906],[-71.241653,41.58089999906],[-71.241577,41.58092399906],[-71.2415,41.58097899906],[-71.241454,41.58103399906],[-71.241378,41.58106699906],[-71.241287,41.58108199906],[-71.241195,41.58110199906],[-71.241111,41.58114899906],[-71.241058,41.58118999906],[-71.240966,41.58129099906],[-71.240913,41.58135499906],[-71.240844,41.58141099906],[-71.240814,41.58146999906],[-71.240783,41.58153799906],[-71.240776,41.58159199906],[-71.240768,41.58167299906],[-71.240753,41.58174099906],[-71.24073,41.58179999906],[-71.240707,41.58185499906],[-71.240684,41.58191799906],[-71.240646,41.58197799906],[-71.2406,41.58203299906],[-71.240516,41.58214199906],[-71.240463,41.58218799906],[-71.240402,41.58221699906],[-71.240326,41.58224499906],[-71.240272,41.58226899906],[-71.240179,41.58230699906],[-71.240279,41.58243199906],[-71.240311,41.58247599906],[-71.240361,41.58253299906],[-71.240418,41.58258299906],[-71.24047,41.58263699906],[-71.240517,41.58269399906],[-71.240568,41.58275199906],[-71.24062,41.58279399906],[-71.240676,41.58282799906],[-71.240735,41.58287299906],[-71.240789,41.58291699906],[-71.240846,41.58295699906],[-71.240911,41.58300099906],[-71.240963,41.58303899906],[-71.24104,41.58309399906],[-71.241102,41.58313399906],[-71.241148,41.58318299906],[-71.241201,41.58323599906],[-71.241253,41.58327799906],[-71.24131,41.58332099906],[-71.241365,41.58336499906],[-71.24141,41.58340899906],[-71.241451,41.58346599906],[-71.241461,41.58348999906],[-71.238065,41.58349799906],[-71.23844,41.58440199906],[-71.23949,41.58636599906],[-71.240112,41.58750599906],[-71.240168,41.58858199906],[-71.239268,41.59071399906],[-71.240393,41.59262199906],[-71.240018,41.59514699906],[-71.239418,41.59565199906],[-71.240018,41.59643799906],[-71.239718,41.60002899906],[-71.239118,41.60283399906],[-71.238442,41.60535899906],[-71.237617,41.60608899906],[-71.238292,41.60659399906],[-71.238292,41.60973599906],[-71.238446,41.61233899906],[-71.238294,41.61363499906],[-71.238294,41.61492599906],[-71.238068,41.61677799906],[-71.238219,41.61857299906],[-71.237067,41.61966299906],[-71.237582,41.62032699906],[-71.237992,41.62082099906],[-71.238021,41.62085999906],[-71.238125,41.62091899906],[-71.238289,41.62084099906],[-71.238792,41.62059299906],[-71.239234,41.62036399906],[-71.239463,41.62026499906],[-71.2397,41.62018299906],[-71.239967,41.62011099906],[-71.240173,41.62007999906],[-71.240371,41.62003999906],[-71.240638,41.62001199906],[-71.240753,41.62001399906],[-71.240928,41.62001499906],[-71.241272,41.62003999906],[-71.241348,41.62004799906],[-71.241523,41.62006199906],[-71.241782,41.62008399906],[-71.242233,41.62013399906],[-71.242446,41.62015799906],[-71.242736,41.62019199906],[-71.243057,41.62022599906],[-71.243903,41.62032199906],[-71.244117,41.62035799906],[-71.244277,41.62038199906],[-71.244461,41.62041499906],[-71.244648,41.62043799906],[-71.244926,41.62047299906],[-71.245178,41.62049499906],[-71.245266,41.62031599906],[-71.245292,41.62026299906],[-71.245429,41.61995899906],[-71.245536,41.61971799906],[-71.245584,41.61961099906],[-71.24562,41.61953199906],[-71.245834,41.61904099906],[-71.245872,41.61895499906],[-71.245935,41.61880499906],[-71.246025,41.61859599906],[-71.246139,41.61824299906],[-71.246185,41.61802099906],[-71.2462,41.61779599906],[-71.2462,41.61757099906],[-71.246162,41.61725599906],[-71.246162,41.61722499906],[-71.246116,41.61678399906],[-71.246017,41.61605699906],[-71.24594,41.61530599906],[-71.245948,41.61501299906],[-71.246475,41.61520599906],[-71.246877,41.61537899906],[-71.247665,41.61571799906],[-71.247772,41.61576599906],[-71.248046,41.61587299906],[-71.24855,41.61607499906],[-71.24858,41.61608799906],[-71.248797,41.61617899906],[-71.249061,41.61628999906],[-71.249435,41.61645799906],[-71.249639,41.61654299906],[-71.249893,41.61664699906],[-71.250122,41.61674699906],[-71.250213,41.61678099906],[-71.250259,41.61680199906],[-71.25035,41.61683199906],[-71.250442,41.61685699906],[-71.250533,41.61688299906],[-71.250595,41.61689499906],[-71.250846,41.61692999906],[-71.250877,41.61693399906],[-71.250991,41.61694099906],[-71.251197,41.61695099906],[-71.251274,41.61694499906],[-71.251312,41.61694799906],[-71.251358,41.61694299906],[-71.251441,41.61693699906],[-71.251525,41.61692199906],[-71.251655,41.61690999906],[-71.251777,41.61688999906],[-71.251908,41.61686199906],[-71.252052,41.61682599906],[-71.252143,41.61679699906],[-71.252227,41.61676399906],[-71.252533,41.61663599906],[-71.252784,41.61654099906],[-71.253036,41.61643699906],[-71.253096,41.61641199906],[-71.25357,41.61622399906],[-71.253684,41.61617699906],[-71.253829,41.61611499906],[-71.253952,41.61606399906],[-71.254066,41.61599799906],[-71.254203,41.61592299906],[-71.254379,41.61581599906],[-71.254554,41.61570499906],[-71.254821,41.61553799906],[-71.25492,41.61547699906],[-71.255096,41.61536599906],[-71.255378,41.61520699906],[-71.255912,41.61493499906],[-71.256164,41.61478599906]]]}}"}, +{"type": "blockgroup", "typeId": 401041, "areaId": 29319, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.307224,41.56548799906],[-71.304828,41.56430299906],[-71.302681,41.56324399906],[-71.301786,41.56279499906],[-71.301481,41.56265599906],[-71.301197,41.56246899906],[-71.300925,41.56228199906],[-71.301009,41.56217499906],[-71.301053,41.56212099906],[-71.301224,41.56195799906],[-71.30127,41.56190899906],[-71.301313,41.56185099906],[-71.301359,41.56179499906],[-71.300985,41.56152799906],[-71.300845,41.56142799906],[-71.300256,41.56100799906],[-71.296031,41.55799499906],[-71.295298,41.55747199906],[-71.295003,41.55726099906],[-71.293708,41.55636099906],[-71.293352,41.55609099906],[-71.293117,41.55591199906],[-71.292913,41.55576499906],[-71.291982,41.55510099906],[-71.290753,41.55422099906],[-71.290601,41.55412299906],[-71.286377,41.55109499906],[-71.281739,41.54776999906],[-71.280622,41.54697299906],[-71.280349,41.54679099906],[-71.279374,41.54620299906],[-71.276535,41.54449899906],[-71.273248,41.54262999906],[-71.273197,41.54259899906],[-71.271914,41.54181799906],[-71.271705,41.54169099906],[-71.268837,41.54006399906],[-71.266319,41.53863499906],[-71.266242,41.53858699906],[-71.26612,41.53850399906],[-71.265884,41.53837799906],[-71.265663,41.53826899906],[-71.265571,41.53839299906],[-71.265541,41.53844299906],[-71.265395,41.53865299906],[-71.26535,41.53872599906],[-71.265251,41.53887199906],[-71.265159,41.53899999906],[-71.265022,41.53920999906],[-71.264908,41.53938799906],[-71.264556,41.53990799906],[-71.264533,41.53993999906],[-71.264244,41.54036399906],[-71.263954,41.54079299906],[-71.263893,41.54088499906],[-71.263618,41.54129499906],[-71.263503,41.54145999906],[-71.263481,41.54150499906],[-71.263244,41.54185199906],[-71.263069,41.54211699906],[-71.262283,41.54327199906],[-71.261886,41.54387399906],[-71.261589,41.54429399906],[-71.261406,41.54453199906],[-71.261238,41.54475599906],[-71.261177,41.54483299906],[-71.260986,41.54508899906],[-71.260917,41.54518499906],[-71.260681,41.54551399906],[-71.260482,41.54581099906],[-71.260124,41.54631799906],[-71.260108,41.54633599906],[-71.259742,41.54686099906],[-71.259429,41.54729999906],[-71.259376,41.54738199906],[-71.259126,41.54773999906],[-71.258857,41.54812599906],[-71.25885,41.54814399906],[-71.258666,41.54843999906],[-71.258514,41.54875899906],[-71.258369,41.54911699906],[-71.258102,41.54979299906],[-71.25778,41.55062799906],[-71.257713,41.55080499906],[-71.25769,41.55088199906],[-71.257654,41.55100399906],[-71.257629,41.55109099906],[-71.25761,41.55116199906],[-71.257408,41.55191499906],[-71.257003,41.55337699906],[-71.25679,41.55411999906],[-71.256759,41.55420999906],[-71.256736,41.55430099906],[-71.256706,41.55441399906],[-71.256469,41.55521599906],[-71.256339,41.55560599906],[-71.255882,41.55679899906],[-71.255642,41.55741999906],[-71.255401,41.55804699906],[-71.255574,41.55810099906],[-71.255645,41.55812299906],[-71.257408,41.55860599906],[-71.257438,41.55861499906],[-71.25801,41.55876999906],[-71.258194,41.55881599906],[-71.259162,41.55907199906],[-71.260376,41.55938599906],[-71.261146,41.55958699906],[-71.261436,41.55964399906],[-71.262115,41.55974299906],[-71.262664,41.55982699906],[-71.263214,41.55992899906],[-71.263793,41.56005199906],[-71.264655,41.56023799906],[-71.265709,41.56041099906],[-71.266769,41.56057499906],[-71.267105,41.56062199906],[-71.267944,41.56075399906],[-71.268768,41.56086899906],[-71.269424,41.56097299906],[-71.269988,41.56102499906],[-71.270339,41.56100899906],[-71.27069,41.56096099906],[-71.271034,41.56086899906],[-71.271431,41.56071699906],[-71.272003,41.56044899906],[-71.272987,41.55995699906],[-71.273765,41.55957199906],[-71.273967,41.55946999906],[-71.274566,41.55916899906],[-71.274993,41.55896799906],[-71.275054,41.55893799906],[-71.275497,41.55878099906],[-71.275807,41.55870999906],[-71.275909,41.55868699906],[-71.276229,41.55864499906],[-71.276443,41.55864099906],[-71.276565,41.55864299906],[-71.277061,41.55867799906],[-71.277466,41.55871999906],[-71.277824,41.55875699906],[-71.278778,41.55886899906],[-71.279164,41.55891299906],[-71.279724,41.55897699906],[-71.27983,41.55898799906],[-71.28012,41.55900499906],[-71.28045,41.55900699906],[-71.280861,41.55899899906],[-71.281906,41.55896899906],[-71.283195,41.55893899906],[-71.283378,41.55893499906],[-71.2835,41.55893299906],[-71.284675,41.55890499906],[-71.285011,41.55891199906],[-71.285969,41.55895199906],[-71.287325,41.55904199906],[-71.287696,41.55911099906],[-71.287605,41.55929699906],[-71.287231,41.55997999906],[-71.286888,41.56059499906],[-71.286819,41.56071799906],[-71.28672,41.56093599906],[-71.28656,41.56135399906],[-71.28643,41.56173399906],[-71.286323,41.56206099906],[-71.286239,41.56227899906],[-71.286209,41.56233799906],[-71.286041,41.56266999906],[-71.285865,41.56297899906],[-71.285659,41.56329399906],[-71.285461,41.56354999906],[-71.285438,41.56357299906],[-71.284972,41.56410499906],[-71.284683,41.56443999906],[-71.284324,41.56484699906],[-71.283737,41.56551699906],[-71.283203,41.56609499906],[-71.283065,41.56620999906],[-71.282983,41.56628099906],[-71.282768,41.56644599906],[-71.28263,41.56654299906],[-71.28247,41.56664499906],[-71.282248,41.56676299906],[-71.281936,41.56692599906],[-71.281547,41.56712299906],[-71.281013,41.56738599906],[-71.280387,41.56770399906],[-71.279594,41.56810699906],[-71.279289,41.56828399906],[-71.279128,41.56837299906],[-71.278991,41.56846599906],[-71.278854,41.56855399906],[-71.278724,41.56864699906],[-71.278434,41.56886899906],[-71.278289,41.56898399906],[-71.278167,41.56909499906],[-71.278053,41.56920899906],[-71.277931,41.56931999906],[-71.27716,41.57002899906],[-71.276908,41.57025899906],[-71.276542,41.57060399906],[-71.275672,41.57136899906],[-71.275093,41.57188499906],[-71.274353,41.57253899906],[-71.274215,41.57266299906],[-71.274078,41.57278299906],[-71.273933,41.57290299906],[-71.273795,41.57302199906],[-71.273719,41.57309199906],[-71.273658,41.57314199906],[-71.273529,41.57326199906],[-71.273414,41.57336299906],[-71.273307,41.57346899906],[-71.273109,41.57365799906],[-71.27301,41.57374999906],[-71.272918,41.57384099906],[-71.272826,41.57393799906],[-71.272743,41.57403899906],[-71.272522,41.57431799906],[-71.272487,41.57436199906],[-71.272468,41.57438599906],[-71.272457,41.57440199906],[-71.272369,41.57452799906],[-71.272331,41.57458299906],[-71.27227,41.57467399906],[-71.272193,41.57479199906],[-71.272132,41.57491499906],[-71.272064,41.57504299906],[-71.271987,41.57520599906],[-71.271919,41.57536999906],[-71.271873,41.57547399906],[-71.271797,41.57566899906],[-71.271751,41.57580499906],[-71.271728,41.57585999906],[-71.271697,41.57593699906],[-71.27169,41.57596899906],[-71.271652,41.57607299906],[-71.27156,41.57634499906],[-71.271514,41.57648599906],[-71.271461,41.57662199906],[-71.271415,41.57676199906],[-71.271376,41.57687299906],[-71.271346,41.57695699906],[-71.271285,41.57711199906],[-71.271263,41.57716599906],[-71.271186,41.57736999906],[-71.271125,41.57754199906],[-71.270988,41.57787799906],[-71.270782,41.57839599906],[-71.270576,41.57891799906],[-71.270454,41.57923499906],[-71.270255,41.57972099906],[-71.269979,41.58044199906],[-71.269874,41.58071899906],[-71.269799,41.58091799906],[-71.269782,41.58096399906],[-71.269737,41.58111799906],[-71.269714,41.58119999906],[-71.269691,41.58133999906],[-71.269683,41.58139399906],[-71.26966,41.58172799906],[-71.269653,41.58184999906],[-71.26965,41.58190599906],[-71.269649,41.58191999906],[-71.26963,41.58235899906],[-71.269615,41.58259799906],[-71.2696,41.58271999906],[-71.269592,41.58284199906],[-71.269577,41.58295399906],[-71.269554,41.58307199906],[-71.269538,41.58314399906],[-71.269531,41.58319899906],[-71.269508,41.58332499906],[-71.269477,41.58345199906],[-71.26947,41.58348799906],[-71.269264,41.58451899906],[-71.269195,41.58484899906],[-71.269104,41.58532799906],[-71.269003,41.58580399906],[-71.268974,41.58594299906],[-71.268882,41.58638599906],[-71.268871,41.58646399906],[-71.268798,41.58698199906],[-71.26876,41.58721699906],[-71.26873,41.58744299906],[-71.268608,41.58821099906],[-71.268562,41.58847299906],[-71.268524,41.58859999906],[-71.268493,41.58872599906],[-71.268448,41.58885299906],[-71.268409,41.58894899906],[-71.268371,41.58904899906],[-71.268325,41.58914399906],[-71.268314,41.58917099906],[-71.268295,41.58921199906],[-71.268272,41.58923999906],[-71.268562,41.58923799906],[-71.269826,41.58912299906],[-71.269963,41.58910999906],[-71.270088,41.58909999906],[-71.271949,41.58892799906],[-71.272155,41.58891099906],[-71.272354,41.58890199906],[-71.272552,41.58888499906],[-71.273078,41.58886099906],[-71.273445,41.58885399906],[-71.273628,41.58885899906],[-71.273666,41.58886299906],[-71.273794,41.58886399906],[-71.273833,41.58901699906],[-71.273834,41.58907999906],[-71.27388,41.58912399906],[-71.273956,41.58915899906],[-71.274017,41.58921199906],[-71.27407,41.58925999906],[-71.274124,41.58930399906],[-71.274185,41.58934799906],[-71.274314,41.58937199906],[-71.274383,41.58937599906],[-71.274475,41.58939599906],[-71.274551,41.58942199906],[-71.274643,41.58945599906],[-71.274688,41.58946399906],[-71.274711,41.58944099906],[-71.274727,41.58939099906],[-71.274742,41.58932299906],[-71.274757,41.58926899906],[-71.274787,41.58923299906],[-71.274848,41.58921299906],[-71.274894,41.58922599906],[-71.27494,41.58928399906],[-71.27497,41.58934099906],[-71.274986,41.58936399906],[-71.275047,41.58939799906],[-71.275184,41.58946799906],[-71.275215,41.58947599906],[-71.275314,41.58946999906],[-71.275398,41.58943199906],[-71.275467,41.58941299906],[-71.275512,41.58941199906],[-71.275596,41.58942399906],[-71.275672,41.58946699906],[-71.275749,41.58948799906],[-71.275802,41.58951399906],[-71.275871,41.58953999906],[-71.275947,41.58957399906],[-71.275993,41.58960499906],[-71.276,41.58965899906],[-71.276001,41.58970399906],[-71.276031,41.58976599906],[-71.276046,41.58983399906],[-71.276054,41.58990099906],[-71.276062,41.58993699906],[-71.276077,41.58998599906],[-71.276084,41.59003999906],[-71.2761,41.59007999906],[-71.276115,41.59013799906],[-71.276145,41.59017799906],[-71.276207,41.59022199906],[-71.276237,41.59025299906],[-71.276252,41.59030199906],[-71.276267,41.59038299906],[-71.276298,41.59047999906],[-71.276419,41.59062299906],[-71.276553,41.59076599906],[-71.276665,41.59086499906],[-71.276804,41.59092299906],[-71.276888,41.59093599906],[-71.276978,41.59094099906],[-71.27704,41.59094499906],[-71.277143,41.59096299906],[-71.277273,41.59097599906],[-71.277358,41.59097599906],[-71.277443,41.59100799906],[-71.277568,41.59110599906],[-71.277626,41.59116399906],[-71.277693,41.59125799906],[-71.277805,41.59141899906],[-71.277896,41.59158299906],[-71.277934,41.59165099906],[-71.277988,41.59181199906],[-71.277997,41.59195999906],[-71.277997,41.59218299906],[-71.278006,41.59223199906],[-71.278007,41.59227099906],[-71.278045,41.59231599906],[-71.278068,41.59237799906],[-71.278091,41.59242699906],[-71.278106,41.59248099906],[-71.278144,41.59253399906],[-71.27819,41.59258299906],[-71.278251,41.59260899906],[-71.27832,41.59263499906],[-71.278381,41.59266499906],[-71.27845,41.59269499906],[-71.27851,41.59272499906],[-71.278579,41.59275499906],[-71.278593,41.59275799906],[-71.278732,41.59277899906],[-71.278808,41.59278199906],[-71.278961,41.59277899906],[-71.279045,41.59277299906],[-71.279212,41.59275199906],[-71.279289,41.59273699906],[-71.279449,41.59271599906],[-71.279525,41.59270999906],[-71.279609,41.59269499906],[-71.279686,41.59267899906],[-71.279762,41.59265999906],[-71.27983,41.59264499906],[-71.279914,41.59263399906],[-71.280067,41.59262199906],[-71.280136,41.59260799906],[-71.280303,41.59261299906],[-71.28038,41.59260299906],[-71.280433,41.59259699906],[-71.280502,41.59262699906],[-71.280532,41.59266299906],[-71.280575,41.59267699906],[-71.280624,41.59269199906],[-71.28067,41.59269599906],[-71.280739,41.59271699906],[-71.280777,41.59277499906],[-71.28083,41.59281399906],[-71.280899,41.59284499906],[-71.280975,41.59285699906],[-71.281051,41.59287799906],[-71.28112,41.59291699906],[-71.281181,41.59293799906],[-71.281242,41.59295499906],[-71.281295,41.59296299906],[-71.281334,41.59296199906],[-71.281524,41.59293999906],[-71.281564,41.59293699906],[-71.281601,41.59293399906],[-71.281726,41.59296399906],[-71.2878,41.59550099906],[-71.288778,41.59599399906],[-71.289175,41.59551499906],[-71.289926,41.59462999906],[-71.290264,41.59429799906],[-71.290475,41.59409099906],[-71.292178,41.59257999906],[-71.292813,41.59201899906],[-71.29368,41.59124099906],[-71.294921,41.59035699906],[-71.296019,41.58970899906],[-71.297029,41.58914799906],[-71.29778,41.58880299906],[-71.298155,41.58864799906],[-71.298617,41.58845799906],[-71.29905,41.58821999906],[-71.299582,41.58790199906],[-71.299635,41.58784799906],[-71.30032,41.58740599906],[-71.301347,41.58672799906],[-71.302327,41.58586399906],[-71.302457,41.58567699906],[-71.302994,41.58495099906],[-71.30343,41.58381699906],[-71.303152,41.58254399906],[-71.303041,41.58200499906],[-71.302681,41.58080099906],[-71.30245,41.57992899906],[-71.302323,41.57932099906],[-71.301756,41.57663499906],[-71.301566,41.57573099906],[-71.301575,41.57557899906],[-71.301511,41.57333099906],[-71.301511,41.57276399906],[-71.301475,41.57117299906],[-71.301535,41.57037299906],[-71.303007,41.56945899906],[-71.305369,41.56775399906],[-71.307224,41.56548799906]]]}}"}, +{"type": "blockgroup", "typeId": 401042, "areaId": 29320, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.287696,41.55911099906],[-71.287325,41.55904199906],[-71.285969,41.55895199906],[-71.285011,41.55891199906],[-71.284675,41.55890499906],[-71.2835,41.55893299906],[-71.283378,41.55893499906],[-71.283195,41.55893899906],[-71.281906,41.55896899906],[-71.280861,41.55899899906],[-71.28045,41.55900699906],[-71.28012,41.55900499906],[-71.27983,41.55898799906],[-71.279724,41.55897699906],[-71.279164,41.55891299906],[-71.278778,41.55886899906],[-71.277824,41.55875699906],[-71.277466,41.55871999906],[-71.277061,41.55867799906],[-71.276565,41.55864299906],[-71.276443,41.55864099906],[-71.276229,41.55864499906],[-71.275909,41.55868699906],[-71.275807,41.55870999906],[-71.275497,41.55878099906],[-71.275054,41.55893799906],[-71.274993,41.55896799906],[-71.274566,41.55916899906],[-71.273967,41.55946999906],[-71.273765,41.55957199906],[-71.272987,41.55995699906],[-71.272003,41.56044899906],[-71.271431,41.56071699906],[-71.271034,41.56086899906],[-71.27069,41.56096099906],[-71.270339,41.56100899906],[-71.269988,41.56102499906],[-71.269424,41.56097299906],[-71.268768,41.56086899906],[-71.267944,41.56075399906],[-71.267105,41.56062199906],[-71.266769,41.56057499906],[-71.265709,41.56041099906],[-71.264655,41.56023799906],[-71.263793,41.56005199906],[-71.263214,41.55992899906],[-71.262664,41.55982699906],[-71.262115,41.55974299906],[-71.261436,41.55964399906],[-71.261146,41.55958699906],[-71.260376,41.55938599906],[-71.259162,41.55907199906],[-71.258194,41.55881599906],[-71.25801,41.55876999906],[-71.257438,41.55861499906],[-71.257408,41.55860599906],[-71.255645,41.55812299906],[-71.255574,41.55810099906],[-71.255401,41.55804699906],[-71.254669,41.56001999906],[-71.254272,41.56103699906],[-71.253944,41.56188799906],[-71.253775,41.56232999906],[-71.253669,41.56260699906],[-71.253617,41.56273799906],[-71.253471,41.56310999906],[-71.25324,41.56371399906],[-71.253074,41.56414899906],[-71.252647,41.56515699906],[-71.252609,41.56525299906],[-71.252181,41.56617099906],[-71.251846,41.56688399906],[-71.251708,41.56717099906],[-71.251594,41.56741199906],[-71.251549,41.56751599906],[-71.251487,41.56765699906],[-71.251449,41.56773899906],[-71.251235,41.56820199906],[-71.251175,41.56832099906],[-71.251129,41.56842999906],[-71.251014,41.56866599906],[-71.250961,41.56877999906],[-71.250907,41.56892499906],[-71.250839,41.56911099906],[-71.250801,41.56929199906],[-71.25077,41.56953499906],[-71.250755,41.56963499906],[-71.250747,41.56976599906],[-71.25074,41.56984699906],[-71.25074,41.57002199906],[-71.250747,41.57020199906],[-71.25077,41.57045899906],[-71.250787,41.57057899906],[-71.250808,41.57073699906],[-71.250907,41.57137499906],[-71.250938,41.57154999906],[-71.251091,41.57252799906],[-71.251129,41.57277099906],[-71.251197,41.57318399906],[-71.251228,41.57338099906],[-71.251365,41.57425199906],[-71.251373,41.57428799906],[-71.251472,41.57490299906],[-71.251503,41.57512299906],[-71.25163,41.57587099906],[-71.25164,41.57592599906],[-71.251671,41.57612399906],[-71.251846,41.57707099906],[-71.251853,41.57711599906],[-71.252059,41.57811999906],[-71.25209,41.57828599906],[-71.252136,41.57851899906],[-71.252235,41.57901299906],[-71.252265,41.57914299906],[-71.252296,41.57926899906],[-71.252319,41.57939899906],[-71.252342,41.57956899906],[-71.252357,41.57973999906],[-71.252403,41.58009499906],[-71.252418,41.58015299906],[-71.252433,41.58026999906],[-71.252434,41.58029299906],[-71.252456,41.58044999906],[-71.252487,41.58080499906],[-71.252494,41.58098499906],[-71.25251,41.58130899906],[-71.25251,41.58162399906],[-71.252502,41.58177699906],[-71.252487,41.58192599906],[-71.252479,41.58204799906],[-71.252448,41.58229199906],[-71.252403,41.58285599906],[-71.252357,41.58330199906],[-71.252342,41.58345999906],[-71.252334,41.58353699906],[-71.252319,41.58377599906],[-71.252304,41.58390699906],[-71.252281,41.58419099906],[-71.25225,41.58454299906],[-71.252235,41.58466499906],[-71.252227,41.58478599906],[-71.252212,41.58490799906],[-71.252212,41.58507499906],[-71.25222,41.58515999906],[-71.252235,41.58536299906],[-71.252242,41.58546199906],[-71.252288,41.58569499906],[-71.252319,41.58581099906],[-71.252334,41.58587999906],[-71.252349,41.58594999906],[-71.252387,41.58607999906],[-71.252426,41.58621899906],[-71.25267,41.58698399906],[-71.252815,41.58743199906],[-71.252906,41.58772699906],[-71.253151,41.58848299906],[-71.253334,41.58906999906],[-71.253494,41.58959799906],[-71.253578,41.58983999906],[-71.253631,41.59005499906],[-71.253646,41.59019799906],[-71.253799,41.59021799906],[-71.254051,41.59027199906],[-71.254547,41.59040999906],[-71.255149,41.59059199906],[-71.25579,41.59079599906],[-71.256294,41.59099299906],[-71.256405,41.59104099906],[-71.256782,41.59120399906],[-71.256858,41.59123899906],[-71.2574,41.59151199906],[-71.257965,41.59182499906],[-71.257995,41.59184199906],[-71.258422,41.59209499906],[-71.258747,41.59224799906],[-71.259033,41.59234399906],[-71.259231,41.59240299906],[-71.259574,41.59249999906],[-71.260063,41.59262999906],[-71.260307,41.59270199906],[-71.260894,41.59286599906],[-71.261406,41.59299999906],[-71.261512,41.59302499906],[-71.261947,41.59313399906],[-71.262184,41.59319599906],[-71.26268,41.59330799906],[-71.262733,41.59331599906],[-71.263343,41.59344799906],[-71.263504,41.59348099906],[-71.263961,41.59357999906],[-71.265007,41.59378899906],[-71.265129,41.59362499906],[-71.265907,41.59256499906],[-71.266265,41.59207999906],[-71.266654,41.59154099906],[-71.266891,41.59122099906],[-71.26696,41.59112999906],[-71.267005,41.59106099906],[-71.267143,41.59087399906],[-71.267394,41.59052199906],[-71.267425,41.59048599906],[-71.267776,41.58999299906],[-71.267913,41.58981399906],[-71.26802,41.58965399906],[-71.268111,41.58952199906],[-71.26818,41.58940399906],[-71.268272,41.58923999906],[-71.268295,41.58921199906],[-71.268314,41.58917099906],[-71.268325,41.58914399906],[-71.268371,41.58904899906],[-71.268409,41.58894899906],[-71.268448,41.58885299906],[-71.268493,41.58872599906],[-71.268524,41.58859999906],[-71.268562,41.58847299906],[-71.268608,41.58821099906],[-71.26873,41.58744299906],[-71.26876,41.58721699906],[-71.268798,41.58698199906],[-71.268871,41.58646399906],[-71.268882,41.58638599906],[-71.268974,41.58594299906],[-71.269003,41.58580399906],[-71.269104,41.58532799906],[-71.269195,41.58484899906],[-71.269264,41.58451899906],[-71.26947,41.58348799906],[-71.269477,41.58345199906],[-71.269508,41.58332499906],[-71.269531,41.58319899906],[-71.269538,41.58314399906],[-71.269554,41.58307199906],[-71.269577,41.58295399906],[-71.269592,41.58284199906],[-71.2696,41.58271999906],[-71.269615,41.58259799906],[-71.26963,41.58235899906],[-71.269649,41.58191999906],[-71.26965,41.58190599906],[-71.269653,41.58184999906],[-71.26966,41.58172799906],[-71.269683,41.58139399906],[-71.269691,41.58133999906],[-71.269714,41.58119999906],[-71.269737,41.58111799906],[-71.269782,41.58096399906],[-71.269799,41.58091799906],[-71.269874,41.58071899906],[-71.269979,41.58044199906],[-71.270255,41.57972099906],[-71.270454,41.57923499906],[-71.270576,41.57891799906],[-71.270782,41.57839599906],[-71.270988,41.57787799906],[-71.271125,41.57754199906],[-71.271186,41.57736999906],[-71.271263,41.57716599906],[-71.271285,41.57711199906],[-71.271346,41.57695699906],[-71.271376,41.57687299906],[-71.271415,41.57676199906],[-71.271461,41.57662199906],[-71.271514,41.57648599906],[-71.27156,41.57634499906],[-71.271652,41.57607299906],[-71.27169,41.57596899906],[-71.271697,41.57593699906],[-71.271728,41.57585999906],[-71.271751,41.57580499906],[-71.271797,41.57566899906],[-71.271873,41.57547399906],[-71.271919,41.57536999906],[-71.271987,41.57520599906],[-71.272064,41.57504299906],[-71.272132,41.57491499906],[-71.272193,41.57479199906],[-71.27227,41.57467399906],[-71.272331,41.57458299906],[-71.272369,41.57452799906],[-71.272457,41.57440199906],[-71.272468,41.57438599906],[-71.272487,41.57436199906],[-71.272522,41.57431799906],[-71.272743,41.57403899906],[-71.272826,41.57393799906],[-71.272918,41.57384099906],[-71.27301,41.57374999906],[-71.273109,41.57365799906],[-71.273307,41.57346899906],[-71.273414,41.57336299906],[-71.273529,41.57326199906],[-71.273658,41.57314199906],[-71.273719,41.57309199906],[-71.273795,41.57302199906],[-71.273933,41.57290299906],[-71.274078,41.57278299906],[-71.274215,41.57266299906],[-71.274353,41.57253899906],[-71.275093,41.57188499906],[-71.275672,41.57136899906],[-71.276542,41.57060399906],[-71.276908,41.57025899906],[-71.27716,41.57002899906],[-71.277931,41.56931999906],[-71.278053,41.56920899906],[-71.278167,41.56909499906],[-71.278289,41.56898399906],[-71.278434,41.56886899906],[-71.278724,41.56864699906],[-71.278854,41.56855399906],[-71.278991,41.56846599906],[-71.279128,41.56837299906],[-71.279289,41.56828399906],[-71.279594,41.56810699906],[-71.280387,41.56770399906],[-71.281013,41.56738599906],[-71.281547,41.56712299906],[-71.281936,41.56692599906],[-71.282248,41.56676299906],[-71.28247,41.56664499906],[-71.28263,41.56654299906],[-71.282768,41.56644599906],[-71.282983,41.56628099906],[-71.283065,41.56620999906],[-71.283203,41.56609499906],[-71.283737,41.56551699906],[-71.284324,41.56484699906],[-71.284683,41.56443999906],[-71.284972,41.56410499906],[-71.285438,41.56357299906],[-71.285461,41.56354999906],[-71.285659,41.56329399906],[-71.285865,41.56297899906],[-71.286041,41.56266999906],[-71.286209,41.56233799906],[-71.286239,41.56227899906],[-71.286323,41.56206099906],[-71.28643,41.56173399906],[-71.28656,41.56135399906],[-71.28672,41.56093599906],[-71.286819,41.56071799906],[-71.286888,41.56059499906],[-71.287231,41.55997999906],[-71.287605,41.55929699906],[-71.287696,41.55911099906]]]}}"}, +{"type": "blockgroup", "typeId": 401051, "areaId": 29321, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.292458,41.64282499906],[-71.292286,41.63942199906],[-71.290739,41.63653299906],[-71.287131,41.63390099906],[-71.280173,41.63287399906],[-71.271067,41.63325899906],[-71.267116,41.63601999906],[-71.2659,41.63854399906],[-71.267197,41.63899099906],[-71.268048,41.63986799906],[-71.270203,41.64208899906],[-71.273438,41.64751999906],[-71.27478,41.64983199906],[-71.275727,41.65067799906],[-71.277725,41.65085399906],[-71.281994,41.65015099906],[-71.290061,41.64882399906],[-71.289795,41.64706199906],[-71.291463,41.64467499906],[-71.292458,41.64282499906]]]}}"}, +{"type": "blockgroup", "typeId": 401052, "areaId": 29322, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.376519,41.59848399906],[-71.374498,41.59752799906],[-71.37077,41.59577699906],[-71.367507,41.59680899906],[-71.361203,41.59962699906],[-71.357687,41.60336499906],[-71.357149,41.60682499906],[-71.357099,41.60766999906],[-71.357709,41.60833599906],[-71.359627,41.61017999906],[-71.36552,41.60987299906],[-71.37059,41.60792599906],[-71.37292,41.60495499906],[-71.37429,41.60229099906],[-71.376519,41.59848399906]]],[[[-71.369601,41.66071899906],[-71.369548,41.66011999906],[-71.368424,41.65840099906],[-71.366713,41.65660199906],[-71.366178,41.65380399906],[-71.365268,41.65096699906],[-71.363877,41.64928799906],[-71.362914,41.64828899906],[-71.360882,41.64756899906],[-71.358688,41.64816899906],[-71.357297,41.64960799906],[-71.355051,41.65024699906],[-71.354141,41.65172599906],[-71.353437,41.65273299906],[-71.352616,41.65528499906],[-71.351184,41.65544899906],[-71.349887,41.65480299906],[-71.35068,41.65340299906],[-71.351545,41.65216499906],[-71.353795,41.65161699906],[-71.353847,41.65145799906],[-71.355577,41.64809999906],[-71.355316,41.64573699906],[-71.355769,41.64234599906],[-71.354862,41.63771099906],[-71.353652,41.63364099906],[-71.350628,41.63036299906],[-71.347302,41.62979699906],[-71.343975,41.63058899906],[-71.340346,41.62968399906],[-71.331728,41.62697099906],[-71.328703,41.62403199906],[-71.329006,41.61962299906],[-71.330669,41.61566599906],[-71.333088,41.61204799906],[-71.332181,41.60956099906],[-71.334903,41.60786599906],[-71.337322,41.60594399906],[-71.338229,41.60255199906],[-71.33959,41.59542999906],[-71.339893,41.58898599906],[-71.338834,41.58480299906],[-71.336717,41.58276799906],[-71.334752,41.58050699906],[-71.332198,41.57788499906],[-71.330753,41.57714999906],[-71.325448,41.57655599906],[-71.319111,41.57870899906],[-71.312774,41.58344599906],[-71.306437,41.59292099906],[-71.303844,41.60110399906],[-71.299235,41.60670299906],[-71.299811,41.61100999906],[-71.299523,41.61660799906],[-71.302692,41.62285299906],[-71.308741,41.62974399906],[-71.316519,41.63426599906],[-71.324008,41.63491199906],[-71.330921,41.63641899906],[-71.333802,41.63857299906],[-71.329481,41.63943399906],[-71.329193,41.64287899906],[-71.329193,41.64697099906],[-71.333802,41.65213899906],[-71.332362,41.65515399906],[-71.335242,41.66053699906],[-71.338411,41.66312099906],[-71.338987,41.66656599906],[-71.343308,41.66936599906],[-71.349933,41.66893499906],[-71.35339,41.66613599906],[-71.351373,41.66355199906],[-71.353587,41.66249599906],[-71.352527,41.66008099906],[-71.353339,41.66043899906],[-71.355104,41.66155899906],[-71.357725,41.66267799906],[-71.359919,41.66339699906],[-71.361898,41.66323699906],[-71.363289,41.66207799906],[-71.366285,41.66267799906],[-71.368638,41.66179799906],[-71.369601,41.66071899906]]]]}}"}, +{"type": "blockgroup", "typeId": 401053, "areaId": 29323, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.2878,41.59550099906],[-71.281726,41.59296399906],[-71.281601,41.59293399906],[-71.281564,41.59293699906],[-71.281524,41.59293999906],[-71.281334,41.59296199906],[-71.281295,41.59296299906],[-71.281242,41.59295499906],[-71.281181,41.59293799906],[-71.28112,41.59291699906],[-71.281051,41.59287799906],[-71.280975,41.59285699906],[-71.280899,41.59284499906],[-71.28083,41.59281399906],[-71.280777,41.59277499906],[-71.280739,41.59271699906],[-71.28067,41.59269599906],[-71.280624,41.59269199906],[-71.280575,41.59267699906],[-71.280532,41.59266299906],[-71.280502,41.59262699906],[-71.280433,41.59259699906],[-71.28038,41.59260299906],[-71.280303,41.59261299906],[-71.280136,41.59260799906],[-71.280067,41.59262199906],[-71.279914,41.59263399906],[-71.27983,41.59264499906],[-71.279762,41.59265999906],[-71.279686,41.59267899906],[-71.279609,41.59269499906],[-71.279525,41.59270999906],[-71.279449,41.59271599906],[-71.279289,41.59273699906],[-71.279212,41.59275199906],[-71.279045,41.59277299906],[-71.278961,41.59277899906],[-71.278808,41.59278199906],[-71.278732,41.59277899906],[-71.278593,41.59275799906],[-71.278579,41.59275499906],[-71.27851,41.59272499906],[-71.27845,41.59269499906],[-71.278381,41.59266499906],[-71.27832,41.59263499906],[-71.278251,41.59260899906],[-71.27819,41.59258299906],[-71.278144,41.59253399906],[-71.278106,41.59248099906],[-71.278091,41.59242699906],[-71.278068,41.59237799906],[-71.278045,41.59231599906],[-71.278007,41.59227099906],[-71.278006,41.59223199906],[-71.277997,41.59218299906],[-71.277997,41.59195999906],[-71.277988,41.59181199906],[-71.277934,41.59165099906],[-71.277896,41.59158299906],[-71.277805,41.59141899906],[-71.277693,41.59125799906],[-71.277626,41.59116399906],[-71.277568,41.59110599906],[-71.277443,41.59100799906],[-71.277358,41.59097599906],[-71.277273,41.59097599906],[-71.277143,41.59096299906],[-71.27704,41.59094499906],[-71.276978,41.59094099906],[-71.276888,41.59093599906],[-71.276804,41.59092299906],[-71.276665,41.59086499906],[-71.276553,41.59076599906],[-71.276419,41.59062299906],[-71.276298,41.59047999906],[-71.276267,41.59038299906],[-71.276252,41.59030199906],[-71.276237,41.59025299906],[-71.276207,41.59022199906],[-71.276145,41.59017799906],[-71.276115,41.59013799906],[-71.2761,41.59007999906],[-71.276084,41.59003999906],[-71.276077,41.58998599906],[-71.276062,41.58993699906],[-71.276054,41.58990099906],[-71.276046,41.58983399906],[-71.276031,41.58976599906],[-71.276001,41.58970399906],[-71.276,41.58965899906],[-71.275993,41.58960499906],[-71.275947,41.58957399906],[-71.275871,41.58953999906],[-71.275802,41.58951399906],[-71.275749,41.58948799906],[-71.275672,41.58946699906],[-71.275596,41.58942399906],[-71.275512,41.58941199906],[-71.275467,41.58941299906],[-71.275398,41.58943199906],[-71.275314,41.58946999906],[-71.275215,41.58947599906],[-71.275184,41.58946799906],[-71.275047,41.58939799906],[-71.274986,41.58936399906],[-71.27497,41.58934099906],[-71.27494,41.58928399906],[-71.274894,41.58922599906],[-71.274848,41.58921299906],[-71.274787,41.58923299906],[-71.274757,41.58926899906],[-71.274742,41.58932299906],[-71.274727,41.58939099906],[-71.274711,41.58944099906],[-71.274688,41.58946399906],[-71.274643,41.58945599906],[-71.274551,41.58942199906],[-71.274475,41.58939599906],[-71.274383,41.58937599906],[-71.274314,41.58937199906],[-71.274185,41.58934799906],[-71.274124,41.58930399906],[-71.27407,41.58925999906],[-71.274017,41.58921199906],[-71.273956,41.58915899906],[-71.27388,41.58912399906],[-71.273834,41.58907999906],[-71.273833,41.58901699906],[-71.273794,41.58886399906],[-71.273666,41.58886299906],[-71.273628,41.58885899906],[-71.273445,41.58885399906],[-71.273078,41.58886099906],[-71.272552,41.58888499906],[-71.272354,41.58890199906],[-71.272155,41.58891099906],[-71.271949,41.58892799906],[-71.270088,41.58909999906],[-71.269963,41.58910999906],[-71.269826,41.58912299906],[-71.268562,41.58923799906],[-71.268272,41.58923999906],[-71.26818,41.58940399906],[-71.268111,41.58952199906],[-71.26802,41.58965399906],[-71.267913,41.58981399906],[-71.267776,41.58999299906],[-71.267425,41.59048599906],[-71.267394,41.59052199906],[-71.267143,41.59087399906],[-71.267005,41.59106099906],[-71.26696,41.59112999906],[-71.266891,41.59122099906],[-71.266654,41.59154099906],[-71.266265,41.59207999906],[-71.265907,41.59256499906],[-71.265129,41.59362499906],[-71.265007,41.59378899906],[-71.263961,41.59357999906],[-71.263504,41.59348099906],[-71.263343,41.59344799906],[-71.262733,41.59331599906],[-71.26268,41.59330799906],[-71.262184,41.59319599906],[-71.261947,41.59313399906],[-71.261512,41.59302499906],[-71.261406,41.59299999906],[-71.260894,41.59286599906],[-71.260307,41.59270199906],[-71.260063,41.59262999906],[-71.259574,41.59249999906],[-71.259231,41.59240299906],[-71.259033,41.59234399906],[-71.258747,41.59224799906],[-71.258422,41.59209499906],[-71.257995,41.59184199906],[-71.257965,41.59182499906],[-71.2574,41.59151199906],[-71.256858,41.59123899906],[-71.256782,41.59120399906],[-71.256405,41.59104099906],[-71.256294,41.59099299906],[-71.25579,41.59079599906],[-71.255149,41.59059199906],[-71.254547,41.59040999906],[-71.254051,41.59027199906],[-71.253799,41.59021799906],[-71.253646,41.59019799906],[-71.253677,41.59043699906],[-71.253684,41.59050799906],[-71.253692,41.59084599906],[-71.253661,41.59103099906],[-71.253654,41.59110799906],[-71.253624,41.59134699906],[-71.253433,41.59209899906],[-71.253318,41.59249699906],[-71.25315,41.59305899906],[-71.252922,41.59360799906],[-71.252891,41.59367599906],[-71.252563,41.59448399906],[-71.252532,41.59455199906],[-71.252449,41.59476099906],[-71.252372,41.59495199906],[-71.252288,41.59515599906],[-71.25217,41.59545499906],[-71.251831,41.59628199906],[-71.251731,41.59652699906],[-71.25164,41.59673999906],[-71.251335,41.59747099906],[-71.25106,41.59816599906],[-71.251023,41.59824199906],[-71.250785,41.59875199906],[-71.250732,41.59885699906],[-71.25045,41.59942099906],[-71.25019,41.60007899906],[-71.249999,41.60060499906],[-71.250007,41.60074399906],[-71.250061,41.60092299906],[-71.250396,41.60165499906],[-71.250427,41.60172699906],[-71.250618,41.60215499906],[-71.250801,41.60256599906],[-71.251419,41.60397199906],[-71.251495,41.60414199906],[-71.251655,41.60451299906],[-71.251945,41.60516899906],[-71.252342,41.60606199906],[-71.252708,41.60687899906],[-71.253013,41.60758899906],[-71.253318,41.60824899906],[-71.253341,41.60831199906],[-71.253425,41.60848599906],[-71.25354,41.60875799906],[-71.253608,41.60891499906],[-71.253753,41.60924499906],[-71.254081,41.60998599906],[-71.25415,41.61013799906],[-71.254234,41.61033399906],[-71.254303,41.61048199906],[-71.254342,41.61055499906],[-71.254386,41.61068299906],[-71.254432,41.61078499906],[-71.254486,41.61089699906],[-71.254692,41.61136099906],[-71.254722,41.61143299906],[-71.254784,41.61157199906],[-71.254951,41.61194999906],[-71.255271,41.61268299906],[-71.255729,41.61370499906],[-71.256057,41.61447299906],[-71.256126,41.61465199906],[-71.256164,41.61478599906],[-71.256256,41.61515399906],[-71.256401,41.61568199906],[-71.256607,41.61651599906],[-71.256637,41.61664099906],[-71.25682,41.61732199906],[-71.256851,41.61745199906],[-71.256866,41.61753299906],[-71.256889,41.61763599906],[-71.256904,41.61776599906],[-71.256904,41.61858099906],[-71.256896,41.61885599906],[-71.256886,41.61915999906],[-71.256881,41.61931999906],[-71.256866,41.61964499906],[-71.256859,41.61978899906],[-71.256835,41.62038399906],[-71.256828,41.62058799906],[-71.25682,41.62084399906],[-71.256815,41.62108499906],[-71.256813,41.62122699906],[-71.25679,41.62145699906],[-71.256752,41.62171399906],[-71.256721,41.62185399906],[-71.256697,41.62198699906],[-71.25669,41.62202599906],[-71.256584,41.62246499906],[-71.256363,41.62338799906],[-71.256156,41.62419799906],[-71.256118,41.62433799906],[-71.255973,41.62491799906],[-71.255813,41.62554699906],[-71.255531,41.62659299906],[-71.255493,41.62672399906],[-71.255439,41.62692799906],[-71.255249,41.62755699906],[-71.255081,41.62813199906],[-71.25502,41.62831799906],[-71.254765,41.62911199906],[-71.254745,41.62917499906],[-71.254652,41.62943599906],[-71.25428,41.63053499906],[-71.254234,41.63066599906],[-71.254195,41.63078899906],[-71.253936,41.63153699906],[-71.25389,41.63167299906],[-71.253784,41.63196299906],[-71.253746,41.63204899906],[-71.253631,41.63235799906],[-71.253585,41.63247099906],[-71.253692,41.63263999906],[-71.253753,41.63272899906],[-71.253822,41.63284999906],[-71.253929,41.63304999906],[-71.254058,41.63324999906],[-71.254327,41.63374999906],[-71.255011,41.63494499906],[-71.2554,41.63563999906],[-71.255564,41.63591599906],[-71.255696,41.63613899906],[-71.256497,41.63748899906],[-71.256589,41.63744899906],[-71.258512,41.63661699906],[-71.261775,41.63465399906],[-71.263385,41.63253099906],[-71.264303,41.63074799906],[-71.265791,41.62913599906],[-71.267697,41.62758099906],[-71.271076,41.62693399906],[-71.274887,41.62576799906],[-71.27714,41.62363099906],[-71.278353,41.61974599906],[-71.277548,41.61802599906],[-71.278585,41.61584799906],[-71.280955,41.61102699906],[-71.28309,41.60647699906],[-71.284351,41.60360999906],[-71.285201,41.60163199906],[-71.287785,41.59734099906],[-71.286131,41.59661399906],[-71.287177,41.59590699906],[-71.2878,41.59550099906]]]}}"}, +{"type": "blockgroup", "typeId": 402001, "areaId": 29324, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.307166,41.52427599906],[-71.306045,41.51954199906],[-71.30597,41.51954699906],[-71.305821,41.51949499906],[-71.305767,41.51937799906],[-71.305815,41.51927799906],[-71.305828,41.51919699906],[-71.305743,41.51902799906],[-71.305669,41.51886599906],[-71.305335,41.51882799906],[-71.305046,41.51879299906],[-71.30471,41.51875499906],[-71.304029,41.51867199906],[-71.303939,41.51866199906],[-71.303436,41.51859599906],[-71.303215,41.51857299906],[-71.30249,41.51849299906],[-71.301742,41.51840499906],[-71.301177,41.51833499906],[-71.300193,41.51823299906],[-71.300117,41.51847799906],[-71.299743,41.51947999906],[-71.299576,41.51995099906],[-71.299262,41.52084099906],[-71.299186,41.52104499906],[-71.299022,41.52152699906],[-71.298942,41.52176599906],[-71.298812,41.52210899906],[-71.298751,41.52227399906],[-71.298683,41.52245699906],[-71.298603,41.52267499906],[-71.298553,41.52281399906],[-71.298221,41.52373299906],[-71.298187,41.52382999906],[-71.29804,41.52418999906],[-71.297973,41.52440199906],[-71.29792,41.52455199906],[-71.29779,41.52493199906],[-71.297706,41.52515899906],[-71.297668,41.52529099906],[-71.297637,41.52536799906],[-71.297622,41.52539999906],[-71.297584,41.52549899906],[-71.297561,41.52553599906],[-71.297515,41.52563599906],[-71.297416,41.52582699906],[-71.298561,41.52593899906],[-71.299827,41.52607199906],[-71.30017,41.52610499906],[-71.300635,41.52615799906],[-71.301177,41.52621999906],[-71.30175,41.52628099906],[-71.302062,41.52629699906],[-71.302253,41.52627999906],[-71.302337,41.52626899906],[-71.302581,41.52621899906],[-71.304588,41.52577799906],[-71.304985,41.52570699906],[-71.305129,41.52567299906],[-71.305502,41.52561199906],[-71.305321,41.52487199906],[-71.306909,41.52465899906],[-71.307074,41.52451299906],[-71.307166,41.52427599906]]]}}"}, +{"type": "blockgroup", "typeId": 402002, "areaId": 29325, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.325118,41.53216899906],[-71.318384,41.52544399906],[-71.317507,41.52456899906],[-71.313114,41.52202199906],[-71.31264,41.52138999906],[-71.312369,41.52102999906],[-71.312237,41.52085299906],[-71.311141,41.51939599906],[-71.310956,41.51941799906],[-71.310916,41.51942099906],[-71.310523,41.51944899906],[-71.310424,41.51944599906],[-71.31031,41.51943999906],[-71.31015,41.51942899906],[-71.309867,41.51941299906],[-71.309814,41.51940899906],[-71.309471,41.51936599906],[-71.308937,41.51927399906],[-71.308486,41.51920199906],[-71.307987,41.51914299906],[-71.307273,41.51905899906],[-71.307189,41.51905199906],[-71.306747,41.51899799906],[-71.306251,41.51893599906],[-71.305976,41.51890099906],[-71.305669,41.51886599906],[-71.305743,41.51902799906],[-71.305828,41.51919699906],[-71.305815,41.51927799906],[-71.305767,41.51937799906],[-71.305821,41.51949499906],[-71.30597,41.51954699906],[-71.306045,41.51954199906],[-71.307166,41.52427599906],[-71.307074,41.52451299906],[-71.306909,41.52465899906],[-71.305321,41.52487199906],[-71.305502,41.52561199906],[-71.305129,41.52567299906],[-71.305244,41.52566999906],[-71.305351,41.52569999906],[-71.30542,41.52572999906],[-71.305449,41.52575299906],[-71.305504,41.52579599906],[-71.305592,41.52600999906],[-71.305618,41.52607299906],[-71.305695,41.52634899906],[-71.305717,41.52642699906],[-71.305816,41.52677999906],[-71.305859,41.52692499906],[-71.305926,41.52694399906],[-71.306816,41.52680399906],[-71.307237,41.52714999906],[-71.307521,41.52822299906],[-71.306816,41.52831999906],[-71.3068,41.52832599906],[-71.306314,41.52838699906],[-71.30635,41.52849399906],[-71.306693,41.52972599906],[-71.306823,41.53022299906],[-71.306772,41.53023099906],[-71.306114,41.53033599906],[-71.306092,41.53032899906],[-71.306077,41.53032599906],[-71.306037,41.53031499906],[-71.305961,41.53030799906],[-71.305648,41.53033699906],[-71.305175,41.53038699906],[-71.304267,41.53050399906],[-71.303466,41.53060499906],[-71.303398,41.53061099906],[-71.302635,41.53070299906],[-71.302215,41.53074799906],[-71.301963,41.53078899906],[-71.301887,41.53081699906],[-71.301849,41.53085399906],[-71.301811,41.53090399906],[-71.30178,41.53096299906],[-71.301765,41.53107199906],[-71.30176,41.53120799906],[-71.30175,41.53147299906],[-71.301719,41.53198699906],[-71.301666,41.53298299906],[-71.30162,41.53366399906],[-71.301628,41.53372699906],[-71.301651,41.53378499906],[-71.301681,41.53384799906],[-71.301719,41.53390999906],[-71.301765,41.53393999906],[-71.302108,41.53418099906],[-71.303382,41.53503399906],[-71.303421,41.53505599906],[-71.303566,41.53514299906],[-71.303584,41.53514899906],[-71.303686,41.53528499906],[-71.305179,41.53626899906],[-71.305372,41.53644599906],[-71.306004,41.53716799906],[-71.306121,41.53724199906],[-71.307606,41.53797799906],[-71.30767,41.53801899906],[-71.307739,41.53805799906],[-71.307815,41.53808399906],[-71.307891,41.53811799906],[-71.307952,41.53816199906],[-71.307998,41.53820199906],[-71.308052,41.53824099906],[-71.308128,41.53828499906],[-71.308204,41.53831899906],[-71.308273,41.53833999906],[-71.308342,41.53836599906],[-71.308418,41.53839599906],[-71.308616,41.53849499906],[-71.308677,41.53852999906],[-71.308738,41.53857399906],[-71.308831,41.53863599906],[-71.30863,41.53882699906],[-71.30836,41.53908399906],[-71.308152,41.53929899906],[-71.308027,41.53944699906],[-71.307847,41.53967499906],[-71.30774,41.53982199906],[-71.307638,41.53997399906],[-71.307565,41.54010999906],[-71.307424,41.54038799906],[-71.307322,41.54061599906],[-71.307249,41.54083199906],[-71.307181,41.54105099906],[-71.30713,41.54125399906],[-71.307091,41.54149899906],[-71.307074,41.54169299906],[-71.307063,41.54188699906],[-71.307068,41.54208099906],[-71.30708,41.54224599906],[-71.307102,41.54244399906],[-71.307136,41.54260899906],[-71.307175,41.54277399906],[-71.307215,41.54290499906],[-71.307262,41.54303099906],[-71.307271,41.54305099906],[-71.307292,41.54310899906],[-71.30731,41.54315599906],[-71.307347,41.54324199906],[-71.307392,41.54334499906],[-71.307459,41.54347599906],[-71.307588,41.54370099906],[-71.307744,41.54393899906],[-71.307869,41.54410199906],[-71.307957,41.54421099906],[-71.308035,41.54429199906],[-71.308144,41.54440899906],[-71.3083,41.54456499906],[-71.308445,41.54471299906],[-71.308581,41.54484499906],[-71.3087,41.54498099906],[-71.308778,41.54508199906],[-71.308861,41.54522999906],[-71.308966,41.54547399906],[-71.309309,41.54629099906],[-71.307393,41.54862499906],[-71.307092,41.54846499906],[-71.306972,41.54840299906],[-71.306765,41.54830599906],[-71.306463,41.54815799906],[-71.306276,41.54806799906],[-71.306084,41.54795899906],[-71.305663,41.54772199906],[-71.305367,41.54755499906],[-71.305206,41.54745399906],[-71.304973,41.54731399906],[-71.304718,41.54718899906],[-71.303225,41.54647599906],[-71.30221,41.54602899906],[-71.301419,41.54808099906],[-71.301276,41.54804499906],[-71.300679,41.54963399906],[-71.300649,41.55005799906],[-71.301563,41.55048999906],[-71.301264,41.55122499906],[-71.301635,41.55140399906],[-71.302063,41.55160999906],[-71.30221,41.55167299906],[-71.303239,41.55216599906],[-71.302938,41.55253899906],[-71.302916,41.55261399906],[-71.30397,41.55303399906],[-71.304443,41.55322399906],[-71.304908,41.55343099906],[-71.305572,41.55372299906],[-71.305822,41.55383499906],[-71.305839,41.55379899906],[-71.305938,41.55361299906],[-71.306007,41.55346699906],[-71.306058,41.55337199906],[-71.306126,41.55323199906],[-71.306203,41.55328599906],[-71.306241,41.55330599906],[-71.306181,41.55335499906],[-71.306136,41.55340799906],[-71.30614,41.55348699906],[-71.306121,41.55354299906],[-71.306099,41.55359899906],[-71.306069,41.55366399906],[-71.306036,41.55373299906],[-71.305999,41.55383599906],[-71.306039,41.55387399906],[-71.306106,41.55390499906],[-71.306163,41.55394399906],[-71.306215,41.55400399906],[-71.306199,41.55405099906],[-71.30616,41.55410299906],[-71.306054,41.55429799906],[-71.306028,41.55435399906],[-71.306001,41.55440699906],[-71.305956,41.55447999906],[-71.305917,41.55455099906],[-71.305868,41.55467899906],[-71.305803,41.55482299906],[-71.305768,41.55488999906],[-71.305729,41.55495199906],[-71.305695,41.55501899906],[-71.305658,41.55508699906],[-71.305572,41.55521899906],[-71.305541,41.55528399906],[-71.305515,41.55534699906],[-71.305496,41.55541099906],[-71.305469,41.55548199906],[-71.305442,41.55553699906],[-71.305405,41.55558699906],[-71.305356,41.55563099906],[-71.305293,41.55566499906],[-71.305227,41.55570599906],[-71.3052,41.55575599906],[-71.305178,41.55581199906],[-71.305153,41.55593799906],[-71.305142,41.55600099906],[-71.305203,41.55602699906],[-71.30528,41.55604599906],[-71.305363,41.55606899906],[-71.305436,41.55609199906],[-71.3055,41.55611899906],[-71.305575,41.55614299906],[-71.305692,41.55614999906],[-71.305758,41.55618399906],[-71.305835,41.55620999906],[-71.305903,41.55623599906],[-71.305963,41.55626699906],[-71.306017,41.55630699906],[-71.306041,41.55635599906],[-71.306001,41.55640799906],[-71.305951,41.55643599906],[-71.30572,41.55640399906],[-71.305639,41.55638899906],[-71.305554,41.55636299906],[-71.305471,41.55633499906],[-71.305325,41.55629399906],[-71.305187,41.55625999906],[-71.305118,41.55628099906],[-71.305049,41.55631899906],[-71.304984,41.55636099906],[-71.304938,41.55640399906],[-71.304898,41.55645499906],[-71.304811,41.55657099906],[-71.304766,41.55663399906],[-71.304755,41.55668199906],[-71.30479,41.55673799906],[-71.304706,41.55691399906],[-71.304614,41.55709299906],[-71.304585,41.55715199906],[-71.304537,41.55726599906],[-71.304513,41.55732499906],[-71.304482,41.55738499906],[-71.304447,41.55744599906],[-71.30441,41.55750799906],[-71.304373,41.55757199906],[-71.30434,41.55763399906],[-71.304265,41.55775799906],[-71.304231,41.55781599906],[-71.3042,41.55787399906],[-71.304172,41.55793299906],[-71.304144,41.55799599906],[-71.304088,41.55811599906],[-71.304042,41.55824299906],[-71.304015,41.55831099906],[-71.303943,41.55844399906],[-71.303874,41.55858399906],[-71.303799,41.55872199906],[-71.303761,41.55878199906],[-71.303722,41.55883799906],[-71.303685,41.55889599906],[-71.303651,41.55895999906],[-71.303609,41.55902499906],[-71.303565,41.55908499906],[-71.30352,41.55914199906],[-71.303472,41.55919999906],[-71.303424,41.55925599906],[-71.303373,41.55930599906],[-71.30331,41.55936999906],[-71.303271,41.55941199906],[-71.303179,41.55952099906],[-71.303127,41.55957099906],[-71.30307,41.55962399906],[-71.303013,41.55968099906],[-71.302917,41.55978599906],[-71.302869,41.55983499906],[-71.302822,41.55988699906],[-71.302781,41.55994199906],[-71.302746,41.55999499906],[-71.302667,41.56010099906],[-71.302584,41.56020199906],[-71.302495,41.56031999906],[-71.302458,41.56036699906],[-71.302422,41.56041799906],[-71.302393,41.56047699906],[-71.302366,41.56053699906],[-71.302333,41.56059599906],[-71.302295,41.56065099906],[-71.302255,41.56070499906],[-71.302221,41.56075499906],[-71.302177,41.56082399906],[-71.302143,41.56088599906],[-71.302107,41.56093599906],[-71.301978,41.56108099906],[-71.301957,41.56113399906],[-71.301924,41.56119699906],[-71.301882,41.56126899906],[-71.301834,41.56132899906],[-71.301783,41.56138399906],[-71.301716,41.56143199906],[-71.301636,41.56148299906],[-71.301586,41.56152399906],[-71.301542,41.56156799906],[-71.301505,41.56161399906],[-71.301471,41.56166399906],[-71.301416,41.56173499906],[-71.301359,41.56179499906],[-71.301313,41.56185099906],[-71.30127,41.56190899906],[-71.301224,41.56195799906],[-71.301053,41.56212099906],[-71.301009,41.56217499906],[-71.300925,41.56228199906],[-71.301197,41.56246899906],[-71.301481,41.56265599906],[-71.301786,41.56279499906],[-71.302681,41.56324399906],[-71.304828,41.56430299906],[-71.307224,41.56548799906],[-71.313605,41.56864399906],[-71.313862,41.56773799906],[-71.318041,41.55364499906],[-71.322379,41.53873899906],[-71.323275,41.53566099906],[-71.325118,41.53216899906]]]}}"}, +{"type": "blockgroup", "typeId": 403021, "areaId": 29326, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.311141,41.51939599906],[-71.310058,41.51782399906],[-71.309955,41.51767699906],[-71.309928,41.51763899906],[-71.309322,41.51677899906],[-71.30891,41.51619399906],[-71.308851,41.51609599906],[-71.307982,41.51485699906],[-71.307629,41.51433499906],[-71.307539,41.51423799906],[-71.307431,41.51412099906],[-71.307368,41.51405299906],[-71.307333,41.51401099906],[-71.306741,41.51313199906],[-71.306441,41.51271599906],[-71.306398,41.51265599906],[-71.305951,41.51202999906],[-71.305784,41.51179199906],[-71.305384,41.51126699906],[-71.305315,41.51116899906],[-71.305278,41.51111499906],[-71.304544,41.51004999906],[-71.304368,41.50978999906],[-71.30428,41.50968499906],[-71.304222,41.50958999906],[-71.30412,41.50942599906],[-71.303732,41.50887599906],[-71.303612,41.50868699906],[-71.303558,41.50857899906],[-71.303288,41.50855599906],[-71.303245,41.50855299906],[-71.303123,41.50854199906],[-71.30294,41.50852799906],[-71.301879,41.50843599906],[-71.302062,41.50957599906],[-71.302108,41.50985499906],[-71.302154,41.51022299906],[-71.302261,41.51099099906],[-71.302291,41.51117499906],[-71.302314,41.51135499906],[-71.302314,41.51153899906],[-71.302307,41.51161599906],[-71.302299,41.51168799906],[-71.302291,41.51182299906],[-71.302284,41.51188699906],[-71.302268,41.51197199906],[-71.302146,41.51235799906],[-71.301887,41.51315099906],[-71.301811,41.51336399906],[-71.301544,41.51336499906],[-71.301132,41.51338699906],[-71.301002,41.51339399906],[-71.30046,41.51343599906],[-71.300254,41.51345399906],[-71.29969,41.51350599906],[-71.299377,41.51352099906],[-71.298927,41.51356999906],[-71.2985,41.51360599906],[-71.297828,41.51366899906],[-71.297523,41.51282399906],[-71.297248,41.51205499906],[-71.297218,41.51197399906],[-71.296928,41.51119199906],[-71.296691,41.51052599906],[-71.296447,41.50985499906],[-71.296379,41.50967199906],[-71.296211,41.50923399906],[-71.296073,41.50883999906],[-71.295989,41.50855499906],[-71.295927,41.50833899906],[-71.295978,41.50817499906],[-71.29604,41.50801499906],[-71.295841,41.50790399906],[-71.295677,41.50779499906],[-71.29557,41.50772899906],[-71.295379,41.50756199906],[-71.295227,41.50734399906],[-71.295127,41.50706699906],[-71.295043,41.50666799906],[-71.295028,41.50637599906],[-71.295059,41.50607299906],[-71.295089,41.50553699906],[-71.295104,41.50529799906],[-71.295127,41.50501799906],[-71.295158,41.50474699906],[-71.295173,41.50462099906],[-71.295234,41.50424599906],[-71.295257,41.50406099906],[-71.295257,41.50389399906],[-71.295219,41.50353499906],[-71.295181,41.50328799906],[-71.295158,41.50312199906],[-71.295089,41.50275399906],[-71.295044,41.50252499906],[-71.294944,41.50195099906],[-71.294937,41.50190099906],[-71.294563,41.50195799906],[-71.294349,41.50199399906],[-71.294166,41.50204299906],[-71.294013,41.50210399906],[-71.293983,41.50212699906],[-71.293945,41.50215499906],[-71.29367,41.50233599906],[-71.29338,41.50257599906],[-71.293098,41.50281999906],[-71.292976,41.50293999906],[-71.292831,41.50308699906],[-71.292617,41.50336599906],[-71.292449,41.50373899906],[-71.292358,41.50398399906],[-71.292297,41.50412899906],[-71.292175,41.50443299906],[-71.292037,41.50469699906],[-71.29193,41.50483899906],[-71.291854,41.50495299906],[-71.291801,41.50505699906],[-71.291717,41.50526199906],[-71.291656,41.50542099906],[-71.29158,41.50554799906],[-71.291496,41.50562199906],[-71.291412,41.50568199906],[-71.291328,41.50570199906],[-71.291114,41.50573299906],[-71.290908,41.50570999906],[-71.290863,41.50570699906],[-71.290611,41.50568899906],[-71.290359,41.50568999906],[-71.290046,41.50572699906],[-71.28923,41.50590999906],[-71.289238,41.50600499906],[-71.289222,41.50633399906],[-71.289214,41.50658199906],[-71.289215,41.50679799906],[-71.289184,41.50746499906],[-71.289176,41.50796499906],[-71.289184,41.50808199906],[-71.289199,41.50828899906],[-71.289283,41.50857499906],[-71.289322,41.50867299906],[-71.289398,41.50889699906],[-71.289589,41.50928999906],[-71.289726,41.50953499906],[-71.289787,41.50964099906],[-71.289941,41.50987599906],[-71.290008,41.50997899906],[-71.290229,41.51028599906],[-71.290252,41.51031699906],[-71.290435,41.51061899906],[-71.290572,41.51089999906],[-71.290588,41.51094499906],[-71.290664,41.51111899906],[-71.290741,41.51149599906],[-71.290786,41.51194099906],[-71.290847,41.51246599906],[-71.290855,41.51249299906],[-71.290855,41.51255199906],[-71.290908,41.51300099906],[-71.291,41.51366599906],[-71.291046,41.51385799906],[-71.291099,41.51406899906],[-71.291267,41.51453599906],[-71.291297,41.51461899906],[-71.291313,41.51466399906],[-71.291341,41.51473899906],[-71.291557,41.51530299906],[-71.291572,41.51536099906],[-71.291854,41.51609399906],[-71.291969,41.51642499906],[-71.292098,41.51679199906],[-71.292236,41.51714499906],[-71.292411,41.51752799906],[-71.292518,41.51769699906],[-71.292778,41.51806099906],[-71.292801,41.51809699906],[-71.293045,41.51842499906],[-71.293098,41.51850099906],[-71.29335,41.51889199906],[-71.29441,41.51856499906],[-71.294593,41.51850699906],[-71.295303,41.51830399906],[-71.295539,41.51822699906],[-71.296055,41.51806599906],[-71.296188,41.51802499906],[-71.296348,41.51797699906],[-71.296577,41.51791799906],[-71.297164,41.51775799906],[-71.297515,41.51766299906],[-71.297821,41.51758199906],[-71.297973,41.51753899906],[-71.299377,41.51711499906],[-71.299888,41.51695999906],[-71.300201,41.51684599906],[-71.300369,41.51674299906],[-71.300514,41.51664099906],[-71.300628,41.51654499906],[-71.300674,41.51648999906],[-71.300827,41.51630199906],[-71.300799,41.51639399906],[-71.300781,41.51644199906],[-71.300613,41.51694999906],[-71.300491,41.51731699906],[-71.300414,41.51753099906],[-71.300361,41.51771599906],[-71.300331,41.51779799906],[-71.300216,41.51817399906],[-71.300193,41.51823299906],[-71.301177,41.51833499906],[-71.301742,41.51840499906],[-71.30249,41.51849299906],[-71.303215,41.51857299906],[-71.303436,41.51859599906],[-71.303939,41.51866199906],[-71.304029,41.51867199906],[-71.30471,41.51875499906],[-71.305046,41.51879299906],[-71.305335,41.51882799906],[-71.305669,41.51886599906],[-71.305976,41.51890099906],[-71.306251,41.51893599906],[-71.306747,41.51899799906],[-71.307189,41.51905199906],[-71.307273,41.51905899906],[-71.307987,41.51914299906],[-71.308486,41.51920199906],[-71.308937,41.51927399906],[-71.309471,41.51936599906],[-71.309814,41.51940899906],[-71.309867,41.51941299906],[-71.31015,41.51942899906],[-71.31031,41.51943999906],[-71.310424,41.51944599906],[-71.310523,41.51944899906],[-71.310916,41.51942099906],[-71.310956,41.51941799906],[-71.311141,41.51939599906]]]}}"}, +{"type": "blockgroup", "typeId": 403022, "areaId": 29327, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.303558,41.50857899906],[-71.303549,41.50854399906],[-71.303139,41.50797499906],[-71.302824,41.50754699906],[-71.302494,41.50709999906],[-71.302421,41.50699799906],[-71.302266,41.50676499906],[-71.302228,41.50664499906],[-71.302186,41.50663899906],[-71.30185,41.50611999906],[-71.301521,41.50594899906],[-71.301433,41.50591099906],[-71.301288,41.50584799906],[-71.301274,41.50584699906],[-71.300936,41.50544299906],[-71.300855,41.50527299906],[-71.300755,41.50506499906],[-71.300437,41.50469299906],[-71.300369,41.50464199906],[-71.300274,41.50457099906],[-71.300105,41.50439099906],[-71.299931,41.50420299906],[-71.299509,41.50373899906],[-71.29941,41.50363399906],[-71.299376,41.50359599906],[-71.298878,41.50303599906],[-71.298637,41.50276399906],[-71.298542,41.50267699906],[-71.298457,41.50258699906],[-71.297742,41.50186099906],[-71.297519,41.50158999906],[-71.297415,41.50150499906],[-71.297401,41.50147399906],[-71.297363,41.50144299906],[-71.297039,41.50109799906],[-71.296906,41.50095599906],[-71.29663,41.50066199906],[-71.295865,41.49984099906],[-71.294989,41.49890299906],[-71.294707,41.49860999906],[-71.294649,41.49855199906],[-71.294411,41.49831899906],[-71.294401,41.49830899906],[-71.294291,41.49826199906],[-71.294357,41.49855799906],[-71.294364,41.49862099906],[-71.294372,41.49865699906],[-71.294462,41.49911099906],[-71.294517,41.49937899906],[-71.294609,41.49984499906],[-71.294639,41.50002499906],[-71.294761,41.50064399906],[-71.29483,41.50101199906],[-71.294822,41.50108799906],[-71.29483,41.50120999906],[-71.294883,41.50154199906],[-71.294937,41.50190099906],[-71.294944,41.50195099906],[-71.295044,41.50252499906],[-71.295089,41.50275399906],[-71.295158,41.50312199906],[-71.295181,41.50328799906],[-71.295219,41.50353499906],[-71.295257,41.50389399906],[-71.295257,41.50406099906],[-71.295234,41.50424599906],[-71.295173,41.50462099906],[-71.295158,41.50474699906],[-71.295127,41.50501799906],[-71.295104,41.50529799906],[-71.295089,41.50553699906],[-71.295059,41.50607299906],[-71.295028,41.50637599906],[-71.295043,41.50666799906],[-71.295127,41.50706699906],[-71.295227,41.50734399906],[-71.295379,41.50756199906],[-71.29557,41.50772899906],[-71.295677,41.50779499906],[-71.295841,41.50790399906],[-71.29604,41.50801499906],[-71.295978,41.50817499906],[-71.295927,41.50833899906],[-71.295989,41.50855499906],[-71.296073,41.50883999906],[-71.296211,41.50923399906],[-71.296379,41.50967199906],[-71.296447,41.50985499906],[-71.296691,41.51052599906],[-71.296928,41.51119199906],[-71.297218,41.51197399906],[-71.297248,41.51205499906],[-71.297523,41.51282399906],[-71.297828,41.51366899906],[-71.2985,41.51360599906],[-71.298927,41.51356999906],[-71.299377,41.51352099906],[-71.29969,41.51350599906],[-71.300254,41.51345399906],[-71.30046,41.51343599906],[-71.301002,41.51339399906],[-71.301132,41.51338699906],[-71.301544,41.51336499906],[-71.301811,41.51336399906],[-71.301887,41.51315099906],[-71.302146,41.51235799906],[-71.302268,41.51197199906],[-71.302284,41.51188699906],[-71.302291,41.51182299906],[-71.302299,41.51168799906],[-71.302307,41.51161599906],[-71.302314,41.51153899906],[-71.302314,41.51135499906],[-71.302291,41.51117499906],[-71.302261,41.51099099906],[-71.302154,41.51022299906],[-71.302108,41.50985499906],[-71.302062,41.50957599906],[-71.301879,41.50843599906],[-71.30294,41.50852799906],[-71.303123,41.50854199906],[-71.303245,41.50855299906],[-71.303288,41.50855599906],[-71.303558,41.50857899906]]]}}"}, +{"type": "blockgroup", "typeId": 403031, "areaId": 29328, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.306241,41.55330599906],[-71.306203,41.55328599906],[-71.306126,41.55323199906],[-71.306058,41.55337199906],[-71.306007,41.55346699906],[-71.305938,41.55361299906],[-71.305839,41.55379899906],[-71.305822,41.55383499906],[-71.305572,41.55372299906],[-71.304908,41.55343099906],[-71.304443,41.55322399906],[-71.30397,41.55303399906],[-71.302916,41.55261399906],[-71.302627,41.55249899906],[-71.302558,41.55246899906],[-71.302421,41.55241299906],[-71.301602,41.55206699906],[-71.301567,41.55205199906],[-71.301507,41.55202599906],[-71.300537,41.55159499906],[-71.29956,41.55115499906],[-71.299125,41.55095299906],[-71.298713,41.55076699906],[-71.298507,41.55067699906],[-71.298072,41.55047399906],[-71.297668,41.55029699906],[-71.297508,41.55022399906],[-71.29692,41.54995599906],[-71.296386,41.54971499906],[-71.296195,41.54962399906],[-71.295967,41.54952099906],[-71.295913,41.54949499906],[-71.295181,41.54916699906],[-71.294772,41.54898699906],[-71.2947,41.54895599906],[-71.294311,41.54881099906],[-71.294121,41.54875199906],[-71.293937,41.54869599906],[-71.293472,41.54859799906],[-71.292823,41.54845799906],[-71.292083,41.54832399906],[-71.292075,41.54843599906],[-71.291961,41.54914999906],[-71.291937,41.54929499906],[-71.29187,41.54970599906],[-71.291816,41.55008099906],[-71.291808,41.55011199906],[-71.291691,41.55078899906],[-71.291641,41.55108399906],[-71.291206,41.55289399906],[-71.291046,41.55350999906],[-71.290985,41.55369499906],[-71.290928,41.55385599906],[-71.290908,41.55391299906],[-71.290794,41.55414499906],[-71.290753,41.55422099906],[-71.291982,41.55510099906],[-71.292913,41.55576499906],[-71.293117,41.55591199906],[-71.293352,41.55609099906],[-71.293708,41.55636099906],[-71.295003,41.55726099906],[-71.295298,41.55747199906],[-71.296031,41.55799499906],[-71.300256,41.56100799906],[-71.300845,41.56142799906],[-71.300985,41.56152799906],[-71.301359,41.56179499906],[-71.301416,41.56173499906],[-71.301471,41.56166399906],[-71.301505,41.56161399906],[-71.301542,41.56156799906],[-71.301586,41.56152399906],[-71.301636,41.56148299906],[-71.301716,41.56143199906],[-71.301783,41.56138399906],[-71.301834,41.56132899906],[-71.301882,41.56126899906],[-71.301924,41.56119699906],[-71.301957,41.56113399906],[-71.301978,41.56108099906],[-71.302107,41.56093599906],[-71.302143,41.56088599906],[-71.302177,41.56082399906],[-71.302221,41.56075499906],[-71.302255,41.56070499906],[-71.302295,41.56065099906],[-71.302333,41.56059599906],[-71.302366,41.56053699906],[-71.302393,41.56047699906],[-71.302422,41.56041799906],[-71.302458,41.56036699906],[-71.302495,41.56031999906],[-71.302584,41.56020199906],[-71.302667,41.56010099906],[-71.302746,41.55999499906],[-71.302781,41.55994199906],[-71.302822,41.55988699906],[-71.302869,41.55983499906],[-71.302917,41.55978599906],[-71.303013,41.55968099906],[-71.30307,41.55962399906],[-71.303127,41.55957099906],[-71.303179,41.55952099906],[-71.303271,41.55941199906],[-71.30331,41.55936999906],[-71.303373,41.55930599906],[-71.303424,41.55925599906],[-71.303472,41.55919999906],[-71.30352,41.55914199906],[-71.303565,41.55908499906],[-71.303609,41.55902499906],[-71.303651,41.55895999906],[-71.303685,41.55889599906],[-71.303722,41.55883799906],[-71.303761,41.55878199906],[-71.303799,41.55872199906],[-71.303874,41.55858399906],[-71.303943,41.55844399906],[-71.304015,41.55831099906],[-71.304042,41.55824299906],[-71.304088,41.55811599906],[-71.304144,41.55799599906],[-71.304172,41.55793299906],[-71.3042,41.55787399906],[-71.304231,41.55781599906],[-71.304265,41.55775799906],[-71.30434,41.55763399906],[-71.304373,41.55757199906],[-71.30441,41.55750799906],[-71.304447,41.55744599906],[-71.304482,41.55738499906],[-71.304513,41.55732499906],[-71.304537,41.55726599906],[-71.304585,41.55715199906],[-71.304614,41.55709299906],[-71.304706,41.55691399906],[-71.30479,41.55673799906],[-71.304755,41.55668199906],[-71.304766,41.55663399906],[-71.304811,41.55657099906],[-71.304898,41.55645499906],[-71.304938,41.55640399906],[-71.304984,41.55636099906],[-71.305049,41.55631899906],[-71.305118,41.55628099906],[-71.305187,41.55625999906],[-71.305325,41.55629399906],[-71.305471,41.55633499906],[-71.305554,41.55636299906],[-71.305639,41.55638899906],[-71.30572,41.55640399906],[-71.305951,41.55643599906],[-71.306001,41.55640799906],[-71.306041,41.55635599906],[-71.306017,41.55630699906],[-71.305963,41.55626699906],[-71.305903,41.55623599906],[-71.305835,41.55620999906],[-71.305758,41.55618399906],[-71.305692,41.55614999906],[-71.305575,41.55614299906],[-71.3055,41.55611899906],[-71.305436,41.55609199906],[-71.305363,41.55606899906],[-71.30528,41.55604599906],[-71.305203,41.55602699906],[-71.305142,41.55600099906],[-71.305153,41.55593799906],[-71.305178,41.55581199906],[-71.3052,41.55575599906],[-71.305227,41.55570599906],[-71.305293,41.55566499906],[-71.305356,41.55563099906],[-71.305405,41.55558699906],[-71.305442,41.55553699906],[-71.305469,41.55548199906],[-71.305496,41.55541099906],[-71.305515,41.55534699906],[-71.305541,41.55528399906],[-71.305572,41.55521899906],[-71.305658,41.55508699906],[-71.305695,41.55501899906],[-71.305729,41.55495199906],[-71.305768,41.55488999906],[-71.305803,41.55482299906],[-71.305868,41.55467899906],[-71.305917,41.55455099906],[-71.305956,41.55447999906],[-71.306001,41.55440699906],[-71.306028,41.55435399906],[-71.306054,41.55429799906],[-71.30616,41.55410299906],[-71.306199,41.55405099906],[-71.306215,41.55400399906],[-71.306163,41.55394399906],[-71.306106,41.55390499906],[-71.306039,41.55387399906],[-71.305999,41.55383599906],[-71.306036,41.55373299906],[-71.306069,41.55366399906],[-71.306099,41.55359899906],[-71.306121,41.55354299906],[-71.30614,41.55348699906],[-71.306136,41.55340799906],[-71.306181,41.55335499906],[-71.306241,41.55330599906]]]}}"}, +{"type": "blockgroup", "typeId": 403032, "areaId": 29329, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.309309,41.54629099906],[-71.308966,41.54547399906],[-71.308861,41.54522999906],[-71.308778,41.54508199906],[-71.3087,41.54498099906],[-71.308581,41.54484499906],[-71.308445,41.54471299906],[-71.3083,41.54456499906],[-71.308144,41.54440899906],[-71.308035,41.54429199906],[-71.307957,41.54421099906],[-71.307869,41.54410199906],[-71.307744,41.54393899906],[-71.307588,41.54370099906],[-71.307459,41.54347599906],[-71.307392,41.54334499906],[-71.307347,41.54324199906],[-71.30731,41.54315599906],[-71.307292,41.54310899906],[-71.307271,41.54305099906],[-71.307262,41.54303099906],[-71.307089,41.54297399906],[-71.307071,41.54296599906],[-71.305358,41.54223499906],[-71.305328,41.54218199906],[-71.305267,41.54213799906],[-71.305084,41.54203399906],[-71.304916,41.54194699906],[-71.30484,41.54190399906],[-71.304578,41.54179199906],[-71.304321,41.54168299906],[-71.304183,41.54162399906],[-71.30378,41.54145799906],[-71.303367,41.54128899906],[-71.303268,41.54124599906],[-71.302208,41.54080799906],[-71.301689,41.54059799906],[-71.301185,41.54040999906],[-71.300742,41.54021599906],[-71.300224,41.54000999906],[-71.299964,41.53990299906],[-71.29985,41.53985099906],[-71.299781,41.53981199906],[-71.299736,41.53977699906],[-71.299698,41.53973699906],[-71.299674,41.53967399906],[-71.299629,41.53938699906],[-71.299552,41.53869999906],[-71.299484,41.53817899906],[-71.299446,41.53791799906],[-71.299415,41.53784699906],[-71.299377,41.53779299906],[-71.299323,41.53774499906],[-71.299247,41.53771099906],[-71.299118,41.53767299906],[-71.298939,41.53764199906],[-71.298805,41.53761999906],[-71.29837,41.53755699906],[-71.297927,41.53748899906],[-71.297592,41.53740599906],[-71.2975,41.53738999906],[-71.297553,41.53724499906],[-71.297721,41.53691199906],[-71.29779,41.53676699906],[-71.297798,41.53671699906],[-71.297775,41.53666399906],[-71.297744,41.53663299906],[-71.297683,41.53658399906],[-71.297569,41.53655499906],[-71.297065,41.53652899906],[-71.29647,41.53650099906],[-71.296295,41.53649499906],[-71.294433,41.53640199906],[-71.293868,41.53637199906],[-71.293571,41.53635999906],[-71.293411,41.53635499906],[-71.293083,41.53634299906],[-71.292648,41.53632899906],[-71.292335,41.53631699906],[-71.292236,41.53630599906],[-71.292175,41.53629799906],[-71.291908,41.53721799906],[-71.291778,41.53767099906],[-71.29171,41.53791999906],[-71.291671,41.53803699906],[-71.291641,41.53815999906],[-71.29161,41.53828199906],[-71.291587,41.53840799906],[-71.291565,41.53854399906],[-71.291557,41.53867499906],[-71.291549,41.53883199906],[-71.291549,41.53899499906],[-71.291557,41.53915199906],[-71.291564,41.53931399906],[-71.291564,41.53947199906],[-71.291572,41.53962899906],[-71.291595,41.54069999906],[-71.291595,41.54083999906],[-71.291603,41.54101999906],[-71.29161,41.54122199906],[-71.291618,41.54155999906],[-71.291626,41.54177599906],[-71.291627,41.54187399906],[-71.291633,41.54225799906],[-71.291633,41.54254099906],[-71.291652,41.54326299906],[-71.291659,41.54348299906],[-71.291664,41.54362599906],[-71.291664,41.54368499906],[-71.291682,41.54405699906],[-71.291684,41.54409699906],[-71.291686,41.54413499906],[-71.291687,41.54426999906],[-71.291694,41.54437799906],[-71.291702,41.54456699906],[-71.291725,41.54482299906],[-71.29174,41.54504299906],[-71.29177,41.54522699906],[-71.291786,41.54533499906],[-71.291824,41.54559099906],[-71.2919,41.54617499906],[-71.291922,41.54633499906],[-71.291977,41.54672699906],[-71.292003,41.54689699906],[-71.292007,41.54692499906],[-71.29203,41.54705499906],[-71.292068,41.54746399906],[-71.292091,41.54778299906],[-71.292091,41.54810299906],[-71.292083,41.54827899906],[-71.292083,41.54832399906],[-71.292823,41.54845799906],[-71.293472,41.54859799906],[-71.293937,41.54869599906],[-71.294121,41.54875199906],[-71.294311,41.54881099906],[-71.2947,41.54895599906],[-71.294772,41.54898699906],[-71.295181,41.54916699906],[-71.295913,41.54949499906],[-71.295967,41.54952099906],[-71.296195,41.54962399906],[-71.296386,41.54971499906],[-71.29692,41.54995599906],[-71.297508,41.55022399906],[-71.297668,41.55029699906],[-71.298072,41.55047399906],[-71.298507,41.55067699906],[-71.298713,41.55076699906],[-71.299125,41.55095299906],[-71.29956,41.55115499906],[-71.300537,41.55159499906],[-71.301507,41.55202599906],[-71.301567,41.55205199906],[-71.301602,41.55206699906],[-71.302421,41.55241299906],[-71.302558,41.55246899906],[-71.302627,41.55249899906],[-71.302916,41.55261399906],[-71.302938,41.55253899906],[-71.303239,41.55216599906],[-71.30221,41.55167299906],[-71.302063,41.55160999906],[-71.301635,41.55140399906],[-71.301264,41.55122499906],[-71.301563,41.55048999906],[-71.300649,41.55005799906],[-71.300679,41.54963399906],[-71.301276,41.54804499906],[-71.301419,41.54808099906],[-71.30221,41.54602899906],[-71.303225,41.54647599906],[-71.304718,41.54718899906],[-71.304973,41.54731399906],[-71.305206,41.54745399906],[-71.305367,41.54755499906],[-71.305663,41.54772199906],[-71.306084,41.54795899906],[-71.306276,41.54806799906],[-71.306463,41.54815799906],[-71.306765,41.54830599906],[-71.306972,41.54840299906],[-71.307092,41.54846499906],[-71.307393,41.54862499906],[-71.309309,41.54629099906]]]}}"}, +{"type": "blockgroup", "typeId": 403033, "areaId": 29330, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.308831,41.53863599906],[-71.308738,41.53857399906],[-71.308677,41.53852999906],[-71.308616,41.53849499906],[-71.308418,41.53839599906],[-71.308342,41.53836599906],[-71.308273,41.53833999906],[-71.308204,41.53831899906],[-71.308128,41.53828499906],[-71.308052,41.53824099906],[-71.307998,41.53820199906],[-71.307952,41.53816199906],[-71.307891,41.53811799906],[-71.307815,41.53808399906],[-71.307739,41.53805799906],[-71.30767,41.53801899906],[-71.307606,41.53797799906],[-71.306121,41.53724199906],[-71.306004,41.53716799906],[-71.305372,41.53644599906],[-71.305179,41.53626899906],[-71.303686,41.53528499906],[-71.303584,41.53514899906],[-71.303566,41.53514299906],[-71.303421,41.53505599906],[-71.303382,41.53503399906],[-71.302108,41.53418099906],[-71.301765,41.53393999906],[-71.301719,41.53390999906],[-71.301681,41.53384799906],[-71.301651,41.53378499906],[-71.301628,41.53372699906],[-71.30162,41.53366399906],[-71.301666,41.53298299906],[-71.301719,41.53198699906],[-71.30175,41.53147299906],[-71.30176,41.53120799906],[-71.301765,41.53107199906],[-71.30178,41.53096299906],[-71.301811,41.53090399906],[-71.301849,41.53085399906],[-71.301887,41.53081699906],[-71.301963,41.53078899906],[-71.302215,41.53074799906],[-71.302635,41.53070299906],[-71.303398,41.53061099906],[-71.303466,41.53060499906],[-71.304267,41.53050399906],[-71.305175,41.53038699906],[-71.305648,41.53033699906],[-71.305961,41.53030799906],[-71.306037,41.53031499906],[-71.306077,41.53032599906],[-71.306092,41.53032899906],[-71.306114,41.53033599906],[-71.306772,41.53023099906],[-71.306823,41.53022299906],[-71.306693,41.52972599906],[-71.30635,41.52849399906],[-71.306314,41.52838699906],[-71.3068,41.52832599906],[-71.306816,41.52831999906],[-71.307521,41.52822299906],[-71.307237,41.52714999906],[-71.306816,41.52680399906],[-71.305926,41.52694399906],[-71.305859,41.52692499906],[-71.305816,41.52677999906],[-71.305717,41.52642699906],[-71.305695,41.52634899906],[-71.305618,41.52607299906],[-71.305592,41.52600999906],[-71.305504,41.52579599906],[-71.305449,41.52575299906],[-71.30542,41.52572999906],[-71.305351,41.52569999906],[-71.305244,41.52566999906],[-71.305129,41.52567299906],[-71.304985,41.52570699906],[-71.304588,41.52577799906],[-71.302581,41.52621899906],[-71.302337,41.52626899906],[-71.302253,41.52627999906],[-71.302062,41.52629699906],[-71.30175,41.52628099906],[-71.301177,41.52621999906],[-71.300635,41.52615799906],[-71.30017,41.52610499906],[-71.299827,41.52607199906],[-71.298561,41.52593899906],[-71.297416,41.52582699906],[-71.297394,41.52587199906],[-71.297271,41.52608699906],[-71.297187,41.52621399906],[-71.296951,41.52657899906],[-71.296806,41.52682499906],[-71.296714,41.52696699906],[-71.296493,41.52731799906],[-71.296318,41.52759199906],[-71.29618,41.52778799906],[-71.29615,41.52783399906],[-71.295997,41.52804799906],[-71.295921,41.52816299906],[-71.295898,41.52820399906],[-71.295822,41.52831299906],[-71.295776,41.52837299906],[-71.295578,41.52864199906],[-71.295211,41.52909999906],[-71.294914,41.52949299906],[-71.2947,41.52978099906],[-71.294668,41.52981999906],[-71.294456,41.53008799906],[-71.29422,41.53041199906],[-71.294044,41.53067199906],[-71.293975,41.53081299906],[-71.293861,41.53102299906],[-71.293815,41.53112699906],[-71.293746,41.53129099906],[-71.293716,41.53137199906],[-71.293678,41.53148099906],[-71.293594,41.53176699906],[-71.293342,41.53252399906],[-71.293258,41.53277799906],[-71.293044,41.53347699906],[-71.292869,41.53405499906],[-71.292861,41.53409099906],[-71.29261,41.53489799906],[-71.292243,41.53604499906],[-71.292175,41.53629799906],[-71.292236,41.53630599906],[-71.292335,41.53631699906],[-71.292648,41.53632899906],[-71.293083,41.53634299906],[-71.293411,41.53635499906],[-71.293571,41.53635999906],[-71.293868,41.53637199906],[-71.294433,41.53640199906],[-71.296295,41.53649499906],[-71.29647,41.53650099906],[-71.297065,41.53652899906],[-71.297569,41.53655499906],[-71.297683,41.53658399906],[-71.297744,41.53663299906],[-71.297775,41.53666399906],[-71.297798,41.53671699906],[-71.29779,41.53676699906],[-71.297721,41.53691199906],[-71.297553,41.53724499906],[-71.2975,41.53738999906],[-71.297592,41.53740599906],[-71.297927,41.53748899906],[-71.29837,41.53755699906],[-71.298805,41.53761999906],[-71.298939,41.53764199906],[-71.299118,41.53767299906],[-71.299247,41.53771099906],[-71.299323,41.53774499906],[-71.299377,41.53779299906],[-71.299415,41.53784699906],[-71.299446,41.53791799906],[-71.299484,41.53817899906],[-71.299552,41.53869999906],[-71.299629,41.53938699906],[-71.299674,41.53967399906],[-71.299698,41.53973699906],[-71.299736,41.53977699906],[-71.299781,41.53981199906],[-71.29985,41.53985099906],[-71.299964,41.53990299906],[-71.300224,41.54000999906],[-71.300742,41.54021599906],[-71.301185,41.54040999906],[-71.301689,41.54059799906],[-71.302208,41.54080799906],[-71.303268,41.54124599906],[-71.303367,41.54128899906],[-71.30378,41.54145799906],[-71.304183,41.54162399906],[-71.304321,41.54168299906],[-71.304578,41.54179199906],[-71.30484,41.54190399906],[-71.304916,41.54194699906],[-71.305084,41.54203399906],[-71.305267,41.54213799906],[-71.305328,41.54218199906],[-71.305358,41.54223499906],[-71.307071,41.54296599906],[-71.307089,41.54297399906],[-71.307262,41.54303099906],[-71.307215,41.54290499906],[-71.307175,41.54277399906],[-71.307136,41.54260899906],[-71.307102,41.54244399906],[-71.30708,41.54224599906],[-71.307068,41.54208099906],[-71.307063,41.54188699906],[-71.307074,41.54169299906],[-71.307091,41.54149899906],[-71.30713,41.54125399906],[-71.307181,41.54105099906],[-71.307249,41.54083199906],[-71.307322,41.54061599906],[-71.307424,41.54038799906],[-71.307565,41.54010999906],[-71.307638,41.53997399906],[-71.30774,41.53982199906],[-71.307847,41.53967499906],[-71.308027,41.53944699906],[-71.308152,41.53929899906],[-71.30836,41.53908399906],[-71.30863,41.53882699906],[-71.308831,41.53863599906]]]}}"}, +{"type": "blockgroup", "typeId": 403041, "areaId": 29331, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.293975,41.53081299906],[-71.293693,41.53075099906],[-71.293548,41.53072299906],[-71.293441,41.53069799906],[-71.29338,41.53067699906],[-71.293327,41.53066399906],[-71.293159,41.53058199906],[-71.292785,41.53039099906],[-71.292518,41.53024799906],[-71.292045,41.53000099906],[-71.29161,41.52976899906],[-71.290741,41.52930599906],[-71.290618,41.52924999906],[-71.290268,41.52907199906],[-71.289794,41.52881599906],[-71.289398,41.52860299906],[-71.288988,41.52838799906],[-71.288619,41.52819599906],[-71.28839,41.52807899906],[-71.2882,41.52797399906],[-71.287689,41.52769599906],[-71.287521,41.52761399906],[-71.28746,41.52758399906],[-71.28672,41.52719799906],[-71.285751,41.52668999906],[-71.285675,41.52664699906],[-71.285644,41.52661999906],[-71.285613,41.52658499906],[-71.285568,41.52651399906],[-71.285568,41.52644599906],[-71.28556,41.52641499906],[-71.28556,41.52636099906],[-71.285575,41.52632399906],[-71.285583,41.52628799906],[-71.285598,41.52625199906],[-71.285729,41.52590399906],[-71.285967,41.52527599906],[-71.286086,41.52495899906],[-71.286117,41.52487199906],[-71.28614,41.52478199906],[-71.286163,41.52468699906],[-71.286173,41.52463999906],[-71.286178,41.52461899906],[-71.286186,41.52455599906],[-71.286185,41.52448399906],[-71.286194,41.52442499906],[-71.286193,41.52429899906],[-71.286186,41.52426299906],[-71.286186,41.52422699906],[-71.286178,41.52418699906],[-71.28617,41.52413699906],[-71.286163,41.52408299906],[-71.286155,41.52403399906],[-71.286125,41.52388599906],[-71.286073,41.52365699906],[-71.286018,41.52340599906],[-71.285972,41.52319099906],[-71.285812,41.52251399906],[-71.285766,41.52231699906],[-71.285751,41.52225899906],[-71.285682,41.52197599906],[-71.285606,41.52168499906],[-71.285499,41.52124199906],[-71.285445,41.52111199906],[-71.284881,41.52127599906],[-71.284141,41.52150299906],[-71.284049,41.52153199906],[-71.283424,41.52171099906],[-71.283233,41.52178199906],[-71.28292,41.52189199906],[-71.2826,41.52204199906],[-71.282478,41.52210799906],[-71.282272,41.52222399906],[-71.282241,41.52224699906],[-71.28215,41.52229899906],[-71.281944,41.52242499906],[-71.281631,41.52261999906],[-71.28112,41.52294499906],[-71.280845,41.52311299906],[-71.280006,41.52361099906],[-71.279633,41.52383499906],[-71.27948,41.52392799906],[-71.279304,41.52403499906],[-71.278991,41.52422099906],[-71.278747,41.52436999906],[-71.278167,41.52471999906],[-71.276979,41.52543999906],[-71.276756,41.52557599906],[-71.276252,41.52587899906],[-71.276001,41.52605899906],[-71.275894,41.52615199906],[-71.275795,41.52624399906],[-71.275695,41.52635799906],[-71.275619,41.52646799906],[-71.275505,41.52662799906],[-71.275207,41.52702099906],[-71.275169,41.52706699906],[-71.274482,41.52798499906],[-71.273872,41.52879499906],[-71.273712,41.52900499906],[-71.273246,41.52964899906],[-71.273101,41.52983599906],[-71.272743,41.53030299906],[-71.272369,41.53072899906],[-71.2723,41.53081199906],[-71.272033,41.53111399906],[-71.271598,41.53161299906],[-71.271346,41.53188899906],[-71.271224,41.53203099906],[-71.271057,41.53221399906],[-71.270675,41.53266299906],[-71.270217,41.53317199906],[-71.269897,41.53354699906],[-71.269744,41.53371299906],[-71.269409,41.53409699906],[-71.268963,41.53457899906],[-71.268722,41.53484099906],[-71.26802,41.53561099906],[-71.267783,41.53586299906],[-71.267456,41.53623499906],[-71.26708,41.53664699906],[-71.266968,41.53677099906],[-71.266853,41.53688599906],[-71.266577,41.53718399906],[-71.266418,41.53735799906],[-71.26625,41.53755099906],[-71.265876,41.53796299906],[-71.265786,41.53808899906],[-71.265724,41.53817999906],[-71.265663,41.53826899906],[-71.265884,41.53837799906],[-71.26612,41.53850399906],[-71.266242,41.53858699906],[-71.266319,41.53863499906],[-71.268837,41.54006399906],[-71.271705,41.54169099906],[-71.271914,41.54181799906],[-71.273197,41.54259899906],[-71.273248,41.54262999906],[-71.276535,41.54449899906],[-71.279374,41.54620299906],[-71.280349,41.54679099906],[-71.280622,41.54697299906],[-71.281739,41.54776999906],[-71.286377,41.55109499906],[-71.290601,41.55412299906],[-71.290753,41.55422099906],[-71.290794,41.55414499906],[-71.290908,41.55391299906],[-71.290928,41.55385599906],[-71.290985,41.55369499906],[-71.291046,41.55350999906],[-71.291206,41.55289399906],[-71.291641,41.55108399906],[-71.291691,41.55078899906],[-71.291808,41.55011199906],[-71.291816,41.55008099906],[-71.29187,41.54970599906],[-71.291937,41.54929499906],[-71.291961,41.54914999906],[-71.292075,41.54843599906],[-71.292083,41.54832399906],[-71.292083,41.54827899906],[-71.292091,41.54810299906],[-71.292091,41.54778299906],[-71.292068,41.54746399906],[-71.29203,41.54705499906],[-71.292007,41.54692499906],[-71.292003,41.54689699906],[-71.291977,41.54672699906],[-71.291922,41.54633499906],[-71.2919,41.54617499906],[-71.291824,41.54559099906],[-71.291786,41.54533499906],[-71.29177,41.54522699906],[-71.29174,41.54504299906],[-71.291725,41.54482299906],[-71.291702,41.54456699906],[-71.291694,41.54437799906],[-71.291687,41.54426999906],[-71.291686,41.54413499906],[-71.291684,41.54409699906],[-71.291682,41.54405699906],[-71.291664,41.54368499906],[-71.291664,41.54362599906],[-71.291659,41.54348299906],[-71.291652,41.54326299906],[-71.291633,41.54254099906],[-71.291633,41.54225799906],[-71.291627,41.54187399906],[-71.291626,41.54177599906],[-71.291618,41.54155999906],[-71.29161,41.54122199906],[-71.291603,41.54101999906],[-71.291595,41.54083999906],[-71.291595,41.54069999906],[-71.291572,41.53962899906],[-71.291564,41.53947199906],[-71.291564,41.53931399906],[-71.291557,41.53915199906],[-71.291549,41.53899499906],[-71.291549,41.53883199906],[-71.291557,41.53867499906],[-71.291565,41.53854399906],[-71.291587,41.53840799906],[-71.29161,41.53828199906],[-71.291641,41.53815999906],[-71.291671,41.53803699906],[-71.29171,41.53791999906],[-71.291778,41.53767099906],[-71.291908,41.53721799906],[-71.292175,41.53629799906],[-71.292243,41.53604499906],[-71.29261,41.53489799906],[-71.292861,41.53409099906],[-71.292869,41.53405499906],[-71.293044,41.53347699906],[-71.293258,41.53277799906],[-71.293342,41.53252399906],[-71.293594,41.53176699906],[-71.293678,41.53148099906],[-71.293716,41.53137199906],[-71.293746,41.53129099906],[-71.293815,41.53112699906],[-71.293861,41.53102299906],[-71.293975,41.53081299906]]]}}"}, +{"type": "blockgroup", "typeId": 403042, "areaId": 29332, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.300827,41.51630199906],[-71.300674,41.51648999906],[-71.300628,41.51654499906],[-71.300514,41.51664099906],[-71.300369,41.51674299906],[-71.300201,41.51684599906],[-71.299888,41.51695999906],[-71.299377,41.51711499906],[-71.297973,41.51753899906],[-71.297821,41.51758199906],[-71.297515,41.51766299906],[-71.297164,41.51775799906],[-71.296577,41.51791799906],[-71.296348,41.51797699906],[-71.296188,41.51802499906],[-71.296055,41.51806599906],[-71.295539,41.51822699906],[-71.295303,41.51830399906],[-71.294593,41.51850699906],[-71.29441,41.51856499906],[-71.29335,41.51889199906],[-71.293083,41.51897899906],[-71.292137,41.51926799906],[-71.291519,41.51944699906],[-71.290649,41.51972099906],[-71.290504,41.51975899906],[-71.289794,41.51995799906],[-71.289657,41.51999699906],[-71.289068,41.52014799906],[-71.288467,41.52030399906],[-71.288032,41.52041699906],[-71.287475,41.52056299906],[-71.286903,41.52071399906],[-71.286363,41.52085899906],[-71.285911,41.52098099906],[-71.285445,41.52111199906],[-71.285499,41.52124199906],[-71.285606,41.52168499906],[-71.285682,41.52197599906],[-71.285751,41.52225899906],[-71.285766,41.52231699906],[-71.285812,41.52251399906],[-71.285972,41.52319099906],[-71.286018,41.52340599906],[-71.286073,41.52365699906],[-71.286125,41.52388599906],[-71.286155,41.52403399906],[-71.286163,41.52408299906],[-71.28617,41.52413699906],[-71.286178,41.52418699906],[-71.286186,41.52422699906],[-71.286186,41.52426299906],[-71.286193,41.52429899906],[-71.286194,41.52442499906],[-71.286185,41.52448399906],[-71.286186,41.52455599906],[-71.286178,41.52461899906],[-71.286173,41.52463999906],[-71.286163,41.52468699906],[-71.28614,41.52478199906],[-71.286117,41.52487199906],[-71.286086,41.52495899906],[-71.285967,41.52527599906],[-71.285729,41.52590399906],[-71.285598,41.52625199906],[-71.285583,41.52628799906],[-71.285575,41.52632399906],[-71.28556,41.52636099906],[-71.28556,41.52641499906],[-71.285568,41.52644599906],[-71.285568,41.52651399906],[-71.285613,41.52658499906],[-71.285644,41.52661999906],[-71.285675,41.52664699906],[-71.285751,41.52668999906],[-71.28672,41.52719799906],[-71.28746,41.52758399906],[-71.287521,41.52761399906],[-71.287689,41.52769599906],[-71.2882,41.52797399906],[-71.28839,41.52807899906],[-71.288619,41.52819599906],[-71.288988,41.52838799906],[-71.289398,41.52860299906],[-71.289794,41.52881599906],[-71.290268,41.52907199906],[-71.290618,41.52924999906],[-71.290741,41.52930599906],[-71.29161,41.52976899906],[-71.292045,41.53000099906],[-71.292518,41.53024799906],[-71.292785,41.53039099906],[-71.293159,41.53058199906],[-71.293327,41.53066399906],[-71.29338,41.53067699906],[-71.293441,41.53069799906],[-71.293548,41.53072299906],[-71.293693,41.53075099906],[-71.293975,41.53081299906],[-71.294044,41.53067199906],[-71.29422,41.53041199906],[-71.294456,41.53008799906],[-71.294668,41.52981999906],[-71.2947,41.52978099906],[-71.294914,41.52949299906],[-71.295211,41.52909999906],[-71.295578,41.52864199906],[-71.295776,41.52837299906],[-71.295822,41.52831299906],[-71.295898,41.52820399906],[-71.295921,41.52816299906],[-71.295997,41.52804799906],[-71.29615,41.52783399906],[-71.29618,41.52778799906],[-71.296318,41.52759199906],[-71.296493,41.52731799906],[-71.296714,41.52696699906],[-71.296806,41.52682499906],[-71.296951,41.52657899906],[-71.297187,41.52621399906],[-71.297271,41.52608699906],[-71.297394,41.52587199906],[-71.297416,41.52582699906],[-71.297515,41.52563599906],[-71.297561,41.52553599906],[-71.297584,41.52549899906],[-71.297622,41.52539999906],[-71.297637,41.52536799906],[-71.297668,41.52529099906],[-71.297706,41.52515899906],[-71.29779,41.52493199906],[-71.29792,41.52455199906],[-71.297973,41.52440199906],[-71.29804,41.52418999906],[-71.298187,41.52382999906],[-71.298221,41.52373299906],[-71.298553,41.52281399906],[-71.298603,41.52267499906],[-71.298683,41.52245699906],[-71.298751,41.52227399906],[-71.298812,41.52210899906],[-71.298942,41.52176599906],[-71.299022,41.52152699906],[-71.299186,41.52104499906],[-71.299262,41.52084099906],[-71.299576,41.51995099906],[-71.299743,41.51947999906],[-71.300117,41.51847799906],[-71.300193,41.51823299906],[-71.300216,41.51817399906],[-71.300331,41.51779799906],[-71.300361,41.51771599906],[-71.300414,41.51753099906],[-71.300491,41.51731699906],[-71.300613,41.51694999906],[-71.300781,41.51644199906],[-71.300799,41.51639399906],[-71.300827,41.51630199906]]]}}"}, +{"type": "blockgroup", "typeId": 404001, "areaId": 29333, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.277938,41.50818799906],[-71.276199,41.50842499906],[-71.275794,41.50849199906],[-71.275466,41.50854299906],[-71.274864,41.50864099906],[-71.274024,41.50880599906],[-71.273941,41.50882099906],[-71.272834,41.50904599906],[-71.272193,41.50916199906],[-71.271774,41.50923299906],[-71.271591,41.50925899906],[-71.27143,41.50928499906],[-71.270477,41.50943399906],[-71.270026,41.50949299906],[-71.269752,41.50953399906],[-71.269668,41.50953599906],[-71.269584,41.50954199906],[-71.269431,41.50954499906],[-71.269381,41.50954299906],[-71.269157,41.50951899906],[-71.269149,41.50948299906],[-71.269149,41.50942899906],[-71.269142,41.50939299906],[-71.269141,41.50929399906],[-71.269134,41.50926299906],[-71.269134,41.50921799906],[-71.269126,41.50917299906],[-71.269126,41.50912799906],[-71.268867,41.50788999906],[-71.268714,41.50716399906],[-71.268692,41.50702399906],[-71.268669,41.50679999906],[-71.268615,41.50636799906],[-71.268609,41.50630099906],[-71.268562,41.50574399906],[-71.268516,41.50530799906],[-71.268486,41.50498899906],[-71.268447,41.50465199906],[-71.268417,41.50431399906],[-71.268371,41.50399999906],[-71.268356,41.50393699906],[-71.268333,41.50374399906],[-71.268295,41.50350199906],[-71.268234,41.50322399906],[-71.268188,41.50296799906],[-71.268119,41.50268599906],[-71.268089,41.50252899906],[-71.268058,41.50233999906],[-71.268012,41.50210699906],[-71.267989,41.50194099906],[-71.267951,41.50173899906],[-71.267875,41.50139299906],[-71.267806,41.50106199906],[-71.267781,41.50093799906],[-71.267707,41.50057299906],[-71.267555,41.49983699906],[-71.267486,41.49952799906],[-71.267288,41.49861299906],[-71.267143,41.49784599906],[-71.267089,41.49761699906],[-71.267082,41.49756799906],[-71.267013,41.49723599906],[-71.266998,41.49714599906],[-71.266929,41.49670599906],[-71.266922,41.49653099906],[-71.266914,41.49608999906],[-71.266906,41.49578799906],[-71.266914,41.49516599906],[-71.266914,41.49494999906],[-71.266922,41.49476999906],[-71.266921,41.49418399906],[-71.266922,41.49348199906],[-71.266921,41.49295099906],[-71.266922,41.49281499906],[-71.266921,41.49273899906],[-71.266921,41.49198699906],[-71.266924,41.49178599906],[-71.266929,41.49134299906],[-71.26696,41.49093199906],[-71.266975,41.49081899906],[-71.266998,41.49066999906],[-71.267021,41.49058399906],[-71.267112,41.49029399906],[-71.267257,41.48992199906],[-71.267417,41.48958999906],[-71.26757,41.48931299906],[-71.267661,41.48918499906],[-71.267635,41.48870599906],[-71.267677,41.48865999906],[-71.267724,41.48858799906],[-71.267746,41.48852899906],[-71.267714,41.48849599906],[-71.267684,41.48848199906],[-71.267662,41.48842199906],[-71.267667,41.48837399906],[-71.267728,41.48832999906],[-71.26774,41.48830999906],[-71.267692,41.48826199906],[-71.26764,41.48821399906],[-71.267622,41.48816099906],[-71.267676,41.48812899906],[-71.26769,41.48811399906],[-71.267679,41.48808099906],[-71.267636,41.48803499906],[-71.267576,41.48799699906],[-71.26755,41.48794799906],[-71.267559,41.48788299906],[-71.267584,41.48781699906],[-71.267608,41.48776099906],[-71.267629,41.48770699906],[-71.267647,41.48765099906],[-71.267663,41.48758999906],[-71.267676,41.48753299906],[-71.267696,41.48746599906],[-71.267711,41.48741199906],[-71.267726,41.48735099906],[-71.267741,41.48728499906],[-71.267757,41.48722099906],[-71.267776,41.48716299906],[-71.267823,41.48704399906],[-71.267846,41.48697699906],[-71.267866,41.48690799906],[-71.267882,41.48684199906],[-71.267895,41.48677999906],[-71.267904,41.48671599906],[-71.267918,41.48664899906],[-71.267941,41.48658199906],[-71.267967,41.48651499906],[-71.26802,41.48638699906],[-71.268043,41.48632699906],[-71.268068,41.48626699906],[-71.268105,41.48620699906],[-71.268147,41.48614099906],[-71.268186,41.48606899906],[-71.268219,41.48599299906],[-71.268253,41.48592099906],[-71.268283,41.48585499906],[-71.26834,41.48572399906],[-71.268367,41.48565399906],[-71.268436,41.48543999906],[-71.268485,41.48529699906],[-71.268513,41.48523499906],[-71.268556,41.48517499906],[-71.26861,41.48512099906],[-71.268631,41.48502199906],[-71.268653,41.48496999906],[-71.268672,41.48491699906],[-71.268698,41.48485499906],[-71.268737,41.48478599906],[-71.268761,41.48473399906],[-71.268805,41.48461899906],[-71.26883,41.48456099906],[-71.268866,41.48448699906],[-71.268904,41.48443399906],[-71.268942,41.48443499906],[-71.268948,41.48447299906],[-71.268942,41.48453299906],[-71.268941,41.48458899906],[-71.268969,41.48460599906],[-71.269022,41.48461699906],[-71.269076,41.48466099906],[-71.269222,41.48438099906],[-71.269233,41.48432699906],[-71.269297,41.48431599906],[-71.269379,41.48433999906],[-71.269545,41.48437699906],[-71.269586,41.48434199906],[-71.269635,41.48427999906],[-71.269668,41.48423199906],[-71.269685,41.48416399906],[-71.269686,41.48410099906],[-71.269675,41.48407799906],[-71.269637,41.48412699906],[-71.269591,41.48413899906],[-71.269543,41.48413199906],[-71.26952,41.48407999906],[-71.269505,41.48402499906],[-71.269498,41.48396399906],[-71.269448,41.48388899906],[-71.269452,41.48383299906],[-71.269471,41.48375799906],[-71.26949,41.48369799906],[-71.269548,41.48356799906],[-71.269574,41.48350499906],[-71.269598,41.48343399906],[-71.269627,41.48335899906],[-71.269921,41.48277799906],[-71.269959,41.48270899906],[-71.269968,41.48274199906],[-71.269975,41.48279599906],[-71.269989,41.48285299906],[-71.269955,41.48290799906],[-71.269799,41.48313099906],[-71.269792,41.48318299906],[-71.2698,41.48323999906],[-71.269839,41.48329399906],[-71.269903,41.48327199906],[-71.269961,41.48329999906],[-71.269992,41.48335699906],[-71.270021,41.48340499906],[-71.270093,41.48343499906],[-71.270159,41.48347399906],[-71.270231,41.48347999906],[-71.270304,41.48348299906],[-71.270384,41.48346599906],[-71.270447,41.48341099906],[-71.270482,41.48335399906],[-71.270552,41.48322299906],[-71.270669,41.48298199906],[-71.270713,41.48289799906],[-71.270755,41.48282199906],[-71.270879,41.48258099906],[-71.270919,41.48249799906],[-71.270962,41.48241399906],[-71.27125,41.48178999906],[-71.27127,41.48172899906],[-71.271297,41.48172099906],[-71.27132,41.48177499906],[-71.271322,41.48182999906],[-71.271324,41.48196199906],[-71.271281,41.48197399906],[-71.271259,41.48199699906],[-71.271212,41.48209899906],[-71.271191,41.48216199906],[-71.271237,41.48220899906],[-71.27125,41.48227699906],[-71.271251,41.48236899906],[-71.27123,41.48240899906],[-71.271243,41.48243099906],[-71.271316,41.48243699906],[-71.271407,41.48243899906],[-71.271483,41.48243899906],[-71.271578,41.48243299906],[-71.271651,41.48241699906],[-71.271725,41.48238999906],[-71.271794,41.48235699906],[-71.27187,41.48230499906],[-71.271897,41.48224499906],[-71.271943,41.48217399906],[-71.272009,41.48214899906],[-71.272067,41.48209899906],[-71.272116,41.48205299906],[-71.272171,41.48199899906],[-71.272277,41.48190299906],[-71.272354,41.48184399906],[-71.272428,41.48180999906],[-71.272496,41.48176999906],[-71.272624,41.48172299906],[-71.272703,41.48170199906],[-71.272778,41.48167799906],[-71.272842,41.48164099906],[-71.272886,41.48158899906],[-71.27291,41.48152999906],[-71.272954,41.48147199906],[-71.273027,41.48142399906],[-71.273099,41.48136799906],[-71.273165,41.48130299906],[-71.273234,41.48124599906],[-71.273311,41.48119299906],[-71.273393,41.48114499906],[-71.273467,41.48109399906],[-71.273536,41.48103399906],[-71.273608,41.48097399906],[-71.27368,41.48091699906],[-71.273735,41.48086099906],[-71.273772,41.48079899906],[-71.273816,41.48073699906],[-71.27388,41.48067599906],[-71.273954,41.48061999906],[-71.274098,41.48051599906],[-71.274155,41.48046599906],[-71.274201,41.48041399906],[-71.274239,41.48036499906],[-71.274258,41.48030599906],[-71.27427,41.48022699906],[-71.274307,41.48016899906],[-71.274374,41.48013599906],[-71.274432,41.48009899906],[-71.274441,41.48005699906],[-71.274385,41.48000799906],[-71.274373,41.47994599906],[-71.27441,41.47987699906],[-71.274449,41.47985499906],[-71.274519,41.47983299906],[-71.274591,41.47979799906],[-71.274664,41.47974199906],[-71.274721,41.47970299906],[-71.274764,41.47967799906],[-71.273725,41.47876099906],[-71.272445,41.47841699906],[-71.272183,41.47884999906],[-71.271175,41.47976699906],[-71.269951,41.48025299906],[-71.268871,41.48079199906],[-71.267791,41.48160099906],[-71.26707,41.48278799906],[-71.26635,41.48354399906],[-71.265774,41.48510799906],[-71.265486,41.48640299906],[-71.26527,41.48764399906],[-71.26383,41.48731999906],[-71.259005,41.48613299906],[-71.25562,41.48521599906],[-71.253172,41.48397499906],[-71.250219,41.48235699906],[-71.248347,41.48089999906],[-71.248347,41.48025299906],[-71.249571,41.47777099906],[-71.250507,41.47604399906],[-71.250507,41.47388599906],[-71.250712,41.47258799906],[-71.250857,41.47187499906],[-71.250343,41.47092199906],[-71.249344,41.47008299906],[-71.248072,41.46992399906],[-71.24674,41.46992399906],[-71.245739,41.47038999906],[-71.244984,41.47060399906],[-71.24453,41.47110299906],[-71.244125,41.47191099906],[-71.243479,41.47313499906],[-71.241985,41.47339299906],[-71.240146,41.47339299906],[-71.238996,41.47408199906],[-71.237272,41.47545899906],[-71.237731,41.47675099906],[-71.236352,41.47847299906],[-71.235432,41.47959299906],[-71.234743,41.48260699906],[-71.234513,41.48579299906],[-71.235892,41.48725599906],[-71.236697,41.48811799906],[-71.242445,41.48708399906],[-71.244974,41.48897899906],[-71.245089,41.49087299906],[-71.244399,41.49233699906],[-71.24256,41.49423099906],[-71.240261,41.49698699906],[-71.238881,41.49836499906],[-71.237961,41.50017299906],[-71.237731,41.50189499906],[-71.236582,41.50353099906],[-71.236467,41.50490899906],[-71.236812,41.50508099906],[-71.236697,41.50585599906],[-71.235432,41.50723399906],[-71.233938,41.50843899906],[-71.232673,41.51041999906],[-71.231984,41.51222799906],[-71.230396,41.51299699906],[-71.233334,41.51494099906],[-71.23334,41.51491899906],[-71.233317,41.51488799906],[-71.233283,41.51484999906],[-71.233252,41.51483399906],[-71.233184,41.51481599906],[-71.233124,41.51477499906],[-71.23315,41.51473299906],[-71.233189,41.51467399906],[-71.233237,41.51461399906],[-71.233189,41.51460099906],[-71.233112,41.51459599906],[-71.233102,41.51455199906],[-71.233098,41.51442499906],[-71.233063,41.51437199906],[-71.233034,41.51431399906],[-71.233029,41.51417999906],[-71.233039,41.51411099906],[-71.233059,41.51403999906],[-71.233077,41.51398499906],[-71.233077,41.51392599906],[-71.233061,41.51387099906],[-71.233019,41.51382299906],[-71.232984,41.51375999906],[-71.232995,41.51369799906],[-71.232998,41.51363099906],[-71.23306,41.51362099906],[-71.23309,41.51363599906],[-71.233126,41.51368999906],[-71.233163,41.51365399906],[-71.233237,41.51365699906],[-71.233297,41.51368899906],[-71.233333,41.51374999906],[-71.233352,41.51381399906],[-71.233355,41.51392599906],[-71.233359,41.51398399906],[-71.23339,41.51402699906],[-71.234153,41.51461099906],[-71.23486,41.51515699906],[-71.235826,41.51590299906],[-71.235838,41.51591299906],[-71.237988,41.51758299906],[-71.238215,41.51775099906],[-71.240398,41.51939199906],[-71.241755,41.52039999906],[-71.242461,41.52092499906],[-71.242523,41.52096499906],[-71.243782,41.52191899906],[-71.244621,41.52252599906],[-71.245856,41.52344299906],[-71.24639,41.52383899906],[-71.246906,41.52422099906],[-71.247122,41.52438199906],[-71.247751,41.52484799906],[-71.2483,41.52525499906],[-71.250318,41.52674999906],[-71.252196,41.52814199906],[-71.253508,41.52911299906],[-71.254709,41.53000299906],[-71.254998,41.53021699906],[-71.255386,41.53053499906],[-71.256582,41.53139199906],[-71.258117,41.53252799906],[-71.258719,41.53297299906],[-71.259185,41.53331899906],[-71.260179,41.53405599906],[-71.260245,41.53410499906],[-71.26087,41.53444899906],[-71.260902,41.53448599906],[-71.260963,41.53454299906],[-71.261093,41.53463099906],[-71.261581,41.53499899906],[-71.261878,41.53521899906],[-71.262252,41.53549499906],[-71.263145,41.53617099906],[-71.264083,41.53685499906],[-71.264991,41.53753999906],[-71.265724,41.53817999906],[-71.265786,41.53808899906],[-71.265876,41.53796299906],[-71.26625,41.53755099906],[-71.266418,41.53735799906],[-71.266577,41.53718399906],[-71.266853,41.53688599906],[-71.266968,41.53677099906],[-71.26708,41.53664699906],[-71.267456,41.53623499906],[-71.267783,41.53586299906],[-71.26802,41.53561099906],[-71.268722,41.53484099906],[-71.268963,41.53457899906],[-71.269409,41.53409699906],[-71.269744,41.53371299906],[-71.269897,41.53354699906],[-71.270217,41.53317199906],[-71.270675,41.53266299906],[-71.271057,41.53221399906],[-71.271224,41.53203099906],[-71.271346,41.53188899906],[-71.271598,41.53161299906],[-71.272033,41.53111399906],[-71.2723,41.53081199906],[-71.272369,41.53072899906],[-71.272743,41.53030299906],[-71.273101,41.52983599906],[-71.273246,41.52964899906],[-71.273712,41.52900499906],[-71.273872,41.52879499906],[-71.274482,41.52798499906],[-71.275169,41.52706699906],[-71.275207,41.52702099906],[-71.275505,41.52662799906],[-71.275619,41.52646799906],[-71.275695,41.52635799906],[-71.275795,41.52624399906],[-71.275894,41.52615199906],[-71.275909,41.52595299906],[-71.275932,41.52561899906],[-71.276008,41.52497799906],[-71.276092,41.52412999906],[-71.276206,41.52310999906],[-71.276306,41.52223499906],[-71.276351,41.52179199906],[-71.276474,41.52077199906],[-71.276603,41.51958499906],[-71.276655,41.51912599906],[-71.27684,41.51753199906],[-71.277007,41.51641999906],[-71.277023,41.51628999906],[-71.277122,41.51567999906],[-71.277206,41.51508399906],[-71.277267,41.51455099906],[-71.277335,41.51392399906],[-71.277358,41.51358499906],[-71.277404,41.51297199906],[-71.277481,41.51190299906],[-71.277549,41.51118999906],[-71.277671,41.51014799906],[-71.277717,41.50978199906],[-71.277778,41.50939399906],[-71.277938,41.50818799906]]]}}"}, +{"type": "blockgroup", "typeId": 404002, "areaId": 29334, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.294937,41.50190099906],[-71.294883,41.50154199906],[-71.29483,41.50120999906],[-71.294822,41.50108799906],[-71.29483,41.50101199906],[-71.294761,41.50064399906],[-71.294639,41.50002499906],[-71.294609,41.49984499906],[-71.294517,41.49937899906],[-71.294462,41.49911099906],[-71.294372,41.49865699906],[-71.294364,41.49862099906],[-71.294357,41.49855799906],[-71.294291,41.49826199906],[-71.294273,41.49818299906],[-71.293551,41.49742099906],[-71.293152,41.49695899906],[-71.292587,41.49634599906],[-71.289946,41.49358899906],[-71.289906,41.49350099906],[-71.289576,41.49314899906],[-71.287138,41.49054899906],[-71.286951,41.49033899906],[-71.286555,41.48988399906],[-71.286514,41.48989199906],[-71.28627,41.48992799906],[-71.286071,41.48994099906],[-71.285888,41.48992699906],[-71.285629,41.48989199906],[-71.285255,41.48983199906],[-71.285102,41.48981199906],[-71.284751,41.48980999906],[-71.284591,41.48985799906],[-71.284523,41.48989599906],[-71.284461,41.48991899906],[-71.284294,41.49003999906],[-71.284156,41.49018199906],[-71.284034,41.49039599906],[-71.283973,41.49055499906],[-71.283943,41.49071799906],[-71.283935,41.49078999906],[-71.283928,41.49095699906],[-71.283943,41.49116399906],[-71.284026,41.49159399906],[-71.284042,41.49169799906],[-71.28411,41.49202499906],[-71.284141,41.49216399906],[-71.284248,41.49275199906],[-71.284263,41.49281399906],[-71.284339,41.49317799906],[-71.284385,41.49339699906],[-71.284469,41.49387799906],[-71.284553,41.49449699906],[-71.28453,41.49465099906],[-71.284515,41.49472799906],[-71.2845,41.49478199906],[-71.284492,41.49480499906],[-71.284431,41.49492799906],[-71.284393,41.49498699906],[-71.284378,41.49501899906],[-71.284339,41.49510099906],[-71.284263,41.49520999906],[-71.28421,41.49530099906],[-71.28395,41.49555899906],[-71.283912,41.49559499906],[-71.283697,41.49581599906],[-71.283687,41.49582599906],[-71.28337,41.49615999906],[-71.283302,41.49622899906],[-71.283104,41.49638599906],[-71.282394,41.49688699906],[-71.280883,41.49792999906],[-71.280456,41.49823499906],[-71.280052,41.49850499906],[-71.279907,41.49861599906],[-71.279792,41.49869399906],[-71.279571,41.49886099906],[-71.279403,41.49900399906],[-71.279312,41.49912299906],[-71.279276,41.49917299906],[-71.279243,41.49921899906],[-71.279136,41.49944599906],[-71.279098,41.49961799906],[-71.278915,41.49958499906],[-71.278595,41.49958299906],[-71.278297,41.49962899906],[-71.277923,41.49969999906],[-71.277548,41.49979099906],[-71.276534,41.50003699906],[-71.276107,41.50014099906],[-71.275741,41.50022499906],[-71.275535,41.50027399906],[-71.275405,41.50030299906],[-71.27465,41.50048499906],[-71.274047,41.50062299906],[-71.273971,41.50063799906],[-71.273445,41.50074999906],[-71.273048,41.50083599906],[-71.27258,41.50093799906],[-71.272079,41.50104899906],[-71.271812,41.50110399906],[-71.270958,41.50128299906],[-71.270256,41.50143699906],[-71.269904,41.50151099906],[-71.268745,41.50176399906],[-71.268084,41.50191799906],[-71.267989,41.50194099906],[-71.268012,41.50210699906],[-71.268058,41.50233999906],[-71.268089,41.50252899906],[-71.268119,41.50268599906],[-71.268188,41.50296799906],[-71.268234,41.50322399906],[-71.268295,41.50350199906],[-71.268333,41.50374399906],[-71.268356,41.50393699906],[-71.268371,41.50399999906],[-71.268417,41.50431399906],[-71.268447,41.50465199906],[-71.268486,41.50498899906],[-71.268516,41.50530799906],[-71.268562,41.50574399906],[-71.268609,41.50630099906],[-71.268615,41.50636799906],[-71.268669,41.50679999906],[-71.268692,41.50702399906],[-71.268714,41.50716399906],[-71.268867,41.50788999906],[-71.269126,41.50912799906],[-71.269126,41.50917299906],[-71.269134,41.50921799906],[-71.269134,41.50926299906],[-71.269141,41.50929399906],[-71.269142,41.50939299906],[-71.269149,41.50942899906],[-71.269149,41.50948299906],[-71.269157,41.50951899906],[-71.269381,41.50954299906],[-71.269431,41.50954499906],[-71.269584,41.50954199906],[-71.269668,41.50953599906],[-71.269752,41.50953399906],[-71.270026,41.50949299906],[-71.270477,41.50943399906],[-71.27143,41.50928499906],[-71.271591,41.50925899906],[-71.271774,41.50923299906],[-71.272193,41.50916199906],[-71.272834,41.50904599906],[-71.273941,41.50882099906],[-71.274024,41.50880599906],[-71.274864,41.50864099906],[-71.275466,41.50854299906],[-71.275794,41.50849199906],[-71.276199,41.50842499906],[-71.277938,41.50818799906],[-71.277778,41.50939399906],[-71.277717,41.50978199906],[-71.277671,41.51014799906],[-71.277549,41.51118999906],[-71.277481,41.51190299906],[-71.277404,41.51297199906],[-71.277358,41.51358499906],[-71.277335,41.51392399906],[-71.277267,41.51455099906],[-71.277206,41.51508399906],[-71.277122,41.51567999906],[-71.277023,41.51628999906],[-71.277007,41.51641999906],[-71.27684,41.51753199906],[-71.276655,41.51912599906],[-71.276603,41.51958499906],[-71.276474,41.52077199906],[-71.276351,41.52179199906],[-71.276306,41.52223499906],[-71.276206,41.52310999906],[-71.276092,41.52412999906],[-71.276008,41.52497799906],[-71.275932,41.52561899906],[-71.275909,41.52595299906],[-71.275894,41.52615199906],[-71.276001,41.52605899906],[-71.276252,41.52587899906],[-71.276756,41.52557599906],[-71.276979,41.52543999906],[-71.278167,41.52471999906],[-71.278747,41.52436999906],[-71.278991,41.52422099906],[-71.279304,41.52403499906],[-71.27948,41.52392799906],[-71.279633,41.52383499906],[-71.280006,41.52361099906],[-71.280845,41.52311299906],[-71.28112,41.52294499906],[-71.281631,41.52261999906],[-71.281944,41.52242499906],[-71.28215,41.52229899906],[-71.282241,41.52224699906],[-71.282272,41.52222399906],[-71.282478,41.52210799906],[-71.2826,41.52204199906],[-71.28292,41.52189199906],[-71.283233,41.52178199906],[-71.283424,41.52171099906],[-71.284049,41.52153199906],[-71.284141,41.52150299906],[-71.284881,41.52127599906],[-71.285445,41.52111199906],[-71.285911,41.52098099906],[-71.286363,41.52085899906],[-71.286903,41.52071399906],[-71.287475,41.52056299906],[-71.288032,41.52041699906],[-71.288467,41.52030399906],[-71.289068,41.52014799906],[-71.289657,41.51999699906],[-71.289794,41.51995799906],[-71.290504,41.51975899906],[-71.290649,41.51972099906],[-71.291519,41.51944699906],[-71.292137,41.51926799906],[-71.293083,41.51897899906],[-71.29335,41.51889199906],[-71.293098,41.51850099906],[-71.293045,41.51842499906],[-71.292801,41.51809699906],[-71.292778,41.51806099906],[-71.292518,41.51769699906],[-71.292411,41.51752799906],[-71.292236,41.51714499906],[-71.292098,41.51679199906],[-71.291969,41.51642499906],[-71.291854,41.51609399906],[-71.291572,41.51536099906],[-71.291557,41.51530299906],[-71.291341,41.51473899906],[-71.291313,41.51466399906],[-71.291297,41.51461899906],[-71.291267,41.51453599906],[-71.291099,41.51406899906],[-71.291046,41.51385799906],[-71.291,41.51366599906],[-71.290908,41.51300099906],[-71.290855,41.51255199906],[-71.290855,41.51249299906],[-71.290847,41.51246599906],[-71.290786,41.51194099906],[-71.290741,41.51149599906],[-71.290664,41.51111899906],[-71.290588,41.51094499906],[-71.290572,41.51089999906],[-71.290435,41.51061899906],[-71.290252,41.51031699906],[-71.290229,41.51028599906],[-71.290008,41.50997899906],[-71.289941,41.50987599906],[-71.289787,41.50964099906],[-71.289726,41.50953499906],[-71.289589,41.50928999906],[-71.289398,41.50889699906],[-71.289322,41.50867299906],[-71.289283,41.50857499906],[-71.289199,41.50828899906],[-71.289184,41.50808199906],[-71.289176,41.50796499906],[-71.289184,41.50746499906],[-71.289215,41.50679799906],[-71.289214,41.50658199906],[-71.289222,41.50633399906],[-71.289238,41.50600499906],[-71.28923,41.50590999906],[-71.290046,41.50572699906],[-71.290359,41.50568999906],[-71.290611,41.50568899906],[-71.290863,41.50570699906],[-71.290908,41.50570999906],[-71.291114,41.50573299906],[-71.291328,41.50570199906],[-71.291412,41.50568199906],[-71.291496,41.50562199906],[-71.29158,41.50554799906],[-71.291656,41.50542099906],[-71.291717,41.50526199906],[-71.291801,41.50505699906],[-71.291854,41.50495299906],[-71.29193,41.50483899906],[-71.292037,41.50469699906],[-71.292175,41.50443299906],[-71.292297,41.50412899906],[-71.292358,41.50398399906],[-71.292449,41.50373899906],[-71.292617,41.50336599906],[-71.292831,41.50308699906],[-71.292976,41.50293999906],[-71.293098,41.50281999906],[-71.29338,41.50257599906],[-71.29367,41.50233599906],[-71.293945,41.50215499906],[-71.293983,41.50212699906],[-71.294013,41.50210399906],[-71.294166,41.50204299906],[-71.294349,41.50199399906],[-71.294563,41.50195799906],[-71.294937,41.50190099906]]]}}"}, +{"type": "blockgroup", "typeId": 404003, "areaId": 29335, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.288347,41.48683699906],[-71.28673,41.48715799906],[-71.285578,41.48721199906],[-71.28457,41.48678099906],[-71.283634,41.48580999906],[-71.282482,41.48456899906],[-71.282122,41.48327399906],[-71.281185,41.48251899906],[-71.280105,41.48036099906],[-71.279369,41.47909099906],[-71.278233,41.47804099906],[-71.277081,41.47723099906],[-71.275568,41.47706999906],[-71.273984,41.47739299906],[-71.272445,41.47841699906],[-71.273725,41.47876099906],[-71.274764,41.47967799906],[-71.274721,41.47970299906],[-71.274664,41.47974199906],[-71.274591,41.47979799906],[-71.274519,41.47983299906],[-71.274449,41.47985499906],[-71.27441,41.47987699906],[-71.274373,41.47994599906],[-71.274385,41.48000799906],[-71.274441,41.48005699906],[-71.274432,41.48009899906],[-71.274374,41.48013599906],[-71.274307,41.48016899906],[-71.27427,41.48022699906],[-71.274258,41.48030599906],[-71.274239,41.48036499906],[-71.274201,41.48041399906],[-71.274155,41.48046599906],[-71.274098,41.48051599906],[-71.273954,41.48061999906],[-71.27388,41.48067599906],[-71.273816,41.48073699906],[-71.273772,41.48079899906],[-71.273735,41.48086099906],[-71.27368,41.48091699906],[-71.273608,41.48097399906],[-71.273536,41.48103399906],[-71.273467,41.48109399906],[-71.273393,41.48114499906],[-71.273311,41.48119299906],[-71.273234,41.48124599906],[-71.273165,41.48130299906],[-71.273099,41.48136799906],[-71.273027,41.48142399906],[-71.272954,41.48147199906],[-71.27291,41.48152999906],[-71.272886,41.48158899906],[-71.272842,41.48164099906],[-71.272778,41.48167799906],[-71.272703,41.48170199906],[-71.272624,41.48172299906],[-71.272496,41.48176999906],[-71.272428,41.48180999906],[-71.272354,41.48184399906],[-71.272277,41.48190299906],[-71.272171,41.48199899906],[-71.272116,41.48205299906],[-71.272067,41.48209899906],[-71.272009,41.48214899906],[-71.271943,41.48217399906],[-71.271897,41.48224499906],[-71.27187,41.48230499906],[-71.271794,41.48235699906],[-71.271725,41.48238999906],[-71.271651,41.48241699906],[-71.271578,41.48243299906],[-71.271483,41.48243899906],[-71.271407,41.48243899906],[-71.271316,41.48243699906],[-71.271243,41.48243099906],[-71.27123,41.48240899906],[-71.271251,41.48236899906],[-71.27125,41.48227699906],[-71.271237,41.48220899906],[-71.271191,41.48216199906],[-71.271212,41.48209899906],[-71.271259,41.48199699906],[-71.271281,41.48197399906],[-71.271324,41.48196199906],[-71.271322,41.48182999906],[-71.27132,41.48177499906],[-71.271297,41.48172099906],[-71.27127,41.48172899906],[-71.27125,41.48178999906],[-71.270962,41.48241399906],[-71.270919,41.48249799906],[-71.270879,41.48258099906],[-71.270755,41.48282199906],[-71.270713,41.48289799906],[-71.270669,41.48298199906],[-71.270552,41.48322299906],[-71.270482,41.48335399906],[-71.270447,41.48341099906],[-71.270384,41.48346599906],[-71.270304,41.48348299906],[-71.270231,41.48347999906],[-71.270159,41.48347399906],[-71.270093,41.48343499906],[-71.270021,41.48340499906],[-71.269992,41.48335699906],[-71.269961,41.48329999906],[-71.269903,41.48327199906],[-71.269839,41.48329399906],[-71.2698,41.48323999906],[-71.269792,41.48318299906],[-71.269799,41.48313099906],[-71.269955,41.48290799906],[-71.269989,41.48285299906],[-71.269975,41.48279599906],[-71.269968,41.48274199906],[-71.269959,41.48270899906],[-71.269921,41.48277799906],[-71.269627,41.48335899906],[-71.269598,41.48343399906],[-71.269574,41.48350499906],[-71.269548,41.48356799906],[-71.26949,41.48369799906],[-71.269471,41.48375799906],[-71.269452,41.48383299906],[-71.269448,41.48388899906],[-71.269498,41.48396399906],[-71.269505,41.48402499906],[-71.26952,41.48407999906],[-71.269543,41.48413199906],[-71.269591,41.48413899906],[-71.269637,41.48412699906],[-71.269675,41.48407799906],[-71.269686,41.48410099906],[-71.269685,41.48416399906],[-71.269668,41.48423199906],[-71.269635,41.48427999906],[-71.269586,41.48434199906],[-71.269545,41.48437699906],[-71.269379,41.48433999906],[-71.269297,41.48431599906],[-71.269233,41.48432699906],[-71.269222,41.48438099906],[-71.269076,41.48466099906],[-71.269022,41.48461699906],[-71.268969,41.48460599906],[-71.268941,41.48458899906],[-71.268942,41.48453299906],[-71.268948,41.48447299906],[-71.268942,41.48443499906],[-71.268904,41.48443399906],[-71.268866,41.48448699906],[-71.26883,41.48456099906],[-71.268805,41.48461899906],[-71.268761,41.48473399906],[-71.268737,41.48478599906],[-71.268698,41.48485499906],[-71.268672,41.48491699906],[-71.268653,41.48496999906],[-71.268631,41.48502199906],[-71.26861,41.48512099906],[-71.268556,41.48517499906],[-71.268513,41.48523499906],[-71.268485,41.48529699906],[-71.268436,41.48543999906],[-71.268367,41.48565399906],[-71.26834,41.48572399906],[-71.268283,41.48585499906],[-71.268253,41.48592099906],[-71.268219,41.48599299906],[-71.268186,41.48606899906],[-71.268147,41.48614099906],[-71.268105,41.48620699906],[-71.268068,41.48626699906],[-71.268043,41.48632699906],[-71.26802,41.48638699906],[-71.267967,41.48651499906],[-71.267941,41.48658199906],[-71.267918,41.48664899906],[-71.267904,41.48671599906],[-71.267895,41.48677999906],[-71.267882,41.48684199906],[-71.267866,41.48690799906],[-71.267846,41.48697699906],[-71.267823,41.48704399906],[-71.267776,41.48716299906],[-71.267757,41.48722099906],[-71.267741,41.48728499906],[-71.267726,41.48735099906],[-71.267711,41.48741199906],[-71.267696,41.48746599906],[-71.267676,41.48753299906],[-71.267663,41.48758999906],[-71.267647,41.48765099906],[-71.267629,41.48770699906],[-71.267608,41.48776099906],[-71.267584,41.48781699906],[-71.267559,41.48788299906],[-71.26755,41.48794799906],[-71.267576,41.48799699906],[-71.267636,41.48803499906],[-71.267679,41.48808099906],[-71.26769,41.48811399906],[-71.267676,41.48812899906],[-71.267622,41.48816099906],[-71.26764,41.48821399906],[-71.267692,41.48826199906],[-71.26774,41.48830999906],[-71.267728,41.48832999906],[-71.267667,41.48837399906],[-71.267662,41.48842199906],[-71.267684,41.48848199906],[-71.267714,41.48849599906],[-71.267746,41.48852899906],[-71.267724,41.48858799906],[-71.267677,41.48865999906],[-71.267635,41.48870599906],[-71.267661,41.48918499906],[-71.26757,41.48931299906],[-71.267417,41.48958999906],[-71.267257,41.48992199906],[-71.267112,41.49029399906],[-71.267021,41.49058399906],[-71.266998,41.49066999906],[-71.266975,41.49081899906],[-71.26696,41.49093199906],[-71.266929,41.49134299906],[-71.266924,41.49178599906],[-71.266921,41.49198699906],[-71.266921,41.49273899906],[-71.266922,41.49281499906],[-71.266921,41.49295099906],[-71.266922,41.49348199906],[-71.266921,41.49418399906],[-71.266922,41.49476999906],[-71.266914,41.49494999906],[-71.266914,41.49516599906],[-71.266906,41.49578799906],[-71.266914,41.49608999906],[-71.266922,41.49653099906],[-71.266929,41.49670599906],[-71.266998,41.49714599906],[-71.267013,41.49723599906],[-71.267082,41.49756799906],[-71.267089,41.49761699906],[-71.267143,41.49784599906],[-71.267288,41.49861299906],[-71.267486,41.49952799906],[-71.267555,41.49983699906],[-71.267707,41.50057299906],[-71.267781,41.50093799906],[-71.267806,41.50106199906],[-71.267875,41.50139299906],[-71.267951,41.50173899906],[-71.267989,41.50194099906],[-71.268084,41.50191799906],[-71.268745,41.50176399906],[-71.269904,41.50151099906],[-71.270256,41.50143699906],[-71.270958,41.50128299906],[-71.271812,41.50110399906],[-71.272079,41.50104899906],[-71.27258,41.50093799906],[-71.273048,41.50083599906],[-71.273445,41.50074999906],[-71.273971,41.50063799906],[-71.274047,41.50062299906],[-71.27465,41.50048499906],[-71.275405,41.50030299906],[-71.275535,41.50027399906],[-71.275741,41.50022499906],[-71.276107,41.50014099906],[-71.276534,41.50003699906],[-71.277548,41.49979099906],[-71.277923,41.49969999906],[-71.278297,41.49962899906],[-71.278595,41.49958299906],[-71.278915,41.49958499906],[-71.279098,41.49961799906],[-71.279136,41.49944599906],[-71.279243,41.49921899906],[-71.279276,41.49917299906],[-71.279312,41.49912299906],[-71.279403,41.49900399906],[-71.279571,41.49886099906],[-71.279792,41.49869399906],[-71.279907,41.49861599906],[-71.280052,41.49850499906],[-71.280456,41.49823499906],[-71.280883,41.49792999906],[-71.282394,41.49688699906],[-71.283104,41.49638599906],[-71.283302,41.49622899906],[-71.28337,41.49615999906],[-71.283687,41.49582599906],[-71.283697,41.49581599906],[-71.283912,41.49559499906],[-71.28395,41.49555899906],[-71.28421,41.49530099906],[-71.284263,41.49520999906],[-71.284339,41.49510099906],[-71.284378,41.49501899906],[-71.284393,41.49498699906],[-71.284431,41.49492799906],[-71.284492,41.49480499906],[-71.2845,41.49478199906],[-71.284515,41.49472799906],[-71.28453,41.49465099906],[-71.284553,41.49449699906],[-71.284469,41.49387799906],[-71.284385,41.49339699906],[-71.284339,41.49317799906],[-71.284263,41.49281399906],[-71.284248,41.49275199906],[-71.284141,41.49216399906],[-71.28411,41.49202499906],[-71.284042,41.49169799906],[-71.284026,41.49159399906],[-71.283943,41.49116399906],[-71.283928,41.49095699906],[-71.283935,41.49078999906],[-71.283943,41.49071799906],[-71.283973,41.49055499906],[-71.284034,41.49039599906],[-71.284156,41.49018199906],[-71.284294,41.49003999906],[-71.284461,41.48991899906],[-71.284523,41.48989599906],[-71.284591,41.48985799906],[-71.284751,41.48980999906],[-71.285102,41.48981199906],[-71.285255,41.48983199906],[-71.285629,41.48989199906],[-71.285888,41.48992699906],[-71.286071,41.48994099906],[-71.28627,41.48992799906],[-71.286514,41.48989199906],[-71.286555,41.48988399906],[-71.28643,41.48974299906],[-71.285915,41.48924699906],[-71.285188,41.48840899906],[-71.284829,41.48799399906],[-71.28552,41.48784099906],[-71.286422,41.48756399906],[-71.287316,41.48728199906],[-71.288347,41.48683699906]]]}}"}, +{"type": "blockgroup", "typeId": 405001, "areaId": 29336, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.319168,41.51207899906],[-71.31916,41.51185799906],[-71.319152,41.51145299906],[-71.319099,41.51079199906],[-71.319015,41.50984399906],[-71.318987,41.50964099906],[-71.318962,41.50920999906],[-71.318855,41.50804999906],[-71.318779,41.50711499906],[-71.318756,41.50690399906],[-71.318751,41.50681999906],[-71.318672,41.50683299906],[-71.318588,41.50684799906],[-71.318305,41.50691699906],[-71.318184,41.50697799906],[-71.318061,41.50704799906],[-71.317939,41.50712699906],[-71.317901,41.50718199906],[-71.317825,41.50722899906],[-71.317726,41.50727099906],[-71.317643,41.50728599906],[-71.317611,41.50729099906],[-71.317489,41.50727999906],[-71.317352,41.50725599906],[-71.317306,41.50722599906],[-71.317275,41.50720399906],[-71.317169,41.50719199906],[-71.317085,41.50717099906],[-71.317008,41.50717299906],[-71.316919,41.50716599906],[-71.316871,41.50716199906],[-71.316642,41.50718899906],[-71.316576,41.50719999906],[-71.315841,41.50731399906],[-71.315559,41.50735099906],[-71.31546,41.50736599906],[-71.315231,41.50739799906],[-71.315162,41.50740399906],[-71.315002,41.50742499906],[-71.314422,41.50753099906],[-71.314307,41.50754999906],[-71.313705,41.50764499906],[-71.313667,41.50764999906],[-71.312889,41.50777399906],[-71.312377,41.50785199906],[-71.311721,41.50793199906],[-71.311462,41.50795099906],[-71.311355,41.50795799906],[-71.311164,41.50796599906],[-71.310875,41.50798999906],[-71.310523,41.50800199906],[-71.310455,41.50800299906],[-71.310028,41.50797999906],[-71.309776,41.50796299906],[-71.309524,41.50793199906],[-71.309272,41.50788299906],[-71.30886,41.50780499906],[-71.307853,41.50755099906],[-71.307868,41.50808599906],[-71.307868,41.50822599906],[-71.307853,41.50897399906],[-71.307847,41.50949699906],[-71.307846,41.50970399906],[-71.307853,41.50982499906],[-71.307853,41.50991499906],[-71.307891,41.51008099906],[-71.308174,41.51062899906],[-71.308471,41.51123099906],[-71.308654,41.51159199906],[-71.308914,41.51208699906],[-71.308944,41.51212699906],[-71.308624,41.51220099906],[-71.308464,41.51223699906],[-71.308235,41.51228999906],[-71.30809,41.51232399906],[-71.307952,41.51235799906],[-71.307727,41.51241399906],[-71.307579,41.51245099906],[-71.307479,41.51247099906],[-71.307273,41.51252499906],[-71.307113,41.51255999906],[-71.306663,41.51266299906],[-71.306556,41.51268899906],[-71.306441,41.51271599906],[-71.306741,41.51313199906],[-71.307333,41.51401099906],[-71.307368,41.51405299906],[-71.307431,41.51412099906],[-71.307539,41.51423799906],[-71.307629,41.51433499906],[-71.307982,41.51485699906],[-71.308851,41.51609599906],[-71.30891,41.51619399906],[-71.309322,41.51677899906],[-71.309928,41.51763899906],[-71.309955,41.51767699906],[-71.310058,41.51782399906],[-71.311141,41.51939599906],[-71.312237,41.52085299906],[-71.312576,41.52055099906],[-71.313125,41.52007199906],[-71.31353,41.51970799906],[-71.313606,41.51964399906],[-71.313751,41.51951899906],[-71.313827,41.51945899906],[-71.314636,41.51871299906],[-71.315582,41.51788799906],[-71.316406,41.51714599906],[-71.316947,41.51664899906],[-71.317027,41.51657999906],[-71.317085,41.51652899906],[-71.317138,41.51647899906],[-71.317588,41.51597399906],[-71.318039,41.51536599906],[-71.318374,41.51482399906],[-71.318656,41.51424599906],[-71.318916,41.51358799906],[-71.319038,41.51308999906],[-71.319107,41.51268299906],[-71.319145,41.51234499906],[-71.319168,41.51207899906]]]}}"}, +{"type": "blockgroup", "typeId": 405002, "areaId": 29337, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.318751,41.50681999906],[-71.318748,41.50675999906],[-71.318733,41.50659299906],[-71.318628,41.50533599906],[-71.318611,41.50511899906],[-71.318527,41.50426899906],[-71.318503,41.50401099906],[-71.318473,41.50369399906],[-71.318473,41.50335599906],[-71.318504,41.50292799906],[-71.318527,41.50264399906],[-71.318511,41.50215799906],[-71.318481,41.50187899906],[-71.318466,41.50165899906],[-71.318456,41.50158199906],[-71.318443,41.50148799906],[-71.318405,41.50106099906],[-71.318374,41.50079599906],[-71.318369,41.50074199906],[-71.318361,41.50064699906],[-71.318347,41.50047699906],[-71.318344,41.50043599906],[-71.318321,41.50023399906],[-71.318311,41.50018399906],[-71.318244,41.49983499906],[-71.318145,41.49943099906],[-71.318104,41.49901799906],[-71.318084,41.49881599906],[-71.318077,41.49869399906],[-71.31807,41.49864599906],[-71.317901,41.49865299906],[-71.317871,41.49865799906],[-71.317527,41.49867399906],[-71.317214,41.49867999906],[-71.317031,41.49869299906],[-71.315948,41.49892199906],[-71.315254,41.49907099906],[-71.315078,41.49910199906],[-71.314498,41.49922099906],[-71.314231,41.49928099906],[-71.313949,41.49933599906],[-71.313545,41.49942099906],[-71.313377,41.49945499906],[-71.313087,41.49951099906],[-71.31253,41.49962599906],[-71.312416,41.49964999906],[-71.31208,41.49971599906],[-71.311668,41.49980099906],[-71.310844,41.49996099906],[-71.310478,41.50003599906],[-71.309738,41.50018599906],[-71.30841,41.50046499906],[-71.308433,41.50054999906],[-71.308692,41.50135499906],[-71.308891,41.50208599906],[-71.308906,41.50217099906],[-71.309005,41.50261899906],[-71.309051,41.50284299906],[-71.309066,41.50291999906],[-71.309112,41.50314799906],[-71.309137,41.50326999906],[-71.309166,41.50340399906],[-71.309181,41.50351199906],[-71.309059,41.50355499906],[-71.308944,41.50359799906],[-71.308822,41.50364099906],[-71.308677,41.50370199906],[-71.308448,41.50380999906],[-71.308402,41.50383399906],[-71.308311,41.50388499906],[-71.308227,41.50394999906],[-71.308143,41.50400999906],[-71.307968,41.50412599906],[-71.307884,41.50418599906],[-71.307823,41.50423299906],[-71.307701,41.50433399906],[-71.307655,41.50436199906],[-71.307617,41.50438999906],[-71.307578,41.50442699906],[-71.307555,41.50445399906],[-71.307533,41.50448599906],[-71.307502,41.50451799906],[-71.307457,41.50458199906],[-71.307426,41.50461899906],[-71.307411,41.50464199906],[-71.307365,41.50470599906],[-71.307304,41.50477899906],[-71.307251,41.50485199906],[-71.307205,41.50492499906],[-71.307098,41.50507999906],[-71.307037,41.50516199906],[-71.307006,41.50519899906],[-71.30661,41.50503999906],[-71.305892,41.50604999906],[-71.305587,41.50592999906],[-71.305549,41.50592199906],[-71.305496,41.50595899906],[-71.305358,41.50615999906],[-71.304939,41.50680299906],[-71.30484,41.50712499906],[-71.304733,41.50738399906],[-71.304115,41.50723899906],[-71.303878,41.50719399906],[-71.303695,41.50715699906],[-71.303527,41.50713299906],[-71.303291,41.50709699906],[-71.302619,41.50701599906],[-71.302421,41.50699799906],[-71.302494,41.50709999906],[-71.302824,41.50754699906],[-71.303139,41.50797499906],[-71.303549,41.50854399906],[-71.303558,41.50857899906],[-71.303612,41.50868699906],[-71.303732,41.50887599906],[-71.30412,41.50942599906],[-71.304222,41.50958999906],[-71.30428,41.50968499906],[-71.304368,41.50978999906],[-71.304544,41.51004999906],[-71.305278,41.51111499906],[-71.305315,41.51116899906],[-71.305384,41.51126699906],[-71.305784,41.51179199906],[-71.305951,41.51202999906],[-71.306398,41.51265599906],[-71.306441,41.51271599906],[-71.306556,41.51268899906],[-71.306663,41.51266299906],[-71.307113,41.51255999906],[-71.307273,41.51252499906],[-71.307479,41.51247099906],[-71.307579,41.51245099906],[-71.307727,41.51241399906],[-71.307952,41.51235799906],[-71.30809,41.51232399906],[-71.308235,41.51228999906],[-71.308464,41.51223699906],[-71.308624,41.51220099906],[-71.308944,41.51212699906],[-71.308914,41.51208699906],[-71.308654,41.51159199906],[-71.308471,41.51123099906],[-71.308174,41.51062899906],[-71.307891,41.51008099906],[-71.307853,41.50991499906],[-71.307853,41.50982499906],[-71.307846,41.50970399906],[-71.307847,41.50949699906],[-71.307853,41.50897399906],[-71.307868,41.50822599906],[-71.307868,41.50808599906],[-71.307853,41.50755099906],[-71.30886,41.50780499906],[-71.309272,41.50788299906],[-71.309524,41.50793199906],[-71.309776,41.50796299906],[-71.310028,41.50797999906],[-71.310455,41.50800299906],[-71.310523,41.50800199906],[-71.310875,41.50798999906],[-71.311164,41.50796599906],[-71.311355,41.50795799906],[-71.311462,41.50795099906],[-71.311721,41.50793199906],[-71.312377,41.50785199906],[-71.312889,41.50777399906],[-71.313667,41.50764999906],[-71.313705,41.50764499906],[-71.314307,41.50754999906],[-71.314422,41.50753099906],[-71.315002,41.50742499906],[-71.315162,41.50740399906],[-71.315231,41.50739799906],[-71.31546,41.50736599906],[-71.315559,41.50735099906],[-71.315841,41.50731399906],[-71.316576,41.50719999906],[-71.316642,41.50718899906],[-71.316871,41.50716199906],[-71.316919,41.50716599906],[-71.317008,41.50717299906],[-71.317085,41.50717099906],[-71.317169,41.50719199906],[-71.317275,41.50720399906],[-71.317306,41.50722599906],[-71.317352,41.50725599906],[-71.317489,41.50727999906],[-71.317611,41.50729099906],[-71.317643,41.50728599906],[-71.317726,41.50727099906],[-71.317825,41.50722899906],[-71.317901,41.50718199906],[-71.317939,41.50712699906],[-71.318061,41.50704799906],[-71.318184,41.50697799906],[-71.318305,41.50691699906],[-71.318588,41.50684799906],[-71.318672,41.50683299906],[-71.318751,41.50681999906]]]}}"}, +{"type": "blockgroup", "typeId": 405003, "areaId": 29338, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.31807,41.49864599906],[-71.318061,41.49858199906],[-71.318014,41.49809099906],[-71.318004,41.49797999906],[-71.317985,41.49777799906],[-71.317976,41.49769099906],[-71.317973,41.49765299906],[-71.31797,41.49762099906],[-71.317938,41.49728999906],[-71.317911,41.49701699906],[-71.317893,41.49682899906],[-71.317882,41.49667299906],[-71.317839,41.49609799906],[-71.317825,41.49591599906],[-71.317781,41.49545599906],[-71.317772,41.49535199906],[-71.317723,41.49483099906],[-71.316642,41.49485899906],[-71.316627,41.49482799906],[-71.316101,41.49429799906],[-71.315658,41.49386199906],[-71.314651,41.49460199906],[-71.314315,41.49485699906],[-71.314109,41.49501899906],[-71.313613,41.49539299906],[-71.312789,41.49595899906],[-71.311931,41.49648599906],[-71.31182,41.49655499906],[-71.311683,41.49664799906],[-71.311496,41.49676599906],[-71.311172,41.49697399906],[-71.310783,41.49720599906],[-71.310463,41.49739799906],[-71.310157,41.49757899906],[-71.309852,41.49776599906],[-71.309524,41.49796599906],[-71.309066,41.49824499906],[-71.30883,41.49838499906],[-71.308669,41.49848299906],[-71.308464,41.49861299906],[-71.308105,41.49883199906],[-71.307968,41.49891999906],[-71.307563,41.49916299906],[-71.307784,41.49928399906],[-71.308044,41.49944099906],[-71.308113,41.49951199906],[-71.308151,41.49957399906],[-71.30841,41.50046499906],[-71.309738,41.50018599906],[-71.310478,41.50003599906],[-71.310844,41.49996099906],[-71.311668,41.49980099906],[-71.31208,41.49971599906],[-71.312416,41.49964999906],[-71.31253,41.49962599906],[-71.313087,41.49951099906],[-71.313377,41.49945499906],[-71.313545,41.49942099906],[-71.313949,41.49933599906],[-71.314231,41.49928099906],[-71.314498,41.49922099906],[-71.315078,41.49910199906],[-71.315254,41.49907099906],[-71.315948,41.49892199906],[-71.317031,41.49869299906],[-71.317214,41.49867999906],[-71.317527,41.49867399906],[-71.317871,41.49865799906],[-71.317901,41.49865299906],[-71.31807,41.49864599906]]]}}"}, +{"type": "blockgroup", "typeId": 406001, "areaId": 29339, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.309181,41.50351199906],[-71.309166,41.50340399906],[-71.309137,41.50326999906],[-71.309112,41.50314799906],[-71.309066,41.50291999906],[-71.309051,41.50284299906],[-71.309005,41.50261899906],[-71.308906,41.50217099906],[-71.308891,41.50208599906],[-71.308692,41.50135499906],[-71.308433,41.50054999906],[-71.30841,41.50046499906],[-71.308357,41.50046599906],[-71.308303,41.50046299906],[-71.30825,41.50046399906],[-71.308212,41.50045499906],[-71.308167,41.50045099906],[-71.308143,41.50044799906],[-71.308082,41.50043099906],[-71.308052,41.50041799906],[-71.307983,41.50039299906],[-71.307945,41.50037499906],[-71.307563,41.50085099906],[-71.307541,41.50087399906],[-71.307518,41.50087899906],[-71.307479,41.50087499906],[-71.307449,41.50086699906],[-71.307167,41.50073799906],[-71.306518,41.50043099906],[-71.305984,41.50017999906],[-71.305618,41.50063399906],[-71.305557,41.50070699906],[-71.305534,41.50073899906],[-71.306312,41.50111099906],[-71.306961,41.50139899906],[-71.306984,41.50141199906],[-71.306983,41.50143899906],[-71.306976,41.50146199906],[-71.306953,41.50148499906],[-71.30651,41.50196199906],[-71.305084,41.50128799906],[-71.305106,41.50125599906],[-71.304649,41.50100899906],[-71.303932,41.50063599906],[-71.303543,41.50043199906],[-71.303489,41.50040199906],[-71.303413,41.50035799906],[-71.302955,41.50011999906],[-71.302978,41.49999799906],[-71.303008,41.49978999906],[-71.302696,41.49987299906],[-71.302398,41.49995999906],[-71.302345,41.49996999906],[-71.302276,41.49998499906],[-71.3022,41.50000399906],[-71.302093,41.50001499906],[-71.301826,41.50005199906],[-71.301681,41.50006899906],[-71.301445,41.50009599906],[-71.3012,41.50012299906],[-71.300788,41.50018099906],[-71.300689,41.50019199906],[-71.300636,41.50089999906],[-71.300582,41.50165299906],[-71.300552,41.50200099906],[-71.300537,41.50209999906],[-71.300537,41.50219899906],[-71.300529,41.50233399906],[-71.300527,41.50239199906],[-71.300514,41.50281599906],[-71.300506,41.50302799906],[-71.300506,41.50340199906],[-71.300514,41.50355499906],[-71.300514,41.50364999906],[-71.300506,41.50376699906],[-71.300476,41.50399699906],[-71.300468,41.50403299906],[-71.300445,41.50420899906],[-71.300407,41.50440799906],[-71.300369,41.50464199906],[-71.300437,41.50469299906],[-71.300755,41.50506499906],[-71.300855,41.50527299906],[-71.300936,41.50544299906],[-71.301274,41.50584699906],[-71.301288,41.50584799906],[-71.301433,41.50591099906],[-71.301521,41.50594899906],[-71.30185,41.50611999906],[-71.302186,41.50663899906],[-71.302228,41.50664499906],[-71.302266,41.50676499906],[-71.302421,41.50699799906],[-71.302619,41.50701599906],[-71.303291,41.50709699906],[-71.303527,41.50713299906],[-71.303695,41.50715699906],[-71.303878,41.50719399906],[-71.304115,41.50723899906],[-71.304733,41.50738399906],[-71.30484,41.50712499906],[-71.304939,41.50680299906],[-71.305358,41.50615999906],[-71.305496,41.50595899906],[-71.305549,41.50592199906],[-71.305587,41.50592999906],[-71.305892,41.50604999906],[-71.30661,41.50503999906],[-71.307006,41.50519899906],[-71.307037,41.50516199906],[-71.307098,41.50507999906],[-71.307205,41.50492499906],[-71.307251,41.50485199906],[-71.307304,41.50477899906],[-71.307365,41.50470599906],[-71.307411,41.50464199906],[-71.307426,41.50461899906],[-71.307457,41.50458199906],[-71.307502,41.50451799906],[-71.307533,41.50448599906],[-71.307555,41.50445399906],[-71.307578,41.50442699906],[-71.307617,41.50438999906],[-71.307655,41.50436199906],[-71.307701,41.50433399906],[-71.307823,41.50423299906],[-71.307884,41.50418599906],[-71.307968,41.50412599906],[-71.308143,41.50400999906],[-71.308227,41.50394999906],[-71.308311,41.50388499906],[-71.308402,41.50383399906],[-71.308448,41.50380999906],[-71.308677,41.50370199906],[-71.308822,41.50364099906],[-71.308944,41.50359799906],[-71.309059,41.50355499906],[-71.309181,41.50351199906]]]}}"}, +{"type": "blockgroup", "typeId": 406002, "areaId": 29340, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.307945,41.50037499906],[-71.307861,41.50033199906],[-71.3078,41.50030199906],[-71.3077,41.50024999906],[-71.307594,41.50020699906],[-71.307494,41.50015499906],[-71.30738,41.50009799906],[-71.307273,41.50004699906],[-71.307159,41.49998999906],[-71.306945,41.49988599906],[-71.306831,41.49983499906],[-71.306747,41.49979099906],[-71.306671,41.49975699906],[-71.306587,41.49971399906],[-71.306533,41.49969199906],[-71.306419,41.49963599906],[-71.306747,41.49922399906],[-71.306877,41.49906399906],[-71.306968,41.49892699906],[-71.307006,41.49885799906],[-71.307059,41.49875399906],[-71.307121,41.49862699906],[-71.307304,41.49825799906],[-71.307342,41.49817199906],[-71.307579,41.49770799906],[-71.307685,41.49747999906],[-71.307243,41.49723699906],[-71.306602,41.49687199906],[-71.306373,41.49673199906],[-71.305693,41.49635699906],[-71.305625,41.49631899906],[-71.305198,41.49607799906],[-71.305059,41.49599899906],[-71.304679,41.49578399906],[-71.304275,41.49535599906],[-71.303787,41.49483899906],[-71.303619,41.49467099906],[-71.303299,41.49483899906],[-71.3031,41.49494199906],[-71.302932,41.49503099906],[-71.30223,41.49540599906],[-71.303039,41.49626299906],[-71.303497,41.49675799906],[-71.303596,41.49685099906],[-71.303848,41.49710699906],[-71.303924,41.49718199906],[-71.303985,41.49725699906],[-71.304016,41.49729299906],[-71.304046,41.49733299906],[-71.304092,41.49740399906],[-71.304168,41.49753699906],[-71.304366,41.49786199906],[-71.304504,41.49809799906],[-71.304672,41.49839599906],[-71.304961,41.49885899906],[-71.30516,41.49919299906],[-71.304885,41.49927899906],[-71.304595,41.49935299906],[-71.304367,41.49941599906],[-71.304161,41.49947799906],[-71.303894,41.49955099906],[-71.303756,41.49958599906],[-71.303443,41.49967299906],[-71.303327,41.49970399906],[-71.303008,41.49978999906],[-71.302978,41.49999799906],[-71.302955,41.50011999906],[-71.303413,41.50035799906],[-71.303489,41.50040199906],[-71.303543,41.50043199906],[-71.303932,41.50063599906],[-71.304649,41.50100899906],[-71.305106,41.50125599906],[-71.305084,41.50128799906],[-71.30651,41.50196199906],[-71.306953,41.50148499906],[-71.306976,41.50146199906],[-71.306983,41.50143899906],[-71.306984,41.50141199906],[-71.306961,41.50139899906],[-71.306312,41.50111099906],[-71.305534,41.50073899906],[-71.305557,41.50070699906],[-71.305618,41.50063399906],[-71.305984,41.50017999906],[-71.306518,41.50043099906],[-71.307167,41.50073799906],[-71.307449,41.50086699906],[-71.307479,41.50087499906],[-71.307518,41.50087899906],[-71.307541,41.50087399906],[-71.307563,41.50085099906],[-71.307945,41.50037499906]]]}}"}, +{"type": "blockgroup", "typeId": 406003, "areaId": 29341, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.311172,41.49697399906],[-71.310478,41.49635699906],[-71.309646,41.49559899906],[-71.30902,41.49504399906],[-71.308929,41.49495599906],[-71.308967,41.49485599906],[-71.309005,41.49476499906],[-71.309097,41.49451099906],[-71.309173,41.49428499906],[-71.309181,41.49424899906],[-71.309242,41.49410299906],[-71.309295,41.49402099906],[-71.309326,41.49398399906],[-71.309456,41.49381499906],[-71.309646,41.49364499906],[-71.309852,41.49345999906],[-71.307876,41.49232899906],[-71.307418,41.49206399906],[-71.306846,41.49173799906],[-71.306511,41.49206399906],[-71.306182,41.49237699906],[-71.305671,41.49289099906],[-71.305168,41.49339699906],[-71.304542,41.49400799906],[-71.304199,41.49434399906],[-71.304092,41.49442699906],[-71.303619,41.49467099906],[-71.303787,41.49483899906],[-71.304275,41.49535599906],[-71.304679,41.49578399906],[-71.305059,41.49599899906],[-71.305198,41.49607799906],[-71.305625,41.49631899906],[-71.305693,41.49635699906],[-71.306373,41.49673199906],[-71.306602,41.49687199906],[-71.307243,41.49723699906],[-71.307685,41.49747999906],[-71.307579,41.49770799906],[-71.307342,41.49817199906],[-71.307304,41.49825799906],[-71.307121,41.49862699906],[-71.307059,41.49875399906],[-71.307006,41.49885799906],[-71.306968,41.49892699906],[-71.306877,41.49906399906],[-71.306747,41.49922399906],[-71.306419,41.49963599906],[-71.306533,41.49969199906],[-71.306587,41.49971399906],[-71.306671,41.49975699906],[-71.306747,41.49979099906],[-71.306831,41.49983499906],[-71.306945,41.49988599906],[-71.307159,41.49998999906],[-71.307273,41.50004699906],[-71.30738,41.50009799906],[-71.307494,41.50015499906],[-71.307594,41.50020699906],[-71.3077,41.50024999906],[-71.3078,41.50030199906],[-71.307861,41.50033199906],[-71.307945,41.50037499906],[-71.307983,41.50039299906],[-71.308052,41.50041799906],[-71.308082,41.50043099906],[-71.308143,41.50044799906],[-71.308167,41.50045099906],[-71.308212,41.50045499906],[-71.30825,41.50046399906],[-71.308303,41.50046299906],[-71.308357,41.50046599906],[-71.30841,41.50046499906],[-71.308151,41.49957399906],[-71.308113,41.49951199906],[-71.308044,41.49944099906],[-71.307784,41.49928399906],[-71.307563,41.49916299906],[-71.307968,41.49891999906],[-71.308105,41.49883199906],[-71.308464,41.49861299906],[-71.308669,41.49848299906],[-71.30883,41.49838499906],[-71.309066,41.49824499906],[-71.309524,41.49796599906],[-71.309852,41.49776599906],[-71.310157,41.49757899906],[-71.310463,41.49739799906],[-71.310783,41.49720599906],[-71.311172,41.49697399906]]]}}"}, +{"type": "blockgroup", "typeId": 406004, "areaId": 29342, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.315658,41.49386199906],[-71.315597,41.49379499906],[-71.315582,41.49364699906],[-71.315512,41.49288499906],[-71.315467,41.49240599906],[-71.31546,41.49238399906],[-71.315414,41.49215099906],[-71.315408,41.49210099906],[-71.315401,41.49200799906],[-71.315368,41.49151699906],[-71.315322,41.49086499906],[-71.314918,41.49094899906],[-71.314567,41.49103299906],[-71.314521,41.49103799906],[-71.313766,41.49120699906],[-71.313567,41.49125099906],[-71.312949,41.49138099906],[-71.312873,41.49139599906],[-71.312393,41.49149999906],[-71.31221,41.49153499906],[-71.312072,41.49156899906],[-71.311927,41.49163099906],[-71.311729,41.49180599906],[-71.311637,41.49188399906],[-71.311584,41.49193099906],[-71.311424,41.49207299906],[-71.311096,41.49235499906],[-71.310905,41.49252499906],[-71.310699,41.49270899906],[-71.310455,41.49292999906],[-71.310363,41.49300899906],[-71.310314,41.49305399906],[-71.310218,41.49314199906],[-71.309852,41.49345999906],[-71.309646,41.49364499906],[-71.309456,41.49381499906],[-71.309326,41.49398399906],[-71.309295,41.49402099906],[-71.309242,41.49410299906],[-71.309181,41.49424899906],[-71.309173,41.49428499906],[-71.309097,41.49451099906],[-71.309005,41.49476499906],[-71.308967,41.49485599906],[-71.308929,41.49495599906],[-71.30902,41.49504399906],[-71.309646,41.49559899906],[-71.310478,41.49635699906],[-71.311172,41.49697399906],[-71.311496,41.49676599906],[-71.311683,41.49664799906],[-71.31182,41.49655499906],[-71.311931,41.49648599906],[-71.312789,41.49595899906],[-71.313613,41.49539299906],[-71.314109,41.49501899906],[-71.314315,41.49485699906],[-71.314651,41.49460199906],[-71.315658,41.49386199906]]]}}"}, +{"type": "blockgroup", "typeId": 407001, "areaId": 29343, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.30516,41.49919299906],[-71.304961,41.49885899906],[-71.304672,41.49839599906],[-71.304504,41.49809799906],[-71.304366,41.49786199906],[-71.304168,41.49753699906],[-71.304092,41.49740399906],[-71.304046,41.49733299906],[-71.304016,41.49729299906],[-71.303985,41.49725699906],[-71.303924,41.49718199906],[-71.303848,41.49710699906],[-71.303596,41.49685099906],[-71.303497,41.49675799906],[-71.303039,41.49626299906],[-71.30223,41.49540599906],[-71.301941,41.49483999906],[-71.301765,41.49447799906],[-71.301437,41.49379599906],[-71.300689,41.49390499906],[-71.299819,41.49402599906],[-71.299033,41.49412299906],[-71.299003,41.49412799906],[-71.298255,41.49423299906],[-71.297886,41.49424299906],[-71.297142,41.49426499906],[-71.296273,41.49432799906],[-71.295784,41.49436399906],[-71.295639,41.49433999906],[-71.295318,41.49434599906],[-71.294898,41.49436299906],[-71.294609,41.49438699906],[-71.294425,41.49441299906],[-71.29428,41.49444299906],[-71.29422,41.49448099906],[-71.294189,41.49454399906],[-71.294158,41.49491899906],[-71.294158,41.49585999906],[-71.294143,41.49593699906],[-71.294136,41.49653599906],[-71.294136,41.49680099906],[-71.294135,41.49709899906],[-71.294143,41.49729699906],[-71.294143,41.49734599906],[-71.294159,41.49757499906],[-71.294166,41.49759799906],[-71.294181,41.49768799906],[-71.29425,41.49807399906],[-71.294273,41.49818299906],[-71.294291,41.49826199906],[-71.294401,41.49830899906],[-71.294411,41.49831899906],[-71.294649,41.49855199906],[-71.294707,41.49860999906],[-71.294989,41.49890299906],[-71.295865,41.49984099906],[-71.29663,41.50066199906],[-71.296906,41.50095599906],[-71.297039,41.50109799906],[-71.297363,41.50144299906],[-71.297401,41.50147399906],[-71.297415,41.50150499906],[-71.297519,41.50158999906],[-71.297742,41.50186099906],[-71.298457,41.50258699906],[-71.298542,41.50267699906],[-71.298637,41.50276399906],[-71.298878,41.50303599906],[-71.299376,41.50359599906],[-71.29941,41.50363399906],[-71.299509,41.50373899906],[-71.299931,41.50420299906],[-71.300105,41.50439099906],[-71.300274,41.50457099906],[-71.300369,41.50464199906],[-71.300407,41.50440799906],[-71.300445,41.50420899906],[-71.300468,41.50403299906],[-71.300476,41.50399699906],[-71.300506,41.50376699906],[-71.300514,41.50364999906],[-71.300514,41.50355499906],[-71.300506,41.50340199906],[-71.300506,41.50302799906],[-71.300514,41.50281599906],[-71.300527,41.50239199906],[-71.300529,41.50233399906],[-71.300537,41.50219899906],[-71.300537,41.50209999906],[-71.300552,41.50200099906],[-71.300582,41.50165299906],[-71.300636,41.50089999906],[-71.300689,41.50019199906],[-71.300788,41.50018099906],[-71.3012,41.50012299906],[-71.301445,41.50009599906],[-71.301681,41.50006899906],[-71.301826,41.50005199906],[-71.302093,41.50001499906],[-71.3022,41.50000399906],[-71.302276,41.49998499906],[-71.302345,41.49996999906],[-71.302398,41.49995999906],[-71.302696,41.49987299906],[-71.303008,41.49978999906],[-71.303327,41.49970399906],[-71.303443,41.49967299906],[-71.303756,41.49958599906],[-71.303894,41.49955099906],[-71.304161,41.49947799906],[-71.304367,41.49941599906],[-71.304595,41.49935299906],[-71.304885,41.49927899906],[-71.30516,41.49919299906]]]}}"}, +{"type": "blockgroup", "typeId": 407002, "areaId": 29344, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.309639,41.48778199906],[-71.309501,41.48765799906],[-71.309287,41.48712699906],[-71.30928,41.48709999906],[-71.309082,41.48655399906],[-71.309028,41.48642499906],[-71.308837,41.48584799906],[-71.30883,41.48580299906],[-71.307708,41.48617699906],[-71.306999,41.48641599906],[-71.306861,41.48645899906],[-71.306587,41.48654999906],[-71.306068,41.48671399906],[-71.305519,41.48688699906],[-71.305099,41.48707599906],[-71.305053,41.48713099906],[-71.305007,41.48717199906],[-71.30429,41.48740699906],[-71.303434,41.48768199906],[-71.302665,41.48793099906],[-71.300201,41.48824099906],[-71.299636,41.48831999906],[-71.29898,41.48840099906],[-71.298561,41.48845399906],[-71.298103,41.48850799906],[-71.297912,41.48852099906],[-71.297821,41.48850499906],[-71.297744,41.48847899906],[-71.297691,41.48840799906],[-71.297592,41.48815399906],[-71.297309,41.48756499906],[-71.297088,41.48706499906],[-71.29692,41.48678899906],[-71.296745,41.48660799906],[-71.296501,41.48643699906],[-71.296447,41.48641999906],[-71.29602,41.48627099906],[-71.295814,41.48617599906],[-71.2953,41.48620299906],[-71.292419,41.48518799906],[-71.291627,41.48529699906],[-71.290043,41.48615999906],[-71.288972,41.48656799906],[-71.288347,41.48683699906],[-71.287316,41.48728199906],[-71.286422,41.48756399906],[-71.28552,41.48784099906],[-71.284829,41.48799399906],[-71.285188,41.48840899906],[-71.285915,41.48924699906],[-71.28643,41.48974299906],[-71.286555,41.48988399906],[-71.286951,41.49033899906],[-71.287138,41.49054899906],[-71.289576,41.49314899906],[-71.289906,41.49350099906],[-71.289946,41.49358899906],[-71.292587,41.49634599906],[-71.293152,41.49695899906],[-71.293551,41.49742099906],[-71.294273,41.49818299906],[-71.29425,41.49807399906],[-71.294181,41.49768799906],[-71.294166,41.49759799906],[-71.294159,41.49757499906],[-71.294143,41.49734599906],[-71.294143,41.49729699906],[-71.294135,41.49709899906],[-71.294136,41.49680099906],[-71.294136,41.49653599906],[-71.294143,41.49593699906],[-71.294158,41.49585999906],[-71.294158,41.49491899906],[-71.294189,41.49454399906],[-71.29422,41.49448099906],[-71.29428,41.49444299906],[-71.294425,41.49441299906],[-71.294609,41.49438699906],[-71.294898,41.49436299906],[-71.295318,41.49434599906],[-71.295639,41.49433999906],[-71.295784,41.49436399906],[-71.296273,41.49432799906],[-71.297142,41.49426499906],[-71.297886,41.49424299906],[-71.298255,41.49423299906],[-71.299003,41.49412799906],[-71.299033,41.49412299906],[-71.299819,41.49402599906],[-71.300689,41.49390499906],[-71.301437,41.49379599906],[-71.301765,41.49447799906],[-71.301941,41.49483999906],[-71.30223,41.49540599906],[-71.302932,41.49503099906],[-71.3031,41.49494199906],[-71.303299,41.49483899906],[-71.303619,41.49467099906],[-71.304092,41.49442699906],[-71.304199,41.49434399906],[-71.304542,41.49400799906],[-71.305168,41.49339699906],[-71.305671,41.49289099906],[-71.306182,41.49237699906],[-71.306511,41.49206399906],[-71.306846,41.49173799906],[-71.307327,41.49125499906],[-71.30754,41.49094899906],[-71.307639,41.49080699906],[-71.307891,41.49045599906],[-71.30796,41.49035999906],[-71.308486,41.48955699906],[-71.308812,41.48905399906],[-71.309639,41.48778199906]]]}}"}, +{"type": "blockgroup", "typeId": 407003, "areaId": 29345, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.312927,41.48671599906],[-71.312187,41.48656399906],[-71.311409,41.48639099906],[-71.310516,41.48618299906],[-71.31031,41.48613299906],[-71.310035,41.48607199906],[-71.30883,41.48580299906],[-71.308837,41.48584799906],[-71.309028,41.48642499906],[-71.309082,41.48655399906],[-71.30928,41.48709999906],[-71.309287,41.48712699906],[-71.309501,41.48765799906],[-71.309639,41.48778199906],[-71.308812,41.48905399906],[-71.308486,41.48955699906],[-71.30796,41.49035999906],[-71.307891,41.49045599906],[-71.307639,41.49080699906],[-71.30754,41.49094899906],[-71.307327,41.49125499906],[-71.306846,41.49173799906],[-71.307418,41.49206399906],[-71.307876,41.49232899906],[-71.309852,41.49345999906],[-71.310218,41.49314199906],[-71.310314,41.49305399906],[-71.310363,41.49300899906],[-71.310455,41.49292999906],[-71.310699,41.49270899906],[-71.310905,41.49252499906],[-71.311096,41.49235499906],[-71.311424,41.49207299906],[-71.311584,41.49193099906],[-71.311637,41.49188399906],[-71.311729,41.49180599906],[-71.311866,41.49156499906],[-71.311905,41.49143799906],[-71.312103,41.49094699906],[-71.312141,41.49084799906],[-71.31221,41.49068899906],[-71.312377,41.49031599906],[-71.312408,41.49025699906],[-71.31253,41.48998399906],[-71.312553,41.48994799906],[-71.312645,41.48961699906],[-71.312888,41.48866599906],[-71.312888,41.48850899906],[-71.312881,41.48836499906],[-71.312873,41.48820299906],[-71.312858,41.48800999906],[-71.312866,41.48747799906],[-71.312889,41.48715799906],[-71.312927,41.48671599906]]]}}"}, +{"type": "blockgroup", "typeId": 408001, "areaId": 29346, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.30883,41.48580299906],[-71.308723,41.48520199906],[-71.308708,41.48509799906],[-71.308609,41.48446099906],[-71.30855,41.48409099906],[-71.308532,41.48397599906],[-71.308502,41.48378299906],[-71.308502,41.48364799906],[-71.308509,41.48330999906],[-71.308486,41.48213999906],[-71.308486,41.48208599906],[-71.308494,41.48177499906],[-71.308509,41.48098199906],[-71.306457,41.48065799906],[-71.305267,41.48047499906],[-71.304542,41.48036299906],[-71.303879,41.48028699906],[-71.30355,41.48029299906],[-71.302215,41.48032899906],[-71.302177,41.47977599906],[-71.300994,41.47980899906],[-71.300498,41.47981999906],[-71.299713,41.47983899906],[-71.298858,41.47987799906],[-71.298941,41.48069699906],[-71.298957,41.48084899906],[-71.298972,41.48100199906],[-71.298988,41.48116399906],[-71.299034,41.48164899906],[-71.299079,41.48201299906],[-71.299118,41.48223699906],[-71.297332,41.48268699906],[-71.296889,41.48268099906],[-71.296865,41.48273099906],[-71.296898,41.48279199906],[-71.296908,41.48285699906],[-71.296892,41.48292199906],[-71.296861,41.48297699906],[-71.296845,41.48304099906],[-71.29685,41.48310399906],[-71.296858,41.48315799906],[-71.296875,41.48322099906],[-71.296906,41.48327999906],[-71.296939,41.48331299906],[-71.296974,41.48338899906],[-71.29697,41.48345299906],[-71.296957,41.48350999906],[-71.296918,41.48357399906],[-71.296896,41.48363399906],[-71.296902,41.48370299906],[-71.296935,41.48376599906],[-71.29698,41.48382899906],[-71.297028,41.48388599906],[-71.297084,41.48393699906],[-71.297135,41.48398499906],[-71.297173,41.48403999906],[-71.297189,41.48410499906],[-71.2972,41.48416899906],[-71.297217,41.48423699906],[-71.297236,41.48430199906],[-71.297264,41.48441899906],[-71.297262,41.48448599906],[-71.29725,41.48454999906],[-71.297245,41.48460399906],[-71.297228,41.48466499906],[-71.297224,41.48473199906],[-71.297232,41.48479399906],[-71.297252,41.48484899906],[-71.297259,41.48491999906],[-71.297253,41.48498599906],[-71.297224,41.48504999906],[-71.297185,41.48509999906],[-71.29715,41.48514799906],[-71.297122,41.48522199906],[-71.29708,41.48526899906],[-71.29703,41.48531899906],[-71.296964,41.48537999906],[-71.296909,41.48542499906],[-71.296844,41.48546499906],[-71.296773,41.48550299906],[-71.296697,41.48554499906],[-71.296613,41.48558699906],[-71.296524,41.48562899906],[-71.296342,41.48571799906],[-71.296248,41.48575999906],[-71.29616,41.48580399906],[-71.296079,41.48585399906],[-71.295989,41.48590199906],[-71.295793,41.48598599906],[-71.295584,41.48606899906],[-71.295477,41.48611499906],[-71.295379,41.48616499906],[-71.2953,41.48620299906],[-71.295814,41.48617599906],[-71.29602,41.48627099906],[-71.296447,41.48641999906],[-71.296501,41.48643699906],[-71.296745,41.48660799906],[-71.29692,41.48678899906],[-71.297088,41.48706499906],[-71.297309,41.48756499906],[-71.297592,41.48815399906],[-71.297691,41.48840799906],[-71.297744,41.48847899906],[-71.297821,41.48850499906],[-71.297912,41.48852099906],[-71.298103,41.48850799906],[-71.298561,41.48845399906],[-71.29898,41.48840099906],[-71.299636,41.48831999906],[-71.300201,41.48824099906],[-71.302665,41.48793099906],[-71.303434,41.48768199906],[-71.30429,41.48740699906],[-71.305007,41.48717199906],[-71.305053,41.48713099906],[-71.305099,41.48707599906],[-71.305519,41.48688699906],[-71.306068,41.48671399906],[-71.306587,41.48654999906],[-71.306861,41.48645899906],[-71.306999,41.48641599906],[-71.307708,41.48617699906],[-71.30883,41.48580299906]]]}}"}, +{"type": "blockgroup", "typeId": 408002, "areaId": 29347, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.313087,41.48475399906],[-71.313079,41.48472199906],[-71.313072,41.48463699906],[-71.313049,41.48447999906],[-71.313029,41.48437199906],[-71.313026,41.48435399906],[-71.313011,41.48425999906],[-71.312996,41.48413999906],[-71.31298,41.48400799906],[-71.312957,41.48381099906],[-71.312896,41.48344299906],[-71.312889,41.48336199906],[-71.312851,41.48310099906],[-71.312797,41.48265399906],[-71.312789,41.48257999906],[-71.312744,41.48228399906],[-71.312728,41.48217099906],[-71.312645,41.48166399906],[-71.312599,41.48139499906],[-71.312545,41.48121099906],[-71.312522,41.48113999906],[-71.312438,41.48085299906],[-71.312339,41.48048599906],[-71.312225,41.48010099906],[-71.312126,41.47973399906],[-71.311988,41.47925899906],[-71.311958,41.47916099906],[-71.311851,41.47876199906],[-71.311706,41.47823799906],[-71.311561,41.47771899906],[-71.311424,41.47723999906],[-71.311256,41.47667599906],[-71.311203,41.47647799906],[-71.310997,41.47579799906],[-71.31079,41.47512199906],[-71.310554,41.47514099906],[-71.309951,41.47517099906],[-71.309921,41.47517099906],[-71.308967,41.47521299906],[-71.308456,41.47523699906],[-71.30783,41.47526299906],[-71.307978,41.47683099906],[-71.308021,41.47727599906],[-71.308342,41.47830099906],[-71.30841,41.47852499906],[-71.308433,41.47861499906],[-71.308457,41.47870199906],[-71.308479,41.47877599906],[-71.308502,41.47889699906],[-71.308509,41.47906299906],[-71.308501,41.48010799906],[-71.308509,41.48098199906],[-71.308494,41.48177499906],[-71.308486,41.48208599906],[-71.308486,41.48213999906],[-71.308509,41.48330999906],[-71.308502,41.48364799906],[-71.308502,41.48378299906],[-71.308532,41.48397599906],[-71.30855,41.48409099906],[-71.308609,41.48446099906],[-71.308708,41.48509799906],[-71.308723,41.48520199906],[-71.30883,41.48580299906],[-71.310035,41.48607199906],[-71.31031,41.48613299906],[-71.310516,41.48618299906],[-71.311409,41.48639099906],[-71.312187,41.48656399906],[-71.312927,41.48671599906],[-71.312957,41.48598999906],[-71.312988,41.48551199906],[-71.312995,41.48544899906],[-71.313033,41.48517799906],[-71.313079,41.48491999906],[-71.313087,41.48475399906]]]}}"}, +{"type": "blockgroup", "typeId": 408003, "areaId": 29348, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.308509,41.47906299906],[-71.308502,41.47889699906],[-71.308479,41.47877599906],[-71.308457,41.47870199906],[-71.308433,41.47861499906],[-71.30841,41.47852499906],[-71.308342,41.47830099906],[-71.308021,41.47727599906],[-71.307978,41.47683099906],[-71.30783,41.47526299906],[-71.306938,41.47532599906],[-71.306099,41.47536499906],[-71.305427,41.47539699906],[-71.305045,41.47541799906],[-71.304763,41.47542799906],[-71.303939,41.47547099906],[-71.303566,41.47548799906],[-71.30339,41.47549999906],[-71.302541,41.47554499906],[-71.301735,41.47558799906],[-71.301681,41.47559299906],[-71.301528,41.47560099906],[-71.30014,41.47566899906],[-71.299763,41.47568899906],[-71.299598,41.47569799906],[-71.297385,41.47580999906],[-71.29708,41.47582599906],[-71.294294,41.47590999906],[-71.294148,41.47650299906],[-71.294004,41.47909299906],[-71.294292,41.48227599906],[-71.294436,41.48389399906],[-71.293644,41.48437999906],[-71.292419,41.48518799906],[-71.2953,41.48620299906],[-71.295379,41.48616499906],[-71.295477,41.48611499906],[-71.295584,41.48606899906],[-71.295793,41.48598599906],[-71.295989,41.48590199906],[-71.296079,41.48585399906],[-71.29616,41.48580399906],[-71.296248,41.48575999906],[-71.296342,41.48571799906],[-71.296524,41.48562899906],[-71.296613,41.48558699906],[-71.296697,41.48554499906],[-71.296773,41.48550299906],[-71.296844,41.48546499906],[-71.296909,41.48542499906],[-71.296964,41.48537999906],[-71.29703,41.48531899906],[-71.29708,41.48526899906],[-71.297122,41.48522199906],[-71.29715,41.48514799906],[-71.297185,41.48509999906],[-71.297224,41.48504999906],[-71.297253,41.48498599906],[-71.297259,41.48491999906],[-71.297252,41.48484899906],[-71.297232,41.48479399906],[-71.297224,41.48473199906],[-71.297228,41.48466499906],[-71.297245,41.48460399906],[-71.29725,41.48454999906],[-71.297262,41.48448599906],[-71.297264,41.48441899906],[-71.297236,41.48430199906],[-71.297217,41.48423699906],[-71.2972,41.48416899906],[-71.297189,41.48410499906],[-71.297173,41.48403999906],[-71.297135,41.48398499906],[-71.297084,41.48393699906],[-71.297028,41.48388599906],[-71.29698,41.48382899906],[-71.296935,41.48376599906],[-71.296902,41.48370299906],[-71.296896,41.48363399906],[-71.296918,41.48357399906],[-71.296957,41.48350999906],[-71.29697,41.48345299906],[-71.296974,41.48338899906],[-71.296939,41.48331299906],[-71.296906,41.48327999906],[-71.296875,41.48322099906],[-71.296858,41.48315799906],[-71.29685,41.48310399906],[-71.296845,41.48304099906],[-71.296861,41.48297699906],[-71.296892,41.48292199906],[-71.296908,41.48285699906],[-71.296898,41.48279199906],[-71.296865,41.48273099906],[-71.296889,41.48268099906],[-71.297332,41.48268699906],[-71.299118,41.48223699906],[-71.299079,41.48201299906],[-71.299034,41.48164899906],[-71.298988,41.48116399906],[-71.298972,41.48100199906],[-71.298957,41.48084899906],[-71.298941,41.48069699906],[-71.298858,41.47987799906],[-71.299713,41.47983899906],[-71.300498,41.47981999906],[-71.300994,41.47980899906],[-71.302177,41.47977599906],[-71.302215,41.48032899906],[-71.30355,41.48029299906],[-71.303879,41.48028699906],[-71.304542,41.48036299906],[-71.305267,41.48047499906],[-71.306457,41.48065799906],[-71.308509,41.48098199906],[-71.308501,41.48010799906],[-71.308509,41.47906299906]]]}}"}, +{"type": "blockgroup", "typeId": 409001, "areaId": 29349, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.318641,41.47462599906],[-71.31855,41.47422299906],[-71.318504,41.47396699906],[-71.318412,41.47348699906],[-71.318328,41.47302499906],[-71.31829,41.47282299906],[-71.318328,41.47210599906],[-71.318336,41.47206599906],[-71.318389,41.47132599906],[-71.317779,41.47130199906],[-71.316901,41.47126099906],[-71.315946,41.47120699906],[-71.315124,41.47116199906],[-71.315216,41.47074999906],[-71.315223,41.47070999906],[-71.314292,41.47049799906],[-71.313614,41.47032399906],[-71.313555,41.47030799906],[-71.313453,41.47028599906],[-71.313193,41.47021799906],[-71.312957,41.47015699906],[-71.312835,41.47010899906],[-71.312721,41.47005799906],[-71.312631,41.47000999906],[-71.312538,41.46996199906],[-71.312225,41.46989699906],[-71.311454,41.46979099906],[-71.31118,41.46975099906],[-71.310936,41.46971399906],[-71.310836,41.46969899906],[-71.310645,41.46968499906],[-71.310569,41.46968199906],[-71.310013,41.46967099906],[-71.309578,41.46965699906],[-71.309372,41.46967499906],[-71.308723,41.46977799906],[-71.307304,41.46999099906],[-71.307212,41.46906099906],[-71.307113,41.46797699906],[-71.307098,41.46777899906],[-71.30706,41.46740199906],[-71.306999,41.46673699906],[-71.306945,41.46611599906],[-71.306907,41.46570299906],[-71.306892,41.46559499906],[-71.306877,41.46542399906],[-71.306823,41.46485299906],[-71.30677,41.46430999906],[-71.306762,41.46424199906],[-71.306747,41.46409799906],[-71.306739,41.46398999906],[-71.306678,41.46334299906],[-71.306602,41.46243499906],[-71.306587,41.46229999906],[-71.306541,41.46179699906],[-71.306472,41.46111799906],[-71.306411,41.46046199906],[-71.306381,41.46019699906],[-71.306343,41.45950899906],[-71.306327,41.45943199906],[-71.306198,41.45834099906],[-71.306152,41.45790899906],[-71.306167,41.45781399906],[-71.306197,41.45747999906],[-71.306213,41.45734999906],[-71.306213,41.45732699906],[-71.306289,41.45666799906],[-71.306358,41.45609899906],[-71.306426,41.45548499906],[-71.306938,41.45553799906],[-71.30764,41.45560999906],[-71.308669,41.45571999906],[-71.309005,41.45471299906],[-71.309059,41.45454499906],[-71.309066,41.45452699906],[-71.309219,41.45409199906],[-71.309288,41.45388799906],[-71.310272,41.45252199906],[-71.310615,41.45203699906],[-71.311042,41.45142999906],[-71.311046,41.45119299906],[-71.310696,41.45108599906],[-71.311398,41.45080699906],[-71.313305,41.45067599906],[-71.312652,41.44971699906],[-71.311068,41.44960899906],[-71.309844,41.44982499906],[-71.308909,41.45004099906],[-71.307541,41.45025599906],[-71.306317,41.45025599906],[-71.305093,41.45090399906],[-71.304085,41.45176699906],[-71.302933,41.45182099906],[-71.302574,41.45273799906],[-71.301926,41.45338599906],[-71.301465,41.45459099906],[-71.30135,41.45543599906],[-71.301062,41.45651499906],[-71.300918,41.45797099906],[-71.300126,41.45888899906],[-71.299838,41.46007599906],[-71.299766,41.46120899906],[-71.300702,41.46126199906],[-71.301134,41.46277299906],[-71.300774,41.46439199906],[-71.299262,41.46552499906],[-71.29703,41.46563299906],[-71.295539,41.46643199906],[-71.294727,41.46698099906],[-71.293827,41.46743999906],[-71.293647,41.46757499906],[-71.293431,41.46919299906],[-71.293791,41.47043399906],[-71.294179,41.47188499906],[-71.294583,41.47237599906],[-71.294295,41.47323999906],[-71.294362,41.47439499906],[-71.294724,41.47477599906],[-71.294294,41.47590999906],[-71.29708,41.47582599906],[-71.297385,41.47580999906],[-71.299598,41.47569799906],[-71.299763,41.47568899906],[-71.30014,41.47566899906],[-71.301528,41.47560099906],[-71.301681,41.47559299906],[-71.301735,41.47558799906],[-71.302541,41.47554499906],[-71.30339,41.47549999906],[-71.303566,41.47548799906],[-71.303939,41.47547099906],[-71.304763,41.47542799906],[-71.305045,41.47541799906],[-71.305427,41.47539699906],[-71.306099,41.47536499906],[-71.306938,41.47532599906],[-71.30783,41.47526299906],[-71.308456,41.47523699906],[-71.308967,41.47521299906],[-71.309921,41.47517099906],[-71.309951,41.47517099906],[-71.310554,41.47514099906],[-71.31079,41.47512199906],[-71.311889,41.47506899906],[-71.313888,41.47496499906],[-71.31607,41.47484899906],[-71.316757,41.47478599906],[-71.317642,41.47470499906],[-71.318282,41.47465499906],[-71.318641,41.47462599906]]]}}"}, +{"type": "blockgroup", "typeId": 409002, "areaId": 29350, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.36798,41.46154599906],[-71.367624,41.46099899906],[-71.367152,41.46002899906],[-71.366604,41.45889999906],[-71.365577,41.45782199906],[-71.364208,41.45710399906],[-71.36277,41.45628299906],[-71.362496,41.45510299906],[-71.362085,41.45294799906],[-71.362085,41.45171699906],[-71.362058,41.45056099906],[-71.361949,41.44966399906],[-71.361743,41.44913799906],[-71.361264,41.44838099906],[-71.360511,41.44725199906],[-71.359553,41.44643099906],[-71.357773,41.44612399906],[-71.35613,41.44643099906],[-71.353976,41.44718099906],[-71.352981,41.44745799906],[-71.351885,41.44771399906],[-71.349489,41.44802199906],[-71.347983,41.44873999906],[-71.34723,41.44966399906],[-71.345656,41.45033099906],[-71.344423,41.45104899906],[-71.342712,41.45104899906],[-71.341617,41.45058699906],[-71.340316,41.45033099906],[-71.340247,41.44961299906],[-71.339635,41.44820799906],[-71.339152,41.44779099906],[-71.338262,41.44727799906],[-71.337303,41.44712399906],[-71.336139,41.44748299906],[-71.33566,41.44702099906],[-71.33388,41.44732899906],[-71.33258,41.44840699906],[-71.332064,41.44939399906],[-71.332236,41.45000799906],[-71.332265,41.45048299906],[-71.332725,41.45110899906],[-71.333187,41.45138899906],[-71.332981,41.45157499906],[-71.332511,41.45150799906],[-71.331671,41.45155699906],[-71.3307,41.45165399906],[-71.329924,41.45223499906],[-71.329472,41.45218699906],[-71.329278,41.45155699906],[-71.328954,41.45044199906],[-71.327273,41.45015099906],[-71.325462,41.45044199906],[-71.324427,41.45107199906],[-71.323779,41.45215299906],[-71.322099,41.45330199906],[-71.322034,41.45485299906],[-71.323134,41.45582199906],[-71.325009,41.45582199906],[-71.32488,41.45698599906],[-71.323586,41.45800399906],[-71.32184,41.45737299906],[-71.321258,41.45630699906],[-71.319501,41.45538599906],[-71.319141,41.45495499906],[-71.318907,41.45469799906],[-71.318835,41.45395599906],[-71.318079,41.45341699906],[-71.316856,41.45324199906],[-71.315812,41.45369999906],[-71.315254,41.45402399906],[-71.314894,41.45429399906],[-71.314552,41.45467099906],[-71.314534,41.45512999906],[-71.314246,41.45550799906],[-71.313436,41.45550799906],[-71.312771,41.45521099906],[-71.312825,41.45471199906],[-71.313131,41.45375399906],[-71.31376,41.45297199906],[-71.314138,41.45206799906],[-71.314229,41.45144599906],[-71.313804,41.45103899906],[-71.313755,41.45100299906],[-71.313305,41.45067599906],[-71.311398,41.45080699906],[-71.310696,41.45108599906],[-71.311046,41.45119299906],[-71.311042,41.45142999906],[-71.310615,41.45203699906],[-71.310272,41.45252199906],[-71.309288,41.45388799906],[-71.309219,41.45409199906],[-71.309066,41.45452699906],[-71.309059,41.45454499906],[-71.309005,41.45471299906],[-71.308669,41.45571999906],[-71.30764,41.45560999906],[-71.306938,41.45553799906],[-71.306426,41.45548499906],[-71.306358,41.45609899906],[-71.306289,41.45666799906],[-71.306213,41.45732699906],[-71.306213,41.45734999906],[-71.306197,41.45747999906],[-71.306167,41.45781399906],[-71.306152,41.45790899906],[-71.306198,41.45834099906],[-71.306327,41.45943199906],[-71.306343,41.45950899906],[-71.306381,41.46019699906],[-71.306411,41.46046199906],[-71.306472,41.46111799906],[-71.306541,41.46179699906],[-71.306587,41.46229999906],[-71.306602,41.46243499906],[-71.306678,41.46334299906],[-71.306739,41.46398999906],[-71.306747,41.46409799906],[-71.306762,41.46424199906],[-71.30677,41.46430999906],[-71.306823,41.46485299906],[-71.306877,41.46542399906],[-71.306892,41.46559499906],[-71.306907,41.46570299906],[-71.306945,41.46611599906],[-71.306999,41.46673699906],[-71.30706,41.46740199906],[-71.307098,41.46777899906],[-71.307113,41.46797699906],[-71.307212,41.46906099906],[-71.307304,41.46999099906],[-71.308723,41.46977799906],[-71.309372,41.46967499906],[-71.309578,41.46965699906],[-71.310013,41.46967099906],[-71.310569,41.46968199906],[-71.310645,41.46968499906],[-71.310836,41.46969899906],[-71.310936,41.46971399906],[-71.31118,41.46975099906],[-71.311454,41.46979099906],[-71.312225,41.46989699906],[-71.312538,41.46996199906],[-71.312631,41.47000999906],[-71.312721,41.47005799906],[-71.312835,41.47010899906],[-71.312957,41.47015699906],[-71.313193,41.47021799906],[-71.313453,41.47028599906],[-71.313555,41.47030799906],[-71.313614,41.47032399906],[-71.314292,41.47049799906],[-71.315223,41.47070999906],[-71.315216,41.47074999906],[-71.315124,41.47116199906],[-71.315946,41.47120699906],[-71.316901,41.47126099906],[-71.317779,41.47130199906],[-71.318389,41.47132599906],[-71.318336,41.47206599906],[-71.318328,41.47210599906],[-71.31829,41.47282299906],[-71.318328,41.47302499906],[-71.318412,41.47348699906],[-71.318504,41.47396699906],[-71.31855,41.47422299906],[-71.318641,41.47462599906],[-71.319015,41.47642899906],[-71.319739,41.47633499906],[-71.319961,41.47630699906],[-71.32048,41.47623799906],[-71.321624,41.47609699906],[-71.322342,41.47598399906],[-71.323127,41.47585099906],[-71.323394,41.47581399906],[-71.323539,41.47579299906],[-71.323692,41.47576299906],[-71.323814,41.47572399906],[-71.323951,41.47565399906],[-71.324127,41.47555999906],[-71.324203,41.47552299906],[-71.324516,41.47534499906],[-71.324852,41.47516699906],[-71.324991,41.47508999906],[-71.325044,41.47518999906],[-71.326368,41.47882899906],[-71.326923,41.47863899906],[-71.329128,41.47779099906],[-71.333032,41.47381099906],[-71.332375,41.47514399906],[-71.331807,41.47708999906],[-71.331644,41.47879199906],[-71.332943,41.48073799906],[-71.333606,41.48184899906],[-71.333399,41.48265499906],[-71.334632,41.48419499906],[-71.337303,41.48445099906],[-71.339799,41.48379699906],[-71.341065,41.48278499906],[-71.342229,41.48119399906],[-71.343118,41.47950099906],[-71.345994,41.47708899906],[-71.350103,41.47344599906],[-71.352226,41.47298399906],[-71.355102,41.47206099906],[-71.357635,41.47093199906],[-71.359279,41.46857199906],[-71.361059,41.46836599906],[-71.363456,41.46795599906],[-71.365373,41.46698099906],[-71.366537,41.46523599906],[-71.367838,41.46308099906],[-71.36798,41.46154599906]]]}}"}, +{"type": "blockgroup", "typeId": 410001, "areaId": 29351, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.321161,41.48602799906],[-71.320602,41.48547599906],[-71.32031,41.48484499906],[-71.320072,41.48405499906],[-71.319725,41.48337699906],[-71.320256,41.48311799906],[-71.320255,41.48251899906],[-71.319571,41.48251599906],[-71.316717,41.48245999906],[-71.316291,41.48248499906],[-71.316208,41.48248799906],[-71.316032,41.48236199906],[-71.315605,41.48236599906],[-71.31549,41.48237699906],[-71.315406,41.48238299906],[-71.315231,41.48241399906],[-71.315101,41.48243399906],[-71.315002,41.48247699906],[-71.314933,41.48250999906],[-71.314849,41.48253399906],[-71.314773,41.48254899906],[-71.314651,41.48256499906],[-71.314537,41.48257199906],[-71.314575,41.48301199906],[-71.314585,41.48312699906],[-71.314613,41.48341199906],[-71.312896,41.48344299906],[-71.312957,41.48381099906],[-71.31298,41.48400799906],[-71.312996,41.48413999906],[-71.313011,41.48425999906],[-71.313026,41.48435399906],[-71.313029,41.48437199906],[-71.313049,41.48447999906],[-71.313072,41.48463699906],[-71.313079,41.48472199906],[-71.313087,41.48475399906],[-71.313079,41.48491999906],[-71.313033,41.48517799906],[-71.312995,41.48544899906],[-71.312988,41.48551199906],[-71.312957,41.48598999906],[-71.312927,41.48671599906],[-71.312889,41.48715799906],[-71.312866,41.48747799906],[-71.312858,41.48800999906],[-71.312873,41.48820299906],[-71.312881,41.48836499906],[-71.312888,41.48850899906],[-71.312888,41.48866599906],[-71.312645,41.48961699906],[-71.312553,41.48994799906],[-71.31253,41.48998399906],[-71.312408,41.49025699906],[-71.312377,41.49031599906],[-71.31221,41.49068899906],[-71.312141,41.49084799906],[-71.312103,41.49094699906],[-71.311905,41.49143799906],[-71.311866,41.49156499906],[-71.311729,41.49180599906],[-71.311927,41.49163099906],[-71.312072,41.49156899906],[-71.31221,41.49153499906],[-71.312393,41.49149999906],[-71.312873,41.49139599906],[-71.312949,41.49138099906],[-71.313567,41.49125099906],[-71.313766,41.49120699906],[-71.314521,41.49103799906],[-71.314567,41.49103299906],[-71.314918,41.49094899906],[-71.315322,41.49086499906],[-71.315246,41.49005599906],[-71.315238,41.49001099906],[-71.315459,41.48995199906],[-71.315725,41.48987499906],[-71.316427,41.48981499906],[-71.316932,41.48976899906],[-71.317069,41.48974399906],[-71.317317,41.48959499906],[-71.317415,41.48953599906],[-71.317626,41.48950399906],[-71.318712,41.48850999906],[-71.318708,41.48849699906],[-71.318993,41.48845699906],[-71.321161,41.48602799906]]]}}"}, +{"type": "blockgroup", "typeId": 410002, "areaId": 29352, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.326368,41.47882899906],[-71.325044,41.47518999906],[-71.324991,41.47508999906],[-71.324852,41.47516699906],[-71.324516,41.47534499906],[-71.324203,41.47552299906],[-71.324127,41.47555999906],[-71.323951,41.47565399906],[-71.323814,41.47572399906],[-71.323692,41.47576299906],[-71.323539,41.47579299906],[-71.323394,41.47581399906],[-71.323127,41.47585099906],[-71.322342,41.47598399906],[-71.321624,41.47609699906],[-71.32048,41.47623799906],[-71.319961,41.47630699906],[-71.319739,41.47633499906],[-71.319015,41.47642899906],[-71.318641,41.47462599906],[-71.318282,41.47465499906],[-71.317642,41.47470499906],[-71.316757,41.47478599906],[-71.31607,41.47484899906],[-71.313888,41.47496499906],[-71.311889,41.47506899906],[-71.31079,41.47512199906],[-71.310997,41.47579799906],[-71.311203,41.47647799906],[-71.311256,41.47667599906],[-71.311424,41.47723999906],[-71.311561,41.47771899906],[-71.311706,41.47823799906],[-71.311851,41.47876199906],[-71.311958,41.47916099906],[-71.311988,41.47925899906],[-71.312126,41.47973399906],[-71.312225,41.48010099906],[-71.312339,41.48048599906],[-71.312438,41.48085299906],[-71.312522,41.48113999906],[-71.312545,41.48121099906],[-71.312599,41.48139499906],[-71.312645,41.48166399906],[-71.312728,41.48217099906],[-71.312744,41.48228399906],[-71.312789,41.48257999906],[-71.312797,41.48265399906],[-71.312851,41.48310099906],[-71.312889,41.48336199906],[-71.312896,41.48344299906],[-71.314613,41.48341199906],[-71.314585,41.48312699906],[-71.314575,41.48301199906],[-71.314537,41.48257199906],[-71.314651,41.48256499906],[-71.314773,41.48254899906],[-71.314849,41.48253399906],[-71.314933,41.48250999906],[-71.315002,41.48247699906],[-71.315101,41.48243399906],[-71.315231,41.48241399906],[-71.315406,41.48238299906],[-71.31549,41.48237699906],[-71.315605,41.48236599906],[-71.316032,41.48236199906],[-71.316208,41.48248799906],[-71.316291,41.48248499906],[-71.316717,41.48245999906],[-71.319571,41.48251599906],[-71.320255,41.48251899906],[-71.32015,41.48112799906],[-71.32007,41.48011299906],[-71.320734,41.47999399906],[-71.322541,41.47963599906],[-71.323656,41.47961599906],[-71.325144,41.47927699906],[-71.326368,41.47882899906]]]}}"}, +{"type": "blockgroup", "typeId": 411001, "areaId": 29353, "json": "{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.345222,41.49650599906],[-71.345242,41.49717599906],[-71.344107,41.49896699906],[-71.342761,41.50023499906],[-71.340281,41.50103799906],[-71.33859,41.50050299906],[-71.337763,41.49868799906],[-71.336185,41.49675999906],[-71.335979,41.49500099906],[-71.337519,41.49324199906],[-71.340901,41.49229899906],[-71.341258,41.49234199906],[-71.342705,41.49267899906],[-71.344377,41.49325599906],[-71.345467,41.49477599906],[-71.345222,41.49650599906]]]]}"}, +{"type": "blockgroup", "typeId": 411002, "areaId": 29354, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.324214,41.49429899906],[-71.321557,41.49457699906],[-71.321447,41.49458899906],[-71.321075,41.49458099906],[-71.319847,41.49466399906],[-71.318992,41.49472699906],[-71.318099,41.49479399906],[-71.318023,41.49481399906],[-71.317977,41.49484199906],[-71.317723,41.49483099906],[-71.317772,41.49535199906],[-71.317781,41.49545599906],[-71.317825,41.49591599906],[-71.317839,41.49609799906],[-71.317882,41.49667299906],[-71.317893,41.49682899906],[-71.317911,41.49701699906],[-71.317938,41.49728999906],[-71.31797,41.49762099906],[-71.317973,41.49765299906],[-71.317976,41.49769099906],[-71.317985,41.49777799906],[-71.318004,41.49797999906],[-71.318014,41.49809099906],[-71.318061,41.49858199906],[-71.31807,41.49864599906],[-71.318077,41.49869399906],[-71.318084,41.49881599906],[-71.318104,41.49901799906],[-71.318145,41.49943099906],[-71.318244,41.49983499906],[-71.318311,41.50018399906],[-71.318321,41.50023399906],[-71.318344,41.50043599906],[-71.318347,41.50047699906],[-71.318361,41.50064699906],[-71.318369,41.50074199906],[-71.318374,41.50079599906],[-71.318405,41.50106099906],[-71.318443,41.50148799906],[-71.318456,41.50158199906],[-71.318466,41.50165899906],[-71.318481,41.50187899906],[-71.318511,41.50215799906],[-71.318527,41.50264399906],[-71.318504,41.50292799906],[-71.318473,41.50335599906],[-71.318473,41.50369399906],[-71.318503,41.50401099906],[-71.318527,41.50426899906],[-71.318611,41.50511899906],[-71.318628,41.50533599906],[-71.318733,41.50659299906],[-71.318748,41.50675999906],[-71.318751,41.50681999906],[-71.318782,41.50681399906],[-71.31903,41.50677199906],[-71.319534,41.50668499906],[-71.319625,41.50667399906],[-71.320015,41.50661299906],[-71.320316,41.50656899906],[-71.320343,41.50656499906],[-71.320411,41.50655599906],[-71.32051,41.50654399906],[-71.320495,41.50640199906],[-71.320457,41.50605899906],[-71.320442,41.50586499906],[-71.320388,41.50542499906],[-71.320366,41.50521199906],[-71.32035,41.50505699906],[-71.320221,41.50402799906],[-71.320167,41.50360999906],[-71.320091,41.50299499906],[-71.319999,41.50227199906],[-71.319976,41.50209199906],[-71.319951,41.50183299906],[-71.319946,41.50177699906],[-71.319931,41.50154799906],[-71.3199,41.50121499906],[-71.319839,41.50080099906],[-71.319786,41.50043399906],[-71.320359,41.50038999906],[-71.32077,41.50035999906],[-71.321258,41.50033699906],[-71.321373,41.50032599906],[-71.321762,41.50029499906],[-71.321845,41.50029299906],[-71.321902,41.50027599906],[-71.322071,41.50026099906],[-71.322068,41.50023099906],[-71.322055,41.50015199906],[-71.322042,41.50007599906],[-71.321985,41.49986899906],[-71.321948,41.49972899906],[-71.322025,41.49968699906],[-71.322056,41.49966199906],[-71.322068,41.49961899906],[-71.322051,41.49952899906],[-71.322045,41.49949299906],[-71.322364,41.49944499906],[-71.322639,41.49943099906],[-71.32318,41.49941499906],[-71.323425,41.49942299906],[-71.323662,41.49926399906],[-71.324214,41.49429899906]]]}}"}, +{"type": "blockgroup", "typeId": 411003, "areaId": 29355, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.332407,41.48673699906],[-71.332115,41.48460799906],[-71.331929,41.48301599906],[-71.330308,41.48148299906],[-71.329113,41.48078699906],[-71.327891,41.48022999906],[-71.327061,41.48009499906],[-71.326843,41.48013399906],[-71.325823,41.48013099906],[-71.325033,41.48058099906],[-71.324228,41.48123199906],[-71.32347,41.48192999906],[-71.323154,41.48253399906],[-71.323075,41.48274699906],[-71.323059,41.48327899906],[-71.323028,41.48403799906],[-71.323201,41.48448699906],[-71.323075,41.48529099906],[-71.32309,41.48574099906],[-71.322874,41.48621499906],[-71.322408,41.48621299906],[-71.321744,41.48603399906],[-71.321161,41.48602799906],[-71.318993,41.48845699906],[-71.318708,41.48849699906],[-71.318712,41.48850999906],[-71.317626,41.48950399906],[-71.317415,41.48953599906],[-71.317317,41.48959499906],[-71.317069,41.48974399906],[-71.316932,41.48976899906],[-71.316427,41.48981499906],[-71.315725,41.48987499906],[-71.315459,41.48995199906],[-71.315238,41.49001099906],[-71.315246,41.49005599906],[-71.315322,41.49086499906],[-71.315368,41.49151699906],[-71.315401,41.49200799906],[-71.315408,41.49210099906],[-71.315414,41.49215099906],[-71.31546,41.49238399906],[-71.315467,41.49240599906],[-71.315512,41.49288499906],[-71.315582,41.49364699906],[-71.315597,41.49379499906],[-71.315658,41.49386199906],[-71.316101,41.49429799906],[-71.316627,41.49482799906],[-71.316642,41.49485899906],[-71.317723,41.49483099906],[-71.317977,41.49484199906],[-71.318023,41.49481399906],[-71.318099,41.49479399906],[-71.318992,41.49472699906],[-71.319847,41.49466399906],[-71.321075,41.49458099906],[-71.321447,41.49458899906],[-71.321557,41.49457699906],[-71.324214,41.49429899906],[-71.324279,41.49369599906],[-71.325225,41.49435799906],[-71.326741,41.49528099906],[-71.329964,41.49438199906],[-71.331702,41.49248899906],[-71.331544,41.49066599906],[-71.331982,41.48856799906],[-71.332407,41.48673699906]]]}}"}, +{"type": "blockgroup", "typeId": 412001, "areaId": 29356, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.335592,41.51958299906],[-71.333784,41.51639899906],[-71.332426,41.51549799906],[-71.333975,41.51333999906],[-71.334121,41.51180799906],[-71.335574,41.50863599906],[-71.335258,41.50579599906],[-71.332794,41.50390299906],[-71.331466,41.50238799906],[-71.328432,41.50153599906],[-71.324893,41.50077899906],[-71.324041,41.50015699906],[-71.324003,41.49952399906],[-71.323992,41.49945999906],[-71.323905,41.49944999906],[-71.323715,41.49943599906],[-71.323539,41.49942599906],[-71.323425,41.49942299906],[-71.32318,41.49941499906],[-71.322639,41.49943099906],[-71.322364,41.49944499906],[-71.322045,41.49949299906],[-71.322051,41.49952899906],[-71.322068,41.49961899906],[-71.322056,41.49966199906],[-71.322025,41.49968699906],[-71.321948,41.49972899906],[-71.321985,41.49986899906],[-71.322042,41.50007599906],[-71.322055,41.50015199906],[-71.322068,41.50023099906],[-71.322071,41.50026099906],[-71.321902,41.50027599906],[-71.321845,41.50029299906],[-71.321762,41.50029499906],[-71.321373,41.50032599906],[-71.321258,41.50033699906],[-71.32077,41.50035999906],[-71.320359,41.50038999906],[-71.319786,41.50043399906],[-71.319839,41.50080099906],[-71.3199,41.50121499906],[-71.319931,41.50154799906],[-71.319946,41.50177699906],[-71.319951,41.50183299906],[-71.319976,41.50209199906],[-71.319999,41.50227199906],[-71.320091,41.50299499906],[-71.320167,41.50360999906],[-71.320221,41.50402799906],[-71.32035,41.50505699906],[-71.320366,41.50521199906],[-71.320388,41.50542499906],[-71.320442,41.50586499906],[-71.320457,41.50605899906],[-71.320495,41.50640199906],[-71.32051,41.50654399906],[-71.320411,41.50655599906],[-71.320343,41.50656499906],[-71.320316,41.50656899906],[-71.320015,41.50661299906],[-71.319625,41.50667399906],[-71.319534,41.50668499906],[-71.31903,41.50677199906],[-71.318782,41.50681399906],[-71.318751,41.50681999906],[-71.318756,41.50690399906],[-71.318779,41.50711499906],[-71.318855,41.50804999906],[-71.318962,41.50920999906],[-71.318987,41.50964099906],[-71.319015,41.50984399906],[-71.319099,41.51079199906],[-71.319152,41.51145299906],[-71.31916,41.51185799906],[-71.319168,41.51207899906],[-71.319145,41.51234499906],[-71.319107,41.51268299906],[-71.319038,41.51308999906],[-71.318916,41.51358799906],[-71.318656,41.51424599906],[-71.318374,41.51482399906],[-71.318039,41.51536599906],[-71.317588,41.51597399906],[-71.317138,41.51647899906],[-71.317085,41.51652899906],[-71.317027,41.51657999906],[-71.316947,41.51664899906],[-71.316406,41.51714599906],[-71.315582,41.51788799906],[-71.314636,41.51871299906],[-71.313827,41.51945899906],[-71.313751,41.51951899906],[-71.313606,41.51964399906],[-71.31353,41.51970799906],[-71.313125,41.52007199906],[-71.312576,41.52055099906],[-71.312237,41.52085299906],[-71.312369,41.52102999906],[-71.31264,41.52138999906],[-71.313114,41.52202199906],[-71.317507,41.52456899906],[-71.318384,41.52544399906],[-71.320069,41.52555299906],[-71.322196,41.52650799906],[-71.325279,41.52674699906],[-71.329319,41.52610999906],[-71.330701,41.52324399906],[-71.332827,41.52165199906],[-71.335592,41.51958299906]]]}}"}, +{"type": "blockgroup", "typeId": 413001, "areaId": 29357, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.395352,41.52394899906],[-71.395174,41.52086999906],[-71.395084,41.51805899906],[-71.394637,41.51518099906],[-71.392939,41.51310499906],[-71.389542,41.51056199906],[-71.386771,41.50848699906],[-71.384178,41.50634499906],[-71.382333,41.50521599906],[-71.380904,41.50514499906],[-71.380347,41.50520299906],[-71.379381,41.50543599906],[-71.378936,41.50564499906],[-71.378864,41.50567699906],[-71.378646,41.50577999906],[-71.378321,41.50593099906],[-71.377975,41.50611799906],[-71.377557,41.50633399906],[-71.377308,41.50643399906],[-71.37705,41.50649399906],[-71.376787,41.50654799906],[-71.376546,41.50656899906],[-71.37618,41.50657699906],[-71.375824,41.50661099906],[-71.375583,41.50666799906],[-71.375233,41.50679699906],[-71.37502,41.50690499906],[-71.374928,41.50693899906],[-71.374855,41.50694299906],[-71.374748,41.50691899906],[-71.374748,41.50700599906],[-71.374763,41.50802999906],[-71.374774,41.50897399906],[-71.374808,41.51222499906],[-71.374839,41.51396799906],[-71.374847,41.51439099906],[-71.374878,41.51537699906],[-71.3749,41.51669999906],[-71.374908,41.51803799906],[-71.374923,41.51904599906],[-71.374923,41.52030699906],[-71.374916,41.52118499906],[-71.374916,41.52389199906],[-71.37492,41.52405799906],[-71.374923,41.52417099906],[-71.374939,41.52504799906],[-71.374946,41.52572399906],[-71.374946,41.52643099906],[-71.374954,41.52651599906],[-71.374946,41.52684999906],[-71.374923,41.52754799906],[-71.374915,41.52798999906],[-71.374909,41.52818199906],[-71.374897,41.52865499906],[-71.374885,41.52911099906],[-71.374885,41.52922399906],[-71.374862,41.53006199906],[-71.374847,41.53033299906],[-71.374847,41.53199399906],[-71.374853,41.53247599906],[-71.374855,41.53260199906],[-71.374847,41.53319699906],[-71.374847,41.53324499906],[-71.374854,41.53374999906],[-71.374862,41.53385399906],[-71.374862,41.53425499906],[-71.37487,41.53462399906],[-71.374877,41.53571299906],[-71.374885,41.53591999906],[-71.3749,41.53670399906],[-71.3749,41.53749599906],[-71.375442,41.53746699906],[-71.37564,41.53746299906],[-71.375961,41.53745199906],[-71.376426,41.53743299906],[-71.37651,41.53743099906],[-71.376808,41.53742099906],[-71.377815,41.53738199906],[-71.378219,41.53735999906],[-71.378913,41.53733699906],[-71.379966,41.53729699906],[-71.380813,41.53725199906],[-71.381042,41.53724699906],[-71.382095,41.53720299906],[-71.382965,41.53717599906],[-71.383226,41.53716499906],[-71.383614,41.53714999906],[-71.384231,41.53711799906],[-71.384277,41.53711699906],[-71.384933,41.53708999906],[-71.38552,41.53707399906],[-71.385826,41.53706299906],[-71.386017,41.53704999906],[-71.386722,41.53719199906],[-71.388972,41.53706799906],[-71.390239,41.53627999906],[-71.391156,41.53526299906],[-71.39182,41.53339299906],[-71.392262,41.53190199906],[-71.392863,41.53036399906],[-71.393622,41.52799699906],[-71.393983,41.52697399906],[-71.394011,41.52689499906],[-71.394036,41.52686299906],[-71.394059,41.52683199906],[-71.394157,41.52670899906],[-71.394905,41.52575699906],[-71.395352,41.52394899906]]]}}"}, +{"type": "blockgroup", "typeId": 413002, "areaId": 29358, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.388972,41.53706799906],[-71.386722,41.53719199906],[-71.386017,41.53704999906],[-71.385826,41.53706299906],[-71.38552,41.53707399906],[-71.384933,41.53708999906],[-71.384277,41.53711699906],[-71.384231,41.53711799906],[-71.383614,41.53714999906],[-71.383226,41.53716499906],[-71.382965,41.53717599906],[-71.382095,41.53720299906],[-71.381042,41.53724699906],[-71.380813,41.53725199906],[-71.379966,41.53729699906],[-71.378913,41.53733699906],[-71.378219,41.53735999906],[-71.377815,41.53738199906],[-71.376808,41.53742099906],[-71.37651,41.53743099906],[-71.376426,41.53743299906],[-71.375961,41.53745199906],[-71.37564,41.53746299906],[-71.375442,41.53746699906],[-71.3749,41.53749599906],[-71.3749,41.53804599906],[-71.374916,41.53858099906],[-71.374916,41.53993199906],[-71.37492,41.54002799906],[-71.374948,41.54094099906],[-71.374969,41.54161999906],[-71.375,41.54381999906],[-71.375007,41.54424899906],[-71.375007,41.54689699906],[-71.375013,41.54738799906],[-71.375035,41.54912799906],[-71.375015,41.54983699906],[-71.375015,41.55217899906],[-71.375023,41.55360199906],[-71.37503,41.55432699906],[-71.37503,41.55484899906],[-71.375061,41.55634299906],[-71.375076,41.55768899906],[-71.375091,41.55862999906],[-71.375106,41.55980099906],[-71.375114,41.56036399906],[-71.375122,41.56075099906],[-71.375129,41.56102099906],[-71.37516,41.56206699906],[-71.375176,41.56246099906],[-71.375182,41.56263199906],[-71.375183,41.56273099906],[-71.375175,41.56283499906],[-71.375175,41.56293399906],[-71.375173,41.56295999906],[-71.375167,41.56304199906],[-71.375137,41.56325399906],[-71.375114,41.56335799906],[-71.375084,41.56346199906],[-71.375007,41.56366699906],[-71.375002,41.56367699906],[-71.374961,41.56376699906],[-71.374908,41.56386199906],[-71.374847,41.56393999906],[-71.374786,41.56402199906],[-71.374717,41.56409599906],[-71.374649,41.56415999906],[-71.374631,41.56417499906],[-71.374572,41.56422099906],[-71.374496,41.56427599906],[-71.374412,41.56432699906],[-71.374336,41.56437899906],[-71.374252,41.56442099906],[-71.374183,41.56446299906],[-71.374172,41.56446899906],[-71.374107,41.56450499906],[-71.374038,41.56454199906],[-71.373954,41.56458499906],[-71.373878,41.56461799906],[-71.373725,41.56467899906],[-71.373649,41.56469899906],[-71.373581,41.56472299906],[-71.373423,41.56476599906],[-71.373375,41.56477699906],[-71.373329,41.56478199906],[-71.373283,41.56478299906],[-71.373199,41.56479399906],[-71.372726,41.56480399906],[-71.37268,41.56544799906],[-71.372611,41.56612499906],[-71.372579,41.56648299906],[-71.372543,41.56689199906],[-71.372489,41.56744999906],[-71.372459,41.56775899906],[-71.372383,41.56856199906],[-71.372321,41.56930199906],[-71.372297,41.56952099906],[-71.37223,41.57010999906],[-71.372161,41.57087199906],[-71.372135,41.57105199906],[-71.372131,41.57107999906],[-71.372123,41.57110699906],[-71.372117,41.57121299906],[-71.372093,41.57166599906],[-71.372047,41.57221199906],[-71.371986,41.57269499906],[-71.371971,41.57291099906],[-71.371971,41.57305099906],[-71.371955,41.57311899906],[-71.37191,41.57317399906],[-71.371879,41.57319199906],[-71.371844,41.57321399906],[-71.371786,41.57360999906],[-71.371799,41.57468299906],[-71.373194,41.57444499906],[-71.375215,41.57372799906],[-71.377449,41.57221599906],[-71.378938,41.56950899906],[-71.38064,41.56791699906],[-71.381704,41.56560899906],[-71.3833,41.56306099906],[-71.3833,41.56019599906],[-71.384257,41.56011599906],[-71.386385,41.55916099906],[-71.387555,41.55724999906],[-71.387555,41.55613599906],[-71.388087,41.55287199906],[-71.387874,41.55048399906],[-71.387768,41.54889199906],[-71.388831,41.54761799906],[-71.388831,41.54610599906],[-71.388406,41.54459299906],[-71.388831,41.54355899906],[-71.388619,41.54268299906],[-71.388725,41.54109099906],[-71.388087,41.53981699906],[-71.388725,41.53806599906],[-71.388972,41.53706799906]]]}}"}, +{"type": "blockgroup", "typeId": 413003, "areaId": 29359, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.375183,41.56273099906],[-71.375182,41.56263199906],[-71.375176,41.56246099906],[-71.37516,41.56206699906],[-71.375129,41.56102099906],[-71.375122,41.56075099906],[-71.375114,41.56036399906],[-71.375106,41.55980099906],[-71.375091,41.55862999906],[-71.375076,41.55768899906],[-71.375061,41.55634299906],[-71.37503,41.55484899906],[-71.37503,41.55432699906],[-71.375023,41.55360199906],[-71.375015,41.55217899906],[-71.375015,41.54983699906],[-71.375035,41.54912799906],[-71.375013,41.54738799906],[-71.375007,41.54689699906],[-71.375007,41.54424899906],[-71.375,41.54381999906],[-71.374969,41.54161999906],[-71.374948,41.54094099906],[-71.37492,41.54002799906],[-71.374916,41.53993199906],[-71.374916,41.53858099906],[-71.3749,41.53804599906],[-71.3749,41.53670399906],[-71.374885,41.53591999906],[-71.374877,41.53571299906],[-71.37487,41.53462399906],[-71.374862,41.53425499906],[-71.374862,41.53385399906],[-71.374854,41.53374999906],[-71.374847,41.53324499906],[-71.374847,41.53319699906],[-71.374855,41.53260199906],[-71.374853,41.53247599906],[-71.374847,41.53199399906],[-71.374847,41.53033299906],[-71.374862,41.53006199906],[-71.374885,41.52922399906],[-71.374885,41.52911099906],[-71.374897,41.52865499906],[-71.374909,41.52818199906],[-71.374915,41.52798999906],[-71.374923,41.52754799906],[-71.374946,41.52684999906],[-71.374954,41.52651599906],[-71.374946,41.52643099906],[-71.374946,41.52572399906],[-71.374939,41.52504799906],[-71.374923,41.52417099906],[-71.37492,41.52405799906],[-71.374916,41.52389199906],[-71.374916,41.52118499906],[-71.374923,41.52030699906],[-71.374923,41.51904599906],[-71.374908,41.51803799906],[-71.3749,41.51669999906],[-71.374878,41.51537699906],[-71.374847,41.51439099906],[-71.374839,41.51396799906],[-71.374534,41.51397399906],[-71.373886,41.51399699906],[-71.373153,41.51401599906],[-71.372337,41.51403299906],[-71.371757,41.51407199906],[-71.371055,41.51409999906],[-71.370109,41.51412899906],[-71.369087,41.51414999906],[-71.368354,41.51417399906],[-71.367828,41.51417599906],[-71.367408,41.51418399906],[-71.367408,41.51416199906],[-71.367052,41.51427199906],[-71.366981,41.51429399906],[-71.366772,41.51435899906],[-71.366722,41.51432499906],[-71.366548,41.51421099906],[-71.366401,41.51411499906],[-71.36634,41.51407299906],[-71.366093,41.51396199906],[-71.365431,41.51390399906],[-71.36326,41.51400799906],[-71.36305,41.51486499906],[-71.36188,41.51653499906],[-71.359541,41.51979999906],[-71.357626,41.52568999906],[-71.357945,41.52879399906],[-71.360704,41.53647699906],[-71.360758,41.53666799906],[-71.361662,41.53989999906],[-71.358577,41.54459699906],[-71.356662,41.54857699906],[-71.356024,41.55279599906],[-71.3573,41.55828799906],[-71.359321,41.56425899906],[-71.360173,41.56752199906],[-71.360492,41.57006999906],[-71.362087,41.57269699906],[-71.364428,41.57404999906],[-71.367194,41.57428899906],[-71.370066,41.57484599906],[-71.371799,41.57468299906],[-71.371786,41.57360999906],[-71.371844,41.57321399906],[-71.371879,41.57319199906],[-71.37191,41.57317399906],[-71.371955,41.57311899906],[-71.371971,41.57305099906],[-71.371971,41.57291099906],[-71.371986,41.57269499906],[-71.372047,41.57221199906],[-71.372093,41.57166599906],[-71.372117,41.57121299906],[-71.372123,41.57110699906],[-71.372131,41.57107999906],[-71.372135,41.57105199906],[-71.372161,41.57087199906],[-71.37223,41.57010999906],[-71.372297,41.56952099906],[-71.372321,41.56930199906],[-71.372383,41.56856199906],[-71.372459,41.56775899906],[-71.372489,41.56744999906],[-71.372543,41.56689199906],[-71.372579,41.56648299906],[-71.372611,41.56612499906],[-71.37268,41.56544799906],[-71.372726,41.56480399906],[-71.373199,41.56479399906],[-71.373283,41.56478299906],[-71.373329,41.56478199906],[-71.373375,41.56477699906],[-71.373423,41.56476599906],[-71.373581,41.56472299906],[-71.373649,41.56469899906],[-71.373725,41.56467899906],[-71.373878,41.56461799906],[-71.373954,41.56458499906],[-71.374038,41.56454199906],[-71.374107,41.56450499906],[-71.374172,41.56446899906],[-71.374183,41.56446299906],[-71.374252,41.56442099906],[-71.374336,41.56437899906],[-71.374412,41.56432699906],[-71.374496,41.56427599906],[-71.374572,41.56422099906],[-71.374631,41.56417499906],[-71.374649,41.56415999906],[-71.374717,41.56409599906],[-71.374786,41.56402199906],[-71.374847,41.56393999906],[-71.374908,41.56386199906],[-71.374961,41.56376699906],[-71.375002,41.56367699906],[-71.375007,41.56366699906],[-71.375084,41.56346199906],[-71.375114,41.56335799906],[-71.375137,41.56325399906],[-71.375167,41.56304199906],[-71.375173,41.56295999906],[-71.375175,41.56293399906],[-71.375175,41.56283499906],[-71.375183,41.56273099906]]],[[[-71.350901,41.53645899906],[-71.350157,41.53367199906],[-71.350263,41.53112499906],[-71.350263,41.52945299906],[-71.348456,41.52770199906],[-71.344628,41.52674699906],[-71.340967,41.52682099906],[-71.338434,41.52927999906],[-71.337818,41.53578699906],[-71.341925,41.54224199906],[-71.343356,41.54291799906],[-71.344628,41.54298599906],[-71.349094,41.54195099906],[-71.350901,41.53868699906],[-71.350901,41.53645899906]]]]}}"}, +{"type": "blockgroup", "typeId": 413004, "areaId": 29360, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.389099,41.49610099906],[-71.388862,41.49585399906],[-71.385867,41.49600399906],[-71.385696,41.49597299906],[-71.385047,41.49599599906],[-71.384712,41.49601599906],[-71.384033,41.49601199906],[-71.383499,41.49601899906],[-71.382621,41.49601899906],[-71.382385,41.49601999906],[-71.381828,41.49602699906],[-71.380866,41.49604199906],[-71.380256,41.49605499906],[-71.379371,41.49606799906],[-71.377906,41.49609899906],[-71.377876,41.49609899906],[-71.37651,41.49612299906],[-71.376381,41.49612599906],[-71.37635,41.49612199906],[-71.375348,41.49613699906],[-71.375033,41.49614099906],[-71.374641,41.49614799906],[-71.374092,41.49615599906],[-71.373161,41.49616999906],[-71.372108,41.49620099906],[-71.37133,41.49622099906],[-71.371284,41.49622699906],[-71.370384,41.49624499906],[-71.369186,41.49627399906],[-71.368118,41.49630499906],[-71.367187,41.49631099906],[-71.367212,41.49616899906],[-71.366881,41.49554099906],[-71.366349,41.49515999906],[-71.366212,41.49505599906],[-71.365826,41.49493699906],[-71.365225,41.49487099906],[-71.36433,41.49487899906],[-71.362322,41.49502099906],[-71.361914,41.49815599906],[-71.357936,41.49997999906],[-71.353796,41.50356799906],[-71.353268,41.50588799906],[-71.353252,41.50595299906],[-71.353237,41.50601799906],[-71.353178,41.50628299906],[-71.353644,41.50813299906],[-71.354965,41.51050699906],[-71.358312,41.51274899906],[-71.360646,41.51307899906],[-71.362583,41.51334299906],[-71.362978,41.51402199906],[-71.36326,41.51400799906],[-71.365431,41.51390399906],[-71.366093,41.51396199906],[-71.36634,41.51407299906],[-71.366401,41.51411499906],[-71.366548,41.51421099906],[-71.366722,41.51432499906],[-71.366772,41.51435899906],[-71.366981,41.51429399906],[-71.367052,41.51427199906],[-71.367408,41.51416199906],[-71.367408,41.51418399906],[-71.367828,41.51417599906],[-71.368354,41.51417399906],[-71.369087,41.51414999906],[-71.370109,41.51412899906],[-71.371055,41.51409999906],[-71.371757,41.51407199906],[-71.372337,41.51403299906],[-71.373153,41.51401599906],[-71.373886,41.51399699906],[-71.374534,41.51397399906],[-71.374839,41.51396799906],[-71.374808,41.51222499906],[-71.374774,41.50897399906],[-71.374763,41.50802999906],[-71.374748,41.50700599906],[-71.374748,41.50691899906],[-71.374855,41.50694299906],[-71.374928,41.50693899906],[-71.37502,41.50690499906],[-71.375233,41.50679699906],[-71.375583,41.50666799906],[-71.375824,41.50661099906],[-71.37618,41.50657699906],[-71.376546,41.50656899906],[-71.376787,41.50654799906],[-71.37705,41.50649399906],[-71.377308,41.50643399906],[-71.377557,41.50633399906],[-71.377975,41.50611799906],[-71.378321,41.50593099906],[-71.378646,41.50577999906],[-71.378864,41.50567699906],[-71.378936,41.50564499906],[-71.379381,41.50543599906],[-71.380347,41.50520299906],[-71.380904,41.50514499906],[-71.382333,41.50521599906],[-71.382483,41.50493899906],[-71.384181,41.50393499906],[-71.38579,41.50212799906],[-71.387131,41.50058799906],[-71.387309,41.49891499906],[-71.388561,41.49717399906],[-71.389099,41.49610099906]]]}}"}, +{"type": "blockgroup", "typeId": 413005, "areaId": 29361, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.407891,41.49960499906],[-71.407679,41.49634199906],[-71.406616,41.49419199906],[-71.404491,41.49363499906],[-71.403048,41.49344699906],[-71.403417,41.49300899906],[-71.40404,41.49248699906],[-71.404384,41.49037099906],[-71.404384,41.48846099906],[-71.402897,41.48718699906],[-71.401728,41.48607299906],[-71.40194,41.48432199906],[-71.401303,41.48193299906],[-71.400665,41.47922699906],[-71.401196,41.47675899906],[-71.401303,41.47397299906],[-71.400983,41.47229999906],[-71.399922,41.47043099906],[-71.39886,41.46828199906],[-71.399922,41.46732599906],[-71.403321,41.46382399906],[-71.405021,41.45976399906],[-71.405234,41.45586299906],[-71.40534,41.45156499906],[-71.405963,41.44889899906],[-71.405802,41.44829899906],[-71.404423,41.44653599906],[-71.402557,41.44550199906],[-71.400286,41.44519799906],[-71.398095,41.44519799906],[-71.396311,41.44641399906],[-71.394769,41.44885499906],[-71.391524,41.45066999906],[-71.387631,41.45279799906],[-71.385927,41.45535199906],[-71.385684,41.45930399906],[-71.385765,41.46185799906],[-71.383656,41.46185799906],[-71.38106,41.46197899906],[-71.379599,41.46270899906],[-71.379019,41.46383599906],[-71.377814,41.46644799906],[-71.377083,41.46912399906],[-71.377489,41.47173799906],[-71.375217,41.47161599906],[-71.372539,41.47173799906],[-71.368644,41.47319699906],[-71.368563,41.47508199906],[-71.366615,41.47410899906],[-71.364019,41.47404799906],[-71.36199,41.47441299906],[-71.360367,41.47459599906],[-71.357689,41.47480799906],[-71.354362,41.47535499906],[-71.352414,41.47736199906],[-71.351197,41.47900299906],[-71.35006,41.48094899906],[-71.350385,41.48228699906],[-71.351521,41.48331999906],[-71.353388,41.48374599906],[-71.355579,41.48398899906],[-71.356066,41.48459699906],[-71.356147,41.48563099906],[-71.356553,41.48666399906],[-71.356796,41.48769799906],[-71.357608,41.48848799906],[-71.358013,41.48879399906],[-71.359316,41.49085999906],[-71.36167,41.49383899906],[-71.362322,41.49502099906],[-71.36433,41.49487899906],[-71.365225,41.49487099906],[-71.365826,41.49493699906],[-71.366212,41.49505599906],[-71.366349,41.49515999906],[-71.366881,41.49554099906],[-71.367212,41.49616899906],[-71.367187,41.49631099906],[-71.368118,41.49630499906],[-71.369186,41.49627399906],[-71.370384,41.49624499906],[-71.371284,41.49622699906],[-71.37133,41.49622099906],[-71.372108,41.49620099906],[-71.373161,41.49616999906],[-71.374092,41.49615599906],[-71.374641,41.49614799906],[-71.375033,41.49614099906],[-71.375348,41.49613699906],[-71.37635,41.49612199906],[-71.376381,41.49612599906],[-71.37651,41.49612299906],[-71.377876,41.49609899906],[-71.377906,41.49609899906],[-71.379371,41.49606799906],[-71.380256,41.49605499906],[-71.380866,41.49604199906],[-71.381828,41.49602699906],[-71.382385,41.49601999906],[-71.382621,41.49601899906],[-71.383499,41.49601899906],[-71.384033,41.49601199906],[-71.384712,41.49601599906],[-71.385047,41.49599599906],[-71.385696,41.49597299906],[-71.385867,41.49600399906],[-71.388862,41.49585399906],[-71.388725,41.49571399906],[-71.388144,41.49515099906],[-71.387926,41.49486799906],[-71.389097,41.49479799906],[-71.390795,41.49459699906],[-71.393834,41.49459699906],[-71.39437,41.49580199906],[-71.394817,41.49667199906],[-71.395504,41.49715599906],[-71.396161,41.49712299906],[-71.397409,41.49620399906],[-71.398392,41.49613699906],[-71.400895,41.49566799906],[-71.402117,41.49488699906],[-71.40183,41.49534399906],[-71.401169,41.49621999906],[-71.401252,41.49727499906],[-71.400626,41.49821199906],[-71.399375,41.49827899906],[-71.398481,41.49894799906],[-71.396158,41.50021999906],[-71.393834,41.50162599906],[-71.393744,41.50296399906],[-71.393834,41.50457099906],[-71.394459,41.50644499906],[-71.395612,41.50826899906],[-71.397062,41.50866899906],[-71.399157,41.50905999906],[-71.402897,41.50891899906],[-71.405341,41.50708799906],[-71.407572,41.50549599906],[-71.407254,41.50334699906],[-71.407891,41.49960499906]]]}}"}, +{"type": "blockgroup", "typeId": 414001, "areaId": 29362, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.214618,41.54486099906],[-71.21209,41.54370099906],[-71.208294,41.54163499906],[-71.207834,41.53982599906],[-71.208754,41.53750099906],[-71.209904,41.53517699906],[-71.209789,41.53353999906],[-71.210939,41.53138799906],[-71.211054,41.52932099906],[-71.211054,41.52716799906],[-71.209913,41.52527699906],[-71.209444,41.52449899906],[-71.207834,41.52243199906],[-71.207604,41.52070999906],[-71.207719,41.51890199906],[-71.207489,41.51743799906],[-71.205304,41.51649099906],[-71.203924,41.51511299906],[-71.205074,41.51321899906],[-71.206339,41.51046299906],[-71.207029,41.50710499906],[-71.207949,41.50477999906],[-71.208869,41.50167999906],[-71.209099,41.49918299906],[-71.207834,41.49737399906],[-71.205764,41.49720199906],[-71.202467,41.49594199906],[-71.202701,41.49589899906],[-71.20271,41.49357299906],[-71.202459,41.49065599906],[-71.200072,41.48811499906],[-71.197685,41.48576199906],[-71.194922,41.48350399906],[-71.195173,41.48086899906],[-71.19467,41.47879799906],[-71.19756,41.47540999906],[-71.197811,41.47249299906],[-71.197936,41.46976399906],[-71.200826,41.46722299906],[-71.202082,41.46421199906],[-71.202082,41.46129399906],[-71.200826,41.45865899906],[-71.200379,41.45798899906],[-71.200198,41.45771799906],[-71.199472,41.45619799906],[-71.198031,41.45502699906],[-71.197677,41.45473999906],[-71.195283,41.45339499906],[-71.190496,41.45445999906],[-71.18698,41.45614199906],[-71.183838,41.45782399906],[-71.180397,41.45776799906],[-71.176283,41.45771099906],[-71.173216,41.45838399906],[-71.170074,41.45838399906],[-71.169319,41.45839099906],[-71.164713,41.46080899906],[-71.165759,41.46436399906],[-71.166288,41.46824799906],[-71.16449,41.46959599906],[-71.161209,41.46959599906],[-71.158987,41.47165799906],[-71.158352,41.47387699906],[-71.15412,41.47387699906],[-71.150734,41.47371899906],[-71.146395,41.47363999906],[-71.145337,41.47514599906],[-71.141528,41.47562199906],[-71.14047,41.47736599906],[-71.141845,41.47887199906],[-71.138882,41.47855499906],[-71.135708,41.48148799906],[-71.13465,41.48394599906],[-71.136343,41.48775199906],[-71.13666,41.48989199906],[-71.133486,41.49195399906],[-71.13094,41.49374599906],[-71.132494,41.49385299906],[-71.13386,41.49408599906],[-71.134341,41.49421099906],[-71.134752,41.49468499906],[-71.134794,41.49522399906],[-71.134902,41.49535199906],[-71.134987,41.49545799906],[-71.13507,41.49546999906],[-71.135154,41.49547299906],[-71.1352,41.49546299906],[-71.135261,41.49541299906],[-71.13533,41.49538899906],[-71.135452,41.49531499906],[-71.135543,41.49527699906],[-71.135635,41.49523499906],[-71.135719,41.49519299906],[-71.13578,41.49514199906],[-71.135826,41.49508699906],[-71.135894,41.49505399906],[-71.135955,41.49504399906],[-71.136001,41.49498899906],[-71.136077,41.49498299906],[-71.136131,41.49494599906],[-71.136199,41.49490399906],[-71.136238,41.49484099906],[-71.136322,41.49479899906],[-71.136398,41.49476599906],[-71.136467,41.49471899906],[-71.13652,41.49467299906],[-71.136749,41.49452099906],[-71.136886,41.49447299906],[-71.13697,41.49443499906],[-71.137054,41.49438899906],[-71.13713,41.49433799906],[-71.137206,41.49429099906],[-71.13729,41.49424899906],[-71.137367,41.49422499906],[-71.137428,41.49419299906],[-71.137443,41.49416099906],[-71.137519,41.49413199906],[-71.137596,41.49409899906],[-71.137664,41.49404399906],[-71.137809,41.49397399906],[-71.138061,41.49383399906],[-71.138152,41.49379199906],[-71.138237,41.49375399906],[-71.138305,41.49372099906],[-71.138366,41.49369299906],[-71.138424,41.49367799906],[-71.138809,41.49345499906],[-71.139114,41.49339999906],[-71.13975,41.49321199906],[-71.140747,41.49291499906],[-71.141004,41.49284199906],[-71.141944,41.49257699906],[-71.142723,41.49235599906],[-71.143249,41.49219699906],[-71.144027,41.49197099906],[-71.145065,41.49168199906],[-71.145111,41.49167199906],[-71.145156,41.49166599906],[-71.145202,41.49165699906],[-71.145271,41.49165499906],[-71.145339,41.49166799906],[-71.145401,41.49168399906],[-71.145431,41.49169299906],[-71.145462,41.49170599906],[-71.145507,41.49173199906],[-71.145545,41.49175799906],[-71.145729,41.49189399906],[-71.146514,41.49253699906],[-71.147132,41.49304399906],[-71.147377,41.49324199906],[-71.147437,41.49329499906],[-71.147712,41.49352799906],[-71.148552,41.49424599906],[-71.148818,41.49447099906],[-71.149009,41.49463399906],[-71.150299,41.49577599906],[-71.151367,41.49673799906],[-71.151649,41.49697599906],[-71.152328,41.49759799906],[-71.153091,41.49829099906],[-71.153709,41.49885099906],[-71.154304,41.49937199906],[-71.154167,41.49943699906],[-71.154006,41.49951699906],[-71.15393,41.49955899906],[-71.153861,41.49960099906],[-71.153808,41.49964699906],[-71.153762,41.49969299906],[-71.153755,41.49972899906],[-71.153739,41.49980099906],[-71.153755,41.49988199906],[-71.153793,41.49998499906],[-71.154144,41.50077099906],[-71.154266,41.50102099906],[-71.154907,41.50230599906],[-71.155403,41.50333199906],[-71.155494,41.50350099906],[-71.15557,41.50364899906],[-71.155654,41.50380899906],[-71.15599,41.50442399906],[-71.156578,41.50546699906],[-71.156852,41.50593499906],[-71.157279,41.50668799906],[-71.15744,41.50695999906],[-71.158279,41.50838899906],[-71.158416,41.50862999906],[-71.158996,41.50959199906],[-71.159263,41.51004599906],[-71.159362,41.51022899906],[-71.159454,41.51040699906],[-71.159545,41.51058599906],[-71.159645,41.51080899906],[-71.159683,41.51092999906],[-71.159713,41.51100999906],[-71.159729,41.51103699906],[-71.15982,41.51126499906],[-71.160018,41.51167599906],[-71.160133,41.51188099906],[-71.160392,41.51227199906],[-71.160537,41.51246299906],[-71.160667,41.51259999906],[-71.160804,41.51273699906],[-71.160934,41.51287399906],[-71.160964,41.51290099906],[-71.161033,41.51293599906],[-71.161071,41.51294799906],[-71.161155,41.51295599906],[-71.161377,41.51295199906],[-71.161445,41.51294099906],[-71.161613,41.51290699906],[-71.161766,41.51287199906],[-71.161911,41.51285099906],[-71.162818,41.51273099906],[-71.164039,41.51258199906],[-71.16439,41.51253499906],[-71.164901,41.51247099906],[-71.165023,41.51243699906],[-71.165145,41.51240799906],[-71.165267,41.51237399906],[-71.165344,41.51234599906],[-71.165428,41.51230799906],[-71.165504,41.51226599906],[-71.165573,41.51221499906],[-71.165641,41.51215499906],[-71.165702,41.51209599906],[-71.165771,41.51202199906],[-71.165832,41.51194499906],[-71.165886,41.51186699906],[-71.165924,41.51178099906],[-71.165962,41.51168999906],[-71.165992,41.51160399906],[-71.166015,41.51151799906],[-71.166038,41.51142299906],[-71.166076,41.51134099906],[-71.166137,41.51121399906],[-71.166183,41.51116299906],[-71.166244,41.51111299906],[-71.16632,41.51107099906],[-71.166397,41.51103299906],[-71.166503,41.51100399906],[-71.166603,41.51097999906],[-71.16671,41.51096399906],[-71.167094,41.51092099906],[-71.167526,41.51087199906],[-71.169006,41.51071399906],[-71.171157,41.51048899906],[-71.171157,41.51030399906],[-71.171149,41.51015999906],[-71.171142,41.51006099906],[-71.171478,41.50995099906],[-71.17237,41.50964199906],[-71.173454,41.50925599906],[-71.174301,41.50895699906],[-71.174377,41.50895099906],[-71.174507,41.50892599906],[-71.174553,41.50891099906],[-71.174598,41.50889199906],[-71.174644,41.50886499906],[-71.17469,41.50883199906],[-71.17472,41.50879099906],[-71.174743,41.50874599906],[-71.174758,41.50869099906],[-71.174773,41.50864099906],[-71.174827,41.50822599906],[-71.174842,41.50814899906],[-71.174858,41.50811299906],[-71.174903,41.50803999906],[-71.174934,41.50800799906],[-71.174972,41.50797999906],[-71.175064,41.50793299906],[-71.175125,41.50791399906],[-71.175201,41.50789899906],[-71.175277,41.50788899906],[-71.176025,41.50779799906],[-71.176864,41.50768299906],[-71.177711,41.50757299906],[-71.178588,41.50744299906],[-71.178835,41.50740699906],[-71.179639,41.50729299906],[-71.180755,41.50714999906],[-71.181785,41.50704099906],[-71.182815,41.50692199906],[-71.183898,41.50679299906],[-71.184776,41.50667699906],[-71.185585,41.50658599906],[-71.18575,41.50657899906],[-71.185791,41.50658599906],[-71.185851,41.50660299906],[-71.185905,41.50661999906],[-71.185966,41.50663199906],[-71.186019,41.50665399906],[-71.186126,41.50668799906],[-71.186164,41.50672799906],[-71.186271,41.50682499906],[-71.186332,41.50687299906],[-71.186523,41.50703599906],[-71.186614,41.50711999906],[-71.186844,41.50731399906],[-71.18695,41.50740599906],[-71.18708,41.50751599906],[-71.187324,41.50772799906],[-71.187462,41.50785099906],[-71.187599,41.50796999906],[-71.187736,41.50808499906],[-71.18785,41.50817699906],[-71.187957,41.50826499906],[-71.188064,41.50835799906],[-71.188362,41.50862199906],[-71.188461,41.50869699906],[-71.188553,41.50877199906],[-71.188652,41.50884599906],[-71.188751,41.50892599906],[-71.188857,41.50900499906],[-71.188965,41.50908799906],[-71.189079,41.50916699906],[-71.189193,41.50924999906],[-71.189315,41.50932899906],[-71.189437,41.50941199906],[-71.189499,41.50945599906],[-71.189567,41.50949999906],[-71.189704,41.50958299906],[-71.189956,41.50972699906],[-71.190177,41.50986199906],[-71.190284,41.50992299906],[-71.190383,41.50998899906],[-71.190567,41.51010199906],[-71.190773,41.51021999906],[-71.190879,41.51028599906],[-71.190994,41.51035099906],[-71.191169,41.51045999906],[-71.191253,41.51051699906],[-71.191322,41.51056999906],[-71.191444,41.51067599906],[-71.191497,41.51073799906],[-71.191558,41.51079499906],[-71.191612,41.51086199906],[-71.191642,41.51089699906],[-71.191703,41.51097699906],[-71.191718,41.51100399906],[-71.191749,41.51104799906],[-71.191795,41.51111899906],[-71.191833,41.51119099906],[-71.191871,41.51127099906],[-71.191879,41.51129299906],[-71.192085,41.51177099906],[-71.192146,41.51192299906],[-71.192176,41.51202199906],[-71.192214,41.51210599906],[-71.192275,41.51228099906],[-71.192298,41.51235699906],[-71.192321,41.51242399906],[-71.192336,41.51249599906],[-71.192352,41.51256299906],[-71.192367,41.51263499906],[-71.192382,41.51270199906],[-71.192405,41.51282799906],[-71.192413,41.51286399906],[-71.192428,41.51294899906],[-71.192443,41.51306999906],[-71.192466,41.51319999906],[-71.192481,41.51333099906],[-71.192504,41.51346099906],[-71.19255,41.51374399906],[-71.192581,41.51388299906],[-71.192598,41.51398699906],[-71.192604,41.51401699906],[-71.192626,41.51414799906],[-71.192649,41.51427799906],[-71.19268,41.51440299906],[-71.192695,41.51447099906],[-71.192703,41.51452399906],[-71.192741,41.51464999906],[-71.192764,41.51474799906],[-71.192794,41.51484699906],[-71.192825,41.51494099906],[-71.192863,41.51508899906],[-71.192909,41.51525899906],[-71.192939,41.51538899906],[-71.192985,41.51556399906],[-71.193031,41.51572099906],[-71.193077,41.51590899906],[-71.193168,41.51621799906],[-71.193214,41.51636599906],[-71.193275,41.51658999906],[-71.193298,41.51670199906],[-71.193328,41.51680899906],[-71.193336,41.51686799906],[-71.193374,41.51703299906],[-71.193405,41.51719999906],[-71.193458,41.51745499906],[-71.193504,41.51770699906],[-71.193557,41.51796199906],[-71.193603,41.51820399906],[-71.193626,41.51831199906],[-71.193633,41.51835699906],[-71.193672,41.51854999906],[-71.193694,41.51867599906],[-71.19371,41.51880099906],[-71.193725,41.51892699906],[-71.193755,41.51912899906],[-71.193758,41.51916299906],[-71.193763,41.51922799906],[-71.193763,41.51940799906],[-71.193756,41.51954799906],[-71.19374,41.51968299906],[-71.193733,41.51982299906],[-71.193718,41.51993599906],[-71.193702,41.52016199906],[-71.193649,41.52054499906],[-71.193611,41.52084299906],[-71.193573,41.52108699906],[-71.193542,41.52121399906],[-71.193367,41.52204099906],[-71.193336,41.52219899906],[-71.193321,41.52229399906],[-71.193305,41.52242499906],[-71.193305,41.52246999906],[-71.193298,41.52256499906],[-71.19329,41.52262399906],[-71.193275,41.52286299906],[-71.193275,41.52307899906],[-71.193267,41.52329299906],[-71.193275,41.52373099906],[-71.193275,41.52412499906],[-71.193298,41.52447999906],[-71.193306,41.52450599906],[-71.193374,41.52484699906],[-71.193481,41.52525399906],[-71.193491,41.52528199906],[-71.193596,41.52558099906],[-71.19374,41.52592099906],[-71.193817,41.52609899906],[-71.193855,41.52619799906],[-71.194129,41.52684499906],[-71.194519,41.52758999906],[-71.19474,41.52799099906],[-71.194991,41.52844999906],[-71.195259,41.52895799906],[-71.19551,41.52940399906],[-71.195541,41.52944799906],[-71.195834,41.52991299906],[-71.196264,41.53055799906],[-71.196387,41.53074099906],[-71.196861,41.53142699906],[-71.196912,41.53150299906],[-71.197989,41.53310299906],[-71.198328,41.53371099906],[-71.198565,41.53443199906],[-71.198631,41.53496099906],[-71.198643,41.53546299906],[-71.198596,41.53587199906],[-71.19841,41.53659599906],[-71.198346,41.53694499906],[-71.198244,41.53751199906],[-71.198188,41.53793999906],[-71.198188,41.53825099906],[-71.198211,41.53859299906],[-71.198264,41.53896099906],[-71.198288,41.53904599906],[-71.198387,41.53939599906],[-71.198493,41.53969499906],[-71.198524,41.53978499906],[-71.198676,41.54010599906],[-71.198814,41.54037399906],[-71.198951,41.54059199906],[-71.199058,41.54076499906],[-71.199157,41.54093499906],[-71.199226,41.54110899906],[-71.199264,41.54125199906],[-71.199272,41.54129699906],[-71.199287,41.54134199906],[-71.199295,41.54139099906],[-71.19931,41.54149499906],[-71.199302,41.54175099906],[-71.199294,41.54219299906],[-71.199241,41.54292799906],[-71.199203,41.54362199906],[-71.199157,41.54418999906],[-71.199149,41.54432599906],[-71.199142,41.54458699906],[-71.199096,41.54490299906],[-71.19905,41.54517399906],[-71.198982,41.54537799906],[-71.198875,41.54563699906],[-71.198834,41.54570999906],[-71.19873,41.54589599906],[-71.198627,41.54605599906],[-71.198532,41.54620599906],[-71.198234,41.54661299906],[-71.198165,41.54671299906],[-71.197944,41.54700999906],[-71.197525,41.54758599906],[-71.197135,41.54813299906],[-71.196754,41.54865399906],[-71.196739,41.54867699906],[-71.197948,41.54841699906],[-71.199331,41.54812699906],[-71.199958,41.54796699906],[-71.201369,41.54767699906],[-71.201872,41.54758399906],[-71.20417,41.54710699906],[-71.204326,41.54705099906],[-71.204386,41.54702999906],[-71.204498,41.54700599906],[-71.204582,41.54699599906],[-71.205238,41.54686599906],[-71.205932,41.54669499906],[-71.206215,41.54662199906],[-71.208953,41.54605599906],[-71.210942,41.54561999906],[-71.211174,41.54556299906],[-71.211499,41.54548599906],[-71.211743,41.54544499906],[-71.211991,41.54540299906],[-71.214618,41.54486099906]]]}}"}, +{"type": "blockgroup", "typeId": 414002, "areaId": 29363, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.159866,41.55620699906],[-71.15982,41.55604999906],[-71.159294,41.55491699906],[-71.159217,41.55482799906],[-71.159118,41.55473099906],[-71.158996,41.55461599906],[-71.158843,41.55443899906],[-71.15876,41.55431899906],[-71.158706,41.55419799906],[-71.158691,41.55415799906],[-71.158607,41.55394799906],[-71.158569,41.55383599906],[-71.158485,41.55357599906],[-71.157957,41.55197399906],[-71.157924,41.55187099906],[-71.157944,41.55170299906],[-71.158008,41.55154799906],[-71.158241,41.55114799906],[-71.158691,41.55046999906],[-71.158927,41.55010499906],[-71.158943,41.55006399906],[-71.159202,41.54954099906],[-71.159225,41.54942799906],[-71.15924,41.54938799906],[-71.159263,41.54929299906],[-71.159294,41.54909799906],[-71.159301,41.54889499906],[-71.159286,41.54880999906],[-71.159278,41.54871599906],[-71.159248,41.54856799906],[-71.159217,41.54839699906],[-71.15921,41.54836599906],[-71.158966,41.54769899906],[-71.158683,41.54691699906],[-71.158569,41.54659899906],[-71.158493,41.54640699906],[-71.158317,41.54590999906],[-71.158203,41.54560199906],[-71.15805,41.54516799906],[-71.157997,41.54500199906],[-71.157722,41.54418299906],[-71.1576,41.54384799906],[-71.157463,41.54345399906],[-71.157295,41.54301099906],[-71.157249,41.54288599906],[-71.157066,41.54238099906],[-71.157028,41.54228199906],[-71.156791,41.54167899906],[-71.156532,41.54101299906],[-71.156524,41.54098999906],[-71.156333,41.54049899906],[-71.156196,41.54007299906],[-71.155928,41.53928099906],[-71.155921,41.53925899906],[-71.155906,41.53922799906],[-71.155876,41.53912499906],[-71.155738,41.53879399906],[-71.155673,41.53863099906],[-71.15554,41.53829799906],[-71.15541,41.53794399906],[-71.155402,41.53791799906],[-71.155319,41.53762599906],[-71.155212,41.53720499906],[-71.15509,41.53683799906],[-71.154915,41.53635499906],[-71.154632,41.53555899906],[-71.154388,41.53488799906],[-71.154365,41.53481599906],[-71.154212,41.53438699906],[-71.154106,41.53409199906],[-71.153991,41.53378299906],[-71.153816,41.53333099906],[-71.153602,41.53274499906],[-71.153465,41.53237399906],[-71.153259,41.53181099906],[-71.153083,41.53132299906],[-71.152946,41.53093799906],[-71.152763,41.53036499906],[-71.152473,41.52950199906],[-71.152397,41.52928199906],[-71.152328,41.52906299906],[-71.152198,41.52863299906],[-71.152129,41.52841399906],[-71.152031,41.52810899906],[-71.151718,41.52727799906],[-71.151389,41.52642799906],[-71.151359,41.52634299906],[-71.151207,41.52592699906],[-71.151039,41.52551599906],[-71.150909,41.52518999906],[-71.150642,41.52450099906],[-71.15062,41.52444699906],[-71.150398,41.52388399906],[-71.15018,41.52338899906],[-71.150138,41.52329499906],[-71.150004,41.52292499906],[-71.14994,41.52274499906],[-71.149764,41.52217999906],[-71.149688,41.52192099906],[-71.149596,41.52156199906],[-71.149581,41.52151299906],[-71.149467,41.52106499906],[-71.149375,41.52067499906],[-71.149368,41.52063899906],[-71.149337,41.52036899906],[-71.149246,41.51972699906],[-71.149223,41.51958799906],[-71.149192,41.51938999906],[-71.149147,41.51912999906],[-71.149055,41.51866799906],[-71.148918,41.51789599906],[-71.14875,41.51703899906],[-71.148612,41.51640599906],[-71.148582,41.51625399906],[-71.148475,41.51567899906],[-71.148086,41.51361499906],[-71.147735,41.51166699906],[-71.147483,41.51023999906],[-71.147132,41.50839999906],[-71.146919,41.50741999906],[-71.146667,41.50625599906],[-71.146072,41.50361899906],[-71.146049,41.50350699906],[-71.14573,41.50237299906],[-71.145568,41.50179999906],[-71.145233,41.50068099906],[-71.145233,41.50063099906],[-71.14524,41.50059899906],[-71.14524,41.50058099906],[-71.145256,41.50054499906],[-71.145271,41.50052199906],[-71.145317,41.50048099906],[-71.14534,41.50046299906],[-71.145385,41.50043499906],[-71.145416,41.50042499906],[-71.145439,41.50041599906],[-71.145469,41.50040599906],[-71.145492,41.50039699906],[-71.146255,41.50017499906],[-71.147071,41.49995299906],[-71.147341,41.49987899906],[-71.147926,41.49972099906],[-71.148833,41.49947899906],[-71.148918,41.49946399906],[-71.150764,41.49895199906],[-71.15081,41.49893699906],[-71.151641,41.49872399906],[-71.151939,41.49864599906],[-71.152702,41.49843799906],[-71.152786,41.49841799906],[-71.15287,41.49839399906],[-71.152938,41.49836599906],[-71.153015,41.49833299906],[-71.153091,41.49829099906],[-71.152328,41.49759799906],[-71.151649,41.49697599906],[-71.151367,41.49673799906],[-71.150299,41.49577599906],[-71.149009,41.49463399906],[-71.148818,41.49447099906],[-71.148552,41.49424599906],[-71.147712,41.49352799906],[-71.147437,41.49329499906],[-71.147377,41.49324199906],[-71.147132,41.49304399906],[-71.146514,41.49253699906],[-71.145729,41.49189399906],[-71.145545,41.49175799906],[-71.145507,41.49173199906],[-71.145462,41.49170599906],[-71.145431,41.49169299906],[-71.145401,41.49168399906],[-71.145339,41.49166799906],[-71.145271,41.49165499906],[-71.145202,41.49165699906],[-71.145156,41.49166599906],[-71.145111,41.49167199906],[-71.145065,41.49168199906],[-71.144027,41.49197099906],[-71.143249,41.49219699906],[-71.142723,41.49235599906],[-71.141944,41.49257699906],[-71.141004,41.49284199906],[-71.140747,41.49291499906],[-71.13975,41.49321199906],[-71.139114,41.49339999906],[-71.138809,41.49345499906],[-71.138424,41.49367799906],[-71.138366,41.49369299906],[-71.138305,41.49372099906],[-71.138237,41.49375399906],[-71.138152,41.49379199906],[-71.138061,41.49383399906],[-71.137809,41.49397399906],[-71.137664,41.49404399906],[-71.137596,41.49409899906],[-71.137519,41.49413199906],[-71.137443,41.49416099906],[-71.137428,41.49419299906],[-71.137367,41.49422499906],[-71.13729,41.49424899906],[-71.137206,41.49429099906],[-71.13713,41.49433799906],[-71.137054,41.49438899906],[-71.13697,41.49443499906],[-71.136886,41.49447299906],[-71.136749,41.49452099906],[-71.13652,41.49467299906],[-71.136467,41.49471899906],[-71.136398,41.49476599906],[-71.136322,41.49479899906],[-71.136238,41.49484099906],[-71.136199,41.49490399906],[-71.136131,41.49494599906],[-71.136077,41.49498299906],[-71.136001,41.49498899906],[-71.135955,41.49504399906],[-71.135894,41.49505399906],[-71.135826,41.49508699906],[-71.13578,41.49514199906],[-71.135719,41.49519299906],[-71.135635,41.49523499906],[-71.135543,41.49527699906],[-71.135452,41.49531499906],[-71.13533,41.49538899906],[-71.135261,41.49541299906],[-71.1352,41.49546299906],[-71.135154,41.49547299906],[-71.13507,41.49546999906],[-71.134987,41.49545799906],[-71.134902,41.49535199906],[-71.134794,41.49522399906],[-71.134752,41.49468499906],[-71.134341,41.49421099906],[-71.13386,41.49408599906],[-71.132494,41.49385299906],[-71.13094,41.49374599906],[-71.128724,41.49452999906],[-71.123433,41.49476799906],[-71.119936,41.49507899906],[-71.120059,41.49548399906],[-71.120181,41.49583699906],[-71.120228,41.49614299906],[-71.120351,41.49655699906],[-71.120472,41.49707699906],[-71.120525,41.49732999906],[-71.120552,41.49740099906],[-71.120559,41.49742099906],[-71.12057,41.49744799906],[-71.120547,41.49749299906],[-71.120617,41.49790099906],[-71.120753,41.49960999906],[-71.121203,41.50543499906],[-71.12119,41.50577699906],[-71.121303,41.50672199906],[-71.121288,41.50709199906],[-71.121372,41.50761599906],[-71.121333,41.50770699906],[-71.121336,41.50777699906],[-71.121363,41.50809499906],[-71.12145,41.50863199906],[-71.121469,41.50878299906],[-71.121463,41.50880299906],[-71.121661,41.51135399906],[-71.121687,41.51240599906],[-71.121698,41.51254299906],[-71.121776,41.51350999906],[-71.122228,41.51938899906],[-71.122247,41.51959399906],[-71.122437,41.52207499906],[-71.123683,41.53161999906],[-71.124232,41.53582899906],[-71.125249,41.54360699906],[-71.125822,41.54799499906],[-71.126229,41.55111699906],[-71.126268,41.55141999906],[-71.126647,41.55386499906],[-71.126809,41.55490199906],[-71.127106,41.55729699906],[-71.127111,41.55733099906],[-71.127824,41.56309199906],[-71.127837,41.56320299906],[-71.128982,41.56296599906],[-71.12947,41.56283999906],[-71.131048,41.56248999906],[-71.132579,41.56214999906],[-71.132672,41.56212399906],[-71.133203,41.56200999906],[-71.135147,41.56157599906],[-71.139221,41.56066599906],[-71.140106,41.56047199906],[-71.141391,41.56024999906],[-71.143855,41.55974199906],[-71.149179,41.55866699906],[-71.152458,41.55799599906],[-71.153096,41.55786499906],[-71.15612,41.55724599906],[-71.156212,41.55717999906],[-71.15646,41.55710899906],[-71.157361,41.55690299906],[-71.158186,41.55667999906],[-71.158856,41.55652099906],[-71.159843,41.55630199906],[-71.159866,41.55620699906]]]}}"}, +{"type": "blockgroup", "typeId": 414003, "areaId": 29364, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.19931,41.54149499906],[-71.199295,41.54139099906],[-71.199287,41.54134199906],[-71.199272,41.54129699906],[-71.199264,41.54125199906],[-71.199226,41.54110899906],[-71.199157,41.54093499906],[-71.199058,41.54076499906],[-71.198951,41.54059199906],[-71.198814,41.54037399906],[-71.198676,41.54010599906],[-71.198524,41.53978499906],[-71.198493,41.53969499906],[-71.198387,41.53939599906],[-71.198288,41.53904599906],[-71.198264,41.53896099906],[-71.198211,41.53859299906],[-71.198188,41.53825099906],[-71.198188,41.53793999906],[-71.198244,41.53751199906],[-71.198346,41.53694499906],[-71.19841,41.53659599906],[-71.198596,41.53587199906],[-71.198643,41.53546299906],[-71.198631,41.53496099906],[-71.198565,41.53443199906],[-71.198328,41.53371099906],[-71.197989,41.53310299906],[-71.196912,41.53150299906],[-71.196861,41.53142699906],[-71.196387,41.53074099906],[-71.196264,41.53055799906],[-71.195834,41.52991299906],[-71.195541,41.52944799906],[-71.19551,41.52940399906],[-71.195259,41.52895799906],[-71.194991,41.52844999906],[-71.19474,41.52799099906],[-71.194519,41.52758999906],[-71.194129,41.52684499906],[-71.193855,41.52619799906],[-71.193817,41.52609899906],[-71.19374,41.52592099906],[-71.193596,41.52558099906],[-71.193491,41.52528199906],[-71.193481,41.52525399906],[-71.193374,41.52484699906],[-71.193306,41.52450599906],[-71.193298,41.52447999906],[-71.193275,41.52412499906],[-71.193275,41.52373099906],[-71.193267,41.52329299906],[-71.193275,41.52307899906],[-71.193275,41.52286299906],[-71.19329,41.52262399906],[-71.193298,41.52256499906],[-71.193305,41.52246999906],[-71.193305,41.52242499906],[-71.193321,41.52229399906],[-71.193336,41.52219899906],[-71.193367,41.52204099906],[-71.193542,41.52121399906],[-71.193573,41.52108699906],[-71.193611,41.52084299906],[-71.193649,41.52054499906],[-71.193702,41.52016199906],[-71.193718,41.51993599906],[-71.193733,41.51982299906],[-71.19374,41.51968299906],[-71.193756,41.51954799906],[-71.193763,41.51940799906],[-71.193763,41.51922799906],[-71.193758,41.51916299906],[-71.193755,41.51912899906],[-71.193725,41.51892699906],[-71.19371,41.51880099906],[-71.193694,41.51867599906],[-71.193672,41.51854999906],[-71.193633,41.51835699906],[-71.193626,41.51831199906],[-71.193603,41.51820399906],[-71.193557,41.51796199906],[-71.193504,41.51770699906],[-71.193458,41.51745499906],[-71.193405,41.51719999906],[-71.193374,41.51703299906],[-71.193336,41.51686799906],[-71.193328,41.51680899906],[-71.193298,41.51670199906],[-71.193275,41.51658999906],[-71.193214,41.51636599906],[-71.193168,41.51621799906],[-71.193077,41.51590899906],[-71.193031,41.51572099906],[-71.192985,41.51556399906],[-71.192939,41.51538899906],[-71.192909,41.51525899906],[-71.192863,41.51508899906],[-71.192825,41.51494099906],[-71.192794,41.51484699906],[-71.192764,41.51474799906],[-71.192741,41.51464999906],[-71.192703,41.51452399906],[-71.192695,41.51447099906],[-71.19268,41.51440299906],[-71.192649,41.51427799906],[-71.192626,41.51414799906],[-71.192604,41.51401699906],[-71.192598,41.51398699906],[-71.192581,41.51388299906],[-71.19255,41.51374399906],[-71.192504,41.51346099906],[-71.192481,41.51333099906],[-71.192466,41.51319999906],[-71.192443,41.51306999906],[-71.192428,41.51294899906],[-71.192413,41.51286399906],[-71.192405,41.51282799906],[-71.192382,41.51270199906],[-71.192367,41.51263499906],[-71.192352,41.51256299906],[-71.192336,41.51249599906],[-71.192321,41.51242399906],[-71.192298,41.51235699906],[-71.192275,41.51228099906],[-71.192214,41.51210599906],[-71.192176,41.51202199906],[-71.192146,41.51192299906],[-71.192085,41.51177099906],[-71.191879,41.51129299906],[-71.191871,41.51127099906],[-71.191833,41.51119099906],[-71.191795,41.51111899906],[-71.191749,41.51104799906],[-71.191718,41.51100399906],[-71.191703,41.51097699906],[-71.191642,41.51089699906],[-71.191612,41.51086199906],[-71.191558,41.51079499906],[-71.191497,41.51073799906],[-71.191444,41.51067599906],[-71.191322,41.51056999906],[-71.191253,41.51051699906],[-71.191169,41.51045999906],[-71.190994,41.51035099906],[-71.190879,41.51028599906],[-71.190773,41.51021999906],[-71.190567,41.51010199906],[-71.190383,41.50998899906],[-71.190284,41.50992299906],[-71.190177,41.50986199906],[-71.189956,41.50972699906],[-71.189704,41.50958299906],[-71.189567,41.50949999906],[-71.189499,41.50945599906],[-71.189437,41.50941199906],[-71.189315,41.50932899906],[-71.189193,41.50924999906],[-71.189079,41.50916699906],[-71.188965,41.50908799906],[-71.188857,41.50900499906],[-71.188751,41.50892599906],[-71.188652,41.50884599906],[-71.188553,41.50877199906],[-71.188461,41.50869699906],[-71.188362,41.50862199906],[-71.188064,41.50835799906],[-71.187957,41.50826499906],[-71.18785,41.50817699906],[-71.187736,41.50808499906],[-71.187599,41.50796999906],[-71.187462,41.50785099906],[-71.187324,41.50772799906],[-71.18708,41.50751599906],[-71.18695,41.50740599906],[-71.186844,41.50731399906],[-71.186614,41.50711999906],[-71.186523,41.50703599906],[-71.186332,41.50687299906],[-71.186271,41.50682499906],[-71.186164,41.50672799906],[-71.186126,41.50668799906],[-71.186019,41.50665399906],[-71.185966,41.50663199906],[-71.185905,41.50661999906],[-71.185851,41.50660299906],[-71.185791,41.50658599906],[-71.18575,41.50657899906],[-71.185585,41.50658599906],[-71.184776,41.50667699906],[-71.183898,41.50679299906],[-71.182815,41.50692199906],[-71.181785,41.50704099906],[-71.180755,41.50714999906],[-71.179639,41.50729299906],[-71.178835,41.50740699906],[-71.178588,41.50744299906],[-71.177711,41.50757299906],[-71.176864,41.50768299906],[-71.176025,41.50779799906],[-71.175277,41.50788899906],[-71.175201,41.50789899906],[-71.175125,41.50791399906],[-71.175064,41.50793299906],[-71.174972,41.50797999906],[-71.174934,41.50800799906],[-71.174903,41.50803999906],[-71.174858,41.50811299906],[-71.174842,41.50814899906],[-71.174827,41.50822599906],[-71.174773,41.50864099906],[-71.174758,41.50869099906],[-71.174743,41.50874599906],[-71.17472,41.50879099906],[-71.17469,41.50883199906],[-71.174644,41.50886499906],[-71.174598,41.50889199906],[-71.174553,41.50891099906],[-71.174507,41.50892599906],[-71.174377,41.50895099906],[-71.174301,41.50895699906],[-71.173454,41.50925599906],[-71.17237,41.50964199906],[-71.171478,41.50995099906],[-71.171142,41.51006099906],[-71.171149,41.51015999906],[-71.171157,41.51030399906],[-71.171157,41.51048899906],[-71.169006,41.51071399906],[-71.167526,41.51087199906],[-71.167094,41.51092099906],[-71.16671,41.51096399906],[-71.166603,41.51097999906],[-71.166503,41.51100399906],[-71.166397,41.51103299906],[-71.16632,41.51107099906],[-71.166244,41.51111299906],[-71.166183,41.51116299906],[-71.166137,41.51121399906],[-71.166076,41.51134099906],[-71.166038,41.51142299906],[-71.166015,41.51151799906],[-71.165992,41.51160399906],[-71.165962,41.51168999906],[-71.165924,41.51178099906],[-71.165886,41.51186699906],[-71.165832,41.51194499906],[-71.165771,41.51202199906],[-71.165702,41.51209599906],[-71.165641,41.51215499906],[-71.165573,41.51221499906],[-71.165504,41.51226599906],[-71.165428,41.51230799906],[-71.165344,41.51234599906],[-71.165267,41.51237399906],[-71.165145,41.51240799906],[-71.165023,41.51243699906],[-71.164901,41.51247099906],[-71.16439,41.51253499906],[-71.164039,41.51258199906],[-71.162818,41.51273099906],[-71.161911,41.51285099906],[-71.161766,41.51287199906],[-71.161613,41.51290699906],[-71.161445,41.51294099906],[-71.161377,41.51295199906],[-71.161155,41.51295599906],[-71.161071,41.51294799906],[-71.161033,41.51293599906],[-71.160964,41.51290099906],[-71.160934,41.51287399906],[-71.160804,41.51273699906],[-71.160667,41.51259999906],[-71.160537,41.51246299906],[-71.160392,41.51227199906],[-71.160133,41.51188099906],[-71.160018,41.51167599906],[-71.15982,41.51126499906],[-71.159729,41.51103699906],[-71.159713,41.51100999906],[-71.159683,41.51092999906],[-71.159645,41.51080899906],[-71.159545,41.51058599906],[-71.159454,41.51040699906],[-71.159362,41.51022899906],[-71.159263,41.51004599906],[-71.158996,41.50959199906],[-71.158416,41.50862999906],[-71.158279,41.50838899906],[-71.15744,41.50695999906],[-71.157279,41.50668799906],[-71.156852,41.50593499906],[-71.156578,41.50546699906],[-71.15599,41.50442399906],[-71.155654,41.50380899906],[-71.15557,41.50364899906],[-71.155494,41.50350099906],[-71.155403,41.50333199906],[-71.154907,41.50230599906],[-71.154266,41.50102099906],[-71.154144,41.50077099906],[-71.153793,41.49998499906],[-71.153755,41.49988199906],[-71.153739,41.49980099906],[-71.153755,41.49972899906],[-71.153762,41.49969299906],[-71.153808,41.49964699906],[-71.153861,41.49960099906],[-71.15393,41.49955899906],[-71.154006,41.49951699906],[-71.154167,41.49943699906],[-71.154304,41.49937199906],[-71.153709,41.49885099906],[-71.153091,41.49829099906],[-71.153015,41.49833299906],[-71.152938,41.49836599906],[-71.15287,41.49839399906],[-71.152786,41.49841799906],[-71.152702,41.49843799906],[-71.151939,41.49864599906],[-71.151641,41.49872399906],[-71.15081,41.49893699906],[-71.150764,41.49895199906],[-71.148918,41.49946399906],[-71.148833,41.49947899906],[-71.147926,41.49972099906],[-71.147341,41.49987899906],[-71.147071,41.49995299906],[-71.146255,41.50017499906],[-71.145492,41.50039699906],[-71.145469,41.50040599906],[-71.145439,41.50041599906],[-71.145416,41.50042499906],[-71.145385,41.50043499906],[-71.14534,41.50046299906],[-71.145317,41.50048099906],[-71.145271,41.50052199906],[-71.145256,41.50054499906],[-71.14524,41.50058099906],[-71.14524,41.50059899906],[-71.145233,41.50063099906],[-71.145233,41.50068099906],[-71.145568,41.50179999906],[-71.14573,41.50237299906],[-71.146049,41.50350699906],[-71.146072,41.50361899906],[-71.146667,41.50625599906],[-71.146919,41.50741999906],[-71.147132,41.50839999906],[-71.147483,41.51023999906],[-71.147735,41.51166699906],[-71.148086,41.51361499906],[-71.148475,41.51567899906],[-71.148582,41.51625399906],[-71.148612,41.51640599906],[-71.14875,41.51703899906],[-71.148918,41.51789599906],[-71.149055,41.51866799906],[-71.149147,41.51912999906],[-71.149192,41.51938999906],[-71.149223,41.51958799906],[-71.149246,41.51972699906],[-71.149337,41.52036899906],[-71.149368,41.52063899906],[-71.149375,41.52067499906],[-71.149467,41.52106499906],[-71.149581,41.52151299906],[-71.149596,41.52156199906],[-71.149688,41.52192099906],[-71.149764,41.52217999906],[-71.14994,41.52274499906],[-71.150004,41.52292499906],[-71.150138,41.52329499906],[-71.15018,41.52338899906],[-71.150398,41.52388399906],[-71.15062,41.52444699906],[-71.150642,41.52450099906],[-71.150909,41.52518999906],[-71.151039,41.52551599906],[-71.151207,41.52592699906],[-71.151359,41.52634299906],[-71.151389,41.52642799906],[-71.151718,41.52727799906],[-71.152031,41.52810899906],[-71.152129,41.52841399906],[-71.152198,41.52863299906],[-71.152328,41.52906299906],[-71.152397,41.52928199906],[-71.152473,41.52950199906],[-71.152763,41.53036499906],[-71.152946,41.53093799906],[-71.153083,41.53132299906],[-71.153259,41.53181099906],[-71.153465,41.53237399906],[-71.153602,41.53274499906],[-71.153816,41.53333099906],[-71.153991,41.53378299906],[-71.154106,41.53409199906],[-71.154212,41.53438699906],[-71.154365,41.53481599906],[-71.154388,41.53488799906],[-71.154632,41.53555899906],[-71.154915,41.53635499906],[-71.15509,41.53683799906],[-71.155212,41.53720499906],[-71.155319,41.53762599906],[-71.155402,41.53791799906],[-71.15541,41.53794399906],[-71.15554,41.53829799906],[-71.155673,41.53863099906],[-71.155738,41.53879399906],[-71.155876,41.53912499906],[-71.155906,41.53922799906],[-71.155921,41.53925899906],[-71.155928,41.53928099906],[-71.156196,41.54007299906],[-71.156333,41.54049899906],[-71.156524,41.54098999906],[-71.156532,41.54101299906],[-71.156791,41.54167899906],[-71.157028,41.54228199906],[-71.157066,41.54238099906],[-71.157249,41.54288599906],[-71.157295,41.54301099906],[-71.157463,41.54345399906],[-71.1576,41.54384799906],[-71.157722,41.54418299906],[-71.157997,41.54500199906],[-71.15805,41.54516799906],[-71.158203,41.54560199906],[-71.158317,41.54590999906],[-71.158493,41.54640699906],[-71.158569,41.54659899906],[-71.158683,41.54691699906],[-71.158966,41.54769899906],[-71.15921,41.54836599906],[-71.159217,41.54839699906],[-71.159248,41.54856799906],[-71.159278,41.54871599906],[-71.159286,41.54880999906],[-71.159301,41.54889499906],[-71.159294,41.54909799906],[-71.159263,41.54929299906],[-71.15924,41.54938799906],[-71.159225,41.54942799906],[-71.159202,41.54954099906],[-71.158943,41.55006399906],[-71.158927,41.55010499906],[-71.158691,41.55046999906],[-71.158241,41.55114799906],[-71.158008,41.55154799906],[-71.157944,41.55170299906],[-71.157924,41.55187099906],[-71.157957,41.55197399906],[-71.158485,41.55357599906],[-71.158569,41.55383599906],[-71.158607,41.55394799906],[-71.158691,41.55415799906],[-71.158706,41.55419799906],[-71.15876,41.55431899906],[-71.158843,41.55443899906],[-71.158996,41.55461599906],[-71.159118,41.55473099906],[-71.159217,41.55482799906],[-71.159294,41.55491699906],[-71.15982,41.55604999906],[-71.159866,41.55620699906],[-71.159843,41.55630199906],[-71.165676,41.55515499906],[-71.167544,41.55478899906],[-71.173038,41.55370899906],[-71.174568,41.55340899906],[-71.175582,41.55317299906],[-71.176467,41.55294899906],[-71.177291,41.55276199906],[-71.177785,41.55265599906],[-71.178161,41.55257499906],[-71.178909,41.55242099906],[-71.179694,41.55224399906],[-71.179901,41.55219499906],[-71.180076,41.55215099906],[-71.18013,41.55214999906],[-71.180168,41.55215399906],[-71.180381,41.55216799906],[-71.180465,41.55217099906],[-71.186204,41.55095699906],[-71.186904,41.55078799906],[-71.192054,41.54966699906],[-71.195144,41.54901899906],[-71.196739,41.54867699906],[-71.196754,41.54865399906],[-71.197135,41.54813299906],[-71.197525,41.54758599906],[-71.197944,41.54700999906],[-71.198165,41.54671299906],[-71.198234,41.54661299906],[-71.198532,41.54620599906],[-71.198627,41.54605599906],[-71.19873,41.54589599906],[-71.198834,41.54570999906],[-71.198875,41.54563699906],[-71.198982,41.54537799906],[-71.19905,41.54517399906],[-71.199096,41.54490299906],[-71.199142,41.54458699906],[-71.199149,41.54432599906],[-71.199157,41.54418999906],[-71.199203,41.54362199906],[-71.199241,41.54292799906],[-71.199294,41.54219299906],[-71.199302,41.54175099906],[-71.19931,41.54149499906]]]}}"}, +{"type": "blockgroup", "typeId": 415001, "areaId": 29365, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.614521,41.15887399907],[-71.613505,41.15441199907],[-71.611134,41.15096999907],[-71.605207,41.14791099907],[-71.59928,41.14574399907],[-71.593014,41.14548899907],[-71.588103,41.14625399907],[-71.58353,41.14727399907],[-71.580482,41.14727399907],[-71.575571,41.14740099907],[-71.570829,41.14778399907],[-71.566426,41.14778399907],[-71.559652,41.14944099907],[-71.551693,41.15033299907],[-71.546443,41.15237299907],[-71.543395,41.15683399907],[-71.543734,41.16244299907],[-71.543734,41.16511999907],[-71.546105,41.16715899906],[-71.549492,41.16766899906],[-71.550677,41.16894399906],[-71.552831,41.17503499906],[-71.554622,41.17326299906],[-71.555275,41.17246599906],[-71.555389,41.17248499906],[-71.555496,41.17250799906],[-71.555595,41.17252299906],[-71.555687,41.17251999906],[-71.55584,41.17248499906],[-71.555946,41.17242399906],[-71.556274,41.17229499906],[-71.556402,41.17225299906],[-71.556458,41.17223399906],[-71.556595,41.17219899906],[-71.556643,41.17219199906],[-71.556786,41.17216899906],[-71.556883,41.17215699906],[-71.557075,41.17213399906],[-71.557479,41.17205799906],[-71.557497,41.17207899906],[-71.557556,41.17214599906],[-71.557793,41.17238199906],[-71.557899,41.17250099906],[-71.558179,41.17283999906],[-71.558502,41.17322899906],[-71.558795,41.17360799906],[-71.558983,41.17385099906],[-71.559118,41.17403899906],[-71.559211,41.17416899906],[-71.559227,41.17419099906],[-71.559273,41.17423199906],[-71.559319,41.17425899906],[-71.559372,41.17426299906],[-71.559425,41.17425899906],[-71.559517,41.17422499906],[-71.559987,41.17403199906],[-71.56028,41.17391199906],[-71.560631,41.17377499906],[-71.560738,41.17374399906],[-71.560837,41.17372899906],[-71.56105,41.17370999906],[-71.56131,41.17369499906],[-71.561478,41.17369099906],[-71.561607,41.17369799906],[-71.561726,41.17374399906],[-71.561867,41.17379799906],[-71.561729,41.17415199906],[-71.56163,41.17444999906],[-71.561569,41.17459499906],[-71.561516,41.17475099906],[-71.561508,41.17488099906],[-71.561539,41.17501099906],[-71.561577,41.17514399906],[-71.561905,41.17560199906],[-71.562149,41.17587699906],[-71.562408,41.17620099906],[-71.562622,41.17645299906],[-71.562755,41.17661499906],[-71.562828,41.17670399906],[-71.563164,41.17706299906],[-71.563218,41.17711399906],[-71.563339,41.17723099906],[-71.563835,41.17767699906],[-71.564224,41.17799399906],[-71.56456,41.17827599906],[-71.56501,41.17868399906],[-71.565331,41.17900499906],[-71.566227,41.17882599906],[-71.566242,41.17887899906],[-71.56623,41.17893699906],[-71.56623,41.17900399906],[-71.566259,41.17912799906],[-71.566263,41.17919399906],[-71.566282,41.17931599906],[-71.566299,41.17951499906],[-71.566294,41.17963999906],[-71.566318,41.17970499906],[-71.566368,41.17973899906],[-71.566552,41.17977399906],[-71.566601,41.17981599906],[-71.566628,41.17987999906],[-71.566668,41.18000599906],[-71.56675,41.18018999906],[-71.566869,41.18050399906],[-71.567008,41.18073899906],[-71.567032,41.18080399906],[-71.567098,41.18092399906],[-71.567143,41.18098199906],[-71.567241,41.18108599906],[-71.567355,41.18116299906],[-71.5675,41.18124199906],[-71.567565,41.18126999906],[-71.567648,41.18131199906],[-71.567717,41.18133599906],[-71.56779,41.18134599906],[-71.567862,41.18135099906],[-71.567944,41.18133999906],[-71.568028,41.18131999906],[-71.568125,41.18128599906],[-71.568259,41.18118099906],[-71.568286,41.18117599906],[-71.568617,41.18076099906],[-71.569598,41.18104699906],[-71.569758,41.18122999906],[-71.570181,41.18088399906],[-71.570608,41.18050299906],[-71.571013,41.18013799906],[-71.571312,41.17995099906],[-71.571622,41.18004099906],[-71.571938,41.18015999906],[-71.57222,41.18030699906],[-71.572618,41.18056399906],[-71.577686,41.18706299906],[-71.579267,41.18959999906],[-71.582002,41.19146199906],[-71.585594,41.19348499906],[-71.588061,41.19565599906],[-71.588081,41.19567399906],[-71.58983,41.19730299906],[-71.590694,41.19810799906],[-71.592864,41.20012999906],[-71.594553,41.20117999906],[-71.594707,41.19673299906],[-71.596062,41.18895699906],[-71.601481,41.18500599906],[-71.606562,41.18334799906],[-71.607917,41.17901399906],[-71.611134,41.17225799906],[-71.612658,41.16511999907],[-71.614182,41.16116799907],[-71.614521,41.15887399907]]]}}"}, +{"type": "blockgroup", "typeId": 415002, "areaId": 29366, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.590694,41.19810799906],[-71.58983,41.19730299906],[-71.588081,41.19567399906],[-71.588061,41.19565599906],[-71.585594,41.19348499906],[-71.582002,41.19146199906],[-71.579267,41.18959999906],[-71.577686,41.18706299906],[-71.572618,41.18056399906],[-71.57222,41.18030699906],[-71.571938,41.18015999906],[-71.571622,41.18004099906],[-71.571312,41.17995099906],[-71.571013,41.18013799906],[-71.570608,41.18050299906],[-71.570181,41.18088399906],[-71.569758,41.18122999906],[-71.569598,41.18104699906],[-71.568617,41.18076099906],[-71.568286,41.18117599906],[-71.568259,41.18118099906],[-71.568125,41.18128599906],[-71.568028,41.18131999906],[-71.567944,41.18133999906],[-71.567862,41.18135099906],[-71.56779,41.18134599906],[-71.567717,41.18133599906],[-71.567648,41.18131199906],[-71.567565,41.18126999906],[-71.5675,41.18124199906],[-71.567355,41.18116299906],[-71.567241,41.18108599906],[-71.567143,41.18098199906],[-71.567098,41.18092399906],[-71.567032,41.18080399906],[-71.567008,41.18073899906],[-71.566869,41.18050399906],[-71.56675,41.18018999906],[-71.566668,41.18000599906],[-71.566628,41.17987999906],[-71.566601,41.17981599906],[-71.566552,41.17977399906],[-71.566368,41.17973899906],[-71.566318,41.17970499906],[-71.566294,41.17963999906],[-71.566299,41.17951499906],[-71.566282,41.17931599906],[-71.566263,41.17919399906],[-71.566259,41.17912799906],[-71.56623,41.17900399906],[-71.56623,41.17893699906],[-71.566242,41.17887899906],[-71.566227,41.17882599906],[-71.565331,41.17900499906],[-71.56501,41.17868399906],[-71.56456,41.17827599906],[-71.564224,41.17799399906],[-71.563835,41.17767699906],[-71.563339,41.17723099906],[-71.563218,41.17711399906],[-71.563164,41.17706299906],[-71.562828,41.17670399906],[-71.562755,41.17661499906],[-71.562622,41.17645299906],[-71.562408,41.17620099906],[-71.562149,41.17587699906],[-71.561905,41.17560199906],[-71.561577,41.17514399906],[-71.561539,41.17501099906],[-71.561508,41.17488099906],[-71.561516,41.17475099906],[-71.561569,41.17459499906],[-71.56163,41.17444999906],[-71.561729,41.17415199906],[-71.561867,41.17379799906],[-71.561726,41.17374399906],[-71.561607,41.17369799906],[-71.561478,41.17369099906],[-71.56131,41.17369499906],[-71.56105,41.17370999906],[-71.560837,41.17372899906],[-71.560738,41.17374399906],[-71.560631,41.17377499906],[-71.56028,41.17391199906],[-71.559987,41.17403199906],[-71.559517,41.17422499906],[-71.559425,41.17425899906],[-71.559372,41.17426299906],[-71.559319,41.17425899906],[-71.559273,41.17423199906],[-71.559227,41.17419099906],[-71.559211,41.17416899906],[-71.559118,41.17403899906],[-71.558983,41.17385099906],[-71.558795,41.17360799906],[-71.558502,41.17322899906],[-71.558179,41.17283999906],[-71.557899,41.17250099906],[-71.557793,41.17238199906],[-71.557556,41.17214599906],[-71.557497,41.17207899906],[-71.557479,41.17205799906],[-71.557075,41.17213399906],[-71.556883,41.17215699906],[-71.556786,41.17216899906],[-71.556643,41.17219199906],[-71.556595,41.17219899906],[-71.556458,41.17223399906],[-71.556402,41.17225299906],[-71.556274,41.17229499906],[-71.555946,41.17242399906],[-71.55584,41.17248499906],[-71.555687,41.17251999906],[-71.555595,41.17252299906],[-71.555496,41.17250799906],[-71.555389,41.17248499906],[-71.555275,41.17246599906],[-71.554622,41.17326299906],[-71.552831,41.17503499906],[-71.552407,41.17545599906],[-71.551035,41.17587699906],[-71.551686,41.17837699906],[-71.552533,41.17914199906],[-71.555751,41.17863199906],[-71.55609,41.17697499906],[-71.559648,41.17620999906],[-71.562867,41.17990699906],[-71.564392,41.18538799906],[-71.563714,41.19188899906],[-71.561173,41.19813499906],[-71.558123,41.20170499906],[-71.555582,41.20552899906],[-71.554057,41.20782299906],[-71.553719,41.20998999906],[-71.552533,41.21241199906],[-71.554057,41.21598099906],[-71.557784,41.22044299906],[-71.561173,41.22477699906],[-71.563883,41.22605199906],[-71.56778,41.22617899906],[-71.572354,41.22783599906],[-71.576589,41.23331799906],[-71.5793,41.23331799906],[-71.578622,41.22681699906],[-71.578453,41.21929599906],[-71.578792,41.21215699906],[-71.579978,41.20960799906],[-71.580994,41.20514599906],[-71.583366,41.20285199906],[-71.587432,41.20055699906],[-71.590694,41.19810799906]]]}}"}, +{"type": "blockgroup", "typeId": 416011, "areaId": 29367, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.190261,41.66151699906],[-71.189224,41.66132499906],[-71.188087,41.66112199906],[-71.187126,41.66095499906],[-71.185806,41.66071899906],[-71.184066,41.66041399906],[-71.18399,41.66064999906],[-71.183936,41.66083999906],[-71.182861,41.66065799906],[-71.182189,41.66053099906],[-71.18135,41.66037999906],[-71.181014,41.66032399906],[-71.180793,41.66028799906],[-71.179939,41.66013299906],[-71.179596,41.66055299906],[-71.179458,41.66070899906],[-71.179138,41.66128699906],[-71.178886,41.66164799906],[-71.178405,41.66225599906],[-71.178298,41.66243299906],[-71.17823,41.66256499906],[-71.178123,41.66280999906],[-71.177932,41.66325499906],[-71.177734,41.66366399906],[-71.177551,41.66397399906],[-71.177293,41.66434699906],[-71.177276,41.66437099906],[-71.176742,41.66508799906],[-71.17659,41.66533899906],[-71.176566,41.66537999906],[-71.176421,41.66569799906],[-71.176307,41.66605599906],[-71.1762,41.66648999906],[-71.176132,41.66685199906],[-71.176117,41.66718099906],[-71.176139,41.66751299906],[-71.176124,41.66765299906],[-71.176101,41.66782899906],[-71.176089,41.66810399906],[-71.17612,41.66824799906],[-71.175808,41.67125499906],[-71.175801,41.67128799906],[-71.175784,41.67149299906],[-71.177916,41.67188199906],[-71.178022,41.67190099906],[-71.179821,41.67222999906],[-71.181268,41.67249499906],[-71.181857,41.67260199906],[-71.18221,41.67266699906],[-71.183184,41.67284199906],[-71.183272,41.67285699906],[-71.183652,41.67292499906],[-71.184123,41.67303099906],[-71.184328,41.67306299906],[-71.184467,41.67279699906],[-71.184567,41.67259499906],[-71.184643,41.67238399906],[-71.184674,41.67230799906],[-71.184728,41.67217799906],[-71.184789,41.67201399906],[-71.184844,41.67184899906],[-71.184905,41.67168899906],[-71.184921,41.67162899906],[-71.184974,41.67148899906],[-71.184982,41.67145699906],[-71.185134,41.67099499906],[-71.185218,41.67074499906],[-71.18531,41.67049599906],[-71.185394,41.67025099906],[-71.185501,41.66996599906],[-71.185531,41.66988399906],[-71.185607,41.66968399906],[-71.185722,41.66940699906],[-71.185813,41.66918499906],[-71.18592,41.66890799906],[-71.185989,41.66874899906],[-71.186157,41.66832299906],[-71.186248,41.66810899906],[-71.186317,41.66792799906],[-71.186347,41.66785099906],[-71.186454,41.66759199906],[-71.186569,41.66733799906],[-71.18663,41.66723299906],[-71.186668,41.66715399906],[-71.186683,41.66712399906],[-71.186784,41.66694099906],[-71.186798,41.66691499906],[-71.186813,41.66688299906],[-71.186912,41.66670499906],[-71.187027,41.66650099906],[-71.187099,41.66636999906],[-71.187141,41.66629599906],[-71.187263,41.66609499906],[-71.187431,41.66583099906],[-71.187477,41.66575799906],[-71.187599,41.66559299906],[-71.187675,41.66549699906],[-71.187942,41.66518199906],[-71.188125,41.66498499906],[-71.188369,41.66470999906],[-71.188491,41.66457199906],[-71.188575,41.66448999906],[-71.188659,41.66440199906],[-71.188735,41.66431499906],[-71.188789,41.66425599906],[-71.188842,41.66420099906],[-71.188881,41.66414299906],[-71.188934,41.66406399906],[-71.188972,41.66398699906],[-71.189018,41.66390899906],[-71.189071,41.66381399906],[-71.189196,41.66358599906],[-71.189353,41.66328099906],[-71.189417,41.66315999906],[-71.18955,41.66291199906],[-71.189567,41.66288099906],[-71.189803,41.66241699906],[-71.189888,41.66225399906],[-71.190261,41.66151699906]]]}}"}, +{"type": "blockgroup", "typeId": 416012, "areaId": 29368, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.20787,41.66132299906],[-71.20338,41.66079999906],[-71.202966,41.66078299906],[-71.202217,41.66075199906],[-71.202018,41.66070199906],[-71.201887,41.66066999906],[-71.20185,41.66065999906],[-71.201644,41.66061899906],[-71.201454,41.66059599906],[-71.201339,41.66059399906],[-71.201316,41.66067099906],[-71.201278,41.66078399906],[-71.201248,41.66088799906],[-71.201216,41.66093399906],[-71.201194,41.66096599906],[-71.201133,41.66100299906],[-71.201103,41.66101199906],[-71.201065,41.66102699906],[-71.200988,41.66102799906],[-71.200881,41.66102099906],[-71.200698,41.66099299906],[-71.200423,41.66096699906],[-71.200218,41.66092999906],[-71.199875,41.66085999906],[-71.199844,41.66085599906],[-71.199638,41.66082399906],[-71.199707,41.66063399906],[-71.19976,41.66043899906],[-71.199791,41.66031299906],[-71.19976,41.66025899906],[-71.199706,41.66024199906],[-71.199653,41.66022999906],[-71.198768,41.66006199906],[-71.197723,41.65987899906],[-71.19693,41.65972799906],[-71.196503,41.65964499906],[-71.196319,41.65960899906],[-71.195616,41.65947799906],[-71.194938,41.65935199906],[-71.19481,41.65932599906],[-71.194488,41.65926099906],[-71.193939,41.65915699906],[-71.193473,41.65906899906],[-71.192024,41.65878599906],[-71.191741,41.65925499906],[-71.191688,41.65932799906],[-71.191383,41.65976199906],[-71.191352,41.65980699906],[-71.190933,41.66039199906],[-71.190833,41.66053799906],[-71.19075,41.66064299906],[-71.190696,41.66072999906],[-71.190635,41.66082499906],[-71.190482,41.66108899906],[-71.190353,41.66134899906],[-71.190261,41.66151699906],[-71.189888,41.66225399906],[-71.189803,41.66241699906],[-71.189567,41.66288099906],[-71.18955,41.66291199906],[-71.189417,41.66315999906],[-71.189353,41.66328099906],[-71.189196,41.66358599906],[-71.189071,41.66381399906],[-71.189018,41.66390899906],[-71.188972,41.66398699906],[-71.188934,41.66406399906],[-71.188881,41.66414299906],[-71.188842,41.66420099906],[-71.188789,41.66425599906],[-71.188735,41.66431499906],[-71.188659,41.66440199906],[-71.188575,41.66448999906],[-71.188491,41.66457199906],[-71.188369,41.66470999906],[-71.188125,41.66498499906],[-71.187942,41.66518199906],[-71.187675,41.66549699906],[-71.187599,41.66559299906],[-71.187477,41.66575799906],[-71.187431,41.66583099906],[-71.187263,41.66609499906],[-71.187141,41.66629599906],[-71.187099,41.66636999906],[-71.187027,41.66650099906],[-71.186912,41.66670499906],[-71.186813,41.66688299906],[-71.186798,41.66691499906],[-71.186784,41.66694099906],[-71.186683,41.66712399906],[-71.186668,41.66715399906],[-71.18663,41.66723299906],[-71.186569,41.66733799906],[-71.186454,41.66759199906],[-71.186347,41.66785099906],[-71.186317,41.66792799906],[-71.186248,41.66810899906],[-71.186157,41.66832299906],[-71.185989,41.66874899906],[-71.18592,41.66890799906],[-71.185813,41.66918499906],[-71.185722,41.66940699906],[-71.185607,41.66968399906],[-71.185531,41.66988399906],[-71.185501,41.66996599906],[-71.185394,41.67025099906],[-71.18531,41.67049599906],[-71.185218,41.67074499906],[-71.185134,41.67099499906],[-71.184982,41.67145699906],[-71.184974,41.67148899906],[-71.184921,41.67162899906],[-71.184905,41.67168899906],[-71.184844,41.67184899906],[-71.184789,41.67201399906],[-71.184728,41.67217799906],[-71.184674,41.67230799906],[-71.184643,41.67238399906],[-71.184567,41.67259499906],[-71.184467,41.67279699906],[-71.184328,41.67306299906],[-71.185073,41.67320199906],[-71.185908,41.67336799906],[-71.186077,41.67339799906],[-71.186091,41.67340099906],[-71.186253,41.67342999906],[-71.186853,41.67353799906],[-71.187611,41.67367299906],[-71.187625,41.67367599906],[-71.188388,41.67382499906],[-71.188529,41.67384499906],[-71.188637,41.67385099906],[-71.190381,41.67419899906],[-71.190571,41.67422899906],[-71.190868,41.67426199906],[-71.191134,41.67429699906],[-71.192634,41.67457099906],[-71.192772,41.67459599906],[-71.193697,41.67476499906],[-71.194276,41.67486999906],[-71.194496,41.67490999906],[-71.195479,41.67508999906],[-71.195477,41.67511599906],[-71.195506,41.67514299906],[-71.195594,41.67520099906],[-71.1976,41.67761499906],[-71.198257,41.67840599906],[-71.19971,41.67716299906],[-71.200983,41.67374999906],[-71.201882,41.67039199906],[-71.203305,41.66759499906],[-71.206002,41.66440499906],[-71.20787,41.66132299906]]]}}"}, +{"type": "blockgroup", "typeId": 416021, "areaId": 29369, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.217083,41.62372799906],[-71.216028,41.62373099906],[-71.214668,41.62295199906],[-71.213308,41.62132499906],[-71.21328,41.62009499906],[-71.210392,41.61948299906],[-71.209849,41.61937599906],[-71.209506,41.61922699906],[-71.209221,41.61911999906],[-71.209049,41.61911999906],[-71.208735,41.61892699906],[-71.207992,41.61837199906],[-71.207764,41.61815799906],[-71.20765,41.61790099906],[-71.207364,41.61772999906],[-71.207176,41.61755399906],[-71.206777,41.61777399906],[-71.206458,41.61795399906],[-71.206352,41.61808199906],[-71.206268,41.61821799906],[-71.206192,41.61835899906],[-71.205718,41.61822899906],[-71.204911,41.61799199906],[-71.204842,41.61824599906],[-71.203702,41.61887199906],[-71.203506,41.61935199906],[-71.203336,41.61937399906],[-71.20318,41.61946499906],[-71.203031,41.61953599906],[-71.203002,41.61954599906],[-71.202949,41.61963299906],[-71.202903,41.61967899906],[-71.202888,41.61970199906],[-71.20288,41.61972899906],[-71.202858,41.61978799906],[-71.202834,41.61984699906],[-71.202827,41.61991499906],[-71.202804,41.61997399906],[-71.202781,41.62002799906],[-71.202751,41.62008699906],[-71.202728,41.62014599906],[-71.202697,41.62021399906],[-71.202667,41.62026899906],[-71.202621,41.62031899906],[-71.202583,41.62036499906],[-71.202537,41.62041099906],[-71.202468,41.62046599906],[-71.202415,41.62052099906],[-71.202392,41.62057999906],[-71.202392,41.62063399906],[-71.202361,41.62070299906],[-71.202346,41.62076599906],[-71.202331,41.62084299906],[-71.202407,41.62086399906],[-71.202423,41.62089499906],[-71.202385,41.62095399906],[-71.202339,41.62099599906],[-71.202316,41.62106799906],[-71.202316,41.62113099906],[-71.202324,41.62118999906],[-71.202316,41.62124799906],[-71.2023,41.62130299906],[-71.202239,41.62133499906],[-71.202232,41.62136199906],[-71.202232,41.62139899906],[-71.202148,41.62140899906],[-71.202079,41.62143699906],[-71.202064,41.62149599906],[-71.202079,41.62155499906],[-71.202049,41.62160899906],[-71.202003,41.62165099906],[-71.201942,41.62170099906],[-71.201889,41.62174299906],[-71.201835,41.62177999906],[-71.201789,41.62182099906],[-71.201827,41.62187499906],[-71.201812,41.62189699906],[-71.201736,41.62188999906],[-71.20166,41.62188699906],[-71.201599,41.62191099906],[-71.201583,41.62196499906],[-71.201538,41.62200199906],[-71.201583,41.62218599906],[-71.201606,41.62223899906],[-71.201644,41.62228299906],[-71.20169,41.62232799906],[-71.201713,41.62236799906],[-71.201576,41.62241499906],[-71.201499,41.62244399906],[-71.201454,41.62248499906],[-71.201431,41.62253999906],[-71.201446,41.62259299906],[-71.201484,41.62265099906],[-71.20153,41.62269499906],[-71.201591,41.62273499906],[-71.201652,41.62277899906],[-71.201606,41.62281999906],[-71.201538,41.62286199906],[-71.201461,41.62289499906],[-71.201377,41.62289599906],[-71.201293,41.62290299906],[-71.201225,41.62292599906],[-71.201156,41.62294099906],[-71.20108,41.62294299906],[-71.200943,41.62295899906],[-71.200912,41.62296399906],[-71.200744,41.62296699906],[-71.200591,41.62294299906],[-71.200515,41.62295799906],[-71.200446,41.62299099906],[-71.200393,41.62300999906],[-71.20037,41.62302399906],[-71.200301,41.62302999906],[-71.200241,41.62306699906],[-71.200172,41.62309999906],[-71.200103,41.62311899906],[-71.200027,41.62310199906],[-71.199997,41.62305299906],[-71.199974,41.62299499906],[-71.199951,41.62294199906],[-71.199912,41.62288399906],[-71.199852,41.62284899906],[-71.199737,41.62281099906],[-71.199668,41.62278999906],[-71.199584,41.62277799906],[-71.199516,41.62280199906],[-71.199455,41.62283899906],[-71.199378,41.62283599906],[-71.199302,41.62283699906],[-71.199249,41.62286999906],[-71.199127,41.62296199906],[-71.199066,41.62300399906],[-71.198989,41.62301399906],[-71.198921,41.62299299906],[-71.198867,41.62300299906],[-71.198806,41.62303099906],[-71.198654,41.62307499906],[-71.19857,41.62308999906],[-71.198486,41.62308199906],[-71.19841,41.62305699906],[-71.198333,41.62303599906],[-71.198257,41.62300999906],[-71.19818,41.62297999906],[-71.198104,41.62296399906],[-71.198036,41.62295999906],[-71.197952,41.62297099906],[-71.197868,41.62297699906],[-71.197708,41.62299799906],[-71.197616,41.62300899906],[-71.19738,41.62302699906],[-71.197288,41.62303299906],[-71.197204,41.62303499906],[-71.19712,41.62304999906],[-71.197051,41.62308299906],[-71.197013,41.62312899906],[-71.197013,41.62318699906],[-71.197036,41.62324499906],[-71.197051,41.62330799906],[-71.197074,41.62336199906],[-71.197036,41.62341199906],[-71.196967,41.62344499906],[-71.196937,41.62349499906],[-71.196975,41.62353899906],[-71.197051,41.62356499906],[-71.197128,41.62356299906],[-71.197212,41.62355699906],[-71.19728,41.62358699906],[-71.197258,41.62365099906],[-71.197204,41.62369199906],[-71.197135,41.62372099906],[-71.197051,41.62373999906],[-71.196983,41.62375099906],[-71.196906,41.62376999906],[-71.196822,41.62379399906],[-71.196754,41.62380899906],[-71.196678,41.62379199906],[-71.196601,41.62376699906],[-71.196548,41.62379499906],[-71.196487,41.62384099906],[-71.196449,41.62389999906],[-71.196449,41.62396299906],[-71.19651,41.62399399906],[-71.196586,41.62398799906],[-71.196632,41.62400499906],[-71.196647,41.62402699906],[-71.196579,41.62407799906],[-71.196533,41.62409699906],[-71.196464,41.62412999906],[-71.196403,41.62417099906],[-71.196357,41.62421299906],[-71.196334,41.62427599906],[-71.196342,41.62433499906],[-71.196342,41.62439799906],[-71.196388,41.62451399906],[-71.196373,41.62457299906],[-71.196327,41.62462799906],[-71.196281,41.62468699906],[-71.19622,41.62473799906],[-71.196144,41.62474399906],[-71.196067,41.62474099906],[-71.195976,41.62474699906],[-71.19593,41.62479299906],[-71.195915,41.62484699906],[-71.195915,41.62490999906],[-71.195877,41.62497399906],[-71.195861,41.62502799906],[-71.195808,41.62506999906],[-71.195739,41.62510699906],[-71.195678,41.62513599906],[-71.195609,41.62517299906],[-71.195587,41.62521399906],[-71.195602,41.62527199906],[-71.195571,41.62532199906],[-71.195503,41.62536899906],[-71.195457,41.62540999906],[-71.195442,41.62547299906],[-71.195434,41.62553199906],[-71.195373,41.62557799906],[-71.195304,41.62560199906],[-71.195251,41.62565299906],[-71.195243,41.62571599906],[-71.195197,41.62572599906],[-71.195113,41.62572699906],[-71.195083,41.62576399906],[-71.195091,41.62581799906],[-71.195068,41.62588099906],[-71.195022,41.62593199906],[-71.194954,41.62596899906],[-71.194885,41.62597899906],[-71.194809,41.62599399906],[-71.19477,41.62602699906],[-71.19474,41.62614399906],[-71.194702,41.62619899906],[-71.194641,41.62630799906],[-71.194579,41.62634099906],[-71.194526,41.62630599906],[-71.19448,41.62625699906],[-71.19445,41.62620399906],[-71.194404,41.62616399906],[-71.194328,41.62616099906],[-71.194252,41.62616299906],[-71.194183,41.62617699906],[-71.194137,41.62621399906],[-71.194152,41.62627199906],[-71.194191,41.62633499906],[-71.194206,41.62638899906],[-71.194206,41.62645199906],[-71.194251,41.62649999906],[-71.19432,41.62653499906],[-71.194343,41.62658899906],[-71.194336,41.62664699906],[-71.194313,41.62670599906],[-71.194267,41.62675199906],[-71.194236,41.62675699906],[-71.194191,41.62676299906],[-71.19403,41.62675699906],[-71.193954,41.62678099906],[-71.193885,41.62681299906],[-71.193817,41.62685499906],[-71.193748,41.62687499906],[-71.193664,41.62688999906],[-71.193573,41.62689099906],[-71.193504,41.62686099906],[-71.193473,41.62680799906],[-71.19342,41.62675499906],[-71.193374,41.62674699906],[-71.193313,41.62679299906],[-71.193298,41.62684699906],[-71.193275,41.62691099906],[-71.193252,41.62696999906],[-71.193244,41.62702399906],[-71.193244,41.62709099906],[-71.19326,41.62714499906],[-71.193252,41.62720399906],[-71.193222,41.62721299906],[-71.193153,41.62718299906],[-71.1931,41.62713499906],[-71.193061,41.62712199906],[-71.193016,41.62715899906],[-71.193008,41.62721699906],[-71.193039,41.62727099906],[-71.193031,41.62730299906],[-71.19297,41.62733099906],[-71.192894,41.62735499906],[-71.192627,41.62749899906],[-71.192542,41.62752799906],[-71.192382,41.62753999906],[-71.192314,41.62757299906],[-71.192268,41.62761899906],[-71.19223,41.62766899906],[-71.192199,41.62772399906],[-71.192168,41.62778699906],[-71.192138,41.62783799906],[-71.192115,41.62789599906],[-71.192123,41.62795899906],[-71.192123,41.62801799906],[-71.192108,41.62812599906],[-71.192115,41.62819399906],[-71.19213,41.62825599906],[-71.192115,41.62832399906],[-71.192085,41.62837399906],[-71.192054,41.62843399906],[-71.192039,41.62849199906],[-71.192054,41.62854599906],[-71.192054,41.62860499906],[-71.192062,41.62866799906],[-71.192031,41.62878499906],[-71.192024,41.62884799906],[-71.192039,41.62890199906],[-71.192062,41.62895599906],[-71.192077,41.62901899906],[-71.192108,41.62908099906],[-71.192138,41.62913399906],[-71.192146,41.62919699906],[-71.192131,41.62926099906],[-71.192093,41.62931099906],[-71.192039,41.62935199906],[-71.191963,41.62938999906],[-71.191902,41.62942299906],[-71.191833,41.62945499906],[-71.191764,41.62948399906],[-71.191696,41.62951699906],[-71.191619,41.62954999906],[-71.191551,41.62958199906],[-71.191474,41.62960599906],[-71.191398,41.62963499906],[-71.191322,41.62965899906],[-71.191246,41.62969199906],[-71.191162,41.62971999906],[-71.191085,41.62974399906],[-71.191002,41.62977299906],[-71.190849,41.62983499906],[-71.190772,41.62986299906],[-71.190696,41.62989599906],[-71.190628,41.62993799906],[-71.190567,41.62997999906],[-71.190498,41.63001699906],[-71.190414,41.63002699906],[-71.190338,41.63001499906],[-71.190246,41.63001699906],[-71.190162,41.63003699906],[-71.190086,41.63006099906],[-71.190017,41.63007999906],[-71.189933,41.63009499906],[-71.189857,41.63011899906],[-71.189804,41.63016999906],[-71.189819,41.63022299906],[-71.189826,41.63028199906],[-71.189857,41.63032599906],[-71.189781,41.63032299906],[-71.189712,41.63033799906],[-71.189628,41.63035299906],[-71.189552,41.63037299906],[-71.189483,41.63040099906],[-71.189407,41.63042899906],[-71.189247,41.63044099906],[-71.18917,41.63041099906],[-71.189101,41.63038099906],[-71.189056,41.63039099906],[-71.18901,41.63035999906],[-71.188949,41.63032999906],[-71.18888,41.63029999906],[-71.188819,41.63026899906],[-71.188751,41.63023899906],[-71.188682,41.63020499906],[-71.188613,41.63017399906],[-71.188537,41.63014399906],[-71.188468,41.63012799906],[-71.188392,41.63013399906],[-71.1883,41.63013499906],[-71.188239,41.63010499906],[-71.188178,41.63006599906],[-71.188125,41.63001299906],[-71.188033,41.62991499906],[-71.187973,41.62987999906],[-71.187904,41.62986799906],[-71.18782,41.62986499906],[-71.187743,41.62984899906],[-71.187667,41.62981899906],[-71.187606,41.62977499906],[-71.187553,41.62972599906],[-71.187461,41.62962899906],[-71.187446,41.62961899906],[-71.1874,41.62958999906],[-71.187332,41.62955899906],[-71.187263,41.62953399906],[-71.187194,41.62949899906],[-71.187126,41.62948699906],[-71.18705,41.62948399906],[-71.186965,41.62948999906],[-71.186881,41.62950499906],[-71.186798,41.62951499906],[-71.186721,41.62954399906],[-71.186637,41.62956799906],[-71.186561,41.62959599906],[-71.186515,41.62962899906],[-71.187202,41.63042199906],[-71.187591,41.63087799906],[-71.187835,41.63121099906],[-71.18795,41.63134899906],[-71.187964,41.63136999906],[-71.188041,41.63148699906],[-71.18811,41.63161999906],[-71.188155,41.63174599906],[-71.188171,41.63179899906],[-71.188194,41.63189799906],[-71.188224,41.63210499906],[-71.188224,41.63245999906],[-71.188201,41.63305999906],[-71.188156,41.63374499906],[-71.188079,41.63445399906],[-71.188036,41.63470299906],[-71.187965,41.63512699906],[-71.187805,41.63587299906],[-71.187675,41.63665899906],[-71.187568,41.63752099906],[-71.187576,41.63756099906],[-71.187561,41.63791699906],[-71.187553,41.63820099906],[-71.187553,41.63869199906],[-71.187561,41.63877299906],[-71.187599,41.63929499906],[-71.187576,41.63971799906],[-71.187561,41.63993499906],[-71.187528,41.64027399906],[-71.187515,41.64041299906],[-71.187484,41.64076499906],[-71.187446,41.64123799906],[-71.187439,41.64130599906],[-71.187431,41.64135599906],[-71.187423,41.64142399906],[-71.187423,41.64146899906],[-71.187522,41.64148499906],[-71.18779,41.64153399906],[-71.188227,41.64160199906],[-71.188667,41.64166999906],[-71.189621,41.64183199906],[-71.190536,41.64197699906],[-71.190788,41.64202599906],[-71.191505,41.64214299906],[-71.192703,41.64234099906],[-71.193183,41.64241699906],[-71.193519,41.64247399906],[-71.194313,41.64256699906],[-71.194968,41.64262199906],[-71.195472,41.64264799906],[-71.195877,41.64265799906],[-71.196327,41.64266299906],[-71.196838,41.64264399906],[-71.197486,41.64260999906],[-71.198143,41.64255199906],[-71.198974,41.64247299906],[-71.19976,41.64236299906],[-71.199928,41.64233299906],[-71.200309,41.64226299906],[-71.200477,41.64223299906],[-71.201011,41.64210999906],[-71.201675,41.64194399906],[-71.202102,41.64183199906],[-71.20269,41.64164499906],[-71.203323,41.64143499906],[-71.20375,41.64125999906],[-71.204109,41.64112299906],[-71.20417,41.64109499906],[-71.204239,41.64106199906],[-71.204345,41.64101899906],[-71.204693,41.64082899906],[-71.204922,41.64069199906],[-71.205272,41.64047199906],[-71.205607,41.64026799906],[-71.20618,41.63992099906],[-71.206327,41.63983799906],[-71.206521,41.63973699906],[-71.207341,41.63925299906],[-71.207661,41.63904499906],[-71.207848,41.63895599906],[-71.208039,41.63886499906],[-71.208292,41.63873999906],[-71.208553,41.63863099906],[-71.208824,41.63853299906],[-71.209225,41.63841499906],[-71.209906,41.63827999906],[-71.210244,41.63824899906],[-71.210511,41.63822399906],[-71.210881,41.63820899906],[-71.211631,41.63818099906],[-71.212128,41.63818399906],[-71.21265,41.63818399906],[-71.214127,41.63814199906],[-71.214151,41.63801999906],[-71.214155,41.63799699906],[-71.215667,41.63022999906],[-71.215886,41.62922399906],[-71.216736,41.62563199906],[-71.216762,41.62548499906],[-71.216823,41.62515399906],[-71.217083,41.62372799906]]]}}"}, +{"type": "blockgroup", "typeId": 416022, "areaId": 29370, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.214127,41.63814199906],[-71.21265,41.63818399906],[-71.212128,41.63818399906],[-71.211631,41.63818099906],[-71.210881,41.63820899906],[-71.210511,41.63822399906],[-71.210244,41.63824899906],[-71.209906,41.63827999906],[-71.209225,41.63841499906],[-71.208824,41.63853299906],[-71.208553,41.63863099906],[-71.208292,41.63873999906],[-71.208039,41.63886499906],[-71.207848,41.63895599906],[-71.207661,41.63904499906],[-71.207341,41.63925299906],[-71.206521,41.63973699906],[-71.206327,41.63983799906],[-71.20618,41.63992099906],[-71.205607,41.64026799906],[-71.205272,41.64047199906],[-71.204922,41.64069199906],[-71.204693,41.64082899906],[-71.204345,41.64101899906],[-71.204284,41.64131299906],[-71.2042,41.64180099906],[-71.204177,41.64186399906],[-71.204052,41.64229699906],[-71.204048,41.64231299906],[-71.203872,41.64281599906],[-71.203849,41.64287499906],[-71.203788,41.64305599906],[-71.203704,41.64333299906],[-71.203544,41.64380399906],[-71.203521,41.64387599906],[-71.203414,41.64417999906],[-71.2033,41.64447999906],[-71.203186,41.64471599906],[-71.203002,41.64503899906],[-71.202949,41.64510299906],[-71.20285,41.64522699906],[-71.202606,41.64553799906],[-71.202369,41.64584799906],[-71.202178,41.64609999906],[-71.202064,41.64632299906],[-71.202033,41.64648999906],[-71.202034,41.64667399906],[-71.202049,41.64690399906],[-71.202103,41.64723399906],[-71.202186,41.64752699906],[-71.202308,41.64791699906],[-71.202392,41.64814899906],[-71.202423,41.64828799906],[-71.202438,41.64832799906],[-71.202453,41.64853099906],[-71.202446,41.64868799906],[-71.20243,41.64881899906],[-71.202392,41.64895499906],[-71.202331,41.64911799906],[-71.202285,41.64921399906],[-71.202208,41.64932999906],[-71.202049,41.64957399906],[-71.201805,41.64995299906],[-71.201767,41.64999799906],[-71.201499,41.65032299906],[-71.201202,41.65074299906],[-71.200994,41.65102699906],[-71.200561,41.65162499906],[-71.20053,41.65166599906],[-71.200264,41.65203999906],[-71.200225,41.65208599906],[-71.200004,41.65239199906],[-71.199867,41.65255699906],[-71.199844,41.65258399906],[-71.199699,41.65271699906],[-71.19963,41.65276799906],[-71.199585,41.65279599906],[-71.199447,41.65288899906],[-71.199264,41.65298199906],[-71.199195,41.65301499906],[-71.19915,41.65303899906],[-71.198768,41.65322199906],[-71.197822,41.65369899906],[-71.197555,41.65385699906],[-71.197181,41.65407599906],[-71.197082,41.65413599906],[-71.196388,41.65456899906],[-71.196228,41.65467999906],[-71.196121,41.65474899906],[-71.195518,41.65522899906],[-71.195228,41.65546399906],[-71.19515,41.65552499906],[-71.194755,41.65584299906],[-71.194198,41.65628099906],[-71.193992,41.65647399906],[-71.193229,41.65718199906],[-71.192977,41.65742099906],[-71.192688,41.65770999906],[-71.19252,41.65792099906],[-71.192436,41.65804399906],[-71.19242,41.65807599906],[-71.192314,41.65825799906],[-71.192184,41.65849899906],[-71.192092,41.65866699906],[-71.192024,41.65878599906],[-71.193473,41.65906899906],[-71.193939,41.65915699906],[-71.194488,41.65926099906],[-71.19481,41.65932599906],[-71.194938,41.65935199906],[-71.195616,41.65947799906],[-71.196319,41.65960899906],[-71.196503,41.65964499906],[-71.19693,41.65972799906],[-71.197723,41.65987899906],[-71.198768,41.66006199906],[-71.199653,41.66022999906],[-71.199706,41.66024199906],[-71.19976,41.66025899906],[-71.199791,41.66031299906],[-71.19976,41.66043899906],[-71.199707,41.66063399906],[-71.199638,41.66082399906],[-71.199844,41.66085599906],[-71.199875,41.66085999906],[-71.200218,41.66092999906],[-71.200423,41.66096699906],[-71.200698,41.66099299906],[-71.200881,41.66102099906],[-71.200988,41.66102799906],[-71.201065,41.66102699906],[-71.201103,41.66101199906],[-71.201133,41.66100299906],[-71.201194,41.66096599906],[-71.201216,41.66093399906],[-71.201248,41.66088799906],[-71.201278,41.66078399906],[-71.201316,41.66067099906],[-71.201339,41.66059399906],[-71.201454,41.66059599906],[-71.201644,41.66061899906],[-71.20185,41.66065999906],[-71.201887,41.66066999906],[-71.202018,41.66070199906],[-71.202217,41.66075199906],[-71.202966,41.66078299906],[-71.20338,41.66079999906],[-71.20787,41.66132299906],[-71.208399,41.66001299906],[-71.209897,41.65771799906],[-71.210351,41.65616599906],[-71.21072,41.65525599906],[-71.212168,41.65262799906],[-71.212526,41.64958199906],[-71.21319,41.64462099906],[-71.21396,41.63887599906],[-71.213982,41.63881399906],[-71.213999,41.63876899906],[-71.214054,41.63845599906],[-71.214074,41.63836499906],[-71.214104,41.63826199906],[-71.214127,41.63814199906]]]}}"}, +{"type": "blockgroup", "typeId": 416023, "areaId": 29371, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.204345,41.64101899906],[-71.204239,41.64106199906],[-71.20417,41.64109499906],[-71.204109,41.64112299906],[-71.20375,41.64125999906],[-71.203323,41.64143499906],[-71.20269,41.64164499906],[-71.202102,41.64183199906],[-71.201675,41.64194399906],[-71.201011,41.64210999906],[-71.200477,41.64223299906],[-71.200309,41.64226299906],[-71.199928,41.64233299906],[-71.19976,41.64236299906],[-71.198974,41.64247299906],[-71.198143,41.64255199906],[-71.197486,41.64260999906],[-71.196838,41.64264399906],[-71.196327,41.64266299906],[-71.195877,41.64265799906],[-71.195472,41.64264799906],[-71.194968,41.64262199906],[-71.194313,41.64256699906],[-71.193519,41.64247399906],[-71.193183,41.64241699906],[-71.192703,41.64234099906],[-71.191505,41.64214299906],[-71.190788,41.64202599906],[-71.190536,41.64197699906],[-71.189621,41.64183199906],[-71.188667,41.64166999906],[-71.188227,41.64160199906],[-71.18779,41.64153399906],[-71.187522,41.64148499906],[-71.187423,41.64146899906],[-71.187416,41.64154099906],[-71.1874,41.64165399906],[-71.187362,41.64205999906],[-71.187331,41.64236599906],[-71.187263,41.64275499906],[-71.187019,41.64339799906],[-71.186981,41.64349899906],[-71.186965,41.64354399906],[-71.186905,41.64375699906],[-71.186798,41.64410099906],[-71.186714,41.64445899906],[-71.186676,41.64465299906],[-71.186607,41.64508199906],[-71.186508,41.64571499906],[-71.186424,41.64615699906],[-71.18634,41.64646099906],[-71.18621,41.64683299906],[-71.186035,41.64726399906],[-71.185813,41.64778999906],[-71.185699,41.64808499906],[-71.18544,41.64876999906],[-71.18518,41.64942299906],[-71.185062,41.64977999906],[-71.184982,41.65002599906],[-71.18486,41.65042899906],[-71.184837,41.65051099906],[-71.184608,41.65150599906],[-71.184593,41.65155599906],[-71.184417,41.65221199906],[-71.184356,41.65237499906],[-71.184226,41.65259799906],[-71.184115,41.65283599906],[-71.184043,41.65299399906],[-71.183937,41.65316699906],[-71.183624,41.65372199906],[-71.183486,41.65396299906],[-71.1828,41.65514299906],[-71.182563,41.65554799906],[-71.18235,41.65590799906],[-71.18206,41.65640399906],[-71.182037,41.65644099906],[-71.181823,41.65679999906],[-71.181633,41.65715499906],[-71.181449,41.65747399906],[-71.181289,41.65774699906],[-71.181137,41.65801599906],[-71.180991,41.65828899906],[-71.180862,41.65855699906],[-71.180717,41.65890599906],[-71.180595,41.65922399906],[-71.18058,41.65925999906],[-71.180473,41.65952799906],[-71.180343,41.65970599906],[-71.180107,41.65995799906],[-71.179939,41.66013299906],[-71.180793,41.66028799906],[-71.181014,41.66032399906],[-71.18135,41.66037999906],[-71.182189,41.66053099906],[-71.182861,41.66065799906],[-71.183936,41.66083999906],[-71.18399,41.66064999906],[-71.184066,41.66041399906],[-71.185806,41.66071899906],[-71.187126,41.66095499906],[-71.188087,41.66112199906],[-71.189224,41.66132499906],[-71.190261,41.66151699906],[-71.190353,41.66134899906],[-71.190482,41.66108899906],[-71.190635,41.66082499906],[-71.190696,41.66072999906],[-71.19075,41.66064299906],[-71.190833,41.66053799906],[-71.190933,41.66039199906],[-71.191352,41.65980699906],[-71.191383,41.65976199906],[-71.191688,41.65932799906],[-71.191741,41.65925499906],[-71.192024,41.65878599906],[-71.192092,41.65866699906],[-71.192184,41.65849899906],[-71.192314,41.65825799906],[-71.19242,41.65807599906],[-71.192436,41.65804399906],[-71.19252,41.65792099906],[-71.192688,41.65770999906],[-71.192977,41.65742099906],[-71.193229,41.65718199906],[-71.193992,41.65647399906],[-71.194198,41.65628099906],[-71.194755,41.65584299906],[-71.19515,41.65552499906],[-71.195228,41.65546399906],[-71.195518,41.65522899906],[-71.196121,41.65474899906],[-71.196228,41.65467999906],[-71.196388,41.65456899906],[-71.197082,41.65413599906],[-71.197181,41.65407599906],[-71.197555,41.65385699906],[-71.197822,41.65369899906],[-71.198768,41.65322199906],[-71.19915,41.65303899906],[-71.199195,41.65301499906],[-71.199264,41.65298199906],[-71.199447,41.65288899906],[-71.199585,41.65279599906],[-71.19963,41.65276799906],[-71.199699,41.65271699906],[-71.199844,41.65258399906],[-71.199867,41.65255699906],[-71.200004,41.65239199906],[-71.200225,41.65208599906],[-71.200264,41.65203999906],[-71.20053,41.65166599906],[-71.200561,41.65162499906],[-71.200994,41.65102699906],[-71.201202,41.65074299906],[-71.201499,41.65032299906],[-71.201767,41.64999799906],[-71.201805,41.64995299906],[-71.202049,41.64957399906],[-71.202208,41.64932999906],[-71.202285,41.64921399906],[-71.202331,41.64911799906],[-71.202392,41.64895499906],[-71.20243,41.64881899906],[-71.202446,41.64868799906],[-71.202453,41.64853099906],[-71.202438,41.64832799906],[-71.202423,41.64828799906],[-71.202392,41.64814899906],[-71.202308,41.64791699906],[-71.202186,41.64752699906],[-71.202103,41.64723399906],[-71.202049,41.64690399906],[-71.202034,41.64667399906],[-71.202033,41.64648999906],[-71.202064,41.64632299906],[-71.202178,41.64609999906],[-71.202369,41.64584799906],[-71.202606,41.64553799906],[-71.20285,41.64522699906],[-71.202949,41.64510299906],[-71.203002,41.64503899906],[-71.203186,41.64471599906],[-71.2033,41.64447999906],[-71.203414,41.64417999906],[-71.203521,41.64387599906],[-71.203544,41.64380399906],[-71.203704,41.64333299906],[-71.203788,41.64305599906],[-71.203849,41.64287499906],[-71.203872,41.64281599906],[-71.204048,41.64231299906],[-71.204052,41.64229699906],[-71.204177,41.64186399906],[-71.2042,41.64180099906],[-71.204284,41.64131299906],[-71.204345,41.64101899906]]]}}"}, +{"type": "blockgroup", "typeId": 417011, "areaId": 29372, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.204911,41.61799199906],[-71.204811,41.61796299906],[-71.20375,41.61767199906],[-71.202659,41.61736399906],[-71.20198,41.61716099906],[-71.201759,41.61709299906],[-71.201675,41.61706399906],[-71.201148,41.61685299906],[-71.20066,41.61662799906],[-71.200424,41.61650699906],[-71.200073,41.61633299906],[-71.199501,41.61603799906],[-71.199371,41.61597299906],[-71.199188,41.61587299906],[-71.198814,41.61567699906],[-71.198463,41.61547199906],[-71.198158,41.61526199906],[-71.196884,41.61615099906],[-71.195472,41.61710999906],[-71.195312,41.61722099906],[-71.194343,41.61787899906],[-71.194069,41.61806899906],[-71.193733,41.61829199906],[-71.193451,41.61848199906],[-71.193412,41.61850099906],[-71.19297,41.61874799906],[-71.192848,41.61881299906],[-71.192657,41.61890199906],[-71.192581,41.61893999906],[-71.192237,41.61908099906],[-71.191749,41.61925299906],[-71.190872,41.61955299906],[-71.189872,41.61987799906],[-71.189405,41.62003199906],[-71.189079,41.62014099906],[-71.189041,41.62015099906],[-71.188766,41.62024699906],[-71.188661,41.62028499906],[-71.188476,41.62035099906],[-71.187271,41.62074799906],[-71.186676,41.62093899906],[-71.185653,41.62128299906],[-71.1856,41.62130199906],[-71.18486,41.62154999906],[-71.184608,41.62163599906],[-71.183913,41.62191899906],[-71.182952,41.62236099906],[-71.181266,41.62313999906],[-71.179802,41.62379899906],[-71.178489,41.62440399906],[-71.177413,41.62487999906],[-71.177069,41.62504199906],[-71.176689,41.62522199906],[-71.176101,41.62543099906],[-71.17562,41.62557099906],[-71.175193,41.62566499906],[-71.174835,41.62571699906],[-71.174445,41.62575999906],[-71.174041,41.62578099906],[-71.17369,41.62578799906],[-71.172683,41.62577099906],[-71.170776,41.62571699906],[-71.170417,41.62570599906],[-71.169662,41.62568799906],[-71.168846,41.62565899906],[-71.167831,41.62562399906],[-71.167772,41.62562299906],[-71.167058,41.62560899906],[-71.166885,41.62560599906],[-71.166198,41.62557799906],[-71.166114,41.62557499906],[-71.164588,41.62554099906],[-71.163463,41.62550399906],[-71.163017,41.62548899906],[-71.161308,41.62544499906],[-71.160888,41.62543499906],[-71.160354,41.62541799906],[-71.160232,41.62541999906],[-71.158882,41.62537799906],[-71.157853,41.62534299906],[-71.157699,41.62533699906],[-71.157386,41.62532899906],[-71.157127,41.62530699906],[-71.15689,41.62527999906],[-71.156807,41.62526799906],[-71.156539,41.62522399906],[-71.156463,41.62520699906],[-71.156279,41.62516999906],[-71.155948,41.62507499906],[-71.155619,41.62493899906],[-71.155478,41.62488099906],[-71.155431,41.62485999906],[-71.154774,41.62454799906],[-71.154418,41.62442099906],[-71.154228,41.62436199906],[-71.153801,41.62426599906],[-71.153739,41.62426299906],[-71.153404,41.62421999906],[-71.153007,41.62421799906],[-71.152679,41.62424199906],[-71.152336,41.62427999906],[-71.152015,41.62434499906],[-71.151962,41.62435899906],[-71.151366,41.62453699906],[-71.151001,41.62466599906],[-71.150764,41.62475999906],[-71.150535,41.62484099906],[-71.150093,41.62500199906],[-71.149497,41.62520699906],[-71.148819,41.62544499906],[-71.148094,41.62570599906],[-71.147544,41.62590599906],[-71.146583,41.62623399906],[-71.14653,41.62682499906],[-71.146446,41.62747099906],[-71.146441,41.62752099906],[-71.146385,41.62808399906],[-71.146362,41.62841799906],[-71.146362,41.62875099906],[-71.14637,41.62889499906],[-71.146385,41.62907499906],[-71.1464,41.62922799906],[-71.146415,41.62935399906],[-71.146453,41.62959199906],[-71.146469,41.62971299906],[-71.146507,41.63007699906],[-71.146507,41.63013599906],[-71.146575,41.63076899906],[-71.146598,41.63151599906],[-71.146606,41.63165099906],[-71.146614,41.63168299906],[-71.146621,41.63178599906],[-71.146637,41.63197899906],[-71.146675,41.63222599906],[-71.146751,41.63267499906],[-71.146786,41.63286999906],[-71.14685,41.63321799906],[-71.146865,41.63326799906],[-71.146988,41.63377399906],[-71.147018,41.63389099906],[-71.147102,41.63426699906],[-71.147178,41.63452299906],[-71.147232,41.63479599906],[-71.147254,41.63498099906],[-71.147262,41.63515199906],[-71.14727,41.63525999906],[-71.147254,41.63538099906],[-71.147232,41.63564799906],[-71.147079,41.63619099906],[-71.146904,41.63677599906],[-71.146713,41.63740899906],[-71.146614,41.63775299906],[-71.146568,41.63789399906],[-71.146453,41.63816999906],[-71.146316,41.63843899906],[-71.146148,41.63873399906],[-71.145988,41.63901699906],[-71.145873,41.63920299906],[-71.145812,41.63932599906],[-71.145797,41.63938499906],[-71.14579,41.63941699906],[-71.145744,41.63953899906],[-71.145721,41.63965699906],[-71.145713,41.63980499906],[-71.145728,41.63998999906],[-71.145767,41.64013299906],[-71.145843,41.64032099906],[-71.145866,41.64037899906],[-71.146026,41.64069999906],[-71.146049,41.64074899906],[-71.146209,41.64106599906],[-71.146468,41.64157499906],[-71.146644,41.64192699906],[-71.146819,41.64225699906],[-71.147025,41.64265399906],[-71.147064,41.64274299906],[-71.147186,41.64303399906],[-71.147226,41.64316299906],[-71.147277,41.64332899906],[-71.147354,41.64368799906],[-71.147415,41.64405199906],[-71.147483,41.64431599906],[-71.147522,41.64443199906],[-71.147575,41.64451199906],[-71.147781,41.64479199906],[-71.147827,41.64484599906],[-71.147911,41.64492499906],[-71.148091,41.64511299906],[-71.148132,41.64515499906],[-71.148376,41.64541599906],[-71.148468,41.64550499906],[-71.148544,41.64558899906],[-71.148624,41.64566999906],[-71.148971,41.64602199906],[-71.149185,41.64623399906],[-71.149326,41.64637999906],[-71.149536,41.64657899906],[-71.149742,41.64676399906],[-71.14981,41.64683499906],[-71.150017,41.64701599906],[-71.150192,41.64723799906],[-71.150291,41.64739799906],[-71.150344,41.64757699906],[-71.150367,41.64768899906],[-71.15039,41.64776499906],[-71.15039,41.64797199906],[-71.150375,41.64807599906],[-71.150352,41.64822499906],[-71.15026,41.64870899906],[-71.150207,41.64896199906],[-71.15019,41.64906899906],[-71.150169,41.64920599906],[-71.150154,41.64928699906],[-71.15007,41.64968499906],[-71.150054,41.64973899906],[-71.149986,41.64999299906],[-71.149887,41.65030499906],[-71.149841,41.65053099906],[-71.149833,41.65063999906],[-71.149871,41.65087799906],[-71.14991,41.65104399906],[-71.149948,41.65112799906],[-71.150077,41.65138299906],[-71.150222,41.65161399906],[-71.150535,41.65212599906],[-71.150604,41.65225999906],[-71.150665,41.65239799906],[-71.150794,41.65267999906],[-71.150985,41.65317599906],[-71.151168,41.65369899906],[-71.151176,41.65373099906],[-71.151382,41.65427199906],[-71.151573,41.65484499906],[-71.15158,41.65487599906],[-71.151847,41.65575399906],[-71.151954,41.65610299906],[-71.152028,41.65637099906],[-71.152076,41.65653699906],[-71.152116,41.65667899906],[-71.152252,41.65715999906],[-71.152389,41.65763899906],[-71.152496,41.65807399906],[-71.152503,41.65811899906],[-71.152595,41.65854099906],[-71.152633,41.65872899906],[-71.152694,41.65898899906],[-71.152725,41.65914599906],[-71.152755,41.65927599906],[-71.152786,41.65941499906],[-71.152824,41.65959499906],[-71.152854,41.65968399906],[-71.152877,41.65983699906],[-71.152938,41.66013699906],[-71.152938,41.66017799906],[-71.152958,41.66031099906],[-71.15303,41.66079299906],[-71.153167,41.66171799906],[-71.153221,41.66200499906],[-71.15332,41.66257499906],[-71.153396,41.66299299906],[-71.153554,41.66383499906],[-71.153608,41.66415099906],[-71.153632,41.66415599906],[-71.15522,41.66447499906],[-71.159111,41.66518599906],[-71.161708,41.66565899906],[-71.161771,41.66567099906],[-71.161827,41.66568099906],[-71.16212,41.66573499906],[-71.173817,41.66786799906],[-71.17612,41.66824799906],[-71.176089,41.66810399906],[-71.176101,41.66782899906],[-71.176124,41.66765299906],[-71.176139,41.66751299906],[-71.176117,41.66718099906],[-71.176132,41.66685199906],[-71.1762,41.66648999906],[-71.176307,41.66605599906],[-71.176421,41.66569799906],[-71.176566,41.66537999906],[-71.17659,41.66533899906],[-71.176742,41.66508799906],[-71.177276,41.66437099906],[-71.177293,41.66434699906],[-71.177551,41.66397399906],[-71.177734,41.66366399906],[-71.177932,41.66325499906],[-71.178123,41.66280999906],[-71.17823,41.66256499906],[-71.178298,41.66243299906],[-71.178405,41.66225599906],[-71.178886,41.66164799906],[-71.179138,41.66128699906],[-71.179458,41.66070899906],[-71.179596,41.66055299906],[-71.179939,41.66013299906],[-71.180107,41.65995799906],[-71.180343,41.65970599906],[-71.180473,41.65952799906],[-71.18058,41.65925999906],[-71.180595,41.65922399906],[-71.180717,41.65890599906],[-71.180862,41.65855699906],[-71.180991,41.65828899906],[-71.181137,41.65801599906],[-71.181289,41.65774699906],[-71.181449,41.65747399906],[-71.181633,41.65715499906],[-71.181823,41.65679999906],[-71.182037,41.65644099906],[-71.18206,41.65640399906],[-71.18235,41.65590799906],[-71.182563,41.65554799906],[-71.1828,41.65514299906],[-71.183486,41.65396299906],[-71.183624,41.65372199906],[-71.183937,41.65316699906],[-71.184043,41.65299399906],[-71.184115,41.65283599906],[-71.184226,41.65259799906],[-71.184356,41.65237499906],[-71.184417,41.65221199906],[-71.184593,41.65155599906],[-71.184608,41.65150599906],[-71.184837,41.65051099906],[-71.18486,41.65042899906],[-71.184982,41.65002599906],[-71.185062,41.64977999906],[-71.18518,41.64942299906],[-71.18544,41.64876999906],[-71.185699,41.64808499906],[-71.185813,41.64778999906],[-71.186035,41.64726399906],[-71.18621,41.64683299906],[-71.18634,41.64646099906],[-71.186424,41.64615699906],[-71.186508,41.64571499906],[-71.186607,41.64508199906],[-71.186676,41.64465299906],[-71.186714,41.64445899906],[-71.186798,41.64410099906],[-71.186905,41.64375699906],[-71.186965,41.64354399906],[-71.186981,41.64349899906],[-71.187019,41.64339799906],[-71.187263,41.64275499906],[-71.187331,41.64236599906],[-71.187362,41.64205999906],[-71.1874,41.64165399906],[-71.187416,41.64154099906],[-71.187423,41.64146899906],[-71.187423,41.64142399906],[-71.187431,41.64135599906],[-71.187439,41.64130599906],[-71.187446,41.64123799906],[-71.187484,41.64076499906],[-71.187515,41.64041299906],[-71.187528,41.64027399906],[-71.187561,41.63993499906],[-71.187576,41.63971799906],[-71.187599,41.63929499906],[-71.187561,41.63877299906],[-71.187553,41.63869199906],[-71.187553,41.63820099906],[-71.187561,41.63791699906],[-71.187576,41.63756099906],[-71.187568,41.63752099906],[-71.187675,41.63665899906],[-71.187805,41.63587299906],[-71.187965,41.63512699906],[-71.188036,41.63470299906],[-71.188079,41.63445399906],[-71.188156,41.63374499906],[-71.188201,41.63305999906],[-71.188224,41.63245999906],[-71.188224,41.63210499906],[-71.188194,41.63189799906],[-71.188171,41.63179899906],[-71.188155,41.63174599906],[-71.18811,41.63161999906],[-71.188041,41.63148699906],[-71.187964,41.63136999906],[-71.18795,41.63134899906],[-71.187835,41.63121099906],[-71.187591,41.63087799906],[-71.187202,41.63042199906],[-71.186515,41.62962899906],[-71.186561,41.62959599906],[-71.186637,41.62956799906],[-71.186721,41.62954399906],[-71.186798,41.62951499906],[-71.186881,41.62950499906],[-71.186965,41.62948999906],[-71.18705,41.62948399906],[-71.187126,41.62948699906],[-71.187194,41.62949899906],[-71.187263,41.62953399906],[-71.187332,41.62955899906],[-71.1874,41.62958999906],[-71.187446,41.62961899906],[-71.187461,41.62962899906],[-71.187553,41.62972599906],[-71.187606,41.62977499906],[-71.187667,41.62981899906],[-71.187743,41.62984899906],[-71.18782,41.62986499906],[-71.187904,41.62986799906],[-71.187973,41.62987999906],[-71.188033,41.62991499906],[-71.188125,41.63001299906],[-71.188178,41.63006599906],[-71.188239,41.63010499906],[-71.1883,41.63013499906],[-71.188392,41.63013399906],[-71.188468,41.63012799906],[-71.188537,41.63014399906],[-71.188613,41.63017399906],[-71.188682,41.63020499906],[-71.188751,41.63023899906],[-71.188819,41.63026899906],[-71.18888,41.63029999906],[-71.188949,41.63032999906],[-71.18901,41.63035999906],[-71.189056,41.63039099906],[-71.189101,41.63038099906],[-71.18917,41.63041099906],[-71.189247,41.63044099906],[-71.189407,41.63042899906],[-71.189483,41.63040099906],[-71.189552,41.63037299906],[-71.189628,41.63035299906],[-71.189712,41.63033799906],[-71.189781,41.63032299906],[-71.189857,41.63032599906],[-71.189826,41.63028199906],[-71.189819,41.63022299906],[-71.189804,41.63016999906],[-71.189857,41.63011899906],[-71.189933,41.63009499906],[-71.190017,41.63007999906],[-71.190086,41.63006099906],[-71.190162,41.63003699906],[-71.190246,41.63001699906],[-71.190338,41.63001499906],[-71.190414,41.63002699906],[-71.190498,41.63001699906],[-71.190567,41.62997999906],[-71.190628,41.62993799906],[-71.190696,41.62989599906],[-71.190772,41.62986299906],[-71.190849,41.62983499906],[-71.191002,41.62977299906],[-71.191085,41.62974399906],[-71.191162,41.62971999906],[-71.191246,41.62969199906],[-71.191322,41.62965899906],[-71.191398,41.62963499906],[-71.191474,41.62960599906],[-71.191551,41.62958199906],[-71.191619,41.62954999906],[-71.191696,41.62951699906],[-71.191764,41.62948399906],[-71.191833,41.62945499906],[-71.191902,41.62942299906],[-71.191963,41.62938999906],[-71.192039,41.62935199906],[-71.192093,41.62931099906],[-71.192131,41.62926099906],[-71.192146,41.62919699906],[-71.192138,41.62913399906],[-71.192108,41.62908099906],[-71.192077,41.62901899906],[-71.192062,41.62895599906],[-71.192039,41.62890199906],[-71.192024,41.62884799906],[-71.192031,41.62878499906],[-71.192062,41.62866799906],[-71.192054,41.62860499906],[-71.192054,41.62854599906],[-71.192039,41.62849199906],[-71.192054,41.62843399906],[-71.192085,41.62837399906],[-71.192115,41.62832399906],[-71.19213,41.62825599906],[-71.192115,41.62819399906],[-71.192108,41.62812599906],[-71.192123,41.62801799906],[-71.192123,41.62795899906],[-71.192115,41.62789599906],[-71.192138,41.62783799906],[-71.192168,41.62778699906],[-71.192199,41.62772399906],[-71.19223,41.62766899906],[-71.192268,41.62761899906],[-71.192314,41.62757299906],[-71.192382,41.62753999906],[-71.192542,41.62752799906],[-71.192627,41.62749899906],[-71.192894,41.62735499906],[-71.19297,41.62733099906],[-71.193031,41.62730299906],[-71.193039,41.62727099906],[-71.193008,41.62721699906],[-71.193016,41.62715899906],[-71.193061,41.62712199906],[-71.1931,41.62713499906],[-71.193153,41.62718299906],[-71.193222,41.62721299906],[-71.193252,41.62720399906],[-71.19326,41.62714499906],[-71.193244,41.62709099906],[-71.193244,41.62702399906],[-71.193252,41.62696999906],[-71.193275,41.62691099906],[-71.193298,41.62684699906],[-71.193313,41.62679299906],[-71.193374,41.62674699906],[-71.19342,41.62675499906],[-71.193473,41.62680799906],[-71.193504,41.62686099906],[-71.193573,41.62689099906],[-71.193664,41.62688999906],[-71.193748,41.62687499906],[-71.193817,41.62685499906],[-71.193885,41.62681299906],[-71.193954,41.62678099906],[-71.19403,41.62675699906],[-71.194191,41.62676299906],[-71.194236,41.62675699906],[-71.194267,41.62675199906],[-71.194313,41.62670599906],[-71.194336,41.62664699906],[-71.194343,41.62658899906],[-71.19432,41.62653499906],[-71.194251,41.62649999906],[-71.194206,41.62645199906],[-71.194206,41.62638899906],[-71.194191,41.62633499906],[-71.194152,41.62627199906],[-71.194137,41.62621399906],[-71.194183,41.62617699906],[-71.194252,41.62616299906],[-71.194328,41.62616099906],[-71.194404,41.62616399906],[-71.19445,41.62620399906],[-71.19448,41.62625699906],[-71.194526,41.62630599906],[-71.194579,41.62634099906],[-71.194641,41.62630799906],[-71.194702,41.62619899906],[-71.19474,41.62614399906],[-71.19477,41.62602699906],[-71.194809,41.62599399906],[-71.194885,41.62597899906],[-71.194954,41.62596899906],[-71.195022,41.62593199906],[-71.195068,41.62588099906],[-71.195091,41.62581799906],[-71.195083,41.62576399906],[-71.195113,41.62572699906],[-71.195197,41.62572599906],[-71.195243,41.62571599906],[-71.195251,41.62565299906],[-71.195304,41.62560199906],[-71.195373,41.62557799906],[-71.195434,41.62553199906],[-71.195442,41.62547299906],[-71.195457,41.62540999906],[-71.195503,41.62536899906],[-71.195571,41.62532199906],[-71.195602,41.62527199906],[-71.195587,41.62521399906],[-71.195609,41.62517299906],[-71.195678,41.62513599906],[-71.195739,41.62510699906],[-71.195808,41.62506999906],[-71.195861,41.62502799906],[-71.195877,41.62497399906],[-71.195915,41.62490999906],[-71.195915,41.62484699906],[-71.19593,41.62479299906],[-71.195976,41.62474699906],[-71.196067,41.62474099906],[-71.196144,41.62474399906],[-71.19622,41.62473799906],[-71.196281,41.62468699906],[-71.196327,41.62462799906],[-71.196373,41.62457299906],[-71.196388,41.62451399906],[-71.196342,41.62439799906],[-71.196342,41.62433499906],[-71.196334,41.62427599906],[-71.196357,41.62421299906],[-71.196403,41.62417099906],[-71.196464,41.62412999906],[-71.196533,41.62409699906],[-71.196579,41.62407799906],[-71.196647,41.62402699906],[-71.196632,41.62400499906],[-71.196586,41.62398799906],[-71.19651,41.62399399906],[-71.196449,41.62396299906],[-71.196449,41.62389999906],[-71.196487,41.62384099906],[-71.196548,41.62379499906],[-71.196601,41.62376699906],[-71.196678,41.62379199906],[-71.196754,41.62380899906],[-71.196822,41.62379399906],[-71.196906,41.62376999906],[-71.196983,41.62375099906],[-71.197051,41.62373999906],[-71.197135,41.62372099906],[-71.197204,41.62369199906],[-71.197258,41.62365099906],[-71.19728,41.62358699906],[-71.197212,41.62355699906],[-71.197128,41.62356299906],[-71.197051,41.62356499906],[-71.196975,41.62353899906],[-71.196937,41.62349499906],[-71.196967,41.62344499906],[-71.197036,41.62341199906],[-71.197074,41.62336199906],[-71.197051,41.62330799906],[-71.197036,41.62324499906],[-71.197013,41.62318699906],[-71.197013,41.62312899906],[-71.197051,41.62308299906],[-71.19712,41.62304999906],[-71.197204,41.62303499906],[-71.197288,41.62303299906],[-71.19738,41.62302699906],[-71.197616,41.62300899906],[-71.197708,41.62299799906],[-71.197868,41.62297699906],[-71.197952,41.62297099906],[-71.198036,41.62295999906],[-71.198104,41.62296399906],[-71.19818,41.62297999906],[-71.198257,41.62300999906],[-71.198333,41.62303599906],[-71.19841,41.62305699906],[-71.198486,41.62308199906],[-71.19857,41.62308999906],[-71.198654,41.62307499906],[-71.198806,41.62303099906],[-71.198867,41.62300299906],[-71.198921,41.62299299906],[-71.198989,41.62301399906],[-71.199066,41.62300399906],[-71.199127,41.62296199906],[-71.199249,41.62286999906],[-71.199302,41.62283699906],[-71.199378,41.62283599906],[-71.199455,41.62283899906],[-71.199516,41.62280199906],[-71.199584,41.62277799906],[-71.199668,41.62278999906],[-71.199737,41.62281099906],[-71.199852,41.62284899906],[-71.199912,41.62288399906],[-71.199951,41.62294199906],[-71.199974,41.62299499906],[-71.199997,41.62305299906],[-71.200027,41.62310199906],[-71.200103,41.62311899906],[-71.200172,41.62309999906],[-71.200241,41.62306699906],[-71.200301,41.62302999906],[-71.20037,41.62302399906],[-71.200393,41.62300999906],[-71.200446,41.62299099906],[-71.200515,41.62295799906],[-71.200591,41.62294299906],[-71.200744,41.62296699906],[-71.200912,41.62296399906],[-71.200943,41.62295899906],[-71.20108,41.62294299906],[-71.201156,41.62294099906],[-71.201225,41.62292599906],[-71.201293,41.62290299906],[-71.201377,41.62289599906],[-71.201461,41.62289499906],[-71.201538,41.62286199906],[-71.201606,41.62281999906],[-71.201652,41.62277899906],[-71.201591,41.62273499906],[-71.20153,41.62269499906],[-71.201484,41.62265099906],[-71.201446,41.62259299906],[-71.201431,41.62253999906],[-71.201454,41.62248499906],[-71.201499,41.62244399906],[-71.201576,41.62241499906],[-71.201713,41.62236799906],[-71.20169,41.62232799906],[-71.201644,41.62228299906],[-71.201606,41.62223899906],[-71.201583,41.62218599906],[-71.201538,41.62200199906],[-71.201583,41.62196499906],[-71.201599,41.62191099906],[-71.20166,41.62188699906],[-71.201736,41.62188999906],[-71.201812,41.62189699906],[-71.201827,41.62187499906],[-71.201789,41.62182099906],[-71.201835,41.62177999906],[-71.201889,41.62174299906],[-71.201942,41.62170099906],[-71.202003,41.62165099906],[-71.202049,41.62160899906],[-71.202079,41.62155499906],[-71.202064,41.62149599906],[-71.202079,41.62143699906],[-71.202148,41.62140899906],[-71.202232,41.62139899906],[-71.202232,41.62136199906],[-71.202239,41.62133499906],[-71.2023,41.62130299906],[-71.202316,41.62124799906],[-71.202324,41.62118999906],[-71.202316,41.62113099906],[-71.202316,41.62106799906],[-71.202339,41.62099599906],[-71.202385,41.62095399906],[-71.202423,41.62089499906],[-71.202407,41.62086399906],[-71.202331,41.62084299906],[-71.202346,41.62076599906],[-71.202361,41.62070299906],[-71.202392,41.62063399906],[-71.202392,41.62057999906],[-71.202415,41.62052099906],[-71.202468,41.62046599906],[-71.202537,41.62041099906],[-71.202583,41.62036499906],[-71.202621,41.62031899906],[-71.202667,41.62026899906],[-71.202697,41.62021399906],[-71.202728,41.62014599906],[-71.202751,41.62008699906],[-71.202781,41.62002799906],[-71.202804,41.61997399906],[-71.202827,41.61991499906],[-71.202834,41.61984699906],[-71.202858,41.61978799906],[-71.20288,41.61972899906],[-71.202888,41.61970199906],[-71.202903,41.61967899906],[-71.202949,41.61963299906],[-71.203002,41.61954599906],[-71.203031,41.61953599906],[-71.20318,41.61946499906],[-71.203336,41.61937399906],[-71.203506,41.61935199906],[-71.203702,41.61887199906],[-71.204842,41.61824599906],[-71.204911,41.61799199906]]]}}"}, +{"type": "blockgroup", "typeId": 417012, "areaId": 29373, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.153608,41.66415099906],[-71.153554,41.66383499906],[-71.153396,41.66299299906],[-71.15332,41.66257499906],[-71.153221,41.66200499906],[-71.153167,41.66171799906],[-71.15303,41.66079299906],[-71.152958,41.66031099906],[-71.152938,41.66017799906],[-71.152938,41.66013699906],[-71.152877,41.65983699906],[-71.152854,41.65968399906],[-71.152824,41.65959499906],[-71.152786,41.65941499906],[-71.152755,41.65927599906],[-71.152725,41.65914599906],[-71.152694,41.65898899906],[-71.152633,41.65872899906],[-71.152595,41.65854099906],[-71.152503,41.65811899906],[-71.152496,41.65807399906],[-71.152389,41.65763899906],[-71.152252,41.65715999906],[-71.152116,41.65667899906],[-71.152076,41.65653699906],[-71.152028,41.65637099906],[-71.151954,41.65610299906],[-71.151847,41.65575399906],[-71.15158,41.65487599906],[-71.151573,41.65484499906],[-71.151382,41.65427199906],[-71.151176,41.65373099906],[-71.151168,41.65369899906],[-71.150985,41.65317599906],[-71.150794,41.65267999906],[-71.150665,41.65239799906],[-71.150604,41.65225999906],[-71.150535,41.65212599906],[-71.150222,41.65161399906],[-71.150077,41.65138299906],[-71.149948,41.65112799906],[-71.14991,41.65104399906],[-71.149871,41.65087799906],[-71.149833,41.65063999906],[-71.149841,41.65053099906],[-71.149887,41.65030499906],[-71.149986,41.64999299906],[-71.150054,41.64973899906],[-71.15007,41.64968499906],[-71.150154,41.64928699906],[-71.150169,41.64920599906],[-71.15019,41.64906899906],[-71.150207,41.64896199906],[-71.15026,41.64870899906],[-71.150352,41.64822499906],[-71.150375,41.64807599906],[-71.15039,41.64797199906],[-71.15039,41.64776499906],[-71.150367,41.64768899906],[-71.150344,41.64757699906],[-71.150291,41.64739799906],[-71.150192,41.64723799906],[-71.150017,41.64701599906],[-71.14981,41.64683499906],[-71.149742,41.64676399906],[-71.149536,41.64657899906],[-71.149326,41.64637999906],[-71.149185,41.64623399906],[-71.148971,41.64602199906],[-71.148624,41.64566999906],[-71.148544,41.64558899906],[-71.148468,41.64550499906],[-71.148376,41.64541599906],[-71.148132,41.64515499906],[-71.148091,41.64511299906],[-71.147911,41.64492499906],[-71.147827,41.64484599906],[-71.147781,41.64479199906],[-71.147575,41.64451199906],[-71.147522,41.64443199906],[-71.147483,41.64431599906],[-71.147415,41.64405199906],[-71.147354,41.64368799906],[-71.147277,41.64332899906],[-71.147226,41.64316299906],[-71.147186,41.64303399906],[-71.147064,41.64274299906],[-71.147025,41.64265399906],[-71.146819,41.64225699906],[-71.146644,41.64192699906],[-71.146468,41.64157499906],[-71.146209,41.64106599906],[-71.146049,41.64074899906],[-71.146026,41.64069999906],[-71.145866,41.64037899906],[-71.145843,41.64032099906],[-71.145767,41.64013299906],[-71.145728,41.63998999906],[-71.145713,41.63980499906],[-71.145721,41.63965699906],[-71.145744,41.63953899906],[-71.14579,41.63941699906],[-71.145797,41.63938499906],[-71.145812,41.63932599906],[-71.145873,41.63920299906],[-71.145988,41.63901699906],[-71.146148,41.63873399906],[-71.146316,41.63843899906],[-71.146453,41.63816999906],[-71.146568,41.63789399906],[-71.146614,41.63775299906],[-71.146713,41.63740899906],[-71.146904,41.63677599906],[-71.147079,41.63619099906],[-71.147232,41.63564799906],[-71.147254,41.63538099906],[-71.14727,41.63525999906],[-71.147262,41.63515199906],[-71.147254,41.63498099906],[-71.147232,41.63479599906],[-71.147178,41.63452299906],[-71.147102,41.63426699906],[-71.147018,41.63389099906],[-71.146988,41.63377399906],[-71.146865,41.63326799906],[-71.14685,41.63321799906],[-71.146786,41.63286999906],[-71.146751,41.63267499906],[-71.146675,41.63222599906],[-71.146637,41.63197899906],[-71.146621,41.63178599906],[-71.146614,41.63168299906],[-71.146606,41.63165099906],[-71.146598,41.63151599906],[-71.146575,41.63076899906],[-71.146507,41.63013599906],[-71.146507,41.63007699906],[-71.146469,41.62971299906],[-71.146453,41.62959199906],[-71.146415,41.62935399906],[-71.1464,41.62922799906],[-71.146385,41.62907499906],[-71.14637,41.62889499906],[-71.146362,41.62875099906],[-71.146362,41.62841799906],[-71.146385,41.62808399906],[-71.146441,41.62752099906],[-71.146446,41.62747099906],[-71.14653,41.62682499906],[-71.146583,41.62623399906],[-71.146331,41.62632899906],[-71.145652,41.62657599906],[-71.144836,41.62684799906],[-71.143905,41.62719799906],[-71.143386,41.62736599906],[-71.142929,41.62754099906],[-71.142463,41.62766699906],[-71.142387,41.62769099906],[-71.142097,41.62776399906],[-71.142059,41.62777799906],[-71.14186,41.62782699906],[-71.141616,41.62787199906],[-71.141372,41.62791199906],[-71.141098,41.62795299906],[-71.140785,41.62798199906],[-71.140457,41.62801899906],[-71.140326,41.62803599906],[-71.139845,41.62808299906],[-71.139143,41.62816099906],[-71.137732,41.62830999906],[-71.137015,41.62838399906],[-71.136282,41.62847199906],[-71.135939,41.62850599906],[-71.135527,41.62854699906],[-71.135302,41.62856499906],[-71.135157,41.63092599906],[-71.135001,41.63348699906],[-71.13483,41.63628499906],[-71.134672,41.63888799906],[-71.13459,41.64018299906],[-71.134588,41.64024599906],[-71.13453,41.64118399906],[-71.134515,41.64132799906],[-71.134511,41.64148499906],[-71.134456,41.64237199906],[-71.134451,41.64245199906],[-71.134447,41.64251399906],[-71.134354,41.64404699906],[-71.134346,41.64411699906],[-71.134193,41.64550299906],[-71.133814,41.64894799906],[-71.133763,41.64941699906],[-71.13335,41.65317599906],[-71.13317,41.65477399906],[-71.1329,41.65726199906],[-71.132874,41.65749799906],[-71.132662,41.65942499906],[-71.132659,41.65944899906],[-71.132647,41.65955499906],[-71.132557,41.66036299906],[-71.133057,41.66045699906],[-71.133284,41.66050099906],[-71.133731,41.66057899906],[-71.135045,41.66080699906],[-71.135725,41.66092799906],[-71.136232,41.66100599906],[-71.137413,41.66122299906],[-71.138542,41.66142299906],[-71.138905,41.66149099906],[-71.139069,41.66152299906],[-71.139949,41.66167199906],[-71.140387,41.66176099906],[-71.141073,41.66188399906],[-71.142272,41.66210699906],[-71.143054,41.66223799906],[-71.144213,41.66245399906],[-71.144724,41.66254399906],[-71.144852,41.66256799906],[-71.145139,41.66262299906],[-71.145869,41.66275299906],[-71.14695,41.66293899906],[-71.147117,41.66296799906],[-71.148065,41.66314099906],[-71.148799,41.66328199906],[-71.149351,41.66337599906],[-71.149887,41.66347599906],[-71.150324,41.66356299906],[-71.150552,41.66360399906],[-71.151049,41.66370599906],[-71.151935,41.66387199906],[-71.153406,41.66411699906],[-71.153608,41.66415099906]]]}}"}, +{"type": "blockgroup", "typeId": 417021, "areaId": 29374, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.198158,41.61526199906],[-71.197853,41.61501999906],[-71.197844,41.61501099906],[-71.197677,41.61484299906],[-71.197563,41.61472399906],[-71.197448,41.61460499906],[-71.197006,41.61411799906],[-71.196952,41.61405599906],[-71.196827,41.61392099906],[-71.196525,41.61359599906],[-71.196289,41.61334299906],[-71.195983,41.61298899906],[-71.195869,41.61283799906],[-71.195793,41.61272199906],[-71.195736,41.61264399906],[-71.195686,41.61257599906],[-71.195579,41.61238399906],[-71.195442,41.61214799906],[-71.195282,41.61188999906],[-71.195236,41.61180499906],[-71.195152,41.61167199906],[-71.194961,41.61137399906],[-71.1949,41.61128499906],[-71.194831,41.61119599906],[-71.194755,41.61110299906],[-71.194663,41.61100999906],[-71.194572,41.61092199906],[-71.194511,41.61086499906],[-71.19448,41.61084299906],[-71.194389,41.61076799906],[-71.194297,41.61068899906],[-71.194091,41.61052599906],[-71.193885,41.61037199906],[-71.193695,41.61022699906],[-71.19361,41.61015199906],[-71.193535,41.61008199906],[-71.193458,41.61000699906],[-71.193382,41.60992699906],[-71.193313,41.60984699906],[-71.193252,41.60976299906],[-71.193191,41.60967399906],[-71.193138,41.60958499906],[-71.193084,41.60949099906],[-71.193064,41.60944099906],[-71.193046,41.60939699906],[-71.193016,41.60930299906],[-71.192993,41.60920499906],[-71.19297,41.60910199906],[-71.192955,41.60900299906],[-71.192954,41.60889899906],[-71.192955,41.60879099906],[-71.192962,41.60867899906],[-71.192978,41.60856099906],[-71.192993,41.60847099906],[-71.193016,41.60837999906],[-71.193115,41.60794599906],[-71.193206,41.60748999906],[-71.193283,41.60712799906],[-71.193443,41.60630999906],[-71.193496,41.60588999906],[-71.193542,41.60559599906],[-71.193557,41.60542899906],[-71.193572,41.60517699906],[-71.193603,41.60482999906],[-71.193626,41.60449999906],[-71.193634,41.60437399906],[-71.193656,41.60409399906],[-71.193687,41.60385099906],[-71.193687,41.60380599906],[-71.193748,41.60344899906],[-71.193817,41.60314999906],[-71.193916,41.60277499906],[-71.194023,41.60245299906],[-71.194305,41.60158699906],[-71.194435,41.60122499906],[-71.194618,41.60065799906],[-71.194694,41.60041399906],[-71.194725,41.60030499906],[-71.194808,41.59996099906],[-71.194877,41.59968499906],[-71.194923,41.59950399906],[-71.194999,41.59919199906],[-71.195083,41.59882999906],[-71.195114,41.59868999906],[-71.195136,41.59839699906],[-71.195136,41.59827299906],[-71.195137,41.59793699906],[-71.195129,41.59757699906],[-71.195121,41.59706799906],[-71.195114,41.59673099906],[-71.195114,41.59657799906],[-71.195092,41.59619199906],[-71.195076,41.59588499906],[-71.195053,41.59564199906],[-71.195014,41.59535899906],[-71.194923,41.59482499906],[-71.194854,41.59438499906],[-71.194793,41.59401699906],[-71.19474,41.59373399906],[-71.194709,41.59350999906],[-71.194679,41.59331199906],[-71.194663,41.59314999906],[-71.193534,41.59355499906],[-71.193405,41.59360199906],[-71.192443,41.59398099906],[-71.19165,41.59426599906],[-71.191162,41.59443299906],[-71.191069,41.59446699906],[-71.190543,41.59465599906],[-71.189277,41.59513499906],[-71.188751,41.59532599906],[-71.188583,41.59537799906],[-71.188552,41.59539199906],[-71.184429,41.59623999906],[-71.179735,41.59686099906],[-71.1757,41.59717099906],[-71.17547,41.59712499906],[-71.175225,41.59712499906],[-71.17412,41.59726199906],[-71.173752,41.59729899906],[-71.173108,41.59729899906],[-71.17228,41.59738899906],[-71.171681,41.59752699906],[-71.170121,41.59774299906],[-71.168111,41.59801999906],[-71.167259,41.59808399906],[-71.167066,41.59809799906],[-71.166648,41.59812699906],[-71.166046,41.59816499906],[-71.165748,41.59817499906],[-71.165473,41.59818499906],[-71.165153,41.59819099906],[-71.164939,41.59835499906],[-71.162496,41.59935199906],[-71.161797,41.59958099906],[-71.160444,41.59996099906],[-71.159629,41.60023599906],[-71.159103,41.60042099906],[-71.158653,41.60060099906],[-71.158233,41.60078399906],[-71.157623,41.60105199906],[-71.157249,41.60120799906],[-71.156921,41.60133999906],[-71.156707,41.60141599906],[-71.156555,41.60146899906],[-71.156517,41.60148299906],[-71.156112,41.60160799906],[-71.155845,41.60170299906],[-71.155692,41.60175499906],[-71.155212,41.60191299906],[-71.155139,41.60193599906],[-71.15483,41.60203699906],[-71.154174,41.60226099906],[-71.153694,41.60241899906],[-71.153343,41.60253799906],[-71.152839,41.60270499906],[-71.152465,41.60284199906],[-71.152122,41.60296999906],[-71.151695,41.60313199906],[-71.15129,41.60328299906],[-71.151099,41.60334999906],[-71.150695,41.60348799906],[-71.150241,41.60365699906],[-71.149818,41.60381999906],[-71.149437,41.60397499906],[-71.149246,41.60405099906],[-71.14875,41.60424899906],[-71.148147,41.60446299906],[-71.147644,41.60466199906],[-71.147163,41.60483799906],[-71.146858,41.60494699906],[-71.146346,41.60508699906],[-71.145874,41.60524899906],[-71.145362,41.60542099906],[-71.144874,41.60557399906],[-71.144515,41.60570199906],[-71.14434,41.60577299906],[-71.144218,41.60584299906],[-71.144088,41.60591699906],[-71.142822,41.60639599906],[-71.142235,41.60661399906],[-71.141845,41.60676499906],[-71.141479,41.60688399906],[-71.141136,41.60700799906],[-71.140831,41.60711699906],[-71.140801,41.60713599906],[-71.141958,41.61253299906],[-71.141926,41.61273799906],[-71.141745,41.61389799906],[-71.141416,41.61599599906],[-71.141291,41.61679699906],[-71.14062,41.62108699906],[-71.140521,41.62170499906],[-71.140185,41.62386899906],[-71.139894,41.62414599906],[-71.138898,41.62509599906],[-71.138715,41.62526799906],[-71.135307,41.62848799906],[-71.135302,41.62856499906],[-71.135527,41.62854699906],[-71.135939,41.62850599906],[-71.136282,41.62847199906],[-71.137015,41.62838399906],[-71.137732,41.62830999906],[-71.139143,41.62816099906],[-71.139845,41.62808299906],[-71.140326,41.62803599906],[-71.140457,41.62801899906],[-71.140785,41.62798199906],[-71.141098,41.62795299906],[-71.141372,41.62791199906],[-71.141616,41.62787199906],[-71.14186,41.62782699906],[-71.142059,41.62777799906],[-71.142097,41.62776399906],[-71.142387,41.62769099906],[-71.142463,41.62766699906],[-71.142929,41.62754099906],[-71.143386,41.62736599906],[-71.143905,41.62719799906],[-71.144836,41.62684799906],[-71.145652,41.62657599906],[-71.146331,41.62632899906],[-71.146583,41.62623399906],[-71.147544,41.62590599906],[-71.148094,41.62570599906],[-71.148819,41.62544499906],[-71.149497,41.62520699906],[-71.150093,41.62500199906],[-71.150535,41.62484099906],[-71.150764,41.62475999906],[-71.151001,41.62466599906],[-71.151366,41.62453699906],[-71.151962,41.62435899906],[-71.152015,41.62434499906],[-71.152336,41.62427999906],[-71.152679,41.62424199906],[-71.153007,41.62421799906],[-71.153404,41.62421999906],[-71.153739,41.62426299906],[-71.153801,41.62426599906],[-71.154228,41.62436199906],[-71.154418,41.62442099906],[-71.154774,41.62454799906],[-71.155431,41.62485999906],[-71.155478,41.62488099906],[-71.155619,41.62493899906],[-71.155948,41.62507499906],[-71.156279,41.62516999906],[-71.156463,41.62520699906],[-71.156539,41.62522399906],[-71.156807,41.62526799906],[-71.15689,41.62527999906],[-71.157127,41.62530699906],[-71.157386,41.62532899906],[-71.157699,41.62533699906],[-71.157853,41.62534299906],[-71.158882,41.62537799906],[-71.160232,41.62541999906],[-71.160354,41.62541799906],[-71.160888,41.62543499906],[-71.161308,41.62544499906],[-71.163017,41.62548899906],[-71.163463,41.62550399906],[-71.164588,41.62554099906],[-71.166114,41.62557499906],[-71.166198,41.62557799906],[-71.166885,41.62560599906],[-71.167058,41.62560899906],[-71.167772,41.62562299906],[-71.167831,41.62562399906],[-71.168846,41.62565899906],[-71.169662,41.62568799906],[-71.170417,41.62570599906],[-71.170776,41.62571699906],[-71.172683,41.62577099906],[-71.17369,41.62578799906],[-71.174041,41.62578099906],[-71.174445,41.62575999906],[-71.174835,41.62571699906],[-71.175193,41.62566499906],[-71.17562,41.62557099906],[-71.176101,41.62543099906],[-71.176689,41.62522199906],[-71.177069,41.62504199906],[-71.177413,41.62487999906],[-71.178489,41.62440399906],[-71.179802,41.62379899906],[-71.181266,41.62313999906],[-71.182952,41.62236099906],[-71.183913,41.62191899906],[-71.184608,41.62163599906],[-71.18486,41.62154999906],[-71.1856,41.62130199906],[-71.185653,41.62128299906],[-71.186676,41.62093899906],[-71.187271,41.62074799906],[-71.188476,41.62035099906],[-71.188661,41.62028499906],[-71.188766,41.62024699906],[-71.189041,41.62015099906],[-71.189079,41.62014099906],[-71.189405,41.62003199906],[-71.189872,41.61987799906],[-71.190872,41.61955299906],[-71.191749,41.61925299906],[-71.192237,41.61908099906],[-71.192581,41.61893999906],[-71.192657,41.61890199906],[-71.192848,41.61881299906],[-71.19297,41.61874799906],[-71.193412,41.61850099906],[-71.193451,41.61848199906],[-71.193733,41.61829199906],[-71.194069,41.61806899906],[-71.194343,41.61787899906],[-71.195312,41.61722099906],[-71.195472,41.61710999906],[-71.196884,41.61615099906],[-71.198158,41.61526199906]]]}}"}, +{"type": "blockgroup", "typeId": 417022, "areaId": 29375, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.196739,41.54867699906],[-71.195144,41.54901899906],[-71.192054,41.54966699906],[-71.186904,41.55078799906],[-71.186204,41.55095699906],[-71.180465,41.55217099906],[-71.180381,41.55216799906],[-71.180168,41.55215399906],[-71.18013,41.55214999906],[-71.180076,41.55215099906],[-71.179901,41.55219499906],[-71.179694,41.55224399906],[-71.178909,41.55242099906],[-71.178161,41.55257499906],[-71.177785,41.55265599906],[-71.177291,41.55276199906],[-71.176467,41.55294899906],[-71.175582,41.55317299906],[-71.174568,41.55340899906],[-71.173038,41.55370899906],[-71.167544,41.55478899906],[-71.165676,41.55515499906],[-71.159843,41.55630199906],[-71.158856,41.55652099906],[-71.158186,41.55667999906],[-71.157361,41.55690299906],[-71.15646,41.55710899906],[-71.156212,41.55717999906],[-71.15612,41.55724599906],[-71.153096,41.55786499906],[-71.152458,41.55799599906],[-71.149179,41.55866699906],[-71.143855,41.55974199906],[-71.141391,41.56024999906],[-71.140106,41.56047199906],[-71.139221,41.56066599906],[-71.135147,41.56157599906],[-71.133203,41.56200999906],[-71.132672,41.56212399906],[-71.132579,41.56214999906],[-71.131048,41.56248999906],[-71.12947,41.56283999906],[-71.128982,41.56296599906],[-71.127837,41.56320299906],[-71.129033,41.57277899906],[-71.129039,41.57289399906],[-71.129122,41.57356699906],[-71.129839,41.57935199906],[-71.131558,41.59316999906],[-71.13162,41.59371599906],[-71.131817,41.59400899906],[-71.135765,41.59985499906],[-71.136234,41.60054899906],[-71.136764,41.60133399906],[-71.138346,41.60367599906],[-71.140308,41.60484999906],[-71.140606,41.60623599906],[-71.140801,41.60713599906],[-71.140831,41.60711699906],[-71.141136,41.60700799906],[-71.141479,41.60688399906],[-71.141845,41.60676499906],[-71.142235,41.60661399906],[-71.142822,41.60639599906],[-71.144088,41.60591699906],[-71.144218,41.60584299906],[-71.14434,41.60577299906],[-71.144515,41.60570199906],[-71.144874,41.60557399906],[-71.145362,41.60542099906],[-71.145874,41.60524899906],[-71.146346,41.60508699906],[-71.146858,41.60494699906],[-71.147163,41.60483799906],[-71.147644,41.60466199906],[-71.148147,41.60446299906],[-71.14875,41.60424899906],[-71.149246,41.60405099906],[-71.149437,41.60397499906],[-71.149818,41.60381999906],[-71.150241,41.60365699906],[-71.150695,41.60348799906],[-71.151099,41.60334999906],[-71.15129,41.60328299906],[-71.151695,41.60313199906],[-71.152122,41.60296999906],[-71.152465,41.60284199906],[-71.152839,41.60270499906],[-71.153343,41.60253799906],[-71.153694,41.60241899906],[-71.154174,41.60226099906],[-71.15483,41.60203699906],[-71.155139,41.60193599906],[-71.155212,41.60191299906],[-71.155692,41.60175499906],[-71.155845,41.60170299906],[-71.156112,41.60160799906],[-71.156517,41.60148299906],[-71.156555,41.60146899906],[-71.156707,41.60141599906],[-71.156921,41.60133999906],[-71.157249,41.60120799906],[-71.157623,41.60105199906],[-71.158233,41.60078399906],[-71.158653,41.60060099906],[-71.159103,41.60042099906],[-71.159629,41.60023599906],[-71.160444,41.59996099906],[-71.161797,41.59958099906],[-71.162496,41.59935199906],[-71.164939,41.59835499906],[-71.165153,41.59819099906],[-71.165473,41.59818499906],[-71.165748,41.59817499906],[-71.166046,41.59816499906],[-71.166648,41.59812699906],[-71.167066,41.59809799906],[-71.167259,41.59808399906],[-71.168111,41.59801999906],[-71.170121,41.59774299906],[-71.171681,41.59752699906],[-71.17228,41.59738899906],[-71.173108,41.59729899906],[-71.173752,41.59729899906],[-71.17412,41.59726199906],[-71.175225,41.59712499906],[-71.17547,41.59712499906],[-71.1757,41.59717099906],[-71.179735,41.59686099906],[-71.184429,41.59623999906],[-71.188552,41.59539199906],[-71.188583,41.59537799906],[-71.188751,41.59532599906],[-71.189277,41.59513499906],[-71.190543,41.59465599906],[-71.191069,41.59446699906],[-71.191162,41.59443299906],[-71.19165,41.59426599906],[-71.192443,41.59398099906],[-71.193405,41.59360199906],[-71.193534,41.59355499906],[-71.194663,41.59314999906],[-71.194648,41.59303799906],[-71.194633,41.59265999906],[-71.194595,41.59198099906],[-71.194564,41.59105799906],[-71.194557,41.59028799906],[-71.194564,41.58963099906],[-71.194519,41.58907799906],[-71.194442,41.58852099906],[-71.194343,41.58799999906],[-71.194214,41.58739499906],[-71.194008,41.58666899906],[-71.193611,41.58562299906],[-71.193572,41.58553399906],[-71.193206,41.58461299906],[-71.192878,41.58375899906],[-71.192665,41.58318199906],[-71.192619,41.58307099906],[-71.192283,41.58208599906],[-71.192268,41.58204599906],[-71.192161,41.58172799906],[-71.192062,41.58130199906],[-71.192039,41.58115899906],[-71.192001,41.58085799906],[-71.191978,41.58058299906],[-71.19197,41.58052099906],[-71.191932,41.58017499906],[-71.191863,41.57977499906],[-71.191848,41.57966699906],[-71.191741,41.57919199906],[-71.191688,41.57898999906],[-71.191619,41.57872099906],[-71.191574,41.57853299906],[-71.191551,41.57842099906],[-71.191543,41.57840299906],[-71.191488,41.57822899906],[-71.191429,41.57803599906],[-71.191314,41.57767399906],[-71.191245,41.57753999906],[-71.191123,41.57729899906],[-71.190887,41.57699699906],[-71.190826,41.57692199906],[-71.190513,41.57658499906],[-71.190185,41.57624899906],[-71.189788,41.57583799906],[-71.189727,41.57577599906],[-71.18946,41.57549299906],[-71.189292,41.57530299906],[-71.189163,41.57514299906],[-71.188941,41.57483199906],[-71.188766,41.57451599906],[-71.188621,41.57413099906],[-71.188613,41.57411299906],[-71.188445,41.57362099906],[-71.188438,41.57359399906],[-71.18824,41.57302199906],[-71.187972,41.57221199906],[-71.187904,41.57199199906],[-71.187782,41.57157599906],[-71.18766,41.57108299906],[-71.18766,41.57104199906],[-71.187599,41.57055699906],[-71.187522,41.57008099906],[-71.187454,41.56986199906],[-71.187393,41.56972299906],[-71.18737,41.56967899906],[-71.187286,41.56953199906],[-71.187141,41.56932699906],[-71.187087,41.56926899906],[-71.186912,41.56907999906],[-71.186637,41.56877899906],[-71.186447,41.56849799906],[-71.186309,41.56822199906],[-71.186302,41.56819999906],[-71.186256,41.56803399906],[-71.186172,41.56771999906],[-71.186134,41.56710799906],[-71.186111,41.56656399906],[-71.186111,41.56650499906],[-71.186096,41.56586599906],[-71.186088,41.56544299906],[-71.186104,41.56526299906],[-71.186103,41.56523599906],[-71.186119,41.56515399906],[-71.18618,41.56476999906],[-71.186401,41.56405499906],[-71.186623,41.56338399906],[-71.186765,41.56294399906],[-71.186775,41.56291699906],[-71.186775,41.56289499906],[-71.186912,41.56251399906],[-71.187003,41.56234099906],[-71.187133,41.56210899906],[-71.187167,41.56206999906],[-71.1874,41.56180199906],[-71.187774,41.56142999906],[-71.18785,41.56135699906],[-71.188261,41.56094299906],[-71.188361,41.56084199906],[-71.189224,41.55999699906],[-71.189292,41.55993299906],[-71.189788,41.55943699906],[-71.190208,41.55901499906],[-71.190513,41.55864899906],[-71.190742,41.55833799906],[-71.19078,41.55827899906],[-71.190795,41.55826099906],[-71.191162,41.55775799906],[-71.191284,41.55758499906],[-71.191299,41.55756699906],[-71.191955,41.55664899906],[-71.192512,41.55587299906],[-71.192924,41.55523499906],[-71.193168,41.55482499906],[-71.193374,41.55431199906],[-71.193573,41.55385799906],[-71.193725,41.55356199906],[-71.193763,41.55349399906],[-71.193832,41.55336199906],[-71.194015,41.55302499906],[-71.194725,41.55176899906],[-71.194784,41.55166299906],[-71.194954,41.55135899906],[-71.19519,41.55093599906],[-71.195686,41.55012899906],[-71.196144,41.54949399906],[-71.196525,41.54896899906],[-71.196739,41.54867699906]]]}}"}, +{"type": "blockgroup", "typeId": 417023, "areaId": 29376, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.223413,41.56139199906],[-71.223287,41.55969399906],[-71.222656,41.55837299906],[-71.221017,41.55733499906],[-71.216603,41.55733499906],[-71.215594,41.55610799906],[-71.21635,41.55478699906],[-71.217738,41.55337099906],[-71.217864,41.55157799906],[-71.21799,41.55006899906],[-71.218116,41.54874699906],[-71.218621,41.54770899906],[-71.218621,41.54619899906],[-71.216603,41.54582199906],[-71.214618,41.54486099906],[-71.211991,41.54540299906],[-71.211743,41.54544499906],[-71.211499,41.54548599906],[-71.211174,41.54556299906],[-71.210942,41.54561999906],[-71.208953,41.54605599906],[-71.206215,41.54662199906],[-71.205932,41.54669499906],[-71.205238,41.54686599906],[-71.204582,41.54699599906],[-71.204498,41.54700599906],[-71.204386,41.54702999906],[-71.204326,41.54705099906],[-71.20417,41.54710699906],[-71.201872,41.54758399906],[-71.201369,41.54767699906],[-71.199958,41.54796699906],[-71.199331,41.54812699906],[-71.197948,41.54841699906],[-71.196739,41.54867699906],[-71.196525,41.54896899906],[-71.196144,41.54949399906],[-71.195686,41.55012899906],[-71.19519,41.55093599906],[-71.194954,41.55135899906],[-71.194784,41.55166299906],[-71.194725,41.55176899906],[-71.194015,41.55302499906],[-71.193832,41.55336199906],[-71.193763,41.55349399906],[-71.193725,41.55356199906],[-71.193573,41.55385799906],[-71.193374,41.55431199906],[-71.193168,41.55482499906],[-71.192924,41.55523499906],[-71.192512,41.55587299906],[-71.191955,41.55664899906],[-71.191299,41.55756699906],[-71.191284,41.55758499906],[-71.191162,41.55775799906],[-71.190795,41.55826099906],[-71.19078,41.55827899906],[-71.190742,41.55833799906],[-71.190513,41.55864899906],[-71.190208,41.55901499906],[-71.189788,41.55943699906],[-71.189292,41.55993299906],[-71.189224,41.55999699906],[-71.188361,41.56084199906],[-71.188261,41.56094299906],[-71.18785,41.56135699906],[-71.187774,41.56142999906],[-71.1874,41.56180199906],[-71.187167,41.56206999906],[-71.187133,41.56210899906],[-71.187003,41.56234099906],[-71.186912,41.56251399906],[-71.186775,41.56289499906],[-71.186775,41.56291699906],[-71.186765,41.56294399906],[-71.186623,41.56338399906],[-71.186401,41.56405499906],[-71.18618,41.56476999906],[-71.186119,41.56515399906],[-71.186103,41.56523599906],[-71.186104,41.56526299906],[-71.186088,41.56544299906],[-71.186096,41.56586599906],[-71.186111,41.56650499906],[-71.186111,41.56656399906],[-71.186134,41.56710799906],[-71.186172,41.56771999906],[-71.186256,41.56803399906],[-71.186302,41.56819999906],[-71.186309,41.56822199906],[-71.186447,41.56849799906],[-71.186637,41.56877899906],[-71.186912,41.56907999906],[-71.187087,41.56926899906],[-71.187141,41.56932699906],[-71.187286,41.56953199906],[-71.18737,41.56967899906],[-71.187393,41.56972299906],[-71.187454,41.56986199906],[-71.187522,41.57008099906],[-71.187599,41.57055699906],[-71.18766,41.57104199906],[-71.18766,41.57108299906],[-71.187782,41.57157599906],[-71.187904,41.57199199906],[-71.187972,41.57221199906],[-71.18824,41.57302199906],[-71.188438,41.57359399906],[-71.188445,41.57362099906],[-71.188613,41.57411299906],[-71.188621,41.57413099906],[-71.188766,41.57451599906],[-71.188941,41.57483199906],[-71.189163,41.57514299906],[-71.189292,41.57530299906],[-71.18946,41.57549299906],[-71.189727,41.57577599906],[-71.189788,41.57583799906],[-71.190185,41.57624899906],[-71.190513,41.57658499906],[-71.190826,41.57692199906],[-71.190887,41.57699699906],[-71.191123,41.57729899906],[-71.191245,41.57753999906],[-71.191314,41.57767399906],[-71.191429,41.57803599906],[-71.191488,41.57822899906],[-71.191543,41.57840299906],[-71.191551,41.57842099906],[-71.191574,41.57853299906],[-71.191619,41.57872099906],[-71.191688,41.57898999906],[-71.191741,41.57919199906],[-71.191848,41.57966699906],[-71.191863,41.57977499906],[-71.191932,41.58017499906],[-71.19197,41.58052099906],[-71.191978,41.58058299906],[-71.192001,41.58085799906],[-71.192039,41.58115899906],[-71.192062,41.58130199906],[-71.192161,41.58172799906],[-71.192268,41.58204599906],[-71.192283,41.58208599906],[-71.192619,41.58307099906],[-71.192665,41.58318199906],[-71.192878,41.58375899906],[-71.193206,41.58461299906],[-71.193572,41.58553399906],[-71.193611,41.58562299906],[-71.194008,41.58666899906],[-71.194214,41.58739499906],[-71.194343,41.58799999906],[-71.194442,41.58852099906],[-71.194519,41.58907799906],[-71.194564,41.58963099906],[-71.194557,41.59028799906],[-71.194564,41.59105799906],[-71.194595,41.59198099906],[-71.194633,41.59265999906],[-71.194648,41.59303799906],[-71.194663,41.59314999906],[-71.194679,41.59331199906],[-71.194709,41.59350999906],[-71.19474,41.59373399906],[-71.194793,41.59401699906],[-71.194854,41.59438499906],[-71.194923,41.59482499906],[-71.195014,41.59535899906],[-71.195053,41.59564199906],[-71.195076,41.59588499906],[-71.195092,41.59619199906],[-71.195114,41.59657799906],[-71.195114,41.59673099906],[-71.195121,41.59706799906],[-71.195129,41.59757699906],[-71.195137,41.59793699906],[-71.195136,41.59827299906],[-71.195136,41.59839699906],[-71.195114,41.59868999906],[-71.195083,41.59882999906],[-71.194999,41.59919199906],[-71.194923,41.59950399906],[-71.194877,41.59968499906],[-71.194808,41.59996099906],[-71.194725,41.60030499906],[-71.194694,41.60041399906],[-71.194618,41.60065799906],[-71.194435,41.60122499906],[-71.194305,41.60158699906],[-71.194023,41.60245299906],[-71.193916,41.60277499906],[-71.193817,41.60314999906],[-71.193748,41.60344899906],[-71.193687,41.60380599906],[-71.193687,41.60385099906],[-71.193656,41.60409399906],[-71.193634,41.60437399906],[-71.193626,41.60449999906],[-71.193603,41.60482999906],[-71.193572,41.60517699906],[-71.193557,41.60542899906],[-71.193542,41.60559599906],[-71.193496,41.60588999906],[-71.193443,41.60630999906],[-71.193283,41.60712799906],[-71.193206,41.60748999906],[-71.193115,41.60794599906],[-71.193016,41.60837999906],[-71.192993,41.60847099906],[-71.192978,41.60856099906],[-71.192962,41.60867899906],[-71.192955,41.60879099906],[-71.192954,41.60889899906],[-71.192955,41.60900299906],[-71.19297,41.60910199906],[-71.192993,41.60920499906],[-71.193016,41.60930299906],[-71.193046,41.60939699906],[-71.193064,41.60944099906],[-71.193084,41.60949099906],[-71.193138,41.60958499906],[-71.193191,41.60967399906],[-71.193252,41.60976299906],[-71.193313,41.60984699906],[-71.193382,41.60992699906],[-71.193458,41.61000699906],[-71.193535,41.61008199906],[-71.19361,41.61015199906],[-71.193695,41.61022699906],[-71.193885,41.61037199906],[-71.194091,41.61052599906],[-71.194297,41.61068899906],[-71.194389,41.61076799906],[-71.19448,41.61084299906],[-71.194511,41.61086499906],[-71.194572,41.61092199906],[-71.194663,41.61100999906],[-71.194755,41.61110299906],[-71.194831,41.61119599906],[-71.1949,41.61128499906],[-71.194961,41.61137399906],[-71.195152,41.61167199906],[-71.195236,41.61180499906],[-71.195282,41.61188999906],[-71.195442,41.61214799906],[-71.195579,41.61238399906],[-71.195686,41.61257599906],[-71.195736,41.61264399906],[-71.195793,41.61272199906],[-71.195869,41.61283799906],[-71.195983,41.61298899906],[-71.196289,41.61334299906],[-71.196525,41.61359599906],[-71.196827,41.61392099906],[-71.196952,41.61405599906],[-71.197006,41.61411799906],[-71.197448,41.61460499906],[-71.197563,41.61472399906],[-71.197677,41.61484299906],[-71.197844,41.61501099906],[-71.197853,41.61501999906],[-71.198158,41.61526199906],[-71.198463,41.61547199906],[-71.198814,41.61567699906],[-71.199188,41.61587299906],[-71.199371,41.61597299906],[-71.199501,41.61603799906],[-71.200073,41.61633299906],[-71.200424,41.61650699906],[-71.20066,41.61662799906],[-71.201148,41.61685299906],[-71.201675,41.61706399906],[-71.201759,41.61709299906],[-71.20198,41.61716099906],[-71.202659,41.61736399906],[-71.20375,41.61767199906],[-71.204811,41.61796299906],[-71.204911,41.61799199906],[-71.205718,41.61822899906],[-71.206192,41.61835899906],[-71.206268,41.61821799906],[-71.206352,41.61808199906],[-71.206458,41.61795399906],[-71.206777,41.61777399906],[-71.207176,41.61755399906],[-71.207229,41.61752399906],[-71.207252,41.61750099906],[-71.207316,41.61747899906],[-71.207536,41.61753899906],[-71.207628,41.61757099906],[-71.207657,41.61760799906],[-71.207715,41.61775899906],[-71.207781,41.61789399906],[-71.207851,41.61799299906],[-71.20792,41.61810199906],[-71.207962,41.61818899906],[-71.208062,41.61827499906],[-71.208196,41.61835499906],[-71.208396,41.61841799906],[-71.208839,41.61851899906],[-71.209016,41.61845499906],[-71.20925,41.61850599906],[-71.209466,41.61856899906],[-71.209613,41.61864799906],[-71.20976,41.61867499906],[-71.209777,41.61875299906],[-71.209903,41.61875199906],[-71.209918,41.61862299906],[-71.209981,41.61856499906],[-71.210076,41.61852799906],[-71.210191,41.61850699906],[-71.210328,41.61851699906],[-71.210476,41.61856199906],[-71.210814,41.61868799906],[-71.210978,41.61873599906],[-71.21113,41.61877799906],[-71.211266,41.61880699906],[-71.211368,41.61881799906],[-71.211459,41.61878799906],[-71.211527,41.61874699906],[-71.211613,41.61871199906],[-71.211729,41.61867799906],[-71.211819,41.61865399906],[-71.211941,41.61863699906],[-71.212049,41.61861199906],[-71.212118,41.61856499906],[-71.212165,41.61850399906],[-71.212215,41.61843299906],[-71.212319,41.61837599906],[-71.212296,41.61835099906],[-71.212192,41.61837499906],[-71.212186,41.61835599906],[-71.212124,41.61832499906],[-71.212071,41.61826899906],[-71.212035,41.61821199906],[-71.211956,41.61810199906],[-71.21192,41.61804399906],[-71.211902,41.61798799906],[-71.211885,41.61792099906],[-71.211888,41.61785199906],[-71.211896,41.61778999906],[-71.211914,41.61771999906],[-71.211938,41.61765699906],[-71.211951,41.61758699906],[-71.211967,41.61747099906],[-71.211974,41.61739199906],[-71.211982,41.61727499906],[-71.212,41.61715799906],[-71.212025,41.61691499906],[-71.212029,41.61679699906],[-71.21203,41.61656699906],[-71.212035,41.61650799906],[-71.212046,41.61645299906],[-71.212057,41.61637599906],[-71.212049,41.61632099906],[-71.212049,41.61626599906],[-71.212045,41.61614399906],[-71.212036,41.61607399906],[-71.212012,41.61593899906],[-71.211997,41.61586599906],[-71.211993,41.61578899906],[-71.211993,41.61565999906],[-71.21199,41.61559899906],[-71.211984,41.61553699906],[-71.211983,41.61546999906],[-71.211996,41.61543999906],[-71.212075,41.61541999906],[-71.212101,41.61538399906],[-71.212074,41.61532899906],[-71.212008,41.61521199906],[-71.211967,41.61515299906],[-71.211933,41.61508599906],[-71.211913,41.61501699906],[-71.211909,41.61495299906],[-71.211909,41.61481699906],[-71.211905,41.61474299906],[-71.211895,41.61467599906],[-71.211893,41.61461599906],[-71.211897,41.61438699906],[-71.211902,41.61431199906],[-71.211909,41.61424099906],[-71.211924,41.61416899906],[-71.211943,41.61409399906],[-71.211962,41.61402399906],[-71.211977,41.61396099906],[-71.211993,41.61390299906],[-71.212012,41.61384599906],[-71.212065,41.61373599906],[-71.212035,41.61366799906],[-71.212031,41.61359699906],[-71.212034,41.61352399906],[-71.212052,41.61339999906],[-71.212059,41.61334299906],[-71.212069,41.61328699906],[-71.212087,41.61321099906],[-71.212108,41.61309799906],[-71.212132,41.61296199906],[-71.212144,41.61290299906],[-71.212154,41.61284099906],[-71.21216,41.61278099906],[-71.212165,41.61266899906],[-71.212179,41.61261199906],[-71.212197,41.61255799906],[-71.21225,41.61240899906],[-71.212271,41.61233599906],[-71.21229,41.61227499906],[-71.212313,41.61221799906],[-71.212317,41.61215899906],[-71.212285,41.61209199906],[-71.212261,41.61202599906],[-71.212238,41.61195399906],[-71.212225,41.61187399906],[-71.212216,41.61179699906],[-71.212222,41.61172399906],[-71.212211,41.61164399906],[-71.212172,41.61151399906],[-71.212168,41.61143899906],[-71.212175,41.61138099906],[-71.212178,41.61132399906],[-71.21217,41.61124499906],[-71.212168,41.61118899906],[-71.212169,41.61107099906],[-71.212166,41.61101699906],[-71.212147,41.61090399906],[-71.212141,41.61084399906],[-71.212137,41.61079099906],[-71.212124,41.61071299906],[-71.212117,41.61065799906],[-71.212114,41.61057999906],[-71.212115,41.61050799906],[-71.212131,41.61043799906],[-71.212175,41.61038999906],[-71.212238,41.61034499906],[-71.212231,41.61030199906],[-71.212184,41.61024899906],[-71.212136,41.61019199906],[-71.212094,41.61013499906],[-71.212058,41.61008099906],[-71.212027,41.61002499906],[-71.212002,41.60995799906],[-71.211969,41.60985399906],[-71.211958,41.60981299906],[-71.211946,41.60974599906],[-71.211942,41.60967799906],[-71.211943,41.60961399906],[-71.211965,41.60955599906],[-71.212036,41.60952999906],[-71.21211,41.60950799906],[-71.212182,41.60947999906],[-71.212203,41.60945599906],[-71.212176,41.60941199906],[-71.21209,41.60940899906],[-71.212032,41.60935399906],[-71.212003,41.60930099906],[-71.211971,41.60923899906],[-71.211939,41.60916799906],[-71.21192,41.60909999906],[-71.211913,41.60903599906],[-71.211916,41.60888499906],[-71.211937,41.60882299906],[-71.211973,41.60878599906],[-71.211943,41.60872599906],[-71.211938,41.60865999906],[-71.211982,41.60861199906],[-71.211928,41.60856299906],[-71.21189,41.60851199906],[-71.211863,41.60844199906],[-71.211838,41.60836999906],[-71.211807,41.60830399906],[-71.211779,41.60823299906],[-71.211752,41.60815599906],[-71.211732,41.60808599906],[-71.211663,41.60795199906],[-71.211639,41.60788099906],[-71.21161,41.60781599906],[-71.211569,41.60774699906],[-71.211535,41.60767299906],[-71.211502,41.60760799906],[-71.21148,41.60755399906],[-71.211477,41.60754499906],[-71.211478,41.60748499906],[-71.211483,41.60743699906],[-71.211419,41.60738099906],[-71.21136,41.60733599906],[-71.211305,41.60729199906],[-71.21124,41.60725599906],[-71.211194,41.60713099906],[-71.211154,41.60706599906],[-71.211116,41.60701099906],[-71.211078,41.60695199906],[-71.211045,41.60689399906],[-71.210973,41.60677599906],[-71.210897,41.60664899906],[-71.210857,41.60659099906],[-71.210825,41.60652699906],[-71.2108,41.60646199906],[-71.210781,41.60640799906],[-71.210757,41.60634899906],[-71.210744,41.60629099906],[-71.210737,41.60622099906],[-71.210721,41.60615099906],[-71.210695,41.60608299906],[-71.210659,41.60600699906],[-71.210633,41.60595499906],[-71.210593,41.60588499906],[-71.210535,41.60575099906],[-71.210495,41.60568599906],[-71.210471,41.60562999906],[-71.210506,41.60556499906],[-71.210528,41.60550999906],[-71.210494,41.60546199906],[-71.210382,41.60538299906],[-71.210324,41.60533499906],[-71.210271,41.60528399906],[-71.210239,41.60523299906],[-71.210215,41.60517999906],[-71.2102,41.60511999906],[-71.210171,41.60506499906],[-71.210133,41.60503099906],[-71.210078,41.60498699906],[-71.210036,41.60494099906],[-71.209996,41.60488299906],[-71.209958,41.60481899906],[-71.209936,41.60476599906],[-71.209923,41.60470899906],[-71.2099,41.60463999906],[-71.209873,41.60457999906],[-71.209861,41.60451699906],[-71.209856,41.60445499906],[-71.209836,41.60434299906],[-71.209827,41.60427299906],[-71.209821,41.60420299906],[-71.209801,41.60406999906],[-71.209795,41.60400499906],[-71.209765,41.60394499906],[-71.209717,41.60388299906],[-71.209683,41.60383499906],[-71.209647,41.60378799906],[-71.209612,41.60373899906],[-71.20957,41.60367699906],[-71.209519,41.60362499906],[-71.209418,41.60353399906],[-71.209369,41.60349299906],[-71.209317,41.60344199906],[-71.209283,41.60338999906],[-71.209251,41.60333899906],[-71.209216,41.60330999906],[-71.209188,41.60328799906],[-71.209129,41.60324799906],[-71.20907,41.60320599906],[-71.20902,41.60315799906],[-71.208978,41.60310899906],[-71.208928,41.60305699906],[-71.20887,41.60300099906],[-71.208824,41.60295899906],[-71.208793,41.60290999906],[-71.208788,41.60284799906],[-71.208786,41.60277799906],[-71.208754,41.60271399906],[-71.208704,41.60265499906],[-71.208658,41.60259099906],[-71.208606,41.60252499906],[-71.20855,41.60246499906],[-71.208485,41.60241099906],[-71.208338,41.60231199906],[-71.208259,41.60225699906],[-71.208201,41.60221899906],[-71.208079,41.60214699906],[-71.208015,41.60211299906],[-71.207901,41.60204399906],[-71.207838,41.60201199906],[-71.207782,41.60197799906],[-71.207724,41.60193599906],[-71.207662,41.60189499906],[-71.207592,41.60185399906],[-71.207524,41.60180899906],[-71.207404,41.60172699906],[-71.207351,41.60168499906],[-71.207296,41.60163499906],[-71.207241,41.60158299906],[-71.20719,41.60153099906],[-71.207138,41.60148099906],[-71.207092,41.60143199906],[-71.207057,41.60138099906],[-71.207032,41.60132699906],[-71.207016,41.60127099906],[-71.207004,41.60119399906],[-71.207006,41.60106499906],[-71.207008,41.60100999906],[-71.207012,41.60095499906],[-71.207024,41.60087999906],[-71.207034,41.60074099906],[-71.207054,41.60066399906],[-71.207095,41.60060299906],[-71.207153,41.60054199906],[-71.207205,41.60047399906],[-71.207268,41.60041499906],[-71.207307,41.60035199906],[-71.207298,41.60028899906],[-71.207269,41.60021499906],[-71.207224,41.60010799906],[-71.207197,41.60005699906],[-71.207127,41.59992899906],[-71.207091,41.59987899906],[-71.207045,41.59983599906],[-71.20696,41.59979599906],[-71.20686,41.59976199906],[-71.206792,41.59973399906],[-71.206717,41.59968399906],[-71.206654,41.59962899906],[-71.206585,41.59957899906],[-71.2065,41.59954499906],[-71.206427,41.59952499906],[-71.206351,41.59950999906],[-71.206275,41.59950099906],[-71.2062,41.59949499906],[-71.206127,41.59948499906],[-71.206056,41.59946199906],[-71.205989,41.59942999906],[-71.205923,41.59936899906],[-71.205876,41.59932399906],[-71.205819,41.59928399906],[-71.205756,41.59924899906],[-71.205622,41.59917999906],[-71.205556,41.59915499906],[-71.20549,41.59913199906],[-71.205388,41.59910199906],[-71.205312,41.59907599906],[-71.205235,41.59904499906],[-71.205166,41.59901499906],[-71.204961,41.59892999906],[-71.204889,41.59889699906],[-71.20483,41.59886299906],[-71.204768,41.59880899906],[-71.204714,41.59874399906],[-71.204611,41.59860699906],[-71.204559,41.59854299906],[-71.204522,41.59846699906],[-71.204478,41.59836099906],[-71.204454,41.59830999906],[-71.204416,41.59823999906],[-71.20437,41.59816699906],[-71.204344,41.59811399906],[-71.204308,41.59800599906],[-71.204258,41.59787199906],[-71.20421,41.59773799906],[-71.204194,41.59766599906],[-71.204188,41.59758999906],[-71.204197,41.59753299906],[-71.204196,41.59746699906],[-71.204078,41.59739399906],[-71.204029,41.59734499906],[-71.203983,41.59727999906],[-71.203921,41.59722499906],[-71.203862,41.59716299906],[-71.203824,41.59710099906],[-71.203798,41.59702999906],[-71.203754,41.59696399906],[-71.20372,41.59690199906],[-71.20368,41.59676299906],[-71.203662,41.59668699906],[-71.203638,41.59662099906],[-71.203611,41.59655999906],[-71.203579,41.59650299906],[-71.203533,41.59644099906],[-71.203486,41.59637999906],[-71.20344,41.59632499906],[-71.203408,41.59627199906],[-71.203388,41.59621899906],[-71.203363,41.59616599906],[-71.203332,41.59610399906],[-71.203292,41.59605299906],[-71.20326,41.59600299906],[-71.203242,41.59594499906],[-71.203213,41.59587399906],[-71.203169,41.59580399906],[-71.203106,41.59574699906],[-71.203026,41.59570099906],[-71.202948,41.59566699906],[-71.202866,41.59564499906],[-71.202794,41.59566199906],[-71.202755,41.59572899906],[-71.202754,41.59578299906],[-71.202773,41.59584199906],[-71.2028,41.59589699906],[-71.202875,41.59601399906],[-71.20291,41.59608399906],[-71.202923,41.59615199906],[-71.202901,41.59616899906],[-71.202822,41.59612599906],[-71.202758,41.59607899906],[-71.202674,41.59600499906],[-71.202633,41.59596399906],[-71.202554,41.59594299906],[-71.202481,41.59591999906],[-71.202408,41.59588499906],[-71.202353,41.59584099906],[-71.202212,41.59575399906],[-71.202078,41.59566599906],[-71.201957,41.59560099906],[-71.201892,41.59556399906],[-71.201761,41.59547599906],[-71.201697,41.59544199906],[-71.201626,41.59541699906],[-71.20154,41.59541599906],[-71.201456,41.59539299906],[-71.201411,41.59534599906],[-71.201346,41.59530699906],[-71.20141,41.59528699906],[-71.201442,41.59525599906],[-71.201511,41.59522499906],[-71.201578,41.59520199906],[-71.201663,41.59517999906],[-71.201752,41.59515199906],[-71.20183,41.59511099906],[-71.201901,41.59505699906],[-71.201951,41.59501699906],[-71.202013,41.59496099906],[-71.202067,41.59490099906],[-71.202117,41.59484299906],[-71.202179,41.59481399906],[-71.202261,41.59480799906],[-71.20235,41.59480699906],[-71.202455,41.59480699906],[-71.202512,41.59482799906],[-71.202574,41.59487499906],[-71.202645,41.59487399906],[-71.202717,41.59483899906],[-71.202767,41.59478599906],[-71.202761,41.59472999906],[-71.202705,41.59466499906],[-71.202666,41.59461199906],[-71.202637,41.59454499906],[-71.202619,41.59446799906],[-71.202602,41.59435899906],[-71.202591,41.59430299906],[-71.202563,41.59422699906],[-71.20253,41.59416399906],[-71.202458,41.59411199906],[-71.202375,41.59409999906],[-71.202291,41.59410999906],[-71.202195,41.59412399906],[-71.202122,41.59412499906],[-71.202038,41.59412499906],[-71.201942,41.59412099906],[-71.201856,41.59411099906],[-71.201779,41.59408799906],[-71.201681,41.59400399906],[-71.201626,41.59399199906],[-71.201551,41.59399199906],[-71.201474,41.59400499906],[-71.2013,41.59405099906],[-71.201226,41.59407799906],[-71.201182,41.59408599906],[-71.201169,41.59405299906],[-71.201149,41.59399599906],[-71.201122,41.59393799906],[-71.201085,41.59386999906],[-71.201028,41.59380499906],[-71.200966,41.59374099906],[-71.200906,41.59368399906],[-71.200872,41.59362199906],[-71.200891,41.59359799906],[-71.200961,41.59359399906],[-71.201197,41.59359499906],[-71.201281,41.59359099906],[-71.201385,41.59359099906],[-71.201461,41.59360199906],[-71.201535,41.59360299906],[-71.201611,41.59360299906],[-71.201685,41.59360099906],[-71.201758,41.59359399906],[-71.201832,41.59359099906],[-71.201906,41.59359099906],[-71.202006,41.59358799906],[-71.202095,41.59358699906],[-71.202182,41.59358799906],[-71.202271,41.59358499906],[-71.202357,41.59357399906],[-71.202438,41.59354799906],[-71.202515,41.59350899906],[-71.202588,41.59346499906],[-71.202714,41.59336299906],[-71.202782,41.59332399906],[-71.202855,41.59328599906],[-71.202926,41.59327399906],[-71.203002,41.59327399906],[-71.203075,41.59328299906],[-71.203161,41.59328399906],[-71.203237,41.59326899906],[-71.203292,41.59322799906],[-71.2033,41.59315399906],[-71.203303,41.59303399906],[-71.203311,41.59296199906],[-71.203334,41.59290199906],[-71.203366,41.59283899906],[-71.203405,41.59277799906],[-71.203441,41.59270899906],[-71.203467,41.59263399906],[-71.203451,41.59256799906],[-71.203404,41.59250999906],[-71.20334,41.59246599906],[-71.203323,41.59244199906],[-71.203381,41.59242499906],[-71.20348,41.59242399906],[-71.203564,41.59241799906],[-71.203639,41.59239799906],[-71.203715,41.59236899906],[-71.203798,41.59236399906],[-71.203872,41.59240799906],[-71.203906,41.59247599906],[-71.203929,41.59254499906],[-71.203968,41.59261499906],[-71.20403,41.59267799906],[-71.204079,41.59271799906],[-71.204235,41.59282599906],[-71.204312,41.59286899906],[-71.204391,41.59290399906],[-71.204467,41.59293299906],[-71.204549,41.59296199906],[-71.204722,41.59303899906],[-71.204807,41.59308199906],[-71.204872,41.59312899906],[-71.204929,41.59317999906],[-71.204978,41.59323799906],[-71.205014,41.59330199906],[-71.205043,41.59337099906],[-71.205051,41.59344199906],[-71.205048,41.59351499906],[-71.205052,41.59358099906],[-71.205069,41.59364699906],[-71.205094,41.59371099906],[-71.205118,41.59377599906],[-71.205136,41.59383599906],[-71.205151,41.59389099906],[-71.205148,41.59393899906],[-71.205055,41.59394899906],[-71.204851,41.59394699906],[-71.204756,41.59395599906],[-71.204659,41.59398499906],[-71.204571,41.59400399906],[-71.204412,41.59400899906],[-71.204329,41.59402199906],[-71.204244,41.59405199906],[-71.204156,41.59407699906],[-71.20408,41.59407199906],[-71.203994,41.59407699906],[-71.203921,41.59411499906],[-71.203892,41.59417599906],[-71.203879,41.59423199906],[-71.203807,41.59427599906],[-71.203744,41.59432099906],[-71.203732,41.59438199906],[-71.20375,41.59443599906],[-71.203814,41.59449399906],[-71.203884,41.59454399906],[-71.203955,41.59459299906],[-71.204023,41.59464299906],[-71.204096,41.59470299906],[-71.204192,41.59478799906],[-71.204251,41.59484599906],[-71.20431,41.59489099906],[-71.204357,41.59493499906],[-71.20435,41.59496099906],[-71.204221,41.59504599906],[-71.204207,41.59508999906],[-71.20425,41.59513699906],[-71.204311,41.59516699906],[-71.204304,41.59522899906],[-71.204284,41.59529099906],[-71.204304,41.59535199906],[-71.204355,41.59534799906],[-71.204405,41.59528999906],[-71.204445,41.59521599906],[-71.20447,41.59514199906],[-71.2045,41.59507199906],[-71.204554,41.59500099906],[-71.204642,41.59491399906],[-71.2047,41.59485499906],[-71.204759,41.59480899906],[-71.204819,41.59477299906],[-71.204879,41.59472999906],[-71.204951,41.59468999906],[-71.205021,41.59466099906],[-71.205107,41.59464299906],[-71.205191,41.59464699906],[-71.205269,41.59461599906],[-71.205325,41.59457199906],[-71.205388,41.59452099906],[-71.205435,41.59447499906],[-71.205481,41.59443299906],[-71.205598,41.59435199906],[-71.205655,41.59430899906],[-71.205719,41.59427499906],[-71.205798,41.59423999906],[-71.20587,41.59420299906],[-71.205942,41.59415999906],[-71.206018,41.59412499906],[-71.2061,41.59410399906],[-71.206189,41.59410299906],[-71.206263,41.59410499906],[-71.20628,41.59410599906],[-71.206358,41.59411299906],[-71.206447,41.59413399906],[-71.206538,41.59415699906],[-71.206605,41.59417699906],[-71.206683,41.59421199906],[-71.206737,41.59425599906],[-71.206748,41.59431799906],[-71.206776,41.59435099906],[-71.206863,41.59434099906],[-71.206941,41.59432299906],[-71.207031,41.59431199906],[-71.207213,41.59430999906],[-71.207309,41.59430399906],[-71.207402,41.59429699906],[-71.207484,41.59428899906],[-71.207663,41.59431699906],[-71.207742,41.59430599906],[-71.207825,41.59429999906],[-71.207988,41.59429899906],[-71.208079,41.59429399906],[-71.208134,41.59431599906],[-71.208186,41.59435399906],[-71.208268,41.59433899906],[-71.208338,41.59431599906],[-71.208428,41.59430899906],[-71.20862,41.59431099906],[-71.208704,41.59432099906],[-71.208792,41.59432999906],[-71.208876,41.59433599906],[-71.208947,41.59434899906],[-71.209016,41.59437899906],[-71.209063,41.59442899906],[-71.209099,41.59448199906],[-71.209178,41.59450799906],[-71.209267,41.59448999906],[-71.209344,41.59445199906],[-71.2094,41.59440299906],[-71.209428,41.59434299906],[-71.209469,41.59427599906],[-71.209515,41.59420399906],[-71.209551,41.59415399906],[-71.209587,41.59410199906],[-71.209625,41.59405199906],[-71.209665,41.59400599906],[-71.209718,41.59393699906],[-71.209785,41.59383699906],[-71.209811,41.59378399906],[-71.209842,41.59371099906],[-71.209875,41.59364299906],[-71.20991,41.59359399906],[-71.209947,41.59353099906],[-71.209963,41.59346099906],[-71.209977,41.59340399906],[-71.209993,41.59334499906],[-71.209995,41.59328499906],[-71.209991,41.59322999906],[-71.209953,41.59317899906],[-71.209873,41.59315099906],[-71.209787,41.59312999906],[-71.209729,41.59309099906],[-71.209693,41.59302799906],[-71.209646,41.59297399906],[-71.209593,41.59296299906],[-71.209554,41.59299699906],[-71.209555,41.59306399906],[-71.209559,41.59313699906],[-71.209537,41.59320099906],[-71.209479,41.59325199906],[-71.209418,41.59330299906],[-71.209362,41.59335399906],[-71.209313,41.59341499906],[-71.209252,41.59347299906],[-71.209178,41.59352399906],[-71.209099,41.59357099906],[-71.20902,41.59360399906],[-71.208937,41.59362399906],[-71.20885,41.59363199906],[-71.208756,41.59361799906],[-71.208663,41.59359699906],[-71.208577,41.59356799906],[-71.208484,41.59353499906],[-71.208389,41.59349899906],[-71.20832,41.59346399906],[-71.208242,41.59343999906],[-71.208176,41.59341699906],[-71.208109,41.59338899906],[-71.208036,41.59335199906],[-71.20796,41.59331899906],[-71.207899,41.59328899906],[-71.207839,41.59325599906],[-71.207723,41.59317299906],[-71.207655,41.59313199906],[-71.207584,41.59310499906],[-71.2075,41.59310599906],[-71.20746,41.59316399906],[-71.207445,41.59322299906],[-71.207432,41.59328399906],[-71.207414,41.59334599906],[-71.207383,41.59340499906],[-71.207336,41.59345599906],[-71.207275,41.59350099906],[-71.207198,41.59353399906],[-71.207119,41.59355099906],[-71.207048,41.59356099906],[-71.206974,41.59356499906],[-71.2069,41.59354799906],[-71.206841,41.59350599906],[-71.206734,41.59340399906],[-71.206678,41.59336099906],[-71.206628,41.59331399906],[-71.206584,41.59326399906],[-71.206551,41.59319699906],[-71.206568,41.59313299906],[-71.206624,41.59308099906],[-71.206684,41.59303999906],[-71.206753,41.59299899906],[-71.206822,41.59296199906],[-71.206894,41.59292899906],[-71.20696,41.59291299906],[-71.207047,41.59287299906],[-71.207087,41.59282399906],[-71.207128,41.59277799906],[-71.20717,41.59273299906],[-71.207183,41.59266999906],[-71.207212,41.59260599906],[-71.207287,41.59256799906],[-71.20737,41.59256899906],[-71.207452,41.59255599906],[-71.207532,41.59252999906],[-71.20761,41.59249499906],[-71.207691,41.59244599906],[-71.207764,41.59239399906],[-71.207813,41.59233999906],[-71.207826,41.59228599906],[-71.207812,41.59223099906],[-71.207783,41.59217499906],[-71.207742,41.59212399906],[-71.207685,41.59208599906],[-71.207757,41.59206699906],[-71.207848,41.59203999906],[-71.207929,41.59200699906],[-71.207982,41.59196999906],[-71.20805,41.59193599906],[-71.208134,41.59190999906],[-71.208234,41.59189599906],[-71.208325,41.59187299906],[-71.208415,41.59185299906],[-71.208518,41.59185599906],[-71.208619,41.59187599906],[-71.2087,41.59188899906],[-71.208776,41.59188199906],[-71.208859,41.59185899906],[-71.208933,41.59185999906],[-71.209,41.59191299906],[-71.209027,41.59197199906],[-71.209049,41.59203299906],[-71.209097,41.59209499906],[-71.20916,41.59215499906],[-71.209248,41.59224399906],[-71.209305,41.59229899906],[-71.209341,41.59234899906],[-71.209356,41.59241299906],[-71.209313,41.59246099906],[-71.209244,41.59249699906],[-71.209222,41.59255599906],[-71.209243,41.59259899906],[-71.209328,41.59261199906],[-71.209399,41.59258699906],[-71.209456,41.59253999906],[-71.209505,41.59247999906],[-71.209546,41.59241199906],[-71.209577,41.59234399906],[-71.209597,41.59227799906],[-71.209589,41.59220799906],[-71.209558,41.59213199906],[-71.209522,41.59198599906],[-71.209488,41.59191199906],[-71.209453,41.59185499906],[-71.209424,41.59179699906],[-71.20941,41.59174299906],[-71.20941,41.59166699906],[-71.209428,41.59158999906],[-71.209455,41.59153399906],[-71.209483,41.59148199906],[-71.209524,41.59141399906],[-71.209574,41.59135099906],[-71.209626,41.59128799906],[-71.209673,41.59124499906],[-71.209754,41.59123499906],[-71.209825,41.59121799906],[-71.209776,41.59116099906],[-71.209762,41.59110799906],[-71.209792,41.59104599906],[-71.209835,41.59097699906],[-71.209856,41.59092299906],[-71.20986,41.59084599906],[-71.209872,41.59077199906],[-71.209916,41.59064099906],[-71.209928,41.59058699906],[-71.20996,41.59052299906],[-71.209979,41.59046499906],[-71.210002,41.59040399906],[-71.210037,41.59034399906],[-71.210082,41.59029299906],[-71.210131,41.59024399906],[-71.210184,41.59019299906],[-71.210246,41.59014599906],[-71.210313,41.59010299906],[-71.210436,41.59000899906],[-71.2105,41.58996399906],[-71.210564,41.58991499906],[-71.210682,41.58982899906],[-71.210758,41.58979899906],[-71.210789,41.58977099906],[-71.210721,41.58973999906],[-71.210645,41.58970199906],[-71.210618,41.58964399906],[-71.210599,41.58957499906],[-71.210583,41.58950999906],[-71.21053,41.58945499906],[-71.210464,41.58942399906],[-71.210396,41.58939699906],[-71.210331,41.58936599906],[-71.210274,41.58932999906],[-71.210256,41.58930999906],[-71.210234,41.58928299906],[-71.210272,41.58922999906],[-71.210338,41.58922099906],[-71.210401,41.58925599906],[-71.210467,41.58930099906],[-71.210539,41.58933999906],[-71.21061,41.58937299906],[-71.210686,41.58939499906],[-71.210769,41.58937899906],[-71.210852,41.58937199906],[-71.210921,41.58938799906],[-71.211004,41.58941499906],[-71.211072,41.58944199906],[-71.211154,41.58947299906],[-71.211328,41.58954599906],[-71.211474,41.58962499906],[-71.211527,41.58966299906],[-71.211562,41.58971699906],[-71.211566,41.58977299906],[-71.211629,41.58980399906],[-71.211684,41.58978699906],[-71.211696,41.58972799906],[-71.211686,41.58965799906],[-71.211634,41.58960699906],[-71.211547,41.58956199906],[-71.211317,41.58944599906],[-71.211234,41.58940699906],[-71.21117,41.58936699906],[-71.211125,41.58931099906],[-71.211136,41.58925399906],[-71.211196,41.58914799906],[-71.211237,41.58909199906],[-71.211285,41.58904499906],[-71.211291,41.58899499906],[-71.211266,41.58894299906],[-71.211336,41.58889999906],[-71.211418,41.58888199906],[-71.211512,41.58887099906],[-71.21159,41.58884899906],[-71.211663,41.58881999906],[-71.211714,41.58877399906],[-71.211747,41.58871299906],[-71.211792,41.58865499906],[-71.211854,41.58860299906],[-71.211925,41.58855899906],[-71.212011,41.58851699906],[-71.212075,41.58848799906],[-71.212136,41.58845799906],[-71.212218,41.58841099906],[-71.212295,41.58835799906],[-71.212381,41.58831299906],[-71.212469,41.58827199906],[-71.212549,41.58823599906],[-71.212621,41.58819299906],[-71.212687,41.58813799906],[-71.212702,41.58812399906],[-71.212821,41.58802599906],[-71.21288,41.58797999906],[-71.212958,41.58793699906],[-71.213019,41.58789199906],[-71.213157,41.58778699906],[-71.213203,41.58774299906],[-71.21332,41.58766999906],[-71.21343,41.58757899906],[-71.213486,41.58752699906],[-71.213548,41.58747199906],[-71.213615,41.58742599906],[-71.213683,41.58738499906],[-71.21375,41.58733599906],[-71.213818,41.58728399906],[-71.21396,41.58718099906],[-71.21403,41.58713399906],[-71.214099,41.58709099906],[-71.214167,41.58704099906],[-71.214232,41.58698099906],[-71.214277,41.58693799906],[-71.214343,41.58687899906],[-71.214403,41.58681899906],[-71.214437,41.58676899906],[-71.214468,41.58671199906],[-71.214495,41.58665199906],[-71.214517,41.58659499906],[-71.214534,41.58654099906],[-71.214572,41.58643399906],[-71.21459,41.58635599906],[-71.214626,41.58629599906],[-71.214679,41.58624499906],[-71.214735,41.58618499906],[-71.214785,41.58611699906],[-71.214831,41.58605899906],[-71.214874,41.58601099906],[-71.214902,41.58595699906],[-71.214919,41.58590199906],[-71.214927,41.58582999906],[-71.214928,41.58575499906],[-71.214925,41.58568399906],[-71.214902,41.58552999906],[-71.214896,41.58547599906],[-71.214884,41.58540099906],[-71.214849,41.58532699906],[-71.214774,41.58520399906],[-71.21473,41.58513999906],[-71.214691,41.58507999906],[-71.214663,41.58502399906],[-71.214614,41.58496299906],[-71.214556,41.58492999906],[-71.214476,41.58491199906],[-71.214371,41.58490599906],[-71.214213,41.58490399906],[-71.214123,41.58490599906],[-71.214048,41.58492199906],[-71.214012,41.58495999906],[-71.214062,41.58501999906],[-71.214136,41.58505799906],[-71.214227,41.58508699906],[-71.214328,41.58511399906],[-71.214416,41.58515199906],[-71.214464,41.58519199906],[-71.214501,41.58524299906],[-71.214535,41.58530199906],[-71.214563,41.58536399906],[-71.214585,41.58542299906],[-71.214622,41.58554599906],[-71.214638,41.58561299906],[-71.214671,41.58573299906],[-71.214682,41.58578999906],[-71.214684,41.58584999906],[-71.214675,41.58591099906],[-71.214661,41.58596899906],[-71.214646,41.58602199906],[-71.214611,41.58609899906],[-71.214567,41.58616699906],[-71.214464,41.58628099906],[-71.214422,41.58633299906],[-71.214385,41.58638899906],[-71.214352,41.58644299906],[-71.214303,41.58649099906],[-71.214229,41.58652299906],[-71.214162,41.58655799906],[-71.2141,41.58660699906],[-71.214049,41.58665799906],[-71.213988,41.58670399906],[-71.213911,41.58673699906],[-71.213822,41.58676199906],[-71.213734,41.58676599906],[-71.213649,41.58676099906],[-71.213575,41.58673899906],[-71.21355,41.58668799906],[-71.213511,41.58662499906],[-71.213448,41.58657299906],[-71.213399,41.58651699906],[-71.213375,41.58644799906],[-71.213379,41.58636699906],[-71.213399,41.58629399906],[-71.213407,41.58622599906],[-71.213398,41.58615799906],[-71.213352,41.58609099906],[-71.213273,41.58603799906],[-71.213206,41.58600899906],[-71.213141,41.58597699906],[-71.213072,41.58591999906],[-71.213028,41.58584899906],[-71.213005,41.58577099906],[-71.212993,41.58570099906],[-71.21299,41.58563499906],[-71.21305,41.58556699906],[-71.213171,41.58547199906],[-71.213216,41.58542399906],[-71.213251,41.58537399906],[-71.213279,41.58531999906],[-71.213294,41.58525899906],[-71.2133,41.58519499906],[-71.213293,41.58513499906],[-71.213278,41.58507899906],[-71.21326,41.58502199906],[-71.21326,41.58495999906],[-71.213277,41.58490099906],[-71.213291,41.58484599906],[-71.213313,41.58477999906],[-71.213332,41.58471799906],[-71.213345,41.58464999906],[-71.213345,41.58458399906],[-71.213333,41.58452499906],[-71.213303,41.58446199906],[-71.213272,41.58441199906],[-71.21323,41.58436599906],[-71.213174,41.58432799906],[-71.21311,41.58430199906],[-71.21301,41.58429899906],[-71.212907,41.58432899906],[-71.212839,41.58436499906],[-71.212781,41.58440999906],[-71.212729,41.58445299906],[-71.212651,41.58450199906],[-71.212564,41.58453199906],[-71.212396,41.58457999906],[-71.212307,41.58461199906],[-71.212245,41.58464099906],[-71.212182,41.58466699906],[-71.212107,41.58467299906],[-71.212031,41.58468799906],[-71.211957,41.58469799906],[-71.211884,41.58472999906],[-71.21187,41.58479099906],[-71.211878,41.58484899906],[-71.211873,41.58491599906],[-71.211846,41.58498999906],[-71.211804,41.58506099906],[-71.211748,41.58512699906],[-71.211698,41.58516699906],[-71.211639,41.58519799906],[-71.21155,41.58522799906],[-71.211462,41.58521399906],[-71.2114,41.58518199906],[-71.211338,41.58514099906],[-71.211283,41.58509199906],[-71.211244,41.58502999906],[-71.211219,41.58495799906],[-71.211204,41.58489399906],[-71.2112,41.58482999906],[-71.211207,41.58477499906],[-71.211241,41.58471499906],[-71.211281,41.58466999906],[-71.211332,41.58462699906],[-71.211392,41.58458799906],[-71.211454,41.58455499906],[-71.211553,41.58452599906],[-71.211626,41.58450699906],[-71.211705,41.58447499906],[-71.21177,41.58442799906],[-71.211822,41.58436999906],[-71.211861,41.58430999906],[-71.211887,41.58425699906],[-71.211913,41.58417999906],[-71.211923,41.58412199906],[-71.211927,41.58406499906],[-71.211929,41.58394699906],[-71.211923,41.58388699906],[-71.211899,41.58382799906],[-71.211861,41.58377299906],[-71.21182,41.58370899906],[-71.2117,41.58353799906],[-71.211663,41.58348199906],[-71.211653,41.58340499906],[-71.211686,41.58336999906],[-71.211736,41.58337999906],[-71.211783,41.58343099906],[-71.211829,41.58348999906],[-71.211876,41.58355299906],[-71.211915,41.58361699906],[-71.211984,41.58373799906],[-71.212017,41.58379899906],[-71.212057,41.58384699906],[-71.212105,41.58388999906],[-71.212163,41.58392499906],[-71.212254,41.58396399906],[-71.212347,41.58399199906],[-71.212414,41.58401399906],[-71.212488,41.58404299906],[-71.212559,41.58407399906],[-71.212624,41.58410799906],[-71.212681,41.58414299906],[-71.212761,41.58418299906],[-71.212854,41.58419699906],[-71.212947,41.58419099906],[-71.213024,41.58416399906],[-71.213072,41.58411799906],[-71.213114,41.58409699906],[-71.213181,41.58413999906],[-71.213242,41.58417399906],[-71.213308,41.58419899906],[-71.213337,41.58419599906],[-71.213332,41.58413999906],[-71.213321,41.58408399906],[-71.21333,41.58400599906],[-71.213371,41.58395499906],[-71.213453,41.58394499906],[-71.213537,41.58391699906],[-71.213637,41.58389499906],[-71.21374,41.58390399906],[-71.213828,41.58394299906],[-71.213899,41.58400299906],[-71.213942,41.58404899906],[-71.213972,41.58410099906],[-71.213989,41.58415999906],[-71.214001,41.58422299906],[-71.214027,41.58433999906],[-71.214036,41.58440299906],[-71.214035,41.58446599906],[-71.214022,41.58452199906],[-71.21397,41.58458799906],[-71.21392,41.58462699906],[-71.213841,41.58467599906],[-71.213759,41.58470999906],[-71.213679,41.58474799906],[-71.213608,41.58478999906],[-71.213568,41.58483799906],[-71.213581,41.58487399906],[-71.213756,41.58484699906],[-71.213837,41.58483699906],[-71.213919,41.58483199906],[-71.213995,41.58481199906],[-71.214061,41.58477699906],[-71.214124,41.58473899906],[-71.21424,41.58465599906],[-71.214302,41.58462299906],[-71.214362,41.58456599906],[-71.214341,41.58448399906],[-71.214311,41.58441899906],[-71.214287,41.58435799906],[-71.214273,41.58430399906],[-71.214264,41.58424299906],[-71.214259,41.58417799906],[-71.214246,41.58410099906],[-71.214219,41.58402399906],[-71.214186,41.58395399906],[-71.214154,41.58390599906],[-71.214115,41.58385599906],[-71.214071,41.58380599906],[-71.214011,41.58375999906],[-71.213934,41.58371799906],[-71.213862,41.58368499906],[-71.213798,41.58364999906],[-71.213735,41.58360799906],[-71.213669,41.58355899906],[-71.213597,41.58351099906],[-71.213475,41.58342499906],[-71.213414,41.58339299906],[-71.21335,41.58336299906],[-71.213278,41.58332799906],[-71.213209,41.58328799906],[-71.213149,41.58324099906],[-71.213049,41.58314199906],[-71.212999,41.58309599906],[-71.21294,41.58305099906],[-71.212865,41.58300899906],[-71.212783,41.58297599906],[-71.212704,41.58294799906],[-71.212621,41.58292499906],[-71.212534,41.58290699906],[-71.21253249243222,41.58290677516379],[-71.223413,41.56139199906]]]}}"}, +{"type": "blockgroup", "typeId": 501021, "areaId": 29377, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.459231,41.58361099906],[-71.459133,41.58365499906],[-71.458734,41.58383499906],[-71.458661,41.58381099906],[-71.458616,41.58378799906],[-71.458557,41.58375099906],[-71.458473,41.58368199906],[-71.458444,41.58366299906],[-71.458366,41.58362299906],[-71.458298,41.58357699906],[-71.458247,41.58352699906],[-71.458245,41.58348399906],[-71.458279,41.58341899906],[-71.458349,41.58335599906],[-71.458404,41.58332099906],[-71.458408,41.58326799906],[-71.458366,41.58322399906],[-71.458305,41.58319499906],[-71.458248,41.58316799906],[-71.458199,41.58315699906],[-71.458133,41.58313599906],[-71.457983,41.58307099906],[-71.457929,41.58303499906],[-71.457871,41.58297099906],[-71.457827,41.58283399906],[-71.457783,41.58278999906],[-71.457693,41.58274799906],[-71.457533,41.58271599906],[-71.457432,41.58270399906],[-71.457347,41.58270499906],[-71.457243,41.58272099906],[-71.457185,41.58273799906],[-71.456233,41.58242499906],[-71.4558,41.58228899906],[-71.454675,41.58223999906],[-71.454275,41.58225899906],[-71.453767,41.58228999906],[-71.453212,41.58221999906],[-71.452641,41.58200999906],[-71.452083,41.58165399906],[-71.451709,41.58111199906],[-71.451321,41.58067899906],[-71.451117,41.58022499906],[-71.451085,41.58019499906],[-71.450402,41.57956099906],[-71.449751,41.57901399906],[-71.449287,41.57861099906],[-71.448809,41.57830299906],[-71.448366,41.57794499906],[-71.447676,41.57761299906],[-71.447079,41.57750999906],[-71.446506,41.57720899906],[-71.446029,41.57696199906],[-71.44538,41.57665899906],[-71.444995,41.57647699906],[-71.444099,41.57611999906],[-71.44342,41.57586099906],[-71.442506,41.57547399906],[-71.442403,41.57543399906],[-71.441518,41.57505999906],[-71.438198,41.57366299906],[-71.437093,41.57319799906],[-71.435681,41.57263699906],[-71.435711,41.57473699906],[-71.436218,41.57665099906],[-71.435914,41.57767399906],[-71.43067,41.58214599906],[-71.429808,41.58276699906],[-71.429592,41.58292199906],[-71.429621,41.58396599906],[-71.429787,41.58388999906],[-71.429942,41.58380799906],[-71.430013,41.58376599906],[-71.430144,41.58367499906],[-71.430254,41.58358999906],[-71.430354,41.58350599906],[-71.430428,41.58346399906],[-71.430482,41.58346599906],[-71.430537,41.58350399906],[-71.430619,41.58351299906],[-71.430637,41.58349999906],[-71.430731,41.58350299906],[-71.430805,41.58349699906],[-71.431024,41.58343899906],[-71.431096,41.58341299906],[-71.431166,41.58339299906],[-71.43124,41.58337699906],[-71.431326,41.58337199906],[-71.431397,41.58339299906],[-71.431461,41.58342299906],[-71.431519,41.58346199906],[-71.431568,41.58351199906],[-71.431601,41.58356799906],[-71.431623,41.58363199906],[-71.431666,41.58379599906],[-71.431725,41.58397099906],[-71.431725,41.58402499906],[-71.431735,41.58408399906],[-71.431758,41.58414599906],[-71.431815,41.58425899906],[-71.431951,41.58446599906],[-71.432041,41.58463299906],[-71.432063,41.58468699906],[-71.432111,41.58473499906],[-71.432169,41.58477299906],[-71.433205,41.58484299906],[-71.433792,41.58504499906],[-71.434288,41.58522399906],[-71.435104,41.58549899906],[-71.435028,41.58567399906],[-71.434921,41.58611699906],[-71.434906,41.58671599906],[-71.434898,41.58674599906],[-71.434952,41.58723399906],[-71.434944,41.58739899906],[-71.434866,41.58762299906],[-71.434786,41.58785099906],[-71.434303,41.58924099906],[-71.434296,41.58933299906],[-71.434296,41.58944699906],[-71.434311,41.58947799906],[-71.434349,41.58954599906],[-71.434608,41.58969099906],[-71.434692,41.58973299906],[-71.435722,41.59023299906],[-71.436287,41.59048799906],[-71.436829,41.59070999906],[-71.437172,41.59080499906],[-71.437439,41.59086199906],[-71.437683,41.59088899906],[-71.438019,41.59091599906],[-71.438454,41.59093099906],[-71.438866,41.59095799906],[-71.439194,41.59099999906],[-71.439629,41.59114799906],[-71.440033,41.59129299906],[-71.440849,41.59157599906],[-71.441093,41.59166699906],[-71.441177,41.59169799906],[-71.441425,41.59176899906],[-71.441551,41.59180499906],[-71.44164,41.59182499906],[-71.441902,41.59188499906],[-71.44223,41.59193399906],[-71.442253,41.59194199906],[-71.442619,41.59199099906],[-71.443077,41.59208699906],[-71.443497,41.59224299906],[-71.44381,41.59239999906],[-71.44389,41.59244299906],[-71.444305,41.59266299906],[-71.444824,41.59296399906],[-71.444969,41.59305199906],[-71.445091,41.59309799906],[-71.445137,41.59310899906],[-71.445297,41.59314699906],[-71.445396,41.59316299906],[-71.44574,41.59323099906],[-71.445816,41.59324299906],[-71.44614,41.59330699906],[-71.44632,41.59334199906],[-71.446396,41.59336499906],[-71.446457,41.59339099906],[-71.446558,41.59344599906],[-71.446732,41.59353999906],[-71.4468,41.59358599906],[-71.446869,41.59363899906],[-71.447159,41.59386399906],[-71.447227,41.59392199906],[-71.447418,41.59405499906],[-71.447456,41.59408599906],[-71.447571,41.59417699906],[-71.447685,41.59427999906],[-71.447731,41.59433399906],[-71.447784,41.59438699906],[-71.447823,41.59444399906],[-71.447899,41.59457399906],[-71.447929,41.59464299906],[-71.447969,41.59471099906],[-71.448029,41.59483699906],[-71.448067,41.59492899906],[-71.44809,41.59502399906],[-71.44812,41.59511899906],[-71.448143,41.59521499906],[-71.448158,41.59531399906],[-71.448227,41.59562699906],[-71.448257,41.59573399906],[-71.448334,41.59595099906],[-71.448395,41.59605399906],[-71.448463,41.59614899906],[-71.448547,41.59623699906],[-71.448639,41.59632099906],[-71.44873,41.59638899906],[-71.447558,41.59656499906],[-71.446466,41.59676199906],[-71.445644,41.59686999906],[-71.444989,41.59698799906],[-71.444191,41.59717599906],[-71.447011,41.59823799906],[-71.453491,41.60122999906],[-71.453806,41.60136999906],[-71.454573,41.60195099906],[-71.454551,41.60223099906],[-71.454687,41.60229099906],[-71.454895,41.59910599906],[-71.45491,41.59892999906],[-71.455025,41.59844199906],[-71.455101,41.59814099906],[-71.45533,41.59733199906],[-71.45578,41.59577899906],[-71.456021,41.59498199906],[-71.456512,41.59336099906],[-71.456729,41.59262899906],[-71.457359,41.59051499906],[-71.457463,41.59017799906],[-71.457474,41.59014099906],[-71.457741,41.58922999906],[-71.457901,41.58864999906],[-71.458115,41.58785599906],[-71.45845,41.58654399906],[-71.458733,41.58548699906],[-71.458832,41.58509799906],[-71.458916,41.58478199906],[-71.458984,41.58450699906],[-71.459231,41.58361099906]]]}}"}, +{"type": "blockgroup", "typeId": 501022, "areaId": 29378, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.522429,41.60256599906],[-71.521988,41.60111799906],[-71.521977,41.60108299906],[-71.521904,41.60084199906],[-71.521796,41.60061599906],[-71.521602,41.60024699906],[-71.521355,41.59973299906],[-71.521232,41.59950999906],[-71.521216,41.59947899906],[-71.520366,41.59783899906],[-71.520048,41.59725299906],[-71.519909,41.59697999906],[-71.519572,41.59631999906],[-71.519294,41.59579199906],[-71.519032,41.59525699906],[-71.518568,41.59434599906],[-71.518433,41.59403999906],[-71.518105,41.59407399906],[-71.517593,41.59410099906],[-71.516884,41.59413099906],[-71.516151,41.59418499906],[-71.515991,41.59419599906],[-71.515411,41.59422299906],[-71.51474,41.59426499906],[-71.514191,41.59429599906],[-71.513817,41.59430299906],[-71.513412,41.59429599906],[-71.513184,41.59426899906],[-71.51284,41.59424599906],[-71.512604,41.59420799906],[-71.512428,41.59419299906],[-71.512253,41.59418899906],[-71.510506,41.59424599906],[-71.510094,41.59429599906],[-71.509872,41.59435699906],[-71.509621,41.59447099906],[-71.509033,41.59477199906],[-71.508888,41.59482599906],[-71.508728,41.59484899906],[-71.508217,41.59485199906],[-71.507957,41.59484499906],[-71.507561,41.59484099906],[-71.506935,41.59484499906],[-71.50631,41.59483299906],[-71.505623,41.59484099906],[-71.505185,41.59483399906],[-71.504868,41.59482199906],[-71.50445,41.59481599906],[-71.504349,41.59481399906],[-71.5038,41.59481799906],[-71.503357,41.59482199906],[-71.502251,41.59480299906],[-71.501678,41.59478799906],[-71.501114,41.59476099906],[-71.500938,41.59474199906],[-71.500778,41.59472699906],[-71.500328,41.59466899906],[-71.499474,41.59459299906],[-71.499275,41.59456999906],[-71.499229,41.59455899906],[-71.499168,41.59453199906],[-71.499039,41.59447899906],[-71.498962,41.59443299906],[-71.498901,41.59439499906],[-71.498856,41.59436799906],[-71.49879,41.59432299906],[-71.498726,41.59428399906],[-71.498444,41.59409299906],[-71.498205,41.59391599906],[-71.498192,41.59390599906],[-71.49791,41.59374599906],[-71.497688,41.59363599906],[-71.497612,41.59360999906],[-71.497528,41.59358199906],[-71.49736,41.59354799906],[-71.497177,41.59352899906],[-71.497025,41.59353999906],[-71.49675,41.59358199906],[-71.496386,41.59365599906],[-71.495544,41.59391399906],[-71.494759,41.59412799906],[-71.493874,41.59435299906],[-71.493111,41.59455899906],[-71.492828,41.59463099906],[-71.492645,41.59465399906],[-71.492477,41.59465799906],[-71.492271,41.59463099906],[-71.49205,41.59457799906],[-71.491837,41.59449399906],[-71.491577,41.59434899906],[-71.491112,41.59410899906],[-71.490746,41.59399799906],[-71.490501,41.59395599906],[-71.489967,41.59392199906],[-71.4898,41.59393699906],[-71.489616,41.59390299906],[-71.489319,41.59379199906],[-71.488831,41.59357499906],[-71.488007,41.59316599906],[-71.487663,41.59299099906],[-71.487462,41.59289399906],[-71.486748,41.59255199906],[-71.486549,41.59247199906],[-71.486259,41.59236899906],[-71.485847,41.59223199906],[-71.485613,41.59216499906],[-71.485555,41.59215099906],[-71.485428,41.59211699906],[-71.484567,41.59185799906],[-71.484138,41.59173599906],[-71.48394,41.59167099906],[-71.483757,41.59160199906],[-71.48365,41.59155299906],[-71.483421,41.59146499906],[-71.483246,41.59141199906],[-71.483002,41.59136199906],[-71.482925,41.59135099906],[-71.482773,41.59134299906],[-71.482346,41.59134299906],[-71.481972,41.59132799906],[-71.481697,41.59129299906],[-71.48156,41.59126999906],[-71.481454,41.59124599906],[-71.481171,41.59117899906],[-71.480784,41.59107399906],[-71.480606,41.59102599906],[-71.478867,41.59059499906],[-71.478073,41.59040499906],[-71.477673,41.59029999906],[-71.477402,41.59022899906],[-71.477089,41.59014099906],[-71.476929,41.59009199906],[-71.475304,41.58955399906],[-71.474382,41.58925199906],[-71.474068,41.58914899906],[-71.473732,41.58904999906],[-71.473577,41.58900699906],[-71.473457,41.58897399906],[-71.47332,41.58893199906],[-71.473206,41.58888599906],[-71.473099,41.58883299906],[-71.472957,41.58875499906],[-71.472839,41.58867999906],[-71.472702,41.58857699906],[-71.472511,41.58840599906],[-71.472458,41.58834099906],[-71.472351,41.58824899906],[-71.472305,41.58821899906],[-71.472214,41.58814599906],[-71.47216,41.58810799906],[-71.472054,41.58805099906],[-71.471947,41.58801699906],[-71.47187,41.58800499906],[-71.471794,41.58800099906],[-71.471649,41.58800099906],[-71.471504,41.58800899906],[-71.47142,41.58802399906],[-71.471268,41.58805799906],[-71.470413,41.58827599906],[-71.470329,41.58830299906],[-71.470238,41.58832599906],[-71.470139,41.58835999906],[-71.469849,41.58847399906],[-71.469498,41.58862299906],[-71.469322,41.58869199906],[-71.469009,41.58882499906],[-71.468475,41.58907299906],[-71.468109,41.58923699906],[-71.467911,41.58930999906],[-71.467758,41.58935499906],[-71.467705,41.58937499906],[-71.46759,41.58940499906],[-71.467415,41.58943899906],[-71.467163,41.58946199906],[-71.46682,41.58947799906],[-71.465622,41.58954599906],[-71.465508,41.58954999906],[-71.465302,41.58953499906],[-71.465088,41.58948499906],[-71.464836,41.58940499906],[-71.464666,41.58933799906],[-71.464554,41.58929399906],[-71.464157,41.58911499906],[-71.46389,41.58900099906],[-71.46376,41.58893999906],[-71.463562,41.58883999906],[-71.463423,41.58875599906],[-71.463326,41.58868799906],[-71.463181,41.58856999906],[-71.463112,41.58850499906],[-71.463036,41.58844799906],[-71.462959,41.58840599906],[-71.462883,41.58836399906],[-71.462799,41.58832599906],[-71.462639,41.58826399906],[-71.461647,41.58789099906],[-71.460709,41.58753599906],[-71.458977,41.58679999906],[-71.45903,41.58668499906],[-71.459053,41.58661999906],[-71.459084,41.58655499906],[-71.459129,41.58642599906],[-71.45916,41.58629599906],[-71.459175,41.58618499906],[-71.459152,41.58603699906],[-71.459129,41.58594499906],[-71.459061,41.58573499906],[-71.459023,41.58561699906],[-71.458977,41.58549899906],[-71.458832,41.58509799906],[-71.458733,41.58548699906],[-71.45845,41.58654399906],[-71.458115,41.58785599906],[-71.457901,41.58864999906],[-71.457741,41.58922999906],[-71.457474,41.59014099906],[-71.457463,41.59017799906],[-71.457359,41.59051499906],[-71.456729,41.59262899906],[-71.456512,41.59336099906],[-71.456021,41.59498199906],[-71.45578,41.59577899906],[-71.45533,41.59733199906],[-71.455101,41.59814099906],[-71.455025,41.59844199906],[-71.45491,41.59892999906],[-71.454895,41.59910599906],[-71.454687,41.60229099906],[-71.456926,41.60327299906],[-71.456963,41.60328899906],[-71.457011,41.60326699906],[-71.457063,41.60324499906],[-71.457132,41.60320299906],[-71.457189,41.60315999906],[-71.457243,41.60310499906],[-71.457288,41.60304999906],[-71.457392,41.60294299906],[-71.457434,41.60290599906],[-71.458147,41.60027699906],[-71.459143,41.60013699906],[-71.464043,41.59966699906],[-71.463616,41.60067499906],[-71.460754,41.60169299906],[-71.461114,41.60320599906],[-71.462252,41.60346899906],[-71.463059,41.60364999906],[-71.463867,41.60381399906],[-71.465392,41.60418899906],[-71.466319,41.60431999906],[-71.466884,41.60401099906],[-71.467021,41.60376499906],[-71.466683,41.60037699906],[-71.465765,41.60048299906],[-71.465654,41.60008499906],[-71.466202,41.59992599906],[-71.467054,41.59984799906],[-71.467786,41.59982299906],[-71.468167,41.59980499906],[-71.468385,41.59978499906],[-71.468866,41.59976699906],[-71.469224,41.59978999906],[-71.469554,41.59986099906],[-71.470019,41.59994199906],[-71.470498,41.60005799906],[-71.470782,41.60012199906],[-71.47111,41.60014799906],[-71.471213,41.60033599906],[-71.471371,41.60069499906],[-71.47248,41.60263399906],[-71.473635,41.60234699906],[-71.473853,41.60217599906],[-71.474241,41.60233299906],[-71.474949,41.60228099906],[-71.475332,41.60218999906],[-71.476294,41.60201399906],[-71.476951,41.60187699906],[-71.477622,41.60180099906],[-71.478339,41.60172499906],[-71.478934,41.60170899906],[-71.479438,41.60171699906],[-71.479703,41.60210099906],[-71.480438,41.60231099906],[-71.48047,41.60231999906],[-71.480496,41.60234299906],[-71.480812,41.60254699906],[-71.480911,41.60256599906],[-71.481026,41.60259599906],[-71.481827,41.60287899906],[-71.482765,41.60322599906],[-71.483559,41.60348899906],[-71.483672,41.60352599906],[-71.484121,41.60369399906],[-71.484228,41.60372099906],[-71.484352,41.60373499906],[-71.484458,41.60373899906],[-71.484454,41.60367799906],[-71.484427,41.60259099906],[-71.485272,41.60258299906],[-71.485361,41.60257399906],[-71.485453,41.60256599906],[-71.486071,41.60256799906],[-71.48781,41.60257399906],[-71.488451,41.60257899906],[-71.490141,41.60259199906],[-71.490538,41.60259499906],[-71.490892,41.60259699906],[-71.491245,41.60259999906],[-71.491614,41.60260299906],[-71.494466,41.60262499906],[-71.494662,41.60262699906],[-71.495541,41.60263299906],[-71.495697,41.60263399906],[-71.495838,41.60263599906],[-71.49646,41.60263999906],[-71.497851,41.60265099906],[-71.498095,41.60265299906],[-71.498405,41.60265499906],[-71.498518,41.60265599906],[-71.499588,41.60264699906],[-71.506515,41.60262299906],[-71.510712,41.60262499906],[-71.51575,41.60262799906],[-71.517761,41.60262899906],[-71.519386,41.60262299906],[-71.520295,41.60261699906],[-71.520447,41.60261599906],[-71.520491,41.60261599906],[-71.52071,41.60261699906],[-71.522076,41.60258299906],[-71.522429,41.60256599906]]]}}"}, +{"type": "blockgroup", "typeId": 501031, "areaId": 29379, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.457721,41.61462999906],[-71.457681,41.61421399906],[-71.45764,41.61377999906],[-71.457631,41.61368099906],[-71.45756,41.61313099906],[-71.457418,41.61243299906],[-71.457363,41.61220799906],[-71.457355,41.61215399906],[-71.457319,41.61197899906],[-71.457235,41.61161599906],[-71.457025,41.61080399906],[-71.456999,41.61073099906],[-71.456979,41.61067599906],[-71.456585,41.60956699906],[-71.456487,41.60928799906],[-71.456374,41.60895599906],[-71.455958,41.60779699906],[-71.455732,41.60716599906],[-71.455658,41.60719699906],[-71.455147,41.60728099906],[-71.454781,41.60732999906],[-71.454048,41.60744099906],[-71.453062,41.60758299906],[-71.452354,41.60767699906],[-71.452122,41.60771299906],[-71.451912,41.60774599906],[-71.451759,41.60776799906],[-71.451446,41.60781299906],[-71.451225,41.60784499906],[-71.450974,41.60789099906],[-71.450508,41.60797899906],[-71.450333,41.60800899906],[-71.449821,41.60808199906],[-71.449704,41.60809299906],[-71.448792,41.60818499906],[-71.447906,41.60824599906],[-71.447388,41.60827999906],[-71.446732,41.60832999906],[-71.445808,41.60843299906],[-71.445389,41.60850499906],[-71.444962,41.60862699906],[-71.443928,41.60903299906],[-71.443321,41.60926799906],[-71.443062,41.60935599906],[-71.4422,41.60946699906],[-71.441849,41.60950099906],[-71.441643,41.60951599906],[-71.441414,41.60951999906],[-71.44117,41.60950899906],[-71.440903,41.60948599906],[-71.440552,41.60944699906],[-71.440018,41.60937499906],[-71.439941,41.60936699906],[-71.43959,41.60930999906],[-71.439352,41.60927799906],[-71.439308,41.60927199906],[-71.439163,41.60925699906],[-71.43895,41.60924899906],[-71.438843,41.60924899906],[-71.438614,41.60926399906],[-71.438423,41.60927999906],[-71.437943,41.60933299906],[-71.437294,41.60942499906],[-71.435959,41.60961199906],[-71.435661,41.60965299906],[-71.435036,41.60974899906],[-71.434863,41.60979199906],[-71.434802,41.60982099906],[-71.434745,41.60986199906],[-71.434708,41.60989999906],[-71.43468,41.60994099906],[-71.434669,41.60998199906],[-71.434669,41.61002399906],[-71.4347,41.61018799906],[-71.434761,41.61035199906],[-71.434853,41.61057699906],[-71.434914,41.61074399906],[-71.434952,41.61090499906],[-71.434959,41.61097699906],[-71.434959,41.61104999906],[-71.434975,41.61122499906],[-71.434975,41.61131299906],[-71.434967,41.61138499906],[-71.434967,41.61145799906],[-71.434944,41.61169799906],[-71.434875,41.61196099906],[-71.434799,41.61215599906],[-71.434776,41.61219399906],[-71.4347,41.61236199906],[-71.434669,41.61246099906],[-71.434631,41.61257899906],[-71.434601,41.61271299906],[-71.434586,41.61286199906],[-71.434586,41.61307499906],[-71.43463,41.61375299906],[-71.434654,41.61403999906],[-71.434662,41.61423099906],[-71.434677,41.61436099906],[-71.434692,41.61453599906],[-71.434837,41.61519999906],[-71.434906,41.61548999906],[-71.435036,41.61607699906],[-71.435242,41.61693999906],[-71.43531,41.61722199906],[-71.435478,41.61781699906],[-71.437256,41.61754599906],[-71.438118,41.61741599906],[-71.438942,41.61729799906],[-71.439789,41.61717199906],[-71.440941,41.61701199906],[-71.441071,41.61700099906],[-71.441208,41.61700399906],[-71.441338,41.61702299906],[-71.441391,41.61703499906],[-71.44149,41.61706499906],[-71.441605,41.61712299906],[-71.441718,41.61720999906],[-71.441887,41.61733199906],[-71.441956,41.61738599906],[-71.442444,41.61782499906],[-71.442833,41.61806899906],[-71.443077,41.61821699906],[-71.443275,41.61835099906],[-71.443405,41.61854899906],[-71.443642,41.61933899906],[-71.443726,41.61968199906],[-71.443871,41.61983899906],[-71.443977,41.61996799906],[-71.444008,41.62000699906],[-71.444374,41.62012499906],[-71.444801,41.62026999906],[-71.445114,41.62043399906],[-71.445175,41.62039599906],[-71.44545,41.62030799906],[-71.445633,41.62023499906],[-71.445854,41.62009799906],[-71.44606,41.61998399906],[-71.446358,41.61975899906],[-71.446381,41.61974699906],[-71.446426,41.61971999906],[-71.446655,41.61968599906],[-71.447151,41.61964399906],[-71.448769,41.61946099906],[-71.45002,41.61931599906],[-71.450279,41.61926999906],[-71.450569,41.61918999906],[-71.451218,41.61905299906],[-71.452232,41.61882399906],[-71.452972,41.61865599906],[-71.453072,41.61862899906],[-71.453587,41.61851099906],[-71.454323,41.61834299906],[-71.454758,41.61823699906],[-71.455421,41.61811799906],[-71.45575,41.61808399906],[-71.455948,41.61806899906],[-71.456108,41.61804999906],[-71.456139,41.61787399906],[-71.456291,41.61744299906],[-71.456497,41.61700799906],[-71.456711,41.61651199906],[-71.456802,41.61626799906],[-71.456917,41.61598999906],[-71.457146,41.61538699906],[-71.457283,41.61500899906],[-71.457315,41.61490199906],[-71.45739,41.61465099906],[-71.457443,41.61463199906],[-71.457542,41.61463499906],[-71.457626,41.61463199906],[-71.457721,41.61462999906]]]}}"}, +{"type": "blockgroup", "typeId": 501032, "areaId": 29380, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.48047,41.60231999906],[-71.480438,41.60231099906],[-71.479703,41.60210099906],[-71.479438,41.60171699906],[-71.478934,41.60170899906],[-71.478339,41.60172499906],[-71.477622,41.60180099906],[-71.476951,41.60187699906],[-71.476294,41.60201399906],[-71.475332,41.60218999906],[-71.474949,41.60228099906],[-71.474241,41.60233299906],[-71.473853,41.60217599906],[-71.473635,41.60234699906],[-71.47248,41.60263399906],[-71.471371,41.60069499906],[-71.471213,41.60033599906],[-71.47111,41.60014799906],[-71.470782,41.60012199906],[-71.470498,41.60005799906],[-71.470019,41.59994199906],[-71.469554,41.59986099906],[-71.469224,41.59978999906],[-71.468866,41.59976699906],[-71.468385,41.59978499906],[-71.468167,41.59980499906],[-71.467786,41.59982299906],[-71.467054,41.59984799906],[-71.466202,41.59992599906],[-71.465654,41.60008499906],[-71.465765,41.60048299906],[-71.466683,41.60037699906],[-71.467021,41.60376499906],[-71.466884,41.60401099906],[-71.466319,41.60431999906],[-71.465392,41.60418899906],[-71.463867,41.60381399906],[-71.463059,41.60364999906],[-71.462252,41.60346899906],[-71.461114,41.60320599906],[-71.460754,41.60169299906],[-71.463616,41.60067499906],[-71.464043,41.59966699906],[-71.459143,41.60013699906],[-71.458147,41.60027699906],[-71.457434,41.60290599906],[-71.457392,41.60294299906],[-71.457288,41.60304999906],[-71.457243,41.60310499906],[-71.457189,41.60315999906],[-71.457132,41.60320299906],[-71.457063,41.60324499906],[-71.457011,41.60326699906],[-71.456963,41.60328899906],[-71.456926,41.60327299906],[-71.454687,41.60229099906],[-71.454551,41.60223099906],[-71.454573,41.60195099906],[-71.453806,41.60136999906],[-71.453491,41.60122999906],[-71.447011,41.59823799906],[-71.444191,41.59717599906],[-71.444989,41.59698799906],[-71.445644,41.59686999906],[-71.446466,41.59676199906],[-71.447558,41.59656499906],[-71.44873,41.59638899906],[-71.448639,41.59632099906],[-71.448547,41.59623699906],[-71.448463,41.59614899906],[-71.448395,41.59605399906],[-71.448334,41.59595099906],[-71.448257,41.59573399906],[-71.448227,41.59562699906],[-71.448158,41.59531399906],[-71.448143,41.59521499906],[-71.44812,41.59511899906],[-71.44809,41.59502399906],[-71.448067,41.59492899906],[-71.448029,41.59483699906],[-71.447969,41.59471099906],[-71.447929,41.59464299906],[-71.447899,41.59457399906],[-71.447823,41.59444399906],[-71.447784,41.59438699906],[-71.447731,41.59433399906],[-71.447685,41.59427999906],[-71.447571,41.59417699906],[-71.447456,41.59408599906],[-71.447418,41.59405499906],[-71.447227,41.59392199906],[-71.447159,41.59386399906],[-71.446869,41.59363899906],[-71.4468,41.59358599906],[-71.446732,41.59353999906],[-71.446558,41.59344599906],[-71.446457,41.59339099906],[-71.446396,41.59336499906],[-71.44632,41.59334199906],[-71.44614,41.59330699906],[-71.445816,41.59324299906],[-71.44574,41.59323099906],[-71.445396,41.59316299906],[-71.445297,41.59314699906],[-71.445137,41.59310899906],[-71.445091,41.59309799906],[-71.444969,41.59305199906],[-71.444824,41.59296399906],[-71.444305,41.59266299906],[-71.44389,41.59244299906],[-71.44381,41.59239999906],[-71.443497,41.59224299906],[-71.443077,41.59208699906],[-71.442619,41.59199099906],[-71.442253,41.59194199906],[-71.44223,41.59193399906],[-71.441902,41.59188499906],[-71.44164,41.59182499906],[-71.441551,41.59180499906],[-71.441425,41.59176899906],[-71.441177,41.59169799906],[-71.441093,41.59166699906],[-71.440849,41.59157599906],[-71.440033,41.59129299906],[-71.439629,41.59114799906],[-71.439194,41.59099999906],[-71.438866,41.59095799906],[-71.438454,41.59093099906],[-71.438019,41.59091599906],[-71.437683,41.59088899906],[-71.437439,41.59086199906],[-71.437172,41.59080499906],[-71.436829,41.59070999906],[-71.436287,41.59048799906],[-71.435722,41.59023299906],[-71.434692,41.58973299906],[-71.434608,41.58969099906],[-71.434349,41.58954599906],[-71.434311,41.58947799906],[-71.434296,41.58944699906],[-71.434296,41.58933299906],[-71.434303,41.58924099906],[-71.434786,41.58785099906],[-71.434866,41.58762299906],[-71.434944,41.58739899906],[-71.434952,41.58723399906],[-71.434898,41.58674599906],[-71.434906,41.58671599906],[-71.434921,41.58611699906],[-71.435028,41.58567399906],[-71.435104,41.58549899906],[-71.434288,41.58522399906],[-71.433792,41.58504499906],[-71.433205,41.58484299906],[-71.432169,41.58477299906],[-71.432111,41.58473499906],[-71.432063,41.58468699906],[-71.432041,41.58463299906],[-71.431951,41.58446599906],[-71.431815,41.58425899906],[-71.431758,41.58414599906],[-71.431735,41.58408399906],[-71.431725,41.58402499906],[-71.431725,41.58397099906],[-71.431666,41.58379599906],[-71.431623,41.58363199906],[-71.431601,41.58356799906],[-71.431568,41.58351199906],[-71.431519,41.58346199906],[-71.431461,41.58342299906],[-71.431397,41.58339299906],[-71.431326,41.58337199906],[-71.43124,41.58337699906],[-71.431166,41.58339299906],[-71.431096,41.58341299906],[-71.431024,41.58343899906],[-71.430805,41.58349699906],[-71.430731,41.58350299906],[-71.430637,41.58349999906],[-71.430619,41.58351299906],[-71.430537,41.58350399906],[-71.430482,41.58346599906],[-71.430428,41.58346399906],[-71.430354,41.58350599906],[-71.430254,41.58358999906],[-71.430144,41.58367499906],[-71.430013,41.58376599906],[-71.429942,41.58380799906],[-71.429787,41.58388999906],[-71.429621,41.58396599906],[-71.429592,41.58292199906],[-71.424068,41.58370199906],[-71.414338,41.58476299906],[-71.405925,41.58499099906],[-71.404101,41.58718899906],[-71.401871,41.58991699906],[-71.401567,41.59923999906],[-71.400958,41.60211999906],[-71.402276,41.60348499906],[-71.41302,41.60378799906],[-71.415149,41.60545499906],[-71.410689,41.60969999906],[-71.408155,41.60886599906],[-71.406837,41.61121599906],[-71.403188,41.60969999906],[-71.400046,41.61599099906],[-71.402884,41.61735499906],[-71.405317,41.62015999906],[-71.405522,41.62233799906],[-71.400654,41.62523799906],[-71.400553,41.62682899906],[-71.40106,41.62902699906],[-71.402683,41.63069499906],[-71.404817,41.63487999906],[-71.407095,41.63439199906],[-71.407768,41.63430799906],[-71.407852,41.63428499906],[-71.408432,41.63418999906],[-71.409874,41.63390699906],[-71.411903,41.63350299906],[-71.412027,41.63347099906],[-71.412109,41.63344999906],[-71.412529,41.63333499906],[-71.412354,41.63285399906],[-71.412254,41.63254899906],[-71.41217,41.63223999906],[-71.41201,41.63185899906],[-71.411972,41.63172499906],[-71.411975,41.63163999906],[-71.411683,41.63115199906],[-71.411797,41.63101199906],[-71.412071,41.63070299906],[-71.412315,41.63044399906],[-71.412405,41.63033799906],[-71.412732,41.62994899906],[-71.412796,41.62987499906],[-71.412827,41.62984799906],[-71.4133,41.62931799906],[-71.413765,41.62878799906],[-71.414696,41.62770499906],[-71.414883,41.62748899906],[-71.415741,41.62650699906],[-71.416443,41.62568299906],[-71.416985,41.62505699906],[-71.41748,41.62446999906],[-71.418152,41.62371399906],[-71.419113,41.62260399906],[-71.419222,41.62247599906],[-71.419762,41.62184099906],[-71.419846,41.62174999906],[-71.420365,41.62113299906],[-71.420441,41.62103999906],[-71.421104,41.62075399906],[-71.421844,41.62044499906],[-71.422806,41.62007499906],[-71.42318,41.61995299906],[-71.423782,41.61976199906],[-71.424316,41.61953699906],[-71.425827,41.61933499906],[-71.426035,41.61930099906],[-71.427635,41.61904099906],[-71.429639,41.61873099906],[-71.429967,41.61870699906],[-71.430195,41.61867499906],[-71.430511,41.61862999906],[-71.432263,41.61835599906],[-71.432443,41.61831299906],[-71.43318,41.61819299906],[-71.434022,41.61806599906],[-71.434759,41.61794599906],[-71.434911,41.61790999906],[-71.434958,41.61788899906],[-71.435282,41.61784799906],[-71.43537,41.61783399906],[-71.435478,41.61781699906],[-71.43531,41.61722199906],[-71.435242,41.61693999906],[-71.435036,41.61607699906],[-71.434906,41.61548999906],[-71.434837,41.61519999906],[-71.434692,41.61453599906],[-71.434677,41.61436099906],[-71.434662,41.61423099906],[-71.434654,41.61403999906],[-71.43463,41.61375299906],[-71.434586,41.61307499906],[-71.434586,41.61286199906],[-71.434601,41.61271299906],[-71.434631,41.61257899906],[-71.434669,41.61246099906],[-71.4347,41.61236199906],[-71.434776,41.61219399906],[-71.434799,41.61215599906],[-71.434875,41.61196099906],[-71.434944,41.61169799906],[-71.434967,41.61145799906],[-71.434967,41.61138499906],[-71.434975,41.61131299906],[-71.434975,41.61122499906],[-71.434959,41.61104999906],[-71.434959,41.61097699906],[-71.434952,41.61090499906],[-71.434914,41.61074399906],[-71.434853,41.61057699906],[-71.434761,41.61035199906],[-71.4347,41.61018799906],[-71.434669,41.61002399906],[-71.434669,41.60998199906],[-71.43468,41.60994099906],[-71.434708,41.60989999906],[-71.434745,41.60986199906],[-71.434802,41.60982099906],[-71.434863,41.60979199906],[-71.435036,41.60974899906],[-71.435661,41.60965299906],[-71.435959,41.60961199906],[-71.437294,41.60942499906],[-71.437943,41.60933299906],[-71.438423,41.60927999906],[-71.438614,41.60926399906],[-71.438843,41.60924899906],[-71.43895,41.60924899906],[-71.439163,41.60925699906],[-71.439308,41.60927199906],[-71.439352,41.60927799906],[-71.43959,41.60930999906],[-71.439941,41.60936699906],[-71.440018,41.60937499906],[-71.440552,41.60944699906],[-71.440903,41.60948599906],[-71.44117,41.60950899906],[-71.441414,41.60951999906],[-71.441643,41.60951599906],[-71.441849,41.60950099906],[-71.4422,41.60946699906],[-71.443062,41.60935599906],[-71.443321,41.60926799906],[-71.443928,41.60903299906],[-71.444962,41.60862699906],[-71.445389,41.60850499906],[-71.445808,41.60843299906],[-71.446732,41.60832999906],[-71.447388,41.60827999906],[-71.447906,41.60824599906],[-71.448792,41.60818499906],[-71.449704,41.60809299906],[-71.449821,41.60808199906],[-71.450333,41.60800899906],[-71.450508,41.60797899906],[-71.450974,41.60789099906],[-71.451225,41.60784499906],[-71.451446,41.60781299906],[-71.451759,41.60776799906],[-71.451912,41.60774599906],[-71.452122,41.60771299906],[-71.452354,41.60767699906],[-71.453062,41.60758299906],[-71.454048,41.60744099906],[-71.454781,41.60732999906],[-71.455147,41.60728099906],[-71.455658,41.60719699906],[-71.455732,41.60716599906],[-71.4554,41.60623099906],[-71.455245,41.60579399906],[-71.455107,41.60543699906],[-71.45501,41.60515499906],[-71.454941,41.60476099906],[-71.454893,41.60462799906],[-71.454788,41.60433599906],[-71.454722,41.60414899906],[-71.454679,41.60395899906],[-71.454637,41.60370699906],[-71.455196,41.60403599906],[-71.455787,41.60437099906],[-71.456169,41.60458399906],[-71.456375,41.60472499906],[-71.456406,41.60474799906],[-71.456429,41.60475899906],[-71.456535,41.60482799906],[-71.456802,41.60497699906],[-71.457017,41.60508199906],[-71.457299,41.60515399906],[-71.457289,41.60521499906],[-71.457619,41.60536199906],[-71.457962,41.60549899906],[-71.458664,41.60575899906],[-71.45929,41.60598399906],[-71.459358,41.60600699906],[-71.460274,41.60633099906],[-71.460739,41.60649899906],[-71.461472,41.60677299906],[-71.461716,41.60686499906],[-71.462463,41.60716599906],[-71.462631,41.60723499906],[-71.462967,41.60735699906],[-71.463019,41.60737799906],[-71.463203,41.60745199906],[-71.463585,41.60759399906],[-71.463783,41.60765799906],[-71.464119,41.60774599906],[-71.464325,41.60779199906],[-71.464363,41.60779999906],[-71.464485,41.60782199906],[-71.464607,41.60784899906],[-71.465225,41.60796399906],[-71.465526,41.60801399906],[-71.466232,41.60813099906],[-71.466525,41.60818999906],[-71.466858,41.60826099906],[-71.467316,41.60837199906],[-71.467659,41.60846699906],[-71.468155,41.60861599906],[-71.468498,41.60872999906],[-71.46891,41.60887899906],[-71.469429,41.60907699906],[-71.470247,41.60939999906],[-71.470606,41.60954199906],[-71.470963,41.60968599906],[-71.471291,41.60981799906],[-71.471535,41.60992099906],[-71.471863,41.61005799906],[-71.47197,41.61009599906],[-71.472282,41.61022899906],[-71.472504,41.61033599906],[-71.472694,41.61043899906],[-71.472786,41.61049699906],[-71.472855,41.61054599906],[-71.472893,41.61057999906],[-71.472923,41.61059999906],[-71.472984,41.61065299906],[-71.473053,41.61072199906],[-71.47319,41.61087399906],[-71.473343,41.61109199906],[-71.473488,41.61136199906],[-71.473564,41.61151899906],[-71.473694,41.61181299906],[-71.473793,41.61208299906],[-71.473862,41.61224699906],[-71.473907,41.61242699906],[-71.473923,41.61252199906],[-71.473938,41.61269399906],[-71.47407,41.61269199906],[-71.474194,41.61267799906],[-71.474245,41.61266199906],[-71.47427,41.61265499906],[-71.474423,41.61260999906],[-71.474439,41.61260399906],[-71.475022,41.61238499906],[-71.475494,41.61207399906],[-71.475552,41.61203099906],[-71.475793,41.61154799906],[-71.476204,41.61075099906],[-71.476984,41.60923899906],[-71.47709,41.60902499906],[-71.477952,41.60730399906],[-71.478177,41.60685399906],[-71.478458,41.60629299906],[-71.479607,41.60403499906],[-71.480058,41.60313999906],[-71.48047,41.60231999906]]]}}"}, +{"type": "blockgroup", "typeId": 501033, "areaId": 29381, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.472893,41.61057999906],[-71.472855,41.61054599906],[-71.472786,41.61049699906],[-71.472694,41.61043899906],[-71.472504,41.61033599906],[-71.472282,41.61022899906],[-71.47197,41.61009599906],[-71.471863,41.61005799906],[-71.471535,41.60992099906],[-71.471291,41.60981799906],[-71.470963,41.60968599906],[-71.470606,41.60954199906],[-71.470247,41.60939999906],[-71.469429,41.60907699906],[-71.46891,41.60887899906],[-71.468498,41.60872999906],[-71.468155,41.60861599906],[-71.467659,41.60846699906],[-71.467316,41.60837199906],[-71.466858,41.60826099906],[-71.466525,41.60818999906],[-71.466232,41.60813099906],[-71.465526,41.60801399906],[-71.465225,41.60796399906],[-71.464607,41.60784899906],[-71.464485,41.60782199906],[-71.464363,41.60779999906],[-71.464325,41.60779199906],[-71.464119,41.60774599906],[-71.463783,41.60765799906],[-71.463585,41.60759399906],[-71.463203,41.60745199906],[-71.463019,41.60737799906],[-71.462967,41.60735699906],[-71.462631,41.60723499906],[-71.462463,41.60716599906],[-71.461716,41.60686499906],[-71.461472,41.60677299906],[-71.460739,41.60649899906],[-71.460274,41.60633099906],[-71.459358,41.60600699906],[-71.45929,41.60598399906],[-71.458664,41.60575899906],[-71.457962,41.60549899906],[-71.457619,41.60536199906],[-71.457289,41.60521499906],[-71.457299,41.60515399906],[-71.457017,41.60508199906],[-71.456802,41.60497699906],[-71.456535,41.60482799906],[-71.456429,41.60475899906],[-71.456406,41.60474799906],[-71.456375,41.60472499906],[-71.456169,41.60458399906],[-71.455787,41.60437099906],[-71.455196,41.60403599906],[-71.454637,41.60370699906],[-71.454679,41.60395899906],[-71.454722,41.60414899906],[-71.454788,41.60433599906],[-71.454893,41.60462799906],[-71.454941,41.60476099906],[-71.45501,41.60515499906],[-71.455107,41.60543699906],[-71.455245,41.60579399906],[-71.4554,41.60623099906],[-71.455732,41.60716599906],[-71.455958,41.60779699906],[-71.456374,41.60895599906],[-71.456487,41.60928799906],[-71.456585,41.60956699906],[-71.456979,41.61067599906],[-71.456999,41.61073099906],[-71.457025,41.61080399906],[-71.457235,41.61161599906],[-71.457319,41.61197899906],[-71.457355,41.61215399906],[-71.457363,41.61220799906],[-71.457418,41.61243299906],[-71.45756,41.61313099906],[-71.457631,41.61368099906],[-71.45764,41.61377999906],[-71.457695,41.61377699906],[-71.458382,41.61375399906],[-71.4589,41.61371199906],[-71.459305,41.61364699906],[-71.459641,41.61355599906],[-71.459747,41.61352199906],[-71.459854,41.61350599906],[-71.459938,41.61352199906],[-71.460083,41.61357899906],[-71.460297,41.61368199906],[-71.460533,41.61374299906],[-71.460709,41.61375399906],[-71.460869,41.61372799906],[-71.461342,41.61357499906],[-71.461754,41.61345299906],[-71.46183,41.61343799906],[-71.462166,41.61336899906],[-71.462357,41.61336099906],[-71.462555,41.61337699906],[-71.462845,41.61342199906],[-71.463112,41.61350299906],[-71.463387,41.61356399906],[-71.463516,41.61331599906],[-71.463539,41.61328099906],[-71.463593,41.61297199906],[-71.463654,41.61272799906],[-71.463722,41.61260999906],[-71.463852,41.61250699906],[-71.463997,41.61242699906],[-71.464203,41.61235799906],[-71.464409,41.61232399906],[-71.464755,41.61225999906],[-71.464783,41.61225499906],[-71.464973,41.61220599906],[-71.465126,41.61214799906],[-71.465263,41.61206099906],[-71.46537,41.61195399906],[-71.465454,41.61182399906],[-71.465569,41.61151099906],[-71.465691,41.61111099906],[-71.465836,41.61067599906],[-71.465935,41.61027499906],[-71.466087,41.61032099906],[-71.466447,41.61045699906],[-71.466728,41.61057299906],[-71.466896,41.61064099906],[-71.467392,41.61086299906],[-71.468018,41.61112199906],[-71.468773,41.61144299906],[-71.469429,41.61171699906],[-71.469818,41.61191899906],[-71.470284,41.61221699906],[-71.470406,41.61209099906],[-71.470558,41.61197299906],[-71.470818,41.61178999906],[-71.471146,41.61160999906],[-71.471606,41.61132299906],[-71.472016,41.61108099906],[-71.472412,41.61084699906],[-71.472725,41.61066399906],[-71.472893,41.61057999906]]]}}"}, +{"type": "blockgroup", "typeId": 501034, "areaId": 29382, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.488077,41.61617399906],[-71.488065,41.61610599906],[-71.488039,41.61604799906],[-71.487947,41.61592399906],[-71.487889,41.61585399906],[-71.487826,41.61578999906],[-71.487771,41.61572999906],[-71.487724,41.61562699906],[-71.487777,41.61556399906],[-71.487844,41.61553499906],[-71.487912,41.61550299906],[-71.487965,41.61545599906],[-71.487999,41.61539999906],[-71.488021,41.61533699906],[-71.488036,41.61527199906],[-71.488031,41.61521299906],[-71.488005,41.61516899906],[-71.487944,41.61509999906],[-71.487888,41.61504199906],[-71.487831,41.61498699906],[-71.487765,41.61494399906],[-71.487686,41.61491699906],[-71.487613,41.61487899906],[-71.487569,41.61482899906],[-71.487556,41.61476899906],[-71.487559,41.61470099906],[-71.487567,41.61462999906],[-71.487559,41.61455399906],[-71.487567,41.61447899906],[-71.487609,41.61440499906],[-71.487632,41.61433499906],[-71.487631,41.61426499906],[-71.48761,41.61420099906],[-71.487546,41.61415399906],[-71.487456,41.61412099906],[-71.487355,41.61409499906],[-71.487264,41.61406999906],[-71.487195,41.61403699906],[-71.487161,41.61397999906],[-71.487178,41.61391099906],[-71.487223,41.61384699906],[-71.487286,41.61378599906],[-71.487356,41.61372099906],[-71.487419,41.61365399906],[-71.487479,41.61359099906],[-71.487515,41.61353599906],[-71.487503,41.61348699906],[-71.487443,41.61344399906],[-71.487358,41.61342699906],[-71.487279,41.61345999906],[-71.487175,41.61345899906],[-71.487094,41.61343099906],[-71.487005,41.61340699906],[-71.486925,41.61337999906],[-71.486851,41.61334499906],[-71.486746,41.61331599906],[-71.486624,41.61329999906],[-71.486511,41.61329599906],[-71.486413,41.61328899906],[-71.486332,41.61327599906],[-71.486273,41.61324099906],[-71.486215,41.61318399906],[-71.486148,41.61312299906],[-71.486069,41.61306999906],[-71.485985,41.61303099906],[-71.485873,41.61299999906],[-71.485765,41.61298699906],[-71.485652,41.61298599906],[-71.485538,41.61298699906],[-71.485451,41.61297399906],[-71.485403,41.61292999906],[-71.485384,41.61287199906],[-71.485399,41.61281699906],[-71.485436,41.61275499906],[-71.485461,41.61269199906],[-71.485443,41.61263099906],[-71.485403,41.61257199906],[-71.485371,41.61249199906],[-71.485386,41.61243299906],[-71.485379,41.61241799906],[-71.48542,41.61215899906],[-71.485451,41.61202299906],[-71.48539,41.61191699906],[-71.485283,41.61183299906],[-71.485138,41.61041399906],[-71.485092,41.60995999906],[-71.485031,41.60933999906],[-71.484965,41.60867199906],[-71.484863,41.60764999906],[-71.484786,41.60682599906],[-71.48465,41.60536699906],[-71.484581,41.60463099906],[-71.484458,41.60373899906],[-71.484352,41.60373499906],[-71.484228,41.60372099906],[-71.484121,41.60369399906],[-71.483672,41.60352599906],[-71.483559,41.60348899906],[-71.482765,41.60322599906],[-71.481827,41.60287899906],[-71.481026,41.60259599906],[-71.480911,41.60256599906],[-71.480812,41.60254699906],[-71.480496,41.60234299906],[-71.48047,41.60231999906],[-71.480058,41.60313999906],[-71.479607,41.60403499906],[-71.478458,41.60629299906],[-71.478177,41.60685399906],[-71.477952,41.60730399906],[-71.47709,41.60902499906],[-71.476984,41.60923899906],[-71.476204,41.61075099906],[-71.475793,41.61154799906],[-71.475552,41.61203099906],[-71.475494,41.61207399906],[-71.475022,41.61238499906],[-71.474439,41.61260399906],[-71.474423,41.61260999906],[-71.47427,41.61265499906],[-71.474245,41.61266199906],[-71.474194,41.61267799906],[-71.47407,41.61269199906],[-71.473938,41.61269399906],[-71.473923,41.61252199906],[-71.473907,41.61242699906],[-71.473862,41.61224699906],[-71.473793,41.61208299906],[-71.473694,41.61181299906],[-71.473564,41.61151899906],[-71.473488,41.61136199906],[-71.473343,41.61109199906],[-71.47319,41.61087399906],[-71.473053,41.61072199906],[-71.472984,41.61065299906],[-71.472923,41.61059999906],[-71.472893,41.61057999906],[-71.472725,41.61066399906],[-71.472412,41.61084699906],[-71.472016,41.61108099906],[-71.471606,41.61132299906],[-71.471146,41.61160999906],[-71.470818,41.61178999906],[-71.470558,41.61197299906],[-71.470406,41.61209099906],[-71.470284,41.61221699906],[-71.469818,41.61191899906],[-71.469429,41.61171699906],[-71.468773,41.61144299906],[-71.468018,41.61112199906],[-71.467392,41.61086299906],[-71.466896,41.61064099906],[-71.466728,41.61057299906],[-71.466447,41.61045699906],[-71.466087,41.61032099906],[-71.465935,41.61027499906],[-71.465836,41.61067599906],[-71.465691,41.61111099906],[-71.465569,41.61151099906],[-71.465454,41.61182399906],[-71.46537,41.61195399906],[-71.465263,41.61206099906],[-71.465126,41.61214799906],[-71.464973,41.61220599906],[-71.464783,41.61225499906],[-71.464755,41.61225999906],[-71.464409,41.61232399906],[-71.464203,41.61235799906],[-71.463997,41.61242699906],[-71.463852,41.61250699906],[-71.463722,41.61260999906],[-71.463654,41.61272799906],[-71.463593,41.61297199906],[-71.463539,41.61328099906],[-71.463516,41.61331599906],[-71.463387,41.61356399906],[-71.463112,41.61350299906],[-71.462845,41.61342199906],[-71.462555,41.61337699906],[-71.462357,41.61336099906],[-71.462166,41.61336899906],[-71.46183,41.61343799906],[-71.461754,41.61345299906],[-71.461342,41.61357499906],[-71.460869,41.61372799906],[-71.460709,41.61375399906],[-71.460533,41.61374299906],[-71.460297,41.61368199906],[-71.460083,41.61357899906],[-71.459938,41.61352199906],[-71.459854,41.61350599906],[-71.459747,41.61352199906],[-71.459641,41.61355599906],[-71.459305,41.61364699906],[-71.4589,41.61371199906],[-71.458382,41.61375399906],[-71.457695,41.61377699906],[-71.45764,41.61377999906],[-71.457681,41.61421399906],[-71.457721,41.61462999906],[-71.457767,41.61510399906],[-71.457795,41.61540699906],[-71.457832,41.61580399906],[-71.457841,41.61596199906],[-71.457847,41.61605199906],[-71.457962,41.61722799906],[-71.458045,41.61826599906],[-71.458126,41.61909999906],[-71.458287,41.62090099906],[-71.458317,41.62116799906],[-71.458352,41.62149299906],[-71.458369,41.62165499906],[-71.458402,41.62220899906],[-71.458441,41.62265399906],[-71.458511,41.62304999906],[-71.458621,41.62340499906],[-71.458763,41.62367499906],[-71.458932,41.62395399906],[-71.459291,41.62456699906],[-71.459785,41.62537399906],[-71.460121,41.62585799906],[-71.460434,41.62631199906],[-71.461235,41.62739899906],[-71.46183,41.62806699906],[-71.462143,41.62840999906],[-71.462927,41.62928399906],[-71.463081,41.62945599906],[-71.463989,41.63029499906],[-71.464386,41.63066499906],[-71.4645,41.63074899906],[-71.46469,41.63089699906],[-71.464743,41.63096299906],[-71.464778,41.63100699906],[-71.465091,41.63125099906],[-71.465508,41.63156499906],[-71.465587,41.63162499906],[-71.465613,41.63164499906],[-71.465834,41.63181199906],[-71.466186,41.63203799906],[-71.466438,41.63222099906],[-71.466835,41.63254499906],[-71.467239,41.63301099906],[-71.467476,41.63337299906],[-71.46756,41.63354099906],[-71.46771,41.63387299906],[-71.467772,41.63400099906],[-71.467844,41.63416499906],[-71.467928,41.63414799906],[-71.468008,41.63414399906],[-71.468077,41.63416499906],[-71.468141,41.63420699906],[-71.468203,41.63424199906],[-71.468266,41.63429099906],[-71.468335,41.63434499906],[-71.468372,41.63437399906],[-71.468403,41.63439699906],[-71.468464,41.63444199906],[-71.468552,41.63449099906],[-71.468614,41.63451699906],[-71.468702,41.63454499906],[-71.468787,41.63456899906],[-71.46887,41.63458499906],[-71.468961,41.63459299906],[-71.469034,41.63459599906],[-71.469216,41.63459599906],[-71.469305,41.63458799906],[-71.469387,41.63457299906],[-71.469461,41.63456599906],[-71.469567,41.63456299906],[-71.469666,41.63453599906],[-71.469727,41.63449899906],[-71.469787,41.63445299906],[-71.469806,41.63443799906],[-71.469845,41.63440699906],[-71.469905,41.63435599906],[-71.469964,41.63430499906],[-71.470017,41.63425499906],[-71.470058,41.63420699906],[-71.47011,41.63414599906],[-71.470213,41.63401099906],[-71.470269,41.63394799906],[-71.47038,41.63379999906],[-71.470427,41.63372799906],[-71.470475,41.63366099906],[-71.47053,41.63359799906],[-71.470652,41.63347599906],[-71.470722,41.63341699906],[-71.470807,41.63336199906],[-71.470903,41.63331899906],[-71.470999,41.63328299906],[-71.471081,41.63324899906],[-71.471134,41.63320799906],[-71.471182,41.63316499906],[-71.471239,41.63311999906],[-71.471302,41.63307999906],[-71.471373,41.63304999906],[-71.471445,41.63302699906],[-71.471521,41.63300199906],[-71.471612,41.63297499906],[-71.471718,41.63294499906],[-71.471823,41.63291399906],[-71.471917,41.63287999906],[-71.472002,41.63283999906],[-71.472077,41.63279599906],[-71.472135,41.63274699906],[-71.472177,41.63268799906],[-71.47221,41.63262399906],[-71.472229,41.63255699906],[-71.472238,41.63248799906],[-71.472242,41.63234899906],[-71.472267,41.63229699906],[-71.472337,41.63224199906],[-71.472394,41.63219899906],[-71.472454,41.63214299906],[-71.472523,41.63208599906],[-71.472535,41.63207699906],[-71.472092,41.63089799906],[-71.471961,41.63054899906],[-71.47189,41.63036599906],[-71.471744,41.62998999906],[-71.47132,41.62907599906],[-71.47191,41.62867799906],[-71.476007,41.62621399906],[-71.476023,41.62620399906],[-71.476128,41.62613999906],[-71.476302,41.62603699906],[-71.479358,41.62419999906],[-71.47977,41.62447799906],[-71.479839,41.62445199906],[-71.479923,41.62439099906],[-71.479958,41.62433199906],[-71.479985,41.62427799906],[-71.480018,41.62422499906],[-71.48006,41.62415899906],[-71.480104,41.62410699906],[-71.480167,41.62405999906],[-71.480236,41.62402099906],[-71.480304,41.62399699906],[-71.480378,41.62397699906],[-71.480475,41.62395599906],[-71.480578,41.62393199906],[-71.480654,41.62391399906],[-71.480816,41.62387699906],[-71.481325,41.62380299906],[-71.48153,41.62378999906],[-71.481628,41.62378199906],[-71.481738,41.62376899906],[-71.481811,41.62373699906],[-71.481852,41.62372699906],[-71.481875,41.62371899906],[-71.48185,41.62367399906],[-71.481855,41.62358399906],[-71.481897,41.62356299906],[-71.481953,41.62354599906],[-71.482023,41.62353299906],[-71.482115,41.62354699906],[-71.482174,41.62359099906],[-71.482234,41.62362499906],[-71.48232,41.62362999906],[-71.482417,41.62360999906],[-71.482482,41.62357999906],[-71.482462,41.62351699906],[-71.482475,41.62346999906],[-71.482512,41.62342099906],[-71.482491,41.62336699906],[-71.482443,41.62332099906],[-71.482422,41.62326999906],[-71.482443,41.62319099906],[-71.482462,41.62311599906],[-71.482554,41.62298299906],[-71.482563,41.62292499906],[-71.482566,41.62285799906],[-71.482576,41.62278399906],[-71.482593,41.62270999906],[-71.482613,41.62263799906],[-71.482635,41.62257199906],[-71.482649,41.62251099906],[-71.482662,41.62245499906],[-71.482693,41.62237599906],[-71.482735,41.62232699906],[-71.482789,41.62228399906],[-71.482851,41.62224999906],[-71.482916,41.62222199906],[-71.483017,41.62219099906],[-71.483094,41.62217299906],[-71.48317,41.62215999906],[-71.483241,41.62214799906],[-71.483321,41.62211799906],[-71.483355,41.62205799906],[-71.483355,41.62197599906],[-71.483334,41.62191299906],[-71.483318,41.62184799906],[-71.483302,41.62178599906],[-71.483294,41.62172699906],[-71.483293,41.62166599906],[-71.483297,41.62160399906],[-71.483306,41.62154699906],[-71.483339,41.62147199906],[-71.483403,41.62141099906],[-71.483497,41.62137499906],[-71.4836,41.62137299906],[-71.483682,41.62140699906],[-71.483722,41.62147999906],[-71.483726,41.62153799906],[-71.483702,41.62160999906],[-71.483698,41.62166499906],[-71.483752,41.62169799906],[-71.483868,41.62167699906],[-71.483939,41.62165299906],[-71.484008,41.62162399906],[-71.484067,41.62158699906],[-71.484121,41.62154599906],[-71.484175,41.62150399906],[-71.484228,41.62146099906],[-71.48427,41.62140699906],[-71.484302,41.62134499906],[-71.484338,41.62128599906],[-71.484379,41.62122799906],[-71.484418,41.62117399906],[-71.484457,41.62112399906],[-71.484508,41.62105899906],[-71.484557,41.62099699906],[-71.484601,41.62093999906],[-71.484646,41.62087999906],[-71.484685,41.62082899906],[-71.484724,41.62077399906],[-71.484771,41.62071299906],[-71.484823,41.62064599906],[-71.484856,41.62059499906],[-71.484884,41.62054299906],[-71.484919,41.62047099906],[-71.484954,41.62041099906],[-71.484993,41.62036099906],[-71.485047,41.62031499906],[-71.485115,41.62026599906],[-71.485185,41.62022099906],[-71.485261,41.62017599906],[-71.485345,41.62013299906],[-71.48543,41.62009499906],[-71.485511,41.62005699906],[-71.485571,41.62001299906],[-71.485627,41.61997099906],[-71.48571,41.61997299906],[-71.485815,41.61998599906],[-71.485873,41.61993199906],[-71.48595,41.61990099906],[-71.486017,41.61987399906],[-71.486073,41.61983299906],[-71.486111,41.61977399906],[-71.486147,41.61970399906],[-71.486183,41.61962899906],[-71.486195,41.61957499906],[-71.486196,41.61949599906],[-71.486197,41.61941899906],[-71.486199,41.61935499906],[-71.486213,41.61930099906],[-71.486234,41.61924099906],[-71.486209,41.61918299906],[-71.486143,41.61915299906],[-71.486159,41.61908899906],[-71.486173,41.61906699906],[-71.486245,41.61909099906],[-71.486279,41.61906399906],[-71.486299,41.61900999906],[-71.486303,41.61894199906],[-71.486288,41.61889799906],[-71.486295,41.61884399906],[-71.486334,41.61875899906],[-71.486327,41.61873199906],[-71.486317,41.61869499906],[-71.486299,41.61863799906],[-71.486282,41.61858099906],[-71.486264,41.61852199906],[-71.486245,41.61846599906],[-71.486225,41.61840999906],[-71.486208,41.61835099906],[-71.486196,41.61829099906],[-71.486191,41.61823099906],[-71.48619,41.61817099906],[-71.48619,41.61805499906],[-71.486189,41.61800099906],[-71.486192,41.61794599906],[-71.4862,41.61789199906],[-71.486212,41.61783699906],[-71.486235,41.61773099906],[-71.486267,41.61762999906],[-71.486304,41.61753399906],[-71.48631,41.61744699906],[-71.486273,41.61735999906],[-71.486213,41.61727899906],[-71.486139,41.61719999906],[-71.486066,41.61712399906],[-71.486009,41.61705099906],[-71.486001,41.61693499906],[-71.48607,41.61690299906],[-71.486173,41.61686899906],[-71.486291,41.61682799906],[-71.486414,41.61678599906],[-71.486534,41.61673999906],[-71.486651,41.61668999906],[-71.486762,41.61664999906],[-71.486873,41.61663699906],[-71.48697,41.61665299906],[-71.487005,41.61666699906],[-71.487048,41.61668499906],[-71.487117,41.61673599906],[-71.487196,41.61679899906],[-71.487279,41.61685599906],[-71.487361,41.61689499906],[-71.487441,41.61690499906],[-71.487515,41.61687999906],[-71.487591,41.61682999906],[-71.487663,41.61677299906],[-71.487726,41.61670799906],[-71.487788,41.61663899906],[-71.487854,41.61656699906],[-71.487926,41.61648999906],[-71.487989,41.61641099906],[-71.488039,41.61633399906],[-71.48807,41.61625199906],[-71.488077,41.61617399906]]]}}"}, +{"type": "blockgroup", "typeId": 501041, "areaId": 29383, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.467844,41.63416499906],[-71.467772,41.63400099906],[-71.46771,41.63387299906],[-71.46756,41.63354099906],[-71.467476,41.63337299906],[-71.467239,41.63301099906],[-71.466835,41.63254499906],[-71.466438,41.63222099906],[-71.466186,41.63203799906],[-71.465834,41.63181199906],[-71.465613,41.63164499906],[-71.465587,41.63162499906],[-71.465508,41.63156499906],[-71.465091,41.63125099906],[-71.464778,41.63100699906],[-71.464743,41.63096299906],[-71.46469,41.63089699906],[-71.4645,41.63074899906],[-71.464386,41.63066499906],[-71.463989,41.63029499906],[-71.463081,41.62945599906],[-71.462927,41.62928399906],[-71.462143,41.62840999906],[-71.46183,41.62806699906],[-71.461235,41.62739899906],[-71.460434,41.62631199906],[-71.460121,41.62585799906],[-71.459785,41.62537399906],[-71.459291,41.62456699906],[-71.458932,41.62395399906],[-71.458763,41.62367499906],[-71.458621,41.62340499906],[-71.458511,41.62304999906],[-71.458441,41.62265399906],[-71.458402,41.62220899906],[-71.458369,41.62165499906],[-71.458352,41.62149299906],[-71.458317,41.62116799906],[-71.458287,41.62090099906],[-71.458126,41.61909999906],[-71.458045,41.61826599906],[-71.457962,41.61722799906],[-71.457847,41.61605199906],[-71.457841,41.61596199906],[-71.457832,41.61580399906],[-71.457795,41.61540699906],[-71.457767,41.61510399906],[-71.457721,41.61462999906],[-71.457626,41.61463199906],[-71.457542,41.61463499906],[-71.457443,41.61463199906],[-71.45739,41.61465099906],[-71.457315,41.61490199906],[-71.457283,41.61500899906],[-71.457146,41.61538699906],[-71.456917,41.61598999906],[-71.456802,41.61626799906],[-71.456711,41.61651199906],[-71.456497,41.61700799906],[-71.456291,41.61744299906],[-71.456139,41.61787399906],[-71.456108,41.61804999906],[-71.455948,41.61806899906],[-71.45575,41.61808399906],[-71.455421,41.61811799906],[-71.454758,41.61823699906],[-71.454323,41.61834299906],[-71.453587,41.61851099906],[-71.453072,41.61862899906],[-71.452972,41.61865599906],[-71.452232,41.61882399906],[-71.451218,41.61905299906],[-71.450569,41.61918999906],[-71.450279,41.61926999906],[-71.45002,41.61931599906],[-71.448769,41.61946099906],[-71.447151,41.61964399906],[-71.446655,41.61968599906],[-71.446426,41.61971999906],[-71.446381,41.61974699906],[-71.446358,41.61975899906],[-71.44606,41.61998399906],[-71.445854,41.62009799906],[-71.445633,41.62023499906],[-71.44545,41.62030799906],[-71.445175,41.62039599906],[-71.445114,41.62043399906],[-71.444801,41.62026999906],[-71.444374,41.62012499906],[-71.444008,41.62000699906],[-71.443977,41.61996799906],[-71.443871,41.61983899906],[-71.443726,41.61968199906],[-71.443642,41.61933899906],[-71.443405,41.61854899906],[-71.443275,41.61835099906],[-71.443077,41.61821699906],[-71.442833,41.61806899906],[-71.442444,41.61782499906],[-71.441956,41.61738599906],[-71.441887,41.61733199906],[-71.441718,41.61720999906],[-71.441605,41.61712299906],[-71.44149,41.61706499906],[-71.441391,41.61703499906],[-71.441338,41.61702299906],[-71.441208,41.61700399906],[-71.441071,41.61700099906],[-71.440941,41.61701199906],[-71.439789,41.61717199906],[-71.438942,41.61729799906],[-71.438118,41.61741599906],[-71.437256,41.61754599906],[-71.435478,41.61781699906],[-71.43537,41.61783399906],[-71.435282,41.61784799906],[-71.434958,41.61788899906],[-71.434911,41.61790999906],[-71.434759,41.61794599906],[-71.434022,41.61806599906],[-71.43318,41.61819299906],[-71.432443,41.61831299906],[-71.432263,41.61835599906],[-71.430511,41.61862999906],[-71.430195,41.61867499906],[-71.429967,41.61870699906],[-71.429639,41.61873099906],[-71.427635,41.61904099906],[-71.426035,41.61930099906],[-71.425827,41.61933499906],[-71.424316,41.61953699906],[-71.423782,41.61976199906],[-71.42318,41.61995299906],[-71.422806,41.62007499906],[-71.421844,41.62044499906],[-71.421104,41.62075399906],[-71.420441,41.62103999906],[-71.420365,41.62113299906],[-71.419846,41.62174999906],[-71.419762,41.62184099906],[-71.419222,41.62247599906],[-71.419113,41.62260399906],[-71.418152,41.62371399906],[-71.41748,41.62446999906],[-71.416985,41.62505699906],[-71.416443,41.62568299906],[-71.415741,41.62650699906],[-71.414883,41.62748899906],[-71.414696,41.62770499906],[-71.413765,41.62878799906],[-71.4133,41.62931799906],[-71.412827,41.62984799906],[-71.412796,41.62987499906],[-71.412732,41.62994899906],[-71.412405,41.63033799906],[-71.412315,41.63044399906],[-71.412071,41.63070299906],[-71.411797,41.63101199906],[-71.411683,41.63115199906],[-71.411975,41.63163999906],[-71.411972,41.63172499906],[-71.41201,41.63185899906],[-71.41217,41.63223999906],[-71.412254,41.63254899906],[-71.412354,41.63285399906],[-71.412529,41.63333499906],[-71.412109,41.63344999906],[-71.412027,41.63347099906],[-71.411903,41.63350299906],[-71.409874,41.63390699906],[-71.408432,41.63418999906],[-71.407852,41.63428499906],[-71.407768,41.63430799906],[-71.407095,41.63439199906],[-71.404817,41.63487999906],[-71.405623,41.63933599906],[-71.404914,41.64676399906],[-71.405116,41.65191799906],[-71.408376,41.65311399906],[-71.408156,41.65381099906],[-71.408734,41.65382099906],[-71.412818,41.65437099906],[-71.417581,41.65495199906],[-71.42148,41.65439399906],[-71.422316,41.65421699906],[-71.423884,41.65388799906],[-71.428941,41.65056899906],[-71.432796,41.65132299906],[-71.435944,41.64922299906],[-71.435993,41.64920299906],[-71.436639,41.64893799906],[-71.437013,41.64884999906],[-71.438135,41.64858699906],[-71.438215,41.64854299906],[-71.438309,41.64849499906],[-71.438403,41.64844099906],[-71.438494,41.64838299906],[-71.438591,41.64832299906],[-71.438692,41.64826799906],[-71.43879,41.64822199906],[-71.438958,41.64813899906],[-71.43904,41.64810799906],[-71.439127,41.64808499906],[-71.439215,41.64805799906],[-71.439301,41.64802299906],[-71.43947,41.64793699906],[-71.439719,41.64781199906],[-71.439793,41.64776299906],[-71.439862,41.64770899906],[-71.439927,41.64765599906],[-71.439984,41.64759599906],[-71.440076,41.64747599906],[-71.440165,41.64736999906],[-71.440221,41.64731899906],[-71.440339,41.64721599906],[-71.440392,41.64716599906],[-71.440433,41.64711499906],[-71.440452,41.64703799906],[-71.44045,41.64698399906],[-71.440444,41.64692399906],[-71.440437,41.64686099906],[-71.440425,41.64680099906],[-71.440402,41.64674799906],[-71.440385,41.64667299906],[-71.440432,41.64661299906],[-71.440516,41.64658099906],[-71.440584,41.64660899906],[-71.440672,41.64661399906],[-71.440748,41.64657599906],[-71.440841,41.64655999906],[-71.440798,41.64651399906],[-71.44072,41.64650899906],[-71.44063,41.64650999906],[-71.440588,41.64650399906],[-71.44056,41.64645899906],[-71.440594,41.64640699906],[-71.440645,41.64635799906],[-71.440716,41.64630299906],[-71.440791,41.64625599906],[-71.440859,41.64621699906],[-71.440893,41.64619799906],[-71.440925,41.64617999906],[-71.441015,41.64614799906],[-71.441093,41.64612899906],[-71.441176,41.64610999906],[-71.441266,41.64608999906],[-71.441357,41.64606699906],[-71.441443,41.64603899906],[-71.441527,41.64600899906],[-71.441614,41.64598699906],[-71.441703,41.64597099906],[-71.44179,41.64596799906],[-71.44196,41.64596799906],[-71.442048,41.64596499906],[-71.442135,41.64595499906],[-71.442213,41.64592899906],[-71.442281,41.64589099906],[-71.442342,41.64586099906],[-71.442429,41.64585099906],[-71.442508,41.64581799906],[-71.442571,41.64576499906],[-71.442583,41.64574999906],[-71.442617,41.64571199906],[-71.442647,41.64564599906],[-71.442676,41.64559599906],[-71.442714,41.64554999906],[-71.442771,41.64548499906],[-71.442798,41.64543199906],[-71.442818,41.64537199906],[-71.442831,41.64530899906],[-71.442843,41.64524599906],[-71.44283,41.64518999906],[-71.442775,41.64512299906],[-71.442717,41.64505999906],[-71.442677,41.64499199906],[-71.442665,41.64492299906],[-71.442692,41.64485799906],[-71.442713,41.64480199906],[-71.442731,41.64473899906],[-71.442737,41.64467499906],[-71.442737,41.64460999906],[-71.442735,41.64454199906],[-71.442729,41.64447499906],[-71.442717,41.64439799906],[-71.442691,41.64433499906],[-71.442652,41.64428099906],[-71.442614,41.64422999906],[-71.442582,41.64417799906],[-71.442545,41.64412399906],[-71.442511,41.64406399906],[-71.442479,41.64400099906],[-71.442441,41.64393499906],[-71.442397,41.64387299906],[-71.442355,41.64380999906],[-71.442317,41.64375199906],[-71.442278,41.64370199906],[-71.442211,41.64363799906],[-71.442165,41.64359499906],[-71.442126,41.64354899906],[-71.442074,41.64348999906],[-71.442008,41.64344099906],[-71.441974,41.64338999906],[-71.441964,41.64332799906],[-71.441986,41.64327499906],[-71.44203,41.64322899906],[-71.442079,41.64318599906],[-71.442141,41.64313999906],[-71.442203,41.64309599906],[-71.442252,41.64305199906],[-71.442266,41.64302099906],[-71.442283,41.64294599906],[-71.442281,41.64292099906],[-71.442322,41.64289299906],[-71.442384,41.64284599906],[-71.442387,41.64278399906],[-71.442374,41.64272999906],[-71.442398,41.64268999906],[-71.442473,41.64267699906],[-71.442559,41.64267199906],[-71.442633,41.64267199906],[-71.442669,41.64267099906],[-71.442707,41.64266899906],[-71.442786,41.64264399906],[-71.442851,41.64261199906],[-71.442909,41.64257699906],[-71.442974,41.64254299906],[-71.443052,41.64252499906],[-71.443133,41.64252199906],[-71.443223,41.64252499906],[-71.443307,41.64252999906],[-71.443391,41.64253699906],[-71.443471,41.64254099906],[-71.443552,41.64254399906],[-71.443638,41.64254299906],[-71.443712,41.64252099906],[-71.443789,41.64248799906],[-71.443859,41.64245299906],[-71.443936,41.64241199906],[-71.444006,41.64236599906],[-71.444061,41.64232799906],[-71.44412,41.64228999906],[-71.444174,41.64225099906],[-71.444228,41.64221099906],[-71.444295,41.64217399906],[-71.444361,41.64214099906],[-71.444422,41.64210999906],[-71.444492,41.64208199906],[-71.444575,41.64204699906],[-71.444642,41.64202099906],[-71.444673,41.64200999906],[-71.444711,41.64199599906],[-71.444771,41.64196599906],[-71.444838,41.64193199906],[-71.444901,41.64189799906],[-71.444968,41.64185199906],[-71.445017,41.64180799906],[-71.445059,41.64176299906],[-71.445096,41.64170599906],[-71.445122,41.64164399906],[-71.445139,41.64159099906],[-71.445152,41.64152599906],[-71.445151,41.64146899906],[-71.445125,41.64141899906],[-71.445084,41.64137299906],[-71.444992,41.64114099906],[-71.444943,41.64109399906],[-71.4449,41.64103699906],[-71.444868,41.64098099906],[-71.444845,41.64093599906],[-71.444838,41.64092299906],[-71.444813,41.64087099906],[-71.444794,41.64080899906],[-71.444782,41.64075299906],[-71.444804,41.64069399906],[-71.44483,41.64064099906],[-71.444837,41.64057999906],[-71.444863,41.64052099906],[-71.444911,41.64046999906],[-71.444962,41.64042899906],[-71.445013,41.64038999906],[-71.445067,41.64034699906],[-71.445111,41.64030199906],[-71.445154,41.64025099906],[-71.445208,41.64020199906],[-71.445266,41.64015299906],[-71.445341,41.64010899906],[-71.44541,41.64007299906],[-71.445471,41.64002299906],[-71.445545,41.63998799906],[-71.445623,41.63998899906],[-71.445715,41.63999099906],[-71.445792,41.63998999906],[-71.445864,41.63998099906],[-71.445885,41.63991699906],[-71.445889,41.63986099906],[-71.445899,41.63980699906],[-71.445908,41.63974499906],[-71.445903,41.63968999906],[-71.445899,41.63963499906],[-71.445878,41.63957199906],[-71.445891,41.63950799906],[-71.445911,41.63944199906],[-71.445932,41.63937799906],[-71.445946,41.63931899906],[-71.445956,41.63926199906],[-71.445958,41.63919999906],[-71.445958,41.63913599906],[-71.445965,41.63907399906],[-71.445978,41.63901299906],[-71.445991,41.63895699906],[-71.446015,41.63890199906],[-71.446054,41.63885499906],[-71.4461,41.63880999906],[-71.446151,41.63876999906],[-71.446231,41.63874299906],[-71.446276,41.63876299906],[-71.446277,41.63883699906],[-71.446251,41.63889299906],[-71.446244,41.63890699906],[-71.446223,41.63895199906],[-71.4462,41.63901299906],[-71.446194,41.63907499906],[-71.446201,41.63913999906],[-71.44625,41.63911199906],[-71.446319,41.63909599906],[-71.446379,41.63906599906],[-71.446448,41.63904699906],[-71.446525,41.63902399906],[-71.446591,41.63899999906],[-71.446662,41.63896799906],[-71.446733,41.63895399906],[-71.446809,41.63893599906],[-71.446885,41.63892299906],[-71.446961,41.63888699906],[-71.447013,41.63884199906],[-71.447058,41.63878999906],[-71.447094,41.63871499906],[-71.447071,41.63867999906],[-71.447002,41.63864999906],[-71.446941,41.63859099906],[-71.446908,41.63852899906],[-71.446905,41.63846699906],[-71.446909,41.63840999906],[-71.446942,41.63834999906],[-71.446988,41.63829799906],[-71.44706,41.63824999906],[-71.447121,41.63821599906],[-71.447185,41.63817299906],[-71.447255,41.63812799906],[-71.447327,41.63808599906],[-71.447399,41.63804799906],[-71.447475,41.63801799906],[-71.44754,41.63799099906],[-71.447611,41.63796199906],[-71.447675,41.63792499906],[-71.447742,41.63787199906],[-71.447809,41.63780199906],[-71.447872,41.63772399906],[-71.447937,41.63765699906],[-71.447971,41.63759499906],[-71.447953,41.63753099906],[-71.44793,41.63745499906],[-71.44792,41.63738099906],[-71.44793,41.63731099906],[-71.447964,41.63724999906],[-71.448019,41.63719999906],[-71.448086,41.63716199906],[-71.448164,41.63712499906],[-71.448247,41.63708699906],[-71.448338,41.63704499906],[-71.448439,41.63700099906],[-71.44854,41.63695599906],[-71.448639,41.63691999906],[-71.448731,41.63689999906],[-71.448825,41.63690699906],[-71.448916,41.63692499906],[-71.448996,41.63694299906],[-71.449102,41.63693999906],[-71.449159,41.63690299906],[-71.449206,41.63685199906],[-71.449248,41.63679399906],[-71.449286,41.63672999906],[-71.449311,41.63666099906],[-71.449339,41.63658099906],[-71.449368,41.63649899906],[-71.449388,41.63641899906],[-71.449397,41.63634199906],[-71.449385,41.63626799906],[-71.449345,41.63620399906],[-71.449283,41.63615099906],[-71.449205,41.63610199906],[-71.449133,41.63604899906],[-71.44906,41.63599599906],[-71.448982,41.63594099906],[-71.448912,41.63588299906],[-71.448855,41.63582499906],[-71.448818,41.63577299906],[-71.448797,41.63571899906],[-71.448794,41.63566099906],[-71.448817,41.63560599906],[-71.448861,41.63555299906],[-71.448915,41.63551299906],[-71.448984,41.63548499906],[-71.449059,41.63547999906],[-71.449123,41.63544999906],[-71.449201,41.63540599906],[-71.449268,41.63536199906],[-71.449344,41.63530699906],[-71.449424,41.63524599906],[-71.449491,41.63517999906],[-71.449531,41.63510299906],[-71.449558,41.63502399906],[-71.44957,41.63495099906],[-71.449575,41.63487999906],[-71.449567,41.63480999906],[-71.449542,41.63474199906],[-71.449518,41.63468699906],[-71.449475,41.63462599906],[-71.449414,41.63457499906],[-71.449335,41.63453199906],[-71.449272,41.63450099906],[-71.449118,41.63444099906],[-71.449041,41.63441599906],[-71.448971,41.63439299906],[-71.44888,41.63435199906],[-71.44881,41.63429599906],[-71.448765,41.63425099906],[-71.448705,41.63418499906],[-71.448651,41.63411299906],[-71.448609,41.63403299906],[-71.448572,41.63395699906],[-71.448549,41.63388599906],[-71.448543,41.63381599906],[-71.448535,41.63374199906],[-71.448522,41.63365799906],[-71.448502,41.63356099906],[-71.448473,41.63346399906],[-71.448447,41.63337699906],[-71.448444,41.63329999906],[-71.448488,41.63323599906],[-71.448558,41.63317699906],[-71.44864,41.63311899906],[-71.448711,41.63305799906],[-71.448739,41.63298799906],[-71.448732,41.63290599906],[-71.448736,41.63281699906],[-71.44877,41.63273299906],[-71.448812,41.63265999906],[-71.448849,41.63258899906],[-71.448888,41.63252499906],[-71.448941,41.63247299906],[-71.44901,41.63241699906],[-71.449093,41.63236199906],[-71.449186,41.63231199906],[-71.449277,41.63225599906],[-71.44932,41.63219499906],[-71.449332,41.63217899906],[-71.449339,41.63208799906],[-71.449339,41.63200499906],[-71.449346,41.63193599906],[-71.449371,41.63186899906],[-71.449402,41.63181799906],[-71.449412,41.63180199906],[-71.449464,41.63173799906],[-71.449524,41.63167899906],[-71.449575,41.63162099906],[-71.449606,41.63155699906],[-71.449628,41.63149499906],[-71.449649,41.63143599906],[-71.449659,41.63136199906],[-71.449659,41.63130599906],[-71.449661,41.63123099906],[-71.449684,41.63117699906],[-71.449718,41.63111799906],[-71.449753,41.63105199906],[-71.449782,41.63098799906],[-71.449808,41.63093199906],[-71.449854,41.63088499906],[-71.449915,41.63084499906],[-71.449985,41.63081299906],[-71.450055,41.63078399906],[-71.450126,41.63075399906],[-71.450199,41.63071699906],[-71.450276,41.63067699906],[-71.450299,41.63066699906],[-71.450359,41.63064199906],[-71.450393,41.63063099906],[-71.450453,41.63061199906],[-71.450551,41.63058799906],[-71.450641,41.63057199906],[-71.450731,41.63056899906],[-71.450821,41.63056899906],[-71.450906,41.63056999906],[-71.450978,41.63056499906],[-71.451075,41.63053599906],[-71.451143,41.63050099906],[-71.451219,41.63046099906],[-71.451307,41.63042799906],[-71.451414,41.63041199906],[-71.451505,41.63038599906],[-71.451535,41.63033899906],[-71.451534,41.63026199906],[-71.451512,41.63018599906],[-71.451478,41.63013499906],[-71.451432,41.63007699906],[-71.451384,41.63001399906],[-71.451339,41.62995099906],[-71.451305,41.62988799906],[-71.451285,41.62982799906],[-71.451281,41.62980699906],[-71.451272,41.62976699906],[-71.451267,41.62970399906],[-71.451271,41.62963999906],[-71.451287,41.62957499906],[-71.451313,41.62949599906],[-71.451366,41.62945499906],[-71.451539,41.62942599906],[-71.451614,41.62942499906],[-71.451697,41.62940999906],[-71.451782,41.62939699906],[-71.452097,41.62939699906],[-71.452189,41.62939899906],[-71.45227,41.62941299906],[-71.45234,41.62943299906],[-71.452351,41.62943899906],[-71.452426,41.62947799906],[-71.452507,41.62952899906],[-71.452587,41.62957899906],[-71.452643,41.62961799906],[-71.452713,41.62966199906],[-71.452788,41.62970799906],[-71.452848,41.62975799906],[-71.452928,41.62980299906],[-71.453,41.62983399906],[-71.453056,41.62984799906],[-71.453073,41.62985199906],[-71.45311,41.62985899906],[-71.453241,41.62988099906],[-71.453264,41.62988899906],[-71.453404,41.62995199906],[-71.453668,41.63001799906],[-71.453892,41.63004899906],[-71.45391,41.63004799906],[-71.453943,41.63009999906],[-71.453955,41.63011899906],[-71.453963,41.63013199906],[-71.453972,41.63014499906],[-71.454207,41.63048799906],[-71.45433,41.63066799906],[-71.454404,41.63120199906],[-71.454388,41.63123399906],[-71.454231,41.63155199906],[-71.454084,41.63192099906],[-71.454059,41.63230799906],[-71.45417,41.63272599906],[-71.45423,41.63295299906],[-71.454672,41.63370799906],[-71.455236,41.63462999906],[-71.45558,41.63510899906],[-71.455997,41.63540399906],[-71.456513,41.63560699906],[-71.457299,41.63579199906],[-71.457497,41.63585099906],[-71.457667,41.63590199906],[-71.457878,41.63606899906],[-71.458191,41.63630999906],[-71.458255,41.63632399906],[-71.458324,41.63636599906],[-71.458337,41.63646199906],[-71.458337,41.63665599906],[-71.458341,41.63672699906],[-71.458351,41.63679499906],[-71.458367,41.63685899906],[-71.458384,41.63692099906],[-71.458411,41.63698199906],[-71.458445,41.63704699906],[-71.458485,41.63711299906],[-71.458501,41.63713899906],[-71.458525,41.63717699906],[-71.458569,41.63724199906],[-71.45862,41.63730399906],[-71.458673,41.63736899906],[-71.458722,41.63743699906],[-71.458768,41.63750399906],[-71.45882,41.63756299906],[-71.45887,41.63762299906],[-71.458921,41.63768599906],[-71.458969,41.63775399906],[-71.459009,41.63782299906],[-71.459035,41.63786699906],[-71.459047,41.63788699906],[-71.459123,41.63794599906],[-71.459194,41.63796699906],[-71.459279,41.63798399906],[-71.45937,41.63800099906],[-71.459464,41.63801899906],[-71.45956,41.63804099906],[-71.45965,41.63806299906],[-71.459724,41.63808099906],[-71.459818,41.63809799906],[-71.459902,41.63810899906],[-71.459975,41.63811299906],[-71.460069,41.63811299906],[-71.460153,41.63811599906],[-71.460252,41.63811799906],[-71.46036,41.63811999906],[-71.460461,41.63811799906],[-71.460552,41.63809999906],[-71.460635,41.63806199906],[-71.460719,41.63802099906],[-71.460798,41.63798699906],[-71.460868,41.63795299906],[-71.460932,41.63791799906],[-71.461003,41.63788799906],[-71.461108,41.63787999906],[-71.461187,41.63791899906],[-71.461254,41.63797899906],[-71.461295,41.63802399906],[-71.461351,41.63808499906],[-71.461433,41.63812999906],[-71.461501,41.63815699906],[-71.461577,41.63818699906],[-71.461649,41.63821499906],[-71.461741,41.63824299906],[-71.461835,41.63826399906],[-71.461932,41.63828699906],[-71.462023,41.63831099906],[-71.462108,41.63833299906],[-71.462181,41.63834999906],[-71.462212,41.63835699906],[-71.462247,41.63836299906],[-71.462354,41.63837999906],[-71.462466,41.63832699906],[-71.462525,41.63825499906],[-71.462531,41.63822699906],[-71.462557,41.63817299906],[-71.462594,41.63811999906],[-71.462629,41.63806599906],[-71.462665,41.63799699906],[-71.462691,41.63794399906],[-71.462731,41.63787599906],[-71.462758,41.63781999906],[-71.462788,41.63775599906],[-71.46283,41.63768499906],[-71.462862,41.63763299906],[-71.462892,41.63758299906],[-71.462915,41.63752899906],[-71.462935,41.63746799906],[-71.462963,41.63740099906],[-71.463002,41.63733099906],[-71.463032,41.63728799906],[-71.463045,41.63726899906],[-71.463089,41.63720499906],[-71.463126,41.63713899906],[-71.46316,41.63707399906],[-71.463188,41.63700999906],[-71.463212,41.63694299906],[-71.463222,41.63690999906],[-71.463231,41.63688099906],[-71.463251,41.63681699906],[-71.463273,41.63675299906],[-71.463297,41.63669099906],[-71.46332,41.63663999906],[-71.463373,41.63658199906],[-71.463436,41.63654399906],[-71.463524,41.63653799906],[-71.4636,41.63654599906],[-71.463682,41.63655999906],[-71.463769,41.63656999906],[-71.463851,41.63657399906],[-71.463949,41.63657599906],[-71.464022,41.63656999906],[-71.464095,41.63655099906],[-71.464159,41.63652199906],[-71.464239,41.63648099906],[-71.464312,41.63644899906],[-71.464385,41.63639899906],[-71.464455,41.63635799906],[-71.464512,41.63632699906],[-71.464576,41.63629599906],[-71.464649,41.63626799906],[-71.464726,41.63624599906],[-71.464799,41.63623499906],[-71.464897,41.63620199906],[-71.464958,41.63616699906],[-71.465019,41.63613299906],[-71.465083,41.63610399906],[-71.465146,41.63606399906],[-71.465217,41.63601299906],[-71.465287,41.63596099906],[-71.465345,41.63591199906],[-71.465395,41.63586299906],[-71.465448,41.63579599906],[-71.465511,41.63575999906],[-71.465586,41.63573099906],[-71.465666,41.63571299906],[-71.465742,41.63568299906],[-71.465814,41.63564599906],[-71.465882,41.63560799906],[-71.465966,41.63557699906],[-71.466065,41.63554699906],[-71.466163,41.63552399906],[-71.466246,41.63548799906],[-71.466308,41.63543799906],[-71.466325,41.63537499906],[-71.46635,41.63530999906],[-71.46639,41.63524499906],[-71.466433,41.63517899906],[-71.466472,41.63511799906],[-71.466511,41.63506299906],[-71.466563,41.63501799906],[-71.466693,41.63494199906],[-71.46675,41.63489599906],[-71.466799,41.63484199906],[-71.466846,41.63478299906],[-71.466902,41.63472399906],[-71.466952,41.63465899906],[-71.466997,41.63459599906],[-71.467048,41.63453999906],[-71.467109,41.63449699906],[-71.467198,41.63446999906],[-71.467284,41.63442699906],[-71.467326,41.63437699906],[-71.467388,41.63430899906],[-71.467457,41.63427799906],[-71.467542,41.63424799906],[-71.467611,41.63423099906],[-71.46765,41.63422199906],[-71.467743,41.63419699906],[-71.467844,41.63416499906]]]}}"}, +{"type": "blockgroup", "typeId": 503011, "areaId": 29384, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.51886,41.56468399906],[-71.518831,41.56467899906],[-71.518684,41.56465199906],[-71.518655,41.56464699906],[-71.517575,41.56448399906],[-71.517579,41.56445099906],[-71.517792,41.56261399906],[-71.516296,41.56300399906],[-71.51461,41.56346099906],[-71.513214,41.56392699906],[-71.513046,41.56397199906],[-71.512932,41.56403399906],[-71.512817,41.56414799906],[-71.512756,41.56424699906],[-71.512688,41.56439599906],[-71.512665,41.56442999906],[-71.512634,41.56446099906],[-71.512573,41.56454099906],[-71.512497,41.56462099906],[-71.512398,41.56468199906],[-71.512306,41.56472799906],[-71.512222,41.56477699906],[-71.512146,41.56483099906],[-71.512077,41.56488799906],[-71.51194,41.56498299906],[-71.511871,41.56502199906],[-71.51181,41.56506299906],[-71.511726,41.56513599906],[-71.511665,41.56521999906],[-71.511642,41.56526899906],[-71.511612,41.56536499906],[-71.511612,41.56541399906],[-71.511604,41.56546399906],[-71.511604,41.56551699906],[-71.511612,41.56557099906],[-71.511612,41.56562399906],[-71.511635,41.56579999906],[-71.511627,41.56589499906],[-71.511627,41.56598699906],[-71.511642,41.56618899906],[-71.511703,41.56648299906],[-71.511749,41.56664299906],[-71.511765,41.56676499906],[-71.511749,41.56688699906],[-71.511681,41.56704699906],[-71.511574,41.56718799906],[-71.511528,41.56722999906],[-71.51149,41.56727599906],[-71.510689,41.56784799906],[-71.510651,41.56788299906],[-71.510605,41.56791699906],[-71.510529,41.56795899906],[-71.510361,41.56802699906],[-71.509918,41.56826799906],[-71.509773,41.56835199906],[-71.509644,41.56843599906],[-71.509537,41.56852699906],[-71.50943,41.56859199906],[-71.509377,41.56861899906],[-71.509293,41.56863799906],[-71.509117,41.56866099906],[-71.508865,41.56866499906],[-71.508752,41.56867099906],[-71.508461,41.56871399906],[-71.508202,41.56876399906],[-71.50808,41.56878299906],[-71.507957,41.56880999906],[-71.507889,41.56882099906],[-71.507675,41.56887099906],[-71.507507,41.56889699906],[-71.507294,41.56889299906],[-71.507152,41.56886499906],[-71.507118,41.56885499906],[-71.50708,41.56884799906],[-71.507057,41.56886299906],[-71.507027,41.56889699906],[-71.506943,41.56895799906],[-71.506897,41.56898499906],[-71.506775,41.56909599906],[-71.506577,41.56931299906],[-71.506538,41.56934699906],[-71.506508,41.56938199906],[-71.506363,41.56948899906],[-71.506241,41.56954599906],[-71.506172,41.56957199906],[-71.50573,41.56970199906],[-71.505638,41.56972499906],[-71.505569,41.56975599906],[-71.505486,41.56981299906],[-71.505409,41.56987399906],[-71.505356,41.56992299906],[-71.505264,41.57002599906],[-71.504906,41.57047299906],[-71.504173,41.57125099906],[-71.50412,41.57131599906],[-71.504059,41.57137699906],[-71.50399,41.57142999906],[-71.503868,41.57150999906],[-71.503807,41.57153699906],[-71.503731,41.57156799906],[-71.503647,41.57159399906],[-71.503471,41.57162499906],[-71.503288,41.57163599906],[-71.503174,41.57162899906],[-71.502937,41.57159399906],[-71.501511,41.57132299906],[-71.501323,41.57131099906],[-71.501007,41.57130099906],[-71.500771,41.57131199906],[-71.500641,41.57132299906],[-71.500511,41.57133899906],[-71.500236,41.57137799906],[-71.499779,41.57144499906],[-71.499465,41.57148099906],[-71.499237,41.57150699906],[-71.499069,41.57153299906],[-71.499001,41.57155199906],[-71.49881,41.57160999906],[-71.498558,41.57165099906],[-71.498413,41.57165899906],[-71.498207,41.57165899906],[-71.498062,41.57164799906],[-71.497536,41.57158999906],[-71.496857,41.57153699906],[-71.496704,41.57152899906],[-71.496628,41.57153299906],[-71.496559,41.57154499906],[-71.49649,41.57156399906],[-71.496437,41.57159399906],[-71.496407,41.57163199906],[-71.496376,41.57170099906],[-71.496101,41.57305899906],[-71.496086,41.57308199906],[-71.495827,41.57339899906],[-71.495827,41.57342299906],[-71.495632,41.57375299906],[-71.49557,41.57385799906],[-71.495073,41.57342799906],[-71.49465,41.57427299906],[-71.493819,41.57592299906],[-71.493107,41.57734099906],[-71.492049,41.57941499906],[-71.491741,41.58002299906],[-71.49104,41.58142999906],[-71.489727,41.58402499906],[-71.489121,41.58522199906],[-71.488908,41.58565899906],[-71.487776,41.58788399906],[-71.485613,41.59216499906],[-71.485847,41.59223199906],[-71.486259,41.59236899906],[-71.486549,41.59247199906],[-71.486748,41.59255199906],[-71.487462,41.59289399906],[-71.487663,41.59299099906],[-71.488007,41.59316599906],[-71.488831,41.59357499906],[-71.489319,41.59379199906],[-71.489616,41.59390299906],[-71.4898,41.59393699906],[-71.489967,41.59392199906],[-71.490501,41.59395599906],[-71.490746,41.59399799906],[-71.491112,41.59410899906],[-71.491577,41.59434899906],[-71.491837,41.59449399906],[-71.49205,41.59457799906],[-71.492271,41.59463099906],[-71.492477,41.59465799906],[-71.492645,41.59465399906],[-71.492828,41.59463099906],[-71.493111,41.59455899906],[-71.493874,41.59435299906],[-71.494759,41.59412799906],[-71.495544,41.59391399906],[-71.496386,41.59365599906],[-71.49675,41.59358199906],[-71.497025,41.59353999906],[-71.497177,41.59352899906],[-71.49736,41.59354799906],[-71.497528,41.59358199906],[-71.497612,41.59360999906],[-71.497688,41.59363599906],[-71.49791,41.59374599906],[-71.498192,41.59390599906],[-71.498205,41.59391599906],[-71.498444,41.59409299906],[-71.498726,41.59428399906],[-71.49879,41.59432299906],[-71.498856,41.59436799906],[-71.498901,41.59439499906],[-71.498962,41.59443299906],[-71.499039,41.59447899906],[-71.499168,41.59453199906],[-71.499229,41.59455899906],[-71.499275,41.59456999906],[-71.499474,41.59459299906],[-71.500328,41.59466899906],[-71.500778,41.59472699906],[-71.500938,41.59474199906],[-71.501114,41.59476099906],[-71.501678,41.59478799906],[-71.502251,41.59480299906],[-71.503357,41.59482199906],[-71.5038,41.59481799906],[-71.504349,41.59481399906],[-71.50445,41.59481599906],[-71.504868,41.59482199906],[-71.505185,41.59483399906],[-71.505623,41.59484099906],[-71.50631,41.59483299906],[-71.506935,41.59484499906],[-71.507561,41.59484099906],[-71.507957,41.59484499906],[-71.508217,41.59485199906],[-71.508728,41.59484899906],[-71.508888,41.59482599906],[-71.509033,41.59477199906],[-71.509621,41.59447099906],[-71.509872,41.59435699906],[-71.510094,41.59429599906],[-71.510506,41.59424599906],[-71.512253,41.59418899906],[-71.512428,41.59419299906],[-71.512604,41.59420799906],[-71.51284,41.59424599906],[-71.513184,41.59426899906],[-71.513412,41.59429599906],[-71.513817,41.59430299906],[-71.514191,41.59429599906],[-71.51474,41.59426499906],[-71.515411,41.59422299906],[-71.515991,41.59419599906],[-71.516151,41.59418499906],[-71.516884,41.59413099906],[-71.517593,41.59410099906],[-71.518105,41.59407399906],[-71.518433,41.59403999906],[-71.51812,41.59220799906],[-71.518122,41.58806599906],[-71.518122,41.58650599906],[-71.518015,41.58141599906],[-71.518013,41.58133299906],[-71.517995,41.58050699906],[-71.517972,41.57942499906],[-71.517966,41.57913499906],[-71.517926,41.57726499906],[-71.518059,41.57598099906],[-71.518183,41.57558899906],[-71.518298,41.57391099906],[-71.518548,41.57023799906],[-71.518602,41.56944499906],[-71.51886,41.56468399906]]]}}"}, +{"type": "blockgroup", "typeId": 503012, "areaId": 29385, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.495073,41.57342799906],[-71.495038,41.57339599906],[-71.493764,41.57229099906],[-71.493625,41.57215899906],[-71.493487,41.57202599906],[-71.493332,41.57186899906],[-71.493187,41.57170499906],[-71.493103,41.57160199906],[-71.493051,41.57154599906],[-71.492987,41.57147499906],[-71.492922,41.57139499906],[-71.492761,41.57119499906],[-71.49263,41.57101099906],[-71.4925,41.57083099906],[-71.492371,41.57063299906],[-71.492126,41.57022899906],[-71.491803,41.56962099906],[-71.49172,41.56944399906],[-71.491645,41.56925399906],[-71.491478,41.56876399906],[-71.491405,41.56854199906],[-71.491296,41.56815499906],[-71.490874,41.56639599906],[-71.490405,41.56444199906],[-71.490125,41.56325999906],[-71.489979,41.56264299906],[-71.489762,41.56168399906],[-71.489555,41.56076399906],[-71.489227,41.55940599906],[-71.489067,41.55878799906],[-71.488983,41.55838399906],[-71.48896,41.55829399906],[-71.48888,41.55799999906],[-71.488799,41.55766799906],[-71.488618,41.55709899906],[-71.488509,41.55678899906],[-71.488388,41.55647199906],[-71.488297,41.55622399906],[-71.488145,41.55587299906],[-71.487918,41.55539999906],[-71.487569,41.55470899906],[-71.487326,41.55430799906],[-71.48687,41.55359899906],[-71.486696,41.55334699906],[-71.486415,41.55297599906],[-71.486089,41.55255599906],[-71.485997,41.55242999906],[-71.485731,41.55208299906],[-71.485488,41.55175399906],[-71.485285,41.55149199906],[-71.484993,41.55111699906],[-71.484462,41.55047499906],[-71.484184,41.55017499906],[-71.483986,41.54997899906],[-71.483864,41.54984999906],[-71.483498,41.54951899906],[-71.483164,41.54924599906],[-71.482811,41.54896199906],[-71.482272,41.54859199906],[-71.482102,41.54847599906],[-71.481774,41.54826299906],[-71.479761,41.54704099906],[-71.478291,41.54615899906],[-71.477333,41.54557399906],[-71.476875,41.54526499906],[-71.474892,41.54407299906],[-71.473183,41.54302599906],[-71.470848,41.54162799906],[-71.469994,41.54112399906],[-71.469551,41.54086099906],[-71.469193,41.54063799906],[-71.469124,41.54058799906],[-71.469025,41.54051599906],[-71.468887,41.54038999906],[-71.468773,41.54025299906],[-71.468712,41.54017599906],[-71.468674,41.54010799906],[-71.468605,41.53997799906],[-71.468567,41.54017999906],[-71.468498,41.54061899906],[-71.468485,41.54073599906],[-71.468475,41.54075999906],[-71.468475,41.54081699906],[-71.468464,41.54104799906],[-71.468452,41.54115699906],[-71.468399,41.54153399906],[-71.468193,41.54247699906],[-71.468056,41.54298799906],[-71.467979,41.54337699906],[-71.467888,41.54392199906],[-71.467888,41.54394499906],[-71.467873,41.54424299906],[-71.467865,41.54468499906],[-71.467873,41.54521599906],[-71.467888,41.54569599906],[-71.467949,41.54626499906],[-71.46801,41.54672999906],[-71.468036,41.54705899906],[-71.468033,41.54722999906],[-71.468033,41.54724699906],[-71.468009,41.54753799906],[-71.467995,41.54765699906],[-71.467934,41.54831299906],[-71.467911,41.54861499906],[-71.467827,41.54947699906],[-71.467804,41.54989199906],[-71.467827,41.55016299906],[-71.46785,41.55025499906],[-71.467888,41.55041099906],[-71.46801,41.55078499906],[-71.468079,41.55108999906],[-71.468086,41.55139899906],[-71.468063,41.55166199906],[-71.468056,41.55200999906],[-71.468109,41.55231099906],[-71.468201,41.55252499906],[-71.468254,41.55263899906],[-71.468552,41.55310099906],[-71.468666,41.55329099906],[-71.468719,41.55344399906],[-71.468719,41.55358899906],[-71.468704,41.55372599906],[-71.468636,41.55388299906],[-71.468452,41.55406599906],[-71.467964,41.55439399906],[-71.467339,41.55482499906],[-71.466853,41.55514499906],[-71.466461,41.55540499906],[-71.466438,41.55542399906],[-71.465385,41.55611399906],[-71.464981,41.55645399906],[-71.464806,41.55670499906],[-71.464771,41.55677899906],[-71.464684,41.55696499906],[-71.464661,41.55705599906],[-71.464638,41.55719399906],[-71.464638,41.55753299906],[-71.464729,41.55828099906],[-71.464774,41.55862999906],[-71.464783,41.55869699906],[-71.46479,41.55878099906],[-71.464851,41.55921599906],[-71.464928,41.55986399906],[-71.464981,41.56019999906],[-71.464973,41.56052399906],[-71.464928,41.56073799906],[-71.464867,41.56093599906],[-71.46476,41.56113799906],[-71.464706,41.56124099906],[-71.46431,41.56181299906],[-71.46418,41.56201899906],[-71.464119,41.56219499906],[-71.464088,41.56233199906],[-71.464091,41.56237999906],[-71.464123,41.56282399906],[-71.464131,41.56293299906],[-71.464149,41.56314699906],[-71.464157,41.56324399906],[-71.46417,41.56333599906],[-71.464218,41.56368299906],[-71.464234,41.56392699906],[-71.464241,41.56402199906],[-71.464249,41.56433099906],[-71.464203,41.56465099906],[-71.464002,41.56538699906],[-71.463989,41.56543699906],[-71.463982,41.56548299906],[-71.463875,41.56579999906],[-71.463753,41.56618499906],[-71.463432,41.56661999906],[-71.462875,41.56733699906],[-71.46217,41.56821899906],[-71.461775,41.56870299906],[-71.461365,41.56925999906],[-71.461266,41.56940099906],[-71.461174,41.56959899906],[-71.461166,41.56963699906],[-71.461102,41.56980699906],[-71.461091,41.56991699906],[-71.461087,41.57005299906],[-71.461091,41.57015299906],[-71.461136,41.57034299906],[-71.461175,41.57048699906],[-71.461281,41.57081599906],[-71.461563,41.57158699906],[-71.461899,41.57225799906],[-71.461931,41.57233499906],[-71.462006,41.57251699906],[-71.462082,41.57270099906],[-71.462107,41.57282599906],[-71.462112,41.57296399906],[-71.462105,41.57298799906],[-71.461983,41.57338699906],[-71.461945,41.57347899906],[-71.461877,41.57364899906],[-71.461776,41.57389699906],[-71.461502,41.57460799906],[-71.461151,41.57553499906],[-71.460892,41.57619499906],[-71.460655,41.57683599906],[-71.460464,41.57733199906],[-71.460381,41.57755999906],[-71.460136,41.57823199906],[-71.460068,41.57839999906],[-71.459969,41.57867799906],[-71.459915,41.57889199906],[-71.459854,41.57920099906],[-71.459831,41.57934199906],[-71.459824,41.57941399906],[-71.459807,41.57957099906],[-71.459801,41.57962799906],[-71.459785,41.57990999906],[-71.459785,41.58042099906],[-71.459793,41.58062699906],[-71.45977,41.58111199906],[-71.459724,41.58152399906],[-71.459656,41.58192799906],[-71.459633,41.58206599906],[-71.459587,41.58227199906],[-71.45948,41.58268699906],[-71.459231,41.58361099906],[-71.458984,41.58450699906],[-71.458916,41.58478199906],[-71.458832,41.58509799906],[-71.458977,41.58549899906],[-71.459023,41.58561699906],[-71.459061,41.58573499906],[-71.459129,41.58594499906],[-71.459152,41.58603699906],[-71.459175,41.58618499906],[-71.45916,41.58629599906],[-71.459129,41.58642599906],[-71.459084,41.58655499906],[-71.459053,41.58661999906],[-71.45903,41.58668499906],[-71.458977,41.58679999906],[-71.460709,41.58753599906],[-71.461647,41.58789099906],[-71.462639,41.58826399906],[-71.462799,41.58832599906],[-71.462883,41.58836399906],[-71.462959,41.58840599906],[-71.463036,41.58844799906],[-71.463112,41.58850499906],[-71.463181,41.58856999906],[-71.463326,41.58868799906],[-71.463423,41.58875599906],[-71.463562,41.58883999906],[-71.46376,41.58893999906],[-71.46389,41.58900099906],[-71.464157,41.58911499906],[-71.464554,41.58929399906],[-71.464666,41.58933799906],[-71.464836,41.58940499906],[-71.465088,41.58948499906],[-71.465302,41.58953499906],[-71.465508,41.58954999906],[-71.465622,41.58954599906],[-71.46682,41.58947799906],[-71.467163,41.58946199906],[-71.467415,41.58943899906],[-71.46759,41.58940499906],[-71.467705,41.58937499906],[-71.467758,41.58935499906],[-71.467911,41.58930999906],[-71.468109,41.58923699906],[-71.468475,41.58907299906],[-71.469009,41.58882499906],[-71.469322,41.58869199906],[-71.469498,41.58862299906],[-71.469849,41.58847399906],[-71.470139,41.58835999906],[-71.470238,41.58832599906],[-71.470329,41.58830299906],[-71.470413,41.58827599906],[-71.471268,41.58805799906],[-71.47142,41.58802399906],[-71.471504,41.58800899906],[-71.471649,41.58800099906],[-71.471794,41.58800099906],[-71.47187,41.58800499906],[-71.471947,41.58801699906],[-71.472054,41.58805099906],[-71.47216,41.58810799906],[-71.472214,41.58814599906],[-71.472305,41.58821899906],[-71.472351,41.58824899906],[-71.472458,41.58834099906],[-71.472511,41.58840599906],[-71.472702,41.58857699906],[-71.472839,41.58867999906],[-71.472957,41.58875499906],[-71.473099,41.58883299906],[-71.473206,41.58888599906],[-71.47332,41.58893199906],[-71.473457,41.58897399906],[-71.473577,41.58900699906],[-71.473732,41.58904999906],[-71.474068,41.58914899906],[-71.474382,41.58925199906],[-71.475304,41.58955399906],[-71.476929,41.59009199906],[-71.477089,41.59014099906],[-71.477402,41.59022899906],[-71.477673,41.59029999906],[-71.478073,41.59040499906],[-71.478867,41.59059499906],[-71.480606,41.59102599906],[-71.480784,41.59107399906],[-71.481171,41.59117899906],[-71.481454,41.59124599906],[-71.48156,41.59126999906],[-71.481697,41.59129299906],[-71.481972,41.59132799906],[-71.482346,41.59134299906],[-71.482773,41.59134299906],[-71.482925,41.59135099906],[-71.483002,41.59136199906],[-71.483246,41.59141199906],[-71.483421,41.59146499906],[-71.48365,41.59155299906],[-71.483757,41.59160199906],[-71.48394,41.59167099906],[-71.484138,41.59173599906],[-71.484567,41.59185799906],[-71.485428,41.59211699906],[-71.485555,41.59215099906],[-71.485613,41.59216499906],[-71.487776,41.58788399906],[-71.488908,41.58565899906],[-71.489121,41.58522199906],[-71.489727,41.58402499906],[-71.49104,41.58142999906],[-71.491741,41.58002299906],[-71.492049,41.57941499906],[-71.493107,41.57734099906],[-71.493819,41.57592299906],[-71.49465,41.57427299906],[-71.495073,41.57342799906]]]}}"}, +{"type": "blockgroup", "typeId": 503021, "areaId": 29386, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.464981,41.56019999906],[-71.464928,41.55986399906],[-71.464142,41.55995599906],[-71.463142,41.56010399906],[-71.462425,41.56018099906],[-71.461967,41.56023799906],[-71.461319,41.56032599906],[-71.460999,41.56036399906],[-71.460739,41.56037099906],[-71.460587,41.56036399906],[-71.460213,41.56025699906],[-71.460121,41.56022299906],[-71.45977,41.56008499906],[-71.458931,41.55976099906],[-71.458606,41.55963199906],[-71.458115,41.55943699906],[-71.457741,41.55930299906],[-71.457359,41.55916199906],[-71.456726,41.55891799906],[-71.456459,41.55882599906],[-71.455551,41.55849799906],[-71.454292,41.55798699906],[-71.45356,41.55772399906],[-71.45282,41.55748399906],[-71.452545,41.55738799906],[-71.452225,41.55726999906],[-71.452065,41.55717499906],[-71.451691,41.55683099906],[-71.45108,41.55612599906],[-71.450798,41.55617099906],[-71.450485,41.55624399906],[-71.450066,41.55633499906],[-71.449684,41.55644999906],[-71.449532,41.55651499906],[-71.449303,41.55664399906],[-71.448868,41.55697999906],[-71.448364,41.55738799906],[-71.447968,41.55773499906],[-71.447906,41.55778499906],[-71.447762,41.55796799906],[-71.447685,41.55815899906],[-71.447647,41.55833799906],[-71.447601,41.55862399906],[-71.447517,41.55894899906],[-71.44738,41.55919999906],[-71.447212,41.55939899906],[-71.446945,41.55957799906],[-71.446776,41.55965799906],[-71.446575,41.55975499906],[-71.445896,41.56003399906],[-71.445194,41.56033199906],[-71.445084,41.56037899906],[-71.444834,41.56001399906],[-71.444683,41.56014199906],[-71.444646,41.56013699906],[-71.444564,41.56013599906],[-71.444162,41.56004399906],[-71.444077,41.56003499906],[-71.444,41.56003699906],[-71.443676,41.56008999906],[-71.443519,41.56012099906],[-71.44345,41.56013799906],[-71.443289,41.56016799906],[-71.443201,41.56016799906],[-71.443117,41.56014899906],[-71.443041,41.56012599906],[-71.4428,41.56008099906],[-71.442714,41.56005899906],[-71.442565,41.56000299906],[-71.442494,41.55998499906],[-71.442422,41.55997699906],[-71.442345,41.55997699906],[-71.442196,41.55998499906],[-71.442128,41.56001399906],[-71.442065,41.56005799906],[-71.442014,41.56010499906],[-71.441971,41.56015299906],[-71.441919,41.56019899906],[-71.441847,41.56022499906],[-71.441771,41.56024199906],[-71.441691,41.56025499906],[-71.441617,41.56025899906],[-71.441462,41.56025299906],[-71.441377,41.56025499906],[-71.441306,41.56028499906],[-71.441255,41.56033499906],[-71.441201,41.56037599906],[-71.441134,41.56040599906],[-71.440993,41.56044099906],[-71.440911,41.56045199906],[-71.440507,41.56046099906],[-71.440468,41.56046199906],[-71.440355,41.56045699906],[-71.44015,41.56044799906],[-71.43927,41.56038399906],[-71.438674,41.56035199906],[-71.438144,41.56036899906],[-71.437602,41.56046999906],[-71.436539,41.56084099906],[-71.436536,41.56088199906],[-71.436436,41.56089299906],[-71.436196,41.56169299906],[-71.43574,41.56262999906],[-71.435152,41.56319799906],[-71.433774,41.56365899906],[-71.4352,41.56398899906],[-71.437564,41.56473899906],[-71.440357,41.56500699906],[-71.441002,41.56736599906],[-71.43742,41.56899999906],[-71.435665,41.57141199906],[-71.435681,41.57263699906],[-71.437093,41.57319799906],[-71.438198,41.57366299906],[-71.441518,41.57505999906],[-71.442403,41.57543399906],[-71.442506,41.57547399906],[-71.443119,41.57456999906],[-71.444806,41.57189199906],[-71.445427,41.57080199906],[-71.445877,41.57019599906],[-71.446339,41.56978699906],[-71.446846,41.56963699906],[-71.447559,41.56954199906],[-71.44901,41.56965899906],[-71.450011,41.56967299906],[-71.450307,41.56965999906],[-71.450639,41.56952699906],[-71.450938,41.56934599906],[-71.451274,41.56906299906],[-71.452044,41.56833199906],[-71.452155,41.56839399906],[-71.45227,41.56844499906],[-71.452423,41.56850799906],[-71.45269,41.56859599906],[-71.452756,41.56861099906],[-71.452835,41.56861499906],[-71.452988,41.56859199906],[-71.453679,41.56843499906],[-71.453946,41.56838299906],[-71.454221,41.56831699906],[-71.454617,41.56821599906],[-71.455084,41.56811899906],[-71.455512,41.56805999906],[-71.455587,41.56805199906],[-71.456003,41.56800899906],[-71.456085,41.56800099906],[-71.456451,41.56795499906],[-71.456619,41.56791299906],[-71.456856,41.56780999906],[-71.456963,41.56774499906],[-71.457672,41.56735599906],[-71.457723,41.56732299906],[-71.457803,41.56727799906],[-71.458105,41.56709799906],[-71.458476,41.56687699906],[-71.458538,41.56683999906],[-71.459018,41.56655499906],[-71.459275,41.56643799906],[-71.459505,41.56635999906],[-71.459765,41.56631399906],[-71.460123,41.56627899906],[-71.462921,41.56615299906],[-71.46336,41.56614599906],[-71.463753,41.56618499906],[-71.463875,41.56579999906],[-71.463982,41.56548299906],[-71.463989,41.56543699906],[-71.464002,41.56538699906],[-71.464203,41.56465099906],[-71.464249,41.56433099906],[-71.464241,41.56402199906],[-71.464234,41.56392699906],[-71.464218,41.56368299906],[-71.46417,41.56333599906],[-71.464157,41.56324399906],[-71.464149,41.56314699906],[-71.464131,41.56293299906],[-71.464123,41.56282399906],[-71.464091,41.56237999906],[-71.464088,41.56233199906],[-71.464119,41.56219499906],[-71.46418,41.56201899906],[-71.46431,41.56181299906],[-71.464706,41.56124099906],[-71.46476,41.56113799906],[-71.464867,41.56093599906],[-71.464928,41.56073799906],[-71.464973,41.56052399906],[-71.464981,41.56019999906]]]}}"}, +{"type": "blockgroup", "typeId": 503022, "areaId": 29387, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.468719,41.55344399906],[-71.468666,41.55329099906],[-71.468552,41.55310099906],[-71.468254,41.55263899906],[-71.468201,41.55252499906],[-71.468109,41.55231099906],[-71.468056,41.55200999906],[-71.468063,41.55166199906],[-71.468086,41.55139899906],[-71.468079,41.55108999906],[-71.46801,41.55078499906],[-71.467888,41.55041099906],[-71.46785,41.55025499906],[-71.467827,41.55016299906],[-71.467804,41.54989199906],[-71.467827,41.54947699906],[-71.467911,41.54861499906],[-71.467934,41.54831299906],[-71.467995,41.54765699906],[-71.468009,41.54753799906],[-71.468033,41.54724699906],[-71.468033,41.54722999906],[-71.468036,41.54705899906],[-71.46801,41.54672999906],[-71.467949,41.54626499906],[-71.467888,41.54569599906],[-71.467873,41.54521599906],[-71.467865,41.54468499906],[-71.467873,41.54424299906],[-71.467888,41.54394499906],[-71.4673,41.54408599906],[-71.466812,41.54424299906],[-71.466454,41.54431499906],[-71.465958,41.54434599906],[-71.465363,41.54435699906],[-71.46534,41.54436099906],[-71.464127,41.54438799906],[-71.463661,41.54446399906],[-71.463203,41.54464699906],[-71.462738,41.54488999906],[-71.462654,41.54493299906],[-71.462318,41.54507099906],[-71.461929,41.54515099906],[-71.461449,41.54526099906],[-71.460945,41.54540299906],[-71.460883,41.54541699906],[-71.460571,41.54548999906],[-71.46019,41.54554699906],[-71.459785,41.54558199906],[-71.459427,41.54566199906],[-71.458847,41.54591399906],[-71.458282,41.54618799906],[-71.457359,41.54661899906],[-71.456467,41.54701999906],[-71.456459,41.54702799906],[-71.456291,41.54710799906],[-71.455872,41.54731799906],[-71.454269,41.54806099906],[-71.453583,41.54838199906],[-71.453308,41.54848099906],[-71.453186,41.54851499906],[-71.453026,41.54853399906],[-71.452705,41.54853799906],[-71.452202,41.54855299906],[-71.451759,41.54856099906],[-71.451279,41.54854599906],[-71.449898,41.54857599906],[-71.449066,41.54858799906],[-71.448128,41.54858799906],[-71.446976,41.54859499906],[-71.445023,41.54859199906],[-71.444084,41.54860299906],[-71.444031,41.54860699906],[-71.442078,41.54860299906],[-71.441809,41.54859099906],[-71.441654,41.54858499906],[-71.441503,41.54857799906],[-71.441292,41.54856899906],[-71.441254,41.54869799906],[-71.441154,41.54909499906],[-71.441063,41.54955799906],[-71.44102,41.54976599906],[-71.440974,41.55000999906],[-71.440961,41.55007699906],[-71.440907,41.55049299906],[-71.440872,41.55081899906],[-71.440849,41.55124699906],[-71.440834,41.55253999906],[-71.440842,41.55285599906],[-71.440843,41.55300599906],[-71.440849,41.55355499906],[-71.440865,41.55419499906],[-71.440933,41.55459999906],[-71.440956,41.55467199906],[-71.441017,41.55483199906],[-71.441132,41.55505399906],[-71.441605,41.55571399906],[-71.441901,41.55608899906],[-71.442145,41.55640399906],[-71.442903,41.55741299906],[-71.443665,41.55841399906],[-71.444435,41.55942899906],[-71.444834,41.56001399906],[-71.445084,41.56037899906],[-71.445194,41.56033199906],[-71.445896,41.56003399906],[-71.446575,41.55975499906],[-71.446776,41.55965799906],[-71.446945,41.55957799906],[-71.447212,41.55939899906],[-71.44738,41.55919999906],[-71.447517,41.55894899906],[-71.447601,41.55862399906],[-71.447647,41.55833799906],[-71.447685,41.55815899906],[-71.447762,41.55796799906],[-71.447906,41.55778499906],[-71.447968,41.55773499906],[-71.448364,41.55738799906],[-71.448868,41.55697999906],[-71.449303,41.55664399906],[-71.449532,41.55651499906],[-71.449684,41.55644999906],[-71.450066,41.55633499906],[-71.450485,41.55624399906],[-71.450798,41.55617099906],[-71.45108,41.55612599906],[-71.451691,41.55683099906],[-71.452065,41.55717499906],[-71.452225,41.55726999906],[-71.452545,41.55738799906],[-71.45282,41.55748399906],[-71.45356,41.55772399906],[-71.454292,41.55798699906],[-71.455551,41.55849799906],[-71.456459,41.55882599906],[-71.456726,41.55891799906],[-71.457359,41.55916199906],[-71.457741,41.55930299906],[-71.458115,41.55943699906],[-71.458606,41.55963199906],[-71.458931,41.55976099906],[-71.45977,41.56008499906],[-71.460121,41.56022299906],[-71.460213,41.56025699906],[-71.460587,41.56036399906],[-71.460739,41.56037099906],[-71.460999,41.56036399906],[-71.461319,41.56032599906],[-71.461967,41.56023799906],[-71.462425,41.56018099906],[-71.463142,41.56010399906],[-71.464142,41.55995599906],[-71.464928,41.55986399906],[-71.464851,41.55921599906],[-71.46479,41.55878099906],[-71.464783,41.55869699906],[-71.464774,41.55862999906],[-71.464729,41.55828099906],[-71.464638,41.55753299906],[-71.464638,41.55719399906],[-71.464661,41.55705599906],[-71.464684,41.55696499906],[-71.464771,41.55677899906],[-71.464806,41.55670499906],[-71.464981,41.55645399906],[-71.465385,41.55611399906],[-71.466438,41.55542399906],[-71.466461,41.55540499906],[-71.466853,41.55514499906],[-71.467339,41.55482499906],[-71.467964,41.55439399906],[-71.468452,41.55406599906],[-71.468636,41.55388299906],[-71.468704,41.55372599906],[-71.468719,41.55358899906],[-71.468719,41.55344399906]]]}}"}, +{"type": "blockgroup", "typeId": 503023, "areaId": 29388, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.463753,41.56618499906],[-71.46336,41.56614599906],[-71.462921,41.56615299906],[-71.460123,41.56627899906],[-71.459765,41.56631399906],[-71.459505,41.56635999906],[-71.459275,41.56643799906],[-71.459018,41.56655499906],[-71.458538,41.56683999906],[-71.458476,41.56687699906],[-71.458105,41.56709799906],[-71.457803,41.56727799906],[-71.457723,41.56732299906],[-71.457672,41.56735599906],[-71.456963,41.56774499906],[-71.456856,41.56780999906],[-71.456619,41.56791299906],[-71.456451,41.56795499906],[-71.456085,41.56800099906],[-71.456003,41.56800899906],[-71.455587,41.56805199906],[-71.455512,41.56805999906],[-71.455084,41.56811899906],[-71.454617,41.56821599906],[-71.454221,41.56831699906],[-71.453946,41.56838299906],[-71.453679,41.56843499906],[-71.452988,41.56859199906],[-71.452835,41.56861499906],[-71.452756,41.56861099906],[-71.45269,41.56859599906],[-71.452423,41.56850799906],[-71.45227,41.56844499906],[-71.452155,41.56839399906],[-71.452044,41.56833199906],[-71.451274,41.56906299906],[-71.450938,41.56934599906],[-71.450639,41.56952699906],[-71.450307,41.56965999906],[-71.450011,41.56967299906],[-71.44901,41.56965899906],[-71.447559,41.56954199906],[-71.446846,41.56963699906],[-71.446339,41.56978699906],[-71.445877,41.57019599906],[-71.445427,41.57080199906],[-71.444806,41.57189199906],[-71.443119,41.57456999906],[-71.442506,41.57547399906],[-71.44342,41.57586099906],[-71.444099,41.57611999906],[-71.444995,41.57647699906],[-71.44538,41.57665899906],[-71.446029,41.57696199906],[-71.446506,41.57720899906],[-71.447079,41.57750999906],[-71.447676,41.57761299906],[-71.448366,41.57794499906],[-71.448809,41.57830299906],[-71.449287,41.57861099906],[-71.449751,41.57901399906],[-71.450402,41.57956099906],[-71.451085,41.58019499906],[-71.451117,41.58022499906],[-71.451321,41.58067899906],[-71.451709,41.58111199906],[-71.452083,41.58165399906],[-71.452641,41.58200999906],[-71.453212,41.58221999906],[-71.453767,41.58228999906],[-71.454275,41.58225899906],[-71.454675,41.58223999906],[-71.4558,41.58228899906],[-71.456233,41.58242499906],[-71.457185,41.58273799906],[-71.457243,41.58272099906],[-71.457347,41.58270499906],[-71.457432,41.58270399906],[-71.457533,41.58271599906],[-71.457693,41.58274799906],[-71.457783,41.58278999906],[-71.457827,41.58283399906],[-71.457871,41.58297099906],[-71.457929,41.58303499906],[-71.457983,41.58307099906],[-71.458133,41.58313599906],[-71.458199,41.58315699906],[-71.458248,41.58316799906],[-71.458305,41.58319499906],[-71.458366,41.58322399906],[-71.458408,41.58326799906],[-71.458404,41.58332099906],[-71.458349,41.58335599906],[-71.458279,41.58341899906],[-71.458245,41.58348399906],[-71.458247,41.58352699906],[-71.458298,41.58357699906],[-71.458366,41.58362299906],[-71.458444,41.58366299906],[-71.458473,41.58368199906],[-71.458557,41.58375099906],[-71.458616,41.58378799906],[-71.458661,41.58381099906],[-71.458734,41.58383499906],[-71.459133,41.58365499906],[-71.459231,41.58361099906],[-71.45948,41.58268699906],[-71.459587,41.58227199906],[-71.459633,41.58206599906],[-71.459656,41.58192799906],[-71.459724,41.58152399906],[-71.45977,41.58111199906],[-71.459793,41.58062699906],[-71.459785,41.58042099906],[-71.459785,41.57990999906],[-71.459801,41.57962799906],[-71.459807,41.57957099906],[-71.459824,41.57941399906],[-71.459831,41.57934199906],[-71.459854,41.57920099906],[-71.459915,41.57889199906],[-71.459969,41.57867799906],[-71.460068,41.57839999906],[-71.460136,41.57823199906],[-71.460381,41.57755999906],[-71.460464,41.57733199906],[-71.460655,41.57683599906],[-71.460892,41.57619499906],[-71.461151,41.57553499906],[-71.461502,41.57460799906],[-71.461776,41.57389699906],[-71.461877,41.57364899906],[-71.461945,41.57347899906],[-71.461983,41.57338699906],[-71.462105,41.57298799906],[-71.462112,41.57296399906],[-71.462107,41.57282599906],[-71.462082,41.57270099906],[-71.462006,41.57251699906],[-71.461931,41.57233499906],[-71.461899,41.57225799906],[-71.461563,41.57158699906],[-71.461281,41.57081599906],[-71.461175,41.57048699906],[-71.461136,41.57034299906],[-71.461091,41.57015299906],[-71.461087,41.57005299906],[-71.461091,41.56991699906],[-71.461102,41.56980699906],[-71.461166,41.56963699906],[-71.461174,41.56959899906],[-71.461266,41.56940099906],[-71.461365,41.56925999906],[-71.461775,41.56870299906],[-71.46217,41.56821899906],[-71.462875,41.56733699906],[-71.463432,41.56661999906],[-71.463753,41.56618499906]]]}}"}, +{"type": "blockgroup", "typeId": 504011, "areaId": 29389, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.519566,41.52992499906],[-71.519455,41.52994499906],[-71.519325,41.52997199906],[-71.519196,41.53000299906],[-71.518806,41.53006699906],[-71.518372,41.53015099906],[-71.517601,41.53029299906],[-71.517438,41.53032699906],[-71.517403,41.53033399906],[-71.517273,41.53037999906],[-71.51725,41.53039899906],[-71.517033,41.53042699906],[-71.516809,41.53043999906],[-71.516739,41.53046799906],[-71.516668,41.53047999906],[-71.515968,41.53059799906],[-71.515938,41.53061699906],[-71.515709,41.53070099906],[-71.515388,41.53076899906],[-71.514664,41.53093299906],[-71.514359,41.53099399906],[-71.514008,41.53107799906],[-71.513,41.53129999906],[-71.512405,41.53142199906],[-71.511864,41.53152799906],[-71.51123,41.53164699906],[-71.510907,41.53170999906],[-71.510494,41.53179199906],[-71.508133,41.53225699906],[-71.506508,41.53258099906],[-71.505689,41.53274999906],[-71.505348,41.53282199906],[-71.503563,41.53318399906],[-71.503479,41.53319999906],[-71.502937,41.53330999906],[-71.501915,41.53352399906],[-71.498962,41.53412999906],[-71.498817,41.53418399906],[-71.498726,41.53423699906],[-71.498718,41.53424799906],[-71.498657,41.53430899906],[-71.498611,41.53442799906],[-71.498581,41.53467899906],[-71.498566,41.53531999906],[-71.498528,41.53618999906],[-71.498505,41.53714399906],[-71.498497,41.53801699906],[-71.498468,41.53844699906],[-71.498441,41.53853999906],[-71.498406,41.53860499906],[-71.498353,41.53868199906],[-71.498254,41.53864999906],[-71.498142,41.53862899906],[-71.498028,41.53861399906],[-71.497964,41.53860599906],[-71.49763,41.53857999906],[-71.497223,41.53855899906],[-71.497169,41.53855499906],[-71.497031,41.53855699906],[-71.496712,41.53856299906],[-71.496254,41.53856299906],[-71.495712,41.53857399906],[-71.495563,41.53859299906],[-71.495468,41.53860499906],[-71.495041,41.53866999906],[-71.494606,41.53874599906],[-71.494232,41.53879199906],[-71.493256,41.53887899906],[-71.493118,41.53888699906],[-71.493042,41.53889499906],[-71.492843,41.53890799906],[-71.492134,41.53895599906],[-71.491707,41.53897499906],[-71.491325,41.53902099906],[-71.491043,41.53908199906],[-71.491013,41.53908499906],[-71.490654,41.53916899906],[-71.490341,41.53927599906],[-71.489983,41.53940999906],[-71.489746,41.53951599906],[-71.4897,41.53955499906],[-71.489609,41.53961899906],[-71.489525,41.53980299906],[-71.489471,41.54001999906],[-71.489441,41.54035899906],[-71.489433,41.54069899906],[-71.489449,41.54096599906],[-71.489471,41.54122199906],[-71.489464,41.54140499906],[-71.489433,41.54161499906],[-71.489388,41.54180899906],[-71.489296,41.54207599906],[-71.489269,41.54214599906],[-71.48912,41.54253799906],[-71.489044,41.54268999906],[-71.488998,41.54275099906],[-71.488953,41.54281199906],[-71.4888,41.54294599906],[-71.488663,41.54302999906],[-71.488518,41.54306799906],[-71.488396,41.54307199906],[-71.488289,41.54304899906],[-71.488136,41.54297999906],[-71.488022,41.54291899906],[-71.487321,41.54257199906],[-71.487297,41.54256099906],[-71.486679,41.54222499906],[-71.486443,41.54210699906],[-71.486214,41.54202999906],[-71.486107,41.54200399906],[-71.486,41.54198799906],[-71.485825,41.54197699906],[-71.485649,41.54198799906],[-71.485573,41.54199999906],[-71.485497,41.54201899906],[-71.485374,41.54205699906],[-71.485146,41.54215199906],[-71.484421,41.54248799906],[-71.483902,41.54272799906],[-71.483032,41.54314799906],[-71.482826,41.54325499906],[-71.482212,41.54356399906],[-71.482147,41.54359799906],[-71.481383,41.54395599906],[-71.481133,41.54407499906],[-71.480881,41.54418899906],[-71.480522,41.54432299906],[-71.480141,41.54444899906],[-71.479691,41.54457899906],[-71.478943,41.54478499906],[-71.478491,41.54491199906],[-71.477205,41.54519699906],[-71.477051,41.54523499906],[-71.476875,41.54526499906],[-71.477333,41.54557399906],[-71.478291,41.54615899906],[-71.479761,41.54704099906],[-71.481774,41.54826299906],[-71.482102,41.54847599906],[-71.482272,41.54859199906],[-71.482811,41.54896199906],[-71.483164,41.54924599906],[-71.483498,41.54951899906],[-71.483864,41.54984999906],[-71.483986,41.54997899906],[-71.484184,41.55017499906],[-71.484462,41.55047499906],[-71.484993,41.55111699906],[-71.485285,41.55149199906],[-71.485488,41.55175399906],[-71.485731,41.55208299906],[-71.485997,41.55242999906],[-71.486089,41.55255599906],[-71.486415,41.55297599906],[-71.486696,41.55334699906],[-71.48687,41.55359899906],[-71.487326,41.55430799906],[-71.487569,41.55470899906],[-71.487918,41.55539999906],[-71.488145,41.55587299906],[-71.488297,41.55622399906],[-71.488388,41.55647199906],[-71.488509,41.55678899906],[-71.488618,41.55709899906],[-71.488799,41.55766799906],[-71.48888,41.55799999906],[-71.48896,41.55829399906],[-71.488983,41.55838399906],[-71.489067,41.55878799906],[-71.489227,41.55940599906],[-71.489555,41.56076399906],[-71.489762,41.56168399906],[-71.489979,41.56264299906],[-71.490125,41.56325999906],[-71.490405,41.56444199906],[-71.490874,41.56639599906],[-71.491296,41.56815499906],[-71.491405,41.56854199906],[-71.491478,41.56876399906],[-71.491645,41.56925399906],[-71.49172,41.56944399906],[-71.491803,41.56962099906],[-71.492126,41.57022899906],[-71.492371,41.57063299906],[-71.4925,41.57083099906],[-71.49263,41.57101099906],[-71.492761,41.57119499906],[-71.492922,41.57139499906],[-71.492987,41.57147499906],[-71.493051,41.57154599906],[-71.493103,41.57160199906],[-71.493187,41.57170499906],[-71.493332,41.57186899906],[-71.493487,41.57202599906],[-71.493625,41.57215899906],[-71.493764,41.57229099906],[-71.495038,41.57339599906],[-71.495073,41.57342799906],[-71.49557,41.57385799906],[-71.495632,41.57375299906],[-71.495827,41.57342299906],[-71.495827,41.57339899906],[-71.496086,41.57308199906],[-71.496101,41.57305899906],[-71.496376,41.57170099906],[-71.496407,41.57163199906],[-71.496437,41.57159399906],[-71.49649,41.57156399906],[-71.496559,41.57154499906],[-71.496628,41.57153299906],[-71.496704,41.57152899906],[-71.496857,41.57153699906],[-71.497536,41.57158999906],[-71.498062,41.57164799906],[-71.498207,41.57165899906],[-71.498413,41.57165899906],[-71.498558,41.57165099906],[-71.49881,41.57160999906],[-71.499001,41.57155199906],[-71.499069,41.57153299906],[-71.499237,41.57150699906],[-71.499465,41.57148099906],[-71.499779,41.57144499906],[-71.500236,41.57137799906],[-71.500511,41.57133899906],[-71.500641,41.57132299906],[-71.500771,41.57131199906],[-71.501007,41.57130099906],[-71.501323,41.57131099906],[-71.501511,41.57132299906],[-71.502937,41.57159399906],[-71.503174,41.57162899906],[-71.503288,41.57163599906],[-71.503471,41.57162499906],[-71.503647,41.57159399906],[-71.503731,41.57156799906],[-71.503807,41.57153699906],[-71.503868,41.57150999906],[-71.50399,41.57142999906],[-71.504059,41.57137699906],[-71.50412,41.57131599906],[-71.504173,41.57125099906],[-71.504906,41.57047299906],[-71.505264,41.57002599906],[-71.505356,41.56992299906],[-71.505409,41.56987399906],[-71.505486,41.56981299906],[-71.505569,41.56975599906],[-71.505638,41.56972499906],[-71.50573,41.56970199906],[-71.506172,41.56957199906],[-71.506241,41.56954599906],[-71.506363,41.56948899906],[-71.506508,41.56938199906],[-71.506538,41.56934699906],[-71.506577,41.56931299906],[-71.506775,41.56909599906],[-71.506897,41.56898499906],[-71.506943,41.56895799906],[-71.507027,41.56889699906],[-71.507057,41.56886299906],[-71.50708,41.56884799906],[-71.507118,41.56885499906],[-71.507152,41.56886499906],[-71.507294,41.56889299906],[-71.507507,41.56889699906],[-71.507675,41.56887099906],[-71.507889,41.56882099906],[-71.507957,41.56880999906],[-71.50808,41.56878299906],[-71.508202,41.56876399906],[-71.508461,41.56871399906],[-71.508752,41.56867099906],[-71.508865,41.56866499906],[-71.509117,41.56866099906],[-71.509293,41.56863799906],[-71.509377,41.56861899906],[-71.50943,41.56859199906],[-71.509537,41.56852699906],[-71.509644,41.56843599906],[-71.509773,41.56835199906],[-71.509918,41.56826799906],[-71.510361,41.56802699906],[-71.510529,41.56795899906],[-71.510605,41.56791699906],[-71.510651,41.56788299906],[-71.510689,41.56784799906],[-71.51149,41.56727599906],[-71.511528,41.56722999906],[-71.511574,41.56718799906],[-71.511681,41.56704699906],[-71.511749,41.56688699906],[-71.511765,41.56676499906],[-71.511749,41.56664299906],[-71.511703,41.56648299906],[-71.511642,41.56618899906],[-71.511627,41.56598699906],[-71.511627,41.56589499906],[-71.511635,41.56579999906],[-71.511612,41.56562399906],[-71.511612,41.56557099906],[-71.511604,41.56551699906],[-71.511604,41.56546399906],[-71.511612,41.56541399906],[-71.511612,41.56536499906],[-71.511642,41.56526899906],[-71.511665,41.56521999906],[-71.511726,41.56513599906],[-71.51181,41.56506299906],[-71.511871,41.56502199906],[-71.51194,41.56498299906],[-71.512077,41.56488799906],[-71.512146,41.56483099906],[-71.512222,41.56477699906],[-71.512306,41.56472799906],[-71.512398,41.56468199906],[-71.512497,41.56462099906],[-71.512573,41.56454099906],[-71.512634,41.56446099906],[-71.512665,41.56442999906],[-71.512688,41.56439599906],[-71.512756,41.56424699906],[-71.512817,41.56414799906],[-71.512932,41.56403399906],[-71.513046,41.56397199906],[-71.513214,41.56392699906],[-71.51461,41.56346099906],[-71.516296,41.56300399906],[-71.517792,41.56261399906],[-71.517579,41.56445099906],[-71.517575,41.56448399906],[-71.518655,41.56464699906],[-71.518684,41.56465199906],[-71.518831,41.56467899906],[-71.51886,41.56468399906],[-71.519134,41.55964399906],[-71.519161,41.55841499906],[-71.519159,41.55791399906],[-71.51918,41.55633199906],[-71.519493,41.54441499906],[-71.519527,41.53868699906],[-71.519529,41.53713899906],[-71.519537,41.53567399906],[-71.519548,41.53349199906],[-71.519565,41.53031799906],[-71.519566,41.52992499906]]]}}"}, +{"type": "blockgroup", "typeId": 504012, "areaId": 29390, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.519566,41.52992499906],[-71.519337,41.52949799906],[-71.519029,41.52892499906],[-71.51882,41.52852499906],[-71.518721,41.52829899906],[-71.518439,41.52765599906],[-71.518425,41.52762599906],[-71.518298,41.52734799906],[-71.518268,41.52728099906],[-71.518135,41.52698899906],[-71.518127,41.52695499906],[-71.518028,41.52669899906],[-71.517838,41.52629099906],[-71.517555,41.52571499906],[-71.517036,41.52457399906],[-71.51683,41.52416999906],[-71.516319,41.52323299906],[-71.515895,41.52242099906],[-71.515806,41.52226599906],[-71.515707,41.52197399906],[-71.515596,41.52164699906],[-71.515497,41.52133199906],[-71.515462,41.52119199906],[-71.515439,41.52111599906],[-71.515398,41.52102799906],[-71.515293,41.52087599906],[-71.515097,41.52066399906],[-71.514665,41.52024999906],[-71.514457,41.51981599906],[-71.514364,41.51953899906],[-71.514265,41.51928799906],[-71.513892,41.51854199906],[-71.513817,41.51838299906],[-71.513782,41.51827499906],[-71.513483,41.51767399906],[-71.512551,41.51579699906],[-71.512407,41.51550699906],[-71.512225,41.51531499906],[-71.511932,41.51448799906],[-71.511748,41.51376599906],[-71.511549,41.51323999906],[-71.510593,41.51026399906],[-71.510565,41.51018299906],[-71.510519,41.51011899906],[-71.510475,41.51001699906],[-71.510422,41.50986899906],[-71.51033,41.50956699906],[-71.510277,41.50936099906],[-71.510155,41.50898399906],[-71.510048,41.50857199906],[-71.509933,41.50808699906],[-71.509911,41.50801799906],[-71.509666,41.50705299906],[-71.509491,41.50639299906],[-71.509186,41.50528299906],[-71.509056,41.50477199906],[-71.508911,41.50416899906],[-71.508797,41.50376099906],[-71.508774,41.50369999906],[-71.508523,41.50267299906],[-71.507886,41.50005999906],[-71.507322,41.49996099906],[-71.50681,41.49987699906],[-71.506398,41.49979699906],[-71.506047,41.49974699906],[-71.505727,41.49972799906],[-71.505355,41.49971999906],[-71.504956,41.49971699906],[-71.504369,41.49972099906],[-71.503835,41.49971699906],[-71.503438,41.49970099906],[-71.503225,41.49966699906],[-71.502927,41.49956799906],[-71.502698,41.49947999906],[-71.502385,41.49939199906],[-71.502088,41.49931999906],[-71.501561,41.49922099906],[-71.500997,41.49910299906],[-71.500295,41.49892299906],[-71.499707,41.49875899906],[-71.499666,41.49874899906],[-71.499234,41.49864499906],[-71.49912,41.49861399906],[-71.498265,41.49840399906],[-71.497304,41.49815599906],[-71.496946,41.49807999906],[-71.496068,41.49791599906],[-71.495397,41.49780599906],[-71.493894,41.49757299906],[-71.492315,41.49730199906],[-71.491864,41.49721899906],[-71.48915,41.49733499906],[-71.488624,41.49736499906],[-71.48718,41.49740499906],[-71.482973,41.49759199906],[-71.478728,41.49787699906],[-71.478687,41.49788499906],[-71.476001,41.49799499906],[-71.473739,41.49811799906],[-71.470946,41.49835299906],[-71.469565,41.49837199906],[-71.466376,41.49856399906],[-71.458115,41.49906899906],[-71.458183,41.49924099906],[-71.458672,41.50050399906],[-71.458748,41.50068699906],[-71.458929,41.50115599906],[-71.459122,41.50167099906],[-71.459236,41.50201799906],[-71.459259,41.50209399906],[-71.459396,41.50263199906],[-71.459412,41.50273499906],[-71.459488,41.50318099906],[-71.459511,41.50338699906],[-71.459541,41.50378799906],[-71.459564,41.50430199906],[-71.459572,41.50474899906],[-71.459574,41.50528499906],[-71.459575,41.50571299906],[-71.459577,41.50591499906],[-71.459578,41.50605299906],[-71.459579,41.50610399906],[-71.459579,41.50630999906],[-71.459602,41.50667199906],[-71.459648,41.50700399906],[-71.459702,41.50733199906],[-71.459732,41.50747299906],[-71.45977,41.50766399906],[-71.460037,41.50882699906],[-71.460054,41.50892599906],[-71.460145,41.50929999906],[-71.460237,41.50971299906],[-71.460286,41.50994099906],[-71.460327,41.51017799906],[-71.460518,41.51107399906],[-71.460634,41.51157599906],[-71.460698,41.51187999906],[-71.460788,41.51230699906],[-71.46081,41.51241599906],[-71.460892,41.51278399906],[-71.460918,41.51290099906],[-71.461024,41.51345199906],[-71.461114,41.51401999906],[-71.461137,41.51412699906],[-71.461158,41.51425799906],[-71.461185,41.51445399906],[-71.461275,41.51488199906],[-71.461358,41.51531299906],[-71.461423,41.51561499906],[-71.461605,41.51668499906],[-71.461662,41.51697899906],[-71.461723,41.51726899906],[-71.461888,41.51797899906],[-71.461922,41.51812699906],[-71.462067,41.51872299906],[-71.462288,41.51966499906],[-71.462341,41.51986299906],[-71.462448,41.52034799906],[-71.462613,41.52095099906],[-71.462711,41.52125299906],[-71.46279,41.52143399906],[-71.462878,41.52162899906],[-71.46301,41.52186199906],[-71.463121,41.52203999906],[-71.463289,41.52228399906],[-71.463424,41.52244499906],[-71.463507,41.52254399906],[-71.463627,41.52267399906],[-71.464035,41.52304099906],[-71.464439,41.52339899906],[-71.464897,41.52379199906],[-71.465103,41.52399799906],[-71.465195,41.52409699906],[-71.465279,41.52419699906],[-71.465431,41.52439899906],[-71.465569,41.52461199906],[-71.465683,41.52482999906],[-71.465719,41.52491899906],[-71.465785,41.52505999906],[-71.465842,41.52521499906],[-71.465875,41.52535899906],[-71.4659,41.52548199906],[-71.465917,41.52560199906],[-71.465927,41.52574099906],[-71.465927,41.52599599906],[-71.465924,41.52611299906],[-71.465904,41.52635499906],[-71.465877,41.52656599906],[-71.465782,41.52725599906],[-71.465752,41.52753799906],[-71.465721,41.52777099906],[-71.465698,41.52799999906],[-71.465683,41.52823299906],[-71.465683,41.52841199906],[-71.465691,41.52859099906],[-71.465706,41.52876999906],[-71.465744,41.52896099906],[-71.465798,41.52915199906],[-71.465851,41.52934299906],[-71.465904,41.52948799906],[-71.465965,41.52963599906],[-71.466021,41.52978499906],[-71.466085,41.52992499906],[-71.466125,41.53002499906],[-71.465988,41.53005999906],[-71.46608,41.53027299906],[-71.466371,41.53094599906],[-71.466698,41.53170399906],[-71.467453,41.53347399906],[-71.467659,41.53397799906],[-71.468132,41.53505299906],[-71.468391,41.53573999906],[-71.468498,41.53608299906],[-71.468559,41.53636599906],[-71.468613,41.53664799906],[-71.468635,41.53680899906],[-71.468651,41.53692999906],[-71.468681,41.53733799906],[-71.468681,41.53754399906],[-71.468666,41.53781099906],[-71.468605,41.53834499906],[-71.468575,41.53852499906],[-71.468545,41.53871899906],[-71.468517,41.53893799906],[-71.468483,41.53917699906],[-71.468478,41.53925699906],[-71.468475,41.53940599906],[-71.468481,41.53952499906],[-71.468483,41.53955499906],[-71.468506,41.53970299906],[-71.468544,41.53984099906],[-71.468605,41.53997799906],[-71.468674,41.54010799906],[-71.468712,41.54017599906],[-71.468773,41.54025299906],[-71.468887,41.54038999906],[-71.469025,41.54051599906],[-71.469124,41.54058799906],[-71.469193,41.54063799906],[-71.469551,41.54086099906],[-71.469994,41.54112399906],[-71.470848,41.54162799906],[-71.473183,41.54302599906],[-71.474892,41.54407299906],[-71.476875,41.54526499906],[-71.477051,41.54523499906],[-71.477205,41.54519699906],[-71.478491,41.54491199906],[-71.478943,41.54478499906],[-71.479691,41.54457899906],[-71.480141,41.54444899906],[-71.480522,41.54432299906],[-71.480881,41.54418899906],[-71.481133,41.54407499906],[-71.481383,41.54395599906],[-71.482147,41.54359799906],[-71.482212,41.54356399906],[-71.482826,41.54325499906],[-71.483032,41.54314799906],[-71.483902,41.54272799906],[-71.484421,41.54248799906],[-71.485146,41.54215199906],[-71.485374,41.54205699906],[-71.485497,41.54201899906],[-71.485573,41.54199999906],[-71.485649,41.54198799906],[-71.485825,41.54197699906],[-71.486,41.54198799906],[-71.486107,41.54200399906],[-71.486214,41.54202999906],[-71.486443,41.54210699906],[-71.486679,41.54222499906],[-71.487297,41.54256099906],[-71.487321,41.54257199906],[-71.488022,41.54291899906],[-71.488136,41.54297999906],[-71.488289,41.54304899906],[-71.488396,41.54307199906],[-71.488518,41.54306799906],[-71.488663,41.54302999906],[-71.4888,41.54294599906],[-71.488953,41.54281199906],[-71.488998,41.54275099906],[-71.489044,41.54268999906],[-71.48912,41.54253799906],[-71.489269,41.54214599906],[-71.489296,41.54207599906],[-71.489388,41.54180899906],[-71.489433,41.54161499906],[-71.489464,41.54140499906],[-71.489471,41.54122199906],[-71.489449,41.54096599906],[-71.489433,41.54069899906],[-71.489441,41.54035899906],[-71.489471,41.54001999906],[-71.489525,41.53980299906],[-71.489609,41.53961899906],[-71.4897,41.53955499906],[-71.489746,41.53951599906],[-71.489983,41.53940999906],[-71.490341,41.53927599906],[-71.490654,41.53916899906],[-71.491013,41.53908499906],[-71.491043,41.53908199906],[-71.491325,41.53902099906],[-71.491707,41.53897499906],[-71.492134,41.53895599906],[-71.492843,41.53890799906],[-71.493042,41.53889499906],[-71.493118,41.53888699906],[-71.493256,41.53887899906],[-71.494232,41.53879199906],[-71.494606,41.53874599906],[-71.495041,41.53866999906],[-71.495468,41.53860499906],[-71.495563,41.53859299906],[-71.495712,41.53857399906],[-71.496254,41.53856299906],[-71.496712,41.53856299906],[-71.497031,41.53855699906],[-71.497169,41.53855499906],[-71.497223,41.53855899906],[-71.49763,41.53857999906],[-71.497964,41.53860599906],[-71.498028,41.53861399906],[-71.498142,41.53862899906],[-71.498254,41.53864999906],[-71.498353,41.53868199906],[-71.498406,41.53860499906],[-71.498441,41.53853999906],[-71.498468,41.53844699906],[-71.498497,41.53801699906],[-71.498505,41.53714399906],[-71.498528,41.53618999906],[-71.498566,41.53531999906],[-71.498581,41.53467899906],[-71.498611,41.53442799906],[-71.498657,41.53430899906],[-71.498718,41.53424799906],[-71.498726,41.53423699906],[-71.498817,41.53418399906],[-71.498962,41.53412999906],[-71.501915,41.53352399906],[-71.502937,41.53330999906],[-71.503479,41.53319999906],[-71.503563,41.53318399906],[-71.505348,41.53282199906],[-71.505689,41.53274999906],[-71.506508,41.53258099906],[-71.508133,41.53225699906],[-71.510494,41.53179199906],[-71.510907,41.53170999906],[-71.51123,41.53164699906],[-71.511864,41.53152799906],[-71.512405,41.53142199906],[-71.513,41.53129999906],[-71.514008,41.53107799906],[-71.514359,41.53099399906],[-71.514664,41.53093299906],[-71.515388,41.53076899906],[-71.515709,41.53070099906],[-71.515938,41.53061699906],[-71.515968,41.53059799906],[-71.516668,41.53047999906],[-71.516739,41.53046799906],[-71.516809,41.53043999906],[-71.517033,41.53042699906],[-71.51725,41.53039899906],[-71.517273,41.53037999906],[-71.517403,41.53033399906],[-71.517438,41.53032699906],[-71.517601,41.53029299906],[-71.518372,41.53015099906],[-71.518806,41.53006699906],[-71.519196,41.53000299906],[-71.519325,41.52997199906],[-71.519455,41.52994499906],[-71.519566,41.52992499906]]]}}"}, +{"type": "blockgroup", "typeId": 504021, "areaId": 29391, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.466125,41.53002499906],[-71.466085,41.52992499906],[-71.466021,41.52978499906],[-71.465965,41.52963599906],[-71.465904,41.52948799906],[-71.465851,41.52934299906],[-71.465798,41.52915199906],[-71.465744,41.52896099906],[-71.465706,41.52876999906],[-71.465691,41.52859099906],[-71.465683,41.52841199906],[-71.465683,41.52823299906],[-71.465698,41.52799999906],[-71.465721,41.52777099906],[-71.465752,41.52753799906],[-71.465782,41.52725599906],[-71.465877,41.52656599906],[-71.465904,41.52635499906],[-71.465924,41.52611299906],[-71.465927,41.52599599906],[-71.465927,41.52574099906],[-71.465917,41.52560199906],[-71.4659,41.52548199906],[-71.465875,41.52535899906],[-71.465842,41.52521499906],[-71.465785,41.52505999906],[-71.465719,41.52491899906],[-71.465683,41.52482999906],[-71.465569,41.52461199906],[-71.465431,41.52439899906],[-71.465279,41.52419699906],[-71.465195,41.52409699906],[-71.465103,41.52399799906],[-71.464897,41.52379199906],[-71.464439,41.52339899906],[-71.464035,41.52304099906],[-71.463627,41.52267399906],[-71.463507,41.52254399906],[-71.463424,41.52244499906],[-71.463289,41.52228399906],[-71.463121,41.52203999906],[-71.46301,41.52186199906],[-71.462878,41.52162899906],[-71.46279,41.52143399906],[-71.462711,41.52125299906],[-71.462613,41.52095099906],[-71.462448,41.52034799906],[-71.462341,41.51986299906],[-71.462288,41.51966499906],[-71.462067,41.51872299906],[-71.461922,41.51812699906],[-71.461888,41.51797899906],[-71.461723,41.51726899906],[-71.461662,41.51697899906],[-71.461605,41.51668499906],[-71.461423,41.51561499906],[-71.461358,41.51531299906],[-71.461275,41.51488199906],[-71.461185,41.51445399906],[-71.461158,41.51425799906],[-71.461137,41.51412699906],[-71.461114,41.51401999906],[-71.461024,41.51345199906],[-71.460918,41.51290099906],[-71.460892,41.51278399906],[-71.46081,41.51241599906],[-71.460788,41.51230699906],[-71.460698,41.51187999906],[-71.460634,41.51157599906],[-71.460518,41.51107399906],[-71.460327,41.51017799906],[-71.460286,41.50994099906],[-71.460237,41.50971299906],[-71.460145,41.50929999906],[-71.460054,41.50892599906],[-71.460037,41.50882699906],[-71.45977,41.50766399906],[-71.459732,41.50747299906],[-71.459702,41.50733199906],[-71.459648,41.50700399906],[-71.459602,41.50667199906],[-71.459579,41.50630999906],[-71.459579,41.50610399906],[-71.459578,41.50605299906],[-71.459577,41.50591499906],[-71.459575,41.50571299906],[-71.459574,41.50528499906],[-71.459572,41.50474899906],[-71.459564,41.50430199906],[-71.459541,41.50378799906],[-71.459511,41.50338699906],[-71.459488,41.50318099906],[-71.459412,41.50273499906],[-71.459396,41.50263199906],[-71.459259,41.50209399906],[-71.459236,41.50201799906],[-71.459122,41.50167099906],[-71.458929,41.50115599906],[-71.458748,41.50068699906],[-71.458672,41.50050399906],[-71.458183,41.49924099906],[-71.458115,41.49906899906],[-71.457966,41.49905799906],[-71.453721,41.49975699906],[-71.453453,41.49987399906],[-71.452481,41.50033599906],[-71.452082,41.50058999906],[-71.451909,41.50085899906],[-71.451222,41.50116599906],[-71.450101,41.50180099906],[-71.449483,41.50203399906],[-71.448768,41.50243899906],[-71.448148,41.50278999906],[-71.447378,41.50280199906],[-71.442508,41.50288099906],[-71.442167,41.50289899906],[-71.442076,41.50290099906],[-71.440121,41.50294699906],[-71.430826,41.50316399906],[-71.430383,41.50317499906],[-71.42892,41.50320899906],[-71.422636,41.50335899906],[-71.421373,41.50336799906],[-71.420258,41.50337899906],[-71.418398,41.50413199906],[-71.415412,41.50998499906],[-71.412643,41.51349999906],[-71.413666,41.51570799906],[-71.412884,41.51917899906],[-71.413787,41.52373099906],[-71.414264,41.52625799906],[-71.414671,41.52795599906],[-71.414052,41.53010599906],[-71.41544,41.53018399906],[-71.415698,41.53018899906],[-71.416141,41.53018999906],[-71.416824,41.53017399906],[-71.417236,41.53016299906],[-71.417477,41.53015999906],[-71.417648,41.53015099906],[-71.418403,41.53011699906],[-71.418747,41.53009799906],[-71.419095,41.53007099906],[-71.41948,41.53003699906],[-71.419525,41.53003299906],[-71.419968,41.52998399906],[-71.420403,41.52992599906],[-71.420611,41.52989299906],[-71.421234,41.52979299906],[-71.421372,41.52976599906],[-71.421646,41.52971299906],[-71.422081,41.52962099906],[-71.422516,41.52951799906],[-71.422935,41.52939999906],[-71.423225,41.52929799906],[-71.42359,41.52916599906],[-71.424082,41.52897899906],[-71.424401,41.52883699906],[-71.424785,41.52867199906],[-71.425242,41.52847099906],[-71.425941,41.52817899906],[-71.426216,41.52806099906],[-71.426278,41.52803899906],[-71.426333,41.52802099906],[-71.426375,41.52800799906],[-71.426593,41.52792999906],[-71.427055,41.52776299906],[-71.427559,41.52759599906],[-71.428146,41.52741999906],[-71.428444,41.52733999906],[-71.429054,41.52719499906],[-71.42971,41.52706499906],[-71.430191,41.52698899906],[-71.430695,41.52691699906],[-71.43103,41.52687799906],[-71.431703,41.52682799906],[-71.432095,41.52680799906],[-71.432346,41.52679899906],[-71.432753,41.52679099906],[-71.433378,41.52679399906],[-71.43374,41.52681199906],[-71.434071,41.52682999906],[-71.434387,41.52684999906],[-71.434602,41.52687099906],[-71.435316,41.52694799906],[-71.435921,41.52702899906],[-71.436426,41.52712599906],[-71.437125,41.52727199906],[-71.438121,41.52748599906],[-71.43982,41.52785799906],[-71.440492,41.52800099906],[-71.441231,41.52814899906],[-71.443031,41.52852999906],[-71.444244,41.52877799906],[-71.445765,41.52910499906],[-71.447965,41.52956599906],[-71.451162,41.53024399906],[-71.451924,41.53040399906],[-71.452624,41.53054699906],[-71.453017,41.53062199906],[-71.453717,41.53073899906],[-71.45459,41.53086199906],[-71.455641,41.53097999906],[-71.455767,41.53099299906],[-71.456029,41.53101099906],[-71.456461,41.53103899906],[-71.456817,41.53105499906],[-71.457011,41.53106099906],[-71.457672,41.53108199906],[-71.458672,41.53108599906],[-71.459534,41.53105199906],[-71.459625,41.53104199906],[-71.459784,41.53103099906],[-71.459907,41.53102399906],[-71.460869,41.53096399906],[-71.461777,41.53086099906],[-71.46258,41.53074899906],[-71.462766,41.53072399906],[-71.462912,41.53070299906],[-71.462964,41.53069399906],[-71.464577,41.53037999906],[-71.465131,41.53025299906],[-71.465881,41.53008299906],[-71.465988,41.53005999906],[-71.466125,41.53002499906]]]}}"}, +{"type": "blockgroup", "typeId": 504022, "areaId": 29392, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.468681,41.53733799906],[-71.468651,41.53692999906],[-71.468635,41.53680899906],[-71.468613,41.53664799906],[-71.468559,41.53636599906],[-71.468498,41.53608299906],[-71.468391,41.53573999906],[-71.468132,41.53505299906],[-71.467659,41.53397799906],[-71.467453,41.53347399906],[-71.466698,41.53170399906],[-71.466371,41.53094599906],[-71.46608,41.53027299906],[-71.465988,41.53005999906],[-71.465881,41.53008299906],[-71.465131,41.53025299906],[-71.464577,41.53037999906],[-71.462964,41.53069399906],[-71.462912,41.53070299906],[-71.462766,41.53072399906],[-71.46258,41.53074899906],[-71.461777,41.53086099906],[-71.460869,41.53096399906],[-71.459907,41.53102399906],[-71.459784,41.53103099906],[-71.459625,41.53104199906],[-71.459534,41.53105199906],[-71.458672,41.53108599906],[-71.457672,41.53108199906],[-71.457011,41.53106099906],[-71.456817,41.53105499906],[-71.456461,41.53103899906],[-71.456029,41.53101099906],[-71.455767,41.53099299906],[-71.455641,41.53097999906],[-71.45459,41.53086199906],[-71.453717,41.53073899906],[-71.453017,41.53062199906],[-71.452624,41.53054699906],[-71.451924,41.53040399906],[-71.451162,41.53024399906],[-71.447965,41.52956599906],[-71.445765,41.52910499906],[-71.444244,41.52877799906],[-71.443031,41.52852999906],[-71.441231,41.52814899906],[-71.440492,41.52800099906],[-71.43982,41.52785799906],[-71.438121,41.52748599906],[-71.437125,41.52727199906],[-71.436426,41.52712599906],[-71.435921,41.52702899906],[-71.435316,41.52694799906],[-71.434602,41.52687099906],[-71.434387,41.52684999906],[-71.434071,41.52682999906],[-71.43374,41.52681199906],[-71.433378,41.52679399906],[-71.432753,41.52679099906],[-71.432346,41.52679899906],[-71.432095,41.52680799906],[-71.431703,41.52682799906],[-71.43103,41.52687799906],[-71.430695,41.52691699906],[-71.430191,41.52698899906],[-71.42971,41.52706499906],[-71.429054,41.52719499906],[-71.428444,41.52733999906],[-71.428146,41.52741999906],[-71.427559,41.52759599906],[-71.427055,41.52776299906],[-71.426593,41.52792999906],[-71.426375,41.52800799906],[-71.426333,41.52802099906],[-71.426278,41.52803899906],[-71.426216,41.52806099906],[-71.425941,41.52817899906],[-71.425242,41.52847099906],[-71.424785,41.52867199906],[-71.424401,41.52883699906],[-71.424082,41.52897899906],[-71.42359,41.52916599906],[-71.423225,41.52929799906],[-71.422935,41.52939999906],[-71.422516,41.52951799906],[-71.422081,41.52962099906],[-71.421646,41.52971299906],[-71.421372,41.52976599906],[-71.421234,41.52979299906],[-71.420611,41.52989299906],[-71.420403,41.52992599906],[-71.419968,41.52998399906],[-71.419525,41.53003299906],[-71.41948,41.53003699906],[-71.419095,41.53007099906],[-71.418747,41.53009799906],[-71.418403,41.53011699906],[-71.417648,41.53015099906],[-71.417477,41.53015999906],[-71.417236,41.53016299906],[-71.416824,41.53017399906],[-71.416141,41.53018999906],[-71.415698,41.53018899906],[-71.41544,41.53018399906],[-71.414052,41.53010599906],[-71.414116,41.53019399906],[-71.414124,41.53020599906],[-71.415421,41.53200799906],[-71.416484,41.53322099906],[-71.416476,41.53328799906],[-71.416129,41.53625299906],[-71.417952,41.53757899906],[-71.421193,41.53928499906],[-71.421699,41.54023199906],[-71.423825,41.54421099906],[-71.420033,41.54882599906],[-71.417787,41.55156099906],[-71.41555,41.55314699906],[-71.414684,41.55448899906],[-71.416113,41.55574499906],[-71.417836,41.55641899906],[-71.426923,41.55915399906],[-71.429506,41.55998699906],[-71.433305,41.55911599906],[-71.433811,41.56047999906],[-71.43138,41.56150299906],[-71.431684,41.56252699906],[-71.433774,41.56365899906],[-71.435152,41.56319799906],[-71.43574,41.56262999906],[-71.436196,41.56169299906],[-71.436436,41.56089299906],[-71.436536,41.56088199906],[-71.436539,41.56084099906],[-71.437602,41.56046999906],[-71.438144,41.56036899906],[-71.438674,41.56035199906],[-71.43927,41.56038399906],[-71.44015,41.56044799906],[-71.440355,41.56045699906],[-71.440468,41.56046199906],[-71.440507,41.56046099906],[-71.440911,41.56045199906],[-71.440993,41.56044099906],[-71.441134,41.56040599906],[-71.441201,41.56037599906],[-71.441255,41.56033499906],[-71.441306,41.56028499906],[-71.441377,41.56025499906],[-71.441462,41.56025299906],[-71.441617,41.56025899906],[-71.441691,41.56025499906],[-71.441771,41.56024199906],[-71.441847,41.56022499906],[-71.441919,41.56019899906],[-71.441971,41.56015299906],[-71.442014,41.56010499906],[-71.442065,41.56005799906],[-71.442128,41.56001399906],[-71.442196,41.55998499906],[-71.442345,41.55997699906],[-71.442422,41.55997699906],[-71.442494,41.55998499906],[-71.442565,41.56000299906],[-71.442714,41.56005899906],[-71.4428,41.56008099906],[-71.443041,41.56012599906],[-71.443117,41.56014899906],[-71.443201,41.56016799906],[-71.443289,41.56016799906],[-71.44345,41.56013799906],[-71.443519,41.56012099906],[-71.443676,41.56008999906],[-71.444,41.56003699906],[-71.444077,41.56003499906],[-71.444162,41.56004399906],[-71.444564,41.56013599906],[-71.444646,41.56013699906],[-71.444683,41.56014199906],[-71.444834,41.56001399906],[-71.444435,41.55942899906],[-71.443665,41.55841399906],[-71.442903,41.55741299906],[-71.442145,41.55640399906],[-71.441901,41.55608899906],[-71.441605,41.55571399906],[-71.441132,41.55505399906],[-71.441017,41.55483199906],[-71.440956,41.55467199906],[-71.440933,41.55459999906],[-71.440865,41.55419499906],[-71.440849,41.55355499906],[-71.440843,41.55300599906],[-71.440842,41.55285599906],[-71.440834,41.55253999906],[-71.440849,41.55124699906],[-71.440872,41.55081899906],[-71.440907,41.55049299906],[-71.440961,41.55007699906],[-71.440974,41.55000999906],[-71.44102,41.54976599906],[-71.441063,41.54955799906],[-71.441154,41.54909499906],[-71.441254,41.54869799906],[-71.441292,41.54856899906],[-71.441503,41.54857799906],[-71.441654,41.54858499906],[-71.441809,41.54859099906],[-71.442078,41.54860299906],[-71.444031,41.54860699906],[-71.444084,41.54860299906],[-71.445023,41.54859199906],[-71.446976,41.54859499906],[-71.448128,41.54858799906],[-71.449066,41.54858799906],[-71.449898,41.54857599906],[-71.451279,41.54854599906],[-71.451759,41.54856099906],[-71.452202,41.54855299906],[-71.452705,41.54853799906],[-71.453026,41.54853399906],[-71.453186,41.54851499906],[-71.453308,41.54848099906],[-71.453583,41.54838199906],[-71.454269,41.54806099906],[-71.455872,41.54731799906],[-71.456291,41.54710799906],[-71.456459,41.54702799906],[-71.456467,41.54701999906],[-71.457359,41.54661899906],[-71.458282,41.54618799906],[-71.458847,41.54591399906],[-71.459427,41.54566199906],[-71.459785,41.54558199906],[-71.46019,41.54554699906],[-71.460571,41.54548999906],[-71.460883,41.54541699906],[-71.460945,41.54540299906],[-71.461449,41.54526099906],[-71.461929,41.54515099906],[-71.462318,41.54507099906],[-71.462654,41.54493299906],[-71.462738,41.54488999906],[-71.463203,41.54464699906],[-71.463661,41.54446399906],[-71.464127,41.54438799906],[-71.46534,41.54436099906],[-71.465363,41.54435699906],[-71.465958,41.54434599906],[-71.466454,41.54431499906],[-71.466812,41.54424299906],[-71.4673,41.54408599906],[-71.467888,41.54394499906],[-71.467888,41.54392199906],[-71.467979,41.54337699906],[-71.468056,41.54298799906],[-71.468193,41.54247699906],[-71.468399,41.54153399906],[-71.468452,41.54115699906],[-71.468464,41.54104799906],[-71.468475,41.54081699906],[-71.468475,41.54075999906],[-71.468485,41.54073599906],[-71.468498,41.54061899906],[-71.468567,41.54017999906],[-71.468605,41.53997799906],[-71.468544,41.53984099906],[-71.468506,41.53970299906],[-71.468483,41.53955499906],[-71.468481,41.53952499906],[-71.468475,41.53940599906],[-71.468478,41.53925699906],[-71.468483,41.53917699906],[-71.468517,41.53893799906],[-71.468545,41.53871899906],[-71.468575,41.53852499906],[-71.468605,41.53834499906],[-71.468666,41.53781099906],[-71.468681,41.53754399906],[-71.468681,41.53733799906]]]}}"}, +{"type": "blockgroup", "typeId": 505001, "areaId": 29393, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.620715,41.56423399906],[-71.620543,41.56336099906],[-71.618982,41.55562499906],[-71.618804,41.55473899906],[-71.618595,41.55296399906],[-71.618477,41.55242299906],[-71.618068,41.55047499906],[-71.617424,41.54740399906],[-71.617401,41.54730699906],[-71.617373,41.54718799906],[-71.617307,41.54667399906],[-71.617166,41.54592199906],[-71.617152,41.54584999906],[-71.616938,41.54469499906],[-71.616761,41.54386499906],[-71.616714,41.54368199906],[-71.61647,41.54247399906],[-71.616423,41.54233199906],[-71.616413,41.54227399906],[-71.616397,41.54204299906],[-71.616388,41.54199299906],[-71.61637,41.54194899906],[-71.616327,41.54186699906],[-71.616253,41.54170199906],[-71.616227,41.54161699906],[-71.616208,41.54148799906],[-71.616201,41.54132499906],[-71.616204,41.54107299906],[-71.616194,41.54090199906],[-71.616173,41.54066799906],[-71.616152,41.54054599906],[-71.61612,41.54042699906],[-71.616006,41.54011899906],[-71.615929,41.53980499906],[-71.615662,41.53835099906],[-71.615623,41.53811499906],[-71.615423,41.53688499906],[-71.615131,41.53549099906],[-71.614876,41.53442599906],[-71.614776,41.53392599906],[-71.614404,41.53201899906],[-71.614193,41.53099799906],[-71.614036,41.53019899906],[-71.613843,41.52916899906],[-71.613628,41.52805999906],[-71.613434,41.52697999906],[-71.613198,41.52589299906],[-71.613076,41.52528799906],[-71.613049,41.52515399906],[-71.613042,41.52512099906],[-71.612629,41.52483699906],[-71.611927,41.52469999906],[-71.611305,41.52457899906],[-71.610926,41.52450299906],[-71.605139,41.52312099906],[-71.605082,41.52311599906],[-71.605076,41.52310799906],[-71.604211,41.52291999906],[-71.603376,41.52270599906],[-71.598276,41.52143199906],[-71.597723,41.52130499906],[-71.597275,41.52112999906],[-71.594252,41.52035199906],[-71.592394,41.51989199906],[-71.59051,41.51928799906],[-71.586982,41.51821299906],[-71.579988,41.51646399906],[-71.578657,41.51613199906],[-71.576748,41.51565399906],[-71.576385,41.51556499906],[-71.571309,41.51429799906],[-71.569939,41.51395199906],[-71.569122,41.51373799906],[-71.560058,41.51135899906],[-71.558922,41.51106599906],[-71.558243,41.51088499906],[-71.557964,41.51080899906],[-71.557099,41.51058199906],[-71.55702,41.51056199906],[-71.545034,41.50748099906],[-71.535954,41.50514699906],[-71.533654,41.50453699906],[-71.530528,41.50375199906],[-71.530461,41.50374699906],[-71.53033,41.50373799906],[-71.530086,41.50372099906],[-71.529793,41.50368799906],[-71.529634,41.50367599906],[-71.529442,41.50367399906],[-71.528171,41.50343199906],[-71.527789,41.50335899906],[-71.527679,41.50330699906],[-71.527214,41.50320099906],[-71.527137,41.50317999906],[-71.526848,41.50313499906],[-71.526413,41.50311899906],[-71.525955,41.50306999906],[-71.525413,41.50296699906],[-71.524093,41.50275699906],[-71.523254,41.50264299906],[-71.522506,41.50254699906],[-71.522061,41.50249399906],[-71.521337,41.50240699906],[-71.520238,41.50224299906],[-71.519506,41.50212099906],[-71.518812,41.50197999906],[-71.518582,41.50194499906],[-71.518011,41.50185799906],[-71.517797,41.50183099906],[-71.517408,41.50180099906],[-71.516897,41.50173999906],[-71.516309,41.50163299906],[-71.515975,41.50157799906],[-71.5158,41.50155099906],[-71.51535,41.50146299906],[-71.514896,41.50134099906],[-71.514335,41.50122699906],[-71.513495,41.50106299906],[-71.512801,41.50094099906],[-71.512328,41.50084899906],[-71.51213,41.50081199906],[-71.510114,41.50044399906],[-71.507886,41.50005999906],[-71.508523,41.50267299906],[-71.508774,41.50369999906],[-71.508797,41.50376099906],[-71.508911,41.50416899906],[-71.509056,41.50477199906],[-71.509186,41.50528299906],[-71.509491,41.50639299906],[-71.509666,41.50705299906],[-71.509911,41.50801799906],[-71.509933,41.50808699906],[-71.510048,41.50857199906],[-71.510155,41.50898399906],[-71.510277,41.50936099906],[-71.51033,41.50956699906],[-71.510422,41.50986899906],[-71.510475,41.51001699906],[-71.510519,41.51011899906],[-71.510565,41.51018299906],[-71.510593,41.51026399906],[-71.511549,41.51323999906],[-71.511748,41.51376599906],[-71.511932,41.51448799906],[-71.512225,41.51531499906],[-71.512407,41.51550699906],[-71.512551,41.51579699906],[-71.513483,41.51767399906],[-71.513782,41.51827499906],[-71.513817,41.51838299906],[-71.513892,41.51854199906],[-71.514265,41.51928799906],[-71.514364,41.51953899906],[-71.514457,41.51981599906],[-71.514665,41.52024999906],[-71.515097,41.52066399906],[-71.515293,41.52087599906],[-71.515398,41.52102799906],[-71.515439,41.52111599906],[-71.515462,41.52119199906],[-71.515497,41.52133199906],[-71.515596,41.52164699906],[-71.515707,41.52197399906],[-71.515806,41.52226599906],[-71.515895,41.52242099906],[-71.516319,41.52323299906],[-71.51683,41.52416999906],[-71.517036,41.52457399906],[-71.517555,41.52571499906],[-71.517838,41.52629099906],[-71.518028,41.52669899906],[-71.518127,41.52695499906],[-71.518135,41.52698899906],[-71.518268,41.52728099906],[-71.518298,41.52734799906],[-71.518425,41.52762599906],[-71.518439,41.52765599906],[-71.518721,41.52829899906],[-71.51882,41.52852499906],[-71.519029,41.52892499906],[-71.519337,41.52949799906],[-71.519566,41.52992499906],[-71.519565,41.53031799906],[-71.519548,41.53349199906],[-71.519537,41.53567399906],[-71.519529,41.53713899906],[-71.519527,41.53868699906],[-71.519493,41.54441499906],[-71.51918,41.55633199906],[-71.519358,41.55616799906],[-71.519532,41.55601299906],[-71.519758,41.55582999906],[-71.520064,41.55560899906],[-71.520798,41.55514399906],[-71.521605,41.55463099906],[-71.522202,41.55425499906],[-71.522601,41.55400899906],[-71.522677,41.55396099906],[-71.523348,41.55352899906],[-71.523534,41.55340699906],[-71.523979,41.55312299906],[-71.524266,41.55295299906],[-71.524719,41.55268499906],[-71.525352,41.55227699906],[-71.525988,41.55188599906],[-71.526915,41.55131599906],[-71.527412,41.55100999906],[-71.528305,41.55044899906],[-71.528946,41.55004099906],[-71.529198,41.54989199906],[-71.529465,41.54972799906],[-71.529533,41.54969399906],[-71.529831,41.54952199906],[-71.530144,41.54937399906],[-71.531578,41.54872899906],[-71.531937,41.54856099906],[-71.532295,41.54837399906],[-71.532578,41.54819499906],[-71.532814,41.54800399906],[-71.532923,41.54806899906],[-71.532986,41.54811299906],[-71.533012,41.54813899906],[-71.533066,41.54819499906],[-71.533112,41.54828999906],[-71.533127,41.54838199906],[-71.533134,41.54853099906],[-71.533188,41.54890799906],[-71.53334,41.54952999906],[-71.533394,41.54982399906],[-71.533417,41.54989199906],[-71.533531,41.55042599906],[-71.533592,41.55084999906],[-71.533592,41.55102499906],[-71.533585,41.55115899906],[-71.533569,41.55123899906],[-71.533554,41.55136499906],[-71.533508,41.55160499906],[-71.533272,41.55263499906],[-71.533081,41.55337899906],[-71.532814,41.55449299906],[-71.53273,41.55500399906],[-71.532738,41.55516399906],[-71.532768,41.55530499906],[-71.532829,41.55547699906],[-71.532898,41.55559499906],[-71.533035,41.55576699906],[-71.533195,41.55589699906],[-71.533371,41.55601499906],[-71.533592,41.55611399906],[-71.533844,41.55619399906],[-71.534096,41.55625899906],[-71.534302,41.55632399906],[-71.53447,41.55640399906],[-71.534599,41.55649899906],[-71.534729,41.55663299906],[-71.534779,41.55671799906],[-71.534843,41.55682399906],[-71.535019,41.55749899906],[-71.535156,41.55799499906],[-71.535278,41.55837599906],[-71.5355,41.55915499906],[-71.535515,41.55928399906],[-71.53553,41.55955899906],[-71.5355,41.55970799906],[-71.535408,41.56005899906],[-71.535141,41.56086699906],[-71.535095,41.56113099906],[-71.535088,41.56124499906],[-71.535088,41.56135199906],[-71.535103,41.56145499906],[-71.535141,41.56157699906],[-71.535179,41.56167599906],[-71.53524,41.56180599906],[-71.535416,41.56207299906],[-71.535576,41.56205699906],[-71.535675,41.56205699906],[-71.535789,41.56208399906],[-71.535927,41.56212999906],[-71.536079,41.56219099906],[-71.536201,41.56222499906],[-71.536308,41.56223699906],[-71.536385,41.56222499906],[-71.536446,41.56220199906],[-71.536491,41.56215999906],[-71.536812,41.56189699906],[-71.536972,41.56180999906],[-71.537117,41.56175599906],[-71.537254,41.56173299906],[-71.537498,41.56172199906],[-71.537735,41.56172199906],[-71.538704,41.56174699906],[-71.53875,41.56174899906],[-71.539352,41.56175599906],[-71.540039,41.56175599906],[-71.542137,41.56177899906],[-71.542778,41.56177899906],[-71.542843,41.56177799906],[-71.543533,41.56177499906],[-71.54393,41.56178699906],[-71.544212,41.56180599906],[-71.544449,41.56183599906],[-71.54467,41.56187399906],[-71.545102,41.56196399906],[-71.54558,41.56206399906],[-71.545715,41.56209199906],[-71.54686,41.56231299906],[-71.547998,41.56252299906],[-71.548416,41.56260299906],[-71.549141,41.56275199906],[-71.549477,41.56280899906],[-71.549881,41.56288899906],[-71.550274,41.56295899906],[-71.550308,41.56296499906],[-71.55072,41.56304599906],[-71.551239,41.56312899906],[-71.551643,41.56319799906],[-71.551926,41.56326299906],[-71.552345,41.56334299906],[-71.552795,41.56341899906],[-71.553009,41.56344999906],[-71.553207,41.56346499906],[-71.553337,41.56346099906],[-71.553421,41.56344999906],[-71.553589,41.56341599906],[-71.55381,41.56335399906],[-71.554001,41.56331999906],[-71.554192,41.56330499906],[-71.554375,41.56328199906],[-71.554863,41.56326299906],[-71.555206,41.56324399906],[-71.556229,41.56310299906],[-71.556282,41.56307999906],[-71.55658,41.56282399906],[-71.556725,41.56273299906],[-71.556824,41.56269799906],[-71.556915,41.56267899906],[-71.556976,41.56267199906],[-71.557053,41.56267499906],[-71.557205,41.56270199906],[-71.557419,41.56276699906],[-71.557762,41.56287799906],[-71.558197,41.56302999906],[-71.558815,41.56323599906],[-71.559074,41.56329699906],[-71.55928,41.56335099906],[-71.559822,41.56351499906],[-71.560638,41.56373999906],[-71.560898,41.56383499906],[-71.561005,41.56388099906],[-71.561157,41.56397199906],[-71.561531,41.56421299906],[-71.561783,41.56438399906],[-71.561951,41.56448699906],[-71.562164,41.56457499906],[-71.562224,41.56459699906],[-71.562279,41.56461699906],[-71.562698,41.56476199906],[-71.562881,41.56480399906],[-71.563019,41.56482699906],[-71.563164,41.56483099906],[-71.563278,41.56481899906],[-71.563629,41.56472399906],[-71.56398,41.56461299906],[-71.564194,41.56452599906],[-71.564316,41.56446499906],[-71.564407,41.56438999906],[-71.564514,41.56430099906],[-71.564819,41.56407899906],[-71.564995,41.56393099906],[-71.56514,41.56376299906],[-71.565361,41.56348799906],[-71.565372,41.56346999906],[-71.565514,41.56325899906],[-71.565727,41.56301099906],[-71.566078,41.56266399906],[-71.566269,41.56243899906],[-71.56649,41.56211899906],[-71.566643,41.56191299906],[-71.566811,41.56167599906],[-71.567162,41.56114999906],[-71.567383,41.56080599906],[-71.568008,41.56080599906],[-71.569122,41.56078699906],[-71.569702,41.56076799906],[-71.570457,41.56074899906],[-71.57148,41.56073399906],[-71.571709,41.56071499906],[-71.572472,41.56067999906],[-71.572952,41.56065399906],[-71.573891,41.56063499906],[-71.573952,41.56144699906],[-71.573982,41.56225199906],[-71.574028,41.56271399906],[-71.574089,41.56307599906],[-71.57415,41.56397599906],[-71.574226,41.56532699906],[-71.574234,41.56575799906],[-71.574252,41.56590799906],[-71.57428,41.56614699906],[-71.57428,41.56632999906],[-71.574273,41.56643999906],[-71.574272,41.56646299906],[-71.574242,41.56657799906],[-71.573738,41.56749599906],[-71.573583,41.56782399906],[-71.573487,41.56799699906],[-71.573477,41.56803099906],[-71.573699,41.56805299906],[-71.573811,41.56804999906],[-71.574025,41.56807099906],[-71.574148,41.56809099906],[-71.574322,41.56809399906],[-71.574608,41.56808099906],[-71.574806,41.56807299906],[-71.57526,41.56798299906],[-71.575784,41.56793999906],[-71.576315,41.56787099906],[-71.57658,41.56784199906],[-71.576687,41.56783799906],[-71.576777,41.56785299906],[-71.576854,41.56788599906],[-71.576953,41.56796899906],[-71.577083,41.56800199906],[-71.577211,41.56800799906],[-71.577546,41.56800199906],[-71.577743,41.56801099906],[-71.577902,41.56804099906],[-71.57807,41.56809199906],[-71.578761,41.56813599906],[-71.57908,41.56813999906],[-71.579323,41.56815399906],[-71.579596,41.56815899906],[-71.57974,41.56815099906],[-71.580015,41.56806199906],[-71.58023,41.56800599906],[-71.580482,41.56796799906],[-71.58076,41.56795099906],[-71.580895,41.56793899906],[-71.581041,41.56791899906],[-71.581617,41.56776499906],[-71.581769,41.56774899906],[-71.581913,41.56774499906],[-71.582127,41.56774799906],[-71.582531,41.56780699906],[-71.582722,41.56781699906],[-71.583026,41.56781599906],[-71.583331,41.56784599906],[-71.583491,41.56783699906],[-71.583925,41.56776399906],[-71.584519,41.56767399906],[-71.58525,41.56755699906],[-71.585402,41.56753699906],[-71.585517,41.56752899906],[-71.585601,41.56753699906],[-71.585708,41.56757799906],[-71.585799,41.56765799906],[-71.586029,41.56789999906],[-71.586227,41.56810099906],[-71.586443,41.56814399906],[-71.586552,41.56815299906],[-71.586876,41.56810299906],[-71.587281,41.56797799906],[-71.587526,41.56786699906],[-71.587401,41.56742099906],[-71.587534,41.56725699906],[-71.587979,41.56736099906],[-71.588219,41.56724299906],[-71.588429,41.56717299906],[-71.588894,41.56693199906],[-71.589284,41.56672299906],[-71.589418,41.56655299906],[-71.589507,41.56637599906],[-71.589624,41.56609799906],[-71.589635,41.56588999906],[-71.589598,41.56551199906],[-71.58955,41.56534299906],[-71.589453,41.56501999906],[-71.589372,41.56477299906],[-71.58952,41.56459499906],[-71.589699,41.56440199906],[-71.589939,41.56423099906],[-71.590071,41.56396899906],[-71.590059,41.56334399906],[-71.58987,41.56298299906],[-71.589771,41.56252899906],[-71.589607,41.56209999906],[-71.590007,41.56228699906],[-71.590481,41.56255399906],[-71.591091,41.56283699906],[-71.591626,41.56309599906],[-71.592299,41.56329399906],[-71.593077,41.56328699906],[-71.593917,41.56313399906],[-71.594788,41.56310399906],[-71.595719,41.56301999906],[-71.596574,41.56298999906],[-71.597277,41.56307399906],[-71.597781,41.56311999906],[-71.598728,41.56314299906],[-71.599338,41.56312699906],[-71.600117,41.56314299906],[-71.60056,41.56314999906],[-71.601049,41.56314999906],[-71.601766,41.56321099906],[-71.60224,41.56308899906],[-71.602718,41.56330099906],[-71.603081,41.56342599906],[-71.60333,41.56366199906],[-71.603545,41.56390799906],[-71.603822,41.56410599906],[-71.604115,41.56437399906],[-71.604301,41.56460299906],[-71.604717,41.56490899906],[-71.605361,41.56478699906],[-71.605577,41.56464999906],[-71.605991,41.56456699906],[-71.606453,41.56442199906],[-71.607128,41.56435399906],[-71.607658,41.56420799906],[-71.611014,41.56041599906],[-71.611757,41.55918299906],[-71.611831,41.55924099906],[-71.611955,41.55934999906],[-71.612008,41.55940499906],[-71.612047,41.55946399906],[-71.612057,41.55951699906],[-71.611999,41.55956399906],[-71.611955,41.55960699906],[-71.611956,41.55966299906],[-71.611967,41.55972199906],[-71.612,41.55977399906],[-71.612128,41.55987399906],[-71.612207,41.55992499906],[-71.61228,41.55997999906],[-71.612341,41.56003799906],[-71.612391,41.56009699906],[-71.612426,41.56015699906],[-71.612432,41.56028799906],[-71.612444,41.56034499906],[-71.612475,41.56042099906],[-71.612516,41.56048399906],[-71.612567,41.56054199906],[-71.612666,41.56062199906],[-71.612739,41.56065799906],[-71.612833,41.56065099906],[-71.612907,41.56060899906],[-71.612983,41.56057499906],[-71.61307,41.56055099906],[-71.613153,41.56053999906],[-71.613229,41.56054199906],[-71.613313,41.56052899906],[-71.613373,41.56048399906],[-71.613451,41.56044099906],[-71.613539,41.56041499906],[-71.613627,41.56040299906],[-71.613714,41.56041799906],[-71.613789,41.56044999906],[-71.613854,41.56049799906],[-71.614059,41.56062499906],[-71.614125,41.56060999906],[-71.614207,41.56060999906],[-71.614477,41.56075199906],[-71.614664,41.56086899906],[-71.614798,41.56096199906],[-71.614852,41.56101899906],[-71.614867,41.56107499906],[-71.61484,41.56112899906],[-71.6148,41.56118399906],[-71.614777,41.56124799906],[-71.614769,41.56130999906],[-71.614789,41.56136499906],[-71.614874,41.56149299906],[-71.614922,41.56164499906],[-71.61492,41.56172499906],[-71.614904,41.56178099906],[-71.614887,41.56199999906],[-71.614885,41.56213099906],[-71.61491,41.56218799906],[-71.614982,41.56223399906],[-71.61505,41.56225199906],[-71.615217,41.56226699906],[-71.615292,41.56226299906],[-71.615372,41.56224299906],[-71.615449,41.56221799906],[-71.615527,41.56217899906],[-71.615609,41.56216199906],[-71.615689,41.56216199906],[-71.615773,41.56214599906],[-71.61584,41.56211199906],[-71.615897,41.56206899906],[-71.615934,41.56201899906],[-71.615954,41.56195999906],[-71.615961,41.56189999906],[-71.615938,41.56187499906],[-71.619417,41.56344099906],[-71.620715,41.56423399906]]]}}"}, +{"type": "blockgroup", "typeId": 505002, "areaId": 29394, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.791402,41.54609199906],[-71.790744,41.54615099906],[-71.784895,41.54666999906],[-71.784539,41.54669799906],[-71.782154,41.54688299906],[-71.7782,41.54747199906],[-71.77807,41.54749199906],[-71.771333,41.54839199906],[-71.764161,41.54929799906],[-71.758416,41.55013299906],[-71.751208,41.55112199906],[-71.75111,41.55112799906],[-71.74782,41.55113599906],[-71.744267,41.55114399906],[-71.738385,41.55175699906],[-71.736303,41.55195699906],[-71.735354,41.55205599906],[-71.732046,41.55239399906],[-71.729985,41.55259699906],[-71.729799,41.55261599906],[-71.72864,41.55271799906],[-71.725601,41.55304499906],[-71.719982,41.55365199906],[-71.719357,41.55371999906],[-71.718263,41.55384099906],[-71.718136,41.55385599906],[-71.717705,41.55390299906],[-71.715018,41.55420299906],[-71.710683,41.55469599906],[-71.705862,41.55524699906],[-71.701134,41.55569999906],[-71.700376,41.55577699906],[-71.698626,41.55593499906],[-71.697706,41.55602499906],[-71.697271,41.55606799906],[-71.696609,41.55613099906],[-71.695056,41.55627799906],[-71.694362,41.55634099906],[-71.692395,41.55652299906],[-71.691675,41.55658999906],[-71.687506,41.55699299906],[-71.685739,41.55718099906],[-71.684288,41.55737299906],[-71.682997,41.55751999906],[-71.6785,41.55796799906],[-71.670995,41.55881399906],[-71.66868,41.55907999906],[-71.668234,41.55912699906],[-71.667839,41.55916999906],[-71.667763,41.55918899906],[-71.667289,41.55923899906],[-71.667046,41.55926899906],[-71.666842,41.55928899906],[-71.666156,41.55937499906],[-71.663616,41.55964599906],[-71.663399,41.55966899906],[-71.663254,41.55968499906],[-71.66143,41.55985399906],[-71.661751,41.56215399906],[-71.661779,41.56234999906],[-71.66165,41.56538399906],[-71.66228,41.56717199906],[-71.66234,41.56769799906],[-71.66259,41.56825199906],[-71.662526,41.56961999906],[-71.664466,41.56918599906],[-71.666944,41.56987799906],[-71.668451,41.56987799906],[-71.669582,41.56977399906],[-71.672836,41.57021299906],[-71.676433,41.56972299906],[-71.678522,41.56974899906],[-71.678899,41.56765799906],[-71.679861,41.56741599906],[-71.679748,41.56745399906],[-71.679692,41.56753899906],[-71.679584,41.56787699906],[-71.679575,41.56800699906],[-71.679581,41.56813599906],[-71.679639,41.56822099906],[-71.679772,41.56831399906],[-71.679887,41.56840799906],[-71.679987,41.56853099906],[-71.680101,41.56866199906],[-71.680156,41.56885699906],[-71.680183,41.56897799906],[-71.680158,41.56905599906],[-71.679948,41.56929999906],[-71.679885,41.56940699906],[-71.679894,41.56951999906],[-71.679928,41.56964799906],[-71.679924,41.56978599906],[-71.67984,41.56987999906],[-71.679709,41.56994799906],[-71.6796,41.57001899906],[-71.679513,41.57011499906],[-71.679391,41.57021599906],[-71.679276,41.57033499906],[-71.679138,41.57054999906],[-71.67909,41.57065699906],[-71.679032,41.57080699906],[-71.679056,41.57092199906],[-71.67912,41.57103699906],[-71.679196,41.57114699906],[-71.679307,41.57124299906],[-71.679436,41.57134699906],[-71.679665,41.57147999906],[-71.67972,41.57151399906],[-71.679825,41.57160499906],[-71.679916,41.57169099906],[-71.680044,41.57176999906],[-71.680336,41.57180399906],[-71.680421,41.57186599906],[-71.680462,41.57196299906],[-71.680483,41.57209199906],[-71.680691,41.57231399906],[-71.680828,41.57264699906],[-71.680913,41.57290199906],[-71.68102,41.57303899906],[-71.681093,41.57315299906],[-71.681079,41.57317899906],[-71.680965,41.57322999906],[-71.680848,41.57328999906],[-71.680842,41.57331999906],[-71.680876,41.57342899906],[-71.680989,41.57368199906],[-71.680988,41.57379399906],[-71.680924,41.57392499906],[-71.680914,41.57404099906],[-71.68089,41.57416799906],[-71.680898,41.57428999906],[-71.681095,41.57446699906],[-71.681155,41.57458199906],[-71.681247,41.57469399906],[-71.681372,41.57477099906],[-71.681527,41.57484699906],[-71.681619,41.57495199906],[-71.681663,41.57504999906],[-71.681584,41.57516799906],[-71.681519,41.57527999906],[-71.681474,41.57540099906],[-71.681401,41.57550799906],[-71.681341,41.57563899906],[-71.681203,41.57586199906],[-71.681074,41.57611799906],[-71.681022,41.57624199906],[-71.681048,41.57634899906],[-71.681132,41.57644099906],[-71.681348,41.57659599906],[-71.681398,41.57667599906],[-71.681352,41.57691199906],[-71.681346,41.57703299906],[-71.681397,41.57714099906],[-71.681429,41.57722699906],[-71.681427,41.57730099906],[-71.681427,41.57731399906],[-71.681193,41.57732499906],[-71.680275,41.57736199906],[-71.679966,41.57737999906],[-71.67942,41.57740399906],[-71.67868,41.57744599906],[-71.677926,41.57748699906],[-71.677292,41.57752199906],[-71.676416,41.57756299906],[-71.676048,41.57757199906],[-71.674515,41.57764399906],[-71.673126,41.57770499906],[-71.671719,41.57776999906],[-71.670413,41.57781099906],[-71.668518,41.57786199906],[-71.667887,41.57788099906],[-71.667313,41.57789999906],[-71.667091,41.57790399906],[-71.666715,41.57791599906],[-71.666267,41.57792999906],[-71.665132,41.57795799906],[-71.66386,41.57800299906],[-71.663315,41.57801399906],[-71.662313,41.57803699906],[-71.662063,41.57804099906],[-71.661206,41.57804799906],[-71.660912,41.57805299906],[-71.660568,41.57805299906],[-71.657812,41.57809899906],[-71.656029,41.57810999906],[-71.65561,41.57811299906],[-71.655228,41.57811699906],[-71.654556,41.57813999906],[-71.654539,41.57820599906],[-71.654442,41.57846999906],[-71.654376,41.57866899906],[-71.654355,41.57873599906],[-71.654326,41.57883699906],[-71.654175,41.57926899906],[-71.654022,41.57970799906],[-71.653976,41.57985299906],[-71.653267,41.58191299906],[-71.652657,41.58372099906],[-71.652519,41.58414499906],[-71.652321,41.58471299906],[-71.652115,41.58531599906],[-71.651993,41.58564399906],[-71.651878,41.58597199906],[-71.651566,41.58690599906],[-71.651314,41.58768099906],[-71.650955,41.58873699906],[-71.650803,41.58923699906],[-71.650295,41.59059199906],[-71.650185,41.59079999906],[-71.650142,41.59091799906],[-71.649991,41.59120199906],[-71.649818,41.59151299906],[-71.649615,41.59182999906],[-71.64914,41.59259299906],[-71.648596,41.59343799906],[-71.6484,41.59374299906],[-71.648266,41.59393399906],[-71.647615,41.59501899906],[-71.647505,41.59518999906],[-71.647487,41.59533099906],[-71.647484,41.59540899906],[-71.647522,41.59561199906],[-71.647606,41.59580599906],[-71.64772,41.59598899906],[-71.647835,41.59611099906],[-71.647957,41.59622199906],[-71.648102,41.59632099906],[-71.648193,41.59637099906],[-71.648376,41.59646199906],[-71.648938,41.59672499906],[-71.650551,41.59748599906],[-71.651034,41.59772399906],[-71.652174,41.59829899906],[-71.652399,41.59841999906],[-71.652522,41.59848999906],[-71.652599,41.59853999906],[-71.652668,41.59858899906],[-71.65271,41.59861199906],[-71.652874,41.59872199906],[-71.652989,41.59880499906],[-71.653019,41.59882799906],[-71.653173,41.59879599906],[-71.65357,41.59870099906],[-71.653693,41.59870099906],[-71.654634,41.59869899906],[-71.654787,41.59869899906],[-71.655305,41.59869799906],[-71.655686,41.59869699906],[-71.657511,41.59869299906],[-71.658328,41.59869099906],[-71.658387,41.59869199906],[-71.658624,41.59869299906],[-71.658757,41.59869299906],[-71.659074,41.59869399906],[-71.659395,41.59869199906],[-71.659704,41.59868899906],[-71.661475,41.59868999906],[-71.663177,41.59868999906],[-71.664217,41.59861199906],[-71.665003,41.59861599906],[-71.666054,41.59861599906],[-71.668099,41.59867199906],[-71.669415,41.59871099906],[-71.670068,41.59871999906],[-71.671839,41.59873099906],[-71.672127,41.59873099906],[-71.674622,41.59872999906],[-71.676448,41.59873099906],[-71.682079,41.59873399906],[-71.683884,41.59873499906],[-71.685951,41.59873599906],[-71.688444,41.59882199906],[-71.690166,41.59883999906],[-71.692842,41.59886899906],[-71.692908,41.59886799906],[-71.69313,41.59886699906],[-71.699088,41.59886899906],[-71.703409,41.59886899906],[-71.703835,41.59886799906],[-71.70388,41.59886799906],[-71.707187,41.59883199906],[-71.709783,41.59880399906],[-71.710436,41.59879699906],[-71.710527,41.59879599906],[-71.71402,41.59875699906],[-71.717464,41.59871899906],[-71.719828,41.59871099906],[-71.724228,41.59869499906],[-71.724478,41.59869599906],[-71.726869,41.59870299906],[-71.728865,41.59870899906],[-71.729351,41.59870999906],[-71.732201,41.59871799906],[-71.734643,41.59871999906],[-71.735075,41.59872099906],[-71.742428,41.59866799906],[-71.74332,41.59865699906],[-71.743526,41.59864699906],[-71.744672,41.59859399906],[-71.745408,41.59855899906],[-71.745525,41.59855399906],[-71.746456,41.59850999906],[-71.74865,41.59841299906],[-71.74958,41.59838499906],[-71.749826,41.59837499906],[-71.750205,41.59836599906],[-71.760811,41.59804399906],[-71.763108,41.59794399906],[-71.764776,41.59786999906],[-71.771409,41.59757899906],[-71.772647,41.59752399906],[-71.777408,41.59732199906],[-71.781354,41.59716099906],[-71.785882,41.59698199906],[-71.789247,41.59684699906],[-71.789417,41.59492599906],[-71.789462,41.59432799906],[-71.789688,41.58898199906],[-71.789995,41.58207099906],[-71.7903,41.57511199906],[-71.790432,41.57198599906],[-71.790467,41.57087199906],[-71.790495,41.56991799906],[-71.790696,41.56628899906],[-71.790672,41.56605799906],[-71.790783,41.56419999906],[-71.790777,41.56407299906],[-71.790813,41.56337099906],[-71.790884,41.56241599906],[-71.790956,41.56184299906],[-71.790978,41.56155099906],[-71.790972,41.56145099906],[-71.791033,41.55617699906],[-71.791138,41.55302099906],[-71.791221,41.55073699906],[-71.791402,41.54609199906]]]}}"}, +{"type": "blockgroup", "typeId": 505003, "areaId": 29395, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.681663,41.57504999906],[-71.681619,41.57495199906],[-71.681527,41.57484699906],[-71.681372,41.57477099906],[-71.681247,41.57469399906],[-71.681155,41.57458199906],[-71.681095,41.57446699906],[-71.680898,41.57428999906],[-71.68089,41.57416799906],[-71.680914,41.57404099906],[-71.680924,41.57392499906],[-71.680988,41.57379399906],[-71.680989,41.57368199906],[-71.680876,41.57342899906],[-71.680842,41.57331999906],[-71.680848,41.57328999906],[-71.680965,41.57322999906],[-71.681079,41.57317899906],[-71.681093,41.57315299906],[-71.68102,41.57303899906],[-71.680913,41.57290199906],[-71.680828,41.57264699906],[-71.680691,41.57231399906],[-71.680483,41.57209199906],[-71.680462,41.57196299906],[-71.680421,41.57186599906],[-71.680336,41.57180399906],[-71.680044,41.57176999906],[-71.679916,41.57169099906],[-71.679825,41.57160499906],[-71.67972,41.57151399906],[-71.679665,41.57147999906],[-71.679436,41.57134699906],[-71.679307,41.57124299906],[-71.679196,41.57114699906],[-71.67912,41.57103699906],[-71.679056,41.57092199906],[-71.679032,41.57080699906],[-71.67909,41.57065699906],[-71.679138,41.57054999906],[-71.679276,41.57033499906],[-71.679391,41.57021599906],[-71.679513,41.57011499906],[-71.6796,41.57001899906],[-71.679709,41.56994799906],[-71.67984,41.56987999906],[-71.679924,41.56978599906],[-71.679928,41.56964799906],[-71.679894,41.56951999906],[-71.679885,41.56940699906],[-71.679948,41.56929999906],[-71.680158,41.56905599906],[-71.680183,41.56897799906],[-71.680156,41.56885699906],[-71.680101,41.56866199906],[-71.679987,41.56853099906],[-71.679887,41.56840799906],[-71.679772,41.56831399906],[-71.679639,41.56822099906],[-71.679581,41.56813599906],[-71.679575,41.56800699906],[-71.679584,41.56787699906],[-71.679692,41.56753899906],[-71.679748,41.56745399906],[-71.679861,41.56741599906],[-71.678899,41.56765799906],[-71.678522,41.56974899906],[-71.676433,41.56972299906],[-71.672836,41.57021299906],[-71.669582,41.56977399906],[-71.668451,41.56987799906],[-71.666944,41.56987799906],[-71.664466,41.56918599906],[-71.662526,41.56961999906],[-71.66259,41.56825199906],[-71.66234,41.56769799906],[-71.66228,41.56717199906],[-71.66165,41.56538399906],[-71.661779,41.56234999906],[-71.661751,41.56215399906],[-71.66143,41.55985399906],[-71.660508,41.55995399906],[-71.657419,41.56027499906],[-71.656311,41.56038599906],[-71.65398,41.56063199906],[-71.652672,41.56079799906],[-71.652246,41.56085099906],[-71.650406,41.56107899906],[-71.650297,41.56109999906],[-71.647063,41.56141999906],[-71.64699,41.56142699906],[-71.646448,41.56148499906],[-71.644898,41.56167999906],[-71.643974,41.56175999906],[-71.642474,41.56197199906],[-71.637098,41.56258199906],[-71.633695,41.56297499906],[-71.62868,41.56358799906],[-71.62074,41.56434099906],[-71.620715,41.56423399906],[-71.619417,41.56344099906],[-71.615938,41.56187499906],[-71.615961,41.56189999906],[-71.615954,41.56195999906],[-71.615934,41.56201899906],[-71.615897,41.56206899906],[-71.61584,41.56211199906],[-71.615773,41.56214599906],[-71.615689,41.56216199906],[-71.615609,41.56216199906],[-71.615527,41.56217899906],[-71.615449,41.56221799906],[-71.615372,41.56224299906],[-71.615292,41.56226299906],[-71.615217,41.56226699906],[-71.61505,41.56225199906],[-71.614982,41.56223399906],[-71.61491,41.56218799906],[-71.614885,41.56213099906],[-71.614887,41.56199999906],[-71.614904,41.56178099906],[-71.61492,41.56172499906],[-71.614922,41.56164499906],[-71.614874,41.56149299906],[-71.614789,41.56136499906],[-71.614769,41.56130999906],[-71.614777,41.56124799906],[-71.6148,41.56118399906],[-71.61484,41.56112899906],[-71.614867,41.56107499906],[-71.614852,41.56101899906],[-71.614798,41.56096199906],[-71.614664,41.56086899906],[-71.614477,41.56075199906],[-71.614207,41.56060999906],[-71.614125,41.56060999906],[-71.614059,41.56062499906],[-71.613854,41.56049799906],[-71.613789,41.56044999906],[-71.613714,41.56041799906],[-71.613627,41.56040299906],[-71.613539,41.56041499906],[-71.613451,41.56044099906],[-71.613373,41.56048399906],[-71.613313,41.56052899906],[-71.613229,41.56054199906],[-71.613153,41.56053999906],[-71.61307,41.56055099906],[-71.612983,41.56057499906],[-71.612907,41.56060899906],[-71.612833,41.56065099906],[-71.612739,41.56065799906],[-71.612666,41.56062199906],[-71.612567,41.56054199906],[-71.612516,41.56048399906],[-71.612475,41.56042099906],[-71.612444,41.56034499906],[-71.612432,41.56028799906],[-71.612426,41.56015699906],[-71.612391,41.56009699906],[-71.612341,41.56003799906],[-71.61228,41.55997999906],[-71.612207,41.55992499906],[-71.612128,41.55987399906],[-71.612,41.55977399906],[-71.611967,41.55972199906],[-71.611956,41.55966299906],[-71.611955,41.55960699906],[-71.611999,41.55956399906],[-71.612057,41.55951699906],[-71.612047,41.55946399906],[-71.612008,41.55940499906],[-71.611955,41.55934999906],[-71.611831,41.55924099906],[-71.611757,41.55918299906],[-71.611014,41.56041599906],[-71.607658,41.56420799906],[-71.607128,41.56435399906],[-71.606453,41.56442199906],[-71.605991,41.56456699906],[-71.605577,41.56464999906],[-71.605361,41.56478699906],[-71.604717,41.56490899906],[-71.604301,41.56460299906],[-71.604115,41.56437399906],[-71.603822,41.56410599906],[-71.603545,41.56390799906],[-71.60333,41.56366199906],[-71.603081,41.56342599906],[-71.602718,41.56330099906],[-71.60224,41.56308899906],[-71.601766,41.56321099906],[-71.601049,41.56314999906],[-71.60056,41.56314999906],[-71.600117,41.56314299906],[-71.599338,41.56312699906],[-71.598728,41.56314299906],[-71.597781,41.56311999906],[-71.597277,41.56307399906],[-71.596574,41.56298999906],[-71.595719,41.56301999906],[-71.594788,41.56310399906],[-71.593917,41.56313399906],[-71.593077,41.56328699906],[-71.592299,41.56329399906],[-71.591626,41.56309599906],[-71.591091,41.56283699906],[-71.590481,41.56255399906],[-71.590007,41.56228699906],[-71.589607,41.56209999906],[-71.589771,41.56252899906],[-71.58987,41.56298299906],[-71.590059,41.56334399906],[-71.590071,41.56396899906],[-71.589939,41.56423099906],[-71.589699,41.56440199906],[-71.58952,41.56459499906],[-71.589372,41.56477299906],[-71.589453,41.56501999906],[-71.58955,41.56534299906],[-71.589598,41.56551199906],[-71.589635,41.56588999906],[-71.589624,41.56609799906],[-71.589507,41.56637599906],[-71.589418,41.56655299906],[-71.589284,41.56672299906],[-71.588894,41.56693199906],[-71.588429,41.56717299906],[-71.588219,41.56724299906],[-71.587979,41.56736099906],[-71.587534,41.56725699906],[-71.587401,41.56742099906],[-71.587526,41.56786699906],[-71.587281,41.56797799906],[-71.586876,41.56810299906],[-71.586552,41.56815299906],[-71.586443,41.56814399906],[-71.586227,41.56810099906],[-71.586029,41.56789999906],[-71.585799,41.56765799906],[-71.585708,41.56757799906],[-71.585601,41.56753699906],[-71.585517,41.56752899906],[-71.585402,41.56753699906],[-71.58525,41.56755699906],[-71.584519,41.56767399906],[-71.583925,41.56776399906],[-71.583491,41.56783699906],[-71.583331,41.56784599906],[-71.583026,41.56781599906],[-71.582722,41.56781699906],[-71.582531,41.56780699906],[-71.582127,41.56774799906],[-71.581913,41.56774499906],[-71.581769,41.56774899906],[-71.581617,41.56776499906],[-71.581041,41.56791899906],[-71.580895,41.56793899906],[-71.58076,41.56795099906],[-71.580482,41.56796799906],[-71.58023,41.56800599906],[-71.580015,41.56806199906],[-71.57974,41.56815099906],[-71.579596,41.56815899906],[-71.579323,41.56815399906],[-71.57908,41.56813999906],[-71.578761,41.56813599906],[-71.57807,41.56809199906],[-71.577902,41.56804099906],[-71.577743,41.56801099906],[-71.577546,41.56800199906],[-71.577211,41.56800799906],[-71.577083,41.56800199906],[-71.576953,41.56796899906],[-71.576854,41.56788599906],[-71.576777,41.56785299906],[-71.576687,41.56783799906],[-71.57658,41.56784199906],[-71.576315,41.56787099906],[-71.575784,41.56793999906],[-71.57526,41.56798299906],[-71.574806,41.56807299906],[-71.574608,41.56808099906],[-71.574322,41.56809399906],[-71.574148,41.56809099906],[-71.574025,41.56807099906],[-71.573811,41.56804999906],[-71.573699,41.56805299906],[-71.573477,41.56803099906],[-71.573487,41.56799699906],[-71.573583,41.56782399906],[-71.573738,41.56749599906],[-71.574242,41.56657799906],[-71.574272,41.56646299906],[-71.574273,41.56643999906],[-71.57428,41.56632999906],[-71.57428,41.56614699906],[-71.574252,41.56590799906],[-71.574234,41.56575799906],[-71.574226,41.56532699906],[-71.57415,41.56397599906],[-71.574089,41.56307599906],[-71.574028,41.56271399906],[-71.573982,41.56225199906],[-71.573952,41.56144699906],[-71.573891,41.56063499906],[-71.572952,41.56065399906],[-71.572472,41.56067999906],[-71.571709,41.56071499906],[-71.57148,41.56073399906],[-71.570457,41.56074899906],[-71.569702,41.56076799906],[-71.569122,41.56078699906],[-71.568008,41.56080599906],[-71.567383,41.56080599906],[-71.567162,41.56114999906],[-71.566811,41.56167599906],[-71.566643,41.56191299906],[-71.56649,41.56211899906],[-71.566269,41.56243899906],[-71.566078,41.56266399906],[-71.565727,41.56301099906],[-71.565514,41.56325899906],[-71.565372,41.56346999906],[-71.565361,41.56348799906],[-71.56514,41.56376299906],[-71.564995,41.56393099906],[-71.564819,41.56407899906],[-71.564514,41.56430099906],[-71.564407,41.56438999906],[-71.564316,41.56446499906],[-71.564194,41.56452599906],[-71.56398,41.56461299906],[-71.563629,41.56472399906],[-71.563278,41.56481899906],[-71.563164,41.56483099906],[-71.563019,41.56482699906],[-71.562881,41.56480399906],[-71.562698,41.56476199906],[-71.562279,41.56461699906],[-71.562224,41.56459699906],[-71.562164,41.56457499906],[-71.561951,41.56448699906],[-71.561783,41.56438399906],[-71.561531,41.56421299906],[-71.561157,41.56397199906],[-71.561005,41.56388099906],[-71.560898,41.56383499906],[-71.560638,41.56373999906],[-71.559822,41.56351499906],[-71.55928,41.56335099906],[-71.559074,41.56329699906],[-71.558815,41.56323599906],[-71.558197,41.56302999906],[-71.557762,41.56287799906],[-71.557419,41.56276699906],[-71.557205,41.56270199906],[-71.557053,41.56267499906],[-71.556976,41.56267199906],[-71.556915,41.56267899906],[-71.556824,41.56269799906],[-71.556725,41.56273299906],[-71.55658,41.56282399906],[-71.556282,41.56307999906],[-71.556229,41.56310299906],[-71.555206,41.56324399906],[-71.554863,41.56326299906],[-71.554375,41.56328199906],[-71.554192,41.56330499906],[-71.554001,41.56331999906],[-71.55381,41.56335399906],[-71.553589,41.56341599906],[-71.553421,41.56344999906],[-71.553337,41.56346099906],[-71.553207,41.56346499906],[-71.553009,41.56344999906],[-71.552795,41.56341899906],[-71.552345,41.56334299906],[-71.551926,41.56326299906],[-71.551643,41.56319799906],[-71.551239,41.56312899906],[-71.55072,41.56304599906],[-71.550308,41.56296499906],[-71.550274,41.56295899906],[-71.549881,41.56288899906],[-71.549477,41.56280899906],[-71.549141,41.56275199906],[-71.548416,41.56260299906],[-71.547998,41.56252299906],[-71.54686,41.56231299906],[-71.545715,41.56209199906],[-71.54558,41.56206399906],[-71.545102,41.56196399906],[-71.54467,41.56187399906],[-71.544449,41.56183599906],[-71.544212,41.56180599906],[-71.54393,41.56178699906],[-71.543533,41.56177499906],[-71.542843,41.56177799906],[-71.542778,41.56177899906],[-71.542137,41.56177899906],[-71.540039,41.56175599906],[-71.539352,41.56175599906],[-71.53875,41.56174899906],[-71.538704,41.56174699906],[-71.537735,41.56172199906],[-71.537498,41.56172199906],[-71.537254,41.56173299906],[-71.537117,41.56175599906],[-71.536972,41.56180999906],[-71.536812,41.56189699906],[-71.536491,41.56215999906],[-71.536446,41.56220199906],[-71.536385,41.56222499906],[-71.536308,41.56223699906],[-71.536201,41.56222499906],[-71.536079,41.56219099906],[-71.535927,41.56212999906],[-71.535789,41.56208399906],[-71.535675,41.56205699906],[-71.535576,41.56205699906],[-71.535416,41.56207299906],[-71.53524,41.56180599906],[-71.535179,41.56167599906],[-71.535141,41.56157699906],[-71.535103,41.56145499906],[-71.535088,41.56135199906],[-71.535088,41.56124499906],[-71.535095,41.56113099906],[-71.535141,41.56086699906],[-71.535408,41.56005899906],[-71.5355,41.55970799906],[-71.53553,41.55955899906],[-71.535515,41.55928399906],[-71.5355,41.55915499906],[-71.535278,41.55837599906],[-71.535156,41.55799499906],[-71.535019,41.55749899906],[-71.534843,41.55682399906],[-71.534779,41.55671799906],[-71.534729,41.55663299906],[-71.534599,41.55649899906],[-71.53447,41.55640399906],[-71.534302,41.55632399906],[-71.534096,41.55625899906],[-71.533844,41.55619399906],[-71.533592,41.55611399906],[-71.533371,41.55601499906],[-71.533195,41.55589699906],[-71.533035,41.55576699906],[-71.532898,41.55559499906],[-71.532829,41.55547699906],[-71.532768,41.55530499906],[-71.532738,41.55516399906],[-71.53273,41.55500399906],[-71.532814,41.55449299906],[-71.533081,41.55337899906],[-71.533272,41.55263499906],[-71.533508,41.55160499906],[-71.533554,41.55136499906],[-71.533569,41.55123899906],[-71.533585,41.55115899906],[-71.533592,41.55102499906],[-71.533592,41.55084999906],[-71.533531,41.55042599906],[-71.533417,41.54989199906],[-71.533394,41.54982399906],[-71.53334,41.54952999906],[-71.533188,41.54890799906],[-71.533134,41.54853099906],[-71.533127,41.54838199906],[-71.533112,41.54828999906],[-71.533066,41.54819499906],[-71.533012,41.54813899906],[-71.532986,41.54811299906],[-71.532923,41.54806899906],[-71.532814,41.54800399906],[-71.532578,41.54819499906],[-71.532295,41.54837399906],[-71.531937,41.54856099906],[-71.531578,41.54872899906],[-71.530144,41.54937399906],[-71.529831,41.54952199906],[-71.529533,41.54969399906],[-71.529465,41.54972799906],[-71.529198,41.54989199906],[-71.528946,41.55004099906],[-71.528305,41.55044899906],[-71.527412,41.55100999906],[-71.526915,41.55131599906],[-71.525988,41.55188599906],[-71.525352,41.55227699906],[-71.524719,41.55268499906],[-71.524266,41.55295299906],[-71.523979,41.55312299906],[-71.523534,41.55340699906],[-71.523348,41.55352899906],[-71.522677,41.55396099906],[-71.522601,41.55400899906],[-71.522202,41.55425499906],[-71.521605,41.55463099906],[-71.520798,41.55514399906],[-71.520064,41.55560899906],[-71.519758,41.55582999906],[-71.519532,41.55601299906],[-71.519358,41.55616799906],[-71.51918,41.55633199906],[-71.519159,41.55791399906],[-71.519161,41.55841499906],[-71.519134,41.55964399906],[-71.51886,41.56468399906],[-71.518602,41.56944499906],[-71.518548,41.57023799906],[-71.518298,41.57391099906],[-71.518183,41.57558899906],[-71.518059,41.57598099906],[-71.517926,41.57726499906],[-71.517966,41.57913499906],[-71.517972,41.57942499906],[-71.517995,41.58050699906],[-71.518013,41.58133299906],[-71.518015,41.58141599906],[-71.518122,41.58650599906],[-71.518122,41.58806599906],[-71.51812,41.59220799906],[-71.518433,41.59403999906],[-71.518568,41.59434599906],[-71.519032,41.59525699906],[-71.519294,41.59579199906],[-71.519572,41.59631999906],[-71.519909,41.59697999906],[-71.520048,41.59725299906],[-71.520366,41.59783899906],[-71.521216,41.59947899906],[-71.521232,41.59950999906],[-71.521355,41.59973299906],[-71.521602,41.60024699906],[-71.521796,41.60061599906],[-71.521904,41.60084199906],[-71.521977,41.60108299906],[-71.521988,41.60111799906],[-71.522429,41.60256599906],[-71.52277,41.60254999906],[-71.52793,41.60241799906],[-71.528305,41.60240599906],[-71.529266,41.60237599906],[-71.53138,41.60232299906],[-71.53328,41.60227699906],[-71.533326,41.60227599906],[-71.543793,41.60201799906],[-71.543884,41.60201599906],[-71.544807,41.60199299906],[-71.545013,41.60191599906],[-71.546147,41.60189099906],[-71.547388,41.60187399906],[-71.550504,41.60179599906],[-71.551279,41.60177399906],[-71.552429,41.60174699906],[-71.557869,41.60159499906],[-71.563853,41.60146199906],[-71.564705,41.60144299906],[-71.567392,41.60144799906],[-71.569152,41.60144299906],[-71.569257,41.60144299906],[-71.571753,41.60139099906],[-71.574285,41.60135099906],[-71.577125,41.60130699906],[-71.578016,41.60129899906],[-71.583158,41.60125699906],[-71.590413,41.60119599906],[-71.591374,41.60118799906],[-71.59419,41.60116499906],[-71.5959,41.60114999906],[-71.596034,41.60114899906],[-71.596779,41.60112699906],[-71.601799,41.60097199906],[-71.602638,41.60094599906],[-71.604687,41.60088299906],[-71.604801,41.60087899906],[-71.604941,41.60087499906],[-71.607932,41.60085499906],[-71.610305,41.60086599906],[-71.613553,41.60087599906],[-71.613725,41.60087599906],[-71.616306,41.60088399906],[-71.618256,41.60088999906],[-71.620461,41.60089599906],[-71.620732,41.60089599906],[-71.627476,41.60091499906],[-71.636984,41.60094799906],[-71.637321,41.60094799906],[-71.637813,41.60095099906],[-71.641596,41.60095899906],[-71.64191,41.60095899906],[-71.642279,41.60095999906],[-71.642526,41.60095999906],[-71.643354,41.60096199906],[-71.643603,41.60098299906],[-71.643726,41.60098099906],[-71.643983,41.60097899906],[-71.645242,41.60066399906],[-71.646222,41.60043399906],[-71.646894,41.60027499906],[-71.647516,41.60012899906],[-71.647732,41.60007899906],[-71.648045,41.60000599906],[-71.648212,41.59996799906],[-71.648805,41.59983099906],[-71.649079,41.59976099906],[-71.649535,41.59965299906],[-71.651194,41.59925799906],[-71.651411,41.59920599906],[-71.65159,41.59916299906],[-71.653019,41.59882799906],[-71.652989,41.59880499906],[-71.652874,41.59872199906],[-71.65271,41.59861199906],[-71.652668,41.59858899906],[-71.652599,41.59853999906],[-71.652522,41.59848999906],[-71.652399,41.59841999906],[-71.652174,41.59829899906],[-71.651034,41.59772399906],[-71.650551,41.59748599906],[-71.648938,41.59672499906],[-71.648376,41.59646199906],[-71.648193,41.59637099906],[-71.648102,41.59632099906],[-71.647957,41.59622199906],[-71.647835,41.59611099906],[-71.64772,41.59598899906],[-71.647606,41.59580599906],[-71.647522,41.59561199906],[-71.647484,41.59540899906],[-71.647487,41.59533099906],[-71.647505,41.59518999906],[-71.647615,41.59501899906],[-71.648266,41.59393399906],[-71.6484,41.59374299906],[-71.648596,41.59343799906],[-71.64914,41.59259299906],[-71.649615,41.59182999906],[-71.649818,41.59151299906],[-71.649991,41.59120199906],[-71.650142,41.59091799906],[-71.650185,41.59079999906],[-71.650295,41.59059199906],[-71.650803,41.58923699906],[-71.650955,41.58873699906],[-71.651314,41.58768099906],[-71.651566,41.58690599906],[-71.651878,41.58597199906],[-71.651993,41.58564399906],[-71.652115,41.58531599906],[-71.652321,41.58471299906],[-71.652519,41.58414499906],[-71.652657,41.58372099906],[-71.653267,41.58191299906],[-71.653976,41.57985299906],[-71.654022,41.57970799906],[-71.654175,41.57926899906],[-71.654326,41.57883699906],[-71.654355,41.57873599906],[-71.654376,41.57866899906],[-71.654442,41.57846999906],[-71.654539,41.57820599906],[-71.654556,41.57813999906],[-71.655228,41.57811699906],[-71.65561,41.57811299906],[-71.656029,41.57810999906],[-71.657812,41.57809899906],[-71.660568,41.57805299906],[-71.660912,41.57805299906],[-71.661206,41.57804799906],[-71.662063,41.57804099906],[-71.662313,41.57803699906],[-71.663315,41.57801399906],[-71.66386,41.57800299906],[-71.665132,41.57795799906],[-71.666267,41.57792999906],[-71.666715,41.57791599906],[-71.667091,41.57790399906],[-71.667313,41.57789999906],[-71.667887,41.57788099906],[-71.668518,41.57786199906],[-71.670413,41.57781099906],[-71.671719,41.57776999906],[-71.673126,41.57770499906],[-71.674515,41.57764399906],[-71.676048,41.57757199906],[-71.676416,41.57756299906],[-71.677292,41.57752199906],[-71.677926,41.57748699906],[-71.67868,41.57744599906],[-71.67942,41.57740399906],[-71.679966,41.57737999906],[-71.680275,41.57736199906],[-71.681193,41.57732499906],[-71.681427,41.57731399906],[-71.681427,41.57730099906],[-71.681429,41.57722699906],[-71.681397,41.57714099906],[-71.681346,41.57703299906],[-71.681352,41.57691199906],[-71.681398,41.57667599906],[-71.681348,41.57659599906],[-71.681132,41.57644099906],[-71.681048,41.57634899906],[-71.681022,41.57624199906],[-71.681074,41.57611799906],[-71.681203,41.57586199906],[-71.681341,41.57563899906],[-71.681401,41.57550799906],[-71.681474,41.57540099906],[-71.681519,41.57527999906],[-71.681584,41.57516799906],[-71.681663,41.57504999906]]]}}"}, +{"type": "blockgroup", "typeId": 506001, "areaId": 29396, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.715018,41.55420299906],[-71.715009,41.55418299906],[-71.714977,41.55411099906],[-71.714963,41.55409499906],[-71.714933,41.55406099906],[-71.714891,41.55401199906],[-71.714787,41.55390999906],[-71.714611,41.55369499906],[-71.714527,41.55360299906],[-71.714458,41.55350399906],[-71.714347,41.55338899906],[-71.714249,41.55330599906],[-71.714225,41.55328499906],[-71.714126,41.55318699906],[-71.714068,41.55308099906],[-71.714016,41.55295499906],[-71.714007,41.55287099906],[-71.714061,41.55275599906],[-71.714131,41.55262299906],[-71.714162,41.55257399906],[-71.714194,41.55251899906],[-71.714269,41.55240899906],[-71.71436,41.55230299906],[-71.714454,41.55220199906],[-71.71454,41.55207699906],[-71.714639,41.55197799906],[-71.714751,41.55189399906],[-71.714798,41.55181299906],[-71.714776,41.55172099906],[-71.714689,41.55165299906],[-71.714409,41.55156799906],[-71.714278,41.55152099906],[-71.714195,41.55145499906],[-71.71413,41.55134999906],[-71.714031,41.55123899906],[-71.713922,41.55115399906],[-71.713806,41.55107599906],[-71.713755,41.55099399906],[-71.713675,41.55074399906],[-71.713615,41.55060999906],[-71.713544,41.55050999906],[-71.713443,41.55039899906],[-71.713367,41.55027599906],[-71.713277,41.55014899906],[-71.713205,41.55001999906],[-71.713111,41.54994399906],[-71.712983,41.54993499906],[-71.712855,41.54996899906],[-71.712811,41.55005599906],[-71.712814,41.55018699906],[-71.712803,41.55029899906],[-71.712736,41.55035499906],[-71.712586,41.55039199906],[-71.712411,41.55038199906],[-71.712262,41.55033799906],[-71.71214,41.55026199906],[-71.712022,41.55016699906],[-71.711882,41.55009799906],[-71.711734,41.55008099906],[-71.711561,41.55008499906],[-71.711412,41.55011199906],[-71.711271,41.55015099906],[-71.711128,41.55020099906],[-71.711031,41.55020099906],[-71.710941,41.55014499906],[-71.710913,41.55007999906],[-71.710969,41.55000699906],[-71.71127,41.54991099906],[-71.711359,41.54983699906],[-71.711388,41.54977699906],[-71.711364,41.54971699906],[-71.711222,41.54963199906],[-71.711059,41.54955899906],[-71.710905,41.54948299906],[-71.710728,41.54943699906],[-71.710432,41.54941299906],[-71.710261,41.54937799906],[-71.710109,41.54933399906],[-71.710068,41.54930499906],[-71.710134,41.54920099906],[-71.710152,41.54906699906],[-71.710145,41.54892599906],[-71.710089,41.54881799906],[-71.710001,41.54873299906],[-71.709884,41.54866299906],[-71.709755,41.54860699906],[-71.709603,41.54852999906],[-71.709387,41.54814899906],[-71.709351,41.54805699906],[-71.709382,41.54803499906],[-71.709526,41.54803899906],[-71.709557,41.54800199906],[-71.709515,41.54788299906],[-71.709448,41.54774499906],[-71.709372,41.54764099906],[-71.709243,41.54756099906],[-71.7091,41.54755199906],[-71.708954,41.54759399906],[-71.708777,41.54762999906],[-71.708612,41.54759799906],[-71.708505,41.54753599906],[-71.708422,41.54742399906],[-71.708377,41.54730599906],[-71.708267,41.54725099906],[-71.707949,41.54716499906],[-71.707772,41.54713099906],[-71.707452,41.54709799906],[-71.7073,41.54707799906],[-71.707154,41.54707199906],[-71.707008,41.54708199906],[-71.706887,41.54712099906],[-71.706785,41.54720299906],[-71.706581,41.54742199906],[-71.706457,41.54751099906],[-71.706213,41.54767299906],[-71.706078,41.54774199906],[-71.705788,41.54781899906],[-71.705552,41.54785899906],[-71.705455,41.54787699906],[-71.705294,41.54792399906],[-71.705145,41.54798599906],[-71.705038,41.54808299906],[-71.70485,41.54828299906],[-71.704784,41.54838999906],[-71.70472,41.54850799906],[-71.704654,41.54866499906],[-71.704622,41.54874299906],[-71.704555,41.54885799906],[-71.704477,41.54897899906],[-71.70444,41.54908999906],[-71.704404,41.54913899906],[-71.704331,41.54911999906],[-71.704203,41.54904599906],[-71.704048,41.54899299906],[-71.703967,41.54899999906],[-71.703704,41.54911899906],[-71.70341,41.54926699906],[-71.703243,41.54932699906],[-71.702949,41.54936799906],[-71.70254,41.54932299906],[-71.702273,41.54919999906],[-71.701975,41.54899999906],[-71.701806,41.54882999906],[-71.701693,41.54874699906],[-71.701657,41.54872999906],[-71.701576,41.54870499906],[-71.701507,41.54867599906],[-71.701282,41.54863799906],[-71.701112,41.54861099906],[-71.700976,41.54861799906],[-71.700981,41.54873399906],[-71.700931,41.54880299906],[-71.700835,41.54885099906],[-71.700717,41.54885999906],[-71.700533,41.54881699906],[-71.700389,41.54874099906],[-71.700351,41.54866699906],[-71.700344,41.54852299906],[-71.700313,41.54836699906],[-71.700241,41.54824499906],[-71.699912,41.54786499906],[-71.699897,41.54783499906],[-71.699844,41.54778599906],[-71.699724,41.54770999906],[-71.699686,41.54766199906],[-71.699721,41.54759899906],[-71.699734,41.54753099906],[-71.699729,41.54746399906],[-71.699768,41.54739499906],[-71.699739,41.54732699906],[-71.699681,41.54727499906],[-71.699634,41.54720899906],[-71.699584,41.54707899906],[-71.69959,41.54701599906],[-71.699588,41.54694399906],[-71.699562,41.54687699906],[-71.699521,41.54673799906],[-71.699376,41.54643199906],[-71.699358,41.54637099906],[-71.699304,41.54604999906],[-71.699282,41.54598299906],[-71.69923,41.54597199906],[-71.699167,41.54599899906],[-71.699111,41.54603299906],[-71.699082,41.54607799906],[-71.699081,41.54614899906],[-71.699056,41.54621199906],[-71.699011,41.54620099906],[-71.698937,41.54613799906],[-71.69889,41.54609799906],[-71.698858,41.54604799906],[-71.698846,41.54599299906],[-71.698842,41.54593799906],[-71.698862,41.54587899906],[-71.698898,41.54581999906],[-71.698953,41.54577199906],[-71.699082,41.54571299906],[-71.699138,41.54567899906],[-71.699181,41.54563499906],[-71.699207,41.54557799906],[-71.699215,41.54551199906],[-71.6992,41.54543899906],[-71.699169,41.54536299906],[-71.699058,41.54514999906],[-71.698978,41.54493399906],[-71.698948,41.54486899906],[-71.698908,41.54480999906],[-71.698888,41.54474199906],[-71.698892,41.54467199906],[-71.698887,41.54460299906],[-71.698859,41.54454099906],[-71.698826,41.54448499906],[-71.698774,41.54444199906],[-71.698747,41.54448199906],[-71.69875,41.54463899906],[-71.698721,41.54476299906],[-71.698744,41.54482499906],[-71.698841,41.54494499906],[-71.69887,41.54500699906],[-71.698868,41.54507799906],[-71.698818,41.54509299906],[-71.698751,41.54506999906],[-71.698678,41.54505899906],[-71.698673,41.54508499906],[-71.698733,41.54513399906],[-71.698796,41.54519699906],[-71.698842,41.54526199906],[-71.698868,41.54531899906],[-71.698856,41.54536899906],[-71.698762,41.54540799906],[-71.698657,41.54540399906],[-71.698542,41.54537299906],[-71.698429,41.54532399906],[-71.6983,41.54527399906],[-71.698226,41.54524999906],[-71.697624,41.54508699906],[-71.697497,41.54504799906],[-71.697386,41.54500899906],[-71.697187,41.54491899906],[-71.697101,41.54487199906],[-71.69704,41.54481499906],[-71.69699,41.54474899906],[-71.696947,41.54467899906],[-71.69692,41.54460499906],[-71.696913,41.54452999906],[-71.696936,41.54445799906],[-71.696988,41.54438899906],[-71.697068,41.54432899906],[-71.697175,41.54428399906],[-71.697314,41.54424999906],[-71.697389,41.54423599906],[-71.6976,41.54420599906],[-71.697732,41.54420099906],[-71.697955,41.54420999906],[-71.69805,41.54419799906],[-71.698131,41.54417699906],[-71.69821,41.54413799906],[-71.698288,41.54401299906],[-71.698263,41.54395899906],[-71.698204,41.54388899906],[-71.698098,41.54379099906],[-71.697966,41.54369199906],[-71.69789,41.54364399906],[-71.697811,41.54359999906],[-71.697732,41.54356399906],[-71.697651,41.54353599906],[-71.697582,41.54350199906],[-71.697472,41.54341399906],[-71.697415,41.54337699906],[-71.697372,41.54335499906],[-71.697353,41.54334499906],[-71.697287,41.54332099906],[-71.697184,41.54331199906],[-71.697116,41.54328399906],[-71.697091,41.54323199906],[-71.697077,41.54316199906],[-71.697041,41.54310799906],[-71.696995,41.54305699906],[-71.696926,41.54299899906],[-71.696852,41.54294999906],[-71.696862,41.54287699906],[-71.696893,41.54281799906],[-71.69691,41.54275699906],[-71.696896,41.54270199906],[-71.69681,41.54260799906],[-71.696808,41.54252899906],[-71.696818,41.54246799906],[-71.696806,41.54241099906],[-71.69679,41.54237499906],[-71.696775,41.54234199906],[-71.696773,41.54227199906],[-71.69675,41.54219899906],[-71.696778,41.54214199906],[-71.696802,41.54207899906],[-71.696802,41.54201699906],[-71.69678,41.54196099906],[-71.696733,41.54190699906],[-71.696662,41.54193699906],[-71.696616,41.54188299906],[-71.696592,41.54177599906],[-71.696556,41.54172199906],[-71.696402,41.54155999906],[-71.696298,41.54147199906],[-71.69622,41.54137799906],[-71.696149,41.54126099906],[-71.696112,41.54124699906],[-71.696041,41.54124299906],[-71.696027,41.54122499906],[-71.695985,41.54117299906],[-71.695962,41.54111199906],[-71.695952,41.54105399906],[-71.695952,41.54091899906],[-71.695942,41.54084299906],[-71.695899,41.54072099906],[-71.69592,41.54066799906],[-71.695922,41.54064799906],[-71.695963,41.54061299906],[-71.695994,41.54047899906],[-71.696018,41.54036099906],[-71.696039,41.54007799906],[-71.696039,41.54002299906],[-71.696057,41.53995399906],[-71.696103,41.53989399906],[-71.696196,41.53979699906],[-71.696332,41.53971299906],[-71.696409,41.53967799906],[-71.696483,41.53965599906],[-71.696559,41.53967999906],[-71.696682,41.53975299906],[-71.696746,41.53977899906],[-71.696815,41.53979399906],[-71.696907,41.53980399906],[-71.696984,41.53980399906],[-71.697065,41.53979799906],[-71.697229,41.53977399906],[-71.697393,41.53973699906],[-71.697464,41.53971399906],[-71.69753,41.53966799906],[-71.697569,41.53960899906],[-71.697609,41.53956099906],[-71.697666,41.53952499906],[-71.697732,41.53950099906],[-71.697925,41.53945599906],[-71.697988,41.53940799906],[-71.698067,41.53936999906],[-71.698204,41.53931399906],[-71.698265,41.53927899906],[-71.698366,41.53916299906],[-71.698423,41.53910499906],[-71.698473,41.53903899906],[-71.698517,41.53896999906],[-71.698537,41.53891399906],[-71.698544,41.53885799906],[-71.698542,41.53880399906],[-71.698526,41.53872699906],[-71.698508,41.53867499906],[-71.698482,41.53862099906],[-71.698379,41.53845599906],[-71.698332,41.53839899906],[-71.69818,41.53825199906],[-71.698065,41.53817999906],[-71.698011,41.53813899906],[-71.69772,41.53783699906],[-71.697628,41.53771699906],[-71.697545,41.53758999906],[-71.697485,41.53746399906],[-71.697451,41.53733499906],[-71.697403,41.53719999906],[-71.697368,41.53706399906],[-71.697345,41.53692399906],[-71.697319,41.53666299906],[-71.697314,41.53653599906],[-71.697301,41.53646199906],[-71.697288,41.53631599906],[-71.697291,41.53620599906],[-71.697295,41.53609099906],[-71.697313,41.53601999906],[-71.697316,41.53589199906],[-71.697298,41.53582899906],[-71.697246,41.53581799906],[-71.697263,41.53574399906],[-71.697266,41.53567199906],[-71.697255,41.53559399906],[-71.6973,41.53547999906],[-71.697316,41.53542399906],[-71.69732,41.53536599906],[-71.697307,41.53530899906],[-71.697279,41.53522999906],[-71.697259,41.53517499906],[-71.697229,41.53512399906],[-71.697189,41.53507399906],[-71.697095,41.53497499906],[-71.69695,41.53489499906],[-71.696683,41.53472999906],[-71.696618,41.53468599906],[-71.696407,41.53448599906],[-71.696272,41.53436699906],[-71.69618,41.53427599906],[-71.696007,41.53413799906],[-71.695889,41.53408199906],[-71.695827,41.53403599906],[-71.695597,41.53393999906],[-71.695485,41.53388099906],[-71.695374,41.53379199906],[-71.695275,41.53369999906],[-71.695158,41.53358299906],[-71.695121,41.53352999906],[-71.695098,41.53350699906],[-71.695007,41.53334699906],[-71.694971,41.53327299906],[-71.694943,41.53319899906],[-71.694934,41.53312399906],[-71.694962,41.53304599906],[-71.695077,41.53289699906],[-71.695106,41.53282499906],[-71.695081,41.53276899906],[-71.695001,41.53278299906],[-71.69488,41.53285499906],[-71.694812,41.53287699906],[-71.694733,41.53288199906],[-71.694659,41.53287299906],[-71.694611,41.53285699906],[-71.694656,41.53277699906],[-71.694689,41.53269699906],[-71.694741,41.53253599906],[-71.69477,41.53246199906],[-71.694883,41.53225599906],[-71.695,41.53207099906],[-71.695031,41.53201399906],[-71.695083,41.53189599906],[-71.695149,41.53178199906],[-71.695227,41.53167699906],[-71.695271,41.53162899906],[-71.695326,41.53158799906],[-71.69539,41.53154999906],[-71.695465,41.53151699906],[-71.695544,41.53148899906],[-71.695695,41.53144299906],[-71.695841,41.53141899906],[-71.696032,41.53137699906],[-71.696099,41.53134699906],[-71.69614,41.53129999906],[-71.696161,41.53123799906],[-71.696167,41.53104199906],[-71.69616,41.53101499906],[-71.69611,41.53104899906],[-71.696068,41.53109599906],[-71.696014,41.53113399906],[-71.695934,41.53115599906],[-71.695921,41.53113899906],[-71.696076,41.53085399906],[-71.69612,41.53074099906],[-71.696164,41.53068299906],[-71.696242,41.53062699906],[-71.696367,41.53056099906],[-71.696561,41.53046599906],[-71.696625,41.53041199906],[-71.696646,41.53034599906],[-71.696643,41.53027199906],[-71.696576,41.53010399906],[-71.696549,41.53005199906],[-71.696494,41.53000999906],[-71.696419,41.53004999906],[-71.696348,41.53006799906],[-71.696271,41.53004199906],[-71.696237,41.52998299906],[-71.696251,41.52992799906],[-71.69631,41.52981599906],[-71.696308,41.52975999906],[-71.696276,41.52969999906],[-71.696187,41.52957099906],[-71.696091,41.52946099906],[-71.695819,41.52913099906],[-71.695722,41.52899799906],[-71.695644,41.52886599906],[-71.695558,41.52874199906],[-71.69547,41.52864099906],[-71.69542,41.52859699906],[-71.695362,41.52855999906],[-71.695295,41.52853999906],[-71.695192,41.52856099906],[-71.695113,41.52859799906],[-71.694959,41.52865299906],[-71.694873,41.52867399906],[-71.694771,41.52868799906],[-71.694585,41.52869799906],[-71.694013,41.52869099906],[-71.693936,41.52868199906],[-71.693872,41.52864799906],[-71.693819,41.52859899906],[-71.693719,41.52858199906],[-71.693633,41.52857799906],[-71.693547,41.52856499906],[-71.693052,41.52851999906],[-71.69295,41.52852599906],[-71.692472,41.52862599906],[-71.692309,41.52865099906],[-71.692247,41.52868599906],[-71.692149,41.52871199906],[-71.691921,41.52874799906],[-71.691814,41.52875599906],[-71.691621,41.52874599906],[-71.691234,41.52868199906],[-71.69102,41.52865299906],[-71.690703,41.52860399906],[-71.690295,41.52856999906],[-71.690188,41.52857299906],[-71.690079,41.52858499906],[-71.689864,41.52861699906],[-71.68967,41.52863999906],[-71.689582,41.52865399906],[-71.689503,41.52867399906],[-71.689418,41.52871499906],[-71.68935,41.52875699906],[-71.689271,41.52877299906],[-71.689054,41.52876399906],[-71.68871,41.52876299906],[-71.688606,41.52876799906],[-71.688507,41.52877999906],[-71.688422,41.52879799906],[-71.688339,41.52882799906],[-71.68827,41.52887299906],[-71.688194,41.52888399906],[-71.68812,41.52887199906],[-71.687867,41.52881499906],[-71.687777,41.52878799906],[-71.687688,41.52875399906],[-71.687517,41.52866899906],[-71.68744,41.52862199906],[-71.687316,41.52851799906],[-71.687267,41.52846499906],[-71.687225,41.52840999906],[-71.687163,41.52829399906],[-71.687122,41.52817799906],[-71.687109,41.52810699906],[-71.687109,41.52803199906],[-71.68716,41.52776199906],[-71.687183,41.52757699906],[-71.687197,41.52751699906],[-71.687219,41.52745799906],[-71.687316,41.52727399906],[-71.687403,41.52715299906],[-71.687597,41.52693199906],[-71.687648,41.52688199906],[-71.687768,41.52679399906],[-71.688024,41.52658899906],[-71.688092,41.52652999906],[-71.688263,41.52634799906],[-71.688318,41.52629499906],[-71.688364,41.52624199906],[-71.688401,41.52618499906],[-71.688541,41.52590999906],[-71.688572,41.52584199906],[-71.688646,41.52571399906],[-71.688694,41.52564599906],[-71.688819,41.52543599906],[-71.689054,41.52509299906],[-71.689094,41.52501999906],[-71.68922,41.52475199906],[-71.689241,41.52469399906],[-71.689247,41.52463199906],[-71.689215,41.52461099906],[-71.689169,41.52465399906],[-71.689132,41.52470799906],[-71.689057,41.52484499906],[-71.689009,41.52490299906],[-71.688907,41.52501199906],[-71.688832,41.52512099906],[-71.688772,41.52516299906],[-71.688714,41.52520999906],[-71.688611,41.52532299906],[-71.688537,41.52542399906],[-71.688476,41.52547599906],[-71.688394,41.52546399906],[-71.688406,41.52538399906],[-71.68853,41.52515299906],[-71.688633,41.52498199906],[-71.688828,41.52460399906],[-71.688888,41.52451299906],[-71.689007,41.52435199906],[-71.689201,41.52406299906],[-71.689287,41.52395799906],[-71.689332,41.52391099906],[-71.689391,41.52386699906],[-71.689542,41.52377499906],[-71.689703,41.52366999906],[-71.689844,41.52356799906],[-71.690101,41.52334799906],[-71.690193,41.52324899906],[-71.690333,41.52316599906],[-71.6904,41.52311799906],[-71.690608,41.52298199906],[-71.690778,41.52285599906],[-71.690989,41.52274999906],[-71.691368,41.52252599906],[-71.691432,41.52249399906],[-71.691509,41.52246599906],[-71.691609,41.52240099906],[-71.691762,41.52230099906],[-71.691983,41.52213299906],[-71.69333,41.52128799906],[-71.69512,41.52038799906],[-71.697011,41.51949899906],[-71.698725,41.51855399906],[-71.700516,41.51737099906],[-71.702549,41.51630899906],[-71.703148,41.51626899906],[-71.703206,41.51625199906],[-71.703279,41.51621999906],[-71.703337,41.51618399906],[-71.703383,41.51613999906],[-71.703407,41.51609299906],[-71.703482,41.51608599906],[-71.703558,41.51605499906],[-71.703635,41.51603499906],[-71.703682,41.51601799906],[-71.703703,41.51589299906],[-71.703794,41.51585399906],[-71.703856,41.51581599906],[-71.703938,41.51574799906],[-71.703957,41.51573199906],[-71.704022,41.51569499906],[-71.704098,41.51566699906],[-71.704183,41.51565199906],[-71.704263,41.51565599906],[-71.70435,41.51564999906],[-71.704428,41.51563899906],[-71.704489,41.51560899906],[-71.704604,41.51553099906],[-71.704668,41.51549699906],[-71.704827,41.51544799906],[-71.704978,41.51539499906],[-71.705124,41.51534999906],[-71.705253,41.51529399906],[-71.705328,41.51525399906],[-71.70534,41.51524599906],[-71.705393,41.51520999906],[-71.705455,41.51515699906],[-71.705496,41.51510599906],[-71.705523,41.51504299906],[-71.705568,41.51490599906],[-71.705572,41.51484099906],[-71.705548,41.51471099906],[-71.705518,41.51465099906],[-71.705473,41.51459699906],[-71.705316,41.51447599906],[-71.705239,41.51443599906],[-71.705093,41.51436899906],[-71.705021,41.51433999906],[-71.704954,41.51431899906],[-71.704902,41.51429399906],[-71.704689,41.51438299906],[-71.7045,41.51445399906],[-71.704316,41.51452399906],[-71.703455,41.51481299906],[-71.702713,41.51506299906],[-71.702404,41.51515699906],[-71.702204,41.51522699906],[-71.701895,41.51532399906],[-71.701836,41.51534999906],[-71.701782,41.51538099906],[-71.701759,41.51531799906],[-71.701746,41.51525799906],[-71.701637,41.51522999906],[-71.701496,41.51520199906],[-71.701402,41.51518299906],[-71.700967,41.51506699906],[-71.70054,41.51495199906],[-71.700055,41.51480799906],[-71.699944,41.51477099906],[-71.699707,41.51467499906],[-71.698578,41.51430499906],[-71.696774,41.51371099906],[-71.696022,41.51346299906],[-71.695808,41.51339299906],[-71.695427,41.51326799906],[-71.695369,41.51324099906],[-71.695218,41.51320299906],[-71.695045,41.51315599906],[-71.694866,41.51311199906],[-71.694595,41.51304999906],[-71.693138,41.51271399906],[-71.692356,41.51256499906],[-71.692283,41.51255099906],[-71.692264,41.51254699906],[-71.692089,41.51251199906],[-71.691991,41.51249099906],[-71.691689,41.51242199906],[-71.691634,41.51240999906],[-71.691599,41.51240299906],[-71.690605,41.51220699906],[-71.689728,41.51202399906],[-71.689621,41.51203199906],[-71.68927,41.51195499906],[-71.688679,41.51184599906],[-71.688002,41.51170599906],[-71.687734,41.51162399906],[-71.687546,41.51155999906],[-71.687344,41.51148299906],[-71.687136,41.51139899906],[-71.686917,41.51128999906],[-71.684034,41.50986699906],[-71.683632,41.50963999906],[-71.683266,41.50941799906],[-71.682808,41.50910899906],[-71.682571,41.50894199906],[-71.682281,41.50871999906],[-71.682144,41.50860599906],[-71.682014,41.50848399906],[-71.68177,41.50822399906],[-71.681671,41.50809499906],[-71.681488,41.50783199906],[-71.681328,41.50755699906],[-71.681144,41.50716699906],[-71.680176,41.50511199906],[-71.680107,41.50496699906],[-71.68,41.50476099906],[-71.679939,41.50465799906],[-71.679848,41.50452799906],[-71.67968,41.50431099906],[-71.679367,41.50402799906],[-71.679298,41.50397499906],[-71.679024,41.50380299906],[-71.678772,41.50367699906],[-71.678448,41.50355899906],[-71.678107,41.50346299906],[-71.677666,41.50337199906],[-71.676384,41.50312399906],[-71.676303,41.50310999906],[-71.676254,41.50310099906],[-71.676071,41.50307099906],[-71.675453,41.50295599906],[-71.675148,41.50290299906],[-71.674614,41.50279599906],[-71.673744,41.50263199906],[-71.673279,41.50255199906],[-71.672626,41.50243099906],[-71.671905,41.50228099906],[-71.671266,41.50216499906],[-71.669999,41.50192799906],[-71.668633,41.50169199906],[-71.668192,41.50161399906],[-71.66789,41.50155899906],[-71.66754,41.50148699906],[-71.667251,41.50142699906],[-71.666762,41.50128799906],[-71.666344,41.50113599906],[-71.666189,41.50108699906],[-71.665993,41.50102299906],[-71.665569,41.50088099906],[-71.665385,41.50082199906],[-71.665301,41.50079699906],[-71.664518,41.50055799906],[-71.664098,41.50043999906],[-71.663587,41.50029399906],[-71.662804,41.50004599906],[-71.66227,41.49989699906],[-71.662079,41.49985099906],[-71.66185,41.49983199906],[-71.661644,41.49983199906],[-71.66143,41.49986299906],[-71.661209,41.49991199906],[-71.660917,41.49999099906],[-71.659536,41.50042499906],[-71.659484,41.50056199906],[-71.659416,41.50091199906],[-71.659279,41.50144599906],[-71.65905,41.50206399906],[-71.65892,41.50246799906],[-71.658791,41.50296799906],[-71.658779,41.50300599906],[-71.658739,41.50324299906],[-71.658724,41.50333699906],[-71.658666,41.50362099906],[-71.658615,41.50387099906],[-71.658554,41.50426099906],[-71.658554,41.50439799906],[-71.6586,41.50457799906],[-71.65863,41.50464199906],[-71.658791,41.50488699906],[-71.65892,41.50506199906],[-71.659004,41.50521099906],[-71.659073,41.50536699906],[-71.659119,41.50558099906],[-71.659142,41.50576399906],[-71.659309,41.50675999906],[-71.659431,41.50763299906],[-71.659515,41.50816699906],[-71.659676,41.50912099906],[-71.659721,41.50934999906],[-71.659813,41.50970499906],[-71.659874,41.51003299906],[-71.659897,41.51010099906],[-71.659927,41.51024199906],[-71.659958,41.51050199906],[-71.659958,41.51055099906],[-71.659966,41.51060099906],[-71.659966,41.51083799906],[-71.65995,41.51111999906],[-71.659948,41.51121499906],[-71.659943,41.51144399906],[-71.659927,41.51179499906],[-71.659897,41.51221499906],[-71.659874,41.51233299906],[-71.659859,41.51243999906],[-71.659843,41.51249299906],[-71.659836,41.51254699906],[-71.659821,41.51259599906],[-71.659752,41.51274099906],[-71.659683,41.51282899906],[-71.659386,41.51315299906],[-71.659363,41.51322199906],[-71.659363,41.51329799906],[-71.659378,41.51333199906],[-71.659409,41.51337799906],[-71.659561,41.51348899906],[-71.659668,41.51354999906],[-71.65979,41.51364099906],[-71.659843,41.51368699906],[-71.65992,41.51377899906],[-71.65995,41.51382399906],[-71.660088,41.51397299906],[-71.660324,41.51429699906],[-71.66043,41.51446299906],[-71.660524,41.51460799906],[-71.660774,41.51499799906],[-71.661064,41.51549899906],[-71.661377,41.51600999906],[-71.661407,41.51607499906],[-71.661446,41.51613599906],[-71.661613,41.51636499906],[-71.661789,41.51656699906],[-71.661835,41.51662799906],[-71.662209,41.51707099906],[-71.662506,41.51737599906],[-71.662567,41.51744499906],[-71.662712,41.51759299906],[-71.662781,41.51767299906],[-71.662949,41.51788299906],[-71.662987,41.51794799906],[-71.66304,41.51802399906],[-71.663078,41.51810499906],[-71.663124,41.51818099906],[-71.6632,41.51833699906],[-71.663231,41.51841699906],[-71.663261,41.51847799906],[-71.663284,41.51853899906],[-71.663345,41.51866099906],[-71.663383,41.51872599906],[-71.663513,41.51892499906],[-71.663551,41.51899699906],[-71.663567,41.51904699906],[-71.663574,41.51910399906],[-71.663589,41.51915699906],[-71.663612,41.51927899906],[-71.663696,41.51949699906],[-71.663704,41.51955799906],[-71.663715,41.51960199906],[-71.663765,41.51972599906],[-71.663834,41.51982499906],[-71.663971,41.51998499906],[-71.664215,41.52030899906],[-71.664261,41.52035899906],[-71.664337,41.52045799906],[-71.664413,41.52058799906],[-71.664436,41.52065699906],[-71.664482,41.52075599906],[-71.66452,41.52086599906],[-71.664597,41.52119099906],[-71.664597,41.52142299906],[-71.664604,41.52149199906],[-71.664604,41.52156099906],[-71.664619,41.52163299906],[-71.664627,41.52170899906],[-71.664673,41.52197599906],[-71.664691,41.52202199906],[-71.664703,41.52205299906],[-71.664726,41.52209899906],[-71.664764,41.52214399906],[-71.664864,41.52228199906],[-71.664909,41.52233499906],[-71.664955,41.52237699906],[-71.665016,41.52241899906],[-71.665217,41.52259199906],[-71.665428,41.52275799906],[-71.665611,41.52294199906],[-71.665749,41.52310899906],[-71.665779,41.52315899906],[-71.665817,41.52320499906],[-71.665848,41.52325399906],[-71.665894,41.52339199906],[-71.665924,41.52356699906],[-71.665916,41.52396399906],[-71.665916,41.52434499906],[-71.665924,41.52440599906],[-71.66597,41.52459299906],[-71.665977,41.52465799906],[-71.665993,41.52472299906],[-71.66613,41.52514999906],[-71.666145,41.52521899906],[-71.666168,41.52529099906],[-71.666191,41.52541699906],[-71.666191,41.52552799906],[-71.666206,41.52566099906],[-71.666206,41.52580299906],[-71.666191,41.52595899906],[-71.66613,41.52641299906],[-71.66613,41.52651199906],[-71.666145,41.52661499906],[-71.666145,41.52666499906],[-71.666298,41.52735899906],[-71.666405,41.52806499906],[-71.666512,41.52881599906],[-71.666618,41.52968999906],[-71.666718,41.53027699906],[-71.666878,41.53113899906],[-71.666878,41.53118499906],[-71.666885,41.53121199906],[-71.666885,41.53124199906],[-71.666893,41.53127299906],[-71.666893,41.53133399906],[-71.666908,41.53142499906],[-71.666939,41.53153999906],[-71.66703,41.53205899906],[-71.667068,41.53231799906],[-71.667068,41.53237499906],[-71.667053,41.53250499906],[-71.667038,41.53257399906],[-71.666977,41.53305099906],[-71.666929,41.53345799906],[-71.666885,41.53412199906],[-71.66687,41.53474399906],[-71.666855,41.53488199906],[-71.66684,41.53496199906],[-71.666809,41.53512599906],[-71.666801,41.53519399906],[-71.666786,41.53526699906],[-71.666771,41.53542299906],[-71.666771,41.53564799906],[-71.666763,41.53566699906],[-71.666763,41.53609499906],[-71.666779,41.53657899906],[-71.666748,41.53681899906],[-71.666748,41.53686899906],[-71.66674,41.53692199906],[-71.666725,41.53697599906],[-71.666702,41.53702499906],[-71.666687,41.53707899906],[-71.666626,41.53721199906],[-71.66658,41.53734999906],[-71.666542,41.53765899906],[-71.666481,41.53846699906],[-71.66645,41.53894799906],[-71.666389,41.53927199906],[-71.666374,41.53940599906],[-71.666359,41.53947099906],[-71.666351,41.53953899906],[-71.666306,41.53974199906],[-71.666283,41.53981799906],[-71.666252,41.54000499906],[-71.666252,41.54021099906],[-71.666267,41.54041299906],[-71.666267,41.54050799906],[-71.666275,41.54054599906],[-71.666275,41.54069099906],[-71.666267,41.54074899906],[-71.666267,41.54080199906],[-71.66613,41.54185099906],[-71.666069,41.54242299906],[-71.666023,41.54287699906],[-71.665947,41.54343799906],[-71.665894,41.54391499906],[-71.665848,41.54451399906],[-71.665779,41.54502099906],[-71.665749,41.54552799906],[-71.665718,41.54622999906],[-71.665688,41.54642499906],[-71.665665,41.54702399906],[-71.665611,41.54749699906],[-71.66555,41.54829399906],[-71.665535,41.54868299906],[-71.665482,41.54932399906],[-71.665482,41.54952599906],[-71.665474,41.54959499906],[-71.665474,41.54977799906],[-71.665482,41.54984699906],[-71.665428,41.55034599906],[-71.665398,41.55048699906],[-71.665367,41.55063199906],[-71.665352,41.55078499906],[-71.665327,41.55142799906],[-71.665314,41.55175399906],[-71.665314,41.55187999906],[-71.665306,41.55190999906],[-71.665283,41.55238699906],[-71.665237,41.55273799906],[-71.665222,41.55291399906],[-71.665202,41.55325599906],[-71.665199,41.55330699906],[-71.665138,41.55396299906],[-71.665115,41.55410799906],[-71.6651,41.55424899906],[-71.66507,41.55443599906],[-71.665047,41.55461899906],[-71.664925,41.55536299906],[-71.664864,41.55587399906],[-71.664856,41.55604199906],[-71.664816,41.55644799906],[-71.66481,41.55650699906],[-71.66478,41.55664399906],[-71.664763,41.55683099906],[-71.665066,41.55696799906],[-71.665155,41.55701599906],[-71.664604,41.55777699906],[-71.664229,41.55833999906],[-71.66405,41.55860899906],[-71.66391,41.55881899906],[-71.663604,41.55932799906],[-71.663399,41.55966899906],[-71.663616,41.55964599906],[-71.666156,41.55937499906],[-71.666842,41.55928899906],[-71.667046,41.55926899906],[-71.667289,41.55923899906],[-71.667763,41.55918899906],[-71.667839,41.55916999906],[-71.668234,41.55912699906],[-71.66868,41.55907999906],[-71.670995,41.55881399906],[-71.6785,41.55796799906],[-71.682997,41.55751999906],[-71.684288,41.55737299906],[-71.685739,41.55718099906],[-71.687506,41.55699299906],[-71.691675,41.55658999906],[-71.692395,41.55652299906],[-71.694362,41.55634099906],[-71.695056,41.55627799906],[-71.696609,41.55613099906],[-71.697271,41.55606799906],[-71.697706,41.55602499906],[-71.698626,41.55593499906],[-71.700376,41.55577699906],[-71.701134,41.55569999906],[-71.705862,41.55524699906],[-71.710683,41.55469599906],[-71.715018,41.55420299906]]]}}"}, +{"type": "blockgroup", "typeId": 506002, "areaId": 29397, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.667068,41.53231799906],[-71.66703,41.53205899906],[-71.666939,41.53153999906],[-71.666908,41.53142499906],[-71.666893,41.53133399906],[-71.666893,41.53127299906],[-71.666885,41.53124199906],[-71.666885,41.53121199906],[-71.666878,41.53118499906],[-71.666878,41.53113899906],[-71.666718,41.53027699906],[-71.666618,41.52968999906],[-71.666512,41.52881599906],[-71.666405,41.52806499906],[-71.666298,41.52735899906],[-71.666145,41.52666499906],[-71.666145,41.52661499906],[-71.66613,41.52651199906],[-71.66613,41.52641299906],[-71.666191,41.52595899906],[-71.666206,41.52580299906],[-71.666206,41.52566099906],[-71.666191,41.52552799906],[-71.666191,41.52541699906],[-71.666168,41.52529099906],[-71.666145,41.52521899906],[-71.66613,41.52514999906],[-71.665993,41.52472299906],[-71.665977,41.52465799906],[-71.66597,41.52459299906],[-71.665924,41.52440599906],[-71.665916,41.52434499906],[-71.665916,41.52396399906],[-71.665924,41.52356699906],[-71.665894,41.52339199906],[-71.665848,41.52325399906],[-71.665817,41.52320499906],[-71.665779,41.52315899906],[-71.665749,41.52310899906],[-71.665611,41.52294199906],[-71.665428,41.52275799906],[-71.665217,41.52259199906],[-71.665016,41.52241899906],[-71.664955,41.52237699906],[-71.664909,41.52233499906],[-71.664864,41.52228199906],[-71.664764,41.52214399906],[-71.664726,41.52209899906],[-71.664703,41.52205299906],[-71.664691,41.52202199906],[-71.664673,41.52197599906],[-71.664627,41.52170899906],[-71.664619,41.52163299906],[-71.664604,41.52156099906],[-71.664604,41.52149199906],[-71.664597,41.52142299906],[-71.664597,41.52119099906],[-71.66452,41.52086599906],[-71.664482,41.52075599906],[-71.664436,41.52065699906],[-71.664413,41.52058799906],[-71.664337,41.52045799906],[-71.664261,41.52035899906],[-71.664215,41.52030899906],[-71.663971,41.51998499906],[-71.663834,41.51982499906],[-71.663765,41.51972599906],[-71.663715,41.51960199906],[-71.663704,41.51955799906],[-71.663696,41.51949699906],[-71.663612,41.51927899906],[-71.663589,41.51915699906],[-71.663574,41.51910399906],[-71.663567,41.51904699906],[-71.663551,41.51899699906],[-71.663513,41.51892499906],[-71.663383,41.51872599906],[-71.663345,41.51866099906],[-71.663284,41.51853899906],[-71.663261,41.51847799906],[-71.663231,41.51841699906],[-71.6632,41.51833699906],[-71.663124,41.51818099906],[-71.663078,41.51810499906],[-71.66304,41.51802399906],[-71.662987,41.51794799906],[-71.662949,41.51788299906],[-71.662781,41.51767299906],[-71.662712,41.51759299906],[-71.662567,41.51744499906],[-71.662506,41.51737599906],[-71.662209,41.51707099906],[-71.661835,41.51662799906],[-71.661789,41.51656699906],[-71.661613,41.51636499906],[-71.661446,41.51613599906],[-71.661407,41.51607499906],[-71.661377,41.51600999906],[-71.661064,41.51549899906],[-71.660774,41.51499799906],[-71.660524,41.51460799906],[-71.66043,41.51446299906],[-71.660324,41.51429699906],[-71.660088,41.51397299906],[-71.65995,41.51382399906],[-71.65992,41.51377899906],[-71.659843,41.51368699906],[-71.65979,41.51364099906],[-71.659668,41.51354999906],[-71.659561,41.51348899906],[-71.659409,41.51337799906],[-71.659378,41.51333199906],[-71.659363,41.51329799906],[-71.659363,41.51322199906],[-71.659386,41.51315299906],[-71.659683,41.51282899906],[-71.659752,41.51274099906],[-71.659821,41.51259599906],[-71.659836,41.51254699906],[-71.659843,41.51249299906],[-71.659859,41.51243999906],[-71.659874,41.51233299906],[-71.659897,41.51221499906],[-71.659927,41.51179499906],[-71.659943,41.51144399906],[-71.659948,41.51121499906],[-71.65995,41.51111999906],[-71.659966,41.51083799906],[-71.659966,41.51060099906],[-71.659958,41.51055099906],[-71.659958,41.51050199906],[-71.659927,41.51024199906],[-71.659897,41.51010099906],[-71.659874,41.51003299906],[-71.659813,41.50970499906],[-71.659721,41.50934999906],[-71.659676,41.50912099906],[-71.659515,41.50816699906],[-71.659431,41.50763299906],[-71.659309,41.50675999906],[-71.659142,41.50576399906],[-71.659119,41.50558099906],[-71.659073,41.50536699906],[-71.659004,41.50521099906],[-71.65892,41.50506199906],[-71.658791,41.50488699906],[-71.65863,41.50464199906],[-71.6586,41.50457799906],[-71.658554,41.50439799906],[-71.658554,41.50426099906],[-71.658615,41.50387099906],[-71.658666,41.50362099906],[-71.658724,41.50333699906],[-71.658739,41.50324299906],[-71.658779,41.50300599906],[-71.658791,41.50296799906],[-71.65892,41.50246799906],[-71.65905,41.50206399906],[-71.659279,41.50144599906],[-71.659416,41.50091199906],[-71.659484,41.50056199906],[-71.659536,41.50042499906],[-71.657808,41.50091399906],[-71.656051,41.50143499906],[-71.655603,41.50155999906],[-71.654355,41.50191999906],[-71.65366,41.50210399906],[-71.653339,41.50216699906],[-71.653025,41.50221099906],[-71.652682,41.50225499906],[-71.652269,41.50227499906],[-71.651829,41.50227299906],[-71.651481,41.50225299906],[-71.651137,41.50221999906],[-71.650434,41.50214199906],[-71.649841,41.50206499906],[-71.647789,41.50181999906],[-71.647392,41.50176199906],[-71.647041,41.50169399906],[-71.64669,41.50160599906],[-71.64564,41.50135299906],[-71.644712,41.50110599906],[-71.64449,41.50105099906],[-71.644278,41.50098599906],[-71.644078,41.50093299906],[-71.643741,41.50081999906],[-71.6434,41.50067899906],[-71.643059,41.50052299906],[-71.642221,41.50015799906],[-71.641479,41.49980199906],[-71.64061,41.49939699906],[-71.640144,41.49918699906],[-71.639618,41.49893599906],[-71.639008,41.49865699906],[-71.638538,41.49844799906],[-71.638512,41.49843599906],[-71.638125,41.49828099906],[-71.637822,41.49817299906],[-71.637444,41.49803899906],[-71.636506,41.49774899906],[-71.635365,41.49738399906],[-71.635112,41.49728799906],[-71.634889,41.49719199906],[-71.63468,41.49709199906],[-71.634449,41.49696199906],[-71.634199,41.49681199906],[-71.633984,41.49666499906],[-71.633736,41.49646599906],[-71.633451,41.49618299906],[-71.632996,41.49565899906],[-71.63274,41.49537999906],[-71.632373,41.49495799906],[-71.632109,41.49465799906],[-71.631892,41.49440499906],[-71.631653,41.49411799906],[-71.631355,41.49380099906],[-71.631337,41.49378399906],[-71.631172,41.49362599906],[-71.631073,41.49354199906],[-71.630969,41.49346499906],[-71.630844,41.49337399906],[-71.630539,41.49317899906],[-71.630379,41.49309199906],[-71.630211,41.49301099906],[-71.630043,41.49293899906],[-71.629734,41.49282099906],[-71.629517,41.49274799906],[-71.629333,41.49269499906],[-71.62899,41.49260699906],[-71.628815,41.49257299906],[-71.628685,41.49255399906],[-71.628372,41.49251899906],[-71.628042,41.49250399906],[-71.627914,41.49249999906],[-71.627678,41.49249999906],[-71.627449,41.49251199906],[-71.62722,41.49253099906],[-71.626999,41.49255799906],[-71.62677,41.49259599906],[-71.626411,41.49266799906],[-71.626236,41.49271399906],[-71.626091,41.49275999906],[-71.625946,41.49281299906],[-71.625793,41.49286299906],[-71.624741,41.49326299906],[-71.62346,41.49374199906],[-71.623405,41.49376299906],[-71.622246,41.49420899906],[-71.622101,41.49425899906],[-71.621658,41.49438899906],[-71.621323,41.49447099906],[-71.621178,41.49450199906],[-71.62101,41.49452599906],[-71.620674,41.49456599906],[-71.620499,41.49457899906],[-71.620162,41.49459599906],[-71.619826,41.49460199906],[-71.619658,41.49459899906],[-71.619483,41.49458899906],[-71.619306,41.49456999906],[-71.619149,41.49455799906],[-71.619123,41.49455599906],[-71.619066,41.49454799906],[-71.617881,41.49441699906],[-71.617308,41.49434099906],[-71.616824,41.49428399906],[-71.616482,41.49425499906],[-71.616058,41.49424699906],[-71.615898,41.49426299906],[-71.615698,41.49429399906],[-71.615578,41.49431199906],[-71.615227,41.49438499906],[-71.615051,41.49443399906],[-71.614914,41.49448399906],[-71.614784,41.49454099906],[-71.614729,41.49456899906],[-71.614578,41.49464399906],[-71.614349,41.49476999906],[-71.614052,41.49496099906],[-71.613907,41.49505999906],[-71.61377,41.49516699906],[-71.613541,41.49536099906],[-71.613205,41.49567799906],[-71.613098,41.49579199906],[-71.61293,41.49601399906],[-71.612526,41.49660499906],[-71.611923,41.49749399906],[-71.611679,41.49781799906],[-71.611549,41.49798199906],[-71.610016,41.49984399906],[-71.609093,41.50094999906],[-71.608688,41.50144199906],[-71.608521,41.50165599906],[-71.6082,41.50202199906],[-71.608047,41.50218199906],[-71.607724,41.50247999906],[-71.607794,41.50252999906],[-71.608007,41.50253899906],[-71.608097,41.50255099906],[-71.608188,41.50257299906],[-71.608256,41.50259399906],[-71.608322,41.50262299906],[-71.608381,41.50265599906],[-71.608457,41.50270799906],[-71.608512,41.50277399906],[-71.608544,41.50284799906],[-71.608555,41.50292399906],[-71.608558,41.50306199906],[-71.608541,41.50343799906],[-71.608525,41.50349999906],[-71.608635,41.50400499906],[-71.608627,41.50405499906],[-71.608631,41.50411699906],[-71.608635,41.50415399906],[-71.60865,41.50426499906],[-71.608681,41.50434899906],[-71.608688,41.50438699906],[-71.608772,41.50455099906],[-71.609332,41.50665699906],[-71.609772,41.50898599906],[-71.609907,41.50969999906],[-71.609923,41.50972899906],[-71.610041,41.51035799906],[-71.610049,41.51039499906],[-71.61022,41.51122899906],[-71.610706,41.51361999906],[-71.611684,41.51842099906],[-71.611711,41.51844999906],[-71.611747,41.51861899906],[-71.612295,41.52147399906],[-71.612429,41.52214799906],[-71.612484,41.52242499906],[-71.61276,41.52372299906],[-71.613042,41.52512099906],[-71.613049,41.52515399906],[-71.613076,41.52528799906],[-71.613198,41.52589299906],[-71.613434,41.52697999906],[-71.613628,41.52805999906],[-71.613843,41.52916899906],[-71.614036,41.53019899906],[-71.614193,41.53099799906],[-71.614404,41.53201899906],[-71.614776,41.53392599906],[-71.614876,41.53442599906],[-71.615131,41.53549099906],[-71.615423,41.53688499906],[-71.615623,41.53811499906],[-71.615662,41.53835099906],[-71.615929,41.53980499906],[-71.616006,41.54011899906],[-71.61612,41.54042699906],[-71.616152,41.54054599906],[-71.616173,41.54066799906],[-71.616194,41.54090199906],[-71.616204,41.54107299906],[-71.616201,41.54132499906],[-71.616208,41.54148799906],[-71.616227,41.54161699906],[-71.616253,41.54170199906],[-71.616327,41.54186699906],[-71.61637,41.54194899906],[-71.616388,41.54199299906],[-71.616397,41.54204299906],[-71.616413,41.54227399906],[-71.616423,41.54233199906],[-71.61647,41.54247399906],[-71.616714,41.54368199906],[-71.616761,41.54386499906],[-71.616938,41.54469499906],[-71.617152,41.54584999906],[-71.617166,41.54592199906],[-71.617307,41.54667399906],[-71.617373,41.54718799906],[-71.617401,41.54730699906],[-71.617424,41.54740399906],[-71.618068,41.55047499906],[-71.618477,41.55242299906],[-71.618595,41.55296399906],[-71.618804,41.55473899906],[-71.618982,41.55562499906],[-71.620543,41.56336099906],[-71.620715,41.56423399906],[-71.62074,41.56434099906],[-71.62868,41.56358799906],[-71.633695,41.56297499906],[-71.637098,41.56258199906],[-71.642474,41.56197199906],[-71.643974,41.56175999906],[-71.644898,41.56167999906],[-71.646448,41.56148499906],[-71.64699,41.56142699906],[-71.647063,41.56141999906],[-71.650297,41.56109999906],[-71.650406,41.56107899906],[-71.652246,41.56085099906],[-71.652672,41.56079799906],[-71.65398,41.56063199906],[-71.656311,41.56038599906],[-71.657419,41.56027499906],[-71.660508,41.55995399906],[-71.66143,41.55985399906],[-71.663254,41.55968499906],[-71.663399,41.55966899906],[-71.663604,41.55932799906],[-71.66391,41.55881899906],[-71.66405,41.55860899906],[-71.664229,41.55833999906],[-71.664604,41.55777699906],[-71.665155,41.55701599906],[-71.665066,41.55696799906],[-71.664763,41.55683099906],[-71.66478,41.55664399906],[-71.66481,41.55650699906],[-71.664816,41.55644799906],[-71.664856,41.55604199906],[-71.664864,41.55587399906],[-71.664925,41.55536299906],[-71.665047,41.55461899906],[-71.66507,41.55443599906],[-71.6651,41.55424899906],[-71.665115,41.55410799906],[-71.665138,41.55396299906],[-71.665199,41.55330699906],[-71.665202,41.55325599906],[-71.665222,41.55291399906],[-71.665237,41.55273799906],[-71.665283,41.55238699906],[-71.665306,41.55190999906],[-71.665314,41.55187999906],[-71.665314,41.55175399906],[-71.665327,41.55142799906],[-71.665352,41.55078499906],[-71.665367,41.55063199906],[-71.665398,41.55048699906],[-71.665428,41.55034599906],[-71.665482,41.54984699906],[-71.665474,41.54977799906],[-71.665474,41.54959499906],[-71.665482,41.54952599906],[-71.665482,41.54932399906],[-71.665535,41.54868299906],[-71.66555,41.54829399906],[-71.665611,41.54749699906],[-71.665665,41.54702399906],[-71.665688,41.54642499906],[-71.665718,41.54622999906],[-71.665749,41.54552799906],[-71.665779,41.54502099906],[-71.665848,41.54451399906],[-71.665894,41.54391499906],[-71.665947,41.54343799906],[-71.666023,41.54287699906],[-71.666069,41.54242299906],[-71.66613,41.54185099906],[-71.666267,41.54080199906],[-71.666267,41.54074899906],[-71.666275,41.54069099906],[-71.666275,41.54054599906],[-71.666267,41.54050799906],[-71.666267,41.54041299906],[-71.666252,41.54021099906],[-71.666252,41.54000499906],[-71.666283,41.53981799906],[-71.666306,41.53974199906],[-71.666351,41.53953899906],[-71.666359,41.53947099906],[-71.666374,41.53940599906],[-71.666389,41.53927199906],[-71.66645,41.53894799906],[-71.666481,41.53846699906],[-71.666542,41.53765899906],[-71.66658,41.53734999906],[-71.666626,41.53721199906],[-71.666687,41.53707899906],[-71.666702,41.53702499906],[-71.666725,41.53697599906],[-71.66674,41.53692199906],[-71.666748,41.53686899906],[-71.666748,41.53681899906],[-71.666779,41.53657899906],[-71.666763,41.53609499906],[-71.666763,41.53566699906],[-71.666771,41.53564799906],[-71.666771,41.53542299906],[-71.666786,41.53526699906],[-71.666801,41.53519399906],[-71.666809,41.53512599906],[-71.66684,41.53496199906],[-71.666855,41.53488199906],[-71.66687,41.53474399906],[-71.666885,41.53412199906],[-71.666929,41.53345799906],[-71.666977,41.53305099906],[-71.667038,41.53257399906],[-71.667053,41.53250499906],[-71.667068,41.53237499906],[-71.667068,41.53231799906]]]}}"}, +{"type": "blockgroup", "typeId": 506003, "areaId": 29398, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.722554,41.43762699906],[-71.722538,41.43757099906],[-71.722512,41.43751899906],[-71.722471,41.43747299906],[-71.722417,41.43742199906],[-71.72236,41.43735999906],[-71.722331,41.43729399906],[-71.722341,41.43722199906],[-71.722367,41.43715899906],[-71.722402,41.43705099906],[-71.722412,41.43702099906],[-71.722414,41.43696599906],[-71.722332,41.43684099906],[-71.722272,41.43679099906],[-71.722096,41.43670399906],[-71.721998,41.43664899906],[-71.721807,41.43659199906],[-71.721659,41.43653999906],[-71.721485,41.43649799906],[-71.721414,41.43646999906],[-71.721291,41.43639699906],[-71.721237,41.43635999906],[-71.721151,41.43627799906],[-71.72112,41.43622799906],[-71.721066,41.43611599906],[-71.721008,41.43601199906],[-71.720986,41.43595699906],[-71.720952,41.43574199906],[-71.7209,41.43556799906],[-71.720816,41.43537499906],[-71.720781,41.43526399906],[-71.720751,41.43508799906],[-71.720731,41.43490599906],[-71.720727,41.43477899906],[-71.720732,41.43466299906],[-71.720729,41.43460499906],[-71.720679,41.43437299906],[-71.720598,41.43408999906],[-71.720577,41.43403399906],[-71.720524,41.43392699906],[-71.720485,41.43381799906],[-71.720465,41.43371099906],[-71.720461,41.43338799906],[-71.720503,41.43308899906],[-71.720518,41.43288299906],[-71.720562,41.43260199906],[-71.720582,41.43250699906],[-71.720632,41.43232899906],[-71.720649,41.43223699906],[-71.720678,41.43196199906],[-71.720675,41.43177399906],[-71.720661,41.43167599906],[-71.720631,41.43158599906],[-71.720506,41.43133599906],[-71.720369,41.43110199906],[-71.720283,41.43091799906],[-71.720198,41.43071799906],[-71.720139,41.43055599906],[-71.720114,41.43050499906],[-71.719961,41.43023999906],[-71.719883,41.43007499906],[-71.719783,41.42990299906],[-71.719653,41.42979999906],[-71.719598,41.42974899906],[-71.719573,41.42968699906],[-71.719556,41.42962399906],[-71.719501,41.42954999906],[-71.719459,41.42958799906],[-71.719397,41.42959499906],[-71.71923,41.42951799906],[-71.719137,41.42945499906],[-71.719059,41.42938199906],[-71.719007,41.42931199906],[-71.71898,41.42922399906],[-71.718967,41.42913499906],[-71.718976,41.42906399906],[-71.719011,41.42900799906],[-71.71906,41.42896499906],[-71.719125,41.42894099906],[-71.719209,41.42889399906],[-71.719299,41.42880399906],[-71.719317,41.42873599906],[-71.719317,41.42868099906],[-71.719305,41.42862599906],[-71.719269,41.42857299906],[-71.719165,41.42845999906],[-71.719022,41.42834499906],[-71.719006,41.42832399906],[-71.718823,41.42840699906],[-71.71881,41.42841199906],[-71.718604,41.42851099906],[-71.718336,41.42866699906],[-71.71825,41.42872199906],[-71.718092,41.42885299906],[-71.718032,41.42892299906],[-71.71797,41.42897599906],[-71.717811,41.42907399906],[-71.717688,41.42916799906],[-71.717641,41.42921799906],[-71.717544,41.42929899906],[-71.717565,41.42931399906],[-71.717584,41.42938499906],[-71.717622,41.42947299906],[-71.717715,41.42957599906],[-71.717745,41.42964099906],[-71.717759,41.42969699906],[-71.717763,41.42975499906],[-71.71776,41.42981899906],[-71.717722,41.42995099906],[-71.717717,41.43000999906],[-71.717692,41.43007099906],[-71.717671,41.43018299906],[-71.717644,41.43024399906],[-71.71763,41.43032299906],[-71.717576,41.43053899906],[-71.717472,41.43087299906],[-71.717436,41.43091499906],[-71.717355,41.43086099906],[-71.717298,41.43080999906],[-71.71725,41.43075199906],[-71.717216,41.43068499906],[-71.717204,41.43060399906],[-71.717248,41.43052299906],[-71.717317,41.43042499906],[-71.71741,41.43023999906],[-71.717492,41.43010699906],[-71.717464,41.43007899906],[-71.717381,41.43009999906],[-71.717196,41.43021699906],[-71.717024,41.43031999906],[-71.716884,41.43042299906],[-71.716837,41.43047599906],[-71.716811,41.43054599906],[-71.716816,41.43061899906],[-71.71686,41.43069599906],[-71.71689,41.43076899906],[-71.716918,41.43081699906],[-71.717035,41.43092299906],[-71.717125,41.43098299906],[-71.71723,41.43103499906],[-71.717323,41.43108799906],[-71.717458,41.43119899906],[-71.717502,41.43124499906],[-71.717535,41.43130999906],[-71.717543,41.43137199906],[-71.717515,41.43144299906],[-71.717461,41.43152199906],[-71.71738,41.43167899906],[-71.717352,41.43175899906],[-71.717348,41.43197199906],[-71.717333,41.43206799906],[-71.717284,41.43225899906],[-71.717245,41.43233299906],[-71.717181,41.43238299906],[-71.716919,41.43250499906],[-71.716825,41.43254199906],[-71.716738,41.43258299906],[-71.716577,41.43267299906],[-71.716518,41.43272999906],[-71.716422,41.43284299906],[-71.716383,41.43290499906],[-71.716357,41.43297799906],[-71.716366,41.43305399906],[-71.716502,41.43338599906],[-71.716621,41.43359099906],[-71.716716,41.43372199906],[-71.716794,41.43385099906],[-71.716844,41.43398199906],[-71.716841,41.43406399906],[-71.716823,41.43412499906],[-71.716775,41.43417199906],[-71.716699,41.43420699906],[-71.716619,41.43423199906],[-71.716534,41.43424699906],[-71.716445,41.43424399906],[-71.716352,41.43422399906],[-71.71616,41.43417499906],[-71.715887,41.43408199906],[-71.715776,41.43405199906],[-71.71566,41.43402599906],[-71.715301,41.43396099906],[-71.715191,41.43393399906],[-71.715107,41.43389899906],[-71.714969,41.43381599906],[-71.714897,41.43379099906],[-71.714806,41.43377099906],[-71.714683,41.43375299906],[-71.714559,41.43374299906],[-71.714438,41.43376099906],[-71.714179,41.43382799906],[-71.714051,41.43386499906],[-71.71384,41.43390599906],[-71.713622,41.43393099906],[-71.713383,41.43394199906],[-71.713305,41.43394999906],[-71.713096,41.43398199906],[-71.712953,41.43399999906],[-71.712728,41.43404099906],[-71.712408,41.43408999906],[-71.712214,41.43412799906],[-71.71203,41.43416899906],[-71.71196,41.43418099906],[-71.711786,41.43425899906],[-71.711617,41.43430099906],[-71.711564,41.43431899906],[-71.71145,41.43436399906],[-71.711285,41.43444699906],[-71.71112,41.43454499906],[-71.71075,41.43471999906],[-71.71067,41.43474599906],[-71.710412,41.43477899906],[-71.710138,41.43481899906],[-71.710031,41.43482299906],[-71.709866,41.43482199906],[-71.709785,41.43480999906],[-71.709713,41.43478699906],[-71.709528,41.43474999906],[-71.709465,41.43471999906],[-71.709409,41.43467599906],[-71.70926,41.43458699906],[-71.709206,41.43452099906],[-71.709183,41.43446699906],[-71.709142,41.43440499906],[-71.709075,41.43435599906],[-71.709002,41.43431299906],[-71.708923,41.43427299906],[-71.708833,41.43424899906],[-71.708747,41.43425699906],[-71.708681,41.43429799906],[-71.708644,41.43436999906],[-71.708636,41.43444299906],[-71.708675,41.43450399906],[-71.708747,41.43456999906],[-71.708791,41.43462099906],[-71.708894,41.43471599906],[-71.709004,41.43480199906],[-71.709118,41.43490399906],[-71.709172,41.43496499906],[-71.709202,41.43502399906],[-71.709187,41.43509299906],[-71.709133,41.43523499906],[-71.709085,41.43528699906],[-71.70902,41.43534299906],[-71.708848,41.43542499906],[-71.708775,41.43544999906],[-71.708627,41.43548599906],[-71.708586,41.43549199906],[-71.708386,41.43549999906],[-71.708281,41.43549899906],[-71.708175,41.43549199906],[-71.707872,41.43546099906],[-71.707776,41.43544599906],[-71.707683,41.43542399906],[-71.707506,41.43539199906],[-71.70742,41.43536899906],[-71.707151,41.43528099906],[-71.707077,41.43524799906],[-71.706933,41.43517199906],[-71.706806,41.43506899906],[-71.706746,41.43500899906],[-71.706693,41.43494799906],[-71.706526,41.43477799906],[-71.706421,41.43463999906],[-71.706301,41.43450499906],[-71.706079,41.43424299906],[-71.70603,41.43417599906],[-71.705946,41.43402899906],[-71.705799,41.43375499906],[-71.705759,41.43369799906],[-71.705713,41.43364799906],[-71.705633,41.43353599906],[-71.705554,41.43346899906],[-71.705525,41.43344199906],[-71.705392,41.43331799906],[-71.705291,41.43320999906],[-71.705232,41.43315399906],[-71.705169,41.43310199906],[-71.705023,41.43300299906],[-71.704937,41.43295999906],[-71.704762,41.43288499906],[-71.704321,41.43274699906],[-71.704158,41.43268799906],[-71.70399,41.43261399906],[-71.70395,41.43260599906],[-71.703757,41.43253499906],[-71.703661,41.43248499906],[-71.703562,41.43245599906],[-71.703487,41.43242499906],[-71.70342,41.43237699906],[-71.703311,41.43231599906],[-71.703209,41.43224799906],[-71.70312,41.43217599906],[-71.703045,41.43212199906],[-71.703003,41.43207699906],[-71.703005,41.43200799906],[-71.703078,41.43199599906],[-71.703208,41.43202499906],[-71.703325,41.43205699906],[-71.70342,41.43206499906],[-71.703492,41.43198899906],[-71.703424,41.43191699906],[-71.70331,41.43181899906],[-71.703245,41.43177899906],[-71.703173,41.43175099906],[-71.703095,41.43173799906],[-71.703012,41.43174599906],[-71.702936,41.43177399906],[-71.702873,41.43181899906],[-71.70275,41.43191899906],[-71.702686,41.43195299906],[-71.702527,41.43200799906],[-71.702414,41.43206499906],[-71.702297,41.43220599906],[-71.702295,41.43226599906],[-71.702281,41.43232299906],[-71.70223,41.43235499906],[-71.702141,41.43235499906],[-71.702055,41.43232999906],[-71.701988,41.43228399906],[-71.701839,41.43214499906],[-71.701762,41.43200999906],[-71.701713,41.43194599906],[-71.701655,41.43188199906],[-71.701532,41.43176199906],[-71.701429,41.43161199906],[-71.701392,41.43153599906],[-71.701318,41.43140599906],[-71.701305,41.43133799906],[-71.701342,41.43131499906],[-71.701424,41.43133299906],[-71.701507,41.43134299906],[-71.701556,41.43129099906],[-71.701593,41.43120399906],[-71.701618,41.43111899906],[-71.701636,41.43095699906],[-71.701671,41.43090199906],[-71.701731,41.43086399906],[-71.701765,41.43085799906],[-71.701795,41.43087099906],[-71.701818,41.43094499906],[-71.701789,41.43103599906],[-71.70175,41.43112599906],[-71.701728,41.43121499906],[-71.701726,41.43146599906],[-71.701754,41.43162799906],[-71.701788,41.43168999906],[-71.701841,41.43172299906],[-71.701868,41.43168299906],[-71.70188,41.43141099906],[-71.701903,41.43131299906],[-71.70193,41.43123899906],[-71.70196,41.43117299906],[-71.702005,41.43112899906],[-71.702073,41.43107299906],[-71.702109,41.43101199906],[-71.702133,41.43092899906],[-71.702116,41.43082499906],[-71.702093,41.43077099906],[-71.702006,41.43062899906],[-71.701946,41.43054999906],[-71.701881,41.43048299906],[-71.701802,41.43043599906],[-71.701716,41.43039799906],[-71.701618,41.43038799906],[-71.701477,41.43042099906],[-71.701438,41.43050299906],[-71.701428,41.43057399906],[-71.701384,41.43064599906],[-71.701321,41.43067299906],[-71.701262,41.43069299906],[-71.701182,41.43073499906],[-71.700941,41.43081599906],[-71.700738,41.43087199906],[-71.700613,41.43088399906],[-71.700371,41.43087599906],[-71.700281,41.43084899906],[-71.700236,41.43079299906],[-71.700238,41.43075999906],[-71.700254,41.43073399906],[-71.700205,41.43067199906],[-71.700121,41.43061299906],[-71.70006,41.43054799906],[-71.700019,41.43047599906],[-71.699969,41.43041599906],[-71.699916,41.43036199906],[-71.699849,41.43034299906],[-71.699778,41.43036799906],[-71.699735,41.43043099906],[-71.699728,41.43044099906],[-71.699726,41.43046099906],[-71.699718,41.43053599906],[-71.699737,41.43059199906],[-71.699819,41.43073299906],[-71.69986,41.43082499906],[-71.699871,41.43092299906],[-71.699848,41.43102099906],[-71.699755,41.43134399906],[-71.699711,41.43143199906],[-71.699655,41.43152099906],[-71.699593,41.43160799906],[-71.699459,41.43177499906],[-71.69938,41.43184599906],[-71.699289,41.43190699906],[-71.69908,41.43202899906],[-71.698975,41.43209599906],[-71.698873,41.43216399906],[-71.698669,41.43227699906],[-71.698558,41.43234499906],[-71.698386,41.43246499906],[-71.698209,41.43255099906],[-71.698083,41.43259599906],[-71.697882,41.43265899906],[-71.697681,41.43273499906],[-71.697259,41.43287599906],[-71.69706,41.43295299906],[-71.696988,41.43297399906],[-71.696913,41.43298699906],[-71.69684,41.43299199906],[-71.696698,41.43299199906],[-71.696624,41.43298799906],[-71.696387,41.43296299906],[-71.696257,41.43293299906],[-71.696155,41.43291599906],[-71.696094,41.43292599906],[-71.696078,41.43297899906],[-71.69605,41.43301199906],[-71.696007,41.43303099906],[-71.695895,41.43302199906],[-71.695777,41.43298899906],[-71.695667,41.43296599906],[-71.695588,41.43295999906],[-71.695414,41.43293199906],[-71.695159,41.43291299906],[-71.695049,41.43289999906],[-71.695032,41.43287599906],[-71.695047,41.43284999906],[-71.695141,41.43282899906],[-71.695461,41.43283899906],[-71.695577,41.43285399906],[-71.695672,41.43287399906],[-71.695762,41.43286699906],[-71.695838,41.43284599906],[-71.695858,41.43282199906],[-71.695754,41.43277899906],[-71.695649,41.43274299906],[-71.695529,41.43271899906],[-71.695314,41.43268799906],[-71.695235,41.43268299906],[-71.695069,41.43268199906],[-71.694992,41.43268499906],[-71.694919,41.43269299906],[-71.694797,41.43272099906],[-71.694719,41.43274599906],[-71.694671,41.43279099906],[-71.694675,41.43284999906],[-71.694664,41.43291599906],[-71.694575,41.43296199906],[-71.694512,41.43294899906],[-71.694445,41.43291199906],[-71.694374,41.43288099906],[-71.694296,41.43288699906],[-71.694202,41.43290999906],[-71.694152,41.43293999906],[-71.694031,41.43301199906],[-71.693972,41.43306599906],[-71.693946,41.43312499906],[-71.693882,41.43344099906],[-71.693909,41.43352699906],[-71.69393,41.43362099906],[-71.693772,41.43371899906],[-71.693622,41.43369899906],[-71.69348,41.43364799906],[-71.693293,41.43366799906],[-71.693239,41.43367599906],[-71.693154,41.43369099906],[-71.692873,41.43384099906],[-71.692731,41.43387999906],[-71.692616,41.43391299906],[-71.69254,41.43392999906],[-71.692256,41.43394299906],[-71.692045,41.43395899906],[-71.691971,41.43396099906],[-71.691805,41.43395799906],[-71.691614,41.43392899906],[-71.6915,41.43390399906],[-71.691401,41.43387199906],[-71.691314,41.43383799906],[-71.691251,41.43380799906],[-71.691456,41.43382999906],[-71.691597,41.43386399906],[-71.691761,41.43387999906],[-71.691885,41.43387099906],[-71.691976,41.43384099906],[-71.692084,41.43382999906],[-71.692223,41.43383199906],[-71.692299,41.43382599906],[-71.692373,41.43381299906],[-71.692642,41.43373599906],[-71.692689,41.43368699906],[-71.6927,41.43362099906],[-71.692649,41.43358099906],[-71.692427,41.43348999906],[-71.692321,41.43344199906],[-71.69222,41.43340399906],[-71.692143,41.43335199906],[-71.692083,41.43329399906],[-71.692058,41.43323599906],[-71.692088,41.43317999906],[-71.69215,41.43311899906],[-71.692219,41.43308899906],[-71.692307,41.43312699906],[-71.692386,41.43318199906],[-71.692473,41.43322999906],[-71.692552,41.43325799906],[-71.692628,41.43326299906],[-71.69266,41.43323599906],[-71.692623,41.43317499906],[-71.692576,41.43310999906],[-71.692529,41.43299799906],[-71.692511,41.43293299906],[-71.692475,41.43287999906],[-71.692143,41.43276999906],[-71.692056,41.43278799906],[-71.691959,41.43281799906],[-71.691852,41.43285699906],[-71.69169,41.43294999906],[-71.691477,41.43304299906],[-71.691269,41.43313999906],[-71.691076,41.43324599906],[-71.691008,41.43327799906],[-71.690856,41.43333799906],[-71.69071,41.43340399906],[-71.690406,41.43352399906],[-71.69022,41.43358899906],[-71.690127,41.43362699906],[-71.68995,41.43371399906],[-71.689693,41.43381999906],[-71.689398,41.43395399906],[-71.68933,41.43399099906],[-71.68915,41.43410899906],[-71.689044,41.43419599906],[-71.688839,41.43432499906],[-71.688563,41.43452799906],[-71.688368,41.43465199906],[-71.688315,41.43469199906],[-71.688132,41.43485599906],[-71.688081,41.43489599906],[-71.687926,41.43500399906],[-71.687841,41.43507499906],[-71.687757,41.43511199906],[-71.687743,41.43509599906],[-71.687906,41.43488799906],[-71.687952,41.43483699906],[-71.688017,41.43477599906],[-71.68802,41.43473999906],[-71.687964,41.43466699906],[-71.687917,41.43459599906],[-71.687832,41.43453599906],[-71.687892,41.43449499906],[-71.687969,41.43445599906],[-71.688022,41.43447699906],[-71.688075,41.43453799906],[-71.688137,41.43457299906],[-71.688159,41.43457099906],[-71.688265,41.43445399906],[-71.688374,41.43436499906],[-71.688462,41.43429999906],[-71.688529,41.43424299906],[-71.688546,41.43418499906],[-71.688519,41.43411599906],[-71.688506,41.43406199906],[-71.688508,41.43400099906],[-71.6886,41.43398299906],[-71.688675,41.43394299906],[-71.688684,41.43389999906],[-71.688626,41.43386299906],[-71.688494,41.43383799906],[-71.688487,41.43380699906],[-71.688511,41.43376499906],[-71.688559,41.43373299906],[-71.688692,41.43371399906],[-71.688842,41.43370799906],[-71.688955,41.43369599906],[-71.689036,41.43369299906],[-71.689129,41.43367599906],[-71.68938,41.43367399906],[-71.689475,41.43365699906],[-71.689479,41.43363399906],[-71.689396,41.43359599906],[-71.689155,41.43357599906],[-71.689029,41.43357099906],[-71.688912,41.43358799906],[-71.68881,41.43358799906],[-71.688727,41.43358299906],[-71.688659,41.43355699906],[-71.688493,41.43353199906],[-71.688405,41.43355399906],[-71.688314,41.43360099906],[-71.688228,41.43367099906],[-71.688151,41.43376099906],[-71.687984,41.43392899906],[-71.687792,41.43418599906],[-71.687632,41.43434699906],[-71.687531,41.43442099906],[-71.687312,41.43451899906],[-71.687113,41.43461999906],[-71.687007,41.43462999906],[-71.68692,41.43463099906],[-71.686865,41.43462099906],[-71.686792,41.43456699906],[-71.686713,41.43452599906],[-71.686613,41.43448099906],[-71.686501,41.43443999906],[-71.686395,41.43440699906],[-71.686279,41.43439899906],[-71.686147,41.43440499906],[-71.686015,41.43442899906],[-71.68576,41.43451799906],[-71.68555,41.43461999906],[-71.685479,41.43466399906],[-71.685409,41.43469799906],[-71.685342,41.43473699906],[-71.685298,41.43479899906],[-71.685285,41.43486199906],[-71.685295,41.43498399906],[-71.685349,41.43512199906],[-71.685401,41.43531799906],[-71.685438,41.43538599906],[-71.685559,41.43556999906],[-71.68571,41.43574199906],[-71.685813,41.43583799906],[-71.685952,41.43601199906],[-71.686057,41.43612299906],[-71.686102,41.43617899906],[-71.686177,41.43629299906],[-71.68626,41.43638399906],[-71.686317,41.43647599906],[-71.686369,41.43654999906],[-71.686406,41.43662999906],[-71.686409,41.43672399906],[-71.686431,41.43681999906],[-71.686461,41.43690199906],[-71.68647,41.43697099906],[-71.686442,41.43704799906],[-71.686393,41.43711999906],[-71.686365,41.43713999906],[-71.686323,41.43712399906],[-71.686199,41.43707299906],[-71.686077,41.43708099906],[-71.685961,41.43712899906],[-71.685901,41.43716199906],[-71.685783,41.43723999906],[-71.685716,41.43727499906],[-71.685484,41.43738299906],[-71.685419,41.43742099906],[-71.685366,41.43745999906],[-71.685291,41.43755199906],[-71.685266,41.43760599906],[-71.685252,41.43765999906],[-71.68525,41.43788099906],[-71.685305,41.43804499906],[-71.685331,41.43821799906],[-71.685333,41.43834299906],[-71.685339,41.43840099906],[-71.68537,41.43850199906],[-71.685371,41.43851699906],[-71.685372,41.43853599906],[-71.685374,41.43855599906],[-71.685381,41.43871699906],[-71.68539,41.43877299906],[-71.68542,41.43888299906],[-71.685421,41.43893799906],[-71.685411,41.43899199906],[-71.685394,41.43904599906],[-71.685328,41.43919399906],[-71.68528,41.43928099906],[-71.685092,41.43956299906],[-71.684896,41.43979999906],[-71.684842,41.43984199906],[-71.684793,41.43982899906],[-71.684759,41.43977699906],[-71.684738,41.43970099906],[-71.684735,41.43964999906],[-71.684814,41.43958599906],[-71.684978,41.43941899906],[-71.684973,41.43939599906],[-71.684892,41.43937099906],[-71.684766,41.43938699906],[-71.684634,41.43941699906],[-71.684515,41.43944899906],[-71.68441,41.43949999906],[-71.684306,41.43955999906],[-71.684217,41.43961699906],[-71.684142,41.43968799906],[-71.68409,41.43978199906],[-71.683969,41.43996099906],[-71.6839,41.44004199906],[-71.683809,41.44018899906],[-71.683702,41.44033999906],[-71.683444,41.44064399906],[-71.683409,41.44070599906],[-71.683289,41.44084699906],[-71.683105,41.44104799906],[-71.682983,41.44114799906],[-71.682873,41.44119099906],[-71.682754,41.44127199906],[-71.682435,41.44157199906],[-71.682241,41.44182399906],[-71.682128,41.44192999906],[-71.682065,41.44203199906],[-71.681997,41.44217299906],[-71.68194,41.44227499906],[-71.68167,41.44256699906],[-71.681546,41.44270799906],[-71.681287,41.44298199906],[-71.681202,41.44309299906],[-71.681103,41.44334199906],[-71.681094,41.44351099906],[-71.681077,41.44363799906],[-71.681011,41.44381499906],[-71.680983,41.44393899906],[-71.680979,41.44410599906],[-71.681007,41.44442699906],[-71.681013,41.44455799906],[-71.68105,41.44480799906],[-71.681078,41.44494599906],[-71.681117,41.44506499906],[-71.681181,41.44552299906],[-71.68119,41.44570399906],[-71.681179,41.44586399906],[-71.681129,41.44604599906],[-71.680992,41.44618199906],[-71.680886,41.44627499906],[-71.680758,41.44639699906],[-71.680604,41.44650399906],[-71.680461,41.44655699906],[-71.680309,41.44659699906],[-71.680134,41.44661799906],[-71.679911,41.44668299906],[-71.679692,41.44676999906],[-71.679549,41.44685399906],[-71.679475,41.44694299906],[-71.679397,41.44707499906],[-71.67931,41.44718699906],[-71.678909,41.44750199906],[-71.678791,41.44757499906],[-71.678481,41.44770999906],[-71.678366,41.44778299906],[-71.678196,41.44785999906],[-71.67786,41.44799899906],[-71.677586,41.44816999906],[-71.677488,41.44825799906],[-71.677384,41.44833399906],[-71.677243,41.44839099906],[-71.677198,41.44842899906],[-71.677147,41.44853599906],[-71.677085,41.44864299906],[-71.676977,41.44876299906],[-71.676942,41.44883899906],[-71.676877,41.44898299906],[-71.676803,41.44910099906],[-71.676785,41.44918599906],[-71.676779,41.44932599906],[-71.676764,41.44945899906],[-71.676695,41.44952599906],[-71.676664,41.44957899906],[-71.676655,41.44971399906],[-71.676654,41.44983099906],[-71.67668,41.44993099906],[-71.676726,41.45005199906],[-71.676731,41.45045599906],[-71.67673,41.45057099906],[-71.676719,41.45068499906],[-71.676693,41.45079799906],[-71.676629,41.45096499906],[-71.676599,41.45108599906],[-71.676586,41.45125699906],[-71.676552,41.45137199906],[-71.676531,41.45154499906],[-71.67653,41.45165399906],[-71.676562,41.45177499906],[-71.676582,41.45188699906],[-71.676579,41.45205399906],[-71.67644,41.45234099906],[-71.676403,41.45245299906],[-71.676329,41.45252399906],[-71.676265,41.45264999906],[-71.676107,41.45279699906],[-71.675976,41.45289899906],[-71.675826,41.45296999906],[-71.675729,41.45305499906],[-71.675481,41.45321699906],[-71.675386,41.45330199906],[-71.675213,41.45354099906],[-71.67517,41.45365099906],[-71.675112,41.45376199906],[-71.675085,41.45387999906],[-71.675035,41.45402899906],[-71.674959,41.45414399906],[-71.674866,41.45431899906],[-71.674798,41.45441899906],[-71.674712,41.45451999906],[-71.67464,41.45461399906],[-71.674597,41.45474399906],[-71.674538,41.45498899906],[-71.674518,41.45539899906],[-71.674469,41.45555399906],[-71.674433,41.45571299906],[-71.6744,41.45595699906],[-71.674296,41.45627599906],[-71.674279,41.45642699906],[-71.674275,41.45674799906],[-71.674284,41.45693099906],[-71.674323,41.45703399906],[-71.6744,41.45713299906],[-71.674509,41.45743599906],[-71.674527,41.45754899906],[-71.674525,41.45768299906],[-71.674494,41.45782499906],[-71.674437,41.45796699906],[-71.674343,41.45807799906],[-71.674228,41.45817299906],[-71.674119,41.45825599906],[-71.674007,41.45838999906],[-71.673862,41.45854299906],[-71.673634,41.45870499906],[-71.673507,41.45883899906],[-71.673293,41.45902599906],[-71.673193,41.45911999906],[-71.673085,41.45923399906],[-71.673038,41.45928999906],[-71.672994,41.45930899906],[-71.672908,41.45934699906],[-71.672769,41.45937299906],[-71.672745,41.45940599906],[-71.672675,41.45956899906],[-71.672595,41.45967699906],[-71.672531,41.45978199906],[-71.672516,41.45987899906],[-71.672519,41.46017499906],[-71.6725,41.46028299906],[-71.672465,41.46039899906],[-71.672305,41.46064099906],[-71.672168,41.46074099906],[-71.672046,41.46080699906],[-71.671882,41.46088899906],[-71.671716,41.46108799906],[-71.671683,41.46111899906],[-71.671528,41.46112799906],[-71.67135,41.46115299906],[-71.671361,41.46124299906],[-71.670819,41.46124599906],[-71.670701,41.46124099906],[-71.670653,41.46113299906],[-71.670651,41.46100599906],[-71.670531,41.46098299906],[-71.670376,41.46097799906],[-71.670216,41.46096299906],[-71.670047,41.46091499906],[-71.669896,41.46087899906],[-71.669747,41.46085999906],[-71.669568,41.46081999906],[-71.669478,41.46078299906],[-71.669317,41.46070799906],[-71.66916,41.46066399906],[-71.669002,41.46061099906],[-71.668828,41.46054199906],[-71.668668,41.46050299906],[-71.668527,41.46047699906],[-71.668539,41.46043599906],[-71.668492,41.46034899906],[-71.668353,41.46027199906],[-71.668283,41.46028099906],[-71.668264,41.46035799906],[-71.668124,41.46039499906],[-71.668097,41.46038199906],[-71.668008,41.46035899906],[-71.667891,41.46030699906],[-71.667776,41.46023599906],[-71.667502,41.46011599906],[-71.667398,41.46003999906],[-71.667278,41.45994199906],[-71.667147,41.45991999906],[-71.666992,41.45980199906],[-71.666883,41.45972799906],[-71.666773,41.45964399906],[-71.666526,41.45948999906],[-71.666277,41.45936299906],[-71.666141,41.45931299906],[-71.665988,41.45926799906],[-71.665829,41.45920299906],[-71.665683,41.45913599906],[-71.665368,41.45895799906],[-71.664997,41.45876099906],[-71.664873,41.45868099906],[-71.664726,41.45859399906],[-71.664608,41.45851799906],[-71.66447,41.45844699906],[-71.66434,41.45841799906],[-71.664152,41.45841299906],[-71.664003,41.45839999906],[-71.663841,41.45839299906],[-71.663687,41.45840599906],[-71.663612,41.45842399906],[-71.66375,41.45877199906],[-71.663774,41.45887999906],[-71.663786,41.45895399906],[-71.663799,41.45913999906],[-71.663789,41.45931799906],[-71.663776,41.45941499906],[-71.663761,41.45948199906],[-71.663734,41.45955999906],[-71.663673,41.45970499906],[-71.663361,41.46032999906],[-71.662827,41.46140299906],[-71.662201,41.46261999906],[-71.661911,41.46317299906],[-71.661613,41.46377599906],[-71.661606,41.46380999906],[-71.661606,41.46392099906],[-71.661613,41.46395899906],[-71.661644,41.46404299906],[-71.661682,41.46413799906],[-71.662079,41.46509899906],[-71.662491,41.46611799906],[-71.662766,41.46676599906],[-71.66291,41.46714199906],[-71.662933,41.46720099906],[-71.663063,41.46752899906],[-71.663277,41.46803999906],[-71.663597,41.46882499906],[-71.663826,41.46938699906],[-71.664223,41.47034099906],[-71.664291,41.47051999906],[-71.664345,41.47069199906],[-71.664365,41.47077899906],[-71.664375,41.47082099906],[-71.664383,41.47088199906],[-71.664383,41.47093699906],[-71.664374,41.47108699906],[-71.66436,41.47120299906],[-71.664215,41.47181699906],[-71.664157,41.47226699906],[-71.664101,41.47270199906],[-71.66404,41.47325099906],[-71.66394,41.47397999906],[-71.663895,41.47421699906],[-71.663788,41.47477499906],[-71.663729,41.47507999906],[-71.663712,41.47517399906],[-71.663574,41.47614699906],[-71.663559,41.47630299906],[-71.663467,41.47690599906],[-71.663376,41.47729899906],[-71.663338,41.47742099906],[-71.663261,41.47763399906],[-71.662941,41.47839399906],[-71.662315,41.47978899906],[-71.662277,41.47987399906],[-71.662102,41.48032799906],[-71.661842,41.48095299906],[-71.661762,41.48113899906],[-71.661684,41.48131699906],[-71.661537,41.48165899906],[-71.661186,41.48237599906],[-71.661172,41.48240499906],[-71.660896,41.48297099906],[-71.660759,41.48329899906],[-71.660606,41.48371099906],[-71.660576,41.48384899906],[-71.660561,41.48397399906],[-71.660553,41.48409999906],[-71.660553,41.48475299906],[-71.660583,41.48598499906],[-71.66066,41.48643799906],[-71.660665,41.48661199906],[-71.660667,41.48677799906],[-71.66066,41.48690399906],[-71.660604,41.48734399906],[-71.660597,41.48757099906],[-71.660611,41.48782699906],[-71.660622,41.48799899906],[-71.660625,41.48819299906],[-71.660637,41.48844499906],[-71.660652,41.48866999906],[-71.66066,41.48889199906],[-71.660702,41.48921799906],[-71.660724,41.48958799906],[-71.660725,41.48961999906],[-71.660731,41.48979999906],[-71.660728,41.49003999906],[-71.660713,41.49083699906],[-71.660728,41.49126799906],[-71.660759,41.49146699906],[-71.660789,41.49171399906],[-71.660805,41.49190099906],[-71.660812,41.49211499906],[-71.660805,41.49216799906],[-71.660774,41.49242799906],[-71.660749,41.49256399906],[-71.660697,41.49286299906],[-71.660529,41.49370299906],[-71.660492,41.49394599906],[-71.660431,41.49446899906],[-71.660408,41.49470499906],[-71.660402,41.49474199906],[-71.660393,41.49489599906],[-71.660347,41.49573499906],[-71.660286,41.49622699906],[-71.660278,41.49633399906],[-71.66021,41.49692899906],[-71.660151,41.49733599906],[-71.660012,41.49851999906],[-71.659992,41.49869199906],[-71.659981,41.49878299906],[-71.659973,41.49889799906],[-71.659966,41.49897399906],[-71.659935,41.49914199906],[-71.659866,41.49935899906],[-71.659614,41.50024499906],[-71.659549,41.50039199906],[-71.659536,41.50042499906],[-71.660917,41.49999099906],[-71.661209,41.49991199906],[-71.66143,41.49986299906],[-71.661644,41.49983199906],[-71.66185,41.49983199906],[-71.662079,41.49985099906],[-71.66227,41.49989699906],[-71.662804,41.50004599906],[-71.663587,41.50029399906],[-71.664098,41.50043999906],[-71.664518,41.50055799906],[-71.665301,41.50079699906],[-71.665385,41.50082199906],[-71.665569,41.50088099906],[-71.665993,41.50102299906],[-71.666189,41.50108699906],[-71.666344,41.50113599906],[-71.666762,41.50128799906],[-71.667251,41.50142699906],[-71.66754,41.50148699906],[-71.66789,41.50155899906],[-71.668192,41.50161399906],[-71.668633,41.50169199906],[-71.669999,41.50192799906],[-71.671266,41.50216499906],[-71.671905,41.50228099906],[-71.672626,41.50243099906],[-71.673279,41.50255199906],[-71.673744,41.50263199906],[-71.674614,41.50279599906],[-71.675148,41.50290299906],[-71.675453,41.50295599906],[-71.676071,41.50307099906],[-71.676254,41.50310099906],[-71.676303,41.50310999906],[-71.676384,41.50312399906],[-71.677666,41.50337199906],[-71.678107,41.50346299906],[-71.678448,41.50355899906],[-71.678772,41.50367699906],[-71.679024,41.50380299906],[-71.679298,41.50397499906],[-71.679367,41.50402799906],[-71.67968,41.50431099906],[-71.679848,41.50452799906],[-71.679939,41.50465799906],[-71.68,41.50476099906],[-71.680107,41.50496699906],[-71.680176,41.50511199906],[-71.681144,41.50716699906],[-71.681328,41.50755699906],[-71.681488,41.50783199906],[-71.681671,41.50809499906],[-71.68177,41.50822399906],[-71.682014,41.50848399906],[-71.682144,41.50860599906],[-71.682281,41.50871999906],[-71.682571,41.50894199906],[-71.682808,41.50910899906],[-71.683266,41.50941799906],[-71.683632,41.50963999906],[-71.684034,41.50986699906],[-71.686917,41.51128999906],[-71.687136,41.51139899906],[-71.687344,41.51148299906],[-71.687546,41.51155999906],[-71.687734,41.51162399906],[-71.688002,41.51170599906],[-71.688679,41.51184599906],[-71.68927,41.51195499906],[-71.689621,41.51203199906],[-71.689728,41.51202399906],[-71.690605,41.51220699906],[-71.691599,41.51240299906],[-71.691634,41.51240999906],[-71.691689,41.51242199906],[-71.691991,41.51249099906],[-71.692089,41.51251199906],[-71.692264,41.51254699906],[-71.692283,41.51255099906],[-71.692356,41.51256499906],[-71.693138,41.51271399906],[-71.694595,41.51304999906],[-71.694866,41.51311199906],[-71.695045,41.51315599906],[-71.695218,41.51320299906],[-71.695369,41.51324099906],[-71.695427,41.51326799906],[-71.695808,41.51339299906],[-71.696022,41.51346299906],[-71.696774,41.51371099906],[-71.698578,41.51430499906],[-71.699707,41.51467499906],[-71.699944,41.51477099906],[-71.700055,41.51480799906],[-71.70054,41.51495199906],[-71.700967,41.51506699906],[-71.701402,41.51518299906],[-71.701496,41.51520199906],[-71.701637,41.51522999906],[-71.701746,41.51525799906],[-71.701759,41.51531799906],[-71.701782,41.51538099906],[-71.701836,41.51534999906],[-71.701895,41.51532399906],[-71.702204,41.51522699906],[-71.702404,41.51515699906],[-71.702713,41.51506299906],[-71.703455,41.51481299906],[-71.704316,41.51452399906],[-71.7045,41.51445399906],[-71.704689,41.51438299906],[-71.704902,41.51429399906],[-71.70476,41.51419799906],[-71.704697,41.51414799906],[-71.704673,41.51412199906],[-71.704647,41.51409499906],[-71.704612,41.51403599906],[-71.704593,41.51397099906],[-71.704593,41.51390099906],[-71.704615,41.51382799906],[-71.704737,41.51355999906],[-71.704778,41.51344799906],[-71.704805,41.51338999906],[-71.705177,41.51274099906],[-71.705294,41.51258799906],[-71.705449,41.51237299906],[-71.705562,41.51225199906],[-71.705675,41.51214599906],[-71.705748,41.51208999906],[-71.70582,41.51204299906],[-71.705979,41.51195299906],[-71.706134,41.51188299906],[-71.706203,41.51185799906],[-71.706275,41.51183699906],[-71.70635,41.51181999906],[-71.706748,41.51175399906],[-71.706849,41.51173099906],[-71.706946,41.51169699906],[-71.707011,41.51166899906],[-71.707138,41.51160199906],[-71.707452,41.51139899906],[-71.707561,41.51131499906],[-71.707707,41.51118499906],[-71.707764,41.51112099906],[-71.707846,41.51100199906],[-71.707883,41.51093299906],[-71.70791,41.51086399906],[-71.707947,41.51071299906],[-71.707949,41.51063599906],[-71.707938,41.51055799906],[-71.707921,41.51048399906],[-71.707862,41.51036599906],[-71.70787,41.51030199906],[-71.70798,41.51000899906],[-71.707996,41.50995199906],[-71.708005,41.50989599906],[-71.708011,41.50978299906],[-71.708021,41.50972899906],[-71.708043,41.50967399906],[-71.708109,41.50956399906],[-71.708229,41.50940499906],[-71.7083,41.50930199906],[-71.708382,41.50920599906],[-71.708482,41.50912099906],[-71.708652,41.50899899906],[-71.708779,41.50893199906],[-71.70885,41.50890499906],[-71.709152,41.50881699906],[-71.709235,41.50880199906],[-71.709478,41.50877599906],[-71.709552,41.50877199906],[-71.709629,41.50877799906],[-71.709712,41.50878999906],[-71.709868,41.50882099906],[-71.710033,41.50885999906],[-71.710351,41.50896299906],[-71.710487,41.50899499906],[-71.710599,41.50902099906],[-71.710676,41.50903399906],[-71.710753,41.50903599906],[-71.710831,41.50902799906],[-71.710931,41.50900199906],[-71.71102,41.50895799906],[-71.711076,41.50892099906],[-71.711129,41.50887899906],[-71.711325,41.50866999906],[-71.711449,41.50850699906],[-71.711548,41.50833799906],[-71.711573,41.50827699906],[-71.711658,41.50802699906],[-71.711706,41.50796799906],[-71.71187,41.50783799906],[-71.711938,41.50781599906],[-71.71202,41.50781399906],[-71.712098,41.50783299906],[-71.712178,41.50786899906],[-71.712245,41.50790999906],[-71.712289,41.50792999906],[-71.712321,41.50794299906],[-71.712389,41.50793899906],[-71.712445,41.50789299906],[-71.712467,41.50781999906],[-71.71246,41.50776599906],[-71.712431,41.50764899906],[-71.712395,41.50747199906],[-71.712332,41.50722899906],[-71.712248,41.50712999906],[-71.71219,41.50708599906],[-71.712119,41.50706599906],[-71.712041,41.50707399906],[-71.712007,41.50708999906],[-71.71207,41.50713199906],[-71.71211,41.50718899906],[-71.712129,41.50725999906],[-71.712126,41.50733099906],[-71.71208,41.50739799906],[-71.712018,41.50743199906],[-71.711946,41.50743999906],[-71.711867,41.50742399906],[-71.711787,41.50739199906],[-71.711707,41.50734599906],[-71.71164,41.50728399906],[-71.711589,41.50721799906],[-71.711562,41.50715599906],[-71.711557,41.50708499906],[-71.711571,41.50700899906],[-71.711596,41.50693799906],[-71.711659,41.50679699906],[-71.71176,41.50648999906],[-71.711786,41.50635199906],[-71.711786,41.50629499906],[-71.711768,41.50621999906],[-71.71174,41.50616799906],[-71.711695,41.50611799906],[-71.711671,41.50605299906],[-71.711665,41.50597299906],[-71.711648,41.50591399906],[-71.711616,41.50586199906],[-71.711562,41.50582199906],[-71.711523,41.50586999906],[-71.711504,41.50592999906],[-71.711487,41.50606399906],[-71.711472,41.50613299906],[-71.711444,41.50620099906],[-71.711404,41.50625799906],[-71.711353,41.50627499906],[-71.711304,41.50624199906],[-71.711275,41.50616399906],[-71.711264,41.50608199906],[-71.711254,41.50592599906],[-71.711256,41.50585099906],[-71.711268,41.50578699906],[-71.711302,41.50572699906],[-71.71136,41.50566699906],[-71.711426,41.50561499906],[-71.711666,41.50544699906],[-71.711708,41.50539899906],[-71.711809,41.50524799906],[-71.711911,41.50511199906],[-71.711938,41.50504599906],[-71.711939,41.50496899906],[-71.711889,41.50483999906],[-71.711887,41.50478199906],[-71.711901,41.50476699906],[-71.712194,41.50487399906],[-71.712943,41.50464499906],[-71.713906,41.50437399906],[-71.71427,41.50451899906],[-71.714357,41.50484999906],[-71.715461,41.50479399906],[-71.715645,41.50432899906],[-71.715992,41.50405499906],[-71.716494,41.50312299906],[-71.71646,41.50305499906],[-71.716422,41.50300799906],[-71.716364,41.50289099906],[-71.716325,41.50277899906],[-71.716212,41.50251699906],[-71.716179,41.50240299906],[-71.716169,41.50234799906],[-71.71611,41.50211999906],[-71.716067,41.50201099906],[-71.715967,41.50185399906],[-71.715928,41.50180399906],[-71.715755,41.50161299906],[-71.715578,41.50147099906],[-71.715524,41.50140199906],[-71.715427,41.50124499906],[-71.715403,41.50119199906],[-71.715376,41.50111199906],[-71.715361,41.50104899906],[-71.71536,41.50098599906],[-71.715385,41.50080599906],[-71.715398,41.50074199906],[-71.715446,41.50063199906],[-71.715489,41.50055999906],[-71.715525,41.50051199906],[-71.715592,41.50045299906],[-71.715659,41.50040299906],[-71.715708,41.50033799906],[-71.715783,41.50017399906],[-71.715801,41.50009599906],[-71.715793,41.50001499906],[-71.71578,41.49995499906],[-71.715758,41.49989199906],[-71.715725,41.49983199906],[-71.715435,41.49939799906],[-71.715388,41.49934699906],[-71.715199,41.49921799906],[-71.715151,41.49917199906],[-71.715115,41.49912399906],[-71.715088,41.49906999906],[-71.715006,41.49894799906],[-71.714926,41.49881499906],[-71.714932,41.49880199906],[-71.714933,41.49874599906],[-71.714927,41.49868999906],[-71.714949,41.49862299906],[-71.715013,41.49858099906],[-71.715083,41.49856399906],[-71.715402,41.49856599906],[-71.71551,41.49857599906],[-71.715687,41.49860399906],[-71.715916,41.49866499906],[-71.716017,41.49866899906],[-71.716102,41.49862699906],[-71.71619,41.49859299906],[-71.716255,41.49855699906],[-71.716298,41.49849499906],[-71.716353,41.49838299906],[-71.716388,41.49826499906],[-71.716406,41.49813599906],[-71.716469,41.49784999906],[-71.716553,41.49763899906],[-71.716594,41.49750999906],[-71.716605,41.49744799906],[-71.716664,41.49736699906],[-71.716653,41.49721699906],[-71.716609,41.49704599906],[-71.716523,41.49677399906],[-71.716514,41.49673899906],[-71.716481,41.49668699906],[-71.716422,41.49663499906],[-71.716377,41.49657499906],[-71.716347,41.49651399906],[-71.716303,41.49637899906],[-71.716274,41.49624299906],[-71.716265,41.49616999906],[-71.716254,41.49585699906],[-71.716232,41.49560099906],[-71.716189,41.49532299906],[-71.716156,41.49520099906],[-71.716135,41.49512299906],[-71.716119,41.49506599906],[-71.716099,41.49498999906],[-71.716076,41.49490699906],[-71.71603,41.49480499906],[-71.715998,41.49471399906],[-71.715993,41.49465999906],[-71.715984,41.49456799906],[-71.715967,41.49449099906],[-71.715912,41.49432099906],[-71.715845,41.49416499906],[-71.715832,41.49409699906],[-71.715814,41.49389099906],[-71.715798,41.49381999906],[-71.715758,41.49368499906],[-71.715758,41.49362299906],[-71.715769,41.49356599906],[-71.715753,41.49351099906],[-71.715743,41.49344699906],[-71.715658,41.49332599906],[-71.715625,41.49317699906],[-71.715553,41.49300599906],[-71.715511,41.49292399906],[-71.715474,41.49283299906],[-71.715445,41.49273299906],[-71.715403,41.49253799906],[-71.715369,41.49234199906],[-71.71536,41.49217399906],[-71.715333,41.49193999906],[-71.715338,41.49176599906],[-71.715348,41.49170799906],[-71.715381,41.49158799906],[-71.715439,41.49141199906],[-71.715502,41.49122699906],[-71.71558,41.49107399906],[-71.715717,41.49083599906],[-71.715862,41.49059799906],[-71.715958,41.49044999906],[-71.71603,41.49031099906],[-71.716086,41.49017299906],[-71.71615,41.48999299906],[-71.716207,41.48984899906],[-71.716209,41.48978799906],[-71.716251,41.48964299906],[-71.716274,41.48952099906],[-71.716313,41.48922199906],[-71.716318,41.48894099906],[-71.71634,41.48886899906],[-71.716446,41.48874999906],[-71.716489,41.48869299906],[-71.716517,41.48863299906],[-71.716531,41.48857199906],[-71.716538,41.48851099906],[-71.716541,41.48838499906],[-71.716548,41.48832099906],[-71.716572,41.48826399906],[-71.716748,41.48803599906],[-71.71679,41.48797099906],[-71.716854,41.48783999906],[-71.7169,41.48778999906],[-71.716959,41.48775099906],[-71.717038,41.48772499906],[-71.717104,41.48767499906],[-71.717187,41.48756499906],[-71.717239,41.48741999906],[-71.717283,41.48737099906],[-71.717352,41.48732699906],[-71.717417,41.48735899906],[-71.717488,41.48733599906],[-71.717543,41.48728299906],[-71.71772,41.48706099906],[-71.717768,41.48698399906],[-71.717808,41.48690499906],[-71.717841,41.48682699906],[-71.71786,41.48674899906],[-71.717891,41.48651199906],[-71.717893,41.48643099906],[-71.717889,41.48635399906],[-71.717863,41.48620299906],[-71.717849,41.48603599906],[-71.717838,41.48596099906],[-71.717758,41.48564099906],[-71.717704,41.48547499906],[-71.717494,41.48492699906],[-71.717458,41.48485299906],[-71.717415,41.48478599906],[-71.71727,41.48459899906],[-71.717205,41.48455199906],[-71.717124,41.48451299906],[-71.717037,41.48447899906],[-71.716861,41.48442499906],[-71.71677,41.48441599906],[-71.71667,41.48442999906],[-71.716572,41.48445699906],[-71.716476,41.48449099906],[-71.716289,41.48457999906],[-71.715997,41.48469399906],[-71.715894,41.48472899906],[-71.715788,41.48475799906],[-71.71568,41.48477799906],[-71.715575,41.48478999906],[-71.715363,41.48480399906],[-71.715044,41.48484199906],[-71.714595,41.48490699906],[-71.71449,41.48491599906],[-71.714387,41.48491299906],[-71.713922,41.48485599906],[-71.713541,41.48479699906],[-71.71309,41.48473299906],[-71.712922,41.48471499906],[-71.712588,41.48468599906],[-71.712472,41.48466599906],[-71.712388,41.48464099906],[-71.712362,41.48462899906],[-71.712325,41.48461199906],[-71.71226,41.48456199906],[-71.712218,41.48450999906],[-71.712163,41.48440799906],[-71.712158,41.48434399906],[-71.712173,41.48427199906],[-71.712211,41.48419399906],[-71.71225,41.48413999906],[-71.712298,41.48409099906],[-71.712354,41.48404899906],[-71.712418,41.48401399906],[-71.712488,41.48398499906],[-71.712568,41.48396199906],[-71.71266,41.48395399906],[-71.712846,41.48397999906],[-71.71295,41.48397599906],[-71.713075,41.48396099906],[-71.713195,41.48393699906],[-71.71329,41.48389699906],[-71.713373,41.48385499906],[-71.713457,41.48382199906],[-71.713553,41.48380099906],[-71.713652,41.48379099906],[-71.713932,41.48378099906],[-71.714252,41.48378299906],[-71.714338,41.48377599906],[-71.714418,41.48374499906],[-71.714503,41.48369999906],[-71.714583,41.48364999906],[-71.71465,41.48359599906],[-71.714702,41.48354099906],[-71.714744,41.48348399906],[-71.714777,41.48342399906],[-71.714867,41.48316599906],[-71.714881,41.48310199906],[-71.714886,41.48303699906],[-71.714914,41.48297299906],[-71.71495,41.48291299906],[-71.714975,41.48285599906],[-71.714992,41.48279399906],[-71.715,41.48265399906],[-71.714999,41.48258199906],[-71.714965,41.48251699906],[-71.714941,41.48244299906],[-71.714959,41.48226899906],[-71.714962,41.48218899906],[-71.714978,41.48203599906],[-71.714977,41.48194999906],[-71.714954,41.48167199906],[-71.714922,41.48145799906],[-71.714868,41.48127999906],[-71.714832,41.48117999906],[-71.714782,41.48108299906],[-71.714563,41.48071999906],[-71.714499,41.48063199906],[-71.714408,41.48048399906],[-71.714299,41.48028799906],[-71.714199,41.48013399906],[-71.714168,41.48006999906],[-71.714155,41.48000599906],[-71.714129,41.47993199906],[-71.714117,41.47986899906],[-71.714131,41.47981299906],[-71.714181,41.47975699906],[-71.714268,41.47971199906],[-71.714346,41.47965699906],[-71.714379,41.47960499906],[-71.714398,41.47953699906],[-71.714413,41.47945199906],[-71.714419,41.47926599906],[-71.714409,41.47918399906],[-71.714383,41.47910699906],[-71.714309,41.47895599906],[-71.714266,41.47889899906],[-71.714209,41.47884899906],[-71.714116,41.47875699906],[-71.714002,41.47866099906],[-71.713941,41.47862099906],[-71.713879,41.47857199906],[-71.713817,41.47851199906],[-71.713758,41.47844199906],[-71.713702,41.47836599906],[-71.713581,41.47815099906],[-71.713565,41.47808999906],[-71.713568,41.47803199906],[-71.713592,41.47790299906],[-71.713638,41.47784599906],[-71.713721,41.47779899906],[-71.713825,41.47778199906],[-71.714051,41.47778999906],[-71.714168,41.47777899906],[-71.714287,41.47776199906],[-71.714396,41.47776599906],[-71.71449,41.47779099906],[-71.714578,41.47782999906],[-71.714653,41.47787599906],[-71.714761,41.47796699906],[-71.714879,41.47804399906],[-71.714944,41.47806999906],[-71.715019,41.47807899906],[-71.715107,41.47807799906],[-71.715204,41.47806899906],[-71.715307,41.47804499906],[-71.715406,41.47801099906],[-71.715501,41.47796799906],[-71.715791,41.47782499906],[-71.715876,41.47777599906],[-71.715948,41.47772299906],[-71.716011,41.47766999906],[-71.716135,41.47757699906],[-71.716189,41.47753099906],[-71.716312,41.47739199906],[-71.716371,41.47735399906],[-71.716434,41.47732399906],[-71.716515,41.47729599906],[-71.716545,41.47729199906],[-71.716489,41.47743699906],[-71.716463,41.47753499906],[-71.716435,41.47771499906],[-71.716399,41.47787299906],[-71.716391,41.47793599906],[-71.71642,41.47800199906],[-71.716488,41.47803799906],[-71.716576,41.47802399906],[-71.71665,41.47796999906],[-71.716739,41.47792799906],[-71.71679,41.47787799906],[-71.716822,41.47781499906],[-71.716827,41.47774799906],[-71.716802,41.47761299906],[-71.7168,41.47754199906],[-71.716816,41.47746899906],[-71.716839,41.47739499906],[-71.716856,41.47731899906],[-71.716869,41.47696999906],[-71.71686,41.47689299906],[-71.716821,41.47673999906],[-71.716793,41.47666199906],[-71.716755,41.47658899906],[-71.716708,41.47651799906],[-71.71665,41.47644699906],[-71.716529,41.47631699906],[-71.716479,41.47624799906],[-71.716433,41.47617399906],[-71.716377,41.47610099906],[-71.716244,41.47595499906],[-71.716121,41.47580199906],[-71.716101,41.47577099906],[-71.716075,41.47572999906],[-71.715977,41.47553999906],[-71.715956,41.47548599906],[-71.715872,41.47521799906],[-71.71586,41.47516099906],[-71.715865,41.47510499906],[-71.715881,41.47504499906],[-71.715925,41.47498899906],[-71.715973,41.47494199906],[-71.716061,41.47490599906],[-71.716134,41.47488599906],[-71.716211,41.47487999906],[-71.716287,41.47488999906],[-71.716358,41.47490899906],[-71.71642,41.47493699906],[-71.716599,41.47506399906],[-71.716724,41.47514399906],[-71.716792,41.47517299906],[-71.716877,41.47518899906],[-71.716971,41.47519599906],[-71.717163,41.47519399906],[-71.717246,41.47518299906],[-71.717318,41.47516099906],[-71.717385,41.47512799906],[-71.717511,41.47504799906],[-71.717566,41.47499999906],[-71.717605,41.47494599906],[-71.717632,41.47488999906],[-71.717647,41.47482199906],[-71.717653,41.47474799906],[-71.717652,41.47467299906],[-71.717642,41.47459499906],[-71.717619,41.47451199906],[-71.717589,41.47443099906],[-71.717483,41.47420299906],[-71.717425,41.47398199906],[-71.717405,41.47386799906],[-71.717407,41.47365199906],[-71.717426,41.47342299906],[-71.717444,41.47334199906],[-71.717476,41.47325599906],[-71.717519,41.47316999906],[-71.717576,41.47308999906],[-71.717643,41.47301999906],[-71.717799,41.47290599906],[-71.717871,41.47284799906],[-71.717939,41.47278599906],[-71.718121,41.47258299906],[-71.718267,41.47235999906],[-71.71832,41.47229099906],[-71.718428,41.47216499906],[-71.718531,41.47205399906],[-71.718585,41.47200699906],[-71.718647,41.47196799906],[-71.718713,41.47194099906],[-71.718774,41.47193399906],[-71.718825,41.47196299906],[-71.718836,41.47202799906],[-71.7188,41.47210699906],[-71.718755,41.47218299906],[-71.718738,41.47225999906],[-71.718727,41.47233799906],[-71.71871,41.47241499906],[-71.718676,41.47247599906],[-71.718599,41.47252799906],[-71.718559,41.47257599906],[-71.718561,41.47263699906],[-71.718571,41.47270699906],[-71.71857,41.47277599906],[-71.718596,41.47282399906],[-71.718624,41.47282999906],[-71.718697,41.47279299906],[-71.718776,41.47273699906],[-71.718839,41.47268199906],[-71.718871,41.47261299906],[-71.718878,41.47253099906],[-71.718854,41.47235799906],[-71.718861,41.47227899906],[-71.718875,41.47220999906],[-71.718898,41.47214699906],[-71.718966,41.47203799906],[-71.718967,41.47198299906],[-71.718942,41.47192299906],[-71.718926,41.47185399906],[-71.718937,41.47169899906],[-71.718929,41.47161999906],[-71.718902,41.47154599906],[-71.718834,41.47142599906],[-71.718792,41.47137899906],[-71.718738,41.47133999906],[-71.718679,41.47130499906],[-71.718612,41.47127599906],[-71.718538,41.47125699906],[-71.718458,41.47124999906],[-71.718374,41.47125199906],[-71.718186,41.47124799906],[-71.718,41.47125099906],[-71.717923,41.47124399906],[-71.717831,41.47125499906],[-71.717745,41.47129799906],[-71.717659,41.47132799906],[-71.717577,41.47132799906],[-71.717499,41.47130199906],[-71.717483,41.47125399906],[-71.717541,41.47120999906],[-71.717566,41.47118099906],[-71.71748,41.47104599906],[-71.717422,41.47099399906],[-71.717344,41.47095499906],[-71.717257,41.47091999906],[-71.71716,41.47090199906],[-71.717065,41.47091399906],[-71.716986,41.47094599906],[-71.716934,41.47098699906],[-71.716879,41.47104699906],[-71.71682,41.47108199906],[-71.716746,41.47110299906],[-71.71667,41.47110699906],[-71.716604,41.47109299906],[-71.716555,41.47104299906],[-71.716533,41.47096299906],[-71.716527,41.47087499906],[-71.716535,41.47070399906],[-71.716531,41.47061999906],[-71.716492,41.47031099906],[-71.716492,41.47024799906],[-71.716508,41.47019199906],[-71.716551,41.47012099906],[-71.716613,41.47008199906],[-71.716692,41.47009599906],[-71.716793,41.47005499906],[-71.71697,41.46992899906],[-71.717058,41.46987699906],[-71.717193,41.46981799906],[-71.717294,41.46979799906],[-71.717365,41.46981899906],[-71.71739,41.46989099906],[-71.717446,41.46994399906],[-71.717536,41.46994999906],[-71.717585,41.47000099906],[-71.717631,41.47007399906],[-71.717685,41.47010599906],[-71.71775,41.47009799906],[-71.717808,41.47005399906],[-71.717839,41.46999399906],[-71.717848,41.46992699906],[-71.717914,41.46961999906],[-71.717939,41.46953699906],[-71.71797,41.46946499906],[-71.717985,41.46940299906],[-71.717991,41.46934499906],[-71.718014,41.46926899906],[-71.71812,41.46908399906],[-71.71813,41.46901899906],[-71.718122,41.46894899906],[-71.718075,41.46875599906],[-71.718033,41.46863899906],[-71.717953,41.46848199906],[-71.717914,41.46843499906],[-71.717861,41.46839199906],[-71.717796,41.46834899906],[-71.717633,41.46827999906],[-71.717468,41.46822399906],[-71.717396,41.46819199906],[-71.717347,41.46814699906],[-71.717325,41.46809199906],[-71.717322,41.46803299906],[-71.71733,41.46797699906],[-71.717389,41.46791899906],[-71.717476,41.46789899906],[-71.717537,41.46786899906],[-71.717602,41.46784399906],[-71.717641,41.46786099906],[-71.717632,41.46791499906],[-71.717632,41.46798199906],[-71.717676,41.46803299906],[-71.717739,41.46803199906],[-71.717789,41.46798099906],[-71.717839,41.46786299906],[-71.717892,41.46780999906],[-71.717954,41.46775999906],[-71.718006,41.46770399906],[-71.718043,41.46764699906],[-71.718068,41.46758999906],[-71.718082,41.46753499906],[-71.718083,41.46747999906],[-71.718069,41.46742699906],[-71.71802,41.46735799906],[-71.717959,41.46729299906],[-71.717955,41.46724899906],[-71.718002,41.46721799906],[-71.718061,41.46721899906],[-71.718114,41.46727199906],[-71.718163,41.46732999906],[-71.71821,41.46737499906],[-71.718241,41.46743499906],[-71.718258,41.46750799906],[-71.718253,41.46758199906],[-71.718223,41.46765799906],[-71.718208,41.46773099906],[-71.718224,41.46779799906],[-71.718262,41.46785699906],[-71.718353,41.46795699906],[-71.718389,41.46802399906],[-71.718427,41.46803399906],[-71.718479,41.46796399906],[-71.718505,41.46789699906],[-71.718536,41.46783799906],[-71.718577,41.46778599906],[-71.718627,41.46775199906],[-71.718676,41.46776099906],[-71.718683,41.46783299906],[-71.718668,41.46789899906],[-71.718678,41.46796199906],[-71.718725,41.46798999906],[-71.718794,41.46796099906],[-71.71892,41.46784799906],[-71.718989,41.46781799906],[-71.719049,41.46783599906],[-71.719068,41.46788899906],[-71.719045,41.46796199906],[-71.718977,41.46810199906],[-71.718975,41.46816999906],[-71.718989,41.46822899906],[-71.719024,41.46824299906],[-71.719073,41.46819599906],[-71.719122,41.46812099906],[-71.719164,41.46804499906],[-71.719185,41.46796999906],[-71.71917,41.46782699906],[-71.719179,41.46776199906],[-71.71921,41.46769799906],[-71.719265,41.46763599906],[-71.719415,41.46751399906],[-71.719502,41.46745299906],[-71.719595,41.46739699906],[-71.71978,41.46731299906],[-71.719847,41.46726999906],[-71.719892,41.46721499906],[-71.720182,41.46668099906],[-71.720227,41.46661899906],[-71.720289,41.46656699906],[-71.720453,41.46647599906],[-71.720711,41.46631199906],[-71.720774,41.46625899906],[-71.720824,41.46620199906],[-71.720864,41.46614199906],[-71.72089,41.46607799906],[-71.720897,41.46601199906],[-71.720896,41.46588899906],[-71.720866,41.46583899906],[-71.720798,41.46579299906],[-71.720706,41.46574799906],[-71.720524,41.46566699906],[-71.720447,41.46564699906],[-71.720376,41.46564599906],[-71.720317,41.46560999906],[-71.720278,41.46555699906],[-71.720236,41.46544899906],[-71.720175,41.46539799906],[-71.720097,41.46534499906],[-71.719939,41.46526199906],[-71.71987,41.46521699906],[-71.719832,41.46515999906],[-71.719837,41.46508399906],[-71.719875,41.46499499906],[-71.720044,41.46454399906],[-71.720069,41.46444799906],[-71.720116,41.46419999906],[-71.720156,41.46407199906],[-71.720177,41.46397599906],[-71.720183,41.46394899906],[-71.720271,41.46374399906],[-71.720264,41.46369899906],[-71.720248,41.46359799906],[-71.720202,41.46355099906],[-71.720157,41.46349499906],[-71.720141,41.46343499906],[-71.72015,41.46331599906],[-71.72012,41.46321599906],[-71.720103,41.46315999906],[-71.720106,41.46310399906],[-71.720145,41.46311799906],[-71.720193,41.46317399906],[-71.720284,41.46331899906],[-71.720328,41.46337299906],[-71.720387,41.46340099906],[-71.720463,41.46339799906],[-71.720543,41.46337899906],[-71.720615,41.46335099906],[-71.720664,41.46330999906],[-71.720673,41.46322999906],[-71.720641,41.46316699906],[-71.720587,41.46310399906],[-71.720519,41.46303899906],[-71.720431,41.46298399906],[-71.720331,41.46294699906],[-71.720244,41.46292099906],[-71.720189,41.46288399906],[-71.720162,41.46283399906],[-71.720157,41.46277799906],[-71.720164,41.46270499906],[-71.720156,41.46264199906],[-71.720112,41.46258899906],[-71.719989,41.46251099906],[-71.719932,41.46246999906],[-71.719924,41.46240599906],[-71.719964,41.46236699906],[-71.720031,41.46239299906],[-71.720166,41.46246699906],[-71.720241,41.46248499906],[-71.720307,41.46243599906],[-71.720397,41.46232399906],[-71.720531,41.46221599906],[-71.720687,41.46212199906],[-71.720748,41.46205999906],[-71.72078,41.46199499906],[-71.720799,41.46192299906],[-71.720847,41.46184199906],[-71.720914,41.46176099906],[-71.721044,41.46163399906],[-71.721061,41.46157399906],[-71.721063,41.46150799906],[-71.721077,41.46144099906],[-71.721171,41.46123399906],[-71.721187,41.46116499906],[-71.721189,41.46110099906],[-71.721197,41.46105299906],[-71.721336,41.46097699906],[-71.721391,41.46093099906],[-71.721409,41.46088999906],[-71.721476,41.46086799906],[-71.721572,41.46085199906],[-71.721656,41.46081499906],[-71.72168,41.46079099906],[-71.72166,41.46073599906],[-71.721582,41.46067499906],[-71.721468,41.46062199906],[-71.721332,41.46058899906],[-71.721212,41.46060099906],[-71.721122,41.46063799906],[-71.721042,41.46064599906],[-71.720968,41.46062999906],[-71.720903,41.46059499906],[-71.720875,41.46054099906],[-71.720851,41.46046999906],[-71.720782,41.46035599906],[-71.720725,41.46028999906],[-71.720683,41.46023099906],[-71.720648,41.46016999906],[-71.720592,41.46011399906],[-71.720509,41.46006599906],[-71.720391,41.46001799906],[-71.72014,41.45992399906],[-71.720034,41.45987799906],[-71.719863,41.45978999906],[-71.719774,41.45975699906],[-71.719667,41.45973899906],[-71.719443,41.45971299906],[-71.719334,41.45970799906],[-71.71924,41.45971899906],[-71.719165,41.45973299906],[-71.719089,41.45975199906],[-71.718951,41.45979799906],[-71.718908,41.45982299906],[-71.719105,41.46003599906],[-71.719053,41.46003399906],[-71.718991,41.46007299906],[-71.718992,41.46013099906],[-71.719,41.46018599906],[-71.718956,41.46024599906],[-71.718935,41.46029899906],[-71.718903,41.46034999906],[-71.718851,41.46037699906],[-71.718784,41.46037599906],[-71.718737,41.46026899906],[-71.718713,41.46025799906],[-71.718623,41.46026599906],[-71.71855,41.46027999906],[-71.718469,41.46031899906],[-71.718414,41.46035499906],[-71.718349,41.46038999906],[-71.718272,41.46041999906],[-71.71819,41.46044499906],[-71.71811,41.46047499906],[-71.717947,41.46054599906],[-71.717677,41.46065199906],[-71.717586,41.46068199906],[-71.71738,41.46072999906],[-71.717194,41.46076299906],[-71.717124,41.46077999906],[-71.717038,41.46078999906],[-71.716968,41.46077599906],[-71.716889,41.46076799906],[-71.716794,41.46077099906],[-71.716579,41.46079099906],[-71.716217,41.46083099906],[-71.715998,41.46083999906],[-71.71589,41.46084799906],[-71.715785,41.46085099906],[-71.715565,41.46083899906],[-71.715454,41.46082199906],[-71.715246,41.46077499906],[-71.715151,41.46074399906],[-71.714859,41.46063299906],[-71.714764,41.46058699906],[-71.714387,41.46035199906],[-71.714119,41.46016199906],[-71.714018,41.46010099906],[-71.713589,41.45986999906],[-71.713408,41.45978299906],[-71.713286,41.45970099906],[-71.713212,41.45966399906],[-71.713138,41.45963299906],[-71.713039,41.45961799906],[-71.712968,41.45963299906],[-71.712799,41.45968199906],[-71.712715,41.45971799906],[-71.712642,41.45975499906],[-71.712586,41.45979099906],[-71.71242,41.45994599906],[-71.712359,41.45996399906],[-71.71229,41.45993399906],[-71.712287,41.45986799906],[-71.712331,41.45980899906],[-71.712407,41.45975199906],[-71.712647,41.45959499906],[-71.712675,41.45955999906],[-71.712577,41.45945199906],[-71.712556,41.45939499906],[-71.712479,41.45926999906],[-71.71236,41.45903099906],[-71.712352,41.45897099906],[-71.712352,41.45890899906],[-71.712342,41.45878099906],[-71.712358,41.45871599906],[-71.712404,41.45857999906],[-71.712461,41.45834499906],[-71.712484,41.45827099906],[-71.712513,41.45820099906],[-71.71255,41.45813599906],[-71.712591,41.45807599906],[-71.712646,41.45802399906],[-71.71271,41.45798099906],[-71.712792,41.45795999906],[-71.712884,41.45795399906],[-71.713762,41.45846799906],[-71.714254,41.45853599906],[-71.71421,41.45848399906],[-71.714223,41.45842799906],[-71.714253,41.45836699906],[-71.714256,41.45829799906],[-71.714217,41.45822599906],[-71.714149,41.45815699906],[-71.714059,41.45809599906],[-71.713857,41.45798699906],[-71.713757,41.45792699906],[-71.713661,41.45785999906],[-71.713273,41.45757299906],[-71.712861,41.45730099906],[-71.712695,41.45719899906],[-71.71257,41.45713299906],[-71.712325,41.45702499906],[-71.712223,41.45697399906],[-71.712118,41.45692999906],[-71.712005,41.45689299906],[-71.711886,41.45686599906],[-71.71152,41.45677299906],[-71.711414,41.45673599906],[-71.711326,41.45669499906],[-71.711261,41.45664899906],[-71.71121,41.45659599906],[-71.711108,41.45650099906],[-71.71107,41.45644999906],[-71.711046,41.45638899906],[-71.711037,41.45631999906],[-71.711045,41.45625199906],[-71.711073,41.45619399906],[-71.711129,41.45616599906],[-71.711227,41.45618599906],[-71.71136,41.45624599906],[-71.711444,41.45629299906],[-71.711514,41.45631899906],[-71.711599,41.45632899906],[-71.711688,41.45631399906],[-71.711773,41.45628799906],[-71.711839,41.45625299906],[-71.71189,41.45621099906],[-71.711949,41.45618099906],[-71.712035,41.45616899906],[-71.712121,41.45617599906],[-71.712168,41.45620299906],[-71.712109,41.45625999906],[-71.712037,41.45629399906],[-71.712014,41.45631099906],[-71.712047,41.45636799906],[-71.712022,41.45642699906],[-71.712071,41.45648499906],[-71.712144,41.45653699906],[-71.712161,41.45659099906],[-71.712189,41.45664499906],[-71.712236,41.45667399906],[-71.712282,41.45665799906],[-71.712313,41.45660399906],[-71.712327,41.45652199906],[-71.712325,41.45619499906],[-71.712288,41.45608599906],[-71.712308,41.45602799906],[-71.712369,41.45596699906],[-71.71255,41.45582399906],[-71.712614,41.45574599906],[-71.71266,41.45566599906],[-71.71269,41.45558599906],[-71.712698,41.45549799906],[-71.712684,41.45541499906],[-71.712649,41.45533799906],[-71.712604,41.45526899906],[-71.712544,41.45520999906],[-71.712487,41.45516599906],[-71.712437,41.45511799906],[-71.712417,41.45507199906],[-71.71227,41.45502199906],[-71.712194,41.45498999906],[-71.712123,41.45494999906],[-71.712066,41.45489599906],[-71.712031,41.45483299906],[-71.712026,41.45476299906],[-71.712043,41.45469099906],[-71.712063,41.45456399906],[-71.712089,41.45451299906],[-71.712136,41.45448799906],[-71.712301,41.45453199906],[-71.712373,41.45453999906],[-71.712412,41.45456199906],[-71.712378,41.45460599906],[-71.712311,41.45462799906],[-71.712253,41.45465799906],[-71.712254,41.45470299906],[-71.712313,41.45473799906],[-71.712396,41.45477599906],[-71.712455,41.45481799906],[-71.71249,41.45487899906],[-71.712512,41.45490499906],[-71.71256,41.45489599906],[-71.712621,41.45484599906],[-71.712667,41.45476999906],[-71.712699,41.45467899906],[-71.712713,41.45459299906],[-71.712707,41.45451499906],[-71.712687,41.45444099906],[-71.712631,41.45437599906],[-71.712525,41.45433499906],[-71.712381,41.45432399906],[-71.712031,41.45432199906],[-71.711913,41.45431499906],[-71.711813,41.45429399906],[-71.711726,41.45426299906],[-71.711661,41.45421999906],[-71.711627,41.45416199906],[-71.711625,41.45409999906],[-71.711677,41.45405399906],[-71.711771,41.45405099906],[-71.711883,41.45408499906],[-71.712034,41.45412499906],[-71.712188,41.45415399906],[-71.712345,41.45416899906],[-71.712419,41.45416999906],[-71.712554,41.45415799906],[-71.712679,41.45411999906],[-71.712791,41.45406399906],[-71.712968,41.45396099906],[-71.71303,41.45393999906],[-71.713089,41.45396399906],[-71.713118,41.45401999906],[-71.713134,41.45408599906],[-71.713189,41.45415899906],[-71.713266,41.45424099906],[-71.713323,41.45432799906],[-71.713338,41.45440799906],[-71.71332,41.45453999906],[-71.713342,41.45456799906],[-71.713447,41.45454099906],[-71.713534,41.45450899906],[-71.713582,41.45446299906],[-71.713595,41.45439899906],[-71.713592,41.45431999906],[-71.713573,41.45415899906],[-71.713589,41.45409599906],[-71.713643,41.45408199906],[-71.713712,41.45411399906],[-71.713777,41.45416099906],[-71.713851,41.45419599906],[-71.713939,41.45419899906],[-71.714032,41.45418099906],[-71.714127,41.45416899906],[-71.714206,41.45418399906],[-71.714253,41.45423199906],[-71.714344,41.45437799906],[-71.714393,41.45444799906],[-71.714451,41.45449599906],[-71.714527,41.45450699906],[-71.714608,41.45447599906],[-71.714674,41.45441299906],[-71.714717,41.45432899906],[-71.714747,41.45422999906],[-71.714758,41.45412499906],[-71.71474,41.45402499906],[-71.714697,41.45393399906],[-71.714634,41.45385099906],[-71.714548,41.45378099906],[-71.714434,41.45372899906],[-71.714316,41.45368399906],[-71.714225,41.45362899906],[-71.714165,41.45355899906],[-71.714139,41.45348599906],[-71.714159,41.45341499906],[-71.714222,41.45335999906],[-71.714392,41.45325899906],[-71.714463,41.45320399906],[-71.714613,41.45304199906],[-71.71469,41.45299399906],[-71.714777,41.45299299906],[-71.714806,41.45298499906],[-71.714768,41.45293599906],[-71.714709,41.45289199906],[-71.714655,41.45284299906],[-71.714653,41.45278399906],[-71.714723,41.45263099906],[-71.714773,41.45245299906],[-71.714801,41.45237199906],[-71.714847,41.45231699906],[-71.71488,41.45226299906],[-71.714871,41.45219499906],[-71.714829,41.45212199906],[-71.714772,41.45204799906],[-71.714725,41.45196699906],[-71.714683,41.45187899906],[-71.714614,41.45170499906],[-71.714538,41.45154899906],[-71.714507,41.45147399906],[-71.714459,41.45125799906],[-71.714457,41.45119399906],[-71.714487,41.45111999906],[-71.71453,41.45106699906],[-71.714599,41.45102599906],[-71.714691,41.45101599906],[-71.714791,41.45102599906],[-71.714879,41.45102899906],[-71.714964,41.45104499906],[-71.715016,41.45116699906],[-71.715072,41.45119599906],[-71.715116,41.45116599906],[-71.715104,41.45102999906],[-71.71513,41.45097399906],[-71.715195,41.45094899906],[-71.71528,41.45094899906],[-71.715353,41.45096899906],[-71.715407,41.45100799906],[-71.715483,41.45102699906],[-71.71582,41.45096899906],[-71.715907,41.45093699906],[-71.715911,41.45088999906],[-71.715831,41.45083899906],[-71.715824,41.45079399906],[-71.715889,41.45074899906],[-71.716099,41.45070199906],[-71.716179,41.45065699906],[-71.716397,41.45046199906],[-71.716459,41.45039699906],[-71.716519,41.45032199906],[-71.716591,41.45025199906],[-71.716855,41.45006399906],[-71.716966,41.44995699906],[-71.717014,41.44989599906],[-71.717055,41.44982999906],[-71.717092,41.44975799906],[-71.717121,41.44968099906],[-71.717138,41.44952999906],[-71.717226,41.44935199906],[-71.717265,41.44928499906],[-71.717274,41.44921899906],[-71.717267,41.44907199906],[-71.717249,41.44899899906],[-71.717183,41.44880399906],[-71.717123,41.44871099906],[-71.717056,41.44851899906],[-71.717025,41.44845299906],[-71.717006,41.44839599906],[-71.716995,41.44831599906],[-71.717025,41.44823699906],[-71.717069,41.44817899906],[-71.717152,41.44788699906],[-71.717167,41.44780699906],[-71.71718,41.44773699906],[-71.71718,41.44768199906],[-71.717238,41.44753799906],[-71.717252,41.44746799906],[-71.717249,41.44739599906],[-71.717235,41.44732599906],[-71.717215,41.44725999906],[-71.717194,41.44721399906],[-71.716776,41.44696999906],[-71.716629,41.44631199906],[-71.716269,41.44514699906],[-71.715789,41.44406299906],[-71.715777,41.44365799906],[-71.71621,41.44336199906],[-71.7168,41.44317299906],[-71.717086,41.44335399906],[-71.717439,41.44365299906],[-71.718039,41.44352699906],[-71.719082,41.44236299906],[-71.720196,41.44105799906],[-71.720334,41.44073299906],[-71.720462,41.43960699906],[-71.720656,41.43896499906],[-71.720951,41.43859499906],[-71.721218,41.43841699906],[-71.721901,41.43825299906],[-71.722091,41.43823699906],[-71.722154,41.43814999906],[-71.722305,41.43804599906],[-71.722426,41.43800799906],[-71.722494,41.43796699906],[-71.722508,41.43794299906],[-71.722533,41.43785299906],[-71.722534,41.43777199906],[-71.722534,41.43775899906],[-71.722554,41.43762699906]]]}}"}, +{"type": "blockgroup", "typeId": 506004, "areaId": 29399, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.664383,41.47088199906],[-71.664375,41.47082099906],[-71.664365,41.47077899906],[-71.664345,41.47069199906],[-71.664291,41.47051999906],[-71.664223,41.47034099906],[-71.663826,41.46938699906],[-71.663597,41.46882499906],[-71.663277,41.46803999906],[-71.663063,41.46752899906],[-71.662933,41.46720099906],[-71.66291,41.46714199906],[-71.662766,41.46676599906],[-71.662491,41.46611799906],[-71.662079,41.46509899906],[-71.661682,41.46413799906],[-71.661644,41.46404299906],[-71.661613,41.46395899906],[-71.661606,41.46392099906],[-71.661606,41.46380999906],[-71.661613,41.46377599906],[-71.661911,41.46317299906],[-71.662201,41.46261999906],[-71.662827,41.46140299906],[-71.663361,41.46032999906],[-71.663673,41.45970499906],[-71.663734,41.45955999906],[-71.663761,41.45948199906],[-71.663776,41.45941499906],[-71.663789,41.45931799906],[-71.663799,41.45913999906],[-71.663786,41.45895399906],[-71.663774,41.45887999906],[-71.66375,41.45877199906],[-71.663612,41.45842399906],[-71.663545,41.45843899906],[-71.663374,41.45851499906],[-71.662469,41.45880599906],[-71.662053,41.45949999906],[-71.661304,41.45958299906],[-71.660703,41.45945299906],[-71.660428,41.45911899906],[-71.65954,41.45865899906],[-71.658664,41.45860599906],[-71.657703,41.45877499906],[-71.656375,41.45902099906],[-71.655813,41.45916499906],[-71.655483,41.45918399906],[-71.655227,41.45913699906],[-71.655029,41.45903099906],[-71.655011,41.45864899906],[-71.654769,41.45808599906],[-71.653674,41.45739199906],[-71.653132,41.45683399906],[-71.652729,41.45604899906],[-71.651645,41.45532999906],[-71.651324,41.45525699906],[-71.651075,41.45509599906],[-71.650946,41.45502599906],[-71.650855,41.45494899906],[-71.650721,41.45481399906],[-71.650573,41.45465399906],[-71.650496,41.45452699906],[-71.650427,41.45438399906],[-71.650377,41.45428099906],[-71.650301,41.45408299906],[-71.650156,41.45389399906],[-71.650093,41.45372499906],[-71.650089,41.45364999906],[-71.650113,41.45352199906],[-71.650199,41.45342399906],[-71.650279,41.45330199906],[-71.650321,41.45318599906],[-71.650377,41.45308399906],[-71.650446,41.45297399906],[-71.650525,41.45287899906],[-71.650616,41.45279399906],[-71.650693,41.45270599906],[-71.650913,41.45237799906],[-71.65098,41.45224299906],[-71.651001,41.45209899906],[-71.650987,41.45196799906],[-71.650918,41.45173599906],[-71.650846,41.45160499906],[-71.650827,41.45143499906],[-71.650729,41.45134099906],[-71.650588,41.45131299906],[-71.650436,41.45130199906],[-71.650285,41.45125299906],[-71.650124,41.45123599906],[-71.649897,41.45117499906],[-71.649765,41.45111299906],[-71.649668,41.45104599906],[-71.649569,41.45092499906],[-71.649474,41.45079699906],[-71.649376,41.45064199906],[-71.64924,41.45040199906],[-71.649199,41.45028999906],[-71.649161,41.45018399906],[-71.649158,41.45012899906],[-71.649156,41.45008599906],[-71.649155,41.45005899906],[-71.649083,41.44990199906],[-71.649072,41.44979099906],[-71.649062,41.44974699906],[-71.649101,41.44950999906],[-71.649139,41.44943699906],[-71.649179,41.44931399906],[-71.649304,41.44916799906],[-71.649397,41.44903999906],[-71.649408,41.44895599906],[-71.649385,41.44887999906],[-71.649307,41.44881899906],[-71.649175,41.44879199906],[-71.649017,41.44881099906],[-71.648902,41.44883399906],[-71.648822,41.44883399906],[-71.648674,41.44887699906],[-71.648419,41.44892699906],[-71.6482,41.44895399906],[-71.647896,41.44895599906],[-71.647665,41.44892199906],[-71.647487,41.44886699906],[-71.647321,41.44880899906],[-71.647178,41.44876699906],[-71.64697,41.44868199906],[-71.646808,41.44862299906],[-71.646432,41.44853499906],[-71.646173,41.44847999906],[-71.646022,41.44847599906],[-71.645898,41.44853099906],[-71.645807,41.44856599906],[-71.645683,41.44863099906],[-71.645648,41.44868399906],[-71.645526,41.44868599906],[-71.645485,41.44866499906],[-71.645451,41.44861499906],[-71.645368,41.44857499906],[-71.64514,41.44855899906],[-71.644912,41.44849399906],[-71.644848,41.44842499906],[-71.644782,41.44833399906],[-71.644723,41.44823199906],[-71.644701,41.44820599906],[-71.644662,41.44816299906],[-71.644623,41.44812699906],[-71.644542,41.44810799906],[-71.644397,41.44810299906],[-71.644297,41.44802199906],[-71.644258,41.44798099906],[-71.644143,41.44796299906],[-71.644061,41.44791399906],[-71.643924,41.44787899906],[-71.643818,41.44784199906],[-71.64381,41.44780099906],[-71.643804,41.44770099906],[-71.64378,41.44763499906],[-71.643752,41.44762599906],[-71.64375,41.44760499906],[-71.643707,41.44757499906],[-71.643534,41.44752599906],[-71.643439,41.44751199906],[-71.643307,41.44750799906],[-71.643244,41.44747599906],[-71.643185,41.44733299906],[-71.6431,41.44721199906],[-71.642954,41.44711099906],[-71.642857,41.44706699906],[-71.642705,41.44697299906],[-71.64266,41.44696899906],[-71.642567,41.44698299906],[-71.642442,41.44697999906],[-71.641991,41.44697999906],[-71.641847,41.44695999906],[-71.641647,41.44688799906],[-71.641535,41.44683699906],[-71.64143,41.44675899906],[-71.641235,41.44671999906],[-71.641148,41.44668799906],[-71.640894,41.44653499906],[-71.640811,41.44653499906],[-71.640644,41.44652399906],[-71.640544,41.44643199906],[-71.640504,41.44638399906],[-71.640503,41.44623099906],[-71.640508,41.44620799906],[-71.640486,41.44613999906],[-71.640364,41.44605799906],[-71.640293,41.44601699906],[-71.640183,41.44597599906],[-71.640095,41.44596099906],[-71.639991,41.44595399906],[-71.639959,41.44595199906],[-71.639781,41.44594999906],[-71.639681,41.44596099906],[-71.639615,41.44596099906],[-71.639474,41.44597599906],[-71.639333,41.44604299906],[-71.63921,41.44605699906],[-71.639062,41.44608299906],[-71.63872,41.44616399906],[-71.638631,41.44621599906],[-71.638533,41.44630199906],[-71.638457,41.44643599906],[-71.638372,41.44645899906],[-71.638303,41.44652499906],[-71.638255,41.44660399906],[-71.638229,41.44664099906],[-71.638153,41.44672499906],[-71.638069,41.44683399906],[-71.638014,41.44693499906],[-71.637921,41.44701499906],[-71.637829,41.44711099906],[-71.637752,41.44718099906],[-71.637737,41.44719499906],[-71.637637,41.44723399906],[-71.637591,41.44725799906],[-71.637516,41.44728999906],[-71.637298,41.44745199906],[-71.637258,41.44752999906],[-71.6372,41.44759599906],[-71.637055,41.44758999906],[-71.636986,41.44760099906],[-71.636938,41.44763099906],[-71.636816,41.44763199906],[-71.636692,41.44764799906],[-71.636555,41.44766599906],[-71.636462,41.44766699906],[-71.636434,41.44768299906],[-71.636442,41.44773199906],[-71.636439,41.44777299906],[-71.63642,41.44780399906],[-71.636391,41.44781299906],[-71.636258,41.44782399906],[-71.636079,41.44786999906],[-71.635915,41.44792999906],[-71.635821,41.44794399906],[-71.635597,41.44794399906],[-71.635293,41.44797899906],[-71.635166,41.44800599906],[-71.635042,41.44806499906],[-71.634936,41.44815399906],[-71.634816,41.44822799906],[-71.634758,41.44823799906],[-71.634439,41.44840399906],[-71.634277,41.44847799906],[-71.634148,41.44852699906],[-71.634009,41.44858699906],[-71.633872,41.44861299906],[-71.633743,41.44866299906],[-71.633585,41.44871499906],[-71.633454,41.44876299906],[-71.633212,41.44887799906],[-71.633159,41.44888999906],[-71.633005,41.44890699906],[-71.632862,41.44891499906],[-71.632835,41.44897399906],[-71.632774,41.44897699906],[-71.632726,41.44893799906],[-71.632726,41.44891199906],[-71.632518,41.44879899906],[-71.632378,41.44842799906],[-71.632213,41.44771199906],[-71.631973,41.44720599906],[-71.631818,41.44710099906],[-71.631386,41.44702199906],[-71.630608,41.44683099906],[-71.630022,41.44695399906],[-71.629548,41.44732899906],[-71.6295,41.44735899906],[-71.629368,41.44742999906],[-71.629287,41.44748399906],[-71.629255,41.44751899906],[-71.629131,41.44777199906],[-71.629026,41.44786799906],[-71.628905,41.44795799906],[-71.628831,41.44799899906],[-71.62871,41.44803099906],[-71.628558,41.44802099906],[-71.62844,41.44800699906],[-71.628348,41.44795899906],[-71.628222,41.44788299906],[-71.628097,41.44781399906],[-71.627873,41.44765999906],[-71.627788,41.44756999906],[-71.627696,41.44751299906],[-71.627634,41.44745399906],[-71.627419,41.44721799906],[-71.627247,41.44707099906],[-71.627168,41.44697499906],[-71.627106,41.44687799906],[-71.627057,41.44677299906],[-71.627012,41.44669399906],[-71.626996,41.44666399906],[-71.626958,41.44656899906],[-71.62694,41.44645999906],[-71.626947,41.44637199906],[-71.626982,41.44629599906],[-71.627056,41.44618499906],[-71.627166,41.44598299906],[-71.627171,41.44590299906],[-71.627215,41.44579999906],[-71.62732,41.44558599906],[-71.627393,41.44547699906],[-71.627398,41.44545599906],[-71.627354,41.44538199906],[-71.627114,41.44525099906],[-71.626973,41.44522599906],[-71.62687,41.44522499906],[-71.626803,41.44522899906],[-71.626761,41.44528299906],[-71.626754,41.44529999906],[-71.626737,41.44531799906],[-71.626589,41.44532299906],[-71.62654,41.44534999906],[-71.626329,41.44541499906],[-71.626269,41.44542499906],[-71.626199,41.44546599906],[-71.626097,41.44547699906],[-71.62603,41.44547199906],[-71.625893,41.44550499906],[-71.625778,41.44557199906],[-71.625714,41.44561699906],[-71.625628,41.44570599906],[-71.625559,41.44580899906],[-71.625459,41.44588999906],[-71.625397,41.44591999906],[-71.625285,41.44600999906],[-71.625173,41.44607399906],[-71.62507,41.44609899906],[-71.625007,41.44613299906],[-71.62488,41.44619299906],[-71.624807,41.44622099906],[-71.624723,41.44625499906],[-71.624607,41.44628499906],[-71.624387,41.44638199906],[-71.624288,41.44640799906],[-71.624234,41.44641599906],[-71.624156,41.44641199906],[-71.624082,41.44639499906],[-71.623928,41.44633699906],[-71.623404,41.44617499906],[-71.623312,41.44614199906],[-71.623016,41.44601799906],[-71.622826,41.44595299906],[-71.622665,41.44590399906],[-71.622564,41.44589199906],[-71.622464,41.44591399906],[-71.622396,41.44593899906],[-71.622333,41.44597399906],[-71.622214,41.44607299906],[-71.62208,41.44616799906],[-71.622013,41.44620499906],[-71.621945,41.44623299906],[-71.621873,41.44624799906],[-71.621841,41.44625399906],[-71.621768,41.44624599906],[-71.621702,41.44622099906],[-71.621639,41.44619199906],[-71.621558,41.44614399906],[-71.621497,41.44609599906],[-71.62143,41.44605899906],[-71.621363,41.44604199906],[-71.621284,41.44599199906],[-71.621187,41.44593099906],[-71.621167,41.44590099906],[-71.62108,41.44588699906],[-71.621006,41.44590399906],[-71.620946,41.44593399906],[-71.620894,41.44597899906],[-71.620798,41.44607899906],[-71.620745,41.44612099906],[-71.620675,41.44615299906],[-71.620591,41.44617799906],[-71.620409,41.44622099906],[-71.620095,41.44627099906],[-71.619681,41.44635499906],[-71.619495,41.44640699906],[-71.619207,41.44650499906],[-71.619115,41.44653199906],[-71.618937,41.44657299906],[-71.618376,41.44667499906],[-71.618273,41.44670199906],[-71.618183,41.44673499906],[-71.618024,41.44680499906],[-71.617954,41.44684499906],[-71.617901,41.44689499906],[-71.617876,41.44695799906],[-71.617878,41.44718199906],[-71.61789,41.44724699906],[-71.617943,41.44736699906],[-71.617945,41.44744499906],[-71.617896,41.44751399906],[-71.617818,41.44756799906],[-71.617749,41.44758299906],[-71.617669,41.44758799906],[-71.617493,41.44759099906],[-71.617406,41.44760699906],[-71.617245,41.44765499906],[-71.617169,41.44768199906],[-71.617111,41.44772099906],[-71.617016,41.44783399906],[-71.616794,41.44822599906],[-71.616659,41.44839699906],[-71.616583,41.44847999906],[-71.616506,41.44855499906],[-71.616439,41.44863199906],[-71.61634,41.44879399906],[-71.616234,41.44895499906],[-71.616188,41.44903599906],[-71.616116,41.44918299906],[-71.61601,41.44938099906],[-71.615969,41.44943799906],[-71.615921,41.44948999906],[-71.615911,41.44951099906],[-71.615794,41.44959199906],[-71.615768,41.44965199906],[-71.615723,41.44967299906],[-71.615606,41.44972099906],[-71.615434,41.44973599906],[-71.615358,41.44973699906],[-71.615074,41.44972599906],[-71.614993,41.44973899906],[-71.614936,41.44978399906],[-71.614913,41.44984499906],[-71.614917,41.44991099906],[-71.614929,41.44997399906],[-71.61492,41.45003299906],[-71.614857,41.45009299906],[-71.614796,41.45012499906],[-71.614727,41.45014299906],[-71.614655,41.45015099906],[-71.614578,41.45014799906],[-71.614504,41.45012799906],[-71.614442,41.45009599906],[-71.614365,41.45004799906],[-71.61429,41.45002999906],[-71.614206,41.45005699906],[-71.61401,41.45015899906],[-71.613938,41.45020299906],[-71.613805,41.45029899906],[-71.613749,41.45034699906],[-71.613644,41.45045099906],[-71.613597,41.45052599906],[-71.613587,41.45058699906],[-71.613591,41.45065499906],[-71.613632,41.45070099906],[-71.613719,41.45072399906],[-71.613812,41.45072899906],[-71.614058,41.45072499906],[-71.614133,41.45071399906],[-71.6142,41.45068999906],[-71.61435,41.45061899906],[-71.61443,41.45061799906],[-71.614497,41.45066299906],[-71.61454,41.45071699906],[-71.614544,41.45077599906],[-71.614526,41.45079499906],[-71.614488,41.45083199906],[-71.61443,41.45086799906],[-71.61428,41.45094699906],[-71.6142,41.45097399906],[-71.61404,41.45101299906],[-71.613971,41.45104199906],[-71.613915,41.45107699906],[-71.613853,41.45112299906],[-71.613807,41.45118399906],[-71.613772,41.45125199906],[-71.613724,41.45130599906],[-71.613631,41.45133999906],[-71.613526,41.45134799906],[-71.613428,41.45132999906],[-71.613215,41.45127699906],[-71.613059,41.45122799906],[-71.612971,41.45121099906],[-71.61288,41.45120199906],[-71.6128,41.45121299906],[-71.612738,41.45124699906],[-71.612634,41.45134399906],[-71.612569,41.45139199906],[-71.612492,41.45143399906],[-71.612349,41.45149999906],[-71.612271,41.45154999906],[-71.612235,41.45161199906],[-71.612232,41.45168799906],[-71.612251,41.45176499906],[-71.612326,41.45191299906],[-71.612335,41.45198499906],[-71.612286,41.45204099906],[-71.612207,41.45206599906],[-71.612132,41.45206399906],[-71.611959,41.45203599906],[-71.611872,41.45201299906],[-71.611789,41.45197699906],[-71.611709,41.45193299906],[-71.611565,41.45183499906],[-71.611423,41.45169099906],[-71.611386,41.45163699906],[-71.61136,41.45157499906],[-71.61135,41.45150999906],[-71.611348,41.45144799906],[-71.611334,41.45139199906],[-71.611274,41.45132599906],[-71.611196,41.45128399906],[-71.611102,41.45126899906],[-71.611027,41.45127399906],[-71.610945,41.45129299906],[-71.610868,41.45132199906],[-71.610801,41.45135399906],[-71.610734,41.45140999906],[-71.610728,41.45147699906],[-71.610775,41.45152599906],[-71.610924,41.45158399906],[-71.610981,41.45164299906],[-71.610985,41.45170999906],[-71.610915,41.45174899906],[-71.610829,41.45174699906],[-71.61075,41.45171899906],[-71.610658,41.45169799906],[-71.610481,41.45169099906],[-71.6104,41.45167399906],[-71.610323,41.45164899906],[-71.610221,41.45162199906],[-71.610128,41.45164399906],[-71.610076,41.45168399906],[-71.610035,41.45173199906],[-71.610011,41.45178499906],[-71.610005,41.45184099906],[-71.610007,41.45189799906],[-71.610028,41.45201599906],[-71.610046,41.45208799906],[-71.610074,41.45216699906],[-71.610141,41.45228899906],[-71.610164,41.45234599906],[-71.610175,41.45240499906],[-71.610177,41.45246199906],[-71.610158,41.45253899906],[-71.61008,41.45258699906],[-71.609982,41.45260199906],[-71.609912,41.45258799906],[-71.609852,41.45255699906],[-71.609802,41.45251699906],[-71.60975,41.45245399906],[-71.609732,41.45237999906],[-71.609728,41.45226899906],[-71.609691,41.45220399906],[-71.609617,41.45217799906],[-71.609553,41.45219499906],[-71.609523,41.45224999906],[-71.609518,41.45231399906],[-71.609462,41.45237599906],[-71.609404,41.45240899906],[-71.609311,41.45242399906],[-71.609224,41.45239399906],[-71.609162,41.45235799906],[-71.608912,41.45222699906],[-71.608873,41.45225699906],[-71.608867,41.45227199906],[-71.60862,41.45240399906],[-71.608552,41.45245699906],[-71.608498,41.45251799906],[-71.608452,41.45257999906],[-71.608402,41.45263399906],[-71.608325,41.45266599906],[-71.608228,41.45267099906],[-71.608141,41.45268699906],[-71.608077,41.45272199906],[-71.608011,41.45276499906],[-71.607948,41.45279599906],[-71.607817,41.45285099906],[-71.60773,41.45288299906],[-71.607653,41.45289299906],[-71.607574,41.45286399906],[-71.607544,41.45280699906],[-71.607536,41.45266299906],[-71.607523,41.45260399906],[-71.607483,41.45255399906],[-71.607418,41.45252899906],[-71.607325,41.45251499906],[-71.607263,41.45254199906],[-71.607221,41.45259399906],[-71.60716,41.45261699906],[-71.607097,41.45266199906],[-71.607069,41.45271899906],[-71.607121,41.45276499906],[-71.607146,41.45282999906],[-71.607128,41.45287699906],[-71.607083,41.45292299906],[-71.607037,41.45297899906],[-71.606991,41.45304499906],[-71.606911,41.45317699906],[-71.60685,41.45321499906],[-71.60679,41.45321099906],[-71.606748,41.45315199906],[-71.606725,41.45309799906],[-71.606674,41.45304599906],[-71.606622,41.45305199906],[-71.606582,41.45309799906],[-71.606547,41.45315799906],[-71.606528,41.45322199906],[-71.606547,41.45327799906],[-71.606606,41.45332899906],[-71.606651,41.45338799906],[-71.606642,41.45342599906],[-71.606577,41.45347999906],[-71.606499,41.45352299906],[-71.606414,41.45354699906],[-71.60631,41.45354399906],[-71.606238,41.45352899906],[-71.606137,41.45351499906],[-71.606052,41.45352899906],[-71.605871,41.45357799906],[-71.605803,41.45361099906],[-71.605755,41.45367099906],[-71.605705,41.45372099906],[-71.605629,41.45372499906],[-71.605545,41.45368499906],[-71.605484,41.45364999906],[-71.605414,41.45362899906],[-71.605318,41.45364599906],[-71.605247,41.45369599906],[-71.605182,41.45375499906],[-71.605142,41.45380399906],[-71.605109,41.45385699906],[-71.605033,41.45403799906],[-71.604941,41.45418299906],[-71.604834,41.45430999906],[-71.604788,41.45437599906],[-71.604741,41.45450599906],[-71.604729,41.45463699906],[-71.604692,41.45469799906],[-71.604635,41.45476199906],[-71.604588,41.45483199906],[-71.604521,41.45497199906],[-71.604481,41.45502499906],[-71.604415,41.45506599906],[-71.604048,41.45525699906],[-71.603882,41.45532799906],[-71.603713,41.45537799906],[-71.60363,41.45540699906],[-71.60357,41.45544199906],[-71.603477,41.45544999906],[-71.60341,41.45548299906],[-71.603358,41.45552599906],[-71.603245,41.45564299906],[-71.603158,41.45568099906],[-71.603065,41.45570999906],[-71.602994,41.45571099906],[-71.602887,41.45561999906],[-71.602813,41.45559899906],[-71.602733,41.45561599906],[-71.602682,41.45566499906],[-71.602657,41.45571999906],[-71.602668,41.45579699906],[-71.602718,41.45584899906],[-71.602765,41.45591299906],[-71.602784,41.45597999906],[-71.602782,41.45604499906],[-71.60276,41.45611399906],[-71.602718,41.45619199906],[-71.602665,41.45626199906],[-71.602605,41.45631599906],[-71.602547,41.45635999906],[-71.602462,41.45640499906],[-71.602368,41.45639799906],[-71.602294,41.45636999906],[-71.60226,41.45632399906],[-71.602255,41.45625099906],[-71.602242,41.45618999906],[-71.602209,41.45612999906],[-71.602149,41.45606899906],[-71.602106,41.45607399906],[-71.601762,41.45630499906],[-71.60167,41.45629699906],[-71.601617,41.45624499906],[-71.601563,41.45620299906],[-71.601481,41.45618699906],[-71.601415,41.45621799906],[-71.601364,41.45626599906],[-71.601257,41.45625299906],[-71.601198,41.45628499906],[-71.601178,41.45635699906],[-71.601204,41.45640799906],[-71.601197,41.45651499906],[-71.601103,41.45656799906],[-71.600986,41.45656799906],[-71.600933,41.45660899906],[-71.60088,41.45667399906],[-71.600849,41.45673899906],[-71.600868,41.45679099906],[-71.600894,41.45684199906],[-71.600881,41.45691399906],[-71.600806,41.45696499906],[-71.600706,41.45697899906],[-71.600534,41.45697499906],[-71.600441,41.45698899906],[-71.600363,41.45701199906],[-71.600294,41.45704199906],[-71.600148,41.45713599906],[-71.600076,41.45719699906],[-71.600015,41.45726299906],[-71.599956,41.45731699906],[-71.599911,41.45736599906],[-71.599828,41.45749099906],[-71.599762,41.45754799906],[-71.599694,41.45758199906],[-71.599597,41.45759299906],[-71.599444,41.45755399906],[-71.599364,41.45758199906],[-71.599215,41.45772999906],[-71.599152,41.45777799906],[-71.599075,41.45781799906],[-71.59899,41.45785399906],[-71.598918,41.45789199906],[-71.598847,41.45794499906],[-71.598777,41.45797599906],[-71.598688,41.45799499906],[-71.598628,41.45804199906],[-71.598627,41.45809299906],[-71.598656,41.45814699906],[-71.598647,41.45821699906],[-71.598626,41.45826999906],[-71.598586,41.45834299906],[-71.598453,41.45848999906],[-71.598416,41.45861099906],[-71.598393,41.45882799906],[-71.598384,41.45901199906],[-71.59839,41.45907699906],[-71.598416,41.45914699906],[-71.598487,41.45926599906],[-71.59851,41.45932799906],[-71.598499,41.45939699906],[-71.598452,41.45945099906],[-71.598402,41.45949799906],[-71.598388,41.45955999906],[-71.598528,41.45963599906],[-71.598555,41.45968799906],[-71.598568,41.45974399906],[-71.598548,41.45981999906],[-71.5985,41.45986699906],[-71.598435,41.45991399906],[-71.59829,41.45999699906],[-71.598212,41.46002899906],[-71.598139,41.46004799906],[-71.598109,41.46007999906],[-71.598078,41.46019299906],[-71.598027,41.46026099906],[-71.597979,41.46031099906],[-71.597997,41.46037499906],[-71.597998,41.46043299906],[-71.597976,41.46049099906],[-71.597929,41.46053599906],[-71.597806,41.46060699906],[-71.597737,41.46064199906],[-71.597583,41.46070199906],[-71.597509,41.46073899906],[-71.597439,41.46078399906],[-71.597314,41.46087699906],[-71.597252,41.46093199906],[-71.59719,41.46099799906],[-71.596984,41.46125799906],[-71.596941,41.46132799906],[-71.596917,41.46138899906],[-71.596892,41.46152599906],[-71.596873,41.46159499906],[-71.59682,41.46173099906],[-71.596814,41.46179899906],[-71.596835,41.46185899906],[-71.59687,41.46191399906],[-71.596897,41.46197999906],[-71.596952,41.46201699906],[-71.596993,41.46204499906],[-71.597037,41.46207299906],[-71.597152,41.46212499906],[-71.597236,41.46212099906],[-71.597308,41.46210899906],[-71.597378,41.46211999906],[-71.597417,41.46216899906],[-71.597485,41.46227299906],[-71.59749,41.46238799906],[-71.597517,41.46252599906],[-71.597551,41.46259199906],[-71.597642,41.46272199906],[-71.597711,41.46274399906],[-71.597797,41.46275899906],[-71.597843,41.46280399906],[-71.597832,41.46287399906],[-71.597799,41.46292499906],[-71.597744,41.46296399906],[-71.597668,41.46298399906],[-71.597591,41.46299799906],[-71.597525,41.46304099906],[-71.59752,41.46309899906],[-71.597573,41.46313799906],[-71.597631,41.46317099906],[-71.597658,41.46323699906],[-71.597689,41.46329299906],[-71.597757,41.46332099906],[-71.59784,41.46329899906],[-71.597913,41.46328999906],[-71.597946,41.46331999906],[-71.597946,41.46338699906],[-71.597937,41.46344599906],[-71.597934,41.46351299906],[-71.597921,41.46358999906],[-71.59786,41.46363399906],[-71.597787,41.46364399906],[-71.597696,41.46363599906],[-71.597618,41.46363399906],[-71.597546,41.46365299906],[-71.597537,41.46370299906],[-71.597577,41.46375699906],[-71.59764,41.46380399906],[-71.597673,41.46385599906],[-71.597661,41.46403599906],[-71.597639,41.46409799906],[-71.597604,41.46415099906],[-71.597593,41.46421699906],[-71.597658,41.46426299906],[-71.597742,41.46429399906],[-71.597836,41.46429299906],[-71.59791,41.46425199906],[-71.597991,41.46423199906],[-71.598009,41.46426899906],[-71.598006,41.46432899906],[-71.597987,41.46438599906],[-71.597887,41.46450999906],[-71.597888,41.46458099906],[-71.597943,41.46463499906],[-71.598033,41.46464799906],[-71.598122,41.46464799906],[-71.598197,41.46466299906],[-71.598212,41.46471799906],[-71.598221,41.46484099906],[-71.598232,41.46491899906],[-71.598273,41.46511299906],[-71.598296,41.46517199906],[-71.598404,41.46529699906],[-71.59844,41.46537099906],[-71.598483,41.46547499906],[-71.598513,41.46561999906],[-71.59855,41.46568599906],[-71.598606,41.46572799906],[-71.598746,41.46578499906],[-71.598798,41.46583699906],[-71.598803,41.46589899906],[-71.598782,41.46596099906],[-71.598775,41.46603999906],[-71.598799,41.46610799906],[-71.598868,41.46615899906],[-71.598939,41.46619899906],[-71.599008,41.46625599906],[-71.599059,41.46632799906],[-71.599098,41.46640299906],[-71.599129,41.46647999906],[-71.599168,41.46667499906],[-71.599174,41.46675499906],[-71.599224,41.46680799906],[-71.599403,41.46685299906],[-71.599489,41.46688599906],[-71.599619,41.46697799906],[-71.599708,41.46707099906],[-71.599745,41.46712199906],[-71.599791,41.46716899906],[-71.599851,41.46719999906],[-71.599984,41.46724699906],[-71.600042,41.46727899906],[-71.600108,41.46734299906],[-71.600144,41.46739499906],[-71.600229,41.46759699906],[-71.600228,41.46766899906],[-71.60018,41.46773199906],[-71.600169,41.46780099906],[-71.600189,41.46786699906],[-71.60023,41.46792799906],[-71.600226,41.46799899906],[-71.600193,41.46806399906],[-71.600208,41.46812799906],[-71.600263,41.46818899906],[-71.600328,41.46822099906],[-71.600442,41.46824199906],[-71.600518,41.46825899906],[-71.600569,41.46827499906],[-71.600629,41.46832599906],[-71.600627,41.46838699906],[-71.600637,41.46844299906],[-71.600689,41.46849399906],[-71.600768,41.46853099906],[-71.60086,41.46855699906],[-71.600931,41.46859599906],[-71.60099,41.46864699906],[-71.601074,41.46868499906],[-71.601161,41.46869499906],[-71.60126,41.46869199906],[-71.60136,41.46870199906],[-71.601454,41.46871999906],[-71.601497,41.46876799906],[-71.601483,41.46883799906],[-71.601416,41.46888799906],[-71.601384,41.46894799906],[-71.601435,41.46900199906],[-71.601512,41.46904499906],[-71.601577,41.46909299906],[-71.601625,41.46915199906],[-71.601689,41.46920899906],[-71.601794,41.46929299906],[-71.601851,41.46935299906],[-71.601906,41.46940299906],[-71.60199,41.46939999906],[-71.602046,41.46942699906],[-71.602084,41.46949899906],[-71.602101,41.46957199906],[-71.602115,41.46983299906],[-71.602145,41.46989499906],[-71.602197,41.46995199906],[-71.602229,41.47001599906],[-71.602202,41.47007399906],[-71.60215,41.47012399906],[-71.602131,41.47017999906],[-71.602161,41.47022899906],[-71.602231,41.47028299906],[-71.602295,41.47034599906],[-71.602315,41.47041299906],[-71.60227,41.47048099906],[-71.602137,41.47054099906],[-71.602089,41.47060699906],[-71.6021,41.47066899906],[-71.602163,41.47070199906],[-71.602357,41.47071699906],[-71.602432,41.47072999906],[-71.602503,41.47075799906],[-71.602543,41.47080299906],[-71.602563,41.47085999906],[-71.602549,41.47093699906],[-71.602479,41.47098899906],[-71.602394,41.47103299906],[-71.602385,41.47108999906],[-71.602462,41.47119799906],[-71.602561,41.47130699906],[-71.602623,41.47136499906],[-71.602684,41.47141499906],[-71.602772,41.47145499906],[-71.602846,41.47143799906],[-71.602912,41.47140199906],[-71.603003,41.47139599906],[-71.603071,41.47141599906],[-71.603145,41.47145199906],[-71.603211,41.47151999906],[-71.60317,41.47158599906],[-71.603047,41.47169199906],[-71.603001,41.47176699906],[-71.603053,41.47182799906],[-71.603115,41.47186099906],[-71.603208,41.47189499906],[-71.603274,41.47194499906],[-71.603377,41.47205899906],[-71.603418,41.47213099906],[-71.603428,41.47220099906],[-71.603419,41.47233699906],[-71.603458,41.47240899906],[-71.603514,41.47246199906],[-71.603572,41.47250899906],[-71.603672,41.47253699906],[-71.603734,41.47252199906],[-71.603792,41.47246899906],[-71.6039,41.47235899906],[-71.603982,41.47231499906],[-71.604083,41.47231999906],[-71.604145,41.47234699906],[-71.60421,41.47238299906],[-71.604268,41.47243399906],[-71.604417,41.47264699906],[-71.604496,41.47278499906],[-71.604542,41.47284499906],[-71.604601,41.47288499906],[-71.604674,41.47291199906],[-71.604748,41.47293299906],[-71.604819,41.47296199906],[-71.604964,41.47303499906],[-71.605019,41.47307199906],[-71.605054,41.47314199906],[-71.605068,41.47333699906],[-71.605095,41.47353699906],[-71.605109,41.47360099906],[-71.605136,41.47365499906],[-71.605207,41.47370499906],[-71.605267,41.47374099906],[-71.605369,41.47383499906],[-71.605407,41.47390999906],[-71.605393,41.47399199906],[-71.605408,41.47406299906],[-71.605521,41.47417299906],[-71.60556,41.47424099906],[-71.605505,41.47429899906],[-71.605435,41.47433199906],[-71.605351,41.47435199906],[-71.605254,41.47436599906],[-71.605171,41.47438599906],[-71.605109,41.47442299906],[-71.605064,41.47447599906],[-71.604996,41.47458599906],[-71.604985,41.47464599906],[-71.605027,41.47467299906],[-71.605273,41.47472499906],[-71.605416,41.47476699906],[-71.605442,41.47482299906],[-71.605447,41.47501399906],[-71.60547,41.47515999906],[-71.605508,41.47529299906],[-71.605544,41.47535399906],[-71.605602,41.47540699906],[-71.605636,41.47545599906],[-71.60568,41.47550699906],[-71.605733,41.47555699906],[-71.605845,41.47562799906],[-71.605898,41.47566899906],[-71.605933,41.47571699906],[-71.605942,41.47577399906],[-71.605941,41.47583899906],[-71.605897,41.47591199906],[-71.605744,41.47597499906],[-71.60571,41.47604199906],[-71.605696,41.47609599906],[-71.605631,41.47623499906],[-71.605617,41.47628799906],[-71.605602,41.47640699906],[-71.605588,41.47646499906],[-71.605543,41.47648799906],[-71.605468,41.47649099906],[-71.605283,41.47651299906],[-71.605135,41.47652099906],[-71.605047,41.47653399906],[-71.604982,41.47655899906],[-71.604922,41.47660299906],[-71.604877,41.47669999906],[-71.604826,41.47681099906],[-71.604803,41.47684499906],[-71.604726,41.47686999906],[-71.604644,41.47688699906],[-71.604545,41.47689699906],[-71.604462,41.47690099906],[-71.604363,41.47691399906],[-71.604338,41.47695899906],[-71.604406,41.47707199906],[-71.604402,41.47714299906],[-71.604359,41.47719399906],[-71.604303,41.47724399906],[-71.604275,41.47730699906],[-71.604276,41.47736699906],[-71.60423,41.47740199906],[-71.604166,41.47743299906],[-71.6042,41.47748399906],[-71.604201,41.47755099906],[-71.604171,41.47762399906],[-71.604109,41.47767499906],[-71.604018,41.47766999906],[-71.603944,41.47763199906],[-71.603914,41.47757099906],[-71.60391,41.47749599906],[-71.603887,41.47742999906],[-71.603808,41.47738299906],[-71.603719,41.47737099906],[-71.603618,41.47737599906],[-71.603544,41.47736899906],[-71.603457,41.47737999906],[-71.60338,41.47742199906],[-71.603264,41.47749999906],[-71.603201,41.47753099906],[-71.603111,41.47754299906],[-71.603033,41.47752099906],[-71.602944,41.47748699906],[-71.60286,41.47747699906],[-71.602499,41.47746099906],[-71.602414,41.47746199906],[-71.60224,41.47747499906],[-71.60214,41.47747599906],[-71.602058,41.47748199906],[-71.601984,41.47748099906],[-71.601906,41.47747499906],[-71.60182,41.47747799906],[-71.601746,41.47749999906],[-71.601683,41.47753599906],[-71.601632,41.47757499906],[-71.601555,41.47762199906],[-71.601485,41.47764599906],[-71.601411,41.47765799906],[-71.601318,41.47769099906],[-71.601239,41.47773899906],[-71.601182,41.47778599906],[-71.601146,41.47790199906],[-71.601109,41.47795399906],[-71.601053,41.47807299906],[-71.60101,41.47812999906],[-71.600912,41.47821399906],[-71.60078,41.47828799906],[-71.600706,41.47834399906],[-71.600721,41.47839899906],[-71.600808,41.47844099906],[-71.600904,41.47846099906],[-71.600985,41.47849399906],[-71.600979,41.47854099906],[-71.600906,41.47857599906],[-71.600831,41.47859699906],[-71.600746,41.47861199906],[-71.600671,41.47863099906],[-71.600638,41.47866199906],[-71.60065,41.47872699906],[-71.600723,41.47877699906],[-71.600905,41.47884199906],[-71.60098,41.47888999906],[-71.601027,41.47893199906],[-71.601082,41.47899499906],[-71.601115,41.47906499906],[-71.601131,41.47913699906],[-71.601124,41.47919899906],[-71.601082,41.47924799906],[-71.601018,41.47928299906],[-71.600938,41.47930599906],[-71.600854,41.47930899906],[-71.600757,41.47929899906],[-71.600673,41.47931599906],[-71.60067,41.47936599906],[-71.600722,41.47941899906],[-71.600803,41.47945099906],[-71.600891,41.47945899906],[-71.60105,41.47945299906],[-71.601132,41.47946999906],[-71.601183,41.47950899906],[-71.601253,41.47955399906],[-71.601405,41.47961199906],[-71.601474,41.47966999906],[-71.601487,41.47973999906],[-71.60145,41.47980699906],[-71.601365,41.47984799906],[-71.601286,41.47986199906],[-71.60112,41.47987199906],[-71.600941,41.47985799906],[-71.60084,41.47986699906],[-71.600788,41.47990199906],[-71.600799,41.47995599906],[-71.600855,41.48001799906],[-71.600921,41.48005299906],[-71.60101,41.48007499906],[-71.601095,41.48008399906],[-71.601246,41.48009299906],[-71.60133,41.48010199906],[-71.601419,41.48014499906],[-71.601438,41.48021999906],[-71.601392,41.48028299906],[-71.601323,41.48031099906],[-71.601244,41.48032999906],[-71.601162,41.48034299906],[-71.600878,41.48036799906],[-71.600789,41.48039799906],[-71.600779,41.48046599906],[-71.600813,41.48054199906],[-71.600857,41.48058999906],[-71.600918,41.48062799906],[-71.60099,41.48065899906],[-71.601064,41.48068399906],[-71.601129,41.48071799906],[-71.601234,41.48080199906],[-71.601357,41.48088599906],[-71.601421,41.48092499906],[-71.601494,41.48093299906],[-71.601557,41.48089099906],[-71.601634,41.48085199906],[-71.601705,41.48084899906],[-71.601749,41.48088699906],[-71.601772,41.48093899906],[-71.601777,41.48101199906],[-71.601772,41.48107099906],[-71.601812,41.48111799906],[-71.601875,41.48116399906],[-71.601874,41.48122999906],[-71.601834,41.48127899906],[-71.601768,41.48133999906],[-71.601789,41.48140299906],[-71.601851,41.48146699906],[-71.601904,41.48150399906],[-71.602043,41.48157799906],[-71.602182,41.48167499906],[-71.602302,41.48177199906],[-71.602345,41.48182299906],[-71.602382,41.48188099906],[-71.602434,41.48194199906],[-71.602502,41.48197699906],[-71.602574,41.48199599906],[-71.60264,41.48204999906],[-71.602665,41.48212199906],[-71.602635,41.48217899906],[-71.602571,41.48222599906],[-71.602441,41.48228199906],[-71.602377,41.48231799906],[-71.602327,41.48235899906],[-71.602278,41.48242599906],[-71.60226,41.48249499906],[-71.602262,41.48256899906],[-71.602277,41.48264599906],[-71.602331,41.48268799906],[-71.602388,41.48272299906],[-71.602428,41.48278899906],[-71.602429,41.48285599906],[-71.602424,41.48290999906],[-71.602375,41.48296299906],[-71.602321,41.48300299906],[-71.602089,41.48312699906],[-71.602026,41.48317699906],[-71.601988,41.48323499906],[-71.601968,41.48329499906],[-71.601965,41.48336199906],[-71.602006,41.48338499906],[-71.602078,41.48339999906],[-71.602175,41.48340899906],[-71.602386,41.48341899906],[-71.602599,41.48341399906],[-71.602692,41.48342599906],[-71.602759,41.48345599906],[-71.602808,41.48351499906],[-71.602796,41.48357799906],[-71.602624,41.48371299906],[-71.60256,41.48374799906],[-71.60255,41.48379499906],[-71.602588,41.48384899906],[-71.602651,41.48391299906],[-71.602685,41.48396299906],[-71.602652,41.48404999906],[-71.60262,41.48410999906],[-71.602597,41.48416699906],[-71.602591,41.48422499906],[-71.6026,41.48430499906],[-71.602654,41.48437199906],[-71.602754,41.48446799906],[-71.602819,41.48451499906],[-71.602826,41.48453899906],[-71.602884,41.48458699906],[-71.602952,41.48462799906],[-71.60304,41.48466999906],[-71.603137,41.48470899906],[-71.603318,41.48476899906],[-71.60358,41.48483799906],[-71.603656,41.48486899906],[-71.603721,41.48490699906],[-71.603778,41.48495099906],[-71.604002,41.48516399906],[-71.60405,41.48521799906],[-71.604093,41.48528099906],[-71.604129,41.48534999906],[-71.604192,41.48549299906],[-71.604237,41.48557499906],[-71.6043,41.48565599906],[-71.604368,41.48572599906],[-71.604505,41.48584999906],[-71.604559,41.48590399906],[-71.604585,41.48595699906],[-71.604569,41.48600699906],[-71.604509,41.48605099906],[-71.604436,41.48608599906],[-71.604263,41.48615699906],[-71.604231,41.48620699906],[-71.604213,41.48626899906],[-71.604222,41.48632799906],[-71.604241,41.48638899906],[-71.604273,41.48645099906],[-71.604318,41.48651099906],[-71.604372,41.48656399906],[-71.604493,41.48665999906],[-71.604961,41.48696799906],[-71.605045,41.48702799906],[-71.605271,41.48721499906],[-71.605336,41.48726299906],[-71.605412,41.48730599906],[-71.605777,41.48746499906],[-71.605876,41.48749299906],[-71.605981,41.48750599906],[-71.606087,41.48750799906],[-71.606264,41.48750399906],[-71.606346,41.48749299906],[-71.606663,41.48742499906],[-71.606909,41.48739699906],[-71.607321,41.48732099906],[-71.607413,41.48731199906],[-71.607996,41.48730299906],[-71.608167,41.48731399906],[-71.608256,41.48732999906],[-71.608332,41.48736099906],[-71.608412,41.48740399906],[-71.608493,41.48745499906],[-71.608634,41.48756099906],[-71.608704,41.48760399906],[-71.608844,41.48767899906],[-71.608914,41.48773699906],[-71.608921,41.48779999906],[-71.608871,41.48786699906],[-71.60883,41.48793699906],[-71.608822,41.48799799906],[-71.608826,41.48812099906],[-71.608812,41.48817599906],[-71.608768,41.48822399906],[-71.608629,41.48831799906],[-71.608608,41.48837199906],[-71.608611,41.48843599906],[-71.608649,41.48850499906],[-71.608676,41.48857599906],[-71.608679,41.48864899906],[-71.608649,41.48871699906],[-71.608605,41.48876199906],[-71.608552,41.48880499906],[-71.608486,41.48886699906],[-71.608393,41.48897799906],[-71.608361,41.48903099906],[-71.608356,41.48916499906],[-71.60832,41.48922599906],[-71.608258,41.48928599906],[-71.608205,41.48932799906],[-71.608065,41.48941999906],[-71.608014,41.48947599906],[-71.608003,41.48953699906],[-71.608006,41.48960299906],[-71.608026,41.48967199906],[-71.608055,41.48974399906],[-71.608066,41.48982099906],[-71.608068,41.48989999906],[-71.608058,41.48997299906],[-71.607966,41.49010199906],[-71.607936,41.49016799906],[-71.607932,41.49023499906],[-71.607938,41.49029399906],[-71.607979,41.49033899906],[-71.608048,41.49036499906],[-71.608137,41.49037199906],[-71.608224,41.49035899906],[-71.608315,41.49033599906],[-71.608392,41.49034099906],[-71.608429,41.49037999906],[-71.608441,41.49043999906],[-71.608444,41.49050999906],[-71.608411,41.49066699906],[-71.608372,41.49080899906],[-71.608367,41.49087399906],[-71.60837,41.49093499906],[-71.608387,41.49099099906],[-71.608437,41.49111199906],[-71.608453,41.49117899906],[-71.608458,41.49130099906],[-71.608444,41.49135499906],[-71.608408,41.49140999906],[-71.608384,41.49147499906],[-71.60838,41.49154199906],[-71.608384,41.49160899906],[-71.608434,41.49173399906],[-71.608447,41.49180299906],[-71.608424,41.49186799906],[-71.608363,41.49192099906],[-71.608288,41.49196699906],[-71.608222,41.49201799906],[-71.608181,41.49206999906],[-71.608175,41.49214599906],[-71.608202,41.49220899906],[-71.608254,41.49225199906],[-71.608322,41.49228999906],[-71.608399,41.49234199906],[-71.608439,41.49238799906],[-71.608473,41.49244199906],[-71.608589,41.49266399906],[-71.608623,41.49274399906],[-71.60864,41.49281299906],[-71.608645,41.49287399906],[-71.608617,41.49294399906],[-71.608541,41.49297999906],[-71.608366,41.49300599906],[-71.608136,41.49308399906],[-71.608063,41.49311799906],[-71.608002,41.49315699906],[-71.607958,41.49320199906],[-71.607922,41.49325899906],[-71.607773,41.49356899906],[-71.607717,41.49374099906],[-71.60769,41.49380399906],[-71.607625,41.49386599906],[-71.607558,41.49388799906],[-71.60751,41.49385499906],[-71.60747,41.49379099906],[-71.607409,41.49372999906],[-71.607326,41.49371099906],[-71.607251,41.49374699906],[-71.607203,41.49381599906],[-71.607195,41.49387299906],[-71.607197,41.49393999906],[-71.607201,41.49408499906],[-71.607216,41.49416099906],[-71.607247,41.49422499906],[-71.607282,41.49428099906],[-71.607336,41.49434199906],[-71.6074,41.49435699906],[-71.607446,41.49429899906],[-71.607449,41.49416899906],[-71.607501,41.49409899906],[-71.607579,41.49408999906],[-71.607657,41.49418999906],[-71.607702,41.49423999906],[-71.607786,41.49427799906],[-71.607884,41.49424999906],[-71.60797,41.49421099906],[-71.608057,41.49420599906],[-71.608139,41.49421599906],[-71.608166,41.49425099906],[-71.608169,41.49441199906],[-71.608147,41.49446699906],[-71.608098,41.49451399906],[-71.608028,41.49454699906],[-71.607874,41.49459499906],[-71.607808,41.49462899906],[-71.607768,41.49470099906],[-71.607769,41.49475599906],[-71.607791,41.49480999906],[-71.60788,41.49490099906],[-71.607945,41.49493199906],[-71.608034,41.49493899906],[-71.608108,41.49497399906],[-71.608157,41.49503599906],[-71.608172,41.49510499906],[-71.608154,41.49516899906],[-71.608126,41.49522899906],[-71.608113,41.49529099906],[-71.608113,41.49535099906],[-71.608162,41.49541899906],[-71.608229,41.49544899906],[-71.608329,41.49545799906],[-71.608413,41.49541799906],[-71.608466,41.49536299906],[-71.608472,41.49529999906],[-71.608504,41.49524799906],[-71.608581,41.49522799906],[-71.608655,41.49522699906],[-71.608739,41.49523499906],[-71.60882,41.49526599906],[-71.608881,41.49531299906],[-71.60893,41.49536599906],[-71.608966,41.49543299906],[-71.609027,41.49558099906],[-71.609047,41.49564699906],[-71.609035,41.49571999906],[-71.608989,41.49579099906],[-71.608925,41.49585699906],[-71.60885,41.49590999906],[-71.608771,41.49594999906],[-71.60869,41.49597199906],[-71.608608,41.49598599906],[-71.608533,41.49601099906],[-71.608468,41.49605299906],[-71.608416,41.49610399906],[-71.608382,41.49615899906],[-71.608377,41.49621399906],[-71.60844,41.49627699906],[-71.608533,41.49629699906],[-71.608584,41.49626799906],[-71.608632,41.49621899906],[-71.608717,41.49617299906],[-71.608808,41.49619299906],[-71.608854,41.49623999906],[-71.608891,41.49629799906],[-71.608924,41.49636699906],[-71.608973,41.49651399906],[-71.608997,41.49665699906],[-71.608989,41.49671299906],[-71.608971,41.49673299906],[-71.608888,41.49680999906],[-71.608818,41.49686899906],[-71.608768,41.49692599906],[-71.608745,41.49698199906],[-71.60876,41.49703099906],[-71.608815,41.49707099906],[-71.608878,41.49710999906],[-71.60894,41.49715899906],[-71.609002,41.49722199906],[-71.609075,41.49728199906],[-71.609154,41.49733499906],[-71.609239,41.49738299906],[-71.609313,41.49743699906],[-71.609369,41.49749999906],[-71.609414,41.49757799906],[-71.609503,41.49777399906],[-71.609535,41.49786799906],[-71.609543,41.49794899906],[-71.609517,41.49802299906],[-71.609468,41.49808699906],[-71.609416,41.49814299906],[-71.609376,41.49820099906],[-71.609359,41.49828199906],[-71.609413,41.49839199906],[-71.60942,41.49845499906],[-71.609387,41.49850799906],[-71.609304,41.49852899906],[-71.609205,41.49850799906],[-71.609115,41.49847199906],[-71.609031,41.49845799906],[-71.608946,41.49847699906],[-71.608774,41.49854199906],[-71.608721,41.49859199906],[-71.608607,41.49892899906],[-71.608594,41.49901599906],[-71.608656,41.49906599906],[-71.608735,41.49908299906],[-71.608912,41.49911099906],[-71.608992,41.49915399906],[-71.609025,41.49920699906],[-71.609026,41.49926299906],[-71.608965,41.49930699906],[-71.608887,41.49932999906],[-71.608715,41.49937099906],[-71.60864,41.49939399906],[-71.608579,41.49942499906],[-71.608539,41.49948499906],[-71.608553,41.49955899906],[-71.608588,41.49960999906],[-71.608617,41.49967999906],[-71.608577,41.49973099906],[-71.6085,41.49975799906],[-71.608404,41.49976899906],[-71.608304,41.49975399906],[-71.608234,41.49973899906],[-71.608128,41.49972899906],[-71.608056,41.49977899906],[-71.608023,41.49985499906],[-71.608036,41.49992899906],[-71.608108,41.49998299906],[-71.60817,41.50001199906],[-71.608226,41.50005099906],[-71.608259,41.50012399906],[-71.608226,41.50016899906],[-71.608158,41.50021399906],[-71.608092,41.50026099906],[-71.608077,41.50027299906],[-71.608016,41.50033399906],[-71.607973,41.50040999906],[-71.607637,41.50067499906],[-71.607601,41.50070399906],[-71.607486,41.50092799906],[-71.60759,41.50107299906],[-71.60767,41.50118599906],[-71.60771,41.50146999906],[-71.607839,41.50165899906],[-71.607775,41.50201199906],[-71.607615,41.50203699906],[-71.607427,41.50206599906],[-71.607456,41.50225199906],[-71.607516,41.50238499906],[-71.607724,41.50247999906],[-71.608047,41.50218199906],[-71.6082,41.50202199906],[-71.608521,41.50165599906],[-71.608688,41.50144199906],[-71.609093,41.50094999906],[-71.610016,41.49984399906],[-71.611549,41.49798199906],[-71.611679,41.49781799906],[-71.611923,41.49749399906],[-71.612526,41.49660499906],[-71.61293,41.49601399906],[-71.613098,41.49579199906],[-71.613205,41.49567799906],[-71.613541,41.49536099906],[-71.61377,41.49516699906],[-71.613907,41.49505999906],[-71.614052,41.49496099906],[-71.614349,41.49476999906],[-71.614578,41.49464399906],[-71.614729,41.49456899906],[-71.614784,41.49454099906],[-71.614914,41.49448399906],[-71.615051,41.49443399906],[-71.615227,41.49438499906],[-71.615578,41.49431199906],[-71.615698,41.49429399906],[-71.615898,41.49426299906],[-71.616058,41.49424699906],[-71.616482,41.49425499906],[-71.616824,41.49428399906],[-71.617308,41.49434099906],[-71.617881,41.49441699906],[-71.619066,41.49454799906],[-71.619123,41.49455599906],[-71.619149,41.49455799906],[-71.619306,41.49456999906],[-71.619483,41.49458899906],[-71.619658,41.49459899906],[-71.619826,41.49460199906],[-71.620162,41.49459599906],[-71.620499,41.49457899906],[-71.620674,41.49456599906],[-71.62101,41.49452599906],[-71.621178,41.49450199906],[-71.621323,41.49447099906],[-71.621658,41.49438899906],[-71.622101,41.49425899906],[-71.622246,41.49420899906],[-71.623405,41.49376299906],[-71.62346,41.49374199906],[-71.624741,41.49326299906],[-71.625793,41.49286299906],[-71.625946,41.49281299906],[-71.626091,41.49275999906],[-71.626236,41.49271399906],[-71.626411,41.49266799906],[-71.62677,41.49259599906],[-71.626999,41.49255799906],[-71.62722,41.49253099906],[-71.627449,41.49251199906],[-71.627678,41.49249999906],[-71.627914,41.49249999906],[-71.628042,41.49250399906],[-71.628372,41.49251899906],[-71.628685,41.49255399906],[-71.628815,41.49257299906],[-71.62899,41.49260699906],[-71.629333,41.49269499906],[-71.629517,41.49274799906],[-71.629734,41.49282099906],[-71.630043,41.49293899906],[-71.630211,41.49301099906],[-71.630379,41.49309199906],[-71.630539,41.49317899906],[-71.630844,41.49337399906],[-71.630969,41.49346499906],[-71.631073,41.49354199906],[-71.631172,41.49362599906],[-71.631337,41.49378399906],[-71.631355,41.49380099906],[-71.631653,41.49411799906],[-71.631892,41.49440499906],[-71.632109,41.49465799906],[-71.632373,41.49495799906],[-71.63274,41.49537999906],[-71.632996,41.49565899906],[-71.633451,41.49618299906],[-71.633736,41.49646599906],[-71.633984,41.49666499906],[-71.634199,41.49681199906],[-71.634449,41.49696199906],[-71.63468,41.49709199906],[-71.634889,41.49719199906],[-71.635112,41.49728799906],[-71.635365,41.49738399906],[-71.636506,41.49774899906],[-71.637444,41.49803899906],[-71.637822,41.49817299906],[-71.638125,41.49828099906],[-71.638512,41.49843599906],[-71.638538,41.49844799906],[-71.639008,41.49865699906],[-71.639618,41.49893599906],[-71.640144,41.49918699906],[-71.64061,41.49939699906],[-71.641479,41.49980199906],[-71.642221,41.50015799906],[-71.643059,41.50052299906],[-71.6434,41.50067899906],[-71.643741,41.50081999906],[-71.644078,41.50093299906],[-71.644278,41.50098599906],[-71.64449,41.50105099906],[-71.644712,41.50110599906],[-71.64564,41.50135299906],[-71.64669,41.50160599906],[-71.647041,41.50169399906],[-71.647392,41.50176199906],[-71.647789,41.50181999906],[-71.649841,41.50206499906],[-71.650434,41.50214199906],[-71.651137,41.50221999906],[-71.651481,41.50225299906],[-71.651829,41.50227299906],[-71.652269,41.50227499906],[-71.652682,41.50225499906],[-71.653025,41.50221099906],[-71.653339,41.50216699906],[-71.65366,41.50210399906],[-71.654355,41.50191999906],[-71.655603,41.50155999906],[-71.656051,41.50143499906],[-71.657808,41.50091399906],[-71.659536,41.50042499906],[-71.659549,41.50039199906],[-71.659614,41.50024499906],[-71.659866,41.49935899906],[-71.659935,41.49914199906],[-71.659966,41.49897399906],[-71.659973,41.49889799906],[-71.659981,41.49878299906],[-71.659992,41.49869199906],[-71.660012,41.49851999906],[-71.660151,41.49733599906],[-71.66021,41.49692899906],[-71.660278,41.49633399906],[-71.660286,41.49622699906],[-71.660347,41.49573499906],[-71.660393,41.49489599906],[-71.660402,41.49474199906],[-71.660408,41.49470499906],[-71.660431,41.49446899906],[-71.660492,41.49394599906],[-71.660529,41.49370299906],[-71.660697,41.49286299906],[-71.660749,41.49256399906],[-71.660774,41.49242799906],[-71.660805,41.49216799906],[-71.660812,41.49211499906],[-71.660805,41.49190099906],[-71.660789,41.49171399906],[-71.660759,41.49146699906],[-71.660728,41.49126799906],[-71.660713,41.49083699906],[-71.660728,41.49003999906],[-71.660731,41.48979999906],[-71.660725,41.48961999906],[-71.660724,41.48958799906],[-71.660702,41.48921799906],[-71.66066,41.48889199906],[-71.660652,41.48866999906],[-71.660637,41.48844499906],[-71.660625,41.48819299906],[-71.660622,41.48799899906],[-71.660611,41.48782699906],[-71.660597,41.48757099906],[-71.660604,41.48734399906],[-71.66066,41.48690399906],[-71.660667,41.48677799906],[-71.660665,41.48661199906],[-71.66066,41.48643799906],[-71.660583,41.48598499906],[-71.660553,41.48475299906],[-71.660553,41.48409999906],[-71.660561,41.48397399906],[-71.660576,41.48384899906],[-71.660606,41.48371099906],[-71.660759,41.48329899906],[-71.660896,41.48297099906],[-71.661172,41.48240499906],[-71.661186,41.48237599906],[-71.661537,41.48165899906],[-71.661684,41.48131699906],[-71.661762,41.48113899906],[-71.661842,41.48095299906],[-71.662102,41.48032799906],[-71.662277,41.47987399906],[-71.662315,41.47978899906],[-71.662941,41.47839399906],[-71.663261,41.47763399906],[-71.663338,41.47742099906],[-71.663376,41.47729899906],[-71.663467,41.47690599906],[-71.663559,41.47630299906],[-71.663574,41.47614699906],[-71.663712,41.47517399906],[-71.663729,41.47507999906],[-71.663788,41.47477499906],[-71.663895,41.47421699906],[-71.66394,41.47397999906],[-71.66404,41.47325099906],[-71.664101,41.47270199906],[-71.664157,41.47226699906],[-71.664215,41.47181699906],[-71.66436,41.47120299906],[-71.664374,41.47108699906],[-71.664383,41.47093699906],[-71.664383,41.47088199906]]]}}"}, +{"type": "blockgroup", "typeId": 507011, "areaId": 29400, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.741586,41.52310899906],[-71.741577,41.52308999906],[-71.741371,41.52270099906],[-71.741341,41.52267099906],[-71.741318,41.52263599906],[-71.741287,41.52260999906],[-71.741219,41.52258299906],[-71.74118,41.52257199906],[-71.741142,41.52256799906],[-71.741066,41.52256799906],[-71.739006,41.52270499906],[-71.73877,41.52268999906],[-71.738625,41.52265499906],[-71.738556,41.52262099906],[-71.738495,41.52257499906],[-71.738472,41.52255199906],[-71.738441,41.52250299906],[-71.738403,41.52240799906],[-71.738327,41.52187699906],[-71.738266,41.52152299906],[-71.738251,41.52138099906],[-71.738197,41.52101899906],[-71.738075,41.52012299906],[-71.738052,41.52001999906],[-71.738022,41.51991999906],[-71.737999,41.51982099906],[-71.737991,41.51975299906],[-71.737946,41.51956199906],[-71.7379,41.51945099906],[-71.737808,41.51927199906],[-71.737442,41.51877999906],[-71.737404,41.51871499906],[-71.737358,41.51864999906],[-71.73732,41.51858499906],[-71.737198,41.51832199906],[-71.737083,41.51809299906],[-71.736946,41.51787899906],[-71.736923,41.51785299906],[-71.73687,41.51777599906],[-71.736252,41.51711699906],[-71.735718,41.51655599906],[-71.734894,41.51568199906],[-71.734787,41.51555999906],[-71.73465,41.51535799906],[-71.73452,41.51509899906],[-71.734489,41.51500299906],[-71.734444,41.51483199906],[-71.734428,41.51474799906],[-71.734314,41.51393099906],[-71.734169,41.51276799906],[-71.734146,41.51265299906],[-71.734131,41.51254299906],[-71.734108,41.51243599906],[-71.734032,41.51220299906],[-71.733932,41.51198599906],[-71.733803,41.51178699906],[-71.733688,41.51164599906],[-71.73349,41.51143999906],[-71.733307,41.51129199906],[-71.733086,41.51113899906],[-71.732933,41.51101699906],[-71.732773,41.51091399906],[-71.732597,41.51081799906],[-71.731255,41.51022699906],[-71.731232,41.50972699906],[-71.731125,41.50909799906],[-71.731033,41.50846899906],[-71.730967,41.50797899906],[-71.730873,41.50728199906],[-71.730736,41.50620999906],[-71.730621,41.50545499906],[-71.730553,41.50506599906],[-71.730466,41.50442699906],[-71.7304,41.50393699906],[-71.730331,41.50350999906],[-71.730247,41.50303699906],[-71.730209,41.50284999906],[-71.729919,41.50114799906],[-71.729867,41.50075699906],[-71.729828,41.50045799906],[-71.729774,41.49990099906],[-71.729729,41.49933999906],[-71.729652,41.49864999906],[-71.729515,41.49751999906],[-71.729294,41.49597199906],[-71.729134,41.49491499906],[-71.729012,41.49391899906],[-71.728928,41.49343099906],[-71.728836,41.49283199906],[-71.728683,41.49195499906],[-71.7286,41.49153099906],[-71.728554,41.49126099906],[-71.728523,41.49108499906],[-71.72847,41.49075299906],[-71.728401,41.49044399906],[-71.728279,41.48945199906],[-71.728249,41.48911999906],[-71.728249,41.48883099906],[-71.728256,41.48876599906],[-71.728302,41.48871599906],[-71.728341,41.48808599906],[-71.72739,41.48853999906],[-71.725892,41.48924799906],[-71.724915,41.48971299906],[-71.724533,41.48990299906],[-71.724096,41.49013899906],[-71.723846,41.49027299906],[-71.723599,41.49040999906],[-71.723282,41.49058499906],[-71.723175,41.49064499906],[-71.722763,41.49089499906],[-71.722123,41.49130999906],[-71.72155,41.49168399906],[-71.721046,41.49201599906],[-71.719196,41.49323499906],[-71.71828,41.49382899906],[-71.717843,41.49411199906],[-71.717301,41.49447699906],[-71.716312,41.49509799906],[-71.716301,41.49510599906],[-71.716156,41.49520099906],[-71.716189,41.49532299906],[-71.716232,41.49560099906],[-71.716254,41.49585699906],[-71.716265,41.49616999906],[-71.716274,41.49624299906],[-71.716303,41.49637899906],[-71.716347,41.49651399906],[-71.716377,41.49657499906],[-71.716422,41.49663499906],[-71.716481,41.49668699906],[-71.716514,41.49673899906],[-71.716523,41.49677399906],[-71.716609,41.49704599906],[-71.716653,41.49721699906],[-71.716664,41.49736699906],[-71.716605,41.49744799906],[-71.716594,41.49750999906],[-71.716553,41.49763899906],[-71.716469,41.49784999906],[-71.716406,41.49813599906],[-71.716388,41.49826499906],[-71.716353,41.49838299906],[-71.716298,41.49849499906],[-71.716255,41.49855699906],[-71.71619,41.49859299906],[-71.716102,41.49862699906],[-71.716017,41.49866899906],[-71.715916,41.49866499906],[-71.715687,41.49860399906],[-71.71551,41.49857599906],[-71.715402,41.49856599906],[-71.715083,41.49856399906],[-71.715013,41.49858099906],[-71.714949,41.49862299906],[-71.714927,41.49868999906],[-71.714933,41.49874599906],[-71.714932,41.49880199906],[-71.714926,41.49881499906],[-71.715006,41.49894799906],[-71.715088,41.49906999906],[-71.715115,41.49912399906],[-71.715151,41.49917199906],[-71.715199,41.49921799906],[-71.715388,41.49934699906],[-71.715435,41.49939799906],[-71.715725,41.49983199906],[-71.715758,41.49989199906],[-71.71578,41.49995499906],[-71.715793,41.50001499906],[-71.715801,41.50009599906],[-71.715783,41.50017399906],[-71.715708,41.50033799906],[-71.715659,41.50040299906],[-71.715592,41.50045299906],[-71.715525,41.50051199906],[-71.715489,41.50055999906],[-71.715446,41.50063199906],[-71.715398,41.50074199906],[-71.715385,41.50080599906],[-71.71536,41.50098599906],[-71.715361,41.50104899906],[-71.715376,41.50111199906],[-71.715403,41.50119199906],[-71.715427,41.50124499906],[-71.715524,41.50140199906],[-71.715578,41.50147099906],[-71.715755,41.50161299906],[-71.715928,41.50180399906],[-71.715967,41.50185399906],[-71.716067,41.50201099906],[-71.71611,41.50211999906],[-71.716169,41.50234799906],[-71.716179,41.50240299906],[-71.716212,41.50251699906],[-71.716325,41.50277899906],[-71.716364,41.50289099906],[-71.716422,41.50300799906],[-71.71646,41.50305499906],[-71.716494,41.50312299906],[-71.715992,41.50405499906],[-71.715645,41.50432899906],[-71.715461,41.50479399906],[-71.714357,41.50484999906],[-71.71427,41.50451899906],[-71.713906,41.50437399906],[-71.712943,41.50464499906],[-71.712194,41.50487399906],[-71.711901,41.50476699906],[-71.711887,41.50478199906],[-71.711889,41.50483999906],[-71.711939,41.50496899906],[-71.711938,41.50504599906],[-71.711911,41.50511199906],[-71.711809,41.50524799906],[-71.711708,41.50539899906],[-71.711666,41.50544699906],[-71.711426,41.50561499906],[-71.71136,41.50566699906],[-71.711302,41.50572699906],[-71.711268,41.50578699906],[-71.711256,41.50585099906],[-71.711254,41.50592599906],[-71.711264,41.50608199906],[-71.711275,41.50616399906],[-71.711304,41.50624199906],[-71.711353,41.50627499906],[-71.711404,41.50625799906],[-71.711444,41.50620099906],[-71.711472,41.50613299906],[-71.711487,41.50606399906],[-71.711504,41.50592999906],[-71.711523,41.50586999906],[-71.711562,41.50582199906],[-71.711616,41.50586199906],[-71.711648,41.50591399906],[-71.711665,41.50597299906],[-71.711671,41.50605299906],[-71.711695,41.50611799906],[-71.71174,41.50616799906],[-71.711768,41.50621999906],[-71.711786,41.50629499906],[-71.711786,41.50635199906],[-71.71176,41.50648999906],[-71.711659,41.50679699906],[-71.711596,41.50693799906],[-71.711571,41.50700899906],[-71.711557,41.50708499906],[-71.711562,41.50715599906],[-71.711589,41.50721799906],[-71.71164,41.50728399906],[-71.711707,41.50734599906],[-71.711787,41.50739199906],[-71.711867,41.50742399906],[-71.711946,41.50743999906],[-71.712018,41.50743199906],[-71.71208,41.50739799906],[-71.712126,41.50733099906],[-71.712129,41.50725999906],[-71.71211,41.50718899906],[-71.71207,41.50713199906],[-71.712007,41.50708999906],[-71.712041,41.50707399906],[-71.712119,41.50706599906],[-71.71219,41.50708599906],[-71.712248,41.50712999906],[-71.712332,41.50722899906],[-71.712395,41.50747199906],[-71.712431,41.50764899906],[-71.71246,41.50776599906],[-71.712467,41.50781999906],[-71.712445,41.50789299906],[-71.712389,41.50793899906],[-71.712321,41.50794299906],[-71.712289,41.50792999906],[-71.712245,41.50790999906],[-71.712178,41.50786899906],[-71.712098,41.50783299906],[-71.71202,41.50781399906],[-71.711938,41.50781599906],[-71.71187,41.50783799906],[-71.711706,41.50796799906],[-71.711658,41.50802699906],[-71.711573,41.50827699906],[-71.711548,41.50833799906],[-71.711449,41.50850699906],[-71.711325,41.50866999906],[-71.711129,41.50887899906],[-71.711076,41.50892099906],[-71.71102,41.50895799906],[-71.710931,41.50900199906],[-71.710831,41.50902799906],[-71.710753,41.50903599906],[-71.710676,41.50903399906],[-71.710599,41.50902099906],[-71.710487,41.50899499906],[-71.710351,41.50896299906],[-71.710033,41.50885999906],[-71.709868,41.50882099906],[-71.709712,41.50878999906],[-71.709629,41.50877799906],[-71.709552,41.50877199906],[-71.709478,41.50877599906],[-71.709235,41.50880199906],[-71.709152,41.50881699906],[-71.70885,41.50890499906],[-71.708779,41.50893199906],[-71.708652,41.50899899906],[-71.708482,41.50912099906],[-71.708382,41.50920599906],[-71.7083,41.50930199906],[-71.708229,41.50940499906],[-71.708109,41.50956399906],[-71.708043,41.50967399906],[-71.708021,41.50972899906],[-71.708011,41.50978299906],[-71.708005,41.50989599906],[-71.707996,41.50995199906],[-71.70798,41.51000899906],[-71.70787,41.51030199906],[-71.707862,41.51036599906],[-71.707921,41.51048399906],[-71.707938,41.51055799906],[-71.707949,41.51063599906],[-71.707947,41.51071299906],[-71.70791,41.51086399906],[-71.707883,41.51093299906],[-71.707846,41.51100199906],[-71.707764,41.51112099906],[-71.707707,41.51118499906],[-71.707561,41.51131499906],[-71.707452,41.51139899906],[-71.707138,41.51160199906],[-71.707011,41.51166899906],[-71.706946,41.51169699906],[-71.706849,41.51173099906],[-71.706748,41.51175399906],[-71.70635,41.51181999906],[-71.706275,41.51183699906],[-71.706203,41.51185799906],[-71.706134,41.51188299906],[-71.705979,41.51195299906],[-71.70582,41.51204299906],[-71.705748,41.51208999906],[-71.705675,41.51214599906],[-71.705562,41.51225199906],[-71.705449,41.51237299906],[-71.705294,41.51258799906],[-71.705177,41.51274099906],[-71.704805,41.51338999906],[-71.704778,41.51344799906],[-71.704737,41.51355999906],[-71.704615,41.51382799906],[-71.704593,41.51390099906],[-71.704593,41.51397099906],[-71.704612,41.51403599906],[-71.704647,41.51409499906],[-71.704673,41.51412199906],[-71.704697,41.51414799906],[-71.70476,41.51419799906],[-71.704902,41.51429399906],[-71.704954,41.51431899906],[-71.705021,41.51433999906],[-71.705093,41.51436899906],[-71.705239,41.51443599906],[-71.705316,41.51447599906],[-71.705473,41.51459699906],[-71.705518,41.51465099906],[-71.705548,41.51471099906],[-71.705572,41.51484099906],[-71.705568,41.51490599906],[-71.705523,41.51504299906],[-71.705496,41.51510599906],[-71.705455,41.51515699906],[-71.705393,41.51520999906],[-71.70534,41.51524599906],[-71.705328,41.51525399906],[-71.705253,41.51529399906],[-71.705124,41.51534999906],[-71.704978,41.51539499906],[-71.704827,41.51544799906],[-71.704668,41.51549699906],[-71.704604,41.51553099906],[-71.704489,41.51560899906],[-71.704428,41.51563899906],[-71.70435,41.51564999906],[-71.704263,41.51565599906],[-71.704183,41.51565199906],[-71.704098,41.51566699906],[-71.704022,41.51569499906],[-71.703957,41.51573199906],[-71.703938,41.51574799906],[-71.703856,41.51581599906],[-71.703794,41.51585399906],[-71.703703,41.51589299906],[-71.703682,41.51601799906],[-71.703635,41.51603499906],[-71.703558,41.51605499906],[-71.703482,41.51608599906],[-71.703407,41.51609299906],[-71.703383,41.51613999906],[-71.703337,41.51618399906],[-71.703279,41.51621999906],[-71.703206,41.51625199906],[-71.703148,41.51626899906],[-71.702549,41.51630899906],[-71.700516,41.51737099906],[-71.698725,41.51855399906],[-71.697011,41.51949899906],[-71.69512,41.52038799906],[-71.69333,41.52128799906],[-71.691983,41.52213299906],[-71.691762,41.52230099906],[-71.691609,41.52240099906],[-71.691509,41.52246599906],[-71.691432,41.52249399906],[-71.691368,41.52252599906],[-71.690989,41.52274999906],[-71.690778,41.52285599906],[-71.690608,41.52298199906],[-71.6904,41.52311799906],[-71.690333,41.52316599906],[-71.690193,41.52324899906],[-71.690101,41.52334799906],[-71.689844,41.52356799906],[-71.689703,41.52366999906],[-71.689542,41.52377499906],[-71.689391,41.52386699906],[-71.689332,41.52391099906],[-71.689287,41.52395799906],[-71.689201,41.52406299906],[-71.689007,41.52435199906],[-71.688888,41.52451299906],[-71.688828,41.52460399906],[-71.688633,41.52498199906],[-71.68853,41.52515299906],[-71.688406,41.52538399906],[-71.688394,41.52546399906],[-71.688476,41.52547599906],[-71.688537,41.52542399906],[-71.688611,41.52532299906],[-71.688714,41.52520999906],[-71.688772,41.52516299906],[-71.688832,41.52512099906],[-71.688907,41.52501199906],[-71.689009,41.52490299906],[-71.689057,41.52484499906],[-71.689132,41.52470799906],[-71.689169,41.52465399906],[-71.689215,41.52461099906],[-71.689247,41.52463199906],[-71.689241,41.52469399906],[-71.68922,41.52475199906],[-71.689094,41.52501999906],[-71.689054,41.52509299906],[-71.688819,41.52543599906],[-71.688694,41.52564599906],[-71.688646,41.52571399906],[-71.688572,41.52584199906],[-71.688541,41.52590999906],[-71.688401,41.52618499906],[-71.688364,41.52624199906],[-71.688318,41.52629499906],[-71.688263,41.52634799906],[-71.688092,41.52652999906],[-71.688024,41.52658899906],[-71.687768,41.52679399906],[-71.687648,41.52688199906],[-71.687597,41.52693199906],[-71.687403,41.52715299906],[-71.687316,41.52727399906],[-71.687219,41.52745799906],[-71.687197,41.52751699906],[-71.687183,41.52757699906],[-71.68716,41.52776199906],[-71.687109,41.52803199906],[-71.687109,41.52810699906],[-71.687122,41.52817799906],[-71.687163,41.52829399906],[-71.687225,41.52840999906],[-71.687267,41.52846499906],[-71.687316,41.52851799906],[-71.68744,41.52862199906],[-71.687517,41.52866899906],[-71.687688,41.52875399906],[-71.687777,41.52878799906],[-71.687867,41.52881499906],[-71.68812,41.52887199906],[-71.688194,41.52888399906],[-71.68827,41.52887299906],[-71.688339,41.52882799906],[-71.688422,41.52879799906],[-71.688507,41.52877999906],[-71.688606,41.52876799906],[-71.68871,41.52876299906],[-71.689054,41.52876399906],[-71.689271,41.52877299906],[-71.68935,41.52875699906],[-71.689418,41.52871499906],[-71.689503,41.52867399906],[-71.689582,41.52865399906],[-71.68967,41.52863999906],[-71.689864,41.52861699906],[-71.690079,41.52858499906],[-71.690188,41.52857299906],[-71.690295,41.52856999906],[-71.690703,41.52860399906],[-71.69102,41.52865299906],[-71.691234,41.52868199906],[-71.691621,41.52874599906],[-71.691814,41.52875599906],[-71.691921,41.52874799906],[-71.692149,41.52871199906],[-71.692247,41.52868599906],[-71.692309,41.52865099906],[-71.692472,41.52862599906],[-71.69295,41.52852599906],[-71.693052,41.52851999906],[-71.693547,41.52856499906],[-71.693633,41.52857799906],[-71.693719,41.52858199906],[-71.693819,41.52859899906],[-71.693872,41.52864799906],[-71.693936,41.52868199906],[-71.694013,41.52869099906],[-71.694585,41.52869799906],[-71.694771,41.52868799906],[-71.694873,41.52867399906],[-71.694959,41.52865299906],[-71.695113,41.52859799906],[-71.695192,41.52856099906],[-71.695295,41.52853999906],[-71.695362,41.52855999906],[-71.69542,41.52859699906],[-71.69547,41.52864099906],[-71.695558,41.52874199906],[-71.695644,41.52886599906],[-71.695722,41.52899799906],[-71.695819,41.52913099906],[-71.696091,41.52946099906],[-71.696187,41.52957099906],[-71.696276,41.52969999906],[-71.696308,41.52975999906],[-71.69631,41.52981599906],[-71.696251,41.52992799906],[-71.696237,41.52998299906],[-71.696271,41.53004199906],[-71.696348,41.53006799906],[-71.696419,41.53004999906],[-71.696494,41.53000999906],[-71.696549,41.53005199906],[-71.696576,41.53010399906],[-71.696643,41.53027199906],[-71.696646,41.53034599906],[-71.696625,41.53041199906],[-71.696561,41.53046599906],[-71.696367,41.53056099906],[-71.696242,41.53062699906],[-71.696164,41.53068299906],[-71.69612,41.53074099906],[-71.696076,41.53085399906],[-71.695921,41.53113899906],[-71.695934,41.53115599906],[-71.696014,41.53113399906],[-71.696068,41.53109599906],[-71.69611,41.53104899906],[-71.69616,41.53101499906],[-71.696167,41.53104199906],[-71.696161,41.53123799906],[-71.69614,41.53129999906],[-71.696099,41.53134699906],[-71.696032,41.53137699906],[-71.695841,41.53141899906],[-71.695695,41.53144299906],[-71.695544,41.53148899906],[-71.695465,41.53151699906],[-71.69539,41.53154999906],[-71.695326,41.53158799906],[-71.695271,41.53162899906],[-71.695227,41.53167699906],[-71.695149,41.53178199906],[-71.695083,41.53189599906],[-71.695031,41.53201399906],[-71.695,41.53207099906],[-71.694883,41.53225599906],[-71.69477,41.53246199906],[-71.694741,41.53253599906],[-71.694689,41.53269699906],[-71.694656,41.53277699906],[-71.694611,41.53285699906],[-71.694659,41.53287299906],[-71.694733,41.53288199906],[-71.694812,41.53287699906],[-71.69488,41.53285499906],[-71.695001,41.53278299906],[-71.695081,41.53276899906],[-71.695106,41.53282499906],[-71.695077,41.53289699906],[-71.694962,41.53304599906],[-71.694934,41.53312399906],[-71.694943,41.53319899906],[-71.694971,41.53327299906],[-71.695007,41.53334699906],[-71.695098,41.53350699906],[-71.695121,41.53352999906],[-71.695158,41.53358299906],[-71.695275,41.53369999906],[-71.695374,41.53379199906],[-71.695485,41.53388099906],[-71.695597,41.53393999906],[-71.695827,41.53403599906],[-71.695889,41.53408199906],[-71.696007,41.53413799906],[-71.69618,41.53427599906],[-71.696272,41.53436699906],[-71.696407,41.53448599906],[-71.696618,41.53468599906],[-71.696683,41.53472999906],[-71.69695,41.53489499906],[-71.697095,41.53497499906],[-71.697189,41.53507399906],[-71.697229,41.53512399906],[-71.697259,41.53517499906],[-71.697279,41.53522999906],[-71.697307,41.53530899906],[-71.69732,41.53536599906],[-71.697316,41.53542399906],[-71.6973,41.53547999906],[-71.697255,41.53559399906],[-71.697266,41.53567199906],[-71.697263,41.53574399906],[-71.697246,41.53581799906],[-71.697298,41.53582899906],[-71.697316,41.53589199906],[-71.697313,41.53601999906],[-71.697295,41.53609099906],[-71.697291,41.53620599906],[-71.697288,41.53631599906],[-71.697301,41.53646199906],[-71.697314,41.53653599906],[-71.697319,41.53666299906],[-71.697345,41.53692399906],[-71.697368,41.53706399906],[-71.697403,41.53719999906],[-71.697451,41.53733499906],[-71.697485,41.53746399906],[-71.697545,41.53758999906],[-71.697628,41.53771699906],[-71.69772,41.53783699906],[-71.698011,41.53813899906],[-71.698065,41.53817999906],[-71.69818,41.53825199906],[-71.698332,41.53839899906],[-71.698379,41.53845599906],[-71.698482,41.53862099906],[-71.698508,41.53867499906],[-71.698526,41.53872699906],[-71.698542,41.53880399906],[-71.698544,41.53885799906],[-71.698537,41.53891399906],[-71.698517,41.53896999906],[-71.698473,41.53903899906],[-71.698423,41.53910499906],[-71.698366,41.53916299906],[-71.698265,41.53927899906],[-71.698204,41.53931399906],[-71.698067,41.53936999906],[-71.697988,41.53940799906],[-71.697925,41.53945599906],[-71.697732,41.53950099906],[-71.697666,41.53952499906],[-71.697609,41.53956099906],[-71.697569,41.53960899906],[-71.69753,41.53966799906],[-71.697464,41.53971399906],[-71.697393,41.53973699906],[-71.697229,41.53977399906],[-71.697065,41.53979799906],[-71.696984,41.53980399906],[-71.696907,41.53980399906],[-71.696815,41.53979399906],[-71.696746,41.53977899906],[-71.696682,41.53975299906],[-71.696559,41.53967999906],[-71.696483,41.53965599906],[-71.696409,41.53967799906],[-71.696332,41.53971299906],[-71.696196,41.53979699906],[-71.696103,41.53989399906],[-71.696057,41.53995399906],[-71.696039,41.54002299906],[-71.696039,41.54007799906],[-71.696018,41.54036099906],[-71.695994,41.54047899906],[-71.695963,41.54061299906],[-71.695922,41.54064799906],[-71.69592,41.54066799906],[-71.695899,41.54072099906],[-71.695942,41.54084299906],[-71.695952,41.54091899906],[-71.695952,41.54105399906],[-71.695962,41.54111199906],[-71.695985,41.54117299906],[-71.696027,41.54122499906],[-71.696041,41.54124299906],[-71.696112,41.54124699906],[-71.696149,41.54126099906],[-71.69622,41.54137799906],[-71.696298,41.54147199906],[-71.696402,41.54155999906],[-71.696556,41.54172199906],[-71.696592,41.54177599906],[-71.696616,41.54188299906],[-71.696662,41.54193699906],[-71.696733,41.54190699906],[-71.69678,41.54196099906],[-71.696802,41.54201699906],[-71.696802,41.54207899906],[-71.696778,41.54214199906],[-71.69675,41.54219899906],[-71.696773,41.54227199906],[-71.696775,41.54234199906],[-71.69679,41.54237499906],[-71.696806,41.54241099906],[-71.696818,41.54246799906],[-71.696808,41.54252899906],[-71.69681,41.54260799906],[-71.696896,41.54270199906],[-71.69691,41.54275699906],[-71.696893,41.54281799906],[-71.696862,41.54287699906],[-71.696852,41.54294999906],[-71.696926,41.54299899906],[-71.696995,41.54305699906],[-71.697041,41.54310799906],[-71.697077,41.54316199906],[-71.697091,41.54323199906],[-71.697116,41.54328399906],[-71.697184,41.54331199906],[-71.697287,41.54332099906],[-71.697353,41.54334499906],[-71.697372,41.54335499906],[-71.697415,41.54337699906],[-71.697472,41.54341399906],[-71.697582,41.54350199906],[-71.697651,41.54353599906],[-71.697732,41.54356399906],[-71.697811,41.54359999906],[-71.69789,41.54364399906],[-71.697966,41.54369199906],[-71.698098,41.54379099906],[-71.698204,41.54388899906],[-71.698263,41.54395899906],[-71.698288,41.54401299906],[-71.69821,41.54413799906],[-71.698131,41.54417699906],[-71.69805,41.54419799906],[-71.697955,41.54420999906],[-71.697732,41.54420099906],[-71.6976,41.54420599906],[-71.697389,41.54423599906],[-71.697314,41.54424999906],[-71.697175,41.54428399906],[-71.697068,41.54432899906],[-71.696988,41.54438899906],[-71.696936,41.54445799906],[-71.696913,41.54452999906],[-71.69692,41.54460499906],[-71.696947,41.54467899906],[-71.69699,41.54474899906],[-71.69704,41.54481499906],[-71.697101,41.54487199906],[-71.697187,41.54491899906],[-71.697386,41.54500899906],[-71.697497,41.54504799906],[-71.697624,41.54508699906],[-71.698226,41.54524999906],[-71.6983,41.54527399906],[-71.698429,41.54532399906],[-71.698542,41.54537299906],[-71.698657,41.54540399906],[-71.698762,41.54540799906],[-71.698856,41.54536899906],[-71.698868,41.54531899906],[-71.698842,41.54526199906],[-71.698796,41.54519699906],[-71.698733,41.54513399906],[-71.698673,41.54508499906],[-71.698678,41.54505899906],[-71.698751,41.54506999906],[-71.698818,41.54509299906],[-71.698868,41.54507799906],[-71.69887,41.54500699906],[-71.698841,41.54494499906],[-71.698744,41.54482499906],[-71.698721,41.54476299906],[-71.69875,41.54463899906],[-71.698747,41.54448199906],[-71.698774,41.54444199906],[-71.698826,41.54448499906],[-71.698859,41.54454099906],[-71.698887,41.54460299906],[-71.698892,41.54467199906],[-71.698888,41.54474199906],[-71.698908,41.54480999906],[-71.698948,41.54486899906],[-71.698978,41.54493399906],[-71.699058,41.54514999906],[-71.699169,41.54536299906],[-71.6992,41.54543899906],[-71.699215,41.54551199906],[-71.699207,41.54557799906],[-71.699181,41.54563499906],[-71.699138,41.54567899906],[-71.699082,41.54571299906],[-71.698953,41.54577199906],[-71.698898,41.54581999906],[-71.698862,41.54587899906],[-71.698842,41.54593799906],[-71.698846,41.54599299906],[-71.698858,41.54604799906],[-71.69889,41.54609799906],[-71.698937,41.54613799906],[-71.699011,41.54620099906],[-71.699056,41.54621199906],[-71.699081,41.54614899906],[-71.699082,41.54607799906],[-71.699111,41.54603299906],[-71.699167,41.54599899906],[-71.69923,41.54597199906],[-71.699282,41.54598299906],[-71.699304,41.54604999906],[-71.699358,41.54637099906],[-71.699376,41.54643199906],[-71.699521,41.54673799906],[-71.699562,41.54687699906],[-71.699588,41.54694399906],[-71.69959,41.54701599906],[-71.699584,41.54707899906],[-71.699634,41.54720899906],[-71.699681,41.54727499906],[-71.699739,41.54732699906],[-71.699768,41.54739499906],[-71.699729,41.54746399906],[-71.699734,41.54753099906],[-71.699721,41.54759899906],[-71.699686,41.54766199906],[-71.699724,41.54770999906],[-71.699844,41.54778599906],[-71.699897,41.54783499906],[-71.699912,41.54786499906],[-71.700241,41.54824499906],[-71.700313,41.54836699906],[-71.700344,41.54852299906],[-71.700351,41.54866699906],[-71.700389,41.54874099906],[-71.700533,41.54881699906],[-71.700717,41.54885999906],[-71.700835,41.54885099906],[-71.700931,41.54880299906],[-71.700981,41.54873399906],[-71.700976,41.54861799906],[-71.701112,41.54861099906],[-71.701282,41.54863799906],[-71.701507,41.54867599906],[-71.701576,41.54870499906],[-71.701657,41.54872999906],[-71.701693,41.54874699906],[-71.701806,41.54882999906],[-71.701975,41.54899999906],[-71.702273,41.54919999906],[-71.70254,41.54932299906],[-71.702949,41.54936799906],[-71.703243,41.54932699906],[-71.70341,41.54926699906],[-71.703704,41.54911899906],[-71.703967,41.54899999906],[-71.704048,41.54899299906],[-71.704203,41.54904599906],[-71.704331,41.54911999906],[-71.704404,41.54913899906],[-71.70444,41.54908999906],[-71.704477,41.54897899906],[-71.704555,41.54885799906],[-71.704622,41.54874299906],[-71.704654,41.54866499906],[-71.70472,41.54850799906],[-71.704784,41.54838999906],[-71.70485,41.54828299906],[-71.705038,41.54808299906],[-71.705145,41.54798599906],[-71.705294,41.54792399906],[-71.705455,41.54787699906],[-71.705552,41.54785899906],[-71.705788,41.54781899906],[-71.706078,41.54774199906],[-71.706213,41.54767299906],[-71.706457,41.54751099906],[-71.706581,41.54742199906],[-71.706785,41.54720299906],[-71.706887,41.54712099906],[-71.707008,41.54708199906],[-71.707154,41.54707199906],[-71.7073,41.54707799906],[-71.707452,41.54709799906],[-71.707772,41.54713099906],[-71.707949,41.54716499906],[-71.708267,41.54725099906],[-71.708377,41.54730599906],[-71.708422,41.54742399906],[-71.708505,41.54753599906],[-71.708612,41.54759799906],[-71.708777,41.54762999906],[-71.708954,41.54759399906],[-71.7091,41.54755199906],[-71.709243,41.54756099906],[-71.709372,41.54764099906],[-71.709448,41.54774499906],[-71.709515,41.54788299906],[-71.709557,41.54800199906],[-71.709526,41.54803899906],[-71.709382,41.54803499906],[-71.709351,41.54805699906],[-71.709387,41.54814899906],[-71.709603,41.54852999906],[-71.709755,41.54860699906],[-71.709884,41.54866299906],[-71.710001,41.54873299906],[-71.710089,41.54881799906],[-71.710145,41.54892599906],[-71.710152,41.54906699906],[-71.710134,41.54920099906],[-71.710068,41.54930499906],[-71.710109,41.54933399906],[-71.710261,41.54937799906],[-71.710432,41.54941299906],[-71.710728,41.54943699906],[-71.710905,41.54948299906],[-71.711059,41.54955899906],[-71.711222,41.54963199906],[-71.711364,41.54971699906],[-71.711388,41.54977699906],[-71.711359,41.54983699906],[-71.71127,41.54991099906],[-71.710969,41.55000699906],[-71.710913,41.55007999906],[-71.710941,41.55014499906],[-71.711031,41.55020099906],[-71.711128,41.55020099906],[-71.711271,41.55015099906],[-71.711412,41.55011199906],[-71.711561,41.55008499906],[-71.711734,41.55008099906],[-71.711882,41.55009799906],[-71.712022,41.55016699906],[-71.71214,41.55026199906],[-71.712262,41.55033799906],[-71.712411,41.55038199906],[-71.712586,41.55039199906],[-71.712736,41.55035499906],[-71.712803,41.55029899906],[-71.712814,41.55018699906],[-71.712811,41.55005599906],[-71.712855,41.54996899906],[-71.712983,41.54993499906],[-71.713111,41.54994399906],[-71.713205,41.55001999906],[-71.713277,41.55014899906],[-71.713367,41.55027599906],[-71.713443,41.55039899906],[-71.713544,41.55050999906],[-71.713615,41.55060999906],[-71.713675,41.55074399906],[-71.713755,41.55099399906],[-71.713806,41.55107599906],[-71.713922,41.55115399906],[-71.714031,41.55123899906],[-71.71413,41.55134999906],[-71.714195,41.55145499906],[-71.714278,41.55152099906],[-71.714409,41.55156799906],[-71.714689,41.55165299906],[-71.714776,41.55172099906],[-71.714798,41.55181299906],[-71.714751,41.55189399906],[-71.714639,41.55197799906],[-71.71454,41.55207699906],[-71.714454,41.55220199906],[-71.71436,41.55230299906],[-71.714269,41.55240899906],[-71.714194,41.55251899906],[-71.714162,41.55257399906],[-71.714131,41.55262299906],[-71.714061,41.55275599906],[-71.714007,41.55287099906],[-71.714016,41.55295499906],[-71.714068,41.55308099906],[-71.714126,41.55318699906],[-71.714225,41.55328499906],[-71.714249,41.55330599906],[-71.714347,41.55338899906],[-71.714458,41.55350399906],[-71.714527,41.55360299906],[-71.714611,41.55369499906],[-71.714787,41.55390999906],[-71.714891,41.55401199906],[-71.714933,41.55406099906],[-71.714963,41.55409499906],[-71.714977,41.55411099906],[-71.715009,41.55418299906],[-71.715018,41.55420299906],[-71.717705,41.55390299906],[-71.718136,41.55385599906],[-71.718263,41.55384099906],[-71.719357,41.55371999906],[-71.719982,41.55365199906],[-71.725601,41.55304499906],[-71.72864,41.55271799906],[-71.729799,41.55261599906],[-71.72979,41.55253599906],[-71.729783,41.55245799906],[-71.729706,41.55158199906],[-71.729622,41.55079699906],[-71.72961,41.55065799906],[-71.729599,41.55052899906],[-71.729561,41.55023199906],[-71.729538,41.55012099906],[-71.7295,41.54999899906],[-71.729309,41.54966399906],[-71.728798,41.54881299906],[-71.728584,41.54847299906],[-71.728523,41.54836299906],[-71.728409,41.54819899906],[-71.728203,41.54795099906],[-71.728088,41.54780199906],[-71.728004,41.54766099906],[-71.727715,41.54708499906],[-71.727531,41.54669199906],[-71.727478,41.54660399906],[-71.727226,41.54605899906],[-71.727135,41.54582599906],[-71.726974,41.54526499906],[-71.726929,41.54504799906],[-71.726791,41.54451399906],[-71.726761,41.54436499906],[-71.726738,41.54421599906],[-71.726608,41.54358299906],[-71.726578,41.54344599906],[-71.726532,41.54318599906],[-71.726425,41.54278599906],[-71.72625,41.54206799906],[-71.726234,41.54198799906],[-71.726204,41.54188899906],[-71.726067,41.54158399906],[-71.72599,41.54143499906],[-71.725914,41.54126399906],[-71.725739,41.54095499906],[-71.725441,41.54038199906],[-71.725342,41.54016899906],[-71.725235,41.53998199906],[-71.724831,41.53921899906],[-71.724609,41.53873799906],[-71.724442,41.53843699906],[-71.724326,41.53820999906],[-71.724272,41.53808499906],[-71.724198,41.53790199906],[-71.723863,41.53723499906],[-71.723578,41.53664699906],[-71.723441,41.53634899906],[-71.723326,41.53607399906],[-71.723257,41.53588999906],[-71.722895,41.53487099906],[-71.722755,41.53456499906],[-71.722511,41.53415299906],[-71.722313,41.53376799906],[-71.722122,41.53338199906],[-71.722061,41.53324899906],[-71.721989,41.53311499906],[-71.721901,41.53295099906],[-71.721825,41.53279899906],[-71.72168,41.53256599906],[-71.721352,41.53208899906],[-71.721199,41.53189499906],[-71.72139,41.53187599906],[-71.721489,41.53185299906],[-71.722641,41.53161599906],[-71.723366,41.53145599906],[-71.723755,41.53137999906],[-71.724669,41.53115699906],[-71.725151,41.53103999906],[-71.725677,41.53088799906],[-71.726067,41.53076899906],[-71.726669,41.53061299906],[-71.726898,41.53057499906],[-71.727195,41.53051899906],[-71.727274,41.53050299906],[-71.727594,41.53044999906],[-71.727644,41.53043899906],[-71.727908,41.53040099906],[-71.728388,41.53032199906],[-71.728897,41.53026299906],[-71.729071,41.53025299906],[-71.729356,41.53023899906],[-71.729499,41.53023099906],[-71.729802,41.53022199906],[-71.729876,41.53021999906],[-71.729921,41.53022099906],[-71.730634,41.53022399906],[-71.73145,41.53021699906],[-71.731693,41.53021599906],[-71.73253,41.53021599906],[-71.732637,41.53021399906],[-71.732736,41.53020999906],[-71.733444,41.53016699906],[-71.734502,41.53014099906],[-71.735046,41.53012799906],[-71.735649,41.53013199906],[-71.735832,41.53013999906],[-71.735985,41.53015099906],[-71.736183,41.53018199906],[-71.736382,41.53022799906],[-71.736336,41.52958299906],[-71.736305,41.52925899906],[-71.736247,41.52880099906],[-71.73616,41.52814099906],[-71.736115,41.52770599906],[-71.73613,41.52757299906],[-71.736145,41.52751499906],[-71.736191,41.52740099906],[-71.736252,41.52729399906],[-71.73629,41.52725199906],[-71.736305,41.52722499906],[-71.736319,41.52721199906],[-71.736412,41.52710299906],[-71.736458,41.52706099906],[-71.736511,41.52701999906],[-71.736626,41.52694299906],[-71.737228,41.52657699906],[-71.737389,41.52646599906],[-71.73745,41.52640899906],[-71.737526,41.52630999906],[-71.737579,41.52618399906],[-71.737587,41.52614999906],[-71.737587,41.52609999906],[-71.737572,41.52599699906],[-71.737442,41.52534099906],[-71.737396,41.52519999906],[-71.73732,41.52505899906],[-71.737213,41.52490999906],[-71.737137,41.52482999906],[-71.736969,41.52467299906],[-71.736702,41.52443699906],[-71.736626,41.52436099906],[-71.736595,41.52433799906],[-71.736458,41.52422299906],[-71.736366,41.52416199906],[-71.736282,41.52409699906],[-71.736107,41.52398299906],[-71.736061,41.52391099906],[-71.736061,41.52385699906],[-71.736198,41.52387999906],[-71.736435,41.52390299906],[-71.736549,41.52391799906],[-71.736778,41.52394099906],[-71.737068,41.52394899906],[-71.737282,41.52394499906],[-71.73748,41.52394099906],[-71.73777,41.52391799906],[-71.73806,41.52387599906],[-71.738152,41.52385699906],[-71.739594,41.52360199906],[-71.739914,41.52353999906],[-71.740105,41.52349499906],[-71.740387,41.52341799906],[-71.741177,41.52318699906],[-71.741456,41.52312899906],[-71.741586,41.52310899906]]]}}"}, +{"type": "blockgroup", "typeId": 507012, "areaId": 29401, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.786903,41.50403599906],[-71.786873,41.50393299906],[-71.786774,41.50382599906],[-71.786743,41.50381099906],[-71.786575,41.50370399906],[-71.786438,41.50360099906],[-71.786339,41.50348699906],[-71.78627,41.50335699906],[-71.786263,41.50307799906],[-71.786201,41.50293399906],[-71.786064,41.50284599906],[-71.785675,41.50272399906],[-71.785408,41.50258299906],[-71.785126,41.50245699906],[-71.784798,41.50234199906],[-71.784615,41.50223899906],[-71.784386,41.50207899906],[-71.784111,41.50195299906],[-71.783796,41.50182499906],[-71.783661,41.50174299906],[-71.783592,41.50159099906],[-71.783585,41.50137699906],[-71.783531,41.50120899906],[-71.783516,41.50110199906],[-71.783562,41.50094199906],[-71.783646,41.50076299906],[-71.783752,41.50064499906],[-71.783844,41.50050399906],[-71.783897,41.50036999906],[-71.783897,41.50017899906],[-71.783882,41.49993499906],[-71.783882,41.49972499906],[-71.78392,41.49955399906],[-71.784019,41.49938199906],[-71.784157,41.49919099906],[-71.784209,41.49898399906],[-71.78437,41.49816499906],[-71.784401,41.49791699906],[-71.78434,41.49756199906],[-71.784203,41.49710099906],[-71.783989,41.49657399906],[-71.783897,41.49636499906],[-71.783775,41.49607499906],[-71.783417,41.49537699906],[-71.783066,41.49474699906],[-71.782738,41.49427399906],[-71.782333,41.49357999906],[-71.781837,41.49249599906],[-71.781456,41.49187899906],[-71.781052,41.49126399906],[-71.780235,41.48976499906],[-71.780022,41.48936499906],[-71.779892,41.48910899906],[-71.779793,41.48888399906],[-71.779404,41.48780399906],[-71.779259,41.48747999906],[-71.779121,41.48720599906],[-71.778458,41.48583199906],[-71.778137,41.48519499906],[-71.778022,41.48497499906],[-71.777931,41.48480199906],[-71.777725,41.48435999906],[-71.777603,41.48411599906],[-71.777451,41.48383699906],[-71.777367,41.48364999906],[-71.777267,41.48336399906],[-71.777168,41.48305099906],[-71.777023,41.48266199906],[-71.77681,41.48216199906],[-71.776558,41.48167399906],[-71.77639,41.48139599906],[-71.776176,41.48096499906],[-71.7761,41.48072799906],[-71.775978,41.48001899906],[-71.775925,41.47978999906],[-71.775841,41.47957199906],[-71.775726,41.47935899906],[-71.775604,41.47915299906],[-71.775528,41.47897699906],[-71.775505,41.47886999906],[-71.775513,41.47876699906],[-71.775543,41.47858799906],[-71.775635,41.47837799906],[-71.775696,41.47820999906],[-71.775864,41.47789799906],[-71.77597,41.47771499906],[-71.776146,41.47750499906],[-71.776314,41.47732899906],[-71.776581,41.47711599906],[-71.776955,41.47679099906],[-71.777031,41.47668499906],[-71.777107,41.47653999906],[-71.77713,41.47640999906],[-71.777138,41.47627999906],[-71.777138,41.47602499906],[-71.777145,41.47574999906],[-71.777176,41.47548699906],[-71.777203,41.47531199906],[-71.777283,41.47478499906],[-71.777321,41.47446799906],[-71.777374,41.47413299906],[-71.777443,41.47376999906],[-71.77758,41.47312899906],[-71.777618,41.47299599906],[-71.777679,41.47285799906],[-71.777779,41.47268699906],[-71.777901,41.47252999906],[-71.777962,41.47238199906],[-71.777977,41.47227899906],[-71.777983,41.47215899906],[-71.777985,41.47211799906],[-71.777954,41.47186999906],[-71.777901,41.47141999906],[-71.777847,41.47106599906],[-71.777763,41.47034799906],[-71.777733,41.46995899906],[-71.777733,41.46974899906],[-71.777748,41.46936399906],[-71.777756,41.46899399906],[-71.777809,41.46860099906],[-71.777847,41.46840299906],[-71.777863,41.46831499906],[-71.777885,41.46807899906],[-71.777893,41.46786899906],[-71.77784,41.46766299906],[-71.777779,41.46750299906],[-71.777649,41.46722799906],[-71.777412,41.46676999906],[-71.777367,41.46655999906],[-71.777344,41.46633899906],[-71.777351,41.46612499906],[-71.777428,41.46546899906],[-71.777466,41.46518699906],[-71.777565,41.46485899906],[-71.777679,41.46456899906],[-71.777817,41.46414899906],[-71.777863,41.46396599906],[-71.777863,41.46380999906],[-71.777855,41.46364999906],[-71.777832,41.46345899906],[-71.777779,41.46314199906],[-71.777763,41.46287499906],[-71.777763,41.46266599906],[-71.777771,41.46249799906],[-71.777809,41.46207399906],[-71.77787,41.46191399906],[-71.777908,41.46173499906],[-71.777962,41.46152899906],[-71.777977,41.46145199906],[-71.777451,41.46128499906],[-71.776871,41.46105599906],[-71.77652,41.46090299906],[-71.776222,41.46078099906],[-71.77565,41.46057899906],[-71.775511,41.46053699906],[-71.774948,41.46037699906],[-71.774384,41.46027799906],[-71.774048,41.46022799906],[-71.773224,41.46016299906],[-71.771928,41.46009299906],[-71.771866,41.46014399906],[-71.771675,41.46032299906],[-71.771114,41.46086199906],[-71.769766,41.46209299906],[-71.76886,41.46288599906],[-71.767468,41.46415799906],[-71.767109,41.46447499906],[-71.767086,41.46448999906],[-71.766721,41.46479899906],[-71.766181,41.46522699906],[-71.765778,41.46552899906],[-71.764924,41.46612099906],[-71.764278,41.46655999906],[-71.76341,41.46716299906],[-71.760744,41.46899799906],[-71.760055,41.46947199906],[-71.759166,41.47007999906],[-71.758389,41.47061099906],[-71.757526,41.47120399906],[-71.756709,41.47175599906],[-71.755946,41.47228099906],[-71.755282,41.47274899906],[-71.754961,41.47296999906],[-71.754648,41.47318299906],[-71.753829,41.47376299906],[-71.75184,41.47511699906],[-71.749606,41.47664099906],[-71.747955,41.47778299906],[-71.746941,41.47845099906],[-71.745865,41.47920199906],[-71.745088,41.47973299906],[-71.744629,41.48001499906],[-71.744156,41.48030899906],[-71.743667,41.48058999906],[-71.743423,41.48073199906],[-71.742615,41.48117299906],[-71.741721,41.48160499906],[-71.73952,41.48269499906],[-71.738282,41.48327999906],[-71.737312,41.48372299906],[-71.736603,41.48406599906],[-71.735664,41.48450499906],[-71.734262,41.48517899906],[-71.73317,41.48572399906],[-71.733133,41.48573899906],[-71.733115,41.48574699906],[-71.73301,41.48579499906],[-71.732964,41.48581799906],[-71.731602,41.48646899906],[-71.730686,41.48692499906],[-71.730274,41.48713499906],[-71.728498,41.48800699906],[-71.728341,41.48808599906],[-71.728302,41.48871599906],[-71.728256,41.48876599906],[-71.728249,41.48883099906],[-71.728249,41.48911999906],[-71.728279,41.48945199906],[-71.728401,41.49044399906],[-71.72847,41.49075299906],[-71.728523,41.49108499906],[-71.728554,41.49126099906],[-71.7286,41.49153099906],[-71.728683,41.49195499906],[-71.728836,41.49283199906],[-71.728928,41.49343099906],[-71.729012,41.49391899906],[-71.729134,41.49491499906],[-71.729294,41.49597199906],[-71.729515,41.49751999906],[-71.729652,41.49864999906],[-71.729729,41.49933999906],[-71.729774,41.49990099906],[-71.729828,41.50045799906],[-71.729867,41.50075699906],[-71.729919,41.50114799906],[-71.730209,41.50284999906],[-71.730247,41.50303699906],[-71.730331,41.50350999906],[-71.7304,41.50393699906],[-71.730466,41.50442699906],[-71.730553,41.50506599906],[-71.730621,41.50545499906],[-71.730736,41.50620999906],[-71.730873,41.50728199906],[-71.730967,41.50797899906],[-71.731033,41.50846899906],[-71.731125,41.50909799906],[-71.731232,41.50972699906],[-71.731255,41.51022699906],[-71.732597,41.51081799906],[-71.732773,41.51091399906],[-71.732933,41.51101699906],[-71.733086,41.51113899906],[-71.733307,41.51129199906],[-71.73349,41.51143999906],[-71.733688,41.51164599906],[-71.733803,41.51178699906],[-71.733932,41.51198599906],[-71.734032,41.51220299906],[-71.734108,41.51243599906],[-71.734131,41.51254299906],[-71.734146,41.51265299906],[-71.734169,41.51276799906],[-71.734314,41.51393099906],[-71.734428,41.51474799906],[-71.734444,41.51483199906],[-71.734489,41.51500299906],[-71.73452,41.51509899906],[-71.73465,41.51535799906],[-71.734787,41.51555999906],[-71.734894,41.51568199906],[-71.735718,41.51655599906],[-71.736252,41.51711699906],[-71.73687,41.51777599906],[-71.736923,41.51785299906],[-71.736946,41.51787899906],[-71.737083,41.51809299906],[-71.737198,41.51832199906],[-71.73732,41.51858499906],[-71.737358,41.51864999906],[-71.737404,41.51871499906],[-71.737442,41.51877999906],[-71.737808,41.51927199906],[-71.7379,41.51945099906],[-71.737946,41.51956199906],[-71.737991,41.51975299906],[-71.737999,41.51982099906],[-71.738022,41.51991999906],[-71.738052,41.52001999906],[-71.738075,41.52012299906],[-71.738197,41.52101899906],[-71.738251,41.52138099906],[-71.738266,41.52152299906],[-71.738327,41.52187699906],[-71.738403,41.52240799906],[-71.738441,41.52250299906],[-71.738472,41.52255199906],[-71.738495,41.52257499906],[-71.738556,41.52262099906],[-71.738625,41.52265499906],[-71.73877,41.52268999906],[-71.739006,41.52270499906],[-71.741066,41.52256799906],[-71.741142,41.52256799906],[-71.74118,41.52257199906],[-71.741219,41.52258299906],[-71.741287,41.52260999906],[-71.741318,41.52263599906],[-71.741341,41.52267099906],[-71.741371,41.52270099906],[-71.741577,41.52308999906],[-71.741586,41.52310899906],[-71.74176,41.52309199906],[-71.742111,41.52308299906],[-71.742481,41.52305399906],[-71.74366,41.52299499906],[-71.744545,41.52295299906],[-71.744743,41.52292999906],[-71.744934,41.52290299906],[-71.745201,41.52284199906],[-71.7453,41.52281199906],[-71.745444,41.52276099906],[-71.74556,41.52271999906],[-71.745735,41.52264399906],[-71.746292,41.52236899906],[-71.746475,41.52228499906],[-71.746544,41.52226299906],[-71.746613,41.52223599906],[-71.746765,41.52218599906],[-71.746849,41.52216299906],[-71.746902,41.52214799906],[-71.747093,41.52210599906],[-71.747299,41.52207899906],[-71.747414,41.52207199906],[-71.74752,41.52205999906],[-71.748199,41.52202599906],[-71.749557,41.52196499906],[-71.750113,41.52193499906],[-71.750641,41.52190799906],[-71.751892,41.52185099906],[-71.75222,41.52183499906],[-71.752434,41.52181999906],[-71.752625,41.52178999906],[-71.752716,41.52176999906],[-71.752815,41.52175499906],[-71.752907,41.52173199906],[-71.753006,41.52171299906],[-71.753159,41.52167099906],[-71.753487,41.52157199906],[-71.7537,41.52152999906],[-71.754059,41.52148099906],[-71.75576,41.52133199906],[-71.757057,41.52121499906],[-71.757439,41.52120999906],[-71.757791,41.52120699906],[-71.758201,41.52121399906],[-71.758535,41.52123099906],[-71.758663,41.52125699906],[-71.758808,41.52128699906],[-71.758919,41.52124399906],[-71.758985,41.52123399906],[-71.759052,41.52122399906],[-71.759124,41.52121399906],[-71.759197,41.52120699906],[-71.759758,41.52114899906],[-71.76017,41.52111399906],[-71.760536,41.52106899906],[-71.760574,41.52106099906],[-71.760696,41.52102999906],[-71.76075,41.52100799906],[-71.760816,41.52096299906],[-71.760834,41.52094699906],[-71.760864,41.52090799906],[-71.760929,41.52073799906],[-71.761009,41.52049599906],[-71.761078,41.52033999906],[-71.761108,41.52029399906],[-71.761131,41.52024799906],[-71.761185,41.52016099906],[-71.761215,41.52012299906],[-71.761238,41.52008399906],[-71.761238,41.52006499906],[-71.761246,41.52004599906],[-71.761246,41.52000799906],[-71.761253,41.51996599906],[-71.761261,41.51954299906],[-71.761276,41.51938999906],[-71.761299,41.51932499906],[-71.761314,41.51925999906],[-71.761345,41.51919599906],[-71.761391,41.51912299906],[-71.761497,41.51898599906],[-71.762024,41.51822999906],[-71.76207,41.51817699906],[-71.762169,41.51804399906],[-71.762215,41.51797499906],[-71.762329,41.51777299906],[-71.762448,41.51749699906],[-71.762535,41.51729599906],[-71.76297,41.51647899906],[-71.76313,41.51620099906],[-71.763313,41.51588399906],[-71.76339,41.51573199906],[-71.763435,41.51565599906],[-71.763557,41.51548799906],[-71.763626,41.51540399906],[-71.763916,41.51509499906],[-71.763985,41.51503399906],[-71.764046,41.51497299906],[-71.764183,41.51488899906],[-71.764359,41.51479299906],[-71.76458,41.51468699906],[-71.764679,41.51464799906],[-71.764786,41.51461399906],[-71.764885,41.51457599906],[-71.76561,41.51434699906],[-71.766052,41.51418699906],[-71.766953,41.51389699906],[-71.767113,41.51383599906],[-71.767189,41.51380199906],[-71.767319,41.51373299906],[-71.767662,41.51351899906],[-71.767723,41.51347399906],[-71.767792,41.51343199906],[-71.767868,41.51337399906],[-71.767952,41.51331699906],[-71.768028,41.51325599906],[-71.768135,41.51314499906],[-71.768181,41.51308399906],[-71.768349,41.51279399906],[-71.768494,41.51246999906],[-71.768524,41.51241699906],[-71.768547,41.51236299906],[-71.768608,41.51217999906],[-71.768669,41.51204299906],[-71.768753,41.51188699906],[-71.768784,41.51184799906],[-71.76886,41.51176799906],[-71.768967,41.51168399906],[-71.769028,41.51164599906],[-71.769165,41.51156999906],[-71.769325,41.51150099906],[-71.76967,41.51138099906],[-71.769836,41.51132199906],[-71.770187,41.51120799906],[-71.770485,41.51110799906],[-71.77076,41.51103199906],[-71.77095,41.51098599906],[-71.771042,41.51097099906],[-71.771172,41.51095599906],[-71.771431,41.51094399906],[-71.771645,41.51095199906],[-71.771873,41.51097899906],[-71.772064,41.51100899906],[-71.772301,41.51105899906],[-71.773216,41.51127999906],[-71.77343,41.51128399906],[-71.773674,41.51121899906],[-71.773849,41.51111599906],[-71.774109,41.51093299906],[-71.774284,41.51078799906],[-71.774376,41.51060499906],[-71.77446,41.51031499906],[-71.774544,41.51006699906],[-71.774666,41.50990299906],[-71.774879,41.50971999906],[-71.775024,41.50958299906],[-71.775057,41.50955499906],[-71.775078,41.50953699906],[-71.775299,41.50928899906],[-71.775551,41.50917399906],[-71.775787,41.50910599906],[-71.776176,41.50911299906],[-71.776794,41.50913199906],[-71.777061,41.50910599906],[-71.777374,41.50910199906],[-71.778099,41.50912499906],[-71.778244,41.50911699906],[-71.778381,41.50909799906],[-71.778656,41.50900299906],[-71.778831,41.50897999906],[-71.779015,41.50892599906],[-71.779137,41.50878499906],[-71.779228,41.50873599906],[-71.779381,41.50871299906],[-71.779572,41.50871299906],[-71.779831,41.50879299906],[-71.780045,41.50883499906],[-71.780235,41.50882299906],[-71.780434,41.50878499906],[-71.780594,41.50878099906],[-71.781067,41.50881199906],[-71.781181,41.50880799906],[-71.781326,41.50877799906],[-71.781517,41.50872399906],[-71.781792,41.50861699906],[-71.781975,41.50857199906],[-71.782234,41.50852599906],[-71.782745,41.50846099906],[-71.782944,41.50846899906],[-71.783134,41.50849499906],[-71.783279,41.50853299906],[-71.783394,41.50854099906],[-71.783524,41.50851099906],[-71.783699,41.50841499906],[-71.783951,41.50828599906],[-71.784164,41.50818999906],[-71.784271,41.50811399906],[-71.784393,41.50799899906],[-71.784492,41.50786199906],[-71.784721,41.50744599906],[-71.784935,41.50708399906],[-71.785255,41.50664099906],[-71.785378,41.50645399906],[-71.785469,41.50629399906],[-71.785591,41.50619099906],[-71.785713,41.50614499906],[-71.785942,41.50610699906],[-71.786102,41.50606199906],[-71.786263,41.50594299906],[-71.786514,41.50566499906],[-71.786675,41.50544699906],[-71.786686,41.50538299906],[-71.786705,41.50527199906],[-71.786713,41.50505799906],[-71.786751,41.50481799906],[-71.786751,41.50460799906],[-71.786766,41.50434899906],[-71.786873,41.50421499906],[-71.786903,41.50403599906]]]}}"}, +{"type": "blockgroup", "typeId": 507013, "areaId": 29402, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.796669,41.44249399906],[-71.795926,41.44298399906],[-71.79435,41.44403099906],[-71.793358,41.44471699906],[-71.792913,41.44501999906],[-71.791809,41.44577399906],[-71.791521,41.44596799906],[-71.791369,41.44607699906],[-71.791203,41.44618099906],[-71.79101,41.44630099906],[-71.78991,41.44689299906],[-71.789217,41.44725699906],[-71.788606,41.44753799906],[-71.788352,41.44765099906],[-71.786944,41.44823999906],[-71.786639,41.44838099906],[-71.78653,41.44842099906],[-71.78643,41.44846299906],[-71.786308,41.44852099906],[-71.785698,41.44877599906],[-71.78533,41.44893499906],[-71.784949,41.44910999906],[-71.78434,41.44939599906],[-71.783774,41.44968599906],[-71.783456,41.44987799906],[-71.782928,41.45021099906],[-71.782639,41.45041299906],[-71.782491,41.45052999906],[-71.782242,41.45072599906],[-71.781788,41.45112899906],[-71.78073,41.45210399906],[-71.780406,41.45239099906],[-71.778295,41.45430699906],[-71.778203,41.45438899906],[-71.777843,41.45471299906],[-71.777301,41.45521599906],[-71.776651,41.45579099906],[-71.775849,41.45652599906],[-71.775186,41.45714299906],[-71.77449,41.45777499906],[-71.774141,41.45808099906],[-71.773224,41.45891999906],[-71.773134,41.45900899906],[-71.772964,41.45914499906],[-71.772232,41.45981999906],[-71.772011,41.46001399906],[-71.77195,41.46007499906],[-71.771928,41.46009299906],[-71.773224,41.46016299906],[-71.774048,41.46022799906],[-71.774384,41.46027799906],[-71.774948,41.46037699906],[-71.775511,41.46053699906],[-71.77565,41.46057899906],[-71.776222,41.46078099906],[-71.77652,41.46090299906],[-71.776871,41.46105599906],[-71.777451,41.46128499906],[-71.777977,41.46145199906],[-71.777962,41.46152899906],[-71.777908,41.46173499906],[-71.77787,41.46191399906],[-71.777809,41.46207399906],[-71.777771,41.46249799906],[-71.777763,41.46266599906],[-71.777763,41.46287499906],[-71.777779,41.46314199906],[-71.777832,41.46345899906],[-71.777855,41.46364999906],[-71.777863,41.46380999906],[-71.777863,41.46396599906],[-71.777817,41.46414899906],[-71.777679,41.46456899906],[-71.777565,41.46485899906],[-71.777466,41.46518699906],[-71.777428,41.46546899906],[-71.777351,41.46612499906],[-71.777344,41.46633899906],[-71.777367,41.46655999906],[-71.777412,41.46676999906],[-71.777649,41.46722799906],[-71.777779,41.46750299906],[-71.77784,41.46766299906],[-71.777893,41.46786899906],[-71.777885,41.46807899906],[-71.777863,41.46831499906],[-71.777847,41.46840299906],[-71.777809,41.46860099906],[-71.777756,41.46899399906],[-71.777748,41.46936399906],[-71.777733,41.46974899906],[-71.777733,41.46995899906],[-71.777763,41.47034799906],[-71.777847,41.47106599906],[-71.777901,41.47141999906],[-71.777954,41.47186999906],[-71.777985,41.47211799906],[-71.777983,41.47215899906],[-71.777977,41.47227899906],[-71.777962,41.47238199906],[-71.777901,41.47252999906],[-71.777779,41.47268699906],[-71.777679,41.47285799906],[-71.777618,41.47299599906],[-71.77758,41.47312899906],[-71.777443,41.47376999906],[-71.777374,41.47413299906],[-71.777321,41.47446799906],[-71.777283,41.47478499906],[-71.777203,41.47531199906],[-71.777176,41.47548699906],[-71.777145,41.47574999906],[-71.777138,41.47602499906],[-71.777138,41.47627999906],[-71.77713,41.47640999906],[-71.777107,41.47653999906],[-71.777031,41.47668499906],[-71.776955,41.47679099906],[-71.776581,41.47711599906],[-71.776314,41.47732899906],[-71.776146,41.47750499906],[-71.77597,41.47771499906],[-71.775864,41.47789799906],[-71.775696,41.47820999906],[-71.775635,41.47837799906],[-71.775543,41.47858799906],[-71.775513,41.47876699906],[-71.775505,41.47886999906],[-71.775528,41.47897699906],[-71.775604,41.47915299906],[-71.775726,41.47935899906],[-71.775841,41.47957199906],[-71.775925,41.47978999906],[-71.775978,41.48001899906],[-71.7761,41.48072799906],[-71.776176,41.48096499906],[-71.77639,41.48139599906],[-71.776558,41.48167399906],[-71.77681,41.48216199906],[-71.777023,41.48266199906],[-71.777168,41.48305099906],[-71.777267,41.48336399906],[-71.777367,41.48364999906],[-71.777451,41.48383699906],[-71.777603,41.48411599906],[-71.777725,41.48435999906],[-71.777931,41.48480199906],[-71.778022,41.48497499906],[-71.778137,41.48519499906],[-71.778458,41.48583199906],[-71.779121,41.48720599906],[-71.779259,41.48747999906],[-71.779404,41.48780399906],[-71.779793,41.48888399906],[-71.779892,41.48910899906],[-71.780022,41.48936499906],[-71.780235,41.48976499906],[-71.781052,41.49126399906],[-71.781456,41.49187899906],[-71.781837,41.49249599906],[-71.782333,41.49357999906],[-71.782738,41.49427399906],[-71.783066,41.49474699906],[-71.783417,41.49537699906],[-71.783775,41.49607499906],[-71.783897,41.49636499906],[-71.783989,41.49657399906],[-71.784203,41.49710099906],[-71.78434,41.49756199906],[-71.784401,41.49791699906],[-71.78437,41.49816499906],[-71.784209,41.49898399906],[-71.784157,41.49919099906],[-71.784019,41.49938199906],[-71.78392,41.49955399906],[-71.783882,41.49972499906],[-71.783882,41.49993499906],[-71.783897,41.50017899906],[-71.783897,41.50036999906],[-71.783844,41.50050399906],[-71.783752,41.50064499906],[-71.783646,41.50076299906],[-71.783562,41.50094199906],[-71.783516,41.50110199906],[-71.783531,41.50120899906],[-71.783585,41.50137699906],[-71.783592,41.50159099906],[-71.783661,41.50174299906],[-71.783796,41.50182499906],[-71.784111,41.50195299906],[-71.784386,41.50207899906],[-71.784615,41.50223899906],[-71.784798,41.50234199906],[-71.785126,41.50245699906],[-71.785408,41.50258299906],[-71.785675,41.50272399906],[-71.786064,41.50284599906],[-71.786201,41.50293399906],[-71.786263,41.50307799906],[-71.78627,41.50335699906],[-71.786339,41.50348699906],[-71.786438,41.50360099906],[-71.786575,41.50370399906],[-71.786743,41.50381099906],[-71.786774,41.50382599906],[-71.786873,41.50393299906],[-71.786903,41.50403599906],[-71.786873,41.50421499906],[-71.786766,41.50434899906],[-71.786751,41.50460799906],[-71.786751,41.50481799906],[-71.786713,41.50505799906],[-71.786705,41.50527199906],[-71.786686,41.50538299906],[-71.786675,41.50544699906],[-71.786514,41.50566499906],[-71.786263,41.50594299906],[-71.786102,41.50606199906],[-71.785942,41.50610699906],[-71.785713,41.50614499906],[-71.785591,41.50619099906],[-71.785469,41.50629399906],[-71.785378,41.50645399906],[-71.785255,41.50664099906],[-71.784935,41.50708399906],[-71.784721,41.50744599906],[-71.784492,41.50786199906],[-71.784393,41.50799899906],[-71.784271,41.50811399906],[-71.784164,41.50818999906],[-71.783951,41.50828599906],[-71.783699,41.50841499906],[-71.783524,41.50851099906],[-71.783394,41.50854099906],[-71.783279,41.50853299906],[-71.783134,41.50849499906],[-71.782944,41.50846899906],[-71.782745,41.50846099906],[-71.782234,41.50852599906],[-71.781975,41.50857199906],[-71.781792,41.50861699906],[-71.781517,41.50872399906],[-71.781326,41.50877799906],[-71.781181,41.50880799906],[-71.781067,41.50881199906],[-71.780594,41.50878099906],[-71.780434,41.50878499906],[-71.780235,41.50882299906],[-71.780045,41.50883499906],[-71.779831,41.50879299906],[-71.779572,41.50871299906],[-71.779381,41.50871299906],[-71.779228,41.50873599906],[-71.779137,41.50878499906],[-71.779015,41.50892599906],[-71.778831,41.50897999906],[-71.778656,41.50900299906],[-71.778381,41.50909799906],[-71.778244,41.50911699906],[-71.778099,41.50912499906],[-71.777374,41.50910199906],[-71.777061,41.50910599906],[-71.776794,41.50913199906],[-71.776176,41.50911299906],[-71.775787,41.50910599906],[-71.775551,41.50917399906],[-71.775299,41.50928899906],[-71.775078,41.50953699906],[-71.775057,41.50955499906],[-71.775024,41.50958299906],[-71.774879,41.50971999906],[-71.774666,41.50990299906],[-71.774544,41.51006699906],[-71.77446,41.51031499906],[-71.774376,41.51060499906],[-71.774284,41.51078799906],[-71.774109,41.51093299906],[-71.773849,41.51111599906],[-71.773674,41.51121899906],[-71.77343,41.51128399906],[-71.773216,41.51127999906],[-71.772301,41.51105899906],[-71.772064,41.51100899906],[-71.771873,41.51097899906],[-71.771645,41.51095199906],[-71.771431,41.51094399906],[-71.771172,41.51095599906],[-71.771042,41.51097099906],[-71.77095,41.51098599906],[-71.77076,41.51103199906],[-71.770485,41.51110799906],[-71.770187,41.51120799906],[-71.769836,41.51132199906],[-71.76967,41.51138099906],[-71.769325,41.51150099906],[-71.769165,41.51156999906],[-71.769028,41.51164599906],[-71.768967,41.51168399906],[-71.76886,41.51176799906],[-71.768784,41.51184799906],[-71.768753,41.51188699906],[-71.768669,41.51204299906],[-71.768608,41.51217999906],[-71.768547,41.51236299906],[-71.768524,41.51241699906],[-71.768494,41.51246999906],[-71.768349,41.51279399906],[-71.768181,41.51308399906],[-71.768135,41.51314499906],[-71.768028,41.51325599906],[-71.767952,41.51331699906],[-71.767868,41.51337399906],[-71.767792,41.51343199906],[-71.767723,41.51347399906],[-71.767662,41.51351899906],[-71.767319,41.51373299906],[-71.767189,41.51380199906],[-71.767113,41.51383599906],[-71.766953,41.51389699906],[-71.766052,41.51418699906],[-71.76561,41.51434699906],[-71.764885,41.51457599906],[-71.764786,41.51461399906],[-71.764679,41.51464799906],[-71.76458,41.51468699906],[-71.764359,41.51479299906],[-71.764183,41.51488899906],[-71.764046,41.51497299906],[-71.763985,41.51503399906],[-71.763916,41.51509499906],[-71.763626,41.51540399906],[-71.763557,41.51548799906],[-71.763435,41.51565599906],[-71.76339,41.51573199906],[-71.763313,41.51588399906],[-71.76313,41.51620099906],[-71.76297,41.51647899906],[-71.762535,41.51729599906],[-71.762448,41.51749699906],[-71.762329,41.51777299906],[-71.762215,41.51797499906],[-71.762169,41.51804399906],[-71.76207,41.51817699906],[-71.762024,41.51822999906],[-71.761497,41.51898599906],[-71.761391,41.51912299906],[-71.761345,41.51919599906],[-71.761314,41.51925999906],[-71.761299,41.51932499906],[-71.761276,41.51938999906],[-71.761261,41.51954299906],[-71.761253,41.51996599906],[-71.761246,41.52000799906],[-71.761246,41.52004599906],[-71.761238,41.52006499906],[-71.761238,41.52008399906],[-71.761215,41.52012299906],[-71.761185,41.52016099906],[-71.761131,41.52024799906],[-71.761108,41.52029399906],[-71.761078,41.52033999906],[-71.761009,41.52049599906],[-71.760929,41.52073799906],[-71.760864,41.52090799906],[-71.760834,41.52094699906],[-71.760816,41.52096299906],[-71.76075,41.52100799906],[-71.760696,41.52102999906],[-71.760574,41.52106099906],[-71.760536,41.52106899906],[-71.76017,41.52111399906],[-71.759758,41.52114899906],[-71.759197,41.52120699906],[-71.759124,41.52121399906],[-71.759052,41.52122399906],[-71.758985,41.52123399906],[-71.758919,41.52124399906],[-71.758808,41.52128699906],[-71.758663,41.52125699906],[-71.758535,41.52123099906],[-71.758201,41.52121399906],[-71.757791,41.52120699906],[-71.757439,41.52120999906],[-71.757057,41.52121499906],[-71.75576,41.52133199906],[-71.754059,41.52148099906],[-71.7537,41.52152999906],[-71.753487,41.52157199906],[-71.753159,41.52167099906],[-71.753006,41.52171299906],[-71.752907,41.52173199906],[-71.752815,41.52175499906],[-71.752716,41.52176999906],[-71.752625,41.52178999906],[-71.752434,41.52181999906],[-71.75222,41.52183499906],[-71.751892,41.52185099906],[-71.750641,41.52190799906],[-71.750113,41.52193499906],[-71.749557,41.52196499906],[-71.748199,41.52202599906],[-71.74752,41.52205999906],[-71.747414,41.52207199906],[-71.747299,41.52207899906],[-71.747093,41.52210599906],[-71.746902,41.52214799906],[-71.746849,41.52216299906],[-71.746765,41.52218599906],[-71.746613,41.52223599906],[-71.746544,41.52226299906],[-71.746475,41.52228499906],[-71.746292,41.52236899906],[-71.745735,41.52264399906],[-71.74556,41.52271999906],[-71.745444,41.52276099906],[-71.7453,41.52281199906],[-71.745201,41.52284199906],[-71.744934,41.52290299906],[-71.744743,41.52292999906],[-71.744545,41.52295299906],[-71.74366,41.52299499906],[-71.742481,41.52305399906],[-71.742111,41.52308299906],[-71.74176,41.52309199906],[-71.741586,41.52310899906],[-71.741456,41.52312899906],[-71.741177,41.52318699906],[-71.740387,41.52341799906],[-71.740105,41.52349499906],[-71.739914,41.52353999906],[-71.739594,41.52360199906],[-71.738152,41.52385699906],[-71.73806,41.52387599906],[-71.73777,41.52391799906],[-71.73748,41.52394099906],[-71.737282,41.52394499906],[-71.737068,41.52394899906],[-71.736778,41.52394099906],[-71.736549,41.52391799906],[-71.736435,41.52390299906],[-71.736198,41.52387999906],[-71.736061,41.52385699906],[-71.736061,41.52391099906],[-71.736107,41.52398299906],[-71.736282,41.52409699906],[-71.736366,41.52416199906],[-71.736458,41.52422299906],[-71.736595,41.52433799906],[-71.736626,41.52436099906],[-71.736702,41.52443699906],[-71.736969,41.52467299906],[-71.737137,41.52482999906],[-71.737213,41.52490999906],[-71.73732,41.52505899906],[-71.737396,41.52519999906],[-71.737442,41.52534099906],[-71.737572,41.52599699906],[-71.737587,41.52609999906],[-71.737587,41.52614999906],[-71.737579,41.52618399906],[-71.737526,41.52630999906],[-71.73745,41.52640899906],[-71.737389,41.52646599906],[-71.737228,41.52657699906],[-71.736626,41.52694299906],[-71.736511,41.52701999906],[-71.736458,41.52706099906],[-71.736412,41.52710299906],[-71.736319,41.52721199906],[-71.736305,41.52722499906],[-71.73629,41.52725199906],[-71.736252,41.52729399906],[-71.736191,41.52740099906],[-71.736145,41.52751499906],[-71.73613,41.52757299906],[-71.736115,41.52770599906],[-71.73616,41.52814099906],[-71.736247,41.52880099906],[-71.736305,41.52925899906],[-71.736336,41.52958299906],[-71.736382,41.53022799906],[-71.736183,41.53018199906],[-71.735985,41.53015099906],[-71.735832,41.53013999906],[-71.735649,41.53013199906],[-71.735046,41.53012799906],[-71.734502,41.53014099906],[-71.733444,41.53016699906],[-71.732736,41.53020999906],[-71.732637,41.53021399906],[-71.73253,41.53021599906],[-71.731693,41.53021599906],[-71.73145,41.53021699906],[-71.730634,41.53022399906],[-71.729921,41.53022099906],[-71.729876,41.53021999906],[-71.729802,41.53022199906],[-71.729499,41.53023099906],[-71.729356,41.53023899906],[-71.729071,41.53025299906],[-71.728897,41.53026299906],[-71.728388,41.53032199906],[-71.727908,41.53040099906],[-71.727644,41.53043899906],[-71.727594,41.53044999906],[-71.727274,41.53050299906],[-71.727195,41.53051899906],[-71.726898,41.53057499906],[-71.726669,41.53061299906],[-71.726067,41.53076899906],[-71.725677,41.53088799906],[-71.725151,41.53103999906],[-71.724669,41.53115699906],[-71.723755,41.53137999906],[-71.723366,41.53145599906],[-71.722641,41.53161599906],[-71.721489,41.53185299906],[-71.72139,41.53187599906],[-71.721199,41.53189499906],[-71.721352,41.53208899906],[-71.72168,41.53256599906],[-71.721825,41.53279899906],[-71.721901,41.53295099906],[-71.721989,41.53311499906],[-71.722061,41.53324899906],[-71.722122,41.53338199906],[-71.722313,41.53376799906],[-71.722511,41.53415299906],[-71.722755,41.53456499906],[-71.722895,41.53487099906],[-71.723257,41.53588999906],[-71.723326,41.53607399906],[-71.723441,41.53634899906],[-71.723578,41.53664699906],[-71.723863,41.53723499906],[-71.724198,41.53790199906],[-71.724272,41.53808499906],[-71.724326,41.53820999906],[-71.724442,41.53843699906],[-71.724609,41.53873799906],[-71.724831,41.53921899906],[-71.725235,41.53998199906],[-71.725342,41.54016899906],[-71.725441,41.54038199906],[-71.725739,41.54095499906],[-71.725914,41.54126399906],[-71.72599,41.54143499906],[-71.726067,41.54158399906],[-71.726204,41.54188899906],[-71.726234,41.54198799906],[-71.72625,41.54206799906],[-71.726425,41.54278599906],[-71.726532,41.54318599906],[-71.726578,41.54344599906],[-71.726608,41.54358299906],[-71.726738,41.54421599906],[-71.726761,41.54436499906],[-71.726791,41.54451399906],[-71.726929,41.54504799906],[-71.726974,41.54526499906],[-71.727135,41.54582599906],[-71.727226,41.54605899906],[-71.727478,41.54660399906],[-71.727531,41.54669199906],[-71.727715,41.54708499906],[-71.728004,41.54766099906],[-71.728088,41.54780199906],[-71.728203,41.54795099906],[-71.728409,41.54819899906],[-71.728523,41.54836299906],[-71.728584,41.54847299906],[-71.728798,41.54881299906],[-71.729309,41.54966399906],[-71.7295,41.54999899906],[-71.729538,41.55012099906],[-71.729561,41.55023199906],[-71.729599,41.55052899906],[-71.72961,41.55065799906],[-71.729622,41.55079699906],[-71.729706,41.55158199906],[-71.729783,41.55245799906],[-71.72979,41.55253599906],[-71.729799,41.55261599906],[-71.729985,41.55259699906],[-71.732046,41.55239399906],[-71.735354,41.55205599906],[-71.736303,41.55195699906],[-71.738385,41.55175699906],[-71.744267,41.55114399906],[-71.74782,41.55113599906],[-71.75111,41.55112799906],[-71.751208,41.55112199906],[-71.758416,41.55013299906],[-71.764161,41.54929799906],[-71.771333,41.54839199906],[-71.77807,41.54749199906],[-71.7782,41.54747199906],[-71.782154,41.54688299906],[-71.784539,41.54669799906],[-71.784895,41.54666999906],[-71.790744,41.54615099906],[-71.791402,41.54609199906],[-71.791653,41.53971899906],[-71.791936,41.53330799906],[-71.792053,41.53045699906],[-71.792206,41.52678299906],[-71.792373,41.52324699906],[-71.792485,41.51977199906],[-71.792667,41.51601299906],[-71.792761,41.51407799906],[-71.792994,41.50877699906],[-71.79315,41.50574699906],[-71.793222,41.50543899906],[-71.793358,41.50225099906],[-71.79351,41.49898499906],[-71.794052,41.48790199906],[-71.794147,41.48621899906],[-71.794232,41.48471999906],[-71.79427,41.48404899906],[-71.794778,41.47509299906],[-71.795025,41.47074799906],[-71.795415,41.46393799906],[-71.795647,41.45998399906],[-71.796296,41.45151599906],[-71.796468,41.44734999906],[-71.796645,41.44308599906],[-71.796669,41.44249399906]]]}}"}, +{"type": "blockgroup", "typeId": 507021, "areaId": 29403, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.803475,41.40406499906],[-71.802021,41.40275699906],[-71.801317,41.40197599906],[-71.801374,41.40186599906],[-71.801003,41.40153099906],[-71.800883,41.40140199906],[-71.800719,41.40129999906],[-71.800555,41.40123199906],[-71.800536,41.40110599906],[-71.800683,41.40104899906],[-71.800967,41.40100999906],[-71.800984,41.40092999906],[-71.800955,41.40087599906],[-71.800938,41.40086899906],[-71.800752,41.40089699906],[-71.800603,41.40097099906],[-71.800537,41.40094399906],[-71.800485,41.40064499906],[-71.800459,41.40044199906],[-71.800452,41.40035099906],[-71.800575,41.40026799906],[-71.800755,41.40020799906],[-71.800761,41.40008999906],[-71.800667,41.39995199906],[-71.800579,41.39973699906],[-71.800487,41.39961199906],[-71.800285,41.39949399906],[-71.80009,41.39943599906],[-71.799938,41.39943599906],[-71.799824,41.39933199906],[-71.799717,41.39923599906],[-71.799689,41.39917599906],[-71.799709,41.39904299906],[-71.799768,41.39889199906],[-71.799792,41.39877499906],[-71.799756,41.39858899906],[-71.799736,41.39856399906],[-71.799541,41.39844299906],[-71.79931,41.39833099906],[-71.799093,41.39830399906],[-71.798653,41.39832399906],[-71.798534,41.39826099906],[-71.798377,41.39826799906],[-71.798292,41.39835999906],[-71.798282,41.39838899906],[-71.798227,41.39844299906],[-71.79818,41.39844799906],[-71.797829,41.39849299906],[-71.797661,41.39849899906],[-71.797264,41.39853399906],[-71.796927,41.39850799906],[-71.796453,41.39846399906],[-71.796033,41.39837299906],[-71.795668,41.39823999906],[-71.795118,41.39807699906],[-71.794711,41.39792699906],[-71.794613,41.39783699906],[-71.794516,41.39778699906],[-71.794338,41.39767099906],[-71.794298,41.39761199906],[-71.794142,41.39740699906],[-71.794069,41.39730099906],[-71.794061,41.39723799906],[-71.794103,41.39712399906],[-71.794371,41.39703499906],[-71.794897,41.39702099906],[-71.795342,41.39704399906],[-71.796117,41.39694099906],[-71.796733,41.39692499906],[-71.797247,41.39689499906],[-71.797722,41.39681199906],[-71.798072,41.39669399906],[-71.798306,41.39645399906],[-71.798334,41.39641599906],[-71.798491,41.39620399906],[-71.798528,41.39611899906],[-71.798495,41.39592699906],[-71.798495,41.39589999906],[-71.798469,41.39573699906],[-71.798463,41.39556299906],[-71.798341,41.39539099906],[-71.798209,41.39525499906],[-71.798156,41.39509599906],[-71.798111,41.39488799906],[-71.798057,41.39481399906],[-71.797925,41.39456999906],[-71.79765,41.39401199906],[-71.797588,41.39389799906],[-71.797535,41.39380099906],[-71.79744,41.39361399906],[-71.797223,41.39320899906],[-71.796989,41.39301599906],[-71.796494,41.39286299906],[-71.796062,41.39278199906],[-71.795517,41.39266599906],[-71.795203,41.39267299906],[-71.794704,41.39261899906],[-71.794064,41.39252499906],[-71.793377,41.39244699906],[-71.793137,41.39240199906],[-71.792994,41.39236099906],[-71.792832,41.39233699906],[-71.79269,41.39228199906],[-71.792537,41.39225799906],[-71.792396,41.39220399906],[-71.792265,41.39214199906],[-71.792144,41.39212099906],[-71.791818,41.39212899906],[-71.791654,41.39214899906],[-71.791502,41.39218299906],[-71.791408,41.39223999906],[-71.791276,41.39228899906],[-71.791132,41.39236299906],[-71.791104,41.39241699906],[-71.791099,41.39253799906],[-71.791177,41.39260499906],[-71.791209,41.39266199906],[-71.791174,41.39272399906],[-71.791044,41.39280999906],[-71.790879,41.39285299906],[-71.790558,41.39286399906],[-71.790465,41.39284499906],[-71.790324,41.39279199906],[-71.790191,41.39271199906],[-71.790029,41.39262299906],[-71.789926,41.39252099906],[-71.78974,41.39229999906],[-71.789665,41.39217299906],[-71.789604,41.39205799906],[-71.78953,41.39193899906],[-71.78946,41.39184299906],[-71.789344,41.39175299906],[-71.789222,41.39162499906],[-71.789178,41.39152899906],[-71.789113,41.39143099906],[-71.788983,41.39136099906],[-71.78887,41.39126499906],[-71.788823,41.39113499906],[-71.788774,41.39107999906],[-71.7886,41.39097999906],[-71.788501,41.39089699906],[-71.788266,41.39073999906],[-71.787861,41.39048499906],[-71.78774,41.39040199906],[-71.787617,41.39033399906],[-71.787506,41.39026399906],[-71.787388,41.39019999906],[-71.787208,41.39002799906],[-71.786974,41.38989999906],[-71.786914,41.38988499906],[-71.786763,41.38980999906],[-71.786664,41.38970999906],[-71.786577,41.38973299906],[-71.786547,41.38974599906],[-71.786439,41.38979299906],[-71.78633,41.38979999906],[-71.78618,41.38979699906],[-71.785995,41.38975899906],[-71.785832,41.38968399906],[-71.785685,41.38965099906],[-71.785525,41.38962399906],[-71.785366,41.38957399906],[-71.7852,41.38953199906],[-71.785071,41.38947799906],[-71.784956,41.38940799906],[-71.78485,41.38932299906],[-71.784725,41.38920899906],[-71.784661,41.38912499906],[-71.784537,41.38917299906],[-71.784512,41.38926899906],[-71.784496,41.38938099906],[-71.784491,41.38951899906],[-71.784455,41.38955099906],[-71.784328,41.38956299906],[-71.78418,41.38956499906],[-71.784168,41.38960699906],[-71.784167,41.38973099906],[-71.784026,41.38973599906],[-71.783895,41.38968599906],[-71.78379,41.38966399906],[-71.783718,41.38961699906],[-71.783732,41.38949799906],[-71.78377,41.38938199906],[-71.783813,41.38927499906],[-71.783926,41.38923499906],[-71.784096,41.38919599906],[-71.784151,41.38915199906],[-71.784307,41.38908099906],[-71.784415,41.38899899906],[-71.784485,41.38889299906],[-71.784541,41.38885199906],[-71.784592,41.38874799906],[-71.784631,41.38863699906],[-71.784652,41.38852299906],[-71.784653,41.38839799906],[-71.784637,41.38837399906],[-71.784531,41.38825199906],[-71.784461,41.38789299906],[-71.784294,41.38768399906],[-71.784256,41.38756199906],[-71.784256,41.38743299906],[-71.784225,41.38736799906],[-71.784172,41.38734699906],[-71.784139,41.38741399906],[-71.784124,41.38753599906],[-71.784119,41.38765799906],[-71.784119,41.38791499906],[-71.784148,41.38816399906],[-71.784123,41.38819199906],[-71.783943,41.38820099906],[-71.783877,41.38813599906],[-71.783873,41.38789599906],[-71.78388,41.38778099906],[-71.783897,41.38766299906],[-71.783964,41.38742799906],[-71.784019,41.38731399906],[-71.784095,41.38707199906],[-71.784125,41.38694499906],[-71.784123,41.38687899906],[-71.78412,41.38678999906],[-71.784032,41.38669399906],[-71.783937,41.38660699906],[-71.783808,41.38654099906],[-71.783652,41.38648799906],[-71.783532,41.38646699906],[-71.78336,41.38648099906],[-71.783215,41.38652199906],[-71.783069,41.38654799906],[-71.782765,41.38668599906],[-71.78264,41.38675199906],[-71.78252,41.38692599906],[-71.782443,41.38702699906],[-71.782338,41.38726099906],[-71.782291,41.38739199906],[-71.78222,41.38746199906],[-71.782115,41.38760699906],[-71.782083,41.38772099906],[-71.782067,41.38783399906],[-71.782067,41.38832199906],[-71.782059,41.38846299906],[-71.782037,41.38857699906],[-71.781917,41.38864899906],[-71.781797,41.38874499906],[-71.781742,41.38886999906],[-71.781602,41.38893399906],[-71.781468,41.38898999906],[-71.78137,41.38900499906],[-71.781221,41.38901099906],[-71.781059,41.38901099906],[-71.780912,41.38897499906],[-71.780612,41.38887199906],[-71.78053,41.38881899906],[-71.780455,41.38871099906],[-71.78043,41.38859299906],[-71.780425,41.38835199906],[-71.780427,41.38811199906],[-71.780463,41.38798499906],[-71.780547,41.38778699906],[-71.780529,41.38767999906],[-71.7805,41.38755899906],[-71.780492,41.38744899906],[-71.780448,41.38733999906],[-71.780423,41.38720799906],[-71.780421,41.38708399906],[-71.780367,41.38699999906],[-71.780314,41.38693999906],[-71.780181,41.38684899906],[-71.780029,41.38679299906],[-71.779881,41.38673199906],[-71.779783,41.38673099906],[-71.779632,41.38676599906],[-71.779555,41.38679599906],[-71.779529,41.38690499906],[-71.77946,41.38695999906],[-71.779372,41.38704799906],[-71.779305,41.38715199906],[-71.779232,41.38724799906],[-71.779222,41.38727699906],[-71.779214,41.38730199906],[-71.779297,41.38738099906],[-71.779309,41.38747799906],[-71.779288,41.38750399906],[-71.779209,41.38750299906],[-71.77919,41.38749499906],[-71.779163,41.38754099906],[-71.779203,41.38765499906],[-71.779327,41.38769999906],[-71.779346,41.38775199906],[-71.779351,41.38800699906],[-71.779307,41.38813599906],[-71.779255,41.38824299906],[-71.779225,41.38835599906],[-71.779212,41.38848499906],[-71.77917,41.38857199906],[-71.779048,41.38864999906],[-71.778995,41.38870799906],[-71.778901,41.38882599906],[-71.778885,41.38892899906],[-71.778837,41.38898299906],[-71.778761,41.38911599906],[-71.778759,41.38936199906],[-71.778765,41.38963599906],[-71.778832,41.38973799906],[-71.778875,41.38984299906],[-71.778987,41.39037799906],[-71.779228,41.39094099906],[-71.779244,41.39106299906],[-71.77932,41.39120999906],[-71.77937,41.39132699906],[-71.779406,41.39143599906],[-71.779431,41.39158099906],[-71.779582,41.39183699906],[-71.779607,41.39196199906],[-71.779677,41.39207399906],[-71.77976,41.39215799906],[-71.77981,41.39226899906],[-71.779925,41.39236099906],[-71.779968,41.39245999906],[-71.780054,41.39249999906],[-71.780209,41.39259399906],[-71.780321,41.39267599906],[-71.780439,41.39274099906],[-71.780596,41.39279699906],[-71.780687,41.39283899906],[-71.780835,41.39291499906],[-71.780881,41.39296599906],[-71.780954,41.39306399906],[-71.781063,41.39312899906],[-71.781084,41.39323999906],[-71.78101,41.39332699906],[-71.780907,41.39341199906],[-71.780783,41.39348799906],[-71.780436,41.39361799906],[-71.780295,41.39366299906],[-71.780128,41.39370699906],[-71.780035,41.39376799906],[-71.77987,41.39385099906],[-71.779732,41.39391199906],[-71.779721,41.39391599906],[-71.7796,41.39396099906],[-71.779352,41.39410499906],[-71.779275,41.39425999906],[-71.779214,41.39436399906],[-71.779092,41.39445499906],[-71.779007,41.39454599906],[-71.778937,41.39456599906],[-71.778819,41.39455599906],[-71.778737,41.39448399906],[-71.778513,41.39434299906],[-71.778405,41.39426199906],[-71.778312,41.39416799906],[-71.77829,41.39407399906],[-71.778288,41.39383499906],[-71.778411,41.39373599906],[-71.778411,41.39364099906],[-71.77837,41.39354499906],[-71.778284,41.39342199906],[-71.778234,41.39338799906],[-71.778106,41.39331899906],[-71.777974,41.39329399906],[-71.777808,41.39325599906],[-71.777575,41.39325799906],[-71.777207,41.39326299906],[-71.777057,41.39329199906],[-71.776831,41.39332799906],[-71.77674,41.39335799906],[-71.776555,41.39342899906],[-71.776434,41.39345799906],[-71.776231,41.39352099906],[-71.776184,41.39358099906],[-71.776043,41.39363999906],[-71.775897,41.39372999906],[-71.775778,41.39381099906],[-71.775709,41.39386399906],[-71.775635,41.39394999906],[-71.775153,41.39412299906],[-71.775,41.39420999906],[-71.774673,41.39444399906],[-71.774435,41.39457099906],[-71.774284,41.39463699906],[-71.774138,41.39470899906],[-71.773987,41.39481199906],[-71.773737,41.39499299906],[-71.773652,41.39510799906],[-71.773548,41.39522999906],[-71.773496,41.39535199906],[-71.773522,41.39535499906],[-71.773643,41.39522299906],[-71.773895,41.39496799906],[-71.774084,41.39480299906],[-71.774271,41.39471999906],[-71.774297,41.39471399906],[-71.774312,41.39475399906],[-71.774149,41.39492499906],[-71.774102,41.39500299906],[-71.773961,41.39516099906],[-71.773742,41.39538099906],[-71.773472,41.39560199906],[-71.773175,41.39591099906],[-71.773159,41.39593199906],[-71.773168,41.39597599906],[-71.7732,41.39597199906],[-71.773333,41.39589499906],[-71.773627,41.39563099906],[-71.774098,41.39524499906],[-71.775001,41.39443399906],[-71.775075,41.39433499906],[-71.775206,41.39422899906],[-71.775329,41.39414899906],[-71.775399,41.39414899906],[-71.77526,41.39435399906],[-71.775085,41.39447399906],[-71.775002,41.39455699906],[-71.774822,41.39475299906],[-71.774179,41.39541199906],[-71.773798,41.39571999906],[-71.773423,41.39600999906],[-71.77309,41.39621999906],[-71.772105,41.39672999906],[-71.771816,41.39690199906],[-71.77164,41.39700199906],[-71.771528,41.39705999906],[-71.77144,41.39713399906],[-71.771411,41.39718999906],[-71.771378,41.39731399906],[-71.771377,41.39742699906],[-71.771369,41.39748899906],[-71.771385,41.39761099906],[-71.771474,41.39789099906],[-71.771515,41.39807599906],[-71.771549,41.39827399906],[-71.771609,41.39853899906],[-71.771633,41.39862199906],[-71.771663,41.39869799906],[-71.771709,41.39877999906],[-71.771764,41.39886299906],[-71.771866,41.39898899906],[-71.771906,41.39904499906],[-71.772004,41.39916299906],[-71.772201,41.39938499906],[-71.772266,41.39946499906],[-71.772457,41.39965099906],[-71.77256,41.39977799906],[-71.772638,41.39990099906],[-71.772666,41.39997799906],[-71.772715,41.40017999906],[-71.772723,41.40023599906],[-71.772714,41.40029499906],[-71.772697,41.40035199906],[-71.772674,41.40040399906],[-71.772644,41.40045299906],[-71.772591,41.40051499906],[-71.772508,41.40059099906],[-71.772471,41.40061899906],[-71.77233,41.40072799906],[-71.772228,41.40078699906],[-71.772102,41.40085199906],[-71.771887,41.40098599906],[-71.771698,41.40108199906],[-71.771538,41.40118699906],[-71.771423,41.40124399906],[-71.771303,41.40129499906],[-71.771202,41.40134599906],[-71.771103,41.40138999906],[-71.770991,41.40142099906],[-71.77089,41.40142699906],[-71.770785,41.40140699906],[-71.770704,41.40139599906],[-71.770611,41.40137699906],[-71.770489,41.40133799906],[-71.77038,41.40129499906],[-71.770192,41.40123599906],[-71.770076,41.40117999906],[-71.76988,41.40103099906],[-71.769717,41.40092299906],[-71.769533,41.40076799906],[-71.769425,41.40070499906],[-71.769329,41.40064299906],[-71.769253,41.40056399906],[-71.769096,41.40033499906],[-71.769046,41.40024599906],[-71.768878,41.40001899906],[-71.768808,41.39993299906],[-71.768724,41.39987699906],[-71.768617,41.39987199906],[-71.768547,41.39992499906],[-71.768524,41.40001099906],[-71.768538,41.40008599906],[-71.768633,41.40021999906],[-71.768684,41.40029999906],[-71.768715,41.40036799906],[-71.768723,41.40043099906],[-71.768704,41.40048799906],[-71.768645,41.40053699906],[-71.768564,41.40057199906],[-71.768484,41.40058399906],[-71.768406,41.40056099906],[-71.768213,41.40044199906],[-71.768131,41.40038299906],[-71.768056,41.40032199906],[-71.767921,41.40017999906],[-71.76785,41.40011699906],[-71.767791,41.40005799906],[-71.767589,41.39982399906],[-71.76755,41.39977199906],[-71.76752,41.39971499906],[-71.767496,41.39965199906],[-71.767479,41.39957199906],[-71.767488,41.39950799906],[-71.767479,41.39945099906],[-71.76742,41.39939799906],[-71.767299,41.39930499906],[-71.76718,41.39920599906],[-71.766869,41.39944799906],[-71.766121,41.39955899906],[-71.766178,41.39962099906],[-71.766314,41.39978499906],[-71.766395,41.39985499906],[-71.766489,41.39991399906],[-71.766708,41.40002199906],[-71.766812,41.40006399906],[-71.766922,41.40010299906],[-71.76702,41.40014299906],[-71.767306,41.40027499906],[-71.76737,41.40030899906],[-71.767424,41.40036199906],[-71.767466,41.40042999906],[-71.767446,41.40046799906],[-71.767345,41.40049199906],[-71.767257,41.40050799906],[-71.767174,41.40053199906],[-71.767094,41.40056299906],[-71.767009,41.40060699906],[-71.76694,41.40066499906],[-71.766891,41.40072199906],[-71.766851,41.40077699906],[-71.766825,41.40083299906],[-71.766798,41.40096399906],[-71.76677,41.40101399906],[-71.76669,41.40107099906],[-71.766637,41.40112399906],[-71.766624,41.40118399906],[-71.766641,41.40124899906],[-71.76672,41.40141699906],[-71.766736,41.40147599906],[-71.766745,41.40167399906],[-71.76676,41.40173099906],[-71.766787,41.40178699906],[-71.76686,41.40183199906],[-71.76693,41.40185799906],[-71.766989,41.40189499906],[-71.767028,41.40194199906],[-71.76706,41.40199099906],[-71.767089,41.40206599906],[-71.767109,41.40213699906],[-71.76716,41.40220599906],[-71.767206,41.40225799906],[-71.767242,41.40231799906],[-71.767254,41.40238199906],[-71.767231,41.40243899906],[-71.767186,41.40249899906],[-71.767161,41.40255599906],[-71.767145,41.40261899906],[-71.76698,41.40260999906],[-71.766804,41.40262399906],[-71.766757,41.40269399906],[-71.766682,41.40272899906],[-71.766611,41.40269799906],[-71.766531,41.40268199906],[-71.76644,41.40269799906],[-71.766346,41.40272399906],[-71.76628,41.40275199906],[-71.766232,41.40280199906],[-71.766237,41.40286299906],[-71.766233,41.40293399906],[-71.766187,41.40295399906],[-71.766106,41.40295499906],[-71.766013,41.40294799906],[-71.765936,41.40295899906],[-71.765887,41.40301099906],[-71.765873,41.40306799906],[-71.765935,41.40311799906],[-71.766011,41.40315099906],[-71.766057,41.40319899906],[-71.766032,41.40326199906],[-71.765974,41.40331199906],[-71.765839,41.40346199906],[-71.765827,41.40352499906],[-71.765834,41.40358099906],[-71.765789,41.40361799906],[-71.765711,41.40364499906],[-71.765662,41.40368799906],[-71.765633,41.40381299906],[-71.765595,41.40386799906],[-71.765551,41.40392099906],[-71.76543,41.40401499906],[-71.765339,41.40412099906],[-71.765291,41.40416199906],[-71.765249,41.40420699906],[-71.765043,41.40438599906],[-71.764995,41.40443399906],[-71.764929,41.40448599906],[-71.764857,41.40451099906],[-71.764693,41.40455299906],[-71.764631,41.40458799906],[-71.764521,41.40469399906],[-71.764455,41.40472599906],[-71.764275,41.40475999906],[-71.76421,41.40478499906],[-71.764146,41.40482099906],[-71.764095,41.40486599906],[-71.764018,41.40497499906],[-71.763956,41.40501899906],[-71.763899,41.40505199906],[-71.76371,41.40517599906],[-71.763685,41.40523799906],[-71.763684,41.40530699906],[-71.763652,41.40535299906],[-71.763588,41.40539699906],[-71.763538,41.40544599906],[-71.763462,41.40557999906],[-71.763378,41.40568999906],[-71.763367,41.40574399906],[-71.763378,41.40579899906],[-71.763419,41.40585599906],[-71.76343,41.40591499906],[-71.763382,41.40596899906],[-71.763355,41.40602699906],[-71.763338,41.40608199906],[-71.763259,41.40611199906],[-71.763163,41.40612799906],[-71.763113,41.40618499906],[-71.763085,41.40624299906],[-71.763044,41.40628699906],[-71.762982,41.40639599906],[-71.762931,41.40652699906],[-71.762924,41.40658299906],[-71.762955,41.40665699906],[-71.763036,41.40670199906],[-71.763124,41.40671299906],[-71.763179,41.40674299906],[-71.763208,41.40680899906],[-71.763198,41.40688099906],[-71.763127,41.40692299906],[-71.763048,41.40695299906],[-71.762971,41.40695599906],[-71.762826,41.40695199906],[-71.762742,41.40696699906],[-71.762714,41.40700499906],[-71.762743,41.40706499906],[-71.762829,41.40715999906],[-71.762872,41.40721799906],[-71.762853,41.40724999906],[-71.762779,41.40728599906],[-71.762743,41.40733399906],[-71.762758,41.40739599906],[-71.762866,41.40748599906],[-71.762912,41.40753799906],[-71.762965,41.40766299906],[-71.76304,41.40771499906],[-71.763106,41.40773599906],[-71.76328,41.40772799906],[-71.763349,41.40776899906],[-71.76342,41.40788099906],[-71.76345,41.40794099906],[-71.763343,41.40803199906],[-71.763357,41.40809299906],[-71.763422,41.40813099906],[-71.763496,41.40818299906],[-71.763551,41.40824099906],[-71.763593,41.40830199906],[-71.763646,41.40831999906],[-71.763736,41.40831499906],[-71.763798,41.40834999906],[-71.763804,41.40841299906],[-71.763709,41.40851699906],[-71.763678,41.40856899906],[-71.763722,41.40859399906],[-71.76388,41.40862499906],[-71.76391,41.40866599906],[-71.763931,41.40873799906],[-71.763939,41.40879499906],[-71.763931,41.40886999906],[-71.76395,41.40891699906],[-71.764028,41.40895299906],[-71.764095,41.40897299906],[-71.764161,41.40900399906],[-71.764159,41.40904599906],[-71.764113,41.40910099906],[-71.764073,41.40916199906],[-71.764104,41.40925999906],[-71.764021,41.40936999906],[-71.764052,41.40942299906],[-71.76412,41.40945999906],[-71.764177,41.40950999906],[-71.764169,41.40957099906],[-71.764137,41.40962599906],[-71.764125,41.40968999906],[-71.764182,41.40980099906],[-71.764157,41.40985999906],[-71.764095,41.40989099906],[-71.764018,41.40991299906],[-71.763979,41.40995999906],[-71.76397,41.41002299906],[-71.763992,41.41007199906],[-71.76405,41.41011699906],[-71.764101,41.41016899906],[-71.76413,41.41022399906],[-71.764142,41.41028199906],[-71.764129,41.41033499906],[-71.764084,41.41038699906],[-71.764022,41.41042299906],[-71.763794,41.41049299906],[-71.763706,41.41051599906],[-71.763674,41.41055699906],[-71.7637,41.41073599906],[-71.763707,41.41085299906],[-71.763724,41.41089099906],[-71.764069,41.41079699906],[-71.764481,41.41107599906],[-71.764832,41.41132699906],[-71.765068,41.41150699906],[-71.765221,41.41164399906],[-71.765915,41.41207099906],[-71.766276,41.41232299906],[-71.767555,41.41319199906],[-71.768451,41.41380099906],[-71.769206,41.41431399906],[-71.769495,41.41451099906],[-71.770569,41.41524099906],[-71.770592,41.41525999906],[-71.771113,41.41561699906],[-71.771667,41.41599699906],[-71.772446,41.41652299906],[-71.7733,41.41710299906],[-71.773751,41.41741599906],[-71.774243,41.41775699906],[-71.77468,41.41805999906],[-71.775215,41.41842999906],[-71.775574,41.41867099906],[-71.776405,41.41925799906],[-71.777687,41.42010099906],[-71.777794,41.42016199906],[-71.778419,41.42052499906],[-71.778786,41.42069999906],[-71.779274,41.42090599906],[-71.780145,41.42128899906],[-71.780286,41.42133899906],[-71.780556,41.42143599906],[-71.78064,41.42147099906],[-71.780937,41.42157399906],[-71.781288,41.42167999906],[-71.781769,41.42184099906],[-71.784058,41.42254599906],[-71.784615,41.42272599906],[-71.784843,41.42281699906],[-71.785065,41.42289699906],[-71.785233,41.42300399906],[-71.785446,41.42310699906],[-71.785728,41.42328999906],[-71.786095,41.42360299906],[-71.786464,41.42335499906],[-71.786833,41.42311999906],[-71.787934,41.42401999906],[-71.787979,41.42404899906],[-71.788354,41.42436299906],[-71.788582,41.42454599906],[-71.788794,41.42466499906],[-71.789027,41.42474999906],[-71.789283,41.42481899906],[-71.789624,41.42490499906],[-71.789915,41.42494999906],[-71.790123,41.42499899906],[-71.790267,41.42510399906],[-71.790459,41.42533499906],[-71.790579,41.42558199906],[-71.791252,41.42567799906],[-71.791519,41.42571599906],[-71.79171,41.42573499906],[-71.792572,41.42583799906],[-71.793388,41.42592999906],[-71.79425,41.42604099906],[-71.794479,41.42606699906],[-71.794685,41.42610199906],[-71.795158,41.42616999906],[-71.795624,41.42624299906],[-71.795745,41.42627099906],[-71.79666,41.42633999906],[-71.797287,41.42639899906],[-71.79772,41.41740799906],[-71.797744,41.41690999906],[-71.797576,41.41691099906],[-71.797392,41.41690399906],[-71.797322,41.41688499906],[-71.797221,41.41679699906],[-71.7971,41.41671599906],[-71.796936,41.41661899906],[-71.796829,41.41652699906],[-71.796671,41.41647199906],[-71.796538,41.41641499906],[-71.79647,41.41637899906],[-71.796399,41.41627799906],[-71.796318,41.41622399906],[-71.796289,41.41606899906],[-71.796189,41.41594099906],[-71.796178,41.41582599906],[-71.796198,41.41546299906],[-71.796199,41.41542599906],[-71.796196,41.41516999906],[-71.796176,41.41504399906],[-71.79617,41.41495399906],[-71.796016,41.41478899906],[-71.795998,41.41466699906],[-71.796023,41.41454499906],[-71.796113,41.41446599906],[-71.796227,41.41439899906],[-71.7963,41.41431699906],[-71.79645,41.41427799906],[-71.796574,41.41422199906],[-71.796637,41.41415299906],[-71.79679,41.41404499906],[-71.796917,41.41400099906],[-71.796938,41.41387199906],[-71.796998,41.41385299906],[-71.797017,41.41382999906],[-71.79709,41.41375099906],[-71.797124,41.41369299906],[-71.796918,41.41266899906],[-71.796884,41.41262799906],[-71.796802,41.41245599906],[-71.796792,41.41240099906],[-71.796787,41.41230699906],[-71.796781,41.41225199906],[-71.796812,41.41210099906],[-71.796824,41.41206399906],[-71.796842,41.41189599906],[-71.796903,41.41179299906],[-71.796933,41.41170299906],[-71.796952,41.41162299906],[-71.796941,41.41160599906],[-71.796942,41.41153199906],[-71.796978,41.41144299906],[-71.797093,41.41132799906],[-71.797114,41.41130499906],[-71.797396,41.41118399906],[-71.797591,41.41114999906],[-71.797921,41.41095099906],[-71.798295,41.41081999906],[-71.798643,41.41007499906],[-71.798374,41.40891899906],[-71.798082,41.40797799906],[-71.797264,41.40724899906],[-71.796479,41.40761999906],[-71.79598,41.40728899906],[-71.796349,41.40670099906],[-71.796962,41.40595699906],[-71.798805,41.40499499906],[-71.802768,41.40463799906],[-71.803203,41.40432999906],[-71.803475,41.40406499906]]]}}"}, +{"type": "blockgroup", "typeId": 507022, "areaId": 29404, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.78685,41.44361099906],[-71.786842,41.44340899906],[-71.786247,41.44361099906],[-71.785309,41.44397399906],[-71.784279,41.44440099906],[-71.78392,41.44452699906],[-71.783615,41.44462599906],[-71.783356,41.44469499906],[-71.782669,41.44484699906],[-71.782295,41.44491199906],[-71.78196,41.44494599906],[-71.781395,41.44497699906],[-71.780998,41.44498799906],[-71.780647,41.44498799906],[-71.780106,41.44496899906],[-71.779305,41.44495399906],[-71.779015,41.44494199906],[-71.778648,41.44407699906],[-71.77829,41.44329099906],[-71.777946,41.44255099906],[-71.777794,41.44220399906],[-71.777687,41.44205499906],[-71.777565,41.44191399906],[-71.777382,41.44177999906],[-71.777061,41.44150899906],[-71.776817,41.44124599906],[-71.776741,41.44108199906],[-71.776588,41.44071599906],[-71.776497,41.44051399906],[-71.776146,41.44060499906],[-71.775818,41.44068499906],[-71.775378,41.44077599906],[-71.77523,41.44080699906],[-71.774765,41.44090999906],[-71.774467,41.44098999906],[-71.774284,41.44102499906],[-71.773842,41.44107799906],[-71.773453,41.44111999906],[-71.772453,41.44123799906],[-71.772118,41.44126899906],[-71.771652,41.44132599906],[-71.770668,41.44147499906],[-71.770325,41.44151299906],[-71.770004,41.44154399906],[-71.769737,41.44155899906],[-71.769135,41.44160499906],[-71.768837,41.44164999906],[-71.768013,41.44179899906],[-71.767395,41.44192499906],[-71.766857,41.44203999906],[-71.766045,41.44220399906],[-71.764923,41.44241299906],[-71.764641,41.44245499906],[-71.764442,41.44247399906],[-71.764154,41.44249099906],[-71.76371,41.44251299906],[-71.763596,41.44253199906],[-71.76342,41.44255399906],[-71.76312,41.44261199906],[-71.762924,41.44264999906],[-71.762337,41.44277599906],[-71.761665,41.44289399906],[-71.761475,41.44293199906],[-71.761292,41.44295899906],[-71.760986,41.44298899906],[-71.760857,41.44298599906],[-71.760468,41.44295799906],[-71.760063,41.44292799906],[-71.759621,41.44291299906],[-71.759079,41.44292099906],[-71.75872,41.44294399906],[-71.758316,41.44298599906],[-71.758072,41.44299699906],[-71.75795,41.44299299906],[-71.757805,41.44298199906],[-71.757477,41.44292399906],[-71.757118,41.44283299906],[-71.756714,41.44271099906],[-71.756462,41.44264199906],[-71.754875,41.44232899906],[-71.754211,41.44219199906],[-71.753876,41.44211599906],[-71.75322,41.44195899906],[-71.75219,41.44172999906],[-71.750984,41.44143699906],[-71.75071,41.44137999906],[-71.750381,41.44133799906],[-71.750198,41.44132999906],[-71.749237,41.44131499906],[-71.748985,41.44130699906],[-71.748756,41.44129599906],[-71.748314,41.44124599906],[-71.747596,41.44115599906],[-71.747124,41.44109699906],[-71.746475,41.44102099906],[-71.745766,41.44093299906],[-71.744301,41.44076199906],[-71.743454,41.44065099906],[-71.742681,41.44055599906],[-71.742493,41.44053299906],[-71.741875,41.44046399906],[-71.740997,41.44038399906],[-71.740105,41.44029999906],[-71.739517,41.44022399906],[-71.738937,41.44015499906],[-71.737389,41.43996399906],[-71.736572,41.43989199906],[-71.735909,41.43981199906],[-71.735313,41.43971599906],[-71.733864,41.43950299906],[-71.732155,41.43923999906],[-71.731339,41.43910599906],[-71.730766,41.43901399906],[-71.729988,41.43889999906],[-71.729225,41.43877399906],[-71.728653,41.43869399906],[-71.727608,41.43856399906],[-71.727341,41.43852599906],[-71.727066,41.43845699906],[-71.726872,41.43840399906],[-71.726662,41.43834299906],[-71.726479,41.43829699906],[-71.726204,41.43824799906],[-71.725449,41.43810299906],[-71.724792,41.43800399906],[-71.724457,41.43795799906],[-71.724289,41.43793099906],[-71.724251,41.43793099906],[-71.724098,41.43791199906],[-71.724052,41.43790099906],[-71.723976,41.43788099906],[-71.7239,41.43784699906],[-71.723808,41.43778599906],[-71.72374,41.43770599906],[-71.723698,41.43763599906],[-71.723465,41.43769599906],[-71.723321,41.43771999906],[-71.723098,41.43776299906],[-71.722923,41.43777299906],[-71.722763,41.43777199906],[-71.722688,41.43777499906],[-71.722534,41.43777199906],[-71.722533,41.43785299906],[-71.722508,41.43794299906],[-71.722494,41.43796699906],[-71.722426,41.43800799906],[-71.722305,41.43804599906],[-71.722154,41.43814999906],[-71.722091,41.43823699906],[-71.721901,41.43825299906],[-71.721218,41.43841699906],[-71.720951,41.43859499906],[-71.720656,41.43896499906],[-71.720462,41.43960699906],[-71.720334,41.44073299906],[-71.720196,41.44105799906],[-71.719082,41.44236299906],[-71.718039,41.44352699906],[-71.717439,41.44365299906],[-71.717086,41.44335399906],[-71.7168,41.44317299906],[-71.71621,41.44336199906],[-71.715777,41.44365799906],[-71.715789,41.44406299906],[-71.716269,41.44514699906],[-71.716629,41.44631199906],[-71.716776,41.44696999906],[-71.717194,41.44721399906],[-71.717215,41.44725999906],[-71.717235,41.44732599906],[-71.717249,41.44739599906],[-71.717252,41.44746799906],[-71.717238,41.44753799906],[-71.71718,41.44768199906],[-71.71718,41.44773699906],[-71.717167,41.44780699906],[-71.717152,41.44788699906],[-71.717069,41.44817899906],[-71.717025,41.44823699906],[-71.716995,41.44831599906],[-71.717006,41.44839599906],[-71.717025,41.44845299906],[-71.717056,41.44851899906],[-71.717123,41.44871099906],[-71.717183,41.44880399906],[-71.717249,41.44899899906],[-71.717267,41.44907199906],[-71.717274,41.44921899906],[-71.717265,41.44928499906],[-71.717226,41.44935199906],[-71.717138,41.44952999906],[-71.717121,41.44968099906],[-71.717092,41.44975799906],[-71.717055,41.44982999906],[-71.717014,41.44989599906],[-71.716966,41.44995699906],[-71.716855,41.45006399906],[-71.716591,41.45025199906],[-71.716519,41.45032199906],[-71.716459,41.45039699906],[-71.716397,41.45046199906],[-71.716179,41.45065699906],[-71.716099,41.45070199906],[-71.715889,41.45074899906],[-71.715824,41.45079399906],[-71.715831,41.45083899906],[-71.715911,41.45088999906],[-71.715907,41.45093699906],[-71.71582,41.45096899906],[-71.715483,41.45102699906],[-71.715407,41.45100799906],[-71.715353,41.45096899906],[-71.71528,41.45094899906],[-71.715195,41.45094899906],[-71.71513,41.45097399906],[-71.715104,41.45102999906],[-71.715116,41.45116599906],[-71.715072,41.45119599906],[-71.715016,41.45116699906],[-71.714964,41.45104499906],[-71.714879,41.45102899906],[-71.714791,41.45102599906],[-71.714691,41.45101599906],[-71.714599,41.45102599906],[-71.71453,41.45106699906],[-71.714487,41.45111999906],[-71.714457,41.45119399906],[-71.714459,41.45125799906],[-71.714507,41.45147399906],[-71.714538,41.45154899906],[-71.714614,41.45170499906],[-71.714683,41.45187899906],[-71.714725,41.45196699906],[-71.714772,41.45204799906],[-71.714829,41.45212199906],[-71.714871,41.45219499906],[-71.71488,41.45226299906],[-71.714847,41.45231699906],[-71.714801,41.45237199906],[-71.714773,41.45245299906],[-71.714723,41.45263099906],[-71.714653,41.45278399906],[-71.714655,41.45284299906],[-71.714709,41.45289199906],[-71.714768,41.45293599906],[-71.714806,41.45298499906],[-71.714777,41.45299299906],[-71.71469,41.45299399906],[-71.714613,41.45304199906],[-71.714463,41.45320399906],[-71.714392,41.45325899906],[-71.714222,41.45335999906],[-71.714159,41.45341499906],[-71.714139,41.45348599906],[-71.714165,41.45355899906],[-71.714225,41.45362899906],[-71.714316,41.45368399906],[-71.714434,41.45372899906],[-71.714548,41.45378099906],[-71.714634,41.45385099906],[-71.714697,41.45393399906],[-71.71474,41.45402499906],[-71.714758,41.45412499906],[-71.714747,41.45422999906],[-71.714717,41.45432899906],[-71.714674,41.45441299906],[-71.714608,41.45447599906],[-71.714527,41.45450699906],[-71.714451,41.45449599906],[-71.714393,41.45444799906],[-71.714344,41.45437799906],[-71.714253,41.45423199906],[-71.714206,41.45418399906],[-71.714127,41.45416899906],[-71.714032,41.45418099906],[-71.713939,41.45419899906],[-71.713851,41.45419599906],[-71.713777,41.45416099906],[-71.713712,41.45411399906],[-71.713643,41.45408199906],[-71.713589,41.45409599906],[-71.713573,41.45415899906],[-71.713592,41.45431999906],[-71.713595,41.45439899906],[-71.713582,41.45446299906],[-71.713534,41.45450899906],[-71.713447,41.45454099906],[-71.713342,41.45456799906],[-71.71332,41.45453999906],[-71.713338,41.45440799906],[-71.713323,41.45432799906],[-71.713266,41.45424099906],[-71.713189,41.45415899906],[-71.713134,41.45408599906],[-71.713118,41.45401999906],[-71.713089,41.45396399906],[-71.71303,41.45393999906],[-71.712968,41.45396099906],[-71.712791,41.45406399906],[-71.712679,41.45411999906],[-71.712554,41.45415799906],[-71.712419,41.45416999906],[-71.712345,41.45416899906],[-71.712188,41.45415399906],[-71.712034,41.45412499906],[-71.711883,41.45408499906],[-71.711771,41.45405099906],[-71.711677,41.45405399906],[-71.711625,41.45409999906],[-71.711627,41.45416199906],[-71.711661,41.45421999906],[-71.711726,41.45426299906],[-71.711813,41.45429399906],[-71.711913,41.45431499906],[-71.712031,41.45432199906],[-71.712381,41.45432399906],[-71.712525,41.45433499906],[-71.712631,41.45437599906],[-71.712687,41.45444099906],[-71.712707,41.45451499906],[-71.712713,41.45459299906],[-71.712699,41.45467899906],[-71.712667,41.45476999906],[-71.712621,41.45484599906],[-71.71256,41.45489599906],[-71.712512,41.45490499906],[-71.71249,41.45487899906],[-71.712455,41.45481799906],[-71.712396,41.45477599906],[-71.712313,41.45473799906],[-71.712254,41.45470299906],[-71.712253,41.45465799906],[-71.712311,41.45462799906],[-71.712378,41.45460599906],[-71.712412,41.45456199906],[-71.712373,41.45453999906],[-71.712301,41.45453199906],[-71.712136,41.45448799906],[-71.712089,41.45451299906],[-71.712063,41.45456399906],[-71.712043,41.45469099906],[-71.712026,41.45476299906],[-71.712031,41.45483299906],[-71.712066,41.45489599906],[-71.712123,41.45494999906],[-71.712194,41.45498999906],[-71.71227,41.45502199906],[-71.712417,41.45507199906],[-71.712437,41.45511799906],[-71.712487,41.45516599906],[-71.712544,41.45520999906],[-71.712604,41.45526899906],[-71.712649,41.45533799906],[-71.712684,41.45541499906],[-71.712698,41.45549799906],[-71.71269,41.45558599906],[-71.71266,41.45566599906],[-71.712614,41.45574599906],[-71.71255,41.45582399906],[-71.712369,41.45596699906],[-71.712308,41.45602799906],[-71.712288,41.45608599906],[-71.712325,41.45619499906],[-71.712327,41.45652199906],[-71.712313,41.45660399906],[-71.712282,41.45665799906],[-71.712236,41.45667399906],[-71.712189,41.45664499906],[-71.712161,41.45659099906],[-71.712144,41.45653699906],[-71.712071,41.45648499906],[-71.712022,41.45642699906],[-71.712047,41.45636799906],[-71.712014,41.45631099906],[-71.712037,41.45629399906],[-71.712109,41.45625999906],[-71.712168,41.45620299906],[-71.712121,41.45617599906],[-71.712035,41.45616899906],[-71.711949,41.45618099906],[-71.71189,41.45621099906],[-71.711839,41.45625299906],[-71.711773,41.45628799906],[-71.711688,41.45631399906],[-71.711599,41.45632899906],[-71.711514,41.45631899906],[-71.711444,41.45629299906],[-71.71136,41.45624599906],[-71.711227,41.45618599906],[-71.711129,41.45616599906],[-71.711073,41.45619399906],[-71.711045,41.45625199906],[-71.711037,41.45631999906],[-71.711046,41.45638899906],[-71.71107,41.45644999906],[-71.711108,41.45650099906],[-71.71121,41.45659599906],[-71.711261,41.45664899906],[-71.711326,41.45669499906],[-71.711414,41.45673599906],[-71.71152,41.45677299906],[-71.711886,41.45686599906],[-71.712005,41.45689299906],[-71.712118,41.45692999906],[-71.712223,41.45697399906],[-71.712325,41.45702499906],[-71.71257,41.45713299906],[-71.712695,41.45719899906],[-71.712861,41.45730099906],[-71.713273,41.45757299906],[-71.713661,41.45785999906],[-71.713757,41.45792699906],[-71.713857,41.45798699906],[-71.714059,41.45809599906],[-71.714149,41.45815699906],[-71.714217,41.45822599906],[-71.714256,41.45829799906],[-71.714253,41.45836699906],[-71.714223,41.45842799906],[-71.71421,41.45848399906],[-71.714254,41.45853599906],[-71.713762,41.45846799906],[-71.712884,41.45795399906],[-71.712792,41.45795999906],[-71.71271,41.45798099906],[-71.712646,41.45802399906],[-71.712591,41.45807599906],[-71.71255,41.45813599906],[-71.712513,41.45820099906],[-71.712484,41.45827099906],[-71.712461,41.45834499906],[-71.712404,41.45857999906],[-71.712358,41.45871599906],[-71.712342,41.45878099906],[-71.712352,41.45890899906],[-71.712352,41.45897099906],[-71.71236,41.45903099906],[-71.712479,41.45926999906],[-71.712556,41.45939499906],[-71.712577,41.45945199906],[-71.712675,41.45955999906],[-71.712647,41.45959499906],[-71.712407,41.45975199906],[-71.712331,41.45980899906],[-71.712287,41.45986799906],[-71.71229,41.45993399906],[-71.712359,41.45996399906],[-71.71242,41.45994599906],[-71.712586,41.45979099906],[-71.712642,41.45975499906],[-71.712715,41.45971799906],[-71.712799,41.45968199906],[-71.712968,41.45963299906],[-71.713039,41.45961799906],[-71.713138,41.45963299906],[-71.713212,41.45966399906],[-71.713286,41.45970099906],[-71.713408,41.45978299906],[-71.713589,41.45986999906],[-71.714018,41.46010099906],[-71.714119,41.46016199906],[-71.714387,41.46035199906],[-71.714764,41.46058699906],[-71.714859,41.46063299906],[-71.715151,41.46074399906],[-71.715246,41.46077499906],[-71.715454,41.46082199906],[-71.715565,41.46083899906],[-71.715785,41.46085099906],[-71.71589,41.46084799906],[-71.715998,41.46083999906],[-71.716217,41.46083099906],[-71.716579,41.46079099906],[-71.716794,41.46077099906],[-71.716889,41.46076799906],[-71.716968,41.46077599906],[-71.717038,41.46078999906],[-71.717124,41.46077999906],[-71.717194,41.46076299906],[-71.71738,41.46072999906],[-71.717586,41.46068199906],[-71.717677,41.46065199906],[-71.717947,41.46054599906],[-71.71811,41.46047499906],[-71.71819,41.46044499906],[-71.718272,41.46041999906],[-71.718349,41.46038999906],[-71.718414,41.46035499906],[-71.718469,41.46031899906],[-71.71855,41.46027999906],[-71.718623,41.46026599906],[-71.718713,41.46025799906],[-71.718737,41.46026899906],[-71.718784,41.46037599906],[-71.718851,41.46037699906],[-71.718903,41.46034999906],[-71.718935,41.46029899906],[-71.718956,41.46024599906],[-71.719,41.46018599906],[-71.718992,41.46013099906],[-71.718991,41.46007299906],[-71.719053,41.46003399906],[-71.719105,41.46003599906],[-71.718908,41.45982299906],[-71.718951,41.45979799906],[-71.719089,41.45975199906],[-71.719165,41.45973299906],[-71.71924,41.45971899906],[-71.719334,41.45970799906],[-71.719443,41.45971299906],[-71.719667,41.45973899906],[-71.719774,41.45975699906],[-71.719863,41.45978999906],[-71.720034,41.45987799906],[-71.72014,41.45992399906],[-71.720391,41.46001799906],[-71.720509,41.46006599906],[-71.720592,41.46011399906],[-71.720648,41.46016999906],[-71.720683,41.46023099906],[-71.720725,41.46028999906],[-71.720782,41.46035599906],[-71.720851,41.46046999906],[-71.720875,41.46054099906],[-71.720903,41.46059499906],[-71.720968,41.46062999906],[-71.721042,41.46064599906],[-71.721122,41.46063799906],[-71.721212,41.46060099906],[-71.721332,41.46058899906],[-71.721468,41.46062199906],[-71.721582,41.46067499906],[-71.72166,41.46073599906],[-71.72168,41.46079099906],[-71.721656,41.46081499906],[-71.721572,41.46085199906],[-71.721476,41.46086799906],[-71.721409,41.46088999906],[-71.721391,41.46093099906],[-71.721336,41.46097699906],[-71.721197,41.46105299906],[-71.721189,41.46110099906],[-71.721187,41.46116499906],[-71.721171,41.46123399906],[-71.721077,41.46144099906],[-71.721063,41.46150799906],[-71.721061,41.46157399906],[-71.721044,41.46163399906],[-71.720914,41.46176099906],[-71.720847,41.46184199906],[-71.720799,41.46192299906],[-71.72078,41.46199499906],[-71.720748,41.46205999906],[-71.720687,41.46212199906],[-71.720531,41.46221599906],[-71.720397,41.46232399906],[-71.720307,41.46243599906],[-71.720241,41.46248499906],[-71.720166,41.46246699906],[-71.720031,41.46239299906],[-71.719964,41.46236699906],[-71.719924,41.46240599906],[-71.719932,41.46246999906],[-71.719989,41.46251099906],[-71.720112,41.46258899906],[-71.720156,41.46264199906],[-71.720164,41.46270499906],[-71.720157,41.46277799906],[-71.720162,41.46283399906],[-71.720189,41.46288399906],[-71.720244,41.46292099906],[-71.720331,41.46294699906],[-71.720431,41.46298399906],[-71.720519,41.46303899906],[-71.720587,41.46310399906],[-71.720641,41.46316699906],[-71.720673,41.46322999906],[-71.720664,41.46330999906],[-71.720615,41.46335099906],[-71.720543,41.46337899906],[-71.720463,41.46339799906],[-71.720387,41.46340099906],[-71.720328,41.46337299906],[-71.720284,41.46331899906],[-71.720193,41.46317399906],[-71.720145,41.46311799906],[-71.720106,41.46310399906],[-71.720103,41.46315999906],[-71.72012,41.46321599906],[-71.72015,41.46331599906],[-71.720141,41.46343499906],[-71.720157,41.46349499906],[-71.720202,41.46355099906],[-71.720248,41.46359799906],[-71.720264,41.46369899906],[-71.720271,41.46374399906],[-71.720183,41.46394899906],[-71.720177,41.46397599906],[-71.720156,41.46407199906],[-71.720116,41.46419999906],[-71.720069,41.46444799906],[-71.720044,41.46454399906],[-71.719875,41.46499499906],[-71.719837,41.46508399906],[-71.719832,41.46515999906],[-71.71987,41.46521699906],[-71.719939,41.46526199906],[-71.720097,41.46534499906],[-71.720175,41.46539799906],[-71.720236,41.46544899906],[-71.720278,41.46555699906],[-71.720317,41.46560999906],[-71.720376,41.46564599906],[-71.720447,41.46564699906],[-71.720524,41.46566699906],[-71.720706,41.46574799906],[-71.720798,41.46579299906],[-71.720866,41.46583899906],[-71.720896,41.46588899906],[-71.720897,41.46601199906],[-71.72089,41.46607799906],[-71.720864,41.46614199906],[-71.720824,41.46620199906],[-71.720774,41.46625899906],[-71.720711,41.46631199906],[-71.720453,41.46647599906],[-71.720289,41.46656699906],[-71.720227,41.46661899906],[-71.720182,41.46668099906],[-71.719892,41.46721499906],[-71.719847,41.46726999906],[-71.71978,41.46731299906],[-71.719595,41.46739699906],[-71.719502,41.46745299906],[-71.719415,41.46751399906],[-71.719265,41.46763599906],[-71.71921,41.46769799906],[-71.719179,41.46776199906],[-71.71917,41.46782699906],[-71.719185,41.46796999906],[-71.719164,41.46804499906],[-71.719122,41.46812099906],[-71.719073,41.46819599906],[-71.719024,41.46824299906],[-71.718989,41.46822899906],[-71.718975,41.46816999906],[-71.718977,41.46810199906],[-71.719045,41.46796199906],[-71.719068,41.46788899906],[-71.719049,41.46783599906],[-71.718989,41.46781799906],[-71.71892,41.46784799906],[-71.718794,41.46796099906],[-71.718725,41.46798999906],[-71.718678,41.46796199906],[-71.718668,41.46789899906],[-71.718683,41.46783299906],[-71.718676,41.46776099906],[-71.718627,41.46775199906],[-71.718577,41.46778599906],[-71.718536,41.46783799906],[-71.718505,41.46789699906],[-71.718479,41.46796399906],[-71.718427,41.46803399906],[-71.718389,41.46802399906],[-71.718353,41.46795699906],[-71.718262,41.46785699906],[-71.718224,41.46779799906],[-71.718208,41.46773099906],[-71.718223,41.46765799906],[-71.718253,41.46758199906],[-71.718258,41.46750799906],[-71.718241,41.46743499906],[-71.71821,41.46737499906],[-71.718163,41.46732999906],[-71.718114,41.46727199906],[-71.718061,41.46721899906],[-71.718002,41.46721799906],[-71.717955,41.46724899906],[-71.717959,41.46729299906],[-71.71802,41.46735799906],[-71.718069,41.46742699906],[-71.718083,41.46747999906],[-71.718082,41.46753499906],[-71.718068,41.46758999906],[-71.718043,41.46764699906],[-71.718006,41.46770399906],[-71.717954,41.46775999906],[-71.717892,41.46780999906],[-71.717839,41.46786299906],[-71.717789,41.46798099906],[-71.717739,41.46803199906],[-71.717676,41.46803299906],[-71.717632,41.46798199906],[-71.717632,41.46791499906],[-71.717641,41.46786099906],[-71.717602,41.46784399906],[-71.717537,41.46786899906],[-71.717476,41.46789899906],[-71.717389,41.46791899906],[-71.71733,41.46797699906],[-71.717322,41.46803299906],[-71.717325,41.46809199906],[-71.717347,41.46814699906],[-71.717396,41.46819199906],[-71.717468,41.46822399906],[-71.717633,41.46827999906],[-71.717796,41.46834899906],[-71.717861,41.46839199906],[-71.717914,41.46843499906],[-71.717953,41.46848199906],[-71.718033,41.46863899906],[-71.718075,41.46875599906],[-71.718122,41.46894899906],[-71.71813,41.46901899906],[-71.71812,41.46908399906],[-71.718014,41.46926899906],[-71.717991,41.46934499906],[-71.717985,41.46940299906],[-71.71797,41.46946499906],[-71.717939,41.46953699906],[-71.717914,41.46961999906],[-71.717848,41.46992699906],[-71.717839,41.46999399906],[-71.717808,41.47005399906],[-71.71775,41.47009799906],[-71.717685,41.47010599906],[-71.717631,41.47007399906],[-71.717585,41.47000099906],[-71.717536,41.46994999906],[-71.717446,41.46994399906],[-71.71739,41.46989099906],[-71.717365,41.46981899906],[-71.717294,41.46979799906],[-71.717193,41.46981799906],[-71.717058,41.46987699906],[-71.71697,41.46992899906],[-71.716793,41.47005499906],[-71.716692,41.47009599906],[-71.716613,41.47008199906],[-71.716551,41.47012099906],[-71.716508,41.47019199906],[-71.716492,41.47024799906],[-71.716492,41.47031099906],[-71.716531,41.47061999906],[-71.716535,41.47070399906],[-71.716527,41.47087499906],[-71.716533,41.47096299906],[-71.716555,41.47104299906],[-71.716604,41.47109299906],[-71.71667,41.47110699906],[-71.716746,41.47110299906],[-71.71682,41.47108199906],[-71.716879,41.47104699906],[-71.716934,41.47098699906],[-71.716986,41.47094599906],[-71.717065,41.47091399906],[-71.71716,41.47090199906],[-71.717257,41.47091999906],[-71.717344,41.47095499906],[-71.717422,41.47099399906],[-71.71748,41.47104599906],[-71.717566,41.47118099906],[-71.717541,41.47120999906],[-71.717483,41.47125399906],[-71.717499,41.47130199906],[-71.717577,41.47132799906],[-71.717659,41.47132799906],[-71.717745,41.47129799906],[-71.717831,41.47125499906],[-71.717923,41.47124399906],[-71.718,41.47125099906],[-71.718186,41.47124799906],[-71.718374,41.47125199906],[-71.718458,41.47124999906],[-71.718538,41.47125699906],[-71.718612,41.47127599906],[-71.718679,41.47130499906],[-71.718738,41.47133999906],[-71.718792,41.47137899906],[-71.718834,41.47142599906],[-71.718902,41.47154599906],[-71.718929,41.47161999906],[-71.718937,41.47169899906],[-71.718926,41.47185399906],[-71.718942,41.47192299906],[-71.718967,41.47198299906],[-71.718966,41.47203799906],[-71.718898,41.47214699906],[-71.718875,41.47220999906],[-71.718861,41.47227899906],[-71.718854,41.47235799906],[-71.718878,41.47253099906],[-71.718871,41.47261299906],[-71.718839,41.47268199906],[-71.718776,41.47273699906],[-71.718697,41.47279299906],[-71.718624,41.47282999906],[-71.718596,41.47282399906],[-71.71857,41.47277599906],[-71.718571,41.47270699906],[-71.718561,41.47263699906],[-71.718559,41.47257599906],[-71.718599,41.47252799906],[-71.718676,41.47247599906],[-71.71871,41.47241499906],[-71.718727,41.47233799906],[-71.718738,41.47225999906],[-71.718755,41.47218299906],[-71.7188,41.47210699906],[-71.718836,41.47202799906],[-71.718825,41.47196299906],[-71.718774,41.47193399906],[-71.718713,41.47194099906],[-71.718647,41.47196799906],[-71.718585,41.47200699906],[-71.718531,41.47205399906],[-71.718428,41.47216499906],[-71.71832,41.47229099906],[-71.718267,41.47235999906],[-71.718121,41.47258299906],[-71.717939,41.47278599906],[-71.717871,41.47284799906],[-71.717799,41.47290599906],[-71.717643,41.47301999906],[-71.717576,41.47308999906],[-71.717519,41.47316999906],[-71.717476,41.47325599906],[-71.717444,41.47334199906],[-71.717426,41.47342299906],[-71.717407,41.47365199906],[-71.717405,41.47386799906],[-71.717425,41.47398199906],[-71.717483,41.47420299906],[-71.717589,41.47443099906],[-71.717619,41.47451199906],[-71.717642,41.47459499906],[-71.717652,41.47467299906],[-71.717653,41.47474799906],[-71.717647,41.47482199906],[-71.717632,41.47488999906],[-71.717605,41.47494599906],[-71.717566,41.47499999906],[-71.717511,41.47504799906],[-71.717385,41.47512799906],[-71.717318,41.47516099906],[-71.717246,41.47518299906],[-71.717163,41.47519399906],[-71.716971,41.47519599906],[-71.716877,41.47518899906],[-71.716792,41.47517299906],[-71.716724,41.47514399906],[-71.716599,41.47506399906],[-71.71642,41.47493699906],[-71.716358,41.47490899906],[-71.716287,41.47488999906],[-71.716211,41.47487999906],[-71.716134,41.47488599906],[-71.716061,41.47490599906],[-71.715973,41.47494199906],[-71.715925,41.47498899906],[-71.715881,41.47504499906],[-71.715865,41.47510499906],[-71.71586,41.47516099906],[-71.715872,41.47521799906],[-71.715956,41.47548599906],[-71.715977,41.47553999906],[-71.716075,41.47572999906],[-71.716101,41.47577099906],[-71.716121,41.47580199906],[-71.716244,41.47595499906],[-71.716377,41.47610099906],[-71.716433,41.47617399906],[-71.716479,41.47624799906],[-71.716529,41.47631699906],[-71.71665,41.47644699906],[-71.716708,41.47651799906],[-71.716755,41.47658899906],[-71.716793,41.47666199906],[-71.716821,41.47673999906],[-71.71686,41.47689299906],[-71.716869,41.47696999906],[-71.716856,41.47731899906],[-71.716839,41.47739499906],[-71.716816,41.47746899906],[-71.7168,41.47754199906],[-71.716802,41.47761299906],[-71.716827,41.47774799906],[-71.716822,41.47781499906],[-71.71679,41.47787799906],[-71.716739,41.47792799906],[-71.71665,41.47796999906],[-71.716576,41.47802399906],[-71.716488,41.47803799906],[-71.71642,41.47800199906],[-71.716391,41.47793599906],[-71.716399,41.47787299906],[-71.716435,41.47771499906],[-71.716463,41.47753499906],[-71.716489,41.47743699906],[-71.716545,41.47729199906],[-71.716515,41.47729599906],[-71.716434,41.47732399906],[-71.716371,41.47735399906],[-71.716312,41.47739199906],[-71.716189,41.47753099906],[-71.716135,41.47757699906],[-71.716011,41.47766999906],[-71.715948,41.47772299906],[-71.715876,41.47777599906],[-71.715791,41.47782499906],[-71.715501,41.47796799906],[-71.715406,41.47801099906],[-71.715307,41.47804499906],[-71.715204,41.47806899906],[-71.715107,41.47807799906],[-71.715019,41.47807899906],[-71.714944,41.47806999906],[-71.714879,41.47804399906],[-71.714761,41.47796699906],[-71.714653,41.47787599906],[-71.714578,41.47782999906],[-71.71449,41.47779099906],[-71.714396,41.47776599906],[-71.714287,41.47776199906],[-71.714168,41.47777899906],[-71.714051,41.47778999906],[-71.713825,41.47778199906],[-71.713721,41.47779899906],[-71.713638,41.47784599906],[-71.713592,41.47790299906],[-71.713568,41.47803199906],[-71.713565,41.47808999906],[-71.713581,41.47815099906],[-71.713702,41.47836599906],[-71.713758,41.47844199906],[-71.713817,41.47851199906],[-71.713879,41.47857199906],[-71.713941,41.47862099906],[-71.714002,41.47866099906],[-71.714116,41.47875699906],[-71.714209,41.47884899906],[-71.714266,41.47889899906],[-71.714309,41.47895599906],[-71.714383,41.47910699906],[-71.714409,41.47918399906],[-71.714419,41.47926599906],[-71.714413,41.47945199906],[-71.714398,41.47953699906],[-71.714379,41.47960499906],[-71.714346,41.47965699906],[-71.714268,41.47971199906],[-71.714181,41.47975699906],[-71.714131,41.47981299906],[-71.714117,41.47986899906],[-71.714129,41.47993199906],[-71.714155,41.48000599906],[-71.714168,41.48006999906],[-71.714199,41.48013399906],[-71.714299,41.48028799906],[-71.714408,41.48048399906],[-71.714499,41.48063199906],[-71.714563,41.48071999906],[-71.714782,41.48108299906],[-71.714832,41.48117999906],[-71.714868,41.48127999906],[-71.714922,41.48145799906],[-71.714954,41.48167199906],[-71.714977,41.48194999906],[-71.714978,41.48203599906],[-71.714962,41.48218899906],[-71.714959,41.48226899906],[-71.714941,41.48244299906],[-71.714965,41.48251699906],[-71.714999,41.48258199906],[-71.715,41.48265399906],[-71.714992,41.48279399906],[-71.714975,41.48285599906],[-71.71495,41.48291299906],[-71.714914,41.48297299906],[-71.714886,41.48303699906],[-71.714881,41.48310199906],[-71.714867,41.48316599906],[-71.714777,41.48342399906],[-71.714744,41.48348399906],[-71.714702,41.48354099906],[-71.71465,41.48359599906],[-71.714583,41.48364999906],[-71.714503,41.48369999906],[-71.714418,41.48374499906],[-71.714338,41.48377599906],[-71.714252,41.48378299906],[-71.713932,41.48378099906],[-71.713652,41.48379099906],[-71.713553,41.48380099906],[-71.713457,41.48382199906],[-71.713373,41.48385499906],[-71.71329,41.48389699906],[-71.713195,41.48393699906],[-71.713075,41.48396099906],[-71.71295,41.48397599906],[-71.712846,41.48397999906],[-71.71266,41.48395399906],[-71.712568,41.48396199906],[-71.712488,41.48398499906],[-71.712418,41.48401399906],[-71.712354,41.48404899906],[-71.712298,41.48409099906],[-71.71225,41.48413999906],[-71.712211,41.48419399906],[-71.712173,41.48427199906],[-71.712158,41.48434399906],[-71.712163,41.48440799906],[-71.712218,41.48450999906],[-71.71226,41.48456199906],[-71.712325,41.48461199906],[-71.712362,41.48462899906],[-71.712388,41.48464099906],[-71.712472,41.48466599906],[-71.712588,41.48468599906],[-71.712922,41.48471499906],[-71.71309,41.48473299906],[-71.713541,41.48479699906],[-71.713922,41.48485599906],[-71.714387,41.48491299906],[-71.71449,41.48491599906],[-71.714595,41.48490699906],[-71.715044,41.48484199906],[-71.715363,41.48480399906],[-71.715575,41.48478999906],[-71.71568,41.48477799906],[-71.715788,41.48475799906],[-71.715894,41.48472899906],[-71.715997,41.48469399906],[-71.716289,41.48457999906],[-71.716476,41.48449099906],[-71.716572,41.48445699906],[-71.71667,41.48442999906],[-71.71677,41.48441599906],[-71.716861,41.48442499906],[-71.717037,41.48447899906],[-71.717124,41.48451299906],[-71.717205,41.48455199906],[-71.71727,41.48459899906],[-71.717415,41.48478599906],[-71.717458,41.48485299906],[-71.717494,41.48492699906],[-71.717704,41.48547499906],[-71.717758,41.48564099906],[-71.717838,41.48596099906],[-71.717849,41.48603599906],[-71.717863,41.48620299906],[-71.717889,41.48635399906],[-71.717893,41.48643099906],[-71.717891,41.48651199906],[-71.71786,41.48674899906],[-71.717841,41.48682699906],[-71.717808,41.48690499906],[-71.717768,41.48698399906],[-71.71772,41.48706099906],[-71.717543,41.48728299906],[-71.717488,41.48733599906],[-71.717417,41.48735899906],[-71.717352,41.48732699906],[-71.717283,41.48737099906],[-71.717239,41.48741999906],[-71.717187,41.48756499906],[-71.717104,41.48767499906],[-71.717038,41.48772499906],[-71.716959,41.48775099906],[-71.7169,41.48778999906],[-71.716854,41.48783999906],[-71.71679,41.48797099906],[-71.716748,41.48803599906],[-71.716572,41.48826399906],[-71.716548,41.48832099906],[-71.716541,41.48838499906],[-71.716538,41.48851099906],[-71.716531,41.48857199906],[-71.716517,41.48863299906],[-71.716489,41.48869299906],[-71.716446,41.48874999906],[-71.71634,41.48886899906],[-71.716318,41.48894099906],[-71.716313,41.48922199906],[-71.716274,41.48952099906],[-71.716251,41.48964299906],[-71.716209,41.48978799906],[-71.716207,41.48984899906],[-71.71615,41.48999299906],[-71.716086,41.49017299906],[-71.71603,41.49031099906],[-71.715958,41.49044999906],[-71.715862,41.49059799906],[-71.715717,41.49083599906],[-71.71558,41.49107399906],[-71.715502,41.49122699906],[-71.715439,41.49141199906],[-71.715381,41.49158799906],[-71.715348,41.49170799906],[-71.715338,41.49176599906],[-71.715333,41.49193999906],[-71.71536,41.49217399906],[-71.715369,41.49234199906],[-71.715403,41.49253799906],[-71.715445,41.49273299906],[-71.715474,41.49283299906],[-71.715511,41.49292399906],[-71.715553,41.49300599906],[-71.715625,41.49317699906],[-71.715658,41.49332599906],[-71.715743,41.49344699906],[-71.715753,41.49351099906],[-71.715769,41.49356599906],[-71.715758,41.49362299906],[-71.715758,41.49368499906],[-71.715798,41.49381999906],[-71.715814,41.49389099906],[-71.715832,41.49409699906],[-71.715845,41.49416499906],[-71.715912,41.49432099906],[-71.715967,41.49449099906],[-71.715984,41.49456799906],[-71.715993,41.49465999906],[-71.715998,41.49471399906],[-71.71603,41.49480499906],[-71.716076,41.49490699906],[-71.716099,41.49498999906],[-71.716119,41.49506599906],[-71.716135,41.49512299906],[-71.716156,41.49520099906],[-71.716301,41.49510599906],[-71.716312,41.49509799906],[-71.717301,41.49447699906],[-71.717843,41.49411199906],[-71.71828,41.49382899906],[-71.719196,41.49323499906],[-71.721046,41.49201599906],[-71.72155,41.49168399906],[-71.722123,41.49130999906],[-71.722763,41.49089499906],[-71.723175,41.49064499906],[-71.723282,41.49058499906],[-71.723599,41.49040999906],[-71.723846,41.49027299906],[-71.724096,41.49013899906],[-71.724533,41.48990299906],[-71.724915,41.48971299906],[-71.725892,41.48924799906],[-71.72739,41.48853999906],[-71.728341,41.48808599906],[-71.728498,41.48800699906],[-71.730274,41.48713499906],[-71.730686,41.48692499906],[-71.731602,41.48646899906],[-71.732964,41.48581799906],[-71.73301,41.48579499906],[-71.733115,41.48574699906],[-71.733133,41.48573899906],[-71.73317,41.48572399906],[-71.734262,41.48517899906],[-71.735664,41.48450499906],[-71.736603,41.48406599906],[-71.737312,41.48372299906],[-71.738282,41.48327999906],[-71.73952,41.48269499906],[-71.741721,41.48160499906],[-71.742615,41.48117299906],[-71.743423,41.48073199906],[-71.743667,41.48058999906],[-71.744156,41.48030899906],[-71.744629,41.48001499906],[-71.745088,41.47973299906],[-71.745865,41.47920199906],[-71.746941,41.47845099906],[-71.747955,41.47778299906],[-71.749606,41.47664099906],[-71.75184,41.47511699906],[-71.753829,41.47376299906],[-71.754648,41.47318299906],[-71.754961,41.47296999906],[-71.755282,41.47274899906],[-71.755946,41.47228099906],[-71.756709,41.47175599906],[-71.757526,41.47120399906],[-71.758389,41.47061099906],[-71.759166,41.47007999906],[-71.760055,41.46947199906],[-71.760744,41.46899799906],[-71.76341,41.46716299906],[-71.764278,41.46655999906],[-71.764924,41.46612099906],[-71.765778,41.46552899906],[-71.766181,41.46522699906],[-71.766721,41.46479899906],[-71.767086,41.46448999906],[-71.767109,41.46447499906],[-71.767468,41.46415799906],[-71.76886,41.46288599906],[-71.769766,41.46209299906],[-71.771114,41.46086199906],[-71.771675,41.46032299906],[-71.771866,41.46014399906],[-71.771928,41.46009299906],[-71.77195,41.46007499906],[-71.772011,41.46001399906],[-71.772232,41.45981999906],[-71.772964,41.45914499906],[-71.773134,41.45900899906],[-71.773224,41.45891999906],[-71.774141,41.45808099906],[-71.77449,41.45777499906],[-71.775186,41.45714299906],[-71.775849,41.45652599906],[-71.776651,41.45579099906],[-71.777301,41.45521599906],[-71.777843,41.45471299906],[-71.778203,41.45438899906],[-71.778295,41.45430699906],[-71.780406,41.45239099906],[-71.78073,41.45210399906],[-71.781788,41.45112899906],[-71.782242,41.45072599906],[-71.782491,41.45052999906],[-71.782639,41.45041299906],[-71.782928,41.45021099906],[-71.783456,41.44987799906],[-71.783774,41.44968599906],[-71.78434,41.44939599906],[-71.784949,41.44910999906],[-71.78533,41.44893499906],[-71.785698,41.44877599906],[-71.786308,41.44852099906],[-71.78643,41.44846299906],[-71.786443,41.44832599906],[-71.786446,41.44829599906],[-71.786476,41.44775399906],[-71.786484,41.44764699906],[-71.786545,41.44716599906],[-71.786636,41.44631599906],[-71.786667,41.44604899906],[-71.786751,41.44502999906],[-71.786812,41.44447699906],[-71.78685,41.44380999906],[-71.78685,41.44361099906]]]}}"}, +{"type": "blockgroup", "typeId": 507023, "areaId": 29405, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.797287,41.42639899906],[-71.79666,41.42633999906],[-71.795745,41.42627099906],[-71.795624,41.42624299906],[-71.795158,41.42616999906],[-71.794685,41.42610199906],[-71.794479,41.42606699906],[-71.79425,41.42604099906],[-71.793388,41.42592999906],[-71.792572,41.42583799906],[-71.79171,41.42573499906],[-71.791519,41.42571599906],[-71.791252,41.42567799906],[-71.790579,41.42558199906],[-71.790459,41.42533499906],[-71.790267,41.42510399906],[-71.790123,41.42499899906],[-71.789915,41.42494999906],[-71.789624,41.42490499906],[-71.789283,41.42481899906],[-71.789027,41.42474999906],[-71.788794,41.42466499906],[-71.788582,41.42454599906],[-71.788354,41.42436299906],[-71.787979,41.42404899906],[-71.787934,41.42401999906],[-71.786833,41.42311999906],[-71.786464,41.42335499906],[-71.786095,41.42360299906],[-71.785728,41.42328999906],[-71.785446,41.42310699906],[-71.785233,41.42300399906],[-71.785065,41.42289699906],[-71.784843,41.42281699906],[-71.784615,41.42272599906],[-71.784058,41.42254599906],[-71.781769,41.42184099906],[-71.781288,41.42167999906],[-71.780937,41.42157399906],[-71.78064,41.42147099906],[-71.780556,41.42143599906],[-71.780286,41.42133899906],[-71.780145,41.42128899906],[-71.779274,41.42090599906],[-71.778786,41.42069999906],[-71.778419,41.42052499906],[-71.777794,41.42016199906],[-71.777687,41.42010099906],[-71.776405,41.41925799906],[-71.775574,41.41867099906],[-71.775215,41.41842999906],[-71.77468,41.41805999906],[-71.774243,41.41775699906],[-71.773751,41.41741599906],[-71.7733,41.41710299906],[-71.772446,41.41652299906],[-71.771667,41.41599699906],[-71.771113,41.41561699906],[-71.770592,41.41525999906],[-71.770569,41.41524099906],[-71.769495,41.41451099906],[-71.769206,41.41431399906],[-71.768451,41.41380099906],[-71.767555,41.41319199906],[-71.766276,41.41232299906],[-71.765915,41.41207099906],[-71.765221,41.41164399906],[-71.765068,41.41150699906],[-71.764832,41.41132699906],[-71.764481,41.41107599906],[-71.764069,41.41079699906],[-71.763724,41.41089099906],[-71.763481,41.41095699906],[-71.763107,41.41106799906],[-71.762611,41.41122399906],[-71.761841,41.41138099906],[-71.76059,41.41169699906],[-71.760117,41.41181199906],[-71.758972,41.41210199906],[-71.759232,41.41238399906],[-71.760223,41.41342899906],[-71.760773,41.41397499906],[-71.761154,41.41438699906],[-71.761475,41.41472599906],[-71.761486,41.41473899906],[-71.76156,41.41482599906],[-71.761696,41.41498599906],[-71.761848,41.41519499906],[-71.762032,41.41561499906],[-71.762276,41.41611899906],[-71.7623,41.41617499906],[-71.762482,41.41660299906],[-71.762981,41.41761899906],[-71.763107,41.41787699906],[-71.763237,41.41821299906],[-71.763275,41.41840699906],[-71.763306,41.41850299906],[-71.763336,41.41854099906],[-71.76339,41.41858299906],[-71.763463,41.41860299906],[-71.763504,41.41861299906],[-71.763626,41.41862899906],[-71.76387,41.41864799906],[-71.764137,41.41867399906],[-71.764313,41.41870099906],[-71.764557,41.41876199906],[-71.764771,41.41884999906],[-71.764984,41.41891099906],[-71.765228,41.41894899906],[-71.765762,41.41897599906],[-71.766113,41.41901399906],[-71.766388,41.41903699906],[-71.766701,41.41907099906],[-71.766937,41.41908999906],[-71.767426,41.41913999906],[-71.767906,41.41921599906],[-71.768257,41.41928099906],[-71.768806,41.41939199906],[-71.769073,41.41945599906],[-71.769341,41.41957899906],[-71.769508,41.41970799906],[-71.76963,41.41982699906],[-71.769753,41.42010099906],[-71.769928,41.42044099906],[-71.770027,41.42060499906],[-71.77018,41.42089799906],[-71.770332,41.42114299906],[-71.770477,41.42140999906],[-71.770592,41.42167699906],[-71.770645,41.42192499906],[-71.770653,41.42208499906],[-71.770668,41.42217999906],[-71.770683,41.42232499906],[-71.770691,41.42253899906],[-71.770744,41.42298499906],[-71.770775,41.42320599906],[-71.770775,41.42332099906],[-71.770767,41.42343099906],[-71.770729,41.42369499906],[-71.770699,41.42385099906],[-71.77066,41.42412599906],[-71.770622,41.42449999906],[-71.770638,41.42463699906],[-71.77076,41.42504099906],[-71.770828,41.42536499906],[-71.770874,41.42562099906],[-71.770958,41.42596399906],[-71.771027,41.42628099906],[-71.771172,41.42695599906],[-71.7714,41.42756299906],[-71.771683,41.42822999906],[-71.771721,41.42866099906],[-71.771759,41.42899299906],[-71.771797,41.42945899906],[-71.771828,41.42960399906],[-71.771957,41.42986699906],[-71.772049,41.42999999906],[-71.772232,41.43028599906],[-71.772835,41.43101499906],[-71.773216,41.43146099906],[-71.773521,41.43184299906],[-71.773796,41.43217499906],[-71.773964,41.43239199906],[-71.774197,41.43266499906],[-71.774284,41.43278899906],[-71.774414,41.43303299906],[-71.774605,41.43342199906],[-71.774963,41.43424999906],[-71.775177,41.43463499906],[-71.775345,41.43496299906],[-71.775688,41.43559299906],[-71.776054,41.43615699906],[-71.775925,41.43635899906],[-71.775635,41.43685199906],[-71.775352,41.43731299906],[-71.775284,41.43748099906],[-71.775246,41.43764099906],[-71.775246,41.43778599906],[-71.775253,41.43791999906],[-71.775307,41.43807199906],[-71.775429,41.43835399906],[-71.775604,41.43873199906],[-71.775734,41.43896099906],[-71.775917,41.43931599906],[-71.77623,41.43996399906],[-71.776344,41.44017399906],[-71.776497,41.44051399906],[-71.776588,41.44071599906],[-71.776741,41.44108199906],[-71.776817,41.44124599906],[-71.777061,41.44150899906],[-71.777382,41.44177999906],[-71.777565,41.44191399906],[-71.777687,41.44205499906],[-71.777794,41.44220399906],[-71.777946,41.44255099906],[-71.77829,41.44329099906],[-71.778648,41.44407699906],[-71.779015,41.44494199906],[-71.779305,41.44495399906],[-71.780106,41.44496899906],[-71.780647,41.44498799906],[-71.780998,41.44498799906],[-71.781395,41.44497699906],[-71.78196,41.44494599906],[-71.782295,41.44491199906],[-71.782669,41.44484699906],[-71.783356,41.44469499906],[-71.783615,41.44462599906],[-71.78392,41.44452699906],[-71.784279,41.44440099906],[-71.785309,41.44397399906],[-71.786247,41.44361099906],[-71.786842,41.44340899906],[-71.78685,41.44361099906],[-71.78685,41.44380999906],[-71.786812,41.44447699906],[-71.786751,41.44502999906],[-71.786667,41.44604899906],[-71.786636,41.44631599906],[-71.786545,41.44716599906],[-71.786484,41.44764699906],[-71.786476,41.44775399906],[-71.786446,41.44829599906],[-71.786443,41.44832599906],[-71.78643,41.44846299906],[-71.78653,41.44842099906],[-71.786639,41.44838099906],[-71.786944,41.44823999906],[-71.788352,41.44765099906],[-71.788606,41.44753799906],[-71.789217,41.44725699906],[-71.78991,41.44689299906],[-71.79101,41.44630099906],[-71.791203,41.44618099906],[-71.791369,41.44607699906],[-71.791521,41.44596799906],[-71.791809,41.44577399906],[-71.792913,41.44501999906],[-71.793358,41.44471699906],[-71.79435,41.44403099906],[-71.795926,41.44298399906],[-71.796669,41.44249399906],[-71.796681,41.44220199906],[-71.796767,41.44012399906],[-71.796872,41.43758699906],[-71.79688,41.43729399906],[-71.796979,41.43370299906],[-71.797112,41.43049999906],[-71.797134,41.42998199906],[-71.797287,41.42639899906]]]}}"}, +{"type": "blockgroup", "typeId": 507024, "areaId": 29406, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.776497,41.44051399906],[-71.776344,41.44017399906],[-71.77623,41.43996399906],[-71.775917,41.43931599906],[-71.775734,41.43896099906],[-71.775604,41.43873199906],[-71.775429,41.43835399906],[-71.775307,41.43807199906],[-71.775253,41.43791999906],[-71.775246,41.43778599906],[-71.775246,41.43764099906],[-71.775284,41.43748099906],[-71.775352,41.43731299906],[-71.775635,41.43685199906],[-71.775925,41.43635899906],[-71.776054,41.43615699906],[-71.775688,41.43559299906],[-71.775345,41.43496299906],[-71.775177,41.43463499906],[-71.774963,41.43424999906],[-71.774605,41.43342199906],[-71.774414,41.43303299906],[-71.774284,41.43278899906],[-71.774197,41.43266499906],[-71.773964,41.43239199906],[-71.773796,41.43217499906],[-71.773521,41.43184299906],[-71.773216,41.43146099906],[-71.772835,41.43101499906],[-71.772232,41.43028599906],[-71.772049,41.42999999906],[-71.771957,41.42986699906],[-71.771828,41.42960399906],[-71.771797,41.42945899906],[-71.771759,41.42899299906],[-71.771721,41.42866099906],[-71.771683,41.42822999906],[-71.7714,41.42756299906],[-71.771172,41.42695599906],[-71.771027,41.42628099906],[-71.770958,41.42596399906],[-71.770874,41.42562099906],[-71.770828,41.42536499906],[-71.77076,41.42504099906],[-71.770638,41.42463699906],[-71.770622,41.42449999906],[-71.77066,41.42412599906],[-71.770699,41.42385099906],[-71.770729,41.42369499906],[-71.770767,41.42343099906],[-71.770775,41.42332099906],[-71.770775,41.42320599906],[-71.770744,41.42298499906],[-71.770691,41.42253899906],[-71.770683,41.42232499906],[-71.770668,41.42217999906],[-71.770653,41.42208499906],[-71.770645,41.42192499906],[-71.770592,41.42167699906],[-71.770477,41.42140999906],[-71.770332,41.42114299906],[-71.77018,41.42089799906],[-71.770027,41.42060499906],[-71.769928,41.42044099906],[-71.769753,41.42010099906],[-71.76963,41.41982699906],[-71.769508,41.41970799906],[-71.769341,41.41957899906],[-71.769073,41.41945599906],[-71.768806,41.41939199906],[-71.768257,41.41928099906],[-71.767906,41.41921599906],[-71.767426,41.41913999906],[-71.766937,41.41908999906],[-71.766701,41.41907099906],[-71.766388,41.41903699906],[-71.766113,41.41901399906],[-71.765762,41.41897599906],[-71.765228,41.41894899906],[-71.764984,41.41891099906],[-71.764771,41.41884999906],[-71.764557,41.41876199906],[-71.764313,41.41870099906],[-71.764137,41.41867399906],[-71.76387,41.41864799906],[-71.763626,41.41862899906],[-71.763504,41.41861299906],[-71.763463,41.41860299906],[-71.76339,41.41858299906],[-71.763336,41.41854099906],[-71.763306,41.41850299906],[-71.763275,41.41840699906],[-71.763237,41.41821299906],[-71.763107,41.41787699906],[-71.762981,41.41761899906],[-71.762482,41.41660299906],[-71.7623,41.41617499906],[-71.762276,41.41611899906],[-71.762032,41.41561499906],[-71.761848,41.41519499906],[-71.761696,41.41498599906],[-71.76156,41.41482599906],[-71.761486,41.41473899906],[-71.761475,41.41472599906],[-71.761154,41.41438699906],[-71.760773,41.41397499906],[-71.760223,41.41342899906],[-71.759232,41.41238399906],[-71.758972,41.41210199906],[-71.760117,41.41181199906],[-71.76059,41.41169699906],[-71.761841,41.41138099906],[-71.762611,41.41122399906],[-71.763107,41.41106799906],[-71.763481,41.41095699906],[-71.763724,41.41089099906],[-71.763707,41.41085299906],[-71.7637,41.41073599906],[-71.763674,41.41055699906],[-71.763706,41.41051599906],[-71.763794,41.41049299906],[-71.764022,41.41042299906],[-71.764084,41.41038699906],[-71.764129,41.41033499906],[-71.764142,41.41028199906],[-71.76413,41.41022399906],[-71.764101,41.41016899906],[-71.76405,41.41011699906],[-71.763992,41.41007199906],[-71.76397,41.41002299906],[-71.763979,41.40995999906],[-71.764018,41.40991299906],[-71.764095,41.40989099906],[-71.764157,41.40985999906],[-71.764182,41.40980099906],[-71.764125,41.40968999906],[-71.764137,41.40962599906],[-71.764169,41.40957099906],[-71.764177,41.40950999906],[-71.76412,41.40945999906],[-71.764052,41.40942299906],[-71.764021,41.40936999906],[-71.764104,41.40925999906],[-71.764073,41.40916199906],[-71.764113,41.40910099906],[-71.764159,41.40904599906],[-71.764161,41.40900399906],[-71.764095,41.40897299906],[-71.764028,41.40895299906],[-71.76395,41.40891699906],[-71.763931,41.40886999906],[-71.763939,41.40879499906],[-71.763931,41.40873799906],[-71.76391,41.40866599906],[-71.76388,41.40862499906],[-71.763722,41.40859399906],[-71.763678,41.40856899906],[-71.763709,41.40851699906],[-71.763804,41.40841299906],[-71.763798,41.40834999906],[-71.763736,41.40831499906],[-71.763646,41.40831999906],[-71.763593,41.40830199906],[-71.763551,41.40824099906],[-71.763496,41.40818299906],[-71.763422,41.40813099906],[-71.763357,41.40809299906],[-71.763343,41.40803199906],[-71.76345,41.40794099906],[-71.76342,41.40788099906],[-71.763349,41.40776899906],[-71.76328,41.40772799906],[-71.763106,41.40773599906],[-71.76304,41.40771499906],[-71.762965,41.40766299906],[-71.762912,41.40753799906],[-71.762866,41.40748599906],[-71.762758,41.40739599906],[-71.762743,41.40733399906],[-71.762779,41.40728599906],[-71.762853,41.40724999906],[-71.762872,41.40721799906],[-71.762829,41.40715999906],[-71.762743,41.40706499906],[-71.762714,41.40700499906],[-71.762742,41.40696699906],[-71.762826,41.40695199906],[-71.762971,41.40695599906],[-71.763048,41.40695299906],[-71.763127,41.40692299906],[-71.763198,41.40688099906],[-71.763208,41.40680899906],[-71.763179,41.40674299906],[-71.763124,41.40671299906],[-71.763036,41.40670199906],[-71.762955,41.40665699906],[-71.762924,41.40658299906],[-71.762931,41.40652699906],[-71.762982,41.40639599906],[-71.763044,41.40628699906],[-71.763085,41.40624299906],[-71.763113,41.40618499906],[-71.763163,41.40612799906],[-71.763259,41.40611199906],[-71.763338,41.40608199906],[-71.763355,41.40602699906],[-71.763382,41.40596899906],[-71.76343,41.40591499906],[-71.763419,41.40585599906],[-71.763378,41.40579899906],[-71.763367,41.40574399906],[-71.763378,41.40568999906],[-71.763462,41.40557999906],[-71.763538,41.40544599906],[-71.763588,41.40539699906],[-71.763652,41.40535299906],[-71.763684,41.40530699906],[-71.763685,41.40523799906],[-71.76371,41.40517599906],[-71.763899,41.40505199906],[-71.763956,41.40501899906],[-71.764018,41.40497499906],[-71.764095,41.40486599906],[-71.764146,41.40482099906],[-71.76421,41.40478499906],[-71.764275,41.40475999906],[-71.764455,41.40472599906],[-71.764521,41.40469399906],[-71.764631,41.40458799906],[-71.764693,41.40455299906],[-71.764857,41.40451099906],[-71.764929,41.40448599906],[-71.764995,41.40443399906],[-71.765043,41.40438599906],[-71.765249,41.40420699906],[-71.765291,41.40416199906],[-71.765339,41.40412099906],[-71.76543,41.40401499906],[-71.765551,41.40392099906],[-71.765595,41.40386799906],[-71.765633,41.40381299906],[-71.765662,41.40368799906],[-71.765711,41.40364499906],[-71.765789,41.40361799906],[-71.765834,41.40358099906],[-71.765827,41.40352499906],[-71.765839,41.40346199906],[-71.765974,41.40331199906],[-71.766032,41.40326199906],[-71.766057,41.40319899906],[-71.766011,41.40315099906],[-71.765935,41.40311799906],[-71.765873,41.40306799906],[-71.765887,41.40301099906],[-71.765936,41.40295899906],[-71.766013,41.40294799906],[-71.766106,41.40295499906],[-71.766187,41.40295399906],[-71.766233,41.40293399906],[-71.766237,41.40286299906],[-71.766232,41.40280199906],[-71.76628,41.40275199906],[-71.766346,41.40272399906],[-71.76644,41.40269799906],[-71.766531,41.40268199906],[-71.766611,41.40269799906],[-71.766682,41.40272899906],[-71.766757,41.40269399906],[-71.766804,41.40262399906],[-71.76698,41.40260999906],[-71.767145,41.40261899906],[-71.767161,41.40255599906],[-71.767186,41.40249899906],[-71.767231,41.40243899906],[-71.767254,41.40238199906],[-71.767242,41.40231799906],[-71.767206,41.40225799906],[-71.76716,41.40220599906],[-71.767109,41.40213699906],[-71.767089,41.40206599906],[-71.76706,41.40199099906],[-71.767028,41.40194199906],[-71.766989,41.40189499906],[-71.76693,41.40185799906],[-71.76686,41.40183199906],[-71.766787,41.40178699906],[-71.76676,41.40173099906],[-71.766745,41.40167399906],[-71.766736,41.40147599906],[-71.76672,41.40141699906],[-71.766641,41.40124899906],[-71.766624,41.40118399906],[-71.766637,41.40112399906],[-71.76669,41.40107099906],[-71.76677,41.40101399906],[-71.766798,41.40096399906],[-71.766825,41.40083299906],[-71.766851,41.40077699906],[-71.766891,41.40072199906],[-71.76694,41.40066499906],[-71.767009,41.40060699906],[-71.767094,41.40056299906],[-71.767174,41.40053199906],[-71.767257,41.40050799906],[-71.767345,41.40049199906],[-71.767446,41.40046799906],[-71.767466,41.40042999906],[-71.767424,41.40036199906],[-71.76737,41.40030899906],[-71.767306,41.40027499906],[-71.76702,41.40014299906],[-71.766922,41.40010299906],[-71.766812,41.40006399906],[-71.766708,41.40002199906],[-71.766489,41.39991399906],[-71.766395,41.39985499906],[-71.766314,41.39978499906],[-71.766178,41.39962099906],[-71.766121,41.39955899906],[-71.766869,41.39944799906],[-71.76718,41.39920599906],[-71.767307,41.39909299906],[-71.767333,41.39904899906],[-71.76737,41.39899899906],[-71.767433,41.39900799906],[-71.767497,41.39904199906],[-71.767582,41.39909699906],[-71.767874,41.39926899906],[-71.768086,41.39938299906],[-71.768205,41.39943499906],[-71.768398,41.39949299906],[-71.768533,41.39951899906],[-71.768873,41.39956899906],[-71.769003,41.39957699906],[-71.769136,41.39957699906],[-71.769255,41.39955899906],[-71.769367,41.39952399906],[-71.769471,41.39948399906],[-71.769556,41.39943599906],[-71.769634,41.39936999906],[-71.769744,41.39920699906],[-71.769818,41.39913599906],[-71.769894,41.39905399906],[-71.769975,41.39897799906],[-71.770065,41.39891399906],[-71.770146,41.39884599906],[-71.770286,41.39867299906],[-71.770396,41.39851099906],[-71.770492,41.39834299906],[-71.770524,41.39826499906],[-71.770547,41.39817199906],[-71.770546,41.39808199906],[-71.770524,41.39799799906],[-71.770481,41.39791199906],[-71.770307,41.39766299906],[-71.770263,41.39758399906],[-71.7701,41.39735099906],[-71.769908,41.39716799906],[-71.769904,41.39715599906],[-71.76986,41.39710099906],[-71.769814,41.39705399906],[-71.769706,41.39696699906],[-71.769508,41.39684999906],[-71.769442,41.39679999906],[-71.769364,41.39675699906],[-71.769286,41.39672999906],[-71.769281,41.39678999906],[-71.769317,41.39680299906],[-71.769342,41.39684199906],[-71.769365,41.39690699906],[-71.769377,41.39696599906],[-71.769418,41.39697499906],[-71.76948,41.39694799906],[-71.769504,41.39695999906],[-71.769483,41.39707299906],[-71.769466,41.39713199906],[-71.769529,41.39724599906],[-71.769526,41.39732099906],[-71.769562,41.39732099906],[-71.769609,41.39736099906],[-71.769576,41.39738899906],[-71.769524,41.39744699906],[-71.769542,41.39755999906],[-71.769556,41.39761899906],[-71.76959,41.39766699906],[-71.769598,41.39773499906],[-71.769598,41.39780899906],[-71.769531,41.39781599906],[-71.769511,41.39777199906],[-71.76951,41.39764099906],[-71.769469,41.39760799906],[-71.76938,41.39739799906],[-71.769314,41.39721799906],[-71.769268,41.39712999906],[-71.769217,41.39705099906],[-71.769148,41.39686799906],[-71.769069,41.39671499906],[-71.76898,41.39647099906],[-71.768934,41.39638999906],[-71.768785,41.39619799906],[-71.768695,41.39610799906],[-71.768658,41.39604599906],[-71.768682,41.39598899906],[-71.768643,41.39594099906],[-71.768576,41.39589499906],[-71.768526,41.39585299906],[-71.768476,41.39579699906],[-71.768453,41.39574399906],[-71.768436,41.39568199906],[-71.768406,41.39561899906],[-71.768364,41.39554699906],[-71.768356,41.39547099906],[-71.768412,41.39532699906],[-71.768446,41.39525499906],[-71.76844,41.39520999906],[-71.768392,41.39516799906],[-71.768362,41.39510899906],[-71.768318,41.39505399906],[-71.768262,41.39500599906],[-71.768195,41.39497399906],[-71.768143,41.39494199906],[-71.76813,41.39482699906],[-71.768069,41.39481799906],[-71.768012,41.39486799906],[-71.767941,41.39491699906],[-71.767849,41.39490499906],[-71.767746,41.39490899906],[-71.767589,41.39494899906],[-71.767517,41.39498699906],[-71.767446,41.39503199906],[-71.767315,41.39513599906],[-71.767038,41.39543099906],[-71.766722,41.39588499906],[-71.766512,41.39617299906],[-71.766453,41.39627599906],[-71.766399,41.39640099906],[-71.766359,41.39645599906],[-71.7662,41.39660399906],[-71.766156,41.39660999906],[-71.766052,41.39661399906],[-71.765979,41.39659599906],[-71.765948,41.39655599906],[-71.765932,41.39649699906],[-71.76586,41.39636399906],[-71.765791,41.39630999906],[-71.765735,41.39627399906],[-71.765658,41.39625299906],[-71.765679,41.39635499906],[-71.765737,41.39649399906],[-71.765755,41.39655399906],[-71.765789,41.39661299906],[-71.765834,41.39667199906],[-71.765922,41.39670499906],[-71.765997,41.39675599906],[-71.76597,41.39679799906],[-71.76591,41.39682799906],[-71.765771,41.39692299906],[-71.765559,41.39711599906],[-71.765468,41.39723899906],[-71.76544,41.39728899906],[-71.765398,41.39734899906],[-71.765356,41.39742499906],[-71.765327,41.39750999906],[-71.765285,41.39758299906],[-71.765153,41.39770599906],[-71.765087,41.39777499906],[-71.765035,41.39784099906],[-71.764996,41.39790999906],[-71.764976,41.39797799906],[-71.764966,41.39803999906],[-71.764985,41.39810599906],[-71.765016,41.39815799906],[-71.76501,41.39819899906],[-71.764954,41.39825499906],[-71.7649,41.39829599906],[-71.76485,41.39834799906],[-71.764802,41.39840699906],[-71.764735,41.39846399906],[-71.764645,41.39851099906],[-71.764549,41.39855499906],[-71.764487,41.39859999906],[-71.764483,41.39867899906],[-71.764528,41.39870699906],[-71.764713,41.39873199906],[-71.764741,41.39877499906],[-71.764732,41.39883699906],[-71.764692,41.39890099906],[-71.764627,41.39896499906],[-71.764557,41.39902099906],[-71.764483,41.39907299906],[-71.764413,41.39913199906],[-71.764353,41.39919799906],[-71.764189,41.39942399906],[-71.764149,41.39950699906],[-71.764111,41.39960499906],[-71.764022,41.39976699906],[-71.764,41.39981599906],[-71.763941,41.39995199906],[-71.763897,41.40002599906],[-71.763862,41.40010699906],[-71.763854,41.40019899906],[-71.763838,41.40027199906],[-71.763789,41.40042599906],[-71.763756,41.40050699906],[-71.763641,41.40070099906],[-71.76357,41.40083399906],[-71.763526,41.40089299906],[-71.763473,41.40094599906],[-71.763442,41.40099899906],[-71.763454,41.40105299906],[-71.7635,41.40111499906],[-71.763489,41.40116199906],[-71.76343,41.40121799906],[-71.763317,41.40130499906],[-71.763248,41.40134199906],[-71.763167,41.40137699906],[-71.763086,41.40140299906],[-71.762985,41.40140599906],[-71.762907,41.40143399906],[-71.762847,41.40148899906],[-71.762777,41.40152799906],[-71.762451,41.40157599906],[-71.762326,41.40158399906],[-71.762092,41.40155399906],[-71.761969,41.40157299906],[-71.761851,41.40161199906],[-71.761748,41.40163499906],[-71.761644,41.40161899906],[-71.761541,41.40162799906],[-71.761329,41.40169799906],[-71.761238,41.40175199906],[-71.761165,41.40181899906],[-71.761076,41.40188399906],[-71.760981,41.40194299906],[-71.760887,41.40198899906],[-71.760829,41.40202999906],[-71.760867,41.40214099906],[-71.760899,41.40221099906],[-71.760978,41.40226799906],[-71.761054,41.40231599906],[-71.76104,41.40232899906],[-71.760881,41.40241099906],[-71.760809,41.40237899906],[-71.760717,41.40234599906],[-71.760608,41.40232599906],[-71.760538,41.40236399906],[-71.760464,41.40242999906],[-71.760398,41.40251399906],[-71.760362,41.40258899906],[-71.760311,41.40263999906],[-71.760233,41.40266599906],[-71.760161,41.40271399906],[-71.760107,41.40278699906],[-71.760047,41.40292899906],[-71.759981,41.40297799906],[-71.759787,41.40304399906],[-71.759672,41.40307699906],[-71.75955,41.40311799906],[-71.759446,41.40316399906],[-71.759351,41.40322499906],[-71.759258,41.40329899906],[-71.758839,41.40366999906],[-71.758737,41.40374399906],[-71.758546,41.40387299906],[-71.758342,41.40400099906],[-71.758257,41.40406699906],[-71.758187,41.40413999906],[-71.758138,41.40422699906],[-71.758029,41.40448099906],[-71.75797,41.40464899906],[-71.757978,41.40470699906],[-71.758021,41.40473999906],[-71.758021,41.40476099906],[-71.75794,41.40488099906],[-71.757824,41.40502199906],[-71.757707,41.40518399906],[-71.757532,41.40539799906],[-71.757486,41.40546999906],[-71.757416,41.40559999906],[-71.757354,41.40566499906],[-71.757298,41.40566399906],[-71.757242,41.40562499906],[-71.756268,41.40728499906],[-71.756138,41.40744699906],[-71.756008,41.40758599906],[-71.755945,41.40766099906],[-71.755872,41.40772199906],[-71.755678,41.40782299906],[-71.755585,41.40786599906],[-71.755477,41.40790199906],[-71.755249,41.40795799906],[-71.755147,41.40797699906],[-71.754809,41.40800899906],[-71.754379,41.40803599906],[-71.754254,41.40803899906],[-71.754039,41.40803599906],[-71.753904,41.40802699906],[-71.753797,41.40801999906],[-71.753591,41.40799399906],[-71.753156,41.40794999906],[-71.752722,41.40791899906],[-71.752603,41.40790399906],[-71.75241,41.40787199906],[-71.752187,41.40785099906],[-71.752007,41.40784099906],[-71.751828,41.40781799906],[-71.751797,41.40781399906],[-71.751624,41.40779599906],[-71.751323,41.40777799906],[-71.751123,41.40777899906],[-71.750937,41.40779699906],[-71.750635,41.40781699906],[-71.750471,41.40782199906],[-71.750399,41.40780599906],[-71.750324,41.40777899906],[-71.750173,41.40770399906],[-71.750034,41.40761699906],[-71.749944,41.40757699906],[-71.749859,41.40753299906],[-71.74972,41.40744299906],[-71.749652,41.40741199906],[-71.749547,41.40738699906],[-71.749482,41.40735699906],[-71.749446,41.40724699906],[-71.749406,41.40718699906],[-71.749325,41.40719399906],[-71.74925,41.40723199906],[-71.749176,41.40725599906],[-71.749102,41.40726999906],[-71.748952,41.40730999906],[-71.748863,41.40732199906],[-71.748674,41.40732799906],[-71.748578,41.40733699906],[-71.748484,41.40735199906],[-71.748393,41.40734999906],[-71.74835,41.40734499906],[-71.748227,41.40732899906],[-71.748171,41.40729299906],[-71.748081,41.40719099906],[-71.748026,41.40713599906],[-71.747973,41.40707199906],[-71.747894,41.40692699906],[-71.747864,41.40685899906],[-71.747848,41.40678799906],[-71.747855,41.40670799906],[-71.747875,41.40664999906],[-71.747936,41.40653199906],[-71.747981,41.40647299906],[-71.748019,41.40640799906],[-71.748105,41.40620199906],[-71.748132,41.40611899906],[-71.748182,41.40589599906],[-71.748216,41.40566699906],[-71.748233,41.40558699906],[-71.748245,41.40547199906],[-71.74825,41.40542999906],[-71.748276,41.40527699906],[-71.748282,41.40519299906],[-71.748258,41.40504499906],[-71.748233,41.40496299906],[-71.748202,41.40488899906],[-71.748101,41.40468699906],[-71.748056,41.40461599906],[-71.747995,41.40454799906],[-71.747865,41.40441699906],[-71.747793,41.40436099906],[-71.747545,41.40422499906],[-71.747473,41.40417399906],[-71.747411,41.40411099906],[-71.747242,41.40385299906],[-71.747147,41.40371599906],[-71.747045,41.40359199906],[-71.746937,41.40343899906],[-71.746873,41.40337199906],[-71.746569,41.40311299906],[-71.746382,41.40300399906],[-71.746209,41.40288899906],[-71.746059,41.40279999906],[-71.745818,41.40265099906],[-71.745659,41.40254099906],[-71.745585,41.40249199906],[-71.745364,41.40233299906],[-71.745346,41.40233099906],[-71.745288,41.40232399906],[-71.745263,41.40232399906],[-71.745021,41.40236599906],[-71.744952,41.40233599906],[-71.744821,41.40229199906],[-71.744801,41.40228499906],[-71.744772,41.40226799906],[-71.744724,41.40223899906],[-71.744678,41.40219599906],[-71.744607,41.40219299906],[-71.744523,41.40216399906],[-71.744345,41.40207099906],[-71.744144,41.40195599906],[-71.744082,41.40192699906],[-71.743975,41.40186899906],[-71.743771,41.40174499906],[-71.743602,41.40165099906],[-71.743384,41.40153899906],[-71.74337,41.40153299906],[-71.743041,41.40138299906],[-71.742912,41.40134599906],[-71.742795,41.40131899906],[-71.742693,41.40130099906],[-71.742575,41.40128999906],[-71.742451,41.40128499906],[-71.742226,41.40128999906],[-71.742097,41.40130199906],[-71.741864,41.40135199906],[-71.741412,41.40143399906],[-71.74128,41.40146199906],[-71.741163,41.40149599906],[-71.740969,41.40153599906],[-71.740733,41.40159399906],[-71.740604,41.40162099906],[-71.740372,41.40165999906],[-71.740131,41.40168699906],[-71.74003,41.40170399906],[-71.739931,41.40171399906],[-71.739811,41.40171599906],[-71.739698,41.40171099906],[-71.739597,41.40169599906],[-71.739387,41.40165699906],[-71.739211,41.40159199906],[-71.739137,41.40155199906],[-71.739057,41.40149299906],[-71.738848,41.40129899906],[-71.738803,41.40123599906],[-71.738711,41.40100799906],[-71.738662,41.40083999906],[-71.738574,41.40068399906],[-71.738537,41.40059999906],[-71.738494,41.40052099906],[-71.738439,41.40045299906],[-71.738349,41.40032899906],[-71.738264,41.40029099906],[-71.738167,41.40026399906],[-71.737984,41.40018399906],[-71.737874,41.40015799906],[-71.737771,41.40014399906],[-71.737686,41.40014199906],[-71.737601,41.40014499906],[-71.737508,41.40017499906],[-71.737412,41.40019399906],[-71.737394,41.40012499906],[-71.737409,41.40004399906],[-71.737379,41.40000899906],[-71.737324,41.40001899906],[-71.737178,41.40008099906],[-71.737074,41.40011099906],[-71.736976,41.40009599906],[-71.736874,41.40010099906],[-71.736843,41.40012099906],[-71.737053,41.40018599906],[-71.737079,41.40024799906],[-71.737113,41.40029999906],[-71.737174,41.40035599906],[-71.737105,41.40039299906],[-71.736961,41.40042499906],[-71.736615,41.40045199906],[-71.736159,41.40049899906],[-71.736032,41.40051599906],[-71.735476,41.40057499906],[-71.735347,41.40059199906],[-71.734952,41.40063199906],[-71.734573,41.40068299906],[-71.734449,41.40069599906],[-71.73394,41.40073099906],[-71.733574,41.40073899906],[-71.733343,41.40075199906],[-71.732995,41.40075799906],[-71.732761,41.40077899906],[-71.732658,41.40077499906],[-71.732563,41.40075899906],[-71.732344,41.40077599906],[-71.732244,41.40079099906],[-71.732142,41.40079799906],[-71.731934,41.40080299906],[-71.73185,41.40079499906],[-71.731775,41.40079399906],[-71.731703,41.40080699906],[-71.731543,41.40085099906],[-71.731463,41.40082999906],[-71.731404,41.40079599906],[-71.731329,41.40077499906],[-71.731239,41.40077299906],[-71.731168,41.40078099906],[-71.731097,41.40080099906],[-71.731041,41.40076999906],[-71.730979,41.40070999906],[-71.730929,41.40064499906],[-71.730922,41.40058399906],[-71.730941,41.40050699906],[-71.730983,41.40044499906],[-71.731055,41.40040699906],[-71.731123,41.40035099906],[-71.731186,41.40028499906],[-71.731256,41.40027599906],[-71.731348,41.40027099906],[-71.731456,41.40027199906],[-71.731706,41.40028599906],[-71.732037,41.40031599906],[-71.732175,41.40032499906],[-71.732527,41.40033499906],[-71.732664,41.40033099906],[-71.732808,41.40032099906],[-71.733075,41.40029299906],[-71.733343,41.40028899906],[-71.733469,41.40027399906],[-71.733899,41.40017999906],[-71.734064,41.40012099906],[-71.734221,41.40008399906],[-71.73443,41.40002499906],[-71.734533,41.39999199906],[-71.734634,41.39995199906],[-71.734828,41.39986699906],[-71.734907,41.39982299906],[-71.734979,41.39977199906],[-71.735038,41.39971799906],[-71.735084,41.39966199906],[-71.735128,41.39954699906],[-71.735131,41.39946899906],[-71.735112,41.39940599906],[-71.735082,41.39934399906],[-71.73504,41.39928699906],[-71.734983,41.39923599906],[-71.734841,41.39914099906],[-71.734654,41.39903699906],[-71.734372,41.39890299906],[-71.734277,41.39885099906],[-71.734178,41.39881099906],[-71.734076,41.39878399906],[-71.733846,41.39873199906],[-71.733745,41.39871399906],[-71.733637,41.39870099906],[-71.733083,41.39865699906],[-71.732892,41.39863499906],[-71.732647,41.39862299906],[-71.732568,41.39861299906],[-71.73231,41.39861499906],[-71.73188,41.39858299906],[-71.731674,41.39857299906],[-71.731502,41.39854599906],[-71.731329,41.39852799906],[-71.731252,41.39851399906],[-71.731089,41.39847599906],[-71.730936,41.39845799906],[-71.730876,41.39844199906],[-71.730843,41.39843199906],[-71.730748,41.39841599906],[-71.730655,41.39842199906],[-71.730028,41.39833799906],[-71.729799,41.39832199906],[-71.729605,41.39829899906],[-71.72913,41.39822999906],[-71.729037,41.39820899906],[-71.728887,41.39813599906],[-71.728818,41.39809399906],[-71.728764,41.39804699906],[-71.728643,41.39785999906],[-71.728612,41.39779999906],[-71.728587,41.39772999906],[-71.728538,41.39754699906],[-71.728535,41.39748699906],[-71.728548,41.39741999906],[-71.728568,41.39735699906],[-71.728607,41.39717799906],[-71.728583,41.39704599906],[-71.728564,41.39698599906],[-71.728485,41.39687299906],[-71.72845,41.39680999906],[-71.728363,41.39668699906],[-71.728255,41.39659099906],[-71.728146,41.39658399906],[-71.72808,41.39661399906],[-71.728023,41.39659099906],[-71.727975,41.39658799906],[-71.727984,41.39663799906],[-71.727945,41.39668199906],[-71.727884,41.39672699906],[-71.727685,41.39685599906],[-71.727572,41.39695199906],[-71.727481,41.39702299906],[-71.727466,41.39750499906],[-71.727453,41.39753699906],[-71.727423,41.39765799906],[-71.727377,41.39781499906],[-71.72733,41.39816099906],[-71.727316,41.39838499906],[-71.727311,41.39873599906],[-71.727328,41.39910299906],[-71.727382,41.39955499906],[-71.727393,41.39973899906],[-71.727412,41.39989599906],[-71.727451,41.40034099906],[-71.727506,41.40051999906],[-71.727539,41.40066899906],[-71.727586,41.40103699906],[-71.727586,41.40113099906],[-71.727571,41.40122899906],[-71.727549,41.40131199906],[-71.727524,41.40149099906],[-71.727509,41.40156499906],[-71.727462,41.40170299906],[-71.727349,41.40187199906],[-71.727284,41.40194499906],[-71.727115,41.40209199906],[-71.727026,41.40217499906],[-71.726739,41.40240899906],[-71.726431,41.40262499906],[-71.726262,41.40272899906],[-71.726151,41.40279199906],[-71.725921,41.40290599906],[-71.725789,41.40296599906],[-71.725445,41.40314199906],[-71.725335,41.40320399906],[-71.725106,41.40331999906],[-71.724869,41.40343199906],[-71.724635,41.40352599906],[-71.724316,41.40366399906],[-71.724026,41.40380399906],[-71.723947,41.40384899906],[-71.723808,41.40395499906],[-71.72375,41.40400699906],[-71.723707,41.40407099906],[-71.723628,41.40420599906],[-71.723592,41.40427599906],[-71.723558,41.40435699906],[-71.723542,41.40444899906],[-71.723545,41.40455399906],[-71.723523,41.40508899906],[-71.72353,41.40543099906],[-71.723524,41.40583399906],[-71.723507,41.40611999906],[-71.723483,41.40658899906],[-71.723458,41.40676899906],[-71.723382,41.40710599906],[-71.723325,41.40746099906],[-71.723307,41.40762999906],[-71.723309,41.40768499906],[-71.723319,41.40774099906],[-71.723355,41.40785699906],[-71.723398,41.40797099906],[-71.723443,41.40807299906],[-71.723545,41.40833299906],[-71.723598,41.40843199906],[-71.723665,41.40852099906],[-71.723842,41.40869999906],[-71.723932,41.40878199906],[-71.724029,41.40885399906],[-71.724252,41.40898799906],[-71.724312,41.40901899906],[-71.724428,41.40906299906],[-71.72454,41.40908899906],[-71.725039,41.40915099906],[-71.725185,41.40917699906],[-71.725472,41.40923599906],[-71.725703,41.40926599906],[-71.72594,41.40928799906],[-71.726209,41.40934199906],[-71.726338,41.40937599906],[-71.726457,41.40942199906],[-71.726636,41.40950799906],[-71.72682,41.40961199906],[-71.726952,41.40972299906],[-71.72705,41.40979299906],[-71.727112,41.40985999906],[-71.727325,41.41010899906],[-71.727389,41.41019199906],[-71.727412,41.41022199906],[-71.727458,41.41028999906],[-71.727546,41.41040099906],[-71.727623,41.41056899906],[-71.727666,41.41064199906],[-71.727752,41.41081199906],[-71.727807,41.41089699906],[-71.727861,41.41096899906],[-71.727913,41.41105099906],[-71.728054,41.41130399906],[-71.728097,41.41139699906],[-71.728126,41.41148499906],[-71.728142,41.41155899906],[-71.728162,41.41175999906],[-71.728182,41.41188899906],[-71.728188,41.41205799906],[-71.728207,41.41212299906],[-71.728245,41.41218999906],[-71.728405,41.41251899906],[-71.728429,41.41260999906],[-71.728413,41.41268599906],[-71.728384,41.41275799906],[-71.728364,41.41283499906],[-71.728361,41.41291899906],[-71.728368,41.41299099906],[-71.72844,41.41330299906],[-71.728483,41.41336899906],[-71.728547,41.41343099906],[-71.728652,41.41347799906],[-71.728866,41.41355499906],[-71.729071,41.41360999906],[-71.729147,41.41365199906],[-71.729215,41.41371299906],[-71.729294,41.41377499906],[-71.729383,41.41381699906],[-71.729479,41.41384299906],[-71.729573,41.41385299906],[-71.729661,41.41384999906],[-71.729742,41.41386899906],[-71.729816,41.41390599906],[-71.729878,41.41394599906],[-71.729909,41.41401099906],[-71.729959,41.41414899906],[-71.729979,41.41428599906],[-71.730015,41.41443599906],[-71.730027,41.41451799906],[-71.729974,41.41466199906],[-71.729938,41.41472799906],[-71.729861,41.41484999906],[-71.729777,41.41495999906],[-71.729728,41.41501499906],[-71.729574,41.41523999906],[-71.729513,41.41531099906],[-71.729385,41.41544599906],[-71.729332,41.41552899906],[-71.729222,41.41576999906],[-71.729173,41.41592199906],[-71.729144,41.41605999906],[-71.729109,41.41611799906],[-71.729095,41.41620299906],[-71.729093,41.41625999906],[-71.729129,41.41630499906],[-71.729204,41.41634599906],[-71.729216,41.41640899906],[-71.729216,41.41646399906],[-71.72924,41.41669499906],[-71.729264,41.41684899906],[-71.729285,41.41692799906],[-71.72934,41.41697699906],[-71.729381,41.41702199906],[-71.729407,41.41709299906],[-71.7294,41.41716799906],[-71.729243,41.41758199906],[-71.729178,41.41773299906],[-71.729123,41.41780499906],[-71.729059,41.41786699906],[-71.728893,41.41809299906],[-71.728826,41.41819499906],[-71.728761,41.41828199906],[-71.728643,41.41841499906],[-71.728389,41.41864899906],[-71.728239,41.41882499906],[-71.728156,41.41891099906],[-71.728119,41.41895899906],[-71.728021,41.41910799906],[-71.727946,41.41919599906],[-71.727837,41.41934799906],[-71.727673,41.41953399906],[-71.72754,41.41972999906],[-71.727444,41.41988699906],[-71.727291,41.42007799906],[-71.727222,41.42017699906],[-71.726979,41.42060799906],[-71.726839,41.42089499906],[-71.726736,41.42107499906],[-71.726693,41.42116499906],[-71.726648,41.42124399906],[-71.726595,41.42132499906],[-71.726547,41.42141799906],[-71.726396,41.42173799906],[-71.726339,41.42180799906],[-71.726282,41.42184299906],[-71.726232,41.42188999906],[-71.726066,41.42209199906],[-71.726039,41.42214299906],[-71.726004,41.42219499906],[-71.725977,41.42225099906],[-71.72596,41.42230499906],[-71.725949,41.42236299906],[-71.725945,41.42243599906],[-71.725951,41.42264899906],[-71.725959,41.42270999906],[-71.725971,41.42300399906],[-71.72596,41.42332599906],[-71.725946,41.42343799906],[-71.72593,41.42350499906],[-71.725859,41.42373799906],[-71.725795,41.42407199906],[-71.725776,41.42419799906],[-71.725768,41.42455799906],[-71.725786,41.42467799906],[-71.725786,41.42474699906],[-71.725763,41.42488699906],[-71.725763,41.42491299906],[-71.725722,41.42518699906],[-71.725745,41.42527999906],[-71.725808,41.42547499906],[-71.725848,41.42556399906],[-71.725896,41.42564399906],[-71.725935,41.42572099906],[-71.725951,41.42581699906],[-71.725962,41.42592499906],[-71.72598,41.42602999906],[-71.725992,41.42621099906],[-71.726031,41.42633099906],[-71.726045,41.42640299906],[-71.726025,41.42648599906],[-71.72598,41.42657499906],[-71.725837,41.42676299906],[-71.72576,41.42685399906],[-71.725772,41.42689599906],[-71.725798,41.42690999906],[-71.725885,41.42692099906],[-71.725993,41.42701699906],[-71.726074,41.42721499906],[-71.726187,41.42742199906],[-71.726035,41.42751399906],[-71.725952,41.42752599906],[-71.725929,41.42751599906],[-71.725829,41.42747399906],[-71.725765,41.42736399906],[-71.72574,41.42722899906],[-71.725729,41.42705899906],[-71.725731,41.42699799906],[-71.725721,41.42696499906],[-71.725656,41.42691699906],[-71.725618,41.42690999906],[-71.725465,41.42697399906],[-71.725139,41.42708099906],[-71.7251,41.42709999906],[-71.725019,41.42713899906],[-71.724855,41.42724699906],[-71.724753,41.42732799906],[-71.724645,41.42740399906],[-71.724376,41.42764399906],[-71.724272,41.42771799906],[-71.723972,41.42789599906],[-71.723863,41.42795399906],[-71.723715,41.42803299906],[-71.723592,41.42810699906],[-71.723461,41.42817199906],[-71.72332,41.42822999906],[-71.723053,41.42834999906],[-71.722723,41.42846799906],[-71.722653,41.42848999906],[-71.722456,41.42853999906],[-71.722267,41.42858899906],[-71.722061,41.42864999906],[-71.721908,41.42868299906],[-71.721796,41.42869599906],[-71.721692,41.42869499906],[-71.721579,41.42868899906],[-71.721351,41.42864599906],[-71.721252,41.42859799906],[-71.721167,41.42853999906],[-71.721074,41.42848299906],[-71.720998,41.42842299906],[-71.720892,41.42832399906],[-71.720835,41.42828799906],[-71.720766,41.42825599906],[-71.720438,41.42812999906],[-71.720196,41.42801699906],[-71.720132,41.42799299906],[-71.719856,41.42792099906],[-71.719726,41.42790099906],[-71.719597,41.42788799906],[-71.719472,41.42788199906],[-71.719359,41.42789699906],[-71.719262,41.42792899906],[-71.719193,41.42796999906],[-71.719129,41.42801999906],[-71.719023,41.42811799906],[-71.718978,41.42817199906],[-71.718964,41.42823099906],[-71.718978,41.42828699906],[-71.719006,41.42832399906],[-71.719022,41.42834499906],[-71.719165,41.42845999906],[-71.719269,41.42857299906],[-71.719305,41.42862599906],[-71.719317,41.42868099906],[-71.719317,41.42873599906],[-71.719299,41.42880399906],[-71.719209,41.42889399906],[-71.719125,41.42894099906],[-71.71906,41.42896499906],[-71.719011,41.42900799906],[-71.718976,41.42906399906],[-71.718967,41.42913499906],[-71.71898,41.42922399906],[-71.719007,41.42931199906],[-71.719059,41.42938199906],[-71.719137,41.42945499906],[-71.71923,41.42951799906],[-71.719397,41.42959499906],[-71.719459,41.42958799906],[-71.719501,41.42954999906],[-71.719556,41.42962399906],[-71.719573,41.42968699906],[-71.719598,41.42974899906],[-71.719653,41.42979999906],[-71.719783,41.42990299906],[-71.719883,41.43007499906],[-71.719961,41.43023999906],[-71.720114,41.43050499906],[-71.720139,41.43055599906],[-71.720198,41.43071799906],[-71.720283,41.43091799906],[-71.720369,41.43110199906],[-71.720506,41.43133599906],[-71.720631,41.43158599906],[-71.720661,41.43167599906],[-71.720675,41.43177399906],[-71.720678,41.43196199906],[-71.720649,41.43223699906],[-71.720632,41.43232899906],[-71.720582,41.43250699906],[-71.720562,41.43260199906],[-71.720518,41.43288299906],[-71.720503,41.43308899906],[-71.720461,41.43338799906],[-71.720465,41.43371099906],[-71.720485,41.43381799906],[-71.720524,41.43392699906],[-71.720577,41.43403399906],[-71.720598,41.43408999906],[-71.720679,41.43437299906],[-71.720729,41.43460499906],[-71.720732,41.43466299906],[-71.720727,41.43477899906],[-71.720731,41.43490599906],[-71.720751,41.43508799906],[-71.720781,41.43526399906],[-71.720816,41.43537499906],[-71.7209,41.43556799906],[-71.720952,41.43574199906],[-71.720986,41.43595699906],[-71.721008,41.43601199906],[-71.721066,41.43611599906],[-71.72112,41.43622799906],[-71.721151,41.43627799906],[-71.721237,41.43635999906],[-71.721291,41.43639699906],[-71.721414,41.43646999906],[-71.721485,41.43649799906],[-71.721659,41.43653999906],[-71.721807,41.43659199906],[-71.721998,41.43664899906],[-71.722096,41.43670399906],[-71.722272,41.43679099906],[-71.722332,41.43684099906],[-71.722414,41.43696599906],[-71.722412,41.43702099906],[-71.722402,41.43705099906],[-71.722367,41.43715899906],[-71.722341,41.43722199906],[-71.722331,41.43729399906],[-71.72236,41.43735999906],[-71.722417,41.43742199906],[-71.722471,41.43747299906],[-71.722512,41.43751899906],[-71.722538,41.43757099906],[-71.722554,41.43762699906],[-71.722534,41.43775899906],[-71.722534,41.43777199906],[-71.722688,41.43777499906],[-71.722763,41.43777199906],[-71.722923,41.43777299906],[-71.723098,41.43776299906],[-71.723321,41.43771999906],[-71.723465,41.43769599906],[-71.723698,41.43763599906],[-71.72374,41.43770599906],[-71.723808,41.43778599906],[-71.7239,41.43784699906],[-71.723976,41.43788099906],[-71.724052,41.43790099906],[-71.724098,41.43791199906],[-71.724251,41.43793099906],[-71.724289,41.43793099906],[-71.724457,41.43795799906],[-71.724792,41.43800399906],[-71.725449,41.43810299906],[-71.726204,41.43824799906],[-71.726479,41.43829699906],[-71.726662,41.43834299906],[-71.726872,41.43840399906],[-71.727066,41.43845699906],[-71.727341,41.43852599906],[-71.727608,41.43856399906],[-71.728653,41.43869399906],[-71.729225,41.43877399906],[-71.729988,41.43889999906],[-71.730766,41.43901399906],[-71.731339,41.43910599906],[-71.732155,41.43923999906],[-71.733864,41.43950299906],[-71.735313,41.43971599906],[-71.735909,41.43981199906],[-71.736572,41.43989199906],[-71.737389,41.43996399906],[-71.738937,41.44015499906],[-71.739517,41.44022399906],[-71.740105,41.44029999906],[-71.740997,41.44038399906],[-71.741875,41.44046399906],[-71.742493,41.44053299906],[-71.742681,41.44055599906],[-71.743454,41.44065099906],[-71.744301,41.44076199906],[-71.745766,41.44093299906],[-71.746475,41.44102099906],[-71.747124,41.44109699906],[-71.747596,41.44115599906],[-71.748314,41.44124599906],[-71.748756,41.44129599906],[-71.748985,41.44130699906],[-71.749237,41.44131499906],[-71.750198,41.44132999906],[-71.750381,41.44133799906],[-71.75071,41.44137999906],[-71.750984,41.44143699906],[-71.75219,41.44172999906],[-71.75322,41.44195899906],[-71.753876,41.44211599906],[-71.754211,41.44219199906],[-71.754875,41.44232899906],[-71.756462,41.44264199906],[-71.756714,41.44271099906],[-71.757118,41.44283299906],[-71.757477,41.44292399906],[-71.757805,41.44298199906],[-71.75795,41.44299299906],[-71.758072,41.44299699906],[-71.758316,41.44298599906],[-71.75872,41.44294399906],[-71.759079,41.44292099906],[-71.759621,41.44291299906],[-71.760063,41.44292799906],[-71.760468,41.44295799906],[-71.760857,41.44298599906],[-71.760986,41.44298899906],[-71.761292,41.44295899906],[-71.761475,41.44293199906],[-71.761665,41.44289399906],[-71.762337,41.44277599906],[-71.762924,41.44264999906],[-71.76312,41.44261199906],[-71.76342,41.44255399906],[-71.763596,41.44253199906],[-71.76371,41.44251299906],[-71.764154,41.44249099906],[-71.764442,41.44247399906],[-71.764641,41.44245499906],[-71.764923,41.44241299906],[-71.766045,41.44220399906],[-71.766857,41.44203999906],[-71.767395,41.44192499906],[-71.768013,41.44179899906],[-71.768837,41.44164999906],[-71.769135,41.44160499906],[-71.769737,41.44155899906],[-71.770004,41.44154399906],[-71.770325,41.44151299906],[-71.770668,41.44147499906],[-71.771652,41.44132599906],[-71.772118,41.44126899906],[-71.772453,41.44123799906],[-71.773453,41.44111999906],[-71.773842,41.44107799906],[-71.774284,41.44102499906],[-71.774467,41.44098999906],[-71.774765,41.44090999906],[-71.77523,41.44080699906],[-71.775378,41.44077599906],[-71.775818,41.44068499906],[-71.776146,41.44060499906],[-71.776497,41.44051399906]]]}}"}, +{"type": "blockgroup", "typeId": 508011, "areaId": 29407, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.833862,41.39356999906],[-71.833435,41.39328799906],[-71.833115,41.39302099906],[-71.832787,41.39277299906],[-71.832481,41.39253199906],[-71.830811,41.39118199906],[-71.830215,41.39068199906],[-71.830032,41.39050299906],[-71.829872,41.39035399906],[-71.829582,41.39000299906],[-71.829458,41.38988999906],[-71.829198,41.38961799906],[-71.829201,41.38925199906],[-71.829208,41.38842399906],[-71.829208,41.38766899906],[-71.829216,41.38714599906],[-71.829231,41.38695099906],[-71.827759,41.38691699906],[-71.826256,41.38688999906],[-71.826118,41.38688299906],[-71.826088,41.38687899906],[-71.823321,41.38683199906],[-71.823126,41.38683499906],[-71.82312,41.38705399906],[-71.823105,41.38802299906],[-71.823095,41.38835299906],[-71.82309,41.38853499906],[-71.82309,41.38890099906],[-71.82312,41.38916799906],[-71.823149,41.38941299906],[-71.823199,41.38968599906],[-71.823254,41.38978399906],[-71.823364,41.39016699906],[-71.823395,41.39039199906],[-71.82341,41.39057499906],[-71.823395,41.39083099906],[-71.823357,41.39096099906],[-71.823312,41.39106599906],[-71.823257,41.39114399906],[-71.823196,41.39124699906],[-71.823128,41.39134999906],[-71.823051,41.39144499906],[-71.822823,41.39166299906],[-71.822708,41.39174699906],[-71.822593,41.39181499906],[-71.822683,41.39185099906],[-71.822724,41.39187699906],[-71.822753,41.39190399906],[-71.822775,41.39194299906],[-71.822785,41.39198499906],[-71.822792,41.39206699906],[-71.822775,41.39234999906],[-71.822745,41.39269999906],[-71.822723,41.39284499906],[-71.822712,41.39289299906],[-71.822617,41.39312299906],[-71.822166,41.39392899906],[-71.822151,41.39396299906],[-71.82213,41.39399499906],[-71.822121,41.39400899906],[-71.822101,41.39404499906],[-71.822029,41.39417299906],[-71.821709,41.39477899906],[-71.821701,41.39480599906],[-71.821615,41.39494499906],[-71.821571,41.39501599906],[-71.82148,41.39524099906],[-71.821365,41.39547699906],[-71.821274,41.39567599906],[-71.821266,41.39569899906],[-71.82119,41.39598099906],[-71.821114,41.39629399906],[-71.821037,41.39656099906],[-71.820961,41.39687299906],[-71.820938,41.39702999906],[-71.820938,41.39714799906],[-71.820946,41.39729299906],[-71.820969,41.39741099906],[-71.820999,41.39751399906],[-71.821045,41.39768199906],[-71.821045,41.39770499906],[-71.821182,41.39805199906],[-71.821265,41.39822799906],[-71.821358,41.39841099906],[-71.821541,41.39870799906],[-71.821632,41.39889099906],[-71.821823,41.39934499906],[-71.821846,41.39939099906],[-71.82222,41.40019599906],[-71.822327,41.40040199906],[-71.822563,41.40031799906],[-71.823013,41.40020399906],[-71.823067,41.40019599906],[-71.823265,41.40015399906],[-71.823502,41.40011999906],[-71.824562,41.40001699906],[-71.824982,41.39997099906],[-71.825106,41.39995299906],[-71.825211,41.39993699906],[-71.825394,41.39988699906],[-71.825577,41.39982199906],[-71.82571,41.39976299906],[-71.82581,41.39971899906],[-71.826141,41.39957399906],[-71.826965,41.39922699906],[-71.827003,41.39920799906],[-71.827095,41.39915099906],[-71.827187,41.39907799906],[-71.827278,41.39897199906],[-71.827409,41.39871499906],[-71.827515,41.39850999906],[-71.827599,41.39837599906],[-71.827644,41.39832299906],[-71.827698,41.39826999906],[-71.827835,41.39811699906],[-71.828041,41.39789999906],[-71.828392,41.39754199906],[-71.828438,41.39749499906],[-71.82858,41.39734099906],[-71.828734,41.39716699906],[-71.829178,41.39662899906],[-71.829262,41.39651099906],[-71.829384,41.39632399906],[-71.82943,41.39624399906],[-71.82946,41.39620599906],[-71.829483,41.39618699906],[-71.829498,41.39616799906],[-71.829521,41.39614899906],[-71.829536,41.39612999906],[-71.829559,41.39611799906],[-71.829575,41.39610299906],[-71.829735,41.39602699906],[-71.830322,41.39582799906],[-71.830643,41.39572499906],[-71.830856,41.39564499906],[-71.83094,41.39561799906],[-71.831589,41.39536999906],[-71.831932,41.39523299906],[-71.832069,41.39518399906],[-71.832291,41.39509599906],[-71.832497,41.39500799906],[-71.832726,41.39487799906],[-71.832848,41.39479399906],[-71.832951,41.39470499906],[-71.832962,41.39469499906],[-71.832977,41.39467199906],[-71.833084,41.39455399906],[-71.833145,41.39447799906],[-71.833167,41.39445399906],[-71.833191,41.39442799906],[-71.833223,41.39439399906],[-71.833237,41.39437899906],[-71.833282,41.39432099906],[-71.833694,41.39380999906],[-71.833769,41.39372099906],[-71.833862,41.39356999906]]]}}"}, +{"type": "blockgroup", "typeId": 508012, "areaId": 29408, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.825569,41.37642699906],[-71.825392,41.37629399906],[-71.82522,41.37616499906],[-71.824902,41.37599599906],[-71.824581,41.37583799906],[-71.824226,41.37565999906],[-71.823493,41.37530699906],[-71.823287,41.37521199906],[-71.823174,41.37515799906],[-71.822668,41.37490799906],[-71.822293,41.37471599906],[-71.821794,41.37446699906],[-71.821482,41.37431699906],[-71.820914,41.37408599906],[-71.82067,41.37399099906],[-71.820541,41.37400099906],[-71.820221,41.37400399906],[-71.82019,41.37400699906],[-71.819244,41.37409599906],[-71.818947,41.37414599906],[-71.818573,41.37425199906],[-71.817657,41.37456499906],[-71.817406,41.37466799906],[-71.817039,41.37487799906],[-71.81675,41.37506899906],[-71.816536,41.37521699906],[-71.816368,41.37540399906],[-71.816193,41.37568699906],[-71.816055,41.37594599906],[-71.81559,41.37680799906],[-71.815315,41.37729999906],[-71.815117,41.37769699906],[-71.814972,41.37806299906],[-71.814865,41.37839099906],[-71.814774,41.37873799906],[-71.814735,41.37905899906],[-71.814713,41.37961999906],[-71.81474,41.37986799906],[-71.814827,41.38031399906],[-71.814926,41.38074499906],[-71.815002,41.38104999906],[-71.815125,41.38159599906],[-71.815239,41.38201899906],[-71.815277,41.38218699906],[-71.815346,41.38243899906],[-71.815521,41.38312899906],[-71.815622,41.38360399906],[-71.815333,41.38367799906],[-71.815113,41.38372199906],[-71.814853,41.38376199906],[-71.814733,41.38377599906],[-71.814362,41.38380399906],[-71.81398,41.38381599906],[-71.813469,41.38380099906],[-71.813469,41.38388099906],[-71.813461,41.38391899906],[-71.813431,41.38399099906],[-71.8134,41.38402599906],[-71.813354,41.38405599906],[-71.813248,41.38410899906],[-71.813225,41.38412499906],[-71.813158,41.38415499906],[-71.812958,41.38424699906],[-71.812683,41.38438399906],[-71.812485,41.38452499906],[-71.812248,41.38475399906],[-71.812159,41.38485499906],[-71.812122,41.38489599906],[-71.812242,41.38490899906],[-71.81268,41.38493799906],[-71.813166,41.38498899906],[-71.813324,41.38500599906],[-71.815047,41.38515699906],[-71.815406,41.38519199906],[-71.815883,41.38522699906],[-71.816074,41.38523899906],[-71.816175,41.38524599906],[-71.816346,41.38525499906],[-71.816626,41.38526599906],[-71.816923,41.38527299906],[-71.817442,41.38526499906],[-71.817972,41.38522999906],[-71.818485,41.38517899906],[-71.818566,41.38516899906],[-71.818959,41.38511099906],[-71.819056,41.38509299906],[-71.819239,41.38505399906],[-71.819553,41.38498899906],[-71.819806,41.38492499906],[-71.820289,41.38480399906],[-71.820861,41.38462599906],[-71.821878,41.38429199906],[-71.822843,41.38397399906],[-71.824052,41.38357599906],[-71.825023,41.38325699906],[-71.825032,41.38321299906],[-71.825043,41.38315999906],[-71.825073,41.38291499906],[-71.824704,41.38295099906],[-71.824369,41.38299099906],[-71.823508,41.38307199906],[-71.823341,41.38307699906],[-71.823254,41.38307999906],[-71.823266,41.38288899906],[-71.823274,41.38231499906],[-71.823288,41.38199299906],[-71.823303,41.38116499906],[-71.823326,41.38027999906],[-71.823395,41.38002399906],[-71.823723,41.37919599906],[-71.824081,41.37826199906],[-71.824615,41.37726999906],[-71.82473,41.37710599906],[-71.824852,41.37697999906],[-71.825212,41.37670199906],[-71.825569,41.37642699906]]]}}"}, +{"type": "blockgroup", "typeId": 508013, "areaId": 29409, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.831413,41.36988099906],[-71.831398,41.36983899906],[-71.831314,41.36971699906],[-71.831291,41.36969399906],[-71.831261,41.36965199906],[-71.831184,41.36957199906],[-71.831055,41.36941499906],[-71.830986,41.36933899906],[-71.830757,41.36906799906],[-71.830704,41.36899599906],[-71.830353,41.36860299906],[-71.830246,41.36847299906],[-71.83004,41.36816399906],[-71.829932,41.36795999906],[-71.82988,41.36786299906],[-71.829734,41.36760199906],[-71.829695,41.36778699906],[-71.829671,41.36793399906],[-71.829664,41.36798299906],[-71.829582,41.36839699906],[-71.829033,41.36833199906],[-71.828705,41.36830099906],[-71.828545,41.36828199906],[-71.8284,41.36827099906],[-71.827789,41.36820599906],[-71.827591,41.36818299906],[-71.827408,41.36816799906],[-71.827337,41.36816399906],[-71.827232,41.36815999906],[-71.827148,41.36815999906],[-71.826828,41.36814899906],[-71.826836,41.36831699906],[-71.826851,41.36848399906],[-71.826851,41.36864899906],[-71.826843,41.36872099906],[-71.826805,41.36894599906],[-71.826759,41.36910199906],[-71.826645,41.36944999906],[-71.826599,41.36961699906],[-71.826492,41.36996099906],[-71.826454,41.37010199906],[-71.826363,41.37038399906],[-71.826225,41.37078499906],[-71.825783,41.37072799906],[-71.825668,41.37070799906],[-71.825554,41.37069699906],[-71.825493,41.37068899906],[-71.825317,41.37067799906],[-71.82502,41.37067799906],[-71.824669,41.37068599906],[-71.824387,41.37069299906],[-71.823822,41.37071999906],[-71.82341,41.37074999906],[-71.822556,41.37078099906],[-71.821465,41.37084199906],[-71.820819,41.37090199906],[-71.820446,41.37092799906],[-71.820256,41.37094499906],[-71.820305,41.37126899906],[-71.820419,41.37227599906],[-71.820463,41.37263699906],[-71.820486,41.37281599906],[-71.820518,41.37309599906],[-71.820566,41.37350399906],[-71.820587,41.37368399906],[-71.82067,41.37399099906],[-71.820914,41.37408599906],[-71.821482,41.37431699906],[-71.821794,41.37446699906],[-71.822293,41.37471599906],[-71.822668,41.37490799906],[-71.823174,41.37515799906],[-71.823287,41.37521199906],[-71.823493,41.37530699906],[-71.824226,41.37565999906],[-71.824581,41.37583799906],[-71.824902,41.37599599906],[-71.82522,41.37616499906],[-71.825392,41.37629399906],[-71.825706,41.37580499906],[-71.825752,41.37573199906],[-71.825859,41.37533999906],[-71.825989,41.37482799906],[-71.826019,41.37468299906],[-71.826088,41.37440899906],[-71.826126,41.37427899906],[-71.826195,41.37399299906],[-71.826241,41.37383699906],[-71.826317,41.37351999906],[-71.826347,41.37335599906],[-71.826385,41.37319199906],[-71.826698,41.37321899906],[-71.826798,41.37322699906],[-71.827396,41.37327799906],[-71.828274,41.37332999906],[-71.828442,41.37334099906],[-71.828864,41.37333999906],[-71.82943,41.37330199906],[-71.829803,41.37327999906],[-71.830681,41.37324099906],[-71.830849,41.37323799906],[-71.830803,41.37291299906],[-71.830803,41.37285999906],[-71.830795,41.37280999906],[-71.830795,41.37268099906],[-71.830818,41.37241399906],[-71.830833,41.37230299906],[-71.830841,41.37219199906],[-71.83091,41.37173499906],[-71.830956,41.37146799906],[-71.830971,41.37131099906],[-71.830986,41.37123099906],[-71.831032,41.37090299906],[-71.831047,41.37083099906],[-71.831055,41.37076199906],[-71.831093,41.37060199906],[-71.831154,41.37042199906],[-71.831245,41.37017799906],[-71.831322,41.37001799906],[-71.831367,41.36994199906],[-71.831413,41.36988099906]]]}}"}, +{"type": "blockgroup", "typeId": 508014, "areaId": 29410, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.832699,41.37530899906],[-71.832531,41.37496299906],[-71.831652,41.37222599906],[-71.83166,41.37125799906],[-71.831844,41.37034399906],[-71.831997,41.37001699906],[-71.831711,41.36977599906],[-71.831552,41.36984999906],[-71.831413,41.36988099906],[-71.831367,41.36994199906],[-71.831322,41.37001799906],[-71.831245,41.37017799906],[-71.831154,41.37042199906],[-71.831093,41.37060199906],[-71.831055,41.37076199906],[-71.831047,41.37083099906],[-71.831032,41.37090299906],[-71.830986,41.37123099906],[-71.830971,41.37131099906],[-71.830956,41.37146799906],[-71.83091,41.37173499906],[-71.830841,41.37219199906],[-71.830833,41.37230299906],[-71.830818,41.37241399906],[-71.830795,41.37268099906],[-71.830795,41.37280999906],[-71.830803,41.37285999906],[-71.830803,41.37291299906],[-71.830849,41.37323799906],[-71.830681,41.37324099906],[-71.829803,41.37327999906],[-71.82943,41.37330199906],[-71.828864,41.37333999906],[-71.828442,41.37334099906],[-71.828274,41.37332999906],[-71.827396,41.37327799906],[-71.826798,41.37322699906],[-71.826698,41.37321899906],[-71.826385,41.37319199906],[-71.826347,41.37335599906],[-71.826317,41.37351999906],[-71.826241,41.37383699906],[-71.826195,41.37399299906],[-71.826126,41.37427899906],[-71.826088,41.37440899906],[-71.826019,41.37468299906],[-71.825989,41.37482799906],[-71.825859,41.37533999906],[-71.825752,41.37573199906],[-71.825706,41.37580499906],[-71.825392,41.37629399906],[-71.825569,41.37642699906],[-71.825212,41.37670199906],[-71.824852,41.37697999906],[-71.82473,41.37710599906],[-71.824615,41.37726999906],[-71.824081,41.37826199906],[-71.823723,41.37919599906],[-71.823395,41.38002399906],[-71.823326,41.38027999906],[-71.823303,41.38116499906],[-71.823288,41.38199299906],[-71.823274,41.38231499906],[-71.823266,41.38288899906],[-71.823254,41.38307999906],[-71.823341,41.38307699906],[-71.823508,41.38307199906],[-71.824369,41.38299099906],[-71.824704,41.38295099906],[-71.825073,41.38291499906],[-71.825043,41.38315999906],[-71.825032,41.38321299906],[-71.825023,41.38325699906],[-71.825746,41.38301599906],[-71.826245,41.38284999906],[-71.826755,41.38267999906],[-71.827679,41.38237399906],[-71.827748,41.38235099906],[-71.828171,41.38219199906],[-71.82888,41.38189499906],[-71.829407,41.38163899906],[-71.829886,41.38136599906],[-71.83014,41.38121099906],[-71.830441,41.38100999906],[-71.83082,41.38073499906],[-71.830906,41.38066999906],[-71.831229,41.38040099906],[-71.831669,41.37999899906],[-71.831709,41.37996499906],[-71.831751,41.37992699906],[-71.831796,41.37986599906],[-71.831443,41.37952999906],[-71.830831,41.37913699906],[-71.830637,41.37877199906],[-71.830666,41.37858099906],[-71.830797,41.37834799906],[-71.831297,41.37779599906],[-71.831356,41.37775199906],[-71.832134,41.37705899906],[-71.832436,41.37646199906],[-71.832656,41.37584999906],[-71.832699,41.37530899906]]]}}"}, +{"type": "blockgroup", "typeId": 508015, "areaId": 29411, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.841042,41.39408899906],[-71.841033,41.39407499906],[-71.840991,41.39402399906],[-71.840968,41.39400399906],[-71.840608,41.39362199906],[-71.839987,41.39268599906],[-71.839623,41.39216799906],[-71.838749,41.39105399906],[-71.838118,41.39055399906],[-71.836716,41.39012999906],[-71.835708,41.38985199906],[-71.834557,41.38918099906],[-71.833675,41.38839599906],[-71.83313,41.38783899906],[-71.832655,41.38715599906],[-71.832591,41.38638499906],[-71.832666,41.38603599906],[-71.832958,41.38527499906],[-71.832955,41.38525699906],[-71.83297,41.38524199906],[-71.833166,41.38473099906],[-71.833395,41.38382999906],[-71.833449,41.38336899906],[-71.833553,41.38284599906],[-71.833527,41.38226399906],[-71.833232,41.38168599906],[-71.832736,41.38116399906],[-71.832369,41.38057999906],[-71.832082,41.38013899906],[-71.831796,41.37986599906],[-71.831751,41.37992699906],[-71.831709,41.37996499906],[-71.831669,41.37999899906],[-71.831229,41.38040099906],[-71.830906,41.38066999906],[-71.83082,41.38073499906],[-71.830441,41.38100999906],[-71.83014,41.38121099906],[-71.829886,41.38136599906],[-71.829407,41.38163899906],[-71.82888,41.38189499906],[-71.828171,41.38219199906],[-71.827748,41.38235099906],[-71.827679,41.38237399906],[-71.826755,41.38267999906],[-71.826245,41.38284999906],[-71.825746,41.38301599906],[-71.825023,41.38325699906],[-71.825004,41.38335299906],[-71.824989,41.38342299906],[-71.824944,41.38356399906],[-71.824921,41.38361399906],[-71.824867,41.38369399906],[-71.824852,41.38371999906],[-71.824715,41.38385799906],[-71.824455,41.38410899906],[-71.824234,41.38433099906],[-71.824158,41.38439199906],[-71.824089,41.38445699906],[-71.82402,41.38450199906],[-71.823975,41.38454099906],[-71.823653,41.38468399906],[-71.823563,41.38472399906],[-71.823456,41.38477699906],[-71.823357,41.38485299906],[-71.823296,41.38492599906],[-71.82325,41.38499799906],[-71.823196,41.38515899906],[-71.823189,41.38520099906],[-71.823181,41.38524199906],[-71.823158,41.38540799906],[-71.823151,41.38557099906],[-71.823139,41.38628199906],[-71.823127,41.38680999906],[-71.823126,41.38683499906],[-71.823321,41.38683199906],[-71.826088,41.38687899906],[-71.826118,41.38688299906],[-71.826256,41.38688999906],[-71.827759,41.38691699906],[-71.829231,41.38695099906],[-71.829216,41.38714599906],[-71.829208,41.38766899906],[-71.829208,41.38842399906],[-71.829201,41.38925199906],[-71.829198,41.38961799906],[-71.829458,41.38988999906],[-71.829582,41.39000299906],[-71.829872,41.39035399906],[-71.830032,41.39050299906],[-71.830215,41.39068199906],[-71.830811,41.39118199906],[-71.832481,41.39253199906],[-71.832787,41.39277299906],[-71.833115,41.39302099906],[-71.833435,41.39328799906],[-71.833862,41.39356999906],[-71.833954,41.39344399906],[-71.834038,41.39326499906],[-71.834084,41.39314699906],[-71.834137,41.39302399906],[-71.83419,41.39287899906],[-71.834297,41.39264699906],[-71.834358,41.39248999906],[-71.834427,41.39234199906],[-71.834465,41.39221199906],[-71.834488,41.39208999906],[-71.834496,41.39201699906],[-71.834496,41.39195599906],[-71.834488,41.39186099906],[-71.83445,41.39166999906],[-71.834221,41.39099899906],[-71.834175,41.39084599906],[-71.834427,41.39091099906],[-71.834793,41.39105599906],[-71.835381,41.39130799906],[-71.836617,41.39185699906],[-71.837128,41.39209699906],[-71.837669,41.39235699906],[-71.838211,41.39264299906],[-71.838394,41.39276099906],[-71.838455,41.39280699906],[-71.838509,41.39285699906],[-71.83857,41.39290599906],[-71.838684,41.39303999906],[-71.838776,41.39316899906],[-71.838821,41.39323399906],[-71.83886,41.39330299906],[-71.838878,41.39334999906],[-71.838913,41.39341699906],[-71.838936,41.39347499906],[-71.838959,41.39354799906],[-71.838979,41.39364599906],[-71.838989,41.39371899906],[-71.838989,41.39377199906],[-71.839012,41.39406199906],[-71.83902,41.39410399906],[-71.83902,41.39416499906],[-71.839024,41.39419399906],[-71.840716,41.39410399906],[-71.84082,41.39410099906],[-71.840897,41.39409799906],[-71.841042,41.39408899906]]]}}"}, +{"type": "blockgroup", "typeId": 508021, "areaId": 29412, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.837751,41.36329599906],[-71.83652,41.36333999906],[-71.835777,41.36337699906],[-71.835152,41.36343399906],[-71.834366,41.36351799906],[-71.834297,41.36304099906],[-71.83429,41.36294199906],[-71.834259,41.36274699906],[-71.834244,41.36271699906],[-71.834198,41.36266299906],[-71.834175,41.36264799906],[-71.834145,41.36263699906],[-71.834076,41.36262099906],[-71.834007,41.36261699906],[-71.83345,41.36266299906],[-71.832733,41.36273199906],[-71.832283,41.36276999906],[-71.831612,41.36283899906],[-71.831375,41.36286899906],[-71.831108,41.36290699906],[-71.830971,41.36292999906],[-71.830536,41.36298799906],[-71.829941,41.36305999906],[-71.829826,41.36307099906],[-71.82941,41.36313999906],[-71.829143,41.36318599906],[-71.829132,41.36317099906],[-71.829086,41.36309799906],[-71.829033,41.36302899906],[-71.828972,41.36291099906],[-71.828934,41.36280799906],[-71.828888,41.36266299906],[-71.828865,41.36256799906],[-71.82884,41.36240599906],[-71.828217,41.36244999906],[-71.827652,41.36250299906],[-71.827431,41.36252999906],[-71.82711,41.36256399906],[-71.826946,41.36258299906],[-71.826485,41.36263999906],[-71.825851,41.36273199906],[-71.824879,41.36287899906],[-71.824463,41.36294199906],[-71.824196,41.36297999906],[-71.824066,41.36299499906],[-71.823448,41.36308699906],[-71.823341,41.36309399906],[-71.823242,41.36310599906],[-71.823029,41.36312099906],[-71.822922,41.36312899906],[-71.82267,41.36313999906],[-71.822647,41.36314399906],[-71.822182,41.36316299906],[-71.821396,41.36320899906],[-71.820885,41.36322799906],[-71.820511,41.36322799906],[-71.82016,41.36321299906],[-71.81987,41.36322399906],[-71.819717,41.36325499906],[-71.819466,41.36329299906],[-71.819153,41.36334599906],[-71.818413,41.36351399906],[-71.817917,41.36365099906],[-71.817574,41.36376199906],[-71.817354,41.36384199906],[-71.817268,41.36387299906],[-71.816933,41.36398299906],[-71.816243,41.36422199906],[-71.816408,41.36436599906],[-71.816551,41.36449799906],[-71.81674,41.36469599906],[-71.816983,41.36496799906],[-71.817101,41.36510099906],[-71.817375,41.36542099906],[-71.817465,41.36552199906],[-71.817703,41.36579099906],[-71.818024,41.36618399906],[-71.818359,41.36658499906],[-71.817749,41.36673399906],[-71.8172,41.36685899906],[-71.816597,41.36698499906],[-71.815971,41.36713799906],[-71.816193,41.36764099906],[-71.816338,41.36806099906],[-71.81662,41.36869799906],[-71.816833,41.36925099906],[-71.817116,41.36996499906],[-71.817337,41.37050199906],[-71.817528,41.37103299906],[-71.818527,41.37100599906],[-71.818817,41.37097899906],[-71.820256,41.37094499906],[-71.820446,41.37092799906],[-71.820819,41.37090199906],[-71.821465,41.37084199906],[-71.822556,41.37078099906],[-71.82341,41.37074999906],[-71.823822,41.37071999906],[-71.824387,41.37069299906],[-71.824669,41.37068599906],[-71.82502,41.37067799906],[-71.825317,41.37067799906],[-71.825493,41.37068899906],[-71.825554,41.37069699906],[-71.825668,41.37070799906],[-71.825783,41.37072799906],[-71.826225,41.37078499906],[-71.826363,41.37038399906],[-71.826454,41.37010199906],[-71.826492,41.36996099906],[-71.826599,41.36961699906],[-71.826645,41.36944999906],[-71.826759,41.36910199906],[-71.826805,41.36894599906],[-71.826843,41.36872099906],[-71.826851,41.36864899906],[-71.826851,41.36848399906],[-71.826836,41.36831699906],[-71.826828,41.36814899906],[-71.827148,41.36815999906],[-71.827232,41.36815999906],[-71.827337,41.36816399906],[-71.827408,41.36816799906],[-71.827591,41.36818299906],[-71.827789,41.36820599906],[-71.8284,41.36827099906],[-71.828545,41.36828199906],[-71.828705,41.36830099906],[-71.829033,41.36833199906],[-71.829582,41.36839699906],[-71.829664,41.36798299906],[-71.829671,41.36793399906],[-71.829695,41.36778699906],[-71.829734,41.36760199906],[-71.82988,41.36786299906],[-71.829932,41.36795999906],[-71.83004,41.36816399906],[-71.830246,41.36847299906],[-71.830353,41.36860299906],[-71.830704,41.36899599906],[-71.830757,41.36906799906],[-71.830986,41.36933899906],[-71.831055,41.36941499906],[-71.831184,41.36957199906],[-71.831261,41.36965199906],[-71.831291,41.36969399906],[-71.831314,41.36971699906],[-71.831398,41.36983899906],[-71.831413,41.36988099906],[-71.831552,41.36984999906],[-71.831711,41.36977599906],[-71.831997,41.37001699906],[-71.832069,41.36986299906],[-71.832776,41.36916899906],[-71.834337,41.36810999906],[-71.835013,41.36764699906],[-71.837034,41.36628599906],[-71.837633,41.36549899906],[-71.837751,41.36329599906]]]}}"}, +{"type": "blockgroup", "typeId": 508022, "areaId": 29413, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.837873,41.36014499906],[-71.837807,41.35899399906],[-71.837286,41.35670799906],[-71.836768,41.35510299906],[-71.836044,41.35398799906],[-71.831303,41.35129499906],[-71.829779,41.34622899906],[-71.829365,41.34243199906],[-71.829479,41.34232599906],[-71.830627,41.34125799906],[-71.830046,41.34057199906],[-71.82892,41.33951999906],[-71.82799,41.33881099906],[-71.827334,41.33777299906],[-71.82699,41.33701499906],[-71.826777,41.33615899906],[-71.826758,41.33609899906],[-71.826795,41.33568499906],[-71.826767,41.33570099906],[-71.826569,41.33583099906],[-71.826439,41.33592599906],[-71.826302,41.33602499906],[-71.826111,41.33616999906],[-71.825859,41.33636499906],[-71.82563,41.33653299906],[-71.825577,41.33657799906],[-71.825485,41.33666999906],[-71.825394,41.33677699906],[-71.825363,41.33681899906],[-71.825325,41.33687199906],[-71.825256,41.33699399906],[-71.825203,41.33717299906],[-71.82515,41.33738299906],[-71.825134,41.33745999906],[-71.825111,41.33762699906],[-71.825081,41.33781899906],[-71.825027,41.33814999906],[-71.824963,41.33844799906],[-71.824844,41.33897799906],[-71.824837,41.33901599906],[-71.824821,41.33904599906],[-71.824738,41.33929099906],[-71.824707,41.33935199906],[-71.824615,41.33950799906],[-71.824539,41.33961899906],[-71.824493,41.33967199906],[-71.824463,41.33971399906],[-71.824295,41.33988199906],[-71.824196,41.33997699906],[-71.823936,41.34019499906],[-71.82373,41.34035899906],[-71.823669,41.34041199906],[-71.823486,41.34059499906],[-71.823418,41.34066399906],[-71.823276,41.34083799906],[-71.823265,41.34085099906],[-71.823219,41.34089699906],[-71.82309,41.34106399906],[-71.823036,41.34112499906],[-71.823009,41.34116599906],[-71.82299,41.34119399906],[-71.822866,41.34135199906],[-71.822701,41.34156399906],[-71.822594,41.34170899906],[-71.822519,41.34182199906],[-71.822464,41.34196499906],[-71.822441,41.34204499906],[-71.822426,41.34213599906],[-71.82242,41.34217799906],[-71.822418,41.34222799906],[-71.822418,41.34235399906],[-71.822426,41.34241599906],[-71.822433,41.34247999906],[-71.822456,41.34262099906],[-71.822466,41.34268499906],[-71.822495,41.34281499906],[-71.822509,41.34287599906],[-71.822525,41.34293399906],[-71.822538,41.34297199906],[-71.822556,41.34301799906],[-71.822609,41.34312799906],[-71.822563,41.34311999906],[-71.822524,41.34310699906],[-71.822477,41.34309799906],[-71.822371,41.34309699906],[-71.822272,41.34310299906],[-71.82222,41.34311099906],[-71.821709,41.34321399906],[-71.821495,41.34324999906],[-71.821381,41.34326399906],[-71.821175,41.34329799906],[-71.821083,41.34331599906],[-71.820709,41.34337399906],[-71.820534,41.34339599906],[-71.82045,41.34340999906],[-71.819687,41.34350699906],[-71.819008,41.34360099906],[-71.818642,41.34364699906],[-71.818253,41.34367799906],[-71.817497,41.34376099906],[-71.817311,41.34378599906],[-71.816872,41.34384499906],[-71.816452,41.34390599906],[-71.816078,41.34399399906],[-71.815796,41.34408199906],[-71.815498,41.34421499906],[-71.815186,41.34437899906],[-71.814819,41.34460799906],[-71.814728,41.34466899906],[-71.814621,41.34475299906],[-71.81443,41.34492899906],[-71.814331,41.34504299906],[-71.814263,41.34514199906],[-71.814247,41.34516499906],[-71.81416,41.34527899906],[-71.814072,41.34540699906],[-71.814005,41.34550299906],[-71.813631,41.34604699906],[-71.813544,41.34617399906],[-71.81277,41.34729899906],[-71.8126,41.34754499906],[-71.812427,41.34779699906],[-71.812035,41.34837099906],[-71.811933,41.34853999906],[-71.811817,41.34874399906],[-71.811722,41.34891499906],[-71.811678,41.34900899906],[-71.811526,41.34935399906],[-71.811469,41.34951099906],[-71.811423,41.34965199906],[-71.811348,41.34991499906],[-71.810816,41.35220299906],[-71.810501,41.35361899906],[-71.810448,41.35378999906],[-71.810402,41.35395799906],[-71.810287,41.35427099906],[-71.810219,41.35441199906],[-71.810066,41.35468699906],[-71.809891,41.35494599906],[-71.809616,41.35529699906],[-71.809517,41.35540399906],[-71.809303,41.35561399906],[-71.809235,41.35567099906],[-71.807892,41.35689199906],[-71.807755,41.35702099906],[-71.807616,41.35718399906],[-71.807607,41.35719899906],[-71.807544,41.35727299906],[-71.807904,41.35741299906],[-71.80824,41.35756299906],[-71.808461,41.35766699906],[-71.808672,41.35780199906],[-71.808935,41.35796999906],[-71.809192,41.35815499906],[-71.809389,41.35830099906],[-71.809807,41.35867799906],[-71.809815,41.35868899906],[-71.810077,41.35900899906],[-71.810372,41.35935499906],[-71.81038,41.35936399906],[-71.810562,41.35958399906],[-71.810666,41.35972299906],[-71.810811,41.35992699906],[-71.811061,41.36022699906],[-71.811675,41.36085699906],[-71.811933,41.36109999906],[-71.812563,41.36173499906],[-71.812836,41.36199299906],[-71.812902,41.36204899906],[-71.813004,41.36213199906],[-71.813206,41.36229999906],[-71.813301,41.36236899906],[-71.81395,41.36282299906],[-71.814948,41.36346499906],[-71.815014,41.36350399906],[-71.815742,41.36392999906],[-71.816243,41.36422199906],[-71.816933,41.36398299906],[-71.817268,41.36387299906],[-71.817354,41.36384199906],[-71.817574,41.36376199906],[-71.817917,41.36365099906],[-71.818413,41.36351399906],[-71.819153,41.36334599906],[-71.819466,41.36329299906],[-71.819717,41.36325499906],[-71.81987,41.36322399906],[-71.82016,41.36321299906],[-71.820511,41.36322799906],[-71.820885,41.36322799906],[-71.821396,41.36320899906],[-71.822182,41.36316299906],[-71.822647,41.36314399906],[-71.82267,41.36313999906],[-71.822922,41.36312899906],[-71.823029,41.36312099906],[-71.823242,41.36310599906],[-71.823341,41.36309399906],[-71.823448,41.36308699906],[-71.824066,41.36299499906],[-71.824196,41.36297999906],[-71.824463,41.36294199906],[-71.824879,41.36287899906],[-71.825851,41.36273199906],[-71.826485,41.36263999906],[-71.826946,41.36258299906],[-71.82711,41.36256399906],[-71.827431,41.36252999906],[-71.827652,41.36250299906],[-71.828217,41.36244999906],[-71.82884,41.36240599906],[-71.828865,41.36256799906],[-71.828888,41.36266299906],[-71.828934,41.36280799906],[-71.828972,41.36291099906],[-71.829033,41.36302899906],[-71.829086,41.36309799906],[-71.829132,41.36317099906],[-71.829143,41.36318599906],[-71.82941,41.36313999906],[-71.829826,41.36307099906],[-71.829941,41.36305999906],[-71.830536,41.36298799906],[-71.830971,41.36292999906],[-71.831108,41.36290699906],[-71.831375,41.36286899906],[-71.831612,41.36283899906],[-71.832283,41.36276999906],[-71.832733,41.36273199906],[-71.83345,41.36266299906],[-71.834007,41.36261699906],[-71.834076,41.36262099906],[-71.834145,41.36263699906],[-71.834175,41.36264799906],[-71.834198,41.36266299906],[-71.834244,41.36271699906],[-71.834259,41.36274699906],[-71.83429,41.36294199906],[-71.834297,41.36304099906],[-71.834366,41.36351799906],[-71.835152,41.36343399906],[-71.835777,41.36337699906],[-71.83652,41.36333999906],[-71.837751,41.36329599906],[-71.837777,41.36282299906],[-71.837873,41.36014499906]]]}}"}, +{"type": "blockgroup", "typeId": 509011, "areaId": 29414, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.843591,41.40533099906],[-71.84346,41.40516599906],[-71.843256,41.40446099906],[-71.8428,41.40413299906],[-71.842326,41.40381699906],[-71.842196,41.40366399906],[-71.841739,41.40326699906],[-71.841726,41.40324099906],[-71.841553,41.40304599906],[-71.841506,41.40267099906],[-71.84138,41.40143899906],[-71.841219,41.40040399906],[-71.841068,41.39965799906],[-71.84115,41.39922999906],[-71.841956,41.39763599906],[-71.842004,41.39749599906],[-71.842244,41.39687899906],[-71.842257,41.39616199906],[-71.842211,41.39577099906],[-71.842209,41.39537999906],[-71.841722,41.39462499906],[-71.841372,41.39443199906],[-71.841124,41.39416899906],[-71.841042,41.39408899906],[-71.840897,41.39409799906],[-71.84082,41.39410099906],[-71.840716,41.39410399906],[-71.839024,41.39419399906],[-71.83902,41.39416499906],[-71.83902,41.39410399906],[-71.839012,41.39406199906],[-71.838989,41.39377199906],[-71.838989,41.39371899906],[-71.838979,41.39364599906],[-71.838959,41.39354799906],[-71.838936,41.39347499906],[-71.838913,41.39341699906],[-71.838878,41.39334999906],[-71.83886,41.39330299906],[-71.838821,41.39323399906],[-71.838776,41.39316899906],[-71.838684,41.39303999906],[-71.83857,41.39290599906],[-71.838509,41.39285699906],[-71.838455,41.39280699906],[-71.838394,41.39276099906],[-71.838211,41.39264299906],[-71.837669,41.39235699906],[-71.837128,41.39209699906],[-71.836617,41.39185699906],[-71.835381,41.39130799906],[-71.834793,41.39105599906],[-71.834427,41.39091099906],[-71.834175,41.39084599906],[-71.834221,41.39099899906],[-71.83445,41.39166999906],[-71.834488,41.39186099906],[-71.834496,41.39195599906],[-71.834496,41.39201699906],[-71.834488,41.39208999906],[-71.834465,41.39221199906],[-71.834427,41.39234199906],[-71.834358,41.39248999906],[-71.834297,41.39264699906],[-71.83419,41.39287899906],[-71.834137,41.39302399906],[-71.834084,41.39314699906],[-71.834038,41.39326499906],[-71.833954,41.39344399906],[-71.833862,41.39356999906],[-71.833769,41.39372099906],[-71.833694,41.39380999906],[-71.833282,41.39432099906],[-71.833237,41.39437899906],[-71.833223,41.39439399906],[-71.833191,41.39442799906],[-71.833167,41.39445399906],[-71.833145,41.39447799906],[-71.833084,41.39455399906],[-71.832977,41.39467199906],[-71.832962,41.39469499906],[-71.832951,41.39470499906],[-71.832848,41.39479399906],[-71.832726,41.39487799906],[-71.832497,41.39500799906],[-71.832291,41.39509599906],[-71.832069,41.39518399906],[-71.831932,41.39523299906],[-71.831589,41.39536999906],[-71.83094,41.39561799906],[-71.830856,41.39564499906],[-71.830643,41.39572499906],[-71.830322,41.39582799906],[-71.829735,41.39602699906],[-71.829575,41.39610299906],[-71.829559,41.39611799906],[-71.829536,41.39612999906],[-71.829521,41.39614899906],[-71.829498,41.39616799906],[-71.829483,41.39618699906],[-71.82946,41.39620599906],[-71.82943,41.39624399906],[-71.829384,41.39632399906],[-71.829262,41.39651099906],[-71.829178,41.39662899906],[-71.828734,41.39716699906],[-71.82858,41.39734099906],[-71.828438,41.39749499906],[-71.828392,41.39754199906],[-71.828041,41.39789999906],[-71.827835,41.39811699906],[-71.827698,41.39826999906],[-71.827644,41.39832299906],[-71.827599,41.39837599906],[-71.827515,41.39850999906],[-71.827409,41.39871499906],[-71.827278,41.39897199906],[-71.827187,41.39907799906],[-71.827095,41.39915099906],[-71.827003,41.39920799906],[-71.826965,41.39922699906],[-71.826141,41.39957399906],[-71.82581,41.39971899906],[-71.82571,41.39976299906],[-71.825577,41.39982199906],[-71.825394,41.39988699906],[-71.825211,41.39993699906],[-71.825106,41.39995299906],[-71.824982,41.39997099906],[-71.824562,41.40001699906],[-71.823502,41.40011999906],[-71.823265,41.40015399906],[-71.823067,41.40019599906],[-71.823013,41.40020399906],[-71.822563,41.40031799906],[-71.822327,41.40040199906],[-71.822121,41.40046699906],[-71.821808,41.40055499906],[-71.821533,41.40062299906],[-71.820984,41.40074499906],[-71.820717,41.40081399906],[-71.82045,41.40087499906],[-71.820366,41.40090599906],[-71.820282,41.40094799906],[-71.820213,41.40100099906],[-71.82016,41.40106599906],[-71.820122,41.40114599906],[-71.820091,41.40122999906],[-71.820068,41.40142099906],[-71.820084,41.40164199906],[-71.820015,41.40171799906],[-71.819946,41.40176799906],[-71.819855,41.40182499906],[-71.819397,41.40201199906],[-71.819359,41.40202299906],[-71.819214,41.40208399906],[-71.819031,41.40215299906],[-71.818832,41.40222199906],[-71.818413,41.40235499906],[-71.818199,41.40242799906],[-71.818001,41.40248499906],[-71.817604,41.40259599906],[-71.817177,41.40270199906],[-71.817009,41.40273299906],[-71.816879,41.40273699906],[-71.816727,41.40272899906],[-71.816605,41.40270599906],[-71.815735,41.40251899906],[-71.815376,41.40243499906],[-71.814972,41.40231699906],[-71.814728,41.40225199906],[-71.814499,41.40220299906],[-71.814308,41.40216799906],[-71.814064,41.40214899906],[-71.813922,41.40215199906],[-71.813728,41.40215299906],[-71.813286,41.40216799906],[-71.813072,41.40217999906],[-71.812904,41.40216399906],[-71.812782,41.40212999906],[-71.812614,41.40204199906],[-71.812317,41.40185899906],[-71.812202,41.40180599906],[-71.812057,41.40175199906],[-71.811935,41.40173299906],[-71.811768,41.40171799906],[-71.811592,41.40171799906],[-71.811302,41.40173299906],[-71.811057,41.40174999906],[-71.810539,41.40178699906],[-71.810265,41.40179799906],[-71.80912,41.40190499906],[-71.807976,41.40198899906],[-71.806908,41.40209599906],[-71.806557,41.40213399906],[-71.80629,41.40216799906],[-71.805634,41.40222199906],[-71.805435,41.40223699906],[-71.803986,41.40236999906],[-71.803604,41.40239299906],[-71.803459,41.40238199906],[-71.803391,41.40236299906],[-71.803299,41.40232799906],[-71.803207,41.40228299906],[-71.802727,41.40195099906],[-71.801865,41.40133699906],[-71.80172,41.40121799906],[-71.801643,41.40114599906],[-71.80159,41.40106599906],[-71.801501,41.40087399906],[-71.801399,41.40065399906],[-71.801315,41.40047499906],[-71.801254,41.40038699906],[-71.801193,41.40032599906],[-71.801117,41.40026099906],[-71.800934,41.40013099906],[-71.800842,41.40003199906],[-71.800797,41.39996699906],[-71.800758,41.39989499906],[-71.800713,41.39975399906],[-71.800644,41.39961199906],[-71.800568,41.39952899906],[-71.800423,41.39942599906],[-71.800346,41.39938699906],[-71.800102,41.39929599906],[-71.799881,41.39916999906],[-71.799824,41.39933199906],[-71.799938,41.39943599906],[-71.80009,41.39943599906],[-71.800285,41.39949399906],[-71.800487,41.39961199906],[-71.800579,41.39973699906],[-71.800667,41.39995199906],[-71.800761,41.40008999906],[-71.800755,41.40020799906],[-71.800575,41.40026799906],[-71.800452,41.40035099906],[-71.800459,41.40044199906],[-71.800485,41.40064499906],[-71.800537,41.40094399906],[-71.800603,41.40097099906],[-71.800752,41.40089699906],[-71.800938,41.40086899906],[-71.800955,41.40087599906],[-71.800984,41.40092999906],[-71.800967,41.40100999906],[-71.800683,41.40104899906],[-71.800536,41.40110599906],[-71.800555,41.40123199906],[-71.800719,41.40129999906],[-71.800883,41.40140199906],[-71.801003,41.40153099906],[-71.801374,41.40186599906],[-71.801317,41.40197599906],[-71.802021,41.40275699906],[-71.803475,41.40406499906],[-71.803203,41.40432999906],[-71.802768,41.40463799906],[-71.798805,41.40499499906],[-71.796962,41.40595699906],[-71.796349,41.40670099906],[-71.79598,41.40728899906],[-71.796479,41.40761999906],[-71.797264,41.40724899906],[-71.798082,41.40797799906],[-71.798374,41.40891899906],[-71.798643,41.41007499906],[-71.798295,41.41081999906],[-71.797921,41.41095099906],[-71.797591,41.41114999906],[-71.797396,41.41118399906],[-71.797114,41.41130499906],[-71.797093,41.41132799906],[-71.796978,41.41144299906],[-71.796942,41.41153199906],[-71.796941,41.41160599906],[-71.796952,41.41162299906],[-71.796933,41.41170299906],[-71.796903,41.41179299906],[-71.796842,41.41189599906],[-71.796824,41.41206399906],[-71.796812,41.41210099906],[-71.796781,41.41225199906],[-71.796787,41.41230699906],[-71.796792,41.41240099906],[-71.796802,41.41245599906],[-71.796884,41.41262799906],[-71.796918,41.41266899906],[-71.797124,41.41369299906],[-71.79709,41.41375099906],[-71.797017,41.41382999906],[-71.796998,41.41385299906],[-71.796938,41.41387199906],[-71.796917,41.41400099906],[-71.79679,41.41404499906],[-71.796637,41.41415299906],[-71.796574,41.41422199906],[-71.79645,41.41427799906],[-71.7963,41.41431699906],[-71.796227,41.41439899906],[-71.796113,41.41446599906],[-71.796023,41.41454499906],[-71.795998,41.41466699906],[-71.796016,41.41478899906],[-71.79617,41.41495399906],[-71.796176,41.41504399906],[-71.796196,41.41516999906],[-71.796199,41.41542599906],[-71.796198,41.41546299906],[-71.796178,41.41582599906],[-71.796189,41.41594099906],[-71.796289,41.41606899906],[-71.796318,41.41622399906],[-71.796399,41.41627799906],[-71.79647,41.41637899906],[-71.796538,41.41641499906],[-71.796671,41.41647199906],[-71.796829,41.41652699906],[-71.796936,41.41661899906],[-71.7971,41.41671599906],[-71.797221,41.41679699906],[-71.797322,41.41688499906],[-71.797392,41.41690399906],[-71.797576,41.41691099906],[-71.797744,41.41690999906],[-71.797745,41.41672699906],[-71.79812,41.41667399906],[-71.798391,41.41644699906],[-71.799513,41.41583799906],[-71.800739,41.41553299906],[-71.801439,41.41554499906],[-71.801726,41.41565799906],[-71.802065,41.41595299906],[-71.802083,41.41610299906],[-71.802497,41.41646299906],[-71.802907,41.41694599906],[-71.803253,41.41730699906],[-71.803684,41.41742799906],[-71.804348,41.41730899906],[-71.805177,41.41713399906],[-71.805895,41.41683599906],[-71.806812,41.41667299906],[-71.807237,41.41683399906],[-71.807754,41.41718799906],[-71.808052,41.41738699906],[-71.808576,41.41753999906],[-71.809087,41.41776599906],[-71.809212,41.41782199906],[-71.8105,41.41852099906],[-71.811454,41.41894999906],[-71.81215,41.41921299906],[-71.8129,41.41940399906],[-71.814004,41.41942299906],[-71.814889,41.41948699906],[-71.815273,41.41956899906],[-71.81612,41.41971699906],[-71.816904,41.41992699906],[-71.818088,41.41985199906],[-71.819389,41.41960599906],[-71.82033,41.41938199906],[-71.821042,41.41879199906],[-71.821765,41.41824799906],[-71.822767,41.41785999906],[-71.823369,41.41751999906],[-71.823418,41.41746999906],[-71.823731,41.41728199906],[-71.823873,41.41716399906],[-71.823981,41.41702799906],[-71.824146,41.41676399906],[-71.824273,41.41625699906],[-71.824304,41.41583299906],[-71.824384,41.41546099906],[-71.824573,41.41523499906],[-71.82492,41.41496099906],[-71.825384,41.41468699906],[-71.826128,41.41456499906],[-71.827218,41.41449199906],[-71.827902,41.41433399906],[-71.829288,41.41378199906],[-71.830628,41.41317999906],[-71.831412,41.41279299906],[-71.831843,41.41261999906],[-71.833416,41.41194599906],[-71.834107,41.41158199906],[-71.834658,41.41159699906],[-71.834986,41.41180099906],[-71.835238,41.41194599906],[-71.835797,41.41223199906],[-71.836385,41.41223399906],[-71.836883,41.41222799906],[-71.83789,41.41248299906],[-71.839258,41.41238999906],[-71.839697,41.41222199906],[-71.84044,41.41153199906],[-71.842029,41.41070599906],[-71.842426,41.41025999906],[-71.842627,41.40975699906],[-71.842499,41.40877199906],[-71.842352,41.40808399906],[-71.842446,41.40782999906],[-71.842935,41.40715099906],[-71.843229,41.40618099906],[-71.843376,41.40588999906],[-71.843591,41.40533099906]]]}}"}, +{"type": "blockgroup", "typeId": 509012, "areaId": 29415, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.82067,41.37399099906],[-71.820587,41.37368399906],[-71.820566,41.37350399906],[-71.820518,41.37309599906],[-71.820486,41.37281599906],[-71.820463,41.37263699906],[-71.820419,41.37227599906],[-71.820305,41.37126899906],[-71.820256,41.37094499906],[-71.818817,41.37097899906],[-71.818527,41.37100599906],[-71.817528,41.37103299906],[-71.817337,41.37050199906],[-71.817116,41.36996499906],[-71.816833,41.36925099906],[-71.81662,41.36869799906],[-71.816338,41.36806099906],[-71.816193,41.36764099906],[-71.815971,41.36713799906],[-71.816597,41.36698499906],[-71.8172,41.36685899906],[-71.817749,41.36673399906],[-71.818359,41.36658499906],[-71.818024,41.36618399906],[-71.817703,41.36579099906],[-71.817465,41.36552199906],[-71.817375,41.36542099906],[-71.817101,41.36510099906],[-71.816983,41.36496799906],[-71.81674,41.36469599906],[-71.816551,41.36449799906],[-71.816408,41.36436599906],[-71.816243,41.36422199906],[-71.815742,41.36392999906],[-71.815014,41.36350399906],[-71.814948,41.36346499906],[-71.81395,41.36282299906],[-71.813301,41.36236899906],[-71.813206,41.36229999906],[-71.813004,41.36213199906],[-71.812902,41.36204899906],[-71.812836,41.36199299906],[-71.812563,41.36173499906],[-71.811933,41.36109999906],[-71.811675,41.36085699906],[-71.811061,41.36022699906],[-71.810811,41.35992699906],[-71.810666,41.35972299906],[-71.810562,41.35958399906],[-71.81038,41.35936399906],[-71.810372,41.35935499906],[-71.810077,41.35900899906],[-71.809815,41.35868899906],[-71.809807,41.35867799906],[-71.809389,41.35830099906],[-71.809192,41.35815499906],[-71.808935,41.35796999906],[-71.808672,41.35780199906],[-71.808461,41.35766699906],[-71.80824,41.35756299906],[-71.807904,41.35741299906],[-71.807544,41.35727299906],[-71.807123,41.35710799906],[-71.806687,41.35692899906],[-71.806081,41.35668199906],[-71.805486,41.35642899906],[-71.804567,41.35601899906],[-71.804437,41.35596599906],[-71.804308,41.35591399906],[-71.80373,41.35569399906],[-71.803112,41.35544199906],[-71.802866,41.35534899906],[-71.802736,41.35530999906],[-71.80252,41.35524799906],[-71.802364,41.35519299906],[-71.80191,41.35505599906],[-71.801589,41.35496499906],[-71.801287,41.35490399906],[-71.801103,41.35486199906],[-71.80073,41.35477199906],[-71.800254,41.35463699906],[-71.799632,41.35446399906],[-71.799021,41.35428399906],[-71.798994,41.35427399906],[-71.797689,41.35389999906],[-71.796985,41.35371499906],[-71.795882,41.35342499906],[-71.795285,41.35326099906],[-71.7949,41.35315199906],[-71.793905,41.35288899906],[-71.792832,41.35255299906],[-71.791448,41.35216599906],[-71.79063,41.35195299906],[-71.789868,41.35175899906],[-71.787866,41.35120699906],[-71.787308,41.35106799906],[-71.786827,41.35096199906],[-71.786776,41.35095399906],[-71.786316,41.35087899906],[-71.785852,41.35085499906],[-71.785672,41.35084699906],[-71.785502,41.35083499906],[-71.785419,41.35083299906],[-71.784882,41.35080299906],[-71.78298,41.35078799906],[-71.782557,41.35077999906],[-71.782132,41.35077899906],[-71.780852,41.35075299906],[-71.780295,41.35073599906],[-71.779207,41.35071999906],[-71.778733,41.35070999906],[-71.777589,41.35069399906],[-71.776774,41.35069599906],[-71.776375,41.35071199906],[-71.776141,41.35071999906],[-71.775772,41.35074999906],[-71.775359,41.35078699906],[-71.774843,41.35083499906],[-71.774006,41.35091599906],[-71.773028,41.35101399906],[-71.77286,41.35103299906],[-71.772398,41.35108999906],[-71.771905,41.35114399906],[-71.771187,41.35122099906],[-71.770716,41.35127299906],[-71.770494,41.35129999906],[-71.770203,41.35133599906],[-71.769835,41.35138199906],[-71.769409,41.35142599906],[-71.768768,41.35149399906],[-71.768408,41.35153299906],[-71.76841,41.35156999906],[-71.768417,41.35160499906],[-71.768478,41.35190199906],[-71.768661,41.35315699906],[-71.768784,41.35396199906],[-71.768814,41.35418699906],[-71.768906,41.35468699906],[-71.768913,41.35469799906],[-71.768937,41.35479899906],[-71.768951,41.35485799906],[-71.769012,41.35501499906],[-71.769096,41.35519799906],[-71.76918,41.35535799906],[-71.769295,41.35552199906],[-71.769455,41.35573599906],[-71.769806,41.35609099906],[-71.770169,41.35644199906],[-71.770859,41.35709799906],[-71.771126,41.35733799906],[-71.771317,41.35753599906],[-71.771484,41.35768899906],[-71.771716,41.35792199906],[-71.771866,41.35807399906],[-71.771942,41.35819199906],[-71.772011,41.35828799906],[-71.772095,41.35843299906],[-71.772179,41.35860399906],[-71.772255,41.35877599906],[-71.772316,41.35893599906],[-71.772369,41.35914999906],[-71.772423,41.35947399906],[-71.77262,41.36047999906],[-71.772677,41.36076999906],[-71.772834,41.36156599906],[-71.772936,41.36217599906],[-71.772997,41.36250899906],[-71.773079,41.36292999906],[-71.773115,41.36313499906],[-71.773207,41.36368099906],[-71.773214,41.36375599906],[-71.773229,41.36394899906],[-71.773231,41.36399399906],[-71.773226,41.36410099906],[-71.773212,41.36424099906],[-71.773193,41.36435699906],[-71.773155,41.36449099906],[-71.773033,41.36480299906],[-71.772949,41.36498299906],[-71.772835,41.36516199906],[-71.772614,41.36542899906],[-71.772232,41.36586799906],[-71.771965,41.36615799906],[-71.771584,41.36659599906],[-71.771461,41.36671799906],[-71.771179,41.36698199906],[-71.771004,41.36711099906],[-71.770844,41.36722199906],[-71.770638,41.36736299906],[-71.770203,41.36758399906],[-71.769928,41.36771399906],[-71.769493,41.36791199906],[-71.769211,41.36803399906],[-71.768112,41.36852999906],[-71.76796,41.36860299906],[-71.767807,41.36868699906],[-71.76757,41.36883499906],[-71.767387,41.36896499906],[-71.767227,41.36908699906],[-71.767067,41.36923599906],[-71.766978,41.36932399906],[-71.766663,41.36963999906],[-71.765594,41.37073899906],[-71.765182,41.37117399906],[-71.764526,41.37184499906],[-71.764366,41.37203599906],[-71.764282,41.37212799906],[-71.764198,41.37224199906],[-71.764168,41.37230299906],[-71.764146,41.37233399906],[-71.764114,41.37237899906],[-71.763985,41.37265799906],[-71.763931,41.37280699906],[-71.763893,41.37295199906],[-71.763855,41.37321099906],[-71.763832,41.37388599906],[-71.76384,41.37422899906],[-71.763828,41.37468199906],[-71.763824,41.37479199906],[-71.76382,41.37496999906],[-71.763816,41.37508399906],[-71.763759,41.37550099906],[-71.763657,41.37592599906],[-71.763626,41.37604099906],[-71.763451,41.37659799906],[-71.763397,41.37683899906],[-71.763237,41.37738399906],[-71.763138,41.37776899906],[-71.763054,41.37800599906],[-71.762962,41.37820399906],[-71.762856,41.37839899906],[-71.762715,41.37871799906],[-71.762611,41.37890899906],[-71.762577,41.37899599906],[-71.762611,41.37903799906],[-71.762749,41.37908999906],[-71.762843,41.37910099906],[-71.762988,41.37913099906],[-71.763277,41.37917599906],[-71.763475,41.37921299906],[-71.76509,41.37943099906],[-71.765347,41.37946799906],[-71.765866,41.37954799906],[-71.766536,41.37963699906],[-71.767776,41.37982199906],[-71.768784,41.37996299906],[-71.769237,41.38003399906],[-71.76927,41.38003899906],[-71.769295,41.38004299906],[-71.769859,41.38012299906],[-71.770393,41.38019899906],[-71.771126,41.38031399906],[-71.771423,41.38035199906],[-71.772081,41.38046299906],[-71.772713,41.38055299906],[-71.773285,41.38062699906],[-71.773628,41.38065699906],[-71.773872,41.38067199906],[-71.774162,41.38068399906],[-71.774802,41.38068699906],[-71.775119,41.38068899906],[-71.775437,41.38068599906],[-71.776639,41.38067899906],[-71.778221,41.38066899906],[-71.779493,41.38065399906],[-71.780195,41.38064399906],[-71.781525,41.38064199906],[-71.782619,41.38065399906],[-71.783378,41.38064199906],[-71.783891,41.38063199906],[-71.785016,41.38062899906],[-71.785599,41.38062799906],[-71.785874,41.38064399906],[-71.786145,41.38069899906],[-71.786433,41.38080699906],[-71.786697,41.38093199906],[-71.786728,41.38095499906],[-71.786889,41.38111799906],[-71.787041,41.38130599906],[-71.787109,41.38145799906],[-71.787156,41.38167299906],[-71.787176,41.38190299906],[-71.787193,41.38217899906],[-71.787216,41.38252299906],[-71.78727,41.38287399906],[-71.787369,41.38311399906],[-71.787493,41.38327599906],[-71.787611,41.38338099906],[-71.787818,41.38352599906],[-71.788014,41.38362999906],[-71.78875,41.38395299906],[-71.789675,41.38432999906],[-71.790034,41.38443199906],[-71.790472,41.38452799906],[-71.790791,41.38457299906],[-71.790955,41.38458699906],[-71.791239,41.38459299906],[-71.792002,41.38455899906],[-71.792801,41.38453399906],[-71.793537,41.38449699906],[-71.795392,41.38440899906],[-71.796562,41.38434399906],[-71.797411,41.38431099906],[-71.799625,41.38422899906],[-71.799897,41.38421099906],[-71.800339,41.38418999906],[-71.800835,41.38415899906],[-71.801394,41.38409099906],[-71.801805,41.38407199906],[-71.802374,41.38404799906],[-71.802486,41.38404399906],[-71.803025,41.38402299906],[-71.803978,41.38400199906],[-71.804229,41.38398699906],[-71.804243,41.38398599906],[-71.804336,41.38398399906],[-71.804523,41.38397299906],[-71.805505,41.38393899906],[-71.806056,41.38390299906],[-71.806559,41.38388299906],[-71.806583,41.38388199906],[-71.80661,41.38387999906],[-71.807095,41.38385399906],[-71.807359,41.38384499906],[-71.808656,41.38379199906],[-71.809164,41.38378799906],[-71.810265,41.38371699906],[-71.810547,41.38371299906],[-71.810898,41.38371699906],[-71.812361,41.38376199906],[-71.812622,41.38376999906],[-71.813469,41.38380099906],[-71.81398,41.38381599906],[-71.814362,41.38380399906],[-71.814733,41.38377599906],[-71.814853,41.38376199906],[-71.815113,41.38372199906],[-71.815333,41.38367799906],[-71.815622,41.38360399906],[-71.815521,41.38312899906],[-71.815346,41.38243899906],[-71.815277,41.38218699906],[-71.815239,41.38201899906],[-71.815125,41.38159599906],[-71.815002,41.38104999906],[-71.814926,41.38074499906],[-71.814827,41.38031399906],[-71.81474,41.37986799906],[-71.814713,41.37961999906],[-71.814735,41.37905899906],[-71.814774,41.37873799906],[-71.814865,41.37839099906],[-71.814972,41.37806299906],[-71.815117,41.37769699906],[-71.815315,41.37729999906],[-71.81559,41.37680799906],[-71.816055,41.37594599906],[-71.816193,41.37568699906],[-71.816368,41.37540399906],[-71.816536,41.37521699906],[-71.81675,41.37506899906],[-71.817039,41.37487799906],[-71.817406,41.37466799906],[-71.817657,41.37456499906],[-71.818573,41.37425199906],[-71.818947,41.37414599906],[-71.819244,41.37409599906],[-71.82019,41.37400699906],[-71.820221,41.37400399906],[-71.820541,41.37400099906],[-71.82067,41.37399099906]]]}}"}, +{"type": "blockgroup", "typeId": 509013, "areaId": 29416, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.825023,41.38325699906],[-71.824052,41.38357599906],[-71.822843,41.38397399906],[-71.821878,41.38429199906],[-71.820861,41.38462599906],[-71.820289,41.38480399906],[-71.819806,41.38492499906],[-71.819553,41.38498899906],[-71.819239,41.38505399906],[-71.819056,41.38509299906],[-71.818959,41.38511099906],[-71.818566,41.38516899906],[-71.818485,41.38517899906],[-71.817972,41.38522999906],[-71.817442,41.38526499906],[-71.816923,41.38527299906],[-71.816626,41.38526599906],[-71.816346,41.38525499906],[-71.816175,41.38524599906],[-71.816074,41.38523899906],[-71.815883,41.38522699906],[-71.815406,41.38519199906],[-71.815047,41.38515699906],[-71.813324,41.38500599906],[-71.813166,41.38498899906],[-71.81268,41.38493799906],[-71.812242,41.38490899906],[-71.812122,41.38489599906],[-71.812159,41.38485499906],[-71.812248,41.38475399906],[-71.812485,41.38452499906],[-71.812683,41.38438399906],[-71.812958,41.38424699906],[-71.813158,41.38415499906],[-71.813225,41.38412499906],[-71.813248,41.38410899906],[-71.813354,41.38405599906],[-71.8134,41.38402599906],[-71.813431,41.38399099906],[-71.813461,41.38391899906],[-71.813469,41.38388099906],[-71.813469,41.38380099906],[-71.812622,41.38376999906],[-71.812361,41.38376199906],[-71.810898,41.38371699906],[-71.810547,41.38371299906],[-71.810265,41.38371699906],[-71.809164,41.38378799906],[-71.808656,41.38379199906],[-71.807359,41.38384499906],[-71.807095,41.38385399906],[-71.80661,41.38387999906],[-71.806583,41.38388199906],[-71.806559,41.38388299906],[-71.806056,41.38390299906],[-71.805505,41.38393899906],[-71.804523,41.38397299906],[-71.804336,41.38398399906],[-71.804243,41.38398599906],[-71.804229,41.38398699906],[-71.803978,41.38400199906],[-71.803025,41.38402299906],[-71.802486,41.38404399906],[-71.802374,41.38404799906],[-71.801805,41.38407199906],[-71.801394,41.38409099906],[-71.800835,41.38415899906],[-71.800339,41.38418999906],[-71.799897,41.38421099906],[-71.799625,41.38422899906],[-71.797411,41.38431099906],[-71.796562,41.38434399906],[-71.795392,41.38440899906],[-71.793537,41.38449699906],[-71.792801,41.38453399906],[-71.792002,41.38455899906],[-71.791239,41.38459299906],[-71.790955,41.38458699906],[-71.790791,41.38457299906],[-71.790472,41.38452799906],[-71.790034,41.38443199906],[-71.789675,41.38432999906],[-71.78875,41.38395299906],[-71.788014,41.38362999906],[-71.787818,41.38352599906],[-71.787611,41.38338099906],[-71.787493,41.38327599906],[-71.787369,41.38311399906],[-71.78727,41.38287399906],[-71.787216,41.38252299906],[-71.787193,41.38217899906],[-71.787176,41.38190299906],[-71.787156,41.38167299906],[-71.787109,41.38145799906],[-71.787041,41.38130599906],[-71.786889,41.38111799906],[-71.786728,41.38095499906],[-71.786697,41.38093199906],[-71.786433,41.38080699906],[-71.786145,41.38069899906],[-71.785874,41.38064399906],[-71.785599,41.38062799906],[-71.785016,41.38062899906],[-71.783891,41.38063199906],[-71.783378,41.38064199906],[-71.782619,41.38065399906],[-71.781525,41.38064199906],[-71.780195,41.38064399906],[-71.779493,41.38065399906],[-71.778221,41.38066899906],[-71.776639,41.38067899906],[-71.775437,41.38068599906],[-71.775119,41.38068899906],[-71.774802,41.38068699906],[-71.774807,41.38080499906],[-71.774804,41.38091499906],[-71.774781,41.38114499906],[-71.774764,41.38160299906],[-71.774777,41.38173099906],[-71.774856,41.38187299906],[-71.774912,41.38203299906],[-71.775004,41.38210699906],[-71.775042,41.38215099906],[-71.775116,41.38226499906],[-71.775191,41.38235899906],[-71.77528,41.38250499906],[-71.775329,41.38265299906],[-71.775382,41.38279199906],[-71.775437,41.38295999906],[-71.775552,41.38322999906],[-71.775604,41.38333399906],[-71.775641,41.38346699906],[-71.775681,41.38356499906],[-71.775769,41.38368399906],[-71.77581,41.38381499906],[-71.775796,41.38389699906],[-71.775782,41.38404699906],[-71.77583,41.38415999906],[-71.775915,41.38425299906],[-71.775975,41.38436399906],[-71.776005,41.38447299906],[-71.776031,41.38470699906],[-71.776036,41.38484399906],[-71.776054,41.38499799906],[-71.776079,41.38511499906],[-71.776127,41.38524699906],[-71.776164,41.38543799906],[-71.77617,41.38547599906],[-71.776184,41.38556099906],[-71.776196,41.38565199906],[-71.776275,41.38572599906],[-71.776321,41.38581099906],[-71.776299,41.38585399906],[-71.776216,41.38596599906],[-71.776201,41.38604299906],[-71.776219,41.38605899906],[-71.77639,41.38611899906],[-71.7765,41.38619199906],[-71.776603,41.38627699906],[-71.776741,41.38632499906],[-71.776898,41.38640199906],[-71.776929,41.38650499906],[-71.777209,41.38663299906],[-71.777245,41.38661899906],[-71.777447,41.38655699906],[-71.777556,41.38656699906],[-71.777702,41.38665999906],[-71.777805,41.38673899906],[-71.777919,41.38674499906],[-71.778085,41.38671099906],[-71.778222,41.38669699906],[-71.778404,41.38670599906],[-71.778496,41.38673199906],[-71.778642,41.38679699906],[-71.77878,41.38691899906],[-71.778886,41.38703399906],[-71.779222,41.38727699906],[-71.779232,41.38724799906],[-71.779305,41.38715199906],[-71.779372,41.38704799906],[-71.77946,41.38695999906],[-71.779529,41.38690499906],[-71.779555,41.38679599906],[-71.779632,41.38676599906],[-71.779783,41.38673099906],[-71.779881,41.38673199906],[-71.780029,41.38679299906],[-71.780181,41.38684899906],[-71.780314,41.38693999906],[-71.780367,41.38699999906],[-71.780421,41.38708399906],[-71.780423,41.38720799906],[-71.780448,41.38733999906],[-71.780492,41.38744899906],[-71.7805,41.38755899906],[-71.780529,41.38767999906],[-71.780547,41.38778699906],[-71.780463,41.38798499906],[-71.780427,41.38811199906],[-71.780425,41.38835199906],[-71.78043,41.38859299906],[-71.780455,41.38871099906],[-71.78053,41.38881899906],[-71.780612,41.38887199906],[-71.780912,41.38897499906],[-71.781059,41.38901099906],[-71.781221,41.38901099906],[-71.78137,41.38900499906],[-71.781468,41.38898999906],[-71.781602,41.38893399906],[-71.781742,41.38886999906],[-71.781797,41.38874499906],[-71.781917,41.38864899906],[-71.782037,41.38857699906],[-71.782059,41.38846299906],[-71.782067,41.38832199906],[-71.782067,41.38783399906],[-71.782083,41.38772099906],[-71.782115,41.38760699906],[-71.78222,41.38746199906],[-71.782291,41.38739199906],[-71.782338,41.38726099906],[-71.782443,41.38702699906],[-71.78252,41.38692599906],[-71.78264,41.38675199906],[-71.782765,41.38668599906],[-71.783069,41.38654799906],[-71.783215,41.38652199906],[-71.78336,41.38648099906],[-71.783532,41.38646699906],[-71.783652,41.38648799906],[-71.783808,41.38654099906],[-71.783937,41.38660699906],[-71.784032,41.38669399906],[-71.78412,41.38678999906],[-71.784123,41.38687899906],[-71.784125,41.38694499906],[-71.784095,41.38707199906],[-71.784019,41.38731399906],[-71.783964,41.38742799906],[-71.783897,41.38766299906],[-71.78388,41.38778099906],[-71.783873,41.38789599906],[-71.783877,41.38813599906],[-71.783943,41.38820099906],[-71.784123,41.38819199906],[-71.784148,41.38816399906],[-71.784119,41.38791499906],[-71.784119,41.38765799906],[-71.784124,41.38753599906],[-71.784139,41.38741399906],[-71.784172,41.38734699906],[-71.784225,41.38736799906],[-71.784256,41.38743299906],[-71.784256,41.38756199906],[-71.784294,41.38768399906],[-71.784461,41.38789299906],[-71.784531,41.38825199906],[-71.784637,41.38837399906],[-71.784653,41.38839799906],[-71.784652,41.38852299906],[-71.784631,41.38863699906],[-71.784592,41.38874799906],[-71.784541,41.38885199906],[-71.784485,41.38889299906],[-71.784415,41.38899899906],[-71.784307,41.38908099906],[-71.784151,41.38915199906],[-71.784096,41.38919599906],[-71.783926,41.38923499906],[-71.783813,41.38927499906],[-71.78377,41.38938199906],[-71.783732,41.38949799906],[-71.783718,41.38961699906],[-71.78379,41.38966399906],[-71.783895,41.38968599906],[-71.784026,41.38973599906],[-71.784167,41.38973099906],[-71.784168,41.38960699906],[-71.78418,41.38956499906],[-71.784328,41.38956299906],[-71.784455,41.38955099906],[-71.784491,41.38951899906],[-71.784496,41.38938099906],[-71.784512,41.38926899906],[-71.784537,41.38917299906],[-71.784661,41.38912499906],[-71.784725,41.38920899906],[-71.78485,41.38932299906],[-71.784956,41.38940799906],[-71.785071,41.38947799906],[-71.7852,41.38953199906],[-71.785366,41.38957399906],[-71.785525,41.38962399906],[-71.785685,41.38965099906],[-71.785832,41.38968399906],[-71.785995,41.38975899906],[-71.78618,41.38979699906],[-71.78633,41.38979999906],[-71.786439,41.38979299906],[-71.786547,41.38974599906],[-71.786577,41.38973299906],[-71.786664,41.38970999906],[-71.786763,41.38980999906],[-71.786914,41.38988499906],[-71.786974,41.38989999906],[-71.787208,41.39002799906],[-71.787388,41.39019999906],[-71.787506,41.39026399906],[-71.787617,41.39033399906],[-71.78774,41.39040199906],[-71.787861,41.39048499906],[-71.788266,41.39073999906],[-71.788501,41.39089699906],[-71.7886,41.39097999906],[-71.788774,41.39107999906],[-71.788823,41.39113499906],[-71.78887,41.39126499906],[-71.788983,41.39136099906],[-71.789113,41.39143099906],[-71.789178,41.39152899906],[-71.789222,41.39162499906],[-71.789344,41.39175299906],[-71.78946,41.39184299906],[-71.78953,41.39193899906],[-71.789604,41.39205799906],[-71.789665,41.39217299906],[-71.78974,41.39229999906],[-71.789926,41.39252099906],[-71.790029,41.39262299906],[-71.790191,41.39271199906],[-71.790324,41.39279199906],[-71.790465,41.39284499906],[-71.790558,41.39286399906],[-71.790879,41.39285299906],[-71.791044,41.39280999906],[-71.791174,41.39272399906],[-71.791209,41.39266199906],[-71.791177,41.39260499906],[-71.791099,41.39253799906],[-71.791104,41.39241699906],[-71.791132,41.39236299906],[-71.791276,41.39228899906],[-71.791408,41.39223999906],[-71.791502,41.39218299906],[-71.791654,41.39214899906],[-71.791818,41.39212899906],[-71.792144,41.39212099906],[-71.792265,41.39214199906],[-71.792396,41.39220399906],[-71.792537,41.39225799906],[-71.79269,41.39228199906],[-71.792832,41.39233699906],[-71.792994,41.39236099906],[-71.793137,41.39240199906],[-71.793377,41.39244699906],[-71.794064,41.39252499906],[-71.794704,41.39261899906],[-71.795203,41.39267299906],[-71.795517,41.39266599906],[-71.796062,41.39278199906],[-71.796494,41.39286299906],[-71.796989,41.39301599906],[-71.797223,41.39320899906],[-71.79744,41.39361399906],[-71.797535,41.39380099906],[-71.797588,41.39389799906],[-71.79765,41.39401199906],[-71.797925,41.39456999906],[-71.798057,41.39481399906],[-71.798111,41.39488799906],[-71.798156,41.39509599906],[-71.798209,41.39525499906],[-71.798341,41.39539099906],[-71.798463,41.39556299906],[-71.798469,41.39573699906],[-71.798495,41.39589999906],[-71.798495,41.39592699906],[-71.798528,41.39611899906],[-71.798491,41.39620399906],[-71.798334,41.39641599906],[-71.798306,41.39645399906],[-71.798072,41.39669399906],[-71.797722,41.39681199906],[-71.797247,41.39689499906],[-71.796733,41.39692499906],[-71.796117,41.39694099906],[-71.795342,41.39704399906],[-71.794897,41.39702099906],[-71.794371,41.39703499906],[-71.794103,41.39712399906],[-71.794061,41.39723799906],[-71.794069,41.39730099906],[-71.794142,41.39740699906],[-71.794298,41.39761199906],[-71.794338,41.39767099906],[-71.794516,41.39778699906],[-71.794613,41.39783699906],[-71.794711,41.39792699906],[-71.795118,41.39807699906],[-71.795668,41.39823999906],[-71.796033,41.39837299906],[-71.796453,41.39846399906],[-71.796927,41.39850799906],[-71.797264,41.39853399906],[-71.797661,41.39849899906],[-71.797829,41.39849299906],[-71.79818,41.39844799906],[-71.798227,41.39844299906],[-71.798282,41.39838899906],[-71.798292,41.39835999906],[-71.798377,41.39826799906],[-71.798534,41.39826099906],[-71.798653,41.39832399906],[-71.799093,41.39830399906],[-71.79931,41.39833099906],[-71.799541,41.39844299906],[-71.799736,41.39856399906],[-71.799756,41.39858899906],[-71.799792,41.39877499906],[-71.799768,41.39889199906],[-71.799709,41.39904299906],[-71.799689,41.39917599906],[-71.799717,41.39923599906],[-71.799824,41.39933199906],[-71.799881,41.39916999906],[-71.800102,41.39929599906],[-71.800346,41.39938699906],[-71.800423,41.39942599906],[-71.800568,41.39952899906],[-71.800644,41.39961199906],[-71.800713,41.39975399906],[-71.800758,41.39989499906],[-71.800797,41.39996699906],[-71.800842,41.40003199906],[-71.800934,41.40013099906],[-71.801117,41.40026099906],[-71.801193,41.40032599906],[-71.801254,41.40038699906],[-71.801315,41.40047499906],[-71.801399,41.40065399906],[-71.801501,41.40087399906],[-71.80159,41.40106599906],[-71.801643,41.40114599906],[-71.80172,41.40121799906],[-71.801865,41.40133699906],[-71.802727,41.40195099906],[-71.803207,41.40228299906],[-71.803299,41.40232799906],[-71.803391,41.40236299906],[-71.803459,41.40238199906],[-71.803604,41.40239299906],[-71.803986,41.40236999906],[-71.805435,41.40223699906],[-71.805634,41.40222199906],[-71.80629,41.40216799906],[-71.806557,41.40213399906],[-71.806908,41.40209599906],[-71.807976,41.40198899906],[-71.80912,41.40190499906],[-71.810265,41.40179799906],[-71.810539,41.40178699906],[-71.811057,41.40174999906],[-71.811302,41.40173299906],[-71.811592,41.40171799906],[-71.811768,41.40171799906],[-71.811935,41.40173299906],[-71.812057,41.40175199906],[-71.812202,41.40180599906],[-71.812317,41.40185899906],[-71.812614,41.40204199906],[-71.812782,41.40212999906],[-71.812904,41.40216399906],[-71.813072,41.40217999906],[-71.813286,41.40216799906],[-71.813728,41.40215299906],[-71.813922,41.40215199906],[-71.814064,41.40214899906],[-71.814308,41.40216799906],[-71.814499,41.40220299906],[-71.814728,41.40225199906],[-71.814972,41.40231699906],[-71.815376,41.40243499906],[-71.815735,41.40251899906],[-71.816605,41.40270599906],[-71.816727,41.40272899906],[-71.816879,41.40273699906],[-71.817009,41.40273299906],[-71.817177,41.40270199906],[-71.817604,41.40259599906],[-71.818001,41.40248499906],[-71.818199,41.40242799906],[-71.818413,41.40235499906],[-71.818832,41.40222199906],[-71.819031,41.40215299906],[-71.819214,41.40208399906],[-71.819359,41.40202299906],[-71.819397,41.40201199906],[-71.819855,41.40182499906],[-71.819946,41.40176799906],[-71.820015,41.40171799906],[-71.820084,41.40164199906],[-71.820068,41.40142099906],[-71.820091,41.40122999906],[-71.820122,41.40114599906],[-71.82016,41.40106599906],[-71.820213,41.40100099906],[-71.820282,41.40094799906],[-71.820366,41.40090599906],[-71.82045,41.40087499906],[-71.820717,41.40081399906],[-71.820984,41.40074499906],[-71.821533,41.40062299906],[-71.821808,41.40055499906],[-71.822121,41.40046699906],[-71.822327,41.40040199906],[-71.82222,41.40019599906],[-71.821846,41.39939099906],[-71.821823,41.39934499906],[-71.821632,41.39889099906],[-71.821541,41.39870799906],[-71.821358,41.39841099906],[-71.821265,41.39822799906],[-71.821182,41.39805199906],[-71.821045,41.39770499906],[-71.821045,41.39768199906],[-71.820999,41.39751399906],[-71.820969,41.39741099906],[-71.820946,41.39729299906],[-71.820938,41.39714799906],[-71.820938,41.39702999906],[-71.820961,41.39687299906],[-71.821037,41.39656099906],[-71.821114,41.39629399906],[-71.82119,41.39598099906],[-71.821266,41.39569899906],[-71.821274,41.39567599906],[-71.821365,41.39547699906],[-71.82148,41.39524099906],[-71.821571,41.39501599906],[-71.821615,41.39494499906],[-71.821701,41.39480599906],[-71.821709,41.39477899906],[-71.822029,41.39417299906],[-71.822101,41.39404499906],[-71.822121,41.39400899906],[-71.82213,41.39399499906],[-71.822151,41.39396299906],[-71.822166,41.39392899906],[-71.822617,41.39312299906],[-71.822712,41.39289299906],[-71.822723,41.39284499906],[-71.822745,41.39269999906],[-71.822775,41.39234999906],[-71.822792,41.39206699906],[-71.822785,41.39198499906],[-71.822775,41.39194299906],[-71.822753,41.39190399906],[-71.822724,41.39187699906],[-71.822683,41.39185099906],[-71.822593,41.39181499906],[-71.822708,41.39174699906],[-71.822823,41.39166299906],[-71.823051,41.39144499906],[-71.823128,41.39134999906],[-71.823196,41.39124699906],[-71.823257,41.39114399906],[-71.823312,41.39106599906],[-71.823357,41.39096099906],[-71.823395,41.39083099906],[-71.82341,41.39057499906],[-71.823395,41.39039199906],[-71.823364,41.39016699906],[-71.823254,41.38978399906],[-71.823199,41.38968599906],[-71.823149,41.38941299906],[-71.82312,41.38916799906],[-71.82309,41.38890099906],[-71.82309,41.38853499906],[-71.823095,41.38835299906],[-71.823105,41.38802299906],[-71.82312,41.38705399906],[-71.823126,41.38683499906],[-71.823127,41.38680999906],[-71.823139,41.38628199906],[-71.823151,41.38557099906],[-71.823158,41.38540799906],[-71.823181,41.38524199906],[-71.823189,41.38520099906],[-71.823196,41.38515899906],[-71.82325,41.38499799906],[-71.823296,41.38492599906],[-71.823357,41.38485299906],[-71.823456,41.38477699906],[-71.823563,41.38472399906],[-71.823653,41.38468399906],[-71.823975,41.38454099906],[-71.82402,41.38450199906],[-71.824089,41.38445699906],[-71.824158,41.38439199906],[-71.824234,41.38433099906],[-71.824455,41.38410899906],[-71.824715,41.38385799906],[-71.824852,41.38371999906],[-71.824867,41.38369399906],[-71.824921,41.38361399906],[-71.824944,41.38356399906],[-71.824989,41.38342299906],[-71.825004,41.38335299906],[-71.825023,41.38325699906]]]}}"}, +{"type": "blockgroup", "typeId": 509021, "areaId": 29417, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.781084,41.39323999906],[-71.781063,41.39312899906],[-71.780954,41.39306399906],[-71.780881,41.39296599906],[-71.780835,41.39291499906],[-71.780687,41.39283899906],[-71.780596,41.39279699906],[-71.780439,41.39274099906],[-71.780321,41.39267599906],[-71.780209,41.39259399906],[-71.780054,41.39249999906],[-71.779968,41.39245999906],[-71.779925,41.39236099906],[-71.77981,41.39226899906],[-71.77976,41.39215799906],[-71.779677,41.39207399906],[-71.779607,41.39196199906],[-71.779582,41.39183699906],[-71.779431,41.39158099906],[-71.779406,41.39143599906],[-71.77937,41.39132699906],[-71.77932,41.39120999906],[-71.779244,41.39106299906],[-71.779228,41.39094099906],[-71.778987,41.39037799906],[-71.778875,41.38984299906],[-71.778832,41.38973799906],[-71.778765,41.38963599906],[-71.778759,41.38936199906],[-71.778761,41.38911599906],[-71.778837,41.38898299906],[-71.778885,41.38892899906],[-71.778901,41.38882599906],[-71.778995,41.38870799906],[-71.779048,41.38864999906],[-71.77917,41.38857199906],[-71.779212,41.38848499906],[-71.779225,41.38835599906],[-71.779255,41.38824299906],[-71.779307,41.38813599906],[-71.779351,41.38800699906],[-71.779346,41.38775199906],[-71.779327,41.38769999906],[-71.779203,41.38765499906],[-71.779163,41.38754099906],[-71.77919,41.38749499906],[-71.779209,41.38750299906],[-71.779288,41.38750399906],[-71.779309,41.38747799906],[-71.779297,41.38738099906],[-71.779214,41.38730199906],[-71.779222,41.38727699906],[-71.778886,41.38703399906],[-71.77878,41.38691899906],[-71.778642,41.38679699906],[-71.778496,41.38673199906],[-71.778404,41.38670599906],[-71.778222,41.38669699906],[-71.778085,41.38671099906],[-71.777919,41.38674499906],[-71.777805,41.38673899906],[-71.777702,41.38665999906],[-71.777556,41.38656699906],[-71.777447,41.38655699906],[-71.777245,41.38661899906],[-71.777209,41.38663299906],[-71.776929,41.38650499906],[-71.776898,41.38640199906],[-71.776741,41.38632499906],[-71.776603,41.38627699906],[-71.7765,41.38619199906],[-71.77639,41.38611899906],[-71.776219,41.38605899906],[-71.776201,41.38604299906],[-71.776216,41.38596599906],[-71.776299,41.38585399906],[-71.776321,41.38581099906],[-71.776275,41.38572599906],[-71.776196,41.38565199906],[-71.776184,41.38556099906],[-71.77617,41.38547599906],[-71.776164,41.38543799906],[-71.776127,41.38524699906],[-71.776079,41.38511499906],[-71.776054,41.38499799906],[-71.776036,41.38484399906],[-71.776031,41.38470699906],[-71.776005,41.38447299906],[-71.775975,41.38436399906],[-71.775915,41.38425299906],[-71.77583,41.38415999906],[-71.775782,41.38404699906],[-71.775796,41.38389699906],[-71.77581,41.38381499906],[-71.775769,41.38368399906],[-71.775681,41.38356499906],[-71.775641,41.38346699906],[-71.775604,41.38333399906],[-71.775552,41.38322999906],[-71.775437,41.38295999906],[-71.775382,41.38279199906],[-71.775329,41.38265299906],[-71.77528,41.38250499906],[-71.775191,41.38235899906],[-71.775116,41.38226499906],[-71.775042,41.38215099906],[-71.775004,41.38210699906],[-71.774912,41.38203299906],[-71.774856,41.38187299906],[-71.774777,41.38173099906],[-71.774764,41.38160299906],[-71.774781,41.38114499906],[-71.774804,41.38091499906],[-71.774807,41.38080499906],[-71.774802,41.38068699906],[-71.774162,41.38068399906],[-71.773872,41.38067199906],[-71.773628,41.38065699906],[-71.773285,41.38062699906],[-71.772713,41.38055299906],[-71.772081,41.38046299906],[-71.771423,41.38035199906],[-71.771126,41.38031399906],[-71.770393,41.38019899906],[-71.769859,41.38012299906],[-71.769295,41.38004299906],[-71.76927,41.38003899906],[-71.769237,41.38003399906],[-71.768784,41.37996299906],[-71.767776,41.37982199906],[-71.766536,41.37963699906],[-71.765866,41.37954799906],[-71.765347,41.37946799906],[-71.76509,41.37943099906],[-71.763475,41.37921299906],[-71.763277,41.37917599906],[-71.762988,41.37913099906],[-71.762843,41.37910099906],[-71.762749,41.37908999906],[-71.762611,41.37903799906],[-71.762577,41.37899599906],[-71.762611,41.37890899906],[-71.762715,41.37871799906],[-71.762856,41.37839899906],[-71.762665,41.37863499906],[-71.762535,41.37874799906],[-71.762178,41.37905899906],[-71.762037,41.37919399906],[-71.761962,41.37927999906],[-71.7619,41.37943399906],[-71.761871,41.37953199906],[-71.761841,41.37964199906],[-71.761785,41.37997899906],[-71.761757,41.38006199906],[-71.761475,41.38095099906],[-71.761086,41.38213699906],[-71.760887,41.38281599906],[-71.760429,41.38415099906],[-71.760178,41.38493699906],[-71.759949,41.38560899906],[-71.759819,41.38604399906],[-71.759682,41.38646699906],[-71.759567,41.38684499906],[-71.759453,41.38719899906],[-71.759287,41.38765599906],[-71.759254,41.38774099906],[-71.75914,41.38798499906],[-71.759003,41.38821799906],[-71.758766,41.38855699906],[-71.758636,41.38870999906],[-71.758469,41.38887799906],[-71.758301,41.38906099906],[-71.758095,41.38923999906],[-71.757858,41.38942299906],[-71.757584,41.38961399906],[-71.757256,41.38982799906],[-71.756462,41.39033499906],[-71.755333,41.39104099906],[-71.754684,41.39145699906],[-71.752716,41.39269999906],[-71.752266,41.39297899906],[-71.751841,41.39324699906],[-71.751511,41.39345599906],[-71.751236,41.39362299906],[-71.75106,41.39373799906],[-71.751029,41.39376399906],[-71.750748,41.39347799906],[-71.750435,41.39318099906],[-71.750237,41.39302099906],[-71.750099,41.39293299906],[-71.749947,41.39285699906],[-71.749802,41.39281099906],[-71.749649,41.39277999906],[-71.749512,41.39276099906],[-71.749329,41.39274199906],[-71.748947,41.39271899906],[-71.748529,41.39275899906],[-71.747824,41.39280399906],[-71.747434,41.39283099906],[-71.747114,41.39285799906],[-71.746215,41.39293799906],[-71.745712,41.39299399906],[-71.74514,41.39302399906],[-71.744225,41.39308899906],[-71.743591,41.39313899906],[-71.743362,41.39315799906],[-71.742943,41.39319999906],[-71.741768,41.39327599906],[-71.741135,41.39332199906],[-71.740636,41.39334999906],[-71.740219,41.39337499906],[-71.738792,41.39347799906],[-71.738159,41.39353899906],[-71.737938,41.39334099906],[-71.737717,41.39312399906],[-71.737549,41.39297899906],[-71.737419,41.39289499906],[-71.73732,41.39283799906],[-71.737183,41.39278399906],[-71.736839,41.39266999906],[-71.736465,41.39257799906],[-71.736115,41.39246399906],[-71.735794,41.39231499906],[-71.735582,41.39219499906],[-71.735496,41.39213899906],[-71.735399,41.39206599906],[-71.735263,41.39194999906],[-71.735171,41.39186599906],[-71.734836,41.39155599906],[-71.734748,41.39148099906],[-71.734536,41.39131999906],[-71.734327,41.39118699906],[-71.734194,41.39110999906],[-71.734129,41.39107499906],[-71.734004,41.39101899906],[-71.733838,41.39095799906],[-71.733742,41.39092599906],[-71.733589,41.39088799906],[-71.733177,41.39081999906],[-71.732964,41.39077399906],[-71.732689,41.39068599906],[-71.732323,41.39051399906],[-71.7323,41.39049899906],[-71.732193,41.39042699906],[-71.731995,41.39026599906],[-71.731911,41.39018599906],[-71.731735,41.38998799906],[-71.731552,41.39002199906],[-71.731392,41.39006799906],[-71.731255,41.39012899906],[-71.731094,41.39021299906],[-71.730883,41.39030199906],[-71.730927,41.39221999906],[-71.730945,41.39333199906],[-71.730966,41.39372199906],[-71.731004,41.39446399906],[-71.731194,41.39774599906],[-71.731229,41.39825199906],[-71.731252,41.39851399906],[-71.731329,41.39852799906],[-71.731502,41.39854599906],[-71.731674,41.39857299906],[-71.73188,41.39858299906],[-71.73231,41.39861499906],[-71.732568,41.39861299906],[-71.732647,41.39862299906],[-71.732892,41.39863499906],[-71.733083,41.39865699906],[-71.733637,41.39870099906],[-71.733745,41.39871399906],[-71.733846,41.39873199906],[-71.734076,41.39878399906],[-71.734178,41.39881099906],[-71.734277,41.39885099906],[-71.734372,41.39890299906],[-71.734654,41.39903699906],[-71.734841,41.39914099906],[-71.734983,41.39923599906],[-71.73504,41.39928699906],[-71.735082,41.39934399906],[-71.735112,41.39940599906],[-71.735131,41.39946899906],[-71.735128,41.39954699906],[-71.735084,41.39966199906],[-71.735038,41.39971799906],[-71.734979,41.39977199906],[-71.734907,41.39982299906],[-71.734828,41.39986699906],[-71.734634,41.39995199906],[-71.734533,41.39999199906],[-71.73443,41.40002499906],[-71.734221,41.40008399906],[-71.734064,41.40012099906],[-71.733899,41.40017999906],[-71.733469,41.40027399906],[-71.733343,41.40028899906],[-71.733075,41.40029299906],[-71.732808,41.40032099906],[-71.732664,41.40033099906],[-71.732527,41.40033499906],[-71.732175,41.40032499906],[-71.732037,41.40031599906],[-71.731706,41.40028599906],[-71.731456,41.40027199906],[-71.731348,41.40027099906],[-71.731256,41.40027599906],[-71.731186,41.40028499906],[-71.731123,41.40035099906],[-71.731055,41.40040699906],[-71.730983,41.40044499906],[-71.730941,41.40050699906],[-71.730922,41.40058399906],[-71.730929,41.40064499906],[-71.730979,41.40070999906],[-71.731041,41.40076999906],[-71.731097,41.40080099906],[-71.731168,41.40078099906],[-71.731239,41.40077299906],[-71.731329,41.40077499906],[-71.731404,41.40079599906],[-71.731463,41.40082999906],[-71.731543,41.40085099906],[-71.731703,41.40080699906],[-71.731775,41.40079399906],[-71.73185,41.40079499906],[-71.731934,41.40080299906],[-71.732142,41.40079799906],[-71.732244,41.40079099906],[-71.732344,41.40077599906],[-71.732563,41.40075899906],[-71.732658,41.40077499906],[-71.732761,41.40077899906],[-71.732995,41.40075799906],[-71.733343,41.40075199906],[-71.733574,41.40073899906],[-71.73394,41.40073099906],[-71.734449,41.40069599906],[-71.734573,41.40068299906],[-71.734952,41.40063199906],[-71.735347,41.40059199906],[-71.735476,41.40057499906],[-71.736032,41.40051599906],[-71.736159,41.40049899906],[-71.736615,41.40045199906],[-71.736961,41.40042499906],[-71.737105,41.40039299906],[-71.737174,41.40035599906],[-71.737113,41.40029999906],[-71.737079,41.40024799906],[-71.737053,41.40018599906],[-71.736843,41.40012099906],[-71.736874,41.40010099906],[-71.736976,41.40009599906],[-71.737074,41.40011099906],[-71.737178,41.40008099906],[-71.737324,41.40001899906],[-71.737379,41.40000899906],[-71.737409,41.40004399906],[-71.737394,41.40012499906],[-71.737412,41.40019399906],[-71.737508,41.40017499906],[-71.737601,41.40014499906],[-71.737686,41.40014199906],[-71.737771,41.40014399906],[-71.737874,41.40015799906],[-71.737984,41.40018399906],[-71.738167,41.40026399906],[-71.738264,41.40029099906],[-71.738349,41.40032899906],[-71.738439,41.40045299906],[-71.738494,41.40052099906],[-71.738537,41.40059999906],[-71.738574,41.40068399906],[-71.738662,41.40083999906],[-71.738711,41.40100799906],[-71.738803,41.40123599906],[-71.738848,41.40129899906],[-71.739057,41.40149299906],[-71.739137,41.40155199906],[-71.739211,41.40159199906],[-71.739387,41.40165699906],[-71.739597,41.40169599906],[-71.739698,41.40171099906],[-71.739811,41.40171599906],[-71.739931,41.40171399906],[-71.74003,41.40170399906],[-71.740131,41.40168699906],[-71.740372,41.40165999906],[-71.740604,41.40162099906],[-71.740733,41.40159399906],[-71.740969,41.40153599906],[-71.741163,41.40149599906],[-71.74128,41.40146199906],[-71.741412,41.40143399906],[-71.741864,41.40135199906],[-71.742097,41.40130199906],[-71.742226,41.40128999906],[-71.742451,41.40128499906],[-71.742575,41.40128999906],[-71.742693,41.40130099906],[-71.742795,41.40131899906],[-71.742912,41.40134599906],[-71.743041,41.40138299906],[-71.74337,41.40153299906],[-71.743384,41.40153899906],[-71.743602,41.40165099906],[-71.743771,41.40174499906],[-71.743975,41.40186899906],[-71.744082,41.40192699906],[-71.744144,41.40195599906],[-71.744345,41.40207099906],[-71.744523,41.40216399906],[-71.744607,41.40219299906],[-71.744678,41.40219599906],[-71.744724,41.40223899906],[-71.744772,41.40226799906],[-71.744801,41.40228499906],[-71.744821,41.40229199906],[-71.744952,41.40233599906],[-71.745021,41.40236599906],[-71.745263,41.40232399906],[-71.745288,41.40232399906],[-71.745346,41.40233099906],[-71.745364,41.40233299906],[-71.745585,41.40249199906],[-71.745659,41.40254099906],[-71.745818,41.40265099906],[-71.746059,41.40279999906],[-71.746209,41.40288899906],[-71.746382,41.40300399906],[-71.746569,41.40311299906],[-71.746873,41.40337199906],[-71.746937,41.40343899906],[-71.747045,41.40359199906],[-71.747147,41.40371599906],[-71.747242,41.40385299906],[-71.747411,41.40411099906],[-71.747473,41.40417399906],[-71.747545,41.40422499906],[-71.747793,41.40436099906],[-71.747865,41.40441699906],[-71.747995,41.40454799906],[-71.748056,41.40461599906],[-71.748101,41.40468699906],[-71.748202,41.40488899906],[-71.748233,41.40496299906],[-71.748258,41.40504499906],[-71.748282,41.40519299906],[-71.748276,41.40527699906],[-71.74825,41.40542999906],[-71.748245,41.40547199906],[-71.748233,41.40558699906],[-71.748216,41.40566699906],[-71.748182,41.40589599906],[-71.748132,41.40611899906],[-71.748105,41.40620199906],[-71.748019,41.40640799906],[-71.747981,41.40647299906],[-71.747936,41.40653199906],[-71.747875,41.40664999906],[-71.747855,41.40670799906],[-71.747848,41.40678799906],[-71.747864,41.40685899906],[-71.747894,41.40692699906],[-71.747973,41.40707199906],[-71.748026,41.40713599906],[-71.748081,41.40719099906],[-71.748171,41.40729299906],[-71.748227,41.40732899906],[-71.74835,41.40734499906],[-71.748393,41.40734999906],[-71.748484,41.40735199906],[-71.748578,41.40733699906],[-71.748674,41.40732799906],[-71.748863,41.40732199906],[-71.748952,41.40730999906],[-71.749102,41.40726999906],[-71.749176,41.40725599906],[-71.74925,41.40723199906],[-71.749325,41.40719399906],[-71.749406,41.40718699906],[-71.749446,41.40724699906],[-71.749482,41.40735699906],[-71.749547,41.40738699906],[-71.749652,41.40741199906],[-71.74972,41.40744299906],[-71.749859,41.40753299906],[-71.749944,41.40757699906],[-71.750034,41.40761699906],[-71.750173,41.40770399906],[-71.750324,41.40777899906],[-71.750399,41.40780599906],[-71.750471,41.40782199906],[-71.750635,41.40781699906],[-71.750937,41.40779699906],[-71.751123,41.40777899906],[-71.751323,41.40777799906],[-71.751624,41.40779599906],[-71.751797,41.40781399906],[-71.751828,41.40781799906],[-71.752007,41.40784099906],[-71.752187,41.40785099906],[-71.75241,41.40787199906],[-71.752603,41.40790399906],[-71.752722,41.40791899906],[-71.753156,41.40794999906],[-71.753591,41.40799399906],[-71.753797,41.40801999906],[-71.753904,41.40802699906],[-71.754039,41.40803599906],[-71.754254,41.40803899906],[-71.754379,41.40803599906],[-71.754809,41.40800899906],[-71.755147,41.40797699906],[-71.755249,41.40795799906],[-71.755477,41.40790199906],[-71.755585,41.40786599906],[-71.755678,41.40782299906],[-71.755872,41.40772199906],[-71.755945,41.40766099906],[-71.756008,41.40758599906],[-71.756138,41.40744699906],[-71.756268,41.40728499906],[-71.757242,41.40562499906],[-71.757298,41.40566399906],[-71.757354,41.40566499906],[-71.757416,41.40559999906],[-71.757486,41.40546999906],[-71.757532,41.40539799906],[-71.757707,41.40518399906],[-71.757824,41.40502199906],[-71.75794,41.40488099906],[-71.758021,41.40476099906],[-71.758021,41.40473999906],[-71.757978,41.40470699906],[-71.75797,41.40464899906],[-71.758029,41.40448099906],[-71.758138,41.40422699906],[-71.758187,41.40413999906],[-71.758257,41.40406699906],[-71.758342,41.40400099906],[-71.758546,41.40387299906],[-71.758737,41.40374399906],[-71.758839,41.40366999906],[-71.759258,41.40329899906],[-71.759351,41.40322499906],[-71.759446,41.40316399906],[-71.75955,41.40311799906],[-71.759672,41.40307699906],[-71.759787,41.40304399906],[-71.759981,41.40297799906],[-71.760047,41.40292899906],[-71.760107,41.40278699906],[-71.760161,41.40271399906],[-71.760233,41.40266599906],[-71.760311,41.40263999906],[-71.760362,41.40258899906],[-71.760398,41.40251399906],[-71.760464,41.40242999906],[-71.760538,41.40236399906],[-71.760608,41.40232599906],[-71.760717,41.40234599906],[-71.760809,41.40237899906],[-71.760881,41.40241099906],[-71.76104,41.40232899906],[-71.761054,41.40231599906],[-71.760978,41.40226799906],[-71.760899,41.40221099906],[-71.760867,41.40214099906],[-71.760829,41.40202999906],[-71.760887,41.40198899906],[-71.760981,41.40194299906],[-71.761076,41.40188399906],[-71.761165,41.40181899906],[-71.761238,41.40175199906],[-71.761329,41.40169799906],[-71.761541,41.40162799906],[-71.761644,41.40161899906],[-71.761748,41.40163499906],[-71.761851,41.40161199906],[-71.761969,41.40157299906],[-71.762092,41.40155399906],[-71.762326,41.40158399906],[-71.762451,41.40157599906],[-71.762777,41.40152799906],[-71.762847,41.40148899906],[-71.762907,41.40143399906],[-71.762985,41.40140599906],[-71.763086,41.40140299906],[-71.763167,41.40137699906],[-71.763248,41.40134199906],[-71.763317,41.40130499906],[-71.76343,41.40121799906],[-71.763489,41.40116199906],[-71.7635,41.40111499906],[-71.763454,41.40105299906],[-71.763442,41.40099899906],[-71.763473,41.40094599906],[-71.763526,41.40089299906],[-71.76357,41.40083399906],[-71.763641,41.40070099906],[-71.763756,41.40050699906],[-71.763789,41.40042599906],[-71.763838,41.40027199906],[-71.763854,41.40019899906],[-71.763862,41.40010699906],[-71.763897,41.40002599906],[-71.763941,41.39995199906],[-71.764,41.39981599906],[-71.764022,41.39976699906],[-71.764111,41.39960499906],[-71.764149,41.39950699906],[-71.764189,41.39942399906],[-71.764353,41.39919799906],[-71.764413,41.39913199906],[-71.764483,41.39907299906],[-71.764557,41.39902099906],[-71.764627,41.39896499906],[-71.764692,41.39890099906],[-71.764732,41.39883699906],[-71.764741,41.39877499906],[-71.764713,41.39873199906],[-71.764528,41.39870699906],[-71.764483,41.39867899906],[-71.764487,41.39859999906],[-71.764549,41.39855499906],[-71.764645,41.39851099906],[-71.764735,41.39846399906],[-71.764802,41.39840699906],[-71.76485,41.39834799906],[-71.7649,41.39829599906],[-71.764954,41.39825499906],[-71.76501,41.39819899906],[-71.765016,41.39815799906],[-71.764985,41.39810599906],[-71.764966,41.39803999906],[-71.764976,41.39797799906],[-71.764996,41.39790999906],[-71.765035,41.39784099906],[-71.765087,41.39777499906],[-71.765153,41.39770599906],[-71.765285,41.39758299906],[-71.765327,41.39750999906],[-71.765356,41.39742499906],[-71.765398,41.39734899906],[-71.76544,41.39728899906],[-71.765468,41.39723899906],[-71.765559,41.39711599906],[-71.765771,41.39692299906],[-71.76591,41.39682799906],[-71.76597,41.39679799906],[-71.765997,41.39675599906],[-71.765922,41.39670499906],[-71.765834,41.39667199906],[-71.765789,41.39661299906],[-71.765755,41.39655399906],[-71.765737,41.39649399906],[-71.765679,41.39635499906],[-71.765658,41.39625299906],[-71.765735,41.39627399906],[-71.765791,41.39630999906],[-71.76586,41.39636399906],[-71.765932,41.39649699906],[-71.765948,41.39655599906],[-71.765979,41.39659599906],[-71.766052,41.39661399906],[-71.766156,41.39660999906],[-71.7662,41.39660399906],[-71.766359,41.39645599906],[-71.766399,41.39640099906],[-71.766453,41.39627599906],[-71.766512,41.39617299906],[-71.766722,41.39588499906],[-71.767038,41.39543099906],[-71.767315,41.39513599906],[-71.767446,41.39503199906],[-71.767517,41.39498699906],[-71.767589,41.39494899906],[-71.767746,41.39490899906],[-71.767849,41.39490499906],[-71.767941,41.39491699906],[-71.768012,41.39486799906],[-71.768069,41.39481799906],[-71.76813,41.39482699906],[-71.768143,41.39494199906],[-71.768195,41.39497399906],[-71.768262,41.39500599906],[-71.768318,41.39505399906],[-71.768362,41.39510899906],[-71.768392,41.39516799906],[-71.76844,41.39520999906],[-71.768446,41.39525499906],[-71.768412,41.39532699906],[-71.768356,41.39547099906],[-71.768364,41.39554699906],[-71.768406,41.39561899906],[-71.768436,41.39568199906],[-71.768453,41.39574399906],[-71.768476,41.39579699906],[-71.768526,41.39585299906],[-71.768576,41.39589499906],[-71.768643,41.39594099906],[-71.768682,41.39598899906],[-71.768658,41.39604599906],[-71.768695,41.39610799906],[-71.768785,41.39619799906],[-71.768934,41.39638999906],[-71.76898,41.39647099906],[-71.769069,41.39671499906],[-71.769148,41.39686799906],[-71.769217,41.39705099906],[-71.769268,41.39712999906],[-71.769314,41.39721799906],[-71.76938,41.39739799906],[-71.769469,41.39760799906],[-71.76951,41.39764099906],[-71.769511,41.39777199906],[-71.769531,41.39781599906],[-71.769598,41.39780899906],[-71.769598,41.39773499906],[-71.76959,41.39766699906],[-71.769556,41.39761899906],[-71.769542,41.39755999906],[-71.769524,41.39744699906],[-71.769576,41.39738899906],[-71.769609,41.39736099906],[-71.769562,41.39732099906],[-71.769526,41.39732099906],[-71.769529,41.39724599906],[-71.769466,41.39713199906],[-71.769483,41.39707299906],[-71.769504,41.39695999906],[-71.76948,41.39694799906],[-71.769418,41.39697499906],[-71.769377,41.39696599906],[-71.769365,41.39690699906],[-71.769342,41.39684199906],[-71.769317,41.39680299906],[-71.769281,41.39678999906],[-71.769286,41.39672999906],[-71.769364,41.39675699906],[-71.769442,41.39679999906],[-71.769508,41.39684999906],[-71.769706,41.39696699906],[-71.769814,41.39705399906],[-71.76986,41.39710099906],[-71.769904,41.39715599906],[-71.769908,41.39716799906],[-71.7701,41.39735099906],[-71.770263,41.39758399906],[-71.770307,41.39766299906],[-71.770481,41.39791199906],[-71.770524,41.39799799906],[-71.770546,41.39808199906],[-71.770547,41.39817199906],[-71.770524,41.39826499906],[-71.770492,41.39834299906],[-71.770396,41.39851099906],[-71.770286,41.39867299906],[-71.770146,41.39884599906],[-71.770065,41.39891399906],[-71.769975,41.39897799906],[-71.769894,41.39905399906],[-71.769818,41.39913599906],[-71.769744,41.39920699906],[-71.769634,41.39936999906],[-71.769556,41.39943599906],[-71.769471,41.39948399906],[-71.769367,41.39952399906],[-71.769255,41.39955899906],[-71.769136,41.39957699906],[-71.769003,41.39957699906],[-71.768873,41.39956899906],[-71.768533,41.39951899906],[-71.768398,41.39949299906],[-71.768205,41.39943499906],[-71.768086,41.39938299906],[-71.767874,41.39926899906],[-71.767582,41.39909699906],[-71.767497,41.39904199906],[-71.767433,41.39900799906],[-71.76737,41.39899899906],[-71.767333,41.39904899906],[-71.767307,41.39909299906],[-71.76718,41.39920599906],[-71.767299,41.39930499906],[-71.76742,41.39939799906],[-71.767479,41.39945099906],[-71.767488,41.39950799906],[-71.767479,41.39957199906],[-71.767496,41.39965199906],[-71.76752,41.39971499906],[-71.76755,41.39977199906],[-71.767589,41.39982399906],[-71.767791,41.40005799906],[-71.76785,41.40011699906],[-71.767921,41.40017999906],[-71.768056,41.40032199906],[-71.768131,41.40038299906],[-71.768213,41.40044199906],[-71.768406,41.40056099906],[-71.768484,41.40058399906],[-71.768564,41.40057199906],[-71.768645,41.40053699906],[-71.768704,41.40048799906],[-71.768723,41.40043099906],[-71.768715,41.40036799906],[-71.768684,41.40029999906],[-71.768633,41.40021999906],[-71.768538,41.40008599906],[-71.768524,41.40001099906],[-71.768547,41.39992499906],[-71.768617,41.39987199906],[-71.768724,41.39987699906],[-71.768808,41.39993299906],[-71.768878,41.40001899906],[-71.769046,41.40024599906],[-71.769096,41.40033499906],[-71.769253,41.40056399906],[-71.769329,41.40064299906],[-71.769425,41.40070499906],[-71.769533,41.40076799906],[-71.769717,41.40092299906],[-71.76988,41.40103099906],[-71.770076,41.40117999906],[-71.770192,41.40123599906],[-71.77038,41.40129499906],[-71.770489,41.40133799906],[-71.770611,41.40137699906],[-71.770704,41.40139599906],[-71.770785,41.40140699906],[-71.77089,41.40142699906],[-71.770991,41.40142099906],[-71.771103,41.40138999906],[-71.771202,41.40134599906],[-71.771303,41.40129499906],[-71.771423,41.40124399906],[-71.771538,41.40118699906],[-71.771698,41.40108199906],[-71.771887,41.40098599906],[-71.772102,41.40085199906],[-71.772228,41.40078699906],[-71.77233,41.40072799906],[-71.772471,41.40061899906],[-71.772508,41.40059099906],[-71.772591,41.40051499906],[-71.772644,41.40045299906],[-71.772674,41.40040399906],[-71.772697,41.40035199906],[-71.772714,41.40029499906],[-71.772723,41.40023599906],[-71.772715,41.40017999906],[-71.772666,41.39997799906],[-71.772638,41.39990099906],[-71.77256,41.39977799906],[-71.772457,41.39965099906],[-71.772266,41.39946499906],[-71.772201,41.39938499906],[-71.772004,41.39916299906],[-71.771906,41.39904499906],[-71.771866,41.39898899906],[-71.771764,41.39886299906],[-71.771709,41.39877999906],[-71.771663,41.39869799906],[-71.771633,41.39862199906],[-71.771609,41.39853899906],[-71.771549,41.39827399906],[-71.771515,41.39807599906],[-71.771474,41.39789099906],[-71.771385,41.39761099906],[-71.771369,41.39748899906],[-71.771377,41.39742699906],[-71.771378,41.39731399906],[-71.771411,41.39718999906],[-71.77144,41.39713399906],[-71.771528,41.39705999906],[-71.77164,41.39700199906],[-71.771816,41.39690199906],[-71.772105,41.39672999906],[-71.77309,41.39621999906],[-71.773423,41.39600999906],[-71.773798,41.39571999906],[-71.774179,41.39541199906],[-71.774822,41.39475299906],[-71.775002,41.39455699906],[-71.775085,41.39447399906],[-71.77526,41.39435399906],[-71.775399,41.39414899906],[-71.775329,41.39414899906],[-71.775206,41.39422899906],[-71.775075,41.39433499906],[-71.775001,41.39443399906],[-71.774098,41.39524499906],[-71.773627,41.39563099906],[-71.773333,41.39589499906],[-71.7732,41.39597199906],[-71.773168,41.39597599906],[-71.773159,41.39593199906],[-71.773175,41.39591099906],[-71.773472,41.39560199906],[-71.773742,41.39538099906],[-71.773961,41.39516099906],[-71.774102,41.39500299906],[-71.774149,41.39492499906],[-71.774312,41.39475399906],[-71.774297,41.39471399906],[-71.774271,41.39471999906],[-71.774084,41.39480299906],[-71.773895,41.39496799906],[-71.773643,41.39522299906],[-71.773522,41.39535499906],[-71.773496,41.39535199906],[-71.773548,41.39522999906],[-71.773652,41.39510799906],[-71.773737,41.39499299906],[-71.773987,41.39481199906],[-71.774138,41.39470899906],[-71.774284,41.39463699906],[-71.774435,41.39457099906],[-71.774673,41.39444399906],[-71.775,41.39420999906],[-71.775153,41.39412299906],[-71.775635,41.39394999906],[-71.775709,41.39386399906],[-71.775778,41.39381099906],[-71.775897,41.39372999906],[-71.776043,41.39363999906],[-71.776184,41.39358099906],[-71.776231,41.39352099906],[-71.776434,41.39345799906],[-71.776555,41.39342899906],[-71.77674,41.39335799906],[-71.776831,41.39332799906],[-71.777057,41.39329199906],[-71.777207,41.39326299906],[-71.777575,41.39325799906],[-71.777808,41.39325599906],[-71.777974,41.39329399906],[-71.778106,41.39331899906],[-71.778234,41.39338799906],[-71.778284,41.39342199906],[-71.77837,41.39354499906],[-71.778411,41.39364099906],[-71.778411,41.39373599906],[-71.778288,41.39383499906],[-71.77829,41.39407399906],[-71.778312,41.39416799906],[-71.778405,41.39426199906],[-71.778513,41.39434299906],[-71.778737,41.39448399906],[-71.778819,41.39455599906],[-71.778937,41.39456599906],[-71.779007,41.39454599906],[-71.779092,41.39445499906],[-71.779214,41.39436399906],[-71.779275,41.39425999906],[-71.779352,41.39410499906],[-71.7796,41.39396099906],[-71.779721,41.39391599906],[-71.779732,41.39391199906],[-71.77987,41.39385099906],[-71.780035,41.39376799906],[-71.780128,41.39370699906],[-71.780295,41.39366299906],[-71.780436,41.39361799906],[-71.780783,41.39348799906],[-71.780907,41.39341199906],[-71.78101,41.39332699906],[-71.781084,41.39323999906]]]}}"}, +{"type": "blockgroup", "typeId": 509022, "areaId": 29418, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.773231,41.36399399906],[-71.773229,41.36394899906],[-71.773214,41.36375599906],[-71.773207,41.36368099906],[-71.773115,41.36313499906],[-71.773079,41.36292999906],[-71.772997,41.36250899906],[-71.772936,41.36217599906],[-71.772834,41.36156599906],[-71.772677,41.36076999906],[-71.77262,41.36047999906],[-71.772423,41.35947399906],[-71.772369,41.35914999906],[-71.772316,41.35893599906],[-71.772255,41.35877599906],[-71.772179,41.35860399906],[-71.772095,41.35843299906],[-71.772011,41.35828799906],[-71.771942,41.35819199906],[-71.771866,41.35807399906],[-71.771716,41.35792199906],[-71.771484,41.35768899906],[-71.771317,41.35753599906],[-71.771126,41.35733799906],[-71.770859,41.35709799906],[-71.770169,41.35644199906],[-71.769806,41.35609099906],[-71.769455,41.35573599906],[-71.769295,41.35552199906],[-71.76918,41.35535799906],[-71.769096,41.35519799906],[-71.769012,41.35501499906],[-71.768951,41.35485799906],[-71.768937,41.35479899906],[-71.768913,41.35469799906],[-71.768906,41.35468699906],[-71.768814,41.35418699906],[-71.768784,41.35396199906],[-71.768661,41.35315699906],[-71.768478,41.35190199906],[-71.768417,41.35160499906],[-71.76841,41.35156999906],[-71.768408,41.35153299906],[-71.768406,41.35150399906],[-71.768402,41.35144399906],[-71.768387,41.35122699906],[-71.768387,41.35090299906],[-71.768394,41.35051699906],[-71.768417,41.34991799906],[-71.768417,41.34929299906],[-71.768427,41.34878199906],[-71.768433,41.34847999906],[-71.768433,41.34819799906],[-71.76844,41.34768299906],[-71.76844,41.34713399906],[-71.768448,41.34665699906],[-71.768448,41.34526099906],[-71.768463,41.34452099906],[-71.768463,41.34426099906],[-71.768473,41.34328499906],[-71.768486,41.34204899906],[-71.766644,41.34196699906],[-71.766245,41.34194599906],[-71.765915,41.34189999906],[-71.765528,41.34182099906],[-71.765222,41.34172599906],[-71.764999,41.34163699906],[-71.764702,41.34149999906],[-71.764448,41.34138199906],[-71.764274,41.34131699906],[-71.764107,41.34126899906],[-71.76391,41.34121999906],[-71.763697,41.34118599906],[-71.763492,41.34115999906],[-71.763295,41.34114499906],[-71.763105,41.34114199906],[-71.762893,41.34114999906],[-71.762727,41.34116099906],[-71.762575,41.34118099906],[-71.762393,41.34121199906],[-71.762211,41.34125399906],[-71.761892,41.34135299906],[-71.761051,41.34168799906],[-71.760969,41.34171299906],[-71.760666,41.34180799906],[-71.76046,41.34186399906],[-71.760106,41.34192599906],[-71.759873,41.34194499906],[-71.759351,41.34196699906],[-71.758078,41.34197899906],[-71.757791,41.34198099906],[-71.757303,41.34198599906],[-71.756823,41.34200299906],[-71.756616,41.34201299906],[-71.756434,41.34202499906],[-71.756254,41.34204599906],[-71.756056,41.34207299906],[-71.755806,41.34210699906],[-71.75408,41.34235899906],[-71.753618,41.34242799906],[-71.753333,41.34246899906],[-71.753091,41.34251399906],[-71.752857,41.34257199906],[-71.75268,41.34262499906],[-71.752451,41.34269899906],[-71.752289,41.34276199906],[-71.752174,41.34282699906],[-71.752014,41.34292599906],[-71.751986,41.34294599906],[-71.751885,41.34301999906],[-71.75177,41.34310499906],[-71.751637,41.34322299906],[-71.751465,41.34339299906],[-71.751065,41.34377599906],[-71.750903,41.34392199906],[-71.750745,41.34404299906],[-71.750679,41.34409699906],[-71.750661,41.34410999906],[-71.750423,41.34428599906],[-71.750258,41.34439199906],[-71.750012,41.34452599906],[-71.748908,41.34503799906],[-71.748394,41.34529999906],[-71.747558,41.34570399906],[-71.747147,41.34591299906],[-71.746567,41.34620699906],[-71.746132,41.34640899906],[-71.745547,41.34668399906],[-71.745122,41.34687999906],[-71.744805,41.34701699906],[-71.744363,41.34720699906],[-71.744299,41.34724499906],[-71.744186,41.34730899906],[-71.744171,41.34732099906],[-71.744107,41.34734199906],[-71.744031,41.34736199906],[-71.743877,41.34745899906],[-71.743756,41.34754099906],[-71.743557,41.34762599906],[-71.743063,41.34778799906],[-71.742966,41.34781099906],[-71.7428,41.34784399906],[-71.742656,41.34788699906],[-71.742509,41.34793199906],[-71.742027,41.34812399906],[-71.741612,41.34828599906],[-71.741248,41.34844799906],[-71.740776,41.34865399906],[-71.739836,41.34911299906],[-71.739662,41.34919599906],[-71.738922,41.34955599906],[-71.738781,41.34962599906],[-71.738603,41.34971099906],[-71.738345,41.34982899906],[-71.738176,41.34990299906],[-71.738016,41.34996799906],[-71.737889,41.35001499906],[-71.737711,41.35007899906],[-71.737404,41.35017899906],[-71.737077,41.35026299906],[-71.736883,41.35031099906],[-71.73658,41.35037599906],[-71.736092,41.35046799906],[-71.735725,41.35053599906],[-71.735205,41.35063899906],[-71.734859,41.35070799906],[-71.733579,41.35095999906],[-71.732063,41.35126499906],[-71.731551,41.35136899906],[-71.730452,41.35158999906],[-71.730106,41.35165799906],[-71.730106,41.35175599906],[-71.730103,41.35198699906],[-71.730107,41.35325399906],[-71.730111,41.35402099906],[-71.730216,41.36200099906],[-71.730314,41.36867899906],[-71.730315,41.36936099906],[-71.730331,41.37143999906],[-71.730333,41.37149999906],[-71.73034,41.37170699906],[-71.730353,41.37207499906],[-71.730378,41.37276799906],[-71.730379,41.37281999906],[-71.730383,41.37294399906],[-71.730391,41.37320299906],[-71.730411,41.37389899906],[-71.730415,41.37412699906],[-71.730546,41.37867799906],[-71.730551,41.37876899906],[-71.730717,41.38450499906],[-71.730777,41.38647099906],[-71.73079,41.38694899906],[-71.730796,41.38713999906],[-71.730804,41.38753099906],[-71.730883,41.39030199906],[-71.731094,41.39021299906],[-71.731255,41.39012899906],[-71.731392,41.39006799906],[-71.731552,41.39002199906],[-71.731735,41.38998799906],[-71.731911,41.39018599906],[-71.731995,41.39026599906],[-71.732193,41.39042699906],[-71.7323,41.39049899906],[-71.732323,41.39051399906],[-71.732689,41.39068599906],[-71.732964,41.39077399906],[-71.733177,41.39081999906],[-71.733589,41.39088799906],[-71.733742,41.39092599906],[-71.733838,41.39095799906],[-71.734004,41.39101899906],[-71.734129,41.39107499906],[-71.734194,41.39110999906],[-71.734327,41.39118699906],[-71.734536,41.39131999906],[-71.734748,41.39148099906],[-71.734836,41.39155599906],[-71.735171,41.39186599906],[-71.735263,41.39194999906],[-71.735399,41.39206599906],[-71.735496,41.39213899906],[-71.735582,41.39219499906],[-71.735794,41.39231499906],[-71.736115,41.39246399906],[-71.736465,41.39257799906],[-71.736839,41.39266999906],[-71.737183,41.39278399906],[-71.73732,41.39283799906],[-71.737419,41.39289499906],[-71.737549,41.39297899906],[-71.737717,41.39312399906],[-71.737938,41.39334099906],[-71.738159,41.39353899906],[-71.738792,41.39347799906],[-71.740219,41.39337499906],[-71.740636,41.39334999906],[-71.741135,41.39332199906],[-71.741768,41.39327599906],[-71.742943,41.39319999906],[-71.743362,41.39315799906],[-71.743591,41.39313899906],[-71.744225,41.39308899906],[-71.74514,41.39302399906],[-71.745712,41.39299399906],[-71.746215,41.39293799906],[-71.747114,41.39285799906],[-71.747434,41.39283099906],[-71.747824,41.39280399906],[-71.748529,41.39275899906],[-71.748947,41.39271899906],[-71.749329,41.39274199906],[-71.749512,41.39276099906],[-71.749649,41.39277999906],[-71.749802,41.39281099906],[-71.749947,41.39285699906],[-71.750099,41.39293299906],[-71.750237,41.39302099906],[-71.750435,41.39318099906],[-71.750748,41.39347799906],[-71.751029,41.39376399906],[-71.75106,41.39373799906],[-71.751236,41.39362299906],[-71.751511,41.39345599906],[-71.751841,41.39324699906],[-71.752266,41.39297899906],[-71.752716,41.39269999906],[-71.754684,41.39145699906],[-71.755333,41.39104099906],[-71.756462,41.39033499906],[-71.757256,41.38982799906],[-71.757584,41.38961399906],[-71.757858,41.38942299906],[-71.758095,41.38923999906],[-71.758301,41.38906099906],[-71.758469,41.38887799906],[-71.758636,41.38870999906],[-71.758766,41.38855699906],[-71.759003,41.38821799906],[-71.75914,41.38798499906],[-71.759254,41.38774099906],[-71.759287,41.38765599906],[-71.759453,41.38719899906],[-71.759567,41.38684499906],[-71.759682,41.38646699906],[-71.759819,41.38604399906],[-71.759949,41.38560899906],[-71.760178,41.38493699906],[-71.760429,41.38415099906],[-71.760887,41.38281599906],[-71.761086,41.38213699906],[-71.761475,41.38095099906],[-71.761757,41.38006199906],[-71.761785,41.37997899906],[-71.761841,41.37964199906],[-71.761871,41.37953199906],[-71.7619,41.37943399906],[-71.761962,41.37927999906],[-71.762037,41.37919399906],[-71.762178,41.37905899906],[-71.762535,41.37874799906],[-71.762665,41.37863499906],[-71.762856,41.37839899906],[-71.762962,41.37820399906],[-71.763054,41.37800599906],[-71.763138,41.37776899906],[-71.763237,41.37738399906],[-71.763397,41.37683899906],[-71.763451,41.37659799906],[-71.763626,41.37604099906],[-71.763657,41.37592599906],[-71.763759,41.37550099906],[-71.763816,41.37508399906],[-71.76382,41.37496999906],[-71.763824,41.37479199906],[-71.763828,41.37468199906],[-71.76384,41.37422899906],[-71.763832,41.37388599906],[-71.763855,41.37321099906],[-71.763893,41.37295199906],[-71.763931,41.37280699906],[-71.763985,41.37265799906],[-71.764114,41.37237899906],[-71.764146,41.37233399906],[-71.764168,41.37230299906],[-71.764198,41.37224199906],[-71.764282,41.37212799906],[-71.764366,41.37203599906],[-71.764526,41.37184499906],[-71.765182,41.37117399906],[-71.765594,41.37073899906],[-71.766663,41.36963999906],[-71.766978,41.36932399906],[-71.767067,41.36923599906],[-71.767227,41.36908699906],[-71.767387,41.36896499906],[-71.76757,41.36883499906],[-71.767807,41.36868699906],[-71.76796,41.36860299906],[-71.768112,41.36852999906],[-71.769211,41.36803399906],[-71.769493,41.36791199906],[-71.769928,41.36771399906],[-71.770203,41.36758399906],[-71.770638,41.36736299906],[-71.770844,41.36722199906],[-71.771004,41.36711099906],[-71.771179,41.36698199906],[-71.771461,41.36671799906],[-71.771584,41.36659599906],[-71.771965,41.36615799906],[-71.772232,41.36586799906],[-71.772614,41.36542899906],[-71.772835,41.36516199906],[-71.772949,41.36498299906],[-71.773033,41.36480299906],[-71.773155,41.36449099906],[-71.773193,41.36435699906],[-71.773212,41.36424099906],[-71.773226,41.36410099906],[-71.773231,41.36399399906]]]}}"}, +{"type": "blockgroup", "typeId": 509023, "areaId": 29419, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.832993,41.33276699906],[-71.832985,41.33272199906],[-71.832985,41.33267999906],[-71.83297,41.33263799906],[-71.832962,41.33259199906],[-71.832947,41.33254999906],[-71.832878,41.33240899906],[-71.832802,41.33231399906],[-71.832718,41.33223699906],[-71.832649,41.33217999906],[-71.832443,41.33202399906],[-71.832329,41.33192799906],[-71.8321,41.33172199906],[-71.831993,41.33160799906],[-71.831924,41.33152799906],[-71.831833,41.33140899906],[-71.831772,41.33129899906],[-71.831673,41.33107399906],[-71.831657,41.33102799906],[-71.831589,41.33073799906],[-71.831566,41.33060799906],[-71.831558,41.33049399906],[-71.831543,41.33025399906],[-71.831543,41.33019599906],[-71.831551,41.33008999906],[-71.831573,41.32989499906],[-71.831581,41.32982599906],[-71.831612,41.32968899906],[-71.831635,41.32962399906],[-71.831696,41.32949799906],[-71.831756,41.32940499906],[-71.831715,41.32928299906],[-71.831693,41.32922399906],[-71.831648,41.32914699906],[-71.831567,41.32903799906],[-71.831384,41.32890899906],[-71.830989,41.32875299906],[-71.830803,41.32869699906],[-71.830489,41.32860999906],[-71.830138,41.32853299906],[-71.829881,41.32848299906],[-71.829575,41.32845799906],[-71.829308,41.32844799906],[-71.829102,41.32845599906],[-71.828968,41.32844499906],[-71.828771,41.32843499906],[-71.828497,41.32842599906],[-71.82819,41.32841299906],[-71.828039,41.32840899906],[-71.827526,41.32839099906],[-71.827328,41.32837399906],[-71.827188,41.32834599906],[-71.827013,41.32829899906],[-71.826826,41.32822299906],[-71.826476,41.32804399906],[-71.82637,41.32796499906],[-71.826216,41.32783199906],[-71.826138,41.32774499906],[-71.826055,41.32764499906],[-71.825943,41.32749999906],[-71.82584,41.32736299906],[-71.825737,41.32723499906],[-71.825561,41.32705599906],[-71.825536,41.32702899906],[-71.82549,41.32699399906],[-71.8254,41.32693199906],[-71.825335,41.32689799906],[-71.825149,41.32683999906],[-71.825079,41.32682599906],[-71.825012,41.32681299906],[-71.824934,41.32679899906],[-71.824831,41.32678899906],[-71.824745,41.32678699906],[-71.824659,41.32678399906],[-71.824569,41.32678399906],[-71.824349,41.32678599906],[-71.824066,41.32678999906],[-71.823819,41.32681799906],[-71.823433,41.32685299906],[-71.823097,41.32688799906],[-71.822823,41.32691199906],[-71.822487,41.32695799906],[-71.822334,41.32697299906],[-71.822059,41.32700599906],[-71.821825,41.32704099906],[-71.821551,41.32708199906],[-71.821144,41.32716399906],[-71.821022,41.32719799906],[-71.820724,41.32728999906],[-71.820641,41.32731199906],[-71.820513,41.32736399906],[-71.820313,41.32744599906],[-71.819252,41.32795299906],[-71.81823,41.32847999906],[-71.818168,41.32852199906],[-71.818107,41.32856299906],[-71.817871,41.32872399906],[-71.817589,41.32893399906],[-71.817238,41.32923899906],[-71.817142,41.32931499906],[-71.816597,41.32974599906],[-71.816508,41.32982299906],[-71.816109,41.33016999906],[-71.815582,41.33061599906],[-71.815277,41.33086799906],[-71.814621,41.33138999906],[-71.814331,41.33156999906],[-71.814184,41.33164099906],[-71.814072,41.33169499906],[-71.813941,41.33175399906],[-71.813786,41.33180599906],[-71.813611,41.33184399906],[-71.813487,41.33186799906],[-71.813076,41.33191899906],[-71.812527,41.33195599906],[-71.811788,41.33196099906],[-71.81106,41.33194599906],[-71.810616,41.33194799906],[-71.810282,41.33194999906],[-71.80996,41.33196599906],[-71.809644,41.33200099906],[-71.809133,41.33206899906],[-71.808029,41.33228699906],[-71.80726,41.33245799906],[-71.806479,41.33261699906],[-71.805703,41.33278199906],[-71.805087,41.33290699906],[-71.804768,41.33299299906],[-71.804725,41.33300599906],[-71.804535,41.33306599906],[-71.804031,41.33327499906],[-71.80336,41.33358299906],[-71.802826,41.33383199906],[-71.80233,41.33410999906],[-71.801727,41.33448999906],[-71.801277,41.33477899906],[-71.800888,41.33501499906],[-71.800468,41.33523099906],[-71.800011,41.33539399906],[-71.7995,41.33553499906],[-71.799057,41.33566399906],[-71.798714,41.33579699906],[-71.798271,41.33602099906],[-71.798008,41.33614899906],[-71.797813,41.33624499906],[-71.797447,41.33639199906],[-71.797127,41.33649199906],[-71.796745,41.33657099906],[-71.795963,41.33675899906],[-71.795172,41.33691299906],[-71.794239,41.33710599906],[-71.794136,41.33713199906],[-71.793547,41.33723799906],[-71.793273,41.33729399906],[-71.792656,41.33739099906],[-71.791611,41.33760099906],[-71.790932,41.33773399906],[-71.790573,41.33780699906],[-71.789725,41.33796799906],[-71.78907,41.33809299906],[-71.788834,41.33812299906],[-71.787971,41.33827999906],[-71.787621,41.33833699906],[-71.787338,41.33840199906],[-71.787209,41.33844799906],[-71.786827,41.33861499906],[-71.786535,41.33881199906],[-71.786326,41.33900299906],[-71.785934,41.33936299906],[-71.785767,41.33951199906],[-71.785637,41.33961899906],[-71.785545,41.33968399906],[-71.78537,41.33979399906],[-71.785088,41.33995399906],[-71.78492,41.34003099906],[-71.784683,41.34012199906],[-71.784477,41.34019499906],[-71.784203,41.34026299906],[-71.783769,41.34037999906],[-71.78344,41.34046899906],[-71.783271,41.34050899906],[-71.783031,41.34056699906],[-71.782992,41.34057699906],[-71.782859,41.34060999906],[-71.781662,41.34091599906],[-71.781617,41.34092599906],[-71.781258,41.34100699906],[-71.780388,41.34122799906],[-71.78006,41.34130499906],[-71.779739,41.34137099906],[-71.779439,41.34140699906],[-71.779208,41.34141899906],[-71.779036,41.34141199906],[-71.778915,41.34139699906],[-71.778784,41.34137099906],[-71.778643,41.34133999906],[-71.778003,41.34119499906],[-71.777747,41.34115199906],[-71.777451,41.34111199906],[-71.777175,41.34109399906],[-71.776833,41.34109899906],[-71.776497,41.34113299906],[-71.776402,41.34114499906],[-71.776161,41.34117899906],[-71.775276,41.34133899906],[-71.77408,41.34152199906],[-71.773281,41.34166299906],[-71.773093,41.34169699906],[-71.772698,41.34175299906],[-71.771278,41.34198099906],[-71.771017,41.34201799906],[-71.770711,41.34204699906],[-71.770373,41.34206999906],[-71.769982,41.34209099906],[-71.769554,41.34210199906],[-71.769025,41.34207199906],[-71.768486,41.34204899906],[-71.768473,41.34328499906],[-71.768463,41.34426099906],[-71.768463,41.34452099906],[-71.768448,41.34526099906],[-71.768448,41.34665699906],[-71.76844,41.34713399906],[-71.76844,41.34768299906],[-71.768433,41.34819799906],[-71.768433,41.34847999906],[-71.768427,41.34878199906],[-71.768417,41.34929299906],[-71.768417,41.34991799906],[-71.768394,41.35051699906],[-71.768387,41.35090299906],[-71.768387,41.35122699906],[-71.768402,41.35144399906],[-71.768406,41.35150399906],[-71.768408,41.35153299906],[-71.768768,41.35149399906],[-71.769409,41.35142599906],[-71.769835,41.35138199906],[-71.770203,41.35133599906],[-71.770494,41.35129999906],[-71.770716,41.35127299906],[-71.771187,41.35122099906],[-71.771905,41.35114399906],[-71.772398,41.35108999906],[-71.77286,41.35103299906],[-71.773028,41.35101399906],[-71.774006,41.35091599906],[-71.774843,41.35083499906],[-71.775359,41.35078699906],[-71.775772,41.35074999906],[-71.776141,41.35071999906],[-71.776375,41.35071199906],[-71.776774,41.35069599906],[-71.777589,41.35069399906],[-71.778733,41.35070999906],[-71.779207,41.35071999906],[-71.780295,41.35073599906],[-71.780852,41.35075299906],[-71.782132,41.35077899906],[-71.782557,41.35077999906],[-71.78298,41.35078799906],[-71.784882,41.35080299906],[-71.785419,41.35083299906],[-71.785502,41.35083499906],[-71.785672,41.35084699906],[-71.785852,41.35085499906],[-71.786316,41.35087899906],[-71.786776,41.35095399906],[-71.786827,41.35096199906],[-71.787308,41.35106799906],[-71.787866,41.35120699906],[-71.789868,41.35175899906],[-71.79063,41.35195299906],[-71.791448,41.35216599906],[-71.792832,41.35255299906],[-71.793905,41.35288899906],[-71.7949,41.35315199906],[-71.795285,41.35326099906],[-71.795882,41.35342499906],[-71.796985,41.35371499906],[-71.797689,41.35389999906],[-71.798994,41.35427399906],[-71.799021,41.35428399906],[-71.799632,41.35446399906],[-71.800254,41.35463699906],[-71.80073,41.35477199906],[-71.801103,41.35486199906],[-71.801287,41.35490399906],[-71.801589,41.35496499906],[-71.80191,41.35505599906],[-71.802364,41.35519299906],[-71.80252,41.35524799906],[-71.802736,41.35530999906],[-71.802866,41.35534899906],[-71.803112,41.35544199906],[-71.80373,41.35569399906],[-71.804308,41.35591399906],[-71.804437,41.35596599906],[-71.804567,41.35601899906],[-71.805486,41.35642899906],[-71.806081,41.35668199906],[-71.806687,41.35692899906],[-71.807123,41.35710799906],[-71.807544,41.35727299906],[-71.807607,41.35719899906],[-71.807616,41.35718399906],[-71.807755,41.35702099906],[-71.807892,41.35689199906],[-71.809235,41.35567099906],[-71.809303,41.35561399906],[-71.809517,41.35540399906],[-71.809616,41.35529699906],[-71.809891,41.35494599906],[-71.810066,41.35468699906],[-71.810219,41.35441199906],[-71.810287,41.35427099906],[-71.810402,41.35395799906],[-71.810448,41.35378999906],[-71.810501,41.35361899906],[-71.810816,41.35220299906],[-71.811348,41.34991499906],[-71.811423,41.34965199906],[-71.811469,41.34951099906],[-71.811526,41.34935399906],[-71.811678,41.34900899906],[-71.811722,41.34891499906],[-71.811817,41.34874399906],[-71.811933,41.34853999906],[-71.812035,41.34837099906],[-71.812427,41.34779699906],[-71.8126,41.34754499906],[-71.81277,41.34729899906],[-71.813544,41.34617399906],[-71.813631,41.34604699906],[-71.814005,41.34550299906],[-71.814072,41.34540699906],[-71.81416,41.34527899906],[-71.814247,41.34516499906],[-71.814263,41.34514199906],[-71.814331,41.34504299906],[-71.81443,41.34492899906],[-71.814621,41.34475299906],[-71.814728,41.34466899906],[-71.814819,41.34460799906],[-71.815186,41.34437899906],[-71.815498,41.34421499906],[-71.815796,41.34408199906],[-71.816078,41.34399399906],[-71.816452,41.34390599906],[-71.816872,41.34384499906],[-71.817311,41.34378599906],[-71.817497,41.34376099906],[-71.818253,41.34367799906],[-71.818642,41.34364699906],[-71.819008,41.34360099906],[-71.819687,41.34350699906],[-71.82045,41.34340999906],[-71.820534,41.34339599906],[-71.820709,41.34337399906],[-71.821083,41.34331599906],[-71.821175,41.34329799906],[-71.821381,41.34326399906],[-71.821495,41.34324999906],[-71.821709,41.34321399906],[-71.82222,41.34311099906],[-71.822272,41.34310299906],[-71.822371,41.34309699906],[-71.822477,41.34309799906],[-71.822524,41.34310699906],[-71.822563,41.34311999906],[-71.822609,41.34312799906],[-71.822556,41.34301799906],[-71.822538,41.34297199906],[-71.822525,41.34293399906],[-71.822509,41.34287599906],[-71.822495,41.34281499906],[-71.822466,41.34268499906],[-71.822456,41.34262099906],[-71.822433,41.34247999906],[-71.822426,41.34241599906],[-71.822418,41.34235399906],[-71.822418,41.34222799906],[-71.82242,41.34217799906],[-71.822426,41.34213599906],[-71.822441,41.34204499906],[-71.822464,41.34196499906],[-71.822519,41.34182199906],[-71.822594,41.34170899906],[-71.822701,41.34156399906],[-71.822866,41.34135199906],[-71.82299,41.34119399906],[-71.823009,41.34116599906],[-71.823036,41.34112499906],[-71.82309,41.34106399906],[-71.823219,41.34089699906],[-71.823265,41.34085099906],[-71.823276,41.34083799906],[-71.823418,41.34066399906],[-71.823486,41.34059499906],[-71.823669,41.34041199906],[-71.82373,41.34035899906],[-71.823936,41.34019499906],[-71.824196,41.33997699906],[-71.824295,41.33988199906],[-71.824463,41.33971399906],[-71.824493,41.33967199906],[-71.824539,41.33961899906],[-71.824615,41.33950799906],[-71.824707,41.33935199906],[-71.824738,41.33929099906],[-71.824821,41.33904599906],[-71.824837,41.33901599906],[-71.824844,41.33897799906],[-71.824963,41.33844799906],[-71.825027,41.33814999906],[-71.825081,41.33781899906],[-71.825111,41.33762699906],[-71.825134,41.33745999906],[-71.82515,41.33738299906],[-71.825203,41.33717299906],[-71.825256,41.33699399906],[-71.825325,41.33687199906],[-71.825363,41.33681899906],[-71.825394,41.33677699906],[-71.825485,41.33666999906],[-71.825577,41.33657799906],[-71.82563,41.33653299906],[-71.825859,41.33636499906],[-71.826111,41.33616999906],[-71.826302,41.33602499906],[-71.826439,41.33592599906],[-71.826569,41.33583099906],[-71.826767,41.33570099906],[-71.826795,41.33568499906],[-71.826972,41.33558199906],[-71.827262,41.33544899906],[-71.827384,41.33540199906],[-71.827654,41.33530999906],[-71.827783,41.33526099906],[-71.827884,41.33522499906],[-71.82802,41.33518099906],[-71.82842,41.33504599906],[-71.828745,41.33493499906],[-71.829034,41.33484299906],[-71.829686,41.33462999906],[-71.830505,41.33440599906],[-71.830802,41.33431699906],[-71.831177,41.33420099906],[-71.831403,41.33412099906],[-71.831801,41.33393799906],[-71.832048,41.33379699906],[-71.832411,41.33356099906],[-71.832623,41.33341699906],[-71.832748,41.33331599906],[-71.832863,41.33318299906],[-71.832909,41.33310699906],[-71.832954,41.33299599906],[-71.832977,41.33291199906],[-71.832993,41.33280899906],[-71.832993,41.33276699906]]]}}"}, +{"type": "blockgroup", "typeId": 510001, "areaId": 29420, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.893657,41.32650399906],[-71.886779,41.32125999906],[-71.888412,41.30836399906],[-71.889625,41.30391499906],[-71.884273,41.30391499906],[-71.880241,41.30532299906],[-71.870002,41.30889999906],[-71.864294,41.30922099906],[-71.860084,41.30723799906],[-71.860084,41.30584499906],[-71.860514,41.30368699906],[-71.860726,41.30262899906],[-71.858448,41.30203899906],[-71.850701,41.30692699906],[-71.834655,41.31336999906],[-71.821839,41.31662899906],[-71.818883,41.31784799906],[-71.81329,41.31931399906],[-71.812374,41.31939599906],[-71.798737,41.32183699906],[-71.796244,41.32227599906],[-71.780668,41.32502099906],[-71.767445,41.32744599906],[-71.764315,41.32744599906],[-71.762818,41.32706699906],[-71.762802,41.32755699906],[-71.762774,41.32850099906],[-71.762754,41.33001699906],[-71.763023,41.33048499906],[-71.763258,41.33077899906],[-71.763655,41.33129699906],[-71.763837,41.33153299906],[-71.764241,41.33226499906],[-71.764739,41.33296599906],[-71.765292,41.33357699906],[-71.766104,41.33439999906],[-71.766905,41.33523199906],[-71.767413,41.33546999906],[-71.767467,41.33547699906],[-71.767879,41.33553699906],[-71.768129,41.33549899906],[-71.768272,41.33534699906],[-71.768779,41.33488199906],[-71.769357,41.33453699906],[-71.770064,41.33422699906],[-71.770706,41.33403699906],[-71.771564,41.33388799906],[-71.772781,41.33362999906],[-71.773621,41.33336099906],[-71.774814,41.33312499906],[-71.77601,41.33302899906],[-71.776117,41.33302099906],[-71.777495,41.33287599906],[-71.778691,41.33264099906],[-71.783073,41.33124999906],[-71.784692,41.33074899906],[-71.785945,41.33037899906],[-71.787864,41.32990999906],[-71.789132,41.32962799906],[-71.790131,41.32945499906],[-71.791777,41.32924199906],[-71.792919,41.32914499906],[-71.79352,41.32894199906],[-71.794001,41.32879599906],[-71.794547,41.32854499906],[-71.79517,41.32822199906],[-71.795919,41.33229199906],[-71.795914,41.33392299906],[-71.796021,41.33441199906],[-71.79612,41.33477799906],[-71.796227,41.33520899906],[-71.796364,41.33560599906],[-71.796745,41.33657099906],[-71.797127,41.33649199906],[-71.797447,41.33639199906],[-71.797813,41.33624499906],[-71.798008,41.33614899906],[-71.798271,41.33602099906],[-71.798714,41.33579699906],[-71.799057,41.33566399906],[-71.7995,41.33553499906],[-71.800011,41.33539399906],[-71.800468,41.33523099906],[-71.800888,41.33501499906],[-71.801277,41.33477899906],[-71.801727,41.33448999906],[-71.80233,41.33410999906],[-71.802826,41.33383199906],[-71.80336,41.33358299906],[-71.804031,41.33327499906],[-71.804535,41.33306599906],[-71.804725,41.33300599906],[-71.804768,41.33299299906],[-71.805087,41.33290699906],[-71.805703,41.33278199906],[-71.806479,41.33261699906],[-71.80726,41.33245799906],[-71.808029,41.33228699906],[-71.809133,41.33206899906],[-71.809644,41.33200099906],[-71.80996,41.33196599906],[-71.810282,41.33194999906],[-71.810616,41.33194799906],[-71.81106,41.33194599906],[-71.811788,41.33196099906],[-71.812527,41.33195599906],[-71.813076,41.33191899906],[-71.813487,41.33186799906],[-71.813611,41.33184399906],[-71.813786,41.33180599906],[-71.813941,41.33175399906],[-71.814072,41.33169499906],[-71.814184,41.33164099906],[-71.814331,41.33156999906],[-71.814621,41.33138999906],[-71.815277,41.33086799906],[-71.815582,41.33061599906],[-71.816109,41.33016999906],[-71.816508,41.32982299906],[-71.816597,41.32974599906],[-71.817142,41.32931499906],[-71.817238,41.32923899906],[-71.817589,41.32893399906],[-71.817871,41.32872399906],[-71.818107,41.32856299906],[-71.818168,41.32852199906],[-71.81823,41.32847999906],[-71.819252,41.32795299906],[-71.820313,41.32744599906],[-71.820513,41.32736399906],[-71.820641,41.32731199906],[-71.820724,41.32728999906],[-71.821022,41.32719799906],[-71.821144,41.32716399906],[-71.821551,41.32708199906],[-71.821825,41.32704099906],[-71.822059,41.32700599906],[-71.822334,41.32697299906],[-71.822487,41.32695799906],[-71.822823,41.32691199906],[-71.823097,41.32688799906],[-71.823433,41.32685299906],[-71.823819,41.32681799906],[-71.824066,41.32678999906],[-71.824349,41.32678599906],[-71.824569,41.32678399906],[-71.824659,41.32678399906],[-71.824745,41.32678699906],[-71.824831,41.32678899906],[-71.824934,41.32679899906],[-71.825012,41.32681299906],[-71.825079,41.32682599906],[-71.825149,41.32683999906],[-71.825335,41.32689799906],[-71.8254,41.32693199906],[-71.82549,41.32699399906],[-71.825536,41.32702899906],[-71.825561,41.32705599906],[-71.825737,41.32723499906],[-71.82584,41.32736299906],[-71.825943,41.32749999906],[-71.826055,41.32764499906],[-71.826138,41.32774499906],[-71.826216,41.32783199906],[-71.82637,41.32796499906],[-71.826476,41.32804399906],[-71.826826,41.32822299906],[-71.827013,41.32829899906],[-71.827188,41.32834599906],[-71.827328,41.32837399906],[-71.827526,41.32839099906],[-71.828039,41.32840899906],[-71.82819,41.32841299906],[-71.828497,41.32842599906],[-71.828771,41.32843499906],[-71.828968,41.32844499906],[-71.829102,41.32845599906],[-71.829308,41.32844799906],[-71.829575,41.32845799906],[-71.829881,41.32848299906],[-71.830138,41.32853299906],[-71.830489,41.32860999906],[-71.830803,41.32869699906],[-71.830989,41.32875299906],[-71.831384,41.32890899906],[-71.831567,41.32903799906],[-71.831648,41.32914699906],[-71.831693,41.32922399906],[-71.831715,41.32928299906],[-71.831756,41.32940499906],[-71.831696,41.32949799906],[-71.831635,41.32962399906],[-71.831612,41.32968899906],[-71.831581,41.32982599906],[-71.831573,41.32989499906],[-71.831551,41.33008999906],[-71.831543,41.33019599906],[-71.831543,41.33025399906],[-71.831558,41.33049399906],[-71.831566,41.33060799906],[-71.831589,41.33073799906],[-71.831657,41.33102799906],[-71.831673,41.33107399906],[-71.831772,41.33129899906],[-71.831833,41.33140899906],[-71.831924,41.33152799906],[-71.831993,41.33160799906],[-71.8321,41.33172199906],[-71.832329,41.33192799906],[-71.832443,41.33202399906],[-71.832649,41.33217999906],[-71.832718,41.33223699906],[-71.832802,41.33231399906],[-71.832878,41.33240899906],[-71.832947,41.33254999906],[-71.832962,41.33259199906],[-71.83297,41.33263799906],[-71.832985,41.33267999906],[-71.832985,41.33272199906],[-71.832993,41.33276699906],[-71.832993,41.33280899906],[-71.832977,41.33291199906],[-71.832954,41.33299599906],[-71.832909,41.33310699906],[-71.832863,41.33318299906],[-71.832748,41.33331599906],[-71.832623,41.33341699906],[-71.832411,41.33356099906],[-71.832048,41.33379699906],[-71.831801,41.33393799906],[-71.831403,41.33412099906],[-71.831177,41.33420099906],[-71.830802,41.33431699906],[-71.830505,41.33440599906],[-71.829686,41.33462999906],[-71.829034,41.33484299906],[-71.828745,41.33493499906],[-71.82842,41.33504599906],[-71.82802,41.33518099906],[-71.827884,41.33522499906],[-71.827783,41.33526099906],[-71.827654,41.33530999906],[-71.827384,41.33540199906],[-71.827262,41.33544899906],[-71.826972,41.33558199906],[-71.826795,41.33568499906],[-71.826758,41.33609899906],[-71.826777,41.33615899906],[-71.82699,41.33701499906],[-71.827334,41.33777299906],[-71.82799,41.33881099906],[-71.82892,41.33951999906],[-71.830046,41.34057199906],[-71.830627,41.34125799906],[-71.83728,41.33506799906],[-71.844611,41.33072999906],[-71.847709,41.32960399906],[-71.851923,41.32466399906],[-71.857458,41.32078899906],[-71.859896,41.32035799906],[-71.866538,41.31918499906],[-71.874513,41.32186799906],[-71.882131,41.32567299906],[-71.889292,41.32897499906],[-71.891265,41.32971399906],[-71.891344,41.32977199906],[-71.891467,41.32983399906],[-71.891591,41.32987699906],[-71.891859,41.33003599906],[-71.892067,41.33007499906],[-71.892356,41.32921799906],[-71.893105,41.32737299906],[-71.893657,41.32650399906]]]}}"}, +{"type": "blockgroup", "typeId": 510002, "areaId": 29421, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.796745,41.33657099906],[-71.796364,41.33560599906],[-71.796227,41.33520899906],[-71.79612,41.33477799906],[-71.796021,41.33441199906],[-71.795914,41.33392299906],[-71.795919,41.33229199906],[-71.79517,41.32822199906],[-71.794547,41.32854499906],[-71.794001,41.32879599906],[-71.79352,41.32894199906],[-71.792919,41.32914499906],[-71.791777,41.32924199906],[-71.790131,41.32945499906],[-71.789132,41.32962799906],[-71.787864,41.32990999906],[-71.785945,41.33037899906],[-71.784692,41.33074899906],[-71.783073,41.33124999906],[-71.778691,41.33264099906],[-71.777495,41.33287599906],[-71.776117,41.33302099906],[-71.77601,41.33302899906],[-71.774814,41.33312499906],[-71.773621,41.33336099906],[-71.772781,41.33362999906],[-71.771564,41.33388799906],[-71.770706,41.33403699906],[-71.770064,41.33422699906],[-71.769357,41.33453699906],[-71.768779,41.33488199906],[-71.768272,41.33534699906],[-71.768129,41.33549899906],[-71.767879,41.33553699906],[-71.767467,41.33547699906],[-71.767413,41.33546999906],[-71.766905,41.33523199906],[-71.766104,41.33439999906],[-71.765292,41.33357699906],[-71.764739,41.33296599906],[-71.764241,41.33226499906],[-71.763837,41.33153299906],[-71.763655,41.33129699906],[-71.763258,41.33077899906],[-71.763023,41.33048499906],[-71.762754,41.33001699906],[-71.762774,41.32850099906],[-71.762802,41.32755699906],[-71.762818,41.32706699906],[-71.762755,41.32706699906],[-71.759253,41.32669799906],[-71.755094,41.32519999906],[-71.751784,41.32421199906],[-71.747837,41.32615599906],[-71.739901,41.32854599906],[-71.73014,41.33045799906],[-71.729829,41.33055699906],[-71.729879,41.33167699906],[-71.729904,41.33219999906],[-71.729927,41.33271699906],[-71.729955,41.33330899906],[-71.729956,41.33332599906],[-71.730388,41.34279199906],[-71.730365,41.34345799906],[-71.730343,41.34413499906],[-71.730274,41.34571999906],[-71.7302,41.34743899906],[-71.730133,41.34900899906],[-71.730134,41.34936299906],[-71.730103,41.35015499906],[-71.730106,41.35165799906],[-71.730452,41.35158999906],[-71.731551,41.35136899906],[-71.732063,41.35126499906],[-71.733579,41.35095999906],[-71.734859,41.35070799906],[-71.735205,41.35063899906],[-71.735725,41.35053599906],[-71.736092,41.35046799906],[-71.73658,41.35037599906],[-71.736883,41.35031099906],[-71.737077,41.35026299906],[-71.737404,41.35017899906],[-71.737711,41.35007899906],[-71.737889,41.35001499906],[-71.738016,41.34996799906],[-71.738176,41.34990299906],[-71.738345,41.34982899906],[-71.738603,41.34971099906],[-71.738781,41.34962599906],[-71.738922,41.34955599906],[-71.739662,41.34919599906],[-71.739836,41.34911299906],[-71.740776,41.34865399906],[-71.741248,41.34844799906],[-71.741612,41.34828599906],[-71.742027,41.34812399906],[-71.742509,41.34793199906],[-71.742656,41.34788699906],[-71.7428,41.34784399906],[-71.742966,41.34781099906],[-71.743063,41.34778799906],[-71.743557,41.34762599906],[-71.743756,41.34754099906],[-71.743877,41.34745899906],[-71.744031,41.34736199906],[-71.744107,41.34734199906],[-71.744171,41.34732099906],[-71.744186,41.34730899906],[-71.744299,41.34724499906],[-71.744363,41.34720699906],[-71.744805,41.34701699906],[-71.745122,41.34687999906],[-71.745547,41.34668399906],[-71.746132,41.34640899906],[-71.746567,41.34620699906],[-71.747147,41.34591299906],[-71.747558,41.34570399906],[-71.748394,41.34529999906],[-71.748908,41.34503799906],[-71.750012,41.34452599906],[-71.750258,41.34439199906],[-71.750423,41.34428599906],[-71.750661,41.34410999906],[-71.750679,41.34409699906],[-71.750745,41.34404299906],[-71.750903,41.34392199906],[-71.751065,41.34377599906],[-71.751465,41.34339299906],[-71.751637,41.34322299906],[-71.75177,41.34310499906],[-71.751885,41.34301999906],[-71.751986,41.34294599906],[-71.752014,41.34292599906],[-71.752174,41.34282699906],[-71.752289,41.34276199906],[-71.752451,41.34269899906],[-71.75268,41.34262499906],[-71.752857,41.34257199906],[-71.753091,41.34251399906],[-71.753333,41.34246899906],[-71.753618,41.34242799906],[-71.75408,41.34235899906],[-71.755806,41.34210699906],[-71.756056,41.34207299906],[-71.756254,41.34204599906],[-71.756434,41.34202499906],[-71.756616,41.34201299906],[-71.756823,41.34200299906],[-71.757303,41.34198599906],[-71.757791,41.34198099906],[-71.758078,41.34197899906],[-71.759351,41.34196699906],[-71.759873,41.34194499906],[-71.760106,41.34192599906],[-71.76046,41.34186399906],[-71.760666,41.34180799906],[-71.760969,41.34171299906],[-71.761051,41.34168799906],[-71.761892,41.34135299906],[-71.762211,41.34125399906],[-71.762393,41.34121199906],[-71.762575,41.34118099906],[-71.762727,41.34116099906],[-71.762893,41.34114999906],[-71.763105,41.34114199906],[-71.763295,41.34114499906],[-71.763492,41.34115999906],[-71.763697,41.34118599906],[-71.76391,41.34121999906],[-71.764107,41.34126899906],[-71.764274,41.34131699906],[-71.764448,41.34138199906],[-71.764702,41.34149999906],[-71.764999,41.34163699906],[-71.765222,41.34172599906],[-71.765528,41.34182099906],[-71.765915,41.34189999906],[-71.766245,41.34194599906],[-71.766644,41.34196699906],[-71.768486,41.34204899906],[-71.769025,41.34207199906],[-71.769554,41.34210199906],[-71.769982,41.34209099906],[-71.770373,41.34206999906],[-71.770711,41.34204699906],[-71.771017,41.34201799906],[-71.771278,41.34198099906],[-71.772698,41.34175299906],[-71.773093,41.34169699906],[-71.773281,41.34166299906],[-71.77408,41.34152199906],[-71.775276,41.34133899906],[-71.776161,41.34117899906],[-71.776402,41.34114499906],[-71.776497,41.34113299906],[-71.776833,41.34109899906],[-71.777175,41.34109399906],[-71.777451,41.34111199906],[-71.777747,41.34115199906],[-71.778003,41.34119499906],[-71.778643,41.34133999906],[-71.778784,41.34137099906],[-71.778915,41.34139699906],[-71.779036,41.34141199906],[-71.779208,41.34141899906],[-71.779439,41.34140699906],[-71.779739,41.34137099906],[-71.78006,41.34130499906],[-71.780388,41.34122799906],[-71.781258,41.34100699906],[-71.781617,41.34092599906],[-71.781662,41.34091599906],[-71.782859,41.34060999906],[-71.782992,41.34057699906],[-71.783031,41.34056699906],[-71.783271,41.34050899906],[-71.78344,41.34046899906],[-71.783769,41.34037999906],[-71.784203,41.34026299906],[-71.784477,41.34019499906],[-71.784683,41.34012199906],[-71.78492,41.34003099906],[-71.785088,41.33995399906],[-71.78537,41.33979399906],[-71.785545,41.33968399906],[-71.785637,41.33961899906],[-71.785767,41.33951199906],[-71.785934,41.33936299906],[-71.786326,41.33900299906],[-71.786535,41.33881199906],[-71.786827,41.33861499906],[-71.787209,41.33844799906],[-71.787338,41.33840199906],[-71.787621,41.33833699906],[-71.787971,41.33827999906],[-71.788834,41.33812299906],[-71.78907,41.33809299906],[-71.789725,41.33796799906],[-71.790573,41.33780699906],[-71.790932,41.33773399906],[-71.791611,41.33760099906],[-71.792656,41.33739099906],[-71.793273,41.33729399906],[-71.793547,41.33723799906],[-71.794136,41.33713199906],[-71.794239,41.33710599906],[-71.795172,41.33691299906],[-71.795963,41.33675899906],[-71.796745,41.33657099906]]]}}"}, +{"type": "blockgroup", "typeId": 511011, "areaId": 29422, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.731252,41.39851399906],[-71.731229,41.39825199906],[-71.731194,41.39774599906],[-71.731004,41.39446399906],[-71.730966,41.39372199906],[-71.730945,41.39333199906],[-71.730927,41.39221999906],[-71.730883,41.39030199906],[-71.730804,41.38753099906],[-71.730796,41.38713999906],[-71.73079,41.38694899906],[-71.730777,41.38647099906],[-71.730717,41.38450499906],[-71.730551,41.37876899906],[-71.730546,41.37867799906],[-71.730415,41.37412699906],[-71.730411,41.37389899906],[-71.730391,41.37320299906],[-71.730383,41.37294399906],[-71.730379,41.37281999906],[-71.730378,41.37276799906],[-71.730353,41.37207499906],[-71.73034,41.37170699906],[-71.730333,41.37149999906],[-71.730331,41.37143999906],[-71.730315,41.36936099906],[-71.730314,41.36867899906],[-71.730216,41.36200099906],[-71.730111,41.35402099906],[-71.730107,41.35325399906],[-71.730103,41.35198699906],[-71.730106,41.35175599906],[-71.730106,41.35165799906],[-71.729958,41.35168799906],[-71.72982,41.35171899906],[-71.728857,41.35193999906],[-71.728156,41.35208599906],[-71.727295,41.35226099906],[-71.726547,41.35240199906],[-71.726493,41.35241399906],[-71.725485,41.35263099906],[-71.725305,41.35267599906],[-71.724617,41.35283499906],[-71.7244,41.35288999906],[-71.72426,41.35292799906],[-71.724007,41.35300099906],[-71.723732,41.35309599906],[-71.723633,41.35313799906],[-71.72332,41.35325199906],[-71.722824,41.35345799906],[-71.722542,41.35358399906],[-71.722031,41.35384399906],[-71.721741,41.35399999906],[-71.721405,41.35419799906],[-71.721069,41.35437799906],[-71.720663,41.35457099906],[-71.720293,41.35470999906],[-71.719977,41.35480999906],[-71.719583,41.35491399906],[-71.7192,41.35498399906],[-71.719022,41.35501599906],[-71.718855,41.35504499906],[-71.718768,41.35505599906],[-71.718622,41.35507499906],[-71.718316,41.35510799906],[-71.718145,41.35511799906],[-71.717834,41.35514199906],[-71.717684,41.35513999906],[-71.717611,41.35514499906],[-71.71738,41.35513999906],[-71.71719,41.35513599906],[-71.717009,41.35512899906],[-71.716824,41.35511099906],[-71.716491,41.35506299906],[-71.716094,41.35500299906],[-71.715897,41.35497699906],[-71.715858,41.35496899906],[-71.715401,41.35492299906],[-71.714981,41.35489699906],[-71.714539,41.35488099906],[-71.714021,41.35488299906],[-71.713646,41.35489299906],[-71.713342,41.35491099906],[-71.713203,41.35491899906],[-71.712563,41.35497999906],[-71.712328,41.35501399906],[-71.712,41.35506599906],[-71.711944,41.35507499906],[-71.711253,41.35519999906],[-71.71072,41.35530599906],[-71.710487,41.35535399906],[-71.709094,41.35562799906],[-71.708585,41.35572899906],[-71.706951,41.35606599906],[-71.706604,41.35612499906],[-71.705056,41.35643099906],[-71.704697,41.35650299906],[-71.704388,41.35656299906],[-71.703308,41.35677299906],[-71.70191,41.35705199906],[-71.701569,41.35712099906],[-71.701241,41.35719299906],[-71.700836,41.35728799906],[-71.700798,41.35729999906],[-71.700272,41.35744099906],[-71.699448,41.35767399906],[-71.69883,41.35783799906],[-71.698212,41.35800899906],[-71.697502,41.35819999906],[-71.696915,41.35837299906],[-71.696548,41.35846299906],[-71.696243,41.35854299906],[-71.695686,41.35870399906],[-71.695221,41.35882999906],[-71.694794,41.35895199906],[-71.694229,41.35913799906],[-71.693863,41.35927999906],[-71.693489,41.35943199906],[-71.69326,41.35953099906],[-71.692635,41.35982499906],[-71.691399,41.36042399906],[-71.6912,41.36051599906],[-71.691167,41.36053199906],[-71.691081,41.36057399906],[-71.690763,41.36072799906],[-71.689926,41.36113399906],[-71.687614,41.36224399906],[-71.687035,41.36251399906],[-71.686478,41.36280099906],[-71.685097,41.36356699906],[-71.684631,41.36384599906],[-71.683823,41.36430399906],[-71.68364,41.36441399906],[-71.682785,41.36489899906],[-71.682645,41.36497999906],[-71.681854,41.36543699906],[-71.681404,41.36568799906],[-71.680954,41.36595199906],[-71.679695,41.36666899906],[-71.679109,41.36700999906],[-71.67873,41.36722999906],[-71.678423,41.36740399906],[-71.678012,41.36763199906],[-71.67736,41.36797899906],[-71.676756,41.36829199906],[-71.676663,41.36833999906],[-71.676392,41.36848099906],[-71.676151,41.36860299906],[-71.675934,41.36871299906],[-71.675604,41.36888499906],[-71.675179,41.36910599906],[-71.675156,41.36911399906],[-71.674515,41.36944199906],[-71.674011,41.36971999906],[-71.673508,41.37002599906],[-71.673233,41.37021599906],[-71.673012,41.37036899906],[-71.672737,41.37059799906],[-71.672502,41.37077699906],[-71.672119,41.37115899906],[-71.671938,41.37134499906],[-71.671722,41.37156699906],[-71.671387,41.37197899906],[-71.671302,41.37210099906],[-71.671097,41.37239499906],[-71.67086,41.37275699906],[-71.670654,41.37310799906],[-71.670471,41.37349299906],[-71.670335,41.37375799906],[-71.669693,41.37509899906],[-71.669189,41.37617899906],[-71.668594,41.37740199906],[-71.668449,41.37770099906],[-71.667946,41.37875399906],[-71.667717,41.37918099906],[-71.667305,41.37987899906],[-71.667084,41.38019199906],[-71.666985,41.38032499906],[-71.666748,41.38060799906],[-71.666611,41.38075299906],[-71.666107,41.38129799906],[-71.665718,41.38167199906],[-71.665321,41.38199599906],[-71.664726,41.38246499906],[-71.664352,41.38273199906],[-71.664009,41.38295399906],[-71.663521,41.38325099906],[-71.66304,41.38351399906],[-71.662529,41.38376599906],[-71.662094,41.38395699906],[-71.661705,41.38411699906],[-71.661524,41.38418499906],[-71.661778,41.38430899906],[-71.6618,41.38431899906],[-71.66161,41.38439099906],[-71.661328,41.38449999906],[-71.661217,41.38455099906],[-71.661117,41.38459999906],[-71.661079,41.38461299906],[-71.660873,41.38469699906],[-71.66082,41.38472399906],[-71.660728,41.38478499906],[-71.660675,41.38484199906],[-71.660629,41.38494099906],[-71.660629,41.38496799906],[-71.660645,41.38503299906],[-71.66066,41.38505899906],[-71.660713,41.38511999906],[-71.660789,41.38517799906],[-71.660927,41.38523899906],[-71.661278,41.38537599906],[-71.661316,41.38539099906],[-71.66153,41.38544499906],[-71.661682,41.38546399906],[-71.661835,41.38547499906],[-71.662265,41.38548999906],[-71.662552,41.38548999906],[-71.663046,41.38549799906],[-71.663337,41.38552099906],[-71.663499,41.38553599906],[-71.66426,41.38560999906],[-71.664841,41.38566599906],[-71.665955,41.38573799906],[-71.666374,41.38579599906],[-71.666634,41.38584499906],[-71.667908,41.38605099906],[-71.667938,41.38605899906],[-71.668137,41.38608899906],[-71.668175,41.38610499906],[-71.668327,41.38615799906],[-71.669363,41.38664699906],[-71.669579,41.38674899906],[-71.669937,41.38691299906],[-71.670494,41.38715699906],[-71.670593,41.38719199906],[-71.670723,41.38723799906],[-71.670822,41.38726399906],[-71.670937,41.38727999906],[-71.671059,41.38727199906],[-71.671158,41.38725699906],[-71.671371,41.38721099906],[-71.671654,41.38713799906],[-71.671814,41.38713099906],[-71.672142,41.38714999906],[-71.672356,41.38715699906],[-71.672531,41.38715399906],[-71.672867,41.38713099906],[-71.672943,41.38713499906],[-71.67308,41.38713499906],[-71.673294,41.38714999906],[-71.673416,41.38718399906],[-71.673546,41.38722599906],[-71.67395,41.38742399906],[-71.674232,41.38758499906],[-71.674475,41.38773199906],[-71.674622,41.38782099906],[-71.674942,41.38800399906],[-71.675148,41.38807699906],[-71.675224,41.38814899906],[-71.67527,41.38818399906],[-71.675491,41.38832899906],[-71.675774,41.38850399906],[-71.676154,41.38870799906],[-71.676178,41.38872099906],[-71.676514,41.38887399906],[-71.676834,41.38903399906],[-71.676845,41.38903999906],[-71.67691,41.38907999906],[-71.677116,41.38921699906],[-71.677345,41.38938499906],[-71.677399,41.38941599906],[-71.677544,41.38954499906],[-71.67779,41.38974799906],[-71.677849,41.38979699906],[-71.678078,41.39000299906],[-71.678143,41.39005799906],[-71.6782,41.39010599906],[-71.678253,41.39015999906],[-71.678314,41.39020899906],[-71.678444,41.39033499906],[-71.678566,41.39048399906],[-71.678658,41.39060999906],[-71.678795,41.39084999906],[-71.678871,41.39096799906],[-71.67907,41.39129999906],[-71.679161,41.39146799906],[-71.679245,41.39160499906],[-71.67933,41.39176199906],[-71.679398,41.39188799906],[-71.679451,41.39200199906],[-71.679489,41.39207199906],[-71.679573,41.39222699906],[-71.67971,41.39251699906],[-71.679825,41.39270399906],[-71.679924,41.39282999906],[-71.680031,41.39294799906],[-71.680115,41.39305099906],[-71.680153,41.39309699906],[-71.680206,41.39316599906],[-71.680275,41.39326899906],[-71.680305,41.39336799906],[-71.680313,41.39341699906],[-71.680313,41.39358099906],[-71.680305,41.39362699906],[-71.680305,41.39367299906],[-71.68029,41.39372599906],[-71.680289,41.39373499906],[-71.680275,41.39382899906],[-71.680229,41.39399699906],[-71.6801,41.39434199906],[-71.680017,41.39454399906],[-71.679963,41.39471299906],[-71.67984,41.39511199906],[-71.679752,41.39540299906],[-71.679716,41.39559799906],[-71.67971,41.39563399906],[-71.67971,41.39568299906],[-71.679703,41.39572899906],[-71.679703,41.39586599906],[-71.679733,41.39603399906],[-71.679794,41.39620999906],[-71.67984,41.39630499906],[-71.679855,41.39635499906],[-71.679916,41.39647299906],[-71.680054,41.39681199906],[-71.680084,41.39692299906],[-71.680107,41.39704099906],[-71.680168,41.39727399906],[-71.680214,41.39749099906],[-71.680214,41.39766699906],[-71.680199,41.39782299906],[-71.680153,41.39797599906],[-71.680132,41.39802799906],[-71.680092,41.39812499906],[-71.680002,41.39829899906],[-71.679864,41.39853499906],[-71.679798,41.39865999906],[-71.679761,41.39878799906],[-71.679744,41.39885699906],[-71.679741,41.39886899906],[-71.679726,41.39895599906],[-71.679718,41.39904399906],[-71.679718,41.39913199906],[-71.679688,41.39938699906],[-71.679665,41.39967299906],[-71.679634,41.40026899906],[-71.679634,41.40040999906],[-71.679626,41.40058099906],[-71.679611,41.40075199906],[-71.679626,41.40101599906],[-71.679657,41.40119899906],[-71.679695,41.40136699906],[-71.679749,41.40153099906],[-71.679763,41.40157799906],[-71.679832,41.40181699906],[-71.679878,41.40193899906],[-71.679955,41.40218399906],[-71.679985,41.40230599906],[-71.680099,41.40265299906],[-71.68013,41.40276699906],[-71.680161,41.40285899906],[-71.680183,41.40294999906],[-71.680199,41.40304199906],[-71.680199,41.40316399906],[-71.680191,41.40322499906],[-71.680031,41.40370899906],[-71.679893,41.40402199906],[-71.679771,41.40431999906],[-71.679718,41.40446899906],[-71.679604,41.40482699906],[-71.679558,41.40495299906],[-71.679451,41.40532299906],[-71.679382,41.40565499906],[-71.679382,41.40568199906],[-71.679367,41.40575399906],[-71.679344,41.40596399906],[-71.679329,41.40618099906],[-71.679283,41.40652499906],[-71.679282,41.40653499906],[-71.679268,41.40674199906],[-71.679268,41.40693299906],[-71.679283,41.40708899906],[-71.679298,41.40715799906],[-71.679359,41.40729099906],[-71.679372,41.40731299906],[-71.679381,41.40732899906],[-71.679452,41.40740599906],[-71.679651,41.40766899906],[-71.679663,41.40768699906],[-71.679854,41.40797599906],[-71.679906,41.40806899906],[-71.679928,41.40811699906],[-71.679977,41.40824499906],[-71.680023,41.40842399906],[-71.680054,41.40850099906],[-71.680092,41.40857699906],[-71.680122,41.40865299906],[-71.680199,41.40878299906],[-71.680298,41.40889399906],[-71.680542,41.40910299906],[-71.680603,41.40916399906],[-71.680901,41.40939699906],[-71.681,41.40946999906],[-71.68119,41.40958399906],[-71.681381,41.40967199906],[-71.68158,41.40975599906],[-71.681915,41.40988899906],[-71.68203,41.40993899906],[-71.682228,41.41003799906],[-71.682442,41.41013299906],[-71.682655,41.41022099906],[-71.683281,41.41044999906],[-71.68364,41.41054899906],[-71.683815,41.41057199906],[-71.683975,41.41057599906],[-71.684189,41.41056099906],[-71.684509,41.41051499906],[-71.685249,41.41039999906],[-71.685684,41.41034299906],[-71.68586,41.41032399906],[-71.686119,41.41028199906],[-71.686211,41.41025899906],[-71.686394,41.41020199906],[-71.686501,41.41016399906],[-71.686615,41.41012999906],[-71.686951,41.41000699906],[-71.687073,41.40996599906],[-71.687348,41.40988199906],[-71.687511,41.40983299906],[-71.687668,41.41010999906],[-71.687729,41.41025499906],[-71.687767,41.41032799906],[-71.687836,41.41042299906],[-71.68792,41.41051899906],[-71.687973,41.41056399906],[-71.688019,41.41061399906],[-71.688217,41.41077799906],[-71.688362,41.41087299906],[-71.688622,41.41103399906],[-71.688698,41.41108699906],[-71.688778,41.41115699906],[-71.688805,41.41118599906],[-71.688858,41.41127799906],[-71.688904,41.41138499906],[-71.688904,41.41147999906],[-71.688911,41.41152999906],[-71.688911,41.41171599906],[-71.688835,41.41216299906],[-71.688797,41.41260099906],[-71.688782,41.41268899906],[-71.688774,41.41277699906],[-71.688759,41.41286099906],[-71.688751,41.41294899906],[-71.688736,41.41303299906],[-71.688667,41.41327999906],[-71.688606,41.41345199906],[-71.688568,41.41353599906],[-71.688538,41.41362399906],[-71.688499,41.41371199906],[-71.688469,41.41379899906],[-71.688446,41.41388699906],[-71.688416,41.41406299906],[-71.688328,41.41440599906],[-71.688156,41.41522199906],[-71.688156,41.41535899906],[-71.688171,41.41547399906],[-71.68821,41.41563799906],[-71.688331,41.41598899906],[-71.688348,41.41603899906],[-71.688362,41.41607999906],[-71.6884,41.41616799906],[-71.688431,41.41625599906],[-71.688469,41.41633999906],[-71.688499,41.41642399906],[-71.688568,41.41657599906],[-71.688591,41.41664499906],[-71.68861,41.41668599906],[-71.688611,41.41669499906],[-71.68869,41.41681299906],[-71.68882,41.41697699906],[-71.688927,41.41708799906],[-71.689117,41.41725499906],[-71.689293,41.41744199906],[-71.689457,41.41762999906],[-71.689471,41.41764599906],[-71.689606,41.41780099906],[-71.689726,41.41795199906],[-71.689873,41.41813699906],[-71.689919,41.41818599906],[-71.689957,41.41823599906],[-71.690201,41.41850999906],[-71.690422,41.41873199906],[-71.690613,41.41889599906],[-71.690979,41.41918599906],[-71.691162,41.41930799906],[-71.691315,41.41942199906],[-71.691444,41.41952499906],[-71.691879,41.41990699906],[-71.691963,41.41999099906],[-71.692055,41.42007399906],[-71.692604,41.42059699906],[-71.692665,41.42066599906],[-71.692734,41.42073099906],[-71.692894,41.42091399906],[-71.692947,41.42099399906],[-71.692986,41.42107399906],[-71.6931,41.42127999906],[-71.693161,41.42140199906],[-71.69323,41.42152399906],[-71.693336,41.42168799906],[-71.693451,41.42184799906],[-71.693558,41.42200899906],[-71.693657,41.42216899906],[-71.693748,41.42232899906],[-71.693916,41.42259999906],[-71.694069,41.42282499906],[-71.694481,41.42338599906],[-71.694611,41.42357299906],[-71.69503,41.42422499906],[-71.695076,41.42434699906],[-71.695076,41.42450299906],[-71.695068,41.42455299906],[-71.695068,41.42498399906],[-71.695061,41.42507899906],[-71.695061,41.42525699906],[-71.695064,41.42558099906],[-71.695074,41.42580999906],[-71.695077,41.42589299906],[-71.695082,41.42598599906],[-71.695084,41.42609499906],[-71.695084,41.42626199906],[-71.695091,41.42636499906],[-71.695091,41.42646799906],[-71.695099,41.42657099906],[-71.695099,41.42670099906],[-71.695091,41.42676499906],[-71.695061,41.42686799906],[-71.695038,41.42691799906],[-71.695,41.42697499906],[-71.694938,41.42704599906],[-71.694855,41.42713899906],[-71.694787,41.42720499906],[-71.694709,41.42728099906],[-71.694634,41.42734799906],[-71.694591,41.42739099906],[-71.694557,41.42742699906],[-71.694506,41.42748499906],[-71.694419,41.42759299906],[-71.694399,41.42762099906],[-71.694364,41.42767799906],[-71.694333,41.42772599906],[-71.694298,41.42777699906],[-71.694259,41.42784799906],[-71.694216,41.42794899906],[-71.694192,41.42801199906],[-71.694161,41.42811399906],[-71.694119,41.42828199906],[-71.694102,41.42835899906],[-71.694066,41.42853699906],[-71.694036,41.42872299906],[-71.694021,41.42884099906],[-71.694,41.42895099906],[-71.693977,41.42902799906],[-71.693962,41.42910399906],[-71.693932,41.42919199906],[-71.693909,41.42927899906],[-71.693787,41.42964199906],[-71.69371,41.42984399906],[-71.693626,41.43003499906],[-71.693596,41.43012199906],[-71.69352,41.43029399906],[-71.693459,41.43046599906],[-71.693419,41.43054899906],[-71.69339,41.43062999906],[-71.693359,41.43073999906],[-71.693344,41.43078599906],[-71.693329,41.43093499906],[-71.693314,41.43101099906],[-71.693314,41.43123599906],[-71.693329,41.43131299906],[-71.693375,41.43147699906],[-71.693413,41.43155699906],[-71.693443,41.43164099906],[-71.693626,41.43197999906],[-71.693893,41.43248399906],[-71.69407,41.43279099906],[-71.694122,41.43287999906],[-71.694152,41.43293999906],[-71.694202,41.43290999906],[-71.694296,41.43288699906],[-71.694374,41.43288099906],[-71.694445,41.43291199906],[-71.694512,41.43294899906],[-71.694575,41.43296199906],[-71.694664,41.43291599906],[-71.694675,41.43284999906],[-71.694671,41.43279099906],[-71.694719,41.43274599906],[-71.694797,41.43272099906],[-71.694919,41.43269299906],[-71.694992,41.43268499906],[-71.695069,41.43268199906],[-71.695235,41.43268299906],[-71.695314,41.43268799906],[-71.695529,41.43271899906],[-71.695649,41.43274299906],[-71.695754,41.43277899906],[-71.695858,41.43282199906],[-71.695838,41.43284599906],[-71.695762,41.43286699906],[-71.695672,41.43287399906],[-71.695577,41.43285399906],[-71.695461,41.43283899906],[-71.695141,41.43282899906],[-71.695047,41.43284999906],[-71.695032,41.43287599906],[-71.695049,41.43289999906],[-71.695159,41.43291299906],[-71.695414,41.43293199906],[-71.695588,41.43295999906],[-71.695667,41.43296599906],[-71.695777,41.43298899906],[-71.695895,41.43302199906],[-71.696007,41.43303099906],[-71.69605,41.43301199906],[-71.696078,41.43297899906],[-71.696094,41.43292599906],[-71.696155,41.43291599906],[-71.696257,41.43293299906],[-71.696387,41.43296299906],[-71.696624,41.43298799906],[-71.696698,41.43299199906],[-71.69684,41.43299199906],[-71.696913,41.43298699906],[-71.696988,41.43297399906],[-71.69706,41.43295299906],[-71.697259,41.43287599906],[-71.697681,41.43273499906],[-71.697882,41.43265899906],[-71.698083,41.43259599906],[-71.698209,41.43255099906],[-71.698386,41.43246499906],[-71.698558,41.43234499906],[-71.698669,41.43227699906],[-71.698873,41.43216399906],[-71.698975,41.43209599906],[-71.69908,41.43202899906],[-71.699289,41.43190699906],[-71.69938,41.43184599906],[-71.699459,41.43177499906],[-71.699593,41.43160799906],[-71.699655,41.43152099906],[-71.699711,41.43143199906],[-71.699755,41.43134399906],[-71.699848,41.43102099906],[-71.699871,41.43092299906],[-71.69986,41.43082499906],[-71.699819,41.43073299906],[-71.699737,41.43059199906],[-71.699718,41.43053599906],[-71.699726,41.43046099906],[-71.699728,41.43044099906],[-71.699735,41.43043099906],[-71.699778,41.43036799906],[-71.699849,41.43034299906],[-71.699916,41.43036199906],[-71.699969,41.43041599906],[-71.700019,41.43047599906],[-71.70006,41.43054799906],[-71.700121,41.43061299906],[-71.700205,41.43067199906],[-71.700254,41.43073399906],[-71.700238,41.43075999906],[-71.700236,41.43079299906],[-71.700281,41.43084899906],[-71.700371,41.43087599906],[-71.700613,41.43088399906],[-71.700738,41.43087199906],[-71.700941,41.43081599906],[-71.701182,41.43073499906],[-71.701262,41.43069299906],[-71.701321,41.43067299906],[-71.701384,41.43064599906],[-71.701428,41.43057399906],[-71.701438,41.43050299906],[-71.701477,41.43042099906],[-71.701618,41.43038799906],[-71.701716,41.43039799906],[-71.701802,41.43043599906],[-71.701881,41.43048299906],[-71.701946,41.43054999906],[-71.702006,41.43062899906],[-71.702093,41.43077099906],[-71.702116,41.43082499906],[-71.702133,41.43092899906],[-71.702109,41.43101199906],[-71.702073,41.43107299906],[-71.702005,41.43112899906],[-71.70196,41.43117299906],[-71.70193,41.43123899906],[-71.701903,41.43131299906],[-71.70188,41.43141099906],[-71.701868,41.43168299906],[-71.701841,41.43172299906],[-71.701788,41.43168999906],[-71.701754,41.43162799906],[-71.701726,41.43146599906],[-71.701728,41.43121499906],[-71.70175,41.43112599906],[-71.701789,41.43103599906],[-71.701818,41.43094499906],[-71.701795,41.43087099906],[-71.701765,41.43085799906],[-71.701731,41.43086399906],[-71.701671,41.43090199906],[-71.701636,41.43095699906],[-71.701618,41.43111899906],[-71.701593,41.43120399906],[-71.701556,41.43129099906],[-71.701507,41.43134299906],[-71.701424,41.43133299906],[-71.701342,41.43131499906],[-71.701305,41.43133799906],[-71.701318,41.43140599906],[-71.701392,41.43153599906],[-71.701429,41.43161199906],[-71.701532,41.43176199906],[-71.701655,41.43188199906],[-71.701713,41.43194599906],[-71.701762,41.43200999906],[-71.701839,41.43214499906],[-71.701988,41.43228399906],[-71.702055,41.43232999906],[-71.702141,41.43235499906],[-71.70223,41.43235499906],[-71.702281,41.43232299906],[-71.702295,41.43226599906],[-71.702297,41.43220599906],[-71.702414,41.43206499906],[-71.702527,41.43200799906],[-71.702686,41.43195299906],[-71.70275,41.43191899906],[-71.702873,41.43181899906],[-71.702936,41.43177399906],[-71.703012,41.43174599906],[-71.703095,41.43173799906],[-71.703173,41.43175099906],[-71.703245,41.43177899906],[-71.70331,41.43181899906],[-71.703424,41.43191699906],[-71.703492,41.43198899906],[-71.70342,41.43206499906],[-71.703325,41.43205699906],[-71.703208,41.43202499906],[-71.703078,41.43199599906],[-71.703005,41.43200799906],[-71.703003,41.43207699906],[-71.703045,41.43212199906],[-71.70312,41.43217599906],[-71.703209,41.43224799906],[-71.703311,41.43231599906],[-71.70342,41.43237699906],[-71.703487,41.43242499906],[-71.703562,41.43245599906],[-71.703661,41.43248499906],[-71.703757,41.43253499906],[-71.70395,41.43260599906],[-71.70399,41.43261399906],[-71.704158,41.43268799906],[-71.704321,41.43274699906],[-71.704762,41.43288499906],[-71.704937,41.43295999906],[-71.705023,41.43300299906],[-71.705169,41.43310199906],[-71.705232,41.43315399906],[-71.705291,41.43320999906],[-71.705392,41.43331799906],[-71.705525,41.43344199906],[-71.705554,41.43346899906],[-71.705633,41.43353599906],[-71.705713,41.43364799906],[-71.705759,41.43369799906],[-71.705799,41.43375499906],[-71.705946,41.43402899906],[-71.70603,41.43417599906],[-71.706079,41.43424299906],[-71.706301,41.43450499906],[-71.706421,41.43463999906],[-71.706526,41.43477799906],[-71.706693,41.43494799906],[-71.706746,41.43500899906],[-71.706806,41.43506899906],[-71.706933,41.43517199906],[-71.707077,41.43524799906],[-71.707151,41.43528099906],[-71.70742,41.43536899906],[-71.707506,41.43539199906],[-71.707683,41.43542399906],[-71.707776,41.43544599906],[-71.707872,41.43546099906],[-71.708175,41.43549199906],[-71.708281,41.43549899906],[-71.708386,41.43549999906],[-71.708586,41.43549199906],[-71.708627,41.43548599906],[-71.708775,41.43544999906],[-71.708848,41.43542499906],[-71.70902,41.43534299906],[-71.709085,41.43528699906],[-71.709133,41.43523499906],[-71.709187,41.43509299906],[-71.709202,41.43502399906],[-71.709172,41.43496499906],[-71.709118,41.43490399906],[-71.709004,41.43480199906],[-71.708894,41.43471599906],[-71.708791,41.43462099906],[-71.708747,41.43456999906],[-71.708675,41.43450399906],[-71.708636,41.43444299906],[-71.708644,41.43436999906],[-71.708681,41.43429799906],[-71.708747,41.43425699906],[-71.708833,41.43424899906],[-71.708923,41.43427299906],[-71.709002,41.43431299906],[-71.709075,41.43435599906],[-71.709142,41.43440499906],[-71.709183,41.43446699906],[-71.709206,41.43452099906],[-71.70926,41.43458699906],[-71.709409,41.43467599906],[-71.709465,41.43471999906],[-71.709528,41.43474999906],[-71.709713,41.43478699906],[-71.709785,41.43480999906],[-71.709866,41.43482199906],[-71.710031,41.43482299906],[-71.710138,41.43481899906],[-71.710412,41.43477899906],[-71.71067,41.43474599906],[-71.71075,41.43471999906],[-71.71112,41.43454499906],[-71.711285,41.43444699906],[-71.71145,41.43436399906],[-71.711564,41.43431899906],[-71.711617,41.43430099906],[-71.711786,41.43425899906],[-71.71196,41.43418099906],[-71.71203,41.43416899906],[-71.712214,41.43412799906],[-71.712408,41.43408999906],[-71.712728,41.43404099906],[-71.712953,41.43399999906],[-71.713096,41.43398199906],[-71.713305,41.43394999906],[-71.713383,41.43394199906],[-71.713622,41.43393099906],[-71.71384,41.43390599906],[-71.714051,41.43386499906],[-71.714179,41.43382799906],[-71.714438,41.43376099906],[-71.714559,41.43374299906],[-71.714683,41.43375299906],[-71.714806,41.43377099906],[-71.714897,41.43379099906],[-71.714969,41.43381599906],[-71.715107,41.43389899906],[-71.715191,41.43393399906],[-71.715301,41.43396099906],[-71.71566,41.43402599906],[-71.715776,41.43405199906],[-71.715887,41.43408199906],[-71.71616,41.43417499906],[-71.716352,41.43422399906],[-71.716445,41.43424399906],[-71.716534,41.43424699906],[-71.716619,41.43423199906],[-71.716699,41.43420699906],[-71.716775,41.43417199906],[-71.716823,41.43412499906],[-71.716841,41.43406399906],[-71.716844,41.43398199906],[-71.716794,41.43385099906],[-71.716716,41.43372199906],[-71.716621,41.43359099906],[-71.716502,41.43338599906],[-71.716366,41.43305399906],[-71.716357,41.43297799906],[-71.716383,41.43290499906],[-71.716422,41.43284299906],[-71.716518,41.43272999906],[-71.716577,41.43267299906],[-71.716738,41.43258299906],[-71.716825,41.43254199906],[-71.716919,41.43250499906],[-71.717181,41.43238299906],[-71.717245,41.43233299906],[-71.717284,41.43225899906],[-71.717333,41.43206799906],[-71.717348,41.43197199906],[-71.717352,41.43175899906],[-71.71738,41.43167899906],[-71.717461,41.43152199906],[-71.717515,41.43144299906],[-71.717543,41.43137199906],[-71.717535,41.43130999906],[-71.717502,41.43124499906],[-71.717458,41.43119899906],[-71.717323,41.43108799906],[-71.71723,41.43103499906],[-71.717125,41.43098299906],[-71.717035,41.43092299906],[-71.716918,41.43081699906],[-71.71689,41.43076899906],[-71.71686,41.43069599906],[-71.716816,41.43061899906],[-71.716811,41.43054599906],[-71.716837,41.43047599906],[-71.716884,41.43042299906],[-71.717024,41.43031999906],[-71.717196,41.43021699906],[-71.717381,41.43009999906],[-71.717464,41.43007899906],[-71.717492,41.43010699906],[-71.71741,41.43023999906],[-71.717317,41.43042499906],[-71.717248,41.43052299906],[-71.717204,41.43060399906],[-71.717216,41.43068499906],[-71.71725,41.43075199906],[-71.717298,41.43080999906],[-71.717355,41.43086099906],[-71.717436,41.43091499906],[-71.717472,41.43087299906],[-71.717576,41.43053899906],[-71.71763,41.43032299906],[-71.717644,41.43024399906],[-71.717671,41.43018299906],[-71.717692,41.43007099906],[-71.717717,41.43000999906],[-71.717722,41.42995099906],[-71.71776,41.42981899906],[-71.717763,41.42975499906],[-71.717759,41.42969699906],[-71.717745,41.42964099906],[-71.717715,41.42957599906],[-71.717622,41.42947299906],[-71.717584,41.42938499906],[-71.717565,41.42931399906],[-71.717544,41.42929899906],[-71.717641,41.42921799906],[-71.717688,41.42916799906],[-71.717811,41.42907399906],[-71.71797,41.42897599906],[-71.718032,41.42892299906],[-71.718092,41.42885299906],[-71.71825,41.42872199906],[-71.718336,41.42866699906],[-71.718604,41.42851099906],[-71.71881,41.42841199906],[-71.718823,41.42840699906],[-71.719006,41.42832399906],[-71.718978,41.42828699906],[-71.718964,41.42823099906],[-71.718978,41.42817199906],[-71.719023,41.42811799906],[-71.719129,41.42801999906],[-71.719193,41.42796999906],[-71.719262,41.42792899906],[-71.719359,41.42789699906],[-71.719472,41.42788199906],[-71.719597,41.42788799906],[-71.719726,41.42790099906],[-71.719856,41.42792099906],[-71.720132,41.42799299906],[-71.720196,41.42801699906],[-71.720438,41.42812999906],[-71.720766,41.42825599906],[-71.720835,41.42828799906],[-71.720892,41.42832399906],[-71.720998,41.42842299906],[-71.721074,41.42848299906],[-71.721167,41.42853999906],[-71.721252,41.42859799906],[-71.721351,41.42864599906],[-71.721579,41.42868899906],[-71.721692,41.42869499906],[-71.721796,41.42869599906],[-71.721908,41.42868299906],[-71.722061,41.42864999906],[-71.722267,41.42858899906],[-71.722456,41.42853999906],[-71.722653,41.42848999906],[-71.722723,41.42846799906],[-71.723053,41.42834999906],[-71.72332,41.42822999906],[-71.723461,41.42817199906],[-71.723592,41.42810699906],[-71.723715,41.42803299906],[-71.723863,41.42795399906],[-71.723972,41.42789599906],[-71.724272,41.42771799906],[-71.724376,41.42764399906],[-71.724645,41.42740399906],[-71.724753,41.42732799906],[-71.724855,41.42724699906],[-71.725019,41.42713899906],[-71.7251,41.42709999906],[-71.725139,41.42708099906],[-71.725465,41.42697399906],[-71.725618,41.42690999906],[-71.725656,41.42691699906],[-71.725721,41.42696499906],[-71.725731,41.42699799906],[-71.725729,41.42705899906],[-71.72574,41.42722899906],[-71.725765,41.42736399906],[-71.725829,41.42747399906],[-71.725929,41.42751599906],[-71.725952,41.42752599906],[-71.726035,41.42751399906],[-71.726187,41.42742199906],[-71.726074,41.42721499906],[-71.725993,41.42701699906],[-71.725885,41.42692099906],[-71.725798,41.42690999906],[-71.725772,41.42689599906],[-71.72576,41.42685399906],[-71.725837,41.42676299906],[-71.72598,41.42657499906],[-71.726025,41.42648599906],[-71.726045,41.42640299906],[-71.726031,41.42633099906],[-71.725992,41.42621099906],[-71.72598,41.42602999906],[-71.725962,41.42592499906],[-71.725951,41.42581699906],[-71.725935,41.42572099906],[-71.725896,41.42564399906],[-71.725848,41.42556399906],[-71.725808,41.42547499906],[-71.725745,41.42527999906],[-71.725722,41.42518699906],[-71.725763,41.42491299906],[-71.725763,41.42488699906],[-71.725786,41.42474699906],[-71.725786,41.42467799906],[-71.725768,41.42455799906],[-71.725776,41.42419799906],[-71.725795,41.42407199906],[-71.725859,41.42373799906],[-71.72593,41.42350499906],[-71.725946,41.42343799906],[-71.72596,41.42332599906],[-71.725971,41.42300399906],[-71.725959,41.42270999906],[-71.725951,41.42264899906],[-71.725945,41.42243599906],[-71.725949,41.42236299906],[-71.72596,41.42230499906],[-71.725977,41.42225099906],[-71.726004,41.42219499906],[-71.726039,41.42214299906],[-71.726066,41.42209199906],[-71.726232,41.42188999906],[-71.726282,41.42184299906],[-71.726339,41.42180799906],[-71.726396,41.42173799906],[-71.726547,41.42141799906],[-71.726595,41.42132499906],[-71.726648,41.42124399906],[-71.726693,41.42116499906],[-71.726736,41.42107499906],[-71.726839,41.42089499906],[-71.726979,41.42060799906],[-71.727222,41.42017699906],[-71.727291,41.42007799906],[-71.727444,41.41988699906],[-71.72754,41.41972999906],[-71.727673,41.41953399906],[-71.727837,41.41934799906],[-71.727946,41.41919599906],[-71.728021,41.41910799906],[-71.728119,41.41895899906],[-71.728156,41.41891099906],[-71.728239,41.41882499906],[-71.728389,41.41864899906],[-71.728643,41.41841499906],[-71.728761,41.41828199906],[-71.728826,41.41819499906],[-71.728893,41.41809299906],[-71.729059,41.41786699906],[-71.729123,41.41780499906],[-71.729178,41.41773299906],[-71.729243,41.41758199906],[-71.7294,41.41716799906],[-71.729407,41.41709299906],[-71.729381,41.41702199906],[-71.72934,41.41697699906],[-71.729285,41.41692799906],[-71.729264,41.41684899906],[-71.72924,41.41669499906],[-71.729216,41.41646399906],[-71.729216,41.41640899906],[-71.729204,41.41634599906],[-71.729129,41.41630499906],[-71.729093,41.41625999906],[-71.729095,41.41620299906],[-71.729109,41.41611799906],[-71.729144,41.41605999906],[-71.729173,41.41592199906],[-71.729222,41.41576999906],[-71.729332,41.41552899906],[-71.729385,41.41544599906],[-71.729513,41.41531099906],[-71.729574,41.41523999906],[-71.729728,41.41501499906],[-71.729777,41.41495999906],[-71.729861,41.41484999906],[-71.729938,41.41472799906],[-71.729974,41.41466199906],[-71.730027,41.41451799906],[-71.730015,41.41443599906],[-71.729979,41.41428599906],[-71.729959,41.41414899906],[-71.729909,41.41401099906],[-71.729878,41.41394599906],[-71.729816,41.41390599906],[-71.729742,41.41386899906],[-71.729661,41.41384999906],[-71.729573,41.41385299906],[-71.729479,41.41384299906],[-71.729383,41.41381699906],[-71.729294,41.41377499906],[-71.729215,41.41371299906],[-71.729147,41.41365199906],[-71.729071,41.41360999906],[-71.728866,41.41355499906],[-71.728652,41.41347799906],[-71.728547,41.41343099906],[-71.728483,41.41336899906],[-71.72844,41.41330299906],[-71.728368,41.41299099906],[-71.728361,41.41291899906],[-71.728364,41.41283499906],[-71.728384,41.41275799906],[-71.728413,41.41268599906],[-71.728429,41.41260999906],[-71.728405,41.41251899906],[-71.728245,41.41218999906],[-71.728207,41.41212299906],[-71.728188,41.41205799906],[-71.728182,41.41188899906],[-71.728162,41.41175999906],[-71.728142,41.41155899906],[-71.728126,41.41148499906],[-71.728097,41.41139699906],[-71.728054,41.41130399906],[-71.727913,41.41105099906],[-71.727861,41.41096899906],[-71.727807,41.41089699906],[-71.727752,41.41081199906],[-71.727666,41.41064199906],[-71.727623,41.41056899906],[-71.727546,41.41040099906],[-71.727458,41.41028999906],[-71.727412,41.41022199906],[-71.727389,41.41019199906],[-71.727325,41.41010899906],[-71.727112,41.40985999906],[-71.72705,41.40979299906],[-71.726952,41.40972299906],[-71.72682,41.40961199906],[-71.726636,41.40950799906],[-71.726457,41.40942199906],[-71.726338,41.40937599906],[-71.726209,41.40934199906],[-71.72594,41.40928799906],[-71.725703,41.40926599906],[-71.725472,41.40923599906],[-71.725185,41.40917699906],[-71.725039,41.40915099906],[-71.72454,41.40908899906],[-71.724428,41.40906299906],[-71.724312,41.40901899906],[-71.724252,41.40898799906],[-71.724029,41.40885399906],[-71.723932,41.40878199906],[-71.723842,41.40869999906],[-71.723665,41.40852099906],[-71.723598,41.40843199906],[-71.723545,41.40833299906],[-71.723443,41.40807299906],[-71.723398,41.40797099906],[-71.723355,41.40785699906],[-71.723319,41.40774099906],[-71.723309,41.40768499906],[-71.723307,41.40762999906],[-71.723325,41.40746099906],[-71.723382,41.40710599906],[-71.723458,41.40676899906],[-71.723483,41.40658899906],[-71.723507,41.40611999906],[-71.723524,41.40583399906],[-71.72353,41.40543099906],[-71.723523,41.40508899906],[-71.723545,41.40455399906],[-71.723542,41.40444899906],[-71.723558,41.40435699906],[-71.723592,41.40427599906],[-71.723628,41.40420599906],[-71.723707,41.40407099906],[-71.72375,41.40400699906],[-71.723808,41.40395499906],[-71.723947,41.40384899906],[-71.724026,41.40380399906],[-71.724316,41.40366399906],[-71.724635,41.40352599906],[-71.724869,41.40343199906],[-71.725106,41.40331999906],[-71.725335,41.40320399906],[-71.725445,41.40314199906],[-71.725789,41.40296599906],[-71.725921,41.40290599906],[-71.726151,41.40279199906],[-71.726262,41.40272899906],[-71.726431,41.40262499906],[-71.726739,41.40240899906],[-71.727026,41.40217499906],[-71.727115,41.40209199906],[-71.727284,41.40194499906],[-71.727349,41.40187199906],[-71.727462,41.40170299906],[-71.727509,41.40156499906],[-71.727524,41.40149099906],[-71.727549,41.40131199906],[-71.727571,41.40122899906],[-71.727586,41.40113099906],[-71.727586,41.40103699906],[-71.727539,41.40066899906],[-71.727506,41.40051999906],[-71.727451,41.40034099906],[-71.727412,41.39989599906],[-71.727393,41.39973899906],[-71.727382,41.39955499906],[-71.727328,41.39910299906],[-71.727311,41.39873599906],[-71.727316,41.39838499906],[-71.72733,41.39816099906],[-71.727377,41.39781499906],[-71.727423,41.39765799906],[-71.727453,41.39753699906],[-71.727466,41.39750499906],[-71.727481,41.39702299906],[-71.727572,41.39695199906],[-71.727685,41.39685599906],[-71.727884,41.39672699906],[-71.727945,41.39668199906],[-71.727984,41.39663799906],[-71.727975,41.39658799906],[-71.728023,41.39659099906],[-71.72808,41.39661399906],[-71.728146,41.39658399906],[-71.728255,41.39659099906],[-71.728363,41.39668699906],[-71.72845,41.39680999906],[-71.728485,41.39687299906],[-71.728564,41.39698599906],[-71.728583,41.39704599906],[-71.728607,41.39717799906],[-71.728568,41.39735699906],[-71.728548,41.39741999906],[-71.728535,41.39748699906],[-71.728538,41.39754699906],[-71.728587,41.39772999906],[-71.728612,41.39779999906],[-71.728643,41.39785999906],[-71.728764,41.39804699906],[-71.728818,41.39809399906],[-71.728887,41.39813599906],[-71.729037,41.39820899906],[-71.72913,41.39822999906],[-71.729605,41.39829899906],[-71.729799,41.39832199906],[-71.730028,41.39833799906],[-71.730655,41.39842199906],[-71.730748,41.39841599906],[-71.730843,41.39843199906],[-71.730876,41.39844199906],[-71.730936,41.39845799906],[-71.731089,41.39847599906],[-71.731252,41.39851399906]]]}}"}, +{"type": "blockgroup", "typeId": 511012, "areaId": 29423, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.695099,41.42657099906],[-71.695091,41.42646799906],[-71.695091,41.42636499906],[-71.695084,41.42626199906],[-71.695084,41.42609499906],[-71.695082,41.42598599906],[-71.695077,41.42589299906],[-71.695074,41.42580999906],[-71.695064,41.42558099906],[-71.695061,41.42525699906],[-71.695061,41.42507899906],[-71.695068,41.42498399906],[-71.695068,41.42455299906],[-71.695076,41.42450299906],[-71.695076,41.42434699906],[-71.69503,41.42422499906],[-71.694611,41.42357299906],[-71.694481,41.42338599906],[-71.694069,41.42282499906],[-71.693916,41.42259999906],[-71.693748,41.42232899906],[-71.693657,41.42216899906],[-71.693558,41.42200899906],[-71.693451,41.42184799906],[-71.693336,41.42168799906],[-71.69323,41.42152399906],[-71.693161,41.42140199906],[-71.6931,41.42127999906],[-71.692986,41.42107399906],[-71.692947,41.42099399906],[-71.692894,41.42091399906],[-71.692734,41.42073099906],[-71.692665,41.42066599906],[-71.692604,41.42059699906],[-71.692055,41.42007399906],[-71.691963,41.41999099906],[-71.691879,41.41990699906],[-71.691444,41.41952499906],[-71.691315,41.41942199906],[-71.691162,41.41930799906],[-71.690979,41.41918599906],[-71.690613,41.41889599906],[-71.690422,41.41873199906],[-71.690201,41.41850999906],[-71.689957,41.41823599906],[-71.689919,41.41818599906],[-71.689873,41.41813699906],[-71.689726,41.41795199906],[-71.689606,41.41780099906],[-71.689471,41.41764599906],[-71.689457,41.41762999906],[-71.689293,41.41744199906],[-71.689117,41.41725499906],[-71.688927,41.41708799906],[-71.68882,41.41697699906],[-71.68869,41.41681299906],[-71.688611,41.41669499906],[-71.68861,41.41668599906],[-71.688591,41.41664499906],[-71.688568,41.41657599906],[-71.688499,41.41642399906],[-71.688469,41.41633999906],[-71.688431,41.41625599906],[-71.6884,41.41616799906],[-71.688362,41.41607999906],[-71.688348,41.41603899906],[-71.688331,41.41598899906],[-71.68821,41.41563799906],[-71.688171,41.41547399906],[-71.688156,41.41535899906],[-71.688156,41.41522199906],[-71.688328,41.41440599906],[-71.688416,41.41406299906],[-71.688446,41.41388699906],[-71.688469,41.41379899906],[-71.688499,41.41371199906],[-71.688538,41.41362399906],[-71.688568,41.41353599906],[-71.688606,41.41345199906],[-71.688667,41.41327999906],[-71.688736,41.41303299906],[-71.688751,41.41294899906],[-71.688759,41.41286099906],[-71.688774,41.41277699906],[-71.688782,41.41268899906],[-71.688797,41.41260099906],[-71.688835,41.41216299906],[-71.688911,41.41171599906],[-71.688911,41.41152999906],[-71.688904,41.41147999906],[-71.688904,41.41138499906],[-71.688858,41.41127799906],[-71.688805,41.41118599906],[-71.688778,41.41115699906],[-71.688698,41.41108699906],[-71.688622,41.41103399906],[-71.688362,41.41087299906],[-71.688217,41.41077799906],[-71.688019,41.41061399906],[-71.687973,41.41056399906],[-71.68792,41.41051899906],[-71.687836,41.41042299906],[-71.687767,41.41032799906],[-71.687729,41.41025499906],[-71.687668,41.41010999906],[-71.687511,41.40983299906],[-71.687348,41.40988199906],[-71.687073,41.40996599906],[-71.686951,41.41000699906],[-71.686615,41.41012999906],[-71.686501,41.41016399906],[-71.686394,41.41020199906],[-71.686211,41.41025899906],[-71.686119,41.41028199906],[-71.68586,41.41032399906],[-71.685684,41.41034299906],[-71.685249,41.41039999906],[-71.684509,41.41051499906],[-71.684189,41.41056099906],[-71.683975,41.41057599906],[-71.683815,41.41057199906],[-71.68364,41.41054899906],[-71.683281,41.41044999906],[-71.682655,41.41022099906],[-71.682442,41.41013299906],[-71.682228,41.41003799906],[-71.68203,41.40993899906],[-71.681915,41.40988899906],[-71.68158,41.40975599906],[-71.681381,41.40967199906],[-71.68119,41.40958399906],[-71.681,41.40946999906],[-71.680901,41.40939699906],[-71.680603,41.40916399906],[-71.680542,41.40910299906],[-71.680298,41.40889399906],[-71.680199,41.40878299906],[-71.680122,41.40865299906],[-71.680092,41.40857699906],[-71.680054,41.40850099906],[-71.680023,41.40842399906],[-71.679977,41.40824499906],[-71.679928,41.40811699906],[-71.679906,41.40806899906],[-71.679854,41.40797599906],[-71.679663,41.40768699906],[-71.679651,41.40766899906],[-71.679452,41.40740599906],[-71.679381,41.40732899906],[-71.679372,41.40731299906],[-71.679359,41.40729099906],[-71.679298,41.40715799906],[-71.679283,41.40708899906],[-71.679268,41.40693299906],[-71.679268,41.40674199906],[-71.679282,41.40653499906],[-71.679283,41.40652499906],[-71.679329,41.40618099906],[-71.679344,41.40596399906],[-71.679367,41.40575399906],[-71.679382,41.40568199906],[-71.679382,41.40565499906],[-71.679451,41.40532299906],[-71.679558,41.40495299906],[-71.679604,41.40482699906],[-71.679718,41.40446899906],[-71.679771,41.40431999906],[-71.679893,41.40402199906],[-71.680031,41.40370899906],[-71.680191,41.40322499906],[-71.680199,41.40316399906],[-71.680199,41.40304199906],[-71.680183,41.40294999906],[-71.680161,41.40285899906],[-71.68013,41.40276699906],[-71.680099,41.40265299906],[-71.679985,41.40230599906],[-71.679955,41.40218399906],[-71.679878,41.40193899906],[-71.679832,41.40181699906],[-71.679763,41.40157799906],[-71.679749,41.40153099906],[-71.679695,41.40136699906],[-71.679657,41.40119899906],[-71.679626,41.40101599906],[-71.679611,41.40075199906],[-71.679626,41.40058099906],[-71.679634,41.40040999906],[-71.679634,41.40026899906],[-71.679665,41.39967299906],[-71.679688,41.39938699906],[-71.679718,41.39913199906],[-71.679718,41.39904399906],[-71.679726,41.39895599906],[-71.679741,41.39886899906],[-71.679744,41.39885699906],[-71.679761,41.39878799906],[-71.679798,41.39865999906],[-71.679864,41.39853499906],[-71.680002,41.39829899906],[-71.680092,41.39812499906],[-71.680132,41.39802799906],[-71.680153,41.39797599906],[-71.680199,41.39782299906],[-71.680214,41.39766699906],[-71.680214,41.39749099906],[-71.680168,41.39727399906],[-71.680107,41.39704099906],[-71.680084,41.39692299906],[-71.680054,41.39681199906],[-71.679916,41.39647299906],[-71.679855,41.39635499906],[-71.67984,41.39630499906],[-71.679794,41.39620999906],[-71.679733,41.39603399906],[-71.679703,41.39586599906],[-71.679703,41.39572899906],[-71.67971,41.39568299906],[-71.67971,41.39563399906],[-71.679716,41.39559799906],[-71.679752,41.39540299906],[-71.67984,41.39511199906],[-71.679963,41.39471299906],[-71.680017,41.39454399906],[-71.6801,41.39434199906],[-71.680229,41.39399699906],[-71.680275,41.39382899906],[-71.680289,41.39373499906],[-71.68029,41.39372599906],[-71.680305,41.39367299906],[-71.680305,41.39362699906],[-71.680313,41.39358099906],[-71.680313,41.39341699906],[-71.680305,41.39336799906],[-71.680275,41.39326899906],[-71.680206,41.39316599906],[-71.680153,41.39309699906],[-71.680115,41.39305099906],[-71.680031,41.39294799906],[-71.679924,41.39282999906],[-71.679825,41.39270399906],[-71.67971,41.39251699906],[-71.679573,41.39222699906],[-71.679489,41.39207199906],[-71.679451,41.39200199906],[-71.679398,41.39188799906],[-71.67933,41.39176199906],[-71.679245,41.39160499906],[-71.679161,41.39146799906],[-71.67907,41.39129999906],[-71.678871,41.39096799906],[-71.678795,41.39084999906],[-71.678658,41.39060999906],[-71.678566,41.39048399906],[-71.678444,41.39033499906],[-71.678314,41.39020899906],[-71.678253,41.39015999906],[-71.6782,41.39010599906],[-71.678143,41.39005799906],[-71.678078,41.39000299906],[-71.677849,41.38979699906],[-71.67779,41.38974799906],[-71.677544,41.38954499906],[-71.677399,41.38941599906],[-71.677345,41.38938499906],[-71.677116,41.38921699906],[-71.67691,41.38907999906],[-71.676845,41.38903999906],[-71.676834,41.38903399906],[-71.676514,41.38887399906],[-71.676178,41.38872099906],[-71.676154,41.38870799906],[-71.675774,41.38850399906],[-71.675491,41.38832899906],[-71.67527,41.38818399906],[-71.675224,41.38814899906],[-71.675148,41.38807699906],[-71.674942,41.38800399906],[-71.674622,41.38782099906],[-71.674475,41.38773199906],[-71.674232,41.38758499906],[-71.67395,41.38742399906],[-71.673546,41.38722599906],[-71.673416,41.38718399906],[-71.673294,41.38714999906],[-71.67308,41.38713499906],[-71.672943,41.38713499906],[-71.672867,41.38713099906],[-71.672531,41.38715399906],[-71.672356,41.38715699906],[-71.672142,41.38714999906],[-71.671814,41.38713099906],[-71.671654,41.38713799906],[-71.671371,41.38721099906],[-71.671158,41.38725699906],[-71.671059,41.38727199906],[-71.670937,41.38727999906],[-71.670822,41.38726399906],[-71.670723,41.38723799906],[-71.670593,41.38719199906],[-71.670494,41.38715699906],[-71.669937,41.38691299906],[-71.669579,41.38674899906],[-71.669363,41.38664699906],[-71.668327,41.38615799906],[-71.668175,41.38610499906],[-71.668137,41.38608899906],[-71.667938,41.38605899906],[-71.667908,41.38605099906],[-71.666634,41.38584499906],[-71.666374,41.38579599906],[-71.665955,41.38573799906],[-71.664841,41.38566599906],[-71.66426,41.38560999906],[-71.663499,41.38553599906],[-71.663337,41.38552099906],[-71.663046,41.38549799906],[-71.662552,41.38548999906],[-71.662265,41.38548999906],[-71.661835,41.38547499906],[-71.661682,41.38546399906],[-71.66153,41.38544499906],[-71.661316,41.38539099906],[-71.661278,41.38537599906],[-71.660927,41.38523899906],[-71.660789,41.38517799906],[-71.660713,41.38511999906],[-71.66066,41.38505899906],[-71.660645,41.38503299906],[-71.660629,41.38496799906],[-71.660629,41.38494099906],[-71.660675,41.38484199906],[-71.660728,41.38478499906],[-71.66082,41.38472399906],[-71.660873,41.38469699906],[-71.661079,41.38461299906],[-71.661117,41.38459999906],[-71.661217,41.38455099906],[-71.661328,41.38449999906],[-71.66161,41.38439099906],[-71.6618,41.38431899906],[-71.661778,41.38430899906],[-71.661524,41.38418499906],[-71.661331,41.38425799906],[-71.661257,41.38428499906],[-71.660757,41.38444799906],[-71.660443,41.38454199906],[-71.660079,41.38464699906],[-71.659784,41.38472599906],[-71.65957,41.38477899906],[-71.658941,41.38491599906],[-71.658778,41.38494799906],[-71.658357,41.38503399906],[-71.657711,41.38513699906],[-71.657055,41.38521399906],[-71.656835,41.38523499906],[-71.656465,41.38526899906],[-71.65591,41.38532399906],[-71.655701,41.38534899906],[-71.655022,41.38542599906],[-71.654854,41.38544199906],[-71.653523,41.38559999906],[-71.65336,41.38562299906],[-71.653245,41.38562999906],[-71.652695,41.38568799906],[-71.652512,41.38570799906],[-71.652206,41.38574599906],[-71.651428,41.38583399906],[-71.650284,41.38594799906],[-71.649996,41.38597199906],[-71.649452,41.38601699906],[-71.649219,41.38601899906],[-71.648831,41.38601999906],[-71.648171,41.38599199906],[-71.647809,41.38596699906],[-71.647717,41.38595799906],[-71.647247,41.38590599906],[-71.647202,41.38590199906],[-71.647072,41.38587999906],[-71.646591,41.38577999906],[-71.644768,41.38538399906],[-71.643669,41.38513899906],[-71.642593,41.38491099906],[-71.642159,41.38481099906],[-71.642121,41.38480299906],[-71.642029,41.38512799906],[-71.641881,41.38565699906],[-71.641777,41.38603599906],[-71.641716,41.38627599906],[-71.641711,41.38629499906],[-71.641617,41.38667699906],[-71.641464,41.38743999906],[-71.641319,41.38811899906],[-71.641251,41.38853099906],[-71.641182,41.38883999906],[-71.641167,41.38886599906],[-71.641136,41.38895799906],[-71.640968,41.38937399906],[-71.640762,41.38970899906],[-71.640572,41.38998799906],[-71.640259,41.39048399906],[-71.640175,41.39065199906],[-71.640152,41.39070199906],[-71.64009,41.39086599906],[-71.640077,41.39090799906],[-71.640007,41.39114599906],[-71.639969,41.39128399906],[-71.639949,41.39138999906],[-71.639905,41.39157399906],[-71.639847,41.39180999906],[-71.639808,41.39195199906],[-71.639773,41.39204899906],[-71.639658,41.39233099906],[-71.63952,41.39258599906],[-71.639336,41.39287099906],[-71.639171,41.39311199906],[-71.639092,41.39322899906],[-71.63884,41.39361699906],[-71.63865,41.39389899906],[-71.638519,41.39413899906],[-71.638466,41.39441299906],[-71.638473,41.39456999906],[-71.638556,41.39501199906],[-71.638624,41.39531999906],[-71.638806,41.39623899906],[-71.638927,41.39660899906],[-71.639019,41.39682699906],[-71.639588,41.39791299906],[-71.639748,41.39823399906],[-71.639884,41.39857299906],[-71.639953,41.39878999906],[-71.640255,41.40037999906],[-71.640376,41.40106299906],[-71.640467,41.40151999906],[-71.640527,41.40176399906],[-71.640588,41.40193899906],[-71.640755,41.40227499906],[-71.640884,41.40250399906],[-71.641991,41.40434299906],[-71.642494,41.40509799906],[-71.642906,41.40569299906],[-71.643234,41.40614699906],[-71.643562,41.40661999906],[-71.643791,41.40693999906],[-71.644501,41.40794799906],[-71.644677,41.40819799906],[-71.64502,41.40868399906],[-71.645142,41.40889699906],[-71.645218,41.40905399906],[-71.645264,41.40919099906],[-71.645309,41.40938199906],[-71.645355,41.40969499906],[-71.645363,41.40980899906],[-71.645416,41.41028599906],[-71.64547,41.41069399906],[-71.645519,41.41096499906],[-71.645554,41.41114399906],[-71.645582,41.41124599906],[-71.645673,41.41153099906],[-71.645699,41.41161299906],[-71.645744,41.41171299906],[-71.645889,41.41200299906],[-71.646004,41.41216899906],[-71.646095,41.41229999906],[-71.646317,41.41258199906],[-71.646488,41.41278499906],[-71.646585,41.41290099906],[-71.646606,41.41292599906],[-71.646828,41.41320799906],[-71.646973,41.41341699906],[-71.647011,41.41347099906],[-71.647225,41.41383599906],[-71.64756,41.41440599906],[-71.647835,41.41487499906],[-71.647906,41.41501399906],[-71.647947,41.41509499906],[-71.647992,41.41518799906],[-71.648056,41.41536999906],[-71.648102,41.41558099906],[-71.648125,41.41566799906],[-71.64815,41.41580999906],[-71.648171,41.41592999906],[-71.648186,41.41619899906],[-71.648195,41.41634899906],[-71.648232,41.41698799906],[-71.648249,41.41725299906],[-71.648255,41.41734299906],[-71.648304,41.41810899906],[-71.648332,41.41847499906],[-71.648359,41.41872499906],[-71.648521,41.41973899906],[-71.648605,41.42013499906],[-71.648689,41.42063899906],[-71.648712,41.42081099906],[-71.648717,41.42087299906],[-71.648727,41.42099799906],[-71.648735,41.42121899906],[-71.648697,41.42170299906],[-71.648636,41.42200099906],[-71.648529,41.42236699906],[-71.648186,41.42335499906],[-71.647987,41.42394599906],[-71.647751,41.42460599906],[-71.647474,41.42544299906],[-71.647377,41.42573499906],[-71.647363,41.42577199906],[-71.647112,41.42646299906],[-71.64696,41.42670999906],[-71.646905,41.42677299906],[-71.646795,41.42690499906],[-71.646788,41.42691399906],[-71.646524,41.42719299906],[-71.646311,41.42740399906],[-71.646111,41.42758299906],[-71.645971,41.42769299906],[-71.645482,41.42805599906],[-71.645058,41.42832199906],[-71.644951,41.42841699906],[-71.644309,41.42891899906],[-71.644096,41.42908499906],[-71.643478,41.42954599906],[-71.643379,41.42962599906],[-71.642937,41.42996599906],[-71.6427,41.43017199906],[-71.642502,41.43035499906],[-71.642319,41.43053799906],[-71.642159,41.43072499906],[-71.641983,41.43096199906],[-71.641762,41.43128599906],[-71.641685,41.43144199906],[-71.641502,41.43183899906],[-71.641225,41.43256999906],[-71.640999,41.43316699906],[-71.640488,41.43454699906],[-71.639821,41.43634999906],[-71.639767,41.43647299906],[-71.639719,41.43658299906],[-71.639609,41.43681299906],[-71.639549,41.43691399906],[-71.639507,41.43698599906],[-71.639454,41.43706799906],[-71.639399,41.43715399906],[-71.639206,41.43740799906],[-71.639145,41.43748099906],[-71.639046,41.43760699906],[-71.638798,41.43789199906],[-71.638634,41.43805699906],[-71.638405,41.43825499906],[-71.638093,41.43850899906],[-71.637753,41.43875199906],[-71.636867,41.43928099906],[-71.636146,41.43970799906],[-71.635918,41.43983099906],[-71.635547,41.44005499906],[-71.634392,41.44073499906],[-71.633882,41.44103599906],[-71.633159,41.44144999906],[-71.632354,41.44186699906],[-71.631966,41.44207399906],[-71.63194,41.44208799906],[-71.631552,41.44229999906],[-71.630962,41.44260999906],[-71.630167,41.44302199906],[-71.62979,41.44320699906],[-71.629534,41.44333099906],[-71.629391,41.44339399906],[-71.629344,41.44341499906],[-71.629054,41.44352699906],[-71.628534,41.44370899906],[-71.628068,41.44383099906],[-71.62779,41.44390099906],[-71.627449,41.44396999906],[-71.626779,41.44412199906],[-71.626177,41.44425599906],[-71.625557,41.44439999906],[-71.624692,41.44459499906],[-71.623726,41.44480099906],[-71.623528,41.44484699906],[-71.623154,41.44492299906],[-71.622902,41.44500399906],[-71.622658,41.44509499906],[-71.622414,41.44519799906],[-71.622215,41.44529699906],[-71.622124,41.44535099906],[-71.621834,41.44554099906],[-71.621788,41.44557999906],[-71.621735,41.44561399906],[-71.621506,41.44578899906],[-71.621422,41.44586199906],[-71.621284,41.44599199906],[-71.621363,41.44604199906],[-71.62143,41.44605899906],[-71.621497,41.44609599906],[-71.621558,41.44614399906],[-71.621639,41.44619199906],[-71.621702,41.44622099906],[-71.621768,41.44624599906],[-71.621841,41.44625399906],[-71.621873,41.44624799906],[-71.621945,41.44623299906],[-71.622013,41.44620499906],[-71.62208,41.44616799906],[-71.622214,41.44607299906],[-71.622333,41.44597399906],[-71.622396,41.44593899906],[-71.622464,41.44591399906],[-71.622564,41.44589199906],[-71.622665,41.44590399906],[-71.622826,41.44595299906],[-71.623016,41.44601799906],[-71.623312,41.44614199906],[-71.623404,41.44617499906],[-71.623928,41.44633699906],[-71.624082,41.44639499906],[-71.624156,41.44641199906],[-71.624234,41.44641599906],[-71.624288,41.44640799906],[-71.624387,41.44638199906],[-71.624607,41.44628499906],[-71.624723,41.44625499906],[-71.624807,41.44622099906],[-71.62488,41.44619299906],[-71.625007,41.44613299906],[-71.62507,41.44609899906],[-71.625173,41.44607399906],[-71.625285,41.44600999906],[-71.625397,41.44591999906],[-71.625459,41.44588999906],[-71.625559,41.44580899906],[-71.625628,41.44570599906],[-71.625714,41.44561699906],[-71.625778,41.44557199906],[-71.625893,41.44550499906],[-71.62603,41.44547199906],[-71.626097,41.44547699906],[-71.626199,41.44546599906],[-71.626269,41.44542499906],[-71.626329,41.44541499906],[-71.62654,41.44534999906],[-71.626589,41.44532299906],[-71.626737,41.44531799906],[-71.626754,41.44529999906],[-71.626761,41.44528299906],[-71.626803,41.44522899906],[-71.62687,41.44522499906],[-71.626973,41.44522599906],[-71.627114,41.44525099906],[-71.627354,41.44538199906],[-71.627398,41.44545599906],[-71.627393,41.44547699906],[-71.62732,41.44558599906],[-71.627215,41.44579999906],[-71.627171,41.44590299906],[-71.627166,41.44598299906],[-71.627056,41.44618499906],[-71.626982,41.44629599906],[-71.626947,41.44637199906],[-71.62694,41.44645999906],[-71.626958,41.44656899906],[-71.626996,41.44666399906],[-71.627012,41.44669399906],[-71.627057,41.44677299906],[-71.627106,41.44687799906],[-71.627168,41.44697499906],[-71.627247,41.44707099906],[-71.627419,41.44721799906],[-71.627634,41.44745399906],[-71.627696,41.44751299906],[-71.627788,41.44756999906],[-71.627873,41.44765999906],[-71.628097,41.44781399906],[-71.628222,41.44788299906],[-71.628348,41.44795899906],[-71.62844,41.44800699906],[-71.628558,41.44802099906],[-71.62871,41.44803099906],[-71.628831,41.44799899906],[-71.628905,41.44795799906],[-71.629026,41.44786799906],[-71.629131,41.44777199906],[-71.629255,41.44751899906],[-71.629287,41.44748399906],[-71.629368,41.44742999906],[-71.6295,41.44735899906],[-71.629548,41.44732899906],[-71.630022,41.44695399906],[-71.630608,41.44683099906],[-71.631386,41.44702199906],[-71.631818,41.44710099906],[-71.631973,41.44720599906],[-71.632213,41.44771199906],[-71.632378,41.44842799906],[-71.632518,41.44879899906],[-71.632726,41.44891199906],[-71.632726,41.44893799906],[-71.632774,41.44897699906],[-71.632835,41.44897399906],[-71.632862,41.44891499906],[-71.633005,41.44890699906],[-71.633159,41.44888999906],[-71.633212,41.44887799906],[-71.633454,41.44876299906],[-71.633585,41.44871499906],[-71.633743,41.44866299906],[-71.633872,41.44861299906],[-71.634009,41.44858699906],[-71.634148,41.44852699906],[-71.634277,41.44847799906],[-71.634439,41.44840399906],[-71.634758,41.44823799906],[-71.634816,41.44822799906],[-71.634936,41.44815399906],[-71.635042,41.44806499906],[-71.635166,41.44800599906],[-71.635293,41.44797899906],[-71.635597,41.44794399906],[-71.635821,41.44794399906],[-71.635915,41.44792999906],[-71.636079,41.44786999906],[-71.636258,41.44782399906],[-71.636391,41.44781299906],[-71.63642,41.44780399906],[-71.636439,41.44777299906],[-71.636442,41.44773199906],[-71.636434,41.44768299906],[-71.636462,41.44766699906],[-71.636555,41.44766599906],[-71.636692,41.44764799906],[-71.636816,41.44763199906],[-71.636938,41.44763099906],[-71.636986,41.44760099906],[-71.637055,41.44758999906],[-71.6372,41.44759599906],[-71.637258,41.44752999906],[-71.637298,41.44745199906],[-71.637516,41.44728999906],[-71.637591,41.44725799906],[-71.637637,41.44723399906],[-71.637737,41.44719499906],[-71.637752,41.44718099906],[-71.637829,41.44711099906],[-71.637921,41.44701499906],[-71.638014,41.44693499906],[-71.638069,41.44683399906],[-71.638153,41.44672499906],[-71.638229,41.44664099906],[-71.638255,41.44660399906],[-71.638303,41.44652499906],[-71.638372,41.44645899906],[-71.638457,41.44643599906],[-71.638533,41.44630199906],[-71.638631,41.44621599906],[-71.63872,41.44616399906],[-71.639062,41.44608299906],[-71.63921,41.44605699906],[-71.639333,41.44604299906],[-71.639474,41.44597599906],[-71.639615,41.44596099906],[-71.639681,41.44596099906],[-71.639781,41.44594999906],[-71.639959,41.44595199906],[-71.639991,41.44595399906],[-71.640095,41.44596099906],[-71.640183,41.44597599906],[-71.640293,41.44601699906],[-71.640364,41.44605799906],[-71.640486,41.44613999906],[-71.640508,41.44620799906],[-71.640503,41.44623099906],[-71.640504,41.44638399906],[-71.640544,41.44643199906],[-71.640644,41.44652399906],[-71.640811,41.44653499906],[-71.640894,41.44653499906],[-71.641148,41.44668799906],[-71.641235,41.44671999906],[-71.64143,41.44675899906],[-71.641535,41.44683699906],[-71.641647,41.44688799906],[-71.641847,41.44695999906],[-71.641991,41.44697999906],[-71.642442,41.44697999906],[-71.642567,41.44698299906],[-71.64266,41.44696899906],[-71.642705,41.44697299906],[-71.642857,41.44706699906],[-71.642954,41.44711099906],[-71.6431,41.44721199906],[-71.643185,41.44733299906],[-71.643244,41.44747599906],[-71.643307,41.44750799906],[-71.643439,41.44751199906],[-71.643534,41.44752599906],[-71.643707,41.44757499906],[-71.64375,41.44760499906],[-71.643752,41.44762599906],[-71.64378,41.44763499906],[-71.643804,41.44770099906],[-71.64381,41.44780099906],[-71.643818,41.44784199906],[-71.643924,41.44787899906],[-71.644061,41.44791399906],[-71.644143,41.44796299906],[-71.644258,41.44798099906],[-71.644297,41.44802199906],[-71.644397,41.44810299906],[-71.644542,41.44810799906],[-71.644623,41.44812699906],[-71.644662,41.44816299906],[-71.644701,41.44820599906],[-71.644723,41.44823199906],[-71.644782,41.44833399906],[-71.644848,41.44842499906],[-71.644912,41.44849399906],[-71.64514,41.44855899906],[-71.645368,41.44857499906],[-71.645451,41.44861499906],[-71.645485,41.44866499906],[-71.645526,41.44868599906],[-71.645648,41.44868399906],[-71.645683,41.44863099906],[-71.645807,41.44856599906],[-71.645898,41.44853099906],[-71.646022,41.44847599906],[-71.646173,41.44847999906],[-71.646432,41.44853499906],[-71.646808,41.44862299906],[-71.64697,41.44868199906],[-71.647178,41.44876699906],[-71.647321,41.44880899906],[-71.647487,41.44886699906],[-71.647665,41.44892199906],[-71.647896,41.44895599906],[-71.6482,41.44895399906],[-71.648419,41.44892699906],[-71.648674,41.44887699906],[-71.648822,41.44883399906],[-71.648902,41.44883399906],[-71.649017,41.44881099906],[-71.649175,41.44879199906],[-71.649307,41.44881899906],[-71.649385,41.44887999906],[-71.649408,41.44895599906],[-71.649397,41.44903999906],[-71.649304,41.44916799906],[-71.649179,41.44931399906],[-71.649139,41.44943699906],[-71.649101,41.44950999906],[-71.649062,41.44974699906],[-71.649072,41.44979099906],[-71.649083,41.44990199906],[-71.649155,41.45005899906],[-71.649156,41.45008599906],[-71.649158,41.45012899906],[-71.649161,41.45018399906],[-71.649199,41.45028999906],[-71.64924,41.45040199906],[-71.649376,41.45064199906],[-71.649474,41.45079699906],[-71.649569,41.45092499906],[-71.649668,41.45104599906],[-71.649765,41.45111299906],[-71.649897,41.45117499906],[-71.650124,41.45123599906],[-71.650285,41.45125299906],[-71.650436,41.45130199906],[-71.650588,41.45131299906],[-71.650729,41.45134099906],[-71.650827,41.45143499906],[-71.650846,41.45160499906],[-71.650918,41.45173599906],[-71.650987,41.45196799906],[-71.651001,41.45209899906],[-71.65098,41.45224299906],[-71.650913,41.45237799906],[-71.650693,41.45270599906],[-71.650616,41.45279399906],[-71.650525,41.45287899906],[-71.650446,41.45297399906],[-71.650377,41.45308399906],[-71.650321,41.45318599906],[-71.650279,41.45330199906],[-71.650199,41.45342399906],[-71.650113,41.45352199906],[-71.650089,41.45364999906],[-71.650093,41.45372499906],[-71.650156,41.45389399906],[-71.650301,41.45408299906],[-71.650377,41.45428099906],[-71.650427,41.45438399906],[-71.650496,41.45452699906],[-71.650573,41.45465399906],[-71.650721,41.45481399906],[-71.650855,41.45494899906],[-71.650946,41.45502599906],[-71.651075,41.45509599906],[-71.651324,41.45525699906],[-71.651645,41.45532999906],[-71.652729,41.45604899906],[-71.653132,41.45683399906],[-71.653674,41.45739199906],[-71.654769,41.45808599906],[-71.655011,41.45864899906],[-71.655029,41.45903099906],[-71.655227,41.45913699906],[-71.655483,41.45918399906],[-71.655813,41.45916499906],[-71.656375,41.45902099906],[-71.657703,41.45877499906],[-71.658664,41.45860599906],[-71.65954,41.45865899906],[-71.660428,41.45911899906],[-71.660703,41.45945299906],[-71.661304,41.45958299906],[-71.662053,41.45949999906],[-71.662469,41.45880599906],[-71.663374,41.45851499906],[-71.663545,41.45843899906],[-71.663612,41.45842399906],[-71.663687,41.45840599906],[-71.663841,41.45839299906],[-71.664003,41.45839999906],[-71.664152,41.45841299906],[-71.66434,41.45841799906],[-71.66447,41.45844699906],[-71.664608,41.45851799906],[-71.664726,41.45859399906],[-71.664873,41.45868099906],[-71.664997,41.45876099906],[-71.665368,41.45895799906],[-71.665683,41.45913599906],[-71.665829,41.45920299906],[-71.665988,41.45926799906],[-71.666141,41.45931299906],[-71.666277,41.45936299906],[-71.666526,41.45948999906],[-71.666773,41.45964399906],[-71.666883,41.45972799906],[-71.666992,41.45980199906],[-71.667147,41.45991999906],[-71.667278,41.45994199906],[-71.667398,41.46003999906],[-71.667502,41.46011599906],[-71.667776,41.46023599906],[-71.667891,41.46030699906],[-71.668008,41.46035899906],[-71.668097,41.46038199906],[-71.668124,41.46039499906],[-71.668264,41.46035799906],[-71.668283,41.46028099906],[-71.668353,41.46027199906],[-71.668492,41.46034899906],[-71.668539,41.46043599906],[-71.668527,41.46047699906],[-71.668668,41.46050299906],[-71.668828,41.46054199906],[-71.669002,41.46061099906],[-71.66916,41.46066399906],[-71.669317,41.46070799906],[-71.669478,41.46078299906],[-71.669568,41.46081999906],[-71.669747,41.46085999906],[-71.669896,41.46087899906],[-71.670047,41.46091499906],[-71.670216,41.46096299906],[-71.670376,41.46097799906],[-71.670531,41.46098299906],[-71.670651,41.46100599906],[-71.670653,41.46113299906],[-71.670701,41.46124099906],[-71.670819,41.46124599906],[-71.671361,41.46124299906],[-71.67135,41.46115299906],[-71.671528,41.46112799906],[-71.671683,41.46111899906],[-71.671716,41.46108799906],[-71.671882,41.46088899906],[-71.672046,41.46080699906],[-71.672168,41.46074099906],[-71.672305,41.46064099906],[-71.672465,41.46039899906],[-71.6725,41.46028299906],[-71.672519,41.46017499906],[-71.672516,41.45987899906],[-71.672531,41.45978199906],[-71.672595,41.45967699906],[-71.672675,41.45956899906],[-71.672745,41.45940599906],[-71.672769,41.45937299906],[-71.672908,41.45934699906],[-71.672994,41.45930899906],[-71.673038,41.45928999906],[-71.673085,41.45923399906],[-71.673193,41.45911999906],[-71.673293,41.45902599906],[-71.673507,41.45883899906],[-71.673634,41.45870499906],[-71.673862,41.45854299906],[-71.674007,41.45838999906],[-71.674119,41.45825599906],[-71.674228,41.45817299906],[-71.674343,41.45807799906],[-71.674437,41.45796699906],[-71.674494,41.45782499906],[-71.674525,41.45768299906],[-71.674527,41.45754899906],[-71.674509,41.45743599906],[-71.6744,41.45713299906],[-71.674323,41.45703399906],[-71.674284,41.45693099906],[-71.674275,41.45674799906],[-71.674279,41.45642699906],[-71.674296,41.45627599906],[-71.6744,41.45595699906],[-71.674433,41.45571299906],[-71.674469,41.45555399906],[-71.674518,41.45539899906],[-71.674538,41.45498899906],[-71.674597,41.45474399906],[-71.67464,41.45461399906],[-71.674712,41.45451999906],[-71.674798,41.45441899906],[-71.674866,41.45431899906],[-71.674959,41.45414399906],[-71.675035,41.45402899906],[-71.675085,41.45387999906],[-71.675112,41.45376199906],[-71.67517,41.45365099906],[-71.675213,41.45354099906],[-71.675386,41.45330199906],[-71.675481,41.45321699906],[-71.675729,41.45305499906],[-71.675826,41.45296999906],[-71.675976,41.45289899906],[-71.676107,41.45279699906],[-71.676265,41.45264999906],[-71.676329,41.45252399906],[-71.676403,41.45245299906],[-71.67644,41.45234099906],[-71.676579,41.45205399906],[-71.676582,41.45188699906],[-71.676562,41.45177499906],[-71.67653,41.45165399906],[-71.676531,41.45154499906],[-71.676552,41.45137199906],[-71.676586,41.45125699906],[-71.676599,41.45108599906],[-71.676629,41.45096499906],[-71.676693,41.45079799906],[-71.676719,41.45068499906],[-71.67673,41.45057099906],[-71.676731,41.45045599906],[-71.676726,41.45005199906],[-71.67668,41.44993099906],[-71.676654,41.44983099906],[-71.676655,41.44971399906],[-71.676664,41.44957899906],[-71.676695,41.44952599906],[-71.676764,41.44945899906],[-71.676779,41.44932599906],[-71.676785,41.44918599906],[-71.676803,41.44910099906],[-71.676877,41.44898299906],[-71.676942,41.44883899906],[-71.676977,41.44876299906],[-71.677085,41.44864299906],[-71.677147,41.44853599906],[-71.677198,41.44842899906],[-71.677243,41.44839099906],[-71.677384,41.44833399906],[-71.677488,41.44825799906],[-71.677586,41.44816999906],[-71.67786,41.44799899906],[-71.678196,41.44785999906],[-71.678366,41.44778299906],[-71.678481,41.44770999906],[-71.678791,41.44757499906],[-71.678909,41.44750199906],[-71.67931,41.44718699906],[-71.679397,41.44707499906],[-71.679475,41.44694299906],[-71.679549,41.44685399906],[-71.679692,41.44676999906],[-71.679911,41.44668299906],[-71.680134,41.44661799906],[-71.680309,41.44659699906],[-71.680461,41.44655699906],[-71.680604,41.44650399906],[-71.680758,41.44639699906],[-71.680886,41.44627499906],[-71.680992,41.44618199906],[-71.681129,41.44604599906],[-71.681179,41.44586399906],[-71.68119,41.44570399906],[-71.681181,41.44552299906],[-71.681117,41.44506499906],[-71.681078,41.44494599906],[-71.68105,41.44480799906],[-71.681013,41.44455799906],[-71.681007,41.44442699906],[-71.680979,41.44410599906],[-71.680983,41.44393899906],[-71.681011,41.44381499906],[-71.681077,41.44363799906],[-71.681094,41.44351099906],[-71.681103,41.44334199906],[-71.681202,41.44309299906],[-71.681287,41.44298199906],[-71.681546,41.44270799906],[-71.68167,41.44256699906],[-71.68194,41.44227499906],[-71.681997,41.44217299906],[-71.682065,41.44203199906],[-71.682128,41.44192999906],[-71.682241,41.44182399906],[-71.682435,41.44157199906],[-71.682754,41.44127199906],[-71.682873,41.44119099906],[-71.682983,41.44114799906],[-71.683105,41.44104799906],[-71.683289,41.44084699906],[-71.683409,41.44070599906],[-71.683444,41.44064399906],[-71.683702,41.44033999906],[-71.683809,41.44018899906],[-71.6839,41.44004199906],[-71.683969,41.43996099906],[-71.68409,41.43978199906],[-71.684142,41.43968799906],[-71.684217,41.43961699906],[-71.684306,41.43955999906],[-71.68441,41.43949999906],[-71.684515,41.43944899906],[-71.684634,41.43941699906],[-71.684766,41.43938699906],[-71.684892,41.43937099906],[-71.684973,41.43939599906],[-71.684978,41.43941899906],[-71.684814,41.43958599906],[-71.684735,41.43964999906],[-71.684738,41.43970099906],[-71.684759,41.43977699906],[-71.684793,41.43982899906],[-71.684842,41.43984199906],[-71.684896,41.43979999906],[-71.685092,41.43956299906],[-71.68528,41.43928099906],[-71.685328,41.43919399906],[-71.685394,41.43904599906],[-71.685411,41.43899199906],[-71.685421,41.43893799906],[-71.68542,41.43888299906],[-71.68539,41.43877299906],[-71.685381,41.43871699906],[-71.685374,41.43855599906],[-71.685372,41.43853599906],[-71.685371,41.43851699906],[-71.68537,41.43850199906],[-71.685339,41.43840099906],[-71.685333,41.43834299906],[-71.685331,41.43821799906],[-71.685305,41.43804499906],[-71.68525,41.43788099906],[-71.685252,41.43765999906],[-71.685266,41.43760599906],[-71.685291,41.43755199906],[-71.685366,41.43745999906],[-71.685419,41.43742099906],[-71.685484,41.43738299906],[-71.685716,41.43727499906],[-71.685783,41.43723999906],[-71.685901,41.43716199906],[-71.685961,41.43712899906],[-71.686077,41.43708099906],[-71.686199,41.43707299906],[-71.686323,41.43712399906],[-71.686365,41.43713999906],[-71.686393,41.43711999906],[-71.686442,41.43704799906],[-71.68647,41.43697099906],[-71.686461,41.43690199906],[-71.686431,41.43681999906],[-71.686409,41.43672399906],[-71.686406,41.43662999906],[-71.686369,41.43654999906],[-71.686317,41.43647599906],[-71.68626,41.43638399906],[-71.686177,41.43629299906],[-71.686102,41.43617899906],[-71.686057,41.43612299906],[-71.685952,41.43601199906],[-71.685813,41.43583799906],[-71.68571,41.43574199906],[-71.685559,41.43556999906],[-71.685438,41.43538599906],[-71.685401,41.43531799906],[-71.685349,41.43512199906],[-71.685295,41.43498399906],[-71.685285,41.43486199906],[-71.685298,41.43479899906],[-71.685342,41.43473699906],[-71.685409,41.43469799906],[-71.685479,41.43466399906],[-71.68555,41.43461999906],[-71.68576,41.43451799906],[-71.686015,41.43442899906],[-71.686147,41.43440499906],[-71.686279,41.43439899906],[-71.686395,41.43440699906],[-71.686501,41.43443999906],[-71.686613,41.43448099906],[-71.686713,41.43452599906],[-71.686792,41.43456699906],[-71.686865,41.43462099906],[-71.68692,41.43463099906],[-71.687007,41.43462999906],[-71.687113,41.43461999906],[-71.687312,41.43451899906],[-71.687531,41.43442099906],[-71.687632,41.43434699906],[-71.687792,41.43418599906],[-71.687984,41.43392899906],[-71.688151,41.43376099906],[-71.688228,41.43367099906],[-71.688314,41.43360099906],[-71.688405,41.43355399906],[-71.688493,41.43353199906],[-71.688659,41.43355699906],[-71.688727,41.43358299906],[-71.68881,41.43358799906],[-71.688912,41.43358799906],[-71.689029,41.43357099906],[-71.689155,41.43357599906],[-71.689396,41.43359599906],[-71.689479,41.43363399906],[-71.689475,41.43365699906],[-71.68938,41.43367399906],[-71.689129,41.43367599906],[-71.689036,41.43369299906],[-71.688955,41.43369599906],[-71.688842,41.43370799906],[-71.688692,41.43371399906],[-71.688559,41.43373299906],[-71.688511,41.43376499906],[-71.688487,41.43380699906],[-71.688494,41.43383799906],[-71.688626,41.43386299906],[-71.688684,41.43389999906],[-71.688675,41.43394299906],[-71.6886,41.43398299906],[-71.688508,41.43400099906],[-71.688506,41.43406199906],[-71.688519,41.43411599906],[-71.688546,41.43418499906],[-71.688529,41.43424299906],[-71.688462,41.43429999906],[-71.688374,41.43436499906],[-71.688265,41.43445399906],[-71.688159,41.43457099906],[-71.688137,41.43457299906],[-71.688075,41.43453799906],[-71.688022,41.43447699906],[-71.687969,41.43445599906],[-71.687892,41.43449499906],[-71.687832,41.43453599906],[-71.687917,41.43459599906],[-71.687964,41.43466699906],[-71.68802,41.43473999906],[-71.688017,41.43477599906],[-71.687952,41.43483699906],[-71.687906,41.43488799906],[-71.687743,41.43509599906],[-71.687757,41.43511199906],[-71.687841,41.43507499906],[-71.687926,41.43500399906],[-71.688081,41.43489599906],[-71.688132,41.43485599906],[-71.688315,41.43469199906],[-71.688368,41.43465199906],[-71.688563,41.43452799906],[-71.688839,41.43432499906],[-71.689044,41.43419599906],[-71.68915,41.43410899906],[-71.68933,41.43399099906],[-71.689398,41.43395399906],[-71.689693,41.43381999906],[-71.68995,41.43371399906],[-71.690127,41.43362699906],[-71.69022,41.43358899906],[-71.690406,41.43352399906],[-71.69071,41.43340399906],[-71.690856,41.43333799906],[-71.691008,41.43327799906],[-71.691076,41.43324599906],[-71.691269,41.43313999906],[-71.691477,41.43304299906],[-71.69169,41.43294999906],[-71.691852,41.43285699906],[-71.691959,41.43281799906],[-71.692056,41.43278799906],[-71.692143,41.43276999906],[-71.692475,41.43287999906],[-71.692511,41.43293299906],[-71.692529,41.43299799906],[-71.692576,41.43310999906],[-71.692623,41.43317499906],[-71.69266,41.43323599906],[-71.692628,41.43326299906],[-71.692552,41.43325799906],[-71.692473,41.43322999906],[-71.692386,41.43318199906],[-71.692307,41.43312699906],[-71.692219,41.43308899906],[-71.69215,41.43311899906],[-71.692088,41.43317999906],[-71.692058,41.43323599906],[-71.692083,41.43329399906],[-71.692143,41.43335199906],[-71.69222,41.43340399906],[-71.692321,41.43344199906],[-71.692427,41.43348999906],[-71.692649,41.43358099906],[-71.6927,41.43362099906],[-71.692689,41.43368699906],[-71.692642,41.43373599906],[-71.692373,41.43381299906],[-71.692299,41.43382599906],[-71.692223,41.43383199906],[-71.692084,41.43382999906],[-71.691976,41.43384099906],[-71.691885,41.43387099906],[-71.691761,41.43387999906],[-71.691597,41.43386399906],[-71.691456,41.43382999906],[-71.691251,41.43380799906],[-71.691314,41.43383799906],[-71.691401,41.43387199906],[-71.6915,41.43390399906],[-71.691614,41.43392899906],[-71.691805,41.43395799906],[-71.691971,41.43396099906],[-71.692045,41.43395899906],[-71.692256,41.43394299906],[-71.69254,41.43392999906],[-71.692616,41.43391299906],[-71.692731,41.43387999906],[-71.692873,41.43384099906],[-71.693154,41.43369099906],[-71.693239,41.43367599906],[-71.693293,41.43366799906],[-71.69348,41.43364799906],[-71.693622,41.43369899906],[-71.693772,41.43371899906],[-71.69393,41.43362099906],[-71.693909,41.43352699906],[-71.693882,41.43344099906],[-71.693946,41.43312499906],[-71.693972,41.43306599906],[-71.694031,41.43301199906],[-71.694152,41.43293999906],[-71.694122,41.43287999906],[-71.69407,41.43279099906],[-71.693893,41.43248399906],[-71.693626,41.43197999906],[-71.693443,41.43164099906],[-71.693413,41.43155699906],[-71.693375,41.43147699906],[-71.693329,41.43131299906],[-71.693314,41.43123599906],[-71.693314,41.43101099906],[-71.693329,41.43093499906],[-71.693344,41.43078599906],[-71.693359,41.43073999906],[-71.69339,41.43062999906],[-71.693419,41.43054899906],[-71.693459,41.43046599906],[-71.69352,41.43029399906],[-71.693596,41.43012199906],[-71.693626,41.43003499906],[-71.69371,41.42984399906],[-71.693787,41.42964199906],[-71.693909,41.42927899906],[-71.693932,41.42919199906],[-71.693962,41.42910399906],[-71.693977,41.42902799906],[-71.694,41.42895099906],[-71.694021,41.42884099906],[-71.694036,41.42872299906],[-71.694066,41.42853699906],[-71.694102,41.42835899906],[-71.694119,41.42828199906],[-71.694161,41.42811399906],[-71.694192,41.42801199906],[-71.694216,41.42794899906],[-71.694259,41.42784799906],[-71.694298,41.42777699906],[-71.694333,41.42772599906],[-71.694364,41.42767799906],[-71.694399,41.42762099906],[-71.694419,41.42759299906],[-71.694506,41.42748499906],[-71.694557,41.42742699906],[-71.694591,41.42739099906],[-71.694634,41.42734799906],[-71.694709,41.42728099906],[-71.694787,41.42720499906],[-71.694855,41.42713899906],[-71.694938,41.42704599906],[-71.695,41.42697499906],[-71.695038,41.42691799906],[-71.695061,41.42686799906],[-71.695091,41.42676499906],[-71.695099,41.42670099906],[-71.695099,41.42657099906]]]}}"}, +{"type": "blockgroup", "typeId": 511013, "areaId": 29424, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.730388,41.34279199906],[-71.729956,41.33332599906],[-71.729955,41.33330899906],[-71.729927,41.33271699906],[-71.729904,41.33219999906],[-71.729879,41.33167699906],[-71.729829,41.33055699906],[-71.729246,41.33074399906],[-71.724454,41.33086999906],[-71.718815,41.32958299906],[-71.712105,41.33017299906],[-71.70618,41.33242399906],[-71.700541,41.33569299906],[-71.698832,41.33735299906],[-71.69875,41.33722199906],[-71.693023,41.34032899906],[-71.690524,41.34109299906],[-71.683853,41.34313399906],[-71.649975,41.35212099906],[-71.640211,41.35447899906],[-71.638371,41.35389299906],[-71.638546,41.35488299906],[-71.638726,41.35484599906],[-71.638729,41.35490299906],[-71.638752,41.35496799906],[-71.638767,41.35503299906],[-71.638768,41.35521899906],[-71.638816,41.35533499906],[-71.638834,41.35539699906],[-71.638866,41.35559899906],[-71.638891,41.35568699906],[-71.638904,41.35573199906],[-71.638964,41.35598999906],[-71.638983,41.35604499906],[-71.639035,41.35630599906],[-71.639061,41.35637399906],[-71.639078,41.35644599906],[-71.639078,41.35651599906],[-71.63909,41.35657299906],[-71.639093,41.35658599906],[-71.63912,41.35665699906],[-71.639122,41.35672199906],[-71.639149,41.35684999906],[-71.639153,41.35690499906],[-71.639182,41.35697099906],[-71.639192,41.35702599906],[-71.639215,41.35707899906],[-71.639252,41.35713599906],[-71.639294,41.35718899906],[-71.639352,41.35722399906],[-71.639396,41.35727599906],[-71.639445,41.35732399906],[-71.639615,41.35744899906],[-71.639681,41.35749199906],[-71.639817,41.35760299906],[-71.639896,41.35763999906],[-71.639969,41.35766299906],[-71.640025,41.35773299906],[-71.640053,41.35778799906],[-71.640063,41.35784799906],[-71.640061,41.35791199906],[-71.640043,41.35797999906],[-71.639966,41.35810999906],[-71.639937,41.35816699906],[-71.639885,41.35821999906],[-71.639814,41.35823199906],[-71.63974,41.35821999906],[-71.639728,41.35830099906],[-71.639726,41.35836599906],[-71.639716,41.35842099906],[-71.639689,41.35847599906],[-71.639669,41.35853999906],[-71.639679,41.35861999906],[-71.639676,41.35870299906],[-71.639663,41.35882099906],[-71.639674,41.35883199906],[-71.639675,41.35895599906],[-71.639668,41.35901699906],[-71.639615,41.35905999906],[-71.639547,41.35908899906],[-71.639479,41.35912399906],[-71.639415,41.35917699906],[-71.639357,41.35924199906],[-71.639271,41.35937999906],[-71.639222,41.35944699906],[-71.639193,41.35950599906],[-71.639157,41.35956299906],[-71.639113,41.35961299906],[-71.639037,41.35972099906],[-71.639023,41.35978199906],[-71.639039,41.35984599906],[-71.639078,41.35989199906],[-71.639189,41.35999499906],[-71.639291,41.36010499906],[-71.639427,41.36019699906],[-71.639456,41.36024699906],[-71.639514,41.36030099906],[-71.639589,41.36035999906],[-71.639629,41.36040699906],[-71.63974,41.36056099906],[-71.639794,41.36060299906],[-71.639931,41.36066999906],[-71.640007,41.36070099906],[-71.640091,41.36072699906],[-71.64025,41.36075999906],[-71.640336,41.36080099906],[-71.640407,41.36085999906],[-71.640485,41.36090899906],[-71.640571,41.36095299906],[-71.640628,41.36098999906],[-71.640679,41.36103299906],[-71.640692,41.36104899906],[-71.640719,41.36108199906],[-71.640812,41.36123899906],[-71.640838,41.36129199906],[-71.640876,41.36140699906],[-71.640879,41.36146499906],[-71.640876,41.36160199906],[-71.640867,41.36165699906],[-71.640806,41.36184999906],[-71.64077,41.36190499906],[-71.640669,41.36202399906],[-71.640598,41.36208299906],[-71.640513,41.36213199906],[-71.640461,41.36216999906],[-71.640414,41.36221699906],[-71.640285,41.36236899906],[-71.640267,41.36237699906],[-71.640253,41.36243799906],[-71.640227,41.36248899906],[-71.640137,41.36260899906],[-71.64011,41.36267599906],[-71.640108,41.36296999906],[-71.640121,41.36302299906],[-71.640166,41.36313599906],[-71.640166,41.36319399906],[-71.640197,41.36323499906],[-71.640268,41.36326499906],[-71.64044,41.36331199906],[-71.640541,41.36332799906],[-71.640797,41.36332899906],[-71.640877,41.36332099906],[-71.640928,41.36327499906],[-71.641,41.36322799906],[-71.641076,41.36319999906],[-71.641166,41.36318199906],[-71.64125,41.36317399906],[-71.641299,41.36320999906],[-71.641301,41.36333599906],[-71.641273,41.36339199906],[-71.641276,41.36346199906],[-71.641314,41.36350899906],[-71.641364,41.36351599906],[-71.641424,41.36350399906],[-71.641488,41.36353299906],[-71.641551,41.36354099906],[-71.641585,41.36350299906],[-71.641641,41.36351699906],[-71.641686,41.36358099906],[-71.641695,41.36364599906],[-71.641693,41.36377799906],[-71.641676,41.36384899906],[-71.641654,41.36390799906],[-71.641651,41.36402399906],[-71.641662,41.36408399906],[-71.64171,41.36414499906],[-71.641773,41.36420299906],[-71.641861,41.36424499906],[-71.641961,41.36425699906],[-71.642139,41.36425499906],[-71.642237,41.36424299906],[-71.642324,41.36422099906],[-71.64241,41.36419199906],[-71.642656,41.36408899906],[-71.642881,41.36400099906],[-71.642945,41.36396999906],[-71.643001,41.36392999906],[-71.643046,41.36388299906],[-71.643122,41.36377199906],[-71.643155,41.36371199906],[-71.64318,41.36365099906],[-71.643209,41.36353699906],[-71.643216,41.36345999906],[-71.643227,41.36317499906],[-71.643238,41.36310299906],[-71.643258,41.36302999906],[-71.643293,41.36295699906],[-71.643336,41.36291299906],[-71.643447,41.36283299906],[-71.643612,41.36269899906],[-71.643756,41.36257399906],[-71.6438,41.36253099906],[-71.643902,41.36239499906],[-71.643949,41.36234199906],[-71.643957,41.36229999906],[-71.643911,41.36227599906],[-71.643834,41.36229099906],[-71.64376,41.36232299906],[-71.643686,41.36232999906],[-71.643497,41.36232599906],[-71.643398,41.36230999906],[-71.64323,41.36226499906],[-71.643141,41.36224599906],[-71.643063,41.36222099906],[-71.642961,41.36213699906],[-71.642989,41.36208599906],[-71.643065,41.36206899906],[-71.643137,41.36209099906],[-71.643209,41.36212099906],[-71.643345,41.36216499906],[-71.643414,41.36219499906],[-71.643483,41.36221499906],[-71.64364,41.36221599906],[-71.643711,41.36220299906],[-71.643708,41.36213599906],[-71.643696,41.36208099906],[-71.643693,41.36196099906],[-71.643671,41.36189699906],[-71.6436,41.36176399906],[-71.64356,41.36170799906],[-71.64355,41.36165299906],[-71.643548,41.36139999906],[-71.643533,41.36134399906],[-71.64353,41.36122099906],[-71.643504,41.36108599906],[-71.643496,41.36102099906],[-71.643448,41.36081299906],[-71.64343,41.36068099906],[-71.643395,41.36056299906],[-71.64577537953024,41.36044400505225],[-71.645775,41.36044499906],[-71.645743,41.36049999906],[-71.645732,41.36055699906],[-71.645759,41.36061199906],[-71.645809,41.36065699906],[-71.64581,41.36077799906],[-71.645801,41.36083499906],[-71.645774,41.36089599906],[-71.645742,41.36094799906],[-71.645693,41.36106399906],[-71.645609,41.36119899906],[-71.645561,41.36126799906],[-71.645445,41.36138699906],[-71.645352,41.36149099906],[-71.64518,41.36162699906],[-71.645115,41.36166399906],[-71.645039,41.36167799906],[-71.644957,41.36166999906],[-71.644874,41.36164199906],[-71.644794,41.36162299906],[-71.644721,41.36162099906],[-71.644657,41.36162899906],[-71.644637,41.36168699906],[-71.64465,41.36174399906],[-71.644727,41.36178499906],[-71.644903,41.36181899906],[-71.645184,41.36188799906],[-71.645339,41.36194699906],[-71.64541,41.36196799906],[-71.64548,41.36199699906],[-71.645548,41.36203199906],[-71.645606,41.36207299906],[-71.645654,41.36211799906],[-71.645701,41.36217199906],[-71.645738,41.36224399906],[-71.64578,41.36242199906],[-71.645785,41.36248699906],[-71.645814,41.36255699906],[-71.645929,41.36265199906],[-71.645972,41.36270099906],[-71.646029,41.36274399906],[-71.646105,41.36278299906],[-71.646188,41.36281799906],[-71.646574,41.36295199906],[-71.646664,41.36297099906],[-71.646748,41.36300099906],[-71.646838,41.36302599906],[-71.647009,41.36306099906],[-71.647157,41.36311599906],[-71.647232,41.36311299906],[-71.647297,41.36308899906],[-71.647431,41.36300999906],[-71.647487,41.36297199906],[-71.647607,41.36287799906],[-71.647721,41.36279999906],[-71.647797,41.36276699906],[-71.647887,41.36275699906],[-71.64805,41.36275699906],[-71.648206,41.36274999906],[-71.648366,41.36274799906],[-71.648408,41.36272199906],[-71.648394,41.36266799906],[-71.648347,41.36261799906],[-71.648313,41.36250099906],[-71.648283,41.36244499906],[-71.648261,41.36238299906],[-71.64823,41.36223799906],[-71.648182,41.36205599906],[-71.648154,41.36199199906],[-71.648131,41.36192199906],[-71.648096,41.36185599906],[-71.648053,41.36180099906],[-71.647955,41.36161999906],[-71.647877,41.36143599906],[-71.647811,41.36132599906],[-71.647745,41.36119599906],[-71.647698,41.36112899906],[-71.647592,41.36100099906],[-71.647407,41.36073799906],[-71.647291,41.36053599906],[-71.647234,41.36040599906],[-71.64722438017681,41.36037157021908],[-71.66052030507063,41.35970691344074],[-71.660502,41.35973099906],[-71.660445,41.35983299906],[-71.660423,41.35988999906],[-71.660417,41.35994999906],[-71.660419,41.36000999906],[-71.660445,41.36007099906],[-71.660516,41.36017199906],[-71.660559,41.36021599906],[-71.660676,41.36028599906],[-71.660678,41.36034699906],[-71.660651,41.36037699906],[-71.660637,41.36039199906],[-71.660572,41.36042399906],[-71.66049,41.36044199906],[-71.660399,41.36043199906],[-71.660318,41.36039799906],[-71.660278,41.36034599906],[-71.660227,41.36031199906],[-71.660059,41.36031499906],[-71.659986,41.36033799906],[-71.659915,41.36035199906],[-71.659838,41.36033899906],[-71.659645,41.36027999906],[-71.659293,41.36019699906],[-71.6592,41.36019299906],[-71.659114,41.36020899906],[-71.658892,41.36031399906],[-71.658804,41.36033899906],[-71.658699,41.36035099906],[-71.65843,41.36034999906],[-71.658334,41.36035499906],[-71.658256,41.36038899906],[-71.658197,41.36042499906],[-71.658031,41.36055199906],[-71.657914,41.36065499906],[-71.657846,41.36068199906],[-71.657757,41.36068899906],[-71.657578,41.36067599906],[-71.657137,41.36056399906],[-71.657051,41.36053699906],[-71.656978,41.36050699906],[-71.656841,41.36042499906],[-71.656693,41.36034299906],[-71.656638,41.36029999906],[-71.656523,41.36019799906],[-71.656493,41.36014699906],[-71.656445,41.36007999906],[-71.656378,41.36002899906],[-71.6563,41.35999399906],[-71.656227,41.35996899906],[-71.656056,41.35996799906],[-71.655893,41.35995799906],[-71.655812,41.35995799906],[-71.655717,41.35996499906],[-71.65564,41.35998999906],[-71.655563,41.36002699906],[-71.655439,41.36010399906],[-71.655351,41.36014499906],[-71.655193,41.36020699906],[-71.655109,41.36023499906],[-71.655013,41.36024499906],[-71.654937,41.36024099906],[-71.654765,41.36021299906],[-71.654525,41.36014599906],[-71.654373,41.36009199906],[-71.654298,41.36009799906],[-71.65427,41.36013099906],[-71.654277,41.36018399906],[-71.654278,41.36019599906],[-71.654441,41.36051399906],[-71.65449,41.36057799906],[-71.654558,41.36063699906],[-71.654635,41.36068599906],[-71.654721,41.36073299906],[-71.654815,41.36076499906],[-71.654914,41.36078299906],[-71.655015,41.36079399906],[-71.655106,41.36079899906],[-71.655269,41.36079899906],[-71.655351,41.36079299906],[-71.655423,41.36076299906],[-71.655486,41.36072099906],[-71.655554,41.36068499906],[-71.655683,41.36059699906],[-71.655756,41.36055699906],[-71.655902,41.36048899906],[-71.655998,41.36049099906],[-71.656161,41.36050699906],[-71.656238,41.36054899906],[-71.656292,41.36059799906],[-71.656414,41.36067999906],[-71.656536,41.36077599906],[-71.656639,41.36088799906],[-71.656678,41.36093999906],[-71.656715,41.36099899906],[-71.656814,41.36113299906],[-71.656859,41.36126099906],[-71.65691,41.36138099906],[-71.65693,41.36144599906],[-71.656942,41.36151999906],[-71.656937,41.36165499906],[-71.656877,41.36185499906],[-71.656848,41.36191899906],[-71.656724,41.36211899906],[-71.65669,41.36216699906],[-71.65663,41.36221899906],[-71.656552,41.36226399906],[-71.656262,41.36240499906],[-71.656184,41.36243399906],[-71.656103,41.36245699906],[-71.655874,41.36250399906],[-71.655782,41.36250399906],[-71.6557,41.36249399906],[-71.655627,41.36246799906],[-71.65546,41.36235599906],[-71.655396,41.36232399906],[-71.655316,41.36231999906],[-71.655229,41.36233599906],[-71.655156,41.36237199906],[-71.655019,41.36252399906],[-71.654981,41.36258999906],[-71.654958,41.36266699906],[-71.654946,41.36279799906],[-71.654919,41.36286299906],[-71.654903,41.36293799906],[-71.654892,41.36305599906],[-71.654867,41.36319499906],[-71.654862,41.36325899906],[-71.654861,41.36338899906],[-71.654865,41.36345199906],[-71.654885,41.36350599906],[-71.654934,41.36352699906],[-71.654987,41.36353699906],[-71.654998,41.36359699906],[-71.654989,41.36365899906],[-71.654949,41.36370699906],[-71.6549,41.36375199906],[-71.654863,41.36380699906],[-71.654836,41.36385899906],[-71.654784,41.36391699906],[-71.654707,41.36395099906],[-71.654621,41.36394699906],[-71.654547,41.36393399906],[-71.65451,41.36391799906],[-71.654465,41.36389999906],[-71.654412,41.36386299906],[-71.654349,41.36383399906],[-71.654274,41.36382699906],[-71.654183,41.36382799906],[-71.654092,41.36383699906],[-71.65401,41.36386499906],[-71.653943,41.36390699906],[-71.653828,41.36398899906],[-71.653732,41.36408599906],[-71.653635,41.36421799906],[-71.653576,41.36427799906],[-71.653443,41.36437799906],[-71.65337,41.36442099906],[-71.653299,41.36444799906],[-71.653239,41.36448199906],[-71.653192,41.36452399906],[-71.65316,41.36464399906],[-71.653157,41.36477199906],[-71.653164,41.36483399906],[-71.653205,41.36496599906],[-71.653248,41.36501199906],[-71.653324,41.36503899906],[-71.653374,41.36503199906],[-71.653421,41.36497899906],[-71.653472,41.36493499906],[-71.653538,41.36489999906],[-71.653621,41.36490199906],[-71.653702,41.36491699906],[-71.653818,41.36499899906],[-71.653881,41.36504999906],[-71.653964,41.36515899906],[-71.65399,41.36521899906],[-71.653991,41.36536999906],[-71.653996,41.36544199906],[-71.654017,41.36550999906],[-71.654087,41.36563999906],[-71.654109,41.36570499906],[-71.654109,41.36583799906],[-71.654076,41.36589799906],[-71.654023,41.36595599906],[-71.653959,41.36599599906],[-71.653887,41.36602399906],[-71.653808,41.36604699906],[-71.653717,41.36605499906],[-71.653631,41.36604899906],[-71.653474,41.36601599906],[-71.653391,41.36602699906],[-71.653309,41.36605199906],[-71.653238,41.36609199906],[-71.653178,41.36613699906],[-71.653105,41.36617499906],[-71.653026,41.36617599906],[-71.652948,41.36618499906],[-71.652875,41.36621299906],[-71.652805,41.36624799906],[-71.652722,41.36627699906],[-71.652621,41.36628999906],[-71.652483,41.36629199906],[-71.652431,41.36629299906],[-71.652355,41.36629099906],[-71.652277,41.36628099906],[-71.652223,41.36623399906],[-71.652211,41.36620699906],[-71.652136,41.36621799906],[-71.652058,41.36623899906],[-71.651993,41.36627199906],[-71.651939,41.36632199906],[-71.651918,41.36638899906],[-71.651909,41.36645199906],[-71.651888,41.36652599906],[-71.651863,41.36659099906],[-71.651832,41.36664899906],[-71.651792,41.36669699906],[-71.651738,41.36673499906],[-71.651668,41.36676799906],[-71.651582,41.36678999906],[-71.651492,41.36680399906],[-71.651244,41.36679799906],[-71.651156,41.36680099906],[-71.651072,41.36681699906],[-71.650919,41.36688199906],[-71.650844,41.36690399906],[-71.650752,41.36690699906],[-71.64972,41.36690299906],[-71.649537,41.36690699906],[-71.649347,41.36692399906],[-71.649162,41.36696399906],[-71.649001,41.36699099906],[-71.648929,41.36703099906],[-71.648899,41.36708799906],[-71.648903,41.36715999906],[-71.648937,41.36718299906],[-71.649024,41.36716399906],[-71.649102,41.36714099906],[-71.649197,41.36712599906],[-71.649283,41.36712199906],[-71.649373,41.36711099906],[-71.649546,41.36710999906],[-71.649715,41.36709399906],[-71.6498,41.36709899906],[-71.64982,41.36714599906],[-71.649803,41.36721399906],[-71.649732,41.36733299906],[-71.649616,41.36743099906],[-71.649571,41.36748999906],[-71.649543,41.36754899906],[-71.64954,41.36767499906],[-71.649583,41.36772999906],[-71.649799,41.36789999906],[-71.649856,41.36793299906],[-71.649939,41.36794999906],[-71.650005,41.36794399906],[-71.65007,41.36792599906],[-71.650113,41.36790899906],[-71.650172,41.36786599906],[-71.65022,41.36780899906],[-71.650254,41.36774699906],[-71.650353,41.36747199906],[-71.650367,41.36740799906],[-71.650387,41.36735599906],[-71.650441,41.36730399906],[-71.650507,41.36726099906],[-71.650661,41.36718299906],[-71.650796,41.36710299906],[-71.650869,41.36707699906],[-71.650958,41.36708199906],[-71.651028,41.36712099906],[-71.651087,41.36715999906],[-71.651169,41.36718999906],[-71.651253,41.36719199906],[-71.651321,41.36716299906],[-71.651375,41.36712499906],[-71.651436,41.36709199906],[-71.651528,41.36710099906],[-71.651688,41.36710099906],[-71.651762,41.36709599906],[-71.652167,41.36718199906],[-71.652239,41.36720199906],[-71.652327,41.36721999906],[-71.652412,41.36724699906],[-71.65262,41.36733499906],[-71.652695,41.36737299906],[-71.652743,41.36741399906],[-71.652801,41.36753199906],[-71.652804,41.36759499906],[-71.652786,41.36765699906],[-71.652752,41.36770499906],[-71.652721,41.36776499906],[-71.65272,41.36788799906],[-71.652699,41.36801499906],[-71.652681,41.36807499906],[-71.652645,41.36813799906],[-71.652625,41.36819399906],[-71.652625,41.36825599906],[-71.652634,41.36832999906],[-71.652668,41.36845599906],[-71.652679,41.36858799906],[-71.652675,41.36864499906],[-71.652634,41.36870699906],[-71.652576,41.36874799906],[-71.652501,41.36877299906],[-71.652437,41.36880199906],[-71.65237,41.36884099906],[-71.652287,41.36887399906],[-71.652136,41.36889599906],[-71.652062,41.36892899906],[-71.652007,41.36896899906],[-71.651952,41.36902299906],[-71.651921,41.36904099906],[-71.651869,41.36901399906],[-71.651848,41.36895999906],[-71.65183,41.36874299906],[-71.651831,41.36857399906],[-71.651825,41.36851899906],[-71.651789,41.36846399906],[-71.651661,41.36837899906],[-71.651592,41.36834999906],[-71.651509,41.36836099906],[-71.651454,41.36840799906],[-71.651406,41.36853199906],[-71.651366,41.36859299906],[-71.651303,41.36863899906],[-71.651235,41.36867399906],[-71.651215,41.36871299906],[-71.651265,41.36875699906],[-71.651258,41.36881299906],[-71.651237,41.36886499906],[-71.651241,41.36892299906],[-71.651273,41.36892699906],[-71.651298,41.36887399906],[-71.651346,41.36882299906],[-71.651508,41.36882099906],[-71.651581,41.36883199906],[-71.651626,41.36889199906],[-71.651716,41.36899899906],[-71.651744,41.36905299906],[-71.651792,41.36917699906],[-71.651799,41.36929099906],[-71.65179,41.36935399906],[-71.651742,41.36946799906],[-71.651695,41.36952499906],[-71.65169,41.36959199906],[-71.651728,41.36964999906],[-71.651777,41.36969799906],[-71.651835,41.36973699906],[-71.651912,41.36973699906],[-71.651984,41.36975599906],[-71.652048,41.36978599906],[-71.652118,41.36981199906],[-71.65218,41.36985499906],[-71.652224,41.36990399906],[-71.65229,41.36993699906],[-71.652373,41.36993699906],[-71.65242,41.36989099906],[-71.65247,41.36982699906],[-71.652574,41.36971099906],[-71.652631,41.36966299906],[-71.652766,41.36958999906],[-71.653048,41.36946699906],[-71.653122,41.36946299906],[-71.653203,41.36946399906],[-71.653276,41.36948199906],[-71.653339,41.36951899906],[-71.653391,41.36956699906],[-71.653445,41.36958899906],[-71.653521,41.36958599906],[-71.653688,41.36958699906],[-71.653733,41.36960499906],[-71.653734,41.36971699906],[-71.653705,41.36972899906],[-71.653527,41.36972899906],[-71.653468,41.36970599906],[-71.653409,41.36968999906],[-71.653334,41.36970699906],[-71.653269,41.36975199906],[-71.653224,41.36980199906],[-71.653158,41.36991399906],[-71.653172,41.36995699906],[-71.653217,41.37000199906],[-71.653233,41.37005599906],[-71.653196,41.37011499906],[-71.653199,41.37023799906],[-71.653194,41.37029899906],[-71.653211,41.37032999906],[-71.653286,41.37032999906],[-71.653343,41.37034499906],[-71.653364,41.37040699906],[-71.653334,41.37046299906],[-71.653338,41.37052599906],[-71.653349,41.37058399906],[-71.653373,41.37063999906],[-71.653382,41.37070499906],[-71.653361,41.37075899906],[-71.653307,41.37079899906],[-71.65326,41.37084599906],[-71.653227,41.37089699906],[-71.653171,41.37094599906],[-71.653102,41.37093699906],[-71.653057,41.37088399906],[-71.653038,41.37083199906],[-71.65297,41.37079799906],[-71.652885,41.37079599906],[-71.652806,41.37077599906],[-71.652656,41.37069799906],[-71.652593,41.37064399906],[-71.652326,41.37045899906],[-71.652171,41.37037799906],[-71.652099,41.37034899906],[-71.652022,41.37034699906],[-71.651978,41.37036599906],[-71.651976,41.37040999906],[-71.652012,41.37046399906],[-71.652107,41.37056699906],[-71.65218,41.37067099906],[-71.652207,41.37072699906],[-71.652258,41.37077599906],[-71.652385,41.37084599906],[-71.652595,41.37091099906],[-71.652651,41.37095499906],[-71.652684,41.37107499906],[-71.652715,41.37112499906],[-71.652758,41.37116899906],[-71.652806,41.37120999906],[-71.652819,41.37127799906],[-71.652819,41.37133599906],[-71.652837,41.37145599906],[-71.652861,41.37150899906],[-71.653008,41.37158199906],[-71.653054,41.37163199906],[-71.653053,41.37168599906],[-71.653036,41.37173999906],[-71.652976,41.37178299906],[-71.652892,41.37180799906],[-71.652831,41.37184799906],[-71.652767,41.37189999906],[-71.652709,41.37193299906],[-71.652636,41.37195899906],[-71.652557,41.37197399906],[-71.6525,41.37197299906],[-71.652378,41.37197199906],[-71.652214,41.37192999906],[-71.652127,41.37192499906],[-71.652041,41.37192499906],[-71.651954,41.37195099906],[-71.6519,41.37199299906],[-71.651827,41.37203999906],[-71.651665,41.37211799906],[-71.651545,41.37221199906],[-71.651476,41.37225099906],[-71.651415,41.37229099906],[-71.651348,41.37232099906],[-71.651164,41.37230899906],[-71.651087,41.37228699906],[-71.651047,41.37224199906],[-71.651043,41.37218099906],[-71.650999,41.37212699906],[-71.650928,41.37209699906],[-71.650875,41.37204099906],[-71.650829,41.37201099906],[-71.650752,41.37201899906],[-71.650681,41.37204299906],[-71.6506,41.37208399906],[-71.650522,41.37213299906],[-71.650401,41.37224299906],[-71.650333,41.37228699906],[-71.650207,41.37235499906],[-71.650138,41.37237799906],[-71.650052,41.37239499906],[-71.649953,41.37240199906],[-71.649854,41.37240399906],[-71.649771,41.37241799906],[-71.649593,41.37247199906],[-71.649515,41.37251599906],[-71.649319,41.37267099906],[-71.649267,41.37271999906],[-71.649216,41.37277799906],[-71.649181,41.37283099906],[-71.649127,41.37294299906],[-71.649114,41.37299799906],[-71.649113,41.37322299906],[-71.649099,41.37329099906],[-71.649066,41.37335799906],[-71.649021,41.37341699906],[-71.649001,41.37346799906],[-71.648951,41.37351699906],[-71.64875,41.37376799906],[-71.648682,41.37388499906],[-71.648683,41.37394199906],[-71.648711,41.37395699906],[-71.648693,41.37401799906],[-71.648684,41.37407299906],[-71.648656,41.37413599906],[-71.648598,41.37416699906],[-71.648506,41.37416699906],[-71.648361,41.37414199906],[-71.648204,41.37413999906],[-71.64813,41.37413199906],[-71.648054,41.37413099906],[-71.647994,41.37415499906],[-71.648002,41.37421199906],[-71.648043,41.37425599906],[-71.648218,41.37441899906],[-71.648277,41.37446899906],[-71.648412,41.37456299906],[-71.648549,41.37464399906],[-71.648628,41.37466199906],[-71.648714,41.37466899906],[-71.648896,41.37469599906],[-71.649089,41.37473699906],[-71.649176,41.37476299906],[-71.649257,41.37480399906],[-71.64957,41.37497899906],[-71.64963,41.37502899906],[-71.649687,41.37508699906],[-71.649806,41.37517899906],[-71.649855,41.37522399906],[-71.649943,41.37531999906],[-71.649975,41.37538299906],[-71.649969,41.37550999906],[-71.646487,41.37510099906],[-71.64647,41.37525599906],[-71.646145,41.37736899906],[-71.645537,41.37962599906],[-71.645091,41.38053099906],[-71.644689,41.38100899906],[-71.644649,41.38098399906],[-71.644471,41.38110799906],[-71.644405,41.38105099906],[-71.644009,41.38073499906],[-71.644003,41.38068499906],[-71.64402,41.38061699906],[-71.644086,41.38056299906],[-71.644138,41.38053699906],[-71.644068,41.38053799906],[-71.643983,41.38055499906],[-71.643915,41.38057799906],[-71.643843,41.38061399906],[-71.643771,41.38066399906],[-71.643727,41.38072699906],[-71.643664,41.38086499906],[-71.643616,41.38099099906],[-71.643583,41.38104899906],[-71.64354,41.38109999906],[-71.643477,41.38114299906],[-71.643303,41.38122699906],[-71.643142,41.38129299906],[-71.643093,41.38134499906],[-71.643091,41.38141399906],[-71.64311,41.38148299906],[-71.643153,41.38154599906],[-71.643165,41.38159999906],[-71.643144,41.38164699906],[-71.643079,41.38166299906],[-71.642995,41.38166199906],[-71.642911,41.38166799906],[-71.642845,41.38171299906],[-71.642809,41.38176799906],[-71.642739,41.38189899906],[-71.642634,41.38201299906],[-71.6426,41.38206599906],[-71.642585,41.38212699906],[-71.642582,41.38230899906],[-71.642605,41.38242799906],[-71.642602,41.38254499906],[-71.642583,41.38261399906],[-71.642555,41.38267999906],[-71.642459,41.38278799906],[-71.642376,41.38291099906],[-71.64233,41.38297099906],[-71.642299,41.38303699906],[-71.642228,41.38311199906],[-71.64206,41.38328699906],[-71.642001,41.38329499906],[-71.641891,41.38338399906],[-71.641725,41.38344399906],[-71.641654,41.38345999906],[-71.641578,41.38343799906],[-71.641499,41.38340399906],[-71.641408,41.38339399906],[-71.641331,41.38340899906],[-71.641265,41.38343999906],[-71.641202,41.38347899906],[-71.641245,41.38352899906],[-71.641258,41.38357699906],[-71.641217,41.38362499906],[-71.641198,41.38367899906],[-71.641118,41.38370599906],[-71.641049,41.38372299906],[-71.641021,41.38377799906],[-71.640977,41.38379999906],[-71.640891,41.38378699906],[-71.64074,41.38383199906],[-71.640677,41.38385899906],[-71.640659,41.38390999906],[-71.640686,41.38396899906],[-71.640721,41.38402099906],[-71.640708,41.38406799906],[-71.64066,41.38412499906],[-71.640602,41.38425699906],[-71.640594,41.38432699906],[-71.640505,41.38443999906],[-71.640732,41.38449099906],[-71.641693,41.38470899906],[-71.642029,41.38478499906],[-71.642121,41.38480299906],[-71.642159,41.38481099906],[-71.642593,41.38491099906],[-71.643669,41.38513899906],[-71.644768,41.38538399906],[-71.646591,41.38577999906],[-71.647072,41.38587999906],[-71.647202,41.38590199906],[-71.647247,41.38590599906],[-71.647717,41.38595799906],[-71.647809,41.38596699906],[-71.648171,41.38599199906],[-71.648831,41.38601999906],[-71.649219,41.38601899906],[-71.649452,41.38601699906],[-71.649996,41.38597199906],[-71.650284,41.38594799906],[-71.651428,41.38583399906],[-71.652206,41.38574599906],[-71.652512,41.38570799906],[-71.652695,41.38568799906],[-71.653245,41.38562999906],[-71.65336,41.38562299906],[-71.653523,41.38559999906],[-71.654854,41.38544199906],[-71.655022,41.38542599906],[-71.655701,41.38534899906],[-71.65591,41.38532399906],[-71.656465,41.38526899906],[-71.656835,41.38523499906],[-71.657055,41.38521399906],[-71.657711,41.38513699906],[-71.658357,41.38503399906],[-71.658778,41.38494799906],[-71.658941,41.38491599906],[-71.65957,41.38477899906],[-71.659784,41.38472599906],[-71.660079,41.38464699906],[-71.660443,41.38454199906],[-71.660757,41.38444799906],[-71.661257,41.38428499906],[-71.661331,41.38425799906],[-71.661524,41.38418499906],[-71.661705,41.38411699906],[-71.662094,41.38395699906],[-71.662529,41.38376599906],[-71.66304,41.38351399906],[-71.663521,41.38325099906],[-71.664009,41.38295399906],[-71.664352,41.38273199906],[-71.664726,41.38246499906],[-71.665321,41.38199599906],[-71.665718,41.38167199906],[-71.666107,41.38129799906],[-71.666611,41.38075299906],[-71.666748,41.38060799906],[-71.666985,41.38032499906],[-71.667084,41.38019199906],[-71.667305,41.37987899906],[-71.667717,41.37918099906],[-71.667946,41.37875399906],[-71.668449,41.37770099906],[-71.668594,41.37740199906],[-71.669189,41.37617899906],[-71.669693,41.37509899906],[-71.670335,41.37375799906],[-71.670471,41.37349299906],[-71.670654,41.37310799906],[-71.67086,41.37275699906],[-71.671097,41.37239499906],[-71.671302,41.37210099906],[-71.671387,41.37197899906],[-71.671722,41.37156699906],[-71.671938,41.37134499906],[-71.672119,41.37115899906],[-71.672502,41.37077699906],[-71.672737,41.37059799906],[-71.673012,41.37036899906],[-71.673233,41.37021599906],[-71.673508,41.37002599906],[-71.674011,41.36971999906],[-71.674515,41.36944199906],[-71.675156,41.36911399906],[-71.675179,41.36910599906],[-71.675604,41.36888499906],[-71.675934,41.36871299906],[-71.676151,41.36860299906],[-71.676392,41.36848099906],[-71.676663,41.36833999906],[-71.676756,41.36829199906],[-71.67736,41.36797899906],[-71.678012,41.36763199906],[-71.678423,41.36740399906],[-71.67873,41.36722999906],[-71.679109,41.36700999906],[-71.679695,41.36666899906],[-71.680954,41.36595199906],[-71.681404,41.36568799906],[-71.681854,41.36543699906],[-71.682645,41.36497999906],[-71.682785,41.36489899906],[-71.68364,41.36441399906],[-71.683823,41.36430399906],[-71.684631,41.36384599906],[-71.685097,41.36356699906],[-71.686478,41.36280099906],[-71.687035,41.36251399906],[-71.687614,41.36224399906],[-71.689926,41.36113399906],[-71.690763,41.36072799906],[-71.691081,41.36057399906],[-71.691167,41.36053199906],[-71.6912,41.36051599906],[-71.691399,41.36042399906],[-71.692635,41.35982499906],[-71.69326,41.35953099906],[-71.693489,41.35943199906],[-71.693863,41.35927999906],[-71.694229,41.35913799906],[-71.694794,41.35895199906],[-71.695221,41.35882999906],[-71.695686,41.35870399906],[-71.696243,41.35854299906],[-71.696548,41.35846299906],[-71.696915,41.35837299906],[-71.697502,41.35819999906],[-71.698212,41.35800899906],[-71.69883,41.35783799906],[-71.699448,41.35767399906],[-71.700272,41.35744099906],[-71.700798,41.35729999906],[-71.700836,41.35728799906],[-71.701241,41.35719299906],[-71.701569,41.35712099906],[-71.70191,41.35705199906],[-71.703308,41.35677299906],[-71.704388,41.35656299906],[-71.704697,41.35650299906],[-71.705056,41.35643099906],[-71.706604,41.35612499906],[-71.706951,41.35606599906],[-71.708585,41.35572899906],[-71.709094,41.35562799906],[-71.710487,41.35535399906],[-71.71072,41.35530599906],[-71.711253,41.35519999906],[-71.711944,41.35507499906],[-71.712,41.35506599906],[-71.712328,41.35501399906],[-71.712563,41.35497999906],[-71.713203,41.35491899906],[-71.713342,41.35491099906],[-71.713646,41.35489299906],[-71.714021,41.35488299906],[-71.714539,41.35488099906],[-71.714981,41.35489699906],[-71.715401,41.35492299906],[-71.715858,41.35496899906],[-71.715897,41.35497699906],[-71.716094,41.35500299906],[-71.716491,41.35506299906],[-71.716824,41.35511099906],[-71.717009,41.35512899906],[-71.71719,41.35513599906],[-71.71738,41.35513999906],[-71.717611,41.35514499906],[-71.717684,41.35513999906],[-71.717834,41.35514199906],[-71.718145,41.35511799906],[-71.718316,41.35510799906],[-71.718622,41.35507499906],[-71.718768,41.35505599906],[-71.718855,41.35504499906],[-71.719022,41.35501599906],[-71.7192,41.35498399906],[-71.719583,41.35491399906],[-71.719977,41.35480999906],[-71.720293,41.35470999906],[-71.720663,41.35457099906],[-71.721069,41.35437799906],[-71.721405,41.35419799906],[-71.721741,41.35399999906],[-71.722031,41.35384399906],[-71.722542,41.35358399906],[-71.722824,41.35345799906],[-71.72332,41.35325199906],[-71.723633,41.35313799906],[-71.723732,41.35309599906],[-71.724007,41.35300099906],[-71.72426,41.35292799906],[-71.7244,41.35288999906],[-71.724617,41.35283499906],[-71.725305,41.35267599906],[-71.725485,41.35263099906],[-71.726493,41.35241399906],[-71.726547,41.35240199906],[-71.727295,41.35226099906],[-71.728156,41.35208599906],[-71.728857,41.35193999906],[-71.72982,41.35171899906],[-71.729958,41.35168799906],[-71.730106,41.35165799906],[-71.730103,41.35015499906],[-71.730134,41.34936299906],[-71.730133,41.34900899906],[-71.7302,41.34743899906],[-71.730274,41.34571999906],[-71.730343,41.34413499906],[-71.730365,41.34345799906],[-71.730388,41.34279199906]],[[-71.730314,41.34280399906],[-71.730187,41.34288099906],[-71.730121,41.34290799906],[-71.729943,41.34305899906],[-71.729745,41.34319799906],[-71.729714,41.34324999906],[-71.729703,41.34326299906],[-71.729643,41.34333099906],[-71.729565,41.34341099906],[-71.729467,41.34351199906],[-71.729376,41.34358899906],[-71.729323,41.34361799906],[-71.72928,41.34365999906],[-71.729251,41.34373099906],[-71.729232,41.34379699906],[-71.729228,41.34385899906],[-71.729247,41.34386399906],[-71.729235,41.34388199906],[-71.729227,41.34391699906],[-71.72928,41.34397899906],[-71.729292,41.34400599906],[-71.729323,41.34404399906],[-71.729361,41.34406499906],[-71.729404,41.34405299906],[-71.729468,41.34404299906],[-71.729531,41.34405699906],[-71.72955,41.34405499906],[-71.7296,41.34405099906],[-71.729664,41.34405099906],[-71.729804,41.34407499906],[-71.72982,41.34410299906],[-71.729838,41.34414399906],[-71.729758,41.34418499906],[-71.729697,41.34421399906],[-71.729652,41.34426199906],[-71.729648,41.34431899906],[-71.72963,41.34437199906],[-71.729616,41.34437799906],[-71.729581,41.34442499906],[-71.729571,41.34448899906],[-71.729551,41.34455499906],[-71.729522,41.34462799906],[-71.729485,41.34469499906],[-71.72945,41.34474399906],[-71.729413,41.34484599906],[-71.729408,41.34491699906],[-71.72939,41.34497299906],[-71.729283,41.34513899906],[-71.729208,41.34513799906],[-71.729141,41.34510799906],[-71.729115,41.34510899906],[-71.729163,41.34516399906],[-71.729195,41.34522099906],[-71.729198,41.34528299906],[-71.729149,41.34532699906],[-71.729071,41.34533299906],[-71.729009,41.34541999906],[-71.728946,41.34538699906],[-71.72886,41.34538799906],[-71.728786,41.34538299906],[-71.728706,41.34536999906],[-71.728622,41.34535099906],[-71.728558,41.34532699906],[-71.728509,41.34528399906],[-71.728497,41.34523199906],[-71.728499,41.34516799906],[-71.728453,41.34511599906],[-71.728403,41.34506999906],[-71.728358,41.34501299906],[-71.728348,41.34494599906],[-71.728382,41.34487599906],[-71.728401,41.34481799906],[-71.728423,41.34469599906],[-71.728423,41.34463299906],[-71.728361,41.34451299906],[-71.728365,41.34446699906],[-71.728426,41.34443699906],[-71.728393,41.34439599906],[-71.728321,41.34442899906],[-71.728254,41.34442399906],[-71.728215,41.34436799906],[-71.728161,41.34431299906],[-71.728112,41.34427299906],[-71.7281,41.34421299906],[-71.7281,41.34415799906],[-71.728163,41.34409999906],[-71.728148,41.34408299906],[-71.728064,41.34410699906],[-71.728014,41.34410799906],[-71.727997,41.34411399906],[-71.728019,41.34415999906],[-71.72802,41.34418099906],[-71.728008,41.34419099906],[-71.727972,41.34418499906],[-71.727892,41.34419499906],[-71.727768,41.34424499906],[-71.727743,41.34425499906],[-71.727568,41.34430199906],[-71.727512,41.34432099906],[-71.727493,41.34443599906],[-71.727453,41.34449299906],[-71.727375,41.34454699906],[-71.727267,41.34460699906],[-71.727183,41.34462399906],[-71.727029,41.34462399906],[-71.726947,41.34461299906],[-71.726879,41.34459399906],[-71.726799,41.34453099906],[-71.726644,41.34451699906],[-71.726576,41.34450499906],[-71.726523,41.34448699906],[-71.72648,41.34445199906],[-71.726456,41.34442399906],[-71.726389,41.34439699906],[-71.726327,41.34437899906],[-71.726272,41.34435399906],[-71.726236,41.34435599906],[-71.72621,41.34436499906],[-71.726185,41.34438199906],[-71.726135,41.34439799906],[-71.726102,41.34440199906],[-71.726025,41.34433799906],[-71.725966,41.34431299906],[-71.725907,41.34428199906],[-71.725863,41.34426899906],[-71.725817,41.34428799906],[-71.725793,41.34430199906],[-71.725703,41.34433099906],[-71.725685,41.34433999906],[-71.72567,41.34439599906],[-71.725647,41.34444699906],[-71.725609,41.34448999906],[-71.725528,41.34454699906],[-71.725487,41.34455099906],[-71.725456,41.34451699906],[-71.72543,41.34447699906],[-71.72541,41.34446399906],[-71.725307,41.34452799906],[-71.725214,41.34457199906],[-71.725193,41.34460299906],[-71.725173,41.34467499906],[-71.725116,41.34478499906],[-71.725033,41.34486299906],[-71.724936,41.34493899906],[-71.724937,41.34496299906],[-71.724897,41.34500799906],[-71.72484,41.34503699906],[-71.72475,41.34503999906],[-71.724652,41.34506699906],[-71.724482,41.34519399906],[-71.724424,41.34522199906],[-71.724374,41.34522699906],[-71.724343,41.34527599906],[-71.724314,41.34533299906],[-71.72424,41.34536299906],[-71.724178,41.34539599906],[-71.724134,41.34544399906],[-71.724125,41.34550599906],[-71.724126,41.34562999906],[-71.724131,41.34569199906],[-71.724181,41.34573099906],[-71.724222,41.34579299906],[-71.724224,41.34592399906],[-71.72419,41.34598599906],[-71.724088,41.34611199906],[-71.724052,41.34618699906],[-71.724009,41.34629699906],[-71.723981,41.34634899906],[-71.72396,41.34640499906],[-71.723927,41.34646499906],[-71.723856,41.34650099906],[-71.723787,41.34655299906],[-71.723787,41.34660499906],[-71.72391,41.34668199906],[-71.723957,41.34673599906],[-71.723997,41.34680299906],[-71.724031,41.34699699906],[-71.724061,41.34726399906],[-71.724051,41.34731899906],[-71.724019,41.34738099906],[-71.724018,41.34743899906],[-71.724029,41.34747599906],[-71.724071,41.34753399906],[-71.724153,41.34763399906],[-71.724198,41.34767699906],[-71.724222,41.34772699906],[-71.724208,41.34779299906],[-71.724168,41.34786899906],[-71.72408,41.34798599906],[-71.724011,41.34803699906],[-71.723928,41.34807799906],[-71.723845,41.34810899906],[-71.723765,41.34812899906],[-71.723484,41.34809799906],[-71.723391,41.34808099906],[-71.723314,41.34807899906],[-71.723163,41.34812299906],[-71.723084,41.34811999906],[-71.723007,41.34808499906],[-71.722939,41.34803199906],[-71.72289,41.34797299906],[-71.722868,41.34790899906],[-71.722891,41.34776099906],[-71.72289,41.34769399906],[-71.722899,41.34762799906],[-71.722978,41.34746799906],[-71.723009,41.34741399906],[-71.723027,41.34734499906],[-71.723066,41.34728999906],[-71.723131,41.34723299906],[-71.723181,41.34717699906],[-71.723195,41.34712299906],[-71.723188,41.34706399906],[-71.723135,41.34701599906],[-71.72306,41.34697999906],[-71.722992,41.34693699906],[-71.722941,41.34689599906],[-71.722872,41.34685299906],[-71.722803,41.34682299906],[-71.722767,41.34680299906],[-71.72277,41.34677699906],[-71.722832,41.34673199906],[-71.722884,41.34668299906],[-71.722878,41.34662399906],[-71.722808,41.34659099906],[-71.722728,41.34656499906],[-71.722578,41.34650399906],[-71.722505,41.34649299906],[-71.722433,41.34648999906],[-71.722335,41.34656799906],[-71.722174,41.34678199906],[-71.722023,41.34692499906],[-71.722012,41.34696599906],[-71.72204,41.34697799906],[-71.72207,41.34699699906],[-71.722058,41.34702899906],[-71.72199,41.34704799906],[-71.721929,41.34709499906],[-71.721771,41.34722899906],[-71.721645,41.34732399906],[-71.721543,41.34742199906],[-71.721491,41.34746299906],[-71.721427,41.34749499906],[-71.721354,41.34752499906],[-71.721289,41.34757599906],[-71.721189,41.34769299906],[-71.721069,41.34785899906],[-71.720806,41.34827799906],[-71.720766,41.34833099906],[-71.720664,41.34841499906],[-71.720525,41.34846999906],[-71.720453,41.34848599906],[-71.720384,41.34850699906],[-71.720373,41.34856099906],[-71.720332,41.34856499906],[-71.720284,41.34851999906],[-71.720131,41.34855499906],[-71.72006,41.34858799906],[-71.719981,41.34860499906],[-71.719912,41.34862799906],[-71.719832,41.34864399906],[-71.719769,41.34867999906],[-71.719777,41.34871399906],[-71.719712,41.34875999906],[-71.719616,41.34885799906],[-71.719485,41.34895099906],[-71.719427,41.34898399906],[-71.719353,41.34899999906],[-71.719323,41.34905599906],[-71.719303,41.34911099906],[-71.719265,41.34917099906],[-71.719169,41.34925399906],[-71.719106,41.34928399906],[-71.719034,41.34930499906],[-71.718963,41.34933199906],[-71.718849,41.34940799906],[-71.718778,41.34943599906],[-71.718759,41.34945599906],[-71.718733,41.34948199906],[-71.718663,41.34950499906],[-71.718541,41.34965499906],[-71.718546,41.34971899906],[-71.718539,41.34975099906],[-71.718484,41.34979299906],[-71.718398,41.34981299906],[-71.718328,41.34979499906],[-71.718281,41.34977699906],[-71.718266,41.34989599906],[-71.718235,41.34995199906],[-71.718212,41.35001299906],[-71.718251,41.35007399906],[-71.718274,41.35019599906],[-71.718272,41.35026199906],[-71.718227,41.35031099906],[-71.718151,41.35033199906],[-71.718104,41.35037699906],[-71.718071,41.35038199906],[-71.718077,41.35025499906],[-71.718056,41.35018599906],[-71.717986,41.35000799906],[-71.71801,41.34994299906],[-71.718009,41.34987699906],[-71.717978,41.34981999906],[-71.717946,41.34980399906],[-71.71787,41.34981699906],[-71.717781,41.34978399906],[-71.717708,41.34974699906],[-71.717644,41.34969899906],[-71.7176,41.34965199906],[-71.717575,41.34958599906],[-71.717569,41.34953199906],[-71.717529,41.34946899906],[-71.717483,41.34942299906],[-71.717455,41.34937299906],[-71.717433,41.34931399906],[-71.717363,41.34919699906],[-71.717325,41.34914499906],[-71.717303,41.34908399906],[-71.717252,41.34903399906],[-71.717048,41.34893199906],[-71.717004,41.34894599906],[-71.716952,41.34906399906],[-71.716913,41.34912399906],[-71.716706,41.34940699906],[-71.716613,41.34949699906],[-71.716576,41.34955299906],[-71.716532,41.34959699906],[-71.716495,41.34964999906],[-71.716487,41.34971299906],[-71.716504,41.34978599906],[-71.716578,41.34991499906],[-71.716603,41.34997799906],[-71.716585,41.35004699906],[-71.716397,41.35028399906],[-71.716334,41.35033199906],[-71.716204,41.35041899906],[-71.716114,41.35046099906],[-71.716022,41.35049599906],[-71.715857,41.35053999906],[-71.715778,41.35054399906],[-71.715666,41.35058299906],[-71.715435,41.35058999906],[-71.715372,41.35064599906],[-71.715269,41.35076899906],[-71.715168,41.35090599906],[-71.715124,41.35097399906],[-71.715096,41.35102799906],[-71.715045,41.35107499906],[-71.714989,41.35111499906],[-71.714861,41.35126799906],[-71.714708,41.35127099906],[-71.714654,41.35127999906],[-71.714561,41.35130299906],[-71.714493,41.35132799906],[-71.714427,41.35136299906],[-71.714373,41.35140199906],[-71.714277,41.35150099906],[-71.714199,41.35152799906],[-71.714099,41.35155399906],[-71.714002,41.35156999906],[-71.713905,41.35157599906],[-71.713795,41.35156699906],[-71.713611,41.35156899906],[-71.713516,41.35155099906],[-71.71342,41.35152399906],[-71.713338,41.35150599906],[-71.713267,41.35152199906],[-71.713022,41.35149699906],[-71.712875,41.35143499906],[-71.712703,41.35138599906],[-71.712619,41.35135099906],[-71.712538,41.35133399906],[-71.712459,41.35132899906],[-71.712419,41.35131899906],[-71.712374,41.35128199906],[-71.712358,41.35126899906],[-71.712271,41.35124299906],[-71.712106,41.35125499906],[-71.712031,41.35124399906],[-71.711962,41.35122599906],[-71.711791,41.35110399906],[-71.711734,41.35104699906],[-71.711709,41.35099099906],[-71.71164,41.35087899906],[-71.711634,41.35082499906],[-71.711594,41.35076899906],[-71.711529,41.35073199906],[-71.711455,41.35071799906],[-71.711361,41.35072099906],[-71.711261,41.35073099906],[-71.711179,41.35073399906],[-71.711108,41.35072199906],[-71.711079,41.35066999906],[-71.711007,41.35062899906],[-71.710859,41.35061699906],[-71.710848,41.35055999906],[-71.710862,41.35050699906],[-71.710864,41.35044399906],[-71.710838,41.35040999906],[-71.710672,41.35042399906],[-71.710581,41.35044299906],[-71.710531,41.35048599906],[-71.710478,41.35054299906],[-71.710419,41.35058599906],[-71.710402,41.35063099906],[-71.710472,41.35076299906],[-71.710515,41.35081699906],[-71.71059,41.35082999906],[-71.710688,41.35082499906],[-71.710782,41.35083599906],[-71.710844,41.35087399906],[-71.710876,41.35092599906],[-71.710878,41.35098199906],[-71.710919,41.35103399906],[-71.710949,41.35109299906],[-71.710958,41.35112799906],[-71.710942,41.35118199906],[-71.710959,41.35121699906],[-71.711113,41.35118899906],[-71.711173,41.35118199906],[-71.711181,41.35112599906],[-71.711125,41.35107499906],[-71.711088,41.35102499906],[-71.711074,41.35096099906],[-71.711132,41.35091599906],[-71.711219,41.35090199906],[-71.711343,41.35085099906],[-71.711357,41.35083799906],[-71.711462,41.35088499906],[-71.711423,41.35092899906],[-71.711493,41.35094599906],[-71.711552,41.35097099906],[-71.711541,41.35103199906],[-71.711495,41.35105699906],[-71.711422,41.35104399906],[-71.711363,41.35102899906],[-71.711345,41.35105599906],[-71.71137,41.35110999906],[-71.711361,41.35116499906],[-71.71138,41.35121999906],[-71.711415,41.35122399906],[-71.711468,41.35118699906],[-71.711512,41.35121299906],[-71.711559,41.35125499906],[-71.711607,41.35130599906],[-71.711612,41.35136099906],[-71.711625,41.35141499906],[-71.711608,41.35142599906],[-71.711525,41.35130999906],[-71.71148,41.35129399906],[-71.711267,41.35134899906],[-71.711187,41.35137499906],[-71.711127,41.35141499906],[-71.711048,41.35141999906],[-71.710915,41.35148499906],[-71.710879,41.35151599906],[-71.710857,41.35154099906],[-71.710792,41.35153399906],[-71.710666,41.35160299906],[-71.710605,41.35164499906],[-71.710573,41.35170599906],[-71.710555,41.35176699906],[-71.7105,41.35176899906],[-71.710423,41.35173899906],[-71.710352,41.35173299906],[-71.710288,41.35177499906],[-71.710239,41.35181899906],[-71.710099,41.35195499906],[-71.710023,41.35197599906],[-71.709947,41.35197599906],[-71.709881,41.35195099906],[-71.709873,41.35193199906],[-71.709867,41.35191899906],[-71.709956,41.35189799906],[-71.710026,41.35186899906],[-71.71008,41.35181899906],[-71.710118,41.35176099906],[-71.710145,41.35170299906],[-71.710176,41.35164999906],[-71.710196,41.35159499906],[-71.710253,41.35147799906],[-71.710217,41.35143699906],[-71.710157,41.35144899906],[-71.710117,41.35150299906],[-71.710045,41.35150599906],[-71.709981,41.35149499906],[-71.709905,41.35146099906],[-71.709827,41.35146099906],[-71.709768,41.35149799906],[-71.709715,41.35153699906],[-71.709639,41.35156699906],[-71.70949,41.35161099906],[-71.709417,41.35161599906],[-71.709322,41.35161199906],[-71.709251,41.35159799906],[-71.709167,41.35156599906],[-71.709038,41.35150999906],[-71.708913,41.35144199906],[-71.708856,41.35140299906],[-71.70882,41.35134899906],[-71.708811,41.35128799906],[-71.708782,41.35126399906],[-71.708759,41.35125599906],[-71.708792,41.35119799906],[-71.708786,41.35114399906],[-71.708745,41.35109299906],[-71.708679,41.35106799906],[-71.708654,41.35102899906],[-71.708734,41.35099399906],[-71.708806,41.35095699906],[-71.708858,41.35090599906],[-71.70889,41.35085599906],[-71.708942,41.35073899906],[-71.708945,41.35050799906],[-71.708958,41.35045299906],[-71.709001,41.35040699906],[-71.709072,41.35038499906],[-71.709217,41.35034799906],[-71.709284,41.35032399906],[-71.709298,41.35029499906],[-71.709254,41.35027799906],[-71.709166,41.35029399906],[-71.709004,41.35031299906],[-71.708916,41.35031399906],[-71.708845,41.35030099906],[-71.708831,41.35027399906],[-71.708783,41.35017999906],[-71.708728,41.35013699906],[-71.708698,41.35010299906],[-71.708736,41.35004999906],[-71.708691,41.35001099906],[-71.708606,41.34997799906],[-71.708538,41.34993699906],[-71.708532,41.34989399906],[-71.708594,41.34985399906],[-71.708674,41.34982299906],[-71.7088,41.34973999906],[-71.708878,41.34972399906],[-71.70904,41.34972499906],[-71.709112,41.34973399906],[-71.709179,41.34975899906],[-71.70933,41.34976699906],[-71.709336,41.34972099906],[-71.709183,41.34968099906],[-71.709105,41.34966599906],[-71.708951,41.34964499906],[-71.708912,41.34962199906],[-71.70895,41.34956999906],[-71.708995,41.34952699906],[-71.709031,41.34946699906],[-71.709077,41.34940599906],[-71.709106,41.34934799906],[-71.709132,41.34928199906],[-71.709182,41.34924499906],[-71.709265,41.34926699906],[-71.709309,41.34925699906],[-71.709348,41.34919599906],[-71.709371,41.34913899906],[-71.709257,41.34904299906],[-71.709208,41.34900799906],[-71.709159,41.34896399906],[-71.709096,41.34892599906],[-71.708995,41.34883199906],[-71.708942,41.34879299906],[-71.708863,41.34877399906],[-71.708685,41.34877199906],[-71.708504,41.34869399906],[-71.708506,41.34863099906],[-71.708554,41.34857899906],[-71.708799,41.34841799906],[-71.708858,41.34838699906],[-71.708915,41.34834299906],[-71.708907,41.34828799906],[-71.708877,41.34821499906],[-71.708856,41.34814699906],[-71.708854,41.34807999906],[-71.708865,41.34800799906],[-71.708944,41.34781799906],[-71.708973,41.34776299906],[-71.709022,41.34764999906],[-71.70904,41.34759399906],[-71.70904,41.34753499906],[-71.709029,41.34746699906],[-71.708979,41.34726699906],[-71.708974,41.34713699906],[-71.708987,41.34708399906],[-71.709047,41.34702399906],[-71.7091,41.34698399906],[-71.709162,41.34694699906],[-71.709233,41.34691199906],[-71.709371,41.34685899906],[-71.709517,41.34678599906],[-71.709599,41.34676199906],[-71.709706,41.34675399906],[-71.709782,41.34675799906],[-71.709879,41.34677099906],[-71.709953,41.34676799906],[-71.710014,41.34672799906],[-71.71004,41.34665399906],[-71.710053,41.34659999906],[-71.710056,41.34654599906],[-71.710039,41.34641699906],[-71.710037,41.34628599906],[-71.710044,41.34622199906],[-71.710103,41.34617099906],[-71.710155,41.34611599906],[-71.710225,41.34607799906],[-71.710322,41.34606699906],[-71.710549,41.34607599906],[-71.710592,41.34606199906],[-71.710606,41.34593499906],[-71.710642,41.34588199906],[-71.71071,41.34583799906],[-71.710794,41.34580299906],[-71.710859,41.34575199906],[-71.710913,41.34569299906],[-71.710957,41.34562699906],[-71.71101,41.34549599906],[-71.711078,41.34536899906],[-71.711087,41.34529699906],[-71.711085,41.34514599906],[-71.711115,41.34509299906],[-71.71108,41.34505499906],[-71.710992,41.34504999906],[-71.710913,41.34504999906],[-71.710829,41.34503399906],[-71.710759,41.34499799906],[-71.710725,41.34494199906],[-71.710725,41.34488499906],[-71.710738,41.34483199906],[-71.710734,41.34464899906],[-71.710749,41.34458199906],[-71.710805,41.34447199906],[-71.710861,41.34442399906],[-71.710892,41.34440799906],[-71.710971,41.34440699906],[-71.711069,41.34441499906],[-71.711158,41.34442799906],[-71.711245,41.34444599906],[-71.711315,41.34447199906],[-71.711321,41.34453299906],[-71.711285,41.34460899906],[-71.71125,41.34465799906],[-71.711197,41.34471599906],[-71.711119,41.34476399906],[-71.711062,41.34480599906],[-71.711052,41.34486299906],[-71.711078,41.34491699906],[-71.711135,41.34495299906],[-71.711144,41.34500599906],[-71.711158,41.34502999906],[-71.711321,41.34500399906],[-71.711549,41.34503399906],[-71.711633,41.34503199906],[-71.711713,41.34500999906],[-71.711797,41.34497999906],[-71.711995,41.34495699906],[-71.712078,41.34493499906],[-71.712148,41.34489099906],[-71.712266,41.34478699906],[-71.712313,41.34472499906],[-71.71232,41.34465799906],[-71.712295,41.34458699906],[-71.712262,41.34453899906],[-71.712186,41.34444399906],[-71.71215,41.34437299906],[-71.712105,41.34430299906],[-71.712053,41.34423799906],[-71.711979,41.34410799906],[-71.711953,41.34403799906],[-71.711923,41.34397799906],[-71.711861,41.34393099906],[-71.711713,41.34390399906],[-71.711698,41.34388099906],[-71.711709,41.34381999906],[-71.711756,41.34376899906],[-71.711804,41.34370299906],[-71.711837,41.34362699906],[-71.711876,41.34355299906],[-71.711917,41.34350799906],[-71.711972,41.34346299906],[-71.712035,41.34341999906],[-71.712301,41.34326799906],[-71.712344,41.34320399906],[-71.712344,41.34306899906],[-71.712366,41.34302299906],[-71.712489,41.34286299906],[-71.712534,41.34281599906],[-71.712658,41.34272199906],[-71.712695,41.34266399906],[-71.712751,41.34252199906],[-71.71278,41.34240999906],[-71.712784,41.34235299906],[-71.712778,41.34228199906],[-71.712716,41.34223399906],[-71.712637,41.34218899906],[-71.712588,41.34212399906],[-71.712547,41.34205599906],[-71.712496,41.34198799906],[-71.712462,41.34191899906],[-71.712464,41.34178899906],[-71.712457,41.34161999906],[-71.712406,41.34147699906],[-71.712373,41.34141499906],[-71.712283,41.34134999906],[-71.712234,41.34130099906],[-71.712227,41.34123099906],[-71.712263,41.34117199906],[-71.712303,41.34104799906],[-71.712413,41.34087499906],[-71.712438,41.34082299906],[-71.712462,41.34074999906],[-71.712471,41.34067999906],[-71.71247,41.34061299906],[-71.71244,41.34054799906],[-71.712348,41.34044899906],[-71.712282,41.34034599906],[-71.712257,41.34029299906],[-71.712218,41.34016899906],[-71.712227,41.34010399906],[-71.712269,41.34003199906],[-71.712301,41.33995799906],[-71.712339,41.33989399906],[-71.712385,41.33984399906],[-71.712389,41.33979399906],[-71.712343,41.33974299906],[-71.712299,41.33968499906],[-71.712297,41.33961699906],[-71.712341,41.33955499906],[-71.712402,41.33950999906],[-71.712471,41.33947499906],[-71.712603,41.33942299906],[-71.712681,41.33938399906],[-71.712752,41.33934099906],[-71.712775,41.33930599906],[-71.712768,41.33918799906],[-71.712737,41.33912299906],[-71.712693,41.33905099906],[-71.712638,41.33898999906],[-71.712529,41.33889399906],[-71.712458,41.33887299906],[-71.712398,41.33883199906],[-71.712368,41.33877599906],[-71.712352,41.33870599906],[-71.71235,41.33863099906],[-71.71234,41.33854899906],[-71.712294,41.33842299906],[-71.712279,41.33835799906],[-71.712275,41.33829199906],[-71.712283,41.33806399906],[-71.712313,41.33799099906],[-71.712322,41.33791499906],[-71.71232,41.33783599906],[-71.712311,41.33776099906],[-71.712291,41.33768999906],[-71.712286,41.33756699906],[-71.712275,41.33750099906],[-71.712221,41.33743699906],[-71.712167,41.33738499906],[-71.712142,41.33732199906],[-71.71218,41.33725899906],[-71.712248,41.33721599906],[-71.712335,41.33717099906],[-71.712568,41.33708699906],[-71.712705,41.33702199906],[-71.712782,41.33700399906],[-71.712944,41.33695099906],[-71.713007,41.33691999906],[-71.713067,41.33688399906],[-71.713124,41.33684199906],[-71.713177,41.33679599906],[-71.713369,41.33660399906],[-71.713402,41.33655499906],[-71.713457,41.33642799906],[-71.713495,41.33636799906],[-71.713538,41.33631199906],[-71.713624,41.33614899906],[-71.713649,41.33615399906],[-71.713696,41.33620299906],[-71.713769,41.33630799906],[-71.713795,41.33636399906],[-71.71382,41.33643399906],[-71.713902,41.33654499906],[-71.713903,41.33662299906],[-71.713898,41.33667799906],[-71.713894,41.33689199906],[-71.713897,41.33700999906],[-71.713904,41.33707299906],[-71.713917,41.33712699906],[-71.71395,41.33719499906],[-71.713958,41.33726699906],[-71.713928,41.33733899906],[-71.71388,41.33739599906],[-71.713828,41.33743899906],[-71.713803,41.33748999906],[-71.71378,41.33751399906],[-71.713747,41.33752299906],[-71.713663,41.33751199906],[-71.71359,41.33748699906],[-71.71352,41.33750199906],[-71.713469,41.33755799906],[-71.71348,41.33758399906],[-71.713568,41.33759999906],[-71.713713,41.33766799906],[-71.713799,41.33769899906],[-71.713872,41.33774999906],[-71.713909,41.33782099906],[-71.713909,41.33788399906],[-71.713876,41.33792099906],[-71.713799,41.33791599906],[-71.71371,41.33788899906],[-71.71354,41.33782599906],[-71.713468,41.33781099906],[-71.71339,41.33783599906],[-71.713338,41.33787599906],[-71.713201,41.33803499906],[-71.713166,41.33808499906],[-71.713133,41.33815099906],[-71.713128,41.33821199906],[-71.71317,41.33825099906],[-71.713204,41.33824199906],[-71.713255,41.33818299906],[-71.713335,41.33819699906],[-71.713418,41.33822799906],[-71.713498,41.33823899906],[-71.713573,41.33826499906],[-71.713604,41.33832399906],[-71.713588,41.33839899906],[-71.713548,41.33846899906],[-71.713517,41.33853799906],[-71.713547,41.33859699906],[-71.713666,41.33870399906],[-71.71366,41.33875599906],[-71.713599,41.33881999906],[-71.713541,41.33885999906],[-71.713403,41.33893399906],[-71.713203,41.33902199906],[-71.713046,41.33911299906],[-71.712997,41.33916899906],[-71.713006,41.33922099906],[-71.713064,41.33923699906],[-71.713157,41.33923399906],[-71.713261,41.33925199906],[-71.7134,41.33929199906],[-71.713477,41.33929699906],[-71.71356,41.33928599906],[-71.713641,41.33926499906],[-71.713859,41.33919799906],[-71.713933,41.33917999906],[-71.714034,41.33917199906],[-71.714121,41.33917699906],[-71.714197,41.33916299906],[-71.714246,41.33910999906],[-71.714271,41.33904999906],[-71.714276,41.33897899906],[-71.714264,41.33891199906],[-71.71423,41.33886199906],[-71.714211,41.33880599906],[-71.714229,41.33879299906],[-71.714296,41.33881199906],[-71.71437,41.33885199906],[-71.714403,41.33890999906],[-71.714406,41.33906499906],[-71.714373,41.33913699906],[-71.714247,41.33923299906],[-71.714199,41.33928499906],[-71.714207,41.33931099906],[-71.714331,41.33931099906],[-71.714411,41.33931999906],[-71.714436,41.33935399906],[-71.714423,41.33940999906],[-71.714303,41.33959899906],[-71.714243,41.33971299906],[-71.714205,41.33984099906],[-71.714168,41.33989199906],[-71.714112,41.33994099906],[-71.714045,41.33998899906],[-71.71398,41.34002699906],[-71.713933,41.34006399906],[-71.713936,41.34007399906],[-71.713982,41.34008899906],[-71.714065,41.34008899906],[-71.714154,41.34006499906],[-71.714229,41.34001999906],[-71.714285,41.33997599906],[-71.714319,41.33992099906],[-71.714341,41.33986199906],[-71.714372,41.33980699906],[-71.714422,41.33976099906],[-71.714478,41.33972399906],[-71.714551,41.33970499906],[-71.714577,41.33970399906],[-71.714551,41.33984699906],[-71.714545,41.33990399906],[-71.714548,41.34001899906],[-71.714568,41.34007999906],[-71.714635,41.34011699906],[-71.714692,41.34008999906],[-71.714745,41.34002899906],[-71.714793,41.33996099906],[-71.714838,41.33990899906],[-71.714905,41.33989099906],[-71.715106,41.33990399906],[-71.715189,41.33992399906],[-71.715235,41.33998599906],[-71.715277,41.34005999906],[-71.715335,41.34012099906],[-71.715409,41.34014299906],[-71.715506,41.34014799906],[-71.715661,41.34016699906],[-71.715741,41.34017099906],[-71.715991,41.34017299906],[-71.716082,41.34016899906],[-71.71616,41.34013399906],[-71.71622,41.34007599906],[-71.71627,41.34000699906],[-71.716301,41.33993899906],[-71.716336,41.33981999906],[-71.716344,41.33976399906],[-71.716343,41.33970199906],[-71.716358,41.33964999906],[-71.716415,41.33960899906],[-71.71647,41.33956299906],[-71.716476,41.33953799906],[-71.71641,41.33951099906],[-71.716288,41.33956599906],[-71.716212,41.33958599906],[-71.716117,41.33959099906],[-71.716015,41.33960999906],[-71.715948,41.33963499906],[-71.71589,41.33967199906],[-71.715836,41.33973699906],[-71.715795,41.33979599906],[-71.715744,41.33983599906],[-71.71573,41.33983699906],[-71.715694,41.33979999906],[-71.715662,41.33973299906],[-71.715599,41.33968199906],[-71.715514,41.33965899906],[-71.715419,41.33965199906],[-71.715328,41.33966499906],[-71.715259,41.33968599906],[-71.715189,41.33968899906],[-71.715156,41.33964999906],[-71.715175,41.33957999906],[-71.715269,41.33946199906],[-71.715339,41.33933699906],[-71.715421,41.33921199906],[-71.715483,41.33917399906],[-71.715649,41.33918999906],[-71.71572,41.33917399906],[-71.715793,41.33913799906],[-71.715857,41.33908099906],[-71.715887,41.33902599906],[-71.715922,41.33897499906],[-71.715989,41.33894599906],[-71.71613780021178,41.33890593746452],[-71.730314,41.34280399906]]]}}"}, +{"type": "blockgroup", "typeId": 511021, "areaId": 29425, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.648735,41.42121899906],[-71.648727,41.42099799906],[-71.648717,41.42087299906],[-71.648712,41.42081099906],[-71.648689,41.42063899906],[-71.648605,41.42013499906],[-71.648521,41.41973899906],[-71.648359,41.41872499906],[-71.648332,41.41847499906],[-71.648304,41.41810899906],[-71.648255,41.41734299906],[-71.648249,41.41725299906],[-71.648232,41.41698799906],[-71.648195,41.41634899906],[-71.648186,41.41619899906],[-71.648171,41.41592999906],[-71.64815,41.41580999906],[-71.648125,41.41566799906],[-71.648102,41.41558099906],[-71.648056,41.41536999906],[-71.647992,41.41518799906],[-71.647947,41.41509499906],[-71.647906,41.41501399906],[-71.647835,41.41487499906],[-71.64756,41.41440599906],[-71.647225,41.41383599906],[-71.647011,41.41347099906],[-71.646973,41.41341699906],[-71.646828,41.41320799906],[-71.646606,41.41292599906],[-71.646585,41.41290099906],[-71.646488,41.41278499906],[-71.646317,41.41258199906],[-71.646095,41.41229999906],[-71.646004,41.41216899906],[-71.645889,41.41200299906],[-71.645744,41.41171299906],[-71.645699,41.41161299906],[-71.645673,41.41153099906],[-71.645582,41.41124599906],[-71.645554,41.41114399906],[-71.645519,41.41096499906],[-71.64547,41.41069399906],[-71.645416,41.41028599906],[-71.645363,41.40980899906],[-71.645355,41.40969499906],[-71.645309,41.40938199906],[-71.645264,41.40919099906],[-71.645218,41.40905399906],[-71.645142,41.40889699906],[-71.64502,41.40868399906],[-71.644677,41.40819799906],[-71.644501,41.40794799906],[-71.643791,41.40693999906],[-71.643562,41.40661999906],[-71.643234,41.40614699906],[-71.642906,41.40569299906],[-71.642494,41.40509799906],[-71.641991,41.40434299906],[-71.640884,41.40250399906],[-71.640755,41.40227499906],[-71.640588,41.40193899906],[-71.640527,41.40176399906],[-71.640467,41.40151999906],[-71.640376,41.40106299906],[-71.640255,41.40037999906],[-71.639953,41.39878999906],[-71.639884,41.39857299906],[-71.639748,41.39823399906],[-71.639588,41.39791299906],[-71.639019,41.39682699906],[-71.638927,41.39660899906],[-71.638806,41.39623899906],[-71.638624,41.39531999906],[-71.638556,41.39501199906],[-71.638473,41.39456999906],[-71.638466,41.39441299906],[-71.638519,41.39413899906],[-71.63865,41.39389899906],[-71.63884,41.39361699906],[-71.639092,41.39322899906],[-71.639171,41.39311199906],[-71.639336,41.39287099906],[-71.63952,41.39258599906],[-71.639658,41.39233099906],[-71.639773,41.39204899906],[-71.639808,41.39195199906],[-71.639847,41.39180999906],[-71.639905,41.39157399906],[-71.639949,41.39138999906],[-71.639969,41.39128399906],[-71.640007,41.39114599906],[-71.640077,41.39090799906],[-71.64009,41.39086599906],[-71.640152,41.39070199906],[-71.640175,41.39065199906],[-71.640259,41.39048399906],[-71.640572,41.38998799906],[-71.640762,41.38970899906],[-71.640968,41.38937399906],[-71.641136,41.38895799906],[-71.641167,41.38886599906],[-71.641182,41.38883999906],[-71.641251,41.38853099906],[-71.641319,41.38811899906],[-71.641464,41.38743999906],[-71.641617,41.38667699906],[-71.641711,41.38629499906],[-71.641716,41.38627599906],[-71.641777,41.38603599906],[-71.641881,41.38565699906],[-71.642029,41.38512799906],[-71.642121,41.38480299906],[-71.642029,41.38478499906],[-71.641693,41.38470899906],[-71.640732,41.38449099906],[-71.640505,41.38443999906],[-71.639427,41.38420099906],[-71.638962,41.38410599906],[-71.638542,41.38404799906],[-71.638206,41.38401399906],[-71.638008,41.38400299906],[-71.637726,41.38399899906],[-71.637413,41.38400999906],[-71.637024,41.38404799906],[-71.636673,41.38409399906],[-71.636536,41.38412099906],[-71.636078,41.38422399906],[-71.63578,41.38431199906],[-71.635483,41.38441099906],[-71.635124,41.38455599906],[-71.634796,41.38469699906],[-71.634613,41.38478099906],[-71.634232,41.38496799906],[-71.633942,41.38511699906],[-71.63386,41.38515399906],[-71.633768,41.38520899906],[-71.633338,41.38545399906],[-71.632833,41.38571399906],[-71.632472,41.38589199906],[-71.632207,41.38602399906],[-71.63151,41.38637399906],[-71.630738,41.38676499906],[-71.630663,41.38680499906],[-71.62999,41.38714999906],[-71.629379,41.38745499906],[-71.628922,41.38766899906],[-71.628595,41.38781399906],[-71.628521,41.38784599906],[-71.62755,41.38824399906],[-71.626915,41.38849299906],[-71.626773,41.38853499906],[-71.626228,41.38877699906],[-71.62619,41.38879399906],[-71.62587,41.38891499906],[-71.625473,41.38906499906],[-71.625216,41.38916299906],[-71.625099,41.38920799906],[-71.624793,41.38932599906],[-71.622597,41.39019399906],[-71.620674,41.39094199906],[-71.619377,41.39143399906],[-71.618509,41.39176999906],[-71.614738,41.39323999906],[-71.614218,41.39342699906],[-71.614031,41.39349499906],[-71.613925,41.39377299906],[-71.613441,41.39513899906],[-71.611332,41.40110299906],[-71.608887,41.40797299906],[-71.608836,41.40811699906],[-71.608221,41.40983799906],[-71.606961,41.41340399906],[-71.606734,41.41402899906],[-71.606228,41.41540799906],[-71.606197,41.41553799906],[-71.606152,41.41564599906],[-71.6058,41.41662199906],[-71.603391,41.42329399906],[-71.603166,41.42391999906],[-71.600087,41.43249399906],[-71.599927,41.43289699906],[-71.599767,41.43333799906],[-71.599564,41.43389699906],[-71.599218,41.43485199906],[-71.597867,41.43857499906],[-71.597803,41.43875799906],[-71.597748,41.43891199906],[-71.597611,41.43928699906],[-71.59701,41.44094499906],[-71.595141,41.44622499906],[-71.595216,41.44626999906],[-71.595232,41.44628799906],[-71.595267,41.44632599906],[-71.595305,41.44639599906],[-71.59537,41.44644999906],[-71.595465,41.44648699906],[-71.595558,41.44649499906],[-71.595719,41.44644899906],[-71.59579,41.44647999906],[-71.595813,41.44654999906],[-71.595811,41.44662299906],[-71.595841,41.44667399906],[-71.595919,41.44671499906],[-71.596012,41.44673599906],[-71.596106,41.44673699906],[-71.596179,41.44674899906],[-71.59622,41.44679899906],[-71.596237,41.44688099906],[-71.596233,41.44705299906],[-71.59621,41.44712799906],[-71.596174,41.44719499906],[-71.596112,41.44724099906],[-71.596053,41.44727199906],[-71.596042,41.44734699906],[-71.59607,41.44741099906],[-71.596128,41.44747299906],[-71.596202,41.44751699906],[-71.596287,41.44751999906],[-71.596366,41.44748699906],[-71.596437,41.44747899906],[-71.596515,41.44751599906],[-71.596578,41.44757899906],[-71.596589,41.44764099906],[-71.596567,41.44769599906],[-71.596565,41.44775199906],[-71.596582,41.44780199906],[-71.596646,41.44784399906],[-71.596732,41.44787599906],[-71.596904,41.44792399906],[-71.596982,41.44791799906],[-71.59709,41.44782999906],[-71.597151,41.44784899906],[-71.597215,41.44790599906],[-71.597261,41.44797499906],[-71.597275,41.44803999906],[-71.597272,41.44816599906],[-71.597254,41.44822199906],[-71.597217,41.44828999906],[-71.597192,41.44835099906],[-71.597189,41.44841699906],[-71.597217,41.44845199906],[-71.597295,41.44847399906],[-71.597368,41.44848999906],[-71.5975,41.44857899906],[-71.597582,41.44861799906],[-71.597683,41.44861799906],[-71.597753,41.44859999906],[-71.597824,41.44857499906],[-71.597916,41.44855099906],[-71.597992,41.44856999906],[-71.598051,41.44862299906],[-71.598039,41.44869499906],[-71.597936,41.44886999906],[-71.597932,41.44892499906],[-71.597951,41.44899999906],[-71.598017,41.44904999906],[-71.598119,41.44907599906],[-71.598193,41.44908799906],[-71.598262,41.44910599906],[-71.598391,41.44915899906],[-71.598467,41.44920499906],[-71.598474,41.44926299906],[-71.598434,41.44932699906],[-71.598368,41.44938499906],[-71.598304,41.44941499906],[-71.598228,41.44943099906],[-71.598131,41.44944399906],[-71.598088,41.44948099906],[-71.598104,41.44954199906],[-71.598171,41.44959599906],[-71.598242,41.44961999906],[-71.598324,41.44964099906],[-71.598403,41.44965099906],[-71.598474,41.44963699906],[-71.598534,41.44960599906],[-71.59859,41.44956899906],[-71.59868,41.44954099906],[-71.598769,41.44952899906],[-71.598857,41.44950799906],[-71.598946,41.44949799906],[-71.599025,41.44951899906],[-71.599145,41.44962699906],[-71.59921,41.44967599906],[-71.599303,41.44970399906],[-71.599399,41.44969599906],[-71.599468,41.44967899906],[-71.599548,41.44969199906],[-71.599575,41.44972799906],[-71.599517,41.44984099906],[-71.599519,41.44990899906],[-71.599566,41.44995199906],[-71.59966,41.44998299906],[-71.599733,41.44999099906],[-71.599836,41.44998799906],[-71.599931,41.44996299906],[-71.600018,41.44992699906],[-71.600099,41.44990399906],[-71.600176,41.44991499906],[-71.600218,41.44996099906],[-71.600201,41.45002699906],[-71.600157,41.45008799906],[-71.600173,41.45015299906],[-71.600239,41.45018199906],[-71.600336,41.45017899906],[-71.600479,41.45013199906],[-71.600633,41.45009299906],[-71.600701,41.45006999906],[-71.600759,41.45001999906],[-71.600723,41.44995999906],[-71.600659,41.44990399906],[-71.600637,41.44984099906],[-71.600651,41.44976399906],[-71.600717,41.44970399906],[-71.600807,41.44968299906],[-71.600907,41.44969399906],[-71.600979,41.44973499906],[-71.601038,41.44980499906],[-71.601072,41.44985999906],[-71.601095,41.44991799906],[-71.601128,41.45003399906],[-71.601148,41.45008599906],[-71.601191,41.45015799906],[-71.601283,41.45027799906],[-71.601346,41.45031999906],[-71.601425,41.45029299906],[-71.601518,41.45019699906],[-71.601604,41.45016099906],[-71.601693,41.45014899906],[-71.601759,41.45010799906],[-71.601805,41.45005799906],[-71.601936,41.44988799906],[-71.601986,41.44983999906],[-71.602045,41.44979799906],[-71.602113,41.44976299906],[-71.60227,41.44970199906],[-71.602419,41.44965899906],[-71.602588,41.44963399906],[-71.602611,41.44961199906],[-71.602582,41.44956099906],[-71.602557,41.44950299906],[-71.602572,41.44943899906],[-71.602634,41.44937699906],[-71.602696,41.44934699906],[-71.602799,41.44933199906],[-71.602892,41.44935299906],[-71.602981,41.44939199906],[-71.603045,41.44942699906],[-71.603106,41.44946899906],[-71.603157,41.44951999906],[-71.603187,41.44957699906],[-71.603203,41.44963799906],[-71.603236,41.44971099906],[-71.603303,41.44975199906],[-71.603381,41.44974999906],[-71.603459,41.44972299906],[-71.603538,41.44968799906],[-71.603606,41.44964099906],[-71.603667,41.44961799906],[-71.603742,41.44963099906],[-71.603791,41.44966699906],[-71.603784,41.44972499906],[-71.603701,41.44985699906],[-71.603684,41.44992299906],[-71.603694,41.44997999906],[-71.603749,41.45000199906],[-71.603832,41.44998499906],[-71.60393,41.44997299906],[-71.604119,41.44996199906],[-71.604181,41.44994299906],[-71.6042,41.44989699906],[-71.604186,41.44983599906],[-71.604198,41.44977599906],[-71.604279,41.44974099906],[-71.604357,41.44976199906],[-71.604418,41.44981299906],[-71.604419,41.44986899906],[-71.604366,41.44992399906],[-71.604298,41.44997399906],[-71.604251,41.45002399906],[-71.604252,41.45007199906],[-71.60431,41.45011499906],[-71.604404,41.45013599906],[-71.604601,41.45010599906],[-71.604691,41.45012999906],[-71.604748,41.45016699906],[-71.604757,41.45031799906],[-71.604769,41.45038899906],[-71.604801,41.45045199906],[-71.604838,41.45051099906],[-71.604887,41.45050699906],[-71.604946,41.45047599906],[-71.605017,41.45042999906],[-71.605102,41.45039499906],[-71.605182,41.45037299906],[-71.605257,41.45036999906],[-71.605315,41.45040299906],[-71.605337,41.45046199906],[-71.605341,41.45058299906],[-71.605374,41.45061699906],[-71.605444,41.45060499906],[-71.605566,41.45053099906],[-71.605646,41.45051199906],[-71.605673,41.45055499906],[-71.605665,41.45062099906],[-71.605618,41.45068399906],[-71.605564,41.45074099906],[-71.605531,41.45080099906],[-71.605533,41.45085999906],[-71.605586,41.45091799906],[-71.605657,41.45091999906],[-71.605736,41.45088399906],[-71.605805,41.45083299906],[-71.605875,41.45079899906],[-71.605954,41.45080199906],[-71.606023,41.45083499906],[-71.606055,41.45088999906],[-71.606041,41.45101599906],[-71.606047,41.45107099906],[-71.606098,41.45111399906],[-71.606232,41.45118099906],[-71.606298,41.45120399906],[-71.606371,41.45117099906],[-71.606456,41.45106499906],[-71.6065,41.45101899906],[-71.606548,41.45097799906],[-71.606605,41.45097399906],[-71.606651,41.45100899906],[-71.606645,41.45106599906],[-71.606607,41.45111899906],[-71.606562,41.45116499906],[-71.606547,41.45121699906],[-71.606592,41.45126999906],[-71.60668,41.45126799906],[-71.606794,41.45120599906],[-71.606874,41.45123499906],[-71.606936,41.45125299906],[-71.60699,41.45122699906],[-71.607022,41.45116499906],[-71.60704,41.45109599906],[-71.607079,41.45103799906],[-71.607136,41.45100499906],[-71.607217,41.45101399906],[-71.607298,41.45105999906],[-71.607342,41.45111399906],[-71.607344,41.45118399906],[-71.60736,41.45122799906],[-71.607444,41.45122399906],[-71.607501,41.45118899906],[-71.607576,41.45115799906],[-71.607639,41.45120599906],[-71.607673,41.45126799906],[-71.607692,41.45133499906],[-71.607725,41.45139599906],[-71.607794,41.45140899906],[-71.607865,41.45136199906],[-71.60796,41.45124299906],[-71.608026,41.45119399906],[-71.608115,41.45119799906],[-71.6082,41.45124099906],[-71.608238,41.45130399906],[-71.608212,41.45137599906],[-71.608097,41.45148799906],[-71.60809,41.45154099906],[-71.60817,41.45164699906],[-71.608162,41.45170999906],[-71.608135,41.45176899906],[-71.608138,41.45182499906],[-71.608191,41.45186499906],[-71.60828,41.45186299906],[-71.608363,41.45184599906],[-71.608433,41.45186999906],[-71.608493,41.45192399906],[-71.608545,41.45199299906],[-71.608609,41.45205799906],[-71.608671,41.45209699906],[-71.608821,41.45217299906],[-71.608912,41.45222699906],[-71.609162,41.45235799906],[-71.609224,41.45239399906],[-71.609311,41.45242399906],[-71.609404,41.45240899906],[-71.609462,41.45237599906],[-71.609518,41.45231399906],[-71.609523,41.45224999906],[-71.609553,41.45219499906],[-71.609617,41.45217799906],[-71.609691,41.45220399906],[-71.609728,41.45226899906],[-71.609732,41.45237999906],[-71.60975,41.45245399906],[-71.609802,41.45251699906],[-71.609852,41.45255699906],[-71.609912,41.45258799906],[-71.609982,41.45260199906],[-71.61008,41.45258699906],[-71.610158,41.45253899906],[-71.610177,41.45246199906],[-71.610175,41.45240499906],[-71.610164,41.45234599906],[-71.610141,41.45228899906],[-71.610074,41.45216699906],[-71.610046,41.45208799906],[-71.610028,41.45201599906],[-71.610007,41.45189799906],[-71.610005,41.45184099906],[-71.610011,41.45178499906],[-71.610035,41.45173199906],[-71.610076,41.45168399906],[-71.610128,41.45164399906],[-71.610221,41.45162199906],[-71.610323,41.45164899906],[-71.6104,41.45167399906],[-71.610481,41.45169099906],[-71.610658,41.45169799906],[-71.61075,41.45171899906],[-71.610829,41.45174699906],[-71.610915,41.45174899906],[-71.610985,41.45170999906],[-71.610981,41.45164299906],[-71.610924,41.45158399906],[-71.610775,41.45152599906],[-71.610728,41.45147699906],[-71.610734,41.45140999906],[-71.610801,41.45135399906],[-71.610868,41.45132199906],[-71.610945,41.45129299906],[-71.611027,41.45127399906],[-71.611102,41.45126899906],[-71.611196,41.45128399906],[-71.611274,41.45132599906],[-71.611334,41.45139199906],[-71.611348,41.45144799906],[-71.61135,41.45150999906],[-71.61136,41.45157499906],[-71.611386,41.45163699906],[-71.611423,41.45169099906],[-71.611565,41.45183499906],[-71.611709,41.45193299906],[-71.611789,41.45197699906],[-71.611872,41.45201299906],[-71.611959,41.45203599906],[-71.612132,41.45206399906],[-71.612207,41.45206599906],[-71.612286,41.45204099906],[-71.612335,41.45198499906],[-71.612326,41.45191299906],[-71.612251,41.45176499906],[-71.612232,41.45168799906],[-71.612235,41.45161199906],[-71.612271,41.45154999906],[-71.612349,41.45149999906],[-71.612492,41.45143399906],[-71.612569,41.45139199906],[-71.612634,41.45134399906],[-71.612738,41.45124699906],[-71.6128,41.45121299906],[-71.61288,41.45120199906],[-71.612971,41.45121099906],[-71.613059,41.45122799906],[-71.613215,41.45127699906],[-71.613428,41.45132999906],[-71.613526,41.45134799906],[-71.613631,41.45133999906],[-71.613724,41.45130599906],[-71.613772,41.45125199906],[-71.613807,41.45118399906],[-71.613853,41.45112299906],[-71.613915,41.45107699906],[-71.613971,41.45104199906],[-71.61404,41.45101299906],[-71.6142,41.45097399906],[-71.61428,41.45094699906],[-71.61443,41.45086799906],[-71.614488,41.45083199906],[-71.614526,41.45079499906],[-71.614544,41.45077599906],[-71.61454,41.45071699906],[-71.614497,41.45066299906],[-71.61443,41.45061799906],[-71.61435,41.45061899906],[-71.6142,41.45068999906],[-71.614133,41.45071399906],[-71.614058,41.45072499906],[-71.613812,41.45072899906],[-71.613719,41.45072399906],[-71.613632,41.45070099906],[-71.613591,41.45065499906],[-71.613587,41.45058699906],[-71.613597,41.45052599906],[-71.613644,41.45045099906],[-71.613749,41.45034699906],[-71.613805,41.45029899906],[-71.613938,41.45020299906],[-71.61401,41.45015899906],[-71.614206,41.45005699906],[-71.61429,41.45002999906],[-71.614365,41.45004799906],[-71.614442,41.45009599906],[-71.614504,41.45012799906],[-71.614578,41.45014799906],[-71.614655,41.45015099906],[-71.614727,41.45014299906],[-71.614796,41.45012499906],[-71.614857,41.45009299906],[-71.61492,41.45003299906],[-71.614929,41.44997399906],[-71.614917,41.44991099906],[-71.614913,41.44984499906],[-71.614936,41.44978399906],[-71.614993,41.44973899906],[-71.615074,41.44972599906],[-71.615358,41.44973699906],[-71.615434,41.44973599906],[-71.615606,41.44972099906],[-71.615723,41.44967299906],[-71.615768,41.44965199906],[-71.615794,41.44959199906],[-71.615911,41.44951099906],[-71.615921,41.44948999906],[-71.615969,41.44943799906],[-71.61601,41.44938099906],[-71.616116,41.44918299906],[-71.616188,41.44903599906],[-71.616234,41.44895499906],[-71.61634,41.44879399906],[-71.616439,41.44863199906],[-71.616506,41.44855499906],[-71.616583,41.44847999906],[-71.616659,41.44839699906],[-71.616794,41.44822599906],[-71.617016,41.44783399906],[-71.617111,41.44772099906],[-71.617169,41.44768199906],[-71.617245,41.44765499906],[-71.617406,41.44760699906],[-71.617493,41.44759099906],[-71.617669,41.44758799906],[-71.617749,41.44758299906],[-71.617818,41.44756799906],[-71.617896,41.44751399906],[-71.617945,41.44744499906],[-71.617943,41.44736699906],[-71.61789,41.44724699906],[-71.617878,41.44718199906],[-71.617876,41.44695799906],[-71.617901,41.44689499906],[-71.617954,41.44684499906],[-71.618024,41.44680499906],[-71.618183,41.44673499906],[-71.618273,41.44670199906],[-71.618376,41.44667499906],[-71.618937,41.44657299906],[-71.619115,41.44653199906],[-71.619207,41.44650499906],[-71.619495,41.44640699906],[-71.619681,41.44635499906],[-71.620095,41.44627099906],[-71.620409,41.44622099906],[-71.620591,41.44617799906],[-71.620675,41.44615299906],[-71.620745,41.44612099906],[-71.620798,41.44607899906],[-71.620894,41.44597899906],[-71.620946,41.44593399906],[-71.621006,41.44590399906],[-71.62108,41.44588699906],[-71.621167,41.44590099906],[-71.621187,41.44593099906],[-71.621284,41.44599199906],[-71.621422,41.44586199906],[-71.621506,41.44578899906],[-71.621735,41.44561399906],[-71.621788,41.44557999906],[-71.621834,41.44554099906],[-71.622124,41.44535099906],[-71.622215,41.44529699906],[-71.622414,41.44519799906],[-71.622658,41.44509499906],[-71.622902,41.44500399906],[-71.623154,41.44492299906],[-71.623528,41.44484699906],[-71.623726,41.44480099906],[-71.624692,41.44459499906],[-71.625557,41.44439999906],[-71.626177,41.44425599906],[-71.626779,41.44412199906],[-71.627449,41.44396999906],[-71.62779,41.44390099906],[-71.628068,41.44383099906],[-71.628534,41.44370899906],[-71.629054,41.44352699906],[-71.629344,41.44341499906],[-71.629391,41.44339399906],[-71.629534,41.44333099906],[-71.62979,41.44320699906],[-71.630167,41.44302199906],[-71.630962,41.44260999906],[-71.631552,41.44229999906],[-71.63194,41.44208799906],[-71.631966,41.44207399906],[-71.632354,41.44186699906],[-71.633159,41.44144999906],[-71.633882,41.44103599906],[-71.634392,41.44073499906],[-71.635547,41.44005499906],[-71.635918,41.43983099906],[-71.636146,41.43970799906],[-71.636867,41.43928099906],[-71.637753,41.43875199906],[-71.638093,41.43850899906],[-71.638405,41.43825499906],[-71.638634,41.43805699906],[-71.638798,41.43789199906],[-71.639046,41.43760699906],[-71.639145,41.43748099906],[-71.639206,41.43740799906],[-71.639399,41.43715399906],[-71.639454,41.43706799906],[-71.639507,41.43698599906],[-71.639549,41.43691399906],[-71.639609,41.43681299906],[-71.639719,41.43658299906],[-71.639767,41.43647299906],[-71.639821,41.43634999906],[-71.640488,41.43454699906],[-71.640999,41.43316699906],[-71.641225,41.43256999906],[-71.641502,41.43183899906],[-71.641685,41.43144199906],[-71.641762,41.43128599906],[-71.641983,41.43096199906],[-71.642159,41.43072499906],[-71.642319,41.43053799906],[-71.642502,41.43035499906],[-71.6427,41.43017199906],[-71.642937,41.42996599906],[-71.643379,41.42962599906],[-71.643478,41.42954599906],[-71.644096,41.42908499906],[-71.644309,41.42891899906],[-71.644951,41.42841699906],[-71.645058,41.42832199906],[-71.645482,41.42805599906],[-71.645971,41.42769299906],[-71.646111,41.42758299906],[-71.646311,41.42740399906],[-71.646524,41.42719299906],[-71.646788,41.42691399906],[-71.646795,41.42690499906],[-71.646905,41.42677299906],[-71.64696,41.42670999906],[-71.647112,41.42646299906],[-71.647363,41.42577199906],[-71.647377,41.42573499906],[-71.647474,41.42544299906],[-71.647751,41.42460599906],[-71.647987,41.42394599906],[-71.648186,41.42335499906],[-71.648529,41.42236699906],[-71.648636,41.42200099906],[-71.648697,41.42170299906],[-71.648735,41.42121899906]]]}}"}, +{"type": "blockgroup", "typeId": 511022, "areaId": 29426, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.646719,41.37004499906],[-71.646502,41.36820199906],[-71.64633,41.36688399906],[-71.645981,41.36674999906],[-71.642236,41.36625999906],[-71.640221,41.36617099906],[-71.639058,41.36592299906],[-71.637442,41.36536299906],[-71.636382,41.36456199906],[-71.635787,41.36366199906],[-71.635555,41.36257699906],[-71.636203,41.36211499906],[-71.636603,41.36193899906],[-71.636801,41.36163199906],[-71.638009,41.36145499906],[-71.638634,41.36122799906],[-71.638822,41.36101499906],[-71.638812,41.36059699906],[-71.638422,41.35996599906],[-71.638519,41.35960699906],[-71.639166,41.35787899906],[-71.639053,41.35734099906],[-71.638916,41.35663999906],[-71.638848,41.35628599906],[-71.638747,41.35581999906],[-71.638546,41.35488299906],[-71.638371,41.35389299906],[-71.636137,41.35514799906],[-71.633929,41.35680599906],[-71.628494,41.35884499906],[-71.626295,41.35942099906],[-71.625584,41.36082499906],[-71.625382,41.36139699906],[-71.624395,41.36424799906],[-71.624292,41.36454399906],[-71.624219,41.36475099906],[-71.624127,41.36501799906],[-71.624054,41.36522499906],[-71.623952,41.36551799906],[-71.623911,41.36563399906],[-71.623852,41.36579999906],[-71.62373,41.36615299906],[-71.623424,41.36698599906],[-71.623166,41.36776099906],[-71.623106,41.36786099906],[-71.622964,41.36826599906],[-71.622308,41.37024399906],[-71.622164,41.37067699906],[-71.622116,41.37082299906],[-71.621786,41.37181599906],[-71.621785,41.37203099906],[-71.621624,41.37210799906],[-71.621169,41.37339899906],[-71.620829,41.37437299906],[-71.6206,41.37501999906],[-71.619427,41.37832299906],[-71.619283,41.37873499906],[-71.618897,41.37986099906],[-71.618745,41.38028299906],[-71.618264,41.38162799906],[-71.617543,41.38363899906],[-71.617379,41.38410499906],[-71.617265,41.38443199906],[-71.617322,41.38444399906],[-71.61647,41.38680599906],[-71.616287,41.38735599906],[-71.616089,41.38788199906],[-71.615936,41.38831699906],[-71.615601,41.38931299906],[-71.615588,41.38936599906],[-71.614757,41.39144299906],[-71.614031,41.39349499906],[-71.614218,41.39342699906],[-71.614738,41.39323999906],[-71.618509,41.39176999906],[-71.619377,41.39143399906],[-71.620674,41.39094199906],[-71.622597,41.39019399906],[-71.624793,41.38932599906],[-71.625099,41.38920799906],[-71.625216,41.38916299906],[-71.625473,41.38906499906],[-71.62587,41.38891499906],[-71.62619,41.38879399906],[-71.626228,41.38877699906],[-71.626773,41.38853499906],[-71.626915,41.38849299906],[-71.62755,41.38824399906],[-71.628521,41.38784599906],[-71.628595,41.38781399906],[-71.628922,41.38766899906],[-71.629379,41.38745499906],[-71.62999,41.38714999906],[-71.630663,41.38680499906],[-71.630738,41.38676499906],[-71.63151,41.38637399906],[-71.632207,41.38602399906],[-71.632472,41.38589199906],[-71.632833,41.38571399906],[-71.633338,41.38545399906],[-71.633768,41.38520899906],[-71.63386,41.38515399906],[-71.633942,41.38511699906],[-71.634232,41.38496799906],[-71.634613,41.38478099906],[-71.634796,41.38469699906],[-71.635124,41.38455599906],[-71.635483,41.38441099906],[-71.63578,41.38431199906],[-71.636078,41.38422399906],[-71.636536,41.38412099906],[-71.636673,41.38409399906],[-71.637024,41.38404799906],[-71.637413,41.38400999906],[-71.637726,41.38399899906],[-71.638008,41.38400299906],[-71.638206,41.38401399906],[-71.638542,41.38404799906],[-71.638962,41.38410599906],[-71.639427,41.38420099906],[-71.640505,41.38443999906],[-71.640594,41.38432699906],[-71.640602,41.38425699906],[-71.64066,41.38412499906],[-71.640708,41.38406799906],[-71.640721,41.38402099906],[-71.640686,41.38396899906],[-71.640659,41.38390999906],[-71.640677,41.38385899906],[-71.64074,41.38383199906],[-71.640891,41.38378699906],[-71.640977,41.38379999906],[-71.641021,41.38377799906],[-71.641049,41.38372299906],[-71.641118,41.38370599906],[-71.641198,41.38367899906],[-71.641217,41.38362499906],[-71.641258,41.38357699906],[-71.641245,41.38352899906],[-71.641202,41.38347899906],[-71.641265,41.38343999906],[-71.641331,41.38340899906],[-71.641408,41.38339399906],[-71.641499,41.38340399906],[-71.641578,41.38343799906],[-71.641654,41.38345999906],[-71.641725,41.38344399906],[-71.641891,41.38338399906],[-71.642001,41.38329499906],[-71.64206,41.38328699906],[-71.642228,41.38311199906],[-71.642299,41.38303699906],[-71.64233,41.38297099906],[-71.642376,41.38291099906],[-71.642459,41.38278799906],[-71.642555,41.38267999906],[-71.642583,41.38261399906],[-71.642602,41.38254499906],[-71.642605,41.38242799906],[-71.642582,41.38230899906],[-71.642585,41.38212699906],[-71.6426,41.38206599906],[-71.642634,41.38201299906],[-71.642739,41.38189899906],[-71.642809,41.38176799906],[-71.642845,41.38171299906],[-71.642911,41.38166799906],[-71.642995,41.38166199906],[-71.643079,41.38166299906],[-71.643144,41.38164699906],[-71.643165,41.38159999906],[-71.643153,41.38154599906],[-71.64311,41.38148299906],[-71.643091,41.38141399906],[-71.643093,41.38134499906],[-71.643142,41.38129299906],[-71.643303,41.38122699906],[-71.643477,41.38114299906],[-71.64354,41.38109999906],[-71.643583,41.38104899906],[-71.643616,41.38099099906],[-71.643664,41.38086499906],[-71.643727,41.38072699906],[-71.643771,41.38066399906],[-71.643843,41.38061399906],[-71.643915,41.38057799906],[-71.643983,41.38055499906],[-71.644068,41.38053799906],[-71.644138,41.38053699906],[-71.644086,41.38056299906],[-71.64402,41.38061699906],[-71.644003,41.38068499906],[-71.644009,41.38073499906],[-71.644405,41.38105099906],[-71.644471,41.38110799906],[-71.644649,41.38098399906],[-71.644689,41.38100899906],[-71.645091,41.38053099906],[-71.645537,41.37962599906],[-71.646145,41.37736899906],[-71.64647,41.37525599906],[-71.646487,41.37510099906],[-71.646676,41.37318399906],[-71.646719,41.37004499906]]]}}"}, +{"type": "blockgroup", "typeId": 512011, "areaId": 29427, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.509422,41.46225699906],[-71.509338,41.46208199906],[-71.509186,41.46165799906],[-71.508942,41.46088799906],[-71.508858,41.46056399906],[-71.50882,41.46036099906],[-71.508804,41.46022799906],[-71.508789,41.45998399906],[-71.508804,41.45962499906],[-71.508859,41.45891599906],[-71.508888,41.45854099906],[-71.508906,41.45829599906],[-71.508914,41.45802999906],[-71.508912,41.45797799906],[-71.50891,41.45785599906],[-71.508889,41.45770699906],[-71.50874,41.45730099906],[-71.50851,41.45687299906],[-71.508386,41.45669599906],[-71.508225,41.45651599906],[-71.50803,41.45632699906],[-71.507834,41.45614699906],[-71.507498,41.45588299906],[-71.507261,41.45569399906],[-71.507027,41.45550899906],[-71.506189,41.45486699906],[-71.505816,41.45457299906],[-71.505791,41.45455599906],[-71.505554,41.45439099906],[-71.505411,41.45430299906],[-71.505249,41.45421599906],[-71.505018,41.45410799906],[-71.504608,41.45394899906],[-71.504059,41.45377699906],[-71.503777,41.45368599906],[-71.503071,41.45346899906],[-71.502802,41.45338899906],[-71.502629,41.45332599906],[-71.502512,41.45327499906],[-71.502409,41.45322299906],[-71.502308,41.45314799906],[-71.502081,41.45299099906],[-71.50198,41.45289999906],[-71.501915,41.45281999906],[-71.501884,41.45273599906],[-71.501875,41.45263299906],[-71.5019,41.45241399906],[-71.50191,41.45235199906],[-71.501914,41.45232199906],[-71.501255,41.45216499906],[-71.501015,41.45209699906],[-71.500865,41.45202699906],[-71.500597,41.45193799906],[-71.500261,41.45184099906],[-71.499986,41.45176099906],[-71.499584,41.45161399906],[-71.499394,41.45152299906],[-71.499226,41.45140699906],[-71.499172,41.45136399906],[-71.499114,41.45131699906],[-71.499067,41.45127499906],[-71.499006,41.45121599906],[-71.498938,41.45114799906],[-71.498877,41.45108299906],[-71.498828,41.45101899906],[-71.498764,41.45090099906],[-71.498619,41.45068199906],[-71.498322,41.45029399906],[-71.498291,41.45023299906],[-71.498253,41.45017599906],[-71.498154,41.44996299906],[-71.498085,41.44972999906],[-71.49807,41.44966099906],[-71.498047,41.44958899906],[-71.498016,41.44939399906],[-71.498016,41.44933699906],[-71.498024,41.44927999906],[-71.498024,41.44922299906],[-71.498131,41.44799799906],[-71.497945,41.44796299906],[-71.497871,41.44794899906],[-71.497665,41.44790999906],[-71.497177,41.44779199906],[-71.49704,41.44777299906],[-71.49688,41.44775799906],[-71.496761,41.44775099906],[-71.496559,41.44773499906],[-71.496201,41.44763899906],[-71.495964,41.44758599906],[-71.495621,41.44755899906],[-71.495041,41.44753999906],[-71.494591,41.44751699906],[-71.494507,41.44751699906],[-71.493813,41.44748299906],[-71.49369,41.44747199906],[-71.493614,41.44745599906],[-71.493256,41.44729199906],[-71.493011,41.44717399906],[-71.492332,41.44685699906],[-71.492027,41.44671599906],[-71.491562,41.44650999906],[-71.491302,41.44639999906],[-71.491249,41.44639599906],[-71.490837,41.44639599906],[-71.490707,41.44639999906],[-71.490265,41.44640499906],[-71.490082,41.44640699906],[-71.490326,41.44780399906],[-71.490334,41.44781899906],[-71.490395,41.44808599906],[-71.490463,41.44830699906],[-71.490501,41.44843099906],[-71.490535,41.44850499906],[-71.490563,41.44855499906],[-71.490654,41.44867099906],[-71.488853,41.44918099906],[-71.488099,41.44939199906],[-71.487877,41.44945499906],[-71.48777,41.44948999906],[-71.487671,41.44955399906],[-71.487526,41.44965699906],[-71.486907,41.45019899906],[-71.48674,41.45034399906],[-71.486229,41.45072199906],[-71.486023,41.45087399906],[-71.485901,41.45098099906],[-71.48587,41.45101499906],[-71.485847,41.45105399906],[-71.485832,41.45106899906],[-71.485817,41.45111099906],[-71.485802,41.45113799906],[-71.485779,41.45121799906],[-71.485779,41.45143099906],[-71.485802,41.45163699906],[-71.485832,41.45215599906],[-71.485878,41.45249199906],[-71.485893,41.45254899906],[-71.485962,41.45316299906],[-71.486015,41.45343399906],[-71.486023,41.45350299906],[-71.486023,41.45355999906],[-71.485977,41.45395699906],[-71.485947,41.45410499906],[-71.485947,41.45426599906],[-71.48597,41.45449799906],[-71.486023,41.45480699906],[-71.486076,41.45517699906],[-71.486115,41.45560799906],[-71.486221,41.45624199906],[-71.486259,41.45669599906],[-71.48632,41.45712699906],[-71.486336,41.45732099906],[-71.486328,41.45750799906],[-71.486183,41.45832399906],[-71.486015,41.45919399906],[-71.485985,41.45937699906],[-71.48597,41.45952999906],[-71.485947,41.45970899906],[-71.485939,41.45988799906],[-71.485985,41.46013999906],[-71.486015,41.46025799906],[-71.486198,41.46085699906],[-71.486267,41.46119899906],[-71.486343,41.46157799906],[-71.486526,41.46225399906],[-71.486649,41.46268899906],[-71.486735,41.46307299906],[-71.486794,41.46343999906],[-71.486801,41.46359399906],[-71.486777,41.46370499906],[-71.486954,41.46369199906],[-71.487312,41.46365699906],[-71.488029,41.46360399906],[-71.488441,41.46358099906],[-71.48864,41.46358499906],[-71.4888,41.46361899906],[-71.488968,41.46369199906],[-71.48909,41.46376399906],[-71.489578,41.46413399906],[-71.489861,41.46435899906],[-71.49012,41.46454199906],[-71.490341,41.46463799906],[-71.49054,41.46469099906],[-71.490775,41.46471199906],[-71.490921,41.46472499906],[-71.491203,41.46475999906],[-71.491737,41.46477099906],[-71.492111,41.46474099906],[-71.49247,41.46470299906],[-71.493423,41.46457699906],[-71.493652,41.46454199906],[-71.494553,41.46440099906],[-71.495033,41.46432099906],[-71.495155,41.46430599906],[-71.495583,41.46425199906],[-71.497391,41.46399299906],[-71.498215,41.46389799906],[-71.499168,41.46376799906],[-71.499259,41.46375599906],[-71.499908,41.46367299906],[-71.500679,41.46357299906],[-71.500816,41.46355799906],[-71.502014,41.46339799906],[-71.502617,41.46331399906],[-71.502952,41.46326899906],[-71.503942,41.46313799906],[-71.50457,41.46305499906],[-71.505226,41.46296299906],[-71.505836,41.46288699906],[-71.506294,41.46281399906],[-71.506667,41.46276699906],[-71.507324,41.46268499906],[-71.508057,41.46258899906],[-71.508453,41.46252099906],[-71.508732,41.46245299906],[-71.508987,41.46239099906],[-71.509422,41.46225699906]]]}}"}, +{"type": "blockgroup", "typeId": 512012, "areaId": 29428, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.528191,41.45402499906],[-71.528128,41.45357799906],[-71.528076,41.45330399906],[-71.527954,41.45272799906],[-71.527946,41.45265999906],[-71.527946,41.45259499906],[-71.527939,41.45256399906],[-71.527924,41.45248399906],[-71.527832,41.45220599906],[-71.527786,41.45210999906],[-71.527692,41.45193799906],[-71.527672,41.45189999906],[-71.527336,41.45130199906],[-71.52703,41.45085399906],[-71.526587,41.45020399906],[-71.526289,41.44976299906],[-71.525787,41.44901699906],[-71.525459,41.44852399906],[-71.525322,41.44833799906],[-71.524727,41.44750199906],[-71.524194,41.44670199906],[-71.524147,41.44663199906],[-71.523972,41.44630799906],[-71.523026,41.44440099906],[-71.522598,41.44358799906],[-71.522461,41.44329799906],[-71.522308,41.44301599906],[-71.522235,41.44287299906],[-71.521904,41.44222299906],[-71.521652,41.44176099906],[-71.521339,41.44112399906],[-71.521271,41.44096399906],[-71.521193,41.44078399906],[-71.521111,41.44059399906],[-71.521049,41.44050599906],[-71.520813,41.44027699906],[-71.520615,41.44011699906],[-71.520348,41.43989199906],[-71.520119,41.43968999906],[-71.519783,41.43937299906],[-71.519539,41.43905999906],[-71.51944,41.43889599906],[-71.519234,41.43851899906],[-71.519211,41.43846899906],[-71.519073,41.43815999906],[-71.518929,41.43785899906],[-71.518799,41.43761099906],[-71.518356,41.43666099906],[-71.518112,41.43612299906],[-71.518044,41.43599299906],[-71.517555,41.43492099906],[-71.517281,41.43435699906],[-71.517052,41.43383399906],[-71.516899,41.43352099906],[-71.516762,41.43333399906],[-71.516556,41.43318199906],[-71.516251,41.43304099906],[-71.515876,41.43287599906],[-71.515741,41.43297299906],[-71.515563,41.43307599906],[-71.515259,41.43322399906],[-71.514961,41.43331899906],[-71.514626,41.43339899906],[-71.514227,41.43347799906],[-71.513795,41.43356799906],[-71.513299,41.43367299906],[-71.512813,41.43377299906],[-71.511833,41.43396799906],[-71.511402,41.43406999906],[-71.511195,41.43412199906],[-71.510902,41.43417799906],[-71.510746,41.43421399906],[-71.510527,41.43427499906],[-71.510664,41.43429099906],[-71.510731,41.43429399906],[-71.510877,41.43432099906],[-71.510986,41.43436199906],[-71.511254,41.43445899906],[-71.511436,41.43458599906],[-71.511879,41.43482199906],[-71.511948,41.43485299906],[-71.511879,41.43494799906],[-71.51133,41.43556599906],[-71.510765,41.43625999906],[-71.51049,41.43666099906],[-71.509956,41.43766399906],[-71.509941,41.43768299906],[-71.509842,41.43794999906],[-71.509711,41.43830199906],[-71.509628,41.43852599906],[-71.509552,41.43872799906],[-71.509188,41.43957899906],[-71.509125,41.43971299906],[-71.508667,41.44070099906],[-71.508369,41.44168499906],[-71.508369,41.44169999906],[-71.508072,41.44267299906],[-71.508064,41.44271099906],[-71.507797,41.44366799906],[-71.50769,41.44408399906],[-71.507248,41.44533899906],[-71.507133,41.44576299906],[-71.506912,41.44681499906],[-71.506902,41.44687699906],[-71.506889,41.44695699906],[-71.506859,41.44728499906],[-71.506859,41.44737199906],[-71.506851,41.44748299906],[-71.506866,41.44776199906],[-71.506882,41.44794799906],[-71.506874,41.44814299906],[-71.506866,41.44859299906],[-71.506081,41.44859699906],[-71.505463,41.44862399906],[-71.505371,41.44862399906],[-71.50499,41.44860499906],[-71.504738,41.44856299906],[-71.503883,41.44819999906],[-71.503273,41.44795599906],[-71.502808,41.44776199906],[-71.50248,41.44761699906],[-71.502365,41.44786099906],[-71.502289,41.44806299906],[-71.50219,41.44823499906],[-71.5019,41.44871499906],[-71.501404,41.44941699906],[-71.501198,41.44973799906],[-71.501091,41.44991299906],[-71.50098,41.45008299906],[-71.500657,41.45058299906],[-71.500623,41.45063399906],[-71.500587,41.45068399906],[-71.500562,41.45071499906],[-71.500442,41.45092299906],[-71.500396,41.45100099906],[-71.500373,41.45104599906],[-71.500366,41.45106899906],[-71.500388,41.45112099906],[-71.500423,41.45117499906],[-71.500457,41.45122499906],[-71.500526,41.45128599906],[-71.501405,41.45163599906],[-71.501539,41.45170999906],[-71.501637,41.45176199906],[-71.501731,41.45181599906],[-71.501817,41.45187599906],[-71.501869,41.45191199906],[-71.501908,41.45194799906],[-71.501918,41.45196999906],[-71.501925,41.45200499906],[-71.501926,41.45207899906],[-71.501928,41.45215199906],[-71.501923,41.45225299906],[-71.501919,41.45228199906],[-71.501914,41.45232199906],[-71.50191,41.45235199906],[-71.5019,41.45241399906],[-71.501875,41.45263299906],[-71.501884,41.45273599906],[-71.501915,41.45281999906],[-71.50198,41.45289999906],[-71.502081,41.45299099906],[-71.502308,41.45314799906],[-71.502409,41.45322299906],[-71.502512,41.45327499906],[-71.502629,41.45332599906],[-71.502802,41.45338899906],[-71.503071,41.45346899906],[-71.503777,41.45368599906],[-71.504059,41.45377699906],[-71.504608,41.45394899906],[-71.505018,41.45410799906],[-71.505249,41.45421599906],[-71.505411,41.45430299906],[-71.505554,41.45439099906],[-71.505791,41.45455599906],[-71.505816,41.45457299906],[-71.506189,41.45486699906],[-71.507027,41.45550899906],[-71.507261,41.45569399906],[-71.507498,41.45588299906],[-71.507834,41.45614699906],[-71.50803,41.45632699906],[-71.508225,41.45651599906],[-71.508386,41.45669599906],[-71.50851,41.45687299906],[-71.50874,41.45730099906],[-71.508889,41.45770699906],[-71.50891,41.45785599906],[-71.508912,41.45797799906],[-71.508914,41.45802999906],[-71.508906,41.45829599906],[-71.508888,41.45854099906],[-71.508859,41.45891599906],[-71.508804,41.45962499906],[-71.508789,41.45998399906],[-71.508804,41.46022799906],[-71.50882,41.46036099906],[-71.508858,41.46056399906],[-71.508942,41.46088799906],[-71.509186,41.46165799906],[-71.509338,41.46208199906],[-71.509422,41.46225699906],[-71.510307,41.46199399906],[-71.510483,41.46193699906],[-71.511673,41.46157799906],[-71.512321,41.46137199906],[-71.512939,41.46116599906],[-71.513885,41.46085699906],[-71.514946,41.46049899906],[-71.51502,41.46047999906],[-71.515587,41.46033899906],[-71.515678,41.46031199906],[-71.516014,41.46022399906],[-71.516502,41.46012499906],[-71.516777,41.46007899906],[-71.517143,41.46002599906],[-71.517433,41.45996099906],[-71.517761,41.45989599906],[-71.517967,41.45983899906],[-71.518082,41.45980099906],[-71.518318,41.45970899906],[-71.518479,41.45960999906],[-71.518982,41.45930099906],[-71.519547,41.45894599906],[-71.520023,41.45864799906],[-71.520271,41.45849599906],[-71.520655,41.45827299906],[-71.521339,41.45787799906],[-71.521986,41.45752199906],[-71.522499,41.45724099906],[-71.522812,41.45707299906],[-71.523262,41.45682899906],[-71.52554,41.45553499906],[-71.525841,41.45536399906],[-71.527199,41.45463599906],[-71.528065,41.45413599906],[-71.528191,41.45402499906]]]}}"}, +{"type": "blockgroup", "typeId": 512021, "areaId": 29429, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.505119,41.43568399906],[-71.505013,41.43527599906],[-71.50473,41.43444099906],[-71.504547,41.43386799906],[-71.504532,41.43378399906],[-71.504532,41.43374599906],[-71.504524,41.43370799906],[-71.504524,41.43363599906],[-71.504517,41.43359799906],[-71.504517,41.43356299906],[-71.504524,41.43352499906],[-71.504539,41.43350599906],[-71.504547,41.43348299906],[-71.50386,41.43352499906],[-71.503082,41.43356299906],[-71.502769,41.43357499906],[-71.502437,41.43356899906],[-71.502084,41.43356199906],[-71.502078,41.43350899906],[-71.502022,41.43341899906],[-71.501929,41.43331699906],[-71.501827,41.43321899906],[-71.501733,41.43311399906],[-71.50165,41.43298499906],[-71.501594,41.43287699906],[-71.50155,41.43275399906],[-71.501479,41.43249699906],[-71.501442,41.43238399906],[-71.501391,41.43222799906],[-71.501353,41.43207199906],[-71.501333,41.43191599906],[-71.50131,41.43164699906],[-71.501266,41.43139799906],[-71.501261,41.43124899906],[-71.501249,41.43111899906],[-71.501217,41.43099499906],[-71.501164,41.43088699906],[-71.501096,41.43077699906],[-71.501008,41.43066399906],[-71.500905,41.43054399906],[-71.500712,41.43034199906],[-71.500647,41.43026399906],[-71.500623,41.43023399906],[-71.500549,41.43012899906],[-71.500488,41.43002999906],[-71.50037,41.42977399906],[-71.500346,41.42971799906],[-71.500323,41.42965999906],[-71.50029,41.42954799906],[-71.500212,41.42940199906],[-71.50017,41.42932499906],[-71.50006,41.42922599906],[-71.499962,41.42910099906],[-71.499682,41.42897799906],[-71.499502,41.42895299906],[-71.499343,41.42892999906],[-71.499077,41.42892999906],[-71.499048,41.42889099906],[-71.498925,41.42874499906],[-71.498821,41.42862199906],[-71.498812,41.42858399906],[-71.498769,41.42847099906],[-71.498739,41.42843399906],[-71.498744,41.42796699906],[-71.499105,41.42762999906],[-71.498709,41.42559999906],[-71.498541,41.42532499906],[-71.498358,41.42521099906],[-71.498202,41.42500099906],[-71.495501,41.42410099906],[-71.494802,41.42730099906],[-71.492801,41.42830099906],[-71.492401,41.42870099906],[-71.492203,41.42905499906],[-71.492,41.42939999906],[-71.491899,41.42955099906],[-71.491758,41.42976499906],[-71.491614,41.42997999906],[-71.491601,41.42999999906],[-71.491536,41.43006899906],[-71.491373,41.43024499906],[-71.489991,41.43171399906],[-71.48961,41.43201299906],[-71.489595,41.43198599906],[-71.489553,41.43191099906],[-71.489496,41.43187899906],[-71.489354,41.43187399906],[-71.489132,41.43199099906],[-71.488981,41.43202199906],[-71.488817,41.43203399906],[-71.488665,41.43203499906],[-71.488498,41.43207199906],[-71.488329,41.43212499906],[-71.488168,41.43215299906],[-71.488008,41.43215499906],[-71.487851,41.43214699906],[-71.487704,41.43214899906],[-71.487632,41.43223299906],[-71.487594,41.43234399906],[-71.487586,41.43257999906],[-71.487593,41.43269099906],[-71.487594,41.43280499906],[-71.487585,41.43304299906],[-71.48755,41.43317299906],[-71.487466,41.43327199906],[-71.48729,41.43330699906],[-71.487139,41.43328499906],[-71.487044,41.43326299906],[-71.48689,41.43321999906],[-71.486735,41.43318399906],[-71.486594,41.43317099906],[-71.486374,41.43316299906],[-71.48621,41.43318799906],[-71.486121,41.43324399906],[-71.486042,41.43335299906],[-71.485936,41.43345999906],[-71.485829,41.43354299906],[-71.485731,41.43362899906],[-71.485655,41.43374099906],[-71.485576,41.43370699906],[-71.485315,41.43370099906],[-71.485146,41.43372499906],[-71.485012,41.43378299906],[-71.484606,41.43398099906],[-71.484467,41.43403499906],[-71.484335,41.43410099906],[-71.484215,41.43416899906],[-71.484128,41.43427499906],[-71.484073,41.43438599906],[-71.484034,41.43451299906],[-71.484009,41.43463099906],[-71.48397,41.43473999906],[-71.483936,41.43486199906],[-71.48393,41.43497199906],[-71.48388,41.43508399906],[-71.483872,41.43516599906],[-71.483535,41.43536199906],[-71.483326,41.43542099906],[-71.483398,41.43550799906],[-71.483513,41.43563499906],[-71.4836,41.43570199906],[-71.483769,41.43583199906],[-71.484124,41.43613099906],[-71.484314,41.43627499906],[-71.484825,41.43667599906],[-71.484978,41.43680599906],[-71.48526,41.43705699906],[-71.485558,41.43734399906],[-71.485802,41.43760699906],[-71.485894,41.43771699906],[-71.486,41.43784299906],[-71.486465,41.43846099906],[-71.486547,41.43859399906],[-71.486567,41.43862599906],[-71.486679,41.43880799906],[-71.487259,41.43971299906],[-71.487277,41.43973899906],[-71.487319,41.43980299906],[-71.487444,41.43998699906],[-71.487823,41.44054799906],[-71.488052,41.44089499906],[-71.488457,41.44151299906],[-71.48848,41.44151299906],[-71.489731,41.44137999906],[-71.489983,41.44135299906],[-71.490807,41.44126899906],[-71.491356,41.44121599906],[-71.491653,41.44118499906],[-71.492981,41.44104399906],[-71.493965,41.44094799906],[-71.494255,41.44091399906],[-71.495483,41.44078799906],[-71.495499,41.44078399906],[-71.495888,41.44074999906],[-71.496919,41.44064099906],[-71.497056,41.44061399906],[-71.497135,41.44057199906],[-71.497205,41.44052199906],[-71.497566,41.44012099906],[-71.497955,41.43970099906],[-71.498496,41.43916099906],[-71.498711,41.43894599906],[-71.498734,41.43893099906],[-71.499168,41.43854099906],[-71.499733,41.43804199906],[-71.499816,41.43796799906],[-71.49987,41.43792299906],[-71.499924,41.43788299906],[-71.500132,41.43775499906],[-71.500326,41.43763699906],[-71.500508,41.43752599906],[-71.500794,41.43735699906],[-71.500949,41.43726799906],[-71.501144,41.43715699906],[-71.501403,41.43700899906],[-71.501755,41.43680199906],[-71.502095,41.43657099906],[-71.502513,41.43630199906],[-71.502747,41.43619199906],[-71.502883,41.43614699906],[-71.503092,41.43609399906],[-71.50383,41.43594399906],[-71.504036,41.43590499906],[-71.504066,41.43590199906],[-71.505119,41.43568399906]]]}}"}, +{"type": "blockgroup", "typeId": 512022, "areaId": 29430, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.511948,41.43485299906],[-71.511879,41.43482199906],[-71.511436,41.43458599906],[-71.511254,41.43445899906],[-71.510986,41.43436199906],[-71.510877,41.43432099906],[-71.510731,41.43429399906],[-71.510664,41.43429099906],[-71.510527,41.43427499906],[-71.510214,41.43438299906],[-71.509603,41.43464599906],[-71.509234,41.43478099906],[-71.508779,41.43490299906],[-71.50807,41.43506699906],[-71.507433,41.43519999906],[-71.506214,41.43544699906],[-71.506115,41.43546699906],[-71.505386,41.43562699906],[-71.505272,41.43565399906],[-71.505119,41.43568399906],[-71.504066,41.43590199906],[-71.504036,41.43590499906],[-71.50383,41.43594399906],[-71.503092,41.43609399906],[-71.502883,41.43614699906],[-71.502747,41.43619199906],[-71.502513,41.43630199906],[-71.502095,41.43657099906],[-71.501755,41.43680199906],[-71.501854,41.43691999906],[-71.501915,41.43703799906],[-71.501966,41.43720499906],[-71.501976,41.43723699906],[-71.502106,41.43814799906],[-71.502251,41.43885799906],[-71.502319,41.43925899906],[-71.502335,41.43943799906],[-71.502327,41.43947999906],[-71.502324,41.43976399906],[-71.502319,41.44018199906],[-71.502296,41.44091399906],[-71.502289,41.44159299906],[-71.502296,41.44201999906],[-71.502312,41.44217299906],[-71.502319,41.44232199906],[-71.502464,41.44283299906],[-71.502541,41.44308899906],[-71.502579,41.44316499906],[-71.502598,41.44324599906],[-71.502724,41.44378999906],[-71.502747,41.44388599906],[-71.502762,41.44409899906],[-71.502787,41.44423599906],[-71.502831,41.44447699906],[-71.502899,41.44488499906],[-71.502907,41.44503399906],[-71.502876,41.44534699906],[-71.502808,41.44587699906],[-71.502708,41.44658699906],[-71.50264,41.44712399906],[-71.502617,41.44726599906],[-71.50251,41.44752899906],[-71.50248,41.44761699906],[-71.502808,41.44776199906],[-71.503273,41.44795599906],[-71.503883,41.44819999906],[-71.504738,41.44856299906],[-71.50499,41.44860499906],[-71.505371,41.44862399906],[-71.505463,41.44862399906],[-71.506081,41.44859699906],[-71.506866,41.44859299906],[-71.506874,41.44814299906],[-71.506882,41.44794799906],[-71.506866,41.44776199906],[-71.506851,41.44748299906],[-71.506859,41.44737199906],[-71.506859,41.44728499906],[-71.506889,41.44695699906],[-71.506902,41.44687699906],[-71.506912,41.44681499906],[-71.507133,41.44576299906],[-71.507248,41.44533899906],[-71.50769,41.44408399906],[-71.507797,41.44366799906],[-71.508064,41.44271099906],[-71.508072,41.44267299906],[-71.508369,41.44169999906],[-71.508369,41.44168499906],[-71.508667,41.44070099906],[-71.509125,41.43971299906],[-71.509188,41.43957899906],[-71.509552,41.43872799906],[-71.509628,41.43852599906],[-71.509711,41.43830199906],[-71.509842,41.43794999906],[-71.509941,41.43768299906],[-71.509956,41.43766399906],[-71.51049,41.43666099906],[-71.510765,41.43625999906],[-71.51133,41.43556599906],[-71.511879,41.43494799906],[-71.511948,41.43485299906]]]}}"}, +{"type": "blockgroup", "typeId": 512023, "areaId": 29431, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.502907,41.44503399906],[-71.502899,41.44488499906],[-71.502831,41.44447699906],[-71.502787,41.44423599906],[-71.502762,41.44409899906],[-71.502747,41.44388599906],[-71.502724,41.44378999906],[-71.502598,41.44324599906],[-71.502579,41.44316499906],[-71.502541,41.44308899906],[-71.502464,41.44283299906],[-71.502319,41.44232199906],[-71.502312,41.44217299906],[-71.502296,41.44201999906],[-71.502289,41.44159299906],[-71.502296,41.44091399906],[-71.502319,41.44018199906],[-71.502324,41.43976399906],[-71.502327,41.43947999906],[-71.502335,41.43943799906],[-71.502319,41.43925899906],[-71.502251,41.43885799906],[-71.502106,41.43814799906],[-71.501976,41.43723699906],[-71.501966,41.43720499906],[-71.501915,41.43703799906],[-71.501854,41.43691999906],[-71.501755,41.43680199906],[-71.501403,41.43700899906],[-71.501144,41.43715699906],[-71.500949,41.43726799906],[-71.500794,41.43735699906],[-71.500508,41.43752599906],[-71.500326,41.43763699906],[-71.500132,41.43775499906],[-71.499924,41.43788299906],[-71.49987,41.43792299906],[-71.499816,41.43796799906],[-71.499733,41.43804199906],[-71.499168,41.43854099906],[-71.498734,41.43893099906],[-71.498711,41.43894599906],[-71.498496,41.43916099906],[-71.497955,41.43970099906],[-71.497566,41.44012099906],[-71.497205,41.44052199906],[-71.497135,41.44057199906],[-71.497056,41.44061399906],[-71.496919,41.44064099906],[-71.495888,41.44074999906],[-71.495499,41.44078399906],[-71.495483,41.44078799906],[-71.494255,41.44091399906],[-71.493965,41.44094799906],[-71.492981,41.44104399906],[-71.491653,41.44118499906],[-71.491356,41.44121599906],[-71.490807,41.44126899906],[-71.489983,41.44135299906],[-71.489731,41.44137999906],[-71.48848,41.44151299906],[-71.488457,41.44151299906],[-71.488655,41.44195099906],[-71.488686,41.44201999906],[-71.488815,41.44231399906],[-71.488945,41.44259999906],[-71.489326,41.44333599906],[-71.489594,41.44387399906],[-71.489662,41.44404199906],[-71.489738,41.44435099906],[-71.489761,41.44451499906],[-71.489807,41.44476299906],[-71.489858,41.44504099906],[-71.490082,41.44640699906],[-71.490265,41.44640499906],[-71.490707,41.44639999906],[-71.490837,41.44639599906],[-71.491249,41.44639599906],[-71.491302,41.44639999906],[-71.491562,41.44650999906],[-71.492027,41.44671599906],[-71.492332,41.44685699906],[-71.493011,41.44717399906],[-71.493256,41.44729199906],[-71.493614,41.44745599906],[-71.49369,41.44747199906],[-71.493813,41.44748299906],[-71.494507,41.44751699906],[-71.494591,41.44751699906],[-71.495041,41.44753999906],[-71.495621,41.44755899906],[-71.495964,41.44758599906],[-71.496201,41.44763899906],[-71.496559,41.44773499906],[-71.496761,41.44775099906],[-71.49688,41.44775799906],[-71.49704,41.44777299906],[-71.497177,41.44779199906],[-71.497665,41.44790999906],[-71.497871,41.44794899906],[-71.497945,41.44796299906],[-71.498131,41.44799799906],[-71.498024,41.44922299906],[-71.498024,41.44927999906],[-71.498016,41.44933699906],[-71.498016,41.44939399906],[-71.498047,41.44958899906],[-71.49807,41.44966099906],[-71.498085,41.44972999906],[-71.498154,41.44996299906],[-71.498253,41.45017599906],[-71.498291,41.45023299906],[-71.498322,41.45029399906],[-71.498619,41.45068199906],[-71.498764,41.45090099906],[-71.498828,41.45101899906],[-71.498877,41.45108299906],[-71.498938,41.45114799906],[-71.499006,41.45121599906],[-71.499067,41.45127499906],[-71.499114,41.45131699906],[-71.499172,41.45136399906],[-71.499226,41.45140699906],[-71.499394,41.45152299906],[-71.499584,41.45161399906],[-71.499986,41.45176099906],[-71.500261,41.45184099906],[-71.500597,41.45193799906],[-71.500865,41.45202699906],[-71.501015,41.45209699906],[-71.501255,41.45216499906],[-71.501914,41.45232199906],[-71.501919,41.45228199906],[-71.501923,41.45225299906],[-71.501928,41.45215199906],[-71.501926,41.45207899906],[-71.501925,41.45200499906],[-71.501918,41.45196999906],[-71.501908,41.45194799906],[-71.501869,41.45191199906],[-71.501817,41.45187599906],[-71.501731,41.45181599906],[-71.501637,41.45176199906],[-71.501539,41.45170999906],[-71.501405,41.45163599906],[-71.500526,41.45128599906],[-71.500457,41.45122499906],[-71.500423,41.45117499906],[-71.500388,41.45112099906],[-71.500366,41.45106899906],[-71.500373,41.45104599906],[-71.500396,41.45100099906],[-71.500442,41.45092299906],[-71.500562,41.45071499906],[-71.500587,41.45068399906],[-71.500623,41.45063399906],[-71.500657,41.45058299906],[-71.50098,41.45008299906],[-71.501091,41.44991299906],[-71.501198,41.44973799906],[-71.501404,41.44941699906],[-71.5019,41.44871499906],[-71.50219,41.44823499906],[-71.502289,41.44806299906],[-71.502365,41.44786099906],[-71.50248,41.44761699906],[-71.50251,41.44752899906],[-71.502617,41.44726599906],[-71.50264,41.44712399906],[-71.502708,41.44658699906],[-71.502808,41.44587699906],[-71.502876,41.44534699906],[-71.502907,41.44503399906]]]}}"}, +{"type": "blockgroup", "typeId": 512024, "areaId": 29432, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.490654,41.44867099906],[-71.490563,41.44855499906],[-71.490535,41.44850499906],[-71.490501,41.44843099906],[-71.490463,41.44830699906],[-71.490395,41.44808599906],[-71.490334,41.44781899906],[-71.490326,41.44780399906],[-71.490082,41.44640699906],[-71.489858,41.44504099906],[-71.489807,41.44476299906],[-71.489761,41.44451499906],[-71.489738,41.44435099906],[-71.489662,41.44404199906],[-71.489594,41.44387399906],[-71.489326,41.44333599906],[-71.488945,41.44259999906],[-71.488815,41.44231399906],[-71.488686,41.44201999906],[-71.488655,41.44195099906],[-71.488457,41.44151299906],[-71.488052,41.44089499906],[-71.487823,41.44054799906],[-71.487444,41.43998699906],[-71.487319,41.43980299906],[-71.487277,41.43973899906],[-71.487259,41.43971299906],[-71.486679,41.43880799906],[-71.486567,41.43862599906],[-71.486547,41.43859399906],[-71.486465,41.43846099906],[-71.486,41.43784299906],[-71.485894,41.43771699906],[-71.485802,41.43760699906],[-71.485558,41.43734399906],[-71.48526,41.43705699906],[-71.484978,41.43680599906],[-71.484825,41.43667599906],[-71.484314,41.43627499906],[-71.484124,41.43613099906],[-71.483769,41.43583199906],[-71.4836,41.43570199906],[-71.483513,41.43563499906],[-71.483398,41.43550799906],[-71.483326,41.43542099906],[-71.483257,41.43549199906],[-71.482811,41.43567999906],[-71.482628,41.43575699906],[-71.482338,41.43587499906],[-71.48204,41.43599699906],[-71.478309,41.43751999906],[-71.47751,41.43784599906],[-71.476335,41.43836299906],[-71.475691,41.43864499906],[-71.475075,41.43887699906],[-71.475134,41.43892699906],[-71.475327,41.43908299906],[-71.475426,41.43915199906],[-71.475494,41.43918999906],[-71.475578,41.43920899906],[-71.475746,41.43921699906],[-71.47599,41.43919399906],[-71.476128,41.43918999906],[-71.476372,41.43918999906],[-71.476479,41.43920499906],[-71.476532,41.43921699906],[-71.476761,41.43929299906],[-71.47702,41.43936199906],[-71.477158,41.43938399906],[-71.477295,41.43939999906],[-71.477371,41.43939999906],[-71.477554,41.43941099906],[-71.477722,41.43944199906],[-71.477989,41.43951399906],[-71.478394,41.43965499906],[-71.47863,41.43974299906],[-71.478966,41.43986099906],[-71.479073,41.43990299906],[-71.479294,41.44000599906],[-71.479393,41.44006699906],[-71.479485,41.44011699906],[-71.479576,41.44017399906],[-71.479652,41.44023499906],[-71.479706,41.44029599906],[-71.479797,41.44042599906],[-71.479868,41.44061499906],[-71.479897,41.44075099906],[-71.479895,41.44084199906],[-71.479876,41.44093299906],[-71.479847,41.44102599906],[-71.479776,41.44115699906],[-71.479701,41.44125799906],[-71.479542,41.44146999906],[-71.47936,41.44170799906],[-71.47922,41.44190299906],[-71.479124,41.44201199906],[-71.479065,41.44210399906],[-71.479317,41.44220399906],[-71.479027,41.44258899906],[-71.478737,41.44294399906],[-71.478404,41.44332999906],[-71.478279,41.44346599906],[-71.478134,41.44362999906],[-71.477936,41.44383599906],[-71.477814,41.44396999906],[-71.476359,41.44539099906],[-71.475266,41.44645699906],[-71.474945,41.44676199906],[-71.474901,41.44679599906],[-71.47448,41.44720199906],[-71.4746,41.44725599906],[-71.473885,41.44795599906],[-71.473175,41.44862699906],[-71.472715,41.44907999906],[-71.471817,41.44997799906],[-71.471406,41.45035599906],[-71.471062,41.45067199906],[-71.470421,41.45131299906],[-71.469925,41.45185899906],[-71.46965,41.45227799906],[-71.469429,41.45269799906],[-71.469276,41.45310599906],[-71.469154,41.45365099906],[-71.469109,41.45408199906],[-71.469097,41.45425999906],[-71.469097,41.45448699906],[-71.469086,41.45476399906],[-71.46904,41.45506699906],[-71.468964,41.45534099906],[-71.468839,41.45569399906],[-71.468721,41.45597099906],[-71.468704,41.45600699906],[-71.468576,41.45596299906],[-71.468033,41.45719899906],[-71.467947,41.45738799906],[-71.467808,41.45769299906],[-71.467794,41.45772299906],[-71.467613,41.45811799906],[-71.467369,41.45859099906],[-71.467102,41.45912199906],[-71.466988,41.45933899906],[-71.46663,41.46002099906],[-71.466131,41.46094599906],[-71.46566,41.46187999906],[-71.465271,41.46266599906],[-71.464867,41.46346299906],[-71.464661,41.46381799906],[-71.464547,41.46397799906],[-71.464232,41.46445499906],[-71.464013,41.46484199906],[-71.463749,41.46548999906],[-71.463722,41.46555299906],[-71.463711,41.46557899906],[-71.463601,41.46584899906],[-71.46347,41.46617099906],[-71.463613,41.46621199906],[-71.463532,41.46642399906],[-71.463644,41.46633099906],[-71.463762,41.46628399906],[-71.463969,41.46623199906],[-71.46406,41.46622599906],[-71.464149,41.46622099906],[-71.46463,41.46618999906],[-71.465309,41.46612899906],[-71.466103,41.46603399906],[-71.467581,41.46583999906],[-71.469017,41.46565199906],[-71.470016,41.46552999906],[-71.471306,41.46538199906],[-71.472267,41.46525999906],[-71.473259,41.46514099906],[-71.473516,41.46510899906],[-71.474426,41.46499599906],[-71.475716,41.46484399906],[-71.476623,41.46474099906],[-71.476868,41.46471399906],[-71.477852,41.46463399906],[-71.478477,41.46460299906],[-71.479004,41.46455399906],[-71.479958,41.46442799906],[-71.480995,41.46425999906],[-71.481972,41.46411899906],[-71.482719,41.46403099906],[-71.483062,41.46400499906],[-71.483322,41.46398499906],[-71.484039,41.46397799906],[-71.48455,41.46399299906],[-71.485474,41.46385599906],[-71.485901,41.46380599906],[-71.486267,41.46375699906],[-71.486777,41.46370499906],[-71.486801,41.46359399906],[-71.486794,41.46343999906],[-71.486735,41.46307299906],[-71.486649,41.46268899906],[-71.486526,41.46225399906],[-71.486343,41.46157799906],[-71.486267,41.46119899906],[-71.486198,41.46085699906],[-71.486015,41.46025799906],[-71.485985,41.46013999906],[-71.485939,41.45988799906],[-71.485947,41.45970899906],[-71.48597,41.45952999906],[-71.485985,41.45937699906],[-71.486015,41.45919399906],[-71.486183,41.45832399906],[-71.486328,41.45750799906],[-71.486336,41.45732099906],[-71.48632,41.45712699906],[-71.486259,41.45669599906],[-71.486221,41.45624199906],[-71.486115,41.45560799906],[-71.486076,41.45517699906],[-71.486023,41.45480699906],[-71.48597,41.45449799906],[-71.485947,41.45426599906],[-71.485947,41.45410499906],[-71.485977,41.45395699906],[-71.486023,41.45355999906],[-71.486023,41.45350299906],[-71.486015,41.45343399906],[-71.485962,41.45316299906],[-71.485893,41.45254899906],[-71.485878,41.45249199906],[-71.485832,41.45215599906],[-71.485802,41.45163699906],[-71.485779,41.45143099906],[-71.485779,41.45121799906],[-71.485802,41.45113799906],[-71.485817,41.45111099906],[-71.485832,41.45106899906],[-71.485847,41.45105399906],[-71.48587,41.45101499906],[-71.485901,41.45098099906],[-71.486023,41.45087399906],[-71.486229,41.45072199906],[-71.48674,41.45034399906],[-71.486907,41.45019899906],[-71.487526,41.44965699906],[-71.487671,41.44955399906],[-71.48777,41.44948999906],[-71.487877,41.44945499906],[-71.488099,41.44939199906],[-71.488853,41.44918099906],[-71.490654,41.44867099906]]]}}"}, +{"type": "blockgroup", "typeId": 513021, "areaId": 29433, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.5774,41.39032399906],[-71.577385,41.39019399906],[-71.577263,41.38954499906],[-71.577126,41.38890799906],[-71.577026,41.38833599906],[-71.576996,41.38798899906],[-71.576988,41.38796999906],[-71.576973,41.38785899906],[-71.57692,41.38769899906],[-71.57675,41.38731299906],[-71.576691,41.38716099906],[-71.576645,41.38700899906],[-71.576591,41.38685999906],[-71.576523,41.38664599906],[-71.576485,41.38659699906],[-71.576439,41.38655899906],[-71.576363,41.38651999906],[-71.576279,41.38649699906],[-71.576149,41.38648599906],[-71.575638,41.38650499906],[-71.575241,41.38652799906],[-71.574768,41.38654699906],[-71.573418,41.38661599906],[-71.573158,41.38661999906],[-71.57309,41.38660799906],[-71.572998,41.38657799906],[-71.572906,41.38652799906],[-71.572838,41.38644399906],[-71.572777,41.38631099906],[-71.572662,41.38581499906],[-71.572502,41.38520799906],[-71.572456,41.38500999906],[-71.572426,41.38482999906],[-71.572395,41.38458999906],[-71.57235,41.38389999906],[-71.572319,41.38365899906],[-71.572273,41.38335799906],[-71.572151,41.38285799906],[-71.572136,41.38275099906],[-71.572098,41.38244199906],[-71.572083,41.38206099906],[-71.572098,41.38103499906],[-71.572083,41.38067999906],[-71.572048,41.38031799906],[-71.572044,41.38027599906],[-71.572037,41.37960099906],[-71.572037,41.37882199906],[-71.572021,41.37779599906],[-71.572021,41.37723199906],[-71.571999,41.37699899906],[-71.572006,41.37654099906],[-71.57196,41.37578199906],[-71.57196,41.37552999906],[-71.571968,41.37526299906],[-71.572052,41.37463799906],[-71.572098,41.37437099906],[-71.572105,41.37421399906],[-71.57209,41.37396599906],[-71.57206,41.37363399906],[-71.572014,41.37294399906],[-71.572021,41.37284099906],[-71.572052,41.37273799906],[-71.572136,41.37252399906],[-71.572289,41.37221099906],[-71.572345,41.37211199906],[-71.572395,41.37202399906],[-71.572485,41.37187499906],[-71.572511,41.37180599906],[-71.572563,41.37166999906],[-71.572624,41.37166099906],[-71.572652,41.37159299906],[-71.572679,41.37143999906],[-71.572603,41.37141499906],[-71.573001,41.37071299906],[-71.573246,41.37057499906],[-71.573667,41.36947499906],[-71.565686,41.37055799906],[-71.551813,41.37321699906],[-71.54869,41.37339699906],[-71.541964,41.37213499906],[-71.536799,41.37227099906],[-71.534523,41.37376399906],[-71.534397,41.37384799906],[-71.532763,41.37483899906],[-71.530433,41.37583099906],[-71.525448,41.37573999906],[-71.52343,41.37588699906],[-71.522706,41.37681499906],[-71.521591,41.37752899906],[-71.521759,41.37759799906],[-71.522026,41.37769299906],[-71.522247,41.37775399906],[-71.522415,41.37778499906],[-71.522568,41.37779999906],[-71.522713,41.37779599906],[-71.522903,41.37779999906],[-71.523102,41.37778899906],[-71.523346,41.37776199906],[-71.523621,41.37773899906],[-71.523895,41.37773499906],[-71.524178,41.37774699906],[-71.524452,41.37779599906],[-71.524765,41.37788399906],[-71.524918,41.37794099906],[-71.525116,41.37802899906],[-71.525307,41.37814299906],[-71.525787,41.37844099906],[-71.525986,41.37855099906],[-71.526115,41.37863199906],[-71.526215,41.37871899906],[-71.526276,41.37878399906],[-71.526337,41.37887999906],[-71.526398,41.37900199906],[-71.526428,41.37911999906],[-71.526421,41.37927999906],[-71.526367,41.37958499906],[-71.526321,41.37986799906],[-71.526131,41.38086699906],[-71.52597,41.38163799906],[-71.525871,41.38217899906],[-71.525833,41.38245799906],[-71.525825,41.38267499906],[-71.525825,41.38283499906],[-71.525841,41.38315599906],[-71.525871,41.38355299906],[-71.525887,41.38383899906],[-71.525902,41.38405199906],[-71.525932,41.38458999906],[-71.52594,41.38468899906],[-71.525978,41.38539899906],[-71.526001,41.38578999906],[-71.526007,41.38589899906],[-71.526016,41.38605499906],[-71.526022,41.38612999906],[-71.52603,41.38624799906],[-71.526093,41.38709499906],[-71.526102,41.38720099906],[-71.526176,41.38769899906],[-71.526253,41.38805799906],[-71.526406,41.38854899906],[-71.526482,41.38875999906],[-71.526566,41.38897299906],[-71.526825,41.38953799906],[-71.527153,41.39012899906],[-71.527245,41.39030099906],[-71.527527,41.39080399906],[-71.527695,41.39113599906],[-71.527893,41.39149099906],[-71.528038,41.39177699906],[-71.52813,41.39197499906],[-71.528167,41.39207499906],[-71.528221,41.39223899906],[-71.52829,41.39249799906],[-71.52832,41.39267699906],[-71.528366,41.39297099906],[-71.528374,41.39312699906],[-71.528374,41.39338299906],[-71.528389,41.39412299906],[-71.528404,41.39434399906],[-71.528412,41.39436299906],[-71.528446,41.39460599906],[-71.528518,41.39490199906],[-71.52857,41.39507399906],[-71.52861,41.39519899906],[-71.528694,41.39540099906],[-71.528824,41.39564099906],[-71.5289,41.39579799906],[-71.529083,41.39609499906],[-71.529259,41.39641999906],[-71.529625,41.39705299906],[-71.529762,41.39722799906],[-71.529892,41.39740399906],[-71.530067,41.39760599906],[-71.530548,41.39808999906],[-71.530861,41.39838399906],[-71.530951,41.39846899906],[-71.531242,41.39874599906],[-71.531868,41.39932599906],[-71.532143,41.39958199906],[-71.532684,41.40006999906],[-71.53373,41.40102799906],[-71.534485,41.40170699906],[-71.534584,41.40182499906],[-71.534615,41.40187799906],[-71.534637,41.40192799906],[-71.534645,41.40196599906],[-71.534645,41.40201999906],[-71.53463,41.40209599906],[-71.534615,41.40214199906],[-71.534439,41.40240499906],[-71.534363,41.40253399906],[-71.534409,41.40248499906],[-71.534737,41.40217599906],[-71.535149,41.40185499906],[-71.535208,41.40181999906],[-71.535461,41.40167199906],[-71.535713,41.40153099906],[-71.535873,41.40144299906],[-71.536064,41.40135199906],[-71.536343,41.40123999906],[-71.536446,41.40119899906],[-71.536515,41.40117499906],[-71.536919,41.40103499906],[-71.536964,41.40101999906],[-71.537628,41.40080599906],[-71.537827,41.40074599906],[-71.537925,41.40071699906],[-71.538132,41.40065399906],[-71.53849,41.40055099906],[-71.539154,41.40034099906],[-71.53952,41.40022999906],[-71.540237,41.39998999906],[-71.540817,41.39977599906],[-71.541502,41.39949599906],[-71.54158,41.39946399906],[-71.542885,41.39882999906],[-71.543762,41.39841799906],[-71.543945,41.39834199906],[-71.54406,41.39828899906],[-71.544357,41.39818599906],[-71.54509,41.39794199906],[-71.545492,41.39783499906],[-71.545899,41.39773199906],[-71.546352,41.39762399906],[-71.546629,41.39757299906],[-71.546813,41.39753999906],[-71.546972,41.39751799906],[-71.547138,41.39748499906],[-71.547452,41.39744899906],[-71.548006,41.39736499906],[-71.548317,41.39731599906],[-71.548767,41.39728899906],[-71.549202,41.39728499906],[-71.549637,41.39727399906],[-71.550148,41.39727399906],[-71.550707,41.39726899906],[-71.550801,41.39726799906],[-71.550944,41.39726699906],[-71.551414,41.39726299906],[-71.551783,41.39726599906],[-71.552125,41.39726099906],[-71.552246,41.39725899906],[-71.552772,41.39722999906],[-71.55307,41.39721299906],[-71.553387,41.39718599906],[-71.553474,41.39717899906],[-71.554293,41.39708999906],[-71.55442,41.39707599906],[-71.555046,41.39700299906],[-71.555336,41.39695699906],[-71.555763,41.39687699906],[-71.555923,41.39684299906],[-71.556206,41.39678999906],[-71.556396,41.39674699906],[-71.557276,41.39660599906],[-71.557644,41.39655999906],[-71.558447,41.39645799906],[-71.558822,41.39643399906],[-71.559341,41.39639299906],[-71.559372,41.39638899906],[-71.559792,41.39636199906],[-71.560573,41.39633299906],[-71.560913,41.39631999906],[-71.561156,41.39631399906],[-71.561409,41.39630899906],[-71.561436,41.39630699906],[-71.562119,41.39625499906],[-71.562279,41.39624399906],[-71.562782,41.39619099906],[-71.563324,41.39612599906],[-71.563848,41.39605099906],[-71.564575,41.39594699906],[-71.565186,41.39586299906],[-71.565857,41.39577899906],[-71.566081,41.39574899906],[-71.566513,41.39569099906],[-71.568321,41.39545099906],[-71.5689,41.39537399906],[-71.570252,41.39519499906],[-71.570854,41.39512899906],[-71.571082,41.39509599906],[-71.571458,41.39505299906],[-71.572769,41.39488399906],[-71.573463,41.39481199906],[-71.573807,41.39478799906],[-71.574471,41.39476599906],[-71.57457,41.39476099906],[-71.574885,41.39476599906],[-71.575008,41.39476899906],[-71.57553,41.39477899906],[-71.575554,41.39443999906],[-71.575546,41.39426799906],[-71.575539,41.39395099906],[-71.575546,41.39384099906],[-71.575562,41.39372999906],[-71.5756,41.39362299906],[-71.575645,41.39351699906],[-71.575729,41.39334099906],[-71.575883,41.39314199906],[-71.575928,41.39308499906],[-71.57605,41.39296299906],[-71.576187,41.39285299906],[-71.576828,41.39244799906],[-71.576935,41.39237199906],[-71.577034,41.39229199906],[-71.577103,41.39221599906],[-71.577141,41.39214699906],[-71.577148,41.39208999906],[-71.577141,41.39200999906],[-71.577095,41.39179599906],[-71.577049,41.39165099906],[-71.577019,41.39150399906],[-71.577019,41.39132299906],[-71.577042,41.39121999906],[-71.577118,41.39105599906],[-71.577301,41.39077399906],[-71.577362,41.39060999906],[-71.5774,41.39044199906],[-71.5774,41.39032399906]]]}}"}, +{"type": "blockgroup", "typeId": 513022, "areaId": 29434, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.534645,41.40196599906],[-71.534637,41.40192799906],[-71.534615,41.40187799906],[-71.534584,41.40182499906],[-71.534485,41.40170699906],[-71.53373,41.40102799906],[-71.532684,41.40006999906],[-71.532143,41.39958199906],[-71.531868,41.39932599906],[-71.531242,41.39874599906],[-71.530951,41.39846899906],[-71.530861,41.39838399906],[-71.530548,41.39808999906],[-71.530067,41.39760599906],[-71.529892,41.39740399906],[-71.529762,41.39722799906],[-71.529625,41.39705299906],[-71.529259,41.39641999906],[-71.529083,41.39609499906],[-71.5289,41.39579799906],[-71.528824,41.39564099906],[-71.528694,41.39540099906],[-71.52861,41.39519899906],[-71.52857,41.39507399906],[-71.528518,41.39490199906],[-71.528446,41.39460599906],[-71.528412,41.39436299906],[-71.528404,41.39434399906],[-71.528389,41.39412299906],[-71.528374,41.39338299906],[-71.528374,41.39312699906],[-71.528366,41.39297099906],[-71.52832,41.39267699906],[-71.52829,41.39249799906],[-71.528221,41.39223899906],[-71.528167,41.39207499906],[-71.52813,41.39197499906],[-71.528038,41.39177699906],[-71.527893,41.39149099906],[-71.527695,41.39113599906],[-71.527527,41.39080399906],[-71.527245,41.39030099906],[-71.527153,41.39012899906],[-71.526825,41.38953799906],[-71.526566,41.38897299906],[-71.526482,41.38875999906],[-71.526406,41.38854899906],[-71.526253,41.38805799906],[-71.526176,41.38769899906],[-71.526102,41.38720099906],[-71.526093,41.38709499906],[-71.52603,41.38624799906],[-71.526022,41.38612999906],[-71.526016,41.38605499906],[-71.526007,41.38589899906],[-71.526001,41.38578999906],[-71.525978,41.38539899906],[-71.52594,41.38468899906],[-71.525932,41.38458999906],[-71.525902,41.38405199906],[-71.525887,41.38383899906],[-71.525871,41.38355299906],[-71.525841,41.38315599906],[-71.525825,41.38283499906],[-71.525825,41.38267499906],[-71.525833,41.38245799906],[-71.525871,41.38217899906],[-71.52597,41.38163799906],[-71.526131,41.38086699906],[-71.526321,41.37986799906],[-71.526367,41.37958499906],[-71.526421,41.37927999906],[-71.526428,41.37911999906],[-71.526398,41.37900199906],[-71.526337,41.37887999906],[-71.526276,41.37878399906],[-71.526215,41.37871899906],[-71.526115,41.37863199906],[-71.525986,41.37855099906],[-71.525787,41.37844099906],[-71.525307,41.37814299906],[-71.525116,41.37802899906],[-71.524918,41.37794099906],[-71.524765,41.37788399906],[-71.524452,41.37779599906],[-71.524178,41.37774699906],[-71.523895,41.37773499906],[-71.523621,41.37773899906],[-71.523346,41.37776199906],[-71.523102,41.37778899906],[-71.522903,41.37779999906],[-71.522713,41.37779599906],[-71.522568,41.37779999906],[-71.522415,41.37778499906],[-71.522247,41.37775399906],[-71.522026,41.37769299906],[-71.521759,41.37759799906],[-71.521591,41.37752899906],[-71.520739,41.37843199906],[-71.520737,41.37846699906],[-71.520611,41.37861699906],[-71.520538,41.37872899906],[-71.520488,41.37878699906],[-71.520434,41.37883699906],[-71.520397,41.37886399906],[-71.520308,41.37892999906],[-71.520224,41.37896299906],[-71.520177,41.37901199906],[-71.52014,41.37903499906],[-71.519546,41.37993799906],[-71.519392,41.38020399906],[-71.518629,41.38090299906],[-71.517632,41.38174399906],[-71.517312,41.38213599906],[-71.51464,41.38478999906],[-71.514516,41.38490599906],[-71.50839,41.39919799906],[-71.506847,41.40279799906],[-71.505063,41.40696099906],[-71.504827,41.40751199906],[-71.504766,41.40781699906],[-71.503202,41.41760099906],[-71.499828,41.41760099906],[-71.499502,41.41760199906],[-71.497101,41.41750199906],[-71.495801,41.42260099906],[-71.495501,41.42410099906],[-71.498202,41.42500099906],[-71.498358,41.42521099906],[-71.498541,41.42532499906],[-71.498709,41.42559999906],[-71.499105,41.42762999906],[-71.498744,41.42796699906],[-71.498739,41.42843399906],[-71.498954,41.42837199906],[-71.499091,41.42833399906],[-71.49954,41.42820999906],[-71.500717,41.42788399906],[-71.501312,41.42771899906],[-71.502319,41.42743499906],[-71.50259,41.42736699906],[-71.502937,41.42729099906],[-71.503444,41.42718699906],[-71.503647,41.42715099906],[-71.504555,41.42703299906],[-71.505075,41.42698499906],[-71.505685,41.42694499906],[-71.506234,41.42693599906],[-71.508499,41.42697899906],[-71.509163,41.42699699906],[-71.511162,41.42704699906],[-71.51285,41.42709099906],[-71.513884,41.42711899906],[-71.514077,41.42712399906],[-71.514682,41.42713699906],[-71.515924,41.42716799906],[-71.516993,41.42719499906],[-71.518625,41.42722699906],[-71.518776,41.42722299906],[-71.519089,41.42722299906],[-71.519608,41.42718599906],[-71.519676,41.42718099906],[-71.519852,41.42715799906],[-71.520042,41.42712799906],[-71.520554,41.42702299906],[-71.520744,41.42697899906],[-71.520905,41.42693699906],[-71.521156,41.42685299906],[-71.521629,41.42666999906],[-71.521919,41.42653999906],[-71.522232,41.42637999906],[-71.522346,41.42631499906],[-71.522461,41.42624299906],[-71.522484,41.42622399906],[-71.522575,41.42616999906],[-71.52269,41.42608599906],[-71.523155,41.42571299906],[-71.523407,41.42549499906],[-71.523453,41.42544899906],[-71.523674,41.42521699906],[-71.523827,41.42501099906],[-71.523972,41.42478199906],[-71.524109,41.42452199906],[-71.524162,41.42443099906],[-71.524215,41.42432099906],[-71.524526,41.42372099906],[-71.524835,41.42313399906],[-71.525027,41.42276399906],[-71.525342,41.42215099906],[-71.526692,41.41949799906],[-71.526891,41.41912899906],[-71.527009,41.41891299906],[-71.527185,41.41863099906],[-71.527431,41.41823399906],[-71.527931,41.41743099906],[-71.528052,41.41723599906],[-71.52821,41.41698499906],[-71.529526,41.41490199906],[-71.529785,41.41448999906],[-71.529961,41.41416199906],[-71.530251,41.41350199906],[-71.530409,41.41313499906],[-71.530579,41.41266999906],[-71.530789,41.41204999906],[-71.530881,41.41178199906],[-71.530945,41.41159699906],[-71.530975,41.41150999906],[-71.530987,41.41147499906],[-71.531044,41.41130799906],[-71.531303,41.41055299906],[-71.531449,41.41010099906],[-71.531537,41.40981799906],[-71.531617,41.40955799906],[-71.531703,41.40927799906],[-71.53202,41.40835199906],[-71.532097,41.40810999906],[-71.532221,41.40770999906],[-71.532303,41.40748599906],[-71.532364,41.40730999906],[-71.532608,41.40656699906],[-71.532631,41.40651299906],[-71.532761,41.40612399906],[-71.532921,41.40572399906],[-71.533066,41.40533399906],[-71.533089,41.40526699906],[-71.533144,41.40510899906],[-71.533371,41.40445299906],[-71.533386,41.40439999906],[-71.533531,41.40395399906],[-71.533531,41.40393399906],[-71.533607,41.40369399906],[-71.533699,41.40347699906],[-71.533852,41.40320199906],[-71.534073,41.40285499906],[-71.534363,41.40253399906],[-71.534439,41.40240499906],[-71.534615,41.40214199906],[-71.53463,41.40209599906],[-71.534645,41.40201999906],[-71.534645,41.40196599906]]]}}"}, +{"type": "blockgroup", "typeId": 513023, "areaId": 29435, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.626295,41.35942099906],[-71.62003,41.36118299906],[-71.610963,41.36230899906],[-71.601955,41.36330099906],[-71.599882,41.36329599906],[-71.593489,41.36438299906],[-71.585922,41.36690699906],[-71.574873,41.36915999906],[-71.573667,41.36947499906],[-71.573246,41.37057499906],[-71.573001,41.37071299906],[-71.572603,41.37141499906],[-71.572679,41.37143999906],[-71.572652,41.37159299906],[-71.572624,41.37166099906],[-71.572563,41.37166999906],[-71.572511,41.37180599906],[-71.572485,41.37187499906],[-71.572395,41.37202399906],[-71.572345,41.37211199906],[-71.572289,41.37221099906],[-71.572136,41.37252399906],[-71.572052,41.37273799906],[-71.572021,41.37284099906],[-71.572014,41.37294399906],[-71.57206,41.37363399906],[-71.57209,41.37396599906],[-71.572105,41.37421399906],[-71.572098,41.37437099906],[-71.572052,41.37463799906],[-71.571968,41.37526299906],[-71.57196,41.37552999906],[-71.57196,41.37578199906],[-71.572006,41.37654099906],[-71.571999,41.37699899906],[-71.572021,41.37723199906],[-71.572021,41.37779599906],[-71.572037,41.37882199906],[-71.572037,41.37960099906],[-71.572044,41.38027599906],[-71.572048,41.38031799906],[-71.572083,41.38067999906],[-71.572098,41.38103499906],[-71.572083,41.38206099906],[-71.572098,41.38244199906],[-71.572136,41.38275099906],[-71.572151,41.38285799906],[-71.572273,41.38335799906],[-71.572319,41.38365899906],[-71.57235,41.38389999906],[-71.572395,41.38458999906],[-71.572426,41.38482999906],[-71.572456,41.38500999906],[-71.572502,41.38520799906],[-71.572662,41.38581499906],[-71.572777,41.38631099906],[-71.572838,41.38644399906],[-71.572906,41.38652799906],[-71.572998,41.38657799906],[-71.57309,41.38660799906],[-71.573158,41.38661999906],[-71.573418,41.38661599906],[-71.574768,41.38654699906],[-71.575241,41.38652799906],[-71.575638,41.38650499906],[-71.576149,41.38648599906],[-71.576279,41.38649699906],[-71.576363,41.38651999906],[-71.576439,41.38655899906],[-71.576485,41.38659699906],[-71.576523,41.38664599906],[-71.576591,41.38685999906],[-71.576645,41.38700899906],[-71.576691,41.38716099906],[-71.57675,41.38731299906],[-71.57692,41.38769899906],[-71.576973,41.38785899906],[-71.576988,41.38796999906],[-71.576996,41.38798899906],[-71.577026,41.38833599906],[-71.577126,41.38890799906],[-71.577263,41.38954499906],[-71.577385,41.39019399906],[-71.5774,41.39032399906],[-71.5774,41.39044199906],[-71.577362,41.39060999906],[-71.577301,41.39077399906],[-71.577118,41.39105599906],[-71.577042,41.39121999906],[-71.577019,41.39132299906],[-71.577019,41.39150399906],[-71.577049,41.39165099906],[-71.577095,41.39179599906],[-71.577141,41.39200999906],[-71.577148,41.39208999906],[-71.577141,41.39214699906],[-71.577103,41.39221599906],[-71.577034,41.39229199906],[-71.576935,41.39237199906],[-71.576828,41.39244799906],[-71.576187,41.39285299906],[-71.57605,41.39296299906],[-71.575928,41.39308499906],[-71.575883,41.39314199906],[-71.575729,41.39334099906],[-71.575645,41.39351699906],[-71.5756,41.39362299906],[-71.575562,41.39372999906],[-71.575546,41.39384099906],[-71.575539,41.39395099906],[-71.575546,41.39426799906],[-71.575554,41.39443999906],[-71.57553,41.39477899906],[-71.575818,41.39479499906],[-71.576025,41.39480599906],[-71.576137,41.39481499906],[-71.576519,41.39483199906],[-71.576937,41.39484299906],[-71.577834,41.39492099906],[-71.579108,41.39500899906],[-71.579725,41.39505699906],[-71.580664,41.39512199906],[-71.581243,41.39515299906],[-71.58184,41.39519799906],[-71.582878,41.39526399906],[-71.58384,41.39532699906],[-71.585151,41.39541899906],[-71.58577,41.39546199906],[-71.585978,41.39547499906],[-71.586051,41.39548099906],[-71.586661,41.39553099906],[-71.587401,41.39557899906],[-71.587738,41.39558599906],[-71.588211,41.39557799906],[-71.588417,41.39556899906],[-71.588562,41.39556499906],[-71.589035,41.39554199906],[-71.589714,41.39549599906],[-71.590302,41.39544699906],[-71.591198,41.39534699906],[-71.592087,41.39524799906],[-71.593224,41.39511899906],[-71.593864,41.39504999906],[-71.594365,41.39501499906],[-71.594681,41.39499299906],[-71.595085,41.39497399906],[-71.595604,41.39495799906],[-71.596146,41.39495799906],[-71.596662,41.39496899906],[-71.597004,41.39497999906],[-71.597217,41.39499299906],[-71.597402,41.39500499906],[-71.597604,41.39501599906],[-71.597778,41.39503199906],[-71.598519,41.39511699906],[-71.59997,41.39528999906],[-71.600608,41.39535299906],[-71.60084,41.39537599906],[-71.601027,41.39539299906],[-71.601172,41.39540799906],[-71.601545,41.39543299906],[-71.602355,41.39546799906],[-71.602981,41.39546599906],[-71.603622,41.39544599906],[-71.604409,41.39541399906],[-71.604923,41.39537699906],[-71.605454,41.39532899906],[-71.605952,41.39526999906],[-71.606499,41.39518599906],[-71.607393,41.39501899906],[-71.608023,41.39488799906],[-71.608308,41.39482699906],[-71.608597,41.39476499906],[-71.608811,41.39472399906],[-71.609229,41.39464899906],[-71.609818,41.39453599906],[-71.61061,41.39437599906],[-71.611296,41.39424699906],[-71.611668,41.39416699906],[-71.611867,41.39412499906],[-71.612301,41.39401999906],[-71.61339,41.39370999906],[-71.613892,41.39354799906],[-71.614031,41.39349499906],[-71.614757,41.39144299906],[-71.615588,41.38936599906],[-71.615601,41.38931299906],[-71.615936,41.38831699906],[-71.616089,41.38788199906],[-71.616287,41.38735599906],[-71.61647,41.38680599906],[-71.617322,41.38444399906],[-71.617265,41.38443199906],[-71.617379,41.38410499906],[-71.617543,41.38363899906],[-71.618264,41.38162799906],[-71.618745,41.38028299906],[-71.618897,41.37986099906],[-71.619283,41.37873499906],[-71.619427,41.37832299906],[-71.6206,41.37501999906],[-71.620829,41.37437299906],[-71.621169,41.37339899906],[-71.621624,41.37210799906],[-71.621785,41.37203099906],[-71.621786,41.37181599906],[-71.622116,41.37082299906],[-71.622164,41.37067699906],[-71.622308,41.37024399906],[-71.622964,41.36826599906],[-71.623106,41.36786099906],[-71.623166,41.36776099906],[-71.623424,41.36698599906],[-71.62373,41.36615299906],[-71.623852,41.36579999906],[-71.623911,41.36563399906],[-71.623952,41.36551799906],[-71.624054,41.36522499906],[-71.624127,41.36501799906],[-71.624219,41.36475099906],[-71.624292,41.36454399906],[-71.624395,41.36424799906],[-71.625382,41.36139699906],[-71.625584,41.36082499906],[-71.626295,41.35942099906]]]}}"}, +{"type": "blockgroup", "typeId": 513041, "areaId": 29436, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.614031,41.39349499906],[-71.613892,41.39354799906],[-71.61339,41.39370999906],[-71.612301,41.39401999906],[-71.611867,41.39412499906],[-71.611668,41.39416699906],[-71.611296,41.39424699906],[-71.61061,41.39437599906],[-71.609818,41.39453599906],[-71.609229,41.39464899906],[-71.608811,41.39472399906],[-71.608597,41.39476499906],[-71.608308,41.39482699906],[-71.608023,41.39488799906],[-71.607393,41.39501899906],[-71.606499,41.39518599906],[-71.605952,41.39526999906],[-71.605454,41.39532899906],[-71.604923,41.39537699906],[-71.604409,41.39541399906],[-71.603622,41.39544599906],[-71.602981,41.39546599906],[-71.602355,41.39546799906],[-71.601545,41.39543299906],[-71.601172,41.39540799906],[-71.601027,41.39539299906],[-71.60084,41.39537599906],[-71.600608,41.39535299906],[-71.59997,41.39528999906],[-71.598519,41.39511699906],[-71.597778,41.39503199906],[-71.597604,41.39501599906],[-71.597402,41.39500499906],[-71.597217,41.39499299906],[-71.597004,41.39497999906],[-71.596662,41.39496899906],[-71.596146,41.39495799906],[-71.595604,41.39495799906],[-71.595085,41.39497399906],[-71.594681,41.39499299906],[-71.594365,41.39501499906],[-71.593864,41.39504999906],[-71.593224,41.39511899906],[-71.592087,41.39524799906],[-71.591198,41.39534699906],[-71.590302,41.39544699906],[-71.589714,41.39549599906],[-71.589035,41.39554199906],[-71.588562,41.39556499906],[-71.588417,41.39556899906],[-71.588211,41.39557799906],[-71.587738,41.39558599906],[-71.587401,41.39557899906],[-71.586661,41.39553099906],[-71.586051,41.39548099906],[-71.585978,41.39547499906],[-71.58577,41.39546199906],[-71.585151,41.39541899906],[-71.58384,41.39532699906],[-71.582878,41.39526399906],[-71.58184,41.39519799906],[-71.581243,41.39515299906],[-71.580664,41.39512199906],[-71.579725,41.39505699906],[-71.579108,41.39500899906],[-71.577834,41.39492099906],[-71.576937,41.39484299906],[-71.576519,41.39483199906],[-71.576137,41.39481499906],[-71.576025,41.39480599906],[-71.575818,41.39479499906],[-71.57553,41.39477899906],[-71.575008,41.39476899906],[-71.574885,41.39476599906],[-71.57457,41.39476099906],[-71.574471,41.39476599906],[-71.573807,41.39478799906],[-71.573463,41.39481199906],[-71.572769,41.39488399906],[-71.571458,41.39505299906],[-71.571082,41.39509599906],[-71.570854,41.39512899906],[-71.570252,41.39519499906],[-71.5689,41.39537399906],[-71.568321,41.39545099906],[-71.566513,41.39569099906],[-71.566081,41.39574899906],[-71.565857,41.39577899906],[-71.565186,41.39586299906],[-71.564575,41.39594699906],[-71.563848,41.39605099906],[-71.563324,41.39612599906],[-71.562782,41.39619099906],[-71.562279,41.39624399906],[-71.562119,41.39625499906],[-71.561436,41.39630699906],[-71.561409,41.39630899906],[-71.561156,41.39631399906],[-71.560913,41.39631999906],[-71.560573,41.39633299906],[-71.559792,41.39636199906],[-71.559372,41.39638899906],[-71.559341,41.39639299906],[-71.558822,41.39643399906],[-71.558447,41.39645799906],[-71.557644,41.39655999906],[-71.557276,41.39660599906],[-71.556396,41.39674699906],[-71.556206,41.39678999906],[-71.555923,41.39684299906],[-71.555763,41.39687699906],[-71.555336,41.39695699906],[-71.555046,41.39700299906],[-71.55442,41.39707599906],[-71.554293,41.39708999906],[-71.553474,41.39717899906],[-71.553387,41.39718599906],[-71.55307,41.39721299906],[-71.552772,41.39722999906],[-71.552246,41.39725899906],[-71.552125,41.39726099906],[-71.551783,41.39726599906],[-71.551414,41.39726299906],[-71.550944,41.39726699906],[-71.550801,41.39726799906],[-71.550707,41.39726899906],[-71.550148,41.39727399906],[-71.549637,41.39727399906],[-71.549202,41.39728499906],[-71.548767,41.39728899906],[-71.548317,41.39731599906],[-71.548006,41.39736499906],[-71.547452,41.39744899906],[-71.547138,41.39748499906],[-71.546972,41.39751799906],[-71.546813,41.39753999906],[-71.546629,41.39757299906],[-71.546352,41.39762399906],[-71.545899,41.39773199906],[-71.545492,41.39783499906],[-71.54509,41.39794199906],[-71.544357,41.39818599906],[-71.54406,41.39828899906],[-71.543945,41.39834199906],[-71.543762,41.39841799906],[-71.542885,41.39882999906],[-71.54158,41.39946399906],[-71.541502,41.39949599906],[-71.540817,41.39977599906],[-71.540237,41.39998999906],[-71.53952,41.40022999906],[-71.539154,41.40034099906],[-71.53849,41.40055099906],[-71.538132,41.40065399906],[-71.537925,41.40071699906],[-71.537827,41.40074599906],[-71.537628,41.40080599906],[-71.536964,41.40101999906],[-71.536919,41.40103499906],[-71.536515,41.40117499906],[-71.536446,41.40119899906],[-71.536343,41.40123999906],[-71.536064,41.40135199906],[-71.535873,41.40144299906],[-71.535713,41.40153099906],[-71.535461,41.40167199906],[-71.535208,41.40181999906],[-71.535149,41.40185499906],[-71.534737,41.40217599906],[-71.534409,41.40248499906],[-71.534363,41.40253399906],[-71.534073,41.40285499906],[-71.533852,41.40320199906],[-71.533699,41.40347699906],[-71.533607,41.40369399906],[-71.533531,41.40393399906],[-71.533531,41.40395399906],[-71.533386,41.40439999906],[-71.533371,41.40445299906],[-71.533144,41.40510899906],[-71.533089,41.40526699906],[-71.533066,41.40533399906],[-71.532921,41.40572399906],[-71.532761,41.40612399906],[-71.532631,41.40651299906],[-71.532608,41.40656699906],[-71.532364,41.40730999906],[-71.532303,41.40748599906],[-71.532221,41.40770999906],[-71.532097,41.40810999906],[-71.53202,41.40835199906],[-71.531703,41.40927799906],[-71.531617,41.40955799906],[-71.531537,41.40981799906],[-71.531449,41.41010099906],[-71.531303,41.41055299906],[-71.531044,41.41130799906],[-71.530987,41.41147499906],[-71.530975,41.41150999906],[-71.530945,41.41159699906],[-71.530881,41.41178199906],[-71.530789,41.41204999906],[-71.530579,41.41266999906],[-71.530409,41.41313499906],[-71.530251,41.41350199906],[-71.529961,41.41416199906],[-71.529785,41.41448999906],[-71.529526,41.41490199906],[-71.52821,41.41698499906],[-71.528052,41.41723599906],[-71.527931,41.41743099906],[-71.527431,41.41823399906],[-71.527185,41.41863099906],[-71.527009,41.41891299906],[-71.526891,41.41912899906],[-71.526692,41.41949799906],[-71.525342,41.42215099906],[-71.525027,41.42276399906],[-71.524835,41.42313399906],[-71.524526,41.42372099906],[-71.524215,41.42432099906],[-71.524162,41.42443099906],[-71.524109,41.42452199906],[-71.523972,41.42478199906],[-71.523827,41.42501099906],[-71.523674,41.42521699906],[-71.523453,41.42544899906],[-71.523407,41.42549499906],[-71.523155,41.42571299906],[-71.52269,41.42608599906],[-71.522575,41.42616999906],[-71.522484,41.42622399906],[-71.522461,41.42624299906],[-71.522346,41.42631499906],[-71.522232,41.42637999906],[-71.521919,41.42653999906],[-71.521629,41.42666999906],[-71.521156,41.42685299906],[-71.520905,41.42693699906],[-71.520744,41.42697899906],[-71.520554,41.42702299906],[-71.520042,41.42712799906],[-71.519852,41.42715799906],[-71.519676,41.42718099906],[-71.519608,41.42718599906],[-71.519089,41.42722299906],[-71.518776,41.42722299906],[-71.518625,41.42722699906],[-71.516993,41.42719499906],[-71.515924,41.42716799906],[-71.514682,41.42713699906],[-71.514077,41.42712399906],[-71.513884,41.42711899906],[-71.51285,41.42709099906],[-71.511162,41.42704699906],[-71.509163,41.42699699906],[-71.508499,41.42697899906],[-71.506234,41.42693599906],[-71.505685,41.42694499906],[-71.505075,41.42698499906],[-71.504555,41.42703299906],[-71.503647,41.42715099906],[-71.503444,41.42718699906],[-71.502937,41.42729099906],[-71.50259,41.42736699906],[-71.502319,41.42743499906],[-71.501312,41.42771899906],[-71.500717,41.42788399906],[-71.49954,41.42820999906],[-71.499091,41.42833399906],[-71.498954,41.42837199906],[-71.498739,41.42843399906],[-71.498769,41.42847099906],[-71.498812,41.42858399906],[-71.498821,41.42862199906],[-71.498925,41.42874499906],[-71.499048,41.42889099906],[-71.499077,41.42892999906],[-71.499343,41.42892999906],[-71.499502,41.42895299906],[-71.499682,41.42897799906],[-71.499962,41.42910099906],[-71.50006,41.42922599906],[-71.50017,41.42932499906],[-71.500212,41.42940199906],[-71.50029,41.42954799906],[-71.500323,41.42965999906],[-71.500346,41.42971799906],[-71.50037,41.42977399906],[-71.500488,41.43002999906],[-71.500549,41.43012899906],[-71.500623,41.43023399906],[-71.500647,41.43026399906],[-71.500712,41.43034199906],[-71.500905,41.43054399906],[-71.501008,41.43066399906],[-71.501096,41.43077699906],[-71.501164,41.43088699906],[-71.501217,41.43099499906],[-71.501249,41.43111899906],[-71.501261,41.43124899906],[-71.501266,41.43139799906],[-71.50131,41.43164699906],[-71.501333,41.43191599906],[-71.501353,41.43207199906],[-71.501391,41.43222799906],[-71.501442,41.43238399906],[-71.501479,41.43249699906],[-71.50155,41.43275399906],[-71.501594,41.43287699906],[-71.50165,41.43298499906],[-71.501733,41.43311399906],[-71.501827,41.43321899906],[-71.501929,41.43331699906],[-71.502022,41.43341899906],[-71.502078,41.43350899906],[-71.502084,41.43356199906],[-71.502437,41.43356899906],[-71.502769,41.43357499906],[-71.503082,41.43356299906],[-71.50386,41.43352499906],[-71.504547,41.43348299906],[-71.504539,41.43350599906],[-71.504524,41.43352499906],[-71.504517,41.43356299906],[-71.504517,41.43359799906],[-71.504524,41.43363599906],[-71.504524,41.43370799906],[-71.504532,41.43374599906],[-71.504532,41.43378399906],[-71.504547,41.43386799906],[-71.50473,41.43444099906],[-71.505013,41.43527599906],[-71.505119,41.43568399906],[-71.505272,41.43565399906],[-71.505386,41.43562699906],[-71.506115,41.43546699906],[-71.506214,41.43544699906],[-71.507433,41.43519999906],[-71.50807,41.43506699906],[-71.508779,41.43490299906],[-71.509234,41.43478099906],[-71.509603,41.43464599906],[-71.510214,41.43438299906],[-71.510527,41.43427499906],[-71.510746,41.43421399906],[-71.510902,41.43417799906],[-71.511195,41.43412199906],[-71.511402,41.43406999906],[-71.511833,41.43396799906],[-71.512813,41.43377299906],[-71.513299,41.43367299906],[-71.513795,41.43356799906],[-71.514227,41.43347799906],[-71.514626,41.43339899906],[-71.514961,41.43331899906],[-71.515259,41.43322399906],[-71.515563,41.43307599906],[-71.515741,41.43297299906],[-71.515876,41.43287599906],[-71.515955,41.43279499906],[-71.516034,41.43270099906],[-71.516221,41.43244999906],[-71.516403,41.43214399906],[-71.516602,41.43183099906],[-71.516899,41.43139999906],[-71.517244,41.43086399906],[-71.517326,41.43073699906],[-71.517755,41.43088699906],[-71.519501,41.43137699906],[-71.519753,41.43144599906],[-71.520668,41.43172799906],[-71.520897,41.43179299906],[-71.522102,41.43213999906],[-71.522675,41.43231999906],[-71.522771,41.43234699906],[-71.523155,41.43245699906],[-71.523804,41.43263599906],[-71.524049,41.43271399906],[-71.52449,41.43285399906],[-71.525006,41.43300299906],[-71.525894,41.43326199906],[-71.527664,41.43383799906],[-71.529282,41.43435299906],[-71.53009,41.43461999906],[-71.530281,41.43467299906],[-71.530449,41.43469199906],[-71.530502,41.43468499906],[-71.530598,41.43466999906],[-71.53064,41.43465699906],[-71.530747,41.43459899906],[-71.530817,41.43455499906],[-71.532001,41.43364899906],[-71.532917,41.43294099906],[-71.533478,41.43249899906],[-71.533905,41.43220899906],[-71.534035,41.43213999906],[-71.534531,41.43184699906],[-71.534912,41.43160199906],[-71.535255,41.43144199906],[-71.535515,41.43137399906],[-71.535774,41.43134699906],[-71.538239,41.43129299906],[-71.539833,41.43126299906],[-71.539993,41.43125199906],[-71.540138,41.43122899906],[-71.540321,41.43117499906],[-71.540428,41.43113699906],[-71.540703,41.43100699906],[-71.540855,41.43093099906],[-71.542114,41.43034699906],[-71.542564,41.43016399906],[-71.543404,41.42985899906],[-71.544525,41.42939799906],[-71.544746,41.42930199906],[-71.544838,41.42925299906],[-71.544937,41.42920699906],[-71.545029,41.42915299906],[-71.545097,41.42910799906],[-71.545227,41.42901199906],[-71.545364,41.42889399906],[-71.545425,41.42882899906],[-71.545471,41.42877199906],[-71.545547,41.42864999906],[-71.545624,41.42850899906],[-71.545738,41.42828399906],[-71.545845,41.42809299906],[-71.545921,41.42798599906],[-71.545998,41.42789499906],[-71.546089,41.42780699906],[-71.546181,41.42773799906],[-71.546226,41.42771099906],[-71.546333,41.42765799906],[-71.546402,41.42763099906],[-71.546478,41.42760799906],[-71.546631,41.42757399906],[-71.546707,41.42756299906],[-71.546799,41.42754399906],[-71.547104,41.42750899906],[-71.547356,41.42750499906],[-71.549171,41.42739499906],[-71.551472,41.42724199906],[-71.551872,41.42721599906],[-71.55191,41.42721599906],[-71.551971,41.42720799906],[-71.552131,41.42720799906],[-71.552208,41.42721399906],[-71.552544,41.42724599906],[-71.552628,41.42725799906],[-71.552795,41.42727299906],[-71.553024,41.42730699906],[-71.553563,41.42738099906],[-71.553773,41.42741099906],[-71.555099,41.42759699906],[-71.5569,41.42784899906],[-71.558472,41.42805499906],[-71.558769,41.42808899906],[-71.558795,41.42809399906],[-71.558815,41.42809699906],[-71.559883,41.42821899906],[-71.561829,41.42844799906],[-71.56308,41.42858099906],[-71.563705,41.42864199906],[-71.564445,41.42870299906],[-71.565163,41.42877999906],[-71.565826,41.42886699906],[-71.567017,41.42903899906],[-71.567299,41.42909199906],[-71.56768,41.42918799906],[-71.567902,41.42923399906],[-71.568008,41.42924899906],[-71.568184,41.42925999906],[-71.568253,41.42925999906],[-71.568379,41.42925099906],[-71.568459,41.42923399906],[-71.568726,41.42919199906],[-71.568817,41.42916899906],[-71.568916,41.42913399906],[-71.569107,41.42904999906],[-71.570198,41.42866099906],[-71.570732,41.42849699906],[-71.570831,41.42847399906],[-71.570923,41.42844799906],[-71.571022,41.42842499906],[-71.571274,41.42837899906],[-71.571404,41.42836399906],[-71.571518,41.42835599906],[-71.571968,41.42834099906],[-71.572212,41.42834499906],[-71.572479,41.42835999906],[-71.573204,41.42837899906],[-71.57325,41.42838299906],[-71.573715,41.42839399906],[-71.573868,41.42840199906],[-71.574142,41.42840999906],[-71.574287,41.42840999906],[-71.574501,41.42840599906],[-71.57489,41.42838299906],[-71.575035,41.42837099906],[-71.575302,41.42836399906],[-71.575554,41.42837099906],[-71.575752,41.42838699906],[-71.575966,41.42842099906],[-71.576119,41.42845299906],[-71.576431,41.42852399906],[-71.576553,41.42854699906],[-71.578163,41.42890899906],[-71.579109,41.42916099906],[-71.579979,41.42944699906],[-71.580177,41.42951599906],[-71.580307,41.42953399906],[-71.581139,41.42969099906],[-71.58139,41.42974499906],[-71.582069,41.42992799906],[-71.582359,41.42997699906],[-71.582664,41.43001599906],[-71.582863,41.43004599906],[-71.582947,41.43005799906],[-71.583214,41.43012999906],[-71.583977,41.43037399906],[-71.584679,41.43057299906],[-71.585243,41.43069099906],[-71.585533,41.43074799906],[-71.585617,41.43075599906],[-71.585785,41.43076299906],[-71.585976,41.43076299906],[-71.586304,41.43075199906],[-71.586838,41.43071699906],[-71.587021,41.43071699906],[-71.587166,41.43072499906],[-71.587349,41.43075199906],[-71.58744,41.43077099906],[-71.58757,41.43078999906],[-71.587822,41.43083599906],[-71.588043,41.43086999906],[-71.588554,41.43098099906],[-71.589691,41.43120999906],[-71.590492,41.43135799906],[-71.591133,41.43148799906],[-71.591665,41.43161299906],[-71.591881,41.43166399906],[-71.593048,41.43188899906],[-71.593674,41.43202199906],[-71.595596,41.43239199906],[-71.596519,41.43256399906],[-71.597511,41.43275499906],[-71.597763,41.43279999906],[-71.597885,41.43281199906],[-71.597954,41.43281199906],[-71.598,41.43281599906],[-71.598099,41.43281199906],[-71.598183,41.43279999906],[-71.598419,41.43275499906],[-71.598946,41.43262099906],[-71.599091,41.43259399906],[-71.599236,41.43257899906],[-71.599403,41.43255599906],[-71.599808,41.43252899906],[-71.600006,41.43250699906],[-71.600087,41.43249399906],[-71.603166,41.42391999906],[-71.603391,41.42329399906],[-71.6058,41.41662199906],[-71.606152,41.41564599906],[-71.606197,41.41553799906],[-71.606228,41.41540799906],[-71.606734,41.41402899906],[-71.606961,41.41340399906],[-71.608221,41.40983799906],[-71.608836,41.40811699906],[-71.608887,41.40797299906],[-71.611332,41.40110299906],[-71.613441,41.39513899906],[-71.613925,41.39377299906],[-71.614031,41.39349499906]]]}}"}, +{"type": "blockgroup", "typeId": 513051, "areaId": 29437, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.491864,41.49721899906],[-71.491712,41.49719099906],[-71.491568,41.49715499906],[-71.491527,41.49712599906],[-71.491385,41.49699199906],[-71.491333,41.49691399906],[-71.491188,41.49665499906],[-71.490685,41.49562099906],[-71.490524,41.49534999906],[-71.49041,41.49511699906],[-71.490372,41.49500699906],[-71.490364,41.49484999906],[-71.490387,41.49470499906],[-71.490473,41.49447599906],[-71.490578,41.49421699906],[-71.490715,41.49389999906],[-71.490746,41.49378199906],[-71.490761,41.49371699906],[-71.490776,41.49353799906],[-71.490753,41.49329399906],[-71.490707,41.49310699906],[-71.490631,41.49287399906],[-71.490471,41.49249999906],[-71.490387,41.49232499906],[-71.490318,41.49219499906],[-71.49025,41.49209599906],[-71.490166,41.49200799906],[-71.490067,41.49191999906],[-71.489899,41.49183999906],[-71.489456,41.49167999906],[-71.489174,41.49153899906],[-71.488777,41.49130599906],[-71.488289,41.49104299906],[-71.488052,41.49089099906],[-71.487976,41.49081799906],[-71.487825,41.49067399906],[-71.488079,41.49057299906],[-71.487671,41.49017299906],[-71.486938,41.48954399906],[-71.486588,41.48926499906],[-71.486084,41.48885299906],[-71.485886,41.48871599906],[-71.485855,41.48870099906],[-71.485809,41.48866999906],[-71.485329,41.48846799906],[-71.484834,41.48828199906],[-71.48455,41.48817099906],[-71.484222,41.48803699906],[-71.48394,41.48791499906],[-71.483658,41.48777799906],[-71.483528,41.48769399906],[-71.483429,41.48761399906],[-71.483337,41.48752199906],[-71.483261,41.48742699906],[-71.483192,41.48730099906],[-71.483147,41.48716399906],[-71.483093,41.48702999906],[-71.482803,41.48613399906],[-71.482698,41.48578299906],[-71.482399,41.48479499906],[-71.482353,41.48461899906],[-71.4823,41.48444699906],[-71.482231,41.48415399906],[-71.482185,41.48390599906],[-71.482178,41.48376799906],[-71.482178,41.48339799906],[-71.482185,41.48330299906],[-71.482185,41.48320799906],[-71.482285,41.48216199906],[-71.482338,41.48154399906],[-71.482384,41.48092999906],[-71.482506,41.47963299906],[-71.482544,41.47914599906],[-71.482574,41.47875999906],[-71.482658,41.47800799906],[-71.482948,41.47641399906],[-71.483192,41.47500999906],[-71.483208,41.47495999906],[-71.483383,41.47400999906],[-71.483704,41.47207999906],[-71.48378,41.47167999906],[-71.484016,41.47032899906],[-71.484093,41.46992099906],[-71.484245,41.46900199906],[-71.48425,41.46897299906],[-71.484467,41.46781899906],[-71.484772,41.46607099906],[-71.484833,41.46570599906],[-71.484871,41.46560299906],[-71.484947,41.46547299906],[-71.485069,41.46533599906],[-71.485985,41.46451199906],[-71.486146,41.46437399906],[-71.486373,41.46416999906],[-71.486538,41.46400899906],[-71.486715,41.46381399906],[-71.486777,41.46370499906],[-71.486267,41.46375699906],[-71.485901,41.46380599906],[-71.485474,41.46385599906],[-71.48455,41.46399299906],[-71.484039,41.46397799906],[-71.483322,41.46398499906],[-71.483062,41.46400499906],[-71.482719,41.46403099906],[-71.481972,41.46411899906],[-71.480995,41.46425999906],[-71.479958,41.46442799906],[-71.479004,41.46455399906],[-71.478477,41.46460299906],[-71.477852,41.46463399906],[-71.476868,41.46471399906],[-71.476623,41.46474099906],[-71.475716,41.46484399906],[-71.474426,41.46499599906],[-71.473516,41.46510899906],[-71.473259,41.46514099906],[-71.472267,41.46525999906],[-71.471306,41.46538199906],[-71.470016,41.46552999906],[-71.469017,41.46565199906],[-71.467581,41.46583999906],[-71.466103,41.46603399906],[-71.465309,41.46612899906],[-71.46463,41.46618999906],[-71.464149,41.46622099906],[-71.46406,41.46622599906],[-71.463969,41.46623199906],[-71.463762,41.46628399906],[-71.463644,41.46633099906],[-71.463532,41.46642399906],[-71.463613,41.46621199906],[-71.46347,41.46617099906],[-71.463381,41.46639099906],[-71.462929,41.46750999906],[-71.462882,41.46759099906],[-71.462784,41.46782699906],[-71.462624,41.46815099906],[-71.462563,41.46828499906],[-71.462173,41.46903199906],[-71.46211,41.46914099906],[-71.462037,41.46927099906],[-71.461838,41.46962699906],[-71.461769,41.46973799906],[-71.46138,41.47042499906],[-71.46122,41.47075999906],[-71.461098,41.47113399906],[-71.460999,41.47154999906],[-71.460973,41.47187199906],[-71.460953,41.47214499906],[-71.460907,41.47304199906],[-71.460884,41.47337699906],[-71.46087,41.47364599906],[-71.460861,41.47388799906],[-71.460823,41.47421599906],[-71.460693,41.47490299906],[-71.46044,41.47609199906],[-71.460297,41.47676799906],[-71.460258,41.47690199906],[-71.460114,41.47747799906],[-71.459962,41.47805799906],[-71.45977,41.47879399906],[-71.45945,41.47999199906],[-71.459389,41.48019399906],[-71.459358,41.48032799906],[-71.459213,41.48089999906],[-71.459192,41.48097799906],[-71.459099,41.48131899906],[-71.459086,41.48136599906],[-71.459043,41.48150399906],[-71.459023,41.48157899906],[-71.458839,41.48224599906],[-71.458694,41.48288699906],[-71.458488,41.48385199906],[-71.458382,41.48430999906],[-71.458314,41.48465399906],[-71.458237,41.48503899906],[-71.458061,41.48579799906],[-71.457821,41.48683199906],[-71.45775,41.48715499906],[-71.457512,41.48813999906],[-71.45742,41.48850599906],[-71.457185,41.48946999906],[-71.457084,41.48985099906],[-71.456672,41.49148299906],[-71.456617,41.49170599906],[-71.456534,41.49199399906],[-71.456461,41.49224899906],[-71.456396,41.49257999906],[-71.456363,41.49291899906],[-71.456354,41.49308899906],[-71.45634,41.49372099906],[-71.456338,41.49374599906],[-71.456347,41.49418899906],[-71.456384,41.49451399906],[-71.456424,41.49477099906],[-71.456467,41.49501499906],[-71.456617,41.49570699906],[-71.456791,41.49634699906],[-71.457103,41.49710399906],[-71.457153,41.49719999906],[-71.457368,41.49769399906],[-71.45748,41.49797599906],[-71.457606,41.49827099906],[-71.457624,41.49831699906],[-71.457734,41.49854699906],[-71.457843,41.49878699906],[-71.457966,41.49905799906],[-71.458115,41.49906899906],[-71.466376,41.49856399906],[-71.469565,41.49837199906],[-71.470946,41.49835299906],[-71.473739,41.49811799906],[-71.476001,41.49799499906],[-71.478687,41.49788499906],[-71.478728,41.49787699906],[-71.482973,41.49759199906],[-71.48718,41.49740499906],[-71.488624,41.49736499906],[-71.48915,41.49733499906],[-71.491864,41.49721899906]]]}}"}, +{"type": "blockgroup", "typeId": 513052, "areaId": 29438, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.479897,41.44075099906],[-71.479868,41.44061499906],[-71.479797,41.44042599906],[-71.479706,41.44029599906],[-71.479652,41.44023499906],[-71.479576,41.44017399906],[-71.479485,41.44011699906],[-71.479393,41.44006699906],[-71.479294,41.44000599906],[-71.479073,41.43990299906],[-71.478966,41.43986099906],[-71.47863,41.43974299906],[-71.478394,41.43965499906],[-71.477989,41.43951399906],[-71.477722,41.43944199906],[-71.477554,41.43941099906],[-71.477371,41.43939999906],[-71.477295,41.43939999906],[-71.477158,41.43938399906],[-71.47702,41.43936199906],[-71.476761,41.43929299906],[-71.476532,41.43921699906],[-71.476479,41.43920499906],[-71.476372,41.43918999906],[-71.476128,41.43918999906],[-71.47599,41.43919399906],[-71.475746,41.43921699906],[-71.475578,41.43920899906],[-71.475494,41.43918999906],[-71.475426,41.43915199906],[-71.475327,41.43908299906],[-71.475134,41.43892699906],[-71.475075,41.43887699906],[-71.474835,41.43889099906],[-71.474518,41.43904499906],[-71.473068,41.43974899906],[-71.472992,41.43980799906],[-71.472952,41.43986199906],[-71.472898,41.43991499906],[-71.472725,41.43999399906],[-71.4727,41.44001499906],[-71.469497,41.44129499906],[-71.469447,41.44129199906],[-71.469361,41.44129599906],[-71.469285,41.44131099906],[-71.469114,41.44139199906],[-71.469028,41.44143799906],[-71.468929,41.44147099906],[-71.468733,41.44152799906],[-71.468643,41.44156099906],[-71.468586,41.44161899906],[-71.468495,41.44173299906],[-71.468421,41.44173299906],[-71.468317,41.44171299906],[-71.468241,41.44171199906],[-71.468165,41.44171699906],[-71.468096,41.44173499906],[-71.46801,41.44177699906],[-71.467945,41.44181799906],[-71.467831,41.44194099906],[-71.467687,41.44203199906],[-71.467623,41.44206399906],[-71.467489,41.44214499906],[-71.467411,41.44217099906],[-71.467324,41.44216999906],[-71.467239,41.44215299906],[-71.467142,41.44214799906],[-71.467032,41.44215599906],[-71.46695,41.44216999906],[-71.466876,41.44219499906],[-71.466743,41.44226099906],[-71.4667,41.44229899906],[-71.466022,41.44256299906],[-71.464283,41.44354299906],[-71.461062,41.44584099906],[-71.45499,41.45029899906],[-71.4526,41.45220199906],[-71.452165,41.45250299906],[-71.451617,41.45315699906],[-71.451349,41.45417599906],[-71.450869,41.45790999906],[-71.45087,41.45892799906],[-71.451137,41.46160399906],[-71.451034,41.46220499906],[-71.45018,41.46514599906],[-71.449924,41.46595199906],[-71.448826,41.46750799906],[-71.4484,41.46840099906],[-71.448398,41.46872899906],[-71.448749,41.46978199906],[-71.4496,41.47240099906],[-71.448856,41.47376399906],[-71.448902,41.47453499906],[-71.448703,41.47500699906],[-71.44849,41.47551099906],[-71.4483,41.47680099906],[-71.44823,41.47709799906],[-71.448247,41.47895999906],[-71.447957,41.47991399906],[-71.447819,41.48054699906],[-71.447362,41.48124899906],[-71.44728,41.48242899906],[-71.44786,41.48329399906],[-71.447627,41.48405199906],[-71.447413,41.48451399906],[-71.447458,41.48589099906],[-71.447648,41.48599999906],[-71.447868,41.48620599906],[-71.447922,41.48644299906],[-71.447867,41.48659599906],[-71.447787,41.48692499906],[-71.447047,41.48832999906],[-71.447058,41.48839299906],[-71.447058,41.48844399906],[-71.447013,41.48849999906],[-71.446864,41.48858199906],[-71.446796,41.48862899906],[-71.446761,41.48868099906],[-71.446732,41.48874799906],[-71.446718,41.48881199906],[-71.446724,41.48893899906],[-71.446657,41.48907699906],[-71.446873,41.48978099906],[-71.447084,41.49013899906],[-71.450101,41.50180099906],[-71.451222,41.50116599906],[-71.451909,41.50085899906],[-71.452082,41.50058999906],[-71.452481,41.50033599906],[-71.453453,41.49987399906],[-71.453721,41.49975699906],[-71.457966,41.49905799906],[-71.457843,41.49878699906],[-71.457734,41.49854699906],[-71.457624,41.49831699906],[-71.457606,41.49827099906],[-71.45748,41.49797599906],[-71.457368,41.49769399906],[-71.457153,41.49719999906],[-71.457103,41.49710399906],[-71.456791,41.49634699906],[-71.456617,41.49570699906],[-71.456467,41.49501499906],[-71.456424,41.49477099906],[-71.456384,41.49451399906],[-71.456347,41.49418899906],[-71.456338,41.49374599906],[-71.45634,41.49372099906],[-71.456354,41.49308899906],[-71.456363,41.49291899906],[-71.456396,41.49257999906],[-71.456461,41.49224899906],[-71.456534,41.49199399906],[-71.456617,41.49170599906],[-71.456672,41.49148299906],[-71.457084,41.48985099906],[-71.457185,41.48946999906],[-71.45742,41.48850599906],[-71.457512,41.48813999906],[-71.45775,41.48715499906],[-71.457821,41.48683199906],[-71.458061,41.48579799906],[-71.458237,41.48503899906],[-71.458314,41.48465399906],[-71.458382,41.48430999906],[-71.458488,41.48385199906],[-71.458694,41.48288699906],[-71.458839,41.48224599906],[-71.459023,41.48157899906],[-71.459043,41.48150399906],[-71.459086,41.48136599906],[-71.459099,41.48131899906],[-71.459192,41.48097799906],[-71.459213,41.48089999906],[-71.459358,41.48032799906],[-71.459389,41.48019399906],[-71.45945,41.47999199906],[-71.45977,41.47879399906],[-71.459962,41.47805799906],[-71.460114,41.47747799906],[-71.460258,41.47690199906],[-71.460297,41.47676799906],[-71.46044,41.47609199906],[-71.460693,41.47490299906],[-71.460823,41.47421599906],[-71.460861,41.47388799906],[-71.46087,41.47364599906],[-71.460884,41.47337699906],[-71.460907,41.47304199906],[-71.460953,41.47214499906],[-71.460973,41.47187199906],[-71.460999,41.47154999906],[-71.461098,41.47113399906],[-71.46122,41.47075999906],[-71.46138,41.47042499906],[-71.461769,41.46973799906],[-71.461838,41.46962699906],[-71.462037,41.46927099906],[-71.46211,41.46914099906],[-71.462173,41.46903199906],[-71.462563,41.46828499906],[-71.462624,41.46815099906],[-71.462784,41.46782699906],[-71.462882,41.46759099906],[-71.462929,41.46750999906],[-71.463381,41.46639099906],[-71.46347,41.46617099906],[-71.463601,41.46584899906],[-71.463711,41.46557899906],[-71.463722,41.46555299906],[-71.463749,41.46548999906],[-71.464013,41.46484199906],[-71.464232,41.46445499906],[-71.464547,41.46397799906],[-71.464661,41.46381799906],[-71.464867,41.46346299906],[-71.465271,41.46266599906],[-71.46566,41.46187999906],[-71.466131,41.46094599906],[-71.46663,41.46002099906],[-71.466988,41.45933899906],[-71.467102,41.45912199906],[-71.467369,41.45859099906],[-71.467613,41.45811799906],[-71.467794,41.45772299906],[-71.467808,41.45769299906],[-71.467947,41.45738799906],[-71.468033,41.45719899906],[-71.468576,41.45596299906],[-71.468704,41.45600699906],[-71.468721,41.45597099906],[-71.468839,41.45569399906],[-71.468964,41.45534099906],[-71.46904,41.45506699906],[-71.469086,41.45476399906],[-71.469097,41.45448699906],[-71.469097,41.45425999906],[-71.469109,41.45408199906],[-71.469154,41.45365099906],[-71.469276,41.45310599906],[-71.469429,41.45269799906],[-71.46965,41.45227799906],[-71.469925,41.45185899906],[-71.470421,41.45131299906],[-71.471062,41.45067199906],[-71.471406,41.45035599906],[-71.471817,41.44997799906],[-71.472715,41.44907999906],[-71.473175,41.44862699906],[-71.473885,41.44795599906],[-71.4746,41.44725599906],[-71.47448,41.44720199906],[-71.474901,41.44679599906],[-71.474945,41.44676199906],[-71.475266,41.44645699906],[-71.476359,41.44539099906],[-71.477814,41.44396999906],[-71.477936,41.44383599906],[-71.478134,41.44362999906],[-71.478279,41.44346599906],[-71.478404,41.44332999906],[-71.478737,41.44294399906],[-71.479027,41.44258899906],[-71.479317,41.44220399906],[-71.479065,41.44210399906],[-71.479124,41.44201199906],[-71.47922,41.44190299906],[-71.47936,41.44170799906],[-71.479542,41.44146999906],[-71.479701,41.44125799906],[-71.479776,41.44115699906],[-71.479847,41.44102599906],[-71.479876,41.44093299906],[-71.479895,41.44084199906],[-71.479897,41.44075099906]]]}}"}, +{"type": "blockgroup", "typeId": 513053, "areaId": 29439, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.522598,41.47993899906],[-71.522252,41.47994799906],[-71.521942,41.47996999906],[-71.521467,41.48001599906],[-71.520897,41.48008399906],[-71.520699,41.47952999906],[-71.520538,41.47897299906],[-71.52047,41.47872899906],[-71.520325,41.47824499906],[-71.520218,41.47791699906],[-71.520103,41.47768799906],[-71.519958,41.47748199906],[-71.51973,41.47719999906],[-71.518576,41.47581199906],[-71.51754,41.47456699906],[-71.51721,41.47416899906],[-71.516875,41.47376299906],[-71.516803,41.47367699906],[-71.515541,41.47215299906],[-71.515533,41.47213699906],[-71.515271,41.47181799906],[-71.515195,41.47172599906],[-71.514923,41.47139399906],[-71.514529,41.47092699906],[-71.514511,41.47090499906],[-71.514097,41.47040199906],[-71.513855,41.47010799906],[-71.513614,41.46981599906],[-71.513184,41.46929599906],[-71.512848,41.46887199906],[-71.512688,41.46863899906],[-71.512444,41.46815899906],[-71.512138,41.46756399906],[-71.512131,41.46754099906],[-71.512039,41.46736899906],[-71.511986,41.46725799906],[-71.511589,41.46649199906],[-71.5114,41.46611799906],[-71.511364,41.46604699906],[-71.511154,41.46563299906],[-71.511047,41.46542599906],[-71.51078,41.46490499906],[-71.510185,41.46374499906],[-71.509995,41.46337499906],[-71.509811,41.46300899906],[-71.509422,41.46225699906],[-71.508987,41.46239099906],[-71.508732,41.46245299906],[-71.508453,41.46252099906],[-71.508057,41.46258899906],[-71.507324,41.46268499906],[-71.506667,41.46276699906],[-71.506294,41.46281399906],[-71.505836,41.46288699906],[-71.505226,41.46296299906],[-71.50457,41.46305499906],[-71.503942,41.46313799906],[-71.502952,41.46326899906],[-71.502617,41.46331399906],[-71.502014,41.46339799906],[-71.500816,41.46355799906],[-71.500679,41.46357299906],[-71.499908,41.46367299906],[-71.499259,41.46375599906],[-71.499168,41.46376799906],[-71.498215,41.46389799906],[-71.497391,41.46399299906],[-71.495583,41.46425199906],[-71.495155,41.46430599906],[-71.495033,41.46432099906],[-71.494553,41.46440099906],[-71.493652,41.46454199906],[-71.493423,41.46457699906],[-71.49247,41.46470299906],[-71.492111,41.46474099906],[-71.491737,41.46477099906],[-71.491203,41.46475999906],[-71.490921,41.46472499906],[-71.490775,41.46471199906],[-71.49054,41.46469099906],[-71.490341,41.46463799906],[-71.49012,41.46454199906],[-71.489861,41.46435899906],[-71.489578,41.46413399906],[-71.48909,41.46376399906],[-71.488968,41.46369199906],[-71.4888,41.46361899906],[-71.48864,41.46358499906],[-71.488441,41.46358099906],[-71.488029,41.46360399906],[-71.487312,41.46365699906],[-71.486954,41.46369199906],[-71.486777,41.46370499906],[-71.486715,41.46381399906],[-71.486538,41.46400899906],[-71.486373,41.46416999906],[-71.486146,41.46437399906],[-71.485985,41.46451199906],[-71.485069,41.46533599906],[-71.484947,41.46547299906],[-71.484871,41.46560299906],[-71.484833,41.46570599906],[-71.484772,41.46607099906],[-71.484467,41.46781899906],[-71.48425,41.46897299906],[-71.484245,41.46900199906],[-71.484093,41.46992099906],[-71.484016,41.47032899906],[-71.48378,41.47167999906],[-71.483704,41.47207999906],[-71.483383,41.47400999906],[-71.483208,41.47495999906],[-71.483192,41.47500999906],[-71.482948,41.47641399906],[-71.482658,41.47800799906],[-71.482574,41.47875999906],[-71.482544,41.47914599906],[-71.482506,41.47963299906],[-71.482384,41.48092999906],[-71.482338,41.48154399906],[-71.482285,41.48216199906],[-71.482185,41.48320799906],[-71.482185,41.48330299906],[-71.482178,41.48339799906],[-71.482178,41.48376799906],[-71.482185,41.48390599906],[-71.482231,41.48415399906],[-71.4823,41.48444699906],[-71.482353,41.48461899906],[-71.482399,41.48479499906],[-71.482698,41.48578299906],[-71.482803,41.48613399906],[-71.483093,41.48702999906],[-71.483147,41.48716399906],[-71.483192,41.48730099906],[-71.483261,41.48742699906],[-71.483337,41.48752199906],[-71.483429,41.48761399906],[-71.483528,41.48769399906],[-71.483658,41.48777799906],[-71.48394,41.48791499906],[-71.484222,41.48803699906],[-71.48455,41.48817099906],[-71.484834,41.48828199906],[-71.485329,41.48846799906],[-71.485809,41.48866999906],[-71.485855,41.48870099906],[-71.485886,41.48871599906],[-71.486084,41.48885299906],[-71.486588,41.48926499906],[-71.486938,41.48954399906],[-71.487671,41.49017299906],[-71.488079,41.49057299906],[-71.487825,41.49067399906],[-71.487976,41.49081799906],[-71.488052,41.49089099906],[-71.488289,41.49104299906],[-71.488777,41.49130599906],[-71.489174,41.49153899906],[-71.489456,41.49167999906],[-71.489899,41.49183999906],[-71.490067,41.49191999906],[-71.490166,41.49200799906],[-71.49025,41.49209599906],[-71.490318,41.49219499906],[-71.490387,41.49232499906],[-71.490471,41.49249999906],[-71.490631,41.49287399906],[-71.490707,41.49310699906],[-71.490753,41.49329399906],[-71.490776,41.49353799906],[-71.490761,41.49371699906],[-71.490746,41.49378199906],[-71.490715,41.49389999906],[-71.490578,41.49421699906],[-71.490473,41.49447599906],[-71.490387,41.49470499906],[-71.490364,41.49484999906],[-71.490372,41.49500699906],[-71.49041,41.49511699906],[-71.490524,41.49534999906],[-71.490685,41.49562099906],[-71.491188,41.49665499906],[-71.491333,41.49691399906],[-71.491385,41.49699199906],[-71.491527,41.49712599906],[-71.491568,41.49715499906],[-71.491712,41.49719099906],[-71.491864,41.49721899906],[-71.492315,41.49730199906],[-71.493894,41.49757299906],[-71.495397,41.49780599906],[-71.496068,41.49791599906],[-71.496946,41.49807999906],[-71.497304,41.49815599906],[-71.498265,41.49840399906],[-71.49912,41.49861399906],[-71.499234,41.49864499906],[-71.499666,41.49874899906],[-71.499707,41.49875899906],[-71.500295,41.49892299906],[-71.500997,41.49910299906],[-71.501561,41.49922099906],[-71.502088,41.49931999906],[-71.502385,41.49939199906],[-71.502698,41.49947999906],[-71.502927,41.49956799906],[-71.503225,41.49966699906],[-71.503438,41.49970099906],[-71.503835,41.49971699906],[-71.504369,41.49972099906],[-71.504956,41.49971699906],[-71.505355,41.49971999906],[-71.505727,41.49972799906],[-71.506047,41.49974699906],[-71.506398,41.49979699906],[-71.50681,41.49987699906],[-71.507322,41.49996099906],[-71.507886,41.50005999906],[-71.510114,41.50044399906],[-71.51213,41.50081199906],[-71.512328,41.50084899906],[-71.512801,41.50094099906],[-71.513495,41.50106299906],[-71.514335,41.50122699906],[-71.514896,41.50134099906],[-71.515007,41.50110199906],[-71.515209,41.50054499906],[-71.515236,41.50047299906],[-71.515596,41.49949899906],[-71.515752,41.49907799906],[-71.51603,41.49832799906],[-71.51606,41.49824899906],[-71.51696,41.49579599906],[-71.517601,41.49409899906],[-71.518242,41.49222899906],[-71.518335,41.49193299906],[-71.518356,41.49186699906],[-71.518707,41.49087899906],[-71.518944,41.49023099906],[-71.519244,41.48943199906],[-71.519424,41.48895299906],[-71.519661,41.48829699906],[-71.519905,41.48759499906],[-71.520071,41.48714599906],[-71.520218,41.48674799906],[-71.520241,41.48670199906],[-71.520393,41.48630499906],[-71.52047,41.48610299906],[-71.520566,41.48576499906],[-71.520622,41.48566399906],[-71.521004,41.48456199906],[-71.521049,41.48444399906],[-71.521118,41.48422599906],[-71.521202,41.48395899906],[-71.521286,41.48371899906],[-71.521305,41.48366799906],[-71.5214,41.48341399906],[-71.521614,41.48280699906],[-71.521629,41.48274199906],[-71.521647,41.48268299906],[-71.521782,41.48224999906],[-71.521988,41.48166999906],[-71.522121,41.48126299906],[-71.522285,41.48076199906],[-71.522319,41.48066699906],[-71.522438,41.48033099906],[-71.522598,41.47993899906]]]}}"}, +{"type": "blockgroup", "typeId": 513061, "areaId": 29440, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.613042,41.52512099906],[-71.61276,41.52372299906],[-71.612484,41.52242499906],[-71.612429,41.52214799906],[-71.612295,41.52147399906],[-71.611747,41.51861899906],[-71.611711,41.51844999906],[-71.611684,41.51842099906],[-71.610706,41.51361999906],[-71.61022,41.51122899906],[-71.610049,41.51039499906],[-71.610041,41.51035799906],[-71.609923,41.50972899906],[-71.609907,41.50969999906],[-71.609772,41.50898599906],[-71.609332,41.50665699906],[-71.608772,41.50455099906],[-71.608688,41.50438699906],[-71.608681,41.50434899906],[-71.60865,41.50426499906],[-71.608635,41.50415399906],[-71.608631,41.50411699906],[-71.608627,41.50405499906],[-71.608635,41.50400499906],[-71.608525,41.50349999906],[-71.608541,41.50343799906],[-71.608558,41.50306199906],[-71.608555,41.50292399906],[-71.608544,41.50284799906],[-71.608512,41.50277399906],[-71.608457,41.50270799906],[-71.608381,41.50265599906],[-71.608322,41.50262299906],[-71.608256,41.50259399906],[-71.608188,41.50257299906],[-71.608097,41.50255099906],[-71.608007,41.50253899906],[-71.607794,41.50252999906],[-71.607724,41.50247999906],[-71.607516,41.50238499906],[-71.607456,41.50225199906],[-71.607427,41.50206599906],[-71.607615,41.50203699906],[-71.607775,41.50201199906],[-71.607839,41.50165899906],[-71.60771,41.50146999906],[-71.60767,41.50118599906],[-71.60759,41.50107299906],[-71.607486,41.50092799906],[-71.607601,41.50070399906],[-71.607637,41.50067499906],[-71.607973,41.50040999906],[-71.608016,41.50033399906],[-71.608077,41.50027299906],[-71.608092,41.50026099906],[-71.608158,41.50021399906],[-71.608226,41.50016899906],[-71.608259,41.50012399906],[-71.608226,41.50005099906],[-71.60817,41.50001199906],[-71.608108,41.49998299906],[-71.608036,41.49992899906],[-71.608023,41.49985499906],[-71.608056,41.49977899906],[-71.608128,41.49972899906],[-71.608234,41.49973899906],[-71.608304,41.49975399906],[-71.608404,41.49976899906],[-71.6085,41.49975799906],[-71.608577,41.49973099906],[-71.608617,41.49967999906],[-71.608588,41.49960999906],[-71.608553,41.49955899906],[-71.608539,41.49948499906],[-71.608579,41.49942499906],[-71.60864,41.49939399906],[-71.608715,41.49937099906],[-71.608887,41.49932999906],[-71.608965,41.49930699906],[-71.609026,41.49926299906],[-71.609025,41.49920699906],[-71.608992,41.49915399906],[-71.608912,41.49911099906],[-71.608735,41.49908299906],[-71.608656,41.49906599906],[-71.608594,41.49901599906],[-71.608607,41.49892899906],[-71.608721,41.49859199906],[-71.608774,41.49854199906],[-71.608946,41.49847699906],[-71.609031,41.49845799906],[-71.609115,41.49847199906],[-71.609205,41.49850799906],[-71.609304,41.49852899906],[-71.609387,41.49850799906],[-71.60942,41.49845499906],[-71.609413,41.49839199906],[-71.609359,41.49828199906],[-71.609376,41.49820099906],[-71.609416,41.49814299906],[-71.609468,41.49808699906],[-71.609517,41.49802299906],[-71.609543,41.49794899906],[-71.609535,41.49786799906],[-71.609503,41.49777399906],[-71.609414,41.49757799906],[-71.609369,41.49749999906],[-71.609313,41.49743699906],[-71.609239,41.49738299906],[-71.609154,41.49733499906],[-71.609075,41.49728199906],[-71.609002,41.49722199906],[-71.60894,41.49715899906],[-71.608878,41.49710999906],[-71.608815,41.49707099906],[-71.60876,41.49703099906],[-71.608745,41.49698199906],[-71.608768,41.49692599906],[-71.608818,41.49686899906],[-71.608888,41.49680999906],[-71.608971,41.49673299906],[-71.608989,41.49671299906],[-71.608997,41.49665699906],[-71.608973,41.49651399906],[-71.608924,41.49636699906],[-71.608891,41.49629799906],[-71.608854,41.49623999906],[-71.608808,41.49619299906],[-71.608717,41.49617299906],[-71.608632,41.49621899906],[-71.608584,41.49626799906],[-71.608533,41.49629699906],[-71.60844,41.49627699906],[-71.608377,41.49621399906],[-71.608382,41.49615899906],[-71.608416,41.49610399906],[-71.608468,41.49605299906],[-71.608533,41.49601099906],[-71.608608,41.49598599906],[-71.60869,41.49597199906],[-71.608771,41.49594999906],[-71.60885,41.49590999906],[-71.608925,41.49585699906],[-71.608989,41.49579099906],[-71.609035,41.49571999906],[-71.609047,41.49564699906],[-71.609027,41.49558099906],[-71.608966,41.49543299906],[-71.60893,41.49536599906],[-71.608881,41.49531299906],[-71.60882,41.49526599906],[-71.608739,41.49523499906],[-71.608655,41.49522699906],[-71.608581,41.49522799906],[-71.608504,41.49524799906],[-71.608472,41.49529999906],[-71.608466,41.49536299906],[-71.608413,41.49541799906],[-71.608329,41.49545799906],[-71.608229,41.49544899906],[-71.608162,41.49541899906],[-71.608113,41.49535099906],[-71.608113,41.49529099906],[-71.608126,41.49522899906],[-71.608154,41.49516899906],[-71.608172,41.49510499906],[-71.608157,41.49503599906],[-71.608108,41.49497399906],[-71.608034,41.49493899906],[-71.607945,41.49493199906],[-71.60788,41.49490099906],[-71.607791,41.49480999906],[-71.607769,41.49475599906],[-71.607768,41.49470099906],[-71.607808,41.49462899906],[-71.607874,41.49459499906],[-71.608028,41.49454699906],[-71.608098,41.49451399906],[-71.608147,41.49446699906],[-71.608169,41.49441199906],[-71.608166,41.49425099906],[-71.608139,41.49421599906],[-71.608057,41.49420599906],[-71.60797,41.49421099906],[-71.607884,41.49424999906],[-71.607786,41.49427799906],[-71.607702,41.49423999906],[-71.607657,41.49418999906],[-71.607579,41.49408999906],[-71.607501,41.49409899906],[-71.607449,41.49416899906],[-71.607446,41.49429899906],[-71.6074,41.49435699906],[-71.607336,41.49434199906],[-71.607282,41.49428099906],[-71.607247,41.49422499906],[-71.607216,41.49416099906],[-71.607201,41.49408499906],[-71.607197,41.49393999906],[-71.607195,41.49387299906],[-71.607203,41.49381599906],[-71.607251,41.49374699906],[-71.607326,41.49371099906],[-71.607409,41.49372999906],[-71.60747,41.49379099906],[-71.60751,41.49385499906],[-71.607558,41.49388799906],[-71.607625,41.49386599906],[-71.60769,41.49380399906],[-71.607717,41.49374099906],[-71.607773,41.49356899906],[-71.607922,41.49325899906],[-71.607958,41.49320199906],[-71.608002,41.49315699906],[-71.608063,41.49311799906],[-71.608136,41.49308399906],[-71.608366,41.49300599906],[-71.608541,41.49297999906],[-71.608617,41.49294399906],[-71.608645,41.49287399906],[-71.60864,41.49281299906],[-71.608623,41.49274399906],[-71.608589,41.49266399906],[-71.608473,41.49244199906],[-71.608439,41.49238799906],[-71.608399,41.49234199906],[-71.608322,41.49228999906],[-71.608254,41.49225199906],[-71.608202,41.49220899906],[-71.608175,41.49214599906],[-71.608181,41.49206999906],[-71.608222,41.49201799906],[-71.608288,41.49196699906],[-71.608363,41.49192099906],[-71.608424,41.49186799906],[-71.608447,41.49180299906],[-71.608434,41.49173399906],[-71.608384,41.49160899906],[-71.60838,41.49154199906],[-71.608384,41.49147499906],[-71.608408,41.49140999906],[-71.608444,41.49135499906],[-71.608458,41.49130099906],[-71.608453,41.49117899906],[-71.608437,41.49111199906],[-71.608387,41.49099099906],[-71.60837,41.49093499906],[-71.608367,41.49087399906],[-71.608372,41.49080899906],[-71.608411,41.49066699906],[-71.608444,41.49050999906],[-71.608441,41.49043999906],[-71.608429,41.49037999906],[-71.608392,41.49034099906],[-71.608315,41.49033599906],[-71.608224,41.49035899906],[-71.608137,41.49037199906],[-71.608048,41.49036499906],[-71.607979,41.49033899906],[-71.607938,41.49029399906],[-71.607932,41.49023499906],[-71.607936,41.49016799906],[-71.607966,41.49010199906],[-71.608058,41.48997299906],[-71.608068,41.48989999906],[-71.608066,41.48982099906],[-71.608055,41.48974399906],[-71.608026,41.48967199906],[-71.608006,41.48960299906],[-71.608003,41.48953699906],[-71.608014,41.48947599906],[-71.608065,41.48941999906],[-71.608205,41.48932799906],[-71.608258,41.48928599906],[-71.60832,41.48922599906],[-71.608356,41.48916499906],[-71.608361,41.48903099906],[-71.608393,41.48897799906],[-71.608486,41.48886699906],[-71.608552,41.48880499906],[-71.608605,41.48876199906],[-71.608649,41.48871699906],[-71.608679,41.48864899906],[-71.608676,41.48857599906],[-71.608649,41.48850499906],[-71.608611,41.48843599906],[-71.608608,41.48837199906],[-71.608629,41.48831799906],[-71.608768,41.48822399906],[-71.608812,41.48817599906],[-71.608826,41.48812099906],[-71.608822,41.48799799906],[-71.60883,41.48793699906],[-71.608871,41.48786699906],[-71.608921,41.48779999906],[-71.608914,41.48773699906],[-71.608844,41.48767899906],[-71.608704,41.48760399906],[-71.608634,41.48756099906],[-71.608493,41.48745499906],[-71.608412,41.48740399906],[-71.608332,41.48736099906],[-71.608256,41.48732999906],[-71.608167,41.48731399906],[-71.607996,41.48730299906],[-71.607413,41.48731199906],[-71.607321,41.48732099906],[-71.606909,41.48739699906],[-71.606663,41.48742499906],[-71.606346,41.48749299906],[-71.606264,41.48750399906],[-71.606087,41.48750799906],[-71.605981,41.48750599906],[-71.605876,41.48749299906],[-71.605777,41.48746499906],[-71.605412,41.48730599906],[-71.605336,41.48726299906],[-71.605271,41.48721499906],[-71.605045,41.48702799906],[-71.604961,41.48696799906],[-71.604493,41.48665999906],[-71.604372,41.48656399906],[-71.604318,41.48651099906],[-71.604273,41.48645099906],[-71.604241,41.48638899906],[-71.604222,41.48632799906],[-71.604213,41.48626899906],[-71.604231,41.48620699906],[-71.604263,41.48615699906],[-71.604436,41.48608599906],[-71.604509,41.48605099906],[-71.604569,41.48600699906],[-71.604585,41.48595699906],[-71.604559,41.48590399906],[-71.604505,41.48584999906],[-71.604368,41.48572599906],[-71.6043,41.48565599906],[-71.604237,41.48557499906],[-71.604192,41.48549299906],[-71.604129,41.48534999906],[-71.604093,41.48528099906],[-71.60405,41.48521799906],[-71.604002,41.48516399906],[-71.603778,41.48495099906],[-71.603721,41.48490699906],[-71.603656,41.48486899906],[-71.60358,41.48483799906],[-71.603318,41.48476899906],[-71.603137,41.48470899906],[-71.60304,41.48466999906],[-71.602952,41.48462799906],[-71.602884,41.48458699906],[-71.602826,41.48453899906],[-71.602819,41.48451499906],[-71.602754,41.48446799906],[-71.602654,41.48437199906],[-71.6026,41.48430499906],[-71.602591,41.48422499906],[-71.602597,41.48416699906],[-71.60262,41.48410999906],[-71.602652,41.48404999906],[-71.602685,41.48396299906],[-71.602651,41.48391299906],[-71.602588,41.48384899906],[-71.60255,41.48379499906],[-71.60256,41.48374799906],[-71.602624,41.48371299906],[-71.602796,41.48357799906],[-71.602808,41.48351499906],[-71.602759,41.48345599906],[-71.602692,41.48342599906],[-71.602599,41.48341399906],[-71.602386,41.48341899906],[-71.602175,41.48340899906],[-71.602078,41.48339999906],[-71.602006,41.48338499906],[-71.601965,41.48336199906],[-71.601968,41.48329499906],[-71.601988,41.48323499906],[-71.602026,41.48317699906],[-71.602089,41.48312699906],[-71.602321,41.48300299906],[-71.602375,41.48296299906],[-71.602424,41.48290999906],[-71.602429,41.48285599906],[-71.602428,41.48278899906],[-71.602388,41.48272299906],[-71.602331,41.48268799906],[-71.602277,41.48264599906],[-71.602262,41.48256899906],[-71.60226,41.48249499906],[-71.602278,41.48242599906],[-71.602327,41.48235899906],[-71.602377,41.48231799906],[-71.602441,41.48228199906],[-71.602571,41.48222599906],[-71.602635,41.48217899906],[-71.602665,41.48212199906],[-71.60264,41.48204999906],[-71.602574,41.48199599906],[-71.602502,41.48197699906],[-71.602434,41.48194199906],[-71.602382,41.48188099906],[-71.602345,41.48182299906],[-71.602302,41.48177199906],[-71.602182,41.48167499906],[-71.602043,41.48157799906],[-71.601904,41.48150399906],[-71.601851,41.48146699906],[-71.601789,41.48140299906],[-71.601768,41.48133999906],[-71.601834,41.48127899906],[-71.601874,41.48122999906],[-71.601875,41.48116399906],[-71.601812,41.48111799906],[-71.601772,41.48107099906],[-71.601777,41.48101199906],[-71.601772,41.48093899906],[-71.601749,41.48088699906],[-71.601705,41.48084899906],[-71.601634,41.48085199906],[-71.601557,41.48089099906],[-71.601494,41.48093299906],[-71.601421,41.48092499906],[-71.601357,41.48088599906],[-71.601234,41.48080199906],[-71.601129,41.48071799906],[-71.601064,41.48068399906],[-71.60099,41.48065899906],[-71.600918,41.48062799906],[-71.600857,41.48058999906],[-71.600813,41.48054199906],[-71.600779,41.48046599906],[-71.600789,41.48039799906],[-71.600878,41.48036799906],[-71.601162,41.48034299906],[-71.601244,41.48032999906],[-71.601323,41.48031099906],[-71.601392,41.48028299906],[-71.601438,41.48021999906],[-71.601419,41.48014499906],[-71.60133,41.48010199906],[-71.601246,41.48009299906],[-71.601095,41.48008399906],[-71.60101,41.48007499906],[-71.600921,41.48005299906],[-71.600855,41.48001799906],[-71.600799,41.47995599906],[-71.600788,41.47990199906],[-71.60084,41.47986699906],[-71.600941,41.47985799906],[-71.60112,41.47987199906],[-71.601286,41.47986199906],[-71.601365,41.47984799906],[-71.60145,41.47980699906],[-71.601487,41.47973999906],[-71.601474,41.47966999906],[-71.601405,41.47961199906],[-71.601253,41.47955399906],[-71.601183,41.47950899906],[-71.601132,41.47946999906],[-71.60105,41.47945299906],[-71.600891,41.47945899906],[-71.600803,41.47945099906],[-71.600722,41.47941899906],[-71.60067,41.47936599906],[-71.600673,41.47931599906],[-71.600757,41.47929899906],[-71.600854,41.47930899906],[-71.600938,41.47930599906],[-71.601018,41.47928299906],[-71.601082,41.47924799906],[-71.601124,41.47919899906],[-71.601131,41.47913699906],[-71.601115,41.47906499906],[-71.601082,41.47899499906],[-71.601027,41.47893199906],[-71.60098,41.47888999906],[-71.600905,41.47884199906],[-71.600723,41.47877699906],[-71.60065,41.47872699906],[-71.600638,41.47866199906],[-71.600671,41.47863099906],[-71.600746,41.47861199906],[-71.600831,41.47859699906],[-71.600906,41.47857599906],[-71.600979,41.47854099906],[-71.600985,41.47849399906],[-71.600904,41.47846099906],[-71.600808,41.47844099906],[-71.600721,41.47839899906],[-71.600706,41.47834399906],[-71.60078,41.47828799906],[-71.600912,41.47821399906],[-71.60101,41.47812999906],[-71.601053,41.47807299906],[-71.601109,41.47795399906],[-71.601146,41.47790199906],[-71.601182,41.47778599906],[-71.601239,41.47773899906],[-71.601318,41.47769099906],[-71.601411,41.47765799906],[-71.601485,41.47764599906],[-71.601555,41.47762199906],[-71.601632,41.47757499906],[-71.601683,41.47753599906],[-71.601746,41.47749999906],[-71.60182,41.47747799906],[-71.601906,41.47747499906],[-71.601984,41.47748099906],[-71.602058,41.47748199906],[-71.60214,41.47747599906],[-71.60224,41.47747499906],[-71.602414,41.47746199906],[-71.602499,41.47746099906],[-71.60286,41.47747699906],[-71.602944,41.47748699906],[-71.603033,41.47752099906],[-71.603111,41.47754299906],[-71.603201,41.47753099906],[-71.603264,41.47749999906],[-71.60338,41.47742199906],[-71.603457,41.47737999906],[-71.603544,41.47736899906],[-71.603618,41.47737599906],[-71.603719,41.47737099906],[-71.603808,41.47738299906],[-71.603887,41.47742999906],[-71.60391,41.47749599906],[-71.603914,41.47757099906],[-71.603944,41.47763199906],[-71.604018,41.47766999906],[-71.604109,41.47767499906],[-71.604171,41.47762399906],[-71.604201,41.47755099906],[-71.6042,41.47748399906],[-71.604166,41.47743299906],[-71.60423,41.47740199906],[-71.604276,41.47736699906],[-71.604275,41.47730699906],[-71.604303,41.47724399906],[-71.604359,41.47719399906],[-71.604402,41.47714299906],[-71.604406,41.47707199906],[-71.604338,41.47695899906],[-71.604363,41.47691399906],[-71.604462,41.47690099906],[-71.604545,41.47689699906],[-71.604644,41.47688699906],[-71.604726,41.47686999906],[-71.604803,41.47684499906],[-71.604826,41.47681099906],[-71.604877,41.47669999906],[-71.604922,41.47660299906],[-71.604982,41.47655899906],[-71.605047,41.47653399906],[-71.605135,41.47652099906],[-71.605283,41.47651299906],[-71.605468,41.47649099906],[-71.605543,41.47648799906],[-71.605588,41.47646499906],[-71.605602,41.47640699906],[-71.605617,41.47628799906],[-71.605631,41.47623499906],[-71.605696,41.47609599906],[-71.60571,41.47604199906],[-71.605744,41.47597499906],[-71.605897,41.47591199906],[-71.605941,41.47583899906],[-71.605942,41.47577399906],[-71.605933,41.47571699906],[-71.605898,41.47566899906],[-71.605845,41.47562799906],[-71.605733,41.47555699906],[-71.60568,41.47550699906],[-71.605636,41.47545599906],[-71.605602,41.47540699906],[-71.605544,41.47535399906],[-71.605508,41.47529299906],[-71.60547,41.47515999906],[-71.605447,41.47501399906],[-71.605442,41.47482299906],[-71.605416,41.47476699906],[-71.605273,41.47472499906],[-71.605027,41.47467299906],[-71.604985,41.47464599906],[-71.604996,41.47458599906],[-71.605064,41.47447599906],[-71.605109,41.47442299906],[-71.605171,41.47438599906],[-71.605254,41.47436599906],[-71.605351,41.47435199906],[-71.605435,41.47433199906],[-71.605505,41.47429899906],[-71.60556,41.47424099906],[-71.605521,41.47417299906],[-71.605408,41.47406299906],[-71.605393,41.47399199906],[-71.605407,41.47390999906],[-71.605369,41.47383499906],[-71.605267,41.47374099906],[-71.605207,41.47370499906],[-71.605136,41.47365499906],[-71.605109,41.47360099906],[-71.605095,41.47353699906],[-71.605068,41.47333699906],[-71.605054,41.47314199906],[-71.605019,41.47307199906],[-71.604964,41.47303499906],[-71.604819,41.47296199906],[-71.604748,41.47293299906],[-71.604674,41.47291199906],[-71.604601,41.47288499906],[-71.604542,41.47284499906],[-71.604496,41.47278499906],[-71.604417,41.47264699906],[-71.604268,41.47243399906],[-71.60421,41.47238299906],[-71.604145,41.47234699906],[-71.604083,41.47231999906],[-71.603982,41.47231499906],[-71.6039,41.47235899906],[-71.603792,41.47246899906],[-71.603734,41.47252199906],[-71.603672,41.47253699906],[-71.603572,41.47250899906],[-71.603514,41.47246199906],[-71.603458,41.47240899906],[-71.603419,41.47233699906],[-71.603428,41.47220099906],[-71.603418,41.47213099906],[-71.603377,41.47205899906],[-71.603274,41.47194499906],[-71.603208,41.47189499906],[-71.603115,41.47186099906],[-71.603053,41.47182799906],[-71.603001,41.47176699906],[-71.603047,41.47169199906],[-71.60317,41.47158599906],[-71.603211,41.47151999906],[-71.603145,41.47145199906],[-71.603071,41.47141599906],[-71.603003,41.47139599906],[-71.602912,41.47140199906],[-71.602846,41.47143799906],[-71.602772,41.47145499906],[-71.602684,41.47141499906],[-71.602623,41.47136499906],[-71.602561,41.47130699906],[-71.602462,41.47119799906],[-71.602385,41.47108999906],[-71.602394,41.47103299906],[-71.602479,41.47098899906],[-71.602549,41.47093699906],[-71.602563,41.47085999906],[-71.602543,41.47080299906],[-71.602503,41.47075799906],[-71.602432,41.47072999906],[-71.602357,41.47071699906],[-71.602163,41.47070199906],[-71.6021,41.47066899906],[-71.602089,41.47060699906],[-71.602137,41.47054099906],[-71.60227,41.47048099906],[-71.602315,41.47041299906],[-71.602295,41.47034599906],[-71.602231,41.47028299906],[-71.602161,41.47022899906],[-71.602131,41.47017999906],[-71.60215,41.47012399906],[-71.602202,41.47007399906],[-71.602229,41.47001599906],[-71.602197,41.46995199906],[-71.602145,41.46989499906],[-71.602115,41.46983299906],[-71.602101,41.46957199906],[-71.602084,41.46949899906],[-71.602046,41.46942699906],[-71.60199,41.46939999906],[-71.601906,41.46940299906],[-71.601851,41.46935299906],[-71.601794,41.46929299906],[-71.601689,41.46920899906],[-71.601625,41.46915199906],[-71.601577,41.46909299906],[-71.601512,41.46904499906],[-71.601435,41.46900199906],[-71.601384,41.46894799906],[-71.601416,41.46888799906],[-71.601483,41.46883799906],[-71.601497,41.46876799906],[-71.601454,41.46871999906],[-71.60136,41.46870199906],[-71.60126,41.46869199906],[-71.601161,41.46869499906],[-71.601074,41.46868499906],[-71.60099,41.46864699906],[-71.600931,41.46859599906],[-71.60086,41.46855699906],[-71.600768,41.46853099906],[-71.600689,41.46849399906],[-71.600637,41.46844299906],[-71.600627,41.46838699906],[-71.600629,41.46832599906],[-71.600569,41.46827499906],[-71.600518,41.46825899906],[-71.600442,41.46824199906],[-71.600328,41.46822099906],[-71.600263,41.46818899906],[-71.600208,41.46812799906],[-71.600193,41.46806399906],[-71.600226,41.46799899906],[-71.60023,41.46792799906],[-71.600189,41.46786699906],[-71.600169,41.46780099906],[-71.60018,41.46773199906],[-71.600228,41.46766899906],[-71.600229,41.46759699906],[-71.600144,41.46739499906],[-71.600108,41.46734299906],[-71.600042,41.46727899906],[-71.599984,41.46724699906],[-71.599851,41.46719999906],[-71.599791,41.46716899906],[-71.599745,41.46712199906],[-71.599708,41.46707099906],[-71.599619,41.46697799906],[-71.599489,41.46688599906],[-71.599403,41.46685299906],[-71.599224,41.46680799906],[-71.599174,41.46675499906],[-71.599168,41.46667499906],[-71.599129,41.46647999906],[-71.599098,41.46640299906],[-71.599059,41.46632799906],[-71.599008,41.46625599906],[-71.598939,41.46619899906],[-71.598868,41.46615899906],[-71.598799,41.46610799906],[-71.598775,41.46603999906],[-71.598782,41.46596099906],[-71.598803,41.46589899906],[-71.598798,41.46583699906],[-71.598746,41.46578499906],[-71.598606,41.46572799906],[-71.59855,41.46568599906],[-71.598513,41.46561999906],[-71.598483,41.46547499906],[-71.59844,41.46537099906],[-71.598404,41.46529699906],[-71.598296,41.46517199906],[-71.598273,41.46511299906],[-71.598232,41.46491899906],[-71.598221,41.46484099906],[-71.598212,41.46471799906],[-71.598197,41.46466299906],[-71.598122,41.46464799906],[-71.598033,41.46464799906],[-71.597943,41.46463499906],[-71.597888,41.46458099906],[-71.597887,41.46450999906],[-71.597987,41.46438599906],[-71.598006,41.46432899906],[-71.598009,41.46426899906],[-71.597991,41.46423199906],[-71.59791,41.46425199906],[-71.597836,41.46429299906],[-71.597742,41.46429399906],[-71.597658,41.46426299906],[-71.597593,41.46421699906],[-71.597604,41.46415099906],[-71.597639,41.46409799906],[-71.597661,41.46403599906],[-71.597673,41.46385599906],[-71.59764,41.46380399906],[-71.597577,41.46375699906],[-71.597537,41.46370299906],[-71.597546,41.46365299906],[-71.597618,41.46363399906],[-71.597696,41.46363599906],[-71.597787,41.46364399906],[-71.59786,41.46363399906],[-71.597921,41.46358999906],[-71.597934,41.46351299906],[-71.597937,41.46344599906],[-71.597946,41.46338699906],[-71.597946,41.46331999906],[-71.597913,41.46328999906],[-71.59784,41.46329899906],[-71.597757,41.46332099906],[-71.597689,41.46329299906],[-71.597658,41.46323699906],[-71.597631,41.46317099906],[-71.597573,41.46313799906],[-71.59752,41.46309899906],[-71.597525,41.46304099906],[-71.597591,41.46299799906],[-71.597668,41.46298399906],[-71.597744,41.46296399906],[-71.597799,41.46292499906],[-71.597832,41.46287399906],[-71.597843,41.46280399906],[-71.597797,41.46275899906],[-71.597711,41.46274399906],[-71.597642,41.46272199906],[-71.597551,41.46259199906],[-71.597517,41.46252599906],[-71.59749,41.46238799906],[-71.597485,41.46227299906],[-71.597417,41.46216899906],[-71.597378,41.46211999906],[-71.597308,41.46210899906],[-71.597236,41.46212099906],[-71.597152,41.46212499906],[-71.597037,41.46207299906],[-71.596993,41.46204499906],[-71.596952,41.46201699906],[-71.596897,41.46197999906],[-71.59687,41.46191399906],[-71.596835,41.46185899906],[-71.596814,41.46179899906],[-71.59682,41.46173099906],[-71.596873,41.46159499906],[-71.596892,41.46152599906],[-71.596917,41.46138899906],[-71.596941,41.46132799906],[-71.596984,41.46125799906],[-71.59719,41.46099799906],[-71.597252,41.46093199906],[-71.597314,41.46087699906],[-71.597439,41.46078399906],[-71.597509,41.46073899906],[-71.597583,41.46070199906],[-71.597737,41.46064199906],[-71.597806,41.46060699906],[-71.597929,41.46053599906],[-71.597976,41.46049099906],[-71.597998,41.46043299906],[-71.597997,41.46037499906],[-71.597979,41.46031099906],[-71.598027,41.46026099906],[-71.598078,41.46019299906],[-71.598109,41.46007999906],[-71.598139,41.46004799906],[-71.598212,41.46002899906],[-71.59829,41.45999699906],[-71.598435,41.45991399906],[-71.5985,41.45986699906],[-71.598548,41.45981999906],[-71.598568,41.45974399906],[-71.598555,41.45968799906],[-71.598528,41.45963599906],[-71.598388,41.45955999906],[-71.598402,41.45949799906],[-71.598452,41.45945099906],[-71.598499,41.45939699906],[-71.59851,41.45932799906],[-71.598487,41.45926599906],[-71.598416,41.45914699906],[-71.59839,41.45907699906],[-71.598384,41.45901199906],[-71.598393,41.45882799906],[-71.598416,41.45861099906],[-71.598453,41.45848999906],[-71.598586,41.45834299906],[-71.598626,41.45826999906],[-71.598647,41.45821699906],[-71.598656,41.45814699906],[-71.598627,41.45809299906],[-71.598628,41.45804199906],[-71.598688,41.45799499906],[-71.598777,41.45797599906],[-71.598847,41.45794499906],[-71.598918,41.45789199906],[-71.59899,41.45785399906],[-71.599075,41.45781799906],[-71.599152,41.45777799906],[-71.599215,41.45772999906],[-71.599364,41.45758199906],[-71.599444,41.45755399906],[-71.599597,41.45759299906],[-71.599694,41.45758199906],[-71.599762,41.45754799906],[-71.599828,41.45749099906],[-71.599911,41.45736599906],[-71.599956,41.45731699906],[-71.600015,41.45726299906],[-71.600076,41.45719699906],[-71.600148,41.45713599906],[-71.600294,41.45704199906],[-71.600363,41.45701199906],[-71.600441,41.45698899906],[-71.600534,41.45697499906],[-71.600706,41.45697899906],[-71.600806,41.45696499906],[-71.600881,41.45691399906],[-71.600894,41.45684199906],[-71.600868,41.45679099906],[-71.600849,41.45673899906],[-71.60088,41.45667399906],[-71.600933,41.45660899906],[-71.600986,41.45656799906],[-71.601103,41.45656799906],[-71.601197,41.45651499906],[-71.601204,41.45640799906],[-71.601178,41.45635699906],[-71.601198,41.45628499906],[-71.601257,41.45625299906],[-71.601364,41.45626599906],[-71.601415,41.45621799906],[-71.601481,41.45618699906],[-71.601563,41.45620299906],[-71.601617,41.45624499906],[-71.60167,41.45629699906],[-71.601762,41.45630499906],[-71.602106,41.45607399906],[-71.602149,41.45606899906],[-71.602209,41.45612999906],[-71.602242,41.45618999906],[-71.602255,41.45625099906],[-71.60226,41.45632399906],[-71.602294,41.45636999906],[-71.602368,41.45639799906],[-71.602462,41.45640499906],[-71.602547,41.45635999906],[-71.602605,41.45631599906],[-71.602665,41.45626199906],[-71.602718,41.45619199906],[-71.60276,41.45611399906],[-71.602782,41.45604499906],[-71.602784,41.45597999906],[-71.602765,41.45591299906],[-71.602718,41.45584899906],[-71.602668,41.45579699906],[-71.602657,41.45571999906],[-71.602682,41.45566499906],[-71.602733,41.45561599906],[-71.602813,41.45559899906],[-71.602887,41.45561999906],[-71.602994,41.45571099906],[-71.603065,41.45570999906],[-71.603158,41.45568099906],[-71.603245,41.45564299906],[-71.603358,41.45552599906],[-71.60341,41.45548299906],[-71.603477,41.45544999906],[-71.60357,41.45544199906],[-71.60363,41.45540699906],[-71.603713,41.45537799906],[-71.603882,41.45532799906],[-71.604048,41.45525699906],[-71.604415,41.45506599906],[-71.604481,41.45502499906],[-71.604521,41.45497199906],[-71.604588,41.45483199906],[-71.604635,41.45476199906],[-71.604692,41.45469799906],[-71.604729,41.45463699906],[-71.604741,41.45450599906],[-71.604788,41.45437599906],[-71.604834,41.45430999906],[-71.604941,41.45418299906],[-71.605033,41.45403799906],[-71.605109,41.45385699906],[-71.605142,41.45380399906],[-71.605182,41.45375499906],[-71.605247,41.45369599906],[-71.605318,41.45364599906],[-71.605414,41.45362899906],[-71.605484,41.45364999906],[-71.605545,41.45368499906],[-71.605629,41.45372499906],[-71.605705,41.45372099906],[-71.605755,41.45367099906],[-71.605803,41.45361099906],[-71.605871,41.45357799906],[-71.606052,41.45352899906],[-71.606137,41.45351499906],[-71.606238,41.45352899906],[-71.60631,41.45354399906],[-71.606414,41.45354699906],[-71.606499,41.45352299906],[-71.606577,41.45347999906],[-71.606642,41.45342599906],[-71.606651,41.45338799906],[-71.606606,41.45332899906],[-71.606547,41.45327799906],[-71.606528,41.45322199906],[-71.606547,41.45315799906],[-71.606582,41.45309799906],[-71.606622,41.45305199906],[-71.606674,41.45304599906],[-71.606725,41.45309799906],[-71.606748,41.45315199906],[-71.60679,41.45321099906],[-71.60685,41.45321499906],[-71.606911,41.45317699906],[-71.606991,41.45304499906],[-71.607037,41.45297899906],[-71.607083,41.45292299906],[-71.607128,41.45287699906],[-71.607146,41.45282999906],[-71.607121,41.45276499906],[-71.607069,41.45271899906],[-71.607097,41.45266199906],[-71.60716,41.45261699906],[-71.607221,41.45259399906],[-71.607263,41.45254199906],[-71.607325,41.45251499906],[-71.607418,41.45252899906],[-71.607483,41.45255399906],[-71.607523,41.45260399906],[-71.607536,41.45266299906],[-71.607544,41.45280699906],[-71.607574,41.45286399906],[-71.607653,41.45289299906],[-71.60773,41.45288299906],[-71.607817,41.45285099906],[-71.607948,41.45279599906],[-71.608011,41.45276499906],[-71.608077,41.45272199906],[-71.608141,41.45268699906],[-71.608228,41.45267099906],[-71.608325,41.45266599906],[-71.608402,41.45263399906],[-71.608452,41.45257999906],[-71.608498,41.45251799906],[-71.608552,41.45245699906],[-71.60862,41.45240399906],[-71.608867,41.45227199906],[-71.608873,41.45225699906],[-71.608912,41.45222699906],[-71.608821,41.45217299906],[-71.608671,41.45209699906],[-71.608609,41.45205799906],[-71.608545,41.45199299906],[-71.608493,41.45192399906],[-71.608433,41.45186999906],[-71.608363,41.45184599906],[-71.60828,41.45186299906],[-71.608191,41.45186499906],[-71.608138,41.45182499906],[-71.608135,41.45176899906],[-71.608162,41.45170999906],[-71.60817,41.45164699906],[-71.60809,41.45154099906],[-71.608097,41.45148799906],[-71.608212,41.45137599906],[-71.608238,41.45130399906],[-71.6082,41.45124099906],[-71.608115,41.45119799906],[-71.608026,41.45119399906],[-71.60796,41.45124299906],[-71.607865,41.45136199906],[-71.607794,41.45140899906],[-71.607725,41.45139599906],[-71.607692,41.45133499906],[-71.607673,41.45126799906],[-71.607639,41.45120599906],[-71.607576,41.45115799906],[-71.607501,41.45118899906],[-71.607444,41.45122399906],[-71.60736,41.45122799906],[-71.607344,41.45118399906],[-71.607342,41.45111399906],[-71.607298,41.45105999906],[-71.607217,41.45101399906],[-71.607136,41.45100499906],[-71.607079,41.45103799906],[-71.60704,41.45109599906],[-71.607022,41.45116499906],[-71.60699,41.45122699906],[-71.606936,41.45125299906],[-71.606874,41.45123499906],[-71.606794,41.45120599906],[-71.60668,41.45126799906],[-71.606592,41.45126999906],[-71.606547,41.45121699906],[-71.606562,41.45116499906],[-71.606607,41.45111899906],[-71.606645,41.45106599906],[-71.606651,41.45100899906],[-71.606605,41.45097399906],[-71.606548,41.45097799906],[-71.6065,41.45101899906],[-71.606456,41.45106499906],[-71.606371,41.45117099906],[-71.606298,41.45120399906],[-71.606232,41.45118099906],[-71.606098,41.45111399906],[-71.606047,41.45107099906],[-71.606041,41.45101599906],[-71.606055,41.45088999906],[-71.606023,41.45083499906],[-71.605954,41.45080199906],[-71.605875,41.45079899906],[-71.605805,41.45083299906],[-71.605736,41.45088399906],[-71.605657,41.45091999906],[-71.605586,41.45091799906],[-71.605533,41.45085999906],[-71.605531,41.45080099906],[-71.605564,41.45074099906],[-71.605618,41.45068399906],[-71.605665,41.45062099906],[-71.605673,41.45055499906],[-71.605646,41.45051199906],[-71.605566,41.45053099906],[-71.605444,41.45060499906],[-71.605374,41.45061699906],[-71.605341,41.45058299906],[-71.605337,41.45046199906],[-71.605315,41.45040299906],[-71.605257,41.45036999906],[-71.605182,41.45037299906],[-71.605102,41.45039499906],[-71.605017,41.45042999906],[-71.604946,41.45047599906],[-71.604887,41.45050699906],[-71.604838,41.45051099906],[-71.604801,41.45045199906],[-71.604769,41.45038899906],[-71.604757,41.45031799906],[-71.604748,41.45016699906],[-71.604691,41.45012999906],[-71.604601,41.45010599906],[-71.604404,41.45013599906],[-71.60431,41.45011499906],[-71.604252,41.45007199906],[-71.604251,41.45002399906],[-71.604298,41.44997399906],[-71.604366,41.44992399906],[-71.604419,41.44986899906],[-71.604418,41.44981299906],[-71.604357,41.44976199906],[-71.604279,41.44974099906],[-71.604198,41.44977599906],[-71.604186,41.44983599906],[-71.6042,41.44989699906],[-71.604181,41.44994299906],[-71.604119,41.44996199906],[-71.60393,41.44997299906],[-71.603832,41.44998499906],[-71.603749,41.45000199906],[-71.603694,41.44997999906],[-71.603684,41.44992299906],[-71.603701,41.44985699906],[-71.603784,41.44972499906],[-71.603791,41.44966699906],[-71.603742,41.44963099906],[-71.603667,41.44961799906],[-71.603606,41.44964099906],[-71.603538,41.44968799906],[-71.603459,41.44972299906],[-71.603381,41.44974999906],[-71.603303,41.44975199906],[-71.603236,41.44971099906],[-71.603203,41.44963799906],[-71.603187,41.44957699906],[-71.603157,41.44951999906],[-71.603106,41.44946899906],[-71.603045,41.44942699906],[-71.602981,41.44939199906],[-71.602892,41.44935299906],[-71.602799,41.44933199906],[-71.602696,41.44934699906],[-71.602634,41.44937699906],[-71.602572,41.44943899906],[-71.602557,41.44950299906],[-71.602582,41.44956099906],[-71.602611,41.44961199906],[-71.602588,41.44963399906],[-71.602419,41.44965899906],[-71.60227,41.44970199906],[-71.602113,41.44976299906],[-71.602045,41.44979799906],[-71.601986,41.44983999906],[-71.601936,41.44988799906],[-71.601805,41.45005799906],[-71.601759,41.45010799906],[-71.601693,41.45014899906],[-71.601604,41.45016099906],[-71.601518,41.45019699906],[-71.601425,41.45029299906],[-71.601346,41.45031999906],[-71.601283,41.45027799906],[-71.601191,41.45015799906],[-71.601148,41.45008599906],[-71.601128,41.45003399906],[-71.601095,41.44991799906],[-71.601072,41.44985999906],[-71.601038,41.44980499906],[-71.600979,41.44973499906],[-71.600907,41.44969399906],[-71.600807,41.44968299906],[-71.600717,41.44970399906],[-71.600651,41.44976399906],[-71.600637,41.44984099906],[-71.600659,41.44990399906],[-71.600723,41.44995999906],[-71.600759,41.45001999906],[-71.600701,41.45006999906],[-71.600633,41.45009299906],[-71.600479,41.45013199906],[-71.600336,41.45017899906],[-71.600239,41.45018199906],[-71.600173,41.45015299906],[-71.600157,41.45008799906],[-71.600201,41.45002699906],[-71.600218,41.44996099906],[-71.600176,41.44991499906],[-71.600099,41.44990399906],[-71.600018,41.44992699906],[-71.599931,41.44996299906],[-71.599836,41.44998799906],[-71.599733,41.44999099906],[-71.59966,41.44998299906],[-71.599566,41.44995199906],[-71.599519,41.44990899906],[-71.599517,41.44984099906],[-71.599575,41.44972799906],[-71.599548,41.44969199906],[-71.599468,41.44967899906],[-71.599399,41.44969599906],[-71.599303,41.44970399906],[-71.59921,41.44967599906],[-71.599145,41.44962699906],[-71.599025,41.44951899906],[-71.598946,41.44949799906],[-71.598857,41.44950799906],[-71.598769,41.44952899906],[-71.59868,41.44954099906],[-71.59859,41.44956899906],[-71.598534,41.44960599906],[-71.598474,41.44963699906],[-71.598403,41.44965099906],[-71.598324,41.44964099906],[-71.598242,41.44961999906],[-71.598171,41.44959599906],[-71.598104,41.44954199906],[-71.598088,41.44948099906],[-71.598131,41.44944399906],[-71.598228,41.44943099906],[-71.598304,41.44941499906],[-71.598368,41.44938499906],[-71.598434,41.44932699906],[-71.598474,41.44926299906],[-71.598467,41.44920499906],[-71.598391,41.44915899906],[-71.598262,41.44910599906],[-71.598193,41.44908799906],[-71.598119,41.44907599906],[-71.598017,41.44904999906],[-71.597951,41.44899999906],[-71.597932,41.44892499906],[-71.597936,41.44886999906],[-71.598039,41.44869499906],[-71.598051,41.44862299906],[-71.597992,41.44856999906],[-71.597916,41.44855099906],[-71.597824,41.44857499906],[-71.597753,41.44859999906],[-71.597683,41.44861799906],[-71.597582,41.44861799906],[-71.5975,41.44857899906],[-71.597368,41.44848999906],[-71.597295,41.44847399906],[-71.597217,41.44845199906],[-71.597189,41.44841699906],[-71.597192,41.44835099906],[-71.597217,41.44828999906],[-71.597254,41.44822199906],[-71.597272,41.44816599906],[-71.597275,41.44803999906],[-71.597261,41.44797499906],[-71.597215,41.44790599906],[-71.597151,41.44784899906],[-71.59709,41.44782999906],[-71.596982,41.44791799906],[-71.596904,41.44792399906],[-71.596732,41.44787599906],[-71.596646,41.44784399906],[-71.596582,41.44780199906],[-71.596565,41.44775199906],[-71.596567,41.44769599906],[-71.596589,41.44764099906],[-71.596578,41.44757899906],[-71.596515,41.44751599906],[-71.596437,41.44747899906],[-71.596366,41.44748699906],[-71.596287,41.44751999906],[-71.596202,41.44751699906],[-71.596128,41.44747299906],[-71.59607,41.44741099906],[-71.596042,41.44734699906],[-71.596053,41.44727199906],[-71.596112,41.44724099906],[-71.596174,41.44719499906],[-71.59621,41.44712799906],[-71.596233,41.44705299906],[-71.596237,41.44688099906],[-71.59622,41.44679899906],[-71.596179,41.44674899906],[-71.596106,41.44673699906],[-71.596012,41.44673599906],[-71.595919,41.44671499906],[-71.595841,41.44667399906],[-71.595811,41.44662299906],[-71.595813,41.44654999906],[-71.59579,41.44647999906],[-71.595719,41.44644899906],[-71.595558,41.44649499906],[-71.595465,41.44648699906],[-71.59537,41.44644999906],[-71.595305,41.44639599906],[-71.595267,41.44632599906],[-71.595232,41.44628799906],[-71.595216,41.44626999906],[-71.595141,41.44622499906],[-71.59701,41.44094499906],[-71.597611,41.43928699906],[-71.597748,41.43891199906],[-71.597803,41.43875799906],[-71.597867,41.43857499906],[-71.599218,41.43485199906],[-71.599564,41.43389699906],[-71.599767,41.43333799906],[-71.599927,41.43289699906],[-71.600087,41.43249399906],[-71.600006,41.43250699906],[-71.599808,41.43252899906],[-71.599403,41.43255599906],[-71.599236,41.43257899906],[-71.599091,41.43259399906],[-71.598946,41.43262099906],[-71.598419,41.43275499906],[-71.598183,41.43279999906],[-71.598099,41.43281199906],[-71.598,41.43281599906],[-71.597954,41.43281199906],[-71.597885,41.43281199906],[-71.597763,41.43279999906],[-71.597511,41.43275499906],[-71.596519,41.43256399906],[-71.595596,41.43239199906],[-71.593674,41.43202199906],[-71.593048,41.43188899906],[-71.591881,41.43166399906],[-71.591665,41.43161299906],[-71.591133,41.43148799906],[-71.590492,41.43135799906],[-71.589691,41.43120999906],[-71.588554,41.43098099906],[-71.588043,41.43086999906],[-71.587822,41.43083599906],[-71.58757,41.43078999906],[-71.58744,41.43077099906],[-71.587349,41.43075199906],[-71.587166,41.43072499906],[-71.587021,41.43071699906],[-71.586838,41.43071699906],[-71.586304,41.43075199906],[-71.585976,41.43076299906],[-71.585785,41.43076299906],[-71.585617,41.43075599906],[-71.585533,41.43074799906],[-71.585243,41.43069099906],[-71.584679,41.43057299906],[-71.583977,41.43037399906],[-71.583214,41.43012999906],[-71.582947,41.43005799906],[-71.582863,41.43004599906],[-71.582664,41.43001599906],[-71.582359,41.42997699906],[-71.582069,41.42992799906],[-71.58139,41.42974499906],[-71.581139,41.42969099906],[-71.580307,41.42953399906],[-71.580177,41.42951599906],[-71.579979,41.42944699906],[-71.579109,41.42916099906],[-71.578163,41.42890899906],[-71.576553,41.42854699906],[-71.576431,41.42852399906],[-71.576119,41.42845299906],[-71.575966,41.42842099906],[-71.575752,41.42838699906],[-71.575554,41.42837099906],[-71.575302,41.42836399906],[-71.575035,41.42837099906],[-71.57489,41.42838299906],[-71.574501,41.42840599906],[-71.574287,41.42840999906],[-71.574142,41.42840999906],[-71.573868,41.42840199906],[-71.573715,41.42839399906],[-71.57325,41.42838299906],[-71.573204,41.42837899906],[-71.572479,41.42835999906],[-71.572212,41.42834499906],[-71.571968,41.42834099906],[-71.571518,41.42835599906],[-71.571404,41.42836399906],[-71.571274,41.42837899906],[-71.571022,41.42842499906],[-71.570923,41.42844799906],[-71.570831,41.42847399906],[-71.570732,41.42849699906],[-71.570198,41.42866099906],[-71.569107,41.42904999906],[-71.568916,41.42913399906],[-71.568817,41.42916899906],[-71.568726,41.42919199906],[-71.568459,41.42923399906],[-71.568379,41.42925099906],[-71.568253,41.42925999906],[-71.568184,41.42925999906],[-71.568008,41.42924899906],[-71.567902,41.42923399906],[-71.56768,41.42918799906],[-71.567299,41.42909199906],[-71.567017,41.42903899906],[-71.565826,41.42886699906],[-71.565163,41.42877999906],[-71.564445,41.42870299906],[-71.563705,41.42864199906],[-71.56308,41.42858099906],[-71.561829,41.42844799906],[-71.559883,41.42821899906],[-71.558815,41.42809699906],[-71.558795,41.42809399906],[-71.558714,41.42838499906],[-71.558503,41.42897699906],[-71.558044,41.43012999906],[-71.557687,41.43102599906],[-71.557427,41.43164399906],[-71.557205,41.43212899906],[-71.556969,41.43266699906],[-71.556877,41.43290699906],[-71.556862,41.43297199906],[-71.556839,41.43303299906],[-71.556793,41.43318599906],[-71.55677,41.43330099906],[-71.556717,41.43357799906],[-71.556694,41.43373499906],[-71.556496,41.43471099906],[-71.556335,41.43540599906],[-71.556177,41.43614999906],[-71.555997,41.43718299906],[-71.555893,41.43782399906],[-71.555847,41.43814799906],[-71.55584,41.43827799906],[-71.555836,41.43845999906],[-71.555817,41.43935399906],[-71.555809,41.43942999906],[-71.555756,41.44010599906],[-71.555607,41.44160699906],[-71.555603,41.44164299906],[-71.555549,41.44281699906],[-71.555504,41.44378699906],[-71.555488,41.44440199906],[-71.555481,41.44464899906],[-71.555443,41.44580499906],[-71.555435,41.44584299906],[-71.555435,41.44586899906],[-71.55542,41.44605999906],[-71.555414,41.44610799906],[-71.555396,41.44623799906],[-71.555382,41.44634199906],[-71.555156,41.44750599906],[-71.555099,41.44779999906],[-71.555084,41.44791799906],[-71.555061,41.44803199906],[-71.555023,41.44840199906],[-71.555019,41.44845899906],[-71.555,41.44873399906],[-71.555,41.44884099906],[-71.554993,41.44894799906],[-71.554993,41.44969599906],[-71.554985,41.45069099906],[-71.554985,41.45220599906],[-71.55498,41.45287299906],[-71.55498,41.45289299906],[-71.554977,41.45350599906],[-71.554955,41.45374699906],[-71.554939,41.45402499906],[-71.554832,41.45473099906],[-71.554802,41.45514299906],[-71.554802,41.45552799906],[-71.554817,41.45569199906],[-71.55484,41.45585599906],[-71.554871,41.45602399906],[-71.555504,41.46065499906],[-71.555519,41.46085399906],[-71.555519,41.46094899906],[-71.555504,41.46113599906],[-71.555489,41.46122399906],[-71.555466,41.46130399906],[-71.555397,41.46149799906],[-71.555351,41.46160499906],[-71.555191,41.46193299906],[-71.55513,41.46203999906],[-71.554983,41.46231799906],[-71.554771,41.46271899906],[-71.554657,41.46295499906],[-71.554606,41.46310199906],[-71.554588,41.46327199906],[-71.554581,41.46333699906],[-71.554558,41.46377599906],[-71.554489,41.46477499906],[-71.554438,41.46542699906],[-71.554428,41.46572099906],[-71.554428,41.46578999906],[-71.554413,41.46597299906],[-71.554367,41.46618699906],[-71.554321,41.46633499906],[-71.554295,41.46639999906],[-71.554192,41.46666299906],[-71.554146,41.46676599906],[-71.554108,41.46686899906],[-71.554077,41.46697199906],[-71.554062,41.46705199906],[-71.554047,41.46721599906],[-71.554047,41.46731199906],[-71.554049,41.46734299906],[-71.554054,41.46744199906],[-71.5541,41.46772399906],[-71.554115,41.46784599906],[-71.554153,41.46816599906],[-71.554161,41.46824299906],[-71.554153,41.46847899906],[-71.554016,41.46973799906],[-71.55397,41.47032499906],[-71.553963,41.47053099906],[-71.553963,41.47071799906],[-71.553996,41.47092799906],[-71.554019,41.47102199906],[-71.554042,41.47110399906],[-71.554065,41.47118199906],[-71.554104,41.47126699906],[-71.554153,41.47136299906],[-71.554199,41.47144299906],[-71.554266,41.47155699906],[-71.554355,41.47167399906],[-71.554619,41.47201899906],[-71.554665,41.47209899906],[-71.554703,41.47217899906],[-71.554733,41.47225599906],[-71.55475,41.47231499906],[-71.554756,41.47233599906],[-71.554787,41.47251899906],[-71.554787,41.47270599906],[-71.554764,41.47289299906],[-71.554694,41.47327799906],[-71.554687,41.47331599906],[-71.554565,41.47380099906],[-71.554407,41.47426999906],[-71.55378,41.47596399906],[-71.553726,41.47608199906],[-71.55368,41.47619999906],[-71.553604,41.47637199906],[-71.552498,41.47839699906],[-71.552353,41.47865299906],[-71.55217,41.47898099906],[-71.552032,41.47919499906],[-71.551949,41.47930899906],[-71.551857,41.47941999906],[-71.551781,41.47952299906],[-71.551506,41.47985099906],[-71.55127,41.48011399906],[-71.551117,41.48029699906],[-71.550926,41.48054499906],[-71.550827,41.48070099906],[-71.550659,41.48107099906],[-71.550621,41.48117399906],[-71.550545,41.48142599906],[-71.550499,41.48155199906],[-71.550377,41.48177299906],[-71.550308,41.48187999906],[-71.550251,41.48196799906],[-71.550182,41.48206999906],[-71.550117,41.48214699906],[-71.551083,41.48262399906],[-71.551023,41.48268599906],[-71.550896,41.48269999906],[-71.550807,41.48272199906],[-71.550731,41.48275399906],[-71.550688,41.48280699906],[-71.550642,41.48287399906],[-71.550615,41.48292699906],[-71.550581,41.48307899906],[-71.550553,41.48313899906],[-71.550489,41.48318399906],[-71.550335,41.48318799906],[-71.550254,41.48320699906],[-71.550174,41.48323299906],[-71.550115,41.48328099906],[-71.549933,41.48348599906],[-71.549898,41.48353599906],[-71.549833,41.48364899906],[-71.549811,41.48370399906],[-71.549805,41.48375899906],[-71.549812,41.48391499906],[-71.549853,41.48406299906],[-71.549857,41.48412799906],[-71.549837,41.48419899906],[-71.549786,41.48424099906],[-71.549703,41.48427199906],[-71.549633,41.48428999906],[-71.549566,41.48431299906],[-71.549487,41.48436599906],[-71.549417,41.48442499906],[-71.549363,41.48447799906],[-71.549358,41.48459199906],[-71.549316,41.48464899906],[-71.549233,41.48468099906],[-71.549133,41.48476899906],[-71.549034,41.48486999906],[-71.548993,41.48491799906],[-71.548959,41.48496899906],[-71.548932,41.48501999906],[-71.548878,41.48514799906],[-71.54884,41.48519999906],[-71.548723,41.48530099906],[-71.548677,41.48534599906],[-71.548649,41.48540699906],[-71.548652,41.48566299906],[-71.548632,41.48571499906],[-71.548563,41.48576799906],[-71.548516,41.48580999906],[-71.54848,41.48585899906],[-71.548419,41.48602599906],[-71.548378,41.48621299906],[-71.54835,41.48627499906],[-71.548222,41.48648799906],[-71.548129,41.48662299906],[-71.548083,41.48668099906],[-71.548032,41.48673599906],[-71.547913,41.48683799906],[-71.547846,41.48688399906],[-71.547767,41.48692499906],[-71.547683,41.48695999906],[-71.547603,41.48698499906],[-71.547524,41.48699599906],[-71.547444,41.48698799906],[-71.547365,41.48696399906],[-71.54729,41.48693199906],[-71.54715,41.48686399906],[-71.547049,41.48684099906],[-71.546963,41.48686599906],[-71.546923,41.48691699906],[-71.546925,41.48716399906],[-71.546895,41.48723699906],[-71.546857,41.48728299906],[-71.546814,41.48734799906],[-71.546805,41.48740999906],[-71.546768,41.48758699906],[-71.546775,41.48772399906],[-71.547168,41.48803599906],[-71.547008,41.48903699906],[-71.546537,41.48937799906],[-71.546433,41.49013799906],[-71.546031,41.49048699906],[-71.545575,41.49077099906],[-71.544862,41.49116199906],[-71.544481,41.49182499906],[-71.544398,41.49209199906],[-71.544269,41.49239199906],[-71.543964,41.49302399906],[-71.543961,41.49312499906],[-71.543989,41.49317599906],[-71.544063,41.49321299906],[-71.544153,41.49323399906],[-71.544238,41.49324099906],[-71.544329,41.49325899906],[-71.544397,41.49328799906],[-71.544463,41.49333399906],[-71.544527,41.49338499906],[-71.544576,41.49344399906],[-71.544591,41.49350799906],[-71.544533,41.49354199906],[-71.544462,41.49356399906],[-71.544398,41.49360099906],[-71.544353,41.49364999906],[-71.544308,41.49371699906],[-71.544196,41.49390299906],[-71.544171,41.49395999906],[-71.544163,41.49401499906],[-71.544248,41.49414899906],[-71.544278,41.49419599906],[-71.539998,41.49680899906],[-71.539797,41.49693199906],[-71.536164,41.49913399906],[-71.53558,41.49949299906],[-71.534854,41.49994599906],[-71.534225,41.50036999906],[-71.53381,41.50065799906],[-71.533573,41.50083399906],[-71.532969,41.50130299906],[-71.532592,41.50161699906],[-71.532153,41.50200499906],[-71.531467,41.50267299906],[-71.531373,41.50277799906],[-71.530738,41.50349499906],[-71.530528,41.50375199906],[-71.533654,41.50453699906],[-71.535954,41.50514699906],[-71.545034,41.50748099906],[-71.55702,41.51056199906],[-71.557099,41.51058199906],[-71.557964,41.51080899906],[-71.558243,41.51088499906],[-71.558922,41.51106599906],[-71.560058,41.51135899906],[-71.569122,41.51373799906],[-71.569939,41.51395199906],[-71.571309,41.51429799906],[-71.576385,41.51556499906],[-71.576748,41.51565399906],[-71.578657,41.51613199906],[-71.579988,41.51646399906],[-71.586982,41.51821299906],[-71.59051,41.51928799906],[-71.592394,41.51989199906],[-71.594252,41.52035199906],[-71.597275,41.52112999906],[-71.597723,41.52130499906],[-71.598276,41.52143199906],[-71.603376,41.52270599906],[-71.604211,41.52291999906],[-71.605076,41.52310799906],[-71.605082,41.52311599906],[-71.605139,41.52312099906],[-71.610926,41.52450299906],[-71.611305,41.52457899906],[-71.611927,41.52469999906],[-71.612629,41.52483699906],[-71.613042,41.52512099906]]]}}"}, +{"type": "blockgroup", "typeId": 513062, "areaId": 29441, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.558795,41.42809399906],[-71.558769,41.42808899906],[-71.558472,41.42805499906],[-71.5569,41.42784899906],[-71.555099,41.42759699906],[-71.553773,41.42741099906],[-71.553563,41.42738099906],[-71.553024,41.42730699906],[-71.552795,41.42727299906],[-71.552628,41.42725799906],[-71.552544,41.42724599906],[-71.552208,41.42721399906],[-71.552131,41.42720799906],[-71.551971,41.42720799906],[-71.55191,41.42721599906],[-71.551872,41.42721599906],[-71.551472,41.42724199906],[-71.549171,41.42739499906],[-71.547356,41.42750499906],[-71.547104,41.42750899906],[-71.546799,41.42754399906],[-71.546707,41.42756299906],[-71.546631,41.42757399906],[-71.546478,41.42760799906],[-71.546402,41.42763099906],[-71.546333,41.42765799906],[-71.546226,41.42771099906],[-71.546181,41.42773799906],[-71.546089,41.42780699906],[-71.545998,41.42789499906],[-71.545921,41.42798599906],[-71.545845,41.42809299906],[-71.545738,41.42828399906],[-71.545624,41.42850899906],[-71.545547,41.42864999906],[-71.545471,41.42877199906],[-71.545425,41.42882899906],[-71.545364,41.42889399906],[-71.545227,41.42901199906],[-71.545097,41.42910799906],[-71.545029,41.42915299906],[-71.544937,41.42920699906],[-71.544838,41.42925299906],[-71.544746,41.42930199906],[-71.544525,41.42939799906],[-71.543404,41.42985899906],[-71.542564,41.43016399906],[-71.542114,41.43034699906],[-71.540855,41.43093099906],[-71.540703,41.43100699906],[-71.540428,41.43113699906],[-71.540321,41.43117499906],[-71.540138,41.43122899906],[-71.539993,41.43125199906],[-71.539833,41.43126299906],[-71.538239,41.43129299906],[-71.535774,41.43134699906],[-71.535515,41.43137399906],[-71.535255,41.43144199906],[-71.534912,41.43160199906],[-71.534531,41.43184699906],[-71.534035,41.43213999906],[-71.533905,41.43220899906],[-71.533478,41.43249899906],[-71.532917,41.43294099906],[-71.532001,41.43364899906],[-71.530817,41.43455499906],[-71.530747,41.43459899906],[-71.53064,41.43465699906],[-71.530598,41.43466999906],[-71.530502,41.43468499906],[-71.530449,41.43469199906],[-71.530281,41.43467299906],[-71.53009,41.43461999906],[-71.529282,41.43435299906],[-71.527664,41.43383799906],[-71.525894,41.43326199906],[-71.525006,41.43300299906],[-71.52449,41.43285399906],[-71.524049,41.43271399906],[-71.523804,41.43263599906],[-71.523155,41.43245699906],[-71.522771,41.43234699906],[-71.522675,41.43231999906],[-71.522102,41.43213999906],[-71.520897,41.43179299906],[-71.520668,41.43172799906],[-71.519753,41.43144599906],[-71.519501,41.43137699906],[-71.517755,41.43088699906],[-71.517326,41.43073699906],[-71.517244,41.43086399906],[-71.516899,41.43139999906],[-71.516602,41.43183099906],[-71.516403,41.43214399906],[-71.516221,41.43244999906],[-71.516034,41.43270099906],[-71.515955,41.43279499906],[-71.515876,41.43287599906],[-71.516251,41.43304099906],[-71.516556,41.43318199906],[-71.516762,41.43333399906],[-71.516899,41.43352099906],[-71.517052,41.43383399906],[-71.517281,41.43435699906],[-71.517555,41.43492099906],[-71.518044,41.43599299906],[-71.518112,41.43612299906],[-71.518356,41.43666099906],[-71.518799,41.43761099906],[-71.518929,41.43785899906],[-71.519073,41.43815999906],[-71.519211,41.43846899906],[-71.519234,41.43851899906],[-71.51944,41.43889599906],[-71.519539,41.43905999906],[-71.519783,41.43937299906],[-71.520119,41.43968999906],[-71.520348,41.43989199906],[-71.520615,41.44011699906],[-71.520813,41.44027699906],[-71.521049,41.44050599906],[-71.521111,41.44059399906],[-71.521193,41.44078399906],[-71.521271,41.44096399906],[-71.521339,41.44112399906],[-71.521652,41.44176099906],[-71.521904,41.44222299906],[-71.522235,41.44287299906],[-71.522308,41.44301599906],[-71.522461,41.44329799906],[-71.522598,41.44358799906],[-71.523026,41.44440099906],[-71.523972,41.44630799906],[-71.524147,41.44663199906],[-71.524194,41.44670199906],[-71.524727,41.44750199906],[-71.525322,41.44833799906],[-71.525459,41.44852399906],[-71.525787,41.44901699906],[-71.526289,41.44976299906],[-71.526587,41.45020399906],[-71.52703,41.45085399906],[-71.527336,41.45130199906],[-71.527672,41.45189999906],[-71.527692,41.45193799906],[-71.527786,41.45210999906],[-71.527832,41.45220599906],[-71.527924,41.45248399906],[-71.527939,41.45256399906],[-71.527946,41.45259499906],[-71.527946,41.45265999906],[-71.527954,41.45272799906],[-71.528076,41.45330399906],[-71.528128,41.45357799906],[-71.528191,41.45402499906],[-71.528065,41.45413599906],[-71.527199,41.45463599906],[-71.525841,41.45536399906],[-71.52554,41.45553499906],[-71.523262,41.45682899906],[-71.522812,41.45707299906],[-71.522499,41.45724099906],[-71.521986,41.45752199906],[-71.521339,41.45787799906],[-71.520655,41.45827299906],[-71.520271,41.45849599906],[-71.520023,41.45864799906],[-71.520141,41.45866899906],[-71.520278,41.45868399906],[-71.521283,41.45888699906],[-71.52254,41.45912499906],[-71.524039,41.45949499906],[-71.52516,41.45976999906],[-71.526156,41.46000899906],[-71.526346,41.46005499906],[-71.527153,41.46015899906],[-71.527296,41.46015799906],[-71.527473,41.46015599906],[-71.528138,41.46016399906],[-71.528538,41.46011899906],[-71.528949,41.46002499906],[-71.52949,41.45994099906],[-71.530389,41.45979499906],[-71.531836,41.45949299906],[-71.533064,41.45925399906],[-71.533688,41.45916799906],[-71.533967,41.45914399906],[-71.534107,41.45913699906],[-71.534258,41.45913799906],[-71.534561,41.45914899906],[-71.537984,41.45940199906],[-71.540739,41.45962099906],[-71.542781,41.45975999906],[-71.543021,41.45979099906],[-71.543261,41.45981699906],[-71.543497,41.45985199906],[-71.543697,41.45989699906],[-71.543895,41.45994699906],[-71.54409,41.46000099906],[-71.544269,41.46005999906],[-71.544445,41.46012399906],[-71.544617,41.46019199906],[-71.544771,41.46026099906],[-71.544922,41.46033399906],[-71.545036,41.46039599906],[-71.545187,41.46047699906],[-71.545302,41.46054599906],[-71.545413,41.46061999906],[-71.545671,41.46082199906],[-71.545789,41.46093199906],[-71.545894,41.46103799906],[-71.545992,41.46114799906],[-71.546185,41.46138199906],[-71.546278,41.46150599906],[-71.54636,41.46163099906],[-71.54642,41.46174599906],[-71.546472,41.46186199906],[-71.546519,41.46198299906],[-71.546561,41.46211299906],[-71.546633,41.46237199906],[-71.546838,41.46331799906],[-71.546897,41.46359099906],[-71.547094,41.46431299906],[-71.548854,41.46691799906],[-71.548916,41.46700899906],[-71.550342,41.46917699906],[-71.550506,41.46942499906],[-71.550675,41.46963899906],[-71.550736,41.46971599906],[-71.553521,41.47324699906],[-71.553959,41.47384999906],[-71.55417,41.47406199906],[-71.554333,41.47419799906],[-71.554407,41.47426999906],[-71.554565,41.47380099906],[-71.554687,41.47331599906],[-71.554694,41.47327799906],[-71.554764,41.47289299906],[-71.554787,41.47270599906],[-71.554787,41.47251899906],[-71.554756,41.47233599906],[-71.55475,41.47231499906],[-71.554733,41.47225599906],[-71.554703,41.47217899906],[-71.554665,41.47209899906],[-71.554619,41.47201899906],[-71.554355,41.47167399906],[-71.554266,41.47155699906],[-71.554199,41.47144299906],[-71.554153,41.47136299906],[-71.554104,41.47126699906],[-71.554065,41.47118199906],[-71.554042,41.47110399906],[-71.554019,41.47102199906],[-71.553996,41.47092799906],[-71.553963,41.47071799906],[-71.553963,41.47053099906],[-71.55397,41.47032499906],[-71.554016,41.46973799906],[-71.554153,41.46847899906],[-71.554161,41.46824299906],[-71.554153,41.46816599906],[-71.554115,41.46784599906],[-71.5541,41.46772399906],[-71.554054,41.46744199906],[-71.554049,41.46734299906],[-71.554047,41.46731199906],[-71.554047,41.46721599906],[-71.554062,41.46705199906],[-71.554077,41.46697199906],[-71.554108,41.46686899906],[-71.554146,41.46676599906],[-71.554192,41.46666299906],[-71.554295,41.46639999906],[-71.554321,41.46633499906],[-71.554367,41.46618699906],[-71.554413,41.46597299906],[-71.554428,41.46578999906],[-71.554428,41.46572099906],[-71.554438,41.46542699906],[-71.554489,41.46477499906],[-71.554558,41.46377599906],[-71.554581,41.46333699906],[-71.554588,41.46327199906],[-71.554606,41.46310199906],[-71.554657,41.46295499906],[-71.554771,41.46271899906],[-71.554983,41.46231799906],[-71.55513,41.46203999906],[-71.555191,41.46193299906],[-71.555351,41.46160499906],[-71.555397,41.46149799906],[-71.555466,41.46130399906],[-71.555489,41.46122399906],[-71.555504,41.46113599906],[-71.555519,41.46094899906],[-71.555519,41.46085399906],[-71.555504,41.46065499906],[-71.554871,41.45602399906],[-71.55484,41.45585599906],[-71.554817,41.45569199906],[-71.554802,41.45552799906],[-71.554802,41.45514299906],[-71.554832,41.45473099906],[-71.554939,41.45402499906],[-71.554955,41.45374699906],[-71.554977,41.45350599906],[-71.55498,41.45289299906],[-71.55498,41.45287299906],[-71.554985,41.45220599906],[-71.554985,41.45069099906],[-71.554993,41.44969599906],[-71.554993,41.44894799906],[-71.555,41.44884099906],[-71.555,41.44873399906],[-71.555019,41.44845899906],[-71.555023,41.44840199906],[-71.555061,41.44803199906],[-71.555084,41.44791799906],[-71.555099,41.44779999906],[-71.555156,41.44750599906],[-71.555382,41.44634199906],[-71.555396,41.44623799906],[-71.555414,41.44610799906],[-71.55542,41.44605999906],[-71.555435,41.44586899906],[-71.555435,41.44584299906],[-71.555443,41.44580499906],[-71.555481,41.44464899906],[-71.555488,41.44440199906],[-71.555504,41.44378699906],[-71.555549,41.44281699906],[-71.555603,41.44164299906],[-71.555607,41.44160699906],[-71.555756,41.44010599906],[-71.555809,41.43942999906],[-71.555817,41.43935399906],[-71.555836,41.43845999906],[-71.55584,41.43827799906],[-71.555847,41.43814799906],[-71.555893,41.43782399906],[-71.555997,41.43718299906],[-71.556177,41.43614999906],[-71.556335,41.43540599906],[-71.556496,41.43471099906],[-71.556694,41.43373499906],[-71.556717,41.43357799906],[-71.55677,41.43330099906],[-71.556793,41.43318599906],[-71.556839,41.43303299906],[-71.556862,41.43297199906],[-71.556877,41.43290699906],[-71.556969,41.43266699906],[-71.557205,41.43212899906],[-71.557427,41.43164399906],[-71.557687,41.43102599906],[-71.558044,41.43012999906],[-71.558503,41.42897699906],[-71.558714,41.42838499906],[-71.558795,41.42809399906]]]}}"}, +{"type": "blockgroup", "typeId": 513063, "areaId": 29442, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.554407,41.47426999906],[-71.554333,41.47419799906],[-71.55417,41.47406199906],[-71.553959,41.47384999906],[-71.553521,41.47324699906],[-71.550736,41.46971599906],[-71.550675,41.46963899906],[-71.550506,41.46942499906],[-71.550342,41.46917699906],[-71.548916,41.46700899906],[-71.548854,41.46691799906],[-71.547094,41.46431299906],[-71.546897,41.46359099906],[-71.546838,41.46331799906],[-71.546633,41.46237199906],[-71.546561,41.46211299906],[-71.546519,41.46198299906],[-71.546472,41.46186199906],[-71.54642,41.46174599906],[-71.54636,41.46163099906],[-71.546278,41.46150599906],[-71.546185,41.46138199906],[-71.545992,41.46114799906],[-71.545894,41.46103799906],[-71.545789,41.46093199906],[-71.545671,41.46082199906],[-71.545413,41.46061999906],[-71.545302,41.46054599906],[-71.545187,41.46047699906],[-71.545036,41.46039599906],[-71.544922,41.46033399906],[-71.544771,41.46026099906],[-71.544617,41.46019199906],[-71.544445,41.46012399906],[-71.544269,41.46005999906],[-71.54409,41.46000099906],[-71.543895,41.45994699906],[-71.543697,41.45989699906],[-71.543497,41.45985199906],[-71.543261,41.45981699906],[-71.543021,41.45979099906],[-71.542781,41.45975999906],[-71.540739,41.45962099906],[-71.537984,41.45940199906],[-71.534561,41.45914899906],[-71.534258,41.45913799906],[-71.534107,41.45913699906],[-71.533967,41.45914399906],[-71.533688,41.45916799906],[-71.533064,41.45925399906],[-71.531836,41.45949299906],[-71.530389,41.45979499906],[-71.52949,41.45994099906],[-71.528949,41.46002499906],[-71.528538,41.46011899906],[-71.528138,41.46016399906],[-71.527473,41.46015599906],[-71.527296,41.46015799906],[-71.527153,41.46015899906],[-71.526346,41.46005499906],[-71.526156,41.46000899906],[-71.52516,41.45976999906],[-71.524039,41.45949499906],[-71.52254,41.45912499906],[-71.521283,41.45888699906],[-71.520278,41.45868399906],[-71.520141,41.45866899906],[-71.520023,41.45864799906],[-71.519547,41.45894599906],[-71.518982,41.45930099906],[-71.518479,41.45960999906],[-71.518318,41.45970899906],[-71.518082,41.45980099906],[-71.517967,41.45983899906],[-71.517761,41.45989599906],[-71.517433,41.45996099906],[-71.517143,41.46002599906],[-71.516777,41.46007899906],[-71.516502,41.46012499906],[-71.516014,41.46022399906],[-71.515678,41.46031199906],[-71.515587,41.46033899906],[-71.51502,41.46047999906],[-71.514946,41.46049899906],[-71.513885,41.46085699906],[-71.512939,41.46116599906],[-71.512321,41.46137199906],[-71.511673,41.46157799906],[-71.510483,41.46193699906],[-71.510307,41.46199399906],[-71.509422,41.46225699906],[-71.509811,41.46300899906],[-71.509995,41.46337499906],[-71.510185,41.46374499906],[-71.51078,41.46490499906],[-71.511047,41.46542599906],[-71.511154,41.46563299906],[-71.511364,41.46604699906],[-71.5114,41.46611799906],[-71.511589,41.46649199906],[-71.511986,41.46725799906],[-71.512039,41.46736899906],[-71.512131,41.46754099906],[-71.512138,41.46756399906],[-71.512444,41.46815899906],[-71.512688,41.46863899906],[-71.512848,41.46887199906],[-71.513184,41.46929599906],[-71.513614,41.46981599906],[-71.513855,41.47010799906],[-71.514097,41.47040199906],[-71.514511,41.47090499906],[-71.514529,41.47092699906],[-71.514923,41.47139399906],[-71.515195,41.47172599906],[-71.515271,41.47181799906],[-71.515533,41.47213699906],[-71.515541,41.47215299906],[-71.516803,41.47367699906],[-71.516875,41.47376299906],[-71.51721,41.47416899906],[-71.51754,41.47456699906],[-71.518576,41.47581199906],[-71.51973,41.47719999906],[-71.519958,41.47748199906],[-71.520103,41.47768799906],[-71.520218,41.47791699906],[-71.520325,41.47824499906],[-71.52047,41.47872899906],[-71.520538,41.47897299906],[-71.520699,41.47952999906],[-71.520897,41.48008399906],[-71.521467,41.48001599906],[-71.521942,41.47996999906],[-71.522252,41.47994799906],[-71.522598,41.47993899906],[-71.523064,41.47997299906],[-71.523613,41.48003799906],[-71.524254,41.48014099906],[-71.524972,41.48026299906],[-71.52552,41.48032799906],[-71.526207,41.48042499906],[-71.526436,41.48045699906],[-71.527153,41.48057599906],[-71.528229,41.48075499906],[-71.528923,41.48085399906],[-71.529358,41.48091099906],[-71.529999,41.48099899906],[-71.531136,41.48116699906],[-71.531545,41.48123399906],[-71.531708,41.48126199906],[-71.532402,41.48139199906],[-71.532822,41.48147199906],[-71.533546,41.48160199906],[-71.534188,41.48173099906],[-71.535689,41.48204699906],[-71.53606,41.48211699906],[-71.536401,41.48217199906],[-71.536473,41.48218399906],[-71.536707,41.48221399906],[-71.536846,41.48223999906],[-71.536957,41.48225499906],[-71.537747,41.48235099906],[-71.539883,41.48265099906],[-71.540337,41.48271199906],[-71.540571,41.48273599906],[-71.540755,41.48274999906],[-71.541129,41.48276999906],[-71.541527,41.48277899906],[-71.542206,41.48275899906],[-71.542358,41.48275199906],[-71.542794,41.48274999906],[-71.543129,41.48273799906],[-71.543478,41.48272399906],[-71.543758,41.48268899906],[-71.543945,41.48265599906],[-71.544203,41.48259799906],[-71.544477,41.48252699906],[-71.544748,41.48244399906],[-71.544944,41.48236699906],[-71.545146,41.48227299906],[-71.545502,41.48210499906],[-71.545763,41.48200199906],[-71.546014,41.48190899906],[-71.546256,41.48183299906],[-71.546538,41.48177199906],[-71.546857,41.48171899906],[-71.547157,41.48169299906],[-71.547332,41.48168599906],[-71.547696,41.48168099906],[-71.548089,41.48168799906],[-71.548439,41.48168599906],[-71.548599,41.48169699906],[-71.548752,41.48171199906],[-71.548897,41.48173099906],[-71.549171,41.48178899906],[-71.549492,41.48187299906],[-71.549644,41.48192599906],[-71.549812,41.48199799906],[-71.550095,41.48213599906],[-71.550117,41.48214699906],[-71.550182,41.48206999906],[-71.550251,41.48196799906],[-71.550308,41.48187999906],[-71.550377,41.48177299906],[-71.550499,41.48155199906],[-71.550545,41.48142599906],[-71.550621,41.48117399906],[-71.550659,41.48107099906],[-71.550827,41.48070099906],[-71.550926,41.48054499906],[-71.551117,41.48029699906],[-71.55127,41.48011399906],[-71.551506,41.47985099906],[-71.551781,41.47952299906],[-71.551857,41.47941999906],[-71.551949,41.47930899906],[-71.552032,41.47919499906],[-71.55217,41.47898099906],[-71.552353,41.47865299906],[-71.552498,41.47839699906],[-71.553604,41.47637199906],[-71.55368,41.47619999906],[-71.553726,41.47608199906],[-71.55378,41.47596399906],[-71.554407,41.47426999906]]]}}"}, +{"type": "blockgroup", "typeId": 514001, "areaId": 29443, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.551083,41.48262399906],[-71.550117,41.48214699906],[-71.550095,41.48213599906],[-71.549812,41.48199799906],[-71.549644,41.48192599906],[-71.549492,41.48187299906],[-71.549171,41.48178899906],[-71.548897,41.48173099906],[-71.548752,41.48171199906],[-71.548599,41.48169699906],[-71.548439,41.48168599906],[-71.548089,41.48168799906],[-71.547696,41.48168099906],[-71.547332,41.48168599906],[-71.547157,41.48169299906],[-71.546857,41.48171899906],[-71.546538,41.48177199906],[-71.546256,41.48183299906],[-71.546014,41.48190899906],[-71.545763,41.48200199906],[-71.545502,41.48210499906],[-71.545146,41.48227299906],[-71.544944,41.48236699906],[-71.544748,41.48244399906],[-71.544477,41.48252699906],[-71.544203,41.48259799906],[-71.543945,41.48265599906],[-71.543758,41.48268899906],[-71.543478,41.48272399906],[-71.543129,41.48273799906],[-71.542794,41.48274999906],[-71.542358,41.48275199906],[-71.542206,41.48275899906],[-71.541527,41.48277899906],[-71.541129,41.48276999906],[-71.540755,41.48274999906],[-71.540571,41.48273599906],[-71.540337,41.48271199906],[-71.539883,41.48265099906],[-71.537747,41.48235099906],[-71.536957,41.48225499906],[-71.536846,41.48223999906],[-71.536707,41.48221399906],[-71.536473,41.48218399906],[-71.536401,41.48217199906],[-71.53606,41.48211699906],[-71.535689,41.48204699906],[-71.534188,41.48173099906],[-71.533546,41.48160199906],[-71.532822,41.48147199906],[-71.532402,41.48139199906],[-71.531708,41.48126199906],[-71.531545,41.48123399906],[-71.531136,41.48116699906],[-71.529999,41.48099899906],[-71.529358,41.48091099906],[-71.528923,41.48085399906],[-71.528229,41.48075499906],[-71.527153,41.48057599906],[-71.526436,41.48045699906],[-71.526207,41.48042499906],[-71.52552,41.48032799906],[-71.524972,41.48026299906],[-71.524254,41.48014099906],[-71.523613,41.48003799906],[-71.523064,41.47997299906],[-71.522598,41.47993899906],[-71.522438,41.48033099906],[-71.522319,41.48066699906],[-71.522285,41.48076199906],[-71.522121,41.48126299906],[-71.521988,41.48166999906],[-71.521782,41.48224999906],[-71.521647,41.48268299906],[-71.521629,41.48274199906],[-71.521614,41.48280699906],[-71.5214,41.48341399906],[-71.521305,41.48366799906],[-71.521286,41.48371899906],[-71.521202,41.48395899906],[-71.521118,41.48422599906],[-71.521049,41.48444399906],[-71.521004,41.48456199906],[-71.520622,41.48566399906],[-71.520566,41.48576499906],[-71.52047,41.48610299906],[-71.520393,41.48630499906],[-71.520241,41.48670199906],[-71.520218,41.48674799906],[-71.520071,41.48714599906],[-71.519905,41.48759499906],[-71.519661,41.48829699906],[-71.519424,41.48895299906],[-71.519244,41.48943199906],[-71.518944,41.49023099906],[-71.518707,41.49087899906],[-71.518356,41.49186699906],[-71.518335,41.49193299906],[-71.518242,41.49222899906],[-71.517601,41.49409899906],[-71.51696,41.49579599906],[-71.51606,41.49824899906],[-71.51603,41.49832799906],[-71.515752,41.49907799906],[-71.515596,41.49949899906],[-71.515236,41.50047299906],[-71.515209,41.50054499906],[-71.515007,41.50110199906],[-71.514896,41.50134099906],[-71.51535,41.50146299906],[-71.5158,41.50155099906],[-71.515975,41.50157799906],[-71.516309,41.50163299906],[-71.516897,41.50173999906],[-71.517408,41.50180099906],[-71.517797,41.50183099906],[-71.518011,41.50185799906],[-71.518582,41.50194499906],[-71.518812,41.50197999906],[-71.519506,41.50212099906],[-71.520238,41.50224299906],[-71.521337,41.50240699906],[-71.522061,41.50249399906],[-71.522506,41.50254699906],[-71.523254,41.50264299906],[-71.524093,41.50275699906],[-71.525413,41.50296699906],[-71.525955,41.50306999906],[-71.526413,41.50311899906],[-71.526848,41.50313499906],[-71.527137,41.50317999906],[-71.527214,41.50320099906],[-71.527679,41.50330699906],[-71.527789,41.50335899906],[-71.528171,41.50343199906],[-71.529442,41.50367399906],[-71.529634,41.50367599906],[-71.529793,41.50368799906],[-71.530086,41.50372099906],[-71.53033,41.50373799906],[-71.530461,41.50374699906],[-71.530528,41.50375199906],[-71.530738,41.50349499906],[-71.531373,41.50277799906],[-71.531467,41.50267299906],[-71.532153,41.50200499906],[-71.532592,41.50161699906],[-71.532969,41.50130299906],[-71.533573,41.50083399906],[-71.53381,41.50065799906],[-71.534225,41.50036999906],[-71.534854,41.49994599906],[-71.53558,41.49949299906],[-71.536164,41.49913399906],[-71.539797,41.49693199906],[-71.539998,41.49680899906],[-71.544278,41.49419599906],[-71.544248,41.49414899906],[-71.544163,41.49401499906],[-71.544171,41.49395999906],[-71.544196,41.49390299906],[-71.544308,41.49371699906],[-71.544353,41.49364999906],[-71.544398,41.49360099906],[-71.544462,41.49356399906],[-71.544533,41.49354199906],[-71.544591,41.49350799906],[-71.544576,41.49344399906],[-71.544527,41.49338499906],[-71.544463,41.49333399906],[-71.544397,41.49328799906],[-71.544329,41.49325899906],[-71.544238,41.49324099906],[-71.544153,41.49323399906],[-71.544063,41.49321299906],[-71.543989,41.49317599906],[-71.543961,41.49312499906],[-71.543964,41.49302399906],[-71.544269,41.49239199906],[-71.544398,41.49209199906],[-71.544481,41.49182499906],[-71.544862,41.49116199906],[-71.545575,41.49077099906],[-71.546031,41.49048699906],[-71.546433,41.49013799906],[-71.546537,41.48937799906],[-71.547008,41.48903699906],[-71.547168,41.48803599906],[-71.546775,41.48772399906],[-71.546768,41.48758699906],[-71.546805,41.48740999906],[-71.546814,41.48734799906],[-71.546857,41.48728299906],[-71.546895,41.48723699906],[-71.546925,41.48716399906],[-71.546923,41.48691699906],[-71.546963,41.48686599906],[-71.547049,41.48684099906],[-71.54715,41.48686399906],[-71.54729,41.48693199906],[-71.547365,41.48696399906],[-71.547444,41.48698799906],[-71.547524,41.48699599906],[-71.547603,41.48698499906],[-71.547683,41.48695999906],[-71.547767,41.48692499906],[-71.547846,41.48688399906],[-71.547913,41.48683799906],[-71.548032,41.48673599906],[-71.548083,41.48668099906],[-71.548129,41.48662299906],[-71.548222,41.48648799906],[-71.54835,41.48627499906],[-71.548378,41.48621299906],[-71.548419,41.48602599906],[-71.54848,41.48585899906],[-71.548516,41.48580999906],[-71.548563,41.48576799906],[-71.548632,41.48571499906],[-71.548652,41.48566299906],[-71.548649,41.48540699906],[-71.548677,41.48534599906],[-71.548723,41.48530099906],[-71.54884,41.48519999906],[-71.548878,41.48514799906],[-71.548932,41.48501999906],[-71.548959,41.48496899906],[-71.548993,41.48491799906],[-71.549034,41.48486999906],[-71.549133,41.48476899906],[-71.549233,41.48468099906],[-71.549316,41.48464899906],[-71.549358,41.48459199906],[-71.549363,41.48447799906],[-71.549417,41.48442499906],[-71.549487,41.48436599906],[-71.549566,41.48431299906],[-71.549633,41.48428999906],[-71.549703,41.48427199906],[-71.549786,41.48424099906],[-71.549837,41.48419899906],[-71.549857,41.48412799906],[-71.549853,41.48406299906],[-71.549812,41.48391499906],[-71.549805,41.48375899906],[-71.549811,41.48370399906],[-71.549833,41.48364899906],[-71.549898,41.48353599906],[-71.549933,41.48348599906],[-71.550115,41.48328099906],[-71.550174,41.48323299906],[-71.550254,41.48320699906],[-71.550335,41.48318799906],[-71.550489,41.48318399906],[-71.550553,41.48313899906],[-71.550581,41.48307899906],[-71.550615,41.48292699906],[-71.550642,41.48287399906],[-71.550688,41.48280699906],[-71.550731,41.48275399906],[-71.550807,41.48272199906],[-71.550896,41.48269999906],[-71.551023,41.48268599906],[-71.551083,41.48262399906]]]}}"}, +{"type": "blockgroup", "typeId": 515021, "areaId": 29444, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.438072,41.49246199906],[-71.438049,41.49204599906],[-71.438026,41.49175599906],[-71.43792,41.49084499906],[-71.437731,41.48934699906],[-71.437729,41.48933399906],[-71.437717,41.48925999906],[-71.437637,41.48871699906],[-71.437463,41.48743899906],[-71.437298,41.48622199906],[-71.43728,41.48608899906],[-71.437164,41.48522899906],[-71.437119,41.48489799906],[-71.437019,41.48422999906],[-71.436935,41.48358199906],[-71.436861,41.48303999906],[-71.436852,41.48297699906],[-71.436821,41.48275399906],[-71.43679,41.48252499906],[-71.43664,41.48144799906],[-71.436296,41.48146899906],[-71.435966,41.48147999906],[-71.435867,41.48148299906],[-71.435518,41.48151199906],[-71.435499,41.48151299906],[-71.435181,41.48151399906],[-71.435012,41.48151999906],[-71.434845,41.48152899906],[-71.434708,41.48154799906],[-71.434517,41.48159799906],[-71.434158,41.48173099906],[-71.434097,41.48176199906],[-71.434029,41.48178899906],[-71.433884,41.48183799906],[-71.433861,41.48184199906],[-71.433815,41.48185699906],[-71.433601,41.48189199906],[-71.433479,41.48190699906],[-71.433418,41.48191799906],[-71.433319,41.48193699906],[-71.433228,41.48195599906],[-71.432999,41.48202499906],[-71.431793,41.48245199906],[-71.431778,41.48242599906],[-71.431755,41.48239899906],[-71.43174,41.48236799906],[-71.431709,41.48232299906],[-71.431633,41.48217399906],[-71.431595,41.48211699906],[-71.431564,41.48205599906],[-71.431534,41.48201399906],[-71.431511,41.48197199906],[-71.43148,41.48192999906],[-71.431435,41.48184999906],[-71.431404,41.48181199906],[-71.431381,41.48179199906],[-71.431328,41.48175399906],[-71.431252,41.48171199906],[-71.431206,41.48169299906],[-71.431084,41.48162099906],[-71.431023,41.48158599906],[-71.430962,41.48155999906],[-71.430908,41.48152899906],[-71.430847,41.48150299906],[-71.430763,41.48145699906],[-71.430527,41.48131599906],[-71.430374,41.48121299906],[-71.430313,41.48115899906],[-71.430138,41.48097599906],[-71.430016,41.48083899906],[-71.429962,41.48075899906],[-71.429871,41.48059099906],[-71.429794,41.48041199906],[-71.429726,41.48020199906],[-71.429703,41.48008299906],[-71.429672,41.47996499906],[-71.429626,41.47990799906],[-71.429604,41.47986599906],[-71.429565,41.47977799906],[-71.429436,41.47928599906],[-71.429365,41.47899099906],[-71.429285,41.47864999906],[-71.429253,41.47851599906],[-71.429008,41.47760299906],[-71.428734,41.47658199906],[-71.428543,41.47579199906],[-71.428482,41.47557399906],[-71.428406,41.47539499906],[-71.428314,41.47524999906],[-71.428246,41.47517399906],[-71.428169,41.47510499906],[-71.428093,41.47504399906],[-71.427994,41.47498699906],[-71.427879,41.47493699906],[-71.427773,41.47489899906],[-71.427658,41.47487299906],[-71.427437,41.47483099906],[-71.427124,41.47479199906],[-71.425354,41.47463599906],[-71.425129,41.47460599906],[-71.424164,41.47447599906],[-71.423988,41.47444199906],[-71.423843,41.47441499906],[-71.423538,41.47432699906],[-71.423233,41.47421999906],[-71.423035,41.47414399906],[-71.422806,41.47405999906],[-71.422432,41.47389599906],[-71.422249,41.47382399906],[-71.422211,41.47380399906],[-71.422165,41.47378199906],[-71.422028,41.47370099906],[-71.421898,41.47360999906],[-71.421776,41.47349899906],[-71.421722,41.47343399906],[-71.421608,41.47326299906],[-71.421524,41.47308699906],[-71.421478,41.47297699906],[-71.421394,41.47285099906],[-71.421318,41.47270999906],[-71.421143,41.47240799906],[-71.421114,41.47236099906],[-71.420914,41.47203799906],[-71.420769,41.47183599906],[-71.420708,41.47175999906],[-71.420685,41.47172199906],[-71.420654,41.47168699906],[-71.420586,41.47162999906],[-71.420547,41.47160699906],[-71.420464,41.47157699906],[-71.420296,41.47154599906],[-71.420227,41.47153899906],[-71.420105,41.47153899906],[-71.420044,41.47154599906],[-71.419991,41.47156099906],[-71.419952,41.47157699906],[-71.419914,41.47159999906],[-71.419054,41.47161699906],[-71.418062,41.47147299906],[-71.417118,41.47352599906],[-71.416582,41.47805499906],[-71.417118,41.48231599906],[-71.417619,41.48311999906],[-71.418907,41.48368299906],[-71.419228,41.48542499906],[-71.419227,41.48616699906],[-71.418926,41.49055599906],[-71.418121,41.49202999906],[-71.418889,41.49255499906],[-71.420083,41.49459399906],[-71.419782,41.49790699906],[-71.419963,41.49948399906],[-71.41894,41.50290999906],[-71.418398,41.50413199906],[-71.420258,41.50337899906],[-71.421373,41.50336799906],[-71.422636,41.50335899906],[-71.42892,41.50320899906],[-71.430383,41.50317499906],[-71.430826,41.50316399906],[-71.430893,41.50311199906],[-71.432174,41.50212199906],[-71.432313,41.50201399906],[-71.433031,41.50146499906],[-71.433193,41.50133399906],[-71.433876,41.50077399906],[-71.434148,41.50053999906],[-71.434247,41.50045699906],[-71.434602,41.50013499906],[-71.434873,41.49986199906],[-71.435457,41.49924599906],[-71.436039,41.49852599906],[-71.43644,41.49794399906],[-71.436469,41.49789799906],[-71.436508,41.49783699906],[-71.43676,41.49741399906],[-71.437256,41.49642899906],[-71.437614,41.49551399906],[-71.437721,41.49512099906],[-71.437813,41.49478899906],[-71.437828,41.49470099906],[-71.437973,41.49397999906],[-71.438013,41.49374199906],[-71.438065,41.49317199906],[-71.438072,41.49246199906]]]}}"}, +{"type": "blockgroup", "typeId": 515022, "areaId": 29445, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.449948,41.44892399906],[-71.449716,41.44883799906],[-71.449609,41.44870999906],[-71.448563,41.44708799906],[-71.447743,41.44619399906],[-71.446705,41.44435799906],[-71.446087,41.44337999906],[-71.444912,41.44275299906],[-71.444013,41.44245799906],[-71.443624,41.44248499906],[-71.442702,41.44255199906],[-71.442035,41.44261099906],[-71.441233,41.44243399906],[-71.440599,41.44170199906],[-71.439529,41.44032399906],[-71.439569,41.43942399906],[-71.439091,41.43920899906],[-71.438781,41.43906999906],[-71.438079,41.43886799906],[-71.436667,41.44051399906],[-71.435073,41.44103999906],[-71.432926,41.44186899906],[-71.43401,41.44382899906],[-71.433266,41.44435399906],[-71.431162,41.44443399906],[-71.429929,41.44655299906],[-71.430055,41.44780299906],[-71.429427,41.45038799906],[-71.427923,41.45255099906],[-71.425097,41.45291099906],[-71.424255,41.45593099906],[-71.424275,41.45599199906],[-71.425217,41.45876999906],[-71.426781,41.46079799906],[-71.427984,41.46214999906],[-71.428169,41.46274299906],[-71.429126,41.46580099906],[-71.429307,41.46918099906],[-71.429307,41.47057799906],[-71.426721,41.47192999906],[-71.423954,41.47188499906],[-71.422992,41.47152499906],[-71.42221,41.46940599906],[-71.421248,41.46782899906],[-71.419083,41.46796399906],[-71.418662,41.46990199906],[-71.418062,41.47147299906],[-71.419054,41.47161699906],[-71.419914,41.47159999906],[-71.419952,41.47157699906],[-71.419991,41.47156099906],[-71.420044,41.47154599906],[-71.420105,41.47153899906],[-71.420227,41.47153899906],[-71.420296,41.47154599906],[-71.420464,41.47157699906],[-71.420547,41.47160699906],[-71.420586,41.47162999906],[-71.420654,41.47168699906],[-71.420685,41.47172199906],[-71.420708,41.47175999906],[-71.420769,41.47183599906],[-71.420914,41.47203799906],[-71.421114,41.47236099906],[-71.421143,41.47240799906],[-71.421318,41.47270999906],[-71.421394,41.47285099906],[-71.421478,41.47297699906],[-71.421524,41.47308699906],[-71.421608,41.47326299906],[-71.421722,41.47343399906],[-71.421776,41.47349899906],[-71.421898,41.47360999906],[-71.422028,41.47370099906],[-71.422165,41.47378199906],[-71.422211,41.47380399906],[-71.422249,41.47382399906],[-71.422432,41.47389599906],[-71.422806,41.47405999906],[-71.423035,41.47414399906],[-71.423233,41.47421999906],[-71.423538,41.47432699906],[-71.423843,41.47441499906],[-71.423988,41.47444199906],[-71.424164,41.47447599906],[-71.425129,41.47460599906],[-71.425354,41.47463599906],[-71.427124,41.47479199906],[-71.427437,41.47483099906],[-71.427658,41.47487299906],[-71.427773,41.47489899906],[-71.427879,41.47493699906],[-71.427994,41.47498699906],[-71.428093,41.47504399906],[-71.428169,41.47510499906],[-71.428246,41.47517399906],[-71.428314,41.47524999906],[-71.428406,41.47539499906],[-71.428482,41.47557399906],[-71.428543,41.47579199906],[-71.428734,41.47658199906],[-71.429008,41.47760299906],[-71.429253,41.47851599906],[-71.429285,41.47864999906],[-71.429365,41.47899099906],[-71.429436,41.47928599906],[-71.429565,41.47977799906],[-71.429604,41.47986599906],[-71.429626,41.47990799906],[-71.429672,41.47996499906],[-71.429703,41.48008299906],[-71.429726,41.48020199906],[-71.429794,41.48041199906],[-71.429871,41.48059099906],[-71.429962,41.48075899906],[-71.430016,41.48083899906],[-71.430138,41.48097599906],[-71.430313,41.48115899906],[-71.430374,41.48121299906],[-71.430527,41.48131599906],[-71.430763,41.48145699906],[-71.430847,41.48150299906],[-71.430908,41.48152899906],[-71.430962,41.48155999906],[-71.431023,41.48158599906],[-71.431084,41.48162099906],[-71.431206,41.48169299906],[-71.431252,41.48171199906],[-71.431328,41.48175399906],[-71.431381,41.48179199906],[-71.431404,41.48181199906],[-71.431435,41.48184999906],[-71.43148,41.48192999906],[-71.431511,41.48197199906],[-71.431534,41.48201399906],[-71.431564,41.48205599906],[-71.431595,41.48211699906],[-71.431633,41.48217399906],[-71.431709,41.48232299906],[-71.43174,41.48236799906],[-71.431755,41.48239899906],[-71.431778,41.48242599906],[-71.431793,41.48245199906],[-71.432999,41.48202499906],[-71.433228,41.48195599906],[-71.433319,41.48193699906],[-71.433418,41.48191799906],[-71.433479,41.48190699906],[-71.433601,41.48189199906],[-71.433815,41.48185699906],[-71.433861,41.48184199906],[-71.433884,41.48183799906],[-71.434029,41.48178899906],[-71.434097,41.48176199906],[-71.434158,41.48173099906],[-71.434517,41.48159799906],[-71.434708,41.48154799906],[-71.434845,41.48152899906],[-71.435012,41.48151999906],[-71.435181,41.48151399906],[-71.435499,41.48151299906],[-71.435518,41.48151199906],[-71.435867,41.48148299906],[-71.435966,41.48147999906],[-71.436296,41.48146899906],[-71.43664,41.48144799906],[-71.436638,41.48142999906],[-71.436546,41.48077799906],[-71.436455,41.48022099906],[-71.436346,41.47972999906],[-71.436333,41.47966799906],[-71.436264,41.47938899906],[-71.436229,41.47926499906],[-71.436195,41.47912999906],[-71.436119,41.47889299906],[-71.436089,41.47878599906],[-71.436032,41.47859599906],[-71.435943,41.47829499906],[-71.435891,41.47812299906],[-71.435863,41.47802899906],[-71.435805,41.47783799906],[-71.435593,41.47713299906],[-71.435372,41.47640399906],[-71.435089,41.47546799906],[-71.435036,41.47531499906],[-71.43499,41.47516299906],[-71.434959,41.47508999906],[-71.434929,41.47501399906],[-71.434822,41.47477699906],[-71.434761,41.47465899906],[-71.434677,41.47450999906],[-71.434639,41.47445299906],[-71.434512,41.47424599906],[-71.434341,41.47396499906],[-71.434329,41.47394299906],[-71.434224,41.47374799906],[-71.43411,41.47351399906],[-71.434036,41.47332899906],[-71.433981,41.47312899906],[-71.433968,41.47305699906],[-71.43396,41.47299199906],[-71.433937,41.47288099906],[-71.433922,41.47276299906],[-71.433914,41.47261799906],[-71.433907,41.47252699906],[-71.433892,41.47209499906],[-71.433891,41.47207999906],[-71.433868,41.47127199906],[-71.433857,41.47084399906],[-71.433829,41.46969899906],[-71.433823,41.46926499906],[-71.433815,41.46913899906],[-71.433815,41.46900899906],[-71.433807,41.46887999906],[-71.433777,41.46860499906],[-71.433754,41.46846799906],[-71.433739,41.46833799906],[-71.433609,41.46764799906],[-71.433586,41.46754499906],[-71.433556,41.46736499906],[-71.433479,41.46698799906],[-71.433469,41.46696299906],[-71.433407,41.46664399906],[-71.433349,41.46627799906],[-71.433341,41.46623399906],[-71.433176,41.46537199906],[-71.433161,41.46532999906],[-71.433149,41.46526299906],[-71.433108,41.46504499906],[-71.433071,41.46484099906],[-71.432996,41.46448399906],[-71.432985,41.46442999906],[-71.432961,41.46426399906],[-71.432861,41.46371799906],[-71.432816,41.46345399906],[-71.432808,41.46339799906],[-71.432808,41.46338699906],[-71.4328,41.46332899906],[-71.43279,41.46322999906],[-71.432785,41.46297099906],[-71.432795,41.46286299906],[-71.432817,41.46272699906],[-71.432861,41.46254699906],[-71.432916,41.46237799906],[-71.432977,41.46222699906],[-71.433102,41.46199199906],[-71.433578,41.46117399906],[-71.43383,41.46074299906],[-71.434647,41.45942699906],[-71.434799,41.45922899906],[-71.434952,41.45907999906],[-71.435204,41.45888099906],[-71.436096,41.45824399906],[-71.437447,41.45726399906],[-71.438754,41.45625699906],[-71.43911,41.45598199906],[-71.442192,41.45362499906],[-71.442383,41.45349499906],[-71.442802,41.45316699906],[-71.443733,41.45246099906],[-71.444183,41.45213299906],[-71.444519,41.45191199906],[-71.44487,41.45170999906],[-71.445892,41.45115299906],[-71.446831,41.45064899906],[-71.447829,41.45010999906],[-71.448257,41.44987899906],[-71.448798,41.44959399906],[-71.448822,41.44958099906],[-71.448997,41.44949299906],[-71.449369,41.44931599906],[-71.449631,41.44916099906],[-71.449718,41.44910299906],[-71.449873,41.44898099906],[-71.449948,41.44892399906]],[[-71.43861,41.44060399906],[-71.438577,41.44066299906],[-71.438529,41.44065899906],[-71.438526,41.44060099906],[-71.438543,41.44056899906],[-71.438591,41.44056299906],[-71.43861,41.44060399906]],[[-71.438468,41.44077599906],[-71.438436,41.44080399906],[-71.438372,41.44079699906],[-71.438349,41.44074599906],[-71.438348,41.44068199906],[-71.438436,41.44071999906],[-71.438468,41.44077599906]],[[-71.436767,41.44266099906],[-71.436711,41.44270699906],[-71.436647,41.44273899906],[-71.436599,41.44273299906],[-71.436551,41.44273199906],[-71.436511,41.44270099906],[-71.436549,41.44267899906],[-71.436585,41.44263099906],[-71.43663,41.44260899906],[-71.436717,41.44262099906],[-71.436767,41.44266099906]],[[-71.436471,41.44144599906],[-71.436401,41.44156099906],[-71.436339,41.44152399906],[-71.436328,41.44146599906],[-71.43636,41.44141499906],[-71.436403,41.44138999906],[-71.436461,41.44141999906],[-71.436471,41.44144599906]],[[-71.435963,41.44268099906],[-71.435929,41.44272999906],[-71.435919,41.44275799906],[-71.435957,41.44278899906],[-71.435933,41.44284999906],[-71.435901,41.44287699906],[-71.435824,41.44290199906],[-71.435755,41.44290599906],[-71.435725,41.44285999906],[-71.435696,41.44279499906],[-71.435656,41.44278299906],[-71.435619,41.44279199906],[-71.435567,41.44283999906],[-71.435482,41.44288399906],[-71.435452,41.44285499906],[-71.435453,41.44278799906],[-71.435472,41.44272899906],[-71.435431,41.44269599906],[-71.435383,41.44258199906],[-71.435384,41.44251599906],[-71.435419,41.44246099906],[-71.435456,41.44244399906],[-71.435504,41.44250999906],[-71.435499,41.44256699906],[-71.435526,41.44260799906],[-71.435587,41.44260499906],[-71.435616,41.44254799906],[-71.435689,41.44251099906],[-71.435729,41.44260999906],[-71.435723,41.44269599906],[-71.435742,41.44271899906],[-71.435814,41.44271299906],[-71.435856,41.44268099906],[-71.43592,41.44266199906],[-71.435963,41.44268099906]],[[-71.427311,41.45403599906],[-71.427286,41.45409899906],[-71.427208,41.45411399906],[-71.427152,41.45410899906],[-71.427111,41.45404299906],[-71.427146,41.45402199906],[-71.427222,41.45400699906],[-71.427311,41.45403599906]],[[-71.427232,41.45349499906],[-71.427223,41.45354999906],[-71.427148,41.45355899906],[-71.427137,41.45360699906],[-71.427193,41.45364999906],[-71.427153,41.45366599906],[-71.42706,41.45361499906],[-71.427036,41.45365999906],[-71.427059,41.45368499906],[-71.42708,41.45374199906],[-71.427053,41.45376999906],[-71.42705,41.45379899906],[-71.427125,41.45382899906],[-71.427186,41.45386399906],[-71.427204,41.45390899906],[-71.427154,41.45393399906],[-71.427074,41.45391899906],[-71.426999,41.45389199906],[-71.426928,41.45387199906],[-71.426847,41.45388299906],[-71.426786,41.45381599906],[-71.426722,41.45377999906],[-71.426701,41.45373599906],[-71.426738,41.45367899906],[-71.426799,41.45363899906],[-71.426858,41.45364999906],[-71.426912,41.45364599906],[-71.426951,41.45354699906],[-71.426994,41.45350299906],[-71.427042,41.45338199906],[-71.427078,41.45337599906],[-71.427108,41.45340799906],[-71.427183,41.45340199906],[-71.427222,41.45342999906],[-71.427232,41.45349499906]],[[-71.4269,41.45412999906],[-71.426855,41.45412699906],[-71.426781,41.45410899906],[-71.426753,41.45408599906],[-71.42672,41.45403299906],[-71.426781,41.45399499906],[-71.42685,41.45401099906],[-71.426886,41.45406199906],[-71.4269,41.45412999906]]]}}"}, +{"type": "blockgroup", "typeId": 515023, "areaId": 29446, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.4526,41.45220199906],[-71.451771,41.45129199906],[-71.450902,41.44992499906],[-71.450509,41.44955699906],[-71.450189,41.44923899906],[-71.450095,41.44915099906],[-71.449948,41.44892399906],[-71.449873,41.44898099906],[-71.449718,41.44910299906],[-71.449631,41.44916099906],[-71.449369,41.44931599906],[-71.448997,41.44949299906],[-71.448822,41.44958099906],[-71.448798,41.44959399906],[-71.448257,41.44987899906],[-71.447829,41.45010999906],[-71.446831,41.45064899906],[-71.445892,41.45115299906],[-71.44487,41.45170999906],[-71.444519,41.45191199906],[-71.444183,41.45213299906],[-71.443733,41.45246099906],[-71.442802,41.45316699906],[-71.442383,41.45349499906],[-71.442192,41.45362499906],[-71.43911,41.45598199906],[-71.438754,41.45625699906],[-71.437447,41.45726399906],[-71.436096,41.45824399906],[-71.435204,41.45888099906],[-71.434952,41.45907999906],[-71.434799,41.45922899906],[-71.434647,41.45942699906],[-71.43383,41.46074299906],[-71.433578,41.46117399906],[-71.433102,41.46199199906],[-71.432977,41.46222699906],[-71.432916,41.46237799906],[-71.432861,41.46254699906],[-71.432817,41.46272699906],[-71.432795,41.46286299906],[-71.432785,41.46297099906],[-71.43279,41.46322999906],[-71.4328,41.46332899906],[-71.432808,41.46338699906],[-71.432808,41.46339799906],[-71.432816,41.46345399906],[-71.432861,41.46371799906],[-71.432961,41.46426399906],[-71.432985,41.46442999906],[-71.432996,41.46448399906],[-71.433071,41.46484099906],[-71.433108,41.46504499906],[-71.433149,41.46526299906],[-71.433161,41.46532999906],[-71.433176,41.46537199906],[-71.433341,41.46623399906],[-71.433349,41.46627799906],[-71.433407,41.46664399906],[-71.433469,41.46696299906],[-71.433479,41.46698799906],[-71.433556,41.46736499906],[-71.433586,41.46754499906],[-71.433609,41.46764799906],[-71.433739,41.46833799906],[-71.433754,41.46846799906],[-71.433777,41.46860499906],[-71.433807,41.46887999906],[-71.433815,41.46900899906],[-71.433815,41.46913899906],[-71.433823,41.46926499906],[-71.433829,41.46969899906],[-71.433857,41.47084399906],[-71.433868,41.47127199906],[-71.433891,41.47207999906],[-71.433892,41.47209499906],[-71.433907,41.47252699906],[-71.433914,41.47261799906],[-71.433922,41.47276299906],[-71.433937,41.47288099906],[-71.43396,41.47299199906],[-71.433968,41.47305699906],[-71.433981,41.47312899906],[-71.434036,41.47332899906],[-71.43411,41.47351399906],[-71.434224,41.47374799906],[-71.434329,41.47394299906],[-71.434341,41.47396499906],[-71.434512,41.47424599906],[-71.434639,41.47445299906],[-71.434998,41.47445299906],[-71.435458,41.47447199906],[-71.435555,41.47447599906],[-71.436531,41.47454099906],[-71.437724,41.47462099906],[-71.438644,41.47468199906],[-71.440094,41.47477299906],[-71.440399,41.47479599906],[-71.44194,41.47489499906],[-71.442207,41.47491099906],[-71.442764,41.47495199906],[-71.442978,41.47496799906],[-71.443863,41.47503699906],[-71.444809,41.47509399906],[-71.445671,41.47515099906],[-71.446548,41.47520399906],[-71.44754,41.47526599906],[-71.448201,41.47523199906],[-71.448703,41.47500699906],[-71.448902,41.47453499906],[-71.448856,41.47376399906],[-71.4496,41.47240099906],[-71.448749,41.46978199906],[-71.448398,41.46872899906],[-71.4484,41.46840099906],[-71.448826,41.46750799906],[-71.449924,41.46595199906],[-71.45018,41.46514599906],[-71.451034,41.46220499906],[-71.451137,41.46160399906],[-71.45087,41.45892799906],[-71.450869,41.45790999906],[-71.451349,41.45417599906],[-71.451617,41.45315699906],[-71.452165,41.45250299906],[-71.4526,41.45220199906]]]}}"}, +{"type": "blockgroup", "typeId": 515024, "areaId": 29447, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.448703,41.47500699906],[-71.448201,41.47523199906],[-71.44754,41.47526599906],[-71.446548,41.47520399906],[-71.445671,41.47515099906],[-71.444809,41.47509399906],[-71.443863,41.47503699906],[-71.442978,41.47496799906],[-71.442764,41.47495199906],[-71.442207,41.47491099906],[-71.44194,41.47489499906],[-71.440399,41.47479599906],[-71.440094,41.47477299906],[-71.438644,41.47468199906],[-71.437724,41.47462099906],[-71.436531,41.47454099906],[-71.435555,41.47447599906],[-71.435458,41.47447199906],[-71.434998,41.47445299906],[-71.434639,41.47445299906],[-71.434677,41.47450999906],[-71.434761,41.47465899906],[-71.434822,41.47477699906],[-71.434929,41.47501399906],[-71.434959,41.47508999906],[-71.43499,41.47516299906],[-71.435036,41.47531499906],[-71.435089,41.47546799906],[-71.435372,41.47640399906],[-71.435593,41.47713299906],[-71.435805,41.47783799906],[-71.435863,41.47802899906],[-71.435891,41.47812299906],[-71.435943,41.47829499906],[-71.436032,41.47859599906],[-71.436089,41.47878599906],[-71.436119,41.47889299906],[-71.436195,41.47912999906],[-71.436229,41.47926499906],[-71.436264,41.47938899906],[-71.436333,41.47966799906],[-71.436346,41.47972999906],[-71.436455,41.48022099906],[-71.436546,41.48077799906],[-71.436638,41.48142999906],[-71.43664,41.48144799906],[-71.43679,41.48252499906],[-71.436821,41.48275399906],[-71.436852,41.48297699906],[-71.436861,41.48303999906],[-71.436935,41.48358199906],[-71.437019,41.48422999906],[-71.437119,41.48489799906],[-71.437164,41.48522899906],[-71.43728,41.48608899906],[-71.437298,41.48622199906],[-71.437463,41.48743899906],[-71.437637,41.48871699906],[-71.437717,41.48925999906],[-71.437729,41.48933399906],[-71.437731,41.48934699906],[-71.43792,41.49084499906],[-71.438026,41.49175599906],[-71.438049,41.49204599906],[-71.439018,41.49204599906],[-71.439957,41.49202299906],[-71.440819,41.49200799906],[-71.441444,41.49199699906],[-71.442223,41.49198899906],[-71.442554,41.49198399906],[-71.443329,41.49197399906],[-71.444221,41.49194299906],[-71.444611,41.49192399906],[-71.444763,41.49189799906],[-71.444885,41.49187499906],[-71.445053,41.49180599906],[-71.445152,41.49176799906],[-71.445374,41.49160799906],[-71.445404,41.49156999906],[-71.445541,41.49138599906],[-71.445727,41.49086599906],[-71.44574,41.49082899906],[-71.445892,41.49032199906],[-71.446045,41.48992899906],[-71.446259,41.48952499906],[-71.446426,41.48920099906],[-71.446541,41.48890699906],[-71.446609,41.48871599906],[-71.446663,41.48860199906],[-71.446785,41.48848699906],[-71.446861,41.48842999906],[-71.446892,41.48839199906],[-71.446976,41.48836099906],[-71.447009,41.48834699906],[-71.447047,41.48832999906],[-71.447787,41.48692499906],[-71.447867,41.48659599906],[-71.447922,41.48644299906],[-71.447868,41.48620599906],[-71.447648,41.48599999906],[-71.447458,41.48589099906],[-71.447413,41.48451399906],[-71.447627,41.48405199906],[-71.44786,41.48329399906],[-71.44728,41.48242899906],[-71.447362,41.48124899906],[-71.447819,41.48054699906],[-71.447957,41.47991399906],[-71.448247,41.47895999906],[-71.44823,41.47709799906],[-71.4483,41.47680099906],[-71.44849,41.47551099906],[-71.448703,41.47500699906]]]}}"}, +{"type": "blockgroup", "typeId": 515025, "areaId": 29448, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.450101,41.50180099906],[-71.447084,41.49013899906],[-71.446873,41.48978099906],[-71.446657,41.48907699906],[-71.446724,41.48893899906],[-71.446718,41.48881199906],[-71.446732,41.48874799906],[-71.446761,41.48868099906],[-71.446796,41.48862899906],[-71.446864,41.48858199906],[-71.447013,41.48849999906],[-71.447058,41.48844399906],[-71.447058,41.48839299906],[-71.447047,41.48832999906],[-71.447009,41.48834699906],[-71.446976,41.48836099906],[-71.446892,41.48839199906],[-71.446861,41.48842999906],[-71.446785,41.48848699906],[-71.446663,41.48860199906],[-71.446609,41.48871599906],[-71.446541,41.48890699906],[-71.446426,41.48920099906],[-71.446259,41.48952499906],[-71.446045,41.48992899906],[-71.445892,41.49032199906],[-71.44574,41.49082899906],[-71.445727,41.49086599906],[-71.445541,41.49138599906],[-71.445404,41.49156999906],[-71.445374,41.49160799906],[-71.445152,41.49176799906],[-71.445053,41.49180599906],[-71.444885,41.49187499906],[-71.444763,41.49189799906],[-71.444611,41.49192399906],[-71.444221,41.49194299906],[-71.443329,41.49197399906],[-71.442554,41.49198399906],[-71.442223,41.49198899906],[-71.441444,41.49199699906],[-71.440819,41.49200799906],[-71.439957,41.49202299906],[-71.439018,41.49204599906],[-71.438049,41.49204599906],[-71.438072,41.49246199906],[-71.438065,41.49317199906],[-71.438013,41.49374199906],[-71.437973,41.49397999906],[-71.437828,41.49470099906],[-71.437813,41.49478899906],[-71.437721,41.49512099906],[-71.437614,41.49551399906],[-71.437256,41.49642899906],[-71.43676,41.49741399906],[-71.436508,41.49783699906],[-71.436469,41.49789799906],[-71.43644,41.49794399906],[-71.436039,41.49852599906],[-71.435457,41.49924599906],[-71.434873,41.49986199906],[-71.434602,41.50013499906],[-71.434247,41.50045699906],[-71.434148,41.50053999906],[-71.433876,41.50077399906],[-71.433193,41.50133399906],[-71.433031,41.50146499906],[-71.432313,41.50201399906],[-71.432174,41.50212199906],[-71.430893,41.50311199906],[-71.430826,41.50316399906],[-71.440121,41.50294699906],[-71.442076,41.50290099906],[-71.442167,41.50289899906],[-71.442508,41.50288099906],[-71.447378,41.50280199906],[-71.448148,41.50278999906],[-71.448768,41.50243899906],[-71.449483,41.50203399906],[-71.450101,41.50180099906]]]}}"}, +{"type": "blockgroup", "typeId": 515031, "areaId": 29449, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.489991,41.43171399906],[-71.48996,41.43170199906],[-71.489853,41.43168499906],[-71.489838,41.43168299906],[-71.4898,41.43168299906],[-71.489723,41.43167499906],[-71.489594,41.43167099906],[-71.488464,41.43170899906],[-71.487227,41.43172599906],[-71.48645,41.43169099906],[-71.485268,41.43155699906],[-71.485069,41.43152999906],[-71.484894,41.43150699906],[-71.484543,41.43144999906],[-71.48436,41.43142299906],[-71.48349,41.43126699906],[-71.482964,41.43116799906],[-71.482391,41.43105699906],[-71.48175,41.43093899906],[-71.481209,41.43082399906],[-71.481077,41.43080299906],[-71.481049,41.43079799906],[-71.480574,41.43070999906],[-71.480225,41.43064499906],[-71.479927,41.43057599906],[-71.479095,41.43039299906],[-71.477837,41.43013799906],[-71.477333,41.43003499906],[-71.476616,41.42988999906],[-71.476486,41.42987099906],[-71.476295,41.42981699906],[-71.475899,41.42969099906],[-71.475578,41.42956499906],[-71.475466,41.42950699906],[-71.475027,41.42949899906],[-71.47493,41.42948799906],[-71.474824,41.42948699906],[-71.474617,41.42947699906],[-71.474534,41.42946699906],[-71.474482,41.42945099906],[-71.474453,41.42941399906],[-71.47436,41.42941299906],[-71.474276,41.42943999906],[-71.474223,41.42949799906],[-71.474198,41.42955699906],[-71.474143,41.42960899906],[-71.474076,41.42964199906],[-71.47375,41.42990199906],[-71.473682,41.42996099906],[-71.473617,41.43000299906],[-71.473567,41.43004399906],[-71.473468,41.43014599906],[-71.473449,41.43015799906],[-71.473411,41.43020999906],[-71.473385,41.43027299906],[-71.473374,41.43034499906],[-71.473385,41.43055099906],[-71.4734,41.43060599906],[-71.473439,41.43065599906],[-71.473492,41.43069699906],[-71.473559,41.43071999906],[-71.473637,41.43072299906],[-71.473716,41.43071699906],[-71.473988,41.43070999906],[-71.474076,41.43071399906],[-71.47416,41.43073299906],[-71.474234,41.43076399906],[-71.47429,41.43081399906],[-71.474306,41.43087299906],[-71.474287,41.43093299906],[-71.474245,41.43100399906],[-71.474145,41.43113599906],[-71.474117,41.43117299906],[-71.474065,41.43122899906],[-71.47389,41.43139999906],[-71.473828,41.43145299906],[-71.473648,41.43159199906],[-71.473535,41.43169399906],[-71.473477,41.43173499906],[-71.473394,41.43177799906],[-71.473325,41.43182899906],[-71.473207,41.43192799906],[-71.473146,41.43199199906],[-71.473057,41.43211199906],[-71.473014,41.43217799906],[-71.472992,41.43223299906],[-71.472982,41.43228999906],[-71.472951,41.43234599906],[-71.472884,41.43238299906],[-71.472818,41.43240499906],[-71.472761,41.43243799906],[-71.472747,41.43244099906],[-71.471689,41.43285299906],[-71.471258,41.43328499906],[-71.470768,41.43376199906],[-71.470349,41.43394799906],[-71.470042,41.43404599906],[-71.469976,41.43414899906],[-71.469604,41.43407099906],[-71.469401,41.43403699906],[-71.469353,41.43402899906],[-71.46862,41.43398299906],[-71.468155,41.43394899906],[-71.467699,41.43391999906],[-71.467613,41.43391399906],[-71.46727,41.43386099906],[-71.466971,41.43378399906],[-71.466745,41.43370099906],[-71.466423,41.43357799906],[-71.466156,41.43349499906],[-71.466049,41.43346399906],[-71.466011,41.43345699906],[-71.465889,41.43343399906],[-71.4655,41.43339499906],[-71.465157,41.43337199906],[-71.464241,41.43331499906],[-71.462715,41.43320799906],[-71.461784,41.43313199906],[-71.460198,41.43301699906],[-71.460114,41.43315499906],[-71.459961,41.43344799906],[-71.459892,41.43358199906],[-71.459808,41.43371199906],[-71.459724,41.43379199906],[-71.459625,41.43385699906],[-71.459534,41.43389099906],[-71.459419,41.43391399906],[-71.459274,41.43392899906],[-71.459114,41.43392199906],[-71.458435,41.43387199906],[-71.457672,41.43381099906],[-71.457016,41.43374599906],[-71.456902,41.43373499906],[-71.455918,41.43400499906],[-71.454691,41.43391399906],[-71.451517,41.43597999906],[-71.446167,41.43911199906],[-71.443281,41.44046499906],[-71.443221,41.43908999906],[-71.441658,41.43771499906],[-71.440305,41.43728699906],[-71.438772,41.43800799906],[-71.438079,41.43886799906],[-71.438781,41.43906999906],[-71.439091,41.43920899906],[-71.439569,41.43942399906],[-71.439529,41.44032399906],[-71.440599,41.44170199906],[-71.441233,41.44243399906],[-71.442035,41.44261099906],[-71.442702,41.44255199906],[-71.443624,41.44248499906],[-71.444013,41.44245799906],[-71.444912,41.44275299906],[-71.446087,41.44337999906],[-71.446705,41.44435799906],[-71.447743,41.44619399906],[-71.448563,41.44708799906],[-71.449609,41.44870999906],[-71.449716,41.44883799906],[-71.449948,41.44892399906],[-71.450095,41.44915099906],[-71.450189,41.44923899906],[-71.450509,41.44955699906],[-71.450902,41.44992499906],[-71.451771,41.45129199906],[-71.4526,41.45220199906],[-71.45499,41.45029899906],[-71.461062,41.44584099906],[-71.464283,41.44354299906],[-71.466022,41.44256299906],[-71.4667,41.44229899906],[-71.466743,41.44226099906],[-71.466876,41.44219499906],[-71.46695,41.44216999906],[-71.467032,41.44215599906],[-71.467142,41.44214799906],[-71.467239,41.44215299906],[-71.467324,41.44216999906],[-71.467411,41.44217099906],[-71.467489,41.44214499906],[-71.467623,41.44206399906],[-71.467687,41.44203199906],[-71.467831,41.44194099906],[-71.467945,41.44181799906],[-71.46801,41.44177699906],[-71.468096,41.44173499906],[-71.468165,41.44171699906],[-71.468241,41.44171199906],[-71.468317,41.44171299906],[-71.468421,41.44173299906],[-71.468495,41.44173299906],[-71.468586,41.44161899906],[-71.468643,41.44156099906],[-71.468733,41.44152799906],[-71.468929,41.44147099906],[-71.469028,41.44143799906],[-71.469114,41.44139199906],[-71.469285,41.44131099906],[-71.469361,41.44129599906],[-71.469447,41.44129199906],[-71.469497,41.44129499906],[-71.4727,41.44001499906],[-71.472725,41.43999399906],[-71.472898,41.43991499906],[-71.472952,41.43986199906],[-71.472992,41.43980799906],[-71.473068,41.43974899906],[-71.474518,41.43904499906],[-71.474835,41.43889099906],[-71.475075,41.43887699906],[-71.475691,41.43864499906],[-71.476335,41.43836299906],[-71.47751,41.43784599906],[-71.478309,41.43751999906],[-71.48204,41.43599699906],[-71.482338,41.43587499906],[-71.482628,41.43575699906],[-71.482811,41.43567999906],[-71.483257,41.43549199906],[-71.483326,41.43542099906],[-71.483535,41.43536199906],[-71.483872,41.43516599906],[-71.48388,41.43508399906],[-71.48393,41.43497199906],[-71.483936,41.43486199906],[-71.48397,41.43473999906],[-71.484009,41.43463099906],[-71.484034,41.43451299906],[-71.484073,41.43438599906],[-71.484128,41.43427499906],[-71.484215,41.43416899906],[-71.484335,41.43410099906],[-71.484467,41.43403499906],[-71.484606,41.43398099906],[-71.485012,41.43378299906],[-71.485146,41.43372499906],[-71.485315,41.43370099906],[-71.485576,41.43370699906],[-71.485655,41.43374099906],[-71.485731,41.43362899906],[-71.485829,41.43354299906],[-71.485936,41.43345999906],[-71.486042,41.43335299906],[-71.486121,41.43324399906],[-71.48621,41.43318799906],[-71.486374,41.43316299906],[-71.486594,41.43317099906],[-71.486735,41.43318399906],[-71.48689,41.43321999906],[-71.487044,41.43326299906],[-71.487139,41.43328499906],[-71.48729,41.43330699906],[-71.487466,41.43327199906],[-71.48755,41.43317299906],[-71.487585,41.43304299906],[-71.487594,41.43280499906],[-71.487593,41.43269099906],[-71.487586,41.43257999906],[-71.487594,41.43234399906],[-71.487632,41.43223299906],[-71.487704,41.43214899906],[-71.487851,41.43214699906],[-71.488008,41.43215499906],[-71.488168,41.43215299906],[-71.488329,41.43212499906],[-71.488498,41.43207199906],[-71.488665,41.43203499906],[-71.488817,41.43203399906],[-71.488981,41.43202199906],[-71.489132,41.43199099906],[-71.489354,41.43187399906],[-71.489496,41.43187899906],[-71.489553,41.43191099906],[-71.489595,41.43198599906],[-71.48961,41.43201299906],[-71.489991,41.43171399906]]]}}"}, +{"type": "blockgroup", "typeId": 515032, "areaId": 29450, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.475466,41.42950699906],[-71.475372,41.42945899906],[-71.474678,41.42895099906],[-71.474386,41.42881499906],[-71.474168,41.42872099906],[-71.473883,41.42860299906],[-71.473623,41.42849899906],[-71.473433,41.42842399906],[-71.472972,41.42824399906],[-71.472656,41.42811999906],[-71.47197,41.42764299906],[-71.471046,41.42697099906],[-71.470749,41.42682599906],[-71.470558,41.42676899906],[-71.46994,41.42663599906],[-71.468681,41.42637699906],[-71.467987,41.42623899906],[-71.467362,41.42609399906],[-71.466248,41.42583499906],[-71.46521,41.42559799906],[-71.464928,41.42553699906],[-71.464134,41.42536199906],[-71.46373,41.42524699906],[-71.462891,41.42488499906],[-71.462342,41.42464499906],[-71.462164,41.42456699906],[-71.461861,41.42443499906],[-71.461578,41.42430899906],[-71.460969,41.42401499906],[-71.460907,41.42398499906],[-71.460815,41.42389299906],[-71.460754,41.42379399906],[-71.460632,41.42373299906],[-71.460243,41.42364899906],[-71.459835,41.42355599906],[-71.459366,41.42344999906],[-71.459305,41.42343899906],[-71.459091,41.42338199906],[-71.458636,41.42326299906],[-71.458405,41.42320299906],[-71.458099,41.42312999906],[-71.457687,41.42303099906],[-71.457069,41.42287399906],[-71.456879,41.42283199906],[-71.456551,41.42277499906],[-71.456213,41.42273499906],[-71.456009,41.42270699906],[-71.455872,41.42267999906],[-71.455971,41.42259599906],[-71.455997,41.42255999906],[-71.456139,41.42235899906],[-71.456169,41.42215699906],[-71.456223,41.42170699906],[-71.456253,41.42150899906],[-71.456383,41.42050899906],[-71.456429,41.42016599906],[-71.456444,41.41998299906],[-71.456444,41.41989099906],[-71.456429,41.41977299906],[-71.456406,41.41971599906],[-71.456398,41.41970399906],[-71.456375,41.41965499906],[-71.456329,41.41959799906],[-71.456276,41.41954399906],[-71.456192,41.41947599906],[-71.455994,41.41936099906],[-71.455437,41.41907899906],[-71.454956,41.41880799906],[-71.454857,41.41873899906],[-71.454796,41.41868199906],[-71.454681,41.41855199906],[-71.45459,41.41839599906],[-71.454552,41.41831199906],[-71.454514,41.41818999906],[-71.454468,41.41794199906],[-71.454376,41.41750699906],[-71.454346,41.41730899906],[-71.454346,41.41728199906],[-71.45265,41.41687299906],[-71.451321,41.41657199906],[-71.451468,41.41811899906],[-71.452429,41.42043099906],[-71.453717,41.42287599906],[-71.45445,41.42422099906],[-71.454579,41.42648799906],[-71.453991,41.42955599906],[-71.453842,41.43114999906],[-71.455691,41.43274299906],[-71.454691,41.43391399906],[-71.455918,41.43400499906],[-71.456902,41.43373499906],[-71.457016,41.43374599906],[-71.457672,41.43381099906],[-71.458435,41.43387199906],[-71.459114,41.43392199906],[-71.459274,41.43392899906],[-71.459419,41.43391399906],[-71.459534,41.43389099906],[-71.459625,41.43385699906],[-71.459724,41.43379199906],[-71.459808,41.43371199906],[-71.459892,41.43358199906],[-71.459961,41.43344799906],[-71.460114,41.43315499906],[-71.460198,41.43301699906],[-71.461784,41.43313199906],[-71.462715,41.43320799906],[-71.464241,41.43331499906],[-71.465157,41.43337199906],[-71.4655,41.43339499906],[-71.465889,41.43343399906],[-71.466011,41.43345699906],[-71.466049,41.43346399906],[-71.466156,41.43349499906],[-71.466423,41.43357799906],[-71.466745,41.43370099906],[-71.466971,41.43378399906],[-71.46727,41.43386099906],[-71.467613,41.43391399906],[-71.467699,41.43391999906],[-71.468155,41.43394899906],[-71.46862,41.43398299906],[-71.469353,41.43402899906],[-71.469401,41.43403699906],[-71.469604,41.43407099906],[-71.469976,41.43414899906],[-71.470042,41.43404599906],[-71.470349,41.43394799906],[-71.470768,41.43376199906],[-71.471258,41.43328499906],[-71.471689,41.43285299906],[-71.472747,41.43244099906],[-71.472761,41.43243799906],[-71.472818,41.43240499906],[-71.472884,41.43238299906],[-71.472951,41.43234599906],[-71.472982,41.43228999906],[-71.472992,41.43223299906],[-71.473014,41.43217799906],[-71.473057,41.43211199906],[-71.473146,41.43199199906],[-71.473207,41.43192799906],[-71.473325,41.43182899906],[-71.473394,41.43177799906],[-71.473477,41.43173499906],[-71.473535,41.43169399906],[-71.473648,41.43159199906],[-71.473828,41.43145299906],[-71.47389,41.43139999906],[-71.474065,41.43122899906],[-71.474117,41.43117299906],[-71.474145,41.43113599906],[-71.474245,41.43100399906],[-71.474287,41.43093299906],[-71.474306,41.43087299906],[-71.47429,41.43081399906],[-71.474234,41.43076399906],[-71.47416,41.43073299906],[-71.474076,41.43071399906],[-71.473988,41.43070999906],[-71.473716,41.43071699906],[-71.473637,41.43072299906],[-71.473559,41.43071999906],[-71.473492,41.43069699906],[-71.473439,41.43065599906],[-71.4734,41.43060599906],[-71.473385,41.43055099906],[-71.473374,41.43034499906],[-71.473385,41.43027299906],[-71.473411,41.43020999906],[-71.473449,41.43015799906],[-71.473468,41.43014599906],[-71.473567,41.43004399906],[-71.473617,41.43000299906],[-71.473682,41.42996099906],[-71.47375,41.42990199906],[-71.474076,41.42964199906],[-71.474143,41.42960899906],[-71.474198,41.42955699906],[-71.474223,41.42949799906],[-71.474276,41.42943999906],[-71.47436,41.42941299906],[-71.474453,41.42941399906],[-71.474482,41.42945099906],[-71.474534,41.42946699906],[-71.474617,41.42947699906],[-71.474824,41.42948699906],[-71.47493,41.42948799906],[-71.475027,41.42949899906],[-71.475466,41.42950699906]]]}}"}, +{"type": "blockgroup", "typeId": 515033, "areaId": 29451, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.482427,41.39455199906],[-71.482353,41.39453499906],[-71.481377,41.39432499906],[-71.480484,41.39417999906],[-71.480385,41.39416099906],[-71.480209,41.39413499906],[-71.479759,41.39405799906],[-71.478929,41.39392399906],[-71.478784,41.39389899906],[-71.476578,41.39352799906],[-71.475932,41.39341399906],[-71.47538,41.39331799906],[-71.474663,41.39318499906],[-71.474197,41.39305899906],[-71.473751,41.39290499906],[-71.473389,41.39277999906],[-71.472931,41.39262399906],[-71.472783,41.39257199906],[-71.472496,41.39247099906],[-71.472368,41.39242599906],[-71.47216,41.39235299906],[-71.472137,41.39234199906],[-71.471805,41.39222299906],[-71.471359,41.39206299906],[-71.471191,41.39202499906],[-71.471031,41.39201699906],[-71.470871,41.39203999906],[-71.470772,41.39209399906],[-71.470167,41.39168799906],[-71.468802,41.39125399906],[-71.466692,41.39402099906],[-71.463334,41.39426199906],[-71.460726,41.39637899906],[-71.460798,41.39862999906],[-71.460798,41.40088099906],[-71.457511,41.40270299906],[-71.45451,41.40482099906],[-71.454865,41.40678299906],[-71.453056,41.40793499906],[-71.451615,41.40869299906],[-71.451262,41.41073899906],[-71.451944,41.41278599906],[-71.451034,41.41515499906],[-71.451321,41.41657199906],[-71.45265,41.41687299906],[-71.454346,41.41728199906],[-71.454346,41.41730899906],[-71.454376,41.41750699906],[-71.454468,41.41794199906],[-71.454514,41.41818999906],[-71.454552,41.41831199906],[-71.45459,41.41839599906],[-71.454681,41.41855199906],[-71.454796,41.41868199906],[-71.454857,41.41873899906],[-71.454956,41.41880799906],[-71.455437,41.41907899906],[-71.455994,41.41936099906],[-71.456192,41.41947599906],[-71.456276,41.41954399906],[-71.456329,41.41959799906],[-71.456375,41.41965499906],[-71.456398,41.41970399906],[-71.456406,41.41971599906],[-71.456429,41.41977299906],[-71.456444,41.41989099906],[-71.456444,41.41998299906],[-71.456429,41.42016599906],[-71.456383,41.42050899906],[-71.456253,41.42150899906],[-71.456223,41.42170699906],[-71.456169,41.42215699906],[-71.456139,41.42235899906],[-71.455997,41.42255999906],[-71.455971,41.42259599906],[-71.455872,41.42267999906],[-71.456009,41.42270699906],[-71.456213,41.42273499906],[-71.456551,41.42277499906],[-71.456879,41.42283199906],[-71.457069,41.42287399906],[-71.457687,41.42303099906],[-71.458099,41.42312999906],[-71.458405,41.42320299906],[-71.458636,41.42326299906],[-71.459091,41.42338199906],[-71.459305,41.42343899906],[-71.459366,41.42344999906],[-71.459835,41.42355599906],[-71.460243,41.42364899906],[-71.460632,41.42373299906],[-71.460754,41.42379399906],[-71.460815,41.42389299906],[-71.460907,41.42398499906],[-71.460969,41.42401499906],[-71.461578,41.42430899906],[-71.461861,41.42443499906],[-71.462164,41.42456699906],[-71.462342,41.42464499906],[-71.462891,41.42488499906],[-71.46373,41.42524699906],[-71.464134,41.42536199906],[-71.464928,41.42553699906],[-71.46521,41.42559799906],[-71.466248,41.42583499906],[-71.467362,41.42609399906],[-71.467987,41.42623899906],[-71.468681,41.42637699906],[-71.46994,41.42663599906],[-71.470558,41.42676899906],[-71.470749,41.42682599906],[-71.471046,41.42697099906],[-71.47197,41.42764299906],[-71.472656,41.42811999906],[-71.472972,41.42824399906],[-71.473433,41.42842399906],[-71.473623,41.42849899906],[-71.473883,41.42860299906],[-71.474168,41.42872099906],[-71.474386,41.42881499906],[-71.474678,41.42895099906],[-71.475372,41.42945899906],[-71.475466,41.42950699906],[-71.475578,41.42956499906],[-71.475899,41.42969099906],[-71.476295,41.42981699906],[-71.476486,41.42987099906],[-71.476616,41.42988999906],[-71.477333,41.43003499906],[-71.477837,41.43013799906],[-71.479095,41.43039299906],[-71.479927,41.43057599906],[-71.480225,41.43064499906],[-71.480574,41.43070999906],[-71.481049,41.43079799906],[-71.481077,41.43080299906],[-71.481209,41.43082399906],[-71.481139,41.43055499906],[-71.481114,41.43040799906],[-71.480852,41.42859099906],[-71.480821,41.42832599906],[-71.480803,41.42812599906],[-71.48079,41.42795999906],[-71.480787,41.42780499906],[-71.480783,41.42744199906],[-71.480808,41.42711199906],[-71.480873,41.42673599906],[-71.480979,41.42616999906],[-71.48102,41.42596299906],[-71.481056,41.42578499906],[-71.481094,41.42559799906],[-71.481117,41.42550999906],[-71.481201,41.42498399906],[-71.481247,41.42449599906],[-71.481261,41.42430299906],[-71.481293,41.42386599906],[-71.481295,41.42380999906],[-71.481324,41.42330299906],[-71.481337,41.42312399906],[-71.481346,41.42299299906],[-71.481361,41.42283199906],[-71.4814,41.42235199906],[-71.481415,41.42201999906],[-71.481415,41.42184799906],[-71.4814,41.42153899906],[-71.4814,41.42150499906],[-71.481377,41.42131399906],[-71.481361,41.42112399906],[-71.481331,41.42093299906],[-71.481285,41.42069999906],[-71.481163,41.42024599906],[-71.481133,41.42016999906],[-71.481064,41.41997499906],[-71.480957,41.41970799906],[-71.480865,41.41951799906],[-71.480835,41.41944499906],[-71.480721,41.41923499906],[-71.480659,41.41912499906],[-71.480469,41.41881199906],[-71.48027,41.41849899906],[-71.480255,41.41846799906],[-71.479942,41.41798399906],[-71.479845,41.41782699906],[-71.479782,41.41772499906],[-71.479652,41.41750699906],[-71.479401,41.41710699906],[-71.47921,41.41682099906],[-71.478867,41.41625999906],[-71.478808,41.41615499906],[-71.478714,41.41598899906],[-71.478577,41.41570999906],[-71.478477,41.41545499906],[-71.478394,41.41519899906],[-71.478325,41.41493599906],[-71.478279,41.41465399906],[-71.478249,41.41408499906],[-71.478241,41.41378399906],[-71.478256,41.41318099906],[-71.478249,41.41268499906],[-71.478249,41.41121699906],[-71.478256,41.41075099906],[-71.478256,41.40982799906],[-71.478249,41.40943499906],[-71.478249,41.40830999906],[-71.478256,41.40796999906],[-71.478256,41.40739799906],[-71.478271,41.40714299906],[-71.478294,41.40689799906],[-71.478371,41.40640999906],[-71.478432,41.40616599906],[-71.4785,41.40592199906],[-71.478661,41.40542999906],[-71.478752,41.40518199906],[-71.479004,41.40444899906],[-71.479027,41.40436199906],[-71.479149,41.40402199906],[-71.479156,41.40399199906],[-71.47924,41.40377399906],[-71.479279,41.40362899906],[-71.479301,41.40355699906],[-71.479362,41.40325199906],[-71.479416,41.40277099906],[-71.479431,41.40254999906],[-71.479439,41.40232499906],[-71.479439,41.40161099906],[-71.479446,41.40127599906],[-71.479477,41.40086399906],[-71.47953,41.40041699906],[-71.47953,41.40038699906],[-71.479584,41.40010799906],[-71.479647,41.39982099906],[-71.47966,41.39976499906],[-71.479729,41.39953999906],[-71.479881,41.39908999906],[-71.479916,41.39900799906],[-71.479958,41.39891099906],[-71.480019,41.39875799906],[-71.480179,41.39842999906],[-71.480242,41.39830699906],[-71.48056,41.39769699906],[-71.48101,41.39689299906],[-71.481952,41.39523799906],[-71.482255,41.39470699906],[-71.482427,41.39455199906]]]}}"}, +{"type": "blockgroup", "typeId": 515041, "areaId": 29452, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.52343,41.37588699906],[-71.522159,41.37579999906],[-71.517656,41.37399799906],[-71.518456,41.37271499906],[-71.519877,41.37043699906],[-71.516695,41.35853899906],[-71.512011,41.35227499906],[-71.506006,41.35182399906],[-71.497059,41.35682599906],[-71.491774,41.35727699906],[-71.484508,41.35957599906],[-71.480305,41.35903499906],[-71.479464,41.35988999906],[-71.48054,41.36092599906],[-71.481474,41.36197399906],[-71.481717,41.36227499906],[-71.481873,41.36246699906],[-71.481973,41.36257499906],[-71.482062,41.36266599906],[-71.482132,41.36272299906],[-71.482208,41.36277199906],[-71.482368,41.36287099906],[-71.482522,41.36303399906],[-71.482605,41.36312099906],[-71.482681,41.36320899906],[-71.48288,41.36339199906],[-71.483002,41.36349099906],[-71.483261,41.36364399906],[-71.484184,41.36416199906],[-71.484421,41.36428799906],[-71.484741,41.36442199906],[-71.485252,41.36458199906],[-71.485535,41.36466599906],[-71.485825,41.36475399906],[-71.486107,41.36484499906],[-71.486221,41.36488699906],[-71.486389,41.36497099906],[-71.486481,41.36502499906],[-71.486549,41.36506999906],[-71.486603,41.36511599906],[-71.486732,41.36524999906],[-71.486783,41.36531799906],[-71.486829,41.36539699906],[-71.486901,41.36555599906],[-71.486901,41.36561999906],[-71.486889,41.36568399906],[-71.486847,41.36582599906],[-71.486757,41.36605499906],[-71.486542,41.36670699906],[-71.486458,41.36704599906],[-71.486343,41.36769499906],[-71.486221,41.36832799906],[-71.486206,41.36844999906],[-71.486015,41.36942299906],[-71.485817,41.37049899906],[-71.485813,41.37052099906],[-71.485743,41.37088999906],[-71.485641,41.37143299906],[-71.485634,41.37146799906],[-71.485611,41.37173499906],[-71.485602,41.37193699906],[-71.485596,41.37209699906],[-71.485611,41.37284899906],[-71.485626,41.37305799906],[-71.486038,41.37312699906],[-71.486549,41.37319899906],[-71.486726,41.37322799906],[-71.486877,41.37325299906],[-71.487076,41.37329499906],[-71.487274,41.37334799906],[-71.487419,41.37339799906],[-71.487671,41.37351199906],[-71.487862,41.37363099906],[-71.487999,41.37372599906],[-71.488152,41.37385599906],[-71.488205,41.37391299906],[-71.488235,41.37395499906],[-71.488274,41.37400099906],[-71.488319,41.37405399906],[-71.48835,41.37409999906],[-71.488365,41.37412199906],[-71.488434,41.37422599906],[-71.488503,41.37434399906],[-71.488571,41.37451599906],[-71.488602,41.37467599906],[-71.488617,41.37477899906],[-71.488655,41.37535499906],[-71.488663,41.37555299906],[-71.488686,41.37576699906],[-71.488701,41.37619399906],[-71.488693,41.37644599906],[-71.488686,41.37663299906],[-71.488647,41.37693399906],[-71.488579,41.37736499906],[-71.48851,41.37773899906],[-71.490188,41.37802999906],[-71.492279,41.37839499906],[-71.493288,41.37856099906],[-71.495842,41.37898299906],[-71.497772,41.37929199906],[-71.49865,41.37942499906],[-71.499176,41.37950899906],[-71.499702,41.37960099906],[-71.501991,41.37998199906],[-71.503586,41.38025299906],[-71.504875,41.38045099906],[-71.505424,41.38053899906],[-71.506523,41.38072599906],[-71.506854,41.38078599906],[-71.507324,41.38087099906],[-71.508163,41.38100399906],[-71.508606,41.38110399906],[-71.508796,41.38116099906],[-71.508921,41.38122699906],[-71.50872,41.38155699906],[-71.508224,41.38248099906],[-71.507396,41.38399099906],[-71.507281,41.38416199906],[-71.507368,41.38413699906],[-71.50791,41.38423399906],[-71.50843,41.38420599906],[-71.509965,41.38412999906],[-71.5113,41.38414799906],[-71.512211,41.38424299906],[-71.51464,41.38478999906],[-71.517312,41.38213599906],[-71.517632,41.38174399906],[-71.518629,41.38090299906],[-71.519392,41.38020399906],[-71.519546,41.37993799906],[-71.52014,41.37903499906],[-71.520177,41.37901199906],[-71.520224,41.37896299906],[-71.520308,41.37892999906],[-71.520397,41.37886399906],[-71.520434,41.37883699906],[-71.520488,41.37878699906],[-71.520538,41.37872899906],[-71.520611,41.37861699906],[-71.520737,41.37846699906],[-71.520739,41.37843199906],[-71.521591,41.37752899906],[-71.522706,41.37681499906],[-71.52343,41.37588699906]]]}}"}, +{"type": "blockgroup", "typeId": 515042, "areaId": 29453, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.488701,41.37619399906],[-71.488686,41.37576699906],[-71.488663,41.37555299906],[-71.488655,41.37535499906],[-71.488617,41.37477899906],[-71.488602,41.37467599906],[-71.488571,41.37451599906],[-71.488503,41.37434399906],[-71.488434,41.37422599906],[-71.488365,41.37412199906],[-71.48835,41.37409999906],[-71.488319,41.37405399906],[-71.488274,41.37400099906],[-71.488235,41.37395499906],[-71.488205,41.37391299906],[-71.488152,41.37385599906],[-71.487999,41.37372599906],[-71.487862,41.37363099906],[-71.487671,41.37351199906],[-71.487419,41.37339799906],[-71.487274,41.37334799906],[-71.487076,41.37329499906],[-71.486877,41.37325299906],[-71.486726,41.37322799906],[-71.486549,41.37319899906],[-71.486038,41.37312699906],[-71.485626,41.37305799906],[-71.485611,41.37284899906],[-71.485596,41.37209699906],[-71.485602,41.37193699906],[-71.485611,41.37173499906],[-71.485634,41.37146799906],[-71.485641,41.37143299906],[-71.485743,41.37088999906],[-71.485813,41.37052099906],[-71.485817,41.37049899906],[-71.486015,41.36942299906],[-71.486206,41.36844999906],[-71.486221,41.36832799906],[-71.486343,41.36769499906],[-71.486458,41.36704599906],[-71.486542,41.36670699906],[-71.486757,41.36605499906],[-71.486847,41.36582599906],[-71.486889,41.36568399906],[-71.486901,41.36561999906],[-71.486901,41.36555599906],[-71.486829,41.36539699906],[-71.486783,41.36531799906],[-71.486732,41.36524999906],[-71.486603,41.36511599906],[-71.486549,41.36506999906],[-71.486481,41.36502499906],[-71.486389,41.36497099906],[-71.486221,41.36488699906],[-71.486107,41.36484499906],[-71.485825,41.36475399906],[-71.485535,41.36466599906],[-71.485252,41.36458199906],[-71.484741,41.36442199906],[-71.484421,41.36428799906],[-71.484184,41.36416199906],[-71.483261,41.36364399906],[-71.483002,41.36349099906],[-71.48288,41.36339199906],[-71.482681,41.36320899906],[-71.482605,41.36312099906],[-71.482522,41.36303399906],[-71.482368,41.36287099906],[-71.482208,41.36277199906],[-71.482132,41.36272299906],[-71.482062,41.36266599906],[-71.481973,41.36257499906],[-71.481873,41.36246699906],[-71.481717,41.36227499906],[-71.481474,41.36197399906],[-71.48054,41.36092599906],[-71.479464,41.35988999906],[-71.478805,41.36147499906],[-71.478097,41.36318299906],[-71.481039,41.36764399906],[-71.480919,41.37151999906],[-71.477436,41.37589199906],[-71.473352,41.38346299906],[-71.473336,41.38535099906],[-71.472692,41.38710699906],[-71.469549,41.38986799906],[-71.468802,41.39125399906],[-71.470167,41.39168799906],[-71.470772,41.39209399906],[-71.470871,41.39203999906],[-71.471031,41.39201699906],[-71.471191,41.39202499906],[-71.471359,41.39206299906],[-71.471805,41.39222299906],[-71.472137,41.39234199906],[-71.47216,41.39235299906],[-71.472368,41.39242599906],[-71.472496,41.39247099906],[-71.472783,41.39257199906],[-71.472931,41.39262399906],[-71.473389,41.39277999906],[-71.473751,41.39290499906],[-71.474197,41.39305899906],[-71.474663,41.39318499906],[-71.47538,41.39331799906],[-71.475932,41.39341399906],[-71.476578,41.39352799906],[-71.478784,41.39389899906],[-71.478929,41.39392399906],[-71.479759,41.39405799906],[-71.480209,41.39413499906],[-71.480385,41.39416099906],[-71.480484,41.39417999906],[-71.481377,41.39432499906],[-71.482353,41.39453499906],[-71.483414,41.39262799906],[-71.483734,41.39212799906],[-71.484245,41.39115499906],[-71.484344,41.39091099906],[-71.484451,41.39066699906],[-71.484543,41.39044199906],[-71.484833,41.38962899906],[-71.485008,41.38915299906],[-71.485352,41.38826799906],[-71.485512,41.38779399906],[-71.485748,41.38716899906],[-71.485809,41.38699299906],[-71.485936,41.38662899906],[-71.486031,41.38635999906],[-71.486076,41.38624599906],[-71.486298,41.38561599906],[-71.486443,41.38518099906],[-71.486572,41.38484599906],[-71.486931,41.38374699906],[-71.487076,41.38328599906],[-71.487259,41.38275099906],[-71.487335,41.38250699906],[-71.487358,41.38245799906],[-71.487401,41.38231899906],[-71.487656,41.38151599906],[-71.487808,41.38109599906],[-71.4879,41.38080599906],[-71.487991,41.38054299906],[-71.48802,41.38042999906],[-71.488037,41.38036699906],[-71.488052,41.38032499906],[-71.488091,41.38016899906],[-71.488113,41.38003499906],[-71.488144,41.37990599906],[-71.488213,41.37955899906],[-71.488281,41.37909699906],[-71.488426,41.37823499906],[-71.488472,41.37798299906],[-71.488487,41.37786899906],[-71.48851,41.37773899906],[-71.488579,41.37736499906],[-71.488647,41.37693399906],[-71.488686,41.37663299906],[-71.488693,41.37644599906],[-71.488701,41.37619399906]]]}}"}, +{"type": "blockgroup", "typeId": 515043, "areaId": 29454, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.51464,41.38478999906],[-71.512211,41.38424299906],[-71.5113,41.38414799906],[-71.509965,41.38412999906],[-71.50843,41.38420599906],[-71.50791,41.38423399906],[-71.507368,41.38413699906],[-71.507281,41.38416199906],[-71.507396,41.38399099906],[-71.508224,41.38248099906],[-71.50872,41.38155699906],[-71.508921,41.38122699906],[-71.508796,41.38116099906],[-71.508606,41.38110399906],[-71.508163,41.38100399906],[-71.507324,41.38087099906],[-71.506854,41.38078599906],[-71.506523,41.38072599906],[-71.505424,41.38053899906],[-71.504875,41.38045099906],[-71.503586,41.38025299906],[-71.501991,41.37998199906],[-71.499702,41.37960099906],[-71.499176,41.37950899906],[-71.49865,41.37942499906],[-71.497772,41.37929199906],[-71.495842,41.37898299906],[-71.493288,41.37856099906],[-71.492279,41.37839499906],[-71.490188,41.37802999906],[-71.48851,41.37773899906],[-71.488487,41.37786899906],[-71.488472,41.37798299906],[-71.488426,41.37823499906],[-71.488281,41.37909699906],[-71.488213,41.37955899906],[-71.488144,41.37990599906],[-71.488113,41.38003499906],[-71.488091,41.38016899906],[-71.488052,41.38032499906],[-71.488037,41.38036699906],[-71.48802,41.38042999906],[-71.487991,41.38054299906],[-71.4879,41.38080599906],[-71.487808,41.38109599906],[-71.487656,41.38151599906],[-71.487401,41.38231899906],[-71.487358,41.38245799906],[-71.487335,41.38250699906],[-71.487259,41.38275099906],[-71.487076,41.38328599906],[-71.486931,41.38374699906],[-71.486572,41.38484599906],[-71.486443,41.38518099906],[-71.486298,41.38561599906],[-71.486076,41.38624599906],[-71.486031,41.38635999906],[-71.485936,41.38662899906],[-71.485809,41.38699299906],[-71.485748,41.38716899906],[-71.485512,41.38779399906],[-71.485352,41.38826799906],[-71.485008,41.38915299906],[-71.484833,41.38962899906],[-71.484543,41.39044199906],[-71.484451,41.39066699906],[-71.484344,41.39091099906],[-71.484245,41.39115499906],[-71.483734,41.39212799906],[-71.483971,41.39219999906],[-71.484459,41.39231899906],[-71.48465,41.39234899906],[-71.484833,41.39234499906],[-71.485023,41.39231899906],[-71.485184,41.39228399906],[-71.485367,41.39226899906],[-71.485458,41.39227299906],[-71.485588,41.39229199906],[-71.486183,41.39235299906],[-71.486969,41.39245599906],[-71.487968,41.39261199906],[-71.488045,41.39262799906],[-71.488762,41.39274599906],[-71.488983,41.39276499906],[-71.488919,41.39284399906],[-71.488877,41.39287299906],[-71.4892,41.39304599906],[-71.489744,41.39308699906],[-71.489775,41.39318199906],[-71.490611,41.39305099906],[-71.490714,41.39296399906],[-71.491604,41.39234999906],[-71.492347,41.39236599906],[-71.493532,41.39335999906],[-71.494104,41.39409799906],[-71.494887,41.39516899906],[-71.495641,41.39701399906],[-71.496201,41.39843799906],[-71.496886,41.39898199906],[-71.498229,41.39901099906],[-71.49948,41.39903799906],[-71.499538,41.39903999906],[-71.50839,41.39919799906],[-71.514516,41.38490599906],[-71.51464,41.38478999906]]]}}"}, +{"type": "blockgroup", "typeId": 515044, "areaId": 29455, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.50839,41.39919799906],[-71.499538,41.39903999906],[-71.49948,41.39903799906],[-71.498229,41.39901099906],[-71.496886,41.39898199906],[-71.496201,41.39843799906],[-71.495641,41.39701399906],[-71.494887,41.39516899906],[-71.494104,41.39409799906],[-71.493532,41.39335999906],[-71.492347,41.39236599906],[-71.491604,41.39234999906],[-71.490714,41.39296399906],[-71.490611,41.39305099906],[-71.489775,41.39318199906],[-71.489744,41.39308699906],[-71.4892,41.39304599906],[-71.488877,41.39287299906],[-71.488919,41.39284399906],[-71.488983,41.39276499906],[-71.488762,41.39274599906],[-71.488045,41.39262799906],[-71.487968,41.39261199906],[-71.486969,41.39245599906],[-71.486183,41.39235299906],[-71.485588,41.39229199906],[-71.485458,41.39227299906],[-71.485367,41.39226899906],[-71.485184,41.39228399906],[-71.485023,41.39231899906],[-71.484833,41.39234499906],[-71.48465,41.39234899906],[-71.484459,41.39231899906],[-71.483971,41.39219999906],[-71.483734,41.39212799906],[-71.483414,41.39262799906],[-71.482353,41.39453499906],[-71.482427,41.39455199906],[-71.482255,41.39470699906],[-71.481952,41.39523799906],[-71.48101,41.39689299906],[-71.48056,41.39769699906],[-71.480242,41.39830699906],[-71.480179,41.39842999906],[-71.480019,41.39875799906],[-71.479958,41.39891099906],[-71.479916,41.39900799906],[-71.479881,41.39908999906],[-71.479729,41.39953999906],[-71.47966,41.39976499906],[-71.479647,41.39982099906],[-71.479584,41.40010799906],[-71.47953,41.40038699906],[-71.47953,41.40041699906],[-71.479477,41.40086399906],[-71.479446,41.40127599906],[-71.479439,41.40161099906],[-71.479439,41.40232499906],[-71.479431,41.40254999906],[-71.479416,41.40277099906],[-71.479362,41.40325199906],[-71.479301,41.40355699906],[-71.479279,41.40362899906],[-71.47924,41.40377399906],[-71.479156,41.40399199906],[-71.479149,41.40402199906],[-71.479027,41.40436199906],[-71.479004,41.40444899906],[-71.478752,41.40518199906],[-71.478661,41.40542999906],[-71.4785,41.40592199906],[-71.478432,41.40616599906],[-71.478371,41.40640999906],[-71.478294,41.40689799906],[-71.478271,41.40714299906],[-71.478256,41.40739799906],[-71.478256,41.40796999906],[-71.478249,41.40830999906],[-71.478249,41.40943499906],[-71.478256,41.40982799906],[-71.478256,41.41075099906],[-71.478249,41.41121699906],[-71.478249,41.41268499906],[-71.478256,41.41318099906],[-71.478241,41.41378399906],[-71.478249,41.41408499906],[-71.478279,41.41465399906],[-71.478325,41.41493599906],[-71.478394,41.41519899906],[-71.478477,41.41545499906],[-71.478577,41.41570999906],[-71.478714,41.41598899906],[-71.478808,41.41615499906],[-71.478867,41.41625999906],[-71.47921,41.41682099906],[-71.479401,41.41710699906],[-71.479652,41.41750699906],[-71.479782,41.41772499906],[-71.479845,41.41782699906],[-71.479942,41.41798399906],[-71.480255,41.41846799906],[-71.48027,41.41849899906],[-71.480469,41.41881199906],[-71.480659,41.41912499906],[-71.480721,41.41923499906],[-71.480835,41.41944499906],[-71.480865,41.41951799906],[-71.480957,41.41970799906],[-71.481064,41.41997499906],[-71.481133,41.42016999906],[-71.481163,41.42024599906],[-71.481285,41.42069999906],[-71.481331,41.42093299906],[-71.481361,41.42112399906],[-71.481377,41.42131399906],[-71.4814,41.42150499906],[-71.4814,41.42153899906],[-71.481415,41.42184799906],[-71.481415,41.42201999906],[-71.4814,41.42235199906],[-71.481361,41.42283199906],[-71.481346,41.42299299906],[-71.481337,41.42312399906],[-71.481324,41.42330299906],[-71.481295,41.42380999906],[-71.481293,41.42386599906],[-71.481261,41.42430299906],[-71.481247,41.42449599906],[-71.481201,41.42498399906],[-71.481117,41.42550999906],[-71.481094,41.42559799906],[-71.481056,41.42578499906],[-71.48102,41.42596299906],[-71.480979,41.42616999906],[-71.480873,41.42673599906],[-71.480808,41.42711199906],[-71.480783,41.42744199906],[-71.480787,41.42780499906],[-71.48079,41.42795999906],[-71.480803,41.42812599906],[-71.480821,41.42832599906],[-71.480852,41.42859099906],[-71.481114,41.43040799906],[-71.481139,41.43055499906],[-71.481209,41.43082399906],[-71.48175,41.43093899906],[-71.482391,41.43105699906],[-71.482964,41.43116799906],[-71.48349,41.43126699906],[-71.48436,41.43142299906],[-71.484543,41.43144999906],[-71.484894,41.43150699906],[-71.485069,41.43152999906],[-71.485268,41.43155699906],[-71.48645,41.43169099906],[-71.487227,41.43172599906],[-71.488464,41.43170899906],[-71.489594,41.43167099906],[-71.489723,41.43167499906],[-71.4898,41.43168299906],[-71.489838,41.43168299906],[-71.489853,41.43168499906],[-71.48996,41.43170199906],[-71.489991,41.43171399906],[-71.491373,41.43024499906],[-71.491536,41.43006899906],[-71.491601,41.42999999906],[-71.491614,41.42997999906],[-71.491758,41.42976499906],[-71.491899,41.42955099906],[-71.492,41.42939999906],[-71.492203,41.42905499906],[-71.492401,41.42870099906],[-71.492801,41.42830099906],[-71.494802,41.42730099906],[-71.495501,41.42410099906],[-71.495801,41.42260099906],[-71.497101,41.41750199906],[-71.499502,41.41760199906],[-71.499828,41.41760099906],[-71.503202,41.41760099906],[-71.504766,41.40781699906],[-71.504827,41.40751199906],[-71.505063,41.40696099906],[-71.506847,41.40279799906],[-71.50839,41.39919799906]]]}}"}, +{"type": "blockgroup", "typeId": 9800001, "areaId": 29456, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.442764,41.71973499906],[-71.44203,41.71935999906],[-71.441978,41.71933299906],[-71.441902,41.71929399906],[-71.441281,41.71895499906],[-71.440964,41.71878199906],[-71.44088,41.71873499906],[-71.439919,41.71819699906],[-71.439072,41.71772799906],[-71.438632,41.71748099906],[-71.438339,41.71731599906],[-71.437057,41.71661399906],[-71.436676,41.71640999906],[-71.438454,41.71450799906],[-71.43882,41.71395499906],[-71.44149,41.71051199906],[-71.441261,41.71048099906],[-71.441013,41.71044499906],[-71.440407,41.71035499906],[-71.440269,41.71033599906],[-71.439995,41.71030099906],[-71.439926,41.71028399906],[-71.439766,41.71025599906],[-71.439651,41.71023199906],[-71.439545,41.71020699906],[-71.439438,41.71016899906],[-71.439323,41.71013999906],[-71.439255,41.71011899906],[-71.439224,41.71010599906],[-71.439125,41.71007599906],[-71.438919,41.70999099906],[-71.438805,41.70993899906],[-71.438698,41.70988299906],[-71.438202,41.70964099906],[-71.43753,41.70931299906],[-71.436386,41.70877899906],[-71.436226,41.70870099906],[-71.436081,41.70863299906],[-71.436028,41.70872399906],[-71.435941,41.70889699906],[-71.435815,41.70911899906],[-71.435341,41.70974299906],[-71.434948,41.71023599906],[-71.43435,41.71098699906],[-71.433808,41.71167399906],[-71.433737,41.71175999906],[-71.433268,41.71234199906],[-71.432927,41.71279899906],[-71.432877,41.71286599906],[-71.432411,41.71346999906],[-71.432106,41.71385899906],[-71.431931,41.71406499906],[-71.431816,41.71421599906],[-71.431656,41.71438199906],[-71.431503,41.71453399906],[-71.43129,41.71472699906],[-71.430817,41.71511999906],[-71.430573,41.71533299906],[-71.43026,41.71559099906],[-71.430054,41.71574399906],[-71.429909,41.71587299906],[-71.429848,41.71591999906],[-71.426668,41.72013299906],[-71.426582,41.72023499906],[-71.426514,41.72031299906],[-71.426445,41.72040899906],[-71.426399,41.72046899906],[-71.426369,41.72054099906],[-71.426338,41.72061899906],[-71.426315,41.72069599906],[-71.426285,41.72081299906],[-71.426262,41.72093999906],[-71.426239,41.72103099906],[-71.426231,41.72108499906],[-71.426208,41.72113499906],[-71.426201,41.72116599906],[-71.426178,41.72118899906],[-71.426155,41.72120799906],[-71.426125,41.72122699906],[-71.426071,41.72125499906],[-71.425438,41.72095699906],[-71.42482,41.72065099906],[-71.424682,41.72044199906],[-71.424591,41.72043499906],[-71.424393,41.72041199906],[-71.424301,41.72039599906],[-71.42421,41.72038399906],[-71.424126,41.72036399906],[-71.424049,41.72034299906],[-71.423966,41.72030799906],[-71.423889,41.72028799906],[-71.42382,41.72026699906],[-71.423767,41.72023199906],[-71.423706,41.72018299906],[-71.423645,41.72013999906],[-71.423538,41.72003399906],[-71.423493,41.71997599906],[-71.423439,41.71992799906],[-71.423393,41.71988399906],[-71.423347,41.71983499906],[-71.423286,41.71972799906],[-71.423218,41.71969399906],[-71.423149,41.71967699906],[-71.423073,41.71967899906],[-71.422806,41.71972099906],[-71.422729,41.71971799906],[-71.422645,41.71969699906],[-71.422577,41.71966699906],[-71.422524,41.71963199906],[-71.42247,41.71959299906],[-71.422401,41.71954899906],[-71.422333,41.71951399906],[-71.422264,41.71947099906],[-71.422203,41.71944499906],[-71.422134,41.71940099906],[-71.422089,41.71936199906],[-71.42205,41.71930399906],[-71.422028,41.71923699906],[-71.421997,41.71916599906],[-71.421959,41.71910799906],[-71.421906,41.71905099906],[-71.421845,41.71900699906],[-71.421723,41.71893699906],[-71.421692,41.71892399906],[-71.421608,41.71892599906],[-71.421524,41.71893199906],[-71.421425,41.71895699906],[-71.421341,41.71895399906],[-71.421265,41.71893799906],[-71.421219,41.71887999906],[-71.421173,41.71883199906],[-71.421097,41.71880199906],[-71.421021,41.71878999906],[-71.420952,41.71876399906],[-71.420883,41.71872099906],[-71.42083,41.71867199906],[-71.420776,41.71861999906],[-71.420731,41.71858899906],[-71.420639,41.71853699906],[-71.420585,41.71849299906],[-71.420509,41.71844499906],[-71.420433,41.71841099906],[-71.420342,41.71838099906],[-71.420265,41.71834699906],[-71.420212,41.71831199906],[-71.420158,41.71826799906],[-71.42009,41.71822399906],[-71.420021,41.71818099906],[-71.41996,41.71814099906],[-71.419899,41.71809799906],[-71.419884,41.71804799906],[-71.419892,41.71802999906],[-71.419937,41.71798899906],[-71.420013,41.71795099906],[-71.420059,41.71791399906],[-71.420227,41.71782099906],[-71.420311,41.71783199906],[-71.42038,41.71781699906],[-71.420456,41.71778899906],[-71.420517,41.71773799906],[-71.420578,41.71769199906],[-71.420639,41.71766799906],[-71.420685,41.71762599906],[-71.420784,41.71764699906],[-71.42086,41.71765899906],[-71.420929,41.71767099906],[-71.42102,41.71769099906],[-71.421089,41.71771199906],[-71.421173,41.71773299906],[-71.421295,41.71779399906],[-71.421364,41.71781899906],[-71.42144,41.71782599906],[-71.421509,41.71779799906],[-71.421555,41.71772499906],[-71.421585,41.71766999906],[-71.421616,41.71761999906],[-71.421646,41.71756099906],[-71.421677,41.71749299906],[-71.421707,41.71744299906],[-71.42173,41.71739299906],[-71.421761,41.71731999906],[-71.421814,41.71725599906],[-71.421906,41.71722199906],[-71.421974,41.71720299906],[-71.422043,41.71717399906],[-71.422112,41.71714099906],[-71.422195,41.71711299906],[-71.422272,41.71709299906],[-71.422348,41.71709599906],[-71.422417,41.71709399906],[-71.422501,41.71708799906],[-71.422561,41.71705099906],[-71.422623,41.71702299906],[-71.422684,41.71698099906],[-71.422745,41.71694799906],[-71.422829,41.71693299906],[-71.422913,41.71693099906],[-71.422981,41.71689299906],[-71.423019,41.71686099906],[-71.423065,41.71684199906],[-71.423141,41.71683999906],[-71.423225,41.71683899906],[-71.423309,41.71683199906],[-71.422205,41.71679799906],[-71.422105,41.71640199906],[-71.421406,41.71629399906],[-71.419552,41.71394199906],[-71.417893,41.71183799906],[-71.417338,41.71143599906],[-71.415615,41.71206999906],[-71.413132,41.71298499906],[-71.413415,41.71401699906],[-71.413345,41.71408299906],[-71.413281,41.71407599906],[-71.412988,41.71426399906],[-71.414315,41.71539599906],[-71.414365,41.71543999906],[-71.414428,41.71548799906],[-71.414803,41.71572699906],[-71.415099,41.71593899906],[-71.415232,41.71606399906],[-71.415291,41.71616599906],[-71.415254,41.71626999906],[-71.415514,41.71702799906],[-71.41597,41.71924799906],[-71.417145,41.72113099906],[-71.41718,41.72206499906],[-71.41723,41.72237299906],[-71.417718,41.72247299906],[-71.418509,41.72263499906],[-71.418541,41.72283199906],[-71.418943,41.72301599906],[-71.419342,41.72319799906],[-71.419266,41.72359999906],[-71.419231,41.72375799906],[-71.420041,41.72384999906],[-71.420097,41.72390199906],[-71.419968,41.72449499906],[-71.420334,41.72448299906],[-71.420853,41.72447599906],[-71.420937,41.72448799906],[-71.420967,41.72451899906],[-71.420982,41.72457299906],[-71.420975,41.72460399906],[-71.420929,41.72485299906],[-71.420769,41.72555899906],[-71.42054,41.72663099906],[-71.42038,41.72747199906],[-71.420365,41.72748999906],[-71.420326,41.72750499906],[-71.420273,41.72751899906],[-71.420235,41.72751999906],[-71.420174,41.72751699906],[-71.419708,41.72746399906],[-71.419449,41.72742899906],[-71.419334,41.72741699906],[-71.419258,41.72771599906],[-71.419174,41.72806899906],[-71.418297,41.72801599906],[-71.417864,41.72802199906],[-71.41742,41.72802999906],[-71.416527,41.72796699906],[-71.415742,41.72802399906],[-71.414734,41.72898699906],[-71.416584,41.73314899906],[-71.417793,41.73310999906],[-71.419334,41.73306399906],[-71.419708,41.73305599906],[-71.421501,41.73300499906],[-71.421791,41.73299899906],[-71.42363,41.73293799906],[-71.425896,41.73286699906],[-71.426895,41.73283299906],[-71.427445,41.73281699906],[-71.427833,41.73280799906],[-71.429756,41.73274999906],[-71.430572,41.73271899906],[-71.43116,41.73270199906],[-71.432244,41.73267899906],[-71.433121,41.73264699906],[-71.434418,41.73260599906],[-71.43567,41.73257899906],[-71.436371,41.73256499906],[-71.436501,41.73256199906],[-71.4366,41.73226299906],[-71.436829,41.73161099906],[-71.437064,41.73096299906],[-71.437325,41.73032299906],[-71.437402,41.73012599906],[-71.43773,41.72930399906],[-71.438032,41.72858899906],[-71.438327,41.72789999906],[-71.438413,41.72767199906],[-71.438451,41.72758499906],[-71.438576,41.72728499906],[-71.438647,41.72713799906],[-71.43876,41.72681999906],[-71.438778,41.72676799906],[-71.438845,41.72659999906],[-71.439023,41.72616699906],[-71.439078,41.72602699906],[-71.439242,41.72568599906],[-71.439325,41.72550199906],[-71.439342,41.72547299906],[-71.439408,41.72534999906],[-71.439764,41.72478799906],[-71.439797,41.72473299906],[-71.439911,41.72454599906],[-71.440127,41.72410699906],[-71.440485,41.72352299906],[-71.440596,41.72333699906],[-71.440735,41.72312299906],[-71.440782,41.72303299906],[-71.440972,41.72270699906],[-71.441184,41.72234699906],[-71.441339,41.72209099906],[-71.441461,41.72188999906],[-71.441506,41.72181399906],[-71.441569,41.72170899906],[-71.441976,41.72106899906],[-71.442207,41.72066999906],[-71.442261,41.72057799906],[-71.442459,41.72024099906],[-71.442764,41.71973499906]]]}}"}, +{"type": "blockgroup", "typeId": 9900000, "areaId": 29457, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.509442,41.30773199906],[-71.50661,41.30735599906],[-71.494805,41.30735499906],[-71.489356,41.30880199906],[-71.482996,41.31097399906],[-71.479876,41.31259899906],[-71.374495,41.33901099906],[-71.258257,41.37507799906],[-71.24996,41.37771299906],[-71.124594,41.41147399906],[-71.119322,41.41332099906],[-71.10398,41.42195699906],[-71.088571,41.43131499906],[-71.115431,41.48270599906],[-71.116404,41.48456799906],[-71.117461,41.48647099906],[-71.118103,41.48752699906],[-71.121116,41.49278699906],[-71.119874,41.49460399906],[-71.119936,41.49507899906],[-71.123433,41.49476799906],[-71.128724,41.49452999906],[-71.13094,41.49374599906],[-71.133486,41.49195399906],[-71.13666,41.48989199906],[-71.136343,41.48775199906],[-71.13465,41.48394599906],[-71.135708,41.48148799906],[-71.138882,41.47855499906],[-71.141845,41.47887199906],[-71.14047,41.47736599906],[-71.141528,41.47562199906],[-71.145337,41.47514599906],[-71.146395,41.47363999906],[-71.150734,41.47371899906],[-71.15412,41.47387699906],[-71.158352,41.47387699906],[-71.158987,41.47165799906],[-71.161209,41.46959599906],[-71.16449,41.46959599906],[-71.166288,41.46824799906],[-71.165759,41.46436399906],[-71.164713,41.46080899906],[-71.169319,41.45839099906],[-71.170074,41.45838399906],[-71.173216,41.45838399906],[-71.176283,41.45771099906],[-71.180397,41.45776799906],[-71.183838,41.45782399906],[-71.18698,41.45614199906],[-71.190496,41.45445999906],[-71.195283,41.45339499906],[-71.197677,41.45473999906],[-71.198031,41.45502699906],[-71.199472,41.45619799906],[-71.200198,41.45771799906],[-71.200379,41.45798899906],[-71.200826,41.45865899906],[-71.202082,41.46129399906],[-71.202082,41.46421199906],[-71.200826,41.46722299906],[-71.197936,41.46976399906],[-71.197811,41.47249299906],[-71.19756,41.47540999906],[-71.19467,41.47879799906],[-71.195173,41.48086899906],[-71.194922,41.48350399906],[-71.197685,41.48576199906],[-71.200072,41.48811499906],[-71.202459,41.49065599906],[-71.20271,41.49357299906],[-71.202701,41.49589899906],[-71.202467,41.49594199906],[-71.205764,41.49720199906],[-71.207834,41.49737399906],[-71.209099,41.49918299906],[-71.208869,41.50167999906],[-71.207949,41.50477999906],[-71.207029,41.50710499906],[-71.206339,41.51046299906],[-71.205074,41.51321899906],[-71.203924,41.51511299906],[-71.205304,41.51649099906],[-71.207489,41.51743799906],[-71.207719,41.51890199906],[-71.207604,41.52070999906],[-71.207834,41.52243199906],[-71.209444,41.52449899906],[-71.209913,41.52527699906],[-71.211054,41.52716799906],[-71.211054,41.52932099906],[-71.210939,41.53138799906],[-71.209789,41.53353999906],[-71.209904,41.53517699906],[-71.208754,41.53750099906],[-71.207834,41.53982599906],[-71.208294,41.54163499906],[-71.21209,41.54370099906],[-71.214618,41.54486099906],[-71.216603,41.54582199906],[-71.218621,41.54619899906],[-71.218621,41.54770899906],[-71.218116,41.54874699906],[-71.21799,41.55006899906],[-71.217864,41.55157799906],[-71.217738,41.55337099906],[-71.21635,41.55478699906],[-71.215594,41.55610799906],[-71.216603,41.55733499906],[-71.221017,41.55733499906],[-71.222656,41.55837299906],[-71.223287,41.55969399906],[-71.223413,41.56139199906],[-71.221774,41.56356299906],[-71.22026,41.56469499906],[-71.218116,41.56478999906],[-71.215468,41.56337399906],[-71.214459,41.56167599906],[-71.214206,41.55997699906],[-71.212945,41.55997699906],[-71.212441,41.56054299906],[-71.212693,41.56224199906],[-71.212945,41.56450699906],[-71.212315,41.56724299906],[-71.212315,41.56922499906],[-71.211306,41.57214999906],[-71.210801,41.57450899906],[-71.211432,41.57696299906],[-71.21181,41.57790599906],[-71.211306,41.57903899906],[-71.211306,41.57979399906],[-71.211622,41.58098299906],[-71.2114,41.58103499906],[-71.211641,41.58137799906],[-71.214753,41.58254199906],[-71.217218,41.58457899906],[-71.216795,41.58724899906],[-71.214684,41.58947699906],[-71.21196,41.59151499906],[-71.21196,41.59539499906],[-71.209624,41.59587999906],[-71.20664,41.59597699906],[-71.20664,41.59675299906],[-71.209624,41.60005099906],[-71.21209,41.60441599906],[-71.214295,41.60781099906],[-71.214555,41.61236999906],[-71.214555,41.61411599906],[-71.215463,41.61363099906],[-71.217539,41.61275799906],[-71.219175,41.61283999906],[-71.219485,41.61285499906],[-71.221785,41.61356399906],[-71.222737,41.61519099906],[-71.222284,41.61729199906],[-71.219972,41.61834199906],[-71.218657,41.61840999906],[-71.218048,41.61841699906],[-71.216436,41.61840999906],[-71.214668,41.61854599906],[-71.213761,41.61908799906],[-71.21328,41.62009499906],[-71.213308,41.62132499906],[-71.214668,41.62295199906],[-71.216028,41.62373099906],[-71.217083,41.62372799906],[-71.217987,41.62352499906],[-71.219058,41.62269099906],[-71.220843,41.62175699906],[-71.224904,41.62148999906],[-71.230349,41.62105599906],[-71.232982,41.62075599906],[-71.235793,41.62008899906],[-71.237067,41.61966299906],[-71.238219,41.61857299906],[-71.238068,41.61677799906],[-71.238294,41.61492599906],[-71.238294,41.61363499906],[-71.238446,41.61233899906],[-71.238292,41.60973599906],[-71.238292,41.60659399906],[-71.237617,41.60608899906],[-71.238442,41.60535899906],[-71.239118,41.60283399906],[-71.239718,41.60002899906],[-71.240018,41.59643799906],[-71.239418,41.59565199906],[-71.240018,41.59514699906],[-71.240393,41.59262199906],[-71.239268,41.59071399906],[-71.240168,41.58858199906],[-71.240112,41.58750599906],[-71.23949,41.58636599906],[-71.23844,41.58440199906],[-71.238065,41.58349799906],[-71.23739,41.58266299906],[-71.236865,41.58187699906],[-71.23634,41.58081099906],[-71.235065,41.57952099906],[-71.234614,41.57828599906],[-71.232363,41.57741799906],[-71.231464,41.57620999906],[-71.232139,41.57491999906],[-71.232814,41.57312399906],[-71.232814,41.57144099906],[-71.232972,41.57031199906],[-71.232908,41.56894199906],[-71.23285,41.56640199906],[-71.233426,41.56454999906],[-71.234979,41.56123499906],[-71.234807,41.55981399906],[-71.234231,41.55886699906],[-71.234807,41.55718799906],[-71.234749,41.55580999906],[-71.233771,41.55490599906],[-71.232275,41.55456199906],[-71.231412,41.55352799906],[-71.231412,41.55223699906],[-71.231578,41.55179099906],[-71.231757,41.54942799906],[-71.232217,41.54796399906],[-71.233137,41.54572499906],[-71.233252,41.54357199906],[-71.232562,41.54245299906],[-71.231987,41.54159199906],[-71.233022,41.53935299906],[-71.233022,41.53435899906],[-71.231297,41.53280899906],[-71.229111,41.53229199906],[-71.227271,41.53220599906],[-71.226351,41.53099999906],[-71.226236,41.52988099906],[-71.224971,41.52876099906],[-71.225546,41.52600599906],[-71.225584,41.52590199906],[-71.226466,41.52350899906],[-71.227271,41.51971999906],[-71.228306,41.51791199906],[-71.229341,41.51730899906],[-71.229341,41.51593099906],[-71.230147,41.51420899906],[-71.230396,41.51299699906],[-71.231984,41.51222799906],[-71.232673,41.51041999906],[-71.233938,41.50843899906],[-71.235432,41.50723399906],[-71.236697,41.50585599906],[-71.236812,41.50508099906],[-71.236467,41.50490899906],[-71.236582,41.50353099906],[-71.237731,41.50189499906],[-71.237961,41.50017299906],[-71.238881,41.49836499906],[-71.240261,41.49698699906],[-71.24256,41.49423099906],[-71.244399,41.49233699906],[-71.245089,41.49087299906],[-71.244974,41.48897899906],[-71.242445,41.48708399906],[-71.236697,41.48811799906],[-71.235892,41.48725599906],[-71.234513,41.48579299906],[-71.234743,41.48260699906],[-71.235432,41.47959299906],[-71.236352,41.47847299906],[-71.237731,41.47675099906],[-71.237272,41.47545899906],[-71.238996,41.47408199906],[-71.240146,41.47339299906],[-71.241985,41.47339299906],[-71.243479,41.47313499906],[-71.244125,41.47191099906],[-71.24453,41.47110299906],[-71.244984,41.47060399906],[-71.245739,41.47038999906],[-71.24674,41.46992399906],[-71.248072,41.46992399906],[-71.249344,41.47008299906],[-71.250343,41.47092199906],[-71.250857,41.47187499906],[-71.250712,41.47258799906],[-71.250507,41.47388599906],[-71.250507,41.47604399906],[-71.249571,41.47777099906],[-71.248347,41.48025299906],[-71.248347,41.48089999906],[-71.250219,41.48235699906],[-71.253172,41.48397499906],[-71.25562,41.48521599906],[-71.259005,41.48613299906],[-71.26383,41.48731999906],[-71.26527,41.48764399906],[-71.265486,41.48640299906],[-71.265774,41.48510799906],[-71.26635,41.48354399906],[-71.26707,41.48278799906],[-71.267791,41.48160099906],[-71.268871,41.48079199906],[-71.269951,41.48025299906],[-71.271175,41.47976699906],[-71.272183,41.47884999906],[-71.272445,41.47841699906],[-71.273984,41.47739299906],[-71.275568,41.47706999906],[-71.277081,41.47723099906],[-71.278233,41.47804099906],[-71.279369,41.47909099906],[-71.280105,41.48036099906],[-71.281185,41.48251899906],[-71.282122,41.48327399906],[-71.282482,41.48456899906],[-71.283634,41.48580999906],[-71.28457,41.48678099906],[-71.285578,41.48721199906],[-71.28673,41.48715799906],[-71.288347,41.48683699906],[-71.288972,41.48656799906],[-71.290043,41.48615999906],[-71.291627,41.48529699906],[-71.292419,41.48518799906],[-71.293644,41.48437999906],[-71.294436,41.48389399906],[-71.294292,41.48227599906],[-71.294004,41.47909299906],[-71.294148,41.47650299906],[-71.294294,41.47590999906],[-71.294724,41.47477599906],[-71.294362,41.47439499906],[-71.294295,41.47323999906],[-71.294583,41.47237599906],[-71.294179,41.47188499906],[-71.293791,41.47043399906],[-71.293431,41.46919299906],[-71.293647,41.46757499906],[-71.293827,41.46743999906],[-71.294727,41.46698099906],[-71.295539,41.46643199906],[-71.29703,41.46563299906],[-71.299262,41.46552499906],[-71.300774,41.46439199906],[-71.301134,41.46277299906],[-71.300702,41.46126199906],[-71.299766,41.46120899906],[-71.299838,41.46007599906],[-71.300126,41.45888899906],[-71.300918,41.45797099906],[-71.301062,41.45651499906],[-71.30135,41.45543599906],[-71.301465,41.45459099906],[-71.301926,41.45338599906],[-71.302574,41.45273799906],[-71.302933,41.45182099906],[-71.304085,41.45176699906],[-71.305093,41.45090399906],[-71.306317,41.45025599906],[-71.307541,41.45025599906],[-71.308909,41.45004099906],[-71.309844,41.44982499906],[-71.311068,41.44960899906],[-71.312652,41.44971699906],[-71.313305,41.45067599906],[-71.313755,41.45100299906],[-71.313804,41.45103899906],[-71.314229,41.45144599906],[-71.314138,41.45206799906],[-71.31376,41.45297199906],[-71.313131,41.45375399906],[-71.312825,41.45471199906],[-71.312771,41.45521099906],[-71.313436,41.45550799906],[-71.314246,41.45550799906],[-71.314534,41.45512999906],[-71.314552,41.45467099906],[-71.314894,41.45429399906],[-71.315254,41.45402399906],[-71.315812,41.45369999906],[-71.316856,41.45324199906],[-71.318079,41.45341699906],[-71.318835,41.45395599906],[-71.318907,41.45469799906],[-71.319141,41.45495499906],[-71.319501,41.45538599906],[-71.321258,41.45630699906],[-71.32184,41.45737299906],[-71.323586,41.45800399906],[-71.32488,41.45698599906],[-71.325009,41.45582199906],[-71.323134,41.45582199906],[-71.322034,41.45485299906],[-71.322099,41.45330199906],[-71.323779,41.45215299906],[-71.324427,41.45107199906],[-71.325462,41.45044199906],[-71.327273,41.45015099906],[-71.328954,41.45044199906],[-71.329278,41.45155699906],[-71.329472,41.45218699906],[-71.329924,41.45223499906],[-71.3307,41.45165399906],[-71.331671,41.45155699906],[-71.332511,41.45150799906],[-71.332981,41.45157499906],[-71.333187,41.45138899906],[-71.332725,41.45110899906],[-71.332265,41.45048299906],[-71.332236,41.45000799906],[-71.332064,41.44939399906],[-71.33258,41.44840699906],[-71.33388,41.44732899906],[-71.33566,41.44702099906],[-71.336139,41.44748299906],[-71.337303,41.44712399906],[-71.338262,41.44727799906],[-71.339152,41.44779099906],[-71.339635,41.44820799906],[-71.340247,41.44961299906],[-71.340316,41.45033099906],[-71.341617,41.45058699906],[-71.342712,41.45104899906],[-71.344423,41.45104899906],[-71.345656,41.45033099906],[-71.34723,41.44966399906],[-71.347983,41.44873999906],[-71.349489,41.44802199906],[-71.351885,41.44771399906],[-71.352981,41.44745799906],[-71.353976,41.44718099906],[-71.35613,41.44643099906],[-71.357773,41.44612399906],[-71.359553,41.44643099906],[-71.360511,41.44725199906],[-71.361264,41.44838099906],[-71.361743,41.44913799906],[-71.361949,41.44966399906],[-71.362058,41.45056099906],[-71.362085,41.45171699906],[-71.362085,41.45294799906],[-71.362496,41.45510299906],[-71.36277,41.45628299906],[-71.364208,41.45710399906],[-71.365577,41.45782199906],[-71.366604,41.45889999906],[-71.367152,41.46002899906],[-71.367624,41.46099899906],[-71.36798,41.46154599906],[-71.367838,41.46308099906],[-71.366537,41.46523599906],[-71.365373,41.46698099906],[-71.363456,41.46795599906],[-71.361059,41.46836599906],[-71.359279,41.46857199906],[-71.357635,41.47093199906],[-71.355102,41.47206099906],[-71.352226,41.47298399906],[-71.350103,41.47344599906],[-71.345994,41.47708899906],[-71.343118,41.47950099906],[-71.342229,41.48119399906],[-71.341065,41.48278499906],[-71.339799,41.48379699906],[-71.337303,41.48445099906],[-71.334632,41.48419499906],[-71.333399,41.48265499906],[-71.333606,41.48184899906],[-71.332943,41.48073799906],[-71.331644,41.47879199906],[-71.331807,41.47708999906],[-71.332375,41.47514399906],[-71.333032,41.47381099906],[-71.329128,41.47779099906],[-71.326923,41.47863899906],[-71.326368,41.47882899906],[-71.325144,41.47927699906],[-71.323656,41.47961599906],[-71.322541,41.47963599906],[-71.320734,41.47999399906],[-71.32007,41.48011299906],[-71.32015,41.48112799906],[-71.320255,41.48251899906],[-71.320256,41.48311799906],[-71.319725,41.48337699906],[-71.320072,41.48405499906],[-71.32031,41.48484499906],[-71.320602,41.48547599906],[-71.321161,41.48602799906],[-71.321744,41.48603399906],[-71.322408,41.48621299906],[-71.322874,41.48621499906],[-71.32309,41.48574099906],[-71.323075,41.48529099906],[-71.323201,41.48448699906],[-71.323028,41.48403799906],[-71.323059,41.48327899906],[-71.323075,41.48274699906],[-71.323154,41.48253399906],[-71.32347,41.48192999906],[-71.324228,41.48123199906],[-71.325033,41.48058099906],[-71.325823,41.48013099906],[-71.326843,41.48013399906],[-71.327061,41.48009499906],[-71.327891,41.48022999906],[-71.329113,41.48078699906],[-71.330308,41.48148299906],[-71.331929,41.48301599906],[-71.332115,41.48460799906],[-71.332407,41.48673699906],[-71.331982,41.48856799906],[-71.331544,41.49066599906],[-71.331702,41.49248899906],[-71.329964,41.49438199906],[-71.326741,41.49528099906],[-71.325225,41.49435799906],[-71.324279,41.49369599906],[-71.324214,41.49429899906],[-71.323662,41.49926399906],[-71.323425,41.49942299906],[-71.323539,41.49942599906],[-71.323715,41.49943599906],[-71.323905,41.49944999906],[-71.323992,41.49945999906],[-71.324003,41.49952399906],[-71.324041,41.50015699906],[-71.324893,41.50077899906],[-71.328432,41.50153599906],[-71.331466,41.50238799906],[-71.332794,41.50390299906],[-71.335258,41.50579599906],[-71.335574,41.50863599906],[-71.334121,41.51180799906],[-71.333975,41.51333999906],[-71.332426,41.51549799906],[-71.333784,41.51639899906],[-71.335592,41.51958299906],[-71.332827,41.52165199906],[-71.330701,41.52324399906],[-71.329319,41.52610999906],[-71.325279,41.52674699906],[-71.322196,41.52650799906],[-71.320069,41.52555299906],[-71.318384,41.52544399906],[-71.325118,41.53216899906],[-71.323275,41.53566099906],[-71.322379,41.53873899906],[-71.318041,41.55364499906],[-71.313862,41.56773799906],[-71.313605,41.56864399906],[-71.307224,41.56548799906],[-71.305369,41.56775399906],[-71.303007,41.56945899906],[-71.301535,41.57037299906],[-71.301475,41.57117299906],[-71.301511,41.57276399906],[-71.301511,41.57333099906],[-71.301575,41.57557899906],[-71.301566,41.57573099906],[-71.301756,41.57663499906],[-71.302323,41.57932099906],[-71.30245,41.57992899906],[-71.302681,41.58080099906],[-71.303041,41.58200499906],[-71.303152,41.58254399906],[-71.30343,41.58381699906],[-71.302994,41.58495099906],[-71.302457,41.58567699906],[-71.302327,41.58586399906],[-71.301347,41.58672799906],[-71.30032,41.58740599906],[-71.299635,41.58784799906],[-71.299582,41.58790199906],[-71.29905,41.58821999906],[-71.298617,41.58845799906],[-71.298155,41.58864799906],[-71.29778,41.58880299906],[-71.297029,41.58914799906],[-71.296019,41.58970899906],[-71.294921,41.59035699906],[-71.29368,41.59124099906],[-71.292813,41.59201899906],[-71.292178,41.59257999906],[-71.290475,41.59409099906],[-71.290264,41.59429799906],[-71.289926,41.59462999906],[-71.289175,41.59551499906],[-71.288778,41.59599399906],[-71.2878,41.59550099906],[-71.287177,41.59590699906],[-71.286131,41.59661399906],[-71.287785,41.59734099906],[-71.285201,41.60163199906],[-71.284351,41.60360999906],[-71.28309,41.60647699906],[-71.280955,41.61102699906],[-71.278585,41.61584799906],[-71.277548,41.61802599906],[-71.278353,41.61974599906],[-71.27714,41.62363099906],[-71.274887,41.62576799906],[-71.271076,41.62693399906],[-71.267697,41.62758099906],[-71.265791,41.62913599906],[-71.264303,41.63074799906],[-71.263385,41.63253099906],[-71.261775,41.63465399906],[-71.258512,41.63661699906],[-71.256589,41.63744899906],[-71.256497,41.63748899906],[-71.256378,41.63753999906],[-71.255357,41.63846299906],[-71.254278,41.63913499906],[-71.251941,41.64056899906],[-71.248644,41.64191199906],[-71.247367,41.64216699906],[-71.243721,41.64224199906],[-71.238215,41.64152999906],[-71.236732,41.64398299906],[-71.23345,41.64698999906],[-71.229108,41.64841499906],[-71.22752,41.65260899906],[-71.224555,41.65704099906],[-71.220637,41.65925599906],[-71.216825,41.65822799906],[-71.215773,41.65532799906],[-71.216084,41.65284599906],[-71.216931,41.64983899906],[-71.214284,41.64746499906],[-71.214284,41.64469599906],[-71.21319,41.64462099906],[-71.212526,41.64958199906],[-71.212168,41.65262799906],[-71.21072,41.65525599906],[-71.210351,41.65616599906],[-71.209897,41.65771799906],[-71.208399,41.66001299906],[-71.20787,41.66132299906],[-71.206002,41.66440499906],[-71.203305,41.66759499906],[-71.201882,41.67039199906],[-71.200983,41.67374999906],[-71.19971,41.67716299906],[-71.198257,41.67840599906],[-71.208292,41.69050299906],[-71.208371,41.69059799906],[-71.210429,41.68800899906],[-71.210858,41.68749299906],[-71.212628,41.68524999906],[-71.214109,41.68334999906],[-71.215047,41.68221199906],[-71.215757,41.68135199906],[-71.216884,41.68002999906],[-71.217634,41.67914899906],[-71.217832,41.67891799906],[-71.220304,41.67573599906],[-71.220716,41.67534699906],[-71.220716,41.67507999906],[-71.220838,41.67319599906],[-71.221006,41.67180699906],[-71.221143,41.67041899906],[-71.221356,41.67003699906],[-71.222562,41.66846599906],[-71.224073,41.66667999906],[-71.224608,41.66605299906],[-71.224898,41.66583099906],[-71.225966,41.66473299906],[-71.227614,41.66303899906],[-71.230147,41.66066599906],[-71.2321,41.65902599906],[-71.234739,41.65658499906],[-71.235151,41.65633299906],[-71.23535,41.65611199906],[-71.236982,41.65464699906],[-71.239638,41.65216699906],[-71.242416,41.64974099906],[-71.244903,41.64746699906],[-71.246551,41.64609399906],[-71.247771,41.64526999906],[-71.248855,41.64420199906],[-71.249068,41.64399699906],[-71.250137,41.64296599906],[-71.251373,41.64181399906],[-71.252914,41.64063099906],[-71.254378,41.63960199906],[-71.255263,41.63911299906],[-71.256728,41.63813699906],[-71.257016,41.63814499906],[-71.265381,41.63836599906],[-71.2659,41.63854399906],[-71.267116,41.63601999906],[-71.271067,41.63325899906],[-71.280173,41.63287399906],[-71.287131,41.63390099906],[-71.290739,41.63653299906],[-71.292286,41.63942199906],[-71.292458,41.64282499906],[-71.291463,41.64467499906],[-71.289795,41.64706199906],[-71.290061,41.64882399906],[-71.291688,41.64855699906],[-71.29438,41.64621799906],[-71.296525,41.64435399906],[-71.300279,41.64267499906],[-71.301049,41.64254999906],[-71.303468,41.64215599906],[-71.307055,41.64254499906],[-71.311465,41.64404799906],[-71.313647,41.64568099906],[-71.315539,41.64740499906],[-71.31711,41.64931999906],[-71.31824,41.65064799906],[-71.319292,41.65250199906],[-71.321825,41.65714799906],[-71.323717,41.66222899906],[-71.325904,41.66959499906],[-71.328976,41.67993599906],[-71.33097,41.68696199906],[-71.352354,41.67888499906],[-71.354069,41.67816499906],[-71.355126,41.67750699906],[-71.355982,41.67678299906],[-71.356613,41.67626999906],[-71.358092,41.67420199906],[-71.359465,41.67182799906],[-71.360359,41.67040599906],[-71.360888,41.66987599906],[-71.361532,41.66919199906],[-71.363289,41.66793699906],[-71.365094,41.66702799906],[-71.367566,41.66587599906],[-71.371237,41.66429499906],[-71.373038,41.66363099906],[-71.373683,41.66339299906],[-71.374783,41.66276499906],[-71.375974,41.66140399906],[-71.376581,41.66029499906],[-71.378074,41.65895599906],[-71.378972,41.65797699906],[-71.379111,41.65766499906],[-71.379718,41.65645799906],[-71.380598,41.65055299906],[-71.380525,41.65047499906],[-71.380542,41.65032599906],[-71.380609,41.64967699906],[-71.380889,41.64845399906],[-71.381491,41.64645499906],[-71.381614,41.64433099906],[-71.381573,41.64193499906],[-71.381749,41.64056099906],[-71.381933,41.63902799906],[-71.383001,41.63703699906],[-71.384878,41.63528199906],[-71.386358,41.63390099906],[-71.386709,41.63160499906],[-71.386465,41.63070499906],[-71.385992,41.62906399906],[-71.385519,41.62802699906],[-71.385168,41.62652399906],[-71.385193,41.62510099906],[-71.386196,41.62174299906],[-71.386455,41.62087599906],[-71.386308,41.61313299906],[-71.386308,41.61019899906],[-71.387442,41.60367299906],[-71.387621,41.60264799906],[-71.387758,41.60212899906],[-71.387865,41.60144999906],[-71.387834,41.60095399906],[-71.387865,41.60031299906],[-71.387849,41.59954999906],[-71.387849,41.59926799906],[-71.387788,41.59873399906],[-71.387819,41.59807799906],[-71.387819,41.59797899906],[-71.387727,41.59752099906],[-71.387682,41.59702499906],[-71.387636,41.59675799906],[-71.38756,41.59627699906],[-71.38759,41.59569699906],[-71.387468,41.59519399906],[-71.387514,41.59472099906],[-71.387468,41.59417899906],[-71.387392,41.59381299906],[-71.387376,41.59344699906],[-71.387437,41.59308799906],[-71.387437,41.59269099906],[-71.387514,41.59228699906],[-71.387575,41.59202799906],[-71.38759,41.59182899906],[-71.387788,41.59143999906],[-71.388017,41.59096699906],[-71.388353,41.59018099906],[-71.388765,41.58921999906],[-71.389314,41.58785399906],[-71.389635,41.58680899906],[-71.390031,41.58575599906],[-71.390321,41.58509999906],[-71.39055,41.58432199906],[-71.390672,41.58400899906],[-71.390871,41.58359699906],[-71.390998,41.58320099906],[-71.393603,41.57574599906],[-71.394296,41.57343699906],[-71.395754,41.56858199906],[-71.397418,41.56257799906],[-71.398699,41.55680099906],[-71.399506,41.54803999906],[-71.400576,41.53643199906],[-71.401331,41.52823199906],[-71.401339,41.52814999906],[-71.401385,41.52765099906],[-71.401399,41.52750099906],[-71.401156,41.51892999906],[-71.401095,41.51773999906],[-71.401477,41.51611499906],[-71.402514,41.51408599906],[-71.403659,41.51279599906],[-71.404483,41.51200999906],[-71.406024,41.51056099906],[-71.406409,41.51024099906],[-71.408312,41.50866099906],[-71.409991,41.50669299906],[-71.411599,41.50450099906],[-71.413027,41.49868999906],[-71.412646,41.49755299906],[-71.411959,41.49584399906],[-71.410968,41.49357799906],[-71.410555,41.49242499906],[-71.410388,41.49195999906],[-71.410144,41.49104399906],[-71.40885,41.48619199906],[-71.408399,41.48450099906],[-71.408251,41.48304199906],[-71.407824,41.48071599906],[-71.407748,41.47821299906],[-71.408433,41.47248799906],[-71.408465,41.47222399906],[-71.408779,41.47012399906],[-71.409045,41.46834099906],[-71.409099,41.46820199906],[-71.412784,41.46267399906],[-71.417269,41.45594699906],[-71.421899,41.44900199906],[-71.422767,41.44768299906],[-71.429139,41.43799799906],[-71.429399,41.43760199906],[-71.432026,41.43223599906],[-71.436265,41.42357799906],[-71.440854,41.41420499906],[-71.445801,41.40410099906],[-71.454339,41.38666299906],[-71.456727,41.38178499906],[-71.459999,41.37510199906],[-71.467329,41.36511199906],[-71.473742,41.35637199906],[-71.474322,41.35567799906],[-71.474648,41.35525299906],[-71.474826,41.35502099906],[-71.475558,41.35415899906],[-71.476275,41.35330499906],[-71.476794,41.35268699906],[-71.477526,41.35194699906],[-71.478198,41.35132099906],[-71.47861,41.35092399906],[-71.479312,41.35050499906],[-71.479754,41.35017699906],[-71.480242,41.34980299906],[-71.4807,41.34941399906],[-71.481097,41.34907099906],[-71.481784,41.34871199906],[-71.481899,41.34860199906],[-71.482019,41.34853699906],[-71.506601,41.31260099906],[-71.509442,41.30773199906]],[[-71.407891,41.49960499906],[-71.407254,41.50334699906],[-71.407572,41.50549599906],[-71.405341,41.50708799906],[-71.402897,41.50891899906],[-71.399157,41.50905999906],[-71.397062,41.50866899906],[-71.395612,41.50826899906],[-71.394459,41.50644499906],[-71.393834,41.50457099906],[-71.393744,41.50296399906],[-71.393834,41.50162599906],[-71.396158,41.50021999906],[-71.398481,41.49894799906],[-71.399375,41.49827899906],[-71.400626,41.49821199906],[-71.401252,41.49727499906],[-71.401169,41.49621999906],[-71.40183,41.49534399906],[-71.402117,41.49488699906],[-71.400895,41.49566799906],[-71.398392,41.49613699906],[-71.397409,41.49620399906],[-71.396161,41.49712299906],[-71.395504,41.49715599906],[-71.394817,41.49667199906],[-71.39437,41.49580199906],[-71.393834,41.49459699906],[-71.390795,41.49459699906],[-71.389097,41.49479799906],[-71.387926,41.49486799906],[-71.388144,41.49515099906],[-71.388725,41.49571399906],[-71.388862,41.49585399906],[-71.389099,41.49610099906],[-71.388561,41.49717399906],[-71.387309,41.49891499906],[-71.387131,41.50058799906],[-71.38579,41.50212799906],[-71.384181,41.50393499906],[-71.382483,41.50493899906],[-71.382333,41.50521599906],[-71.384178,41.50634499906],[-71.386771,41.50848699906],[-71.389542,41.51056199906],[-71.392939,41.51310499906],[-71.394637,41.51518099906],[-71.395084,41.51805899906],[-71.395174,41.52086999906],[-71.395352,41.52394899906],[-71.394905,41.52575699906],[-71.394157,41.52670899906],[-71.394059,41.52683199906],[-71.394036,41.52686299906],[-71.394011,41.52689499906],[-71.393983,41.52697399906],[-71.393622,41.52799699906],[-71.392863,41.53036399906],[-71.392262,41.53190199906],[-71.39182,41.53339299906],[-71.391156,41.53526299906],[-71.390239,41.53627999906],[-71.388972,41.53706799906],[-71.388725,41.53806599906],[-71.388087,41.53981699906],[-71.388725,41.54109099906],[-71.388619,41.54268299906],[-71.388831,41.54355899906],[-71.388406,41.54459299906],[-71.388831,41.54610599906],[-71.388831,41.54761799906],[-71.387768,41.54889199906],[-71.387874,41.55048399906],[-71.388087,41.55287199906],[-71.387555,41.55613599906],[-71.387555,41.55724999906],[-71.386385,41.55916099906],[-71.384257,41.56011599906],[-71.3833,41.56019599906],[-71.3833,41.56306099906],[-71.381704,41.56560899906],[-71.38064,41.56791699906],[-71.378938,41.56950899906],[-71.377449,41.57221599906],[-71.375215,41.57372799906],[-71.373194,41.57444499906],[-71.371799,41.57468299906],[-71.370066,41.57484599906],[-71.367194,41.57428899906],[-71.364428,41.57404999906],[-71.362087,41.57269699906],[-71.360492,41.57006999906],[-71.360173,41.56752199906],[-71.359321,41.56425899906],[-71.3573,41.55828799906],[-71.356024,41.55279599906],[-71.356662,41.54857699906],[-71.358577,41.54459699906],[-71.361662,41.53989999906],[-71.360758,41.53666799906],[-71.360704,41.53647699906],[-71.357945,41.52879399906],[-71.357626,41.52568999906],[-71.359541,41.51979999906],[-71.36188,41.51653499906],[-71.36305,41.51486499906],[-71.36326,41.51400799906],[-71.362978,41.51402199906],[-71.362583,41.51334299906],[-71.360646,41.51307899906],[-71.358312,41.51274899906],[-71.354965,41.51050699906],[-71.353644,41.50813299906],[-71.353178,41.50628299906],[-71.353237,41.50601799906],[-71.353252,41.50595299906],[-71.353268,41.50588799906],[-71.353796,41.50356799906],[-71.357936,41.49997999906],[-71.361914,41.49815599906],[-71.362322,41.49502099906],[-71.36167,41.49383899906],[-71.359316,41.49085999906],[-71.358013,41.48879399906],[-71.357608,41.48848799906],[-71.356796,41.48769799906],[-71.356553,41.48666399906],[-71.356147,41.48563099906],[-71.356066,41.48459699906],[-71.355579,41.48398899906],[-71.353388,41.48374599906],[-71.351521,41.48331999906],[-71.350385,41.48228699906],[-71.35006,41.48094899906],[-71.351197,41.47900299906],[-71.352414,41.47736199906],[-71.354362,41.47535499906],[-71.357689,41.47480799906],[-71.360367,41.47459599906],[-71.36199,41.47441299906],[-71.364019,41.47404799906],[-71.366615,41.47410899906],[-71.368563,41.47508199906],[-71.368644,41.47319699906],[-71.372539,41.47173799906],[-71.375217,41.47161599906],[-71.377489,41.47173799906],[-71.377083,41.46912399906],[-71.377814,41.46644799906],[-71.379019,41.46383599906],[-71.379599,41.46270899906],[-71.38106,41.46197899906],[-71.383656,41.46185799906],[-71.385765,41.46185799906],[-71.385684,41.45930399906],[-71.385927,41.45535199906],[-71.387631,41.45279799906],[-71.391524,41.45066999906],[-71.394769,41.44885499906],[-71.396311,41.44641399906],[-71.398095,41.44519799906],[-71.400286,41.44519799906],[-71.402557,41.44550199906],[-71.404423,41.44653599906],[-71.405802,41.44829899906],[-71.405963,41.44889899906],[-71.40534,41.45156499906],[-71.405234,41.45586299906],[-71.405021,41.45976399906],[-71.403321,41.46382399906],[-71.399922,41.46732599906],[-71.39886,41.46828199906],[-71.399922,41.47043099906],[-71.400983,41.47229999906],[-71.401303,41.47397299906],[-71.401196,41.47675899906],[-71.400665,41.47922699906],[-71.401303,41.48193299906],[-71.40194,41.48432199906],[-71.401728,41.48607299906],[-71.402897,41.48718699906],[-71.404384,41.48846099906],[-71.404384,41.49037099906],[-71.40404,41.49248699906],[-71.403417,41.49300899906],[-71.403048,41.49344699906],[-71.404491,41.49363499906],[-71.406616,41.49419199906],[-71.407679,41.49634199906],[-71.407891,41.49960499906]],[[-71.376519,41.59848399906],[-71.37429,41.60229099906],[-71.37292,41.60495499906],[-71.37059,41.60792599906],[-71.36552,41.60987299906],[-71.359627,41.61017999906],[-71.357709,41.60833599906],[-71.357099,41.60766999906],[-71.357149,41.60682499906],[-71.357687,41.60336499906],[-71.361203,41.59962699906],[-71.367507,41.59680899906],[-71.37077,41.59577699906],[-71.374498,41.59752799906],[-71.376519,41.59848399906]],[[-71.369601,41.66071899906],[-71.368638,41.66179799906],[-71.366285,41.66267799906],[-71.363289,41.66207799906],[-71.361898,41.66323699906],[-71.359919,41.66339699906],[-71.357725,41.66267799906],[-71.355104,41.66155899906],[-71.353339,41.66043899906],[-71.352527,41.66008099906],[-71.353587,41.66249599906],[-71.351373,41.66355199906],[-71.35339,41.66613599906],[-71.349933,41.66893499906],[-71.343308,41.66936599906],[-71.338987,41.66656599906],[-71.338411,41.66312099906],[-71.335242,41.66053699906],[-71.332362,41.65515399906],[-71.333802,41.65213899906],[-71.329193,41.64697099906],[-71.329193,41.64287899906],[-71.329481,41.63943399906],[-71.333802,41.63857299906],[-71.330921,41.63641899906],[-71.324008,41.63491199906],[-71.316519,41.63426599906],[-71.308741,41.62974399906],[-71.302692,41.62285299906],[-71.299523,41.61660799906],[-71.299811,41.61100999906],[-71.299235,41.60670299906],[-71.303844,41.60110399906],[-71.306437,41.59292099906],[-71.312774,41.58344599906],[-71.319111,41.57870899906],[-71.325448,41.57655599906],[-71.330753,41.57714999906],[-71.332198,41.57788499906],[-71.334752,41.58050699906],[-71.336717,41.58276799906],[-71.338834,41.58480299906],[-71.339893,41.58898599906],[-71.33959,41.59542999906],[-71.338229,41.60255199906],[-71.337322,41.60594399906],[-71.334903,41.60786599906],[-71.332181,41.60956099906],[-71.333088,41.61204799906],[-71.330669,41.61566599906],[-71.329006,41.61962299906],[-71.328703,41.62403199906],[-71.331728,41.62697099906],[-71.340346,41.62968399906],[-71.343975,41.63058899906],[-71.347302,41.62979699906],[-71.350628,41.63036299906],[-71.353652,41.63364099906],[-71.354862,41.63771099906],[-71.355769,41.64234599906],[-71.355316,41.64573699906],[-71.355577,41.64809999906],[-71.353847,41.65145799906],[-71.353795,41.65161699906],[-71.351545,41.65216499906],[-71.35068,41.65340299906],[-71.349887,41.65480299906],[-71.351184,41.65544899906],[-71.352616,41.65528499906],[-71.353437,41.65273299906],[-71.354141,41.65172599906],[-71.355051,41.65024699906],[-71.357297,41.64960799906],[-71.358688,41.64816899906],[-71.360882,41.64756899906],[-71.362914,41.64828899906],[-71.363877,41.64928799906],[-71.365268,41.65096699906],[-71.366178,41.65380399906],[-71.366713,41.65660199906],[-71.368424,41.65840099906],[-71.369548,41.66011999906],[-71.369601,41.66071899906]],[[-71.350901,41.53645899906],[-71.350901,41.53868699906],[-71.349094,41.54195099906],[-71.344628,41.54298599906],[-71.343356,41.54291799906],[-71.341925,41.54224199906],[-71.337818,41.53578699906],[-71.338434,41.52927999906],[-71.340967,41.52682099906],[-71.344628,41.52674699906],[-71.348456,41.52770199906],[-71.350263,41.52945299906],[-71.350263,41.53112499906],[-71.350157,41.53367199906],[-71.350901,41.53645899906]],[[-71.345467,41.49477599906],[-71.345222,41.49650599906],[-71.345242,41.49717599906],[-71.344107,41.49896699906],[-71.342761,41.50023499906],[-71.340281,41.50103799906],[-71.33859,41.50050299906],[-71.337763,41.49868799906],[-71.336185,41.49675999906],[-71.335979,41.49500099906],[-71.337519,41.49324199906],[-71.340901,41.49229899906],[-71.341258,41.49234199906],[-71.342705,41.49267899906],[-71.344377,41.49325599906],[-71.345467,41.49477599906]]]}}"}, +{"type": "blockgroup", "typeId": 9901000, "areaId": 29458, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.907258,41.30448299906],[-71.879847,41.27624599906],[-71.874513,41.27068599906],[-71.858513,41.25369699906],[-71.854462,41.25009999906],[-71.809384,41.20323499906],[-71.791151,41.18428099906],[-71.790972,41.18410099906],[-71.79148,41.25009999906],[-71.79148,41.27216499906],[-71.785748,41.27345899906],[-71.77843,41.27511099906],[-71.772773,41.27476499906],[-71.765812,41.27424499906],[-71.759286,41.27459099906],[-71.749509,41.27499899906],[-71.747045,41.27497399906],[-71.742096,41.27536899906],[-71.73956,41.27544899906],[-71.732835,41.27687599906],[-71.729228,41.27789099906],[-71.728969,41.27796399906],[-71.723435,41.27961699906],[-71.719994,41.28114899906],[-71.718225,41.28094299906],[-71.711661,41.28060099906],[-71.705744,41.28073899906],[-71.700775,41.28160099906],[-71.695043,41.28264699906],[-71.685861,41.28538999906],[-71.678979,41.28734599906],[-71.672595,41.28907899906],[-71.666319,41.29248699906],[-71.659565,41.29665299906],[-71.656976,41.29689699906],[-71.651671,41.29831799906],[-71.651523,41.29836199906],[-71.645638,41.30012399906],[-71.64072,41.30182099906],[-71.637705,41.30269099906],[-71.636129,41.30315699906],[-71.634503,41.30375599906],[-71.632188,41.30484199906],[-71.624504,41.30614299906],[-71.624504,41.30599699906],[-71.598151,41.31259399906],[-71.585067,41.31677499906],[-71.584452,41.31703699906],[-71.575253,41.32095499906],[-71.575199,41.32094099906],[-71.556933,41.31625399906],[-71.543851,41.31259799906],[-71.526594,41.30880399906],[-71.51206,41.30807999906],[-71.509442,41.30773199906],[-71.506601,41.31260099906],[-71.482019,41.34853699906],[-71.481899,41.34860199906],[-71.481784,41.34871199906],[-71.481097,41.34907099906],[-71.4807,41.34941399906],[-71.480242,41.34980299906],[-71.479754,41.35017699906],[-71.479312,41.35050499906],[-71.47861,41.35092399906],[-71.478198,41.35132099906],[-71.477526,41.35194699906],[-71.476794,41.35268699906],[-71.476275,41.35330499906],[-71.475558,41.35415899906],[-71.474826,41.35502099906],[-71.474648,41.35525299906],[-71.474322,41.35567799906],[-71.473742,41.35637199906],[-71.467329,41.36511199906],[-71.459999,41.37510199906],[-71.456727,41.38178499906],[-71.454339,41.38666299906],[-71.445801,41.40410099906],[-71.440854,41.41420499906],[-71.436265,41.42357799906],[-71.432026,41.43223599906],[-71.429399,41.43760199906],[-71.429139,41.43799799906],[-71.422767,41.44768299906],[-71.421899,41.44900199906],[-71.417269,41.45594699906],[-71.412784,41.46267399906],[-71.409099,41.46820199906],[-71.409045,41.46834099906],[-71.408779,41.47012399906],[-71.408465,41.47222399906],[-71.408433,41.47248799906],[-71.407748,41.47821299906],[-71.407824,41.48071599906],[-71.408251,41.48304199906],[-71.408399,41.48450099906],[-71.40885,41.48619199906],[-71.410144,41.49104399906],[-71.410388,41.49195999906],[-71.410555,41.49242499906],[-71.410968,41.49357799906],[-71.411959,41.49584399906],[-71.412646,41.49755299906],[-71.413027,41.49868999906],[-71.411599,41.50450099906],[-71.409991,41.50669299906],[-71.408312,41.50866099906],[-71.406409,41.51024099906],[-71.406024,41.51056099906],[-71.404483,41.51200999906],[-71.403659,41.51279599906],[-71.402514,41.51408599906],[-71.401477,41.51611499906],[-71.401095,41.51773999906],[-71.401156,41.51892999906],[-71.401399,41.52750099906],[-71.401385,41.52765099906],[-71.401339,41.52814999906],[-71.401331,41.52823199906],[-71.400576,41.53643199906],[-71.399506,41.54803999906],[-71.398699,41.55680099906],[-71.397418,41.56257799906],[-71.395754,41.56858199906],[-71.394296,41.57343699906],[-71.393603,41.57574599906],[-71.390998,41.58320099906],[-71.390871,41.58359699906],[-71.390672,41.58400899906],[-71.39055,41.58432199906],[-71.390321,41.58509999906],[-71.390031,41.58575599906],[-71.389635,41.58680899906],[-71.389314,41.58785399906],[-71.388765,41.58921999906],[-71.388353,41.59018099906],[-71.388017,41.59096699906],[-71.387788,41.59143999906],[-71.38759,41.59182899906],[-71.387575,41.59202799906],[-71.387514,41.59228699906],[-71.387437,41.59269099906],[-71.387437,41.59308799906],[-71.387376,41.59344699906],[-71.387392,41.59381299906],[-71.387468,41.59417899906],[-71.387514,41.59472099906],[-71.387468,41.59519399906],[-71.38759,41.59569699906],[-71.38756,41.59627699906],[-71.387636,41.59675799906],[-71.387682,41.59702499906],[-71.387727,41.59752099906],[-71.387819,41.59797899906],[-71.387819,41.59807799906],[-71.387788,41.59873399906],[-71.387849,41.59926799906],[-71.387849,41.59954999906],[-71.387865,41.60031299906],[-71.387834,41.60095399906],[-71.387865,41.60144999906],[-71.387758,41.60212899906],[-71.387621,41.60264799906],[-71.387442,41.60367299906],[-71.386308,41.61019899906],[-71.386308,41.61313299906],[-71.386455,41.62087599906],[-71.386196,41.62174299906],[-71.385193,41.62510099906],[-71.385168,41.62652399906],[-71.385519,41.62802699906],[-71.385992,41.62906399906],[-71.386465,41.63070499906],[-71.386709,41.63160499906],[-71.386358,41.63390099906],[-71.384878,41.63528199906],[-71.383001,41.63703699906],[-71.381933,41.63902799906],[-71.381749,41.64056099906],[-71.381573,41.64193499906],[-71.381614,41.64433099906],[-71.381491,41.64645499906],[-71.380889,41.64845399906],[-71.380609,41.64967699906],[-71.380542,41.65032599906],[-71.390103,41.65229299906],[-71.391084,41.65234999906],[-71.402645,41.65388599906],[-71.408156,41.65381099906],[-71.408376,41.65311399906],[-71.405116,41.65191799906],[-71.404914,41.64676399906],[-71.405623,41.63933599906],[-71.404817,41.63487999906],[-71.402683,41.63069499906],[-71.40106,41.62902699906],[-71.400553,41.62682899906],[-71.400654,41.62523799906],[-71.405522,41.62233799906],[-71.405317,41.62015999906],[-71.402884,41.61735499906],[-71.400046,41.61599099906],[-71.403188,41.60969999906],[-71.406837,41.61121599906],[-71.408155,41.60886599906],[-71.410689,41.60969999906],[-71.415149,41.60545499906],[-71.41302,41.60378799906],[-71.402276,41.60348499906],[-71.400958,41.60211999906],[-71.401567,41.59923999906],[-71.401871,41.58991699906],[-71.404101,41.58718899906],[-71.405925,41.58499099906],[-71.414338,41.58476299906],[-71.424068,41.58370199906],[-71.429592,41.58292199906],[-71.429808,41.58276699906],[-71.43067,41.58214599906],[-71.435914,41.57767399906],[-71.436218,41.57665099906],[-71.435711,41.57473699906],[-71.435681,41.57263699906],[-71.435665,41.57141199906],[-71.43742,41.56899999906],[-71.441002,41.56736599906],[-71.440357,41.56500699906],[-71.437564,41.56473899906],[-71.4352,41.56398899906],[-71.433774,41.56365899906],[-71.431684,41.56252699906],[-71.43138,41.56150299906],[-71.433811,41.56047999906],[-71.433305,41.55911599906],[-71.429506,41.55998699906],[-71.426923,41.55915399906],[-71.417836,41.55641899906],[-71.416113,41.55574499906],[-71.414684,41.55448899906],[-71.41555,41.55314699906],[-71.417787,41.55156099906],[-71.420033,41.54882599906],[-71.423825,41.54421099906],[-71.421699,41.54023199906],[-71.421193,41.53928499906],[-71.417952,41.53757899906],[-71.416129,41.53625299906],[-71.416476,41.53328799906],[-71.416484,41.53322099906],[-71.415421,41.53200799906],[-71.414124,41.53020599906],[-71.414116,41.53019399906],[-71.414052,41.53010599906],[-71.414671,41.52795599906],[-71.414264,41.52625799906],[-71.413787,41.52373099906],[-71.412884,41.51917899906],[-71.413666,41.51570799906],[-71.412643,41.51349999906],[-71.415412,41.50998499906],[-71.418398,41.50413199906],[-71.41894,41.50290999906],[-71.419963,41.49948399906],[-71.419782,41.49790699906],[-71.420083,41.49459399906],[-71.418889,41.49255499906],[-71.418121,41.49202999906],[-71.418926,41.49055599906],[-71.419227,41.48616699906],[-71.419228,41.48542499906],[-71.418907,41.48368299906],[-71.417619,41.48311999906],[-71.417118,41.48231599906],[-71.416582,41.47805499906],[-71.417118,41.47352599906],[-71.418062,41.47147299906],[-71.418662,41.46990199906],[-71.419083,41.46796399906],[-71.421248,41.46782899906],[-71.42221,41.46940599906],[-71.422992,41.47152499906],[-71.423954,41.47188499906],[-71.426721,41.47192999906],[-71.429307,41.47057799906],[-71.429307,41.46918099906],[-71.429126,41.46580099906],[-71.428169,41.46274299906],[-71.427984,41.46214999906],[-71.426781,41.46079799906],[-71.425217,41.45876999906],[-71.424275,41.45599199906],[-71.424255,41.45593099906],[-71.425097,41.45291099906],[-71.427923,41.45255099906],[-71.429427,41.45038799906],[-71.430055,41.44780299906],[-71.429929,41.44655299906],[-71.431162,41.44443399906],[-71.433266,41.44435399906],[-71.43401,41.44382899906],[-71.432926,41.44186899906],[-71.435073,41.44103999906],[-71.436667,41.44051399906],[-71.438079,41.43886799906],[-71.438772,41.43800799906],[-71.440305,41.43728699906],[-71.441658,41.43771499906],[-71.443221,41.43908999906],[-71.443281,41.44046499906],[-71.446167,41.43911199906],[-71.451517,41.43597999906],[-71.454691,41.43391399906],[-71.455691,41.43274299906],[-71.453842,41.43114999906],[-71.453991,41.42955599906],[-71.454579,41.42648799906],[-71.45445,41.42422099906],[-71.453717,41.42287599906],[-71.452429,41.42043099906],[-71.451468,41.41811899906],[-71.451321,41.41657199906],[-71.451034,41.41515499906],[-71.451944,41.41278599906],[-71.451262,41.41073899906],[-71.451615,41.40869299906],[-71.453056,41.40793499906],[-71.454865,41.40678299906],[-71.45451,41.40482099906],[-71.457511,41.40270299906],[-71.460798,41.40088099906],[-71.460798,41.39862999906],[-71.460726,41.39637899906],[-71.463334,41.39426199906],[-71.466692,41.39402099906],[-71.468802,41.39125399906],[-71.469549,41.38986799906],[-71.472692,41.38710699906],[-71.473336,41.38535099906],[-71.473352,41.38346299906],[-71.477436,41.37589199906],[-71.480919,41.37151999906],[-71.481039,41.36764399906],[-71.478097,41.36318299906],[-71.478805,41.36147499906],[-71.479464,41.35988999906],[-71.480305,41.35903499906],[-71.484508,41.35957599906],[-71.491774,41.35727699906],[-71.497059,41.35682599906],[-71.506006,41.35182399906],[-71.512011,41.35227499906],[-71.516695,41.35853899906],[-71.519877,41.37043699906],[-71.518456,41.37271499906],[-71.517656,41.37399799906],[-71.522159,41.37579999906],[-71.52343,41.37588699906],[-71.525448,41.37573999906],[-71.530433,41.37583099906],[-71.532763,41.37483899906],[-71.534397,41.37384799906],[-71.534523,41.37376399906],[-71.536799,41.37227099906],[-71.541964,41.37213499906],[-71.54869,41.37339699906],[-71.551813,41.37321699906],[-71.565686,41.37055799906],[-71.573667,41.36947499906],[-71.574873,41.36915999906],[-71.585922,41.36690699906],[-71.593489,41.36438299906],[-71.599882,41.36329599906],[-71.601955,41.36330099906],[-71.610963,41.36230899906],[-71.62003,41.36118299906],[-71.626295,41.35942099906],[-71.628494,41.35884499906],[-71.633929,41.35680599906],[-71.636137,41.35514799906],[-71.638371,41.35389299906],[-71.640211,41.35447899906],[-71.649975,41.35212099906],[-71.683853,41.34313399906],[-71.690524,41.34109299906],[-71.693023,41.34032899906],[-71.69875,41.33722199906],[-71.698832,41.33735299906],[-71.700541,41.33569299906],[-71.70618,41.33242399906],[-71.712105,41.33017299906],[-71.718815,41.32958299906],[-71.724454,41.33086999906],[-71.729246,41.33074399906],[-71.729829,41.33055699906],[-71.73014,41.33045799906],[-71.739901,41.32854599906],[-71.747837,41.32615599906],[-71.751784,41.32421199906],[-71.755094,41.32519999906],[-71.759253,41.32669799906],[-71.762755,41.32706699906],[-71.762818,41.32706699906],[-71.764315,41.32744599906],[-71.767445,41.32744599906],[-71.780668,41.32502099906],[-71.796244,41.32227599906],[-71.798737,41.32183699906],[-71.812374,41.31939599906],[-71.81329,41.31931399906],[-71.818883,41.31784799906],[-71.821839,41.31662899906],[-71.834655,41.31336999906],[-71.850701,41.30692699906],[-71.858448,41.30203899906],[-71.860726,41.30262899906],[-71.860514,41.30368699906],[-71.860084,41.30584499906],[-71.860084,41.30723799906],[-71.864294,41.30922099906],[-71.870002,41.30889999906],[-71.880241,41.30532299906],[-71.884273,41.30391499906],[-71.889625,41.30391499906],[-71.888412,41.30836399906],[-71.886779,41.32125999906],[-71.893657,41.32650399906],[-71.900301,41.31604599906],[-71.901658,41.31268299906],[-71.907258,41.30448299906]]]}}"}, +{"type": "blockgroup", "typeId": 9902000, "areaId": 29459, "json": "{\"type\":\"Feature\",\"properties\":{},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-71.678807,41.15891199907],[-71.678302,41.14890399907],[-71.676092,41.14150199907],[-71.672644,41.13429199907],[-71.668345,41.12824999907],[-71.665453,41.12582099907],[-71.657633,41.11987499907],[-71.649849,41.11414299907],[-71.640344,41.10843299907],[-71.630301,41.10345499907],[-71.624501,41.10097899907],[-71.618861,41.09909099907],[-71.611673,41.09741299907],[-71.601864,41.09661899907],[-71.593513,41.09583399907],[-71.584086,41.09634199907],[-71.5693,41.09718199907],[-71.565311,41.09778999907],[-71.55316,41.10007899907],[-71.543771,41.10081699907],[-71.535841,41.10166399907],[-71.528168,41.10311399907],[-71.517538,41.10707699907],[-71.508093,41.11161499907],[-71.501887,41.11554099907],[-71.499496,41.11749199907],[-71.494679,41.12219199907],[-71.491432,41.12510399907],[-71.488273,41.13054099907],[-71.48403,41.13923199907],[-71.479562,41.14805499907],[-71.477024,41.15565699907],[-71.476877,41.16117099907],[-71.476925,41.16815699906],[-71.478603,41.17579199906],[-71.480455,41.18128799906],[-71.482716,41.18625299906],[-71.484891,41.18874299906],[-71.489844,41.19469799906],[-71.485884,41.20472699906],[-71.485175,41.20946799906],[-71.484583,41.21748599906],[-71.486497,41.22692699906],[-71.489322,41.23517099906],[-71.492196,41.24087599906],[-71.496595,41.24582299906],[-71.499994,41.25010299906],[-71.51635,41.27154899906],[-71.535979,41.28617999906],[-71.557569,41.29401799906],[-71.570655,41.29401799906],[-71.591591,41.28931699906],[-71.609257,41.28199899906],[-71.624504,41.27412899906],[-71.634968,41.26368199906],[-71.640844,41.25010099906],[-71.642006,41.24531299906],[-71.642758,41.23793399906],[-71.643014,41.23132299906],[-71.649378,41.22398599906],[-71.653208,41.21780499906],[-71.654561,41.21546499906],[-71.663768,41.20660499906],[-71.667858,41.20062599906],[-71.670491,41.19450299906],[-71.672814,41.18464999906],[-71.673808,41.17884999906],[-71.676264,41.16886399906],[-71.678807,41.15891199907]],[[-71.614521,41.15887399907],[-71.614182,41.16116799907],[-71.612658,41.16511999907],[-71.611134,41.17225799906],[-71.607917,41.17901399906],[-71.606562,41.18334799906],[-71.601481,41.18500599906],[-71.596062,41.18895699906],[-71.594707,41.19673299906],[-71.594553,41.20117999906],[-71.592864,41.20012999906],[-71.590694,41.19810799906],[-71.587432,41.20055699906],[-71.583366,41.20285199906],[-71.580994,41.20514599906],[-71.579978,41.20960799906],[-71.578792,41.21215699906],[-71.578453,41.21929599906],[-71.578622,41.22681699906],[-71.5793,41.23331799906],[-71.576589,41.23331799906],[-71.572354,41.22783599906],[-71.56778,41.22617899906],[-71.563883,41.22605199906],[-71.561173,41.22477699906],[-71.557784,41.22044299906],[-71.554057,41.21598099906],[-71.552533,41.21241199906],[-71.553719,41.20998999906],[-71.554057,41.20782299906],[-71.555582,41.20552899906],[-71.558123,41.20170499906],[-71.561173,41.19813499906],[-71.563714,41.19188899906],[-71.564392,41.18538799906],[-71.562867,41.17990699906],[-71.559648,41.17620999906],[-71.55609,41.17697499906],[-71.555751,41.17863199906],[-71.552533,41.17914199906],[-71.551686,41.17837699906],[-71.551035,41.17587699906],[-71.552407,41.17545599906],[-71.552831,41.17503499906],[-71.550677,41.16894399906],[-71.549492,41.16766899906],[-71.546105,41.16715899906],[-71.543734,41.16511999907],[-71.543734,41.16244299907],[-71.543395,41.15683399907],[-71.546443,41.15237299907],[-71.551693,41.15033299907],[-71.559652,41.14944099907],[-71.566426,41.14778399907],[-71.570829,41.14778399907],[-71.575571,41.14740099907],[-71.580482,41.14727399907],[-71.58353,41.14727399907],[-71.588103,41.14625399907],[-71.593014,41.14548899907],[-71.59928,41.14574399907],[-71.605207,41.14791099907],[-71.611134,41.15096999907],[-71.613505,41.15441199907],[-71.614521,41.15887399907]]]}}"}] diff --git a/data/districts.json b/data/districts.json new file mode 100644 index 0000000..912e776 --- /dev/null +++ b/data/districts.json @@ -0,0 +1,10 @@ +[ + {"type": "Congressional Districts", + "file": "uscd.json"}, + {"type": "School Districts", + "file": "school.json"}, + {"type": "State Senate Districts", + "file": "stateLegisUpper.json"}, + {"type": "State House Districts", + "file": "stateLegisLower.json"} +] diff --git a/data/precincts.json b/data/precincts.json new file mode 100644 index 0000000..af4e08d --- /dev/null +++ b/data/precincts.json @@ -0,0 +1,420 @@ +[{"type": "precinct", "typeId": 101, "areaId": 25663, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":2,\"NAME\":\"0101\",\"SHAPE_Length\":0.10756917429151,\"SHAPE_Area\":-0.00042593860670018},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.322695489,41.772701345],[-71.322695703,41.772722286],[-71.322695704,41.772722386],[-71.32466149,41.771382532],[-71.32477649,41.771305532],[-71.32484049,41.771261532],[-71.32489949,41.771221532],[-71.325064489,41.771109532],[-71.32537649,41.770897532],[-71.32550449,41.770809532],[-71.32682149,41.769913532],[-71.32736249,41.769539531],[-71.328230491,41.768953531],[-71.328678491,41.768647531],[-71.330303492,41.767541531],[-71.332115492,41.766307531],[-71.332797492,41.765843531],[-71.333092492,41.765642531],[-71.333356492,41.76546253],[-71.333708492,41.76522353],[-71.334101492,41.76495553],[-71.335401493,41.764069531],[-71.336962493,41.76300653],[-71.339821494,41.761055529],[-71.342582495,41.759179529],[-71.342667495,41.759117529],[-71.342827494,41.759007529],[-71.344036495,41.758187529],[-71.344503496,41.757866529],[-71.345070495,41.757477529],[-71.345268495,41.757344528],[-71.346061496,41.756807529],[-71.347021496,41.756153529],[-71.346375496,41.756102528],[-71.346313496,41.756094529],[-71.346224496,41.756086528],[-71.345917496,41.756062528],[-71.345284495,41.756003528],[-71.344895495,41.755970528],[-71.344734496,41.755960528],[-71.344215495,41.755917529],[-71.344017495,41.755898529],[-71.343875495,41.755884528],[-71.343905495,41.755822529],[-71.344001495,41.755658528],[-71.344022495,41.755598528],[-71.344023495,41.755478528],[-71.344039495,41.755410529],[-71.344042495,41.755292529],[-71.343913495,41.755281528],[-71.342751494,41.755186528],[-71.342644495,41.755782529],[-71.342461494,41.755763529],[-71.340675494,41.755620529],[-71.340164494,41.755576528],[-71.340180494,41.755265528],[-71.340203494,41.754976528],[-71.340256494,41.754313528],[-71.340301494,41.753646528],[-71.340355494,41.752992528],[-71.340378494,41.752667528],[-71.340416494,41.752279528],[-71.340439494,41.751909528],[-71.340523494,41.751228528],[-71.340546493,41.751092528],[-71.340599494,41.750654528],[-71.340683493,41.750202528],[-71.340736494,41.749751527],[-71.340769494,41.749578528],[-71.340820493,41.749308528],[-71.340904494,41.748752527],[-71.341004494,41.748268527],[-71.341042494,41.748155527],[-71.341103494,41.747996527],[-71.341217494,41.747724527],[-71.341255494,41.747588527],[-71.341301494,41.747371527],[-71.341331494,41.747194527],[-71.341339494,41.747064527],[-71.341354494,41.746982527],[-71.340882493,41.746969526],[-71.340203493,41.746961527],[-71.339714493,41.746948527],[-71.339523493,41.746943527],[-71.339379493,41.746946527],[-71.339004493,41.746940527],[-71.338859493,41.746943527],[-71.338463493,41.746938527],[-71.337982493,41.746925527],[-71.337586492,41.746906527],[-71.337097492,41.746889527],[-71.336876493,41.746889527],[-71.336479492,41.746857527],[-71.336029492,41.746834527],[-71.335434492,41.746801527],[-71.335312492,41.746790527],[-71.334686492,41.746767527],[-71.334579491,41.746760527],[-71.334106492,41.746729527],[-71.333855492,41.746716527],[-71.333099491,41.746673527],[-71.332756491,41.746653527],[-71.332382491,41.746638527],[-71.331642491,41.746604527],[-71.33093349,41.746573527],[-71.32980349,41.746506527],[-71.32881949,41.746458527],[-71.32864449,41.746453527],[-71.32821649,41.746425527],[-71.327461489,41.746387527],[-71.327209489,41.746378527],[-71.326866489,41.746358527],[-71.326530489,41.746347527],[-71.325928489,41.746310527],[-71.324738488,41.746253527],[-71.324539488,41.746239527],[-71.323860488,41.746207528],[-71.323685488,41.746202527],[-71.321823488,41.746100527],[-71.321754487,41.746092527],[-71.321213487,41.746067527],[-71.320923487,41.746060527],[-71.320839487,41.746061527],[-71.320694487,41.746055527],[-71.320625487,41.746057527],[-71.320526487,41.746054527],[-71.320206486,41.746056527],[-71.319969487,41.746065527],[-71.318916487,41.746123527],[-71.318702487,41.746123527],[-71.317177486,41.746198527],[-71.316300486,41.746230527],[-71.317291486,41.747304527],[-71.318882486,41.748987528],[-71.318970487,41.749080528],[-71.318077487,41.749553528],[-71.318125046,41.749611987],[-71.318125576,41.749612378],[-71.318193321,41.749619072],[-71.31826645,41.749590212],[-71.318329015,41.749560627],[-71.318396005,41.749521216],[-71.318470053,41.749480466],[-71.318533464,41.749454175],[-71.318541847,41.749450007],[-71.318657456,41.749387493],[-71.318668312,41.74938123],[-71.318708762,41.749354222],[-71.318727486,41.749341528],[-71.318751141,41.749328158],[-71.318796123,41.749302351],[-71.318839452,41.74929148],[-71.318866486,41.749284528],[-71.318913515,41.749285123],[-71.318945777,41.749285435],[-71.31897435,41.749297773],[-71.319011487,41.749313528],[-71.319094486,41.749376528],[-71.319149537,41.749435364],[-71.319225457,41.749516503],[-71.319254852,41.749547566],[-71.319304843,41.749612889],[-71.319348642,41.749676899],[-71.319387486,41.749733528],[-71.319399787,41.749745712],[-71.319449546,41.74979369],[-71.319483132,41.749828262],[-71.319492487,41.749837528],[-71.319597146,41.74996756],[-71.319624958,41.750001547],[-71.319638283,41.750020744],[-71.319708487,41.750118528],[-71.319709308,41.750119546],[-71.319756492,41.750174414],[-71.319798979,41.75023066],[-71.319800487,41.750232528],[-71.319811211,41.750251295],[-71.319835377,41.750293159],[-71.319868655,41.750351184],[-71.319911621,41.750406618],[-71.319912589,41.75040758],[-71.320045416,41.750534519],[-71.32006522,41.750552488],[-71.32010388,41.750590391],[-71.320114487,41.750600528],[-71.320160487,41.750653529],[-71.320166724,41.750662337],[-71.320202968,41.750710202],[-71.320238995,41.75076442],[-71.320240487,41.750766528],[-71.320337487,41.750930528],[-71.320321488,41.750983528],[-71.320216487,41.751041528],[-71.320231487,41.751070528],[-71.320250493,41.751069797],[-71.320257394,41.751069467],[-71.320337565,41.75105642],[-71.320381465,41.751083497],[-71.320381464,41.751083515],[-71.320381487,41.751083529],[-71.320381245,41.751085897],[-71.32037693,41.751132909],[-71.320355665,41.751180352],[-71.320345815,41.751240939],[-71.320322881,41.751277761],[-71.320311487,41.751296529],[-71.320307387,41.751315665],[-71.320299786,41.751352753],[-71.32030416,41.751356045],[-71.320350715,41.751389252],[-71.320397627,41.751426376],[-71.320400487,41.751428528],[-71.320548487,41.751588529],[-71.320631914,41.751686678],[-71.320633287,41.751688225],[-71.320633324,41.751688336],[-71.320633488,41.751688529],[-71.320647487,41.751729528],[-71.320784488,41.751839529],[-71.321308644,41.752213159],[-71.321408916,41.752231107],[-71.321394075,41.752287019],[-71.321388488,41.752308529],[-71.321342487,41.752474528],[-71.32133326,41.752491138],[-71.321332484,41.752492609],[-71.321288342,41.752551886],[-71.321247025,41.752601996],[-71.321243487,41.752606528],[-71.321238684,41.752626769],[-71.321229941,41.752665156],[-71.321234205,41.752682824],[-71.321261503,41.75278292],[-71.321264797,41.752793711],[-71.321280484,41.752852394],[-71.321282116,41.752855285],[-71.321345488,41.752962528],[-71.321373488,41.753026529],[-71.321378877,41.753044597],[-71.321390765,41.753083176],[-71.321389269,41.753103026],[-71.321387488,41.753131529],[-71.321387117,41.753131578],[-71.321387087,41.753131973],[-71.321317865,41.75314069],[-71.321273568,41.753146518],[-71.321284778,41.753220111],[-71.321364775,41.75324857],[-71.321386805,41.753289316],[-71.321393488,41.753301529],[-71.321394079,41.753302888],[-71.321421693,41.75336202],[-71.321452282,41.753432595],[-71.321471799,41.753481647],[-71.321473487,41.753485528],[-71.321495487,41.753560529],[-71.321495688,41.753572482],[-71.321498418,41.753623737],[-71.321497432,41.753676252],[-71.321497487,41.753679528],[-71.321487437,41.753710795],[-71.3214796,41.753735766],[-71.321476109,41.753753265],[-71.321467488,41.753798528],[-71.321474967,41.753858367],[-71.321476599,41.753870848],[-71.321477981,41.753876917],[-71.321494487,41.753947529],[-71.321496763,41.753961618],[-71.321504426,41.754001381],[-71.321515667,41.754077827],[-71.32151583,41.754084272],[-71.321521386,41.754193537],[-71.321521511,41.754195154],[-71.321521361,41.754249193],[-71.321519591,41.754308351],[-71.321519488,41.754314529],[-71.321512487,41.754378529],[-71.321495487,41.754432529],[-71.321458487,41.754481529],[-71.32141804,41.75451977],[-71.321403541,41.754533728],[-71.321358513,41.754581751],[-71.321304695,41.754639023],[-71.32129117,41.754672848],[-71.321278487,41.754705529],[-71.321295433,41.754774252],[-71.321296399,41.754778076],[-71.321297409,41.754780477],[-71.321390758,41.754977985],[-71.321391647,41.754979686],[-71.321470916,41.755058172],[-71.321492674,41.75507952],[-71.321509827,41.75510532],[-71.32151853,41.755138813],[-71.321523691,41.755164846],[-71.321526488,41.755176529],[-71.321531474,41.755238359],[-71.321531487,41.755238529],[-71.321531927,41.75524195],[-71.321533727,41.755352799],[-71.321535834,41.75548535],[-71.321529239,41.75557457],[-71.321525009,41.755634856],[-71.321523601,41.755656597],[-71.321505244,41.755794926],[-71.321494487,41.755876529],[-71.321463979,41.755999549],[-71.321463579,41.756001527],[-71.321460524,41.756045774],[-71.32146079,41.756062744],[-71.321463478,41.756215981],[-71.321465789,41.756317145],[-71.321467819,41.756444116],[-71.321468203,41.756450246],[-71.321477401,41.756523834],[-71.321477552,41.756524676],[-71.321482381,41.756542523],[-71.321508488,41.75663853],[-71.321517727,41.756661829],[-71.321531837,41.75669678],[-71.321563737,41.756757501],[-71.321566908,41.756762219],[-71.321625488,41.756842529],[-71.321635294,41.756850292],[-71.3216497,41.756861231],[-71.321660762,41.756866122],[-71.321676488,41.75687253],[-71.321746396,41.756886624],[-71.321777586,41.756891662],[-71.321795883,41.756896601],[-71.321800488,41.756897529],[-71.321804717,41.756899551],[-71.321822807,41.756906689],[-71.321846412,41.756919074],[-71.321857797,41.756927754],[-71.321868488,41.756935529],[-71.321970847,41.757031129],[-71.321974736,41.757034396],[-71.32197976,41.757037757],[-71.322010016,41.757056286],[-71.322042797,41.757073744],[-71.322095292,41.75710851],[-71.322103488,41.757113529],[-71.322158684,41.757136468],[-71.322195784,41.757150226],[-71.322246741,41.757173063],[-71.322257488,41.757177529],[-71.322295774,41.757189899],[-71.322322095,41.757198195],[-71.322369993,41.757206181],[-71.322391578,41.757207876],[-71.322417488,41.757209529],[-71.322421946,41.757210834],[-71.322439453,41.757214659],[-71.322457628,41.757221278],[-71.322458488,41.75722153],[-71.322469488,41.757229529],[-71.322469488,41.757229706],[-71.322469678,41.757229845],[-71.322469781,41.757236866],[-71.322458621,41.757241171],[-71.322441319,41.757243572],[-71.322437488,41.75724453],[-71.322322488,41.75724453],[-71.322295488,41.75724153],[-71.322204488,41.757218529],[-71.322142223,41.757205951],[-71.322105704,41.757198752],[-71.322051083,41.757180989],[-71.3220301,41.757170136],[-71.322028488,41.757169529],[-71.322020223,41.757163091],[-71.32196585,41.75712213],[-71.321945855,41.757105166],[-71.321879968,41.757053848],[-71.321867168,41.75704516],[-71.321829197,41.75701464],[-71.321826016,41.757012721],[-71.321781994,41.756989793],[-71.321726393,41.756970664],[-71.321722461,41.756969635],[-71.321663488,41.756956529],[-71.321659878,41.75695628],[-71.321634354,41.756954673],[-71.321632267,41.756954913],[-71.32158443,41.756963193],[-71.321582958,41.756963535],[-71.321562524,41.75697496],[-71.321548787,41.75699472],[-71.321534706,41.75705027],[-71.321524879,41.75708051],[-71.321497743,41.757141094],[-71.32149718,41.757143179],[-71.321486633,41.757199753],[-71.321486521,41.757200787],[-71.321488344,41.757314403],[-71.321489884,41.757409083],[-71.32149492,41.757432188],[-71.321539651,41.757536334],[-71.32155611,41.757580807],[-71.321558488,41.757586529],[-71.321558675,41.757589936],[-71.321561491,41.75761259],[-71.321562131,41.757652709],[-71.321567171,41.757744271],[-71.321569505,41.7577626],[-71.321570088,41.757797276],[-71.321570487,41.75780453],[-71.321568505,41.7578071],[-71.321564694,41.757812447],[-71.321563482,41.75781361],[-71.321543544,41.757839457],[-71.321535748,41.75787584],[-71.32152772,41.757891761],[-71.321527488,41.757892529],[-71.321445033,41.75797019],[-71.321441743,41.757973482],[-71.32144032,41.757975373],[-71.321422488,41.75800353],[-71.321416588,41.758035978],[-71.321416555,41.758036794],[-71.321416565,41.758036834],[-71.321427443,41.758074609],[-71.321431539,41.758095609],[-71.321431618,41.758100609],[-71.321432488,41.75813453],[-71.321431892,41.758137032],[-71.321429665,41.758154585],[-71.321422521,41.758176391],[-71.321422488,41.75817653],[-71.321420644,41.758180058],[-71.321399825,41.758220767],[-71.321397713,41.75822763],[-71.321387268,41.75826941],[-71.321385742,41.758277003],[-71.321385264,41.758282952],[-71.321382488,41.758362529],[-71.321382553,41.758363289],[-71.321387538,41.758389223],[-71.321390339,41.758447406],[-71.32139047,41.758455654],[-71.321393905,41.758495723],[-71.321394952,41.758502093],[-71.321404666,41.758523742],[-71.321416247,41.758543976],[-71.321422082,41.758560573],[-71.321423488,41.75856353],[-71.321422568,41.758582846],[-71.321422517,41.758584601],[-71.321422127,41.758585756],[-71.321402488,41.758652529],[-71.321402488,41.758678335],[-71.321402912,41.758704747],[-71.321397953,41.758736922],[-71.321395487,41.758754529],[-71.321400266,41.758958098],[-71.321400535,41.758967096],[-71.321418938,41.759005498],[-71.321426671,41.75904082],[-71.321434488,41.75907453],[-71.321434488,41.759098663],[-71.321434655,41.759109188],[-71.321434488,41.759109127],[-71.321434488,41.75910953],[-71.321432899,41.759108546],[-71.321423335,41.759105054],[-71.321415989,41.759098078],[-71.321413488,41.75909653],[-71.321410893,41.759091755],[-71.321404248,41.759082086],[-71.321390686,41.759054574],[-71.321388488,41.75905053],[-71.32136859,41.758982754],[-71.321360172,41.758961819],[-71.321356075,41.758941528],[-71.321354009,41.758871408],[-71.321338319,41.758769137],[-71.321327203,41.758658411],[-71.321325327,41.7586497],[-71.321311999,41.758595226],[-71.321307232,41.758580031],[-71.321304159,41.758564613],[-71.321302787,41.758512388],[-71.321301488,41.75847253],[-71.321291774,41.758449216],[-71.321291258,41.758448572],[-71.321281646,41.758450319],[-71.321280775,41.758450506],[-71.321267907,41.758464665],[-71.321262611,41.758473423],[-71.32124895,41.758498334],[-71.321231523,41.758533718],[-71.321218555,41.75855376],[-71.321216488,41.758557529],[-71.321198898,41.758578823],[-71.321159947,41.758626912],[-71.321138687,41.75864535],[-71.321138488,41.75864553],[-71.32113778,41.758645952],[-71.321091426,41.758675951],[-71.321056715,41.758694279],[-71.321043278,41.75870229],[-71.321034772,41.758708016],[-71.321031345,41.758712326],[-71.321015488,41.75873653],[-71.320987487,41.75883553],[-71.320978008,41.758889826],[-71.320971922,41.758936539],[-71.320965745,41.758961136],[-71.32095579,41.758982274],[-71.320944226,41.758997851],[-71.320941488,41.759002529],[-71.320936138,41.759007582],[-71.320924561,41.759020463],[-71.320906417,41.759035653],[-71.320905488,41.75903653],[-71.320904784,41.759036974],[-71.320883821,41.759051661],[-71.320862539,41.759063606],[-71.320859488,41.75906553],[-71.320855619,41.759067106],[-71.32083366,41.759077356],[-71.320805712,41.759087438],[-71.320805488,41.75908753],[-71.320804736,41.759087636],[-71.320775828,41.75909332],[-71.320742543,41.759096431],[-71.320626445,41.759112849],[-71.320607566,41.75911588],[-71.320601101,41.7591173],[-71.320524488,41.75913853],[-71.320494464,41.759150813],[-71.320436148,41.759174935],[-71.320435705,41.759175211],[-71.320415148,41.759193086],[-71.320413979,41.759194773],[-71.320413488,41.759230099],[-71.320413488,41.759257529],[-71.320406487,41.75929353],[-71.32040493,41.759297267],[-71.32039363,41.759328936],[-71.32037693,41.759364468],[-71.320376488,41.75936553],[-71.320372572,41.759371196],[-71.320329747,41.75943401],[-71.320247953,41.759532242],[-71.320234082,41.759545004],[-71.320213757,41.759560047],[-71.320209487,41.75956353],[-71.320184552,41.759633202],[-71.320175947,41.759658457],[-71.320176236,41.759675289],[-71.320176248,41.759676019],[-71.320176488,41.75968153],[-71.320169487,41.75970153],[-71.320146156,41.759739818],[-71.320130841,41.759765482],[-71.320105149,41.759800088],[-71.320091852,41.75981479],[-71.320090487,41.75981653],[-71.320083298,41.759822261],[-71.320056186,41.759844697],[-71.320021964,41.759871675],[-71.320019451,41.759874905],[-71.319986488,41.75992953],[-71.319982606,41.759943646],[-71.319975753,41.759969596],[-71.319975786,41.75997164],[-71.319991428,41.760082051],[-71.319992675,41.760089387],[-71.32000467,41.760136287],[-71.320013131,41.760158138],[-71.320022488,41.76018153],[-71.320092483,41.760297523],[-71.320138488,41.76033253],[-71.320221488,41.76037853],[-71.320274488,41.76041553],[-71.320282091,41.760421989],[-71.320298915,41.760435232],[-71.320343898,41.760474491],[-71.320367487,41.76049453],[-71.320410089,41.760525593],[-71.320415664,41.760529589],[-71.320510668,41.760612203],[-71.320519681,41.760619671],[-71.320581254,41.760667494],[-71.320595093,41.760677374],[-71.320607422,41.760687819],[-71.320613488,41.76069253],[-71.320616177,41.760696357],[-71.320627469,41.760710081],[-71.320636318,41.76072502],[-71.320639488,41.76072953],[-71.320666488,41.76079153],[-71.320749488,41.76094753],[-71.32075679,41.760956919],[-71.320763655,41.760965603],[-71.320841568,41.761032913],[-71.32093857,41.761122527],[-71.32093963,41.761123422],[-71.321002488,41.76117253],[-71.321037544,41.761188362],[-71.321044581,41.761191025],[-71.321058777,41.761197951],[-71.321064488,41.76120053],[-71.3210665,41.761202069],[-71.321082396,41.761212443],[-71.321098545,41.761226304],[-71.321122492,41.761259044],[-71.321143736,41.761297451],[-71.321157406,41.761335206],[-71.321157403,41.7613353],[-71.321157488,41.76133553],[-71.321156488,41.76137453],[-71.321148212,41.761422118],[-71.321140792,41.761466539],[-71.321132567,41.761480614],[-71.321121563,41.761494753],[-71.321090125,41.761519608],[-71.321073417,41.761530948],[-71.321062441,41.761545773],[-71.321039951,41.761604213],[-71.321026861,41.761665367],[-71.321023885,41.761713776],[-71.321027947,41.761790896],[-71.321032831,41.761809496],[-71.321094442,41.762028169],[-71.321098479,41.762042084],[-71.321124942,41.76211478],[-71.321129068,41.762135226],[-71.321130488,41.762139531],[-71.321130898,41.762156141],[-71.321135406,41.762240255],[-71.321136135,41.762285834],[-71.321134504,41.762301268],[-71.321134483,41.76230132],[-71.321134488,41.76230153],[-71.321121488,41.762335531],[-71.321115488,41.762375531],[-71.321111209,41.762386301],[-71.321085447,41.762456037],[-71.321072208,41.762484476],[-71.321057488,41.76252153],[-71.321020488,41.76277053],[-71.321010656,41.762816963],[-71.321002845,41.7628552],[-71.32098768,41.762904436],[-71.320963908,41.762972261],[-71.320963488,41.762973531],[-71.320923645,41.763171796],[-71.320921879,41.763182076],[-71.320919083,41.76319091],[-71.320828498,41.763506471],[-71.320799769,41.763607224],[-71.320791023,41.763676641],[-71.320772291,41.763789264],[-71.320752859,41.763923108],[-71.320738875,41.763991082],[-71.320738488,41.763993531],[-71.320728644,41.764132328],[-71.320728536,41.764134836],[-71.320732548,41.764251611],[-71.320732673,41.764252577],[-71.320751925,41.764361351],[-71.320752607,41.764364706],[-71.320765115,41.764480008],[-71.320768634,41.764538295],[-71.32077247,41.764579578],[-71.320773787,41.764591027],[-71.320789651,41.764663821],[-71.320790429,41.764669546],[-71.320818722,41.764850448],[-71.320827943,41.764898561],[-71.320837279,41.764969101],[-71.320855488,41.765085531],[-71.320855643,41.765086163],[-71.32087495,41.765152342],[-71.320882832,41.765184851],[-71.320887877,41.765215984],[-71.320888608,41.765231311],[-71.320898179,41.765366181],[-71.320898872,41.765370183],[-71.320915762,41.765417171],[-71.320928488,41.765451531],[-71.320929329,41.76545585],[-71.320935897,41.765478959],[-71.320952947,41.76557579],[-71.320966893,41.765646477],[-71.320970284,41.765658138],[-71.321001488,41.765753531],[-71.321051806,41.76585092],[-71.321056961,41.765859687],[-71.321094573,41.765933063],[-71.321111636,41.76597379],[-71.321140489,41.766041532],[-71.321160096,41.766078854],[-71.321212357,41.766175839],[-71.321223305,41.766199169],[-71.321284702,41.766316034],[-71.321285641,41.766317695],[-71.321329782,41.766383214],[-71.321393187,41.766485491],[-71.321408911,41.766511342],[-71.321413489,41.766518531],[-71.321427419,41.766547212],[-71.321430722,41.766553927],[-71.321462896,41.766649981],[-71.321468839,41.766676838],[-71.321469917,41.766701531],[-71.321470489,41.766705531],[-71.321463931,41.766823564],[-71.321463799,41.766831127],[-71.321455642,41.766864434],[-71.32144601,41.766886616],[-71.321432516,41.766929142],[-71.321430825,41.766935358],[-71.32142358,41.767058519],[-71.321427792,41.767138857],[-71.321429489,41.767170532],[-71.321436462,41.767204404],[-71.321436707,41.767205102],[-71.32145408,41.767250321],[-71.321464499,41.767272704],[-71.321502391,41.767376072],[-71.321504488,41.767381532],[-71.321514488,41.767418531],[-71.321514606,41.767423289],[-71.321517412,41.767457818],[-71.321520557,41.767579531],[-71.321519319,41.767613687],[-71.321519488,41.767620532],[-71.321510356,41.767679135],[-71.321507583,41.767697766],[-71.321508884,41.767735273],[-71.321511222,41.767742158],[-71.321538423,41.767808099],[-71.321541807,41.767815045],[-71.321545542,41.76782993],[-71.321570488,41.767918531],[-71.321570601,41.767920451],[-71.321575334,41.767952151],[-71.321574749,41.767986819],[-71.321575498,41.767992301],[-71.321587182,41.768059062],[-71.321588793,41.768066722],[-71.321593527,41.768160813],[-71.321605765,41.768247778],[-71.321607004,41.768252321],[-71.321630488,41.768326531],[-71.321635138,41.768337896],[-71.321668876,41.768413013],[-71.321702871,41.768502688],[-71.321706815,41.768515871],[-71.321774489,41.768724532],[-71.321805397,41.768797511],[-71.321810924,41.768809208],[-71.321814715,41.768816018],[-71.321868488,41.768898532],[-71.321872123,41.768905624],[-71.321896489,41.768952362],[-71.321902894,41.768965664],[-71.321909489,41.768978532],[-71.321946151,41.769036467],[-71.32197626,41.769080712],[-71.3219907,41.769106096],[-71.322014941,41.769166119],[-71.32202472,41.769197899],[-71.322051793,41.769261447],[-71.322068241,41.769312013],[-71.322073472,41.769328145],[-71.322075489,41.769333532],[-71.322093489,41.769409532],[-71.32210768,41.769452565],[-71.322130018,41.769518615],[-71.322150029,41.769580977],[-71.322155488,41.769597532],[-71.322156078,41.769601387],[-71.322170418,41.769679011],[-71.322179678,41.769754676],[-71.322180783,41.769863671],[-71.322177408,41.769901902],[-71.3221712,41.769935057],[-71.322170489,41.769940532],[-71.322166621,41.769952565],[-71.32213734,41.770052843],[-71.3221135,41.770123746],[-71.322089605,41.770192544],[-71.322087271,41.770205468],[-71.322083489,41.770227532],[-71.322084722,41.770248498],[-71.322085583,41.770261901],[-71.322113489,41.770371531],[-71.322119488,41.770411532],[-71.322121489,41.770616532],[-71.322135942,41.770747413],[-71.322139976,41.770779598],[-71.322142196,41.770904854],[-71.322143957,41.770986224],[-71.322147409,41.771005642],[-71.322151489,41.771025532],[-71.322186312,41.771129059],[-71.322188971,41.771135285],[-71.322211984,41.771175181],[-71.322236489,41.771216532],[-71.322237803,41.771220976],[-71.322248743,41.771250293],[-71.32225762,41.771287743],[-71.322268866,41.771371187],[-71.322273875,41.771408022],[-71.322274965,41.7714122],[-71.322287509,41.771438313],[-71.322288934,41.771439907],[-71.322347382,41.771495518],[-71.322366732,41.771512164],[-71.322388937,41.771535056],[-71.322390489,41.771536532],[-71.322391704,41.771538431],[-71.322406951,41.771561463],[-71.322413838,41.77158974],[-71.32241409,41.771657828],[-71.322415489,41.771816532],[-71.322420489,41.771856532],[-71.322434489,41.771905532],[-71.322476062,41.771992637],[-71.322476541,41.771993449],[-71.322518698,41.772049132],[-71.322552117,41.772082892],[-71.322563552,41.772090617],[-71.322565491,41.772096268],[-71.322602726,41.772131429],[-71.322652261,41.772170086],[-71.322668552,41.772184383],[-71.322672489,41.772187532],[-71.322672962,41.772188616],[-71.322685734,41.772206682],[-71.322689712,41.772226469],[-71.322688977,41.772249131],[-71.322685539,41.772274922],[-71.322685489,41.772275532],[-71.322665489,41.772339533],[-71.322654297,41.772409484],[-71.322653817,41.772414922],[-71.322655605,41.77249771],[-71.322659083,41.772513703],[-71.322695489,41.772677532],[-71.322695489,41.772701345]]]]}}"}, +{"type": "precinct", "typeId": 102, "areaId": 25662, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":1,\"NAME\":\"0102\",\"SHAPE_Length\":0.15303659559253,\"SHAPE_Area\":-0.0003481259751177},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.341223493,41.730160523],[-71.341225079,41.73019303],[-71.341224791,41.730160225],[-71.341223493,41.730160523]]],[[[-71.340862297,41.730402527],[-71.340863599,41.730403421],[-71.340862493,41.730402524],[-71.340862297,41.730402527]]],[[[-71.341065158,41.73046886],[-71.341122797,41.730431824],[-71.341158759,41.730382842],[-71.341185567,41.730331698],[-71.341211772,41.730265414],[-71.341216643,41.730241981],[-71.341211493,41.730265523],[-71.341185493,41.730331524],[-71.341158493,41.730382524],[-71.341122493,41.730431524],[-71.341065493,41.730468524],[-71.340915493,41.730445524],[-71.34088731,41.730422659],[-71.340895508,41.730431029],[-71.340915377,41.730445715],[-71.340988404,41.730457594],[-71.341065158,41.73046886]]],[[[-71.340798493,41.730403524],[-71.340555493,41.730437523],[-71.340445493,41.730457523],[-71.340289265,41.730479222],[-71.340346521,41.730472164],[-71.340445838,41.73045762],[-71.340555334,41.730437738],[-71.340747488,41.730412003],[-71.340798981,41.730403704],[-71.340810322,41.730403339],[-71.340798493,41.730403524]]],[[[-71.340901493,41.730474523],[-71.340906965,41.73048507],[-71.340901568,41.730474443],[-71.340882893,41.730466386],[-71.340901493,41.730474523]]],[[[-71.340122229,41.73049685],[-71.340167324,41.730492565],[-71.340204214,41.730488651],[-71.340122229,41.73049685]]],[[[-71.340600874,41.730491155],[-71.340584584,41.730498293],[-71.340600493,41.730491523],[-71.34062343,41.730483878],[-71.340600874,41.730491155]]],[[[-71.340457462,41.730509846],[-71.340406661,41.730516416],[-71.340471492,41.730508524],[-71.340520947,41.730510333],[-71.340471266,41.730508058],[-71.340457462,41.730509846]]],[[[-71.340126607,41.730550413],[-71.340126394,41.730550432],[-71.340126493,41.730550523],[-71.34012827,41.730550307],[-71.340126607,41.730550413]]],[[[-71.340956492,41.730580524],[-71.34095821,41.730582974],[-71.340956352,41.730580105],[-71.340951774,41.730571429],[-71.340956492,41.730580524]]],[[[-71.341071493,41.730744523],[-71.341030066,41.730684719],[-71.341024099,41.730676936],[-71.341071493,41.730744523]]],[[[-71.341071493,41.730744523],[-71.341087493,41.730810524],[-71.341084493,41.730858524],[-71.341083506,41.730876295],[-71.34108354,41.730876229],[-71.341087762,41.730810372],[-71.341071804,41.730744945],[-71.341071493,41.730744523]]],[[[-71.341053492,41.730933524],[-71.341029493,41.730995524],[-71.341029466,41.730996434],[-71.341029513,41.730995691],[-71.341053815,41.730933521],[-71.341076048,41.730890669],[-71.341053492,41.730933524]]],[[[-71.341025493,41.731130524],[-71.341029493,41.731194523],[-71.341044493,41.731260524],[-71.341097493,41.731430523],[-71.341100714,41.731445266],[-71.341097652,41.73143048],[-71.341080537,41.731376028],[-71.341063588,41.731316088],[-71.341044675,41.731260238],[-71.341029665,41.731194149],[-71.341025579,41.731130247],[-71.341025569,41.731127948],[-71.341025493,41.731130524]]],[[[-71.341125767,41.731632252],[-71.341127489,41.731612788],[-71.341127481,41.731612667],[-71.341125767,41.731632252]]],[[[-71.341106493,41.731852524],[-71.34110651,41.731852743],[-71.341106659,41.731850627],[-71.341106493,41.731852524]]],[[[-71.34111762,41.731998891],[-71.341115802,41.731969666],[-71.34111448,41.731957589],[-71.34111762,41.731998891]]],[[[-71.341128493,41.732284524],[-71.341140402,41.732379094],[-71.341137448,41.732353712],[-71.341128918,41.73228427],[-71.341127408,41.732269542],[-71.341128493,41.732284524]]],[[[-71.341152326,41.732508357],[-71.341150914,41.732489161],[-71.341150078,41.732479134],[-71.341152326,41.732508357]]],[[[-71.341161493,41.732627524],[-71.341161606,41.732644296],[-71.341161534,41.732627282],[-71.341159971,41.732607744],[-71.341161493,41.732627524]]],[[[-71.341163659,41.732948083],[-71.341163467,41.732908117],[-71.341163374,41.732905838],[-71.341163659,41.732948083]]],[[[-71.341164895,41.733130971],[-71.341165591,41.733099671],[-71.341164388,41.733030307],[-71.341163931,41.732988382],[-71.341164895,41.733130971]]],[[[-71.341165493,41.733219525],[-71.341163754,41.733231496],[-71.341165663,41.733219161],[-71.341165406,41.733206644],[-71.341165493,41.733219525]]],[[[-71.341044723,41.733507726],[-71.341074175,41.733498815],[-71.341074341,41.733498571],[-71.341044723,41.733507726]]],[[[-71.341019493,41.733515524],[-71.341018227,41.733518689],[-71.341019616,41.733515486],[-71.341019493,41.733515524]]],[[[-71.341001493,41.733560524],[-71.3410111,41.733660959],[-71.341008138,41.733622262],[-71.341001611,41.733560229],[-71.341001493,41.733560524]]],[[[-71.341055493,41.733787524],[-71.341063716,41.733796899],[-71.341055755,41.733787625],[-71.341047955,41.733772158],[-71.341055493,41.733787524]]],[[[-71.341304493,41.734034524],[-71.341330795,41.734063194],[-71.341313113,41.734042856],[-71.341264689,41.733994147],[-71.341210869,41.733942],[-71.341158845,41.733891913],[-71.341113343,41.733852019],[-71.341304493,41.734034524]]],[[[-71.341509109,41.734243158],[-71.341508452,41.734240989],[-71.341458226,41.7341923],[-71.341418083,41.734156467],[-71.341509109,41.734243158]]],[[[-71.341508493,41.734356524],[-71.341491188,41.734384213],[-71.341508594,41.734357026],[-71.341522262,41.734317392],[-71.341508493,41.734356524]]],[[[-71.341441494,41.734476524],[-71.341437891,41.734486531],[-71.341442414,41.734474734],[-71.341441494,41.734476524]]],[[[-71.341412493,41.734582525],[-71.341412493,41.734586686],[-71.341412818,41.734580871],[-71.341412493,41.734582525]]],[[[-71.341501493,41.734971525],[-71.341592493,41.735058524],[-71.341685203,41.735202637],[-71.341629141,41.735110979],[-71.341596379,41.735061834],[-71.341550663,41.735016673],[-71.34150061,41.734970399],[-71.341501493,41.734971525]]],[[[-71.341693494,41.735215524],[-71.341735057,41.735267212],[-71.341692044,41.735213271],[-71.341693494,41.735215524]]],[[[-71.342261494,41.735610525],[-71.342272053,41.735615986],[-71.342147513,41.735543985],[-71.34202077,41.735471819],[-71.341938813,41.735427242],[-71.342261494,41.735610525]]],[[[-71.342319494,41.735640524],[-71.342336665,41.735648497],[-71.342273518,41.735616744],[-71.342319494,41.735640524]]],[[[-71.342955494,41.735944525],[-71.343117494,41.735984525],[-71.343254341,41.736039065],[-71.343253847,41.736038716],[-71.343114268,41.735983091],[-71.342956972,41.735944067],[-71.342892492,41.735922289],[-71.342955494,41.735944525]]],[[[-71.343368494,41.736120524],[-71.343366926,41.736118728],[-71.343294104,41.7360672],[-71.343368494,41.736120524]]],[[[-71.343484494,41.736187524],[-71.343486561,41.736188454],[-71.343419451,41.736149956],[-71.343484494,41.736187524]]],[[[-71.343612464,41.736245061],[-71.343611061,41.736244155],[-71.343504608,41.736196568],[-71.343612464,41.736245061]]],[[[-71.343649494,41.736269524],[-71.343837084,41.736392428],[-71.343739583,41.736327207],[-71.343737205,41.736325671],[-71.343623396,41.736252126],[-71.343649494,41.736269524]]],[[[-71.343968494,41.736469525],[-71.344089291,41.736509016],[-71.343968932,41.736469169],[-71.343885008,41.736421304],[-71.343968494,41.736469525]]],[[[-71.344810495,41.736991525],[-71.344905494,41.737083524],[-71.345078938,41.73723313],[-71.345008207,41.737170779],[-71.344905889,41.737083579],[-71.344810422,41.736991379],[-71.344800233,41.736980717],[-71.344810495,41.736991525]]],[[[-71.345284585,41.737442557],[-71.345215414,41.737368395],[-71.345152608,41.73730356],[-71.345284585,41.737442557]]],[[[-71.345399495,41.737551524],[-71.345657531,41.737850952],[-71.345399576,41.737551344],[-71.345356838,41.737512011],[-71.345399495,41.737551524]]],[[[-71.347439473,41.744099843],[-71.347393107,41.744156771],[-71.347387565,41.744266283],[-71.347393945,41.744357721],[-71.34747449,41.744412805],[-71.34753742,41.744414787],[-71.34760296,41.744371812],[-71.347668241,41.744283121],[-71.347679296,41.744192551],[-71.347653452,41.744171318],[-71.347590702,41.744157719],[-71.347509358,41.744091748],[-71.347439473,41.744099843]]],[[[-71.354260359,41.745357915],[-71.354254249,41.745508042],[-71.35429033,41.745621541],[-71.354370309,41.745714307],[-71.354463082,41.745794169],[-71.354529134,41.745847697],[-71.354597078,41.745901937],[-71.354706702,41.745957259],[-71.35482409,41.746009045],[-71.354956368,41.746039148],[-71.35509289,41.746042476],[-71.355193559,41.746046925],[-71.35531047,41.746066763],[-71.35540001,41.74610454],[-71.355497452,41.746132174],[-71.355545448,41.746148329],[-71.355597499,41.746009526],[-71.355812841,41.745334265],[-71.355795075,41.745335244],[-71.355593597,41.745334991],[-71.355393099,41.745333298],[-71.355196586,41.745325138],[-71.355026243,41.745316462],[-71.35485982,41.745302736],[-71.35468197,41.74527875],[-71.35452932,41.745251366],[-71.354424191,41.745220748],[-71.354368404,41.745192686],[-71.35436202,41.745166539],[-71.354371723,41.74510206],[-71.354402751,41.745033378],[-71.354411288,41.744984838],[-71.354374825,41.744959156],[-71.354349816,41.744984702],[-71.354327599,41.745007396],[-71.354303507,41.745128319],[-71.354294671,41.745169082],[-71.354278543,41.745243479],[-71.354260359,41.745357915]]],[[[-71.343913495,41.755281528],[-71.344042495,41.755292529],[-71.344039495,41.755410529],[-71.344023495,41.755478528],[-71.344022495,41.755598528],[-71.344001495,41.755658528],[-71.343905495,41.755822529],[-71.343875495,41.755884528],[-71.344017495,41.755898529],[-71.344215495,41.755917529],[-71.344734496,41.755960528],[-71.344895495,41.755970528],[-71.345284495,41.756003528],[-71.345917496,41.756062528],[-71.346224496,41.756086528],[-71.346313496,41.756094529],[-71.346375496,41.756102528],[-71.347021496,41.756153529],[-71.347183496,41.756042528],[-71.347982496,41.755497528],[-71.348613497,41.755068528],[-71.349250497,41.754634528],[-71.349385497,41.754542528],[-71.349429497,41.754512528],[-71.351738498,41.752938527],[-71.351748173,41.752934321],[-71.351746764,41.752932959],[-71.351675313,41.752863931],[-71.351573995,41.752778453],[-71.351489044,41.752681036],[-71.351425167,41.752569559],[-71.351363526,41.752389523],[-71.351350059,41.752322889],[-71.351305252,41.752205902],[-71.351293561,41.752097694],[-71.351286244,41.752079137],[-71.351283244,41.751897074],[-71.351288332,41.751809629],[-71.351329481,41.751724679],[-71.351334463,41.751709775],[-71.351450063,41.750977408],[-71.351458909,41.750876156],[-71.351482334,41.750835571],[-71.351474985,41.750817747],[-71.351413476,41.75073973],[-71.351326536,41.75071126],[-71.351285486,41.750661124],[-71.35127547,41.75056792],[-71.351304677,41.750457203],[-71.351315983,41.750335006],[-71.351356623,41.750218724],[-71.351357992,41.750128393],[-71.35137601,41.750128531],[-71.351392738,41.750025574],[-71.351336001,41.750010887],[-71.35134874,41.749982523],[-71.351379766,41.749876863],[-71.35140476,41.749791731],[-71.351374179,41.74967769],[-71.351394846,41.749495634],[-71.351407158,41.749440444],[-71.351376908,41.749368368],[-71.351320613,41.749320933],[-71.351318349,41.749283265],[-71.351343636,41.749242934],[-71.351413457,41.749145351],[-71.351434301,41.749018981],[-71.351494983,41.748898563],[-71.35151298,41.748774979],[-71.351551002,41.748707725],[-71.351695386,41.748640722],[-71.35180498,41.748550577],[-71.351939032,41.748474894],[-71.352064313,41.748415481],[-71.352206407,41.748374706],[-71.352337363,41.748316787],[-71.352486771,41.748296008],[-71.352578829,41.748234883],[-71.352660547,41.748168713],[-71.352781643,41.748135594],[-71.35279267,41.748094444],[-71.352772604,41.747975523],[-71.352829384,41.747863629],[-71.352829085,41.747754109],[-71.352783839,41.747669093],[-71.352756256,41.747672419],[-71.352731122,41.747699944],[-71.352677774,41.747713048],[-71.352598519,41.747677546],[-71.35255086,41.747606248],[-71.352476919,41.747410554],[-71.352375552,41.747416393],[-71.352191368,41.747116229],[-71.352134011,41.747066484],[-71.352139035,41.747046114],[-71.35207276,41.746930449],[-71.352023994,41.746371446],[-71.352886418,41.746222716],[-71.352902656,41.746239545],[-71.353110516,41.746200682],[-71.353111414,41.746141933],[-71.35311895,41.746131446],[-71.353180645,41.746046017],[-71.353205798,41.745983114],[-71.353145907,41.745906426],[-71.353118346,41.745806797],[-71.353133595,41.745694484],[-71.353126845,41.745628429],[-71.353044122,41.745587823],[-71.352906185,41.745549661],[-71.352748745,41.745520073],[-71.352604721,41.745499969],[-71.352469037,41.745437934],[-71.352359737,41.745362258],[-71.35233486,41.745277908],[-71.35232985,41.745158891],[-71.352349853,41.745051684],[-71.35234825,41.745031351],[-71.352292313,41.74501566],[-71.352134808,41.744988929],[-71.351981358,41.744951387],[-71.351843531,41.744905951],[-71.351716579,41.744845414],[-71.351660351,41.744784006],[-71.351652841,41.744703429],[-71.351630468,41.744579908],[-71.351531427,41.744465892],[-71.351451706,41.744356384],[-71.351417659,41.744237147],[-71.351377598,41.744130137],[-71.35130172,41.744022874],[-71.351203767,41.743901611],[-71.351100774,41.74379413],[-71.350987962,41.743694504],[-71.350862139,41.743622349],[-71.350727688,41.743544328],[-71.350572604,41.743489333],[-71.350443773,41.7434244],[-71.350314072,41.743352971],[-71.35018042,41.743286569],[-71.350036691,41.743246909],[-71.349890824,41.743220282],[-71.34973394,41.743217493],[-71.349568351,41.743216064],[-71.349407334,41.743230672],[-71.349245161,41.743256896],[-71.349113144,41.743340652],[-71.349022669,41.7434313],[-71.348957938,41.743546818],[-71.348896174,41.74366019],[-71.348837235,41.74377942],[-71.348802693,41.74388647],[-71.348754448,41.744002878],[-71.348688694,41.744124203],[-71.348589303,41.744227074],[-71.348500458,41.744338078],[-71.348416544,41.74444257],[-71.348313812,41.744511338],[-71.348303975,41.744513269],[-71.348201051,41.74453367],[-71.34815932,41.744541962],[-71.348019428,41.7445705],[-71.347996012,41.744581172],[-71.347881321,41.744670895],[-71.347781309,41.744751285],[-71.347684089,41.744838973],[-71.347588789,41.744928127],[-71.34753224,41.745016875],[-71.347565267,41.745073725],[-71.347679061,41.745170475],[-71.347786251,41.745257702],[-71.347853026,41.745325734],[-71.347903376,41.74532763],[-71.347962859,41.745367295],[-71.348012667,41.745469265],[-71.348068101,41.745581488],[-71.348127444,41.745693693],[-71.348123748,41.745745875],[-71.348067848,41.745792592],[-71.347920779,41.745846482],[-71.347863979,41.745885879],[-71.34784056,41.74596255],[-71.34785872,41.745979429],[-71.34791578,41.745984993],[-71.347989915,41.745949347],[-71.348093842,41.74586679],[-71.348196396,41.74587493],[-71.348291406,41.745935178],[-71.348282342,41.746023646],[-71.348279521,41.746145465],[-71.348290327,41.746263804],[-71.348289675,41.746371927],[-71.348280069,41.746431328],[-71.348151458,41.746478817],[-71.348154028,41.746502787],[-71.34814446,41.746558575],[-71.348116116,41.746574294],[-71.348066697,41.74644909],[-71.347998578,41.746341904],[-71.347913829,41.746307077],[-71.347815404,41.746283049],[-71.347698645,41.746186981],[-71.347589166,41.746124381],[-71.34743039,41.746117996],[-71.347248084,41.746131681],[-71.347101486,41.746153669],[-71.346983527,41.746203458],[-71.346847446,41.746297336],[-71.346695088,41.74637873],[-71.346548993,41.746432643],[-71.346400043,41.74648008],[-71.346269533,41.746529691],[-71.346156187,41.746590394],[-71.346066754,41.746675941],[-71.345943647,41.746745275],[-71.345844497,41.746769109],[-71.345776672,41.746769978],[-71.34562986,41.746740417],[-71.345596867,41.74674593],[-71.345627211,41.746788279],[-71.345707867,41.746899942],[-71.345716891,41.747008147],[-71.345684698,41.747087642],[-71.345611651,41.747113866],[-71.345606246,41.747113836],[-71.345585512,41.747113648],[-71.345528273,41.747055118],[-71.345558801,41.746956731],[-71.345516059,41.746901948],[-71.345452369,41.746820906],[-71.345425875,41.746714027],[-71.345441067,41.74660606],[-71.345518609,41.746602391],[-71.34562736,41.746585888],[-71.34576011,41.746647218],[-71.345847727,41.746618932],[-71.345931212,41.746543508],[-71.345940092,41.746469562],[-71.34598255,41.746413361],[-71.346074004,41.746325598],[-71.34606802,41.746274043],[-71.346013537,41.746161158],[-71.345993855,41.746052892],[-71.345966526,41.745937322],[-71.345942057,41.7458261],[-71.345894612,41.745695111],[-71.345874276,41.745566537],[-71.345860688,41.745438773],[-71.345839372,41.745311616],[-71.345796928,41.745234376],[-71.345701336,41.745150822],[-71.345650115,41.745079287],[-71.345602379,41.745031747],[-71.345546876,41.744924623],[-71.345570473,41.744838507],[-71.345687127,41.744746639],[-71.345821653,41.744689739],[-71.345904703,41.744705698],[-71.346008991,41.744792168],[-71.346096565,41.744895951],[-71.346179112,41.745007616],[-71.346246455,41.745041575],[-71.346375836,41.745067339],[-71.346403393,41.745074785],[-71.346500283,41.745101008],[-71.346546829,41.745097068],[-71.346555923,41.745073914],[-71.346517176,41.74500832],[-71.346552551,41.744976671],[-71.346569228,41.744962308],[-71.346540554,41.74493668],[-71.346408098,41.744855752],[-71.346403922,41.744852637],[-71.346341038,41.744805854],[-71.346297867,41.74471336],[-71.346201515,41.744615352],[-71.346164505,41.744500408],[-71.346180454,41.744406964],[-71.346312188,41.744342055],[-71.346367249,41.744352671],[-71.346405061,41.744374791],[-71.346493034,41.744426272],[-71.346597326,41.744511324],[-71.346715422,41.744582672],[-71.346747505,41.744574277],[-71.346762733,41.744526501],[-71.346801335,41.744409326],[-71.346822615,41.744346373],[-71.346737719,41.744259312],[-71.346765448,41.744219671],[-71.346842624,41.744176071],[-71.346980955,41.744122811],[-71.347124901,41.744084125],[-71.347270836,41.744043269],[-71.347419825,41.743989405],[-71.347578558,41.743934181],[-71.34771975,41.74388456],[-71.347797648,41.743858386],[-71.347836288,41.743865984],[-71.347888924,41.74390779],[-71.347942576,41.744011252],[-71.347956059,41.744081729],[-71.347926369,41.744188854],[-71.347911764,41.744257647],[-71.347844304,41.744299179],[-71.347756473,41.744341943],[-71.347801422,41.744380765],[-71.347964076,41.744385051],[-71.348113455,41.744373265],[-71.348198538,41.744381931],[-71.348277236,41.744365912],[-71.348387105,41.744274741],[-71.348447203,41.7442085],[-71.348487585,41.744098554],[-71.348478192,41.744015756],[-71.348457528,41.743908221],[-71.348405979,41.743793168],[-71.348335874,41.743687375],[-71.348283274,41.743578129],[-71.348187783,41.743490254],[-71.348104157,41.743382179],[-71.348041771,41.743279369],[-71.348034591,41.743177753],[-71.348069314,41.743059063],[-71.348156131,41.742953157],[-71.348218843,41.742904369],[-71.348212787,41.742791868],[-71.348259978,41.742681999],[-71.348316744,41.742577998],[-71.348348455,41.742467285],[-71.348395576,41.742361029],[-71.348419659,41.742326186],[-71.348427157,41.742305705],[-71.348427627,41.74227497],[-71.348425869,41.742230167],[-71.34843141,41.742185442],[-71.34841913,41.742148676],[-71.348477348,41.742140451],[-71.348426517,41.741915879],[-71.348420919,41.741907067],[-71.348271335,41.741671525],[-71.348272207,41.741612044],[-71.348248714,41.741565428],[-71.348208118,41.741494001],[-71.348236281,41.741489876],[-71.348202098,41.741314768],[-71.348170127,41.741315229],[-71.348024333,41.740897563],[-71.347946691,41.740907797],[-71.347852662,41.740848968],[-71.347774007,41.740796814],[-71.347711908,41.740741846],[-71.34763448,41.740674463],[-71.347547236,41.740613492],[-71.34748304,41.740567258],[-71.347433162,41.740535632],[-71.347421202,41.740492714],[-71.347338736,41.740438359],[-71.347334602,41.74043051],[-71.347334134,41.740422139],[-71.34733367,41.740411641],[-71.347334424,41.740402541],[-71.347333416,41.740389961],[-71.347328065,41.740380121],[-71.347322255,41.740371102],[-71.347291835,41.740335661],[-71.34723152,41.740224186],[-71.347194473,41.740112124],[-71.347163226,41.74000087],[-71.347139884,41.739878056],[-71.347118427,41.739758902],[-71.347123032,41.73964509],[-71.347145725,41.739552409],[-71.347132057,41.739431871],[-71.347149383,41.739310116],[-71.347158329,41.739168729],[-71.347125848,41.739140191],[-71.347056951,41.739120158],[-71.347010115,41.739106534],[-71.346914498,41.739023781],[-71.346810323,41.738931503],[-71.34671286,41.738842138],[-71.346612715,41.738737562],[-71.346518258,41.738642438],[-71.346424777,41.738548092],[-71.346418952,41.738545135],[-71.346359637,41.738515097],[-71.346080011,41.738270052],[-71.346080495,41.738270525],[-71.346359495,41.738515525],[-71.346424495,41.738548525],[-71.346698495,41.738827525],[-71.345917495,41.739166525],[-71.345688495,41.739248525],[-71.345795495,41.739340525],[-71.345833495,41.739429525],[-71.345864495,41.739546525],[-71.345978495,41.740079525],[-71.346214495,41.741101525],[-71.346023495,41.741150526],[-71.345825495,41.741181525],[-71.345474495,41.741215526],[-71.345146495,41.741222525],[-71.343918495,41.741256525],[-71.342217494,41.741331526],[-71.341751494,41.741341526],[-71.340355493,41.741392525],[-71.340103493,41.740717526],[-71.339813493,41.739989525],[-71.339577493,41.739404525],[-71.339394493,41.739417526],[-71.338944493,41.739462525],[-71.338066493,41.739538526],[-71.337738492,41.739558526],[-71.337555492,41.739580525],[-71.337387492,41.739579525],[-71.337242492,41.739541525],[-71.337120492,41.739485525],[-71.336723491,41.739268525],[-71.336311492,41.739106526],[-71.336273492,41.739088526],[-71.336166492,41.738996525],[-71.336067492,41.738890526],[-71.335899492,41.738668525],[-71.335800492,41.738580526],[-71.335670491,41.738497525],[-71.335526492,41.738433525],[-71.335350491,41.738405526],[-71.335160492,41.738390525],[-71.334938491,41.738363525],[-71.334526491,41.738331525],[-71.334313491,41.738318525],[-71.334094491,41.738310526],[-71.333870491,41.738295525],[-71.33370249,41.738294525],[-71.33352649,41.738298525],[-71.333206491,41.738295525],[-71.333046491,41.738280525],[-71.332878491,41.738270526],[-71.33269549,41.738242525],[-71.33255849,41.738214525],[-71.33240549,41.738167525],[-71.332253491,41.738130526],[-71.33216149,41.738105525],[-71.33204749,41.738125525],[-71.33169549,41.738380525],[-71.33154049,41.738479526],[-71.33149349,41.738508525],[-71.33146749,41.738524526],[-71.33113149,41.738679526],[-71.33085649,41.738811526],[-71.33067349,41.738905526],[-71.33059749,41.738924526],[-71.33052149,41.738926526],[-71.33043749,41.738919525],[-71.33035749,41.738917525],[-71.33031549,41.738917525],[-71.329939489,41.738076526],[-71.329767489,41.738099525],[-71.32965549,41.738091526],[-71.32950649,41.738016526],[-71.329301489,41.737968525],[-71.328436489,41.737833525],[-71.327349489,41.737668525],[-71.325627488,41.737541525],[-71.324869488,41.737517525],[-71.324196488,41.737513525],[-71.321382487,41.737499525],[-71.320572487,41.737502526],[-71.319794487,41.737509526],[-71.319794487,41.738418526],[-71.319778486,41.738891526],[-71.318955486,41.738908526],[-71.318649486,41.738914526],[-71.318260486,41.738908526],[-71.317399485,41.738917526],[-71.317368486,41.738913526],[-71.317413486,41.740268526],[-71.317413486,41.740952526],[-71.317434486,41.741372527],[-71.317451486,41.741694526],[-71.316071485,41.741794527],[-71.315826485,41.741790526],[-71.314522485,41.741704526],[-71.314491484,41.741857527],[-71.314301485,41.743028527],[-71.314301485,41.743068527],[-71.314308485,41.743113527],[-71.314308485,41.743158527],[-71.314323485,41.743239527],[-71.314323485,41.743275527],[-71.314331485,41.743333527],[-71.314346485,41.743391527],[-71.314354485,41.743450527],[-71.314369485,41.743508527],[-71.314369485,41.743738527],[-71.314385485,41.743805527],[-71.314385485,41.743827527],[-71.314392485,41.743872527],[-71.314384485,41.743918527],[-71.314377484,41.743945527],[-71.314308485,41.744086527],[-71.314385485,41.744161527],[-71.314575485,41.744378527],[-71.314878485,41.744701527],[-71.316002485,41.745920527],[-71.316300486,41.746230527],[-71.317177486,41.746198527],[-71.318702487,41.746123527],[-71.318916487,41.746123527],[-71.319969487,41.746065527],[-71.320206486,41.746056527],[-71.320526487,41.746054527],[-71.320625487,41.746057527],[-71.320694487,41.746055527],[-71.320839487,41.746061527],[-71.320923487,41.746060527],[-71.321213487,41.746067527],[-71.321754487,41.746092527],[-71.321823488,41.746100527],[-71.323685488,41.746202527],[-71.323860488,41.746207528],[-71.324539488,41.746239527],[-71.324738488,41.746253527],[-71.325928489,41.746310527],[-71.326530489,41.746347527],[-71.326866489,41.746358527],[-71.327209489,41.746378527],[-71.327461489,41.746387527],[-71.32821649,41.746425527],[-71.32864449,41.746453527],[-71.32881949,41.746458527],[-71.32980349,41.746506527],[-71.33093349,41.746573527],[-71.331642491,41.746604527],[-71.332382491,41.746638527],[-71.332756491,41.746653527],[-71.333099491,41.746673527],[-71.333855492,41.746716527],[-71.334106492,41.746729527],[-71.334579491,41.746760527],[-71.334686492,41.746767527],[-71.335312492,41.746790527],[-71.335434492,41.746801527],[-71.336029492,41.746834527],[-71.336479492,41.746857527],[-71.336876493,41.746889527],[-71.337097492,41.746889527],[-71.337586492,41.746906527],[-71.337982493,41.746925527],[-71.338463493,41.746938527],[-71.338859493,41.746943527],[-71.339004493,41.746940527],[-71.339379493,41.746946527],[-71.339523493,41.746943527],[-71.339714493,41.746948527],[-71.340203493,41.746961527],[-71.340882493,41.746969526],[-71.341354494,41.746982527],[-71.341339494,41.747064527],[-71.341331494,41.747194527],[-71.341301494,41.747371527],[-71.341255494,41.747588527],[-71.341217494,41.747724527],[-71.341103494,41.747996527],[-71.341042494,41.748155527],[-71.341004494,41.748268527],[-71.340904494,41.748752527],[-71.340820493,41.749308528],[-71.340769494,41.749578528],[-71.340736494,41.749751527],[-71.340683493,41.750202528],[-71.340599494,41.750654528],[-71.340546493,41.751092528],[-71.340523494,41.751228528],[-71.340439494,41.751909528],[-71.340416494,41.752279528],[-71.340378494,41.752667528],[-71.340355494,41.752992528],[-71.340301494,41.753646528],[-71.340256494,41.754313528],[-71.340203494,41.754976528],[-71.340180494,41.755265528],[-71.340164494,41.755576528],[-71.340675494,41.755620529],[-71.342461494,41.755763529],[-71.342644495,41.755782529],[-71.342751494,41.755186528],[-71.343913495,41.755281528]]]]}}"}, +{"type": "precinct", "typeId": 103, "areaId": 25666, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":5,\"NAME\":\"0103\",\"SHAPE_Length\":0.1580775622946,\"SHAPE_Area\":-0.00058403266783727},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.319794487,41.737509526],[-71.320572487,41.737502526],[-71.321382487,41.737499525],[-71.324196488,41.737513525],[-71.324869488,41.737517525],[-71.325627488,41.737541525],[-71.327349489,41.737668525],[-71.328436489,41.737833525],[-71.329301489,41.737968525],[-71.32950649,41.738016526],[-71.32965549,41.738091526],[-71.329767489,41.738099525],[-71.329939489,41.738076526],[-71.33031549,41.738917525],[-71.33035749,41.738917525],[-71.33043749,41.738919525],[-71.33052149,41.738926526],[-71.33059749,41.738924526],[-71.33067349,41.738905526],[-71.33085649,41.738811526],[-71.33113149,41.738679526],[-71.33146749,41.738524526],[-71.33149349,41.738508525],[-71.33154049,41.738479526],[-71.33169549,41.738380525],[-71.33204749,41.738125525],[-71.33216149,41.738105525],[-71.332253491,41.738130526],[-71.33240549,41.738167525],[-71.33255849,41.738214525],[-71.33269549,41.738242525],[-71.332878491,41.738270526],[-71.333046491,41.738280525],[-71.333206491,41.738295525],[-71.33352649,41.738298525],[-71.33370249,41.738294525],[-71.333870491,41.738295525],[-71.334094491,41.738310526],[-71.334313491,41.738318525],[-71.334526491,41.738331525],[-71.334938491,41.738363525],[-71.335160492,41.738390525],[-71.335350491,41.738405526],[-71.335526492,41.738433525],[-71.335670491,41.738497525],[-71.335800492,41.738580526],[-71.335899492,41.738668525],[-71.336067492,41.738890526],[-71.336166492,41.738996525],[-71.336273492,41.739088526],[-71.336311492,41.739106526],[-71.336723491,41.739268525],[-71.337120492,41.739485525],[-71.337242492,41.739541525],[-71.337387492,41.739579525],[-71.337555492,41.739580525],[-71.337738492,41.739558526],[-71.338066493,41.739538526],[-71.338944493,41.739462525],[-71.339394493,41.739417526],[-71.339577493,41.739404525],[-71.339813493,41.739989525],[-71.340103493,41.740717526],[-71.340355493,41.741392525],[-71.341751494,41.741341526],[-71.342217494,41.741331526],[-71.343918495,41.741256525],[-71.345146495,41.741222525],[-71.345474495,41.741215526],[-71.345825495,41.741181525],[-71.346023495,41.741150526],[-71.346214495,41.741101525],[-71.345978495,41.740079525],[-71.345864495,41.739546525],[-71.345833495,41.739429525],[-71.345795495,41.739340525],[-71.345688495,41.739248525],[-71.345917495,41.739166525],[-71.346698495,41.738827525],[-71.346424495,41.738548525],[-71.346359495,41.738515525],[-71.346080495,41.738270525],[-71.346080011,41.738270052],[-71.345692759,41.737891869],[-71.345657531,41.737850952],[-71.345399495,41.737551524],[-71.345356838,41.737512011],[-71.345304067,41.737463444],[-71.345284585,41.737442557],[-71.345152608,41.73730356],[-71.345116216,41.737265991],[-71.345078938,41.73723313],[-71.344905494,41.737083524],[-71.344810495,41.736991525],[-71.344800233,41.736980717],[-71.34471604,41.736892618],[-71.344624379,41.736805523],[-71.344526066,41.736708211],[-71.344413986,41.736625991],[-71.344284195,41.736562514],[-71.344124094,41.736520538],[-71.344089291,41.736509016],[-71.343968494,41.736469525],[-71.343885008,41.736421304],[-71.343852734,41.736402897],[-71.343837084,41.736392428],[-71.343649494,41.736269524],[-71.343623396,41.736252126],[-71.343612464,41.736245061],[-71.343504608,41.736196568],[-71.34348693,41.736188665],[-71.343486561,41.736188454],[-71.343484494,41.736187524],[-71.343419451,41.736149956],[-71.343368844,41.736120927],[-71.343368494,41.736120524],[-71.343294104,41.7360672],[-71.343254341,41.736039065],[-71.343117494,41.735984525],[-71.342955494,41.735944525],[-71.342892492,41.735922289],[-71.342811485,41.735894928],[-71.342673,41.735829173],[-71.342540313,41.735764958],[-71.342408825,41.735684782],[-71.342336665,41.735648497],[-71.342319494,41.735640524],[-71.342273518,41.735616744],[-71.342272333,41.735616148],[-71.342272053,41.735615986],[-71.342261494,41.735610525],[-71.341938813,41.735427242],[-71.341892037,41.7354018],[-71.341773298,41.735315169],[-71.341735057,41.735267212],[-71.341693494,41.735215524],[-71.341692044,41.735213271],[-71.341690598,41.735211458],[-71.341685203,41.735202637],[-71.341592493,41.735058524],[-71.341501493,41.734971525],[-71.34150061,41.734970399],[-71.341499456,41.734969332],[-71.341462016,41.73492281],[-71.341440354,41.734866957],[-71.341422288,41.73481383],[-71.341412603,41.734754723],[-71.341411159,41.734696291],[-71.341409782,41.734635206],[-71.341412493,41.734586686],[-71.341412493,41.734582525],[-71.341412818,41.734580871],[-71.341412848,41.734580325],[-71.341424258,41.734522093],[-71.341437891,41.734486531],[-71.341441494,41.734476524],[-71.341442414,41.734474734],[-71.341444692,41.734468791],[-71.341471539,41.734414902],[-71.341491188,41.734384213],[-71.341508493,41.734356524],[-71.341522262,41.734317392],[-71.341527229,41.73430299],[-71.341509109,41.734243158],[-71.341418083,41.734156467],[-71.341405188,41.734144956],[-71.341357745,41.73409419],[-71.341330795,41.734063194],[-71.341304493,41.734034524],[-71.341113343,41.733852019],[-71.341104008,41.733843835],[-71.341063716,41.733796899],[-71.341055493,41.733787524],[-71.341047955,41.733772158],[-71.341028563,41.733733708],[-71.341012397,41.733677908],[-71.3410111,41.733660959],[-71.341001493,41.733560524],[-71.341001611,41.733560229],[-71.341001337,41.733557625],[-71.341018227,41.733518689],[-71.341019493,41.733515524],[-71.341019616,41.733515486],[-71.341019698,41.733515297],[-71.341044723,41.733507726],[-71.341074341,41.733498571],[-71.34111018,41.733445717],[-71.341133394,41.733391755],[-71.341148363,41.733337004],[-71.341148371,41.733336973],[-71.341156014,41.733281512],[-71.341163754,41.733231496],[-71.341165493,41.733219525],[-71.341165406,41.733206644],[-71.341164354,41.733155286],[-71.341164895,41.733130971],[-71.341163931,41.732988382],[-71.34116379,41.732975398],[-71.341163659,41.732948083],[-71.341163374,41.732905838],[-71.3411605,41.732835984],[-71.341160213,41.732766621],[-71.341161824,41.732695227],[-71.341161606,41.732644296],[-71.341161493,41.732627524],[-71.341159971,41.732607744],[-71.341155817,41.732555786],[-71.341152326,41.732508357],[-71.341150078,41.732479134],[-71.341145131,41.732419723],[-71.341140402,41.732379094],[-71.341128493,41.732284524],[-71.341127408,41.732269542],[-71.34112215,41.732218261],[-71.341118267,41.732146149],[-71.341117944,41.732078868],[-71.341119179,41.732023938],[-71.34111762,41.731998891],[-71.34111448,41.731957589],[-71.341109711,41.731913994],[-71.341106517,41.731852837],[-71.34110651,41.731852743],[-71.341106493,41.731852524],[-71.341106659,41.731850627],[-71.341110521,41.731795922],[-71.341116434,41.731737614],[-71.341121302,41.731682735],[-71.341125767,41.731632252],[-71.341127481,41.731612667],[-71.34112337,41.731549595],[-71.341110052,41.731490368],[-71.341100714,41.731445266],[-71.341097493,41.731430523],[-71.341044493,41.731260524],[-71.341029493,41.731194523],[-71.341025493,41.731130524],[-71.341025569,41.731127948],[-71.341025289,41.731062257],[-71.341029466,41.730996434],[-71.341029493,41.730995524],[-71.341053492,41.730933524],[-71.341076048,41.730890669],[-71.341083506,41.730876295],[-71.341084493,41.730858524],[-71.341087493,41.730810524],[-71.341071493,41.730744523],[-71.341024099,41.730676936],[-71.340991783,41.730634788],[-71.34095821,41.730582974],[-71.340956492,41.730580524],[-71.340951774,41.730571429],[-71.340926451,41.73052344],[-71.340906965,41.73048507],[-71.340901493,41.730474523],[-71.340882893,41.730466386],[-71.340837433,41.730446774],[-71.340760712,41.730434799],[-71.340693343,41.730455928],[-71.340666442,41.730470001],[-71.34062343,41.730483878],[-71.340600493,41.730491523],[-71.340584584,41.730498293],[-71.340553686,41.730511832],[-71.340520947,41.730510333],[-71.340471492,41.730508524],[-71.340406661,41.730516416],[-71.340272731,41.730533739],[-71.34014905,41.730548981],[-71.34012827,41.730550307],[-71.340126493,41.730550523],[-71.340126394,41.730550432],[-71.340075368,41.730555053],[-71.340034212,41.730568214],[-71.339924641,41.730605544],[-71.339853023,41.730653377],[-71.339766312,41.730717518],[-71.339716672,41.73076632],[-71.339662494,41.730810954],[-71.339617711,41.730846087],[-71.339582878,41.730845649],[-71.339556936,41.730817873],[-71.339513664,41.730785727],[-71.339438636,41.73078066],[-71.339418624,41.730786669],[-71.339346337,41.73080834],[-71.339276014,41.73083836],[-71.339198468,41.730863476],[-71.339119938,41.730891289],[-71.339030212,41.730927937],[-71.33900038,41.730990716],[-71.339039679,41.731036532],[-71.339103238,41.731062715],[-71.339197566,41.731066003],[-71.339287829,41.73104653],[-71.339394783,41.731018391],[-71.33941806,41.731013232],[-71.339471241,41.731001483],[-71.339542205,41.730983813],[-71.339613305,41.730960723],[-71.339682678,41.730932051],[-71.339748386,41.730904036],[-71.339877765,41.730856946],[-71.339937701,41.730841868],[-71.340049935,41.730863201],[-71.340129598,41.730908158],[-71.340180529,41.730966453],[-71.340209276,41.731032745],[-71.340233649,41.73109002],[-71.340238925,41.731141574],[-71.340138393,41.73112865],[-71.340034711,41.731093013],[-71.339921907,41.731055214],[-71.339818123,41.731023716],[-71.339697342,41.731013942],[-71.339593911,41.731049702],[-71.339487631,41.731088866],[-71.339417809,41.731114039],[-71.339290783,41.731159851],[-71.339184741,41.731189409],[-71.339099126,41.731205481],[-71.33899989,41.73117472],[-71.338888847,41.731141038],[-71.338800496,41.731115918],[-71.338703019,41.73108994],[-71.338639108,41.731119374],[-71.338632101,41.731186553],[-71.338618956,41.731241992],[-71.338585257,41.731312999],[-71.338539007,41.731372828],[-71.3384677,41.731405545],[-71.338396509,41.731391632],[-71.338307065,41.731376092],[-71.338175706,41.731347664],[-71.338070078,41.731357967],[-71.33796506,41.731380688],[-71.337837347,41.731395555],[-71.33772846,41.731427144],[-71.337628589,41.731466406],[-71.337519627,41.73150346],[-71.337415351,41.731534414],[-71.337294383,41.731574058],[-71.337192041,41.731600944],[-71.337087088,41.731621584],[-71.336997911,41.731633486],[-71.336919896,41.731637995],[-71.336896929,41.731641141],[-71.336876131,41.731668349],[-71.336850923,41.731688621],[-71.336801949,41.731666025],[-71.336762477,41.731628464],[-71.336721678,41.731608739],[-71.336716702,41.731584628],[-71.336749546,41.731550714],[-71.336792392,41.731521731],[-71.336850469,41.731505965],[-71.336881722,41.731509737],[-71.336981706,41.731498033],[-71.337125501,41.731462081],[-71.337402547,41.731369488],[-71.337535054,41.731305939],[-71.337670379,41.731238278],[-71.337764889,41.731193474],[-71.337886099,41.731142144],[-71.338006527,41.731085987],[-71.338104496,41.731049466],[-71.338244281,41.731029241],[-71.338584826,41.730924362],[-71.338669125,41.730884917],[-71.338762512,41.730849052],[-71.338868485,41.730822901],[-71.339119643,41.730740284],[-71.339234057,41.730707399],[-71.339355802,41.73067322],[-71.339418948,41.730656545],[-71.339492267,41.730637163],[-71.339594677,41.730606867],[-71.339721984,41.73057002],[-71.339821542,41.7305445],[-71.339936601,41.730522637],[-71.340052507,41.730503474],[-71.340105885,41.730498403],[-71.340122229,41.73049685],[-71.340204214,41.730488651],[-71.340265624,41.730482136],[-71.340289265,41.730479222],[-71.340445493,41.730457523],[-71.340555493,41.730437523],[-71.340798493,41.730403524],[-71.340810322,41.730403339],[-71.340843924,41.730402257],[-71.340862241,41.730402488],[-71.340862297,41.730402527],[-71.340862493,41.730402524],[-71.340863599,41.730403421],[-71.340878485,41.730413648],[-71.34088731,41.730422659],[-71.340915493,41.730445524],[-71.341065493,41.730468524],[-71.341122493,41.730431524],[-71.341158493,41.730382524],[-71.341185493,41.730331524],[-71.341211493,41.730265523],[-71.341216643,41.730241981],[-71.341225149,41.730201056],[-71.341225079,41.73019303],[-71.341223493,41.730160523],[-71.341224791,41.730160225],[-71.341224625,41.730141345],[-71.341219823,41.730070535],[-71.341209458,41.730002463],[-71.341197872,41.729946669],[-71.341180184,41.7298771],[-71.341162186,41.729821961],[-71.341139544,41.729768141],[-71.341119646,41.729715721],[-71.341101615,41.729661222],[-71.341081823,41.729603313],[-71.341064739,41.729548861],[-71.341047729,41.72948892],[-71.341029019,41.729425502],[-71.341008485,41.72935865],[-71.340988861,41.729294544],[-71.340968393,41.729225634],[-71.340945243,41.729155325],[-71.3409245,41.729098764],[-71.340900022,41.729046955],[-71.340875651,41.728988971],[-71.340848464,41.728933704],[-71.340818662,41.728874295],[-71.340788833,41.728813513],[-71.340761777,41.728754794],[-71.340739307,41.728693405],[-71.34071765,41.728636843],[-71.340693377,41.728576138],[-71.340663477,41.728519472],[-71.340627197,41.728462684],[-71.340593602,41.728406654],[-71.340564545,41.728354792],[-71.340535526,41.728300186],[-71.34050732,41.728249744],[-71.340476333,41.728200578],[-71.340442667,41.728148664],[-71.34040893,41.728100844],[-71.340364445,41.728041231],[-71.340320775,41.727985759],[-71.340274221,41.727935748],[-71.340224001,41.727887082],[-71.340168288,41.727837607],[-71.340107115,41.727786021],[-71.340055947,41.727738016],[-71.340009323,41.727692099],[-71.339966394,41.727645569],[-71.339926319,41.727592869],[-71.339886073,41.727547761],[-71.339850644,41.727493077],[-71.339828104,41.727435781],[-71.339830354,41.727378155],[-71.339888023,41.727340455],[-71.339878601,41.727311467],[-71.339804736,41.727294052],[-71.339741524,41.727252754],[-71.339682013,41.727208762],[-71.339634475,41.727162158],[-71.339578693,41.727116136],[-71.339531118,41.727072298],[-71.339485449,41.727022974],[-71.339450831,41.72697378],[-71.339432568,41.726939954],[-71.339488974,41.726906987],[-71.339428757,41.726754229],[-71.339229724,41.726249414],[-71.339263676,41.726247083],[-71.339248943,41.726046455],[-71.33917852,41.725959705],[-71.339176348,41.725851212],[-71.339155973,41.725820058],[-71.33908941,41.725764302],[-71.339047744,41.725701971],[-71.33900798,41.725635572],[-71.338985611,41.725571439],[-71.338976479,41.725487565],[-71.338978838,41.725423078],[-71.338986483,41.725368912],[-71.339024622,41.725303468],[-71.339052212,41.725257128],[-71.339072059,41.725230605],[-71.33911307,41.725200933],[-71.339072837,41.725114591],[-71.339046739,41.725052488],[-71.339000965,41.725009316],[-71.338943013,41.724977721],[-71.338816706,41.724972673],[-71.338673858,41.724966069],[-71.338524597,41.724960074],[-71.338373438,41.724956797],[-71.33819921,41.724961468],[-71.338058898,41.72496589],[-71.337973667,41.724966136],[-71.337970167,41.724998308],[-71.337817131,41.725000562],[-71.337742793,41.725003064],[-71.337658406,41.725007473],[-71.337582198,41.725012694],[-71.337495101,41.725014354],[-71.337413535,41.725014033],[-71.337332002,41.725012317],[-71.337249824,41.725000286],[-71.337176671,41.724992475],[-71.337169345,41.724992396],[-71.337091578,41.724986614],[-71.337002821,41.72498068],[-71.336917625,41.724978912],[-71.336836025,41.72497994],[-71.336744348,41.724982211],[-71.336656301,41.724985219],[-71.336578362,41.724986983],[-71.336504969,41.724989486],[-71.336429776,41.724991986],[-71.336350923,41.72499304],[-71.336277629,41.724992799],[-71.33619603,41.72499314],[-71.336121819,41.724993583],[-71.33604205,41.724994612],[-71.335965978,41.724994344],[-71.335890852,41.724994099],[-71.335811117,41.72499378],[-71.335738709,41.724993539],[-71.335660802,41.724994617],[-71.335567298,41.724994826],[-71.33549492,41.724994608],[-71.33541152,41.7249949],[-71.335320624,41.72500202],[-71.335245434,41.725003101],[-71.335166749,41.72499798],[-71.335081727,41.724987978],[-71.335011525,41.724972693],[-71.334926433,41.724966121],[-71.334844899,41.724965066],[-71.334753261,41.724963928],[-71.334661689,41.724960709],[-71.334566454,41.724957439],[-71.334479427,41.724955622],[-71.334392399,41.724954536],[-71.334308087,41.724953477],[-71.334217396,41.724951654],[-71.334125789,41.724950469],[-71.3340333,41.724947957],[-71.333940814,41.724944005],[-71.333853857,41.724938802],[-71.333781481,41.724937897],[-71.333694038,41.724955311],[-71.333612905,41.724976279],[-71.333536141,41.725007567],[-71.333449275,41.72503804],[-71.333371631,41.725067268],[-71.333285068,41.725086764],[-71.333205766,41.725107735],[-71.333134567,41.725135669],[-71.333078519,41.725183018],[-71.33304343,41.725235451],[-71.332969309,41.725271591],[-71.332897575,41.725281664],[-71.332825233,41.725279363],[-71.332745532,41.725277669],[-71.332664913,41.72527666],[-71.332583379,41.725275603],[-71.332498149,41.725275228],[-71.33241658,41.725275589],[-71.332326773,41.725274429],[-71.332246086,41.72527614],[-71.332157937,41.725283261],[-71.332076092,41.725295948],[-71.331985057,41.725309217],[-71.33190321,41.725322613],[-71.33181499,41.725333186],[-71.331729622,41.725338939],[-71.331641543,41.725342629],[-71.331558105,41.725345731],[-71.331477349,41.725350186],[-71.331392897,41.725355963],[-71.33131119,41.725362475],[-71.331218462,41.725369542],[-71.331131262,41.725375314],[-71.331036734,41.725381647],[-71.330947704,41.725386685],[-71.330853246,41.72538961],[-71.330767101,41.725389232],[-71.330671763,41.725390052],[-71.330584701,41.725389672],[-71.330489364,41.725390515],[-71.33040325,41.725389405],[-71.330309811,41.725388215],[-71.330226414,41.7253872],[-71.33013484,41.72538464],[-71.330053305,41.725383605],[-71.329962583,41.725382441],[-71.329878299,41.725382065],[-71.32978754,41.725382983],[-71.329706783,41.725388123],[-71.329622332,41.725393235],[-71.3295371,41.72539352],[-71.329456275,41.725401404],[-71.329370908,41.725406537],[-71.329290185,41.725410305],[-71.329201119,41.725417422],[-71.32912033,41.725423271],[-71.329028585,41.725427571],[-71.328944199,41.725431311],[-71.328848791,41.725435582],[-71.328764408,41.725437949],[-71.328670936,41.725437467],[-71.328585738,41.725436357],[-71.328491383,41.725435164],[-71.328406155,41.725434099],[-71.328310921,41.72543016],[-71.328223046,41.725425615],[-71.328129675,41.725421657],[-71.328043565,41.725419195],[-71.327952941,41.725415286],[-71.32786873,41.725410815],[-71.327780893,41.725403502],[-71.327701192,41.725401782],[-71.32762047,41.725404863],[-71.327534251,41.725409261],[-71.327456347,41.725408984],[-71.327373155,41.725399666],[-71.327281897,41.725382034],[-71.327194974,41.725375431],[-71.327113542,41.725370278],[-71.327025703,41.725363674],[-71.326948784,41.725360631],[-71.326860839,41.725359515],[-71.326773848,41.725355656],[-71.326684176,41.725349712],[-71.326598167,41.725343819],[-71.326509344,41.725339958],[-71.326418686,41.725337419],[-71.326327082,41.72533488],[-71.326237344,41.725330971],[-71.326148553,41.725326446],[-71.326067936,41.725324723],[-71.325966289,41.72532203],[-71.325876547,41.725319516],[-71.325787688,41.725317712],[-71.325698797,41.725316571],[-71.325612718,41.725314108],[-71.325519282,41.725311542],[-71.325431374,41.725308367],[-71.32533977,41.725305826],[-71.325254677,41.725299934],[-71.325164902,41.725298105],[-71.325086184,41.725294372],[-71.324994648,41.725289087],[-71.324921392,41.725286094],[-71.32484447,41.725283758],[-71.32477118,41.725282137],[-71.324742791,41.725281751],[-71.323474976,41.725216852],[-71.322828054,41.725171536],[-71.322607508,41.72515704],[-71.322182082,41.725125532],[-71.322106044,41.725123882],[-71.322097608,41.725127843],[-71.322069486,41.725141523],[-71.322096487,41.725196523],[-71.322109486,41.725257523],[-71.322109382,41.725257566],[-71.32210943,41.725257786],[-71.322097139,41.725262574],[-71.322087486,41.725266523],[-71.322087278,41.725266416],[-71.322087213,41.725266441],[-71.32208396,41.725264723],[-71.321944486,41.725193523],[-71.321866486,41.725170523],[-71.321715486,41.725140523],[-71.321637486,41.725134523],[-71.321579611,41.725148813],[-71.321556386,41.725154612],[-71.321530245,41.725154523],[-71.321482486,41.725154523],[-71.321409486,41.725136523],[-71.321181934,41.725109852],[-71.321175233,41.725109242],[-71.321100283,41.725100732],[-71.321008885,41.725089956],[-71.320996044,41.72508918],[-71.320805255,41.72508393],[-71.320789995,41.725083737],[-71.320711745,41.725098526],[-71.320683234,41.725108073],[-71.320640486,41.725122523],[-71.320564486,41.725123523],[-71.320530631,41.725028929],[-71.320455925,41.725023848],[-71.320375276,41.725022807],[-71.320297405,41.725021816],[-71.320209463,41.725020009],[-71.32015608,41.725011307],[-71.320131485,41.725007523],[-71.320054485,41.724986523],[-71.319901486,41.724958523],[-71.319705485,41.724932524],[-71.319626501,41.724922058],[-71.319570314,41.724915022],[-71.319542764,41.724910962],[-71.319240449,41.724870904],[-71.319222195,41.724868691],[-71.319197504,41.724866252],[-71.319134485,41.724860523],[-71.318960485,41.724837523],[-71.318630485,41.724802523],[-71.318469656,41.724777484],[-71.318463624,41.724776636],[-71.318450723,41.724775215],[-71.318385485,41.724768523],[-71.318352068,41.724763827],[-71.318312811,41.724758903],[-71.318252346,41.724749814],[-71.318091768,41.724727249],[-71.318079865,41.724725694],[-71.318074375,41.72472527],[-71.317846011,41.724713946],[-71.317837274,41.724713693],[-71.317758698,41.724703071],[-71.317694507,41.724691384],[-71.317252962,41.724618334],[-71.317251861,41.724618152],[-71.317169485,41.724604523],[-71.317150173,41.724600638],[-71.317080419,41.724587991],[-71.316997404,41.724571096],[-71.316910761,41.724552823],[-71.316866752,41.724543624],[-71.316826485,41.724535523],[-71.316801677,41.724530906],[-71.316737404,41.724519729],[-71.316656186,41.724504255],[-71.316580396,41.724490915],[-71.316520692,41.724478609],[-71.316509484,41.724476523],[-71.316354484,41.724459523],[-71.316180484,41.724427523],[-71.315928484,41.724367523],[-71.315912507,41.724364403],[-71.315843059,41.72435243],[-71.315759125,41.724336905],[-71.315676081,41.724320054],[-71.315605389,41.724304434],[-71.315590484,41.724301523],[-71.315281801,41.724232796],[-71.315241109,41.724224541],[-71.315169878,41.724207876],[-71.315069484,41.724185523],[-71.314988484,41.724164523],[-71.314884533,41.724143086],[-71.314818042,41.724129868],[-71.3147314,41.724111593],[-71.314724606,41.724109817],[-71.314314788,41.724008116],[-71.314262056,41.723995735],[-71.314208011,41.723981618],[-71.314187484,41.723976524],[-71.313991644,41.723925383],[-71.313948631,41.723915484],[-71.313868434,41.723895915],[-71.313785559,41.723873575],[-71.313711776,41.723852713],[-71.313628896,41.723832408],[-71.313551483,41.723810832],[-71.313536554,41.723806932],[-71.313698483,41.724735524],[-71.313767484,41.725143524],[-71.313766484,41.725179524],[-71.313774483,41.725206523],[-71.313957484,41.726378523],[-71.311775483,41.726584524],[-71.309830482,41.726794524],[-71.309814482,41.726799524],[-71.308678482,41.726912524],[-71.307439482,41.727038524],[-71.306419481,41.727142524],[-71.304619481,41.727335524],[-71.304344481,41.727363524],[-71.303566481,41.727447525],[-71.30279648,41.727525525],[-71.30131548,41.727685524],[-71.299965479,41.727816525],[-71.299301479,41.727784524],[-71.297088478,41.727635524],[-71.297074479,41.728513525],[-71.296127478,41.728447524],[-71.295158478,41.728380525],[-71.293846477,41.728271524],[-71.292679477,41.728182525],[-71.290665476,41.728020524],[-71.289337475,41.727920524],[-71.289307476,41.727921524],[-71.288460475,41.727861524],[-71.288460475,41.727870525],[-71.288467476,41.727992525],[-71.288491476,41.728144525],[-71.288559475,41.728282525],[-71.288628476,41.728403525],[-71.288681476,41.728514525],[-71.288688476,41.728640524],[-71.288689476,41.728888525],[-71.288757476,41.729391525],[-71.288803476,41.729502525],[-71.288872476,41.729582525],[-71.289078476,41.729704525],[-71.289375476,41.729838525],[-71.289505476,41.729916525],[-71.289593476,41.729991525],[-71.289619476,41.730013525],[-71.289780476,41.730217526],[-71.289978476,41.730578525],[-71.290085476,41.730738525],[-71.290398476,41.731114526],[-71.290588476,41.731322525],[-71.290725476,41.731459525],[-71.290833477,41.731542526],[-71.290955476,41.731607525],[-71.291107477,41.731649525],[-71.291122477,41.731663525],[-71.291214476,41.731697526],[-71.291344476,41.731721525],[-71.291496477,41.731723525],[-71.292053477,41.731635525],[-71.292419477,41.731592525],[-71.292450477,41.731587525],[-71.292579477,41.731602525],[-71.292885477,41.731650525],[-71.293678478,41.731828525],[-71.294418478,41.732011526],[-71.294586478,41.732062525],[-71.294723478,41.732109525],[-71.294891478,41.732182526],[-71.294998478,41.732243526],[-71.295029477,41.732260526],[-71.295326478,41.732461525],[-71.295441478,41.732558525],[-71.295540478,41.732678525],[-71.295769479,41.733137526],[-71.295776478,41.733141526],[-71.296295479,41.734338526],[-71.296570478,41.735008526],[-71.296860479,41.735646526],[-71.297165479,41.736396526],[-71.297226479,41.736584526],[-71.297017479,41.736603526],[-71.297158479,41.737200526],[-71.297138883,41.73722964],[-71.297123807,41.737252753],[-71.297129794,41.737259453],[-71.297154478,41.737286526],[-71.297173679,41.737299081],[-71.297217431,41.73732674],[-71.297276186,41.737362496],[-71.297341514,41.737406909],[-71.297342479,41.737407526],[-71.297362511,41.737423152],[-71.297392495,41.737446425],[-71.29740488,41.737459518],[-71.297434479,41.737490527],[-71.297460479,41.737528527],[-71.297460021,41.737528607],[-71.297460262,41.737528964],[-71.297386638,41.737541755],[-71.297345859,41.737545268],[-71.297310478,41.737548527],[-71.297300598,41.737548684],[-71.297227838,41.737551377],[-71.297154465,41.737552483],[-71.29707285,41.737552796],[-71.296997645,41.737553898],[-71.296932623,41.73755001],[-71.296897323,41.737549774],[-71.296793414,41.737550505],[-71.296790278,41.737550559],[-71.296778854,41.737551073],[-71.296710899,41.737554271],[-71.296654874,41.737557614],[-71.296592028,41.737560888],[-71.296535413,41.73756296],[-71.29648241,41.737562523],[-71.296433012,41.737561475],[-71.29638804,41.737560504],[-71.296364711,41.737560015],[-71.296263478,41.737558526],[-71.296210599,41.737560059],[-71.296194523,41.737561007],[-71.296182542,41.737562165],[-71.296149653,41.737566679],[-71.296143084,41.737567845],[-71.296127763,41.737575479],[-71.296127486,41.737576184],[-71.296128478,41.737663527],[-71.296133479,41.737691526],[-71.30240348,41.737650526],[-71.304489481,41.737634526],[-71.304665481,41.737737526],[-71.304802481,41.737797526],[-71.304672481,41.737709526],[-71.304548481,41.737634526],[-71.308336482,41.737642526],[-71.311740484,41.737611526],[-71.312003484,41.737500526],[-71.312162484,41.737498526],[-71.312258484,41.737499526],[-71.312523483,41.737588526],[-71.312675484,41.737585526],[-71.312804484,41.737548526],[-71.314621485,41.737537526],[-71.315468484,41.737533525],[-71.317162486,41.737535525],[-71.318226486,41.737528526],[-71.318968486,41.737514525],[-71.319794487,41.737509526]]]]}}"}, +{"type": "precinct", "typeId": 104, "areaId": 25664, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":3,\"NAME\":\"0104\",\"SHAPE_Length\":0.33822777010194,\"SHAPE_Area\":-0.00050893073140601},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.304254481,41.745148528],[-71.304145482,41.745242528],[-71.304139788,41.745249535],[-71.304145207,41.745242922],[-71.304208728,41.74519098],[-71.304254599,41.745148865],[-71.304254601,41.74514838],[-71.304254481,41.745148528]]],[[[-71.304087482,41.745344528],[-71.304078481,41.745410527],[-71.304090482,41.745466528],[-71.304090763,41.745466528],[-71.304078738,41.745410873],[-71.304087703,41.745345003],[-71.304100353,41.745307946],[-71.304087482,41.745344528]]],[[[-71.318839452,41.74929148],[-71.318866594,41.74928467],[-71.318913515,41.749285123],[-71.318866486,41.749284528],[-71.318839452,41.74929148]]],[[[-71.318727486,41.749341528],[-71.318708762,41.749354222],[-71.318727393,41.749341783],[-71.318751141,41.749328158],[-71.318727486,41.749341528]]],[[[-71.319149537,41.749435364],[-71.319094486,41.749376528],[-71.319011487,41.749313528],[-71.31897435,41.749297773],[-71.31901169,41.749313897],[-71.319069648,41.749358811],[-71.319094273,41.749376665],[-71.319149537,41.749435364]]],[[[-71.318541847,41.749450007],[-71.318594259,41.749423947],[-71.318657456,41.749387493],[-71.318541847,41.749450007]]],[[[-71.319149537,41.749435364],[-71.319198675,41.749488201],[-71.319225457,41.749516503],[-71.319149537,41.749435364]]],[[[-71.317537257,41.748823975],[-71.317608471,41.748845814],[-71.317676145,41.748877549],[-71.317763186,41.748907325],[-71.317827365,41.748933132],[-71.317890627,41.74897012],[-71.317950364,41.749011767],[-71.317993325,41.749067819],[-71.318031015,41.749119974],[-71.318073574,41.749123677],[-71.318094329,41.749127575],[-71.318225007,41.749298865],[-71.318185258,41.749348862],[-71.318106867,41.749381052],[-71.318053055,41.749425767],[-71.31802036,41.749475821],[-71.318104639,41.749596908],[-71.318125046,41.749611987],[-71.318077487,41.749553528],[-71.318970487,41.749080528],[-71.318882486,41.748987528],[-71.317291486,41.747304527],[-71.316300486,41.746230527],[-71.316002485,41.745920527],[-71.314878485,41.744701527],[-71.314575485,41.744378527],[-71.314385485,41.744161527],[-71.314308485,41.744086527],[-71.314377484,41.743945527],[-71.314384485,41.743918527],[-71.314392485,41.743872527],[-71.314385485,41.743827527],[-71.314385485,41.743805527],[-71.314369485,41.743738527],[-71.314369485,41.743508527],[-71.314354485,41.743450527],[-71.314346485,41.743391527],[-71.314331485,41.743333527],[-71.314323485,41.743275527],[-71.314323485,41.743239527],[-71.314308485,41.743158527],[-71.314308485,41.743113527],[-71.314301485,41.743068527],[-71.314301485,41.743028527],[-71.314491484,41.741857527],[-71.314522485,41.741704526],[-71.315826485,41.741790526],[-71.316071485,41.741794527],[-71.317451486,41.741694526],[-71.317434486,41.741372527],[-71.317413486,41.740952526],[-71.317413486,41.740268526],[-71.317368486,41.738913526],[-71.317399485,41.738917526],[-71.318260486,41.738908526],[-71.318649486,41.738914526],[-71.318955486,41.738908526],[-71.319778486,41.738891526],[-71.319794487,41.738418526],[-71.319794487,41.737509526],[-71.318968486,41.737514525],[-71.318226486,41.737528526],[-71.317162486,41.737535525],[-71.315468484,41.737533525],[-71.314621485,41.737537526],[-71.312804484,41.737548526],[-71.312675484,41.737585526],[-71.312523483,41.737588526],[-71.312258484,41.737499526],[-71.312162484,41.737498526],[-71.312003484,41.737500526],[-71.311740484,41.737611526],[-71.308336482,41.737642526],[-71.304548481,41.737634526],[-71.304672481,41.737709526],[-71.304802481,41.737797526],[-71.304970482,41.737866526],[-71.305702481,41.738211527],[-71.306099482,41.738419526],[-71.306412482,41.738616526],[-71.306587482,41.738752526],[-71.307236483,41.739270526],[-71.307922482,41.739810527],[-71.307976483,41.739859526],[-71.308125483,41.739984527],[-71.308693483,41.740461526],[-71.308876482,41.740611527],[-71.309052483,41.740765527],[-71.309234483,41.740959527],[-71.309385351,41.741142535],[-71.306816482,41.741991527],[-71.306766888,41.742044097],[-71.306823987,41.74211006],[-71.30695958,41.742155089],[-71.307107331,41.742187879],[-71.307251209,41.742229582],[-71.307367647,41.742267465],[-71.307493276,41.742305456],[-71.30763553,41.742338854],[-71.307723355,41.742346845],[-71.307867018,41.742358337],[-71.308042139,41.742357143],[-71.308187246,41.742345265],[-71.308303462,41.742314517],[-71.308442435,41.742290919],[-71.308575387,41.742289883],[-71.308721869,41.742297948],[-71.308875963,41.742334246],[-71.308985952,41.742374793],[-71.309111124,41.742433408],[-71.309238766,41.742503691],[-71.309348792,41.742542156],[-71.309420693,41.742565739],[-71.309487914,41.742592035],[-71.309556931,41.742620393],[-71.309643526,41.742642102],[-71.30972554,41.742663735],[-71.309767034,41.742675123],[-71.309793883,41.742682509],[-71.309879531,41.74270417],[-71.30997095,41.742715665],[-71.310044121,41.742722783],[-71.310138359,41.742730852],[-71.310216919,41.74274356],[-71.310289037,41.742756119],[-71.310370345,41.742768832],[-71.310458875,41.742786472],[-71.310537476,41.742795704],[-71.310617866,41.7428091],[-71.310692661,41.742825186],[-71.310778096,41.742857161],[-71.31085983,41.742891187],[-71.31092624,41.742913319],[-71.311009311,41.742928778],[-71.31108224,41.742946187],[-71.311148579,41.742971795],[-71.311212913,41.743004169],[-71.311285591,41.743033926],[-71.311351967,41.743057476],[-71.311426725,41.743075574],[-71.31150335,41.743092371],[-71.311574412,41.743111126],[-71.311655512,41.743132778],[-71.311726464,41.743157708],[-71.311802918,41.743180656],[-71.311875703,41.743205634],[-71.311943874,41.743231221],[-71.312015643,41.743258919],[-71.312048299,41.743275118],[-71.312081349,41.743313317],[-71.312112214,41.743326083],[-71.312159312,41.74333238],[-71.312246373,41.743351618],[-71.312313182,41.743373499],[-71.312374675,41.74340653],[-71.31243352,41.743447471],[-71.312487949,41.743484493],[-71.312546772,41.743532705],[-71.312583577,41.743582162],[-71.312602805,41.743637559],[-71.312619378,41.743682387],[-71.312659847,41.743689702],[-71.312729428,41.743661481],[-71.312795348,41.743695183],[-71.312858615,41.743727577],[-71.312931548,41.743764629],[-71.312988415,41.743803553],[-71.313021024,41.743857051],[-71.313056959,41.743911812],[-71.313113159,41.743948791],[-71.313118383,41.743969199],[-71.313083971,41.744010696],[-71.313052101,41.744070607],[-71.313039592,41.744140428],[-71.313039371,41.744216879],[-71.313039166,41.744287384],[-71.313038983,41.744350662],[-71.313058258,41.744390234],[-71.313125933,41.744419364],[-71.313219975,41.744453775],[-71.313306098,41.744492106],[-71.313366721,41.744531082],[-71.313400898,41.744581243],[-71.313451767,41.744635365],[-71.313523828,41.744678956],[-71.313584396,41.744715965],[-71.313643315,41.744731863],[-71.313704982,41.744705595],[-71.313756895,41.744705062],[-71.313838779,41.744688683],[-71.313911878,41.744679563],[-71.313986633,41.744678403],[-71.314061475,41.744679164],[-71.314073722,41.744689041],[-71.314005884,41.744715962],[-71.313922262,41.744731675],[-71.313850936,41.744750655],[-71.313777767,41.744794696],[-71.313702868,41.744834779],[-71.313643766,41.744882159],[-71.313654158,41.744942138],[-71.31370943,41.744994278],[-71.313772638,41.745058322],[-71.313812038,41.745118988],[-71.313840956,41.745171748],[-71.313925322,41.745205525],[-71.314018526,41.745234628],[-71.31410643,41.745269714],[-71.314171419,41.745309337],[-71.314224984,41.74535029],[-71.314265299,41.745411645],[-71.314259873,41.745471598],[-71.314279887,41.745541495],[-71.314316698,41.745600214],[-71.314374628,41.74565238],[-71.314453677,41.745697994],[-71.31453717,41.74573831],[-71.314617152,41.745778642],[-71.314682102,41.745832146],[-71.314725085,41.745889525],[-71.314757439,41.745947573],[-71.31480309,41.74599048],[-71.314873386,41.746022221],[-71.314937565,41.746046703],[-71.314955888,41.746099468],[-71.314935491,41.746152149],[-71.314924753,41.746222659],[-71.314938632,41.746291883],[-71.314979847,41.746348619],[-71.315018482,41.746378319],[-71.31506248,41.74638038],[-71.315131154,41.746360045],[-71.315194631,41.746320584],[-71.315261486,41.746327941],[-71.315254319,41.746378013],[-71.315196982,41.746427386],[-71.31515197,41.746470124],[-71.315154428,41.74653933],[-71.31518948,41.746594112],[-71.315231578,41.746640924],[-71.315304532,41.746672691],[-71.315378459,41.746662931],[-71.315440171,41.74663202],[-71.315492125,41.746617627],[-71.315517586,41.74663084],[-71.315475227,41.746674955],[-71.315440832,41.746710461],[-71.315453935,41.746741447],[-71.315534919,41.746731034],[-71.315593115,41.746690924],[-71.315638929,41.746677162],[-71.315707427,41.746718779],[-71.315761855,41.746768286],[-71.315811908,41.746809897],[-71.315846088,41.746860057],[-71.315867913,41.746916739],[-71.315880067,41.7469807],[-71.315845595,41.747032717],[-71.315813785,41.747082726],[-71.315826005,41.747113093],[-71.315887623,41.747115181],[-71.315958949,41.747096795],[-71.316018861,41.747065286],[-71.316037319,41.747071238],[-71.316064519,41.747106226],[-71.316060068,41.747125314],[-71.316014168,41.747168737],[-71.315961238,41.747214779],[-71.315960277,41.747241123],[-71.315978732,41.747248425],[-71.316051784,41.747245912],[-71.316136298,41.747228895],[-71.31621023,41.74722835],[-71.316251551,41.747237633],[-71.31626722,41.747300936],[-71.31628643,41.747364245],[-71.316331167,41.747407128],[-71.316386508,41.747447443],[-71.316443583,41.747490345],[-71.316497139,41.74753523],[-71.316576253,41.747570301],[-71.316639536,41.747599422],[-71.316689554,41.747642953],[-71.316715014,41.747667372],[-71.316754471,41.747720171],[-71.316799205,41.747774945],[-71.316843022,41.747840923],[-71.316891224,41.747911505],[-71.316937647,41.747984714],[-71.316974479,41.748036845],[-71.317009536,41.748090963],[-71.317037547,41.748141754],[-71.317097206,41.748210364],[-71.31715159,41.748276337],[-71.317188357,41.748340977],[-71.317215397,41.748411525],[-71.317241586,41.748491334],[-71.317257281,41.748545375],[-71.317271208,41.748598773],[-71.317290411,41.748665376],[-71.317280483,41.748752353],[-71.317234618,41.748794451],[-71.317184306,41.74884315],[-71.317198294,41.7488748],[-71.317242288,41.748878827],[-71.317325083,41.748855243],[-71.317389384,41.748827011],[-71.317461586,41.748812627],[-71.317537257,41.748823975]]],[[[-71.319387233,41.749733607],[-71.319399787,41.749745712],[-71.319387486,41.749733528],[-71.319348642,41.749676899],[-71.319387233,41.749733607]]],[[[-71.319492512,41.749837918],[-71.319544243,41.749903884],[-71.319582836,41.749950072],[-71.319597146,41.74996756],[-71.319492487,41.749837528],[-71.319483132,41.749828262],[-71.319492512,41.749837918]]],[[[-71.319665259,41.750059606],[-71.319708245,41.75011831],[-71.319709308,41.750119546],[-71.319708487,41.750118528],[-71.319638283,41.750020744],[-71.319665259,41.750059606]]],[[[-71.319800336,41.750232456],[-71.319811211,41.750251295],[-71.319800487,41.750232528],[-71.319798979,41.75023066],[-71.319800336,41.750232456]]],[[[-71.319963393,41.750458108],[-71.320014319,41.750506304],[-71.320045416,41.750534519],[-71.319912589,41.75040758],[-71.319963393,41.750458108]]],[[[-71.320114375,41.750600681],[-71.320160005,41.750653465],[-71.320166724,41.750662337],[-71.320160487,41.750653529],[-71.320114487,41.750600528],[-71.32010388,41.750590391],[-71.320114375,41.750600681]]],[[[-71.320231005,41.751070729],[-71.320250493,41.751069797],[-71.320231487,41.751070528],[-71.320216487,41.751041528],[-71.320321488,41.750983528],[-71.320337487,41.750930528],[-71.320240487,41.750766528],[-71.320238995,41.75076442],[-71.320240678,41.750766953],[-71.320273926,41.750825001],[-71.320302857,41.750875769],[-71.32033703,41.750930548],[-71.320321033,41.750983259],[-71.320216154,41.751041068],[-71.320231005,41.751070729]]],[[[-71.320381245,41.751085897],[-71.320381487,41.751083529],[-71.320381464,41.751083515],[-71.320381245,41.751085897]]],[[[-71.320311365,41.751296251],[-71.320307387,41.751315665],[-71.320311487,41.751296529],[-71.320322881,41.751277761],[-71.320311365,41.751296251]]],[[[-71.320299755,41.751352902],[-71.32030416,41.751356045],[-71.320299786,41.751352753],[-71.320299755,41.751352902]]],[[[-71.32040075,41.751428848],[-71.320449891,41.751482324],[-71.320499915,41.751537082],[-71.320548176,41.751588589],[-71.320587651,41.751636767],[-71.320631914,41.751686678],[-71.320548487,41.751588529],[-71.320400487,41.751428528],[-71.320397627,41.751426376],[-71.32040075,41.751428848]]],[[[-71.32064725,41.751729754],[-71.32078425,41.751839373],[-71.320784488,41.751839529],[-71.320647487,41.751729528],[-71.320633488,41.751688529],[-71.320633324,41.751688336],[-71.32064725,41.751729754]]],[[[-71.321388455,41.75230819],[-71.321342216,41.752474169],[-71.32133326,41.752491138],[-71.321342487,41.752474528],[-71.321388488,41.752308529],[-71.321394075,41.752287019],[-71.321388455,41.75230819]]],[[[-71.321243297,41.752606518],[-71.321238684,41.752626769],[-71.321243487,41.752606528],[-71.321247025,41.752601996],[-71.321243297,41.752606518]]],[[[-71.321246487,41.75273372],[-71.321261503,41.75278292],[-71.321234205,41.752682824],[-71.321246487,41.75273372]]],[[[-71.321310267,41.752905154],[-71.32134532,41.752962541],[-71.321373301,41.753026503],[-71.321378877,41.753044597],[-71.321373488,41.753026529],[-71.321345488,41.752962528],[-71.321282116,41.752855285],[-71.321310267,41.752905154]]],[[[-71.321387117,41.753131578],[-71.321387488,41.753131529],[-71.321389269,41.753103026],[-71.321387117,41.753131578]]],[[[-71.32127353,41.753146273],[-71.321273568,41.753146518],[-71.321317865,41.75314069],[-71.32127353,41.753146273]]],[[[-71.321393671,41.753302014],[-71.321394079,41.753302888],[-71.321393488,41.753301529],[-71.321386805,41.753289316],[-71.321393671,41.753302014]]],[[[-71.321473269,41.753485341],[-71.32149505,41.753560499],[-71.321495688,41.753572482],[-71.321495487,41.753560529],[-71.321473487,41.753485528],[-71.321471799,41.753481647],[-71.321473269,41.753485341]]],[[[-71.321497378,41.753679124],[-71.321487437,41.753710795],[-71.321497487,41.753679528],[-71.321497432,41.753676252],[-71.321497378,41.753679124]]],[[[-71.321467119,41.753798339],[-71.321474967,41.753858367],[-71.321467488,41.753798528],[-71.321476109,41.753753265],[-71.321467119,41.753798339]]],[[[-71.321494009,41.753947326],[-71.321496763,41.753961618],[-71.321494487,41.753947529],[-71.321477981,41.753876917],[-71.321494009,41.753947326]]],[[[-71.321517236,41.754139781],[-71.321521386,41.754193537],[-71.32151583,41.754084272],[-71.321517236,41.754139781]]],[[[-71.321519409,41.754314435],[-71.321512206,41.754379005],[-71.321495353,41.754432355],[-71.321458233,41.754481077],[-71.32141804,41.75451977],[-71.321458487,41.754481529],[-71.321495487,41.754432529],[-71.321512487,41.754378529],[-71.321519488,41.754314529],[-71.321519591,41.754308351],[-71.321519409,41.754314435]]],[[[-71.321278092,41.754705553],[-71.321295433,41.754774252],[-71.321278487,41.754705529],[-71.32129117,41.754672848],[-71.321278092,41.754705553]]],[[[-71.321325253,41.754846659],[-71.321359353,41.754917858],[-71.321390758,41.754977985],[-71.321297409,41.754780477],[-71.321325253,41.754846659]]],[[[-71.321391737,41.75497986],[-71.321440895,41.755028716],[-71.321470916,41.755058172],[-71.321391647,41.754979686],[-71.321391737,41.75497986]]],[[[-71.32152603,41.75517665],[-71.321531474,41.755238359],[-71.321526488,41.755176529],[-71.321523691,41.755164846],[-71.32152603,41.75517665]]],[[[-71.3215266,41.755610269],[-71.321525009,41.755634856],[-71.321529239,41.75557457],[-71.3215266,41.755610269]]],[[[-71.321494345,41.75587639],[-71.321472249,41.755958661],[-71.321463979,41.755999549],[-71.321494487,41.755876529],[-71.321505244,41.755794926],[-71.321494345,41.75587639]]],[[[-71.321461977,41.756138601],[-71.321462602,41.756177617],[-71.321463478,41.756215981],[-71.32146079,41.756062744],[-71.321461977,41.756138601]]],[[[-71.321470363,41.756484781],[-71.321477401,41.756523834],[-71.321468203,41.756450246],[-71.321470363,41.756484781]]],[[[-71.321508419,41.756638771],[-71.321517727,41.756661829],[-71.321508488,41.75663853],[-71.321482381,41.756542523],[-71.321508419,41.756638771]]],[[[-71.321604039,41.756817458],[-71.321625043,41.756842509],[-71.321635294,41.756850292],[-71.321625488,41.756842529],[-71.321566908,41.756762219],[-71.321604039,41.756817458]]],[[[-71.321676117,41.756872912],[-71.321703402,41.756879678],[-71.321746396,41.756886624],[-71.321676488,41.75687253],[-71.321660762,41.756866122],[-71.321676117,41.756872912]]],[[[-71.32180017,41.756897757],[-71.321804717,41.756899551],[-71.321800488,41.756897529],[-71.321795883,41.756896601],[-71.32180017,41.756897757]]],[[[-71.321663488,41.756956529],[-71.321663394,41.756956501],[-71.321659878,41.75695628],[-71.321663488,41.756956529]]],[[[-71.32160814,41.756957696],[-71.32158443,41.756963193],[-71.321632267,41.756954913],[-71.32160814,41.756957696]]],[[[-71.321663488,41.756956529],[-71.321722461,41.756969635],[-71.321695354,41.756962543],[-71.321663488,41.756956529]]],[[[-71.321826016,41.757012721],[-71.321807457,41.757001525],[-71.321781994,41.756989793],[-71.321826016,41.757012721]]],[[[-71.321868234,41.756935711],[-71.321930096,41.75699689],[-71.321970847,41.757031129],[-71.321868488,41.756935529],[-71.321857797,41.756927754],[-71.321868234,41.756935711]]],[[[-71.321997447,41.757049593],[-71.322010016,41.757056286],[-71.32197976,41.757037757],[-71.321997447,41.757049593]]],[[[-71.321945855,41.757105166],[-71.321906951,41.757072161],[-71.321879968,41.757053848],[-71.321945855,41.757105166]]],[[[-71.322103403,41.757113881],[-71.322147729,41.757132405],[-71.322158684,41.757136468],[-71.322103488,41.757113529],[-71.322095292,41.75710851],[-71.322103403,41.757113881]]],[[[-71.322028488,41.757169529],[-71.3220301,41.757170136],[-71.322028422,41.757169268],[-71.322020223,41.757163091],[-71.322028488,41.757169529]]],[[[-71.322257128,41.757177718],[-71.322295774,41.757189899],[-71.322257488,41.757177529],[-71.322246741,41.757173063],[-71.322257128,41.757177718]]],[[[-71.321489781,41.757170605],[-71.321486633,41.757199753],[-71.32149718,41.757143179],[-71.321489781,41.757170605]]],[[[-71.322417842,41.757209937],[-71.322421946,41.757210834],[-71.322417488,41.757209529],[-71.322391578,41.757207876],[-71.322417842,41.757209937]]],[[[-71.322458309,41.757221526],[-71.322469488,41.757229706],[-71.322469488,41.757229529],[-71.322458488,41.75722153],[-71.322457628,41.757221278],[-71.322458309,41.757221526]]],[[[-71.322322488,41.75724453],[-71.322437488,41.75724453],[-71.322441319,41.757243572],[-71.322437111,41.757244156],[-71.322322853,41.757244482],[-71.322295618,41.757241216],[-71.322204392,41.757218206],[-71.322142223,41.757205951],[-71.322204488,41.757218529],[-71.322295488,41.75724153],[-71.322322488,41.75724453]]],[[[-71.321558264,41.757586629],[-71.321558675,41.757589936],[-71.321558488,41.757586529],[-71.32155611,41.757580807],[-71.321558264,41.757586629]]],[[[-71.321563078,41.757712141],[-71.321567171,41.757744271],[-71.321562131,41.757652709],[-71.321563078,41.757712141]]],[[[-71.321570213,41.757804703],[-71.321568505,41.7578071],[-71.321570487,41.75780453],[-71.321570088,41.757797276],[-71.321570213,41.757804703]]],[[[-71.321553639,41.757823064],[-71.321543576,41.757839308],[-71.321543544,41.757839457],[-71.321563482,41.75781361],[-71.321553639,41.757823064]]],[[[-71.321527578,41.757892042],[-71.321453749,41.757961471],[-71.321445033,41.75797019],[-71.321527488,41.757892529],[-71.32152772,41.757891761],[-71.321527578,41.757892042]]],[[[-71.321009744,41.755624032],[-71.320980883,41.755634827],[-71.320904721,41.75567617],[-71.320867637,41.755700376],[-71.320850988,41.755713134],[-71.320836277,41.755731498],[-71.320807484,41.755805411],[-71.320765801,41.755891356],[-71.320744231,41.755949066],[-71.320727284,41.75600253],[-71.320706505,41.756050431],[-71.320700305,41.756072239],[-71.320699165,41.756119919],[-71.320699147,41.756137413],[-71.320699129,41.756176748],[-71.320694926,41.756205533],[-71.320678895,41.756259022],[-71.320660061,41.756310379],[-71.320631867,41.756421478],[-71.320621095,41.75645103],[-71.320606542,41.756478519],[-71.320569928,41.756531449],[-71.320531396,41.756582272],[-71.320463865,41.756693013],[-71.32044469,41.756724039],[-71.320423543,41.756750191],[-71.320318198,41.756840244],[-71.320271134,41.756883461],[-71.32023528,41.756926559],[-71.320216814,41.75694423],[-71.320198325,41.756959158],[-71.320165867,41.756978363],[-71.320156621,41.756986192],[-71.32015399,41.756998812],[-71.320160897,41.757019084],[-71.320174363,41.757042112],[-71.320219131,41.757088011],[-71.320246677,41.757110923],[-71.320272356,41.757135227],[-71.320319984,41.757185316],[-71.320371291,41.757230448],[-71.320460486,41.757302579],[-71.320573555,41.757400475],[-71.320643816,41.75746089],[-71.32065332,41.757469915],[-71.320804963,41.757579373],[-71.32082303,41.757595364],[-71.320856194,41.757618879],[-71.320945187,41.757676305],[-71.3209935,41.757710958],[-71.321088501,41.757793548],[-71.321114105,41.757812272],[-71.321141518,41.75782814],[-71.321191571,41.757852276],[-71.321210503,41.757864701],[-71.321269582,41.757927316],[-71.321282105,41.757948924],[-71.321289929,41.757969221],[-71.321295653,41.757975496],[-71.321302243,41.757978227],[-71.321309754,41.757978902],[-71.321319078,41.75797599],[-71.321327403,41.757969599],[-71.321332867,41.757959751],[-71.32133807,41.757933757],[-71.321339728,41.757919695],[-71.32134422,41.757907719],[-71.321352492,41.757898516],[-71.321362709,41.757892837],[-71.321412187,41.757881869],[-71.321453339,41.757877999],[-71.321478497,41.757870034],[-71.321485012,41.757866477],[-71.321489607,41.757861521],[-71.321493102,41.757846044],[-71.321494082,41.757789926],[-71.321503828,41.757755477],[-71.321502342,41.75766361],[-71.321496231,41.757631379],[-71.321474545,41.757565665],[-71.321466853,41.757553098],[-71.321455484,41.757544779],[-71.321439491,41.757540707],[-71.321383294,41.757540528],[-71.321360737,41.757535805],[-71.321301412,41.757518103],[-71.321284372,41.757506299],[-71.321271932,41.757487482],[-71.321264969,41.757465105],[-71.321261827,41.75744198],[-71.321241932,41.757369202],[-71.321239182,41.757314519],[-71.321237304,41.757198799],[-71.321234844,41.757160947],[-71.321211875,41.757073506],[-71.321202511,41.757013941],[-71.321193585,41.756983854],[-71.321168302,41.756926574],[-71.321150482,41.756865692],[-71.321134416,41.756799942],[-71.321103657,41.756691472],[-71.321088591,41.756628468],[-71.321071563,41.756502365],[-71.321067238,41.756465265],[-71.321064547,41.756356564],[-71.321061641,41.756292024],[-71.321046328,41.756153277],[-71.321045852,41.756137954],[-71.321042249,41.756016537],[-71.321041342,41.755958334],[-71.32104304,41.755830659],[-71.321048772,41.755779396],[-71.321059309,41.755735116],[-71.321063824,41.755725975],[-71.32107302,41.755713937],[-71.321083026,41.755696321],[-71.321089252,41.755675909],[-71.321091696,41.755653455],[-71.321083903,41.755633204],[-71.321064941,41.755620734],[-71.321038685,41.755617446],[-71.321009744,41.755624032]]],[[[-71.321431657,41.75798689],[-71.321422572,41.758003136],[-71.321417209,41.758020691],[-71.321416588,41.758035978],[-71.321422488,41.75800353],[-71.32144032,41.757975373],[-71.321431657,41.75798689]]],[[[-71.321432163,41.758134899],[-71.321431892,41.758137032],[-71.321432488,41.75813453],[-71.321431618,41.758100609],[-71.321432163,41.758134899]]],[[[-71.321420644,41.758180058],[-71.321422488,41.75817653],[-71.321422521,41.758176391],[-71.321420644,41.758180058]]],[[[-71.321391812,41.758246802],[-71.321387268,41.75826941],[-71.321397713,41.75822763],[-71.321391812,41.758246802]]],[[[-71.32138106,41.758335288],[-71.32138242,41.758362596],[-71.321382553,41.758363289],[-71.321382488,41.758362529],[-71.321385264,41.758282952],[-71.32138106,41.758335288]]],[[[-71.321281646,41.758450319],[-71.321291258,41.758448572],[-71.321291043,41.758448304],[-71.321281646,41.758450319]]],[[[-71.321390807,41.758476885],[-71.321393905,41.758495723],[-71.32139047,41.758455654],[-71.321390807,41.758476885]]],[[[-71.321255113,41.758485822],[-71.32124895,41.758498334],[-71.321262611,41.758473423],[-71.321255113,41.758485822]]],[[[-71.321301488,41.75847253],[-71.321302787,41.758512388],[-71.321301728,41.758472058],[-71.321297739,41.758456661],[-71.321291774,41.758449216],[-71.321301488,41.75847253]]],[[[-71.321216002,41.758557706],[-71.321198898,41.758578823],[-71.321216488,41.758557529],[-71.321218555,41.75855376],[-71.321216002,41.758557706]]],[[[-71.321423125,41.75856354],[-71.321422568,41.758582846],[-71.321423488,41.75856353],[-71.321422082,41.758560573],[-71.321423125,41.75856354]]],[[[-71.32113778,41.758645952],[-71.321138488,41.75864553],[-71.321138687,41.75864535],[-71.32113778,41.758645952]]],[[[-71.321325327,41.7586497],[-71.321317101,41.758611491],[-71.321311999,41.758595226],[-71.321325327,41.7586497]]],[[[-71.321407304,41.758629629],[-71.321402078,41.758652833],[-71.321402488,41.758678335],[-71.321402488,41.758652529],[-71.321422127,41.758585756],[-71.321407304,41.758629629]]],[[[-71.321049582,41.758698045],[-71.321043278,41.75870229],[-71.321056715,41.758694279],[-71.321049582,41.758698045]]],[[[-71.321024658,41.758720738],[-71.321015543,41.758736229],[-71.320987169,41.75883539],[-71.3209786,41.758885277],[-71.320978008,41.758889826],[-71.320987487,41.75883553],[-71.321015488,41.75873653],[-71.321031345,41.758712326],[-71.321024658,41.758720738]]],[[[-71.32139523,41.758754589],[-71.321394358,41.758815648],[-71.321398523,41.758899743],[-71.321400266,41.758958098],[-71.321395487,41.758754529],[-71.321397953,41.758736922],[-71.32139523,41.758754589]]],[[[-71.320941105,41.759002056],[-71.320936138,41.759007582],[-71.320941488,41.759002529],[-71.320944226,41.758997851],[-71.320941105,41.759002056]]],[[[-71.320905121,41.759036738],[-71.320904784,41.759036974],[-71.320905488,41.75903653],[-71.320906417,41.759035653],[-71.320905121,41.759036738]]],[[[-71.321388488,41.75905053],[-71.321390686,41.759054574],[-71.321388758,41.759050663],[-71.321374793,41.75899818],[-71.32136859,41.758982754],[-71.321388488,41.75905053]]],[[[-71.320859686,41.759065207],[-71.320855619,41.759067106],[-71.320859488,41.75906553],[-71.320862539,41.759063606],[-71.320859686,41.759065207]]],[[[-71.320804736,41.759087636],[-71.320805488,41.75908753],[-71.320805712,41.759087438],[-71.320804736,41.759087636]]],[[[-71.321413488,41.75909653],[-71.321415989,41.759098078],[-71.32141383,41.759096028],[-71.321410893,41.759091755],[-71.321413488,41.75909653]]],[[[-71.321434109,41.759074792],[-71.321434488,41.759098663],[-71.321434488,41.75907453],[-71.321426671,41.75904082],[-71.321434109,41.759074792]]],[[[-71.321434488,41.75910953],[-71.321434488,41.759109127],[-71.321432899,41.759108546],[-71.321434488,41.75910953]]],[[[-71.320709411,41.759099528],[-71.320626445,41.759112849],[-71.320742543,41.759096431],[-71.320709411,41.759099528]]],[[[-71.320577677,41.759122443],[-71.320524549,41.759138368],[-71.320494464,41.759150813],[-71.320524488,41.75913853],[-71.320601101,41.7591173],[-71.320577677,41.759122443]]],[[[-71.320421309,41.759184196],[-71.320415148,41.759193086],[-71.320435705,41.759175211],[-71.320421309,41.759184196]]],[[[-71.320413101,41.759257913],[-71.32040619,41.759293738],[-71.32040493,41.759297267],[-71.320406487,41.75929353],[-71.320413488,41.759257529],[-71.320413488,41.759230099],[-71.320413101,41.759257913]]],[[[-71.320376424,41.759365545],[-71.320372572,41.759371196],[-71.320376488,41.75936553],[-71.32037693,41.759364468],[-71.320376424,41.759365545]]],[[[-71.320209107,41.759563489],[-71.320202722,41.759574753],[-71.320189374,41.759619052],[-71.320184552,41.759633202],[-71.320209487,41.75956353],[-71.320213757,41.759560047],[-71.320209107,41.759563489]]],[[[-71.32017634,41.759681601],[-71.320169138,41.759701303],[-71.320146156,41.759739818],[-71.320169487,41.75970153],[-71.320176488,41.75968153],[-71.320176248,41.759676019],[-71.32017634,41.759681601]]],[[[-71.320090443,41.759816348],[-71.320083298,41.759822261],[-71.320090487,41.75981653],[-71.320091852,41.75981479],[-71.320090443,41.759816348]]],[[[-71.320008231,41.759889331],[-71.319986341,41.7599295],[-71.319982606,41.759943646],[-71.319986488,41.75992953],[-71.320019451,41.759874905],[-71.320008231,41.759889331]]],[[[-71.319976118,41.75999203],[-71.319991428,41.760082051],[-71.319975786,41.75997164],[-71.319976118,41.75999203]]],[[[-71.320092483,41.760297523],[-71.320022488,41.76018153],[-71.320013131,41.760158138],[-71.320022258,41.760181709],[-71.320047329,41.760227097],[-71.320075238,41.760273817],[-71.320092483,41.760297523]]],[[[-71.320092483,41.760297523],[-71.320114335,41.760316986],[-71.32013897,41.760332872],[-71.320221188,41.760378419],[-71.320274259,41.760415824],[-71.320282091,41.760421989],[-71.320274488,41.76041553],[-71.320221488,41.76037853],[-71.320138488,41.76033253],[-71.320092483,41.760297523]]],[[[-71.320367349,41.760494959],[-71.320410089,41.760525593],[-71.320367487,41.76049453],[-71.320343898,41.760474491],[-71.320367349,41.760494959]]],[[[-71.315692946,41.760343207],[-71.315726372,41.760382206],[-71.315759844,41.7604261],[-71.315797944,41.760464329],[-71.315819817,41.760484489],[-71.315874113,41.760541497],[-71.315909222,41.760568584],[-71.315945119,41.760587165],[-71.315964865,41.760592594],[-71.316004281,41.760597894],[-71.31604452,41.760593293],[-71.316086412,41.76057678],[-71.316106925,41.760570296],[-71.316166727,41.760560626],[-71.316182534,41.760554889],[-71.316195513,41.760544938],[-71.316201818,41.760529489],[-71.316210468,41.760484497],[-71.316221347,41.760461234],[-71.316239707,41.760438623],[-71.316295108,41.760386959],[-71.316310813,41.760374178],[-71.31633222,41.760364881],[-71.316358351,41.760359023],[-71.316438741,41.760348472],[-71.316548052,41.760328544],[-71.316569585,41.76032835],[-71.316616489,41.760332153],[-71.316667097,41.760333102],[-71.316717781,41.760339655],[-71.316747775,41.760339406],[-71.316776739,41.760336319],[-71.316800958,41.760326318],[-71.316818479,41.7603086],[-71.316851499,41.760264813],[-71.316865183,41.760242949],[-71.316873305,41.760222563],[-71.316873912,41.760202187],[-71.316867928,41.760179812],[-71.316848479,41.760134363],[-71.316844387,41.760112654],[-71.316844216,41.760043956],[-71.316849446,41.760020043],[-71.316860271,41.759994013],[-71.316890352,41.759941805],[-71.316907795,41.759919216],[-71.316965872,41.759860466],[-71.316984366,41.759844167],[-71.317004771,41.759832765],[-71.317025286,41.759825594],[-71.317047689,41.759820462],[-71.317072955,41.759818124],[-71.31722094,41.759816804],[-71.317305241,41.759816046],[-71.317357737,41.759819103],[-71.317385968,41.759826557],[-71.317414248,41.759838197],[-71.317470052,41.759870004],[-71.317492842,41.759890142],[-71.317526239,41.759928409],[-71.317545253,41.759944356],[-71.317585009,41.759969941],[-71.317603888,41.759979645],[-71.317625526,41.759985716],[-71.317740766,41.759985442],[-71.317795941,41.759980704],[-71.317822992,41.759973452],[-71.317904857,41.759937677],[-71.317929021,41.759925504],[-71.317947487,41.759908518],[-71.317974914,41.7598655],[-71.317994351,41.759850574],[-71.3180214,41.759844008],[-71.318092469,41.759834973],[-71.31812703,41.759829059],[-71.318155028,41.759821762],[-71.318176353,41.759808944],[-71.318208584,41.759773594],[-71.318219565,41.759757351],[-71.318224008,41.759741213],[-71.318218159,41.759725104],[-71.3182019,41.759707012],[-71.318148779,41.759666106],[-71.318122181,41.759642509],[-71.3180583,41.759572223],[-71.318035458,41.759549273],[-71.317987012,41.75950762],[-71.317925124,41.759445776],[-71.317885085,41.759401255],[-71.317876265,41.759377481],[-71.317824205,41.759285328],[-71.317806617,41.759240591],[-71.317790949,41.759197275],[-71.31777155,41.759155326],[-71.317767431,41.759132199],[-71.317767985,41.759109079],[-71.317781917,41.75904301],[-71.317786501,41.758977041],[-71.317786509,41.758920234],[-71.317783519,41.75890836],[-71.317774905,41.75889785],[-71.317762565,41.758887471],[-71.317748415,41.758879879],[-71.317710809,41.758871815],[-71.317646706,41.758847815],[-71.317595918,41.75883566],[-71.317450513,41.758821502],[-71.317418656,41.758821817],[-71.317331778,41.75883803],[-71.317295301,41.758841151],[-71.317190386,41.758841396],[-71.317057318,41.758839057],[-71.316961702,41.758834308],[-71.316913881,41.758831213],[-71.316838371,41.758855746],[-71.316744374,41.758893764],[-71.316714926,41.7589277],[-71.316681649,41.758954678],[-71.316661214,41.758966057],[-71.316638863,41.758974689],[-71.316595213,41.758997534],[-71.316571995,41.759010349],[-71.316507327,41.759067052],[-71.316481376,41.759084803],[-71.316440792,41.759125147],[-71.316418569,41.759142218],[-71.316367459,41.759167887],[-71.316342352,41.759178641],[-71.316294815,41.759193795],[-71.316246255,41.759203346],[-71.316223799,41.759205665],[-71.316170411,41.759205465],[-71.316072901,41.75920069],[-71.316040995,41.759196797],[-71.315945066,41.759173065],[-71.315911242,41.759167042],[-71.315878389,41.759163125],[-71.315820219,41.759158046],[-71.315766725,41.759152197],[-71.315715173,41.75915056],[-71.315691775,41.759151483],[-71.315613221,41.759161305],[-71.315587119,41.759167872],[-71.315562955,41.759179976],[-71.315514807,41.759216192],[-71.315485993,41.759231194],[-71.31542916,41.759249946],[-71.315404972,41.759259947],[-71.315384614,41.759276265],[-71.315368115,41.759299565],[-71.315354449,41.759325637],[-71.315348382,41.759353756],[-71.315343719,41.759414122],[-71.315336671,41.759443635],[-71.315309864,41.759525279],[-71.315286464,41.759644],[-71.315266987,41.759715023],[-71.315265459,41.759736791],[-71.315267636,41.759754998],[-71.315274381,41.759767587],[-71.315285829,41.759780092],[-71.31529641,41.759796849],[-71.315332678,41.759898926],[-71.315343338,41.759919868],[-71.315392426,41.760003578],[-71.315423908,41.760038367],[-71.315462951,41.760078016],[-71.315481095,41.760098878],[-71.315508999,41.760145644],[-71.315526195,41.760167237],[-71.315622398,41.76026598],[-71.315658658,41.760307065],[-71.315692946,41.760343207]]],[[[-71.320553392,41.760647602],[-71.320581254,41.760667494],[-71.320519681,41.760619671],[-71.320553392,41.760647602]]],[[[-71.320613132,41.760692656],[-71.320616177,41.760696357],[-71.320613488,41.76069253],[-71.320607422,41.760687819],[-71.320613132,41.760692656]]],[[[-71.320666488,41.76079153],[-71.320639488,41.76072953],[-71.320636318,41.76072502],[-71.320639022,41.760729584],[-71.320666248,41.760791098],[-71.320666488,41.76079153]]],[[[-71.320666488,41.76079153],[-71.320727108,41.760905583],[-71.320749319,41.760947468],[-71.32075679,41.760956919],[-71.320749488,41.76094753],[-71.320666488,41.76079153]]],[[[-71.320981292,41.761158613],[-71.321002146,41.761172458],[-71.321022917,41.761182827],[-71.321037544,41.761188362],[-71.321002488,41.76117253],[-71.32093963,41.761123422],[-71.320981292,41.761158613]]],[[[-71.321064377,41.761200684],[-71.3210665,41.761202069],[-71.321064488,41.76120053],[-71.321058777,41.761197951],[-71.321064377,41.761200684]]],[[[-71.321156167,41.761374493],[-71.321148212,41.761422118],[-71.321156488,41.76137453],[-71.321157488,41.76133553],[-71.321157403,41.7613353],[-71.321156167,41.761374493]]],[[[-71.321055875,41.761897258],[-71.321081627,41.761983994],[-71.321094442,41.762028169],[-71.321032831,41.761809496],[-71.321055875,41.761897258]]],[[[-71.321130034,41.762140012],[-71.321130898,41.762156141],[-71.321130488,41.762139531],[-71.321129068,41.762135226],[-71.321130034,41.762140012]]],[[[-71.321121001,41.762335093],[-71.321115084,41.762375813],[-71.321111209,41.762386301],[-71.321115488,41.762375531],[-71.321121488,41.762335531],[-71.321134488,41.76230153],[-71.321134483,41.76230132],[-71.321121001,41.762335093]]],[[[-71.321066426,41.762496897],[-71.32105747,41.762521513],[-71.321043693,41.762598811],[-71.321030259,41.762695732],[-71.321020217,41.762770154],[-71.321010656,41.762816963],[-71.321020488,41.76277053],[-71.321057488,41.76252153],[-71.321072208,41.762484476],[-71.321066426,41.762496897]]],[[[-71.320963488,41.762973531],[-71.320963908,41.762972261],[-71.320963511,41.762973393],[-71.320963488,41.762973531]]],[[[-71.320963488,41.762973531],[-71.320951213,41.763024029],[-71.320930448,41.763132212],[-71.320923645,41.763171796],[-71.320963488,41.762973531]]],[[[-71.320912973,41.763210214],[-71.320828498,41.763506471],[-71.320919083,41.76319091],[-71.320912973,41.763210214]]],[[[-71.31708529,41.763938939],[-71.317131564,41.76396099],[-71.317178677,41.763978102],[-71.317225766,41.76399311],[-71.317274638,41.764003891],[-71.317439914,41.764026954],[-71.317561727,41.764027284],[-71.317588829,41.76402424],[-71.317604641,41.764017062],[-71.317624,41.763997951],[-71.317634271,41.763995086],[-71.317644567,41.763994256],[-71.317675993,41.763909828],[-71.317710325,41.763888477],[-71.317715003,41.763887021],[-71.317883109,41.763913587],[-71.317978657,41.763912709],[-71.318023544,41.763906697],[-71.318068301,41.763892955],[-71.318113921,41.763876425],[-71.318219378,41.763849515],[-71.318269573,41.76382453],[-71.318362162,41.763757053],[-71.318420763,41.763729909],[-71.318543606,41.763679014],[-71.318605068,41.763655304],[-71.318666449,41.763628096],[-71.318844926,41.763540217],[-71.318913822,41.763512243],[-71.319061962,41.763459032],[-71.319133589,41.763426785],[-71.319196651,41.763387664],[-71.319253075,41.763341558],[-71.319356487,41.763248026],[-71.31939697,41.763200706],[-71.319425134,41.763145704],[-71.319471061,41.763030266],[-71.319481338,41.762970548],[-71.319483093,41.762845687],[-71.319485836,41.762782527],[-71.319485765,41.762720804],[-71.319488585,41.762662561],[-71.319498024,41.762607759],[-71.319513108,41.762555024],[-71.31953205,41.762509979],[-71.319558715,41.762477456],[-71.319590178,41.762454728],[-71.319619784,41.762429916],[-71.319631396,41.762395425],[-71.319613836,41.762350689],[-71.319572952,41.762312479],[-71.319517149,41.762279323],[-71.319456671,41.762246891],[-71.319398135,41.762218671],[-71.319348973,41.762191745],[-71.319312892,41.762161913],[-71.319289866,41.762127734],[-71.319274272,41.762089998],[-71.319255115,41.762005307],[-71.319242306,41.761965427],[-71.319226762,41.761931899],[-71.319202948,41.761906157],[-71.319163267,41.761886176],[-71.319105783,41.761864246],[-71.319044438,41.761836043],[-71.318937584,41.761774586],[-71.318883778,41.761748385],[-71.318830833,41.761720104],[-71.31878073,41.761691119],[-71.318732543,41.761665567],[-71.318678788,41.76164291],[-71.318624164,41.761625169],[-71.31857731,41.761624867],[-71.318530718,41.761640024],[-71.318480445,41.761660824],[-71.318437764,41.761686461],[-71.318411078,41.761715462],[-71.318396496,41.761741533],[-71.318377955,41.761752915],[-71.318345992,41.761746896],[-71.31830631,41.761726937],[-71.318269287,41.761695685],[-71.318229452,41.761665161],[-71.318182234,41.761642469],[-71.318073934,41.761606942],[-71.3180176,41.761599741],[-71.317894929,41.761602245],[-71.31783962,41.761599916],[-71.317794658,41.761600325],[-71.317753713,41.76161684],[-71.317708244,41.761645285],[-71.317661016,41.761680085],[-71.317573178,41.761753149],[-71.317528762,41.761787199],[-71.317487209,41.761824067],[-71.317453187,41.761865725],[-71.317423924,41.761909473],[-71.317398389,41.761952495],[-71.317370907,41.761992723],[-71.317338677,41.76202741],[-71.317273162,41.76209111],[-71.31720862,41.762156183],[-71.31718303,41.762197147],[-71.317164165,41.762247085],[-71.31713297,41.762346973],[-71.317083542,41.762478573],[-71.317071162,41.762525],[-71.317067214,41.762570618],[-71.317070325,41.762647737],[-71.31705674,41.762677353],[-71.317029918,41.762700019],[-71.316992779,41.762720679],[-71.316953904,41.762749821],[-71.316924432,41.762780944],[-71.316906121,41.76280774],[-71.316900019,41.762837277],[-71.316905241,41.762870171],[-71.316934456,41.762940059],[-71.316940776,41.762984183],[-71.31694328,41.763080969],[-71.316953797,41.763153114],[-71.316949587,41.763183294],[-71.316931278,41.76320945],[-71.316908185,41.76323139],[-71.31688504,41.763249809],[-71.316866706,41.763273837],[-71.316858821,41.763307579],[-71.316863145,41.763344725],[-71.316881445,41.763375422],[-71.316909958,41.763402498],[-71.31693669,41.763433139],[-71.316972214,41.763486846],[-71.316980163,41.763516223],[-71.316982936,41.763572325],[-71.31697868,41.763597611],[-71.316964068,41.763622995],[-71.316895113,41.763703567],[-71.316871126,41.763728341],[-71.316852661,41.763744663],[-71.316847224,41.763755174],[-71.316855886,41.763770579],[-71.316877862,41.763797713],[-71.316908322,41.763827629],[-71.316944376,41.763856044],[-71.31708529,41.763938939]]],[[[-71.320738429,41.763993247],[-71.320731604,41.764064085],[-71.320728644,41.764132328],[-71.320738488,41.763993531],[-71.320738875,41.763991082],[-71.320738429,41.763993247]]],[[[-71.320737661,41.764291205],[-71.320751925,41.764361351],[-71.320732673,41.764252577],[-71.320737661,41.764291205]]],[[[-71.320769641,41.764554979],[-71.32077247,41.764579578],[-71.320768634,41.764538295],[-71.320769641,41.764554979]]],[[[-71.320805994,41.764784045],[-71.320818722,41.764850448],[-71.320790429,41.764669546],[-71.320805994,41.764784045]]],[[[-71.320843291,41.765014531],[-71.320855373,41.765085237],[-71.320855643,41.765086163],[-71.320855488,41.765085531],[-71.320837279,41.764969101],[-71.320843291,41.765014531]]],[[[-71.320893852,41.765341177],[-71.320898179,41.765366181],[-71.320888608,41.765231311],[-71.320893852,41.765341177]]],[[[-71.320928062,41.76545139],[-71.320929329,41.76545585],[-71.320928488,41.765451531],[-71.320915762,41.765417171],[-71.320928062,41.76545139]]],[[[-71.317999078,41.765571263],[-71.318027711,41.765599437],[-71.318058218,41.76562407],[-71.318125759,41.765666141],[-71.318156092,41.765676572],[-71.318186359,41.765677809],[-71.318242113,41.765675358],[-71.318276041,41.765667408],[-71.31834126,41.765666322],[-71.318556993,41.76559506],[-71.31862578,41.765574107],[-71.318698359,41.765551787],[-71.318735151,41.765546631],[-71.318774886,41.7655485],[-71.318818476,41.76555886],[-71.318865947,41.765579837],[-71.318958068,41.765625331],[-71.318995058,41.765636435],[-71.319031928,41.765636242],[-71.319127315,41.765627885],[-71.319181099,41.765619805],[-71.319231074,41.76560822],[-71.319272482,41.765590974],[-71.319301616,41.765571695],[-71.319319306,41.765548237],[-71.319329409,41.765518478],[-71.319329075,41.765485226],[-71.319318356,41.765451294],[-71.319299087,41.765416732],[-71.319247329,41.765345551],[-71.319214835,41.76531035],[-71.319172921,41.765279457],[-71.319120694,41.765255706],[-71.318962386,41.765208484],[-71.318913136,41.765200996],[-71.318865929,41.765206182],[-71.318826413,41.765224117],[-71.318793622,41.765251165],[-71.318749444,41.765276206],[-71.318682504,41.765292154],[-71.318544709,41.765314851],[-71.318483329,41.765319488],[-71.318419935,41.765312733],[-71.318292075,41.76528941],[-71.318175746,41.765282297],[-71.318136918,41.765273294],[-71.31810364,41.765256501],[-71.318069423,41.765236894],[-71.31803613,41.765214407],[-71.317992982,41.765155909],[-71.317963501,41.7651356],[-71.317920854,41.765126614],[-71.317877389,41.765126156],[-71.317844304,41.765127727],[-71.317829282,41.765136302],[-71.317833303,41.765161762],[-71.317900002,41.765306467],[-71.317919406,41.765358022],[-71.317954869,41.765498653],[-71.317973236,41.765538886],[-71.317999078,41.765571263]]],[[[-71.320981205,41.76569569],[-71.320987468,41.765717128],[-71.321001081,41.765753854],[-71.321035801,41.765823704],[-71.321051806,41.76585092],[-71.321001488,41.765753531],[-71.320970284,41.765658138],[-71.320981205,41.76569569]]],[[[-71.321140121,41.766041784],[-71.321160096,41.766078854],[-71.321140489,41.766041532],[-71.321111636,41.76597379],[-71.321140121,41.766041784]]],[[[-71.321246155,41.76624786],[-71.321284702,41.766316034],[-71.321223305,41.766199169],[-71.321246155,41.76624786]]],[[[-71.321413347,41.766518637],[-71.32141681,41.76652564],[-71.321427419,41.766547212],[-71.321413489,41.766518531],[-71.321408911,41.766511342],[-71.321413347,41.766518637]]],[[[-71.321470074,41.766705129],[-71.321464997,41.766762477],[-71.321463931,41.766823564],[-71.321470489,41.766705531],[-71.321469917,41.766701531],[-71.321470074,41.766705129]]],[[[-71.321440855,41.766898486],[-71.321432516,41.766929142],[-71.32144601,41.766886616],[-71.321440855,41.766898486]]],[[[-71.321429489,41.767170532],[-71.321427792,41.767138857],[-71.321429441,41.767170311],[-71.321429489,41.767170532]]],[[[-71.321429489,41.767170532],[-71.321436403,41.767204236],[-71.321436462,41.767204404],[-71.321429489,41.767170532]]],[[[-71.321448071,41.767237414],[-71.32145408,41.767250321],[-71.321436707,41.767205102],[-71.321448071,41.767237414]]],[[[-71.321504367,41.767381461],[-71.321514193,41.767418204],[-71.321514606,41.767423289],[-71.321514488,41.767418531],[-71.321504488,41.767381532],[-71.321502391,41.767376072],[-71.321504367,41.767381461]]],[[[-71.320841719,41.767380247],[-71.320811551,41.767386809],[-71.320778561,41.767397598],[-71.320747543,41.767413352],[-71.32072409,41.767432594],[-71.320712024,41.767454597],[-71.320712291,41.767479365],[-71.320727677,41.767504751],[-71.320751531,41.767527954],[-71.320784852,41.767551835],[-71.320798106,41.767553182],[-71.320887049,41.767468477],[-71.32089535,41.767449303],[-71.320921424,41.767410238],[-71.320916545,41.767396143],[-71.320895651,41.767384928],[-71.320869122,41.767379398],[-71.320841719,41.767380247]]],[[[-71.321519069,41.767620579],[-71.321510356,41.767679135],[-71.321519488,41.767620532],[-71.321519319,41.767613687],[-71.321519069,41.767620579]]],[[[-71.32152255,41.767775521],[-71.321538423,41.767808099],[-71.321511222,41.767742158],[-71.32152255,41.767775521]]],[[[-71.321559542,41.767885715],[-71.321570266,41.767918205],[-71.321570601,41.767920451],[-71.321570488,41.767918531],[-71.321545542,41.76782993],[-71.321559542,41.767885715]]],[[[-71.321579869,41.768024309],[-71.321587182,41.768059062],[-71.321575498,41.767992301],[-71.321579869,41.768024309]]],[[[-71.32161656,41.768287335],[-71.321630197,41.768326897],[-71.321635138,41.768337896],[-71.321630488,41.768326531],[-71.321607004,41.768252321],[-71.32161656,41.768287335]]],[[[-71.321729294,41.768591003],[-71.321774135,41.76872449],[-71.321791579,41.768768265],[-71.321805397,41.768797511],[-71.321774489,41.768724532],[-71.321706815,41.768515871],[-71.321729294,41.768591003]]],[[[-71.321830165,41.76884377],[-71.321868533,41.768898737],[-71.321872123,41.768905624],[-71.321868488,41.768898532],[-71.321814715,41.768816018],[-71.321830165,41.76884377]]],[[[-71.321909063,41.768978475],[-71.321942672,41.769031355],[-71.321946151,41.769036467],[-71.321909489,41.768978532],[-71.321902894,41.768965664],[-71.321909063,41.768978475]]],[[[-71.322075208,41.769333498],[-71.322092991,41.76940913],[-71.32210768,41.769452565],[-71.322093489,41.769409532],[-71.322075489,41.769333532],[-71.322073472,41.769328145],[-71.322075208,41.769333498]]],[[[-71.322155399,41.769597712],[-71.322156078,41.769601387],[-71.322155488,41.769597532],[-71.322150029,41.769580977],[-71.322155399,41.769597712]]],[[[-71.322170246,41.769940151],[-71.322166621,41.769952565],[-71.322170489,41.769940532],[-71.3221712,41.769935057],[-71.322170246,41.769940151]]],[[[-71.322083338,41.770227249],[-71.322084722,41.770248498],[-71.322083489,41.770227532],[-71.322087271,41.770205468],[-71.322083338,41.770227249]]],[[[-71.322113182,41.770371438],[-71.322119242,41.770411742],[-71.32212046,41.77053487],[-71.322121304,41.770616239],[-71.322129694,41.770697574],[-71.322135942,41.770747413],[-71.322121489,41.770616532],[-71.322119488,41.770411532],[-71.322113489,41.770371531],[-71.322085583,41.770261901],[-71.322113182,41.770371438]]],[[[-71.322150996,41.771025821],[-71.322175404,41.771103522],[-71.322186312,41.771129059],[-71.322151489,41.771025532],[-71.322147409,41.771005642],[-71.322150996,41.771025821]]],[[[-71.322220712,41.771190311],[-71.322236097,41.771216405],[-71.322237803,41.771220976],[-71.322236489,41.771216532],[-71.322211984,41.771175181],[-71.322220712,41.771190311]]],[[[-71.32226907,41.771389596],[-71.322273875,41.771408022],[-71.322268866,41.771371187],[-71.32226907,41.771389596]]],[[[-71.322309528,41.771462954],[-71.322347382,41.771495518],[-71.322288934,41.771439907],[-71.322309528,41.771462954]]],[[[-71.322390614,41.771536785],[-71.322391704,41.771538431],[-71.322390489,41.771536532],[-71.322388937,41.771535056],[-71.322390614,41.771536785]]],[[[-71.322414381,41.771736216],[-71.322415197,41.771816898],[-71.322420312,41.771856492],[-71.32242919,41.771893942],[-71.322441831,41.771929249],[-71.322458236,41.771962434],[-71.322476062,41.771992637],[-71.322434489,41.771905532],[-71.322420489,41.771856532],[-71.322415489,41.771816532],[-71.32241409,41.771657828],[-71.322414381,41.771736216]]],[[[-71.322672284,41.772187657],[-71.322672962,41.772188616],[-71.322672489,41.772187532],[-71.322668552,41.772184383],[-71.322672284,41.772187657]]],[[[-71.322685484,41.772275334],[-71.322665329,41.77233913],[-71.322657191,41.772376691],[-71.322654297,41.772409484],[-71.322665489,41.772339533],[-71.322685489,41.772275532],[-71.322685539,41.772274922],[-71.322685484,41.772275334]]],[[[-71.322673434,41.7725797],[-71.322677634,41.772618583],[-71.322677942,41.772651149],[-71.32268088,41.772660324],[-71.322688528,41.772667357],[-71.32269525,41.772677932],[-71.322695489,41.772701345],[-71.322695489,41.772677532],[-71.322659083,41.772513703],[-71.322673434,41.7725797]]],[[[-71.319898327,41.768783951],[-71.319903646,41.768837016],[-71.319921259,41.768896342],[-71.319933182,41.768958564],[-71.319933833,41.769020814],[-71.319928773,41.769082415],[-71.319918986,41.769141219],[-71.31988984,41.769251767],[-71.31987335,41.769304225],[-71.319871719,41.769308591],[-71.319842973,41.769385088],[-71.319846079,41.769410546],[-71.319873647,41.769427375],[-71.319922074,41.769446203],[-71.31997054,41.769472807],[-71.320015316,41.769507935],[-71.320056407,41.76955017],[-71.320095647,41.769598782],[-71.320131153,41.769650224],[-71.320162895,41.769703832],[-71.320213997,41.769804055],[-71.320230567,41.76985421],[-71.320230125,41.769903011],[-71.320217378,41.769949827],[-71.320181391,41.770037747],[-71.32012314,41.770167597],[-71.32005547,41.770300999],[-71.320034199,41.770347824],[-71.320018632,41.770398157],[-71.319997065,41.770507277],[-71.319988151,41.770559678],[-71.319971718,41.770711959],[-71.319964253,41.770814583],[-71.319964312,41.770913651],[-71.319960057,41.770960411],[-71.31993931,41.771060293],[-71.319901183,41.771214049],[-71.319870382,41.77134799],[-71.319864073,41.771375628],[-71.31986897,41.771394023],[-71.319892757,41.771408742],[-71.3199344,41.771417703],[-71.319980844,41.771425231],[-71.320026351,41.771439824],[-71.320070012,41.7714594],[-71.320111835,41.77148039],[-71.320148891,41.771502105],[-71.320180351,41.771525983],[-71.320208966,41.771551298],[-71.320229137,41.771580922],[-71.320241775,41.771616938],[-71.320267199,41.771701707],[-71.320323443,41.771842918],[-71.320340939,41.77188953],[-71.320350886,41.771937593],[-71.320345711,41.771985747],[-71.320327229,41.772029717],[-71.320302125,41.772070911],[-71.320248059,41.772145516],[-71.320223904,41.772186002],[-71.32018787,41.772268296],[-71.32015361,41.77233925],[-71.32014173,41.772381768],[-71.320137479,41.772427087],[-71.320137466,41.772519089],[-71.320132289,41.772567951],[-71.32012046,41.772614014],[-71.320100038,41.772652333],[-71.320047768,41.772717747],[-71.320022664,41.772758918],[-71.320006179,41.772809272],[-71.320002913,41.772863078],[-71.320010091,41.772918226],[-71.320025761,41.772973341],[-71.320048012,41.773024168],[-71.320108539,41.773119351],[-71.320133678,41.773175122],[-71.320150345,41.77323447],[-71.320161385,41.773295959],[-71.320176158,41.773355327],[-71.320200354,41.773409678],[-71.320232,41.773454779],[-71.320270222,41.773497032],[-71.320308548,41.773545643],[-71.320344104,41.773602047],[-71.320399137,41.773717804],[-71.320426127,41.773767175],[-71.320463456,41.773812262],[-71.320505466,41.773854475],[-71.320542793,41.773900271],[-71.320595653,41.773984877],[-71.320616842,41.774022277],[-71.320635186,41.774061092],[-71.320652492,41.774113531],[-71.321769489,41.773338532],[-71.322509489,41.772824533],[-71.32256317,41.772801669],[-71.322563158,41.772801132],[-71.322557871,41.772555578],[-71.322548137,41.772529469],[-71.322516395,41.772474444],[-71.322510523,41.772454653],[-71.322505479,41.772422834],[-71.322505333,41.77240941],[-71.322508975,41.772395923],[-71.322517325,41.772381026],[-71.32252471,41.772361873],[-71.322523529,41.772247252],[-71.322513774,41.772217576],[-71.322471474,41.772147052],[-71.322442686,41.772106873],[-71.322410142,41.772066024],[-71.322373811,41.772024461],[-71.322274184,41.771894114],[-71.322212808,41.771806729],[-71.322117135,41.771694043],[-71.322086457,41.771652466],[-71.321998163,41.771522754],[-71.321971223,41.771476906],[-71.321949945,41.771427499],[-71.32193337,41.771378763],[-71.32192153,41.771330011],[-71.321891712,41.771187217],[-71.321870072,41.77110314],[-71.321843862,41.771036757],[-71.321807316,41.770973994],[-71.321717177,41.770849218],[-71.321644369,41.770754108],[-71.321625152,41.770721673],[-71.321592292,41.770651781],[-71.321541943,41.770532487],[-71.321525438,41.770491526],[-71.321489247,41.770367177],[-71.321461873,41.770280302],[-71.321442129,41.770195496],[-71.321429413,41.770154518],[-71.32141102,41.77011145],[-71.321384102,41.770069147],[-71.321321002,41.76999875],[-71.321299816,41.76996064],[-71.321271503,41.769870927],[-71.321260608,41.769822885],[-71.321258265,41.769775475],[-71.321263417,41.769724485],[-71.321272305,41.769669957],[-71.321284059,41.769617514],[-71.321300568,41.7695686],[-71.321319021,41.76952392],[-71.321329926,41.769479983],[-71.321322892,41.769438968],[-71.321299787,41.769398774],[-71.321241305,41.769315601],[-71.321238539,41.769310725],[-71.321220117,41.7692782],[-71.321205531,41.769239369],[-71.321200368,41.769195521],[-71.321198416,41.769095741],[-71.321195076,41.769044121],[-71.321187946,41.768993912],[-71.32116711,41.768895658],[-71.321143945,41.768756373],[-71.321127914,41.768665902],[-71.321104407,41.768583949],[-71.321090742,41.768543678],[-71.321073319,41.768503448],[-71.321052162,41.768466047],[-71.320996589,41.768392071],[-71.320939097,41.768315965],[-71.320915072,41.768277188],[-71.320894809,41.768236953],[-71.32087833,41.768198142],[-71.320858145,41.768162869],[-71.320835187,41.7681361],[-71.320807638,41.768123502],[-71.320781229,41.768129338],[-71.320763556,41.768157027],[-71.320758331,41.768201636],[-71.320758908,41.768257552],[-71.320755721,41.768316274],[-71.320743016,41.768370156],[-71.32072083,41.76841698],[-71.320690042,41.768459628],[-71.320621927,41.768545623],[-71.320564193,41.768633007],[-71.320532443,41.768669982],[-71.320492094,41.768701341],[-71.320441342,41.768727812],[-71.320383811,41.76874229],[-71.320329005,41.76874401],[-71.320278861,41.768738626],[-71.320227698,41.768726174],[-71.320131799,41.768686392],[-71.320075903,41.76867327],[-71.320015392,41.768672192],[-71.319965416,41.76868309],[-71.319931597,41.768705929],[-71.319909264,41.768740014],[-71.319898327,41.768783951]]],[[[-71.310365089,41.773001573],[-71.310476454,41.773048993],[-71.310520485,41.773067533],[-71.310576485,41.773091533],[-71.310705433,41.773146495],[-71.311135143,41.773329467],[-71.312588486,41.773947533],[-71.313834486,41.774477533],[-71.314653274,41.774825493],[-71.316266159,41.775493943],[-71.317770453,41.776121045],[-71.317770924,41.776121224],[-71.317818488,41.776087533],[-71.318056488,41.775922533],[-71.318220488,41.775807533],[-71.318935488,41.775309533],[-71.319572488,41.774866533],[-71.319572601,41.774866454],[-71.319572197,41.774866108],[-71.31953932,41.774837878],[-71.319536943,41.774835838],[-71.319522644,41.774825319],[-71.319513083,41.774814053],[-71.319509149,41.774800623],[-71.319482971,41.774734239],[-71.319481757,41.774709493],[-71.319485309,41.774684709],[-71.319485069,41.774661336],[-71.319480094,41.774638025],[-71.319443378,41.774559687],[-71.31943552,41.774529282],[-71.319431184,41.774474116],[-71.319420219,41.774418984],[-71.319418699,41.774361673],[-71.319410885,41.774337648],[-71.319376371,41.774291147],[-71.319354432,41.774270759],[-71.319318361,41.774256798],[-71.319268119,41.774241511],[-71.319215909,41.774219864],[-71.319165515,41.77419328],[-71.319120805,41.774165927],[-71.319084621,41.774137833],[-71.319016834,41.77407168],[-71.318936781,41.774010586],[-71.318903414,41.773980324],[-71.318866323,41.773960026],[-71.318819891,41.773947535],[-71.318770543,41.773929414],[-71.318613695,41.773844666],[-71.318559599,41.773820202],[-71.318506466,41.773800703],[-71.318457096,41.773779745],[-71.318415224,41.773753792],[-71.318378992,41.773721443],[-71.318345496,41.773682719],[-71.318319559,41.773639685],[-71.318303982,41.773595203],[-71.318295008,41.773549245],[-71.318279427,41.773506181],[-71.318226623,41.773424387],[-71.318192826,41.773362794],[-71.318185197,41.7733489],[-71.31816222,41.7733179],[-71.318132656,41.773293292],[-71.318094667,41.773277223],[-71.318047288,41.773265462],[-71.317997965,41.773249467],[-71.317956096,41.773222805],[-71.317926465,41.773189712],[-71.317876642,41.773123473],[-71.317857423,41.773092456],[-71.317842937,41.773062109],[-71.317831267,41.773029616],[-71.31782899,41.772992131],[-71.317834263,41.77295317],[-71.317843347,41.772917029],[-71.317843989,41.772884488],[-71.3178371,41.772857629],[-71.317827443,41.772837169],[-71.317794871,41.772796296],[-71.317771961,41.77277378],[-71.317749005,41.772746323],[-71.317703888,41.772680046],[-71.317674329,41.772654043],[-71.317605814,41.772608403],[-71.317568654,41.772580306],[-71.317532394,41.772547249],[-71.317497059,41.772511357],[-71.317440635,41.772446572],[-71.317422408,41.772421204],[-71.317425054,41.772403485],[-71.317462877,41.772402562],[-71.317527299,41.772415653],[-71.31760502,41.772435741],[-71.317683711,41.772458644],[-71.317823177,41.772509542],[-71.317961552,41.77254626],[-71.318025125,41.772567835],[-71.318082092,41.772592281],[-71.318136239,41.77261958],[-71.31818852,41.772648295],[-71.318281773,41.772707215],[-71.318332114,41.772730278],[-71.318390852,41.772744092],[-71.318455203,41.772750094],[-71.31851948,41.772749738],[-71.318576108,41.77274235],[-71.318623203,41.772725089],[-71.318659861,41.772703651],[-71.318685208,41.772685098],[-71.318689723,41.772665964],[-71.318673414,41.772642726],[-71.318641962,41.772616012],[-71.318556317,41.772556326],[-71.318411804,41.772475073],[-71.318273987,41.772402956],[-71.318201777,41.77236728],[-71.318168506,41.772346943],[-71.31813802,41.77232446],[-71.318114141,41.772299129],[-71.318097808,41.772273742],[-71.318091892,41.772248302],[-71.318095388,41.7722221],[-71.318109276,41.772193719],[-71.318122871,41.772171992],[-71.318148372,41.772131212],[-71.318222011,41.77202819],[-71.318262946,41.771963558],[-71.318275887,41.771935176],[-71.318275648,41.771911826],[-71.31825747,41.771890712],[-71.318203204,41.771851383],[-71.318185028,41.771829538],[-71.318184759,41.771805479],[-71.318201489,41.77177708],[-71.318251018,41.771719483],[-71.318264011,41.771694645],[-71.318263744,41.771669878],[-71.318248387,41.771645201],[-71.31822368,41.771631898],[-71.318193311,41.771622153],[-71.318162877,41.771603215],[-71.318134241,41.771575064],[-71.318101812,41.77154837],[-71.318039001,41.771506261],[-71.318012332,41.77148447],[-71.317990369,41.771462642],[-71.317978818,41.771442178],[-71.317978361,41.771398315],[-71.317978786,41.771345237],[-71.317982356,41.771325393],[-71.31799435,41.771297031],[-71.318013896,41.771266487],[-71.3180306,41.77123596],[-71.318035945,41.77120409],[-71.318029041,41.771171582],[-71.318014479,41.771135563],[-71.317992346,41.771098183],[-71.317962674,41.771058024],[-71.317857517,41.770942553],[-71.317827813,41.770903103],[-71.317782607,41.770825505],[-71.317763313,41.770788816],[-71.317742225,41.770759922],[-71.317680265,41.77070862],[-71.317655393,41.770678325],[-71.31764273,41.770640892],[-71.317640404,41.770599152],[-71.317650883,41.770512747],[-71.31765043,41.770467466],[-71.317642355,41.770417279],[-71.317638068,41.770367052],[-71.317645141,41.77031817],[-71.31766073,41.770271382],[-71.317685788,41.770225249],[-71.317717496,41.770182604],[-71.317750201,41.770143504],[-71.317782927,41.770107926],[-71.317848547,41.770053076],[-71.317883284,41.77003024],[-71.317959433,41.769989471],[-71.318031802,41.769945883],[-71.318063671,41.769921647],[-71.318082298,41.769891809],[-71.31808475,41.769856412],[-71.318076355,41.769768011],[-71.318066435,41.769722074],[-71.318036181,41.769628836],[-71.318025311,41.769583607],[-71.318020154,41.769538341],[-71.318022488,41.769490914],[-71.318041717,41.769334407],[-71.318045036,41.769305712],[-71.318047791,41.769282002],[-71.31805108,41.769231741],[-71.318052508,41.769093752],[-71.318068245,41.76905968],[-71.318099148,41.769031211],[-71.318141364,41.768999124],[-71.318183483,41.768957844],[-71.318217034,41.768910947],[-71.318238328,41.768866936],[-71.318247364,41.768825854],[-71.318247981,41.768791163],[-71.318243908,41.768762182],[-71.318234197,41.768739595],[-71.318205419,41.768697288],[-71.318188217,41.768676861],[-71.318167221,41.768658579],[-71.31813965,41.768643167],[-71.318104579,41.768633461],[-71.318062976,41.768632275],[-71.318017635,41.768635382],[-71.317974137,41.768634901],[-71.317937202,41.768625215],[-71.317902978,41.768607712],[-71.317871549,41.768584541],[-71.317845728,41.768554954],[-71.31780538,41.768488662],[-71.317726853,41.768387914],[-71.317696324,41.768359782],[-71.317659269,41.768338776],[-71.317619364,41.7683206],[-71.317578497,41.768297461],[-71.317541292,41.768264425],[-71.317505912,41.76822357],[-71.317474271,41.768178468],[-71.317449181,41.768128368],[-71.317386243,41.767981519],[-71.317380088,41.76793273],[-71.317389078,41.767886663],[-71.317407533,41.767841961],[-71.317432588,41.76779656],[-71.317492143,41.76770351],[-71.317522878,41.767658759],[-71.317577966,41.767589805],[-71.317579547,41.767560078],[-71.317564097,41.767525498],[-71.317539103,41.767484592],[-71.317506515,41.767439466],[-71.317429954,41.767346496],[-71.31730956,41.76722048],[-71.317269474,41.767180373],[-71.317175115,41.76710519],[-71.31703505,41.766989937],[-71.316990251,41.766953389],[-71.316945473,41.766919678],[-71.316859832,41.766862118],[-71.316827435,41.766836133],[-71.316803509,41.766806525],[-71.316769878,41.766752935],[-71.316718168,41.766686716],[-71.316701061,41.766676192],[-71.316685865,41.766670633],[-71.31649691,41.766679479],[-71.316411812,41.766677834],[-71.316389144,41.766678667],[-71.316369362,41.766685153],[-71.316329965,41.766714385],[-71.316304571,41.766728683],[-71.316274399,41.766736639],[-71.316240421,41.766740358],[-71.316165762,41.766741496],[-71.316127047,41.766745962],[-71.316063862,41.766761892],[-71.31604311,41.766765518],[-71.316001532,41.766767167],[-71.315968549,41.766775141],[-71.315930877,41.766788802],[-71.315887476,41.76679756],[-71.315793905,41.766800177],[-71.315755147,41.766798285],[-71.315721142,41.766800586],[-71.315707962,41.766805619],[-71.315694829,41.766815592],[-71.315684533,41.766826987],[-71.315678077,41.766841178],[-71.315674452,41.766858896],[-71.315646698,41.766918493],[-71.315631318,41.766987921],[-71.315631746,41.76703039],[-71.315638561,41.767050868],[-71.315663528,41.767089648],[-71.315677894,41.767107966],[-71.315689441,41.767129116],[-71.315694408,41.767154577],[-71.315695267,41.767238781],[-71.315688554,41.767321625],[-71.315689762,41.767347789],[-71.315699677,41.767395143],[-71.315706544,41.767418457],[-71.315706429,41.767501266],[-71.315698261,41.767537408],[-71.315696916,41.767591194],[-71.315700495,41.76766406],[-71.315702889,41.767713598],[-71.315704034,41.767783281],[-71.315687956,41.76773347],[-71.315633003,41.767626218],[-71.315621405,41.767601524],[-71.31561454,41.7675775],[-71.31561215,41.767526567],[-71.315610398,41.767445197],[-71.315607267,41.767418321],[-71.315588812,41.767366768],[-71.315563369,41.76728058],[-71.315518801,41.767173962],[-71.315494613,41.767118901],[-71.315487752,41.767093459],[-71.315488458,41.76707082],[-71.315499604,41.767050942],[-71.315515484,41.767031026],[-71.315524711,41.767009041],[-71.315526374,41.766982859],[-71.315514083,41.766890929],[-71.315513745,41.766859781],[-71.315520092,41.766830039],[-71.315548844,41.766773965],[-71.315585239,41.766726342],[-71.315606793,41.766709247],[-71.315630293,41.766694946],[-71.315657623,41.766687718],[-71.315686942,41.766689686],[-71.315753296,41.766708407],[-71.315784629,41.766721676],[-71.315814016,41.766732128],[-71.315842439,41.76673764],[-71.31587079,41.766736061],[-71.315901905,41.766729548],[-71.315933,41.766719444],[-71.315995091,41.766690797],[-71.316029026,41.766680698],[-71.316066796,41.766675544],[-71.316178319,41.766676317],[-71.316210457,41.766675431],[-71.316236867,41.76666891],[-71.3162575,41.766653232],[-71.316292097,41.766614822],[-71.316331469,41.766583463],[-71.316352125,41.766570598],[-71.316376666,41.766566223],[-71.3164637,41.766574229],[-71.316491103,41.766573358],[-71.316513748,41.76656969],[-71.316556132,41.766553177],[-71.316615623,41.766547166],[-71.316641203,41.766553405],[-71.316710278,41.76651816],[-71.316739974,41.766505446],[-71.316788955,41.766489607],[-71.316789763,41.766474012],[-71.316765931,41.76645433],[-71.316661235,41.766384161],[-71.316624247,41.766372325],[-71.316542986,41.766374916],[-71.316499467,41.766371622],[-71.316454956,41.766362701],[-71.316412316,41.766350901],[-71.316335503,41.766325874],[-71.316300382,41.7663126],[-71.316270873,41.766291559],[-71.31625265,41.766265482],[-71.316230356,41.766210378],[-71.316210239,41.766184321],[-71.316184465,41.766160427],[-71.316155926,41.766142178],[-71.31611712,41.76613601],[-71.316067048,41.766138423],[-71.315952799,41.766151069],[-71.31589996,41.766159881],[-71.315851777,41.766163691],[-71.315811054,41.76615473],[-71.315776815,41.76613224],[-71.315681539,41.766058473],[-71.315649188,41.766038136],[-71.315612226,41.76602774],[-71.315569726,41.766031537],[-71.315524409,41.766037433],[-71.315478053,41.766032739],[-71.315438131,41.766011018],[-71.315407531,41.765976551],[-71.315380723,41.765940604],[-71.315351092,41.765908905],[-71.315312092,41.765885059],[-71.315263749,41.76587046],[-71.315207877,41.765860879],[-71.315147248,41.765848501],[-71.315083713,41.765826925],[-71.314900485,41.765746566],[-71.314778024,41.765694159],[-71.314653739,41.76564957],[-71.314592094,41.765629414],[-71.314462229,41.765591906],[-71.314393013,41.765570366],[-71.314320978,41.765551657],[-71.314245183,41.765534383],[-71.314169438,41.765520676],[-71.314095632,41.765512598],[-71.314026605,41.765510154],[-71.313826221,41.76551127],[-71.31375727,41.765514474],[-71.313688334,41.765522664],[-71.313619448,41.765535084],[-71.313480905,41.765572662],[-71.313342303,41.765609507],[-71.313275434,41.765631833],[-71.31321329,41.765657665],[-71.313154037,41.765687001],[-71.313098595,41.765719156],[-71.313047883,41.765752714],[-71.312954058,41.765821877],[-71.312913811,41.765859614],[-71.312876397,41.765900145],[-71.312844688,41.765942767],[-71.312816763,41.765986835],[-71.312783114,41.766024514],[-71.312739953,41.766055866],[-71.312688247,41.766084528],[-71.312631836,41.766113113],[-71.312516235,41.766180983],[-71.312459867,41.766215971],[-71.312409232,41.766254469],[-71.312318407,41.766342023],[-71.312269608,41.766379082],[-71.312136221,41.766459797],[-71.312096741,41.766485506],[-71.312069238,41.766510594],[-71.312063939,41.76651541],[-71.312012541,41.766574419],[-71.311989139,41.766596495],[-71.311963748,41.766609375],[-71.311932581,41.766612388],[-71.311895715,41.766611161],[-71.311856933,41.766607142],[-71.311818023,41.766594637],[-71.311779099,41.766576438],[-71.311735463,41.766561113],[-71.311640738,41.766540422],[-71.311597219,41.766537126],[-71.311550036,41.766543772],[-71.311500079,41.766558898],[-71.311452111,41.76658322],[-71.311408948,41.766614617],[-71.311367702,41.766648807],[-71.31132073,41.766677385],[-71.311267978,41.766697491],[-71.311213343,41.766714073],[-71.311102996,41.766739459],[-71.310942768,41.766784933],[-71.310909801,41.766797868],[-71.310883485,41.766813582],[-71.310864767,41.766832052],[-71.310852673,41.766851928],[-71.310833955,41.766870444],[-71.310802908,41.766884777],[-71.310763343,41.766897724],[-71.310720987,41.766914235],[-71.310678621,41.766934289],[-71.310639177,41.766957871],[-71.310602566,41.766984247],[-71.310567875,41.767012044],[-71.310536968,41.767041242],[-71.310483673,41.767100271],[-71.310454638,41.767126613],[-71.310420843,41.767150867],[-71.310384211,41.767173722],[-71.31026189,41.767229594],[-71.310185669,41.767263291],[-71.310080387,41.767321181],[-71.310051223,41.76733904],[-71.310028716,41.767357572],[-71.310007086,41.767369016],[-71.309979659,41.767367759],[-71.309944591,41.767357341],[-71.309906586,41.767338434],[-71.30986762,41.7673139],[-71.309824833,41.767290069],[-71.309733679,41.767249531],[-71.309694504,41.767233504],[-71.309690996,41.76723208],[-71.309648326,41.767220301],[-71.309604835,41.76721769],[-71.309505561,41.76721684],[-71.30934008,41.767209979],[-71.309226585,41.767204233],[-71.309170834,41.767205238],[-71.309117912,41.767210479],[-71.309069828,41.767222085],[-71.309023686,41.767237902],[-71.308980427,41.767260082],[-71.308903443,41.767313581],[-71.308824585,41.767370645],[-71.308783245,41.767394932],[-71.308694833,41.76743931],[-71.308651598,41.767463617],[-71.30861404,41.767489282],[-71.308530575,41.767554868],[-71.308511809,41.767568421],[-71.308499642,41.767581916],[-71.308491289,41.767596835],[-71.308471879,41.767642221],[-71.308441305,41.767702543],[-71.308432857,41.767708269],[-71.308418657,41.767706919],[-71.308395894,41.767698557],[-71.308364564,41.767684578],[-71.308327598,41.767675597],[-71.308286942,41.767675118],[-71.308196212,41.767677025],[-71.308148979,41.767679416],[-71.308103685,41.767687458],[-71.308056545,41.767699752],[-71.308010402,41.767715568],[-71.30792189,41.767752148],[-71.307843847,41.767791512],[-71.307808107,41.76781224],[-71.307774365,41.767838597],[-71.307744401,41.767868482],[-71.30765856,41.767982203],[-71.307602476,41.768043375],[-71.30758747,41.768056179],[-71.30758181,41.768059051],[-71.307516091,41.768103993],[-71.30736382,41.768194001],[-71.307322407,41.768211198],[-71.307241283,41.768228671],[-71.307154644,41.768261662],[-71.307058519,41.768289813],[-71.307009533,41.768306356],[-71.306867373,41.768365187],[-71.306772332,41.768408867],[-71.306729142,41.768438135],[-71.306687868,41.768470197],[-71.306652302,41.768503663],[-71.306614787,41.768534999],[-71.30657441,41.76856354],[-71.306531175,41.768587136],[-71.306484125,41.76861004],[-71.306432374,41.768631541],[-71.30637773,41.768650247],[-71.306266525,41.768684843],[-71.306161973,41.768721509],[-71.306001781,41.768772648],[-71.30589337,41.768802263],[-71.305787777,41.768829733],[-71.30573777,41.768839916],[-71.305688735,41.768852228],[-71.305640695,41.768868773],[-71.305543712,41.768907532],[-71.305440992,41.768944154],[-71.305327066,41.768989378],[-71.305148134,41.769054777],[-71.305039859,41.769099943],[-71.30498905,41.769122885],[-71.304939138,41.769142262],[-71.304889201,41.769159512],[-71.304837351,41.76917326],[-71.304679785,41.769203842],[-71.304568491,41.769227116],[-71.304513771,41.76924015],[-71.304366522,41.769283236],[-71.304278134,41.769307989],[-71.304238592,41.769322352],[-71.304204699,41.769337411],[-71.304179328,41.769353101],[-71.3041381,41.769389438],[-71.304067502,41.76942026],[-71.304048713,41.769430976],[-71.304020621,41.769457296],[-71.304007435,41.769463745],[-71.303967726,41.769462557],[-71.303946903,41.769459137],[-71.303929792,41.769450738],[-71.30391832,41.769435945],[-71.303914318,41.769416134],[-71.303921659,41.769392751],[-71.303939343,41.769363646],[-71.303963604,41.769331649],[-71.30399165,41.769300366],[-71.304010888,41.76928263],[-71.30402256,41.769271878],[-71.304062036,41.769249031],[-71.30410818,41.769233193],[-71.304209163,41.769215665],[-71.304256283,41.769200537],[-71.304355067,41.769152566],[-71.304470862,41.769105928],[-71.304530194,41.769082954],[-71.3046489,41.769043387],[-71.304765784,41.769010174],[-71.304950498,41.768951829],[-71.30507959,41.768912211],[-71.305138921,41.768889214],[-71.305195416,41.76886484],[-71.305246205,41.768838375],[-71.305340112,41.768776308],[-71.305392769,41.768748406],[-71.305507573,41.76869543],[-71.30556877,41.768671727],[-71.305631013,41.768655824],[-71.30569233,41.768642733],[-71.30575831,41.768623268],[-71.30582422,41.768596715],[-71.30598602,41.768518685],[-71.306029331,41.768500051],[-71.306066934,41.768480013],[-71.306092233,41.768457942],[-71.306101419,41.768430286],[-71.306099193,41.768398471],[-71.306103671,41.768372248],[-71.306130033,41.768362208],[-71.306169835,41.768372589],[-71.306208813,41.768392893],[-71.306233659,41.768419646],[-71.30624527,41.768449304],[-71.306258781,41.768476838],[-71.306277899,41.768498664],[-71.306300692,41.768507027],[-71.306328972,41.768499093],[-71.306361794,41.76847413],[-71.306394501,41.768436451],[-71.306416774,41.76839457],[-71.306433389,41.768354852],[-71.306458577,41.768318625],[-71.306492225,41.768283052],[-71.306533219,41.768221969],[-71.306559586,41.768210488],[-71.306603055,41.768210263],[-71.306656919,41.76820713],[-71.306704031,41.768194128],[-71.306744455,41.768170549],[-71.306781016,41.768141316],[-71.306840965,41.768085091],[-71.306872916,41.768065088],[-71.306909693,41.768055682],[-71.307006101,41.768055158],[-71.307060813,41.768044227],[-71.307115463,41.768023417],[-71.307224579,41.767971848],[-71.307274421,41.767944695],[-71.307313803,41.767911921],[-71.30734175,41.767872153],[-71.307398298,41.767757881],[-71.30742248,41.767720942],[-71.3074581,41.767689603],[-71.307505101,41.76766249],[-71.307615167,41.767609505],[-71.307669691,41.767579478],[-71.307725184,41.767552265],[-71.307777843,41.767522967],[-71.307868953,41.767465146],[-71.30791789,41.767444349],[-71.307973551,41.76743271],[-71.308093549,41.767429206],[-71.308148337,41.767423237],[-71.3081964,41.767408818],[-71.308235774,41.767378171],[-71.308264652,41.767333442],[-71.308291532,41.767282329],[-71.308324147,41.767234016],[-71.308364404,41.767194177],[-71.308452534,41.767121509],[-71.308500463,41.767090099],[-71.308555004,41.767064302],[-71.308612443,41.767039928],[-71.308672622,41.767008469],[-71.308790072,41.766937039],[-71.308900986,41.766875569],[-71.308959345,41.766849756],[-71.309022501,41.76683383],[-71.309090518,41.766827082],[-71.309240779,41.766826257],[-71.309373108,41.766825539],[-71.309508232,41.766819817],[-71.309579154,41.766822267],[-71.309644443,41.766828962],[-71.309695677,41.766836845],[-71.30970218,41.766837839],[-71.309757036,41.766839668],[-71.309807081,41.766836549],[-71.309906209,41.766824684],[-71.30994209,41.766818112],[-71.309961822,41.766808082],[-71.309964501,41.766790386],[-71.309950512,41.766717571],[-71.309924913,41.76661439],[-71.309898535,41.766526804],[-71.309889491,41.766506985],[-71.309882085,41.766490827],[-71.309837865,41.766414623],[-71.309814839,41.766381494],[-71.309787152,41.766354783],[-71.30975665,41.766329439],[-71.309728968,41.766300602],[-71.309705993,41.766270994],[-71.309697392,41.766256275],[-71.309688669,41.766241373],[-71.30967987,41.766210988],[-71.309682358,41.766175592],[-71.309696129,41.766135891],[-71.309697757,41.766132715],[-71.309769375,41.765992533],[-71.309826959,41.765887477],[-71.309878052,41.76579803],[-71.309907967,41.765763181],[-71.309945448,41.765731822],[-71.309990529,41.765702555],[-71.310043181,41.765674674],[-71.310099642,41.765649611],[-71.310162753,41.765628036],[-71.310232565,41.765612783],[-71.310307174,41.765607372],[-71.310452756,41.765607269],[-71.310521758,41.765607589],[-71.310585028,41.7656044],[-71.310642558,41.765589928],[-71.310697102,41.765562735],[-71.310748735,41.765527785],[-71.310802287,41.765494919],[-71.310914145,41.76543274],[-71.310975297,41.765401967],[-71.311040204,41.765371864],[-71.311160509,41.765303981],[-71.311277077,41.765239637],[-71.311337279,41.765209571],[-71.311395561,41.765178108],[-71.311446275,41.765143888],[-71.311484609,41.76510265],[-71.311511571,41.76505364],[-71.311535611,41.765001127],[-71.311567205,41.764945767],[-71.311648347,41.764837044],[-71.311722034,41.764738966],[-71.311756626,41.764702684],[-71.311795107,41.764673475],[-71.311838364,41.764651271],[-71.311945842,41.764623799],[-71.312005189,41.764603657],[-71.312062598,41.764577863],[-71.312113279,41.764544283],[-71.312198449,41.764457475],[-71.31226042,41.764417487],[-71.312341372,41.764383773],[-71.312431813,41.764353551],[-71.312598422,41.764285399],[-71.312670924,41.76425812],[-71.312743522,41.764239989],[-71.312816244,41.764231806],[-71.312959878,41.764228175],[-71.3130316,41.764217155],[-71.313102231,41.764192709],[-71.313165154,41.764150595],[-71.313219443,41.76409438],[-71.313267016,41.764036805],[-71.31330805,41.763979928],[-71.313343405,41.763922424],[-71.313374948,41.763862788],[-71.313433229,41.763735823],[-71.313494324,41.763607421],[-71.313544065,41.763476212],[-71.313570822,41.763413068],[-71.313631041,41.763291709],[-71.313689486,41.763181713],[-71.313708769,41.763125693],[-71.313724271,41.763067585],[-71.313743509,41.763005893],[-71.313778123,41.7628769],[-71.313798332,41.762817336],[-71.313826184,41.762766247],[-71.313886756,41.762680975],[-71.313908032,41.762632733],[-71.313943732,41.762518629],[-71.313972504,41.762466077],[-71.314010818,41.762419853],[-71.314056719,41.762379975],[-71.314159957,41.762306504],[-71.314272583,41.762229435],[-71.314435045,41.762124501],[-71.314546874,41.762058796],[-71.314594766,41.76202736],[-71.314634162,41.761997442],[-71.314691301,41.761947566],[-71.314741989,41.761910463],[-71.314864744,41.761805052],[-71.314903199,41.761773006],[-71.314944463,41.761741605],[-71.3150243,41.761690232],[-71.315061876,41.761666669],[-71.315099399,41.761640248],[-71.315134114,41.761613158],[-71.315165935,41.761583274],[-71.31519208,41.761551299],[-71.315209708,41.761517916],[-71.315218818,41.761483216],[-71.315220946,41.76141244],[-71.315232868,41.761376967],[-71.315288517,41.761271196],[-71.315309955,41.761240655],[-71.315338933,41.761211475],[-71.315371778,41.761186532],[-71.315408429,41.761165803],[-71.315447943,41.761147868],[-71.315569209,41.7610814],[-71.315609596,41.761057087],[-71.315719455,41.76098502],[-71.315749455,41.76096149],[-71.315774725,41.760936581],[-71.315816679,41.760876915],[-71.315833358,41.760844262],[-71.315858221,41.76077972],[-71.315863588,41.760750685],[-71.315856726,41.760725952],[-71.315839505,41.760702713],[-71.315791806,41.760656258],[-71.315717385,41.760587303],[-71.315671524,41.760539457],[-71.315624599,41.760478847],[-71.315594995,41.760449299],[-71.315531154,41.760397993],[-71.315502619,41.760379057],[-71.315462727,41.760358754],[-71.315451342,41.760355992],[-71.315439065,41.760355332],[-71.315423779,41.760339162],[-71.315409368,41.760315904],[-71.315378557,41.760260145],[-71.31535752,41.760236237],[-71.315274609,41.760167314],[-71.315245973,41.760141311],[-71.315196281,41.760087101],[-71.315178087,41.760062442],[-71.315159936,41.760044163],[-71.315137177,41.76003507],[-71.315107883,41.760035938],[-71.315074898,41.760046016],[-71.315041988,41.760061811],[-71.314963098,41.760113894],[-71.314915138,41.760137531],[-71.314862537,41.76016059],[-71.314853057,41.760164737],[-71.314697857,41.760242081],[-71.314658348,41.760258574],[-71.31461689,41.760272938],[-71.314574493,41.760284487],[-71.314451786,41.760300045],[-71.314384819,41.760315991],[-71.314353731,41.760324654],[-71.314286771,41.760338473],[-71.314196283,41.760365884],[-71.314142648,41.760387385],[-71.314093761,41.760414612],[-71.314074078,41.760429536],[-71.314061016,41.760447307],[-71.314048891,41.760467915],[-71.314029284,41.760488534],[-71.314007726,41.760507778],[-71.313969393,41.760550412],[-71.313930944,41.760580376],[-71.313885797,41.760602578],[-71.313834004,41.760620537],[-71.313806671,41.760629892],[-71.313750124,41.760644368],[-71.313725632,41.760653727],[-71.313674834,41.760675919],[-71.313622066,41.760693191],[-71.313603279,41.760704641],[-71.313593929,41.760716701],[-71.313594077,41.76072873],[-71.313621993,41.760781671],[-71.313650058,41.760846596],[-71.313653137,41.76086995],[-71.313652428,41.760893298],[-71.313647905,41.760915268],[-71.313637736,41.760935833],[-71.31360785,41.760972101],[-71.313580759,41.761003387],[-71.313570512,41.761019036],[-71.313541527,41.761050319],[-71.313504045,41.761083807],[-71.313487225,41.761101572],[-71.313474162,41.761119342],[-71.313439949,41.761194571],[-71.313419479,41.76122795],[-71.31340642,41.76124428],[-71.313391443,41.761258525],[-71.313376393,41.761266368],[-71.313346227,41.761272905],[-71.313328312,41.761278662],[-71.313298073,41.761278841],[-71.313291446,41.76127819],[-71.313275146,41.761253511],[-71.313263644,41.761238719],[-71.313247226,41.761202011],[-71.313228766,41.76115327],[-71.313217196,41.761129971],[-71.313200913,41.761110254],[-71.313178056,41.761092699],[-71.313152505,41.761087901],[-71.313129008,41.76110147],[-71.313104732,41.761130634],[-71.313082442,41.761170367],[-71.31302807,41.761308681],[-71.312995865,41.761396628],[-71.312976465,41.761440596],[-71.312953252,41.761482477],[-71.312925258,41.761519411],[-71.312892503,41.761554987],[-71.312856019,41.761591289],[-71.312815694,41.761625481],[-71.312778261,41.761662491],[-71.312743767,41.761707989],[-71.312713052,41.761756261],[-71.312677531,41.761797505],[-71.312554706,41.761894429],[-71.312513411,41.761925806],[-71.31247409,41.761960709],[-71.312396453,41.762042521],[-71.312316851,41.762117287],[-71.312280389,41.762156402],[-71.312216026,41.762242421],[-71.312190025,41.762287087],[-71.312173431,41.762331792],[-71.312134935,41.76245019],[-71.312096249,41.762550178],[-71.312068812,41.76264728],[-71.31205677,41.762670701],[-71.312018636,41.762728223],[-71.312016993,41.762757286],[-71.312015168,41.762765059],[-71.312001186,41.76278356],[-71.311981498,41.762799924],[-71.311978279,41.762804013],[-71.311950104,41.762808449],[-71.311765882,41.76294687],[-71.311749173,41.762957545],[-71.311724065,41.762968275],[-71.311497523,41.763142805],[-71.311469057,41.763162975],[-71.311420192,41.763192258],[-71.311261254,41.763269592],[-71.311216148,41.763298149],[-71.311131674,41.763355937],[-71.311095063,41.763383023],[-71.311060399,41.763412947],[-71.311026699,41.763447103],[-71.310992059,41.763479154],[-71.310954509,41.763503448],[-71.310871684,41.763540702],[-71.310832266,41.763566365],[-71.310799516,41.763599837],[-71.310770619,41.763641754],[-71.310723364,41.763736102],[-71.310703928,41.763780801],[-71.310640888,41.763903595],[-71.310591665,41.763991605],[-71.310562815,41.764038484],[-71.310531155,41.764085359],[-71.310425641,41.764213319],[-71.31039014,41.764257398],[-71.310323031,41.764351187],[-71.310290354,41.764390284],[-71.310254734,41.764423042],[-71.310215386,41.764455817],[-71.310170327,41.764488628],[-71.310122435,41.764518622],[-71.309970135,41.764601544],[-71.309917437,41.764624509],[-71.309814762,41.764659717],[-71.309765726,41.764673449],[-71.309721476,41.764690687],[-71.30970198,41.764703644],[-71.309683923,41.764715643],[-71.309649253,41.764746985],[-71.309615582,41.764781141],[-71.309587601,41.764823059],[-71.309571108,41.764874075],[-71.309562162,41.764924372],[-71.309548482,41.764974707],[-71.309513642,41.765083871],[-71.309476959,41.765196599],[-71.309467161,41.765256088],[-71.309466441,41.765375691],[-71.309462745,41.76547903],[-71.309458533,41.765529311],[-71.309449612,41.765581735],[-71.309435882,41.765627793],[-71.309400766,41.765706541],[-71.30939804,41.765719297],[-71.309372911,41.765756944],[-71.309292564,41.76585366],[-71.309264548,41.765886339],[-71.309241285,41.765923279],[-71.309210821,41.765998445],[-71.309199816,41.766032478],[-71.309189161,41.766102622],[-71.309177184,41.766134504],[-71.309157662,41.766166488],[-71.30908115,41.766267396],[-71.309023357,41.766349788],[-71.308991554,41.766381843],[-71.308919232,41.766429633],[-71.30887879,41.766449668],[-71.308835463,41.766464072],[-71.308787349,41.766475655],[-71.30873643,41.766485175],[-71.308686378,41.766491106],[-71.30863536,41.766492805],[-71.308534198,41.76649051],[-71.308374466,41.766492119],[-71.308212889,41.766497978],[-71.308129143,41.766504036],[-71.308107084,41.766505645],[-71.308053226,41.766507339],[-71.307891604,41.766507549],[-71.307796403,41.766503457],[-71.307774352,41.766502528],[-71.307596518,41.766490064],[-71.307484824,41.766475103],[-71.307308652,41.766437875],[-71.307193124,41.766417991],[-71.307141017,41.766406263],[-71.307094545,41.766389537],[-71.30705278,41.766372063],[-71.30701759,41.766351765],[-71.306926087,41.766275847],[-71.306848172,41.766232379],[-71.306802641,41.766217781],[-71.306746796,41.766209591],[-71.306616243,41.766199012],[-71.306553724,41.766185895],[-71.30636035,41.766130363],[-71.306296813,41.766110223],[-71.306235149,41.766087204],[-71.306062415,41.766014556],[-71.30588792,41.765958873],[-71.305831015,41.765937966],[-71.305711426,41.765887681],[-71.305648714,41.765857594],[-71.305590743,41.765825388],[-71.305437579,41.765726449],[-71.305384391,41.765698459],[-71.305269509,41.765647404],[-71.305079759,41.765576303],[-71.305014282,41.765551882],[-71.304830282,41.76548852],[-71.304720256,41.765448038],[-71.304664314,41.765432072],[-71.304604637,41.765418958],[-71.304475865,41.765395619],[-71.304416162,41.765381087],[-71.304368768,41.765366507],[-71.30433275,41.76535819],[-71.304303916,41.765357684],[-71.304273241,41.765359941],[-71.304240131,41.765359427],[-71.30420795,41.765354639],[-71.304186986,41.765337771],[-71.304184812,41.765309479],[-71.304202446,41.765276143],[-71.304245405,41.765222086],[-71.304255556,41.765198685],[-71.304248798,41.765181065],[-71.30420013,41.765133895],[-71.304171452,41.765102195],[-71.30414659,41.765071211],[-71.304128351,41.765042297],[-71.304113873,41.765011948],[-71.304102205,41.764981604],[-71.3040865,41.764922918],[-71.304073944,41.764893305],[-71.304054754,41.764865783],[-71.304024303,41.764844715],[-71.303981614,41.76483012],[-71.303928568,41.76481624],[-71.303875443,41.764798151],[-71.303827958,41.764773624],[-71.303682532,41.764693082],[-71.303636841,41.764661491],[-71.303593969,41.764627023],[-71.303556776,41.764593251],[-71.303528103,41.764560156],[-71.303505083,41.764526316],[-71.303477333,41.764491074],[-71.303442028,41.764459431],[-71.303308725,41.764360364],[-71.303268735,41.764332281],[-71.303226007,41.764310619],[-71.303176715,41.764298117],[-71.303066948,41.764283888],[-71.303012925,41.764270028],[-71.302963565,41.764249773],[-71.302920787,41.764224521],[-71.302881799,41.764198566],[-71.302767724,41.764134795],[-71.30273633,41.764113016],[-71.302710562,41.764089096],[-71.302688581,41.764065161],[-71.302680612,41.764054101],[-71.302671335,41.76404121],[-71.302615535,41.763939622],[-71.302582842,41.763883171],[-71.302546337,41.763824633],[-71.302522172,41.763766047],[-71.30251529,41.76373921],[-71.302511249,41.763712309],[-71.302506829,41.763649366],[-71.302503711,41.763620363],[-71.302495976,41.763602718],[-71.302455736,41.763547054],[-71.302444216,41.763528694],[-71.302433592,41.763506813],[-71.302427655,41.763480686],[-71.302423592,41.763450995],[-71.302415739,41.763421984],[-71.302394407,41.763366239],[-71.302375209,41.763241753],[-71.302371348,41.763136366],[-71.30237436,41.763060607],[-71.302379666,41.763023774],[-71.302398823,41.762952205],[-71.302406972,41.762914622],[-71.302410359,41.762875705],[-71.302411458,41.762796466],[-71.302418637,41.762756069],[-71.302446822,41.762639143],[-71.30245307,41.762603707],[-71.302455587,41.762569751],[-71.302453364,41.762537914],[-71.302448334,41.762504699],[-71.302445669,41.762427581],[-71.302447117,41.762383675],[-71.302452355,41.762339067],[-71.302475709,41.762213717],[-71.302481863,41.762169064],[-71.302495648,41.762106016],[-71.302494036,41.761954415],[-71.302474751,41.761858469],[-71.302468744,41.761835384],[-71.302438497,41.761758493],[-71.302409498,41.761643001],[-71.302349492,41.761519382],[-71.302344744,41.761513817],[-71.30227155,41.761447829],[-71.302247949,41.761434707],[-71.30221966,41.76142654],[-71.302189643,41.761424018],[-71.302157815,41.761424307],[-71.302128773,41.761422427],[-71.302103329,41.761412824],[-71.302084321,41.761396188],[-71.30206991,41.761374553],[-71.302043777,41.761320766],[-71.301994627,41.761232818],[-71.301985711,41.761202044],[-71.301984253,41.761169774],[-71.301992633,41.761106579],[-71.302021858,41.760999008],[-71.302041985,41.760909762],[-71.302060637,41.760843657],[-71.302073255,41.760812669],[-71.302114103,41.760729542],[-71.302183537,41.760617421],[-71.302239815,41.760502579],[-71.302285106,41.760404663],[-71.302323323,41.760332784],[-71.302343094,41.760280013],[-71.302352372,41.760212589],[-71.302356818,41.760197114],[-71.302363177,41.760185142],[-71.302374929,41.760157674],[-71.302389361,41.76012248],[-71.302403103,41.760103431],[-71.30250917,41.759997273],[-71.302599703,41.759916496],[-71.302624587,41.759889644],[-71.302693744,41.759807298],[-71.302718391,41.759777976],[-71.3027633,41.759714455],[-71.302809201,41.759656538],[-71.302858047,41.759604184],[-71.302915294,41.759551089],[-71.302940147,41.759524192],[-71.302984267,41.75946913],[-71.30300161,41.759440917],[-71.303048613,41.759331776],[-71.303068381,41.759279668],[-71.30310933,41.759202876],[-71.303125861,41.759180287],[-71.303147114,41.759161868],[-71.303172173,41.759147618],[-71.303227047,41.759121161],[-71.303254994,41.759111078],[-71.303287669,41.759103107],[-71.303320368,41.759097194],[-71.303352144,41.75909343],[-71.303404537,41.759089449],[-71.303421452,41.759091399],[-71.303480946,41.759122442],[-71.303526312,41.759149413],[-71.303551812,41.759160388],[-71.303630769,41.759179322],[-71.303656057,41.759179799],[-71.303684113,41.759173947],[-71.303749303,41.759150229],[-71.303815391,41.759122305],[-71.303917646,41.759072968],[-71.303949196,41.759053057],[-71.303979775,41.759031064],[-71.304078021,41.758964248],[-71.304106704,41.758942938],[-71.304133529,41.758920274],[-71.304179637,41.758873563],[-71.304214478,41.758826284],[-71.304240048,41.758783974],[-71.304263675,41.758738139],[-71.304271748,41.758714918],[-71.304275117,41.758691758],[-71.304272894,41.758669342],[-71.30426597,41.758646256],[-71.304239887,41.758595991],[-71.304221672,41.758569478],[-71.304199725,41.758545108],[-71.304177885,41.758525655],[-71.30413803,41.758494463],[-71.304122806,41.75847916],[-71.304112282,41.758464529],[-71.304108271,41.758447714],[-71.304109825,41.758428781],[-71.304115141,41.758408391],[-71.304125103,41.758386545],[-71.304168831,41.758309002],[-71.304188961,41.758277981],[-71.304214736,41.758248981],[-71.304244291,41.758222092],[-71.304313723,41.758168857],[-71.304348843,41.758139759],[-71.304383972,41.758107894],[-71.304455008,41.758039225],[-71.304522395,41.757975489],[-71.304588072,41.757921608],[-71.304627001,41.757895306],[-71.30471329,41.757842648],[-71.304798531,41.757782968],[-71.304839249,41.757751044],[-71.304880907,41.757721247],[-71.304922677,41.757694882],[-71.304967248,41.757671403],[-71.30510391,41.757605635],[-71.305227369,41.757532298],[-71.305309004,41.757483176],[-71.305432561,41.757417546],[-71.305520002,41.75737749],[-71.305649256,41.757316718],[-71.305693013,41.757299503],[-71.305816878,41.75725354],[-71.305859791,41.757242635],[-71.306011906,41.757206896],[-71.306082948,41.757196428],[-71.306119453,41.757194043],[-71.30615317,41.75719442],[-71.306182269,41.757196984],[-71.306207659,41.757203751],[-71.306252952,41.757224386],[-71.306292675,41.75724858],[-71.306308847,41.757263906],[-71.306349008,41.757315429],[-71.306365206,41.757332128],[-71.306409705,41.757362596],[-71.30645426,41.757395168],[-71.306480698,41.757408979],[-71.30651176,41.757419231],[-71.306571998,41.757436233],[-71.306688948,41.757485712],[-71.306805973,41.757540771],[-71.306863503,41.757564812],[-71.30689924,41.757574317],[-71.307044107,41.757613003],[-71.307211687,41.757665563],[-71.307245563,41.757674378],[-71.307302072,41.757692814],[-71.307321001,41.757705241],[-71.307338118,41.757721232],[-71.307371484,41.757757421],[-71.307383924,41.757774822],[-71.307389799,41.757791618],[-71.307390111,41.757809845],[-71.307385999,41.757847045],[-71.307387251,41.757867378],[-71.307391368,41.757889796],[-71.307402969,41.757912136],[-71.307455416,41.757971294],[-71.307474449,41.757990056],[-71.307497212,41.758007406],[-71.307519923,41.758021943],[-71.307543526,41.758034354],[-71.307614318,41.758066695],[-71.307640678,41.758076299],[-71.307698005,41.758086983],[-71.307721532,41.758093791],[-71.307741358,41.758102721],[-71.307760259,41.758114484],[-71.307793498,41.75814228],[-71.30781432,41.758155396],[-71.307838819,41.758164287],[-71.307866969,41.758167558],[-71.307926899,41.758165623],[-71.308002612,41.758155848],[-71.308090435,41.758141061],[-71.308264191,41.758110066],[-71.308341668,41.758092518],[-71.308463028,41.758066901],[-71.308618061,41.758036081],[-71.308651625,41.758026646],[-71.308683274,41.758013732],[-71.308715792,41.757996589],[-71.308747314,41.757975304],[-71.308867854,41.757896356],[-71.308894672,41.757875063],[-71.308918682,41.757853126],[-71.30893983,41.757828372],[-71.309000416,41.757749277],[-71.309084065,41.757648221],[-71.309126514,41.757608568],[-71.309146796,41.757587334],[-71.309200892,41.757513214],[-71.309225849,41.757491256],[-71.309257447,41.75747482],[-71.309328284,41.757451062],[-71.309394465,41.757431527],[-71.309429054,41.757426325],[-71.309552535,41.757416101],[-71.309599284,41.757409364],[-71.309689863,41.757391722],[-71.309723598,41.757386038],[-71.309733774,41.757384317],[-71.309819834,41.757376569],[-71.309864795,41.757375432],[-71.309961326,41.757379502],[-71.310100141,41.757389496],[-71.310143338,41.757396131],[-71.31022981,41.757414318],[-71.310399947,41.757449977],[-71.3105314,41.757470524],[-71.310654558,41.757497484],[-71.310728871,41.757517182],[-71.310863577,41.757563691],[-71.310921134,41.75758981],[-71.310996728,41.757630527],[-71.311017546,41.75764506],[-71.311036557,41.757661031],[-71.311069946,41.757700718],[-71.311091814,41.757721587],[-71.311199753,41.75779355],[-71.311229055,41.757810133],[-71.311317804,41.757854232],[-71.311349866,41.757867298],[-71.311486514,41.75791868],[-71.311594831,41.757955585],[-71.311732297,41.757999261],[-71.311802883,41.758018975],[-71.31191475,41.758043217],[-71.311949567,41.758054159],[-71.312013561,41.758072513],[-71.31204363,41.758077845],[-71.312074539,41.758077576],[-71.312104453,41.758073097],[-71.312166065,41.758059933],[-71.312195902,41.758050537],[-71.312223765,41.758036999],[-71.312250662,41.758019891],[-71.31233309,41.757958828],[-71.312419346,41.757904747],[-71.312449106,41.75789048],[-71.312512452,41.757868857],[-71.31257575,41.75784305],[-71.312711671,41.757787838],[-71.312747101,41.75777701],[-71.312881329,41.757736499],[-71.312918677,41.757727778],[-71.312958859,41.757721097],[-71.313118638,41.757695858],[-71.313199078,41.757688099],[-71.313283352,41.75768524],[-71.313412481,41.757675662],[-71.313453578,41.757669692],[-71.313494681,41.757661617],[-71.313531973,41.757650746],[-71.313565487,41.757637125],[-71.313634428,41.757613362],[-71.313695068,41.757598092],[-71.313716503,41.757589482],[-71.313733128,41.757575308],[-71.313745895,41.757554152],[-71.313784046,41.757478769],[-71.313808407,41.757419624],[-71.313836363,41.757352731],[-71.313852786,41.757323829],[-71.313902989,41.757242017],[-71.313976813,41.757113681],[-71.314035297,41.757019876],[-71.314109249,41.75689998],[-71.314158769,41.756832185],[-71.314211179,41.756768602],[-71.314309736,41.756663199],[-71.314384154,41.756572049],[-71.314445936,41.756509762],[-71.314511545,41.75645448],[-71.314646762,41.756355767],[-71.31475329,41.756281866],[-71.314868328,41.756211387],[-71.314978796,41.756148012],[-71.315012692,41.75612833],[-71.315089234,41.756083905],[-71.315202434,41.756015526],[-71.315270093,41.755969348],[-71.31536168,41.755897001],[-71.315422851,41.755855752],[-71.315516327,41.755784757],[-71.315573532,41.755730946],[-71.315625042,41.75567157],[-71.315723652,41.755567583],[-71.315774373,41.755516621],[-71.31585934,41.755441518],[-71.315939558,41.755360805],[-71.316054179,41.75526439],[-71.316096882,41.755229721],[-71.316269317,41.755058274],[-71.316330162,41.755012884],[-71.316381318,41.754970156],[-71.316433389,41.75491684],[-71.316467865,41.754864845],[-71.316516403,41.754818796],[-71.316572833,41.754779346],[-71.316625767,41.754733944],[-71.316676949,41.754692518],[-71.316732482,41.754657],[-71.316788934,41.75460966],[-71.316837477,41.754561621],[-71.316886074,41.754505692],[-71.316914408,41.754443763],[-71.316989413,41.754369444],[-71.317052015,41.754328677],[-71.317119004,41.75429185],[-71.317177217,41.754247783],[-71.317230126,41.754210979],[-71.317250508,41.754195964],[-71.317297149,41.754161666],[-71.317363276,41.754116285],[-71.317415322,41.754071544],[-71.317440967,41.754020862],[-71.317445442,41.754004358],[-71.317511785,41.753882549],[-71.317550712,41.753800236],[-71.317581837,41.753690881],[-71.317559864,41.75367438],[-71.317562018,41.753528731],[-71.317479388,41.753502895],[-71.317479455,41.75347918],[-71.317501448,41.753477912],[-71.317508848,41.753355986],[-71.317496643,41.753297971],[-71.317473968,41.753238636],[-71.31746094,41.753179957],[-71.317442484,41.753162135],[-71.31744883,41.75309953],[-71.31748427,41.753008637],[-71.317500989,41.753014609],[-71.317553183,41.752917156],[-71.317622975,41.752817078],[-71.3176813,41.752732807],[-71.317720233,41.752659093],[-71.317708792,41.752655096],[-71.317784033,41.752496413],[-71.31783465,41.752329756],[-71.317901267,41.752120954],[-71.317923408,41.752066949],[-71.317940541,41.751915378],[-71.317975307,41.751759902],[-71.317970087,41.751737505],[-71.317933218,41.751697243],[-71.317894618,41.751664204],[-71.317870854,41.751654973],[-71.317845352,41.751655573],[-71.317842663,41.751666775],[-71.317795054,41.751698327],[-71.317774114,41.751640961],[-71.31777597,41.751600097],[-71.317777907,41.751530899],[-71.317796553,41.751470966],[-71.317792334,41.751407704],[-71.317747613,41.751347007],[-71.317691396,41.751312638],[-71.317631674,41.75126509],[-71.317553472,41.751218862],[-71.317479713,41.751167335],[-71.317410301,41.751123088],[-71.317347048,41.751082121],[-71.317296907,41.751070195],[-71.317269574,41.751091877],[-71.317225535,41.751103013],[-71.317160453,41.75109367],[-71.317138561,41.751048812],[-71.317072535,41.751059936],[-71.317012695,41.751053917],[-71.316999656,41.750999857],[-71.316977713,41.750973431],[-71.316922343,41.750952944],[-71.316844027,41.750946873],[-71.316761298,41.750946741],[-71.316680352,41.750941993],[-71.316598534,41.750932646],[-71.31652996,41.750905528],[-71.316486104,41.750852768],[-71.31645197,41.750795999],[-71.316389617,41.750750458],[-71.316352834,41.750691077],[-71.316330099,41.750631742],[-71.316393578,41.750592966],[-71.316448235,41.750552827],[-71.316511736,41.750506138],[-71.316591052,41.750471321],[-71.316658022,41.750439823],[-71.316727636,41.750401675],[-71.316791111,41.750364225],[-71.316859826,41.750330717],[-71.31693737,41.75029656],[-71.317001726,41.750260438],[-71.317074861,41.750219002],[-71.317141865,41.750186154],[-71.317203558,41.750151995],[-71.317214223,41.750117091],[-71.317108699,41.750014287],[-71.317059646,41.749995594],[-71.317000663,41.750000119],[-71.316921385,41.750032307],[-71.316855287,41.750069066],[-71.31678919,41.750105231],[-71.316708961,41.750149903],[-71.316646421,41.750180814],[-71.316582084,41.750210349],[-71.316516857,41.75024121],[-71.316450753,41.750280004],[-71.316383749,41.750323394],[-71.316318525,41.750364157],[-71.316259455,41.750399006],[-71.31617485,41.750446301],[-71.316086719,41.75048769],[-71.316003936,41.750517218],[-71.315929949,41.750535555],[-71.31585952,41.750548615],[-71.315770657,41.750535986],[-71.315700322,41.750505526],[-71.315629113,41.750481674],[-71.31555439,41.750458479],[-71.315466385,41.750455731],[-71.31538277,41.750455596],[-71.315297445,41.750444917],[-71.315242986,41.750405312],[-71.315170068,41.750359708],[-71.31510239,41.750329275],[-71.315027692,41.750297527],[-71.314947516,41.750333645],[-71.314901761,41.750325659],[-71.314919503,41.750272997],[-71.314932883,41.750207751],[-71.314940111,41.750147137],[-71.31493325,41.750079914],[-71.314908789,41.750015933],[-71.314863152,41.749967103],[-71.314779644,41.749940623],[-71.314678497,41.749910136],[-71.314606414,41.749882371],[-71.314528209,41.749849267],[-71.314446419,41.74982016],[-71.314365531,41.749796315],[-71.314288152,41.749773115],[-71.314209916,41.749750554],[-71.314141325,41.749730044],[-71.314054262,41.749708177],[-71.31397948,41.749695501],[-71.313963726,41.749662522],[-71.313925182,41.74961105],[-71.313869837,41.749572083],[-71.313810089,41.749535076],[-71.313744252,41.749491472],[-71.313676585,41.749447225],[-71.313599274,41.749411516],[-71.313504277,41.749377127],[-71.31341286,41.749351251],[-71.313336356,41.749332008],[-71.31330908,41.749333953],[-71.313288774,41.749354365],[-71.313235981,41.74935165],[-71.313192092,41.749311352],[-71.313212499,41.749256042],[-71.313133421,41.74920846],[-71.313079862,41.749164876],[-71.313033349,41.749113391],[-71.312996574,41.749052706],[-71.312977406,41.748986126],[-71.312991658,41.748926187],[-71.312939891,41.748875333],[-71.312881871,41.748842971],[-71.31281949,41.748808589],[-71.312757106,41.748775556],[-71.312688535,41.748748413],[-71.312616455,41.748720647],[-71.312569061,41.748678376],[-71.312531393,41.748620296],[-71.312482268,41.748564187],[-71.312448991,41.748508813],[-71.312421865,41.74844876],[-71.312400037,41.748394045],[-71.3123923,41.748324167],[-71.312406608,41.748255653],[-71.312440214,41.748198375],[-71.312475552,41.74814373],[-71.312473957,41.748093667],[-71.312441519,41.748043508],[-71.312381835,41.747995958],[-71.312332708,41.747940557],[-71.312310756,41.74791811],[-71.312258078,41.747876494],[-71.312186045,41.747832879],[-71.312123652,41.747803116],[-71.312077112,41.747761556],[-71.312028845,41.747715305],[-71.311970871,41.747678322],[-71.311906728,41.747651849],[-71.311829366,41.747613508],[-71.311747628,41.747589019],[-71.311664918,41.747573035],[-71.311573473,41.747557746],[-71.311480182,41.747557593],[-71.311394861,41.747546911],[-71.31131575,41.747511883],[-71.31126041,41.747472228],[-71.311207733,41.747430635],[-71.311126862,41.747402144],[-71.311061815,41.747371713],[-71.31101975,41.747314334],[-71.310947703,41.747276002],[-71.310887052,41.747246218],[-71.310822985,41.747194063],[-71.310753574,41.747152441],[-71.310670065,41.747118023],[-71.310598894,41.747082985],[-71.310522388,41.747065753],[-71.310446687,41.747065628],[-71.31037365,41.74707342],[-71.310293477,41.747098329],[-71.310215068,41.747136437],[-71.31014101,41.747179788],[-71.310061691,41.747225784],[-71.309981512,41.747263225],[-71.309907518,41.747284851],[-71.309821248,41.747295914],[-71.309771879,41.747323527],[-71.309762037,41.747378213],[-71.30976187,41.747434882],[-71.309756426,41.747489598],[-71.309752801,41.74749675],[-71.309725463,41.747550813],[-71.309676898,41.747616641],[-71.309645048,41.747667998],[-71.309609665,41.747737141],[-71.309620013,41.747800413],[-71.309660331,41.747859779],[-71.309657568,41.747905902],[-71.30963542,41.747960567],[-71.309577141,41.748016477],[-71.309512805,41.748045391],[-71.30944496,41.748072927],[-71.309398322,41.748075503],[-71.309365045,41.748020745],[-71.309368761,41.747962092],[-71.309392683,41.747906789],[-71.309416597,41.747854093],[-71.309448412,41.747804062],[-71.309450386,41.747735527],[-71.309408302,41.747674855],[-71.309372442,41.747605571],[-71.309362089,41.747533722],[-71.309365834,41.747454648],[-71.309377417,41.747399964],[-71.309397893,41.747322244],[-71.309413027,41.747254371],[-71.309430851,41.747185199],[-71.309431025,41.74711602],[-71.309414512,41.747051411],[-71.309418196,41.746993422],[-71.309451776,41.746945361],[-71.309509954,41.746912526],[-71.309586621,41.746885622],[-71.309658867,41.746856058],[-71.309723205,41.746816006],[-71.309712807,41.746759274],[-71.309684831,41.746698648],[-71.309658603,41.746635326],[-71.309639414,41.746577321],[-71.309633409,41.7465219],[-71.309628302,41.746462615],[-71.309608219,41.746407216],[-71.309608395,41.746347871],[-71.309652528,41.74630383],[-71.309679951,41.746251803],[-71.309695115,41.746183976],[-71.309756832,41.746131342],[-71.30981152,41.746091206],[-71.30986098,41.746032011],[-71.309884899,41.745977326],[-71.309886809,41.745919996],[-71.309882482,41.745896274],[-71.309850893,41.745869877],[-71.309782313,41.745847329],[-71.309757672,41.745846785],[-71.309750649,41.745846636],[-71.30966183,41.745822088],[-71.309596789,41.745790329],[-71.30952743,41.745752686],[-71.309451803,41.745717617],[-71.309375409,41.74567333],[-71.309305172,41.745612611],[-71.309237622,41.74555185],[-71.309175274,41.745497707],[-71.309095345,41.745451448],[-71.30903302,41.745399935],[-71.308977738,41.74534187],[-71.308933039,41.745277854],[-71.30890154,41.745211253],[-71.308871827,41.745149938],[-71.308824535,41.745064832],[-71.308781553,41.745019274],[-71.308722732,41.744970419],[-71.308661313,41.744912344],[-71.308603385,41.744861479],[-71.308546313,41.744809997],[-71.308488343,41.74477299],[-71.308399519,41.744760973],[-71.308367803,41.744767529],[-71.308339567,41.744795176],[-71.308299857,41.744840551],[-71.30822582,41.744877361],[-71.308146638,41.744877846],[-71.308129019,41.744877816],[-71.30804718,41.744878343],[-71.307971497,41.744883499],[-71.307898394,41.744903799],[-71.307822712,41.744908292],[-71.307754039,41.744917416],[-71.307718715,41.744966777],[-71.307665731,41.745029327],[-71.307628692,41.745059589],[-71.307614602,41.745053596],[-71.307622708,41.744997627],[-71.307632552,41.744942918],[-71.307648536,41.744886961],[-71.307642569,41.744819694],[-71.30760665,41.74477154],[-71.307561008,41.744727326],[-71.30749511,41.744686989],[-71.307426555,41.744667116],[-71.307322705,41.744676181],[-71.30727327,41.744726204],[-71.307234383,41.744782122],[-71.307211435,41.744807788],[-71.307175277,41.744829499],[-71.307171785,41.744822884],[-71.307189559,41.744760961],[-71.307219661,41.744701713],[-71.307257655,41.744648377],[-71.307286852,41.744595713],[-71.307290533,41.74453905],[-71.307273091,41.744479699],[-71.307281226,41.74441449],[-71.307287562,41.744358472],[-71.307215538,41.744314191],[-71.307145253,41.744270576],[-71.307064429,41.744228293],[-71.306989711,41.744196539],[-71.306907962,41.744177924],[-71.306833151,41.744177158],[-71.30674858,41.744203338],[-71.306687075,41.7441749],[-71.306636101,41.744157708],[-71.306562139,41.744169453],[-71.306472329,41.744191027],[-71.306384254,41.744214639],[-71.306291807,41.744240165],[-71.306202834,41.744267687],[-71.306126198,41.744295252],[-71.306067135,41.744328106],[-71.306013358,41.744369546],[-71.305948103,41.74441028],[-71.305933042,41.744432689],[-71.305920659,41.744458372],[-71.305942568,41.744493971],[-71.306014657,41.744516504],[-71.30609819,41.744531121],[-71.306148233,41.744573399],[-71.30614814,41.744604363],[-71.306086491,41.744623378],[-71.30605657,41.744622024],[-71.30599685,41.744588992],[-71.305935346,41.744549988],[-71.305863168,41.744557115],[-71.305795252,41.74460905],[-71.305749374,41.744653819],[-71.305748338,41.744703877],[-71.305783385,41.744757335],[-71.305849268,41.744792345],[-71.305931087,41.744808331],[-71.306002324,41.744819634],[-71.306074389,41.744850058],[-71.306100667,41.744885046],[-71.306096099,41.744941707],[-71.30606168,41.74498382],[-71.306014883,41.74503977],[-71.306003204,41.745115561],[-71.305976597,41.745189954],[-71.305940466,41.745212305],[-71.305932721,41.74514771],[-71.305937311,41.745083822],[-71.305931317,41.745025793],[-71.3058866,41.744969048],[-71.305847144,41.744919561],[-71.305811199,41.744870081],[-71.305756835,41.744812656],[-71.305685667,41.744778255],[-71.305604746,41.744758337],[-71.305530865,41.744752975],[-71.305483346,41.744744296],[-71.305541547,41.744704213],[-71.305615581,41.744668755],[-71.305640386,41.744604855],[-71.305658184,41.744545563],[-71.305681214,41.744492889],[-71.305677828,41.744451353],[-71.305624118,41.744460501],[-71.305542265,41.744476188],[-71.305455149,41.744475377],[-71.305375075,41.744458136],[-71.305293309,41.7444349],[-71.305208928,41.744407748],[-71.305140376,41.74438721],[-71.305069132,41.744378513],[-71.304985499,41.744377068],[-71.304964368,41.744377032],[-71.30490891,41.744388784],[-71.304907989,41.744410531],[-71.304907793,41.744475113],[-71.304902312,41.744530492],[-71.304894208,41.74459506],[-71.304884335,41.744658939],[-71.304871004,41.744714946],[-71.304831234,41.744769558],[-71.304760778,41.744792513],[-71.304634826,41.744829873],[-71.304571358,41.744864686],[-71.304528987,41.744910786],[-71.304514748,41.744964115],[-71.304511904,41.745035942],[-71.304496739,41.745102488],[-71.304471057,41.745153167],[-71.304424283,41.745201204],[-71.304354657,41.745242638],[-71.304278856,41.745285983],[-71.304216251,41.74532807],[-71.304158836,41.745400467],[-71.304116475,41.745443228],[-71.304106692,41.745466927],[-71.304106441,41.745466926],[-71.304093482,41.745593528],[-71.304153482,41.745650528],[-71.304245482,41.745761527],[-71.304291482,41.745832528],[-71.304306482,41.745863527],[-71.304329482,41.745894528],[-71.304359482,41.745979527],[-71.304367482,41.746024528],[-71.304367482,41.746172527],[-71.304344482,41.746335528],[-71.304199481,41.746937528],[-71.303986481,41.747761528],[-71.303932482,41.748018528],[-71.303932482,41.748266528],[-71.303502876,41.748386151],[-71.302426445,41.748685879],[-71.299579765,41.749478529],[-71.297622479,41.750023529],[-71.296503926,41.753478021],[-71.294394359,41.759993111],[-71.29316007,41.759849003],[-71.293121478,41.760186531],[-71.293060478,41.760665531],[-71.293014479,41.761102531],[-71.292977479,41.761346531],[-71.29251268,41.761594885],[-71.285406662,41.759110596],[-71.285405171,41.759157682],[-71.285470716,41.759258519],[-71.285566735,41.759343633],[-71.285702865,41.759389465],[-71.285880008,41.759427918],[-71.286088378,41.759454033],[-71.286263652,41.759494472],[-71.286394407,41.75956801],[-71.286504163,41.759646608],[-71.286543609,41.759715792],[-71.286483252,41.759790644],[-71.286467,41.759874428],[-71.286470932,41.760006023],[-71.286428511,41.760142906],[-71.28638344,41.760277703],[-71.286413607,41.760409782],[-71.286463077,41.760532703],[-71.286572626,41.760646588],[-71.286658321,41.760769484],[-71.286670546,41.760840881],[-71.286611852,41.760948324],[-71.286601887,41.76106137],[-71.286598412,41.761169785],[-71.286600173,41.761283721],[-71.28661926,41.761395265],[-71.286634611,41.761509455],[-71.286533815,41.761601887],[-71.28637596,41.761667525],[-71.286219364,41.761721662],[-71.286043806,41.761774116],[-71.285958845,41.761825459],[-71.285899228,41.761934227],[-71.285868529,41.762072641],[-71.285832426,41.762210313],[-71.285839926,41.76231557],[-71.285912814,41.762413813],[-71.286057166,41.762487628],[-71.2862422,41.762535014],[-71.286391419,41.762568886],[-71.286550664,41.762600901],[-71.28671463,41.762627596],[-71.28688774,41.762651038],[-71.287059931,41.762675141],[-71.287232085,41.762701302],[-71.287395199,41.762727285],[-71.287544862,41.762747595],[-71.287757769,41.762771796],[-71.287971622,41.762796614],[-71.288181875,41.762820054],[-71.288380404,41.762841939],[-71.288559459,41.762850571],[-71.288626375,41.762824646],[-71.288672087,41.762726485],[-71.288679704,41.762601887],[-71.288686543,41.762472484],[-71.28873783,41.762341219],[-71.288812218,41.762281508],[-71.288940745,41.762254667],[-71.288986009,41.762283291],[-71.288990556,41.762396592],[-71.289054107,41.762390969],[-71.289158605,41.762379955],[-71.289172233,41.762350364],[-71.289108346,41.762281435],[-71.289002494,41.762164929],[-71.289001443,41.762112694],[-71.289087933,41.762069517],[-71.289197525,41.762097915],[-71.289290196,41.762172798],[-71.289366006,41.762266379],[-71.289440256,41.762323299],[-71.289525251,41.76229839],[-71.289670292,41.762237253],[-71.289711718,41.762160032],[-71.289767185,41.762038974],[-71.289848164,41.76197127],[-71.289973629,41.761955925],[-71.290123525,41.761997912],[-71.290262039,41.761971226],[-71.290312843,41.761996566],[-71.2903528,41.76204185],[-71.290410681,41.762107475],[-71.290522211,41.762188177],[-71.290636189,41.762276979],[-71.290719004,41.762377456],[-71.29080695,41.762487501],[-71.290910122,41.762602583],[-71.290898941,41.762697308],[-71.290825841,41.762774678],[-71.290717674,41.762758473],[-71.290644914,41.7627687],[-71.290617422,41.762806841],[-71.290682636,41.762806685],[-71.290778162,41.762821243],[-71.290881641,41.762898386],[-71.290915623,41.762968838],[-71.290866822,41.763022194],[-71.29076399,41.763037283],[-71.290632304,41.762992883],[-71.290549351,41.762924972],[-71.290481047,41.762795592],[-71.29050385,41.762705805],[-71.290556968,41.762602351],[-71.290534475,41.762540244],[-71.290468651,41.762418392],[-71.290494241,41.762298149],[-71.290435725,41.762258456],[-71.290306353,41.762197846],[-71.290155808,41.762176806],[-71.290070612,41.762179372],[-71.289937162,41.762245425],[-71.28980381,41.762309488],[-71.289663186,41.762346279],[-71.289597054,41.762403399],[-71.28955831,41.762510514],[-71.289550694,41.762635136],[-71.28951589,41.762676579],[-71.289463763,41.762663403],[-71.289408131,41.76267597],[-71.289328744,41.762751155],[-71.289323644,41.762825652],[-71.289369688,41.762943123],[-71.289367343,41.763015613],[-71.289301241,41.763072755],[-71.28921268,41.763094867],[-71.28910937,41.763069293],[-71.289019898,41.763006011],[-71.288927021,41.762910065],[-71.288812295,41.762872738],[-71.288760061,41.762892126],[-71.288785789,41.762936013],[-71.288822418,41.763008529],[-71.288812314,41.76301592],[-71.288788126,41.763033691],[-71.288665314,41.763021962],[-71.288536294,41.762993527],[-71.28852143,41.762990252],[-71.288351783,41.762972262],[-71.288155226,41.762945006],[-71.288002031,41.762921237],[-71.287850332,41.762907007],[-71.28764463,41.762883644],[-71.287432374,41.762865597],[-71.287255252,41.762854269],[-71.287093288,41.76284999],[-71.286939785,41.762836373],[-71.286750468,41.762809242],[-71.286550512,41.762775825],[-71.28640357,41.762754901],[-71.286196681,41.762739652],[-71.286131561,41.762746292],[-71.286141848,41.762750661],[-71.286576006,41.762935071],[-71.289220091,41.764056461],[-71.289549379,41.764195734],[-71.289748478,41.764279532],[-71.289906478,41.764346531],[-71.29001418,41.764392321],[-71.290096753,41.764427245],[-71.290200478,41.764470532],[-71.290327478,41.764524531],[-71.293180953,41.765731621],[-71.294430027,41.766259843],[-71.294937291,41.766475357],[-71.29511248,41.766549532],[-71.297496481,41.767561532],[-71.29764348,41.767623532],[-71.29770048,41.767647532],[-71.29795548,41.767754532],[-71.298067481,41.767801532],[-71.298194481,41.767855533],[-71.299092481,41.768235532],[-71.302245482,41.769568533],[-71.303586483,41.770135533],[-71.303692482,41.770180532],[-71.306240484,41.771257532],[-71.306253092,41.771263028],[-71.306283114,41.771275716],[-71.308116484,41.771873532],[-71.308317484,41.771938532],[-71.308489484,41.771988533],[-71.308686484,41.772044533],[-71.308773485,41.772063533],[-71.308879484,41.772088532],[-71.309300485,41.772269533],[-71.309439485,41.772364532],[-71.310365089,41.773001573]]]]}}"}, +{"type": "precinct", "typeId": 105, "areaId": 25665, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":4,\"NAME\":\"0105\",\"SHAPE_Length\":0.29772677718991,\"SHAPE_Area\":-0.00052000250810764},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.293078445,41.713549307],[-71.293090778,41.713567716],[-71.293093242,41.713589218],[-71.293124536,41.713614796],[-71.293156956,41.713603237],[-71.293188107,41.713578343],[-71.293191322,41.713546378],[-71.293134509,41.713531525],[-71.293072065,41.713530841],[-71.293078445,41.713549307]]],[[[-71.314187484,41.723976524],[-71.314208011,41.723981618],[-71.314187354,41.723976222],[-71.314109971,41.723954622],[-71.314030692,41.723934369],[-71.313991644,41.723925383],[-71.314187484,41.723976524]]],[[[-71.314724606,41.724109817],[-71.314653952,41.724091343],[-71.314579247,41.724072562],[-71.314501797,41.724053021],[-71.31441431,41.724031291],[-71.314342286,41.724014572],[-71.314314788,41.724008116],[-71.314724606,41.724109817]]],[[[-71.314988484,41.724164523],[-71.315069484,41.724185523],[-71.315169878,41.724207876],[-71.315157249,41.724204921],[-71.315069725,41.724185273],[-71.314988646,41.724164332],[-71.314899226,41.724146007],[-71.314884533,41.724143086],[-71.314988484,41.724164523]]],[[[-71.315590484,41.724301523],[-71.315605389,41.724304434],[-71.315590386,41.724301119],[-71.315505577,41.724282161],[-71.315416224,41.724261801],[-71.315331445,41.724242867],[-71.315281801,41.724232796],[-71.315590484,41.724301523]]],[[[-71.315928484,41.724367523],[-71.316180484,41.724427523],[-71.316354484,41.724459523],[-71.316509484,41.724476523],[-71.316520692,41.724478609],[-71.316509281,41.724476257],[-71.316437999,41.724466424],[-71.316354774,41.724459179],[-71.316266233,41.72444296],[-71.316180467,41.724427455],[-71.316101188,41.72440654],[-71.316013666,41.724386161],[-71.315928887,41.724367227],[-71.315912507,41.724364403],[-71.315928484,41.724367523]]],[[[-71.316826485,41.724535523],[-71.316866752,41.724543624],[-71.316826863,41.724535286],[-71.316801677,41.724530906],[-71.316826485,41.724535523]]],[[[-71.317169485,41.724604523],[-71.317251861,41.724618152],[-71.317169877,41.72460421],[-71.317150173,41.724600638],[-71.317169485,41.724604523]]],[[[-71.317694507,41.724691384],[-71.317677478,41.724688283],[-71.317594427,41.724673492],[-71.317512258,41.724659389],[-71.31742551,41.724645918],[-71.317342426,41.724631813],[-71.317252962,41.724618334],[-71.317694507,41.724691384]]],[[[-71.318074375,41.72472527],[-71.317994775,41.724719111],[-71.317920635,41.724716112],[-71.317846011,41.724713946],[-71.318074375,41.72472527]]],[[[-71.318252346,41.724749814],[-71.318237931,41.724747647],[-71.318155726,41.724735602],[-71.318091768,41.724727249],[-71.318252346,41.724749814]]],[[[-71.318385485,41.724768523],[-71.318450723,41.724775215],[-71.318385927,41.724768075],[-71.318352068,41.724763827],[-71.318385485,41.724768523]]],[[[-71.318630485,41.724802523],[-71.318960485,41.724837523],[-71.319134485,41.724860523],[-71.319197504,41.724866252],[-71.319134425,41.724860022],[-71.319047609,41.724848611],[-71.318960823,41.7248372],[-71.318873055,41.724827846],[-71.318789865,41.724818567],[-71.318705728,41.72480995],[-71.318630777,41.724802102],[-71.318549491,41.724788709],[-71.318469656,41.724777484],[-71.318630485,41.724802523]]],[[[-71.319542764,41.724910962],[-71.319483562,41.724902239],[-71.319400407,41.724891566],[-71.319310876,41.724879441],[-71.319240449,41.724870904],[-71.319542764,41.724910962]]],[[[-71.319705485,41.724932524],[-71.319901486,41.724958523],[-71.320054485,41.724986523],[-71.320131485,41.725007523],[-71.32015608,41.725011307],[-71.320131838,41.725007355],[-71.32005442,41.724986446],[-71.31997778,41.72497105],[-71.319901101,41.724958397],[-71.319816149,41.724946326],[-71.319737572,41.724935706],[-71.319649838,41.72492498],[-71.319626501,41.724922058],[-71.319705485,41.724932524]]],[[[-71.320996044,41.72508918],[-71.320936579,41.725085589],[-71.320862371,41.725084651],[-71.320805255,41.72508393],[-71.320996044,41.72508918]]],[[[-71.320564486,41.725123523],[-71.320640486,41.725122523],[-71.320683234,41.725108073],[-71.320640643,41.725122336],[-71.320564536,41.725123406],[-71.32054649,41.725070322],[-71.320530945,41.72502895],[-71.320530631,41.725028929],[-71.320564486,41.725123523]]],[[[-71.321409486,41.725136523],[-71.321482486,41.725154523],[-71.321530245,41.725154523],[-71.321482146,41.725154359],[-71.321409237,41.725136271],[-71.321331576,41.725125653],[-71.32125388,41.725116408],[-71.321181934,41.725109852],[-71.321409486,41.725136523]]],[[[-71.322068998,41.725141274],[-71.322096137,41.725196545],[-71.322109382,41.725257566],[-71.322109486,41.725257523],[-71.322096487,41.725196523],[-71.322069486,41.725141523],[-71.322097608,41.725127843],[-71.322068998,41.725141274]]],[[[-71.321715486,41.725140523],[-71.321866486,41.725170523],[-71.321944486,41.725193523],[-71.32208396,41.725264723],[-71.322022011,41.725231991],[-71.321944092,41.725193199],[-71.321866709,41.725170256],[-71.321789187,41.725153464],[-71.321715257,41.725140177],[-71.321637491,41.725134362],[-71.321579611,41.725148813],[-71.321637486,41.725134523],[-71.321715486,41.725140523]]],[[[-71.322087278,41.725266416],[-71.322087486,41.725266523],[-71.322097139,41.725262574],[-71.322087278,41.725266416]]],[[[-71.292474737,41.731773655],[-71.292524161,41.731774705],[-71.292576211,41.731775828],[-71.292628291,41.731776951],[-71.292680372,41.731778028],[-71.292731537,41.731779127],[-71.292781714,41.731783494],[-71.292829985,41.731791837],[-71.292875433,41.731804702],[-71.292922489,41.731820887],[-71.292973116,41.731837192],[-71.293028207,41.731851607],[-71.293083365,41.731864033],[-71.293137736,41.731874468],[-71.293187711,41.731884757],[-71.293232242,41.731898307],[-71.29327054,41.73191299],[-71.293307035,41.731928309],[-71.293343629,41.731941662],[-71.293381174,41.731953072],[-71.293420658,41.731959844],[-71.293462081,41.731962045],[-71.293507111,41.731962355],[-71.293554798,41.731962692],[-71.293602417,41.731965042],[-71.293649904,41.731970707],[-71.293695487,41.731979616],[-71.293741823,41.731991843],[-71.293790815,41.732004143],[-71.293842463,41.73201647],[-71.293895096,41.732026193],[-71.293947831,41.732032599],[-71.293998827,41.73203898],[-71.294046248,41.732045948],[-71.294090124,41.732054191],[-71.294133084,41.732062341],[-71.294175191,41.732069894],[-71.294216381,41.732078018],[-71.294258454,41.732086852],[-71.294299511,41.732098314],[-71.294341349,41.732113757],[-71.294384861,41.732130575],[-71.294430998,41.732148084],[-71.29448074,41.732164364],[-71.294532288,41.732179344],[-71.294584759,41.732192359],[-71.294637261,41.732204756],[-71.294685297,41.732220302],[-71.29472789,41.732238421],[-71.294769497,41.732259147],[-71.294807466,41.732281786],[-71.294841821,41.732307689],[-71.294873521,41.732333497],[-71.294904336,41.732359256],[-71.294936003,41.732385772],[-71.294969408,41.732412909],[-71.295003697,41.732440779],[-71.295037954,41.732468626],[-71.295072243,41.732496473],[-71.295105614,41.732524981],[-71.295139869,41.732553514],[-71.29517498,41.732582026],[-71.295210121,41.732610606],[-71.295245263,41.732639141],[-71.295280339,41.732668979],[-71.295313612,41.732699454],[-71.295343374,41.732729854],[-71.295372216,41.732761579],[-71.295396599,41.732793845],[-71.295415635,41.732827313],[-71.295432864,41.732862745],[-71.295448259,41.732898792],[-71.29546549,41.73293356],[-71.295486297,41.7329671],[-71.295509826,41.732999342],[-71.295535127,41.733030992],[-71.29555859,41.733064582],[-71.295577561,41.733099354],[-71.295584099,41.733136551],[-71.29558532,41.73317495],[-71.295587364,41.73321406],[-71.295596325,41.73325723],[-71.295609648,41.733301848],[-71.295625628,41.733345831],[-71.295642527,41.73338922],[-71.295657755,41.733429886],[-71.295664535,41.733448376],[-71.295672163,41.733469223],[-71.2956848,41.733508512],[-71.295696615,41.733547136],[-71.29570932,41.733584481],[-71.295723075,41.733617848],[-71.295737818,41.733647924],[-71.295755414,41.733673432],[-71.29577928,41.733695771],[-71.295809408,41.733716933],[-71.295843014,41.733738833],[-71.295874715,41.733764639],[-71.295901852,41.733794966],[-71.29592348,41.733829857],[-71.295940579,41.733867919],[-71.295954034,41.733909221],[-71.295965687,41.733951138],[-71.29598006,41.733991802],[-71.295997124,41.734031189],[-71.296017799,41.734068022],[-71.296039425,41.734103554],[-71.296061051,41.734139085],[-71.296081759,41.734175232],[-71.296102401,41.734212728],[-71.296122221,41.734249559],[-71.296140338,41.734284352],[-71.296155834,41.734317746],[-71.296167854,41.734349761],[-71.296177281,41.734381039],[-71.296187495,41.734414332],[-71.29620122,41.734447722],[-71.29621763,41.734481803],[-71.296233976,41.734516547],[-71.296248485,41.734553255],[-71.296257646,41.734591142],[-71.296264217,41.734627699],[-71.296269119,41.734660867],[-71.296273367,41.734688729],[-71.296277029,41.734708655],[-71.29628099,41.734720645],[-71.296281543,41.734729268],[-71.296275242,41.734733099],[-71.296255627,41.734737318],[-71.296222794,41.734741239],[-71.296180319,41.734742993],[-71.296135219,41.734744696],[-71.296095333,41.734748468],[-71.296068497,41.734757819],[-71.296054613,41.734774741],[-71.296048469,41.734796432],[-71.296047534,41.734821541],[-71.296046602,41.734846009],[-71.296046722,41.73486586],[-71.29605416,41.734879251],[-71.296072522,41.734884932],[-71.296101614,41.734886242],[-71.296140448,41.734887043],[-71.29618443,41.734891283],[-71.296230966,41.734898889],[-71.296276419,41.734911113],[-71.296318194,41.734927882],[-71.296354525,41.734947819],[-71.296384554,41.73497161],[-71.296407365,41.734999231],[-71.296423846,41.735029996],[-71.296438488,41.735063388],[-71.296453982,41.73509749],[-71.296468525,41.735132849],[-71.296481228,41.735170834],[-71.296491176,41.735211398],[-71.296501058,41.735253289],[-71.296511791,41.735296507],[-71.296526132,41.735337857],[-71.296543234,41.735375255],[-71.296561415,41.735409408],[-71.296574157,41.73544474],[-71.296575414,41.73548179],[-71.296574015,41.735518836],[-71.296575372,41.735553279],[-71.296583881,41.735585196],[-71.296602986,41.735616721],[-71.296626583,41.73564695],[-71.296650147,41.73567791],[-71.296671976,41.735707473],[-71.296691146,41.735737625],[-71.296706773,41.735768435],[-71.296719779,41.735797776],[-71.296731929,41.735827161],[-71.296745033,41.735854581],[-71.296758171,41.735880652],[-71.296771341,41.735906083],[-71.296785497,41.735928908],[-71.296800508,41.73595169],[-71.29681732,41.735974566],[-71.296834067,41.735998722],[-71.296853435,41.736024278],[-71.29685833,41.736030873],[-71.296902615,41.736074928],[-71.296938291,41.736118854],[-71.296973791,41.736170121],[-71.297010139,41.736223447],[-71.29703909,41.736279458],[-71.297052115,41.736312687],[-71.297060717,41.73633468],[-71.29704053,41.736374916],[-71.296971381,41.73639254],[-71.296967682,41.736393883],[-71.297033034,41.736670897],[-71.297158016,41.737200306],[-71.297138883,41.73722964],[-71.297158479,41.737200526],[-71.297017479,41.736603526],[-71.297226479,41.736584526],[-71.297165479,41.736396526],[-71.296860479,41.735646526],[-71.296570478,41.735008526],[-71.296295479,41.734338526],[-71.295776478,41.733141526],[-71.295769479,41.733137526],[-71.295540478,41.732678525],[-71.295441478,41.732558525],[-71.295326478,41.732461525],[-71.295029477,41.732260526],[-71.294998478,41.732243526],[-71.294891478,41.732182526],[-71.294723478,41.732109525],[-71.294586478,41.732062525],[-71.294418478,41.732011526],[-71.293678478,41.731828525],[-71.292885477,41.731650525],[-71.292579477,41.731602525],[-71.292450477,41.731587525],[-71.292419477,41.731592525],[-71.292053477,41.731635525],[-71.291496477,41.731723525],[-71.291344476,41.731721525],[-71.291214476,41.731697526],[-71.291122477,41.731663525],[-71.291107477,41.731649525],[-71.290955476,41.731607525],[-71.290833477,41.731542526],[-71.290725476,41.731459525],[-71.290588476,41.731322525],[-71.290398476,41.731114526],[-71.290085476,41.730738525],[-71.289978476,41.730578525],[-71.289780476,41.730217526],[-71.289619476,41.730013525],[-71.289593476,41.729991525],[-71.289505476,41.729916525],[-71.289375476,41.729838525],[-71.289078476,41.729704525],[-71.288872476,41.729582525],[-71.288803476,41.729502525],[-71.288757476,41.729391525],[-71.288689476,41.728888525],[-71.288688476,41.728640524],[-71.288681476,41.728514525],[-71.288628476,41.728403525],[-71.288559475,41.728282525],[-71.288491476,41.728144525],[-71.288467476,41.727992525],[-71.288460475,41.727870525],[-71.288460475,41.727861524],[-71.289307476,41.727921524],[-71.289337475,41.727920524],[-71.290665476,41.728020524],[-71.292679477,41.728182525],[-71.293846477,41.728271524],[-71.295158478,41.728380525],[-71.296127478,41.728447524],[-71.297074479,41.728513525],[-71.297088478,41.727635524],[-71.299301479,41.727784524],[-71.299965479,41.727816525],[-71.30131548,41.727685524],[-71.30279648,41.727525525],[-71.303566481,41.727447525],[-71.304344481,41.727363524],[-71.304619481,41.727335524],[-71.306419481,41.727142524],[-71.307439482,41.727038524],[-71.308678482,41.726912524],[-71.309814482,41.726799524],[-71.309830482,41.726794524],[-71.311775483,41.726584524],[-71.313957484,41.726378523],[-71.313774483,41.725206523],[-71.313766484,41.725179524],[-71.313767484,41.725143524],[-71.313698483,41.724735524],[-71.313536554,41.723806932],[-71.31347132,41.723789891],[-71.313392011,41.72376966],[-71.313313648,41.723749431],[-71.313232601,41.723728466],[-71.313159765,41.723707605],[-71.313076013,41.723682519],[-71.312997788,41.723656778],[-71.312914002,41.723633041],[-71.31283662,41.723611486],[-71.312759275,41.723587805],[-71.312680983,41.723564145],[-71.312610085,41.723538531],[-71.312530096,41.723510752],[-71.312455502,41.723485725],[-71.312376293,41.72346275],[-71.31229895,41.723438405],[-71.312223473,41.72341276],[-71.312142536,41.723385597],[-71.312069841,41.723358584],[-71.311991585,41.723333551],[-71.311915121,41.723311289],[-71.311833236,41.723284832],[-71.311756878,41.723257722],[-71.311685063,41.723232791],[-71.311608535,41.723211878],[-71.31153693,41.72317732],[-71.311467931,41.723149695],[-71.311396293,41.723116463],[-71.311324587,41.723085335],[-71.311259145,41.723062518],[-71.31116997,41.723034609],[-71.311094461,41.723009603],[-71.31102173,41.722984648],[-71.310948086,41.722958982],[-71.310870744,41.722934636],[-71.310798899,41.722909705],[-71.31072071,41.722882591],[-71.310650827,41.722854919],[-71.310579085,41.722825848],[-71.310508259,41.722796825],[-71.310426585,41.722761449],[-71.310359419,41.722733781],[-71.310294934,41.722707512],[-71.310225904,41.72268055],[-71.31015321,41.722653536],[-71.310088758,41.722626604],[-71.310023391,41.72259967],[-71.30995982,41.722574135],[-71.309879838,41.722544959],[-71.309826477,41.722524997],[-71.309798089,41.722514385],[-71.309737374,41.722483388],[-71.309672008,41.722455814],[-71.309602201,41.722423293],[-71.309528698,41.722391452],[-71.309444135,41.722362908],[-71.309369717,41.722331065],[-71.309288994,41.722294318],[-71.309213731,41.722259021],[-71.309141179,41.722225809],[-71.309065914,41.72219122],[-71.309008012,41.722158901],[-71.308970892,41.722138509],[-71.308565823,41.721932127],[-71.308495768,41.721901092],[-71.308429569,41.721867089],[-71.308350247,41.721821356],[-71.308262907,41.721772751],[-71.308203693,41.721740132],[-71.308141545,41.721708995],[-71.308075454,41.721679452],[-71.308007439,41.721650615],[-71.307937271,41.721616674],[-71.307872895,41.721575174],[-71.307813441,41.721531417],[-71.307758031,41.72149279],[-71.307697732,41.72145571],[-71.307636348,41.721414191],[-71.307577894,41.721372678],[-71.307518493,41.721331848],[-71.307456101,41.721290351],[-71.307394692,41.721247346],[-71.307329257,41.721202938],[-71.307258794,41.721155596],[-71.30718336,41.721106872],[-71.307107844,41.72105513],[-71.307037218,41.721001109],[-71.30696755,41.720943362],[-71.306895026,41.720891602],[-71.306821548,41.720842104],[-71.306752037,41.72079323],[-71.306686443,41.72074139],[-71.306628593,41.720682016],[-71.306571695,41.720621157],[-71.306511807,41.720559561],[-71.306445997,41.72049807],[-71.306381245,41.720440262],[-71.306315488,41.720381744],[-71.306251713,41.720323938],[-71.306187751,41.720257212],[-71.306125638,41.720184544],[-71.306066487,41.720111812],[-71.306054406,41.720099305],[-71.306003528,41.720046574],[-71.305933753,41.719984367],[-71.305862863,41.719917767],[-71.305801836,41.719849514],[-71.305752661,41.719778879],[-71.305708454,41.719710426],[-71.305661261,41.71964055],[-71.305613145,41.719572868],[-71.305568993,41.719506633],[-71.305529815,41.719441069],[-71.305493628,41.719375488],[-71.305455537,41.719313608],[-71.305416416,41.719249577],[-71.305383242,41.71918686],[-71.305360261,41.719135228],[-71.305332877,41.71906582],[-71.30531468,41.71900665],[-71.305321948,41.718934556],[-71.305357151,41.718870994],[-71.305425994,41.718806276],[-71.305501678,41.718780791],[-71.305559973,41.718772634],[-71.305578864,41.718733011],[-71.305524005,41.718675082],[-71.30548893,41.718615426],[-71.305451604,41.718543165],[-71.305428405,41.718482614],[-71.305412029,41.718416769],[-71.305401736,41.71835823],[-71.30539544,41.718300406],[-71.305393085,41.71824108],[-71.305392578,41.718176474],[-71.305395032,41.718111896],[-71.305403468,41.718047213],[-71.305416003,41.717989856],[-71.305438598,41.717936861],[-71.305461105,41.717882379],[-71.305490352,41.717819653],[-71.305524764,41.717765031],[-71.305513929,41.717724351],[-71.305505081,41.717642053],[-71.305504548,41.717575984],[-71.305511159,41.717519508],[-71.305551277,41.717455131],[-71.305609599,41.717406862],[-71.305666264,41.717372014],[-71.305726974,41.717341494],[-71.305810539,41.71731369],[-71.305851252,41.717274561],[-71.305831831,41.717206538],[-71.305825158,41.717131631],[-71.305812041,41.717078392],[-71.305810769,41.717024213],[-71.305820943,41.716949814],[-71.305846087,41.716881227],[-71.305870419,41.716818538],[-71.305903986,41.716770615],[-71.305957635,41.716733521],[-71.306034217,41.716702868],[-71.3061218,41.716677951],[-71.306204467,41.716653849],[-71.306286971,41.716623115],[-71.306363418,41.716586516],[-71.306433639,41.716539547],[-71.306499816,41.716487471],[-71.306551915,41.716427436],[-71.306591107,41.71636603],[-71.306640515,41.716317882],[-71.306695059,41.716277084],[-71.306742376,41.716223787],[-71.306776488,41.716156518],[-71.306818508,41.716088439],[-71.306862753,41.716031432],[-71.306905749,41.715963354],[-71.306927143,41.715902924],[-71.306949488,41.715841009],[-71.306974873,41.715782782],[-71.307003305,41.715726754],[-71.307027739,41.715670011],[-71.307042178,41.71560822],[-71.307052703,41.71554871],[-71.307064231,41.715490664],[-71.307080734,41.715432559],[-71.307108104,41.715374289],[-71.307145339,41.715313657],[-71.307182548,41.715251561],[-71.307212717,41.715185863],[-71.307236988,41.715122442],[-71.307256345,41.715059104],[-71.307279666,41.714997168],[-71.307306983,41.714935947],[-71.307332261,41.714872551],[-71.307355501,41.714806932],[-71.307372737,41.7147384],[-71.307379024,41.714667082],[-71.307388271,41.714595677],[-71.30740738,41.714523443],[-71.307430404,41.71444815],[-71.307440978,41.714402841],[-71.30744846,41.714370723],[-71.307465371,41.714288102],[-71.30748815,41.714203205],[-71.307513948,41.714118975],[-71.307535858,41.714038513],[-71.307555812,41.713958824],[-71.307571934,41.713885167],[-71.307585012,41.713808532],[-71.307590102,41.713729024],[-71.307593127,41.713645832],[-71.3076011,41.713561847],[-71.307608119,41.713480101],[-71.307607257,41.713400698],[-71.30760553,41.713325022],[-71.307603854,41.713252272],[-71.307602203,41.713181787],[-71.307584632,41.713107044],[-71.307554098,41.713029512],[-71.307527534,41.712951141],[-71.307502789,41.71286685],[-71.307483887,41.71277804],[-71.307465094,41.712693645],[-71.307442522,41.712617476],[-71.307421118,41.712548741],[-71.307401725,41.71248145],[-71.307379503,41.712420856],[-71.30735549,41.712367713],[-71.307331289,41.712305675],[-71.307324069,41.712250091],[-71.307334456,41.712185411],[-71.307358021,41.712133103],[-71.307384027,41.712101588],[-71.307456199,41.712094711],[-71.307483669,41.712083962],[-71.307487203,41.712065376],[-71.307445933,41.712036949],[-71.307368221,41.712018683],[-71.307318315,41.711959186],[-71.30727414,41.711891465],[-71.307228036,41.711826005],[-71.307196033,41.711770745],[-71.30716099,41.711711089],[-71.307132522,41.71163722],[-71.307123671,41.711616715],[-71.30710006,41.711561926],[-71.307065207,41.711510412],[-71.307027145,41.711450042],[-71.306991884,41.711382199],[-71.306956601,41.711311429],[-71.306913349,41.711241445],[-71.306871162,41.711172973],[-71.30683302,41.711108875],[-71.3068039,41.711049138],[-71.306787766,41.710994408],[-71.306785167,41.710924698],[-71.306772651,41.710854332],[-71.30673668,41.710799111],[-71.30670153,41.710734995],[-71.306669284,41.710669352],[-71.306626986,41.710597152],[-71.306578685,41.71052206],[-71.306529409,41.710446258],[-71.306479124,41.710371162],[-71.306426909,41.71029835],[-71.306375785,41.710228536],[-71.306324821,41.710166109],[-71.306281815,41.710106554],[-71.306252721,41.710048235],[-71.306232542,41.70998913],[-71.306221353,41.709934362],[-71.306220713,41.709863101],[-71.306222215,41.709799985],[-71.306218827,41.70973917],[-71.306218047,41.709663449],[-71.306272668,41.709625647],[-71.306323293,41.709587106],[-71.306299955,41.709563695],[-71.306221405,41.709551327],[-71.306155955,41.709506142],[-71.306124854,41.709445669],[-71.306100462,41.709376952],[-71.306063225,41.709306932],[-71.306024213,41.709248779],[-71.305990178,41.709189834],[-71.305951221,41.709133944],[-71.305903382,41.709078131],[-71.305849618,41.709023932],[-71.305790883,41.708968261],[-71.305730274,41.708917069],[-71.305665855,41.708874126],[-71.305596521,41.708831975],[-71.305525207,41.708788381],[-71.305460765,41.708743174],[-71.305403195,41.708696423],[-71.305348644,41.708650364],[-71.305294065,41.70860355],[-71.305243401,41.708553746],[-71.305190588,41.708498016],[-71.305137669,41.708437095],[-71.305082658,41.708371756],[-71.30502575,41.708307923],[-71.304968673,41.70823963],[-71.304914535,41.708168301],[-71.304863409,41.708099927],[-71.30480954,41.708040536],[-71.304748743,41.707981179],[-71.304680771,41.707913051],[-71.30460984,41.707844162],[-71.304540894,41.707775278],[-71.304473929,41.707707128],[-71.304407865,41.707633766],[-71.304351742,41.707563233],[-71.304305618,41.707496286],[-71.304263622,41.707436709],[-71.304218858,41.707384536],[-71.304159442,41.707342996],[-71.304085329,41.707307583],[-71.304002248,41.707270828],[-71.303917159,41.707231828],[-71.303827122,41.707194421],[-71.303739234,41.707162894],[-71.303646399,41.707132159],[-71.303543676,41.707101614],[-71.303435896,41.707068109],[-71.303326109,41.707032428],[-71.303215291,41.706994505],[-71.303107351,41.706953613],[-71.303004277,41.706908155],[-71.302902237,41.706864209],[-71.302857222,41.70684451],[-71.302800168,41.706819507],[-71.302697963,41.706769592],[-71.302602663,41.706717401],[-71.302510431,41.706669583],[-71.302432246,41.706629062],[-71.302372806,41.706586011],[-71.302326081,41.706536899],[-71.302275476,41.70648929],[-71.302212645,41.706427756],[-71.302170649,41.70636891],[-71.302150475,41.706309804],[-71.302123534,41.706258165],[-71.302059608,41.706235277],[-71.301977464,41.706281606],[-71.301916566,41.706346243],[-71.301880011,41.706394205],[-71.301878272,41.706403876],[-71.301825823,41.706449844],[-71.301758651,41.706500452],[-71.301701206,41.706543507],[-71.301638897,41.706590327],[-71.301570556,41.706633546],[-71.301492297,41.706676862],[-71.301400238,41.706721847],[-71.301301164,41.706765447],[-71.301200222,41.706811262],[-71.301104219,41.706858527],[-71.301014327,41.706913143],[-71.300925495,41.706970733],[-71.300847668,41.707031842],[-71.300780868,41.707099533],[-71.300719097,41.707169383],[-71.300660287,41.707239146],[-71.300606528,41.707313355],[-71.300554834,41.707391203],[-71.300513028,41.707468954],[-71.300481114,41.707545076],[-71.300455093,41.707620384],[-71.30041932,41.707701027],[-71.300371861,41.707790729],[-71.300317636,41.707887188],[-71.300289097,41.707938045],[-71.300259552,41.707988123],[-71.300227989,41.70803973],[-71.300196569,41.708094332],[-71.300167132,41.708148893],[-71.300139623,41.70820197],[-71.30011502,41.708252742],[-71.300065659,41.708345436],[-71.300014177,41.708432958],[-71.29996077,41.708521232],[-71.299904396,41.70861181],[-71.299845197,41.708707597],[-71.299788933,41.708801857],[-71.299724488,41.708886566],[-71.299646084,41.708965534],[-71.299556673,41.709040892],[-71.299465007,41.709105177],[-71.299374193,41.709160545],[-71.29929003,41.709206914],[-71.299217614,41.709244201],[-71.299156009,41.709279152],[-71.299097336,41.70931333],[-71.299032958,41.70935644],[-71.29897942,41.709397968],[-71.298923192,41.709450652],[-71.29886995,41.709504804],[-71.298824618,41.709557369],[-71.2987892,41.709611233],[-71.298746197,41.709680085],[-71.29871132,41.709756247],[-71.298687228,41.709828585],[-71.29867218,41.709907457],[-71.298664804,41.709972873],[-71.298662635,41.710051585],[-71.29866169,41.710139218],[-71.298656778,41.710226844],[-71.298646514,41.710298246],[-71.298627042,41.710357123],[-71.298604009,41.71043239],[-71.298594406,41.710487465],[-71.298604103,41.710607591],[-71.298640172,41.710668005],[-71.298693957,41.710723695],[-71.29875152,41.710771935],[-71.298822674,41.710807392],[-71.298895981,41.710807932],[-71.298915281,41.710784685],[-71.298910078,41.710730568],[-71.298886912,41.710672211],[-71.298865384,41.710597528],[-71.29885356,41.710513807],[-71.29886768,41.710438638],[-71.298904598,41.71036392],[-71.298954337,41.710288334],[-71.299009163,41.710215591],[-71.299074092,41.710152426],[-71.29914698,41.710091356],[-71.299221932,41.710033948],[-71.299294193,41.709987741],[-71.299368702,41.709954871],[-71.299425255,41.709915566],[-71.299449774,41.709862553],[-71.299459086,41.709792635],[-71.299473042,41.70971152],[-71.299504988,41.709635399],[-71.299547037,41.709568809],[-71.299599219,41.709511727],[-71.299653303,41.70945163],[-71.299690405,41.709385808],[-71.299715637,41.709319417],[-71.299747983,41.709261867],[-71.299792338,41.709209299],[-71.299846555,41.709155194],[-71.299907788,41.709102404],[-71.299972951,41.709051817],[-71.300042382,41.709012351],[-71.300115047,41.708983205],[-71.30018464,41.708950394],[-71.300252848,41.708901962],[-71.300319022,41.708849912],[-71.300368346,41.708798794],[-71.300402595,41.708737473],[-71.300443746,41.708674608],[-71.30048677,41.708607974],[-71.300530803,41.708540609],[-71.300586707,41.708473814],[-71.30065837,41.708403136],[-71.300732047,41.708332369],[-71.300805668,41.708260162],[-71.300887219,41.70818934],[-71.300975756,41.708119148],[-71.301064346,41.708051952],[-71.301151008,41.707986239],[-71.301229812,41.707925109],[-71.30130574,41.707866192],[-71.301375774,41.707808866],[-71.301442024,41.707761252],[-71.301511342,41.707718058],[-71.301571645,41.707669039],[-71.301619936,41.7076157],[-71.301663175,41.707557985],[-71.301701364,41.70749516],[-71.301746372,41.707427751],[-71.301796187,41.70735509],[-71.301840136,41.707284752],[-71.301880306,41.707222617],[-71.30192387,41.707178258],[-71.302022014,41.707139138],[-71.302106812,41.707123184],[-71.302195009,41.707123542],[-71.302355223,41.707155582],[-71.302436185,41.707186458],[-71.302519181,41.707220996],[-71.30259142,41.707260157],[-71.302651839,41.707302455],[-71.302719023,41.707337949],[-71.3027329,41.707380806],[-71.302796746,41.707400034],[-71.302855545,41.707393549],[-71.302872824,41.707391589],[-71.302965692,41.707381503],[-71.303062798,41.70738247],[-71.303159277,41.707399055],[-71.303241108,41.707425449],[-71.303301339,41.707459558],[-71.303342595,41.707531026],[-71.303349972,41.707594021],[-71.303354579,41.707664511],[-71.303362199,41.707737866],[-71.30337743,41.707797054],[-71.303410679,41.707862677],[-71.303454439,41.70791407],[-71.303442119,41.707981033],[-71.303384699,41.708025598],[-71.303313261,41.708063621],[-71.303252613,41.708096335],[-71.303216034,41.708142102],[-71.303308646,41.708206202],[-71.3033939,41.708251126],[-71.303445567,41.708301687],[-71.303452793,41.708314231],[-71.303421599,41.7083354],[-71.303322104,41.708316638],[-71.303237229,41.708287311],[-71.303151052,41.70824465],[-71.303072834,41.70820406],[-71.303006736,41.708172251],[-71.302914547,41.708169737],[-71.30285314,41.708170546],[-71.302839681,41.708170912],[-71.302853164,41.708162725],[-71.302914554,41.708127429],[-71.303001832,41.708089204],[-71.303054826,41.708024667],[-71.303103034,41.7079684],[-71.303151112,41.707904655],[-71.303196091,41.707836513],[-71.303219307,41.707769409],[-71.303212904,41.707707171],[-71.303187811,41.707649567],[-71.303149946,41.707596606],[-71.303097957,41.707531957],[-71.303044468,41.707488871],[-71.302974912,41.70748013],[-71.30294157,41.707495396],[-71.302945422,41.707533205],[-71.302968435,41.707542552],[-71.303042198,41.707562414],[-71.30308196,41.707613847],[-71.303034837,41.707674575],[-71.302955358,41.70770753],[-71.302862678,41.707725758],[-71.302854499,41.707725767],[-71.302744785,41.707725807],[-71.302615593,41.707708182],[-71.302495211,41.707683803],[-71.302394578,41.707658359],[-71.302314729,41.707632677],[-71.302248028,41.707618704],[-71.302161299,41.707636896],[-71.302062857,41.707663391],[-71.301993157,41.707691789],[-71.301974135,41.707724711],[-71.301967008,41.707759665],[-71.301910733,41.707769311],[-71.301837483,41.707771014],[-71.301737215,41.707805694],[-71.301673794,41.707846588],[-71.301627323,41.70789323],[-71.301588892,41.707945694],[-71.301549054,41.707978854],[-71.301501561,41.707980967],[-71.301431997,41.708014511],[-71.301368625,41.708059133],[-71.30128963,41.708112853],[-71.301203761,41.708168894],[-71.301122074,41.708234547],[-71.301042556,41.708309055],[-71.300964097,41.708386559],[-71.300889554,41.708461007],[-71.30081403,41.708536938],[-71.300753423,41.708614931],[-71.300712757,41.708698585],[-71.300674073,41.70878295],[-71.300624416,41.708863043],[-71.300562669,41.708934379],[-71.300489021,41.7090051],[-71.300401461,41.709074493],[-71.300305092,41.709149977],[-71.300202804,41.709224787],[-71.300151197,41.709264055],[-71.30005293,41.709341044],[-71.299967541,41.709418605],[-71.299892287,41.709504942],[-71.299860701,41.709553598],[-71.299834173,41.709605191],[-71.299811579,41.709657407],[-71.299793011,41.709710386],[-71.299753643,41.709808105],[-71.299717052,41.709896179],[-71.299702033,41.709975806],[-71.299691716,41.71004499],[-71.299671275,41.710101647],[-71.299639823,41.710156227],[-71.299557042,41.710218949],[-71.299480413,41.710246625],[-71.29939384,41.710272247],[-71.299307454,41.710306743],[-71.299236361,41.710359629],[-71.299183467,41.710429379],[-71.299140817,41.71051232],[-71.299106996,41.710592165],[-71.299080841,41.710660818],[-71.299062296,41.710715969],[-71.299072472,41.710770781],[-71.299126123,41.710820547],[-71.299215019,41.71085281],[-71.299296559,41.710865851],[-71.299382722,41.710863989],[-71.299469458,41.710845045],[-71.299553045,41.710817999],[-71.299625653,41.710788121],[-71.299690217,41.710753885],[-71.299752777,41.710716717],[-71.299819353,41.71068317],[-71.29989419,41.710662901],[-71.299981224,41.710655848],[-71.300076323,41.710656082],[-71.300156827,41.710668412],[-71.300249721,41.710700613],[-71.300318704,41.710727924],[-71.300376744,41.71071085],[-71.300425409,41.71071544],[-71.300485425,41.710740609],[-71.300471989,41.710802401],[-71.300459414,41.710901288],[-71.300370047,41.710892785],[-71.30017221,41.710875152],[-71.30016519,41.710816024],[-71.30015074,41.71079098],[-71.300126752,41.710780898],[-71.300031462,41.710773231],[-71.299938227,41.710811535],[-71.299859669,41.710840785],[-71.299771218,41.710871596],[-71.299672987,41.710907032],[-71.299577496,41.710934263],[-71.299492665,41.710949414],[-71.299406637,41.710956468],[-71.29933172,41.710973031],[-71.299242398,41.711009077],[-71.299161037,41.711046509],[-71.299113611,41.711094611],[-71.299078233,41.711106236],[-71.299090718,41.711046683],[-71.299052252,41.71101078],[-71.2989499,41.710997268],[-71.298876536,41.710995265],[-71.298802762,41.711016999],[-71.29873137,41.711057992],[-71.298657181,41.711104995],[-71.298590842,41.711150366],[-71.298532357,41.711191977],[-71.298475336,41.711253578],[-71.298454228,41.711328071],[-71.298464619,41.71139178],[-71.298483026,41.711459116],[-71.298501511,41.711530843],[-71.298517798,41.711593007],[-71.29852302,41.711601821],[-71.298550799,41.711649003],[-71.298572605,41.711693247],[-71.298540283,41.711752307],[-71.298494763,41.71179593],[-71.298456326,41.711848393],[-71.298436013,41.711912505],[-71.298425645,41.711977961],[-71.298423919,41.712032158],[-71.298450095,41.712094156],[-71.298430787,41.712159025],[-71.298402432,41.712218046],[-71.298433421,41.712273261],[-71.298446688,41.712334756],[-71.298474721,41.712388525],[-71.29849981,41.712446862],[-71.298502321,41.71251289],[-71.298503718,41.712573747],[-71.298505197,41.712637554],[-71.298510505,41.712696886],[-71.298528833,41.712760471],[-71.29855477,41.712811355],[-71.298582512,41.712811747],[-71.298611954,41.712756478],[-71.298643138,41.712690692],[-71.29866821,41.712617669],[-71.298679691,41.712557384],[-71.298711493,41.712518356],[-71.298739691,41.712538782],[-71.298770951,41.71260518],[-71.298784436,41.712675549],[-71.298726515,41.712741608],[-71.29867444,41.712802394],[-71.298668251,41.712878172],[-71.298655243,41.712958557],[-71.29864958,41.713012792],[-71.298648859,41.7130677],[-71.298648244,41.713127867],[-71.298649672,41.713188724],[-71.298674898,41.71325223],[-71.29876668,41.713279994],[-71.298845341,41.713296781],[-71.298924027,41.713315831],[-71.298996762,41.713334162],[-71.299082376,41.71335311],[-71.299140796,41.713352343],[-71.299173874,41.71332521],[-71.299242778,41.713348817],[-71.299302985,41.713382173],[-71.299351009,41.713446131],[-71.299390338,41.713519106],[-71.29940986,41.713591612],[-71.299392265,41.713645278],[-71.299358963,41.713705092],[-71.299334657,41.713767756],[-71.299324153,41.713828021],[-71.299325417,41.713882955],[-71.299326198,41.713916322],[-71.299349389,41.713976897],[-71.299378934,41.714055207],[-71.299408158,41.714119406],[-71.29945349,41.714195296],[-71.299496731,41.714266723],[-71.299520054,41.714333953],[-71.299521347,41.714389298],[-71.299521455,41.714394078],[-71.299520024,41.714461631],[-71.299529654,41.714534989],[-71.299551292,41.714614177],[-71.299581844,41.714693174],[-71.299617231,41.714767698],[-71.299661348,41.714832471],[-71.299708611,41.714906078],[-71.299748181,41.714990168],[-71.299777944,41.715077374],[-71.299791866,41.715164781],[-71.29979502,41.715259762],[-71.299803338,41.715362847],[-71.299822364,41.715457627],[-71.299843921,41.715533773],[-71.299873039,41.715592803],[-71.299910197,41.715657633],[-71.299945155,41.715713586],[-71.299965746,41.715746736],[-71.29993231,41.715800604],[-71.299908353,41.715878134],[-71.299912713,41.715938927],[-71.299932047,41.716003269],[-71.299938633,41.716074426],[-71.299928478,41.716150288],[-71.299908356,41.716221811],[-71.299884042,41.716286694],[-71.299851558,41.716338344],[-71.299793529,41.716399212],[-71.299743565,41.716467412],[-71.299718601,41.716544941],[-71.299740899,41.71660851],[-71.299758634,41.716647601],[-71.299745058,41.716704178],[-71.299719506,41.716754995],[-71.299706093,41.716818296],[-71.299643636,41.7168599],[-71.299625153,41.716874985],[-71.299595983,41.716940705],[-71.299561018,41.717014626],[-71.299537609,41.717072855],[-71.299529116,41.717134541],[-71.299509884,41.717203824],[-71.299447502,41.71729],[-71.299474766,41.717356482],[-71.299451165,41.717407965],[-71.2994299,41.717473585],[-71.299406945,41.717552581],[-71.299397366,41.717609851],[-71.299411833,41.71767869],[-71.299477261,41.717722369],[-71.29955563,41.717727309],[-71.299602394,41.717736378],[-71.29962375,41.717759078],[-71.299541894,41.717776476],[-71.299472481,41.717816696],[-71.299432222,41.717875148],[-71.299391307,41.717948418],[-71.299330663,41.718024877],[-71.299259148,41.718103011],[-71.299186602,41.718178923],[-71.299109976,41.718251193],[-71.299022108,41.718307275],[-71.2989409,41.718351338],[-71.298865291,41.718381279],[-71.298788706,41.718411218],[-71.29872921,41.718452072],[-71.298683892,41.718507587],[-71.298647655,41.718568219],[-71.29860655,41.718633323],[-71.298554519,41.718697815],[-71.298486597,41.718758802],[-71.298399784,41.718818566],[-71.298302019,41.718876254],[-71.298204202,41.718930945],[-71.298121225,41.718983993],[-71.298057868,41.719029345],[-71.298006576,41.719081968],[-71.29799213,41.719143049],[-71.297967562,41.719151513],[-71.297952222,41.719088596],[-71.297907171,41.719068392],[-71.297819149,41.719075487],[-71.297737429,41.71909732],[-71.297665197,41.719101218],[-71.297583719,41.71913348],[-71.297497104,41.719159055],[-71.297394217,41.71916562],[-71.297321197,41.719177681],[-71.297249071,41.719186792],[-71.297153706,41.719218435],[-71.297116001,41.719259784],[-71.297157728,41.719308226],[-71.297185034,41.719331601],[-71.297240567,41.719376911],[-71.297282214,41.719421648],[-71.297311301,41.719480656],[-71.297354935,41.719524641],[-71.297416421,41.71956987],[-71.297481845,41.719615061],[-71.297546344,41.719663199],[-71.297609866,41.719711382],[-71.297670402,41.719758096],[-71.29772004,41.71980495],[-71.297777692,41.719856164],[-71.297851602,41.719881931],[-71.297936379,41.719907579],[-71.298018989,41.719923595],[-71.298072281,41.719914747],[-71.298110533,41.719854851],[-71.298150662,41.719789745],[-71.298178124,41.71973445],[-71.298220196,41.719711655],[-71.298272633,41.719751813],[-71.298296805,41.719811613],[-71.298346497,41.719860686],[-71.29842081,41.71990429],[-71.298493875,41.719936778],[-71.298500995,41.719944086],[-71.298470985,41.719974906],[-71.298411515,41.720016492],[-71.298311885,41.720035573],[-71.298212668,41.720030185],[-71.298151369,41.719993121],[-71.298082996,41.719992521],[-71.298004156,41.720010609],[-71.297927192,41.720024218],[-71.297857948,41.720028853],[-71.297806305,41.72006661],[-71.29780408,41.720084947],[-71.297798816,41.720128321],[-71.297803254,41.720192842],[-71.297800138,41.720271575],[-71.297794028,41.720351103],[-71.297783792,41.720422482],[-71.297775321,41.7204857],[-71.297793597,41.720547044],[-71.297850899,41.720583415],[-71.297927665,41.72060395],[-71.29791894,41.720612236],[-71.297845673,41.720614691],[-71.297773081,41.720645299],[-71.297747516,41.720699088],[-71.297729892,41.72075129],[-71.297714335,41.720806423],[-71.297701899,41.720868902],[-71.297732154,41.720935322],[-71.297783857,41.720985908],[-71.297838413,41.721031948],[-71.297891967,41.721076522],[-71.29795202,41.721170299],[-71.297958939,41.721232012],[-71.297970913,41.721268555],[-71.297986899,41.72132985],[-71.298027818,41.721383275],[-71.29806958,41.721440773],[-71.298095604,41.721503594],[-71.298129337,41.721551404],[-71.298176771,41.72160077],[-71.298227729,41.721655677],[-71.298201838,41.721706172],[-71.298162223,41.721753007],[-71.298126261,41.721802661],[-71.298105512,41.721868328],[-71.298132696,41.721921523],[-71.298169179,41.721968675],[-71.298210873,41.722028299],[-71.298204811,41.722092733],[-71.298188819,41.722150221],[-71.298181952,41.722208479],[-71.298180468,41.722272967],[-71.298180991,41.722329981],[-71.298189615,41.722393252],[-71.298202046,41.722449737],[-71.298217323,41.722503461],[-71.29822884,41.722559213],[-71.298242184,41.722616409],[-71.298251935,41.722670763],[-71.298261231,41.72274364],[-71.298252565,41.722801209],[-71.298249428,41.722857485],[-71.298269182,41.722914738],[-71.298298059,41.722973448],[-71.298340739,41.723030306],[-71.298398913,41.723091469],[-71.298457124,41.723150573],[-71.298512451,41.723214452],[-71.298567069,41.723270783],[-71.298593375,41.723321941],[-71.298576898,41.72335896],[-71.298572133,41.723369723],[-71.298509447,41.723384684],[-71.298435874,41.723356952],[-71.298372377,41.723328666],[-71.298317266,41.723293625],[-71.298269019,41.723240141],[-71.298221764,41.72318188],[-71.298162916,41.723150903],[-71.298098183,41.723176151],[-71.29803246,41.723205514],[-71.297997704,41.723201611],[-71.297970519,41.723148392],[-71.29796538,41.723093406],[-71.297975913,41.723034491],[-71.297966195,41.722979451],[-71.297958522,41.722914809],[-71.297966277,41.722855844],[-71.297978854,41.722787373],[-71.297983042,41.722727006],[-71.297952412,41.722662736],[-71.297907966,41.722604525],[-71.297855214,41.722547511],[-71.297815035,41.722500993],[-71.297768795,41.722440674],[-71.297737877,41.722390834],[-71.297709921,41.722330731],[-71.297677208,41.722278829],[-71.297633401,41.722230887],[-71.297627312,41.722177271],[-71.297649641,41.72212398],[-71.297633696,41.722059255],[-71.297601014,41.722007307],[-71.297563898,41.721947782],[-71.297531151,41.721897253],[-71.297507772,41.721837912],[-71.297485302,41.721780631],[-71.297454423,41.721728046],[-71.29740414,41.721682105],[-71.297337152,41.721648255],[-71.297244075,41.721630573],[-71.297170507,41.721641283],[-71.297094117,41.721656082],[-71.297068583,41.721660817],[-71.296989804,41.72164922],[-71.296958109,41.721633019],[-71.296949376,41.721614365],[-71.296943219,41.721601936],[-71.296904386,41.721555009],[-71.296891924,41.721557434],[-71.296853264,41.721552609],[-71.296815038,41.721535915],[-71.296774489,41.721510596],[-71.296631778,41.721454612],[-71.296612045,41.721439643],[-71.296592212,41.72142735],[-71.296568021,41.7214129],[-71.296538516,41.721399058],[-71.296502781,41.721386393],[-71.296459007,41.721376848],[-71.296409791,41.721370518],[-71.296356013,41.721368067],[-71.296301316,41.721366895],[-71.296248359,41.721365749],[-71.296196352,41.721363347],[-71.296148906,41.72135702],[-71.296107758,41.721347548],[-71.296098001,41.721343848],[-71.296071202,41.721333556],[-71.296038323,41.721315659],[-71.296007313,41.721295159],[-71.295979059,41.721272057],[-71.295950807,41.721248292],[-71.295921635,41.721225851],[-71.295894203,41.721203436],[-71.295869522,41.721179769],[-71.295844846,41.721154706],[-71.295819317,41.72112907],[-71.295795558,41.721103438],[-71.295773635,41.721076505],[-71.295751649,41.721050189],[-71.295729726,41.721023256],[-71.295706,41.720996983],[-71.295680503,41.720970615],[-71.295654089,41.720944909],[-71.295629411,41.720920556],[-71.29560739,41.720895612],[-71.295586322,41.720868703],[-71.295566171,41.720841156],[-71.295549594,41.72081302],[-71.295538362,41.720783659],[-71.295529821,41.720753045],[-71.295525807,41.720719215],[-71.295525403,41.720682829],[-71.295526868,41.720644503],[-71.295530105,41.720605517],[-71.29553426,41.720565916],[-71.2955392,41.720528991],[-71.295545812,41.720494036],[-71.295557638,41.72046124],[-71.295577364,41.720429876],[-71.295600597,41.720399936],[-71.295619338,41.720371222],[-71.295625683,41.720343585],[-71.295620517,41.720317025],[-71.295608235,41.720291618],[-71.29558969,41.720268053],[-71.295563994,41.720246991],[-71.295532918,41.72022848],[-71.295500006,41.720211224],[-71.295468898,41.720193376],[-71.295440544,41.720172904],[-71.295414816,41.720152527],[-71.295393548,41.720130901],[-71.295378511,41.720108097],[-71.295372427,41.720082175],[-71.295372607,41.72005439],[-71.295373806,41.720022672],[-71.295375073,41.71998892],[-71.295377423,41.719950595],[-71.295382532,41.719908365],[-71.295391248,41.719864907],[-71.295400844,41.719822776],[-71.295412017,41.719783964],[-71.295423942,41.719748493],[-71.295436683,41.719715698],[-71.295444966,41.719683445],[-71.29545056,41.719651827],[-71.295456086,41.719622816],[-71.295466891,41.719593951],[-71.29548291,41.719567132],[-71.295498959,41.719540358],[-71.295505239,41.719514023],[-71.295504468,41.719487563],[-71.295501105,41.719460388],[-71.295493384,41.719431079],[-71.295479564,41.719399678],[-71.295463156,41.719366283],[-71.295444159,41.719331442],[-71.295426146,41.719294019],[-71.295408264,41.719253967],[-71.295392092,41.719213894],[-71.295379256,41.719180254],[-71.295315518,41.71907588],[-71.29529513,41.719007831],[-71.295297622,41.718943962],[-71.29531471,41.718868776],[-71.295351878,41.718804443],[-71.295392007,41.718740092],[-71.295434148,41.7186765],[-71.295487187,41.718612698],[-71.295549353,41.718558472],[-71.295613448,41.718501939],[-71.295652652,41.718440582],[-71.295697967,41.718386577],[-71.295712834,41.718347543],[-71.29572413,41.718317925],[-71.295768386,41.718260923],[-71.295841718,41.718217693],[-71.295930315,41.718192763],[-71.296001806,41.71820078],[-71.296078503,41.718261382],[-71.296107671,41.71832334],[-71.296157253,41.718368],[-71.296194754,41.718362304],[-71.296238651,41.718332057],[-71.296294997,41.718283834],[-71.29634857,41.718243771],[-71.296330729,41.71820022],[-71.296290009,41.718152488],[-71.296240267,41.718100442],[-71.29616656,41.718040508],[-71.296109072,41.717995995],[-71.296049652,41.717954427],[-71.295993332,41.717917325],[-71.295907119,41.717873881],[-71.295836281,41.717852533],[-71.295759519,41.717831997],[-71.295714507,41.717819088],[-71.29567776,41.717808548],[-71.295597927,41.717784348],[-71.295513012,41.717755016],[-71.295456268,41.717697834],[-71.295400925,41.71766071],[-71.29534384,41.717633989],[-71.295333558,41.717574694],[-71.295275992,41.717526475],[-71.295231274,41.717478804],[-71.295216947,41.717415157],[-71.295173021,41.717358546],[-71.295109503,41.717310362],[-71.295064683,41.717256746],[-71.295055273,41.717192284],[-71.295011164,41.717126068],[-71.294969196,41.717067974],[-71.294972667,41.717003352],[-71.294942602,41.716945829],[-71.294884875,41.716890886],[-71.294805729,41.716852576],[-71.294710165,41.71683228],[-71.294631235,41.71680289],[-71.294573799,41.716762034],[-71.294526892,41.716702537],[-71.294470798,41.716633463],[-71.294433996,41.716582742],[-71.294391102,41.716528328],[-71.29434737,41.716478418],[-71.294297927,41.716438972],[-71.294237638,41.716402663],[-71.294176345,41.716365573],[-71.294113204,41.716333741],[-71.294050088,41.716303395],[-71.29398586,41.716267833],[-71.293920442,41.71622264],[-71.293859044,41.716180405],[-71.293809494,41.716136476],[-71.293766654,41.716084327],[-71.293730805,41.716032121],[-71.293685716,41.715967343],[-71.293627204,41.715919853],[-71.29357364,41.715919025],[-71.293510997,41.715951021],[-71.293409669,41.715939702],[-71.293307581,41.715936591],[-71.293208907,41.715954205],[-71.29314867,41.716006902],[-71.2931024,41.716063191],[-71.293025869,41.716095344],[-71.292908338,41.716110958],[-71.29282789,41.716146168],[-71.292758903,41.716204955],[-71.292702477,41.716249448],[-71.292652103,41.716300607],[-71.292617739,41.716355979],[-71.292563723,41.716419755],[-71.292532234,41.716473601],[-71.29255388,41.716509704],[-71.292551119,41.716561681],[-71.292486915,41.716613706],[-71.292432338,41.716652279],[-71.292389164,41.716713696],[-71.292334248,41.716781953],[-71.292252822,41.716817161],[-71.292172644,41.716862755],[-71.292130231,41.716915231],[-71.292098854,41.71697205],[-71.292086382,41.717034574],[-71.292081034,41.71710292],[-71.292065658,41.717166972],[-71.292046046,41.717219192],[-71.292025242,41.717262491],[-71.292001717,41.717316991],[-71.291995199,41.71737868],[-71.292010772,41.717452713],[-71.292021343,41.717525319],[-71.292024088,41.717601752],[-71.292025774,41.717675234],[-71.29203013,41.717734564],[-71.292037582,41.717799754],[-71.292058942,41.717867806],[-71.292088186,41.71793347],[-71.292119415,41.717998383],[-71.292149497,41.718059612],[-71.292179455,41.718111922],[-71.292213803,41.718184983],[-71.292228921,41.718238958],[-71.292238139,41.718296033],[-71.29222901,41.718372582],[-71.292239743,41.718451866],[-71.292280917,41.718518878],[-71.29228274,41.718597551],[-71.292260485,41.718664632],[-71.292225244,41.718726703],[-71.292207994,41.718794479],[-71.292209867,41.718876125],[-71.292209357,41.718939952],[-71.292209624,41.718951821],[-71.292207859,41.719006772],[-71.292192302,41.719060441],[-71.292190475,41.719068602],[-71.292163531,41.71910384],[-71.292138412,41.719131626],[-71.292111322,41.719174343],[-71.292112826,41.719181137],[-71.292123653,41.71922175],[-71.292134614,41.719259],[-71.292147481,41.719291704],[-71.292159526,41.719323719],[-71.292170656,41.71935571],[-71.292176438,41.719389567],[-71.292172414,41.719425876],[-71.292162092,41.719465375],[-71.292145604,41.719504703],[-71.292123738,41.719545942],[-71.292100171,41.719584434],[-71.292082866,41.719621793],[-71.292077004,41.719660043],[-71.292080748,41.719701122],[-71.292087902,41.719744952],[-71.292094136,41.719790084],[-71.292100336,41.71983652],[-71.292110963,41.719882392],[-71.292126085,41.719925733],[-71.292141306,41.719967062],[-71.29214774,41.720006889],[-71.292143583,41.720046513],[-71.292137998,41.720074747],[-71.292135919,41.720085377],[-71.292133534,41.720124364],[-71.292135573,41.720164092],[-71.292145483,41.72020532],[-71.292159721,41.720248637],[-71.292177564,41.720290679],[-71.292199015,41.720330831],[-71.292220504,41.720369015],[-71.292239433,41.7204058],[-71.292251446,41.720438479],[-71.292256776,41.720461106],[-71.29225726,41.720471695],[-71.292276039,41.720488629],[-71.292289538,41.72050544],[-71.292304509,41.720529593],[-71.292317475,41.720560284],[-71.29232939,41.720594952],[-71.292340415,41.720630923],[-71.292349608,41.720667484],[-71.292355255,41.72070532],[-71.292355526,41.720744358],[-71.292353992,41.720784696],[-71.292352458,41.720825034],[-71.292350922,41.720866013],[-71.29234929,41.720908318],[-71.292345951,41.72094991],[-71.292338252,41.720990123],[-71.292324491,41.721026209],[-71.292304795,41.721056886],[-71.292280841,41.721082822],[-71.29225351,41.721105413],[-71.292226181,41.721127318],[-71.292199638,41.72115126],[-71.292175682,41.721177859],[-71.292153464,41.72120517],[-71.292132985,41.721232507],[-71.292114274,41.721260557],[-71.292099859,41.721291335],[-71.292087181,41.721322826],[-71.292077126,41.72135503],[-71.292068022,41.721385933],[-71.292063315,41.721416272],[-71.292063132,41.72144472],[-71.292066558,41.721470591],[-71.292075331,41.72149526],[-71.292092138,41.721518114],[-71.292116983,41.721537849],[-71.292148189,41.721553708],[-71.292182939,41.721569002],[-71.29221769,41.721583655],[-71.292249716,41.721600865],[-71.292278952,41.72162198],[-71.292307925,41.721649064],[-71.292337646,41.721680791],[-71.292366382,41.721715147],[-71.292393284,41.721750139],[-71.292415723,41.721786976],[-71.29243111,41.721824372],[-71.292434102,41.721862134],[-71.292429092,41.721901071],[-71.292420508,41.721941237],[-71.292407497,41.721981325],[-71.292393571,41.72202139],[-71.292378785,41.722062756],[-71.29236666,41.722102869],[-71.29235811,41.722141731],[-71.29235225,41.722179272],[-71.292345535,41.722216879],[-71.292336133,41.722255054],[-71.292321548,41.722291115],[-71.292301854,41.722321106],[-71.292278132,41.722341119],[-71.292252255,41.722347865],[-71.292239589,41.722347293],[-71.292195955,41.722342023],[-71.292167821,41.72233877],[-71.292140472,41.722338218],[-71.292116596,41.722339661],[-71.292095348,41.72234056],[-71.292075935,41.722340136],[-71.29205744,41.722339074],[-71.2920399,41.722335406],[-71.29202426,41.722329111],[-71.292009541,41.722321515],[-71.291995707,41.722313943],[-71.291984398,41.722309097],[-71.29196856,41.722307422],[-71.290659533,41.722431671],[-71.290657914,41.722450832],[-71.290490276,41.722842869],[-71.290491916,41.722845547],[-71.29050139,41.722851693],[-71.290524008,41.7228615],[-71.290559843,41.72287149],[-71.290603551,41.722882341],[-71.290649058,41.722893904],[-71.290692729,41.722906745],[-71.290727546,41.72292005],[-71.290749868,41.722936396],[-71.290764019,41.722959222],[-71.290772657,41.72298787],[-71.290781981,41.723021116],[-71.29078681,41.72305696],[-71.290784556,41.723093272],[-71.290775219,41.72312948],[-71.290757982,41.723164164],[-71.290735431,41.72319941],[-71.290709435,41.7232333],[-71.290683474,41.723265795],[-71.290655743,41.723298287],[-71.29062801,41.72333142],[-71.290600178,41.723366565],[-71.290571426,41.723403034],[-71.290540872,41.723440049],[-71.290510284,41.723477773],[-71.290478844,41.72351481],[-71.290446682,41.723548529],[-71.290410197,41.723578855],[-71.290371186,41.723606455],[-71.290328868,41.723628035],[-71.290283212,41.723643617],[-71.290235883,41.723657161],[-71.290188552,41.723671368],[-71.290139483,41.723684908],[-71.290087796,41.723696339],[-71.290034434,41.723706464],[-71.289980119,41.723718532],[-71.289930884,41.723736005],[-71.289886761,41.723758885],[-71.289845029,41.723787784],[-71.289804933,41.723820642],[-71.289764738,41.723855512],[-71.289727164,41.723891782],[-71.289689593,41.723927366],[-71.289653857,41.72396165],[-71.289618221,41.723993327],[-71.289581702,41.724024294],[-71.289545314,41.724052631],[-71.289507223,41.724078952],[-71.289466544,41.724103233],[-71.289425075,41.724126186],[-71.289383644,41.724147104],[-71.289344968,41.724165465],[-71.28930721,41.724183165],[-71.289272211,41.724197646],[-71.289239179,41.724207533],[-71.289209761,41.724214157],[-71.289183983,41.724218272],[-71.289162667,41.724221092],[-71.289145776,41.724224079],[-71.289134063,41.724230416],[-71.289127499,41.724240214],[-71.289128801,41.724252795],[-71.289141615,41.724264344],[-71.289166861,41.724273447],[-71.289204667,41.724278227],[-71.289250512,41.724279866],[-71.289299931,41.72428094],[-71.28934935,41.724281991],[-71.289391617,41.724285568],[-71.289423062,41.724294156],[-71.289445349,41.724311851],[-71.289462023,41.724337998],[-71.289474855,41.724372005],[-71.289488405,41.724410679],[-71.289503592,41.724452694],[-71.289518711,41.724496676],[-71.289532063,41.724539946],[-71.289541084,41.724581836],[-71.289544009,41.724620924],[-71.289543426,41.724659298],[-71.289541956,41.724698287],[-71.289540518,41.724736613],[-71.289539082,41.724774321],[-71.289537714,41.724809994],[-71.289535526,41.72484434],[-71.289527992,41.72487991],[-71.289512522,41.724915329],[-71.289490888,41.724949936],[-71.289465778,41.724983119],[-71.289439981,41.72501168],[-71.289416258,41.725031693],[-71.289392935,41.725041141],[-71.289370831,41.72504197],[-71.289348077,41.725036165],[-71.289324503,41.725029055],[-71.289298206,41.725023861],[-71.289269216,41.725020607],[-71.289237442,41.725019245],[-71.289203074,41.725017855],[-71.289168708,41.725015803],[-71.289134374,41.725013087],[-71.289101813,41.725009757],[-71.289071022,41.725006453],[-71.28904282,41.725005189],[-71.289022521,41.72500474],[-71.289006482,41.725008393],[-71.28899467,41.725017381],[-71.288983476,41.725033026],[-71.288974705,41.725054667],[-71.288968357,41.72508235],[-71.288961875,41.725113303],[-71.288955327,41.725146222],[-71.288950548,41.725179213],[-71.28894853,41.725208276],[-71.28894749,41.725236723],[-71.28894649,41.725262472],[-71.288945723,41.725282298],[-71.288952336,41.725295048],[-71.288969812,41.72530002],[-71.288997851,41.7253046],[-71.289030312,41.725310605],[-71.289066218,41.725317943],[-71.289106748,41.725320808],[-71.289148232,41.725321684],[-71.289191454,41.725322633],[-71.289233823,41.725323511],[-71.289274421,41.725324386],[-71.289313283,41.725323908],[-71.289348602,41.725323973],[-71.289380278,41.725327324],[-71.28940631,41.725339104],[-71.289428497,41.725359429],[-71.289448579,41.725388967],[-71.289464034,41.725423733],[-71.289470533,41.725462211],[-71.289468079,41.725503188],[-71.28945939,41.725546669],[-71.289445326,41.725590689],[-71.289425161,41.725633257],[-71.289400701,41.725673073],[-71.289373618,41.725712198],[-71.289345619,41.725751322],[-71.28931506,41.725789068],[-71.289282833,41.725823404],[-71.289248967,41.725855107],[-71.28921602,41.725885485],[-71.289183961,41.725915248],[-71.289153771,41.72594307],[-71.289122795,41.725968192],[-71.289091819,41.725993314],[-71.289059075,41.726017769],[-71.289027212,41.726043553],[-71.288993515,41.72606995],[-71.288960702,41.726097036],[-71.288928675,41.726126158],[-71.288896646,41.726155897],[-71.288866257,41.726188338],[-71.288839374,41.726222158],[-71.288814196,41.726257353],[-71.288791677,41.726291272],[-71.288771846,41.726325242],[-71.288754671,41.726358622],[-71.288737528,41.726392025],[-71.288720321,41.726426023],[-71.288703112,41.726460729],[-71.28868669,41.72649745],[-71.288671151,41.726534812],[-71.28865735,41.726572886],[-71.288645289,41.726610987],[-71.288633291,41.726648447],[-71.288621298,41.726684581],[-71.288608515,41.726719387],[-71.288593998,41.726752155],[-71.288578725,41.726782908],[-71.288563555,41.726810369],[-71.288546716,41.726834511],[-71.288527319,41.726856589],[-71.288505463,41.726874661],[-71.288483745,41.726888068],[-71.288462225,41.726896879],[-71.288442677,41.726899793],[-71.288424183,41.726898067],[-71.288407523,41.726895704],[-71.288390799,41.726894026],[-71.288374928,41.726893014],[-71.288359973,41.726892048],[-71.288332692,41.726888819],[-71.288306327,41.726885615],[-71.288291341,41.72688465],[-71.288269236,41.726885501],[-71.28826454,41.726893313],[-71.288261348,41.726907806],[-71.288256152,41.726928196],[-71.288248168,41.726951851],[-71.288237558,41.726975432],[-71.288224592,41.726991714],[-71.288210225,41.726997336],[-71.288191694,41.726997622],[-71.288170509,41.726997171],[-71.28814929,41.726998047],[-71.288132366,41.727001652],[-71.28812062,41.727008674],[-71.288114807,41.72702179],[-71.288114005,41.72704292],[-71.288112935,41.72707139],[-71.288110781,41.727104386],[-71.288106754,41.727140671],[-71.28810276,41.72717634],[-71.288097948,41.727209948],[-71.288093304,41.727238961],[-71.288089711,41.727264064],[-71.288088979,41.727282587],[-71.288090315,41.727293841],[-71.28810064,41.727301338],[-71.288121591,41.727307757],[-71.288152283,41.727313691],[-71.288189142,41.727319065],[-71.28822426,41.727325167],[-71.288257444,41.727334444],[-71.288288652,41.727350327],[-71.288316971,41.727372105],[-71.288341482,41.727401079],[-71.28836051,41.727435235],[-71.288371472,41.727471846],[-71.288374464,41.727508968],[-71.288373025,41.727547316],[-71.288371591,41.727584339],[-71.2883694,41.727619347],[-71.288362851,41.72765229],[-71.28835109,41.727682455],[-71.288334149,41.727709912],[-71.288315568,41.727734645],[-71.288297941,41.727756773],[-71.288281168,41.727779543],[-71.288268785,41.727803761],[-71.288258996,41.727828693],[-71.288253632,41.727853702],[-71.288250007,41.727879423],[-71.288246315,41.727906516],[-71.288242622,41.727934203],[-71.288237093,41.727963168],[-71.288228938,41.727992151],[-71.288219933,41.728019738],[-71.288210994,41.728045998],[-71.288202089,41.728070954],[-71.288192363,41.728095223],[-71.28818169,41.728119491],[-71.288171966,41.728143073],[-71.288164077,41.728165402],[-71.288156191,41.72818709],[-71.288147421,41.728208068],[-71.288138649,41.728229731],[-71.288129847,41.728251327],[-71.288125469,41.728273753],[-71.288125485,41.728296919],[-71.288128093,41.728320754],[-71.288134405,41.728341416],[-71.288144431,41.728356185],[-71.288159971,41.728365133],[-71.288180204,41.728367503],[-71.288204997,41.728366108],[-71.288233434,41.728361403],[-71.288266333,41.728355495],[-71.28830284,41.72834765],[-71.288339281,41.728341153],[-71.288375651,41.72833795],[-71.288410907,41.728339364],[-71.288444123,41.728348024],[-71.288472644,41.728364519],[-71.288494697,41.728388824],[-71.288511206,41.728418927],[-71.288524889,41.728454262],[-71.288535818,41.728491559],[-71.288546777,41.728528833],[-71.288559475,41.728566819],[-71.288573945,41.728604191],[-71.288587495,41.728642841],[-71.288597503,41.72868144],[-71.28860574,41.72872063],[-71.288610402,41.72876043],[-71.288614212,41.728799543],[-71.288617137,41.728838632],[-71.288618322,41.728877717],[-71.288617705,41.728916731],[-71.288616234,41.72895572],[-71.288614698,41.728996081],[-71.288613126,41.7290377],[-71.28861159,41.729078015],[-71.288610088,41.729117027],[-71.288608685,41.729154049],[-71.288607348,41.729189105],[-71.288606078,41.729222789],[-71.288604875,41.729254529],[-71.288603772,41.729283616],[-71.288601884,41.729310049],[-71.288599179,41.729334468],[-71.288597358,41.729358889],[-71.288596391,41.72938402],[-71.288595353,41.729411782],[-71.288594185,41.729442195],[-71.288598361,41.72947207],[-71.288608671,41.729502711],[-71.288622592,41.729530796],[-71.288639199,41.729558956],[-71.288654986,41.729585742],[-71.288668974,41.729611815],[-71.28867853,41.729639825],[-71.288687954,41.729670464],[-71.288698197,41.729703094],[-71.288711127,41.729735134],[-71.288724981,41.729765187],[-71.288739785,41.72979396],[-71.288753869,41.72981873],[-71.288768156,41.729837555],[-71.288783626,41.729849155],[-71.288802021,41.729853511],[-71.288825799,41.729854675],[-71.288853184,41.729854611],[-71.288886735,41.729854673],[-71.288925598,41.729854836],[-71.288967972,41.729855074],[-71.289011261,41.729855313],[-71.289056258,41.729856265],[-71.289102139,41.729857241],[-71.289149792,41.729858289],[-71.28919833,41.729859316],[-71.289244044,41.729864888],[-71.289285063,41.729877679],[-71.289324075,41.729897692],[-71.289361973,41.729922323],[-71.289398915,41.729949582],[-71.289434903,41.729979469],[-71.289469942,41.730009972],[-71.289503209,41.730041135],[-71.289534672,41.730072889],[-71.289562527,41.73010658],[-71.289588542,41.73014283],[-71.289612718,41.730181088],[-71.289635946,41.730219916],[-71.289659172,41.730259477],[-71.289682365,41.730299677],[-71.289705493,41.730341181],[-71.289725993,41.73038332],[-71.28974292,41.730426002],[-71.289757156,41.730469982],[-71.289772312,41.730512638],[-71.289788486,41.730552025],[-71.28980391,41.730587409],[-71.289818682,41.730616823],[-71.289832834,41.730639649],[-71.289844464,41.730659063],[-71.289851667,41.730678424],[-71.289853586,41.7306983],[-71.289852852,41.730717463],[-71.289848675,41.730734585],[-71.289840137,41.73075028],[-71.289824584,41.730763836],[-71.289806403,41.730778004],[-71.28979252,41.730794239],[-71.289786505,41.730813323],[-71.289789212,41.730835191],[-71.289799823,41.730857919],[-71.289819289,41.730880161],[-71.289847744,41.730898622],[-71.289880794,41.730911924],[-71.289917486,41.730922602],[-71.289954966,41.73093534],[-71.289992308,41.730952652],[-71.29002414,41.730974504],[-71.290051476,41.73099891],[-71.290075201,41.731025893],[-71.290093517,41.731054695],[-71.290108221,41.731086121],[-71.290122071,41.7311175],[-71.290136743,41.731149567],[-71.290154106,41.731180403],[-71.290175077,41.731209279],[-71.290199688,41.731236264],[-71.290230469,41.731262048],[-71.290264823,41.731287929],[-71.290300981,41.731312511],[-71.29033537,41.731337089],[-71.290365297,41.731362849],[-71.290390762,41.731389881],[-71.290410912,41.731418069],[-71.290428342,41.731446893],[-71.290445801,41.731476357],[-71.290464082,41.731506555],[-71.290485838,41.731538108],[-71.290506708,41.731570277],[-71.290525774,41.731603106],[-71.290542352,41.731631242],[-71.290555752,41.731650751],[-71.290565059,41.731661517],[-71.29057024,41.731664293],[-71.290571876,41.731668275],[-71.290582136,41.731677099],[-71.290595804,41.731689313],[-71.290612948,41.731702905],[-71.290633601,41.731717213],[-71.290655959,41.731732919],[-71.290679233,41.731748627],[-71.290702411,41.731765661],[-71.290723849,41.731782646],[-71.290748008,41.731798401],[-71.290773024,41.731813471],[-71.290799021,41.731827286],[-71.290827646,41.731840465],[-71.290858039,41.73185431],[-71.290887414,41.731871493],[-71.290917542,41.731891969],[-71.290949408,41.731913158],[-71.290981404,41.731931718],[-71.291014421,41.731946322],[-71.291048458,41.731956973],[-71.291084465,41.731962367],[-71.291124182,41.731963216],[-71.29116833,41.731962816],[-71.291212573,41.731961113],[-71.291253378,41.731956064],[-71.291289919,41.731947555],[-71.291321279,41.731936337],[-71.291350971,41.731921732],[-71.291378992,41.731904471],[-71.291405276,41.731886498],[-71.291430704,41.731868524],[-71.291456853,41.731854507],[-71.291482901,41.731843165],[-71.291512292,41.731836518],[-71.291545125,41.731832598],[-71.291582253,41.731831385],[-71.291624693,41.731830295],[-71.291670676,41.731828641],[-71.291716723,41.7318263],[-71.291760971,41.731823293],[-71.291804396,41.731819575],[-71.291849594,41.731815244],[-71.291895711,41.731810273],[-71.291944483,41.731805376],[-71.291995028,41.731799819],[-71.292045603,41.731794285],[-71.292097001,41.731789415],[-71.29214574,41.731785158],[-71.292193527,41.731782866],[-71.292240363,41.731781899],[-71.292286344,41.731780884],[-71.29233236,41.731778543],[-71.292379263,41.731775609],[-71.292426165,41.731773293],[-71.292474737,41.731773655]]],[[[-71.297154202,41.737286767],[-71.297173679,41.737299081],[-71.297154478,41.737286526],[-71.297129794,41.737259453],[-71.297154202,41.737286767]]],[[[-71.297342087,41.737407298],[-71.297362511,41.737423152],[-71.297342479,41.737407526],[-71.297341514,41.737406909],[-71.297342087,41.737407298]]],[[[-71.297434551,41.737490888],[-71.297460021,41.737528607],[-71.297460479,41.737528527],[-71.297434479,41.737490527],[-71.29740488,41.737459518],[-71.297434551,41.737490888]]],[[[-71.297310408,41.737548321],[-71.297300598,41.737548684],[-71.297310478,41.737548527],[-71.297345859,41.737545268],[-71.297310408,41.737548321]]],[[[-71.296793414,41.737550505],[-71.296897323,41.737549774],[-71.296853484,41.737549481],[-71.296793414,41.737550505]]],[[[-71.296720379,41.737553705],[-71.296710899,41.737554271],[-71.296778854,41.737551073],[-71.296720379,41.737553705]]],[[[-71.29622729,41.737559075],[-71.296210599,41.737560059],[-71.296263478,41.737558526],[-71.296364711,41.737560015],[-71.296343893,41.737559579],[-71.296303257,41.737558707],[-71.296263565,41.737558499],[-71.29622729,41.737559075]]],[[[-71.29616618,41.737563746],[-71.296149653,41.737566679],[-71.296182542,41.737562165],[-71.29616618,41.737563746]]],[[[-71.305154089,41.741417077],[-71.305101562,41.74146993],[-71.30505172,41.741523519],[-71.305001874,41.741578503],[-71.304976862,41.74163035],[-71.304956328,41.741685681],[-71.304958338,41.741717999],[-71.305001985,41.741733669],[-71.305078113,41.7417319],[-71.305161923,41.741714433],[-71.30521712,41.741667074],[-71.305255835,41.741617468],[-71.305290143,41.741560925],[-71.305312511,41.741504911],[-71.305313072,41.741440399],[-71.305284819,41.741392669],[-71.305224506,41.741384997],[-71.305154089,41.741417077]]],[[[-71.305913678,41.740915359],[-71.305985371,41.740946514],[-71.306018736,41.7410101],[-71.306011942,41.741106802],[-71.306030413,41.741259483],[-71.306061385,41.741347741],[-71.306107924,41.741437603],[-71.306145411,41.741521848],[-71.306224748,41.741579863],[-71.306349496,41.741615794],[-71.306454828,41.741619905],[-71.306555335,41.741634231],[-71.306609696,41.74170222],[-71.306670468,41.741770998],[-71.306756151,41.741831173],[-71.306767439,41.741844571],[-71.306818616,41.741905397],[-71.306816649,41.741991198],[-71.306766871,41.742044079],[-71.306766888,41.742044097],[-71.306816482,41.741991527],[-71.309385351,41.741142535],[-71.309234483,41.740959527],[-71.309052483,41.740765527],[-71.308876482,41.740611527],[-71.308693483,41.740461526],[-71.308125483,41.739984527],[-71.307976483,41.739859526],[-71.307922482,41.739810527],[-71.307236483,41.739270526],[-71.306587482,41.738752526],[-71.306412482,41.738616526],[-71.306099482,41.738419526],[-71.305702481,41.738211527],[-71.304970482,41.737866526],[-71.304802481,41.737797526],[-71.304665481,41.737737526],[-71.304489481,41.737634526],[-71.30240348,41.737650526],[-71.296133479,41.737691526],[-71.296128478,41.737663527],[-71.296127486,41.737576184],[-71.296122869,41.737587934],[-71.296124007,41.737604493],[-71.29612464,41.737616866],[-71.29613052,41.737688662],[-71.296133229,41.737710553],[-71.296139582,41.737729202],[-71.296152332,41.73774274],[-71.296172303,41.737751741],[-71.296196769,41.737758233],[-71.29622399,41.737762764],[-71.296253969,41.737764052],[-71.296284866,41.737764747],[-71.296317503,41.737765445],[-71.296352828,41.737766171],[-71.296390777,41.73776697],[-71.296430498,41.737767841],[-71.296471073,41.737768667],[-71.2965144,41.737768264],[-71.296558584,41.737767244],[-71.296607228,41.737765638],[-71.296659315,41.737766073],[-71.296712319,41.73776651],[-71.296766144,41.73776768],[-71.29681823,41.737768801],[-71.296856085,41.7377704],[-71.296917738,41.73776804],[-71.296934043,41.737767954],[-71.2970083,41.737767536],[-71.297087206,41.737764428],[-71.297165266,41.737758597],[-71.29724414,41.737756175],[-71.297320192,41.737757865],[-71.297409841,41.737765867],[-71.297492763,41.737786892],[-71.297565292,41.737821438],[-71.297634081,41.737860779],[-71.29769284,41.737895186],[-71.297752228,41.737943362],[-71.297797947,41.73798854],[-71.297841766,41.738035796],[-71.297881849,41.738086475],[-71.297915449,41.738140437],[-71.297937114,41.738193577],[-71.297957997,41.738242599],[-71.298003716,41.738287822],[-71.298063109,41.73833458],[-71.29812454,41.738373885],[-71.298171915,41.738426636],[-71.298198225,41.73847848],[-71.298226262,41.738534444],[-71.298266244,41.738588554],[-71.298334199,41.738621696],[-71.298399569,41.73865138],[-71.298461604,41.73870299],[-71.298493166,41.738764471],[-71.298504644,41.738823677],[-71.298504644,41.738862805],[-71.298530885,41.738917394],[-71.298579176,41.738970192],[-71.298640648,41.739006684],[-71.298715994,41.739039267],[-71.298729228,41.739045008],[-71.298785882,41.739069668],[-71.298850062,41.739108955],[-71.298903852,41.739161145],[-71.298936435,41.73921858],[-71.298955101,41.739284041],[-71.298968203,41.739351482],[-71.298996028,41.73941705],[-71.299023046,41.739477129],[-71.299021771,41.73953343],[-71.299021171,41.739598628],[-71.299056609,41.739651312],[-71.299106559,41.739691374],[-71.299142596,41.739718651],[-71.299110817,41.739726143],[-71.299129031,41.73980944],[-71.299277958,41.740069515],[-71.299357961,41.740058198],[-71.299371133,41.740083765],[-71.299376064,41.740147693],[-71.299410585,41.740200992],[-71.299448839,41.740251645],[-71.299501818,41.740299694],[-71.299542681,41.74035584],[-71.299565257,41.740411085],[-71.299586959,41.74046283],[-71.299616828,41.740519528],[-71.299659734,41.740566782],[-71.299705282,41.740618866],[-71.299751075,41.740660636],[-71.299799617,41.740702456],[-71.299851753,41.740747073],[-71.299911177,41.740794515],[-71.299977021,41.740840002],[-71.300032962,41.740878496],[-71.300085242,41.74091623],[-71.300145796,41.740954115],[-71.300201842,41.74098847],[-71.300275119,41.740990129],[-71.300301957,41.740980845],[-71.300501982,41.740972434],[-71.30062461,41.740981589],[-71.300625599,41.741017289],[-71.30081685,41.74103212],[-71.300898193,41.74104214],[-71.300975093,41.741047213],[-71.301054637,41.741056498],[-71.301132277,41.741069165],[-71.301205411,41.741077684],[-71.301276641,41.741089585],[-71.301356927,41.741105732],[-71.301438407,41.741110927],[-71.301511861,41.741104994],[-71.301690818,41.741096315],[-71.301751971,41.741068932],[-71.301823274,41.741037587],[-71.301924838,41.741005289],[-71.302025696,41.740964687],[-71.302140217,41.740929094],[-71.302208664,41.740902524],[-71.302268762,41.740880627],[-71.302271156,41.740856665],[-71.30234813,41.74085762],[-71.302427816,41.740860067],[-71.302494046,41.740889751],[-71.302550062,41.740924105],[-71.302619348,41.740942862],[-71.302699745,41.740952811],[-71.302751966,41.740950454],[-71.302782382,41.740949088],[-71.302861366,41.740941882],[-71.302939323,41.740940827],[-71.303023269,41.740958374],[-71.303091267,41.740988769],[-71.303149956,41.741027999],[-71.303204771,41.741076072],[-71.303259519,41.741126226],[-71.303311621,41.741172899],[-71.303368476,41.741212766],[-71.303442173,41.741237064],[-71.303518794,41.741253821],[-71.303597214,41.74127129],[-71.303677254,41.741298458],[-71.303747289,41.741321995],[-71.303821974,41.741342888],[-71.303906871,41.741359087],[-71.303979196,41.741362778],[-71.304055285,41.741363754],[-71.304131556,41.741355102],[-71.304216103,41.741345938],[-71.30429586,41.741345571],[-71.304380898,41.741355573],[-71.304455971,41.741359291],[-71.304531007,41.741365067],[-71.304605972,41.741374296],[-71.304691929,41.741383636],[-71.304764254,41.741387326],[-71.304839429,41.741387614],[-71.304886494,41.741373767],[-71.30492591,41.741334476],[-71.304988754,41.741191789],[-71.305003264,41.741119182],[-71.305011221,41.741052715],[-71.304995754,41.740967387],[-71.30498546,41.740897871],[-71.305000745,41.740831485],[-71.30501177,41.740749953],[-71.305017296,41.740669669],[-71.305095748,41.74064595],[-71.305219147,41.740662648],[-71.305338219,41.740706781],[-71.305394519,41.740769309],[-71.305405478,41.740851107],[-71.305377618,41.740946218],[-71.305358492,41.74102083],[-71.305415634,41.741087475],[-71.305513535,41.741094913],[-71.30558808,41.741040931],[-71.305673816,41.74098164],[-71.305739583,41.74095225],[-71.305824619,41.740881957],[-71.305913678,41.740915359]]],[[[-71.29251268,41.761594885],[-71.292977479,41.761346531],[-71.293014479,41.761102531],[-71.293060478,41.760665531],[-71.293121478,41.760186531],[-71.29316007,41.759849003],[-71.294394359,41.759993111],[-71.296503926,41.753478021],[-71.297622479,41.750023529],[-71.299579765,41.749478529],[-71.302426445,41.748685879],[-71.303502876,41.748386151],[-71.303932482,41.748266528],[-71.303932482,41.748018528],[-71.303986481,41.747761528],[-71.304199481,41.746937528],[-71.304344482,41.746335528],[-71.304367482,41.746172527],[-71.304367482,41.746024528],[-71.304359482,41.745979527],[-71.304329482,41.745894528],[-71.304306482,41.745863527],[-71.304291482,41.745832528],[-71.304245482,41.745761527],[-71.304153482,41.745650528],[-71.304093482,41.745593528],[-71.304106441,41.745466926],[-71.304090844,41.7454669],[-71.304090763,41.745466528],[-71.304090482,41.745466528],[-71.304078481,41.745410527],[-71.304087482,41.745344528],[-71.304100353,41.745307946],[-71.304106374,41.745290309],[-71.304139788,41.745249535],[-71.304145482,41.745242528],[-71.304254481,41.745148528],[-71.304254601,41.74514838],[-71.304254717,41.745109988],[-71.304227635,41.745048653],[-71.304214138,41.745038362],[-71.304169643,41.744979399],[-71.304130128,41.744939539],[-71.304016295,41.744817431],[-71.304001336,41.744795862],[-71.303967162,41.744747048],[-71.303899566,41.744693556],[-71.303827526,41.744655242],[-71.303765158,41.744619551],[-71.303711594,41.744580537],[-71.303639563,41.744539547],[-71.303566648,41.744497915],[-71.303497254,41.744452973],[-71.303417367,41.744404743],[-71.303357585,41.74437235],[-71.303294348,41.744341254],[-71.303231967,41.744310182],[-71.303169581,41.744280437],[-71.303079062,41.744244035],[-71.302989394,41.744208983],[-71.302896209,41.744175869],[-71.302803023,41.744152635],[-71.302742165,41.744133046],[-71.302718614,41.744125481],[-71.302632483,41.744092379],[-71.302548138,41.744053997],[-71.302469928,41.744016975],[-71.30238643,41.743981248],[-71.302311748,41.743938926],[-71.30224679,41.743892024],[-71.302184442,41.743850387],[-71.302110639,41.743810079],[-71.302029819,41.743767769],[-71.301957763,41.743735354],[-71.301888303,41.743712823],[-71.301813535,41.743698195],[-71.301722981,41.743673683],[-71.301642117,41.743645849],[-71.301577109,41.743605533],[-71.301512983,41.743566568],[-71.301441813,41.743534131],[-71.301365338,41.743508958],[-71.301293256,41.743485118],[-71.301216777,41.74346127],[-71.301134985,41.743447293],[-71.301053169,41.743441206],[-71.300969568,41.743439757],[-71.300886872,41.743431701],[-71.300798147,41.743388714],[-71.300730487,41.743347112],[-71.300653158,41.743321914],[-71.300580181,41.743301342],[-71.300562578,41.743296052],[-71.300507815,41.743260899],[-71.300443416,41.743231194],[-71.300361296,41.743215021],[-71.300279217,41.743195439],[-71.300214744,41.743169874],[-71.300143126,41.743134623],[-71.300076084,41.74310082],[-71.300020141,41.743062303],[-71.299975507,41.743010244],[-71.299932601,41.74296235],[-71.299876554,41.742927949],[-71.299810463,41.742892753],[-71.299749729,41.742863146],[-71.299686249,41.742832803],[-71.299615406,41.74280375],[-71.299551149,41.742767893],[-71.29949359,41.742719082],[-71.299457269,41.742665071],[-71.299432895,41.74260845],[-71.299417748,41.742549902],[-71.299386116,41.742490433],[-71.29933102,41.742454707],[-71.299266836,41.742415398],[-71.299206524,41.742367953],[-71.299151853,41.742313681],[-71.299092142,41.742279273],[-71.299025069,41.742246133],[-71.29897191,41.742206317],[-71.298940981,41.7421565],[-71.298920271,41.742099931],[-71.298902343,41.742042682],[-71.298889869,41.741988964],[-71.298888674,41.74196081],[-71.299039739,41.74192844],[-71.298953385,41.741831164],[-71.298890552,41.741760343],[-71.298749742,41.741823764],[-71.29863638,41.741731655],[-71.298617285,41.74176437],[-71.298568952,41.741753445],[-71.298497051,41.741731251],[-71.29842984,41.741703576],[-71.298363755,41.74166703],[-71.298324689,41.741612281],[-71.298276429,41.741558797],[-71.298226058,41.741516241],[-71.298159967,41.741481776],[-71.298088953,41.741459537],[-71.298023745,41.741425759],[-71.297966962,41.741383146],[-71.29790454,41.741347292],[-71.297829715,41.741371721],[-71.297757917,41.741385202],[-71.297735265,41.741373957],[-71.297762185,41.741319347],[-71.297758946,41.741261643],[-71.297741125,41.741199636],[-71.297709354,41.741146342],[-71.297665639,41.741094283],[-71.297595643,41.741068661],[-71.297526278,41.741095204],[-71.297458851,41.741116994],[-71.297383532,41.741123585],[-71.297331435,41.741076908],[-71.297309951,41.741014827],[-71.297292024,41.740957623],[-71.297267724,41.740897572],[-71.297238662,41.740847071],[-71.297209606,41.740794513],[-71.297187167,41.740735197],[-71.297199811,41.740705147],[-71.297258152,41.74067911],[-71.297256392,41.740675654],[-71.297174334,41.740378669],[-71.29712847,41.74037948],[-71.297125547,41.740347825],[-71.297174338,41.740338855],[-71.297072904,41.740047828],[-71.296999187,41.739866278],[-71.296925572,41.739720449],[-71.296846982,41.739603015],[-71.296840702,41.739599917],[-71.296815281,41.739595366],[-71.296786974,41.739596094],[-71.296754136,41.739600724],[-71.296715168,41.739603194],[-71.296671804,41.739604901],[-71.296625883,41.739604614],[-71.296580879,41.739603642],[-71.296539585,41.739598149],[-71.296501149,41.739586692],[-71.296462912,41.739569999],[-71.296423925,41.739549347],[-71.296385036,41.739526707],[-71.296350639,41.739502793],[-71.296319757,41.739477674],[-71.296290709,41.739451918],[-71.296263433,41.739426165],[-71.296237076,41.739399179],[-71.29621341,41.739370893],[-71.296191583,41.739340622],[-71.296168935,41.739309068],[-71.296143632,41.739277441],[-71.29611659,41.739245079],[-71.296088697,41.739211435],[-71.296062641,41.739176468],[-71.296041931,41.739140298],[-71.296026536,41.739103589],[-71.296013798,41.73906693],[-71.296002341,41.739040153],[-71.295998371,41.739030861],[-71.295977629,41.738995378],[-71.295954228,41.738960484],[-71.295927252,41.738926818],[-71.295898442,41.738893767],[-71.295866085,41.73886199],[-71.295831891,41.738832154],[-71.295795006,41.738803594],[-71.295758055,41.738776337],[-71.295722843,41.738749792],[-71.295688584,41.738721282],[-71.295654324,41.738692772],[-71.295647778,41.738687043],[-71.29562016,41.738662936],[-71.295586919,41.738631112],[-71.29555368,41.738598647],[-71.295520504,41.738565565],[-71.295487297,41.738532438],[-71.295455039,41.738498671],[-71.295419209,41.738464807],[-71.295381641,41.738430254],[-71.295344071,41.738396409],[-71.295311783,41.738362643],[-71.295283856,41.738330279],[-71.295260291,41.738299364],[-71.295236726,41.738268403],[-71.295211423,41.738236799],[-71.295185368,41.738201832],[-71.295161148,41.738165541],[-71.295138671,41.738128682],[-71.295117077,41.73809251],[-71.295097254,41.738056388],[-71.295077331,41.738022849],[-71.295058228,41.737990684],[-71.295040896,41.737958591],[-71.295026153,41.737928492],[-71.29501492,41.737898467],[-71.295006279,41.737869843],[-71.294998423,41.737843873],[-71.294993156,41.737819942],[-71.29499058,41.737794736],[-71.29499148,41.737770954],[-71.294994018,41.737750513],[-71.295004327,41.737734821],[-71.295023292,41.737724015],[-71.295047403,41.73771722],[-71.295073188,41.737712509],[-71.295098118,41.737707728],[-71.295120361,41.737702897],[-71.295137453,41.737695335],[-71.295147373,41.737686685],[-71.295158267,41.73761174],[-71.295153651,41.737594443],[-71.295140047,41.737580285],[-71.295115713,41.7375705],[-71.295080559,41.737564468],[-71.295039101,41.737562908],[-71.294994099,41.737561936],[-71.294948211,41.737560962],[-71.29490498,41.737560039],[-71.294866147,41.737558551],[-71.294828228,41.737557752],[-71.294789395,41.737556265],[-71.294754235,41.7375522],[-71.294722852,41.737540961],[-71.294693506,41.737523162],[-71.294663475,41.737500011],[-71.294633611,41.73747224],[-71.294603847,41.73744184],[-71.294577724,41.737408862],[-71.294554293,41.737374653],[-71.294535225,41.737341139],[-71.294519699,41.737307723],[-71.2945085,41.737277081],[-71.294498219,41.737245755],[-71.294488825,41.737213813],[-71.294479464,41.737181185],[-71.294471873,41.737148606],[-71.294465989,41.737117379],[-71.294462662,41.737088192],[-71.294462775,41.737062396],[-71.294466366,41.737037338],[-71.294474351,41.737013043],[-71.294477973,41.736987985],[-71.294478023,41.736962829],[-71.294477217,41.736937672],[-71.294476347,41.736913818],[-71.294476513,41.736909542],[-71.294476012,41.736848326],[-71.29446639,41.736816753],[-71.294436734,41.736793227],[-71.294402039,41.736777294],[-71.294361867,41.736765193],[-71.294319924,41.736753043],[-71.294283328,41.736739691],[-71.294252179,41.736722483],[-71.294228247,41.73670147],[-71.294207927,41.736677878],[-71.294190396,41.736651044],[-71.294173817,41.736622245],[-71.294158124,41.736593471],[-71.294140558,41.73656794],[-71.294121841,41.736549017],[-71.294105613,41.736534809],[-71.294094568,41.736522646],[-71.29408352,41.736511809],[-71.294071588,41.736500307],[-71.294058018,41.736485464],[-71.294044713,41.736464012],[-71.294032529,41.736435998],[-71.294016216,41.736400568],[-71.293994891,41.736357124],[-71.293761373,41.735806294],[-71.293757777,41.735785088],[-71.293751592,41.735761773],[-71.293743902,41.735731893],[-71.293734542,41.735699242],[-71.293723511,41.735663935],[-71.293712545,41.735627302],[-71.29369886,41.735591304],[-71.293685236,41.735555261],[-71.293670696,41.735519239],[-71.293657894,41.735483929],[-71.293646859,41.735449949],[-71.293634022,41.735415897],[-71.293621153,41.735382554],[-71.293606546,41.735348498],[-71.293591021,41.735315082],[-71.293574578,41.735282327],[-71.293556425,41.735249546],[-71.293538209,41.735217382],[-71.293520813,41.735186569],[-71.293505153,41.735157131],[-71.29349028,41.735129707],[-71.293475371,41.735104227],[-71.293460366,41.735080097],[-71.293447129,41.735056655],[-71.293435598,41.735034566],[-71.29342669,41.735013213],[-71.29341952,41.734992549],[-71.293413234,41.734972573],[-71.29340685,41.734954564],[-71.293399447,41.734939869],[-71.293391875,41.734930433],[-71.293382267,41.73492758],[-71.293346909,41.734928157],[-71.293323001,41.734929005],[-71.293302664,41.734929861],[-71.293287674,41.734929537],[-71.293277082,41.734928671],[-71.293271968,41.734923928],[-71.293267087,41.73491324],[-71.293259783,41.734896532],[-71.293251728,41.734875867],[-71.293243807,41.7348512],[-71.293234212,41.734825226],[-71.293223701,41.734799205],[-71.293214074,41.734773826],[-71.293207857,41.734751198],[-71.293206852,41.734731323],[-71.293211847,41.734716215],[-71.293226351,41.73470595],[-71.293248792,41.7346965],[-71.293273955,41.734685156],[-71.293294823,41.734671015],[-71.29330595,41.734657359],[-71.293306517,41.734642153],[-71.293301871,41.734624855],[-71.293297325,41.734604905],[-71.293292846,41.734583012],[-71.293286694,41.734559057],[-71.293278837,41.734533726],[-71.29327013,41.734507068],[-71.29326139,41.734481096],[-71.293251793,41.73445574],[-71.293243742,41.734433749],[-71.293236533,41.734415738],[-71.293230906,41.734399719],[-71.293227043,41.734385739],[-71.293222231,41.734372444],[-71.293216562,41.734359718],[-71.293212603,41.734347065],[-71.293211331,41.734334462],[-71.293212751,41.734319942],[-71.29322132,41.734304247],[-71.293233401,41.734287963],[-71.293243775,41.734271013],[-71.293247952,41.734253868],[-71.293247767,41.734235367],[-71.293246795,41.734214806],[-71.293248481,41.734193678],[-71.293251907,41.734172599],[-71.293253558,41.734152775],[-71.293249797,41.734135502],[-71.293239704,41.734122059],[-71.293222426,41.73411176],[-71.293200651,41.734104037],[-71.293180617,41.734096317],[-71.293162487,41.73408533],[-71.293145376,41.734070434],[-71.293131122,41.734050261],[-71.293117033,41.734026155],[-71.293103076,41.733998732],[-71.293088139,41.733972635],[-71.293072279,41.733948457],[-71.293057105,41.733929631],[-71.293040745,41.73391867],[-71.293023167,41.733916306],[-71.293001912,41.733917845],[-71.292977049,41.7339213],[-71.292950448,41.733924019],[-71.292924932,41.733921526],[-71.292900669,41.73390911],[-71.292875789,41.733889375],[-71.292851141,41.733863694],[-71.292825774,41.733834056],[-71.292803983,41.733803144],[-71.292783995,41.73377164],[-71.292764829,41.733740801],[-71.292745593,41.733712591],[-71.292723635,41.733686321],[-71.292698037,41.733661965],[-71.292671616,41.733636921],[-71.292646149,41.733609913],[-71.292619929,41.733579587],[-71.292591973,41.733547909],[-71.292562247,41.733516159],[-71.29253078,41.733484428],[-71.292498393,41.733453954],[-71.292464138,41.73342542],[-71.292428012,41.73339949],[-71.292391784,41.733376921],[-71.292357129,41.733358952],[-71.292323321,41.73334302],[-71.292288566,41.733327727],[-71.29225207,41.733312384],[-71.292212,41.733297675],[-71.292170093,41.733284839],[-71.29212897,41.733274702],[-71.292088635,41.733266579],[-71.292049052,41.733261751],[-71.2920094,41.733259598],[-71.291967024,41.733259361],[-71.29192094,41.733263668],[-71.291873872,41.733269941],[-71.291826802,41.733276876],[-71.291780584,41.733284522],[-71.291735219,41.733292787],[-71.291689955,41.733298445],[-71.29164377,41.733305405],[-71.291594829,41.733314967],[-71.291543197,41.733325759],[-71.29149068,41.73333655],[-71.29143728,41.733346652],[-71.29138388,41.733356755],[-71.291329657,41.733366193],[-71.291273599,41.733376931],[-71.291215802,41.733386957],[-71.291157119,41.733397599],[-71.29110024,41.733406986],[-71.29104612,41.733413085],[-71.290996561,41.733415328],[-71.290950644,41.733414993],[-71.290905645,41.733414065],[-71.290862351,41.733414443],[-71.290818992,41.733416194],[-71.290775629,41.733419202],[-71.290733973,41.733422945],[-71.290693169,41.733427399],[-71.290655742,41.733435838],[-71.290622608,41.733447716],[-71.290592881,41.733463624],[-71.290566533,41.73348226],[-71.290544576,41.733502939],[-71.290524225,41.733526983],[-71.290507283,41.733554441],[-71.290492997,41.733581903],[-71.290482287,41.733608138],[-71.290476924,41.733633147],[-71.290475957,41.733658278],[-71.290475807,41.733685423],[-71.290481825,41.733712671],[-71.290498434,41.733740784],[-71.290521144,41.733770418],[-71.290547359,41.733802048],[-71.290575284,41.733833727],[-71.290601468,41.73386538],[-71.290625881,41.733897006],[-71.290649445,41.733927259],[-71.290675827,41.733954316],[-71.290704937,41.733978084],[-71.290736769,41.734000599],[-71.290770306,41.734024467],[-71.290802825,41.734051626],[-71.290833537,41.734080726],[-71.290861592,41.734109752],[-71.290881614,41.734139952],[-71.290891891,41.734171919],[-71.290889668,41.734207614],[-71.290880231,41.734246428],[-71.290864624,41.734285803],[-71.290843707,41.734324391],[-71.290821019,41.734362952],[-71.29079846,41.734399524],[-71.290775903,41.734435433],[-71.290754201,41.734471344],[-71.290730006,41.734503911],[-71.290705129,41.734530508],[-71.290679529,41.734553788],[-71.29065662,41.734575815],[-71.290634664,41.734595854],[-71.290615401,41.734613931],[-71.290602268,41.734634169],[-71.290597003,41.734657212],[-71.290598792,41.734679764],[-71.290606846,41.734700429],[-71.29062117,41.73471795],[-71.290641754,41.734734933],[-71.290665033,41.734749292],[-71.290690148,41.734762419],[-71.290716249,41.734772872],[-71.290741565,41.734780693],[-71.290764222,41.73478915],[-71.290784191,41.734798174],[-71.290802421,41.734806509],[-71.2908198,41.73481411],[-71.290835374,41.734822394],[-71.290847338,41.734833233],[-71.290852119,41.734846574],[-71.290849679,41.734864385],[-71.290844416,41.734886787],[-71.290834657,41.734911719],[-71.290821291,41.73493788],[-71.290807007,41.734964725],[-71.290791048,41.734990149],[-71.290775191,41.735012303],[-71.290757697,41.735031115],[-71.290738532,41.735047272],[-71.290715073,41.735060013],[-71.290688271,41.735068014],[-71.290661701,41.735070092],[-71.290636153,41.735068262],[-71.290610604,41.735066386],[-71.29058492,41.735068466],[-71.290558938,41.735077864],[-71.290536362,41.735091247],[-71.290517197,41.73510738],[-71.290499637,41.735127518],[-71.290481257,41.735146329],[-71.290457728,41.735161677],[-71.290431613,41.73517439],[-71.290411763,41.735185194],[-71.290401552,41.735198851],[-71.290402591,41.735217423],[-71.290408804,41.735240715],[-71.290418398,41.735266734],[-71.290427925,41.735294697],[-71.290433088,41.735321944],[-71.29043202,41.735349682],[-71.290430918,41.735378769],[-71.290429718,41.735409846],[-71.290424019,41.735444139],[-71.290414714,41.735479661],[-71.290401014,41.735514442],[-71.290378624,41.735545709],[-71.290345839,41.735572155],[-71.290306104,41.735595111],[-71.29026296,41.7356147],[-71.290222507,41.735633036],[-71.290188251,41.735651474],[-71.290165311,41.735673501],[-71.290152008,41.735699021],[-71.290144773,41.735726657],[-71.290133963,41.73575552],[-71.29011794,41.73578163],[-71.290100245,41.735805748],[-71.29008606,41.735829917],[-71.290078959,41.73585426],[-71.290077104,41.735880007],[-71.290076102,41.735906442],[-71.290071458,41.735935477],[-71.290061531,41.735965028],[-71.29004367,41.735993102],[-71.290020593,41.736019748],[-71.289994796,41.736046961],[-71.289969848,41.736076187],[-71.289949261,41.736106863],[-71.289934874,41.736136978],[-71.28992318,41.736165177],[-71.289913355,41.736191435],[-71.289903695,41.736213715],[-71.289892367,41.736232698],[-71.289879401,41.736248271],[-71.289864697,41.736263178],[-71.28984822,41.736278699],[-71.289833514,41.736294268],[-71.289818679,41.736311805],[-71.289805576,41.736332066],[-71.289794968,41.736354984],[-71.289786063,41.736379918],[-71.289780697,41.736405613],[-71.289778744,41.736433349],[-71.289777578,41.7364631],[-71.289774538,41.73649678],[-71.289767,41.736533037],[-71.289755823,41.736571162],[-71.289744644,41.736609927],[-71.289736123,41.736648125],[-71.289728487,41.736686349],[-71.289721737,41.736724573],[-71.289715087,41.736760145],[-71.289706667,41.736795691],[-71.289696475,41.736831211],[-71.289687202,41.736866092],[-71.289678912,41.736898962],[-71.289671544,41.736929914],[-71.289665097,41.736959563],[-71.28965878,41.73698656],[-71.289651645,41.737011542],[-71.289646349,41.737034562],[-71.289644692,41.737055736],[-71.289643925,41.737075562],[-71.289643257,41.737093375],[-71.289644393,41.737109957],[-71.289648254,41.737124601],[-71.289652967,41.737139909],[-71.289657713,41.737154553],[-71.289661508,41.737170546],[-71.28966445,41.737185828],[-71.289668243,41.737202438],[-71.289671115,41.737220349],[-71.289675696,41.737238996],[-71.289680274,41.73725826],[-71.289684821,41.737277547],[-71.289688546,41.737296146],[-71.289694077,41.737313445],[-71.289699611,41.737330127],[-71.289715072,41.737368356],[-71.289736822,41.737408196],[-71.289752389,41.737426954],[-71.289772004,41.737442363],[-71.289792909,41.737454522],[-71.289819044,41.737464312],[-71.289847967,41.737470883],[-71.289876895,41.73747615],[-71.289904837,41.737483999],[-71.289928213,41.737497077],[-71.289944308,41.737514624],[-71.289949839,41.737531969],[-71.289943105,41.737546341],[-71.28992581,41.737559871],[-71.289903133,41.737575929],[-71.28987944,41.737594616],[-71.289859253,41.737614681],[-71.28984169,41.737635482],[-71.289828556,41.737655743],[-71.289819884,41.737674754],[-71.28981915,41.737693894],[-71.289821137,41.737711804],[-71.289824853,41.737723977],[-71.289826605,41.737729767],[-71.289836596,41.737746548],[-71.289851018,41.737762079],[-71.289869901,41.737776338],[-71.289879865,41.737782577],[-71.289894065,41.73779143],[-71.289923643,41.737803285],[-71.289957883,41.737808653],[-71.289995833,41.737809477],[-71.290033948,41.737806299],[-71.290072951,41.737802506],[-71.290111,41.737800677],[-71.290148163,41.737799464],[-71.290184344,41.737799576],[-71.290218782,41.737800325],[-71.290251419,41.737801025],[-71.290284087,41.737801702],[-71.290317542,41.737804439],[-71.290350928,41.737809737],[-71.290386021,41.737815792],[-71.290421966,41.737822536],[-71.290458763,41.737830561],[-71.290496379,41.737840006],[-71.290533073,41.73785137],[-71.290567833,41.737865978],[-71.290598061,41.737884466],[-71.290625501,41.737906264],[-71.290651069,41.737930598],[-71.290676638,41.737954954],[-71.290702239,41.737978647],[-71.290726102,41.738001651],[-71.290749012,41.73802662],[-71.290771004,41.738052251],[-71.290792078,41.738078497],[-71.290812267,41.738104742],[-71.290831599,41.738131602],[-71.290849131,41.738157796],[-71.290861382,41.738183821],[-71.290869269,41.738209151],[-71.290875453,41.73823242],[-71.29088436,41.738253819],[-71.290896776,41.738275887],[-71.290912671,41.738298716],[-71.290928531,41.738322895],[-71.290946159,41.738347763],[-71.29096287,41.738373246],[-71.290976894,41.738398679],[-71.29098468,41.738426639],[-71.290985384,41.738454472],[-71.290984315,41.738482896],[-71.290983248,41.738510635],[-71.290982148,41.738539082],[-71.290981146,41.738565494],[-71.290978472,41.738589936],[-71.290970587,41.738610915],[-71.290954963,41.738627124],[-71.290935012,41.738640603],[-71.290911684,41.738650005],[-71.290886784,41.738654762],[-71.290861069,41.738656865],[-71.290834598,41.738656314],[-71.290809933,41.73865444],[-71.290787957,41.738651998],[-71.290771198,41.738650985],[-71.290754437,41.738650611],[-71.290727081,41.738650058],[-71.290709401,41.738650323],[-71.290689918,41.738651225],[-71.290673974,41.738652866],[-71.2906639,41.738661926],[-71.290660542,41.738680375],[-71.290662229,41.738706221],[-71.290666374,41.738736758],[-71.290679343,41.738767449],[-71.290702973,41.738796421],[-71.290734674,41.73882223],[-71.290769066,41.738846762],[-71.290804277,41.738873331],[-71.290837784,41.738897839],[-71.290871454,41.738919077],[-71.290901653,41.738937588],[-71.290926637,41.738954007],[-71.290944568,41.7389703],[-71.290949999,41.738990251],[-71.290942865,41.739015234],[-71.290932646,41.739030972],[-71.290925067,41.739042645],[-71.290896578,41.739071111],[-71.290861068,41.739099472],[-71.290823753,41.739128448],[-71.290788179,41.739157472],[-71.29075526,41.739187188],[-71.290726701,41.739218352],[-71.290698996,41.739250181],[-71.290673028,41.739282699],[-71.290646143,41.739315856],[-71.29062014,41.739349723],[-71.290594173,41.739382241],[-71.290569058,41.739415447],[-71.290547487,41.739448065],[-71.29052949,41.739480094],[-71.290515923,41.73951156],[-71.290509406,41.739543839],[-71.290508169,41.739576906],[-71.290506838,41.739610612],[-71.290499435,41.739642867],[-71.290485113,41.739671679],[-71.290465513,41.73969904],[-71.290442337,41.739727675],[-71.290417354,41.739757565],[-71.290391454,41.73978814],[-71.290368177,41.739819359],[-71.290349295,41.739851387],[-71.29033484,41.739883492],[-71.290323963,41.739913705],[-71.290315841,41.739941979],[-71.290309594,41.739966323],[-71.290302692,41.73998536],[-71.290287985,41.74000093],[-71.290265477,41.740011683],[-71.290237786,41.740020368],[-71.290209998,41.740030357],[-71.2901866,41.740042458],[-71.29016665,41.740055251],[-71.290150338,41.740066793],[-71.290136687,41.740077082],[-71.290132744,41.740087594],[-71.290140282,41.740098357],[-71.290159364,41.740107996],[-71.290183797,41.740115794],[-71.290208229,41.740123591],[-71.290227113,41.740137896],[-71.290235135,41.74015927],[-71.290232393,41.740185633],[-71.29022414,41.740216582],[-71.290211422,41.740249376],[-71.29019336,41.740282732],[-71.290168343,41.740313971],[-71.290135424,41.740343046],[-71.290098176,41.740370009],[-71.290061879,41.740395716],[-71.290027355,41.740420786],[-71.289992011,41.740444505],[-71.289952273,41.740467462],[-71.28990804,41.740492331],[-71.289864659,41.740517888],[-71.289822197,41.74054276],[-71.289784229,41.740565766],[-71.28975069,41.74058823],[-71.289722436,41.74061011],[-71.289698604,41.740633415],[-71.289676546,41.740656107],[-71.289657178,41.740677523],[-71.289639717,41.740695008],[-71.289623206,41.740711215],[-71.289607616,41.740726097],[-71.289592941,41.740740981],[-71.28958178,41.740755322],[-71.289572455,41.74076834],[-71.289566707,41.740780153],[-71.289561643,41.740797227],[-71.28956039,41.740807127],[-71.289555895,41.740809017],[-71.289555394,41.740822234],[-71.289553122,41.740835403],[-71.28954622,41.74085444],[-71.289536428,41.740879418],[-71.289523844,41.740908896],[-71.289507584,41.740941614],[-71.289486795,41.740977572],[-71.289462333,41.741016107],[-71.289437048,41.741054572],[-71.289408222,41.741092322],[-71.289375953,41.741128007],[-71.289341027,41.741163687],[-71.289302592,41.74119856],[-71.28926245,41.741232767],[-71.289222345,41.741265008],[-71.289182239,41.741297248],[-71.289140426,41.741328753],[-71.289096811,41.741360233],[-71.289056704,41.741393136],[-71.289021612,41.741432726],[-71.288989042,41.741476369],[-71.288961651,41.741523406],[-71.288935113,41.741571154],[-71.288908509,41.741620205],[-71.288880202,41.74166724],[-71.288849272,41.741713561],[-71.288821028,41.741759911],[-71.288796295,41.741806358],[-71.288794167,41.74181294],[-71.288781274,41.741852343],[-71.28877432,41.741896536],[-71.288773571,41.741938842],[-71.288775543,41.741979918],[-71.288777681,41.742017016],[-71.288776378,41.742051385],[-71.288775207,41.742082462],[-71.288774006,41.742113539],[-71.288772836,41.742144616],[-71.288775994,41.742177736],[-71.288783449,41.742213631],[-71.288796117,41.74225228],[-71.288814032,41.742292334],[-71.288832897,41.742331108],[-71.288852751,41.742366638],[-71.288869163,41.74239937],[-71.288882031,41.74243276],[-71.288889551,41.742467283],[-71.288892512,41.742505068],[-71.288896285,41.742546193],[-71.28889901,41.742590541],[-71.288899899,41.742636235],[-71.28890072,41.742683873],[-71.28890423,41.742730944],[-71.288913908,41.742778094],[-71.288928896,41.742826055],[-71.288946513,41.742873404],[-71.288963207,41.742922717],[-71.28897367,41.742972545],[-71.288969108,41.743022757],[-71.288953132,41.743071347],[-71.288930137,41.743118529],[-71.28891249,41.74316444],[-71.288912657,41.743206794],[-71.288929586,41.743249476],[-71.28895616,41.74329373],[-71.288984537,41.743337325],[-71.289006779,41.743380131],[-71.289017541,41.74342271],[-71.289023025,41.743463838],[-71.289028639,41.743502337],[-71.28903698,41.743538234],[-71.289048243,41.743567618],[-71.289058924,41.743588334],[-71.289062065,41.743598974],[-71.289061864,41.743604257],[-71.289271837,41.743974479],[-71.289389109,41.744072825],[-71.28936723,41.74410567],[-71.289287659,41.744216096],[-71.289239551,41.744332548],[-71.289205436,41.74443702],[-71.289144315,41.744479993],[-71.289121653,41.744509452],[-71.289134253,41.744624895],[-71.289195337,41.744668047],[-71.28918246,41.744702395],[-71.289077308,41.744791345],[-71.289017953,41.74489202],[-71.288967906,41.74501247],[-71.289008774,41.745065396],[-71.288991345,41.74510033],[-71.288903758,41.745121826],[-71.288843931,41.745151949],[-71.288878991,41.745187804],[-71.289026368,41.745222332],[-71.289075594,41.745268641],[-71.289066213,41.745391864],[-71.28911724,41.745438222],[-71.289239883,41.745510256],[-71.28940476,41.745534913],[-71.28944111,41.745559335],[-71.28939229,41.745584859],[-71.289268314,41.745640272],[-71.289240589,41.745714385],[-71.289213543,41.745823718],[-71.289266847,41.74591145],[-71.289372744,41.745996762],[-71.289373319,41.746063884],[-71.289396689,41.746182296],[-71.28942332,41.746312264],[-71.289544339,41.746321221],[-71.289571483,41.7463502],[-71.289527142,41.746434803],[-71.289439449,41.746544459],[-71.289429322,41.746662216],[-71.289494213,41.746727809],[-71.289437538,41.746802075],[-71.289369079,41.746903213],[-71.289381647,41.747019388],[-71.289410486,41.74713717],[-71.289429203,41.747259553],[-71.289437046,41.74738242],[-71.289438029,41.747492947],[-71.289436056,41.747610902],[-71.289453786,41.747735959],[-71.289424429,41.747804626],[-71.289371359,41.747906044],[-71.289330243,41.748031405],[-71.289262391,41.748142744],[-71.289167595,41.74824747],[-71.289062982,41.748347307],[-71.289052613,41.748417633],[-71.289106837,41.748533198],[-71.289125553,41.748655604],[-71.28910574,41.748765728],[-71.289025009,41.748883606],[-71.289032277,41.748939351],[-71.28913169,41.74905708],[-71.289188155,41.749159797],[-71.289194063,41.749258236],[-71.289123251,41.749377619],[-71.289062599,41.749490434],[-71.289001267,41.749596457],[-71.288901883,41.749674715],[-71.288770085,41.749747607],[-71.288653817,41.749815337],[-71.28862952,41.7498678],[-71.288663936,41.749951792],[-71.2887698,41.750067612],[-71.288865413,41.750133719],[-71.28900366,41.750171501],[-71.289052144,41.750240151],[-71.289087576,41.750349942],[-71.289143396,41.750416707],[-71.289289937,41.750476984],[-71.289438684,41.750554211],[-71.289574148,41.750593267],[-71.289715832,41.750635812],[-71.289803693,41.750691635],[-71.289783408,41.750731253],[-71.289654394,41.750802162],[-71.28962385,41.750850451],[-71.289648105,41.750913957],[-71.289746841,41.750997083],[-71.289916283,41.751049626],[-71.29002511,41.751128883],[-71.29014712,41.751220582],[-71.290265329,41.751316916],[-71.290352614,41.751418842],[-71.290394541,41.751523315],[-71.290379486,41.751626107],[-71.290295322,41.751710019],[-71.29018163,41.751783244],[-71.290061895,41.751873998],[-71.289941611,41.751983046],[-71.289848237,41.752043729],[-71.289792821,41.752021056],[-71.289649878,41.751933047],[-71.289507514,41.751883],[-71.289331209,41.75184595],[-71.289146234,41.751826355],[-71.288983142,41.751858026],[-71.288858371,41.751937838],[-71.288827518,41.751996234],[-71.288849127,41.752056305],[-71.288911778,41.75219169],[-71.288975618,41.752290441],[-71.289084921,41.752383261],[-71.289171492,41.752479081],[-71.289217054,41.752582967],[-71.289249431,41.752702836],[-71.289276337,41.752824045],[-71.28928927,41.75293169],[-71.289291351,41.752949052],[-71.28924602,41.752980093],[-71.289092677,41.753018049],[-71.288934641,41.753061964],[-71.288804266,41.753117937],[-71.288733791,41.753198054],[-71.288769878,41.753257671],[-71.288873914,41.753345656],[-71.288943666,41.753458094],[-71.288906964,41.753586253],[-71.288967987,41.753687697],[-71.289014463,41.753792271],[-71.289082487,41.75384504],[-71.289197604,41.75392575],[-71.289344018,41.753962288],[-71.289506096,41.753933999],[-71.289565013,41.753960841],[-71.28967578,41.754064549],[-71.289685803,41.754118949],[-71.289630688,41.754199987],[-71.289550361,41.754304351],[-71.289536799,41.754417299],[-71.289530951,41.754543319],[-71.289580728,41.754656749],[-71.289542734,41.754769332],[-71.289589077,41.754905738],[-71.289557375,41.754962144],[-71.289410173,41.75503542],[-71.289295422,41.75511269],[-71.289176831,41.755196699],[-71.289040607,41.755265421],[-71.288902879,41.755299197],[-71.288896429,41.755300786],[-71.288732206,41.755339202],[-71.288555211,41.7553794],[-71.288384939,41.755408908],[-71.288224046,41.755400607],[-71.288111031,41.755395184],[-71.288050002,41.75543475],[-71.287979048,41.755529753],[-71.287977307,41.755640916],[-71.287944921,41.755746808],[-71.287852968,41.755819041],[-71.28768986,41.755879869],[-71.287552546,41.755953985],[-71.28760908,41.756055376],[-71.287630834,41.756080572],[-71.287709483,41.756171736],[-71.287716988,41.756276306],[-71.287690512,41.756395816],[-71.287636988,41.756511503],[-71.287538235,41.756626328],[-71.287466937,41.756759979],[-71.287458061,41.756867607],[-71.287536447,41.756936816],[-71.287524313,41.756976608],[-71.287439661,41.757075429],[-71.287374719,41.757180048],[-71.287344678,41.75729683],[-71.287279325,41.757331561],[-71.287192845,41.757401174],[-71.287118052,41.757445973],[-71.286967754,41.757473755],[-71.286827681,41.757549877],[-71.286798929,41.757599541],[-71.286843637,41.757730525],[-71.286882334,41.757850568],[-71.286912056,41.757969061],[-71.286954694,41.758107451],[-71.287012963,41.758183118],[-71.287142293,41.758243778],[-71.287301184,41.75831508],[-71.287425069,41.758406122],[-71.287509781,41.758530365],[-71.287521698,41.758639746],[-71.287499198,41.758747829],[-71.287420796,41.758849496],[-71.287316338,41.758859137],[-71.287145246,41.758828953],[-71.287065187,41.758784759],[-71.287016158,41.758703918],[-71.286966139,41.758682649],[-71.286806459,41.758720452],[-71.286635264,41.758721438],[-71.286487069,41.758740464],[-71.286321513,41.758763254],[-71.286151129,41.758768357],[-71.28600341,41.758800259],[-71.28588437,41.75886933],[-71.285769299,41.758956726],[-71.285638671,41.759020149],[-71.285492615,41.759056879],[-71.285406673,41.759110254],[-71.285406662,41.759110596],[-71.29251268,41.761594885]]]]}}"}, +{"type": "precinct", "typeId": 201, "areaId": 25675, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":14,\"NAME\":\"0201\",\"SHAPE_Length\":0.081831193324568,\"SHAPE_Area\":-0.00020872176402978},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.248821596,41.703501496],[-71.248849062,41.703539139],[-71.24890394,41.70363874],[-71.248956942,41.703710825],[-71.248969057,41.703710737],[-71.249121048,41.703658927],[-71.249281065,41.703662135],[-71.249364189,41.703694379],[-71.249922028,41.703845021],[-71.249959928,41.7038218],[-71.250240775,41.703900234],[-71.250270239,41.703959324],[-71.250344595,41.704128259],[-71.25041728,41.704224696],[-71.250437684,41.704219686],[-71.250448224,41.704248204],[-71.250433427,41.704255262],[-71.250492214,41.704394411],[-71.250498353,41.7044089],[-71.25049147,41.704460524],[-71.250497711,41.704519745],[-71.250543031,41.704582208],[-71.250599611,41.704652974],[-71.250629927,41.704705044],[-71.250644754,41.704785118],[-71.250644526,41.704852032],[-71.250645185,41.704910579],[-71.250643168,41.704982384],[-71.250653258,41.705056227],[-71.250674294,41.705109055],[-71.250708364,41.705161133],[-71.250745253,41.705218066],[-71.250775662,41.70527782],[-71.250805135,41.705334828],[-71.250842206,41.705407792],[-71.250869072,41.705484302],[-71.250871545,41.705539353],[-71.25086282,41.70559374],[-71.250868098,41.705649507],[-71.250892847,41.705705086],[-71.250926019,41.705760662],[-71.250965604,41.705807126],[-71.251035099,41.705868726],[-71.251070037,41.70591733],[-71.251116423,41.705988851],[-71.251184059,41.706049783],[-71.251237494,41.706089851],[-71.251310608,41.706138904],[-71.251374539,41.706203373],[-71.251416949,41.706253274],[-71.251459332,41.706302534],[-71.251498943,41.706350348],[-71.251548012,41.706414899],[-71.251559508,41.706448976],[-71.251582457,41.706504575],[-71.251585127,41.706579843],[-71.251604533,41.70665222],[-71.251642519,41.706725872],[-71.251677511,41.706776557],[-71.251721046,41.706843886],[-71.251766299,41.706900791],[-71.251832676,41.706932448],[-71.251910133,41.70695569],[-71.251974629,41.70698453],[-71.252032835,41.707030188],[-71.252071265,41.707059932],[-71.252115249,41.707081958],[-71.252161953,41.70711865],[-71.252183009,41.707174793],[-71.25220311,41.707233198],[-71.252215436,41.707297602],[-71.252224777,41.707360603],[-71.252237928,41.707416867],[-71.252247216,41.707477604],[-71.252250578,41.70753993],[-71.252276529,41.707593042],[-71.252339668,41.70762563],[-71.252403655,41.707652296],[-71.252466077,41.707696819],[-71.252510621,41.707740023],[-71.252553234,41.707785533],[-71.252594894,41.70783255],[-71.252646474,41.707879383],[-71.252706833,41.707920929],[-71.252771135,41.707960951],[-71.252831436,41.708001788],[-71.252886984,41.708048583],[-71.252944405,41.708092409],[-71.25299297,41.708137817],[-71.253037517,41.708180313],[-71.253066861,41.708208162],[-71.253101724,41.708261156],[-71.253138491,41.708311181],[-71.253190044,41.708357281],[-71.253241569,41.70840265],[-71.253283336,41.708454126],[-71.253325211,41.708509239],[-71.25335505,41.708559341],[-71.253385868,41.70860869],[-71.253450116,41.708647225],[-71.253486939,41.708698737],[-71.253541586,41.708750012],[-71.253600756,41.708783437],[-71.253668839,41.708816697],[-71.253716398,41.708862149],[-71.253711807,41.708921576],[-71.253722405,41.708943415],[-71.253723093,41.70894703],[-71.253714517,41.70895497],[-71.253735982,41.708984403],[-71.253817636,41.709092497],[-71.253859561,41.70915056],[-71.253943384,41.709266092],[-71.254013141,41.709372834],[-71.254068723,41.709467151],[-71.25413057,41.709575477],[-71.254191974,41.709663792],[-71.254252139,41.709740989],[-71.254295761,41.709786478],[-71.254335256,41.709826034],[-71.254345557,41.709821688],[-71.254363898,41.709821979],[-71.254386744,41.70982539],[-71.254413613,41.709830272],[-71.254442267,41.709831477],[-71.25446534,41.709839279],[-71.254526602,41.709877098],[-71.254552657,41.709935424],[-71.254583585,41.709988455],[-71.254614533,41.710044482],[-71.254643712,41.710107983],[-71.254677496,41.710156515],[-71.25471929,41.710209432],[-71.254757965,41.710255733],[-71.254808644,41.7103078],[-71.254845466,41.71036002],[-71.254885431,41.710420411],[-71.254917339,41.710472689],[-71.254954158,41.710525732],[-71.25500582,41.710576269],[-71.25503894,41.710638932],[-71.255068884,41.710694271],[-71.255096797,41.710745877],[-71.255116824,41.710800531],[-71.255081372,41.710853672],[-71.255099291,41.710900935],[-71.25516264,41.71094395],[-71.255220045,41.710984825],[-71.255271466,41.711026465],[-71.25531509,41.711071953],[-71.255361644,41.711117378],[-71.255422066,41.711159678],[-71.255476503,41.711202787],[-71.255534009,41.711249563],[-71.255565378,41.711267307],[-71.255593183,41.711282986],[-71.255651383,41.711315675],[-71.25571286,41.711361636],[-71.255762353,41.711404803],[-71.255817798,41.711447915],[-71.255874197,41.711488765],[-71.255904606,41.711518399],[-71.255926865,41.711540081],[-71.255978577,41.711593613],[-71.255983045,41.711598516],[-71.255986475,41.711635823],[-71.255969013,41.711653121],[-71.256000839,41.711703203],[-71.256023871,41.711697969],[-71.256066267,41.7117537],[-71.256054589,41.711758935],[-71.25614656,41.711884727],[-71.256216881,41.711972922],[-71.256235943,41.711984535],[-71.256302037,41.711971868],[-71.256333003,41.711983345],[-71.256402932,41.711965381],[-71.256448148,41.711993766],[-71.256498088,41.712056259],[-71.256524552,41.712087806],[-71.256568218,41.712090231],[-71.256620245,41.712157897],[-71.25667415,41.712221038],[-71.256718755,41.71226575],[-71.256767533,41.712320831],[-71.256805071,41.712361937],[-71.256849813,41.712411086],[-71.256889678,41.712466262],[-71.256939656,41.712486401],[-71.257016936,41.712486176],[-71.257087164,41.712526848],[-71.257147377,41.712560273],[-71.257207586,41.712595116],[-71.257238462,41.712646682],[-71.257237839,41.712706826],[-71.257249006,41.712764617],[-71.257282876,41.712815367],[-71.257341356,41.712863653],[-71.257416485,41.712899807],[-71.257481876,41.712944288],[-71.257489184,41.713005822],[-71.257513132,41.713057488],[-71.257570591,41.713101243],[-71.257630084,41.713148045],[-71.25766096,41.713199634],[-71.257718417,41.71324419],[-71.257761248,41.713298548],[-71.25779334,41.713359791],[-71.257842758,41.71339923],[-71.257881518,41.71344848],[-71.257911388,41.713500044],[-71.257977441,41.713531148],[-71.258017679,41.713512068],[-71.258074546,41.713486117],[-71.25814333,41.713505312],[-71.258187879,41.713549292],[-71.258207063,41.713609935],[-71.258224188,41.713666115],[-71.258248029,41.713714053],[-71.258195183,41.713742185],[-71.258117771,41.713736488],[-71.258047125,41.71376632],[-71.25802151,41.713817105],[-71.258025702,41.713871267],[-71.258013148,41.713930792],[-71.258062778,41.71397915],[-71.258098494,41.714026222],[-71.258034007,41.714065626],[-71.258026756,41.714094655],[-71.258100563,41.714117519],[-71.258146655,41.714140691],[-71.258158971,41.714180614],[-71.258163753,41.714196116],[-71.258225815,41.714225771],[-71.258294783,41.714253107],[-71.258350677,41.71429361],[-71.258351465,41.714293523],[-71.258896465,41.714232523],[-71.259091465,41.714208523],[-71.259563465,41.714141523],[-71.259791465,41.714109522],[-71.260791466,41.714009523],[-71.261134466,41.713970523],[-71.261618466,41.713867523],[-71.261792466,41.713809523],[-71.262407466,41.713791523],[-71.263454467,41.713739522],[-71.263692466,41.713709523],[-71.263882467,41.713681522],[-71.263928466,41.713675523],[-71.264131467,41.713646522],[-71.264392466,41.713608522],[-71.265229467,41.713360523],[-71.267538468,41.713096522],[-71.270118469,41.712817523],[-71.271212469,41.712695522],[-71.27411247,41.712368522],[-71.27577147,41.711892522],[-71.278260471,41.711456522],[-71.280522472,41.711034521],[-71.280502472,41.710705522],[-71.280449472,41.709967522],[-71.280418472,41.709531521],[-71.280372472,41.708744522],[-71.280347471,41.708372521],[-71.280342472,41.708295521],[-71.280312472,41.707845521],[-71.280304472,41.707719521],[-71.280258472,41.706945521],[-71.280251471,41.706846521],[-71.280205472,41.706221521],[-71.280195471,41.70604152],[-71.280159472,41.705362521],[-71.280136471,41.705052521],[-71.280060471,41.70411252],[-71.279442471,41.70416552],[-71.278641471,41.70425352],[-71.277718471,41.70434852],[-71.27718847,41.704394521],[-71.27532247,41.70455752],[-71.27469647,41.704601521],[-71.27400247,41.704664521],[-71.273254469,41.70471552],[-71.273003469,41.704738521],[-71.272286469,41.704780521],[-71.270462468,41.704915521],[-71.270218469,41.704937521],[-71.269768468,41.704973521],[-71.269493468,41.705001521],[-71.269013468,41.705047521],[-71.268105468,41.70515952],[-71.267468468,41.705229521],[-71.265945467,41.705450521],[-71.265511467,41.705476521],[-71.265388466,41.705488521],[-71.265312466,41.705498521],[-71.265144467,41.705546521],[-71.265068467,41.705575521],[-71.264976467,41.705617521],[-71.264760467,41.705739521],[-71.264488467,41.705893521],[-71.264404467,41.705935521],[-71.264305466,41.705977521],[-71.264236466,41.706001521],[-71.264160466,41.706021521],[-71.264046466,41.706045521],[-71.262085466,41.706305522],[-71.261765465,41.706342521],[-71.261696466,41.706348521],[-71.261261465,41.706411521],[-71.260880466,41.706441522],[-71.260506465,41.706439522],[-71.260323465,41.706456521],[-71.260163465,41.706482522],[-71.260103465,41.706497522],[-71.259987465,41.706526521],[-71.259910465,41.706555522],[-71.259804465,41.706584521],[-71.259392465,41.706655522],[-71.258957465,41.706713522],[-71.258598465,41.706756522],[-71.257973465,41.706840521],[-71.257339464,41.706916521],[-71.257309464,41.706709522],[-71.257294464,41.706656522],[-71.257286464,41.706606521],[-71.257256464,41.706503522],[-71.257202464,41.706396521],[-71.257164464,41.706361522],[-71.257118464,41.706308522],[-71.257004464,41.706224522],[-71.256950464,41.706199521],[-71.256889464,41.706177521],[-71.256805463,41.706156521],[-71.256661464,41.706141521],[-71.256569464,41.706138521],[-71.255859464,41.706215521],[-71.255341464,41.706284522],[-71.255226463,41.706291521],[-71.255081463,41.706307522],[-71.255020463,41.706299521],[-71.254967464,41.706301522],[-71.254913464,41.706297521],[-71.254791463,41.706250521],[-71.254730463,41.706220521],[-71.254593463,41.706137521],[-71.254501463,41.706030522],[-71.254471463,41.705968521],[-71.254456463,41.705946521],[-71.254448463,41.705883521],[-71.254448463,41.705833522],[-71.254478463,41.705675521],[-71.254517463,41.705620522],[-71.254563463,41.705565522],[-71.254661463,41.705482521],[-71.255020463,41.705196522],[-71.255112463,41.705055521],[-71.255165464,41.704937521],[-71.255203464,41.704792521],[-71.255234463,41.704638521],[-71.255226463,41.704557521],[-71.255234463,41.704481521],[-71.255211463,41.704395521],[-71.255020463,41.703827521],[-71.254944463,41.703572521],[-71.254616463,41.70250752],[-71.254486463,41.70258652],[-71.254211463,41.70274052],[-71.254150463,41.70275952],[-71.254051463,41.702783521],[-71.253929463,41.70279952],[-71.253380463,41.702887521],[-71.252853462,41.702960521],[-71.251800462,41.703129521],[-71.251251462,41.703208521],[-71.250977462,41.703254521],[-71.250885462,41.703264521],[-71.250076462,41.703379521],[-71.249992462,41.703386521],[-71.249603462,41.703416521],[-71.249176462,41.703437521],[-71.248821596,41.703501496]]]]}}"}, +{"type": "precinct", "typeId": 202, "areaId": 25668, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":7,\"NAME\":\"0202\",\"SHAPE_Length\":0.041160580435367,\"SHAPE_Area\":-5.5492820780437e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.269379466,41.666578514],[-71.269539466,41.666994513],[-71.270012466,41.668223513],[-71.270302466,41.668978514],[-71.270538466,41.669622514],[-71.270622467,41.669854514],[-71.270874467,41.670516514],[-71.271187467,41.671307514],[-71.271240467,41.671472514],[-71.271248467,41.671485514],[-71.271492467,41.672179515],[-71.271553467,41.672326514],[-71.271652467,41.672603515],[-71.271843467,41.673104514],[-71.272034468,41.673609514],[-71.272232467,41.674109515],[-71.272461468,41.674717514],[-71.273361468,41.674533515],[-71.273392468,41.674532515],[-71.274132468,41.674369514],[-71.275101468,41.674183515],[-71.276360469,41.673924514],[-71.277183469,41.673759515],[-71.277717469,41.673659515],[-71.278267469,41.673544515],[-71.27890047,41.673428515],[-71.278883469,41.673276514],[-71.278814469,41.672855514],[-71.278738469,41.672526514],[-71.278668469,41.672255514],[-71.278593469,41.672011514],[-71.278496469,41.671720514],[-71.27845047,41.671595514],[-71.278320469,41.671206514],[-71.278068469,41.670531514],[-71.277908469,41.670088514],[-71.278443916,41.669972634],[-71.278431605,41.669934125],[-71.278507391,41.669918652],[-71.278511801,41.669851356],[-71.278582249,41.669835849],[-71.27866165,41.669815763],[-71.279242568,41.669725357],[-71.279215737,41.669669139],[-71.279180963,41.669607576],[-71.279110769,41.669397021],[-71.279014426,41.669421672],[-71.278665843,41.669491119],[-71.278635108,41.669461535],[-71.278655869,41.6694377],[-71.278637955,41.669378251],[-71.278611965,41.669326059],[-71.278599638,41.669318625],[-71.278574006,41.669321846],[-71.27845894,41.669336261],[-71.278368946,41.669350289],[-71.278079326,41.669400157],[-71.278048085,41.669340614],[-71.278013858,41.669235669],[-71.278136966,41.669206566],[-71.277901508,41.668646156],[-71.277987176,41.66862144],[-71.277966063,41.66853461],[-71.27805782,41.668521958],[-71.278753219,41.668379702],[-71.278684929,41.668228519],[-71.278061655,41.668364648],[-71.278033268,41.668291091],[-71.277979274,41.668134035],[-71.278078386,41.668102095],[-71.278612287,41.668003323],[-71.278581968,41.667941769],[-71.278557405,41.667846906],[-71.27846027,41.667862864],[-71.278432143,41.667837997],[-71.278385645,41.667789653],[-71.278331036,41.667749275],[-71.278274645,41.667712872],[-71.278224539,41.667667152],[-71.27819763,41.667616284],[-71.278169958,41.667556725],[-71.278146657,41.667503234],[-71.278110835,41.667454316],[-71.278057999,41.667413255],[-71.278023944,41.667364981],[-71.278003292,41.667312845],[-71.277985499,41.667245369],[-71.277967666,41.667180569],[-71.277945291,41.667123741],[-71.277924609,41.667071605],[-71.277937871,41.667011004],[-71.277997819,41.666979469],[-71.278073751,41.666955992],[-71.278112513,41.666912272],[-71.278107156,41.666846924],[-71.278090115,41.666791456],[-71.278072244,41.666728645],[-71.278058858,41.666594537],[-71.277660673,41.666653639],[-71.277591079,41.666669787],[-71.277436058,41.666694666],[-71.277425407,41.6666259],[-71.277411945,41.666567146],[-71.277421112,41.666544546],[-71.277566501,41.666508968],[-71.277548113,41.666419468],[-71.277656899,41.666394248],[-71.277774585,41.666370463],[-71.278361814,41.66627207],[-71.278329652,41.666214514],[-71.27828377,41.666048829],[-71.278200993,41.666058869],[-71.277469973,41.666207547],[-71.277428432,41.66611926],[-71.277326033,41.666132509],[-71.277213764,41.666150998],[-71.276668232,41.66625635],[-71.276625269,41.666209362],[-71.276569779,41.666168959],[-71.27648932,41.666134361],[-71.276468837,41.666123647],[-71.277131468,41.666672513],[-71.276999468,41.666705513],[-71.276710469,41.666775513],[-71.276069468,41.666896513],[-71.275276468,41.667083513],[-71.274575467,41.667227513],[-71.273804468,41.667418514],[-71.273109467,41.667567513],[-71.272667467,41.667666513],[-71.272431467,41.667017513],[-71.272049467,41.666030513],[-71.271515466,41.666135513],[-71.270416467,41.666359513],[-71.269814466,41.666479513],[-71.269379466,41.666578514]]]]}}"}, +{"type": "precinct", "typeId": 203, "areaId": 25667, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":6,\"NAME\":\"0203\",\"SHAPE_Length\":0.22184482312016,\"SHAPE_Area\":-0.00074899955206303},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.280060471,41.70411252],[-71.280136471,41.705052521],[-71.280159472,41.705362521],[-71.280195471,41.70604152],[-71.280205472,41.706221521],[-71.280251471,41.706846521],[-71.280258472,41.706945521],[-71.280304472,41.707719521],[-71.280312472,41.707845521],[-71.280342472,41.708295521],[-71.280347471,41.708372521],[-71.280372472,41.708744522],[-71.280418472,41.709531521],[-71.280449472,41.709967522],[-71.280502472,41.710705522],[-71.280522472,41.711034521],[-71.286763474,41.710508521],[-71.286834474,41.710506521],[-71.291164476,41.710412521],[-71.291164908,41.710412502],[-71.291164934,41.710412481],[-71.291223556,41.710376843],[-71.291273104,41.710334625],[-71.291320724,41.710293936],[-71.291365164,41.710245854],[-71.291365758,41.710185],[-71.291326578,41.710116459],[-71.291308102,41.710044685],[-71.29133413,41.709970888],[-71.291347364,41.709898714],[-71.291346049,41.709843071],[-71.291336564,41.709774904],[-71.291329276,41.709716369],[-71.291345523,41.709647105],[-71.291377774,41.709558674],[-71.291321342,41.70949896],[-71.291293321,41.709443658],[-71.291264508,41.70939725],[-71.291180533,41.709270425],[-71.291114858,41.709137733],[-71.291094584,41.709074395],[-71.291079965,41.709018042],[-71.291064459,41.708962373],[-71.291048779,41.708894194],[-71.291021156,41.708838595],[-71.291001926,41.708782965],[-71.291002926,41.708709763],[-71.291025399,41.708640579],[-71.291043246,41.708576349],[-71.291073239,41.708512736],[-71.291120869,41.708449681],[-71.291173191,41.708389402],[-71.291200468,41.708334863],[-71.291169081,41.708273059],[-71.291147985,41.708218798],[-71.291138035,41.708162407],[-71.291125066,41.708086504],[-71.291107553,41.708019008],[-71.291083587,41.707955732],[-71.291046395,41.7078772],[-71.291056822,41.70781442],[-71.291085983,41.707762629],[-71.291093661,41.707700553],[-71.291079094,41.707646944],[-71.291067207,41.707585702],[-71.291054359,41.707519564],[-71.291036941,41.707460416],[-71.291021407,41.707404061],[-71.291010272,41.707327475],[-71.290997077,41.70722717],[-71.290998923,41.707146994],[-71.291026904,41.707072926],[-71.291013111,41.707006809],[-71.290991998,41.706948409],[-71.290965294,41.706892079],[-71.290943983,41.706819751],[-71.290941944,41.70672356],[-71.290978601,41.706675212],[-71.291052701,41.706646166],[-71.291099021,41.706629167],[-71.291157252,41.706600206],[-71.291186001,41.706590219],[-71.291186753,41.706574898],[-71.291141532,41.706525693],[-71.291109556,41.706495219],[-71.291070015,41.706454371],[-71.290893919,41.706183646],[-71.290863399,41.706118322],[-71.290850647,41.706060577],[-71.290854498,41.705992915],[-71.290853783,41.705930869],[-71.290865158,41.705867405],[-71.290878486,41.705813641],[-71.290904697,41.705748649],[-71.290912375,41.705686528],[-71.290909795,41.70562592],[-71.290920727,41.705604946],[-71.290989258,41.705580075],[-71.291053224,41.705560844],[-71.291062221,41.705534309],[-71.291004864,41.705482406],[-71.290989477,41.705437189],[-71.29100403,41.705409909],[-71.291045208,41.705350387],[-71.291087424,41.705299946],[-71.291127449,41.705219497],[-71.2911854,41.705163367],[-71.291225754,41.705112922],[-71.291270628,41.705051989],[-71.291335274,41.705011148],[-71.291375012,41.704990683],[-71.291370112,41.704967714],[-71.291305385,41.704920714],[-71.291246266,41.704875806],[-71.291182434,41.704825333],[-71.29112871,41.704763648],[-71.291092561,41.704693466],[-71.291062813,41.704616297],[-71.291048175,41.704556422],[-71.291033466,41.704490303],[-71.291016993,41.704431866],[-71.290996745,41.704370654],[-71.291013119,41.704337112],[-71.291070361,41.70430186],[-71.291064705,41.704295629],[-71.291031483,41.704235881],[-71.290943189,41.70407822],[-71.290919216,41.704017756],[-71.290895133,41.703944005],[-71.290876552,41.703867451],[-71.29086745,41.703804087],[-71.290863062,41.703745557],[-71.290864114,41.703675168],[-71.290863328,41.703606856],[-71.290870134,41.703550336],[-71.29089371,41.703497894],[-71.290948923,41.703448071],[-71.291016398,41.703409271],[-71.291085676,41.70336981],[-71.29115416,41.70334009],[-71.291170793,41.703330264],[-71.29113666,41.703269119],[-71.291104446,41.703218451],[-71.291073055,41.703158728],[-71.291043409,41.70308778],[-71.291027875,41.703031425],[-71.29101229,41.70297228],[-71.291001402,41.702913806],[-71.291002406,41.702839209],[-71.291018417,41.702776394],[-71.291047603,41.702725288],[-71.291091625,41.702672724],[-71.291135867,41.702636922],[-71.291116659,41.702584746],[-71.291095301,41.702508233],[-71.291086108,41.70243508],[-71.291082426,41.702356335],[-71.291080789,41.702296415],[-71.291079133,41.702232973],[-71.29108645,41.702140915],[-71.291109924,41.701997179],[-71.291140231,41.701882683],[-71.291161027,41.701830968],[-71.291173388,41.701773703],[-71.291344355,41.701758668],[-71.291397817,41.701636347],[-71.291344939,41.701322989],[-71.291442474,41.701311206],[-71.291531406,41.70095861],[-71.291648602,41.700395373],[-71.291670006,41.700315758],[-71.291711023,41.700323859],[-71.291716201,41.700288971],[-71.291689184,41.700282861],[-71.291718975,41.700204634],[-71.291800284,41.699915487],[-71.29183269,41.699821187],[-71.291872002,41.699761707],[-71.291878702,41.699699629],[-71.291852872,41.699637722],[-71.291864243,41.699574943],[-71.291876581,41.699514888],[-71.29188979,41.699449987],[-71.29189918,41.699376754],[-71.291916934,41.699302759],[-71.291917916,41.699225348],[-71.291908642,41.699148765],[-71.291894077,41.699095157],[-71.291886013,41.699040828],[-71.2918852,41.698971144],[-71.291884558,41.698914702],[-71.291895931,41.698851192],[-71.29192315,41.698794526],[-71.291965361,41.698744084],[-71.291992215,41.698734139],[-71.29205052,41.69870799],[-71.292029879,41.698693454],[-71.292002214,41.698633007],[-71.29199033,41.698571032],[-71.29198674,41.698501366],[-71.291986122,41.698446982],[-71.29198432,41.698371717],[-71.291979687,41.698294388],[-71.291951528,41.698188636],[-71.292072526,41.697872757],[-71.29213293,41.697867515],[-71.292148492,41.697848561],[-71.292144058,41.697785206],[-71.292133168,41.697727373],[-71.292130517,41.69765979],[-71.292129847,41.697602616],[-71.292145009,41.697546819],[-71.292183449,41.697492163],[-71.292221135,41.697453582],[-71.292211115,41.697390925],[-71.292212239,41.697326093],[-71.29222456,41.697261899],[-71.292228411,41.697193527],[-71.292220273,41.697133664],[-71.292218711,41.697078592],[-71.292208686,41.697017307],[-71.292189407,41.696958888],[-71.292186813,41.696892677],[-71.292187928,41.696830635],[-71.292192775,41.696765809],[-71.292204093,41.696700172],[-71.292223003,41.696645686],[-71.292252424,41.696615529],[-71.292240994,41.696592594],[-71.292178378,41.696565106],[-71.292177612,41.696499607],[-71.292176847,41.696434086],[-71.292176112,41.696368564],[-71.292179993,41.696300215],[-71.292188532,41.696235351],[-71.292189751,41.696178866],[-71.292188142,41.696119655],[-71.292186551,41.696063874],[-71.292198794,41.695995495],[-71.292326523,41.695862215],[-71.29232836,41.695860115],[-71.29232939,41.695834046],[-71.292383734,41.695824242],[-71.292400781,41.695770438],[-71.292411188,41.695703473],[-71.292414218,41.69564347],[-71.2924135,41.695582134],[-71.292410873,41.695516655],[-71.292398994,41.695453285],[-71.292389889,41.695390607],[-71.292389108,41.695320192],[-71.292391126,41.695252571],[-71.292410949,41.695198796],[-71.292466211,41.695150322],[-71.29246834,41.695095256],[-71.292470726,41.69497952],[-71.29247567,41.694922356],[-71.292500157,41.694869892],[-71.292485544,41.694812121],[-71.292461504,41.69474466],[-71.292465235,41.694665928],[-71.292484967,41.694602341],[-71.292490803,41.694543075],[-71.292488977,41.694465682],[-71.292489183,41.694401558],[-71.292492172,41.694335311],[-71.292498849,41.694270443],[-71.292499077,41.694209108],[-71.292498287,41.694141528],[-71.292498296,41.694062721],[-71.292497297,41.693974925],[-71.292496315,41.693891267],[-71.29249548,41.693818771],[-71.292494788,41.693758852],[-71.292494896,41.693687066],[-71.292502567,41.693626362],[-71.292531772,41.69357736],[-71.292549099,41.693550086],[-71.292538713,41.693534813],[-71.292511404,41.693506406],[-71.29251255,41.693444341],[-71.292521242,41.693388533],[-71.292528016,41.693331327],[-71.292541342,41.693276877],[-71.292558318,41.693216121],[-71.292580945,41.693163014],[-71.292566447,41.693117089],[-71.292544247,41.693046818],[-71.292562048,41.692976299],[-71.292557517,41.692905236],[-71.292552185,41.692846018],[-71.292549603,41.69278541],[-71.292547078,41.692726151],[-71.292544331,41.692650221],[-71.292548253,41.692588138],[-71.292569943,41.692532239],[-71.292600084,41.692486029],[-71.292538299,41.692448115],[-71.29252458,41.692387532],[-71.292532062,41.692309447],[-71.292544226,41.692236837],[-71.292555497,41.692166374],[-71.292578154,41.692113244],[-71.292574562,41.692044287],[-71.292580347,41.691981499],[-71.292592658,41.691920072],[-71.292609655,41.691862106],[-71.292630209,41.691789488],[-71.29264902,41.691727317],[-71.292666888,41.691664505],[-71.292681979,41.691601688],[-71.292695302,41.691547923],[-71.292700122,41.691481657],[-71.292689165,41.691416186],[-71.292679939,41.691343788],[-71.292674418,41.691267121],[-71.292665193,41.691194677],[-71.292661579,41.69112293],[-71.292657214,41.691066504],[-71.29265186,41.691004473],[-71.292644619,41.690941089],[-71.292633677,41.690880512],[-71.292622759,41.690822039],[-71.292613733,41.690763546],[-71.292606559,41.690707846],[-71.292601932,41.690628391],[-71.292601193,41.690564264],[-71.29258924,41.690495337],[-71.292572655,41.690425053],[-71.292569546,41.690366914],[-71.292569086,41.690358177],[-71.292569191,41.69028774],[-71.292572294,41.690233386],[-71.292582576,41.690157319],[-71.29260047,41.690095879],[-71.292638946,41.690047511],[-71.292665656,41.690024324],[-71.29265401,41.689983276],[-71.292639126,41.689981991],[-71.292625933,41.689966736],[-71.292642217,41.689846039],[-71.292650707,41.68977699],[-71.29265004,41.68971842],[-71.292650216,41.689654296],[-71.292655036,41.689588029],[-71.292667261,41.689514778],[-71.292684092,41.689442176],[-71.292699102,41.689375837],[-71.292710498,41.689313745],[-71.292720075,41.689257915],[-71.292732287,41.689188849],[-71.292736191,41.689122582],[-71.292735542,41.689068243],[-71.292736644,41.689000598],[-71.292740462,41.688951573],[-71.29274148,41.68893854],[-71.292746395,41.688880644],[-71.292755854,41.688813677],[-71.292769806,41.688734803],[-71.292779415,41.688678288],[-71.29279436,41.688603601],[-71.292807592,41.688540094],[-71.292819975,41.688484224],[-71.292831412,41.688428398],[-71.292845554,41.688366288],[-71.292874567,41.688299906],[-71.29290449,41.688235537],[-71.292929002,41.688183805],[-71.292956229,41.688122976],[-71.292978806,41.688065684],[-71.293003288,41.688013929],[-71.293049237,41.687965575],[-71.293082933,41.68790398],[-71.293110179,41.687846651],[-71.293147621,41.687787144],[-71.293183221,41.687731155],[-71.293218947,41.687683537],[-71.293243407,41.687628993],[-71.293243316,41.68761925],[-71.29328577,41.6875477],[-71.293390921,41.687370538],[-71.293430642,41.687323522],[-71.293701609,41.68693601],[-71.293797539,41.686798807],[-71.293846375,41.686734472],[-71.293888907,41.686676094],[-71.294140558,41.686403212],[-71.29420433,41.686352351],[-71.294329164,41.686268096],[-71.294351064,41.686260039],[-71.294469163,41.686230932],[-71.294539587,41.686218091],[-71.294731255,41.68618477],[-71.294868774,41.686140421],[-71.294953895,41.686091701],[-71.295041912,41.686024302],[-71.295150089,41.685910401],[-71.295194424,41.685850723],[-71.295236149,41.685786351],[-71.295271645,41.685723936],[-71.295341641,41.685605118],[-71.295385978,41.685544753],[-71.295442986,41.685538497],[-71.29548214,41.685534794],[-71.295487963,41.685497481],[-71.295432362,41.685463765],[-71.295435257,41.685445749],[-71.295464903,41.685390275],[-71.295505505,41.685333746],[-71.295537226,41.685268465],[-71.295577755,41.685196568],[-71.295636956,41.685075992],[-71.295643795,41.68506457],[-71.29581998,41.68481291],[-71.295899231,41.684699711],[-71.295941794,41.684640029],[-71.296189432,41.684328441],[-71.296229148,41.684281378],[-71.296287809,41.684215138],[-71.29634642,41.684155096],[-71.296431108,41.684068343],[-71.296543738,41.683952984],[-71.296884591,41.683586056],[-71.29692788,41.683537695],[-71.296995495,41.683466142],[-71.297299717,41.683182323],[-71.297392181,41.683114977],[-71.297477632,41.683036914],[-71.297717466,41.682787056],[-71.297859303,41.682666442],[-71.297911167,41.682616838],[-71.298094918,41.682467459],[-71.298108464,41.682457397],[-71.298167611,41.682419813],[-71.298331698,41.682314971],[-71.298396976,41.682287437],[-71.298524129,41.682218343],[-71.298625787,41.682127044],[-71.298742835,41.682060128],[-71.298835753,41.682022556],[-71.298945964,41.681985975],[-71.298987035,41.681972966],[-71.299005433,41.681923075],[-71.299003223,41.681888378],[-71.298928452,41.681780716],[-71.298824957,41.681707788],[-71.298759021,41.681672569],[-71.298575179,41.681627331],[-71.298505283,41.681600154],[-71.298376143,41.681543898],[-71.298273041,41.681541179],[-71.298206599,41.681521372],[-71.298162923,41.681528408],[-71.298156008,41.68158367],[-71.298223863,41.681629505],[-71.298282311,41.681649916],[-71.298314309,41.681650818],[-71.298346107,41.681667042],[-71.298349436,41.681685046],[-71.298271178,41.681756512],[-71.298253111,41.681778389],[-71.298213086,41.681778754],[-71.298138906,41.681736224],[-71.29810591,41.681673984],[-71.298071267,41.681601771],[-71.298019607,41.681537395],[-71.297951841,41.681482893],[-71.29786454,41.681431695],[-71.297808838,41.681401661],[-71.297746194,41.681347991],[-71.297692409,41.681310163],[-71.297613512,41.681264217],[-71.297530967,41.681223661],[-71.297452312,41.68117863],[-71.297404859,41.681134981],[-71.297360147,41.681083309],[-71.297318117,41.681032328],[-71.297277859,41.68098071],[-71.2972421,41.680924457],[-71.297215315,41.680866299],[-71.297197386,41.680805481],[-71.29718125,41.680746724],[-71.297165929,41.680690576],[-71.297140165,41.680618378],[-71.297116841,41.680565555],[-71.29706321,41.680517846],[-71.296972605,41.680509179],[-71.29691267,41.680535418],[-71.296862159,41.680591725],[-71.296836496,41.680652214],[-71.296846448,41.680708284],[-71.296841258,41.680767575],[-71.296830739,41.680824181],[-71.296776542,41.680810569],[-71.296694033,41.680759219],[-71.29660422,41.680750964],[-71.296514282,41.680772371],[-71.296438752,41.680791081],[-71.296376337,41.680820289],[-71.296307522,41.68084713],[-71.29625616,41.680902085],[-71.296227815,41.680961884],[-71.296198824,41.681003683],[-71.296152463,41.680943386],[-71.29611309,41.680891769],[-71.296042951,41.680883892],[-71.295961697,41.68090863],[-71.295885868,41.680925418],[-71.295832425,41.680914483],[-71.295818463,41.680911623],[-71.29576648,41.680873247],[-71.295715054,41.680861561],[-71.295661251,41.680897164],[-71.295619447,41.68096819],[-71.295584679,41.681042637],[-71.295549932,41.681119713],[-71.295526038,41.681180205],[-71.295500304,41.681243393],[-71.295476403,41.681305852],[-71.295455251,41.681357727],[-71.295442273,41.681400287],[-71.295458845,41.681427073],[-71.295403996,41.681474704],[-71.295367575,41.68154112],[-71.295346295,41.681604292],[-71.295400043,41.68164402],[-71.295467079,41.681687843],[-71.295495896,41.681730019],[-71.295467315,41.681738476],[-71.295387427,41.681726579],[-71.295295338,41.681694604],[-71.295218777,41.681701374],[-71.295177932,41.681767759],[-71.295179009,41.681822441],[-71.295193335,41.681883871],[-71.295211224,41.681947342],[-71.295224666,41.68200877],[-71.295231039,41.682067486],[-71.295250745,41.682125632],[-71.295280241,41.682184481],[-71.29531323,41.682248071],[-71.295339966,41.682311581],[-71.29535694,41.68237505],[-71.295375758,41.682434521],[-71.295398074,41.682496673],[-71.295413279,41.682560117],[-71.295400923,41.682618114],[-71.295401757,41.682692143],[-71.295421397,41.682761563],[-71.295402793,41.682827417],[-71.29539644,41.682906693],[-71.295398357,41.682966065],[-71.29540561,41.683026087],[-71.295416446,41.683082181],[-71.29543257,41.6831443],[-71.29542012,41.683212885],[-71.295421928,41.683277586],[-71.295438935,41.683340346],[-71.295477312,41.68339864],[-71.295501507,41.68345549],[-71.295501217,41.683479456],[-71.295443258,41.683420396],[-71.295389552,41.683376666],[-71.295355995,41.683318679],[-71.295338304,41.68324048],[-71.295324127,41.683170383],[-71.295295637,41.683092211],[-71.29527424,41.683038271],[-71.295263688,41.682960085],[-71.295253022,41.682927729],[-71.295235194,41.682873794],[-71.295144613,41.682846899],[-71.295064645,41.68284033],[-71.29498728,41.682840443],[-71.294896585,41.682839778],[-71.294825534,41.682830618],[-71.294809672,41.682820528],[-71.294846537,41.682787433],[-71.294921575,41.682761313],[-71.295020414,41.682752662],[-71.295108455,41.682753299],[-71.295184129,41.682747831],[-71.295222593,41.682730107],[-71.295205541,41.682671989],[-71.295188489,41.682613848],[-71.295177816,41.682545107],[-71.295167112,41.682476389],[-71.29515287,41.682407595],[-71.295130627,41.682341441],[-71.295102946,41.682277907],[-71.295077934,41.682219042],[-71.295054623,41.68216288],[-71.295021759,41.682088656],[-71.294989529,41.682035748],[-71.294933166,41.681993339],[-71.294870469,41.681956888],[-71.294845743,41.681942711],[-71.294916404,41.681911209],[-71.294936568,41.681863357],[-71.294929635,41.6817793],[-71.294942045,41.681714053],[-71.294964214,41.681649533],[-71.294991726,41.681583764],[-71.295026301,41.681522651],[-71.295065175,41.681471607],[-71.29512728,41.681415391],[-71.295173373,41.681358369],[-71.295174229,41.68129038],[-71.295173158,41.681233685],[-71.295179308,41.681170394],[-71.295191758,41.681101809],[-71.29520506,41.681033911],[-71.295212098,41.680969295],[-71.29521106,41.680911937],[-71.295187788,41.680853122],[-71.295116089,41.680827289],[-71.295022752,41.680823943],[-71.294940771,41.680837336],[-71.29485025,41.680821395],[-71.294773255,41.680792167],[-71.294694421,41.680765567],[-71.294622764,41.680736395],[-71.294537021,41.680695123],[-71.294485395,41.680631385],[-71.294461124,41.680579886],[-71.294431616,41.680525016],[-71.294396825,41.680462749],[-71.294362189,41.680389849],[-71.294332939,41.680311607],[-71.294310836,41.680230793],[-71.294289607,41.680153297],[-71.294268308,41.680078476],[-71.294248721,41.680012349],[-71.29423432,41.679955562],[-71.29421454,41.679902081],[-71.294184929,41.679851213],[-71.294145548,41.679802911],[-71.2940824,41.679736477],[-71.294042952,41.679690187],[-71.293978651,41.679641041],[-71.293907557,41.679636545],[-71.293837781,41.679668734],[-71.293751384,41.679680105],[-71.293658252,41.679660751],[-71.293579253,41.679648191],[-71.293517804,41.679585076],[-71.293474896,41.679533451],[-71.293438137,41.67948584],[-71.293413214,41.679418994],[-71.293426676,41.679339754],[-71.293450537,41.679280588],[-71.293477963,41.679222778],[-71.293512462,41.679166353],[-71.293545111,41.679115917],[-71.293573623,41.679042786],[-71.293595669,41.678988283],[-71.293643153,41.678963303],[-71.293689246,41.678972945],[-71.293760571,41.679028783],[-71.293805288,41.67907778],[-71.293852727,41.679124153],[-71.2939127,41.679162544],[-71.293977249,41.679191017],[-71.294064873,41.679224998],[-71.294133072,41.679247486],[-71.294207861,41.679240713],[-71.294270452,41.679213817],[-71.294348138,41.679188365],[-71.294425739,41.679170254],[-71.294490981,41.679144072],[-71.294537838,41.679095695],[-71.294505645,41.679041483],[-71.294462989,41.678967837],[-71.294430796,41.678913625],[-71.294400298,41.678863372],[-71.294364456,41.678815123],[-71.294310143,41.67875273],[-71.294275393,41.678687147],[-71.294245934,41.678626925],[-71.29421455,41.678577357],[-71.294159964,41.678533648],[-71.294100879,41.678494573],[-71.294122483,41.678473366],[-71.294219307,41.67848207],[-71.294298597,41.678469977],[-71.29439069,41.67843195],[-71.294463958,41.678404478],[-71.2945363,41.67838032],[-71.294605907,41.678362835],[-71.294703988,41.67834085],[-71.294805675,41.678316904],[-71.294878696,41.678309442],[-71.294956095,41.678306699],[-71.295030799,41.678307198],[-71.295109926,41.678307773],[-71.295188204,41.678307021],[-71.295292339,41.678299728],[-71.295377845,41.678289704],[-71.295450191,41.678264196],[-71.295469583,41.678209024],[-71.295475581,41.678155041],[-71.295478279,41.678083053],[-71.29545657,41.678041552],[-71.295360788,41.678021554],[-71.295274804,41.677999584],[-71.295185449,41.677963611],[-71.295088071,41.677927602],[-71.294987115,41.677894216],[-71.294909998,41.677875645],[-71.294830071,41.67786775],[-71.294754446,41.677869193],[-71.294653004,41.677873814],[-71.294559791,41.677861802],[-71.294478181,41.677845899],[-71.294409179,41.677817395],[-71.294350251,41.677767617],[-71.294305459,41.677723331],[-71.294245926,41.677719542],[-71.294150662,41.677728885],[-71.294149142,41.677708186],[-71.294225098,41.677679392],[-71.294266328,41.677654356],[-71.294232379,41.677596093],[-71.294201071,41.677541882],[-71.294173387,41.677480337],[-71.294155491,41.677419542],[-71.294139248,41.677366776],[-71.294134926,41.677287389],[-71.294116913,41.677234597],[-71.294071564,41.677164262],[-71.294049251,41.677102086],[-71.294055401,41.677038841],[-71.294087367,41.676972371],[-71.294132692,41.676906681],[-71.294183082,41.676859706],[-71.294190795,41.676813112],[-71.294227777,41.676771351],[-71.294264713,41.6767343],[-71.294260991,41.67667696],[-71.294244013,41.67661548],[-71.294217092,41.676563313],[-71.294150663,41.676541491],[-71.294070942,41.676517564],[-71.29398416,41.676488296],[-71.293910709,41.676459097],[-71.293831067,41.676429179],[-71.293739787,41.676404545],[-71.293653809,41.67638191],[-71.2935759,41.676354007],[-71.293500671,41.676327458],[-71.293436973,41.676300998],[-71.293323055,41.676239527],[-71.29327116,41.676194472],[-71.293241619,41.676141614],[-71.293214822,41.676079407],[-71.293207565,41.676021352],[-71.293217636,41.676000765],[-71.293268707,41.675969777],[-71.29333567,41.675948264],[-71.293397879,41.675934814],[-71.293419898,41.675936088],[-71.293438819,41.675942937],[-71.29346205,41.675956541],[-71.293473562,41.675971747],[-71.293487848,41.675997066],[-71.293493433,41.676034353],[-71.293481602,41.676080642],[-71.29343306,41.676188977],[-71.293435452,41.676213681],[-71.293498203,41.676240802],[-71.293572779,41.676251982],[-71.293889969,41.676343616],[-71.293978642,41.67636294],[-71.29405138,41.676376792],[-71.294119621,41.676394592],[-71.294178743,41.676431014],[-71.294239673,41.676464787],[-71.294311603,41.676473972],[-71.294328501,41.676474093],[-71.294368212,41.676427717],[-71.294415913,41.676382064],[-71.294460071,41.676337685],[-71.294522622,41.676312801],[-71.294595972,41.676277988],[-71.294643659,41.676236314],[-71.294689638,41.676185329],[-71.294732954,41.676136946],[-71.294748819,41.676078406],[-71.29475292,41.676035785],[-71.294798137,41.675974737],[-71.294845995,41.67591774],[-71.294893048,41.675854774],[-71.294931145,41.675797691],[-71.294953031,41.675754508],[-71.294999595,41.675730212],[-71.295077192,41.675712101],[-71.295166272,41.675699384],[-71.295256963,41.675698013],[-71.295349439,41.675701357],[-71.295428565,41.675701246],[-71.295501909,41.675667782],[-71.295576301,41.67562165],[-71.295643455,41.675587465],[-71.29569193,41.675547141],[-71.295728212,41.675494698],[-71.29577338,41.675439023],[-71.295830946,41.675388767],[-71.295850127,41.675371238],[-71.295886715,41.675337822],[-71.295930994,41.675283472],[-71.295972677,41.675220473],[-71.296014307,41.675164768],[-71.29604788,41.675110353],[-71.296087667,41.675058602],[-71.296118538,41.675009488],[-71.296123888,41.674938214],[-71.29611928,41.674880827],[-71.296125311,41.674825517],[-71.296142136,41.67476165],[-71.296170443,41.674703841],[-71.296197109,41.674634023],[-71.296219276,41.674568839],[-71.296243211,41.674504344],[-71.296258871,41.674461812],[-71.296244936,41.674441022],[-71.296200348,41.674380728],[-71.296167245,41.674325143],[-71.2961359,41.674272923],[-71.296092955,41.674223929],[-71.296009539,41.674211317],[-71.29592975,41.67419009],[-71.295879534,41.674154394],[-71.29591089,41.674135308],[-71.29598736,41.674135192],[-71.296067278,41.674144436],[-71.296151734,41.674146347],[-71.296180685,41.674106537],[-71.29618077,41.674031206],[-71.296151839,41.673996988],[-71.296199565,41.67395202],[-71.296284472,41.673917272],[-71.296340111,41.673877692],[-71.296391819,41.673866052],[-71.296450448,41.673942471],[-71.296515636,41.673989605],[-71.296586512,41.674012783],[-71.296658294,41.674029307],[-71.296727733,41.674024467],[-71.296765792,41.673968756],[-71.296805703,41.673906348],[-71.296878197,41.673870869],[-71.296927573,41.673834548],[-71.296928062,41.673795237],[-71.296945129,41.673780654],[-71.297002364,41.673825098],[-71.297065898,41.673864889],[-71.297065611,41.673888192],[-71.296994888,41.673923034],[-71.296922462,41.673956501],[-71.296875657,41.673999527],[-71.296852526,41.674070678],[-71.296843682,41.674137967],[-71.296777326,41.674180821],[-71.296689859,41.674205525],[-71.296607927,41.674215602],[-71.296558786,41.674235252],[-71.296614093,41.674291654],[-71.296678557,41.674326803],[-71.296740386,41.674355888],[-71.296796768,41.674400309],[-71.296817799,41.674492463],[-71.29686965,41.674542181],[-71.296919784,41.674585218],[-71.29698882,41.674611685],[-71.297063321,41.674626888],[-71.297130634,41.674648732],[-71.297210391,41.674670599],[-71.297285861,41.674678485],[-71.297324275,41.674665426],[-71.297360485,41.674683693],[-71.297376687,41.674740461],[-71.297370105,41.674767778],[-71.297297174,41.674767215],[-71.297215567,41.674751337],[-71.297128858,41.674718686],[-71.297038587,41.674684063],[-71.296938277,41.674669981],[-71.296837804,41.674668615],[-71.296749808,41.674667293],[-71.296661586,41.674679349],[-71.296630618,41.674739806],[-71.296628808,41.674811132],[-71.29666003,41.674873346],[-71.296687839,41.674924897],[-71.296743951,41.674987292],[-71.296814511,41.675033796],[-71.296862837,41.675079482],[-71.29686652,41.675140161],[-71.296886096,41.675210313],[-71.296910336,41.675261811],[-71.296934544,41.675313973],[-71.296987168,41.675370393],[-71.29703557,41.675411369],[-71.297053543,41.675467499],[-71.297033432,41.67550936],[-71.297041452,41.675578096],[-71.297060907,41.675657578],[-71.297101842,41.675725869],[-71.297132107,41.675792084],[-71.297163164,41.675868316],[-71.297201367,41.675941954],[-71.29723773,41.676018859],[-71.297253898,41.676076975],[-71.297265499,41.676141716],[-71.297282472,41.676205848],[-71.297303938,41.676266672],[-71.297330752,41.676324853],[-71.29736029,41.676379746],[-71.297387183,41.676431935],[-71.297405196,41.676485412],[-71.297423804,41.676562903],[-71.297451418,41.676628427],[-71.297465581,41.676703188],[-71.297481378,41.676762928],[-71.297542757,41.676916992],[-71.297600038,41.677064851],[-71.297602231,41.677075535],[-71.2976308,41.677138384],[-71.297665966,41.677169319],[-71.297716984,41.677212998],[-71.297784097,41.677250805],[-71.297870728,41.677290086],[-71.297969185,41.677312831],[-71.298066813,41.677327525],[-71.298150952,41.677354087],[-71.29821088,41.677397186],[-71.298252906,41.677448853],[-71.298289551,41.677504421],[-71.298326962,41.677568703],[-71.298350351,41.6776202],[-71.298368334,41.677673677],[-71.298384509,41.677729827],[-71.298398033,41.677785217],[-71.298407989,41.677839983],[-71.298424072,41.677906058],[-71.298458152,41.677953],[-71.298539562,41.677984222],[-71.298592349,41.678028635],[-71.298639708,41.6780823],[-71.298676429,41.678133203],[-71.298738855,41.678187673],[-71.298814,41.678222908],[-71.298904686,41.678224211],[-71.298976779,41.6782207],[-71.299053207,41.678225911],[-71.299121296,41.678254388],[-71.299179498,41.678294145],[-71.299228624,41.678348522],[-71.29926327,41.678419432],[-71.299289034,41.67849227],[-71.299317492,41.678561819],[-71.299358556,41.678619453],[-71.299385325,41.678682984],[-71.299394232,41.678751722],[-71.299395113,41.678821703],[-71.299406707,41.678889805],[-71.299425527,41.678949252],[-71.299466544,41.679012214],[-71.299502232,41.679071828],[-71.299536019,41.679144726],[-71.299553119,41.679198178],[-71.299560423,41.679252894],[-71.299559382,41.679332935],[-71.299556606,41.679411577],[-71.299556478,41.679492214],[-71.299557556,41.679547559],[-71.29956485,41.679605637],[-71.299575725,41.679659696],[-71.299595236,41.679732523],[-71.29963369,41.679786127],[-71.299693621,41.679829203],[-71.299748974,41.679882973],[-71.299779276,41.679948501],[-71.299773011,41.680021122],[-71.299756141,41.680090341],[-71.299715189,41.680163405],[-71.299679823,41.680215806],[-71.299643612,41.680265552],[-71.299595714,41.680325866],[-71.29955227,41.680386211],[-71.299519508,41.680444653],[-71.299496537,41.680503822],[-71.299481633,41.680558384],[-71.299479061,41.680620379],[-71.299499651,41.680679874],[-71.299530041,41.680736758],[-71.299564072,41.680790354],[-71.299590926,41.680846522],[-71.299615087,41.680905383],[-71.299634711,41.68097151],[-71.299643657,41.681037572],[-71.29964727,41.681102275],[-71.299665167,41.681164396],[-71.299693791,41.681220613],[-71.299740237,41.681274299],[-71.299783229,41.68132057],[-71.299795032,41.681370697],[-71.299707423,41.681408736],[-71.299644697,41.681430033],[-71.299605203,41.681426488],[-71.299542408,41.681421004],[-71.299472333,41.6814121],[-71.299406563,41.681411642],[-71.299353941,41.681411253],[-71.29929835,41.68141422],[-71.299271421,41.681421377],[-71.299242168,41.681430451],[-71.299182644,41.681452255],[-71.299129435,41.681483791],[-71.299169775,41.681588259],[-71.299171656,41.681650261],[-71.299221317,41.681788684],[-71.299247762,41.681819466],[-71.299328612,41.68182672],[-71.299424725,41.681820736],[-71.299508511,41.681805994],[-71.299587041,41.681783879],[-71.29965858,41.681753725],[-71.299732727,41.681728904],[-71.299804918,41.681714759],[-71.299877979,41.681705281],[-71.299967948,41.681693249],[-71.300050686,41.68169186],[-71.300125964,41.681715021],[-71.300193963,41.6817542],[-71.300256469,41.68180398],[-71.300299499,41.681848261],[-71.300346982,41.681892664],[-71.30041119,41.681944437],[-71.300464972,41.681984117],[-71.300526835,41.682015235],[-71.300609179,41.682042501],[-71.300690677,41.682067113],[-71.300768716,41.682085635],[-71.300849574,41.682090212],[-71.300930506,41.682090786],[-71.301143957,41.682091659],[-71.301233038,41.682080927],[-71.301520653,41.682050985],[-71.301652173,41.682058553],[-71.301736592,41.682065834],[-71.301813796,41.682078408],[-71.301884811,41.682089577],[-71.301964819,41.682092802],[-71.301982649,41.682088259],[-71.302058446,41.682072129],[-71.302400658,41.682015202],[-71.30247292,41.681997717],[-71.302743945,41.681945629],[-71.302868839,41.681915176],[-71.302934159,41.681893173],[-71.302938496,41.681891671],[-71.302996792,41.681852139],[-71.303035648,41.681805072],[-71.303066487,41.681755956],[-71.303099288,41.68169351],[-71.303124055,41.681634985],[-71.303151556,41.681569854],[-71.303179062,41.681503375],[-71.303198418,41.681448179],[-71.303220571,41.681386333],[-71.303226644,41.681325694],[-71.303227475,41.681263034],[-71.303231817,41.681199762],[-71.303246831,41.681137835],[-71.303264453,41.681081286],[-71.303290793,41.681036828],[-71.303602103,41.680254981],[-71.30368239,41.680025557],[-71.30369297,41.680007028],[-71.303711149,41.679957775],[-71.303722463,41.679878507],[-71.3037272,41.679785163],[-71.303729009,41.67971187],[-71.303751369,41.679491334],[-71.303757521,41.679424064],[-71.303788879,41.679193595],[-71.303816296,41.678713754],[-71.303826051,41.678645826],[-71.303832398,41.678564514],[-71.303868458,41.678242073],[-71.303895986,41.678106986],[-71.303950387,41.677952665],[-71.303968411,41.677913818],[-71.304028071,41.677785212],[-71.304229394,41.677404622],[-71.304443808,41.676971432],[-71.304629982,41.676524746],[-71.30469891,41.676346551],[-71.304729141,41.676275434],[-71.304811187,41.676045989],[-71.304860568,41.675936346],[-71.30490046,41.67587796],[-71.304951368,41.675787667],[-71.305104909,41.675529413],[-71.305148413,41.675466391],[-71.305275147,41.675215912],[-71.305305291,41.675152776],[-71.305360928,41.67504184],[-71.305384776,41.674982672],[-71.305424881,41.674832946],[-71.305448922,41.674760445],[-71.305514541,41.674565573],[-71.305579532,41.674346001],[-71.305597796,41.674308137],[-71.305609041,41.674260908],[-71.305595228,41.674228777],[-71.305625293,41.674171677],[-71.305624168,41.674119671],[-71.305671212,41.673984661],[-71.305685297,41.673997423],[-71.30571734,41.673992309],[-71.305723996,41.673959686],[-71.305718782,41.673948997],[-71.305708104,41.673949574],[-71.305686024,41.673938102],[-71.305676632,41.673906686],[-71.305687224,41.673843448],[-71.305720944,41.673777664],[-71.305752816,41.673717892],[-71.305824064,41.673638405],[-71.305850556,41.673582557],[-71.305890372,41.673528195],[-71.305943437,41.673480557],[-71.305981571,41.673417479],[-71.306014242,41.673365735],[-71.306056753,41.673307993],[-71.306102835,41.673249],[-71.306156019,41.673192054],[-71.306210964,41.67313774],[-71.306269414,41.673084165],[-71.306334115,41.673031308],[-71.306396134,41.672977716],[-71.306453738,41.672921486],[-71.306504152,41.67287247],[-71.306564398,41.672820247],[-71.306612974,41.672773904],[-71.306638697,41.67270941],[-71.306611964,41.672642587],[-71.306580609,41.672591033],[-71.306502783,41.672484445],[-71.306453681,41.672431443],[-71.306401853,41.672382416],[-71.306359748,41.67233544],[-71.306322338,41.67226917],[-71.306293683,41.672212955],[-71.306261525,41.672154744],[-71.306235594,41.67209524],[-71.306218527,41.672039776],[-71.306204964,41.671985691],[-71.306195929,41.671926924],[-71.306200384,41.671854985],[-71.306215398,41.671791731],[-71.306211708,41.671730344],[-71.306176861,41.671674095],[-71.306150975,41.671609949],[-71.306128643,41.671550451],[-71.3061054,41.671489625],[-71.306082197,41.671426124],[-71.306060731,41.671362603],[-71.306037523,41.671300428],[-71.306012518,41.671237586],[-71.305989399,41.671166081],[-71.305974101,41.671110643],[-71.305959652,41.671057196],[-71.305938341,41.670983063],[-71.305913451,41.670912195],[-71.305892978,41.670843393],[-71.305889333,41.670777363],[-71.305889208,41.670717354],[-71.305873994,41.670654575],[-71.30585355,41.670586436],[-71.305838424,41.670514326],[-71.305810881,41.670443476],[-71.305777849,41.670382565],[-71.305752041,41.670313068],[-71.305729684,41.670252198],[-71.305726318,41.67023552],[-71.30569685,41.670175964],[-71.305665741,41.670104422],[-71.305639809,41.670045559],[-71.305621029,41.669982088],[-71.305600554,41.669913948],[-71.305588921,41.669847196],[-71.305586149,41.66978517],[-71.305574507,41.669721093],[-71.305557602,41.66965296],[-71.305532589,41.669592772],[-71.30551373,41.669535315],[-71.305518868,41.669480003],[-71.305535606,41.669421509],[-71.305536404,41.669358825],[-71.305537203,41.669296119],[-71.305537935,41.669235471],[-71.305538654,41.669178848],[-71.30553938,41.669120189],[-71.305540217,41.66905483],[-71.305540301,41.66897616],[-71.305532435,41.668894115],[-71.305531351,41.668838746],[-71.305531214,41.668782762],[-71.305528329,41.668728054],[-71.305527567,41.668646729],[-71.30552825,41.66859205],[-71.305537204,41.668515453],[-71.305560279,41.668448942],[-71.305586805,41.668391128],[-71.30559997,41.668333886],[-71.305584766,41.668267768],[-71.305574807,41.668212384],[-71.305565814,41.668150279],[-71.305560358,41.668088271],[-71.305555776,41.668029581],[-71.305546669,41.667974839],[-71.305535758,41.667921421],[-71.30553138,41.667846036],[-71.305532365,41.667772033],[-71.305525187,41.667704648],[-71.305513665,41.667631241],[-71.305503706,41.667575834],[-71.305491954,41.66751839],[-71.305474288,41.667439621],[-71.305467148,41.66736956],[-71.305479388,41.667315632],[-71.305503232,41.667257173],[-71.305482803,41.667184345],[-71.30547911,41.667124307],[-71.305477302,41.667056268],[-71.305464016,41.666981509],[-71.305454909,41.66692679],[-71.305445905,41.666868092],[-71.305435951,41.666811314],[-71.305425115,41.66675323],[-71.305417808,41.666698515],[-71.305411429,41.666639158],[-71.305410628,41.666631793],[-71.305406889,41.666577106],[-71.305393371,41.666518355],[-71.305379157,41.666448236],[-71.305365709,41.666386809],[-71.305361941,41.666331436],[-71.305380809,41.666314911],[-71.305382451,41.666255591],[-71.305318066,41.666215803],[-71.305257989,41.666183387],[-71.305208865,41.666129676],[-71.305179322,41.666075471],[-71.305159695,41.666010009],[-71.305153307,41.665953968],[-71.305154072,41.665892611],[-71.305154826,41.665834639],[-71.305181321,41.665776824],[-71.305224594,41.665727774],[-71.305199786,41.665650914],[-71.305178234,41.665596792],[-71.305156794,41.665535946],[-71.30513609,41.665483815],[-71.305130264,41.665453755],[-71.305124772,41.665393713],[-71.305109485,41.665335622],[-71.305092384,41.665282148],[-71.305072672,41.66522469],[-71.305053932,41.665158543],[-71.305036995,41.665091095],[-71.305023625,41.665024317],[-71.305011943,41.66496422],[-71.305001148,41.66490282],[-71.304994764,41.66484543],[-71.304983129,41.664780004],[-71.304975862,41.66472195],[-71.304952702,41.664655132],[-71.304934843,41.664590336],[-71.304898242,41.664530722],[-71.304881269,41.664465264],[-71.304859917,41.664395774],[-71.304847314,41.66433771],[-71.304833791,41.664280926],[-71.30482528,41.664251524],[-71.304796657,41.664085124],[-71.304780408,41.664012166],[-71.304764156,41.663940581],[-71.304747667,41.663876496],[-71.304719417,41.663808823],[-71.304701944,41.663747481],[-71.304707278,41.663687915],[-71.304722774,41.663626423],[-71.304752639,41.663573394],[-71.304787928,41.663521838],[-71.304812403,41.663465941],[-71.304839558,41.663411513],[-71.304867929,41.663378355],[-71.304858682,41.663350096],[-71.3048448,41.663291549],[-71.304865789,41.663228786],[-71.304881423,41.663161805],[-71.304895765,41.663108499],[-71.304925527,41.6630589],[-71.304952369,41.663047671],[-71.304958711,41.663017608],[-71.304905821,41.662979693],[-71.30488821,41.662923862],[-71.304906283,41.662867222],[-71.304924392,41.662808502],[-71.30494531,41.662749169],[-71.304986523,41.662714843],[-71.304987308,41.662687401],[-71.304970041,41.662618512],[-71.304965649,41.662547793],[-71.304971013,41.662488205],[-71.304986307,41.662432864],[-71.305001704,41.662373453],[-71.305020761,41.662314071],[-71.30504568,41.662242441],[-71.305057927,41.662165781],[-71.305070139,41.662090538],[-71.305088619,41.662020178],[-71.305097748,41.661955839],[-71.305099317,41.661900978],[-71.3051056,41.661840042],[-71.30513116,41.661777995],[-71.305134764,41.66171566],[-71.30513654,41.661652566],[-71.305141091,41.6615895],[-71.305153574,41.661535527],[-71.305192723,41.661477826],[-71.305219976,41.661420653],[-71.305187899,41.661358394],[-71.305192384,41.661296746],[-71.305217879,41.661236071],[-71.305249876,41.661173486],[-71.305277975,41.661119059],[-71.305276295,41.661049053],[-71.305281867,41.660981209],[-71.305288489,41.660908611],[-71.305306121,41.660836168],[-71.305324602,41.660765121],[-71.305340374,41.660692652],[-71.305361567,41.660622342],[-71.305384486,41.660556174],[-71.30540737,41.660491378],[-71.305415615,41.660427061],[-71.305430164,41.660365544],[-71.305451118,41.660303421],[-71.305461056,41.660243909],[-71.305462693,41.660186304],[-71.305451588,41.660127168],[-71.305425847,41.660067046],[-71.305401696,41.660015893],[-71.305377145,41.659945528],[-71.305369599,41.659889165],[-71.305368629,41.659826707],[-71.305404459,41.659756628],[-71.305432526,41.659702201],[-71.30541292,41.659620249],[-71.305427536,41.659556675],[-71.305431326,41.659513344],[-71.305432936,41.659495051],[-71.305430061,41.659467557],[-71.305398935,41.659403264],[-71.305415314,41.659341797],[-71.305399736,41.659279085],[-71.30538477,41.659226026],[-71.305364343,41.659173575],[-71.305336981,41.659105218],[-71.305322997,41.659050148],[-71.305314912,41.658980703],[-71.305297745,41.65890907],[-71.305265841,41.658839973],[-71.30524037,41.658771642],[-71.30523117,41.658707707],[-71.30522481,41.65864245],[-71.305213777,41.658579838],[-71.305204607,41.658515926],[-71.305200454,41.658436951],[-71.305197484,41.658379978],[-71.305195426,41.658324357],[-71.305189673,41.658270101],[-71.305182607,41.658196564],[-71.305177198,41.658129273],[-71.3051744,41.658066126],[-71.305167765,41.658011137],[-71.305145822,41.657946265],[-71.30512354,41.657892439],[-71.30509397,41.65783844],[-71.305076523,41.657809344],[-71.305052513,41.657752015],[-71.305014877,41.657693131],[-71.304983684,41.657631583],[-71.304952627,41.657565209],[-71.304929901,41.657496928],[-71.304914469,41.657426716],[-71.304890997,41.657352923],[-71.304877081,41.657295772],[-71.304868521,41.657242129],[-71.30486054,41.657168613],[-71.304854181,41.657103333],[-71.304851485,41.657036756],[-71.304840452,41.656974144],[-71.304834734,41.656918493],[-71.304860399,41.656851667],[-71.304876983,41.656782652],[-71.304873521,41.656727165],[-71.304873201,41.656722225],[-71.304855795,41.656659511],[-71.304828296,41.656596665],[-71.304793542,41.656532983],[-71.304761638,41.65646455],[-71.304729561,41.656402977],[-71.30469542,41.656348261],[-71.3046814,41.656295203],[-71.304676097,41.656223796],[-71.304650356,41.656164384],[-71.304626584,41.656099509],[-71.304604405,41.656042206],[-71.304590387,41.655988485],[-71.304579489,41.655921757],[-71.304553009,41.655854796],[-71.304526387,41.655794696],[-71.30452091,41.655730104],[-71.304513706,41.655662101],[-71.304465979,41.65560304],[-71.304434477,41.655553108],[-71.304399385,41.655500426],[-71.304345724,41.655457706],[-71.304283798,41.655414881],[-71.304228612,41.65536189],[-71.304183563,41.655304891],[-71.304142237,41.655246641],[-71.304099082,41.655188297],[-71.30405505,41.655127915],[-71.304013895,41.655063468],[-71.303980903,41.655002556],[-71.303962661,41.654934352],[-71.30395908,41.654868459],[-71.303936828,41.654815273],[-71.303893472,41.654763125],[-71.30384388,41.654706096],[-71.303798658,41.654656004],[-71.303717058,41.654565462],[-71.303710225,41.654516007],[-71.303710641,41.654469354],[-71.30366264,41.65442056],[-71.303634228,41.65435769],[-71.303605611,41.654302343],[-71.303573536,41.654240792],[-71.303544374,41.654173804],[-71.303518844,41.654106113],[-71.303493174,41.654043978],[-71.30348045,41.653976584],[-71.303448276,41.653917754],[-71.303392752,41.653876335],[-71.303344619,41.653831017],[-71.303302209,41.653778893],[-71.303259598,41.653732922],[-71.3031912,41.653693424],[-71.303119619,41.653638072],[-71.303063523,41.653584393],[-71.303021504,41.653534191],[-71.303017494,41.653529404],[-71.302973322,41.653475197],[-71.302934606,41.653421776],[-71.302895046,41.653365541],[-71.302851826,41.653309323],[-71.302815042,41.653252453],[-71.302790221,41.653192378],[-71.302769737,41.653139926],[-71.302764059,41.653082217],[-71.302764747,41.653026646],[-71.302761164,41.65299165],[-71.30272435,41.652934779],[-71.302725211,41.65287237],[-71.302726885,41.652813416],[-71.302707176,41.65276714],[-71.302660872,41.652722511],[-71.302633099,41.652670573],[-71.302614003,41.652603075],[-71.30258868,41.65252786],[-71.302565551,41.652473323],[-71.302541545,41.652415994],[-71.302516621,41.652360036],[-71.302492611,41.652304079],[-71.302463928,41.652250813],[-71.30243155,41.652199507],[-71.302382336,41.652129465],[-71.302357245,41.652078263],[-71.30233503,41.652023727],[-71.30231282,41.651967819],[-71.302289829,41.65190777],[-71.302267819,41.651846351],[-71.302245067,41.65177807],[-71.302223263,41.651709127],[-71.302204035,41.651645014],[-71.30219019,41.651585781],[-71.302173536,41.651527893],[-71.30215407,41.651472036],[-71.302134533,41.651419585],[-71.302114217,41.651362331],[-71.302093024,41.651302972],[-71.302066338,41.651244929],[-71.302035084,41.651185415],[-71.301999288,41.651125184],[-71.301961793,41.651062137],[-71.301924304,41.650997078],[-71.301884987,41.65093197],[-71.301847462,41.650868923],[-71.301814582,41.650802545],[-71.301783527,41.650737565],[-71.301753358,41.650671924],[-71.301723151,41.650609004],[-71.301696468,41.650550252],[-71.301676054,41.650495742],[-71.301648762,41.650426698],[-71.301625534,41.650374905],[-71.301566126,41.650308778],[-71.301537441,41.650256884],[-71.301500523,41.650204815],[-71.301441483,41.650157923],[-71.301376074,41.650110219],[-71.301304192,41.650065156],[-71.301227771,41.650018691],[-71.301144102,41.649969331],[-71.301064125,41.649919337],[-71.300999026,41.64985997],[-71.300941916,41.649810336],[-71.300867121,41.649770734],[-71.300779656,41.649726788],[-71.300719353,41.649694277],[-71.300655231,41.649664436],[-71.30059022,41.649635965],[-71.300528909,41.649604116],[-71.300469595,41.649567491],[-71.30041218,41.64952817],[-71.300355612,41.649490887],[-71.300280347,41.649436144],[-71.300214701,41.649396031],[-71.300154575,41.649355928],[-71.300123117,41.649304006],[-71.300107736,41.649298262],[-71.300081576,41.649317724],[-71.300025698,41.649353211],[-71.299937064,41.649381941],[-71.299853341,41.649399816],[-71.299759494,41.6494182],[-71.299660118,41.649439936],[-71.299558814,41.649463726],[-71.299460217,41.649489557],[-71.299362774,41.649507225],[-71.299272755,41.649520195],[-71.299201977,41.649532763],[-71.29912395,41.649542507],[-71.299090505,41.649561155],[-71.299121085,41.649611064],[-71.299125706,41.649674214],[-71.299116985,41.64972346],[-71.299082216,41.649755851],[-71.299019457,41.649807654],[-71.298980275,41.649866703],[-71.298971312,41.64992489],[-71.298936978,41.649974411],[-71.298883161,41.650033228],[-71.298819658,41.650078856],[-71.298770584,41.650132261],[-71.298741294,41.650196953],[-71.298703702,41.650264283],[-71.298654994,41.6503369],[-71.298618793,41.650388475],[-71.298581579,41.650442061],[-71.298549071,41.650492294],[-71.298498603,41.650562117],[-71.298450814,41.650633409],[-71.298426302,41.650691294],[-71.298398775,41.650757407],[-71.298372157,41.650825579],[-71.298351029,41.650893144],[-71.298334511,41.65095875],[-71.298326256,41.651024462],[-71.298324441,41.651088242],[-71.298328997,41.651152787],[-71.298340768,41.65122089],[-71.298340508,41.6512943],[-71.2983228,41.651370149],[-71.298297706,41.651447953],[-71.298273729,41.651519606],[-71.298244373,41.65158567],[-71.298216099,41.651646979],[-71.298208795,41.651710657],[-71.298206878,41.651777821],[-71.298201265,41.651847037],[-71.29820111,41.65191633],[-71.298211016,41.651985756],[-71.298219057,41.652057214],[-71.29821795,41.652128542],[-71.298208854,41.652190136],[-71.298197146,41.652248295],[-71.29820648,41.652306034],[-71.298240171,41.652375181],[-71.298276501,41.652449181],[-71.298302028,41.652516142],[-71.298310016,41.652555377],[-71.298331039,41.652619494],[-71.298329085,41.652688739],[-71.298312736,41.652748856],[-71.298281009,41.652802521],[-71.298299892,41.65287832],[-71.298309225,41.652936059],[-71.298313983,41.652994475],[-71.298322369,41.653052898],[-71.298329803,41.653113378],[-71.298333477,41.653177236],[-71.298332611,41.653239667],[-71.298330831,41.653302052],[-71.298331762,41.653365196],[-71.298331709,41.653431036],[-71.298330642,41.65349962],[-71.298334141,41.653570338],[-71.29833849,41.65364243],[-71.298336438,41.653713756],[-71.298334449,41.653784373],[-71.298332465,41.653853595],[-71.298330515,41.653921513],[-71.298326868,41.65398593],[-71.298314213,41.654044728],[-71.298292548,41.654098547],[-71.298254412,41.654153504],[-71.298214793,41.654195399],[-71.298219766,41.654214001],[-71.298251262,41.654263911],[-71.298250903,41.654340043],[-71.298223298,41.654410981],[-71.29818405,41.654470715],[-71.298182748,41.654516657],[-71.29822976,41.65456815],[-71.298279336,41.654658114],[-71.298315867,41.654756127],[-71.298331606,41.654813305],[-71.298343478,41.654878664],[-71.29834251,41.654944503],[-71.298362545,41.65501278],[-71.298395966,41.6550908],[-71.29841621,41.655150799],[-71.298432758,41.655212827],[-71.298444703,41.655274092],[-71.29845302,41.655335259],[-71.298453137,41.655395612],[-71.298442348,41.655452377],[-71.298425289,41.655505633],[-71.298399483,41.655576551],[-71.298392108,41.655643683],[-71.298399914,41.655721955],[-71.298411041,41.655781824],[-71.298432166,41.655842556],[-71.298457936,41.655900575],[-71.298482009,41.655955161],[-71.298504252,41.656009697],[-71.298520908,41.656066237],[-71.298538947,41.656139221],[-71.298545537,41.656196978],[-71.298522921,41.656252168],[-71.298477709,41.656297393],[-71.298477194,41.656315939],[-71.29849491,41.656336095],[-71.298570739,41.656339361],[-71.298627413,41.656373192],[-71.298661073,41.656443712],[-71.29867989,41.656521523],[-71.298690034,41.656583426],[-71.298695505,41.656647995],[-71.298693554,41.656716394],[-71.298691878,41.656774891],[-71.298727995,41.65688866],[-71.29875498,41.65696795],[-71.298764077,41.657033258],[-71.298770324,41.657103363],[-71.298770067,41.657176064],[-71.298765267,41.657248689],[-71.298763143,41.657323445],[-71.298761261,41.65738926],[-71.298756804,41.657449558],[-71.298755127,41.657508535],[-71.298752971,41.657583955],[-71.298737466,41.657646818],[-71.298707119,41.657716997],[-71.298672908,41.657793961],[-71.298641995,41.657849731],[-71.29860386,41.657903978],[-71.298556644,41.657956038],[-71.298510341,41.658008785],[-71.298469598,41.658058225],[-71.29842458,41.658128836],[-71.298395184,41.65819698],[-71.298360968,41.658275339],[-71.298333745,41.658331161],[-71.298304688,41.658388284],[-71.298264655,41.658444609],[-71.298219098,41.65850216],[-71.298170827,41.658559729],[-71.298125375,41.658613186],[-71.298075518,41.658661078],[-71.298017425,41.658709551],[-71.297954859,41.658755179],[-71.297890773,41.658789142],[-71.297803785,41.658823407],[-71.297749316,41.658873281],[-71.297677947,41.658905767],[-71.297642459,41.658931959],[-71.297636608,41.659008698],[-71.297634997,41.659065617],[-71.297635995,41.659126679],[-71.297647771,41.659193387],[-71.2976613,41.659264969],[-71.297669308,41.659337136],[-71.297673761,41.659405111],[-71.297672723,41.659473717],[-71.297670201,41.659499944],[-71.297666229,41.659541514],[-71.297658652,41.659614087],[-71.297650021,41.659692171],[-71.297635897,41.659771503],[-71.297620052,41.659845343],[-71.297604512,41.659909578],[-71.297576874,41.65998047],[-71.297571605,41.660036674],[-71.297581064,41.660122542],[-71.297569396,41.660177247],[-71.297547728,41.660231089],[-71.297514197,41.66028475],[-71.297457556,41.660346238],[-71.297406334,41.660410593],[-71.297375552,41.660462932],[-71.297348323,41.660520103],[-71.297330211,41.660577451],[-71.297325787,41.6606364],[-71.297325546,41.660645296],[-71.29733119,41.660703028],[-71.297344959,41.660766331],[-71.297359096,41.660848206],[-71.297363688,41.660910693],[-71.297361835,41.66097653],[-71.297359988,41.661040287],[-71.297348882,41.661110087],[-71.29731976,41.661167941],[-71.297254106,41.661224518],[-71.297214277,41.661273274],[-71.297186202,41.661327699],[-71.297158092,41.661383496],[-71.297120023,41.661435022],[-71.297076495,41.661486447],[-71.297029278,41.661537797],[-71.296983042,41.661587136],[-71.296934164,41.66163304],[-71.296880849,41.661674019],[-71.296818213,41.661721042],[-71.296748259,41.661767914],[-71.296661638,41.661790562],[-71.296574309,41.661805615],[-71.296474104,41.661822544],[-71.296401447,41.661836435],[-71.296321404,41.661852301],[-71.296236784,41.6618688],[-71.296153963,41.661885302],[-71.296072193,41.661897689],[-71.295987675,41.661910758],[-71.295904957,41.661923807],[-71.295893027,41.661925546],[-71.295827795,41.661934921],[-71.29575531,41.661942682],[-71.295648736,41.661958113],[-71.295572417,41.661972659],[-71.29549329,41.661987887],[-71.295415246,41.661998268],[-71.295343608,41.662008134],[-71.295248112,41.662020999],[-71.295173902,41.662024595],[-71.295161094,41.662024412],[-71.295094383,41.661990401],[-71.295054654,41.661939674],[-71.295013472,41.66187591],[-71.294985734,41.661823307],[-71.294955256,41.661769304],[-71.29492383,41.661716008],[-71.294889795,41.661658522],[-71.294855793,41.661600351],[-71.294820878,41.661541469],[-71.294786741,41.661487413],[-71.294750637,41.661438134],[-71.294709989,41.661388778],[-71.294660977,41.661342014],[-71.294606539,41.661294486],[-71.294550202,41.661249699],[-71.294493728,41.661209645],[-71.294438033,41.661173801],[-71.294381494,41.661135142],[-71.294324987,41.661095797],[-71.294274069,41.661053832],[-71.294219164,41.660990546],[-71.294175068,41.660932196],[-71.294125548,41.660873104],[-71.29405827,41.660826056],[-71.293969297,41.660801975],[-71.293892355,41.660773296],[-71.293833814,41.660740831],[-71.293754968,41.66071622],[-71.293665447,41.660711348],[-71.293583814,41.660718954],[-71.293566041,41.660764661],[-71.293486606,41.660790818],[-71.293377424,41.660802102],[-71.293279355,41.660809404],[-71.293207892,41.660812386],[-71.29314674,41.660871736],[-71.293114604,41.660907629],[-71.293064567,41.660962356],[-71.293017347,41.661013727],[-71.292953515,41.6610717],[-71.292884943,41.661133713],[-71.292846126,41.661179724],[-71.292790392,41.661241966],[-71.292733611,41.66130759],[-71.292678119,41.66136089],[-71.292591797,41.661404094],[-71.292523234,41.661434547],[-71.292452877,41.661463601],[-71.292384451,41.661489274],[-71.292321445,41.661517747],[-71.292247758,41.661567286],[-71.292185085,41.661615678],[-71.292124003,41.661671643],[-71.292056377,41.661732971],[-71.292005768,41.66177537],[-71.291957699,41.661824704],[-71.291913185,41.66187816],[-71.291871414,41.66193169],[-71.291829647,41.661984512],[-71.291787916,41.662035297],[-71.291745298,41.662086745],[-71.291697128,41.662138799],[-71.291643497,41.662191439],[-71.291588954,41.66224339],[-71.291537155,41.66229537],[-71.29148824,41.662341912],[-71.291444881,41.662386497],[-71.291383519,41.662453415],[-71.291345615,41.662499451],[-71.291298049,41.662562484],[-71.291257023,41.662621504],[-71.291236019,41.662684974],[-71.291234164,41.662749439],[-71.291232649,41.662802928],[-71.291221038,41.662856924],[-71.291198071,41.662923775],[-71.291172667,41.662980307],[-71.291145364,41.663039535],[-71.291107859,41.663103432],[-71.291064935,41.663164484],[-71.291028486,41.663222208],[-71.290986407,41.663286006],[-71.290955509,41.663343832],[-71.290925428,41.66340374],[-71.290869839,41.663523543],[-71.290804629,41.663666815],[-71.290784257,41.663732687],[-71.290758643,41.663787824],[-71.29072058,41.663844882],[-71.290687015,41.663897329],[-71.29065076,41.663951738],[-71.290607491,41.663996757],[-71.290551815,41.664039673],[-71.290495252,41.664083273],[-71.290435196,41.664122865],[-71.290379607,41.664157822],[-71.290320443,41.664194694],[-71.290315777,41.664213347],[-71.290361357,41.664265023],[-71.290394384,41.664321913],[-71.290419378,41.664382769],[-71.290432771,41.664447513],[-71.290431986,41.66451086],[-71.290415955,41.664582754],[-71.29040013,41.664637955],[-71.290383386,41.664694503],[-71.290364947,41.664747046],[-71.290335554,41.664820151],[-71.290320648,41.66487405],[-71.290305701,41.664931287],[-71.290290681,41.664992527],[-71.290278304,41.665056424],[-71.29026593,41.665119703],[-71.290252674,41.66518225],[-71.290241221,41.665243496],[-71.290228006,41.665302749],[-71.290211258,41.665360623],[-71.290190091,41.665417163],[-71.290168084,41.665469677],[-71.290146919,41.665525508],[-71.290125798,41.665577382],[-71.290090141,41.665653769],[-71.290069894,41.665708962],[-71.290050503,41.665763492],[-71.290023149,41.665818626],[-71.289986892,41.665873057],[-71.289944416,41.665926723],[-71.289900223,41.665973775],[-71.28984001,41.666023337],[-71.289784447,41.666058935],[-71.28972973,41.666097209],[-71.289729321,41.66612918],[-71.289754432,41.666182031],[-71.289745547,41.666250668],[-71.289703955,41.666304381],[-71.289657836,41.666362019],[-71.289632976,41.666428546],[-71.289623961,41.666509121],[-71.289612307,41.666585048],[-71.289610691,41.666641029],[-71.289608065,41.666707711],[-71.289598456,41.666764318],[-71.289582543,41.6668275],[-71.289559452,41.666894007],[-71.289536355,41.666962527],[-71.289519472,41.667033093],[-71.289502566,41.667101625],[-71.289487496,41.66716817],[-71.289475162,41.667228087],[-71.289469096,41.667283397],[-71.289453021,41.667358608],[-71.289432662,41.667419768],[-71.289390095,41.667482169],[-71.289337783,41.667539796],[-71.289266889,41.667590618],[-71.289184434,41.667642015],[-71.289128834,41.667678961],[-71.289046418,41.667727681],[-71.288958673,41.667773716],[-71.2888816,41.667820502],[-71.288818813,41.667863381],[-71.288810576,41.667882668],[-71.288823904,41.667882784],[-71.288901838,41.667908655],[-71.288981469,41.667937914],[-71.289063868,41.667959837],[-71.289136345,41.667994342],[-71.289185538,41.668042046],[-71.289232766,41.668103079],[-71.289259562,41.668163252],[-71.289274671,41.668234678],[-71.289271942,41.668304675],[-71.289253301,41.668371877],[-71.289220453,41.668436971],[-71.28918399,41.668507388],[-71.289151861,41.668585839],[-71.289133172,41.668658369],[-71.289121556,41.668731644],[-71.289111627,41.668811576],[-71.289102009,41.668870813],[-71.289087905,41.668930728],[-71.289068465,41.668990564],[-71.289042845,41.669046386],[-71.289011884,41.669103503],[-71.288975622,41.669158574],[-71.288937598,41.669211629],[-71.288900469,41.669261393],[-71.288841054,41.669317611],[-71.288793237,41.669371266],[-71.288757737,41.669435692],[-71.288756118,41.66949236],[-71.288766615,41.669575097],[-71.288731067,41.669644852],[-71.288704567,41.669699323],[-71.288678901,41.669759811],[-71.28865673,41.66982433],[-71.288638046,41.669894848],[-71.288617476,41.669973366],[-71.288599555,41.670053238],[-71.288586165,41.670127859],[-71.288570945,41.670202407],[-71.288556636,41.670278261],[-71.288547664,41.67035424],[-71.288541385,41.670427501],[-71.288530732,41.670495426],[-71.288522725,41.670565369],[-71.288515596,41.670637325],[-71.288505788,41.670707927],[-71.28849164,41.670771844],[-71.288476699,41.670826405],[-71.288441191,41.670892821],[-71.288403212,41.670941188],[-71.288340339,41.670990767],[-71.288289154,41.671029048],[-71.288243225,41.671074061],[-71.288199059,41.671120427],[-71.288171454,41.671130302],[-71.288025643,41.671125733],[-71.288019927,41.67122246],[-71.288350324,41.671229312],[-71.288372872,41.671282868],[-71.288398494,41.671347841],[-71.288405907,41.671421928],[-71.288419329,41.671486696],[-71.288428991,41.671563417],[-71.288432747,41.671618127],[-71.288432892,41.671676124],[-71.288433079,41.671730805],[-71.288433094,41.671800808],[-71.288442961,41.671861544],[-71.288455876,41.671894979],[-71.288448867,41.671958246],[-71.288448936,41.672020931],[-71.288451779,41.672074953],[-71.288453608,41.672140317],[-71.28846066,41.672213031],[-71.288470474,41.672280445],[-71.288479485,41.672341866],[-71.288484053,41.67239987],[-71.288483266,41.672463194],[-71.288482288,41.672538524],[-71.288476841,41.672618487],[-71.288468716,41.672696411],[-71.288455369,41.672766984],[-71.288427861,41.672830807],[-71.288398662,41.672889276],[-71.288374849,41.672942426],[-71.288374672,41.673024457],[-71.288377379,41.67309179],[-71.288370183,41.673165736],[-71.288359522,41.673235673],[-71.288336554,41.6732915],[-71.288304662,41.673352617],[-71.288310733,41.673435987],[-71.288312491,41.673504666],[-71.288311581,41.673577343],[-71.28831333,41.673648721],[-71.288323225,41.673710098],[-71.288341916,41.673777596],[-71.288338536,41.673831539],[-71.288304851,41.67389064],[-71.288264216,41.673939025],[-71.288257381,41.673986306],[-71.28827298,41.674019746],[-71.288269631,41.674073735],[-71.288239721,41.674116193],[-71.288160557,41.674118975],[-71.288084048,41.674121738],[-71.288042983,41.674133463],[-71.288049425,41.674187515],[-71.288056414,41.674195532],[-71.288140075,41.674188826],[-71.288229277,41.674184873],[-71.28831095,41.674188957],[-71.288396187,41.674231766],[-71.28845289,41.674297528],[-71.28848759,41.674394397],[-71.288502703,41.674455166],[-71.288522209,41.674515919],[-71.288535137,41.674573368],[-71.288528116,41.674649624],[-71.288538057,41.674706404],[-71.288548883,41.674763117],[-71.288560303,41.674843203],[-71.288563815,41.674916597],[-71.288567573,41.674970598],[-71.288570368,41.675029972],[-71.288574933,41.675089326],[-71.288580421,41.675146029],[-71.288591074,41.675218109],[-71.288605347,41.675284228],[-71.288621393,41.675349],[-71.288633901,41.675413789],[-71.28864115,41.675473148],[-71.288661767,41.675529993],[-71.288686073,41.675578155],[-71.288643478,41.675637857],[-71.288595066,41.675666812],[-71.288617978,41.675684303],[-71.288682354,41.675726775],[-71.288746771,41.675765931],[-71.288799588,41.675807651],[-71.288827193,41.675873199],[-71.288836085,41.675943241],[-71.288841532,41.67600326],[-71.288843519,41.676057944],[-71.288845717,41.67609463],[-71.288766479,41.676100751],[-71.288763531,41.676330741],[-71.288751798,41.676345974],[-71.288736423,41.676365201],[-71.288622616,41.676364375],[-71.288617217,41.67643901],[-71.288707018,41.676439655],[-71.288979632,41.676466959],[-71.288955567,41.676540782],[-71.288878129,41.676546906],[-71.288818438,41.676554504],[-71.28878229,41.676601571],[-71.288762095,41.676648736],[-71.288323691,41.676649576],[-71.28832347,41.676735609],[-71.288694432,41.676724926],[-71.288697942,41.67679896],[-71.288720861,41.676814485],[-71.288810662,41.676815107],[-71.288921689,41.676826563],[-71.288979648,41.676882333],[-71.289033946,41.676947404],[-71.289076075,41.676993037],[-71.289080555,41.677059709],[-71.289124387,41.677247386],[-71.289141397,41.677306832],[-71.289149492,41.677368891],[-71.289211971,41.677768714],[-71.289330351,41.678313585],[-71.289528969,41.67905242],[-71.289642348,41.679504569],[-71.289704892,41.67972679],[-71.289713819,41.679758434],[-71.289722001,41.679812489],[-71.289721185,41.679875813],[-71.289720458,41.679930469],[-71.289703871,41.679984273],[-71.289661928,41.679918058],[-71.2896382,41.67989789],[-71.289627663,41.679957834],[-71.289626688,41.680032477],[-71.289633663,41.680110565],[-71.28962662,41.680175181],[-71.289616162,41.680229751],[-71.28959592,41.680281627],[-71.289562385,41.680331352],[-71.289514687,41.680374327],[-71.289457022,41.680433293],[-71.289398723,41.680471515],[-71.289333476,41.680498381],[-71.289268199,41.680524607],[-71.289193238,41.680546035],[-71.289113906,41.680560823],[-71.28902852,41.680560872],[-71.288944257,41.680544251],[-71.28887976,41.680509143],[-71.288806259,41.680485247],[-71.288710149,41.680490582],[-71.28862833,41.680491323],[-71.288542986,41.680488033],[-71.288463983,41.680476796],[-71.288375061,41.680476152],[-71.28828883,41.680473524],[-71.28820811,41.680455583],[-71.288127455,41.680436338],[-71.288048544,41.680415793],[-71.287984116,41.680378649],[-71.287938514,41.680330997],[-71.287885783,41.680280587],[-71.287841592,41.680258277],[-71.287824108,41.680306156],[-71.287815309,41.680366103],[-71.287811039,41.680421393],[-71.287772169,41.680469781],[-71.287714786,41.680507363],[-71.287659771,41.680566973],[-71.287625151,41.680630737],[-71.287616264,41.680698688],[-71.287602952,41.680767271],[-71.287570942,41.680835019],[-71.287530974,41.680901426],[-71.287508084,41.680951239],[-71.287542107,41.681004153],[-71.287593958,41.681053212],[-71.287623575,41.681100743],[-71.287594337,41.68116056],[-71.287544571,41.681228847],[-71.287498391,41.681291858],[-71.287452283,41.681351507],[-71.287421086,41.681422619],[-71.287375661,41.681496974],[-71.287346289,41.681569415],[-71.287296614,41.681628417],[-71.28726215,41.681681502],[-71.287215173,41.681736507],[-71.287150644,41.681776043],[-71.287080018,41.681804864],[-71.287020873,41.68183979],[-71.286990913,41.681886891],[-71.286961829,41.681936669],[-71.286918374,41.681996369],[-71.286878543,41.68204878],[-71.286832471,41.682106416],[-71.286799658,41.682167508],[-71.286797876,41.682236181],[-71.286767861,41.682290645],[-71.286683823,41.682325388],[-71.286497171,41.682384684],[-71.286116481,41.682457913],[-71.285869692,41.682492146],[-71.285671886,41.682520066],[-71.285542219,41.682505806],[-71.285424399,41.682470253],[-71.284856359,41.682243449],[-71.284500755,41.682094224],[-71.28433646,41.682008339],[-71.284269348,41.681971188],[-71.284128146,41.681885483],[-71.284064691,41.681840335],[-71.283847668,41.681704106],[-71.283770042,41.681654883],[-71.283504734,41.681471613],[-71.283450117,41.681429202],[-71.28338233,41.6813754],[-71.283179841,41.681217906],[-71.283126303,41.681163514],[-71.283019536,41.681071332],[-71.282961379,41.6810025],[-71.282949003,41.680981552],[-71.282919431,41.680930657],[-71.28289252,41.680877802],[-71.282860377,41.680820225],[-71.282829045,41.680766674],[-71.282801441,41.680701834],[-71.282775561,41.680641616],[-71.282749572,41.680586749],[-71.282718316,41.680528556],[-71.28268257,41.680472253],[-71.28262088,41.680429143],[-71.282550237,41.680390634],[-71.282491081,41.680356219],[-71.282424895,41.680316415],[-71.282357872,41.680271899],[-71.282295342,41.680224762],[-71.28223911,41.680173702],[-71.282188986,41.680129333],[-71.282133604,41.680079556],[-71.282088784,41.680036591],[-71.282053788,41.679992981],[-71.281974543,41.679999738],[-71.28185634,41.68007951],[-71.281778887,41.68007033],[-71.281780106,41.680043666],[-71.281846355,41.680010151],[-71.28203624,41.679904856],[-71.282115611,41.679888106],[-71.282414572,41.679876277],[-71.282424674,41.679784362],[-71.282339556,41.679696406],[-71.282312619,41.6796693],[-71.282281309,41.679618609],[-71.282219152,41.679542382],[-71.282208352,41.679524775],[-71.28216372,41.679471131],[-71.282112801,41.679418732],[-71.282061796,41.679373698],[-71.282004482,41.679335946],[-71.281937416,41.679295432],[-71.281860556,41.679255539],[-71.281784488,41.679225002],[-71.281705738,41.679193773],[-71.281614547,41.67916108],[-71.281524229,41.67913175],[-71.281446188,41.67911653],[-71.281351862,41.679117837],[-71.281267268,41.679127899],[-71.281196848,41.679141395],[-71.281154472,41.679187739],[-71.28113945,41.679245638],[-71.281142276,41.679303022],[-71.281164569,41.679367853],[-71.281196626,41.679432086],[-71.281223421,41.679491597],[-71.281227686,41.679538487],[-71.281223135,41.679558214],[-71.281188285,41.679598009],[-71.281129111,41.679632269],[-71.281055871,41.679658383],[-71.280970365,41.679667116],[-71.280879557,41.679674444],[-71.280796766,41.67968316],[-71.280713147,41.679684555],[-71.280638441,41.679684001],[-71.280557511,41.679684098],[-71.280474815,41.679682843],[-71.280396692,41.679673568],[-71.280323916,41.67966172],[-71.28025291,41.679649876],[-71.280125462,41.679604282],[-71.280059081,41.679577787],[-71.280005254,41.679546742],[-71.279962403,41.679490424],[-71.279915091,41.679436088],[-71.279871223,41.679391752],[-71.27981307,41.679349996],[-71.279755714,41.679316222],[-71.279689578,41.679271752],[-71.279623272,41.679241277],[-71.279562426,41.679202146],[-71.279553684,41.679189437],[-71.279522009,41.679130122],[-71.279503856,41.679086292],[-71.279479863,41.679001607],[-71.27944097,41.678822581],[-71.279410753,41.678693655],[-71.279360793,41.678361314],[-71.279248552,41.677758471],[-71.279151948,41.677115065],[-71.279135291,41.677097584],[-71.279116793,41.677083415],[-71.27911331,41.677058458],[-71.279108664,41.677025403],[-71.279119704,41.676999468],[-71.279105131,41.676924351],[-71.27901647,41.677061515],[-71.27943447,41.679441515],[-71.27951647,41.679629516],[-71.27866447,41.679629516],[-71.27867947,41.680219515],[-71.27871747,41.681001516],[-71.27875547,41.681649516],[-71.27875547,41.681766516],[-71.27877847,41.682365516],[-71.27880847,41.682864516],[-71.27880847,41.682927516],[-71.27881647,41.683138517],[-71.27882647,41.683436516],[-71.27882947,41.683634516],[-71.27883147,41.683740517],[-71.27883947,41.683912516],[-71.27885447,41.684119516],[-71.27885447,41.684218516],[-71.27887047,41.684425517],[-71.27887047,41.684520517],[-71.27889347,41.684830517],[-71.27890647,41.685072516],[-71.27891547,41.685244517],[-71.27893147,41.685410517],[-71.27894647,41.685824517],[-71.27896147,41.686009516],[-71.27896147,41.686112517],[-71.27898147,41.686688517],[-71.27900747,41.687327517],[-71.27901447,41.687390517],[-71.27903847,41.687822517],[-71.27904547,41.688006517],[-71.27907647,41.688456517],[-71.27909847,41.689036517],[-71.279152471,41.689823518],[-71.27919847,41.690647518],[-71.279205471,41.690714518],[-71.279251471,41.691668518],[-71.279304471,41.692666518],[-71.279320471,41.692909519],[-71.279381471,41.693881519],[-71.279381471,41.693975518],[-71.27938847,41.694110518],[-71.279404471,41.694331519],[-71.27941147,41.694533518],[-71.27942747,41.694731518],[-71.279457471,41.695370518],[-71.279472471,41.695694519],[-71.27952647,41.696584519],[-71.279556471,41.697201519],[-71.27956447,41.697439519],[-71.279587471,41.697830519],[-71.279594471,41.698055519],[-71.279633471,41.698586519],[-71.279656471,41.698919519],[-71.279671471,41.699234519],[-71.279709471,41.699737519],[-71.279716471,41.699895519],[-71.279747471,41.700309519],[-71.279747471,41.70037252],[-71.279785471,41.70092552],[-71.279800471,41.70107352],[-71.279838471,41.70177552],[-71.279877471,41.70224252],[-71.279900471,41.70245852],[-71.279900471,41.70253052],[-71.279922471,41.70296252],[-71.279999471,41.70356852],[-71.280029472,41.70387852],[-71.280052471,41.704081521],[-71.280060471,41.70411252]]]]}}"}, +{"type": "precinct", "typeId": 204, "areaId": 25672, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":11,\"NAME\":\"0204\",\"SHAPE_Length\":0.10747468447601,\"SHAPE_Area\":-0.00037579520629465},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.262161465,41.687701518],[-71.262245465,41.688059517],[-71.262436465,41.688961518],[-71.262550465,41.689472518],[-71.262794465,41.690566518],[-71.262817465,41.690651518],[-71.262878465,41.690956518],[-71.262963465,41.691323518],[-71.262985466,41.691444519],[-71.263054465,41.691736519],[-71.263207465,41.692408518],[-71.263245465,41.692597519],[-71.263290465,41.692762518],[-71.263321465,41.692865519],[-71.263428466,41.693269519],[-71.263657465,41.694304519],[-71.263908465,41.695452519],[-71.264298466,41.697300519],[-71.264572466,41.698785519],[-71.264702467,41.69943552],[-71.264961466,41.70068252],[-71.265152466,41.70164252],[-71.265244467,41.70205952],[-71.265648467,41.704001521],[-71.265945467,41.705450521],[-71.267468468,41.705229521],[-71.268105468,41.70515952],[-71.269013468,41.705047521],[-71.269493468,41.705001521],[-71.269768468,41.704973521],[-71.270218469,41.704937521],[-71.270462468,41.704915521],[-71.272286469,41.704780521],[-71.273003469,41.704738521],[-71.273254469,41.70471552],[-71.27400247,41.704664521],[-71.27469647,41.704601521],[-71.27532247,41.70455752],[-71.27718847,41.704394521],[-71.277718471,41.70434852],[-71.278641471,41.70425352],[-71.279442471,41.70416552],[-71.280060471,41.70411252],[-71.280052471,41.704081521],[-71.280029472,41.70387852],[-71.279999471,41.70356852],[-71.279922471,41.70296252],[-71.279900471,41.70253052],[-71.279900471,41.70245852],[-71.279877471,41.70224252],[-71.279838471,41.70177552],[-71.279800471,41.70107352],[-71.279785471,41.70092552],[-71.279747471,41.70037252],[-71.279747471,41.700309519],[-71.279716471,41.699895519],[-71.279709471,41.699737519],[-71.279671471,41.699234519],[-71.279656471,41.698919519],[-71.279633471,41.698586519],[-71.279594471,41.698055519],[-71.279587471,41.697830519],[-71.27956447,41.697439519],[-71.279556471,41.697201519],[-71.27952647,41.696584519],[-71.279472471,41.695694519],[-71.279457471,41.695370518],[-71.27942747,41.694731518],[-71.27941147,41.694533518],[-71.279404471,41.694331519],[-71.27938847,41.694110518],[-71.279381471,41.693975518],[-71.279381471,41.693881519],[-71.279320471,41.692909519],[-71.279304471,41.692666518],[-71.279251471,41.691668518],[-71.279205471,41.690714518],[-71.27919847,41.690647518],[-71.279152471,41.689823518],[-71.27909847,41.689036517],[-71.27907647,41.688456517],[-71.27904547,41.688006517],[-71.27903847,41.687822517],[-71.27901447,41.687390517],[-71.27900747,41.687327517],[-71.27898147,41.686688517],[-71.27896147,41.686112517],[-71.27896147,41.686009516],[-71.27894647,41.685824517],[-71.27893147,41.685410517],[-71.27891547,41.685244517],[-71.27890647,41.685072516],[-71.27889347,41.684830517],[-71.27887047,41.684520517],[-71.27887047,41.684425517],[-71.27885447,41.684218516],[-71.27885447,41.684119516],[-71.27883947,41.683912516],[-71.27883147,41.683740517],[-71.27882947,41.683634516],[-71.27882647,41.683436516],[-71.27881647,41.683138517],[-71.27880847,41.682927516],[-71.27880847,41.682864516],[-71.27877847,41.682365516],[-71.27875547,41.681766516],[-71.27875547,41.681649516],[-71.27871747,41.681001516],[-71.27867947,41.680219515],[-71.27866447,41.679629516],[-71.27951647,41.679629516],[-71.27943447,41.679441515],[-71.27935147,41.679063516],[-71.27901647,41.677061515],[-71.279105131,41.676924351],[-71.279093025,41.676861949],[-71.279026704,41.676284099],[-71.279034464,41.675754142],[-71.279035404,41.675720206],[-71.279044131,41.675656966],[-71.279045339,41.675651457],[-71.27905183,41.675608727],[-71.279065285,41.675572345],[-71.279088392,41.675505154],[-71.279106128,41.675438638],[-71.279128146,41.67538679],[-71.2791547,41.675328342],[-71.279190162,41.675269933],[-71.279227308,41.675218183],[-71.279273208,41.675175848],[-71.279310913,41.675148112],[-71.279310782,41.675088103],[-71.279314302,41.675022132],[-71.279339006,41.674969671],[-71.279411187,41.674957529],[-71.279438339,41.674920396],[-71.279406088,41.67486945],[-71.279374788,41.674817225],[-71.279371929,41.674761235],[-71.279372417,41.674743147],[-71.27958358,41.674692096],[-71.279547081,41.674625797],[-71.279537555,41.674539058],[-71.279581896,41.674479386],[-71.279647535,41.674355194],[-71.279698066,41.674367572],[-71.279710129,41.674327665],[-71.279608989,41.674307575],[-71.279622282,41.674246997],[-71.279640008,41.674183112],[-71.279642484,41.674127818],[-71.279673454,41.674071345],[-71.279715099,41.674015029],[-71.279764661,41.673962731],[-71.279812403,41.673916375],[-71.279874279,41.673875489],[-71.279951075,41.673851371],[-71.280023842,41.673863929],[-71.280015042,41.673993878],[-71.280047923,41.673994101],[-71.280048746,41.673931441],[-71.280174427,41.672879604],[-71.280182324,41.672817666],[-71.280194956,41.672735749],[-71.280196585,41.672678442],[-71.280220914,41.67244863],[-71.279859478,41.672481304],[-71.279857161,41.672453948],[-71.279833864,41.672398468],[-71.279787192,41.672158115],[-71.279856454,41.672142284],[-71.280064378,41.67210815],[-71.280041158,41.672047959],[-71.280001632,41.672010996],[-71.279919791,41.672012371],[-71.279842154,41.672033148],[-71.279696118,41.672049425],[-71.279682612,41.671993987],[-71.279682984,41.671965333],[-71.279799723,41.67194486],[-71.279787299,41.671876068],[-71.27974754,41.671728371],[-71.279662766,41.671740489],[-71.279522826,41.67176684],[-71.279498042,41.671691324],[-71.279582825,41.671667909],[-71.2798086,41.671631225],[-71.279795991,41.671580888],[-71.279773879,41.671508968],[-71.27964313,41.671541672],[-71.27955493,41.67155639],[-71.279453297,41.671574994],[-71.27943096,41.671515491],[-71.279413082,41.671454007],[-71.279661276,41.671408196],[-71.279691186,41.671402719],[-71.2796393,41.671358985],[-71.279578554,41.671310545],[-71.279523139,41.671264152],[-71.279457889,41.671221673],[-71.27939252,41.671187152],[-71.279326379,41.671146683],[-71.279262864,41.671105557],[-71.279206479,41.671066479],[-71.279159132,41.671015481],[-71.279127049,41.670951889],[-71.27910122,41.670887691],[-71.279100322,41.670820362],[-71.279096572,41.670766315],[-71.279089286,41.67071162],[-71.279075827,41.670651494],[-71.279063209,41.670595394],[-71.279094751,41.670505007],[-71.279106444,41.670483738],[-71.279397025,41.67043053],[-71.279375459,41.670377684],[-71.279355764,41.670321525],[-71.279345,41.670258111],[-71.279333338,41.670198697],[-71.279318955,41.670141244],[-71.27930621,41.670095161],[-71.279348422,41.669997453],[-71.279329544,41.669943331],[-71.279314141,41.669898546],[-71.279242652,41.669924023],[-71.279137353,41.669953916],[-71.278582959,41.670055876],[-71.278532257,41.66998749],[-71.278453815,41.670003599],[-71.278443916,41.669972634],[-71.277908469,41.670088514],[-71.278068469,41.670531514],[-71.278320469,41.671206514],[-71.27845047,41.671595514],[-71.278496469,41.671720514],[-71.278593469,41.672011514],[-71.278668469,41.672255514],[-71.278738469,41.672526514],[-71.278814469,41.672855514],[-71.278883469,41.673276514],[-71.27890047,41.673428515],[-71.278267469,41.673544515],[-71.277717469,41.673659515],[-71.277183469,41.673759515],[-71.276360469,41.673924514],[-71.275101468,41.674183515],[-71.274132468,41.674369514],[-71.273392468,41.674532515],[-71.273361468,41.674533515],[-71.272461468,41.674717514],[-71.272743467,41.675473515],[-71.272957467,41.676067515],[-71.273147468,41.676591515],[-71.273285467,41.676957516],[-71.273353468,41.677163515],[-71.273384467,41.677243515],[-71.273850468,41.678963516],[-71.273995468,41.679564516],[-71.273598468,41.679594515],[-71.273188468,41.679647516],[-71.272942468,41.679679516],[-71.271934468,41.679798516],[-71.271584468,41.679841516],[-71.270836467,41.679937516],[-71.270493467,41.679980516],[-71.269760467,41.680057516],[-71.269714467,41.680072516],[-71.269692467,41.680090516],[-71.269676467,41.680136516],[-71.269676467,41.680235516],[-71.269707467,41.680437516],[-71.269814466,41.680930516],[-71.269920467,41.681054516],[-71.269959467,41.681112517],[-71.270012467,41.681286517],[-71.270020467,41.681475516],[-71.270104467,41.682685517],[-71.270164467,41.683377516],[-71.270195467,41.684070517],[-71.270203467,41.684106517],[-71.270248467,41.684988517],[-71.270264467,41.685154517],[-71.270309467,41.686027517],[-71.270332467,41.686823518],[-71.270126467,41.686841517],[-71.269661467,41.686891517],[-71.267914467,41.687056518],[-71.267670466,41.687083517],[-71.266815466,41.687181517],[-71.266304466,41.687232518],[-71.265671466,41.687307518],[-71.265106466,41.687368518],[-71.265068466,41.687369518],[-71.264526466,41.687429518],[-71.263520465,41.687548517],[-71.263481465,41.687548517],[-71.262161465,41.687701518]]]]}}"}, +{"type": "precinct", "typeId": 205, "areaId": 25671, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":10,\"NAME\":\"0205\",\"SHAPE_Length\":0.08689172687974,\"SHAPE_Area\":-0.00031551597456463},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.248821596,41.703501496],[-71.249176462,41.703437521],[-71.249603462,41.703416521],[-71.249992462,41.703386521],[-71.250076462,41.703379521],[-71.250885462,41.703264521],[-71.250977462,41.703254521],[-71.251251462,41.703208521],[-71.251800462,41.703129521],[-71.252853462,41.702960521],[-71.253380463,41.702887521],[-71.253929463,41.70279952],[-71.254051463,41.702783521],[-71.254150463,41.70275952],[-71.254211463,41.70274052],[-71.254486463,41.70258652],[-71.254616463,41.70250752],[-71.254944463,41.703572521],[-71.255020463,41.703827521],[-71.255211463,41.704395521],[-71.255234463,41.704481521],[-71.255226463,41.704557521],[-71.255234463,41.704638521],[-71.255203464,41.704792521],[-71.255165464,41.704937521],[-71.255112463,41.705055521],[-71.255020463,41.705196522],[-71.254661463,41.705482521],[-71.254563463,41.705565522],[-71.254517463,41.705620522],[-71.254478463,41.705675521],[-71.254448463,41.705833522],[-71.254448463,41.705883521],[-71.254456463,41.705946521],[-71.254471463,41.705968521],[-71.254501463,41.706030522],[-71.254593463,41.706137521],[-71.254730463,41.706220521],[-71.254791463,41.706250521],[-71.254913464,41.706297521],[-71.254967464,41.706301522],[-71.255020463,41.706299521],[-71.255081463,41.706307522],[-71.255226463,41.706291521],[-71.255341464,41.706284522],[-71.255859464,41.706215521],[-71.256569464,41.706138521],[-71.256661464,41.706141521],[-71.256805463,41.706156521],[-71.256889464,41.706177521],[-71.256950464,41.706199521],[-71.257004464,41.706224522],[-71.257118464,41.706308522],[-71.257164464,41.706361522],[-71.257202464,41.706396521],[-71.257256464,41.706503522],[-71.257286464,41.706606521],[-71.257294464,41.706656522],[-71.257309464,41.706709522],[-71.257339464,41.706916521],[-71.257973465,41.706840521],[-71.258598465,41.706756522],[-71.258957465,41.706713522],[-71.259392465,41.706655522],[-71.259804465,41.706584521],[-71.259910465,41.706555522],[-71.259987465,41.706526521],[-71.260103465,41.706497522],[-71.260163465,41.706482522],[-71.260323465,41.706456521],[-71.260506465,41.706439522],[-71.260880466,41.706441522],[-71.261261465,41.706411521],[-71.261696466,41.706348521],[-71.261765465,41.706342521],[-71.262085466,41.706305522],[-71.264046466,41.706045521],[-71.264160466,41.706021521],[-71.264236466,41.706001521],[-71.264305466,41.705977521],[-71.264404467,41.705935521],[-71.264488467,41.705893521],[-71.264760467,41.705739521],[-71.264976467,41.705617521],[-71.265068467,41.705575521],[-71.265144467,41.705546521],[-71.265312466,41.705498521],[-71.265388466,41.705488521],[-71.265511467,41.705476521],[-71.265945467,41.705450521],[-71.265648467,41.704001521],[-71.265244467,41.70205952],[-71.265152466,41.70164252],[-71.264961466,41.70068252],[-71.264702467,41.69943552],[-71.264572466,41.698785519],[-71.264298466,41.697300519],[-71.263908465,41.695452519],[-71.263657465,41.694304519],[-71.263428466,41.693269519],[-71.263321465,41.692865519],[-71.263290465,41.692762518],[-71.263245465,41.692597519],[-71.263207465,41.692408518],[-71.263054465,41.691736519],[-71.262985466,41.691444519],[-71.262963465,41.691323518],[-71.262878465,41.690956518],[-71.262817465,41.690651518],[-71.262794465,41.690566518],[-71.262550465,41.689472518],[-71.262436465,41.688961518],[-71.262245465,41.688059517],[-71.262161465,41.687701518],[-71.261970465,41.686876518],[-71.261940464,41.686719517],[-71.260864464,41.686862518],[-71.259834464,41.686990517],[-71.259087463,41.687077518],[-71.257225463,41.687311518],[-71.256615463,41.687395517],[-71.256248463,41.687439518],[-71.255221463,41.687564518],[-71.254791462,41.687611518],[-71.254204462,41.687681518],[-71.253578462,41.687757518],[-71.253189462,41.687800518],[-71.252808461,41.687853518],[-71.252235462,41.687927518],[-71.251366461,41.688043518],[-71.250778461,41.688127518],[-71.250343461,41.688185518],[-71.249290461,41.688336518],[-71.248962461,41.688392518],[-71.248398461,41.688475518],[-71.24824546,41.688501519],[-71.24749046,41.688601518],[-71.24740646,41.688616519],[-71.24658246,41.688727518],[-71.245659459,41.688862518],[-71.244743459,41.688997518],[-71.243835459,41.689118518],[-71.242919577,41.689225504],[-71.242993828,41.689297983],[-71.243103157,41.689409967],[-71.243195911,41.689531541],[-71.243258944,41.689631437],[-71.243328927,41.689748226],[-71.243383769,41.689859493],[-71.243422707,41.689972851],[-71.2434492,41.690093225],[-71.243476774,41.690225493],[-71.24351934,41.690355142],[-71.243553145,41.690462863],[-71.243579487,41.690575072],[-71.243598498,41.690697373],[-71.243632632,41.690822041],[-71.243674147,41.69093975],[-71.243691327,41.691054545],[-71.243668917,41.691111966],[-71.243604126,41.691193053],[-71.243630625,41.6912198],[-71.243729112,41.6912433],[-71.243786312,41.691345127],[-71.243801059,41.691465635],[-71.243799784,41.691579338],[-71.243806071,41.691601924],[-71.243862539,41.691573051],[-71.243908919,41.691587654],[-71.24393178,41.691647142],[-71.243890963,41.691660727],[-71.243807647,41.691689219],[-71.24377409,41.691734196],[-71.243805368,41.691748331],[-71.243871779,41.69175893],[-71.243881171,41.691814134],[-71.24383362,41.691871796],[-71.243865364,41.691914815],[-71.243916327,41.691950741],[-71.243895069,41.692025751],[-71.243851846,41.692092158],[-71.243879972,41.692208762],[-71.243936493,41.692228281],[-71.244071618,41.692238187],[-71.244157193,41.692332804],[-71.244218897,41.69245344],[-71.244261197,41.692566096],[-71.244338528,41.692670231],[-71.244419965,41.692769939],[-71.244500027,41.692885355],[-71.244567445,41.692996512],[-71.244637539,41.693117691],[-71.244725866,41.693226722],[-71.244814069,41.693282375],[-71.244915844,41.693300805],[-71.244991322,41.69339556],[-71.245053906,41.693518094],[-71.24512195,41.693617932],[-71.245203744,41.693735844],[-71.245282032,41.693845629],[-71.245323455,41.693957025],[-71.245395984,41.694072538],[-71.24551451,41.694184402],[-71.245580925,41.694287392],[-71.245628361,41.694406302],[-71.245672194,41.694510157],[-71.245730076,41.69464965],[-71.245773301,41.694768619],[-71.245817555,41.694897585],[-71.24585758,41.695023477],[-71.245844735,41.695147353],[-71.245865322,41.695219437],[-71.245935878,41.695317336],[-71.246018925,41.695412632],[-71.246090603,41.69552812],[-71.24612925,41.695671],[-71.246145483,41.695779504],[-71.246158738,41.695908173],[-71.246160691,41.696016851],[-71.24616305,41.696146296],[-71.24616128,41.696278247],[-71.246138189,41.696392817],[-71.246102482,41.69650315],[-71.246066675,41.696607812],[-71.24599768,41.696686421],[-71.245913813,41.696729389],[-71.245929645,41.696815938],[-71.245979058,41.6969059],[-71.245948004,41.696996691],[-71.245871802,41.697092367],[-71.245814248,41.697202263],[-71.245756077,41.697321603],[-71.245687938,41.697446089],[-71.245625228,41.697547879],[-71.245532965,41.697638053],[-71.245422176,41.697721486],[-71.245317991,41.697801755],[-71.245194673,41.697889688],[-71.245089619,41.697965563],[-71.244984054,41.698062752],[-71.244906339,41.698169744],[-71.244837172,41.698283548],[-71.244780774,41.698409157],[-71.244764444,41.698526165],[-71.244776092,41.698566898],[-71.244871916,41.698579757],[-71.244968487,41.698542947],[-71.24500325,41.698656935],[-71.245047032,41.698712444],[-71.245125572,41.698697799],[-71.245213979,41.698580013],[-71.245288903,41.698461122],[-71.245381541,41.698345838],[-71.245488731,41.698246709],[-71.245612597,41.698143661],[-71.245726574,41.698048892],[-71.245833688,41.697945394],[-71.245920312,41.697869088],[-71.246068403,41.697851852],[-71.246238852,41.697821218],[-71.246353081,41.697786114],[-71.246370061,41.697751368],[-71.246322046,41.697693426],[-71.246250768,41.697646432],[-71.246297466,41.697542275],[-71.246354069,41.697472558],[-71.246447932,41.697471621],[-71.246590238,41.69755184],[-71.246707349,41.697629785],[-71.246793836,41.697728198],[-71.246862135,41.697842466],[-71.246952624,41.697932038],[-71.247019998,41.697994367],[-71.247050675,41.698022747],[-71.247060396,41.698096178],[-71.2470012,41.698204882],[-71.246881663,41.698270802],[-71.246715645,41.698315192],[-71.246566632,41.69832616],[-71.246403113,41.698324702],[-71.246285981,41.698290734],[-71.246160803,41.698231044],[-71.246032849,41.698202221],[-71.245936705,41.69821637],[-71.245932171,41.698290593],[-71.245965963,41.698395774],[-71.246009043,41.698505939],[-71.24606064,41.698622891],[-71.246110787,41.698751824],[-71.2461585,41.6988864],[-71.246170953,41.699017582],[-71.246112177,41.69915078],[-71.246006944,41.699264298],[-71.245882348,41.699374275],[-71.245790983,41.699468202],[-71.245676833,41.699552314],[-71.245551708,41.699633406],[-71.245414187,41.699724006],[-71.245294448,41.699824502],[-71.245188086,41.699921758],[-71.245087251,41.700002559],[-71.244954165,41.700105701],[-71.244850082,41.700189697],[-71.244758766,41.70028614],[-71.24468123,41.700401274],[-71.244614529,41.700515723],[-71.244553068,41.700640109],[-71.244514078,41.70075359],[-71.244496971,41.700873798],[-71.244504916,41.700986812],[-71.244540302,41.701043629],[-71.244652183,41.70106382],[-71.244826504,41.701059519],[-71.24499441,41.701025794],[-71.245169376,41.701012666],[-71.245338664,41.701007827],[-71.245526627,41.70097195],[-71.245671844,41.700934652],[-71.245807786,41.70089683],[-71.245947164,41.70086208],[-71.246092557,41.700834203],[-71.246253946,41.700812468],[-71.246429744,41.700796848],[-71.246594794,41.70079074],[-71.246766584,41.700785858],[-71.246912422,41.700784373],[-71.247049788,41.700787763],[-71.247110672,41.700786204],[-71.247301737,41.700791747],[-71.247451053,41.700805889],[-71.247615079,41.700835613],[-71.24771341,41.7008796],[-71.247771424,41.700909641],[-71.247828645,41.700955276],[-71.247858962,41.701005975],[-71.247893087,41.701066401],[-71.247928084,41.701121981],[-71.247964793,41.701161465],[-71.247995539,41.70116478],[-71.247999438,41.701182192],[-71.247996006,41.701209376],[-71.248021661,41.701344429],[-71.248357364,41.701680449],[-71.248459167,41.701718886],[-71.248513038,41.701802202],[-71.248542167,41.701829251],[-71.248591837,41.701863069],[-71.248603861,41.701941056],[-71.248614761,41.70200237],[-71.24863765,41.702056574],[-71.248644581,41.702094872],[-71.248630682,41.702098432],[-71.248707131,41.702284777],[-71.248822592,41.70246812],[-71.248859047,41.7024867],[-71.248908291,41.702528155],[-71.248978963,41.702568216],[-71.249040049,41.70262502],[-71.249090817,41.702674894],[-71.249127687,41.702728328],[-71.249135757,41.702787508],[-71.249136367,41.702842578],[-71.24912955,41.702900491],[-71.249085377,41.702943983],[-71.248998197,41.702966113],[-71.249008669,41.702988364],[-71.249031361,41.703023061],[-71.249023696,41.703040104],[-71.249007751,41.703075517],[-71.248961827,41.703129456],[-71.248954541,41.703135569],[-71.248905713,41.703190829],[-71.248794217,41.703243138],[-71.248735787,41.70325632],[-71.24880265,41.70347553],[-71.248821596,41.703501496]]]]}}"}, +{"type": "precinct", "typeId": 206, "areaId": 25673, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":12,\"NAME\":\"0206\",\"SHAPE_Length\":0.11424890725772,\"SHAPE_Area\":-0.00042023294951958},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.217937036,41.686117278],[-71.218103809,41.686162739],[-71.218229687,41.686218666],[-71.218384505,41.686298172],[-71.218503329,41.686383697],[-71.218591655,41.686494646],[-71.218663956,41.68660073],[-71.218752614,41.686684671],[-71.2187894,41.686679273],[-71.218807603,41.686618783],[-71.218764452,41.686502341],[-71.218691907,41.686382421],[-71.218627248,41.686280037],[-71.218568222,41.686166278],[-71.21852685,41.68605485],[-71.218503085,41.685991627],[-71.218501811,41.68592002],[-71.218551829,41.685811446],[-71.218591718,41.685696054],[-71.218620489,41.685569475],[-71.218656966,41.685452862],[-71.218702607,41.685333665],[-71.218731211,41.685245414],[-71.218719379,41.68514627],[-71.218666036,41.685114763],[-71.218532143,41.685127402],[-71.218416029,41.685197669],[-71.218389999,41.685241286],[-71.218452981,41.685343071],[-71.218453239,41.685451792],[-71.218399948,41.685471169],[-71.218292494,41.685507427],[-71.218208695,41.685603776],[-71.218165272,41.685612977],[-71.218033496,41.685601722],[-71.217882443,41.685638423],[-71.217734595,41.685716547],[-71.217633834,41.685798628],[-71.217554988,41.685892404],[-71.217490795,41.686004877],[-71.217509522,41.686068774],[-71.217635009,41.686102083],[-71.217780792,41.686098736],[-71.217937036,41.686117278]]],[[[-71.242404289,41.687806118],[-71.242436841,41.687936454],[-71.242502595,41.688049506],[-71.242503299,41.688133072],[-71.242407689,41.688223283],[-71.242435855,41.68829838],[-71.242540723,41.688395969],[-71.242616444,41.688503875],[-71.24265701,41.688614058],[-71.242687862,41.688742561],[-71.242733786,41.688870891],[-71.242783712,41.68899038],[-71.242844535,41.689108521],[-71.242905935,41.689212187],[-71.242919577,41.689225504],[-71.243835459,41.689118518],[-71.244743459,41.688997518],[-71.245659459,41.688862518],[-71.24658246,41.688727518],[-71.24740646,41.688616519],[-71.24749046,41.688601518],[-71.24824546,41.688501519],[-71.248398461,41.688475518],[-71.248962461,41.688392518],[-71.249290461,41.688336518],[-71.250343461,41.688185518],[-71.250778461,41.688127518],[-71.251366461,41.688043518],[-71.252235462,41.687927518],[-71.252808461,41.687853518],[-71.253189462,41.687800518],[-71.253578462,41.687757518],[-71.254204462,41.687681518],[-71.254791462,41.687611518],[-71.255221463,41.687564518],[-71.256248463,41.687439518],[-71.256615463,41.687395517],[-71.257225463,41.687311518],[-71.259087463,41.687077518],[-71.259834464,41.686990517],[-71.260864464,41.686862518],[-71.261940464,41.686719517],[-71.261970465,41.686876518],[-71.262161465,41.687701518],[-71.263481465,41.687548517],[-71.263520465,41.687548517],[-71.264526466,41.687429518],[-71.265068466,41.687369518],[-71.265106466,41.687368518],[-71.265671466,41.687307518],[-71.266304466,41.687232518],[-71.266815466,41.687181517],[-71.267670466,41.687083517],[-71.267914467,41.687056518],[-71.269661467,41.686891517],[-71.270126467,41.686841517],[-71.270332467,41.686823518],[-71.270309467,41.686027517],[-71.270264467,41.685154517],[-71.270248467,41.684988517],[-71.270203467,41.684106517],[-71.270195467,41.684070517],[-71.270164467,41.683377516],[-71.270104467,41.682685517],[-71.270020467,41.681475516],[-71.270012467,41.681286517],[-71.269959467,41.681112517],[-71.269920467,41.681054516],[-71.269814466,41.680930516],[-71.269707467,41.680437516],[-71.269676467,41.680235516],[-71.269676467,41.680136516],[-71.269692467,41.680090516],[-71.269714467,41.680072516],[-71.269760467,41.680057516],[-71.270493467,41.679980516],[-71.270836467,41.679937516],[-71.271584468,41.679841516],[-71.271324467,41.678883516],[-71.271179467,41.678323516],[-71.271141467,41.678130515],[-71.271072467,41.677865515],[-71.270950467,41.677431515],[-71.270058467,41.677606515],[-71.269692467,41.677672516],[-71.268608466,41.677883515],[-71.268295466,41.676993516],[-71.268997466,41.676853515],[-71.268906466,41.676584516],[-71.268799466,41.676294516],[-71.268501466,41.675503515],[-71.268188466,41.675563515],[-71.267830466,41.675646515],[-71.267715466,41.675360515],[-71.267632466,41.675105515],[-71.267441466,41.674596515],[-71.267128465,41.673625514],[-71.266785466,41.672551514],[-71.266579465,41.672564515],[-71.266113465,41.672564515],[-71.265900465,41.672573514],[-71.265343465,41.672615514],[-71.265297465,41.672625515],[-71.265114464,41.672647515],[-71.264870465,41.672683515],[-71.264572464,41.672743515],[-71.263710464,41.672913515],[-71.263252464,41.672999515],[-71.262840464,41.673083515],[-71.262054464,41.673243515],[-71.261765464,41.673294514],[-71.260803463,41.673488515],[-71.259941464,41.673667515],[-71.259102463,41.673846515],[-71.259079463,41.673729515],[-71.259033463,41.673541515],[-71.258827463,41.673590515],[-71.258613463,41.673635515],[-71.258194462,41.673697515],[-71.257439462,41.673784515],[-71.257332462,41.673795515],[-71.257279462,41.673800515],[-71.257178462,41.673811515],[-71.256378462,41.673872515],[-71.255531462,41.673957515],[-71.254654462,41.674055515],[-71.253617461,41.674173515],[-71.251434461,41.674420516],[-71.25007646,41.674559516],[-71.247994459,41.674798515],[-71.247818459,41.674815515],[-71.246590459,41.674956515],[-71.246452459,41.674968516],[-71.245285458,41.675108515],[-71.245140459,41.675146515],[-71.245094458,41.675165515],[-71.244995458,41.675230516],[-71.244919458,41.675331516],[-71.244682458,41.675777516],[-71.244278458,41.676582516],[-71.244209458,41.676732516],[-71.244049459,41.677019516],[-71.243965458,41.677151516],[-71.243797459,41.677393516],[-71.243713458,41.677493516],[-71.243507458,41.677759516],[-71.243385458,41.677892517],[-71.243256458,41.678002516],[-71.243050458,41.678137516],[-71.242973458,41.678174516],[-71.242821458,41.678236516],[-71.242668457,41.678284517],[-71.242416457,41.678343516],[-71.242325458,41.678358517],[-71.242195458,41.678370516],[-71.242027457,41.678373516],[-71.241928457,41.678361517],[-71.241882458,41.678344516],[-71.241829457,41.678332516],[-71.241730458,41.678280517],[-71.241661457,41.678191516],[-71.241646458,41.678160516],[-71.241631458,41.678097516],[-71.241615457,41.678061516],[-71.241425457,41.677160516],[-71.241402457,41.677079516],[-71.241387457,41.677012516],[-71.241356458,41.676648516],[-71.241348457,41.676229516],[-71.241348457,41.676193516],[-71.241310457,41.676167516],[-71.241295457,41.676163516],[-71.240624457,41.676176516],[-71.240189457,41.676202516],[-71.239723456,41.676207516],[-71.239075457,41.676247516],[-71.238533456,41.676262516],[-71.238510457,41.676253516],[-71.238487457,41.676249516],[-71.238426456,41.676201516],[-71.238342456,41.676081516],[-71.238312456,41.676014516],[-71.238297457,41.675937516],[-71.238296457,41.675901516],[-71.238304456,41.675856516],[-71.238304456,41.675820516],[-71.238319456,41.675743516],[-71.238319456,41.675721516],[-71.238327456,41.675694516],[-71.238327456,41.675671516],[-71.238304456,41.675604516],[-71.238228456,41.675524516],[-71.238174456,41.675499516],[-71.238106456,41.675486516],[-71.238075456,41.675487516],[-71.238037456,41.675483516],[-71.237892456,41.675486516],[-71.237595456,41.675510516],[-71.237450456,41.675531516],[-71.237297456,41.675547516],[-71.237251456,41.675557516],[-71.237198456,41.675563516],[-71.237076456,41.675596516],[-71.237038456,41.675615516],[-71.237007456,41.675625516],[-71.236923456,41.675667516],[-71.237015456,41.675926516],[-71.237076456,41.676231516],[-71.237120456,41.676555516],[-71.235504875,41.677289326],[-71.235487091,41.677361402],[-71.235490706,41.67742453],[-71.23549578,41.67749658],[-71.235494248,41.677572593],[-71.235494578,41.677648657],[-71.235499452,41.677724777],[-71.2355109,41.677797048],[-71.235526078,41.677867268],[-71.235539423,41.677938171],[-71.235552877,41.678004957],[-71.235570152,41.678069762],[-71.235592207,41.678129227],[-71.235607957,41.678186482],[-71.23560367,41.678242571],[-71.235577015,41.678308396],[-71.235573377,41.678369906],[-71.23560158,41.678477479],[-71.235640187,41.678510293],[-71.235707437,41.678558062],[-71.235750475,41.678633698],[-71.235798573,41.678702713],[-71.235845369,41.678769645],[-71.235884745,41.678838183],[-71.235920222,41.67889777],[-71.235967603,41.678948489],[-71.236003165,41.678987242],[-71.23602519,41.679047004],[-71.236032359,41.679091707],[-71.236013214,41.679111102],[-71.235968211,41.679157949],[-71.235997823,41.679212103],[-71.236044282,41.679257102],[-71.236059843,41.679256109],[-71.236139758,41.679250598],[-71.236207004,41.67929242],[-71.236254372,41.679346088],[-71.236309679,41.679405721],[-71.236337207,41.679462317],[-71.236356233,41.679539521],[-71.236443873,41.679569704],[-71.236499173,41.679623413],[-71.236581266,41.679689968],[-71.236635971,41.679755019],[-71.236647578,41.679841057],[-71.236652347,41.679891151],[-71.236671954,41.679945374],[-71.236705979,41.680002373],[-71.236738517,41.680057654],[-71.236750181,41.680077462],[-71.236783424,41.680131716],[-71.236819343,41.680188125],[-71.236856114,41.680245199],[-71.23689546,41.680306442],[-71.236930944,41.680372432],[-71.236965211,41.680445189],[-71.236994051,41.680517156],[-71.237019433,41.680584221],[-71.23704878,41.680643862],[-71.237085452,41.680703017],[-71.237127544,41.680764357],[-71.237168791,41.680823591],[-71.237208307,41.68088074],[-71.237247585,41.680944041],[-71.23726039,41.681006023],[-71.237252428,41.681020892],[-71.237208603,41.681040391],[-71.23716878,41.681073643],[-71.23717616,41.681134104],[-71.237219296,41.681171479],[-71.237272257,41.681193349],[-71.237381196,41.681230234],[-71.23741291,41.681278355],[-71.237460289,41.681322692],[-71.237510038,41.681376663],[-71.237556846,41.681434034],[-71.237594768,41.681485668],[-71.237631873,41.681535882],[-71.237667251,41.681583348],[-71.237708465,41.681643291],[-71.237717776,41.681701743],[-71.237678768,41.681737078],[-71.237699217,41.681749635],[-71.237758704,41.68174977],[-71.23784557,41.681851165],[-71.23789683,41.681931621],[-71.237957373,41.682009789],[-71.238000116,41.682076596],[-71.238026038,41.682131358],[-71.23805372,41.682188229],[-71.238070558,41.682241392],[-71.238062976,41.682267926],[-71.238026133,41.682295788],[-71.238040822,41.682314643],[-71.238115475,41.682321285],[-71.238164942,41.682325011],[-71.238230157,41.682394682],[-71.238277434,41.68244174],[-71.238319251,41.682488672],[-71.238370772,41.682542692],[-71.238423473,41.682591272],[-71.238466309,41.682635484],[-71.238507145,41.682683785],[-71.23852436,41.682749299],[-71.23855303,41.68280345],[-71.238591399,41.682866039],[-71.238600877,41.682921061],[-71.238580922,41.682959618],[-71.238538347,41.682971619],[-71.238351853,41.68305604],[-71.238353641,41.68311914],[-71.238425918,41.683117475],[-71.238732676,41.683062052],[-71.23876707,41.68311155],[-71.238772622,41.683171938],[-71.238770506,41.683219867],[-71.238383346,41.683317186],[-71.238428755,41.683426513],[-71.238530072,41.683402983],[-71.238897988,41.683334685],[-71.238911055,41.683324767],[-71.238937075,41.683325375],[-71.238960684,41.683356393],[-71.239006136,41.683402601],[-71.239025899,41.683426453],[-71.239039677,41.683444299],[-71.239057428,41.683468146],[-71.239091012,41.683499439],[-71.23912852,41.683548647],[-71.239148175,41.683591777],[-71.239159887,41.683645341],[-71.239127889,41.683704751],[-71.239176053,41.683842327],[-71.23921138,41.683933084],[-71.23922988,41.683990459],[-71.239279504,41.684038643],[-71.239301061,41.684049028],[-71.239321463,41.684156857],[-71.239331173,41.684230267],[-71.239437608,41.684322191],[-71.239511647,41.68442886],[-71.239591413,41.684529849],[-71.239668958,41.684644668],[-71.239716101,41.684748486],[-71.239766643,41.684856681],[-71.239808102,41.684970617],[-71.239869916,41.685098139],[-71.23992054,41.685208826],[-71.239968586,41.68531578],[-71.240012427,41.685421557],[-71.240074135,41.685545305],[-71.240135631,41.68565341],[-71.2401971,41.685760851],[-71.240253756,41.6858815],[-71.240314277,41.685982055],[-71.24037597,41.686010941],[-71.240425599,41.686020521],[-71.240535742,41.686132486],[-71.240646663,41.686240702],[-71.240752152,41.68632631],[-71.240841165,41.686427822],[-71.240923519,41.686531285],[-71.240999259,41.686641113],[-71.241067719,41.686762932],[-71.241110439,41.686829577],[-71.241134118,41.686866542],[-71.241230691,41.686969876],[-71.241353986,41.687066639],[-71.241418691,41.687166471],[-71.241516145,41.687271043],[-71.241608792,41.687341711],[-71.241741305,41.687346034],[-71.241888118,41.687352721],[-71.242030947,41.68737136],[-71.242165871,41.687390896],[-71.242172975,41.687391895],[-71.2422534,41.687482821],[-71.242314823,41.687587745],[-71.242317052,41.687663745],[-71.242180702,41.687726078],[-71.242136879,41.687759826],[-71.242178672,41.687799003],[-71.24228818,41.687780907],[-71.242367506,41.687765008],[-71.242404289,41.687806118]]],[[[-71.21959641,41.687846156],[-71.219577086,41.687890955],[-71.219615105,41.688002421],[-71.219681042,41.688127424],[-71.219780287,41.688240137],[-71.219877827,41.688352274],[-71.219977168,41.688471276],[-71.220089161,41.688592687],[-71.220216251,41.688715186],[-71.220358967,41.688822447],[-71.220497312,41.688917851],[-71.220631416,41.689013267],[-71.220763831,41.689104288],[-71.220880164,41.689189186],[-71.221030131,41.689278169],[-71.221188166,41.68935011],[-71.221332582,41.689410858],[-71.221408213,41.689467894],[-71.22143062,41.68954998],[-71.221515023,41.68958243],[-71.221599368,41.689564636],[-71.221720275,41.689480496],[-71.221739149,41.68941246],[-71.221697264,41.689319258],[-71.221554524,41.689259087],[-71.221413607,41.689207724],[-71.221268293,41.689143201],[-71.221124334,41.689061712],[-71.22099793,41.688977521],[-71.220890965,41.688899437],[-71.220781844,41.688798113],[-71.220677909,41.688703662],[-71.220594077,41.688610267],[-71.220566172,41.688501845],[-71.220564007,41.688381845],[-71.220537878,41.688279076],[-71.220537805,41.688274662],[-71.220535695,41.688155943],[-71.220517656,41.688038008],[-71.220467915,41.687927909],[-71.22035579,41.68784421],[-71.220210531,41.687831209],[-71.22004148,41.687845457],[-71.219884675,41.687842651],[-71.219745959,41.687819535],[-71.21959641,41.687846156]]]]}}"}, +{"type": "precinct", "typeId": 207, "areaId": 25674, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":13,\"NAME\":\"0207\",\"SHAPE_Length\":0.16245602741878,\"SHAPE_Area\":-0.00050602498238868},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.235504875,41.677289326],[-71.237120456,41.676555516],[-71.237076456,41.676231516],[-71.237015456,41.675926516],[-71.236923456,41.675667516],[-71.237007456,41.675625516],[-71.237038456,41.675615516],[-71.237076456,41.675596516],[-71.237198456,41.675563516],[-71.237251456,41.675557516],[-71.237297456,41.675547516],[-71.237450456,41.675531516],[-71.237595456,41.675510516],[-71.237892456,41.675486516],[-71.238037456,41.675483516],[-71.238075456,41.675487516],[-71.238106456,41.675486516],[-71.238174456,41.675499516],[-71.238228456,41.675524516],[-71.238304456,41.675604516],[-71.238327456,41.675671516],[-71.238327456,41.675694516],[-71.238319456,41.675721516],[-71.238319456,41.675743516],[-71.238304456,41.675820516],[-71.238304456,41.675856516],[-71.238296457,41.675901516],[-71.238297457,41.675937516],[-71.238312456,41.676014516],[-71.238342456,41.676081516],[-71.238426456,41.676201516],[-71.238487457,41.676249516],[-71.238510457,41.676253516],[-71.238533456,41.676262516],[-71.239075457,41.676247516],[-71.239723456,41.676207516],[-71.240189457,41.676202516],[-71.240624457,41.676176516],[-71.241295457,41.676163516],[-71.241310457,41.676167516],[-71.241348457,41.676193516],[-71.241348457,41.676229516],[-71.241356458,41.676648516],[-71.241387457,41.677012516],[-71.241402457,41.677079516],[-71.241425457,41.677160516],[-71.241615457,41.678061516],[-71.241631458,41.678097516],[-71.241646458,41.678160516],[-71.241661457,41.678191516],[-71.241730458,41.678280517],[-71.241829457,41.678332516],[-71.241882458,41.678344516],[-71.241928457,41.678361517],[-71.242027457,41.678373516],[-71.242195458,41.678370516],[-71.242325458,41.678358517],[-71.242416457,41.678343516],[-71.242668457,41.678284517],[-71.242821458,41.678236516],[-71.242973458,41.678174516],[-71.243050458,41.678137516],[-71.243256458,41.678002516],[-71.243385458,41.677892517],[-71.243507458,41.677759516],[-71.243713458,41.677493516],[-71.243797459,41.677393516],[-71.243965458,41.677151516],[-71.244049459,41.677019516],[-71.244209458,41.676732516],[-71.244278458,41.676582516],[-71.244682458,41.675777516],[-71.244919458,41.675331516],[-71.244995458,41.675230516],[-71.245094458,41.675165515],[-71.245140459,41.675146515],[-71.245285458,41.675108515],[-71.246452459,41.674968516],[-71.246590459,41.674956515],[-71.247818459,41.674815515],[-71.247994459,41.674798515],[-71.25007646,41.674559516],[-71.251434461,41.674420516],[-71.253617461,41.674173515],[-71.254654462,41.674055515],[-71.255531462,41.673957515],[-71.256378462,41.673872515],[-71.257178462,41.673811515],[-71.257279462,41.673800515],[-71.257332462,41.673795515],[-71.257439462,41.673784515],[-71.258194462,41.673697515],[-71.258613463,41.673635515],[-71.258827463,41.673590515],[-71.259033463,41.673541515],[-71.258987463,41.673321515],[-71.258843463,41.672694515],[-71.258736462,41.672183514],[-71.258476463,41.670909515],[-71.258389462,41.670507514],[-71.258263463,41.669931514],[-71.257896463,41.668187514],[-71.257711462,41.667329514],[-71.257672462,41.667146514],[-71.257332462,41.665572513],[-71.257645462,41.665521513],[-71.258209463,41.665393514],[-71.258789463,41.665278513],[-71.259445463,41.665126513],[-71.259842463,41.665055513],[-71.260429463,41.664931513],[-71.261192464,41.664785513],[-71.262138463,41.664591513],[-71.262710464,41.664462513],[-71.263268464,41.664352513],[-71.263458464,41.664308513],[-71.263580464,41.664279513],[-71.263756464,41.664226513],[-71.264137465,41.664092513],[-71.264404464,41.664024513],[-71.264763464,41.663954513],[-71.265175464,41.663860513],[-71.265289464,41.663840513],[-71.265373464,41.663824513],[-71.266243465,41.663628513],[-71.266701465,41.663531513],[-71.267029465,41.663463513],[-71.268104465,41.663226513],[-71.268291466,41.663713513],[-71.268364466,41.663901513],[-71.268715466,41.664821513],[-71.268776466,41.664991513],[-71.268891466,41.665304513],[-71.269112465,41.665876513],[-71.269157466,41.665992513],[-71.269379466,41.666578514],[-71.269814466,41.666479513],[-71.270416467,41.666359513],[-71.271515466,41.666135513],[-71.272049467,41.666030513],[-71.272431467,41.667017513],[-71.272667467,41.667666513],[-71.273109467,41.667567513],[-71.273804468,41.667418514],[-71.274575467,41.667227513],[-71.275276468,41.667083513],[-71.276069468,41.666896513],[-71.276710469,41.666775513],[-71.276999468,41.666705513],[-71.277131468,41.666672513],[-71.276468837,41.666123647],[-71.276419543,41.666097863],[-71.276373001,41.666054207],[-71.276316633,41.666011789],[-71.276247778,41.66597328],[-71.276191521,41.665925534],[-71.276140453,41.665885161],[-71.276128134,41.665875738],[-71.276096852,41.665820151],[-71.276066527,41.665761272],[-71.276033434,41.665709019],[-71.275996826,41.665650083],[-71.275956706,41.665592465],[-71.275910256,41.665540118],[-71.275868173,41.665494458],[-71.275813571,41.665453392],[-71.275757237,41.665410288],[-71.2756954,41.66537982],[-71.275649206,41.665376848],[-71.275571667,41.665388955],[-71.275524541,41.665390601],[-71.275469941,41.665348849],[-71.275404527,41.665321027],[-71.275338156,41.665296541],[-71.275288112,41.665269046],[-71.275298131,41.665229616],[-71.275329238,41.665229837],[-71.275301516,41.665176932],[-71.27527999,41.665122781],[-71.275275111,41.665087416],[-71.275306466,41.665068976],[-71.275325383,41.665049116],[-71.275249174,41.665029917],[-71.27522407,41.664978366],[-71.275189092,41.664933451],[-71.275149072,41.664865154],[-71.275171679,41.664836657],[-71.275138547,41.664787058],[-71.275096433,41.664742106],[-71.275060653,41.664691174],[-71.275013361,41.664635464],[-71.274953545,41.66458572],[-71.274890027,41.664547884],[-71.274815709,41.664520021],[-71.274734116,41.664505408],[-71.274652449,41.664494842],[-71.274575959,41.664494944],[-71.274525172,41.66450589],[-71.274475838,41.664537559],[-71.274405635,41.664536369],[-71.274338463,41.664505867],[-71.274284777,41.664464802],[-71.274267388,41.664440001],[-71.274247238,41.664411192],[-71.274198981,41.664361493],[-71.274150682,41.664315134],[-71.274124821,41.664253633],[-71.274117594,41.664192215],[-71.274145533,41.664165101],[-71.274136752,41.664155685],[-71.27410682,41.664133465],[-71.274053985,41.664163069],[-71.273999348,41.664123992],[-71.273940288,41.664084907],[-71.273892073,41.664031869],[-71.273845656,41.663979522],[-71.273796477,41.663931834],[-71.273752746,41.663878828],[-71.273710718,41.663827221],[-71.27370352,41.663766466],[-71.273703719,41.663753134],[-71.273855702,41.663688255],[-71.273844525,41.663666484],[-71.273836485,41.66359347],[-71.273806895,41.663543259],[-71.273772885,41.663492331],[-71.273753076,41.663444838],[-71.273797005,41.663415172],[-71.273764759,41.663365596],[-71.273500549,41.663037633],[-71.273447835,41.663059232],[-71.273428458,41.663045084],[-71.273408837,41.66304827],[-71.273404713,41.663041584],[-71.273370537,41.66298599],[-71.273404959,41.662971192],[-71.273602117,41.662886393],[-71.273557561,41.662825358],[-71.273405252,41.662887743],[-71.273330518,41.662918355],[-71.273301635,41.662884131],[-71.273309749,41.662874862],[-71.273294069,41.662850109],[-71.273405554,41.662801526],[-71.273446086,41.662783882],[-71.273489635,41.662784197],[-71.273629085,41.66272723],[-71.273618784,41.662699149],[-71.273654643,41.662674726],[-71.273663043,41.662644807],[-71.273714028,41.662620506],[-71.273645794,41.66253667],[-71.273610956,41.662548402],[-71.273584564,41.662525572],[-71.273486925,41.66258285],[-71.273507773,41.662620992],[-71.2734407,41.662649835],[-71.273406035,41.662664311],[-71.273134031,41.662777069],[-71.272987559,41.662697149],[-71.272897993,41.662652514],[-71.272916569,41.662634141],[-71.272799953,41.662554714],[-71.272736302,41.66257293],[-71.272728159,41.662538472],[-71.272772493,41.662523398],[-71.272736077,41.662454924],[-71.272708364,41.662400257],[-71.272680891,41.662338067],[-71.272662104,41.662260274],[-71.272657367,41.662202542],[-71.272683318,41.662159737],[-71.272745868,41.66211618],[-71.272774672,41.662068646],[-71.272753222,41.662019572],[-71.27272537,41.661969753],[-71.272622502,41.661857604],[-71.272567192,41.661871788],[-71.272533743,41.661826692],[-71.272539342,41.661760886],[-71.272520776,41.661707106],[-71.272487401,41.661658557],[-71.272447907,41.661632499],[-71.272358036,41.661449939],[-71.272161038,41.661429606],[-71.271905733,41.661400079],[-71.271348285,41.66134843],[-71.271346207,41.661263329],[-71.271203007,41.6612171],[-71.271179822,41.661133032],[-71.271070162,41.661096954],[-71.270995704,41.661204841],[-71.270511825,41.661013123],[-71.270419696,41.661193378],[-71.270359021,41.661172491],[-71.270292859,41.661150862],[-71.270226799,41.661126442],[-71.270158171,41.661095157],[-71.270082157,41.661065778],[-71.270017148,41.661037267],[-71.269942996,41.661007252],[-71.269875918,41.66098626],[-71.269811761,41.66095846],[-71.269755234,41.660920498],[-71.269707218,41.660873085],[-71.269647497,41.660850142],[-71.26956828,41.660837886],[-71.269585686,41.660805926],[-71.26964962,41.660682148],[-71.269713583,41.660558988],[-71.269782114,41.66040302],[-71.269697914,41.660309041],[-71.269615329,41.660223985],[-71.269555032,41.660157154],[-71.269472169,41.660081725],[-71.269249132,41.660044481],[-71.26930322,41.659851229],[-71.269294768,41.659827062],[-71.269259113,41.659794265],[-71.269171711,41.660033599],[-71.269092293,41.660026854],[-71.269099313,41.659974131],[-71.268982587,41.659961936],[-71.268967047,41.659992549],[-71.268853207,41.659974917],[-71.268714663,41.659958287],[-71.268676481,41.659950068],[-71.268622272,41.659988974],[-71.268578018,41.660032863],[-71.268531019,41.660076677],[-71.268493914,41.660125474],[-71.268430783,41.660126491],[-71.268358963,41.660110223],[-71.268307787,41.660077165],[-71.268292955,41.660020648],[-71.268296386,41.659965174],[-71.268311918,41.659902978],[-71.268329457,41.659833994],[-71.268348438,41.659779397],[-71.268342372,41.659736071],[-71.268287652,41.659730403],[-71.268208345,41.659752426],[-71.268159431,41.659735153],[-71.268115956,41.659689189],[-71.268076247,41.65963914],[-71.268036644,41.659584974],[-71.268000595,41.659535],[-71.267954414,41.659486927],[-71.267926513,41.659443739],[-71.267915898,41.659427298],[-71.267891883,41.659372043],[-71.267859842,41.659309751],[-71.267840611,41.65924705],[-71.26784161,41.659181188],[-71.26785067,41.659120946],[-71.267864441,41.659056688],[-71.267875257,41.658999925],[-71.267902408,41.658946192],[-71.267955912,41.658899715],[-71.267965122,41.658865567],[-71.267913172,41.658827682],[-71.267847049,41.658804679],[-71.267787745,41.658768014],[-71.267772878,41.658712892],[-71.267773637,41.658654599],[-71.267776359,41.658592903],[-71.267782502,41.658538121],[-71.26778319,41.65848255],[-71.267785068,41.658418108],[-71.2677904,41.65835987],[-71.267806741,41.658301838],[-71.26781316,41.658238137],[-71.267830522,41.658176014],[-71.26786045,41.658121599],[-71.267864193,41.658055812],[-71.267884091,41.658000577],[-71.267910428,41.657944097],[-71.267956511,41.657900235],[-71.268027892,41.657868477],[-71.268088333,41.657834455],[-71.268158907,41.657797892],[-71.268146012,41.657737308],[-71.268107391,41.657681795],[-71.26805203,41.657634252],[-71.267983438,41.657602943],[-71.267953934,41.657547608],[-71.267937309,41.657489692],[-71.26790886,41.657429534],[-71.267917882,41.657371373],[-71.267934189,41.657314027],[-71.267953382,41.657251243],[-71.267961767,41.657183453],[-71.267990922,41.657123548],[-71.268021764,41.657069204],[-71.268030821,41.657009625],[-71.268031079,41.656937633],[-71.268027507,41.656871007],[-71.268028227,41.65681475],[-71.26802736,41.656750257],[-71.268026322,41.656691252],[-71.268025862,41.656657976],[-71.268025458,41.656626096],[-71.268025228,41.656571209],[-71.268028089,41.65650471],[-71.268039964,41.656441752],[-71.268064643,41.656379758],[-71.268098332,41.656322012],[-71.268151232,41.656264579],[-71.268184646,41.656215729],[-71.268181814,41.65615528],[-71.26821378,41.656093391],[-71.268249021,41.656045254],[-71.268278066,41.655990152],[-71.268316154,41.655938635],[-71.268380531,41.655895107],[-71.268446666,41.655854327],[-71.268514494,41.655817713],[-71.268582253,41.655783157],[-71.268641813,41.655747738],[-71.2686906,41.655706008],[-71.268757234,41.655679019],[-71.268824606,41.655658824],[-71.268896623,41.655636008],[-71.268964693,41.655591138],[-71.269002716,41.65554097],[-71.269021659,41.655487791],[-71.269052669,41.655428599],[-71.26909618,41.655378534],[-71.269160343,41.655343261],[-71.269216523,41.655297521],[-71.269242856,41.655241704],[-71.269255573,41.655181515],[-71.26927723,41.655128364],[-71.269305293,41.655074632],[-71.269355343,41.655020555],[-71.269422889,41.65499423],[-71.2695093,41.654979173],[-71.269581849,41.65496937],[-71.26960253,41.654950498],[-71.269584921,41.654894662],[-71.269568224,41.654839491],[-71.269560781,41.654780404],[-71.269573323,41.654726389],[-71.269599763,41.65466577],[-71.269626201,41.654605836],[-71.26964824,41.654539651],[-71.269662991,41.654473359],[-71.269676448,41.654419392],[-71.269701334,41.654349805],[-71.269725271,41.654281588],[-71.269750968,41.654215455],[-71.269777547,41.654150034],[-71.269804194,41.654082577],[-71.269825285,41.654017052],[-71.269842818,41.653948731],[-71.269862112,41.653882494],[-71.269883339,41.6538129],[-71.269903512,41.65374806],[-71.269924706,41.653679128],[-71.269937592,41.653614137],[-71.26994373,41.653560063],[-71.269946453,41.653497681],[-71.269949246,41.653432555],[-71.269958162,41.653377823],[-71.269963423,41.653321644],[-71.269966886,41.653265438],[-71.269968517,41.653209914],[-71.269973281,41.653139326],[-71.269973191,41.653078951],[-71.269959273,41.653022504],[-71.269961854,41.652965588],[-71.270006136,41.652921013],[-71.269972021,41.652867636],[-71.269975524,41.652808709],[-71.269983659,41.652750545],[-71.270015412,41.65269618],[-71.270057935,41.652648834],[-71.270130273,41.652645891],[-71.270204338,41.652646405],[-71.270288462,41.652647808],[-71.270302541,41.652667252],[-71.270304436,41.652726236],[-71.270367311,41.652734846],[-71.270387319,41.652707718],[-71.270388914,41.652653543],[-71.270384144,41.652597252],[-71.270376877,41.65253126],[-71.270335245,41.65251686],[-71.270303912,41.652556133],[-71.270264402,41.652562366],[-71.270183937,41.652561016],[-71.270098967,41.652557576],[-71.270026974,41.652548879],[-71.270025457,41.652546794],[-71.269996176,41.652506463],[-71.269995029,41.65245162],[-71.269997648,41.652392668],[-71.270002374,41.652324161],[-71.270004214,41.652261045],[-71.269994871,41.652204676],[-71.269984082,41.652134515],[-71.269980295,41.652076122],[-71.269976895,41.652003367],[-71.269972156,41.651947076],[-71.269969147,41.651892824],[-71.269962015,41.651823402],[-71.269957212,41.651767774],[-71.269950962,41.651699062],[-71.269945313,41.651641328],[-71.269932657,41.651573221],[-71.269919723,41.651514695],[-71.269905702,41.651461656],[-71.269890836,41.651406511],[-71.269880545,41.651350803],[-71.269871581,41.65128204],[-71.269858958,41.651213224],[-71.269844266,41.65115195],[-71.269791977,41.651125043],[-71.269751183,41.651081166],[-71.269738148,41.651025362],[-71.269729924,41.650962798],[-71.269706932,41.650903429],[-71.269710359,41.650848618],[-71.269696582,41.650787323],[-71.269682908,41.650722621],[-71.269672584,41.650667577],[-71.269665986,41.650611213],[-71.26966301,41.650556298],[-71.269658276,41.650498566],[-71.269647342,41.650435288],[-71.269632614,41.650375364],[-71.269617715,41.650320927],[-71.269599155,41.650267124],[-71.269581617,41.650208521],[-71.269558759,41.650145722],[-71.269530981,41.650094507],[-71.269505002,41.650043342],[-71.269468146,41.649989891],[-71.269431186,41.649939893],[-71.269404292,41.649888726],[-71.269382955,41.649835535],[-71.269359149,41.649773397],[-71.269335094,41.649721572],[-71.269301126,41.649661998],[-71.26926997,41.64960044],[-71.269242608,41.649535505],[-71.269217576,41.649483655],[-71.269199019,41.649429166],[-71.269170643,41.649366264],[-71.269140119,41.649315707],[-71.2691077,41.649266473],[-71.269066413,41.649207479],[-71.269042294,41.649156317],[-71.269020986,41.649103835],[-71.26899884,41.649046548],[-71.268975778,41.6489899],[-71.268950884,41.648933935],[-71.268927082,41.648871156],[-71.268904018,41.648815194],[-71.268882922,41.648754457],[-71.268863518,41.648697907],[-71.268847809,41.648640016],[-71.26883945,41.648581568],[-71.268830146,41.648523141],[-71.268818232,41.648461187],[-71.268808928,41.648402737],[-71.268787931,41.648339941],[-71.2687585,41.648282526],[-71.26872995,41.648225798],[-71.268705059,41.648169146],[-71.268685654,41.64811326],[-71.268667272,41.648052597],[-71.268645137,41.648001005],[-71.268644139,41.647998716],[-71.268615555,41.64794336],[-71.268585984,41.647890769],[-71.268554481,41.647841537],[-71.268516957,41.647779211],[-71.26847458,41.647727029],[-71.268433857,41.647681094],[-71.268383182,41.647630199],[-71.268338937,41.647580072],[-71.268299134,41.647532812],[-71.268254793,41.647484057],[-71.268212484,41.64742984],[-71.268184006,41.647370413],[-71.268160097,41.647312391],[-71.268127079,41.647252155],[-71.268088537,41.647193212],[-71.268046267,41.647136959],[-71.26800413,41.647077277],[-71.267971855,41.647022554],[-71.267950656,41.646965269],[-71.267905713,41.646906244],[-71.267851978,41.64686696],[-71.267805873,41.646817492],[-71.267758013,41.646763904],[-71.267698259,41.646711481],[-71.267647755,41.646655738],[-71.267606328,41.646602254],[-71.267562199,41.646545952],[-71.267520808,41.646491119],[-71.267482091,41.646439013],[-71.267449071,41.646379509],[-71.267427911,41.646320143],[-71.267417089,41.646252039],[-71.267417034,41.646190977],[-71.26741898,41.6461245],[-71.267428041,41.646063571],[-71.267439101,41.64599789],[-71.26744823,41.645934949],[-71.26745472,41.645868504],[-71.267461138,41.645804803],[-71.267470298,41.645741862],[-71.267472143,41.64567806],[-71.267469243,41.645619737],[-71.267466439,41.645559997],[-71.267452455,41.645506271],[-71.267425669,41.645451628],[-71.267389556,41.645404421],[-71.267332238,41.645361608],[-71.267274743,41.645325701],[-71.267220235,41.64528159],[-71.267156579,41.645237986],[-71.267079735,41.645207254],[-71.267006309,41.645184122],[-71.266931795,41.645167116],[-71.26686083,41.645154966],[-71.266788279,41.645134579],[-71.266728853,41.645101389],[-71.266675116,41.645063454],[-71.266623287,41.645020766],[-71.266569798,41.64497325],[-71.266515394,41.644925708],[-71.266462063,41.644876728],[-71.266458386,41.644873336],[-71.266404971,41.644822366],[-71.266341351,41.644777435],[-71.266284703,41.644743565],[-71.2662118,41.644702595],[-71.266142586,41.644661678],[-71.266072392,41.644622131],[-71.266011409,41.644581345],[-71.265940232,41.644543809],[-71.265867152,41.644509699],[-71.265806915,41.64447374],[-71.26575874,41.644432477],[-71.265716544,41.64437348],[-71.265677695,41.644324826],[-71.265635251,41.64427541],[-71.265595487,41.644226754],[-71.265557018,41.644165752],[-71.265520237,41.644110264],[-71.265511813,41.644053874],[-71.265474272,41.644023107],[-71.265409214,41.643996629],[-71.265353583,41.643960038],[-71.265283851,41.643936295],[-71.265217914,41.643908465],[-71.265154658,41.64388135],[-71.265089917,41.643843232],[-71.265025072,41.64380859],[-71.264971271,41.643772003],[-71.264908431,41.64373119],[-71.264849955,41.643697315],[-71.264784054,41.643668113],[-71.26470996,41.643636722],[-71.26464677,41.643608258],[-71.264578334,41.643572167],[-71.264513456,41.643538164],[-71.264440201,41.643510891],[-71.264363999,41.6434891],[-71.264287795,41.643467927],[-71.264212297,41.643453685],[-71.264134018,41.643441404],[-71.264056798,41.643422972],[-71.263983474,41.64339778],[-71.263904425,41.643379345],[-71.263832619,41.643364447],[-71.263756207,41.643350156],[-71.263678913,41.643335178],[-71.263607216,41.643315477],[-71.263532981,41.643289597],[-71.263465043,41.643267228],[-71.263391584,41.643246105],[-71.263321782,41.643225082],[-71.26324917,41.643205356],[-71.263170221,41.643184863],[-71.263097569,41.643167904],[-71.263022074,41.643152975],[-71.262952166,41.643136022],[-71.262878742,41.64311355],[-71.262800608,41.643095116],[-71.262724265,41.64307879],[-71.262644266,41.643061678],[-71.262573307,41.643048862],[-71.262499532,41.643038762],[-71.262421221,41.643027165],[-71.262344845,41.643011548],[-71.262265052,41.642988262],[-71.262194441,41.642963805],[-71.262115565,41.642939881],[-71.262038381,41.642920076],[-71.26195852,41.642898894],[-71.261881436,41.642877054],[-71.261798935,41.642852367],[-71.261727825,41.642814188],[-71.26167315,41.64277554],[-71.2616139,41.6427375],[-71.261569426,41.64269423],[-71.261566704,41.642630419],[-71.261577629,41.64256954],[-71.261560134,41.642510272],[-71.261514318,41.642450511],[-71.261454608,41.642396736],[-71.261387061,41.642359936],[-71.261340063,41.642372874],[-71.261367793,41.642426171],[-71.261393732,41.642477338],[-71.261432475,41.642528737],[-71.261442689,41.642586527],[-71.261409142,41.642638805],[-71.261359337,41.642685332],[-71.261306861,41.642728378],[-71.261241715,41.642767761],[-71.261173297,41.642793393],[-71.261102415,41.642809391],[-71.261017461,41.642805281],[-71.260941891,41.642794421],[-71.260860872,41.642781446],[-71.260780665,41.642771216],[-71.260702144,41.642767188],[-71.260622743,41.64276174],[-71.260545245,41.642752934],[-71.260472175,41.64275038],[-71.260399039,41.642749176],[-71.260319501,41.642747866],[-71.260232677,41.64274645],[-71.260152329,41.642741709],[-71.260070253,41.642734197],[-71.259985543,41.64272183],[-71.259914684,41.642706954],[-71.259838205,41.64269472],[-71.259792025,41.6427413],[-71.259714189,41.642905774],[-71.259713083,41.642908081],[-71.259693251,41.642961234],[-71.259678838,41.64301657],[-71.259654258,41.643075842],[-71.259631682,41.643128989],[-71.25960795,41.643189658],[-71.259581472,41.643250984],[-71.259546933,41.643307353],[-71.259496991,41.643357287],[-71.259447117,41.643405185],[-71.25938556,41.643446702],[-71.259316754,41.643486053],[-71.259261321,41.643536593],[-71.259202545,41.643576102],[-71.25915731,41.64362273],[-71.259154649,41.643682322],[-71.259153954,41.643737893],[-71.25913856,41.643794577],[-71.259136816,41.64385353],[-71.259139709,41.643911899],[-71.259143447,41.643972328],[-71.259147328,41.644027268],[-71.259148323,41.644087645],[-71.259146749,41.644141819],[-71.259145104,41.644198738],[-71.259141668,41.644253571],[-71.259129858,41.644313739],[-71.259101448,41.644377759],[-71.259073382,41.644431512],[-71.259046974,41.644490071],[-71.258997033,41.644539318],[-71.258930969,41.644578721],[-71.258881267,41.644621131],[-71.25883688,41.644669109],[-71.258809658,41.644724899],[-71.258802177,41.644793354],[-71.258789277,41.644859717],[-71.258767975,41.644930705],[-71.258745995,41.644995493],[-71.258721133,41.645064392],[-71.25868206,41.645117939],[-71.258627466,41.645171933],[-71.258585613,41.645226823],[-71.258570144,41.645286914],[-71.258554569,41.645351145],[-71.258543604,41.645413418],[-71.25851794,41.645476803],[-71.258485123,41.645536606],[-71.258453084,41.645600573],[-71.258417529,41.645658976],[-71.258380005,41.645722176],[-71.258342824,41.645775086],[-71.25831286,41.645830139],[-71.258281065,41.64588585],[-71.258248361,41.645940188],[-71.258207312,41.645999905],[-71.258160037,41.646053342],[-71.258118147,41.646109582],[-71.258076362,41.64616239],[-71.258048332,41.646214085],[-71.258029234,41.646274123],[-71.258028091,41.646343414],[-71.258018112,41.646402922],[-71.257993246,41.646472507],[-71.257977919,41.64652711],[-71.257961288,41.646596117],[-71.257946875,41.646650791],[-71.257930697,41.646704705],[-71.257907874,41.646766061],[-71.257894411,41.646819364],[-71.257888228,41.64687481],[-71.257881023,41.646934392],[-71.257881107,41.646993372],[-71.257880373,41.647050979],[-71.257879433,41.647114759],[-71.257868437,41.647177032],[-71.257851912,41.647241901],[-71.257835527,41.647302013],[-71.257821815,41.64736492],[-71.257813733,41.647422397],[-71.257802905,41.647480531],[-71.257797115,41.647553152],[-71.257789102,41.64760857],[-71.25777465,41.647665279],[-71.257758405,41.647720611],[-71.257741141,41.647779303],[-71.257722221,41.647832503],[-71.25770235,41.647887051],[-71.257669364,41.647951015],[-71.257644413,41.647978109],[-71.257622156,41.648002372],[-71.257575625,41.648059904],[-71.257547589,41.648112925],[-71.257523957,41.648170209],[-71.257489559,41.64822038],[-71.257456108,41.648269913],[-71.257425366,41.64832087],[-71.25739445,41.648377292],[-71.257370077,41.648429017],[-71.257340782,41.648492349],[-71.257323375,41.648556552],[-71.257308712,41.648620807],[-71.257295878,41.648685065],[-71.257292127,41.648750167],[-71.25726473,41.648811467],[-71.257232056,41.648865141],[-71.257212857,41.64892726],[-71.257210365,41.648982072],[-71.257201228,41.649044349],[-71.257184842,41.649104484],[-71.257171027,41.64917009],[-71.257150065,41.649230832],[-71.257134352,41.649298469],[-71.257115327,41.649355076],[-71.257091656,41.64941435],[-71.257077275,41.649468314],[-71.257059126,41.649527027],[-71.257046401,41.649586483],[-71.25703016,41.64964042],[-71.257001952,41.649698289],[-71.256970225,41.649751256],[-71.256941028,41.649812507],[-71.256911941,41.649868978],[-71.256879159,41.649926768],[-71.256838321,41.64997823],[-71.256777566,41.650023199],[-71.256711745,41.650052996],[-71.256642296,41.650082716],[-71.256606874,41.650137002],[-71.256616208,41.650192754],[-71.256614421,41.650254429],[-71.256599828,41.65031594],[-71.256584252,41.650379483],[-71.256566173,41.650435429],[-71.256558018,41.650495673],[-71.256549061,41.650550403],[-71.256524511,41.650608302],[-71.256489863,41.650667437],[-71.25644878,41.650727108],[-71.256405826,41.650789519],[-71.256363863,41.650847838],[-71.25633277,41.650910434],[-71.256274582,41.650961653],[-71.25621516,41.650992194],[-71.256197048,41.651048849],[-71.256192417,41.651112576],[-71.25616607,41.651169785],[-71.256123398,41.651221882],[-71.256078861,41.651275325],[-71.256033377,41.651329475],[-71.255985923,41.651388377],[-71.255965173,41.651440841],[-71.255929612,41.651499288],[-71.255891307,41.651557638],[-71.2558397,41.651602055],[-71.25578186,41.65164161],[-71.255723918,41.651683864],[-71.255659575,41.651725327],[-71.255602685,41.651763535],[-71.255545869,41.651798267],[-71.255480854,41.651832158],[-71.255418651,41.651864066],[-71.255353322,41.651908293],[-71.255296432,41.651946455],[-71.255244016,41.651986731],[-71.255197893,41.65203196],[-71.255153464,41.6520806],[-71.255115466,41.652130077],[-71.255075469,41.652184283],[-71.255044582,41.652240042],[-71.255007334,41.652292928],[-71.254961315,41.652334726],[-71.254915897,41.652386794],[-71.254878715,41.652438308],[-71.254852267,41.652497552],[-71.25482789,41.652549299],[-71.254800349,41.652615378],[-71.254779139,41.652684307],[-71.254760006,41.65274439],[-71.254752626,41.652808751],[-71.254755273,41.652874644],[-71.254753237,41.652945237],[-71.254752156,41.653013156],[-71.254753289,41.653068045],[-71.25475678,41.653136729],[-71.254762517,41.653191697],[-71.254770974,41.65324532],[-71.254779035,41.653314746],[-71.254778767,41.653385412],[-71.254780461,41.653453337],[-71.254776562,41.653524636],[-71.254769009,41.653594508],[-71.254761973,41.653648556],[-71.254759203,41.653711624],[-71.254751785,41.653778066],[-71.254748136,41.653839714],[-71.254747223,41.653903541],[-71.254752757,41.653963973],[-71.254756388,41.654027855],[-71.254756293,41.654092987],[-71.254747257,41.654151879],[-71.254693219,41.654185267],[-71.254614156,41.654199735],[-71.25453612,41.654208739],[-71.254455579,41.654210831],[-71.254392599,41.654237957],[-71.254385709,41.65428583],[-71.254463261,41.654291919],[-71.254540807,41.65429938],[-71.254615087,41.654323894],[-71.254642888,41.654374426],[-71.254660415,41.654432369],[-71.254674424,41.654485433],[-71.254684707,41.654539792],[-71.254687495,41.654600859],[-71.254683978,41.654659809],[-71.254673851,41.654724805],[-71.254662884,41.654786369],[-71.254649065,41.654851997],[-71.254633453,41.654916249],[-71.254617763,41.654984572],[-71.254602082,41.655050883],[-71.254589137,41.655119257],[-71.25457623,41.655185597],[-71.254566917,41.655253338],[-71.254562281,41.655317751],[-71.254551306,41.655381373],[-71.254534814,41.655444206],[-71.254521166,41.655505032],[-71.25451748,41.655568098],[-71.254521149,41.655629899],[-71.254516544,41.655694312],[-71.254506664,41.655750389],[-71.254490241,41.655811186],[-71.2544767,41.655867896],[-71.254461258,41.655927324],[-71.25444128,41.655984614],[-71.254416899,41.656037047],[-71.254394105,41.656097053],[-71.254378597,41.656157853],[-71.254363965,41.656220712],[-71.254353132,41.656278823],[-71.254342161,41.656341072],[-71.2543257,41.656403905],[-71.254310125,41.656466099],[-71.254302846,41.656527717],[-71.254295675,41.65658524],[-71.254290355,41.656629138],[-71.254288435,41.656644777],[-71.254286571,41.65670995],[-71.25427824,41.656775659],[-71.254258298,41.6568316],[-71.254230048,41.656890817],[-71.254233852,41.656949165],[-71.254256906,41.657005107],[-71.254268135,41.657059491],[-71.254274408,41.657126123],[-71.2542754,41.65718586],[-71.254272803,41.657243439],[-71.254270137,41.657303054],[-71.254265641,41.657362687],[-71.254253822,41.657423517],[-71.254241936,41.657485788],[-71.254232899,41.657544634],[-71.254223758,41.657606911],[-71.254218414,41.657665102],[-71.254213846,41.657727457],[-71.254208504,41.657785007],[-71.254205937,41.657842587],[-71.2542031,41.657906981],[-71.254200327,41.657970757],[-71.25418654,41.6580357],[-71.254166421,41.658097815],[-71.25415172,41.65816271],[-71.254138109,41.658221501],[-71.254132657,41.658283831],[-71.254131045,41.658338714],[-71.254130346,41.658394239],[-71.254114661,41.658461213],[-71.254100273,41.658515885],[-71.254088596,41.65857125],[-71.254081215,41.658635611],[-71.254076857,41.658691083],[-71.254077816,41.65875146],[-71.254079617,41.658815292],[-71.254078711,41.658877037],[-71.254076957,41.658937385],[-71.254068939,41.658992803],[-71.254055361,41.659050885],[-71.254043544,41.659111075],[-71.254036374,41.65916789],[-71.254020931,41.659227317],[-71.253991977,41.659279008],[-71.253948559,41.659324906],[-71.253903552,41.659331716],[-71.253830962,41.659310612],[-71.253759,41.65930051],[-71.253677821,41.659292332],[-71.253651574,41.659313841],[-71.253627089,41.659369041],[-71.253656579,41.65939282],[-71.253731002,41.659413241],[-71.253735848,41.659414212],[-71.253802857,41.65942746],[-71.253882099,41.659439727],[-71.253893398,41.659459831],[-71.253898154,41.659516168],[-71.253891762,41.659577101],[-71.253877235,41.65963589],[-71.25387903,41.659701071],[-71.253874641,41.659756543],[-71.253843577,41.659817789],[-71.253823454,41.659880591],[-71.253812728,41.659934585],[-71.253770015,41.65998739],[-71.253724693,41.660036737],[-71.253703941,41.660088537],[-71.253688602,41.660144511],[-71.253668551,41.660204569],[-71.253670596,41.660260191],[-71.253666066,41.660320488],[-71.253666174,41.660380154],[-71.253667307,41.660435043],[-71.253667524,41.66048993],[-71.253657643,41.66054603],[-71.25365318,41.660604954],[-71.253631508,41.660658125],[-71.253631828,41.660710245],[-71.2536109,41.660768219],[-71.253582785,41.66082332],[-71.253560061,41.660880536],[-71.253519175,41.660934077],[-71.253489305,41.660985743],[-71.253521475,41.661042482],[-71.25347721,41.661086388],[-71.253435593,41.661131648],[-71.253393969,41.66117867],[-71.253345203,41.661234961],[-71.253300136,41.661281289],[-71.253247136,41.661320259],[-71.253177222,41.661364406],[-71.25309577,41.661403109],[-71.253026872,41.661436579],[-71.252972051,41.661481537],[-71.252921557,41.661535171],[-71.252874651,41.661583462],[-71.25282848,41.661647099],[-71.252793968,41.661700173],[-71.252747837,41.661761181],[-71.25272025,41.661829638],[-71.252704363,41.661876989],[-71.252667846,41.661943826],[-71.252627182,41.662042625],[-71.25260856,41.662071469],[-71.252559681,41.662133111],[-71.252521718,41.662179477],[-71.252470517,41.662218427],[-71.252390401,41.662226511],[-71.252356614,41.662273137],[-71.252278756,41.662265011],[-71.252263208,41.662295553],[-71.252347122,41.662315059],[-71.252343383,41.662351504],[-71.252342482,41.662419493],[-71.252341755,41.662474149],[-71.252340988,41.662530817],[-71.252338194,41.662607469],[-71.252333014,41.662662093],[-71.252319764,41.662721342],[-71.252277386,41.662765662],[-71.252250648,41.662771459],[-71.252051245,41.662790628],[-71.25206288,41.662850068],[-71.25225434,41.662826834],[-71.252304808,41.662843889],[-71.252351172,41.662897549],[-71.252376923,41.662966441],[-71.252378835,41.663024464],[-71.252360157,41.66309166],[-71.25231665,41.66315201],[-71.252276033,41.663198347],[-71.252261058,41.663254253],[-71.252247635,41.663326811],[-71.252228032,41.663396657],[-71.252211168,41.663459877],[-71.252192605,41.663521081],[-71.252171291,41.663583583],[-71.25213769,41.663637345],[-71.252089059,41.663681652],[-71.252023696,41.663715152],[-71.251949705,41.663731938],[-71.25187376,41.663757388],[-71.251795655,41.663749444],[-71.251720036,41.663753511],[-71.25167141,41.663796492],[-71.251720732,41.663834196],[-71.251798748,41.663849458],[-71.251870703,41.66385469],[-71.251946955,41.663868576],[-71.252033781,41.663892571],[-71.252105479,41.663917127],[-71.252165417,41.663954259],[-71.252211894,41.66400259],[-71.252244156,41.664051509],[-71.252271884,41.6641057],[-71.25229608,41.664158557],[-71.252297085,41.664214566],[-71.25229325,41.664236558],[-71.252246924,41.664244188],[-71.252172732,41.664273644],[-71.252102827,41.664314452],[-71.252031328,41.664341261],[-71.251979279,41.664378197],[-71.251990076,41.664433633],[-71.252008967,41.66448577],[-71.251994925,41.664536989],[-71.251979092,41.664522205],[-71.25193445,41.664472505],[-71.251918248,41.664426914],[-71.251851804,41.664360473],[-71.251739944,41.664390418],[-71.251655869,41.664419967],[-71.251591382,41.664479334],[-71.251558377,41.664536344],[-71.251514896,41.664597357],[-71.251473365,41.664643051],[-71.25141855,41.664685332],[-71.251355905,41.664717511],[-71.251343426,41.664718742],[-71.251294463,41.664722364],[-71.251228249,41.664754535],[-71.251187312,41.664756893],[-71.251129918,41.664763767],[-71.251059446,41.664785226],[-71.250984754,41.664825268],[-71.250918983,41.664853232],[-71.250853197,41.664893248],[-71.250777635,41.664937245],[-71.250699387,41.664989949],[-71.250647818,41.665028578],[-71.250561604,41.665074609],[-71.250480678,41.665109927],[-71.25038473,41.665102034],[-71.250341275,41.665069214],[-71.250328827,41.665070422],[-71.250316298,41.665092487],[-71.250321218,41.665113766],[-71.250328925,41.665179257],[-71.250320684,41.665243936],[-71.250320663,41.665304632],[-71.250313575,41.66536323],[-71.250288677,41.665421241],[-71.250251352,41.665475269],[-71.250216667,41.665532572],[-71.250174904,41.66559057],[-71.250126019,41.665644595],[-71.250063763,41.665693926],[-71.249986411,41.665735266],[-71.249911756,41.665773249],[-71.2498326,41.665799925],[-71.249749032,41.665823939],[-71.24974815,41.665878595],[-71.249764135,41.665948587],[-71.24976238,41.666007929],[-71.249748159,41.666073258],[-71.249724152,41.666137263],[-71.249685931,41.666201945],[-71.24963616,41.666271908],[-71.249602361,41.666320592],[-71.249549027,41.666389244],[-71.249493914,41.666452586],[-71.249440562,41.666517899],[-71.249367635,41.666573907],[-71.249313413,41.666611912],[-71.249234269,41.66666658],[-71.249156931,41.666703916],[-71.249077791,41.666702577],[-71.249006704,41.666677243],[-71.248968486,41.666677937],[-71.248961353,41.666731916],[-71.248912423,41.66678928],[-71.248858227,41.666843956],[-71.248793309,41.666895247],[-71.248719525,41.666935908],[-71.248636819,41.666973255],[-71.248549715,41.667011897],[-71.248463473,41.667048573],[-71.248379895,41.667074576],[-71.248297207,41.667091272],[-71.248213641,41.66709859],[-71.248139858,41.667131269],[-71.248074055,41.667174576],[-71.248019833,41.667219944],[-71.247959369,41.667262577],[-71.247893584,41.667301265],[-71.247845746,41.667328466],[-71.24782334,41.667341247],[-71.247764665,41.667394563],[-71.247716664,41.667447904],[-71.247667758,41.667498566],[-71.247622413,41.667551249],[-71.247597536,41.667603245],[-71.24760199,41.667673257],[-71.247557513,41.667714576],[-71.247492587,41.667743912],[-71.247430351,41.667779268],[-71.247355694,41.667824591],[-71.247274756,41.66786926],[-71.247188538,41.667899212],[-71.247097846,41.667911225],[-71.247007141,41.667926576],[-71.246914677,41.667939248],[-71.246819563,41.667951228],[-71.246720856,41.667969237],[-71.246631952,41.667991888],[-71.246565281,41.66803055],[-71.246523495,41.668085252],[-71.246495032,41.668149224],[-71.246452363,41.66821122],[-71.246398136,41.668265209],[-71.246327014,41.668303198],[-71.246250536,41.668322536],[-71.246178513,41.668341199],[-71.246116285,41.668389887],[-71.246056727,41.668449856],[-71.246000715,41.668507866],[-71.24594114,41.668556537],[-71.245864693,41.668591221],[-71.245782007,41.668614525],[-71.245700189,41.668626556],[-71.245615729,41.668651228],[-71.245529488,41.668686531],[-71.245427261,41.668707527],[-71.245349907,41.668747514],[-71.245272842,41.668791824],[-71.245210299,41.668850505],[-71.24511785,41.668889841],[-71.245020934,41.668925165],[-71.244927569,41.668957181],[-71.244839536,41.66898253],[-71.244753273,41.669007838],[-71.24467413,41.669045168],[-71.244610117,41.669089826],[-71.244578109,41.669147134],[-71.244558534,41.66921515],[-71.244490988,41.669235147],[-71.244412753,41.669266487],[-71.244336264,41.669311164],[-71.244265153,41.669361135],[-71.244194016,41.669409826],[-71.244126071,41.669446037],[-71.244076423,41.669436618],[-71.244051703,41.669409555],[-71.244107772,41.669322479],[-71.244137995,41.669269124],[-71.244153119,41.669208485],[-71.244138005,41.669151141],[-71.24408646,41.669112469],[-71.244032221,41.669076466],[-71.243994878,41.669025133],[-71.243978004,41.668957837],[-71.243975351,41.668888468],[-71.243977112,41.668821145],[-71.243968235,41.668759836],[-71.243940682,41.66870116],[-71.243904218,41.668643814],[-71.243881115,41.668585835],[-71.243893559,41.6685165],[-71.243907756,41.668459153],[-71.243904245,41.668398496],[-71.243878458,41.668340487],[-71.243845564,41.66829049],[-71.243793995,41.668250492],[-71.243734449,41.668214477],[-71.243681083,41.668173834],[-71.243635757,41.668128497],[-71.243592189,41.668078476],[-71.243529055,41.668039823],[-71.243459711,41.668005845],[-71.243393022,41.667971804],[-71.243326365,41.667937145],[-71.243256117,41.667900489],[-71.243177917,41.667861803],[-71.243097,41.667823796],[-71.243021415,41.667787128],[-71.242950286,41.667749783],[-71.242880056,41.667731788],[-71.24278936,41.667721797],[-71.24270224,41.667709801],[-71.242630213,41.667706461],[-71.242541311,41.667697778],[-71.242452415,41.667679763],[-71.242369726,41.667650443],[-71.24228884,41.667612436],[-71.242205265,41.667575794],[-71.242122581,41.667545079],[-71.242048765,41.667516418],[-71.241979433,41.667479763],[-71.241917199,41.667437772],[-71.241865636,41.667389082],[-71.241839902,41.667333749],[-71.241844317,41.667274413],[-71.241830095,41.667215745],[-71.241832789,41.667159744],[-71.241862994,41.667103736],[-71.241900338,41.667047104],[-71.24191636,41.666991133],[-71.241886131,41.666931102],[-71.241873684,41.666878406],[-71.241870134,41.666820402],[-71.241812357,41.666769777],[-71.241722232,41.666731794],[-71.24165377,41.666683775],[-71.241599984,41.666649693],[-71.241537667,41.666605758],[-71.241451428,41.666579745],[-71.241360751,41.666557724],[-71.241278953,41.666527078],[-71.241206939,41.666490416],[-71.241142922,41.6664524],[-71.241095825,41.666408385],[-71.241045129,41.666349063],[-71.24098912,41.666299058],[-71.240925111,41.666266394],[-71.240861993,41.666232405],[-71.240807757,41.666189083],[-71.240763319,41.666143724],[-71.240718005,41.666081029],[-71.24069135,41.666012361],[-71.240688672,41.66595772],[-71.240683357,41.665899048],[-71.240646906,41.665885062],[-71.240573993,41.665913072],[-71.240503763,41.665933679],[-71.240426388,41.665933687],[-71.2403375,41.66592969],[-71.240262811,41.665929041],[-71.240190808,41.665920348],[-71.240120572,41.665904364],[-71.240047656,41.665887664],[-71.239972098,41.665875693],[-71.23989654,41.665863653],[-71.239802289,41.665850999],[-71.239711604,41.665839016],[-71.239621817,41.665830991],[-71.239530241,41.665835609],[-71.239437786,41.665854289],[-71.239368412,41.665874303],[-71.239297539,41.665887749],[-71.239230035,41.665905457],[-71.239154608,41.665929116],[-71.239058135,41.665945591],[-71.23898879,41.665980927],[-71.238950542,41.666026922],[-71.238906081,41.666078254],[-71.238871405,41.666130912],[-71.238834066,41.666185599],[-71.23879137,41.666245579],[-71.238747808,41.666308256],[-71.238706023,41.666368902],[-71.238661562,41.666420211],[-71.238611762,41.666464236],[-71.238553071,41.666519537],[-71.238485502,41.66656821],[-71.238433916,41.666608868],[-71.238383223,41.666647516],[-71.238327213,41.666703533],[-71.23828275,41.666747524],[-71.238230311,41.666795498],[-71.238173396,41.666841496],[-71.23810671,41.666882829],[-71.238037344,41.666915511],[-71.237953794,41.666948801],[-71.237893314,41.667001469],[-71.23788641,41.667049227],[-71.237858374,41.667111184],[-71.237794693,41.667171002],[-71.237727018,41.667200143],[-71.237669257,41.667244126],[-71.237610539,41.667290806],[-71.237551865,41.667334124],[-71.23749942,41.667383424],[-71.237448707,41.667434101],[-71.23739445,41.667486096],[-71.237335762,41.667525435],[-71.237290421,41.66756741],[-71.237247739,41.667623388],[-71.237195272,41.667662718],[-71.237152602,41.667708061],[-71.23714369,41.667769377],[-71.237141916,41.667838072],[-71.237152581,41.667908053],[-71.237157911,41.667977382],[-71.237141871,41.668036714],[-71.23714009,41.668092054],[-71.237136533,41.668156743],[-71.237112526,41.668210042],[-71.237049779,41.668249782],[-71.237067115,41.668306698],[-71.237092028,41.668360704],[-71.237125802,41.668425387],[-71.237165787,41.668478032],[-71.237256003,41.668516224],[-71.23731289,41.668567558],[-71.237341758,41.66861645],[-71.237378273,41.668667395],[-71.237448504,41.668700007],[-71.237496899,41.668747159],[-71.237544896,41.668809816],[-71.237562782,41.668881804],[-71.237572907,41.668942065],[-71.237601371,41.669015426],[-71.237626258,41.669083404],[-71.23764582,41.669148077],[-71.237657353,41.669214722],[-71.237664466,41.669280739],[-71.237664473,41.66934674],[-71.23766446,41.669417406],[-71.23765554,41.669496056],[-71.237643969,41.669574082],[-71.237625262,41.669644088],[-71.237589697,41.669712066],[-71.237542566,41.669774071],[-71.237490995,41.669832704],[-71.237442981,41.669886703],[-71.237391388,41.669943393],[-71.237331806,41.669999378],[-71.237282024,41.670060691],[-71.237241109,41.670124014],[-71.237203743,41.670184669],[-71.23718434,41.670245594],[-71.237164237,41.67031395],[-71.237152148,41.670361536],[-71.237108156,41.670438803],[-71.237056271,41.670521997],[-71.237028513,41.67056001],[-71.237003626,41.670611981],[-71.23696626,41.67068],[-71.236936392,41.67074193],[-71.236887678,41.670832587],[-71.236828947,41.670889077],[-71.236775684,41.670936157],[-71.236711043,41.67098328],[-71.236633692,41.67101329],[-71.236573227,41.671045946],[-71.236545647,41.671099946],[-71.23655513,41.671145729],[-71.236544767,41.671218612],[-71.236546647,41.671273731],[-71.236527247,41.671348904],[-71.236499685,41.671420925],[-71.236446615,41.671487696],[-71.236399743,41.671545242],[-71.236357934,41.671610552],[-71.23630991,41.671673881],[-71.236246779,41.671724552],[-71.236174779,41.671765871],[-71.236094746,41.67180253],[-71.236018262,41.671843862],[-71.235951573,41.671891871],[-71.235901762,41.671944516],[-71.235844858,41.672001193],[-71.235788839,41.672057826],[-71.235766568,41.672111174],[-71.235755872,41.672168506],[-71.235754107,41.672227161],[-71.235754971,41.672291815],[-71.23575764,41.672355146],[-71.235762065,41.67242182],[-71.23577805,41.672488475],[-71.235789603,41.672549814],[-71.235798503,41.672611147],[-71.235804722,41.672679128],[-71.235810042,41.672743152],[-71.235815373,41.672811795],[-71.235818355,41.672865887],[-71.235811637,41.672934914],[-71.235832305,41.673109431],[-71.235828639,41.673192941],[-71.235825614,41.673261382],[-71.235824214,41.673335315],[-71.235827696,41.673401164],[-71.235838934,41.673457608],[-71.235844216,41.673523506],[-71.235838746,41.673585721],[-71.235826568,41.673654644],[-71.23579768,41.673729954],[-71.235777903,41.673784955],[-71.235775011,41.673850652],[-71.235786425,41.673923563],[-71.235801231,41.674002701],[-71.235814309,41.674079092],[-71.235819283,41.674153177],[-71.235816189,41.674223676],[-71.235814012,41.67429349],[-71.235818307,41.674362108],[-71.235819145,41.674425824],[-71.235814968,41.67449975],[-71.235791495,41.674556023],[-71.235764546,41.674649222],[-71.235790168,41.674731359],[-71.235807711,41.674790013],[-71.235810925,41.674862036],[-71.235803322,41.67493106],[-71.235785872,41.675036105],[-71.235764874,41.675098627],[-71.235710077,41.675139025],[-71.235667855,41.675185261],[-71.235663454,41.675202265],[-71.235709164,41.675257989],[-71.23570401,41.67533962],[-71.235678035,41.675410912],[-71.235661002,41.675465965],[-71.235646615,41.675523151],[-71.235633212,41.675578349],[-71.235619775,41.675634165],[-71.235605388,41.675691351],[-71.235587207,41.675751204],[-71.23556716,41.675812356],[-71.235545183,41.675875516],[-71.235524051,41.675940782],[-71.235505501,41.676008843],[-71.235493622,41.676071569],[-71.235489546,41.676143392],[-71.23546855,41.676205205],[-71.23544596,41.676261526],[-71.235428994,41.67631523],[-71.235414694,41.676328575],[-71.235066097,41.676328961],[-71.235054579,41.676392946],[-71.235164934,41.676409529],[-71.23537509,41.676427874],[-71.235394637,41.676496343],[-71.235426141,41.676549976],[-71.235451121,41.676625204],[-71.235487078,41.676701442],[-71.235528287,41.676791253],[-71.235542101,41.676859229],[-71.235568296,41.6769284],[-71.235584422,41.676997983],[-71.235580445,41.67706777],[-71.235568843,41.677144904],[-71.235546363,41.677219041],[-71.235504895,41.677289245],[-71.235504875,41.677289326]]]]}}"}, +{"type": "precinct", "typeId": 208, "areaId": 25670, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":9,\"NAME\":\"0208\",\"SHAPE_Length\":0.047580134626045,\"SHAPE_Area\":-0.00011617321301646},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.259033463,41.673541515],[-71.259079463,41.673729515],[-71.259102463,41.673846515],[-71.259941464,41.673667515],[-71.260803463,41.673488515],[-71.261765464,41.673294514],[-71.262054464,41.673243515],[-71.262840464,41.673083515],[-71.263252464,41.672999515],[-71.263710464,41.672913515],[-71.264572464,41.672743515],[-71.264870465,41.672683515],[-71.265114464,41.672647515],[-71.265297465,41.672625515],[-71.265343465,41.672615514],[-71.265900465,41.672573514],[-71.266113465,41.672564515],[-71.266579465,41.672564515],[-71.266785466,41.672551514],[-71.267128465,41.673625514],[-71.267441466,41.674596515],[-71.267632466,41.675105515],[-71.267715466,41.675360515],[-71.267830466,41.675646515],[-71.268188466,41.675563515],[-71.268501466,41.675503515],[-71.268989467,41.675403515],[-71.269203467,41.675363515],[-71.269592467,41.675278515],[-71.269936466,41.675218515],[-71.270286466,41.675148515],[-71.270546467,41.675102515],[-71.271507467,41.674925515],[-71.272461468,41.674717514],[-71.272232467,41.674109515],[-71.272034468,41.673609514],[-71.271843467,41.673104514],[-71.271652467,41.672603515],[-71.271553467,41.672326514],[-71.271492467,41.672179515],[-71.271248467,41.671485514],[-71.271240467,41.671472514],[-71.271187467,41.671307514],[-71.270874467,41.670516514],[-71.270622467,41.669854514],[-71.270538466,41.669622514],[-71.270302466,41.668978514],[-71.270012466,41.668223513],[-71.269539466,41.666994513],[-71.269379466,41.666578514],[-71.269157466,41.665992513],[-71.269112465,41.665876513],[-71.268891466,41.665304513],[-71.268776466,41.664991513],[-71.268715466,41.664821513],[-71.268364466,41.663901513],[-71.268291466,41.663713513],[-71.268104465,41.663226513],[-71.267029465,41.663463513],[-71.266701465,41.663531513],[-71.266243465,41.663628513],[-71.265373464,41.663824513],[-71.265289464,41.663840513],[-71.265175464,41.663860513],[-71.264763464,41.663954513],[-71.264404464,41.664024513],[-71.264137465,41.664092513],[-71.263756464,41.664226513],[-71.263580464,41.664279513],[-71.263458464,41.664308513],[-71.263268464,41.664352513],[-71.262710464,41.664462513],[-71.262138463,41.664591513],[-71.261192464,41.664785513],[-71.260429463,41.664931513],[-71.259842463,41.665055513],[-71.259445463,41.665126513],[-71.258789463,41.665278513],[-71.258209463,41.665393514],[-71.257645462,41.665521513],[-71.257332462,41.665572513],[-71.257672462,41.667146514],[-71.257711462,41.667329514],[-71.257896463,41.668187514],[-71.258263463,41.669931514],[-71.258389462,41.670507514],[-71.258476463,41.670909515],[-71.258736462,41.672183514],[-71.258843463,41.672694515],[-71.258987463,41.673321515],[-71.259033463,41.673541515]]]]}}"}, +{"type": "precinct", "typeId": 209, "areaId": 25669, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":8,\"NAME\":\"0209\",\"SHAPE_Length\":0.019530144416021,\"SHAPE_Area\":-1.6432855469023e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.268501466,41.675503515],[-71.268799466,41.676294516],[-71.268906466,41.676584516],[-71.268997466,41.676853515],[-71.268295466,41.676993516],[-71.268608466,41.677883515],[-71.269692467,41.677672516],[-71.270058467,41.677606515],[-71.270950467,41.677431515],[-71.271072467,41.677865515],[-71.271141467,41.678130515],[-71.271179467,41.678323516],[-71.271324467,41.678883516],[-71.271584468,41.679841516],[-71.271934468,41.679798516],[-71.272942468,41.679679516],[-71.273188468,41.679647516],[-71.273598468,41.679594515],[-71.273995468,41.679564516],[-71.273850468,41.678963516],[-71.273384467,41.677243515],[-71.273353468,41.677163515],[-71.273285467,41.676957516],[-71.273147468,41.676591515],[-71.272957467,41.676067515],[-71.272743467,41.675473515],[-71.272461468,41.674717514],[-71.271507467,41.674925515],[-71.270546467,41.675102515],[-71.270286466,41.675148515],[-71.269936466,41.675218515],[-71.269592467,41.675278515],[-71.269203467,41.675363515],[-71.268989467,41.675403515],[-71.268501466,41.675503515]]]]}}"}, +{"type": "precinct", "typeId": 301, "areaId": 25676, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":15,\"NAME\":\"0301\",\"SHAPE_Length\":0.27267535139973,\"SHAPE_Area\":-0.0016850913961406},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.698403622,41.967108558],[-71.698419623,41.967153559],[-71.698504623,41.967172559],[-71.698579622,41.967159559],[-71.698643623,41.967118559],[-71.698715623,41.967091558],[-71.698877623,41.967136559],[-71.698968623,41.967152559],[-71.699054623,41.967138559],[-71.699110623,41.967103559],[-71.699121623,41.967087558],[-71.699143623,41.967035559],[-71.699140623,41.966969558],[-71.699161623,41.966914558],[-71.699246623,41.966910558],[-71.699312623,41.966935558],[-71.699363623,41.966985559],[-71.699422623,41.967011558],[-71.699461623,41.966977559],[-71.699499623,41.966922559],[-71.699579623,41.966921559],[-71.699833623,41.966955558],[-71.699888623,41.966933558],[-71.699885623,41.966880558],[-71.699836623,41.966838558],[-71.699805623,41.966798558],[-71.699849623,41.966739558],[-71.699897623,41.966691559],[-71.699933623,41.966630559],[-71.699964623,41.966514559],[-71.699994623,41.966454559],[-71.700061623,41.966424558],[-71.700135624,41.966407558],[-71.700211624,41.966412558],[-71.700241623,41.966456559],[-71.700220623,41.966582558],[-71.700243623,41.966649559],[-71.700282623,41.966712559],[-71.700338623,41.966752559],[-71.700416623,41.966776558],[-71.700498623,41.966779558],[-71.700576623,41.966758558],[-71.700641624,41.966721558],[-71.700689623,41.966676558],[-71.700703623,41.966605558],[-71.700687623,41.966540558],[-71.700682623,41.966468558],[-71.700690623,41.966291558],[-71.700705623,41.966262559],[-71.700713624,41.966183559],[-71.700712171,41.966057189],[-71.701142624,41.965789558],[-71.701315624,41.965723558],[-71.701414624,41.965657558],[-71.701560623,41.965509558],[-71.701600623,41.965358558],[-71.701876624,41.965357558],[-71.701997624,41.965324558],[-71.702074624,41.965168558],[-71.702129624,41.965071558],[-71.702460624,41.965129558],[-71.702530624,41.965052557],[-71.702559625,41.964898558],[-71.702518624,41.964769558],[-71.702749624,41.964565558],[-71.702811624,41.964557558],[-71.702912624,41.964595559],[-71.702995624,41.964607558],[-71.704283625,41.964638558],[-71.704047625,41.964875558],[-71.704316853,41.966129065],[-71.704681624,41.965897558],[-71.704948625,41.965779558],[-71.705070624,41.965744558],[-71.705162625,41.965729558],[-71.705162625,41.965760558],[-71.705170625,41.965790558],[-71.705170625,41.965840558],[-71.705177625,41.965859558],[-71.705185625,41.965916558],[-71.705185625,41.965954558],[-71.705200625,41.966030559],[-71.705215625,41.966069559],[-71.705238625,41.966202558],[-71.705932625,41.966120558],[-71.70622778,41.96691727],[-71.706566626,41.966832558],[-71.706848625,41.966736558],[-71.706928625,41.966713559],[-71.706152352,41.965385792],[-71.706655597,41.96518063],[-71.706474625,41.964825558],[-71.706367625,41.964638558],[-71.706192625,41.964318557],[-71.706070625,41.964070558],[-71.705574625,41.963234558],[-71.705444625,41.963002558],[-71.705345625,41.962806727],[-71.706064625,41.962525557],[-71.706031625,41.962473557],[-71.706131625,41.962444557],[-71.705965643,41.962191715],[-71.706642625,41.961930557],[-71.707542626,41.961579557],[-71.708351625,41.961274557],[-71.708801626,41.961094557],[-71.708615904,41.960840951],[-71.709442626,41.960536557],[-71.710634558,41.960388826],[-71.714880627,41.959862557],[-71.714711627,41.958391556],[-71.715590628,41.958154557],[-71.714987628,41.957403556],[-71.714910238,41.956497316],[-71.715187628,41.956639556],[-71.715393628,41.956738556],[-71.715424628,41.956757556],[-71.715576628,41.956856556],[-71.715660627,41.956921556],[-71.715904628,41.957138557],[-71.716011923,41.957247501],[-71.716533976,41.956966413],[-71.717434679,41.956335704],[-71.717777629,41.956095556],[-71.718350629,41.956707556],[-71.717550628,41.957152556],[-71.717774628,41.957457556],[-71.717350629,41.957651556],[-71.717501628,41.957873556],[-71.72124663,41.957720556],[-71.72116763,41.958209557],[-71.724449631,41.958686557],[-71.72513463,41.956726556],[-71.729054786,41.957084699],[-71.732895911,41.956316531],[-71.732699459,41.955460749],[-71.731958633,41.952233555],[-71.734518439,41.951550314],[-71.737960635,41.950631554],[-71.738179635,41.948485554],[-71.738830224,41.948399721],[-71.740127635,41.948228554],[-71.739817635,41.947555554],[-71.741132626,41.947406024],[-71.742449424,41.94725629],[-71.742552636,41.947244553],[-71.742421192,41.945992891],[-71.742307636,41.944911553],[-71.742142662,41.944284639],[-71.741907441,41.943390778],[-71.741783098,41.942918263],[-71.741462635,41.941708553],[-71.741581635,41.939542552],[-71.743258636,41.939534552],[-71.743703527,41.939811455],[-71.743981636,41.939984552],[-71.744110637,41.940392552],[-71.749405638,41.940878552],[-71.751529867,41.93189275],[-71.753390885,41.93001594],[-71.754187165,41.929561348],[-71.75418725,41.9295613],[-71.751511638,41.92957355],[-71.749513638,41.92974755],[-71.742864635,41.92995955],[-71.741975635,41.92998755],[-71.741754635,41.92999455],[-71.740905635,41.93000855],[-71.740669634,41.93001355],[-71.736317633,41.93013555],[-71.728656631,41.93035055],[-71.728352631,41.930359551],[-71.72588663,41.930428551],[-71.722467628,41.93049955],[-71.720177628,41.930548551],[-71.717817627,41.930613551],[-71.714492626,41.930707551],[-71.709140624,41.930832551],[-71.707849624,41.930863551],[-71.707522624,41.930867552],[-71.700519622,41.931051551],[-71.699319621,41.931083552],[-71.69805062,41.931103552],[-71.681976616,41.931363552],[-71.680002615,41.931545552],[-71.678490614,41.931551553],[-71.676138613,41.931566553],[-71.676227613,41.931583552],[-71.676301614,41.931617552],[-71.676335614,41.931666553],[-71.676292613,41.931715552],[-71.676205614,41.931873552],[-71.67618464,41.931885602],[-71.676094052,41.932014477],[-71.675879614,41.932319552],[-71.676428613,41.933000552],[-71.67677307,41.932902238],[-71.677402614,41.932722552],[-71.677681334,41.933454564],[-71.67786834,41.933945706],[-71.67804389,41.934406761],[-71.679775614,41.933833552],[-71.679838434,41.93393515],[-71.680449071,41.935239593],[-71.678934393,41.935336225],[-71.678333615,41.935374553],[-71.677855614,41.935253553],[-71.676665614,41.935305553],[-71.676677614,41.935806553],[-71.677973614,41.936885553],[-71.678126614,41.938142554],[-71.678427145,41.938413674],[-71.679069169,41.939359812],[-71.679192614,41.938912554],[-71.679230614,41.938824554],[-71.679276615,41.938782554],[-71.679329615,41.938767554],[-71.679909615,41.938685554],[-71.681297615,41.938481553],[-71.681877616,41.938389554],[-71.682205616,41.938332554],[-71.682409621,41.938551076],[-71.681467547,41.939146251],[-71.681172419,41.939638554],[-71.680578636,41.940629046],[-71.678730799,41.940386152],[-71.678246615,41.941728555],[-71.681695636,41.941099086],[-71.683265616,41.940812554],[-71.683917616,41.942584554],[-71.685002616,41.942158554],[-71.685455537,41.942542159],[-71.685266658,41.94278182],[-71.685137617,41.942945554],[-71.685446617,41.943255554],[-71.685500617,41.943220555],[-71.685807617,41.943468555],[-71.685998617,41.943340554],[-71.686273617,41.943589554],[-71.686703618,41.943305554],[-71.687279618,41.943891555],[-71.686459618,41.944111554],[-71.687797618,41.947160555],[-71.690266619,41.946683555],[-71.690805392,41.946965535],[-71.690733687,41.947159426],[-71.690770618,41.948035555],[-71.69151362,41.948085554],[-71.691439619,41.948770556],[-71.690279619,41.948928555],[-71.690350619,41.949116555],[-71.690104619,41.950487555],[-71.69139962,41.950505556],[-71.691246619,41.951781556],[-71.691358619,41.953504556],[-71.695236621,41.953497556],[-71.695259621,41.954952557],[-71.69146962,41.954956557],[-71.69154862,41.956586557],[-71.69138162,41.957179556],[-71.69192962,41.958076558],[-71.690835619,41.959696557],[-71.68916947,41.960540462],[-71.688912619,41.960670558],[-71.689016862,41.961336254],[-71.689026619,41.961398558],[-71.689240887,41.961431516],[-71.689320591,41.961443776],[-71.69178962,41.961823557],[-71.693225621,41.963270558],[-71.693147621,41.963425558],[-71.693062621,41.963563558],[-71.692956621,41.963708558],[-71.692802621,41.963867558],[-71.69259462,41.964048558],[-71.692549621,41.964087558],[-71.692391621,41.964219558],[-71.69229762,41.964298558],[-71.692040621,41.964459558],[-71.69177562,41.964642559],[-71.69152062,41.964782559],[-71.69115662,41.965007558],[-71.690999903,41.965094439],[-71.69104362,41.965187559],[-71.69169462,41.965031559],[-71.69237962,41.965697559],[-71.692522621,41.965637559],[-71.69258962,41.965600559],[-71.692655621,41.965575559],[-71.692740621,41.965557559],[-71.692795621,41.965537559],[-71.692910621,41.965495558],[-71.693021621,41.965447558],[-71.693085621,41.965406559],[-71.693123621,41.965354558],[-71.693141621,41.965290558],[-71.693163621,41.965176558],[-71.693197621,41.965125558],[-71.693255621,41.965092559],[-71.693318621,41.965095558],[-71.693348621,41.965113559],[-71.693391621,41.965139558],[-71.693640621,41.965320558],[-71.693851621,41.965527558],[-71.694172621,41.965822558],[-71.694301622,41.965913559],[-71.694446621,41.965993558],[-71.694519621,41.966024559],[-71.694674622,41.966053558],[-71.694755621,41.966057558],[-71.695013621,41.966059558],[-71.695187621,41.966045559],[-71.695448622,41.966042559],[-71.695524622,41.966053558],[-71.695600622,41.966053558],[-71.695680622,41.966044559],[-71.695843622,41.966013558],[-71.695924621,41.966002558],[-71.696338622,41.965997558],[-71.696578622,41.966009559],[-71.696657622,41.966032558],[-71.696723622,41.966074558],[-71.696759622,41.966137558],[-71.696782622,41.966190558],[-71.696803622,41.966306558],[-71.696832622,41.966360559],[-71.696906622,41.966396559],[-71.696985622,41.966415559],[-71.697148623,41.966436559],[-71.697229623,41.966463558],[-71.697272622,41.966482558],[-71.697456622,41.966572559],[-71.697522623,41.966614559],[-71.697652623,41.966713559],[-71.697694623,41.966768559],[-71.697705622,41.966823559],[-71.697715623,41.966942559],[-71.697728623,41.966997559],[-71.697754623,41.967057559],[-71.697800622,41.967103559],[-71.697873623,41.967128558],[-71.697956622,41.967120559],[-71.698025623,41.967083559],[-71.698081623,41.967046558],[-71.698155623,41.967004559],[-71.698228622,41.966972558],[-71.698308622,41.966951558],[-71.698395623,41.966954558],[-71.698439622,41.966993558],[-71.698426623,41.967053558],[-71.698403622,41.967108558]]]]}}"}, +{"type": "precinct", "typeId": 302, "areaId": 25677, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":16,\"NAME\":\"0302\",\"SHAPE_Length\":0.40387102826814,\"SHAPE_Area\":-0.0057770199099953},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.734085326,42.010335862],[-71.749513572,42.009989228],[-71.750279599,42.009970233],[-71.750310642,42.009811566],[-71.750328642,42.009835565],[-71.750389642,42.009873565],[-71.750458642,42.009896565],[-71.750526643,42.009900565],[-71.750664643,42.009892565],[-71.751045642,42.009888566],[-71.751701642,42.009861565],[-71.751953642,42.009850566],[-71.752235643,42.009850566],[-71.752411643,42.009865565],[-71.752472643,42.009880565],[-71.752541643,42.009892565],[-71.752617643,42.009900565],[-71.752769643,42.009903565],[-71.753075643,42.009900565],[-71.753143643,42.009892565],[-71.755058643,42.009781565],[-71.755098644,42.009850565],[-71.755098671,42.009850614],[-71.77153533,42.009441099],[-71.799242128,42.008030116],[-71.799221335,42.006328348],[-71.799070544,42.000108922],[-71.79900231,41.996104257],[-71.798996657,41.995891561],[-71.798815656,41.989105559],[-71.798763656,41.985155559],[-71.798763656,41.985130559],[-71.798763656,41.985099559],[-71.798736656,41.982997559],[-71.798692657,41.980321558],[-71.798646656,41.976977557],[-71.798646656,41.976920557],[-71.798646656,41.976875557],[-71.798579656,41.971908556],[-71.798549656,41.970435556],[-71.798548656,41.970403556],[-71.798545655,41.970274556],[-71.798410655,41.963719555],[-71.798379655,41.962954554],[-71.798359655,41.962446554],[-71.798342655,41.962011555],[-71.798329655,41.961684554],[-71.798328655,41.961665554],[-71.798328655,41.961650554],[-71.798313655,41.961246554],[-71.798312655,41.961222554],[-71.798305655,41.961030554],[-71.798303655,41.960980554],[-71.798302655,41.960588555],[-71.798302655,41.960551554],[-71.798299655,41.958755554],[-71.798299655,41.958749554],[-71.798298655,41.957628553],[-71.798251655,41.956526554],[-71.798222655,41.955856553],[-71.798200655,41.955364553],[-71.798188655,41.953883553],[-71.798168655,41.953872553],[-71.798099654,41.953822553],[-71.798068655,41.953738553],[-71.798058654,41.951473552],[-71.798055654,41.948910552],[-71.798126655,41.948866552],[-71.798089655,41.947064552],[-71.798075654,41.946556551],[-71.798074654,41.946516551],[-71.798038654,41.945087551],[-71.798038654,41.945074551],[-71.798015654,41.941725551],[-71.798014654,41.941672551],[-71.798014654,41.94163555],[-71.798014654,41.94156055],[-71.798005654,41.94101255],[-71.797936654,41.93634455],[-71.797935654,41.93630855],[-71.797935654,41.936279549],[-71.797926654,41.93566655],[-71.797924653,41.935523549],[-71.797922653,41.935403549],[-71.797910654,41.934123549],[-71.797910654,41.933224549],[-71.797910654,41.933141549],[-71.797897654,41.932625548],[-71.797894654,41.932372548],[-71.797893654,41.932224549],[-71.797893654,41.932216548],[-71.797892654,41.932152549],[-71.797891654,41.931971549],[-71.797886653,41.931369549],[-71.797883653,41.931019549],[-71.797774653,41.928561548],[-71.797234653,41.928572548],[-71.797101653,41.928574548],[-71.796585653,41.928549548],[-71.796522653,41.928546548],[-71.794807652,41.928619548],[-71.787094649,41.928883548],[-71.785995649,41.928921548],[-71.784642649,41.928967548],[-71.783234648,41.929023548],[-71.781231648,41.929067549],[-71.770738644,41.929223549],[-71.770378645,41.929230549],[-71.768074644,41.929272549],[-71.767050643,41.929287549],[-71.766418643,41.929321549],[-71.765249643,41.929378549],[-71.762621641,41.929438549],[-71.761498641,41.92946455],[-71.75862464,41.929553549],[-71.75831864,41.92954355],[-71.75828264,41.92954255],[-71.75418725,41.9295613],[-71.754187165,41.929561348],[-71.753390885,41.93001594],[-71.751529867,41.93189275],[-71.749405638,41.940878552],[-71.744110637,41.940392552],[-71.743981636,41.939984552],[-71.743703527,41.939811455],[-71.743258636,41.939534552],[-71.741581635,41.939542552],[-71.741462635,41.941708553],[-71.741783098,41.942918263],[-71.741907441,41.943390778],[-71.742142662,41.944284639],[-71.742307636,41.944911553],[-71.742421192,41.945992891],[-71.742552636,41.947244553],[-71.742449424,41.94725629],[-71.741132626,41.947406024],[-71.739817635,41.947555554],[-71.740127635,41.948228554],[-71.738830224,41.948399721],[-71.738179635,41.948485554],[-71.737960635,41.950631554],[-71.734518439,41.951550314],[-71.731958633,41.952233555],[-71.732699459,41.955460749],[-71.732895911,41.956316531],[-71.729054786,41.957084699],[-71.72513463,41.956726556],[-71.724449631,41.958686557],[-71.72116763,41.958209557],[-71.72124663,41.957720556],[-71.717501628,41.957873556],[-71.717350629,41.957651556],[-71.717774628,41.957457556],[-71.717550628,41.957152556],[-71.718350629,41.956707556],[-71.717777629,41.956095556],[-71.717434679,41.956335704],[-71.716533976,41.956966413],[-71.716011923,41.957247501],[-71.715904628,41.957138557],[-71.715660627,41.956921556],[-71.715576628,41.956856556],[-71.715424628,41.956757556],[-71.715393628,41.956738556],[-71.715187628,41.956639556],[-71.714910238,41.956497316],[-71.714987628,41.957403556],[-71.715590628,41.958154557],[-71.714711627,41.958391556],[-71.714880627,41.959862557],[-71.710634558,41.960388826],[-71.709442626,41.960536557],[-71.708615904,41.960840951],[-71.708801626,41.961094557],[-71.708351625,41.961274557],[-71.707542626,41.961579557],[-71.706642625,41.961930557],[-71.705965643,41.962191715],[-71.706131625,41.962444557],[-71.706031625,41.962473557],[-71.706064625,41.962525557],[-71.705345625,41.962806727],[-71.705444625,41.963002558],[-71.705574625,41.963234558],[-71.706070625,41.964070558],[-71.706192625,41.964318557],[-71.706367625,41.964638558],[-71.706474625,41.964825558],[-71.706655597,41.96518063],[-71.706152352,41.965385792],[-71.706928625,41.966713559],[-71.706848625,41.966736558],[-71.706566626,41.966832558],[-71.70622778,41.96691727],[-71.705932625,41.966120558],[-71.705238625,41.966202558],[-71.705254625,41.966252558],[-71.705261625,41.966305558],[-71.705276625,41.966359558],[-71.705292625,41.966458559],[-71.705307625,41.966496559],[-71.705330625,41.966629558],[-71.705360625,41.966706558],[-71.705399625,41.966778558],[-71.705490625,41.966885559],[-71.705544625,41.966923559],[-71.705574625,41.966938558],[-71.705635625,41.966980558],[-71.705742625,41.966999558],[-71.705864625,41.967041559],[-71.706078625,41.967080559],[-71.706535625,41.967183558],[-71.706635625,41.967202558],[-71.706810625,41.967251558],[-71.706993626,41.967297559],[-71.707146626,41.967324558],[-71.707268626,41.967324558],[-71.707409626,41.967302558],[-71.707565626,41.967438558],[-71.707595626,41.967457558],[-71.707487626,41.967482558],[-71.707413625,41.967493559],[-71.707340626,41.967497558],[-71.707234626,41.967492559],[-71.707059625,41.967468559],[-71.706961625,41.967466558],[-71.706705626,41.967491559],[-71.706565626,41.967500558],[-71.706535625,41.967502558],[-71.706505468,41.967640957],[-71.705198625,41.968002558],[-71.704989754,41.967727229],[-71.70468864,41.967330306],[-71.704494625,41.967074558],[-71.704137561,41.967723027],[-71.704056624,41.967682559],[-71.703880624,41.967614558],[-71.703835458,41.967593639],[-71.702980625,41.969063559],[-71.702931624,41.969139559],[-71.70306594,41.969520317],[-71.702706625,41.969568559],[-71.702616504,41.96965101],[-71.702349624,41.969798559],[-71.702301411,41.969903751],[-71.702250624,41.970014559],[-71.701874624,41.970077559],[-71.701536738,41.970237172],[-71.701094948,41.970379418],[-71.700833624,41.970463559],[-71.700934819,41.970661975],[-71.700695624,41.970696559],[-71.700576624,41.97057456],[-71.700360624,41.97065356],[-71.700212624,41.970412559],[-71.700035624,41.970473559],[-71.700350623,41.970969559],[-71.700275397,41.970959728],[-71.699833623,41.971064559],[-71.699876624,41.971132559],[-71.699543623,41.971244559],[-71.699766761,41.971763439],[-71.698973845,41.973082593],[-71.699036623,41.973151559],[-71.699070093,41.973288719],[-71.700335623,41.97333556],[-71.700326623,41.97339256],[-71.701225624,41.973408559],[-71.701300559,41.973363503],[-71.701747624,41.973291559],[-71.701754625,41.973231559],[-71.702463624,41.97315056],[-71.702643625,41.97417356],[-71.703370625,41.97380656],[-71.703951625,41.97444956],[-71.703621625,41.97461656],[-71.704084625,41.97512956],[-71.705093625,41.97462556],[-71.705651625,41.97524756],[-71.704644626,41.97575556],[-71.705500625,41.97665656],[-71.705123839,41.977087277],[-71.705200626,41.977105561],[-71.705088484,41.977127694],[-71.704983625,41.97724756],[-71.70740552,41.978535757],[-71.707493239,41.978582414],[-71.708416627,41.979073561],[-71.708486626,41.97954356],[-71.709248627,41.979478561],[-71.708972626,41.979010561],[-71.709046626,41.97826156],[-71.709468389,41.978223645],[-71.714745323,41.977749711],[-71.714355628,41.97655156],[-71.714508629,41.976601559],[-71.714661629,41.97666256],[-71.714821628,41.97671556],[-71.714996628,41.97675456],[-71.715355629,41.97679956],[-71.715599629,41.97680756],[-71.716019629,41.97684156],[-71.716240629,41.97684956],[-71.716759629,41.97684956],[-71.716972629,41.97683856],[-71.71717863,41.97680756],[-71.71775863,41.97670856],[-71.71813263,41.976662559],[-71.71831663,41.97662756],[-71.718465629,41.97802556],[-71.71994063,41.97797856],[-71.719925631,41.97832956],[-71.719924455,41.97847695],[-71.71764863,41.978514561],[-71.717741653,41.981085454],[-71.717892635,41.982107929],[-71.718190727,41.983120385],[-71.718700631,41.984211561],[-71.71875263,41.984710562],[-71.71949863,41.985340562],[-71.722007752,41.984633367],[-71.722573014,41.985131177],[-71.720685631,41.985773561],[-71.720818758,41.985907397],[-71.720873631,41.985962562],[-71.720613718,41.985981993],[-71.71699463,41.986252562],[-71.717770312,41.98701647],[-71.720881632,41.990080562],[-71.722363632,41.991045563],[-71.721919297,41.991987377],[-71.722026632,41.991988562],[-71.722204632,41.991967563],[-71.722279632,41.991969562],[-71.722327632,41.991977563],[-71.725363791,41.990670706],[-71.726334633,41.990560562],[-71.72637694,41.99089444],[-71.726326251,41.991498265],[-71.726320895,41.992097294],[-71.726305633,41.993804563],[-71.726731634,41.993776563],[-71.726742633,41.993863563],[-71.728098811,41.993805263],[-71.728759206,41.993607299],[-71.730545635,41.993035563],[-71.730743635,41.993321563],[-71.730942635,41.993576563],[-71.731079635,41.993794563],[-71.731041635,41.993813563],[-71.730774634,41.993908563],[-71.731222635,41.994932563],[-71.729983635,41.994968563],[-71.729992707,41.99412625],[-71.729797635,41.994179563],[-71.729408634,41.994294563],[-71.729179634,41.994355563],[-71.729140634,41.994367562],[-71.728714634,41.994496563],[-71.728554634,41.994530563],[-71.728218634,41.994580563],[-71.728119634,41.994591563],[-71.727036634,41.994675563],[-71.726730634,41.994706563],[-71.726372633,41.994725563],[-71.726067633,41.994736563],[-71.726295633,41.994759563],[-71.726601633,41.994843563],[-71.726868634,41.994957563],[-71.726973061,41.994990916],[-71.72697638,41.995584396],[-71.726980143,41.996257349],[-71.727002634,42.000279564],[-71.730346635,42.003714565],[-71.732927176,42.003086192],[-71.733656637,42.002908564],[-71.734751636,42.004862564],[-71.734458985,42.005051365],[-71.733373636,42.005751565],[-71.733494859,42.006532414],[-71.734085326,42.010335862]]]]}}"}, +{"type": "precinct", "typeId": 303, "areaId": 25678, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":17,\"NAME\":\"0303\",\"SHAPE_Length\":0.42816867419043,\"SHAPE_Area\":-0.0028674382600325},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.638710605,42.002873567],[-71.638779605,42.003003568],[-71.638824605,42.003140568],[-71.638901605,42.003346567],[-71.638985605,42.003670567],[-71.639183605,42.004555568],[-71.639267606,42.004895568],[-71.639351605,42.005207568],[-71.639404606,42.005333568],[-71.639435605,42.005429568],[-71.639832606,42.005967568],[-71.640251606,42.006569568],[-71.640472606,42.006848568],[-71.640521606,42.006897568],[-71.640602606,42.006977568],[-71.640755606,42.007111568],[-71.640900606,42.007222568],[-71.641159606,42.007382568],[-71.641365606,42.007485568],[-71.641525606,42.007580568],[-71.641678606,42.007683568],[-71.641808606,42.007790568],[-71.642029606,42.007958569],[-71.642830607,42.008633568],[-71.643021607,42.008847568],[-71.643127607,42.008973569],[-71.643187607,42.009053568],[-71.643561608,42.009457569],[-71.643919607,42.009861568],[-71.644276607,42.010247568],[-71.644391607,42.010384568],[-71.644489608,42.010514568],[-71.644565607,42.010651568],[-71.644634607,42.010762569],[-71.644870607,42.011303569],[-71.645143607,42.011906569],[-71.645308608,42.012326569],[-71.649529609,42.012224569],[-71.65227361,42.012157568],[-71.65261761,42.012149569],[-71.65425261,42.012109569],[-71.65440761,42.012105569],[-71.661434613,42.011935569],[-71.661474613,42.011934569],[-71.661622613,42.011929568],[-71.663539614,42.011865568],[-71.664587614,42.011830568],[-71.664983614,42.011817568],[-71.666551615,42.011779568],[-71.666930615,42.011770568],[-71.669167615,42.011717568],[-71.670172616,42.011692568],[-71.674097617,42.011598568],[-71.674630617,42.011585568],[-71.674764617,42.011581568],[-71.675124618,42.011572568],[-71.676150617,42.011546568],[-71.678024618,42.011504568],[-71.678024618,42.011380568],[-71.678017619,42.011250568],[-71.678001619,42.011162567],[-71.677963618,42.011036568],[-71.677879619,42.010838568],[-71.677704619,42.010491568],[-71.677544618,42.010197568],[-71.677391618,42.009873567],[-71.677216618,42.009541567],[-71.677150618,42.009388567],[-71.677087618,42.009244568],[-71.677032618,42.009117567],[-71.676918618,42.008820567],[-71.676895618,42.008744567],[-71.676712618,42.008263567],[-71.676651618,42.008030567],[-71.676651618,42.007828567],[-71.676659618,42.007683567],[-71.676682618,42.007588567],[-71.676720618,42.007481567],[-71.676781618,42.007378567],[-71.676857618,42.007271567],[-71.676918618,42.007203567],[-71.676946618,42.007158567],[-71.677063618,42.007054567],[-71.677156618,42.006987567],[-71.677223618,42.006939567],[-71.677963618,42.006455567],[-71.678223618,42.006264566],[-71.678757619,42.005928567],[-71.679153618,42.005646566],[-71.679466618,42.005429566],[-71.679680618,42.005249566],[-71.679909619,42.005082566],[-71.680031618,42.004956566],[-71.680183619,42.004746566],[-71.680305619,42.004547566],[-71.680443619,42.004303566],[-71.680595618,42.003960567],[-71.680862619,42.003331566],[-71.680871619,42.003305566],[-71.680969619,42.003018566],[-71.681000619,42.002839566],[-71.681007619,42.002659566],[-71.681007619,42.002472087],[-71.681118619,42.002487566],[-71.683604273,42.002893111],[-71.685379511,42.00318275],[-71.685501201,42.003202603],[-71.685721621,42.003238566],[-71.685721106,42.003087073],[-71.685720662,42.00295669],[-71.685718621,42.002356566],[-71.685116863,42.00107984],[-71.68479062,42.000102566],[-71.68408062,42.000002565],[-71.684083619,41.999421565],[-71.682240619,41.999293565],[-71.682230619,41.998920565],[-71.68407762,41.998854565],[-71.68397062,41.997742565],[-71.68499762,41.997533565],[-71.68476862,41.995890564],[-71.687982621,41.995425564],[-71.687752621,41.993506564],[-71.688212008,41.993321887],[-71.688281621,41.993143564],[-71.688284621,41.993079564],[-71.688278621,41.993015564],[-71.68829962,41.992950564],[-71.688333621,41.992891564],[-71.688374621,41.992838564],[-71.688478621,41.992748563],[-71.688523621,41.992702564],[-71.688641621,41.992617564],[-71.688771621,41.992548564],[-71.688834621,41.992519564],[-71.689034363,41.992402985],[-71.688778621,41.992240564],[-71.688186621,41.992469564],[-71.688071621,41.992431564],[-71.688266621,41.992160564],[-71.688596535,41.991735678],[-71.68861162,41.991755563],[-71.688666621,41.991798563],[-71.688759621,41.991914563],[-71.688832621,41.991937564],[-71.688900621,41.991916563],[-71.688952621,41.991863564],[-71.689012621,41.991736563],[-71.689049621,41.991683563],[-71.689069621,41.991631564],[-71.689096621,41.991628564],[-71.689138621,41.991607564],[-71.689251621,41.991515564],[-71.689259325,41.99151052],[-71.689455621,41.991111563],[-71.689740622,41.991184564],[-71.689922621,41.990945563],[-71.689776621,41.990617564],[-71.688643621,41.990398563],[-71.68775662,41.990620563],[-71.68745862,41.990130564],[-71.68628562,41.989194563],[-71.68544162,41.988519563],[-71.686290619,41.988137563],[-71.68653662,41.987655563],[-71.68625262,41.987261563],[-71.68618362,41.986841562],[-71.68696262,41.986842562],[-71.687013676,41.986654782],[-71.68700762,41.986653563],[-71.68692562,41.986626562],[-71.68686362,41.986581563],[-71.68681462,41.986523563],[-71.68678462,41.986458563],[-71.68673262,41.986256562],[-71.686727946,41.986217617],[-71.686233619,41.986223563],[-71.68589562,41.985700563],[-71.68628162,41.984249562],[-71.68653362,41.983799562],[-71.68655062,41.983611562],[-71.68620162,41.983371562],[-71.686268789,41.982039232],[-71.686258717,41.982040559],[-71.686179619,41.981557561],[-71.685895338,41.981515245],[-71.685802619,41.980719561],[-71.686090942,41.980429325],[-71.685825619,41.979564561],[-71.685852719,41.979448019],[-71.685315869,41.97920907],[-71.685080748,41.978644854],[-71.684431473,41.977900634],[-71.684365539,41.97767683],[-71.685993619,41.977186561],[-71.683500289,41.97314744],[-71.682638618,41.97175156],[-71.682493167,41.971801681],[-71.680583617,41.97242856],[-71.680493617,41.97245456],[-71.680404617,41.97247356],[-71.680331617,41.97247856],[-71.680168617,41.97246856],[-71.680055617,41.97245356],[-71.679984617,41.97243156],[-71.679915617,41.97239556],[-71.679836617,41.97234556],[-71.679784617,41.97230756],[-71.679736617,41.97225856],[-71.679674617,41.97209556],[-71.679746617,41.97213756],[-71.679822617,41.97214456],[-71.679842617,41.97211956],[-71.679815616,41.97206156],[-71.679683617,41.97188756],[-71.679616617,41.97185556],[-71.679565617,41.97181756],[-71.679517617,41.97177256],[-71.679487616,41.97170256],[-71.679416617,41.97158656],[-71.679361617,41.97153156],[-71.679321617,41.97147456],[-71.679271616,41.97142056],[-71.679174616,41.97137756],[-71.679095616,41.97133156],[-71.679042616,41.97126756],[-71.679016616,41.97120356],[-71.678977616,41.97112656],[-71.678947617,41.97111856],[-71.678807616,41.971082559],[-71.678778617,41.97104456],[-71.678802616,41.97100856],[-71.678853617,41.97096056],[-71.678853617,41.97092356],[-71.678778617,41.97091756],[-71.678714617,41.97094256],[-71.678651616,41.97094356],[-71.678611036,41.970919092],[-71.678511616,41.96970556],[-71.679372893,41.968903559],[-71.678680617,41.968903559],[-71.678642617,41.96889256],[-71.678535616,41.96885056],[-71.678345616,41.968743559],[-71.678299616,41.968705559],[-71.678261616,41.968666559],[-71.678215617,41.968628559],[-71.678826616,41.968436559],[-71.677889616,41.966354559],[-71.677692429,41.966239977],[-71.67735074,41.966204637],[-71.677402616,41.965813558],[-71.677652616,41.965853559],[-71.678265615,41.965275559],[-71.678455616,41.964792559],[-71.678446615,41.964407559],[-71.678351616,41.964393558],[-71.678070616,41.963753558],[-71.678138615,41.963711558],[-71.679636617,41.964155559],[-71.681054617,41.964590558],[-71.681331343,41.964669324],[-71.681353617,41.964533558],[-71.681113617,41.964305559],[-71.681338984,41.96387185],[-71.681391616,41.963770559],[-71.681609546,41.963856503],[-71.681888617,41.963966558],[-71.681724938,41.964713721],[-71.681708878,41.964776579],[-71.682441618,41.964984558],[-71.683269617,41.965253558],[-71.683701618,41.965401559],[-71.683899618,41.965469558],[-71.684823618,41.965721558],[-71.686115618,41.966107559],[-71.686340619,41.966180559],[-71.686547619,41.966232559],[-71.686772619,41.966269558],[-71.686995619,41.966300559],[-71.687239619,41.966323559],[-71.687676619,41.966331559],[-71.687877619,41.966331559],[-71.688134619,41.966315559],[-71.688328619,41.966291559],[-71.688556619,41.966250558],[-71.688808619,41.966171558],[-71.68893962,41.966137559],[-71.68911562,41.966092558],[-71.68934762,41.965996558],[-71.68988162,41.965738559],[-71.69016062,41.965570558],[-71.69046062,41.965418559],[-71.69077962,41.965216558],[-71.690999903,41.965094439],[-71.69115662,41.965007558],[-71.69152062,41.964782559],[-71.69177562,41.964642559],[-71.692040621,41.964459558],[-71.69229762,41.964298558],[-71.692391621,41.964219558],[-71.692549621,41.964087558],[-71.69259462,41.964048558],[-71.692802621,41.963867558],[-71.692956621,41.963708558],[-71.693062621,41.963563558],[-71.693147621,41.963425558],[-71.693225621,41.963270558],[-71.69178962,41.961823557],[-71.689320591,41.961443776],[-71.689240887,41.961431516],[-71.689026619,41.961398558],[-71.689016862,41.961336254],[-71.688912619,41.960670558],[-71.68916947,41.960540462],[-71.690835619,41.959696557],[-71.69192962,41.958076558],[-71.69138162,41.957179556],[-71.69154862,41.956586557],[-71.69146962,41.954956557],[-71.695259621,41.954952557],[-71.695236621,41.953497556],[-71.691358619,41.953504556],[-71.691246619,41.951781556],[-71.69139962,41.950505556],[-71.690104619,41.950487555],[-71.690350619,41.949116555],[-71.690279619,41.948928555],[-71.691439619,41.948770556],[-71.69151362,41.948085554],[-71.690770618,41.948035555],[-71.690733687,41.947159426],[-71.690805392,41.946965535],[-71.690266619,41.946683555],[-71.687797618,41.947160555],[-71.686459618,41.944111554],[-71.687279618,41.943891555],[-71.686703618,41.943305554],[-71.686273617,41.943589554],[-71.685998617,41.943340554],[-71.685807617,41.943468555],[-71.685500617,41.943220555],[-71.685446617,41.943255554],[-71.685137617,41.942945554],[-71.685266658,41.94278182],[-71.685455537,41.942542159],[-71.685002616,41.942158554],[-71.683917616,41.942584554],[-71.683265616,41.940812554],[-71.681695636,41.941099086],[-71.678246615,41.941728555],[-71.678730799,41.940386152],[-71.680578636,41.940629046],[-71.681172419,41.939638554],[-71.681467547,41.939146251],[-71.682409621,41.938551076],[-71.682205616,41.938332554],[-71.681877616,41.938389554],[-71.681297615,41.938481553],[-71.679909615,41.938685554],[-71.679329615,41.938767554],[-71.679276615,41.938782554],[-71.679230614,41.938824554],[-71.679192614,41.938912554],[-71.679069169,41.939359812],[-71.678427145,41.938413674],[-71.678126614,41.938142554],[-71.677973614,41.936885553],[-71.676677614,41.935806553],[-71.676665614,41.935305553],[-71.677855614,41.935253553],[-71.678333615,41.935374553],[-71.678934393,41.935336225],[-71.680449071,41.935239593],[-71.679838434,41.93393515],[-71.679775614,41.933833552],[-71.67804389,41.934406761],[-71.67786834,41.933945706],[-71.677681334,41.933454564],[-71.677402614,41.932722552],[-71.67677307,41.932902238],[-71.676428613,41.933000552],[-71.675879614,41.932319552],[-71.676094052,41.932014477],[-71.67618464,41.931885602],[-71.676205614,41.931873552],[-71.676292613,41.931715552],[-71.676335614,41.931666553],[-71.676301614,41.931617552],[-71.676227613,41.931583552],[-71.676138613,41.931566553],[-71.674778613,41.931603553],[-71.674742613,41.931603553],[-71.674145512,41.931608707],[-71.674145503,41.931608727],[-71.673827612,41.932282553],[-71.674450299,41.932414354],[-71.674385613,41.932572552],[-71.674332613,41.932679553],[-71.674240613,41.932839552],[-71.674133613,41.933007553],[-71.674065613,41.933098553],[-71.673873613,41.933387552],[-71.673676613,41.933682553],[-71.673523613,41.933972553],[-71.673439612,41.934170553],[-71.673363612,41.934464553],[-71.673279613,41.934857553],[-71.673241613,41.935120554],[-71.673233613,41.935231553],[-71.673218613,41.935337553],[-71.673195613,41.935639553],[-71.673172613,41.936215553],[-71.673157613,41.936409553],[-71.673142613,41.937285554],[-71.673134613,41.937741554],[-71.673126612,41.937828554],[-71.673119613,41.938336554],[-71.673088613,41.939591554],[-71.673088613,41.939995554],[-71.673103613,41.940174554],[-71.673134613,41.940365555],[-71.673149613,41.940518554],[-71.673233613,41.941082554],[-71.673307613,41.941619554],[-71.673409613,41.942353555],[-71.673538613,41.943169555],[-71.673553614,41.943474555],[-71.673561613,41.943726555],[-71.673583613,41.944137555],[-71.672714876,41.944684728],[-71.672957613,41.945235555],[-71.672452613,41.945280555],[-71.671816636,41.947314084],[-71.671576613,41.948081556],[-71.671175612,41.950974556],[-71.672266611,41.951040538],[-71.672286614,41.951168557],[-71.670980648,41.95109954],[-71.671386609,41.948069555],[-71.670843631,41.948026564],[-71.670616618,41.949644541],[-71.667755982,41.950595552],[-71.666492612,41.951015556],[-71.66538437,41.95577738],[-71.665089684,41.957043563],[-71.664807611,41.958255558],[-71.665645996,41.958343351],[-71.665867612,41.958366558],[-71.668603612,41.956551558],[-71.670875613,41.957687557],[-71.672261308,41.958110579],[-71.672372614,41.958144558],[-71.672370613,41.958273557],[-71.67163842,41.958306311],[-71.670671614,41.958349558],[-71.66993177,41.959667536],[-71.672361614,41.959654558],[-71.672361614,41.959983558],[-71.672802614,41.959962558],[-71.672833613,41.960097558],[-71.672108614,41.960183558],[-71.672222023,41.960705355],[-71.67230661,41.96109454],[-71.673053614,41.961087558],[-71.673076597,41.961198538],[-71.670665825,41.961253985],[-71.670698606,41.961580559],[-71.671680618,41.961525572],[-71.671923324,41.962439029],[-71.672195614,41.962483558],[-71.672684614,41.962536559],[-71.672775614,41.962551559],[-71.672872615,41.962209558],[-71.673382614,41.962114558],[-71.673527757,41.962439367],[-71.673674752,41.962768319],[-71.673681689,41.962789903],[-71.673707615,41.962870558],[-71.673150337,41.962870558],[-71.672942614,41.962870558],[-71.672741365,41.963337783],[-71.672421145,41.964081209],[-71.672346672,41.964233303],[-71.672241614,41.964201558],[-71.672161614,41.964183559],[-71.672087614,41.964137559],[-71.672027614,41.964085559],[-71.671948614,41.964039559],[-71.671878613,41.963982559],[-71.671737614,41.963903559],[-71.671675614,41.963864559],[-71.671600614,41.963839559],[-71.671446614,41.963801559],[-71.671267614,41.963769558],[-71.670880614,41.963765559],[-71.670762614,41.963776559],[-71.670584614,41.963777559],[-71.670492614,41.963788559],[-71.670338613,41.963818559],[-71.670096613,41.963886558],[-71.670024614,41.963925558],[-71.669960613,41.963951559],[-71.669869613,41.963980559],[-71.669708613,41.964020559],[-71.669631613,41.964046559],[-71.669515613,41.964076559],[-71.669402613,41.964113559],[-71.669129613,41.964176559],[-71.668812613,41.964281559],[-71.668661612,41.964336559],[-71.668597613,41.964363559],[-71.668460613,41.964410559],[-71.668360613,41.964435559],[-71.668123613,41.964514559],[-71.668044613,41.964533559],[-71.667818613,41.964544559],[-71.667747612,41.964559559],[-71.667672612,41.964582559],[-71.667567613,41.964601559],[-71.667380612,41.964613559],[-71.667082612,41.964650559],[-71.666832612,41.964660559],[-71.666721612,41.964672559],[-71.666601612,41.964692559],[-71.666502612,41.964700559],[-71.666271721,41.96470099],[-71.663771611,41.965782559],[-71.663998865,41.966074364],[-71.664091515,41.966102658],[-71.665083286,41.966405519],[-71.665356932,41.966489083],[-71.665407612,41.966504559],[-71.665319009,41.96679337],[-71.665301878,41.96684921],[-71.665095612,41.96752156],[-71.665076558,41.96752479],[-71.664818085,41.967568602],[-71.664817612,41.96750656],[-71.664792612,41.96742456],[-71.664790612,41.967206559],[-71.664622612,41.96721156],[-71.661724611,41.96707456],[-71.661892376,41.968351001],[-71.661965611,41.96890956],[-71.66024061,41.96924056],[-71.66016461,41.96891956],[-71.66015161,41.96709856],[-71.659270509,41.967106298],[-71.65927161,41.967026559],[-71.65926461,41.96690556],[-71.65924861,41.966622559],[-71.65918061,41.966309559],[-71.65916161,41.96623856],[-71.65913861,41.966148559],[-71.659088609,41.965958559],[-71.65901961,41.965783559],[-71.658951609,41.96563456],[-71.658919041,41.965590165],[-71.66001161,41.965319559],[-71.658928577,41.964612784],[-71.65798861,41.963738559],[-71.656200608,41.963508559],[-71.656094609,41.963387559],[-71.655589201,41.962475143],[-71.655544148,41.962393808],[-71.655528609,41.962117559],[-71.655590609,41.961963559],[-71.655803609,41.961730559],[-71.656409609,41.961433559],[-71.656548609,41.961243559],[-71.656584493,41.961149657],[-71.656591071,41.961132443],[-71.656487609,41.961110559],[-71.655830608,41.960938559],[-71.655189608,41.960802559],[-71.655009608,41.960748558],[-71.654877608,41.960709558],[-71.653870608,41.960438558],[-71.653435607,41.960301558],[-71.653206608,41.960202558],[-71.652954608,41.960080559],[-71.652763608,41.959950558],[-71.652576172,41.959811827],[-71.652572003,41.959814784],[-71.650757972,41.961101466],[-71.650734607,41.961078558],[-71.650688607,41.961016559],[-71.650630607,41.960956559],[-71.650539607,41.960894559],[-71.650473607,41.960832559],[-71.650270606,41.960725559],[-71.650213606,41.960667559],[-71.650118712,41.960750219],[-71.649562102,41.961398372],[-71.649560064,41.961400671],[-71.648880391,41.962145574],[-71.647339642,41.963834187],[-71.646954605,41.96441256],[-71.646750606,41.96446656],[-71.646317412,41.964919511],[-71.646006332,41.964771994],[-71.643915604,41.96386456],[-71.643687605,41.96424556],[-71.643710786,41.964299844],[-71.643884605,41.96453456],[-71.643966605,41.96466356],[-71.643585604,41.96506056],[-71.643807605,41.96513956],[-71.645110941,41.96571196],[-71.645992606,41.96608256],[-71.645957606,41.96612956],[-71.645554605,41.96616456],[-71.645598605,41.96638256],[-71.646106492,41.96681563],[-71.646359606,41.967286561],[-71.646937606,41.96734256],[-71.646388028,41.967468774],[-71.643140605,41.968214561],[-71.643271604,41.96910956],[-71.643984605,41.96913856],[-71.644106605,41.969443561],[-71.643499759,41.970020436],[-71.642444861,41.97027473],[-71.642444574,41.970274799],[-71.642540605,41.970467561],[-71.642632605,41.970749561],[-71.642708604,41.970944561],[-71.642677605,41.970921561],[-71.642326605,41.970761561],[-71.642204604,41.970646561],[-71.642067604,41.970494561],[-71.641945604,41.970314561],[-71.641937605,41.970192561],[-71.641937605,41.970044561],[-71.641930604,41.969887561],[-71.641869604,41.969799561],[-71.641701604,41.969590561],[-71.641604266,41.969496217],[-71.641357442,41.969703184],[-71.640165604,41.970702561],[-71.640700604,41.970820561],[-71.635099603,41.976653562],[-71.635092595,41.976660781],[-71.634995603,41.976589562],[-71.634948602,41.976540563],[-71.634877603,41.976421563],[-71.634824603,41.976376562],[-71.634761603,41.976331562],[-71.634704603,41.976297562],[-71.634661602,41.976249563],[-71.634594602,41.976220562],[-71.634536602,41.976171563],[-71.634489603,41.976113563],[-71.634455602,41.976061562],[-71.634400602,41.976022562],[-71.634298602,41.975982562],[-71.634238603,41.975934563],[-71.634163602,41.975918563],[-71.634090602,41.975895563],[-71.633925602,41.975858563],[-71.633848602,41.975851562],[-71.633617602,41.975802562],[-71.633567602,41.975787562],[-71.633482602,41.975731562],[-71.633414602,41.975712562],[-71.633346602,41.975688562],[-71.633191602,41.975616562],[-71.633113602,41.975563562],[-71.633059602,41.975447562],[-71.633019602,41.975391563],[-71.632917601,41.975291562],[-71.632887602,41.975229562],[-71.632887602,41.975137563],[-71.632900602,41.975069562],[-71.632962602,41.975033562],[-71.633055602,41.974969562],[-71.633076602,41.974911562],[-71.633080602,41.974846562],[-71.633065602,41.974787562],[-71.633029602,41.974733562],[-71.633007602,41.974724562],[-71.632971602,41.974713562],[-71.632860601,41.974710562],[-71.632781601,41.974712562],[-71.632666601,41.974724562],[-71.632487601,41.974769562],[-71.632342602,41.974859562],[-71.632139601,41.974874562],[-71.632146602,41.974830562],[-71.632202601,41.974518562],[-71.632217601,41.974442562],[-71.632036601,41.974486562],[-71.631850601,41.974536562],[-71.630898601,41.974778562],[-71.630727601,41.974817562],[-71.630241601,41.974930562],[-71.6288386,41.975304562],[-71.6284186,41.975434562],[-71.6280796,41.975562563],[-71.6277696,41.975693562],[-71.6273126,41.975907562],[-71.626907599,41.976124563],[-71.626541599,41.976349562],[-71.6261756,41.976624562],[-71.625786599,41.976956562],[-71.625137599,41.977566563],[-71.624336599,41.978341563],[-71.623672599,41.978962563],[-71.623436598,41.979195563],[-71.623116599,41.979435563],[-71.623093599,41.979447564],[-71.622757598,41.979706563],[-71.622406598,41.979954564],[-71.622063599,41.980160563],[-71.621803598,41.980309563],[-71.621353598,41.980526563],[-71.621307599,41.980545563],[-71.620834598,41.980755563],[-71.620354598,41.980938564],[-71.619911598,41.981079564],[-71.619743598,41.981129563],[-71.619293598,41.981247563],[-71.618599598,41.981396564],[-71.618088597,41.981484564],[-71.617872597,41.981527564],[-71.617639597,41.981574563],[-71.617453597,41.981611564],[-71.616844596,41.981728564],[-71.617012597,41.981942564],[-71.617180597,41.982186564],[-71.617378597,41.982411564],[-71.617554597,41.982567564],[-71.618317597,41.983158564],[-71.619217598,41.983883564],[-71.619835598,41.984375564],[-71.620201598,41.984661564],[-71.620575598,41.984929564],[-71.620880599,41.985161565],[-71.621498599,41.985608565],[-71.621666598,41.985543565],[-71.621758599,41.985516564],[-71.621902599,41.985512565],[-71.622063599,41.985520564],[-71.622223599,41.985516564],[-71.622368599,41.985505565],[-71.622482598,41.985463564],[-71.622673599,41.985360564],[-71.622803599,41.985302564],[-71.622910599,41.985302564],[-71.622993599,41.985337565],[-71.623055599,41.985382564],[-71.623093599,41.985459564],[-71.623108599,41.985539564],[-71.623108599,41.985642565],[-71.623169599,41.985642565],[-71.623322599,41.985676564],[-71.623947599,41.985840565],[-71.624123599,41.985897565],[-71.6241526,41.985930564],[-71.624163599,41.985946564],[-71.6241766,41.985993565],[-71.6241156,41.986073565],[-71.6238786,41.986290565],[-71.6237266,41.986458565],[-71.623634599,41.986538565],[-71.623558599,41.986569564],[-71.6234136,41.986550564],[-71.623322599,41.986500565],[-71.623116599,41.986328565],[-71.623039599,41.986321565],[-71.622948599,41.986328565],[-71.622704599,41.986500565],[-71.623009599,41.986725564],[-71.623360599,41.986992565],[-71.6236506,41.987233564],[-71.623886599,41.987408564],[-71.624084599,41.987542564],[-71.6243136,41.987660564],[-71.624550599,41.987793565],[-71.6247716,41.987954565],[-71.6252376,41.988327565],[-71.6252866,41.988362565],[-71.6255346,41.988541565],[-71.6258096,41.988728565],[-71.6258546,41.988758565],[-71.6260836,41.988919565],[-71.6265416,41.989224565],[-71.626938601,41.989499565],[-71.627327601,41.989758565],[-71.627716601,41.990029565],[-71.628448601,41.990513565],[-71.628960601,41.990857565],[-71.629868602,41.991448565],[-71.630165601,41.991665565],[-71.630608602,41.991978565],[-71.631038602,41.992264565],[-71.631508603,41.992577565],[-71.632309602,41.993134566],[-71.632759602,41.993435565],[-71.632828603,41.993477566],[-71.633080603,41.993683566],[-71.633553603,41.993992566],[-71.633972603,41.994294566],[-71.634537603,41.994675566],[-71.634631603,41.994736566],[-71.634697603,41.994778565],[-71.635460604,41.995312566],[-71.636215604,41.995827566],[-71.636642604,41.996136566],[-71.637276604,41.996579566],[-71.637871604,41.996975566],[-71.638527605,41.997429566],[-71.638458605,41.997605566],[-71.638405605,41.997857567],[-71.638390605,41.998051567],[-71.638390605,41.998200566],[-71.638412605,41.998379567],[-71.638428605,41.998566566],[-71.638474604,41.998780566],[-71.638519605,41.999024567],[-71.638550604,41.999131566],[-71.638596605,41.999344566],[-71.638641605,41.999516566],[-71.638688605,41.999731566],[-71.638702605,41.999855567],[-71.638710605,42.000168567],[-71.638702605,42.000550566],[-71.638692605,42.000806567],[-71.638691605,42.000842566],[-71.638687605,42.000935567],[-71.638641605,42.001240567],[-71.638573605,42.001625567],[-71.638481605,42.002045567],[-71.638458605,42.002182567],[-71.638451605,42.002343567],[-71.638474605,42.002453567],[-71.638481605,42.002491567],[-71.638710605,42.002873567]]]]}}"}, +{"type": "precinct", "typeId": 304, "areaId": 25679, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":18,\"NAME\":\"0304\",\"SHAPE_Length\":0.29811950218166,\"SHAPE_Area\":-0.0016355691558998},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.690999903,41.965094439],[-71.69077962,41.965216558],[-71.69046062,41.965418559],[-71.69016062,41.965570558],[-71.68988162,41.965738559],[-71.68934762,41.965996558],[-71.68911562,41.966092558],[-71.68893962,41.966137559],[-71.688808619,41.966171558],[-71.688556619,41.966250558],[-71.688328619,41.966291559],[-71.688134619,41.966315559],[-71.687877619,41.966331559],[-71.687676619,41.966331559],[-71.687239619,41.966323559],[-71.686995619,41.966300559],[-71.686772619,41.966269558],[-71.686547619,41.966232559],[-71.686340619,41.966180559],[-71.686115618,41.966107559],[-71.684823618,41.965721558],[-71.683899618,41.965469558],[-71.683701618,41.965401559],[-71.683269617,41.965253558],[-71.682441618,41.964984558],[-71.681708878,41.964776579],[-71.681724938,41.964713721],[-71.681888617,41.963966558],[-71.681609546,41.963856503],[-71.681391616,41.963770559],[-71.681338984,41.96387185],[-71.681113617,41.964305559],[-71.681353617,41.964533558],[-71.681331343,41.964669324],[-71.681054617,41.964590558],[-71.679636617,41.964155559],[-71.678138615,41.963711558],[-71.678070616,41.963753558],[-71.678351616,41.964393558],[-71.678446615,41.964407559],[-71.678455616,41.964792559],[-71.678265615,41.965275559],[-71.677652616,41.965853559],[-71.677402616,41.965813558],[-71.67735074,41.966204637],[-71.677692429,41.966239977],[-71.677889616,41.966354559],[-71.678826616,41.968436559],[-71.678215617,41.968628559],[-71.678261616,41.968666559],[-71.678299616,41.968705559],[-71.678345616,41.968743559],[-71.678535616,41.96885056],[-71.678642617,41.96889256],[-71.678680617,41.968903559],[-71.679372893,41.968903559],[-71.678511616,41.96970556],[-71.678611036,41.970919092],[-71.678651616,41.97094356],[-71.678714617,41.97094256],[-71.678778617,41.97091756],[-71.678853617,41.97092356],[-71.678853617,41.97096056],[-71.678802616,41.97100856],[-71.678778617,41.97104456],[-71.678807616,41.971082559],[-71.678947617,41.97111856],[-71.678977616,41.97112656],[-71.679016616,41.97120356],[-71.679042616,41.97126756],[-71.679095616,41.97133156],[-71.679174616,41.97137756],[-71.679271616,41.97142056],[-71.679321617,41.97147456],[-71.679361617,41.97153156],[-71.679416617,41.97158656],[-71.679487616,41.97170256],[-71.679517617,41.97177256],[-71.679565617,41.97181756],[-71.679616617,41.97185556],[-71.679683617,41.97188756],[-71.679815616,41.97206156],[-71.679842617,41.97211956],[-71.679822617,41.97214456],[-71.679746617,41.97213756],[-71.679674617,41.97209556],[-71.679736617,41.97225856],[-71.679784617,41.97230756],[-71.679836617,41.97234556],[-71.679915617,41.97239556],[-71.679984617,41.97243156],[-71.680055617,41.97245356],[-71.680168617,41.97246856],[-71.680331617,41.97247856],[-71.680404617,41.97247356],[-71.680493617,41.97245456],[-71.680583617,41.97242856],[-71.682493167,41.971801681],[-71.682638618,41.97175156],[-71.683500289,41.97314744],[-71.685993619,41.977186561],[-71.684365539,41.97767683],[-71.684431473,41.977900634],[-71.685080748,41.978644854],[-71.685315869,41.97920907],[-71.685852719,41.979448019],[-71.685825619,41.979564561],[-71.686090942,41.980429325],[-71.685802619,41.980719561],[-71.685895338,41.981515245],[-71.686179619,41.981557561],[-71.686258717,41.982040559],[-71.686268789,41.982039232],[-71.68620162,41.983371562],[-71.68655062,41.983611562],[-71.68653362,41.983799562],[-71.68628162,41.984249562],[-71.68589562,41.985700563],[-71.686233619,41.986223563],[-71.686727946,41.986217617],[-71.68673262,41.986256562],[-71.68678462,41.986458563],[-71.68681462,41.986523563],[-71.68686362,41.986581563],[-71.68692562,41.986626562],[-71.68700762,41.986653563],[-71.687013676,41.986654782],[-71.68696262,41.986842562],[-71.68618362,41.986841562],[-71.68625262,41.987261563],[-71.68653662,41.987655563],[-71.686290619,41.988137563],[-71.68544162,41.988519563],[-71.68628562,41.989194563],[-71.68745862,41.990130564],[-71.68775662,41.990620563],[-71.688643621,41.990398563],[-71.689776621,41.990617564],[-71.689922621,41.990945563],[-71.689740622,41.991184564],[-71.689455621,41.991111563],[-71.689259325,41.99151052],[-71.689251621,41.991515564],[-71.689138621,41.991607564],[-71.689096621,41.991628564],[-71.689069621,41.991631564],[-71.689049621,41.991683563],[-71.689012621,41.991736563],[-71.688952621,41.991863564],[-71.688900621,41.991916563],[-71.688832621,41.991937564],[-71.688759621,41.991914563],[-71.688666621,41.991798563],[-71.68861162,41.991755563],[-71.688596535,41.991735678],[-71.688266621,41.992160564],[-71.688071621,41.992431564],[-71.688186621,41.992469564],[-71.688778621,41.992240564],[-71.689034363,41.992402985],[-71.688834621,41.992519564],[-71.688771621,41.992548564],[-71.688641621,41.992617564],[-71.688523621,41.992702564],[-71.688478621,41.992748563],[-71.688374621,41.992838564],[-71.688333621,41.992891564],[-71.68829962,41.992950564],[-71.688278621,41.993015564],[-71.688284621,41.993079564],[-71.688281621,41.993143564],[-71.688212008,41.993321887],[-71.687752621,41.993506564],[-71.687982621,41.995425564],[-71.68476862,41.995890564],[-71.68499762,41.997533565],[-71.68397062,41.997742565],[-71.68407762,41.998854565],[-71.682230619,41.998920565],[-71.682240619,41.999293565],[-71.684083619,41.999421565],[-71.68408062,42.000002565],[-71.68479062,42.000102566],[-71.685116863,42.00107984],[-71.685718621,42.002356566],[-71.685720662,42.00295669],[-71.685721106,42.003087073],[-71.685721621,42.003238566],[-71.685501201,42.003202603],[-71.685379511,42.00318275],[-71.683604273,42.002893111],[-71.681118619,42.002487566],[-71.681007619,42.002472087],[-71.681007619,42.002659566],[-71.681000619,42.002839566],[-71.680969619,42.003018566],[-71.680871619,42.003305566],[-71.680862619,42.003331566],[-71.680595618,42.003960567],[-71.680443619,42.004303566],[-71.680305619,42.004547566],[-71.680183619,42.004746566],[-71.680031618,42.004956566],[-71.679909619,42.005082566],[-71.679680618,42.005249566],[-71.679466618,42.005429566],[-71.679153618,42.005646566],[-71.678757619,42.005928567],[-71.678223618,42.006264566],[-71.677963618,42.006455567],[-71.677223618,42.006939567],[-71.677156618,42.006987567],[-71.677063618,42.007054567],[-71.676946618,42.007158567],[-71.676918618,42.007203567],[-71.676857618,42.007271567],[-71.676781618,42.007378567],[-71.676720618,42.007481567],[-71.676682618,42.007588567],[-71.676659618,42.007683567],[-71.676651618,42.007828567],[-71.676651618,42.008030567],[-71.676712618,42.008263567],[-71.676895618,42.008744567],[-71.676918618,42.008820567],[-71.677032618,42.009117567],[-71.677087618,42.009244568],[-71.677150618,42.009388567],[-71.677216618,42.009541567],[-71.677391618,42.009873567],[-71.677544618,42.010197568],[-71.677704619,42.010491568],[-71.677879619,42.010838568],[-71.677963618,42.011036568],[-71.678001619,42.011162567],[-71.678017619,42.011250568],[-71.678024618,42.011380568],[-71.678024618,42.011504568],[-71.678311619,42.011497568],[-71.680526619,42.011484568],[-71.680869619,42.011482568],[-71.68212262,42.011481568],[-71.68224762,42.011478568],[-71.68233962,42.011476567],[-71.68267262,42.011469568],[-71.684822621,42.011418567],[-71.698560625,42.011099567],[-71.698648625,42.011097567],[-71.699852591,42.011097568],[-71.734085326,42.010335862],[-71.733494859,42.006532414],[-71.733373636,42.005751565],[-71.734458985,42.005051365],[-71.734751636,42.004862564],[-71.733656637,42.002908564],[-71.732927176,42.003086192],[-71.730346635,42.003714565],[-71.727002634,42.000279564],[-71.726980143,41.996257349],[-71.72697638,41.995584396],[-71.726973061,41.994990916],[-71.726868634,41.994957563],[-71.726601633,41.994843563],[-71.726295633,41.994759563],[-71.726067633,41.994736563],[-71.726372633,41.994725563],[-71.726730634,41.994706563],[-71.727036634,41.994675563],[-71.728119634,41.994591563],[-71.728218634,41.994580563],[-71.728554634,41.994530563],[-71.728714634,41.994496563],[-71.729140634,41.994367562],[-71.729179634,41.994355563],[-71.729408634,41.994294563],[-71.729797635,41.994179563],[-71.729992707,41.99412625],[-71.729983635,41.994968563],[-71.731222635,41.994932563],[-71.730774634,41.993908563],[-71.731041635,41.993813563],[-71.731079635,41.993794563],[-71.730942635,41.993576563],[-71.730743635,41.993321563],[-71.730545635,41.993035563],[-71.728759206,41.993607299],[-71.728098811,41.993805263],[-71.726742633,41.993863563],[-71.726731634,41.993776563],[-71.726305633,41.993804563],[-71.726320895,41.992097294],[-71.726326251,41.991498265],[-71.72637694,41.99089444],[-71.726334633,41.990560562],[-71.725363791,41.990670706],[-71.722327632,41.991977563],[-71.722279632,41.991969562],[-71.722204632,41.991967563],[-71.722026632,41.991988562],[-71.721919297,41.991987377],[-71.722363632,41.991045563],[-71.720881632,41.990080562],[-71.717770312,41.98701647],[-71.71699463,41.986252562],[-71.720613718,41.985981993],[-71.720873631,41.985962562],[-71.720818758,41.985907397],[-71.720685631,41.985773561],[-71.722573014,41.985131177],[-71.722007752,41.984633367],[-71.71949863,41.985340562],[-71.71875263,41.984710562],[-71.718700631,41.984211561],[-71.718190727,41.983120385],[-71.717892635,41.982107929],[-71.717741653,41.981085454],[-71.71764863,41.978514561],[-71.719924455,41.97847695],[-71.719925631,41.97832956],[-71.71994063,41.97797856],[-71.718465629,41.97802556],[-71.71831663,41.97662756],[-71.71813263,41.976662559],[-71.71775863,41.97670856],[-71.71717863,41.97680756],[-71.716972629,41.97683856],[-71.716759629,41.97684956],[-71.716240629,41.97684956],[-71.716019629,41.97684156],[-71.715599629,41.97680756],[-71.715355629,41.97679956],[-71.714996628,41.97675456],[-71.714821628,41.97671556],[-71.714661629,41.97666256],[-71.714508629,41.976601559],[-71.714355628,41.97655156],[-71.714745323,41.977749711],[-71.709468389,41.978223645],[-71.709046626,41.97826156],[-71.708972626,41.979010561],[-71.709248627,41.979478561],[-71.708486626,41.97954356],[-71.708416627,41.979073561],[-71.707493239,41.978582414],[-71.70740552,41.978535757],[-71.704983625,41.97724756],[-71.705088484,41.977127694],[-71.705200626,41.977105561],[-71.705123839,41.977087277],[-71.705500625,41.97665656],[-71.704644626,41.97575556],[-71.705651625,41.97524756],[-71.705093625,41.97462556],[-71.704084625,41.97512956],[-71.703621625,41.97461656],[-71.703951625,41.97444956],[-71.703370625,41.97380656],[-71.702643625,41.97417356],[-71.702463624,41.97315056],[-71.701754625,41.973231559],[-71.701747624,41.973291559],[-71.701300559,41.973363503],[-71.701225624,41.973408559],[-71.700326623,41.97339256],[-71.700335623,41.97333556],[-71.699070093,41.973288719],[-71.698849624,41.97328056],[-71.698973845,41.973082593],[-71.699766761,41.971763439],[-71.699543623,41.971244559],[-71.699876624,41.971132559],[-71.699833623,41.971064559],[-71.700275397,41.970959728],[-71.700350623,41.970969559],[-71.700035624,41.970473559],[-71.700212624,41.970412559],[-71.700360624,41.97065356],[-71.700576624,41.97057456],[-71.700695624,41.970696559],[-71.700934819,41.970661975],[-71.700833624,41.970463559],[-71.701094948,41.970379418],[-71.701536738,41.970237172],[-71.701874624,41.970077559],[-71.702250624,41.970014559],[-71.702301411,41.969903751],[-71.702349624,41.969798559],[-71.702616504,41.96965101],[-71.702706625,41.969568559],[-71.70306594,41.969520317],[-71.702931624,41.969139559],[-71.702980625,41.969063559],[-71.703835458,41.967593639],[-71.703880624,41.967614558],[-71.704056624,41.967682559],[-71.704137561,41.967723027],[-71.704494625,41.967074558],[-71.70468864,41.967330306],[-71.704989754,41.967727229],[-71.705198625,41.968002558],[-71.706505468,41.967640957],[-71.706535625,41.967502558],[-71.706565626,41.967500558],[-71.706705626,41.967491559],[-71.706961625,41.967466558],[-71.707059625,41.967468559],[-71.707234626,41.967492559],[-71.707340626,41.967497558],[-71.707413625,41.967493559],[-71.707487626,41.967482558],[-71.707595626,41.967457558],[-71.707565626,41.967438558],[-71.707409626,41.967302558],[-71.707268626,41.967324558],[-71.707146626,41.967324558],[-71.706993626,41.967297559],[-71.706810625,41.967251558],[-71.706635625,41.967202558],[-71.706535625,41.967183558],[-71.706078625,41.967080559],[-71.705864625,41.967041559],[-71.705742625,41.966999558],[-71.705635625,41.966980558],[-71.705574625,41.966938558],[-71.705544625,41.966923559],[-71.705490625,41.966885559],[-71.705399625,41.966778558],[-71.705360625,41.966706558],[-71.705330625,41.966629558],[-71.705307625,41.966496559],[-71.705292625,41.966458559],[-71.705276625,41.966359558],[-71.705261625,41.966305558],[-71.705254625,41.966252558],[-71.705238625,41.966202558],[-71.705215625,41.966069559],[-71.705200625,41.966030559],[-71.705185625,41.965954558],[-71.705185625,41.965916558],[-71.705177625,41.965859558],[-71.705170625,41.965840558],[-71.705170625,41.965790558],[-71.705162625,41.965760558],[-71.705162625,41.965729558],[-71.705070624,41.965744558],[-71.704948625,41.965779558],[-71.704681624,41.965897558],[-71.704316853,41.966129065],[-71.704047625,41.964875558],[-71.704283625,41.964638558],[-71.702995624,41.964607558],[-71.702912624,41.964595559],[-71.702811624,41.964557558],[-71.702749624,41.964565558],[-71.702518624,41.964769558],[-71.702559625,41.964898558],[-71.702530624,41.965052557],[-71.702460624,41.965129558],[-71.702129624,41.965071558],[-71.702074624,41.965168558],[-71.701997624,41.965324558],[-71.701876624,41.965357558],[-71.701600623,41.965358558],[-71.701560623,41.965509558],[-71.701414624,41.965657558],[-71.701315624,41.965723558],[-71.701142624,41.965789558],[-71.700712171,41.966057189],[-71.700713624,41.966183559],[-71.700705623,41.966262559],[-71.700690623,41.966291558],[-71.700682623,41.966468558],[-71.700687623,41.966540558],[-71.700703623,41.966605558],[-71.700689623,41.966676558],[-71.700641624,41.966721558],[-71.700576623,41.966758558],[-71.700498623,41.966779558],[-71.700416623,41.966776558],[-71.700338623,41.966752559],[-71.700282623,41.966712559],[-71.700243623,41.966649559],[-71.700220623,41.966582558],[-71.700241623,41.966456559],[-71.700211624,41.966412558],[-71.700135624,41.966407558],[-71.700061623,41.966424558],[-71.699994623,41.966454559],[-71.699964623,41.966514559],[-71.699933623,41.966630559],[-71.699897623,41.966691559],[-71.699849623,41.966739558],[-71.699805623,41.966798558],[-71.699836623,41.966838558],[-71.699885623,41.966880558],[-71.699888623,41.966933558],[-71.699833623,41.966955558],[-71.699579623,41.966921559],[-71.699499623,41.966922559],[-71.699461623,41.966977559],[-71.699422623,41.967011558],[-71.699363623,41.966985559],[-71.699312623,41.966935558],[-71.699246623,41.966910558],[-71.699161623,41.966914558],[-71.699140623,41.966969558],[-71.699143623,41.967035559],[-71.699121623,41.967087558],[-71.699110623,41.967103559],[-71.699054623,41.967138559],[-71.698968623,41.967152559],[-71.698877623,41.967136559],[-71.698715623,41.967091558],[-71.698643623,41.967118559],[-71.698579622,41.967159559],[-71.698504623,41.967172559],[-71.698419623,41.967153559],[-71.698403622,41.967108558],[-71.698426623,41.967053558],[-71.698439622,41.966993558],[-71.698395623,41.966954558],[-71.698308622,41.966951558],[-71.698228622,41.966972558],[-71.698155623,41.967004559],[-71.698081623,41.967046558],[-71.698025623,41.967083559],[-71.697956622,41.967120559],[-71.697873623,41.967128558],[-71.697800622,41.967103559],[-71.697754623,41.967057559],[-71.697728623,41.966997559],[-71.697715623,41.966942559],[-71.697705622,41.966823559],[-71.697694623,41.966768559],[-71.697652623,41.966713559],[-71.697522623,41.966614559],[-71.697456622,41.966572559],[-71.697272622,41.966482558],[-71.697229623,41.966463558],[-71.697148623,41.966436559],[-71.696985622,41.966415559],[-71.696906622,41.966396559],[-71.696832622,41.966360559],[-71.696803622,41.966306558],[-71.696782622,41.966190558],[-71.696759622,41.966137558],[-71.696723622,41.966074558],[-71.696657622,41.966032558],[-71.696578622,41.966009559],[-71.696338622,41.965997558],[-71.695924621,41.966002558],[-71.695843622,41.966013558],[-71.695680622,41.966044559],[-71.695600622,41.966053558],[-71.695524622,41.966053558],[-71.695448622,41.966042559],[-71.695187621,41.966045559],[-71.695013621,41.966059558],[-71.694755621,41.966057558],[-71.694674622,41.966053558],[-71.694519621,41.966024559],[-71.694446621,41.965993558],[-71.694301622,41.965913559],[-71.694172621,41.965822558],[-71.693851621,41.965527558],[-71.693640621,41.965320558],[-71.693391621,41.965139558],[-71.693348621,41.965113559],[-71.693318621,41.965095558],[-71.693255621,41.965092559],[-71.693197621,41.965125558],[-71.693163621,41.965176558],[-71.693141621,41.965290558],[-71.693123621,41.965354558],[-71.693085621,41.965406559],[-71.693021621,41.965447558],[-71.692910621,41.965495558],[-71.692795621,41.965537559],[-71.692740621,41.965557559],[-71.692655621,41.965575559],[-71.69258962,41.965600559],[-71.692522621,41.965637559],[-71.69237962,41.965697559],[-71.69169462,41.965031559],[-71.69104362,41.965187559],[-71.690999903,41.965094439]]]]}}"}, +{"type": "precinct", "typeId": 305, "areaId": 26028, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":367,\"NAME\":\"0305\",\"SHAPE_Length\":0.27362662254851,\"SHAPE_Area\":-0.0011685160468099},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.632971602,41.974713562],[-71.633007602,41.974724562],[-71.633029602,41.974733562],[-71.633065602,41.974787562],[-71.633080602,41.974846562],[-71.633076602,41.974911562],[-71.633055602,41.974969562],[-71.632962602,41.975033562],[-71.632900602,41.975069562],[-71.632887602,41.975137563],[-71.632887602,41.975229562],[-71.632917601,41.975291562],[-71.633019602,41.975391563],[-71.633059602,41.975447562],[-71.633113602,41.975563562],[-71.633191602,41.975616562],[-71.633346602,41.975688562],[-71.633414602,41.975712562],[-71.633482602,41.975731562],[-71.633567602,41.975787562],[-71.633617602,41.975802562],[-71.633848602,41.975851562],[-71.633925602,41.975858563],[-71.634090602,41.975895563],[-71.634163602,41.975918563],[-71.634238603,41.975934563],[-71.634298602,41.975982562],[-71.634400602,41.976022562],[-71.634455602,41.976061562],[-71.634489603,41.976113563],[-71.634536602,41.976171563],[-71.634594602,41.976220562],[-71.634661602,41.976249563],[-71.634704603,41.976297562],[-71.634761603,41.976331562],[-71.634824603,41.976376562],[-71.634877603,41.976421563],[-71.634948602,41.976540563],[-71.634995603,41.976589562],[-71.635092595,41.976660781],[-71.635099603,41.976653562],[-71.640700604,41.970820561],[-71.640165604,41.970702561],[-71.641357442,41.969703184],[-71.641604266,41.969496217],[-71.641701604,41.969590561],[-71.641869604,41.969799561],[-71.641930604,41.969887561],[-71.641937605,41.970044561],[-71.641937605,41.970192561],[-71.641945604,41.970314561],[-71.642067604,41.970494561],[-71.642204604,41.970646561],[-71.642326605,41.970761561],[-71.642677605,41.970921561],[-71.642708604,41.970944561],[-71.642632605,41.970749561],[-71.642540605,41.970467561],[-71.642444574,41.970274799],[-71.642444861,41.97027473],[-71.643499759,41.970020436],[-71.644106605,41.969443561],[-71.643984605,41.96913856],[-71.643271604,41.96910956],[-71.643140605,41.968214561],[-71.646388028,41.967468774],[-71.646937606,41.96734256],[-71.646359606,41.967286561],[-71.646106492,41.96681563],[-71.645598605,41.96638256],[-71.645554605,41.96616456],[-71.645957606,41.96612956],[-71.645992606,41.96608256],[-71.645110941,41.96571196],[-71.643807605,41.96513956],[-71.643585604,41.96506056],[-71.643966605,41.96466356],[-71.643884605,41.96453456],[-71.643710786,41.964299844],[-71.643687605,41.96424556],[-71.643915604,41.96386456],[-71.646006332,41.964771994],[-71.646317412,41.964919511],[-71.646750606,41.96446656],[-71.646954605,41.96441256],[-71.647339642,41.963834187],[-71.648880391,41.962145574],[-71.649560064,41.961400671],[-71.649562102,41.961398372],[-71.650118712,41.960750219],[-71.650213606,41.960667559],[-71.650270606,41.960725559],[-71.650473607,41.960832559],[-71.650539607,41.960894559],[-71.650630607,41.960956559],[-71.650688607,41.961016559],[-71.650734607,41.961078558],[-71.650757972,41.961101466],[-71.652572003,41.959814784],[-71.652576172,41.959811827],[-71.652763608,41.959950558],[-71.652954608,41.960080559],[-71.653206608,41.960202558],[-71.653435607,41.960301558],[-71.653870608,41.960438558],[-71.654877608,41.960709558],[-71.655009608,41.960748558],[-71.655189608,41.960802559],[-71.655830608,41.960938559],[-71.656487609,41.961110559],[-71.656591071,41.961132443],[-71.656584493,41.961149657],[-71.656548609,41.961243559],[-71.656409609,41.961433559],[-71.655803609,41.961730559],[-71.655590609,41.961963559],[-71.655528609,41.962117559],[-71.655544148,41.962393808],[-71.655589201,41.962475143],[-71.656094609,41.963387559],[-71.656200608,41.963508559],[-71.65798861,41.963738559],[-71.658928577,41.964612784],[-71.66001161,41.965319559],[-71.658919041,41.965590165],[-71.658951609,41.96563456],[-71.65901961,41.965783559],[-71.659088609,41.965958559],[-71.65913861,41.966148559],[-71.65916161,41.96623856],[-71.65918061,41.966309559],[-71.65924861,41.966622559],[-71.65926461,41.96690556],[-71.65927161,41.967026559],[-71.659270509,41.967106298],[-71.66015161,41.96709856],[-71.66016461,41.96891956],[-71.66024061,41.96924056],[-71.661965611,41.96890956],[-71.661892376,41.968351001],[-71.661724611,41.96707456],[-71.664622612,41.96721156],[-71.664790612,41.967206559],[-71.664792612,41.96742456],[-71.664817612,41.96750656],[-71.664818085,41.967568602],[-71.665076558,41.96752479],[-71.665095612,41.96752156],[-71.665301878,41.96684921],[-71.665319009,41.96679337],[-71.665407612,41.966504559],[-71.665356932,41.966489083],[-71.665083286,41.966405519],[-71.664091515,41.966102658],[-71.663998865,41.966074364],[-71.663771611,41.965782559],[-71.666271721,41.96470099],[-71.666502612,41.964700559],[-71.666601612,41.964692559],[-71.666721612,41.964672559],[-71.666832612,41.964660559],[-71.667082612,41.964650559],[-71.667380612,41.964613559],[-71.667567613,41.964601559],[-71.667672612,41.964582559],[-71.667747612,41.964559559],[-71.667818613,41.964544559],[-71.668044613,41.964533559],[-71.668123613,41.964514559],[-71.668360613,41.964435559],[-71.668460613,41.964410559],[-71.668597613,41.964363559],[-71.668661612,41.964336559],[-71.668812613,41.964281559],[-71.669129613,41.964176559],[-71.669402613,41.964113559],[-71.669515613,41.964076559],[-71.669631613,41.964046559],[-71.669708613,41.964020559],[-71.669869613,41.963980559],[-71.669960613,41.963951559],[-71.670024614,41.963925558],[-71.670096613,41.963886558],[-71.670338613,41.963818559],[-71.670492614,41.963788559],[-71.670584614,41.963777559],[-71.670762614,41.963776559],[-71.670880614,41.963765559],[-71.671267614,41.963769558],[-71.671446614,41.963801559],[-71.671600614,41.963839559],[-71.671675614,41.963864559],[-71.671737614,41.963903559],[-71.671878613,41.963982559],[-71.671948614,41.964039559],[-71.672027614,41.964085559],[-71.672087614,41.964137559],[-71.672161614,41.964183559],[-71.672241614,41.964201558],[-71.672346672,41.964233303],[-71.672421145,41.964081209],[-71.672741365,41.963337783],[-71.672942614,41.962870558],[-71.673150337,41.962870558],[-71.673707615,41.962870558],[-71.673681689,41.962789903],[-71.673674752,41.962768319],[-71.673527757,41.962439367],[-71.673382614,41.962114558],[-71.672872615,41.962209558],[-71.672775614,41.962551559],[-71.672684614,41.962536559],[-71.672195614,41.962483558],[-71.671923324,41.962439029],[-71.671680618,41.961525572],[-71.670698606,41.961580559],[-71.670665825,41.961253985],[-71.673076597,41.961198538],[-71.673053614,41.961087558],[-71.67230661,41.96109454],[-71.672222023,41.960705355],[-71.672108614,41.960183558],[-71.672833613,41.960097558],[-71.672802614,41.959962558],[-71.672361614,41.959983558],[-71.672361614,41.959654558],[-71.66993177,41.959667536],[-71.670671614,41.958349558],[-71.67163842,41.958306311],[-71.672370613,41.958273557],[-71.672372614,41.958144558],[-71.672261308,41.958110579],[-71.670875613,41.957687557],[-71.668603612,41.956551558],[-71.665867612,41.958366558],[-71.665645996,41.958343351],[-71.664807611,41.958255558],[-71.665089684,41.957043563],[-71.66538437,41.95577738],[-71.666492612,41.951015556],[-71.667755982,41.950595552],[-71.670616618,41.949644541],[-71.670843631,41.948026564],[-71.671386609,41.948069555],[-71.670980648,41.95109954],[-71.672286614,41.951168557],[-71.672266611,41.951040538],[-71.671175612,41.950974556],[-71.671576613,41.948081556],[-71.671816636,41.947314084],[-71.672452613,41.945280555],[-71.672957613,41.945235555],[-71.672714876,41.944684728],[-71.673583613,41.944137555],[-71.673561613,41.943726555],[-71.673386613,41.943741554],[-71.673294613,41.943753555],[-71.673119613,41.943802555],[-71.673363613,41.943684554],[-71.673462613,41.943627554],[-71.673531614,41.943554555],[-71.673553614,41.943474555],[-71.673538613,41.943169555],[-71.673409613,41.942353555],[-71.673307613,41.941619554],[-71.673233613,41.941082554],[-71.673149613,41.940518554],[-71.673134613,41.940365555],[-71.673103613,41.940174554],[-71.673088613,41.939995554],[-71.673088613,41.939591554],[-71.673119613,41.938336554],[-71.673126612,41.937828554],[-71.673134613,41.937741554],[-71.673142613,41.937285554],[-71.673157613,41.936409553],[-71.673172613,41.936215553],[-71.673195613,41.935639553],[-71.673218613,41.935337553],[-71.673233613,41.935231553],[-71.673241613,41.935120554],[-71.673279613,41.934857553],[-71.673363612,41.934464553],[-71.673439612,41.934170553],[-71.673523613,41.933972553],[-71.673676613,41.933682553],[-71.673873613,41.933387552],[-71.674065613,41.933098553],[-71.674133613,41.933007553],[-71.674240613,41.932839552],[-71.674332613,41.932679553],[-71.674385613,41.932572552],[-71.674450299,41.932414354],[-71.673827612,41.932282553],[-71.674145503,41.931608727],[-71.674145512,41.931608707],[-71.66675061,41.931672552],[-71.663134609,41.931705553],[-71.661730609,41.931718553],[-71.655388607,41.931814553],[-71.652653606,41.931856553],[-71.650835606,41.931902554],[-71.650025605,41.931921554],[-71.649513604,41.931929553],[-71.648079604,41.931972553],[-71.640716602,41.932260553],[-71.639353601,41.932304554],[-71.639304602,41.932287554],[-71.633854599,41.932289554],[-71.631696599,41.932289554],[-71.629311598,41.932281554],[-71.629387598,41.932389554],[-71.629906599,41.933300554],[-71.630363598,41.934353554],[-71.630531599,41.934674554],[-71.630707599,41.934967554],[-71.630859599,41.935208554],[-71.631355599,41.936028555],[-71.631523599,41.936272554],[-71.631554599,41.936306555],[-71.6317606,41.936623554],[-71.631958599,41.936959555],[-71.6322666,41.937432555],[-71.6322866,41.937462554],[-71.632408599,41.937664555],[-71.6325916,41.937893555],[-71.6327536,41.938076555],[-71.632935599,41.938263555],[-71.632957599,41.938290555],[-71.6331796,41.938485555],[-71.6334536,41.938687555],[-71.6337596,41.938881555],[-71.6340646,41.939087555],[-71.6342016,41.939194555],[-71.6343696,41.939350555],[-71.6347506,41.939804555],[-71.634995601,41.940148556],[-71.635521601,41.940800555],[-71.636238601,41.941754555],[-71.637070601,41.942826555],[-71.637138601,41.942921556],[-71.637199602,41.943016556],[-71.637268601,41.943112556],[-71.637321601,41.943211556],[-71.637344601,41.943264556],[-71.637360601,41.943303556],[-71.637367601,41.943337556],[-71.637390601,41.943398556],[-71.637451602,41.943585555],[-71.637527602,41.943863556],[-71.637550602,41.943924556],[-71.637566602,41.943985556],[-71.637646514,41.944211026],[-71.637650602,41.944222556],[-71.637741602,41.944409556],[-71.637802602,41.944500556],[-71.637856602,41.944592556],[-71.637573602,41.944744556],[-71.637459601,41.944832557],[-71.637184602,41.945095556],[-71.636581601,41.945629557],[-71.636177601,41.945954556],[-71.635887601,41.946225556],[-71.635582601,41.946518556],[-71.635460601,41.946629556],[-71.635185601,41.946892557],[-71.635094601,41.946991557],[-71.635056601,41.947041556],[-71.635025601,41.947098556],[-71.6350026,41.947155556],[-71.634995601,41.947216556],[-71.634995601,41.947277557],[-71.635056601,41.947457557],[-71.635208601,41.947781556],[-71.635612601,41.948525557],[-71.635864601,41.949005557],[-71.636002601,41.949246557],[-71.636024601,41.949276557],[-71.636017601,41.949294557],[-71.636017601,41.949342557],[-71.636025601,41.949378557],[-71.636192601,41.949669557],[-71.636459602,41.950180557],[-71.636589602,41.950199557],[-71.636765602,41.950241557],[-71.636856601,41.950257557],[-71.636963602,41.950268557],[-71.637199602,41.950268557],[-71.637261602,41.950267557],[-71.637672601,41.950257557],[-71.637924602,41.950234558],[-71.638100602,41.950192557],[-71.638261602,41.950140557],[-71.638290602,41.950131557],[-71.638489603,41.950055557],[-71.638907602,41.949871557],[-71.639954602,41.949410557],[-71.640038602,41.949379557],[-71.640233603,41.949319557],[-71.640274603,41.949307557],[-71.640579602,41.949231557],[-71.640663603,41.949215557],[-71.641197603,41.949086556],[-71.641296603,41.949067556],[-71.641380603,41.949040557],[-71.641586603,41.948960557],[-71.641670603,41.948918557],[-71.641991603,41.948780557],[-71.642159603,41.948723557],[-71.642349604,41.948670557],[-71.642441603,41.948655556],[-71.642723603,41.948597556],[-71.643051604,41.948521556],[-71.643204604,41.948475557],[-71.643356604,41.948418557],[-71.643517604,41.948368556],[-71.643552604,41.948360557],[-71.643684604,41.948330556],[-71.643825604,41.948363556],[-71.644180604,41.948449557],[-71.644318604,41.948471557],[-71.644348604,41.948477557],[-71.644455604,41.948498557],[-71.644592604,41.948517557],[-71.644829604,41.948540556],[-71.644969604,41.948550557],[-71.644987604,41.948611557],[-71.645065604,41.948611557],[-71.645100605,41.948753556],[-71.645113604,41.948828557],[-71.645099605,41.949029556],[-71.645103604,41.949225556],[-71.645089604,41.949249557],[-71.645017604,41.949270557],[-71.645031604,41.949336557],[-71.645028604,41.949397556],[-71.645004605,41.949477556],[-71.644905605,41.949648557],[-71.644897604,41.949761557],[-71.644883604,41.949836557],[-71.644827605,41.949952557],[-71.644822604,41.950019557],[-71.644844605,41.950723557],[-71.644830604,41.950855557],[-71.644808605,41.950914557],[-71.644759604,41.950962557],[-71.644651605,41.951007557],[-71.644593605,41.951046557],[-71.644465604,41.951109557],[-71.644188604,41.951273557],[-71.644144604,41.951327557],[-71.644084604,41.951435557],[-71.644047604,41.951488557],[-71.644022604,41.951547557],[-71.644012604,41.951601557],[-71.644012604,41.951667557],[-71.644020604,41.951740557],[-71.644052604,41.951801557],[-71.644125604,41.951820557],[-71.644375604,41.951849558],[-71.644452604,41.951867557],[-71.644533605,41.951929558],[-71.644667604,41.952007558],[-71.644734604,41.952035557],[-71.644908604,41.952047558],[-71.645024604,41.952047558],[-71.645107604,41.952038557],[-71.645185604,41.952014557],[-71.645318604,41.951951557],[-71.645402604,41.951923557],[-71.645475604,41.951911558],[-71.645599605,41.951914557],[-71.645692604,41.951923557],[-71.645761605,41.951964557],[-71.645856605,41.951988558],[-71.645922604,41.952029557],[-71.645968605,41.952078557],[-71.645989008,41.952129874],[-71.646001604,41.952161558],[-71.646035605,41.952211557],[-71.646096605,41.952287557],[-71.646118604,41.952403557],[-71.646127605,41.952554558],[-71.646121605,41.952698557],[-71.646111605,41.952779557],[-71.646082605,41.952819557],[-71.646004605,41.952857557],[-71.645806604,41.952900558],[-71.645558605,41.952904558],[-71.645486605,41.952935557],[-71.645290605,41.952981558],[-71.645295605,41.953062558],[-71.645321604,41.953128557],[-71.645330605,41.953258557],[-71.645341604,41.953328558],[-71.645377604,41.953389558],[-71.645474604,41.953434557],[-71.645553604,41.953458557],[-71.645619605,41.953452558],[-71.645681605,41.953405558],[-71.645749604,41.953362557],[-71.645886604,41.953298557],[-71.645954605,41.953273558],[-71.646120605,41.953235558],[-71.646198605,41.953206557],[-71.646348605,41.953175558],[-71.646422605,41.953170557],[-71.646503605,41.953170557],[-71.646580605,41.953190558],[-71.646654605,41.953224557],[-71.646720605,41.953263557],[-71.646823605,41.953304557],[-71.646924605,41.953323557],[-71.647013606,41.953325557],[-71.647107605,41.953315558],[-71.647105605,41.953336557],[-71.647146605,41.953387558],[-71.647170605,41.953450558],[-71.647178605,41.953512557],[-71.647151605,41.953569558],[-71.647089606,41.953616557],[-71.646961605,41.953697558],[-71.646895605,41.953679558],[-71.646822605,41.953628557],[-71.646746605,41.953594557],[-71.646662605,41.953563558],[-71.646584605,41.953540558],[-71.646458605,41.953533557],[-71.646383605,41.953542558],[-71.646288605,41.953571557],[-71.646209605,41.953590557],[-71.646053605,41.953666558],[-71.645950605,41.953691557],[-71.645833605,41.953809557],[-71.645809605,41.953877558],[-71.645809605,41.953934558],[-71.645788604,41.954151558],[-71.645795605,41.954234557],[-71.645856605,41.954354557],[-71.645894605,41.954402558],[-71.645887605,41.954445558],[-71.645860605,41.954471557],[-71.645839605,41.954492558],[-71.645736605,41.954544558],[-71.645718605,41.954600558],[-71.645712605,41.954724558],[-71.645729604,41.955123558],[-71.645724605,41.955332558],[-71.645676605,41.955393558],[-71.645626605,41.955485558],[-71.645582605,41.955546558],[-71.645530605,41.955595558],[-71.645508605,41.955654558],[-71.645385605,41.955749558],[-71.645319604,41.955824558],[-71.645217605,41.955906558],[-71.645151605,41.955934558],[-71.645024604,41.956037558],[-71.644996605,41.956087558],[-71.644897605,41.956175558],[-71.644817604,41.956193558],[-71.644770605,41.956171558],[-71.644727605,41.956112558],[-71.644723605,41.956056558],[-71.644751604,41.955996558],[-71.644775604,41.955926558],[-71.644810604,41.955863558],[-71.644849604,41.955808558],[-71.644896605,41.955777558],[-71.644979605,41.955736558],[-71.644993605,41.955665558],[-71.644921605,41.955518558],[-71.644915604,41.955419558],[-71.644933604,41.955380558],[-71.645011604,41.955350558],[-71.645196605,41.955319558],[-71.645420605,41.955273558],[-71.645488605,41.955254558],[-71.645496604,41.955199558],[-71.645426605,41.955129558],[-71.645340604,41.955085558],[-71.645277605,41.955038558],[-71.645163604,41.954926558],[-71.645127604,41.954869558],[-71.645122604,41.954666558],[-71.645109604,41.954581558],[-71.645072605,41.954513558],[-71.645015605,41.954456558],[-71.644937605,41.954447557],[-71.644841605,41.954447557],[-71.644650605,41.954548557],[-71.644555605,41.954553558],[-71.644465604,41.954505558],[-71.644422604,41.954458558],[-71.644416605,41.954323558],[-71.644388604,41.954270558],[-71.644322604,41.954264558],[-71.644210604,41.954267558],[-71.644134604,41.954285558],[-71.644027605,41.954326558],[-71.643930605,41.954369557],[-71.643730604,41.954434558],[-71.643662604,41.954477558],[-71.643601604,41.954532558],[-71.643546604,41.954592558],[-71.643440604,41.954762558],[-71.643426604,41.954821558],[-71.643427604,41.954853558],[-71.643437604,41.954979558],[-71.643463604,41.955045558],[-71.643501604,41.955110557],[-71.643550604,41.955164558],[-71.643591604,41.955223558],[-71.643639605,41.955335558],[-71.643724604,41.955498558],[-71.643786604,41.955550558],[-71.643827604,41.955595558],[-71.643870605,41.955674558],[-71.643919604,41.955805558],[-71.643954604,41.955874558],[-71.643978604,41.956010558],[-71.643982604,41.956091558],[-71.643949605,41.956143559],[-71.643856604,41.956189558],[-71.643720604,41.956276558],[-71.643664604,41.956332558],[-71.643624604,41.956380558],[-71.643543604,41.956424558],[-71.643458604,41.956416559],[-71.643382604,41.956398558],[-71.643309604,41.956419558],[-71.643269604,41.956470558],[-71.643269604,41.956573558],[-71.643259604,41.956661558],[-71.643166604,41.956769558],[-71.643117604,41.956816558],[-71.643050604,41.956864559],[-71.642943604,41.956954558],[-71.642937604,41.956959559],[-71.642840604,41.957016559],[-71.642762603,41.957074559],[-71.642691604,41.957088558],[-71.642675604,41.957102558],[-71.642671604,41.957173559],[-71.642678604,41.957236558],[-71.642678604,41.957387559],[-71.642659604,41.957456558],[-71.642630604,41.957536558],[-71.642589604,41.957606559],[-71.642530604,41.957669558],[-71.642493604,41.957731558],[-71.642436604,41.957855559],[-71.642402604,41.957908558],[-71.642316604,41.958022558],[-71.642304604,41.958142559],[-71.642263604,41.958194558],[-71.642235604,41.958259559],[-71.642218603,41.958387558],[-71.642176604,41.958446558],[-71.642122604,41.958509558],[-71.642069604,41.958552559],[-71.642015604,41.958607558],[-71.641988604,41.958675559],[-71.641873604,41.958835558],[-71.641826603,41.958890559],[-71.641731603,41.959023559],[-71.641681604,41.959074559],[-71.641651603,41.959141559],[-71.641635603,41.959220559],[-71.641592603,41.959273559],[-71.641536603,41.959359559],[-71.641552604,41.959416559],[-71.641656604,41.959512559],[-71.641662604,41.959569559],[-71.641588604,41.959641559],[-71.641370604,41.959951559],[-71.641000604,41.960377559],[-71.640602603,41.960772559],[-71.640548603,41.960849559],[-71.640356603,41.96117456],[-71.640306603,41.961242559],[-71.640277603,41.961298559],[-71.640248603,41.961380559],[-71.640192603,41.961433559],[-71.640049604,41.961554559],[-71.639863603,41.961751559],[-71.639835604,41.961880559],[-71.639798603,41.961940559],[-71.639758604,41.961985559],[-71.639634603,41.962072559],[-71.639582604,41.962117559],[-71.639526603,41.96218756],[-71.639444603,41.962256559],[-71.639380603,41.962317559],[-71.639325603,41.96237956],[-71.639266603,41.962431559],[-71.639202603,41.962466559],[-71.639131603,41.96253556],[-71.638997603,41.96261456],[-71.638876603,41.96267456],[-71.638812603,41.962735559],[-71.638627603,41.962833559],[-71.638604603,41.96284556],[-71.638488603,41.96294156],[-71.638458603,41.962991559],[-71.638437603,41.96304356],[-71.638387603,41.963112559],[-71.638327603,41.96315956],[-71.638292603,41.96323556],[-71.638118603,41.96339656],[-71.638098603,41.96347056],[-71.638098603,41.96361156],[-71.638077603,41.96368856],[-71.638036603,41.96374956],[-71.638007602,41.96381556],[-71.637951603,41.963886559],[-71.637808603,41.964042559],[-71.637627603,41.96413756],[-71.637577602,41.96418256],[-71.637544603,41.96423056],[-71.637493603,41.96427556],[-71.637399602,41.96433456],[-71.637316603,41.96435356],[-71.637250602,41.96437856],[-71.637207602,41.96442156],[-71.637112602,41.96447856],[-71.637029602,41.96452156],[-71.636961602,41.96457056],[-71.636849603,41.96460456],[-71.636654603,41.96463756],[-71.636561602,41.96466456],[-71.636494602,41.96469356],[-71.636435602,41.96472956],[-71.636206603,41.96478456],[-71.636080602,41.96488456],[-71.635872602,41.96496356],[-71.635849602,41.96502656],[-71.635808602,41.96506256],[-71.635736602,41.96508456],[-71.635559602,41.96512656],[-71.635479602,41.965153561],[-71.635186602,41.96532956],[-71.635067602,41.96541256],[-71.635003602,41.965445561],[-71.634944601,41.96550856],[-71.634890602,41.96554756],[-71.634790602,41.96559256],[-71.634725602,41.965638561],[-71.634650601,41.96571156],[-71.634561602,41.96582156],[-71.634511602,41.96587656],[-71.634428602,41.96591556],[-71.634330602,41.96597456],[-71.634228602,41.96602256],[-71.634130601,41.96613356],[-71.634085601,41.966200561],[-71.633941602,41.96639256],[-71.633891601,41.96648256],[-71.633841602,41.966537561],[-71.633787602,41.96657856],[-71.633737601,41.96663756],[-71.633695601,41.966708561],[-71.633572602,41.966807561],[-71.633508601,41.96687356],[-71.633443601,41.96694956],[-71.633345601,41.96708756],[-71.633313601,41.967160561],[-71.633275601,41.96720756],[-71.633221602,41.967257561],[-71.633183602,41.967310561],[-71.633132601,41.967348561],[-71.633051601,41.96739956],[-71.632992601,41.967450561],[-71.632940601,41.967509561],[-71.632908601,41.967566561],[-71.632900601,41.967641561],[-71.632750601,41.967911561],[-71.632464602,41.968278561],[-71.632230602,41.968681561],[-71.629730601,41.969244561],[-71.6297236,41.969479561],[-71.6297236,41.970044561],[-71.629730601,41.970517561],[-71.6297236,41.970665561],[-71.6296846,41.970894561],[-71.629654601,41.971173562],[-71.6296626,41.971634561],[-71.6297006,41.971974562],[-71.6297996,41.972187562],[-71.629890601,41.972325562],[-71.6300516,41.972485562],[-71.630882601,41.973236562],[-71.631203601,41.973503562],[-71.631470602,41.973763562],[-71.631813601,41.973717562],[-71.631857602,41.973709562],[-71.632042601,41.973675562],[-71.632141601,41.973645562],[-71.632248602,41.973595562],[-71.632278601,41.973790562],[-71.632271601,41.974080562],[-71.632233601,41.974339562],[-71.632225602,41.974369562],[-71.632217601,41.974442562],[-71.632202601,41.974518562],[-71.632146602,41.974830562],[-71.632139601,41.974874562],[-71.632342602,41.974859562],[-71.632487601,41.974769562],[-71.632666601,41.974724562],[-71.632781601,41.974712562],[-71.632860601,41.974710562],[-71.632971602,41.974713562]]]]}}"}, +{"type": "precinct", "typeId": 306, "areaId": 26029, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":368,\"NAME\":\"0306\",\"SHAPE_Length\":0.3038712589463,\"SHAPE_Area\":-0.0029227626849343},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.599689591,41.982281564],[-71.599908591,41.983406565],[-71.600057591,41.984244565],[-71.600204592,41.985033565],[-71.600252591,41.985296565],[-71.600422592,41.986226565],[-71.600475592,41.986515565],[-71.600525591,41.986722565],[-71.600656592,41.987256565],[-71.600723592,41.987528565],[-71.600937592,41.988121566],[-71.601358593,41.990631566],[-71.602226593,41.992543566],[-71.602554593,41.994446566],[-71.602632593,41.994702567],[-71.602901593,41.996142567],[-71.603280593,41.998132567],[-71.603308594,41.998281568],[-71.603330593,41.998437568],[-71.603363594,41.998617568],[-71.603642593,42.000104568],[-71.604074593,42.002419569],[-71.604219594,42.003202568],[-71.604677594,42.005665569],[-71.604883594,42.006769569],[-71.606237046,42.013284356],[-71.606699618,42.013270375],[-71.612030766,42.013113081],[-71.62146296,42.012870836],[-71.624510508,42.012738081],[-71.644601467,42.012347046],[-71.645206608,42.012329569],[-71.645308608,42.012326569],[-71.645143607,42.011906569],[-71.644870607,42.011303569],[-71.644634607,42.010762569],[-71.644565607,42.010651568],[-71.644489608,42.010514568],[-71.644391607,42.010384568],[-71.644276607,42.010247568],[-71.643919607,42.009861568],[-71.643561608,42.009457569],[-71.643187607,42.009053568],[-71.643127607,42.008973569],[-71.643021607,42.008847568],[-71.642830607,42.008633568],[-71.642029606,42.007958569],[-71.641808606,42.007790568],[-71.641678606,42.007683568],[-71.641525606,42.007580568],[-71.641365606,42.007485568],[-71.641159606,42.007382568],[-71.640900606,42.007222568],[-71.640755606,42.007111568],[-71.640602606,42.006977568],[-71.640521606,42.006897568],[-71.640472606,42.006848568],[-71.640251606,42.006569568],[-71.639832606,42.005967568],[-71.639435605,42.005429568],[-71.639404606,42.005333568],[-71.639351605,42.005207568],[-71.639267606,42.004895568],[-71.639183605,42.004555568],[-71.638985605,42.003670567],[-71.638901605,42.003346567],[-71.638824605,42.003140568],[-71.638779605,42.003003568],[-71.638710605,42.002873567],[-71.638481605,42.002491567],[-71.638474605,42.002453567],[-71.638451605,42.002343567],[-71.638458605,42.002182567],[-71.638481605,42.002045567],[-71.638573605,42.001625567],[-71.638641605,42.001240567],[-71.638687605,42.000935567],[-71.638691605,42.000842566],[-71.638692605,42.000806567],[-71.638702605,42.000550566],[-71.638710605,42.000168567],[-71.638702605,41.999855567],[-71.638688605,41.999731566],[-71.638641605,41.999516566],[-71.638596605,41.999344566],[-71.638550604,41.999131566],[-71.638519605,41.999024567],[-71.638474604,41.998780566],[-71.638428605,41.998566566],[-71.638412605,41.998379567],[-71.638390605,41.998200566],[-71.638390605,41.998051567],[-71.638405605,41.997857567],[-71.638458605,41.997605566],[-71.638527605,41.997429566],[-71.637871604,41.996975566],[-71.637276604,41.996579566],[-71.636642604,41.996136566],[-71.636215604,41.995827566],[-71.635460604,41.995312566],[-71.634697603,41.994778565],[-71.634631603,41.994736566],[-71.634537603,41.994675566],[-71.633972603,41.994294566],[-71.633553603,41.993992566],[-71.633080603,41.993683566],[-71.632828603,41.993477566],[-71.632759602,41.993435565],[-71.632309602,41.993134566],[-71.631508603,41.992577565],[-71.631038602,41.992264565],[-71.630608602,41.991978565],[-71.630165601,41.991665565],[-71.629868602,41.991448565],[-71.628960601,41.990857565],[-71.628448601,41.990513565],[-71.627716601,41.990029565],[-71.627327601,41.989758565],[-71.626938601,41.989499565],[-71.6265416,41.989224565],[-71.6260836,41.988919565],[-71.6258546,41.988758565],[-71.6258096,41.988728565],[-71.6255346,41.988541565],[-71.6252866,41.988362565],[-71.6252376,41.988327565],[-71.6247716,41.987954565],[-71.624550599,41.987793565],[-71.6243136,41.987660564],[-71.624084599,41.987542564],[-71.623886599,41.987408564],[-71.6236506,41.987233564],[-71.623360599,41.986992565],[-71.623009599,41.986725564],[-71.622704599,41.986500565],[-71.622948599,41.986328565],[-71.623039599,41.986321565],[-71.623116599,41.986328565],[-71.623322599,41.986500565],[-71.6234136,41.986550564],[-71.623558599,41.986569564],[-71.623634599,41.986538565],[-71.6237266,41.986458565],[-71.6238786,41.986290565],[-71.6241156,41.986073565],[-71.6241766,41.985993565],[-71.624163599,41.985946564],[-71.6241526,41.985930564],[-71.624123599,41.985897565],[-71.623947599,41.985840565],[-71.623322599,41.985676564],[-71.623169599,41.985642565],[-71.623108599,41.985642565],[-71.623108599,41.985539564],[-71.623093599,41.985459564],[-71.623055599,41.985382564],[-71.622993599,41.985337565],[-71.622910599,41.985302564],[-71.622803599,41.985302564],[-71.622673599,41.985360564],[-71.622482598,41.985463564],[-71.622368599,41.985505565],[-71.622223599,41.985516564],[-71.622063599,41.985520564],[-71.621902599,41.985512565],[-71.621758599,41.985516564],[-71.621666598,41.985543565],[-71.621498599,41.985608565],[-71.620880599,41.985161565],[-71.620575598,41.984929564],[-71.620201598,41.984661564],[-71.619835598,41.984375564],[-71.619217598,41.983883564],[-71.618317597,41.983158564],[-71.617554597,41.982567564],[-71.617378597,41.982411564],[-71.617180597,41.982186564],[-71.617012597,41.981942564],[-71.616844596,41.981728564],[-71.617453597,41.981611564],[-71.617639597,41.981574563],[-71.617872597,41.981527564],[-71.618088597,41.981484564],[-71.618599598,41.981396564],[-71.619293598,41.981247563],[-71.619743598,41.981129563],[-71.619911598,41.981079564],[-71.620354598,41.980938564],[-71.620834598,41.980755563],[-71.621307599,41.980545563],[-71.621353598,41.980526563],[-71.621803598,41.980309563],[-71.622063599,41.980160563],[-71.622406598,41.979954564],[-71.622757598,41.979706563],[-71.623093599,41.979447564],[-71.623116599,41.979435563],[-71.623436598,41.979195563],[-71.623672599,41.978962563],[-71.624336599,41.978341563],[-71.625137599,41.977566563],[-71.625786599,41.976956562],[-71.6261756,41.976624562],[-71.626541599,41.976349562],[-71.626907599,41.976124563],[-71.6273126,41.975907562],[-71.6277696,41.975693562],[-71.6280796,41.975562563],[-71.6284186,41.975434562],[-71.6288386,41.975304562],[-71.630241601,41.974930562],[-71.630727601,41.974817562],[-71.630898601,41.974778562],[-71.631850601,41.974536562],[-71.632036601,41.974486562],[-71.632217601,41.974442562],[-71.632225602,41.974369562],[-71.632233601,41.974339562],[-71.632271601,41.974080562],[-71.632278601,41.973790562],[-71.632248602,41.973595562],[-71.632141601,41.973645562],[-71.632042601,41.973675562],[-71.631857602,41.973709562],[-71.631813601,41.973717562],[-71.631470602,41.973763562],[-71.631203601,41.973503562],[-71.630882601,41.973236562],[-71.6300516,41.972485562],[-71.629890601,41.972325562],[-71.6297996,41.972187562],[-71.6297006,41.971974562],[-71.6296626,41.971634561],[-71.629654601,41.971173562],[-71.6296846,41.970894561],[-71.6297236,41.970665561],[-71.629730601,41.970517561],[-71.6297236,41.970044561],[-71.6297236,41.969479561],[-71.629730601,41.969244561],[-71.632230602,41.968681561],[-71.632464602,41.968278561],[-71.632750601,41.967911561],[-71.632900601,41.967641561],[-71.632908601,41.967566561],[-71.632940601,41.967509561],[-71.632992601,41.967450561],[-71.633051601,41.96739956],[-71.633132601,41.967348561],[-71.633183602,41.967310561],[-71.633221602,41.967257561],[-71.633275601,41.96720756],[-71.633313601,41.967160561],[-71.633345601,41.96708756],[-71.633443601,41.96694956],[-71.633508601,41.96687356],[-71.633572602,41.966807561],[-71.633695601,41.966708561],[-71.633737601,41.96663756],[-71.633787602,41.96657856],[-71.633841602,41.966537561],[-71.633891601,41.96648256],[-71.633941602,41.96639256],[-71.634085601,41.966200561],[-71.634130601,41.96613356],[-71.634228602,41.96602256],[-71.634330602,41.96597456],[-71.634428602,41.96591556],[-71.634511602,41.96587656],[-71.634561602,41.96582156],[-71.634650601,41.96571156],[-71.634725602,41.965638561],[-71.634790602,41.96559256],[-71.634890602,41.96554756],[-71.634944601,41.96550856],[-71.635003602,41.965445561],[-71.635067602,41.96541256],[-71.635186602,41.96532956],[-71.635479602,41.965153561],[-71.635559602,41.96512656],[-71.635736602,41.96508456],[-71.635808602,41.96506256],[-71.635849602,41.96502656],[-71.635872602,41.96496356],[-71.636080602,41.96488456],[-71.636206603,41.96478456],[-71.636435602,41.96472956],[-71.636494602,41.96469356],[-71.636561602,41.96466456],[-71.636654603,41.96463756],[-71.636849603,41.96460456],[-71.636961602,41.96457056],[-71.637029602,41.96452156],[-71.637112602,41.96447856],[-71.637207602,41.96442156],[-71.637250602,41.96437856],[-71.637316603,41.96435356],[-71.637399602,41.96433456],[-71.637493603,41.96427556],[-71.637544603,41.96423056],[-71.637577602,41.96418256],[-71.637627603,41.96413756],[-71.637808603,41.964042559],[-71.637951603,41.963886559],[-71.638007602,41.96381556],[-71.638036603,41.96374956],[-71.638077603,41.96368856],[-71.638098603,41.96361156],[-71.638098603,41.96347056],[-71.638118603,41.96339656],[-71.638292603,41.96323556],[-71.638327603,41.96315956],[-71.638387603,41.963112559],[-71.638437603,41.96304356],[-71.638458603,41.962991559],[-71.638488603,41.96294156],[-71.638604603,41.96284556],[-71.638627603,41.962833559],[-71.638812603,41.962735559],[-71.638876603,41.96267456],[-71.638997603,41.96261456],[-71.639131603,41.96253556],[-71.639202603,41.962466559],[-71.639266603,41.962431559],[-71.639325603,41.96237956],[-71.639380603,41.962317559],[-71.639444603,41.962256559],[-71.639526603,41.96218756],[-71.639582604,41.962117559],[-71.639634603,41.962072559],[-71.639758604,41.961985559],[-71.639798603,41.961940559],[-71.639835604,41.961880559],[-71.639863603,41.961751559],[-71.640049604,41.961554559],[-71.640192603,41.961433559],[-71.640248603,41.961380559],[-71.640277603,41.961298559],[-71.640306603,41.961242559],[-71.640356603,41.96117456],[-71.640548603,41.960849559],[-71.640602603,41.960772559],[-71.641000604,41.960377559],[-71.641370604,41.959951559],[-71.641588604,41.959641559],[-71.641662604,41.959569559],[-71.641656604,41.959512559],[-71.641552604,41.959416559],[-71.641536603,41.959359559],[-71.641592603,41.959273559],[-71.641635603,41.959220559],[-71.641651603,41.959141559],[-71.641681604,41.959074559],[-71.641731603,41.959023559],[-71.641826603,41.958890559],[-71.641873604,41.958835558],[-71.641988604,41.958675559],[-71.642015604,41.958607558],[-71.642069604,41.958552559],[-71.642122604,41.958509558],[-71.642176604,41.958446558],[-71.642218603,41.958387558],[-71.642235604,41.958259559],[-71.642263604,41.958194558],[-71.642304604,41.958142559],[-71.642316604,41.958022558],[-71.642402604,41.957908558],[-71.642436604,41.957855559],[-71.642493604,41.957731558],[-71.642530604,41.957669558],[-71.642589604,41.957606559],[-71.642630604,41.957536558],[-71.642659604,41.957456558],[-71.642678604,41.957387559],[-71.642678604,41.957236558],[-71.642671604,41.957173559],[-71.642675604,41.957102558],[-71.642691604,41.957088558],[-71.642762603,41.957074559],[-71.642840604,41.957016559],[-71.642937604,41.956959559],[-71.642943604,41.956954558],[-71.643050604,41.956864559],[-71.643117604,41.956816558],[-71.643166604,41.956769558],[-71.643259604,41.956661558],[-71.643269604,41.956573558],[-71.643269604,41.956470558],[-71.643309604,41.956419558],[-71.643382604,41.956398558],[-71.643458604,41.956416559],[-71.643543604,41.956424558],[-71.643624604,41.956380558],[-71.643664604,41.956332558],[-71.643720604,41.956276558],[-71.643856604,41.956189558],[-71.643949605,41.956143559],[-71.643982604,41.956091558],[-71.643978604,41.956010558],[-71.643954604,41.955874558],[-71.643919604,41.955805558],[-71.643870605,41.955674558],[-71.643827604,41.955595558],[-71.643786604,41.955550558],[-71.643724604,41.955498558],[-71.643639605,41.955335558],[-71.643591604,41.955223558],[-71.643550604,41.955164558],[-71.643501604,41.955110557],[-71.643463604,41.955045558],[-71.643437604,41.954979558],[-71.643427604,41.954853558],[-71.643426604,41.954821558],[-71.643440604,41.954762558],[-71.643546604,41.954592558],[-71.643601604,41.954532558],[-71.643662604,41.954477558],[-71.643730604,41.954434558],[-71.643930605,41.954369557],[-71.644027605,41.954326558],[-71.644134604,41.954285558],[-71.644210604,41.954267558],[-71.644322604,41.954264558],[-71.644388604,41.954270558],[-71.644416605,41.954323558],[-71.644422604,41.954458558],[-71.644465604,41.954505558],[-71.644555605,41.954553558],[-71.644650605,41.954548557],[-71.644841605,41.954447557],[-71.644937605,41.954447557],[-71.645015605,41.954456558],[-71.645072605,41.954513558],[-71.645109604,41.954581558],[-71.645122604,41.954666558],[-71.645127604,41.954869558],[-71.645163604,41.954926558],[-71.645277605,41.955038558],[-71.645340604,41.955085558],[-71.645426605,41.955129558],[-71.645496604,41.955199558],[-71.645488605,41.955254558],[-71.645420605,41.955273558],[-71.645196605,41.955319558],[-71.645011604,41.955350558],[-71.644933604,41.955380558],[-71.644915604,41.955419558],[-71.644921605,41.955518558],[-71.644993605,41.955665558],[-71.644979605,41.955736558],[-71.644896605,41.955777558],[-71.644849604,41.955808558],[-71.644810604,41.955863558],[-71.644775604,41.955926558],[-71.644751604,41.955996558],[-71.644723605,41.956056558],[-71.644727605,41.956112558],[-71.644770605,41.956171558],[-71.644817604,41.956193558],[-71.644897605,41.956175558],[-71.644996605,41.956087558],[-71.645024604,41.956037558],[-71.645151605,41.955934558],[-71.645217605,41.955906558],[-71.645319604,41.955824558],[-71.645385605,41.955749558],[-71.645508605,41.955654558],[-71.645530605,41.955595558],[-71.645582605,41.955546558],[-71.645626605,41.955485558],[-71.645676605,41.955393558],[-71.645724605,41.955332558],[-71.645729604,41.955123558],[-71.645712605,41.954724558],[-71.645718605,41.954600558],[-71.645736605,41.954544558],[-71.645839605,41.954492558],[-71.645860605,41.954471557],[-71.645887605,41.954445558],[-71.645894605,41.954402558],[-71.645856605,41.954354557],[-71.645795605,41.954234557],[-71.645788604,41.954151558],[-71.645809605,41.953934558],[-71.645809605,41.953877558],[-71.645833605,41.953809557],[-71.645950605,41.953691557],[-71.646053605,41.953666558],[-71.646209605,41.953590557],[-71.646288605,41.953571557],[-71.646383605,41.953542558],[-71.646458605,41.953533557],[-71.646584605,41.953540558],[-71.646662605,41.953563558],[-71.646746605,41.953594557],[-71.646822605,41.953628557],[-71.646895605,41.953679558],[-71.646961605,41.953697558],[-71.647089606,41.953616557],[-71.647151605,41.953569558],[-71.647178605,41.953512557],[-71.647170605,41.953450558],[-71.647146605,41.953387558],[-71.647105605,41.953336557],[-71.647107605,41.953315558],[-71.647013606,41.953325557],[-71.646924605,41.953323557],[-71.646823605,41.953304557],[-71.646720605,41.953263557],[-71.646654605,41.953224557],[-71.646580605,41.953190558],[-71.646503605,41.953170557],[-71.646422605,41.953170557],[-71.646348605,41.953175558],[-71.646198605,41.953206557],[-71.646120605,41.953235558],[-71.645954605,41.953273558],[-71.645886604,41.953298557],[-71.645749604,41.953362557],[-71.645681605,41.953405558],[-71.645619605,41.953452558],[-71.645553604,41.953458557],[-71.645474604,41.953434557],[-71.645377604,41.953389558],[-71.645341604,41.953328558],[-71.645330605,41.953258557],[-71.645321604,41.953128557],[-71.645295605,41.953062558],[-71.645290605,41.952981558],[-71.645486605,41.952935557],[-71.645558605,41.952904558],[-71.645806604,41.952900558],[-71.646004605,41.952857557],[-71.646082605,41.952819557],[-71.646111605,41.952779557],[-71.646121605,41.952698557],[-71.646127605,41.952554558],[-71.646118604,41.952403557],[-71.646096605,41.952287557],[-71.646035605,41.952211557],[-71.646001604,41.952161558],[-71.645989008,41.952129874],[-71.645968605,41.952078557],[-71.645922604,41.952029557],[-71.645856605,41.951988558],[-71.645761605,41.951964557],[-71.645692604,41.951923557],[-71.645599605,41.951914557],[-71.645475604,41.951911558],[-71.645402604,41.951923557],[-71.645318604,41.951951557],[-71.645185604,41.952014557],[-71.645107604,41.952038557],[-71.645024604,41.952047558],[-71.644908604,41.952047558],[-71.644734604,41.952035557],[-71.644667604,41.952007558],[-71.644533605,41.951929558],[-71.644452604,41.951867557],[-71.644375604,41.951849558],[-71.644125604,41.951820557],[-71.644052604,41.951801557],[-71.644020604,41.951740557],[-71.644012604,41.951667557],[-71.644012604,41.951601557],[-71.644022604,41.951547557],[-71.644047604,41.951488557],[-71.644084604,41.951435557],[-71.644144604,41.951327557],[-71.644188604,41.951273557],[-71.644465604,41.951109557],[-71.644593605,41.951046557],[-71.644651605,41.951007557],[-71.644759604,41.950962557],[-71.644808605,41.950914557],[-71.644830604,41.950855557],[-71.644844605,41.950723557],[-71.644822604,41.950019557],[-71.644827605,41.949952557],[-71.644883604,41.949836557],[-71.644897604,41.949761557],[-71.644905605,41.949648557],[-71.645004605,41.949477556],[-71.645028604,41.949397556],[-71.645031604,41.949336557],[-71.645017604,41.949270557],[-71.645089604,41.949249557],[-71.645103604,41.949225556],[-71.645099605,41.949029556],[-71.645113604,41.948828557],[-71.645100605,41.948753556],[-71.645065604,41.948611557],[-71.644987604,41.948611557],[-71.644969604,41.948550557],[-71.644829604,41.948540556],[-71.644592604,41.948517557],[-71.644455604,41.948498557],[-71.644348604,41.948477557],[-71.644318604,41.948471557],[-71.644180604,41.948449557],[-71.643825604,41.948363556],[-71.643684604,41.948330556],[-71.643552604,41.948360557],[-71.643517604,41.948368556],[-71.643356604,41.948418557],[-71.643204604,41.948475557],[-71.643051604,41.948521556],[-71.642723603,41.948597556],[-71.642441603,41.948655556],[-71.642349604,41.948670557],[-71.642159603,41.948723557],[-71.641991603,41.948780557],[-71.641670603,41.948918557],[-71.641586603,41.948960557],[-71.641380603,41.949040557],[-71.641296603,41.949067556],[-71.641197603,41.949086556],[-71.640663603,41.949215557],[-71.640579602,41.949231557],[-71.640274603,41.949307557],[-71.640233603,41.949319557],[-71.640038602,41.949379557],[-71.639954602,41.949410557],[-71.638907602,41.949871557],[-71.638489603,41.950055557],[-71.638290602,41.950131557],[-71.638261602,41.950140557],[-71.638100602,41.950192557],[-71.637924602,41.950234558],[-71.637672601,41.950257557],[-71.637261602,41.950267557],[-71.637199602,41.950268557],[-71.636963602,41.950268557],[-71.636856601,41.950257557],[-71.636765602,41.950241557],[-71.636589602,41.950199557],[-71.636459602,41.950180557],[-71.636192601,41.949669557],[-71.636025601,41.949378557],[-71.636017601,41.949342557],[-71.636017601,41.949294557],[-71.636024601,41.949276557],[-71.636002601,41.949246557],[-71.635864601,41.949005557],[-71.635612601,41.948525557],[-71.635208601,41.947781556],[-71.635056601,41.947457557],[-71.634995601,41.947277557],[-71.634995601,41.947216556],[-71.6350026,41.947155556],[-71.635025601,41.947098556],[-71.635056601,41.947041556],[-71.635094601,41.946991557],[-71.635185601,41.946892557],[-71.635460601,41.946629556],[-71.635582601,41.946518556],[-71.635887601,41.946225556],[-71.636177601,41.945954556],[-71.636581601,41.945629557],[-71.637184602,41.945095556],[-71.637459601,41.944832557],[-71.637573602,41.944744556],[-71.637856602,41.944592556],[-71.637802602,41.944500556],[-71.637741602,41.944409556],[-71.637650602,41.944222556],[-71.637646514,41.944211026],[-71.637566602,41.943985556],[-71.637550602,41.943924556],[-71.637527602,41.943863556],[-71.637451602,41.943585555],[-71.637390601,41.943398556],[-71.637367601,41.943337556],[-71.637360601,41.943303556],[-71.637344601,41.943264556],[-71.637321601,41.943211556],[-71.637268601,41.943112556],[-71.637199602,41.943016556],[-71.637138601,41.942921556],[-71.637070601,41.942826555],[-71.636238601,41.941754555],[-71.635521601,41.940800555],[-71.634995601,41.940148556],[-71.6347506,41.939804555],[-71.6343696,41.939350555],[-71.6342016,41.939194555],[-71.6340646,41.939087555],[-71.6337596,41.938881555],[-71.6334536,41.938687555],[-71.6331796,41.938485555],[-71.632957599,41.938290555],[-71.632935599,41.938263555],[-71.6327536,41.938076555],[-71.6325916,41.937893555],[-71.632408599,41.937664555],[-71.6322866,41.937462554],[-71.6322666,41.937432555],[-71.631958599,41.936959555],[-71.6317606,41.936623554],[-71.631554599,41.936306555],[-71.631523599,41.936272554],[-71.631355599,41.936028555],[-71.630859599,41.935208554],[-71.630707599,41.934967554],[-71.630531599,41.934674554],[-71.630363598,41.934353554],[-71.629906599,41.933300554],[-71.629387598,41.932389554],[-71.629311598,41.932281554],[-71.629021598,41.932281554],[-71.626109597,41.932401554],[-71.623389596,41.932514554],[-71.621564595,41.932510554],[-71.616144594,41.932498554],[-71.613315593,41.932597555],[-71.610544592,41.932776555],[-71.60335959,41.933201555],[-71.60296959,41.933243555],[-71.601661589,41.933322555],[-71.592935586,41.933914555],[-71.590108585,41.934106556],[-71.591962586,41.943366557],[-71.592116586,41.944115557],[-71.593482587,41.950769559],[-71.594719588,41.956791559],[-71.595097588,41.95863756],[-71.595813589,41.962129561],[-71.595988589,41.962917561],[-71.596039589,41.963150561],[-71.596374589,41.965152561],[-71.596542589,41.966187561],[-71.596710589,41.967016562],[-71.59851559,41.976265563],[-71.599318591,41.980378564],[-71.599370591,41.980644564],[-71.599421591,41.980911564],[-71.599689591,41.982281564]]]]}}"}, +{"type": "precinct", "typeId": 401, "areaId": 25684, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":23,\"NAME\":\"0401\",\"SHAPE_Length\":0.04407750287068,\"SHAPE_Area\":-7.8976459957476e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.381633515,41.892665554],[-71.381951515,41.892532553],[-71.381978515,41.892521554],[-71.382433515,41.892325554],[-71.382694515,41.892195554],[-71.382784516,41.892146554],[-71.382810515,41.892182553],[-71.382828515,41.892208554],[-71.382996516,41.892422554],[-71.383156516,41.893151554],[-71.385071516,41.892957554],[-71.385119516,41.892952554],[-71.386345516,41.892807553],[-71.386276517,41.892483554],[-71.386246516,41.892247554],[-71.386192516,41.891987553],[-71.386925516,41.891903554],[-71.387497517,41.891831553],[-71.387474517,41.891701553],[-71.387383517,41.891110553],[-71.387512517,41.891102554],[-71.388687517,41.890934553],[-71.389160518,41.890862553],[-71.391045518,41.890606553],[-71.391449518,41.890549553],[-71.391953518,41.890358553],[-71.392265518,41.890244553],[-71.392906519,41.889988553],[-71.393250519,41.889840553],[-71.393646519,41.889611553],[-71.393188518,41.888955553],[-71.393021519,41.888722553],[-71.392769519,41.888344553],[-71.392624518,41.888131553],[-71.391899518,41.888356552],[-71.391220518,41.888565553],[-71.390907518,41.888665553],[-71.390594517,41.888134553],[-71.390556517,41.888054553],[-71.390366518,41.887707553],[-71.390312518,41.887600552],[-71.389984517,41.886948553],[-71.389824518,41.886608552],[-71.389610518,41.886181552],[-71.389465517,41.885895553],[-71.389206517,41.885334552],[-71.389343517,41.885300552],[-71.389084517,41.884659552],[-71.388924517,41.884316552],[-71.388794516,41.883984552],[-71.388695516,41.883763552],[-71.388229516,41.883126552],[-71.388097516,41.882954551],[-71.386734516,41.883259552],[-71.386396516,41.883212552],[-71.386066516,41.883103552],[-71.385957516,41.883154552],[-71.385231515,41.883347552],[-71.383906515,41.883416552],[-71.382330515,41.883508552],[-71.380979514,41.883622552],[-71.380959514,41.883722552],[-71.380900514,41.885307553],[-71.380821514,41.885899552],[-71.380878514,41.886529553],[-71.380665514,41.887075553],[-71.380219514,41.887938553],[-71.381367514,41.888522553],[-71.381824515,41.888378553],[-71.381867515,41.888373553],[-71.382083515,41.888362553],[-71.382316515,41.888910553],[-71.382605515,41.888865553],[-71.383093515,41.889878553],[-71.381805515,41.891508554],[-71.381633515,41.892665554]]]]}}"}, +{"type": "precinct", "typeId": 402, "areaId": 25685, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":24,\"NAME\":\"0402\",\"SHAPE_Length\":0.024248529478805,\"SHAPE_Area\":-2.6750831866488e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.385071516,41.892957554],[-71.385101516,41.893052554],[-71.385273516,41.893487554],[-71.385491516,41.893976554],[-71.385548516,41.893999554],[-71.386517516,41.894386554],[-71.387455517,41.894283554],[-71.387593517,41.894248554],[-71.387924517,41.894200554],[-71.387978517,41.894436554],[-71.388046517,41.894844554],[-71.389816518,41.894658554],[-71.390717518,41.894555554],[-71.391464518,41.894474554],[-71.391518518,41.894471554],[-71.391548518,41.894471554],[-71.392342518,41.894406554],[-71.392367518,41.894406554],[-71.393562519,41.894276554],[-71.394348519,41.894211554],[-71.394592519,41.894017554],[-71.394073519,41.893364554],[-71.393654519,41.892743554],[-71.393219518,41.892140553],[-71.392784519,41.891526553],[-71.392380519,41.890957553],[-71.392296518,41.890839553],[-71.391953518,41.890358553],[-71.391449518,41.890549553],[-71.391045518,41.890606553],[-71.389160518,41.890862553],[-71.388687517,41.890934553],[-71.387512517,41.891102554],[-71.387383517,41.891110553],[-71.387474517,41.891701553],[-71.387497517,41.891831553],[-71.386925516,41.891903554],[-71.386192516,41.891987553],[-71.386246516,41.892247554],[-71.386276517,41.892483554],[-71.386345516,41.892807553],[-71.385119516,41.892952554],[-71.385071516,41.892957554]]]]}}"}, +{"type": "precinct", "typeId": 403, "areaId": 25683, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":22,\"NAME\":\"0403\",\"SHAPE_Length\":0.02773769662909,\"SHAPE_Area\":-3.9670105319004e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.388097516,41.882954551],[-71.388229516,41.883126552],[-71.388695516,41.883763552],[-71.388794516,41.883984552],[-71.388924517,41.884316552],[-71.389084517,41.884659552],[-71.389343517,41.885300552],[-71.389206517,41.885334552],[-71.389465517,41.885895553],[-71.389610518,41.886181552],[-71.389824518,41.886608552],[-71.389984517,41.886948553],[-71.390312518,41.887600552],[-71.390366518,41.887707553],[-71.390556517,41.888054553],[-71.390594517,41.888134553],[-71.390907518,41.888665553],[-71.391220518,41.888565553],[-71.391899518,41.888356552],[-71.392624518,41.888131553],[-71.392769519,41.888344553],[-71.393021519,41.888722553],[-71.393188518,41.888955553],[-71.394051519,41.888630552],[-71.394547518,41.888367553],[-71.394859519,41.888173553],[-71.395561519,41.887802553],[-71.39664552,41.887192552],[-71.39720952,41.886868552],[-71.396713519,41.886410552],[-71.396248519,41.885983552],[-71.39610352,41.885857552],[-71.395981519,41.885746552],[-71.39674452,41.885399552],[-71.397354519,41.885086552],[-71.397301519,41.885033552],[-71.39691952,41.884610552],[-71.396866519,41.884541552],[-71.396400519,41.884003552],[-71.395874519,41.883408551],[-71.395393519,41.882859551],[-71.394905519,41.882306552],[-71.392448518,41.882756552],[-71.391840517,41.882669551],[-71.391533518,41.882691552],[-71.391426517,41.882729552],[-71.390732517,41.883000552],[-71.389183516,41.882754552],[-71.388097516,41.882954551]]]]}}"}, +{"type": "precinct", "typeId": 404, "areaId": 25686, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":25,\"NAME\":\"0404\",\"SHAPE_Length\":0.029035330752863,\"SHAPE_Area\":-3.1745196214453e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.391953518,41.890358553],[-71.392296518,41.890839553],[-71.392380519,41.890957553],[-71.392784519,41.891526553],[-71.393219518,41.892140553],[-71.393654519,41.892743554],[-71.394073519,41.893364554],[-71.394592519,41.894017554],[-71.39532552,41.893448553],[-71.39559252,41.893242554],[-71.39598852,41.892929553],[-71.397217519,41.891964553],[-71.39810252,41.891266553],[-71.39823952,41.891163553],[-71.398499521,41.890953553],[-71.399651521,41.890046553],[-71.400177521,41.889660553],[-71.399895521,41.889489552],[-71.399498521,41.889172553],[-71.39897952,41.888649552],[-71.398697521,41.888375553],[-71.39868252,41.888352553],[-71.39820152,41.887867553],[-71.397705519,41.887364552],[-71.39762152,41.887276552],[-71.39825452,41.886910553],[-71.39886552,41.886582552],[-71.39861352,41.886349552],[-71.39834652,41.886082552],[-71.397667519,41.885388552],[-71.397354519,41.885086552],[-71.39674452,41.885399552],[-71.395981519,41.885746552],[-71.39610352,41.885857552],[-71.396248519,41.885983552],[-71.396713519,41.886410552],[-71.39720952,41.886868552],[-71.39664552,41.887192552],[-71.395561519,41.887802553],[-71.394859519,41.888173553],[-71.394547518,41.888367553],[-71.394051519,41.888630552],[-71.393188518,41.888955553],[-71.393646519,41.889611553],[-71.393250519,41.889840553],[-71.392906519,41.889988553],[-71.392265518,41.890244553],[-71.391953518,41.890358553]]]]}}"}, +{"type": "precinct", "typeId": 405, "areaId": 25681, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":20,\"NAME\":\"0405\",\"SHAPE_Length\":0.028743026246484,\"SHAPE_Area\":-2.2786494530052e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.397667519,41.885388552],[-71.39834652,41.885365552],[-71.39872752,41.885346552],[-71.39881952,41.885338552],[-71.39964352,41.885300552],[-71.40009352,41.885334551],[-71.400566521,41.885388552],[-71.400879521,41.885407552],[-71.400665521,41.885132552],[-71.400993521,41.885128552],[-71.401207521,41.885113552],[-71.40121552,41.885079552],[-71.401207521,41.884537551],[-71.401184521,41.884339551],[-71.401184521,41.884125551],[-71.401192521,41.883816551],[-71.402384522,41.883795551],[-71.402363521,41.883337552],[-71.402354521,41.882534551],[-71.402410521,41.882653551],[-71.402431521,41.882714551],[-71.402488521,41.882841551],[-71.402539522,41.882881551],[-71.402617522,41.882921551],[-71.402697521,41.882972552],[-71.402756521,41.883019551],[-71.402793522,41.883080551],[-71.402816521,41.883139551],[-71.402872522,41.883176551],[-71.402944521,41.883214551],[-71.403001521,41.883208551],[-71.403043522,41.883153551],[-71.403071521,41.883087552],[-71.403042522,41.883030552],[-71.403038521,41.882972552],[-71.403090521,41.882920551],[-71.403182522,41.882897551],[-71.403243521,41.882929551],[-71.403296522,41.882970552],[-71.403321521,41.882953552],[-71.403369521,41.882899551],[-71.403446521,41.882898551],[-71.403488522,41.882868551],[-71.403513522,41.882814552],[-71.403517521,41.882796552],[-71.403527522,41.882745551],[-71.403487521,41.882696551],[-71.403439521,41.882667551],[-71.403363521,41.882698552],[-71.403313522,41.882745551],[-71.403273521,41.882793551],[-71.403228521,41.882832551],[-71.403146521,41.882835552],[-71.403075521,41.882846551],[-71.403004522,41.882826551],[-71.402952521,41.882751551],[-71.402977521,41.882687551],[-71.403034521,41.882645551],[-71.403117521,41.882606551],[-71.403215521,41.882575551],[-71.403316522,41.882565551],[-71.403405521,41.882540551],[-71.403400521,41.882513551],[-71.403378522,41.882459551],[-71.403376522,41.882404551],[-71.403404521,41.882361551],[-71.403471522,41.882354551],[-71.403567522,41.882376551],[-71.403720521,41.882402551],[-71.403795521,41.882425552],[-71.403865522,41.882453551],[-71.403959522,41.882499551],[-71.404045521,41.882530551],[-71.404057522,41.882578551],[-71.403957522,41.882687551],[-71.404016522,41.882752551],[-71.404101521,41.882861551],[-71.404149522,41.882911552],[-71.404183521,41.882936551],[-71.404204522,41.882926551],[-71.404243522,41.882877551],[-71.404266522,41.882812551],[-71.404293522,41.882690551],[-71.404312522,41.882633551],[-71.404343522,41.882581552],[-71.404404522,41.882522551],[-71.404454521,41.882466552],[-71.404488522,41.882404551],[-71.404468522,41.882347551],[-71.404407522,41.882291551],[-71.404368522,41.882229551],[-71.404388522,41.882149551],[-71.404450522,41.882097551],[-71.404494521,41.882069551],[-71.404507522,41.880759551],[-71.402859521,41.881393551],[-71.402000521,41.881699551],[-71.40141352,41.881707551],[-71.40022352,41.881745551],[-71.394905519,41.882306552],[-71.395393519,41.882859551],[-71.395874519,41.883408551],[-71.396400519,41.884003552],[-71.396866519,41.884541552],[-71.39691952,41.884610552],[-71.397301519,41.885033552],[-71.397354519,41.885086552],[-71.397667519,41.885388552]]]]}}"}, +{"type": "precinct", "typeId": 406, "areaId": 25687, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":26,\"NAME\":\"0406\",\"SHAPE_Length\":0.042493875898236,\"SHAPE_Area\":-6.2304170828545e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.381700515,41.893207554],[-71.382100515,41.894107554],[-71.382300515,41.895407554],[-71.382990516,41.897070555],[-71.383600516,41.897607555],[-71.384644516,41.898582555],[-71.385932516,41.899599555],[-71.386249517,41.899547555],[-71.386348517,41.899644555],[-71.388236517,41.899854555],[-71.388268517,41.899813555],[-71.390060518,41.899327555],[-71.391739518,41.898351555],[-71.392320519,41.898136555],[-71.393133519,41.897856554],[-71.394296519,41.897660554],[-71.395214519,41.897394554],[-71.395618519,41.896660554],[-71.39686152,41.896444554],[-71.39660052,41.896207554],[-71.39607252,41.895846554],[-71.395447519,41.895535554],[-71.39531752,41.895485554],[-71.395248519,41.895443554],[-71.395487519,41.895260553],[-71.39574452,41.895062554],[-71.39605752,41.894829554],[-71.39611852,41.894776554],[-71.39607252,41.894711554],[-71.39580552,41.894520553],[-71.395470519,41.894314554],[-71.396225519,41.893708554],[-71.396011519,41.893532553],[-71.39559252,41.893242554],[-71.39532552,41.893448553],[-71.394592519,41.894017554],[-71.394348519,41.894211554],[-71.393562519,41.894276554],[-71.392367518,41.894406554],[-71.392342518,41.894406554],[-71.391548518,41.894471554],[-71.391518518,41.894471554],[-71.391464518,41.894474554],[-71.390717518,41.894555554],[-71.389816518,41.894658554],[-71.388046517,41.894844554],[-71.387978517,41.894436554],[-71.387924517,41.894200554],[-71.387593517,41.894248554],[-71.387455517,41.894283554],[-71.386517516,41.894386554],[-71.385548516,41.893999554],[-71.385491516,41.893976554],[-71.385273516,41.893487554],[-71.385101516,41.893052554],[-71.385071516,41.892957554],[-71.383156516,41.893151554],[-71.382996516,41.892422554],[-71.382828515,41.892208554],[-71.382810515,41.892182553],[-71.382784516,41.892146554],[-71.382694515,41.892195554],[-71.382433515,41.892325554],[-71.381978515,41.892521554],[-71.381951515,41.892532553],[-71.381633515,41.892665554],[-71.381638515,41.892708554],[-71.381700515,41.893207554]]]]}}"}, +{"type": "precinct", "typeId": 407, "areaId": 25682, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":21,\"NAME\":\"0407\",\"SHAPE_Length\":0.023447821654746,\"SHAPE_Area\":-1.0231611481509e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.39825452,41.886910553],[-71.39762152,41.887276552],[-71.397705519,41.887364552],[-71.39820152,41.887867553],[-71.39868252,41.888352553],[-71.398697521,41.888375553],[-71.39897952,41.888649552],[-71.399498521,41.889172553],[-71.399895521,41.889489552],[-71.400177521,41.889660553],[-71.400444521,41.889557553],[-71.400635521,41.889534553],[-71.400764521,41.889500553],[-71.400497521,41.889161552],[-71.400208521,41.888848552],[-71.39977352,41.888420552],[-71.400459521,41.888188552],[-71.399864521,41.887604552],[-71.39962052,41.887337552],[-71.39890352,41.886620553],[-71.39886552,41.886582552],[-71.39825452,41.886910553]]],[[[-71.39598852,41.892929553],[-71.39559252,41.893242554],[-71.396011519,41.893532553],[-71.396225519,41.893708554],[-71.39673652,41.893303554],[-71.39787352,41.892434553],[-71.39812552,41.892609553],[-71.39826252,41.892689553],[-71.39843052,41.892754553],[-71.398521521,41.892765553],[-71.398560521,41.892762554],[-71.398636521,41.892746553],[-71.398697521,41.892720554],[-71.39881952,41.892651553],[-71.399277521,41.892296553],[-71.399796521,41.891873553],[-71.400452521,41.891373553],[-71.400978521,41.890984553],[-71.400307521,41.890507553],[-71.399651521,41.890046553],[-71.398499521,41.890953553],[-71.39823952,41.891163553],[-71.39810252,41.891266553],[-71.397217519,41.891964553],[-71.39598852,41.892929553]]]]}}"}, +{"type": "precinct", "typeId": 408, "areaId": 25680, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":19,\"NAME\":\"0408\",\"SHAPE_Length\":0.055182463832633,\"SHAPE_Area\":-8.5727770265556e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.396225519,41.893708554],[-71.395470519,41.894314554],[-71.39580552,41.894520553],[-71.39607252,41.894711554],[-71.39611852,41.894776554],[-71.39605752,41.894829554],[-71.39574452,41.895062554],[-71.395487519,41.895260553],[-71.395248519,41.895443554],[-71.39531752,41.895485554],[-71.395447519,41.895535554],[-71.39607252,41.895846554],[-71.39660052,41.896207554],[-71.39686152,41.896444554],[-71.39862652,41.896148554],[-71.398964521,41.896089554],[-71.399367521,41.896009554],[-71.401058522,41.895644554],[-71.401480522,41.895536553],[-71.401786521,41.895523554],[-71.401830522,41.895518554],[-71.401996521,41.895497553],[-71.403633522,41.895281553],[-71.404169522,41.895250554],[-71.404503523,41.894726554],[-71.404522523,41.894712554],[-71.405406523,41.893688553],[-71.406541523,41.892211553],[-71.407141523,41.891290553],[-71.406494523,41.889145552],[-71.406481522,41.889055553],[-71.406296523,41.887759552],[-71.405763522,41.886443552],[-71.405684522,41.886248552],[-71.405430522,41.885618552],[-71.405310522,41.885322552],[-71.405205522,41.884787551],[-71.405093522,41.884475551],[-71.404508522,41.882409551],[-71.404494521,41.882069551],[-71.404450522,41.882097551],[-71.404388522,41.882149551],[-71.404368522,41.882229551],[-71.404407522,41.882291551],[-71.404468522,41.882347551],[-71.404488522,41.882404551],[-71.404454521,41.882466552],[-71.404404522,41.882522551],[-71.404343522,41.882581552],[-71.404312522,41.882633551],[-71.404293522,41.882690551],[-71.404266522,41.882812551],[-71.404243522,41.882877551],[-71.404204522,41.882926551],[-71.404183521,41.882936551],[-71.404149522,41.882911552],[-71.404101521,41.882861551],[-71.404016522,41.882752551],[-71.403957522,41.882687551],[-71.404057522,41.882578551],[-71.404045521,41.882530551],[-71.403959522,41.882499551],[-71.403865522,41.882453551],[-71.403795521,41.882425552],[-71.403720521,41.882402551],[-71.403567522,41.882376551],[-71.403471522,41.882354551],[-71.403404521,41.882361551],[-71.403376522,41.882404551],[-71.403378522,41.882459551],[-71.403400521,41.882513551],[-71.403405521,41.882540551],[-71.403316522,41.882565551],[-71.403215521,41.882575551],[-71.403117521,41.882606551],[-71.403034521,41.882645551],[-71.402977521,41.882687551],[-71.402952521,41.882751551],[-71.403004522,41.882826551],[-71.403075521,41.882846551],[-71.403146521,41.882835552],[-71.403228521,41.882832551],[-71.403273521,41.882793551],[-71.403313522,41.882745551],[-71.403363521,41.882698552],[-71.403439521,41.882667551],[-71.403487521,41.882696551],[-71.403527522,41.882745551],[-71.403517521,41.882796552],[-71.403513522,41.882814552],[-71.403488522,41.882868551],[-71.403446521,41.882898551],[-71.403369521,41.882899551],[-71.403321521,41.882953552],[-71.403296522,41.882970552],[-71.403243521,41.882929551],[-71.403182522,41.882897551],[-71.403090521,41.882920551],[-71.403038521,41.882972552],[-71.403042522,41.883030552],[-71.403071521,41.883087552],[-71.403043522,41.883153551],[-71.403001521,41.883208551],[-71.402944521,41.883214551],[-71.402872522,41.883176551],[-71.402816521,41.883139551],[-71.402793522,41.883080551],[-71.402756521,41.883019551],[-71.402697521,41.882972552],[-71.402617522,41.882921551],[-71.402539522,41.882881551],[-71.402488521,41.882841551],[-71.402431521,41.882714551],[-71.402410521,41.882653551],[-71.402354521,41.882534551],[-71.402363521,41.883337552],[-71.402384522,41.883795551],[-71.401192521,41.883816551],[-71.401184521,41.884125551],[-71.401184521,41.884339551],[-71.401207521,41.884537551],[-71.40121552,41.885079552],[-71.401207521,41.885113552],[-71.400993521,41.885128552],[-71.400665521,41.885132552],[-71.400879521,41.885407552],[-71.400566521,41.885388552],[-71.40009352,41.885334551],[-71.39964352,41.885300552],[-71.39881952,41.885338552],[-71.39872752,41.885346552],[-71.39834652,41.885365552],[-71.397667519,41.885388552],[-71.39834652,41.886082552],[-71.39861352,41.886349552],[-71.39886552,41.886582552],[-71.39890352,41.886620553],[-71.39962052,41.887337552],[-71.399864521,41.887604552],[-71.400459521,41.888188552],[-71.39977352,41.888420552],[-71.400208521,41.888848552],[-71.400497521,41.889161552],[-71.400764521,41.889500553],[-71.400635521,41.889534553],[-71.400444521,41.889557553],[-71.400177521,41.889660553],[-71.399651521,41.890046553],[-71.400307521,41.890507553],[-71.400978521,41.890984553],[-71.400452521,41.891373553],[-71.399796521,41.891873553],[-71.399277521,41.892296553],[-71.39881952,41.892651553],[-71.398697521,41.892720554],[-71.398636521,41.892746553],[-71.398560521,41.892762554],[-71.398521521,41.892765553],[-71.39843052,41.892754553],[-71.39826252,41.892689553],[-71.39812552,41.892609553],[-71.39787352,41.892434553],[-71.39673652,41.893303554],[-71.396225519,41.893708554]]]]}}"}, +{"type": "precinct", "typeId": 501, "areaId": 25689, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":28,\"NAME\":\"0501\",\"SHAPE_Length\":0.45900068064343,\"SHAPE_Area\":-0.0046103761389327},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.637829574,41.447119459],[-71.637921575,41.447023459],[-71.638014575,41.446943459],[-71.638069575,41.446842459],[-71.638153575,41.446733459],[-71.638229575,41.446649459],[-71.638255575,41.446612459],[-71.638303575,41.446533459],[-71.638372575,41.44646746],[-71.638457575,41.446444459],[-71.638533575,41.44631046],[-71.638631575,41.446224459],[-71.638720575,41.446172459],[-71.639062575,41.446091459],[-71.639210575,41.446065459],[-71.639333575,41.446051459],[-71.639474575,41.445984459],[-71.639615575,41.445969459],[-71.639681575,41.445969459],[-71.639781575,41.445958459],[-71.639959575,41.445960459],[-71.639991576,41.445962459],[-71.640095575,41.445969459],[-71.640183576,41.445984459],[-71.640293575,41.446025459],[-71.640364575,41.446066459],[-71.640486575,41.446148459],[-71.640508575,41.446216459],[-71.640503575,41.446239459],[-71.640504575,41.446392459],[-71.640544575,41.446440459],[-71.640644575,41.446532459],[-71.640811576,41.446543459],[-71.640894575,41.446543459],[-71.641148575,41.446696459],[-71.641235576,41.446728459],[-71.641430576,41.446767459],[-71.641535575,41.446845459],[-71.641647576,41.44689646],[-71.641847576,41.446968459],[-71.641991576,41.446988459],[-71.642442576,41.446988459],[-71.642567576,41.446991459],[-71.642660576,41.446977459],[-71.642705576,41.446981459],[-71.642857577,41.447075459],[-71.642954577,41.447119459],[-71.643100576,41.447220459],[-71.643185577,41.447341459],[-71.643244577,41.447484459],[-71.643307577,41.447516459],[-71.643439577,41.44752046],[-71.643534577,41.447534459],[-71.643707577,41.447583459],[-71.643750577,41.447613459],[-71.643752577,41.44763446],[-71.643780576,41.447643459],[-71.643804577,41.447709459],[-71.643810577,41.44780946],[-71.643818576,41.44785046],[-71.643924577,41.44788746],[-71.644061577,41.447922459],[-71.644143577,41.447971459],[-71.644258577,41.44798946],[-71.644297577,41.448030459],[-71.644397577,41.448111459],[-71.644542577,41.448116459],[-71.644623577,41.448135459],[-71.644662577,41.448171459],[-71.644701577,41.448214459],[-71.644723577,41.44824046],[-71.644782577,41.448342459],[-71.644848577,41.44843346],[-71.644912577,41.448502459],[-71.645140577,41.44856746],[-71.645368577,41.448583459],[-71.645451578,41.448623459],[-71.645485577,41.448673459],[-71.645526577,41.448694459],[-71.645648577,41.448692459],[-71.645683578,41.448639459],[-71.645807577,41.44857446],[-71.645898578,41.448539459],[-71.646022577,41.448484459],[-71.646173578,41.448488459],[-71.646432577,41.448543459],[-71.646808578,41.44863146],[-71.646970578,41.44869046],[-71.647178578,41.448775459],[-71.647321578,41.448817459],[-71.647487578,41.448875459],[-71.647665578,41.448930459],[-71.647896578,41.44896446],[-71.648200578,41.44896246],[-71.648419578,41.448935459],[-71.648674578,41.44888546],[-71.648822579,41.44884246],[-71.648842579,41.44884246],[-71.648902579,41.44884246],[-71.649017579,41.448819459],[-71.649175579,41.448800459],[-71.649307579,41.44882746],[-71.649385579,41.448888459],[-71.649408579,41.44896446],[-71.649397578,41.449048459],[-71.649304578,41.44917646],[-71.649179578,41.449322459],[-71.649139578,41.44944546],[-71.649101578,41.449518459],[-71.649062578,41.44975546],[-71.649072579,41.44979946],[-71.649083578,41.44991046],[-71.649155579,41.45006746],[-71.649156579,41.45009446],[-71.649158579,41.450137459],[-71.649161578,41.45019246],[-71.649240578,41.450410459],[-71.649376578,41.45065046],[-71.649474578,41.45080546],[-71.649569578,41.45093346],[-71.649668578,41.451054459],[-71.649765578,41.45112146],[-71.649897579,41.45118346],[-71.650124579,41.45124446],[-71.650285579,41.45126146],[-71.650436579,41.45131046],[-71.650588579,41.45132146],[-71.650729579,41.45134946],[-71.650827579,41.451443459],[-71.650846579,41.45161346],[-71.650918579,41.45174446],[-71.650987579,41.45197646],[-71.651001579,41.45210746],[-71.650980579,41.45225146],[-71.65091358,41.45238646],[-71.650693579,41.45271446],[-71.650616579,41.45280246],[-71.650525579,41.45288746],[-71.650446579,41.45298246],[-71.650377579,41.45309246],[-71.650321579,41.453194461],[-71.650279579,41.45331046],[-71.650199579,41.45343246],[-71.650113579,41.45353046],[-71.650089579,41.45365846],[-71.650093579,41.45373346],[-71.650156579,41.45390246],[-71.650301579,41.454091461],[-71.650377579,41.45428946],[-71.650427579,41.45439246],[-71.650496579,41.454535461],[-71.650573579,41.45466246],[-71.650721579,41.45482246],[-71.650855579,41.45495746],[-71.650946579,41.45503446],[-71.651075579,41.455104461],[-71.651324579,41.45526546],[-71.65164558,41.455338461],[-71.65272958,41.456057461],[-71.65313258,41.456842461],[-71.65367458,41.457400461],[-71.654769581,41.458094461],[-71.655011581,41.458657461],[-71.65502958,41.459039461],[-71.655227581,41.459145461],[-71.655483581,41.459192461],[-71.655813581,41.459173461],[-71.656375581,41.459029461],[-71.657703581,41.458783461],[-71.658664582,41.458614461],[-71.659540582,41.458667461],[-71.660428583,41.459127461],[-71.660703583,41.459461461],[-71.661304583,41.459591461],[-71.662053583,41.459508461],[-71.662469583,41.458814461],[-71.663374584,41.45852346],[-71.663545584,41.458447461],[-71.663612583,41.458432461],[-71.663687583,41.458414461],[-71.663841584,41.458401461],[-71.664003584,41.458408461],[-71.664152584,41.458421461],[-71.664340584,41.45842646],[-71.664470584,41.458455461],[-71.664608584,41.458526461],[-71.664726584,41.458602461],[-71.664873584,41.458689461],[-71.664997584,41.458769461],[-71.665368584,41.458966461],[-71.665683584,41.459144461],[-71.665829585,41.459211461],[-71.665988585,41.459276461],[-71.666141585,41.45932146],[-71.666277585,41.459371461],[-71.666526585,41.459498461],[-71.666773585,41.459652461],[-71.666883585,41.459736461],[-71.666992585,41.459810461],[-71.667147585,41.459928461],[-71.667152585,41.459926461],[-71.667278585,41.459950461],[-71.667398585,41.460048461],[-71.667502585,41.460124461],[-71.667776585,41.460244461],[-71.667891585,41.460315461],[-71.668008585,41.460367461],[-71.668097585,41.460390461],[-71.668124585,41.460403461],[-71.668264585,41.460366461],[-71.668283585,41.460289461],[-71.668353585,41.460280461],[-71.668492585,41.460357461],[-71.668539586,41.460444461],[-71.668527585,41.460485461],[-71.668668585,41.460511461],[-71.668828586,41.460550461],[-71.669002586,41.460619461],[-71.669160586,41.460672461],[-71.669317586,41.460716461],[-71.669478586,41.460791461],[-71.669568586,41.460828461],[-71.669747586,41.460868461],[-71.669896586,41.460887461],[-71.670047586,41.460923461],[-71.670216586,41.460971461],[-71.670376586,41.460986461],[-71.670531586,41.460991461],[-71.670651586,41.461014461],[-71.670653586,41.461141461],[-71.670701586,41.461249462],[-71.670819586,41.461254461],[-71.671361586,41.461251461],[-71.671350587,41.461161461],[-71.671528586,41.461136461],[-71.671683586,41.461127461],[-71.671716587,41.461096461],[-71.671882586,41.460897461],[-71.672046587,41.460815461],[-71.672168587,41.460749461],[-71.672305587,41.460649461],[-71.672465586,41.460407461],[-71.672500587,41.460291461],[-71.672519587,41.460183461],[-71.672516587,41.45988746],[-71.672531587,41.45979046],[-71.672595587,41.459685461],[-71.672675587,41.45957746],[-71.672745587,41.459414461],[-71.672769587,41.45938146],[-71.672908587,41.459355461],[-71.672994587,41.459317461],[-71.673038587,41.459298461],[-71.673085587,41.459242461],[-71.673193587,41.45912846],[-71.673293587,41.45903446],[-71.673507587,41.458847461],[-71.673634587,41.458713461],[-71.673862587,41.458551461],[-71.674007587,41.458398461],[-71.674119587,41.458264461],[-71.674228587,41.458181461],[-71.674343587,41.458086461],[-71.674437587,41.45797546],[-71.674494587,41.457833461],[-71.674525587,41.45769146],[-71.674527587,41.45755746],[-71.674509588,41.457444461],[-71.674400587,41.45714146],[-71.674323587,41.45704246],[-71.674284587,41.456939461],[-71.674275587,41.45675646],[-71.674279587,41.45643546],[-71.674296587,41.45628446],[-71.674400587,41.45596546],[-71.674433587,41.45572146],[-71.674469587,41.45556246],[-71.674518587,41.45540746],[-71.674538587,41.45499746],[-71.674597587,41.45475246],[-71.674640587,41.454622459],[-71.674712587,41.454528459],[-71.674798587,41.454427459],[-71.674866587,41.45432746],[-71.674959587,41.45415246],[-71.675035587,41.454037459],[-71.675085587,41.45388846],[-71.675112587,41.453770459],[-71.675170587,41.45365946],[-71.675213587,41.453549459],[-71.675386588,41.45331046],[-71.675481587,41.453225459],[-71.675729587,41.453063459],[-71.675826587,41.45297846],[-71.675976587,41.452907459],[-71.676107588,41.45280546],[-71.676265588,41.452658459],[-71.676329587,41.45253246],[-71.676403587,41.452461459],[-71.676440588,41.452349459],[-71.676579587,41.452062459],[-71.676582587,41.451895459],[-71.676562587,41.451783459],[-71.676530588,41.451662459],[-71.676531588,41.451553459],[-71.676552588,41.451380459],[-71.676586587,41.451265459],[-71.676599587,41.451094459],[-71.676629588,41.450973459],[-71.676693588,41.450806459],[-71.676719587,41.450693459],[-71.676730588,41.450579459],[-71.676731588,41.450464459],[-71.676726588,41.450060458],[-71.676680587,41.449939459],[-71.676654588,41.449839459],[-71.676655588,41.449722459],[-71.676664587,41.449587459],[-71.676695587,41.449534458],[-71.676764588,41.449467459],[-71.676779587,41.449334459],[-71.676785588,41.449194459],[-71.676803587,41.449109458],[-71.676877587,41.448991458],[-71.676942588,41.448847459],[-71.676977587,41.448771458],[-71.677085587,41.448651459],[-71.677147587,41.448544458],[-71.677198588,41.448437459],[-71.677243587,41.448399459],[-71.677384587,41.448342458],[-71.677488588,41.448266458],[-71.677586588,41.448178459],[-71.677860588,41.448007459],[-71.678196588,41.447868459],[-71.678366588,41.447791459],[-71.678481588,41.447718458],[-71.678791588,41.447583458],[-71.678909588,41.447510458],[-71.679310588,41.447195458],[-71.679397588,41.447083458],[-71.679475588,41.446951458],[-71.679549588,41.446862458],[-71.679692588,41.446778458],[-71.679911589,41.446691458],[-71.680134588,41.446626458],[-71.680309588,41.446605458],[-71.680461588,41.446565458],[-71.680604589,41.446512458],[-71.680758588,41.446405458],[-71.680886589,41.446283458],[-71.680992589,41.446190458],[-71.681129589,41.446054458],[-71.681179589,41.445872458],[-71.681190589,41.445712458],[-71.681181588,41.445531458],[-71.681117589,41.445073458],[-71.681078589,41.444954457],[-71.681050588,41.444816457],[-71.681013589,41.444566458],[-71.681007588,41.444435458],[-71.680979589,41.444114457],[-71.680983589,41.443947458],[-71.681011588,41.443823457],[-71.681077589,41.443646457],[-71.681094589,41.443519458],[-71.681103588,41.443350457],[-71.681202588,41.443101457],[-71.681287589,41.442990457],[-71.681546589,41.442716457],[-71.681670588,41.442575457],[-71.681940589,41.442283457],[-71.681997589,41.442181457],[-71.682065589,41.442040457],[-71.682128589,41.441938457],[-71.682241589,41.441832457],[-71.682435589,41.441580457],[-71.682754589,41.441280457],[-71.682873589,41.441199457],[-71.682983589,41.441156457],[-71.683105589,41.441056457],[-71.683289589,41.440855456],[-71.683409589,41.440714457],[-71.683444589,41.440652457],[-71.683702589,41.440348456],[-71.68380959,41.440197457],[-71.683900589,41.440050457],[-71.683969589,41.439969457],[-71.684090589,41.439790457],[-71.68414259,41.439696457],[-71.68421759,41.439625456],[-71.684306589,41.439568456],[-71.68441059,41.439508456],[-71.684515589,41.439457456],[-71.684634589,41.439425457],[-71.68476659,41.439395456],[-71.684892589,41.439379456],[-71.68497359,41.439404457],[-71.68497859,41.439427457],[-71.684814589,41.439594456],[-71.684735589,41.439658457],[-71.684738589,41.439709456],[-71.68475959,41.439785456],[-71.684793589,41.439837457],[-71.68484259,41.439850457],[-71.68489659,41.439808456],[-71.68509259,41.439571456],[-71.685280589,41.439289457],[-71.68532859,41.439202456],[-71.685394589,41.439054457],[-71.68541159,41.439000456],[-71.68542159,41.438946456],[-71.68542059,41.438891456],[-71.68539059,41.438781457],[-71.68538159,41.438725457],[-71.685374589,41.438564456],[-71.68537259,41.438544456],[-71.68537159,41.438525456],[-71.68537059,41.438510457],[-71.685339589,41.438409456],[-71.68533359,41.438351456],[-71.68533159,41.438226456],[-71.68530559,41.438053456],[-71.68525059,41.437889456],[-71.68525259,41.437668456],[-71.68526659,41.437614456],[-71.68529159,41.437560456],[-71.68536659,41.437468456],[-71.68541959,41.437429456],[-71.68548459,41.437391456],[-71.68571659,41.437283456],[-71.685783589,41.437248456],[-71.685901589,41.437170456],[-71.685961589,41.437137456],[-71.686077589,41.437089456],[-71.68619959,41.437081456],[-71.68632359,41.437132456],[-71.68636559,41.437148456],[-71.68639359,41.437128456],[-71.68644259,41.437056456],[-71.68647059,41.436979456],[-71.68646159,41.436910456],[-71.68643159,41.436828456],[-71.68640959,41.436732456],[-71.68640659,41.436638456],[-71.68636959,41.436558456],[-71.68631759,41.436484455],[-71.68626059,41.436392456],[-71.68617759,41.436301456],[-71.68610259,41.436187456],[-71.686057589,41.436131456],[-71.68595259,41.436020455],[-71.68581359,41.435846456],[-71.685710589,41.435750456],[-71.68555959,41.435578456],[-71.685438589,41.435394455],[-71.685401589,41.435326456],[-71.68534959,41.435130456],[-71.685295589,41.434992456],[-71.685285589,41.434870455],[-71.685298589,41.434807455],[-71.685342589,41.434745456],[-71.68540959,41.434706456],[-71.685479589,41.434672455],[-71.685550589,41.434628456],[-71.68576059,41.434526456],[-71.68601559,41.434437455],[-71.68614759,41.434413456],[-71.68627959,41.434407455],[-71.68639559,41.434415456],[-71.68650159,41.434448456],[-71.68661359,41.434489456],[-71.68671359,41.434534455],[-71.68679259,41.434575455],[-71.68686559,41.434629456],[-71.68692059,41.434639455],[-71.68700759,41.434638455],[-71.68711359,41.434628456],[-71.68731259,41.434527456],[-71.68753159,41.434429456],[-71.68763259,41.434355456],[-71.68779259,41.434194455],[-71.687984591,41.433937455],[-71.68815159,41.433769456],[-71.68822859,41.433679455],[-71.688314591,41.433609455],[-71.68840559,41.433562455],[-71.68849359,41.433540455],[-71.68865959,41.433565455],[-71.68872759,41.433591455],[-71.68881059,41.433596456],[-71.688912591,41.433596456],[-71.689029591,41.433579455],[-71.689155591,41.433584455],[-71.689396591,41.433604455],[-71.689479591,41.433642455],[-71.689475591,41.433665455],[-71.689380591,41.433682455],[-71.689129591,41.433684455],[-71.689036591,41.433701455],[-71.688955591,41.433704455],[-71.688842591,41.433716455],[-71.68869259,41.433722455],[-71.68855959,41.433741455],[-71.688511591,41.433773455],[-71.688487591,41.433815455],[-71.68849459,41.433846455],[-71.688626591,41.433871455],[-71.688684591,41.433908456],[-71.68867559,41.433951455],[-71.68860059,41.433991455],[-71.688508591,41.434009455],[-71.688506591,41.434070455],[-71.68851959,41.434124455],[-71.688546591,41.434193455],[-71.688529591,41.434251455],[-71.68846259,41.434308455],[-71.688374591,41.434373456],[-71.68826559,41.434462455],[-71.688159591,41.434579455],[-71.688137591,41.434581455],[-71.68807559,41.434546456],[-71.688022591,41.434485455],[-71.68796959,41.434464455],[-71.68789259,41.434503455],[-71.68783259,41.434544455],[-71.68791759,41.434604456],[-71.687964591,41.434675455],[-71.688020591,41.434748455],[-71.68801759,41.434784456],[-71.68795259,41.434845456],[-71.687906591,41.434896456],[-71.68774359,41.435104455],[-71.68775759,41.435120455],[-71.68784159,41.435083455],[-71.687926591,41.435012456],[-71.688081591,41.434904455],[-71.68813259,41.434864456],[-71.688315591,41.434700455],[-71.688368591,41.434660455],[-71.688563591,41.434536455],[-71.688839591,41.434333456],[-71.68904459,41.434204455],[-71.689150591,41.434117455],[-71.689330591,41.433999455],[-71.689398591,41.433962455],[-71.689693591,41.433828455],[-71.689950591,41.433722455],[-71.690127591,41.433635456],[-71.690220591,41.433597456],[-71.690406591,41.433532455],[-71.690710591,41.433412455],[-71.690856591,41.433346455],[-71.691008592,41.433286455],[-71.691076591,41.433254455],[-71.691269591,41.433148455],[-71.691477591,41.433051455],[-71.691690592,41.432958455],[-71.691852591,41.432865455],[-71.691959592,41.432826455],[-71.692056592,41.432796455],[-71.692143591,41.432778455],[-71.692475591,41.432888455],[-71.692511591,41.432941455],[-71.692529592,41.433006455],[-71.692576592,41.433118455],[-71.692623592,41.433183455],[-71.692660592,41.433244455],[-71.692628591,41.433271455],[-71.692552591,41.433266455],[-71.692473591,41.433238455],[-71.692386592,41.433190455],[-71.692307592,41.433135455],[-71.692219591,41.433097455],[-71.692150592,41.433127455],[-71.692088591,41.433188455],[-71.692058592,41.433244455],[-71.692083591,41.433302455],[-71.692143591,41.433360455],[-71.692220591,41.433412455],[-71.692321591,41.433450455],[-71.692427592,41.433498455],[-71.692649591,41.433589455],[-71.692700592,41.433629455],[-71.692689591,41.433695455],[-71.692642592,41.433744455],[-71.692373592,41.433821455],[-71.692299591,41.433834455],[-71.692223591,41.433840455],[-71.692084591,41.433838455],[-71.691976592,41.433849455],[-71.691885592,41.433879455],[-71.691761592,41.433888456],[-71.691597591,41.433872455],[-71.691456592,41.433838455],[-71.691250591,41.433809455],[-71.691251591,41.433816455],[-71.691314591,41.433846455],[-71.691401591,41.433880455],[-71.691500591,41.433912455],[-71.691614591,41.433937455],[-71.691805592,41.433966456],[-71.691971591,41.433969455],[-71.692045591,41.433967456],[-71.692256592,41.433951455],[-71.692540592,41.433938455],[-71.692616592,41.433921455],[-71.692731592,41.433888455],[-71.692873592,41.433849455],[-71.693154592,41.433699455],[-71.693239592,41.433684455],[-71.693293592,41.433676455],[-71.693480592,41.433656455],[-71.693617592,41.433706455],[-71.693622592,41.433707455],[-71.693772592,41.433727455],[-71.693930592,41.433629455],[-71.693909592,41.433535455],[-71.693882592,41.433449455],[-71.693946592,41.433133455],[-71.693972593,41.433074455],[-71.694031593,41.433020455],[-71.694152592,41.432948455],[-71.694202592,41.432918455],[-71.694296592,41.432895455],[-71.694374592,41.432889455],[-71.694445592,41.432920455],[-71.694512592,41.432957455],[-71.694575593,41.432970455],[-71.694664592,41.432924455],[-71.694675592,41.432858454],[-71.694671593,41.432799454],[-71.694719592,41.432754455],[-71.694797592,41.432729455],[-71.694919592,41.432701454],[-71.694992592,41.432693455],[-71.695069592,41.432690455],[-71.695235593,41.432691455],[-71.695314593,41.432696455],[-71.695529593,41.432727455],[-71.695649593,41.432751455],[-71.695754593,41.432787455],[-71.695858593,41.432830455],[-71.695838593,41.432854455],[-71.695762593,41.432875455],[-71.695672592,41.432882455],[-71.695577592,41.432862455],[-71.695461592,41.432847455],[-71.695141593,41.432837454],[-71.695047592,41.432858454],[-71.695032592,41.432884455],[-71.695049592,41.432908455],[-71.695159593,41.432921455],[-71.695414593,41.432940455],[-71.695588593,41.432968455],[-71.695667593,41.432974454],[-71.695777593,41.432997455],[-71.695895593,41.433030455],[-71.696007593,41.433039455],[-71.696050593,41.433020455],[-71.696078593,41.432987455],[-71.696094593,41.432934455],[-71.696155593,41.432924455],[-71.696257593,41.432941455],[-71.696387593,41.432971455],[-71.696624593,41.432996455],[-71.696698593,41.433000455],[-71.696840593,41.433000455],[-71.696913593,41.432995454],[-71.696988593,41.432982455],[-71.697060593,41.432961455],[-71.697259593,41.432884455],[-71.697681593,41.432743454],[-71.697882593,41.432667455],[-71.698083594,41.432604454],[-71.698209593,41.432559455],[-71.698386593,41.432473455],[-71.698558593,41.432353454],[-71.698669594,41.432285455],[-71.698873594,41.432172455],[-71.698975594,41.432104455],[-71.699080594,41.432037455],[-71.699289594,41.431915455],[-71.699380594,41.431854455],[-71.699459594,41.431783455],[-71.699593594,41.431616454],[-71.699655594,41.431529455],[-71.699711594,41.431440454],[-71.699755594,41.431352455],[-71.699848594,41.431029454],[-71.699871594,41.430931454],[-71.699860594,41.430833454],[-71.699819594,41.430741454],[-71.699737594,41.430600454],[-71.699718594,41.430544454],[-71.699726593,41.430469454],[-71.699728594,41.430449454],[-71.699735594,41.430439454],[-71.699778594,41.430376454],[-71.699849594,41.430351454],[-71.699916594,41.430370454],[-71.699969594,41.430424454],[-71.700019594,41.430484454],[-71.700060594,41.430556454],[-71.700121594,41.430621454],[-71.700205594,41.430680454],[-71.700254594,41.430742454],[-71.700238594,41.430768455],[-71.700236594,41.430801454],[-71.700281594,41.430857454],[-71.700371594,41.430884455],[-71.700613594,41.430892454],[-71.700738595,41.430880454],[-71.700941594,41.430824455],[-71.701182595,41.430743454],[-71.701262595,41.430701454],[-71.701321595,41.430681454],[-71.701384594,41.430654454],[-71.701428594,41.430582454],[-71.701438595,41.430511454],[-71.701477595,41.430429454],[-71.701618594,41.430396454],[-71.701628595,41.430394454],[-71.701716594,41.430406454],[-71.701802595,41.430444454],[-71.701881595,41.430491454],[-71.701946595,41.430558454],[-71.702006595,41.430637454],[-71.702093595,41.430779454],[-71.702116595,41.430833454],[-71.702133595,41.430937454],[-71.702109594,41.431020455],[-71.702073595,41.431081455],[-71.702005595,41.431137455],[-71.701960595,41.431181454],[-71.701930594,41.431247454],[-71.701903595,41.431321454],[-71.701880595,41.431419454],[-71.701868595,41.431691454],[-71.701841595,41.431731454],[-71.701788595,41.431698455],[-71.701754595,41.431636454],[-71.701726595,41.431474454],[-71.701728595,41.431223454],[-71.701750595,41.431134454],[-71.701789595,41.431044454],[-71.701818594,41.430953454],[-71.701795594,41.430879454],[-71.701765595,41.430866455],[-71.701731595,41.430872454],[-71.701671595,41.430910454],[-71.701636595,41.430965454],[-71.701618594,41.431127454],[-71.701593595,41.431212454],[-71.701556595,41.431299454],[-71.701507594,41.431351455],[-71.701424594,41.431341454],[-71.701342595,41.431323454],[-71.701305595,41.431346454],[-71.701318595,41.431414454],[-71.701392594,41.431544455],[-71.701429594,41.431620455],[-71.701532595,41.431770454],[-71.701655595,41.431890454],[-71.701713595,41.431954455],[-71.701762595,41.432018454],[-71.701839595,41.432153455],[-71.701988595,41.432292454],[-71.702055595,41.432338454],[-71.702141595,41.432363455],[-71.702230595,41.432363455],[-71.702281594,41.432331454],[-71.702295595,41.432274454],[-71.702297595,41.432214454],[-71.702414595,41.432073455],[-71.702527595,41.432016455],[-71.702686595,41.431961454],[-71.702750595,41.431927454],[-71.702873595,41.431827454],[-71.702936595,41.431782455],[-71.703012595,41.431754454],[-71.703095595,41.431746454],[-71.703173595,41.431759455],[-71.703245595,41.431787454],[-71.703310595,41.431827454],[-71.703424595,41.431925454],[-71.703492595,41.431997455],[-71.703420595,41.432073455],[-71.703325595,41.432065454],[-71.703208595,41.432033455],[-71.703078595,41.432004454],[-71.703005595,41.432016455],[-71.703003595,41.432085454],[-71.703045595,41.432130455],[-71.703120595,41.432184454],[-71.703209595,41.432256454],[-71.703311595,41.432324455],[-71.703420595,41.432385455],[-71.703487596,41.432433454],[-71.703562595,41.432464455],[-71.703661596,41.432493454],[-71.703757596,41.432543455],[-71.703950596,41.432614455],[-71.703990596,41.432622455],[-71.704158595,41.432696455],[-71.704321596,41.432755455],[-71.704762595,41.432893455],[-71.704937595,41.432968455],[-71.705023596,41.433011455],[-71.705169595,41.433110454],[-71.705232596,41.433162455],[-71.705291596,41.433218455],[-71.705392596,41.433326454],[-71.705525596,41.433450455],[-71.705554596,41.433477455],[-71.705633596,41.433544454],[-71.705713596,41.433656454],[-71.705759596,41.433706455],[-71.705799596,41.433763455],[-71.705946597,41.434037455],[-71.706030596,41.434184454],[-71.706079596,41.434251455],[-71.706301596,41.434513455],[-71.706421596,41.434648455],[-71.706526597,41.434786455],[-71.706693596,41.434956455],[-71.706746597,41.435017455],[-71.706806596,41.435077455],[-71.706933597,41.435180455],[-71.707077597,41.435256455],[-71.707151597,41.435289455],[-71.707420597,41.435377455],[-71.707506597,41.435400455],[-71.707683596,41.435432455],[-71.707776597,41.435454455],[-71.707872597,41.435469455],[-71.708175597,41.435500455],[-71.708281597,41.435507455],[-71.708386597,41.435508455],[-71.708586597,41.435500455],[-71.708627597,41.435494455],[-71.708775597,41.435458455],[-71.708848597,41.435433455],[-71.709020597,41.435351455],[-71.709085598,41.435295454],[-71.709133597,41.435243455],[-71.709187597,41.435101454],[-71.709202598,41.435032455],[-71.709172597,41.434973455],[-71.709118597,41.434912455],[-71.709004597,41.434810455],[-71.708894597,41.434724455],[-71.708791597,41.434629455],[-71.708747597,41.434578455],[-71.708675597,41.434512455],[-71.708636597,41.434451455],[-71.708644597,41.434378454],[-71.708681597,41.434306455],[-71.708747597,41.434265454],[-71.708833598,41.434257455],[-71.708923597,41.434281454],[-71.709002597,41.434321454],[-71.709075597,41.434364455],[-71.709142598,41.434413455],[-71.709183598,41.434475454],[-71.709206597,41.434529455],[-71.709260598,41.434595454],[-71.709409597,41.434684455],[-71.709465597,41.434728455],[-71.709528597,41.434758455],[-71.709713597,41.434795455],[-71.709785598,41.434818455],[-71.709866598,41.434830455],[-71.710031597,41.434831455],[-71.710138598,41.434827454],[-71.710412598,41.434787454],[-71.710670597,41.434754455],[-71.710750598,41.434728455],[-71.711120598,41.434553454],[-71.711285598,41.434455455],[-71.711450598,41.434372455],[-71.711564598,41.434327455],[-71.711617598,41.434309455],[-71.711786598,41.434267454],[-71.711960598,41.434189454],[-71.712030599,41.434177455],[-71.712214598,41.434136455],[-71.712408598,41.434098455],[-71.712728599,41.434049454],[-71.712953598,41.434008454],[-71.713096599,41.433990454],[-71.713305598,41.433958454],[-71.713383598,41.433950454],[-71.713622599,41.433939455],[-71.713840599,41.433914454],[-71.714051599,41.433873454],[-71.714179598,41.433836454],[-71.714438599,41.433769455],[-71.714559599,41.433751455],[-71.714683599,41.433761454],[-71.714806599,41.433779454],[-71.714897599,41.433799454],[-71.714969599,41.433824455],[-71.715107599,41.433907455],[-71.715191599,41.433942455],[-71.715301599,41.433969454],[-71.715660599,41.434034454],[-71.715776599,41.434060455],[-71.7158876,41.434090454],[-71.7161606,41.434183454],[-71.7163526,41.434232455],[-71.716445599,41.434252455],[-71.7165346,41.434255455],[-71.716619599,41.434240455],[-71.7166996,41.434215455],[-71.716775599,41.434180455],[-71.7168236,41.434133454],[-71.7168416,41.434072454],[-71.7168446,41.433990454],[-71.716794599,41.433859454],[-71.716716599,41.433730455],[-71.716621599,41.433599454],[-71.716502599,41.433394454],[-71.716366599,41.433062454],[-71.7163576,41.432986454],[-71.716383599,41.432913455],[-71.716422599,41.432851454],[-71.716518599,41.432738455],[-71.716577599,41.432681454],[-71.716738599,41.432591454],[-71.7168256,41.432550454],[-71.7169196,41.432513454],[-71.717181599,41.432391454],[-71.7172456,41.432341454],[-71.7172846,41.432267454],[-71.7173336,41.432076454],[-71.7173486,41.431980454],[-71.7173526,41.431767454],[-71.7173806,41.431687454],[-71.7174616,41.431530454],[-71.717515599,41.431451454],[-71.7175436,41.431380454],[-71.7175356,41.431318454],[-71.7175026,41.431253454],[-71.7174586,41.431207454],[-71.7173236,41.431096454],[-71.7172306,41.431043453],[-71.717125599,41.430991454],[-71.7170356,41.430931454],[-71.7169186,41.430825454],[-71.716890599,41.430777454],[-71.7168606,41.430704454],[-71.716816599,41.430627454],[-71.716811599,41.430554454],[-71.716837599,41.430484454],[-71.7168846,41.430431454],[-71.717024599,41.430328454],[-71.7171966,41.430225453],[-71.717381599,41.430108453],[-71.7174646,41.430087454],[-71.717492599,41.430115454],[-71.7174106,41.430248453],[-71.717317599,41.430433454],[-71.7172486,41.430531454],[-71.717204599,41.430612454],[-71.7172166,41.430693453],[-71.7172506,41.430760454],[-71.717298599,41.430818454],[-71.7173556,41.430869453],[-71.717436599,41.430923454],[-71.7174726,41.430881454],[-71.7175766,41.430547454],[-71.717630599,41.430331454],[-71.7176446,41.430252454],[-71.717671599,41.430191453],[-71.7176926,41.430079454],[-71.7177176,41.430018454],[-71.7177226,41.429959454],[-71.7177606,41.429827454],[-71.7177636,41.429763453],[-71.7177596,41.429705453],[-71.7177456,41.429649454],[-71.7177156,41.429584453],[-71.7176226,41.429481454],[-71.7175846,41.429393453],[-71.7175656,41.429322454],[-71.7175446,41.429307454],[-71.7176416,41.429226454],[-71.717688599,41.429176453],[-71.7178116,41.429082453],[-71.7179706,41.428984453],[-71.7180326,41.428931454],[-71.7180926,41.428861453],[-71.7182506,41.428730453],[-71.7183366,41.428675453],[-71.7186046,41.428519453],[-71.7188166,41.428419453],[-71.7188246,41.428415453],[-71.7190066,41.428332453],[-71.7189786,41.428295453],[-71.7189646,41.428239453],[-71.7189786,41.428180453],[-71.7190236,41.428126453],[-71.719129601,41.428028453],[-71.7191936,41.427978453],[-71.7192626,41.427937453],[-71.7193596,41.427905453],[-71.7194726,41.427890453],[-71.719597601,41.427896453],[-71.7197266,41.427909453],[-71.7198566,41.427929453],[-71.7201326,41.428001453],[-71.720196601,41.428025453],[-71.7204386,41.428138453],[-71.720766601,41.428264453],[-71.720835601,41.428296453],[-71.720892601,41.428332453],[-71.720998601,41.428431453],[-71.721074601,41.428491453],[-71.721167601,41.428548453],[-71.721252601,41.428606453],[-71.721351601,41.428654453],[-71.721579601,41.428697453],[-71.721692601,41.428703453],[-71.721796601,41.428704453],[-71.721908601,41.428691453],[-71.722061601,41.428658453],[-71.722267601,41.428597453],[-71.722456601,41.428548453],[-71.722653601,41.428498453],[-71.722723601,41.428476453],[-71.723053601,41.428358453],[-71.723320602,41.428238453],[-71.723461601,41.428180453],[-71.723592602,41.428115453],[-71.723715601,41.428041453],[-71.723863602,41.427962453],[-71.723972601,41.427904453],[-71.724272602,41.427726453],[-71.724376601,41.427652453],[-71.724645602,41.427412453],[-71.724753602,41.427336453],[-71.724855602,41.427255453],[-71.725019602,41.427147453],[-71.725100602,41.427108453],[-71.725139602,41.427089453],[-71.725465602,41.426982453],[-71.725618602,41.426918453],[-71.725656602,41.426925453],[-71.725721603,41.426973453],[-71.725731602,41.427006452],[-71.725729602,41.427067452],[-71.725740603,41.427237453],[-71.725765602,41.427372453],[-71.725829602,41.427482453],[-71.725929602,41.427524453],[-71.725952603,41.427534452],[-71.726035602,41.427522453],[-71.726187603,41.427430453],[-71.726074602,41.427223452],[-71.725993603,41.427025453],[-71.725885602,41.426929452],[-71.725798603,41.426918453],[-71.725772602,41.426904453],[-71.725760603,41.426862453],[-71.725837603,41.426771453],[-71.725980602,41.426583453],[-71.726025602,41.426494453],[-71.726045602,41.426411453],[-71.726031603,41.426339453],[-71.725992603,41.426219453],[-71.725980602,41.426038452],[-71.725962602,41.425933453],[-71.725951602,41.425825452],[-71.725935603,41.425729453],[-71.725896603,41.425652453],[-71.725848602,41.425572452],[-71.725808602,41.425483453],[-71.725745602,41.425288453],[-71.725722602,41.425195452],[-71.725763602,41.424921452],[-71.725763602,41.424895453],[-71.725786602,41.424755452],[-71.725786602,41.424686452],[-71.725768602,41.424566453],[-71.725776602,41.424206452],[-71.725795602,41.424080453],[-71.725859602,41.423746452],[-71.725930602,41.423513452],[-71.725946602,41.423446452],[-71.725960602,41.423334452],[-71.725971602,41.423012452],[-71.725959602,41.422718452],[-71.725951602,41.422657451],[-71.725945602,41.422444451],[-71.725949602,41.422371452],[-71.725960602,41.422313452],[-71.725977602,41.422259452],[-71.726004602,41.422203452],[-71.726039602,41.422151451],[-71.726066602,41.422100452],[-71.726232602,41.421898451],[-71.726282602,41.421851452],[-71.726339602,41.421816452],[-71.726396602,41.421746452],[-71.726547602,41.421426452],[-71.726595602,41.421333451],[-71.726648602,41.421252452],[-71.726693602,41.421173452],[-71.726736602,41.421083451],[-71.726839602,41.420903451],[-71.726979602,41.420616451],[-71.727222603,41.420185451],[-71.727291602,41.420086451],[-71.727444602,41.419895451],[-71.727540602,41.419738451],[-71.727673602,41.419542451],[-71.727837602,41.419356451],[-71.727946602,41.419204452],[-71.728021603,41.419116451],[-71.728119603,41.418967451],[-71.728156603,41.418919451],[-71.728239602,41.418833451],[-71.728389603,41.418657451],[-71.728643603,41.418423451],[-71.728761603,41.418290451],[-71.728826602,41.418203451],[-71.728893603,41.418101451],[-71.729059602,41.417875451],[-71.729123603,41.417813451],[-71.729178603,41.417741451],[-71.729243603,41.417590451],[-71.729400603,41.417176451],[-71.729407603,41.41710145],[-71.729381603,41.417030451],[-71.729340603,41.41698545],[-71.729285603,41.416936451],[-71.729264603,41.416857451],[-71.729240603,41.416703451],[-71.729216603,41.416472451],[-71.729216602,41.41641745],[-71.729204603,41.416354451],[-71.729129603,41.416313451],[-71.729093603,41.41626845],[-71.729095603,41.416211451],[-71.729109603,41.41612645],[-71.729144603,41.41606845],[-71.729173603,41.41593045],[-71.729222603,41.41577845],[-71.729332602,41.415537451],[-71.729385603,41.415454451],[-71.729513603,41.415319451],[-71.729574603,41.41524845],[-71.729728603,41.41502345],[-71.729777603,41.41496845],[-71.729861603,41.41485845],[-71.729938603,41.414736451],[-71.729974603,41.41467045],[-71.730027603,41.41452645],[-71.730015603,41.41444445],[-71.729979603,41.41429445],[-71.729959603,41.41415745],[-71.729909603,41.41401945],[-71.729878603,41.41395445],[-71.729816603,41.41391445],[-71.729742603,41.41387745],[-71.729661602,41.41385845],[-71.729573603,41.41386145],[-71.729479603,41.41385145],[-71.729383603,41.41382545],[-71.729294602,41.41378345],[-71.729215602,41.41372145],[-71.729147603,41.41366045],[-71.729071603,41.41361845],[-71.728866602,41.41356345],[-71.728652602,41.41348645],[-71.728547603,41.41343945],[-71.728483602,41.41337745],[-71.728440602,41.41331145],[-71.728368603,41.41299945],[-71.728361602,41.41292745],[-71.728364602,41.41284345],[-71.728384602,41.41276645],[-71.728413602,41.41269445],[-71.728429603,41.41261845],[-71.728405602,41.41252745],[-71.728245602,41.41219845],[-71.728207602,41.41213145],[-71.728188602,41.41206645],[-71.728182602,41.41189745],[-71.728162602,41.41176845],[-71.728142602,41.41156745],[-71.728126602,41.41149345],[-71.728097602,41.411405449],[-71.728054602,41.411312449],[-71.727913602,41.411059449],[-71.727861602,41.410977449],[-71.727807602,41.410905449],[-71.727752602,41.410820449],[-71.727666602,41.410650449],[-71.727623602,41.41057745],[-71.727546602,41.41040945],[-71.727458601,41.410298449],[-71.727412602,41.41023045],[-71.727389602,41.410200449],[-71.727325602,41.41011745],[-71.727112602,41.409868449],[-71.727050601,41.40980145],[-71.726952601,41.409731449],[-71.726820601,41.409620449],[-71.726636602,41.409516449],[-71.726457602,41.40943045],[-71.726338602,41.409384449],[-71.726209602,41.409350449],[-71.725940601,41.40929645],[-71.725703601,41.40927445],[-71.725472601,41.409244449],[-71.725185601,41.409185449],[-71.725039601,41.40915945],[-71.724540601,41.409097449],[-71.724428601,41.409071449],[-71.724312601,41.409027449],[-71.724252601,41.408996449],[-71.7240296,41.408862449],[-71.7239326,41.40879045],[-71.723842601,41.408708449],[-71.723665601,41.408529449],[-71.7235986,41.40844045],[-71.7235456,41.40834145],[-71.7234436,41.408081449],[-71.723398601,41.407979449],[-71.723355601,41.407865449],[-71.723319601,41.407749449],[-71.7233096,41.407693449],[-71.7233076,41.407638449],[-71.7233256,41.407469449],[-71.7233826,41.407114449],[-71.723458601,41.406777449],[-71.7234836,41.406597449],[-71.7235076,41.406128449],[-71.7235246,41.405842449],[-71.7235306,41.405439448],[-71.7235236,41.405097449],[-71.7235456,41.404562448],[-71.7235426,41.404457449],[-71.7235586,41.404365448],[-71.723592601,41.404284449],[-71.7236286,41.404214448],[-71.7237076,41.404079448],[-71.723750601,41.404015448],[-71.723808601,41.403963448],[-71.7239476,41.403857449],[-71.7240266,41.403812448],[-71.724316601,41.403672448],[-71.7246356,41.403534448],[-71.7248696,41.403440448],[-71.725106601,41.403328448],[-71.725335601,41.403212448],[-71.725445601,41.403150448],[-71.725789601,41.402974448],[-71.725921601,41.402914448],[-71.726151601,41.402800448],[-71.726262601,41.402737448],[-71.726431601,41.402633448],[-71.726739601,41.402417448],[-71.727026602,41.402183448],[-71.727115601,41.402100448],[-71.727284601,41.401953448],[-71.727349601,41.401880448],[-71.727462601,41.401711448],[-71.727509602,41.401573448],[-71.727524601,41.401499447],[-71.727549602,41.401320448],[-71.727571602,41.401237448],[-71.727586602,41.401139448],[-71.727586602,41.401045448],[-71.727539601,41.400677448],[-71.727506601,41.400528447],[-71.727451602,41.400349447],[-71.727412601,41.399904447],[-71.727393601,41.399747447],[-71.727382601,41.399563448],[-71.727328601,41.399111447],[-71.727311601,41.398744447],[-71.727316601,41.398393447],[-71.727330601,41.398169447],[-71.727377602,41.397823447],[-71.727423601,41.397666447],[-71.727453601,41.397545447],[-71.727466601,41.397513447],[-71.727286601,41.397214447],[-71.727345601,41.397140447],[-71.727572602,41.396960447],[-71.727685601,41.396864447],[-71.727884602,41.396735447],[-71.727945601,41.396690447],[-71.727984601,41.396646446],[-71.727975601,41.396596447],[-71.728023601,41.396599447],[-71.728080602,41.396622447],[-71.728146601,41.396592447],[-71.728255602,41.396599447],[-71.728363601,41.396695447],[-71.728450602,41.396818446],[-71.728485602,41.396881447],[-71.728564602,41.396994446],[-71.728583602,41.397054446],[-71.728607602,41.397186447],[-71.728568602,41.397365447],[-71.728548602,41.397428447],[-71.728535601,41.397495447],[-71.728538601,41.397555447],[-71.728587602,41.397738447],[-71.728612601,41.397808447],[-71.728643602,41.397868447],[-71.728764601,41.398055447],[-71.728818602,41.398102447],[-71.728887602,41.398144447],[-71.729037601,41.398217447],[-71.729130602,41.398238447],[-71.729605602,41.398307447],[-71.729799602,41.398330447],[-71.730028602,41.398346447],[-71.730655603,41.398430447],[-71.730748603,41.398424447],[-71.730843602,41.398440447],[-71.730876602,41.398450447],[-71.730926603,41.398465447],[-71.730936602,41.398466447],[-71.730792602,41.393924446],[-71.730827602,41.392445446],[-71.730782602,41.390358446],[-71.730698601,41.387566445],[-71.730583601,41.387593445],[-71.730354602,41.387623445],[-71.730194601,41.387654445],[-71.729523602,41.387856445],[-71.729294601,41.387898445],[-71.728844601,41.387963445],[-71.728127601,41.388043445],[-71.7277916,41.388077445],[-71.727348601,41.388131445],[-71.727043601,41.388146445],[-71.7260286,41.388241445],[-71.7253726,41.388314446],[-71.7248006,41.388363445],[-71.723114599,41.388539445],[-71.722740599,41.388562445],[-71.722534599,41.388565446],[-71.721977599,41.388562446],[-71.721764598,41.388577445],[-71.721182598,41.388632445],[-71.721123598,41.388638445],[-71.720154598,41.388737446],[-71.718693598,41.388877446],[-71.718521598,41.388893446],[-71.718155597,41.388935446],[-71.717850597,41.388962445],[-71.717361597,41.389016446],[-71.716980598,41.389054446],[-71.716362597,41.389134445],[-71.716034597,41.389172446],[-71.715462597,41.389248446],[-71.715230596,41.389276446],[-71.714325597,41.389386446],[-71.713799596,41.389431446],[-71.712822596,41.389542446],[-71.712479596,41.389592446],[-71.712349596,41.389618446],[-71.712288596,41.389645446],[-71.712227595,41.389679446],[-71.712181596,41.389733446],[-71.712112595,41.389851446],[-71.712097596,41.389943446],[-71.712059596,41.390297446],[-71.711952596,41.391068446],[-71.711891596,41.391701446],[-71.711876595,41.391907446],[-71.711876595,41.392193447],[-71.711861596,41.392620447],[-71.711861596,41.392727446],[-71.711845596,41.392826446],[-71.711815596,41.392926446],[-71.711754596,41.393082447],[-71.711655596,41.393299447],[-71.711594596,41.393471447],[-71.711502596,41.393704447],[-71.711433596,41.393864447],[-71.711388595,41.393986447],[-71.711334596,41.394085447],[-71.711266596,41.394181447],[-71.711205596,41.394242447],[-71.711113596,41.394307447],[-71.710922595,41.394432447],[-71.710442595,41.394722447],[-71.709999596,41.394997447],[-71.708550595,41.395924447],[-71.708268594,41.396150448],[-71.708193595,41.396112448],[-71.708106595,41.396132448],[-71.708042595,41.396107447],[-71.707985595,41.396070447],[-71.707929595,41.396022447],[-71.707874595,41.395984447],[-71.707800594,41.396004447],[-71.707733595,41.396043447],[-71.707652595,41.396065447],[-71.707580595,41.396055448],[-71.707543595,41.395998448],[-71.707523595,41.395937448],[-71.707493594,41.395879448],[-71.707412594,41.395856447],[-71.707314594,41.395858448],[-71.707215594,41.395866447],[-71.707129595,41.395866447],[-71.707052595,41.395835447],[-71.706984594,41.395799447],[-71.706897595,41.395771447],[-71.706814594,41.395752447],[-71.706743595,41.395741448],[-71.706692594,41.395695447],[-71.706620594,41.395576447],[-71.706575594,41.395529448],[-71.706478594,41.395496447],[-71.706398594,41.395484447],[-71.706330594,41.395460447],[-71.706287594,41.395406447],[-71.706260594,41.395355447],[-71.706228594,41.395277447],[-71.706176594,41.395227447],[-71.706104594,41.395193447],[-71.706043594,41.395145447],[-71.706030594,41.395090447],[-71.706007594,41.395030447],[-71.705952594,41.395015447],[-71.705869594,41.395017447],[-71.705783594,41.395014447],[-71.705699594,41.394988447],[-71.705632594,41.394953447],[-71.705573594,41.394911447],[-71.705510594,41.394876447],[-71.705423594,41.394846447],[-71.705354594,41.394827447],[-71.705276594,41.394788447],[-71.705263594,41.394748447],[-71.705256594,41.394727447],[-71.705262594,41.394671447],[-71.705213594,41.394612447],[-71.705188593,41.394560447],[-71.705181594,41.394495447],[-71.705163594,41.394423447],[-71.705121594,41.394367447],[-71.705058594,41.394320447],[-71.704976593,41.394291447],[-71.704911594,41.394263447],[-71.704865594,41.394207447],[-71.704806594,41.394207447],[-71.704718594,41.394219447],[-71.704688594,41.394163447],[-71.704682593,41.394100447],[-71.704572594,41.394012447],[-71.704557594,41.393964447],[-71.704557594,41.393900447],[-71.704431593,41.393815447],[-71.704372593,41.393765447],[-71.704305594,41.393721447],[-71.704235593,41.393662447],[-71.704199593,41.393614447],[-71.704142593,41.393552447],[-71.704054594,41.393524447],[-71.704017593,41.393483446],[-71.704033594,41.393421447],[-71.704005593,41.393370447],[-71.703930593,41.393339447],[-71.703780594,41.393289446],[-71.703731593,41.393251446],[-71.703714593,41.393197447],[-71.703624594,41.393023447],[-71.703610593,41.392970447],[-71.703640593,41.392902447],[-71.703664594,41.392826447],[-71.703667593,41.392769447],[-71.703653593,41.392711447],[-71.703614593,41.392664446],[-71.703533593,41.392620447],[-71.703472593,41.392581447],[-71.703423593,41.392520447],[-71.703242593,41.392261447],[-71.703150593,41.392242447],[-71.703069593,41.392251447],[-71.703005593,41.392224447],[-71.702920593,41.392121446],[-71.702834593,41.392116447],[-71.702756593,41.392094447],[-71.702623593,41.392014447],[-71.702463593,41.392032447],[-71.702375593,41.392022446],[-71.702302592,41.391984446],[-71.702274593,41.391954447],[-71.702253593,41.391932447],[-71.702218593,41.391859447],[-71.702191593,41.391783447],[-71.702153593,41.391711446],[-71.702071592,41.391606447],[-71.702021593,41.391552446],[-71.701974592,41.391509447],[-71.701935592,41.391461446],[-71.701931592,41.391395447],[-71.701957592,41.391331447],[-71.701985593,41.391279446],[-71.702022593,41.391226446],[-71.702065593,41.391177447],[-71.702113592,41.391106446],[-71.702094593,41.391041447],[-71.702013592,41.390994446],[-71.701941593,41.390970446],[-71.701905593,41.390921447],[-71.701912592,41.390868447],[-71.701917592,41.390817446],[-71.701950592,41.390758446],[-71.701999593,41.390717446],[-71.702061593,41.390676446],[-71.702092592,41.390618446],[-71.702088592,41.390496447],[-71.702101593,41.390434446],[-71.702145592,41.390374446],[-71.702177593,41.390385446],[-71.702210592,41.390436447],[-71.702258593,41.390454447],[-71.702319593,41.390422446],[-71.702338593,41.390394446],[-71.702354593,41.390371446],[-71.702425593,41.390193446],[-71.702462592,41.390131446],[-71.702541593,41.390018446],[-71.702661593,41.389767446],[-71.702700593,41.389701446],[-71.702798593,41.389568446],[-71.702927592,41.389311446],[-71.702981593,41.389177446],[-71.703073593,41.388979446],[-71.703089593,41.388925446],[-71.703108593,41.388809446],[-71.703116593,41.388599446],[-71.703130593,41.388427446],[-71.703133593,41.388212446],[-71.703142592,41.388156446],[-71.703153593,41.388100446],[-71.703157593,41.388024445],[-71.703197593,41.387747446],[-71.703226593,41.387613445],[-71.703241593,41.387494446],[-71.703242593,41.387347446],[-71.703327593,41.387163446],[-71.703356592,41.387088445],[-71.703398593,41.386888446],[-71.703481593,41.386560445],[-71.703490592,41.386484445],[-71.703491592,41.386430445],[-71.703485593,41.386354445],[-71.703460593,41.386291445],[-71.703469593,41.386222446],[-71.703470593,41.386146446],[-71.703424593,41.386077445],[-71.703370593,41.386023445],[-71.703327593,41.385970446],[-71.703290593,41.385905445],[-71.703181592,41.385623446],[-71.703150593,41.385418445],[-71.703133593,41.385343445],[-71.703120592,41.385228445],[-71.703122592,41.385152446],[-71.703145592,41.385076446],[-71.703153593,41.385021445],[-71.703158593,41.384893445],[-71.703177593,41.384828445],[-71.703207593,41.384757445],[-71.703211593,41.384681445],[-71.703198592,41.384620445],[-71.703225593,41.384556445],[-71.703328593,41.384381445],[-71.703372593,41.384317445],[-71.703435592,41.384257445],[-71.703489593,41.384217445],[-71.703541593,41.384169445],[-71.703585593,41.384115445],[-71.703667592,41.383991445],[-71.703696593,41.383940445],[-71.703743593,41.383827445],[-71.703775593,41.383668445],[-71.703812593,41.383549445],[-71.703829593,41.383467445],[-71.703840593,41.383271445],[-71.703843592,41.383109444],[-71.703857593,41.382907445],[-71.703893593,41.382836444],[-71.703971593,41.382731445],[-71.704147593,41.382529445],[-71.704185593,41.382478445],[-71.704243593,41.382364445],[-71.704273593,41.382315445],[-71.704356593,41.382214444],[-71.704397593,41.382156444],[-71.704459593,41.382045445],[-71.704494593,41.381971445],[-71.704507593,41.381917445],[-71.704531593,41.381642445],[-71.704549593,41.381513444],[-71.704578593,41.381461445],[-71.704619593,41.381403445],[-71.704704593,41.381305445],[-71.704756593,41.381256444],[-71.704930593,41.381131445],[-71.705028593,41.381036445],[-71.705070593,41.380981445],[-71.705135593,41.380881445],[-71.705220593,41.380708445],[-71.705313593,41.380546444],[-71.705356593,41.380429444],[-71.705367593,41.380375445],[-71.705372593,41.380302444],[-71.705361593,41.380238445],[-71.705321593,41.380173444],[-71.705277593,41.380117444],[-71.705221593,41.380066444],[-71.705052593,41.379888445],[-71.704975593,41.379865444],[-71.704893593,41.379871444],[-71.704728593,41.379903444],[-71.704646593,41.379931444],[-71.704564592,41.379954444],[-71.704427592,41.380008444],[-71.704361593,41.380042444],[-71.704297593,41.380086444],[-71.704185593,41.380202444],[-71.704143593,41.380184444],[-71.704116592,41.380130444],[-71.704075592,41.380148444],[-71.704026593,41.380177444],[-71.703868592,41.380199445],[-71.703800593,41.380229444],[-71.703729592,41.380285444],[-71.703665593,41.380347444],[-71.703610592,41.380386444],[-71.703538592,41.380424444],[-71.703269593,41.380667445],[-71.703199592,41.380697444],[-71.703120592,41.380706445],[-71.702950592,41.380711444],[-71.702853592,41.380721445],[-71.702777592,41.380706445],[-71.702539592,41.380619444],[-71.702371592,41.380576444],[-71.702283592,41.380564444],[-71.702193592,41.380562444],[-71.701915592,41.380597444],[-71.701835592,41.380611445],[-71.701754592,41.380631444],[-71.701679592,41.380662445],[-71.701548592,41.380726445],[-71.701479592,41.380747445],[-71.701203592,41.380798445],[-71.701039592,41.380850444],[-71.700936591,41.380866444],[-71.700757592,41.380880445],[-71.700591591,41.380876445],[-71.700512591,41.380879445],[-71.700429591,41.380888444],[-71.700352591,41.380917445],[-71.700295591,41.380955445],[-71.700225592,41.380980445],[-71.700057592,41.381012445],[-71.699897592,41.381053445],[-71.699674591,41.381129445],[-71.699539591,41.381211445],[-71.699360591,41.381342445],[-71.699311591,41.381385445],[-71.699209591,41.381492444],[-71.699149591,41.381525445],[-71.699026591,41.381609444],[-71.698951591,41.381634445],[-71.698795591,41.381652445],[-71.698711591,41.381668444],[-71.698631591,41.381669444],[-71.698548591,41.381650444],[-71.698290591,41.381626444],[-71.697771591,41.381605445],[-71.69771959,41.381584445],[-71.69764259,41.381565445],[-71.69746959,41.381559445],[-71.69729059,41.381543445],[-71.697093591,41.381540445],[-71.696989591,41.381545445],[-71.69696259,41.381585445],[-71.696894591,41.381590444],[-71.696719591,41.381583445],[-71.69663059,41.381569444],[-71.69654159,41.381546445],[-71.69644559,41.381513445],[-71.69629859,41.381451444],[-71.69615159,41.381408445],[-71.69607059,41.381378445],[-71.69590159,41.381288445],[-71.69582959,41.381276444],[-71.69574859,41.381275444],[-71.69566559,41.381286445],[-71.69557959,41.381310445],[-71.69550059,41.381340445],[-71.695436589,41.381378445],[-71.69538359,41.381434444],[-71.69534759,41.381495445],[-71.69533159,41.381549444],[-71.69529459,41.381584445],[-71.69521659,41.381574445],[-71.69515059,41.381551445],[-71.69509259,41.381518445],[-71.69503559,41.381464445],[-71.69490759,41.381370445],[-71.69484959,41.381334444],[-71.69468259,41.381217444],[-71.69462459,41.381181444],[-71.694560589,41.381153445],[-71.69449159,41.381129445],[-71.694134589,41.381032445],[-71.694037589,41.381016445],[-71.693954589,41.381023444],[-71.693806589,41.381063444],[-71.693725589,41.381078445],[-71.693652589,41.381083444],[-71.693573589,41.381077445],[-71.693500589,41.381065445],[-71.693271589,41.381016445],[-71.693191589,41.380994445],[-71.693031589,41.380925444],[-71.692944589,41.380892445],[-71.692791589,41.380847444],[-71.692627589,41.380769444],[-71.692559589,41.380748444],[-71.692466589,41.380726445],[-71.692311589,41.380659445],[-71.692214589,41.380637445],[-71.692119589,41.380631444],[-71.692038589,41.380607445],[-71.691959589,41.380568445],[-71.691872588,41.380534444],[-71.691783589,41.380523445],[-71.691696588,41.380520445],[-71.691551589,41.380508445],[-71.691478588,41.380498444],[-71.691395589,41.380477444],[-71.691315589,41.380450445],[-71.691236589,41.380416445],[-71.691059588,41.380358444],[-71.690994588,41.380329445],[-71.690936588,41.380288445],[-71.690885588,41.380237445],[-71.690862588,41.380174445],[-71.690817588,41.380112445],[-71.690756588,41.380050444],[-71.690775588,41.379997445],[-71.690855588,41.379901445],[-71.690859588,41.379827445],[-71.690856588,41.379764445],[-71.690867589,41.379699444],[-71.690883588,41.379640444],[-71.690892588,41.379577445],[-71.690890589,41.379240445],[-71.690882588,41.379110444],[-71.690894588,41.378936444],[-71.690889589,41.378873445],[-71.690876588,41.378813445],[-71.690840588,41.378705444],[-71.690811589,41.378638445],[-71.690765588,41.378548444],[-71.690691588,41.378426445],[-71.690591588,41.378316444],[-71.690556588,41.378264444],[-71.690454588,41.378170445],[-71.690393588,41.378121444],[-71.690360588,41.378060444],[-71.690333588,41.377993444],[-71.690286588,41.377929444],[-71.690273588,41.377809444],[-71.690132588,41.377645445],[-71.690091588,41.377591444],[-71.690038588,41.377532444],[-71.689933588,41.377445444],[-71.689866588,41.377403444],[-71.689823588,41.377407444],[-71.689796588,41.377390444],[-71.689795588,41.377338444],[-71.689846588,41.377294444],[-71.689849588,41.377239444],[-71.689810588,41.377032444],[-71.689810588,41.376912444],[-71.689825588,41.376729444],[-71.689852588,41.376606444],[-71.689869588,41.376460444],[-71.689869588,41.376149444],[-71.689805588,41.376012444],[-71.689799588,41.375957444],[-71.689830588,41.375896444],[-71.689955588,41.375721444],[-71.689994588,41.375675444],[-71.690088588,41.375589444],[-71.690130588,41.375544443],[-71.690163588,41.375493444],[-71.690214588,41.375361444],[-71.690231588,41.375289443],[-71.690241588,41.375210443],[-71.690241588,41.375155443],[-71.690230587,41.375083444],[-71.690210587,41.375023444],[-71.690131588,41.374897444],[-71.690079588,41.374838444],[-71.690021588,41.374788444],[-71.689856588,41.374663444],[-71.689787588,41.374619444],[-71.689713588,41.374579444],[-71.689659588,41.374560444],[-71.689494587,41.374502444],[-71.689345588,41.374441444],[-71.689261587,41.374416443],[-71.689105587,41.374386444],[-71.688938588,41.374347444],[-71.688850587,41.374334443],[-71.688695587,41.374322444],[-71.688608588,41.374319443],[-71.688523587,41.374311444],[-71.688439587,41.374312444],[-71.688366587,41.374319443],[-71.688280587,41.374337443],[-71.688193587,41.374345444],[-71.688106587,41.374361444],[-71.688036587,41.374386444],[-71.687966588,41.374417443],[-71.687890587,41.374442444],[-71.687822587,41.374477444],[-71.687746587,41.374508443],[-71.687578587,41.374551443],[-71.687510587,41.374575444],[-71.687440586,41.374606443],[-71.687382586,41.374643444],[-71.687321587,41.374694444],[-71.687223587,41.374804443],[-71.687189587,41.374863443],[-71.687125587,41.374891444],[-71.687043587,41.374902443],[-71.686881587,41.374916444],[-71.686820586,41.374947444],[-71.686761586,41.374989444],[-71.686700586,41.375020444],[-71.686673587,41.375074443],[-71.686620587,41.375121444],[-71.686477587,41.375207444],[-71.686219586,41.375371444],[-71.686172587,41.375413444],[-71.686133587,41.375461444],[-71.686112587,41.375520444],[-71.686087587,41.375712444],[-71.686086587,41.375782444],[-71.686058586,41.375913444],[-71.686032587,41.375965444],[-71.685994587,41.376024444],[-71.685940586,41.376082444],[-71.685870586,41.376128444],[-71.685662587,41.376229444],[-71.685599587,41.376274444],[-71.685572586,41.376331444],[-71.685613586,41.376383444],[-71.685683587,41.376424444],[-71.685622587,41.376447444],[-71.685465587,41.376474444],[-71.685404586,41.376519444],[-71.685361586,41.376572444],[-71.685307586,41.376608444],[-71.685237586,41.376638444],[-71.685153586,41.376665444],[-71.685071586,41.376661444],[-71.685019587,41.376674444],[-71.684946586,41.376712444],[-71.684725586,41.376803444],[-71.684578586,41.376848444],[-71.684439586,41.376901444],[-71.684372586,41.376934444],[-71.684303586,41.376962445],[-71.684061586,41.377009444],[-71.684028586,41.377021445],[-71.683976586,41.377037444],[-71.683899586,41.377038444],[-71.683767586,41.376974444],[-71.683731586,41.376933444],[-71.683698585,41.376882444],[-71.683558586,41.376824444],[-71.683475586,41.376806445],[-71.683391586,41.376807445],[-71.683308585,41.376822444],[-71.683236586,41.376840444],[-71.683148586,41.376852444],[-71.683069586,41.376851444],[-71.682990586,41.376839444],[-71.682913586,41.376846445],[-71.682824585,41.376846445],[-71.682730585,41.376860444],[-71.682654586,41.376888444],[-71.682581586,41.376886445],[-71.682512585,41.376921445],[-71.682450585,41.376967444],[-71.682189586,41.377018445],[-71.681951585,41.377094444],[-71.681537585,41.377259444],[-71.681413586,41.377318444],[-71.681357585,41.377373445],[-71.681292585,41.377398444],[-71.681223585,41.377442444],[-71.681107585,41.377526445],[-71.681061585,41.377571444],[-71.680893585,41.377703445],[-71.680840585,41.377749444],[-71.680660585,41.377884444],[-71.680463585,41.378074445],[-71.680315585,41.378231445],[-71.680153585,41.378450444],[-71.680082585,41.378559445],[-71.679943585,41.378739445],[-71.679874584,41.378837444],[-71.679803585,41.378953445],[-71.679750585,41.379016444],[-71.679701584,41.379087445],[-71.679659584,41.379161445],[-71.679519585,41.379358445],[-71.679438585,41.379494445],[-71.679349584,41.379616445],[-71.679162585,41.379898445],[-71.679075584,41.380060445],[-71.679045585,41.380126445],[-71.678982584,41.380242445],[-71.678939584,41.380365445],[-71.678942584,41.380416445],[-71.679087585,41.380555445],[-71.679128585,41.380607445],[-71.679237584,41.380775445],[-71.679264585,41.380825446],[-71.679303585,41.380932445],[-71.679367584,41.381047445],[-71.679376585,41.381130445],[-71.679378585,41.381200445],[-71.679388584,41.381247445],[-71.679409584,41.381298445],[-71.679452585,41.381328445],[-71.679475585,41.381365445],[-71.679493585,41.381417445],[-71.679533585,41.381467446],[-71.679569585,41.381484445],[-71.679604584,41.381485446],[-71.679672585,41.381475445],[-71.679733585,41.381459445],[-71.679735585,41.381479445],[-71.679707585,41.381513445],[-71.679694585,41.381553445],[-71.679701584,41.381609445],[-71.679720584,41.381661446],[-71.679736585,41.381679446],[-71.679776584,41.381683446],[-71.679877585,41.381674445],[-71.679894584,41.381697445],[-71.679826585,41.381731445],[-71.679780585,41.381760446],[-71.679758584,41.381796446],[-71.679749585,41.381842445],[-71.679770585,41.381899445],[-71.679812585,41.381977445],[-71.679839585,41.382051446],[-71.679910585,41.382342446],[-71.679932584,41.382379446],[-71.679948585,41.382406445],[-71.680008585,41.382448445],[-71.680032585,41.382454445],[-71.680030585,41.382531445],[-71.680035585,41.382608445],[-71.680059585,41.382681445],[-71.680061585,41.382781445],[-71.680069585,41.382856445],[-71.680098585,41.382921445],[-71.680148585,41.382980445],[-71.680196585,41.383022446],[-71.680301585,41.383040446],[-71.680321585,41.383094445],[-71.680330585,41.383184446],[-71.680348585,41.383241446],[-71.680405585,41.383312446],[-71.680442585,41.383345445],[-71.680467585,41.383366445],[-71.680585585,41.383407445],[-71.680632586,41.383467446],[-71.680690586,41.383505446],[-71.680741585,41.383517446],[-71.680852585,41.383593446],[-71.680913585,41.383611446],[-71.680958585,41.383617445],[-71.680973585,41.383627446],[-71.680984586,41.383706446],[-71.681073585,41.383819446],[-71.681104585,41.383878446],[-71.681133585,41.383959446],[-71.681168585,41.384039446],[-71.681210585,41.384104445],[-71.681258585,41.384163445],[-71.681358585,41.384245446],[-71.681464586,41.384316446],[-71.681510586,41.384336446],[-71.681561586,41.384343446],[-71.681599586,41.384344446],[-71.681644586,41.384334446],[-71.681770585,41.384283446],[-71.681815586,41.384254446],[-71.681847585,41.384239445],[-71.681849585,41.384255446],[-71.681812586,41.384295446],[-71.681687585,41.384412446],[-71.681685586,41.384457445],[-71.681728585,41.384512445],[-71.681740586,41.384573445],[-71.681745586,41.384629445],[-71.681790585,41.384682446],[-71.681845585,41.384731446],[-71.681912586,41.384754446],[-71.682002585,41.384842446],[-71.682042585,41.384890446],[-71.682150586,41.384985446],[-71.682183586,41.385036446],[-71.682289586,41.385130446],[-71.682320586,41.385194446],[-71.682313585,41.385252446],[-71.682446586,41.385491446],[-71.682525586,41.385696446],[-71.682641586,41.385822446],[-71.682708586,41.385862446],[-71.682778586,41.385882446],[-71.682908586,41.385885446],[-71.682938586,41.385889446],[-71.682934586,41.385955446],[-71.682953586,41.386021446],[-71.682999586,41.386111446],[-71.683060586,41.386211446],[-71.683163586,41.386314446],[-71.683246587,41.386387446],[-71.683362587,41.386447446],[-71.683482586,41.386461447],[-71.683642586,41.386396446],[-71.683689586,41.386404446],[-71.683761586,41.386436446],[-71.683890587,41.386502446],[-71.683963587,41.386521446],[-71.684048586,41.386512446],[-71.684136587,41.386497446],[-71.684214587,41.386492446],[-71.684310587,41.386492446],[-71.684506587,41.386515446],[-71.684688587,41.386526446],[-71.684873587,41.386545446],[-71.685045587,41.386584446],[-71.685169587,41.386561446],[-71.685210587,41.386583446],[-71.684350587,41.387507446],[-71.683376586,41.387631447],[-71.683165586,41.387606446],[-71.682770586,41.387593447],[-71.683006586,41.388050446],[-71.682838586,41.388081446],[-71.682503586,41.388134447],[-71.681931586,41.388203446],[-71.681824585,41.388230447],[-71.681709585,41.388253447],[-71.681335586,41.388340446],[-71.681061586,41.388424447],[-71.680786586,41.388523447],[-71.680244585,41.388691446],[-71.680107586,41.388737447],[-71.679916585,41.388794447],[-71.679710585,41.388832447],[-71.679558585,41.388832447],[-71.679489585,41.388825446],[-71.679405585,41.388806446],[-71.679306585,41.388775447],[-71.679085585,41.388691447],[-71.679016585,41.388657447],[-71.678940585,41.388626447],[-71.678711585,41.388508447],[-71.678596585,41.388462447],[-71.678406585,41.388405447],[-71.678337584,41.388390447],[-71.678276584,41.388382447],[-71.678215585,41.388379446],[-71.678154585,41.388371447],[-71.678085584,41.388367447],[-71.677879585,41.388367447],[-71.677666585,41.388390447],[-71.677437584,41.388436446],[-71.677368584,41.388455446],[-71.677208584,41.388512446],[-71.677025585,41.388588446],[-71.676781584,41.388722447],[-71.676514584,41.388882446],[-71.676834584,41.389042447],[-71.676845584,41.389048447],[-71.676910584,41.389088447],[-71.677116584,41.389225447],[-71.677345584,41.389393447],[-71.677399584,41.389424447],[-71.677544585,41.389553447],[-71.677790584,41.389756447],[-71.677849584,41.389805447],[-71.678078585,41.390011447],[-71.678200584,41.390114447],[-71.678253585,41.390168447],[-71.678314584,41.390217447],[-71.678444585,41.390343447],[-71.678566585,41.390492447],[-71.678658585,41.390618447],[-71.678795585,41.390858447],[-71.678871585,41.390976447],[-71.679070585,41.391308447],[-71.679161585,41.391476447],[-71.679245585,41.391613447],[-71.679330585,41.391770447],[-71.679398585,41.391896447],[-71.679451585,41.392010447],[-71.679489585,41.392080447],[-71.679573585,41.392235447],[-71.679710585,41.392525448],[-71.679825585,41.392712447],[-71.679924586,41.392838448],[-71.680031585,41.392956447],[-71.680115585,41.393059447],[-71.679948586,41.393102448],[-71.678578585,41.393454448],[-71.675961584,41.394091448],[-71.675461584,41.393886448],[-71.675370584,41.393846448],[-71.675251584,41.393840448],[-71.674249584,41.393527448],[-71.673998584,41.393370448],[-71.673984583,41.393172447],[-71.673817583,41.393015447],[-71.673762584,41.392911448],[-71.673762584,41.392744447],[-71.673692583,41.392660448],[-71.673567583,41.392671448],[-71.673372583,41.392566447],[-71.673372583,41.392368448],[-71.673469583,41.392242447],[-71.673414584,41.392127448],[-71.673427583,41.391887447],[-71.673636583,41.391574447],[-71.673748584,41.391470448],[-71.673748584,41.391348447],[-71.673748584,41.391261447],[-71.673687584,41.391166447],[-71.669055582,41.390650448],[-71.669195582,41.390429447],[-71.669406582,41.390069448],[-71.670442582,41.388190447],[-71.670418582,41.388177447],[-71.670376582,41.388044446],[-71.670374582,41.387967447],[-71.670327582,41.387893447],[-71.670286582,41.387874447],[-71.670226582,41.387848446],[-71.669973582,41.387770446],[-71.669876582,41.387713446],[-71.669806582,41.387650447],[-71.669721582,41.387593447],[-71.669646582,41.387512447],[-71.669594582,41.387382446],[-71.669526582,41.387317447],[-71.669410582,41.387271447],[-71.669343581,41.387258447],[-71.669274582,41.387216447],[-71.669225582,41.387208446],[-71.669146582,41.387207446],[-71.669124582,41.387200447],[-71.669016581,41.387154447],[-71.668936581,41.387088446],[-71.668838581,41.387028446],[-71.668715582,41.387078447],[-71.668534581,41.387137447],[-71.668433581,41.387174447],[-71.668296581,41.387236447],[-71.668090582,41.387293447],[-71.667952581,41.387318447],[-71.667770581,41.387385447],[-71.667661581,41.387429447],[-71.667581581,41.387450447],[-71.667506581,41.387468447],[-71.667505581,41.387471447],[-71.667461581,41.387550447],[-71.667308581,41.387685447],[-71.667275581,41.387701447],[-71.667162581,41.387618447],[-71.66375658,41.389846447],[-71.66378658,41.389896447],[-71.66378758,41.389961447],[-71.66376058,41.390024448],[-71.66370858,41.390066448],[-71.66362158,41.390063448],[-71.663453579,41.389984448],[-71.66335958,41.389986448],[-71.66328358,41.390028448],[-71.66321558,41.390151447],[-71.66316758,41.390209447],[-71.66317158,41.390276448],[-71.66323058,41.390343447],[-71.66324658,41.390414448],[-71.66312958,41.390575448],[-71.66306958,41.390680447],[-71.66303958,41.390743448],[-71.66303958,41.390779447],[-71.66303758,41.390889447],[-71.66299358,41.391038448],[-71.66304358,41.391105447],[-71.66315458,41.391193448],[-71.66319458,41.391216448],[-71.663219579,41.391231448],[-71.66329258,41.391261447],[-71.66337558,41.391284447],[-71.66345458,41.391294448],[-71.66352658,41.391295448],[-71.66361358,41.391306448],[-71.66367858,41.391349448],[-71.66362958,41.391436447],[-71.66373758,41.391539448],[-71.66377858,41.391589448],[-71.66385558,41.391643448],[-71.66392458,41.391664448],[-71.66399958,41.391677448],[-71.66407758,41.391681448],[-71.66415558,41.391696448],[-71.66418858,41.391746448],[-71.66420358,41.391822448],[-71.66425658,41.391879448],[-71.66432258,41.391911448],[-71.66435858,41.391935448],[-71.66433858,41.391985448],[-71.66425958,41.392014448],[-71.66420458,41.392064448],[-71.66421458,41.392134448],[-71.66427558,41.392202448],[-71.66433258,41.392240448],[-71.66437158,41.392292448],[-71.664326581,41.392345448],[-71.664252581,41.392397448],[-71.66420758,41.392458448],[-71.66418758,41.392525448],[-71.66418258,41.392707448],[-71.66412258,41.392819448],[-71.66411058,41.392880448],[-71.66408958,41.392890448],[-71.66402058,41.392860448],[-71.66394758,41.392870448],[-71.66383458,41.392967448],[-71.66377658,41.393008448],[-71.66371058,41.393048448],[-71.66363858,41.393083448],[-71.66338258,41.393175448],[-71.66329058,41.393214448],[-71.66320958,41.393262448],[-71.66315558,41.393312448],[-71.66312058,41.393310448],[-71.66311958,41.393239448],[-71.66310958,41.393172448],[-71.66311058,41.393128448],[-71.66318258,41.393106448],[-71.66320558,41.393067448],[-71.66315658,41.393001448],[-71.66301758,41.392909448],[-71.66294358,41.392851448],[-71.66288658,41.392813448],[-71.66282458,41.392759448],[-71.66277858,41.392708448],[-71.66271558,41.392699448],[-71.662636579,41.392732448],[-71.662559579,41.392752448],[-71.66248458,41.392781448],[-71.66243258,41.392834448],[-71.66239558,41.392883448],[-71.66235258,41.392902448],[-71.66228958,41.392877448],[-71.66223458,41.392841448],[-71.66218558,41.392802448],[-71.66207958,41.392693448],[-71.662017579,41.392658448],[-71.66204258,41.392586448],[-71.662050579,41.392515448],[-71.66202258,41.392458448],[-71.66196458,41.392400448],[-71.66193058,41.392350448],[-71.66186758,41.392220448],[-71.661859579,41.392146448],[-71.661859579,41.392006448],[-71.661902579,41.391948448],[-71.661896579,41.391891448],[-71.66187158,41.391761448],[-71.661840579,41.391698448],[-71.66178958,41.391639448],[-71.66173258,41.391586448],[-71.661667579,41.391541448],[-71.661592579,41.391526448],[-71.661494579,41.391526448],[-71.661398579,41.391532448],[-71.661321579,41.391507448],[-71.66124558,41.391493448],[-71.661241579,41.391423448],[-71.661181579,41.391281447],[-71.661162579,41.391225447],[-71.661127579,41.391155448],[-71.661088579,41.391101448],[-71.661039579,41.391050447],[-71.660969579,41.391004448],[-71.660895579,41.391008447],[-71.660802579,41.391044448],[-71.660741579,41.391092448],[-71.660741579,41.391150448],[-71.660790579,41.391289448],[-71.660803579,41.391349448],[-71.660782579,41.391371448],[-71.660731579,41.391352448],[-71.660613579,41.391235448],[-71.660609579,41.391168448],[-71.660633579,41.391096448],[-71.660542579,41.391173448],[-71.660458579,41.391243447],[-71.660458579,41.391478448],[-71.660424579,41.391611447],[-71.660355579,41.391651447],[-71.660095579,41.391640448],[-71.659962579,41.391696448],[-71.659697579,41.391928448],[-71.659608579,41.391931448],[-71.659195579,41.391931448],[-71.658942579,41.391889448],[-71.658702578,41.391852448],[-71.658404578,41.391732448],[-71.658371578,41.391681448],[-71.654729577,41.392379448],[-71.652507577,41.394103449],[-71.652423576,41.394169448],[-71.652461576,41.394315449],[-71.654037577,41.396480449],[-71.654187578,41.397350449],[-71.651932576,41.39975645],[-71.651272576,41.40045645],[-71.651192576,41.40047945],[-71.651001576,41.40054045],[-71.650742576,41.40058945],[-71.650497576,41.400601449],[-71.650223576,41.40062845],[-71.650009576,41.40066645],[-71.649742576,41.40075345],[-71.649376576,41.40084145],[-71.649147576,41.40085345],[-71.648819576,41.40085345],[-71.648338576,41.40089545],[-71.647949576,41.40105945],[-71.647469575,41.40128745],[-71.647034575,41.40152845],[-71.646851575,41.40161945],[-71.646667575,41.401673451],[-71.646309575,41.40174545],[-71.646126575,41.40181445],[-71.645905575,41.40195145],[-71.645523575,41.402157451],[-71.645180574,41.402314451],[-71.644936575,41.40238645],[-71.644630575,41.40245945],[-71.644356575,41.40249345],[-71.643578574,41.402531451],[-71.643150574,41.40253545],[-71.642036574,41.40247445],[-71.641586574,41.402466451],[-71.641212573,41.402466451],[-71.641022574,41.40247845],[-71.640923573,41.40249345],[-71.640884573,41.40251245],[-71.641991574,41.404351451],[-71.642494574,41.405106451],[-71.642906574,41.405701451],[-71.643234574,41.406155451],[-71.643562574,41.406628451],[-71.643791575,41.406948451],[-71.644501574,41.407956451],[-71.644646575,41.408135451],[-71.645020575,41.408692452],[-71.645142575,41.408905452],[-71.645218575,41.409062452],[-71.645264575,41.409199452],[-71.645309575,41.409390452],[-71.645355576,41.409703452],[-71.645363575,41.409817452],[-71.645416575,41.410294452],[-71.645470576,41.410702452],[-71.645519575,41.410973452],[-71.645554575,41.411152452],[-71.645582575,41.411254452],[-71.645673575,41.411539453],[-71.645699575,41.411621452],[-71.645744576,41.411721452],[-71.645755575,41.411743452],[-71.645889575,41.412011452],[-71.646004575,41.412177452],[-71.646095576,41.412308452],[-71.646317575,41.412590453],[-71.646488575,41.412793452],[-71.646585575,41.412909452],[-71.646606575,41.412934452],[-71.646828576,41.413216453],[-71.646973576,41.413425453],[-71.647011576,41.413479452],[-71.647225576,41.413844452],[-71.647560576,41.414414453],[-71.647835576,41.414883453],[-71.647906576,41.415022453],[-71.647947577,41.415103453],[-71.647992576,41.415196453],[-71.648064577,41.415402453],[-71.648102577,41.415589453],[-71.648125576,41.415676452],[-71.648140577,41.415726453],[-71.648186576,41.416207453],[-71.648232576,41.416996453],[-71.648249576,41.417261453],[-71.648255577,41.417351454],[-71.648304576,41.418117453],[-71.648332577,41.418483454],[-71.648359576,41.418733454],[-71.648521576,41.419747454],[-71.648605577,41.420143453],[-71.648689577,41.420647454],[-71.648712576,41.420819454],[-71.648717577,41.420881454],[-71.648727577,41.421006454],[-71.648735577,41.421227454],[-71.648697577,41.421711454],[-71.648636577,41.422009454],[-71.648529577,41.422375454],[-71.648186576,41.423363454],[-71.647987577,41.423954455],[-71.647751577,41.424614455],[-71.647474577,41.425451455],[-71.647377577,41.425743455],[-71.647339577,41.425835455],[-71.647319577,41.425903455],[-71.647011577,41.426484455],[-71.646843576,41.426743455],[-71.646698577,41.426937455],[-71.646545576,41.427113455],[-71.646294576,41.427361455],[-71.645844576,41.427723456],[-71.645386576,41.428048455],[-71.645309576,41.428109455],[-71.645058576,41.428330456],[-71.644951576,41.428425456],[-71.644309576,41.428927456],[-71.644096576,41.429093455],[-71.643478576,41.429554456],[-71.643379576,41.429634456],[-71.642937576,41.429974456],[-71.642700576,41.430180456],[-71.642502575,41.430363456],[-71.642319575,41.430546456],[-71.642159575,41.430733456],[-71.641983575,41.430970456],[-71.641762575,41.431294457],[-71.641685575,41.431450457],[-71.641502575,41.431847456],[-71.641225575,41.432578457],[-71.640999575,41.433175456],[-71.640488575,41.434555456],[-71.639809575,41.436364458],[-71.639732575,41.436547457],[-71.639603574,41.436798457],[-71.639481575,41.437008458],[-71.639379575,41.437158457],[-71.639206575,41.437416458],[-71.639145575,41.437489457],[-71.639046574,41.437615457],[-71.638763575,41.437920458],[-71.638634574,41.438065457],[-71.638405574,41.438263457],[-71.638077574,41.438511458],[-71.637779574,41.438725458],[-71.636841574,41.439289458],[-71.636070574,41.439713458],[-71.635895574,41.439824458],[-71.635551573,41.440045458],[-71.634399573,41.440724458],[-71.633888573,41.441029458],[-71.633163573,41.441449459],[-71.632355572,41.441872458],[-71.631966572,41.442082458],[-71.631622573,41.442253459],[-71.631012572,41.442566459],[-71.630157572,41.443013459],[-71.629738571,41.443222459],[-71.629318572,41.443509459],[-71.628860571,41.443734459],[-71.628311571,41.443997459],[-71.627922571,41.444203459],[-71.627823572,41.444226459],[-71.627701571,41.444157459],[-71.627686572,41.444184459],[-71.627617571,41.444268459],[-71.627502571,41.444432459],[-71.627463571,41.44447946],[-71.627245571,41.444754459],[-71.627015571,41.445049459],[-71.626892571,41.445206459],[-71.626870571,41.445233459],[-71.626973571,41.44523446],[-71.627114571,41.44525946],[-71.627354571,41.44539046],[-71.627398571,41.445464459],[-71.627393572,41.445485459],[-71.627320571,41.445594459],[-71.627215571,41.445808459],[-71.627171571,41.445911459],[-71.627166571,41.445991459],[-71.627056571,41.44619346],[-71.626982571,41.44630446],[-71.626947571,41.44638046],[-71.626940571,41.44646846],[-71.626958571,41.44657746],[-71.626996571,41.44667246],[-71.627012571,41.44670246],[-71.627057571,41.446781459],[-71.627106571,41.44688646],[-71.627168571,41.44698346],[-71.627247571,41.44707946],[-71.627419571,41.44722646],[-71.627634571,41.44746246],[-71.627696571,41.44752146],[-71.627788571,41.44757846],[-71.627873571,41.44766846],[-71.628097571,41.44782246],[-71.628222571,41.44789146],[-71.628348572,41.44796746],[-71.628440572,41.44801546],[-71.628558572,41.448029459],[-71.628710572,41.44803946],[-71.628831572,41.44800746],[-71.628905572,41.44796646],[-71.629026572,41.447876459],[-71.629131571,41.44778046],[-71.629255572,41.44752746],[-71.629287571,41.44749246],[-71.629368572,41.44743846],[-71.629500572,41.447367459],[-71.629548572,41.44733746],[-71.628983572,41.44705346],[-71.629159572,41.44704446],[-71.629322572,41.44704446],[-71.629455572,41.44708746],[-71.629584572,41.447119459],[-71.629877572,41.44697246],[-71.629959572,41.44690946],[-71.630004572,41.44686946],[-71.630124573,41.446839459],[-71.630269572,41.446828459],[-71.630432572,41.446804459],[-71.630742572,41.446782459],[-71.630777572,41.44677346],[-71.630783573,41.446788459],[-71.630843573,41.446844459],[-71.630978573,41.446887459],[-71.631109572,41.44694746],[-71.631250573,41.446983459],[-71.631358572,41.446977459],[-71.631385573,41.446920459],[-71.631360572,41.446900459],[-71.631207572,41.44689246],[-71.631084572,41.44683346],[-71.631053572,41.446805459],[-71.631066572,41.44672146],[-71.631203572,41.446672459],[-71.631451572,41.446548459],[-71.631588572,41.446589459],[-71.631669572,41.446625459],[-71.631759573,41.44669946],[-71.631778573,41.44681146],[-71.631828573,41.446921459],[-71.631914573,41.447017459],[-71.631951573,41.44707146],[-71.632027573,41.44710646],[-71.632051573,41.447139459],[-71.632053573,41.44724546],[-71.632070573,41.447372459],[-71.632143573,41.447509459],[-71.632245573,41.44764946],[-71.632294573,41.44775146],[-71.632385573,41.44809746],[-71.632395573,41.44821446],[-71.632466573,41.448383459],[-71.632605573,41.44857146],[-71.632675573,41.44864446],[-71.632754573,41.448692459],[-71.632802573,41.448713459],[-71.632518573,41.44880746],[-71.632726573,41.44892046],[-71.632726573,41.448946459],[-71.632774573,41.448985459],[-71.632835574,41.44898246],[-71.632862573,41.44892346],[-71.633005573,41.44891546],[-71.633159573,41.44889846],[-71.633212573,41.44888646],[-71.633454573,41.448771459],[-71.633585573,41.44872346],[-71.633743573,41.44867146],[-71.633872573,41.44862146],[-71.634009573,41.448595459],[-71.634148573,41.44853546],[-71.634277574,41.44848646],[-71.634439573,41.44841246],[-71.634758574,41.448246459],[-71.634816574,41.44823646],[-71.634936574,41.44816246],[-71.635042573,41.448073459],[-71.635166574,41.448014459],[-71.635293573,41.44798746],[-71.635597574,41.447952459],[-71.635821574,41.447952459],[-71.635915574,41.447938459],[-71.636079574,41.447878459],[-71.636258574,41.44783246],[-71.636391574,41.447821459],[-71.636420574,41.44781246],[-71.636439574,41.447781459],[-71.636442575,41.447740459],[-71.636434574,41.44769146],[-71.636462575,41.44767546],[-71.636555574,41.44767446],[-71.636692575,41.44765646],[-71.636816574,41.447640459],[-71.636938574,41.447639459],[-71.636986575,41.447609459],[-71.637055574,41.44759846],[-71.637200575,41.447604459],[-71.637258575,41.44753846],[-71.637298575,41.44746046],[-71.637516574,41.447298459],[-71.637591575,41.44726646],[-71.637637574,41.44724246],[-71.637737574,41.44720346],[-71.637752574,41.44718946],[-71.637829574,41.447119459]]]]}}"}, +{"type": "precinct", "typeId": 502, "areaId": 25691, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":30,\"NAME\":\"0502\",\"SHAPE_Length\":0.20985138324395,\"SHAPE_Area\":-0.0021775855751704},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.608912565,41.452235461],[-71.609162565,41.452366461],[-71.609224565,41.452402461],[-71.609311566,41.452432462],[-71.609404566,41.452417461],[-71.609462566,41.452384461],[-71.609518566,41.452322461],[-71.609523566,41.452258462],[-71.609553565,41.452203461],[-71.609617566,41.452186461],[-71.609691565,41.452212461],[-71.609728565,41.452277462],[-71.609732566,41.452388461],[-71.609750566,41.452462461],[-71.609802566,41.452525461],[-71.609852566,41.452565461],[-71.609912566,41.452596461],[-71.609982565,41.452610462],[-71.610080566,41.452595461],[-71.610158566,41.452547461],[-71.610177566,41.452470461],[-71.610175565,41.452413462],[-71.610164566,41.452354462],[-71.610141566,41.452297462],[-71.610074566,41.452175461],[-71.610046566,41.452096461],[-71.610028566,41.452024462],[-71.610007566,41.451906461],[-71.610005566,41.451849462],[-71.610011566,41.451793461],[-71.610035566,41.451740461],[-71.610076566,41.451692461],[-71.610128566,41.451652461],[-71.610221566,41.451630461],[-71.610323566,41.451657461],[-71.610400566,41.451682461],[-71.610481566,41.451699461],[-71.610658566,41.451706461],[-71.610750566,41.451727461],[-71.610829566,41.451755461],[-71.610915567,41.451757461],[-71.610985566,41.451718461],[-71.610981566,41.451651461],[-71.610924566,41.451592461],[-71.610775566,41.451534461],[-71.610728566,41.451485461],[-71.610734566,41.451418461],[-71.610801566,41.451362461],[-71.610868566,41.451330461],[-71.610945566,41.451301461],[-71.611027566,41.451282461],[-71.611102566,41.451277461],[-71.611196566,41.451292461],[-71.611274566,41.451334461],[-71.611334566,41.451400461],[-71.611348566,41.451456461],[-71.611350566,41.451518461],[-71.611360566,41.451583461],[-71.611386566,41.451645461],[-71.611423566,41.451699461],[-71.611565566,41.451843461],[-71.611709567,41.451941461],[-71.611789567,41.451985461],[-71.611872566,41.452021461],[-71.611959566,41.452044461],[-71.612132566,41.452072461],[-71.612207566,41.452074461],[-71.612286566,41.452049461],[-71.612335567,41.451993461],[-71.612326566,41.451921461],[-71.612251567,41.451773461],[-71.612232567,41.451696461],[-71.612235567,41.451620461],[-71.612271567,41.451558461],[-71.612349567,41.451508461],[-71.612492567,41.451442461],[-71.612569567,41.451400461],[-71.612634566,41.451352461],[-71.612738567,41.451255461],[-71.612800567,41.451221461],[-71.612880567,41.451210461],[-71.612971567,41.451219461],[-71.613059567,41.451236461],[-71.613215567,41.451285461],[-71.613428567,41.451338461],[-71.613526567,41.451356461],[-71.613631567,41.451348461],[-71.613724567,41.451314461],[-71.613772567,41.451260461],[-71.613807567,41.451192461],[-71.613853567,41.451131461],[-71.613915567,41.451085461],[-71.613971567,41.451050461],[-71.614040567,41.451021461],[-71.614200567,41.450982461],[-71.614280567,41.45095546],[-71.614430567,41.45087646],[-71.614488567,41.450840461],[-71.614526567,41.450803461],[-71.614544567,41.450784461],[-71.614540568,41.450725461],[-71.614497567,41.450671461],[-71.614430567,41.45062646],[-71.614350567,41.450627461],[-71.614200567,41.450698461],[-71.614133568,41.45072246],[-71.614058567,41.450733461],[-71.613812567,41.450737461],[-71.613719567,41.450732461],[-71.613632567,41.450709461],[-71.613591567,41.45066346],[-71.613587567,41.450595461],[-71.613597567,41.450534461],[-71.613644567,41.450459461],[-71.613749567,41.450355461],[-71.613805567,41.450307461],[-71.613938567,41.450211461],[-71.614010567,41.450167461],[-71.614206567,41.450065461],[-71.614290567,41.45003846],[-71.614365567,41.450056461],[-71.614442567,41.450104461],[-71.614504567,41.45013646],[-71.614578567,41.45015646],[-71.614655567,41.45015946],[-71.614727567,41.450151461],[-71.614796568,41.450133461],[-71.614857567,41.45010146],[-71.614920567,41.45004146],[-71.614929568,41.44998246],[-71.614917567,41.449919461],[-71.614913568,41.449853461],[-71.614936567,41.449792461],[-71.614993567,41.44974746],[-71.615074567,41.449734461],[-71.615358568,41.44974546],[-71.615434568,41.449744461],[-71.615606568,41.44972946],[-71.615723568,41.449681461],[-71.615768568,41.449660461],[-71.615794567,41.449600461],[-71.615911567,41.44951946],[-71.615921568,41.44949846],[-71.615969567,41.449446461],[-71.616010567,41.449389461],[-71.616116568,41.449191461],[-71.616188568,41.44904446],[-71.616234568,41.448963461],[-71.616340567,41.44880246],[-71.616439567,41.44864046],[-71.616506568,41.44856346],[-71.616583568,41.44848846],[-71.616659568,41.44840546],[-71.616794568,41.44823446],[-71.617016568,41.44784246],[-71.617111568,41.44772946],[-71.617169568,41.44769046],[-71.617245568,41.44766346],[-71.617406568,41.44761546],[-71.617493568,41.447599461],[-71.617669568,41.44759646],[-71.617749568,41.44759146],[-71.617818569,41.44757646],[-71.617896569,41.44752246],[-71.617945568,41.44745346],[-71.617943568,41.44737546],[-71.617890568,41.44725546],[-71.617878568,41.44719046],[-71.617876568,41.44696646],[-71.617901568,41.44690346],[-71.617954568,41.44685346],[-71.618024568,41.44681346],[-71.618183568,41.44674346],[-71.618273568,41.44671046],[-71.618376568,41.446683459],[-71.618937568,41.44658146],[-71.619115568,41.44654046],[-71.619207568,41.44651346],[-71.619495569,41.44641546],[-71.619681569,41.44636346],[-71.620095569,41.44627946],[-71.620409569,41.44622946],[-71.620591569,41.44618646],[-71.620675569,41.446161459],[-71.620745569,41.44612946],[-71.620798569,41.44608746],[-71.620894569,41.445987459],[-71.620946569,41.445942459],[-71.621006569,41.44591246],[-71.621080569,41.44589546],[-71.621167569,41.445909459],[-71.621187569,41.44593946],[-71.621284569,41.44600046],[-71.621363569,41.44605046],[-71.621430569,41.44606746],[-71.621497569,41.446104459],[-71.621558569,41.44615246],[-71.62163957,41.446200459],[-71.621702569,41.44622946],[-71.621768569,41.446254459],[-71.621841569,41.44626246],[-71.62187357,41.446256459],[-71.621945569,41.44624146],[-71.622013569,41.44621346],[-71.622080569,41.446176459],[-71.622214569,41.446081459],[-71.622333569,41.445982459],[-71.62239657,41.445947459],[-71.622464569,41.44592246],[-71.622564569,41.44590046],[-71.62266557,41.44591246],[-71.62282657,41.44596146],[-71.62301657,41.446026459],[-71.62331257,41.44615046],[-71.62340457,41.44618346],[-71.62392857,41.44634546],[-71.62408257,41.44640346],[-71.624156571,41.44642046],[-71.624234571,41.44642446],[-71.62428857,41.446416459],[-71.62432257,41.44666246],[-71.62460757,41.446293459],[-71.62472357,41.44626346],[-71.62480757,41.44622946],[-71.62488057,41.446201459],[-71.62500757,41.446141459],[-71.625070571,41.44610746],[-71.62517357,41.446082459],[-71.625285571,41.44601846],[-71.625397571,41.445928459],[-71.625459571,41.44589846],[-71.625559571,41.44581746],[-71.62562857,41.445714459],[-71.625714571,41.44562546],[-71.62577857,41.445580459],[-71.62589357,41.445513459],[-71.62603057,41.445480459],[-71.626097571,41.445485459],[-71.626199571,41.445474459],[-71.626269571,41.44543346],[-71.626329571,41.445423459],[-71.626540571,41.445358459],[-71.626589571,41.44533146],[-71.626737571,41.445326459],[-71.626754571,41.445308459],[-71.626761571,41.445291459],[-71.626803571,41.44523746],[-71.626870571,41.445233459],[-71.626892571,41.445206459],[-71.627015571,41.445049459],[-71.627245571,41.444754459],[-71.627463571,41.44447946],[-71.627502571,41.444432459],[-71.627617571,41.444268459],[-71.627686572,41.444184459],[-71.627701571,41.444157459],[-71.627823572,41.444226459],[-71.627922571,41.444203459],[-71.628311571,41.443997459],[-71.628860571,41.443734459],[-71.629318572,41.443509459],[-71.629738571,41.443222459],[-71.630157572,41.443013459],[-71.631012572,41.442566459],[-71.631622573,41.442253459],[-71.631966572,41.442082458],[-71.632355572,41.441872458],[-71.633163573,41.441449459],[-71.633888573,41.441029458],[-71.634399573,41.440724458],[-71.635551573,41.440045458],[-71.635895574,41.439824458],[-71.636070574,41.439713458],[-71.636841574,41.439289458],[-71.637779574,41.438725458],[-71.638077574,41.438511458],[-71.638405574,41.438263457],[-71.638634574,41.438065457],[-71.638763575,41.437920458],[-71.639046574,41.437615457],[-71.639145575,41.437489457],[-71.639206575,41.437416458],[-71.639379575,41.437158457],[-71.639481575,41.437008458],[-71.639603574,41.436798457],[-71.639732575,41.436547457],[-71.639809575,41.436364458],[-71.640488575,41.434555456],[-71.640999575,41.433175456],[-71.641225575,41.432578457],[-71.641502575,41.431847456],[-71.641685575,41.431450457],[-71.641762575,41.431294457],[-71.641983575,41.430970456],[-71.642159575,41.430733456],[-71.642319575,41.430546456],[-71.642502575,41.430363456],[-71.642700576,41.430180456],[-71.642937576,41.429974456],[-71.643379576,41.429634456],[-71.643478576,41.429554456],[-71.644096576,41.429093455],[-71.644309576,41.428927456],[-71.644951576,41.428425456],[-71.645058576,41.428330456],[-71.645309576,41.428109455],[-71.645386576,41.428048455],[-71.645844576,41.427723456],[-71.646294576,41.427361455],[-71.646545576,41.427113455],[-71.646698577,41.426937455],[-71.646843576,41.426743455],[-71.647011577,41.426484455],[-71.647319577,41.425903455],[-71.647339577,41.425835455],[-71.647377577,41.425743455],[-71.647474577,41.425451455],[-71.647751577,41.424614455],[-71.647987577,41.423954455],[-71.648186576,41.423363454],[-71.648529577,41.422375454],[-71.648636577,41.422009454],[-71.648697577,41.421711454],[-71.648735577,41.421227454],[-71.648727577,41.421006454],[-71.648717577,41.420881454],[-71.648712576,41.420819454],[-71.648689577,41.420647454],[-71.648605577,41.420143453],[-71.648521576,41.419747454],[-71.648359576,41.418733454],[-71.648332577,41.418483454],[-71.648304576,41.418117453],[-71.648255577,41.417351454],[-71.648249576,41.417261453],[-71.648232576,41.416996453],[-71.648186576,41.416207453],[-71.648140577,41.415726453],[-71.648125576,41.415676452],[-71.648102577,41.415589453],[-71.648064577,41.415402453],[-71.647992576,41.415196453],[-71.647947577,41.415103453],[-71.647906576,41.415022453],[-71.647835576,41.414883453],[-71.647560576,41.414414453],[-71.647225576,41.413844452],[-71.647011576,41.413479452],[-71.646973576,41.413425453],[-71.646828576,41.413216453],[-71.646606575,41.412934452],[-71.646585575,41.412909452],[-71.646488575,41.412793452],[-71.646317575,41.412590453],[-71.646095576,41.412308452],[-71.646004575,41.412177452],[-71.645889575,41.412011452],[-71.645755575,41.411743452],[-71.645744576,41.411721452],[-71.645699575,41.411621452],[-71.645673575,41.411539453],[-71.645582575,41.411254452],[-71.645554575,41.411152452],[-71.645519575,41.410973452],[-71.645470576,41.410702452],[-71.645416575,41.410294452],[-71.645363575,41.409817452],[-71.645355576,41.409703452],[-71.645309575,41.409390452],[-71.645264575,41.409199452],[-71.645218575,41.409062452],[-71.645142575,41.408905452],[-71.645020575,41.408692452],[-71.644646575,41.408135451],[-71.644501574,41.407956451],[-71.643791575,41.406948451],[-71.643562574,41.406628451],[-71.643234574,41.406155451],[-71.642906574,41.405701451],[-71.642494574,41.405106451],[-71.641991574,41.404351451],[-71.640884573,41.40251245],[-71.640755573,41.40228345],[-71.640587573,41.40194745],[-71.640526573,41.40177245],[-71.640465573,41.40152845],[-71.640373573,41.40107045],[-71.640251573,41.40038745],[-71.639946573,41.39879645],[-71.639877572,41.39857945],[-71.639740572,41.39824045],[-71.639580573,41.39791945],[-71.639008572,41.39683245],[-71.638916573,41.39661445],[-71.638794572,41.396244449],[-71.638611572,41.395325449],[-71.638542572,41.395016449],[-71.638458572,41.394574449],[-71.638451572,41.394417449],[-71.638504572,41.394143449],[-71.638634572,41.393902449],[-71.638824572,41.393620448],[-71.639076572,41.393231448],[-71.639320572,41.392872449],[-71.639503573,41.392586448],[-71.639641573,41.392331449],[-71.639664572,41.392296448],[-71.639801572,41.391926448],[-71.639900572,41.391568449],[-71.639901572,41.391542448],[-71.639946572,41.391378448],[-71.640007573,41.391154448],[-71.640077572,41.390916448],[-71.640090572,41.390874448],[-71.640152572,41.390710449],[-71.640175572,41.390660448],[-71.640259573,41.390492448],[-71.640572573,41.389996448],[-71.640762572,41.389717448],[-71.640968572,41.389382448],[-71.641136573,41.388966448],[-71.641167572,41.388874448],[-71.641182573,41.388848448],[-71.641251573,41.388539448],[-71.641319572,41.388127448],[-71.641464573,41.387448448],[-71.641617572,41.386685447],[-71.641716573,41.386284448],[-71.641777573,41.386044447],[-71.641754572,41.385933448],[-71.641754572,41.385857448],[-71.641724573,41.385781447],[-71.641693572,41.385739448],[-71.641853573,41.385659448],[-71.641357573,41.385548447],[-71.640877572,41.385453447],[-71.640205572,41.385296447],[-71.639641572,41.385170447],[-71.639565571,41.385155448],[-71.639444572,41.385128447],[-71.638887571,41.385004447],[-71.638405572,41.384907447],[-71.638084571,41.384835447],[-71.637741571,41.384777447],[-71.637375571,41.384739447],[-71.637154571,41.384724448],[-71.636879571,41.384713447],[-71.636808571,41.384711447],[-71.636734571,41.384710447],[-71.636673571,41.384713447],[-71.636459571,41.384716447],[-71.636246571,41.384739447],[-71.63601757,41.384758447],[-71.635696571,41.384797447],[-71.635284571,41.384880448],[-71.63489557,41.384983447],[-71.63453757,41.385106447],[-71.634452571,41.385138447],[-71.63422457,41.385224447],[-71.63396557,41.385342447],[-71.63304157,41.385807447],[-71.63300157,41.385830448],[-71.63298057,41.385842447],[-71.632258569,41.386212447],[-71.63150857,41.386597448],[-71.631492569,41.386605448],[-71.630694569,41.387007448],[-71.630600569,41.387055448],[-71.630152569,41.387294448],[-71.630127569,41.387307448],[-71.630028568,41.387360448],[-71.629570569,41.387589448],[-71.629099569,41.387806448],[-71.628670568,41.388008448],[-71.628585568,41.388045448],[-71.628555568,41.388058448],[-71.628235568,41.388192448],[-71.627556568,41.388462448],[-71.626938568,41.388714448],[-71.626751567,41.388785448],[-71.626694567,41.388806448],[-71.626350568,41.388932448],[-71.626272568,41.388962448],[-71.625714568,41.389179448],[-71.625114567,41.389408448],[-71.625046567,41.389439449],[-71.624481567,41.389664448],[-71.622955567,41.390255449],[-71.622154566,41.390561448],[-71.621422566,41.390850448],[-71.620865566,41.391060449],[-71.620781566,41.391095449],[-71.620285566,41.391285449],[-71.619713565,41.391495449],[-71.618706565,41.391896449],[-71.618661565,41.391913449],[-71.618317565,41.392044449],[-71.616638565,41.39270145],[-71.615784565,41.39302945],[-71.614929565,41.393372449],[-71.614717565,41.39345345],[-71.614135564,41.39367545],[-71.613769564,41.394731449],[-71.609073563,41.407940452],[-71.608918563,41.408232452],[-71.607606563,41.412009454],[-71.607220563,41.413359453],[-71.607170563,41.413500454],[-71.607106563,41.413685454],[-71.606612563,41.415049454],[-71.606558563,41.415196454],[-71.606314562,41.415869455],[-71.604298562,41.421399455],[-71.603800562,41.422819455],[-71.600630562,41.431806457],[-71.600324562,41.432472457],[-71.600331561,41.432485458],[-71.600211561,41.432733458],[-71.599981561,41.433430458],[-71.599835562,41.433843458],[-71.599477561,41.434859458],[-71.598194561,41.438480459],[-71.597416561,41.44048146],[-71.597268561,41.440858459],[-71.597200561,41.441051459],[-71.595232561,41.44629646],[-71.595267561,41.44633446],[-71.595305561,41.446404461],[-71.595370561,41.44645846],[-71.595465561,41.44649546],[-71.595558561,41.446503461],[-71.595719561,41.44645746],[-71.595790561,41.44648846],[-71.595813561,41.446558461],[-71.595811561,41.44663146],[-71.59584156,41.446682461],[-71.59591956,41.44672346],[-71.596012561,41.44674446],[-71.596106561,41.44674546],[-71.596179561,41.446757461],[-71.596220561,41.44680746],[-71.596237561,41.446889461],[-71.596233561,41.447061461],[-71.596210561,41.44713646],[-71.596174561,41.447203461],[-71.596112561,41.44724946],[-71.596053561,41.447280461],[-71.596042561,41.447355461],[-71.596070561,41.447419461],[-71.596128561,41.447481461],[-71.596202561,41.44752546],[-71.596287561,41.447528461],[-71.596366562,41.447495461],[-71.596437561,41.44748746],[-71.596515561,41.44752446],[-71.596578561,41.447587461],[-71.596589561,41.447649461],[-71.596567561,41.447704461],[-71.596565561,41.447760461],[-71.596582561,41.447810461],[-71.596646561,41.447852461],[-71.596732561,41.447884461],[-71.596904561,41.44793246],[-71.596982561,41.447926461],[-71.597090561,41.44783846],[-71.597151561,41.44785746],[-71.597215561,41.44791446],[-71.597261562,41.447983461],[-71.597275561,41.448048461],[-71.597272561,41.448174461],[-71.597254561,41.448230461],[-71.597217561,41.448298461],[-71.597192561,41.448359461],[-71.597189561,41.448425461],[-71.597217562,41.448460461],[-71.597295562,41.448482461],[-71.597368561,41.44849846],[-71.597500561,41.448587461],[-71.597582561,41.448626461],[-71.597683562,41.448626461],[-71.597753561,41.448608461],[-71.597824562,41.448583461],[-71.597916562,41.448559461],[-71.597992562,41.448578461],[-71.598051562,41.448631461],[-71.598039562,41.448703461],[-71.597936562,41.448878461],[-71.597932561,41.448933461],[-71.597951561,41.449008461],[-71.598017562,41.449058461],[-71.598119562,41.449084461],[-71.598193562,41.449096461],[-71.598262562,41.449114461],[-71.598391562,41.449167461],[-71.598467562,41.449213461],[-71.598474561,41.449271461],[-71.598434562,41.449335461],[-71.598368562,41.449393461],[-71.598304562,41.449423461],[-71.598228562,41.449439461],[-71.598131562,41.449452461],[-71.598088562,41.449489461],[-71.598104561,41.449550461],[-71.598171562,41.449604461],[-71.598242562,41.449628461],[-71.598324562,41.449649461],[-71.598403562,41.449659461],[-71.598474561,41.449645461],[-71.598534562,41.449614461],[-71.598590562,41.449577461],[-71.598680562,41.449549461],[-71.598769562,41.449537461],[-71.598857562,41.449516461],[-71.598946562,41.449506461],[-71.599025562,41.449527461],[-71.599145562,41.449635461],[-71.599210562,41.449684461],[-71.599303562,41.449712461],[-71.599399562,41.449704461],[-71.599468563,41.449687461],[-71.599548562,41.449700461],[-71.599575562,41.449736461],[-71.599517562,41.449849461],[-71.599519562,41.449917461],[-71.599566562,41.449960461],[-71.599660563,41.449991461],[-71.599733562,41.449999461],[-71.599836563,41.449996461],[-71.599931563,41.449971461],[-71.600018562,41.449935461],[-71.600099562,41.449912461],[-71.600176562,41.449923461],[-71.600218562,41.449969461],[-71.600201563,41.450035461],[-71.600157562,41.450096461],[-71.600173562,41.450161461],[-71.600239563,41.450190461],[-71.600336563,41.450187461],[-71.600479563,41.450140461],[-71.600633563,41.450101461],[-71.600701562,41.450078461],[-71.600759562,41.450028461],[-71.600723563,41.449968461],[-71.600659562,41.449912461],[-71.600637563,41.449849461],[-71.600651563,41.449772461],[-71.600717562,41.449712461],[-71.600807563,41.449691461],[-71.600907563,41.449702461],[-71.600979563,41.449743461],[-71.601038563,41.449813461],[-71.601072563,41.449868461],[-71.601095563,41.449926461],[-71.601128562,41.450042461],[-71.601148562,41.450094461],[-71.601191563,41.450166461],[-71.601283562,41.450286461],[-71.601346563,41.450328461],[-71.601425563,41.450301461],[-71.601518563,41.450205461],[-71.601604563,41.450169461],[-71.601693563,41.450157461],[-71.601759563,41.450116461],[-71.601805563,41.450066461],[-71.601936563,41.449896461],[-71.601986563,41.449848461],[-71.602045563,41.449806461],[-71.602113563,41.449771461],[-71.602270563,41.449710461],[-71.602419563,41.449667461],[-71.602588564,41.449642461],[-71.602611563,41.449620461],[-71.602582563,41.449569461],[-71.602557563,41.44951146],[-71.602572563,41.449447461],[-71.602634563,41.449385461],[-71.602696563,41.44935546],[-71.602799564,41.449340461],[-71.602892563,41.449361461],[-71.602981563,41.449400461],[-71.603045563,41.449435461],[-71.603106563,41.449477461],[-71.603157563,41.449528461],[-71.603187564,41.449585461],[-71.603203563,41.449646461],[-71.603236563,41.449719461],[-71.603303564,41.449760461],[-71.603381564,41.449758461],[-71.603459564,41.449731461],[-71.603538564,41.449696461],[-71.603606563,41.449649461],[-71.603667563,41.449626461],[-71.603742563,41.449639461],[-71.603791564,41.449675461],[-71.603784563,41.449733461],[-71.603701563,41.449865461],[-71.603684563,41.449931461],[-71.603694564,41.449988461],[-71.603749564,41.450010461],[-71.603832564,41.449993461],[-71.603930564,41.449981461],[-71.604119564,41.449970461],[-71.604181564,41.449951461],[-71.604200564,41.449905461],[-71.604186564,41.449844461],[-71.604198564,41.44978446],[-71.604279564,41.449749461],[-71.604357564,41.449770461],[-71.604418564,41.449821461],[-71.604419564,41.449877461],[-71.604366564,41.449932461],[-71.604298564,41.449982461],[-71.604251564,41.450032461],[-71.604252564,41.450080461],[-71.604310564,41.450123461],[-71.604404564,41.450144461],[-71.604601564,41.450114461],[-71.604691564,41.450138461],[-71.604748564,41.450175461],[-71.604757564,41.450326461],[-71.604769564,41.450397461],[-71.604801564,41.450460461],[-71.604838564,41.450519461],[-71.604887564,41.450515461],[-71.604946564,41.450484461],[-71.605017564,41.450438461],[-71.605102564,41.450403461],[-71.605182565,41.450381461],[-71.605257564,41.450378461],[-71.605315564,41.450411461],[-71.605337565,41.450470461],[-71.605341564,41.450591461],[-71.605374565,41.450625461],[-71.605444564,41.450613461],[-71.605566564,41.450539461],[-71.605646565,41.450520461],[-71.605673564,41.450563461],[-71.605665565,41.450629461],[-71.605618564,41.450692461],[-71.605564564,41.450749461],[-71.605531565,41.450809461],[-71.605533565,41.450868461],[-71.605586564,41.450926461],[-71.605657564,41.450928461],[-71.605736564,41.450892461],[-71.605805565,41.450841461],[-71.605875564,41.450807461],[-71.605954564,41.450810461],[-71.606023564,41.450843461],[-71.606055565,41.450898461],[-71.606041564,41.451024461],[-71.606047564,41.451079461],[-71.606098565,41.451122461],[-71.606232565,41.451189461],[-71.606298564,41.451212461],[-71.606371565,41.451179461],[-71.606456564,41.451073461],[-71.606500565,41.451027461],[-71.606548564,41.450986461],[-71.606605565,41.450982461],[-71.606651565,41.451017461],[-71.606645564,41.451074461],[-71.606607564,41.451127461],[-71.606562565,41.451173461],[-71.606547565,41.451225461],[-71.606592564,41.451278461],[-71.606680565,41.451276461],[-71.606794565,41.451214461],[-71.606874565,41.451243461],[-71.606936565,41.451261461],[-71.606990565,41.451235461],[-71.607022565,41.451173461],[-71.607040565,41.451104461],[-71.607079565,41.451046461],[-71.607136565,41.451013461],[-71.607217565,41.451022461],[-71.607298565,41.451068461],[-71.607342565,41.451122461],[-71.607344565,41.451192461],[-71.607360565,41.451236461],[-71.607444565,41.451232461],[-71.607501565,41.451197461],[-71.607576565,41.451166461],[-71.607639565,41.451214461],[-71.607673565,41.451276461],[-71.607692565,41.451343462],[-71.607725565,41.451404461],[-71.607794565,41.451417461],[-71.607865565,41.451370461],[-71.607960565,41.451251461],[-71.608026565,41.451202461],[-71.608115565,41.451206461],[-71.608200565,41.451249461],[-71.608238565,41.451312461],[-71.608212565,41.451384461],[-71.608097565,41.451496461],[-71.608090565,41.451549461],[-71.608170565,41.451655462],[-71.608162565,41.451718461],[-71.608135565,41.451777461],[-71.608138565,41.451833461],[-71.608191565,41.451873461],[-71.608280566,41.451871461],[-71.608363565,41.451854461],[-71.608433565,41.451878461],[-71.608493566,41.451932461],[-71.608545565,41.452001461],[-71.608609566,41.452066461],[-71.608671566,41.452105461],[-71.608821566,41.452181462],[-71.608912565,41.452235461]]]]}}"}, +{"type": "precinct", "typeId": 503, "areaId": 25688, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":27,\"NAME\":\"0503\",\"SHAPE_Length\":0.73098507318975,\"SHAPE_Area\":-0.0026697760142915},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.722381776,41.335619145],[-71.722431144,41.335662961],[-71.722507013,41.335692181],[-71.722598964,41.335721277],[-71.722689967,41.335748294],[-71.722770224,41.33577412],[-71.722828264,41.33580701],[-71.722850878,41.335853897],[-71.722841611,41.335912692],[-71.722838734,41.335976758],[-71.722840425,41.336045504],[-71.722851982,41.336115466],[-71.722892115,41.336182971],[-71.722954541,41.336247505],[-71.723028342,41.336301771],[-71.723100073,41.336345223],[-71.723167101,41.336380017],[-71.723232088,41.336403379],[-71.723317929,41.336402206],[-71.723402118,41.336370664],[-71.723463063,41.336338802],[-71.723530155,41.336303496],[-71.723601703,41.336266742],[-71.723674196,41.336231334],[-71.723750277,41.33619791],[-71.723825512,41.336165859],[-71.723899833,41.336132438],[-71.72397061,41.336101127],[-71.724037912,41.336073872],[-71.724133861,41.33604759],[-71.724235464,41.336032709],[-71.724329061,41.336019238],[-71.72440282,41.335999357],[-71.724432838,41.335948343],[-71.724462851,41.335896025],[-71.724505533,41.335848211],[-71.724569497,41.335794729],[-71.724607343,41.335734871],[-71.724647815,41.335670938],[-71.724683968,41.335613096],[-71.72473474,41.335641379],[-71.724791515,41.335694534],[-71.724883397,41.335720885],[-71.724987846,41.335713362],[-71.725059287,41.335707642],[-71.72515689,41.335712322],[-71.725230303,41.335750418],[-71.725226625,41.335819197],[-71.72518752,41.33586561],[-71.725112009,41.3359233],[-71.725038353,41.335946566],[-71.724951703,41.335950486],[-71.724867515,41.335946969],[-71.724764753,41.335951103],[-71.724701696,41.33596815],[-71.724715989,41.336003686],[-71.724817774,41.336033265],[-71.724916361,41.336041352],[-71.725017435,41.336040605],[-71.725118409,41.336037114],[-71.725216538,41.336026974],[-71.725301919,41.336006909],[-71.725375573,41.335982957],[-71.725444699,41.335957069],[-71.725508345,41.335925817],[-71.725564622,41.335887262],[-71.725605481,41.33583881],[-71.725638233,41.335789163],[-71.725695803,41.335729723],[-71.72577697,41.335684738],[-71.725857995,41.335633737],[-71.725909706,41.335591188],[-71.725946137,41.335543477],[-71.725965584,41.335463643],[-71.725964103,41.33540368],[-71.725960863,41.335344405],[-71.725947725,41.335283229],[-71.725926584,41.335224196],[-71.725902775,41.335165877],[-71.72587184,41.335109036],[-71.72583655,41.335056251],[-71.725798627,41.335005553],[-71.725763475,41.334957502],[-71.725704665,41.334894974],[-71.725633043,41.334856898],[-71.725555416,41.334828302],[-71.725472556,41.334804519],[-71.725371022,41.334785712],[-71.725294697,41.334773992],[-71.7252157,41.334761613],[-71.725131372,41.334752012],[-71.72503725,41.334744581],[-71.724938731,41.334737843],[-71.724841977,41.334732475],[-71.724751468,41.334725653],[-71.724660892,41.334716842],[-71.724565923,41.334710052],[-71.724463894,41.334706088],[-71.724362786,41.334705485],[-71.724268767,41.334701437],[-71.724186267,41.334693799],[-71.724110778,41.334678028],[-71.724037755,41.334655483],[-71.723968169,41.334626778],[-71.723900372,41.334597384],[-71.723837037,41.334568599],[-71.723771982,41.334542561],[-71.723696289,41.334520044],[-71.72361634,41.334504281],[-71.723538156,41.334489864],[-71.723461866,41.334479469],[-71.723387475,41.334473782],[-71.723315821,41.334470055],[-71.723229976,41.334469261],[-71.723146317,41.3344866],[-71.72306963,41.334501934],[-71.723012566,41.334541085],[-71.722948105,41.334573663],[-71.722879857,41.334598884],[-71.722799921,41.334622253],[-71.722716576,41.334651734],[-71.722624487,41.334688757],[-71.72256256,41.334716619],[-71.722496458,41.334757296],[-71.722431196,41.334795296],[-71.722390084,41.334796542],[-71.722371926,41.334783998],[-71.722384776,41.334725813],[-71.722446141,41.334675082],[-71.722503296,41.33463584],[-71.722562484,41.334605354],[-71.722621607,41.334573518],[-71.722670719,41.334533719],[-71.722746198,41.334511114],[-71.722821118,41.334502621],[-71.722889543,41.334484833],[-71.722870546,41.334439929],[-71.722839686,41.334386403],[-71.722800814,41.334332366],[-71.722743339,41.334286645],[-71.722686007,41.334246984],[-71.722616876,41.334200118],[-71.722536935,41.334150666],[-71.722469944,41.334117222],[-71.722394044,41.334087294],[-71.722312029,41.334061448],[-71.722232861,41.33404303],[-71.722162714,41.334027156],[-71.722067292,41.334002846],[-71.721979697,41.333969029],[-71.721895578,41.333931112],[-71.721808579,41.333885149],[-71.721747807,41.333850938],[-71.721687107,41.333820111],[-71.721601263,41.333783546],[-71.721536875,41.33374806],[-71.72146701,41.333707897],[-71.721416807,41.333667489],[-71.72136639,41.333617614],[-71.721323974,41.333565002],[-71.721284267,41.333514969],[-71.721223703,41.333452442],[-71.721182065,41.333396375],[-71.72114573,41.333338262],[-71.721111568,41.333294919],[-71.721055776,41.333243773],[-71.721009892,41.333197228],[-71.720971134,41.333149206],[-71.720947153,41.333083499],[-71.720964704,41.333033356],[-71.721032423,41.332986569],[-71.72110439,41.332930947],[-71.721172072,41.332882148],[-71.721223786,41.332840287],[-71.721301263,41.33282573],[-71.721377555,41.332837476],[-71.721468975,41.332881349],[-71.721542491,41.332924844],[-71.721612597,41.332973721],[-71.721677375,41.333026085],[-71.721749276,41.333076307],[-71.721834621,41.333127007],[-71.721929904,41.333182307],[-71.722020628,41.33323565],[-71.722104186,41.333287039],[-71.722186794,41.3333358],[-71.722266492,41.33337647],[-71.722343305,41.333407769],[-71.722417244,41.333432326],[-71.722507607,41.33346815],[-71.722577651,41.333516386],[-71.722616416,41.333565734],[-71.722666939,41.333619611],[-71.722733578,41.333674646],[-71.72280664,41.333735638],[-71.72289041,41.333795808],[-71.722968664,41.333848648],[-71.723030459,41.333888918],[-71.723071254,41.333910588],[-71.723153479,41.333944461],[-71.723244582,41.333974885],[-71.723317507,41.333995441],[-71.723394918,41.334014571],[-71.723471381,41.334031736],[-71.723541561,41.334048249],[-71.723640356,41.33406505],[-71.723742448,41.334069723],[-71.723839173,41.334075756],[-71.723923255,41.334075935],[-71.724000947,41.334070798],[-71.724040299,41.334069578],[-71.724115744,41.334046263],[-71.724180308,41.334017709],[-71.724245358,41.333971636],[-71.724289482,41.333911034],[-71.724329038,41.33384573],[-71.724355962,41.333777958],[-71.72435631,41.333720003],[-71.724334787,41.333681851],[-71.724248596,41.333668228],[-71.724165459,41.333669373],[-71.724087662,41.333670462],[-71.724065089,41.333662021],[-71.724143547,41.333615075],[-71.724230928,41.333568684],[-71.724285516,41.333533539],[-71.724341895,41.333498346],[-71.724403749,41.333467144],[-71.724486989,41.333434323],[-71.724554357,41.333409765],[-71.724624529,41.333388565],[-71.724708295,41.3333766],[-71.724758076,41.333328726],[-71.724900606,41.333251785],[-71.724973283,41.333218046],[-71.725049617,41.333180206],[-71.725129416,41.333196997],[-71.725213729,41.333229057],[-71.725288962,41.333241695],[-71.725366971,41.333249501],[-71.725472549,41.333244949],[-71.725549744,41.33322785],[-71.725640732,41.333207294],[-71.7257317,41.333189528],[-71.725808846,41.333175883],[-71.725886003,41.333165692],[-71.725965919,41.333154831],[-71.726049531,41.333141905],[-71.726125784,41.333124809],[-71.726193782,41.333106973],[-71.726266394,41.333089883],[-71.726346324,41.333074151],[-71.726428999,41.333062622],[-71.726525363,41.333069774],[-71.726605139,41.333088645],[-71.726652771,41.333112977],[-71.726594744,41.333153664],[-71.726553164,41.333220665],[-71.726474144,41.333236373],[-71.726361191,41.333240277],[-71.726247286,41.333258637],[-71.726134254,41.333283949],[-71.726022161,41.333308594],[-71.725930234,41.333329839],[-71.725856767,41.333345535],[-71.725774965,41.333364015],[-71.725691266,41.333395649],[-71.72560682,41.333395403],[-71.725511332,41.333395864],[-71.725414929,41.333403944],[-71.725307474,41.333409872],[-71.725194511,41.33341995],[-71.725092588,41.333428703],[-71.724996121,41.333444375],[-71.724891317,41.333480121],[-71.724798387,41.333527599],[-71.724720112,41.333583442],[-71.724651892,41.333642764],[-71.724589224,41.333702098],[-71.724554044,41.333769132],[-71.724524379,41.333834097],[-71.724492911,41.333886623],[-71.724454983,41.333948791],[-71.724419816,41.334019964],[-71.724382867,41.334066944],[-71.724306462,41.334111004],[-71.724238423,41.33413506],[-71.724228003,41.334211148],[-71.724231345,41.334283115],[-71.724237628,41.334319124],[-71.724311968,41.334318613],[-71.724389051,41.33432155],[-71.724485401,41.334332889],[-71.724603727,41.334355323],[-71.724722057,41.334379152],[-71.724837625,41.3344023],[-71.724965147,41.334416437],[-71.725086343,41.334417435],[-71.725204777,41.33440945],[-71.725334222,41.334409105],[-71.725447129,41.334417689],[-71.725548076,41.334415891],[-71.725655448,41.334429288],[-71.725766383,41.334464177],[-71.725869966,41.334496244],[-71.725979095,41.334526265],[-71.726094595,41.334556319],[-71.726199098,41.334591174],[-71.726300868,41.334625371],[-71.726399853,41.334661564],[-71.726474947,41.334703269],[-71.726534424,41.334739402],[-71.726620617,41.334761806],[-71.726699532,41.334776516],[-71.726780276,41.334785002],[-71.726844668,41.334759558],[-71.726917284,41.334734143],[-71.726964761,41.334722476],[-71.726995383,41.33471496],[-71.727071647,41.33470063],[-71.727146016,41.334699431],[-71.727218513,41.334709992],[-71.727318587,41.334701263],[-71.727417738,41.33470635],[-71.72751138,41.334706623],[-71.72758216,41.334685991],[-71.727672114,41.334681376],[-71.72777126,41.334685114],[-71.727873244,41.33466737],[-71.727966064,41.334649621],[-71.728053272,41.334640849],[-71.728145935,41.334656286],[-71.728223961,41.334659951],[-71.728292955,41.334631752],[-71.728353651,41.334599384],[-71.728369476,41.334551713],[-71.728352355,41.334480368],[-71.728333339,41.334422223],[-71.728309752,41.334358506],[-71.728276084,41.33429266],[-71.728246025,41.334235177],[-71.728240801,41.334172888],[-71.728275917,41.334123143],[-71.728304565,41.334072016],[-71.728274559,41.334012452],[-71.728277461,41.33397439],[-71.72833637,41.333943398],[-71.728398994,41.333898584],[-71.728431462,41.333820462],[-71.728442788,41.333753383],[-71.728450418,41.333687661],[-71.728441507,41.333621216],[-71.728418825,41.333564428],[-71.728422772,41.333504248],[-71.728475272,41.333462839],[-71.728542535,41.333408365],[-71.728586893,41.333337904],[-71.728619347,41.333264631],[-71.728612244,41.333212042],[-71.728538902,41.333193846],[-71.728445413,41.333158307],[-71.728368558,41.33309863],[-71.728308134,41.333069407],[-71.728231035,41.333061624],[-71.728151285,41.333033034],[-71.728082655,41.332982374],[-71.7280112,41.332948279],[-71.72794615,41.33292389],[-71.727933387,41.332901022],[-71.727999703,41.332853434],[-71.728094451,41.332814961],[-71.728163421,41.332780518],[-71.728131401,41.332752085],[-71.72806917,41.332709028],[-71.728047398,41.332652238],[-71.728061374,41.332605234],[-71.728162324,41.332613794],[-71.728264171,41.332627177],[-71.72836596,41.332650234],[-71.728462209,41.332676779],[-71.728555758,41.332703329],[-71.728646476,41.332736105],[-71.728723412,41.332775702],[-71.728797639,41.332812559],[-71.728875535,41.33284042],[-71.72895985,41.332864175],[-71.729038685,41.332891372],[-71.729106495,41.332924033],[-71.729175212,41.33295603],[-71.72924484,41.332988047],[-71.729266594,41.33299928],[-71.729263598,41.332276434],[-71.729250603,41.331733627],[-71.72919887,41.331750061],[-71.729121673,41.331774091],[-71.729048132,41.331793975],[-71.728977388,41.331806946],[-71.728904869,41.33180677],[-71.72879567,41.331798914],[-71.728712134,41.331797982],[-71.728632254,41.331801228],[-71.728538587,41.331809991],[-71.728455011,41.331823628],[-71.728349332,41.331842065],[-71.728273073,41.331857082],[-71.72818488,41.331869287],[-71.728103173,41.331879489],[-71.728021426,41.331886901],[-71.727941538,41.331888089],[-71.727854329,41.331886455],[-71.727772653,41.331888332],[-71.727675244,41.331911624],[-71.727565969,41.331916871],[-71.727477828,41.331918052],[-71.72739149,41.331931648],[-71.727309718,41.331949419],[-71.727231611,41.331965149],[-71.727153538,41.331973262],[-71.72705164,41.331979935],[-71.726972622,41.331995643],[-71.726955175,41.332004185],[-71.726898076,41.332032131],[-71.726805177,41.332069937],[-71.726726212,41.332083586],[-71.726650003,41.332086846],[-71.726543532,41.332078274],[-71.726470093,41.332075331],[-71.726385656,41.332077166],[-71.726303952,41.332079728],[-71.726200174,41.332086405],[-71.726104655,41.332095169],[-71.726027582,41.332094268],[-71.725945867,41.332093377],[-71.725873331,41.332097338],[-71.725801708,41.332101985],[-71.725696067,41.332114176],[-71.72559505,41.332129834],[-71.725510597,41.332126867],[-71.72541328,41.332124542],[-71.725340773,41.332127817],[-71.725257242,41.332128323],[-71.725183782,41.332128124],[-71.725082798,41.332127155],[-71.724983684,41.332122752],[-71.724909363,41.332119101],[-71.724816548,41.332137556],[-71.724359324,41.332104645],[-71.724270607,41.332097111],[-71.724194425,41.332090787],[-71.724111079,41.332083173],[-71.724017836,41.332074366],[-71.723919086,41.332060928],[-71.723818469,41.332042781],[-71.723710689,41.332024099],[-71.723593153,41.332009576],[-71.723473965,41.331999768],[-71.723350321,41.331991385],[-71.723225061,41.331989753],[-71.723092744,41.33199161],[-71.722953297,41.331993596],[-71.722816456,41.331994844],[-71.722670626,41.331993503],[-71.722596411,41.331994538],[-71.722524018,41.331995547],[-71.722382719,41.331997559],[-71.722245912,41.331999469],[-71.722102884,41.332001461],[-71.721961546,41.33200075],[-71.721820169,41.33199734],[-71.721744974,41.331995701],[-71.721667108,41.331993404],[-71.721589209,41.331990467],[-71.72151222,41.331987482],[-71.721437051,41.331984516],[-71.721365367,41.331980103],[-71.721224733,41.331971957],[-71.721150379,41.331967594],[-71.721074268,41.331963944],[-71.720999099,41.331960978],[-71.720923935,41.331959338],[-71.720848778,41.331959734],[-71.720776352,41.331960056],[-71.720638594,41.331959268],[-71.720503221,41.331945645],[-71.720379229,41.331923812],[-71.720266042,41.331903148],[-71.720160897,41.331882377],[-71.72005488,41.331864283],[-71.719945279,41.331844938],[-71.71982388,41.331818343],[-71.719698862,41.331789055],[-71.719578237,41.331757701],[-71.719461965,41.331721604],[-71.719353729,41.331684029],[-71.719249958,41.331647725],[-71.719156048,41.331611288],[-71.719065683,41.331573426],[-71.71897985,41.331538895],[-71.718900335,41.331506318],[-71.718829771,41.33147361],[-71.718751027,41.331435588],[-71.718692822,41.331396613],[-71.718676704,41.331358427],[-71.718693418,41.331348081],[-71.718745165,41.331306907],[-71.718797718,41.33126166],[-71.718852832,41.331211011],[-71.718899771,41.331156421],[-71.718944884,41.331100531],[-71.718931399,41.331060259],[-71.718854903,41.331041124],[-71.71878743,41.331061585],[-71.718720661,41.331111089],[-71.718674356,41.331155569],[-71.718627245,41.331204053],[-71.71858108,41.331253953],[-71.718534141,41.331308497],[-71.718483659,41.331365174],[-71.718434019,41.331419815],[-71.718390486,41.331467583],[-71.718348009,41.331522805],[-71.718314481,41.331613619],[-71.718291699,41.331669878],[-71.718276993,41.331727403],[-71.718281268,41.331790014],[-71.718312898,41.331839469],[-71.718366298,41.331902102],[-71.718403264,41.331950129],[-71.718440229,41.331998156],[-71.718490922,41.332058781],[-71.718529824,41.332114214],[-71.718862216,41.332536964],[-71.718925974,41.332621029],[-71.718963921,41.332671707],[-71.719411258,41.333185238],[-71.719475928,41.333232846],[-71.719522691,41.333279413],[-71.720755829,41.334356296],[-71.721504286,41.335001753],[-71.72157387,41.335030459],[-71.721651989,41.335079274],[-71.72172491,41.335134161],[-71.721811557,41.335165326],[-71.721900385,41.335177574],[-71.721950312,41.335207873],[-71.721956523,41.335276564],[-71.722009722,41.335331762],[-71.722082112,41.335364442],[-71.722161386,41.335386931],[-71.722236135,41.335408148],[-71.722289818,41.33544514],[-71.722322468,41.335498595],[-71.722347262,41.335561647],[-71.722381776,41.335619145]]],[[[-71.716152345,41.337129426],[-71.716083953,41.337149269],[-71.716015802,41.337177871],[-71.715952324,41.337215818],[-71.715896047,41.337256382],[-71.715843522,41.337302976],[-71.715801034,41.337356802],[-71.715773154,41.33742327],[-71.715758795,41.337494951],[-71.715752435,41.337563117],[-71.715749553,41.337627869],[-71.715751061,41.337689205],[-71.715752464,41.337746471],[-71.715749895,41.337823389],[-71.71575042,41.337881343],[-71.715768079,41.337945141],[-71.715834292,41.33794488],[-71.71591196,41.337903361],[-71.71601132,41.337869624],[-71.716087053,41.337857749],[-71.716167386,41.33785124],[-71.716248768,41.337850127],[-71.716325659,41.337849044],[-71.716424034,41.33784767],[-71.716516127,41.337846399],[-71.71660011,41.33784249],[-71.716652212,41.33781481],[-71.716669591,41.337757304],[-71.716670716,41.337693905],[-71.716683428,41.337628974],[-71.716687256,41.337566255],[-71.716686553,41.337537234],[-71.716691051,41.337502805],[-71.716716265,41.337437737],[-71.716764115,41.337381819],[-71.716817766,41.337345308],[-71.716844379,41.337299769],[-71.716779814,41.337256848],[-71.716690002,41.337241259],[-71.716618875,41.337223348],[-71.716545004,41.337201485],[-71.716469277,41.3371783],[-71.716398915,41.337152977],[-71.716329539,41.337132341],[-71.716256795,41.337121226],[-71.716152345,41.337129426]]],[[[-71.71986141,41.339983856],[-71.719928648,41.340026084],[-71.719998379,41.340060851],[-71.720070353,41.340076677],[-71.720141985,41.340081068],[-71.720234081,41.340079794],[-71.720319012,41.34007723],[-71.720370343,41.340054971],[-71.720401025,41.339992521],[-71.720440914,41.339942724],[-71.720454886,41.33992838],[-71.720516541,41.339889771],[-71.720582965,41.339861856],[-71.72065199,41.339831237],[-71.720672215,41.339817476],[-71.720786956,41.339755208],[-71.720866586,41.339719697],[-71.720941717,41.339682228],[-71.721007832,41.339643564],[-71.721078789,41.339618956],[-71.72115189,41.339609187],[-71.721248581,41.339611883],[-71.72135276,41.339629956],[-71.721419502,41.339651258],[-71.721486214,41.339672582],[-71.721554717,41.339693857],[-71.721648531,41.339724918],[-71.721743928,41.339748565],[-71.721802985,41.339785433],[-71.721856956,41.339834592],[-71.721943432,41.339858302],[-71.722032329,41.339835489],[-71.722093666,41.339784072],[-71.722143937,41.339717993],[-71.722185227,41.339652001],[-71.722196143,41.339587141],[-71.722192767,41.33952247],[-71.722183916,41.339453829],[-71.722147676,41.33939837],[-71.722093115,41.339362728],[-71.722016259,41.339330103],[-71.72192072,41.339300441],[-71.721855696,41.339275706],[-71.721788878,41.339249717],[-71.721724764,41.33922498],[-71.721629824,41.339183835],[-71.721569012,41.339148297],[-71.72151087,41.339112708],[-71.721422072,41.339066086],[-71.721356031,41.339036664],[-71.721285527,41.339006633],[-71.721213163,41.33897393],[-71.721146101,41.338938473],[-71.721083464,41.338901588],[-71.721025251,41.33886266],[-71.720972443,41.338824956],[-71.720900536,41.33877471],[-71.720844779,41.338726286],[-71.720784562,41.338677939],[-71.720767214,41.338653866],[-71.720760723,41.338654656],[-71.720756335,41.338658461],[-71.720761989,41.338670137],[-71.720781439,41.33873256],[-71.720816275,41.338804238],[-71.720861918,41.338877085],[-71.720905108,41.338924344],[-71.720955492,41.338972138],[-71.721007561,41.339015904],[-71.721083014,41.339064771],[-71.721145092,41.339115767],[-71.721190738,41.3391893],[-71.721216195,41.339242197],[-71.721227821,41.339314857],[-71.721227578,41.339377569],[-71.721205881,41.339440573],[-71.721133728,41.3394881],[-71.721064738,41.339520045],[-71.721001124,41.33955333],[-71.72093659,41.339583871],[-71.720867458,41.339609779],[-71.720790989,41.339628383],[-71.720703772,41.339645794],[-71.720615964,41.339676678],[-71.720535629,41.339718914],[-71.720459865,41.339767179],[-71.720400744,41.339801049],[-71.720336245,41.339832985],[-71.720261807,41.339860321],[-71.72017723,41.339877658],[-71.720090574,41.339881552],[-71.720011646,41.339873264],[-71.719940543,41.339854669],[-71.719878153,41.339827915],[-71.719784444,41.339800901],[-71.719712784,41.339797172],[-71.719633996,41.339794235],[-71.719556719,41.3397805],[-71.719490711,41.339751764],[-71.719421363,41.339695428],[-71.71936455,41.339639595],[-71.71930016,41.339604749],[-71.719212139,41.339590485],[-71.719120466,41.339572912],[-71.719036306,41.339533643],[-71.718958467,41.339496947],[-71.718867527,41.339471939],[-71.718776137,41.339466487],[-71.718688572,41.339506814],[-71.718639558,41.339550636],[-71.71859019,41.339615385],[-71.718582501,41.339666698],[-71.718665718,41.339668941],[-71.718745349,41.339669819],[-71.71882782,41.339676089],[-71.718905907,41.33968717],[-71.718984201,41.339705592],[-71.719052735,41.339727532],[-71.719134446,41.339778309],[-71.719185635,41.3398221],[-71.719243077,41.339866474],[-71.719308454,41.339905984],[-71.719378145,41.339938053],[-71.719450332,41.339963325],[-71.719524103,41.339981183],[-71.719626236,41.3399865],[-71.719711698,41.339970465],[-71.719789223,41.339958607],[-71.71986141,41.339983856]]],[[[-71.720830729,41.340370091],[-71.720774445,41.340408644],[-71.720714825,41.34045665],[-71.720700889,41.340508753],[-71.720730877,41.340564294],[-71.720790358,41.340618726],[-71.720838809,41.340659869],[-71.720881891,41.340666007],[-71.720928136,41.340620177],[-71.720927959,41.340612767],[-71.72096696,41.340524595],[-71.721015801,41.340474689],[-71.72099838,41.340420313],[-71.720955858,41.340364293],[-71.720901051,41.340354953],[-71.720830729,41.340370091]]],[[[-71.720868772,41.340896728],[-71.720836997,41.340914033],[-71.720861544,41.340966977],[-71.720872849,41.340989735],[-71.720931062,41.341028023],[-71.720998579,41.341008842],[-71.721042152,41.340962422],[-71.721021576,41.340926303],[-71.720951001,41.340893574],[-71.720868772,41.340896728]]],[[[-71.719823092,41.340897883],[-71.719750268,41.340918469],[-71.719685595,41.340944299],[-71.719662498,41.340988483],[-71.719707437,41.341032355],[-71.719786757,41.341057521],[-71.719862877,41.341060486],[-71.71989879,41.341028307],[-71.719922487,41.34093694],[-71.719908792,41.34088928],[-71.719823092,41.340897883]]],[[[-71.718146876,41.34181059],[-71.718250073,41.341824643],[-71.718347088,41.341841475],[-71.718436972,41.341858411],[-71.71852686,41.34187672],[-71.718617725,41.341896353],[-71.718703152,41.341914693],[-71.718777838,41.341933191],[-71.718874674,41.341941949],[-71.718956272,41.34191316],[-71.71899602,41.341856663],[-71.718994899,41.341775772],[-71.718995284,41.34171848],[-71.719001957,41.341663121],[-71.719024248,41.341586599],[-71.71904124,41.341513541],[-71.719040468,41.341446166],[-71.719022875,41.341385066],[-71.718987306,41.341320844],[-71.718941765,41.341251336],[-71.718887482,41.3411901],[-71.71883629,41.341145646],[-71.718699673,41.341010694],[-71.718636332,41.340981243],[-71.718561264,41.340947903],[-71.718468258,41.340913499],[-71.718394244,41.340886881],[-71.718316642,41.340857663],[-71.718239788,41.340825675],[-71.718169177,41.340790931],[-71.718098533,41.340755502],[-71.718026067,41.340719458],[-71.717949876,41.340676674],[-71.717869053,41.340627952],[-71.717790052,41.340579799],[-71.717716392,41.340531659],[-71.717649957,41.340484031],[-71.717589917,41.340443069],[-71.717511764,41.340394273],[-71.717443123,41.340367599],[-71.717383085,41.34036371],[-71.717331473,41.34041163],[-71.717300501,41.340460585],[-71.717253447,41.340510463],[-71.71718839,41.340557905],[-71.717110616,41.340595377],[-71.717021961,41.340628318],[-71.716930634,41.340660577],[-71.71684191,41.340690819],[-71.71675487,41.340716324],[-71.716674847,41.340734931],[-71.716608279,41.340756761],[-71.716543674,41.34082172],[-71.716539743,41.3408811],[-71.716564596,41.340944816],[-71.716600162,41.341009039],[-71.716642856,41.341071784],[-71.716693593,41.341135154],[-71.716754123,41.341195647],[-71.716820902,41.341255374],[-71.716886805,41.341316474],[-71.716947368,41.341377676],[-71.71700432,41.341438908],[-71.717070154,41.341497309],[-71.717139532,41.341553623],[-71.717209682,41.341604584],[-71.717284817,41.341639914],[-71.717366805,41.341664368],[-71.717451533,41.341691515],[-71.717531161,41.341727478],[-71.717596678,41.341772409],[-71.71766125,41.341815992],[-71.71774401,41.34183507],[-71.717847655,41.341828905],[-71.717950995,41.341813294],[-71.718048354,41.341805906],[-71.718146876,41.34181059]]],[[[-71.713971415,41.342623245],[-71.713963023,41.342683364],[-71.714004557,41.342735386],[-71.714063819,41.342779713],[-71.714106657,41.342775746],[-71.714175866,41.34271613],[-71.714160106,41.34265768],[-71.714106315,41.34261595],[-71.714032758,41.342608265],[-71.713971415,41.342623245]]],[[[-71.713904541,41.34347093],[-71.713905908,41.343489772],[-71.713957203,41.3435383],[-71.714010399,41.34351867],[-71.714025155,41.343465194],[-71.714000786,41.34341904],[-71.713937265,41.343417878],[-71.713904541,41.34347093]]],[[[-71.729323642,41.344052867],[-71.729338276,41.34406329],[-71.729362072,41.344073031],[-71.729404367,41.344061374],[-71.729468702,41.344051846],[-71.729531994,41.344065122],[-71.729550604,41.344063677],[-71.729550599,41.344063437],[-71.729572599,41.343680436],[-71.729565599,41.343419437],[-71.729565576,41.343418522],[-71.729546694,41.343437639],[-71.729467352,41.343520428],[-71.729377033,41.343597019],[-71.729323664,41.343626651],[-71.729280323,41.343668751],[-71.729264546,41.343704689],[-71.729251557,41.343739227],[-71.729232883,41.343805611],[-71.729226214,41.343859576],[-71.729228944,41.343867896],[-71.729247291,41.343872777],[-71.729235276,41.343890731],[-71.72922781,41.343925303],[-71.729252459,41.343953042],[-71.729280744,41.343987703],[-71.729292583,41.344014735],[-71.729317237,41.344043846],[-71.729323642,41.344052867]]],[[[-71.713243562,41.343730251],[-71.713225965,41.343778357],[-71.713237198,41.34383549],[-71.713294075,41.343892675],[-71.713374482,41.343925277],[-71.713432554,41.343958172],[-71.713446211,41.344004505],[-71.71339642,41.344054387],[-71.713327453,41.344086396],[-71.713288088,41.34412265],[-71.713311994,41.34418502],[-71.71336393,41.344225427],[-71.71344535,41.344261366],[-71.713522246,41.344296696],[-71.71358604,41.344343668],[-71.713666098,41.344362113],[-71.713744257,41.344338091],[-71.713765856,41.34430745],[-71.713901819,41.344234103],[-71.71394031,41.344162767],[-71.713969876,41.344090921],[-71.713968896,41.344014055],[-71.713960166,41.34395216],[-71.713892289,41.343918713],[-71.713787231,41.343902029],[-71.713690852,41.343876365],[-71.713589238,41.343854872],[-71.71350978,41.343824945],[-71.713438014,41.343780777],[-71.713387869,41.343740367],[-71.713310626,41.34372864],[-71.713243562,41.343730251]]],[[[-71.720876862,41.344997522],[-71.720797469,41.345006067],[-71.720722507,41.345014513],[-71.720787924,41.345055417],[-71.720810958,41.345082063],[-71.72083512,41.345119502],[-71.720888802,41.345118027],[-71.720922864,41.345085233],[-71.720947016,41.345047794],[-71.72098122,41.345021038],[-71.720950209,41.344995826],[-71.720876862,41.344997522]]],[[[-71.723309926,41.346220747],[-71.723343498,41.346311272],[-71.723402881,41.346325977],[-71.723455829,41.346296234],[-71.723431206,41.346239952],[-71.723378291,41.346199574],[-71.723319013,41.346188917],[-71.723309926,41.346220747]]],[[[-71.723014127,41.346269395],[-71.723013215,41.346304457],[-71.723032743,41.34633518],[-71.72304416,41.346399104],[-71.723068919,41.346459389],[-71.723115731,41.346507967],[-71.72318596,41.346525829],[-71.723215348,41.346484331],[-71.723204806,41.346419079],[-71.723175726,41.3463642],[-71.723142295,41.346314773],[-71.723081228,41.346269127],[-71.723014127,41.346269395]]],[[[-71.720232086,41.346567244],[-71.720195674,41.346614244],[-71.720151149,41.346658698],[-71.720125729,41.34671638],[-71.720125557,41.346782454],[-71.720127946,41.346843079],[-71.720149121,41.346903462],[-71.720210782,41.346936964],[-71.720265032,41.34692339],[-71.720294841,41.346862314],[-71.720302249,41.34683593],[-71.720307342,41.346789333],[-71.720330972,41.3467317],[-71.720363629,41.346677983],[-71.720382835,41.346622416],[-71.720387889,41.346573143],[-71.720294659,41.346564997],[-71.720232086,41.346567244]]],[[[-71.649177161,41.353720493],[-71.649158995,41.353725476],[-71.649177574,41.35372044],[-71.649233556,41.353696218],[-71.649177161,41.353720493]]],[[[-71.648833245,41.353790991],[-71.648711017,41.353818294],[-71.64895345,41.353768466],[-71.648833245,41.353790991]]],[[[-71.648178381,41.353962336],[-71.648169848,41.353964626],[-71.648181431,41.353961548],[-71.648178381,41.353962336]]],[[[-71.648039973,41.354002721],[-71.648018651,41.354009796],[-71.648074186,41.353991886],[-71.648039973,41.354002721]]],[[[-71.647788073,41.35408236],[-71.647675459,41.354120309],[-71.647570692,41.354165087],[-71.647540905,41.354180088],[-71.647570573,41.354165441],[-71.647675573,41.354120441],[-71.64786967,41.354057844],[-71.647788073,41.35408236]]],[[[-71.646859527,41.354314381],[-71.646826141,41.354321368],[-71.646859572,41.354314441],[-71.646867166,41.354312349],[-71.646859527,41.354314381]]],[[[-71.646341713,41.354466146],[-71.646306625,41.354476279],[-71.646341572,41.354466441],[-71.646393836,41.354446842],[-71.646341713,41.354466146]]],[[[-71.645994259,41.354573301],[-71.645913477,41.354604048],[-71.646064864,41.354547818],[-71.645994259,41.354573301]]],[[[-71.64536983,41.354732387],[-71.645477572,41.354709441],[-71.645566572,41.354678441],[-71.645670572,41.354655441],[-71.645786572,41.354638441],[-71.645869914,41.354617411],[-71.645786152,41.354638129],[-71.645670454,41.354655359],[-71.645567062,41.354678063],[-71.64547768,41.354709029],[-71.64536983,41.354732387]]],[[[-71.64536983,41.354732387],[-71.64526214,41.354748364],[-71.645167718,41.354765201],[-71.645074376,41.354776023],[-71.644988461,41.354775525],[-71.645074572,41.354776441],[-71.645167572,41.354765441],[-71.645369572,41.354732441],[-71.64536983,41.354732387]]],[[[-71.644796572,41.354796441],[-71.644887572,41.354779441],[-71.644975147,41.354775674],[-71.644887165,41.35477898],[-71.644796572,41.354796441]]],[[[-71.644796572,41.354796441],[-71.644796296,41.354796499],[-71.644711572,41.354825441],[-71.644796572,41.354796441]]],[[[-71.638747929,41.35484447],[-71.63879857,41.354848442],[-71.638817187,41.354849422],[-71.638817151,41.354849333],[-71.638748057,41.354844408],[-71.638747929,41.35484447]]],[[[-71.638726529,41.354854863],[-71.63872774,41.354876676],[-71.63872659,41.354854833],[-71.638726529,41.354854863]]],[[[-71.64463914,41.354843284],[-71.644541335,41.354853378],[-71.644456606,41.354875006],[-71.644366342,41.354905285],[-71.6442763,41.354926165],[-71.644238398,41.354930531],[-71.644276572,41.354926441],[-71.644366572,41.354905441],[-71.644456572,41.354875441],[-71.644541572,41.354853441],[-71.644639572,41.354843441],[-71.644711399,41.354825485],[-71.64463914,41.354843284]]],[[[-71.64410984,41.354952103],[-71.644021558,41.354973025],[-71.643941094,41.355001417],[-71.643873327,41.355027437],[-71.644021572,41.354973441],[-71.644178027,41.354938673],[-71.64410984,41.354952103]]],[[[-71.638739336,41.35493972],[-71.638752163,41.354976823],[-71.638767538,41.355041826],[-71.638767575,41.355042513],[-71.63876757,41.355041442],[-71.63875257,41.354976441],[-71.638730624,41.35491442],[-71.638739336,41.35493972]]],[[[-71.643795442,41.355048987],[-71.643720316,41.355075427],[-71.643666817,41.35509524],[-71.643795572,41.355049441],[-71.643860782,41.355031182],[-71.643795442,41.355048987]]],[[[-71.63889657,41.355121442],[-71.638899557,41.355130733],[-71.638896982,41.355121671],[-71.638890277,41.355066126],[-71.638879109,41.35500445],[-71.63889657,41.355121442]]],[[[-71.643494834,41.355164103],[-71.643480708,41.355167275],[-71.643494572,41.355164441],[-71.643511331,41.355157605],[-71.643494834,41.355164103]]],[[[-71.643217408,41.355234707],[-71.643119902,41.355270873],[-71.643111286,41.355273985],[-71.64328377,41.355212128],[-71.643217408,41.355234707]]],[[[-71.63895257,41.355355442],[-71.638959745,41.355383344],[-71.638952874,41.355355637],[-71.638943665,41.355292709],[-71.638932927,41.355235621],[-71.63895257,41.355355442]]],[[[-71.638793806,41.355290785],[-71.638816532,41.355343841],[-71.63882983,41.355389116],[-71.63881657,41.355343441],[-71.638774404,41.35524154],[-71.638793806,41.355290785]]],[[[-71.642925056,41.355336547],[-71.642832175,41.355364748],[-71.642755282,41.355391568],[-71.642992436,41.355315436],[-71.642925056,41.355336547]]],[[[-71.641414893,41.355480233],[-71.641372436,41.355483347],[-71.641414571,41.355480441],[-71.641492976,41.355479253],[-71.641414893,41.355480233]]],[[[-71.642149571,41.355489442],[-71.642244571,41.355486441],[-71.642493253,41.355449371],[-71.642446947,41.355456044],[-71.642339314,41.355470037],[-71.64224495,41.355486209],[-71.6421491,41.355488957],[-71.642055146,41.355484408],[-71.641964721,41.355483261],[-71.64194585,41.355483148],[-71.642055571,41.355484441],[-71.642149571,41.355489442]]],[[[-71.64109854,41.355546306],[-71.641075103,41.355552459],[-71.641098571,41.355546442],[-71.641124721,41.355536085],[-71.64109854,41.355546306]]],[[[-71.640941655,41.355579706],[-71.640925498,41.355582934],[-71.640987854,41.355572117],[-71.640941655,41.355579706]]],[[[-71.63897957,41.355460441],[-71.63901222,41.355626659],[-71.639010994,41.355608996],[-71.638997325,41.355547353],[-71.638983849,41.355476334],[-71.638977992,41.355454306],[-71.63897957,41.355460441]]],[[[-71.640485602,41.355625959],[-71.640379787,41.355638667],[-71.640330308,41.35564498],[-71.64048557,41.355626442],[-71.640530432,41.355624766],[-71.640485602,41.355625959]]],[[[-71.640019917,41.355667419],[-71.639933532,41.355682367],[-71.639898757,41.355688878],[-71.640092593,41.355657539],[-71.640019917,41.355667419]]],[[[-71.63907157,41.355657441],[-71.639172571,41.355686442],[-71.639250571,41.355697441],[-71.63958857,41.355708441],[-71.6396467,41.355708759],[-71.639588832,41.355708012],[-71.639500193,41.355704849],[-71.639414254,41.355701065],[-71.639332688,41.35569803],[-71.639250215,41.355696987],[-71.639172456,41.355685943],[-71.639071113,41.355657217],[-71.63907157,41.355657441]]],[[[-71.639771502,41.355709002],[-71.639716475,41.35570914],[-71.639771571,41.355709441],[-71.639794381,41.355705753],[-71.639771502,41.355709002]]],[[[-71.638842991,41.355467858],[-71.638854705,41.355538148],[-71.638866447,41.35560718],[-71.638884438,41.355674856],[-71.638904246,41.355739967],[-71.63890791,41.355754806],[-71.63890457,41.355740442],[-71.63889157,41.355695441],[-71.63886657,41.355607442],[-71.638835057,41.355408512],[-71.638842991,41.355467858]]],[[[-71.638934944,41.355873334],[-71.63895032,41.355938359],[-71.638957308,41.355967216],[-71.638928859,41.355844885],[-71.638934944,41.355873334]]],[[[-71.638983165,41.356053724],[-71.638987546,41.3560734],[-71.63898357,41.356053442],[-71.638971397,41.356018204],[-71.638983165,41.356053724]]],[[[-71.639011054,41.356193772],[-71.639016621,41.35621933],[-71.639007789,41.356175001],[-71.639011054,41.356193772]]],[[[-71.65242093,41.357067],[-71.652441337,41.357061505],[-71.652441152,41.357061422],[-71.65242093,41.357067]]],[[[-71.652502575,41.357089442],[-71.652613574,41.357167442],[-71.652662844,41.357209544],[-71.65261375,41.357167198],[-71.652555922,41.357126748],[-71.652502775,41.357089151],[-71.65246044,41.357070101],[-71.652502575,41.357089442]]],[[[-71.652667561,41.357247383],[-71.652668711,41.357214604],[-71.652668574,41.357214486],[-71.652667561,41.357247383]]],[[[-71.652174515,41.357632006],[-71.652105921,41.35767411],[-71.65206665,41.357693429],[-71.652105574,41.357674442],[-71.652237402,41.357597621],[-71.652174515,41.357632006]]],[[[-71.652708574,41.357709442],[-71.652721108,41.357733404],[-71.652708782,41.357709355],[-71.652705037,41.357701408],[-71.652708574,41.357709442]]],[[[-71.652824575,41.358057441],[-71.65282101,41.358071447],[-71.65282464,41.358057565],[-71.652842416,41.358032638],[-71.652824575,41.358057441]]],[[[-71.652770574,41.358292442],[-71.652770759,41.358298347],[-71.652770793,41.358292357],[-71.652777066,41.358255853],[-71.652770574,41.358292442]]],[[[-71.652774575,41.358420441],[-71.652799413,41.358482536],[-71.652774704,41.358420084],[-71.652774442,41.358416187],[-71.652774575,41.358420441]]],[[[-71.652802575,41.358490442],[-71.652863096,41.358513518],[-71.652802408,41.358490023],[-71.652802575,41.358490442]]],[[[-71.652852826,41.35866163],[-71.652930767,41.358631566],[-71.652960969,41.358592166],[-71.652942364,41.358545476],[-71.652960575,41.358592442],[-71.652930575,41.358631442],[-71.652852575,41.358661442],[-71.652790575,41.358658441],[-71.652786088,41.358657271],[-71.652791046,41.358658602],[-71.652852826,41.35866163]]],[[[-71.708268594,41.396150448],[-71.708550595,41.395924447],[-71.709999596,41.394997447],[-71.710442595,41.394722447],[-71.710922595,41.394432447],[-71.711113596,41.394307447],[-71.711205596,41.394242447],[-71.711266596,41.394181447],[-71.711334596,41.394085447],[-71.711388595,41.393986447],[-71.711433596,41.393864447],[-71.711502596,41.393704447],[-71.711594596,41.393471447],[-71.711655596,41.393299447],[-71.711754596,41.393082447],[-71.711815596,41.392926446],[-71.711845596,41.392826446],[-71.711861596,41.392727446],[-71.711861596,41.392620447],[-71.711876595,41.392193447],[-71.711876595,41.391907446],[-71.711891596,41.391701446],[-71.711952596,41.391068446],[-71.712059596,41.390297446],[-71.712097596,41.389943446],[-71.712112595,41.389851446],[-71.712181596,41.389733446],[-71.712227595,41.389679446],[-71.712288596,41.389645446],[-71.712349596,41.389618446],[-71.712479596,41.389592446],[-71.712822596,41.389542446],[-71.713799596,41.389431446],[-71.714325597,41.389386446],[-71.715230596,41.389276446],[-71.715462597,41.389248446],[-71.716034597,41.389172446],[-71.716362597,41.389134445],[-71.716980598,41.389054446],[-71.717361597,41.389016446],[-71.717850597,41.388962445],[-71.718155597,41.388935446],[-71.718521598,41.388893446],[-71.718693598,41.388877446],[-71.720154598,41.388737446],[-71.721123598,41.388638445],[-71.721182598,41.388632445],[-71.721764598,41.388577445],[-71.721977599,41.388562446],[-71.722534599,41.388565446],[-71.722740599,41.388562445],[-71.723114599,41.388539445],[-71.7248006,41.388363445],[-71.7253726,41.388314446],[-71.7260286,41.388241445],[-71.727043601,41.388146445],[-71.727348601,41.388131445],[-71.7277916,41.388077445],[-71.728127601,41.388043445],[-71.728844601,41.387963445],[-71.729294601,41.387898445],[-71.729523602,41.387856445],[-71.730194601,41.387654445],[-71.730354602,41.387623445],[-71.730583601,41.387593445],[-71.730698601,41.387566445],[-71.730666602,41.386991444],[-71.730634602,41.386392445],[-71.730619601,41.385886445],[-71.730558601,41.384457444],[-71.730548601,41.384051444],[-71.730530602,41.383596444],[-71.730486601,41.382213444],[-71.730364601,41.378841443],[-71.730354601,41.378054443],[-71.730301601,41.376393443],[-71.730276601,41.374590442],[-71.730296601,41.374189442],[-71.730300601,41.373859442],[-71.730339601,41.372793442],[-71.730300601,41.371455442],[-71.7302696,41.370260441],[-71.7302316,41.368692441],[-71.7300956,41.36360844],[-71.730050601,41.36190444],[-71.7299786,41.35912044],[-71.729819599,41.353061438],[-71.7298286,41.352017438],[-71.729839599,41.351906438],[-71.729820599,41.351822438],[-71.729820599,41.351727438],[-71.7297776,41.351292438],[-71.7297526,41.350136437],[-71.729722599,41.349395437],[-71.7297386,41.348853437],[-71.729709599,41.347997437],[-71.7296606,41.347023437],[-71.729614599,41.345513436],[-71.729595599,41.344968436],[-71.729571599,41.344497436],[-71.729571539,41.344496351],[-71.729571418,41.344497686],[-71.729551831,41.344563387],[-71.729522104,41.344636655],[-71.729485102,41.344703671],[-71.729450918,41.344752042],[-71.729435096,41.344801108],[-71.729413736,41.344854347],[-71.729408827,41.344925599],[-71.729390207,41.3449816],[-71.729356006,41.345034088],[-71.729315368,41.345094181],[-71.729283901,41.345147395],[-71.729208633,41.345146493],[-71.729141731,41.345116597],[-71.729115998,41.34511722],[-71.729163506,41.345172678],[-71.729195389,41.345229516],[-71.729198794,41.345291786],[-71.729149964,41.345335292],[-71.729071867,41.345341302],[-71.72904415,41.345382044],[-71.729009958,41.345428334],[-71.728946748,41.34539564],[-71.728860438,41.345396109],[-71.728787007,41.345391086],[-71.728706296,41.345378416],[-71.728622801,41.345359577],[-71.72855865,41.345335164],[-71.728509243,41.345292128],[-71.728497529,41.345240212],[-71.728499674,41.345176559],[-71.728453969,41.345124551],[-71.728403673,41.34507875],[-71.728358951,41.345021204],[-71.728348218,41.344954787],[-71.728382478,41.344884255],[-71.728401122,41.344826195],[-71.728411511,41.344759804],[-71.7284237,41.344704479],[-71.728423996,41.344641538],[-71.728394871,41.344583299],[-71.728362092,41.344521659],[-71.728365966,41.344475293],[-71.728426708,41.344445006],[-71.728393792,41.344404796],[-71.728322071,41.344437163],[-71.728255046,41.344432814],[-71.72821582,41.344375966],[-71.728161885,41.344321893],[-71.728112489,41.344281624],[-71.728100807,41.344221384],[-71.728101069,41.344166059],[-71.728149019,41.344122556],[-71.728163778,41.344108095],[-71.728148243,41.344091453],[-71.728116957,41.344101052],[-71.728064566,41.34411545],[-71.728014979,41.344116029],[-71.72799749,41.344122193],[-71.728002947,41.344138123],[-71.72801932,41.3441686],[-71.728021062,41.34418934],[-71.72800908,41.344199701],[-71.727972397,41.34419337],[-71.727892465,41.344203546],[-71.727810615,41.344237945],[-71.727743452,41.344263396],[-71.727661626,41.344287411],[-71.727568781,41.344310717],[-71.727512734,41.344329925],[-71.727505109,41.344388717],[-71.727493829,41.344444041],[-71.72745318,41.344501366],[-71.727375797,41.34455515],[-71.72732428,41.344585464],[-71.727267209,41.344615766],[-71.727183568,41.344632855],[-71.727029306,41.344632451],[-71.726999762,41.34462837],[-71.72694769,41.344621177],[-71.726879826,41.344602328],[-71.726823093,41.344555166],[-71.726799305,41.344539158],[-71.726746055,41.344533499],[-71.726645089,41.344525625],[-71.726576276,41.344512999],[-71.726524017,41.344495583],[-71.726480134,41.34446086],[-71.726456394,41.344432456],[-71.726389473,41.344405303],[-71.726327108,41.344387815],[-71.726273062,41.344362764],[-71.726236315,41.344364048],[-71.726210582,41.344373682],[-71.726185696,41.344390929],[-71.726135129,41.344406695],[-71.726102974,41.34441076],[-71.726071888,41.344381639],[-71.726025244,41.344346921],[-71.725966585,41.344321856],[-71.725907966,41.34429057],[-71.725863946,41.344277322],[-71.725817944,41.344296601],[-71.725794016,41.34431037],[-71.725749851,41.344325483],[-71.72570389,41.344339181],[-71.7256855,41.344348137],[-71.725670549,41.34440413],[-71.725647388,41.344455292],[-71.725609542,41.344498797],[-71.725559776,41.344535327],[-71.725528465,41.344555332],[-71.725488055,41.344559368],[-71.725456982,41.344525374],[-71.725430562,41.344485174],[-71.725410395,41.344471971],[-71.72536988,41.344498169],[-71.725307311,41.344536073],[-71.725254863,41.344560876],[-71.725214356,41.344580807],[-71.725194006,41.344611196],[-71.725173498,41.344683805],[-71.725145689,41.344742568],[-71.725117004,41.344793694],[-71.725081043,41.34482958],[-71.725034026,41.344871639],[-71.724982438,41.344908196],[-71.724936322,41.344947509],[-71.724937134,41.344971727],[-71.724897502,41.345016608],[-71.724840425,41.345045536],[-71.72475042,41.345048091],[-71.724652154,41.345075384],[-71.724600329,41.345113862],[-71.724543308,41.345159166],[-71.724482638,41.345202487],[-71.724424282,41.345230297],[-71.724374314,41.345235014],[-71.724343317,41.345284658],[-71.724314315,41.345341045],[-71.724240792,41.345371057],[-71.724178114,41.345404295],[-71.724134546,41.345452088],[-71.724125353,41.345514909],[-71.724125071,41.345574236],[-71.724126626,41.34563827],[-71.724131755,41.345700217],[-71.724181934,41.345739296],[-71.724222815,41.345801424],[-71.724225352,41.345868796],[-71.724224234,41.345932196],[-71.724190913,41.345994697],[-71.724136173,41.346059505],[-71.72408846,41.346120182],[-71.724052724,41.346195472],[-71.724031729,41.34625038],[-71.724009793,41.346305289],[-71.723981596,41.346357603],[-71.723960602,41.346413197],[-71.723927213,41.346473686],[-71.723856499,41.346509044],[-71.723787997,41.346561208],[-71.723787507,41.346613148],[-71.723842046,41.346648788],[-71.723910171,41.346690326],[-71.723958034,41.34674423],[-71.723997264,41.346811759],[-71.72400854,41.3468696],[-71.72401915,41.346936864],[-71.724031586,41.347005452],[-71.724039597,41.347076106],[-71.724046659,41.34714411],[-71.724057027,41.347202638],[-71.724061455,41.347272682],[-71.724051172,41.347327454],[-71.72401961,41.347389884],[-71.724018353,41.347447909],[-71.724030009,41.347484113],[-71.724071729,41.347542878],[-71.724110501,41.347591539],[-71.724153802,41.347642159],[-71.724198685,41.347685343],[-71.724222318,41.347735589],[-71.724208736,41.347801871],[-71.724168538,41.34787724],[-71.724132233,41.347928289],[-71.724081077,41.347994416],[-71.724011659,41.348045278],[-71.72392858,41.348086241],[-71.723845223,41.348117072],[-71.723765231,41.34813772],[-71.72368541,41.348128727],[-71.723575082,41.348118169],[-71.723484415,41.348105972],[-71.723391883,41.348089731],[-71.723314877,41.34808741],[-71.723233164,41.348110828],[-71.723163885,41.34813134],[-71.723084176,41.348128407],[-71.72300727,41.348093107],[-71.722939775,41.348040772],[-71.722890891,41.347981449],[-71.722868731,41.347917706],[-71.722880417,41.347846785],[-71.72289193,41.34776978],[-71.722890273,41.347702361],[-71.722899395,41.347636156],[-71.722924928,41.347585242],[-71.722951362,41.347531606],[-71.72297864,41.34747664],[-71.723009503,41.347422263],[-71.723027477,41.347353274],[-71.723066379,41.34729808],[-71.723132043,41.347241211],[-71.723181686,41.347185242],[-71.723195556,41.347131766],[-71.723188737,41.347072568],[-71.723135675,41.347024757],[-71.723060495,41.346988058],[-71.722992369,41.34694588],[-71.722941239,41.346904126],[-71.72287308,41.346861261],[-71.722803447,41.346831207],[-71.722767173,41.346811494],[-71.722770118,41.346785187],[-71.722832516,41.346740468],[-71.722885004,41.346691195],[-71.722879066,41.346631972],[-71.722808486,41.34659993],[-71.722729093,41.346573393],[-71.72265047,41.346541435],[-71.722579082,41.346512779],[-71.722505447,41.346501669],[-71.722433843,41.346498652],[-71.722385495,41.346533714],[-71.722335535,41.346576899],[-71.722286097,41.346639591],[-71.722246242,41.346691378],[-71.722209936,41.34674245],[-71.72217444,41.346790821],[-71.72212546,41.34683668],[-71.722078304,41.346883198],[-71.72202321,41.346933871],[-71.722012573,41.346974464],[-71.722040595,41.346986188],[-71.722070615,41.347005296],[-71.722058857,41.347037154],[-71.721990454,41.347056314],[-71.721929885,41.347103682],[-71.721880765,41.347144143],[-71.721830833,41.347186641],[-71.721771247,41.347237369],[-71.721706252,41.347286163],[-71.721645648,41.34733218],[-71.721591433,41.347382806],[-71.72154343,41.347430675],[-71.721491642,41.34747185],[-71.721428015,41.347503786],[-71.721354489,41.347533773],[-71.721289591,41.347584602],[-71.721239103,41.347642584],[-71.721189561,41.347701914],[-71.721139385,41.3477714],[-71.721103005,41.347819109],[-71.721069328,41.347867431],[-71.721028072,41.347936099],[-71.720990223,41.347997968],[-71.720931694,41.348092513],[-71.720896296,41.348143559],[-71.720856758,41.348208816],[-71.720838737,41.348237645],[-71.720806763,41.348286924],[-71.720766149,41.348339398],[-71.720712663,41.348381514],[-71.720664364,41.348422956],[-71.7206523,41.348427508],[-71.72058938,41.348453335],[-71.720525609,41.348478569],[-71.720454095,41.348494029],[-71.720384332,41.348515341],[-71.720373862,41.348569816],[-71.720332536,41.348573005],[-71.720284432,41.348528157],[-71.72020258,41.348546862],[-71.720131918,41.34856296],[-71.720060403,41.348595962],[-71.719982006,41.348613356],[-71.719913066,41.34863597],[-71.719832967,41.348652727],[-71.719770049,41.348688296],[-71.71977772,41.348722085],[-71.719712136,41.348768042],[-71.71966468,41.348816618],[-71.719616317,41.3488665],[-71.719553378,41.348913779],[-71.719485213,41.348959765],[-71.719427446,41.34899274],[-71.719353352,41.349008204],[-71.719323947,41.34906395],[-71.719303982,41.349119724],[-71.719266001,41.349179351],[-71.719219374,41.349222093],[-71.719169342,41.349262921],[-71.719106401,41.349291995],[-71.719034906,41.349313309],[-71.71896337,41.349340479],[-71.718907315,41.349377384],[-71.718849536,41.349416191],[-71.718778851,41.349443998],[-71.718759101,41.349464528],[-71.718733998,41.349490671],[-71.718663326,41.349513241],[-71.718626183,41.34956054],[-71.718579534,41.349615014],[-71.718541513,41.349662955],[-71.718545108,41.34970336],[-71.718546528,41.349719367],[-71.718546556,41.349727806],[-71.718539588,41.349758946],[-71.718484372,41.349801682],[-71.718399062,41.349821672],[-71.718328496,41.349803395],[-71.718281209,41.349785189],[-71.718274161,41.349837713],[-71.718266281,41.34990451],[-71.718235145,41.349960259],[-71.718212585,41.350021251],[-71.718252033,41.350082287],[-71.718264791,41.350140011],[-71.718274111,41.350204282],[-71.718272207,41.350270427],[-71.7182273,41.350319707],[-71.718151522,41.350340343],[-71.718104903,41.350385669],[-71.718071291,41.35039081],[-71.718075744,41.35033374],[-71.718077665,41.350263661],[-71.718056311,41.350194906],[-71.718034925,41.3501345],[-71.718010109,41.350074123],[-71.717987001,41.35001635],[-71.718010428,41.349951491],[-71.718009752,41.349885373],[-71.717978907,41.349828209],[-71.717947078,41.349812603],[-71.717870424,41.349825442],[-71.717781813,41.349792882],[-71.717708754,41.349755123],[-71.717644314,41.349707697],[-71.717600513,41.349660918],[-71.717575709,41.349594686],[-71.717569821,41.349540174],[-71.717529521,41.349477882],[-71.717483143,41.349431726],[-71.71745575,41.349381073],[-71.717433521,41.349322635],[-71.717395751,41.349263541],[-71.717364022,41.349205121],[-71.717325426,41.349153163],[-71.717303191,41.349092804],[-71.71725258,41.349042104],[-71.717188927,41.349012218],[-71.717113283,41.348972497],[-71.717048774,41.348940623],[-71.717004813,41.348954817],[-71.716974522,41.349018386],[-71.71695285,41.349072813],[-71.716913957,41.349132464],[-71.716864709,41.349199842],[-71.716829297,41.349247799],[-71.716793003,41.349295095],[-71.716749782,41.34935862],[-71.716706601,41.349415672],[-71.716659129,41.349460359],[-71.716613389,41.349505705],[-71.716576212,41.349561442],[-71.716532167,41.349605528],[-71.71649589,41.34965797],[-71.716487117,41.349721544],[-71.716504174,41.34979488],[-71.716544454,41.349860466],[-71.716578717,41.349923456],[-71.71660354,41.34998644],[-71.716585256,41.350055841],[-71.716541189,41.350111568],[-71.716494559,41.350172468],[-71.716447076,41.35023209],[-71.716397833,41.350292332],[-71.716334834,41.35034089],[-71.71627188,41.35038492],[-71.716204609,41.350426991],[-71.71611497,41.350469035],[-71.716022757,41.350503949],[-71.715931423,41.350529095],[-71.715857339,41.350548445],[-71.715778955,41.350552229],[-71.715720376,41.350570315],[-71.715666937,41.350591661],[-71.715591128,41.350594136],[-71.715514528,41.350595972],[-71.71543532,41.350598453],[-71.715372314,41.350654787],[-71.715324799,41.350714408],[-71.715269554,41.350777268],[-71.715216852,41.350847236],[-71.715168451,41.350914635],[-71.715124363,41.350982688],[-71.715096677,41.351036532],[-71.71504575,41.351083168],[-71.714989671,41.351123297],[-71.714944776,41.351177081],[-71.714905004,41.351228911],[-71.714861878,41.351276196],[-71.714781782,41.351276712],[-71.714708585,41.35127989],[-71.714655043,41.351288338],[-71.714631047,41.351292087],[-71.714561272,41.351311452],[-71.714493213,41.351336004],[-71.714427678,41.351370958],[-71.714373326,41.35141042],[-71.714325827,41.35145705],[-71.714277467,41.351509536],[-71.714199945,41.351536027],[-71.714099993,41.351562492],[-71.714002648,41.351578522],[-71.713905331,41.351584924],[-71.713796033,41.351575018],[-71.713715087,41.351575534],[-71.713611776,41.351577304],[-71.713516232,41.351559642],[-71.71342075,41.351532901],[-71.713338164,41.35151462],[-71.713267495,41.351530097],[-71.713177113,41.351522169],[-71.713097902,41.351514905],[-71.713022206,41.351505737],[-71.712948232,41.351475754],[-71.712875983,41.351443868],[-71.712776185,41.351415168],[-71.71270391,41.351394283],[-71.712619603,41.351359767],[-71.71253872,41.351342123],[-71.712459548,41.351337467],[-71.712419116,41.351327044],[-71.712358101,41.351277642],[-71.712271211,41.351251569],[-71.712185092,41.351257286],[-71.712106715,41.351263651],[-71.712031862,41.351252491],[-71.711963027,41.35123423],[-71.711910605,41.351195218],[-71.711848727,41.351151031],[-71.711791147,41.351112669],[-71.711734478,41.351055482],[-71.711709652,41.350999633],[-71.711670212,41.350939235],[-71.711641089,41.350887281],[-71.711634328,41.350833456],[-71.711594901,41.350776947],[-71.711548562,41.350751097],[-71.711529558,41.350740497],[-71.711455518,41.350726774],[-71.711361682,41.350729874],[-71.711261796,41.350739434],[-71.71117913,41.350742582],[-71.711108556,41.350730773],[-71.711079431,41.350678178],[-71.711007216,41.350637853],[-71.710917689,41.350631224],[-71.710859125,41.350625934],[-71.710848105,41.350568824],[-71.710862895,41.350515005],[-71.710864786,41.350452085],[-71.710838181,41.350418308],[-71.710766692,41.350424042],[-71.710672843,41.350432333],[-71.710581546,41.350451025],[-71.710531486,41.350494411],[-71.710478798,41.350551409],[-71.710419267,41.350594812],[-71.710402809,41.350639531],[-71.71043364,41.350703786],[-71.710472191,41.350771344],[-71.710515099,41.350825263],[-71.710590807,41.350838344],[-71.710688979,41.350833933],[-71.710782799,41.350844442],[-71.710844687,41.35088282],[-71.71087639,41.350934792],[-71.710878846,41.350990592],[-71.710920019,41.351042547],[-71.710949132,41.351100996],[-71.710958504,41.35113668],[-71.710942865,41.3511905],[-71.710960006,41.351225575],[-71.71103496,41.351212058],[-71.711113341,41.351197255],[-71.711173628,41.351190877],[-71.711181489,41.351134418],[-71.711125689,41.351083085],[-71.711088833,41.351033089],[-71.711074332,41.350969467],[-71.711133006,41.350924144],[-71.71122001,41.350910651],[-71.711291543,41.350880902],[-71.711343253,41.350859583],[-71.711357932,41.350846658],[-71.711424127,41.350874621],[-71.711462825,41.350893487],[-71.711423147,41.350937563],[-71.711493647,41.35095454],[-71.711549299,41.350978704],[-71.711552125,41.350979933],[-71.711549355,41.350996085],[-71.711541639,41.351040903],[-71.711495979,41.351065481],[-71.71142282,41.351052396],[-71.711363435,41.351037388],[-71.71134531,41.351063974],[-71.711370102,41.351118497],[-71.711361356,41.351173609],[-71.71138014,41.351228784],[-71.71141545,41.351232081],[-71.711468933,41.351195847],[-71.711512754,41.351221862],[-71.711550195,41.351255436],[-71.711559144,41.351263447],[-71.711607233,41.351314131],[-71.711612237,41.351369263],[-71.711625888,41.351423143],[-71.711608623,41.351434153],[-71.711568309,41.351375701],[-71.711550507,41.351351994],[-71.71152542,41.351318581],[-71.71148069,41.351302265],[-71.711410905,41.351319043],[-71.711339395,41.351337082],[-71.711267893,41.351357751],[-71.711187727,41.351383559],[-71.711127364,41.351423053],[-71.711048132,41.351428115],[-71.710977463,41.35146239],[-71.710915373,41.351493471],[-71.710879112,41.351524527],[-71.710857523,41.351549816],[-71.710792122,41.351542571],[-71.710730014,41.351577494],[-71.710666233,41.351611139],[-71.710605849,41.351653857],[-71.710573843,41.351714797],[-71.710555583,41.351775117],[-71.710500472,41.35177762],[-71.71042392,41.351747662],[-71.710352483,41.351741709],[-71.710288668,41.351783793],[-71.710239458,41.35182784],[-71.710193701,41.351869937],[-71.710149677,41.351912671],[-71.71009961,41.351963878],[-71.710023797,41.351984531],[-71.709948008,41.351984395],[-71.70988179,41.351958992],[-71.709873655,41.351940139],[-71.70986809,41.351927159],[-71.709956833,41.35190655],[-71.71002667,41.351877446],[-71.710081049,41.35182694],[-71.710119077,41.351769237],[-71.710145904,41.351711554],[-71.710177056,41.351658392],[-71.710197032,41.351603306],[-71.710229041,41.351543006],[-71.710253291,41.351485946],[-71.710217223,41.351445005],[-71.710157804,41.351457235],[-71.710118064,41.35151103],[-71.710045718,41.351514799],[-71.709981183,41.351503024],[-71.709905501,41.351469839],[-71.709827131,41.351469045],[-71.709768519,41.351505973],[-71.709715865,41.351545452],[-71.709640021,41.351575185],[-71.709558154,41.351600995],[-71.709490103,41.351619072],[-71.709417761,41.351624144],[-71.709323051,41.351620131],[-71.70925162,41.351606378],[-71.709167323,41.351574467],[-71.709105433,41.351545168],[-71.709038362,41.35151844],[-71.708978168,41.351487879],[-71.708913704,41.351450809],[-71.708856974,41.35141178],[-71.708820954,41.351357254],[-71.708811656,41.35129687],[-71.70878244,41.351272222],[-71.708759226,41.351264374],[-71.708792123,41.351206017],[-71.708786214,41.351152168],[-71.708745897,41.351101514],[-71.708679683,41.351076728],[-71.708654792,41.351037756],[-71.708734108,41.351002232],[-71.708806529,41.350965347],[-71.708858329,41.350914824],[-71.70889031,41.350864268],[-71.708916305,41.350811755],[-71.70894229,41.350746939],[-71.708945031,41.350683331],[-71.708945189,41.350628213],[-71.708945342,41.350571791],[-71.7089455,41.350516604],[-71.708958556,41.350461485],[-71.709001751,41.350415482],[-71.709072368,41.350393558],[-71.709141329,41.35037548],[-71.709217146,41.350356771],[-71.709284358,41.350332886],[-71.709298224,41.350303061],[-71.709254345,41.350286765],[-71.7091665,41.350302843],[-71.709083798,41.350313742],[-71.709004606,41.350321411],[-71.708916744,41.350322599],[-71.708845317,41.35030951],[-71.708816203,41.350250419],[-71.70878368,41.350188087],[-71.708728699,41.350145168],[-71.708698635,41.350111397],[-71.708736677,41.350058268],[-71.708691147,41.350019265],[-71.708606848,41.349986027],[-71.708538094,41.349945053],[-71.708533041,41.349902225],[-71.708594284,41.349862754],[-71.708674432,41.349831779],[-71.708734804,41.349794871],[-71.708800336,41.34974892],[-71.708878771,41.349732814],[-71.708957959,41.349733539],[-71.709040604,41.349733686],[-71.709112899,41.349742909],[-71.709179143,41.349767649],[-71.709254885,41.349772977],[-71.709330647,41.349775035],[-71.709336812,41.34972894],[-71.709254189,41.349707409],[-71.709183659,41.349689789],[-71.709105336,41.349674746],[-71.709026148,41.349664255],[-71.708951269,41.349653779],[-71.708912588,41.349630338],[-71.708950634,41.34957849],[-71.708995507,41.349535732],[-71.709031857,41.349475448],[-71.709077643,41.349414552],[-71.709106229,41.349356203],[-71.709133062,41.349290721],[-71.709182233,41.349253833],[-71.709265705,41.349275363],[-71.709309622,41.349265677],[-71.709348546,41.349204131],[-71.709371948,41.349147735],[-71.709309233,41.349097008],[-71.709261142,41.349054121],[-71.709208727,41.349016389],[-71.709159752,41.348972246],[-71.709097019,41.348934487],[-71.709043525,41.348881959],[-71.708995106,41.348840811],[-71.708942263,41.348801821],[-71.708863926,41.348781974],[-71.708759281,41.348782759],[-71.708685886,41.348780399],[-71.708609904,41.348747077],[-71.708544837,41.348719659],[-71.708505054,41.348702715],[-71.708506187,41.348639316],[-71.708555007,41.348587403],[-71.708609549,41.348550231],[-71.708673853,41.348509565],[-71.708738115,41.348465514],[-71.708799782,41.348426248],[-71.708858928,41.348395745],[-71.708915118,41.348351823],[-71.708907506,41.348296651],[-71.708878015,41.34822361],[-71.708856674,41.348155792],[-71.708854122,41.34808842],[-71.70886579,41.348016791],[-71.708893576,41.347945613],[-71.708922348,41.347879144],[-71.708944303,41.347826251],[-71.708973385,41.34777124],[-71.708999763,41.347715594],[-71.709022523,41.347657964],[-71.709040859,41.34760247],[-71.709040277,41.347543808],[-71.70902968,41.347475856],[-71.709010939,41.347404648],[-71.708991355,41.347335477],[-71.708979143,41.347274984],[-71.708975676,41.347206287],[-71.708974207,41.347145637],[-71.708988088,41.347092163],[-71.709047441,41.347031997],[-71.709100154,41.346992839],[-71.709162735,41.346954943],[-71.70923349,41.346920234],[-71.709307971,41.346892928],[-71.709371745,41.346867746],[-71.70944247,41.34683306],[-71.709517584,41.346794912],[-71.709599296,41.346770201],[-71.709706435,41.346762618],[-71.709782563,41.346766276],[-71.70987951,41.34677909],[-71.709953704,41.34677605],[-71.710014426,41.346736099],[-71.71004035,41.346662271],[-71.71005335,41.346608799],[-71.710056482,41.346554178],[-71.710045109,41.346490275],[-71.710039921,41.346424944],[-71.710038207,41.346354185],[-71.71003762,41.34629422],[-71.710045003,41.34623074],[-71.710103654,41.34617938],[-71.710155102,41.346124694],[-71.710225754,41.346086669],[-71.710323018,41.346075856],[-71.710394619,41.346078218],[-71.71054954,41.346084156],[-71.710593047,41.346070743],[-71.710602112,41.346001863],[-71.710606933,41.345943831],[-71.710642298,41.345890067],[-71.71071011,41.345846648],[-71.710794244,41.345811091],[-71.710859208,41.345760291],[-71.710913192,41.345701552],[-71.710957227,41.345635604],[-71.710986629,41.345558293],[-71.711010368,41.345504046],[-71.711040327,41.34544901],[-71.711078822,41.345377698],[-71.711087784,41.345305433],[-71.711086177,41.345240072],[-71.711084672,41.345178073],[-71.71108587,41.345154445],[-71.711115896,41.345101445],[-71.711080963,41.345063521],[-71.710992267,41.345057989],[-71.710913544,41.34505843],[-71.710829974,41.345042734],[-71.710759295,41.345005973],[-71.710725733,41.344950459],[-71.710725217,41.344893833],[-71.710738246,41.344840429],[-71.710737691,41.344781104],[-71.710736086,41.344716406],[-71.71073465,41.344657082],[-71.710749125,41.344590823],[-71.710775533,41.344535885],[-71.710805459,41.344480163],[-71.71086151,41.344432215],[-71.710892444,41.34441624],[-71.710971164,41.344415158],[-71.711069763,41.344423897],[-71.711158662,41.34443613],[-71.711245851,41.344454472],[-71.711315372,41.344480486],[-71.711321337,41.344541745],[-71.711285648,41.344617078],[-71.711250147,41.344666109],[-71.711197925,41.344724799],[-71.711119446,41.344772422],[-71.711062314,41.344814312],[-71.711053,41.344871757],[-71.711078484,41.344925341],[-71.711135684,41.34496096],[-71.711145084,41.345014735],[-71.71115909,41.345038174],[-71.711239293,41.345026249],[-71.711321249,41.345012284],[-71.711393899,41.345020041],[-71.711466617,41.345030497],[-71.711530076,41.34503994],[-71.711541159,41.345041589],[-71.711549235,41.345042832],[-71.711633232,41.345040345],[-71.71171322,41.345018311],[-71.711797492,41.344988173],[-71.711899148,41.344975246],[-71.711995504,41.344965829],[-71.71207816,41.344943104],[-71.712148671,41.344899634],[-71.712210022,41.344848908],[-71.712266874,41.344795538],[-71.712313652,41.344733564],[-71.712320959,41.344666037],[-71.712295966,41.344595573],[-71.712262578,41.344547492],[-71.71222473,41.34449951],[-71.712186914,41.344452147],[-71.712150298,41.344381864],[-71.712105641,41.344311734],[-71.712053928,41.344246396],[-71.712014817,41.344183529],[-71.711979184,41.344116606],[-71.711953314,41.344046876],[-71.711923193,41.343985935],[-71.711861224,41.343939599],[-71.711779413,41.343923215],[-71.711713858,41.343912677],[-71.711698972,41.343889285],[-71.711710004,41.343828475],[-71.711757061,41.343777913],[-71.711804643,41.343711181],[-71.711837661,41.343635921],[-71.711876992,41.343561177],[-71.711917937,41.343516115],[-71.711972328,41.343471554],[-71.712035646,41.343428875],[-71.712104432,41.343387467],[-71.712175012,41.343347405],[-71.712242116,41.343311398],[-71.712301212,41.343276868],[-71.712344371,41.343212911],[-71.712342621,41.343141444],[-71.712344598,41.343077357],[-71.712366754,41.343031232],[-71.712406645,41.342979471],[-71.712449106,41.342924915],[-71.712489872,41.34287178],[-71.712534329,41.34282463],[-71.712585247,41.342785473],[-71.712659055,41.342730516],[-71.712696073,41.342672722],[-71.712720408,41.342606284],[-71.712751631,41.342530364],[-71.712766414,41.342475539],[-71.712780187,41.34241804],[-71.71278416,41.342361359],[-71.712778829,41.342289967],[-71.712716856,41.342242305],[-71.712637929,41.342197556],[-71.71258892,41.342132831],[-71.712547882,41.342064661],[-71.712497041,41.341996601],[-71.712462252,41.341927641],[-71.712462226,41.341854158],[-71.712464378,41.341797481],[-71.712462976,41.341739575],[-71.712461611,41.341683636],[-71.712457577,41.341628388],[-71.712427953,41.341551918],[-71.712406646,41.341485495],[-71.712373821,41.341423257],[-71.712283662,41.341358448],[-71.712234158,41.341309253],[-71.712227985,41.34123992],[-71.712263206,41.341180095],[-71.71228319,41.341119794],[-71.712303986,41.341056816],[-71.712345177,41.340985475],[-71.71237973,41.340935096],[-71.712413368,41.340883415],[-71.712438932,41.340831108],[-71.712462216,41.34075868],[-71.712472062,41.340688403],[-71.712470417,41.34062103],[-71.712440223,41.340556041],[-71.712392515,41.340508193],[-71.712348348,41.340457547],[-71.712313101,41.340406153],[-71.712282314,41.340354683],[-71.712257744,41.340301737],[-71.712240298,41.340246697],[-71.712218922,41.340177552],[-71.712227178,41.340112722],[-71.712269245,41.340040007],[-71.712301384,41.339966076],[-71.7123392,41.339902175],[-71.712385377,41.3398523],[-71.712389524,41.339802343],[-71.712343565,41.339751106],[-71.712299193,41.339693051],[-71.712297548,41.339625677],[-71.712341652,41.339563708],[-71.712402227,41.339518381],[-71.712471151,41.339483696],[-71.712538528,41.339458483],[-71.712604078,41.339431306],[-71.71268182,41.339392465],[-71.712752326,41.339349681],[-71.712775607,41.339314303],[-71.7127741,41.339252281],[-71.712768244,41.339196442],[-71.712738051,41.339131431],[-71.712693329,41.339059265],[-71.712639054,41.338997981],[-71.712579618,41.338945557],[-71.712529377,41.338902424],[-71.71245909,41.338881856],[-71.712399054,41.338840891],[-71.71236813,41.338784023],[-71.712352125,41.338714801],[-71.712350272,41.338639331],[-71.712340203,41.338557222],[-71.712323705,41.338504169],[-71.712294217,41.33843177],[-71.712280077,41.338366592],[-71.712275796,41.338300572],[-71.712276615,41.338225738],[-71.712281784,41.338144744],[-71.712283613,41.338072606],[-71.712313114,41.337999412],[-71.71232288,41.337923075],[-71.712320955,41.33784422],[-71.712311943,41.337769542],[-71.71229141,41.337698338],[-71.712288079,41.337635038],[-71.71228661,41.337575028],[-71.712276048,41.337509112],[-71.712221705,41.337445151],[-71.712167644,41.337393312],[-71.71214286,41.33733028],[-71.712180679,41.337267751],[-71.712248511,41.337224332],[-71.71233594,41.337179321],[-71.712405073,41.337153396],[-71.712474275,41.337130169],[-71.712568263,41.337095849],[-71.712641612,41.337060447],[-71.71270527,41.337030575],[-71.712782649,41.337011953],[-71.712877688,41.336983669],[-71.712944154,41.336959143],[-71.713007777,41.336927944],[-71.713067712,41.336892041],[-71.713124869,41.336850768],[-71.713177367,41.336804884],[-71.713227187,41.336756306],[-71.713277008,41.336708437],[-71.713325039,41.336660571],[-71.713369457,41.336612072],[-71.713402224,41.336563777],[-71.713432806,41.336497281],[-71.713457277,41.336436262],[-71.713495164,41.336376408],[-71.713538526,41.336320524],[-71.713564902,41.336266912],[-71.71359401,41.336213226],[-71.713624839,41.336157502],[-71.713649101,41.336162557],[-71.713696842,41.336211777],[-71.713732931,41.33626118],[-71.713769192,41.336316619],[-71.713795592,41.336372214],[-71.713820551,41.336441969],[-71.713861376,41.336501402],[-71.713902906,41.336553447],[-71.713903921,41.336631594],[-71.713899002,41.336686264],[-71.71389682,41.336742919],[-71.713896955,41.336821159],[-71.713894421,41.336900044],[-71.713895825,41.336958019],[-71.713897328,41.337018669],[-71.713904239,41.337081253],[-71.71391807,41.337134996],[-71.713950155,41.337203319],[-71.71395819,41.337275347],[-71.713928659,41.337347879],[-71.713880869,41.337404504],[-71.713828238,41.337447049],[-71.713803552,41.337497936],[-71.713780904,41.337522519],[-71.713748009,41.337531728],[-71.713663645,41.337520792],[-71.713590613,41.337495542],[-71.71352029,41.337509989],[-71.713469798,41.337566642],[-71.713480292,41.337592786],[-71.713568344,41.337608404],[-71.71364067,41.337640448],[-71.71371313,41.337676495],[-71.713799714,41.337706981],[-71.713872529,41.337758556],[-71.713910055,41.3378295],[-71.713909838,41.337892851],[-71.713876761,41.337929757],[-71.713799728,41.337924732],[-71.713710483,41.337896973],[-71.713622926,41.337865871],[-71.713540771,41.337834645],[-71.713468833,41.337819455],[-71.713390777,41.337844826],[-71.713338956,41.337884648],[-71.713292784,41.337935187],[-71.713246683,41.337989109],[-71.713201525,41.338043625],[-71.713166972,41.338093318],[-71.713133718,41.338159865],[-71.713128938,41.338219955],[-71.713170155,41.33825981],[-71.71320481,41.338250552],[-71.713248384,41.338203427],[-71.713255263,41.338191201],[-71.713335207,41.338204958],[-71.713418245,41.338236777],[-71.713498117,41.33824715],[-71.713573914,41.338273059],[-71.713604879,41.338332625],[-71.713588796,41.33840703],[-71.713548515,41.338477683],[-71.713517119,41.338546193],[-71.713548052,41.338605096],[-71.713612155,41.338664875],[-71.713666991,41.338711979],[-71.713661092,41.338763974],[-71.713599187,41.338828882],[-71.713541994,41.338868806],[-71.71347402,41.338906119],[-71.713403372,41.338942157],[-71.713334411,41.338974807],[-71.713265312,41.339002082],[-71.713203378,41.33903058],[-71.713123148,41.339078207],[-71.713046391,41.339121072],[-71.712997689,41.339177721],[-71.713006991,41.339229506],[-71.71306464,41.339245546],[-71.713157611,41.339242881],[-71.713261815,41.339260344],[-71.713330312,41.339280937],[-71.713400535,41.339300179],[-71.713477602,41.339305868],[-71.7135605,41.339294599],[-71.713641393,41.339273248],[-71.71371594,41.33925065],[-71.713786966,41.339228059],[-71.713859785,41.339206129],[-71.713933589,41.339188267],[-71.714034494,41.339180783],[-71.714121358,41.339184967],[-71.714197968,41.339171766],[-71.714246742,41.339118523],[-71.714271217,41.339058854],[-71.714276627,41.338987305],[-71.714264208,41.338920089],[-71.714230784,41.33886995],[-71.714211545,41.338814273],[-71.714229103,41.338801227],[-71.714296655,41.338820495],[-71.714370131,41.338860588],[-71.714403733,41.3389188],[-71.714405589,41.338994246],[-71.714406636,41.339073148],[-71.714373555,41.339145732],[-71.714320925,41.339188918],[-71.714247963,41.339241199],[-71.714200035,41.33929309],[-71.714207828,41.339319285],[-71.71429016,41.339320161],[-71.714331307,41.339319582],[-71.714411116,41.339328558],[-71.714437021,41.339362587],[-71.714424063,41.33941805],[-71.714374908,41.339493568],[-71.714338739,41.339550058],[-71.714303514,41.339607826],[-71.71427093,41.339665566],[-71.714243649,41.339721238],[-71.714223034,41.339792312],[-71.71420565,41.339849201],[-71.714168433,41.339900935],[-71.714112389,41.339948953],[-71.714045573,41.33999706],[-71.713980333,41.340035695],[-71.713933843,41.340072764],[-71.713936759,41.340082821],[-71.713982752,41.340097693],[-71.714065929,41.340097195],[-71.714154795,41.340073039],[-71.714229757,41.34002885],[-71.714285873,41.339984263],[-71.714319407,41.339929174],[-71.714341245,41.339870218],[-71.714372991,41.339815864],[-71.714422848,41.339769298],[-71.714478293,41.339732808],[-71.714551181,41.339713598],[-71.714577094,41.339712544],[-71.714577339,41.339722652],[-71.714562237,41.339799731],[-71.714551982,41.339855829],[-71.71454534,41.33991256],[-71.714546809,41.339971838],[-71.714548144,41.340027114],[-71.714568434,41.340088163],[-71.714635561,41.340125683],[-71.714692159,41.340098568],[-71.714746065,41.340037174],[-71.714793639,41.339969777],[-71.714838866,41.339917891],[-71.714905506,41.339899424],[-71.715001362,41.339906198],[-71.715106197,41.339912108],[-71.715189868,41.339932535],[-71.715235227,41.33999459],[-71.715277287,41.340068177],[-71.715335146,41.340129385],[-71.715409931,41.34015127],[-71.715506692,41.340156646],[-71.715582889,41.340165057],[-71.715661884,41.340175384],[-71.715741618,41.340179671],[-71.715828381,41.340180492],[-71.715915172,41.340180604],[-71.715991223,41.340181559],[-71.71608237,41.340177614],[-71.716160212,41.340142133],[-71.716220533,41.340084683],[-71.71627071,41.340015862],[-71.716301224,41.339947376],[-71.716322081,41.339885724],[-71.716336793,41.339828885],[-71.716344345,41.339772815],[-71.716343685,41.339710792],[-71.716358501,41.339658001],[-71.71641566,41.339617459],[-71.71647089,41.339571545],[-71.716476542,41.339546491],[-71.71641057,41.339519102],[-71.716359208,41.339541383],[-71.71628846,41.339574724],[-71.716212964,41.339594649],[-71.71611736,41.339599357],[-71.716015824,41.339618301],[-71.715948448,41.339643517],[-71.715890334,41.339680081],[-71.715836474,41.339745524],[-71.715795882,41.33980408],[-71.715744973,41.339844565],[-71.715730683,41.339845438],[-71.715694906,41.339808843],[-71.715662852,41.339741893],[-71.715599867,41.339690872],[-71.715514367,41.339667796],[-71.715419359,41.339660358],[-71.715328426,41.339673747],[-71.715260033,41.339694253],[-71.715189458,41.339697289],[-71.715156283,41.339658608],[-71.71517605,41.339588221],[-71.715231669,41.339522044],[-71.715269765,41.339470331],[-71.715298906,41.339417995],[-71.715339118,41.339345305],[-71.71538311,41.339277915],[-71.715421944,41.339220071],[-71.715483636,41.339182814],[-71.715558943,41.339188527],[-71.715649498,41.339198695],[-71.715720665,41.339182209],[-71.715794013,41.339146119],[-71.715857916,41.33908928],[-71.715887898,41.339034243],[-71.715922417,41.338983863],[-71.715989688,41.338954623],[-71.716062541,41.338934063],[-71.716145223,41.338912683],[-71.716168088,41.338898872],[-71.716055981,41.338849888],[-71.715969782,41.338835573],[-71.715898513,41.33884872],[-71.71584265,41.338904766],[-71.715797038,41.338977557],[-71.71574479,41.3390349],[-71.715676502,41.339059431],[-71.715606422,41.339046961],[-71.715533783,41.33900346],[-71.715457839,41.338970165],[-71.715371782,41.338961933],[-71.715323049,41.338944368],[-71.71531315,41.338905415],[-71.71535251,41.33886916],[-71.715431969,41.338864003],[-71.715508403,41.338880441],[-71.71558631,41.338883428],[-71.715659096,41.33886081],[-71.715697262,41.338812413],[-71.715701795,41.338742283],[-71.715700918,41.338669442],[-71.715722689,41.338609137],[-71.715727504,41.338551105],[-71.71570935,41.338502814],[-71.715621119,41.338516221],[-71.715549957,41.338534056],[-71.715476606,41.338532364],[-71.715424326,41.338515561],[-71.715495645,41.338471424],[-71.715513266,41.338422654],[-71.715491892,41.338354837],[-71.715488799,41.338300296],[-71.715486414,41.338239671],[-71.715477642,41.338174369],[-71.715458968,41.338106524],[-71.715439586,41.338044764],[-71.715437274,41.3379875],[-71.715436401,41.337916054],[-71.715400939,41.337855216],[-71.715337429,41.337819039],[-71.715271109,41.337777447],[-71.715215462,41.337733091],[-71.715170489,41.337686519],[-71.715148937,41.337610651],[-71.715159999,41.337551144],[-71.715164604,41.337484354],[-71.715163801,41.337415606],[-71.715162292,41.337353607],[-71.71515998,41.33729632],[-71.71517434,41.337224685],[-71.715222793,41.337157927],[-71.715268479,41.337089207],[-71.715303307,41.337013188],[-71.715321674,41.336960346],[-71.715340071,41.336907503],[-71.715378447,41.336830838],[-71.715407416,41.336772418],[-71.715418515,41.336714969],[-71.715428806,41.336660884],[-71.715469637,41.336611109],[-71.715521493,41.336573321],[-71.715578759,41.336538108],[-71.715661937,41.336502571],[-71.715745212,41.33650548],[-71.715827015,41.336521839],[-71.715919243,41.33652528],[-71.716007511,41.336514639],[-71.716073198,41.336493475],[-71.716147698,41.336503878],[-71.716236209,41.33650266],[-71.716327593,41.336471018],[-71.71638816,41.336425026],[-71.716389495,41.336369722],[-71.716361375,41.336317539],[-71.71634551,41.336255063],[-71.716338699,41.336195818],[-71.716270558,41.336153659],[-71.716212557,41.336159165],[-71.716137529,41.336199993],[-71.716061793,41.336246883],[-71.71600074,41.336274693],[-71.715921397,41.336249525],[-71.715865786,41.336206472],[-71.715817128,41.336155905],[-71.715769279,41.336101974],[-71.715716092,41.336048808],[-71.715656726,41.335999062],[-71.715597569,41.335957411],[-71.715543007,41.335919754],[-71.715473002,41.335873526],[-71.71542684,41.335815544],[-71.71545999,41.335746275],[-71.715528698,41.335702853],[-71.715581498,41.335666389],[-71.715580762,41.3355997],[-71.715590138,41.335544244],[-71.715636346,41.335496427],[-71.715714429,41.335471054],[-71.715802585,41.335491404],[-71.715882381,41.335534777],[-71.715946208,41.335584469],[-71.715992549,41.335650547],[-71.716030042,41.335720141],[-71.716076874,41.335769362],[-71.716166714,41.335784951],[-71.71625937,41.335807945],[-71.716322317,41.335857639],[-71.716360827,41.335931896],[-71.716370512,41.335997836],[-71.71632417,41.336041652],[-71.716346636,41.336081771],[-71.716395083,41.336123578],[-71.716468568,41.336130004],[-71.716552725,41.336097141],[-71.716635053,41.336061582],[-71.716711905,41.336058464],[-71.71676931,41.336102176],[-71.716812702,41.336156847],[-71.716857742,41.336205431],[-71.716928661,41.336252319],[-71.716997939,41.336270874],[-71.717083004,41.336273732],[-71.717169546,41.336264444],[-71.717252365,41.336249124],[-71.717321639,41.336229942],[-71.717356852,41.336206548],[-71.717319146,41.336164583],[-71.717228179,41.336138888],[-71.717150867,41.336122452],[-71.717081527,41.336103235],[-71.71700194,41.336068576],[-71.71696413,41.336022608],[-71.71693383,41.335953596],[-71.716917298,41.335900568],[-71.716921653,41.335822982],[-71.716950235,41.335749079],[-71.716999633,41.335684331],[-71.717052261,41.335641807],[-71.717136027,41.335628498],[-71.717206948,41.335639639],[-71.717281619,41.335656148],[-71.717354511,41.335676045],[-71.717426689,41.335699969],[-71.71751274,41.335743901],[-71.717580148,41.33579354],[-71.717583375,41.335851465],[-71.717526886,41.335918994],[-71.717469306,41.335977789],[-71.71743929,41.336030791],[-71.717447992,41.336092708],[-71.717509115,41.336104646],[-71.717605074,41.336080359],[-71.71769267,41.336041405],[-71.717765589,41.336023519],[-71.717850584,41.336023678],[-71.717925476,41.336015212],[-71.71793211,41.335993564],[-71.717911746,41.335965517],[-71.717852797,41.335931963],[-71.717817791,41.33588997],[-71.71785856,41.335840241],[-71.717863928,41.335803043],[-71.717824432,41.33576115],[-71.717747513,41.335725801],[-71.717676061,41.335691744],[-71.717628424,41.33564726],[-71.717591489,41.335599919],[-71.717534261,41.33556364],[-71.717493815,41.335519004],[-71.717447967,41.335473807],[-71.717384142,41.335424824],[-71.717303501,41.335383466],[-71.717205231,41.33535113],[-71.717117393,41.335307864],[-71.717053392,41.335251472],[-71.717026675,41.335183093],[-71.717042158,41.335121496],[-71.717032646,41.335062302],[-71.716976192,41.335021333],[-71.716902082,41.334954256],[-71.716865676,41.334892071],[-71.716893941,41.334841771],[-71.716959626,41.334784242],[-71.717022579,41.334726078],[-71.71709118,41.334678583],[-71.717183058,41.334668553],[-71.717289043,41.334685231],[-71.717360948,41.334700419],[-71.717440819,41.334747839],[-71.717495237,41.334815181],[-71.717533996,41.334863822],[-71.717572927,41.33491857],[-71.71760649,41.334974082],[-71.717636368,41.335025576],[-71.717662664,41.335076436],[-71.717688114,41.33512867],[-71.717721082,41.335196945],[-71.717725257,41.335256904],[-71.717717112,41.335289373],[-71.717680105,41.335311467],[-71.717592055,41.33533224],[-71.717505236,41.33533078],[-71.717430632,41.335316307],[-71.717407597,41.335324058],[-71.717449374,41.335386141],[-71.717513273,41.335439172],[-71.717560141,41.335489764],[-71.717637027,41.335524428],[-71.717738206,41.335527759],[-71.717812041,41.335511861],[-71.717884887,41.335490637],[-71.717957744,41.335472751],[-71.718029819,41.335456948],[-71.718102561,41.335431653],[-71.718172674,41.335409747],[-71.718266589,41.335373388],[-71.718358117,41.335349177],[-71.718460244,41.335355181],[-71.71853046,41.335373047],[-71.7185965,41.33540382],[-71.718652958,41.335445497],[-71.718698879,41.335494079],[-71.71873683,41.335545443],[-71.718772117,41.335598893],[-71.718796719,41.335651128],[-71.718801215,41.33572522],[-71.718774462,41.33580111],[-71.718721135,41.335851733],[-71.718650606,41.33589452],[-71.718574521,41.335927256],[-71.718498059,41.33594723],[-71.718425069,41.335961731],[-71.718353729,41.335970809],[-71.718251099,41.335978322],[-71.71815273,41.335980361],[-71.718064291,41.335984965],[-71.718042314,41.336000811],[-71.718064505,41.336030821],[-71.718121906,41.336073137],[-71.718183029,41.336121529],[-71.718234391,41.336172708],[-71.71827761,41.336220654],[-71.718327781,41.3362604],[-71.718381495,41.336298057],[-71.718438653,41.336367361],[-71.718457995,41.336425759],[-71.718471902,41.336482886],[-71.71847506,41.33653809],[-71.718469267,41.336593448],[-71.718447362,41.336649042],[-71.718411866,41.336696726],[-71.718330765,41.336745068],[-71.718260546,41.336762903],[-71.718183867,41.336772723],[-71.718106244,41.33678124],[-71.718024085,41.336785742],[-71.717940002,41.336786244],[-71.71786571,41.336783914],[-71.717785031,41.336776954],[-71.717710881,41.336744298],[-71.717665911,41.336699077],[-71.717628692,41.336639592],[-71.717598396,41.336571906],[-71.71757979,41.336506806],[-71.717570308,41.336447612],[-71.717566131,41.336387013],[-71.7175549,41.336367594],[-71.717525334,41.336364654],[-71.717481978,41.336421226],[-71.71743212,41.336466376],[-71.71734663,41.336481746],[-71.717241196,41.336485902],[-71.717167051,41.336490982],[-71.717068142,41.336504502],[-71.716994698,41.336537894],[-71.716956851,41.336599762],[-71.716942103,41.336654588],[-71.716926548,41.336712777],[-71.716915378,41.336766864],[-71.716919624,41.336830162],[-71.717007824,41.336853873],[-71.717077618,41.336890677],[-71.717123083,41.336957465],[-71.717150364,41.337012326],[-71.717162966,41.33708837],[-71.717137682,41.337150054],[-71.717098746,41.33720385],[-71.717105066,41.337242878],[-71.717160993,41.337261641],[-71.717236161,41.337262643],[-71.717320394,41.337233804],[-71.717382147,41.337197895],[-71.717441098,41.337158629],[-71.717495691,41.337122802],[-71.717537508,41.337077736],[-71.717545865,41.337017617],[-71.717558293,41.336976998],[-71.717611028,41.336939162],[-71.717657653,41.336943899],[-71.717689355,41.336996053],[-71.717789416,41.336991289],[-71.717893028,41.336986496],[-71.717994174,41.336988432],[-71.718083524,41.336983803],[-71.718155498,41.337001002],[-71.718231545,41.336965546],[-71.71830893,41.336912545],[-71.718389221,41.336866926],[-71.718473302,41.33682935],[-71.718550967,41.336787807],[-71.71861676,41.336734988],[-71.718676304,41.336682913],[-71.71874898,41.336655605],[-71.718773349,41.33666537],[-71.71877282,41.336715983],[-71.7187711,41.336791505],[-71.718754564,41.336846335],[-71.718703446,41.336913786],[-71.718622349,41.336963478],[-71.718555075,41.336990707],[-71.718481452,41.337016005],[-71.718401475,41.337037998],[-71.718317039,41.337060114],[-71.718227334,41.337085602],[-71.71813496,41.337111872],[-71.718038939,41.337136114],[-71.717940171,41.337155695],[-71.717843975,41.337173213],[-71.717751535,41.337197425],[-71.717659231,41.337226371],[-71.71756956,41.337253231],[-71.717494285,41.337283974],[-71.71744338,41.337324436],[-71.717436849,41.337386543],[-71.71746244,41.337444174],[-71.717462019,41.337500139],[-71.717406226,41.337558199],[-71.717342786,41.337598205],[-71.717271304,41.337638295],[-71.717200797,41.337679069],[-71.717124014,41.337721936],[-71.717044703,41.337770914],[-71.716971781,41.337825186],[-71.716905278,41.337884112],[-71.716846014,41.337948284],[-71.716790433,41.338015789],[-71.716743806,41.338083848],[-71.716713223,41.338149704],[-71.716695106,41.338213341],[-71.716691173,41.338272058],[-71.716700614,41.338327844],[-71.716727506,41.338402969],[-71.716770307,41.338471157],[-71.71680945,41.338534641],[-71.716819667,41.338586424],[-71.716742495,41.338649509],[-71.716766155,41.338701746],[-71.716828478,41.338727176],[-71.716906035,41.338715983],[-71.716984927,41.33872297],[-71.717063468,41.338715823],[-71.71709394,41.338681003],[-71.717069715,41.338641574],[-71.717011541,41.338604633],[-71.716955579,41.338548111],[-71.716950629,41.338492224],[-71.716956282,41.338430783],[-71.716991431,41.33836963],[-71.717038971,41.338302209],[-71.717089279,41.338236796],[-71.717112103,41.338183258],[-71.717105221,41.338121292],[-71.71715466,41.338059288],[-71.717216171,41.338013888],[-71.71726385,41.337951887],[-71.71729436,41.337882715],[-71.717336465,41.337814687],[-71.717392255,41.337755278],[-71.717453942,41.337717333],[-71.717540379,41.337703333],[-71.717629384,41.337685875],[-71.717697356,41.337649176],[-71.71774707,41.33759728],[-71.71779215,41.337538692],[-71.717845556,41.337492758],[-71.717923496,41.337460638],[-71.718006949,41.337434567],[-71.718083417,41.337415943],[-71.718141351,41.337372013],[-71.718168279,41.337302847],[-71.718200792,41.33724307],[-71.718244324,41.337193907],[-71.718328517,41.337162392],[-71.718408674,41.337149158],[-71.718502309,41.337137042],[-71.718596923,41.337127623],[-71.71868863,41.337110844],[-71.718755693,41.337074856],[-71.718801856,41.337022966],[-71.718834512,41.337006346],[-71.718912171,41.337035587],[-71.718959427,41.337101684],[-71.718934397,41.33717549],[-71.718917087,41.337235055],[-71.71896624,41.337269427],[-71.71905735,41.337264794],[-71.719123949,41.337244335],[-71.719192304,41.337222478],[-71.71929002,41.337196837],[-71.719385546,41.337188056],[-71.719461383,41.337216659],[-71.719505411,41.337261196],[-71.71954354,41.337319992],[-71.719576437,41.337384264],[-71.719613726,41.337445784],[-71.719654455,41.337501831],[-71.719697817,41.337555837],[-71.719733244,41.337613998],[-71.719750061,41.337679124],[-71.719753507,41.33774718],[-71.719752278,41.337805846],[-71.719706392,41.337867867],[-71.719631538,41.337915398],[-71.719580241,41.337974776],[-71.719569044,41.338028886],[-71.719538606,41.338100758],[-71.719486085,41.338147995],[-71.719358316,41.338152469],[-71.719346801,41.338157363],[-71.719414879,41.338197554],[-71.719483342,41.338216818],[-71.719534676,41.338268018],[-71.719593628,41.338337295],[-71.719635869,41.338382521],[-71.719714125,41.338435363],[-71.719799094,41.338471954],[-71.719855762,41.33852104],[-71.719863522,41.338581587],[-71.719871425,41.338612493],[-71.719924227,41.338648871],[-71.719975527,41.338698699],[-71.720000138,41.338752924],[-71.719988169,41.338812433],[-71.719998352,41.338826456],[-71.720049083,41.338779223],[-71.720055576,41.33871579],[-71.720056591,41.33864768],[-71.720068494,41.338586844],[-71.720099422,41.33853448],[-71.720151074,41.33849063],[-71.720217567,41.338465414],[-71.720299723,41.338459539],[-71.720391919,41.338461626],[-71.720479027,41.33847525],[-71.720529099,41.338475886],[-71.720515192,41.338419446],[-71.720477905,41.338358613],[-71.720436401,41.338307279],[-71.720392237,41.338258695],[-71.720356104,41.338207305],[-71.720310918,41.338152662],[-71.72026471,41.338091938],[-71.720211199,41.338025304],[-71.72017072,41.337980669],[-71.720132869,41.337932668],[-71.720101235,41.337883213],[-71.720074901,41.337831004],[-71.720056604,41.337777316],[-71.720043966,41.337700633],[-71.720042489,41.337640669],[-71.720041045,41.337581345],[-71.720054105,41.337530639],[-71.720082508,41.337521482],[-71.720102347,41.337600714],[-71.720109373,41.337668717],[-71.720137112,41.337741827],[-71.720179141,41.337814041],[-71.720228261,41.337883451],[-71.720287212,41.33795275],[-71.720348829,41.338020626],[-71.720410307,41.338083151],[-71.720469858,41.338140969],[-71.720524908,41.338196164],[-71.720580878,41.338254011],[-71.72064397,41.3383091],[-71.720718507,41.338356596],[-71.72080018,41.338405337],[-71.720871385,41.338463658],[-71.720936514,41.338528828],[-71.721005157,41.338591911],[-71.721076432,41.33865293],[-71.721145881,41.338711963],[-71.721217858,41.338764884],[-71.721290645,41.338815082],[-71.721371364,41.338859822],[-71.721459912,41.33889565],[-71.721545509,41.338920071],[-71.721626127,41.338925679],[-71.721705019,41.338932663],[-71.721787252,41.338967245],[-71.72187046,41.339003174],[-71.72194823,41.339037147],[-71.722020702,41.339074515],[-71.722091555,41.339118039],[-71.722157112,41.339165643],[-71.722219189,41.339216022],[-71.722283936,41.339266349],[-71.722356652,41.339313185],[-71.722427369,41.339351974],[-71.722492426,41.339377372],[-71.722584659,41.339380784],[-71.722657621,41.339330556],[-71.722692061,41.339276149],[-71.722722775,41.339215025],[-71.722751771,41.339157312],[-71.722785823,41.339087423],[-71.72276033,41.339033131],[-71.722692775,41.338978144],[-71.722652324,41.338933533],[-71.722603203,41.33886481],[-71.722586415,41.338800325],[-71.722568646,41.338733143],[-71.722497123,41.33869774],[-71.722425147,41.338681229],[-71.722346006,41.338663475],[-71.722261357,41.338641042],[-71.722173968,41.338616007],[-71.722085589,41.338585531],[-71.72199971,41.338549653],[-71.721927139,41.338509541],[-71.721866253,41.338469955],[-71.721816048,41.338430211],[-71.721752846,41.338369771],[-71.721698879,41.338321298],[-71.72161637,41.338312332],[-71.72153678,41.338314131],[-71.721451,41.338315989],[-71.721365266,41.338322581],[-71.721282268,41.338330493],[-71.721201025,41.33833703],[-71.721121465,41.338338807],[-71.721047241,41.338339178],[-71.720950235,41.338323675],[-71.72087861,41.33828491],[-71.720831877,41.338239716],[-71.720785913,41.33818846],[-71.720797112,41.338170759],[-71.720860663,41.338173267],[-71.720936044,41.33818298],[-71.720968059,41.338174456],[-71.720935619,41.338129052],[-71.720883587,41.338087298],[-71.720841206,41.338036699],[-71.720816592,41.337981742],[-71.720798225,41.337925355],[-71.720776212,41.337867695],[-71.720752446,41.337812074],[-71.720725651,41.337740311],[-71.720719823,41.337685776],[-71.720739236,41.337638351],[-71.720799444,41.337612529],[-71.720784664,41.337558125],[-71.720746253,41.337487895],[-71.720739052,41.337413167],[-71.720764962,41.337339978],[-71.720800734,41.337266677],[-71.720794515,41.33719531],[-71.72075772,41.337118284],[-71.72074206,41.337063905],[-71.720746094,41.337009236],[-71.720767471,41.336932762],[-71.720797029,41.336861555],[-71.720842704,41.336791483],[-71.720900878,41.336720541],[-71.720950694,41.336672646],[-71.720999707,41.336629486],[-71.72107189,41.336582646],[-71.72114762,41.336570791],[-71.72124694,41.336571423],[-71.721307434,41.336558476],[-71.721319154,41.336524583],[-71.721270389,41.336506403],[-71.72118209,41.336516407],[-71.721090848,41.336517703],[-71.72100792,41.336491858],[-71.720940998,41.33642541],[-71.720905676,41.336371252],[-71.720883801,41.336318348],[-71.72087934,41.336246269],[-71.720887868,41.336192872],[-71.72095366,41.336176462],[-71.721048311,41.336205463],[-71.721108948,41.336234942],[-71.721185979,41.336275686],[-71.721263748,41.3363103],[-71.721347062,41.336351604],[-71.72143055,41.336399632],[-71.721511374,41.336449083],[-71.721585949,41.336499277],[-71.721641702,41.336547038],[-71.721658207,41.336600066],[-71.721651539,41.336656089],[-71.721595862,41.336720257],[-71.721538881,41.336766886],[-71.721474701,41.336811607],[-71.721409437,41.336849606],[-71.721350314,41.33688215],[-71.721292532,41.336934178],[-71.721294177,41.336998898],[-71.721323186,41.337016682],[-71.721379748,41.337025332],[-71.721452136,41.337020939],[-71.721530532,41.337007683],[-71.721612372,41.33698971],[-71.721690703,41.336975104],[-71.72178785,41.336960943],[-71.721862035,41.336958559],[-71.721938571,41.336978378],[-71.721992574,41.337028863],[-71.722047448,41.337076648],[-71.722068482,41.337131612],[-71.722070207,41.337201707],[-71.722071897,41.337270452],[-71.722084435,41.337343751],[-71.7221344,41.337411146],[-71.722190543,41.337475098],[-71.722219546,41.33752657],[-71.72224339,41.337586902],[-71.722264738,41.337654032],[-71.722273557,41.337722009],[-71.722273387,41.337788083],[-71.722266822,41.337847467],[-71.72223621,41.337911953],[-71.722213358,41.337964851],[-71.722238923,41.338022481],[-71.722323781,41.338052987],[-71.72239976,41.338086963],[-71.722466927,41.338126468],[-71.72251668,41.338185104],[-71.722523604,41.338249059],[-71.72251957,41.338303019],[-71.72244317,41.338323681],[-71.722349255,41.338324983],[-71.722252698,41.338325673],[-71.722156854,41.338321604],[-71.722064336,41.338305385],[-71.721990075,41.338267997],[-71.721937729,41.338214124],[-71.721879336,41.338167077],[-71.721792543,41.338129851],[-71.721718632,41.338105956],[-71.721638372,41.338080107],[-71.721558883,41.338048881],[-71.721495334,41.338011336],[-71.721448038,41.337943227],[-71.721457057,41.33787366],[-71.721475273,41.337813429],[-71.721469269,41.337752148],[-71.721454733,41.337742913],[-71.721384165,41.33774728],[-71.721333678,41.337803273],[-71.721313563,41.337858155],[-71.721278564,41.337926743],[-71.721292539,41.337985173],[-71.721355848,41.33805037],[-71.721407882,41.338092809],[-71.721459001,41.338133878],[-71.721536176,41.338180637],[-71.721615558,41.338207174],[-71.721697327,41.338221539],[-71.721787107,41.338235798],[-71.721869476,41.338275091],[-71.721910315,41.338335871],[-71.721966177,41.33838832],[-71.722032148,41.338415043],[-71.722105108,41.338435623],[-71.722173537,41.338453513],[-71.722221849,41.338489921],[-71.722274797,41.338532998],[-71.722361623,41.33853514],[-71.72246745,41.338547858],[-71.722540268,41.338562308],[-71.722637524,41.338588582],[-71.722710938,41.338626679],[-71.722775191,41.338656767],[-71.722844918,41.338654436],[-71.722906679,41.338621223],[-71.722960287,41.338582033],[-71.722956564,41.338540279],[-71.722903612,41.338495875],[-71.722863868,41.338445202],[-71.722852308,41.338338831],[-71.722854443,41.338279477],[-71.722886143,41.338223086],[-71.722867709,41.33816535],[-71.722802083,41.338115048],[-71.722723784,41.338059509],[-71.722663746,41.338019236],[-71.72260915,41.337982245],[-71.722533553,41.337926679],[-71.722505432,41.337875823],[-71.722486188,41.337820811],[-71.722472242,41.337762358],[-71.722459144,41.337703194],[-71.72244878,41.337644711],[-71.722444319,41.337573295],[-71.722427671,41.337514206],[-71.722406604,41.337458557],[-71.722404075,41.337393198],[-71.722364606,41.337315537],[-71.722363234,41.337260284],[-71.722360038,41.337203709],[-71.722308704,41.337153218],[-71.722268813,41.337094426],[-71.722268287,41.3370378],[-71.722280183,41.336975614],[-71.722299136,41.336909321],[-71.722299517,41.336851961],[-71.722307062,41.336795228],[-71.722342418,41.336742831],[-71.722390338,41.336690937],[-71.722469118,41.336656776],[-71.722551306,41.336652249],[-71.722586279,41.33662142],[-71.722585785,41.33656548],[-71.722575775,41.336521816],[-71.722536313,41.336517639],[-71.72250626,41.336496496],[-71.722504221,41.33648575],[-71.722479853,41.336440903],[-71.722416056,41.336392563],[-71.722358468,41.336340804],[-71.722288114,41.336282482],[-71.722218697,41.336223427],[-71.72214851,41.336169817],[-71.722079027,41.336108772],[-71.722027876,41.336067018],[-71.721973138,41.33602328],[-71.721918398,41.33597888],[-71.72186805,41.335932389],[-71.721828379,41.335884414],[-71.7217695,41.335818501],[-71.721717291,41.335768652],[-71.720929921,41.335069159],[-71.720851347,41.335002138],[-71.720769926,41.334927782],[-71.719147256,41.333505792],[-71.718880898,41.333259388],[-71.718828795,41.333212923],[-71.718766836,41.333167962],[-71.718705183,41.333133087],[-71.718639117,41.333103001],[-71.718572234,41.333073579],[-71.718463275,41.333047165],[-71.718429493,41.333016948],[-71.718383745,41.332974427],[-71.718322483,41.332919997],[-71.718282039,41.332875384],[-71.718243213,41.332824731],[-71.718203435,41.332770671],[-71.718165311,41.332711898],[-71.718120302,41.332663268],[-71.717818495,41.332248166],[-71.717785918,41.332196723],[-71.717551907,41.331765597],[-71.717564508,41.331704303],[-71.717563173,41.331649759],[-71.717578446,41.331616476],[-71.717647392,41.331582475],[-71.71770918,41.331549264],[-71.717768938,41.331507984],[-71.717807798,41.331450802],[-71.717868211,41.33139669],[-71.717928771,41.331350011],[-71.717985615,41.331299314],[-71.718038797,41.331242608],[-71.71809735,41.331185847],[-71.718155033,41.331131786],[-71.718218754,41.331068908],[-71.718266879,41.331024379],[-71.718315922,41.330981884],[-71.718361347,41.330937429],[-71.718429597,41.330877149],[-71.718493594,41.330824334],[-71.71854432,41.330777124],[-71.718585185,41.330730047],[-71.718579884,41.330696438],[-71.718552817,41.330686678],[-71.718489416,41.330690937],[-71.718418642,41.330722267],[-71.71835598,41.330756875],[-71.718259681,41.330767647],[-71.718176132,41.330753282],[-71.718077557,41.330745899],[-71.718004324,41.330749606],[-71.717925825,41.330757462],[-71.717837503,41.330767463],[-71.71774205,41.330777547],[-71.717633152,41.330786512],[-71.717518987,41.330798918],[-71.71741202,41.330813872],[-71.717308562,41.330825411],[-71.71720226,41.330830277],[-71.717095856,41.330831782],[-71.716995597,41.330829135],[-71.716915659,41.33081474],[-71.716844643,41.3308009],[-71.71674269,41.330799651],[-71.71665981,41.330812934],[-71.716570604,41.330858661],[-71.716507305,41.330902714],[-71.716443938,41.33094471],[-71.716376815,41.330979348],[-71.716312116,41.331003826],[-71.716236003,41.33103592],[-71.716203356,41.331054575],[-71.716127879,41.331077198],[-71.716036251,41.331097359],[-71.71595319,41.331101883],[-71.715856613,41.331102568],[-71.715756382,41.331099234],[-71.715652399,41.331089891],[-71.715549364,41.331082583],[-71.715457845,41.331071045],[-71.715368183,41.331061538],[-71.715271608,41.331062862],[-71.715174154,41.331064234],[-71.715074736,41.331058862],[-71.714974294,41.331046768],[-71.71487288,41.331034058],[-71.714767985,41.331024054],[-71.71465989,41.331028235],[-71.714558434,41.331049214],[-71.714466316,41.33108623],[-71.714375103,41.331121872],[-71.714275474,41.331144837],[-71.714175,41.331169152],[-71.714090106,41.331207413],[-71.714017049,41.331255646],[-71.713940658,41.331314679],[-71.713859271,41.331385958],[-71.713777999,41.331464624],[-71.713700376,41.33154589],[-71.713623378,41.331614394],[-71.713541717,41.331676204],[-71.7134536,41.331731349],[-71.713362736,41.331781169],[-71.713269038,41.331827656],[-71.713171721,41.331871474],[-71.713071693,41.331911957],[-71.712963498,41.33195122],[-71.712847963,41.331981852],[-71.712730561,41.33200773],[-71.712625523,41.332028759],[-71.712530841,41.332034102],[-71.712446757,41.332032565],[-71.712360154,41.33200281],[-71.712313498,41.331959602],[-71.712235004,41.33196949],[-71.712168755,41.332003415],[-71.712108932,41.332044715],[-71.712058125,41.332087211],[-71.712006338,41.332127033],[-71.711942022,41.332167724],[-71.711867102,41.33221326],[-71.71178238,41.332258242],[-71.711693067,41.332300625],[-71.7116001,41.33233899],[-71.71150713,41.332376692],[-71.711489129,41.332383655],[-71.711414974,41.332412356],[-71.71132636,41.332445956],[-71.711233182,41.332475562],[-71.711128988,41.332495216],[-71.711023565,41.332500738],[-71.71093232,41.332499304],[-71.710853645,41.332500386],[-71.710782622,41.332522266],[-71.710716582,41.332564995],[-71.710655947,41.332608972],[-71.710593134,41.332636143],[-71.710506315,41.332671065],[-71.710421458,41.332712707],[-71.710356398,41.33275811],[-71.710280349,41.332792852],[-71.710187276,41.332827191],[-71.710107233,41.332846503],[-71.710018265,41.332864619],[-71.709928218,41.332877316],[-71.709845962,41.332878449],[-71.709744329,41.332892677],[-71.709683619,41.332932606],[-71.709621473,41.332988111],[-71.709557538,41.333044261],[-71.709493534,41.333097735],[-71.70942959,41.333151208],[-71.709364639,41.333202671],[-71.709288836,41.333248253],[-71.709197591,41.333285217],[-71.709100055,41.333318946],[-71.708995187,41.333346695],[-71.708889231,41.333366373],[-71.708787698,41.333383985],[-71.70868887,41.33340285],[-71.708591056,41.333425783],[-71.708492469,41.333453452],[-71.70839118,41.333481172],[-71.708284454,41.333506889],[-71.708166237,41.333535508],[-71.708039041,41.333564921],[-71.707917991,41.333590183],[-71.707804835,41.333607266],[-71.707710257,41.333617339],[-71.707636107,41.333620401],[-71.707537739,41.333621767],[-71.707462673,41.33362284],[-71.707372345,41.333624055],[-71.707263266,41.333625578],[-71.707141792,41.333631972],[-71.707013579,41.333656697],[-71.706890701,41.333679949],[-71.706771366,41.333700495],[-71.706652944,41.333722366],[-71.70653,41.333743651],[-71.706401849,41.333769015],[-71.706274651,41.333798404],[-71.70615296,41.333832447],[-71.706042929,41.333869031],[-71.705940935,41.33390416],[-71.705845994,41.333934474],[-71.705766331,41.333969311],[-71.705700321,41.33401334],[-71.705637117,41.334062076],[-71.705568508,41.334109564],[-71.70548726,41.334151837],[-71.705396855,41.334186784],[-71.705318943,41.334218896],[-71.705246472,41.334254223],[-71.705170494,41.334293719],[-71.705101673,41.334331738],[-71.705037247,41.334368355],[-71.704970283,41.334408429],[-71.704894445,41.334453939],[-71.704819651,41.334503519],[-71.704744053,41.334557834],[-71.704662276,41.33461559],[-71.70457439,41.334680196],[-71.704503123,41.33473185],[-71.7044786,41.334749641],[-71.704381931,41.334819728],[-71.704285368,41.33489455],[-71.70419421,41.334970619],[-71.704115588,41.335047878],[-71.704053993,41.335126982],[-71.704009493,41.335209144],[-71.703978263,41.335285084],[-71.703950477,41.335356261],[-71.70392185,41.335430115],[-71.703894201,41.335506026],[-71.703863989,41.335587361],[-71.70383118,41.335672727],[-71.703796579,41.335757478],[-71.703752888,41.335836985],[-71.703692132,41.335912657],[-71.703610733,41.335985896],[-71.703510376,41.336051323],[-71.70339742,41.33611492],[-71.703286286,41.336179154],[-71.703182278,41.336241935],[-71.703089894,41.336305243],[-71.703009269,41.336373792],[-71.702938609,41.33644621],[-71.702872413,41.33651997],[-71.702806114,41.336589637],[-71.702732544,41.336653324],[-71.70265343,41.336710388],[-71.702567964,41.336764147],[-71.702473434,41.336811312],[-71.702375895,41.336847025],[-71.702282815,41.336882043],[-71.702197946,41.336922994],[-71.702124867,41.336969161],[-71.702062606,41.337020592],[-71.701998663,41.337077423],[-71.701928569,41.337137055],[-71.701855877,41.337200786],[-71.701778794,41.337267246],[-71.701691814,41.337332465],[-71.701589593,41.337395218],[-71.701480248,41.337460088],[-71.701372723,41.337524977],[-71.70127307,41.337584317],[-71.701180542,41.337641541],[-71.70108966,41.337691352],[-71.700991486,41.337738546],[-71.700882703,41.337789303],[-71.700770406,41.337842055],[-71.700657132,41.337892865],[-71.700542942,41.337942282],[-71.700431559,41.337996428],[-71.70032386,41.338054523],[-71.700219743,41.338113276],[-71.700114646,41.338169355],[-71.700017483,41.338219885],[-71.699923658,41.3382603],[-71.699829521,41.338288572],[-71.699734367,41.33831147],[-71.69964188,41.338332946],[-71.69956544,41.338352884],[-71.699478744,41.338393195],[-71.699433232,41.338434945],[-71.699399684,41.338489298],[-71.699375333,41.338554361],[-71.699347504,41.338623524],[-71.699298224,41.338693639],[-71.699227426,41.338762739],[-71.699146723,41.3388279],[-71.699062508,41.338895766],[-71.698975629,41.338965717],[-71.69889425,41.339038312],[-71.698821728,41.339109427],[-71.698749069,41.339175855],[-71.698668363,41.339240329],[-71.698578776,41.339308272],[-71.698479323,41.339375066],[-71.698379936,41.339443826],[-71.698284982,41.339513242],[-71.698192685,41.339578559],[-71.698097625,41.339643241],[-71.697998068,41.339705963],[-71.697891207,41.339762066],[-71.697773466,41.339812926],[-71.697653059,41.339865141],[-71.697535417,41.339918654],[-71.697425753,41.339971399],[-71.697315278,41.340026867],[-71.697204832,41.340081648],[-71.697097731,41.340128968],[-71.696992418,41.340175575],[-71.696877413,41.34022842],[-71.696753526,41.340284734],[-71.696690735,41.340313224],[-71.696574076,41.340371468],[-71.69646887,41.340423496],[-71.696380272,41.340458387],[-71.696312143,41.340488327],[-71.696245811,41.340520276],[-71.696170733,41.340560382],[-71.696091362,41.340605984],[-71.696006623,41.34065299],[-71.695907459,41.340696178],[-71.695803791,41.340735326],[-71.695693813,41.340775285],[-71.695585622,41.340813846],[-71.695488982,41.340848888],[-71.695402177,41.340885125],[-71.695312737,41.340922762],[-71.695217954,41.340959813],[-71.695119527,41.340996229],[-71.695016675,41.341034712],[-71.694905037,41.341078058],[-71.694789784,41.341120083],[-71.694678824,41.341156681],[-71.694572283,41.341189155],[-71.694470169,41.341220911],[-71.694367175,41.341252647],[-71.694260631,41.341284457],[-71.694151392,41.341318307],[-71.694040427,41.341353554],[-71.693925876,41.341386818],[-71.693813088,41.341421406],[-71.693704864,41.341459965],[-71.693605794,41.341505141],[-71.693516628,41.341554257],[-71.693427359,41.341599302],[-71.693329938,41.341637705],[-71.693229682,41.341672156],[-71.693126623,41.341702564],[-71.693044061,41.341727266],[-71.693008941,41.34175541],[-71.692949763,41.341785858],[-71.692883323,41.341813071],[-71.69280175,41.341843854],[-71.692707807,41.341878867],[-71.692600422,41.341914061],[-71.692477701,41.34194608],[-71.692347944,41.341979527],[-71.692216469,41.342017072],[-71.692148032,41.342036237],[-71.692076955,41.34205543],[-71.692003144,41.342073964],[-71.691930212,41.342091788],[-71.691858155,41.342108283],[-71.691788799,41.342124751],[-71.691657152,41.342155548],[-71.691523717,41.342187057],[-71.691455241,41.342203524],[-71.691321908,41.342239081],[-71.691184113,41.342273981],[-71.691111212,41.342292536],[-71.691037433,41.34231171],[-71.690965447,41.342331612],[-71.690895251,41.34235142],[-71.690825965,41.342371273],[-71.690692767,41.342411517],[-71.690560521,41.342455808],[-71.690494008,41.342479634],[-71.690427526,41.342503484],[-71.690361893,41.34252731],[-71.690296226,41.342549763],[-71.690227008,41.34257229],[-71.690154179,41.342594847],[-71.690079621,41.342617475],[-71.690006824,41.342640717],[-71.689937578,41.342663908],[-71.689871031,41.342686385],[-71.689743336,41.342730644],[-71.689676792,41.342754471],[-71.68960761,41.342778988],[-71.68953843,41.342804213],[-71.689470191,41.342829438],[-71.689401889,41.342853953],[-71.689331793,41.342877168],[-71.689260756,41.342900384],[-71.689188865,41.342922275],[-71.689116912,41.34294348],[-71.689048539,41.342964633],[-71.688981957,41.342985806],[-71.688916289,41.343008259],[-71.688851535,41.343032059],[-71.688786874,41.343056545],[-71.688720397,41.343082406],[-71.68865125,41.343108981],[-71.688581258,41.343136883],[-71.688513056,41.343164828],[-71.688443944,41.343192729],[-71.68837395,41.343219991],[-71.688301222,41.343246572],[-71.688227645,41.343273222],[-71.688153091,41.343297815],[-71.688080327,41.343322406],[-71.688009319,41.343345644],[-71.68794189,41.343368167],[-71.687811397,41.343411057],[-71.687680899,41.34345262],[-71.687550434,41.343494846],[-71.687484763,41.343516657],[-71.687413722,41.343539186],[-71.687338251,41.343561813],[-71.68726187,41.343584419],[-71.68718549,41.343607711],[-71.687111779,41.34363029],[-71.687041647,41.343652177],[-71.686973243,41.343673329],[-71.68684014,41.343716954],[-71.68677268,41.343739431],[-71.686705218,41.343761267],[-71.686637787,41.343783103],[-71.686508097,41.343821256],[-71.686391546,41.343847815],[-71.686317768,41.343868357],[-71.686272496,41.343881787],[-71.686180102,41.343908695],[-71.686086762,41.343933546],[-71.685973861,41.343963415],[-71.685845925,41.343999574],[-71.685777482,41.344018004],[-71.685708193,41.34403783],[-71.685639815,41.344057678],[-71.685568737,41.34407817],[-71.6854932,41.344099424],[-71.685414958,41.344119379],[-71.685333069,41.34413735],[-71.685253912,41.344155294],[-71.68517648,41.34417184],[-71.685102629,41.344188357],[-71.68503145,41.344205532],[-71.684962189,41.344224695],[-71.684889321,41.344245258],[-71.68481473,41.3442685],[-71.684740141,41.344292428],[-71.684665647,41.344317728],[-71.6845893,41.344342391],[-71.684509339,41.344366396],[-71.68442586,41.344391116],[-71.684341438,41.344415197],[-71.684258838,41.344439274],[-71.684180665,41.344462567],[-71.68410425,41.344484531],[-71.684031411,41.344505071],[-71.683956781,41.344525637],[-71.683879489,41.344548928],[-71.683801383,41.344574302],[-71.683723279,41.344600293],[-71.683645173,41.344625621],[-71.683564364,41.344650313],[-71.683480819,41.344673706],[-71.683396428,41.344697809],[-71.683315616,41.344721814],[-71.683236565,41.34474584],[-71.683162006,41.344769744],[-71.683091873,41.344792292],[-71.683024373,41.34481209],[-71.682933734,41.344838261],[-71.682357201,41.345043685],[-71.682262202,41.345073293],[-71.682147607,41.345106545],[-71.682023216,41.34514194],[-71.681886289,41.345176851],[-71.681815108,41.345194025],[-71.681742135,41.345210492],[-71.681669223,41.345227006],[-71.681591789,41.345243595],[-71.681512568,41.34526149],[-71.681434354,41.345281442],[-71.681357935,41.345302718],[-71.681283309,41.345325317],[-71.681212295,41.345347865],[-71.681142129,41.345369703],[-71.681071959,41.345390214],[-71.680999996,41.345410087],[-71.680926178,41.345428614],[-71.680854117,41.345445766],[-71.680782965,41.345462253],[-71.680708235,41.345480118],[-71.680631811,41.345500067],[-71.68055269,41.345521369],[-71.680474515,41.345544659],[-71.680399953,41.345568585],[-71.680328095,41.345593169],[-71.680259786,41.345617702],[-71.680194181,41.34564287],[-71.680128608,41.345668702],[-71.680063946,41.345695196],[-71.679941686,41.345744742],[-71.679821113,41.345790192],[-71.679690638,41.345832431],[-71.679621347,41.345852917],[-71.679550232,41.345872125],[-71.679479994,41.345890577],[-71.679410633,41.345907701],[-71.679278973,41.345938484],[-71.679214549,41.345952352],[-71.679155252,41.345965115],[-71.679058217,41.345983974],[-71.678498702,41.346116989],[-71.678405426,41.346145242],[-71.678300656,41.346177011],[-71.678187784,41.346208885],[-71.678076763,41.346240755],[-71.677965682,41.346273266],[-71.677851119,41.346308527],[-71.6777277,41.346345928],[-71.677661111,41.346367094],[-71.677592699,41.346387578],[-71.677525165,41.346407373],[-71.677396373,41.346444828],[-71.677277282,41.346478128],[-71.677191975,41.346502205],[-71.676962728,41.346528676],[-71.676934053,41.346541688],[-71.676833029,41.346578527],[-71.676762495,41.346600363],[-71.676684008,41.346621433],[-71.676598389,41.346642399],[-71.676509247,41.346662662],[-71.676416581,41.346681558],[-71.676325762,41.346699125],[-71.676240282,41.346715425],[-71.676157469,41.346730418],[-71.676077269,41.346746801],[-71.676000654,41.346764529],[-71.675926648,41.346781681],[-71.675851763,41.346799451],[-71.67577151,41.346818465],[-71.675690352,41.346839492],[-71.675545868,41.346877129],[-71.675456035,41.346888701],[-71.675374047,41.346906368],[-71.67528854,41.346924017],[-71.675191417,41.34694484],[-71.675116956,41.346962518],[-71.675097787,41.346967053],[-71.67500865,41.34698935],[-71.674922123,41.347011643],[-71.674834687,41.347034601],[-71.674742819,41.347057519],[-71.674648342,41.347080373],[-71.674552925,41.347103937],[-71.674454864,41.347126065],[-71.674355978,41.347146203],[-71.674259821,41.347165057],[-71.674167978,41.347185963],[-71.674078811,41.347208877],[-71.673991378,41.347233183],[-71.67390653,41.347259544],[-71.673822564,41.347286521],[-71.673738653,41.347311554],[-71.673652153,41.34733316],[-71.673562183,41.347350746],[-71.673472243,41.347368331],[-71.673384035,41.347386624],[-71.673296681,41.347406881],[-71.67320842,41.347427849],[-71.67311834,41.347450078],[-71.673028207,41.347475051],[-71.672939014,41.347499954],[-71.672849761,41.347524902],[-71.672755223,41.347548464],[-71.672655431,41.347570569],[-71.6725547,41.347593362],[-71.672459255,41.347618228],[-71.672369065,41.347645168],[-71.672282486,41.347671461],[-71.672199454,41.347696491],[-71.672120882,41.347720898],[-71.672049463,41.347741382],[-71.67193536,41.34776934],[-71.671863167,41.347784474],[-71.671751675,41.347812474],[-71.671668752,41.347832838],[-71.671577794,41.347856393],[-71.6714832,41.347881943],[-71.671386847,41.347908137],[-71.671294895,41.347934369],[-71.671205675,41.347960665],[-71.671117247,41.347988265],[-71.671027911,41.348017214],[-71.670938496,41.348050189],[-71.670846439,41.348083099],[-71.67075083,41.348115306],[-71.670646383,41.348145398],[-71.670535802,41.348174105],[-71.670426924,41.348204112],[-71.670323387,41.348234226],[-71.670224255,41.348265751],[-71.670129552,41.348296606],[-71.670041126,41.348325554],[-71.669957127,41.348352574],[-71.669872362,41.348376896],[-71.669778759,41.348399104],[-71.66968243,41.348423329],[-71.669594086,41.348448914],[-71.669511879,41.348476617],[-71.669430551,41.348504319],[-71.669350985,41.348532086],[-71.66927065,41.348556424],[-71.669188552,41.348579461],[-71.669104663,41.348602478],[-71.669018986,41.348626778],[-71.668928851,41.348652365],[-71.668836983,41.348676652],[-71.668741533,41.348700806],[-71.668651423,41.348724403],[-71.668570264,41.348746798],[-71.668494384,41.348768544],[-71.668422001,41.348793053],[-71.668351324,41.348820213],[-71.668280624,41.348850025],[-71.668208104,41.348880526],[-71.668130602,41.348908884],[-71.668048117,41.348935352],[-71.667962412,41.348960954],[-71.667877617,41.348985984],[-71.667791938,41.34900962],[-71.667703645,41.34903191],[-71.667618875,41.349054904],[-71.667540274,41.349081297],[-71.667465165,41.349108439],[-71.667391817,41.349135579],[-71.667322104,41.349160038],[-71.66720054,41.349203303],[-71.667097217,41.349223419],[-71.667015171,41.349243732],[-71.666940227,41.349264173],[-71.666847477,41.349288413],[-71.6667422,41.349315805],[-71.666636045,41.34934386],[-71.666534292,41.349372664],[-71.666436972,41.349402171],[-71.6663432,41.349430392],[-71.666251278,41.349457969],[-71.666161965,41.349485566],[-71.666070891,41.349512479],[-71.665974533,41.349538667],[-71.665873773,41.34956413],[-71.665772955,41.34959092],[-71.665676542,41.349619098],[-71.665581892,41.349648668],[-71.665492499,41.349680267],[-71.665405747,41.349712616],[-71.665317259,41.349742223],[-71.665227124,41.349769134],[-71.665131671,41.349793354],[-71.665030963,41.349815431],[-71.664918692,41.349838097],[-71.66480381,41.349860698],[-71.664696823,41.349884728],[-71.664596914,41.349910874],[-71.664504108,41.349937766],[-71.664410417,41.349962645],[-71.664318515,41.349986882],[-71.664223149,41.350009729],[-71.664121446,41.350035192],[-71.664017078,41.350062579],[-71.663910895,41.350092668],[-71.66380914,41.350121447],[-71.663711843,41.350148939],[-71.66361994,41.350173175],[-71.663533411,41.350198158],[-71.663451223,41.350223181],[-71.663372616,41.350248221],[-71.663299322,41.350274032],[-71.66323137,41.350299926],[-71.663166028,41.350325817],[-71.663039037,41.350373636],[-71.662971107,41.350396191],[-71.662903152,41.350420713],[-71.66283608,41.350446606],[-71.66276807,41.350473804],[-71.662696482,41.350502333],[-71.662621314,41.350531417],[-71.662543537,41.350561213],[-71.662466609,41.350590275],[-71.662393257,41.350617412],[-71.662326181,41.350641978],[-71.66225922,41.350663845],[-71.662188676,41.350684985],[-71.662112789,41.35070611],[-71.662030686,41.350729142],[-71.661945913,41.35075275],[-71.661861141,41.350777089],[-71.661777218,41.350800741],[-71.661695087,41.350825122],[-71.661617303,41.350852195],[-71.661540433,41.35088064],[-71.661465266,41.350910409],[-71.661390153,41.350937524],[-71.661311544,41.350962609],[-71.661228587,41.350984246],[-71.66113861,41.351002509],[-71.661043346,41.351018651],[-71.660954248,41.351036249],[-71.660874924,41.351054611],[-71.660796396,41.35107567],[-71.660717841,41.351098079],[-71.660638433,41.351119116],[-71.660557237,41.351141505],[-71.660476014,41.351165175],[-71.660392038,41.351192165],[-71.660305336,41.351221812],[-71.660217784,41.351251437],[-71.660126731,41.351277018],[-71.660038489,41.35129729],[-71.659953959,41.351309575],[-71.659865987,41.35131649],[-71.659775403,41.351322676],[-71.659683882,41.351330213],[-71.659589662,41.351339035],[-71.659496322,41.351347878],[-71.659400317,41.351358691],[-71.659298889,41.351374132],[-71.659194679,41.351393488],[-71.659089536,41.351416206],[-71.658992261,41.351441727],[-71.658902973,41.351469318],[-71.658820728,41.351497676],[-71.658743799,41.351527423],[-71.65866596,41.351557857],[-71.658585479,41.351587585],[-71.65850494,41.351618663],[-71.658426223,41.351649715],[-71.658347502,41.351679463],[-71.658270599,41.351707883],[-71.658193666,41.351736325],[-71.658119491,41.351763437],[-71.658046219,41.351787255],[-71.657965956,41.351806919],[-71.657879527,41.351824534],[-71.657790399,41.351843456],[-71.657701276,41.35186439],[-71.657613826,41.351886649],[-71.657530011,41.35190634],[-71.657449778,41.351926027],[-71.657372983,41.351949095],[-71.657300594,41.351974237],[-71.657228203,41.351998693],[-71.657156718,41.352021204],[-71.657087936,41.352044374],[-71.657019975,41.352068229],[-71.656946732,41.352092023],[-71.656869055,41.352114428],[-71.656789673,41.352134822],[-71.656712052,41.352155214],[-71.656630935,41.352173552],[-71.656546321,41.352189196],[-71.656459972,41.352202807],[-71.656371069,41.352214386],[-71.656282929,41.352227954],[-71.656133301,41.352256128],[-71.656049651,41.352269094],[-71.655952735,41.35228057],[-71.655824602,41.352298971],[-71.655749757,41.352312749],[-71.655671338,41.352329802],[-71.655591075,41.352350151],[-71.655507259,41.352369773],[-71.655415462,41.35239],[-71.6553175,41.352408795],[-71.655215133,41.352425537],[-71.655116287,41.352442983],[-71.655022725,41.3524612],[-71.654934509,41.352481445],[-71.654850664,41.352501752],[-71.654765939,41.352522061],[-71.654682123,41.352541705],[-71.654596602,41.352559339],[-71.654511051,41.35257695],[-71.654423767,41.352593213],[-71.654335602,41.352609478],[-71.654248292,41.352627755],[-71.654160071,41.352646009],[-71.654071852,41.352664927],[-71.653987153,41.352683886],[-71.65390868,41.352704277],[-71.653834551,41.352726057],[-71.653764911,41.352746574],[-71.653695299,41.352766381],[-71.653621282,41.352784159],[-71.653547347,41.352798574],[-71.653468127,41.352810962],[-71.653385411,41.352821226],[-71.653299117,41.352832868],[-71.653210151,41.352844422],[-71.653121219,41.352857325],[-71.653033904,41.35287361],[-71.652950114,41.352891881],[-71.652868086,41.352910927],[-71.652787879,41.352929924],[-71.652709402,41.352948965],[-71.652632713,41.3529667],[-71.652556904,41.352984457],[-71.652481041,41.353004867],[-71.65241055,41.353025383],[-71.652340936,41.353044527],[-71.652268736,41.353060975],[-71.652198295,41.35307678],[-71.652062812,41.353107148],[-71.651992485,41.353119614],[-71.651919457,41.353132701],[-71.651846401,41.353146474],[-71.651774284,41.353159582],[-71.651702136,41.353172691],[-71.651626466,41.353185095],[-71.651544604,41.353197416],[-71.651457344,41.353211664],[-71.651364802,41.353225852],[-71.651274049,41.353239396],[-71.651187696,41.353252317],[-71.65110842,41.353267356],[-71.651033579,41.35328376],[-71.650894377,41.353320742],[-71.65077494,41.353346651],[-71.650648239,41.353342334],[-71.650572761,41.353346046],[-71.650492684,41.353356374],[-71.650411702,41.353368739],[-71.650333333,41.353382426],[-71.650260279,41.353397547],[-71.650191601,41.353414744],[-71.650067373,41.353456554],[-71.649945926,41.353493099],[-71.649833425,41.353526408],[-71.649710629,41.353544224],[-71.649639392,41.353557352],[-71.649566308,41.353573091],[-71.649517063,41.353584477],[-71.649639574,41.353557441],[-71.649833574,41.35352644],[-71.65008027,41.354185452],[-71.650659265,41.355538343],[-71.650661042,41.355541217],[-71.650739315,41.355560909],[-71.650823301,41.355573355],[-71.650898644,41.355575635],[-71.651000963,41.355561572],[-71.651074185,41.355539132],[-71.651146748,41.355507955],[-71.651206977,41.35547197],[-71.65125405,41.355430489],[-71.651301728,41.355361609],[-71.651340316,41.355299945],[-71.651403107,41.35526933],[-71.651469695,41.355305607],[-71.651512116,41.355352276],[-71.651552415,41.355413561],[-71.651592635,41.355479581],[-71.65162575,41.35554481],[-71.651654599,41.355602657],[-71.651693387,41.355653287],[-71.651741011,41.355705347],[-71.651789458,41.355758754],[-71.651825466,41.355814694],[-71.651857123,41.355866568],[-71.65190136,41.355910535],[-71.651951763,41.355956622],[-71.652002224,41.356001381],[-71.65207187,41.356059769],[-71.652142007,41.356094737],[-71.652178673,41.356081172],[-71.652174598,41.356025648],[-71.652173195,41.355970829],[-71.652183296,41.355915492],[-71.652196096,41.355859511],[-71.652212417,41.355803593],[-71.652238596,41.355744439],[-71.652269179,41.355686696],[-71.652291669,41.355633515],[-71.652323265,41.355567743],[-71.652337109,41.355503779],[-71.652319711,41.355449438],[-71.652275611,41.355398747],[-71.652213648,41.355354506],[-71.652142624,41.355316841],[-71.652071607,41.355281851],[-71.652004935,41.35524896],[-71.651949,41.355212143],[-71.651892238,41.355172629],[-71.651837321,41.35512982],[-71.651805827,41.35506994],[-71.651780723,41.355004152],[-71.651782069,41.35494336],[-71.651782842,41.354922982],[-71.651784384,41.354881218],[-71.651790078,41.354823828],[-71.65182275,41.354750714],[-71.651871666,41.354705915],[-71.651935446,41.354669969],[-71.651999914,41.3546434],[-71.652069448,41.354628237],[-71.652149332,41.354625913],[-71.652231826,41.354623608],[-71.65232041,41.354629414],[-71.652391732,41.354652396],[-71.65248417,41.354683652],[-71.652564384,41.35470605],[-71.652664718,41.354739423],[-71.652748127,41.354777895],[-71.652773507,41.354831698],[-71.652726299,41.354879858],[-71.652664476,41.354908505],[-71.652645445,41.354921818],[-71.652594202,41.354957724],[-71.652501738,41.354967224],[-71.652410483,41.354961398],[-71.652338059,41.354947772],[-71.652261482,41.354962807],[-71.65219016,41.354979277],[-71.652094833,41.354997471],[-71.652024034,41.355029972],[-71.652024502,41.355087445],[-71.652071465,41.355129488],[-71.652145265,41.355160494],[-71.652224214,41.355199613],[-71.652303851,41.355247398],[-71.65238795,41.355295269],[-71.652432489,41.355364645],[-71.65245845,41.355433817],[-71.652477226,41.355506223],[-71.652468557,41.355576287],[-71.652435882,41.355648052],[-71.652402301,41.355721809],[-71.652385123,41.355775028],[-71.652378572,41.35582908],[-71.652374118,41.355910574],[-71.652376927,41.355982772],[-71.652412109,41.356036014],[-71.652459649,41.356090749],[-71.652509946,41.35614285],[-71.652553216,41.356188877],[-71.652593876,41.356234816],[-71.652641609,41.356280859],[-71.652693061,41.356320975],[-71.652753513,41.356354468],[-71.652830894,41.356384189],[-71.652919009,41.356409389],[-71.652992125,41.356432391],[-71.653085886,41.356444297],[-71.653167254,41.356413908],[-71.653255041,41.356376924],[-71.653344974,41.356361343],[-71.653430828,41.356328364],[-71.6535152,41.356284683],[-71.653597397,41.356258318],[-71.653694953,41.356258233],[-71.653786868,41.356272725],[-71.653875424,41.356278553],[-71.653880515,41.356249203],[-71.653888826,41.356195195],[-71.653930172,41.356132245],[-71.653957119,41.3560778],[-71.653979745,41.356018604],[-71.654015992,41.355943517],[-71.654036801,41.355886313],[-71.65399636,41.355830334],[-71.653991566,41.355766784],[-71.654026028,41.355694398],[-71.654055011,41.35562792],[-71.654078819,41.355555366],[-71.654080139,41.355497273],[-71.654068546,41.355420924],[-71.654068019,41.355364777],[-71.654136588,41.35535229],[-71.654208684,41.355380598],[-71.654278852,41.355415588],[-71.654356921,41.35545402],[-71.654426982,41.355494978],[-71.654494288,41.355538617],[-71.654558071,41.355581528],[-71.654626425,41.355619172],[-71.654699425,41.355644826],[-71.654799681,41.355644074],[-71.654848021,41.355664089],[-71.654921603,41.355666369],[-71.654998375,41.355643944],[-71.655074263,41.35562017],[-71.655147348,41.355605069],[-71.655226601,41.35559204],[-71.655313641,41.35558648],[-71.655404815,41.355595665],[-71.655478887,41.355612672],[-71.655580053,41.355611941],[-71.655671112,41.355585676],[-71.655745624,41.355545209],[-71.655806675,41.355511209],[-71.655896361,41.355507703],[-71.655971014,41.355500626],[-71.656066341,41.355482452],[-71.656157153,41.355467578],[-71.65622908,41.355463135],[-71.656321322,41.355462323],[-71.656383448,41.355421003],[-71.656455956,41.355393186],[-71.656539082,41.355362838],[-71.656633581,41.355341325],[-71.656692901,41.355307305],[-71.656695233,41.355241846],[-71.65672851,41.355182795],[-71.65676253,41.355129757],[-71.656772098,41.355056353],[-71.656732677,41.354996417],[-71.656648469,41.354955227],[-71.656562805,41.354977528],[-71.656525346,41.355026499],[-71.656563884,41.355047717],[-71.656649138,41.355044124],[-71.656680684,41.355060571],[-71.656657182,41.355120387],[-71.656637337,41.355173633],[-71.656587381,41.355226441],[-71.656518809,41.355199501],[-71.656468237,41.355160095],[-71.656422209,41.35511675],[-71.6563745,41.355068695],[-71.656319743,41.355017859],[-71.656263338,41.354963664],[-71.656221916,41.35491695],[-71.65621662,41.354910988],[-71.656176949,41.354860338],[-71.656142593,41.354811144],[-71.65611363,41.354757941],[-71.65608921,41.354700157],[-71.656057105,41.354627587],[-71.656016968,41.354559579],[-71.655979995,41.354507644],[-71.655951032,41.3544538],[-71.655909214,41.354381106],[-71.655867366,41.354308411],[-71.655839503,41.354245212],[-71.655882248,41.354197652],[-71.655963422,41.354176615],[-71.656064364,41.354184597],[-71.656141111,41.354203613],[-71.656201563,41.354237151],[-71.656254775,41.354276599],[-71.656330726,41.354331019],[-71.656393046,41.354358516],[-71.656468859,41.354380209],[-71.656567683,41.354403517],[-71.656622711,41.354440995],[-71.6566081,41.354499632],[-71.656546717,41.35454628],[-71.656546005,41.354578323],[-71.656605136,41.354592445],[-71.65667552,41.354577987],[-71.656739188,41.354547368],[-71.656822509,41.354510364],[-71.656902248,41.354473274],[-71.656974089,41.354433404],[-71.657043319,41.354393515],[-71.657111527,41.354357652],[-71.657181385,41.354326476],[-71.657247914,41.354286567],[-71.657263433,41.354227243],[-71.657294781,41.354174186],[-71.657340805,41.354178102],[-71.657417443,41.354201806],[-71.657494687,41.354238247],[-71.657559901,41.354295174],[-71.657582452,41.354357626],[-71.657555375,41.354419413],[-71.657551444,41.354476183],[-71.657524363,41.354536622],[-71.657492795,41.354599056],[-71.657490299,41.354671902],[-71.657520225,41.354721032],[-71.657572284,41.354773175],[-71.657637721,41.354821433],[-71.65770412,41.354866397],[-71.657767934,41.354908666],[-71.657778481,41.354914781],[-71.657844076,41.354953045],[-71.657926415,41.354999542],[-71.658002477,41.355048609],[-71.658073282,41.355094962],[-71.658144996,41.355140673],[-71.658229262,41.355180489],[-71.658304057,41.355207465],[-71.658390687,41.355220611],[-71.658437449,41.355190472],[-71.6584898,41.355149713],[-71.658562829,41.355136599],[-71.658612622,41.355092482],[-71.658673065,41.355046452],[-71.658762277,41.355022863],[-71.658844663,41.35498849],[-71.658917549,41.354941962],[-71.658930713,41.354913173],[-71.658945508,41.354880836],[-71.65895593,41.354810769],[-71.659031159,41.35477899],[-71.659087415,41.354721575],[-71.65912672,41.354670611],[-71.65917117,41.35462641],[-71.65922429,41.354589652],[-71.659283054,41.354540284],[-71.659335733,41.354484796],[-71.659369752,41.354432444],[-71.659395315,41.354359909],[-71.659411604,41.354306004],[-71.65942021,41.354237952],[-71.65942262,41.354168468],[-71.659419667,41.354102262],[-71.659409611,41.354036637],[-71.659393363,41.353970312],[-71.659372516,41.353910534],[-71.659329321,41.353859227],[-71.659271977,41.353806361],[-71.659212926,41.353750113],[-71.65915316,41.353687233],[-71.65910396,41.353625779],[-71.659066243,41.353567831],[-71.659036341,41.353516002],[-71.659013572,41.353464255],[-71.658971503,41.353401556],[-71.658908047,41.353343964],[-71.658837435,41.353288898],[-71.658766796,41.353235227],[-71.65869712,41.353178192],[-71.65863273,41.353122614],[-71.658589862,41.353055868],[-71.658633433,41.353012331],[-71.658709677,41.352974536],[-71.658799025,41.352983034],[-71.658865063,41.353004579],[-71.658944152,41.353038318],[-71.659025826,41.353074112],[-71.659097784,41.353108456],[-71.659162531,41.353148047],[-71.659234796,41.35320908],[-71.659273149,41.353278439],[-71.659249836,41.353290158],[-71.659163043,41.353283714],[-71.659080351,41.353253914],[-71.6590561,41.353266297],[-71.659064087,41.353305829],[-71.659130517,41.353350792],[-71.659203383,41.353383785],[-71.659271156,41.353407408],[-71.659345975,41.353432394],[-71.659410062,41.353462586],[-71.659466028,41.353498049],[-71.659535921,41.353544402],[-71.659612586,41.353566755],[-71.659712427,41.353584066],[-71.659801836,41.353592519],[-71.659881253,41.353610911],[-71.659939807,41.353649755],[-71.659985752,41.353695798],[-71.66003349,41.353742502],[-71.660097358,41.353782071],[-71.660169372,41.353814378],[-71.660242596,41.353832024],[-71.660326827,41.353833119],[-71.660421958,41.353822946],[-71.660502194,41.35380392],[-71.660577257,41.353779481],[-71.660655894,41.353752407],[-71.660751243,41.353732239],[-71.660841942,41.353722027],[-71.660928209,41.353711752],[-71.661013567,41.353702141],[-71.661110241,41.353702692],[-71.661198737,41.353709841],[-71.661280246,41.353714872],[-71.661358229,41.35371785],[-71.661447693,41.353723671],[-71.66152683,41.353714641],[-71.661597403,41.353691488],[-71.661669245,41.353690404],[-71.661746405,41.353692034],[-71.661831845,41.353678443],[-71.661904313,41.353648609],[-71.661972548,41.353612721],[-71.662046039,41.353578906],[-71.662129165,41.353550544],[-71.662208736,41.353520814],[-71.662271547,41.353488844],[-71.662349106,41.353431055],[-71.66239545,41.353380812],[-71.66241826,41.353313632],[-71.662348534,41.353298727],[-71.662268103,41.35332441],[-71.662195934,41.353340224],[-71.662109777,41.353345811],[-71.662032428,41.353353513],[-71.661947099,41.353362438],[-71.661879475,41.353411705],[-71.661797891,41.353450105],[-71.661702437,41.353476335],[-71.661599077,41.353497063],[-71.66151746,41.353497338],[-71.661426319,41.353488158],[-71.661333416,41.353478293],[-71.661244945,41.353468492],[-71.661147636,41.353456552],[-71.661041355,41.353449886],[-71.66095275,41.353447425],[-71.660869537,41.353440383],[-71.660777623,41.353425165],[-71.660685737,41.353409284],[-71.660600925,41.353394148],[-71.660513581,41.353373663],[-71.660414732,41.353352394],[-71.660314862,41.353335747],[-71.6602363,41.353319389],[-71.66014428,41.353310186],[-71.660056586,41.353345163],[-71.66006609,41.353396082],[-71.660001873,41.353411998],[-71.659921439,41.353399577],[-71.659840094,41.35338718],[-71.659767919,41.35336354],[-71.659677352,41.353328308],[-71.659614231,41.353296125],[-71.659539021,41.353247698],[-71.659513307,41.353207939],[-71.659555667,41.353178423],[-71.659627812,41.353164624],[-71.659698526,41.353174223],[-71.659774807,41.353213957],[-71.659833821,41.353192651],[-71.659899302,41.353160084],[-71.65997417,41.353142965],[-71.660054744,41.353150674],[-71.660134543,41.353189077],[-71.660219028,41.353219583],[-71.660298964,41.353214578],[-71.660397919,41.353192438],[-71.660489187,41.353154849],[-71.660552026,41.353121554],[-71.660614808,41.353090293],[-71.660670654,41.353052227],[-71.660716892,41.353007359],[-71.660754427,41.352953744],[-71.660792957,41.352897406],[-71.660833908,41.352850464],[-71.660911361,41.352798646],[-71.66099195,41.352763587],[-71.661033339,41.352697296],[-71.661024055,41.352636999],[-71.660999573,41.352580589],[-71.660977211,41.35250947],[-71.661037763,41.352460099],[-71.66111453,41.352438333],[-71.661218603,41.352424305],[-71.661319678,41.352425604],[-71.661401265,41.352425947],[-71.661504983,41.352427929],[-71.661594253,41.35244244],[-71.661678816,41.352467548],[-71.661761345,41.352505351],[-71.661851196,41.352533219],[-71.661950673,41.352526469],[-71.662010015,41.352491142],[-71.662073975,41.352445814],[-71.662149582,41.35239665],[-71.662233113,41.352348939],[-71.662301591,41.352301683],[-71.66236195,41.35226034],[-71.662455586,41.352236148],[-71.662546946,41.352236613],[-71.662640919,41.35223783],[-71.662726111,41.35223556],[-71.662811467,41.352225948],[-71.662911109,41.352212496],[-71.662999327,41.352194257],[-71.663077933,41.352167845],[-71.663154944,41.352134734],[-71.663237241,41.352103696],[-71.663313898,41.352086617],[-71.663415446,41.352107308],[-71.663488339,41.352138972],[-71.663578878,41.352174841],[-71.663672143,41.352208763],[-71.663773798,41.352223416],[-71.663827909,41.35218471],[-71.663843773,41.352108026],[-71.663879955,41.352036298],[-71.663927045,41.351993509],[-71.663990953,41.351952182],[-71.66406364,41.351913679],[-71.664137841,41.351885877],[-71.664213618,41.351869462],[-71.664296304,41.351860493],[-71.6643954,41.351871764],[-71.664350099,41.351913293],[-71.664270227,41.351955031],[-71.664210118,41.351986381],[-71.664152545,41.352024383],[-71.664102757,41.352068525],[-71.664062662,41.352116816],[-71.664023367,41.352169109],[-71.663980518,41.352220697],[-71.663937779,41.352267597],[-71.663918795,41.352322811],[-71.663976449,41.352364993],[-71.663991402,41.352409295],[-71.663975643,41.352479256],[-71.663955808,41.35253383],[-71.663923311,41.352598257],[-71.663879991,41.352631733],[-71.663787342,41.352649978],[-71.663690046,41.352679482],[-71.663619336,41.352707988],[-71.663550587,41.352767915],[-71.663565923,41.352795544],[-71.663635154,41.352794393],[-71.663725215,41.352772813],[-71.663818079,41.352743246],[-71.663889342,41.352729445],[-71.663967434,41.352727756],[-71.664042693,41.352734052],[-71.664116081,41.35274504],[-71.664189328,41.352759984],[-71.664261587,41.352780282],[-71.664355151,41.352787878],[-71.664359912,41.352786179],[-71.66435939,41.352783618],[-71.66431113,41.352747483],[-71.664242856,41.352706528],[-71.664197811,41.352657169],[-71.664160117,41.352597897],[-71.664140811,41.352548844],[-71.66414867,41.352475441],[-71.664159724,41.352417449],[-71.664175208,41.352358809],[-71.664200439,41.352301688],[-71.664232797,41.35224259],[-71.664269641,41.352180947],[-71.664310834,41.35212266],[-71.664348261,41.352075676],[-71.664400907,41.352021512],[-71.664466794,41.351970897],[-71.664528803,41.351934925],[-71.66459918,41.351919112],[-71.664696071,41.351910305],[-71.66478396,41.351906726],[-71.664867279,41.351907819],[-71.664955003,41.351910941],[-71.665056933,41.351914225],[-71.665146611,41.351910026],[-71.665235466,41.351903746],[-71.665325087,41.351900896],[-71.665422774,41.351894786],[-71.665502982,41.35187841],[-71.66557121,41.35184117],[-71.665630765,41.351795137],[-71.665704248,41.351759971],[-71.66578451,41.351740941],[-71.665876495,41.351712701],[-71.665939303,41.351680752],[-71.666017162,41.35164766],[-71.666081013,41.351608368],[-71.666143294,41.351560387],[-71.66619858,41.35150695],[-71.666246982,41.351444055],[-71.666296346,41.351377179],[-71.666350006,41.351317066],[-71.666415918,41.351265077],[-71.666488711,41.351221221],[-71.666561397,41.351183402],[-71.666629627,41.351147488],[-71.666700441,41.351113628],[-71.666779984,41.351086617],[-71.666858914,41.351045473],[-71.666928321,41.35099556],[-71.666998636,41.35094432],[-71.667068073,41.35089443],[-71.667150552,41.350852663],[-71.667235516,41.350821001],[-71.667303691,41.350787785],[-71.667377604,41.350731896],[-71.667448856,41.350679351],[-71.667530158,41.350652291],[-71.667618374,41.350634689],[-71.667702874,41.350623748],[-71.667790839,41.350614815],[-71.667892351,41.350598063],[-71.667987666,41.350579216],[-71.668073318,41.350556243],[-71.668134832,41.350529646],[-71.668157479,41.35051987],[-71.668253257,41.350480347],[-71.668343694,41.350441381],[-71.668423531,41.350399594],[-71.668508848,41.350352584],[-71.66860655,41.350306334],[-71.668701556,41.350262077],[-71.668783099,41.350223032],[-71.668864456,41.350194004],[-71.66895641,41.350167065],[-71.669042169,41.35013874],[-71.669118956,41.350114979],[-71.669201914,41.350094662],[-71.669302623,41.350073199],[-71.669409492,41.350051154],[-71.669501174,41.350036268],[-71.669593519,41.350031443],[-71.669705352,41.350027505],[-71.669804799,41.350022738],[-71.66989538,41.350016521],[-71.669989543,41.350010344],[-71.670096009,41.35000838],[-71.670181996,41.350009442],[-71.670263474,41.350015817],[-71.67035442,41.350032995],[-71.670453242,41.350056291],[-71.670536238,41.350074076],[-71.670618319,41.350090467],[-71.670705025,41.350099555],[-71.670791949,41.350099358],[-71.670897454,41.350101305],[-71.670999487,41.350098592],[-71.67107889,41.350077525],[-71.671157604,41.35004779],[-71.67122847,41.350011915],[-71.671301039,41.34997741],[-71.671380851,41.349938343],[-71.671469716,41.349891326],[-71.671549851,41.349836866],[-71.67162558,41.349780354],[-71.671702167,41.34972718],[-71.671784008,41.349675416],[-71.671866786,41.349622347],[-71.671940616,41.349571121],[-71.672019683,41.349526017],[-71.672101307,41.34948427],[-71.672192619,41.349444659],[-71.6722751,41.34940561],[-71.672355763,41.349367844],[-71.672438078,41.349334787],[-71.672533523,41.349309258],[-71.672625395,41.349286387],[-71.672709226,41.349264694],[-71.672794795,41.34924572],[-71.672887355,41.34923083],[-71.672971799,41.349222584],[-71.673049006,41.349220844],[-71.67312186,41.349214422],[-71.673222453,41.349195654],[-71.673319122,41.349196858],[-71.673401452,41.349203893],[-71.673474063,41.349208838],[-71.673555619,41.349210521],[-71.673641714,41.349206915],[-71.673744792,41.349198183],[-71.673811778,41.349176309],[-71.673887928,41.349142529],[-71.673972084,41.349106152],[-71.67404994,41.349074404],[-71.674124963,41.349050597],[-71.67419996,41.349028139],[-71.674280104,41.349012465],[-71.674364358,41.349012841],[-71.674442227,41.349020522],[-71.674521807,41.349032202],[-71.674599487,41.349048574],[-71.674684187,41.34906832],[-71.67476101,41.349081994],[-71.67483357,41.349090278],[-71.674909812,41.349091191],[-71.675002051,41.349092354],[-71.675098659,41.34909358],[-71.675122667,41.349093886],[-71.675182885,41.349094618],[-71.675263589,41.349095661],[-71.675366555,41.349090908],[-71.675442461,41.349067807],[-71.675504295,41.349037867],[-71.675577774,41.34900402],[-71.675652186,41.34896752],[-71.675730231,41.348927743],[-71.675815294,41.3488907],[-71.6758959,41.348854968],[-71.675978269,41.348820582],[-71.676071206,41.348788329],[-71.676167665,41.348756803],[-71.676249045,41.348727084],[-71.676331275,41.348697386],[-71.676423278,41.348667811],[-71.676521447,41.348640307],[-71.676607146,41.348613943],[-71.676696401,41.348589678],[-71.676800678,41.348564955],[-71.676907574,41.348543566],[-71.676999388,41.348522636],[-71.677083244,41.348499636],[-71.677153699,41.348481826],[-71.677563112,41.348399616],[-71.677660553,41.348394914],[-71.677768749,41.34839413],[-71.677855657,41.348399667],[-71.677951619,41.34840917],[-71.678043827,41.348410583],[-71.678130462,41.348405372],[-71.678210606,41.34839013],[-71.678295106,41.348370079],[-71.678384233,41.348354709],[-71.678403741,41.348352255],[-71.678480562,41.348342621],[-71.678585847,41.348331777],[-71.678693969,41.348326235],[-71.678806655,41.348324688],[-71.67891843,41.348323165],[-71.679019456,41.34831976],[-71.679107742,41.348307776],[-71.679202176,41.348290979],[-71.679221071,41.348286215],[-71.679298197,41.348266747],[-71.67939587,41.348235742],[-71.679495197,41.348199337],[-71.679584622,41.348160364],[-71.679667665,41.348118106],[-71.679755298,41.348078495],[-71.679854624,41.348042067],[-71.679949493,41.348007064],[-71.68003912,41.347975523],[-71.680133453,41.347955363],[-71.68023593,41.347939125],[-71.680346514,41.347924131],[-71.680457237,41.347915221],[-71.680566134,41.347904965],[-71.680668575,41.347886713],[-71.680764732,41.347867877],[-71.680853585,41.347841711],[-71.68092517,41.347805005],[-71.680982259,41.347761759],[-71.68104377,41.347715075],[-71.681116839,41.347666222],[-71.681202443,41.347617877],[-71.681285476,41.347572897],[-71.681365877,41.347530665],[-71.681446384,41.347493831],[-71.681534187,41.347461628],[-71.681630067,41.347430647],[-71.681733178,41.347402948],[-71.681839907,41.347377233],[-71.681944844,41.347350858],[-71.682050797,41.347329855],[-71.682157698,41.34731155],[-71.68226453,41.347290545],[-71.682369326,41.347257446],[-71.682472267,41.347222977],[-71.682573591,41.347196675],[-71.682686602,41.347170835],[-71.682804107,41.347146337],[-71.682913779,41.347131343],[-71.683028082,41.347123042],[-71.683146099,41.347118714],[-71.683259456,41.347108425],[-71.683368113,41.347088721],[-71.683477749,41.347071713],[-71.683583873,41.347058119],[-71.683680062,41.347040652],[-71.683754658,41.347018029],[-71.683843973,41.346973677],[-71.683909444,41.346943772],[-71.683997386,41.346918337],[-71.684099788,41.346898024],[-71.684212972,41.346880301],[-71.684330615,41.346861839],[-71.684444643,41.346842102],[-71.684547855,41.346818426],[-71.684641065,41.346788842],[-71.684723288,41.346747932],[-71.684794662,41.346702465],[-71.684866881,41.346654961],[-71.684936364,41.346606135],[-71.685002194,41.346553336],[-71.685058227,41.346502702],[-71.685111728,41.346458132],[-71.685183105,41.346414037],[-71.685275123,41.346370961],[-71.685372515,41.346328517],[-71.685465379,41.34628409],[-71.685555475,41.346237677],[-71.685649181,41.34619055],[-71.685736636,41.346144187],[-71.685817637,41.346090471],[-71.685907558,41.346036008],[-71.686001056,41.345980121],[-71.686095539,41.345928922],[-71.686188265,41.34587912],[-71.686280988,41.345828631],[-71.686373612,41.345774781],[-71.686476907,41.345717415],[-71.68658561,41.345662006],[-71.686687121,41.345606678],[-71.686782374,41.345549415],[-71.686883037,41.345494797],[-71.686989143,41.345444104],[-71.687093591,41.345397507],[-71.687199121,41.345357655],[-71.687310944,41.345321726],[-71.687422797,41.345285797],[-71.687529104,41.345241873],[-71.687620074,41.345194108],[-71.687707424,41.345143696],[-71.687809167,41.345095776],[-71.687915479,41.345053864],[-71.688023714,41.345015996],[-71.688134791,41.344984825],[-71.688247664,41.344955618],[-71.688367832,41.344930378],[-71.688490808,41.344910485],[-71.688608549,41.344896067],[-71.688727409,41.344891092],[-71.68884546,41.344889457],[-71.688964393,41.344888484],[-71.689086092,41.344888833],[-71.689216817,41.344893787],[-71.689348354,41.344896018],[-71.689475359,41.344894963],[-71.689583578,41.344893481],[-71.689678352,41.344892159],[-71.689779443,41.344892106],[-71.689888606,41.344891972],[-71.689996858,41.344891839],[-71.690112386,41.344899013],[-71.690238719,41.34490674],[-71.690366772,41.344911057],[-71.690483207,41.344917519],[-71.690591565,41.344922097],[-71.690701644,41.34492395],[-71.690804525,41.344923894],[-71.690894839,41.344922646],[-71.690977989,41.344920862],[-71.691059037,41.34490625],[-71.691126255,41.344873639],[-71.69117884,41.344829092],[-71.691217803,41.344775967],[-71.691263895,41.344721413],[-71.691316234,41.344665384],[-71.691372967,41.344607313],[-71.691429633,41.344547229],[-71.691484572,41.344487835],[-71.691536809,41.344428444],[-71.691592729,41.34437241],[-71.69164669,41.344310958],[-71.691707708,41.344244738],[-71.691775888,41.344178391],[-71.69184319,41.344112777],[-71.691907861,41.34405053],[-71.691973682,41.343997727],[-71.69204586,41.343949555],[-71.692128882,41.343904567],[-71.692221881,41.343867568],[-71.692319571,41.343836552],[-71.692415337,41.343801537],[-71.69250749,41.343765888],[-71.692591635,41.343731716],[-71.692676933,41.343707582],[-71.692769701,41.343695534],[-71.692872306,41.343684681],[-71.692978356,41.343669066],[-71.693078185,41.343653552],[-71.69316994,41.343637435],[-71.693252848,41.34362618],[-71.693324236,41.343619131],[-71.693405982,41.343595094],[-71.693474614,41.343548985],[-71.693524074,41.343484933],[-71.693591514,41.34342602],[-71.693684817,41.343399813],[-71.693771906,41.343376384],[-71.693835368,41.343337054],[-71.693874075,41.343310894],[-71.693953015,41.343282172],[-71.694056808,41.343283438],[-71.694141319,41.343301158],[-71.694232888,41.343314726],[-71.6943254,41.343328955],[-71.694418762,41.343343183],[-71.694512997,41.343355374],[-71.694605447,41.34336894],[-71.694689886,41.343383251],[-71.694766216,41.343395038],[-71.69486083,41.343422025],[-71.69494586,41.34346131],[-71.695001778,41.343517843],[-71.69503398,41.343590196],[-71.69505229,41.343644552],[-71.695062132,41.343718567],[-71.695063725,41.343784637],[-71.695061168,41.343863522],[-71.695047384,41.343922392],[-71.695033599,41.343981238],[-71.695032764,41.344057422],[-71.695050441,41.344123236],[-71.695087949,41.344193499],[-71.695124029,41.344242885],[-71.695165516,41.344294227],[-71.695204297,41.344343585],[-71.695235984,41.344395745],[-71.695236433,41.344413949],[-71.695254817,41.344472329],[-71.695299351,41.344537801],[-71.695339081,41.344589809],[-71.69538611,41.344647158],[-71.695435915,41.344709167],[-71.695485752,41.344771839],[-71.695539207,41.344836495],[-71.695592628,41.344899801],[-71.695643277,41.344959773],[-71.695690376,41.34501982],[-71.695739906,41.345071012],[-71.69581082,41.345117913],[-71.695874288,41.345151425],[-71.695928522,41.345212717],[-71.6959364,41.345279325],[-71.695950771,41.345355323],[-71.695979603,41.34543651],[-71.696011918,41.345515587],[-71.6960397,41.345590715],[-71.69606549,41.345659123],[-71.696112627,41.345721845],[-71.696171386,41.345783724],[-71.696222136,41.345846395],[-71.696262078,41.345907871],[-71.696295454,41.345955957],[-71.696439012,41.346119808],[-71.696486221,41.346185938],[-71.69652869,41.346239909],[-71.696581971,41.346296491],[-71.69663519,41.346352387],[-71.69668749,41.346405632],[-71.696737054,41.346457486],[-71.696790095,41.346504624],[-71.696840403,41.346551171],[-71.696881921,41.346601826],[-71.696912701,41.346653964],[-71.696939017,41.346705515],[-71.696972144,41.346781229],[-71.696990548,41.346876065],[-71.69701802,41.34693834],[-71.697072045,41.3469895],[-71.697132956,41.347029785],[-71.697188134,41.347091075],[-71.697223444,41.347145836],[-71.697264191,41.347201913],[-71.697310107,41.347251189],[-71.697364666,41.347288169],[-71.697421855,41.347321805],[-71.697472092,41.347364875],[-71.69751902,41.347417489],[-71.697560651,41.347474914],[-71.697591567,41.347531786],[-71.697611671,41.347586091],[-71.697623731,41.347639862],[-71.697626551,41.347719401],[-71.697628046,41.347782064],[-71.697647272,41.347837103],[-71.697670079,41.347892045],[-71.697682141,41.347946502],[-71.697715726,41.348002683],[-71.697751842,41.348052708],[-71.69779344,41.34810876],[-71.697847674,41.348168702],[-71.697913322,41.348219042],[-71.697970689,41.348260705],[-71.698009437,41.348308072],[-71.698039444,41.348364922],[-71.698033669,41.348422314],[-71.697985618,41.348470174],[-71.697941226,41.348483584],[-71.697881425,41.348489793],[-71.69788566,41.348515355],[-71.697920352,41.348545896],[-71.697993499,41.348536828],[-71.698072329,41.348540443],[-71.698129521,41.348574673],[-71.698174421,41.348618576],[-71.698191151,41.348681052],[-71.698229268,41.348739856],[-71.698279541,41.348784321],[-71.69831716,41.348859294],[-71.698328927,41.34897644],[-71.698328767,41.349033525],[-71.698322563,41.349089317],[-71.698306057,41.349150913],[-71.698282646,41.349207329],[-71.698254093,41.349259821],[-71.698178332,41.349257779],[-71.698144688,41.349272611],[-71.698133317,41.349336211],[-71.698136667,41.349369962],[-71.698221861,41.349379809],[-71.698283775,41.349419498],[-71.69829906,41.349485659],[-71.698298862,41.349550543],[-71.698298676,41.349619338],[-71.698298501,41.349681615],[-71.698301715,41.349750381],[-71.698299844,41.349813964],[-71.698271289,41.349865815],[-71.698197158,41.349890986],[-71.698121339,41.349910328],[-71.698128127,41.34994668],[-71.698202104,41.349970796],[-71.69826913,41.350014363],[-71.698299106,41.350070893],[-71.698284335,41.350114327],[-71.698260901,41.350173328],[-71.698273658,41.350226526],[-71.698290694,41.350289505],[-71.698314657,41.350344673],[-71.698355825,41.350398599],[-71.698362545,41.350462854],[-71.698375302,41.350516052],[-71.698328706,41.35055364],[-71.69830106,41.3505847],[-71.698327704,41.350603545],[-71.698408645,41.350601736],[-71.698415363,41.350654944],[-71.698371363,41.350687976],[-71.698285203,41.350710538],[-71.698207619,41.350738299],[-71.698186046,41.350770698],[-71.698222995,41.350784403],[-71.698305698,41.350772871],[-71.698379747,41.35077041],[-71.698440827,41.350784782],[-71.698394175,41.350833988],[-71.69841048,41.350856053],[-71.698499117,41.350869829],[-71.698581776,41.350873848],[-71.698655803,41.350873972],[-71.698685059,41.350883116],[-71.698629028,41.350912212],[-71.698564391,41.350936109],[-71.698526337,41.350987954],[-71.698520973,41.351060646],[-71.698507864,41.351121573],[-71.69849393,41.351180603],[-71.698477378,41.351237007],[-71.698458288,41.351297304],[-71.698433991,41.351362184],[-71.698402825,41.351423736],[-71.69834325,41.351475527],[-71.698262269,41.35150462],[-71.698189824,41.351545981],[-71.698150051,41.351601716],[-71.698112849,41.351654863],[-71.698074811,41.351712562],[-71.698017014,41.351750078],[-71.697967828,41.35179476],[-71.697916044,41.351833637],[-71.697844483,41.35186658],[-71.697754069,41.351867741],[-71.697661932,41.35188121],[-71.697589541,41.351900569],[-71.697520618,41.351912763],[-71.697429367,41.351908071],[-71.697357846,41.351924157],[-71.697283801,41.351928606],[-71.697214138,41.351906427],[-71.697128862,41.351910827],[-71.697049644,41.351910688],[-71.696989281,41.351943039],[-71.69691181,41.351948752],[-71.696873827,41.351974661],[-71.696896915,41.352031775],[-71.696893288,41.352097259],[-71.696927582,41.352146647],[-71.696992044,41.35218505],[-71.697040124,41.352236358],[-71.69701668,41.352302471],[-71.696995825,41.352362131],[-71.697020642,41.352418624],[-71.696983444,41.352473714],[-71.696962611,41.352530126],[-71.696969358,41.352593694],[-71.69697606,41.352652117],[-71.696975882,41.352713754],[-71.696984288,41.352783837],[-71.697001357,41.352837714],[-71.697002026,41.352898709],[-71.696962286,41.352945982],[-71.696922513,41.352992637],[-71.696918027,41.353054898],[-71.696863722,41.353093734],[-71.696801596,41.35313583],[-71.69676097,41.353181161],[-71.696729816,41.35323759],[-71.696666081,41.353239391],[-71.696614441,41.353245792],[-71.696616936,41.353278241],[-71.696652072,41.353334717],[-71.696614856,41.353393695],[-71.696584543,41.353457235],[-71.696555954,41.353518829],[-71.696511895,41.353563547],[-71.696461082,41.353572531],[-71.696476401,41.353630298],[-71.696434069,41.353684093],[-71.696401222,41.353732658],[-71.696364016,41.353785141],[-71.696313974,41.353818823],[-71.696233004,41.353832295],[-71.696150248,41.353867839],[-71.696088154,41.353900856],[-71.696022597,41.353942889],[-71.695985421,41.353995395],[-71.695969819,41.354035582],[-71.695895696,41.354055582],[-71.695849885,41.354113248],[-71.695815296,41.354168357],[-71.69576783,41.354200708],[-71.695679993,41.354201841],[-71.695581017,41.354203633],[-71.69549403,41.354204787],[-71.695419121,41.354205326],[-71.695328699,41.354205136],[-71.695243498,41.354205006],[-71.695170324,41.354197103],[-71.695096217,41.354211888],[-71.695054043,41.354207294],[-71.694978306,41.354194844],[-71.694914676,41.354160989],[-71.694853681,41.354114825],[-71.694795257,41.354065409],[-71.694731635,41.354034184],[-71.694711029,41.354025094],[-71.694692264,41.353971837],[-71.694630367,41.353928282],[-71.694579733,41.353875628],[-71.694507516,41.353842405],[-71.694443006,41.353807934],[-71.69439842,41.353747517],[-71.694358122,41.353689699],[-71.69431436,41.353640967],[-71.694262885,41.353580562],[-71.694234614,41.353525354],[-71.69420379,41.353468893],[-71.694173807,41.35341952],[-71.694142983,41.353362991],[-71.694120768,41.35330265],[-71.694093378,41.353247464],[-71.694088414,41.353180599],[-71.694105794,41.35312552],[-71.694128338,41.35307169],[-71.694180988,41.353027004],[-71.694254214,41.353012198],[-71.694324035,41.352985115],[-71.69439299,41.352963112],[-71.694449006,41.352937905],[-71.694512867,41.352897156],[-71.694590424,41.352868757],[-71.6946465,41.352833167],[-71.694666456,41.352787118],[-71.694601957,41.352756535],[-71.694526184,41.35275186],[-71.694454653,41.352775103],[-71.69438147,41.352773672],[-71.694317869,41.352738558],[-71.694233562,41.352722165],[-71.694148299,41.352731114],[-71.694068237,41.352723199],[-71.69398637,41.352741222],[-71.693938051,41.352782676],[-71.693939619,41.352840399],[-71.69390756,41.352899413],[-71.693873818,41.352953856],[-71.693819431,41.353006298],[-71.693764215,41.353035391],[-71.693720361,41.353016505],[-71.693720234,41.35307622],[-71.693741561,41.353133978],[-71.693732876,41.353163153],[-71.693679495,41.353155924],[-71.693663824,41.353214293],[-71.693659389,41.35326425],[-71.693684195,41.353318137],[-71.693676258,41.353374549],[-71.693640787,41.353429635],[-71.693582967,41.35347106],[-71.693566563,41.353497],[-71.693513889,41.35354427],[-71.693536982,41.353603969],[-71.693532515,41.353653286],[-71.693489336,41.353698619],[-71.693476309,41.353737521],[-71.693493329,41.353796613],[-71.693487149,41.353851741],[-71.693460283,41.353912027],[-71.693424831,41.353963202],[-71.693401465,41.354005987],[-71.69341848,41.354073495],[-71.693460526,41.354127421],[-71.693535325,41.354161304],[-71.693605874,41.354184765],[-71.693683259,41.354210844],[-71.693738236,41.354254389],[-71.69379405,41.354303833],[-71.693836969,41.35435515],[-71.693882472,41.354397361],[-71.693933995,41.354442878],[-71.693982949,41.354492265],[-71.694032726,41.354542954],[-71.694030882,41.354586411],[-71.69399713,41.354637606],[-71.694077976,41.354673422],[-71.69414936,41.354702096],[-71.694223306,41.354734653],[-71.694282577,41.354782764],[-71.694322902,41.354839278],[-71.694322077,41.354857942],[-71.694320116,41.35490284],[-71.69432253,41.35495928],[-71.694343864,41.355019028],[-71.69433425,41.355072858],[-71.694309974,41.355126005],[-71.694309824,41.355187664],[-71.694294988,41.355251223],[-71.694243188,41.355296526],[-71.694165672,41.355308732],[-71.694078733,41.355296254],[-71.693990023,41.355300635],[-71.693902973,41.355332274],[-71.693821959,41.355362646],[-71.693749516,41.355396891],[-71.693683107,41.355429227],[-71.693597839,41.355447895],[-71.693516873,41.355453612],[-71.693436804,41.355454753],[-71.693434997,41.355480051],[-71.693463275,41.355517099],[-71.693408928,41.355553326],[-71.693404466,41.355604586],[-71.693449944,41.355658507],[-71.693471318,41.355711783],[-71.693469425,41.355769465],[-71.693458083,41.355834345],[-71.693438065,41.355901138],[-71.693404307,41.355960795],[-71.693361072,41.356018456],[-71.69332389,41.356070274],[-71.693245502,41.356085729],[-71.693248836,41.35612529],[-71.693262437,41.356187589],[-71.693242423,41.356255685],[-71.693222401,41.356321174],[-71.693183462,41.356384683],[-71.693133376,41.356435196],[-71.693072161,41.35646885],[-71.692992886,41.356482339],[-71.692948798,41.356539361],[-71.692890958,41.356585313],[-71.69285123,41.356638462],[-71.69281666,41.356680579],[-71.692750268,41.356709027],[-71.692726831,41.356769284],[-71.69269309,41.356825031],[-71.692653385,41.356855469],[-71.692568111,41.356872833],[-71.692514598,41.356914273],[-71.692444753,41.356945288],[-71.692405844,41.356998435],[-71.692340291,41.357033354],[-71.692287729,41.357057936],[-71.692214521,41.357059751],[-71.692143856,41.35707],[-71.69206632,41.357086734],[-71.691985367,41.357087235],[-71.691912947,41.357109837],[-71.69185432,41.357146711],[-71.691784511,41.357169309],[-71.691713055,41.357158153],[-71.691629564,41.357152163],[-71.691535771,41.357142279],[-71.691458295,41.357127862],[-71.691368734,41.357122522],[-71.69128693,41.357132767],[-71.691214525,41.357150177],[-71.691167996,41.357172142],[-71.691103299,41.357209688],[-71.691025689,41.357242636],[-71.69094897,41.35726911],[-71.690873071,41.35730592],[-71.690818679,41.357359047],[-71.690765978,41.357419307],[-71.690718448,41.35747304],[-71.6906761,41.357523608],[-71.690630315,41.35757217],[-71.69057421,41.357631109],[-71.690568005,41.35763702],[-71.69051373,41.357688751],[-71.690462753,41.357747041],[-71.690410064,41.357801446],[-71.690366905,41.357844857],[-71.690321117,41.357892137],[-71.690242686,41.357914703],[-71.690167637,41.35795222],[-71.690117557,41.357995597],[-71.690052887,41.35804284],[-71.690038933,41.358097958],[-71.690012922,41.358151129],[-71.689978433,41.358169894],[-71.689905205,41.358176236],[-71.689849128,41.358213767],[-71.689793073,41.358248714],[-71.689719781,41.358274542],[-71.689668976,41.35827769],[-71.689599066,41.358328829],[-71.689524022,41.35836829],[-71.689460232,41.358405171],[-71.68942733,41.358458285],[-71.689396125,41.358521162],[-71.689345171,41.358567147],[-71.689293387,41.358609222],[-71.689236478,41.358642867],[-71.689165724,41.358686208],[-71.689095,41.358728932],[-71.689018223,41.358767733],[-71.688945808,41.358803255],[-71.688886235,41.358849894],[-71.688812874,41.358904904],[-71.688760227,41.35894307],[-71.688703291,41.358978018],[-71.688645533,41.359012281],[-71.688560101,41.359060175],[-71.688498023,41.359091197],[-71.688416052,41.359139703],[-71.68835223,41.359186943],[-71.68833223,41.359240768],[-71.688327752,41.3592985],[-71.688273332,41.359353547],[-71.688217229,41.359393685],[-71.688163711,41.359435145],[-71.688131845,41.359448074],[-71.688057714,41.359468046],[-71.687994773,41.359494519],[-71.687923199,41.359527478],[-71.687853402,41.359544882],[-71.687781024,41.359562267],[-71.687706906,41.359586791],[-71.68764819,41.359636653],[-71.687622165,41.359696296],[-71.687607354,41.359750112],[-71.687574481,41.359814271],[-71.687522652,41.359862864],[-71.687447631,41.359889951],[-71.687389841,41.359924282],[-71.687330304,41.359963076],[-71.687320153,41.359969496],[-71.687275096,41.35999802],[-71.687222425,41.360049199],[-71.687145674,41.360076951],[-71.687053479,41.360096244],[-71.686968176,41.360116234],[-71.686892327,41.360140737],[-71.686813913,41.360160053],[-71.686744104,41.360173568],[-71.686675136,41.360194835],[-71.68660023,41.360188233],[-71.686516697,41.360201061],[-71.686446904,41.360220409],[-71.68636593,41.360225457],[-71.686287507,41.360241548],[-71.686209926,41.360276459],[-71.686134114,41.360282162],[-71.686059196,41.360282032],[-71.686010937,41.360294894],[-71.686040025,41.360350766],[-71.686083778,41.360407917],[-71.686140499,41.360445653],[-71.686156693,41.360504061],[-71.686217718,41.360539206],[-71.686244307,41.360570381],[-71.686248427,41.36063137],[-71.686271489,41.360692397],[-71.686325621,41.360737296],[-71.686394374,41.3607789],[-71.686420905,41.360832146],[-71.686427583,41.360895761],[-71.686475679,41.360942544],[-71.686517726,41.360986731],[-71.686558914,41.361038031],[-71.686547544,41.361095775],[-71.686582675,41.361152299],[-71.686644552,41.361188083],[-71.686719417,41.361211587],[-71.686806393,41.361213687],[-71.686868278,41.361241648],[-71.686948369,41.361235298],[-71.6869914,41.361251603],[-71.687023914,41.361315885],[-71.687036669,41.361371051],[-71.687019241,41.36143331],[-71.686981205,41.361486454],[-71.686937995,41.361545393],[-71.686920599,41.361597932],[-71.686909194,41.361664732],[-71.686890935,41.361723082],[-71.686818499,41.361752817],[-71.686739221,41.361778652],[-71.686672839,41.361802522],[-71.686597905,41.361797177],[-71.686542084,41.361756238],[-71.686480926,41.361759997],[-71.686416221,41.361796877],[-71.686339554,41.361812302],[-71.686274026,41.361837497],[-71.686209336,41.361869163],[-71.686160946,41.361921637],[-71.686123713,41.361979972],[-71.686105512,41.362027297],[-71.686120003,41.362084427],[-71.686166355,41.362125999],[-71.686135316,41.362142196],[-71.68606299,41.362136207],[-71.68596913,41.362126341],[-71.685896807,41.362121678],[-71.685819277,41.362132552],[-71.685778672,41.362179205],[-71.685757978,41.362193418],[-71.685713353,41.362139493],[-71.685721296,41.362082441],[-71.685761822,41.362061106],[-71.685810096,41.362042366],[-71.685805898,41.362007312],[-71.685728421,41.361994195],[-71.685663104,41.361965575],[-71.685649508,41.361902589],[-71.685677199,41.361851383],[-71.685662733,41.361792309],[-71.685625875,41.36173709],[-71.685597614,41.361683848],[-71.685510706,41.361673993],[-71.685419395,41.361684867],[-71.685347795,41.361720409],[-71.685286565,41.361752091],[-71.685200356,41.361774643],[-71.685125463,41.361773209],[-71.68504374,41.361750355],[-71.684965462,41.36172235],[-71.68488114,41.361692983],[-71.684852799,41.361675395],[-71.684826177,41.361643579],[-71.684748742,41.361623349],[-71.684680801,41.361600519],[-71.684630983,41.361556299],[-71.68461735,41.361501774],[-71.684571016,41.361454987],[-71.684509142,41.361419843],[-71.684444698,41.361377567],[-71.684387139,41.361333336],[-71.684337344,41.361286531],[-71.684276325,41.361242306],[-71.684245487,41.36118973],[-71.684224989,41.36113325],[-71.684214013,41.361062506],[-71.684213366,41.360994399],[-71.684203258,41.360930149],[-71.684201711,41.360865908],[-71.684188114,41.360802304],[-71.684201238,41.360741333],[-71.68427197,41.360699298],[-71.684325492,41.360657886],[-71.684357525,41.360606673],[-71.684382658,41.360552224],[-71.684411255,41.360488689],[-71.684436429,41.360427127],[-71.684481324,41.360383716],[-71.68453833,41.36034033],[-71.684602159,41.360304756],[-71.684666883,41.360252987],[-71.684711811,41.360199879],[-71.684712025,41.360136275],[-71.684717364,41.360081149],[-71.684683973,41.360016845],[-71.684629758,41.359973912],[-71.68455761,41.359943953],[-71.684483589,41.359928246],[-71.684408618,41.359952128],[-71.684319961,41.359945501],[-71.68424759,41.359955108],[-71.684161483,41.359948476],[-71.684091773,41.359932784],[-71.683991961,41.359920914],[-71.683899015,41.359899976],[-71.68380525,41.359868701],[-71.683739876,41.359840675],[-71.68367368,41.359811369],[-71.68360833,41.359780781],[-71.683543833,41.35975145],[-71.683482797,41.359722136],[-71.683395103,41.359679805],[-71.683328878,41.359651162],[-71.683262657,41.3596238],[-71.683196413,41.359599045],[-71.683106959,41.359567718],[-71.683033017,41.359536434],[-71.682971094,41.35950456],[-71.682881606,41.359493358],[-71.682792955,41.35947765],[-71.682710408,41.359441142],[-71.682639877,41.359413764],[-71.682571078,41.359387069],[-71.682502243,41.359358384],[-71.682430887,41.359329063],[-71.682350905,41.359297788],[-71.682272676,41.359263904],[-71.682206466,41.359229383],[-71.682142846,41.359198173],[-71.682080927,41.359167579],[-71.68199063,41.359127173],[-71.68190889,41.359107565],[-71.681846989,41.359072396],[-71.681773882,41.359057348],[-71.681701661,41.359022196],[-71.681630298,41.358979244],[-71.681556387,41.358936958],[-71.681492778,41.358898545],[-71.681438627,41.35886668],[-71.681414639,41.358830948],[-71.681374283,41.358793253],[-71.681295977,41.358774942],[-71.681208215,41.358761816],[-71.681126447,41.358742847],[-71.681051612,41.358717396],[-71.68097678,41.358692631],[-71.680893307,41.358671744],[-71.680807282,41.358650152],[-71.680718654,41.358631194],[-71.680621416,41.358616069],[-71.680549965,41.358606896],[-71.680458716,41.358595009],[-71.680377783,41.358592323],[-71.680295112,41.358597987],[-71.680132832,41.358608259],[-71.680055982,41.358622101],[-71.679998587,41.358668481],[-71.679944001,41.358720528],[-71.679892246,41.358764818],[-71.67983948,41.358816816],[-71.679757808,41.358854658],[-71.679697703,41.35888693],[-71.679616048,41.358919854],[-71.679540088,41.358937926],[-71.679466886,41.358965233],[-71.679405838,41.358996752],[-71.679338276,41.359021947],[-71.679264137,41.359050627],[-71.679251101,41.359056754],[-71.679198411,41.359081491],[-71.679117734,41.359105928],[-71.679027731,41.359128206],[-71.678943333,41.359146268],[-71.678873006,41.359159459],[-71.678796194,41.359165548],[-71.678710956,41.359165292],[-71.678630453,41.359165028],[-71.678553654,41.359164781],[-71.678469386,41.359163837],[-71.678379513,41.359155766],[-71.678290607,41.359146298],[-71.678209245,41.359131215],[-71.678133484,41.359111206],[-71.678065252,41.359091231],[-71.677992317,41.359071973],[-71.677904389,41.359053332],[-71.677808981,41.359030449],[-71.677722043,41.359007576],[-71.677636933,41.358987558],[-71.67754997,41.358966811],[-71.677461118,41.358943255],[-71.677364783,41.358925335],[-71.677269321,41.358915831],[-71.677183217,41.358909217],[-71.677109337,41.358888496],[-71.677028838,41.358878373],[-71.676955804,41.358878143],[-71.676872437,41.358884949],[-71.676811268,41.358939726],[-71.676781912,41.358994707],[-71.676746942,41.359050336],[-71.676704519,41.359100281],[-71.676659212,41.359161507],[-71.676598168,41.359195197],[-71.676526801,41.359228103],[-71.6764787,41.359288624],[-71.676453128,41.359340053],[-71.676435008,41.359397143],[-71.676420623,41.359454249],[-71.676386583,41.35951763],[-71.676361928,41.359571185],[-71.676327911,41.359620454],[-71.676281684,41.359678159],[-71.676242958,41.359737316],[-71.676206107,41.359793634],[-71.676160917,41.359842165],[-71.6760988,41.359894886],[-71.676047896,41.359951888],[-71.676017181,41.359987636],[-71.67600075,41.360006758],[-71.675962972,41.360068726],[-71.675960781,41.360123047],[-71.675982856,41.360192951],[-71.67602842,41.360249555],[-71.676082439,41.360300542],[-71.676147729,41.360343782],[-71.676220586,41.360378571],[-71.676307548,41.360398609],[-71.676401121,41.36041587],[-71.676487189,41.360430947],[-71.676559207,41.360447418],[-71.676639677,41.360457563],[-71.676713553,41.360476112],[-71.676779807,41.36051656],[-71.676846124,41.360546418],[-71.676860789,41.360603618],[-71.67686046,41.360661458],[-71.676867608,41.360722877],[-71.676888807,41.360782903],[-71.676937249,41.36082539],[-71.676981103,41.360855169],[-71.677024743,41.360918133],[-71.677068491,41.360964813],[-71.677108468,41.361019961],[-71.67712215,41.361084229],[-71.677075921,41.361141225],[-71.677011162,41.361171353],[-71.67693516,41.361197222],[-71.67686853,41.361220287],[-71.676844891,41.361256916],[-71.676848347,41.361311251],[-71.676885511,41.361359336],[-71.676948073,41.361391991],[-71.67701064,41.361426772],[-71.677080616,41.361473572],[-71.677132842,41.361511822],[-71.677186004,41.361548722],[-71.677246694,41.361584855],[-71.677279161,41.361635761],[-71.677297521,41.361700754],[-71.677274747,41.361754306],[-71.67721731,41.361809169],[-71.677212255,41.361870515],[-71.677252214,41.361929917],[-71.677316629,41.361963278],[-71.677390469,41.361990357],[-71.677450216,41.362025806],[-71.677490201,41.362072468],[-71.677504887,41.362126146],[-71.677505473,41.362185425],[-71.677505109,41.362252482],[-71.677507517,41.362323034],[-71.677513743,41.362380178],[-71.677511529,41.362436648],[-71.677484018,41.362500728],[-71.677479011,41.36255718],[-71.677495523,41.362623571],[-71.677518596,41.362680048],[-71.677546335,41.36274434],[-71.67757783,41.362805836],[-71.677605586,41.362865211],[-71.677632402,41.362925273],[-71.677647068,41.362982473],[-71.677662626,41.363043879],[-71.677695044,41.363109604],[-71.677698435,41.363173156],[-71.677674656,41.363236521],[-71.677663985,41.363297876],[-71.677663593,41.36336562],[-71.677696967,41.363425717],[-71.677740738,41.363468898],[-71.677789105,41.3635276],[-71.677796235,41.363593228],[-71.677795911,41.363652509],[-71.677777806,41.36370395],[-71.677702646,41.363750287],[-71.677645249,41.363798083],[-71.677590662,41.363840935],[-71.677547298,41.363891615],[-71.677529181,41.363950077],[-71.677508208,41.364018469],[-71.677463876,41.364070545],[-71.677464509,41.364124862],[-71.677460524,41.364166492],[-71.677375204,41.364183136],[-71.677313228,41.36421047],[-71.677322423,41.364242978],[-71.677382164,41.364275591],[-71.67746994,41.364324558],[-71.67754077,41.364382632],[-71.677596655,41.364437183],[-71.677653501,41.364488119],[-71.677717884,41.364530674],[-71.677787928,41.364567616],[-71.677851412,41.364603081],[-71.677907362,41.36463714],[-71.677991504,41.364667039],[-71.678065406,41.364682065],[-71.678128823,41.364726725],[-71.678166879,41.364788965],[-71.678166508,41.36485314],[-71.678166201,41.364907481],[-71.678152726,41.364975862],[-71.678112104,41.365041357],[-71.678050001,41.365089161],[-71.678001016,41.365138363],[-71.678012858,41.36519488],[-71.67807075,41.365228204],[-71.678087331,41.365274812],[-71.678088844,41.365339716],[-71.678097866,41.365397633],[-71.678171672,41.365433128],[-71.678243636,41.365460896],[-71.678257485,41.365496232],[-71.678222647,41.365523593],[-71.678140313,41.365511371],[-71.678079381,41.365521025],[-71.678067869,41.365574605],[-71.678099406,41.365628325],[-71.678141217,41.365687015],[-71.678164239,41.365757672],[-71.678178901,41.365812744],[-71.67819168,41.365867819],[-71.678215619,41.365940579],[-71.678249025,41.366000654],[-71.678288953,41.366058637],[-71.678336408,41.366115946],[-71.678381891,41.366185219],[-71.67841523,41.366253779],[-71.678436432,41.366313804],[-71.678479201,41.366366888],[-71.678513516,41.36642623],[-71.678513209,41.36648057],[-71.678512823,41.366550418],[-71.678499288,41.366618821],[-71.678437197,41.366671543],[-71.678366811,41.366699554],[-71.678284265,41.366721157],[-71.67818967,41.366722264],[-71.678095041,41.36672193],[-71.678007972,41.366721653],[-71.677923716,41.36671785],[-71.677826404,41.366702037],[-71.677727185,41.366688285],[-71.677634482,41.366681635],[-71.677560619,41.366658833],[-71.677494303,41.366631834],[-71.677401572,41.366637146],[-71.677336715,41.366677864],[-71.677295196,41.366727122],[-71.677239677,41.366774252],[-71.677168357,41.366805054],[-71.677089546,41.36682736],[-71.67699956,41.366837676],[-71.676918097,41.366833867],[-71.676816061,41.366822246],[-71.676745901,41.366810712],[-71.676674817,41.366794263],[-71.676607541,41.366771473],[-71.676545867,41.366743025],[-71.676483299,41.366709685],[-71.676420732,41.36667703],[-71.67635443,41.366643649],[-71.676288124,41.366608851],[-71.676231199,41.366574129],[-71.676169692,41.366517481],[-71.676124197,41.36645452],[-71.676089889,41.366385984],[-71.676052758,41.366328704],[-71.675992171,41.366286898],[-71.675898609,41.366265429],[-71.675814432,41.366245385],[-71.675740611,41.366215515],[-71.675682765,41.366176518],[-71.675628662,41.366141059],[-71.675550135,41.366111196],[-71.675490084,41.366132877],[-71.675447682,41.366181382],[-71.675410992,41.366208814],[-71.675323891,41.366207803],[-71.675287495,41.366186543],[-71.675286919,41.366118802],[-71.675271233,41.366077132],[-71.675178668,41.366053534],[-71.675168135,41.366054053],[-71.675084084,41.36605816],[-71.674989374,41.366072667],[-71.674899315,41.366100615],[-71.674811967,41.366143355],[-71.674750868,41.366181985],[-71.674706566,41.366235432],[-71.674663191,41.366283274],[-71.674599376,41.366305647],[-71.674529212,41.366292008],[-71.674452545,41.366264977],[-71.674366576,41.366232951],[-71.67429006,41.366182592],[-71.674252004,41.366119664],[-71.674266439,41.366056909],[-71.674318265,41.366001346],[-71.67438506,41.365947225],[-71.674442532,41.3658917],[-71.674483128,41.365837527],[-71.674468464,41.365780327],[-71.674374867,41.365768004],[-71.674284097,41.365757141],[-71.674201716,41.36574981],[-71.674132273,41.365767205],[-71.674071251,41.365800871],[-71.674006428,41.36583173],[-71.673932385,41.365843483],[-71.673851899,41.365829791],[-71.673767788,41.365799889],[-71.673696895,41.365751694],[-71.673643809,41.365698577],[-71.673590734,41.365649737],[-71.673525393,41.365611413],[-71.673452328,41.365613993],[-71.673394924,41.365661079],[-71.673354329,41.365716006],[-71.673300681,41.365759587],[-71.67322382,41.365773425],[-71.67314796,41.365775277],[-71.67307575,41.365791304],[-71.672995908,41.365825592],[-71.67290399,41.365851391],[-71.672814076,41.365853928],[-71.672731655,41.365854349],[-71.67264834,41.365849877],[-71.672569779,41.365829137],[-71.672506339,41.365786601],[-71.672454237,41.365726484],[-71.672404012,41.365664191],[-71.672360326,41.365606212],[-71.672322236,41.365552477],[-71.672283271,41.365488818],[-71.672262201,41.365407614],[-71.672255009,41.365351157],[-71.672246095,41.365274943],[-71.67223058,41.365205051],[-71.672207574,41.365137915],[-71.672204227,41.36506597],[-71.672204623,41.36499754],[-71.672209656,41.364937544],[-71.672237156,41.364878382],[-71.67227866,41.364822768],[-71.672347256,41.364783488],[-71.672432685,41.3647499],[-71.672511599,41.364709255],[-71.672568945,41.364674887],[-71.672633725,41.364639066],[-71.672707007,41.364604078],[-71.672781151,41.364573938],[-71.672845948,41.364544521],[-71.672922101,41.364493268],[-71.672981401,41.364440554],[-71.673021013,41.364392695],[-71.673067162,41.364349126],[-71.673149603,41.364345137],[-71.673228212,41.364350324],[-71.673319991,41.364353456],[-71.67341362,41.364355877],[-71.673511035,41.364354792],[-71.673611288,41.364348032],[-71.673709722,41.36433073],[-71.673816597,41.364314125],[-71.67389156,41.364306647],[-71.673995526,41.364303426],[-71.674085432,41.364298807],[-71.674160424,41.364290575],[-71.674232491,41.364301398],[-71.674311897,41.364332015],[-71.674396928,41.364366124],[-71.674481078,41.364388272],[-71.674561583,41.364398396],[-71.674635502,41.364409261],[-71.67471402,41.364436999],[-71.674778504,41.364461212],[-71.674854204,41.36449108],[-71.674916701,41.364532907],[-71.674983022,41.364562744],[-71.675060616,41.364585588],[-71.675139236,41.364594319],[-71.67516422,41.364594189],[-71.675223538,41.364593893],[-71.675276182,41.364561588],[-71.67527557,41.364503041],[-71.675214044,41.364449915],[-71.675163789,41.364433731],[-71.675123379,41.364420687],[-71.675026109,41.364396387],[-71.674925995,41.364375612],[-71.674851168,41.364366189],[-71.674776302,41.364353267],[-71.674682822,41.364326856],[-71.674607136,41.364291316],[-71.674537098,41.364255812],[-71.674473611,41.364218218],[-71.674408297,41.364178477],[-71.674343021,41.364130273],[-71.674302094,41.364082902],[-71.674305219,41.36402508],[-71.674347627,41.363979321],[-71.674339479,41.363929201],[-71.674260026,41.363903546],[-71.674186986,41.363903291],[-71.674109208,41.363913655],[-71.674099505,41.363974985],[-71.674029922,41.36401923],[-71.6739521,41.364035906],[-71.673879029,41.364035674],[-71.673787285,41.36403396],[-71.673706868,41.364011096],[-71.673645313,41.363969291],[-71.673589385,41.3639197],[-71.673561613,41.363864578],[-71.673562004,41.363794731],[-71.673559624,41.363721321],[-71.673538493,41.363652146],[-71.673503281,41.363584297],[-71.673468095,41.363515029],[-71.673431031,41.363447183],[-71.673393921,41.363384962],[-71.673338942,41.363338206],[-71.673267046,41.363299869],[-71.67319703,41.363260843],[-71.673140123,41.363219785],[-71.673095466,41.363173036],[-71.673058309,41.363115755],[-71.673027757,41.363053571],[-71.67300468,41.362994211],[-71.672996621,41.36293142],[-71.672987619,41.362867877],[-71.672971122,41.362805762],[-71.672971483,41.362747191],[-71.672992484,41.362675963],[-71.673029345,41.362621773],[-71.673081115,41.362569025],[-71.673136697,41.362511353],[-71.673191389,41.362450161],[-71.673247013,41.362385399],[-71.673284712,41.362338252],[-71.673316845,41.362286859],[-71.673342598,41.362210753],[-71.673353305,41.362138809],[-71.673372394,41.362079615],[-71.673383808,41.362045086],[-71.673394442,41.361991484],[-71.673448992,41.361945798],[-71.673517585,41.361906518],[-71.673585283,41.361862275],[-71.673649199,41.361822316],[-71.673722425,41.361790781],[-71.673801243,41.361761388],[-71.673876373,41.361726397],[-71.673936545,41.361682806],[-71.673995781,41.361641367],[-71.674053097,41.361608415],[-71.674131983,41.361570559],[-71.674212728,41.361535537],[-71.674260791,41.361482061],[-71.674314438,41.361439212],[-71.674380173,41.361399204],[-71.674442177,41.361371185],[-71.67452288,41.361343229],[-71.674580254,41.361298247],[-71.674613344,41.361241913],[-71.674631483,41.361179883],[-71.674656207,41.36111718],[-71.674661228,41.361053684],[-71.674663525,41.36098173],[-71.674677949,41.360915452],[-71.67469893,41.36084921],[-71.674711498,41.360781517],[-71.674711928,41.360703894],[-71.674702052,41.36063189],[-71.674685549,41.360567626],[-71.674685904,41.360507682],[-71.674686256,41.36044632],[-71.674686584,41.360387016],[-71.674707591,41.360319356],[-71.674736902,41.360269339],[-71.674770892,41.360220802],[-71.674820853,41.360162384],[-71.674848325,41.360106035],[-71.674884222,41.360055368],[-71.674934156,41.359998367],[-71.674941781,41.359989299],[-71.674973765,41.359951216],[-71.674996568,41.359896979],[-71.675012866,41.359827885],[-71.675061868,41.359774408],[-71.67511826,41.359737226],[-71.675151155,41.35972183],[-71.675196206,41.359700766],[-71.675248908,41.359657186],[-71.675254888,41.359589457],[-71.675287107,41.359526057],[-71.675348283,41.359473361],[-71.675408541,41.359417831],[-71.675454684,41.359373507],[-71.675521456,41.359325057],[-71.675580697,41.359275154],[-71.675634384,41.359225946],[-71.675676853,41.359170329],[-71.675735001,41.359154277],[-71.675823066,41.359144697],[-71.675885971,41.359114549],[-71.675942411,41.359073135],[-71.676005425,41.359026749],[-71.676075845,41.358991695],[-71.676149812,41.358988403],[-71.67620112,41.35902526],[-71.67620361,41.359081724],[-71.676248337,41.359120672],[-71.676330814,41.359110346],[-71.676390989,41.359069636],[-71.676476362,41.359040962],[-71.676550444,41.35902429],[-71.676619968,41.358983589],[-71.676637188,41.358919433],[-71.676637496,41.358865092],[-71.676602221,41.358807833],[-71.676545363,41.358761813],[-71.676473578,41.358707263],[-71.676416681,41.35866895],[-71.676353223,41.35862923],[-71.676291689,41.358582463],[-71.676232996,41.35853146],[-71.676177075,41.358483334],[-71.676119255,41.358440792],[-71.676059539,41.358403902],[-71.675999796,41.35836843],[-71.675939164,41.358329437],[-71.675878498,41.358289071],[-71.675820686,41.358249342],[-71.675766582,41.358211048],[-71.675713419,41.358172775],[-71.675641583,41.358121037],[-71.675571637,41.358072842],[-71.675493242,41.358031657],[-71.675404435,41.358001741],[-71.675309969,41.357978145],[-71.675215532,41.357953863],[-71.675146338,41.35792538],[-71.675136128,41.357921188],[-71.675064282,41.357877202],[-71.674980226,41.357841629],[-71.674880126,41.35782225],[-71.674784641,41.357814871],[-71.674708823,41.357806181],[-71.674629231,41.357805204],[-71.674569111,41.357843832],[-71.674528565,41.357892379],[-71.674478707,41.3579317],[-71.67441206,41.357959017],[-71.674338894,41.357977104],[-71.674250752,41.358002944],[-71.674169238,41.358009723],[-71.674096174,41.358009513],[-71.673998795,41.358009203],[-71.673957573,41.358009037],[-71.673881747,41.358008831],[-71.673803098,41.358008538],[-71.673716886,41.358018137],[-71.673645665,41.358026386],[-71.673563252,41.358026122],[-71.673541851,41.35802588],[-71.67351183,41.358025559],[-71.673467754,41.358025077],[-71.673371333,41.358019824],[-71.67326741,41.358012434],[-71.673171009,41.358002973],[-71.673094301,41.357990716],[-71.673025083,41.357975679],[-71.672941883,41.357953528],[-71.672842682,41.357941213],[-71.672738782,41.357930986],[-71.672634015,41.357914448],[-71.672561957,41.35790431],[-71.672458043,41.35790044],[-71.672357842,41.35790011],[-71.672261405,41.357899797],[-71.672179016,41.357897427],[-71.672106914,41.357893647],[-71.672023608,41.357888466],[-71.671961005,41.357860726],[-71.671886346,41.357819556],[-71.671805124,41.357776246],[-71.671735186,41.357729466],[-71.671670874,41.357674924],[-71.671661048,41.357666774],[-71.671611218,41.357625339],[-71.671542218,41.357577139],[-71.671461864,41.357540186],[-71.671368406,41.357506705],[-71.671302056,41.357485328],[-71.671202921,41.357463131],[-71.671114005,41.357460016],[-71.67103439,41.357461873],[-71.670951949,41.357462315],[-71.670862048,41.357465559],[-71.670770286,41.357465238],[-71.670682286,41.357464248],[-71.67059522,41.357460443],[-71.670506314,41.357449574],[-71.670419279,41.357434448],[-71.670331393,41.357418638],[-71.670249125,41.357392275],[-71.670170617,41.35736449],[-71.670092969,41.357352231],[-71.670001221,41.357345597],[-71.669924493,41.35733686],[-71.669832839,41.357319613],[-71.669736482,41.357303106],[-71.669648447,41.357300011],[-71.66957888,41.35731379],[-71.669571568,41.357315242],[-71.669517327,41.357339473],[-71.669494618,41.357349569],[-71.669412137,41.357357764],[-71.669324112,41.3573589],[-71.669234184,41.357363515],[-71.669147062,41.357373134],[-71.669078513,41.357404659],[-71.66900896,41.357447437],[-71.668924524,41.357474686],[-71.668852343,41.357487165],[-71.668750187,41.357505177],[-71.668656495,41.357509796],[-71.668569408,41.357509512],[-71.668479476,41.357512732],[-71.668374594,41.357521576],[-71.668274344,41.35752545],[-71.668191872,41.357537898],[-71.668153218,41.357556137],[-71.668110167,41.35757644],[-71.668046296,41.357610062],[-71.66798241,41.357649355],[-71.66793375,41.357672274],[-71.66792135,41.357678101],[-71.667836937,41.357702512],[-71.66776474,41.357720617],[-71.667692494,41.357743661],[-71.667624926,41.357767431],[-71.667530168,41.357794625],[-71.667432751,41.357802771],[-71.667333452,41.35781092],[-71.667243433,41.357827563],[-71.667159017,41.357851266],[-71.667078402,41.357865814],[-71.666989445,41.357870471],[-71.666899536,41.357870876],[-71.666806717,41.357884665],[-71.666738235,41.357907726],[-71.666651935,41.357930721],[-71.66655456,41.357931846],[-71.666469324,41.357931535],[-71.666372887,41.357931217],[-71.666276465,41.35792525],[-71.66618103,41.357912923],[-71.666085632,41.357891471],[-71.665995065,41.357848125],[-71.665933423,41.35781544],[-71.665861521,41.35778277],[-71.665784934,41.35774583],[-71.665716864,41.357703961],[-71.665678849,41.357675542],[-71.665659051,41.357660727],[-71.665606835,41.357622472],[-71.665542487,41.35757568],[-71.665523159,41.357554827],[-71.665495948,41.357525431],[-71.665458874,41.357461127],[-71.665405891,41.357395313],[-71.665335002,41.357342858],[-71.66525943,41.357298873],[-71.665184703,41.357264743],[-71.665117411,41.357241946],[-71.665054857,41.357208599],[-71.665005517,41.357166771],[-71.664936452,41.357127029],[-71.664871074,41.357092955],[-71.664861718,41.357090086],[-71.66477946,41.357066556],[-71.664702854,41.357033823],[-71.664631873,41.357004674],[-71.664576918,41.356950869],[-71.664527565,41.356903415],[-71.664487615,41.356853911],[-71.664426095,41.356808533],[-71.664338173,41.356789905],[-71.664246382,41.356789624],[-71.664173349,41.356789339],[-71.664100267,41.356793354],[-71.664013039,41.356821266],[-71.663939729,41.356867615],[-71.663872968,41.356911118],[-71.663815586,41.356954677],[-71.663765658,41.357004606],[-71.663716722,41.357051011],[-71.663647234,41.357084638],[-71.663575116,41.357085816],[-71.663490822,41.357085547],[-71.663397178,41.357085222],[-71.663305445,41.357084209],[-71.663204297,41.357081036],[-71.663111679,41.35706589],[-71.663030404,41.357034604],[-71.662860404,41.356966988],[-71.662829771,41.356916076],[-71.662754113,41.35688549],[-71.662683066,41.356865533],[-71.662616778,41.356831458],[-71.662534624,41.35678812],[-71.662466388,41.356763883],[-71.6623916,41.356741049],[-71.662313108,41.356718198],[-71.66223741,41.356695388],[-71.662166332,41.356675408],[-71.662096184,41.35666318],[-71.662010947,41.356662202],[-71.661929662,41.356638599],[-71.661850091,41.356633405],[-71.661795463,41.35668613],[-71.661753921,41.356740323],[-71.661728229,41.356808719],[-71.661727861,41.356868663],[-71.661727479,41.356934989],[-71.661727106,41.357004813],[-71.661721994,41.357073272],[-71.661708503,41.35714165],[-71.661684668,41.357212102],[-71.661649637,41.357272667],[-71.661610916,41.35732617],[-71.661563831,41.357373281],[-71.661491503,41.357412559],[-71.661423891,41.357444078],[-71.661349783,41.357463576],[-71.66127301,41.357460505],[-71.661191513,41.357462335],[-71.661101512,41.357486726],[-71.661025459,41.357517525],[-71.660947601,41.357542677],[-71.660876219,41.357572074],[-71.660811355,41.357622663],[-71.660758662,41.357660564],[-71.660721077,41.357682572],[-71.660697586,41.357696328],[-71.660633662,41.357734222],[-71.660572596,41.357774239],[-71.660516167,41.357811437],[-71.660457912,41.35784651],[-71.660395889,41.35788017],[-71.660332036,41.357910288],[-71.660236328,41.357947357],[-71.660168758,41.357971831],[-71.660083263,41.358014604],[-71.660034207,41.358075096],[-71.660024398,41.358147746],[-71.660023994,41.358218325],[-71.660033973,41.358276883],[-71.660067306,41.358340508],[-71.660132562,41.358387279],[-71.660214951,41.35838968],[-71.660282543,41.358361684],[-71.660351758,41.358376751],[-71.660363582,41.358432516],[-71.660309957,41.358474672],[-71.660262889,41.358516842],[-71.660209194,41.358567461],[-71.660163011,41.358623741],[-71.66014485,41.358682246],[-71.660144446,41.358752802],[-71.660144014,41.35882409],[-71.66014358,41.358894601],[-71.660153447,41.358969442],[-71.660177364,41.359042892],[-71.660191902,41.359116355],[-71.660220518,41.359186962],[-71.660254852,41.359237206],[-71.660292037,41.359286692],[-71.660339397,41.359351098],[-71.66038781,41.359399196],[-71.660445685,41.359431134],[-71.660495914,41.359489178],[-71.660525466,41.359557748],[-71.660542871,41.359624117],[-71.660540602,41.359688981],[-71.660502842,41.359738983],[-71.660476314,41.359789678],[-71.660445144,41.359841089],[-71.660423246,41.359898159],[-71.660417263,41.35995882],[-71.660419394,41.360010801],[-71.660419718,41.360018806],[-71.660445578,41.360079559],[-71.660481798,41.360131196],[-71.660516158,41.360179977],[-71.660559919,41.360224582],[-71.660614949,41.360259337],[-71.660676567,41.360294815],[-71.660679023,41.36035551],[-71.66065114,41.36038576],[-71.660637546,41.360400531],[-71.660572725,41.360432777],[-71.660490202,41.360450846],[-71.660399412,41.360439949],[-71.660318158,41.360406488],[-71.660278203,41.360354147],[-71.660227851,41.36032014],[-71.660146354,41.36032341],[-71.660059232,41.360323097],[-71.659986982,41.360346159],[-71.659915771,41.360360026],[-71.659838091,41.360347738],[-71.659743699,41.360316377],[-71.659645522,41.360288519],[-71.659555767,41.360266345],[-71.659472489,41.360249147],[-71.659384645,41.360226261],[-71.659293922,41.360205483],[-71.659200294,41.360200947],[-71.659114975,41.360217578],[-71.659038927,41.360251897],[-71.658967528,41.360288337],[-71.658892419,41.360321969],[-71.658804205,41.360347065],[-71.658699265,41.3603594],[-71.658594386,41.360359042],[-71.658506353,41.360358774],[-71.658430494,41.36035849],[-71.658334978,41.360363813],[-71.658256104,41.360397404],[-71.658197818,41.360433917],[-71.658140428,41.360476741],[-71.65808492,41.36051963],[-71.658031319,41.360560345],[-71.657968229,41.360618706],[-71.657914548,41.360663674],[-71.657846979,41.360690251],[-71.657757933,41.360697737],[-71.657664362,41.360691736],[-71.657578255,41.360684398],[-71.65749035,41.360661511],[-71.657390296,41.360635781],[-71.657312665,41.36061862],[-71.65722853,41.360597854],[-71.657137827,41.360572866],[-71.657051825,41.360545722],[-71.656978958,41.360515129],[-71.656919231,41.360482483],[-71.656841797,41.360433554],[-71.656766175,41.360393062],[-71.656693405,41.360351903],[-71.656638416,41.360307952],[-71.656578787,41.360252709],[-71.656523824,41.360206677],[-71.656493223,41.360155077],[-71.656445861,41.360088588],[-71.656378744,41.360037541],[-71.656332341,41.360016517],[-71.656300281,41.360002015],[-71.656227398,41.359977071],[-71.656151539,41.359976808],[-71.656056981,41.359976479],[-71.655981144,41.359972694],[-71.65589407,41.359966751],[-71.655812596,41.359966473],[-71.655717965,41.359973919],[-71.655641041,41.359998335],[-71.655600745,41.360017532],[-71.655563086,41.360035467],[-71.655497281,41.360076174],[-71.655439935,41.360112662],[-71.655351697,41.360153285],[-71.655285973,41.360177044],[-71.655193965,41.360215545],[-71.655109522,41.360243469],[-71.655013955,41.360253044],[-71.654937176,41.360249236],[-71.65485109,41.360237642],[-71.654765965,41.360221153],[-71.654689273,41.360202548],[-71.654620104,41.360181852],[-71.654525694,41.360154694],[-71.654444422,41.360124774],[-71.654373364,41.360100558],[-71.65429843,41.360106628],[-71.654271067,41.360139712],[-71.65427817,41.360203946],[-71.654304981,41.360258388],[-71.65434019,41.360321257],[-71.654377217,41.360395491],[-71.654404056,41.360448515],[-71.654441992,41.360522038],[-71.654490319,41.360586354],[-71.654558303,41.360645177],[-71.654635737,41.360694839],[-71.654721634,41.3607417],[-71.654816025,41.360773752],[-71.654914269,41.36079171],[-71.655015318,41.360801957],[-71.655107066,41.360807231],[-71.655190393,41.360807485],[-71.655269076,41.360807767],[-71.655351537,41.360801001],[-71.655423805,41.360771606],[-71.655486815,41.360729508],[-71.655554454,41.360693761],[-71.655620303,41.360645964],[-71.655683255,41.360605284],[-71.65575656,41.360565322],[-71.655833575,41.360528167],[-71.655903077,41.360497358],[-71.655998552,41.360499813],[-71.656081839,41.360508551],[-71.656161417,41.360515167],[-71.656238896,41.360557807],[-71.656292923,41.360605967],[-71.656351669,41.360647054],[-71.656414179,41.360688182],[-71.656475699,41.360734274],[-71.656536288,41.360784575],[-71.656591156,41.36084122],[-71.656639524,41.360896386],[-71.656678565,41.360948752],[-71.65671568,41.361007433],[-71.656763954,41.361073921],[-71.656815052,41.361141113],[-71.656836218,41.3612075],[-71.656859254,41.361268968],[-71.656886994,41.361329743],[-71.656910966,41.361389082],[-71.656930246,41.361454076],[-71.656942903,41.361528914],[-71.656942581,41.36158465],[-71.656937457,41.361662943],[-71.656917368,41.361729203],[-71.656899192,41.361795461],[-71.656877225,41.361863142],[-71.656848753,41.361927218],[-71.656807141,41.361993417],[-71.65676556,41.362059569],[-71.656724893,41.362127184],[-71.656690889,41.362175761],[-71.656630634,41.36222776],[-71.656552604,41.362272646],[-71.6564728,41.362311886],[-71.65639014,41.362350398],[-71.656330016,41.362381241],[-71.656262398,41.362413466],[-71.656184481,41.362442137],[-71.656103819,41.362465871],[-71.656027846,41.362482533],[-71.655957539,41.362495001],[-71.655874099,41.362512335],[-71.655782332,41.362512734],[-71.655700891,41.362502575],[-71.655627092,41.362476214],[-71.655569257,41.362435789],[-71.655514197,41.362400345],[-71.655460108,41.362364877],[-71.655396617,41.362332922],[-71.655317072,41.362328432],[-71.655229865,41.36234433],[-71.65515658,41.36238077],[-71.655106619,41.36243424],[-71.655062295,41.362484181],[-71.65501988,41.362532678],[-71.655008253,41.362552312],[-71.655692834,41.363654868],[-71.656060613,41.364247199],[-71.656426907,41.364837137],[-71.656619576,41.365147442],[-71.655882664,41.365530166],[-71.654706974,41.366126545],[-71.654451656,41.366256058],[-71.653577576,41.366699443],[-71.654755576,41.367920443],[-71.654785576,41.367962443],[-71.654877576,41.368073443],[-71.654945576,41.368145444],[-71.655075576,41.368267443],[-71.655190576,41.368367443],[-71.655228576,41.368409443],[-71.655273576,41.368447443],[-71.655304576,41.368492443],[-71.655403576,41.368573444],[-71.655807577,41.369007444],[-71.656685577,41.369748444],[-71.657257577,41.370335443],[-71.657669577,41.370789444],[-71.657913577,41.371022444],[-71.658821577,41.371739444],[-71.658989577,41.371880444],[-71.659042578,41.371891444],[-71.659096578,41.371907444],[-71.659195578,41.371952444],[-71.659332578,41.372048444],[-71.659500578,41.372200444],[-71.659584578,41.372284444],[-71.659676578,41.372368444],[-71.660469578,41.373131444],[-71.661362579,41.373974444],[-71.662270579,41.374844444],[-71.662964579,41.375489444],[-71.663345579,41.375821445],[-71.663368579,41.375851445],[-71.663551579,41.375901445],[-71.663605579,41.375912444],[-71.66370458,41.375916444],[-71.663811579,41.375908445],[-71.66409358,41.375683444],[-71.66426658,41.375563444],[-71.66465758,41.375315444],[-71.665716579,41.374654444],[-71.66584458,41.374768444],[-71.66662158,41.374326444],[-71.668572203,41.37745724],[-71.668449581,41.377709445],[-71.667946581,41.378762445],[-71.667717581,41.379189445],[-71.667305581,41.379887446],[-71.66708458,41.380200446],[-71.66698558,41.380333446],[-71.666748581,41.380616445],[-71.666611581,41.380761446],[-71.66610758,41.381306446],[-71.66571858,41.381680446],[-71.66532158,41.382004446],[-71.66472658,41.382473446],[-71.664352579,41.382740446],[-71.66400958,41.382962446],[-71.66352158,41.383259446],[-71.66304058,41.383522446],[-71.662529579,41.383774446],[-71.662094579,41.383965447],[-71.661705579,41.384125446],[-71.661524579,41.384193446],[-71.661331579,41.384266446],[-71.661257579,41.384293447],[-71.660757579,41.384456446],[-71.660443579,41.384550447],[-71.660079579,41.384655446],[-71.659784579,41.384734446],[-71.659818579,41.384924446],[-71.659760579,41.384938447],[-71.659225578,41.385060446],[-71.658951578,41.385128447],[-71.659500578,41.385067447],[-71.659591579,41.385052447],[-71.659634578,41.385193447],[-71.659686579,41.385327447],[-71.659974579,41.385267447],[-71.660343579,41.385757447],[-71.659610579,41.385917446],[-71.659695578,41.386151446],[-71.659802579,41.386378447],[-71.660025578,41.386828447],[-71.660802579,41.388456447],[-71.661335579,41.389530447],[-71.661427579,41.389475447],[-71.66150158,41.389431447],[-71.661567579,41.389409447],[-71.661659579,41.389406448],[-71.66175458,41.389444448],[-71.661941579,41.389540448],[-71.661994579,41.389596448],[-71.662017579,41.389667447],[-71.66206158,41.389711447],[-71.662129579,41.389740447],[-71.662208579,41.389765447],[-71.662289579,41.389802447],[-71.66236058,41.389844447],[-71.66241858,41.389892448],[-71.66243458,41.389912448],[-71.662463579,41.389947448],[-71.66248658,41.390001447],[-71.66251658,41.390216447],[-71.662479579,41.390264448],[-71.66247758,41.390287447],[-71.66247358,41.390323448],[-71.66251258,41.390387447],[-71.662520579,41.390399448],[-71.662561579,41.390451448],[-71.662617579,41.390493448],[-71.66268058,41.390523447],[-71.66276258,41.390536448],[-71.662830579,41.390515448],[-71.662890579,41.390467447],[-71.663024579,41.390374448],[-71.66303558,41.390325447],[-71.662985579,41.390260448],[-71.662928579,41.390207447],[-71.66288158,41.390154447],[-71.66286158,41.390090447],[-71.66292058,41.389953447],[-71.66295858,41.389829448],[-71.66300058,41.389771448],[-71.66305658,41.389709447],[-71.66312958,41.389687447],[-71.66331958,41.389704447],[-71.66340158,41.389698448],[-71.66350258,41.389680447],[-71.66360258,41.389705447],[-71.66366158,41.389746447],[-71.66374958,41.389838447],[-71.66375658,41.389846447],[-71.667162581,41.387618447],[-71.667275581,41.387701447],[-71.667308581,41.387685447],[-71.667461581,41.387550447],[-71.667505581,41.387471447],[-71.667506581,41.387468447],[-71.667581581,41.387450447],[-71.667661581,41.387429447],[-71.667770581,41.387385447],[-71.667952581,41.387318447],[-71.668090582,41.387293447],[-71.668296581,41.387236447],[-71.668433581,41.387174447],[-71.668534581,41.387137447],[-71.668715582,41.387078447],[-71.668838581,41.387028446],[-71.668936581,41.387088446],[-71.669016581,41.387154447],[-71.669124582,41.387200447],[-71.669146582,41.387207446],[-71.669225582,41.387208446],[-71.669274582,41.387216447],[-71.669343581,41.387258447],[-71.669410582,41.387271447],[-71.669526582,41.387317447],[-71.669594582,41.387382446],[-71.669646582,41.387512447],[-71.669721582,41.387593447],[-71.669806582,41.387650447],[-71.669876582,41.387713446],[-71.669973582,41.387770446],[-71.670226582,41.387848446],[-71.670286582,41.387874447],[-71.670327582,41.387893447],[-71.670374582,41.387967447],[-71.670376582,41.388044446],[-71.670418582,41.388177447],[-71.670442582,41.388190447],[-71.669406582,41.390069448],[-71.669195582,41.390429447],[-71.669055582,41.390650448],[-71.673687584,41.391166447],[-71.673748584,41.391261447],[-71.673748584,41.391348447],[-71.673748584,41.391470448],[-71.673636583,41.391574447],[-71.673427583,41.391887447],[-71.673414584,41.392127448],[-71.673469583,41.392242447],[-71.673372583,41.392368448],[-71.673372583,41.392566447],[-71.673567583,41.392671448],[-71.673692583,41.392660448],[-71.673762584,41.392744447],[-71.673762584,41.392911448],[-71.673817583,41.393015447],[-71.673984583,41.393172447],[-71.673998584,41.393370448],[-71.674249584,41.393527448],[-71.675251584,41.393840448],[-71.675370584,41.393846448],[-71.675461584,41.393886448],[-71.675961584,41.394091448],[-71.678578585,41.393454448],[-71.679948586,41.393102448],[-71.679627585,41.392500448],[-71.679489585,41.392080447],[-71.679451585,41.392010447],[-71.679398585,41.391896447],[-71.679330585,41.391770447],[-71.679245585,41.391613447],[-71.679161585,41.391476447],[-71.679070585,41.391308447],[-71.678871585,41.390976447],[-71.678795585,41.390858447],[-71.678658585,41.390618447],[-71.678566585,41.390492447],[-71.678444585,41.390343447],[-71.678314584,41.390217447],[-71.678253585,41.390168447],[-71.678200584,41.390114447],[-71.678078585,41.390011447],[-71.677849584,41.389805447],[-71.677790584,41.389756447],[-71.677544585,41.389553447],[-71.677399584,41.389424447],[-71.677345584,41.389393447],[-71.677116584,41.389225447],[-71.676910584,41.389088447],[-71.676845584,41.389048447],[-71.676834584,41.389042447],[-71.676514584,41.388882446],[-71.676781584,41.388722447],[-71.677025585,41.388588446],[-71.677208584,41.388512446],[-71.677368584,41.388455446],[-71.677437584,41.388436446],[-71.677666585,41.388390447],[-71.677879585,41.388367447],[-71.678085584,41.388367447],[-71.678154585,41.388371447],[-71.678215585,41.388379446],[-71.678276584,41.388382447],[-71.678337584,41.388390447],[-71.678406585,41.388405447],[-71.678596585,41.388462447],[-71.678711585,41.388508447],[-71.678940585,41.388626447],[-71.679016585,41.388657447],[-71.679085585,41.388691447],[-71.679306585,41.388775447],[-71.679405585,41.388806446],[-71.679489585,41.388825446],[-71.679558585,41.388832447],[-71.679710585,41.388832447],[-71.679916585,41.388794447],[-71.680107586,41.388737447],[-71.680244585,41.388691446],[-71.680786586,41.388523447],[-71.681061586,41.388424447],[-71.681335586,41.388340446],[-71.681709585,41.388253447],[-71.681824585,41.388230447],[-71.681931586,41.388203446],[-71.682503586,41.388134447],[-71.682838586,41.388081446],[-71.683006586,41.388050446],[-71.682770586,41.387593447],[-71.683165586,41.387606446],[-71.683376586,41.387631447],[-71.684350587,41.387507446],[-71.685210587,41.386583446],[-71.685169587,41.386561446],[-71.685045587,41.386584446],[-71.684873587,41.386545446],[-71.684688587,41.386526446],[-71.684506587,41.386515446],[-71.684310587,41.386492446],[-71.684214587,41.386492446],[-71.684136587,41.386497446],[-71.684048586,41.386512446],[-71.683963587,41.386521446],[-71.683890587,41.386502446],[-71.683761586,41.386436446],[-71.683689586,41.386404446],[-71.683642586,41.386396446],[-71.683482586,41.386461447],[-71.683362587,41.386447446],[-71.683246587,41.386387446],[-71.683163586,41.386314446],[-71.683060586,41.386211446],[-71.682999586,41.386111446],[-71.682953586,41.386021446],[-71.682934586,41.385955446],[-71.682938586,41.385889446],[-71.682908586,41.385885446],[-71.682778586,41.385882446],[-71.682708586,41.385862446],[-71.682641586,41.385822446],[-71.682525586,41.385696446],[-71.682446586,41.385491446],[-71.682313585,41.385252446],[-71.682320586,41.385194446],[-71.682289586,41.385130446],[-71.682183586,41.385036446],[-71.682150586,41.384985446],[-71.682042585,41.384890446],[-71.682002585,41.384842446],[-71.681912586,41.384754446],[-71.681845585,41.384731446],[-71.681790585,41.384682446],[-71.681745586,41.384629445],[-71.681740586,41.384573445],[-71.681728585,41.384512445],[-71.681685586,41.384457445],[-71.681687585,41.384412446],[-71.681812586,41.384295446],[-71.681849585,41.384255446],[-71.681847585,41.384239445],[-71.681815586,41.384254446],[-71.681770585,41.384283446],[-71.681644586,41.384334446],[-71.681599586,41.384344446],[-71.681561586,41.384343446],[-71.681510586,41.384336446],[-71.681464586,41.384316446],[-71.681358585,41.384245446],[-71.681258585,41.384163445],[-71.681210585,41.384104445],[-71.681168585,41.384039446],[-71.681133585,41.383959446],[-71.681104585,41.383878446],[-71.681073585,41.383819446],[-71.680984586,41.383706446],[-71.680973585,41.383627446],[-71.680958585,41.383617445],[-71.680913585,41.383611446],[-71.680852585,41.383593446],[-71.680741585,41.383517446],[-71.680690586,41.383505446],[-71.680632586,41.383467446],[-71.680585585,41.383407445],[-71.680467585,41.383366445],[-71.680442585,41.383345445],[-71.680405585,41.383312446],[-71.680348585,41.383241446],[-71.680330585,41.383184446],[-71.680321585,41.383094445],[-71.680301585,41.383040446],[-71.680196585,41.383022446],[-71.680148585,41.382980445],[-71.680098585,41.382921445],[-71.680069585,41.382856445],[-71.680061585,41.382781445],[-71.680059585,41.382681445],[-71.680035585,41.382608445],[-71.680030585,41.382531445],[-71.680032585,41.382454445],[-71.680008585,41.382448445],[-71.679948585,41.382406445],[-71.679932584,41.382379446],[-71.679910585,41.382342446],[-71.679839585,41.382051446],[-71.679812585,41.381977445],[-71.679770585,41.381899445],[-71.679749585,41.381842445],[-71.679758584,41.381796446],[-71.679780585,41.381760446],[-71.679826585,41.381731445],[-71.679894584,41.381697445],[-71.679877585,41.381674445],[-71.679776584,41.381683446],[-71.679736585,41.381679446],[-71.679720584,41.381661446],[-71.679701584,41.381609445],[-71.679694585,41.381553445],[-71.679707585,41.381513445],[-71.679735585,41.381479445],[-71.679733585,41.381459445],[-71.679672585,41.381475445],[-71.679604584,41.381485446],[-71.679569585,41.381484445],[-71.679533585,41.381467446],[-71.679493585,41.381417445],[-71.679475585,41.381365445],[-71.679452585,41.381328445],[-71.679409584,41.381298445],[-71.679388584,41.381247445],[-71.679378585,41.381200445],[-71.679376585,41.381130445],[-71.679367584,41.381047445],[-71.679303585,41.380932445],[-71.679264585,41.380825446],[-71.679237584,41.380775445],[-71.679128585,41.380607445],[-71.679087585,41.380555445],[-71.678942584,41.380416445],[-71.678939584,41.380365445],[-71.678982584,41.380242445],[-71.679045585,41.380126445],[-71.679075584,41.380060445],[-71.679162585,41.379898445],[-71.679349584,41.379616445],[-71.679438585,41.379494445],[-71.679519585,41.379358445],[-71.679659584,41.379161445],[-71.679701584,41.379087445],[-71.679750585,41.379016444],[-71.679803585,41.378953445],[-71.679874584,41.378837444],[-71.679943585,41.378739445],[-71.680082585,41.378559445],[-71.680153585,41.378450444],[-71.680315585,41.378231445],[-71.680463585,41.378074445],[-71.680660585,41.377884444],[-71.680840585,41.377749444],[-71.680893585,41.377703445],[-71.681061585,41.377571444],[-71.681107585,41.377526445],[-71.681223585,41.377442444],[-71.681292585,41.377398444],[-71.681357585,41.377373445],[-71.681413586,41.377318444],[-71.681537585,41.377259444],[-71.681951585,41.377094444],[-71.682189586,41.377018445],[-71.682450585,41.376967444],[-71.682512585,41.376921445],[-71.682581586,41.376886445],[-71.682654586,41.376888444],[-71.682730585,41.376860444],[-71.682824585,41.376846445],[-71.682913586,41.376846445],[-71.682990586,41.376839444],[-71.683069586,41.376851444],[-71.683148586,41.376852444],[-71.683236586,41.376840444],[-71.683308585,41.376822444],[-71.683391586,41.376807445],[-71.683475586,41.376806445],[-71.683558586,41.376824444],[-71.683698585,41.376882444],[-71.683731586,41.376933444],[-71.683767586,41.376974444],[-71.683899586,41.377038444],[-71.683976586,41.377037444],[-71.684028586,41.377021445],[-71.684061586,41.377009444],[-71.684303586,41.376962445],[-71.684372586,41.376934444],[-71.684439586,41.376901444],[-71.684578586,41.376848444],[-71.684725586,41.376803444],[-71.684946586,41.376712444],[-71.685019587,41.376674444],[-71.685071586,41.376661444],[-71.685153586,41.376665444],[-71.685237586,41.376638444],[-71.685307586,41.376608444],[-71.685361586,41.376572444],[-71.685404586,41.376519444],[-71.685465587,41.376474444],[-71.685622587,41.376447444],[-71.685683587,41.376424444],[-71.685613586,41.376383444],[-71.685572586,41.376331444],[-71.685599587,41.376274444],[-71.685662587,41.376229444],[-71.685870586,41.376128444],[-71.685940586,41.376082444],[-71.685994587,41.376024444],[-71.686032587,41.375965444],[-71.686058586,41.375913444],[-71.686086587,41.375782444],[-71.686087587,41.375712444],[-71.686112587,41.375520444],[-71.686133587,41.375461444],[-71.686172587,41.375413444],[-71.686219586,41.375371444],[-71.686477587,41.375207444],[-71.686620587,41.375121444],[-71.686673587,41.375074443],[-71.686700586,41.375020444],[-71.686761586,41.374989444],[-71.686820586,41.374947444],[-71.686881587,41.374916444],[-71.687043587,41.374902443],[-71.687125587,41.374891444],[-71.687189587,41.374863443],[-71.687223587,41.374804443],[-71.687321587,41.374694444],[-71.687382586,41.374643444],[-71.687440586,41.374606443],[-71.687510587,41.374575444],[-71.687578587,41.374551443],[-71.687746587,41.374508443],[-71.687822587,41.374477444],[-71.687890587,41.374442444],[-71.687966588,41.374417443],[-71.688036587,41.374386444],[-71.688106587,41.374361444],[-71.688193587,41.374345444],[-71.688280587,41.374337443],[-71.688366587,41.374319443],[-71.688439587,41.374312444],[-71.688523587,41.374311444],[-71.688608588,41.374319443],[-71.688695587,41.374322444],[-71.688850587,41.374334443],[-71.688938588,41.374347444],[-71.689105587,41.374386444],[-71.689261587,41.374416443],[-71.689345588,41.374441444],[-71.689494587,41.374502444],[-71.689659588,41.374560444],[-71.689713588,41.374579444],[-71.689787588,41.374619444],[-71.689856588,41.374663444],[-71.690021588,41.374788444],[-71.690079588,41.374838444],[-71.690131588,41.374897444],[-71.690210587,41.375023444],[-71.690230587,41.375083444],[-71.690241588,41.375155443],[-71.690241588,41.375210443],[-71.690231588,41.375289443],[-71.690214588,41.375361444],[-71.690163588,41.375493444],[-71.690130588,41.375544443],[-71.690088588,41.375589444],[-71.689994588,41.375675444],[-71.689955588,41.375721444],[-71.689830588,41.375896444],[-71.689799588,41.375957444],[-71.689805588,41.376012444],[-71.689869588,41.376149444],[-71.689869588,41.376460444],[-71.689852588,41.376606444],[-71.689825588,41.376729444],[-71.689810588,41.376912444],[-71.689810588,41.377032444],[-71.689849588,41.377239444],[-71.689846588,41.377294444],[-71.689795588,41.377338444],[-71.689796588,41.377390444],[-71.689823588,41.377407444],[-71.689866588,41.377403444],[-71.689933588,41.377445444],[-71.690038588,41.377532444],[-71.690091588,41.377591444],[-71.690132588,41.377645445],[-71.690273588,41.377809444],[-71.690286588,41.377929444],[-71.690333588,41.377993444],[-71.690360588,41.378060444],[-71.690393588,41.378121444],[-71.690454588,41.378170445],[-71.690556588,41.378264444],[-71.690591588,41.378316444],[-71.690691588,41.378426445],[-71.690765588,41.378548444],[-71.690811589,41.378638445],[-71.690840588,41.378705444],[-71.690876588,41.378813445],[-71.690889589,41.378873445],[-71.690894588,41.378936444],[-71.690882588,41.379110444],[-71.690890589,41.379240445],[-71.690892588,41.379577445],[-71.690883588,41.379640444],[-71.690867589,41.379699444],[-71.690856588,41.379764445],[-71.690859588,41.379827445],[-71.690855588,41.379901445],[-71.690775588,41.379997445],[-71.690756588,41.380050444],[-71.690817588,41.380112445],[-71.690862588,41.380174445],[-71.690885588,41.380237445],[-71.690936588,41.380288445],[-71.690994588,41.380329445],[-71.691059588,41.380358444],[-71.691236589,41.380416445],[-71.691315589,41.380450445],[-71.691395589,41.380477444],[-71.691478588,41.380498444],[-71.691551589,41.380508445],[-71.691696588,41.380520445],[-71.691783589,41.380523445],[-71.691872588,41.380534444],[-71.691959589,41.380568445],[-71.692038589,41.380607445],[-71.692119589,41.380631444],[-71.692214589,41.380637445],[-71.692311589,41.380659445],[-71.692466589,41.380726445],[-71.692559589,41.380748444],[-71.692627589,41.380769444],[-71.692791589,41.380847444],[-71.692944589,41.380892445],[-71.693031589,41.380925444],[-71.693191589,41.380994445],[-71.693271589,41.381016445],[-71.693500589,41.381065445],[-71.693573589,41.381077445],[-71.693652589,41.381083444],[-71.693725589,41.381078445],[-71.693806589,41.381063444],[-71.693954589,41.381023444],[-71.694037589,41.381016445],[-71.694134589,41.381032445],[-71.69449159,41.381129445],[-71.694560589,41.381153445],[-71.69462459,41.381181444],[-71.69468259,41.381217444],[-71.69484959,41.381334444],[-71.69490759,41.381370445],[-71.69503559,41.381464445],[-71.69509259,41.381518445],[-71.69515059,41.381551445],[-71.69521659,41.381574445],[-71.69529459,41.381584445],[-71.69533159,41.381549444],[-71.69534759,41.381495445],[-71.69538359,41.381434444],[-71.695436589,41.381378445],[-71.69550059,41.381340445],[-71.69557959,41.381310445],[-71.69566559,41.381286445],[-71.69574859,41.381275444],[-71.69582959,41.381276444],[-71.69590159,41.381288445],[-71.69607059,41.381378445],[-71.69615159,41.381408445],[-71.69629859,41.381451444],[-71.69644559,41.381513445],[-71.69654159,41.381546445],[-71.69663059,41.381569444],[-71.696719591,41.381583445],[-71.696894591,41.381590444],[-71.69696259,41.381585445],[-71.696989591,41.381545445],[-71.697093591,41.381540445],[-71.69729059,41.381543445],[-71.69746959,41.381559445],[-71.69764259,41.381565445],[-71.69771959,41.381584445],[-71.697771591,41.381605445],[-71.698290591,41.381626444],[-71.698548591,41.381650444],[-71.698631591,41.381669444],[-71.698711591,41.381668444],[-71.698795591,41.381652445],[-71.698951591,41.381634445],[-71.699026591,41.381609444],[-71.699149591,41.381525445],[-71.699209591,41.381492444],[-71.699311591,41.381385445],[-71.699360591,41.381342445],[-71.699539591,41.381211445],[-71.699674591,41.381129445],[-71.699897592,41.381053445],[-71.700057592,41.381012445],[-71.700225592,41.380980445],[-71.700295591,41.380955445],[-71.700352591,41.380917445],[-71.700429591,41.380888444],[-71.700512591,41.380879445],[-71.700591591,41.380876445],[-71.700757592,41.380880445],[-71.700936591,41.380866444],[-71.701039592,41.380850444],[-71.701203592,41.380798445],[-71.701479592,41.380747445],[-71.701548592,41.380726445],[-71.701679592,41.380662445],[-71.701754592,41.380631444],[-71.701835592,41.380611445],[-71.701915592,41.380597444],[-71.702193592,41.380562444],[-71.702283592,41.380564444],[-71.702371592,41.380576444],[-71.702539592,41.380619444],[-71.702777592,41.380706445],[-71.702853592,41.380721445],[-71.702950592,41.380711444],[-71.703120592,41.380706445],[-71.703199592,41.380697444],[-71.703269593,41.380667445],[-71.703538592,41.380424444],[-71.703610592,41.380386444],[-71.703665593,41.380347444],[-71.703729592,41.380285444],[-71.703800593,41.380229444],[-71.703868592,41.380199445],[-71.704026593,41.380177444],[-71.704075592,41.380148444],[-71.704116592,41.380130444],[-71.704143593,41.380184444],[-71.704185593,41.380202444],[-71.704297593,41.380086444],[-71.704361593,41.380042444],[-71.704427592,41.380008444],[-71.704564592,41.379954444],[-71.704646593,41.379931444],[-71.704728593,41.379903444],[-71.704893593,41.379871444],[-71.704975593,41.379865444],[-71.705052593,41.379888445],[-71.705221593,41.380066444],[-71.705277593,41.380117444],[-71.705321593,41.380173444],[-71.705361593,41.380238445],[-71.705372593,41.380302444],[-71.705367593,41.380375445],[-71.705356593,41.380429444],[-71.705313593,41.380546444],[-71.705220593,41.380708445],[-71.705135593,41.380881445],[-71.705070593,41.380981445],[-71.705028593,41.381036445],[-71.704930593,41.381131445],[-71.704756593,41.381256444],[-71.704704593,41.381305445],[-71.704619593,41.381403445],[-71.704578593,41.381461445],[-71.704549593,41.381513444],[-71.704531593,41.381642445],[-71.704507593,41.381917445],[-71.704494593,41.381971445],[-71.704459593,41.382045445],[-71.704397593,41.382156444],[-71.704356593,41.382214444],[-71.704273593,41.382315445],[-71.704243593,41.382364445],[-71.704185593,41.382478445],[-71.704147593,41.382529445],[-71.703971593,41.382731445],[-71.703893593,41.382836444],[-71.703857593,41.382907445],[-71.703843592,41.383109444],[-71.703840593,41.383271445],[-71.703829593,41.383467445],[-71.703812593,41.383549445],[-71.703775593,41.383668445],[-71.703743593,41.383827445],[-71.703696593,41.383940445],[-71.703667592,41.383991445],[-71.703585593,41.384115445],[-71.703541593,41.384169445],[-71.703489593,41.384217445],[-71.703435592,41.384257445],[-71.703372593,41.384317445],[-71.703328593,41.384381445],[-71.703225593,41.384556445],[-71.703198592,41.384620445],[-71.703211593,41.384681445],[-71.703207593,41.384757445],[-71.703177593,41.384828445],[-71.703158593,41.384893445],[-71.703153593,41.385021445],[-71.703145592,41.385076446],[-71.703122592,41.385152446],[-71.703120592,41.385228445],[-71.703133593,41.385343445],[-71.703150593,41.385418445],[-71.703181592,41.385623446],[-71.703290593,41.385905445],[-71.703327593,41.385970446],[-71.703370593,41.386023445],[-71.703424593,41.386077445],[-71.703470593,41.386146446],[-71.703469593,41.386222446],[-71.703460593,41.386291445],[-71.703485593,41.386354445],[-71.703491592,41.386430445],[-71.703490592,41.386484445],[-71.703481593,41.386560445],[-71.703398593,41.386888446],[-71.703356592,41.387088445],[-71.703327593,41.387163446],[-71.703242593,41.387347446],[-71.703241593,41.387494446],[-71.703226593,41.387613445],[-71.703197593,41.387747446],[-71.703157593,41.388024445],[-71.703153593,41.388100446],[-71.703142592,41.388156446],[-71.703133593,41.388212446],[-71.703130593,41.388427446],[-71.703116593,41.388599446],[-71.703108593,41.388809446],[-71.703089593,41.388925446],[-71.703073593,41.388979446],[-71.702981593,41.389177446],[-71.702927592,41.389311446],[-71.702798593,41.389568446],[-71.702700593,41.389701446],[-71.702661593,41.389767446],[-71.702541593,41.390018446],[-71.702462592,41.390131446],[-71.702425593,41.390193446],[-71.702354593,41.390371446],[-71.702338593,41.390394446],[-71.702319593,41.390422446],[-71.702258593,41.390454447],[-71.702210592,41.390436447],[-71.702177593,41.390385446],[-71.702145592,41.390374446],[-71.702101593,41.390434446],[-71.702088592,41.390496447],[-71.702092592,41.390618446],[-71.702061593,41.390676446],[-71.701999593,41.390717446],[-71.701950592,41.390758446],[-71.701917592,41.390817446],[-71.701912592,41.390868447],[-71.701905593,41.390921447],[-71.701941593,41.390970446],[-71.702013592,41.390994446],[-71.702094593,41.391041447],[-71.702113592,41.391106446],[-71.702065593,41.391177447],[-71.702022593,41.391226446],[-71.701985593,41.391279446],[-71.701957592,41.391331447],[-71.701931592,41.391395447],[-71.701935592,41.391461446],[-71.701974592,41.391509447],[-71.702021593,41.391552446],[-71.702071592,41.391606447],[-71.702153593,41.391711446],[-71.702191593,41.391783447],[-71.702218593,41.391859447],[-71.702253593,41.391932447],[-71.702274593,41.391954447],[-71.702302592,41.391984446],[-71.702375593,41.392022446],[-71.702463593,41.392032447],[-71.702623593,41.392014447],[-71.702756593,41.392094447],[-71.702834593,41.392116447],[-71.702920593,41.392121446],[-71.703005593,41.392224447],[-71.703069593,41.392251447],[-71.703150593,41.392242447],[-71.703242593,41.392261447],[-71.703423593,41.392520447],[-71.703472593,41.392581447],[-71.703533593,41.392620447],[-71.703614593,41.392664446],[-71.703653593,41.392711447],[-71.703667593,41.392769447],[-71.703664594,41.392826447],[-71.703640593,41.392902447],[-71.703610593,41.392970447],[-71.703624594,41.393023447],[-71.703714593,41.393197447],[-71.703731593,41.393251446],[-71.703780594,41.393289446],[-71.703930593,41.393339447],[-71.704005593,41.393370447],[-71.704033594,41.393421447],[-71.704017593,41.393483446],[-71.704054594,41.393524447],[-71.704142593,41.393552447],[-71.704199593,41.393614447],[-71.704235593,41.393662447],[-71.704305594,41.393721447],[-71.704372593,41.393765447],[-71.704431593,41.393815447],[-71.704557594,41.393900447],[-71.704557594,41.393964447],[-71.704572594,41.394012447],[-71.704682593,41.394100447],[-71.704688594,41.394163447],[-71.704718594,41.394219447],[-71.704806594,41.394207447],[-71.704865594,41.394207447],[-71.704911594,41.394263447],[-71.704976593,41.394291447],[-71.705058594,41.394320447],[-71.705121594,41.394367447],[-71.705163594,41.394423447],[-71.705181594,41.394495447],[-71.705188593,41.394560447],[-71.705213594,41.394612447],[-71.705262594,41.394671447],[-71.705256594,41.394727447],[-71.705263594,41.394748447],[-71.705276594,41.394788447],[-71.705354594,41.394827447],[-71.705423594,41.394846447],[-71.705510594,41.394876447],[-71.705573594,41.394911447],[-71.705632594,41.394953447],[-71.705699594,41.394988447],[-71.705783594,41.395014447],[-71.705869594,41.395017447],[-71.705952594,41.395015447],[-71.706007594,41.395030447],[-71.706030594,41.395090447],[-71.706043594,41.395145447],[-71.706104594,41.395193447],[-71.706176594,41.395227447],[-71.706228594,41.395277447],[-71.706260594,41.395355447],[-71.706287594,41.395406447],[-71.706330594,41.395460447],[-71.706398594,41.395484447],[-71.706478594,41.395496447],[-71.706575594,41.395529448],[-71.706620594,41.395576447],[-71.706692594,41.395695447],[-71.706743595,41.395741448],[-71.706814594,41.395752447],[-71.706897595,41.395771447],[-71.706984594,41.395799447],[-71.707052595,41.395835447],[-71.707129595,41.395866447],[-71.707215594,41.395866447],[-71.707314594,41.395858448],[-71.707412594,41.395856447],[-71.707493594,41.395879448],[-71.707523595,41.395937448],[-71.707543595,41.395998448],[-71.707580595,41.396055448],[-71.707652595,41.396065447],[-71.707733595,41.396043447],[-71.707800594,41.396004447],[-71.707874595,41.395984447],[-71.707929595,41.396022447],[-71.707985595,41.396070447],[-71.708042595,41.396107447],[-71.708106595,41.396132448],[-71.708193595,41.396112448],[-71.708268594,41.396150448]]]]}}"}, +{"type": "precinct", "typeId": 504, "areaId": 25690, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":29,\"NAME\":\"0504\",\"SHAPE_Length\":0.54253971988008,\"SHAPE_Area\":-0.0011180551175302},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.644112693,41.358516175],[-71.644033298,41.358535852],[-71.644035001,41.358578663],[-71.644105082,41.358616312],[-71.644187726,41.358610696],[-71.644231279,41.358566456],[-71.64421474,41.358513463],[-71.644152909,41.358500618],[-71.644112693,41.358516175]]],[[[-71.652568378,41.358626101],[-71.652643295,41.358626367],[-71.652721855,41.358640031],[-71.652786088,41.358657271],[-71.652790575,41.358658441],[-71.652852575,41.358661442],[-71.652930575,41.358631442],[-71.652960575,41.358592442],[-71.652942364,41.358545476],[-71.652941562,41.358543437],[-71.652863096,41.358513518],[-71.652802575,41.358490442],[-71.652802408,41.358490023],[-71.652802369,41.358490008],[-71.652799413,41.358482536],[-71.652774575,41.358420441],[-71.652774442,41.358416187],[-71.652770427,41.358356555],[-71.652770759,41.358298347],[-71.652770574,41.358292442],[-71.652777066,41.358255853],[-71.652781454,41.358230318],[-71.652804294,41.358171099],[-71.652810259,41.358112565],[-71.65282101,41.358071447],[-71.652824575,41.358057441],[-71.652842416,41.358032638],[-71.652865273,41.358000587],[-71.65285721,41.357940585],[-71.652813566,41.357878344],[-71.65277921,41.357828829],[-71.652742111,41.357774378],[-71.652721108,41.357733404],[-71.652708574,41.357709442],[-71.652705037,41.357701408],[-71.652701308,41.357693493],[-71.652676415,41.357640809],[-71.652649643,41.357575801],[-71.652631291,41.357516454],[-71.652620412,41.357459315],[-71.652611448,41.35739012],[-71.652629581,41.357332433],[-71.652629617,41.357332325],[-71.652666434,41.357279514],[-71.652667561,41.357247383],[-71.652668574,41.357214486],[-71.652662844,41.357209544],[-71.652613574,41.357167442],[-71.652502575,41.357089442],[-71.65246044,41.357070101],[-71.652441337,41.357061505],[-71.65242093,41.357067],[-71.652415823,41.357068408],[-71.652422051,41.357122763],[-71.652447854,41.357188459],[-71.652450324,41.357245632],[-71.652453642,41.357314765],[-71.652434542,41.357376792],[-71.652396809,41.357427455],[-71.652359894,41.357490855],[-71.652309912,41.357547823],[-71.652244999,41.357593467],[-71.652237402,41.357597621],[-71.652105574,41.357674442],[-71.65206665,41.357693429],[-71.652064803,41.35769433],[-71.652023269,41.357714745],[-71.651948088,41.357756812],[-71.651883227,41.357798957],[-71.651817373,41.357844556],[-71.651762884,41.357882479],[-71.651762485,41.357945991],[-71.65169574,41.357987383],[-71.651623358,41.358032281],[-71.651608146,41.358069626],[-71.651661201,41.358119917],[-71.651733121,41.358150492],[-71.651812606,41.358170513],[-71.651889165,41.358211739],[-71.651919806,41.358256296],[-71.65191659,41.358322556],[-71.651923708,41.358381164],[-71.651977773,41.358421574],[-71.652054461,41.358439471],[-71.652122534,41.358486266],[-71.652172838,41.358528053],[-71.652236305,41.358564973],[-71.652299808,41.358591282],[-71.652361442,41.358623265],[-71.652435396,41.358627078],[-71.652518747,41.358625915],[-71.652568378,41.358626101]]],[[[-71.64734529,41.358404087],[-71.647405883,41.358446617],[-71.647460838,41.358492677],[-71.647516739,41.358540885],[-71.647543526,41.358600954],[-71.647608823,41.358642769],[-71.647685582,41.358652208],[-71.647721939,41.358675626],[-71.647712233,41.358732746],[-71.647699768,41.358777886],[-71.647775803,41.3587492],[-71.647807064,41.358693562],[-71.647865415,41.358643675],[-71.647929361,41.358598035],[-71.647974653,41.358545969],[-71.648015285,41.358486179],[-71.648089498,41.358444093],[-71.648165577,41.358408386],[-71.648216393,41.358369029],[-71.648280362,41.358320575],[-71.648316188,41.358284005],[-71.648253443,41.358283079],[-71.648180227,41.358309635],[-71.648109743,41.358349634],[-71.648015147,41.358358447],[-71.647933733,41.358344052],[-71.647865644,41.358302172],[-71.647822835,41.358258292],[-71.647771564,41.358217191],[-71.647729767,41.35816414],[-71.647684203,41.358109629],[-71.647644263,41.358058702],[-71.647605212,41.358012005],[-71.647575559,41.357959692],[-71.647554412,41.357896825],[-71.647528547,41.357841695],[-71.647489516,41.357790057],[-71.647401617,41.357766476],[-71.647309885,41.357766182],[-71.647232146,41.357765892],[-71.647150649,41.357767712],[-71.647076546,41.357791455],[-71.647083591,41.35785992],[-71.647133923,41.357902418],[-71.647182257,41.357960424],[-71.64721468,41.358016278],[-71.647232093,41.35807915],[-71.64725602,41.358149789],[-71.647278041,41.358223244],[-71.647293498,41.35829314],[-71.647312792,41.3583553],[-71.64734529,41.358404087]]],[[[-71.643487767,41.360114256],[-71.643481672,41.360186192],[-71.643495368,41.360244129],[-71.643530562,41.360304897],[-71.64356482,41.360367817],[-71.643603777,41.360427918],[-71.643655967,41.360473297],[-71.643703364,41.36053341],[-71.643733862,41.360598438],[-71.643789759,41.360645185],[-71.643847534,41.360689847],[-71.643887434,41.360750656],[-71.643931184,41.360795267],[-71.643997375,41.360843464],[-71.644035417,41.360901462],[-71.644050049,41.360956539],[-71.644098384,41.361015278],[-71.644146783,41.361062056],[-71.644189552,41.361115771],[-71.644244618,41.36114349],[-71.644280307,41.361125263],[-71.644280636,41.361068132],[-71.64429975,41.361008233],[-71.644347837,41.36095477],[-71.644380937,41.360905511],[-71.644425223,41.360862619],[-71.644477098,41.360806384],[-71.644511081,41.360757787],[-71.644554447,41.360711374],[-71.644619317,41.360669966],[-71.644692605,41.360632869],[-71.644730422,41.360575142],[-71.644717691,41.3605151],[-71.644642795,41.360511306],[-71.644551967,41.360509591],[-71.644472392,41.360503676],[-71.644385455,41.360477232],[-71.644319103,41.360452318],[-71.644292124,41.360428224],[-71.644378271,41.360427155],[-71.64445324,41.360422464],[-71.644462681,41.360409073],[-71.644398253,41.360375694],[-71.644316817,41.360365527],[-71.64422702,41.360349722],[-71.644129891,41.360312656],[-71.644058887,41.36028418],[-71.643992558,41.36025572],[-71.643929081,41.360226617],[-71.643871212,41.360193916],[-71.643787203,41.36014565],[-71.643706948,41.360106573],[-71.643629411,41.360075246],[-71.643549906,41.360059427],[-71.643487767,41.360114256]]],[[[-71.633692212,41.362000658],[-71.63365196,41.362060786],[-71.63361679,41.362111462],[-71.633585138,41.362160739],[-71.63365926,41.362141647],[-71.633730276,41.362103188],[-71.633809314,41.36206863],[-71.633892097,41.362039351],[-71.633966186,41.36201891],[-71.634049301,41.362003719],[-71.634125211,41.361983253],[-71.634202953,41.361968136],[-71.634277405,41.361962377],[-71.634366493,41.361973183],[-71.634439435,41.361941376],[-71.634497026,41.361899753],[-71.634579449,41.361857827],[-71.634668493,41.361817813],[-71.634736054,41.361797585],[-71.634803689,41.361768209],[-71.634866636,41.361733166],[-71.634926766,41.36170094],[-71.635021583,41.36166387],[-71.635091919,41.36164931],[-71.635163196,41.361634772],[-71.635237238,41.361621626],[-71.635315027,41.361614857],[-71.63539554,41.361618627],[-71.635470373,41.361635875],[-71.635543316,41.361648825],[-71.63564439,41.361657626],[-71.635732427,41.361659374],[-71.635828965,41.361647002],[-71.635921815,41.36162759],[-71.636001543,41.361604625],[-71.636077602,41.36156888],[-71.636149063,41.361526096],[-71.63622607,41.36149394],[-71.636312351,41.361468818],[-71.636414626,41.361442373],[-71.63648402,41.361427813],[-71.636586222,41.36140983],[-71.636683747,41.361390435],[-71.636783138,41.36136397],[-71.636881626,41.361341051],[-71.636962347,41.36131383],[-71.637050544,41.361290855],[-71.637135817,41.36127774],[-71.63722387,41.361273129],[-71.637300738,41.361261419],[-71.63736461,41.361234104],[-71.637363006,41.361193191],[-71.63731745,41.361139385],[-71.637246635,41.361084146],[-71.637175746,41.3610373],[-71.637120749,41.360997594],[-71.637065423,41.361003743],[-71.637018268,41.361055784],[-71.636973876,41.361122665],[-71.636937906,41.361181828],[-71.636900128,41.361232462],[-71.636849275,41.361272478],[-71.636774265,41.361287021],[-71.636681556,41.361286719],[-71.636582277,41.36129411],[-71.636481976,41.361306465],[-71.636385482,41.361310353],[-71.636288209,41.361290251],[-71.636222832,41.361266017],[-71.636151946,41.361219902],[-71.636098923,41.361166082],[-71.636033605,41.361126341],[-71.635955907,41.361118314],[-71.635893852,41.361158297],[-71.635841923,41.361221595],[-71.635778863,41.361275026],[-71.635693357,41.361322698],[-71.635631342,41.361352777],[-71.635536524,41.361389161],[-71.635441732,41.361423373],[-71.63534877,41.361461836],[-71.635262408,41.361491875],[-71.635178984,41.3615043],[-71.635132953,41.361528117],[-71.635113906,41.361580238],[-71.63505586,41.361577928],[-71.635070233,41.361526452],[-71.635075162,41.361487658],[-71.635018239,41.361455706],[-71.63493114,41.361452584],[-71.634857162,41.361452305],[-71.634772892,41.361452037],[-71.634694196,41.361460226],[-71.634529892,41.361467096],[-71.634455659,41.361446714],[-71.634384261,41.361431634],[-71.634336331,41.361432971],[-71.634339779,41.361500526],[-71.63434225,41.361565407],[-71.634327739,41.361624475],[-71.6342621,41.36166421],[-71.634180744,41.36167869],[-71.634102874,41.36169049],[-71.634056852,41.361733952],[-71.634028847,41.361785192],[-71.63401059,41.361837678],[-71.633970855,41.361883031],[-71.633899639,41.3619128],[-71.633821087,41.361932628],[-71.633748955,41.361959745],[-71.633692212,41.362000658]]],[[[-71.632660516,41.362284028],[-71.63262083,41.362338895],[-71.632600972,41.362366362],[-71.632624926,41.362427811],[-71.632687861,41.362400522],[-71.632786367,41.362369831],[-71.632863284,41.362351788],[-71.632940177,41.362336536],[-71.633013283,41.362325497],[-71.63310987,41.362306792],[-71.633193336,41.362284511],[-71.633283347,41.362271462],[-71.633359207,41.362271008],[-71.633433234,41.36226493],[-71.633483067,41.362229126],[-71.633448701,41.362183127],[-71.633376725,41.362168047],[-71.633278256,41.362186755],[-71.633206957,41.362205569],[-71.633137536,41.362222916],[-71.633066316,41.362236081],[-71.632963195,41.362251249],[-71.632871379,41.362257232],[-71.632796451,41.362253454],[-71.632723414,41.362253927],[-71.632660516,41.362284028]]],[[[-71.634007112,41.36259911],[-71.634053235,41.362633934],[-71.63412938,41.362624171],[-71.634200928,41.362607781],[-71.634280624,41.362597991],[-71.634359025,41.362607597],[-71.634468582,41.362622129],[-71.634529748,41.362576499],[-71.634584312,41.362538585],[-71.63460804,41.362489294],[-71.634614029,41.362434283],[-71.634600225,41.362394047],[-71.634627166,41.362371694],[-71.634718362,41.362373989],[-71.63479596,41.362391897],[-71.634867971,41.36240908],[-71.63494291,41.362403709],[-71.635029201,41.362382864],[-71.635120266,41.362350716],[-71.635189867,41.362303704],[-71.635225784,41.3622474],[-71.635244953,41.362181145],[-71.635263085,41.362126874],[-71.635300753,41.362095269],[-71.635380165,41.362124472],[-71.635460453,41.362165705],[-71.635538924,41.362194887],[-71.635624959,41.362211412],[-71.635720493,41.362212489],[-71.635802864,41.362219116],[-71.635882399,41.362234254],[-71.635927533,41.362201953],[-71.635939149,41.362138474],[-71.635957443,41.362060235],[-71.635987865,41.361989781],[-71.636014458,41.361932024],[-71.636018588,41.361874179],[-71.635968193,41.361843661],[-71.635896045,41.361847657],[-71.635821971,41.361860072],[-71.635741345,41.361875284],[-71.635656966,41.361895464],[-71.635575329,41.361920558],[-71.635495544,41.361945672],[-71.635412027,41.361972186],[-71.635323819,41.362005017],[-71.635259943,41.362031622],[-71.635197956,41.362061015],[-71.635109646,41.36210375],[-71.635014828,41.362140797],[-71.634947243,41.362164547],[-71.634850592,41.36219597],[-71.634776472,41.362216137],[-71.634693941,41.362234896],[-71.634617072,41.362246627],[-71.634547897,41.362250276],[-71.63450076,41.362268422],[-71.634430112,41.362249293],[-71.634376935,41.362253403],[-71.634322763,41.362289625],[-71.634264488,41.362338613],[-71.634193637,41.36238375],[-71.634128511,41.362408069],[-71.634047652,41.362442675],[-71.633990028,41.362483611],[-71.633977406,41.362546017],[-71.634007112,41.36259911]]],[[[-71.635931778,41.362418555],[-71.635881825,41.36246918],[-71.635841274,41.36251561],[-71.635795101,41.36255921],[-71.635736801,41.362595665],[-71.635678528,41.362630726],[-71.63561269,41.362677071],[-71.635609454,41.362741295],[-71.635645865,41.362762544],[-71.635733847,41.362766397],[-71.635808745,41.362770174],[-71.635905126,41.362783943],[-71.63597805,41.362801856],[-71.636060476,41.362804983],[-71.636141904,41.362810193],[-71.636194375,41.362802629],[-71.636146987,41.362743885],[-71.636093049,41.362688648],[-71.636051225,41.362634174],[-71.636016906,41.36258255],[-71.635998541,41.362524664],[-71.635991425,41.362460429],[-71.635979574,41.362410974],[-71.635931778,41.362418555]]],[[[-71.632334819,41.362687839],[-71.632261588,41.362712967],[-71.632192171,41.362732463],[-71.632115281,41.362749156],[-71.63207489,41.362770883],[-71.632084081,41.362797677],[-71.632170207,41.362799408],[-71.632241299,41.362812385],[-71.632315192,41.362829567],[-71.632341098,41.362880493],[-71.632418933,41.362865218],[-71.632452034,41.362811708],[-71.632486109,41.362758907],[-71.632555472,41.362742932],[-71.632618358,41.362721315],[-71.632652246,41.362696027],[-71.632728174,41.362684299],[-71.632819075,41.362675457],[-71.632902432,41.362674355],[-71.632980035,41.362694391],[-71.633065293,41.362687637],[-71.633153509,41.362657643],[-71.633221168,41.3626247],[-71.633297255,41.36258619],[-71.63339024,41.362542788],[-71.633479469,41.362503599],[-71.633540544,41.362472744],[-71.633538986,41.362423369],[-71.633503567,41.362397132],[-71.633422912,41.362413097],[-71.633350671,41.362431843],[-71.633272818,41.362452723],[-71.633197759,41.362473668],[-71.633124607,41.362492415],[-71.633051454,41.362510521],[-71.632977357,41.362527165],[-71.632900438,41.362544521],[-71.632819813,41.362560463],[-71.632732604,41.362578495],[-71.632650023,41.362602878],[-71.632575882,41.362628007],[-71.632493325,41.362649577],[-71.632420199,41.362666266],[-71.632334819,41.362687839]]],[[[-71.631865757,41.362813845],[-71.631760752,41.36282826],[-71.631741539,41.362829997],[-71.631683963,41.362835071],[-71.631607938,41.362859447],[-71.631622673,41.362895497],[-71.631694643,41.362922585],[-71.631741805,41.362946865],[-71.631755298,41.362953848],[-71.631807466,41.36299141],[-71.631858137,41.362978933],[-71.631874442,41.362920389],[-71.631901018,41.362866864],[-71.631933959,41.362838787],[-71.631951979,41.36280286],[-71.631865757,41.362813845]]],[[[-71.636669659,41.362433919],[-71.636709645,41.362480596],[-71.636747699,41.362532261],[-71.636779201,41.362586015],[-71.636819026,41.362657415],[-71.636858025,41.362710451],[-71.636924212,41.362758652],[-71.637007455,41.36277518],[-71.63708691,41.362795234],[-71.637147508,41.362841315],[-71.637180848,41.362902819],[-71.637217871,41.362969283],[-71.63725034,41.363020886],[-71.637270584,41.363076711],[-71.637277691,41.363135983],[-71.637297002,41.363196041],[-71.637312498,41.363260289],[-71.637323342,41.363320997],[-71.637394392,41.363342433],[-71.637438502,41.363328498],[-71.637457575,41.363274935],[-71.637458032,41.36320367],[-71.637461331,41.363126799],[-71.637482367,41.363054183],[-71.63751084,41.362995714],[-71.637504695,41.362931478],[-71.637455304,41.362888289],[-71.637388992,41.362867579],[-71.637316081,41.362841914],[-71.637245197,41.362797927],[-71.637195903,41.362742708],[-71.637165343,41.362689685],[-71.637137571,41.362633845],[-71.63713143,41.362571736],[-71.637094288,41.362520802],[-71.637035528,41.362482472],[-71.637039489,41.362445806],[-71.63711554,41.362420695],[-71.637192285,41.362422365],[-71.637274546,41.362448796],[-71.637342589,41.36249839],[-71.637382507,41.362555702],[-71.637401744,41.36262349],[-71.637401374,41.362678517],[-71.637402891,41.362735691],[-71.637419445,41.362783722],[-71.637500859,41.36279673],[-71.637574773,41.362808969],[-71.637644972,41.362815586],[-71.637709823,41.362776308],[-71.637743863,41.362723505],[-71.637757361,41.362660755],[-71.637757819,41.362590199],[-71.637758253,41.362522479],[-71.637758592,41.362467452],[-71.637759025,41.362399],[-71.637756593,41.362339723],[-71.637734465,41.36228319],[-71.637693637,41.362226589],[-71.637679922,41.362171533],[-71.637712797,41.362156834],[-71.63777715,41.362198679],[-71.637810511,41.362255952],[-71.637818518,41.36232444],[-71.637818063,41.362396391],[-71.637817669,41.362454231],[-71.637834113,41.362522022],[-71.637903165,41.362560385],[-71.63797355,41.362540174],[-71.638057839,41.362534813],[-71.638098553,41.362465833],[-71.638118631,41.362399575],[-71.638142376,41.362345344],[-71.638158727,41.362282613],[-71.638131,41.362219707],[-71.638094826,41.362167354],[-71.63806433,41.362101638],[-71.638025419,41.362032364],[-71.637983691,41.361966593],[-71.637956912,41.361906498],[-71.63795356,41.361843014],[-71.637969651,41.361815573],[-71.638044571,41.361815826],[-71.638121372,41.361815368],[-71.638148604,41.361802093],[-71.638133951,41.36174912],[-71.63808269,41.361710827],[-71.63799943,41.361699926],[-71.63789925,41.361698171],[-71.637825265,41.361695081],[-71.637743808,41.361689872],[-71.637663321,41.361683908],[-71.637584715,41.361677278],[-71.637510782,41.361669956],[-71.637407822,41.361659765],[-71.63731511,41.361658023],[-71.637234559,41.361664751],[-71.637155691,41.361692725],[-71.637073069,41.361725551],[-71.636999707,41.361773277],[-71.636934741,41.361829502],[-71.63687076,41.361877949],[-71.636807693,41.36192779],[-71.636747446,41.361976279],[-71.6366844,41.362021912],[-71.636616763,41.362064005],[-71.636551928,41.362096238],[-71.636491767,41.362127756],[-71.636424044,41.362172686],[-71.636424671,41.362225607],[-71.63648425,41.362278734],[-71.636558875,41.362326262],[-71.636627793,41.362388593],[-71.636669659,41.362433919]]],[[[-71.62924066,41.362925824],[-71.629179481,41.362966808],[-71.629125303,41.363002364],[-71.629067578,41.363039982],[-71.629005414,41.363074289],[-71.628941629,41.36311802],[-71.628893193,41.363170883],[-71.628830869,41.363201187],[-71.62875173,41.363233089],[-71.628672594,41.363266294],[-71.628611247,41.36329925],[-71.628548857,41.363326856],[-71.628516606,41.363352072],[-71.628523456,41.363377405],[-71.628605212,41.363379601],[-71.628702767,41.363372928],[-71.628781554,41.363363097],[-71.628867279,41.363345848],[-71.628958348,41.363329188],[-71.629052737,41.363303124],[-71.629139046,41.363274485],[-71.629216225,41.36323394],[-71.629303245,41.363196609],[-71.629404088,41.363179823],[-71.629479288,41.363167412],[-71.629551624,41.363149674],[-71.62962138,41.363131962],[-71.629689313,41.363113635],[-71.629787186,41.363084136],[-71.629860432,41.363066398],[-71.629963034,41.3630489],[-71.63006756,41.363037415],[-71.630147293,41.363029618],[-71.630231457,41.363021747],[-71.630305812,41.363012034],[-71.630407336,41.362987196],[-71.630478004,41.362970146],[-71.630553889,41.362951695],[-71.630647396,41.362924968],[-71.630744455,41.362898854],[-71.630842362,41.362871435],[-71.630942975,41.362846575],[-71.631039286,41.362825859],[-71.631129442,41.362808534],[-71.63120529,41.362786744],[-71.631276672,41.362762991],[-71.631341637,41.3627333],[-71.631351432,41.362698388],[-71.631314726,41.362650722],[-71.631265636,41.362603894],[-71.631199998,41.362570052],[-71.631118794,41.362555118],[-71.631043527,41.362564169],[-71.630978896,41.362608589],[-71.630913769,41.362632883],[-71.630830553,41.36264407],[-71.630743849,41.362656678],[-71.630662361,41.362666514],[-71.630589635,41.36267085],[-71.630505339,41.36267337],[-71.630418405,41.362677242],[-71.630339389,41.362678338],[-71.630249782,41.362681596],[-71.630179961,41.362696655],[-71.630191739,41.362741971],[-71.63021877,41.362794451],[-71.630254794,41.362850855],[-71.630214726,41.362882827],[-71.630136004,41.362894626],[-71.630116023,41.362876169],[-71.630088829,41.362818361],[-71.630041601,41.362776172],[-71.629959515,41.362759935],[-71.629887952,41.362738815],[-71.629811597,41.362704458],[-71.629758178,41.362663031],[-71.629691046,41.362641243],[-71.629614374,41.362630237],[-71.62952901,41.362660865],[-71.629444365,41.362686164],[-71.629372167,41.362711906],[-71.6293438,41.362751115],[-71.62933124,41.362816173],[-71.629300796,41.362879512],[-71.62924066,41.362925824]]],[[[-71.633824283,41.362603691],[-71.633774709,41.36264718],[-71.633717083,41.362687499],[-71.63365323,41.362725859],[-71.633584918,41.362765618],[-71.633517684,41.362813381],[-71.633462995,41.362864995],[-71.633408338,41.362917272],[-71.633350095,41.362967609],[-71.633295441,41.363021212],[-71.633246228,41.363078765],[-71.633204083,41.363133566],[-71.633173443,41.363188171],[-71.633163233,41.363243186],[-71.633173584,41.363301928],[-71.633211174,41.363350919],[-71.633283882,41.36338203],[-71.633373553,41.363380097],[-71.633453868,41.363360221],[-71.633526095,41.363334476],[-71.633581121,41.36329894],[-71.633630764,41.363258768],[-71.633657984,41.363209542],[-71.633682863,41.36317308],[-71.633735827,41.363124144],[-71.633795825,41.363071129],[-71.63384758,41.363010165],[-71.633893474,41.362962678],[-71.633939365,41.362914528],[-71.633983531,41.362868461],[-71.634042816,41.362822765],[-71.634083264,41.362770025],[-71.634078885,41.362736616],[-71.634017448,41.362694651],[-71.633971942,41.36264981],[-71.633920894,41.362596352],[-71.633880798,41.362554729],[-71.633824283,41.362603691]]],[[[-71.641641318,41.363525463],[-71.641686812,41.363589856],[-71.641695785,41.363654065],[-71.641695287,41.363732375],[-71.641694008,41.363786717],[-71.641676707,41.363857934],[-71.641654795,41.363916395],[-71.64165164,41.363973506],[-71.641651251,41.364032078],[-71.64166304,41.364092808],[-71.641710438,41.364153654],[-71.641773769,41.364211713],[-71.641861532,41.364253663],[-71.641961676,41.364265295],[-71.642067532,41.364264982],[-71.642139629,41.364263818],[-71.64223708,41.364251462],[-71.64232434,41.364229192],[-71.642410705,41.364200589],[-71.642505514,41.36415999],[-71.64257876,41.36412923],[-71.642656708,41.364097024],[-71.64273557,41.364066256],[-71.642810642,41.364037575],[-71.642881982,41.36400963],[-71.642945876,41.363978081],[-71.643001404,41.363938789],[-71.643046625,41.363891666],[-71.643084424,41.36383817],[-71.643122244,41.363780467],[-71.643155384,41.363720596],[-71.643180112,41.363659295],[-71.643195465,41.363600087],[-71.643209857,41.363545821],[-71.643216911,41.363468235],[-71.643217359,41.363395575],[-71.643222488,41.363325722],[-71.643224792,41.363255163],[-71.643227095,41.363183919],[-71.643238775,41.363111291],[-71.643258894,41.36303872],[-71.643294008,41.362965445],[-71.643336411,41.362921138],[-71.643390056,41.362881802],[-71.643447402,41.362841067],[-71.643503861,41.362797566],[-71.643558494,41.362751894],[-71.643613069,41.362707617],[-71.643662032,41.362664765],[-71.643710057,41.362624018],[-71.643756199,41.362582542],[-71.643800456,41.362539651],[-71.643854309,41.362470697],[-71.643902489,41.362403832],[-71.643949637,41.362350394],[-71.643957406,41.362308073],[-71.643911637,41.362284643],[-71.643834746,41.36229917],[-71.643760564,41.362331373],[-71.643686541,41.362338875],[-71.643598506,41.362338551],[-71.64349741,41.362334697],[-71.643398229,41.36231808],[-71.643312208,41.362294516],[-71.643230866,41.362273073],[-71.643141091,41.362254408],[-71.643063505,41.362229461],[-71.643008526,41.362186213],[-71.642961962,41.362145813],[-71.642989443,41.362094412],[-71.643065389,41.362077759],[-71.643137351,41.362099191],[-71.64320927,41.362129039],[-71.643278442,41.362151869],[-71.643345759,41.362173283],[-71.643414855,41.362203135],[-71.643484053,41.362223838],[-71.643560795,41.362224131],[-71.643640421,41.362224397],[-71.643711669,41.362211272],[-71.643708364,41.362144197],[-71.643696497,41.362089849],[-71.643694978,41.362034115],[-71.643693531,41.361969897],[-71.643671442,41.361905612],[-71.643639059,41.361839854],[-71.643600146,41.361772732],[-71.643560225,41.361716155],[-71.643550268,41.361661049],[-71.643550675,41.361597537],[-71.643551053,41.361534757],[-71.643550566,41.361464911],[-71.643549045,41.361408446],[-71.64353347,41.361351952],[-71.643533798,41.361294089],[-71.64353047,41.361229896],[-71.643516841,41.361161393],[-71.643504157,41.361094329],[-71.643496122,41.36102941],[-71.643481578,41.360958804],[-71.643460521,41.360880384],[-71.643448705,41.360821782],[-71.643440699,41.360756131],[-71.643430809,41.360689818],[-71.643415256,41.360629757],[-71.643395973,41.360571164],[-71.643385139,41.360503366],[-71.643351774,41.360446094],[-71.643306281,41.360381725],[-71.643272075,41.360314596],[-71.64324533,41.360244623],[-71.643226086,41.360176104],[-71.643208658,41.360118949],[-71.64318185,41.360061669],[-71.643160753,41.360033954],[-71.64313448,41.359999406],[-71.64307585,41.359937843],[-71.643031323,41.359870659],[-71.643008391,41.3597951],[-71.643006984,41.359720979],[-71.64300741,41.359651818],[-71.643007813,41.359586202],[-71.643008243,41.35951919],[-71.643003099,41.359443678],[-71.642994966,41.359389302],[-71.642984094,41.359331408],[-71.642964829,41.359267165],[-71.642891607,41.359167449],[-71.642892029,41.359110638],[-71.642891902,41.359038436],[-71.642891496,41.358977647],[-71.642891423,41.358902815],[-71.642891433,41.358823957],[-71.642890367,41.35875306],[-71.642878592,41.358684783],[-71.642866105,41.358610424],[-71.642853451,41.358542742],[-71.64283972,41.358482427],[-71.642823432,41.358418753],[-71.642803841,41.358343647],[-71.642782405,41.358271861],[-71.642756343,41.358208016],[-71.642729456,41.358142182],[-71.64270444,41.358071063],[-71.642676646,41.358006533],[-71.642649536,41.357949368],[-71.642620752,41.357890169],[-71.642588523,41.357823633],[-71.642553434,41.357768352],[-71.642505885,41.357706569],[-71.642502567,41.357702228],[-71.642451621,41.357641433],[-71.64241309,41.357580782],[-71.642431982,41.35753026],[-71.642502647,41.357502431],[-71.642590768,41.357489491],[-71.642689457,41.357478734],[-71.642763399,41.357464326],[-71.642841578,41.357457962],[-71.642926778,41.357455729],[-71.643009552,41.357482865],[-71.643034567,41.357553344],[-71.6430516,41.357624405],[-71.643081515,41.357673562],[-71.643099829,41.357705832],[-71.643110525,41.357724733],[-71.643138572,41.357779885],[-71.643170882,41.357841138],[-71.643213624,41.357911846],[-71.643252871,41.357980523],[-71.643284988,41.358050421],[-71.643313471,41.358124303],[-71.643339203,41.358203495],[-71.643362262,41.35828134],[-71.643384441,41.358359781],[-71.643409097,41.358446315],[-71.643431193,41.358528141],[-71.643448855,41.358609218],[-71.643463711,41.358697617],[-71.643479532,41.358783362],[-71.643497141,41.358867778],[-71.643512906,41.358955536],[-71.643530486,41.359040661],[-71.643548152,41.359123087],[-71.643564823,41.359208808],[-71.643583313,41.359293268],[-71.643600152,41.359372379],[-71.64361443,41.359446691],[-71.643634216,41.359513128],[-71.643655901,41.359573547],[-71.643680287,41.359633346],[-71.643716179,41.359693954],[-71.643760025,41.359755307],[-71.643809241,41.359814754],[-71.643863882,41.359870284],[-71.643928293,41.359923881],[-71.643992158,41.359964122],[-71.644063788,41.359973729],[-71.644116086,41.360013161],[-71.644177114,41.360032662],[-71.644207673,41.360042412],[-71.64428635,41.360054115],[-71.644359578,41.360072434],[-71.644436299,41.36009212],[-71.644519243,41.360111228],[-71.644606702,41.360127058],[-71.644687197,41.360137455],[-71.644789908,41.360145468],[-71.644875002,41.360148539],[-71.644971192,41.360131769],[-71.64504731,41.360098625],[-71.645066416,41.360076851],[-71.645014995,41.360036069],[-71.644963805,41.360031651],[-71.64492382,41.360028202],[-71.64483884,41.360021768],[-71.644753913,41.360011309],[-71.64467873,41.36000102],[-71.644594904,41.359981228],[-71.644514331,41.359935428],[-71.644414875,41.359902734],[-71.644345173,41.359886469],[-71.644275581,41.359864875],[-71.644212294,41.359839316],[-71.644125414,41.359796771],[-71.644069701,41.359750597],[-71.644049774,41.359689535],[-71.64411464,41.359646251],[-71.644099533,41.359568556],[-71.644102185,41.359491067],[-71.644126415,41.359438572],[-71.644159539,41.359386866],[-71.644189989,41.359333128],[-71.644215183,41.359277978],[-71.644228816,41.359224719],[-71.644275513,41.359160485],[-71.644348636,41.359104612],[-71.644394862,41.3590611],[-71.644453886,41.358999024],[-71.644472833,41.35894649],[-71.644435313,41.358918589],[-71.644357933,41.358929618],[-71.644273495,41.358975328],[-71.644227269,41.35901884],[-71.644155908,41.359075397],[-71.644079648,41.359113183],[-71.644018588,41.359147176],[-71.64400187,41.359219788],[-71.64396247,41.359275413],[-71.643908759,41.359296773],[-71.643841649,41.35924446],[-71.643820158,41.359175372],[-71.643802326,41.359100265],[-71.64378496,41.359043911],[-71.643765148,41.358979509],[-71.643746299,41.358911081],[-71.64373075,41.358852735],[-71.643713004,41.358774997],[-71.643711028,41.35870481],[-71.643713458,41.358636653],[-71.643696178,41.358577646],[-71.643714574,41.358509057],[-71.643688486,41.358447911],[-71.64364296,41.358381803],[-71.643600738,41.358327127],[-71.64360826,41.358269118],[-71.643650023,41.35822552],[-71.643742602,41.358210653],[-71.643817427,41.358196929],[-71.643897757,41.358174552],[-71.643961463,41.3581433],[-71.644021202,41.358088611],[-71.644047418,41.358028794],[-71.644052406,41.357964705],[-71.644046053,41.357891779],[-71.644046528,41.357831628],[-71.644083397,41.357771296],[-71.644137402,41.357704537],[-71.644139037,41.357702546],[-71.644205438,41.357668614],[-71.644308008,41.357683306],[-71.644384975,41.357691648],[-71.644461063,41.357700632],[-71.644495159,41.357704089],[-71.644544253,41.357709036],[-71.644644399,41.357712341],[-71.644735737,41.35771282],[-71.644815652,41.357709175],[-71.644833003,41.357703664],[-71.644908593,41.357679624],[-71.644975544,41.357620327],[-71.645045113,41.357563772],[-71.645104112,41.357505035],[-71.645162065,41.357453023],[-71.64522282,41.357433049],[-71.645267604,41.357451655],[-71.64525915,41.357513027],[-71.645228146,41.3575895],[-71.645253052,41.357664689],[-71.645271896,41.357703111],[-71.645288698,41.357737304],[-71.645297442,41.357820267],[-71.64529339,41.357881703],[-71.645284026,41.357943099],[-71.645248923,41.358005443],[-71.645194469,41.358020126],[-71.645140297,41.357984013],[-71.645102697,41.357920023],[-71.645048141,41.357861177],[-71.644992869,41.357835792],[-71.644922201,41.357861587],[-71.644847021,41.357851939],[-71.644766144,41.357859611],[-71.644691402,41.357869311],[-71.644609565,41.357841557],[-71.644530946,41.357827179],[-71.644455878,41.357812819],[-71.64436143,41.35779224],[-71.644279257,41.357777134],[-71.644195845,41.357778085],[-71.644130465,41.357807303],[-71.644100041,41.357858389],[-71.644115311,41.357928079],[-71.64417912,41.357971018],[-71.644245624,41.358010615],[-71.644288672,41.358067967],[-71.64431848,41.358123161],[-71.644267572,41.358176628],[-71.644231587,41.358238332],[-71.644199318,41.358292713],[-71.644151912,41.358310154],[-71.644070429,41.358305133],[-71.644040533,41.358334124],[-71.644060374,41.35839784],[-71.644106425,41.358399131],[-71.644183316,41.358372688],[-71.644260696,41.358403124],[-71.644314538,41.358454583],[-71.644350068,41.358529897],[-71.644377205,41.35858505],[-71.64441139,41.358642297],[-71.644445576,41.358700186],[-71.644476264,41.358754739],[-71.644529941,41.358813586],[-71.644614755,41.358828666],[-71.644704718,41.35885188],[-71.644770505,41.358882787],[-71.644844224,41.358917824],[-71.644919705,41.358953544],[-71.644985524,41.35898516],[-71.645045151,41.359016669],[-71.645049989,41.3590219],[-71.64513025,41.359063789],[-71.645196401,41.359121911],[-71.645238224,41.359173569],[-71.645280986,41.359224493],[-71.645333946,41.359288166],[-71.645373892,41.35934193],[-71.645408188,41.359394283],[-71.645418109,41.359459932],[-71.645417755,41.359519213],[-71.645417353,41.35958412],[-71.645440381,41.359646985],[-71.645502032,41.359674008],[-71.645558253,41.359661496],[-71.645610979,41.359620056],[-71.64566083,41.359582829],[-71.645732977,41.359579558],[-71.645808989,41.359553046],[-71.645863078,41.359592018],[-71.645884316,41.359641483],[-71.64588389,41.359709226],[-71.645883447,41.359782572],[-71.645882997,41.359853128],[-71.645882572,41.359920894],[-71.645882125,41.359992845],[-71.645881876,41.360030468],[-71.645881703,41.360061984],[-71.645881345,41.360119115],[-71.645874337,41.360188947],[-71.64584306,41.360252361],[-71.645812659,41.360327003],[-71.645796274,41.36039822],[-71.64577536,41.360453181],[-71.645743156,41.36050882],[-71.645732507,41.360565942],[-71.645759311,41.360620362],[-71.64580962,41.360665674],[-71.645811093,41.360727079],[-71.64581074,41.360786337],[-71.645801943,41.360843479],[-71.645774425,41.360904761],[-71.645742271,41.360956146],[-71.645717595,41.361011798],[-71.645693809,41.36107239],[-71.645654977,41.361137162],[-71.6456096,41.36120757],[-71.645561396,41.361276562],[-71.645508639,41.36133209],[-71.645445518,41.361395361],[-71.645404947,41.361443189],[-71.645352131,41.361499448],[-71.645295654,41.36154725],[-71.64523544,41.361594303],[-71.645180861,41.361635744],[-71.64511601,41.361672213],[-71.64503915,41.361686741],[-71.644957715,41.361677993],[-71.644874537,41.361650196],[-71.644795054,41.361631565],[-71.644722011,41.361629209],[-71.64465734,41.36163741],[-71.644637312,41.361695206],[-71.644651008,41.361752411],[-71.644727566,41.361793619],[-71.644806106,41.36181081],[-71.644903435,41.361827383],[-71.645005332,41.361850331],[-71.645101647,41.361875344],[-71.64518487,41.361896097],[-71.645264291,41.361927421],[-71.645339971,41.361955227],[-71.645411022,41.361976613],[-71.645481057,41.36200509],[-71.645548254,41.362040591],[-71.645607025,41.36208173],[-71.645654511,41.362126359],[-71.645701928,41.362180822],[-71.64573894,41.362252223],[-71.645753599,41.362305195],[-71.645769088,41.362376531],[-71.645780927,41.362430925],[-71.645785201,41.362495826],[-71.645814741,41.362565064],[-71.645873465,41.362612537],[-71.645929369,41.362660723],[-71.64597307,41.362709565],[-71.646029934,41.362752787],[-71.646105547,41.362791159],[-71.646188712,41.362826022],[-71.646270894,41.362855947],[-71.646347542,41.362881601],[-71.646421368,41.362907946],[-71.646498015,41.362932937],[-71.646574636,41.36296001],[-71.646664444,41.362979381],[-71.64674854,41.363009303],[-71.64683827,41.363034323],[-71.646927135,41.363052255],[-71.647009441,41.363069485],[-71.647084185,41.363098687],[-71.64715804,41.363124345],[-71.647232955,41.363121756],[-71.647297713,41.363097316],[-71.64736726,41.363056609],[-71.647431195,41.363018036],[-71.647487634,41.362980136],[-71.647544084,41.362933774],[-71.64760712,41.362886694],[-71.647669198,41.36284531],[-71.647721874,41.362808124],[-71.647797934,41.362775184],[-71.64788789,41.362765646],[-71.647970309,41.362765906],[-71.648050845,41.362765482],[-71.648123906,41.362762209],[-71.648206347,41.362758261],[-71.648282209,41.362758552],[-71.648366504,41.362755996],[-71.648408794,41.362730738],[-71.64839416,41.362676348],[-71.648347631,41.362626138],[-71.648332051,41.362569623],[-71.6483137,41.362509565],[-71.648283126,41.362453755],[-71.648261978,41.362391575],[-71.648246489,41.362321679],[-71.64823102,41.362246821],[-71.648212714,41.36217972],[-71.648199956,41.362122514],[-71.648182521,41.362064606],[-71.648154812,41.362000329],[-71.648131825,41.361930398],[-71.648096645,41.361864668],[-71.6480539,41.361809468],[-71.648022437,41.36175009],[-71.647988147,41.36168859],[-71.647955742,41.361628482],[-71.647928035,41.361564892],[-71.647898474,41.361500618],[-71.647877279,41.361444087],[-71.647848568,41.361393168],[-71.647811461,41.361334484],[-71.647777194,41.361269439],[-71.64774575,41.361204435],[-71.647698394,41.361137257],[-71.647643547,41.361072832],[-71.647592435,41.361009181],[-71.647547855,41.360947625],[-71.647502384,41.360881152],[-71.647455032,41.360815369],[-71.647407674,41.360746795],[-71.647366927,41.360675354],[-71.647325212,41.360605355],[-71.647291865,41.360544562],[-71.647262282,41.360483078],[-71.647234594,41.360414548],[-71.647215346,41.36034603],[-71.647204518,41.360282486],[-71.647204869,41.360222565],[-71.647212767,41.360157671],[-71.647232839,41.360093517],[-71.647232359,41.360028725],[-71.647232322,41.360025775],[-71.647219543,41.359972114],[-71.647183353,41.359915556],[-71.64713589,41.359867428],[-71.647087553,41.359808667],[-71.647063544,41.359755661],[-71.647047028,41.359700587],[-71.647033396,41.359632084],[-71.647008491,41.359572035],[-71.646978881,41.359511947],[-71.646952115,41.359447646],[-71.646952477,41.359392619],[-71.646959335,41.359337607],[-71.646982203,41.359274912],[-71.647003254,41.359200876],[-71.647006545,41.359125399],[-71.647020949,41.359064774],[-71.64704008,41.359000666],[-71.647033928,41.358937826],[-71.646995859,41.358881933],[-71.646942735,41.358840148],[-71.646908383,41.358790654],[-71.646852487,41.358744573],[-71.646800392,41.358687966],[-71.646764185,41.358637011],[-71.646723279,41.358588212],[-71.64664451,41.358602744],[-71.646607703,41.358649149],[-71.646553096,41.358704039],[-71.646494086,41.358703817],[-71.646436376,41.358647172],[-71.646397348,41.358596929],[-71.646315021,41.358581116],[-71.646238987,41.358610487],[-71.646177009,41.358640617],[-71.646111271,41.358672857],[-71.646095314,41.358677017],[-71.64601662,41.358684504],[-71.645957365,41.358683481],[-71.645917066,41.358661576],[-71.645830217,41.358619033],[-71.645750056,41.358594617],[-71.645663646,41.358572108],[-71.645583485,41.358547715],[-71.645501615,41.358519276],[-71.64541986,41.358487475],[-71.645324974,41.358448166],[-71.645304994,41.358390443],[-71.645331837,41.358340025],[-71.645386016,41.358297258],[-71.645475459,41.358264303],[-71.645563552,41.358252733],[-71.645647844,41.358210385],[-71.645702961,41.358166335],[-71.645755434,41.35812087],[-71.645804328,41.358076714],[-71.645872491,41.358043511],[-71.645943759,41.358068487],[-71.646028847,41.358111032],[-71.646094831,41.35813526],[-71.646181296,41.358155711],[-71.646248161,41.358179983],[-71.646313815,41.358218894],[-71.646376251,41.358203674],[-71.646451596,41.358165202],[-71.646491487,41.358126957],[-71.64642388,41.358096694],[-71.646342287,41.358096981],[-71.646249984,41.358099133],[-71.646174859,41.358086833],[-71.646083769,41.358074964],[-71.646019823,41.35803939],[-71.645992684,41.357984238],[-71.64599054,41.35792137],[-71.6459974,41.357853344],[-71.646003408,41.357784542],[-71.646005643,41.357725122],[-71.646015214,41.35770217],[-71.646032816,41.357659952],[-71.646086916,41.357622581],[-71.646157275,41.357608084],[-71.646258025,41.357623416],[-71.646320321,41.357654281],[-71.646372623,41.357695724],[-71.646381865,41.357701705],[-71.646450413,41.357746169],[-71.646446155,41.357701623],[-71.646421077,41.357631511],[-71.646392231,41.357572999],[-71.646352926,41.357506999],[-71.646310895,41.357443655],[-71.646275058,41.357381035],[-71.646260691,41.357309354],[-71.646261551,41.357232486],[-71.646259658,41.357159645],[-71.646250689,41.35708535],[-71.646240837,41.357009707],[-71.64623619,41.356940804],[-71.646235837,41.356877979],[-71.646227419,41.356819075],[-71.646198684,41.356755875],[-71.646154919,41.356690475],[-71.646112861,41.356628481],[-71.64606904,41.356565116],[-71.646021697,41.356501002],[-71.645976944,41.356441595],[-71.645923295,41.356381445],[-71.645849471,41.356352447],[-71.645764054,41.356324607],[-71.645752029,41.356268315],[-71.645793819,41.356224077],[-71.645863081,41.356180878],[-71.645939251,41.356145744],[-71.646017075,41.356117331],[-71.64609834,41.356093671],[-71.646210896,41.35609577],[-71.646299921,41.356121615],[-71.646377192,41.356117285],[-71.646432993,41.356081879],[-71.646424655,41.356018287],[-71.646464107,41.355960649],[-71.646533505,41.355910749],[-71.646614274,41.355869021],[-71.64668783,41.355832563],[-71.64676645,41.355807511],[-71.646849635,41.355814587],[-71.646940065,41.355817742],[-71.647020141,41.355846159],[-71.647081441,41.355880341],[-71.647149873,41.355913987],[-71.647225767,41.355931661],[-71.647321999,41.355950268],[-71.647414601,41.355974187],[-71.647489804,41.356021913],[-71.647535276,41.356089986],[-71.647532051,41.356154119],[-71.647524506,41.356213501],[-71.647563208,41.356267471],[-71.647589274,41.356331269],[-71.64761366,41.356390404],[-71.647666812,41.356431846],[-71.64772173,41.356475298],[-71.64780665,41.356524498],[-71.647905501,41.356546487],[-71.647964684,41.356596703],[-71.647980041,41.356663076],[-71.647939712,41.356721357],[-71.647887651,41.356786833],[-71.647851504,41.35685588],[-71.64789117,41.356906533],[-71.647957979,41.356933457],[-71.648061373,41.356950134],[-71.648159785,41.356952089],[-71.648238981,41.356939728],[-71.648275624,41.356888748],[-71.648296383,41.356833535],[-71.648364074,41.356821052],[-71.648407926,41.356843637],[-71.648391518,41.356902893],[-71.648361426,41.356978016],[-71.648347247,41.357056732],[-71.648362493,41.357127108],[-71.648418428,41.35716388],[-71.648511529,41.357165727],[-71.648594141,41.357160817],[-71.648668082,41.357146336],[-71.64873511,41.357122487],[-71.648799555,41.357097246],[-71.648866508,41.35703996],[-71.648832924,41.356994766],[-71.648825273,41.356940527],[-71.648903288,41.356902758],[-71.648982427,41.356892433],[-71.649051306,41.356867895],[-71.649043433,41.356823033],[-71.648969908,41.356779971],[-71.648898472,41.356761013],[-71.648798741,41.356739712],[-71.648785945,41.356678756],[-71.648795469,41.356609331],[-71.648841141,41.356551113],[-71.648916099,41.356530684],[-71.64901999,41.356525998],[-71.649085314,41.356500779],[-71.649143697,41.3564661],[-71.649213401,41.356404854],[-71.649282524,41.356368286],[-71.6493498,41.356413253],[-71.649360756,41.3564789],[-71.649322987,41.356541249],[-71.649279352,41.356587481],[-71.649241006,41.356636451],[-71.649210286,41.356702198],[-71.649214905,41.356771078],[-71.649246231,41.356837659],[-71.649286889,41.356883622],[-71.649340071,41.356924377],[-71.64940096,41.356976602],[-71.649417286,41.357040985],[-71.649403107,41.357118992],[-71.649393855,41.357175014],[-71.649385954,41.357250428],[-71.649368773,41.35730367],[-71.649326104,41.357347225],[-71.649335738,41.357392153],[-71.649369709,41.357381223],[-71.6494559,41.357374295],[-71.649519076,41.35740454],[-71.649537272,41.357463545],[-71.649540269,41.357526412],[-71.64958123,41.357598447],[-71.649634688,41.357666623],[-71.649664203,41.357697483],[-71.649680634,41.35771466],[-71.649769247,41.357718478],[-71.649804045,41.357697301],[-71.649840268,41.357675252],[-71.649922937,41.357628214],[-71.649998556,41.357617824],[-71.650048052,41.357665193],[-71.650063727,41.357696962],[-71.650078609,41.357727086],[-71.65008524,41.357785992],[-71.650063274,41.357856554],[-71.650108364,41.357862487],[-71.650191913,41.357854876],[-71.650274552,41.357847907],[-71.650341114,41.357805967],[-71.650383151,41.357751709],[-71.650399082,41.357696525],[-71.650387751,41.357626784],[-71.650368618,41.357569747],[-71.650357444,41.357515467],[-71.65034712,41.357461209],[-71.650323585,41.357404086],[-71.650287578,41.357348146],[-71.650238138,41.357298742],[-71.65018501,41.357255311],[-71.650133643,41.357212565],[-71.650093836,41.357167242],[-71.650049242,41.357099855],[-71.650039307,41.357029541],[-71.650085748,41.357016101],[-71.650167724,41.356998429],[-71.650239131,41.356977958],[-71.650307895,41.356956805],[-71.650364028,41.3569074],[-71.650388389,41.356848911],[-71.650357036,41.356784366],[-71.650302173,41.356738856],[-71.650238501,41.356690614],[-71.650175739,41.356642347],[-71.6501146,41.356600162],[-71.650046111,41.356569216],[-71.64997473,41.356547583],[-71.649913457,41.356512693],[-71.649902693,41.356438378],[-71.649903986,41.356380285],[-71.649905255,41.3563248],[-71.64991145,41.356246689],[-71.649956018,41.356197779],[-71.650017294,41.356154474],[-71.650047136,41.356090032],[-71.650051238,41.356025943],[-71.650051869,41.355957102],[-71.650044356,41.355897557],[-71.650015976,41.355818324],[-71.650014106,41.355744135],[-71.650057436,41.355671808],[-71.650116015,41.35563045],[-71.650197938,41.355616804],[-71.650280408,41.355577084],[-71.650352666,41.355557984],[-71.650425092,41.355532846],[-71.650502032,41.355503723],[-71.650590397,41.355519594],[-71.650658194,41.3555405],[-71.650661042,41.355541217],[-71.650659265,41.355538343],[-71.65008027,41.354185452],[-71.649833574,41.35352644],[-71.649639574,41.353557441],[-71.649517063,41.353584477],[-71.649494987,41.353589582],[-71.649377916,41.353628842],[-71.649281077,41.353675761],[-71.649233556,41.353696218],[-71.649177574,41.35372044],[-71.649158995,41.353725476],[-71.649070083,41.353749861],[-71.648953573,41.353768441],[-71.64895345,41.353768466],[-71.648711017,41.353818294],[-71.648700398,41.353820666],[-71.648631663,41.353839829],[-71.648508374,41.353881704],[-71.648391381,41.353915612],[-71.648321905,41.353929424],[-71.648249759,41.353943902],[-71.648181431,41.353961548],[-71.648169848,41.353964626],[-71.648106974,41.353981502],[-71.648074186,41.353991886],[-71.648018651,41.354009796],[-71.647913982,41.35404453],[-71.64786967,41.354057844],[-71.647675573,41.354120441],[-71.647570573,41.354165441],[-71.647540905,41.354180088],[-71.647491743,41.354204846],[-71.647422374,41.354212665],[-71.647339107,41.354208906],[-71.647222614,41.354222778],[-71.647095163,41.354249905],[-71.646974647,41.35428377],[-71.646867166,41.354312349],[-71.646859572,41.354314441],[-71.646826141,41.354321368],[-71.646748154,41.354337691],[-71.646642862,41.35436575],[-71.646541147,41.35439186],[-71.646446374,41.354427384],[-71.646393836,41.354446842],[-71.646341572,41.354466441],[-71.646306625,41.354476279],[-71.646222078,41.354500695],[-71.646103381,41.354533917],[-71.646064864,41.354547818],[-71.645913477,41.354604048],[-71.645894058,41.354611439],[-71.645869914,41.354617411],[-71.645786572,41.354638441],[-71.645670572,41.354655441],[-71.645566572,41.354678441],[-71.645477572,41.354709441],[-71.64536983,41.354732387],[-71.645369572,41.354732441],[-71.645167572,41.354765441],[-71.645074572,41.354776441],[-71.644988461,41.354775525],[-71.644980372,41.354775478],[-71.644975147,41.354775674],[-71.644887572,41.354779441],[-71.644796572,41.354796441],[-71.644711572,41.354825441],[-71.644711399,41.354825485],[-71.644639572,41.354843441],[-71.644541572,41.354853441],[-71.644456572,41.354875441],[-71.644366572,41.354905441],[-71.644276572,41.354926441],[-71.644238398,41.354930531],[-71.644218098,41.35493287],[-71.644192698,41.354935784],[-71.644178027,41.354938673],[-71.644021572,41.354973441],[-71.643873327,41.355027437],[-71.6438704,41.355028561],[-71.643860782,41.355031182],[-71.643795572,41.355049441],[-71.643666817,41.35509524],[-71.643647012,41.355102575],[-71.643575383,41.355132373],[-71.643511331,41.355157605],[-71.643494572,41.355164441],[-71.643480708,41.355167275],[-71.64340479,41.355184319],[-71.643313951,41.355201859],[-71.64328377,41.355212128],[-71.643111286,41.355273985],[-71.643023333,41.355305756],[-71.642992436,41.355315436],[-71.642755282,41.355391568],[-71.642752619,41.355392497],[-71.642671299,41.355418853],[-71.642566199,41.355438858],[-71.642493253,41.355449371],[-71.642244571,41.355486441],[-71.642149571,41.355489442],[-71.642055571,41.355484441],[-71.64194585,41.355483148],[-71.641869835,41.355482692],[-71.641773187,41.355481462],[-71.641672988,41.35548019],[-71.641546198,41.355478585],[-71.641492976,41.355479253],[-71.641414571,41.355480441],[-71.641372436,41.355483347],[-71.641298506,41.35548877],[-71.641199623,41.355506844],[-71.641124721,41.355536085],[-71.641098571,41.355546442],[-71.641075103,41.355552459],[-71.64102091,41.355566687],[-71.640987854,41.355572117],[-71.640925498,41.355582934],[-71.640840985,41.355599818],[-71.640726166,41.355617706],[-71.64060364,41.355622819],[-71.640530432,41.355624766],[-71.64048557,41.355626442],[-71.640330308,41.35564498],[-71.640284594,41.355650813],[-71.640191357,41.355654929],[-71.640105307,41.355655811],[-71.640092593,41.355657539],[-71.639898757,41.355688878],[-71.639853371,41.355697376],[-71.639794381,41.355705753],[-71.639771571,41.355709441],[-71.639716475,41.35570914],[-71.639682779,41.355709224],[-71.6396467,41.355708759],[-71.63958857,41.355708441],[-71.639250571,41.355697441],[-71.639172571,41.355686442],[-71.63907157,41.355657441],[-71.639071113,41.355657217],[-71.63901234,41.355628388],[-71.63901222,41.355626659],[-71.63897957,41.355460441],[-71.638977992,41.355454306],[-71.638968335,41.355417987],[-71.638959745,41.355383344],[-71.63895257,41.355355442],[-71.638932927,41.355235621],[-71.638932582,41.355233785],[-71.63891261,41.355176678],[-71.638899557,41.355130733],[-71.63889657,41.355121442],[-71.638879109,41.35500445],[-71.638876088,41.354987766],[-71.638854708,41.354939581],[-71.638846534,41.354921202],[-71.638817187,41.354849422],[-71.63879857,41.354848442],[-71.638747929,41.35484447],[-71.63872659,41.354854833],[-71.63872774,41.354876676],[-71.638729684,41.354911692],[-71.638730624,41.35491442],[-71.63875257,41.354976441],[-71.63876757,41.355041442],[-71.638767575,41.355042513],[-71.638770665,41.355099318],[-71.638769194,41.355164135],[-71.63876866,41.355226961],[-71.638774404,41.35524154],[-71.63881657,41.355343441],[-71.63882983,41.355389116],[-71.638834663,41.355405569],[-71.638835057,41.355408512],[-71.63886657,41.355607442],[-71.63889157,41.355695441],[-71.63890457,41.355740442],[-71.63890791,41.355754806],[-71.638920473,41.355805677],[-71.638928859,41.355844885],[-71.638957308,41.355967216],[-71.638964926,41.355998674],[-71.638971397,41.356018204],[-71.63898357,41.356053442],[-71.638987546,41.3560734],[-71.638999285,41.356126113],[-71.639007789,41.356175001],[-71.639016621,41.35621933],[-71.639023898,41.35625274],[-71.639035806,41.356314362],[-71.63906157,41.356382442],[-71.639061753,41.356382896],[-71.639078752,41.356454621],[-71.63907893,41.356524101],[-71.639093316,41.356594479],[-71.639120968,41.356665665],[-71.639123049,41.356730523],[-71.639135011,41.356788783],[-71.639149396,41.356858475],[-71.639153489,41.356913336],[-71.639183042,41.356979236],[-71.639192419,41.3570348],[-71.639215175,41.357087215],[-71.639252906,41.357144506],[-71.639294271,41.357197835],[-71.639352927,41.357232024],[-71.639396962,41.357284688],[-71.63944554,41.357332771],[-71.639496986,41.35737287],[-71.639555447,41.357415064],[-71.639615699,41.357457278],[-71.639681235,41.357500195],[-71.639738649,41.357549068],[-71.639817947,41.357611569],[-71.639896946,41.35764802],[-71.639969149,41.357671695],[-71.639999767,41.357709645],[-71.640025242,41.357741199],[-71.640053256,41.357796374],[-71.640063432,41.357856671],[-71.640061081,41.357920803],[-71.64004356,41.357988704],[-71.640004818,41.358055053],[-71.639967041,41.358118725],[-71.639937354,41.358175137],[-71.639885592,41.358228648],[-71.639814345,41.358240421],[-71.639740983,41.358228778],[-71.639728528,41.35830948],[-71.639727029,41.358374915],[-71.639716916,41.35842961],[-71.639689106,41.35848403],[-71.639669907,41.358547954],[-71.63967961,41.358628286],[-71.639676844,41.358711767],[-71.63966739,41.358776479],[-71.639663497,41.358829887],[-71.639674904,41.358840645],[-71.639674501,41.358907679],[-71.639675989,41.358964853],[-71.639668135,41.359025493],[-71.639615439,41.359068324],[-71.63954784,41.359097704],[-71.63947925,41.359132047],[-71.639415224,41.359185436],[-71.639357718,41.35925016],[-71.639316095,41.359318433],[-71.639271621,41.359388128],[-71.639222498,41.359455678],[-71.63919403,41.359514856],[-71.639157148,41.359571871],[-71.639113754,41.359621095],[-71.639078833,41.359672482],[-71.639037246,41.359729525],[-71.639023747,41.359790812],[-71.639039273,41.359854373],[-71.639078317,41.359900387],[-71.639136983,41.359952118],[-71.63918912,41.360003079],[-71.639219279,41.360038858],[-71.639229078,41.360050487],[-71.639291411,41.360113534],[-71.639358536,41.360160315],[-71.639427569,41.360205012],[-71.639456273,41.360255909],[-71.639514942,41.360309035],[-71.639589501,41.360368568],[-71.639629489,41.36041529],[-71.639664747,41.36046483],[-71.639700951,41.360517114],[-71.63974089,41.360569485],[-71.639794952,41.360611318],[-71.63986123,41.360644697],[-71.639931271,41.360678117],[-71.640007835,41.360709448],[-71.640091946,41.360735144],[-71.64017707,41.360752376],[-71.64025096,41.360768158],[-71.640336865,41.360809381],[-71.64040769,41.360868209],[-71.640485112,41.360917149],[-71.640571905,41.360961892],[-71.640628809,41.360998095],[-71.64067908,41.361041304],[-71.640719986,41.361090883],[-71.640753371,41.361144565],[-71.64078396,41.361196192],[-71.640812667,41.361247799],[-71.640838552,41.361300118],[-71.640859768,41.361355233],[-71.640876229,41.361415225],[-71.640879604,41.361473815],[-71.640879131,41.361550043],[-71.640876892,41.361610012],[-71.640867207,41.361665691],[-71.640849033,41.36172632],[-71.640828933,41.361794659],[-71.640806972,41.361858815],[-71.640770116,41.361913703],[-71.640722918,41.361972813],[-71.640669164,41.362032593],[-71.64059856,41.362091594],[-71.640513971,41.362140709],[-71.640461293,41.362178601],[-71.640414158,41.362224994],[-71.640372645,41.362274239],[-71.640333949,41.362320668],[-71.640285865,41.362377651],[-71.640267091,41.362385359],[-71.640253562,41.362446691],[-71.640227989,41.36249738],[-71.640182643,41.362557196],[-71.640137297,41.362617012],[-71.640110698,41.36268465],[-71.640109256,41.362762274],[-71.640108757,41.362841269],[-71.640108332,41.362911848],[-71.640108838,41.362978149],[-71.640121612,41.363031857],[-71.640146541,41.363091175],[-71.640166783,41.363144873],[-71.64016645,41.363202027],[-71.64019802,41.363243773],[-71.640268088,41.363273648],[-71.640349431,41.363295825],[-71.640441012,41.363320825],[-71.640541132,41.36333598],[-71.64063011,41.363337015],[-71.640713472,41.363337302],[-71.640797743,41.363337611],[-71.640877383,41.363329417],[-71.640928252,41.363283042],[-71.641000675,41.363236732],[-71.641076689,41.36320876],[-71.641166718,41.363190033],[-71.641251034,41.363182611],[-71.64129953,41.363218023],[-71.641301936,41.36327801],[-71.641301534,41.363344357],[-71.641274061,41.363400676],[-71.641276428,41.363470542],[-71.641314536,41.363517243],[-71.641365036,41.363524476],[-71.641425026,41.363512716],[-71.641488565,41.36354118],[-71.64155127,41.363549153],[-71.641584231,41.363518192],[-71.641585218,41.363511169],[-71.641641318,41.363525463]]],[[[-71.624395958,41.364255445],[-71.624419253,41.364277479],[-71.624452752,41.364293726],[-71.624498347,41.364315839],[-71.624514405,41.364322079],[-71.624566489,41.364342318],[-71.624639456,41.364383474],[-71.624687498,41.364423629],[-71.624740002,41.364463709],[-71.624816359,41.364499465],[-71.624889705,41.364485068],[-71.624957862,41.364439299],[-71.625006497,41.364393116],[-71.625057543,41.364337531],[-71.625102171,41.364275366],[-71.625145299,41.364222557],[-71.625199248,41.364177009],[-71.625272396,41.364153876],[-71.625343916,41.364136851],[-71.625417226,41.364119756],[-71.625492102,41.364095317],[-71.625564303,41.364069532],[-71.625633731,41.364038489],[-71.625699644,41.364010813],[-71.625734645,41.364025686],[-71.625852337,41.364118434],[-71.625988601,41.364112979],[-71.626006753,41.364112251],[-71.626103113,41.364020571],[-71.626184215,41.363998047],[-71.626257656,41.363985639],[-71.626334519,41.363969202],[-71.626413076,41.363949379],[-71.62649779,41.363926804],[-71.626586772,41.363898095],[-71.626673244,41.363874169],[-71.626754309,41.363848304],[-71.626828236,41.363820481],[-71.626902098,41.363790691],[-71.626980392,41.36376085],[-71.627067644,41.363732188],[-71.627156755,41.363707527],[-71.627241306,41.3636796],[-71.627328527,41.363650961],[-71.627417638,41.3636263],[-71.627504046,41.363601023],[-71.627590519,41.363577737],[-71.627666207,41.363550551],[-71.627734656,41.36351617],[-71.627796004,41.363483237],[-71.627862825,41.363454849],[-71.627928767,41.363427171],[-71.627989952,41.363388177],[-71.628016791,41.363359033],[-71.628006246,41.3632916],[-71.628017078,41.363226544],[-71.628035341,41.363174082],[-71.628062467,41.363120877],[-71.628095884,41.363071554],[-71.628126627,41.363020953],[-71.628150105,41.3629651],[-71.628177198,41.362910501],[-71.628203411,41.362856612],[-71.62824181,41.362793195],[-71.628293664,41.362733582],[-71.62832884,41.362683617],[-71.628366685,41.362632207],[-71.62839831,41.362582246],[-71.628439677,41.362531496],[-71.62849369,41.362489262],[-71.628573024,41.362464725],[-71.6286538,41.362462942],[-71.628735619,41.36246715],[-71.628803115,41.362504354],[-71.628856632,41.362549783],[-71.628918979,41.362593076],[-71.628982756,41.362622324],[-71.62907259,41.362627072],[-71.629150695,41.362625338],[-71.629234145,41.36262481],[-71.629315799,41.362622362],[-71.629333799,41.36255986],[-71.629366037,41.362498554],[-71.629412031,41.36245443],[-71.629477774,41.362418701],[-71.629555285,41.362393525],[-71.629640841,41.362368271],[-71.629719197,41.362340395],[-71.629781519,41.36231009],[-71.629860204,41.362294975],[-71.629909402,41.362274885],[-71.629891828,41.362245677],[-71.629814426,41.362203248],[-71.629766252,41.362158407],[-71.629812182,41.362112934],[-71.629885337,41.362126003],[-71.629924524,41.362094008],[-71.629940762,41.362031553],[-71.629978278,41.361968137],[-71.630023226,41.361917313],[-71.630068989,41.361864499],[-71.630116546,41.361812987],[-71.63016894,41.361812242],[-71.630242426,41.361839329],[-71.630305619,41.36188063],[-71.630320267,41.361934611],[-71.630294904,41.36198779],[-71.630231385,41.362041539],[-71.63016121,41.362076634],[-71.630096379,41.362112339],[-71.630052211,41.36215845],[-71.630025085,41.362211015],[-71.630025926,41.362282598],[-71.630084105,41.362336004],[-71.630161375,41.362373035],[-71.630223426,41.362404321],[-71.630293546,41.362402663],[-71.630345599,41.362352426],[-71.630347699,41.362294218],[-71.630379154,41.362236206],[-71.630437659,41.362194584],[-71.630514321,41.362170094],[-71.630586267,41.362170447],[-71.630671772,41.362181282],[-71.630740662,41.362201742],[-71.630810081,41.362244271],[-71.630877377,41.362272073],[-71.630954447,41.362299773],[-71.631022007,41.362338325],[-71.631085916,41.362372901],[-71.631144616,41.362413543],[-71.631194686,41.362464396],[-71.631247653,41.362522518],[-71.631306749,41.362578575],[-71.631370923,41.362623854],[-71.631441289,41.362668348],[-71.631458946,41.362678414],[-71.631499823,41.362701695],[-71.631588064,41.36271383],[-71.631675413,41.362689853],[-71.631741221,41.362672076],[-71.631748594,41.362670124],[-71.631823626,41.362650346],[-71.631908371,41.362629735],[-71.631979489,41.362595942],[-71.631985799,41.362563756],[-71.631950896,41.362552178],[-71.631874785,41.362563952],[-71.631817628,41.36255137],[-71.631795907,41.362498175],[-71.631812144,41.36243636],[-71.631882483,41.36240728],[-71.631972122,41.362405393],[-71.63205127,41.362409625],[-71.63212647,41.362397875],[-71.632143764,41.362378255],[-71.632107806,41.362325191],[-71.632046533,41.362288577],[-71.631980699,41.362248011],[-71.631910631,41.362215547],[-71.631867799,41.362171319],[-71.631812919,41.362143297],[-71.631747526,41.362155584],[-71.631740152,41.362141962],[-71.631714039,41.362093826],[-71.631702841,41.362035085],[-71.63168884,41.361971727],[-71.631673177,41.361911732],[-71.631656602,41.361851739],[-71.631632111,41.361794545],[-71.631599738,41.361742803],[-71.631576225,41.361688924],[-71.631562487,41.361635629],[-71.631560253,41.361581428],[-71.63157903,41.361514259],[-71.631607099,41.361463706],[-71.631670585,41.361409293],[-71.631738558,41.361366905],[-71.631814413,41.361334342],[-71.631890262,41.361313877],[-71.631972465,41.361298025],[-71.632055746,41.361290154],[-71.632140817,41.361281617],[-71.632225993,41.361279781],[-71.632304293,41.361285363],[-71.632382658,41.36129362],[-71.632462038,41.361307937],[-71.632542394,41.361324197],[-71.632614472,41.361330541],[-71.632690003,41.361332855],[-71.63274548,41.361385599],[-71.632768113,41.361439479],[-71.632791826,41.361501362],[-71.632825179,41.361557105],[-71.632858402,41.361608182],[-71.63288198,41.361663364],[-71.632908234,41.361721242],[-71.63293885,41.361774312],[-71.632967673,41.361826103],[-71.632999638,41.361826318],[-71.6330527,41.361780767],[-71.633090411,41.361725354],[-71.633090579,41.361659144],[-71.633088077,41.361592936],[-71.633080132,41.361522779],[-71.63306502,41.361450731],[-71.633045871,41.361394103],[-71.633030339,41.361339483],[-71.633022692,41.361281378],[-71.633000028,41.361227476],[-71.632981691,41.361166844],[-71.632953285,41.361095636],[-71.632928825,41.361039768],[-71.632907918,41.360983897],[-71.632877236,41.360928128],[-71.632836778,41.360871799],[-71.632800817,41.360817409],[-71.632768279,41.360759012],[-71.632726094,41.360704057],[-71.632687298,41.360643701],[-71.632644103,41.360584768],[-71.632594003,41.360533275],[-71.632537747,41.36048522],[-71.632484941,41.360431787],[-71.632436503,41.360376908],[-71.632385623,41.360330082],[-71.632385925,41.360269223],[-71.632427652,41.3602332],[-71.632508141,41.360256115],[-71.632583482,41.360285211],[-71.632663841,41.360304123],[-71.632740414,41.360311765],[-71.632827376,41.360308555],[-71.632918222,41.360319336],[-71.632993884,41.360327002],[-71.633060835,41.360305289],[-71.633111818,41.36028316],[-71.633102456,41.360336825],[-71.633082437,41.360389313],[-71.633057305,41.360449858],[-71.633053451,41.360510126],[-71.633084298,41.360572595],[-71.633148473,41.36061856],[-71.633199653,41.360678032],[-71.633238119,41.360725673],[-71.633270427,41.360774738],[-71.633315051,41.360819627],[-71.633371045,41.360858328],[-71.633445244,41.360877362],[-71.633525701,41.360898972],[-71.633593809,41.360923456],[-71.63366567,41.360957244],[-71.633714757,41.361002722],[-71.633781459,41.36100715],[-71.633837291,41.360966239],[-71.633892757,41.360909936],[-71.633956471,41.360864212],[-71.634028369,41.360827055],[-71.63411716,41.36082718],[-71.634197967,41.360826697],[-71.634286055,41.360868974],[-71.634316773,41.360926754],[-71.634358725,41.360970983],[-71.634415664,41.361011031],[-71.634400309,41.3610728],[-71.634350437,41.361103596],[-71.634296849,41.36112845],[-71.634305573,41.361193209],[-71.634308724,41.361249375],[-71.634317186,41.361304781],[-71.634380995,41.361334667],[-71.634454449,41.361360402],[-71.63456934,41.361356722],[-71.634671489,41.361342286],[-71.634746431,41.361339019],[-71.634824174,41.361339317],[-71.634902858,41.361339591],[-71.63498433,41.36133778],[-71.635063971,41.361331031],[-71.635140788,41.36132424],[-71.635242966,41.361309071],[-71.635331209,41.361279053],[-71.635468182,41.36123793],[-71.635456399,41.3611772],[-71.635387394,41.361130374],[-71.635316488,41.361089199],[-71.635254961,41.361047373],[-71.63524682,41.361000749],[-71.635288313,41.360955051],[-71.635368109,41.360920765],[-71.635470198,41.360921835],[-71.635557149,41.360941904],[-71.63563377,41.360972529],[-71.635698142,41.361010144],[-71.635743692,41.3610618],[-71.635729411,41.361099142],[-71.635643119,41.361118592],[-71.635580217,41.361145905],[-71.635564972,41.361186747],[-71.635663297,41.361187134],[-71.635764606,41.361163481],[-71.635854716,41.361125707],[-71.635918699,41.361078655],[-71.635980807,41.361034464],[-71.636054025,41.361005058],[-71.636137343,41.361015251],[-71.63622041,41.361050808],[-71.636308239,41.361084278],[-71.636391415,41.361113499],[-71.636471011,41.361114503],[-71.636510626,41.36107091],[-71.636525065,41.361008159],[-71.63655259,41.360946193],[-71.636613759,41.360903353],[-71.636644641,41.360893985],[-71.63668505,41.360881747],[-71.63677212,41.360886309],[-71.636868517,41.360894405],[-71.636965901,41.360895478],[-71.637061432,41.360895776],[-71.637157901,41.360894701],[-71.637259068,41.36089012],[-71.637334928,41.360890396],[-71.637408879,41.360892092],[-71.637503384,41.360910046],[-71.637573352,41.360951953],[-71.637629224,41.361003642],[-71.637666248,41.361070792],[-71.637702336,41.361140069],[-71.637751677,41.36118893],[-71.637816117,41.361215268],[-71.637903162,41.361221934],[-71.637999633,41.361221544],[-71.638089518,41.361221893],[-71.638179475,41.361213026],[-71.638277044,41.361186585],[-71.638368122,41.361148098],[-71.638447031,41.361111708],[-71.638494118,41.361070965],[-71.638452386,41.361003044],[-71.638383451,41.360947071],[-71.638329411,41.360901006],[-71.638276333,41.360850709],[-71.638228903,41.360801183],[-71.638193613,41.360750247],[-71.63816491,41.360699371],[-71.638127881,41.360630049],[-71.638098511,41.360536133],[-71.63808675,41.36047259],[-71.638074912,41.360415382],[-71.638043551,41.360341913],[-71.638016748,41.360284655],[-71.637989969,41.360224583],[-71.637963237,41.360158176],[-71.637941201,41.36008751],[-71.637930599,41.360040432],[-71.637924807,41.360014801],[-71.637920562,41.359944937],[-71.637920968,41.359878612],[-71.637921355,41.359817227],[-71.63792177,41.359755133],[-71.63792312,41.359690248],[-71.637931935,41.359623936],[-71.637944513,41.359556956],[-71.637957098,41.359493521],[-71.637967775,41.359432192],[-71.637975689,41.359370821],[-71.637976965,41.359313689],[-71.6379774,41.359246632],[-71.637990898,41.359184614],[-71.638027828,41.359121241],[-71.638043953,41.359081107],[-71.63806786,41.359060632],[-71.638101621,41.359020316],[-71.638136676,41.358960605],[-71.638161134,41.358899443],[-71.638189031,41.358842324],[-71.638264053,41.358820553],[-71.638348761,41.358800256],[-71.638445693,41.358790145],[-71.638452581,41.358760177],[-71.638456528,41.35870343],[-71.638523342,41.358690222],[-71.638529572,41.358650923],[-71.638491126,41.358585582],[-71.638461656,41.358516366],[-71.638462497,41.358440183],[-71.638474595,41.358376863],[-71.638493026,41.358307589],[-71.638516709,41.358239086],[-71.638539406,41.358177857],[-71.638579225,41.358103526],[-71.638639743,41.358056202],[-71.638702049,41.35800755],[-71.638721001,41.357984222],[-71.63874398,41.357955949],[-71.638766761,41.357891427],[-71.638768425,41.357817279],[-71.638770146,41.357741758],[-71.63877084,41.357711134],[-71.638771866,41.35766562],[-71.638773394,41.357598791],[-71.638775059,41.357525306],[-71.638776753,41.357451134],[-71.638778335,41.357381034],[-71.63877887,41.357318849],[-71.638780451,41.357248726],[-71.638782033,41.357178534],[-71.63878331,41.357122431],[-71.638778448,41.357062905],[-71.63875798,41.356987114],[-71.638730745,41.356897883],[-71.638718556,41.356832488],[-71.638714134,41.356808799],[-71.638712554,41.356721893],[-71.638710121,41.356634325],[-71.638700643,41.356544615],[-71.638685134,41.356445513],[-71.63865991,41.356345645],[-71.638636337,41.356251126],[-71.638619699,41.356163346],[-71.638603861,41.356080254],[-71.638583558,41.355996435],[-71.638563261,41.355914697],[-71.638542708,41.355841582],[-71.638525764,41.355767136],[-71.638505438,41.355686039],[-71.638479084,41.355596807],[-71.638457218,41.355505648],[-71.638445013,41.355417931],[-71.638433521,41.355337601],[-71.638426296,41.355265979],[-71.638405998,41.355183509],[-71.63838107,41.355108387],[-71.638373458,41.355054124],[-71.638369893,41.354975888],[-71.638370697,41.354940163],[-71.638371447,41.354907092],[-71.638340926,41.354885287],[-71.63824959,41.354883453],[-71.638204903,41.354937664],[-71.638204787,41.354940363],[-71.638202773,41.354992441],[-71.638216468,41.355052803],[-71.638215933,41.355115584],[-71.638243064,41.355170738],[-71.638265432,41.355241198],[-71.638294985,41.355307738],[-71.638307691,41.355373407],[-71.63831585,41.355442352],[-71.638317106,41.355505176],[-71.638303906,41.355578515],[-71.638343452,41.355633814],[-71.638365874,41.355700958],[-71.638359235,41.35571956],[-71.638318182,41.35576981],[-71.638256482,41.355831177],[-71.638189355,41.355895798],[-71.638132506,41.355940533],[-71.638076394,41.355989246],[-71.638023889,41.35603537],[-71.637955418,41.356081925],[-71.637881747,41.356123752],[-71.637802707,41.356167529],[-71.637740681,41.356204128],[-71.637694972,41.356263692],[-71.637636552,41.356297679],[-71.637563679,41.356344193],[-71.637493668,41.356380046],[-71.63740604,41.35641098],[-71.637318134,41.356453327],[-71.637235598,41.356495004],[-71.63716633,41.356538221],[-71.637095355,41.356578077],[-71.637013808,41.356613784],[-71.636923263,41.356657391],[-71.636827894,41.356716991],[-71.636719478,41.35676437],[-71.636619131,41.356809842],[-71.636531827,41.35686488],[-71.636445488,41.356917196],[-71.636346018,41.356961363],[-71.636239533,41.357003433],[-71.63613552,41.357052202],[-71.636023442,41.357105577],[-71.635906681,41.357169593],[-71.635845533,41.357206212],[-71.635782539,41.357245509],[-71.635717783,41.357284763],[-71.635653057,41.357323353],[-71.635589239,41.357360616],[-71.635529026,41.357394558],[-71.635423141,41.35744868],[-71.635342446,41.357486397],[-71.635283996,41.357521732],[-71.635201542,41.357560091],[-71.635138683,41.357592047],[-71.635062256,41.357638518],[-71.635035521,41.357715577],[-71.635027162,41.357739647],[-71.634967578,41.357784314],[-71.634942785,41.357831457],[-71.634868124,41.357851922],[-71.634795285,41.357887068],[-71.634737466,41.357919314],[-71.634661954,41.357953846],[-71.634574065,41.357991845],[-71.634503284,41.358039041],[-71.634432205,41.358074139],[-71.634365587,41.358108522],[-71.634302789,41.358155572],[-71.634230927,41.358194032],[-71.634156448,41.358199791],[-71.634064859,41.358195026],[-71.63398488,41.358227573],[-71.633905169,41.358272195],[-71.633818058,41.358305504],[-71.63372404,41.358344973],[-71.633659834,41.358371967],[-71.633590379,41.358400361],[-71.633515679,41.358431529],[-71.633445248,41.358457248],[-71.633375595,41.358477638],[-71.633306007,41.35850004],[-71.633232968,41.358527135],[-71.633162669,41.358558206],[-71.633103936,41.358589812],[-71.633011675,41.358628547],[-71.632943782,41.358648935],[-71.632867059,41.358670705],[-71.632788545,41.358692545],[-71.632719707,41.358710898],[-71.632624542,41.358739665],[-71.632533131,41.358778421],[-71.632465403,41.358805441],[-71.632401192,41.358830443],[-71.632310593,41.358865814],[-71.632218105,41.35889723],[-71.632147537,41.358916271],[-71.632074266,41.358934011],[-71.631982654,41.358964076],[-71.631905283,41.358995932],[-71.631825954,41.359020449],[-71.631733766,41.359035557],[-71.631641324,41.359060523],[-71.631559685,41.359098422],[-71.631494794,41.359132802],[-71.62856879,41.360051455],[-71.628486093,41.36007794],[-71.628396169,41.360103289],[-71.628290117,41.360124197],[-71.62821857,41.360139874],[-71.628138554,41.360171799],[-71.628062093,41.360204955],[-71.627971941,41.36022294],[-71.627892895,41.360222685],[-71.627817335,41.36022039],[-71.627716495,41.360236512],[-71.627623417,41.360279314],[-71.627557675,41.360314333],[-71.627492616,41.36034201],[-71.627398778,41.360353343],[-71.627305494,41.360352623],[-71.627200519,41.360381533],[-71.627126529,41.360405972],[-71.627035111,41.360444038],[-71.626960705,41.360488581],[-71.626870234,41.360529962],[-71.62677598,41.360561421],[-71.626688364,41.360572656],[-71.626593584,41.360583326],[-71.626512227,41.360597206],[-71.626431038,41.360619709],[-71.626361412,41.36064078],[-71.626292535,41.360656431],[-71.62622115,41.360678168],[-71.626136441,41.360701405],[-71.626057042,41.360723265],[-71.625956396,41.360746086],[-71.625853115,41.360772294],[-71.625765668,41.360792218],[-71.625724862,41.360801531],[-71.625724508,41.360801612],[-71.625526566,41.361378443],[-71.624395958,41.364255445]]],[[[-71.637855977,41.364855383],[-71.637874476,41.364889323],[-71.637969068,41.364888249],[-71.63803752,41.364871563],[-71.638099541,41.364842855],[-71.638170885,41.364815599],[-71.638254312,41.364803172],[-71.638326207,41.364835196],[-71.638395261,41.364873535],[-71.638490864,41.364862579],[-71.638567717,41.364856518],[-71.638647276,41.364866668],[-71.638730606,41.364865561],[-71.638735612,41.364864206],[-71.638802847,41.364846057],[-71.638862154,41.364797591],[-71.63891963,41.364744874],[-71.638979921,41.364687968],[-71.639050476,41.364632445],[-71.639124809,41.364584053],[-71.639209401,41.364534253],[-71.6392705,41.364500605],[-71.639329692,41.364469772],[-71.639389909,41.364421283],[-71.639426743,41.364369207],[-71.639474887,41.364310829],[-71.639513746,41.364240387],[-71.63953752,41.364185446],[-71.63956037,41.364124148],[-71.639579511,41.364060728],[-71.639596694,41.364004331],[-71.639612003,41.363951459],[-71.639626396,41.363896484],[-71.639636087,41.363842886],[-71.639636548,41.363774503],[-71.639630351,41.363715893],[-71.639598917,41.36365226],[-71.639564591,41.363599242],[-71.639563047,41.363544217],[-71.639585923,41.363481502],[-71.639626568,41.363423064],[-71.639636286,41.363368071],[-71.639616055,41.363305179],[-71.639583613,41.363252868],[-71.639539886,41.363204047],[-71.63949523,41.363160853],[-71.639448731,41.363107758],[-71.639445355,41.36304775],[-71.639445779,41.362976508],[-71.63944527,41.362908766],[-71.63941191,41.362852911],[-71.639352975,41.362847059],[-71.639321819,41.362885061],[-71.639321411,41.362949968],[-71.639315369,41.363020508],[-71.639277426,41.363093054],[-71.639210576,41.363148527],[-71.639143876,41.363188517],[-71.63906324,41.363198814],[-71.638967736,41.363198472],[-71.638872267,41.363186123],[-71.638785331,41.363160407],[-71.638731945,41.36313767],[-71.638706878,41.363126997],[-71.638651975,41.363075993],[-71.638608362,41.363008806],[-71.638581668,41.362932496],[-71.638572818,41.362853467],[-71.63856295,41.362780773],[-71.638548342,41.362720733],[-71.638529926,41.36266845],[-71.638551798,41.362618429],[-71.638620364,41.362584795],[-71.638720805,41.362552015],[-71.638730697,41.362549968],[-71.638797695,41.362536027],[-71.63887271,41.362523632],[-71.638970156,41.362509861],[-71.639057432,41.362481213],[-71.639140929,41.362460346],[-71.639216737,41.362464165],[-71.639299045,41.362483505],[-71.639363377,41.362528917],[-71.639412671,41.362583404],[-71.639433099,41.362610983],[-71.639501735,41.362568224],[-71.639530207,41.362509732],[-71.639535318,41.362444134],[-71.639543148,41.362386307],[-71.639544477,41.362326339],[-71.639569155,41.362268561],[-71.639612555,41.362221441],[-71.639655942,41.362167986],[-71.639694732,41.362108864],[-71.639695072,41.362054523],[-71.639672026,41.361995202],[-71.639635867,41.361936492],[-71.639589399,41.361883397],[-71.639553194,41.361831045],[-71.639567678,41.361761958],[-71.639604516,41.361712719],[-71.639670237,41.361684028],[-71.639739762,41.361645476],[-71.639801817,41.361606177],[-71.639848058,41.36155345],[-71.639882099,41.361502019],[-71.639914279,41.361446405],[-71.639938976,41.361383709],[-71.639918599,41.361351875],[-71.639849438,41.361333297],[-71.639756794,41.361320259],[-71.639662267,41.361307246],[-71.639563095,41.361293461],[-71.639456383,41.361288856],[-71.639384287,41.361288601],[-71.63929343,41.361288276],[-71.639217501,41.361298591],[-71.639148909,41.361332934],[-71.639084046,41.361379257],[-71.639027557,41.361424197],[-71.638979511,41.361470614],[-71.638972838,41.361487523],[-71.63892848,41.361540979],[-71.638861814,41.361567567],[-71.638797897,41.361602636],[-71.638728751,41.361633846],[-71.638648799,41.361636641],[-71.638592613,41.361638584],[-71.638507467,41.361625559],[-71.63842228,41.361622436],[-71.638339864,41.361622833],[-71.638277942,41.361639557],[-71.638256047,41.3616931],[-71.638266942,41.361748868],[-71.638339714,41.361795688],[-71.638423735,41.361836205],[-71.638469407,41.361872377],[-71.638462438,41.361935851],[-71.63846208,41.361995818],[-71.638461689,41.362055053],[-71.638458488,41.362119987],[-71.638439387,41.362174236],[-71.638390402,41.362222048],[-71.638315284,41.362257771],[-71.638262553,41.362299893],[-71.638222786,41.362371731],[-71.638196077,41.362445704],[-71.638174047,41.36252182],[-71.638155921,41.362577532],[-71.638136826,41.362634594],[-71.638098912,41.362707162],[-71.638045155,41.362766896],[-71.638005522,41.362816138],[-71.63799793,41.362829526],[-71.63796859,41.362879533],[-71.6379168,41.362922363],[-71.637864129,41.362964531],[-71.637818872,41.363010235],[-71.637758602,41.363062246],[-71.637699204,41.363124822],[-71.637661312,41.363193799],[-71.637619637,41.363268452],[-71.637591212,41.363320563],[-71.637568379,41.363376234],[-71.637537023,41.36344948],[-71.637488902,41.363505044],[-71.637429523,41.36356268],[-71.637379455,41.363630254],[-71.637337966,41.36367808],[-71.63729274,41.363724492],[-71.63725028,41.363772342],[-71.637213438,41.36382158],[-71.637184098,41.363872251],[-71.637148036,41.363945525],[-71.637126942,41.364020222],[-71.637126569,41.364087965],[-71.637126181,41.36414935],[-71.63712579,41.364208608],[-71.637125384,41.364275619],[-71.637132397,41.364348339],[-71.637173276,41.364399978],[-71.637245155,41.364439755],[-71.637326512,41.364453472],[-71.637411024,41.364422702],[-71.637448774,41.364372776],[-71.637458497,41.364319156],[-71.637458932,41.364251413],[-71.637459271,41.364196409],[-71.637517615,41.364151445],[-71.637574999,41.364112153],[-71.637651976,41.364079242],[-71.637742765,41.364088739],[-71.637806231,41.364126353],[-71.637872376,41.364182353],[-71.637948862,41.364232713],[-71.638025342,41.364280238],[-71.638094258,41.364339756],[-71.638136098,41.364386499],[-71.638182644,41.364433213],[-71.638232924,41.364479992],[-71.638277582,41.364523895],[-71.63831008,41.36457408],[-71.638290887,41.36464244],[-71.638255931,41.364693117],[-71.638193875,41.364733832],[-71.6381356,41.364768185],[-71.638090684,41.36476028],[-71.638067662,41.364697391],[-71.638033245,41.364658461],[-71.63796846,41.364686441],[-71.637912937,41.364730007],[-71.637861053,41.364786262],[-71.637855977,41.364855383]]],[[[-71.624171595,41.365033349],[-71.624240966,41.365013256],[-71.624272079,41.36499712],[-71.62430323,41.364980964],[-71.624376245,41.364951863],[-71.624449197,41.364920726],[-71.624522311,41.364895626],[-71.624602829,41.36488447],[-71.624682572,41.364912788],[-71.62476026,41.364929766],[-71.624821906,41.3649082],[-71.624810581,41.364844152],[-71.624789516,41.364782219],[-71.624758904,41.364728415],[-71.624686979,41.364692609],[-71.624611569,41.364660192],[-71.624527328,41.364629248],[-71.624444913,41.364600291],[-71.62441786,41.364589178],[-71.624374063,41.364571185],[-71.62432641,41.364556891],[-71.624250566,41.364774444],[-71.624171595,41.365033349]]],[[[-71.624097566,41.365299444],[-71.623998566,41.365514444],[-71.623997233,41.365518444],[-71.624045274,41.365503283],[-71.624054796,41.365500278],[-71.62409444,41.365450218],[-71.624129033,41.36540179],[-71.624132603,41.365339964],[-71.62409949,41.365301527],[-71.624097598,41.36529933],[-71.624097566,41.365299444]]],[[[-71.633270501,41.365691258],[-71.633334613,41.365733837],[-71.633413287,41.365756205],[-71.633446839,41.365818603],[-71.633482741,41.365872307],[-71.633518538,41.365919287],[-71.633581606,41.365955875],[-71.633661405,41.365949425],[-71.63371998,41.365911803],[-71.633777409,41.365862816],[-71.633787323,41.365797121],[-71.633784171,41.365740268],[-71.633771146,41.365680248],[-71.633748377,41.36562104],[-71.633710557,41.365564663],[-71.633695703,41.365501306],[-71.633673618,41.36543471],[-71.633651896,41.365382178],[-71.633627236,41.365318261],[-71.633604599,41.365263741],[-71.633556021,41.365202162],[-71.633520193,41.365154472],[-71.633478719,41.365092885],[-71.633439271,41.365041883],[-71.633373501,41.365004658],[-71.633292839,41.364974334],[-71.633227036,41.364935759],[-71.633195437,41.364878047],[-71.633190428,41.364818544],[-71.633181638,41.364751086],[-71.633198885,41.364693295],[-71.633252597,41.364638344],[-71.633292849,41.364577576],[-71.633307976,41.36450778],[-71.633314666,41.364453478],[-71.633326572,41.364397134],[-71.633334009,41.364337457],[-71.633349531,41.364282366],[-71.633359742,41.364228037],[-71.633364243,41.364157728],[-71.6333794,41.36408791],[-71.633383388,41.364033656],[-71.633377497,41.363973513],[-71.633397452,41.363919059],[-71.633442301,41.363864918],[-71.633480147,41.363815542],[-71.633478722,41.363757361],[-71.633424155,41.363705234],[-71.633349457,41.363666121],[-71.6332831,41.363638295],[-71.633201443,41.363640128],[-71.633158189,41.363687566],[-71.633106388,41.363711686],[-71.63303562,41.363724049],[-71.632947973,41.363735974],[-71.632859241,41.36373722],[-71.632780392,41.363746345],[-71.632752222,41.363762273],[-71.632717321,41.363782004],[-71.632678928,41.363846109],[-71.632650311,41.363910728],[-71.632604866,41.36394081],[-71.632582048,41.363916364],[-71.632576091,41.363852906],[-71.632512793,41.363806277],[-71.632486221,41.363786685],[-71.632460317,41.363767526],[-71.632405269,41.363732163],[-71.63234481,41.363693536],[-71.632285032,41.363646171],[-71.632226068,41.363596175],[-71.632169643,41.363540733],[-71.632116869,41.363489289],[-71.632066834,41.363441136],[-71.632009696,41.363393082],[-71.63194376,41.363347874],[-71.631871666,41.363304708],[-71.631799641,41.363265568],[-71.631742396,41.363239881],[-71.631728723,41.363233745],[-71.631656117,41.363207321],[-71.631579244,41.363187672],[-71.6314952,41.36316476],[-71.631459937,41.363155469],[-71.63141298,41.363143173],[-71.631335458,41.363132878],[-71.631260938,41.36313589],[-71.631173192,41.363143835],[-71.63109137,41.36313892],[-71.631011854,41.36311861],[-71.630944723,41.363097462],[-71.630897427,41.363051958],[-71.630857566,41.363020419],[-71.63078021,41.363017488],[-71.630687864,41.36301741],[-71.630617065,41.363029109],[-71.630536233,41.363063689],[-71.630474855,41.363096006],[-71.630415268,41.363128275],[-71.630425475,41.363146857],[-71.630499312,41.363151188],[-71.630577746,41.363162122],[-71.630646966,41.363195961],[-71.630647409,41.363250163],[-71.630691551,41.363312435],[-71.630738915,41.363361302],[-71.630799275,41.363396568],[-71.63085882,41.363434557],[-71.630893855,41.363450801],[-71.630962964,41.363443815],[-71.631003156,41.363488756],[-71.631060676,41.363516043],[-71.631134867,41.363499652],[-71.631201453,41.363536169],[-71.631254906,41.363578899],[-71.631298749,41.363627815],[-71.631332005,41.363680219],[-71.631360113,41.363739376],[-71.631393621,41.36376637],[-71.631421387,41.36377599],[-71.631413979,41.363835668],[-71.631389887,41.363902203],[-71.631341254,41.363947039],[-71.631269174,41.363941357],[-71.631190972,41.363940463],[-71.631143382,41.36399129],[-71.63110192,41.364039365],[-71.631100883,41.364052265],[-71.631097152,41.364099017],[-71.631114638,41.364159627],[-71.631146166,41.364213405],[-71.631178606,41.3642678],[-71.631201825,41.364310976],[-71.631248705,41.364375257],[-71.631289944,41.364427515],[-71.631331181,41.364478446],[-71.631384087,41.364535265],[-71.631429657,41.36458212],[-71.631462915,41.364620047],[-71.631472591,41.364631037],[-71.63151992,41.364677227],[-71.631574288,41.364721305],[-71.631632109,41.364761285],[-71.631694196,41.364793896],[-71.631745659,41.364827457],[-71.631765509,41.364840402],[-71.631821936,41.364896507],[-71.631850893,41.364954313],[-71.631867434,41.365012934],[-71.631897954,41.365062711],[-71.631956987,41.365116778],[-71.632016402,41.365148706],[-71.632083019,41.365184605],[-71.632140807,41.365223235],[-71.632178463,41.365274262],[-71.632223222,41.36532448],[-71.632264362,41.365372072],[-71.632310947,41.365424964],[-71.632373432,41.365473583],[-71.632442985,41.365520113],[-71.632510784,41.36556939],[-71.632576788,41.365617296],[-71.632647092,41.365659136],[-71.632722442,41.365689513],[-71.632802188,41.365717163],[-71.632879364,41.365749573],[-71.632949404,41.365781373],[-71.633024422,41.365797731],[-71.633076326,41.365778276],[-71.633076593,41.365716023],[-71.633113459,41.365661983],[-71.633201276,41.365657421],[-71.633270501,41.365691258]]],[[[-71.630744989,41.365743853],[-71.630817964,41.365786332],[-71.63087849,41.365827613],[-71.630951397,41.365866113],[-71.631025087,41.365901867],[-71.63109405,41.365926328],[-71.631156005,41.365953565],[-71.631163518,41.366006342],[-71.631246288,41.366012537],[-71.631321559,41.366004149],[-71.631409144,41.365989503],[-71.631465694,41.365970753],[-71.631484898,41.365964396],[-71.63154374,41.365938165],[-71.631558329,41.365916536],[-71.63164432,41.365909302],[-71.631714366,41.365868855],[-71.631747691,41.365819554],[-71.631756378,41.365806714],[-71.631816584,41.36576438],[-71.631866195,41.365722219],[-71.63190401,41.365671494],[-71.631858304,41.365617915],[-71.631805795,41.365577884],[-71.631747083,41.365533285],[-71.631692724,41.365494444],[-71.631636825,41.365459105],[-71.631559519,41.365422028],[-71.631503721,41.36539204],[-71.631486433,41.365339412],[-71.63146434,41.365313136],[-71.631442521,41.365287203],[-71.631401897,41.365224173],[-71.631356128,41.365169267],[-71.631302805,41.365131889],[-71.631280898,41.36510742],[-71.631284402,41.365068605],[-71.631207165,41.365034867],[-71.631130804,41.364999116],[-71.631055158,41.364956686],[-71.630988057,41.364936202],[-71.630921735,41.364911051],[-71.630844498,41.364877359],[-71.630760451,41.364853738],[-71.63067876,41.364854883],[-71.630606592,41.364881312],[-71.630574803,41.364924596],[-71.630644844,41.364957724],[-71.63071146,41.364993578],[-71.63078518,41.365029355],[-71.630814202,41.365089861],[-71.630838728,41.365149067],[-71.630871885,41.365197447],[-71.630893737,41.36525533],[-71.630866512,41.365303892],[-71.630799884,41.365338274],[-71.630760793,41.365373607],[-71.630774717,41.36539884],[-71.630849338,41.365399167],[-71.630936244,41.365394586],[-71.631017882,41.365427609],[-71.631085512,41.365468791],[-71.631146786,41.365504742],[-71.631218669,41.365502396],[-71.631245621,41.365514738],[-71.631207543,41.365555399],[-71.631154345,41.365595621],[-71.631145794,41.365645946],[-71.63119915,41.365684673],[-71.631271132,41.365685689],[-71.63131493,41.365696434],[-71.631318397,41.365729821],[-71.631230778,41.365742431],[-71.631143577,41.365736287],[-71.631062466,41.365724052],[-71.630991069,41.365711646],[-71.630975813,41.365703841],[-71.631025396,41.365662344],[-71.631004104,41.365626484],[-71.630927972,41.365599469],[-71.63084019,41.365606018],[-71.630781554,41.365568692],[-71.630736929,41.365523848],[-71.630681483,41.365472429],[-71.630633406,41.365431591],[-71.630668448,41.365375565],[-71.630679672,41.3653259],[-71.630638545,41.36531442],[-71.630583719,41.365360681],[-71.630510341,41.36537444],[-71.630434676,41.365368122],[-71.630362779,41.365332983],[-71.630296295,41.365302504],[-71.630230723,41.365272617],[-71.630175607,41.365233891],[-71.630144991,41.365180798],[-71.630067948,41.365153097],[-71.630005928,41.365123184],[-71.629963944,41.365077605],[-71.62991668,41.365033427],[-71.629864722,41.364979945],[-71.629851448,41.364945357],[-71.629927531,41.364933585],[-71.629999411,41.36492989],[-71.630046353,41.364888418],[-71.63009049,41.364840981],[-71.630163109,41.364797147],[-71.630237135,41.36477337],[-71.630276292,41.364740712],[-71.630265393,41.364694709],[-71.630184086,41.364675087],[-71.630112555,41.364655362],[-71.63003936,41.364638955],[-71.62996705,41.364624582],[-71.629897345,41.364607485],[-71.629852653,41.364559256],[-71.629809657,41.364508372],[-71.629738347,41.364462506],[-71.629681537,41.36442648],[-71.629616351,41.364376536],[-71.629582053,41.36431814],[-71.629584866,41.364251858],[-71.629603028,41.364194753],[-71.629634036,41.364155495],[-71.629623205,41.364112831],[-71.629572488,41.364072041],[-71.629560347,41.364011997],[-71.629521882,41.363965064],[-71.629458553,41.363917062],[-71.629384637,41.363873256],[-71.629332775,41.363821124],[-71.629325,41.363758353],[-71.629280309,41.363709461],[-71.629242492,41.363652441],[-71.629234587,41.363584959],[-71.629249881,41.363520516],[-71.629271465,41.363459359],[-71.629257674,41.363439477],[-71.629170676,41.363441999],[-71.629093998,41.363429026],[-71.629020622,41.363442762],[-71.628936853,41.363466687],[-71.62884683,41.363490001],[-71.628753055,41.36350472],[-71.628661853,41.36351532],[-71.628592327,41.363542385],[-71.628552071,41.363602511],[-71.628563565,41.363673922],[-71.628617445,41.363733417],[-71.628588032,41.363765926],[-71.628623188,41.363859793],[-71.628674344,41.363954054],[-71.62870798,41.363985051],[-71.628742278,41.364043447],[-71.628775531,41.364095852],[-71.628815042,41.364150171],[-71.628859929,41.364205765],[-71.628922014,41.364238331],[-71.628948712,41.364276129],[-71.628977799,41.364339928],[-71.62898551,41.364401396],[-71.629011791,41.364458542],[-71.62908229,41.364509099],[-71.629123558,41.364561403],[-71.629170754,41.36460222],[-71.629205154,41.364665967],[-71.629205661,41.364722822],[-71.629208226,41.364791705],[-71.629240501,41.364840109],[-71.629275314,41.364882449],[-71.629277482,41.364934637],[-71.629362176,41.364948173],[-71.629443615,41.364973079],[-71.629514236,41.364992851],[-71.629581665,41.365025365],[-71.629646492,41.365062617],[-71.629697371,41.365108072],[-71.62974392,41.365158952],[-71.629799232,41.365205019],[-71.629865038,41.365245586],[-71.629920316,41.365289664],[-71.629977356,41.365333694],[-71.630051795,41.365364759],[-71.630134179,41.365391699],[-71.630209595,41.365425439],[-71.630269141,41.365462765],[-71.630312854,41.36550697],[-71.630374093,41.365540932],[-71.630446901,41.36557607],[-71.630516294,41.365618599],[-71.630587508,41.365661057],[-71.630664,41.365701474],[-71.630744989,41.365743853]]],[[[-71.65046451,41.370406587],[-71.650541206,41.370422358],[-71.650607513,41.370448733],[-71.650649679,41.370446756],[-71.650629423,41.370391619],[-71.650582886,41.370341388],[-71.65059631,41.370290621],[-71.65065837,41.370252758],[-71.650740797,41.370252307],[-71.650831617,41.370257562],[-71.650908293,41.370277565],[-71.650988704,41.37029834],[-71.651063527,41.370317636],[-71.651140267,41.370326386],[-71.651214221,41.370337907],[-71.651288121,41.370352287],[-71.651366714,41.370361035],[-71.651460335,41.370369808],[-71.651532401,41.370378495],[-71.651623243,41.370380228],[-71.651696321,41.370380475],[-71.651768511,41.370364508],[-71.651801606,41.370313143],[-71.651781342,41.370255193],[-71.651706612,41.370223204],[-71.651623446,41.370193262],[-71.651559995,41.370154946],[-71.651488013,41.370129289],[-71.651405592,41.370132553],[-71.651332652,41.370113255],[-71.6512672,41.37008903],[-71.651200911,41.370057052],[-71.65118347,41.369998458],[-71.651126644,41.369949544],[-71.65105563,41.36992249],[-71.650989272,41.369900393],[-71.65091546,41.369871216],[-71.650851961,41.369837862],[-71.650791348,41.369792452],[-71.650742963,41.369743596],[-71.650716162,41.36968076],[-71.65069503,41.369614326],[-71.650691624,41.369559281],[-71.650634749,41.369515353],[-71.650563443,41.369532736],[-71.650493284,41.369520501],[-71.650452266,41.369493544],[-71.650452587,41.369435018],[-71.650445445,41.369379246],[-71.650427041,41.36932413],[-71.650406877,41.369255636],[-71.650397851,41.369199135],[-71.65037853,41.369141229],[-71.650351731,41.369079034],[-71.650350235,41.369022614],[-71.650350632,41.368957661],[-71.650350062,41.368894883],[-71.650348534,41.368837731],[-71.650370444,41.368780664],[-71.650425066,41.368730049],[-71.650473169,41.368670225],[-71.650514685,41.368623812],[-71.650554319,41.368577379],[-71.650598693,41.368519665],[-71.650643982,41.368464099],[-71.650671462,41.368413404],[-71.650698025,41.368359853],[-71.650716962,41.368317609],[-71.650707045,41.368256169],[-71.650653909,41.368213677],[-71.650588591,41.368180966],[-71.650514713,41.368161668],[-71.650423955,41.368142301],[-71.650356708,41.368115288],[-71.650287503,41.368095298],[-71.65021651,41.368063257],[-71.650145427,41.368044665],[-71.65007324,41.368061363],[-71.650054448,41.368074721],[-71.650008235,41.368124639],[-71.649949873,41.368172423],[-71.64989527,41.368218075],[-71.649854603,41.368277202],[-71.649809321,41.368336359],[-71.649776179,41.368394081],[-71.649741206,41.368447552],[-71.649725876,41.368501135],[-71.649725502,41.368563229],[-71.649725101,41.368626718],[-71.649735006,41.368695911],[-71.649758886,41.368770049],[-71.649781872,41.368837876],[-71.64980122,41.368894386],[-71.649805542,41.368952289],[-71.649805243,41.369007293],[-71.649794592,41.36906231],[-71.64976707,41.369121466],[-71.649724597,41.369174924],[-71.649682073,41.36923195],[-71.649639626,41.369283303],[-71.649595313,41.369328301],[-71.649572494,41.369386788],[-71.649572127,41.369451695],[-71.649571769,41.369507454],[-71.649584533,41.369566031],[-71.649612284,41.369619764],[-71.649639999,41.369684771],[-71.649643314,41.369753196],[-71.649645712,41.36981954],[-71.64965192,41.369878835],[-71.649651494,41.369944451],[-71.649631494,41.370000807],[-71.649593633,41.370066288],[-71.64957922,41.370122729],[-71.649578889,41.370177024],[-71.649587968,41.370230712],[-71.649632564,41.370282364],[-71.649688451,41.370332629],[-71.649744407,41.370373037],[-71.649816385,41.370396592],[-71.649894046,41.370409572],[-71.649976483,41.370413353],[-71.650061705,41.370413653],[-71.650136635,41.370413922],[-71.650220913,41.370412828],[-71.650296784,41.370413072],[-71.650384874,41.370406302],[-71.65046451,41.370406587]]],[[[-71.650680123,41.370522326],[-71.650689175,41.370576701],[-71.650704012,41.370599323],[-71.650735707,41.370624873],[-71.650814262,41.370643433],[-71.650887318,41.370647225],[-71.650925834,41.370629015],[-71.650920432,41.370590875],[-71.650849443,41.370561739],[-71.650780347,41.370524093],[-71.650719694,41.370487923],[-71.650680123,41.370522326]]],[[[-71.651696365,41.371144646],[-71.651684748,41.371201724],[-71.651698562,41.371240608],[-71.651782735,41.371259205],[-71.65179341,41.371202106],[-71.651796556,41.371144972],[-71.651768599,41.37112088],[-71.651696365,41.371144646]]],[[[-71.646056782,41.371310595],[-71.646119358,41.371339012],[-71.646179321,41.371339233],[-71.646178465,41.371323019],[-71.646255395,41.371307758],[-71.646327504,41.371308696],[-71.646362241,41.371296828],[-71.646351341,41.371242478],[-71.646278463,41.371209775],[-71.646206424,41.371199643],[-71.646126788,41.371199355],[-71.646085469,41.371214022],[-71.646043063,41.37125833],[-71.646056782,41.371310595]]],[[[-71.646506019,41.37288907],[-71.646417008,41.372893003],[-71.646349466,41.37291182],[-71.646311036,41.37291523],[-71.64627071,41.372926374],[-71.646304171,41.372968093],[-71.646378143,41.372973305],[-71.646461478,41.372970065],[-71.646533727,41.372951288],[-71.646607834,41.372935299],[-71.646629495,41.37291423],[-71.646595008,41.372888682],[-71.646506019,41.37288907]]],[[[-71.645063998,41.375703461],[-71.645053273,41.375769022],[-71.645052847,41.375836742],[-71.645058102,41.375892516],[-71.645068226,41.375925711],[-71.645092355,41.375962479],[-71.645152607,41.3759133],[-71.645190363,41.375865453],[-71.645178592,41.375801225],[-71.645144298,41.37574041],[-71.645090248,41.375697207],[-71.645063998,41.375703461]]],[[[-71.641586574,41.402466451],[-71.642036574,41.40247445],[-71.643150574,41.40253545],[-71.643578574,41.402531451],[-71.644356575,41.40249345],[-71.644630575,41.40245945],[-71.644936575,41.40238645],[-71.645180574,41.402314451],[-71.645523575,41.402157451],[-71.645905575,41.40195145],[-71.646126575,41.40181445],[-71.646309575,41.40174545],[-71.646667575,41.401673451],[-71.646851575,41.40161945],[-71.647034575,41.40152845],[-71.647469575,41.40128745],[-71.647949576,41.40105945],[-71.648338576,41.40089545],[-71.648819576,41.40085345],[-71.649147576,41.40085345],[-71.649376576,41.40084145],[-71.649742576,41.40075345],[-71.650009576,41.40066645],[-71.650223576,41.40062845],[-71.650497576,41.400601449],[-71.650742576,41.40058945],[-71.651001576,41.40054045],[-71.651192576,41.40047945],[-71.651272576,41.40045645],[-71.651932576,41.39975645],[-71.654187578,41.397350449],[-71.654037577,41.396480449],[-71.652461576,41.394315449],[-71.652423576,41.394169448],[-71.652507577,41.394103449],[-71.654729577,41.392379448],[-71.658371578,41.391681448],[-71.658404578,41.391732448],[-71.658702578,41.391852448],[-71.658942579,41.391889448],[-71.659195579,41.391931448],[-71.659608579,41.391931448],[-71.659697579,41.391928448],[-71.659962579,41.391696448],[-71.660095579,41.391640448],[-71.660355579,41.391651447],[-71.660424579,41.391611447],[-71.660458579,41.391478448],[-71.660458579,41.391243447],[-71.660542579,41.391173448],[-71.660633579,41.391096448],[-71.660609579,41.391168448],[-71.660613579,41.391235448],[-71.660731579,41.391352448],[-71.660782579,41.391371448],[-71.660803579,41.391349448],[-71.660790579,41.391289448],[-71.660741579,41.391150448],[-71.660741579,41.391092448],[-71.660802579,41.391044448],[-71.660895579,41.391008447],[-71.660969579,41.391004448],[-71.661039579,41.391050447],[-71.661088579,41.391101448],[-71.661127579,41.391155448],[-71.661162579,41.391225447],[-71.661181579,41.391281447],[-71.661241579,41.391423448],[-71.66124558,41.391493448],[-71.661321579,41.391507448],[-71.661398579,41.391532448],[-71.661494579,41.391526448],[-71.661592579,41.391526448],[-71.661667579,41.391541448],[-71.66173258,41.391586448],[-71.66178958,41.391639448],[-71.661840579,41.391698448],[-71.66187158,41.391761448],[-71.661896579,41.391891448],[-71.661902579,41.391948448],[-71.661859579,41.392006448],[-71.661859579,41.392146448],[-71.66186758,41.392220448],[-71.66193058,41.392350448],[-71.66196458,41.392400448],[-71.66202258,41.392458448],[-71.662050579,41.392515448],[-71.66204258,41.392586448],[-71.662017579,41.392658448],[-71.66207958,41.392693448],[-71.66218558,41.392802448],[-71.66223458,41.392841448],[-71.66228958,41.392877448],[-71.66235258,41.392902448],[-71.66239558,41.392883448],[-71.66243258,41.392834448],[-71.66248458,41.392781448],[-71.662559579,41.392752448],[-71.662636579,41.392732448],[-71.66271558,41.392699448],[-71.66277858,41.392708448],[-71.66282458,41.392759448],[-71.66288658,41.392813448],[-71.66294358,41.392851448],[-71.66301758,41.392909448],[-71.66315658,41.393001448],[-71.66320558,41.393067448],[-71.66318258,41.393106448],[-71.66311058,41.393128448],[-71.66310958,41.393172448],[-71.66311958,41.393239448],[-71.66312058,41.393310448],[-71.66315558,41.393312448],[-71.66320958,41.393262448],[-71.66329058,41.393214448],[-71.66338258,41.393175448],[-71.66363858,41.393083448],[-71.66371058,41.393048448],[-71.66377658,41.393008448],[-71.66383458,41.392967448],[-71.66394758,41.392870448],[-71.66402058,41.392860448],[-71.66408958,41.392890448],[-71.66411058,41.392880448],[-71.66412258,41.392819448],[-71.66418258,41.392707448],[-71.66418758,41.392525448],[-71.66420758,41.392458448],[-71.664252581,41.392397448],[-71.664326581,41.392345448],[-71.66437158,41.392292448],[-71.66433258,41.392240448],[-71.66427558,41.392202448],[-71.66421458,41.392134448],[-71.66420458,41.392064448],[-71.66425958,41.392014448],[-71.66433858,41.391985448],[-71.66435858,41.391935448],[-71.66432258,41.391911448],[-71.66425658,41.391879448],[-71.66420358,41.391822448],[-71.66418858,41.391746448],[-71.66415558,41.391696448],[-71.66407758,41.391681448],[-71.66399958,41.391677448],[-71.66392458,41.391664448],[-71.66385558,41.391643448],[-71.66377858,41.391589448],[-71.66373758,41.391539448],[-71.66362958,41.391436447],[-71.66367858,41.391349448],[-71.66361358,41.391306448],[-71.66352658,41.391295448],[-71.66345458,41.391294448],[-71.66337558,41.391284447],[-71.66329258,41.391261447],[-71.663219579,41.391231448],[-71.66319458,41.391216448],[-71.66315458,41.391193448],[-71.66304358,41.391105447],[-71.66299358,41.391038448],[-71.66303758,41.390889447],[-71.66303958,41.390779447],[-71.66303958,41.390743448],[-71.66306958,41.390680447],[-71.66312958,41.390575448],[-71.66324658,41.390414448],[-71.66323058,41.390343447],[-71.66317158,41.390276448],[-71.66316758,41.390209447],[-71.66321558,41.390151447],[-71.66328358,41.390028448],[-71.66335958,41.389986448],[-71.663453579,41.389984448],[-71.66362158,41.390063448],[-71.66370858,41.390066448],[-71.66376058,41.390024448],[-71.66378758,41.389961447],[-71.66378658,41.389896447],[-71.66375658,41.389846447],[-71.66374958,41.389838447],[-71.66366158,41.389746447],[-71.66360258,41.389705447],[-71.66350258,41.389680447],[-71.66340158,41.389698448],[-71.66331958,41.389704447],[-71.66312958,41.389687447],[-71.66305658,41.389709447],[-71.66300058,41.389771448],[-71.66295858,41.389829448],[-71.66292058,41.389953447],[-71.66286158,41.390090447],[-71.66288158,41.390154447],[-71.662928579,41.390207447],[-71.662985579,41.390260448],[-71.66303558,41.390325447],[-71.663024579,41.390374448],[-71.662890579,41.390467447],[-71.662830579,41.390515448],[-71.66276258,41.390536448],[-71.66268058,41.390523447],[-71.662617579,41.390493448],[-71.662561579,41.390451448],[-71.662520579,41.390399448],[-71.66251258,41.390387447],[-71.66247358,41.390323448],[-71.66247758,41.390287447],[-71.662479579,41.390264448],[-71.66251658,41.390216447],[-71.66248658,41.390001447],[-71.662463579,41.389947448],[-71.66243458,41.389912448],[-71.66241858,41.389892448],[-71.66236058,41.389844447],[-71.662289579,41.389802447],[-71.662208579,41.389765447],[-71.662129579,41.389740447],[-71.66206158,41.389711447],[-71.662017579,41.389667447],[-71.661994579,41.389596448],[-71.661941579,41.389540448],[-71.66175458,41.389444448],[-71.661659579,41.389406448],[-71.661567579,41.389409447],[-71.66150158,41.389431447],[-71.661427579,41.389475447],[-71.661335579,41.389530447],[-71.660802579,41.388456447],[-71.660025578,41.386828447],[-71.659802579,41.386378447],[-71.659695578,41.386151446],[-71.659610579,41.385917446],[-71.660343579,41.385757447],[-71.659974579,41.385267447],[-71.659686579,41.385327447],[-71.659634578,41.385193447],[-71.659591579,41.385052447],[-71.659500578,41.385067447],[-71.658951578,41.385128447],[-71.659225578,41.385060446],[-71.659760579,41.384938447],[-71.659818579,41.384924446],[-71.659784579,41.384734446],[-71.660079579,41.384655446],[-71.660443579,41.384550447],[-71.660757579,41.384456446],[-71.661257579,41.384293447],[-71.661331579,41.384266446],[-71.661524579,41.384193446],[-71.661705579,41.384125446],[-71.662094579,41.383965447],[-71.662529579,41.383774446],[-71.66304058,41.383522446],[-71.66352158,41.383259446],[-71.66400958,41.382962446],[-71.664352579,41.382740446],[-71.66472658,41.382473446],[-71.66532158,41.382004446],[-71.66571858,41.381680446],[-71.66610758,41.381306446],[-71.666611581,41.380761446],[-71.666748581,41.380616445],[-71.66698558,41.380333446],[-71.66708458,41.380200446],[-71.667305581,41.379887446],[-71.667717581,41.379189445],[-71.667946581,41.378762445],[-71.668449581,41.377709445],[-71.668572203,41.37745724],[-71.66662158,41.374326444],[-71.66584458,41.374768444],[-71.665716579,41.374654444],[-71.66465758,41.375315444],[-71.66426658,41.375563444],[-71.66409358,41.375683444],[-71.663811579,41.375908445],[-71.663521579,41.376145445],[-71.663513579,41.376114445],[-71.663513579,41.376084445],[-71.663506579,41.376057445],[-71.663467579,41.375969445],[-71.663399579,41.375878444],[-71.663368579,41.375851445],[-71.663345579,41.375821445],[-71.662964579,41.375489444],[-71.662270579,41.374844444],[-71.661362579,41.373974444],[-71.660469578,41.373131444],[-71.659676578,41.372368444],[-71.659584578,41.372284444],[-71.659500578,41.372200444],[-71.659332578,41.372048444],[-71.659195578,41.371952444],[-71.659096578,41.371907444],[-71.659042578,41.371891444],[-71.658989577,41.371880444],[-71.658821577,41.371739444],[-71.657913577,41.371022444],[-71.657669577,41.370789444],[-71.657257577,41.370335443],[-71.656685577,41.369748444],[-71.655807577,41.369007444],[-71.655403576,41.368573444],[-71.655304576,41.368492443],[-71.655273576,41.368447443],[-71.655228576,41.368409443],[-71.655190576,41.368367443],[-71.655075576,41.368267443],[-71.654945576,41.368145444],[-71.654877576,41.368073443],[-71.654785576,41.367962443],[-71.654755576,41.367920443],[-71.653577576,41.366699443],[-71.654451656,41.366256058],[-71.654706974,41.366126545],[-71.655882664,41.365530166],[-71.656619576,41.365147442],[-71.656426907,41.364837137],[-71.656060613,41.364247199],[-71.655692834,41.363654868],[-71.655008253,41.362552312],[-71.654981088,41.362598185],[-71.654958139,41.362675038],[-71.654952198,41.362730027],[-71.654946096,41.362806926],[-71.654919506,41.362871731],[-71.654903108,41.362946471],[-71.654899027,41.363005002],[-71.654892125,41.363064269],[-71.654877613,41.363140447],[-71.654867867,41.36320388],[-71.654862796,41.363267375],[-71.654862408,41.363334409],[-71.654862013,41.363397899],[-71.654865379,41.363460696],[-71.654885664,41.363514392],[-71.654934225,41.363535711],[-71.654987554,41.363545061],[-71.654998443,41.363605082],[-71.654989637,41.363667873],[-71.654950011,41.363714971],[-71.654900089,41.363759979],[-71.654863246,41.363815558],[-71.654836716,41.363867693],[-71.65478485,41.363925373],[-71.654707824,41.363959691],[-71.654621689,41.363955141],[-71.654547829,41.363942204],[-71.65451012,41.363926886],[-71.654465603,41.363908764],[-71.654412452,41.363871899],[-71.654349875,41.363842046],[-71.654274968,41.363835445],[-71.65418317,41.363836529],[-71.654092302,41.363845387],[-71.654010676,41.36387333],[-71.653943928,41.363915432],[-71.653883706,41.363956885],[-71.653828218,41.3639976],[-71.653781119,41.36404329],[-71.653732122,41.364094654],[-71.653688647,41.364157995],[-71.653635773,41.364226219],[-71.653576415,41.3642867],[-71.65351435,41.364332386],[-71.653443775,41.364386455],[-71.65337047,41.364429229],[-71.653299103,41.364456517],[-71.653239894,41.36449017],[-71.653192847,41.364532337],[-71.653175618,41.364590154],[-71.653160253,41.364652862],[-71.653158005,41.364717063],[-71.653157607,41.364780575],[-71.653164705,41.364842704],[-71.653183067,41.364905551],[-71.653205146,41.364974042],[-71.653248878,41.365020067],[-71.653324565,41.365047846],[-71.653374243,41.365040278],[-71.653421416,41.364987522],[-71.653472224,41.364943931],[-71.653538929,41.364908873],[-71.653621354,41.36491057],[-71.653702749,41.36492567],[-71.653756818,41.364965393],[-71.653818391,41.365007209],[-71.653881747,41.365058217],[-71.653919821,41.365111981],[-71.653964426,41.365167176],[-71.653990312,41.365227931],[-71.653991735,41.365303425],[-71.653991275,41.365378921],[-71.653996453,41.365450224],[-71.65401759,41.365518007],[-71.654050898,41.365584493],[-71.654087965,41.365648801],[-71.654110067,41.365713769],[-71.654109675,41.365779385],[-71.654109257,41.365846419],[-71.654076125,41.365906247],[-71.654023288,41.365964637],[-71.653959385,41.366003946],[-71.65388805,41.366032606],[-71.653808292,41.366055629],[-71.653717388,41.366063778],[-71.653631248,41.366057833],[-71.653552704,41.366042042],[-71.653474127,41.366024857],[-71.653391637,41.366035167],[-71.653310002,41.366060274],[-71.653238571,41.366100255],[-71.653178387,41.366145916],[-71.653106039,41.366183062],[-71.653026411,41.36618422],[-71.652948623,41.366193106],[-71.652875404,41.36622106],[-71.652805906,41.366256807],[-71.652722366,41.366285483],[-71.652622062,41.366298515],[-71.652522762,41.366299585],[-71.652431933,41.366301397],[-71.652355153,41.366299715],[-71.652277472,41.366289572],[-71.652223416,41.366242805],[-71.652211421,41.366215239],[-71.652136431,41.36622627],[-71.652058582,41.366247894],[-71.651993751,41.366280136],[-71.651940072,41.366330018],[-71.651918127,41.366396989],[-71.651909288,41.366460444],[-71.65188824,41.366534458],[-71.651863496,41.36659926],[-71.65183224,41.366657049],[-71.651792644,41.366705586],[-71.651738997,41.366743485],[-71.65166855,41.366776443],[-71.65158226,41.366797986],[-71.65149228,41.36681249],[-71.651408943,41.366811502],[-71.651330274,41.366806986],[-71.651244115,41.366806687],[-71.651156963,41.366809935],[-71.651072631,41.366825163],[-71.650995625,41.366857329],[-71.650919531,41.366890248],[-71.650844475,41.366912576],[-71.650752678,41.366915761],[-71.650676841,41.366915517],[-71.650597209,41.366915256],[-71.650523225,41.366915009],[-71.650421127,41.36691464],[-71.65031815,41.366914271],[-71.650245076,41.366914024],[-71.650161739,41.366913035],[-71.650066199,41.366912679],[-71.649970659,41.366912346],[-71.649882649,41.366912049],[-71.649801165,41.366911766],[-71.649720623,41.366911482],[-71.649642877,41.366912658],[-71.649537964,41.366915814],[-71.649440528,41.36692255],[-71.649347743,41.36693207],[-71.649258621,41.366950116],[-71.649163011,41.366972379],[-71.649091752,41.366982717],[-71.649001716,41.366999346],[-71.648929341,41.367039303],[-71.648899962,41.367096334],[-71.6488999,41.367109028],[-71.648903253,41.367168304],[-71.648937792,41.367191015],[-71.64902409,41.367172264],[-71.64910291,41.367149246],[-71.649197595,41.367134051],[-71.649283744,41.36713012],[-71.649373733,41.36711914],[-71.649462743,41.367118041],[-71.649547019,41.36711832],[-71.64962949,41.367112267],[-71.649715686,41.367102],[-71.649800885,41.367107218],[-71.649820271,41.367154557],[-71.649803913,41.367222939],[-71.649771715,41.367281392],[-71.649732993,41.367341249],[-71.64967458,41.367393241],[-71.649616245,41.367439606],[-71.649571842,41.36749803],[-71.649543381,41.367557896],[-71.649539273,41.367619949],[-71.649540754,41.367683458],[-71.649583474,41.367738635],[-71.649640345,41.367781878],[-71.649690687,41.367824374],[-71.649745699,41.367864783],[-71.649799746,41.367908007],[-71.649856686,41.367941369],[-71.64993994,41.367958597],[-71.650028024,41.367950432],[-71.65011344,41.36791757],[-71.650172693,41.367874747],[-71.650220833,41.367817783],[-71.650254936,41.367755782],[-71.650276885,41.36768952],[-71.65030635,41.367617669],[-71.65032923,41.367547198],[-71.650354001,41.367480246],[-71.650367516,41.367416786],[-71.650387494,41.367364638],[-71.6504412,41.367312629],[-71.650507981,41.36726911],[-71.65059813,41.367222154],[-71.650661083,41.367191333],[-71.650737213,41.367147139],[-71.650796451,41.367111361],[-71.650869647,41.367085513],[-71.650958609,41.367090062],[-71.651028616,41.367129078],[-71.651087361,41.367168819],[-71.65116961,41.367198054],[-71.651253892,41.367200436],[-71.651321525,41.367171759],[-71.651376051,41.367133104],[-71.651436178,41.367100869],[-71.651528852,41.367108981],[-71.651606602,41.367109221],[-71.651688085,41.367109526],[-71.651762089,41.367104808],[-71.651835073,41.36711848],[-71.651926718,41.367140681],[-71.652005294,41.367157158],[-71.652084812,41.367173657],[-71.652167094,41.367190884],[-71.652239091,41.367210892],[-71.652327963,41.367228865],[-71.652412119,41.367255261],[-71.652478427,41.367283006],[-71.65255036,41.367314266],[-71.652620435,41.367343447],[-71.652696056,41.367381083],[-71.652743545,41.367422896],[-71.652773181,41.367477312],[-71.652801835,41.36754019],[-71.652804289,41.367603012],[-71.65278704,41.367665746],[-71.652753059,41.367713613],[-71.652721777,41.367773461],[-71.652721406,41.367835555],[-71.652721034,41.367896917],[-71.652711238,41.367966068],[-71.652699654,41.368023854],[-71.652681488,41.368083799],[-71.652645537,41.368146443],[-71.65262551,41.3682028],[-71.652625139,41.368264893],[-71.652634995,41.36833834],[-71.652652461,41.368394121],[-71.652668897,41.368464037],[-71.65267412,41.368529646],[-71.652679317,41.368596695],[-71.652675229,41.368653145],[-71.65263457,41.368715086],[-71.652576255,41.368756537],[-71.652501203,41.368780947],[-71.652437334,41.368810375],[-71.652370574,41.36884964],[-71.652287951,41.368882523],[-71.652215808,41.368892156],[-71.652137054,41.368904587],[-71.652062841,41.368937504],[-71.652007345,41.368977509],[-71.651952702,41.369031647],[-71.651921656,41.36904987],[-71.651869404,41.369022175],[-71.651848148,41.368968503],[-71.651842061,41.368896514],[-71.651834081,41.368820275],[-71.651830765,41.368751805],[-71.651831118,41.368694697],[-71.651831445,41.36863967],[-71.651831798,41.368582493],[-71.651825568,41.368527429],[-71.651789372,41.368472268],[-71.651731542,41.368434722],[-71.651661574,41.368387175],[-71.65159244,41.368358724],[-71.651509979,41.368369742],[-71.65145444,41.368416814],[-71.651427805,41.368478096],[-71.651406849,41.368540125],[-71.651366188,41.368601334],[-71.651303147,41.368647707],[-71.651235527,41.368682742],[-71.651215609,41.368721511],[-71.651265926,41.368765402],[-71.651259011,41.368821146],[-71.651237152,41.368873251],[-71.651241506,41.368931131],[-71.651273302,41.368935457],[-71.651298925,41.368882638],[-71.651346076,41.368831324],[-71.651419115,41.368828735],[-71.651509041,41.368829051],[-71.651582022,41.368840596],[-71.651626608,41.368900686],[-71.651668468,41.36895026],[-71.651716842,41.369007556],[-71.651744595,41.369061288],[-71.651770452,41.369122729],[-71.651792548,41.369185617],[-71.651798729,41.369245598],[-71.651799342,41.369299938],[-71.651790531,41.369362706],[-71.651762984,41.369423303],[-71.65174298,41.369476824],[-71.65169584,41.369533124],[-71.651690745,41.369600851],[-71.651728799,41.369658823],[-71.651777212,41.369706261],[-71.651835989,41.369745269],[-71.65191277,41.369745557],[-71.651984768,41.369764856],[-71.65204829,41.369794709],[-71.65211836,41.369820323],[-71.652180851,41.36986358],[-71.652224593,41.369912396],[-71.652290886,41.369945791],[-71.652373313,41.369945407],[-71.652420414,41.369898964],[-71.652470452,41.369835638],[-71.652525139,41.369774432],[-71.652574194,41.369719593],[-71.652631613,41.369671122],[-71.652695501,41.369636755],[-71.652766911,41.369598901],[-71.652828903,41.369571626],[-71.652902151,41.369541499],[-71.652970691,41.369509984],[-71.653048636,41.369475689],[-71.653122644,41.369471703],[-71.653203189,41.369471984],[-71.653276158,41.369490595],[-71.653339636,41.369527469],[-71.653391786,41.369575634],[-71.653445969,41.3695977],[-71.653521831,41.369594443],[-71.653609876,41.369594737],[-71.65368857,41.369595021],[-71.653733425,41.369613509],[-71.653734951,41.369668556],[-71.653734598,41.369725001],[-71.653705482,41.369737596],[-71.653605263,41.369737249],[-71.65352754,41.369736987],[-71.653468651,41.369714927],[-71.653409774,41.36969847],[-71.653334733,41.369715174],[-71.653269809,41.369760796],[-71.653224567,41.369810027],[-71.653188631,41.36986636],[-71.653158342,41.369922661],[-71.653172136,41.369965754],[-71.65321775,41.370010382],[-71.653233331,41.370064747],[-71.653196459,41.370123185],[-71.653198882,41.370185321],[-71.653199449,41.370245949],[-71.653194402,41.370307318],[-71.653211993,41.370338444],[-71.653286951,41.370337978],[-71.653343974,41.370353706],[-71.653364217,41.370415177],[-71.653334839,41.370471501],[-71.653338205,41.370534321],[-71.65334909,41.370592901],[-71.653374026,41.370648763],[-71.653383011,41.370712995],[-71.653361158,41.370767227],[-71.653307514,41.370807299],[-71.653260383,41.370854383],[-71.65322732,41.370905749],[-71.653171752,41.370954239],[-71.653102479,41.370945549],[-71.653057846,41.370892481],[-71.653038507,41.370840933],[-71.652970327,41.370806124],[-71.652885101,41.37080443],[-71.652806542,41.370784363],[-71.652726268,41.370745292],[-71.652656256,41.370706231],[-71.652593801,41.370652408],[-71.652528534,41.370604192],[-71.652466046,41.370562353],[-71.652398871,41.370515558],[-71.652327047,41.370467327],[-71.652248618,41.370424732],[-71.65217114,41.370386366],[-71.652099211,41.370357896],[-71.652022393,41.370355528],[-71.651978263,41.370374408],[-71.65197612,41.370418849],[-71.652012313,41.370472592],[-71.652066301,41.370527844],[-71.652107246,41.370575247],[-71.652139724,41.370624032],[-71.652180598,41.370679919],[-71.652207413,41.370735047],[-71.652258656,41.370784609],[-71.652322128,41.37081867],[-71.652385606,41.370854882],[-71.652454758,41.370876997],[-71.652525816,41.370896297],[-71.652595944,41.37091983],[-71.652651879,41.370963758],[-71.652666471,41.371023774],[-71.652684858,41.371083807],[-71.652715456,41.371133304],[-71.652758277,41.371177204],[-71.652806737,41.371218284],[-71.652819435,41.371286055],[-71.652820027,41.371344626],[-71.652827168,41.371398979],[-71.652838009,41.371464672],[-71.652862055,41.371516945],[-71.652933033,41.371553146],[-71.653008659,41.371590804],[-71.653054256,41.371640373],[-71.653053928,41.371694713],[-71.653036747,41.371748253],[-71.65297652,41.371791078],[-71.652892086,41.371816897],[-71.652831912,41.3718562],[-71.652767882,41.371908933],[-71.652709605,41.371941852],[-71.652636403,41.371967015],[-71.652557651,41.371982237],[-71.652469605,41.371982674],[-71.652378759,41.371980233],[-71.652296437,41.371961611],[-71.652214136,41.371938735],[-71.652127109,41.371933498],[-71.652041856,41.371933908],[-71.651954596,41.371958998],[-71.651900924,41.372001173],[-71.65182759,41.3720482],[-71.651742127,41.372088839],[-71.651666037,41.372125944],[-71.651602971,41.372175816],[-71.65154557,41.372220078],[-71.651476954,41.372259345],[-71.651415838,41.372299357],[-71.651348203,41.372329498],[-71.651253617,41.372324911],[-71.651164671,41.372317527],[-71.651087989,41.372295397],[-71.65104805,41.372250097],[-71.65104372,41.372189405],[-71.650999997,41.372135648],[-71.650929033,41.372105049],[-71.650875955,41.372049864],[-71.650829311,41.372019324],[-71.650752455,41.372027544],[-71.650682072,41.372051284],[-71.650600314,41.372092649],[-71.650522308,41.372141763],[-71.650461048,41.37219799],[-71.650401723,41.372251401],[-71.650333998,41.372295653],[-71.650267287,41.372332081],[-71.650207154,41.372363607],[-71.650138651,41.372386658],[-71.650052372,41.372403306],[-71.649953958,41.37241073],[-71.64985468,41.372412506],[-71.649771249,41.372426337],[-71.649684898,41.372451424],[-71.649593851,41.372480725],[-71.649515863,41.37252492],[-71.64944904,41.372578981],[-71.649384088,41.372628146],[-71.649321022,41.372678749],[-71.649267334,41.372727967],[-71.649216399,41.372786353],[-71.649181424,41.372839846],[-71.649152041,41.372896214],[-71.649127332,41.372951844],[-71.649114828,41.373006818],[-71.649114498,41.373061868],[-71.649114166,41.373116209],[-71.649113806,41.373171213],[-71.649113429,41.373231911],[-71.649099921,41.37329958],[-71.649066736,41.373366473],[-71.64902142,41.373425606],[-71.649001436,41.373476336],[-71.648951482,41.373525549],[-71.648914671,41.373573396],[-71.648872166,41.373627608],[-71.648829722,41.373681775],[-71.648791,41.37373031],[-71.64875045,41.373776012],[-71.648712583,41.373840098],[-71.648682282,41.373893632],[-71.648683807,41.373950074],[-71.648711806,41.373965704],[-71.648693636,41.374026311],[-71.648684865,41.374081303],[-71.648656408,41.374144691],[-71.648599064,41.374175572],[-71.648506337,41.374175211],[-71.648436142,41.374162998],[-71.648361302,41.374150744],[-71.64828263,41.374149062],[-71.648204901,41.37414811],[-71.648130953,41.374140772],[-71.648054135,41.374139796],[-71.647994982,41.374163589],[-71.648002124,41.37422007],[-71.648044002,41.374263973],[-71.648100834,41.374314924],[-71.64815856,41.374371591],[-71.648218166,41.374427524],[-71.648277821,41.374477831],[-71.648344964,41.374523211],[-71.648413054,41.374571448],[-71.648482134,41.37461399],[-71.648549292,41.374652371],[-71.648628821,41.374670267],[-71.648714946,41.374677612],[-71.648800111,41.374690607],[-71.648896513,41.374704341],[-71.64899475,41.374724432],[-71.649089194,41.374745236],[-71.649176152,41.374771653],[-71.649257405,41.374812875],[-71.649331134,41.374856827],[-71.649411422,41.374900886],[-71.649493589,41.374943478],[-71.649570112,41.374987496],[-71.64963071,41.375037824],[-71.649687469,41.375095864],[-71.649749917,41.375145457],[-71.649806821,41.375187282],[-71.649855263,41.375232617],[-71.649899002,41.375280039],[-71.649943655,41.375328146],[-71.649975105,41.375391776],[-71.649974711,41.375458078],[-71.649969656,41.375518074],[-71.649956171,41.375582198],[-71.649959506,41.375646413],[-71.65001826,41.37568684],[-71.650103472,41.37569279],[-71.650176686,41.375670464],[-71.65023411,41.375621264],[-71.650280257,41.375579785],[-71.650347892,41.375547564],[-71.650423796,41.375546412],[-71.650499581,41.375559395],[-71.650559278,41.37560053],[-71.650600133,41.375660671],[-71.650667263,41.375712362],[-71.650723182,41.375760569],[-71.650757853,41.375759242],[-71.650786266,41.375703607],[-71.650786613,41.375643663],[-71.650787011,41.375579442],[-71.650794884,41.375517384],[-71.650804683,41.375448257],[-71.650821979,41.375377748],[-71.650831711,41.375319232],[-71.650845202,41.375257899],[-71.650882062,41.375205111],[-71.650943145,41.375162995],[-71.651027685,41.375128007],[-71.651099907,41.375110645],[-71.651186218,41.375093287],[-71.65126961,41.375087208],[-71.651351997,41.375093161],[-71.651430471,41.375126608],[-71.651501515,41.375150803],[-71.651567812,41.375183489],[-71.651629308,41.375240882],[-71.651678639,41.375289714],[-71.651721463,41.375334301],[-71.651758644,41.375380999],[-71.651797692,41.375434053],[-71.651842281,41.375493457],[-71.651876486,41.375565568],[-71.651893953,41.375621372],[-71.65190674,41.375675718],[-71.6519185,41.375744909],[-71.651921834,41.375807706],[-71.651911168,41.375869059],[-71.651889264,41.375928963],[-71.651858965,41.375982497],[-71.651816493,41.376037373],[-71.651759155,41.376071046],[-71.6516784,41.376101799],[-71.651594915,41.376120548],[-71.651500238,41.376131513],[-71.651410358,41.376129116],[-71.651324155,41.376128131],[-71.651238925,41.376127832],[-71.651156489,41.376127528],[-71.651073986,41.376137814],[-71.651007364,41.376161573],[-71.650963091,41.37619955],[-71.650967376,41.376266578],[-71.651006373,41.376323863],[-71.651067884,41.376374165],[-71.651141876,41.376373016],[-71.651216095,41.376338682],[-71.6512855,41.376323404],[-71.651320066,41.376341861],[-71.651306572,41.376401822],[-71.651239851,41.376435438],[-71.651194619,41.376479043],[-71.65118959,41.376536157],[-71.651222102,41.376585652],[-71.651232013,41.376643547],[-71.651227952,41.376699288],[-71.651207949,41.376754249],[-71.651160754,41.376815466],[-71.651076299,41.376835657],[-71.650993034,41.376818408],[-71.650912657,41.376789903],[-71.650844503,41.376755823],[-71.650776391,41.376713236],[-71.6506933,41.376666369],[-71.650602576,41.376640667],[-71.650512692,41.376636851],[-71.650439631,41.376633768],[-71.650352528,41.376637701],[-71.650285868,41.376658623],[-71.650211693,41.376685913],[-71.650138416,41.376720909],[-71.650072592,41.376762299],[-71.65001427,41.376804456],[-71.649965298,41.376845893],[-71.649922846,41.376897269],[-71.649919666,41.376953672],[-71.649946535,41.377005279],[-71.650005447,41.377021714],[-71.650075887,41.376993743],[-71.650064085,41.376931597],[-71.650094313,41.376885862],[-71.650174018,41.376873408],[-71.650253722,41.376860291],[-71.650331499,41.376854197],[-71.650408213,41.376874223],[-71.650463228,41.376912528],[-71.650515363,41.376965656],[-71.65056007,41.377010241],[-71.650609427,41.377056946],[-71.650655002,41.377109352],[-71.650705316,41.377149744],[-71.650765975,41.377185914],[-71.650826709,41.377215063],[-71.650882931,41.377210323],[-71.650927223,41.377167429],[-71.65096577,41.377147824],[-71.651041535,41.377164329],[-71.651096556,41.377204691],[-71.651141241,41.377252821],[-71.651178364,41.377300251],[-71.651207989,41.377361711],[-71.651205744,41.377428038],[-71.651195065,41.377484428],[-71.651178758,41.377549287],[-71.651112981,41.377584365],[-71.65110642,41.377583619],[-71.651036157,41.377582682],[-71.650983935,41.377545106],[-71.650890348,41.377529288],[-71.650810807,41.377521204],[-71.650722752,41.377520908],[-71.650619698,41.377521249],[-71.650517521,41.377532909],[-71.650441518,41.377558029],[-71.650372067,41.377580373],[-71.650301716,41.377594233],[-71.650222997,41.377600328],[-71.650129294,41.377599992],[-71.650025358,41.377599625],[-71.649928909,41.377593644],[-71.649848436,41.377576436],[-71.649758565,41.377565529],[-71.649664892,41.37756524],[-71.649578728,41.377568462],[-71.649499806,41.377605569],[-71.64942465,41.37764274],[-71.649341986,41.377676306],[-71.649272475,41.377712715],[-71.649203917,41.377740729],[-71.649122288,41.37776231],[-71.649028499,41.377777526],[-71.648940446,41.377778623],[-71.648864538,41.377779064],[-71.648780236,41.377787224],[-71.648687367,41.377806669],[-71.648620734,41.377826904],[-71.648570844,41.377865551],[-71.64857141,41.377927621],[-71.648571008,41.37799111],[-71.648574377,41.378057476],[-71.648574939,41.378117441],[-71.64857649,41.378171779],[-71.648576088,41.378235268],[-71.64856823,41.378291654],[-71.64853327,41.378340253],[-71.648484303,41.378384502],[-71.648417573,41.378416035],[-71.648335115,41.37842067],[-71.648262089,41.378420421],[-71.648189947,41.378421589],[-71.648109302,41.378436124],[-71.648021111,41.378456981],[-71.647920768,41.378474971],[-71.647834483,41.378492304],[-71.647766906,41.37851183],[-71.647699313,41.378537692],[-71.647630778,41.378562869],[-71.647558438,41.378597908],[-71.647553364,41.378663507],[-71.647551033,41.378734065],[-71.647550654,41.378794718],[-71.647550325,41.378850477],[-71.647550055,41.378892101],[-71.647561877,41.378950703],[-71.64761963,41.379004512],[-71.647684003,41.379044956],[-71.647759667,41.379083327],[-71.647835305,41.379123779],[-71.647902469,41.379162847],[-71.647980102,41.379185686],[-71.648064285,41.37920504],[-71.648140972,41.379225754],[-71.648214033,41.379227421],[-71.648295602,41.379218533],[-71.648381906,41.379195574],[-71.648467339,41.3791634],[-71.648543513,41.379118498],[-71.64861406,41.379070059],[-71.648681744,41.379030795],[-71.648752226,41.378993631],[-71.648830033,41.378986143],[-71.648902955,41.379006861],[-71.648996526,41.379028375],[-71.649072291,41.379044149],[-71.649139461,41.379085983],[-71.649196275,41.379139815],[-71.649246617,41.37917879],[-71.649315763,41.379207974],[-71.649399079,41.379219553],[-71.649489932,41.379220579],[-71.649587348,41.379223723],[-71.64967911,41.379224038],[-71.649759698,41.379224322],[-71.64983186,41.379218213],[-71.649900353,41.379200834],[-71.64996795,41.379177075],[-71.650030891,41.379148336],[-71.650093847,41.379113308],[-71.650132905,41.379091324],[-71.650162472,41.379074727],[-71.650230135,41.37903967],[-71.650307113,41.379015258],[-71.650385829,41.379007059],[-71.650463605,41.378999548],[-71.650536864,41.378968782],[-71.650602669,41.378931646],[-71.650680567,41.378911395],[-71.650760224,41.378903241],[-71.650835091,41.378911239],[-71.650913658,41.378930576],[-71.650996936,41.378952033],[-71.651079109,41.378994647],[-71.651116321,41.379027509],[-71.651142458,41.379050597],[-71.651190838,41.379107229],[-71.651245795,41.379158913],[-71.651309161,41.379209213],[-71.651374432,41.379256011],[-71.651456655,41.379293685],[-71.651553845,41.379330013],[-71.651618338,41.379355634],[-71.651705192,41.379399683],[-71.651788285,41.379445817],[-71.651848995,41.379476406],[-71.651914402,41.379503398],[-71.651980768,41.379524786],[-71.652057438,41.379550483],[-71.652094576,41.379603539],[-71.652116628,41.37967203],[-71.65213036,41.379727106],[-71.652145946,41.37978289],[-71.652135298,41.379839325],[-71.652066679,41.37988072],[-71.652005507,41.379925627],[-71.652003251,41.379987014],[-71.652024393,41.380055552],[-71.652043691,41.380114875],[-71.652046094,41.380181882],[-71.652055058,41.380249681],[-71.652063101,41.380313182],[-71.65207392,41.380382373],[-71.652084736,41.380450147],[-71.652088974,41.380522824],[-71.652092271,41.380595525],[-71.652095672,41.380660449],[-71.652096286,41.380715475],[-71.65211272,41.380783264],[-71.652128302,41.380837629],[-71.652142014,41.38089696],[-71.652157574,41.38095487],[-71.652193777,41.381010031],[-71.652260956,41.381053991],[-71.652342265,41.381088852],[-71.65241995,41.381093346],[-71.652501452,41.381094336],[-71.652576352,41.381102356],[-71.652666203,41.381115364],[-71.652747599,41.381135405],[-71.652763338,41.381165802],[-71.652723791,41.381199566],[-71.652637516,41.381209834],[-71.652528931,41.381197445],[-71.652456827,41.381190177],[-71.652364187,41.381179253],[-71.652276278,41.381152863],[-71.652186541,41.381123593],[-71.652093861,41.381108461],[-71.652006787,41.381101143],[-71.651927143,41.381102986],[-71.651861456,41.381126012],[-71.651795666,41.381157546],[-71.651715019,41.381172083],[-71.651617605,41.381171022],[-71.651527705,41.381162976],[-71.651444551,41.38113093],[-71.651354789,41.381103786],[-71.651268679,41.381093608],[-71.651180611,41.38108979],[-71.651096357,41.381081049],[-71.650999108,41.381059542],[-71.650899913,41.381036641],[-71.650814811,41.381015872],[-71.650743712,41.380996571],[-71.650673535,41.380982209],[-71.650595888,41.380967834],[-71.650504116,41.380963974],[-71.650408555,41.380963642],[-71.650312084,41.380963333],[-71.650217465,41.380962999],[-71.650121884,41.380966898],[-71.650019707,41.380980685],[-71.649948455,41.380987456],[-71.649850029,41.380995589],[-71.649773119,41.381010852],[-71.649689761,41.381008445],[-71.649613057,41.380994753],[-71.649603002,41.380953097],[-71.649619265,41.380894596],[-71.649604578,41.380845878],[-71.649558694,41.380845],[-71.649513462,41.380889976],[-71.649459766,41.380938508],[-71.649410771,41.380984907],[-71.649334075,41.380961336],[-71.649257369,41.380946295],[-71.649163689,41.380945228],[-71.649067242,41.380942082],[-71.648981149,41.380925544],[-71.648901703,41.380894223],[-71.648827003,41.380853747],[-71.648764506,41.380811175],[-71.64871231,41.380772225],[-71.648676981,41.380725524],[-71.648658578,41.380671825],[-71.648575332,41.380651783],[-71.648501305,41.380652931],[-71.648439282,41.380685213],[-71.648396842,41.380730208],[-71.648308787,41.380731991],[-71.648233003,41.380721843],[-71.648149682,41.380708868],[-71.648059836,41.380697251],[-71.647984036,41.380680104],[-71.647909208,41.380662888],[-71.647833302,41.380666141],[-71.647748901,41.380685598],[-71.647660659,41.380712104],[-71.64758747,41.38073516],[-71.647502052,41.380761662],[-71.647400721,41.380787406],[-71.647328466,41.380806939],[-71.647259008,41.380828526],[-71.647190493,41.38085018],[-71.64712012,41.38086971],[-71.647046899,41.380892011],[-71.646974624,41.380916437],[-71.646907968,41.380941611],[-71.646817851,41.380971664],[-71.646748327,41.381004572],[-71.646677884,41.381033249],[-71.646590592,41.381063984],[-71.646502397,41.38108484],[-71.646417025,41.381105006],[-71.646330661,41.381130136],[-71.646245277,41.381158741],[-71.646172014,41.381189549],[-71.646102482,41.381218935],[-71.646034843,41.381252549],[-71.645968114,41.381286184],[-71.645894837,41.3813247],[-71.645827209,41.381349874],[-71.645746628,41.381353841],[-71.645652992,41.38134504],[-71.645570591,41.381336294],[-71.645482607,41.381329635],[-71.645392694,41.381329315],[-71.64530931,41.381329008],[-71.645231541,41.381327322],[-71.645151992,41.381317886],[-71.645077167,41.381302085],[-71.644991073,41.381284858],[-71.64493982,41.381245174],[-71.644924213,41.381190807],[-71.644906687,41.381147696],[-71.644849763,41.381111495],[-71.644783457,41.381075992],[-71.644649087,41.380992272],[-71.64447127,41.381116522],[-71.644405129,41.381059155],[-71.644009865,41.380743077],[-71.644003621,41.380692953],[-71.644020901,41.380625281],[-71.644086827,41.38057191],[-71.644138511,41.380545544],[-71.644161047,41.380534081],[-71.644229682,41.380497608],[-71.644270148,41.38046531],[-71.644239599,41.380409453],[-71.644202416,41.380360648],[-71.64417837,41.380306933],[-71.644181597,41.380242022],[-71.644210041,41.380183576],[-71.644264748,41.380123792],[-71.644310057,41.380071065],[-71.644349767,41.380012604],[-71.644400716,41.379956347],[-71.644463809,41.379899435],[-71.644519455,41.379838919],[-71.644572324,41.379772071],[-71.644623315,41.379707352],[-71.644652753,41.379645382],[-71.644655944,41.379578344],[-71.644630117,41.37951546],[-71.644586495,41.37945253],[-71.644551285,41.379389612],[-71.644551691,41.3793261],[-71.644552935,41.379271072],[-71.644595393,41.37921972],[-71.644673358,41.379187535],[-71.644738231,41.379153171],[-71.644816171,41.379123135],[-71.644886533,41.379099376],[-71.64490359,41.379068388],[-71.644854258,41.379018135],[-71.644798304,41.378980538],[-71.644732948,41.378947846],[-71.644644934,41.378939792],[-71.644571982,41.378918363],[-71.644537741,41.378854026],[-71.644523118,41.378791196],[-71.644522561,41.378731916],[-71.644531428,41.3786635],[-71.644559828,41.378612829],[-71.644584522,41.378561385],[-71.644584826,41.378507067],[-71.644573928,41.378453381],[-71.644563067,41.378389175],[-71.64457567,41.378321485],[-71.644576054,41.378261518],[-71.644574572,41.378195882],[-71.644562756,41.378138698],[-71.644552817,41.378079384],[-71.644562583,41.378019452],[-71.644605057,41.377962451],[-71.644656854,41.377919618],[-71.644697405,41.377871745],[-71.64471368,41.37781679],[-71.644702778,41.377761708],[-71.644661863,41.377713595],[-71.644585313,41.377670992],[-71.644493777,41.377634674],[-71.644411516,41.377604748],[-71.644327308,41.377586809],[-71.644237391,41.377582302],[-71.644138101,41.377581923],[-71.644037897,41.377580174],[-71.643941455,41.377577001],[-71.64385711,41.377579553],[-71.643786672,41.377609625],[-71.643733039,41.377646124],[-71.643650524,41.377666285],[-71.643568088,41.377666708],[-71.643469801,41.377652971],[-71.643364885,41.377649076],[-71.643273993,41.377656508],[-71.64319892,41.3776781],[-71.643122929,41.377696171],[-71.643042352,41.377700136],[-71.642960027,41.377682193],[-71.642881532,41.377652331],[-71.642807694,41.377627333],[-71.642732934,41.377597443],[-71.64266852,41.37756404],[-71.642611665,41.377515854],[-71.642585772,41.377463559],[-71.642586135,41.37740716],[-71.64258909,41.377383851],[-71.642619284,41.377347999],[-71.642681256,41.377319997],[-71.642755521,41.377276497],[-71.642827825,41.377252782],[-71.642913241,41.377226237],[-71.642979897,41.377202484],[-71.643069061,41.377168227],[-71.643147068,41.37712829],[-71.643225099,41.377085517],[-71.643298424,41.377042749],[-71.643363361,41.376996401],[-71.643423584,41.376946514],[-71.643441803,41.376878132],[-71.643442254,41.376806913],[-71.643448325,41.376737059],[-71.643460832,41.37668069],[-71.643482728,41.376627123],[-71.643518605,41.376579965],[-71.643582589,41.376528702],[-71.643656862,41.376489432],[-71.643719804,41.376461451],[-71.643787394,41.37643486],[-71.643857881,41.376399871],[-71.643915285,41.376352801],[-71.643956875,41.376294338],[-71.64396097,41.376237202],[-71.64395108,41.376172262],[-71.643936442,41.376115768],[-71.643907773,41.37605785],[-71.643857542,41.375997672],[-71.643820432,41.375939673],[-71.643787982,41.375888072],[-71.64376676,41.375833644],[-71.643782989,41.375785733],[-71.643837581,41.375744292],[-71.643896917,41.375692302],[-71.64393569,41.375636724],[-71.643942594,41.375573204],[-71.643906388,41.375525839],[-71.643838256,41.375485352],[-71.643800231,41.37542525],[-71.643772455,41.375372957],[-71.643776553,41.375317217],[-71.643810614,41.375259472],[-71.643850226,41.375213041],[-71.643902023,41.375170918],[-71.643931346,41.375126558],[-71.643931769,41.375056711],[-71.64395373,41.374991892],[-71.643992448,41.374939104],[-71.6440527,41.374889903],[-71.644130615,41.374864785],[-71.644214097,41.374844646],[-71.644276185,41.3748018],[-71.644286884,41.374738344],[-71.64428722,41.374684026],[-71.644307264,41.374617791],[-71.644345091,41.374560751],[-71.644394176,41.374500974],[-71.64445631,41.37445177],[-71.644531586,41.374400515],[-71.644577746,41.37434989],[-71.64461936,41.374289368],[-71.644642192,41.374234405],[-71.644651899,41.374175913],[-71.644622333,41.374110174],[-71.644585204,41.374057116],[-71.644567748,41.374003415],[-71.644541849,41.373948307],[-71.644524439,41.373887562],[-71.644510788,41.373824708],[-71.64444832,41.373777216],[-71.644383832,41.373750173],[-71.644333273,41.373747171],[-71.644272065,41.373802732],[-71.644213783,41.373836379],[-71.644127477,41.373855812],[-71.64405713,41.373870423],[-71.643967129,41.373880645],[-71.643875394,41.373875385],[-71.643794932,41.373860299],[-71.643740863,41.373821327],[-71.643765548,41.373766361],[-71.643820164,41.373722816],[-71.643885893,41.373693414],[-71.64396103,41.373661942],[-71.644028689,41.373626202],[-71.644100958,41.373602441],[-71.644171377,41.373579391],[-71.64424925,41.373549333],[-71.644309529,41.373499468],[-71.644354872,41.373436815],[-71.644387997,41.373381884],[-71.644427685,41.373329164],[-71.644478555,41.373280637],[-71.64453965,41.373242756],[-71.644607312,41.37320912],[-71.644670318,41.37317055],[-71.644725844,41.37312698],[-71.644786041,41.373081346],[-71.644853751,41.373042038],[-71.6449448,41.373012055],[-71.645036785,41.372979897],[-71.645111917,41.372947006],[-71.645189844,41.372914798],[-71.645280091,41.372865718],[-71.645343044,41.372830693],[-71.645421044,41.372790731],[-71.645469096,41.372745067],[-71.645515331,41.372688061],[-71.645545658,41.372631715],[-71.645597429,41.372593113],[-71.645670633,41.372567268],[-71.645744806,41.372539981],[-71.645823558,41.372524032],[-71.645907021,41.372510227],[-71.645976447,41.37249214],[-71.646028259,41.37244503],[-71.646037999,41.37238791],[-71.64601212,41.372328571],[-71.645930789,41.372304294],[-71.645845651,41.372288484],[-71.645764268,41.372268415],[-71.645683847,41.372243451],[-71.645615677,41.372212159],[-71.645577589,41.372164774],[-71.645533904,41.37211241],[-71.645468592,41.37206913],[-71.645386227,41.372057548],[-71.645302838,41.372063622],[-71.6452202,41.372092955],[-71.645152575,41.372129404],[-71.645078427,41.372153832],[-71.644984691,41.372162709],[-71.644906025,41.37216242],[-71.644818918,41.372162118],[-71.644744105,41.372147003],[-71.64467781,41.372112209],[-71.64461339,41.37207389],[-71.644546186,41.372039783],[-71.64448835,41.371999352],[-71.644415541,41.371956768],[-71.64433701,41.371935322],[-71.644244243,41.371942757],[-71.64416631,41.371972152],[-71.644102322,41.372019162],[-71.644026208,41.372061248],[-71.643954943,41.37207156],[-71.643876338,41.37205789],[-71.643801652,41.372017411],[-71.643770172,41.371964414],[-71.643759241,41.371908601],[-71.643759659,41.371850075],[-71.643759961,41.371794293],[-71.643760319,41.37173643],[-71.643760703,41.371676486],[-71.643761081,41.371613684],[-71.643757729,41.37155299],[-71.643733758,41.371490126],[-71.643694884,41.371415891],[-71.643667109,41.371362889],[-71.643640276,41.371310572],[-71.643603191,41.371248365],[-71.643565099,41.371198143],[-71.643526088,41.371144354],[-71.643515212,41.371085774],[-71.643514655,41.371025808],[-71.643495317,41.370971401],[-71.643490976,41.370916357],[-71.643508191,41.370861377],[-71.6435553,41.370814983],[-71.643622983,41.370777848],[-71.643681325,41.370731486],[-71.643713577,41.370666676],[-71.643742962,41.370609624],[-71.643774229,41.370552568],[-71.643814805,41.370504055],[-71.643875954,41.370464024],[-71.643881003,41.370399157],[-71.643841058,41.370348206],[-71.643823625,41.370290274],[-71.643836182,41.370229651],[-71.643862726,41.37017896],[-71.643905225,41.370121227],[-71.643961709,41.37007274],[-71.644020039,41.370034862],[-71.644082947,41.370008276],[-71.644152346,41.369992317],[-71.644241347,41.369985551],[-71.644313465,41.369991452],[-71.644373194,41.370023396],[-71.644425408,41.37006237],[-71.644452271,41.370114687],[-71.6444868,41.370132483],[-71.644582401,41.370117268],[-71.644668726,41.370094998],[-71.644740006,41.370078305],[-71.644809407,41.370063763],[-71.644893781,41.37005133],[-71.644977257,41.370031167],[-71.645042097,41.369999639],[-71.645088242,41.369957476],[-71.645134436,41.36991035],[-71.64518714,41.369868934],[-71.645226777,41.369821771],[-71.645235544,41.369763966],[-71.645231271,41.369699065],[-71.645211127,41.369624167],[-71.645189933,41.369568366],[-71.645162132,41.369517446],[-71.645112894,41.369451664],[-71.645064529,41.36939647],[-71.6450227,41.369344812],[-71.644967758,41.369294521],[-71.644898586,41.369275214],[-71.644816208,41.369269989],[-71.644778091,41.369221894],[-71.644780325,41.369161262],[-71.64481632,41.36910141],[-71.644827935,41.369040743],[-71.64480485,41.368980668],[-71.644775229,41.368930482],[-71.644736192,41.368878158],[-71.644698078,41.368831458],[-71.644636562,41.368786778],[-71.64457848,41.368785159],[-71.644598716,41.368847341],[-71.644636759,41.368903189],[-71.644614805,41.368970158],[-71.644563913,41.369020743],[-71.644488851,41.369042358],[-71.644398936,41.369047],[-71.644309884,41.369057952],[-71.644231975,41.369082407],[-71.644143745,41.369108178],[-71.644062163,41.3691333],[-71.643968361,41.369151303],[-71.643867206,41.369153099],[-71.643775398,41.369152756],[-71.643695773,41.369156743],[-71.643617,41.369175481],[-71.643549393,41.369204886],[-71.643480704,41.369253319],[-71.643432536,41.369314512],[-71.643416292,41.369369513],[-71.643394377,41.369426602],[-71.643344384,41.369486379],[-71.643292528,41.369541242],[-71.643240762,41.36958197],[-71.643175951,41.369612788],[-71.643094302,41.369635806],[-71.643005282,41.369647466],[-71.642912447,41.369664071],[-71.642828919,41.369688486],[-71.642736128,41.369697315],[-71.642635938,41.36969625],[-71.642561031,41.369692455],[-71.642488968,41.369683739],[-71.64239448,41.369666475],[-71.642311199,41.36965066],[-71.642224261,41.369629155],[-71.642128901,41.369601325],[-71.642038143,41.369581951],[-71.641948355,41.36956189],[-71.641881036,41.369542602],[-71.641806104,41.36954091],[-71.641734051,41.369537134],[-71.641644261,41.369515655],[-71.641558206,41.369494903],[-71.641468326,41.369488221],[-71.64138682,41.369492872],[-71.641315498,41.369518026],[-71.641241259,41.369555899],[-71.641161472,41.369583784],[-71.641076179,41.369591962],[-71.640979694,41.369591623],[-71.640875789,41.369585598],[-71.640780408,41.369561998],[-71.640683147,41.36953975],[-71.640585837,41.369522487],[-71.640514738,41.369510224],[-71.640417429,41.369493647],[-71.640328493,41.369488427],[-71.6402498,41.369488134],[-71.640173019,41.369487862],[-71.640092474,41.369487571],[-71.640008165,41.369487994],[-71.639933236,41.369487719],[-71.639859251,41.369488861],[-71.639784272,41.369493526],[-71.639705544,41.369505263],[-71.63966403,41.369556612],[-71.639687048,41.369615956],[-71.639715758,41.369667562],[-71.639715356,41.369735282],[-71.639714969,41.369795272],[-71.639714584,41.36985668],[-71.639712317,41.369918044],[-71.639686622,41.369984285],[-71.639672197,41.370039238],[-71.639666247,41.370096375],[-71.639658409,41.37015068],[-71.639617742,41.370214743],[-71.639561207,41.370269564],[-71.63949999,41.370321554],[-71.639435103,41.370360856],[-71.639376801,41.370398731],[-71.639293258,41.370431606],[-71.63923032,41.370459584],[-71.639175749,41.370496083],[-71.6391249,41.370541085],[-71.639080583,41.370588183],[-71.639023195,41.370627475],[-71.638962078,41.370669608],[-71.638902759,41.37071526],[-71.63884161,41.370756661],[-71.63877113,41.37079311],[-71.638748236,41.370806562],[-71.63870439,41.370832367],[-71.638643274,41.370875232],[-71.638571825,41.370913054],[-71.638490062,41.370955097],[-71.638410205,41.370994302],[-71.638334162,41.371027921],[-71.638268406,41.371058692],[-71.638208216,41.371094488],[-71.638158325,41.371133817],[-71.63810465,41.371178067],[-71.638066981,41.371211092],[-71.638109674,41.371271235],[-71.638179701,41.371306761],[-71.638232852,41.371345028],[-71.638262455,41.371403015],[-71.638293918,41.371464521],[-71.63830291,41.371524523],[-71.63830255,41.37158378],[-71.638274946,41.371652814],[-71.638218459,41.371702694],[-71.638159142,41.371749764],[-71.638101704,41.371794727],[-71.638048012,41.371846045],[-71.638001738,41.37190163],[-71.637955528,41.371958587],[-71.637905545,41.372012072],[-71.637871475,41.372067665],[-71.637865489,41.372122676],[-71.637864209,41.372177681],[-71.637861295,41.372192505],[-71.637797393,41.372225446],[-71.637717622,41.372248435],[-71.637629606,41.372248815],[-71.637560407,41.37223163],[-71.637507347,41.372179229],[-71.637466484,41.372123382],[-71.637437889,41.37205341],[-71.637411195,41.371978518],[-71.637375976,41.371920537],[-71.637319176,41.371865304],[-71.637246442,41.371812835],[-71.637177425,41.371766719],[-71.637115855,41.371724184],[-71.637067434,41.371683075],[-71.637017212,41.37162294],[-71.636989488,41.371562869],[-71.636958901,41.371512636],[-71.636954567,41.371458301],[-71.636936218,41.371395429],[-71.636896255,41.371348044],[-71.636896594,41.371292285],[-71.636897905,41.37123728],[-71.636906704,41.371176617],[-71.636879828,41.371129947],[-71.636819276,41.37108039],[-71.636795268,41.371025941],[-71.636754384,41.370973571],[-71.636707952,41.370910618],[-71.636668919,41.370857559],[-71.636623409,41.370799545],[-71.636576012,41.370739429],[-71.636537973,41.370682847],[-71.636521466,41.370629121],[-71.636514396,41.370558596],[-71.636481039,41.370504822],[-71.636424197,41.370457341],[-71.636351378,41.370421109],[-71.636279383,41.370401778],[-71.63619329,41.370391588],[-71.636121201,41.370384995],[-71.636049294,41.370349471],[-71.636014943,41.370299242],[-71.635981584,41.370244095],[-71.635950173,41.370176939],[-71.635940219,41.370120483],[-71.635940584,41.370062597],[-71.635901556,41.370011665],[-71.635833485,41.369966256],[-71.635755028,41.36993353],[-71.635683975,41.369914219],[-71.635608264,41.369888556],[-71.635603973,41.36982505],[-71.635611839,41.36976791],[-71.635643114,41.369711589],[-71.635641566,41.36965302],[-71.635635423,41.369589493],[-71.635633913,41.369535154],[-71.635634347,41.369466016],[-71.635648809,41.369398325],[-71.635652089,41.369325685],[-71.635652451,41.369266404],[-71.63565287,41.369205019],[-71.635653253,41.369140821],[-71.635655593,41.369068868],[-71.635655934,41.369013818],[-71.635644147,41.368951693],[-71.635600431,41.368908497],[-71.63554265,41.368861726],[-71.635499908,41.368805149],[-71.635466616,41.368737972],[-71.635423947,41.36867291],[-71.635406525,41.368616417],[-71.635352435,41.368577441],[-71.635293624,41.368546177],[-71.635252717,41.36849591],[-71.635178018,41.368459657],[-71.635111804,41.368415709],[-71.635041884,41.368370279],[-71.634973785,41.368324869],[-71.634917793,41.368290812],[-71.634849656,41.368256678],[-71.634779541,41.368234576],[-71.634708443,41.368221623],[-71.634639248,41.368203727],[-71.63452834,41.368156698],[-71.634460435,41.368175714],[-71.634411898,41.368223913],[-71.634326137,41.368240503],[-71.634253504,41.36824889],[-71.634174613,41.36825534],[-71.634089398,41.368257177],[-71.634000798,41.368266429],[-71.633921939,41.368273565],[-71.633845524,41.368273288],[-71.633763794,41.368271736],[-71.633676785,41.368272317],[-71.633586194,41.36827288],[-71.633499253,41.368276777],[-71.633417624,41.368280577],[-71.633335929,41.368281724],[-71.633260458,41.368282795],[-71.633186779,41.368284504],[-71.633113915,41.368283513],[-71.633034726,41.36827791],[-71.632954752,41.368274343],[-71.632879218,41.368274064],[-71.632804627,41.368275088],[-71.632732838,41.368280774],[-71.632651243,41.368285923],[-71.632583803,41.368325017],[-71.632527016,41.368362613],[-71.632469186,41.368394859],[-71.632401648,41.368430592],[-71.632331368,41.368461685],[-71.632266302,41.368488678],[-71.6321895,41.368507154],[-71.632109016,41.368521655],[-71.632037213,41.368490565],[-71.631962257,41.368476197],[-71.631928762,41.36848671],[-71.631929657,41.368524148],[-71.631944757,41.368560083],[-71.631903456,41.368614219],[-71.631867467,41.368667549],[-71.63182701,41.368718939],[-71.631772931,41.368759871],[-71.631753732,41.368768995],[-71.631694769,41.368797056],[-71.631623993,41.368808092],[-71.631540469,41.368805901],[-71.631471493,41.368806414],[-71.631440132,41.368806656],[-71.631348529,41.368802552],[-71.631272794,41.368793605],[-71.631197289,41.368793325],[-71.631128932,41.368829721],[-71.631066252,41.368881457],[-71.63100663,41.368913703],[-71.630939254,41.368955473],[-71.630901988,41.368993458],[-71.630817002,41.369004006],[-71.63072234,41.369018728],[-71.630635696,41.369035293],[-71.630560884,41.369063097],[-71.63048138,41.369082284],[-71.630400144,41.36910081],[-71.630322461,41.369119949],[-71.630253326,41.369162406],[-71.630189467,41.36920209],[-71.630125313,41.369230431],[-71.630051048,41.369243505],[-71.629973948,41.369250613],[-71.629894199,41.369222961],[-71.629820607,41.369192489],[-71.629751181,41.369149983],[-71.629694984,41.369103939],[-71.62963892,41.369063224],[-71.629584353,41.369011827],[-71.62954409,41.368962838],[-71.629575716,41.368912922],[-71.629625814,41.368853997],[-71.629646487,41.368791469],[-71.629649202,41.368721871],[-71.629665244,41.368651366],[-71.629683342,41.368592225],[-71.62969525,41.368534532],[-71.629713381,41.368476741],[-71.62972255,41.368415712],[-71.629713084,41.368357632],[-71.629712608,41.36830144],[-71.62971177,41.368231205],[-71.629714881,41.368176976],[-71.629738038,41.368143193],[-71.629791602,41.368117678],[-71.629773236,41.368057046],[-71.629750637,41.368005155],[-71.6297412,41.367946434],[-71.629737886,41.367882927],[-71.629763154,41.367826363],[-71.629771641,41.367774048],[-71.629783516,41.367714983],[-71.629777334,41.367644183],[-71.62977331,41.36759003],[-71.629755723,41.367524709],[-71.629750817,41.367469231],[-71.629764616,41.367416201],[-71.629744523,41.367357561],[-71.629722649,41.367334464],[-71.629730159,41.367278834],[-71.629733532,41.367234645],[-71.629744011,41.367191682],[-71.629727239,41.367123638],[-71.629714899,41.367054881],[-71.629669096,41.366997985],[-71.629644319,41.366965582],[-71.629613879,41.366955279],[-71.629595645,41.366899976],[-71.6295762,41.366830677],[-71.629547927,41.366764819],[-71.629499453,41.366707949],[-71.629432153,41.366680123],[-71.629346475,41.3666619],[-71.629275042,41.36664684],[-71.629200904,41.366630479],[-71.629128841,41.366588639],[-71.629067074,41.366533316],[-71.629029056,41.366467605],[-71.628997231,41.366401157],[-71.628978051,41.366343201],[-71.628972069,41.366281069],[-71.628966149,41.366219577],[-71.628960201,41.366158771],[-71.628959362,41.36608785],[-71.628960285,41.366016928],[-71.628970235,41.365951919],[-71.628992665,41.365888016],[-71.629018916,41.365837466],[-71.629043305,41.365781589],[-71.629032386,41.365771035],[-71.628953242,41.365801587],[-71.628885438,41.365825265],[-71.628816525,41.365840963],[-71.628743794,41.365844635],[-71.628668292,41.365844331],[-71.628586602,41.365846137],[-71.628527219,41.365814185],[-71.628474775,41.365775455],[-71.628406268,41.365734914],[-71.628336562,41.365717816],[-71.628259071,41.365708868],[-71.62818194,41.365713963],[-71.628105755,41.365721023],[-71.628033027,41.365726067],[-71.62799698,41.365704472],[-71.627998136,41.365643566],[-71.628082686,41.365614266],[-71.628151535,41.365597266],[-71.628239935,41.365579968],[-71.62831813,41.365545438],[-71.628399908,41.365510858],[-71.628459983,41.365463175],[-71.628499658,41.365415125],[-71.628545589,41.365368327],[-71.628579786,41.365313651],[-71.628619327,41.365259564],[-71.628658637,41.365196123],[-71.628687557,41.36514422],[-71.628690505,41.365084616],[-71.628666894,41.365026758],[-71.628611041,41.365029519],[-71.62852636,41.365053467],[-71.628456536,41.365068457],[-71.628366311,41.365083126],[-71.628282113,41.365090973],[-71.628211623,41.365075888],[-71.628143379,41.365045387],[-71.628062691,41.365015745],[-71.627985882,41.364998746],[-71.627907675,41.364995814],[-71.627830416,41.364996883],[-71.627745501,41.365010105],[-71.627665416,41.365040658],[-71.627590609,41.365069146],[-71.6275275,41.365102789],[-71.627454613,41.365135255],[-71.627373847,41.365174521],[-71.627311456,41.36520279],[-71.627224165,41.365228135],[-71.627135866,41.365250074],[-71.627044856,41.365267396],[-71.626965157,41.36527789],[-71.626893308,41.365282201],[-71.626821414,41.365247791],[-71.626771446,41.365201625],[-71.626727341,41.365141341],[-71.626706142,41.365074057],[-71.626686767,41.365008119],[-71.626644584,41.364953139],[-71.62659706,41.364898943],[-71.6265975,41.364844053],[-71.626622836,41.364790165],[-71.626692235,41.364759763],[-71.626775585,41.364753267],[-71.6268551,41.364772894],[-71.626920936,41.364814811],[-71.627002405,41.364840451],[-71.627076962,41.364839408],[-71.627168912,41.364822085],[-71.62724043,41.364803709],[-71.627319053,41.364786561],[-71.627401132,41.364766687],[-71.627480536,41.364744827],[-71.627556485,41.364726355],[-71.627630808,41.364714631],[-71.627710644,41.364712187],[-71.627785232,41.364711807],[-71.627868747,41.364711988],[-71.627940727,41.364713006],[-71.627997292,41.364702171],[-71.628010146,41.364646467],[-71.628005011,41.364582298],[-71.627992839,41.364520905],[-71.627971712,41.364491082],[-71.627897291,41.364498804],[-71.627811432,41.364510723],[-71.62773965,41.364517732],[-71.627665065,41.364519416],[-71.627570988,41.364520092],[-71.627478973,41.364535403],[-71.627408334,41.364552428],[-71.627319189,41.364575786],[-71.627228896,41.364586384],[-71.627147106,41.364583524],[-71.627073168,41.364574503],[-71.62700297,41.364537347],[-71.626951827,41.364479839],[-71.626883451,41.364443321],[-71.626793283,41.364424484],[-71.626718333,41.364410135],[-71.626645176,41.364397157],[-71.626558657,41.364381608],[-71.626482763,41.364365911],[-71.626420348,41.364318615],[-71.626365271,41.364283226],[-71.626292728,41.364257485],[-71.626220549,41.364247776],[-71.626146874,41.364248794],[-71.626073981,41.36424645],[-71.62588261,41.364247963],[-71.625861755,41.3642481],[-71.625824925,41.364339599],[-71.625801018,41.364378711],[-71.625731522,41.36440646],[-71.625665545,41.364432788],[-71.625587218,41.36446201],[-71.625509966,41.364497841],[-71.62543099,41.364537082],[-71.625379549,41.364576635],[-71.625314099,41.364624346],[-71.625255358,41.364656634],[-71.625184528,41.364701103],[-71.625139407,41.364743874],[-71.625102437,41.36479455],[-71.625071139,41.364858552],[-71.625039676,41.364915191],[-71.625007434,41.364977868],[-71.625002008,41.365045548],[-71.625010462,41.365100314],[-71.625055997,41.365147172],[-71.625132905,41.365168861],[-71.625206811,41.365176534],[-71.625260714,41.365201861],[-71.625245801,41.36524556],[-71.625203553,41.365298323],[-71.625182811,41.365357488],[-71.625185075,41.365414342],[-71.625174921,41.365469997],[-71.625124687,41.365522219],[-71.625067153,41.365567177],[-71.624990256,41.365582972],[-71.624904097,41.36558151],[-71.624832863,41.365574452],[-71.624747388,41.365565625],[-71.62465139,41.365562253],[-71.624577681,41.365562584],[-71.624495989,41.365563725],[-71.624421794,41.365579494],[-71.624411676,41.365638488],[-71.624394452,41.365696964],[-71.624340402,41.365737846],[-71.62428101,41.365780175],[-71.624226213,41.365827759],[-71.624167895,41.365875416],[-71.62409869,41.365913867],[-71.624038483,41.365958141],[-71.623993429,41.366004936],[-71.623934848,41.366042553],[-71.62388893,41.366075791],[-71.623875488,41.366085522],[-71.62381163,41.366125888],[-71.623737013,41.366160389],[-71.623729824,41.366163462],[-71.623424566,41.366994444],[-71.623166565,41.367769444],[-71.623032565,41.368268444],[-71.622970565,41.368274444],[-71.622885566,41.368276444],[-71.622885382,41.36827696],[-71.622936012,41.368275808],[-71.623016793,41.36827268],[-71.623094446,41.368253523],[-71.623109481,41.368244395],[-71.623153094,41.368217919],[-71.623228268,41.368204162],[-71.623299013,41.368191805],[-71.623325108,41.368168701],[-71.623382877,41.368133784],[-71.623458539,41.368105275],[-71.62353081,41.368081526],[-71.623600345,41.368055837],[-71.623652778,41.368057084],[-71.623659505,41.36811455],[-71.62365384,41.368137381],[-71.623567261,41.368155999],[-71.623494109,41.368179749],[-71.623449865,41.368222518],[-71.623471942,41.36828978],[-71.623509009,41.368352817],[-71.623533429,41.368406696],[-71.623558795,41.368463205],[-71.62359055,41.368527002],[-71.623635271,41.368575874],[-71.623711988,41.368590863],[-71.62379893,41.368586996],[-71.623882087,41.368572453],[-71.623957097,41.36855204],[-71.624038236,41.368529494],[-71.624120482,41.368514951],[-71.624197845,41.368518572],[-71.624261627,41.368548487],[-71.624321468,41.368597845],[-71.624379451,41.368643844],[-71.624420589,41.368692102],[-71.624486656,41.368742048],[-71.624558387,41.368769164],[-71.624641361,41.368786089],[-71.624713445,41.368791111],[-71.624781722,41.368822301],[-71.624850034,41.368855458],[-71.624916917,41.368903345],[-71.624974603,41.368936673],[-71.625056213,41.368969701],[-71.625128045,41.369002145],[-71.625186679,41.369038811],[-71.625241826,41.369077516],[-71.625302417,41.369121499],[-71.625351574,41.369170983],[-71.625391115,41.369225303],[-71.625420751,41.369275083],[-71.625455698,41.369324079],[-71.62545926,41.369360851],[-71.625434307,41.369393995],[-71.625463064,41.369444461],[-71.625489311,41.369500282],[-71.625482217,41.36953718],[-71.625415685,41.369577573],[-71.625368802,41.369621078],[-71.625371099,41.369679213],[-71.625375121,41.369734029],[-71.625403979,41.369789847],[-71.625431952,41.369842991],[-71.62549515,41.369884271],[-71.625564441,41.369920743],[-71.625630997,41.369955959],[-71.625696505,41.369982486],[-71.625712583,41.370023087],[-71.625712206,41.370079966],[-71.625722651,41.370143397],[-71.625744469,41.370200618],[-71.625767199,41.370258524],[-71.62578543,41.370313828],[-71.625814219,41.370364912],[-71.625869337,41.37040364],[-71.625945172,41.370416639],[-71.626030983,41.370438844],[-71.626104797,41.370443177],[-71.626175508,41.370428142],[-71.626257405,41.370435714],[-71.626316789,41.370467004],[-71.626362361,41.370514548],[-71.626383199,41.370567127],[-71.626356168,41.370624379],[-71.626293087,41.370660012],[-71.626212278,41.370697265],[-71.626135801,41.370729116],[-71.626079791,41.370763346],[-71.626016514,41.370791683],[-71.625941698,41.370819461],[-71.625876924,41.370858503],[-71.625818271,41.370892095],[-71.625752453,41.37092581],[-71.625685195,41.37093677],[-71.625604826,41.370918515],[-71.625527946,41.370898816],[-71.625458815,41.37086765],[-71.625379063,41.370838692],[-71.625297553,41.370811039],[-71.625216044,41.370784072],[-71.625141868,41.370765673],[-71.625062611,41.370757411],[-71.624990723,41.370760394],[-71.62491717,41.37076546],[-71.624851759,41.370742271],[-71.624786898,41.370705017],[-71.624712076,41.370697368],[-71.624623241,41.370697258],[-71.624549492,41.370695623],[-71.624475775,41.370694628],[-71.624420593,41.370653909],[-71.624361671,41.370642035],[-71.624297545,41.370671653],[-71.624240986,41.370720634],[-71.624188889,41.370769518],[-71.624146665,41.37082164],[-71.624095515,41.3708732],[-71.624046058,41.370921372],[-71.624017166,41.370975309],[-71.624014114,41.371030888],[-71.623989622,41.371083425],[-71.623919131,41.371071014],[-71.62384394,41.371045297],[-71.623792278,41.371003842],[-71.623774673,41.370973969],[-71.62373505,41.370988581],[-71.623738357,41.371051425],[-71.62372211,41.371113239],[-71.623668836,41.371150094],[-71.623586521,41.371162602],[-71.623509738,41.371146286],[-71.623456282,41.371102844],[-71.623407299,41.371096835],[-71.623324951,41.371108016],[-71.623259542,41.37108549],[-71.623186797,41.371052429],[-71.623104506,41.371029463],[-71.623049291,41.370986709],[-71.623000005,41.370932558],[-71.62297102,41.370873378],[-71.622988082,41.37080827],[-71.623006868,41.370740416],[-71.623008777,41.370673495],[-71.623011695,41.370611238],[-71.623047824,41.370562531],[-71.623065214,41.37051078],[-71.623002213,41.370476884],[-71.622940973,41.370442919],[-71.622867062,41.370435908],[-71.622794225,41.370434224],[-71.622714221,41.370432],[-71.622634963,41.370423073],[-71.622567014,41.370405261],[-71.62248632,41.370374929],[-71.622416931,41.370334431],[-71.622375027,41.370310121],[-71.622349367,41.370295234],[-71.622301027,41.370243026],[-71.622294367,41.370188945],[-71.622271437,41.370160078],[-71.622134565,41.370834445],[-71.621800565,41.371992445],[-71.621041565,41.374393445],[-71.620811565,41.375059446],[-71.620805565,41.375109446],[-71.620421565,41.376125446],[-71.620227565,41.376637446],[-71.619350565,41.378755447],[-71.618317565,41.381630447],[-71.617322565,41.384452448],[-71.616470565,41.386814448],[-71.616287564,41.387364448],[-71.616089564,41.387890448],[-71.615936564,41.388325449],[-71.615601564,41.389321449],[-71.615588564,41.389374449],[-71.614807564,41.391426449],[-71.614218564,41.39343545],[-71.614135564,41.39367545],[-71.614717565,41.39345345],[-71.614929565,41.393372449],[-71.615784565,41.39302945],[-71.616638565,41.39270145],[-71.618317565,41.392044449],[-71.618661565,41.391913449],[-71.618706565,41.391896449],[-71.619713565,41.391495449],[-71.620285566,41.391285449],[-71.620781566,41.391095449],[-71.620865566,41.391060449],[-71.621422566,41.390850448],[-71.622154566,41.390561448],[-71.622955567,41.390255449],[-71.624481567,41.389664448],[-71.625046567,41.389439449],[-71.625114567,41.389408448],[-71.625714568,41.389179448],[-71.626272568,41.388962448],[-71.626350568,41.388932448],[-71.626694567,41.388806448],[-71.626751567,41.388785448],[-71.626938568,41.388714448],[-71.627556568,41.388462448],[-71.628235568,41.388192448],[-71.628555568,41.388058448],[-71.628585568,41.388045448],[-71.628670568,41.388008448],[-71.629099569,41.387806448],[-71.629570569,41.387589448],[-71.630028568,41.387360448],[-71.630127569,41.387307448],[-71.630152569,41.387294448],[-71.630600569,41.387055448],[-71.630694569,41.387007448],[-71.631492569,41.386605448],[-71.63150857,41.386597448],[-71.632258569,41.386212447],[-71.63298057,41.385842447],[-71.63300157,41.385830448],[-71.63304157,41.385807447],[-71.63396557,41.385342447],[-71.63422457,41.385224447],[-71.634452571,41.385138447],[-71.63453757,41.385106447],[-71.63489557,41.384983447],[-71.635284571,41.384880448],[-71.635696571,41.384797447],[-71.63601757,41.384758447],[-71.636246571,41.384739447],[-71.636459571,41.384716447],[-71.636673571,41.384713447],[-71.636734571,41.384710447],[-71.636808571,41.384711447],[-71.636879571,41.384713447],[-71.637154571,41.384724448],[-71.637375571,41.384739447],[-71.637741571,41.384777447],[-71.638084571,41.384835447],[-71.638405572,41.384907447],[-71.638887571,41.385004447],[-71.639444572,41.385128447],[-71.639565571,41.385155448],[-71.639641572,41.385170447],[-71.640205572,41.385296447],[-71.640877572,41.385453447],[-71.641357573,41.385548447],[-71.641853573,41.385659448],[-71.641693572,41.385739448],[-71.641724573,41.385781447],[-71.641754572,41.385857448],[-71.641754572,41.385933448],[-71.641777573,41.386044447],[-71.641716573,41.386284448],[-71.641617572,41.386685447],[-71.641464573,41.387448448],[-71.641319572,41.388127448],[-71.641251573,41.388539448],[-71.641182573,41.388848448],[-71.641167572,41.388874448],[-71.641136573,41.388966448],[-71.640968572,41.389382448],[-71.640762572,41.389717448],[-71.640572573,41.389996448],[-71.640259573,41.390492448],[-71.640175572,41.390660448],[-71.640152572,41.390710449],[-71.640090572,41.390874448],[-71.640077572,41.390916448],[-71.640007573,41.391154448],[-71.639946572,41.391378448],[-71.639901572,41.391542448],[-71.639900572,41.391568449],[-71.639801572,41.391926448],[-71.639664572,41.392296448],[-71.639641573,41.392331449],[-71.639503573,41.392586448],[-71.639320572,41.392872449],[-71.639076572,41.393231448],[-71.638824572,41.393620448],[-71.638634572,41.393902449],[-71.638504572,41.394143449],[-71.638451572,41.394417449],[-71.638458572,41.394574449],[-71.638542572,41.395016449],[-71.638611572,41.395325449],[-71.638794572,41.396244449],[-71.638916573,41.39661445],[-71.639008572,41.39683245],[-71.639580573,41.39791945],[-71.639740572,41.39824045],[-71.639877572,41.39857945],[-71.639946573,41.39879645],[-71.640251573,41.40038745],[-71.640373573,41.40107045],[-71.640465573,41.40152845],[-71.640526573,41.40177245],[-71.640587573,41.40194745],[-71.640755573,41.40228345],[-71.640884573,41.40251245],[-71.640923573,41.40249345],[-71.641022574,41.40247845],[-71.641212573,41.402466451],[-71.641586574,41.402466451]]]]}}"}, +{"type": "precinct", "typeId": 601, "areaId": 25696, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":35,\"NAME\":\"0601\",\"SHAPE_Length\":0.072598097421205,\"SHAPE_Area\":-0.00024245029417807},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.533801555,41.717667515],[-71.533883556,41.717688515],[-71.533936555,41.717705515],[-71.534439555,41.717829516],[-71.534691555,41.717864515],[-71.535141556,41.717859515],[-71.535683556,41.717824515],[-71.536057556,41.717802515],[-71.536568556,41.717768515],[-71.536637556,41.718019515],[-71.536728556,41.718445515],[-71.537018557,41.719519515],[-71.537354557,41.720079515],[-71.537460556,41.720257515],[-71.537674556,41.720603515],[-71.538094557,41.720396516],[-71.538216556,41.720353515],[-71.538788557,41.720115516],[-71.539444557,41.719920516],[-71.539856557,41.719835516],[-71.540382557,41.719778516],[-71.541046557,41.719736516],[-71.541542558,41.719689515],[-71.542107558,41.719663516],[-71.542603558,41.719544516],[-71.543236558,41.719341515],[-71.543198558,41.719153515],[-71.543091558,41.718800515],[-71.542992558,41.718532515],[-71.542946558,41.718402515],[-71.542732558,41.717826515],[-71.542518558,41.717380515],[-71.542435558,41.717170515],[-71.542389558,41.716951515],[-71.542343558,41.716709515],[-71.542351558,41.716488514],[-71.542404558,41.716406515],[-71.542526558,41.716295514],[-71.542702558,41.716169515],[-71.543022558,41.715982514],[-71.543846559,41.715487515],[-71.544098559,41.715314515],[-71.544388559,41.715024515],[-71.544632558,41.714740514],[-71.544716559,41.714657514],[-71.544808558,41.714556515],[-71.544869558,41.714491514],[-71.544998559,41.714241515],[-71.545072559,41.714127515],[-71.545189559,41.713948514],[-71.545395559,41.713602514],[-71.545570559,41.713382514],[-71.545777559,41.713107514],[-71.545899559,41.712933514],[-71.545953559,41.712812514],[-71.545982559,41.712629514],[-71.545975559,41.712445514],[-71.545937558,41.712221514],[-71.545822559,41.711903514],[-71.545746559,41.711684514],[-71.545700559,41.711573514],[-71.545669559,41.711420513],[-71.545723558,41.711280514],[-71.545891559,41.711060514],[-71.546066559,41.710849514],[-71.546242559,41.710642513],[-71.546288558,41.710524513],[-71.546295559,41.710357514],[-71.546272559,41.710151513],[-71.546211558,41.709963513],[-71.546196559,41.709801513],[-71.546257559,41.709651513],[-71.546364559,41.709514513],[-71.546555559,41.709352513],[-71.546860559,41.709197513],[-71.547173559,41.709023513],[-71.547547559,41.708776513],[-71.547829559,41.708576513],[-71.547951559,41.708303513],[-71.548104559,41.707976513],[-71.548248559,41.707653513],[-71.548126559,41.707282513],[-71.548004559,41.706924513],[-71.547867559,41.706581513],[-71.547569559,41.705939512],[-71.547463559,41.705725512],[-71.547317559,41.705471512],[-71.547226559,41.705325513],[-71.547066559,41.705027512],[-71.546845559,41.704649513],[-71.546669559,41.704338513],[-71.546494559,41.704058512],[-71.546326559,41.703755512],[-71.546173558,41.703488512],[-71.546005558,41.703226513],[-71.545922558,41.703066512],[-71.545723558,41.702949512],[-71.545380558,41.702768512],[-71.545029558,41.702568512],[-71.544739558,41.702417512],[-71.544479558,41.702265512],[-71.544312558,41.702161512],[-71.544143557,41.701984512],[-71.543923558,41.701746511],[-71.543823558,41.701627512],[-71.543480557,41.701252512],[-71.543213557,41.700965511],[-71.542908557,41.700665512],[-71.543228557,41.700302511],[-71.543541557,41.699908512],[-71.543755557,41.699633512],[-71.543831557,41.699506511],[-71.543869557,41.699347511],[-71.543877557,41.699212511],[-71.543854557,41.698996511],[-71.543770558,41.698588511],[-71.543716557,41.698153511],[-71.543655557,41.697776511],[-71.543640557,41.697533511],[-71.543671558,41.697294511],[-71.543121557,41.697090511],[-71.542755557,41.696895511],[-71.542358557,41.696661511],[-71.542061557,41.696433511],[-71.541824556,41.696204511],[-71.541565557,41.695962511],[-71.541199556,41.696335511],[-71.540970556,41.696574511],[-71.540802557,41.696767511],[-71.540718556,41.696949511],[-71.540710556,41.697102511],[-71.540718556,41.697386511],[-71.540749556,41.697858511],[-71.540756556,41.698065511],[-71.540756556,41.698295511],[-71.540733556,41.698601512],[-71.540665557,41.699013512],[-71.540131556,41.698993512],[-71.539787556,41.698996511],[-71.539345556,41.698992512],[-71.538925556,41.698975512],[-71.538925556,41.698592511],[-71.538208556,41.698626511],[-71.537666556,41.698620512],[-71.537086555,41.698619512],[-71.537079556,41.698813512],[-71.537025555,41.699026512],[-71.536979555,41.699175511],[-71.536911555,41.699289511],[-71.536804555,41.699355512],[-71.536606555,41.699409511],[-71.536308555,41.699442512],[-71.535644555,41.699461512],[-71.535477555,41.699501512],[-71.535194554,41.699525511],[-71.535172554,41.699323512],[-71.535141555,41.699099511],[-71.535110555,41.698973512],[-71.534828554,41.699002511],[-71.534752555,41.699008512],[-71.534263554,41.699055511],[-71.534340554,41.699603511],[-71.533989554,41.699642511],[-71.533501554,41.699693512],[-71.533325554,41.699706512],[-71.533256554,41.699717511],[-71.533229554,41.699714512],[-71.533207554,41.699922512],[-71.533246554,41.700191512],[-71.533214554,41.700391512],[-71.533222554,41.700464512],[-71.533239554,41.700528512],[-71.533302554,41.700954512],[-71.533307554,41.700985512],[-71.533356555,41.701273512],[-71.533371554,41.701403512],[-71.533386554,41.701506512],[-71.533409554,41.701546512],[-71.533409554,41.701686513],[-71.533440554,41.701919513],[-71.533560554,41.702380512],[-71.533566554,41.702405513],[-71.533684555,41.702729512],[-71.533763555,41.703832512],[-71.533512555,41.705311513],[-71.533515554,41.705351513],[-71.533513555,41.705391513],[-71.533477554,41.707498513],[-71.533458554,41.707574514],[-71.533448555,41.707620513],[-71.533498554,41.708481513],[-71.533696555,41.709134514],[-71.533604555,41.710625514],[-71.533809555,41.712183514],[-71.533808555,41.712246514],[-71.533742555,41.712756514],[-71.533734555,41.713738515],[-71.533701555,41.713858514],[-71.533659555,41.714544515],[-71.533616555,41.715264515],[-71.533620555,41.715274515],[-71.533624555,41.715292515],[-71.533711555,41.715813515],[-71.533677555,41.715927515],[-71.533540555,41.716396515],[-71.533584555,41.716587515],[-71.533601555,41.716667515],[-71.533782555,41.717570515],[-71.533798555,41.717636516],[-71.533801555,41.717667515]]]]}}"}, +{"type": "precinct", "typeId": 602, "areaId": 25709, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":48,\"NAME\":\"0602\",\"SHAPE_Length\":0.058797410972997,\"SHAPE_Area\":-0.00010630354810617},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.533229554,41.699714512],[-71.533256554,41.699717511],[-71.533325554,41.699706512],[-71.533501554,41.699693512],[-71.533989554,41.699642511],[-71.534340554,41.699603511],[-71.534263554,41.699055511],[-71.534752555,41.699008512],[-71.534828554,41.699002511],[-71.535110555,41.698973512],[-71.535141555,41.699099511],[-71.535172554,41.699323512],[-71.535194554,41.699525511],[-71.535477555,41.699501512],[-71.535644555,41.699461512],[-71.536308555,41.699442512],[-71.536606555,41.699409511],[-71.536804555,41.699355512],[-71.536911555,41.699289511],[-71.536979555,41.699175511],[-71.537025555,41.699026512],[-71.537079556,41.698813512],[-71.537086555,41.698619512],[-71.537666556,41.698620512],[-71.538208556,41.698626511],[-71.538925556,41.698592511],[-71.538925556,41.698975512],[-71.539345556,41.698992512],[-71.539787556,41.698996511],[-71.540131556,41.698993512],[-71.540665557,41.699013512],[-71.540733556,41.698601512],[-71.540756556,41.698295511],[-71.540756556,41.698065511],[-71.540749556,41.697858511],[-71.540718556,41.697386511],[-71.540710556,41.697102511],[-71.540718556,41.696949511],[-71.540802557,41.696767511],[-71.540970556,41.696574511],[-71.541199556,41.696335511],[-71.541565557,41.695962511],[-71.541824556,41.696204511],[-71.542061557,41.696433511],[-71.542358557,41.696661511],[-71.542755557,41.696895511],[-71.543121557,41.697090511],[-71.543671558,41.697294511],[-71.543382557,41.696964511],[-71.543350557,41.696954511],[-71.542900557,41.696802511],[-71.542526557,41.696535511],[-71.542335557,41.696423511],[-71.542084557,41.696234511],[-71.542015557,41.696191511],[-71.541962556,41.696156511],[-71.541778557,41.695845511],[-71.541634556,41.695628511],[-71.541534556,41.695445511],[-71.541519557,41.695414511],[-71.541469557,41.695367511],[-71.541784556,41.695402511],[-71.541253557,41.694391511],[-71.540613556,41.69366351],[-71.540407556,41.69336251],[-71.540311556,41.693242511],[-71.540264556,41.69309051],[-71.539973556,41.69266451],[-71.539568556,41.69207551],[-71.539513556,41.69186951],[-71.539499556,41.69176351],[-71.539463555,41.69156951],[-71.539729556,41.69099551],[-71.539778555,41.69069851],[-71.539881556,41.69022651],[-71.539729556,41.68996351],[-71.539388555,41.689713509],[-71.538814556,41.68958451],[-71.538626555,41.68947051],[-71.538449555,41.689328509],[-71.538258555,41.689131509],[-71.538126555,41.68886851],[-71.538014555,41.688523509],[-71.538220555,41.687850509],[-71.538193555,41.68748551],[-71.538188555,41.687112509],[-71.538142555,41.686467509],[-71.538055555,41.686036509],[-71.537846554,41.685638509],[-71.537563555,41.685466509],[-71.537433555,41.685387509],[-71.537429555,41.685321509],[-71.537220554,41.685166509],[-71.537094555,41.685055509],[-71.536875554,41.685086509],[-71.536721554,41.685108509],[-71.536459554,41.685152509],[-71.536222555,41.685028509],[-71.536085554,41.684902509],[-71.535987554,41.684730509],[-71.535997554,41.684575509],[-71.535708554,41.684244509],[-71.535660554,41.684162509],[-71.535590554,41.684089509],[-71.535040554,41.683632508],[-71.534968554,41.683505509],[-71.534622554,41.682827509],[-71.534437553,41.682433509],[-71.534268554,41.682072508],[-71.534104553,41.681819508],[-71.534087553,41.681455508],[-71.534072553,41.681397508],[-71.534051553,41.681315508],[-71.534152554,41.681242508],[-71.534262553,41.681114508],[-71.534310554,41.680979508],[-71.534262553,41.680839508],[-71.534246553,41.680690508],[-71.534176554,41.680511508],[-71.534064553,41.680318508],[-71.534031553,41.680246508],[-71.533841553,41.680116508],[-71.533301553,41.680168508],[-71.532740553,41.680263508],[-71.532717553,41.680294508],[-71.532707553,41.680438508],[-71.532616553,41.681616509],[-71.532607553,41.681825508],[-71.532683553,41.682751508],[-71.532639553,41.684384509],[-71.532636553,41.684528509],[-71.532700553,41.685008509],[-71.532696553,41.685378509],[-71.532691553,41.685530509],[-71.532764553,41.686193509],[-71.532828554,41.68682251],[-71.532793553,41.68701751],[-71.532809554,41.688505509],[-71.532900553,41.69012151],[-71.532900553,41.69013351],[-71.532908554,41.69106251],[-71.533000554,41.69200751],[-71.532997554,41.692012511],[-71.532990553,41.692851511],[-71.533010553,41.695155511],[-71.533006554,41.695376511],[-71.533000554,41.695584511],[-71.533000554,41.695613511],[-71.533001554,41.695621511],[-71.533007553,41.696409511],[-71.532983554,41.696607511],[-71.532933554,41.696935511],[-71.532955554,41.697120512],[-71.532971554,41.697269511],[-71.533068554,41.698051512],[-71.533086554,41.698165511],[-71.533098554,41.698257511],[-71.533253554,41.698901511],[-71.533305554,41.699108512],[-71.533255554,41.699509512],[-71.533229554,41.699714512]]]]}}"}, +{"type": "precinct", "typeId": 603, "areaId": 25692, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":31,\"NAME\":\"0603\",\"SHAPE_Length\":0.098643644263605,\"SHAPE_Area\":-0.00042417051972046},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.534286556,41.730179517],[-71.534321556,41.730177518],[-71.534426556,41.730180517],[-71.534571556,41.730207518],[-71.534981556,41.730210518],[-71.535171557,41.730205518],[-71.535896556,41.730171518],[-71.536736557,41.730216518],[-71.537636557,41.730173518],[-71.538397557,41.730174518],[-71.538803557,41.730166517],[-71.539902558,41.730173518],[-71.540436558,41.730156518],[-71.540800558,41.730145517],[-71.540939558,41.730141517],[-71.541931559,41.730147517],[-71.542764559,41.730129517],[-71.543977559,41.730120517],[-71.54472456,41.730084517],[-71.545143559,41.730080518],[-71.54536456,41.730074517],[-71.54549856,41.730085517],[-71.54557856,41.730092517],[-71.54580756,41.730105517],[-71.54629656,41.730090517],[-71.54649856,41.730085517],[-71.54673056,41.730078518],[-71.54712756,41.730067517],[-71.54731056,41.730036517],[-71.54757856,41.730030517],[-71.54851556,41.730009517],[-71.548833561,41.730004517],[-71.549017561,41.729924518],[-71.549168561,41.729920517],[-71.549399561,41.729927517],[-71.549471561,41.729938517],[-71.549619561,41.729969517],[-71.549698561,41.729979517],[-71.550016561,41.729976517],[-71.550400562,41.729967517],[-71.550911561,41.729961517],[-71.552216561,41.729943517],[-71.552247562,41.729942517],[-71.556168563,41.729863517],[-71.557480564,41.729835517],[-71.560134564,41.729780517],[-71.560295564,41.729776517],[-71.562416565,41.729732516],[-71.562645566,41.729727517],[-71.562935566,41.729721517],[-71.562966565,41.729287516],[-71.562990565,41.728905517],[-71.562991565,41.728670517],[-71.562937566,41.728406516],[-71.562882566,41.728217516],[-71.562843566,41.728110517],[-71.562713565,41.727842516],[-71.562508565,41.727545517],[-71.562286565,41.727240516],[-71.561798565,41.726584516],[-71.561455565,41.726141517],[-71.561043565,41.725592516],[-71.560669564,41.725096516],[-71.560421565,41.724742516],[-71.560402565,41.724715516],[-71.560249565,41.724471516],[-71.560074565,41.724159516],[-71.559860564,41.723678516],[-71.559670564,41.723227516],[-71.559486564,41.722803516],[-71.559326564,41.722424515],[-71.559189564,41.722103516],[-71.559158564,41.722023516],[-71.559013564,41.721621515],[-71.558861564,41.721138515],[-71.558724564,41.720722515],[-71.558563563,41.720244515],[-71.558449563,41.719827515],[-71.558426563,41.719747515],[-71.558319564,41.719403515],[-71.558182564,41.718996515],[-71.558060563,41.718643515],[-71.557846563,41.717954514],[-71.557739563,41.717574515],[-71.557686563,41.717282515],[-71.557671563,41.717134514],[-71.557655563,41.716945514],[-71.557663563,41.716729514],[-71.557671563,41.716540514],[-71.557709563,41.716323514],[-71.557754563,41.716092514],[-71.557838563,41.715748514],[-71.557907563,41.715472514],[-71.557938563,41.715313514],[-71.558029563,41.714956514],[-71.558105563,41.714607514],[-71.558121563,41.714548514],[-71.558197563,41.714240514],[-71.558243563,41.713987514],[-71.558285563,41.713811514],[-71.558327563,41.713639514],[-71.558517563,41.712819514],[-71.558540563,41.712706513],[-71.558563563,41.712462514],[-71.558579563,41.712296513],[-71.558571563,41.712165513],[-71.558571563,41.711971513],[-71.558540563,41.711765514],[-71.558540563,41.711729514],[-71.558525563,41.711635513],[-71.558472563,41.711402513],[-71.558388563,41.711124514],[-71.558304563,41.710906513],[-71.558166562,41.710616514],[-71.557960563,41.710197513],[-71.557869563,41.710010513],[-71.557716562,41.709698513],[-71.557617563,41.709394513],[-71.557533563,41.709077513],[-71.556930563,41.709063513],[-71.556313562,41.709045513],[-71.555687561,41.709037513],[-71.555122561,41.709036513],[-71.554482561,41.709027513],[-71.553764561,41.709034513],[-71.552986561,41.709047513],[-71.552475561,41.709054513],[-71.551705561,41.709080513],[-71.55113256,41.709093513],[-71.55039256,41.709118513],[-71.54975956,41.709123513],[-71.54900456,41.709140513],[-71.548531559,41.709151513],[-71.548012559,41.709158513],[-71.54741756,41.709180513],[-71.546860559,41.709197513],[-71.546555559,41.709352513],[-71.546364559,41.709514513],[-71.546257559,41.709651513],[-71.546196559,41.709801513],[-71.546211558,41.709963513],[-71.546272559,41.710151513],[-71.546295559,41.710357514],[-71.546288558,41.710524513],[-71.546242559,41.710642513],[-71.546066559,41.710849514],[-71.545891559,41.711060514],[-71.545723558,41.711280514],[-71.545669559,41.711420513],[-71.545700559,41.711573514],[-71.545746559,41.711684514],[-71.545822559,41.711903514],[-71.545937558,41.712221514],[-71.545975559,41.712445514],[-71.545982559,41.712629514],[-71.545953559,41.712812514],[-71.545899559,41.712933514],[-71.545777559,41.713107514],[-71.545570559,41.713382514],[-71.545395559,41.713602514],[-71.545189559,41.713948514],[-71.545072559,41.714127515],[-71.544998559,41.714241515],[-71.544869558,41.714491514],[-71.544808558,41.714556515],[-71.544716559,41.714657514],[-71.544632558,41.714740514],[-71.544388559,41.715024515],[-71.544098559,41.715314515],[-71.543846559,41.715487515],[-71.543022558,41.715982514],[-71.542702558,41.716169515],[-71.542526558,41.716295514],[-71.542404558,41.716406515],[-71.542351558,41.716488514],[-71.542343558,41.716709515],[-71.542389558,41.716951515],[-71.542435558,41.717170515],[-71.542518558,41.717380515],[-71.542732558,41.717826515],[-71.542946558,41.718402515],[-71.542992558,41.718532515],[-71.543091558,41.718800515],[-71.543198558,41.719153515],[-71.543236558,41.719341515],[-71.542603558,41.719544516],[-71.542107558,41.719663516],[-71.541542558,41.719689515],[-71.541046557,41.719736516],[-71.540382557,41.719778516],[-71.539856557,41.719835516],[-71.539444557,41.719920516],[-71.538788557,41.720115516],[-71.538216556,41.720353515],[-71.538094557,41.720396516],[-71.537674556,41.720603515],[-71.537460556,41.720257515],[-71.537354557,41.720079515],[-71.537018557,41.719519515],[-71.536728556,41.718445515],[-71.536637556,41.718019515],[-71.536568556,41.717768515],[-71.536057556,41.717802515],[-71.535683556,41.717824515],[-71.535141556,41.717859515],[-71.534691555,41.717864515],[-71.534439555,41.717829516],[-71.533936555,41.717705515],[-71.533883556,41.717688515],[-71.533801555,41.717667515],[-71.533721555,41.718861516],[-71.533726556,41.718921516],[-71.533902556,41.720936516],[-71.533924555,41.721091516],[-71.534034556,41.721664516],[-71.533972555,41.721849516],[-71.533905555,41.722085516],[-71.533905555,41.722749516],[-71.533917556,41.723029516],[-71.533924555,41.723053516],[-71.534120555,41.723930517],[-71.533870555,41.724520517],[-71.533885555,41.724597517],[-71.533928555,41.724906517],[-71.534018556,41.726018517],[-71.534013556,41.726092517],[-71.534011556,41.726149517],[-71.533994556,41.726519517],[-71.533969556,41.727032517],[-71.533970556,41.727035517],[-71.533969556,41.727039517],[-71.533972556,41.727060517],[-71.534098556,41.727757518],[-71.534101556,41.727785517],[-71.534106556,41.727809517],[-71.534030556,41.728644517],[-71.534016556,41.728799517],[-71.534005556,41.729388518],[-71.534011556,41.729757518],[-71.534015556,41.729922518],[-71.534020556,41.730189518],[-71.534286556,41.730179517]]]]}}"}, +{"type": "precinct", "typeId": 604, "areaId": 25693, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":32,\"NAME\":\"0604\",\"SHAPE_Length\":0.084977643561648,\"SHAPE_Area\":-0.00039535879722248},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.532632553,41.679814508],[-71.532961553,41.679736508],[-71.533244553,41.679701508],[-71.533844554,41.679634508],[-71.534470553,41.679566508],[-71.534935554,41.679510508],[-71.535286554,41.679467508],[-71.535705554,41.679412508],[-71.536026554,41.679378507],[-71.536140554,41.679367508],[-71.536308554,41.679354508],[-71.536514554,41.679340507],[-71.536758554,41.679326508],[-71.537056554,41.679338507],[-71.537430555,41.679365508],[-71.537629554,41.679389508],[-71.537743555,41.679403508],[-71.538276554,41.679495507],[-71.538574555,41.679556507],[-71.538834555,41.679640508],[-71.538956554,41.679678508],[-71.539345555,41.679805508],[-71.539711555,41.679972508],[-71.540085556,41.680162508],[-71.540726556,41.680571508],[-71.541077556,41.680834508],[-71.541679556,41.681248508],[-71.541756556,41.681296508],[-71.542191556,41.681597508],[-71.542694556,41.681937508],[-71.543221557,41.682272508],[-71.543739556,41.682594509],[-71.543938557,41.682720508],[-71.544228557,41.682898508],[-71.544624557,41.683160508],[-71.544975557,41.683382508],[-71.545288557,41.683586509],[-71.545906557,41.684001508],[-71.546387557,41.684328509],[-71.546410557,41.684336508],[-71.546570558,41.684441509],[-71.546844558,41.684619509],[-71.547142558,41.684775509],[-71.547524558,41.684946509],[-71.547920558,41.685109509],[-71.548271558,41.685209508],[-71.548653558,41.685304509],[-71.548684559,41.685308508],[-71.549050559,41.685358509],[-71.549423559,41.685368508],[-71.549774559,41.685347508],[-71.550049559,41.685318509],[-71.550354559,41.685248508],[-71.550735559,41.685141509],[-71.551186559,41.685023508],[-71.551712559,41.684880508],[-71.55178556,41.684859508],[-71.551676559,41.684506508],[-71.551643559,41.684400508],[-71.551781559,41.684321508],[-71.55205556,41.684233508],[-71.55229256,41.684147508],[-71.552475559,41.684152509],[-71.55268156,41.684102508],[-71.55303256,41.684023508],[-71.55339056,41.683947508],[-71.553581559,41.683893508],[-71.55365056,41.683878508],[-71.55378756,41.683803509],[-71.55384856,41.683689508],[-71.55394056,41.683498508],[-71.55401656,41.683276508],[-71.55413856,41.682989508],[-71.55423056,41.682681508],[-71.55432156,41.682508508],[-71.55435256,41.682449508],[-71.55445156,41.682280508],[-71.55458156,41.682223508],[-71.55477956,41.682029507],[-71.55480256,41.681975507],[-71.55479456,41.681916507],[-71.55475656,41.681859507],[-71.55459656,41.681763508],[-71.55448956,41.681784508],[-71.55434456,41.681665508],[-71.55445156,41.681555508],[-71.55461156,41.681461508],[-71.55467056,41.681422508],[-71.554848561,41.681307508],[-71.555023561,41.681470507],[-71.55513056,41.681540508],[-71.55521456,41.681565507],[-71.55539756,41.681534508],[-71.55557356,41.681390507],[-71.555725561,41.681189508],[-71.555840561,41.681272507],[-71.55593156,41.681193507],[-71.556213561,41.681002507],[-71.55629756,41.680951508],[-71.556671561,41.680659508],[-71.556915561,41.680464508],[-71.55690056,41.680226507],[-71.556793561,41.680165507],[-71.556671561,41.680056508],[-71.55664856,41.679993507],[-71.55674056,41.679919508],[-71.556809561,41.679773507],[-71.556831561,41.679633507],[-71.556908561,41.679321507],[-71.556946561,41.679149507],[-71.55690056,41.679001507],[-71.556930561,41.678811507],[-71.55687756,41.678578507],[-71.55676356,41.678500507],[-71.556595561,41.678202507],[-71.55633556,41.677672507],[-71.55616056,41.677365507],[-71.55614556,41.677325507],[-71.55637156,41.677275507],[-71.55629756,41.677128507],[-71.556053561,41.676714507],[-71.55577156,41.676230507],[-71.55564956,41.675940507],[-71.55538256,41.675460506],[-71.55515356,41.675023507],[-71.55492456,41.674596507],[-71.55481756,41.674414506],[-71.55461156,41.673991506],[-71.55451256,41.673795506],[-71.55441356,41.673621506],[-71.554245559,41.673296506],[-71.554192559,41.673198506],[-71.55400856,41.672842506],[-71.553779559,41.672465506],[-71.553536559,41.672029506],[-71.553459559,41.671904506],[-71.553352559,41.671740506],[-71.553101559,41.671318506],[-71.552811559,41.670851506],[-71.552648559,41.670584505],[-71.552559559,41.670438506],[-71.552345559,41.670128506],[-71.552086558,41.669692505],[-71.551666559,41.668959506],[-71.551544558,41.668723505],[-71.551407558,41.668478505],[-71.551262558,41.668238505],[-71.551117558,41.668048505],[-71.550934558,41.667836505],[-71.550700558,41.667637505],[-71.550674558,41.667616505],[-71.550362558,41.667384505],[-71.549995557,41.667185505],[-71.549614558,41.667018505],[-71.549232557,41.666910505],[-71.548805557,41.666798504],[-71.548424557,41.666702505],[-71.547981557,41.666568505],[-71.547561557,41.666415505],[-71.547218557,41.666265505],[-71.546791557,41.666063505],[-71.546432556,41.665850505],[-71.546051557,41.665593505],[-71.545731556,41.665357504],[-71.545357556,41.665046504],[-71.544975556,41.664743505],[-71.544838556,41.664629505],[-71.544601556,41.664428505],[-71.544197556,41.664099505],[-71.543854555,41.663827505],[-71.543785556,41.663770505],[-71.543320556,41.663384505],[-71.542953555,41.663100504],[-71.543327555,41.662808504],[-71.543709556,41.662502504],[-71.544121556,41.662160504],[-71.544281555,41.662034504],[-71.544315556,41.662007504],[-71.541633555,41.662098504],[-71.533201552,41.662274504],[-71.532306551,41.662283505],[-71.532310552,41.662515504],[-71.532326551,41.663722505],[-71.532345551,41.664382505],[-71.532371552,41.665747505],[-71.532374552,41.666224505],[-71.532376552,41.666340505],[-71.532380552,41.666565505],[-71.532386552,41.666917505],[-71.532409552,41.667272505],[-71.532408552,41.668032505],[-71.532408552,41.669300506],[-71.532410552,41.670218506],[-71.532406552,41.671806507],[-71.532406552,41.671991506],[-71.532406552,41.672499506],[-71.532406552,41.673349507],[-71.532430552,41.673895507],[-71.532466552,41.674686507],[-71.532516553,41.675772507],[-71.532632553,41.679814508]]]]}}"}, +{"type": "precinct", "typeId": 605, "areaId": 25698, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":37,\"NAME\":\"0605\",\"SHAPE_Length\":0.25201490052355,\"SHAPE_Area\":-0.0024063919710274},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.628486587,41.727919514],[-71.633271588,41.727897514],[-71.633400589,41.727900514],[-71.637321589,41.727968514],[-71.637364589,41.727921514],[-71.63743059,41.727885514],[-71.637498589,41.727841514],[-71.63754759,41.727821514],[-71.640686591,41.727761514],[-71.64126159,41.727756514],[-71.642631591,41.727743514],[-71.644155592,41.727729514],[-71.648881594,41.727683513],[-71.658965597,41.727571513],[-71.661185598,41.727550513],[-71.661649598,41.727547513],[-71.662193598,41.727539513],[-71.663045598,41.727532513],[-71.665013599,41.727515513],[-71.665967599,41.727506514],[-71.667802599,41.727490513],[-71.6684346,41.727484513],[-71.6702646,41.727422513],[-71.6716846,41.727375513],[-71.673166601,41.727324513],[-71.679703603,41.727192513],[-71.684517605,41.727094513],[-71.685104605,41.727082512],[-71.686670606,41.727048512],[-71.696541609,41.726829512],[-71.70058461,41.726739512],[-71.70058561,41.724859511],[-71.70060061,41.722954511],[-71.70061561,41.721420511],[-71.70061661,41.721396511],[-71.70062261,41.721040511],[-71.700623609,41.720085511],[-71.70063061,41.719567511],[-71.70063061,41.718104511],[-71.70063861,41.71677551],[-71.70063861,41.71484851],[-71.70061561,41.71445751],[-71.70060061,41.714327509],[-71.700585609,41.714169509],[-71.70056161,41.714012509],[-71.700531609,41.71385551],[-71.70048561,41.71360051],[-71.70046161,41.71350151],[-71.700455609,41.713474509],[-71.700340609,41.713081509],[-71.700294609,41.712965509],[-71.70024961,41.71284051],[-71.700203609,41.71272451],[-71.70011161,41.712519509],[-71.700066609,41.712416509],[-71.699669609,41.711606509],[-71.699364609,41.710974509],[-71.699356609,41.710952509],[-71.699089609,41.710400509],[-71.698738609,41.709656509],[-71.698178609,41.708491509],[-71.697495608,41.707087509],[-71.697174608,41.706387508],[-71.696419608,41.704834508],[-71.695892607,41.703734507],[-71.695175607,41.702264507],[-71.695160607,41.702220507],[-71.694313607,41.700402507],[-71.694275607,41.700331507],[-71.694198607,41.700103507],[-71.694168606,41.699992507],[-71.694130606,41.699889507],[-71.694069607,41.699679507],[-71.694046607,41.699576507],[-71.694016606,41.699473507],[-71.693993606,41.699365507],[-71.693970607,41.699262507],[-71.693939606,41.699047507],[-71.693924607,41.698957506],[-71.693916606,41.698863507],[-71.693909607,41.698764506],[-71.693901606,41.698683506],[-71.693894607,41.698593507],[-71.693893607,41.698508506],[-71.693855607,41.698081506],[-71.693802606,41.697325506],[-71.693748606,41.696620506],[-71.693695607,41.695941506],[-71.693649606,41.695442506],[-71.693611606,41.694952506],[-71.693585606,41.694458506],[-71.693580606,41.694377506],[-71.693527606,41.693662506],[-71.693504607,41.693389506],[-71.693474606,41.693042506],[-71.693459606,41.692862506],[-71.693456606,41.692816505],[-71.693413606,41.692138505],[-71.693405606,41.692080505],[-71.693359606,41.691545506],[-71.693329606,41.691145505],[-71.693322606,41.691037506],[-71.693276606,41.691038506],[-71.693230606,41.691035506],[-71.693085606,41.691038506],[-71.692825605,41.691040505],[-71.692185605,41.691041505],[-71.692040606,41.691040505],[-71.690857605,41.691041505],[-71.689506605,41.691041505],[-71.688133604,41.691028505],[-71.686218603,41.691019505],[-71.684624603,41.691015506],[-71.682503603,41.690997506],[-71.682373602,41.690989506],[-71.682236602,41.690981505],[-71.680733601,41.690985505],[-71.679245602,41.690983505],[-71.678100601,41.690974506],[-71.676048601,41.690963505],[-71.6759496,41.690961505],[-71.674317599,41.690959506],[-71.6742176,41.690983506],[-71.6742256,41.691024506],[-71.674240599,41.691149506],[-71.6742176,41.691204506],[-71.6741496,41.691251506],[-71.6740806,41.691284506],[-71.6740036,41.691317506],[-71.673950599,41.691359506],[-71.6738976,41.691410506],[-71.673828599,41.691452506],[-71.6737446,41.691490506],[-71.6736916,41.691500506],[-71.673653599,41.691514506],[-71.673561599,41.691535506],[-71.673477599,41.691550506],[-71.6733786,41.691561506],[-71.6731806,41.691593506],[-71.673096599,41.691595506],[-71.673019599,41.691565506],[-71.672951599,41.691531506],[-71.672882599,41.691487506],[-71.672767599,41.691382506],[-71.672684599,41.691348506],[-71.672600599,41.691327506],[-71.672523599,41.691302506],[-71.672447599,41.691290506],[-71.672371599,41.691292505],[-71.672142599,41.691284506],[-71.672058599,41.691286506],[-71.671936599,41.691284506],[-71.671829599,41.691305506],[-71.671768599,41.691374506],[-71.671745599,41.691424506],[-71.671784599,41.691472506],[-71.671822599,41.691525506],[-71.671837599,41.691611506],[-71.671799599,41.691675506],[-71.671692599,41.691781506],[-71.671615599,41.691836506],[-71.671555599,41.691874506],[-71.671509598,41.691911506],[-71.671486599,41.691957506],[-71.671494599,41.692015506],[-71.671524599,41.692082506],[-71.671547598,41.692140506],[-71.671562599,41.692216506],[-71.671555599,41.692270506],[-71.671562599,41.692338506],[-71.671562599,41.692410506],[-71.671539599,41.692460507],[-71.671478599,41.692520507],[-71.671425599,41.692579506],[-71.671318599,41.692640506],[-71.671288599,41.692641506],[-71.671203599,41.692657506],[-71.670814599,41.692666506],[-71.670738599,41.692667506],[-71.670647599,41.692656507],[-71.670570599,41.692658506],[-71.670487599,41.692655507],[-71.670418598,41.692643506],[-71.670303598,41.692664506],[-71.670197599,41.692621506],[-71.670128598,41.692583506],[-71.670059599,41.692512506],[-71.670013598,41.692455506],[-71.669945599,41.692407506],[-71.669899598,41.692358506],[-71.669853598,41.692314506],[-71.669838598,41.692252506],[-71.669838598,41.692193506],[-71.669830598,41.692126506],[-71.669785598,41.692068506],[-71.669716598,41.691993507],[-71.669655598,41.691941506],[-71.669609598,41.691897506],[-71.669563598,41.691848506],[-71.669518598,41.691804506],[-71.669479598,41.691756506],[-71.669518598,41.691710506],[-71.669563598,41.691659506],[-71.669594599,41.691604506],[-71.669632599,41.691549506],[-71.669663598,41.691499506],[-71.669640598,41.691459506],[-71.669563598,41.691398506],[-71.669495598,41.691377506],[-71.669399598,41.691372506],[-71.669342599,41.691367506],[-71.669258598,41.691351506],[-71.669129598,41.691340506],[-71.669067598,41.691351506],[-71.669029598,41.691401506],[-71.668953598,41.691435506],[-71.668884598,41.691454506],[-71.668785598,41.691483506],[-71.668732598,41.691480506],[-71.668678598,41.691445506],[-71.668602597,41.691443506],[-71.668320598,41.691449506],[-71.668221598,41.691474506],[-71.668121598,41.691490506],[-71.668007598,41.691520506],[-71.667938598,41.691566506],[-71.667877598,41.691590506],[-71.667671597,41.691586506],[-71.667580598,41.691606506],[-71.667496597,41.691630506],[-71.667397597,41.691642507],[-71.667320597,41.691644506],[-71.667236598,41.691641507],[-71.667160597,41.691643506],[-71.667084597,41.691609506],[-71.667015597,41.691588506],[-71.666901598,41.691640506],[-71.666840597,41.691610506],[-71.666801597,41.691593506],[-71.666710597,41.691631506],[-71.666641597,41.691673506],[-71.666588597,41.691679506],[-71.666512598,41.691644506],[-71.666451597,41.691610506],[-71.666367597,41.691607506],[-71.666298597,41.691636506],[-71.666199597,41.691683506],[-71.666016597,41.691687506],[-71.665932597,41.691685506],[-71.665856597,41.691687506],[-71.665779597,41.691697506],[-71.665749597,41.691725506],[-71.665711597,41.691784506],[-71.665665597,41.691831506],[-71.665581597,41.691878506],[-71.665481597,41.691925506],[-71.665398597,41.691967506],[-71.665329597,41.692000506],[-71.665268596,41.692051507],[-71.665192596,41.692112506],[-71.665169597,41.692135506],[-71.665184597,41.692202506],[-71.665207597,41.692255506],[-71.665237597,41.692313506],[-71.665245597,41.692385506],[-71.665238597,41.692439507],[-71.665176597,41.692499507],[-71.665123597,41.692564506],[-71.665062597,41.692610506],[-71.665001597,41.692648506],[-71.664917596,41.692672507],[-71.664803596,41.692679506],[-71.664726596,41.692676507],[-71.664642597,41.692683506],[-71.664558597,41.692680506],[-71.664444597,41.692665506],[-71.664353596,41.692667506],[-71.664253596,41.692683506],[-71.664108597,41.692686506],[-71.664055597,41.692705506],[-71.664032597,41.692859506],[-71.663963596,41.692888507],[-71.663894597,41.692939506],[-71.663872596,41.692998507],[-71.663841597,41.693053506],[-71.663765596,41.693095507],[-71.663689596,41.693056507],[-71.663650596,41.693003507],[-71.663666597,41.692944507],[-71.663666597,41.692881506],[-71.663643597,41.692850507],[-71.663582596,41.692825507],[-71.663612596,41.692774506],[-71.663589597,41.692707507],[-71.663567597,41.692649507],[-71.663551596,41.692573507],[-71.663544596,41.692510506],[-71.663521596,41.692443506],[-71.663498596,41.692394506],[-71.663460596,41.692337506],[-71.663452597,41.692278506],[-71.663467596,41.692201506],[-71.663490597,41.692138506],[-71.663536596,41.692096506],[-71.663582596,41.692059506],[-71.663658596,41.692003506],[-71.663719596,41.691970507],[-71.663803597,41.691923506],[-71.663834596,41.691900506],[-71.663803597,41.691851506],[-71.663734596,41.691817507],[-71.663635596,41.691774506],[-71.663551596,41.691713506],[-71.663521596,41.691664506],[-71.663467596,41.691598506],[-71.663399596,41.691532506],[-71.663353596,41.691483507],[-71.663262596,41.691423506],[-71.663185596,41.691393506],[-71.663101596,41.691390506],[-71.663002596,41.691388507],[-71.662926596,41.691390506],[-71.662842596,41.691378506],[-71.662804596,41.691312506],[-71.662743596,41.691241506],[-71.662689596,41.691202506],[-71.662643596,41.691203506],[-71.662575596,41.691227506],[-71.662498595,41.691238506],[-71.662422595,41.691203506],[-71.662354596,41.691187506],[-71.662277596,41.691175506],[-71.662247595,41.691162506],[-71.662224596,41.691100506],[-71.662208595,41.691069506],[-71.662193596,41.691042506],[-71.662171596,41.690979507],[-71.662124596,41.690936506],[-71.661964596,41.690867506],[-71.661873596,41.690860506],[-71.661796595,41.690849506],[-71.661735596,41.690814506],[-71.661697596,41.690761506],[-71.661629596,41.690722506],[-71.661415595,41.690668506],[-71.661339596,41.690652506],[-71.661140595,41.690643506],[-71.661064595,41.690645506],[-71.660950595,41.690625506],[-71.660873595,41.690600506],[-71.660835595,41.690560506],[-71.660805595,41.690502506],[-71.660751595,41.690467506],[-71.660683596,41.690478506],[-71.660591595,41.690507506],[-71.660522595,41.690518506],[-71.660446595,41.690520506],[-71.660400595,41.690467506],[-71.660347595,41.690409506],[-71.660278595,41.690357506],[-71.660194595,41.690314506],[-71.660133595,41.690324506],[-71.659988595,41.690355507],[-71.659904595,41.690375507],[-71.659836595,41.690403506],[-71.659798595,41.690449506],[-71.659721595,41.690496506],[-71.659538595,41.690500506],[-71.659508595,41.690501506],[-71.659370595,41.690517506],[-71.659302594,41.690533506],[-71.659218595,41.690530507],[-71.659126594,41.690514506],[-71.659073595,41.690470506],[-71.659004595,41.690449506],[-71.658928595,41.690429506],[-71.658859595,41.690399506],[-71.658707595,41.690357506],[-71.658638594,41.690323506],[-71.658569595,41.690284506],[-71.658470594,41.690169506],[-71.658394595,41.690157506],[-71.658318595,41.690150506],[-71.658264595,41.690093506],[-71.658211594,41.690053506],[-71.658157594,41.689996506],[-71.658150594,41.689924506],[-71.658195594,41.689784506],[-71.658226595,41.689724506],[-71.658234594,41.689675506],[-71.658188594,41.689622506],[-71.658112594,41.689601506],[-71.658028595,41.689621506],[-71.657906594,41.689633506],[-71.657829594,41.689621506],[-71.657745594,41.689600506],[-71.657692594,41.689575506],[-71.657532594,41.689493506],[-71.657440594,41.689490506],[-71.657311594,41.689493506],[-71.657211594,41.689491506],[-71.657127594,41.689475506],[-71.656967594,41.689447506],[-71.656883594,41.689440506],[-71.656815594,41.689437506],[-71.656738594,41.689439506],[-71.656616594,41.689437506],[-71.656525594,41.689440506],[-71.656441594,41.689437506],[-71.656334594,41.689426506],[-71.656250594,41.689419506],[-71.656166594,41.689421506],[-71.656074594,41.689418506],[-71.655983594,41.689421506],[-71.655899594,41.689418506],[-71.655754593,41.689421506],[-71.655647594,41.689419506],[-71.655564593,41.689421506],[-71.655495594,41.689463506],[-71.655472594,41.689522506],[-71.655472594,41.689896506],[-71.655464593,41.689955506],[-71.655426593,41.690028506],[-71.655365593,41.690074506],[-71.655281594,41.690121507],[-71.655213593,41.690172506],[-71.655144594,41.690210506],[-71.655075593,41.690234506],[-71.654984594,41.690263506],[-71.654915593,41.690292506],[-71.654823593,41.690316507],[-71.654732594,41.690337506],[-71.654663593,41.690352507],[-71.654579594,41.690358506],[-71.654511593,41.690373507],[-71.654434593,41.690375507],[-71.654343593,41.690373507],[-71.654251593,41.690375507],[-71.654152593,41.690372507],[-71.654015593,41.690371507],[-71.653954593,41.690355507],[-71.653908593,41.690329506],[-71.653923593,41.690261506],[-71.653915593,41.690166506],[-71.653900593,41.690081507],[-71.653809593,41.690065506],[-71.653725593,41.690063507],[-71.653648593,41.689965507],[-71.653572593,41.689940506],[-71.653503593,41.689915506],[-71.653389593,41.689917506],[-71.653328593,41.689905507],[-71.653274592,41.689857506],[-71.653206593,41.689818506],[-71.653130593,41.689784506],[-71.653076593,41.689744506],[-71.652962592,41.689715506],[-71.652794593,41.689692507],[-71.652710592,41.689667506],[-71.652672592,41.689623506],[-71.652633592,41.689574507],[-71.652580592,41.689553506],[-71.652504593,41.689546506],[-71.652458592,41.689543506],[-71.652435592,41.689561506],[-71.652382592,41.689585506],[-71.652298592,41.689587506],[-71.652214593,41.689625506],[-71.652115592,41.689672507],[-71.652084592,41.689695506],[-71.651955592,41.689694506],[-71.651894592,41.689686506],[-71.651840592,41.689615506],[-71.651833592,41.689593507],[-71.651761592,41.689589506],[-71.651710593,41.689587506],[-71.651375592,41.689581506],[-71.651314592,41.689605506],[-71.651352592,41.689613507],[-71.651337592,41.689685506],[-71.651306592,41.689736506],[-71.651230592,41.689751507],[-71.651100592,41.689781506],[-71.651024592,41.689805507],[-71.650948592,41.689821506],[-71.650734592,41.689825507],[-71.650662592,41.689824507],[-71.650620592,41.689824507],[-71.650536592,41.689826507],[-71.650467591,41.689823506],[-71.650391592,41.689824507],[-71.650230592,41.689819506],[-71.650146592,41.689812506],[-71.650147592,41.689744506],[-71.650200592,41.689631507],[-71.650215591,41.689576506],[-71.650230592,41.689513507],[-71.650116591,41.689502506],[-71.650017591,41.689504506],[-71.649940591,41.689502506],[-71.649742592,41.689475507],[-71.649658592,41.689468506],[-71.649590591,41.689456507],[-71.649521592,41.689426506],[-71.649467592,41.689386506],[-71.649399591,41.689347506],[-71.649300591,41.689314506],[-71.649261591,41.689243507],[-71.649216592,41.689199506],[-71.649147591,41.689169506],[-71.649010591,41.689172506],[-71.649033591,41.689113506],[-71.649040592,41.689054506],[-71.649056592,41.688986506],[-71.649017592,41.688937506],[-71.648872591,41.688882506],[-71.648788591,41.688862506],[-71.648689592,41.688864506],[-71.648605591,41.688861506],[-71.648499591,41.688868506],[-71.648422591,41.688897506],[-71.648354591,41.688921506],[-71.648270591,41.688932507],[-71.648094591,41.688936506],[-71.647987591,41.688916506],[-71.647911591,41.688895506],[-71.647835591,41.688884506],[-71.647743591,41.688877506],[-71.647659591,41.688879506],[-71.647583591,41.688871507],[-71.647507591,41.688828506],[-71.647453591,41.688766506],[-71.647377591,41.688692506],[-71.647339591,41.688629506],[-71.647293591,41.688594506],[-71.647186591,41.688543506],[-71.647118591,41.688490506],[-71.64707259,41.688437506],[-71.64701959,41.688385507],[-71.646973591,41.688327507],[-71.64693559,41.688242506],[-71.64691959,41.688189506],[-71.64689659,41.688135506],[-71.64685859,41.688082506],[-71.646835591,41.688029506],[-71.64680559,41.687971506],[-71.646774591,41.687881506],[-71.64672159,41.687806506],[-71.64665259,41.687745506],[-71.646599591,41.687696506],[-71.64650759,41.687617506],[-71.64647759,41.687542506],[-71.64647759,41.687478506],[-71.646408591,41.687435506],[-71.64633259,41.687392506],[-71.64626359,41.687339506],[-71.64621759,41.687277506],[-71.646210591,41.687205506],[-71.64621759,41.687129506],[-71.64615659,41.687081506],[-71.64607259,41.687028506],[-71.645996591,41.686999506],[-71.64590559,41.686983505],[-71.64578259,41.686977506],[-71.64569959,41.686979506],[-71.64559959,41.686976506],[-71.64551559,41.686942506],[-71.64540959,41.686882506],[-71.64532559,41.686870506],[-71.64527959,41.686894506],[-71.64524859,41.686966506],[-71.64524859,41.687038506],[-71.64521059,41.687093506],[-71.64513459,41.687113506],[-71.64506559,41.687106506],[-71.64498959,41.687026506],[-71.644966589,41.687000506],[-71.64495159,41.686933506],[-71.64495159,41.686865505],[-71.64488259,41.686858506],[-71.64485959,41.686867506],[-71.64485259,41.686944506],[-71.64485959,41.687002506],[-71.64485159,41.687030506],[-71.64485259,41.687066506],[-71.644829589,41.687120506],[-71.64480659,41.687193506],[-71.644791589,41.687256506],[-71.64478359,41.687315506],[-71.64478359,41.687396506],[-71.64477559,41.687473506],[-71.64476059,41.687586506],[-71.644752589,41.687662506],[-71.64475359,41.687757506],[-71.64474559,41.687820507],[-71.64468459,41.687880506],[-71.64458559,41.687941506],[-71.64456959,41.687995507],[-71.64448559,41.688128506],[-71.644440589,41.688183506],[-71.644363589,41.688320506],[-71.64430259,41.688380506],[-71.64423459,41.688435506],[-71.64420359,41.688490506],[-71.64416559,41.688549506],[-71.644112589,41.688618507],[-71.64404359,41.688665506],[-71.64395159,41.688721506],[-71.64389059,41.688754507],[-71.64381459,41.688787506],[-71.64371559,41.688803506],[-71.643623589,41.688800506],[-71.64351659,41.688798506],[-71.643471589,41.688840506],[-71.64341859,41.688886506],[-71.64337959,41.688955506],[-71.64336459,41.689077506],[-71.643318589,41.689096506],[-71.64324259,41.689106507],[-71.643181589,41.689090506],[-71.643143589,41.689032506],[-71.643135589,41.688965507],[-71.643120589,41.688893507],[-71.643120589,41.688803506],[-71.64312759,41.688740506],[-71.64312859,41.688663506],[-71.64312759,41.688578507],[-71.64312859,41.688528506],[-71.643143589,41.688433506],[-71.643143589,41.688384507],[-71.64308959,41.688353506],[-71.643005589,41.688315506],[-71.64293759,41.688289506],[-71.642883589,41.688250506],[-71.64283759,41.688206506],[-71.642692589,41.688151507],[-71.64262459,41.688121506],[-71.642548589,41.688078506],[-71.642509589,41.688020506],[-71.642502589,41.687962506],[-71.642487589,41.687899506],[-71.642441589,41.687833506],[-71.642403589,41.687766506],[-71.642387589,41.687699506],[-71.642388589,41.687032506],[-71.642387589,41.686965506],[-71.642395589,41.686847506],[-71.642395589,41.686789506],[-71.642334589,41.686732506],[-71.642265589,41.686666506],[-71.642204589,41.686613506],[-71.642097589,41.686575506],[-71.642029589,41.686523506],[-71.642021588,41.686469506],[-71.642006589,41.686388506],[-71.641945589,41.686344506],[-71.641739589,41.686282506],[-71.641640589,41.686248506],[-71.641411589,41.686172506],[-71.641357589,41.686160506],[-71.641274589,41.686121506],[-71.641212589,41.686087506],[-71.641152589,41.686056506],[-71.641090588,41.686022506],[-71.641014588,41.686010506],[-71.640953588,41.686034506],[-71.640946589,41.686052506],[-71.640915588,41.686089506],[-71.640907589,41.686161506],[-71.640930588,41.686224506],[-71.640961589,41.686272506],[-71.640983589,41.686308506],[-71.640999589,41.686330506],[-71.641075589,41.686378506],[-71.641190589,41.686429506],[-71.641273589,41.686468506],[-71.641350589,41.686525506],[-71.641357589,41.686588506],[-71.641411589,41.686676506],[-71.641472589,41.686761506],[-71.641502589,41.686895506],[-71.641571589,41.686961506],[-71.641648589,41.687013506],[-71.641663589,41.687035506],[-71.641678589,41.687067506],[-71.641724589,41.687120506],[-71.641815589,41.687171506],[-71.641899589,41.687237506],[-71.641945589,41.687295506],[-71.641998589,41.687338506],[-71.642067589,41.687391507],[-71.642120589,41.687453506],[-71.642120589,41.687709506],[-71.641983589,41.687807506],[-71.641952589,41.687884506],[-71.642006589,41.688018506],[-71.642044589,41.688085506],[-71.642120589,41.688137506],[-71.642166589,41.688199506],[-71.642196589,41.688261506],[-71.642250589,41.688319506],[-71.642281589,41.688372506],[-71.642288589,41.688444507],[-71.642273589,41.688507506],[-71.642258589,41.688584506],[-71.642258589,41.688643506],[-71.642281589,41.688701506],[-71.642303589,41.688790507],[-71.642327589,41.688871507],[-71.642342589,41.688943506],[-71.642372589,41.689050506],[-71.642387589,41.689108506],[-71.642418589,41.689161507],[-71.642456589,41.689210506],[-71.642502589,41.689272506],[-71.64256359,41.689311506],[-71.642601589,41.689364506],[-71.642654589,41.689440506],[-71.642716589,41.689497507],[-71.64277659,41.689558506],[-71.64283759,41.689611507],[-71.642899589,41.689641506],[-71.642967589,41.689689507],[-71.642998589,41.689797506],[-71.64299059,41.689851506],[-71.64301359,41.689904507],[-71.64302859,41.690021507],[-71.64302859,41.690089506],[-71.643021589,41.690188507],[-71.642983589,41.690234507],[-71.642929589,41.690302506],[-71.64289159,41.690366507],[-71.642868589,41.690439506],[-71.64285359,41.690507507],[-71.642822589,41.690562507],[-71.64279959,41.690616507],[-71.642769589,41.690680507],[-71.642723589,41.690726507],[-71.642654589,41.690782507],[-71.642593589,41.690819507],[-71.642532589,41.690888507],[-71.642479589,41.690939507],[-71.642418589,41.690967507],[-71.64234959,41.690982506],[-71.642265589,41.690989507],[-71.642189589,41.690981506],[-71.642105589,41.690965507],[-71.642036589,41.690917507],[-71.641975589,41.690878507],[-71.641922589,41.690812507],[-71.641739589,41.690744507],[-71.641640589,41.690724507],[-71.641556589,41.690726507],[-71.641480589,41.690723507],[-71.641388589,41.690725507],[-71.641075589,41.690719507],[-71.640991589,41.690721507],[-71.640892588,41.690719507],[-71.640785589,41.690721507],[-71.640716588,41.690718507],[-71.640633589,41.690738507],[-71.640480588,41.690782507],[-71.640388588,41.690825506],[-71.640366588,41.690870507],[-71.640358589,41.690938507],[-71.640358589,41.691127507],[-71.640350588,41.691213507],[-71.640335589,41.691312506],[-71.640320589,41.691439507],[-71.640312589,41.691497507],[-71.640305588,41.691583507],[-71.640304589,41.691673507],[-71.640305588,41.691750507],[-71.640198589,41.691748507],[-71.640099589,41.691714507],[-71.640037588,41.691679507],[-71.639954588,41.691677507],[-71.639892589,41.691696507],[-71.639831589,41.691747507],[-71.639771589,41.691803507],[-71.639702588,41.691854507],[-71.639618589,41.691887507],[-71.639549588,41.691907507],[-71.639458588,41.691904507],[-71.639435588,41.691882507],[-71.639404589,41.691847507],[-71.639343588,41.691767507],[-71.639297588,41.691701507],[-71.639282588,41.691643507],[-71.639282588,41.691485507],[-71.639275588,41.691391507],[-71.639282588,41.691309507],[-71.639282588,41.691201507],[-71.639274588,41.691147507],[-71.639275588,41.691125507],[-71.639267589,41.691067507],[-71.639244588,41.691031507],[-71.639191589,41.690987507],[-71.639145588,41.690939507],[-71.639107588,41.690922506],[-71.639008588,41.690924507],[-71.638908588,41.690922506],[-71.638832588,41.690955507],[-71.638763588,41.690979507],[-71.638649588,41.691000506],[-71.638588588,41.691033507],[-71.638535588,41.691079507],[-71.638481588,41.691058506],[-71.638435588,41.691018507],[-71.638397588,41.690947507],[-71.638328588,41.690890507],[-71.638252588,41.690878507],[-71.638168588,41.690889507],[-71.638107588,41.690931507],[-71.638062587,41.690977507],[-71.638008588,41.691023507],[-71.637939588,41.691048507],[-71.637863588,41.691054507],[-71.637756588,41.691052507],[-71.637680588,41.691063507],[-71.637581588,41.691096507],[-71.637550588,41.691165507],[-71.637535588,41.691237507],[-71.637497587,41.691283507],[-71.637451588,41.691342507],[-71.637360587,41.691412507],[-71.637314588,41.691476507],[-71.637306587,41.691548507],[-71.637298588,41.691607507],[-71.637283587,41.691689507],[-71.637283587,41.691999507],[-71.637291588,41.692071508],[-71.637322587,41.692129508],[-71.637375588,41.692204507],[-71.637413588,41.692271507],[-71.637451588,41.692374507],[-71.637467588,41.692432507],[-71.637505588,41.692530507],[-71.637543588,41.692633507],[-71.637520588,41.692683507],[-71.637451588,41.692729507],[-71.637390588,41.692780507],[-71.637321587,41.692831508],[-71.637306587,41.692949508],[-71.637306587,41.693102508],[-71.637352588,41.693177508],[-71.637398588,41.693217508],[-71.637436588,41.693266507],[-71.637459587,41.693342507],[-71.637466588,41.693441507],[-71.637467588,41.693598507],[-71.637474588,41.693666508],[-71.637543588,41.693691507],[-71.637634587,41.693747508],[-71.637665588,41.693801508],[-71.637673587,41.693909507],[-71.637688588,41.694043507],[-71.637688588,41.694102507],[-71.637672587,41.694179507],[-71.637657588,41.694233508],[-71.637619588,41.694293508],[-71.637589588,41.694370508],[-71.637558588,41.694434507],[-71.637543588,41.694506508],[-71.637543588,41.694578508],[-71.637573588,41.694658508],[-71.637619588,41.694743508],[-71.637650588,41.694810508],[-71.637673588,41.694872508],[-71.637688588,41.695043508],[-71.637703588,41.695097507],[-71.637726588,41.695155507],[-71.637741588,41.695208508],[-71.637749588,41.695276508],[-71.637764588,41.695370507],[-71.637795588,41.695423508],[-71.637818588,41.695481508],[-71.637848588,41.695566508],[-71.637856588,41.695674508],[-71.637832588,41.695742508],[-71.637802588,41.695810508],[-71.637848588,41.695868508],[-71.637878588,41.695921508],[-71.637924588,41.696015508],[-71.637932588,41.696078508],[-71.637909588,41.696137508],[-71.637901588,41.696200508],[-71.637893588,41.696254508],[-71.637901588,41.696312508],[-71.637916588,41.696366508],[-71.637939588,41.696429508],[-71.637886589,41.696497508],[-71.637833588,41.696575508],[-71.637802588,41.696625508],[-71.637779588,41.696698508],[-71.637741588,41.696753508],[-71.637695588,41.696799508],[-71.637627588,41.696846508],[-71.637543588,41.696884508],[-71.637436588,41.696913508],[-71.637352588,41.696951508],[-71.637207588,41.697031508],[-71.637131588,41.697051508],[-71.637032588,41.697062508],[-71.637001588,41.697108508],[-71.636978588,41.697158508],[-71.636955588,41.697253508],[-71.636940588,41.697384508],[-71.636932587,41.697469508],[-71.636932587,41.697600508],[-71.636925588,41.697668509],[-71.636925588,41.697997509],[-71.636917588,41.698073509],[-71.636894588,41.698146508],[-71.636864588,41.698291509],[-71.636841588,41.698350509],[-71.636826588,41.698427509],[-71.636810588,41.698517508],[-71.636795587,41.698648508],[-71.636803588,41.698711508],[-71.636803588,41.698873509],[-71.636833588,41.699048509],[-71.636841588,41.699111509],[-71.636818588,41.699161509],[-71.636772588,41.699211508],[-71.636742588,41.699266509],[-71.636696588,41.699335509],[-71.636665588,41.699380509],[-71.636589588,41.699477509],[-71.636566588,41.699549509],[-71.636551588,41.699599509],[-71.636467588,41.699687509],[-71.636421588,41.699764509],[-71.636383588,41.699837508],[-71.636368587,41.699950509],[-71.636345588,41.700005509],[-71.636322588,41.700073509],[-71.636322588,41.700239509],[-71.636299588,41.700303508],[-71.636261588,41.700353509],[-71.636269587,41.700407509],[-71.636315588,41.700456509],[-71.636345588,41.700473509],[-71.636429588,41.700476509],[-71.636490588,41.700452509],[-71.636528588,41.700401508],[-71.636681588,41.700353509],[-71.636787588,41.700332509],[-71.636826588,41.700345509],[-71.636851588,41.700372509],[-71.636864588,41.700430509],[-71.636833588,41.700471509],[-71.636749588,41.700495509],[-71.636688588,41.700524509],[-71.636604588,41.700571509],[-71.636536588,41.700599509],[-71.636421588,41.700633509],[-71.636360588,41.700675509],[-71.636284588,41.700709509],[-71.636207588,41.700737509],[-71.636124588,41.700780509],[-71.636063588,41.700808509],[-71.635971588,41.700824509],[-71.635903587,41.700866509],[-71.635895588,41.700920509],[-71.635941587,41.701027509],[-71.635956587,41.701085509],[-71.636063588,41.701047509],[-71.636162588,41.700995509],[-71.636246588,41.700953509],[-71.636299588,41.700911509],[-71.636360588,41.700855509],[-71.636398588,41.700841509],[-71.636505588,41.700825509],[-71.636528588,41.700847509],[-71.636612588,41.700872509],[-71.636589588,41.700945509],[-71.636589588,41.701044509],[-71.636582588,41.701107509],[-71.636559588,41.701171509],[-71.636528588,41.701225509],[-71.636490588,41.701276509],[-71.636444587,41.701322509],[-71.636383588,41.701355509],[-71.636299588,41.701388509],[-71.636238588,41.701426509],[-71.636156588,41.701493509],[-71.636057587,41.701540509],[-71.635960587,41.701690509],[-71.635958587,41.701695509],[-71.635750588,41.701941509],[-71.635692588,41.702149509],[-71.635603588,41.702317509],[-71.635479588,41.702352509],[-71.635140587,41.702402509],[-71.635132588,41.702491509],[-71.634377587,41.702315509],[-71.633722587,41.702194509],[-71.633629587,41.702183509],[-71.633530587,41.702181509],[-71.633469587,41.702187509],[-71.633331587,41.70219051],[-71.633286587,41.702200509],[-71.633225587,41.702215509],[-71.633125587,41.70223151],[-71.633026587,41.702265509],[-71.632851587,41.702318509],[-71.632606586,41.70242751],[-71.632439587,41.702494509],[-71.632263587,41.702570509],[-71.632019586,41.702648509],[-71.631744586,41.70275351],[-71.631310587,41.702921509],[-71.630905586,41.70304751],[-71.630554586,41.703132509],[-71.630211586,41.70322151],[-71.629921586,41.70329551],[-71.629631586,41.70336051],[-71.629356586,41.703425509],[-71.629029586,41.70350951],[-71.628723585,41.703579509],[-71.628542586,41.703623509],[-71.628391585,41.703660509],[-71.628402586,41.70373151],[-71.628418585,41.70382051],[-71.628395585,41.703875509],[-71.628319585,41.70389551],[-71.628181585,41.70396151],[-71.628113586,41.70405751],[-71.628105585,41.704183509],[-71.628121585,41.70429551],[-71.628166585,41.70442051],[-71.628159585,41.70454751],[-71.628128585,41.70466451],[-71.628120585,41.70477351],[-71.628120585,41.70484551],[-71.628113586,41.70491251],[-71.628135586,41.70496651],[-71.628151586,41.70502051],[-71.628174586,41.70508251],[-71.628174586,41.70524951],[-71.628166585,41.70530751],[-71.628166585,41.70537151],[-71.628159585,41.70542551],[-71.628143585,41.70549351],[-71.628128585,41.70561951],[-71.628128586,41.70575451],[-71.628189586,41.70574851],[-71.628258585,41.70572051],[-71.628410585,41.70568051],[-71.628487585,41.70565651],[-71.628555586,41.70564151],[-71.628639586,41.70563951],[-71.628639586,41.70566151],[-71.628655586,41.70570651],[-71.628708585,41.70575451],[-71.628784585,41.70578051],[-71.628921585,41.70584951],[-71.629005586,41.70587851],[-71.629051586,41.70592751],[-71.629097586,41.70598451],[-71.629166586,41.70603251],[-71.629234586,41.70605351],[-71.629288585,41.70609251],[-71.629295586,41.70614651],[-71.629318586,41.70620451],[-71.629364586,41.70626251],[-71.629394586,41.70632451],[-71.629394586,41.70637851],[-71.629425586,41.70641351],[-71.629463585,41.70645851],[-71.629532586,41.70649251],[-71.629608586,41.70650451],[-71.629684586,41.70652551],[-71.629753586,41.706559511],[-71.629822586,41.70658951],[-71.629906586,41.70661451],[-71.629982586,41.70662151],[-71.630051586,41.70664251],[-71.630142586,41.70667251],[-71.630226586,41.70671051],[-71.630310586,41.70674051],[-71.630386586,41.70677051],[-71.630470586,41.70679951],[-71.630554586,41.706833511],[-71.630623586,41.70686851],[-71.630692586,41.70687551],[-71.630783587,41.70687851],[-71.630875586,41.70690351],[-71.630966586,41.70692351],[-71.631042586,41.706930511],[-71.631119587,41.70693351],[-71.631210587,41.70692651],[-71.631287587,41.70691651],[-71.631370587,41.706891511],[-71.631455586,41.70686251],[-71.631531586,41.70682051],[-71.631607586,41.706814511],[-71.631676587,41.70682651],[-71.631714587,41.70687051],[-71.631706586,41.70693851],[-71.631729586,41.706969511],[-71.631691586,41.70701451],[-71.631630586,41.70705651],[-71.631561587,41.70707651],[-71.631393586,41.70712051],[-71.631294587,41.70713651],[-71.631210587,41.70712951],[-71.631111587,41.70713151],[-71.631035587,41.70712951],[-71.630936586,41.70713551],[-71.630882587,41.70718651],[-71.630852586,41.70723651],[-71.630806587,41.707300511],[-71.630768587,41.70735151],[-71.630752586,41.70741051],[-71.630738586,41.70746951],[-71.630737586,41.70752351],[-71.630752586,41.70757651],[-71.630745587,41.70763551],[-71.630707587,41.70769451],[-71.630653586,41.70774151],[-71.630608587,41.70778251],[-71.630570587,41.707824511],[-71.630539586,41.70787451],[-71.630493587,41.707979511],[-71.630447586,41.708214511],[-71.630386586,41.708503511],[-71.630348586,41.70870751],[-71.630340586,41.70878851],[-71.630348586,41.70886451],[-71.630348586,41.708991511],[-71.630341586,41.70906351],[-71.630341586,41.709189511],[-71.630348586,41.709265511],[-71.630348586,41.709459511],[-71.630363586,41.709522511],[-71.630402586,41.709593511],[-71.630409586,41.709647511],[-71.630424586,41.709700511],[-71.630447586,41.709776511],[-71.630455587,41.70983951],[-71.630455587,41.709970511],[-71.630447586,41.710028511],[-71.630448586,41.710101511],[-71.630486586,41.710154511],[-71.630623587,41.71032651],[-71.630684587,41.710388511],[-71.630737586,41.710450511],[-71.630806587,41.710507511],[-71.630882587,41.710554511],[-71.630951586,41.710589511],[-71.631027586,41.710623511],[-71.631096587,41.710671511],[-71.631157587,41.710715511],[-71.631218586,41.710763511],[-71.631271587,41.710802511],[-71.631287587,41.710851511],[-71.631287587,41.710910511],[-71.631256586,41.711032511],[-71.631256586,41.711091511],[-71.631264587,41.711154511],[-71.631233587,41.711213511],[-71.631165587,41.711264511],[-71.631096587,41.711279511],[-71.631073587,41.711243511],[-71.631050587,41.711185511],[-71.631004586,41.711128511],[-71.630936587,41.711112511],[-71.630851586,41.711100511],[-71.630775586,41.711120511],[-71.630699586,41.711166511],[-71.630577586,41.711232511],[-71.630509587,41.711265511],[-71.630440586,41.711321511],[-71.630417587,41.711389511],[-71.630417587,41.711511511],[-71.630463586,41.711546511],[-71.630539586,41.711530511],[-71.630615586,41.711488511],[-71.630707587,41.711441511],[-71.630791586,41.711426511],[-71.630875587,41.711442511],[-71.630943587,41.711481511],[-71.631027586,41.711510511],[-71.631096587,41.711531511],[-71.631172587,41.711547511],[-71.631325587,41.711571511],[-71.631401587,41.711587511],[-71.631485587,41.711603511],[-71.631676587,41.711630511],[-71.631775587,41.711619511],[-71.631783586,41.711583511],[-71.631721587,41.711535511],[-71.631645587,41.711487511],[-71.631592587,41.711443511],[-71.631531586,41.711409511],[-71.631477587,41.711369511],[-71.631416587,41.711321511],[-71.631363587,41.711268511],[-71.631325587,41.711224511],[-71.631302587,41.711171511],[-71.631340587,41.711138511],[-71.631401587,41.711092511],[-71.631424587,41.711037511],[-71.631470587,41.710987511],[-71.631538587,41.710990511],[-71.631622587,41.710992511],[-71.631683587,41.711013511],[-71.631744586,41.711048511],[-71.631866587,41.711108511],[-71.631943587,41.711138511],[-71.632034587,41.711167511],[-71.632111587,41.711184511],[-71.632210587,41.711204511],[-71.632309587,41.711211511],[-71.632416587,41.711213511],[-71.632461587,41.711216511],[-71.632515587,41.711215511],[-71.632607587,41.711222511],[-71.632683587,41.711234511],[-71.632759587,41.711254511],[-71.632820587,41.711289511],[-71.632927587,41.711386511],[-71.633011587,41.711415511],[-71.633179587,41.711483511],[-71.633240588,41.711523511],[-71.633286587,41.711576511],[-71.633278588,41.711634511],[-71.633278588,41.711706511],[-71.633240588,41.711752511],[-71.633179587,41.711785511],[-71.633110587,41.711836511],[-71.633049588,41.711887511],[-71.632981587,41.711934511],[-71.632919587,41.711980511],[-71.632843587,41.712009511],[-71.632767587,41.712015511],[-71.632668587,41.712004511],[-71.632591587,41.711997511],[-71.632500587,41.712003511],[-71.632462587,41.712018511],[-71.632431587,41.712027511],[-71.632370587,41.712083511],[-71.632339587,41.712138512],[-71.632332587,41.712205511],[-71.632317587,41.712314512],[-71.632286587,41.712364511],[-71.632256587,41.712423511],[-71.632225587,41.712473511],[-71.632179587,41.712533511],[-71.632126587,41.712566512],[-71.632065587,41.712608511],[-71.632027587,41.712672511],[-71.632057587,41.712720512],[-71.632111587,41.712760512],[-71.632177587,41.712798512],[-71.631996587,41.712857512],[-71.631577587,41.712912511],[-71.631500587,41.712909511],[-71.631416587,41.712911511],[-71.631332587,41.712908511],[-71.631249587,41.712888511],[-71.631180586,41.712840512],[-71.631111587,41.712801512],[-71.631020587,41.712794511],[-71.630943587,41.712795511],[-71.630867586,41.712811511],[-71.630783587,41.712840512],[-71.630699587,41.712878512],[-71.630569587,41.712948511],[-71.630485587,41.713000511],[-71.630417587,41.713046511],[-71.630356587,41.713102511],[-71.630287586,41.713157511],[-71.630226586,41.713213511],[-71.630173586,41.713263512],[-71.630119587,41.713278511],[-71.630081587,41.713351511],[-71.630066587,41.713419512],[-71.630051586,41.713496512],[-71.630043587,41.713568511],[-71.630051586,41.713644511],[-71.630051586,41.713762511],[-71.630043587,41.713816512],[-71.630043587,41.713874512],[-71.630013586,41.713934511],[-71.629959586,41.713975511],[-71.629906587,41.714026512],[-71.629898586,41.714085512],[-71.629883587,41.714144512],[-71.629852586,41.714203512],[-71.629829587,41.714271512],[-71.629829587,41.714339512],[-71.629837586,41.714397512],[-71.629845587,41.714464511],[-71.629867587,41.714536512],[-71.629914586,41.714800512],[-71.629921587,41.714858512],[-71.629928587,41.714917512],[-71.629967587,41.714912512],[-71.630020587,41.714965512],[-71.630112586,41.715071512],[-71.630188586,41.715186512],[-71.630226586,41.715248512],[-71.630249587,41.715315512],[-71.630287586,41.715382512],[-71.630325586,41.715444512],[-71.630371587,41.715501512],[-71.630440586,41.715549512],[-71.630463587,41.715616512],[-71.630409587,41.715663512],[-71.630333587,41.715682512],[-71.630249587,41.715684512],[-71.630173587,41.715722512],[-71.630142587,41.715772512],[-71.630135587,41.715840512],[-71.630119587,41.715899512],[-71.630097587,41.715953512],[-71.630081587,41.716012512],[-71.630081587,41.716134512],[-71.630096587,41.716188512],[-71.630119587,41.716250512],[-71.630150586,41.716308512],[-71.630173587,41.716380512],[-71.630173587,41.716447512],[-71.630150586,41.716506512],[-71.630135587,41.716574512],[-71.630172587,41.716627512],[-71.630188586,41.716694512],[-71.630173587,41.716803512],[-71.630173587,41.716861512],[-71.630135587,41.716925512],[-71.630066587,41.716967512],[-71.630012586,41.717023512],[-71.629967587,41.717064512],[-71.629951586,41.717101512],[-71.629952586,41.717168513],[-71.629944587,41.717231512],[-71.629944587,41.717294512],[-71.630005587,41.717446512],[-71.629997587,41.717482513],[-71.629959587,41.717537513],[-71.629890587,41.717584512],[-71.629806587,41.717604512],[-71.629723586,41.717637513],[-71.629662586,41.717679512],[-71.629654587,41.717724512],[-71.629685587,41.717778512],[-71.629722586,41.717822512],[-71.629784587,41.717874512],[-71.629837586,41.717936512],[-71.629845587,41.718008513],[-71.629845587,41.718085513],[-71.629868587,41.718156512],[-71.629906587,41.718218513],[-71.629951586,41.718276513],[-71.629997587,41.718338513],[-71.630028586,41.718409512],[-71.630058587,41.718485512],[-71.630112587,41.718529513],[-71.630173587,41.718568513],[-71.630226587,41.718616512],[-71.630280587,41.718741513],[-71.630280587,41.718813512],[-71.630295587,41.718939513],[-71.630341586,41.719064512],[-71.630363587,41.719145512],[-71.630363587,41.719217513],[-71.630333587,41.719294513],[-71.630272587,41.719358512],[-71.630195587,41.719410513],[-71.630127586,41.719461513],[-71.630089586,41.719511512],[-71.630127586,41.719569513],[-71.630142587,41.719627513],[-71.630119587,41.719690512],[-71.630058587,41.719705513],[-71.629982587,41.719703513],[-71.629898587,41.719714513],[-71.629822587,41.719742513],[-71.629768587,41.719798513],[-71.629745587,41.719852513],[-71.629723587,41.719916513],[-71.629738586,41.719978513],[-71.629799587,41.720027513],[-71.629852586,41.720075513],[-71.629906587,41.720141513],[-71.629944587,41.720203513],[-71.629967587,41.720266513],[-71.629967587,41.720396513],[-71.629959587,41.720460513],[-71.629982587,41.720522513],[-71.630028586,41.720571513],[-71.630058587,41.720624513],[-71.630043587,41.720683513],[-71.630035587,41.720751513],[-71.630020587,41.720814513],[-71.629997587,41.720887513],[-71.629997587,41.720959513],[-71.630043587,41.721007513],[-71.630127587,41.721037513],[-71.630195587,41.721058513],[-71.630234587,41.721102513],[-71.630211587,41.721161513],[-71.630180587,41.721225513],[-71.630127587,41.721266513],[-71.630081587,41.721312513],[-71.630043587,41.721363513],[-71.630043587,41.721421513],[-71.630058587,41.721475513],[-71.630043587,41.721538514],[-71.629997587,41.721548513],[-71.629913587,41.721550513],[-71.629814586,41.721566513],[-71.629799587,41.721630513],[-71.629845587,41.721737513],[-71.629829587,41.721777513],[-71.629753587,41.721793513],[-71.629685587,41.721830514],[-71.629639586,41.721876513],[-71.629631587,41.721926514],[-71.629593587,41.721950513],[-71.629509587,41.721947514],[-71.629494587,41.721988513],[-71.629494587,41.722046513],[-71.629517587,41.722104514],[-71.629532587,41.722158513],[-71.629494587,41.722204513],[-71.629448587,41.722250513],[-71.629425586,41.722323513],[-71.629425586,41.722386513],[-71.629440587,41.722426513],[-71.629501586,41.722460513],[-71.629563587,41.722513514],[-71.629608587,41.722566513],[-71.629616587,41.722624513],[-71.629616587,41.722678513],[-71.629623587,41.722741513],[-71.629685587,41.722780513],[-71.629677586,41.722830513],[-71.629623587,41.722881514],[-71.629555587,41.722919514],[-71.629486587,41.722947513],[-71.629402587,41.722990513],[-71.629333587,41.723014514],[-71.629265587,41.723047513],[-71.629188587,41.723094514],[-71.629150586,41.723144513],[-71.629105587,41.723186513],[-71.629074586,41.723254514],[-71.629074586,41.723321513],[-71.629097586,41.723388514],[-71.629097587,41.723586514],[-71.629090587,41.723654514],[-71.629074586,41.723713514],[-71.629036586,41.723772514],[-71.628975586,41.723814514],[-71.628937586,41.723883513],[-71.628929587,41.723942513],[-71.628937586,41.724004514],[-71.628967587,41.724071514],[-71.629013587,41.724133513],[-71.629059587,41.724191514],[-71.629112586,41.724248514],[-71.629120587,41.724311513],[-71.629089587,41.724361514],[-71.629028587,41.724403514],[-71.628983587,41.724458514],[-71.628975586,41.724539514],[-71.628975586,41.724593514],[-71.628982587,41.724647514],[-71.628998586,41.724701513],[-71.629044587,41.724772514],[-71.629112586,41.724820514],[-71.629196587,41.724854514],[-71.629265587,41.724893514],[-71.629333587,41.724927514],[-71.629387587,41.724962514],[-71.629448587,41.725010514],[-71.629494587,41.725068514],[-71.629524587,41.725130513],[-71.629562587,41.725264513],[-71.629585587,41.725322514],[-71.629616587,41.725385514],[-71.629646587,41.725443514],[-71.629677587,41.725496514],[-71.629707587,41.725545514],[-71.629768587,41.725660514],[-71.629791587,41.725718514],[-71.629814587,41.725786514],[-71.629837587,41.725844514],[-71.629898587,41.725959514],[-71.629921587,41.726017514],[-71.629997587,41.726142514],[-71.630051587,41.726244514],[-71.630066588,41.726275514],[-71.630081587,41.726329514],[-71.630081587,41.726387514],[-71.630073587,41.726446514],[-71.630043587,41.726519514],[-71.629952587,41.726629514],[-71.629913587,41.726679514],[-71.629875587,41.726725514],[-71.629814587,41.726767514],[-71.629753587,41.726814514],[-71.629685587,41.726860514],[-71.629616587,41.726889514],[-71.629570587,41.726957514],[-71.629555587,41.727012514],[-71.629555587,41.727066514],[-71.629547587,41.727147514],[-71.629517587,41.727202514],[-71.629486587,41.727252515],[-71.629440587,41.727307514],[-71.629394587,41.727353514],[-71.629318587,41.727400514],[-71.629272587,41.727446515],[-71.629227587,41.727501514],[-71.629189587,41.727561515],[-71.629143587,41.727616514],[-71.629089587,41.727666514],[-71.629006587,41.727704514],[-71.628914587,41.727706514],[-71.628822587,41.727704514],[-71.628723586,41.727715515],[-71.628624586,41.727758515],[-71.628563587,41.727827514],[-71.628486587,41.727919514]]]]}}"}, +{"type": "precinct", "typeId": 606, "areaId": 25694, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":33,\"NAME\":\"0606\",\"SHAPE_Length\":0.15435586963903,\"SHAPE_Area\":-0.00091641210383897},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.600589576,41.69714051],[-71.599266576,41.69704051],[-71.598885575,41.697028509],[-71.594521574,41.696971509],[-71.594520574,41.697066509],[-71.594505574,41.697188509],[-71.594459574,41.697243509],[-71.594345574,41.697264509],[-71.594314574,41.69737351],[-71.594299574,41.69748551],[-71.594292574,41.69760751],[-71.594284574,41.697715509],[-71.594254574,41.69783851],[-71.594246574,41.69795951],[-71.594215574,41.69809151],[-71.594200574,41.69820451],[-71.594200574,41.69842951],[-71.594185574,41.69853751],[-71.594086573,41.698530509],[-71.594063574,41.69863951],[-71.594017574,41.698744509],[-71.593964574,41.69885751],[-71.593941574,41.69896251],[-71.593964574,41.69901151],[-71.594116574,41.69900751],[-71.594276574,41.69898151],[-71.594360574,41.69901151],[-71.594490574,41.69905351],[-71.594620574,41.69912251],[-71.594757574,41.69921851],[-71.594872574,41.69931051],[-71.595001575,41.69939251],[-71.595123574,41.69945751],[-71.595230574,41.69955851],[-71.595268574,41.69957651],[-71.595352575,41.69966851],[-71.595345574,41.69974551],[-71.595345574,41.69985351],[-71.595444575,41.69993251],[-71.595491574,41.69993851],[-71.595498574,41.69994251],[-71.595487575,41.70000551],[-71.595116575,41.69993051],[-71.594292574,41.69977851],[-71.593613574,41.69964051],[-71.592178573,41.69932151],[-71.592037574,41.69930251],[-71.592018574,41.69934751],[-71.591972573,41.69950151],[-71.591926573,41.69972351],[-71.591881574,41.70003051],[-71.591812573,41.70028451],[-71.591759573,41.70048851],[-71.591667574,41.70086851],[-71.591576573,41.70108651],[-71.591499573,41.70126851],[-71.591416573,41.70144151],[-71.592171574,41.70167651],[-71.593102574,41.701971511],[-71.593155574,41.70198351],[-71.593384573,41.70206351],[-71.593739574,41.70217751],[-71.594002574,41.70226151],[-71.594856574,41.70253051],[-71.595696575,41.70280451],[-71.595825574,41.70284151],[-71.596420575,41.70303551],[-71.596886575,41.70317751],[-71.597008575,41.70321551],[-71.597122575,41.703654511],[-71.597244576,41.704079511],[-71.597344575,41.704486511],[-71.597420576,41.704804511],[-71.597526575,41.705225511],[-71.597626575,41.705610511],[-71.597702575,41.705973511],[-71.597778575,41.706354511],[-71.597938576,41.706986511],[-71.598030575,41.707285511],[-71.598152576,41.707625511],[-71.598534576,41.708697512],[-71.598641576,41.708951512],[-71.598732576,41.709138511],[-71.598846576,41.709311512],[-71.599014576,41.709506512],[-71.599205576,41.709722511],[-71.599282576,41.709833512],[-71.599320576,41.709908512],[-71.599350577,41.710002512],[-71.599373576,41.710123512],[-71.599365576,41.710178512],[-71.599365576,41.710223512],[-71.599358576,41.710290512],[-71.599343576,41.710367512],[-71.599312577,41.710449512],[-71.599281576,41.710513512],[-71.599167576,41.710695512],[-71.598961576,41.711015512],[-71.598762576,41.711303512],[-71.598641576,41.711495513],[-71.598595576,41.711573513],[-71.598549576,41.711664512],[-71.598526576,41.711737512],[-71.598503576,41.711836512],[-71.598495576,41.711908512],[-71.598503576,41.711985512],[-71.598518576,41.712070512],[-71.598564576,41.712195513],[-71.598617576,41.712302512],[-71.598785577,41.712550512],[-71.599060576,41.712931512],[-71.599365577,41.713343513],[-71.599854577,41.714021513],[-71.599922576,41.714110512],[-71.600212576,41.714504512],[-71.600227577,41.714522512],[-71.600376577,41.714739513],[-71.600418577,41.714801513],[-71.600556577,41.715023513],[-71.600647577,41.715201512],[-71.600708577,41.715371513],[-71.600728577,41.715444513],[-71.600797577,41.715695513],[-71.600815577,41.715760513],[-71.600830577,41.715818513],[-71.600868577,41.715989513],[-71.600893577,41.716137512],[-71.600906577,41.716213513],[-71.600937577,41.716550513],[-71.600975577,41.717026513],[-71.600975577,41.717639513],[-71.600982577,41.717702513],[-71.600990577,41.717778513],[-71.601074577,41.718109513],[-71.601112577,41.718271513],[-71.601127577,41.718419513],[-71.601135577,41.718558513],[-71.601196577,41.719174514],[-71.601235577,41.719443514],[-71.601265577,41.719546514],[-71.601311577,41.719680514],[-71.601387577,41.719836514],[-71.601494578,41.720050514],[-71.601562577,41.720206514],[-71.601616577,41.720344514],[-71.601639577,41.720461514],[-71.601669578,41.720590514],[-71.601708578,41.720725514],[-71.601776577,41.720908514],[-71.601875578,41.721167514],[-71.601952578,41.721381514],[-71.601967577,41.721471514],[-71.601975578,41.721556514],[-71.601982578,41.721615514],[-71.601974578,41.721682514],[-71.601974578,41.721750514],[-71.601990578,41.721858514],[-71.602043577,41.722050514],[-71.602066578,41.722117514],[-71.602120578,41.722291514],[-71.602158578,41.722426514],[-71.602234578,41.722658514],[-71.602295578,41.722805515],[-71.602325578,41.722904514],[-71.602333578,41.722958514],[-71.602348578,41.723016514],[-71.602348578,41.723155515],[-71.602341578,41.723223514],[-71.602341578,41.723286514],[-71.602356578,41.723398514],[-71.602386578,41.723515514],[-71.602447578,41.723720515],[-71.602539578,41.724083514],[-71.602615578,41.724311514],[-71.602653578,41.724459515],[-71.602722578,41.724628514],[-71.602814578,41.724820514],[-71.602852578,41.724918514],[-71.602867578,41.725003515],[-71.602875578,41.725039515],[-71.602882578,41.725066515],[-71.602897578,41.725165515],[-71.602913578,41.725241515],[-71.603058578,41.725508515],[-71.603157578,41.725731515],[-71.603233578,41.725923515],[-71.603317578,41.726146515],[-71.603386579,41.726365515],[-71.603432578,41.726594515],[-71.603478579,41.726809515],[-71.603256578,41.726881515],[-71.603004578,41.727004515],[-71.602875578,41.727061515],[-71.602654578,41.727174515],[-71.602333579,41.727366515],[-71.602020578,41.727576515],[-71.601868578,41.727683515],[-71.601807578,41.727725515],[-71.601769578,41.727744515],[-71.601715578,41.727763515],[-71.601669578,41.727777516],[-71.601616578,41.727783515],[-71.601562578,41.727793515],[-71.601456578,41.727805515],[-71.601372578,41.727820515],[-71.601181578,41.727833515],[-71.601074578,41.727854516],[-71.601021578,41.727860515],[-71.600876577,41.727890515],[-71.600677578,41.727944515],[-71.600494578,41.728016515],[-71.600227578,41.728130516],[-71.600029578,41.728229515],[-71.599930578,41.728276515],[-71.599831577,41.728328515],[-71.599617577,41.728427515],[-71.599442577,41.728499516],[-71.599243577,41.728557516],[-71.598892577,41.728646515],[-71.598583577,41.728733516],[-71.602257578,41.728602515],[-71.612358582,41.728323515],[-71.617919583,41.728145515],[-71.621750585,41.728023515],[-71.624004585,41.727965515],[-71.624573585,41.727950515],[-71.624806585,41.727945514],[-71.625090586,41.727941514],[-71.625313585,41.727937514],[-71.625488586,41.727933515],[-71.627635586,41.727921514],[-71.628024586,41.727919514],[-71.628486587,41.727919514],[-71.628563587,41.727827514],[-71.628624586,41.727758515],[-71.628723586,41.727715515],[-71.628822587,41.727704514],[-71.628914587,41.727706514],[-71.629006587,41.727704514],[-71.629089587,41.727666514],[-71.629143587,41.727616514],[-71.629189587,41.727561515],[-71.629227587,41.727501514],[-71.629272587,41.727446515],[-71.629318587,41.727400514],[-71.629394587,41.727353514],[-71.629440587,41.727307514],[-71.629486587,41.727252515],[-71.629517587,41.727202514],[-71.629547587,41.727147514],[-71.629555587,41.727066514],[-71.629555587,41.727012514],[-71.629570587,41.726957514],[-71.629616587,41.726889514],[-71.629685587,41.726860514],[-71.629753587,41.726814514],[-71.629814587,41.726767514],[-71.629875587,41.726725514],[-71.629913587,41.726679514],[-71.629952587,41.726629514],[-71.630043587,41.726519514],[-71.630073587,41.726446514],[-71.630081587,41.726387514],[-71.630081587,41.726329514],[-71.630066588,41.726275514],[-71.630051587,41.726244514],[-71.629997587,41.726142514],[-71.629921587,41.726017514],[-71.629898587,41.725959514],[-71.629837587,41.725844514],[-71.629814587,41.725786514],[-71.629791587,41.725718514],[-71.629768587,41.725660514],[-71.629707587,41.725545514],[-71.629677587,41.725496514],[-71.629646587,41.725443514],[-71.629616587,41.725385514],[-71.629585587,41.725322514],[-71.629562587,41.725264513],[-71.629524587,41.725130513],[-71.629494587,41.725068514],[-71.629448587,41.725010514],[-71.629387587,41.724962514],[-71.629333587,41.724927514],[-71.629265587,41.724893514],[-71.629196587,41.724854514],[-71.629112586,41.724820514],[-71.629044587,41.724772514],[-71.628998586,41.724701513],[-71.628982587,41.724647514],[-71.628975586,41.724593514],[-71.628975586,41.724539514],[-71.628983587,41.724458514],[-71.629028587,41.724403514],[-71.629089587,41.724361514],[-71.629120587,41.724311513],[-71.629112586,41.724248514],[-71.629059587,41.724191514],[-71.629013587,41.724133513],[-71.628967587,41.724071514],[-71.628937586,41.724004514],[-71.628929587,41.723942513],[-71.628937586,41.723883513],[-71.628975586,41.723814514],[-71.629036586,41.723772514],[-71.629074586,41.723713514],[-71.629090587,41.723654514],[-71.629097587,41.723586514],[-71.629097586,41.723388514],[-71.629074586,41.723321513],[-71.629074586,41.723254514],[-71.629105587,41.723186513],[-71.629150586,41.723144513],[-71.629188587,41.723094514],[-71.629265587,41.723047513],[-71.629333587,41.723014514],[-71.629402587,41.722990513],[-71.629486587,41.722947513],[-71.629555587,41.722919514],[-71.629623587,41.722881514],[-71.629677586,41.722830513],[-71.629685587,41.722780513],[-71.629623587,41.722741513],[-71.629616587,41.722678513],[-71.629616587,41.722624513],[-71.629608587,41.722566513],[-71.629563587,41.722513514],[-71.629501586,41.722460513],[-71.629440587,41.722426513],[-71.629425586,41.722386513],[-71.629425586,41.722323513],[-71.629448587,41.722250513],[-71.629494587,41.722204513],[-71.629532587,41.722158513],[-71.629517587,41.722104514],[-71.629494587,41.722046513],[-71.629494587,41.721988513],[-71.629509587,41.721947514],[-71.629593587,41.721950513],[-71.629631587,41.721926514],[-71.629639586,41.721876513],[-71.629685587,41.721830514],[-71.629753587,41.721793513],[-71.629829587,41.721777513],[-71.629845587,41.721737513],[-71.629799587,41.721630513],[-71.629814586,41.721566513],[-71.629913587,41.721550513],[-71.629997587,41.721548513],[-71.630043587,41.721538514],[-71.630058587,41.721475513],[-71.630043587,41.721421513],[-71.630043587,41.721363513],[-71.630081587,41.721312513],[-71.630127587,41.721266513],[-71.630180587,41.721225513],[-71.630211587,41.721161513],[-71.630234587,41.721102513],[-71.630195587,41.721058513],[-71.630127587,41.721037513],[-71.630043587,41.721007513],[-71.629997587,41.720959513],[-71.629997587,41.720887513],[-71.630020587,41.720814513],[-71.630035587,41.720751513],[-71.630043587,41.720683513],[-71.630058587,41.720624513],[-71.630028586,41.720571513],[-71.629982587,41.720522513],[-71.629959587,41.720460513],[-71.629967587,41.720396513],[-71.629967587,41.720266513],[-71.629944587,41.720203513],[-71.629906587,41.720141513],[-71.629852586,41.720075513],[-71.629799587,41.720027513],[-71.629738586,41.719978513],[-71.629723587,41.719916513],[-71.629745587,41.719852513],[-71.629768587,41.719798513],[-71.629822587,41.719742513],[-71.629898587,41.719714513],[-71.629982587,41.719703513],[-71.630058587,41.719705513],[-71.630119587,41.719690512],[-71.630142587,41.719627513],[-71.630127586,41.719569513],[-71.630089586,41.719511512],[-71.630127586,41.719461513],[-71.630195587,41.719410513],[-71.630272587,41.719358512],[-71.630333587,41.719294513],[-71.630363587,41.719217513],[-71.630363587,41.719145512],[-71.630341586,41.719064512],[-71.630295587,41.718939513],[-71.630280587,41.718813512],[-71.630280587,41.718741513],[-71.630226587,41.718616512],[-71.630173587,41.718568513],[-71.630112587,41.718529513],[-71.630058587,41.718485512],[-71.630028586,41.718409512],[-71.629997587,41.718338513],[-71.629951586,41.718276513],[-71.629906587,41.718218513],[-71.629868587,41.718156512],[-71.629845587,41.718085513],[-71.629845587,41.718008513],[-71.629837586,41.717936512],[-71.629784587,41.717874512],[-71.629722586,41.717822512],[-71.629685587,41.717778512],[-71.629654587,41.717724512],[-71.629662586,41.717679512],[-71.629723586,41.717637513],[-71.629806587,41.717604512],[-71.629890587,41.717584512],[-71.629959587,41.717537513],[-71.629997587,41.717482513],[-71.630005587,41.717446512],[-71.629944587,41.717294512],[-71.629944587,41.717231512],[-71.629952586,41.717168513],[-71.629951586,41.717101512],[-71.629967587,41.717064512],[-71.630012586,41.717023512],[-71.630066587,41.716967512],[-71.630135587,41.716925512],[-71.630173587,41.716861512],[-71.630173587,41.716803512],[-71.630188586,41.716694512],[-71.630172587,41.716627512],[-71.630135587,41.716574512],[-71.630150586,41.716506512],[-71.630173587,41.716447512],[-71.630173587,41.716380512],[-71.630150586,41.716308512],[-71.630119587,41.716250512],[-71.630096587,41.716188512],[-71.630081587,41.716134512],[-71.630081587,41.716012512],[-71.630097587,41.715953512],[-71.630119587,41.715899512],[-71.630135587,41.715840512],[-71.630142587,41.715772512],[-71.630173587,41.715722512],[-71.630249587,41.715684512],[-71.630333587,41.715682512],[-71.630409587,41.715663512],[-71.630463587,41.715616512],[-71.630440586,41.715549512],[-71.630371587,41.715501512],[-71.630325586,41.715444512],[-71.630287586,41.715382512],[-71.630249587,41.715315512],[-71.630226586,41.715248512],[-71.630188586,41.715186512],[-71.630112586,41.715071512],[-71.630020587,41.714965512],[-71.629967587,41.714912512],[-71.629928587,41.714917512],[-71.629921587,41.714858512],[-71.629914586,41.714800512],[-71.629867587,41.714536512],[-71.629845587,41.714464511],[-71.629837586,41.714397512],[-71.629829587,41.714339512],[-71.629829587,41.714271512],[-71.629852586,41.714203512],[-71.629883587,41.714144512],[-71.629898586,41.714085512],[-71.629906587,41.714026512],[-71.629959586,41.713975511],[-71.630013586,41.713934511],[-71.630043587,41.713874512],[-71.630043587,41.713816512],[-71.630051586,41.713762511],[-71.630051586,41.713644511],[-71.630043587,41.713568511],[-71.630051586,41.713496512],[-71.630066587,41.713419512],[-71.630081587,41.713351511],[-71.630119587,41.713278511],[-71.630173586,41.713263512],[-71.630226586,41.713213511],[-71.630287586,41.713157511],[-71.630356587,41.713102511],[-71.630417587,41.713046511],[-71.630485587,41.713000511],[-71.630569587,41.712948511],[-71.630699587,41.712878512],[-71.630783587,41.712840512],[-71.630867586,41.712811511],[-71.630943587,41.712795511],[-71.631020587,41.712794511],[-71.631111587,41.712801512],[-71.631180586,41.712840512],[-71.631249587,41.712888511],[-71.631332587,41.712908511],[-71.631416587,41.712911511],[-71.631500587,41.712909511],[-71.631577587,41.712912511],[-71.631996587,41.712857512],[-71.632177587,41.712798512],[-71.632111587,41.712760512],[-71.632057587,41.712720512],[-71.632027587,41.712672511],[-71.632065587,41.712608511],[-71.632126587,41.712566512],[-71.632179587,41.712533511],[-71.632225587,41.712473511],[-71.632256587,41.712423511],[-71.632286587,41.712364511],[-71.632317587,41.712314512],[-71.632332587,41.712205511],[-71.632339587,41.712138512],[-71.632370587,41.712083511],[-71.632431587,41.712027511],[-71.632462587,41.712018511],[-71.632500587,41.712003511],[-71.632591587,41.711997511],[-71.632668587,41.712004511],[-71.632767587,41.712015511],[-71.632843587,41.712009511],[-71.632919587,41.711980511],[-71.632981587,41.711934511],[-71.633049588,41.711887511],[-71.633110587,41.711836511],[-71.633179587,41.711785511],[-71.633240588,41.711752511],[-71.633278588,41.711706511],[-71.633278588,41.711634511],[-71.633286587,41.711576511],[-71.633240588,41.711523511],[-71.633179587,41.711483511],[-71.633011587,41.711415511],[-71.632927587,41.711386511],[-71.632820587,41.711289511],[-71.632759587,41.711254511],[-71.632683587,41.711234511],[-71.632607587,41.711222511],[-71.632515587,41.711215511],[-71.632461587,41.711216511],[-71.632416587,41.711213511],[-71.632309587,41.711211511],[-71.632210587,41.711204511],[-71.632111587,41.711184511],[-71.632034587,41.711167511],[-71.631943587,41.711138511],[-71.631866587,41.711108511],[-71.631744586,41.711048511],[-71.631683587,41.711013511],[-71.631622587,41.710992511],[-71.631538587,41.710990511],[-71.631470587,41.710987511],[-71.631424587,41.711037511],[-71.631401587,41.711092511],[-71.631340587,41.711138511],[-71.631302587,41.711171511],[-71.631325587,41.711224511],[-71.631363587,41.711268511],[-71.631416587,41.711321511],[-71.631477587,41.711369511],[-71.631531586,41.711409511],[-71.631592587,41.711443511],[-71.631645587,41.711487511],[-71.631721587,41.711535511],[-71.631783586,41.711583511],[-71.631775587,41.711619511],[-71.631676587,41.711630511],[-71.631485587,41.711603511],[-71.631401587,41.711587511],[-71.631325587,41.711571511],[-71.631172587,41.711547511],[-71.631096587,41.711531511],[-71.631027586,41.711510511],[-71.630943587,41.711481511],[-71.630875587,41.711442511],[-71.630791586,41.711426511],[-71.630707587,41.711441511],[-71.630615586,41.711488511],[-71.630539586,41.711530511],[-71.630463586,41.711546511],[-71.630417587,41.711511511],[-71.630417587,41.711389511],[-71.630440586,41.711321511],[-71.630509587,41.711265511],[-71.630577586,41.711232511],[-71.630699586,41.711166511],[-71.630775586,41.711120511],[-71.630851586,41.711100511],[-71.630936587,41.711112511],[-71.631004586,41.711128511],[-71.631050587,41.711185511],[-71.631073587,41.711243511],[-71.631096587,41.711279511],[-71.631165587,41.711264511],[-71.631233587,41.711213511],[-71.631264587,41.711154511],[-71.631256586,41.711091511],[-71.631256586,41.711032511],[-71.631287587,41.710910511],[-71.631287587,41.710851511],[-71.631271587,41.710802511],[-71.631218586,41.710763511],[-71.631157587,41.710715511],[-71.631096587,41.710671511],[-71.631027586,41.710623511],[-71.630951586,41.710589511],[-71.630882587,41.710554511],[-71.630806587,41.710507511],[-71.630737586,41.710450511],[-71.630684587,41.710388511],[-71.630623587,41.71032651],[-71.630486586,41.710154511],[-71.630448586,41.710101511],[-71.630447586,41.710028511],[-71.630455587,41.709970511],[-71.630455587,41.70983951],[-71.630447586,41.709776511],[-71.630424586,41.709700511],[-71.630409586,41.709647511],[-71.630402586,41.709593511],[-71.630363586,41.709522511],[-71.630348586,41.709459511],[-71.630348586,41.709265511],[-71.630341586,41.709189511],[-71.630341586,41.70906351],[-71.630348586,41.708991511],[-71.630348586,41.70886451],[-71.630340586,41.70878851],[-71.630348586,41.70870751],[-71.630386586,41.708503511],[-71.630447586,41.708214511],[-71.630493587,41.707979511],[-71.630539586,41.70787451],[-71.630570587,41.707824511],[-71.630608587,41.70778251],[-71.630653586,41.70774151],[-71.630707587,41.70769451],[-71.630745587,41.70763551],[-71.630752586,41.70757651],[-71.630737586,41.70752351],[-71.630738586,41.70746951],[-71.630752586,41.70741051],[-71.630768587,41.70735151],[-71.630806587,41.707300511],[-71.630852586,41.70723651],[-71.630882587,41.70718651],[-71.630936586,41.70713551],[-71.631035587,41.70712951],[-71.631111587,41.70713151],[-71.631210587,41.70712951],[-71.631294587,41.70713651],[-71.631393586,41.70712051],[-71.631561587,41.70707651],[-71.631630586,41.70705651],[-71.631691586,41.70701451],[-71.631729586,41.706969511],[-71.631706586,41.70693851],[-71.631714587,41.70687051],[-71.631676587,41.70682651],[-71.631607586,41.706814511],[-71.631531586,41.70682051],[-71.631455586,41.70686251],[-71.631370587,41.706891511],[-71.631287587,41.70691651],[-71.631210587,41.70692651],[-71.631119587,41.70693351],[-71.631042586,41.706930511],[-71.630966586,41.70692351],[-71.630875586,41.70690351],[-71.630783587,41.70687851],[-71.630692586,41.70687551],[-71.630623586,41.70686851],[-71.630554586,41.706833511],[-71.630470586,41.70679951],[-71.630386586,41.70677051],[-71.630310586,41.70674051],[-71.630226586,41.70671051],[-71.630142586,41.70667251],[-71.630051586,41.70664251],[-71.629982586,41.70662151],[-71.629906586,41.70661451],[-71.629822586,41.70658951],[-71.629753586,41.706559511],[-71.629684586,41.70652551],[-71.629608586,41.70650451],[-71.629532586,41.70649251],[-71.629463585,41.70645851],[-71.629425586,41.70641351],[-71.629394586,41.70637851],[-71.629394586,41.70632451],[-71.629364586,41.70626251],[-71.629318586,41.70620451],[-71.629295586,41.70614651],[-71.629288585,41.70609251],[-71.629234586,41.70605351],[-71.629166586,41.70603251],[-71.629097586,41.70598451],[-71.629051586,41.70592751],[-71.629005586,41.70587851],[-71.628921585,41.70584951],[-71.628784585,41.70578051],[-71.628708585,41.70575451],[-71.628655586,41.70570651],[-71.628639586,41.70566151],[-71.628639586,41.70563951],[-71.628555586,41.70564151],[-71.628487585,41.70565651],[-71.628410585,41.70568051],[-71.628258585,41.70572051],[-71.628189586,41.70574851],[-71.628128586,41.70575451],[-71.628128585,41.70561951],[-71.628143585,41.70549351],[-71.628159585,41.70542551],[-71.628166585,41.70537151],[-71.628166585,41.70530751],[-71.628174586,41.70524951],[-71.628174586,41.70508251],[-71.628151586,41.70502051],[-71.628135586,41.70496651],[-71.628113586,41.70491251],[-71.628120585,41.70484551],[-71.628120585,41.70477351],[-71.628128585,41.70466451],[-71.628159585,41.70454751],[-71.628166585,41.70442051],[-71.628121585,41.70429551],[-71.628105585,41.704183509],[-71.628113586,41.70405751],[-71.628181585,41.70396151],[-71.628319585,41.70389551],[-71.628395585,41.703875509],[-71.628418585,41.70382051],[-71.628402586,41.70373151],[-71.628391585,41.703660509],[-71.628380585,41.70359151],[-71.628357585,41.70356951],[-71.628281585,41.70351751],[-71.628213586,41.703466509],[-71.628197585,41.70345251],[-71.628113586,41.70335951],[-71.628013585,41.70331651],[-71.627846585,41.70332451],[-71.627708585,41.703346509],[-71.627655585,41.70333351],[-71.627632585,41.70322151],[-71.627617585,41.70310551],[-71.627601585,41.70302851],[-71.627533585,41.70290851],[-71.627479585,41.70282951],[-71.627350585,41.702800509],[-71.627173585,41.702780509],[-71.627197585,41.702490509],[-71.627157585,41.70242051],[-71.626911585,41.70248051],[-71.626398585,41.702492509],[-71.626292585,41.70248551],[-71.626213585,41.70248051],[-71.626152584,41.702474509],[-71.625449584,41.702604509],[-71.624991584,41.70269651],[-71.624796584,41.70276951],[-71.624263584,41.702726509],[-71.624121584,41.70269851],[-71.623795584,41.702492509],[-71.623222583,41.70191551],[-71.622178583,41.701129509],[-71.621002583,41.700212509],[-71.618196582,41.698279509],[-71.617353581,41.697788509],[-71.616401581,41.697449509],[-71.615121581,41.697040509],[-71.613801581,41.696768509],[-71.61298958,41.696601509],[-71.61279058,41.696582509],[-71.610584579,41.696376509],[-71.608292578,41.696290509],[-71.607906578,41.696122509],[-71.607666578,41.696052508],[-71.607529578,41.695990509],[-71.606416578,41.696642509],[-71.605048577,41.697210509],[-71.604222577,41.697416509],[-71.600589576,41.69714051]]]]}}"}, +{"type": "precinct", "typeId": 607, "areaId": 25697, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":36,\"NAME\":\"0607\",\"SHAPE_Length\":0.19460867552704,\"SHAPE_Area\":-0.00093233754185588},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.573136567,41.689779509],[-71.573143566,41.689712509],[-71.573143566,41.689577508],[-71.573151567,41.689513509],[-71.573082567,41.689510509],[-71.572998567,41.689517509],[-71.572975566,41.689558508],[-71.572929566,41.689685509],[-71.572945567,41.689730509],[-71.572846567,41.689736508],[-71.572746567,41.689739509],[-71.572632567,41.689732508],[-71.572563566,41.689734508],[-71.572433567,41.689750509],[-71.572327566,41.689743509],[-71.572319567,41.689685509],[-71.572258566,41.689619508],[-71.572182567,41.689612509],[-71.572106567,41.689613509],[-71.572060566,41.689623509],[-71.571869566,41.689632509],[-71.571853567,41.689583509],[-71.571854566,41.689520508],[-71.571800566,41.689485509],[-71.571709566,41.689456509],[-71.571632566,41.689471509],[-71.571548566,41.689504508],[-71.571411566,41.689534509],[-71.571297566,41.689613509],[-71.571190566,41.689647509],[-71.571037566,41.689651509],[-71.570946566,41.689648509],[-71.570839566,41.689651509],[-71.570763565,41.689666509],[-71.570694566,41.689703509],[-71.570641566,41.689759509],[-71.570610565,41.689813508],[-71.570579566,41.689864509],[-71.570503566,41.689933509],[-71.570419566,41.689993509],[-71.570381566,41.690053509],[-71.570343566,41.690103508],[-71.570343566,41.690157509],[-71.570274566,41.690199509],[-71.570152566,41.690242509],[-71.570076566,41.690253509],[-71.570007565,41.690264509],[-71.569885565,41.690266509],[-71.569801566,41.690255509],[-71.569718565,41.690216509],[-71.569702566,41.690099509],[-71.569679565,41.690041509],[-71.569610566,41.690007508],[-71.569450566,41.689974509],[-71.569397565,41.689917509],[-71.569328565,41.689896509],[-71.569260566,41.689889508],[-71.569160566,41.689864509],[-71.569122566,41.689833509],[-71.569046565,41.689821509],[-71.568939565,41.689819509],[-71.568779565,41.689805509],[-71.568703565,41.689806509],[-71.568619565,41.689804509],[-71.568520565,41.689806509],[-71.568390565,41.689818509],[-71.568314565,41.689820509],[-71.568245565,41.689839509],[-71.568184565,41.689872509],[-71.568107565,41.689910509],[-71.568047565,41.689956509],[-71.567398565,41.689993509],[-71.567276564,41.690023509],[-71.566834565,41.689997509],[-71.566704565,41.689973509],[-71.566630564,41.689956509],[-71.566622565,41.690047509],[-71.566615564,41.690128509],[-71.566589564,41.690417509],[-71.567085565,41.690464509],[-71.567428564,41.690501509],[-71.567932565,41.690585509],[-71.568435565,41.690673509],[-71.568352565,41.690918509],[-71.568260565,41.691172509],[-71.568169565,41.691611509],[-71.568037565,41.693309509],[-71.568207565,41.693361509],[-71.569107565,41.693639509],[-71.569969566,41.69388051],[-71.571466566,41.69432751],[-71.571381566,41.69446151],[-71.571266567,41.69454051],[-71.571045566,41.69461751],[-71.570992566,41.69473151],[-71.57135257,41.695267363],[-71.571518567,41.69618351],[-71.571457567,41.69670251],[-71.571457567,41.69676151],[-71.571449566,41.69681951],[-71.571426566,41.69687451],[-71.571380567,41.69699251],[-71.571373566,41.69704651],[-71.571365567,41.69711851],[-71.571312566,41.69718751],[-71.571251566,41.69725251],[-71.571205567,41.69730751],[-71.571144566,41.69737151],[-71.571098566,41.69743151],[-71.571076566,41.69748551],[-71.571060566,41.69755351],[-71.571022566,41.69761751],[-71.570991567,41.69768151],[-71.570946566,41.69780851],[-71.570915567,41.69787251],[-71.570869566,41.69793651],[-71.570839567,41.69799051],[-71.570793566,41.698014511],[-71.570694566,41.698039511],[-71.570595566,41.69805051],[-71.570404566,41.698054511],[-71.570366566,41.69808651],[-71.570320566,41.698132511],[-71.570282566,41.69817851],[-71.570236566,41.698229511],[-71.570160566,41.69829851],[-71.570107566,41.69834051],[-71.570069566,41.698408511],[-71.570007566,41.69847751],[-71.569984566,41.69855051],[-71.569984566,41.698775511],[-71.569992566,41.698851511],[-71.570007566,41.69891951],[-71.570030566,41.698990511],[-71.570030566,41.699107511],[-71.570046566,41.699170511],[-71.570053566,41.699228511],[-71.570061566,41.699282511],[-71.570053566,41.69936851],[-71.570061566,41.699453511],[-71.570053566,41.69950751],[-71.570030566,41.699575511],[-71.570046566,41.699670511],[-71.570061566,41.699723511],[-71.570137567,41.699762511],[-71.570206566,41.699801511],[-71.570251566,41.699850511],[-71.570290566,41.699898511],[-71.570320566,41.699947511],[-71.570328566,41.700006511],[-71.570335566,41.700073511],[-71.570343566,41.700131511],[-71.570335566,41.700217511],[-71.570335566,41.700298511],[-71.570343566,41.700365511],[-71.570335566,41.700438511],[-71.570335566,41.700496511],[-71.570343566,41.700564511],[-71.570419566,41.700593511],[-71.570511566,41.700623511],[-71.570564567,41.700676511],[-71.570595566,41.700725511],[-71.570503566,41.700776511],[-71.570465567,41.700827511],[-71.570419566,41.700873511],[-71.570389567,41.700923511],[-71.570358566,41.700991511],[-71.570343566,41.701068511],[-71.570335566,41.701140511],[-71.570335566,41.701307511],[-71.570336566,41.701379511],[-71.570335566,41.701446511],[-71.570458566,41.701538511],[-71.570519566,41.701600511],[-71.570549566,41.701649511],[-71.570564567,41.701716511],[-71.570511566,41.701758511],[-71.570450566,41.701822511],[-71.570419566,41.701872511],[-71.570396566,41.701936511],[-71.570381566,41.701990511],[-71.570366567,41.702054511],[-71.570351567,41.702113511],[-71.570343566,41.702185511],[-71.570335566,41.702243511],[-71.570381566,41.702278511],[-71.570511566,41.702321511],[-71.570595566,41.702341511],[-71.570671566,41.702339511],[-71.570770566,41.702342511],[-71.570854567,41.702358511],[-71.570915567,41.702384511],[-71.571037566,41.702462511],[-71.571106567,41.702523512],[-71.571144567,41.702572511],[-71.57320934,41.703062078],[-71.574589428,41.703642666],[-71.573942215,41.704251808],[-71.57245743,41.705965021],[-71.57272393,41.706126824],[-71.573222743,41.70615096],[-71.574494249,41.706212484],[-71.574238343,41.70809828],[-71.574716661,41.708198074],[-71.574585898,41.708562835],[-71.575531452,41.709102597],[-71.575485568,41.709135513],[-71.575401569,41.709191513],[-71.575294568,41.709292512],[-71.575043568,41.709410512],[-71.574753568,41.709570512],[-71.574387568,41.709740513],[-71.574082568,41.709918512],[-71.573815568,41.710154512],[-71.573509568,41.710386512],[-71.573441568,41.710788513],[-71.573403568,41.711086513],[-71.573357567,41.711321512],[-71.573288568,41.711683513],[-71.573258567,41.711756513],[-71.573120568,41.712101513],[-71.572960568,41.712353513],[-71.572769568,41.712618513],[-71.572548568,41.712893513],[-71.572365567,41.713145513],[-71.572281568,41.713345514],[-71.572205567,41.713716514],[-71.572060568,41.714368513],[-71.572022568,41.714544513],[-71.571991567,41.714666514],[-71.571915567,41.714992513],[-71.571838567,41.715350514],[-71.571754568,41.715662514],[-71.571678568,41.716029514],[-71.571640567,41.716232514],[-71.571617568,41.716444514],[-71.571617568,41.716944514],[-71.571594568,41.717760514],[-71.571602567,41.718313514],[-71.571594568,41.718823515],[-71.571594568,41.718863515],[-71.571610568,41.719988515],[-71.571617568,41.720240515],[-71.571617568,41.720493515],[-71.571648568,41.721086515],[-71.571650568,41.721207515],[-71.571655568,41.721563515],[-71.571655568,41.721784515],[-71.571716568,41.721913515],[-71.571838568,41.721969515],[-71.572075568,41.721991515],[-71.572411568,41.721992515],[-71.572899568,41.721981515],[-71.573364568,41.721989515],[-71.573769568,41.722021515],[-71.574051569,41.722122515],[-71.574120568,41.722193515],[-71.574219568,41.722308515],[-71.574326569,41.722535515],[-71.574493569,41.722950515],[-71.574615569,41.723289515],[-71.574745569,41.723647515],[-71.574898569,41.723968515],[-71.574952569,41.724075515],[-71.575004569,41.724181515],[-71.575057569,41.724437515],[-71.575072569,41.724662515],[-71.575072569,41.725026516],[-71.575080569,41.725350515],[-71.575118569,41.725579515],[-71.57522557,41.725856515],[-71.575377569,41.726272516],[-71.575507569,41.726648516],[-71.575661569,41.727021515],[-71.575858569,41.727576516],[-71.576011569,41.727939516],[-71.57616357,41.728291516],[-71.576340569,41.728625516],[-71.57640857,41.728871517],[-71.57652357,41.729314516],[-71.57653057,41.729409516],[-71.579851571,41.729325516],[-71.580543571,41.729308516],[-71.581098571,41.729291516],[-71.586189573,41.729144516],[-71.591011574,41.729004516],[-71.593880575,41.728902516],[-71.595786576,41.728833515],[-71.597374577,41.728775515],[-71.597397577,41.728829516],[-71.598583577,41.728733516],[-71.598892577,41.728646515],[-71.599243577,41.728557516],[-71.599442577,41.728499516],[-71.599617577,41.728427515],[-71.599831577,41.728328515],[-71.599930578,41.728276515],[-71.600029578,41.728229515],[-71.600227578,41.728130516],[-71.600494578,41.728016515],[-71.600677578,41.727944515],[-71.600876577,41.727890515],[-71.601021578,41.727860515],[-71.601074578,41.727854516],[-71.601181578,41.727833515],[-71.601372578,41.727820515],[-71.601456578,41.727805515],[-71.601562578,41.727793515],[-71.601616578,41.727783515],[-71.601669578,41.727777516],[-71.601715578,41.727763515],[-71.601769578,41.727744515],[-71.601807578,41.727725515],[-71.601868578,41.727683515],[-71.602020578,41.727576515],[-71.602333579,41.727366515],[-71.602654578,41.727174515],[-71.602875578,41.727061515],[-71.603004578,41.727004515],[-71.603256578,41.726881515],[-71.603478579,41.726809515],[-71.603432578,41.726594515],[-71.603386579,41.726365515],[-71.603317578,41.726146515],[-71.603233578,41.725923515],[-71.603157578,41.725731515],[-71.603058578,41.725508515],[-71.602913578,41.725241515],[-71.602897578,41.725165515],[-71.602882578,41.725066515],[-71.602875578,41.725039515],[-71.602867578,41.725003515],[-71.602852578,41.724918514],[-71.602814578,41.724820514],[-71.602722578,41.724628514],[-71.602653578,41.724459515],[-71.602615578,41.724311514],[-71.602539578,41.724083514],[-71.602447578,41.723720515],[-71.602386578,41.723515514],[-71.602356578,41.723398514],[-71.602341578,41.723286514],[-71.602341578,41.723223514],[-71.602348578,41.723155515],[-71.602348578,41.723016514],[-71.602333578,41.722958514],[-71.602325578,41.722904514],[-71.602295578,41.722805515],[-71.602234578,41.722658514],[-71.602158578,41.722426514],[-71.602120578,41.722291514],[-71.602066578,41.722117514],[-71.602043577,41.722050514],[-71.601990578,41.721858514],[-71.601974578,41.721750514],[-71.601974578,41.721682514],[-71.601982578,41.721615514],[-71.601975578,41.721556514],[-71.601967577,41.721471514],[-71.601952578,41.721381514],[-71.601875578,41.721167514],[-71.601776577,41.720908514],[-71.601708578,41.720725514],[-71.601669578,41.720590514],[-71.601639577,41.720461514],[-71.601616577,41.720344514],[-71.601562577,41.720206514],[-71.601494578,41.720050514],[-71.601387577,41.719836514],[-71.601311577,41.719680514],[-71.601265577,41.719546514],[-71.601235577,41.719443514],[-71.601196577,41.719174514],[-71.601135577,41.718558513],[-71.601127577,41.718419513],[-71.601112577,41.718271513],[-71.601074577,41.718109513],[-71.600990577,41.717778513],[-71.600982577,41.717702513],[-71.600975577,41.717639513],[-71.600975577,41.717026513],[-71.600937577,41.716550513],[-71.600906577,41.716213513],[-71.600893577,41.716137512],[-71.600868577,41.715989513],[-71.600830577,41.715818513],[-71.600815577,41.715760513],[-71.600797577,41.715695513],[-71.600728577,41.715444513],[-71.600708577,41.715371513],[-71.600647577,41.715201512],[-71.600556577,41.715023513],[-71.600418577,41.714801513],[-71.600376577,41.714739513],[-71.600227577,41.714522512],[-71.600212576,41.714504512],[-71.599922576,41.714110512],[-71.599854577,41.714021513],[-71.599365577,41.713343513],[-71.599060576,41.712931512],[-71.598785577,41.712550512],[-71.598617576,41.712302512],[-71.598564576,41.712195513],[-71.598518576,41.712070512],[-71.598503576,41.711985512],[-71.598495576,41.711908512],[-71.598503576,41.711836512],[-71.598526576,41.711737512],[-71.598549576,41.711664512],[-71.598595576,41.711573513],[-71.598641576,41.711495513],[-71.598762576,41.711303512],[-71.598961576,41.711015512],[-71.599167576,41.710695512],[-71.599281576,41.710513512],[-71.599312577,41.710449512],[-71.599343576,41.710367512],[-71.599358576,41.710290512],[-71.599365576,41.710223512],[-71.599365576,41.710178512],[-71.599373576,41.710123512],[-71.599350577,41.710002512],[-71.599320576,41.709908512],[-71.599282576,41.709833512],[-71.599205576,41.709722511],[-71.599014576,41.709506512],[-71.598846576,41.709311512],[-71.598732576,41.709138511],[-71.598641576,41.708951512],[-71.598534576,41.708697512],[-71.598152576,41.707625511],[-71.598030575,41.707285511],[-71.597938576,41.706986511],[-71.597778575,41.706354511],[-71.597702575,41.705973511],[-71.597626575,41.705610511],[-71.597526575,41.705225511],[-71.597420576,41.704804511],[-71.597344575,41.704486511],[-71.597244576,41.704079511],[-71.597122575,41.703654511],[-71.597008575,41.70321551],[-71.596886575,41.70317751],[-71.596420575,41.70303551],[-71.595825574,41.70284151],[-71.595696575,41.70280451],[-71.594856574,41.70253051],[-71.594002574,41.70226151],[-71.593739574,41.70217751],[-71.593384573,41.70206351],[-71.593155574,41.70198351],[-71.593102574,41.701971511],[-71.592171574,41.70167651],[-71.591416573,41.70144151],[-71.591499573,41.70126851],[-71.591576573,41.70108651],[-71.591667574,41.70086851],[-71.591759573,41.70048851],[-71.591812573,41.70028451],[-71.591881574,41.70003051],[-71.591926573,41.69972351],[-71.591972573,41.69950151],[-71.592018574,41.69934751],[-71.592037574,41.69930251],[-71.592178573,41.69932151],[-71.593613574,41.69964051],[-71.594292574,41.69977851],[-71.595116575,41.69993051],[-71.595487575,41.70000551],[-71.595498574,41.69994251],[-71.595491574,41.69993851],[-71.595444575,41.69993251],[-71.595345574,41.69985351],[-71.595345574,41.69974551],[-71.595352575,41.69966851],[-71.595268574,41.69957651],[-71.595230574,41.69955851],[-71.595123574,41.69945751],[-71.595001575,41.69939251],[-71.594872574,41.69931051],[-71.594757574,41.69921851],[-71.594620574,41.69912251],[-71.594490574,41.69905351],[-71.594360574,41.69901151],[-71.594276574,41.69898151],[-71.594116574,41.69900751],[-71.593964574,41.69901151],[-71.593941574,41.69896251],[-71.593964574,41.69885751],[-71.594017574,41.698744509],[-71.594063574,41.69863951],[-71.594086573,41.698530509],[-71.594185574,41.69853751],[-71.594200574,41.69842951],[-71.594200574,41.69820451],[-71.594215574,41.69809151],[-71.594246574,41.69795951],[-71.594254574,41.69783851],[-71.594284574,41.697715509],[-71.594292574,41.69760751],[-71.594299574,41.69748551],[-71.594314574,41.69737351],[-71.594345574,41.697264509],[-71.594459574,41.697243509],[-71.594505574,41.697188509],[-71.594520574,41.697066509],[-71.594521574,41.696971509],[-71.598885575,41.697028509],[-71.599266576,41.69704051],[-71.600589576,41.69714051],[-71.599000576,41.695578509],[-71.598946575,41.695575509],[-71.598633575,41.695573509],[-71.598450575,41.695559509],[-71.598267575,41.695518509],[-71.598099575,41.695463509],[-71.597938575,41.695395509],[-71.597778575,41.695326509],[-71.597641575,41.695271509],[-71.597511575,41.695220509],[-71.597343574,41.695165509],[-71.597221575,41.695105509],[-71.597099575,41.695036509],[-71.596977574,41.694975509],[-71.596825575,41.694889509],[-71.596726574,41.694796509],[-71.596619575,41.694709509],[-71.596497575,41.694635509],[-71.596382575,41.694552509],[-71.596359574,41.694453508],[-71.596306575,41.694347509],[-71.596214574,41.694254509],[-71.596153574,41.694143509],[-71.596092575,41.694014509],[-71.595962574,41.693963509],[-71.595795574,41.693912509],[-71.595634574,41.693898509],[-71.595451574,41.693898509],[-71.595276574,41.693906508],[-71.595129574,41.693919509],[-71.595003574,41.694052509],[-71.594952574,41.694122509],[-71.594943574,41.694128509],[-71.594993574,41.694059509],[-71.594809573,41.693813509],[-71.594524574,41.693566509],[-71.594043574,41.693288509],[-71.593854573,41.693185508],[-71.593620573,41.693085509],[-71.593487573,41.693052508],[-71.593351573,41.693083509],[-71.593044573,41.693345509],[-71.592792573,41.693588509],[-71.592733573,41.693602509],[-71.592647573,41.693605509],[-71.592565573,41.693598509],[-71.592530573,41.693581509],[-71.592499573,41.693577509],[-71.592491573,41.693523509],[-71.592552573,41.693481509],[-71.592682573,41.693420508],[-71.592750573,41.693342508],[-71.592712573,41.693293509],[-71.592575573,41.693224508],[-71.592483573,41.693222509],[-71.592346573,41.693297509],[-71.592079573,41.693487509],[-71.591988573,41.693593509],[-71.591942573,41.693716509],[-71.591934573,41.693824509],[-71.591866573,41.693888509],[-71.591743573,41.693968509],[-71.591667573,41.694064509],[-71.591667573,41.694136509],[-71.591751573,41.694211509],[-71.591866573,41.694298509],[-71.591972573,41.694390509],[-71.592087573,41.694482509],[-71.592194573,41.694574509],[-71.592224573,41.694646509],[-71.592178573,41.694714509],[-71.592049573,41.694780509],[-71.591904573,41.694784509],[-71.591721573,41.694797509],[-71.591637573,41.694853509],[-71.591537573,41.694963509],[-71.591469573,41.695082509],[-71.591446573,41.695186509],[-71.591392573,41.695300509],[-71.591316573,41.695391509],[-71.591202572,41.695475509],[-71.590889572,41.695518509],[-71.590729573,41.695558509],[-71.590553573,41.69559851],[-71.590370572,41.695633509],[-71.590195572,41.695651509],[-71.590050572,41.69565951],[-71.589897572,41.69565751],[-71.589783572,41.695611509],[-71.589684572,41.695514509],[-71.589653572,41.69538451],[-71.589653572,41.695136509],[-71.589607572,41.695029509],[-71.589546572,41.69491851],[-71.589516572,41.694815509],[-71.589539573,41.694720509],[-71.589546572,41.694598509],[-71.589577572,41.694498509],[-71.589645572,41.694461509],[-71.589707572,41.694477509],[-71.589775573,41.694449509],[-71.589851573,41.694384509],[-71.589874572,41.694262509],[-71.589950573,41.694220509],[-71.590103573,41.694158509],[-71.590241573,41.694096509],[-71.590264572,41.694006509],[-71.590134572,41.693945509],[-71.590065573,41.693893509],[-71.590019572,41.693863509],[-71.589889573,41.693825509],[-71.589745572,41.693815509],[-71.589600573,41.693795509],[-71.589508572,41.693743509],[-71.589508572,41.693626509],[-71.589447572,41.693565509],[-71.589317572,41.693523509],[-71.589180572,41.693521509],[-71.588997572,41.693543509],[-71.588845572,41.693610509],[-71.588753572,41.693697509],[-71.588677572,41.693803509],[-71.588608571,41.693903509],[-71.588554572,41.694004509],[-71.588493572,41.694113509],[-71.588440572,41.694137509],[-71.588371572,41.694125509],[-71.588257571,41.694109509],[-71.588135572,41.694153509],[-71.587990572,41.694223509],[-71.587868571,41.694294509],[-71.587807571,41.69429551],[-71.587776572,41.694228509],[-71.587753571,41.694107509],[-71.587700572,41.693991509],[-71.587608572,41.693881509],[-71.587502571,41.693802509],[-71.587342571,41.693743509],[-71.587028571,41.693637509],[-71.586876571,41.693614509],[-71.586716571,41.693617509],[-71.586548571,41.693625509],[-71.586456571,41.693677509],[-71.586380571,41.693778509],[-71.586372571,41.693904509],[-71.586372571,41.694021509],[-71.586380571,41.694134509],[-71.586380571,41.694246509],[-71.586388571,41.694359509],[-71.586327571,41.69441051],[-71.586220571,41.694403509],[-71.586067571,41.694361509],[-71.585915571,41.694369509],[-71.585762571,41.69439151],[-71.585701571,41.694437509],[-71.585701571,41.694545509],[-71.585724571,41.694653509],[-71.585754571,41.694747509],[-71.585663571,41.694758509],[-71.585556571,41.694729509],[-71.585434571,41.694659509],[-71.58527457,41.694609509],[-71.585121571,41.694608509],[-71.584953571,41.694639509],[-71.58488557,41.69468551],[-71.58480857,41.694790509],[-71.584717571,41.694874509],[-71.58459557,41.69511051],[-71.584519571,41.69516651],[-71.584373571,41.695178509],[-71.58424457,41.695141509],[-71.58412257,41.695067509],[-71.58409157,41.695045509],[-71.58396957,41.694989509],[-71.58381757,41.694907509],[-71.583687571,41.694843509],[-71.58351957,41.694792509],[-71.58336657,41.694787509],[-71.58325257,41.694830509],[-71.58317657,41.694908509],[-71.58317657,41.69514751],[-71.58325957,41.695258509],[-71.58334457,41.695359509],[-71.58335157,41.695427509],[-71.58328257,41.695491509],[-71.583183571,41.69552051],[-71.58301557,41.69552051],[-71.58291657,41.69548151],[-71.58290157,41.69540151],[-71.58296257,41.695390509],[-71.58300057,41.695353509],[-71.58299257,41.695237509],[-71.58299257,41.695124509],[-71.58297057,41.694998509],[-71.58291657,41.694959509],[-71.58280257,41.69495351],[-71.58275657,41.695039509],[-71.58267257,41.69511351],[-71.58253557,41.69516651],[-71.58242857,41.69516851],[-71.58238257,41.695142509],[-71.58239857,41.69507451],[-71.58242857,41.695065509],[-71.58251257,41.69504951],[-71.58258157,41.695003509],[-71.582619569,41.69495251],[-71.58260357,41.69493551],[-71.58242857,41.69483551],[-71.58235257,41.69481951],[-71.582191569,41.694813509],[-71.58203157,41.69477651],[-71.58193257,41.694770509],[-71.58185657,41.694794509],[-71.58185657,41.694830509],[-71.581863569,41.694911509],[-71.581863569,41.695001509],[-71.58188657,41.695086509],[-71.58197057,41.695124509],[-71.58203157,41.695164509],[-71.58207757,41.695212509],[-71.58213057,41.69534151],[-71.58216957,41.695413509],[-71.58213157,41.695468509],[-71.58207057,41.69557751],[-71.58206257,41.69563651],[-71.58206957,41.69569451],[-71.58208557,41.69575751],[-71.58216157,41.69580951],[-71.58217657,41.69587251],[-71.582153569,41.695895509],[-71.58207757,41.695915509],[-71.58200157,41.69592551],[-71.581917569,41.69593251],[-71.58174957,41.69598051],[-71.58167357,41.696018509],[-71.581589569,41.696074509],[-71.58154357,41.69611651],[-71.58149757,41.696171509],[-71.58145957,41.696230509],[-71.581436569,41.69637051],[-71.58142957,41.696442509],[-71.58139857,41.69647051],[-71.581299569,41.696499509],[-71.581177569,41.696520509],[-71.581085569,41.69653151],[-71.581009569,41.69655151],[-71.580925569,41.69657151],[-71.580833569,41.696600509],[-71.58074257,41.696597509],[-71.58064357,41.69656851],[-71.58060557,41.69652451],[-71.580574569,41.696462509],[-71.580513569,41.69642751],[-71.580422569,41.696425509],[-71.580338569,41.69641751],[-71.580254569,41.69642851],[-71.580162569,41.696444509],[-71.580055569,41.69645151],[-71.579994569,41.69643951],[-71.579933569,41.69639551],[-71.579941569,41.69635951],[-71.579994569,41.69632251],[-71.580078569,41.69631151],[-71.580170569,41.69632251],[-71.580261569,41.696325509],[-71.580429569,41.69632151],[-71.58052857,41.69629651],[-71.580597569,41.69629951],[-71.58066657,41.69632051],[-71.580757569,41.696246509],[-71.58080357,41.69620451],[-71.580826569,41.69615451],[-71.58080357,41.696110509],[-71.580750569,41.696070509],[-71.580620569,41.69598851],[-71.58056657,41.69592151],[-71.58052857,41.695877509],[-71.580460569,41.69583451],[-71.58037557,41.69577751],[-71.58031557,41.69573351],[-71.58023857,41.69569551],[-71.580124569,41.69565751],[-71.580048569,41.69563651],[-71.579948569,41.695629509],[-71.579872569,41.695622509],[-71.579864569,41.695590509],[-71.579872569,41.695509509],[-71.579895569,41.69545551],[-71.579926569,41.69540051],[-71.579956569,41.695336509],[-71.579941569,41.695292509],[-71.579819569,41.695173509],[-71.579773569,41.695124509],[-71.579697569,41.695121509],[-71.579605569,41.69512851],[-71.579521569,41.69511251],[-71.579369569,41.69508851],[-71.579269569,41.695077509],[-71.579239569,41.69512751],[-71.579246568,41.695159509],[-71.579277569,41.695216509],[-71.579300569,41.69527051],[-71.579277569,41.69532051],[-71.579216569,41.69536251],[-71.579063569,41.695433509],[-71.578987569,41.69547551],[-71.578942569,41.695431509],[-71.578880569,41.69536051],[-71.578865569,41.695311509],[-71.578903569,41.69527051],[-71.578972568,41.69524151],[-71.578995568,41.695178509],[-71.578979569,41.69511151],[-71.578903569,41.695081509],[-71.578819568,41.69507451],[-71.578506568,41.695040509],[-71.578323569,41.695062509],[-71.578239568,41.69508751],[-71.578186569,41.695119509],[-71.578110569,41.695157509],[-71.578041568,41.695177509],[-71.577896569,41.69524351],[-71.577805568,41.695272509],[-71.577728568,41.69528751],[-71.577659568,41.69528451],[-71.577583569,41.695272509],[-71.577423568,41.69526751],[-71.577377568,41.69521051],[-71.577347568,41.695156509],[-71.577309568,41.695098509],[-71.577271568,41.69504551],[-71.577217568,41.69500651],[-71.577164568,41.694962509],[-71.577133568,41.69490951],[-71.577118569,41.694842509],[-71.577118569,41.694770509],[-71.577149568,41.69469751],[-71.577179568,41.69464251],[-71.577187568,41.694570509],[-71.577194568,41.694480509],[-71.577164568,41.69442651],[-71.577156568,41.694363509],[-71.577156568,41.694300509],[-71.577148568,41.694206509],[-71.577141568,41.693985509],[-71.576874568,41.69386551],[-71.576706568,41.693739509],[-71.576653568,41.693659509],[-71.576355568,41.69357151],[-71.576286568,41.693541509],[-71.575874567,41.693393509],[-71.575554568,41.69327851],[-71.574913568,41.69298651],[-71.574844567,41.69290751],[-71.574822567,41.69283151],[-71.574806567,41.692759509],[-71.574783567,41.692705509],[-71.574745567,41.692625509],[-71.574730567,41.692576509],[-71.574692567,41.692491509],[-71.574684567,41.692428509],[-71.574669567,41.692343509],[-71.574654567,41.692267509],[-71.574653567,41.692195509],[-71.574692567,41.692127509],[-71.574745567,41.692076509],[-71.574814567,41.692065509],[-71.574837568,41.692119509],[-71.574837568,41.692312509],[-71.574860567,41.692393509],[-71.574875568,41.692456509],[-71.574890567,41.692536509],[-71.574928567,41.692612509],[-71.574974567,41.692661509],[-71.575035567,41.692691509],[-71.575111567,41.692698509],[-71.575127568,41.69267551],[-71.575111567,41.692622509],[-71.575104567,41.692563509],[-71.575104567,41.692446509],[-71.575088568,41.692379509],[-71.575050568,41.692317509],[-71.575035567,41.692245509],[-71.575035567,41.692155509],[-71.575043567,41.692060509],[-71.575066567,41.692019509],[-71.575127568,41.692036509],[-71.575142567,41.692089509],[-71.575195567,41.692142509],[-71.575264568,41.692168509],[-71.575371567,41.692201509],[-71.575432567,41.692236509],[-71.575493568,41.692293509],[-71.575554568,41.692314509],[-71.575630568,41.692335509],[-71.575706568,41.692338509],[-71.575722567,41.692284509],[-71.575714568,41.692234509],[-71.575584567,41.692107509],[-71.575539568,41.692045509],[-71.575485567,41.691996509],[-71.575424567,41.691962509],[-71.575333567,41.691914509],[-71.575256567,41.691866509],[-71.575203568,41.691831509],[-71.575195567,41.691769509],[-71.575203568,41.691710509],[-71.575249567,41.691668509],[-71.575287567,41.691618509],[-71.575287567,41.691550509],[-71.575264568,41.691497509],[-71.575256567,41.691429508],[-71.575272567,41.691366509],[-71.575302568,41.691311509],[-71.575317567,41.691243509],[-71.575356567,41.691103509],[-71.575348567,41.691031509],[-71.575295567,41.690969509],[-71.575264568,41.690916509],[-71.575065567,41.690700509],[-71.574951567,41.690554508],[-71.574929567,41.690478509],[-71.574867567,41.690371509],[-71.574822567,41.690318508],[-71.574783567,41.690269509],[-71.574745567,41.690203508],[-71.574715567,41.690131509],[-71.574692567,41.690069508],[-71.574661567,41.690065508],[-71.574547567,41.690058509],[-71.574470567,41.690051509],[-71.574363567,41.690036509],[-71.574310567,41.689987508],[-71.574257567,41.689943509],[-71.574211567,41.689940509],[-71.574104567,41.689951508],[-71.574028567,41.689989508],[-71.573975567,41.690031509],[-71.573952567,41.690081509],[-71.573891567,41.690154509],[-71.573891567,41.690222508],[-71.573898567,41.690289509],[-71.573830567,41.690340508],[-71.573769567,41.690382509],[-71.573700567,41.690406509],[-71.573624567,41.690439509],[-71.573548567,41.690495508],[-71.573486567,41.690533508],[-71.573273567,41.690564509],[-71.573013566,41.690489509],[-71.572968566,41.690445509],[-71.572899567,41.690411509],[-71.572830566,41.690385509],[-71.572815566,41.690313509],[-71.572792566,41.690287509],[-71.572700566,41.690248509],[-71.572632567,41.690196509],[-71.572563566,41.690170509],[-71.572502566,41.690149509],[-71.572395567,41.690102509],[-71.572449566,41.690096509],[-71.572632567,41.690092509],[-71.572647567,41.690133509],[-71.572708567,41.690163508],[-71.572785567,41.690183508],[-71.572861567,41.690200508],[-71.572937567,41.690194509],[-71.573006566,41.690179509],[-71.573105566,41.690154509],[-71.573174567,41.690103508],[-71.573235567,41.690052509],[-71.573257567,41.689988508],[-71.573250567,41.689957509],[-71.573174567,41.689941509],[-71.573059567,41.689934509],[-71.572945567,41.689932508],[-71.572663566,41.689939509],[-71.572601566,41.689917509],[-71.572586566,41.689886509],[-71.572617566,41.689841509],[-71.572746567,41.689842509],[-71.572853566,41.689844509],[-71.572937567,41.689847509],[-71.573013566,41.689845509],[-71.573082567,41.689830508],[-71.573136567,41.689779509]]]]}}"}, +{"type": "precinct", "typeId": 608, "areaId": 25695, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":34,\"NAME\":\"0608\",\"SHAPE_Length\":0.1681143089051,\"SHAPE_Area\":-0.00067406268359147},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.557533563,41.709077513],[-71.557617563,41.709394513],[-71.557716562,41.709698513],[-71.557869563,41.710010513],[-71.557960563,41.710197513],[-71.558166562,41.710616514],[-71.558304563,41.710906513],[-71.558388563,41.711124514],[-71.558472563,41.711402513],[-71.558525563,41.711635513],[-71.558540563,41.711729514],[-71.558540563,41.711765514],[-71.558571563,41.711971513],[-71.558571563,41.712165513],[-71.558579563,41.712296513],[-71.558563563,41.712462514],[-71.558540563,41.712706513],[-71.558517563,41.712819514],[-71.558327563,41.713639514],[-71.558285563,41.713811514],[-71.558243563,41.713987514],[-71.558197563,41.714240514],[-71.558121563,41.714548514],[-71.558105563,41.714607514],[-71.558029563,41.714956514],[-71.557938563,41.715313514],[-71.557907563,41.715472514],[-71.557838563,41.715748514],[-71.557754563,41.716092514],[-71.557709563,41.716323514],[-71.557671563,41.716540514],[-71.557663563,41.716729514],[-71.557655563,41.716945514],[-71.557671563,41.717134514],[-71.557686563,41.717282515],[-71.557739563,41.717574515],[-71.557846563,41.717954514],[-71.558060563,41.718643515],[-71.558182564,41.718996515],[-71.558319564,41.719403515],[-71.558426563,41.719747515],[-71.558449563,41.719827515],[-71.558563563,41.720244515],[-71.558724564,41.720722515],[-71.558861564,41.721138515],[-71.559013564,41.721621515],[-71.559158564,41.722023516],[-71.559189564,41.722103516],[-71.559326564,41.722424515],[-71.559486564,41.722803516],[-71.559670564,41.723227516],[-71.559860564,41.723678516],[-71.560074565,41.724159516],[-71.560249565,41.724471516],[-71.560402565,41.724715516],[-71.560421565,41.724742516],[-71.560669564,41.725096516],[-71.561043565,41.725592516],[-71.561455565,41.726141517],[-71.561798565,41.726584516],[-71.562286565,41.727240516],[-71.562508565,41.727545517],[-71.562713565,41.727842516],[-71.562843566,41.728110517],[-71.562882566,41.728217516],[-71.562937566,41.728406516],[-71.562991565,41.728670517],[-71.562990565,41.728905517],[-71.562966565,41.729287516],[-71.562935566,41.729721517],[-71.563214566,41.729715516],[-71.568290567,41.729609517],[-71.569183567,41.729587517],[-71.569450568,41.729581516],[-71.569748567,41.729576516],[-71.572428568,41.729507516],[-71.57653057,41.729409516],[-71.57652357,41.729314516],[-71.57640857,41.728871517],[-71.576340569,41.728625516],[-71.57616357,41.728291516],[-71.576011569,41.727939516],[-71.575858569,41.727576516],[-71.575661569,41.727021515],[-71.575507569,41.726648516],[-71.575377569,41.726272516],[-71.57522557,41.725856515],[-71.575118569,41.725579515],[-71.575080569,41.725350515],[-71.575072569,41.725026516],[-71.575072569,41.724662515],[-71.575057569,41.724437515],[-71.575004569,41.724181515],[-71.574952569,41.724075515],[-71.574898569,41.723968515],[-71.574745569,41.723647515],[-71.574615569,41.723289515],[-71.574493569,41.722950515],[-71.574326569,41.722535515],[-71.574219568,41.722308515],[-71.574120568,41.722193515],[-71.574051569,41.722122515],[-71.573769568,41.722021515],[-71.573364568,41.721989515],[-71.572899568,41.721981515],[-71.572411568,41.721992515],[-71.572075568,41.721991515],[-71.571838568,41.721969515],[-71.571716568,41.721913515],[-71.571655568,41.721784515],[-71.571655568,41.721563515],[-71.571650568,41.721207515],[-71.571648568,41.721086515],[-71.571617568,41.720493515],[-71.571617568,41.720240515],[-71.571610568,41.719988515],[-71.571594568,41.718863515],[-71.571594568,41.718823515],[-71.571602567,41.718313514],[-71.571594568,41.717760514],[-71.571617568,41.716944514],[-71.571617568,41.716444514],[-71.571640567,41.716232514],[-71.571678568,41.716029514],[-71.571754568,41.715662514],[-71.571838567,41.715350514],[-71.571915567,41.714992513],[-71.571991567,41.714666514],[-71.572022568,41.714544513],[-71.572060568,41.714368513],[-71.572205567,41.713716514],[-71.572281568,41.713345514],[-71.572365567,41.713145513],[-71.572548568,41.712893513],[-71.572769568,41.712618513],[-71.572960568,41.712353513],[-71.573120568,41.712101513],[-71.573258567,41.711756513],[-71.573288568,41.711683513],[-71.573357567,41.711321512],[-71.573403568,41.711086513],[-71.573441568,41.710788513],[-71.573509568,41.710386512],[-71.573815568,41.710154512],[-71.574082568,41.709918512],[-71.574387568,41.709740513],[-71.574753568,41.709570512],[-71.575043568,41.709410512],[-71.575294568,41.709292512],[-71.575401569,41.709191513],[-71.575485568,41.709135513],[-71.575531452,41.709102597],[-71.574585898,41.708562835],[-71.574716661,41.708198074],[-71.574238343,41.70809828],[-71.574494249,41.706212484],[-71.573222743,41.70615096],[-71.57272393,41.706126824],[-71.57245743,41.705965021],[-71.573942215,41.704251808],[-71.574589428,41.703642666],[-71.57320934,41.703062078],[-71.571144567,41.702572511],[-71.571106567,41.702523512],[-71.571037566,41.702462511],[-71.570915567,41.702384511],[-71.570854567,41.702358511],[-71.570770566,41.702342511],[-71.570671566,41.702339511],[-71.570595566,41.702341511],[-71.570511566,41.702321511],[-71.570381566,41.702278511],[-71.570335566,41.702243511],[-71.570343566,41.702185511],[-71.570351567,41.702113511],[-71.570366567,41.702054511],[-71.570381566,41.701990511],[-71.570396566,41.701936511],[-71.570419566,41.701872511],[-71.570450566,41.701822511],[-71.570511566,41.701758511],[-71.570564567,41.701716511],[-71.570549566,41.701649511],[-71.570519566,41.701600511],[-71.570458566,41.701538511],[-71.570335566,41.701446511],[-71.570336566,41.701379511],[-71.570335566,41.701307511],[-71.570335566,41.701140511],[-71.570343566,41.701068511],[-71.570358566,41.700991511],[-71.570389567,41.700923511],[-71.570419566,41.700873511],[-71.570465567,41.700827511],[-71.570503566,41.700776511],[-71.570595566,41.700725511],[-71.570564567,41.700676511],[-71.570511566,41.700623511],[-71.570419566,41.700593511],[-71.570343566,41.700564511],[-71.570335566,41.700496511],[-71.570335566,41.700438511],[-71.570343566,41.700365511],[-71.570335566,41.700298511],[-71.570335566,41.700217511],[-71.570343566,41.700131511],[-71.570335566,41.700073511],[-71.570328566,41.700006511],[-71.570320566,41.699947511],[-71.570290566,41.699898511],[-71.570251566,41.699850511],[-71.570206566,41.699801511],[-71.570137567,41.699762511],[-71.570061566,41.699723511],[-71.570046566,41.699670511],[-71.570030566,41.699575511],[-71.570053566,41.69950751],[-71.570061566,41.699453511],[-71.570053566,41.69936851],[-71.570061566,41.699282511],[-71.570053566,41.699228511],[-71.570046566,41.699170511],[-71.570030566,41.699107511],[-71.570030566,41.698990511],[-71.570007566,41.69891951],[-71.569992566,41.698851511],[-71.569984566,41.698775511],[-71.569984566,41.69855051],[-71.570007566,41.69847751],[-71.570069566,41.698408511],[-71.570107566,41.69834051],[-71.570160566,41.69829851],[-71.570236566,41.698229511],[-71.570282566,41.69817851],[-71.570320566,41.698132511],[-71.570366566,41.69808651],[-71.570404566,41.698054511],[-71.570595566,41.69805051],[-71.570694566,41.698039511],[-71.570793566,41.698014511],[-71.570839567,41.69799051],[-71.570869566,41.69793651],[-71.570915567,41.69787251],[-71.570946566,41.69780851],[-71.570991567,41.69768151],[-71.571022566,41.69761751],[-71.571060566,41.69755351],[-71.571076566,41.69748551],[-71.571098566,41.69743151],[-71.571144566,41.69737151],[-71.571205567,41.69730751],[-71.571251566,41.69725251],[-71.571312566,41.69718751],[-71.571365567,41.69711851],[-71.571373566,41.69704651],[-71.571380567,41.69699251],[-71.571426566,41.69687451],[-71.571449566,41.69681951],[-71.571457567,41.69676151],[-71.571457567,41.69670251],[-71.571518567,41.69618351],[-71.57135257,41.695267363],[-71.570992566,41.69473151],[-71.571045566,41.69461751],[-71.571266567,41.69454051],[-71.571381566,41.69446151],[-71.571466566,41.69432751],[-71.569969566,41.69388051],[-71.569107565,41.693639509],[-71.568207565,41.693361509],[-71.568037565,41.693309509],[-71.568169565,41.691611509],[-71.568260565,41.691172509],[-71.568352565,41.690918509],[-71.568435565,41.690673509],[-71.567932565,41.690585509],[-71.567428564,41.690501509],[-71.567085565,41.690464509],[-71.566589564,41.690417509],[-71.566615564,41.690128509],[-71.566622565,41.690047509],[-71.566630564,41.689956509],[-71.566704565,41.689973509],[-71.566834565,41.689997509],[-71.567276564,41.690023509],[-71.567398565,41.689993509],[-71.568047565,41.689956509],[-71.568107565,41.689910509],[-71.568184565,41.689872509],[-71.568245565,41.689839509],[-71.568314565,41.689820509],[-71.568390565,41.689818509],[-71.568520565,41.689806509],[-71.568619565,41.689804509],[-71.568703565,41.689806509],[-71.568779565,41.689805509],[-71.568939565,41.689819509],[-71.569046565,41.689821509],[-71.569122566,41.689833509],[-71.569160566,41.689864509],[-71.569260566,41.689889508],[-71.569328565,41.689896509],[-71.569397565,41.689917509],[-71.569450566,41.689974509],[-71.569610566,41.690007508],[-71.569679565,41.690041509],[-71.569702566,41.690099509],[-71.569718565,41.690216509],[-71.569801566,41.690255509],[-71.569885565,41.690266509],[-71.570007565,41.690264509],[-71.570076566,41.690253509],[-71.570152566,41.690242509],[-71.570274566,41.690199509],[-71.570343566,41.690157509],[-71.570343566,41.690103508],[-71.570381566,41.690053509],[-71.570419566,41.689993509],[-71.570503566,41.689933509],[-71.570579566,41.689864509],[-71.570610565,41.689813508],[-71.570641566,41.689759509],[-71.570694566,41.689703509],[-71.570763565,41.689666509],[-71.570839566,41.689651509],[-71.570946566,41.689648509],[-71.571037566,41.689651509],[-71.571190566,41.689647509],[-71.571297566,41.689613509],[-71.571411566,41.689534509],[-71.571548566,41.689504508],[-71.571632566,41.689471509],[-71.571709566,41.689456509],[-71.571800566,41.689485509],[-71.571854566,41.689520508],[-71.571853567,41.689583509],[-71.571869566,41.689632509],[-71.572060566,41.689623509],[-71.572106567,41.689613509],[-71.572182567,41.689612509],[-71.572258566,41.689619508],[-71.572319567,41.689685509],[-71.572327566,41.689743509],[-71.572433567,41.689750509],[-71.572563566,41.689734508],[-71.572632567,41.689732508],[-71.572746567,41.689739509],[-71.572846567,41.689736508],[-71.572945567,41.689730509],[-71.572929566,41.689685509],[-71.572975566,41.689558508],[-71.572998567,41.689517509],[-71.573082567,41.689510509],[-71.573151567,41.689513509],[-71.573143566,41.689577508],[-71.573143566,41.689712509],[-71.573136567,41.689779509],[-71.573265566,41.689754508],[-71.573334567,41.689734508],[-71.573387567,41.689688509],[-71.573440566,41.689628509],[-71.573487567,41.689569509],[-71.573494566,41.689506509],[-71.573509567,41.689420508],[-71.573532566,41.689361509],[-71.573578567,41.689297509],[-71.573616567,41.689273509],[-71.573738567,41.689243509],[-71.573937567,41.689153508],[-71.573975567,41.689144509],[-71.574165567,41.689139509],[-71.574234566,41.689142509],[-71.574310567,41.689127509],[-71.574364567,41.689081509],[-71.574410567,41.689026509],[-71.574455567,41.688975508],[-71.574516567,41.688942508],[-71.574524567,41.688938508],[-71.574623567,41.688958508],[-71.574737567,41.688991508],[-71.574806567,41.689017508],[-71.574875567,41.689056508],[-71.574905567,41.689051508],[-71.574982567,41.689036508],[-71.574997567,41.688999508],[-71.574997567,41.688914508],[-71.574989567,41.688837508],[-71.574989567,41.688765508],[-71.574951567,41.688424509],[-71.575073567,41.688372508],[-71.575165567,41.688338508],[-71.575249567,41.688323509],[-71.575340567,41.688316508],[-71.575417567,41.688314508],[-71.575439568,41.688282508],[-71.575447567,41.688192508],[-71.575470567,41.688110509],[-71.575516568,41.688073509],[-71.575592567,41.688063508],[-71.575683567,41.688065508],[-71.575767567,41.688063508],[-71.575836567,41.688035509],[-71.575859567,41.687980508],[-71.575859567,41.687782508],[-71.575913567,41.687740509],[-71.575981567,41.687689508],[-71.576011567,41.687677508],[-71.576073567,41.687651508],[-71.576157568,41.687636508],[-71.576271567,41.687606509],[-71.576492568,41.687570508],[-71.576561567,41.687564508],[-71.576668568,41.687566509],[-71.576729568,41.687524508],[-71.576790567,41.687464508],[-71.576851567,41.687409508],[-71.576927567,41.687357508],[-71.576988567,41.687333509],[-71.577065567,41.687318508],[-71.577103567,41.687268508],[-71.577171568,41.687190508],[-71.577232568,41.687148508],[-71.577255568,41.687075508],[-71.577271568,41.687007508],[-71.577293568,41.686939508],[-71.577362568,41.686938508],[-71.577431568,41.686945508],[-71.577484568,41.686908508],[-71.577591568,41.686861508],[-71.577713568,41.686826507],[-71.577789568,41.686807508],[-71.577919568,41.686777508],[-71.578209568,41.686676508],[-71.578316568,41.686633508],[-71.578377568,41.686604508],[-71.578461568,41.686575508],[-71.578461568,41.686499508],[-71.578430568,41.686445508],[-71.578407568,41.686392508],[-71.578407568,41.686338508],[-71.578415568,41.686270508],[-71.578438568,41.686198508],[-71.578461568,41.686112508],[-71.578468568,41.686044508],[-71.578468568,41.685976508],[-71.578476568,41.685918508],[-71.578476568,41.685859508],[-71.578453568,41.685806508],[-71.578407568,41.685730508],[-71.578362568,41.685663508],[-71.578285568,41.685611508],[-71.578209568,41.685532508],[-71.578186568,41.685460508],[-71.578148568,41.685430508],[-71.578049568,41.685400508],[-71.577934568,41.685380508],[-71.577820568,41.685342508],[-71.577812568,41.685298508],[-71.577851568,41.685185508],[-71.577873568,41.685125508],[-71.577896568,41.685048508],[-71.577919567,41.684993507],[-71.577972568,41.684938507],[-71.577980568,41.684870508],[-71.577942568,41.684822507],[-71.577858568,41.684783507],[-71.577789568,41.684740507],[-71.577759568,41.684677508],[-71.577759568,41.684614508],[-71.577751568,41.684515507],[-71.577751568,41.684457508],[-71.577843567,41.684459508],[-71.577919567,41.684476507],[-71.577995568,41.684469507],[-71.578026568,41.684311507],[-71.578003568,41.684222507],[-71.577988568,41.684154508],[-71.577972568,41.684092508],[-71.577950568,41.684070508],[-71.577889568,41.684035508],[-71.577835568,41.683982507],[-71.577789568,41.683907507],[-71.577751568,41.683858508],[-71.577690568,41.683819508],[-71.577675568,41.683752507],[-71.577690568,41.683693507],[-71.577728567,41.683683508],[-71.577850568,41.683671507],[-71.577873568,41.683621507],[-71.577858568,41.683567508],[-71.577835568,41.683491508],[-71.577820568,41.683424507],[-71.577789568,41.683375507],[-71.577782568,41.683326507],[-71.577690567,41.683310507],[-71.577591567,41.683299507],[-71.577515567,41.683296508],[-71.577499568,41.683238507],[-71.577492567,41.683175507],[-71.577492567,41.683026507],[-71.577568567,41.682997507],[-71.577644568,41.682964508],[-71.577705567,41.682886508],[-71.577713568,41.682805507],[-71.577644568,41.682762507],[-71.577568567,41.682723507],[-71.577476567,41.682684507],[-71.577408568,41.682650507],[-71.577400567,41.682587507],[-71.577400567,41.682528507],[-71.577393567,41.682434507],[-71.577393567,41.682285507],[-71.577400567,41.682209507],[-71.577400567,41.682132507],[-71.577385568,41.682074507],[-71.577378567,41.682020507],[-71.577377567,41.681885507],[-71.577454567,41.681847507],[-71.577522568,41.681823507],[-71.577539568,41.681815507],[-71.577614567,41.681776507],[-71.577667567,41.681707507],[-71.577675568,41.681635507],[-71.577645568,41.681582507],[-71.577583568,41.681525507],[-71.577522568,41.681472507],[-71.577469568,41.681424507],[-71.577522568,41.681386506],[-71.577629567,41.681348507],[-71.577713568,41.681337507],[-71.577805567,41.681322507],[-71.577927568,41.681292507],[-71.577965568,41.681250506],[-71.577973568,41.681192506],[-71.577957568,41.681102507],[-71.577949568,41.681035506],[-71.577942567,41.680963507],[-71.577957568,41.680899506],[-71.577988568,41.680818507],[-71.578003567,41.680759507],[-71.578018567,41.680704506],[-71.578026568,41.680650507],[-71.578049568,41.680623507],[-71.578148568,41.680580507],[-71.578247568,41.680546507],[-71.578323568,41.680517507],[-71.578423568,41.680485507],[-71.578499568,41.680459507],[-71.578598568,41.680502507],[-71.578903568,41.680306507],[-71.578987568,41.680228507],[-71.579491568,41.679847506],[-71.579544568,41.679805507],[-71.579605568,41.679773506],[-71.579674568,41.679753506],[-71.579758568,41.679751506],[-71.579826568,41.679781507],[-71.579872568,41.679816507],[-71.579910568,41.679865506],[-71.579987568,41.679895507],[-71.580139569,41.679792506],[-71.580109568,41.679491507],[-71.580109568,41.679360506],[-71.580116568,41.679293507],[-71.580742569,41.679184506],[-71.580765569,41.679139507],[-71.580783569,41.679026506],[-71.580612568,41.679029506],[-71.580253568,41.679038506],[-71.580032568,41.679056506],[-71.579689568,41.679091506],[-71.579521568,41.679117507],[-71.579071568,41.679172506],[-71.578911568,41.679216507],[-71.578499568,41.679316507],[-71.578255567,41.679366506],[-71.577858568,41.679465507],[-71.577789567,41.679480506],[-71.577316567,41.679603507],[-71.577148567,41.679648507],[-71.576866567,41.679712506],[-71.576538567,41.679774507],[-71.576286567,41.679861507],[-71.575973567,41.679913507],[-71.575470567,41.679964506],[-71.575318567,41.679983506],[-71.574936566,41.680215506],[-71.574585566,41.680317507],[-71.574196566,41.680425507],[-71.573784567,41.680529506],[-71.573281566,41.680662507],[-71.573082566,41.680707507],[-71.572868566,41.680766507],[-71.572494566,41.680869507],[-71.571510565,41.681120507],[-71.570999565,41.681258507],[-71.570633565,41.681374507],[-71.570313566,41.681480507],[-71.569916565,41.681629507],[-71.569740565,41.681691507],[-71.569458565,41.681833508],[-71.569206565,41.681964507],[-71.569046564,41.682081507],[-71.568771565,41.682258508],[-71.568321565,41.682610508],[-71.568138565,41.682749508],[-71.567963564,41.682924508],[-71.567871565,41.683066507],[-71.567665564,41.683066507],[-71.567513564,41.683110507],[-71.567177564,41.683275508],[-71.566811564,41.683472507],[-71.566200564,41.683783508],[-71.565956564,41.683901507],[-71.565544564,41.684131508],[-71.565384563,41.684229508],[-71.565239564,41.684323508],[-71.564873563,41.684551508],[-71.564552564,41.684707508],[-71.564125563,41.684631508],[-71.563751563,41.684549508],[-71.563362563,41.684446508],[-71.562805562,41.684282508],[-71.562218563,41.684115508],[-71.561783563,41.683985508],[-71.561287562,41.683861508],[-71.560982562,41.683774508],[-71.560844562,41.683777508],[-71.560707562,41.683834508],[-71.560814563,41.684075508],[-71.560814563,41.684318508],[-71.560822562,41.684570508],[-71.560829562,41.685024508],[-71.560845562,41.685443508],[-71.560844562,41.685614509],[-71.560837562,41.685767508],[-71.560837562,41.685839508],[-71.560839562,41.685921508],[-71.560841562,41.686002509],[-71.560843562,41.686083509],[-71.560845562,41.686258509],[-71.560844562,41.686668509],[-71.560852563,41.687104508],[-71.560852563,41.687816509],[-71.560829563,41.688091509],[-71.560799562,41.688330508],[-71.560761562,41.688534509],[-71.560684562,41.688810509],[-71.560570562,41.689155509],[-71.560448562,41.689482509],[-71.560326563,41.689804509],[-71.560219562,41.690027509],[-71.560181562,41.690100509],[-71.560112563,41.690304509],[-71.560051563,41.690468509],[-71.559852562,41.690486509],[-71.559609562,41.690518509],[-71.559509563,41.69053051],[-71.559189562,41.690631509],[-71.559044562,41.690679509],[-71.558517561,41.690943509],[-71.558354562,41.691031509],[-71.558281561,41.691070509],[-71.558052561,41.691197509],[-71.557487561,41.691516509],[-71.557098561,41.691763509],[-71.557243562,41.69218851],[-71.557373562,41.692698509],[-71.557503561,41.69315051],[-71.557617562,41.69360251],[-71.557709562,41.69393851],[-71.557785562,41.69431451],[-71.557854561,41.69465551],[-71.557899562,41.695055511],[-71.557938562,41.69539251],[-71.557961562,41.695621511],[-71.557976562,41.69601751],[-71.557983562,41.69642251],[-71.557976562,41.696746511],[-71.557961562,41.697138511],[-71.557953562,41.697193511],[-71.557922562,41.697540511],[-71.557884562,41.697843511],[-71.557877562,41.69802351],[-71.557823562,41.698434511],[-71.557785562,41.698813511],[-71.557739562,41.699197511],[-71.557701562,41.699567511],[-71.557671562,41.699820511],[-71.557640562,41.700113511],[-71.557625562,41.700415511],[-71.557609562,41.701095511],[-71.557587562,41.702118511],[-71.557587562,41.702406512],[-71.557573562,41.702772512],[-71.557564562,41.703262512],[-71.557556563,41.703699512],[-71.557541562,41.704218512],[-71.557548562,41.704695512],[-71.557541562,41.705204512],[-71.557541562,41.705587512],[-71.557533562,41.706082512],[-71.557518563,41.706528512],[-71.557511562,41.706920512],[-71.557518563,41.707118513],[-71.557518563,41.707834512],[-71.557510562,41.708262512],[-71.557503562,41.708559513],[-71.557510562,41.708780513],[-71.557533563,41.709077513]]]]}}"}, +{"type": "precinct", "typeId": 609, "areaId": 25701, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":40,\"NAME\":\"0609\",\"SHAPE_Length\":0.21709493134414,\"SHAPE_Area\":-0.0013859081225496},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.607529578,41.695990509],[-71.607666578,41.696052508],[-71.607906578,41.696122509],[-71.608292578,41.696290509],[-71.610584579,41.696376509],[-71.61279058,41.696582509],[-71.61298958,41.696601509],[-71.613801581,41.696768509],[-71.615121581,41.697040509],[-71.616401581,41.697449509],[-71.617353581,41.697788509],[-71.618196582,41.698279509],[-71.621002583,41.700212509],[-71.622178583,41.701129509],[-71.623222583,41.70191551],[-71.623795584,41.702492509],[-71.624121584,41.70269851],[-71.624263584,41.702726509],[-71.624796584,41.70276951],[-71.624991584,41.70269651],[-71.625449584,41.702604509],[-71.626152584,41.702474509],[-71.626213585,41.70248051],[-71.626292585,41.70248551],[-71.626398585,41.702492509],[-71.626911585,41.70248051],[-71.627157585,41.70242051],[-71.627197585,41.702490509],[-71.627173585,41.702780509],[-71.627350585,41.702800509],[-71.627479585,41.70282951],[-71.627533585,41.70290851],[-71.627601585,41.70302851],[-71.627617585,41.70310551],[-71.627632585,41.70322151],[-71.627655585,41.70333351],[-71.627708585,41.703346509],[-71.627846585,41.70332451],[-71.628013585,41.70331651],[-71.628113586,41.70335951],[-71.628197585,41.70345251],[-71.628213586,41.703466509],[-71.628281585,41.70351751],[-71.628357585,41.70356951],[-71.628380585,41.70359151],[-71.628391585,41.703660509],[-71.628542586,41.703623509],[-71.628723585,41.703579509],[-71.629029586,41.70350951],[-71.629356586,41.703425509],[-71.629631586,41.70336051],[-71.629921586,41.70329551],[-71.630211586,41.70322151],[-71.630554586,41.703132509],[-71.630905586,41.70304751],[-71.631310587,41.702921509],[-71.631744586,41.70275351],[-71.632019586,41.702648509],[-71.632263587,41.702570509],[-71.632439587,41.702494509],[-71.632606586,41.70242751],[-71.632851587,41.702318509],[-71.633026587,41.702265509],[-71.633125587,41.70223151],[-71.633225587,41.702215509],[-71.633286587,41.702200509],[-71.633331587,41.70219051],[-71.633469587,41.702187509],[-71.633530587,41.702181509],[-71.633629587,41.702183509],[-71.633722587,41.702194509],[-71.634377587,41.702315509],[-71.635132588,41.702491509],[-71.635140587,41.702402509],[-71.635479588,41.702352509],[-71.635603588,41.702317509],[-71.635692588,41.702149509],[-71.635750588,41.701941509],[-71.635958587,41.701695509],[-71.635960587,41.701690509],[-71.636057587,41.701540509],[-71.636156588,41.701493509],[-71.636238588,41.701426509],[-71.636299588,41.701388509],[-71.636383588,41.701355509],[-71.636444587,41.701322509],[-71.636490588,41.701276509],[-71.636528588,41.701225509],[-71.636559588,41.701171509],[-71.636582588,41.701107509],[-71.636589588,41.701044509],[-71.636589588,41.700945509],[-71.636612588,41.700872509],[-71.636528588,41.700847509],[-71.636505588,41.700825509],[-71.636398588,41.700841509],[-71.636360588,41.700855509],[-71.636299588,41.700911509],[-71.636246588,41.700953509],[-71.636162588,41.700995509],[-71.636063588,41.701047509],[-71.635956587,41.701085509],[-71.635941587,41.701027509],[-71.635895588,41.700920509],[-71.635903587,41.700866509],[-71.635971588,41.700824509],[-71.636063588,41.700808509],[-71.636124588,41.700780509],[-71.636207588,41.700737509],[-71.636284588,41.700709509],[-71.636360588,41.700675509],[-71.636421588,41.700633509],[-71.636536588,41.700599509],[-71.636604588,41.700571509],[-71.636688588,41.700524509],[-71.636749588,41.700495509],[-71.636833588,41.700471509],[-71.636864588,41.700430509],[-71.636851588,41.700372509],[-71.636826588,41.700345509],[-71.636787588,41.700332509],[-71.636681588,41.700353509],[-71.636528588,41.700401508],[-71.636490588,41.700452509],[-71.636429588,41.700476509],[-71.636345588,41.700473509],[-71.636315588,41.700456509],[-71.636269587,41.700407509],[-71.636261588,41.700353509],[-71.636299588,41.700303508],[-71.636322588,41.700239509],[-71.636322588,41.700073509],[-71.636345588,41.700005509],[-71.636368587,41.699950509],[-71.636383588,41.699837508],[-71.636421588,41.699764509],[-71.636467588,41.699687509],[-71.636551588,41.699599509],[-71.636566588,41.699549509],[-71.636589588,41.699477509],[-71.636665588,41.699380509],[-71.636696588,41.699335509],[-71.636742588,41.699266509],[-71.636772588,41.699211508],[-71.636818588,41.699161509],[-71.636841588,41.699111509],[-71.636833588,41.699048509],[-71.636803588,41.698873509],[-71.636803588,41.698711508],[-71.636795587,41.698648508],[-71.636810588,41.698517508],[-71.636826588,41.698427509],[-71.636841588,41.698350509],[-71.636864588,41.698291509],[-71.636894588,41.698146508],[-71.636917588,41.698073509],[-71.636925588,41.697997509],[-71.636925588,41.697668509],[-71.636932587,41.697600508],[-71.636932587,41.697469508],[-71.636940588,41.697384508],[-71.636955588,41.697253508],[-71.636978588,41.697158508],[-71.637001588,41.697108508],[-71.637032588,41.697062508],[-71.637131588,41.697051508],[-71.637207588,41.697031508],[-71.637352588,41.696951508],[-71.637436588,41.696913508],[-71.637543588,41.696884508],[-71.637627588,41.696846508],[-71.637695588,41.696799508],[-71.637741588,41.696753508],[-71.637779588,41.696698508],[-71.637802588,41.696625508],[-71.637833588,41.696575508],[-71.637886589,41.696497508],[-71.637939588,41.696429508],[-71.637916588,41.696366508],[-71.637901588,41.696312508],[-71.637893588,41.696254508],[-71.637901588,41.696200508],[-71.637909588,41.696137508],[-71.637932588,41.696078508],[-71.637924588,41.696015508],[-71.637878588,41.695921508],[-71.637848588,41.695868508],[-71.637802588,41.695810508],[-71.637832588,41.695742508],[-71.637856588,41.695674508],[-71.637848588,41.695566508],[-71.637818588,41.695481508],[-71.637795588,41.695423508],[-71.637764588,41.695370507],[-71.637749588,41.695276508],[-71.637741588,41.695208508],[-71.637726588,41.695155507],[-71.637703588,41.695097507],[-71.637688588,41.695043508],[-71.637673588,41.694872508],[-71.637650588,41.694810508],[-71.637619588,41.694743508],[-71.637573588,41.694658508],[-71.637543588,41.694578508],[-71.637543588,41.694506508],[-71.637558588,41.694434507],[-71.637589588,41.694370508],[-71.637619588,41.694293508],[-71.637657588,41.694233508],[-71.637672587,41.694179507],[-71.637688588,41.694102507],[-71.637688588,41.694043507],[-71.637673587,41.693909507],[-71.637665588,41.693801508],[-71.637634587,41.693747508],[-71.637543588,41.693691507],[-71.637474588,41.693666508],[-71.637467588,41.693598507],[-71.637466588,41.693441507],[-71.637459587,41.693342507],[-71.637436588,41.693266507],[-71.637398588,41.693217508],[-71.637352588,41.693177508],[-71.637306587,41.693102508],[-71.637306587,41.692949508],[-71.637321587,41.692831508],[-71.637390588,41.692780507],[-71.637451588,41.692729507],[-71.637520588,41.692683507],[-71.637543588,41.692633507],[-71.637505588,41.692530507],[-71.637467588,41.692432507],[-71.637451588,41.692374507],[-71.637413588,41.692271507],[-71.637375588,41.692204507],[-71.637322587,41.692129508],[-71.637291588,41.692071508],[-71.637283587,41.691999507],[-71.637283587,41.691689507],[-71.637298588,41.691607507],[-71.637306587,41.691548507],[-71.637314588,41.691476507],[-71.637360587,41.691412507],[-71.637451588,41.691342507],[-71.637497587,41.691283507],[-71.637535588,41.691237507],[-71.637550588,41.691165507],[-71.637581588,41.691096507],[-71.637680588,41.691063507],[-71.637756588,41.691052507],[-71.637863588,41.691054507],[-71.637939588,41.691048507],[-71.638008588,41.691023507],[-71.638062587,41.690977507],[-71.638107588,41.690931507],[-71.638168588,41.690889507],[-71.638252588,41.690878507],[-71.638328588,41.690890507],[-71.638397588,41.690947507],[-71.638435588,41.691018507],[-71.638481588,41.691058506],[-71.638535588,41.691079507],[-71.638588588,41.691033507],[-71.638649588,41.691000506],[-71.638763588,41.690979507],[-71.638832588,41.690955507],[-71.638908588,41.690922506],[-71.639008588,41.690924507],[-71.639107588,41.690922506],[-71.639145588,41.690939507],[-71.639191589,41.690987507],[-71.639244588,41.691031507],[-71.639267589,41.691067507],[-71.639275588,41.691125507],[-71.639274588,41.691147507],[-71.639282588,41.691201507],[-71.639282588,41.691309507],[-71.639275588,41.691391507],[-71.639282588,41.691485507],[-71.639282588,41.691643507],[-71.639297588,41.691701507],[-71.639343588,41.691767507],[-71.639404589,41.691847507],[-71.639435588,41.691882507],[-71.639458588,41.691904507],[-71.639549588,41.691907507],[-71.639618589,41.691887507],[-71.639702588,41.691854507],[-71.639771589,41.691803507],[-71.639831589,41.691747507],[-71.639892589,41.691696507],[-71.639954588,41.691677507],[-71.640037588,41.691679507],[-71.640099589,41.691714507],[-71.640198589,41.691748507],[-71.640305588,41.691750507],[-71.640304589,41.691673507],[-71.640305588,41.691583507],[-71.640312589,41.691497507],[-71.640320589,41.691439507],[-71.640335589,41.691312506],[-71.640350588,41.691213507],[-71.640358589,41.691127507],[-71.640358589,41.690938507],[-71.640366588,41.690870507],[-71.640388588,41.690825506],[-71.640480588,41.690782507],[-71.640633589,41.690738507],[-71.640716588,41.690718507],[-71.640785589,41.690721507],[-71.640892588,41.690719507],[-71.640991589,41.690721507],[-71.641075589,41.690719507],[-71.641388589,41.690725507],[-71.641480589,41.690723507],[-71.641556589,41.690726507],[-71.641640589,41.690724507],[-71.641739589,41.690744507],[-71.641922589,41.690812507],[-71.641975589,41.690878507],[-71.642036589,41.690917507],[-71.642105589,41.690965507],[-71.642189589,41.690981506],[-71.642265589,41.690989507],[-71.64234959,41.690982506],[-71.642418589,41.690967507],[-71.642479589,41.690939507],[-71.642532589,41.690888507],[-71.642593589,41.690819507],[-71.642654589,41.690782507],[-71.642723589,41.690726507],[-71.642769589,41.690680507],[-71.64279959,41.690616507],[-71.642822589,41.690562507],[-71.64285359,41.690507507],[-71.642868589,41.690439506],[-71.64289159,41.690366507],[-71.642929589,41.690302506],[-71.642983589,41.690234507],[-71.643021589,41.690188507],[-71.64302859,41.690089506],[-71.64302859,41.690021507],[-71.64301359,41.689904507],[-71.64299059,41.689851506],[-71.642998589,41.689797506],[-71.642967589,41.689689507],[-71.642899589,41.689641506],[-71.64283759,41.689611507],[-71.64277659,41.689558506],[-71.642716589,41.689497507],[-71.642654589,41.689440506],[-71.642601589,41.689364506],[-71.64256359,41.689311506],[-71.642502589,41.689272506],[-71.642456589,41.689210506],[-71.642418589,41.689161507],[-71.642387589,41.689108506],[-71.642372589,41.689050506],[-71.642342589,41.688943506],[-71.642327589,41.688871507],[-71.642303589,41.688790507],[-71.642281589,41.688701506],[-71.642258589,41.688643506],[-71.642258589,41.688584506],[-71.642273589,41.688507506],[-71.642288589,41.688444507],[-71.642281589,41.688372506],[-71.642250589,41.688319506],[-71.642196589,41.688261506],[-71.642166589,41.688199506],[-71.642120589,41.688137506],[-71.642044589,41.688085506],[-71.642006589,41.688018506],[-71.641952589,41.687884506],[-71.641983589,41.687807506],[-71.642120589,41.687709506],[-71.642120589,41.687453506],[-71.642067589,41.687391507],[-71.641998589,41.687338506],[-71.641945589,41.687295506],[-71.641899589,41.687237506],[-71.641815589,41.687171506],[-71.641724589,41.687120506],[-71.641678589,41.687067506],[-71.641663589,41.687035506],[-71.641648589,41.687013506],[-71.641571589,41.686961506],[-71.641502589,41.686895506],[-71.641472589,41.686761506],[-71.641411589,41.686676506],[-71.641357589,41.686588506],[-71.641350589,41.686525506],[-71.641273589,41.686468506],[-71.641190589,41.686429506],[-71.641075589,41.686378506],[-71.640999589,41.686330506],[-71.640983589,41.686308506],[-71.640961589,41.686272506],[-71.640930588,41.686224506],[-71.640907589,41.686161506],[-71.640915588,41.686089506],[-71.640946589,41.686052506],[-71.640953588,41.686034506],[-71.641014588,41.686010506],[-71.641090588,41.686022506],[-71.641152589,41.686056506],[-71.641212589,41.686087506],[-71.641274589,41.686121506],[-71.641357589,41.686160506],[-71.641411589,41.686172506],[-71.641640589,41.686248506],[-71.641739589,41.686282506],[-71.641945589,41.686344506],[-71.642006589,41.686388506],[-71.642021588,41.686469506],[-71.642029589,41.686523506],[-71.642097589,41.686575506],[-71.642204589,41.686613506],[-71.642265589,41.686666506],[-71.642334589,41.686732506],[-71.642395589,41.686789506],[-71.642395589,41.686847506],[-71.642387589,41.686965506],[-71.642388589,41.687032506],[-71.642387589,41.687699506],[-71.642403589,41.687766506],[-71.642441589,41.687833506],[-71.642487589,41.687899506],[-71.642502589,41.687962506],[-71.642509589,41.688020506],[-71.642548589,41.688078506],[-71.64262459,41.688121506],[-71.642692589,41.688151507],[-71.64283759,41.688206506],[-71.642883589,41.688250506],[-71.64293759,41.688289506],[-71.643005589,41.688315506],[-71.64308959,41.688353506],[-71.643143589,41.688384507],[-71.643143589,41.688433506],[-71.64312859,41.688528506],[-71.64312759,41.688578507],[-71.64312859,41.688663506],[-71.64312759,41.688740506],[-71.643120589,41.688803506],[-71.643120589,41.688893507],[-71.643135589,41.688965507],[-71.643143589,41.689032506],[-71.643181589,41.689090506],[-71.64324259,41.689106507],[-71.643318589,41.689096506],[-71.64336459,41.689077506],[-71.64337959,41.688955506],[-71.64341859,41.688886506],[-71.643471589,41.688840506],[-71.64351659,41.688798506],[-71.643623589,41.688800506],[-71.64371559,41.688803506],[-71.64381459,41.688787506],[-71.64389059,41.688754507],[-71.64395159,41.688721506],[-71.64404359,41.688665506],[-71.644112589,41.688618507],[-71.64416559,41.688549506],[-71.64420359,41.688490506],[-71.64423459,41.688435506],[-71.64430259,41.688380506],[-71.644363589,41.688320506],[-71.644440589,41.688183506],[-71.64448559,41.688128506],[-71.64456959,41.687995507],[-71.64458559,41.687941506],[-71.64468459,41.687880506],[-71.64474559,41.687820507],[-71.64475359,41.687757506],[-71.644752589,41.687662506],[-71.64476059,41.687586506],[-71.64477559,41.687473506],[-71.64478359,41.687396506],[-71.64478359,41.687315506],[-71.644791589,41.687256506],[-71.64480659,41.687193506],[-71.644829589,41.687120506],[-71.64485259,41.687066506],[-71.64485159,41.687030506],[-71.64485959,41.687002506],[-71.64485259,41.686944506],[-71.64485959,41.686867506],[-71.64488259,41.686858506],[-71.64495159,41.686865505],[-71.64495159,41.686933506],[-71.644966589,41.687000506],[-71.64498959,41.687026506],[-71.64506559,41.687106506],[-71.64513459,41.687113506],[-71.64521059,41.687093506],[-71.64524859,41.687038506],[-71.64524859,41.686966506],[-71.64527959,41.686894506],[-71.64532559,41.686870506],[-71.64540959,41.686882506],[-71.64551559,41.686942506],[-71.64559959,41.686976506],[-71.64569959,41.686979506],[-71.64578259,41.686977506],[-71.64590559,41.686983505],[-71.645996591,41.686999506],[-71.64607259,41.687028506],[-71.64615659,41.687081506],[-71.64621759,41.687129506],[-71.646210591,41.687205506],[-71.64621759,41.687277506],[-71.64626359,41.687339506],[-71.64633259,41.687392506],[-71.646408591,41.687435506],[-71.64647759,41.687478506],[-71.64647759,41.687542506],[-71.64650759,41.687617506],[-71.646599591,41.687696506],[-71.64665259,41.687745506],[-71.64672159,41.687806506],[-71.646774591,41.687881506],[-71.64680559,41.687971506],[-71.646835591,41.688029506],[-71.64685859,41.688082506],[-71.64689659,41.688135506],[-71.64691959,41.688189506],[-71.64693559,41.688242506],[-71.646973591,41.688327507],[-71.64701959,41.688385507],[-71.64707259,41.688437506],[-71.647118591,41.688490506],[-71.647186591,41.688543506],[-71.647293591,41.688594506],[-71.647339591,41.688629506],[-71.647377591,41.688692506],[-71.647453591,41.688766506],[-71.647507591,41.688828506],[-71.647583591,41.688871507],[-71.647659591,41.688879506],[-71.647743591,41.688877506],[-71.647835591,41.688884506],[-71.647911591,41.688895506],[-71.647987591,41.688916506],[-71.648094591,41.688936506],[-71.648270591,41.688932507],[-71.648354591,41.688921506],[-71.648422591,41.688897506],[-71.648499591,41.688868506],[-71.648605591,41.688861506],[-71.648689592,41.688864506],[-71.648788591,41.688862506],[-71.648872591,41.688882506],[-71.649017592,41.688937506],[-71.649056592,41.688986506],[-71.649040592,41.689054506],[-71.649033591,41.689113506],[-71.649010591,41.689172506],[-71.649147591,41.689169506],[-71.649216592,41.689199506],[-71.649261591,41.689243507],[-71.649300591,41.689314506],[-71.649399591,41.689347506],[-71.649467592,41.689386506],[-71.649521592,41.689426506],[-71.649590591,41.689456507],[-71.649658592,41.689468506],[-71.649742592,41.689475507],[-71.649940591,41.689502506],[-71.650017591,41.689504506],[-71.650116591,41.689502506],[-71.650230592,41.689513507],[-71.650215591,41.689576506],[-71.650200592,41.689631507],[-71.650147592,41.689744506],[-71.650146592,41.689812506],[-71.650230592,41.689819506],[-71.650391592,41.689824507],[-71.650467591,41.689823506],[-71.650536592,41.689826507],[-71.650620592,41.689824507],[-71.650662592,41.689824507],[-71.650734592,41.689825507],[-71.650948592,41.689821506],[-71.651024592,41.689805507],[-71.651100592,41.689781506],[-71.651230592,41.689751507],[-71.651306592,41.689736506],[-71.651337592,41.689685506],[-71.651352592,41.689613507],[-71.651314592,41.689605506],[-71.651375592,41.689581506],[-71.651710593,41.689587506],[-71.651761592,41.689589506],[-71.651833592,41.689593507],[-71.651840592,41.689615506],[-71.651894592,41.689686506],[-71.651955592,41.689694506],[-71.652084592,41.689695506],[-71.652115592,41.689672507],[-71.652214593,41.689625506],[-71.652298592,41.689587506],[-71.652382592,41.689585506],[-71.652435592,41.689561506],[-71.652458592,41.689543506],[-71.652504593,41.689546506],[-71.652580592,41.689553506],[-71.652633592,41.689574507],[-71.652672592,41.689623506],[-71.652710592,41.689667506],[-71.652794593,41.689692507],[-71.652962592,41.689715506],[-71.653076593,41.689744506],[-71.653130593,41.689784506],[-71.653206593,41.689818506],[-71.653274592,41.689857506],[-71.653328593,41.689905507],[-71.653389593,41.689917506],[-71.653503593,41.689915506],[-71.653572593,41.689940506],[-71.653648593,41.689965507],[-71.653725593,41.690063507],[-71.653809593,41.690065506],[-71.653900593,41.690081507],[-71.653915593,41.690166506],[-71.653923593,41.690261506],[-71.653908593,41.690329506],[-71.653954593,41.690355507],[-71.654015593,41.690371507],[-71.654152593,41.690372507],[-71.654251593,41.690375507],[-71.654343593,41.690373507],[-71.654434593,41.690375507],[-71.654511593,41.690373507],[-71.654579594,41.690358506],[-71.654663593,41.690352507],[-71.654732594,41.690337506],[-71.654823593,41.690316507],[-71.654915593,41.690292506],[-71.654984594,41.690263506],[-71.655075593,41.690234506],[-71.655144594,41.690210506],[-71.655213593,41.690172506],[-71.655281594,41.690121507],[-71.655365593,41.690074506],[-71.655426593,41.690028506],[-71.655464593,41.689955506],[-71.655472594,41.689896506],[-71.655472594,41.689522506],[-71.655495594,41.689463506],[-71.655564593,41.689421506],[-71.655647594,41.689419506],[-71.655754593,41.689421506],[-71.655899594,41.689418506],[-71.655983594,41.689421506],[-71.656074594,41.689418506],[-71.656166594,41.689421506],[-71.656250594,41.689419506],[-71.656334594,41.689426506],[-71.656441594,41.689437506],[-71.656525594,41.689440506],[-71.656616594,41.689437506],[-71.656738594,41.689439506],[-71.656815594,41.689437506],[-71.656883594,41.689440506],[-71.656967594,41.689447506],[-71.657127594,41.689475506],[-71.657211594,41.689491506],[-71.657311594,41.689493506],[-71.657440594,41.689490506],[-71.657532594,41.689493506],[-71.657692594,41.689575506],[-71.657745594,41.689600506],[-71.657829594,41.689621506],[-71.657906594,41.689633506],[-71.658028595,41.689621506],[-71.658112594,41.689601506],[-71.658188594,41.689622506],[-71.658234594,41.689675506],[-71.658226595,41.689724506],[-71.658195594,41.689784506],[-71.658150594,41.689924506],[-71.658157594,41.689996506],[-71.658211594,41.690053506],[-71.658264595,41.690093506],[-71.658318595,41.690150506],[-71.658394595,41.690157506],[-71.658470594,41.690169506],[-71.658569595,41.690284506],[-71.658638594,41.690323506],[-71.658707595,41.690357506],[-71.658859595,41.690399506],[-71.658928595,41.690429506],[-71.659004595,41.690449506],[-71.659073595,41.690470506],[-71.659126594,41.690514506],[-71.659218595,41.690530507],[-71.659302594,41.690533506],[-71.659370595,41.690517506],[-71.659508595,41.690501506],[-71.659538595,41.690500506],[-71.659721595,41.690496506],[-71.659798595,41.690449506],[-71.659836595,41.690403506],[-71.659904595,41.690375507],[-71.659988595,41.690355507],[-71.660133595,41.690324506],[-71.660194595,41.690314506],[-71.660278595,41.690357506],[-71.660347595,41.690409506],[-71.660400595,41.690467506],[-71.660446595,41.690520506],[-71.660522595,41.690518506],[-71.660591595,41.690507506],[-71.660683596,41.690478506],[-71.660751595,41.690467506],[-71.660805595,41.690502506],[-71.660835595,41.690560506],[-71.660873595,41.690600506],[-71.660950595,41.690625506],[-71.661064595,41.690645506],[-71.661140595,41.690643506],[-71.661339596,41.690652506],[-71.661415595,41.690668506],[-71.661629596,41.690722506],[-71.661697596,41.690761506],[-71.661735596,41.690814506],[-71.661796595,41.690849506],[-71.661873596,41.690860506],[-71.661964596,41.690867506],[-71.662124596,41.690936506],[-71.662171596,41.690979507],[-71.662193596,41.691042506],[-71.662208595,41.691069506],[-71.662224596,41.691100506],[-71.662247595,41.691162506],[-71.662277596,41.691175506],[-71.662354596,41.691187506],[-71.662422595,41.691203506],[-71.662498595,41.691238506],[-71.662575596,41.691227506],[-71.662643596,41.691203506],[-71.662689596,41.691202506],[-71.662743596,41.691241506],[-71.662804596,41.691312506],[-71.662842596,41.691378506],[-71.662926596,41.691390506],[-71.663002596,41.691388507],[-71.663101596,41.691390506],[-71.663185596,41.691393506],[-71.663262596,41.691423506],[-71.663353596,41.691483507],[-71.663399596,41.691532506],[-71.663467596,41.691598506],[-71.663521596,41.691664506],[-71.663551596,41.691713506],[-71.663635596,41.691774506],[-71.663734596,41.691817507],[-71.663803597,41.691851506],[-71.663834596,41.691900506],[-71.663803597,41.691923506],[-71.663719596,41.691970507],[-71.663658596,41.692003506],[-71.663582596,41.692059506],[-71.663536596,41.692096506],[-71.663490597,41.692138506],[-71.663467596,41.692201506],[-71.663452597,41.692278506],[-71.663460596,41.692337506],[-71.663498596,41.692394506],[-71.663521596,41.692443506],[-71.663544596,41.692510506],[-71.663551596,41.692573507],[-71.663567597,41.692649507],[-71.663589597,41.692707507],[-71.663612596,41.692774506],[-71.663582596,41.692825507],[-71.663643597,41.692850507],[-71.663666597,41.692881506],[-71.663666597,41.692944507],[-71.663650596,41.693003507],[-71.663689596,41.693056507],[-71.663765596,41.693095507],[-71.663841597,41.693053506],[-71.663872596,41.692998507],[-71.663894597,41.692939506],[-71.663963596,41.692888507],[-71.664032597,41.692859506],[-71.664055597,41.692705506],[-71.664108597,41.692686506],[-71.664253596,41.692683506],[-71.664353596,41.692667506],[-71.664444597,41.692665506],[-71.664558597,41.692680506],[-71.664642597,41.692683506],[-71.664726596,41.692676507],[-71.664803596,41.692679506],[-71.664917596,41.692672507],[-71.665001597,41.692648506],[-71.665062597,41.692610506],[-71.665123597,41.692564506],[-71.665176597,41.692499507],[-71.665238597,41.692439507],[-71.665245597,41.692385506],[-71.665237597,41.692313506],[-71.665207597,41.692255506],[-71.665184597,41.692202506],[-71.665169597,41.692135506],[-71.665192596,41.692112506],[-71.665268596,41.692051507],[-71.665329597,41.692000506],[-71.665398597,41.691967506],[-71.665481597,41.691925506],[-71.665581597,41.691878506],[-71.665665597,41.691831506],[-71.665711597,41.691784506],[-71.665749597,41.691725506],[-71.665779597,41.691697506],[-71.665856597,41.691687506],[-71.665932597,41.691685506],[-71.666016597,41.691687506],[-71.666199597,41.691683506],[-71.666298597,41.691636506],[-71.666367597,41.691607506],[-71.666451597,41.691610506],[-71.666512598,41.691644506],[-71.666588597,41.691679506],[-71.666641597,41.691673506],[-71.666710597,41.691631506],[-71.666801597,41.691593506],[-71.666840597,41.691610506],[-71.666901598,41.691640506],[-71.667015597,41.691588506],[-71.667084597,41.691609506],[-71.667160597,41.691643506],[-71.667236598,41.691641507],[-71.667320597,41.691644506],[-71.667397597,41.691642507],[-71.667496597,41.691630506],[-71.667580598,41.691606506],[-71.667671597,41.691586506],[-71.667877598,41.691590506],[-71.667938598,41.691566506],[-71.668007598,41.691520506],[-71.668121598,41.691490506],[-71.668221598,41.691474506],[-71.668320598,41.691449506],[-71.668602597,41.691443506],[-71.668678598,41.691445506],[-71.668732598,41.691480506],[-71.668785598,41.691483506],[-71.668884598,41.691454506],[-71.668953598,41.691435506],[-71.669029598,41.691401506],[-71.669067598,41.691351506],[-71.669129598,41.691340506],[-71.669258598,41.691351506],[-71.669342599,41.691367506],[-71.669399598,41.691372506],[-71.669495598,41.691377506],[-71.669563598,41.691398506],[-71.669640598,41.691459506],[-71.669663598,41.691499506],[-71.669632599,41.691549506],[-71.669594599,41.691604506],[-71.669563598,41.691659506],[-71.669518598,41.691710506],[-71.669479598,41.691756506],[-71.669518598,41.691804506],[-71.669563598,41.691848506],[-71.669609598,41.691897506],[-71.669655598,41.691941506],[-71.669716598,41.691993507],[-71.669785598,41.692068506],[-71.669830598,41.692126506],[-71.669838598,41.692193506],[-71.669838598,41.692252506],[-71.669853598,41.692314506],[-71.669899598,41.692358506],[-71.669945599,41.692407506],[-71.670013598,41.692455506],[-71.670059599,41.692512506],[-71.670128598,41.692583506],[-71.670197599,41.692621506],[-71.670303598,41.692664506],[-71.670418598,41.692643506],[-71.670487599,41.692655507],[-71.670570599,41.692658506],[-71.670647599,41.692656507],[-71.670738599,41.692667506],[-71.670814599,41.692666506],[-71.671203599,41.692657506],[-71.671288599,41.692641506],[-71.671318599,41.692640506],[-71.671425599,41.692579506],[-71.671478599,41.692520507],[-71.671539599,41.692460507],[-71.671562599,41.692410506],[-71.671562599,41.692338506],[-71.671555599,41.692270506],[-71.671562599,41.692216506],[-71.671547598,41.692140506],[-71.671524599,41.692082506],[-71.671494599,41.692015506],[-71.671486599,41.691957506],[-71.671509598,41.691911506],[-71.671555599,41.691874506],[-71.671615599,41.691836506],[-71.671692599,41.691781506],[-71.671799599,41.691675506],[-71.671837599,41.691611506],[-71.671822599,41.691525506],[-71.671784599,41.691472506],[-71.671745599,41.691424506],[-71.671768599,41.691374506],[-71.671829599,41.691305506],[-71.671936599,41.691284506],[-71.672058599,41.691286506],[-71.672142599,41.691284506],[-71.672371599,41.691292505],[-71.672447599,41.691290506],[-71.672523599,41.691302506],[-71.672600599,41.691327506],[-71.672684599,41.691348506],[-71.672767599,41.691382506],[-71.672882599,41.691487506],[-71.672951599,41.691531506],[-71.673019599,41.691565506],[-71.673096599,41.691595506],[-71.6731806,41.691593506],[-71.6733786,41.691561506],[-71.673477599,41.691550506],[-71.673561599,41.691535506],[-71.673653599,41.691514506],[-71.6736916,41.691500506],[-71.6737446,41.691490506],[-71.673828599,41.691452506],[-71.6738976,41.691410506],[-71.673950599,41.691359506],[-71.6740036,41.691317506],[-71.6740806,41.691284506],[-71.6741496,41.691251506],[-71.6742176,41.691204506],[-71.674240599,41.691149506],[-71.6742256,41.691024506],[-71.6742176,41.690983506],[-71.6742096,41.690853506],[-71.6742636,41.690802506],[-71.674339599,41.690769505],[-71.674492599,41.690729505],[-71.674553599,41.690692506],[-71.6745836,41.690655506],[-71.6745686,41.690592505],[-71.6745386,41.690526506],[-71.674515599,41.690472506],[-71.6744846,41.690419505],[-71.6744616,41.690370506],[-71.6744396,41.690303505],[-71.6744396,41.690240505],[-71.6744386,41.690181505],[-71.6744396,41.690114506],[-71.6744466,41.690046505],[-71.6744466,41.689978506],[-71.6744696,41.689915506],[-71.674515599,41.689860506],[-71.6745616,41.689809506],[-71.674553599,41.689746506],[-71.674553599,41.689679505],[-71.6745606,41.689611506],[-71.6745996,41.689556506],[-71.6746526,41.689505505],[-71.6746986,41.689446505],[-71.6746826,41.689383505],[-71.6746756,41.689325505],[-71.6746756,41.689136505],[-71.6746836,41.689081506],[-71.6747136,41.689022506],[-71.6747526,41.688967506],[-71.6747746,41.688899505],[-71.6747826,41.688827505],[-71.6747596,41.688751506],[-71.6747446,41.688675506],[-71.6747366,41.688603505],[-71.6747516,41.688530505],[-71.6747596,41.688458505],[-71.6747896,41.688313505],[-71.674805599,41.688250505],[-71.6748286,41.688177505],[-71.6748586,41.688109505],[-71.6749196,41.687964505],[-71.6749496,41.687900505],[-71.674980599,41.687850505],[-71.6750876,41.687739505],[-71.675118599,41.687693505],[-71.6751636,41.687634505],[-71.6752176,41.687578505],[-71.6752706,41.687537505],[-71.6753166,41.687490505],[-71.6753396,41.687472505],[-71.675369599,41.687440505],[-71.6754006,41.687380505],[-71.6754156,41.687313505],[-71.6754536,41.687244505],[-71.6755076,41.687184505],[-71.6755686,41.687133505],[-71.6756526,41.687109505],[-71.6757356,41.687116505],[-71.6758046,41.687105505],[-71.6758586,41.687050505],[-71.6759116,41.686986505],[-71.6759646,41.686931505],[-71.6760336,41.686906505],[-71.6761406,41.686877505],[-71.6762246,41.686852505],[-71.6763006,41.686819505],[-71.6763846,41.686799505],[-71.6764836,41.686783505],[-71.676575601,41.686754505],[-71.6766366,41.686699505],[-71.6766896,41.686648505],[-71.676750601,41.686611505],[-71.6768426,41.686581505],[-71.6769416,41.686557505],[-71.677139601,41.686516504],[-71.677216601,41.686487505],[-71.6772696,41.686459505],[-71.677429601,41.686415505],[-71.677490601,41.686377505],[-71.677544601,41.686331505],[-71.677582601,41.686267505],[-71.6776356,41.686216505],[-71.677681601,41.686170505],[-71.677719601,41.686120505],[-71.677719601,41.686061505],[-71.677742601,41.685976505],[-71.6776586,41.685995505],[-71.677528601,41.686007504],[-71.677468601,41.686017505],[-71.6773996,41.686024505],[-71.6773226,41.686030504],[-71.6772466,41.686027504],[-71.6770326,41.686032505],[-71.6761406,41.686026505],[-71.6760336,41.686028504],[-71.6755756,41.686025505],[-71.6750876,41.686010505],[-71.675018599,41.686007504],[-71.674942599,41.686009504],[-71.674866599,41.686006505],[-71.6746986,41.685992505],[-71.674530599,41.685969504],[-71.6742936,41.685920505],[-71.674064599,41.685858505],[-71.673988599,41.685842505],[-71.673889599,41.685813504],[-71.673218599,41.685630505],[-71.672753599,41.685501504],[-71.672493599,41.685426505],[-71.672394599,41.685393505],[-71.672256599,41.685351505],[-71.672165599,41.685321505],[-71.672074598,41.685296505],[-71.671982598,41.685263505],[-71.671715599,41.685152504],[-71.671623599,41.685100505],[-71.671524599,41.685053504],[-71.671440598,41.684996504],[-71.671356598,41.684935504],[-71.671318598,41.684904505],[-71.671272599,41.684869505],[-71.671196598,41.684799504],[-71.671043598,41.684649505],[-71.670967598,41.684575505],[-71.670799598,41.684389504],[-71.670632598,41.684209505],[-71.670555598,41.684120504],[-71.670082598,41.683618505],[-71.669861598,41.683389505],[-71.669372598,41.682865505],[-71.669006598,41.682477505],[-71.668981597,41.682451504],[-71.668976597,41.682446504],[-71.668922597,41.682380504],[-71.668869598,41.682336505],[-71.668846597,41.682305504],[-71.668777597,41.682239505],[-71.668724597,41.682195504],[-71.668694598,41.682173504],[-71.668663597,41.682147504],[-71.668449597,41.682012504],[-71.668282597,41.681926504],[-71.668106597,41.681854504],[-71.668053597,41.681837504],[-71.667992597,41.681820504],[-71.667938598,41.681799504],[-71.667839597,41.681774505],[-71.667732597,41.681750504],[-71.667625597,41.681734505],[-71.667541597,41.681718504],[-71.667351597,41.681696505],[-71.667259597,41.681689504],[-71.667061596,41.681684504],[-71.666916597,41.681670504],[-71.666840597,41.681667504],[-71.665649596,41.681681504],[-71.664871596,41.681699504],[-71.663956596,41.681711505],[-71.663864595,41.681705504],[-71.663765595,41.681707504],[-71.663673596,41.681700504],[-71.663551595,41.681698504],[-71.663437595,41.681687504],[-71.663323595,41.681672505],[-71.663208596,41.681648504],[-71.663101596,41.681628504],[-71.662994595,41.681590504],[-71.662926596,41.681569504],[-71.662865596,41.681539505],[-71.662796595,41.681509504],[-71.662727596,41.681474504],[-71.662666596,41.681435504],[-71.662597595,41.681396504],[-71.662537595,41.681357504],[-71.662414595,41.681270504],[-71.661408595,41.680514504],[-71.660744594,41.680016504],[-71.660003594,41.679466504],[-71.659851594,41.679352504],[-71.659775594,41.679300504],[-71.659675594,41.679230504],[-71.659469594,41.679105504],[-71.659363594,41.679048504],[-71.659263594,41.678988504],[-71.659157594,41.678932504],[-71.658562594,41.678648504],[-71.657997593,41.678364503],[-71.657509593,41.678137504],[-71.657326594,41.678055504],[-71.656731593,41.677749504],[-71.656554593,41.677665504],[-71.656355593,41.677569504],[-71.656120593,41.677457504],[-71.656075593,41.677431504],[-71.656006593,41.677397504],[-71.655891593,41.677350503],[-71.655800593,41.677321504],[-71.655708593,41.677287504],[-71.655594592,41.677240504],[-71.655487593,41.677193503],[-71.655373593,41.677150504],[-71.655174593,41.677092504],[-71.655068592,41.677067504],[-71.654991592,41.677042504],[-71.654915592,41.677021503],[-71.654872593,41.677010504],[-71.654839592,41.677001503],[-71.654045592,41.676812504],[-71.652510592,41.676461504],[-71.652328592,41.676419504],[-71.652054592,41.676358503],[-71.651482591,41.676223503],[-71.650864591,41.676079504],[-71.650169591,41.675920504],[-71.649567591,41.675776504],[-71.648979591,41.675645504],[-71.648430591,41.675509504],[-71.64775159,41.675367504],[-71.64762159,41.675334504],[-71.64609559,41.674978504],[-71.645493589,41.674830504],[-71.645279589,41.674780503],[-71.645126589,41.674748504],[-71.644790589,41.674670504],[-71.644554589,41.674617504],[-71.643974589,41.674482503],[-71.643814589,41.674449503],[-71.643662588,41.674421504],[-71.643509589,41.674384503],[-71.643372588,41.674361504],[-71.643234588,41.674332503],[-71.643089589,41.674304504],[-71.642960588,41.674284504],[-71.642822588,41.674261504],[-71.642685588,41.674232503],[-71.642494588,41.674203504],[-71.641861588,41.674107504],[-71.641113588,41.673971504],[-71.640373588,41.673849504],[-71.640172587,41.673813504],[-71.639450587,41.673685503],[-71.639397587,41.673673504],[-71.639351587,41.673660504],[-71.639153588,41.673620504],[-71.639046587,41.673586503],[-71.638832587,41.673528503],[-71.638733587,41.673495503],[-71.638634587,41.673465504],[-71.638527587,41.673441504],[-71.638153587,41.673296503],[-71.637413587,41.673011504],[-71.637299587,41.672965503],[-71.637184587,41.672922503],[-71.637070586,41.672875504],[-71.636963587,41.672828503],[-71.636848587,41.672781504],[-71.636756586,41.672748503],[-71.636643586,41.672709503],[-71.636536587,41.672685504],[-71.636437586,41.672656503],[-71.636360587,41.672635503],[-71.636291586,41.672614503],[-71.636215586,41.672598503],[-71.636124586,41.672573503],[-71.636025586,41.672557503],[-71.635933586,41.672541503],[-71.635132586,41.672415503],[-71.634827585,41.672373504],[-71.634728585,41.672362503],[-71.634399585,41.672320503],[-71.633980586,41.672253504],[-71.633949585,41.672249503],[-71.633705585,41.672209503],[-71.633324585,41.672124503],[-71.632492585,41.671904504],[-71.632378585,41.671871503],[-71.632095584,41.671787504],[-71.631294585,41.671553504],[-71.630226584,41.671231503],[-71.629807584,41.671087504],[-71.629440584,41.670920503],[-71.628987584,41.670709503],[-71.628906584,41.670671503],[-71.628258583,41.670362503],[-71.627365583,41.669932503],[-71.626451583,41.669468503],[-71.626381582,41.669432503],[-71.624871582,41.668634503],[-71.624237582,41.668301503],[-71.623741582,41.668047502],[-71.623352582,41.667826503],[-71.623055582,41.667644503],[-71.622627582,41.667361503],[-71.622101581,41.666963503],[-71.621506581,41.666495503],[-71.621117581,41.666198502],[-71.62084258,41.666010503],[-71.620690581,41.665910503],[-71.620575581,41.665845502],[-71.620461581,41.665785502],[-71.619995581,41.665552502],[-71.619820581,41.665484503],[-71.619515581,41.665360502],[-71.61929358,41.665264502],[-71.619241581,41.665241502],[-71.61836158,41.665754503],[-71.61756158,41.666306503],[-71.615916579,41.668272503],[-71.614701579,41.669251504],[-71.614135578,41.669549503],[-71.613796579,41.669728503],[-71.612565578,41.670234503],[-71.612173578,41.670318504],[-71.611831579,41.670392504],[-71.611819578,41.670391503],[-71.611339578,41.670604503],[-71.610220577,41.670703504],[-71.608431577,41.670756504],[-71.608269577,41.670890504],[-71.608115577,41.671145504],[-71.607795577,41.671557504],[-71.607855577,41.671953504],[-71.607945577,41.672432505],[-71.608172577,41.672702504],[-71.608021577,41.673070504],[-71.607994577,41.673137504],[-71.608010577,41.673212505],[-71.607484576,41.673634505],[-71.606793577,41.674182505],[-71.606107576,41.675345505],[-71.605455577,41.676817505],[-71.605337577,41.677228506],[-71.605659577,41.678889505],[-71.605723577,41.679709505],[-71.605765577,41.680148506],[-71.605742577,41.680252506],[-71.605619577,41.680428506],[-71.605029576,41.681562506],[-71.604850577,41.682232506],[-71.604774576,41.682684506],[-71.604981577,41.683418506],[-71.605933577,41.686501507],[-71.606322577,41.687242507],[-71.606999577,41.689740508],[-71.607123578,41.693287508],[-71.607095578,41.694650508],[-71.607297578,41.695593509],[-71.607293578,41.695886509],[-71.607529578,41.695990509]]]]}}"}, +{"type": "precinct", "typeId": 610, "areaId": 25700, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":39,\"NAME\":\"0610\",\"SHAPE_Length\":0.058160620751966,\"SHAPE_Area\":-0.00017507265144211},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.543671558,41.697294511],[-71.543640557,41.697533511],[-71.543655557,41.697776511],[-71.543716557,41.698153511],[-71.543770558,41.698588511],[-71.543854557,41.698996511],[-71.543877557,41.699212511],[-71.543869557,41.699347511],[-71.543831557,41.699506511],[-71.543755557,41.699633512],[-71.543541557,41.699908512],[-71.543228557,41.700302511],[-71.542908557,41.700665512],[-71.543213557,41.700965511],[-71.543480557,41.701252512],[-71.543823558,41.701627512],[-71.543923558,41.701746511],[-71.544143557,41.701984512],[-71.544312558,41.702161512],[-71.544479558,41.702265512],[-71.544739558,41.702417512],[-71.545029558,41.702568512],[-71.545380558,41.702768512],[-71.545723558,41.702949512],[-71.545922558,41.703066512],[-71.546005558,41.703226513],[-71.546173558,41.703488512],[-71.546326559,41.703755512],[-71.546494559,41.704058512],[-71.546669559,41.704338513],[-71.546845559,41.704649513],[-71.547066559,41.705027512],[-71.547226559,41.705325513],[-71.547317559,41.705471512],[-71.547463559,41.705725512],[-71.547569559,41.705939512],[-71.547867559,41.706581513],[-71.548004559,41.706924513],[-71.548126559,41.707282513],[-71.548248559,41.707653513],[-71.548104559,41.707976513],[-71.547951559,41.708303513],[-71.547829559,41.708576513],[-71.547547559,41.708776513],[-71.547173559,41.709023513],[-71.546860559,41.709197513],[-71.54741756,41.709180513],[-71.548012559,41.709158513],[-71.548531559,41.709151513],[-71.54900456,41.709140513],[-71.54975956,41.709123513],[-71.55039256,41.709118513],[-71.55113256,41.709093513],[-71.551705561,41.709080513],[-71.552475561,41.709054513],[-71.552986561,41.709047513],[-71.553764561,41.709034513],[-71.554482561,41.709027513],[-71.555122561,41.709036513],[-71.555687561,41.709037513],[-71.556313562,41.709045513],[-71.556930563,41.709063513],[-71.557533563,41.709077513],[-71.557510562,41.708780513],[-71.557503562,41.708559513],[-71.557510562,41.708262512],[-71.557518563,41.707834512],[-71.557518563,41.707118513],[-71.557511562,41.706920512],[-71.557518563,41.706528512],[-71.557533562,41.706082512],[-71.557541562,41.705587512],[-71.557541562,41.705204512],[-71.557548562,41.704695512],[-71.557541562,41.704218512],[-71.557556563,41.703699512],[-71.557564562,41.703262512],[-71.557573562,41.702772512],[-71.557587562,41.702406512],[-71.557587562,41.702118511],[-71.557609562,41.701095511],[-71.557625562,41.700415511],[-71.557640562,41.700113511],[-71.557671562,41.699820511],[-71.557701562,41.699567511],[-71.557739562,41.699197511],[-71.557785562,41.698813511],[-71.557823562,41.698434511],[-71.557877562,41.69802351],[-71.557884562,41.697843511],[-71.557922562,41.697540511],[-71.557953562,41.697193511],[-71.557961562,41.697138511],[-71.557976562,41.696746511],[-71.557983562,41.69642251],[-71.557976562,41.69601751],[-71.557961562,41.695621511],[-71.557938562,41.69539251],[-71.557899562,41.695055511],[-71.557854561,41.69465551],[-71.557785562,41.69431451],[-71.557709562,41.69393851],[-71.557617562,41.69360251],[-71.557503561,41.69315051],[-71.557373562,41.692698509],[-71.557243562,41.69218851],[-71.557098561,41.691763509],[-71.556984561,41.691838509],[-71.556465562,41.69218251],[-71.555618561,41.692737509],[-71.554817561,41.69327751],[-71.554214561,41.69368251],[-71.55364256,41.69404651],[-71.55291856,41.69442351],[-71.55252156,41.69459851],[-71.55230756,41.69465251],[-71.55214756,41.69469751],[-71.55188056,41.69473851],[-71.551476559,41.69475651],[-71.55065156,41.69478451],[-71.550530559,41.69478651],[-71.550102559,41.69480551],[-71.549759559,41.69482651],[-71.549400559,41.69491151],[-71.549034559,41.695054511],[-71.548279558,41.69545351],[-71.548080559,41.69558851],[-71.547829558,41.695864511],[-71.547806559,41.695893511],[-71.547585559,41.696180511],[-71.547394559,41.696396511],[-71.547188558,41.696653511],[-71.547005559,41.696837511],[-71.546722558,41.696992511],[-71.546501559,41.697087511],[-71.546242558,41.697151511],[-71.545746558,41.697221511],[-71.545143558,41.697288511],[-71.544594557,41.697359511],[-71.544535557,41.697362511],[-71.544296558,41.697374511],[-71.543983558,41.697341511],[-71.543671558,41.697294511]]]]}}"}, +{"type": "precinct", "typeId": 611, "areaId": 25699, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":38,\"NAME\":\"0611\",\"SHAPE_Length\":0.1829953361706,\"SHAPE_Area\":-0.00037272771502792},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.600589576,41.69714051],[-71.604222577,41.697416509],[-71.605048577,41.697210509],[-71.606416578,41.696642509],[-71.607529578,41.695990509],[-71.607293578,41.695886509],[-71.607297578,41.695593509],[-71.607095578,41.694650508],[-71.607123578,41.693287508],[-71.606999577,41.689740508],[-71.606322577,41.687242507],[-71.605933577,41.686501507],[-71.604981577,41.683418506],[-71.604774576,41.682684506],[-71.604850577,41.682232506],[-71.605029576,41.681562506],[-71.605619577,41.680428506],[-71.605742577,41.680252506],[-71.605765577,41.680148506],[-71.605723577,41.679709505],[-71.605659577,41.678889505],[-71.605337577,41.677228506],[-71.605455577,41.676817505],[-71.606107576,41.675345505],[-71.606793577,41.674182505],[-71.607484576,41.673634505],[-71.608010577,41.673212505],[-71.607992577,41.673212505],[-71.607932577,41.673195504],[-71.607872577,41.673181504],[-71.607869577,41.673181504],[-71.607719577,41.673153505],[-71.607559577,41.673112505],[-71.607422577,41.673084504],[-71.607261577,41.673065504],[-71.607178577,41.673089504],[-71.607071577,41.673182504],[-71.606957576,41.673274504],[-71.606834577,41.673381505],[-71.606743576,41.673482505],[-71.606636577,41.673570504],[-71.606514576,41.673649504],[-71.606392576,41.673710504],[-71.606270577,41.673776505],[-71.606148577,41.673846504],[-71.606018577,41.673912505],[-71.605866576,41.673997504],[-71.605766577,41.674085505],[-71.605736576,41.674198505],[-71.605705577,41.674329504],[-71.605652576,41.674461505],[-71.605568577,41.674589505],[-71.605484576,41.674695505],[-71.605354577,41.674783505],[-71.605202576,41.674845505],[-71.605042576,41.674898505],[-71.604889577,41.674951504],[-71.604736576,41.675009504],[-71.604622576,41.675070505],[-71.604599576,41.675142505],[-71.604630576,41.675209505],[-71.604729576,41.675284505],[-71.604866576,41.675339505],[-71.604919576,41.675437505],[-71.604935576,41.675558505],[-71.604912576,41.675667505],[-71.604851576,41.675772505],[-71.604797576,41.675885505],[-71.604752577,41.676008505],[-71.604706576,41.676117505],[-71.604675576,41.676235505],[-71.604721576,41.676347505],[-71.604721576,41.676468505],[-71.604675576,41.676595505],[-71.604591576,41.676705505],[-71.604500576,41.676815505],[-71.604393576,41.676890505],[-71.604256576,41.676951505],[-71.603943576,41.677035506],[-71.603806576,41.677106505],[-71.603684576,41.677199505],[-71.603539576,41.677292505],[-71.603409575,41.677389505],[-71.603302576,41.677500506],[-71.603203576,41.677610505],[-71.603081575,41.677717506],[-71.603020575,41.677822505],[-71.603035576,41.677866505],[-71.603150576,41.677873506],[-71.603317576,41.677860505],[-71.603485576,41.677838505],[-71.603638576,41.677835506],[-71.603798576,41.677840505],[-71.603981576,41.677836505],[-71.604096576,41.677811506],[-71.604248576,41.677794506],[-71.604423576,41.677790506],[-71.604546576,41.677773506],[-71.604683576,41.677707505],[-71.604828577,41.677627505],[-71.604942576,41.677616506],[-71.605064577,41.677676506],[-71.605171576,41.677759505],[-71.605194576,41.677777506],[-71.605209576,41.677893506],[-71.605171576,41.677980505],[-71.605049576,41.678055505],[-71.604904577,41.678099505],[-71.604866577,41.678131505],[-71.604859576,41.678244506],[-71.604897576,41.678351505],[-71.604897576,41.678468505],[-71.604835576,41.678550506],[-71.604751577,41.678566505],[-71.604614577,41.678551506],[-71.604461576,41.678505505],[-71.604271576,41.678496506],[-71.604080576,41.678504505],[-71.603981576,41.678547506],[-71.603928576,41.678643505],[-71.603920576,41.678769506],[-71.603920576,41.678882506],[-71.603905576,41.679134506],[-71.603981576,41.679241505],[-71.604057576,41.679280505],[-71.604218576,41.679289506],[-71.604294576,41.679324506],[-71.604324576,41.679431506],[-71.604324576,41.679562506],[-71.604286576,41.679671505],[-71.604233576,41.679775506],[-71.604164576,41.679885505],[-71.604103576,41.679994506],[-71.604027576,41.680064506],[-71.603905576,41.680085506],[-71.603760576,41.680088506],[-71.603592576,41.680083506],[-71.603508576,41.680048506],[-71.603470576,41.679968506],[-71.603485576,41.679833506],[-71.603577576,41.679718506],[-71.603668576,41.679595505],[-71.603767576,41.679511506],[-71.603828576,41.679429506],[-71.603828576,41.679312506],[-71.603745576,41.679215506],[-71.603653576,41.679091506],[-71.603607576,41.678961506],[-71.603607576,41.678848506],[-71.603638576,41.678726506],[-71.603622575,41.678650506],[-71.603523576,41.678630506],[-71.603371576,41.678638505],[-71.603241576,41.678690506],[-71.602936576,41.678769506],[-71.602791576,41.678831505],[-71.602677576,41.678897506],[-71.602539576,41.678967505],[-71.602394575,41.679016506],[-71.602257575,41.679059506],[-71.602119576,41.679107505],[-71.601974575,41.679183505],[-71.601845576,41.679240505],[-71.601685575,41.679284506],[-71.601402575,41.679335506],[-71.601212575,41.679353506],[-71.601036575,41.679361506],[-71.600883575,41.679396505],[-71.600738575,41.679427506],[-71.600601575,41.679443506],[-71.600441575,41.679447506],[-71.600380575,41.679507506],[-71.600334575,41.679607506],[-71.600250575,41.679676506],[-71.600097575,41.679743506],[-71.599968575,41.679804506],[-71.599823574,41.679880506],[-71.599685574,41.679896506],[-71.599602575,41.679858506],[-71.599495575,41.679761506],[-71.599373574,41.679732506],[-71.599182574,41.679728505],[-71.599007574,41.679736506],[-71.598907574,41.679770506],[-71.598808574,41.679880506],[-71.598724575,41.679995506],[-71.598610574,41.680038506],[-71.598434575,41.680060506],[-71.598068574,41.680014506],[-71.597900574,41.680027506],[-71.597740574,41.680075506],[-71.597580574,41.680133506],[-71.597420574,41.680204506],[-71.597359574,41.680264506],[-71.597344574,41.680377506],[-71.597359574,41.680489506],[-71.597359574,41.680602506],[-71.597366574,41.680719506],[-71.597366574,41.680840506],[-71.597389574,41.680907506],[-71.597473574,41.680928506],[-71.597550574,41.680917506],[-71.597618574,41.680826506],[-71.597679574,41.680739506],[-71.597778574,41.680723506],[-71.597877574,41.680698506],[-71.597977574,41.680597506],[-71.598060574,41.680478506],[-71.598160575,41.680363506],[-71.598274575,41.680289506],[-71.598412575,41.680285506],[-71.598557574,41.680345506],[-71.598686575,41.680423506],[-71.598739575,41.680503506],[-71.598778575,41.680619506],[-71.598908574,41.680707506],[-71.599060574,41.680775506],[-71.599197574,41.680826506],[-71.599342575,41.680863506],[-71.599510574,41.680869506],[-71.599815575,41.680862506],[-71.599991575,41.680844506],[-71.600136575,41.680814506],[-71.600220575,41.680731506],[-71.600304575,41.680607506],[-71.600403575,41.680569506],[-71.600464575,41.680577506],[-71.600471575,41.680658506],[-71.600441575,41.680762506],[-71.600494575,41.680828506],[-71.600593575,41.680930506],[-71.600693575,41.681026506],[-71.600737575,41.681073507],[-71.600792575,41.681132506],[-71.600815575,41.681199506],[-71.600731575,41.681296506],[-71.600624575,41.681393506],[-71.600410575,41.681632506],[-71.600342575,41.681732507],[-71.600220575,41.681830507],[-71.600097575,41.681913506],[-71.599991575,41.681925506],[-71.599907575,41.681958506],[-71.599800574,41.682028507],[-71.599708575,41.682062507],[-71.599564575,41.682074506],[-71.599533575,41.682129506],[-71.599533575,41.682169506],[-71.599503575,41.682179507],[-71.599434575,41.682183507],[-71.599434575,41.682219507],[-71.599464575,41.682220507],[-71.599510574,41.682237507],[-71.599533575,41.682250506],[-71.599556575,41.682295507],[-71.599563575,41.682322506],[-71.599663575,41.682419506],[-71.599800574,41.682452507],[-71.599983575,41.682452507],[-71.600151575,41.682448506],[-71.600304575,41.682427506],[-71.600464575,41.682400506],[-71.600617576,41.682370506],[-71.600769575,41.682317507],[-71.600891576,41.682247506],[-71.601021575,41.682176506],[-71.601151575,41.682115506],[-71.601501575,41.682021506],[-71.601669576,41.681968507],[-71.601822576,41.681910507],[-71.601967575,41.681849507],[-71.602097576,41.681796506],[-71.602257575,41.681756506],[-71.602417575,41.681708506],[-71.602532575,41.681633506],[-71.602570575,41.681551506],[-71.602547576,41.681480506],[-71.602486576,41.681378506],[-71.602402576,41.681258506],[-71.602363576,41.681133506],[-71.602356575,41.681025506],[-71.602379575,41.680907506],[-71.602371576,41.680781506],[-71.602440576,41.680694506],[-71.602539576,41.680665506],[-71.602806575,41.680659506],[-71.602844575,41.680662506],[-71.602982576,41.680718506],[-71.603142576,41.680777506],[-71.603271575,41.680842506],[-71.603401576,41.680902506],[-71.603569576,41.680939506],[-71.603707576,41.680995506],[-71.603157576,41.681403506],[-71.603012576,41.681766506],[-71.602936576,41.681930507],[-71.602890576,41.682048507],[-71.602783576,41.682127506],[-71.602829576,41.682306506],[-71.602852576,41.682472507],[-71.602859576,41.682670507],[-71.602882576,41.682850506],[-71.602928576,41.683002507],[-71.602943576,41.683038507],[-71.603012576,41.683194507],[-71.603111576,41.683354507],[-71.603149576,41.683492506],[-71.603180576,41.683645507],[-71.603187576,41.683870507],[-71.603157576,41.684096506],[-71.603134576,41.684204507],[-71.603127576,41.684267507],[-71.603111576,41.684290507],[-71.603050576,41.684440507],[-71.602997576,41.684532507],[-71.602890576,41.684624506],[-71.602814576,41.684653507],[-71.602715576,41.684687507],[-71.602333576,41.684758507],[-71.601891575,41.684809507],[-71.601524575,41.684867507],[-71.601204575,41.684892507],[-71.601235576,41.685053507],[-71.601318576,41.685430507],[-71.601372576,41.685595507],[-71.601372576,41.685676507],[-71.601326575,41.685785507],[-71.601296576,41.685813507],[-71.601234576,41.685850507],[-71.601112575,41.685898507],[-71.600799575,41.685977507],[-71.600578576,41.686023507],[-71.600411575,41.686054507],[-71.600235575,41.686071507],[-71.600029575,41.686080507],[-71.599899575,41.686083507],[-71.599731575,41.686074507],[-71.599563575,41.686050507],[-71.599404575,41.686022507],[-71.599259575,41.686003507],[-71.599098574,41.685984507],[-71.598968575,41.685974507],[-71.598724575,41.685979507],[-71.598450575,41.685990507],[-71.598099575,41.685998507],[-71.597649575,41.686004507],[-71.597290574,41.685998507],[-71.596970575,41.685978507],[-71.596626574,41.685950507],[-71.596229574,41.685923507],[-71.595871574,41.685909508],[-71.595795574,41.685910507],[-71.595528574,41.685898507],[-71.595062573,41.685882507],[-71.594429573,41.685865507],[-71.594414574,41.686378507],[-71.594421573,41.686432508],[-71.594444573,41.686495507],[-71.594475574,41.686557507],[-71.594711573,41.686944507],[-71.594795573,41.687081507],[-71.595085573,41.687543508],[-71.595283574,41.687840508],[-71.595375573,41.687933508],[-71.595428574,41.687977507],[-71.595497574,41.688016507],[-71.595604574,41.688067508],[-71.595680574,41.688083508],[-71.595619574,41.688292507],[-71.595574574,41.688437508],[-71.595543574,41.688501508],[-71.595505574,41.688569508],[-71.595428574,41.688616508],[-71.595344574,41.688658508],[-71.595245574,41.688706508],[-71.595146574,41.688757507],[-71.595077574,41.688804508],[-71.595062573,41.688822508],[-71.595024573,41.688859508],[-71.594986573,41.688883508],[-71.594948573,41.688893508],[-71.594894574,41.688898508],[-71.594460573,41.688872508],[-71.594063574,41.688831508],[-71.593689573,41.688804508],[-71.593178573,41.688784508],[-71.592857572,41.688760508],[-71.592575573,41.688743508],[-71.592209573,41.688725508],[-71.591690572,41.688687508],[-71.591476572,41.688674508],[-71.591217573,41.688657508],[-71.590820572,41.688634508],[-71.590768573,41.688632508],[-71.590187572,41.688604508],[-71.589905572,41.688583508],[-71.589684572,41.688570508],[-71.589478572,41.688566508],[-71.589172571,41.688563508],[-71.588974572,41.688383508],[-71.588753572,41.688204508],[-71.588539572,41.688046508],[-71.588341571,41.687916508],[-71.588150571,41.687744507],[-71.588020572,41.687608507],[-71.588005571,41.687338508],[-71.587990571,41.687091508],[-71.587967571,41.686587508],[-71.587959571,41.685898507],[-71.587959571,41.685443507],[-71.587921571,41.684895508],[-71.587906571,41.684580507],[-71.587906571,41.684386508],[-71.587921571,41.684305507],[-71.587944571,41.684043507],[-71.587944571,41.683831507],[-71.587906571,41.683522507],[-71.587868571,41.683149507],[-71.587860571,41.683122507],[-71.587829571,41.682852507],[-71.587809571,41.682588507],[-71.587784571,41.682272507],[-71.587753571,41.681949507],[-71.587731571,41.681616507],[-71.587723571,41.681382507],[-71.587692571,41.681081506],[-71.587639571,41.680781506],[-71.58759357,41.680476506],[-71.587585571,41.680428507],[-71.587532571,41.680085506],[-71.58747957,41.679704507],[-71.58741757,41.679430506],[-71.58737957,41.679134506],[-71.587288571,41.678803506],[-71.58718957,41.678508506],[-71.58699157,41.678566506],[-71.586655571,41.678646506],[-71.58625857,41.678718506],[-71.58622757,41.678723506],[-71.585991571,41.678755506],[-71.58565557,41.678786506],[-71.58529757,41.678812506],[-71.584824569,41.678845506],[-71.58436657,41.678882506],[-71.584068569,41.678907507],[-71.58378657,41.678927507],[-71.583076569,41.678952506],[-71.582153569,41.678986507],[-71.581879568,41.678997506],[-71.581093569,41.679019506],[-71.580783569,41.679026506],[-71.580765569,41.679139507],[-71.580742569,41.679184506],[-71.580116568,41.679293507],[-71.580109568,41.679360506],[-71.580109568,41.679491507],[-71.580139569,41.679792506],[-71.579987568,41.679895507],[-71.579910568,41.679865506],[-71.579872568,41.679816507],[-71.579826568,41.679781507],[-71.579758568,41.679751506],[-71.579674568,41.679753506],[-71.579605568,41.679773506],[-71.579544568,41.679805507],[-71.579491568,41.679847506],[-71.578987568,41.680228507],[-71.578903568,41.680306507],[-71.578598568,41.680502507],[-71.578499568,41.680459507],[-71.578423568,41.680485507],[-71.578323568,41.680517507],[-71.578247568,41.680546507],[-71.578148568,41.680580507],[-71.578049568,41.680623507],[-71.578026568,41.680650507],[-71.578018567,41.680704506],[-71.578003567,41.680759507],[-71.577988568,41.680818507],[-71.577957568,41.680899506],[-71.577942567,41.680963507],[-71.577949568,41.681035506],[-71.577957568,41.681102507],[-71.577973568,41.681192506],[-71.577965568,41.681250506],[-71.577927568,41.681292507],[-71.577805567,41.681322507],[-71.577713568,41.681337507],[-71.577629567,41.681348507],[-71.577522568,41.681386506],[-71.577469568,41.681424507],[-71.577522568,41.681472507],[-71.577583568,41.681525507],[-71.577645568,41.681582507],[-71.577675568,41.681635507],[-71.577667567,41.681707507],[-71.577614567,41.681776507],[-71.577539568,41.681815507],[-71.577522568,41.681823507],[-71.577454567,41.681847507],[-71.577377567,41.681885507],[-71.577378567,41.682020507],[-71.577385568,41.682074507],[-71.577400567,41.682132507],[-71.577400567,41.682209507],[-71.577393567,41.682285507],[-71.577393567,41.682434507],[-71.577400567,41.682528507],[-71.577400567,41.682587507],[-71.577408568,41.682650507],[-71.577476567,41.682684507],[-71.577568567,41.682723507],[-71.577644568,41.682762507],[-71.577713568,41.682805507],[-71.577705567,41.682886508],[-71.577644568,41.682964508],[-71.577568567,41.682997507],[-71.577492567,41.683026507],[-71.577492567,41.683175507],[-71.577499568,41.683238507],[-71.577515567,41.683296508],[-71.577591567,41.683299507],[-71.577690567,41.683310507],[-71.577782568,41.683326507],[-71.577789568,41.683375507],[-71.577820568,41.683424507],[-71.577835568,41.683491508],[-71.577858568,41.683567508],[-71.577873568,41.683621507],[-71.577850568,41.683671507],[-71.577728567,41.683683508],[-71.577690568,41.683693507],[-71.577675568,41.683752507],[-71.577690568,41.683819508],[-71.577751568,41.683858508],[-71.577789568,41.683907507],[-71.577835568,41.683982507],[-71.577889568,41.684035508],[-71.577950568,41.684070508],[-71.577972568,41.684092508],[-71.577988568,41.684154508],[-71.578003568,41.684222507],[-71.578026568,41.684311507],[-71.577995568,41.684469507],[-71.577919567,41.684476507],[-71.577843567,41.684459508],[-71.577751568,41.684457508],[-71.577751568,41.684515507],[-71.577759568,41.684614508],[-71.577759568,41.684677508],[-71.577789568,41.684740507],[-71.577858568,41.684783507],[-71.577942568,41.684822507],[-71.577980568,41.684870508],[-71.577972568,41.684938507],[-71.577919567,41.684993507],[-71.577896568,41.685048508],[-71.577873568,41.685125508],[-71.577851568,41.685185508],[-71.577812568,41.685298508],[-71.577820568,41.685342508],[-71.577934568,41.685380508],[-71.578049568,41.685400508],[-71.578148568,41.685430508],[-71.578186568,41.685460508],[-71.578209568,41.685532508],[-71.578285568,41.685611508],[-71.578362568,41.685663508],[-71.578407568,41.685730508],[-71.578453568,41.685806508],[-71.578476568,41.685859508],[-71.578476568,41.685918508],[-71.578468568,41.685976508],[-71.578468568,41.686044508],[-71.578461568,41.686112508],[-71.578438568,41.686198508],[-71.578415568,41.686270508],[-71.578407568,41.686338508],[-71.578407568,41.686392508],[-71.578430568,41.686445508],[-71.578461568,41.686499508],[-71.578461568,41.686575508],[-71.578377568,41.686604508],[-71.578316568,41.686633508],[-71.578209568,41.686676508],[-71.577919568,41.686777508],[-71.577789568,41.686807508],[-71.577713568,41.686826507],[-71.577591568,41.686861508],[-71.577484568,41.686908508],[-71.577431568,41.686945508],[-71.577362568,41.686938508],[-71.577293568,41.686939508],[-71.577271568,41.687007508],[-71.577255568,41.687075508],[-71.577232568,41.687148508],[-71.577171568,41.687190508],[-71.577103567,41.687268508],[-71.577065567,41.687318508],[-71.576988567,41.687333509],[-71.576927567,41.687357508],[-71.576851567,41.687409508],[-71.576790567,41.687464508],[-71.576729568,41.687524508],[-71.576668568,41.687566509],[-71.576561567,41.687564508],[-71.576492568,41.687570508],[-71.576271567,41.687606509],[-71.576157568,41.687636508],[-71.576073567,41.687651508],[-71.576011567,41.687677508],[-71.575981567,41.687689508],[-71.575913567,41.687740509],[-71.575859567,41.687782508],[-71.575859567,41.687980508],[-71.575836567,41.688035509],[-71.575767567,41.688063508],[-71.575683567,41.688065508],[-71.575592567,41.688063508],[-71.575516568,41.688073509],[-71.575470567,41.688110509],[-71.575447567,41.688192508],[-71.575439568,41.688282508],[-71.575417567,41.688314508],[-71.575340567,41.688316508],[-71.575249567,41.688323509],[-71.575165567,41.688338508],[-71.575073567,41.688372508],[-71.574951567,41.688424509],[-71.574989567,41.688765508],[-71.574989567,41.688837508],[-71.574997567,41.688914508],[-71.574997567,41.688999508],[-71.574982567,41.689036508],[-71.574905567,41.689051508],[-71.574875567,41.689056508],[-71.574806567,41.689017508],[-71.574737567,41.688991508],[-71.574623567,41.688958508],[-71.574524567,41.688938508],[-71.574516567,41.688942508],[-71.574455567,41.688975508],[-71.574410567,41.689026509],[-71.574364567,41.689081509],[-71.574310567,41.689127509],[-71.574234566,41.689142509],[-71.574165567,41.689139509],[-71.573975567,41.689144509],[-71.573937567,41.689153508],[-71.573738567,41.689243509],[-71.573616567,41.689273509],[-71.573578567,41.689297509],[-71.573532566,41.689361509],[-71.573509567,41.689420508],[-71.573494566,41.689506509],[-71.573487567,41.689569509],[-71.573440566,41.689628509],[-71.573387567,41.689688509],[-71.573334567,41.689734508],[-71.573265566,41.689754508],[-71.573136567,41.689779509],[-71.573082567,41.689830508],[-71.573013566,41.689845509],[-71.572937567,41.689847509],[-71.572853566,41.689844509],[-71.572746567,41.689842509],[-71.572617566,41.689841509],[-71.572586566,41.689886509],[-71.572601566,41.689917509],[-71.572663566,41.689939509],[-71.572945567,41.689932508],[-71.573059567,41.689934509],[-71.573174567,41.689941509],[-71.573250567,41.689957509],[-71.573257567,41.689988508],[-71.573235567,41.690052509],[-71.573174567,41.690103508],[-71.573105566,41.690154509],[-71.573006566,41.690179509],[-71.572937567,41.690194509],[-71.572861567,41.690200508],[-71.572785567,41.690183508],[-71.572708567,41.690163508],[-71.572647567,41.690133509],[-71.572632567,41.690092509],[-71.572449566,41.690096509],[-71.572395567,41.690102509],[-71.572502566,41.690149509],[-71.572563566,41.690170509],[-71.572632567,41.690196509],[-71.572700566,41.690248509],[-71.572792566,41.690287509],[-71.572815566,41.690313509],[-71.572830566,41.690385509],[-71.572899567,41.690411509],[-71.572968566,41.690445509],[-71.573013566,41.690489509],[-71.573273567,41.690564509],[-71.573486567,41.690533508],[-71.573548567,41.690495508],[-71.573624567,41.690439509],[-71.573700567,41.690406509],[-71.573769567,41.690382509],[-71.573830567,41.690340508],[-71.573898567,41.690289509],[-71.573891567,41.690222508],[-71.573891567,41.690154509],[-71.573952567,41.690081509],[-71.573975567,41.690031509],[-71.574028567,41.689989508],[-71.574104567,41.689951508],[-71.574211567,41.689940509],[-71.574257567,41.689943509],[-71.574310567,41.689987508],[-71.574363567,41.690036509],[-71.574470567,41.690051509],[-71.574547567,41.690058509],[-71.574661567,41.690065508],[-71.574692567,41.690069508],[-71.574715567,41.690131509],[-71.574745567,41.690203508],[-71.574783567,41.690269509],[-71.574822567,41.690318508],[-71.574867567,41.690371509],[-71.574929567,41.690478509],[-71.574951567,41.690554508],[-71.575065567,41.690700509],[-71.575264568,41.690916509],[-71.575295567,41.690969509],[-71.575348567,41.691031509],[-71.575356567,41.691103509],[-71.575317567,41.691243509],[-71.575302568,41.691311509],[-71.575272567,41.691366509],[-71.575256567,41.691429508],[-71.575264568,41.691497509],[-71.575287567,41.691550509],[-71.575287567,41.691618509],[-71.575249567,41.691668509],[-71.575203568,41.691710509],[-71.575195567,41.691769509],[-71.575203568,41.691831509],[-71.575256567,41.691866509],[-71.575333567,41.691914509],[-71.575424567,41.691962509],[-71.575485567,41.691996509],[-71.575539568,41.692045509],[-71.575584567,41.692107509],[-71.575714568,41.692234509],[-71.575722567,41.692284509],[-71.575706568,41.692338509],[-71.575630568,41.692335509],[-71.575554568,41.692314509],[-71.575493568,41.692293509],[-71.575432567,41.692236509],[-71.575371567,41.692201509],[-71.575264568,41.692168509],[-71.575195567,41.692142509],[-71.575142567,41.692089509],[-71.575127568,41.692036509],[-71.575066567,41.692019509],[-71.575043567,41.692060509],[-71.575035567,41.692155509],[-71.575035567,41.692245509],[-71.575050568,41.692317509],[-71.575088568,41.692379509],[-71.575104567,41.692446509],[-71.575104567,41.692563509],[-71.575111567,41.692622509],[-71.575127568,41.69267551],[-71.575111567,41.692698509],[-71.575035567,41.692691509],[-71.574974567,41.692661509],[-71.574928567,41.692612509],[-71.574890567,41.692536509],[-71.574875568,41.692456509],[-71.574860567,41.692393509],[-71.574837568,41.692312509],[-71.574837568,41.692119509],[-71.574814567,41.692065509],[-71.574745567,41.692076509],[-71.574692567,41.692127509],[-71.574653567,41.692195509],[-71.574654567,41.692267509],[-71.574669567,41.692343509],[-71.574684567,41.692428509],[-71.574692567,41.692491509],[-71.574730567,41.692576509],[-71.574745567,41.692625509],[-71.574783567,41.692705509],[-71.574806567,41.692759509],[-71.574822567,41.69283151],[-71.574844567,41.69290751],[-71.574913568,41.69298651],[-71.575554568,41.69327851],[-71.575874567,41.693393509],[-71.576286568,41.693541509],[-71.576355568,41.69357151],[-71.576653568,41.693659509],[-71.576706568,41.693739509],[-71.576874568,41.69386551],[-71.577141568,41.693985509],[-71.577148568,41.694206509],[-71.577156568,41.694300509],[-71.577156568,41.694363509],[-71.577164568,41.69442651],[-71.577194568,41.694480509],[-71.577187568,41.694570509],[-71.577179568,41.69464251],[-71.577149568,41.69469751],[-71.577118569,41.694770509],[-71.577118569,41.694842509],[-71.577133568,41.69490951],[-71.577164568,41.694962509],[-71.577217568,41.69500651],[-71.577271568,41.69504551],[-71.577309568,41.695098509],[-71.577347568,41.695156509],[-71.577377568,41.69521051],[-71.577423568,41.69526751],[-71.577583569,41.695272509],[-71.577659568,41.69528451],[-71.577728568,41.69528751],[-71.577805568,41.695272509],[-71.577896569,41.69524351],[-71.578041568,41.695177509],[-71.578110569,41.695157509],[-71.578186569,41.695119509],[-71.578239568,41.69508751],[-71.578323569,41.695062509],[-71.578506568,41.695040509],[-71.578819568,41.69507451],[-71.578903569,41.695081509],[-71.578979569,41.69511151],[-71.578995568,41.695178509],[-71.578972568,41.69524151],[-71.578903569,41.69527051],[-71.578865569,41.695311509],[-71.578880569,41.69536051],[-71.578942569,41.695431509],[-71.578987569,41.69547551],[-71.579063569,41.695433509],[-71.579216569,41.69536251],[-71.579277569,41.69532051],[-71.579300569,41.69527051],[-71.579277569,41.695216509],[-71.579246568,41.695159509],[-71.579239569,41.69512751],[-71.579269569,41.695077509],[-71.579369569,41.69508851],[-71.579521569,41.69511251],[-71.579605569,41.69512851],[-71.579697569,41.695121509],[-71.579773569,41.695124509],[-71.579819569,41.695173509],[-71.579941569,41.695292509],[-71.579956569,41.695336509],[-71.579926569,41.69540051],[-71.579895569,41.69545551],[-71.579872569,41.695509509],[-71.579864569,41.695590509],[-71.579872569,41.695622509],[-71.579948569,41.695629509],[-71.580048569,41.69563651],[-71.580124569,41.69565751],[-71.58023857,41.69569551],[-71.58031557,41.69573351],[-71.58037557,41.69577751],[-71.580460569,41.69583451],[-71.58052857,41.695877509],[-71.58056657,41.69592151],[-71.580620569,41.69598851],[-71.580750569,41.696070509],[-71.58080357,41.696110509],[-71.580826569,41.69615451],[-71.58080357,41.69620451],[-71.580757569,41.696246509],[-71.58066657,41.69632051],[-71.580597569,41.69629951],[-71.58052857,41.69629651],[-71.580429569,41.69632151],[-71.580261569,41.696325509],[-71.580170569,41.69632251],[-71.580078569,41.69631151],[-71.579994569,41.69632251],[-71.579941569,41.69635951],[-71.579933569,41.69639551],[-71.579994569,41.69643951],[-71.580055569,41.69645151],[-71.580162569,41.696444509],[-71.580254569,41.69642851],[-71.580338569,41.69641751],[-71.580422569,41.696425509],[-71.580513569,41.69642751],[-71.580574569,41.696462509],[-71.58060557,41.69652451],[-71.58064357,41.69656851],[-71.58074257,41.696597509],[-71.580833569,41.696600509],[-71.580925569,41.69657151],[-71.581009569,41.69655151],[-71.581085569,41.69653151],[-71.581177569,41.696520509],[-71.581299569,41.696499509],[-71.58139857,41.69647051],[-71.58142957,41.696442509],[-71.581436569,41.69637051],[-71.58145957,41.696230509],[-71.58149757,41.696171509],[-71.58154357,41.69611651],[-71.581589569,41.696074509],[-71.58167357,41.696018509],[-71.58174957,41.69598051],[-71.581917569,41.69593251],[-71.58200157,41.69592551],[-71.58207757,41.695915509],[-71.582153569,41.695895509],[-71.58217657,41.69587251],[-71.58216157,41.69580951],[-71.58208557,41.69575751],[-71.58206957,41.69569451],[-71.58206257,41.69563651],[-71.58207057,41.69557751],[-71.58213157,41.695468509],[-71.58216957,41.695413509],[-71.58213057,41.69534151],[-71.58207757,41.695212509],[-71.58203157,41.695164509],[-71.58197057,41.695124509],[-71.58188657,41.695086509],[-71.581863569,41.695001509],[-71.581863569,41.694911509],[-71.58185657,41.694830509],[-71.58185657,41.694794509],[-71.58193257,41.694770509],[-71.58203157,41.69477651],[-71.582191569,41.694813509],[-71.58235257,41.69481951],[-71.58242857,41.69483551],[-71.58260357,41.69493551],[-71.582619569,41.69495251],[-71.58258157,41.695003509],[-71.58251257,41.69504951],[-71.58242857,41.695065509],[-71.58239857,41.69507451],[-71.58238257,41.695142509],[-71.58242857,41.69516851],[-71.58253557,41.69516651],[-71.58267257,41.69511351],[-71.58275657,41.695039509],[-71.58280257,41.69495351],[-71.58291657,41.694959509],[-71.58297057,41.694998509],[-71.58299257,41.695124509],[-71.58299257,41.695237509],[-71.58300057,41.695353509],[-71.58296257,41.695390509],[-71.58290157,41.69540151],[-71.58291657,41.69548151],[-71.58301557,41.69552051],[-71.583183571,41.69552051],[-71.58328257,41.695491509],[-71.58335157,41.695427509],[-71.58334457,41.695359509],[-71.58325957,41.695258509],[-71.58317657,41.69514751],[-71.58317657,41.694908509],[-71.58325257,41.694830509],[-71.58336657,41.694787509],[-71.58351957,41.694792509],[-71.583687571,41.694843509],[-71.58381757,41.694907509],[-71.58396957,41.694989509],[-71.58409157,41.695045509],[-71.58412257,41.695067509],[-71.58424457,41.695141509],[-71.584373571,41.695178509],[-71.584519571,41.69516651],[-71.58459557,41.69511051],[-71.584717571,41.694874509],[-71.58480857,41.694790509],[-71.58488557,41.69468551],[-71.584953571,41.694639509],[-71.585121571,41.694608509],[-71.58527457,41.694609509],[-71.585434571,41.694659509],[-71.585556571,41.694729509],[-71.585663571,41.694758509],[-71.585754571,41.694747509],[-71.585724571,41.694653509],[-71.585701571,41.694545509],[-71.585701571,41.694437509],[-71.585762571,41.69439151],[-71.585915571,41.694369509],[-71.586067571,41.694361509],[-71.586220571,41.694403509],[-71.586327571,41.69441051],[-71.586388571,41.694359509],[-71.586380571,41.694246509],[-71.586380571,41.694134509],[-71.586372571,41.694021509],[-71.586372571,41.693904509],[-71.586380571,41.693778509],[-71.586456571,41.693677509],[-71.586548571,41.693625509],[-71.586716571,41.693617509],[-71.586876571,41.693614509],[-71.587028571,41.693637509],[-71.587342571,41.693743509],[-71.587502571,41.693802509],[-71.587608572,41.693881509],[-71.587700572,41.693991509],[-71.587753571,41.694107509],[-71.587776572,41.694228509],[-71.587807571,41.69429551],[-71.587868571,41.694294509],[-71.587990572,41.694223509],[-71.588135572,41.694153509],[-71.588257571,41.694109509],[-71.588371572,41.694125509],[-71.588440572,41.694137509],[-71.588493572,41.694113509],[-71.588554572,41.694004509],[-71.588608571,41.693903509],[-71.588677572,41.693803509],[-71.588753572,41.693697509],[-71.588845572,41.693610509],[-71.588997572,41.693543509],[-71.589180572,41.693521509],[-71.589317572,41.693523509],[-71.589447572,41.693565509],[-71.589508572,41.693626509],[-71.589508572,41.693743509],[-71.589600573,41.693795509],[-71.589745572,41.693815509],[-71.589889573,41.693825509],[-71.590019572,41.693863509],[-71.590065573,41.693893509],[-71.590134572,41.693945509],[-71.590264572,41.694006509],[-71.590241573,41.694096509],[-71.590103573,41.694158509],[-71.589950573,41.694220509],[-71.589874572,41.694262509],[-71.589851573,41.694384509],[-71.589775573,41.694449509],[-71.589707572,41.694477509],[-71.589645572,41.694461509],[-71.589577572,41.694498509],[-71.589546572,41.694598509],[-71.589539573,41.694720509],[-71.589516572,41.694815509],[-71.589546572,41.69491851],[-71.589607572,41.695029509],[-71.589653572,41.695136509],[-71.589653572,41.69538451],[-71.589684572,41.695514509],[-71.589783572,41.695611509],[-71.589897572,41.69565751],[-71.590050572,41.69565951],[-71.590195572,41.695651509],[-71.590370572,41.695633509],[-71.590553573,41.69559851],[-71.590729573,41.695558509],[-71.590889572,41.695518509],[-71.591202572,41.695475509],[-71.591316573,41.695391509],[-71.591392573,41.695300509],[-71.591446573,41.695186509],[-71.591469573,41.695082509],[-71.591537573,41.694963509],[-71.591637573,41.694853509],[-71.591721573,41.694797509],[-71.591904573,41.694784509],[-71.592049573,41.694780509],[-71.592178573,41.694714509],[-71.592224573,41.694646509],[-71.592194573,41.694574509],[-71.592087573,41.694482509],[-71.591972573,41.694390509],[-71.591866573,41.694298509],[-71.591751573,41.694211509],[-71.591667573,41.694136509],[-71.591667573,41.694064509],[-71.591743573,41.693968509],[-71.591866573,41.693888509],[-71.591934573,41.693824509],[-71.591942573,41.693716509],[-71.591988573,41.693593509],[-71.592079573,41.693487509],[-71.592346573,41.693297509],[-71.592483573,41.693222509],[-71.592575573,41.693224508],[-71.592712573,41.693293509],[-71.592750573,41.693342508],[-71.592682573,41.693420508],[-71.592552573,41.693481509],[-71.592491573,41.693523509],[-71.592499573,41.693577509],[-71.592530573,41.693581509],[-71.592565573,41.693598509],[-71.592647573,41.693605509],[-71.592733573,41.693602509],[-71.592792573,41.693588509],[-71.593044573,41.693345509],[-71.593351573,41.693083509],[-71.593487573,41.693052508],[-71.593620573,41.693085509],[-71.593854573,41.693185508],[-71.594043574,41.693288509],[-71.594524574,41.693566509],[-71.594809573,41.693813509],[-71.594993574,41.694059509],[-71.594943574,41.694128509],[-71.594952574,41.694122509],[-71.595003574,41.694052509],[-71.595129574,41.693919509],[-71.595276574,41.693906508],[-71.595451574,41.693898509],[-71.595634574,41.693898509],[-71.595795574,41.693912509],[-71.595962574,41.693963509],[-71.596092575,41.694014509],[-71.596153574,41.694143509],[-71.596214574,41.694254509],[-71.596306575,41.694347509],[-71.596359574,41.694453508],[-71.596382575,41.694552509],[-71.596497575,41.694635509],[-71.596619575,41.694709509],[-71.596726574,41.694796509],[-71.596825575,41.694889509],[-71.596977574,41.694975509],[-71.597099575,41.695036509],[-71.597221575,41.695105509],[-71.597343574,41.695165509],[-71.597511575,41.695220509],[-71.597641575,41.695271509],[-71.597778575,41.695326509],[-71.597938575,41.695395509],[-71.598099575,41.695463509],[-71.598267575,41.695518509],[-71.598450575,41.695559509],[-71.598633575,41.695573509],[-71.598946575,41.695575509],[-71.599000576,41.695578509],[-71.600589576,41.69714051]]]]}}"}, +{"type": "precinct", "typeId": 612, "areaId": 25703, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":42,\"NAME\":\"0612\",\"SHAPE_Length\":0.084270698164321,\"SHAPE_Area\":-0.00023783072448043},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.543671558,41.697294511],[-71.543983558,41.697341511],[-71.544296558,41.697374511],[-71.544535557,41.697362511],[-71.544594557,41.697359511],[-71.545143558,41.697288511],[-71.545746558,41.697221511],[-71.546242558,41.697151511],[-71.546501559,41.697087511],[-71.546722558,41.696992511],[-71.547005559,41.696837511],[-71.547188558,41.696653511],[-71.547394559,41.696396511],[-71.547585559,41.696180511],[-71.547806559,41.695893511],[-71.547829558,41.695864511],[-71.548080559,41.69558851],[-71.548279558,41.69545351],[-71.549034559,41.695054511],[-71.549400559,41.69491151],[-71.549759559,41.69482651],[-71.550102559,41.69480551],[-71.550530559,41.69478651],[-71.55065156,41.69478451],[-71.551476559,41.69475651],[-71.55188056,41.69473851],[-71.55214756,41.69469751],[-71.55230756,41.69465251],[-71.55252156,41.69459851],[-71.55291856,41.69442351],[-71.55364256,41.69404651],[-71.554214561,41.69368251],[-71.554817561,41.69327751],[-71.555618561,41.692737509],[-71.556465562,41.69218251],[-71.556984561,41.691838509],[-71.557098561,41.691763509],[-71.557487561,41.691516509],[-71.558052561,41.691197509],[-71.558281561,41.691070509],[-71.558354562,41.691031509],[-71.558517561,41.690943509],[-71.559044562,41.690679509],[-71.559189562,41.690631509],[-71.559509563,41.69053051],[-71.559609562,41.690518509],[-71.559852562,41.690486509],[-71.560051563,41.690468509],[-71.560112563,41.690304509],[-71.560181562,41.690100509],[-71.560219562,41.690027509],[-71.560326563,41.689804509],[-71.560448562,41.689482509],[-71.560570562,41.689155509],[-71.560684562,41.688810509],[-71.560761562,41.688534509],[-71.560799562,41.688330508],[-71.560829563,41.688091509],[-71.560852563,41.687816509],[-71.560852563,41.687104508],[-71.560844562,41.686668509],[-71.560845562,41.686258509],[-71.560843562,41.686083509],[-71.560700562,41.686058508],[-71.560440562,41.685965509],[-71.560341562,41.685949508],[-71.560257562,41.685938508],[-71.560181562,41.685908509],[-71.560112562,41.685878508],[-71.560043562,41.685830509],[-71.559959562,41.685787508],[-71.559906562,41.685743508],[-71.559868562,41.685694509],[-71.559791562,41.685669508],[-71.559685561,41.685644508],[-71.559486562,41.685608508],[-71.559540562,41.685652509],[-71.559601562,41.685687508],[-71.559662562,41.685712509],[-71.559677562,41.685771509],[-71.559639562,41.685816508],[-71.559570562,41.685854508],[-71.559494562,41.685869509],[-71.559334561,41.685868509],[-71.559212562,41.685862508],[-71.559113562,41.685860508],[-71.559036562,41.685848509],[-71.558876562,41.685815508],[-71.558792561,41.685786508],[-71.558708562,41.685761508],[-71.558701562,41.685806509],[-71.558784562,41.685858508],[-71.558838562,41.685888509],[-71.558731561,41.685936508],[-71.558655561,41.685973508],[-71.558617561,41.686015508],[-71.558594561,41.686087508],[-71.558525562,41.686134508],[-71.558464561,41.686162509],[-71.558472562,41.686198509],[-71.558617561,41.686204508],[-71.558731561,41.686179509],[-71.558807562,41.686164508],[-71.558876562,41.686153508],[-71.558960562,41.686156509],[-71.559067562,41.686162509],[-71.559143562,41.686183508],[-71.559189562,41.686200509],[-71.559265562,41.686248508],[-71.559334561,41.686301508],[-71.559357562,41.686323508],[-71.559288562,41.686369508],[-71.559250562,41.686379508],[-71.559029562,41.686352509],[-71.558784562,41.686380508],[-71.558716561,41.686404508],[-71.558632561,41.686465508],[-71.558594561,41.686466508],[-71.558495562,41.686436508],[-71.558365561,41.686426508],[-71.558311562,41.686418508],[-71.558220562,41.686465508],[-71.558151561,41.686498508],[-71.558090561,41.686553508],[-71.558067561,41.686621508],[-71.558067561,41.686657508],[-71.558128561,41.686670508],[-71.558250561,41.686658508],[-71.558281561,41.686662509],[-71.558312562,41.686715508],[-71.558319562,41.686769508],[-71.558319562,41.686827508],[-71.558304561,41.686882509],[-71.558281561,41.686909508],[-71.558205561,41.686934509],[-71.558121562,41.686953509],[-71.557999562,41.686979509],[-71.557892561,41.686977509],[-71.557823561,41.686987508],[-71.557747561,41.687002508],[-71.557655562,41.687013509],[-71.557533561,41.687016509],[-71.557404561,41.687032509],[-71.557327561,41.687066508],[-71.557159561,41.687105508],[-71.556557561,41.687258508],[-71.556448561,41.687281509],[-71.556015561,41.687374508],[-71.555939561,41.687430509],[-71.555817561,41.687460509],[-71.555725561,41.687475509],[-71.55564956,41.687513509],[-71.55557256,41.687533509],[-71.55545856,41.687544509],[-71.55532156,41.687561509],[-71.55518356,41.687586509],[-71.555092561,41.687615509],[-71.55487856,41.687643509],[-71.554726561,41.687650509],[-71.55462656,41.687648508],[-71.554550561,41.687659509],[-71.55445156,41.687666508],[-71.554395561,41.687664509],[-71.554359561,41.687341509],[-71.55415656,41.685512509],[-71.55410856,41.685489508],[-71.55403256,41.685491508],[-71.55394056,41.685484508],[-71.55386356,41.685445508],[-71.55378056,41.685411508],[-71.55369656,41.685390508],[-71.55358956,41.685375508],[-71.55349056,41.685359509],[-71.55339856,41.685352508],[-71.55333056,41.685353508],[-71.55318456,41.685375508],[-71.55309356,41.685381509],[-71.55306256,41.685355508],[-71.55299456,41.685343509],[-71.552918559,41.685358509],[-71.552902559,41.685376509],[-71.552902559,41.685448508],[-71.55287256,41.685512509],[-71.55281856,41.685563508],[-71.55278856,41.685618508],[-71.55278056,41.685667509],[-71.55265856,41.685742508],[-71.55255956,41.685744509],[-71.552475559,41.685760508],[-71.55246056,41.685791509],[-71.55249856,41.685836508],[-71.552513559,41.685876508],[-71.552490559,41.685935508],[-71.552452559,41.685945509],[-71.55236856,41.685951508],[-71.55232356,41.685912508],[-71.55230756,41.685849509],[-71.552299559,41.685791509],[-71.55228456,41.685737508],[-71.55223156,41.685725509],[-71.552147559,41.685731509],[-71.552063559,41.685733509],[-71.55201756,41.685563508],[-71.551964559,41.685474509],[-71.55194156,41.685416509],[-71.551895559,41.685309508],[-71.551849559,41.685238508],[-71.551834559,41.685130508],[-71.551811559,41.684946508],[-71.55178556,41.684859508],[-71.551712559,41.684880508],[-71.551186559,41.685023508],[-71.550735559,41.685141509],[-71.550354559,41.685248508],[-71.550049559,41.685318509],[-71.549774559,41.685347508],[-71.549423559,41.685368508],[-71.549050559,41.685358509],[-71.548684559,41.685308508],[-71.548653558,41.685304509],[-71.548271558,41.685209508],[-71.547920558,41.685109509],[-71.547524558,41.684946509],[-71.547142558,41.684775509],[-71.546844558,41.684619509],[-71.546570558,41.684441509],[-71.546410557,41.684336508],[-71.546387557,41.684328509],[-71.545906557,41.684001508],[-71.545288557,41.683586509],[-71.544975557,41.683382508],[-71.544624557,41.683160508],[-71.544228557,41.682898508],[-71.543938557,41.682720508],[-71.543739556,41.682594509],[-71.543221557,41.682272508],[-71.542694556,41.681937508],[-71.542191556,41.681597508],[-71.541756556,41.681296508],[-71.541679556,41.681248508],[-71.541077556,41.680834508],[-71.540726556,41.680571508],[-71.540085556,41.680162508],[-71.539711555,41.679972508],[-71.539345555,41.679805508],[-71.538956554,41.679678508],[-71.538834555,41.679640508],[-71.538574555,41.679556507],[-71.538276554,41.679495507],[-71.537743555,41.679403508],[-71.537629554,41.679389508],[-71.537430555,41.679365508],[-71.537056554,41.679338507],[-71.536758554,41.679326508],[-71.536514554,41.679340507],[-71.536308554,41.679354508],[-71.536140554,41.679367508],[-71.536026554,41.679378507],[-71.535705554,41.679412508],[-71.535286554,41.679467508],[-71.534935554,41.679510508],[-71.534470553,41.679566508],[-71.533844554,41.679634508],[-71.533244553,41.679701508],[-71.532961553,41.679736508],[-71.532632553,41.679814508],[-71.532638552,41.679834508],[-71.532768553,41.680242508],[-71.532740553,41.680263508],[-71.533301553,41.680168508],[-71.533841553,41.680116508],[-71.534031553,41.680246508],[-71.534064553,41.680318508],[-71.534176554,41.680511508],[-71.534246553,41.680690508],[-71.534262553,41.680839508],[-71.534310554,41.680979508],[-71.534262553,41.681114508],[-71.534152554,41.681242508],[-71.534051553,41.681315508],[-71.534072553,41.681397508],[-71.534087553,41.681455508],[-71.534104553,41.681819508],[-71.534268554,41.682072508],[-71.534437553,41.682433509],[-71.534622554,41.682827509],[-71.534968554,41.683505509],[-71.535040554,41.683632508],[-71.535590554,41.684089509],[-71.535660554,41.684162509],[-71.535708554,41.684244509],[-71.535997554,41.684575509],[-71.535987554,41.684730509],[-71.536085554,41.684902509],[-71.536222555,41.685028509],[-71.536459554,41.685152509],[-71.536721554,41.685108509],[-71.536875554,41.685086509],[-71.537094555,41.685055509],[-71.537220554,41.685166509],[-71.537429555,41.685321509],[-71.537433555,41.685387509],[-71.537563555,41.685466509],[-71.537846554,41.685638509],[-71.538055555,41.686036509],[-71.538142555,41.686467509],[-71.538188555,41.687112509],[-71.538193555,41.68748551],[-71.538220555,41.687850509],[-71.538014555,41.688523509],[-71.538126555,41.68886851],[-71.538258555,41.689131509],[-71.538449555,41.689328509],[-71.538626555,41.68947051],[-71.538814556,41.68958451],[-71.539388555,41.689713509],[-71.539729556,41.68996351],[-71.539881556,41.69022651],[-71.539778555,41.69069851],[-71.539729556,41.69099551],[-71.539463555,41.69156951],[-71.539499556,41.69176351],[-71.539513556,41.69186951],[-71.539568556,41.69207551],[-71.539973556,41.69266451],[-71.540264556,41.69309051],[-71.540311556,41.693242511],[-71.540407556,41.69336251],[-71.540613556,41.69366351],[-71.541253557,41.694391511],[-71.541784556,41.695402511],[-71.541469557,41.695367511],[-71.541519557,41.695414511],[-71.541534556,41.695445511],[-71.541634556,41.695628511],[-71.541778557,41.695845511],[-71.541962556,41.696156511],[-71.542015557,41.696191511],[-71.542084557,41.696234511],[-71.542335557,41.696423511],[-71.542526557,41.696535511],[-71.542900557,41.696802511],[-71.543350557,41.696954511],[-71.543382557,41.696964511],[-71.543671558,41.697294511]]]]}}"}, +{"type": "precinct", "typeId": 613, "areaId": 25706, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":45,\"NAME\":\"0613\",\"SHAPE_Length\":0.14119106178132,\"SHAPE_Area\":-0.00027791666476798},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.55178556,41.684859508],[-71.551811559,41.684946508],[-71.551834559,41.685130508],[-71.551849559,41.685238508],[-71.551895559,41.685309508],[-71.55194156,41.685416509],[-71.551964559,41.685474509],[-71.55201756,41.685563508],[-71.552063559,41.685733509],[-71.552147559,41.685731509],[-71.55223156,41.685725509],[-71.55228456,41.685737508],[-71.552299559,41.685791509],[-71.55230756,41.685849509],[-71.55232356,41.685912508],[-71.55236856,41.685951508],[-71.552452559,41.685945509],[-71.552490559,41.685935508],[-71.552513559,41.685876508],[-71.55249856,41.685836508],[-71.55246056,41.685791509],[-71.552475559,41.685760508],[-71.55255956,41.685744509],[-71.55265856,41.685742508],[-71.55278056,41.685667509],[-71.55278856,41.685618508],[-71.55281856,41.685563508],[-71.55287256,41.685512509],[-71.552902559,41.685448508],[-71.552902559,41.685376509],[-71.552918559,41.685358509],[-71.55299456,41.685343509],[-71.55306256,41.685355508],[-71.55309356,41.685381509],[-71.55318456,41.685375508],[-71.55333056,41.685353508],[-71.55339856,41.685352508],[-71.55349056,41.685359509],[-71.55358956,41.685375508],[-71.55369656,41.685390508],[-71.55378056,41.685411508],[-71.55386356,41.685445508],[-71.55394056,41.685484508],[-71.55403256,41.685491508],[-71.55410856,41.685489508],[-71.55415656,41.685512509],[-71.554359561,41.687341509],[-71.554395561,41.687664509],[-71.55445156,41.687666508],[-71.554550561,41.687659509],[-71.55462656,41.687648508],[-71.554726561,41.687650509],[-71.55487856,41.687643509],[-71.555092561,41.687615509],[-71.55518356,41.687586509],[-71.55532156,41.687561509],[-71.55545856,41.687544509],[-71.55557256,41.687533509],[-71.55564956,41.687513509],[-71.555725561,41.687475509],[-71.555817561,41.687460509],[-71.555939561,41.687430509],[-71.556015561,41.687374508],[-71.556448561,41.687281509],[-71.556557561,41.687258508],[-71.557159561,41.687105508],[-71.557327561,41.687066508],[-71.557404561,41.687032509],[-71.557533561,41.687016509],[-71.557655562,41.687013509],[-71.557747561,41.687002508],[-71.557823561,41.686987508],[-71.557892561,41.686977509],[-71.557999562,41.686979509],[-71.558121562,41.686953509],[-71.558205561,41.686934509],[-71.558281561,41.686909508],[-71.558304561,41.686882509],[-71.558319562,41.686827508],[-71.558319562,41.686769508],[-71.558312562,41.686715508],[-71.558281561,41.686662509],[-71.558250561,41.686658508],[-71.558128561,41.686670508],[-71.558067561,41.686657508],[-71.558067561,41.686621508],[-71.558090561,41.686553508],[-71.558151561,41.686498508],[-71.558220562,41.686465508],[-71.558311562,41.686418508],[-71.558365561,41.686426508],[-71.558495562,41.686436508],[-71.558594561,41.686466508],[-71.558632561,41.686465508],[-71.558716561,41.686404508],[-71.558784562,41.686380508],[-71.559029562,41.686352509],[-71.559250562,41.686379508],[-71.559288562,41.686369508],[-71.559357562,41.686323508],[-71.559334561,41.686301508],[-71.559265562,41.686248508],[-71.559189562,41.686200509],[-71.559143562,41.686183508],[-71.559067562,41.686162509],[-71.558960562,41.686156509],[-71.558876562,41.686153508],[-71.558807562,41.686164508],[-71.558731561,41.686179509],[-71.558617561,41.686204508],[-71.558472562,41.686198509],[-71.558464561,41.686162509],[-71.558525562,41.686134508],[-71.558594561,41.686087508],[-71.558617561,41.686015508],[-71.558655561,41.685973508],[-71.558731561,41.685936508],[-71.558838562,41.685888509],[-71.558784562,41.685858508],[-71.558701562,41.685806509],[-71.558708562,41.685761508],[-71.558792561,41.685786508],[-71.558876562,41.685815508],[-71.559036562,41.685848509],[-71.559113562,41.685860508],[-71.559212562,41.685862508],[-71.559334561,41.685868509],[-71.559494562,41.685869509],[-71.559570562,41.685854508],[-71.559639562,41.685816508],[-71.559677562,41.685771509],[-71.559662562,41.685712509],[-71.559601562,41.685687508],[-71.559540562,41.685652509],[-71.559486562,41.685608508],[-71.559685561,41.685644508],[-71.559791562,41.685669508],[-71.559868562,41.685694509],[-71.559906562,41.685743508],[-71.559959562,41.685787508],[-71.560043562,41.685830509],[-71.560112562,41.685878508],[-71.560181562,41.685908509],[-71.560257562,41.685938508],[-71.560341562,41.685949508],[-71.560440562,41.685965509],[-71.560700562,41.686058508],[-71.560843562,41.686083509],[-71.560841562,41.686002509],[-71.560839562,41.685921508],[-71.560837562,41.685839508],[-71.560837562,41.685767508],[-71.560844562,41.685614509],[-71.560845562,41.685443508],[-71.560829562,41.685024508],[-71.560822562,41.684570508],[-71.560814563,41.684318508],[-71.560814563,41.684075508],[-71.560707562,41.683834508],[-71.560844562,41.683777508],[-71.560982562,41.683774508],[-71.561287562,41.683861508],[-71.561783563,41.683985508],[-71.562218563,41.684115508],[-71.562805562,41.684282508],[-71.563362563,41.684446508],[-71.563751563,41.684549508],[-71.564125563,41.684631508],[-71.564552564,41.684707508],[-71.564873563,41.684551508],[-71.565239564,41.684323508],[-71.565384563,41.684229508],[-71.565544564,41.684131508],[-71.565956564,41.683901507],[-71.566200564,41.683783508],[-71.566811564,41.683472507],[-71.567177564,41.683275508],[-71.567513564,41.683110507],[-71.567665564,41.683066507],[-71.567871565,41.683066507],[-71.567963564,41.682924508],[-71.568138565,41.682749508],[-71.568321565,41.682610508],[-71.568771565,41.682258508],[-71.569046564,41.682081507],[-71.569206565,41.681964507],[-71.569458565,41.681833508],[-71.569740565,41.681691507],[-71.569916565,41.681629507],[-71.570313566,41.681480507],[-71.570633565,41.681374507],[-71.570999565,41.681258507],[-71.571510565,41.681120507],[-71.572494566,41.680869507],[-71.572868566,41.680766507],[-71.573082566,41.680707507],[-71.573281566,41.680662507],[-71.573784567,41.680529506],[-71.574196566,41.680425507],[-71.574585566,41.680317507],[-71.574936566,41.680215506],[-71.575318567,41.679983506],[-71.574875567,41.680036507],[-71.574249567,41.680091507],[-71.573265566,41.680144507],[-71.572899566,41.680189507],[-71.572693565,41.680211507],[-71.571709566,41.680314506],[-71.571014566,41.680394507],[-71.570038565,41.680514507],[-71.569199565,41.680605507],[-71.568573565,41.680700507],[-71.568222565,41.680775507],[-71.567383564,41.680974508],[-71.567306564,41.680994508],[-71.566551564,41.681168508],[-71.566200563,41.681248508],[-71.565811563,41.681338507],[-71.564789564,41.681568507],[-71.564041563,41.681747507],[-71.563393563,41.681896507],[-71.564430563,41.680923507],[-71.564804563,41.680793507],[-71.564674564,41.680589507],[-71.564537564,41.680267507],[-71.564354563,41.679929507],[-71.564171563,41.679537507],[-71.564018563,41.679203507],[-71.563972563,41.679001507],[-71.563721563,41.679034507],[-71.563385563,41.679091507],[-71.563133563,41.679119507],[-71.563187563,41.678753506],[-71.563240563,41.678360507],[-71.563301563,41.678021507],[-71.563347563,41.677822506],[-71.563606562,41.677722506],[-71.563759563,41.677610507],[-71.563843563,41.677424507],[-71.563827563,41.677275506],[-71.563728563,41.677052507],[-71.563583563,41.676709506],[-71.563423563,41.676411507],[-71.563301563,41.676193507],[-71.563187563,41.676038507],[-71.562981562,41.675970506],[-71.562714562,41.675949506],[-71.562336563,41.675958506],[-71.561775562,41.675966506],[-71.561332562,41.675966506],[-71.560890562,41.675972506],[-71.560559562,41.675967506],[-71.560410561,41.675965506],[-71.560005561,41.675938507],[-71.559761562,41.675920507],[-71.559570561,41.675857506],[-71.559425561,41.675743507],[-71.559334561,41.675570507],[-71.559319561,41.675430506],[-71.559334561,41.675124507],[-71.559311562,41.674517506],[-71.559616561,41.674532506],[-71.559761652,41.674529646],[-71.559746771,41.673831491],[-71.559713463,41.672268756],[-71.560912959,41.672708222],[-71.561906387,41.672440622],[-71.561971814,41.673914441],[-71.561986448,41.674244111],[-71.561928562,41.674287506],[-71.562233562,41.674208506],[-71.562470563,41.674108506],[-71.562729562,41.673954506],[-71.562935563,41.673855506],[-71.563179562,41.673750506],[-71.563530562,41.673652506],[-71.563827563,41.673569506],[-71.564377563,41.673426506],[-71.564926563,41.673275505],[-71.565109563,41.673261506],[-71.565552564,41.673297505],[-71.566040564,41.673349506],[-71.566086563,41.673010506],[-71.566147563,41.672639506],[-71.566193564,41.672418505],[-71.566208563,41.672305505],[-71.565460563,41.672290506],[-71.564796563,41.672305505],[-71.564480563,41.672335506],[-71.564434563,41.671675505],[-71.563928563,41.671208505],[-71.563818563,41.671214505],[-71.563442563,41.671217505],[-71.563181562,41.671058505],[-71.562876562,41.670915505],[-71.562846562,41.670549505],[-71.561991562,41.669986505],[-71.561977562,41.669671505],[-71.562015562,41.669595505],[-71.561087562,41.668598505],[-71.561207561,41.668208505],[-71.561711562,41.667698504],[-71.562002562,41.667313505],[-71.562300561,41.666958504],[-71.562052562,41.666842504],[-71.561851561,41.666693505],[-71.561723562,41.666568504],[-71.561454562,41.666209505],[-71.561307561,41.665987504],[-71.561257561,41.665859505],[-71.561333561,41.665705505],[-71.561382561,41.665657504],[-71.561476562,41.665521504],[-71.561830561,41.665304504],[-71.562132562,41.665206504],[-71.562559562,41.665121504],[-71.562660562,41.665098504],[-71.562791562,41.665061505],[-71.563007562,41.664972504],[-71.563176562,41.664817504],[-71.563211562,41.664769505],[-71.563255562,41.664692504],[-71.563294562,41.664563504],[-71.563227562,41.664356504],[-71.563148562,41.664278504],[-71.562997562,41.664100504],[-71.562927562,41.663996504],[-71.562811562,41.663817504],[-71.562755562,41.663751504],[-71.562739562,41.663732504],[-71.562419561,41.663538504],[-71.562273562,41.663425503],[-71.562233562,41.663310504],[-71.562119562,41.663184504],[-71.562064561,41.663120504],[-71.562026561,41.663074503],[-71.561980562,41.663018504],[-71.561864562,41.662887504],[-71.561799561,41.662815504],[-71.561730562,41.662737504],[-71.561662561,41.662656504],[-71.561647561,41.662638504],[-71.561596561,41.662576504],[-71.561532561,41.662497504],[-71.561470561,41.662420504],[-71.561409561,41.662344504],[-71.561350561,41.662271504],[-71.561234561,41.662130504],[-71.561179561,41.662062503],[-71.561072561,41.661929503],[-71.561019561,41.661865503],[-71.560920561,41.661741504],[-71.560816561,41.661625504],[-71.560806561,41.661616503],[-71.560756561,41.661485504],[-71.560714561,41.661398503],[-71.560580561,41.661333504],[-71.560304561,41.661257504],[-71.55992056,41.661239504],[-71.559692561,41.661255504],[-71.55945956,41.661270504],[-71.55905056,41.661261503],[-71.558686561,41.661269504],[-71.55819056,41.661280503],[-71.55698056,41.661296504],[-71.555201559,41.661318503],[-71.553632559,41.661340503],[-71.553418559,41.661342503],[-71.553214558,41.661344504],[-71.553011559,41.661346504],[-71.552809558,41.661348504],[-71.552609558,41.661349504],[-71.552411558,41.661350504],[-71.552213559,41.661351504],[-71.552016558,41.661353504],[-71.551819558,41.661354504],[-71.551621558,41.661355504],[-71.551423558,41.661357503],[-71.551227558,41.661359503],[-71.551036558,41.661361504],[-71.550851557,41.661362504],[-71.550673558,41.661363504],[-71.550532558,41.661364504],[-71.550505557,41.661365504],[-71.550349557,41.661366504],[-71.550202558,41.661367504],[-71.550063558,41.661368504],[-71.549931558,41.661368504],[-71.549809557,41.661368504],[-71.549705557,41.661367504],[-71.549631557,41.661366504],[-71.549541558,41.661374504],[-71.549466557,41.661376504],[-71.549368558,41.661386504],[-71.549249558,41.661392504],[-71.549112557,41.661391504],[-71.548962557,41.661390504],[-71.548804557,41.661388504],[-71.548638557,41.661388504],[-71.548465557,41.661393504],[-71.548290557,41.661395504],[-71.548106557,41.661398504],[-71.547922557,41.661400504],[-71.547739557,41.661402504],[-71.547556556,41.661404504],[-71.547375557,41.661406504],[-71.547195557,41.661410504],[-71.547020557,41.661415504],[-71.546852557,41.661419504],[-71.546777556,41.661421504],[-71.546658556,41.661421504],[-71.546680556,41.661934504],[-71.546319556,41.661950504],[-71.545498556,41.661985504],[-71.544814556,41.662002504],[-71.544582556,41.661999505],[-71.544315556,41.662007504],[-71.544281555,41.662034504],[-71.544121556,41.662160504],[-71.543709556,41.662502504],[-71.543327555,41.662808504],[-71.542953555,41.663100504],[-71.543320556,41.663384505],[-71.543785556,41.663770505],[-71.543854555,41.663827505],[-71.544197556,41.664099505],[-71.544601556,41.664428505],[-71.544838556,41.664629505],[-71.544975556,41.664743505],[-71.545357556,41.665046504],[-71.545731556,41.665357504],[-71.546051557,41.665593505],[-71.546432556,41.665850505],[-71.546791557,41.666063505],[-71.547218557,41.666265505],[-71.547561557,41.666415505],[-71.547981557,41.666568505],[-71.548424557,41.666702505],[-71.548805557,41.666798504],[-71.549232557,41.666910505],[-71.549614558,41.667018505],[-71.549995557,41.667185505],[-71.550362558,41.667384505],[-71.550674558,41.667616505],[-71.550700558,41.667637505],[-71.550934558,41.667836505],[-71.551117558,41.668048505],[-71.551262558,41.668238505],[-71.551407558,41.668478505],[-71.551544558,41.668723505],[-71.551666559,41.668959506],[-71.552086558,41.669692505],[-71.552345559,41.670128506],[-71.552559559,41.670438506],[-71.552648559,41.670584505],[-71.552811559,41.670851506],[-71.553101559,41.671318506],[-71.553352559,41.671740506],[-71.553459559,41.671904506],[-71.553536559,41.672029506],[-71.553779559,41.672465506],[-71.55400856,41.672842506],[-71.554192559,41.673198506],[-71.554245559,41.673296506],[-71.55441356,41.673621506],[-71.55451256,41.673795506],[-71.55461156,41.673991506],[-71.55481756,41.674414506],[-71.55492456,41.674596507],[-71.55515356,41.675023507],[-71.55538256,41.675460506],[-71.55564956,41.675940507],[-71.55577156,41.676230507],[-71.556053561,41.676714507],[-71.55629756,41.677128507],[-71.55637156,41.677275507],[-71.55614556,41.677325507],[-71.55616056,41.677365507],[-71.55633556,41.677672507],[-71.556595561,41.678202507],[-71.55676356,41.678500507],[-71.55687756,41.678578507],[-71.556930561,41.678811507],[-71.55690056,41.679001507],[-71.556946561,41.679149507],[-71.556908561,41.679321507],[-71.556831561,41.679633507],[-71.556809561,41.679773507],[-71.55674056,41.679919508],[-71.55664856,41.679993507],[-71.556671561,41.680056508],[-71.556793561,41.680165507],[-71.55690056,41.680226507],[-71.556915561,41.680464508],[-71.556671561,41.680659508],[-71.55629756,41.680951508],[-71.556213561,41.681002507],[-71.55593156,41.681193507],[-71.555840561,41.681272507],[-71.555725561,41.681189508],[-71.55557356,41.681390507],[-71.55539756,41.681534508],[-71.55521456,41.681565507],[-71.55513056,41.681540508],[-71.555023561,41.681470507],[-71.554848561,41.681307508],[-71.55467056,41.681422508],[-71.55461156,41.681461508],[-71.55445156,41.681555508],[-71.55434456,41.681665508],[-71.55448956,41.681784508],[-71.55459656,41.681763508],[-71.55475656,41.681859507],[-71.55479456,41.681916507],[-71.55480256,41.681975507],[-71.55477956,41.682029507],[-71.55458156,41.682223508],[-71.55445156,41.682280508],[-71.55435256,41.682449508],[-71.55432156,41.682508508],[-71.55423056,41.682681508],[-71.55413856,41.682989508],[-71.55401656,41.683276508],[-71.55394056,41.683498508],[-71.55384856,41.683689508],[-71.55378756,41.683803509],[-71.55365056,41.683878508],[-71.553581559,41.683893508],[-71.55339056,41.683947508],[-71.55303256,41.684023508],[-71.55268156,41.684102508],[-71.552475559,41.684152509],[-71.55229256,41.684147508],[-71.55205556,41.684233508],[-71.551781559,41.684321508],[-71.551643559,41.684400508],[-71.551676559,41.684506508],[-71.55178556,41.684859508]]]]}}"}, +{"type": "precinct", "typeId": 614, "areaId": 25702, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":41,\"NAME\":\"0614\",\"SHAPE_Length\":0.079407720358669,\"SHAPE_Area\":-0.00028723766398787},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.589363571,41.660759502],[-71.58927257,41.660822503],[-71.58906657,41.661061503],[-71.58900557,41.661189503],[-71.58887557,41.661421502],[-71.58873757,41.661771502],[-71.58873757,41.662005503],[-71.58875357,41.662162503],[-71.58866157,41.662435503],[-71.58852457,41.662573503],[-71.58840257,41.662765503],[-71.58830357,41.662992503],[-71.58824957,41.663187503],[-71.58815857,41.663351503],[-71.58813557,41.663379503],[-71.58808257,41.663411503],[-71.58795957,41.663477503],[-71.58784557,41.663543503],[-71.58779157,41.663558503],[-71.58766957,41.663605503],[-71.58763957,41.663611503],[-71.58762457,41.663633503],[-71.58748657,41.663767503],[-71.587379569,41.663855503],[-71.58725757,41.663966503],[-71.58715857,41.664031503],[-71.587067569,41.664114503],[-71.586716569,41.664239504],[-71.586677569,41.664245503],[-71.586487569,41.664348503],[-71.58625857,41.664529503],[-71.586059569,41.664736503],[-71.585884569,41.664992503],[-71.58571657,41.665171504],[-71.585625569,41.665259503],[-71.58550357,41.665365504],[-71.585274569,41.665515503],[-71.585060569,41.665695504],[-71.584839569,41.665844503],[-71.584709569,41.665991504],[-71.584534569,41.666184504],[-71.584320569,41.666320504],[-71.584168569,41.666512504],[-71.584076569,41.666645504],[-71.584045569,41.666758504],[-71.583977569,41.666823504],[-71.583786569,41.666939504],[-71.583618569,41.667024504],[-71.583481568,41.667045504],[-71.583397569,41.667227504],[-71.583267568,41.667289504],[-71.583092568,41.667401504],[-71.582916568,41.667576504],[-71.582680568,41.667761504],[-71.582657569,41.667780504],[-71.582565568,41.667795504],[-71.582466568,41.667811505],[-71.582306569,41.667945504],[-71.582253568,41.667983504],[-71.582199568,41.668074504],[-71.582214568,41.668128504],[-71.582237568,41.668204504],[-71.582374568,41.668354504],[-71.582390568,41.668673504],[-71.582344569,41.668814504],[-71.582344569,41.669066504],[-71.582337568,41.669116505],[-71.582237568,41.669253505],[-71.582214568,41.669469505],[-71.582214568,41.669645505],[-71.582245569,41.669829504],[-71.582405568,41.669992505],[-71.582367568,41.670151505],[-71.582367568,41.670286505],[-71.582459569,41.670311504],[-71.582718568,41.670287505],[-71.582932568,41.670358505],[-71.582977569,41.670416505],[-71.582985569,41.670470504],[-71.582957569,41.670512505],[-71.582866569,41.670541505],[-71.582771569,41.670604504],[-71.582728569,41.670684504],[-71.582757568,41.670772505],[-71.582755569,41.670849505],[-71.582728569,41.670910505],[-71.582684569,41.670968505],[-71.582632569,41.671065505],[-71.582606569,41.671247504],[-71.582622568,41.671536505],[-71.582647569,41.671650505],[-71.582773569,41.671913505],[-71.582763569,41.672130505],[-71.582536569,41.672311505],[-71.582514569,41.672394505],[-71.582705569,41.672709505],[-71.582724569,41.672758505],[-71.582614569,41.672856505],[-71.582622568,41.672982505],[-71.582622568,41.672987505],[-71.582422569,41.673135506],[-71.579907986,41.672947437],[-71.575889076,41.674359647],[-71.576225567,41.677894507],[-71.576240567,41.678461506],[-71.576263567,41.679105506],[-71.576317567,41.679788506],[-71.576538567,41.679774507],[-71.576866567,41.679712506],[-71.577148567,41.679648507],[-71.577316567,41.679603507],[-71.577789567,41.679480506],[-71.577858568,41.679465507],[-71.578255567,41.679366506],[-71.578499568,41.679316507],[-71.578911568,41.679216507],[-71.579071568,41.679172506],[-71.579521568,41.679117507],[-71.579689568,41.679091506],[-71.580032568,41.679056506],[-71.580253568,41.679038506],[-71.580612568,41.679029506],[-71.580783569,41.679026506],[-71.581093569,41.679019506],[-71.581879568,41.678997506],[-71.582153569,41.678986507],[-71.583076569,41.678952506],[-71.58378657,41.678927507],[-71.584068569,41.678907507],[-71.58436657,41.678882506],[-71.584824569,41.678845506],[-71.58529757,41.678812506],[-71.58565557,41.678786506],[-71.585991571,41.678755506],[-71.58622757,41.678723506],[-71.58625857,41.678718506],[-71.586655571,41.678646506],[-71.58699157,41.678566506],[-71.58718957,41.678508506],[-71.58726557,41.678488506],[-71.587509571,41.678393506],[-71.587715571,41.678298506],[-71.587975571,41.678175506],[-71.588150571,41.678067506],[-71.588425571,41.677890506],[-71.588455571,41.677867506],[-71.588806571,41.677643505],[-71.589615571,41.677102506],[-71.589793572,41.676990506],[-71.589981571,41.676873506],[-71.590469572,41.676543506],[-71.590919572,41.676253506],[-71.591377571,41.675964505],[-71.591759572,41.675735505],[-71.592201572,41.675459505],[-71.592591572,41.675225505],[-71.592697572,41.675155505],[-71.592740572,41.675128505],[-71.593163572,41.674870506],[-71.593387572,41.674731505],[-71.593552573,41.674631505],[-71.594170572,41.674253505],[-71.594642573,41.673949505],[-71.594681573,41.673926505],[-71.595199573,41.673590505],[-71.595749573,41.673226505],[-71.595779573,41.673208505],[-71.595894573,41.673133505],[-71.595955573,41.673096505],[-71.596008573,41.673067505],[-71.596153573,41.672974505],[-71.596496573,41.672737505],[-71.596908574,41.672462505],[-71.597283574,41.672178505],[-71.597900574,41.671723504],[-71.598404574,41.671347504],[-71.598684574,41.671136504],[-71.598854574,41.671008505],[-71.599152574,41.670794505],[-71.599426574,41.670576504],[-71.599663575,41.670400504],[-71.599869574,41.670229504],[-71.600029575,41.670090504],[-71.600220574,41.669897504],[-71.600342575,41.669763504],[-71.600380575,41.669699504],[-71.600472574,41.669567504],[-71.600578575,41.669402504],[-71.600670575,41.669238503],[-71.600731575,41.669115504],[-71.600792575,41.668978504],[-71.600838574,41.668856504],[-71.600899574,41.668665504],[-71.600945575,41.668507504],[-71.600998574,41.668280503],[-71.601494575,41.665801503],[-71.601578574,41.665381503],[-71.601681575,41.664859503],[-71.601768575,41.664417503],[-71.601845575,41.664019503],[-71.601868574,41.663911503],[-71.601952574,41.663494503],[-71.602081575,41.662906502],[-71.602241574,41.662394502],[-71.602531574,41.661491503],[-71.602775575,41.660765502],[-71.602844574,41.660547502],[-71.602900575,41.660379502],[-71.597773573,41.660564502],[-71.597734573,41.660564502],[-71.589363571,41.660759502]]]]}}"}, +{"type": "precinct", "typeId": 615, "areaId": 25705, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":44,\"NAME\":\"0615\",\"SHAPE_Length\":0.13736479749271,\"SHAPE_Area\":-0.00039812330395509},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.58718957,41.678508506],[-71.587288571,41.678803506],[-71.58737957,41.679134506],[-71.58741757,41.679430506],[-71.58747957,41.679704507],[-71.587532571,41.680085506],[-71.587585571,41.680428507],[-71.58759357,41.680476506],[-71.587639571,41.680781506],[-71.587692571,41.681081506],[-71.587723571,41.681382507],[-71.587731571,41.681616507],[-71.587753571,41.681949507],[-71.587784571,41.682272507],[-71.587809571,41.682588507],[-71.587829571,41.682852507],[-71.587860571,41.683122507],[-71.587868571,41.683149507],[-71.587906571,41.683522507],[-71.587944571,41.683831507],[-71.587944571,41.684043507],[-71.587921571,41.684305507],[-71.587906571,41.684386508],[-71.587906571,41.684580507],[-71.587921571,41.684895508],[-71.587959571,41.685443507],[-71.587959571,41.685898507],[-71.587967571,41.686587508],[-71.587990571,41.687091508],[-71.588005571,41.687338508],[-71.588020572,41.687608507],[-71.588150571,41.687744507],[-71.588341571,41.687916508],[-71.588539572,41.688046508],[-71.588753572,41.688204508],[-71.588974572,41.688383508],[-71.589172571,41.688563508],[-71.589478572,41.688566508],[-71.589684572,41.688570508],[-71.589905572,41.688583508],[-71.590187572,41.688604508],[-71.590768573,41.688632508],[-71.590820572,41.688634508],[-71.591217573,41.688657508],[-71.591476572,41.688674508],[-71.591690572,41.688687508],[-71.592209573,41.688725508],[-71.592575573,41.688743508],[-71.592857572,41.688760508],[-71.593178573,41.688784508],[-71.593689573,41.688804508],[-71.594063574,41.688831508],[-71.594460573,41.688872508],[-71.594894574,41.688898508],[-71.594948573,41.688893508],[-71.594986573,41.688883508],[-71.595024573,41.688859508],[-71.595062573,41.688822508],[-71.595077574,41.688804508],[-71.595146574,41.688757507],[-71.595245574,41.688706508],[-71.595344574,41.688658508],[-71.595428574,41.688616508],[-71.595505574,41.688569508],[-71.595543574,41.688501508],[-71.595574574,41.688437508],[-71.595619574,41.688292507],[-71.595680574,41.688083508],[-71.595604574,41.688067508],[-71.595497574,41.688016507],[-71.595428574,41.687977507],[-71.595375573,41.687933508],[-71.595283574,41.687840508],[-71.595085573,41.687543508],[-71.594795573,41.687081507],[-71.594711573,41.686944507],[-71.594475574,41.686557507],[-71.594444573,41.686495507],[-71.594421573,41.686432508],[-71.594414574,41.686378507],[-71.594429573,41.685865507],[-71.595062573,41.685882507],[-71.595528574,41.685898507],[-71.595795574,41.685910507],[-71.595871574,41.685909508],[-71.596229574,41.685923507],[-71.596626574,41.685950507],[-71.596970575,41.685978507],[-71.597290574,41.685998507],[-71.597649575,41.686004507],[-71.598099575,41.685998507],[-71.598450575,41.685990507],[-71.598724575,41.685979507],[-71.598968575,41.685974507],[-71.599098574,41.685984507],[-71.599259575,41.686003507],[-71.599404575,41.686022507],[-71.599563575,41.686050507],[-71.599731575,41.686074507],[-71.599899575,41.686083507],[-71.600029575,41.686080507],[-71.600235575,41.686071507],[-71.600411575,41.686054507],[-71.600578576,41.686023507],[-71.600799575,41.685977507],[-71.601112575,41.685898507],[-71.601234576,41.685850507],[-71.601296576,41.685813507],[-71.601326575,41.685785507],[-71.601372576,41.685676507],[-71.601372576,41.685595507],[-71.601318576,41.685430507],[-71.601235576,41.685053507],[-71.601204575,41.684892507],[-71.601524575,41.684867507],[-71.601891575,41.684809507],[-71.602333576,41.684758507],[-71.602715576,41.684687507],[-71.602814576,41.684653507],[-71.602890576,41.684624506],[-71.602997576,41.684532507],[-71.603050576,41.684440507],[-71.603111576,41.684290507],[-71.603127576,41.684267507],[-71.603134576,41.684204507],[-71.603157576,41.684096506],[-71.603187576,41.683870507],[-71.603180576,41.683645507],[-71.603149576,41.683492506],[-71.603111576,41.683354507],[-71.603012576,41.683194507],[-71.602943576,41.683038507],[-71.602928576,41.683002507],[-71.602882576,41.682850506],[-71.602859576,41.682670507],[-71.602852576,41.682472507],[-71.602829576,41.682306506],[-71.602783576,41.682127506],[-71.602890576,41.682048507],[-71.602936576,41.681930507],[-71.603012576,41.681766506],[-71.603157576,41.681403506],[-71.603707576,41.680995506],[-71.603569576,41.680939506],[-71.603401576,41.680902506],[-71.603271575,41.680842506],[-71.603142576,41.680777506],[-71.602982576,41.680718506],[-71.602844575,41.680662506],[-71.602806575,41.680659506],[-71.602539576,41.680665506],[-71.602440576,41.680694506],[-71.602371576,41.680781506],[-71.602379575,41.680907506],[-71.602356575,41.681025506],[-71.602363576,41.681133506],[-71.602402576,41.681258506],[-71.602486576,41.681378506],[-71.602547576,41.681480506],[-71.602570575,41.681551506],[-71.602532575,41.681633506],[-71.602417575,41.681708506],[-71.602257575,41.681756506],[-71.602097576,41.681796506],[-71.601967575,41.681849507],[-71.601822576,41.681910507],[-71.601669576,41.681968507],[-71.601501575,41.682021506],[-71.601151575,41.682115506],[-71.601021575,41.682176506],[-71.600891576,41.682247506],[-71.600769575,41.682317507],[-71.600617576,41.682370506],[-71.600464575,41.682400506],[-71.600304575,41.682427506],[-71.600151575,41.682448506],[-71.599983575,41.682452507],[-71.599800574,41.682452507],[-71.599663575,41.682419506],[-71.599563575,41.682322506],[-71.599556575,41.682295507],[-71.599533575,41.682250506],[-71.599510574,41.682237507],[-71.599464575,41.682220507],[-71.599434575,41.682219507],[-71.599434575,41.682183507],[-71.599503575,41.682179507],[-71.599533575,41.682169506],[-71.599533575,41.682129506],[-71.599564575,41.682074506],[-71.599708575,41.682062507],[-71.599800574,41.682028507],[-71.599907575,41.681958506],[-71.599991575,41.681925506],[-71.600097575,41.681913506],[-71.600220575,41.681830507],[-71.600342575,41.681732507],[-71.600410575,41.681632506],[-71.600624575,41.681393506],[-71.600731575,41.681296506],[-71.600815575,41.681199506],[-71.600792575,41.681132506],[-71.600737575,41.681073507],[-71.600693575,41.681026506],[-71.600593575,41.680930506],[-71.600494575,41.680828506],[-71.600441575,41.680762506],[-71.600471575,41.680658506],[-71.600464575,41.680577506],[-71.600403575,41.680569506],[-71.600304575,41.680607506],[-71.600220575,41.680731506],[-71.600136575,41.680814506],[-71.599991575,41.680844506],[-71.599815575,41.680862506],[-71.599510574,41.680869506],[-71.599342575,41.680863506],[-71.599197574,41.680826506],[-71.599060574,41.680775506],[-71.598908574,41.680707506],[-71.598778575,41.680619506],[-71.598739575,41.680503506],[-71.598686575,41.680423506],[-71.598557574,41.680345506],[-71.598412575,41.680285506],[-71.598274575,41.680289506],[-71.598160575,41.680363506],[-71.598060574,41.680478506],[-71.597977574,41.680597506],[-71.597877574,41.680698506],[-71.597778574,41.680723506],[-71.597679574,41.680739506],[-71.597618574,41.680826506],[-71.597550574,41.680917506],[-71.597473574,41.680928506],[-71.597389574,41.680907506],[-71.597366574,41.680840506],[-71.597366574,41.680719506],[-71.597359574,41.680602506],[-71.597359574,41.680489506],[-71.597344574,41.680377506],[-71.597359574,41.680264506],[-71.597420574,41.680204506],[-71.597580574,41.680133506],[-71.597740574,41.680075506],[-71.597900574,41.680027506],[-71.598068574,41.680014506],[-71.598434575,41.680060506],[-71.598610574,41.680038506],[-71.598724575,41.679995506],[-71.598808574,41.679880506],[-71.598907574,41.679770506],[-71.599007574,41.679736506],[-71.599182574,41.679728505],[-71.599373574,41.679732506],[-71.599495575,41.679761506],[-71.599602575,41.679858506],[-71.599685574,41.679896506],[-71.599823574,41.679880506],[-71.599968575,41.679804506],[-71.600097575,41.679743506],[-71.600250575,41.679676506],[-71.600334575,41.679607506],[-71.600380575,41.679507506],[-71.600441575,41.679447506],[-71.600601575,41.679443506],[-71.600738575,41.679427506],[-71.600883575,41.679396505],[-71.601036575,41.679361506],[-71.601212575,41.679353506],[-71.601402575,41.679335506],[-71.601685575,41.679284506],[-71.601845576,41.679240505],[-71.601974575,41.679183505],[-71.602119576,41.679107505],[-71.602257575,41.679059506],[-71.602394575,41.679016506],[-71.602539576,41.678967505],[-71.602677576,41.678897506],[-71.602791576,41.678831505],[-71.602936576,41.678769506],[-71.603241576,41.678690506],[-71.603371576,41.678638505],[-71.603523576,41.678630506],[-71.603622575,41.678650506],[-71.603638576,41.678726506],[-71.603607576,41.678848506],[-71.603607576,41.678961506],[-71.603653576,41.679091506],[-71.603745576,41.679215506],[-71.603828576,41.679312506],[-71.603828576,41.679429506],[-71.603767576,41.679511506],[-71.603668576,41.679595505],[-71.603577576,41.679718506],[-71.603485576,41.679833506],[-71.603470576,41.679968506],[-71.603508576,41.680048506],[-71.603592576,41.680083506],[-71.603760576,41.680088506],[-71.603905576,41.680085506],[-71.604027576,41.680064506],[-71.604103576,41.679994506],[-71.604164576,41.679885505],[-71.604233576,41.679775506],[-71.604286576,41.679671505],[-71.604324576,41.679562506],[-71.604324576,41.679431506],[-71.604294576,41.679324506],[-71.604218576,41.679289506],[-71.604057576,41.679280505],[-71.603981576,41.679241505],[-71.603905576,41.679134506],[-71.603920576,41.678882506],[-71.603920576,41.678769506],[-71.603928576,41.678643505],[-71.603981576,41.678547506],[-71.604080576,41.678504505],[-71.604271576,41.678496506],[-71.604461576,41.678505505],[-71.604614577,41.678551506],[-71.604751577,41.678566505],[-71.604835576,41.678550506],[-71.604897576,41.678468505],[-71.604897576,41.678351505],[-71.604859576,41.678244506],[-71.604866577,41.678131505],[-71.604904577,41.678099505],[-71.605049576,41.678055505],[-71.605171576,41.677980505],[-71.605209576,41.677893506],[-71.605194576,41.677777506],[-71.605171576,41.677759505],[-71.605064577,41.677676506],[-71.604942576,41.677616506],[-71.604828577,41.677627505],[-71.604683576,41.677707505],[-71.604546576,41.677773506],[-71.604423576,41.677790506],[-71.604248576,41.677794506],[-71.604096576,41.677811506],[-71.603981576,41.677836505],[-71.603798576,41.677840505],[-71.603638576,41.677835506],[-71.603485576,41.677838505],[-71.603317576,41.677860505],[-71.603150576,41.677873506],[-71.603035576,41.677866505],[-71.603020575,41.677822505],[-71.603081575,41.677717506],[-71.603203576,41.677610505],[-71.603302576,41.677500506],[-71.603409575,41.677389505],[-71.603539576,41.677292505],[-71.603684576,41.677199505],[-71.603806576,41.677106505],[-71.603943576,41.677035506],[-71.604256576,41.676951505],[-71.604393576,41.676890505],[-71.604500576,41.676815505],[-71.604591576,41.676705505],[-71.604675576,41.676595505],[-71.604721576,41.676468505],[-71.604721576,41.676347505],[-71.604675576,41.676235505],[-71.604706576,41.676117505],[-71.604752577,41.676008505],[-71.604797576,41.675885505],[-71.604851576,41.675772505],[-71.604912576,41.675667505],[-71.604935576,41.675558505],[-71.604919576,41.675437505],[-71.604866576,41.675339505],[-71.604729576,41.675284505],[-71.604630576,41.675209505],[-71.604599576,41.675142505],[-71.604622576,41.675070505],[-71.604736576,41.675009504],[-71.604889577,41.674951504],[-71.605042576,41.674898505],[-71.605202576,41.674845505],[-71.605354577,41.674783505],[-71.605484576,41.674695505],[-71.605568577,41.674589505],[-71.605652576,41.674461505],[-71.605705577,41.674329504],[-71.605736576,41.674198505],[-71.605766577,41.674085505],[-71.605866576,41.673997504],[-71.606018577,41.673912505],[-71.606148577,41.673846504],[-71.606270577,41.673776505],[-71.606392576,41.673710504],[-71.606514576,41.673649504],[-71.606636577,41.673570504],[-71.606743576,41.673482505],[-71.606834577,41.673381505],[-71.606957576,41.673274504],[-71.607071577,41.673182504],[-71.607178577,41.673089504],[-71.607261577,41.673065504],[-71.607422577,41.673084504],[-71.607559577,41.673112505],[-71.607719577,41.673153505],[-71.607869577,41.673181504],[-71.607872577,41.673181504],[-71.607932577,41.673195504],[-71.607992577,41.673212505],[-71.608010577,41.673212505],[-71.607994577,41.673137504],[-71.608021577,41.673070504],[-71.608172577,41.672702504],[-71.607945577,41.672432505],[-71.607855577,41.671953504],[-71.607795577,41.671557504],[-71.608115577,41.671145504],[-71.608269577,41.670890504],[-71.608431577,41.670756504],[-71.610220577,41.670703504],[-71.611339578,41.670604503],[-71.611819578,41.670391503],[-71.611831579,41.670392504],[-71.612173578,41.670318504],[-71.612565578,41.670234503],[-71.613796579,41.669728503],[-71.614135578,41.669549503],[-71.614701579,41.669251504],[-71.615916579,41.668272503],[-71.61756158,41.666306503],[-71.61836158,41.665754503],[-71.619241581,41.665241502],[-71.61928458,41.665217503],[-71.61979858,41.664912502],[-71.62041758,41.664553503],[-71.620502581,41.663942502],[-71.62062958,41.663552502],[-71.62049158,41.662897502],[-71.621410581,41.662005502],[-71.621647581,41.660866502],[-71.622223581,41.660393502],[-71.622378581,41.660224502],[-71.622375581,41.659738502],[-71.621918581,41.659752502],[-71.621684581,41.659754502],[-71.62152558,41.659758501],[-71.606833576,41.660248502],[-71.602900575,41.660379502],[-71.602844574,41.660547502],[-71.602775575,41.660765502],[-71.602531574,41.661491503],[-71.602241574,41.662394502],[-71.602081575,41.662906502],[-71.601952574,41.663494503],[-71.601868574,41.663911503],[-71.601845575,41.664019503],[-71.601768575,41.664417503],[-71.601681575,41.664859503],[-71.601578574,41.665381503],[-71.601494575,41.665801503],[-71.600998574,41.668280503],[-71.600945575,41.668507504],[-71.600899574,41.668665504],[-71.600838574,41.668856504],[-71.600792575,41.668978504],[-71.600731575,41.669115504],[-71.600670575,41.669238503],[-71.600578575,41.669402504],[-71.600472574,41.669567504],[-71.600380575,41.669699504],[-71.600342575,41.669763504],[-71.600220574,41.669897504],[-71.600029575,41.670090504],[-71.599869574,41.670229504],[-71.599663575,41.670400504],[-71.599426574,41.670576504],[-71.599152574,41.670794505],[-71.598854574,41.671008505],[-71.598684574,41.671136504],[-71.598404574,41.671347504],[-71.597900574,41.671723504],[-71.597283574,41.672178505],[-71.596908574,41.672462505],[-71.596496573,41.672737505],[-71.596153573,41.672974505],[-71.596008573,41.673067505],[-71.595955573,41.673096505],[-71.595894573,41.673133505],[-71.595779573,41.673208505],[-71.595749573,41.673226505],[-71.595199573,41.673590505],[-71.594681573,41.673926505],[-71.594642573,41.673949505],[-71.594170572,41.674253505],[-71.593552573,41.674631505],[-71.593387572,41.674731505],[-71.593163572,41.674870506],[-71.592740572,41.675128505],[-71.592697572,41.675155505],[-71.592591572,41.675225505],[-71.592201572,41.675459505],[-71.591759572,41.675735505],[-71.591377571,41.675964505],[-71.590919572,41.676253506],[-71.590469572,41.676543506],[-71.589981571,41.676873506],[-71.589793572,41.676990506],[-71.589615571,41.677102506],[-71.588806571,41.677643505],[-71.588455571,41.677867506],[-71.588425571,41.677890506],[-71.588150571,41.678067506],[-71.587975571,41.678175506],[-71.587715571,41.678298506],[-71.587509571,41.678393506],[-71.58726557,41.678488506],[-71.58718957,41.678508506]]]]}}"}, +{"type": "precinct", "typeId": 616, "areaId": 25704, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":43,\"NAME\":\"0616\",\"SHAPE_Length\":0.11456268846942,\"SHAPE_Area\":-0.00037332286562191},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.560756561,41.661485504],[-71.560806561,41.661616503],[-71.560816561,41.661625504],[-71.560920561,41.661741504],[-71.561019561,41.661865503],[-71.561072561,41.661929503],[-71.561179561,41.662062503],[-71.561234561,41.662130504],[-71.561350561,41.662271504],[-71.561409561,41.662344504],[-71.561470561,41.662420504],[-71.561532561,41.662497504],[-71.561596561,41.662576504],[-71.561647561,41.662638504],[-71.561662561,41.662656504],[-71.561730562,41.662737504],[-71.561799561,41.662815504],[-71.561864562,41.662887504],[-71.561980562,41.663018504],[-71.562026561,41.663074503],[-71.562064561,41.663120504],[-71.562119562,41.663184504],[-71.562233562,41.663310504],[-71.562273562,41.663425503],[-71.562419561,41.663538504],[-71.562739562,41.663732504],[-71.562755562,41.663751504],[-71.562811562,41.663817504],[-71.562927562,41.663996504],[-71.562997562,41.664100504],[-71.563148562,41.664278504],[-71.563227562,41.664356504],[-71.563294562,41.664563504],[-71.563255562,41.664692504],[-71.563211562,41.664769505],[-71.563176562,41.664817504],[-71.563007562,41.664972504],[-71.562791562,41.665061505],[-71.562660562,41.665098504],[-71.562559562,41.665121504],[-71.562132562,41.665206504],[-71.561830561,41.665304504],[-71.561476562,41.665521504],[-71.561382561,41.665657504],[-71.561333561,41.665705505],[-71.561257561,41.665859505],[-71.561307561,41.665987504],[-71.561454562,41.666209505],[-71.561723562,41.666568504],[-71.561851561,41.666693505],[-71.562052562,41.666842504],[-71.562300561,41.666958504],[-71.562002562,41.667313505],[-71.561711562,41.667698504],[-71.561207561,41.668208505],[-71.561087562,41.668598505],[-71.562015562,41.669595505],[-71.561977562,41.669671505],[-71.561991562,41.669986505],[-71.562846562,41.670549505],[-71.562876562,41.670915505],[-71.563181562,41.671058505],[-71.563442563,41.671217505],[-71.563818563,41.671214505],[-71.563928563,41.671208505],[-71.564434563,41.671675505],[-71.564480563,41.672335506],[-71.564796563,41.672305505],[-71.565460563,41.672290506],[-71.566208563,41.672305505],[-71.566193564,41.672418505],[-71.566147563,41.672639506],[-71.566086563,41.673010506],[-71.566040564,41.673349506],[-71.565552564,41.673297505],[-71.565109563,41.673261506],[-71.564926563,41.673275505],[-71.564377563,41.673426506],[-71.563827563,41.673569506],[-71.563530562,41.673652506],[-71.563179562,41.673750506],[-71.562935563,41.673855506],[-71.562729562,41.673954506],[-71.562470563,41.674108506],[-71.562233562,41.674208506],[-71.561928562,41.674287506],[-71.561986448,41.674244111],[-71.561971814,41.673914441],[-71.561906387,41.672440622],[-71.560912959,41.672708222],[-71.559713463,41.672268756],[-71.559746771,41.673831491],[-71.559761652,41.674529646],[-71.559616561,41.674532506],[-71.559311562,41.674517506],[-71.559334561,41.675124507],[-71.559319561,41.675430506],[-71.559334561,41.675570507],[-71.559425561,41.675743507],[-71.559570561,41.675857506],[-71.559761562,41.675920507],[-71.560005561,41.675938507],[-71.560410561,41.675965506],[-71.560559562,41.675967506],[-71.560890562,41.675972506],[-71.561332562,41.675966506],[-71.561775562,41.675966506],[-71.562336563,41.675958506],[-71.562714562,41.675949506],[-71.562981562,41.675970506],[-71.563187563,41.676038507],[-71.563301563,41.676193507],[-71.563423563,41.676411507],[-71.563583563,41.676709506],[-71.563728563,41.677052507],[-71.563827563,41.677275506],[-71.563843563,41.677424507],[-71.563759563,41.677610507],[-71.563606562,41.677722506],[-71.563347563,41.677822506],[-71.563301563,41.678021507],[-71.563240563,41.678360507],[-71.563187563,41.678753506],[-71.563133563,41.679119507],[-71.563385563,41.679091507],[-71.563721563,41.679034507],[-71.563972563,41.679001507],[-71.564018563,41.679203507],[-71.564171563,41.679537507],[-71.564354563,41.679929507],[-71.564537564,41.680267507],[-71.564674564,41.680589507],[-71.564804563,41.680793507],[-71.564430563,41.680923507],[-71.563393563,41.681896507],[-71.564041563,41.681747507],[-71.564789564,41.681568507],[-71.565811563,41.681338507],[-71.566200563,41.681248508],[-71.566551564,41.681168508],[-71.567306564,41.680994508],[-71.567383564,41.680974508],[-71.568222565,41.680775507],[-71.568573565,41.680700507],[-71.569199565,41.680605507],[-71.570038565,41.680514507],[-71.571014566,41.680394507],[-71.571709566,41.680314506],[-71.572693565,41.680211507],[-71.572899566,41.680189507],[-71.573265566,41.680144507],[-71.574249567,41.680091507],[-71.574875567,41.680036507],[-71.575318567,41.679983506],[-71.575470567,41.679964506],[-71.575973567,41.679913507],[-71.576286567,41.679861507],[-71.576538567,41.679774507],[-71.576317567,41.679788506],[-71.576263567,41.679105506],[-71.576240567,41.678461506],[-71.576225567,41.677894507],[-71.575889076,41.674359647],[-71.579907986,41.672947437],[-71.582422569,41.673135506],[-71.582622568,41.672987505],[-71.582622568,41.672982505],[-71.582614569,41.672856505],[-71.582724569,41.672758505],[-71.582705569,41.672709505],[-71.582514569,41.672394505],[-71.582536569,41.672311505],[-71.582763569,41.672130505],[-71.582773569,41.671913505],[-71.582647569,41.671650505],[-71.582622568,41.671536505],[-71.582606569,41.671247504],[-71.582632569,41.671065505],[-71.582684569,41.670968505],[-71.582728569,41.670910505],[-71.582755569,41.670849505],[-71.582757568,41.670772505],[-71.582728569,41.670684504],[-71.582771569,41.670604504],[-71.582866569,41.670541505],[-71.582957569,41.670512505],[-71.582985569,41.670470504],[-71.582977569,41.670416505],[-71.582932568,41.670358505],[-71.582718568,41.670287505],[-71.582459569,41.670311504],[-71.582367568,41.670286505],[-71.582367568,41.670151505],[-71.582405568,41.669992505],[-71.582245569,41.669829504],[-71.582214568,41.669645505],[-71.582214568,41.669469505],[-71.582237568,41.669253505],[-71.582337568,41.669116505],[-71.582344569,41.669066504],[-71.582344569,41.668814504],[-71.582390568,41.668673504],[-71.582374568,41.668354504],[-71.582237568,41.668204504],[-71.582214568,41.668128504],[-71.582199568,41.668074504],[-71.582253568,41.667983504],[-71.582306569,41.667945504],[-71.582466568,41.667811505],[-71.582565568,41.667795504],[-71.582657569,41.667780504],[-71.582680568,41.667761504],[-71.582916568,41.667576504],[-71.583092568,41.667401504],[-71.583267568,41.667289504],[-71.583397569,41.667227504],[-71.583481568,41.667045504],[-71.583618569,41.667024504],[-71.583786569,41.666939504],[-71.583977569,41.666823504],[-71.584045569,41.666758504],[-71.584076569,41.666645504],[-71.584168569,41.666512504],[-71.584320569,41.666320504],[-71.584534569,41.666184504],[-71.584709569,41.665991504],[-71.584839569,41.665844503],[-71.585060569,41.665695504],[-71.585274569,41.665515503],[-71.58550357,41.665365504],[-71.585625569,41.665259503],[-71.58571657,41.665171504],[-71.585884569,41.664992503],[-71.586059569,41.664736503],[-71.58625857,41.664529503],[-71.586487569,41.664348503],[-71.586677569,41.664245503],[-71.586716569,41.664239504],[-71.587067569,41.664114503],[-71.58715857,41.664031503],[-71.58725757,41.663966503],[-71.587379569,41.663855503],[-71.58748657,41.663767503],[-71.58762457,41.663633503],[-71.58763957,41.663611503],[-71.58766957,41.663605503],[-71.58779157,41.663558503],[-71.58784557,41.663543503],[-71.58795957,41.663477503],[-71.58808257,41.663411503],[-71.58813557,41.663379503],[-71.58815857,41.663351503],[-71.58824957,41.663187503],[-71.58830357,41.662992503],[-71.58840257,41.662765503],[-71.58852457,41.662573503],[-71.58866157,41.662435503],[-71.58875357,41.662162503],[-71.58873757,41.662005503],[-71.58873757,41.661771502],[-71.58887557,41.661421502],[-71.58900557,41.661189503],[-71.58906657,41.661061503],[-71.58927257,41.660822503],[-71.589363571,41.660759502],[-71.589287571,41.660753502],[-71.589210571,41.660748503],[-71.582756568,41.660838503],[-71.582166568,41.660846503],[-71.577286566,41.660925503],[-71.576294566,41.661006503],[-71.575447566,41.661079503],[-71.574722565,41.661131503],[-71.574249566,41.661160503],[-71.574129565,41.661179503],[-71.572716565,41.661221503],[-71.572545565,41.661225503],[-71.571781564,41.661229503],[-71.566127563,41.661338503],[-71.564403563,41.661371504],[-71.560756561,41.661485504]]]]}}"}, +{"type": "precinct", "typeId": 617, "areaId": 25707, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":46,\"NAME\":\"0617\",\"SHAPE_Length\":0.31998182887465,\"SHAPE_Area\":-0.0063354804834366},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.693322606,41.691037506],[-71.693329606,41.691145505],[-71.693359606,41.691545506],[-71.693405606,41.692080505],[-71.693413606,41.692138505],[-71.693456606,41.692816505],[-71.693459606,41.692862506],[-71.693474606,41.693042506],[-71.693504607,41.693389506],[-71.693527606,41.693662506],[-71.693580606,41.694377506],[-71.693585606,41.694458506],[-71.693611606,41.694952506],[-71.693649606,41.695442506],[-71.693695607,41.695941506],[-71.693748606,41.696620506],[-71.693802606,41.697325506],[-71.693855607,41.698081506],[-71.693893607,41.698508506],[-71.693894607,41.698593507],[-71.693901606,41.698683506],[-71.693909607,41.698764506],[-71.693916606,41.698863507],[-71.693924607,41.698957506],[-71.693939606,41.699047507],[-71.693970607,41.699262507],[-71.693993606,41.699365507],[-71.694016606,41.699473507],[-71.694046607,41.699576507],[-71.694069607,41.699679507],[-71.694130606,41.699889507],[-71.694168606,41.699992507],[-71.694198607,41.700103507],[-71.694275607,41.700331507],[-71.694313607,41.700402507],[-71.695160607,41.702220507],[-71.695175607,41.702264507],[-71.695892607,41.703734507],[-71.696419608,41.704834508],[-71.697174608,41.706387508],[-71.697495608,41.707087509],[-71.698178609,41.708491509],[-71.698738609,41.709656509],[-71.699089609,41.710400509],[-71.699356609,41.710952509],[-71.699364609,41.710974509],[-71.699669609,41.711606509],[-71.700066609,41.712416509],[-71.70011161,41.712519509],[-71.700203609,41.71272451],[-71.70024961,41.71284051],[-71.700294609,41.712965509],[-71.700340609,41.713081509],[-71.700455609,41.713474509],[-71.70046161,41.71350151],[-71.70048561,41.71360051],[-71.700531609,41.71385551],[-71.70056161,41.714012509],[-71.700585609,41.714169509],[-71.70060061,41.714327509],[-71.70061561,41.71445751],[-71.70063861,41.71484851],[-71.70063861,41.71677551],[-71.70063061,41.718104511],[-71.70063061,41.719567511],[-71.700623609,41.720085511],[-71.70062261,41.721040511],[-71.70061661,41.721396511],[-71.70061561,41.721420511],[-71.70060061,41.722954511],[-71.70058561,41.724859511],[-71.70058461,41.726739512],[-71.700954611,41.726730512],[-71.706096612,41.726612511],[-71.709737613,41.726536511],[-71.713058614,41.726507512],[-71.713107614,41.726466512],[-71.718285616,41.726347511],[-71.719574617,41.726320511],[-71.720100617,41.726307511],[-71.728340619,41.726135511],[-71.739508623,41.725978511],[-71.748054625,41.72578351],[-71.749049626,41.725750511],[-71.750851627,41.72573451],[-71.753030627,41.72566951],[-71.753098628,41.72566751],[-71.753176628,41.72564851],[-71.753247627,41.72562951],[-71.753394628,41.72558951],[-71.753473627,41.72557751],[-71.753749627,41.72556651],[-71.754031628,41.72556151],[-71.754301628,41.72558951],[-71.754346628,41.725614511],[-71.754574628,41.72560851],[-71.757782629,41.72552451],[-71.757879629,41.72552051],[-71.758435629,41.72550851],[-71.75896963,41.72550151],[-71.76075663,41.72545351],[-71.76177263,41.72543451],[-71.767260632,41.72526251],[-71.768379632,41.725247509],[-71.768562633,41.725245509],[-71.769778632,41.725189509],[-71.774944634,41.725057509],[-71.777031635,41.725004509],[-71.780449636,41.724910509],[-71.782226637,41.724861509],[-71.782539637,41.724849509],[-71.786736638,41.724697509],[-71.789520639,41.724594509],[-71.789642639,41.724583508],[-71.78970364,41.724571509],[-71.789675639,41.723768508],[-71.789592639,41.721362509],[-71.789565639,41.720560508],[-71.789563639,41.720504508],[-71.789557639,41.720338508],[-71.789534639,41.719675508],[-71.789527639,41.719454507],[-71.789476639,41.717950508],[-71.789323638,41.713440507],[-71.789274639,41.711995506],[-71.789272639,41.711937506],[-71.789244638,41.711145506],[-71.789163638,41.708770506],[-71.789136638,41.707979506],[-71.789128638,41.707733505],[-71.789128638,41.707728506],[-71.789063638,41.707629506],[-71.789070638,41.707561505],[-71.789078638,41.707489506],[-71.789117638,41.707408505],[-71.789069638,41.705972505],[-71.789032638,41.704927505],[-71.788923638,41.701792504],[-71.788887638,41.700747505],[-71.788804638,41.698344504],[-71.788718637,41.695702503],[-71.788715637,41.695606503],[-71.78871543,41.695598841],[-71.788710867,41.695463588],[-71.788692638,41.694951503],[-71.788685637,41.694743503],[-71.788663637,41.694101503],[-71.788598637,41.692175502],[-71.788579637,41.691600503],[-71.788577637,41.691534502],[-71.788575637,41.691487502],[-71.788540637,41.690472503],[-71.788432637,41.687287502],[-71.788397637,41.686226501],[-71.788381636,41.685776501],[-71.788346636,41.684713501],[-71.788336637,41.684429501],[-71.788321637,41.683980501],[-71.788225636,41.681149501],[-71.787938636,41.672655499],[-71.787843636,41.669825498],[-71.787842636,41.669802498],[-71.787810636,41.669130498],[-71.787712636,41.667047498],[-71.787686277,41.666468506],[-71.787682385,41.666387095],[-71.787681539,41.666367964],[-71.787680635,41.666353497],[-71.787643635,41.665523498],[-71.787589404,41.664284664],[-71.787428957,41.6606564],[-71.787376746,41.659383419],[-71.787288635,41.657298496],[-71.787239635,41.656119495],[-71.787243841,41.656095309],[-71.787244441,41.656076767],[-71.787244523,41.656073551],[-71.780487632,41.656194496],[-71.780449632,41.656200496],[-71.776092631,41.656288496],[-71.776014631,41.656280496],[-71.775901631,41.656279496],[-71.769669629,41.656425496],[-71.765480628,41.656568496],[-71.758962625,41.656719496],[-71.746543622,41.657151497],[-71.745840621,41.657183497],[-71.744158621,41.657260497],[-71.74120562,41.657397498],[-71.73962462,41.657360497],[-71.73950862,41.657382497],[-71.738247619,41.657607498],[-71.735579618,41.657574497],[-71.735512617,41.657574497],[-71.735430618,41.657528498],[-71.733897617,41.657576497],[-71.728848616,41.657667498],[-71.727881616,41.657684498],[-71.726832615,41.657750497],[-71.726571615,41.657766498],[-71.725863615,41.657769497],[-71.725378614,41.657774498],[-71.720295613,41.657864498],[-71.720105613,41.657872498],[-71.719860613,41.657880498],[-71.71082161,41.658149498],[-71.707097609,41.658232499],[-71.703650607,41.658309499],[-71.703539607,41.658312499],[-71.702830607,41.658328499],[-71.702144607,41.658343499],[-71.701641607,41.658354498],[-71.694939605,41.658503499],[-71.694939605,41.658640499],[-71.694939605,41.658728499],[-71.694946605,41.659514499],[-71.694954605,41.660076499],[-71.694959605,41.660843499],[-71.694969604,41.662084499],[-71.694971605,41.662587499],[-71.694978605,41.6638955],[-71.694984605,41.6648045],[-71.694985605,41.6662765],[-71.694999605,41.6673885],[-71.695007605,41.669072501],[-71.695007605,41.669185501],[-71.695015605,41.670752501],[-71.695023606,41.671328501],[-71.695030605,41.672093502],[-71.695030605,41.672530502],[-71.695046605,41.673556502],[-71.695046605,41.674385502],[-71.695030605,41.674750502],[-71.695015606,41.675034502],[-71.694969605,41.675337502],[-71.694961606,41.675436503],[-71.694908606,41.675793502],[-71.694901606,41.675820502],[-71.694885606,41.675978502],[-71.694855605,41.676179502],[-71.694794605,41.676579502],[-71.694763606,41.676855503],[-71.694717605,41.677126503],[-71.694693606,41.677342503],[-71.694687606,41.677392502],[-71.694603605,41.677849503],[-71.694557606,41.678228502],[-71.694390606,41.679399503],[-71.694160606,41.680998503],[-71.694122606,41.681229504],[-71.694087606,41.681499504],[-71.694000606,41.682159504],[-71.693825606,41.683307504],[-71.693741605,41.684020504],[-71.693726606,41.684088504],[-71.693726606,41.684133504],[-71.693718606,41.684170504],[-71.693660606,41.684585504],[-71.693642605,41.684716504],[-71.693626605,41.684798504],[-71.693535606,41.685457504],[-71.693413605,41.686217505],[-71.693369605,41.686600504],[-71.693367606,41.686618504],[-71.693321606,41.686912504],[-71.693321606,41.686957505],[-71.693314605,41.687029504],[-71.693268606,41.687301504],[-71.693245606,41.687508505],[-71.693230606,41.687585505],[-71.693214605,41.687658505],[-71.693207606,41.687712505],[-71.693199606,41.687762505],[-71.693192606,41.687820505],[-71.693191606,41.687897505],[-71.693192606,41.687937505],[-71.693184606,41.687983504],[-71.693176605,41.688037504],[-71.693176605,41.688086505],[-71.693169606,41.688150505],[-71.693169606,41.688208505],[-71.693161606,41.688262505],[-71.693161606,41.688406504],[-71.693169606,41.688478505],[-71.693161606,41.688542505],[-71.693161606,41.688744505],[-71.693169606,41.688816504],[-71.693169606,41.688888505],[-71.693176605,41.689005505],[-71.693176605,41.689127505],[-71.693184606,41.689248505],[-71.693237606,41.689927505],[-71.693298606,41.690668505],[-71.693322606,41.691037506]]]]}}"}, +{"type": "precinct", "typeId": 618, "areaId": 25708, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":47,\"NAME\":\"0618\",\"SHAPE_Length\":0.20202085890438,\"SHAPE_Area\":-0.0015381637580848},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.6742176,41.690983506],[-71.674317599,41.690959506],[-71.6759496,41.690961505],[-71.676048601,41.690963505],[-71.678100601,41.690974506],[-71.679245602,41.690983505],[-71.680733601,41.690985505],[-71.682236602,41.690981505],[-71.682373602,41.690989506],[-71.682503603,41.690997506],[-71.684624603,41.691015506],[-71.686218603,41.691019505],[-71.688133604,41.691028505],[-71.689506605,41.691041505],[-71.690857605,41.691041505],[-71.692040606,41.691040505],[-71.692185605,41.691041505],[-71.692825605,41.691040505],[-71.693085606,41.691038506],[-71.693230606,41.691035506],[-71.693276606,41.691038506],[-71.693322606,41.691037506],[-71.693298606,41.690668505],[-71.693237606,41.689927505],[-71.693184606,41.689248505],[-71.693176605,41.689127505],[-71.693176605,41.689005505],[-71.693169606,41.688888505],[-71.693169606,41.688816504],[-71.693161606,41.688744505],[-71.693161606,41.688542505],[-71.693169606,41.688478505],[-71.693161606,41.688406504],[-71.693161606,41.688262505],[-71.693169606,41.688208505],[-71.693169606,41.688150505],[-71.693176605,41.688086505],[-71.693176605,41.688037504],[-71.693184606,41.687983504],[-71.693192606,41.687937505],[-71.693191606,41.687897505],[-71.693192606,41.687820505],[-71.693199606,41.687762505],[-71.693207606,41.687712505],[-71.693214605,41.687658505],[-71.693230606,41.687585505],[-71.693245606,41.687508505],[-71.693268606,41.687301504],[-71.693314605,41.687029504],[-71.693321606,41.686957505],[-71.693321606,41.686912504],[-71.693367606,41.686618504],[-71.693369605,41.686600504],[-71.693413605,41.686217505],[-71.693535606,41.685457504],[-71.693626605,41.684798504],[-71.693642605,41.684716504],[-71.693660606,41.684585504],[-71.693718606,41.684170504],[-71.693726606,41.684133504],[-71.693726606,41.684088504],[-71.693741605,41.684020504],[-71.693825606,41.683307504],[-71.694000606,41.682159504],[-71.694087606,41.681499504],[-71.694122606,41.681229504],[-71.694160606,41.680998503],[-71.694390606,41.679399503],[-71.694557606,41.678228502],[-71.694603605,41.677849503],[-71.694687606,41.677392502],[-71.694693606,41.677342503],[-71.694717605,41.677126503],[-71.694763606,41.676855503],[-71.694794605,41.676579502],[-71.694855605,41.676179502],[-71.694885606,41.675978502],[-71.694901606,41.675820502],[-71.694908606,41.675793502],[-71.694961606,41.675436503],[-71.694969605,41.675337502],[-71.695015606,41.675034502],[-71.695030605,41.674750502],[-71.695046605,41.674385502],[-71.695046605,41.673556502],[-71.695030605,41.672530502],[-71.695030605,41.672093502],[-71.695023606,41.671328501],[-71.695015605,41.670752501],[-71.695007605,41.669185501],[-71.695007605,41.669072501],[-71.694999605,41.6673885],[-71.694985605,41.6662765],[-71.694984605,41.6648045],[-71.694978605,41.6638955],[-71.694971605,41.662587499],[-71.694969604,41.662084499],[-71.694959605,41.660843499],[-71.694954605,41.660076499],[-71.694946605,41.659514499],[-71.694939605,41.658728499],[-71.694939605,41.658640499],[-71.694939605,41.658503499],[-71.694824605,41.658509499],[-71.694704605,41.658517499],[-71.690983604,41.658574499],[-71.684812601,41.658670499],[-71.678997599,41.6587605],[-71.678945599,41.658764499],[-71.6788986,41.658769499],[-71.673813598,41.6587775],[-71.673551598,41.6587775],[-71.673302597,41.6587775],[-71.672743597,41.6587785],[-71.666130595,41.6587875],[-71.666107595,41.658764499],[-71.666069595,41.658746499],[-71.666039595,41.6587295],[-71.666008595,41.6587165],[-71.665970595,41.658708499],[-71.665939595,41.6587005],[-71.665909596,41.6587015],[-71.665871596,41.6586975],[-71.665428595,41.6587165],[-71.664795595,41.6587315],[-71.662941594,41.6588015],[-71.662453594,41.6588175],[-71.662255594,41.6588255],[-71.661614594,41.6588505],[-71.660080593,41.6588725],[-71.659386593,41.6588925],[-71.658195593,41.6589065],[-71.657677593,41.6589095],[-71.657081592,41.658919501],[-71.656502592,41.6589505],[-71.655937592,41.658977501],[-71.654900592,41.6590015],[-71.653869591,41.6590205],[-71.653412591,41.6590265],[-71.653221591,41.6590265],[-71.652847591,41.6590305],[-71.652290591,41.659052501],[-71.65161959,41.6590675],[-71.651573591,41.6590645],[-71.65093359,41.659074501],[-71.64960559,41.6591235],[-71.64953959,41.6591265],[-71.64821659,41.659186501],[-71.647080589,41.659231501],[-71.646498589,41.659231501],[-71.646286589,41.659231501],[-71.645676589,41.6592585],[-71.645202588,41.6592785],[-71.644630589,41.659300501],[-71.643090588,41.6593365],[-71.642921587,41.659340501],[-71.642258587,41.659378501],[-71.642052588,41.659387501],[-71.641781588,41.659395501],[-71.641480587,41.659404501],[-71.640838587,41.6594285],[-71.640343587,41.659444501],[-71.639984587,41.659457501],[-71.639740586,41.659453501],[-71.639481587,41.6594685],[-71.639436587,41.6594695],[-71.639008586,41.659479501],[-71.638542586,41.659494501],[-71.637512586,41.6595055],[-71.637032586,41.659511501],[-71.636316586,41.659528501],[-71.635933586,41.659536501],[-71.635536585,41.659541501],[-71.634926585,41.659559501],[-71.633141585,41.659600501],[-71.632324585,41.659615501],[-71.631653584,41.659630501],[-71.631104584,41.659647501],[-71.630486584,41.659657501],[-71.629914583,41.659674501],[-71.629509583,41.659675501],[-71.629478584,41.659675501],[-71.629120583,41.659692501],[-71.628840583,41.659693501],[-71.628673583,41.659665501],[-71.628553583,41.659672501],[-71.628294583,41.659627501],[-71.624709582,41.659700501],[-71.623065582,41.659753502],[-71.622972581,41.659755502],[-71.622875581,41.659747501],[-71.622375581,41.659738502],[-71.622378581,41.660224502],[-71.622223581,41.660393502],[-71.621647581,41.660866502],[-71.621410581,41.662005502],[-71.62049158,41.662897502],[-71.62062958,41.663552502],[-71.620502581,41.663942502],[-71.62041758,41.664553503],[-71.61979858,41.664912502],[-71.61928458,41.665217503],[-71.619241581,41.665241502],[-71.61929358,41.665264502],[-71.619515581,41.665360502],[-71.619820581,41.665484503],[-71.619995581,41.665552502],[-71.620461581,41.665785502],[-71.620575581,41.665845502],[-71.620690581,41.665910503],[-71.62084258,41.666010503],[-71.621117581,41.666198502],[-71.621506581,41.666495503],[-71.622101581,41.666963503],[-71.622627582,41.667361503],[-71.623055582,41.667644503],[-71.623352582,41.667826503],[-71.623741582,41.668047502],[-71.624237582,41.668301503],[-71.624871582,41.668634503],[-71.626381582,41.669432503],[-71.626451583,41.669468503],[-71.627365583,41.669932503],[-71.628258583,41.670362503],[-71.628906584,41.670671503],[-71.628987584,41.670709503],[-71.629440584,41.670920503],[-71.629807584,41.671087504],[-71.630226584,41.671231503],[-71.631294585,41.671553504],[-71.632095584,41.671787504],[-71.632378585,41.671871503],[-71.632492585,41.671904504],[-71.633324585,41.672124503],[-71.633705585,41.672209503],[-71.633949585,41.672249503],[-71.633980586,41.672253504],[-71.634399585,41.672320503],[-71.634728585,41.672362503],[-71.634827585,41.672373504],[-71.635132586,41.672415503],[-71.635933586,41.672541503],[-71.636025586,41.672557503],[-71.636124586,41.672573503],[-71.636215586,41.672598503],[-71.636291586,41.672614503],[-71.636360587,41.672635503],[-71.636437586,41.672656503],[-71.636536587,41.672685504],[-71.636643586,41.672709503],[-71.636756586,41.672748503],[-71.636848587,41.672781504],[-71.636963587,41.672828503],[-71.637070586,41.672875504],[-71.637184587,41.672922503],[-71.637299587,41.672965503],[-71.637413587,41.673011504],[-71.638153587,41.673296503],[-71.638527587,41.673441504],[-71.638634587,41.673465504],[-71.638733587,41.673495503],[-71.638832587,41.673528503],[-71.639046587,41.673586503],[-71.639153588,41.673620504],[-71.639351587,41.673660504],[-71.639397587,41.673673504],[-71.639450587,41.673685503],[-71.640172587,41.673813504],[-71.640373588,41.673849504],[-71.641113588,41.673971504],[-71.641861588,41.674107504],[-71.642494588,41.674203504],[-71.642685588,41.674232503],[-71.642822588,41.674261504],[-71.642960588,41.674284504],[-71.643089589,41.674304504],[-71.643234588,41.674332503],[-71.643372588,41.674361504],[-71.643509589,41.674384503],[-71.643662588,41.674421504],[-71.643814589,41.674449503],[-71.643974589,41.674482503],[-71.644554589,41.674617504],[-71.644790589,41.674670504],[-71.645126589,41.674748504],[-71.645279589,41.674780503],[-71.645493589,41.674830504],[-71.64609559,41.674978504],[-71.64762159,41.675334504],[-71.64775159,41.675367504],[-71.648430591,41.675509504],[-71.648979591,41.675645504],[-71.649567591,41.675776504],[-71.650169591,41.675920504],[-71.650864591,41.676079504],[-71.651482591,41.676223503],[-71.652054592,41.676358503],[-71.652328592,41.676419504],[-71.652510592,41.676461504],[-71.654045592,41.676812504],[-71.654839592,41.677001503],[-71.654872593,41.677010504],[-71.654915592,41.677021503],[-71.654991592,41.677042504],[-71.655068592,41.677067504],[-71.655174593,41.677092504],[-71.655373593,41.677150504],[-71.655487593,41.677193503],[-71.655594592,41.677240504],[-71.655708593,41.677287504],[-71.655800593,41.677321504],[-71.655891593,41.677350503],[-71.656006593,41.677397504],[-71.656075593,41.677431504],[-71.656120593,41.677457504],[-71.656355593,41.677569504],[-71.656554593,41.677665504],[-71.656731593,41.677749504],[-71.657326594,41.678055504],[-71.657509593,41.678137504],[-71.657997593,41.678364503],[-71.658562594,41.678648504],[-71.659157594,41.678932504],[-71.659263594,41.678988504],[-71.659363594,41.679048504],[-71.659469594,41.679105504],[-71.659675594,41.679230504],[-71.659775594,41.679300504],[-71.659851594,41.679352504],[-71.660003594,41.679466504],[-71.660744594,41.680016504],[-71.661408595,41.680514504],[-71.662414595,41.681270504],[-71.662537595,41.681357504],[-71.662597595,41.681396504],[-71.662666596,41.681435504],[-71.662727596,41.681474504],[-71.662796595,41.681509504],[-71.662865596,41.681539505],[-71.662926596,41.681569504],[-71.662994595,41.681590504],[-71.663101596,41.681628504],[-71.663208596,41.681648504],[-71.663323595,41.681672505],[-71.663437595,41.681687504],[-71.663551595,41.681698504],[-71.663673596,41.681700504],[-71.663765595,41.681707504],[-71.663864595,41.681705504],[-71.663956596,41.681711505],[-71.664871596,41.681699504],[-71.665649596,41.681681504],[-71.666840597,41.681667504],[-71.666916597,41.681670504],[-71.667061596,41.681684504],[-71.667259597,41.681689504],[-71.667351597,41.681696505],[-71.667541597,41.681718504],[-71.667625597,41.681734505],[-71.667732597,41.681750504],[-71.667839597,41.681774505],[-71.667938598,41.681799504],[-71.667992597,41.681820504],[-71.668053597,41.681837504],[-71.668106597,41.681854504],[-71.668282597,41.681926504],[-71.668449597,41.682012504],[-71.668663597,41.682147504],[-71.668694598,41.682173504],[-71.668724597,41.682195504],[-71.668777597,41.682239505],[-71.668846597,41.682305504],[-71.668869598,41.682336505],[-71.668922597,41.682380504],[-71.668976597,41.682446504],[-71.668981597,41.682451504],[-71.669006598,41.682477505],[-71.669372598,41.682865505],[-71.669861598,41.683389505],[-71.670082598,41.683618505],[-71.670555598,41.684120504],[-71.670632598,41.684209505],[-71.670799598,41.684389504],[-71.670967598,41.684575505],[-71.671043598,41.684649505],[-71.671196598,41.684799504],[-71.671272599,41.684869505],[-71.671318598,41.684904505],[-71.671356598,41.684935504],[-71.671440598,41.684996504],[-71.671524599,41.685053504],[-71.671623599,41.685100505],[-71.671715599,41.685152504],[-71.671982598,41.685263505],[-71.672074598,41.685296505],[-71.672165599,41.685321505],[-71.672256599,41.685351505],[-71.672394599,41.685393505],[-71.672493599,41.685426505],[-71.672753599,41.685501504],[-71.673218599,41.685630505],[-71.673889599,41.685813504],[-71.673988599,41.685842505],[-71.674064599,41.685858505],[-71.6742936,41.685920505],[-71.674530599,41.685969504],[-71.6746986,41.685992505],[-71.674866599,41.686006505],[-71.674942599,41.686009504],[-71.675018599,41.686007504],[-71.6750876,41.686010505],[-71.6755756,41.686025505],[-71.6760336,41.686028504],[-71.6761406,41.686026505],[-71.6770326,41.686032505],[-71.6772466,41.686027504],[-71.6773226,41.686030504],[-71.6773996,41.686024505],[-71.677468601,41.686017505],[-71.677528601,41.686007504],[-71.6776586,41.685995505],[-71.677742601,41.685976505],[-71.677719601,41.686061505],[-71.677719601,41.686120505],[-71.677681601,41.686170505],[-71.6776356,41.686216505],[-71.677582601,41.686267505],[-71.677544601,41.686331505],[-71.677490601,41.686377505],[-71.677429601,41.686415505],[-71.6772696,41.686459505],[-71.677216601,41.686487505],[-71.677139601,41.686516504],[-71.6769416,41.686557505],[-71.6768426,41.686581505],[-71.676750601,41.686611505],[-71.6766896,41.686648505],[-71.6766366,41.686699505],[-71.676575601,41.686754505],[-71.6764836,41.686783505],[-71.6763846,41.686799505],[-71.6763006,41.686819505],[-71.6762246,41.686852505],[-71.6761406,41.686877505],[-71.6760336,41.686906505],[-71.6759646,41.686931505],[-71.6759116,41.686986505],[-71.6758586,41.687050505],[-71.6758046,41.687105505],[-71.6757356,41.687116505],[-71.6756526,41.687109505],[-71.6755686,41.687133505],[-71.6755076,41.687184505],[-71.6754536,41.687244505],[-71.6754156,41.687313505],[-71.6754006,41.687380505],[-71.675369599,41.687440505],[-71.6753396,41.687472505],[-71.6753166,41.687490505],[-71.6752706,41.687537505],[-71.6752176,41.687578505],[-71.6751636,41.687634505],[-71.675118599,41.687693505],[-71.6750876,41.687739505],[-71.674980599,41.687850505],[-71.6749496,41.687900505],[-71.6749196,41.687964505],[-71.6748586,41.688109505],[-71.6748286,41.688177505],[-71.674805599,41.688250505],[-71.6747896,41.688313505],[-71.6747596,41.688458505],[-71.6747516,41.688530505],[-71.6747366,41.688603505],[-71.6747446,41.688675506],[-71.6747596,41.688751506],[-71.6747826,41.688827505],[-71.6747746,41.688899505],[-71.6747526,41.688967506],[-71.6747136,41.689022506],[-71.6746836,41.689081506],[-71.6746756,41.689136505],[-71.6746756,41.689325505],[-71.6746826,41.689383505],[-71.6746986,41.689446505],[-71.6746526,41.689505505],[-71.6745996,41.689556506],[-71.6745606,41.689611506],[-71.674553599,41.689679505],[-71.674553599,41.689746506],[-71.6745616,41.689809506],[-71.674515599,41.689860506],[-71.6744696,41.689915506],[-71.6744466,41.689978506],[-71.6744466,41.690046505],[-71.6744396,41.690114506],[-71.6744386,41.690181505],[-71.6744396,41.690240505],[-71.6744396,41.690303505],[-71.6744616,41.690370506],[-71.6744846,41.690419505],[-71.674515599,41.690472506],[-71.6745386,41.690526506],[-71.6745686,41.690592505],[-71.6745836,41.690655506],[-71.674553599,41.690692506],[-71.674492599,41.690729505],[-71.674339599,41.690769505],[-71.6742636,41.690802506],[-71.6742096,41.690853506],[-71.6742176,41.690983506]]]]}}"}, +{"type": "precinct", "typeId": 701, "areaId": 25717, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":56,\"NAME\":\"0701\",\"SHAPE_Length\":0.047796850801253,\"SHAPE_Area\":-0.00010639190209255},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.44131853,41.804758535],[-71.44218253,41.805825535],[-71.44225653,41.806008535],[-71.44266553,41.807028536],[-71.44290253,41.807003535],[-71.44367753,41.806918535],[-71.444681531,41.806822535],[-71.445007531,41.806790535],[-71.447533531,41.806595535],[-71.448161532,41.806544535],[-71.448891532,41.806485535],[-71.450211533,41.806359535],[-71.451736533,41.806256535],[-71.452205533,41.806207535],[-71.452332533,41.806195535],[-71.454941535,41.805890535],[-71.457214535,41.805626535],[-71.457770535,41.805477534],[-71.457873535,41.805490535],[-71.459473535,41.805378534],[-71.458923535,41.805184534],[-71.458130535,41.804905535],[-71.458115535,41.804505534],[-71.458138535,41.804268534],[-71.458244535,41.803662534],[-71.458344535,41.803097534],[-71.458405535,41.802739534],[-71.458412536,41.802529534],[-71.458374535,41.802159534],[-71.458351535,41.801987534],[-71.458260535,41.801384534],[-71.458199535,41.801018534],[-71.458160535,41.800717533],[-71.458061535,41.800045534],[-71.457764535,41.800026534],[-71.455330534,41.799942533],[-71.454636534,41.799908534],[-71.453690534,41.799855534],[-71.452217533,41.799797534],[-71.451828533,41.799775534],[-71.451462533,41.799710534],[-71.450562532,41.799485534],[-71.449463532,41.799134534],[-71.448639532,41.798844533],[-71.447922531,41.798603534],[-71.447853531,41.798725534],[-71.447823532,41.798787533],[-71.446144531,41.798584534],[-71.444893531,41.798428534],[-71.444602531,41.798414534],[-71.44439553,41.798814534],[-71.444233531,41.799127534],[-71.44415053,41.799287534],[-71.44395353,41.799741534],[-71.44388953,41.799889534],[-71.44374153,41.800301534],[-71.443531531,41.800886534],[-71.44331953,41.801476535],[-71.44327153,41.801610535],[-71.44301953,41.802625535],[-71.44299353,41.802750534],[-71.44295553,41.802881534],[-71.44253953,41.804612535],[-71.44246753,41.804967535],[-71.44246153,41.804996535],[-71.44131853,41.804758535]]]]}}"}, +{"type": "precinct", "typeId": 702, "areaId": 25715, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":54,\"NAME\":\"0702\",\"SHAPE_Length\":0.082486048440714,\"SHAPE_Area\":-0.00015271907611294},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.444602531,41.798414534],[-71.444893531,41.798428534],[-71.446144531,41.798584534],[-71.447823532,41.798787533],[-71.447853531,41.798725534],[-71.447922531,41.798603534],[-71.448639532,41.798844533],[-71.449463532,41.799134534],[-71.450562532,41.799485534],[-71.451462533,41.799710534],[-71.451828533,41.799775534],[-71.452217533,41.799797534],[-71.453690534,41.799855534],[-71.454636534,41.799908534],[-71.455330534,41.799942533],[-71.457764535,41.800026534],[-71.458061535,41.800045534],[-71.458160535,41.800717533],[-71.458199535,41.801018534],[-71.458260535,41.801384534],[-71.458351535,41.801987534],[-71.458374535,41.802159534],[-71.458412536,41.802529534],[-71.458405535,41.802739534],[-71.458344535,41.803097534],[-71.458244535,41.803662534],[-71.458138535,41.804268534],[-71.458115535,41.804505534],[-71.458130535,41.804905535],[-71.458923535,41.805184534],[-71.459473535,41.805378534],[-71.461334536,41.805329535],[-71.462069536,41.805070534],[-71.462282536,41.804990534],[-71.462306537,41.804973534],[-71.462361536,41.804974534],[-71.462448537,41.804993534],[-71.462627536,41.805059535],[-71.462797537,41.805140535],[-71.462878537,41.805171534],[-71.463008537,41.805183534],[-71.463081537,41.805147534],[-71.463151537,41.805123534],[-71.463246537,41.805102535],[-71.463353537,41.805086534],[-71.463665537,41.805054534],[-71.464315537,41.804171534],[-71.466027538,41.803757534],[-71.466167538,41.802660534],[-71.466106538,41.802698534],[-71.466026538,41.802727534],[-71.465928537,41.802744533],[-71.465731537,41.802756534],[-71.465647538,41.802753534],[-71.465357537,41.802672534],[-71.465221537,41.802642534],[-71.465092537,41.802623534],[-71.464975537,41.802617534],[-71.464761537,41.802617534],[-71.464666537,41.802605534],[-71.464567537,41.802598534],[-71.464469537,41.802598534],[-71.464379537,41.802603534],[-71.464296537,41.802625534],[-71.464218537,41.802664534],[-71.464152537,41.802703534],[-71.464108537,41.802751534],[-71.464147537,41.802800534],[-71.464207537,41.802861533],[-71.464269537,41.802901534],[-71.464419538,41.802983534],[-71.464481537,41.803039534],[-71.464537537,41.803103534],[-71.464585537,41.803169534],[-71.464621537,41.803233534],[-71.464643537,41.803297534],[-71.464648537,41.803352534],[-71.464630537,41.803462534],[-71.464599537,41.803516534],[-71.464507537,41.803530534],[-71.464417537,41.803532534],[-71.464319537,41.803472534],[-71.464222537,41.803450534],[-71.464148537,41.803460534],[-71.463999537,41.803532534],[-71.463963537,41.803583534],[-71.464039537,41.803686534],[-71.464070537,41.803744534],[-71.464042537,41.803819534],[-71.464092537,41.803832534],[-71.464349537,41.803834534],[-71.464425537,41.803864534],[-71.464451537,41.803897534],[-71.464411537,41.803946534],[-71.464346537,41.803973534],[-71.464255537,41.803990535],[-71.463918537,41.804021534],[-71.463287537,41.804033534],[-71.463056536,41.804062534],[-71.462810537,41.804104534],[-71.462712537,41.804124534],[-71.462644537,41.804152534],[-71.462600537,41.804200534],[-71.462580537,41.804267534],[-71.462577537,41.804342535],[-71.462581537,41.804565534],[-71.462571536,41.804627534],[-71.462532536,41.804683534],[-71.462466537,41.804724534],[-71.462386537,41.804754534],[-71.462303536,41.804774534],[-71.462215537,41.804782534],[-71.462135537,41.804782534],[-71.461932536,41.804748535],[-71.461824537,41.804725534],[-71.461719536,41.804691535],[-71.461631536,41.804653535],[-71.461530537,41.804609534],[-71.461427536,41.804580534],[-71.461318537,41.804562534],[-71.461216536,41.804536535],[-71.461132536,41.804498535],[-71.461000536,41.804368534],[-71.460903536,41.804303535],[-71.460790536,41.804246534],[-71.460675535,41.804198534],[-71.460565536,41.804164535],[-71.460444536,41.804126535],[-71.460330536,41.804099534],[-71.460226536,41.804063534],[-71.460135536,41.804007535],[-71.459883536,41.803796535],[-71.459787536,41.803726534],[-71.459577536,41.803608534],[-71.459342536,41.803457534],[-71.459292535,41.803418534],[-71.459155535,41.803348535],[-71.459104535,41.803294534],[-71.459072536,41.803228534],[-71.458988535,41.802934534],[-71.458960535,41.802871534],[-71.458918536,41.802796534],[-71.458878536,41.802751534],[-71.458778535,41.802743534],[-71.458702536,41.802749534],[-71.458701535,41.802637534],[-71.458683536,41.802575534],[-71.458689535,41.802520534],[-71.458707535,41.802465534],[-71.458746535,41.802419534],[-71.458792535,41.802294534],[-71.458801536,41.802232534],[-71.458824535,41.802174534],[-71.458863535,41.802123534],[-71.458975536,41.802034534],[-71.459037535,41.801995534],[-71.459073536,41.801958534],[-71.459096535,41.801945533],[-71.459109535,41.801998534],[-71.459085535,41.802054534],[-71.459067535,41.802074534],[-71.459034536,41.802137534],[-71.459033536,41.802197534],[-71.459048535,41.802265534],[-71.459056536,41.802378534],[-71.459083535,41.802391534],[-71.459152536,41.802373534],[-71.459212536,41.802333534],[-71.459275535,41.802293534],[-71.459338535,41.802236534],[-71.459392535,41.802168534],[-71.459422536,41.802110534],[-71.459467535,41.801991534],[-71.459497536,41.801870534],[-71.459504536,41.801802534],[-71.459502536,41.801670534],[-71.459478536,41.801595533],[-71.459439536,41.801531534],[-71.459415535,41.801476534],[-71.459314535,41.801305534],[-71.459244535,41.801066534],[-71.459129535,41.800765534],[-71.459082535,41.800611534],[-71.459078535,41.800535534],[-71.459080535,41.800454534],[-71.459098535,41.800285534],[-71.459101535,41.800208534],[-71.459092535,41.800058533],[-71.459077535,41.799985534],[-71.459050535,41.799784533],[-71.458998535,41.799550533],[-71.458995535,41.799476533],[-71.459002535,41.799414533],[-71.459019535,41.799359533],[-71.459046535,41.799302533],[-71.459117535,41.799205533],[-71.459202535,41.799138533],[-71.459356535,41.799079533],[-71.459555535,41.799077534],[-71.459722535,41.799066533],[-71.459871536,41.799065533],[-71.460027536,41.799081533],[-71.460209535,41.799112534],[-71.460299536,41.799122533],[-71.460385535,41.799137533],[-71.460467535,41.799165533],[-71.460637535,41.799234533],[-71.460807536,41.799310534],[-71.461029535,41.799430533],[-71.461114536,41.799458533],[-71.461205536,41.799470533],[-71.461389536,41.799475533],[-71.461563536,41.799465534],[-71.461737536,41.799431533],[-71.461917536,41.799381533],[-71.462000537,41.799336533],[-71.462087536,41.799281533],[-71.462167536,41.799224533],[-71.462220536,41.799154534],[-71.462262536,41.798979534],[-71.462276536,41.798884533],[-71.462285536,41.798617533],[-71.462300536,41.798526533],[-71.462303536,41.798492534],[-71.462307536,41.798438533],[-71.462307536,41.798352533],[-71.462322536,41.798188533],[-71.462307536,41.798104533],[-71.462259536,41.798020533],[-71.462205536,41.797938533],[-71.461959536,41.797635533],[-71.461864536,41.797506533],[-71.461648536,41.797259533],[-71.461614536,41.797197533],[-71.461545536,41.797092533],[-71.461516535,41.797031532],[-71.461470536,41.796977533],[-71.461410536,41.796929533],[-71.461337536,41.796885533],[-71.461185535,41.796803533],[-71.461117536,41.796753533],[-71.461082536,41.796699532],[-71.461072536,41.796644533],[-71.461087535,41.796584532],[-71.461124535,41.796530533],[-71.461215536,41.796417533],[-71.461252536,41.796362533],[-71.461279536,41.796301533],[-71.461297536,41.796246533],[-71.461306536,41.796181533],[-71.461298536,41.796123533],[-71.461271536,41.796002533],[-71.461135536,41.795584533],[-71.461111535,41.795541533],[-71.461071535,41.795466533],[-71.460947536,41.795303533],[-71.460919536,41.795251533],[-71.460915535,41.795188533],[-71.460931535,41.795132533],[-71.460930535,41.795068532],[-71.460816535,41.794688533],[-71.460735535,41.794389532],[-71.460710536,41.794334533],[-71.460505535,41.794087532],[-71.460303536,41.793903532],[-71.460194535,41.793790533],[-71.460073535,41.793697532],[-71.460024535,41.793652533],[-71.459980535,41.793598532],[-71.459918535,41.793565532],[-71.459854535,41.793461532],[-71.459830535,41.793459533],[-71.459621535,41.793538533],[-71.459550535,41.793558533],[-71.459532535,41.793574533],[-71.459555535,41.793477533],[-71.459548535,41.793479533],[-71.459497535,41.793489532],[-71.459499535,41.793409532],[-71.459515535,41.793301532],[-71.459547535,41.793280532],[-71.459599535,41.793232532],[-71.459699535,41.793168533],[-71.459764535,41.793156532],[-71.459794535,41.793126532],[-71.459882535,41.792997532],[-71.459583534,41.790846532],[-71.459563535,41.790730532],[-71.459542535,41.790594532],[-71.459494535,41.790464532],[-71.459401535,41.790275532],[-71.459325535,41.790158532],[-71.459253534,41.790062532],[-71.459203535,41.790007532],[-71.459185535,41.789952531],[-71.459190535,41.789891532],[-71.459200535,41.789820531],[-71.459214534,41.789728532],[-71.459223535,41.789663531],[-71.459222535,41.789480532],[-71.459228535,41.789411531],[-71.459244535,41.789350531],[-71.459329535,41.789239531],[-71.459364535,41.789181531],[-71.459388534,41.789115531],[-71.459391534,41.789040531],[-71.459372534,41.788931532],[-71.459349534,41.788851531],[-71.459322535,41.788795532],[-71.459254534,41.788701532],[-71.459158534,41.788593531],[-71.459116534,41.788539531],[-71.459083534,41.788484532],[-71.459067535,41.788423531],[-71.459069535,41.788349532],[-71.459089535,41.788275531],[-71.459140534,41.788210531],[-71.459212535,41.788165531],[-71.459363535,41.788085531],[-71.459395535,41.788068531],[-71.459435535,41.788034531],[-71.459439535,41.787992531],[-71.459426535,41.787939531],[-71.459380535,41.787894531],[-71.459307535,41.787863532],[-71.459099534,41.787806531],[-71.459028535,41.787768531],[-71.458967534,41.787700531],[-71.458881534,41.787585531],[-71.458665535,41.787171531],[-71.458613534,41.787094531],[-71.458518534,41.786984531],[-71.458463534,41.786941531],[-71.458405534,41.786905531],[-71.458332535,41.786808531],[-71.458304534,41.786758531],[-71.458244534,41.786692531],[-71.458130534,41.786625531],[-71.458082534,41.786563531],[-71.458022535,41.786427531],[-71.457968534,41.786375531],[-71.457850534,41.786291531],[-71.457776534,41.786266531],[-71.457696534,41.786247531],[-71.457611534,41.786180531],[-71.457513534,41.786100531],[-71.456170534,41.787089531],[-71.456061533,41.787155531],[-71.455919533,41.787241531],[-71.455362533,41.787649532],[-71.454706534,41.788129531],[-71.454315533,41.788415531],[-71.453995533,41.788646531],[-71.452441533,41.789767532],[-71.451611532,41.790366532],[-71.450124532,41.791603532],[-71.449475532,41.792129532],[-71.449382532,41.792221532],[-71.449052532,41.792548532],[-71.448647531,41.792949533],[-71.448359531,41.793266532],[-71.447029531,41.794726533],[-71.446560531,41.795343533],[-71.446158531,41.795922533],[-71.44546953,41.796879533],[-71.44505853,41.797533534],[-71.444602531,41.798414534]]]]}}"}, +{"type": "precinct", "typeId": 703, "areaId": 25716, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":55,\"NAME\":\"0703\",\"SHAPE_Length\":0.0945283451521,\"SHAPE_Area\":-0.00026447757241051},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.457513534,41.786100531],[-71.457611534,41.786180531],[-71.457696534,41.786247531],[-71.457776534,41.786266531],[-71.457850534,41.786291531],[-71.457968534,41.786375531],[-71.458022535,41.786427531],[-71.458082534,41.786563531],[-71.458130534,41.786625531],[-71.458244534,41.786692531],[-71.458304534,41.786758531],[-71.458332535,41.786808531],[-71.458405534,41.786905531],[-71.458463534,41.786941531],[-71.458518534,41.786984531],[-71.458613534,41.787094531],[-71.458665535,41.787171531],[-71.458881534,41.787585531],[-71.458967534,41.787700531],[-71.459028535,41.787768531],[-71.459099534,41.787806531],[-71.459307535,41.787863532],[-71.459380535,41.787894531],[-71.459426535,41.787939531],[-71.459439535,41.787992531],[-71.459435535,41.788034531],[-71.459395535,41.788068531],[-71.459363535,41.788085531],[-71.459212535,41.788165531],[-71.459140534,41.788210531],[-71.459089535,41.788275531],[-71.459069535,41.788349532],[-71.459067535,41.788423531],[-71.459083534,41.788484532],[-71.459116534,41.788539531],[-71.459158534,41.788593531],[-71.459254534,41.788701532],[-71.459322535,41.788795532],[-71.459349534,41.788851531],[-71.459372534,41.788931532],[-71.459391534,41.789040531],[-71.459388534,41.789115531],[-71.459364535,41.789181531],[-71.459329535,41.789239531],[-71.459244535,41.789350531],[-71.459228535,41.789411531],[-71.459222535,41.789480532],[-71.459223535,41.789663531],[-71.459214534,41.789728532],[-71.459200535,41.789820531],[-71.459190535,41.789891532],[-71.459185535,41.789952531],[-71.459203535,41.790007532],[-71.459253534,41.790062532],[-71.459325535,41.790158532],[-71.459401535,41.790275532],[-71.459494535,41.790464532],[-71.459542535,41.790594532],[-71.459563535,41.790730532],[-71.459583534,41.790846532],[-71.459882535,41.792997532],[-71.459794535,41.793126532],[-71.459764535,41.793156532],[-71.459699535,41.793168533],[-71.459599535,41.793232532],[-71.459547535,41.793280532],[-71.459515535,41.793301532],[-71.459499535,41.793409532],[-71.459497535,41.793489532],[-71.459548535,41.793479533],[-71.459555535,41.793477533],[-71.459532535,41.793574533],[-71.459550535,41.793558533],[-71.459621535,41.793538533],[-71.459830535,41.793459533],[-71.459854535,41.793461532],[-71.459918535,41.793565532],[-71.459980535,41.793598532],[-71.460024535,41.793652533],[-71.460073535,41.793697532],[-71.460194535,41.793790533],[-71.460303536,41.793903532],[-71.460505535,41.794087532],[-71.460710536,41.794334533],[-71.460735535,41.794389532],[-71.460816535,41.794688533],[-71.460930535,41.795068532],[-71.460931535,41.795132533],[-71.460915535,41.795188533],[-71.460919536,41.795251533],[-71.460947536,41.795303533],[-71.461071535,41.795466533],[-71.461111535,41.795541533],[-71.461135536,41.795584533],[-71.461271536,41.796002533],[-71.461298536,41.796123533],[-71.461306536,41.796181533],[-71.461297536,41.796246533],[-71.461279536,41.796301533],[-71.461252536,41.796362533],[-71.461215536,41.796417533],[-71.461124535,41.796530533],[-71.461087535,41.796584532],[-71.461072536,41.796644533],[-71.461082536,41.796699532],[-71.461117536,41.796753533],[-71.461185535,41.796803533],[-71.461337536,41.796885533],[-71.461410536,41.796929533],[-71.461470536,41.796977533],[-71.461516535,41.797031532],[-71.461545536,41.797092533],[-71.461614536,41.797197533],[-71.461648536,41.797259533],[-71.461864536,41.797506533],[-71.461959536,41.797635533],[-71.462205536,41.797938533],[-71.462259536,41.798020533],[-71.462307536,41.798104533],[-71.462322536,41.798188533],[-71.462307536,41.798352533],[-71.462307536,41.798438533],[-71.462303536,41.798492534],[-71.462300536,41.798526533],[-71.462285536,41.798617533],[-71.462276536,41.798884533],[-71.462262536,41.798979534],[-71.462220536,41.799154534],[-71.462167536,41.799224533],[-71.462087536,41.799281533],[-71.462000537,41.799336533],[-71.461917536,41.799381533],[-71.461737536,41.799431533],[-71.461563536,41.799465534],[-71.461389536,41.799475533],[-71.461205536,41.799470533],[-71.461114536,41.799458533],[-71.461029535,41.799430533],[-71.460807536,41.799310534],[-71.460637535,41.799234533],[-71.460467535,41.799165533],[-71.460385535,41.799137533],[-71.460299536,41.799122533],[-71.460209535,41.799112534],[-71.460027536,41.799081533],[-71.459871536,41.799065533],[-71.459722535,41.799066533],[-71.459555535,41.799077534],[-71.459356535,41.799079533],[-71.459202535,41.799138533],[-71.459117535,41.799205533],[-71.459046535,41.799302533],[-71.459019535,41.799359533],[-71.459002535,41.799414533],[-71.458995535,41.799476533],[-71.458998535,41.799550533],[-71.459050535,41.799784533],[-71.459077535,41.799985534],[-71.459092535,41.800058533],[-71.459101535,41.800208534],[-71.459098535,41.800285534],[-71.459080535,41.800454534],[-71.459078535,41.800535534],[-71.459082535,41.800611534],[-71.459129535,41.800765534],[-71.459244535,41.801066534],[-71.459314535,41.801305534],[-71.459415535,41.801476534],[-71.459439536,41.801531534],[-71.459478536,41.801595533],[-71.459502536,41.801670534],[-71.459504536,41.801802534],[-71.459497536,41.801870534],[-71.459467535,41.801991534],[-71.459422536,41.802110534],[-71.459392535,41.802168534],[-71.459338535,41.802236534],[-71.459275535,41.802293534],[-71.459212536,41.802333534],[-71.459152536,41.802373534],[-71.459083535,41.802391534],[-71.459056536,41.802378534],[-71.459048535,41.802265534],[-71.459033536,41.802197534],[-71.459034536,41.802137534],[-71.459067535,41.802074534],[-71.459085535,41.802054534],[-71.459109535,41.801998534],[-71.459096535,41.801945533],[-71.459073536,41.801958534],[-71.459037535,41.801995534],[-71.458975536,41.802034534],[-71.458863535,41.802123534],[-71.458824535,41.802174534],[-71.458801536,41.802232534],[-71.458792535,41.802294534],[-71.458746535,41.802419534],[-71.458707535,41.802465534],[-71.458689535,41.802520534],[-71.458683536,41.802575534],[-71.458701535,41.802637534],[-71.458702536,41.802749534],[-71.458778535,41.802743534],[-71.458878536,41.802751534],[-71.458918536,41.802796534],[-71.458960535,41.802871534],[-71.458988535,41.802934534],[-71.459072536,41.803228534],[-71.459104535,41.803294534],[-71.459155535,41.803348535],[-71.459292535,41.803418534],[-71.459342536,41.803457534],[-71.459577536,41.803608534],[-71.459787536,41.803726534],[-71.459883536,41.803796535],[-71.460135536,41.804007535],[-71.460226536,41.804063534],[-71.460330536,41.804099534],[-71.460444536,41.804126535],[-71.460565536,41.804164535],[-71.460675535,41.804198534],[-71.460790536,41.804246534],[-71.460903536,41.804303535],[-71.461000536,41.804368534],[-71.461132536,41.804498535],[-71.461216536,41.804536535],[-71.461318537,41.804562534],[-71.461427536,41.804580534],[-71.461530537,41.804609534],[-71.461631536,41.804653535],[-71.461719536,41.804691535],[-71.461824537,41.804725534],[-71.461932536,41.804748535],[-71.462135537,41.804782534],[-71.462215537,41.804782534],[-71.462303536,41.804774534],[-71.462386537,41.804754534],[-71.462466537,41.804724534],[-71.462532536,41.804683534],[-71.462571536,41.804627534],[-71.462581537,41.804565534],[-71.462577537,41.804342535],[-71.462580537,41.804267534],[-71.462600537,41.804200534],[-71.462644537,41.804152534],[-71.462712537,41.804124534],[-71.462810537,41.804104534],[-71.463056536,41.804062534],[-71.463287537,41.804033534],[-71.463918537,41.804021534],[-71.464255537,41.803990535],[-71.464346537,41.803973534],[-71.464411537,41.803946534],[-71.464451537,41.803897534],[-71.464425537,41.803864534],[-71.464349537,41.803834534],[-71.464092537,41.803832534],[-71.464042537,41.803819534],[-71.464070537,41.803744534],[-71.464039537,41.803686534],[-71.463963537,41.803583534],[-71.463999537,41.803532534],[-71.464148537,41.803460534],[-71.464222537,41.803450534],[-71.464319537,41.803472534],[-71.464417537,41.803532534],[-71.464507537,41.803530534],[-71.464599537,41.803516534],[-71.464630537,41.803462534],[-71.464648537,41.803352534],[-71.464643537,41.803297534],[-71.464621537,41.803233534],[-71.464585537,41.803169534],[-71.464537537,41.803103534],[-71.464481537,41.803039534],[-71.464419538,41.802983534],[-71.464269537,41.802901534],[-71.464207537,41.802861533],[-71.464147537,41.802800534],[-71.464108537,41.802751534],[-71.464152537,41.802703534],[-71.464218537,41.802664534],[-71.464296537,41.802625534],[-71.464379537,41.802603534],[-71.464469537,41.802598534],[-71.464567537,41.802598534],[-71.464666537,41.802605534],[-71.464761537,41.802617534],[-71.464975537,41.802617534],[-71.465092537,41.802623534],[-71.465221537,41.802642534],[-71.465357537,41.802672534],[-71.465647538,41.802753534],[-71.465731537,41.802756534],[-71.465928537,41.802744533],[-71.466026538,41.802727534],[-71.466106538,41.802698534],[-71.466167538,41.802660534],[-71.466209538,41.802610533],[-71.466292537,41.802421534],[-71.466338538,41.802359534],[-71.466461538,41.802236534],[-71.466509537,41.802170534],[-71.466546537,41.802104533],[-71.466582538,41.801966533],[-71.466590538,41.801901534],[-71.466623537,41.801757534],[-71.466650538,41.801687534],[-71.466685537,41.801624534],[-71.466804538,41.801524534],[-71.466851538,41.801471534],[-71.466871538,41.801415534],[-71.466854538,41.800627533],[-71.466859537,41.800539534],[-71.466873538,41.800467533],[-71.466893538,41.800410533],[-71.466968538,41.800291533],[-71.466993538,41.800237533],[-71.467027538,41.800093533],[-71.467022538,41.800025533],[-71.466940538,41.799882533],[-71.466924538,41.799762533],[-71.466871538,41.799650533],[-71.466869538,41.799536533],[-71.466881537,41.799502533],[-71.466905538,41.799500533],[-71.466906538,41.799482533],[-71.466991538,41.799390533],[-71.467009538,41.799325533],[-71.467018538,41.799270533],[-71.467081538,41.799073533],[-71.467185538,41.798848533],[-71.467270538,41.798712533],[-71.467354538,41.798561533],[-71.467380538,41.798488533],[-71.467374538,41.798423533],[-71.467348538,41.798362533],[-71.467441538,41.798265533],[-71.467479538,41.798213533],[-71.467582538,41.798117533],[-71.467636538,41.798079533],[-71.467716538,41.798040533],[-71.467813538,41.798011533],[-71.467920538,41.798004533],[-71.468122538,41.798006532],[-71.468211538,41.798038533],[-71.468341538,41.798127533],[-71.468413538,41.798134533],[-71.468489538,41.798120533],[-71.468572539,41.798097533],[-71.468666538,41.798087533],[-71.468794538,41.798106533],[-71.468834538,41.798145533],[-71.468849538,41.798199533],[-71.468939539,41.798238533],[-71.469077539,41.798298532],[-71.469278538,41.798428533],[-71.469328539,41.798470533],[-71.469384539,41.798540533],[-71.469428539,41.798652533],[-71.469463539,41.798725533],[-71.469522539,41.798782533],[-71.469597539,41.798820533],[-71.469678539,41.798844533],[-71.469752539,41.798844533],[-71.469832539,41.798839533],[-71.469973539,41.798806533],[-71.470042539,41.798776533],[-71.470105539,41.798766533],[-71.470387538,41.798752533],[-71.470451539,41.798725533],[-71.470496539,41.798718533],[-71.470660538,41.798665533],[-71.470845539,41.798626533],[-71.470909539,41.798610532],[-71.470932539,41.798604533],[-71.471005539,41.798590532],[-71.471253539,41.798521533],[-71.471347539,41.798487533],[-71.471501539,41.798416532],[-71.471552539,41.798377532],[-71.471598539,41.798318532],[-71.471609539,41.798299532],[-71.471635539,41.798255533],[-71.471665539,41.798191533],[-71.471705539,41.798061533],[-71.47180754,41.797894533],[-71.471819539,41.797834532],[-71.471786539,41.797773532],[-71.47176854,41.797707533],[-71.471784539,41.797639532],[-71.471823539,41.797578532],[-71.471976539,41.797491533],[-71.47202154,41.797432533],[-71.472026539,41.797304532],[-71.472014539,41.797237533],[-71.471992539,41.797168532],[-71.471940539,41.797045533],[-71.471932539,41.796988533],[-71.471912539,41.796928533],[-71.472036539,41.796824532],[-71.47206354,41.796774533],[-71.47210054,41.796724532],[-71.47223554,41.796571532],[-71.472310539,41.796468532],[-71.472362539,41.796431532],[-71.47243154,41.796399533],[-71.47251254,41.796391532],[-71.47257054,41.796391532],[-71.472733539,41.796413532],[-71.47296054,41.796432532],[-71.473120539,41.796463533],[-71.47336154,41.796464533],[-71.47344854,41.796471532],[-71.47360254,41.796505532],[-71.47368254,41.796513532],[-71.47371754,41.796513532],[-71.47398454,41.796540533],[-71.47400954,41.796539533],[-71.47408054,41.796531532],[-71.47416154,41.796505532],[-71.47429354,41.796452532],[-71.47448854,41.796344533],[-71.47456354,41.796312532],[-71.47464254,41.796290532],[-71.47472454,41.796279532],[-71.47480154,41.796279532],[-71.47487954,41.796293532],[-71.47495754,41.796313532],[-71.475027541,41.796339532],[-71.47511954,41.796380533],[-71.475202541,41.796402533],[-71.47528754,41.796411532],[-71.47538254,41.796415532],[-71.475474541,41.796425533],[-71.47556254,41.796450532],[-71.47562154,41.796492532],[-71.47565554,41.796551532],[-71.475684541,41.796619533],[-71.475744541,41.796698533],[-71.47583454,41.796729532],[-71.476191541,41.796772533],[-71.476352541,41.796775533],[-71.47643654,41.796771533],[-71.47658954,41.796750533],[-71.476694541,41.796745532],[-71.476802541,41.796746532],[-71.477024541,41.796776533],[-71.477244541,41.796820532],[-71.477347541,41.796831533],[-71.477452541,41.796831533],[-71.477601541,41.796825532],[-71.477706541,41.796826532],[-71.477808541,41.796844532],[-71.477879541,41.796864532],[-71.477952542,41.796890533],[-71.478179541,41.796980532],[-71.478254541,41.797006533],[-71.478398542,41.797038532],[-71.478457542,41.797026533],[-71.478537542,41.796990533],[-71.478615542,41.796947533],[-71.478682541,41.796920532],[-71.478794541,41.796890533],[-71.478929541,41.796862532],[-71.479002542,41.796857532],[-71.479282541,41.796856532],[-71.479369542,41.796859532],[-71.479447542,41.796891533],[-71.479537541,41.796954532],[-71.479568542,41.796936532],[-71.479736542,41.796860532],[-71.479683542,41.796708532],[-71.479614541,41.796597533],[-71.479530542,41.796528532],[-71.479309542,41.796379532],[-71.479744542,41.795979532],[-71.479866541,41.795853532],[-71.479927542,41.795792532],[-71.480087542,41.795613532],[-71.480385542,41.795327532],[-71.480705542,41.794983531],[-71.480606542,41.794938532],[-71.479988542,41.794644532],[-71.479691541,41.794506532],[-71.479279542,41.794308532],[-71.479111541,41.794239532],[-71.478508541,41.794072532],[-71.478481541,41.794064532],[-71.477890541,41.793888532],[-71.478081541,41.793522531],[-71.478119541,41.793412532],[-71.478127541,41.793347531],[-71.478127541,41.793255532],[-71.478134541,41.793183532],[-71.478157541,41.793084532],[-71.478233541,41.792870532],[-71.478287541,41.792714532],[-71.478310541,41.792618532],[-71.478317541,41.792561532],[-71.478294541,41.792405532],[-71.478264541,41.792290532],[-71.478226541,41.792111532],[-71.478134541,41.791745531],[-71.478096541,41.791520531],[-71.478104541,41.791413532],[-71.478142541,41.791176532],[-71.478157541,41.791001532],[-71.478157541,41.790936531],[-71.478149541,41.790848531],[-71.478149541,41.790734531],[-71.477989541,41.789540531],[-71.47710454,41.789597531],[-71.47702054,41.788952531],[-71.476913541,41.788136531],[-71.47640154,41.788182531],[-71.47615154,41.788205531],[-71.47567754,41.788247531],[-71.47558654,41.788250531],[-71.47547154,41.788247531],[-71.47534954,41.788227531],[-71.475204539,41.78819753],[-71.47512154,41.788182531],[-71.47486154,41.788124531],[-71.474640539,41.78808253],[-71.47455654,41.788075531],[-71.474192539,41.78806353],[-71.473480539,41.78804153],[-71.47338754,41.78804053],[-71.472740539,41.788037531],[-71.472626539,41.78796453],[-71.472557539,41.787938531],[-71.472473539,41.787915531],[-71.472343539,41.787899531],[-71.472382539,41.787659531],[-71.472389539,41.787564531],[-71.472488539,41.78677853],[-71.472557539,41.78630553],[-71.472679539,41.78535153],[-71.472588539,41.78535553],[-71.471687539,41.78525253],[-71.471268538,41.78520653],[-71.470894538,41.785153531],[-71.470490538,41.78511553],[-71.470131538,41.785054531],[-71.470039538,41.78504253],[-71.469650538,41.785012531],[-71.469185538,41.784993531],[-71.469093538,41.784996531],[-71.467636538,41.78500853],[-71.467003537,41.785031531],[-71.464249536,41.78504653],[-71.464272536,41.784935531],[-71.464386536,41.78451253],[-71.464424536,41.78437853],[-71.464607536,41.78370353],[-71.464874536,41.78270053],[-71.464684536,41.78278453],[-71.464500536,41.78285653],[-71.464325536,41.78291753],[-71.464249536,41.78293653],[-71.463905536,41.78300553],[-71.462044535,41.78331453],[-71.461105535,41.78347853],[-71.460970535,41.78358153],[-71.460778535,41.78372053],[-71.460176535,41.784155531],[-71.459569534,41.78459453],[-71.458976535,41.78502353],[-71.458326534,41.785501531],[-71.457513534,41.786100531]]]]}}"}, +{"type": "precinct", "typeId": 704, "areaId": 25725, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":64,\"NAME\":\"0704\",\"SHAPE_Length\":0.036598446489924,\"SHAPE_Area\":-6.2151629211931e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.438541528,41.794237533],[-71.439240529,41.794079533],[-71.439926528,41.793927533],[-71.440224529,41.793881533],[-71.440323529,41.793873533],[-71.440572528,41.793755532],[-71.440461529,41.793501532],[-71.440695529,41.793469533],[-71.440997529,41.793428533],[-71.441059529,41.793556533],[-71.441117529,41.793735532],[-71.441208529,41.793984533],[-71.441241529,41.794039533],[-71.441294529,41.794093533],[-71.441410529,41.794185533],[-71.441462529,41.794227533],[-71.441529529,41.794272533],[-71.44160053,41.794313533],[-71.441674529,41.794340533],[-71.441740529,41.794339533],[-71.44183653,41.794332533],[-71.442003529,41.794326533],[-71.44208753,41.794313533],[-71.44216453,41.794283533],[-71.442213529,41.794233533],[-71.44224353,41.794183532],[-71.442232529,41.794134533],[-71.442208529,41.794075533],[-71.442199529,41.794015533],[-71.442272529,41.793983533],[-71.442367529,41.793895533],[-71.442423529,41.793850533],[-71.442546529,41.793768533],[-71.442603529,41.793709533],[-71.44303953,41.793637532],[-71.44425253,41.793389533],[-71.44562553,41.793103533],[-71.44543553,41.792572532],[-71.44549653,41.792317532],[-71.445557531,41.792015533],[-71.445656531,41.791478532],[-71.44574753,41.790924533],[-71.44578653,41.790699532],[-71.44585453,41.790379532],[-71.44595353,41.789849532],[-71.44605353,41.789315532],[-71.44568153,41.789279532],[-71.44489053,41.789243532],[-71.44515653,41.789212532],[-71.44522553,41.789195532],[-71.44529353,41.789162532],[-71.44534753,41.789115532],[-71.44538653,41.789051532],[-71.44540753,41.788988532],[-71.44541753,41.788919531],[-71.44541753,41.788854532],[-71.44540253,41.788800531],[-71.44537153,41.788750532],[-71.44534053,41.788723531],[-71.44532353,41.788708532],[-71.44519953,41.788626531],[-71.44505353,41.788570531],[-71.44482653,41.788518532],[-71.44474453,41.788505532],[-71.44465653,41.788478532],[-71.44459153,41.788447532],[-71.44453653,41.788392531],[-71.44450753,41.788341532],[-71.44442553,41.788233532],[-71.444374529,41.788184532],[-71.44432253,41.788142531],[-71.44427253,41.788093532],[-71.44424353,41.788076532],[-71.44420753,41.788055532],[-71.444123529,41.788026531],[-71.44403053,41.788012532],[-71.443945529,41.787988532],[-71.44385753,41.787969532],[-71.443678529,41.787974532],[-71.44358553,41.787964531],[-71.443400529,41.787930532],[-71.44329653,41.787908531],[-71.443657529,41.787766532],[-71.443832529,41.787125531],[-71.443947529,41.786724531],[-71.44415353,41.785973531],[-71.44438953,41.785122531],[-71.443947529,41.784874531],[-71.443748529,41.784775531],[-71.44312353,41.784687531],[-71.443031529,41.784672531],[-71.442390529,41.784588531],[-71.442177529,41.784558531],[-71.442101529,41.784886531],[-71.442055529,41.785015532],[-71.441994528,41.785088531],[-71.441841529,41.785202531],[-71.441162528,41.785656532],[-71.440680529,41.785281531],[-71.440575528,41.785199531],[-71.440201528,41.785454531],[-71.440186528,41.785473531],[-71.440025528,41.785691531],[-71.439812528,41.785996531],[-71.439537528,41.786400532],[-71.439438528,41.786526531],[-71.439384528,41.786591532],[-71.438789528,41.786995532],[-71.438293528,41.787331532],[-71.437569527,41.787747531],[-71.436996528,41.788090532],[-71.436906527,41.788147532],[-71.436821528,41.788201532],[-71.436569528,41.788365532],[-71.436407527,41.788469532],[-71.436280527,41.788551532],[-71.436354527,41.788590532],[-71.436673527,41.788829532],[-71.437088527,41.789090532],[-71.437103527,41.789598533],[-71.437111528,41.789891533],[-71.437160527,41.790441532],[-71.437184527,41.790500532],[-71.437263528,41.790738532],[-71.437302528,41.791028532],[-71.437362528,41.791581533],[-71.437376527,41.791688532],[-71.437408528,41.791959533],[-71.437421528,41.792164533],[-71.437427528,41.792253532],[-71.437461528,41.792741532],[-71.437483528,41.792828533],[-71.437538528,41.793040533],[-71.437642528,41.793247532],[-71.437769528,41.793407533],[-71.437941528,41.793544533],[-71.438345528,41.793892533],[-71.438448528,41.794016533],[-71.438541528,41.794237533]]]]}}"}, +{"type": "precinct", "typeId": 705, "areaId": 25724, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":63,\"NAME\":\"0705\",\"SHAPE_Length\":0.062276913958154,\"SHAPE_Area\":-8.3314977604135e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.44131853,41.804758535],[-71.44246153,41.804996535],[-71.44246753,41.804967535],[-71.44253953,41.804612535],[-71.44295553,41.802881534],[-71.44299353,41.802750534],[-71.44301953,41.802625535],[-71.44327153,41.801610535],[-71.44331953,41.801476535],[-71.443531531,41.800886534],[-71.44374153,41.800301534],[-71.44388953,41.799889534],[-71.44395353,41.799741534],[-71.44415053,41.799287534],[-71.444233531,41.799127534],[-71.44439553,41.798814534],[-71.444602531,41.798414534],[-71.44505853,41.797533534],[-71.44546953,41.796879533],[-71.446158531,41.795922533],[-71.446560531,41.795343533],[-71.447029531,41.794726533],[-71.448359531,41.793266532],[-71.448647531,41.792949533],[-71.449052532,41.792548532],[-71.449382532,41.792221532],[-71.449475532,41.792129532],[-71.450124532,41.791603532],[-71.451611532,41.790366532],[-71.452441533,41.789767532],[-71.452425533,41.789681531],[-71.452415532,41.789658532],[-71.452370532,41.789460532],[-71.452347533,41.789391531],[-71.452202532,41.789482532],[-71.451591532,41.789902532],[-71.450775532,41.790451532],[-71.450294532,41.790055532],[-71.449806532,41.789666532],[-71.449295531,41.789250531],[-71.449089532,41.789112532],[-71.448845531,41.789040532],[-71.448517531,41.789006532],[-71.448135531,41.788948532],[-71.44753353,41.788712532],[-71.446762531,41.788311532],[-71.44665553,41.788201531],[-71.446320531,41.787751531],[-71.44597653,41.787274532],[-71.444901529,41.785805531],[-71.44438953,41.785122531],[-71.44415353,41.785973531],[-71.443947529,41.786724531],[-71.443832529,41.787125531],[-71.443657529,41.787766532],[-71.44329653,41.787908531],[-71.443400529,41.787930532],[-71.44358553,41.787964531],[-71.443678529,41.787974532],[-71.44385753,41.787969532],[-71.443945529,41.787988532],[-71.44403053,41.788012532],[-71.444123529,41.788026531],[-71.44420753,41.788055532],[-71.44424353,41.788076532],[-71.44427253,41.788093532],[-71.44432253,41.788142531],[-71.444374529,41.788184532],[-71.44442553,41.788233532],[-71.44450753,41.788341532],[-71.44453653,41.788392531],[-71.44459153,41.788447532],[-71.44465653,41.788478532],[-71.44474453,41.788505532],[-71.44482653,41.788518532],[-71.44505353,41.788570531],[-71.44519953,41.788626531],[-71.44532353,41.788708532],[-71.44534053,41.788723531],[-71.44537153,41.788750532],[-71.44540253,41.788800531],[-71.44541753,41.788854532],[-71.44541753,41.788919531],[-71.44540753,41.788988532],[-71.44538653,41.789051532],[-71.44534753,41.789115532],[-71.44529353,41.789162532],[-71.44522553,41.789195532],[-71.44515653,41.789212532],[-71.44489053,41.789243532],[-71.44568153,41.789279532],[-71.44605353,41.789315532],[-71.44595353,41.789849532],[-71.44585453,41.790379532],[-71.44578653,41.790699532],[-71.44574753,41.790924533],[-71.445656531,41.791478532],[-71.445557531,41.792015533],[-71.44549653,41.792317532],[-71.44543553,41.792572532],[-71.44562553,41.793103533],[-71.44425253,41.793389533],[-71.44303953,41.793637532],[-71.442603529,41.793709533],[-71.442546529,41.793768533],[-71.442423529,41.793850533],[-71.442367529,41.793895533],[-71.442272529,41.793983533],[-71.442199529,41.794015533],[-71.442208529,41.794075533],[-71.442232529,41.794134533],[-71.44224353,41.794183532],[-71.442213529,41.794233533],[-71.44216453,41.794283533],[-71.44208753,41.794313533],[-71.442003529,41.794326533],[-71.44183653,41.794332533],[-71.441740529,41.794339533],[-71.441674529,41.794340533],[-71.44160053,41.794313533],[-71.441529529,41.794272533],[-71.441462529,41.794227533],[-71.441410529,41.794185533],[-71.441294529,41.794093533],[-71.441241529,41.794039533],[-71.441208529,41.793984533],[-71.441117529,41.793735532],[-71.441059529,41.793556533],[-71.440997529,41.793428533],[-71.440695529,41.793469533],[-71.440461529,41.793501532],[-71.440572528,41.793755532],[-71.440323529,41.793873533],[-71.440224529,41.793881533],[-71.439926528,41.793927533],[-71.439240529,41.794079533],[-71.438541528,41.794237533],[-71.438875528,41.795492533],[-71.439058528,41.796174533],[-71.439340529,41.797249533],[-71.439359529,41.797385533],[-71.439358529,41.797606534],[-71.439353529,41.797688534],[-71.439335529,41.797955534],[-71.439288528,41.798894534],[-71.439242529,41.800037534],[-71.439241529,41.800298534],[-71.439229529,41.800452534],[-71.439228529,41.800630534],[-71.439234529,41.800671534],[-71.439240529,41.800724534],[-71.439245528,41.800897534],[-71.439232529,41.801613534],[-71.439246529,41.801916535],[-71.439266529,41.802035535],[-71.439308529,41.802159534],[-71.439368529,41.802293535],[-71.439553529,41.802614534],[-71.439938529,41.803297535],[-71.44000253,41.803395535],[-71.439934529,41.803425535],[-71.439857529,41.803452535],[-71.439965529,41.803514535],[-71.440040529,41.803556535],[-71.440193529,41.803668535],[-71.440252529,41.803713535],[-71.440296529,41.803749535],[-71.440541529,41.803954534],[-71.44087553,41.804234535],[-71.44110653,41.804480535],[-71.441295529,41.804722535],[-71.44131853,41.804758535]]]]}}"}, +{"type": "precinct", "typeId": 706, "areaId": 25712, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":51,\"NAME\":\"0706\",\"SHAPE_Length\":0.13063407530363,\"SHAPE_Area\":-0.00066476058538507},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.496300547,41.781090529],[-71.496857546,41.781010529],[-71.497360546,41.780922528],[-71.497856547,41.780846528],[-71.498260547,41.780781529],[-71.498641547,41.780715529],[-71.498856547,41.780678529],[-71.499260547,41.780613528],[-71.499958547,41.780498528],[-71.500397548,41.780426529],[-71.500702548,41.780381528],[-71.500862548,41.780556528],[-71.501266548,41.781090529],[-71.501839548,41.781941529],[-71.502220548,41.782540528],[-71.502663548,41.783219529],[-71.503357549,41.784310529],[-71.504311549,41.785797529],[-71.505165549,41.78720953],[-71.50595155,41.78865953],[-71.50601255,41.78879253],[-71.50604955,41.78885953],[-71.50605855,41.78888753],[-71.50653155,41.78885353],[-71.507615551,41.78876553],[-71.508659551,41.78868153],[-71.509331551,41.78863953],[-71.510025551,41.78857853],[-71.510451551,41.788549529],[-71.510475552,41.78854453],[-71.512131552,41.78845653],[-71.512741552,41.788433529],[-71.513329553,41.78840353],[-71.513802552,41.788391529],[-71.514122553,41.78839953],[-71.514717552,41.78844553],[-71.516174554,41.788590529],[-71.516136554,41.788144529],[-71.516075553,41.787747529],[-71.515999553,41.787114529],[-71.515823553,41.785893529],[-71.515739553,41.785176529],[-71.515686553,41.784836529],[-71.515541553,41.783699529],[-71.515411553,41.782738528],[-71.515404553,41.782608528],[-71.515388553,41.782490528],[-71.515385553,41.782420529],[-71.515381552,41.782296528],[-71.515403553,41.781914529],[-71.515427553,41.781529528],[-71.515427553,41.781292528],[-71.515411553,41.781170528],[-71.515388553,41.781044528],[-71.515335553,41.780877528],[-71.515274553,41.780709528],[-71.515144552,41.780533528],[-71.515045553,41.780327528],[-71.514679552,41.779656528],[-71.514481552,41.779286528],[-71.514130552,41.778653528],[-71.513855552,41.778138527],[-71.513634552,41.777748527],[-71.513489552,41.777470527],[-71.513321552,41.777165527],[-71.513100551,41.776730527],[-71.512581552,41.775807527],[-71.512459551,41.775563527],[-71.512222551,41.775132527],[-71.512062551,41.774857527],[-71.511765551,41.774311527],[-71.511536551,41.773915527],[-71.51132255,41.773533526],[-71.511192551,41.773262527],[-71.511154551,41.773148527],[-71.511131551,41.773037527],[-71.511131551,41.772938527],[-71.51114755,41.772793526],[-71.511162551,41.772736526],[-71.51118555,41.772648527],[-71.511215551,41.772591527],[-71.512009551,41.771641526],[-71.512032551,41.771584526],[-71.512062551,41.771477527],[-71.512085551,41.771328526],[-71.512100551,41.771157526],[-71.512100551,41.771092527],[-71.512108551,41.770966526],[-71.512093551,41.770821526],[-71.512054551,41.770646526],[-71.512001551,41.770481526],[-71.511940551,41.770375526],[-71.511864551,41.770295526],[-71.511757551,41.770214527],[-71.511612551,41.770153526],[-71.511391551,41.770085526],[-71.511040551,41.769986526],[-71.510109551,41.769707527],[-71.51025455,41.769448526],[-71.510437551,41.769093526],[-71.51062855,41.768742526],[-71.51079955,41.768395526],[-71.51103255,41.767975525],[-71.51123055,41.767640526],[-71.511276551,41.767571526],[-71.51149755,41.767537526],[-71.511971551,41.767472525],[-71.512184551,41.767449525],[-71.512650551,41.767384526],[-71.513077551,41.767334525],[-71.513016551,41.766980525],[-71.512947551,41.766663526],[-71.512924551,41.766529526],[-71.512833551,41.766228525],[-71.512787551,41.766133525],[-71.512718551,41.766026525],[-71.512230551,41.765366525],[-71.51175755,41.764752525],[-71.51162055,41.764553525],[-71.51129255,41.764145525],[-71.51121555,41.764080525],[-71.51110155,41.764019525],[-71.51097155,41.763977525],[-71.51028455,41.763855525],[-71.50973555,41.763768525],[-71.50958355,41.763771525],[-71.50933155,41.763802525],[-71.50887355,41.763874525],[-71.507851549,41.764046525],[-71.507736549,41.763695525],[-71.507721549,41.763440525],[-71.507713549,41.763173525],[-71.50846955,41.763047525],[-71.508827549,41.762982524],[-71.508751549,41.762688524],[-71.508614549,41.762215525],[-71.508308549,41.761193524],[-71.508255549,41.760977524],[-71.508244549,41.760927525],[-71.508217549,41.760777524],[-71.508224549,41.760659525],[-71.508224549,41.760491524],[-71.506775549,41.760411524],[-71.506416549,41.760384525],[-71.505997548,41.760361525],[-71.505875549,41.760361525],[-71.505615548,41.760388524],[-71.505196549,41.760476525],[-71.504547548,41.760617525],[-71.504280548,41.760689525],[-71.504112548,41.760765524],[-71.503937548,41.760872525],[-71.503784548,41.761013524],[-71.503662547,41.761193525],[-71.503487547,41.761608525],[-71.503441548,41.761696524],[-71.503365547,41.761803525],[-71.503242548,41.761937525],[-71.503120548,41.762017525],[-71.502975547,41.762097525],[-71.502930548,41.762055525],[-71.502708547,41.761906525],[-71.502502548,41.761795525],[-71.502365548,41.761731525],[-71.502098547,41.761567525],[-71.501961547,41.761460524],[-71.501839547,41.761341525],[-71.501770547,41.761231525],[-71.501709547,41.761113524],[-71.501656547,41.760922525],[-71.501587547,41.760762524],[-71.501404547,41.760441525],[-71.501343547,41.760323525],[-71.501160547,41.760014525],[-71.501022547,41.759797525],[-71.500282547,41.758519524],[-71.500015546,41.758091524],[-71.499893546,41.757859524],[-71.499825546,41.757695524],[-71.499741546,41.757435524],[-71.499550546,41.756749524],[-71.499481546,41.756588524],[-71.499451546,41.756455524],[-71.499413546,41.756348524],[-71.499367546,41.756264524],[-71.499329546,41.756222524],[-71.499237546,41.756150524],[-71.499184546,41.756123524],[-71.499123546,41.756104524],[-71.499069546,41.756081524],[-71.498497546,41.755921523],[-71.498034546,41.755771524],[-71.497932545,41.755738524],[-71.497910545,41.755768523],[-71.497887545,41.755818524],[-71.497849545,41.755867524],[-71.497688546,41.756047524],[-71.497620545,41.756112524],[-71.497559545,41.756173524],[-71.497513546,41.756241524],[-71.497482545,41.756306524],[-71.497467546,41.756375524],[-71.497463545,41.756406524],[-71.497459545,41.756443524],[-71.497414546,41.756646524],[-71.497383545,41.756714524],[-71.497345545,41.756783524],[-71.497253545,41.756916524],[-71.497200546,41.756981524],[-71.497070545,41.757122524],[-71.497025546,41.757157524],[-71.497002546,41.757168524],[-71.496910545,41.757218524],[-71.496780545,41.757260524],[-71.496498546,41.757313524],[-71.495514545,41.757458524],[-71.495316545,41.757473524],[-71.495216544,41.757473524],[-71.495087545,41.757462524],[-71.494972545,41.757443524],[-71.494720545,41.757344524],[-71.493164544,41.756680524],[-71.492531544,41.756459524],[-71.491676544,41.756157524],[-71.491570543,41.756112524],[-71.490385543,41.755590524],[-71.490288543,41.755547524],[-71.490074543,41.755478524],[-71.489861543,41.755429524],[-71.489510543,41.755398524],[-71.489395543,41.755398524],[-71.489189542,41.755413524],[-71.489090542,41.755429524],[-71.489006543,41.755455524],[-71.488930543,41.755486524],[-71.488861542,41.755520524],[-71.488800542,41.755562524],[-71.488731543,41.755623524],[-71.488670543,41.755692524],[-71.488625542,41.755764524],[-71.488579543,41.755822524],[-71.488556543,41.755860524],[-71.488518543,41.755940524],[-71.488503543,41.756012524],[-71.488503543,41.756085524],[-71.488495542,41.756161524],[-71.488419543,41.757683524],[-71.488403543,41.757798524],[-71.488358543,41.757931524],[-71.488289543,41.758046524],[-71.488251542,41.758088524],[-71.488220542,41.758133524],[-71.487999542,41.758328525],[-71.487976543,41.758343524],[-71.487961542,41.758362524],[-71.487183542,41.759034525],[-71.487015542,41.759175525],[-71.486855542,41.759297524],[-71.486515542,41.759620525],[-71.486481542,41.759652525],[-71.486282542,41.759869525],[-71.486084542,41.760098525],[-71.485275542,41.761216525],[-71.484756542,41.761921526],[-71.484245542,41.762593525],[-71.483871541,41.763119525],[-71.483521541,41.763642526],[-71.483070541,41.764458526],[-71.483047541,41.764492526],[-71.482643541,41.765236526],[-71.482605541,41.765313526],[-71.482567541,41.765370526],[-71.482499541,41.765496526],[-71.482422541,41.765637526],[-71.482414541,41.765660526],[-71.482361541,41.765751526],[-71.482254541,41.765980527],[-71.482201541,41.766110526],[-71.482109541,41.766377526],[-71.482040541,41.766663527],[-71.482025541,41.766789526],[-71.482170541,41.767041526],[-71.482697541,41.767880526],[-71.483109541,41.768464526],[-71.483551541,41.769040527],[-71.484016542,41.769600527],[-71.484390541,41.770024527],[-71.485168543,41.770848527],[-71.485558543,41.771229528],[-71.485985543,41.771626527],[-71.486351543,41.771935527],[-71.486725543,41.772229527],[-71.487167543,41.772564527],[-71.487762544,41.772980528],[-71.488182543,41.773251528],[-71.488388543,41.773375527],[-71.486360542,41.774438528],[-71.485355543,41.775602528],[-71.485649543,41.775555528],[-71.485947543,41.775460528],[-71.486343543,41.775349528],[-71.486603543,41.775299528],[-71.487976544,41.775185528],[-71.488060543,41.775181528],[-71.488419544,41.775200528],[-71.488777543,41.775238528],[-71.488846544,41.775250528],[-71.489159544,41.775288527],[-71.489319544,41.775299528],[-71.489471544,41.775303528],[-71.489662544,41.775292528],[-71.489716544,41.775284528],[-71.489822544,41.775280528],[-71.489876544,41.775286527],[-71.489899544,41.775292528],[-71.489937544,41.775310528],[-71.489961544,41.775332528],[-71.489983544,41.775360528],[-71.489998544,41.775395528],[-71.490005544,41.775433528],[-71.490005544,41.775467528],[-71.490021544,41.775513528],[-71.490051544,41.775700528],[-71.490051544,41.775746528],[-71.490044544,41.775780528],[-71.490036544,41.775814528],[-71.490025544,41.775830528],[-71.489967544,41.775917528],[-71.489510544,41.776429528],[-71.488892544,41.777096528],[-71.488869544,41.777127528],[-71.488838543,41.777157529],[-71.488808544,41.777199528],[-71.488785544,41.777245528],[-71.488770544,41.777295528],[-71.488777543,41.777333529],[-71.488792544,41.777371529],[-71.488861544,41.777466529],[-71.488892544,41.777493528],[-71.488968544,41.777535528],[-71.488998544,41.777558528],[-71.489250544,41.777687528],[-71.489799544,41.777993529],[-71.489914544,41.778042528],[-71.489960544,41.778073529],[-71.490028544,41.778145528],[-71.490074544,41.778222528],[-71.490089544,41.778302529],[-71.490089544,41.778340529],[-71.490074544,41.778435528],[-71.490059544,41.778481529],[-71.489990544,41.778633529],[-71.489929544,41.778740528],[-71.489777544,41.778954528],[-71.489899544,41.779000528],[-71.490074544,41.779080529],[-71.490219545,41.779156529],[-71.490479544,41.779320529],[-71.490974545,41.779679528],[-71.491234545,41.779873528],[-71.491539545,41.780075529],[-71.491890545,41.780247529],[-71.492241545,41.780407529],[-71.492590545,41.780553528],[-71.492943545,41.780701529],[-71.493324545,41.780831529],[-71.493599545,41.780907529],[-71.493629546,41.780911529],[-71.493912545,41.780980528],[-71.494158546,41.781034529],[-71.494454545,41.781085529],[-71.494789546,41.781121529],[-71.495082546,41.781140529],[-71.495499546,41.781140529],[-71.495758547,41.781132529],[-71.496109547,41.781109529],[-71.496300547,41.781090529]]]]}}"}, +{"type": "precinct", "typeId": 707, "areaId": 25711, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":50,\"NAME\":\"0707\",\"SHAPE_Length\":0.15553042032635,\"SHAPE_Area\":-0.00093603028691946},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.508244549,41.760927525],[-71.50864755,41.760502525],[-71.50907855,41.760048524],[-71.50940055,41.759947524],[-71.51053055,41.759593524],[-71.512548551,41.758962524],[-71.512700551,41.758889524],[-71.51277055,41.758873524],[-71.512814551,41.758878524],[-71.512851551,41.758883524],[-71.51300055,41.758891524],[-71.513074551,41.758900524],[-71.513170551,41.758925524],[-71.51323555,41.758964524],[-71.513393551,41.759138524],[-71.513426551,41.759190524],[-71.51350655,41.759256524],[-71.513597551,41.759385524],[-71.513621551,41.759442524],[-71.51362355,41.759510524],[-71.51358355,41.759557524],[-71.513549551,41.759616524],[-71.513554551,41.759671524],[-71.513608551,41.759710524],[-71.513689551,41.759740524],[-71.513761551,41.759744524],[-71.514022551,41.759744524],[-71.514110551,41.759739524],[-71.514262551,41.759708524],[-71.514435551,41.759680524],[-71.514505551,41.759655524],[-71.514644551,41.759588524],[-71.514728551,41.759580524],[-71.514780551,41.759600524],[-71.514868552,41.759699524],[-71.514905552,41.759763524],[-71.514956551,41.759868524],[-71.515087551,41.760103524],[-71.515105551,41.760157524],[-71.515113551,41.760288525],[-71.515135551,41.760346525],[-71.515172551,41.760408524],[-71.515229551,41.760521525],[-71.515307551,41.760532524],[-71.515385551,41.760559524],[-71.515518551,41.760644524],[-71.515674551,41.760773525],[-71.515849551,41.760972524],[-71.515902552,41.761021524],[-71.516030552,41.761103524],[-71.516201552,41.761239524],[-71.516262552,41.761280525],[-71.516326552,41.761314524],[-71.516395552,41.761345524],[-71.516472552,41.761390524],[-71.516553552,41.761411524],[-71.516638552,41.761412524],[-71.516715552,41.761420524],[-71.516773552,41.761454525],[-71.516921552,41.761525524],[-71.516958552,41.761568524],[-71.517025552,41.761633525],[-71.517100552,41.761709525],[-71.517158552,41.761743524],[-71.517230552,41.761761524],[-71.517316552,41.761770525],[-71.517382552,41.761811524],[-71.517448552,41.761927524],[-71.517492552,41.761986524],[-71.517527552,41.762048524],[-71.517598553,41.762229524],[-71.517666552,41.762358524],[-71.517716553,41.762397524],[-71.517786552,41.762436524],[-71.517867553,41.762455524],[-71.518030552,41.762506525],[-71.518111552,41.762513524],[-71.518195553,41.762505525],[-71.518268552,41.762468525],[-71.518322552,41.762433525],[-71.518396553,41.762426525],[-71.518478552,41.762443524],[-71.518530553,41.762495524],[-71.518591553,41.762536524],[-71.518636552,41.762540524],[-71.518674552,41.762548525],[-71.518764553,41.762514524],[-71.518840553,41.762473524],[-71.518806553,41.762368525],[-71.518791552,41.762299524],[-71.518799553,41.762108524],[-71.518829552,41.761784524],[-71.518860553,41.761525524],[-71.518867553,41.761376524],[-71.518639552,41.758664524],[-71.518593553,41.758446524],[-71.518562552,41.758328524],[-71.518517552,41.758202523],[-71.518410552,41.758007523],[-71.518318553,41.757878523],[-71.518211552,41.757752524],[-71.517850552,41.757302524],[-71.517555552,41.756935523],[-71.517303552,41.756569523],[-71.516289552,41.755394523],[-71.515350551,41.754273523],[-71.514751551,41.753520523],[-71.514488551,41.753189523],[-71.514381551,41.753094522],[-71.514275551,41.753037522],[-71.514183551,41.752976522],[-71.51422955,41.752926523],[-71.514351551,41.752758523],[-71.514412551,41.752629522],[-71.514709551,41.752076523],[-71.514931551,41.751706523],[-71.514938551,41.751683523],[-71.514992551,41.751603523],[-71.515144551,41.751435522],[-71.515396551,41.751244522],[-71.515678551,41.751080523],[-71.516243551,41.750756522],[-71.516312552,41.750725522],[-71.516365551,41.750706522],[-71.516533551,41.750664522],[-71.516731551,41.750630522],[-71.516922551,41.750603522],[-71.517853552,41.750504522],[-71.518679552,41.750407522],[-71.518863552,41.750387522],[-71.518921552,41.750380522],[-71.519829552,41.750283522],[-71.520988553,41.750126522],[-71.521126553,41.750111522],[-71.521339553,41.750073522],[-71.521500553,41.750035522],[-71.521873553,41.749913522],[-71.522072553,41.749852522],[-71.523735554,41.749287522],[-71.524742554,41.748955522],[-71.525192554,41.748783521],[-71.525810555,41.748509522],[-71.526039555,41.748394521],[-71.526108554,41.748368522],[-71.526161555,41.748333522],[-71.526230554,41.748299521],[-71.526291555,41.748261521],[-71.526390555,41.748181521],[-71.526535554,41.748040522],[-71.526657554,41.747906521],[-71.527016555,41.747536521],[-71.527451554,41.747082521],[-71.527893555,41.746633521],[-71.530617556,41.743866521],[-71.530750555,41.743728521],[-71.531120555,41.74334452],[-71.531784556,41.74268052],[-71.532471556,41.74200152],[-71.532791557,41.74169252],[-71.533096556,41.74137952],[-71.533577556,41.74090252],[-71.533966556,41.740498519],[-71.534103556,41.74036852],[-71.534134557,41.74033452],[-71.534180556,41.740265519],[-71.534203556,41.740185519],[-71.534233557,41.740033519],[-71.534241556,41.739216519],[-71.534302556,41.738110519],[-71.534317556,41.737412519],[-71.534286557,41.737095519],[-71.534225556,41.736729519],[-71.534126556,41.736332519],[-71.534004556,41.735653519],[-71.533821556,41.734536519],[-71.533813556,41.734318518],[-71.533821556,41.734074519],[-71.533844556,41.733883519],[-71.533875556,41.733662519],[-71.533958556,41.732941518],[-71.533997556,41.732521518],[-71.534050556,41.732109518],[-71.534103556,41.731747518],[-71.534187556,41.730893518],[-71.534279556,41.730267518],[-71.534286556,41.730179517],[-71.534020556,41.730189518],[-71.531497555,41.730290518],[-71.529374555,41.730354517],[-71.526926553,41.730421518],[-71.525348553,41.730472518],[-71.523712552,41.730530518],[-71.523665553,41.730531518],[-71.521496552,41.730578518],[-71.521307551,41.730583518],[-71.520782551,41.730595518],[-71.520397551,41.730602518],[-71.520390551,41.730602518],[-71.519806551,41.730615518],[-71.519663552,41.730627518],[-71.519173551,41.730665519],[-71.517708551,41.730715518],[-71.516853551,41.730741519],[-71.51561755,41.730779519],[-71.51406955,41.730813518],[-71.513382549,41.730837519],[-71.513228549,41.730839519],[-71.512306549,41.730856519],[-71.512023548,41.730860519],[-71.510658548,41.730915519],[-71.509686548,41.730943518],[-71.509560548,41.730948519],[-71.509427548,41.730954519],[-71.508331548,41.731002518],[-71.506928547,41.731014519],[-71.505867547,41.731037518],[-71.505485547,41.731043519],[-71.505020547,41.731065519],[-71.504067546,41.731104519],[-71.503560546,41.731124519],[-71.503059546,41.731144519],[-71.500923545,41.731199519],[-71.499924545,41.731356519],[-71.497803544,41.731413519],[-71.497795544,41.731457519],[-71.497772544,41.731514519],[-71.497757544,41.731575519],[-71.497724544,41.731651519],[-71.497710544,41.731690519],[-71.497688545,41.731758519],[-71.497673544,41.731789519],[-71.497665544,41.731820519],[-71.497665544,41.731846519],[-71.497658544,41.731877519],[-71.497658544,41.731980519],[-71.497665544,41.732014519],[-71.497681544,41.732052519],[-71.497704544,41.73208752],[-71.497765545,41.73224352],[-71.497772544,41.73228152],[-71.497787544,41.732315519],[-71.497787544,41.732354519],[-71.497795544,41.732396519],[-71.497795544,41.73243852],[-71.497780544,41.732521519],[-71.497765545,41.732560519],[-71.497749544,41.732636519],[-71.497749544,41.732899519],[-71.497726545,41.733014519],[-71.497711544,41.73304452],[-71.497574544,41.73321652],[-71.497498544,41.733342519],[-71.497467544,41.733403519],[-71.497444544,41.733437519],[-71.497429544,41.73347152],[-71.497223544,41.73376152],[-71.497208544,41.73379952],[-71.497162545,41.733868519],[-71.497116544,41.733910519],[-71.497086544,41.733925519],[-71.497017544,41.733948519],[-71.496803544,41.73399052],[-71.496613544,41.73405152],[-71.496574544,41.73407052],[-71.496529544,41.734101519],[-71.496460544,41.73416652],[-71.495453543,41.734959519],[-71.494957544,41.73531052],[-71.494865543,41.73538252],[-71.494781544,41.73547452],[-71.494761544,41.73551952],[-71.494736543,41.73558152],[-71.494728543,41.73561952],[-71.494728543,41.73581052],[-71.494728543,41.73593952],[-71.494713543,41.73641652],[-71.494713543,41.73654252],[-71.494682544,41.73672152],[-71.494507544,41.73748452],[-71.494331544,41.737996521],[-71.494286543,41.73814052],[-71.494202543,41.738343521],[-71.493940544,41.73879852],[-71.493568543,41.739636521],[-71.493484543,41.739811521],[-71.493469543,41.739865521],[-71.493469543,41.739918521],[-71.493462543,41.739972521],[-71.493401543,41.740273521],[-71.493324543,41.740544521],[-71.493286543,41.740639521],[-71.493240543,41.740712521],[-71.493195543,41.740765521],[-71.493141543,41.740811521],[-71.493034543,41.740918521],[-71.492897543,41.741032521],[-71.492821543,41.741082521],[-71.492729543,41.741127521],[-71.492645543,41.741177522],[-71.492516543,41.741246521],[-71.492271543,41.741387521],[-71.492203543,41.741421521],[-71.492065543,41.741501521],[-71.491974543,41.741574521],[-71.491961543,41.741591521],[-71.491943543,41.741616521],[-71.491920542,41.741661521],[-71.491913543,41.741738521],[-71.491913543,41.741803521],[-71.491920543,41.741848521],[-71.491943543,41.741921521],[-71.491982543,41.742005521],[-71.492027543,41.742131522],[-71.492157543,41.742443522],[-71.492180543,41.742516522],[-71.492203543,41.742661521],[-71.492188543,41.742768521],[-71.492142543,41.742833522],[-71.492081543,41.742890522],[-71.491898542,41.743023522],[-71.491745543,41.743115521],[-71.491539543,41.743214521],[-71.491417543,41.743264521],[-71.491295542,41.743328521],[-71.491188543,41.743412522],[-71.490906542,41.743752521],[-71.490440542,41.744397521],[-71.490166542,41.744694522],[-71.490005543,41.744873522],[-71.489777542,41.745114522],[-71.489639542,41.745320522],[-71.489548542,41.745480522],[-71.489487542,41.745583522],[-71.489235542,41.746052523],[-71.489105542,41.746323523],[-71.488930542,41.746842522],[-71.488609542,41.747925522],[-71.488518542,41.748116523],[-71.488480542,41.748211523],[-71.488434542,41.748368523],[-71.488426542,41.748448523],[-71.488426542,41.748528523],[-71.488441542,41.748684523],[-71.488441542,41.748783522],[-71.488449542,41.748886523],[-71.488449542,41.748986523],[-71.488464542,41.749073523],[-71.488480542,41.749245523],[-71.488480542,41.749325523],[-71.488434542,41.749699523],[-71.488403542,41.749806523],[-71.488358542,41.749886523],[-71.488309542,41.749946523],[-71.488068542,41.750241523],[-71.487976542,41.750340523],[-71.487793542,41.750504523],[-71.487633542,41.750664523],[-71.487495542,41.750821523],[-71.487724541,41.750908524],[-71.488174542,41.751103524],[-71.488449542,41.751210523],[-71.489182543,41.751454524],[-71.489563542,41.751564523],[-71.489916543,41.751422523],[-71.489952542,41.751408523],[-71.490467543,41.751188523],[-71.490532542,41.751160523],[-71.491249543,41.750821523],[-71.491486544,41.750702523],[-71.491519543,41.750690523],[-71.491881543,41.750556523],[-71.491951544,41.750531523],[-71.492950544,41.750191523],[-71.493027544,41.750153523],[-71.493073543,41.750142523],[-71.493210544,41.750130522],[-71.493301544,41.750134523],[-71.493362543,41.750145523],[-71.493484544,41.750187522],[-71.493538543,41.750218523],[-71.493637544,41.750290523],[-71.494431545,41.750889522],[-71.495323545,41.750142523],[-71.494942544,41.749840522],[-71.494865544,41.749771523],[-71.494797544,41.749699523],[-71.494766544,41.749657523],[-71.494743545,41.749615523],[-71.494759544,41.749565522],[-71.494820545,41.749466522],[-71.495132545,41.749051523],[-71.495148544,41.749016523],[-71.495903544,41.749585522],[-71.496567545,41.750172522],[-71.497475545,41.750939523],[-71.498299545,41.751519523],[-71.498451545,41.751427523],[-71.498528545,41.751374523],[-71.498573545,41.751320523],[-71.498627545,41.751267523],[-71.498726545,41.751110523],[-71.498741546,41.751061523],[-71.498741546,41.750962523],[-71.498726545,41.750912523],[-71.499603546,41.751259523],[-71.499443546,41.751477523],[-71.499207546,41.751812523],[-71.499176545,41.751885523],[-71.499069546,41.752076523],[-71.498978545,41.752289523],[-71.498909546,41.752507524],[-71.498806545,41.752791523],[-71.498766545,41.752998523],[-71.498750546,41.753136523],[-71.498725545,41.753272523],[-71.498697546,41.753356523],[-71.498659546,41.753441524],[-71.498597546,41.753516523],[-71.498493545,41.753572523],[-71.498424546,41.753642523],[-71.498047545,41.754303523],[-71.497978546,41.754570524],[-71.497978546,41.754639523],[-71.497971545,41.754712523],[-71.497971545,41.754971523],[-71.497978546,41.755062524],[-71.498024545,41.755230524],[-71.498032546,41.755314524],[-71.498032546,41.755387524],[-71.498024545,41.755459524],[-71.498009545,41.755535523],[-71.497932545,41.755738524],[-71.498034546,41.755771524],[-71.498497546,41.755921523],[-71.499069546,41.756081524],[-71.499123546,41.756104524],[-71.499184546,41.756123524],[-71.499237546,41.756150524],[-71.499329546,41.756222524],[-71.499367546,41.756264524],[-71.499413546,41.756348524],[-71.499451546,41.756455524],[-71.499481546,41.756588524],[-71.499550546,41.756749524],[-71.499741546,41.757435524],[-71.499825546,41.757695524],[-71.499893546,41.757859524],[-71.500015546,41.758091524],[-71.500282547,41.758519524],[-71.501022547,41.759797525],[-71.501160547,41.760014525],[-71.501343547,41.760323525],[-71.501404547,41.760441525],[-71.501587547,41.760762524],[-71.501656547,41.760922525],[-71.501709547,41.761113524],[-71.501770547,41.761231525],[-71.501839547,41.761341525],[-71.501961547,41.761460524],[-71.502098547,41.761567525],[-71.502365548,41.761731525],[-71.502502548,41.761795525],[-71.502708547,41.761906525],[-71.502930548,41.762055525],[-71.502975547,41.762097525],[-71.503120548,41.762017525],[-71.503242548,41.761937525],[-71.503365547,41.761803525],[-71.503441548,41.761696524],[-71.503487547,41.761608525],[-71.503662547,41.761193525],[-71.503784548,41.761013524],[-71.503937548,41.760872525],[-71.504112548,41.760765524],[-71.504280548,41.760689525],[-71.504547548,41.760617525],[-71.505196549,41.760476525],[-71.505615548,41.760388524],[-71.505875549,41.760361525],[-71.505997548,41.760361525],[-71.506416549,41.760384525],[-71.506775549,41.760411524],[-71.508224549,41.760491524],[-71.508224549,41.760659525],[-71.508217549,41.760777524],[-71.508244549,41.760927525]]]]}}"}, +{"type": "precinct", "typeId": 708, "areaId": 25718, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":57,\"NAME\":\"0708\",\"SHAPE_Length\":0.12888021389108,\"SHAPE_Area\":-0.00044633696489839},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.475479538,41.756630525],[-71.475769539,41.756600525],[-71.475845539,41.756596525],[-71.476468539,41.756514525],[-71.476746538,41.756478525],[-71.477066539,41.756424525],[-71.477203539,41.756396524],[-71.477180539,41.756466525],[-71.477150539,41.756550524],[-71.477043539,41.756901524],[-71.477028539,41.756939524],[-71.477104539,41.756989525],[-71.477128539,41.757010525],[-71.477272538,41.757134524],[-71.477364539,41.757222525],[-71.477524539,41.757405524],[-71.477745539,41.757603525],[-71.477859539,41.757698524],[-71.478119539,41.757870525],[-71.47892854,41.758335525],[-71.47927954,41.758572525],[-71.479378539,41.758656525],[-71.479500539,41.758801525],[-71.47959954,41.758969525],[-71.47967554,41.759159525],[-71.47973654,41.759377525],[-71.47978254,41.759610525],[-71.47979754,41.759728525],[-71.47988154,41.760209526],[-71.47993554,41.760403526],[-71.48003454,41.761086526],[-71.48008754,41.761509525],[-71.48009954,41.761569526],[-71.48030954,41.762576525],[-71.48031654,41.762608526],[-71.48057654,41.763520526],[-71.480896541,41.764424526],[-71.481262541,41.765313526],[-71.481689541,41.766182526],[-71.481950541,41.766653526],[-71.481956541,41.766671526],[-71.482025541,41.766789526],[-71.482040541,41.766663527],[-71.482109541,41.766377526],[-71.482201541,41.766110526],[-71.482254541,41.765980527],[-71.482361541,41.765751526],[-71.482414541,41.765660526],[-71.482422541,41.765637526],[-71.482499541,41.765496526],[-71.482567541,41.765370526],[-71.482605541,41.765313526],[-71.482643541,41.765236526],[-71.483047541,41.764492526],[-71.483070541,41.764458526],[-71.483521541,41.763642526],[-71.483871541,41.763119525],[-71.484245542,41.762593525],[-71.484756542,41.761921526],[-71.485275542,41.761216525],[-71.486084542,41.760098525],[-71.486282542,41.759869525],[-71.486481542,41.759652525],[-71.486515542,41.759620525],[-71.486855542,41.759297524],[-71.487015542,41.759175525],[-71.487183542,41.759034525],[-71.487961542,41.758362524],[-71.487976543,41.758343524],[-71.487999542,41.758328525],[-71.488220542,41.758133524],[-71.488251542,41.758088524],[-71.488289543,41.758046524],[-71.488358543,41.757931524],[-71.488403543,41.757798524],[-71.488419543,41.757683524],[-71.488495542,41.756161524],[-71.488503543,41.756085524],[-71.488503543,41.756012524],[-71.488518543,41.755940524],[-71.488556543,41.755860524],[-71.488579543,41.755822524],[-71.488625542,41.755764524],[-71.488670543,41.755692524],[-71.488731543,41.755623524],[-71.488800542,41.755562524],[-71.488861542,41.755520524],[-71.488930543,41.755486524],[-71.489006543,41.755455524],[-71.489090542,41.755429524],[-71.489189542,41.755413524],[-71.489395543,41.755398524],[-71.489510543,41.755398524],[-71.489861543,41.755429524],[-71.490074543,41.755478524],[-71.490288543,41.755547524],[-71.490385543,41.755590524],[-71.491570543,41.756112524],[-71.491676544,41.756157524],[-71.492531544,41.756459524],[-71.493164544,41.756680524],[-71.494720545,41.757344524],[-71.494972545,41.757443524],[-71.495087545,41.757462524],[-71.495216544,41.757473524],[-71.495316545,41.757473524],[-71.495514545,41.757458524],[-71.496498546,41.757313524],[-71.496780545,41.757260524],[-71.496910545,41.757218524],[-71.497002546,41.757168524],[-71.497025546,41.757157524],[-71.497070545,41.757122524],[-71.497200546,41.756981524],[-71.497253545,41.756916524],[-71.497345545,41.756783524],[-71.497383545,41.756714524],[-71.497414546,41.756646524],[-71.497459545,41.756443524],[-71.497463545,41.756406524],[-71.497467546,41.756375524],[-71.497482545,41.756306524],[-71.497513546,41.756241524],[-71.497559545,41.756173524],[-71.497620545,41.756112524],[-71.497688546,41.756047524],[-71.497849545,41.755867524],[-71.497887545,41.755818524],[-71.497910545,41.755768523],[-71.497932545,41.755738524],[-71.498009545,41.755535523],[-71.498024545,41.755459524],[-71.498032546,41.755387524],[-71.498032546,41.755314524],[-71.498024545,41.755230524],[-71.497978546,41.755062524],[-71.497971545,41.754971523],[-71.497971545,41.754712523],[-71.497978546,41.754639523],[-71.497978546,41.754570524],[-71.498047545,41.754303523],[-71.498424546,41.753642523],[-71.498493545,41.753572523],[-71.498597546,41.753516523],[-71.498659546,41.753441524],[-71.498697546,41.753356523],[-71.498725545,41.753272523],[-71.498750546,41.753136523],[-71.498766545,41.752998523],[-71.498806545,41.752791523],[-71.498909546,41.752507524],[-71.498978545,41.752289523],[-71.499069546,41.752076523],[-71.499176545,41.751885523],[-71.499207546,41.751812523],[-71.499443546,41.751477523],[-71.499603546,41.751259523],[-71.498726545,41.750912523],[-71.498741546,41.750962523],[-71.498741546,41.751061523],[-71.498726545,41.751110523],[-71.498627545,41.751267523],[-71.498573545,41.751320523],[-71.498528545,41.751374523],[-71.498451545,41.751427523],[-71.498299545,41.751519523],[-71.497475545,41.750939523],[-71.496567545,41.750172522],[-71.495903544,41.749585522],[-71.495148544,41.749016523],[-71.495132545,41.749051523],[-71.494820545,41.749466522],[-71.494759544,41.749565522],[-71.494743545,41.749615523],[-71.494766544,41.749657523],[-71.494797544,41.749699523],[-71.494865544,41.749771523],[-71.494942544,41.749840522],[-71.495323545,41.750142523],[-71.494431545,41.750889522],[-71.493637544,41.750290523],[-71.493538543,41.750218523],[-71.493484544,41.750187522],[-71.493362543,41.750145523],[-71.493301544,41.750134523],[-71.493210544,41.750130522],[-71.493073543,41.750142523],[-71.493027544,41.750153523],[-71.492950544,41.750191523],[-71.491951544,41.750531523],[-71.491881543,41.750556523],[-71.491519543,41.750690523],[-71.491486544,41.750702523],[-71.491249543,41.750821523],[-71.490532542,41.751160523],[-71.490467543,41.751188523],[-71.489952542,41.751408523],[-71.489916543,41.751422523],[-71.489563542,41.751564523],[-71.489182543,41.751454524],[-71.488449542,41.751210523],[-71.488174542,41.751103524],[-71.487724541,41.750908524],[-71.487495542,41.750821523],[-71.487633542,41.750664523],[-71.487793542,41.750504523],[-71.487976542,41.750340523],[-71.488068542,41.750241523],[-71.488309542,41.749946523],[-71.488358542,41.749886523],[-71.488403542,41.749806523],[-71.488434542,41.749699523],[-71.488480542,41.749325523],[-71.488480542,41.749245523],[-71.488464542,41.749073523],[-71.488449542,41.748986523],[-71.488449542,41.748886523],[-71.488441542,41.748783522],[-71.488441542,41.748684523],[-71.488426542,41.748528523],[-71.488426542,41.748448523],[-71.488434542,41.748368523],[-71.488480542,41.748211523],[-71.488518542,41.748116523],[-71.488609542,41.747925522],[-71.488930542,41.746842522],[-71.489105542,41.746323523],[-71.489235542,41.746052523],[-71.489487542,41.745583522],[-71.489548542,41.745480522],[-71.489639542,41.745320522],[-71.489777542,41.745114522],[-71.490005543,41.744873522],[-71.490166542,41.744694522],[-71.490440542,41.744397521],[-71.490906542,41.743752521],[-71.491188543,41.743412522],[-71.491295542,41.743328521],[-71.491417543,41.743264521],[-71.491539543,41.743214521],[-71.491745543,41.743115521],[-71.491898542,41.743023522],[-71.492081543,41.742890522],[-71.492142543,41.742833522],[-71.492188543,41.742768521],[-71.492203543,41.742661521],[-71.492180543,41.742516522],[-71.492157543,41.742443522],[-71.492027543,41.742131522],[-71.491982543,41.742005521],[-71.491943543,41.741921521],[-71.491920543,41.741848521],[-71.491913543,41.741803521],[-71.491913543,41.741738521],[-71.491920542,41.741661521],[-71.491943543,41.741616521],[-71.491961543,41.741591521],[-71.491974543,41.741574521],[-71.492065543,41.741501521],[-71.492203543,41.741421521],[-71.492271543,41.741387521],[-71.492516543,41.741246521],[-71.492645543,41.741177522],[-71.492729543,41.741127521],[-71.492821543,41.741082521],[-71.492897543,41.741032521],[-71.493034543,41.740918521],[-71.493141543,41.740811521],[-71.493195543,41.740765521],[-71.493240543,41.740712521],[-71.493286543,41.740639521],[-71.493324543,41.740544521],[-71.493401543,41.740273521],[-71.493462543,41.739972521],[-71.493469543,41.739918521],[-71.493469543,41.739865521],[-71.493484543,41.739811521],[-71.493568543,41.739636521],[-71.493940544,41.73879852],[-71.494202543,41.738343521],[-71.494286543,41.73814052],[-71.494331544,41.737996521],[-71.494507544,41.73748452],[-71.494682544,41.73672152],[-71.494713543,41.73654252],[-71.494713543,41.73641652],[-71.494728543,41.73593952],[-71.494728543,41.73581052],[-71.494728543,41.73561952],[-71.494736543,41.73558152],[-71.494761544,41.73551952],[-71.494781544,41.73547452],[-71.494865543,41.73538252],[-71.494957544,41.73531052],[-71.495453543,41.734959519],[-71.496460544,41.73416652],[-71.496529544,41.734101519],[-71.496574544,41.73407052],[-71.496613544,41.73405152],[-71.496803544,41.73399052],[-71.497017544,41.733948519],[-71.497086544,41.733925519],[-71.497116544,41.733910519],[-71.497162545,41.733868519],[-71.497208544,41.73379952],[-71.497223544,41.73376152],[-71.497429544,41.73347152],[-71.497444544,41.733437519],[-71.497467544,41.733403519],[-71.497498544,41.733342519],[-71.497574544,41.73321652],[-71.497711544,41.73304452],[-71.497726545,41.733014519],[-71.497749544,41.732899519],[-71.497749544,41.732636519],[-71.497765545,41.732560519],[-71.497780544,41.732521519],[-71.497795544,41.73243852],[-71.497795544,41.732396519],[-71.497787544,41.732354519],[-71.497787544,41.732315519],[-71.497772544,41.73228152],[-71.497765545,41.73224352],[-71.497704544,41.73208752],[-71.497681544,41.732052519],[-71.497665544,41.732014519],[-71.497658544,41.731980519],[-71.497658544,41.731877519],[-71.497665544,41.731846519],[-71.497665544,41.731820519],[-71.497673544,41.731789519],[-71.497688545,41.731758519],[-71.497710544,41.731690519],[-71.497724544,41.731651519],[-71.497757544,41.731575519],[-71.497772544,41.731514519],[-71.497795544,41.731457519],[-71.497803544,41.731413519],[-71.497264544,41.731428519],[-71.493845543,41.731519519],[-71.493568543,41.731533519],[-71.490677542,41.731605519],[-71.487228541,41.73169752],[-71.486982541,41.731704519],[-71.48673354,41.731710519],[-71.48597754,41.73173252],[-71.48422254,41.731778519],[-71.48385854,41.73178752],[-71.482142539,41.73183352],[-71.481796539,41.73184452],[-71.479935538,41.73189252],[-71.479788538,41.73188152],[-71.479286538,41.73190952],[-71.478264538,41.731934519],[-71.477840537,41.73194752],[-71.477676538,41.731953519],[-71.477013538,41.73196952],[-71.477036538,41.73207952],[-71.477058537,41.73216752],[-71.477089538,41.73229652],[-71.477211538,41.732811519],[-71.477333537,41.73339552],[-71.477478538,41.73399852],[-71.477524538,41.73419652],[-71.477577538,41.73445952],[-71.477608538,41.73460052],[-71.477707538,41.735070521],[-71.477722537,41.735169521],[-71.477837537,41.735691521],[-71.477859538,41.735791521],[-71.478027538,41.736588521],[-71.478188538,41.737389521],[-71.478226539,41.737618521],[-71.478394538,41.738472521],[-71.478416538,41.738564521],[-71.478424538,41.738629521],[-71.478447538,41.738716521],[-71.478462538,41.738808521],[-71.478592539,41.739365521],[-71.478607538,41.739417521],[-71.478622538,41.739499522],[-71.478653539,41.739602521],[-71.478859538,41.740502521],[-71.478989538,41.741070521],[-71.479090538,41.741495521],[-71.479149538,41.741768521],[-71.479233539,41.742138521],[-71.479294539,41.742459522],[-71.479324539,41.742627522],[-71.479355539,41.743138522],[-71.479317539,41.743729522],[-71.479248539,41.744496522],[-71.479149539,41.745629522],[-71.479111539,41.745995522],[-71.479088539,41.746247523],[-71.479065539,41.746422523],[-71.478981539,41.746796522],[-71.478775538,41.747658523],[-71.478561538,41.748444523],[-71.478477539,41.748726523],[-71.478325538,41.749207523],[-71.478233539,41.749451523],[-71.477905539,41.750393523],[-71.477814539,41.750641523],[-71.477760538,41.750798523],[-71.477432538,41.751973524],[-71.477104539,41.753182524],[-71.476997539,41.753579524],[-71.476944538,41.753758524],[-71.476852539,41.753979524],[-71.476601539,41.754456525],[-71.476425539,41.754795524],[-71.476112538,41.755440524],[-71.475868538,41.755906524],[-71.475822538,41.755978525],[-71.475761538,41.756104524],[-71.475693538,41.756226525],[-71.475632539,41.756352524],[-71.475594538,41.756413524],[-71.475555538,41.756478525],[-71.475479538,41.756630525]]]]}}"}, +{"type": "precinct", "typeId": 709, "areaId": 25719, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":58,\"NAME\":\"0709\",\"SHAPE_Length\":0.084300907786806,\"SHAPE_Area\":-0.00032784144037214},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.464272534,41.753273524],[-71.464500534,41.753384525],[-71.464579534,41.753428524],[-71.464676534,41.753483524],[-71.464882535,41.753571524],[-71.465942535,41.754090524],[-71.468033536,41.755150525],[-71.468369536,41.755303524],[-71.468765536,41.755494524],[-71.469093536,41.755638525],[-71.469353537,41.755738525],[-71.469528537,41.755806524],[-71.469971537,41.755959525],[-71.470428536,41.756096524],[-71.470833537,41.756207525],[-71.471245536,41.756306525],[-71.471664537,41.756394524],[-71.472137537,41.756478525],[-71.472497537,41.756529524],[-71.472618537,41.756546524],[-71.473106537,41.756600525],[-71.473473537,41.756626524],[-71.473846538,41.756646524],[-71.474220538,41.756657525],[-71.474609538,41.756661525],[-71.474998538,41.756653525],[-71.475273538,41.756657525],[-71.475388538,41.756638525],[-71.475479538,41.756630525],[-71.475555538,41.756478525],[-71.475594538,41.756413524],[-71.475632539,41.756352524],[-71.475693538,41.756226525],[-71.475761538,41.756104524],[-71.475822538,41.755978525],[-71.475868538,41.755906524],[-71.476112538,41.755440524],[-71.476425539,41.754795524],[-71.476601539,41.754456525],[-71.476852539,41.753979524],[-71.476944538,41.753758524],[-71.476997539,41.753579524],[-71.477104539,41.753182524],[-71.477432538,41.751973524],[-71.477760538,41.750798523],[-71.477814539,41.750641523],[-71.477905539,41.750393523],[-71.478233539,41.749451523],[-71.478325538,41.749207523],[-71.478477539,41.748726523],[-71.478561538,41.748444523],[-71.478775538,41.747658523],[-71.478981539,41.746796522],[-71.479065539,41.746422523],[-71.479088539,41.746247523],[-71.479111539,41.745995522],[-71.479149539,41.745629522],[-71.479248539,41.744496522],[-71.479317539,41.743729522],[-71.479355539,41.743138522],[-71.479324539,41.742627522],[-71.479294539,41.742459522],[-71.479233539,41.742138521],[-71.479149538,41.741768521],[-71.479090538,41.741495521],[-71.478989538,41.741070521],[-71.478859538,41.740502521],[-71.478653539,41.739602521],[-71.478622538,41.739499522],[-71.478607538,41.739417521],[-71.478592539,41.739365521],[-71.478462538,41.738808521],[-71.478447538,41.738716521],[-71.478424538,41.738629521],[-71.478416538,41.738564521],[-71.478394538,41.738472521],[-71.478226539,41.737618521],[-71.478188538,41.737389521],[-71.478027538,41.736588521],[-71.477859538,41.735791521],[-71.477837537,41.735691521],[-71.477722537,41.735169521],[-71.477707538,41.735070521],[-71.477608538,41.73460052],[-71.477577538,41.73445952],[-71.477524538,41.73419652],[-71.477478538,41.73399852],[-71.477333537,41.73339552],[-71.477211538,41.732811519],[-71.477089538,41.73229652],[-71.477058537,41.73216752],[-71.477036538,41.73207952],[-71.477013538,41.73196952],[-71.476952538,41.73197152],[-71.475578537,41.73200652],[-71.475580537,41.73198152],[-71.474758536,41.73201052],[-71.474762537,41.73202952],[-71.469803535,41.73216252],[-71.469651535,41.73216452],[-71.467958534,41.73219952],[-71.467533534,41.73220852],[-71.467142534,41.73221652],[-71.466953534,41.73222052],[-71.466840534,41.73222252],[-71.466663534,41.73222652],[-71.464317533,41.73227452],[-71.460642532,41.73235052],[-71.460602532,41.73230452],[-71.460609532,41.73236952],[-71.460846532,41.73299452],[-71.461159533,41.733841521],[-71.461479532,41.73487952],[-71.461517532,41.734986521],[-71.461678533,41.735543521],[-71.461700533,41.735703521],[-71.461693532,41.735878521],[-71.461670532,41.736107521],[-71.461578532,41.737225521],[-71.461464533,41.738289522],[-71.461472533,41.738575522],[-71.461494533,41.738755522],[-71.461502533,41.738774522],[-71.461700533,41.739148522],[-71.461769532,41.739228521],[-71.462105533,41.739617521],[-71.462799533,41.739029522],[-71.463127533,41.738797522],[-71.463219533,41.738930522],[-71.463318533,41.739056521],[-71.463501534,41.739251521],[-71.463707533,41.739525521],[-71.463913533,41.739876522],[-71.464340534,41.740387522],[-71.464737534,41.740792522],[-71.464882534,41.740933522],[-71.465637534,41.741887522],[-71.465179534,41.742100522],[-71.463722533,41.742821522],[-71.463295533,41.743061522],[-71.463425533,41.743203523],[-71.463852534,41.743672523],[-71.464622534,41.744519522],[-71.464790534,41.744709522],[-71.464953534,41.744885522],[-71.466164535,41.746197523],[-71.466395535,41.746459523],[-71.466425535,41.746493523],[-71.466682534,41.746785523],[-71.466729535,41.746836523],[-71.466776535,41.746885523],[-71.466919535,41.747036523],[-71.466980535,41.747078523],[-71.467003535,41.747090523],[-71.467133535,41.747128523],[-71.467514535,41.747181523],[-71.467667535,41.747185523],[-71.467926536,41.747204523],[-71.468124536,41.747242523],[-71.468475536,41.747380523],[-71.468735535,41.747498523],[-71.468147535,41.748162523],[-71.467751536,41.748631523],[-71.467601535,41.748825523],[-71.467354535,41.749142523],[-71.466812535,41.749802523],[-71.466309535,41.750454524],[-71.465706535,41.751248524],[-71.465111535,41.751995524],[-71.464523534,41.752766524],[-71.464302535,41.753052525],[-71.464249534,41.753113524],[-71.464172534,41.753220524],[-71.464272534,41.753273524]]]]}}"}, +{"type": "precinct", "typeId": 710, "areaId": 25734, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":73,\"NAME\":\"0710\",\"SHAPE_Length\":0.056877596161786,\"SHAPE_Area\":-0.0001139552297475},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.434069525,41.760944527],[-71.434113525,41.761039527],[-71.434332525,41.761110526],[-71.434340525,41.761110526],[-71.434641525,41.761038527],[-71.434891525,41.761039527],[-71.434969526,41.761045527],[-71.435054525,41.761061527],[-71.435141525,41.761087527],[-71.435201526,41.761123527],[-71.435238525,41.761171526],[-71.435319526,41.761339527],[-71.435401525,41.761481526],[-71.435451525,41.761520526],[-71.435523525,41.761551527],[-71.435603525,41.761577526],[-71.435746526,41.761681527],[-71.435978526,41.761793526],[-71.436042526,41.761834527],[-71.436120526,41.761861527],[-71.436286526,41.761894527],[-71.436341525,41.761917527],[-71.436404526,41.761956527],[-71.436433526,41.761968526],[-71.436491526,41.762003527],[-71.436533525,41.762048527],[-71.436533525,41.762118527],[-71.436546526,41.762177527],[-71.436747525,41.762253527],[-71.436791526,41.762304527],[-71.436821526,41.762382527],[-71.436849526,41.762497527],[-71.436882526,41.762605527],[-71.436905526,41.762728527],[-71.436934526,41.762791527],[-71.436983526,41.762884527],[-71.436614526,41.762993527],[-71.436469526,41.763034527],[-71.435861526,41.763204527],[-71.434947526,41.763428528],[-71.434990526,41.763527527],[-71.435104526,41.763760527],[-71.435310525,41.764180527],[-71.435730526,41.765015527],[-71.435974526,41.765549528],[-71.436180526,41.765961528],[-71.436508526,41.766648527],[-71.436615526,41.766861527],[-71.436676526,41.767002528],[-71.436729526,41.767464528],[-71.437050526,41.767578528],[-71.437584527,41.767788528],[-71.438362527,41.768101528],[-71.439209527,41.768437528],[-71.438934527,41.768814528],[-71.438858527,41.768910528],[-71.438393527,41.769509529],[-71.437943527,41.770104528],[-71.437500527,41.770680529],[-71.437172527,41.771119528],[-71.437096527,41.771210528],[-71.437035527,41.771302529],[-71.436981526,41.771370528],[-71.436951526,41.771462529],[-71.436920527,41.771527528],[-71.436897527,41.771710529],[-71.436897527,41.771775529],[-71.436905526,41.771862529],[-71.436943526,41.772057529],[-71.438708527,41.771950529],[-71.439159527,41.771924529],[-71.439403527,41.771916528],[-71.439868527,41.771873528],[-71.440505528,41.771828529],[-71.441415528,41.771767529],[-71.442406528,41.771695529],[-71.443199529,41.771641528],[-71.443465529,41.771627528],[-71.443642529,41.771366528],[-71.444031529,41.770749528],[-71.444366529,41.770226528],[-71.444687529,41.769741528],[-71.444672529,41.769696528],[-71.444633529,41.769635528],[-71.444572529,41.769547528],[-71.444542529,41.769452528],[-71.444550528,41.769352528],[-71.444763528,41.768937528],[-71.445114529,41.768307527],[-71.445488529,41.767681527],[-71.445763529,41.767781527],[-71.446093529,41.767894528],[-71.446297529,41.767964528],[-71.446373529,41.767964528],[-71.44647253,41.767910528],[-71.44653353,41.767819527],[-71.446556529,41.767670528],[-71.446587529,41.767407527],[-71.447052529,41.767437528],[-71.44733453,41.767445528],[-71.44944353,41.767609527],[-71.44929553,41.767493527],[-71.44907853,41.767304528],[-71.44890153,41.767168528],[-71.44883853,41.767127528],[-71.44876853,41.767095527],[-71.44868953,41.767076527],[-71.44859753,41.767065527],[-71.44851953,41.767061527],[-71.44844253,41.767036528],[-71.44843553,41.766980527],[-71.44843653,41.766924527],[-71.44846553,41.766806527],[-71.448467529,41.766748527],[-71.44845253,41.766695527],[-71.44838153,41.766631527],[-71.44817853,41.766508528],[-71.44810053,41.766467528],[-71.44801353,41.766434527],[-71.44777353,41.766377527],[-71.44770653,41.766354527],[-71.44763853,41.766321527],[-71.44758353,41.766281527],[-71.447538529,41.766216528],[-71.44754753,41.766139528],[-71.44758053,41.766087527],[-71.44766753,41.765995527],[-71.44769953,41.765926527],[-71.44768353,41.765856527],[-71.447653529,41.765802527],[-71.44760353,41.765676527],[-71.44758953,41.765615527],[-71.447615529,41.765563527],[-71.447616529,41.765502527],[-71.44754453,41.765441527],[-71.44739053,41.765367527],[-71.44732753,41.765324527],[-71.44727753,41.765281528],[-71.447228529,41.765224527],[-71.447220529,41.765200527],[-71.44731653,41.765003527],[-71.44699953,41.764346527],[-71.446005529,41.764030527],[-71.445943529,41.763980527],[-71.445850529,41.763975527],[-71.445752529,41.763986527],[-71.445659528,41.763970527],[-71.445581528,41.763916526],[-71.445539529,41.763865527],[-71.445508529,41.763817527],[-71.445376529,41.763734527],[-71.445349528,41.763675527],[-71.445337529,41.763612527],[-71.445303529,41.763574527],[-71.445234528,41.763581527],[-71.445144529,41.763616527],[-71.445040528,41.763627527],[-71.444969529,41.763610527],[-71.444896529,41.763555527],[-71.444889529,41.763472527],[-71.444909529,41.763414527],[-71.444919528,41.763358527],[-71.444919528,41.763229527],[-71.444895529,41.763153527],[-71.444856529,41.763103527],[-71.444803528,41.763066527],[-71.444704528,41.763043527],[-71.444618529,41.763016527],[-71.444569528,41.762964526],[-71.444566529,41.762892527],[-71.444534528,41.762820527],[-71.444488529,41.762774527],[-71.444255528,41.762605527],[-71.444199528,41.762569527],[-71.444095529,41.762482527],[-71.444023528,41.762377526],[-71.443967528,41.762337526],[-71.443905528,41.762304527],[-71.443807528,41.762218527],[-71.443770528,41.762170527],[-71.443747529,41.762108526],[-71.443748528,41.762053527],[-71.443825529,41.761800527],[-71.443828528,41.761750527],[-71.443852528,41.761675526],[-71.443883529,41.761608527],[-71.443872528,41.761540526],[-71.443846528,41.761489527],[-71.443757528,41.761394527],[-71.443685528,41.761255527],[-71.443621528,41.761131526],[-71.443613528,41.761112526],[-71.443605528,41.761051526],[-71.443612528,41.760988527],[-71.443698528,41.760747526],[-71.443691528,41.760672527],[-71.443647528,41.760522527],[-71.443583528,41.760374526],[-71.443557528,41.760296526],[-71.443528528,41.760228527],[-71.443426528,41.760067526],[-71.443358527,41.759913526],[-71.443298528,41.759828526],[-71.443240528,41.759745526],[-71.443144527,41.759583526],[-71.443032528,41.759424526],[-71.442952527,41.759248526],[-71.442910527,41.759174526],[-71.442865528,41.759122526],[-71.442818528,41.759078526],[-71.442623527,41.758954526],[-71.442513528,41.758859526],[-71.442460528,41.758805526],[-71.442344527,41.758641526],[-71.442290527,41.758580526],[-71.442137527,41.758438526],[-71.442083528,41.758394526],[-71.442035527,41.758345526],[-71.441980527,41.758305526],[-71.441913528,41.758267526],[-71.441794528,41.758220526],[-71.441760527,41.758211526],[-71.441625527,41.758179526],[-71.441539527,41.758151526],[-71.441409527,41.758123526],[-71.441362527,41.758112526],[-71.441211527,41.758063526],[-71.441130527,41.758043526],[-71.441051527,41.758032526],[-71.440982527,41.758017526],[-71.440896527,41.757966526],[-71.440810527,41.757970526],[-71.440574527,41.757920526],[-71.440558527,41.757940526],[-71.440398527,41.758061526],[-71.440096527,41.758085526],[-71.439612527,41.758042526],[-71.439303526,41.757886526],[-71.439118526,41.757837526],[-71.438829527,41.757837526],[-71.438508526,41.757951526],[-71.438218526,41.758110526],[-71.438111526,41.758293526],[-71.437989526,41.758978526],[-71.437927526,41.759184526],[-71.437836526,41.759447527],[-71.437698526,41.759675526],[-71.437561526,41.759835527],[-71.437377526,41.759915527],[-71.437164526,41.759972527],[-71.436904525,41.759983526],[-71.436599526,41.759949527],[-71.436401525,41.759857527],[-71.436249526,41.759766526],[-71.436096526,41.759720527],[-71.435883526,41.759685526],[-71.435593526,41.759731526],[-71.435242526,41.759799527],[-71.434998525,41.759891527],[-71.434845525,41.759982526],[-71.434601525,41.760124527],[-71.434494525,41.760250526],[-71.434387525,41.760399527],[-71.434260525,41.760600527],[-71.434134524,41.760797526],[-71.434069525,41.760944527]]]]}}"}, +{"type": "precinct", "typeId": 711, "areaId": 25720, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":59,\"NAME\":\"0711\",\"SHAPE_Length\":0.060523294741464,\"SHAPE_Area\":-0.0002052173304685},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.470970538,41.77969053],[-71.471481538,41.780182529],[-71.472008538,41.78072453],[-71.472191538,41.780980529],[-71.472336539,41.780964529],[-71.472382538,41.78095753],[-71.472885538,41.78091553],[-71.473289539,41.780846529],[-71.473801539,41.780739529],[-71.473999539,41.780690529],[-71.474190539,41.78064453],[-71.47479254,41.78041153],[-71.475075539,41.780239529],[-71.475273539,41.78012153],[-71.47533454,41.780079529],[-71.47583854,41.779694529],[-71.476028539,41.779511529],[-71.47628854,41.779259529],[-71.476532539,41.779007529],[-71.47655554,41.778984529],[-71.47661654,41.778942529],[-71.47675154,41.778819529],[-71.476921539,41.778714529],[-71.47695254,41.778687529],[-71.47734854,41.778454529],[-71.47745554,41.778393529],[-71.47789054,41.778122529],[-71.47803554,41.777974529],[-71.47817254,41.777821528],[-71.47839454,41.777443529],[-71.47860054,41.777081528],[-71.47874554,41.776829528],[-71.47905054,41.776329528],[-71.479103541,41.776257529],[-71.479317541,41.775933528],[-71.479375541,41.775853528],[-71.479523541,41.775654529],[-71.479744541,41.775391528],[-71.48006454,41.775074528],[-71.48008054,41.775059528],[-71.480195541,41.774959528],[-71.480461541,41.774723528],[-71.480713541,41.774498528],[-71.480827541,41.774407528],[-71.480927541,41.774285528],[-71.481033541,41.774166528],[-71.481133541,41.774041528],[-71.481277541,41.773793528],[-71.481361541,41.773621528],[-71.481438541,41.773400528],[-71.481483542,41.773186528],[-71.481499541,41.773087527],[-71.481506541,41.772915528],[-71.481506541,41.772694527],[-71.481499541,41.772404527],[-71.481522541,41.771992527],[-71.481522541,41.771832528],[-71.481522541,41.771489527],[-71.481544541,41.771000527],[-71.481560541,41.770867527],[-71.481590541,41.770680527],[-71.481606541,41.770626527],[-71.481628541,41.770516527],[-71.481659541,41.770409528],[-71.481750541,41.770161527],[-71.481804541,41.770039527],[-71.481819541,41.769993527],[-71.481934541,41.769734527],[-71.482033541,41.769448527],[-71.482043541,41.769431527],[-71.482079541,41.769299526],[-71.482109541,41.769154527],[-71.482124541,41.769024527],[-71.482132541,41.768895527],[-71.482132541,41.768586527],[-71.482124541,41.768494527],[-71.482025541,41.767399527],[-71.48201054,41.767056526],[-71.482025541,41.766789526],[-71.481956541,41.766671526],[-71.481950541,41.766653526],[-71.481689541,41.766182526],[-71.481262541,41.765313526],[-71.480896541,41.764424526],[-71.48057654,41.763520526],[-71.48031654,41.762608526],[-71.48030954,41.762576525],[-71.48009954,41.761569526],[-71.48008754,41.761509525],[-71.48003454,41.761086526],[-71.47993554,41.760403526],[-71.47988154,41.760209526],[-71.47979754,41.759728525],[-71.47978254,41.759610525],[-71.47973654,41.759377525],[-71.47967554,41.759159525],[-71.47959954,41.758969525],[-71.479500539,41.758801525],[-71.479378539,41.758656525],[-71.47927954,41.758572525],[-71.47892854,41.758335525],[-71.478119539,41.757870525],[-71.477859539,41.757698524],[-71.477745539,41.757603525],[-71.477524539,41.757405524],[-71.477364539,41.757222525],[-71.477272538,41.757134524],[-71.477128539,41.757010525],[-71.477104539,41.756989525],[-71.477028539,41.756939524],[-71.477043539,41.756901524],[-71.477150539,41.756550524],[-71.477180539,41.756466525],[-71.477203539,41.756396524],[-71.477066539,41.756424525],[-71.476746538,41.756478525],[-71.476468539,41.756514525],[-71.475845539,41.756596525],[-71.475769539,41.756600525],[-71.475479538,41.756630525],[-71.475456539,41.756667524],[-71.475433538,41.756703524],[-71.475288538,41.756955524],[-71.475212538,41.757065525],[-71.475143538,41.757180525],[-71.475067539,41.757290525],[-71.474945538,41.757492525],[-71.474762538,41.757756525],[-71.474663538,41.757908525],[-71.474495538,41.758221525],[-71.474487538,41.758244525],[-71.474434538,41.758339525],[-71.474281538,41.758694525],[-71.474083538,41.759179525],[-71.473984538,41.759461525],[-71.473930538,41.759640525],[-71.473846538,41.759945525],[-71.473801537,41.760163525],[-71.473770538,41.760373525],[-71.473763538,41.760479526],[-71.473747538,41.760582525],[-71.473740538,41.760689525],[-71.473740538,41.760895525],[-71.473747538,41.760998525],[-71.473747538,41.761174525],[-71.473755538,41.761242526],[-71.473755538,41.761368525],[-71.473763538,41.761513526],[-71.473763538,41.761658525],[-71.473770538,41.761803526],[-71.473772538,41.761847526],[-71.473801538,41.762394526],[-71.473785538,41.762722526],[-71.473770538,41.762864525],[-71.473724538,41.763138526],[-71.473686538,41.763279526],[-71.473694538,41.763375526],[-71.473679538,41.763493526],[-71.473610538,41.763813526],[-71.473595538,41.763909526],[-71.473534538,41.764134526],[-71.473442538,41.764336526],[-71.473312538,41.764576527],[-71.472992538,41.765126526],[-71.472923537,41.765225526],[-71.472862538,41.765324526],[-71.472794538,41.765419526],[-71.472672537,41.765568527],[-71.472473538,41.765793526],[-71.472404538,41.765870526],[-71.472353538,41.765919527],[-71.472275538,41.765992526],[-71.472206537,41.766056527],[-71.472160538,41.766110527],[-71.472122538,41.766167527],[-71.472076538,41.766224526],[-71.471954537,41.766426527],[-71.471901538,41.766529527],[-71.471840538,41.766610526],[-71.471802538,41.766739527],[-71.471619537,41.767170527],[-71.471542537,41.767376527],[-71.471489538,41.767487526],[-71.471413538,41.767620527],[-71.471275537,41.767918527],[-71.471268537,41.767941527],[-71.471207537,41.768082527],[-71.471054537,41.768483527],[-71.470566537,41.769692527],[-71.470428537,41.770050527],[-71.470375537,41.770172528],[-71.470284537,41.770420527],[-71.470100537,41.770752528],[-71.469917538,41.771061527],[-71.469879538,41.771111528],[-71.469749537,41.771332527],[-71.469688537,41.771447527],[-71.469528538,41.771798527],[-71.469490537,41.771881528],[-71.469376537,41.772175528],[-71.469315537,41.772347528],[-71.469261537,41.772519528],[-71.469124537,41.772900528],[-71.469086537,41.773026528],[-71.469017537,41.773232528],[-71.468773537,41.773915528],[-71.468575537,41.774475528],[-71.468506537,41.774746528],[-71.468468537,41.775010529],[-71.468460537,41.775059528],[-71.468452537,41.775231528],[-71.468452537,41.775586528],[-71.468468537,41.775765529],[-71.468498537,41.775948529],[-71.468521537,41.776055529],[-71.468590537,41.776265528],[-71.468623537,41.776339528],[-71.468608537,41.776358528],[-71.468622537,41.776416529],[-71.468636537,41.776486529],[-71.468658537,41.776677529],[-71.468651538,41.776764529],[-71.468636537,41.776852529],[-71.468636537,41.776894529],[-71.468636537,41.776936529],[-71.468658537,41.776997529],[-71.468689537,41.777054529],[-71.468735537,41.777108529],[-71.468788537,41.777146529],[-71.468823537,41.777171529],[-71.468893537,41.777214529],[-71.468972537,41.777288529],[-71.469048537,41.777375529],[-71.469124537,41.777470528],[-71.469193538,41.777577529],[-71.469269537,41.777680529],[-71.469658538,41.778237529],[-71.469711537,41.778302529],[-71.469734538,41.778328529],[-71.470070538,41.778790529],[-71.470268538,41.779000529],[-71.470970538,41.77969053]]]]}}"}, +{"type": "precinct", "typeId": 712, "areaId": 25721, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":60,\"NAME\":\"0712\",\"SHAPE_Length\":0.064473229898147,\"SHAPE_Area\":-0.00019266365743457},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.458397533,41.769040528],[-71.458466534,41.768704527],[-71.458900534,41.768753527],[-71.459335533,41.768807528],[-71.459389533,41.768811527],[-71.459724533,41.768841528],[-71.460213534,41.768902528],[-71.460342534,41.768898527],[-71.460564534,41.768872527],[-71.460899534,41.768818527],[-71.461182535,41.768761527],[-71.462051535,41.768570527],[-71.462219534,41.768536528],[-71.462502535,41.768464527],[-71.462929535,41.768406527],[-71.462830535,41.768074527],[-71.463776535,41.767960527],[-71.463753535,41.767876527],[-71.464760535,41.767773527],[-71.464928535,41.767758527],[-71.466087536,41.767628527],[-71.466286536,41.767613527],[-71.467003536,41.767544527],[-71.467072536,41.768067527],[-71.467056536,41.768433527],[-71.467026536,41.768753527],[-71.467033536,41.769001527],[-71.467041536,41.769131527],[-71.467155536,41.769616527],[-71.467255536,41.769947527],[-71.467323537,41.770329528],[-71.467361537,41.770626527],[-71.467351536,41.770947528],[-71.467424536,41.770994528],[-71.467539537,41.771031528],[-71.467766537,41.771061528],[-71.467987537,41.771138528],[-71.468102537,41.771187528],[-71.468315537,41.771305528],[-71.468552537,41.771447527],[-71.468781537,41.771565527],[-71.468987537,41.771645528],[-71.469200537,41.771710528],[-71.469528538,41.771798527],[-71.469688537,41.771447527],[-71.469749537,41.771332527],[-71.469879538,41.771111528],[-71.469917538,41.771061527],[-71.470100537,41.770752528],[-71.470284537,41.770420527],[-71.470375537,41.770172528],[-71.470428537,41.770050527],[-71.470566537,41.769692527],[-71.471054537,41.768483527],[-71.471207537,41.768082527],[-71.471268537,41.767941527],[-71.471275537,41.767918527],[-71.471413538,41.767620527],[-71.471489538,41.767487526],[-71.471542537,41.767376527],[-71.471619537,41.767170527],[-71.471802538,41.766739527],[-71.471840538,41.766610526],[-71.471901538,41.766529527],[-71.471954537,41.766426527],[-71.472076538,41.766224526],[-71.472122538,41.766167527],[-71.472160538,41.766110527],[-71.472206537,41.766056527],[-71.472275538,41.765992526],[-71.472353538,41.765919527],[-71.472404538,41.765870526],[-71.472473538,41.765793526],[-71.472672537,41.765568527],[-71.472794538,41.765419526],[-71.472862538,41.765324526],[-71.472923537,41.765225526],[-71.472992538,41.765126526],[-71.473312538,41.764576527],[-71.473442538,41.764336526],[-71.473534538,41.764134526],[-71.473595538,41.763909526],[-71.473610538,41.763813526],[-71.473679538,41.763493526],[-71.473694538,41.763375526],[-71.473686538,41.763279526],[-71.473724538,41.763138526],[-71.473770538,41.762864525],[-71.473785538,41.762722526],[-71.473801538,41.762394526],[-71.473772538,41.761847526],[-71.473770538,41.761803526],[-71.473763538,41.761658525],[-71.473763538,41.761513526],[-71.473755538,41.761368525],[-71.473755538,41.761242526],[-71.473747538,41.761174525],[-71.473747538,41.760998525],[-71.473740538,41.760895525],[-71.473740538,41.760689525],[-71.473747538,41.760582525],[-71.473763538,41.760479526],[-71.473770538,41.760373525],[-71.473801537,41.760163525],[-71.473846538,41.759945525],[-71.473930538,41.759640525],[-71.473984538,41.759461525],[-71.474083538,41.759179525],[-71.474281538,41.758694525],[-71.474434538,41.758339525],[-71.474487538,41.758244525],[-71.474495538,41.758221525],[-71.474663538,41.757908525],[-71.474762538,41.757756525],[-71.474945538,41.757492525],[-71.475067539,41.757290525],[-71.475143538,41.757180525],[-71.475212538,41.757065525],[-71.475288538,41.756955524],[-71.475433538,41.756703524],[-71.475456539,41.756667524],[-71.475479538,41.756630525],[-71.475388538,41.756638525],[-71.475273538,41.756657525],[-71.474998538,41.756653525],[-71.474609538,41.756661525],[-71.474220538,41.756657525],[-71.473846538,41.756646524],[-71.473473537,41.756626524],[-71.473106537,41.756600525],[-71.472618537,41.756546524],[-71.472497537,41.756529524],[-71.472137537,41.756478525],[-71.471664537,41.756394524],[-71.471245536,41.756306525],[-71.470833537,41.756207525],[-71.470428536,41.756096524],[-71.469971537,41.755959525],[-71.469528537,41.755806524],[-71.469353537,41.755738525],[-71.469093536,41.755638525],[-71.468765536,41.755494524],[-71.468369536,41.755303524],[-71.468033536,41.755150525],[-71.465942535,41.754090524],[-71.464882535,41.753571524],[-71.464676534,41.753483524],[-71.464579534,41.753428524],[-71.464500534,41.753384525],[-71.464272534,41.753273524],[-71.464233534,41.753327524],[-71.463989535,41.753640524],[-71.463440534,41.754341524],[-71.463279534,41.754552525],[-71.462651534,41.755371525],[-71.462303534,41.755825525],[-71.462006534,41.756211525],[-71.461418533,41.756955525],[-71.460838533,41.757710526],[-71.460533534,41.758164525],[-71.460342534,41.758488526],[-71.460297533,41.758572526],[-71.460159533,41.758828525],[-71.459984533,41.759220525],[-71.459839533,41.759613526],[-71.459702533,41.760109526],[-71.459610533,41.760594526],[-71.459549533,41.761280526],[-71.459526533,41.761837526],[-71.459488533,41.763211527],[-71.459450533,41.763836527],[-71.459351533,41.764298527],[-71.459122533,41.764977527],[-71.459019533,41.765167526],[-71.459015534,41.765175527],[-71.458870533,41.765435527],[-71.458542533,41.765835527],[-71.458168533,41.766198527],[-71.457886533,41.766468527],[-71.457275533,41.767098527],[-71.457047533,41.767334527],[-71.456490533,41.767884527],[-71.456333532,41.768034527],[-71.455876533,41.768496528],[-71.456314532,41.768620527],[-71.456558533,41.768700527],[-71.457146532,41.768864528],[-71.458397533,41.769040528]]]]}}"}, +{"type": "precinct", "typeId": 713, "areaId": 25730, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":69,\"NAME\":\"0713\",\"SHAPE_Length\":0.077881033512754,\"SHAPE_Area\":-0.00030977914647503},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.44944353,41.767609527],[-71.44949253,41.767647527],[-71.44954653,41.767699528],[-71.44958753,41.767746527],[-71.44960753,41.767813528],[-71.44946653,41.768038527],[-71.449437531,41.768093527],[-71.44942953,41.768149527],[-71.44944553,41.768204528],[-71.44948453,41.768257528],[-71.44953153,41.768311528],[-71.44960953,41.768431528],[-71.449673531,41.768547528],[-71.44971653,41.768594528],[-71.44978453,41.768656527],[-71.44984153,41.768696527],[-71.449907531,41.768730528],[-71.45004953,41.768772527],[-71.45013153,41.768785528],[-71.45020853,41.768787528],[-71.450257531,41.768779528],[-71.450300531,41.768772527],[-71.450377531,41.768742528],[-71.45045853,41.768700528],[-71.45053653,41.768648528],[-71.45059353,41.768591528],[-71.450667531,41.768462527],[-71.45075053,41.768342528],[-71.450795531,41.768290527],[-71.450856531,41.768256528],[-71.450961531,41.768249527],[-71.451163531,41.768251527],[-71.451264531,41.768268527],[-71.451494531,41.768332528],[-71.451575531,41.768362528],[-71.451644531,41.768396528],[-71.451702531,41.768436528],[-71.451749531,41.768481527],[-71.451789531,41.768528528],[-71.451822531,41.768580527],[-71.451847531,41.768636527],[-71.451857531,41.768698527],[-71.451857531,41.769001528],[-71.451907531,41.769173528],[-71.451938532,41.769229528],[-71.452047531,41.769331528],[-71.452091532,41.769386528],[-71.452116531,41.769439528],[-71.452152532,41.769565528],[-71.452195531,41.769670527],[-71.452243531,41.769741528],[-71.452340531,41.769836528],[-71.452591531,41.770026528],[-71.452654532,41.770088528],[-71.452723531,41.770167528],[-71.452768532,41.770217528],[-71.452838531,41.770268528],[-71.452918531,41.770299528],[-71.453019532,41.770322528],[-71.453109531,41.770348528],[-71.453427532,41.770481528],[-71.453508532,41.770522528],[-71.453565532,41.770561528],[-71.453611532,41.770607528],[-71.453665532,41.770652528],[-71.453776532,41.770724528],[-71.454597532,41.769875528],[-71.455376532,41.769059528],[-71.455876533,41.768496528],[-71.456333532,41.768034527],[-71.456490533,41.767884527],[-71.457047533,41.767334527],[-71.457275533,41.767098527],[-71.457886533,41.766468527],[-71.458168533,41.766198527],[-71.458542533,41.765835527],[-71.458870533,41.765435527],[-71.459015534,41.765175527],[-71.459019533,41.765167526],[-71.459122533,41.764977527],[-71.459351533,41.764298527],[-71.459450533,41.763836527],[-71.459488533,41.763211527],[-71.459526533,41.761837526],[-71.459549533,41.761280526],[-71.459610533,41.760594526],[-71.459702533,41.760109526],[-71.459839533,41.759613526],[-71.459984533,41.759220525],[-71.460159533,41.758828525],[-71.460297533,41.758572526],[-71.460342534,41.758488526],[-71.460533534,41.758164525],[-71.460838533,41.757710526],[-71.461418533,41.756955525],[-71.462006534,41.756211525],[-71.462303534,41.755825525],[-71.462651534,41.755371525],[-71.463279534,41.754552525],[-71.463440534,41.754341524],[-71.463989535,41.753640524],[-71.464233534,41.753327524],[-71.464272534,41.753273524],[-71.464172534,41.753220524],[-71.464249534,41.753113524],[-71.464012534,41.752995525],[-71.463921534,41.752938524],[-71.463463534,41.752732524],[-71.463036534,41.752545525],[-71.462563534,41.752358524],[-71.462296533,41.752262524],[-71.462036534,41.752175525],[-71.461586534,41.752041524],[-71.461357534,41.751980525],[-71.460976533,41.751889524],[-71.460861533,41.751865524],[-71.460518533,41.751793524],[-71.459740532,41.751629525],[-71.459541533,41.751591524],[-71.456831532,41.751030524],[-71.456116531,41.750882524],[-71.455345531,41.750722524],[-71.45243853,41.750119524],[-71.452133531,41.750042524],[-71.45188753,41.749998524],[-71.45166853,41.749958524],[-71.45112453,41.749847524],[-71.448547529,41.749318524],[-71.447906529,41.749180524],[-71.447556528,41.749104524],[-71.447159529,41.749020524],[-71.446691529,41.748926524],[-71.446615528,41.748910524],[-71.446538528,41.748895524],[-71.446616528,41.749080524],[-71.446615528,41.749535524],[-71.446606528,41.749672524],[-71.446594529,41.749688524],[-71.446569529,41.749913525],[-71.446310528,41.750267524],[-71.445974528,41.750564524],[-71.445593528,41.750758524],[-71.444982528,41.750906525],[-71.444677528,41.750941525],[-71.444418528,41.750883525],[-71.444174528,41.750758524],[-71.443976528,41.750677524],[-71.443732527,41.750632525],[-71.443213527,41.750711525],[-71.442435527,41.750997525],[-71.442326527,41.751052524],[-71.441748527,41.751350525],[-71.441625527,41.751437524],[-71.441451527,41.751562525],[-71.441277527,41.751686525],[-71.441092527,41.751818525],[-71.440619527,41.752161525],[-71.440374526,41.752435525],[-71.440191527,41.752777525],[-71.440191527,41.752926525],[-71.440313527,41.753223525],[-71.440465527,41.753484525],[-71.440566527,41.753627525],[-71.440587527,41.753657525],[-71.440680527,41.753794526],[-71.440998526,41.754263525],[-71.441120527,41.754525525],[-71.441165527,41.754720525],[-71.441152527,41.754779525],[-71.441120527,41.754925526],[-71.440967527,41.755096526],[-71.440799527,41.755222525],[-71.440639527,41.755262525],[-71.440524527,41.755290526],[-71.440280526,41.755302525],[-71.439685527,41.755278525],[-71.439533527,41.755313526],[-71.439456527,41.755427526],[-71.439380526,41.755690525],[-71.439302526,41.755911526],[-71.439288526,41.755952526],[-71.439196526,41.756203526],[-71.439120526,41.756398526],[-71.439196526,41.756615526],[-71.439348526,41.756763525],[-71.439655526,41.756942526],[-71.439854526,41.757028526],[-71.440169527,41.757192526],[-71.440412527,41.757313526],[-71.440551526,41.757427526],[-71.440654527,41.757650526],[-71.440662527,41.757803526],[-71.440574527,41.757920526],[-71.440810527,41.757970526],[-71.440896527,41.757966526],[-71.440982527,41.758017526],[-71.441051527,41.758032526],[-71.441130527,41.758043526],[-71.441211527,41.758063526],[-71.441362527,41.758112526],[-71.441409527,41.758123526],[-71.441539527,41.758151526],[-71.441625527,41.758179526],[-71.441760527,41.758211526],[-71.441794528,41.758220526],[-71.441913528,41.758267526],[-71.441980527,41.758305526],[-71.442035527,41.758345526],[-71.442083528,41.758394526],[-71.442137527,41.758438526],[-71.442290527,41.758580526],[-71.442344527,41.758641526],[-71.442460528,41.758805526],[-71.442513528,41.758859526],[-71.442623527,41.758954526],[-71.442818528,41.759078526],[-71.442865528,41.759122526],[-71.442910527,41.759174526],[-71.442952527,41.759248526],[-71.443032528,41.759424526],[-71.443144527,41.759583526],[-71.443240528,41.759745526],[-71.443298528,41.759828526],[-71.443358527,41.759913526],[-71.443426528,41.760067526],[-71.443528528,41.760228527],[-71.443557528,41.760296526],[-71.443583528,41.760374526],[-71.443647528,41.760522527],[-71.443691528,41.760672527],[-71.443698528,41.760747526],[-71.443612528,41.760988527],[-71.443605528,41.761051526],[-71.443613528,41.761112526],[-71.443621528,41.761131526],[-71.443685528,41.761255527],[-71.443757528,41.761394527],[-71.443846528,41.761489527],[-71.443872528,41.761540526],[-71.443883529,41.761608527],[-71.443852528,41.761675526],[-71.443828528,41.761750527],[-71.443825529,41.761800527],[-71.443748528,41.762053527],[-71.443747529,41.762108526],[-71.443770528,41.762170527],[-71.443807528,41.762218527],[-71.443905528,41.762304527],[-71.443967528,41.762337526],[-71.444023528,41.762377526],[-71.444095529,41.762482527],[-71.444199528,41.762569527],[-71.444255528,41.762605527],[-71.444488529,41.762774527],[-71.444534528,41.762820527],[-71.444566529,41.762892527],[-71.444569528,41.762964526],[-71.444618529,41.763016527],[-71.444704528,41.763043527],[-71.444803528,41.763066527],[-71.444856529,41.763103527],[-71.444895529,41.763153527],[-71.444919528,41.763229527],[-71.444919528,41.763358527],[-71.444909529,41.763414527],[-71.444889529,41.763472527],[-71.444896529,41.763555527],[-71.444969529,41.763610527],[-71.445040528,41.763627527],[-71.445144529,41.763616527],[-71.445234528,41.763581527],[-71.445303529,41.763574527],[-71.445337529,41.763612527],[-71.445349528,41.763675527],[-71.445376529,41.763734527],[-71.445508529,41.763817527],[-71.445539529,41.763865527],[-71.445581528,41.763916526],[-71.445659528,41.763970527],[-71.445752529,41.763986527],[-71.445850529,41.763975527],[-71.445943529,41.763980527],[-71.446005529,41.764030527],[-71.44699953,41.764346527],[-71.44731653,41.765003527],[-71.447220529,41.765200527],[-71.447228529,41.765224527],[-71.44727753,41.765281528],[-71.44732753,41.765324527],[-71.44739053,41.765367527],[-71.44754453,41.765441527],[-71.447616529,41.765502527],[-71.447615529,41.765563527],[-71.44758953,41.765615527],[-71.44760353,41.765676527],[-71.447653529,41.765802527],[-71.44768353,41.765856527],[-71.44769953,41.765926527],[-71.44766753,41.765995527],[-71.44758053,41.766087527],[-71.44754753,41.766139528],[-71.447538529,41.766216528],[-71.44758353,41.766281527],[-71.44763853,41.766321527],[-71.44770653,41.766354527],[-71.44777353,41.766377527],[-71.44801353,41.766434527],[-71.44810053,41.766467528],[-71.44817853,41.766508528],[-71.44838153,41.766631527],[-71.44845253,41.766695527],[-71.448467529,41.766748527],[-71.44846553,41.766806527],[-71.44843653,41.766924527],[-71.44843553,41.766980527],[-71.44844253,41.767036528],[-71.44851953,41.767061527],[-71.44859753,41.767065527],[-71.44868953,41.767076527],[-71.44876853,41.767095527],[-71.44883853,41.767127528],[-71.44890153,41.767168528],[-71.44907853,41.767304528],[-71.44929553,41.767493527],[-71.44944353,41.767609527]]]]}}"}, +{"type": "precinct", "typeId": 714, "areaId": 25736, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":75,\"NAME\":\"0714\",\"SHAPE_Length\":0.04376617505055,\"SHAPE_Area\":-6.0457634783951e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.41758652,41.762262527],[-71.417599519,41.762380527],[-71.417694519,41.763237527],[-71.41783952,41.763939527],[-71.41794352,41.764388528],[-71.41801552,41.764698528],[-71.41822852,41.765671529],[-71.41826752,41.765778528],[-71.41833752,41.766092528],[-71.41842352,41.766593528],[-71.41848752,41.766968528],[-71.41854952,41.767378528],[-71.41880552,41.767517529],[-71.41875552,41.767617529],[-71.41875952,41.767669528],[-71.418762521,41.767716529],[-71.41886952,41.768029529],[-71.41895352,41.768437529],[-71.419014521,41.768704529],[-71.41904452,41.768830529],[-71.419090521,41.769184528],[-71.41918252,41.769287529],[-71.41920552,41.769295529],[-71.41924352,41.769307529],[-71.419342521,41.769314529],[-71.420174521,41.769177529],[-71.421921522,41.768875528],[-71.422134522,41.769513528],[-71.422661522,41.769413529],[-71.424149522,41.769173529],[-71.424416522,41.768475529],[-71.424690522,41.767723528],[-71.424973522,41.766995529],[-71.425110522,41.766640528],[-71.425148522,41.766550528],[-71.425232522,41.766270528],[-71.425529523,41.766323528],[-71.425591523,41.766331528],[-71.425667523,41.766331528],[-71.425789522,41.766308528],[-71.425957523,41.766766528],[-71.426033523,41.766884528],[-71.426064522,41.766911528],[-71.426140522,41.766964528],[-71.426186523,41.766983528],[-71.426270523,41.766991528],[-71.426338522,41.766991528],[-71.426445523,41.766980528],[-71.427771523,41.766604528],[-71.427877523,41.766316528],[-71.428324523,41.765094528],[-71.428812523,41.763748527],[-71.429094523,41.762969527],[-71.429295524,41.762415527],[-71.429843523,41.760904527],[-71.429864523,41.760846527],[-71.429890523,41.760769527],[-71.429500523,41.760688527],[-71.428879523,41.760601526],[-71.428361523,41.760532527],[-71.427735523,41.760554527],[-71.427277523,41.760668527],[-71.427033523,41.760748527],[-71.426774523,41.760839527],[-71.426587522,41.760912527],[-71.426357522,41.760989527],[-71.426248522,41.761025527],[-71.426224522,41.761033527],[-71.425873522,41.761193527],[-71.425530522,41.761372527],[-71.425263522,41.761512527],[-71.424965522,41.761660527],[-71.424400522,41.761939527],[-71.423858521,41.762242527],[-71.423400522,41.762608528],[-71.423186522,41.762802528],[-71.422957522,41.762979528],[-71.422916522,41.763038528],[-71.422743522,41.763287528],[-71.422603522,41.763517528],[-71.422483521,41.763801527],[-71.422376521,41.764052528],[-71.422223521,41.764314528],[-71.421994521,41.764588528],[-71.421913521,41.764638527],[-71.421735521,41.764748528],[-71.421312521,41.764887528],[-71.420941521,41.764896528],[-71.42073852,41.764892527],[-71.42062052,41.764890528],[-71.420285521,41.764884528],[-71.419797521,41.764793528],[-71.419523521,41.764678527],[-71.41934052,41.764609528],[-71.419096521,41.764449528],[-71.41897152,41.764356528],[-71.41889852,41.764301528],[-71.41886752,41.764301528],[-71.41873052,41.764105528],[-71.41871552,41.764084528],[-71.41870052,41.763958527],[-71.41876152,41.763821527],[-71.41903652,41.763558528],[-71.41949452,41.763079527],[-71.42012152,41.762183527],[-71.42019752,41.761994527],[-71.42015252,41.761846528],[-71.420091521,41.761754527],[-71.41996952,41.761674527],[-71.419740521,41.761634528],[-71.41943552,41.761714527],[-71.41907852,41.761893527],[-71.41894652,41.761959527],[-71.41851952,41.762050527],[-71.41784852,41.762175528],[-71.41758652,41.762262527]]]]}}"}, +{"type": "precinct", "typeId": 715, "areaId": 25735, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":74,\"NAME\":\"0715\",\"SHAPE_Length\":0.051875743079346,\"SHAPE_Area\":-0.00011720955692812},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.425775523,41.772075529],[-71.425815523,41.77208753],[-71.427383524,41.772568529],[-71.427696524,41.772629529],[-71.427933523,41.772679529],[-71.428284523,41.772751529],[-71.429176524,41.772934529],[-71.430061524,41.773117529],[-71.430946525,41.773297529],[-71.431488525,41.77341153],[-71.431839525,41.773480529],[-71.432716525,41.773655529],[-71.433609525,41.773835529],[-71.434601526,41.77403753],[-71.435303526,41.774178529],[-71.435516526,41.774216529],[-71.436195527,41.774350529],[-71.436646527,41.774434529],[-71.437248527,41.774559529],[-71.437393526,41.774784529],[-71.437325527,41.774418529],[-71.437263527,41.77409453],[-71.437225527,41.773873529],[-71.437157526,41.773415529],[-71.437103526,41.773083529],[-71.437088527,41.772961529],[-71.437050527,41.772740529],[-71.436996527,41.772366529],[-71.436974527,41.772267529],[-71.436943526,41.772057529],[-71.436905526,41.771862529],[-71.436897527,41.771775529],[-71.436897527,41.771710529],[-71.436920527,41.771527528],[-71.436951526,41.771462529],[-71.436981526,41.771370528],[-71.437035527,41.771302529],[-71.437096527,41.771210528],[-71.437172527,41.771119528],[-71.437500527,41.770680529],[-71.437943527,41.770104528],[-71.438393527,41.769509529],[-71.438858527,41.768910528],[-71.438934527,41.768814528],[-71.439209527,41.768437528],[-71.438362527,41.768101528],[-71.437584527,41.767788528],[-71.437050526,41.767578528],[-71.436729526,41.767464528],[-71.436676526,41.767002528],[-71.436615526,41.766861527],[-71.436508526,41.766648527],[-71.436180526,41.765961528],[-71.435974526,41.765549528],[-71.435730526,41.765015527],[-71.435310525,41.764180527],[-71.435104526,41.763760527],[-71.434990526,41.763527527],[-71.434947526,41.763428528],[-71.435861526,41.763204527],[-71.436469526,41.763034527],[-71.436614526,41.762993527],[-71.436983526,41.762884527],[-71.436934526,41.762791527],[-71.436905526,41.762728527],[-71.436882526,41.762605527],[-71.436849526,41.762497527],[-71.436821526,41.762382527],[-71.436791526,41.762304527],[-71.436747525,41.762253527],[-71.436546526,41.762177527],[-71.436533525,41.762118527],[-71.436533525,41.762048527],[-71.436491526,41.762003527],[-71.436433526,41.761968526],[-71.436404526,41.761956527],[-71.436341525,41.761917527],[-71.436286526,41.761894527],[-71.436120526,41.761861527],[-71.436042526,41.761834527],[-71.435978526,41.761793526],[-71.435746526,41.761681527],[-71.435603525,41.761577526],[-71.435523525,41.761551527],[-71.435451525,41.761520526],[-71.435401525,41.761481526],[-71.435319526,41.761339527],[-71.435238525,41.761171526],[-71.435201526,41.761123527],[-71.435141525,41.761087527],[-71.435054525,41.761061527],[-71.434969526,41.761045527],[-71.434891525,41.761039527],[-71.434641525,41.761038527],[-71.434340525,41.761110526],[-71.434332525,41.761110526],[-71.434113525,41.761039527],[-71.434069525,41.760944527],[-71.434051525,41.760992526],[-71.434005525,41.761243527],[-71.433958524,41.761370527],[-71.433775525,41.761449527],[-71.433531524,41.761460526],[-71.433348525,41.761380527],[-71.433167525,41.761243527],[-71.433013525,41.761083527],[-71.432891524,41.760900527],[-71.432892524,41.760603526],[-71.432938525,41.760410526],[-71.432980525,41.760321527],[-71.433045524,41.760204527],[-71.433197525,41.760066527],[-71.433350525,41.759917527],[-71.433396524,41.759770526],[-71.433394524,41.759685526],[-71.433395524,41.759621527],[-71.433335524,41.759507527],[-71.433244524,41.759416526],[-71.433186524,41.759392526],[-71.433076525,41.759347527],[-71.432968524,41.759343526],[-71.432916525,41.759340526],[-71.432833524,41.759335526],[-71.432671524,41.759335526],[-71.432374525,41.759336526],[-71.432196524,41.759391527],[-71.432053524,41.759452526],[-71.431932524,41.759506527],[-71.431642524,41.759666526],[-71.431443524,41.759837527],[-71.431275524,41.760054527],[-71.431107524,41.760397527],[-71.430969524,41.760625527],[-71.430817524,41.760796526],[-71.430557524,41.760887527],[-71.430522524,41.760886527],[-71.430298524,41.760876526],[-71.429945523,41.760781527],[-71.429890523,41.760769527],[-71.429864523,41.760846527],[-71.429843523,41.760904527],[-71.429295524,41.762415527],[-71.429094523,41.762969527],[-71.428812523,41.763748527],[-71.428324523,41.765094528],[-71.427877523,41.766316528],[-71.427771523,41.766604528],[-71.426652523,41.769665529],[-71.426254523,41.770752529],[-71.425775523,41.772075529]]]]}}"}, +{"type": "precinct", "typeId": 716, "areaId": 25714, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":53,\"NAME\":\"0716\",\"SHAPE_Length\":0.12112223780144,\"SHAPE_Area\":-0.00025603678680865},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.476913541,41.788136531],[-71.476451541,41.787722531],[-71.47637054,41.787649531],[-71.47609854,41.787406531],[-71.47584054,41.787175531],[-71.47576054,41.787103531],[-71.47592054,41.78659853],[-71.47625054,41.785561531],[-71.47625054,41.78522953],[-71.47623454,41.78470353],[-71.47622954,41.78464553],[-71.477208541,41.78460453],[-71.47759354,41.78458953],[-71.478102541,41.78399953],[-71.47846254,41.78576753],[-71.478775541,41.78632453],[-71.478928541,41.786282531],[-71.479088541,41.786225531],[-71.479187541,41.78619053],[-71.479568541,41.78608053],[-71.480057542,41.78592353],[-71.480247541,41.78585953],[-71.480850542,41.78567553],[-71.481705542,41.78541253],[-71.481789542,41.78551153],[-71.482224542,41.78607253],[-71.482330542,41.786206531],[-71.482552542,41.78650353],[-71.482880542,41.78691953],[-71.483055542,41.78712953],[-71.483170542,41.787278531],[-71.483376542,41.78760253],[-71.483467543,41.78781253],[-71.483566543,41.788014531],[-71.483689542,41.78798153],[-71.483770542,41.78792653],[-71.483826542,41.78785453],[-71.483841543,41.78781253],[-71.483871543,41.787762531],[-71.483902542,41.78773953],[-71.483978543,41.787701531],[-71.484825543,41.78748453],[-71.485115543,41.788308531],[-71.485207544,41.788288531],[-71.485313543,41.788273531],[-71.485443543,41.78827753],[-71.485611543,41.788304531],[-71.485786543,41.788311531],[-71.486076543,41.78830453],[-71.485939543,41.78791153],[-71.485924544,41.78781553],[-71.485938543,41.787745531],[-71.485985544,41.787625531],[-71.486015543,41.787590531],[-71.486061544,41.78755653],[-71.486183544,41.78750353],[-71.486984543,41.78727053],[-71.487083543,41.78723653],[-71.487160543,41.787220531],[-71.487259543,41.78721353],[-71.487534544,41.787220531],[-71.487640544,41.78649953],[-71.487526544,41.78633553],[-71.487480544,41.78625953],[-71.487442544,41.78618353],[-71.487411544,41.78610353],[-71.487366544,41.78592053],[-71.487366544,41.78566853],[-71.487328544,41.78417653],[-71.487106543,41.78417253],[-71.486382543,41.78418853],[-71.486237543,41.784184529],[-71.486107543,41.784142529],[-71.485977543,41.78407353],[-71.485893543,41.78399353],[-71.485832544,41.78389453],[-71.485825543,41.78380653],[-71.485840543,41.78370353],[-71.485878543,41.78361253],[-71.485931543,41.783543529],[-71.486008543,41.78348653],[-71.486092543,41.783440529],[-71.486717543,41.783253529],[-71.486900544,41.783188529],[-71.487015544,41.783169529],[-71.487106543,41.78316253],[-71.487213544,41.783169529],[-71.487465544,41.783207529],[-71.488396544,41.783272529],[-71.488495544,41.783287529],[-71.489418545,41.783364529],[-71.489517545,41.783364529],[-71.489586544,41.783360529],[-71.489662544,41.783329529],[-71.489754544,41.783284529],[-71.489853544,41.783245529],[-71.489937544,41.783226529],[-71.490059545,41.78321953],[-71.490631544,41.783249529],[-71.490929545,41.783249529],[-71.491203545,41.78326153],[-71.491295545,41.783272529],[-71.491364545,41.783291529],[-71.491554545,41.783425529],[-71.491608545,41.78347153],[-71.492462546,41.784161529],[-71.493057545,41.78465753],[-71.493507546,41.78501553],[-71.494162546,41.78554253],[-71.494370546,41.78571053],[-71.495056547,41.78630953],[-71.495148546,41.78623653],[-71.495312546,41.78611853],[-71.495560547,41.78594253],[-71.495735547,41.785782529],[-71.495834547,41.78566053],[-71.495926547,41.78551953],[-71.496017546,41.78534453],[-71.496078546,41.78518353],[-71.496109547,41.78505053],[-71.496124547,41.784909529],[-71.496117546,41.78466153],[-71.496111546,41.784204529],[-71.496109547,41.784005529],[-71.496117546,41.783856529],[-71.496140547,41.783730529],[-71.496231546,41.78347453],[-71.496246546,41.783245529],[-71.496246546,41.783078529],[-71.496231546,41.782898529],[-71.496216546,41.782784529],[-71.496185547,41.782696529],[-71.496124547,41.782601529],[-71.496040546,41.782517529],[-71.495979546,41.782475529],[-71.495911547,41.782425529],[-71.495799546,41.782372529],[-71.495560546,41.782280529],[-71.495087546,41.782105529],[-71.494797546,41.782013529],[-71.494553546,41.781926529],[-71.494644546,41.781666529],[-71.494713546,41.781533529],[-71.494835546,41.781556529],[-71.494926546,41.781563529],[-71.495171546,41.781540529],[-71.495285546,41.781514529],[-71.496262547,41.781197528],[-71.496307546,41.781163529],[-71.496300547,41.781090529],[-71.496109547,41.781109529],[-71.495758547,41.781132529],[-71.495499546,41.781140529],[-71.495082546,41.781140529],[-71.494789546,41.781121529],[-71.494454545,41.781085529],[-71.494158546,41.781034529],[-71.493912545,41.780980528],[-71.493629546,41.780911529],[-71.493599545,41.780907529],[-71.493324545,41.780831529],[-71.492943545,41.780701529],[-71.492590545,41.780553528],[-71.492241545,41.780407529],[-71.491890545,41.780247529],[-71.491539545,41.780075529],[-71.491234545,41.779873528],[-71.490974545,41.779679528],[-71.490479544,41.779320529],[-71.490219545,41.779156529],[-71.490074544,41.779080529],[-71.489899544,41.779000528],[-71.489777544,41.778954528],[-71.489929544,41.778740528],[-71.489990544,41.778633529],[-71.490059544,41.778481529],[-71.490074544,41.778435528],[-71.490089544,41.778340529],[-71.490089544,41.778302529],[-71.490074544,41.778222528],[-71.490028544,41.778145528],[-71.489960544,41.778073529],[-71.489914544,41.778042528],[-71.489799544,41.777993529],[-71.489250544,41.777687528],[-71.488998544,41.777558528],[-71.488968544,41.777535528],[-71.488892544,41.777493528],[-71.488861544,41.777466529],[-71.488792544,41.777371529],[-71.488777543,41.777333529],[-71.488770544,41.777295528],[-71.488785544,41.777245528],[-71.488808544,41.777199528],[-71.488838543,41.777157529],[-71.488869544,41.777127528],[-71.488892544,41.777096528],[-71.489510544,41.776429528],[-71.489967544,41.775917528],[-71.490025544,41.775830528],[-71.490036544,41.775814528],[-71.490044544,41.775780528],[-71.490051544,41.775746528],[-71.490051544,41.775700528],[-71.490021544,41.775513528],[-71.490005544,41.775467528],[-71.490005544,41.775433528],[-71.489998544,41.775395528],[-71.489983544,41.775360528],[-71.489961544,41.775332528],[-71.489937544,41.775310528],[-71.489899544,41.775292528],[-71.489876544,41.775286527],[-71.489822544,41.775280528],[-71.489716544,41.775284528],[-71.489662544,41.775292528],[-71.489471544,41.775303528],[-71.489319544,41.775299528],[-71.489159544,41.775288527],[-71.488846544,41.775250528],[-71.488777543,41.775238528],[-71.488419544,41.775200528],[-71.488060543,41.775181528],[-71.487976544,41.775185528],[-71.486603543,41.775299528],[-71.486343543,41.775349528],[-71.485947543,41.775460528],[-71.485649543,41.775555528],[-71.485355543,41.775602528],[-71.486360542,41.774438528],[-71.488388543,41.773375527],[-71.488182543,41.773251528],[-71.487762544,41.772980528],[-71.487167543,41.772564527],[-71.486725543,41.772229527],[-71.486351543,41.771935527],[-71.485985543,41.771626527],[-71.485558543,41.771229528],[-71.485168543,41.770848527],[-71.484390541,41.770024527],[-71.484016542,41.769600527],[-71.483551541,41.769040527],[-71.483109541,41.768464526],[-71.482697541,41.767880526],[-71.482170541,41.767041526],[-71.482025541,41.766789526],[-71.48201054,41.767056526],[-71.482025541,41.767399527],[-71.482124541,41.768494527],[-71.482132541,41.768586527],[-71.482132541,41.768895527],[-71.482124541,41.769024527],[-71.482109541,41.769154527],[-71.482079541,41.769299526],[-71.482043541,41.769431527],[-71.482033541,41.769448527],[-71.481934541,41.769734527],[-71.481819541,41.769993527],[-71.481804541,41.770039527],[-71.481750541,41.770161527],[-71.481659541,41.770409528],[-71.481628541,41.770516527],[-71.481606541,41.770626527],[-71.481590541,41.770680527],[-71.481560541,41.770867527],[-71.481544541,41.771000527],[-71.481522541,41.771489527],[-71.481522541,41.771832528],[-71.481522541,41.771992527],[-71.481499541,41.772404527],[-71.481506541,41.772694527],[-71.481506541,41.772915528],[-71.481499541,41.773087527],[-71.481483542,41.773186528],[-71.481438541,41.773400528],[-71.481361541,41.773621528],[-71.481277541,41.773793528],[-71.481133541,41.774041528],[-71.481033541,41.774166528],[-71.480927541,41.774285528],[-71.480827541,41.774407528],[-71.480713541,41.774498528],[-71.480461541,41.774723528],[-71.480195541,41.774959528],[-71.48008054,41.775059528],[-71.48006454,41.775074528],[-71.479744541,41.775391528],[-71.479523541,41.775654529],[-71.479375541,41.775853528],[-71.479317541,41.775933528],[-71.479103541,41.776257529],[-71.47905054,41.776329528],[-71.47874554,41.776829528],[-71.47860054,41.777081528],[-71.47839454,41.777443529],[-71.47817254,41.777821528],[-71.47803554,41.777974529],[-71.47789054,41.778122529],[-71.47745554,41.778393529],[-71.47734854,41.778454529],[-71.47695254,41.778687529],[-71.476921539,41.778714529],[-71.47675154,41.778819529],[-71.47661654,41.778942529],[-71.47655554,41.778984529],[-71.476532539,41.779007529],[-71.47628854,41.779259529],[-71.476028539,41.779511529],[-71.47583854,41.779694529],[-71.47533454,41.780079529],[-71.475273539,41.78012153],[-71.475075539,41.780239529],[-71.47479254,41.78041153],[-71.474190539,41.78064453],[-71.473999539,41.780690529],[-71.473801539,41.780739529],[-71.473289539,41.780846529],[-71.472885538,41.78091553],[-71.472382538,41.78095753],[-71.472336539,41.780964529],[-71.472191538,41.780980529],[-71.472008538,41.78072453],[-71.471481538,41.780182529],[-71.470970538,41.77969053],[-71.469523538,41.77967253],[-71.468796537,41.779663529],[-71.466972537,41.779606529],[-71.466034537,41.77957253],[-71.465942536,41.77970953],[-71.465874536,41.77982453],[-71.465820537,41.779934529],[-71.465691536,41.78025153],[-71.465454536,41.78089253],[-71.465309536,41.78128953],[-71.465111536,41.78186153],[-71.464928536,41.78248353],[-71.464874536,41.78270053],[-71.464607536,41.78370353],[-71.464424536,41.78437853],[-71.464386536,41.78451253],[-71.464272536,41.784935531],[-71.464249536,41.78504653],[-71.467003537,41.785031531],[-71.467636538,41.78500853],[-71.469093538,41.784996531],[-71.469185538,41.784993531],[-71.469650538,41.785012531],[-71.470039538,41.78504253],[-71.470131538,41.785054531],[-71.470490538,41.78511553],[-71.470894538,41.785153531],[-71.471268538,41.78520653],[-71.471687539,41.78525253],[-71.472588539,41.78535553],[-71.472679539,41.78535153],[-71.472557539,41.78630553],[-71.472488539,41.78677853],[-71.472389539,41.787564531],[-71.472382539,41.787659531],[-71.472343539,41.787899531],[-71.472473539,41.787915531],[-71.472557539,41.787938531],[-71.472626539,41.78796453],[-71.472740539,41.788037531],[-71.47338754,41.78804053],[-71.473480539,41.78804153],[-71.474192539,41.78806353],[-71.47455654,41.788075531],[-71.474640539,41.78808253],[-71.47486154,41.788124531],[-71.47512154,41.788182531],[-71.475204539,41.78819753],[-71.47534954,41.788227531],[-71.47547154,41.788247531],[-71.47558654,41.788250531],[-71.47567754,41.788247531],[-71.47615154,41.788205531],[-71.47640154,41.788182531],[-71.476913541,41.788136531]]]]}}"}, +{"type": "precinct", "typeId": 717, "areaId": 25731, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":70,\"NAME\":\"0717\",\"SHAPE_Length\":0.047283195935167,\"SHAPE_Area\":-5.6346445195393e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.436943526,41.772057529],[-71.436974527,41.772267529],[-71.436996527,41.772366529],[-71.437050527,41.772740529],[-71.437088527,41.772961529],[-71.437103526,41.773083529],[-71.437157526,41.773415529],[-71.437225527,41.773873529],[-71.437263527,41.77409453],[-71.437325527,41.774418529],[-71.437393526,41.774784529],[-71.439667528,41.774628529],[-71.440269528,41.774586529],[-71.441711528,41.774495529],[-71.442078528,41.774468529],[-71.443077529,41.774407529],[-71.443756529,41.774361529],[-71.443703529,41.773953529],[-71.443687529,41.773671529],[-71.445045529,41.773579529],[-71.445564529,41.773556529],[-71.444839529,41.772911528],[-71.444870529,41.772896529],[-71.445862529,41.772587529],[-71.44590853,41.772587529],[-71.446187529,41.772647529],[-71.44656453,41.772728529],[-71.44663253,41.772725529],[-71.44666353,41.772721529],[-71.44672453,41.772698528],[-71.44676253,41.772671529],[-71.44693853,41.772076528],[-71.44716653,41.771374528],[-71.44747853,41.771361529],[-71.44750853,41.771456528],[-71.44763853,41.771605528],[-71.44782353,41.771595529],[-71.44785653,41.771597529],[-71.44798153,41.771723528],[-71.44801853,41.771799528],[-71.44803153,41.771847529],[-71.44820253,41.771808529],[-71.44847953,41.771866529],[-71.44944853,41.771653529],[-71.449631531,41.772297529],[-71.449707531,41.772484528],[-71.449791531,41.772560528],[-71.450462531,41.772911528],[-71.450768531,41.773079529],[-71.451256531,41.773339528],[-71.451549531,41.773036529],[-71.451721532,41.772858529],[-71.452202531,41.772358529],[-71.452682531,41.771866528],[-71.453224532,41.771302528],[-71.453346531,41.771168528],[-71.453776532,41.770724528],[-71.453665532,41.770652528],[-71.453611532,41.770607528],[-71.453565532,41.770561528],[-71.453508532,41.770522528],[-71.453427532,41.770481528],[-71.453109531,41.770348528],[-71.453019532,41.770322528],[-71.452918531,41.770299528],[-71.452838531,41.770268528],[-71.452768532,41.770217528],[-71.452723531,41.770167528],[-71.452654532,41.770088528],[-71.452591531,41.770026528],[-71.452340531,41.769836528],[-71.452243531,41.769741528],[-71.452195531,41.769670527],[-71.452152532,41.769565528],[-71.452116531,41.769439528],[-71.452091532,41.769386528],[-71.452047531,41.769331528],[-71.451938532,41.769229528],[-71.451907531,41.769173528],[-71.451857531,41.769001528],[-71.451857531,41.768698527],[-71.451847531,41.768636527],[-71.451822531,41.768580527],[-71.451789531,41.768528528],[-71.451749531,41.768481527],[-71.451702531,41.768436528],[-71.451644531,41.768396528],[-71.451575531,41.768362528],[-71.451494531,41.768332528],[-71.451264531,41.768268527],[-71.451163531,41.768251527],[-71.450961531,41.768249527],[-71.450856531,41.768256528],[-71.450795531,41.768290527],[-71.45075053,41.768342528],[-71.450667531,41.768462527],[-71.45059353,41.768591528],[-71.45053653,41.768648528],[-71.45045853,41.768700528],[-71.450377531,41.768742528],[-71.450300531,41.768772527],[-71.450257531,41.768779528],[-71.45020853,41.768787528],[-71.45013153,41.768785528],[-71.45004953,41.768772527],[-71.449907531,41.768730528],[-71.44984153,41.768696527],[-71.44978453,41.768656527],[-71.44971653,41.768594528],[-71.449673531,41.768547528],[-71.44960953,41.768431528],[-71.44953153,41.768311528],[-71.44948453,41.768257528],[-71.44944553,41.768204528],[-71.44942953,41.768149527],[-71.449437531,41.768093527],[-71.44946653,41.768038527],[-71.44960753,41.767813528],[-71.44958753,41.767746527],[-71.44954653,41.767699528],[-71.44949253,41.767647527],[-71.44944353,41.767609527],[-71.44733453,41.767445528],[-71.447052529,41.767437528],[-71.446587529,41.767407527],[-71.446556529,41.767670528],[-71.44653353,41.767819527],[-71.44647253,41.767910528],[-71.446373529,41.767964528],[-71.446297529,41.767964528],[-71.446093529,41.767894528],[-71.445763529,41.767781527],[-71.445488529,41.767681527],[-71.445114529,41.768307527],[-71.444763528,41.768937528],[-71.444550528,41.769352528],[-71.444542529,41.769452528],[-71.444572529,41.769547528],[-71.444633529,41.769635528],[-71.444672529,41.769696528],[-71.444687529,41.769741528],[-71.444366529,41.770226528],[-71.444031529,41.770749528],[-71.443642529,41.771366528],[-71.443465529,41.771627528],[-71.443199529,41.771641528],[-71.442406528,41.771695529],[-71.441415528,41.771767529],[-71.440505528,41.771828529],[-71.439868527,41.771873528],[-71.439403527,41.771916528],[-71.439159527,41.771924529],[-71.438708527,41.771950529],[-71.436943526,41.772057529]]]]}}"}, +{"type": "precinct", "typeId": 718, "areaId": 25727, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":66,\"NAME\":\"0718\",\"SHAPE_Length\":0.047464503540816,\"SHAPE_Area\":-0.00010499182305202},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.44857053,41.77950353],[-71.449142531,41.77995353],[-71.448990531,41.78075853],[-71.44893653,41.78103353],[-71.448868531,41.78136553],[-71.448845531,41.78143753],[-71.448677531,41.78177353],[-71.448647531,41.78184253],[-71.449471531,41.782071531],[-71.450302531,41.78229953],[-71.451126532,41.782536531],[-71.451347532,41.782597531],[-71.451447532,41.78260853],[-71.451530531,41.78260153],[-71.451859532,41.782559531],[-71.452774533,41.782460531],[-71.452980532,41.783451531],[-71.453178532,41.784439531],[-71.453491533,41.784520531],[-71.453964533,41.784634531],[-71.454155533,41.78466853],[-71.454254533,41.784676531],[-71.454422533,41.784680531],[-71.454651533,41.784657531],[-71.454826533,41.78463053],[-71.454964533,41.784596531],[-71.455055533,41.78456953],[-71.456001533,41.784294531],[-71.456099533,41.784268531],[-71.456993533,41.78402753],[-71.457260534,41.783982531],[-71.457291534,41.78382953],[-71.457298534,41.78375353],[-71.457359534,41.78350153],[-71.457413534,41.78315853],[-71.457428534,41.78292553],[-71.457413534,41.78267753],[-71.457397534,41.78251753],[-71.457352534,41.78225453],[-71.457321533,41.78213253],[-71.457298534,41.78200653],[-71.457230533,41.78175053],[-71.457153533,41.78149153],[-71.456978533,41.78086553],[-71.456886534,41.780514529],[-71.456810534,41.78021353],[-71.456674534,41.77971953],[-71.456528533,41.779187529],[-71.456505533,41.77908753],[-71.456490533,41.778977529],[-71.456474533,41.77875253],[-71.456474533,41.77865353],[-71.456482534,41.778553529],[-71.456520534,41.77828353],[-71.456528533,41.77826353],[-71.456650533,41.777611529],[-71.456772534,41.776963529],[-71.456810533,41.776802529],[-71.456909534,41.776303529],[-71.456985533,41.775925529],[-71.457008534,41.775834529],[-71.457047534,41.775654529],[-71.457184534,41.775006529],[-71.457291533,41.774468528],[-71.457314533,41.774380529],[-71.457352533,41.774228529],[-71.457352533,41.774208529],[-71.457443533,41.773770528],[-71.457481533,41.773606529],[-71.457657533,41.772736528],[-71.457710534,41.772496529],[-71.457954533,41.771305528],[-71.458000534,41.771065528],[-71.458138534,41.770382528],[-71.458259533,41.769774528],[-71.458397533,41.769040528],[-71.457146532,41.768864528],[-71.456558533,41.768700527],[-71.456314532,41.768620527],[-71.455876533,41.768496528],[-71.455376532,41.769059528],[-71.454597532,41.769875528],[-71.453776532,41.770724528],[-71.453346531,41.771168528],[-71.453224532,41.771302528],[-71.452682531,41.771866528],[-71.452202531,41.772358529],[-71.451721532,41.772858529],[-71.451549531,41.773036529],[-71.451256531,41.773339528],[-71.451042531,41.773556528],[-71.450241531,41.774388529],[-71.449837531,41.774800529],[-71.449707531,41.774956529],[-71.44963853,41.775017529],[-71.449593531,41.775067529],[-71.449448531,41.775200529],[-71.449379531,41.775269529],[-71.449333531,41.775303529],[-71.44917353,41.775441529],[-71.44911253,41.775486529],[-71.44860853,41.77584953],[-71.448540531,41.775902529],[-71.44804453,41.776249529],[-71.44794553,41.776322529],[-71.44736553,41.77674553],[-71.44678553,41.777161529],[-71.44643353,41.77740853],[-71.44635053,41.77746653],[-71.44614453,41.77761553],[-71.44702153,41.778313529],[-71.44731153,41.77853053],[-71.44818153,41.779206529],[-71.44857053,41.77950353]]]]}}"}, +{"type": "precinct", "typeId": 719, "areaId": 25723, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":62,\"NAME\":\"0719\",\"SHAPE_Length\":0.047626592771809,\"SHAPE_Area\":-0.00011613780477784},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.457954533,41.771305528],[-71.457710534,41.772496529],[-71.457657533,41.772736528],[-71.457481533,41.773606529],[-71.457443533,41.773770528],[-71.457352533,41.774208529],[-71.457352533,41.774228529],[-71.457314533,41.774380529],[-71.457291533,41.774468528],[-71.457184534,41.775006529],[-71.457047534,41.775654529],[-71.457008534,41.775834529],[-71.456985533,41.775925529],[-71.456909534,41.776303529],[-71.456810533,41.776802529],[-71.456772534,41.776963529],[-71.456650533,41.777611529],[-71.456528533,41.77826353],[-71.456520534,41.77828353],[-71.456482534,41.778553529],[-71.456474533,41.77865353],[-71.456474533,41.77875253],[-71.456490533,41.778977529],[-71.456505533,41.77908753],[-71.456528533,41.779187529],[-71.456674534,41.77971953],[-71.456810534,41.78021353],[-71.456886534,41.780514529],[-71.456978533,41.78086553],[-71.457153533,41.78149153],[-71.457230533,41.78175053],[-71.457298534,41.78200653],[-71.457321533,41.78213253],[-71.457352534,41.78225453],[-71.457397534,41.78251753],[-71.457413534,41.78267753],[-71.457428534,41.78292553],[-71.457413534,41.78315853],[-71.457359534,41.78350153],[-71.457298534,41.78375353],[-71.457291534,41.78382953],[-71.457260534,41.783982531],[-71.457657534,41.783905531],[-71.460182535,41.78360453],[-71.460411535,41.78357453],[-71.461105535,41.78347853],[-71.462044535,41.78331453],[-71.463905536,41.78300553],[-71.464249536,41.78293653],[-71.464325536,41.78291753],[-71.464500536,41.78285653],[-71.464684536,41.78278453],[-71.464874536,41.78270053],[-71.464928536,41.78248353],[-71.465111536,41.78186153],[-71.465309536,41.78128953],[-71.465454536,41.78089253],[-71.465691536,41.78025153],[-71.465820537,41.779934529],[-71.465874536,41.77982453],[-71.465942536,41.77970953],[-71.466034537,41.77957253],[-71.466972537,41.779606529],[-71.468796537,41.779663529],[-71.469523538,41.77967253],[-71.470970538,41.77969053],[-71.470268538,41.779000529],[-71.470070538,41.778790529],[-71.469734538,41.778328529],[-71.469711537,41.778302529],[-71.469658538,41.778237529],[-71.469269537,41.777680529],[-71.469193538,41.777577529],[-71.469124537,41.777470528],[-71.469048537,41.777375529],[-71.468972537,41.777288529],[-71.468893537,41.777214529],[-71.468823537,41.777171529],[-71.468788537,41.777146529],[-71.468735537,41.777108529],[-71.468689537,41.777054529],[-71.468658537,41.776997529],[-71.468636537,41.776936529],[-71.468636537,41.776894529],[-71.468636537,41.776852529],[-71.468651538,41.776764529],[-71.468658537,41.776677529],[-71.468636537,41.776486529],[-71.468622537,41.776416529],[-71.468608537,41.776358528],[-71.468606537,41.776348529],[-71.468590537,41.776265528],[-71.468521537,41.776055529],[-71.468498537,41.775948529],[-71.468468537,41.775765529],[-71.468452537,41.775586528],[-71.468452537,41.775231528],[-71.468460537,41.775059528],[-71.468468537,41.775010529],[-71.468506537,41.774746528],[-71.468575537,41.774475528],[-71.468773537,41.773915528],[-71.467789537,41.773407528],[-71.467300537,41.773137528],[-71.466934537,41.772889528],[-71.466675536,41.773075528],[-71.466469536,41.773186528],[-71.466309536,41.773228528],[-71.466156536,41.773232528],[-71.465912536,41.773198529],[-71.465790536,41.773167528],[-71.465584536,41.773117528],[-71.464851535,41.772950528],[-71.464485535,41.772862528],[-71.464088535,41.772766528],[-71.463074535,41.772538528],[-71.462700535,41.772454528],[-71.462134535,41.772320528],[-71.461975535,41.772282529],[-71.461731534,41.772259528],[-71.461624535,41.772259528],[-71.461494535,41.772259528],[-71.461311535,41.772273528],[-71.460960534,41.772301529],[-71.460732535,41.772328528],[-71.460175534,41.772381528],[-71.460060534,41.772389528],[-71.459969534,41.772374528],[-71.459923534,41.772351528],[-71.459900534,41.772336528],[-71.459869534,41.772293528],[-71.459793534,41.772076528],[-71.459656534,41.771759528],[-71.459518534,41.771534528],[-71.459442534,41.771397528],[-71.459320534,41.771447528],[-71.459183534,41.771450528],[-71.458740534,41.771401528],[-71.458351534,41.771366528],[-71.457954533,41.771305528]]]]}}"}, +{"type": "precinct", "typeId": 720, "areaId": 25722, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":61,\"NAME\":\"0720\",\"SHAPE_Length\":0.031795398787714,\"SHAPE_Area\":-4.2120866361008e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.457954533,41.771305528],[-71.458351534,41.771366528],[-71.458740534,41.771401528],[-71.459183534,41.771450528],[-71.459320534,41.771447528],[-71.459442534,41.771397528],[-71.459518534,41.771534528],[-71.459656534,41.771759528],[-71.459793534,41.772076528],[-71.459869534,41.772293528],[-71.459900534,41.772336528],[-71.459923534,41.772351528],[-71.459969534,41.772374528],[-71.460060534,41.772389528],[-71.460175534,41.772381528],[-71.460732535,41.772328528],[-71.460960534,41.772301529],[-71.461311535,41.772273528],[-71.461494535,41.772259528],[-71.461624535,41.772259528],[-71.461731534,41.772259528],[-71.461975535,41.772282529],[-71.462134535,41.772320528],[-71.462700535,41.772454528],[-71.463074535,41.772538528],[-71.464088535,41.772766528],[-71.464485535,41.772862528],[-71.464851535,41.772950528],[-71.465584536,41.773117528],[-71.465790536,41.773167528],[-71.465912536,41.773198529],[-71.466156536,41.773232528],[-71.466309536,41.773228528],[-71.466469536,41.773186528],[-71.466675536,41.773075528],[-71.466934537,41.772889528],[-71.467300537,41.773137528],[-71.467789537,41.773407528],[-71.468773537,41.773915528],[-71.469017537,41.773232528],[-71.469086537,41.773026528],[-71.469124537,41.772900528],[-71.469261537,41.772519528],[-71.469315537,41.772347528],[-71.469376537,41.772175528],[-71.469490537,41.771881528],[-71.469528538,41.771798527],[-71.469200537,41.771710528],[-71.468987537,41.771645528],[-71.468781537,41.771565527],[-71.468552537,41.771447527],[-71.468315537,41.771305528],[-71.468102537,41.771187528],[-71.467987537,41.771138528],[-71.467766537,41.771061528],[-71.467539537,41.771031528],[-71.467424536,41.770994528],[-71.467351536,41.770947528],[-71.467361537,41.770626527],[-71.467323537,41.770329528],[-71.467255536,41.769947527],[-71.467155536,41.769616527],[-71.467041536,41.769131527],[-71.467033536,41.769001527],[-71.467026536,41.768753527],[-71.467056536,41.768433527],[-71.467072536,41.768067527],[-71.467003536,41.767544527],[-71.466286536,41.767613527],[-71.466087536,41.767628527],[-71.464928535,41.767758527],[-71.464760535,41.767773527],[-71.463753535,41.767876527],[-71.463776535,41.767960527],[-71.462830535,41.768074527],[-71.462929535,41.768406527],[-71.462502535,41.768464527],[-71.462219534,41.768536528],[-71.462051535,41.768570527],[-71.461182535,41.768761527],[-71.460899534,41.768818527],[-71.460564534,41.768872527],[-71.460342534,41.768898527],[-71.460213534,41.768902528],[-71.459724533,41.768841528],[-71.459389533,41.768811527],[-71.459335533,41.768807528],[-71.458900534,41.768753527],[-71.458466534,41.768704527],[-71.458397533,41.769040528],[-71.458259533,41.769774528],[-71.458138534,41.770382528],[-71.458000534,41.771065528],[-71.457954533,41.771305528]]]]}}"}, +{"type": "precinct", "typeId": 721, "areaId": 25732, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":71,\"NAME\":\"0721\",\"SHAPE_Length\":0.067672914521373,\"SHAPE_Area\":-0.00011744871082408},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.433572526,41.786601531],[-71.433696526,41.786624532],[-71.433949526,41.786672532],[-71.434042526,41.786689532],[-71.434156526,41.786710532],[-71.434541527,41.787037532],[-71.435163527,41.787572531],[-71.435810527,41.788128532],[-71.436280527,41.788551532],[-71.436407527,41.788469532],[-71.436569528,41.788365532],[-71.436821528,41.788201532],[-71.436906527,41.788147532],[-71.436996528,41.788090532],[-71.437569527,41.787747531],[-71.438293528,41.787331532],[-71.438789528,41.786995532],[-71.439384528,41.786591532],[-71.439438528,41.786526531],[-71.439537528,41.786400532],[-71.439812528,41.785996531],[-71.440025528,41.785691531],[-71.440186528,41.785473531],[-71.440201528,41.785454531],[-71.440575528,41.785199531],[-71.440680529,41.785281531],[-71.441162528,41.785656532],[-71.441841529,41.785202531],[-71.441994528,41.785088531],[-71.442055529,41.785015532],[-71.442101529,41.784886531],[-71.442177529,41.784558531],[-71.442390529,41.784588531],[-71.443031529,41.784672531],[-71.44312353,41.784687531],[-71.443748529,41.784775531],[-71.443947529,41.784874531],[-71.44438953,41.785122531],[-71.444572529,41.784478531],[-71.44477853,41.783718531],[-71.44499253,41.782963531],[-71.44512953,41.782418531],[-71.445251529,41.781968531],[-71.44532053,41.78175053],[-71.44540453,41.78149553],[-71.44554153,41.78112453],[-71.44559553,41.780976531],[-71.44572453,41.78077053],[-71.44602253,41.78037353],[-71.44625953,41.78046553],[-71.44690753,41.78070153],[-71.44728953,41.78041953],[-71.44760953,41.78018653],[-71.447937531,41.77995753],[-71.448265531,41.77971753],[-71.44857053,41.77950353],[-71.44818153,41.779206529],[-71.44731153,41.77853053],[-71.44702153,41.778313529],[-71.44614453,41.77761553],[-71.44635053,41.77746653],[-71.44643353,41.77740853],[-71.44678553,41.777161529],[-71.44736553,41.77674553],[-71.44794553,41.776322529],[-71.44804453,41.776249529],[-71.448540531,41.775902529],[-71.44860853,41.77584953],[-71.44911253,41.775486529],[-71.44917353,41.775441529],[-71.449333531,41.775303529],[-71.449379531,41.775269529],[-71.449448531,41.775200529],[-71.449593531,41.775067529],[-71.44963853,41.775017529],[-71.449707531,41.774956529],[-71.449837531,41.774800529],[-71.450241531,41.774388529],[-71.451042531,41.773556528],[-71.451256531,41.773339528],[-71.450768531,41.773079529],[-71.450462531,41.772911528],[-71.449791531,41.772560528],[-71.449707531,41.772484528],[-71.449631531,41.772297529],[-71.44944853,41.771653529],[-71.44847953,41.771866529],[-71.44820253,41.771808529],[-71.44803153,41.771847529],[-71.44801853,41.771799528],[-71.44798153,41.771723528],[-71.44785653,41.771597529],[-71.44782353,41.771595529],[-71.44763853,41.771605528],[-71.44750853,41.771456528],[-71.44747853,41.771361529],[-71.44716653,41.771374528],[-71.44693853,41.772076528],[-71.44676253,41.772671529],[-71.44672453,41.772698528],[-71.44666353,41.772721529],[-71.44663253,41.772725529],[-71.44656453,41.772728529],[-71.446187529,41.772647529],[-71.44590853,41.772587529],[-71.445862529,41.772587529],[-71.444870529,41.772896529],[-71.444839529,41.772911528],[-71.445564529,41.773556529],[-71.445045529,41.773579529],[-71.443687529,41.773671529],[-71.443703529,41.773953529],[-71.443756529,41.774361529],[-71.443077529,41.774407529],[-71.442078528,41.774468529],[-71.441711528,41.774495529],[-71.440269528,41.774586529],[-71.439667528,41.774628529],[-71.437393526,41.774784529],[-71.437508526,41.775448529],[-71.437569527,41.77578853],[-71.437614527,41.77612053],[-71.437622527,41.77618153],[-71.437770527,41.77701153],[-71.437787527,41.77721653],[-71.437790527,41.77735153],[-71.437778527,41.77746753],[-71.437752527,41.77757653],[-71.437691527,41.77777153],[-71.437597527,41.77787153],[-71.437532527,41.77792553],[-71.437660527,41.77797453],[-71.437523527,41.77871453],[-71.437363527,41.77946953],[-71.438728528,41.78022853],[-71.438942528,41.78034653],[-71.439857528,41.780861531],[-71.439995528,41.780934531],[-71.440804528,41.781384531],[-71.440025528,41.781952531],[-71.439438527,41.782372531],[-71.439407528,41.782399531],[-71.438766528,41.782864531],[-71.438148528,41.783318531],[-71.437515527,41.783783531],[-71.436897527,41.784233531],[-71.436279526,41.784687531],[-71.436157527,41.784779532],[-71.435883527,41.784974532],[-71.435616526,41.785160531],[-71.435097526,41.785519532],[-71.435036526,41.785565531],[-71.434927527,41.785640532],[-71.434196526,41.786152531],[-71.434151527,41.786187531],[-71.434105526,41.786213531],[-71.433800527,41.786438532],[-71.433746526,41.786473532],[-71.433572526,41.786601531]]]]}}"}, +{"type": "precinct", "typeId": 722, "areaId": 25726, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":65,\"NAME\":\"0722\",\"SHAPE_Length\":0.046690828571187,\"SHAPE_Area\":-7.9706688324527e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.44438953,41.785122531],[-71.444901529,41.785805531],[-71.44597653,41.787274532],[-71.446320531,41.787751531],[-71.44665553,41.788201531],[-71.446762531,41.788311532],[-71.44753353,41.788712532],[-71.448135531,41.788948532],[-71.448517531,41.789006532],[-71.448845531,41.789040532],[-71.449089532,41.789112532],[-71.449295531,41.789250531],[-71.449806532,41.789666532],[-71.450294532,41.790055532],[-71.450775532,41.790451532],[-71.451591532,41.789902532],[-71.452202532,41.789482532],[-71.452347533,41.789391531],[-71.452370532,41.789460532],[-71.452415532,41.789658532],[-71.452425533,41.789681531],[-71.452441533,41.789767532],[-71.453995533,41.788646531],[-71.454315533,41.788415531],[-71.454706534,41.788129531],[-71.455362533,41.787649532],[-71.455919533,41.787241531],[-71.456061533,41.787155531],[-71.456170534,41.787089531],[-71.457513534,41.786100531],[-71.458326534,41.785501531],[-71.458976535,41.78502353],[-71.459569534,41.78459453],[-71.460176535,41.784155531],[-71.460778535,41.78372053],[-71.460970535,41.78358153],[-71.461105535,41.78347853],[-71.460411535,41.78357453],[-71.460182535,41.78360453],[-71.457657534,41.783905531],[-71.457260534,41.783982531],[-71.456993533,41.78402753],[-71.456099533,41.784268531],[-71.456001533,41.784294531],[-71.455055533,41.78456953],[-71.454964533,41.784596531],[-71.454826533,41.78463053],[-71.454651533,41.784657531],[-71.454422533,41.784680531],[-71.454254533,41.784676531],[-71.454155533,41.78466853],[-71.453964533,41.784634531],[-71.453491533,41.784520531],[-71.453178532,41.784439531],[-71.452980532,41.783451531],[-71.452774533,41.782460531],[-71.451859532,41.782559531],[-71.451530531,41.78260153],[-71.451447532,41.78260853],[-71.451347532,41.782597531],[-71.451126532,41.782536531],[-71.450302531,41.78229953],[-71.449471531,41.782071531],[-71.448647531,41.78184253],[-71.448677531,41.78177353],[-71.448845531,41.78143753],[-71.448868531,41.78136553],[-71.44893653,41.78103353],[-71.448990531,41.78075853],[-71.449142531,41.77995353],[-71.44857053,41.77950353],[-71.448265531,41.77971753],[-71.447937531,41.77995753],[-71.44760953,41.78018653],[-71.44728953,41.78041953],[-71.44690753,41.78070153],[-71.44625953,41.78046553],[-71.44602253,41.78037353],[-71.44572453,41.78077053],[-71.44559553,41.780976531],[-71.44554153,41.78112453],[-71.44540453,41.78149553],[-71.44532053,41.78175053],[-71.445251529,41.781968531],[-71.44512953,41.782418531],[-71.44499253,41.782963531],[-71.44477853,41.783718531],[-71.444572529,41.784478531],[-71.44438953,41.785122531]]]]}}"}, +{"type": "precinct", "typeId": 723, "areaId": 25740, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":79,\"NAME\":\"0723\",\"SHAPE_Length\":0.072352481770219,\"SHAPE_Area\":-0.00013374908989044},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.384752163,41.785499221],[-71.389485512,41.786356533],[-71.389517511,41.786357533],[-71.390380512,41.786379533],[-71.391380512,41.786404533],[-71.391777512,41.786251533],[-71.395042513,41.786156533],[-71.397728514,41.786038533],[-71.398247515,41.786019533],[-71.398293514,41.786015532],[-71.401123515,41.785916532],[-71.401657516,41.785897532],[-71.403419516,41.785862532],[-71.403656516,41.785862532],[-71.403896516,41.785860532],[-71.403900517,41.785208533],[-71.403802516,41.785024532],[-71.403441516,41.784338532],[-71.403127516,41.783738532],[-71.403053516,41.782368532],[-71.403069515,41.781350532],[-71.403625516,41.780575531],[-71.404060516,41.780102532],[-71.405021516,41.779504531],[-71.405447516,41.779239531],[-71.405797517,41.779381531],[-71.406036516,41.778855531],[-71.406708517,41.778324531],[-71.408211518,41.777913531],[-71.408590517,41.77795953],[-71.409104518,41.776390531],[-71.409019517,41.776375531],[-71.408828517,41.77634353],[-71.408676518,41.776318531],[-71.408218517,41.776257531],[-71.407822517,41.776196531],[-71.407898517,41.77593653],[-71.407982517,41.77565853],[-71.408079518,41.77527353],[-71.408119517,41.77511353],[-71.408134517,41.77494553],[-71.408104517,41.774815531],[-71.407951517,41.77447553],[-71.407890517,41.77433153],[-71.407578517,41.77349953],[-71.407227517,41.77259953],[-71.407112517,41.77262253],[-71.406349516,41.77278653],[-71.405403516,41.77298853],[-71.405342516,41.77300353],[-71.404671516,41.77312953],[-71.404366516,41.77319053],[-71.403954516,41.77325553],[-71.403160516,41.77427353],[-71.402817515,41.77470853],[-71.402359515,41.775303531],[-71.402145515,41.775574531],[-71.401863515,41.77593653],[-71.401688515,41.776162531],[-71.401489515,41.77642153],[-71.401314515,41.776646531],[-71.401016515,41.777028531],[-71.400841515,41.777245531],[-71.400604515,41.777542531],[-71.400436514,41.777825531],[-71.400352515,41.777977531],[-71.400375515,41.778061531],[-71.399734514,41.778168531],[-71.399300515,41.778244531],[-71.397827514,41.778515531],[-71.396255514,41.778824531],[-71.394714513,41.779122532],[-71.393593512,41.779328531],[-71.392853512,41.779484531],[-71.392380513,41.779580531],[-71.392097512,41.779629532],[-71.391747512,41.779686532],[-71.391487512,41.779736531],[-71.391174512,41.779793531],[-71.391121488,41.779803409],[-71.391285976,41.780087131],[-71.391469923,41.780075916],[-71.391711488,41.780648437],[-71.391743772,41.780727503],[-71.3918929,41.781092767],[-71.391905414,41.781209387],[-71.39188715,41.781605161],[-71.391816354,41.781680424],[-71.391779191,41.781722285],[-71.391742007,41.781759115],[-71.391730713,41.78177031],[-71.3916646,41.781804185],[-71.391562722,41.781847654],[-71.391473385,41.781864492],[-71.391370135,41.781870043],[-71.391265053,41.781874815],[-71.391149473,41.781890073],[-71.391043443,41.781894867],[-71.390939313,41.781896895],[-71.390814528,41.781899429],[-71.390708535,41.781900678],[-71.390611885,41.781905548],[-71.390493565,41.781915155],[-71.390409071,41.781922964],[-71.390311545,41.781922185],[-71.390207416,41.78192348],[-71.390124856,41.781925643],[-71.390056452,41.78192233],[-71.389955273,41.781913817],[-71.389875383,41.781926524],[-71.389790684,41.781946934],[-71.389722844,41.781970972],[-71.389667057,41.782004239],[-71.389623324,41.782046047],[-71.389592657,41.782094247],[-71.389566559,41.782150891],[-71.389556552,41.782195728],[-71.389579533,41.782228909],[-71.389635003,41.782220181],[-71.389686186,41.782181285],[-71.38972999,41.782133897],[-71.389780228,41.782093581],[-71.389842651,41.782056845],[-71.389916078,41.782035648],[-71.390000566,41.782031383],[-71.390112181,41.782030164],[-71.390222847,41.782029629],[-71.390295045,41.782030156],[-71.390416952,41.782031804],[-71.39051546,41.782029749],[-71.390623353,41.782025666],[-71.390716204,41.782026418],[-71.390819356,41.782025098],[-71.390908553,41.782018779],[-71.391007977,41.782017433],[-71.391083017,41.782017344],[-71.391185219,41.782017395],[-71.391275295,41.782015285],[-71.391362527,41.782014567],[-71.391428186,41.782015087],[-71.391508746,41.782021315],[-71.39154072,41.782030835],[-71.391553579,41.782032883],[-71.391573161,41.782179742],[-71.391589375,41.782294994],[-71.39160903,41.782434855],[-71.391644414,41.78245124],[-71.391679905,41.782531566],[-71.391694673,41.782615897],[-71.391704835,41.782695993],[-71.391704912,41.782759157],[-71.391677592,41.782834781],[-71.391620405,41.782901001],[-71.391551304,41.782948206],[-71.391464393,41.782993176],[-71.391328927,41.783023006],[-71.391224694,41.783029928],[-71.391092312,41.783042975],[-71.39099377,41.783045717],[-71.390901893,41.783045676],[-71.390817299,41.78305767],[-71.390752868,41.783107028],[-71.390727016,41.783144737],[-71.390693751,41.783139537],[-71.390664236,41.783139303],[-71.390612486,41.783152244],[-71.390608278,41.783183113],[-71.39062177,41.783226736],[-71.390609728,41.783282799],[-71.390629618,41.783336995],[-71.390669821,41.783413117],[-71.390713918,41.783480851],[-71.390721515,41.783541278],[-71.390679397,41.783603418],[-71.390671654,41.783610866],[-71.390661681,41.783690257],[-71.390664443,41.783736706],[-71.390376094,41.78383024],[-71.390081292,41.783925916],[-71.389569528,41.784106546],[-71.388844788,41.784361383],[-71.388760074,41.784247003],[-71.388288913,41.784408983],[-71.388270467,41.784386394],[-71.388181864,41.784417981],[-71.388206426,41.784472936],[-71.387138194,41.784875298],[-71.387134187,41.784877603],[-71.387048954,41.784885844],[-71.386982024,41.784911277],[-71.386897215,41.784939413],[-71.386808678,41.784967523],[-71.386751201,41.784986745],[-71.386668708,41.784983256],[-71.386582457,41.784979787],[-71.386481026,41.784990229],[-71.38640008,41.785010662],[-71.386330478,41.785026259],[-71.386264427,41.78498647],[-71.386186852,41.784966909],[-71.386119679,41.785008487],[-71.386112374,41.785061787],[-71.386100499,41.78510733],[-71.386034169,41.785155906],[-71.385923992,41.785187333],[-71.385828815,41.785220329],[-71.385712103,41.785249577],[-71.385593455,41.78528518],[-71.385485174,41.785315899],[-71.38535339,41.785349271],[-71.385244229,41.785376513],[-71.385090835,41.785413933],[-71.384961966,41.785440995],[-71.384837661,41.785477918],[-71.384752163,41.785499221]]]]}}"}, +{"type": "precinct", "typeId": 724, "areaId": 25739, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":78,\"NAME\":\"0724\",\"SHAPE_Length\":0.060575747793816,\"SHAPE_Area\":-9.3082774183941e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.385916521,41.76737221],[-71.385909631,41.767448624],[-71.385861576,41.767554871],[-71.385801474,41.76763316],[-71.385789931,41.767648174],[-71.385766347,41.767769584],[-71.385751318,41.767890386],[-71.385741227,41.767999094],[-71.385734858,41.768111397],[-71.385724699,41.768224382],[-71.385717348,41.768338834],[-71.385736039,41.768427149],[-71.385797119,41.768538559],[-71.3858583,41.768645028],[-71.385910929,41.768750712],[-71.385968362,41.768852147],[-71.386026601,41.768964262],[-71.38608887,41.76906003],[-71.386144013,41.769057615],[-71.386114314,41.768940749],[-71.386057826,41.768840047],[-71.38600232,41.768737196],[-71.38594594,41.768627964],[-71.385904705,41.768522383],[-71.385872025,41.768415415],[-71.385855607,41.76830293],[-71.385854339,41.768191306],[-71.385858537,41.768097456],[-71.385875811,41.768020062],[-71.385912233,41.767997595],[-71.385974987,41.767991734],[-71.386056,41.767973153],[-71.386123761,41.767951655],[-71.386164282,41.767907901],[-71.386177602,41.767838302],[-71.386179521,41.76777219],[-71.386182426,41.767701093],[-71.386185998,41.767650648],[-71.386206748,41.767593931],[-71.386224166,41.767572726],[-71.386247735,41.767545786],[-71.386263428,41.767550284],[-71.387752411,41.767581455],[-71.387886576,41.76763231],[-71.388040868,41.767667701],[-71.388191231,41.767714386],[-71.388301283,41.767789937],[-71.388396857,41.767882466],[-71.388491519,41.76797209],[-71.388611036,41.768050577],[-71.388747765,41.768121352],[-71.388878781,41.768192784],[-71.388988555,41.768288276],[-71.38907828,41.768390655],[-71.389172772,41.76849169],[-71.389257969,41.768579863],[-71.389350502,41.768683708],[-71.389435528,41.768783224],[-71.389496682,41.76889111],[-71.389530212,41.769004435],[-71.389555994,41.769129095],[-71.389547705,41.769242128],[-71.389600303,41.769352018],[-71.389592162,41.769396742],[-71.389582756,41.769448599],[-71.389513108,41.769536966],[-71.38939038,41.769618467],[-71.389321269,41.76973167],[-71.389257022,41.769841356],[-71.389200418,41.769946887],[-71.389124849,41.770049381],[-71.389049382,41.770145495],[-71.388989904,41.770252395],[-71.388969301,41.77036672],[-71.388960064,41.770479706],[-71.388957517,41.770592768],[-71.388957284,41.770674547],[-71.389027027,41.770780383],[-71.389077804,41.770883182],[-71.389078298,41.770915885],[-71.389061619,41.770951315],[-71.389020772,41.770953128],[-71.389013643,41.77111947],[-71.389046879,41.771119753],[-71.388845676,41.772169904],[-71.388789547,41.772175818],[-71.388742987,41.772442836],[-71.388675792,41.772823492],[-71.388614826,41.772835073],[-71.388561673,41.773098494],[-71.388472783,41.773428337],[-71.388440055,41.773557217],[-71.388427875,41.773692589],[-71.388420793,41.773795035],[-71.388432044,41.773931321],[-71.388454134,41.773965189],[-71.388516253,41.774082178],[-71.388615842,41.774066815],[-71.388655013,41.774081169],[-71.388714695,41.774106154],[-71.388787411,41.774137623],[-71.388852366,41.774187266],[-71.388889396,41.774220553],[-71.389028836,41.774445557],[-71.389086873,41.774521126],[-71.389110199,41.774529702],[-71.389304794,41.774766354],[-71.389523311,41.775038681],[-71.389539773,41.775201317],[-71.389579128,41.77534058],[-71.389567058,41.775466828],[-71.389518802,41.775565461],[-71.389433898,41.775692118],[-71.389401662,41.775695106],[-71.389368782,41.775699053],[-71.389332035,41.77571354],[-71.38919455,41.775753176],[-71.389051402,41.775799073],[-71.388889676,41.775828738],[-71.388735425,41.775864013],[-71.388584765,41.775907089],[-71.388452859,41.77595311],[-71.38830792,41.775991297],[-71.388168573,41.776029536],[-71.388027255,41.776076142],[-71.387963816,41.776119874],[-71.388007517,41.776147611],[-71.388113503,41.776144901],[-71.388250254,41.776089097],[-71.38839241,41.776052325],[-71.388528042,41.776007725],[-71.388665562,41.775965963],[-71.388782118,41.775945814],[-71.388859223,41.775930978],[-71.388971038,41.7759143],[-71.389074421,41.775896837],[-71.389168422,41.775881423],[-71.389259477,41.775873689],[-71.389364404,41.775882252],[-71.389455635,41.775861186],[-71.389530172,41.77582947],[-71.389612194,41.77579783],[-71.389697026,41.775766192],[-71.389788254,41.775746544],[-71.389882927,41.77574867],[-71.389960528,41.775765416],[-71.390033986,41.775810903],[-71.390077725,41.775834409],[-71.39010994,41.775879606],[-71.390141879,41.775943715],[-71.390174976,41.775991016],[-71.390225038,41.776033532],[-71.390260309,41.776060459],[-71.39027969,41.776071386],[-71.390402543,41.776353568],[-71.390697441,41.776864076],[-71.390932611,41.777287053],[-71.390996075,41.777444794],[-71.391168632,41.777443334],[-71.391177382,41.777490407],[-71.391022603,41.777493416],[-71.391032999,41.777758842],[-71.391136033,41.777768773],[-71.391175824,41.777815463],[-71.391189999,41.777852662],[-71.391194225,41.777901033],[-71.391187066,41.777924558],[-71.391174663,41.777960016],[-71.391136938,41.777974457],[-71.391135331,41.778021473],[-71.391114235,41.77819329],[-71.391096531,41.778183325],[-71.391032281,41.778219351],[-71.390966654,41.778490491],[-71.390904816,41.778689346],[-71.390850029,41.778783696],[-71.390880978,41.778783931],[-71.391011537,41.778904277],[-71.391040978,41.779218294],[-71.3910775,41.779698689],[-71.391091769,41.779752147],[-71.391121488,41.779803409],[-71.391174512,41.779793531],[-71.391487512,41.779736531],[-71.391747512,41.779686532],[-71.392097512,41.779629532],[-71.392380513,41.779580531],[-71.392853512,41.779484531],[-71.393593512,41.779328531],[-71.394714513,41.779122532],[-71.396255514,41.778824531],[-71.397827514,41.778515531],[-71.399300515,41.778244531],[-71.399734514,41.778168531],[-71.400375515,41.778061531],[-71.400352515,41.777977531],[-71.400436514,41.777825531],[-71.400604515,41.777542531],[-71.400841515,41.777245531],[-71.401016515,41.777028531],[-71.401314515,41.776646531],[-71.401489515,41.77642153],[-71.401688515,41.776162531],[-71.401863515,41.77593653],[-71.402145515,41.775574531],[-71.402359515,41.775303531],[-71.402817515,41.77470853],[-71.403160516,41.77427353],[-71.403954516,41.77325553],[-71.403801516,41.77327053],[-71.403427515,41.77330853],[-71.402870516,41.77332053],[-71.402321515,41.77333153],[-71.401855515,41.77333953],[-71.400673514,41.77335853],[-71.399788515,41.773373531],[-71.398903514,41.77338853],[-71.398064514,41.77339653],[-71.398010514,41.77339653],[-71.397339513,41.773430531],[-71.397314514,41.773429531],[-71.397041514,41.77322453],[-71.396790513,41.77303753],[-71.396423513,41.77277453],[-71.396004513,41.77247353],[-71.395760513,41.77229753],[-71.395409513,41.77203853],[-71.395073512,41.77177553],[-71.394989513,41.77169553],[-71.394920512,41.77163453],[-71.394882512,41.77159253],[-71.394630512,41.77132553],[-71.394325513,41.77099353],[-71.393768512,41.77039053],[-71.393623512,41.77023453],[-71.393593512,41.77019553],[-71.393173512,41.76976453],[-71.392761512,41.76931453],[-71.392632512,41.76918153],[-71.392441511,41.768952529],[-71.392311512,41.76875053],[-71.392258512,41.768643529],[-71.392220512,41.768578529],[-71.390755511,41.768875529],[-71.390678511,41.768544529],[-71.390671511,41.76833853],[-71.390701511,41.76823853],[-71.390762511,41.768189529],[-71.390121511,41.767956529],[-71.389832511,41.76787253],[-71.389587511,41.76777753],[-71.389122511,41.768132529],[-71.38891651,41.76796853],[-71.38844351,41.767662529],[-71.38809251,41.76742253],[-71.38737551,41.767407529],[-71.38684851,41.76740353],[-71.386047509,41.76738053],[-71.385916521,41.76737221]]]]}}"}, +{"type": "precinct", "typeId": 725, "areaId": 25737, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":76,\"NAME\":\"0725\",\"SHAPE_Length\":0.11892467699936,\"SHAPE_Area\":-0.00025781365233348},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.420766522,41.785944532],[-71.421472522,41.785930532],[-71.421602522,41.785928532],[-71.421647522,41.785926532],[-71.421701522,41.785924532],[-71.421967522,41.785912532],[-71.422089522,41.785920532],[-71.422890523,41.786175532],[-71.423110523,41.786208532],[-71.423740522,41.786152532],[-71.424190523,41.786185532],[-71.424518524,41.786171532],[-71.425204523,41.786143532],[-71.426262524,41.786091531],[-71.426398524,41.786090531],[-71.429008524,41.786095532],[-71.431564525,41.786091531],[-71.431473525,41.785736532],[-71.431435525,41.785607531],[-71.431374525,41.785374531],[-71.431305526,41.785099531],[-71.431290525,41.785054532],[-71.431213525,41.784771531],[-71.431114525,41.784455531],[-71.431068525,41.784302531],[-71.430923525,41.783860531],[-71.430901525,41.783772531],[-71.430847525,41.783593532],[-71.430687525,41.783108531],[-71.430679525,41.783070531],[-71.430565524,41.782696531],[-71.430641525,41.782736531],[-71.430641525,41.782673531],[-71.430649525,41.782605531],[-71.430666525,41.782549531],[-71.430710525,41.782402531],[-71.430771525,41.782257531],[-71.430817525,41.782177531],[-71.430855525,41.782112531],[-71.430977525,41.781948531],[-71.431046525,41.781872531],[-71.431190525,41.78174253],[-71.431335525,41.781628531],[-71.431549525,41.781479531],[-71.431839525,41.781289531],[-71.432422525,41.78092753],[-71.433174526,41.780430531],[-71.433708526,41.78011053],[-71.433868526,41.780022531],[-71.434311526,41.779770531],[-71.434578526,41.77962553],[-71.435143526,41.77931653],[-71.435623526,41.77906153],[-71.435638526,41.77903453],[-71.435837526,41.778950531],[-71.435692527,41.77892353],[-71.434654526,41.77871453],[-71.433945526,41.77857253],[-71.433029525,41.77838953],[-71.432487525,41.77828653],[-71.432022525,41.778191531],[-71.431077525,41.77800253],[-71.430279524,41.77784353],[-71.429680524,41.77772253],[-71.429359524,41.77766153],[-71.428482524,41.77748553],[-71.427582523,41.77731053],[-71.426682524,41.77713053],[-71.426416523,41.77708053],[-71.426323523,41.77706253],[-71.426094523,41.77701653],[-71.425880523,41.77697453],[-71.425781523,41.77695153],[-71.425613523,41.77692553],[-71.425232523,41.77684153],[-71.424868523,41.77676953],[-71.424175522,41.77663153],[-71.424121523,41.77662153],[-71.424507522,41.77555453],[-71.424767523,41.77485553],[-71.425585523,41.772597529],[-71.425775523,41.772075529],[-71.426254523,41.770752529],[-71.426652523,41.769665529],[-71.427771523,41.766604528],[-71.426445523,41.766980528],[-71.426338522,41.766991528],[-71.426270523,41.766991528],[-71.426186523,41.766983528],[-71.426140522,41.766964528],[-71.426064522,41.766911528],[-71.426033523,41.766884528],[-71.425957523,41.766766528],[-71.425789522,41.766308528],[-71.425667523,41.766331528],[-71.425591523,41.766331528],[-71.425529523,41.766323528],[-71.425232522,41.766270528],[-71.425148522,41.766550528],[-71.425110522,41.766640528],[-71.424973522,41.766995529],[-71.424690522,41.767723528],[-71.424416522,41.768475529],[-71.424149522,41.769173529],[-71.422661522,41.769413529],[-71.422134522,41.769513528],[-71.421921522,41.768875528],[-71.420174521,41.769177529],[-71.419342521,41.769314529],[-71.41924352,41.769307529],[-71.41920552,41.769295529],[-71.41918252,41.769287529],[-71.419090521,41.769184528],[-71.41904452,41.768830529],[-71.419014521,41.768704529],[-71.41895352,41.768437529],[-71.41886952,41.768029529],[-71.418762521,41.767716529],[-71.41875952,41.767669528],[-71.41875552,41.767617529],[-71.41880552,41.767517529],[-71.41854952,41.767378528],[-71.41848752,41.766968528],[-71.41842352,41.766593528],[-71.41833752,41.766092528],[-71.41826752,41.765778528],[-71.41822852,41.765671529],[-71.41801552,41.764698528],[-71.41794352,41.764388528],[-71.41783952,41.763939527],[-71.417694519,41.763237527],[-71.417599519,41.762380527],[-71.41758652,41.762262527],[-71.417405519,41.762324527],[-71.41706652,41.762499527],[-71.41665752,41.762769527],[-71.416336519,41.762860528],[-71.41601652,41.762905527],[-71.415806519,41.762910528],[-71.415131519,41.762927527],[-71.414750518,41.762927527],[-71.414383518,41.762961527],[-71.414124519,41.763064528],[-71.413971518,41.763132528],[-71.413803518,41.763235527],[-71.413677518,41.763336528],[-71.413589518,41.763554528],[-71.413543518,41.763691528],[-71.413492518,41.763826528],[-71.413482518,41.763851528],[-71.413314518,41.764091528],[-71.412642519,41.764553528],[-71.412352518,41.764839528],[-71.412183518,41.765066529],[-71.411419518,41.766094529],[-71.411160518,41.766311529],[-71.410728518,41.766548529],[-71.410702518,41.766562529],[-71.410259518,41.766664529],[-71.409751517,41.766783528],[-71.409678518,41.766791529],[-71.409234517,41.766851529],[-71.408900517,41.766896529],[-71.408629517,41.766953529],[-71.408375517,41.767045529],[-71.408114517,41.767157528],[-71.407777517,41.767272528],[-71.407191516,41.767412529],[-71.406449516,41.767468528],[-71.405646516,41.767592529],[-71.405203516,41.767618529],[-71.405214515,41.767806529],[-71.405220516,41.767922529],[-71.405243516,41.768189529],[-71.405304516,41.769261529],[-71.405319516,41.769410529],[-71.405319516,41.769474529],[-71.405388516,41.77056253],[-71.405396516,41.77079453],[-71.405388516,41.77089353],[-71.405373516,41.771176529],[-71.405289516,41.77147753],[-71.405273516,41.77151153],[-71.405151516,41.771756529],[-71.404724516,41.77231353],[-71.404297515,41.77283553],[-71.403954516,41.77325553],[-71.404366516,41.77319053],[-71.404671516,41.77312953],[-71.405342516,41.77300353],[-71.405403516,41.77298853],[-71.406349516,41.77278653],[-71.407112517,41.77262253],[-71.407227517,41.77259953],[-71.407578517,41.77349953],[-71.407890517,41.77433153],[-71.407951517,41.77447553],[-71.408104517,41.774815531],[-71.408134517,41.77494553],[-71.408119517,41.77511353],[-71.408079518,41.77527353],[-71.407982517,41.77565853],[-71.407898517,41.77593653],[-71.407822517,41.776196531],[-71.408218517,41.776257531],[-71.408676518,41.776318531],[-71.408828517,41.77634353],[-71.409019517,41.776375531],[-71.409104518,41.776390531],[-71.409175517,41.77574453],[-71.409187518,41.77570053],[-71.409222518,41.775516531],[-71.409371517,41.77511353],[-71.409480518,41.77493753],[-71.409904518,41.77415153],[-71.410000518,41.77390853],[-71.410352518,41.77360253],[-71.410630518,41.77332153],[-71.411083518,41.773044529],[-71.412046518,41.772422529],[-71.412666518,41.77265253],[-71.412804518,41.772698529],[-71.412958518,41.772752529],[-71.413211518,41.77284253],[-71.413246519,41.772854529],[-71.413285519,41.77286253],[-71.413651519,41.77293853],[-71.414093519,41.77301753],[-71.414162519,41.77303053],[-71.414391519,41.773087529],[-71.414520519,41.77311753],[-71.414795519,41.773240529],[-71.414841519,41.77326653],[-71.41496352,41.773339529],[-71.415161519,41.773453529],[-71.41555852,41.773709529],[-71.41597052,41.77399153],[-71.41610752,41.774079529],[-71.41647352,41.774311529],[-71.416504519,41.774331529],[-71.41675252,41.774507529],[-71.41691652,41.77462453],[-71.41697752,41.774662529],[-71.41701452,41.77468953],[-71.41711452,41.77476253],[-71.41742752,41.77497953],[-71.41748852,41.77501753],[-71.41780152,41.77525753],[-71.41799252,41.77539953],[-71.41828252,41.77557053],[-71.41844252,41.77566253],[-71.41855552,41.77571253],[-71.418762521,41.77580353],[-71.41880752,41.77581753],[-71.41909852,41.77603653],[-71.419346521,41.77613153],[-71.420221521,41.77654453],[-71.420250521,41.776551531],[-71.421356522,41.77677653],[-71.421394522,41.77679553],[-71.421898522,41.77688653],[-71.422600522,41.777039531],[-71.423050522,41.77712753],[-71.423653522,41.77724553],[-71.423846522,41.77728253],[-71.423887523,41.77729053],[-71.423767522,41.77765453],[-71.423521523,41.77856653],[-71.423402523,41.77907053],[-71.423269523,41.779606531],[-71.423152523,41.780019531],[-71.423064522,41.78029953],[-71.422957523,41.78059153],[-71.422664523,41.781390531],[-71.422661522,41.781414531],[-71.422643523,41.781445531],[-71.422553522,41.781693531],[-71.422523522,41.781776531],[-71.422481522,41.781890531],[-71.422361522,41.782221531],[-71.422348522,41.782255531],[-71.422337522,41.782284532],[-71.422291522,41.782415531],[-71.421979522,41.783003532],[-71.421604522,41.783707532],[-71.421223522,41.784424532],[-71.420801522,41.785827532],[-71.420766522,41.785944532]]]]}}"}, +{"type": "precinct", "typeId": 726, "areaId": 25733, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":72,\"NAME\":\"0726\",\"SHAPE_Length\":0.058887348180399,\"SHAPE_Area\":-0.00010244981668361},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.431564525,41.786091531],[-71.432976526,41.786091531],[-71.433090526,41.786091531],[-71.433340526,41.786369532],[-71.433502526,41.786534532],[-71.433572526,41.786601531],[-71.433746526,41.786473532],[-71.433800527,41.786438532],[-71.434105526,41.786213531],[-71.434151527,41.786187531],[-71.434196526,41.786152531],[-71.434927527,41.785640532],[-71.435036526,41.785565531],[-71.435097526,41.785519532],[-71.435616526,41.785160531],[-71.435883527,41.784974532],[-71.436157527,41.784779532],[-71.436279526,41.784687531],[-71.436897527,41.784233531],[-71.437515527,41.783783531],[-71.438148528,41.783318531],[-71.438766528,41.782864531],[-71.439407528,41.782399531],[-71.439438527,41.782372531],[-71.440025528,41.781952531],[-71.440804528,41.781384531],[-71.439995528,41.780934531],[-71.439857528,41.780861531],[-71.438942528,41.78034653],[-71.438728528,41.78022853],[-71.437363527,41.77946953],[-71.437523527,41.77871453],[-71.437660527,41.77797453],[-71.437532527,41.77792553],[-71.437597527,41.77787153],[-71.437691527,41.77777153],[-71.437752527,41.77757653],[-71.437778527,41.77746753],[-71.437790527,41.77735153],[-71.437787527,41.77721653],[-71.437770527,41.77701153],[-71.437622527,41.77618153],[-71.437614527,41.77612053],[-71.437569527,41.77578853],[-71.437508526,41.775448529],[-71.437393526,41.774784529],[-71.437248527,41.774559529],[-71.436646527,41.774434529],[-71.436195527,41.774350529],[-71.435516526,41.774216529],[-71.435303526,41.774178529],[-71.434601526,41.77403753],[-71.433609525,41.773835529],[-71.432716525,41.773655529],[-71.431839525,41.773480529],[-71.431488525,41.77341153],[-71.430946525,41.773297529],[-71.430061524,41.773117529],[-71.429176524,41.772934529],[-71.428284523,41.772751529],[-71.427933523,41.772679529],[-71.427696524,41.772629529],[-71.427383524,41.772568529],[-71.425815523,41.77208753],[-71.425775523,41.772075529],[-71.425585523,41.772597529],[-71.424767523,41.77485553],[-71.424507522,41.77555453],[-71.424121523,41.77662153],[-71.424175522,41.77663153],[-71.424868523,41.77676953],[-71.425232523,41.77684153],[-71.425613523,41.77692553],[-71.425781523,41.77695153],[-71.425880523,41.77697453],[-71.426094523,41.77701653],[-71.426323523,41.77706253],[-71.426416523,41.77708053],[-71.426682524,41.77713053],[-71.427582523,41.77731053],[-71.428482524,41.77748553],[-71.429359524,41.77766153],[-71.429680524,41.77772253],[-71.430279524,41.77784353],[-71.431077525,41.77800253],[-71.432022525,41.778191531],[-71.432487525,41.77828653],[-71.433029525,41.77838953],[-71.433945526,41.77857253],[-71.434654526,41.77871453],[-71.435692527,41.77892353],[-71.435837526,41.778950531],[-71.435638526,41.77903453],[-71.435623526,41.77906153],[-71.435143526,41.77931653],[-71.434578526,41.77962553],[-71.434311526,41.779770531],[-71.433868526,41.780022531],[-71.433708526,41.78011053],[-71.433174526,41.780430531],[-71.432422525,41.78092753],[-71.431839525,41.781289531],[-71.431549525,41.781479531],[-71.431335525,41.781628531],[-71.431190525,41.78174253],[-71.431046525,41.781872531],[-71.430977525,41.781948531],[-71.430855525,41.782112531],[-71.430817525,41.782177531],[-71.430771525,41.782257531],[-71.430710525,41.782402531],[-71.430666525,41.782549531],[-71.430649525,41.782605531],[-71.430641525,41.782673531],[-71.430641525,41.782736531],[-71.430641525,41.782881531],[-71.430649525,41.782898531],[-71.430656525,41.782975531],[-71.430679525,41.783070531],[-71.430687525,41.783108531],[-71.430847525,41.783593532],[-71.430901525,41.783772531],[-71.430923525,41.783860531],[-71.431068525,41.784302531],[-71.431114525,41.784455531],[-71.431213525,41.784771531],[-71.431290525,41.785054532],[-71.431305526,41.785099531],[-71.431374525,41.785374531],[-71.431435525,41.785607531],[-71.431473525,41.785736532],[-71.431564525,41.786091531]]]]}}"}, +{"type": "precinct", "typeId": 727, "areaId": 25738, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":77,\"NAME\":\"0727\",\"SHAPE_Length\":0.077001651885582,\"SHAPE_Area\":-0.00010209469286171},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.384235814,41.75859725],[-71.384280298,41.758674386],[-71.384326883,41.758738077],[-71.384419285,41.758783588],[-71.384508069,41.758819901],[-71.384899553,41.75913449],[-71.385058135,41.759269484],[-71.385145982,41.759369006],[-71.385137083,41.759392415],[-71.385138557,41.759422284],[-71.385202348,41.759412857],[-71.38523032,41.759381074],[-71.385272692,41.759342285],[-71.385288533,41.759296906],[-71.385226626,41.759243102],[-71.385145865,41.759177708],[-71.385086937,41.759115377],[-71.385036666,41.759045279],[-71.38496831,41.758977884],[-71.38487868,41.758935921],[-71.384805207,41.758894821],[-71.384669132,41.758779242],[-71.384608487,41.758704057],[-71.384561024,41.758635402],[-71.384511839,41.758556798],[-71.384379687,41.758434133],[-71.384306435,41.758440669],[-71.384143299,41.758360417],[-71.38398556,41.758233976],[-71.383024377,41.757450449],[-71.381862156,41.756503012],[-71.381518081,41.75621691],[-71.381136714,41.755899827],[-71.381116395,41.755837507],[-71.380971508,41.755810527],[-71.380971203,41.75581047],[-71.380974434,41.75582458],[-71.381010816,41.755936493],[-71.38134372,41.75621673],[-71.381516592,41.756362263],[-71.381962542,41.756722176],[-71.382587724,41.757228541],[-71.383024103,41.757601064],[-71.383212593,41.757761978],[-71.383693335,41.758146984],[-71.384049398,41.758418661],[-71.384235814,41.75859725]]],[[[-71.392258512,41.768643529],[-71.392311512,41.76875053],[-71.392441511,41.768952529],[-71.392632512,41.76918153],[-71.392761512,41.76931453],[-71.393173512,41.76976453],[-71.393593512,41.77019553],[-71.393623512,41.77023453],[-71.393768512,41.77039053],[-71.394325513,41.77099353],[-71.394630512,41.77132553],[-71.394882512,41.77159253],[-71.394920512,41.77163453],[-71.394989513,41.77169553],[-71.395073512,41.77177553],[-71.395409513,41.77203853],[-71.395760513,41.77229753],[-71.396004513,41.77247353],[-71.396423513,41.77277453],[-71.396790513,41.77303753],[-71.397041514,41.77322453],[-71.397314514,41.773429531],[-71.397339513,41.773430531],[-71.398010514,41.77339653],[-71.398064514,41.77339653],[-71.398903514,41.77338853],[-71.399788515,41.773373531],[-71.400673514,41.77335853],[-71.401855515,41.77333953],[-71.402321515,41.77333153],[-71.402870516,41.77332053],[-71.403427515,41.77330853],[-71.403801516,41.77327053],[-71.403954516,41.77325553],[-71.404297515,41.77283553],[-71.404724516,41.77231353],[-71.405151516,41.771756529],[-71.405273516,41.77151153],[-71.405289516,41.77147753],[-71.405373516,41.771176529],[-71.405388516,41.77089353],[-71.405396516,41.77079453],[-71.405388516,41.77056253],[-71.405319516,41.769474529],[-71.405319516,41.769410529],[-71.405304516,41.769261529],[-71.405243516,41.768189529],[-71.405220516,41.767922529],[-71.405214515,41.767806529],[-71.405203516,41.767618529],[-71.405086516,41.767626529],[-71.404261515,41.767785529],[-71.403849515,41.767853529],[-71.403468515,41.767864529],[-71.403026515,41.767807529],[-71.402690515,41.767703529],[-71.402355515,41.767532529],[-71.402080515,41.767223529],[-71.401776515,41.766869529],[-71.401563515,41.766697529],[-71.401395514,41.766560529],[-71.401151515,41.766503529],[-71.400846514,41.766514529],[-71.400678514,41.766674529],[-71.400616514,41.766845529],[-71.400601514,41.767073529],[-71.400585514,41.767382529],[-71.400585514,41.767622529],[-71.400569515,41.767804529],[-71.400477514,41.767964529],[-71.400263514,41.768158529],[-71.400203514,41.768189529],[-71.400019514,41.76828453],[-71.399805514,41.76834153],[-71.399577514,41.768329529],[-71.399378514,41.768272529],[-71.399134514,41.768157529],[-71.398052514,41.767665529],[-71.397640514,41.767516529],[-71.397113513,41.767406529],[-71.397091513,41.767402529],[-71.396435513,41.767264529],[-71.396121513,41.767175529],[-71.396069512,41.767161529],[-71.395886513,41.767046529],[-71.395734513,41.766898529],[-71.395628513,41.766692529],[-71.395598513,41.766395529],[-71.395603512,41.766002529],[-71.395523512,41.765194529],[-71.395412512,41.764845529],[-71.395204513,41.764653529],[-71.394731512,41.764253528],[-71.394457512,41.764115528],[-71.394121512,41.764046529],[-71.393725512,41.764023529],[-71.392962512,41.763943528],[-71.391969512,41.763872529],[-71.391800511,41.763911529],[-71.391550511,41.764016528],[-71.391314511,41.764192528],[-71.391077511,41.764364529],[-71.391054511,41.764381529],[-71.390534511,41.764399529],[-71.390416511,41.764435529],[-71.390415807,41.764435355],[-71.39042356,41.764579128],[-71.390227605,41.764600323],[-71.390190936,41.764572983],[-71.38954289,41.764658829],[-71.389551938,41.764690191],[-71.389491962,41.764698961],[-71.389479868,41.764680357],[-71.38933955,41.764729024],[-71.389331205,41.764714723],[-71.389179317,41.764776803],[-71.389196992,41.764801129],[-71.389185618,41.764807636],[-71.389166355,41.764818663],[-71.389122824,41.764873781],[-71.389092455,41.764966325],[-71.389089078,41.764976613],[-71.389069029,41.764982859],[-71.389063009,41.76507314],[-71.389089669,41.765076596],[-71.389103748,41.765078416],[-71.389082091,41.765131611],[-71.389014331,41.765154529],[-71.388995727,41.765261744],[-71.388976045,41.765374651],[-71.38895541,41.765490439],[-71.388944283,41.765601251],[-71.388914081,41.765720484],[-71.388857966,41.765792581],[-71.388711194,41.765826948],[-71.388560208,41.765825041],[-71.3884047,41.765806709],[-71.388254274,41.765763569],[-71.388134587,41.76569791],[-71.388022682,41.765618789],[-71.38793752,41.765530615],[-71.387893444,41.7654243],[-71.387882772,41.765308299],[-71.387868671,41.765231423],[-71.387860852,41.765195968],[-71.387922476,41.765188459],[-71.387864499,41.764926302],[-71.387978775,41.764905854],[-71.38796432,41.764787013],[-71.387680306,41.764787536],[-71.387616443,41.764538157],[-71.387730753,41.764515628],[-71.387713433,41.764463539],[-71.387664144,41.764456767],[-71.38764461,41.76436063],[-71.387619965,41.764357542],[-71.387598151,41.763957726],[-71.387643371,41.763915394],[-71.387559185,41.763759711],[-71.387485495,41.763663841],[-71.387442899,41.763655658],[-71.38740457,41.763478272],[-71.387293411,41.763481685],[-71.387292813,41.76345678],[-71.387403092,41.763449822],[-71.387405959,41.763382316],[-71.38735523,41.763344189],[-71.387335252,41.763344764],[-71.387230954,41.762936452],[-71.387129266,41.762939165],[-71.387129682,41.762910739],[-71.387220925,41.762907193],[-71.387208365,41.762789039],[-71.387118944,41.762798282],[-71.387108241,41.762683721],[-71.387151494,41.762647791],[-71.387173752,41.762618106],[-71.387143944,41.762511187],[-71.387134795,41.762485519],[-71.387105307,41.762423401],[-71.38700972,41.762134633],[-71.386955935,41.761976327],[-71.386864515,41.761994098],[-71.38675754,41.761703831],[-71.386679516,41.761712422],[-71.38663772,41.761579832],[-71.386582819,41.761501155],[-71.386581087,41.761356782],[-71.386537558,41.761081968],[-71.386622411,41.760993755],[-71.386604032,41.760884767],[-71.386532375,41.760781831],[-71.386481682,41.760672605],[-71.38647309,41.760608518],[-71.386472491,41.760584322],[-71.386469158,41.760551593],[-71.386308344,41.760241697],[-71.386109147,41.760289136],[-71.385994668,41.760325201],[-71.385977283,41.76034572],[-71.385955362,41.760375039],[-71.385913598,41.760415567],[-71.385883423,41.760466535],[-71.385852297,41.76051892],[-71.385834426,41.760572827],[-71.385843055,41.760632615],[-71.38586423,41.760679746],[-71.385893887,41.760731871],[-71.38590364,41.760778167],[-71.385893478,41.760825038],[-71.385868103,41.760872489],[-71.385838768,41.760931965],[-71.385821138,41.760969521],[-71.385803406,41.76101348],[-71.385787461,41.761065972],[-71.385746868,41.761066023],[-71.385639293,41.761066213],[-71.385645644,41.761153007],[-71.385682145,41.761255702],[-71.385720985,41.761262418],[-71.385774838,41.761415053],[-71.385768885,41.761895706],[-71.385746064,41.761898359],[-71.385736809,41.762345941],[-71.385727488,41.762796358],[-71.385673792,41.762899054],[-71.385638051,41.763004033],[-71.38560272,41.763084794],[-71.385558027,41.763156969],[-71.38551359,41.763205681],[-71.385476958,41.763244499],[-71.385442433,41.763266968],[-71.385413762,41.763278145],[-71.385327951,41.763301592],[-71.385179707,41.763306795],[-71.385151668,41.763340727],[-71.385157419,41.763404057],[-71.385159386,41.763465942],[-71.385191114,41.7635046],[-71.38526343,41.763495936],[-71.385321407,41.763494301],[-71.385463166,41.763476948],[-71.385485679,41.763562432],[-71.385584255,41.763644309],[-71.385617596,41.763703596],[-71.385654477,41.763782141],[-71.38568677,41.763847098],[-71.385722496,41.763939822],[-71.385755316,41.764035378],[-71.385778845,41.764115923],[-71.385807139,41.764197204],[-71.385856255,41.764283674],[-71.385902571,41.764364402],[-71.385944893,41.764458595],[-71.385974905,41.764552708],[-71.385997313,41.764646035],[-71.3860458,41.764709019],[-71.386049054,41.765079521],[-71.386018946,41.765125526],[-71.385995858,41.765209226],[-71.385993689,41.765296012],[-71.385989176,41.765411861],[-71.385982979,41.765513507],[-71.38597689,41.765605892],[-71.385971639,41.765707539],[-71.385972137,41.765805693],[-71.385983397,41.765881171],[-71.385982387,41.765951561],[-71.385981515,41.766012711],[-71.385977561,41.766089478],[-71.385954984,41.766608512],[-71.385943586,41.766870006],[-71.385918667,41.767348399],[-71.385916521,41.76737221],[-71.386047509,41.76738053],[-71.38684851,41.76740353],[-71.38737551,41.767407529],[-71.38809251,41.76742253],[-71.38844351,41.767662529],[-71.38891651,41.76796853],[-71.389122511,41.768132529],[-71.389587511,41.76777753],[-71.389832511,41.76787253],[-71.390121511,41.767956529],[-71.390762511,41.768189529],[-71.390701511,41.76823853],[-71.390671511,41.76833853],[-71.390678511,41.768544529],[-71.390755511,41.768875529],[-71.392220512,41.768578529],[-71.392258512,41.768643529]]]]}}"}, +{"type": "precinct", "typeId": 728, "areaId": 25728, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":67,\"NAME\":\"0728\",\"SHAPE_Length\":0.06128341119352,\"SHAPE_Area\":-0.00013765343445698},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.455345531,41.750722524],[-71.456116531,41.750882524],[-71.456831532,41.751030524],[-71.459541533,41.751591524],[-71.459740532,41.751629525],[-71.460518533,41.751793524],[-71.460861533,41.751865524],[-71.460976533,41.751889524],[-71.461357534,41.751980525],[-71.461586534,41.752041524],[-71.462036534,41.752175525],[-71.462296533,41.752262524],[-71.462563534,41.752358524],[-71.463036534,41.752545525],[-71.463463534,41.752732524],[-71.463921534,41.752938524],[-71.464012534,41.752995525],[-71.464249534,41.753113524],[-71.464302535,41.753052525],[-71.464523534,41.752766524],[-71.465111535,41.751995524],[-71.465706535,41.751248524],[-71.466309535,41.750454524],[-71.466812535,41.749802523],[-71.467354535,41.749142523],[-71.467601535,41.748825523],[-71.467751536,41.748631523],[-71.468147535,41.748162523],[-71.468735535,41.747498523],[-71.468475536,41.747380523],[-71.468124536,41.747242523],[-71.467926536,41.747204523],[-71.467667535,41.747185523],[-71.467514535,41.747181523],[-71.467133535,41.747128523],[-71.467003535,41.747090523],[-71.466980535,41.747078523],[-71.466919535,41.747036523],[-71.466776535,41.746885523],[-71.466729535,41.746836523],[-71.466682534,41.746785523],[-71.466425535,41.746493523],[-71.466395535,41.746459523],[-71.466164535,41.746197523],[-71.464953534,41.744885522],[-71.464790534,41.744709522],[-71.464622534,41.744519522],[-71.463852534,41.743672523],[-71.463425533,41.743203523],[-71.463295533,41.743061522],[-71.463722533,41.742821522],[-71.465179534,41.742100522],[-71.465637534,41.741887522],[-71.464882534,41.740933522],[-71.464737534,41.740792522],[-71.464340534,41.740387522],[-71.463913533,41.739876522],[-71.463707533,41.739525521],[-71.463501534,41.739251521],[-71.463318533,41.739056521],[-71.463219533,41.738930522],[-71.463127533,41.738797522],[-71.462799533,41.739029522],[-71.462105533,41.739617521],[-71.461769532,41.739228521],[-71.461700533,41.739148522],[-71.461502533,41.738774522],[-71.461494533,41.738755522],[-71.461472533,41.738575522],[-71.461464533,41.738289522],[-71.461578532,41.737225521],[-71.461670532,41.736107521],[-71.461693532,41.735878521],[-71.461700533,41.735703521],[-71.461678533,41.735543521],[-71.461517532,41.734986521],[-71.461479532,41.73487952],[-71.461159533,41.733841521],[-71.460846532,41.73299452],[-71.460609532,41.73236952],[-71.460602532,41.73230452],[-71.460211532,41.73230552],[-71.460153532,41.73233352],[-71.459089532,41.732843521],[-71.458525532,41.73317052],[-71.458390532,41.733268521],[-71.458090531,41.733485521],[-71.457686531,41.73382552],[-71.457323531,41.734187521],[-71.456998531,41.734574521],[-71.456716531,41.734984521],[-71.456491531,41.735408521],[-71.456368531,41.735728521],[-71.456271531,41.736079521],[-71.456208531,41.736388521],[-71.456163531,41.736694521],[-71.456140531,41.737001522],[-71.456145531,41.737308522],[-71.456176531,41.737548522],[-71.456436531,41.738849522],[-71.456627531,41.739621522],[-71.457229531,41.742132523],[-71.457474532,41.743095522],[-71.457507532,41.743227522],[-71.457604532,41.743606523],[-71.458100532,41.745757523],[-71.458140532,41.746007523],[-71.458161532,41.746269523],[-71.458165532,41.746532523],[-71.458146532,41.746793524],[-71.458117532,41.746980523],[-71.458076532,41.747167523],[-71.458024532,41.747351523],[-71.457976532,41.747490524],[-71.457861532,41.747763524],[-71.457774532,41.747942524],[-71.457679532,41.748119524],[-71.457571532,41.748292524],[-71.457456532,41.748449524],[-71.457204531,41.748756524],[-71.456898532,41.749053524],[-71.456797531,41.749151524],[-71.456269531,41.749678524],[-71.455794532,41.750132524],[-71.455447532,41.750567524],[-71.455389532,41.750656524],[-71.455366532,41.750691524],[-71.455345531,41.750722524]]]]}}"}, +{"type": "precinct", "typeId": 729, "areaId": 25729, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":68,\"NAME\":\"0729\",\"SHAPE_Length\":0.06189417957263,\"SHAPE_Area\":-0.00015170796629353},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.446538528,41.748895524],[-71.446615528,41.748910524],[-71.446691529,41.748926524],[-71.447159529,41.749020524],[-71.447556528,41.749104524],[-71.447906529,41.749180524],[-71.448547529,41.749318524],[-71.45112453,41.749847524],[-71.45166853,41.749958524],[-71.45188753,41.749998524],[-71.452133531,41.750042524],[-71.45243853,41.750119524],[-71.455345531,41.750722524],[-71.455366532,41.750691524],[-71.455389532,41.750656524],[-71.455447532,41.750567524],[-71.455794532,41.750132524],[-71.456269531,41.749678524],[-71.456797531,41.749151524],[-71.456898532,41.749053524],[-71.457204531,41.748756524],[-71.457456532,41.748449524],[-71.457571532,41.748292524],[-71.457679532,41.748119524],[-71.457774532,41.747942524],[-71.457861532,41.747763524],[-71.457976532,41.747490524],[-71.458024532,41.747351523],[-71.458076532,41.747167523],[-71.458117532,41.746980523],[-71.458146532,41.746793524],[-71.458165532,41.746532523],[-71.458161532,41.746269523],[-71.458140532,41.746007523],[-71.458100532,41.745757523],[-71.457604532,41.743606523],[-71.457507532,41.743227522],[-71.457474532,41.743095522],[-71.457229531,41.742132523],[-71.456627531,41.739621522],[-71.456436531,41.738849522],[-71.456176531,41.737548522],[-71.456145531,41.737308522],[-71.456140531,41.737001522],[-71.456163531,41.736694521],[-71.456208531,41.736388521],[-71.456271531,41.736079521],[-71.456368531,41.735728521],[-71.456491531,41.735408521],[-71.456716531,41.734984521],[-71.456998531,41.734574521],[-71.457323531,41.734187521],[-71.457686531,41.73382552],[-71.458090531,41.733485521],[-71.458390532,41.733268521],[-71.458525532,41.73317052],[-71.459089532,41.732843521],[-71.460153532,41.73233352],[-71.460211532,41.73230552],[-71.459973531,41.73231352],[-71.457588531,41.73235052],[-71.456186531,41.73237252],[-71.45609653,41.73237252],[-71.456007531,41.73236652],[-71.45534253,41.732373521],[-71.45490753,41.732451521],[-71.45441953,41.732634521],[-71.45389653,41.73289552],[-71.45366953,41.733012521],[-71.453460529,41.733195521],[-71.453286529,41.73333852],[-71.453129529,41.73353452],[-71.45300753,41.733716521],[-71.452937529,41.733873521],[-71.45286753,41.734095521],[-71.45285053,41.734343521],[-71.45297153,41.734773521],[-71.45321553,41.735296521],[-71.45342453,41.735635521],[-71.45358053,41.735935521],[-71.45375453,41.736248521],[-71.45382453,41.736483521],[-71.45389353,41.736679521],[-71.45391153,41.736940522],[-71.45384153,41.737201521],[-71.45373653,41.737436521],[-71.45349253,41.737697522],[-71.45317853,41.737971522],[-71.45298653,41.738101521],[-71.452760529,41.738271522],[-71.45253353,41.738571522],[-71.45234153,41.738858521],[-71.452097529,41.739125522],[-71.451748529,41.739464522],[-71.451278529,41.739712522],[-71.450563529,41.739934522],[-71.449953529,41.740038522],[-71.449256529,41.740024523],[-71.447802529,41.740026523],[-71.447377528,41.740012522],[-71.447059528,41.740002522],[-71.446449528,41.739994522],[-71.446375528,41.739995522],[-71.446313528,41.739994522],[-71.446198528,41.739987523],[-71.446071527,41.739983523],[-71.445303528,41.740053522],[-71.444684527,41.740163522],[-71.444291527,41.740404522],[-71.444116527,41.740644523],[-71.444029527,41.740904522],[-71.443966527,41.741166523],[-71.443963527,41.741188523],[-71.443945527,41.741204522],[-71.443937527,41.741301522],[-71.443940527,41.741651522],[-71.443906527,41.741932523],[-71.443932527,41.742302523],[-71.443935527,41.742609523],[-71.443935527,41.742639523],[-71.443974527,41.742954523],[-71.444044527,41.743357523],[-71.444095528,41.743520523],[-71.444111527,41.743572523],[-71.444186527,41.743832523],[-71.444261527,41.743963523],[-71.444298527,41.744063524],[-71.444359527,41.744217523],[-71.444433527,41.744421523],[-71.444496527,41.744536523],[-71.444535527,41.744606524],[-71.444578528,41.744682523],[-71.444706527,41.744923523],[-71.444891528,41.745220523],[-71.445125528,41.745431523],[-71.445327528,41.745615523],[-71.445459528,41.746045524],[-71.445548528,41.746226524],[-71.445948528,41.747255524],[-71.446421528,41.748614524],[-71.446538528,41.748895524]]]]}}"}, +{"type": "precinct", "typeId": 730, "areaId": 25710, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":49,\"NAME\":\"0730\",\"SHAPE_Length\":0.21455554644151,\"SHAPE_Area\":-0.0020653373786943},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.516174554,41.788590529],[-71.516998553,41.78866253],[-71.517715554,41.78871253],[-71.518188554,41.78875453],[-71.518379554,41.788781529],[-71.518608554,41.78881953],[-71.518940554,41.78888753],[-71.518982555,41.78889553],[-71.519348554,41.78899053],[-71.519653554,41.789078529],[-71.520210555,41.789292529],[-71.520569555,41.78943353],[-71.520805555,41.78951353],[-71.521095555,41.78959753],[-71.521431555,41.78967753],[-71.521797555,41.78974653],[-71.522171555,41.78979153],[-71.522349555,41.78980753],[-71.522491556,41.789819529],[-71.522719555,41.789840529],[-71.523155556,41.78986853],[-71.523552555,41.78990253],[-71.523926556,41.78994453],[-71.524178556,41.78997853],[-71.524590556,41.790036529],[-71.525764557,41.790226529],[-71.526405557,41.79033753],[-71.526634557,41.79039453],[-71.526970557,41.79047453],[-71.528633558,41.790890529],[-71.529266557,41.791043529],[-71.529755558,41.791180529],[-71.530144558,41.791298529],[-71.530556558,41.791455529],[-71.530968558,41.79162353],[-71.531227559,41.79174153],[-71.531601559,41.79195153],[-71.531960558,41.79216853],[-71.532242559,41.79235953],[-71.532616559,41.79259553],[-71.532845559,41.79273353],[-71.533012559,41.79281353],[-71.533325559,41.792954529],[-71.53374556,41.79309553],[-71.534225559,41.79322153],[-71.53467656,41.79328253],[-71.53502756,41.793305529],[-71.53525556,41.793305529],[-71.53606456,41.79324453],[-71.53618656,41.79323253],[-71.53631656,41.79322553],[-71.536980561,41.79316053],[-71.537621561,41.79309953],[-71.538834561,41.79299253],[-71.539436561,41.792935529],[-71.539726561,41.79290453],[-71.541527562,41.79273653],[-71.542328562,41.79267253],[-71.543488562,41.792546529],[-71.546089564,41.792263529],[-71.547310564,41.79213453],[-71.548729564,41.791973529],[-71.549418564,41.791901529],[-71.550357565,41.791619529],[-71.551465565,41.791139529],[-71.551499565,41.791141529],[-71.551859565,41.791171529],[-71.555456566,41.790125529],[-71.556020566,41.789960529],[-71.558608567,41.789728529],[-71.559560568,41.789643528],[-71.559290568,41.789352528],[-71.557993566,41.783193527],[-71.557136566,41.779381526],[-71.556206566,41.775207526],[-71.555756565,41.771664525],[-71.555733565,41.771634525],[-71.555725566,41.771595525],[-71.555710565,41.771557525],[-71.555687565,41.771458525],[-71.555649565,41.771115525],[-71.555634565,41.771046525],[-71.555626566,41.770962525],[-71.555580565,41.770710525],[-71.555550566,41.770623525],[-71.555496565,41.770398525],[-71.555473565,41.770237524],[-71.555466565,41.770142525],[-71.555450565,41.770047525],[-71.555397565,41.769539525],[-71.555382565,41.769322524],[-71.555367565,41.769230525],[-71.555351565,41.769066524],[-71.555336565,41.768990524],[-71.555313565,41.768799524],[-71.555252565,41.768425524],[-71.555092565,41.767609524],[-71.554993565,41.767056524],[-71.554756564,41.765858524],[-71.554619564,41.765290524],[-71.554527565,41.764862524],[-71.554436565,41.764378524],[-71.554314564,41.763852524],[-71.554123565,41.762871523],[-71.553932564,41.761994523],[-71.553909564,41.761814523],[-71.553902564,41.761652524],[-71.553093564,41.756871523],[-71.552994564,41.756699523],[-71.552895564,41.756409522],[-71.552843563,41.756282522],[-71.552696564,41.755463522],[-71.552574563,41.754918522],[-71.552467564,41.754357522],[-71.552170563,41.752919521],[-71.552078563,41.752442522],[-71.551971563,41.751969521],[-71.551895563,41.751604521],[-71.551819563,41.751244521],[-71.551582563,41.750168521],[-71.551514562,41.749791521],[-71.551376563,41.74915452],[-71.551292563,41.748734521],[-71.551086562,41.747647521],[-71.551003563,41.747273521],[-71.550926563,41.74697952],[-71.550766562,41.746205521],[-71.550613562,41.74541152],[-71.550465562,41.74481052],[-71.550438562,41.74469852],[-71.550285562,41.74400052],[-71.550041562,41.74286352],[-71.549942562,41.74244352],[-71.549835562,41.741997519],[-71.549805562,41.74189452],[-71.549500562,41.740353519],[-71.549469561,41.740158519],[-71.549385562,41.73979252],[-71.549316561,41.739426519],[-71.549171562,41.738583519],[-71.549118561,41.738335519],[-71.549042561,41.737873519],[-71.548904561,41.737206518],[-71.548775561,41.736615518],[-71.548683561,41.736351518],[-71.548676561,41.736326518],[-71.548584561,41.736000518],[-71.548454561,41.735661518],[-71.548294561,41.735180518],[-71.54818056,41.734761518],[-71.548088561,41.734482518],[-71.548019561,41.734208518],[-71.548012561,41.734139518],[-71.547974561,41.733883518],[-71.547874561,41.733418518],[-71.54783356,41.733162517],[-71.54781356,41.733036518],[-71.54773756,41.732575518],[-71.54769956,41.732285517],[-71.547630561,41.731991518],[-71.547607561,41.731938517],[-71.54756256,41.731812518],[-71.547470561,41.731678518],[-71.547455561,41.731663517],[-71.54736956,41.731282518],[-71.54726756,41.731271517],[-71.547183561,41.731243518],[-71.54703756,41.731170518],[-71.54696256,41.731119517],[-71.54682456,41.731047518],[-71.54677256,41.731014518],[-71.54658156,41.730915518],[-71.54652256,41.730776518],[-71.54647956,41.730714517],[-71.54642056,41.730675517],[-71.54634756,41.730659518],[-71.54624956,41.730638517],[-71.54617256,41.730680518],[-71.54610056,41.730651517],[-71.545664559,41.730352518],[-71.54550456,41.730193518],[-71.54549856,41.730085517],[-71.54536456,41.730074517],[-71.545143559,41.730080518],[-71.54472456,41.730084517],[-71.543977559,41.730120517],[-71.542764559,41.730129517],[-71.541931559,41.730147517],[-71.540939558,41.730141517],[-71.540800558,41.730145517],[-71.540436558,41.730156518],[-71.539902558,41.730173518],[-71.538803557,41.730166517],[-71.538397557,41.730174518],[-71.537636557,41.730173518],[-71.536736557,41.730216518],[-71.535896556,41.730171518],[-71.535171557,41.730205518],[-71.534981556,41.730210518],[-71.534571556,41.730207518],[-71.534426556,41.730180517],[-71.534321556,41.730177518],[-71.534286556,41.730179517],[-71.534279556,41.730267518],[-71.534187556,41.730893518],[-71.534103556,41.731747518],[-71.534050556,41.732109518],[-71.533997556,41.732521518],[-71.533958556,41.732941518],[-71.533875556,41.733662519],[-71.533844556,41.733883519],[-71.533821556,41.734074519],[-71.533813556,41.734318518],[-71.533821556,41.734536519],[-71.534004556,41.735653519],[-71.534126556,41.736332519],[-71.534225556,41.736729519],[-71.534286557,41.737095519],[-71.534317556,41.737412519],[-71.534302556,41.738110519],[-71.534241556,41.739216519],[-71.534233557,41.740033519],[-71.534203556,41.740185519],[-71.534180556,41.740265519],[-71.534134557,41.74033452],[-71.534103556,41.74036852],[-71.533966556,41.740498519],[-71.533577556,41.74090252],[-71.533096556,41.74137952],[-71.532791557,41.74169252],[-71.532471556,41.74200152],[-71.531784556,41.74268052],[-71.531120555,41.74334452],[-71.530750555,41.743728521],[-71.530617556,41.743866521],[-71.527893555,41.746633521],[-71.527451554,41.747082521],[-71.527016555,41.747536521],[-71.526657554,41.747906521],[-71.526535554,41.748040522],[-71.526390555,41.748181521],[-71.526291555,41.748261521],[-71.526230554,41.748299521],[-71.526161555,41.748333522],[-71.526108554,41.748368522],[-71.526039555,41.748394521],[-71.525810555,41.748509522],[-71.525192554,41.748783521],[-71.524742554,41.748955522],[-71.523735554,41.749287522],[-71.522072553,41.749852522],[-71.521873553,41.749913522],[-71.521500553,41.750035522],[-71.521339553,41.750073522],[-71.521126553,41.750111522],[-71.520988553,41.750126522],[-71.519829552,41.750283522],[-71.518921552,41.750380522],[-71.518863552,41.750387522],[-71.518679552,41.750407522],[-71.517853552,41.750504522],[-71.516922551,41.750603522],[-71.516731551,41.750630522],[-71.516533551,41.750664522],[-71.516365551,41.750706522],[-71.516312552,41.750725522],[-71.516243551,41.750756522],[-71.515678551,41.751080523],[-71.515396551,41.751244522],[-71.515144551,41.751435522],[-71.514992551,41.751603523],[-71.514938551,41.751683523],[-71.514931551,41.751706523],[-71.514709551,41.752076523],[-71.514412551,41.752629522],[-71.514351551,41.752758523],[-71.51422955,41.752926523],[-71.514183551,41.752976522],[-71.514275551,41.753037522],[-71.514381551,41.753094522],[-71.514488551,41.753189523],[-71.514751551,41.753520523],[-71.515350551,41.754273523],[-71.516289552,41.755394523],[-71.517303552,41.756569523],[-71.517555552,41.756935523],[-71.517850552,41.757302524],[-71.518211552,41.757752524],[-71.518318553,41.757878523],[-71.518410552,41.758007523],[-71.518517552,41.758202523],[-71.518562552,41.758328524],[-71.518593553,41.758446524],[-71.518639552,41.758664524],[-71.518867553,41.761376524],[-71.518860553,41.761525524],[-71.518829552,41.761784524],[-71.518799553,41.762108524],[-71.518791552,41.762299524],[-71.518806553,41.762368525],[-71.518840553,41.762473524],[-71.518764553,41.762514524],[-71.518674552,41.762548525],[-71.518636552,41.762540524],[-71.518591553,41.762536524],[-71.518530553,41.762495524],[-71.518478552,41.762443524],[-71.518396553,41.762426525],[-71.518322552,41.762433525],[-71.518268552,41.762468525],[-71.518195553,41.762505525],[-71.518111552,41.762513524],[-71.518030552,41.762506525],[-71.517867553,41.762455524],[-71.517786552,41.762436524],[-71.517716553,41.762397524],[-71.517666552,41.762358524],[-71.517598553,41.762229524],[-71.517527552,41.762048524],[-71.517492552,41.761986524],[-71.517448552,41.761927524],[-71.517382552,41.761811524],[-71.517316552,41.761770525],[-71.517230552,41.761761524],[-71.517158552,41.761743524],[-71.517100552,41.761709525],[-71.517025552,41.761633525],[-71.516958552,41.761568524],[-71.516921552,41.761525524],[-71.516773552,41.761454525],[-71.516715552,41.761420524],[-71.516638552,41.761412524],[-71.516553552,41.761411524],[-71.516472552,41.761390524],[-71.516395552,41.761345524],[-71.516326552,41.761314524],[-71.516262552,41.761280525],[-71.516201552,41.761239524],[-71.516030552,41.761103524],[-71.515902552,41.761021524],[-71.515849551,41.760972524],[-71.515674551,41.760773525],[-71.515518551,41.760644524],[-71.515385551,41.760559524],[-71.515307551,41.760532524],[-71.515229551,41.760521525],[-71.515172551,41.760408524],[-71.515135551,41.760346525],[-71.515113551,41.760288525],[-71.515105551,41.760157524],[-71.515087551,41.760103524],[-71.514956551,41.759868524],[-71.514905552,41.759763524],[-71.514868552,41.759699524],[-71.514780551,41.759600524],[-71.514728551,41.759580524],[-71.514644551,41.759588524],[-71.514505551,41.759655524],[-71.514435551,41.759680524],[-71.514262551,41.759708524],[-71.514110551,41.759739524],[-71.514022551,41.759744524],[-71.513761551,41.759744524],[-71.513689551,41.759740524],[-71.513608551,41.759710524],[-71.513554551,41.759671524],[-71.513549551,41.759616524],[-71.51358355,41.759557524],[-71.51362355,41.759510524],[-71.513621551,41.759442524],[-71.513597551,41.759385524],[-71.51350655,41.759256524],[-71.513426551,41.759190524],[-71.513393551,41.759138524],[-71.51323555,41.758964524],[-71.513170551,41.758925524],[-71.513074551,41.758900524],[-71.51300055,41.758891524],[-71.512851551,41.758883524],[-71.512814551,41.758878524],[-71.51277055,41.758873524],[-71.512700551,41.758889524],[-71.512548551,41.758962524],[-71.51053055,41.759593524],[-71.50940055,41.759947524],[-71.50907855,41.760048524],[-71.50864755,41.760502525],[-71.508244549,41.760927525],[-71.508255549,41.760977524],[-71.508308549,41.761193524],[-71.508614549,41.762215525],[-71.508751549,41.762688524],[-71.508827549,41.762982524],[-71.50846955,41.763047525],[-71.507713549,41.763173525],[-71.507721549,41.763440525],[-71.507736549,41.763695525],[-71.507851549,41.764046525],[-71.50887355,41.763874525],[-71.50933155,41.763802525],[-71.50958355,41.763771525],[-71.50973555,41.763768525],[-71.51028455,41.763855525],[-71.51097155,41.763977525],[-71.51110155,41.764019525],[-71.51121555,41.764080525],[-71.51129255,41.764145525],[-71.51162055,41.764553525],[-71.51175755,41.764752525],[-71.512230551,41.765366525],[-71.512718551,41.766026525],[-71.512787551,41.766133525],[-71.512833551,41.766228525],[-71.512924551,41.766529526],[-71.512947551,41.766663526],[-71.513016551,41.766980525],[-71.513077551,41.767334525],[-71.512650551,41.767384526],[-71.512184551,41.767449525],[-71.511971551,41.767472525],[-71.51149755,41.767537526],[-71.511276551,41.767571526],[-71.51123055,41.767640526],[-71.51103255,41.767975525],[-71.51079955,41.768395526],[-71.51062855,41.768742526],[-71.510437551,41.769093526],[-71.51025455,41.769448526],[-71.510109551,41.769707527],[-71.511040551,41.769986526],[-71.511391551,41.770085526],[-71.511612551,41.770153526],[-71.511757551,41.770214527],[-71.511864551,41.770295526],[-71.511940551,41.770375526],[-71.512001551,41.770481526],[-71.512054551,41.770646526],[-71.512093551,41.770821526],[-71.512108551,41.770966526],[-71.512100551,41.771092527],[-71.512100551,41.771157526],[-71.512085551,41.771328526],[-71.512062551,41.771477527],[-71.512032551,41.771584526],[-71.512009551,41.771641526],[-71.511215551,41.772591527],[-71.51118555,41.772648527],[-71.511162551,41.772736526],[-71.51114755,41.772793526],[-71.511131551,41.772938527],[-71.511131551,41.773037527],[-71.511154551,41.773148527],[-71.511192551,41.773262527],[-71.51132255,41.773533526],[-71.511536551,41.773915527],[-71.511765551,41.774311527],[-71.512062551,41.774857527],[-71.512222551,41.775132527],[-71.512459551,41.775563527],[-71.512581552,41.775807527],[-71.513100551,41.776730527],[-71.513321552,41.777165527],[-71.513489552,41.777470527],[-71.513634552,41.777748527],[-71.513855552,41.778138527],[-71.514130552,41.778653528],[-71.514481552,41.779286528],[-71.514679552,41.779656528],[-71.515045553,41.780327528],[-71.515144552,41.780533528],[-71.515274553,41.780709528],[-71.515335553,41.780877528],[-71.515388553,41.781044528],[-71.515411553,41.781170528],[-71.515427553,41.781292528],[-71.515427553,41.781529528],[-71.515403553,41.781914529],[-71.515381552,41.782296528],[-71.515385553,41.782420529],[-71.515388553,41.782490528],[-71.515404553,41.782608528],[-71.515411553,41.782738528],[-71.515541553,41.783699529],[-71.515686553,41.784836529],[-71.515739553,41.785176529],[-71.515823553,41.785893529],[-71.515999553,41.787114529],[-71.516075553,41.787747529],[-71.516136554,41.788144529],[-71.516174554,41.788590529]]]]}}"}, +{"type": "precinct", "typeId": 731, "areaId": 25713, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":52,\"NAME\":\"0731\",\"SHAPE_Length\":0.099212058834732,\"SHAPE_Area\":-0.00022435282745065},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.476913541,41.788136531],[-71.47702054,41.788952531],[-71.47710454,41.789597531],[-71.477989541,41.789540531],[-71.478149541,41.790734531],[-71.478149541,41.790848531],[-71.478157541,41.790936531],[-71.478157541,41.791001532],[-71.478142541,41.791176532],[-71.478104541,41.791413532],[-71.478096541,41.791520531],[-71.478134541,41.791745531],[-71.478226541,41.792111532],[-71.478264541,41.792290532],[-71.478294541,41.792405532],[-71.478317541,41.792561532],[-71.478310541,41.792618532],[-71.478287541,41.792714532],[-71.478233541,41.792870532],[-71.478157541,41.793084532],[-71.478134541,41.793183532],[-71.478127541,41.793255532],[-71.478127541,41.793347531],[-71.478119541,41.793412532],[-71.478081541,41.793522531],[-71.477890541,41.793888532],[-71.478481541,41.794064532],[-71.478508541,41.794072532],[-71.479111541,41.794239532],[-71.479279542,41.794308532],[-71.479691541,41.794506532],[-71.479988542,41.794644532],[-71.480606542,41.794938532],[-71.480705542,41.794983531],[-71.480385542,41.795327532],[-71.480087542,41.795613532],[-71.479927542,41.795792532],[-71.479866541,41.795853532],[-71.479744542,41.795979532],[-71.479309542,41.796379532],[-71.479530542,41.796528532],[-71.479614541,41.796597533],[-71.479683542,41.796708532],[-71.479736542,41.796860532],[-71.479813542,41.796830533],[-71.479942542,41.796795533],[-71.480453542,41.796700532],[-71.480705542,41.796658533],[-71.480904542,41.796620533],[-71.481102542,41.796574532],[-71.481354542,41.796505532],[-71.481552542,41.796444533],[-71.481758542,41.796372532],[-71.481956542,41.796288533],[-71.482010542,41.796269533],[-71.482330543,41.796151532],[-71.482498542,41.796093532],[-71.482727543,41.796006532],[-71.482776543,41.795986532],[-71.483223543,41.795777532],[-71.483849543,41.795468532],[-71.483948543,41.795422532],[-71.484276543,41.795254532],[-71.484421543,41.795166532],[-71.484802543,41.794922532],[-71.485466543,41.794537531],[-71.485718543,41.794388532],[-71.485977544,41.794220532],[-71.486145543,41.794106531],[-71.486504544,41.793877531],[-71.486847544,41.793610532],[-71.486885544,41.793579531],[-71.487373544,41.793229531],[-71.487717544,41.792981531],[-71.488342545,41.792504532],[-71.488976544,41.792015531],[-71.489410545,41.791687531],[-71.489563545,41.791600531],[-71.489799545,41.791504531],[-71.489983545,41.791447531],[-71.490105545,41.791417531],[-71.490166545,41.791401531],[-71.490334545,41.791378531],[-71.490471545,41.791371531],[-71.490555545,41.791367531],[-71.490700545,41.791371531],[-71.490921546,41.791390531],[-71.491501546,41.791455531],[-71.491821545,41.791493531],[-71.492203546,41.791527531],[-71.492630546,41.791535531],[-71.492805546,41.791535531],[-71.493057546,41.791520531],[-71.493187546,41.791504531],[-71.493454546,41.791466531],[-71.495059546,41.791266531],[-71.495140546,41.791256531],[-71.495699547,41.79118453],[-71.496597547,41.791069531],[-71.496758547,41.791039531],[-71.497360547,41.790917531],[-71.497426547,41.790901531],[-71.497765548,41.790818531],[-71.497887547,41.790779531],[-71.498001548,41.790749531],[-71.498207548,41.79068053],[-71.498497548,41.790589531],[-71.500824549,41.789853531],[-71.500931548,41.789814531],[-71.501068548,41.78973053],[-71.502144549,41.78939153],[-71.502655549,41.78924253],[-71.502838549,41.78919653],[-71.503067549,41.789151531],[-71.50379255,41.78909353],[-71.50441755,41.78903253],[-71.50508955,41.78897153],[-71.50575355,41.78891053],[-71.50605855,41.78888753],[-71.50604955,41.78885953],[-71.50601255,41.78879253],[-71.50595155,41.78865953],[-71.505165549,41.78720953],[-71.504311549,41.785797529],[-71.503357549,41.784310529],[-71.502663548,41.783219529],[-71.502220548,41.782540528],[-71.501839548,41.781941529],[-71.501266548,41.781090529],[-71.500862548,41.780556528],[-71.500702548,41.780381528],[-71.500397548,41.780426529],[-71.499958547,41.780498528],[-71.499260547,41.780613528],[-71.498856547,41.780678529],[-71.498641547,41.780715529],[-71.498260547,41.780781529],[-71.497856547,41.780846528],[-71.497360546,41.780922528],[-71.496857546,41.781010529],[-71.496300547,41.781090529],[-71.496307546,41.781163529],[-71.496262547,41.781197528],[-71.495285546,41.781514529],[-71.495171546,41.781540529],[-71.494926546,41.781563529],[-71.494835546,41.781556529],[-71.494713546,41.781533529],[-71.494644546,41.781666529],[-71.494553546,41.781926529],[-71.494797546,41.782013529],[-71.495087546,41.782105529],[-71.495560546,41.782280529],[-71.495799546,41.782372529],[-71.495911547,41.782425529],[-71.495979546,41.782475529],[-71.496040546,41.782517529],[-71.496124547,41.782601529],[-71.496185547,41.782696529],[-71.496216546,41.782784529],[-71.496231546,41.782898529],[-71.496246546,41.783078529],[-71.496246546,41.783245529],[-71.496231546,41.78347453],[-71.496140547,41.783730529],[-71.496117546,41.783856529],[-71.496109547,41.784005529],[-71.496111546,41.784204529],[-71.496117546,41.78466153],[-71.496124547,41.784909529],[-71.496109547,41.78505053],[-71.496078546,41.78518353],[-71.496017546,41.78534453],[-71.495926547,41.78551953],[-71.495834547,41.78566053],[-71.495735547,41.785782529],[-71.495560547,41.78594253],[-71.495312546,41.78611853],[-71.495148546,41.78623653],[-71.495056547,41.78630953],[-71.494370546,41.78571053],[-71.494162546,41.78554253],[-71.493507546,41.78501553],[-71.493057545,41.78465753],[-71.492462546,41.784161529],[-71.491608545,41.78347153],[-71.491554545,41.783425529],[-71.491364545,41.783291529],[-71.491295545,41.783272529],[-71.491203545,41.78326153],[-71.490929545,41.783249529],[-71.490631544,41.783249529],[-71.490059545,41.78321953],[-71.489937544,41.783226529],[-71.489853544,41.783245529],[-71.489754544,41.783284529],[-71.489662544,41.783329529],[-71.489586544,41.783360529],[-71.489517545,41.783364529],[-71.489418545,41.783364529],[-71.488495544,41.783287529],[-71.488396544,41.783272529],[-71.487465544,41.783207529],[-71.487213544,41.783169529],[-71.487106543,41.78316253],[-71.487015544,41.783169529],[-71.486900544,41.783188529],[-71.486717543,41.783253529],[-71.486092543,41.783440529],[-71.486008543,41.78348653],[-71.485931543,41.783543529],[-71.485878543,41.78361253],[-71.485840543,41.78370353],[-71.485825543,41.78380653],[-71.485832544,41.78389453],[-71.485893543,41.78399353],[-71.485977543,41.78407353],[-71.486107543,41.784142529],[-71.486237543,41.784184529],[-71.486382543,41.78418853],[-71.487106543,41.78417253],[-71.487328544,41.78417653],[-71.487366544,41.78566853],[-71.487366544,41.78592053],[-71.487411544,41.78610353],[-71.487442544,41.78618353],[-71.487480544,41.78625953],[-71.487526544,41.78633553],[-71.487640544,41.78649953],[-71.487534544,41.787220531],[-71.487259543,41.78721353],[-71.487160543,41.787220531],[-71.487083543,41.78723653],[-71.486984543,41.78727053],[-71.486183544,41.78750353],[-71.486061544,41.78755653],[-71.486015543,41.787590531],[-71.485985544,41.787625531],[-71.485938543,41.787745531],[-71.485924544,41.78781553],[-71.485939543,41.78791153],[-71.486076543,41.78830453],[-71.485786543,41.788311531],[-71.485611543,41.788304531],[-71.485443543,41.78827753],[-71.485313543,41.788273531],[-71.485207544,41.788288531],[-71.485115543,41.788308531],[-71.484825543,41.78748453],[-71.483978543,41.787701531],[-71.483902542,41.78773953],[-71.483871543,41.787762531],[-71.483841543,41.78781253],[-71.483826542,41.78785453],[-71.483770542,41.78792653],[-71.483689542,41.78798153],[-71.483566543,41.788014531],[-71.483467543,41.78781253],[-71.483376542,41.78760253],[-71.483170542,41.787278531],[-71.483055542,41.78712953],[-71.482880542,41.78691953],[-71.482552542,41.78650353],[-71.482330542,41.786206531],[-71.482224542,41.78607253],[-71.481789542,41.78551153],[-71.481705542,41.78541253],[-71.480850542,41.78567553],[-71.480247541,41.78585953],[-71.480057542,41.78592353],[-71.479568541,41.78608053],[-71.479187541,41.78619053],[-71.479088541,41.786225531],[-71.478928541,41.786282531],[-71.478775541,41.78632453],[-71.47846254,41.78576753],[-71.478102541,41.78399953],[-71.47759354,41.78458953],[-71.477208541,41.78460453],[-71.47622954,41.78464553],[-71.47623454,41.78470353],[-71.47625054,41.78522953],[-71.47625054,41.785561531],[-71.47592054,41.78659853],[-71.47576054,41.787103531],[-71.47584054,41.787175531],[-71.47609854,41.787406531],[-71.47637054,41.787649531],[-71.476451541,41.787722531],[-71.476913541,41.788136531]]]]}}"}, +{"type": "precinct", "typeId": 801, "areaId": 25746, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":85,\"NAME\":\"0801\",\"SHAPE_Length\":0.15415627323338,\"SHAPE_Area\":-0.00061225231765826},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.422787531,41.950932564],[-71.424223532,41.951358564],[-71.428190533,41.954885564],[-71.429427534,41.955984565],[-71.429463534,41.956015565],[-71.434982536,41.960922565],[-71.437480537,41.963142566],[-71.438123537,41.963714566],[-71.438749538,41.964271566],[-71.442168539,41.971644568],[-71.442665539,41.971630567],[-71.442896539,41.971597567],[-71.442978539,41.971585567],[-71.443291539,41.971474567],[-71.44361154,41.971329567],[-71.44419154,41.971012567],[-71.44438954,41.970864567],[-71.44459554,41.970703567],[-71.44501554,41.970238567],[-71.44534354,41.969883567],[-71.44567154,41.969502567],[-71.44581654,41.969376567],[-71.44617554,41.969101567],[-71.44654854,41.968876567],[-71.44666754,41.968782566],[-71.446785541,41.968689566],[-71.447075541,41.968426567],[-71.447370541,41.968119566],[-71.44738054,41.968102566],[-71.44765554,41.967839567],[-71.447838541,41.967686567],[-71.447754541,41.967614566],[-71.447372541,41.967316567],[-71.446770541,41.966835566],[-71.44656454,41.966645566],[-71.446419541,41.966488566],[-71.44632054,41.966359566],[-71.44562554,41.965256566],[-71.445602539,41.965229566],[-71.44526754,41.964669566],[-71.445160539,41.964405566],[-71.44500754,41.963971566],[-71.444809539,41.963337566],[-71.44471754,41.963044566],[-71.444595539,41.962689566],[-71.444550539,41.962563565],[-71.444366539,41.962056565],[-71.444237539,41.961720566],[-71.444069539,41.961247565],[-71.44495454,41.961090565],[-71.44530754,41.961036565],[-71.445374539,41.961026565],[-71.446304539,41.960858565],[-71.44730454,41.960678565],[-71.44781554,41.960595565],[-71.44838054,41.960495565],[-71.448563541,41.960469565],[-71.44870854,41.960759565],[-71.448776541,41.961037565],[-71.448853541,41.961254565],[-71.449142541,41.961201565],[-71.44946354,41.961151565],[-71.449577541,41.961148565],[-71.450073541,41.961220565],[-71.450163541,41.961238565],[-71.450317541,41.961270565],[-71.450394541,41.961319565],[-71.450439541,41.961502565],[-71.450439541,41.961533565],[-71.450462541,41.961647565],[-71.450569541,41.962342566],[-71.450645541,41.962843565],[-71.450667542,41.962993565],[-71.450676541,41.963054565],[-71.450684541,41.963101566],[-71.450951541,41.963036565],[-71.451180541,41.962956565],[-71.451424542,41.962834565],[-71.451668541,41.962704565],[-71.451859542,41.962590565],[-71.452072542,41.962498566],[-71.452293542,41.962418565],[-71.452652542,41.962345565],[-71.452797542,41.962319565],[-71.453033542,41.962258565],[-71.453148542,41.962208566],[-71.453232542,41.962143565],[-71.453407542,41.961949565],[-71.453705542,41.961560565],[-71.453712543,41.961537565],[-71.453758542,41.961453565],[-71.453789543,41.961338565],[-71.453827543,41.961125565],[-71.453857542,41.960789565],[-71.453911542,41.960717565],[-71.454056542,41.960606565],[-71.454453543,41.960381565],[-71.454506543,41.960358564],[-71.454086542,41.959919565],[-71.453819542,41.959629565],[-71.453705542,41.959393565],[-71.453705542,41.959202565],[-71.453781542,41.959088565],[-71.453918542,41.958939564],[-71.454094542,41.958855564],[-71.454262542,41.958836564],[-71.454407542,41.958832565],[-71.454514542,41.958851565],[-71.454781543,41.958973564],[-71.455063542,41.959149564],[-71.455597543,41.959500564],[-71.455811543,41.959633565],[-71.456001543,41.959759564],[-71.456200543,41.959687565],[-71.456238543,41.959671565],[-71.456429543,41.959622564],[-71.456657543,41.959584564],[-71.456886543,41.959580564],[-71.457108543,41.959587565],[-71.457367543,41.959633565],[-71.457703544,41.959717564],[-71.458366544,41.959912564],[-71.458595544,41.960015565],[-71.458801544,41.960213565],[-71.459053544,41.960545565],[-71.459236544,41.960801565],[-71.459314544,41.960924564],[-71.459335544,41.960957565],[-71.459351544,41.961071565],[-71.459335544,41.961201565],[-71.459297544,41.961411564],[-71.459251544,41.961609565],[-71.459618544,41.961548564],[-71.460042544,41.961465565],[-71.459642544,41.963055565],[-71.459940544,41.963052565],[-71.460034544,41.963063565],[-71.460123544,41.963084565],[-71.460338544,41.963165565],[-71.460416544,41.963174565],[-71.460493544,41.963171565],[-71.460519544,41.963175565],[-71.460656544,41.963194565],[-71.460743545,41.963226565],[-71.460822545,41.963243565],[-71.460980544,41.963295565],[-71.461129545,41.963320566],[-71.461379544,41.963312565],[-71.461471545,41.963318565],[-71.461555545,41.963333565],[-71.461634545,41.963337565],[-71.461779545,41.963359566],[-71.461859545,41.963378565],[-71.461932545,41.963482565],[-71.461990545,41.963535565],[-71.462034545,41.963591565],[-71.462095545,41.963641565],[-71.462164545,41.963665565],[-71.462184545,41.963653565],[-71.462287545,41.963557565],[-71.462329545,41.963507565],[-71.462395545,41.963403565],[-71.462427545,41.963328565],[-71.462442545,41.963251565],[-71.462439545,41.963129565],[-71.462431545,41.963060565],[-71.462415545,41.963000565],[-71.462407545,41.962873565],[-71.462410545,41.962752565],[-71.462440545,41.962689565],[-71.462613545,41.962531565],[-71.462656545,41.962480565],[-71.462682545,41.962429565],[-71.462720545,41.962379565],[-71.462764545,41.962334565],[-71.462784545,41.962294565],[-71.462723545,41.962233565],[-71.462669545,41.962171565],[-71.462628545,41.962110565],[-71.462578545,41.962047565],[-71.462548545,41.961996565],[-71.462501545,41.961888565],[-71.462440545,41.961785565],[-71.462397545,41.961679565],[-71.462320545,41.961539565],[-71.462295545,41.961405565],[-71.462241545,41.961212565],[-71.462215545,41.960842565],[-71.462192545,41.960707565],[-71.462131545,41.960238565],[-71.462117545,41.959877564],[-71.462055545,41.959220564],[-71.462032545,41.958757564],[-71.461999545,41.958626564],[-71.461995544,41.958551564],[-71.461971545,41.958411564],[-71.461963544,41.958331564],[-71.461948545,41.958260564],[-71.461840544,41.957931564],[-71.461803545,41.957867564],[-71.461755545,41.957805564],[-71.461580544,41.957624564],[-71.461515544,41.957567564],[-71.461442544,41.957520564],[-71.461100544,41.957409564],[-71.461032544,41.957391564],[-71.460931544,41.957372564],[-71.460633544,41.957335564],[-71.459861544,41.957262564],[-71.459537544,41.957214564],[-71.459384544,41.957187564],[-71.459034544,41.957144564],[-71.458862543,41.957116564],[-71.458780543,41.957099564],[-71.458631543,41.957050564],[-71.458470543,41.957016564],[-71.458221543,41.956975564],[-71.457873543,41.956898564],[-71.457723543,41.956873564],[-71.457621543,41.956848564],[-71.457353543,41.956770564],[-71.457058543,41.956694564],[-71.456753543,41.956587564],[-71.456606543,41.956525564],[-71.456533543,41.956511564],[-71.456473543,41.956517564],[-71.456518543,41.956574564],[-71.456597543,41.956629564],[-71.456730543,41.956691564],[-71.456870543,41.956743564],[-71.457285543,41.956885564],[-71.457652543,41.956967564],[-71.458160543,41.957043564],[-71.458617544,41.957149564],[-71.458772544,41.957198564],[-71.458946544,41.957236564],[-71.459042544,41.957252564],[-71.459223544,41.957275564],[-71.459515544,41.957323564],[-71.459602544,41.957345564],[-71.459744544,41.957398564],[-71.459765544,41.957409564],[-71.459702544,41.957471564],[-71.459632544,41.957503564],[-71.459545544,41.957502564],[-71.459082544,41.957428564],[-71.458797543,41.957388564],[-71.458453543,41.957333564],[-71.458199543,41.957297564],[-71.458125543,41.957293564],[-71.458053543,41.957283564],[-71.457876543,41.957242564],[-71.457630543,41.957165564],[-71.457384543,41.957113564],[-71.457213543,41.957063564],[-71.457044543,41.957007564],[-71.456873543,41.956964564],[-71.456792543,41.956939564],[-71.456502542,41.956833564],[-71.456434543,41.956804564],[-71.456359543,41.956780564],[-71.456032543,41.956698564],[-71.455882542,41.956653564],[-71.455673543,41.956580564],[-71.455490542,41.956511564],[-71.455329542,41.956456564],[-71.455314542,41.956435564],[-71.455343543,41.956420564],[-71.455513542,41.956416564],[-71.455617542,41.956400564],[-71.455676542,41.956362564],[-71.455641542,41.956303564],[-71.455596543,41.956257564],[-71.455516542,41.956229564],[-71.455422542,41.956208564],[-71.455331542,41.956183564],[-71.455250542,41.956155564],[-71.455034542,41.956066564],[-71.454780542,41.955949564],[-71.454474542,41.955750564],[-71.454365542,41.955673564],[-71.454260542,41.955586564],[-71.454048542,41.955394564],[-71.453942542,41.955273564],[-71.453891542,41.955203564],[-71.453802542,41.955067564],[-71.453758542,41.955023564],[-71.453658542,41.954941564],[-71.453545542,41.954826564],[-71.453476542,41.954775564],[-71.453367542,41.954684564],[-71.453250541,41.954608564],[-71.453204542,41.954564564],[-71.453203542,41.954535564],[-71.453253542,41.954503564],[-71.453244542,41.954449564],[-71.453198542,41.954404564],[-71.453160541,41.954356563],[-71.453131541,41.954341564],[-71.453094541,41.954281564],[-71.453016541,41.954182563],[-71.452893541,41.954071564],[-71.452751541,41.953904564],[-71.452699541,41.953850563],[-71.452576541,41.953761564],[-71.452374541,41.953579563],[-71.452310541,41.953547564],[-71.452103541,41.953373564],[-71.452027541,41.953302563],[-71.452315541,41.953113563],[-71.451609541,41.952409563],[-71.451503541,41.952195563],[-71.451402541,41.951607563],[-71.451399541,41.951564563],[-71.451275541,41.950312563],[-71.45098754,41.949921563],[-71.45058054,41.949579563],[-71.44966654,41.949187563],[-71.44932954,41.949213563],[-71.44896654,41.949120563],[-71.44849054,41.948939563],[-71.44814154,41.949119563],[-71.44777854,41.949107562],[-71.44734754,41.949117563],[-71.446521539,41.948800563],[-71.444250539,41.948184563],[-71.443172538,41.947779562],[-71.442885538,41.947664562],[-71.442549538,41.947418563],[-71.442332538,41.947103562],[-71.442095537,41.946604563],[-71.441898537,41.946247562],[-71.441612537,41.945910562],[-71.441042537,41.944953562],[-71.440818537,41.944598563],[-71.440681537,41.944463562],[-71.439636536,41.943737562],[-71.439278537,41.943550562],[-71.439157537,41.943428562],[-71.438092537,41.942635562],[-71.437272536,41.941834561],[-71.436516535,41.941208561],[-71.435362535,41.940037561],[-71.434841535,41.939201561],[-71.434118534,41.938381561],[-71.433960534,41.938202561],[-71.433742535,41.938320561],[-71.433637534,41.938376561],[-71.432971534,41.938739561],[-71.432541534,41.938973561],[-71.432518534,41.938980562],[-71.432304534,41.939103561],[-71.432106534,41.939213562],[-71.431801534,41.939385561],[-71.431656534,41.939274562],[-71.431557534,41.939206561],[-71.431099533,41.938877561],[-71.431061534,41.938851561],[-71.430649533,41.938572562],[-71.429939534,41.938046561],[-71.429720533,41.937819561],[-71.429703533,41.937802561],[-71.429558533,41.937584561],[-71.429001533,41.937691561],[-71.427628532,41.937992561],[-71.427330532,41.938054561],[-71.426094532,41.938309561],[-71.425414532,41.938479561],[-71.425331532,41.938504561],[-71.424766532,41.938699561],[-71.424713532,41.938717561],[-71.424614532,41.938771561],[-71.424179531,41.938992562],[-71.423706531,41.939305562],[-71.423347531,41.939587561],[-71.422809531,41.940031562],[-71.422478531,41.940308562],[-71.42190653,41.940815562],[-71.421448531,41.941292562],[-71.421356531,41.941384562],[-71.420807531,41.941998562],[-71.42063153,41.942196562],[-71.42037253,41.942494562],[-71.41996053,41.942948562],[-71.41971653,41.943211563],[-71.41918953,41.943684562],[-71.41883153,41.943936562],[-71.417931529,41.944512563],[-71.416573529,41.945343563],[-71.415263529,41.946163563],[-71.415590529,41.946281563],[-71.419463531,41.949946563],[-71.420377531,41.950217563],[-71.422133531,41.950738564],[-71.422185531,41.950752564],[-71.422188531,41.950770564],[-71.422224531,41.950765564],[-71.422787531,41.950932564]]]]}}"}, +{"type": "precinct", "typeId": 802, "areaId": 25747, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":86,\"NAME\":\"0802\",\"SHAPE_Length\":0.082277343220081,\"SHAPE_Area\":-0.00022475460893115},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.442168539,41.971644568],[-71.443733539,41.975017568],[-71.44506354,41.977907569],[-71.44544654,41.978740569],[-71.446991541,41.978722569],[-71.447333541,41.978719569],[-71.448051541,41.978711568],[-71.448357541,41.978711568],[-71.448967542,41.978691568],[-71.449232541,41.978672568],[-71.449379542,41.978661569],[-71.449432542,41.978657568],[-71.449867542,41.978600568],[-71.450378542,41.978516568],[-71.450421542,41.978506569],[-71.450882543,41.978394569],[-71.451546543,41.978207568],[-71.451725542,41.978146568],[-71.451820543,41.978115568],[-71.452988543,41.977730568],[-71.453636543,41.977520568],[-71.454063544,41.977383568],[-71.454819544,41.977131568],[-71.455666543,41.976857568],[-71.456367544,41.976620568],[-71.457550545,41.976235567],[-71.457809544,41.976147568],[-71.457634544,41.975979568],[-71.457314544,41.975689568],[-71.456864544,41.975251568],[-71.456863544,41.975232568],[-71.456444543,41.974888568],[-71.456085543,41.974579567],[-71.456009543,41.974514567],[-71.455086543,41.973721567],[-71.454834543,41.973511567],[-71.454391543,41.973133567],[-71.454056543,41.972851567],[-71.453400543,41.972287567],[-71.454643543,41.971455567],[-71.455315543,41.970997567],[-71.455986544,41.970543567],[-71.456703543,41.970055566],[-71.457008544,41.969853567],[-71.457397544,41.969578567],[-71.457977544,41.970028567],[-71.458061544,41.970082567],[-71.458092544,41.970089567],[-71.458160544,41.970105567],[-71.458298544,41.970097566],[-71.458504544,41.970013567],[-71.458908544,41.969780567],[-71.459663544,41.969376566],[-71.460403544,41.968968566],[-71.461105545,41.968571566],[-71.461097545,41.968550566],[-71.460152544,41.967751566],[-71.458916544,41.966721566],[-71.459484544,41.966337566],[-71.459151544,41.965483566],[-71.459078544,41.965297565],[-71.459642544,41.963055565],[-71.460042544,41.961465565],[-71.459618544,41.961548564],[-71.459251544,41.961609565],[-71.459297544,41.961411564],[-71.459335544,41.961201565],[-71.459351544,41.961071565],[-71.459335544,41.960957565],[-71.459314544,41.960924564],[-71.459236544,41.960801565],[-71.459053544,41.960545565],[-71.458801544,41.960213565],[-71.458595544,41.960015565],[-71.458366544,41.959912564],[-71.457703544,41.959717564],[-71.457367543,41.959633565],[-71.457108543,41.959587565],[-71.456886543,41.959580564],[-71.456657543,41.959584564],[-71.456429543,41.959622564],[-71.456238543,41.959671565],[-71.456200543,41.959687565],[-71.456001543,41.959759564],[-71.455811543,41.959633565],[-71.455597543,41.959500564],[-71.455063542,41.959149564],[-71.454781543,41.958973564],[-71.454514542,41.958851565],[-71.454407542,41.958832565],[-71.454262542,41.958836564],[-71.454094542,41.958855564],[-71.453918542,41.958939564],[-71.453781542,41.959088565],[-71.453705542,41.959202565],[-71.453705542,41.959393565],[-71.453819542,41.959629565],[-71.454086542,41.959919565],[-71.454506543,41.960358564],[-71.454453543,41.960381565],[-71.454056542,41.960606565],[-71.453911542,41.960717565],[-71.453857542,41.960789565],[-71.453827543,41.961125565],[-71.453789543,41.961338565],[-71.453758542,41.961453565],[-71.453712543,41.961537565],[-71.453705542,41.961560565],[-71.453407542,41.961949565],[-71.453232542,41.962143565],[-71.453148542,41.962208566],[-71.453033542,41.962258565],[-71.452797542,41.962319565],[-71.452652542,41.962345565],[-71.452293542,41.962418565],[-71.452072542,41.962498566],[-71.451859542,41.962590565],[-71.451668541,41.962704565],[-71.451424542,41.962834565],[-71.451180541,41.962956565],[-71.450951541,41.963036565],[-71.450684541,41.963101566],[-71.450676541,41.963054565],[-71.450667542,41.962993565],[-71.450645541,41.962843565],[-71.450569541,41.962342566],[-71.450462541,41.961647565],[-71.450439541,41.961533565],[-71.450439541,41.961502565],[-71.450394541,41.961319565],[-71.450317541,41.961270565],[-71.450163541,41.961238565],[-71.450073541,41.961220565],[-71.449577541,41.961148565],[-71.44946354,41.961151565],[-71.449142541,41.961201565],[-71.448853541,41.961254565],[-71.448776541,41.961037565],[-71.44870854,41.960759565],[-71.448563541,41.960469565],[-71.44838054,41.960495565],[-71.44781554,41.960595565],[-71.44730454,41.960678565],[-71.446304539,41.960858565],[-71.445374539,41.961026565],[-71.44530754,41.961036565],[-71.44495454,41.961090565],[-71.444069539,41.961247565],[-71.444237539,41.961720566],[-71.444366539,41.962056565],[-71.444550539,41.962563565],[-71.444595539,41.962689566],[-71.44471754,41.963044566],[-71.444809539,41.963337566],[-71.44500754,41.963971566],[-71.445160539,41.964405566],[-71.44526754,41.964669566],[-71.445602539,41.965229566],[-71.44562554,41.965256566],[-71.44632054,41.966359566],[-71.446419541,41.966488566],[-71.44656454,41.966645566],[-71.446770541,41.966835566],[-71.447372541,41.967316567],[-71.447754541,41.967614566],[-71.447838541,41.967686567],[-71.44765554,41.967839567],[-71.44738054,41.968102566],[-71.447370541,41.968119566],[-71.447075541,41.968426567],[-71.446785541,41.968689566],[-71.44666754,41.968782566],[-71.44654854,41.968876567],[-71.44617554,41.969101567],[-71.44581654,41.969376567],[-71.44567154,41.969502567],[-71.44534354,41.969883567],[-71.44501554,41.970238567],[-71.44459554,41.970703567],[-71.44438954,41.970864567],[-71.44419154,41.971012567],[-71.44361154,41.971329567],[-71.443291539,41.971474567],[-71.442978539,41.971585567],[-71.442896539,41.971597567],[-71.442665539,41.971630567],[-71.442168539,41.971644568]]]]}}"}, +{"type": "precinct", "typeId": 803, "areaId": 26071, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":410,\"NAME\":\"0803\",\"SHAPE_Length\":0.12278495687565,\"SHAPE_Area\":-0.00024625588766938},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.460579545,41.978524568],[-71.460899545,41.978718568],[-71.461266545,41.978890568],[-71.461555545,41.978993568],[-71.461739546,41.979039569],[-71.461922545,41.979084568],[-71.462296546,41.979187568],[-71.462563545,41.979279568],[-71.462959546,41.979439568],[-71.463516546,41.979710568],[-71.463722546,41.979809568],[-71.464096547,41.979996569],[-71.464329547,41.980093569],[-71.464378546,41.980114569],[-71.464935547,41.980328569],[-71.465187547,41.980416568],[-71.466125547,41.980748568],[-71.466232547,41.980790569],[-71.466858547,41.981003569],[-71.467178548,41.981118568],[-71.467545548,41.981251568],[-71.468178547,41.981472569],[-71.468750548,41.981678568],[-71.468987548,41.981762569],[-71.469521549,41.981949569],[-71.469955548,41.982106568],[-71.470139549,41.982178569],[-71.470375549,41.982289569],[-71.470421548,41.982308569],[-71.470802549,41.982499568],[-71.471130549,41.982659569],[-71.471252549,41.982716569],[-71.471596549,41.982891569],[-71.472153549,41.982586569],[-71.472733549,41.982285568],[-71.473373549,41.981927569],[-71.473450549,41.981884569],[-71.47408355,41.981545568],[-71.47484155,41.981146569],[-71.47502355,41.981050569],[-71.47557055,41.980762568],[-71.47613855,41.980463568],[-71.483057691,41.978152751],[-71.482797553,41.978157568],[-71.482435552,41.978095567],[-71.481785552,41.977833567],[-71.479470551,41.977420567],[-71.478770551,41.977187567],[-71.478657551,41.977149567],[-71.477866551,41.976138567],[-71.47617655,41.974653567],[-71.47414155,41.972632566],[-71.473264549,41.972246567],[-71.471787549,41.972030567],[-71.471043548,41.971414566],[-71.470310548,41.971152566],[-71.469992548,41.971116567],[-71.469964548,41.970939566],[-71.469291548,41.970567566],[-71.467261547,41.969802566],[-71.465360546,41.969397566],[-71.464898546,41.969103566],[-71.464559546,41.968539566],[-71.464389546,41.968104566],[-71.464582546,41.967121566],[-71.465002546,41.966562566],[-71.465011546,41.966006566],[-71.464088545,41.964100566],[-71.463932545,41.963550565],[-71.463647545,41.962959565],[-71.462940545,41.962266565],[-71.462516545,41.961506565],[-71.462227545,41.960581565],[-71.462229545,41.958781564],[-71.462150544,41.958073564],[-71.461972545,41.957726564],[-71.461781544,41.957423564],[-71.461004544,41.957307564],[-71.460061544,41.957131564],[-71.458906543,41.956908564],[-71.458140543,41.956857564],[-71.457241543,41.956576564],[-71.456509543,41.956209564],[-71.455219542,41.955642564],[-71.454360542,41.954986564],[-71.452315541,41.953113563],[-71.452027541,41.953302563],[-71.452103541,41.953373564],[-71.452310541,41.953547564],[-71.452374541,41.953579563],[-71.452576541,41.953761564],[-71.452699541,41.953850563],[-71.452751541,41.953904564],[-71.452893541,41.954071564],[-71.453016541,41.954182563],[-71.453094541,41.954281564],[-71.453131541,41.954341564],[-71.453160541,41.954356563],[-71.453198542,41.954404564],[-71.453244542,41.954449564],[-71.453253542,41.954503564],[-71.453203542,41.954535564],[-71.453204542,41.954564564],[-71.453250541,41.954608564],[-71.453367542,41.954684564],[-71.453476542,41.954775564],[-71.453545542,41.954826564],[-71.453658542,41.954941564],[-71.453758542,41.955023564],[-71.453802542,41.955067564],[-71.453891542,41.955203564],[-71.453942542,41.955273564],[-71.454048542,41.955394564],[-71.454260542,41.955586564],[-71.454365542,41.955673564],[-71.454474542,41.955750564],[-71.454780542,41.955949564],[-71.455034542,41.956066564],[-71.455250542,41.956155564],[-71.455331542,41.956183564],[-71.455422542,41.956208564],[-71.455516542,41.956229564],[-71.455596543,41.956257564],[-71.455641542,41.956303564],[-71.455676542,41.956362564],[-71.455617542,41.956400564],[-71.455513542,41.956416564],[-71.455343543,41.956420564],[-71.455314542,41.956435564],[-71.455329542,41.956456564],[-71.455490542,41.956511564],[-71.455673543,41.956580564],[-71.455882542,41.956653564],[-71.456032543,41.956698564],[-71.456359543,41.956780564],[-71.456434543,41.956804564],[-71.456502542,41.956833564],[-71.456792543,41.956939564],[-71.456873543,41.956964564],[-71.457044543,41.957007564],[-71.457213543,41.957063564],[-71.457384543,41.957113564],[-71.457630543,41.957165564],[-71.457876543,41.957242564],[-71.458053543,41.957283564],[-71.458125543,41.957293564],[-71.458199543,41.957297564],[-71.458453543,41.957333564],[-71.458797543,41.957388564],[-71.459082544,41.957428564],[-71.459545544,41.957502564],[-71.459632544,41.957503564],[-71.459702544,41.957471564],[-71.459765544,41.957409564],[-71.459744544,41.957398564],[-71.459602544,41.957345564],[-71.459515544,41.957323564],[-71.459223544,41.957275564],[-71.459042544,41.957252564],[-71.458946544,41.957236564],[-71.458772544,41.957198564],[-71.458617544,41.957149564],[-71.458160543,41.957043564],[-71.457652543,41.956967564],[-71.457285543,41.956885564],[-71.456870543,41.956743564],[-71.456730543,41.956691564],[-71.456597543,41.956629564],[-71.456518543,41.956574564],[-71.456473543,41.956517564],[-71.456533543,41.956511564],[-71.456606543,41.956525564],[-71.456753543,41.956587564],[-71.457058543,41.956694564],[-71.457353543,41.956770564],[-71.457621543,41.956848564],[-71.457723543,41.956873564],[-71.457873543,41.956898564],[-71.458221543,41.956975564],[-71.458470543,41.957016564],[-71.458631543,41.957050564],[-71.458780543,41.957099564],[-71.458862543,41.957116564],[-71.459034544,41.957144564],[-71.459384544,41.957187564],[-71.459537544,41.957214564],[-71.459861544,41.957262564],[-71.460633544,41.957335564],[-71.460931544,41.957372564],[-71.461032544,41.957391564],[-71.461100544,41.957409564],[-71.461442544,41.957520564],[-71.461515544,41.957567564],[-71.461580544,41.957624564],[-71.461755545,41.957805564],[-71.461803545,41.957867564],[-71.461840544,41.957931564],[-71.461948545,41.958260564],[-71.461963544,41.958331564],[-71.461971545,41.958411564],[-71.461995544,41.958551564],[-71.461999545,41.958626564],[-71.462032545,41.958757564],[-71.462055545,41.959220564],[-71.462117545,41.959877564],[-71.462131545,41.960238565],[-71.462192545,41.960707565],[-71.462215545,41.960842565],[-71.462241545,41.961212565],[-71.462295545,41.961405565],[-71.462320545,41.961539565],[-71.462397545,41.961679565],[-71.462440545,41.961785565],[-71.462501545,41.961888565],[-71.462548545,41.961996565],[-71.462578545,41.962047565],[-71.462628545,41.962110565],[-71.462669545,41.962171565],[-71.462723545,41.962233565],[-71.462784545,41.962294565],[-71.462764545,41.962334565],[-71.462720545,41.962379565],[-71.462682545,41.962429565],[-71.462656545,41.962480565],[-71.462613545,41.962531565],[-71.462440545,41.962689565],[-71.462410545,41.962752565],[-71.462407545,41.962873565],[-71.462415545,41.963000565],[-71.462431545,41.963060565],[-71.462439545,41.963129565],[-71.462442545,41.963251565],[-71.462427545,41.963328565],[-71.462395545,41.963403565],[-71.462329545,41.963507565],[-71.462287545,41.963557565],[-71.462184545,41.963653565],[-71.462164545,41.963665565],[-71.462095545,41.963641565],[-71.462034545,41.963591565],[-71.461990545,41.963535565],[-71.461932545,41.963482565],[-71.461859545,41.963378565],[-71.461779545,41.963359566],[-71.461634545,41.963337565],[-71.461555545,41.963333565],[-71.461471545,41.963318565],[-71.461379544,41.963312565],[-71.461129545,41.963320566],[-71.460980544,41.963295565],[-71.460822545,41.963243565],[-71.460743545,41.963226565],[-71.460656544,41.963194565],[-71.460519544,41.963175565],[-71.460493544,41.963171565],[-71.460416544,41.963174565],[-71.460338544,41.963165565],[-71.460123544,41.963084565],[-71.460034544,41.963063565],[-71.459940544,41.963052565],[-71.459642544,41.963055565],[-71.459078544,41.965297565],[-71.459151544,41.965483566],[-71.459484544,41.966337566],[-71.458916544,41.966721566],[-71.460152544,41.967751566],[-71.461097545,41.968550566],[-71.461105545,41.968571566],[-71.460403544,41.968968566],[-71.459663544,41.969376566],[-71.458908544,41.969780567],[-71.458504544,41.970013567],[-71.458298544,41.970097566],[-71.458160544,41.970105567],[-71.458092544,41.970089567],[-71.458061544,41.970082567],[-71.457977544,41.970028567],[-71.457397544,41.969578567],[-71.457008544,41.969853567],[-71.456703543,41.970055566],[-71.455986544,41.970543567],[-71.455315543,41.970997567],[-71.454643543,41.971455567],[-71.453400543,41.972287567],[-71.454056543,41.972851567],[-71.454391543,41.973133567],[-71.454834543,41.973511567],[-71.455086543,41.973721567],[-71.456009543,41.974514567],[-71.456085543,41.974579567],[-71.456444543,41.974888568],[-71.456863544,41.975232568],[-71.456864544,41.975251568],[-71.457314544,41.975689568],[-71.457634544,41.975979568],[-71.457809544,41.976147568],[-71.457886544,41.976216567],[-71.458694545,41.976906568],[-71.459251545,41.977398568],[-71.459679545,41.977749568],[-71.459862545,41.977917568],[-71.460236545,41.978264568],[-71.460579545,41.978524568]]]]}}"}, +{"type": "precinct", "typeId": 804, "areaId": 25751, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":90,\"NAME\":\"0804\",\"SHAPE_Length\":0.1636247147096,\"SHAPE_Area\":-0.0010666724918332},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.418716533,41.999001573],[-71.419342533,42.000611573],[-71.419403533,42.000790573],[-71.419456533,42.000973574],[-71.419502533,42.001202574],[-71.419533533,42.001465574],[-71.419540533,42.001614574],[-71.419533533,42.001759573],[-71.419518533,42.001873574],[-71.419472533,42.002102574],[-71.419426533,42.002259574],[-71.419373533,42.002415574],[-71.419362533,42.002431574],[-71.419304533,42.002583574],[-71.419228533,42.002770574],[-71.419136534,42.002972574],[-71.419052533,42.003174574],[-71.418968533,42.003353574],[-71.418892533,42.003533574],[-71.418831533,42.003716574],[-71.418755533,42.003991574],[-71.418686533,42.004441574],[-71.418655533,42.004753574],[-71.418648533,42.004914575],[-71.418633533,42.005070575],[-71.418625533,42.005234574],[-71.418625533,42.005490574],[-71.418633533,42.005608574],[-71.418648534,42.005875574],[-71.418602533,42.005978575],[-71.418549533,42.006031574],[-71.418724533,42.006028575],[-71.418930533,42.006039575],[-71.419189533,42.006062575],[-71.419502534,42.006119575],[-71.420120534,42.006340575],[-71.420586534,42.006474575],[-71.421799534,42.006852574],[-71.423480535,42.007374575],[-71.423996535,42.007534574],[-71.424789536,42.007786574],[-71.426529535,42.008328575],[-71.427299536,42.008564574],[-71.427517536,42.008634575],[-71.420424534,42.014024577],[-71.420371534,42.014063577],[-71.420441535,42.014145576],[-71.420624534,42.014340576],[-71.420715535,42.014473576],[-71.420746534,42.014508576],[-71.420769534,42.014542576],[-71.420845534,42.014706577],[-71.420883534,42.014927576],[-71.420921534,42.015057577],[-71.421028535,42.015347577],[-71.421043535,42.015416576],[-71.421059535,42.015458576],[-71.421066535,42.015499576],[-71.421127534,42.015675577],[-71.421219535,42.015824576],[-71.421249534,42.015854577],[-71.421272535,42.015889577],[-71.421516534,42.016148577],[-71.421654534,42.016270576],[-71.421707535,42.016312576],[-71.421867534,42.016400577],[-71.422433535,42.016678576],[-71.423600536,42.017207576],[-71.423715536,42.017291577],[-71.423791536,42.017375577],[-71.423852536,42.017471577],[-71.424012535,42.017772576],[-71.424104536,42.017913577],[-71.424440536,42.018288577],[-71.424637535,42.018285577],[-71.426270628,42.018268091],[-71.443515809,42.018027468],[-71.446800543,42.017907576],[-71.447176543,42.017907576],[-71.450003544,42.017906576],[-71.450230544,42.017903576],[-71.452835545,42.017871576],[-71.458104546,42.017806576],[-71.458157547,42.017656575],[-71.458214547,42.017487576],[-71.458237547,42.017281576],[-71.458282547,42.016728576],[-71.458313547,42.016419576],[-71.458313547,42.016358576],[-71.458321547,42.016331575],[-71.458336546,42.016159575],[-71.458402547,42.015682575],[-71.458423547,42.015533575],[-71.458542547,42.014691575],[-71.458725546,42.013966574],[-71.458733547,42.013893575],[-71.458733547,42.013821575],[-71.458755547,42.013642575],[-71.458794547,42.013462575],[-71.458832547,42.013321575],[-71.458878547,42.013047575],[-71.458908547,42.012909575],[-71.458977547,42.012608575],[-71.459007547,42.012455575],[-71.459030547,42.012379575],[-71.459045547,42.012299575],[-71.459068547,42.012223575],[-71.459076546,42.012150575],[-71.459122547,42.011921574],[-71.459145547,42.011639575],[-71.459175546,42.011494574],[-71.459183547,42.011422574],[-71.459244547,42.010865574],[-71.459297547,42.010559574],[-71.459351546,42.010231574],[-71.459488546,42.009766574],[-71.459641547,42.009110574],[-71.459686547,42.008747574],[-71.459747547,42.008366574],[-71.459747547,42.008332573],[-71.459793547,42.007981573],[-71.459846547,42.007779574],[-71.459877546,42.007729573],[-71.459891547,42.007578574],[-71.460163547,42.007295574],[-71.460167547,42.007291574],[-71.460566547,42.006877574],[-71.463733548,42.003594572],[-71.465352549,42.001914572],[-71.465829548,42.001421572],[-71.466359548,42.000868572],[-71.466992549,42.000217572],[-71.467311549,41.999884572],[-71.467359549,41.999838572],[-71.47160755,41.995429571],[-71.472726551,41.994268571],[-71.47282655,41.994164571],[-71.47274955,41.994123571],[-71.470342549,41.992819571],[-71.465618548,41.99033757],[-71.460988546,41.98790457],[-71.460953546,41.988030569],[-71.460915546,41.98813357],[-71.460870546,41.98823557],[-71.460838546,41.98829357],[-71.460808546,41.98834357],[-71.460732546,41.98844657],[-71.460648546,41.98854557],[-71.460541546,41.98865557],[-71.460312546,41.98886557],[-71.460167546,41.98898057],[-71.458801546,41.99010957],[-71.458679546,41.99021657],[-71.458374545,41.99046757],[-71.457817545,41.990914571],[-71.456993545,41.991608571],[-71.456734545,41.991883571],[-71.456619544,41.99202857],[-71.456535545,41.992169571],[-71.456467545,41.992318571],[-71.456413545,41.992466571],[-71.456367544,41.992657571],[-71.456352545,41.992855571],[-71.456352545,41.993054571],[-71.456375545,41.993271571],[-71.456451545,41.993706571],[-71.456612545,41.994904571],[-71.456645545,41.995112571],[-71.456677545,41.995307571],[-71.456680545,41.995327571],[-71.456741545,41.995739571],[-71.456627545,41.995713571],[-71.456406545,41.995655571],[-71.456299545,41.995617571],[-71.456161545,41.995552572],[-71.456093544,41.995526571],[-71.455971545,41.995469571],[-71.455612545,41.995324571],[-71.455399545,41.995251571],[-71.455162544,41.995186571],[-71.455017545,41.995167571],[-71.454514544,41.995118571],[-71.454292544,41.995106572],[-71.454178545,41.995095571],[-71.453911544,41.995057571],[-71.453720544,41.994992571],[-71.453285543,41.994820571],[-71.453087544,41.994728571],[-71.452690544,41.994572571],[-71.452454544,41.994496571],[-71.452217543,41.994408571],[-71.452087544,41.994366572],[-71.451859544,41.994255571],[-71.451752543,41.994194571],[-71.451653543,41.994126571],[-71.451569543,41.994046571],[-71.451492543,41.993962571],[-71.451378543,41.993821571],[-71.451279543,41.993721572],[-71.451180543,41.993653571],[-71.451050543,41.993595571],[-71.450974543,41.993576571],[-71.450790543,41.993538571],[-71.450409543,41.993489572],[-71.450317543,41.993466572],[-71.450241543,41.993435571],[-71.450027543,41.993332572],[-71.449951542,41.993306571],[-71.449883543,41.993275571],[-71.449692543,41.993206571],[-71.449593543,41.993180571],[-71.449501542,41.993161571],[-71.449303543,41.993130571],[-71.449142543,41.993111571],[-71.449112542,41.993103571],[-71.449059542,41.993096571],[-71.448776543,41.993004571],[-71.448509542,41.992936571],[-71.448448542,41.992913571],[-71.448380542,41.992875571],[-71.448318542,41.992833571],[-71.448158542,41.992707571],[-71.448097542,41.992669572],[-71.448013542,41.992627571],[-71.447922542,41.992592571],[-71.447823542,41.992573571],[-71.447716542,41.992569571],[-71.447487542,41.992604571],[-71.447319541,41.992646571],[-71.447243542,41.992676571],[-71.447159542,41.992718571],[-71.446991542,41.992817571],[-71.446899542,41.992859571],[-71.446632542,41.992970571],[-71.446327541,41.993065571],[-71.446198542,41.993096572],[-71.446075541,41.993142571],[-71.445976541,41.993191571],[-71.445885541,41.993248571],[-71.445801541,41.993313572],[-71.445740541,41.993374571],[-71.445602541,41.993573571],[-71.445549541,41.993637571],[-71.445480542,41.993687571],[-71.445419541,41.993718572],[-71.445351541,41.993740572],[-71.445274541,41.993756572],[-71.445183541,41.993752571],[-71.445084541,41.993737572],[-71.444992541,41.993729571],[-71.444916541,41.993737572],[-71.444839541,41.993752571],[-71.444656541,41.993801572],[-71.444557541,41.993840572],[-71.444321541,41.993950572],[-71.444016541,41.994118571],[-71.443878541,41.994179571],[-71.44381054,41.994202572],[-71.443695541,41.994217571],[-71.443642541,41.994217571],[-71.443581541,41.994210572],[-71.44352054,41.994198571],[-71.44345954,41.994179571],[-71.44342054,41.994160571],[-71.443275541,41.994069572],[-71.443214541,41.994019571],[-71.443153541,41.993981571],[-71.443100541,41.993954572],[-71.443039541,41.993931572],[-71.44297854,41.993916572],[-71.44291754,41.993920571],[-71.44285654,41.993935572],[-71.44264254,41.994004571],[-71.44250554,41.994034572],[-71.442398541,41.994038571],[-71.442322541,41.994027572],[-71.442245541,41.994007572],[-71.44204754,41.993946572],[-71.44194854,41.993924571],[-71.44187254,41.993912572],[-71.44180354,41.993920571],[-71.44165854,41.993950572],[-71.44095654,41.994118571],[-71.440086539,41.994282572],[-71.439888539,41.994309571],[-71.438873539,41.994400572],[-71.438225539,41.994469572],[-71.437927539,41.994526572],[-71.437630539,41.994564571],[-71.437401539,41.994622571],[-71.437210539,41.994660571],[-71.436516538,41.994713572],[-71.436150538,41.994751572],[-71.435776538,41.994801572],[-71.435616538,41.994828572],[-71.435562538,41.994835572],[-71.435303538,41.994851572],[-71.434891538,41.994755572],[-71.434631538,41.994664572],[-71.434357538,41.994484571],[-71.434067538,41.994286572],[-71.433899538,41.994130572],[-71.433792537,41.993966572],[-71.433678538,41.993760572],[-71.433594537,41.993634572],[-71.433304537,41.993412571],[-71.432999537,41.993191572],[-71.432716537,41.993004571],[-71.432373537,41.992802572],[-71.432068536,41.992607572],[-71.431618536,41.992360571],[-71.431259537,41.992173572],[-71.430969537,41.992031571],[-71.430695536,41.991906572],[-71.430542537,41.991875571],[-71.430412536,41.991879571],[-71.430244536,41.991925572],[-71.430122536,41.991990571],[-71.429947536,41.992043572],[-71.429749536,41.992035572],[-71.429512536,41.991993571],[-71.429359536,41.991986572],[-71.429146536,41.992001572],[-71.428864536,41.992043572],[-71.428680536,41.992066571],[-71.428436536,41.992043572],[-71.428185536,41.992001572],[-71.427948536,41.991948572],[-71.427917535,41.991936571],[-71.427742535,41.991887572],[-71.427574535,41.991845572],[-71.427345536,41.991883572],[-71.427101535,41.991967572],[-71.426712535,41.992157572],[-71.426620535,41.992249572],[-71.426498535,41.992554571],[-71.426323535,41.992890572],[-71.426277535,41.992997572],[-71.426285535,41.993153572],[-71.426315535,41.993283572],[-71.426315535,41.993470572],[-71.426308535,41.993630572],[-71.426216535,41.993706572],[-71.426056535,41.993710572],[-71.425888535,41.993691572],[-71.425369535,41.993660572],[-71.425034534,41.993657572],[-71.424774534,41.993634572],[-71.424614535,41.993603572],[-71.424477535,41.993534572],[-71.424347534,41.993489572],[-71.424232534,41.993489572],[-71.423965534,41.993592572],[-71.423698534,41.993676572],[-71.423531534,41.993794572],[-71.423393534,41.993924572],[-71.423294534,41.994080572],[-71.423119534,41.994332572],[-71.423019534,41.994496572],[-71.422944534,41.994606572],[-71.422928534,41.994629572],[-71.422768534,41.994755573],[-71.422569533,41.994851573],[-71.422279533,41.994927573],[-71.422012534,41.994980572],[-71.421730534,41.995026573],[-71.421509534,41.995137572],[-71.421472534,41.995169572],[-71.421280534,41.995335573],[-71.421165533,41.995449572],[-71.421013533,41.995739572],[-71.421005534,41.995797572],[-71.420975533,41.995911572],[-71.420937533,41.995972572],[-71.420830534,41.996083572],[-71.420631533,41.996216573],[-71.420525533,41.996277573],[-71.420443534,41.996330573],[-71.420405533,41.996353573],[-71.420219533,41.996453573],[-71.420006533,41.996544573],[-71.419876533,41.996590572],[-71.419472533,41.996712573],[-71.419403533,41.996735573],[-71.419151533,41.996807572],[-71.419510533,41.997677573],[-71.419807533,41.998425573],[-71.419884533,41.998680573],[-71.419884533,41.998715574],[-71.419846533,41.998734574],[-71.418716533,41.999001573]]]]}}"}, +{"type": "precinct", "typeId": 805, "areaId": 25742, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":81,\"NAME\":\"0805\",\"SHAPE_Length\":0.08022069002386,\"SHAPE_Area\":-0.00032468403799977},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.381699517,41.929585561],[-71.381721517,41.929566561],[-71.382102517,41.929175561],[-71.382156517,41.929119561],[-71.382210517,41.929074561],[-71.382515517,41.928818561],[-71.382828517,41.92857056],[-71.382894517,41.92851256],[-71.383400517,41.929204561],[-71.387457519,41.933172561],[-71.389517519,41.935096562],[-71.38949152,41.935113562],[-71.38943252,41.935160561],[-71.389382519,41.935212562],[-71.38934952,41.935272562],[-71.38933752,41.935329562],[-71.38933552,41.935457562],[-71.389343519,41.935518562],[-71.389340519,41.935708562],[-71.389341519,41.935753562],[-71.389359519,41.935854562],[-71.38939352,41.935954562],[-71.38962852,41.936441562],[-71.38977052,41.936790562],[-71.38984452,41.937029562],[-71.38982652,41.937093562],[-71.38980552,41.937157562],[-71.38977052,41.937322563],[-71.38975252,41.937465562],[-71.38974752,41.937849563],[-71.38973652,41.937969562],[-71.38969952,41.938143563],[-71.38970152,41.938225562],[-71.38972752,41.938303562],[-71.38974952,41.938336563],[-71.38979752,41.938385562],[-71.38984452,41.938420562],[-71.38993152,41.938503562],[-71.39004352,41.938589563],[-71.39012452,41.938679562],[-71.390195521,41.938758562],[-71.39025052,41.938809562],[-71.39037452,41.938894562],[-71.39051552,41.938960563],[-71.39066752,41.938995563],[-71.39090152,41.939066562],[-71.39098652,41.939078563],[-71.391068521,41.939081562],[-71.391146521,41.939077563],[-71.39121252,41.939062562],[-71.391259521,41.939035563],[-71.39129552,41.939000563],[-71.391474521,41.938950562],[-71.391534521,41.938945562],[-71.391577521,41.938983562],[-71.391594521,41.939037563],[-71.391638521,41.939080562],[-71.39170152,41.939112563],[-71.39181752,41.939184562],[-71.391931521,41.939279562],[-71.39197252,41.939327563],[-71.392082521,41.939497562],[-71.39226452,41.939714563],[-71.392314521,41.939761563],[-71.392366521,41.939802562],[-71.392462521,41.939891563],[-71.392478521,41.939918563],[-71.392433521,41.939962562],[-71.392425521,41.940019562],[-71.392451521,41.940081563],[-71.392541521,41.940181563],[-71.392590521,41.940242563],[-71.392635521,41.940300563],[-71.392703521,41.940404563],[-71.392756521,41.940461563],[-71.392906522,41.940524562],[-71.392967521,41.940542563],[-71.392937521,41.940725563],[-71.392887522,41.940739562],[-71.392826521,41.940785563],[-71.392769521,41.940821563],[-71.392759521,41.940872563],[-71.392784521,41.940935563],[-71.392811521,41.940987563],[-71.392883521,41.941097563],[-71.392932521,41.941125563],[-71.393011521,41.941125563],[-71.393103521,41.941118563],[-71.393106521,41.941098563],[-71.393238522,41.941135563],[-71.393357521,41.941143563],[-71.393410522,41.941086563],[-71.393593521,41.940766563],[-71.393669521,41.940598563],[-71.393791521,41.940304563],[-71.393967521,41.939904562],[-71.394020521,41.939804562],[-71.394173522,41.939457562],[-71.394318521,41.939164562],[-71.394331521,41.939114563],[-71.394394521,41.938881563],[-71.394447522,41.938656562],[-71.394493521,41.938473563],[-71.394562522,41.938065563],[-71.394569521,41.937954562],[-71.394569521,41.937855562],[-71.394547521,41.937775562],[-71.394394521,41.937565562],[-71.394226522,41.937355562],[-71.394028521,41.937100562],[-71.393883521,41.936886562],[-71.393799521,41.936650562],[-71.393784522,41.936451562],[-71.393806521,41.936219562],[-71.393883521,41.935967562],[-71.393997522,41.935631561],[-71.394066521,41.935391562],[-71.394676522,41.934056561],[-71.394882521,41.933579562],[-71.395050522,41.933239561],[-71.395187522,41.932885561],[-71.395325522,41.932686561],[-71.395844522,41.931974561],[-71.396042522,41.931694561],[-71.396294522,41.931321561],[-71.396530522,41.931019561],[-71.396751522,41.930806561],[-71.397057522,41.930546561],[-71.397469522,41.930218561],[-71.397583522,41.93011156],[-71.397888522,41.929852561],[-71.397972522,41.92980256],[-71.398010522,41.92977956],[-71.398425523,41.92968256],[-71.398532522,41.929657561],[-71.398697523,41.929619561],[-71.399254523,41.929501561],[-71.399681523,41.92941756],[-71.399811522,41.92937156],[-71.399925523,41.92931056],[-71.399971523,41.929249561],[-71.400024523,41.92907856],[-71.400055523,41.92889456],[-71.400070523,41.92870056],[-71.400040523,41.92851356],[-71.399979523,41.92784956],[-71.399872522,41.92762456],[-71.399850522,41.92754856],[-71.399805523,41.92739156],[-71.399742523,41.92717056],[-71.399681522,41.92677756],[-71.399658522,41.92668656],[-71.399620522,41.92644956],[-71.399544522,41.926037559],[-71.399414523,41.92542356],[-71.399399523,41.925393559],[-71.399269522,41.925019559],[-71.399223523,41.924866559],[-71.399193522,41.924775559],[-71.398987522,41.924187559],[-71.398849522,41.923821559],[-71.398727522,41.923527559],[-71.398598522,41.923199559],[-71.398438522,41.922837559],[-71.398354522,41.922638559],[-71.398102522,41.922196559],[-71.397850522,41.921769559],[-71.397659522,41.921452559],[-71.397079522,41.920483559],[-71.396713521,41.919857558],[-71.396561521,41.919587559],[-71.396355521,41.919243559],[-71.396255521,41.919087559],[-71.395935521,41.918518559],[-71.395660521,41.918049558],[-71.39530952,41.917435558],[-71.39528752,41.917405558],[-71.394890521,41.916745558],[-71.39482352,41.916633559],[-71.394775521,41.916535558],[-71.39461552,41.916256558],[-71.39445552,41.915989558],[-71.39441752,41.915905558],[-71.39437952,41.915837558],[-71.39431852,41.915696558],[-71.39427252,41.915604558],[-71.39423452,41.915512558],[-71.39420352,41.915421558],[-71.39415752,41.915314558],[-71.394135521,41.915249557],[-71.39411952,41.915207558],[-71.39408152,41.915104558],[-71.39406652,41.915078558],[-71.39393652,41.914719558],[-71.39387552,41.914566557],[-71.39377652,41.914311558],[-71.39358552,41.913865557],[-71.39332652,41.913262557],[-71.39315052,41.912850557],[-71.393044519,41.912617557],[-71.392952519,41.912640557],[-71.39278452,41.912655557],[-71.392563519,41.912663557],[-71.392464519,41.912663557],[-71.392212519,41.912671558],[-71.391846519,41.912674558],[-71.391495519,41.912690558],[-71.391075519,41.912705557],[-71.390785519,41.912712558],[-71.390625519,41.912720557],[-71.390236518,41.912762557],[-71.390175519,41.912766558],[-71.389984518,41.912793557],[-71.389336519,41.912915557],[-71.389191518,41.912941558],[-71.388474518,41.913090557],[-71.388405518,41.913105557],[-71.388123518,41.913151558],[-71.387009518,41.913285557],[-71.386337517,41.913411558],[-71.385902518,41.913494557],[-71.385414517,41.913595557],[-71.384979517,41.913685558],[-71.384727517,41.913762558],[-71.384163517,41.913914558],[-71.384118517,41.913927558],[-71.383856517,41.914002558],[-71.383667516,41.914051558],[-71.382904516,41.914292558],[-71.381829517,41.914625558],[-71.381485112,41.914739434],[-71.381484698,41.914906479],[-71.381484681,41.914912592],[-71.381500516,41.915008558],[-71.381500516,41.915249558],[-71.381500516,41.915507558],[-71.381561516,41.915995558],[-71.381572516,41.916078558],[-71.381584516,41.916160559],[-71.381600516,41.916307558],[-71.381533516,41.918782559],[-71.381520516,41.919240559],[-71.381508516,41.919698559],[-71.381506516,41.919762559],[-71.381504516,41.919844559],[-71.381500516,41.920007559],[-71.381500516,41.920144559],[-71.381498517,41.92020056],[-71.381496517,41.920257559],[-71.381500516,41.92107556],[-71.381500516,41.921104559],[-71.381500516,41.92119256],[-71.381500516,41.921237559],[-71.381500516,41.921301559],[-71.381499516,41.921481559],[-71.381575517,41.92193056],[-71.381600516,41.92210756],[-71.381611517,41.922175559],[-71.381700516,41.92270756],[-71.381600516,41.92290756],[-71.381603516,41.92305556],[-71.381607517,41.92322256],[-71.381609517,41.92334056],[-71.381684517,41.92685856],[-71.381687517,41.92697756],[-71.381688517,41.92703656],[-71.381694516,41.927358561],[-71.381699517,41.927607561],[-71.381700517,41.928752561],[-71.381700517,41.929507561],[-71.381699517,41.929585561]]]]}}"}, +{"type": "precinct", "typeId": 806, "areaId": 25745, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":84,\"NAME\":\"0806\",\"SHAPE_Length\":0.13749881953899,\"SHAPE_Area\":-0.00042119724935487},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.381500518,41.953174566],[-71.381570518,41.953177566],[-71.381866519,41.953179566],[-71.382217519,41.953198566],[-71.382668519,41.953209566],[-71.383194519,41.953209566],[-71.383553519,41.953213566],[-71.383807519,41.953204565],[-71.383987519,41.953198566],[-71.384590519,41.953186565],[-71.385185519,41.953148565],[-71.385429519,41.953122565],[-71.385712519,41.953102565],[-71.38588652,41.953084565],[-71.386360519,41.953037566],[-71.386475519,41.953026565],[-71.38729152,41.952919565],[-71.38770352,41.952858565],[-71.387913521,41.952820565],[-71.38822952,41.952763565],[-71.389290521,41.952549565],[-71.390289521,41.952340566],[-71.390999521,41.952179565],[-71.391449521,41.952092565],[-71.393463522,41.951676565],[-71.394653522,41.951439565],[-71.395592523,41.951275565],[-71.395795522,41.951244565],[-71.396378523,41.951157565],[-71.396690523,41.951107565],[-71.398834524,41.950859564],[-71.399857524,41.950764564],[-71.400963524,41.950699565],[-71.402130525,41.950653564],[-71.402542524,41.950642565],[-71.402679525,41.950642565],[-71.402733525,41.950638565],[-71.403008525,41.950634564],[-71.403834525,41.950634564],[-71.404099526,41.950634564],[-71.405144526,41.950661565],[-71.406250526,41.950711564],[-71.408775527,41.950848564],[-71.413033528,41.951104564],[-71.413544528,41.951130565],[-71.414711528,41.951199564],[-71.415794529,41.951256564],[-71.41703053,41.951329564],[-71.41812153,41.951363564],[-71.419151531,41.951348564],[-71.420189531,41.951294564],[-71.421379531,41.951165564],[-71.422229531,41.951033564],[-71.422394531,41.951008564],[-71.422787531,41.950932564],[-71.422224531,41.950765564],[-71.422188531,41.950770564],[-71.422185531,41.950752564],[-71.422133531,41.950738564],[-71.420377531,41.950217563],[-71.419463531,41.949946563],[-71.415590529,41.946281563],[-71.415263529,41.946163563],[-71.415062528,41.946289563],[-71.414467529,41.946679563],[-71.413353528,41.947377563],[-71.412865528,41.947651564],[-71.412413528,41.947844563],[-71.412392528,41.947857563],[-71.411919528,41.947998563],[-71.411751528,41.948040564],[-71.411324527,41.948147564],[-71.410789528,41.948231563],[-71.410332527,41.948269563],[-71.409912528,41.948288563],[-71.409485527,41.948277564],[-71.409065527,41.948235564],[-71.408684526,41.948174564],[-71.408173527,41.948048564],[-71.407661526,41.947880564],[-71.407486526,41.947811564],[-71.407196526,41.947697564],[-71.406967527,41.947594564],[-71.405991526,41.947144564],[-71.405411525,41.946869564],[-71.405083525,41.946720564],[-71.404869525,41.946625564],[-71.404427525,41.946408564],[-71.404160525,41.946267564],[-71.403877525,41.946106563],[-71.403687525,41.945961564],[-71.403580525,41.944950563],[-71.403549525,41.944786563],[-71.403481525,41.944516563],[-71.403458524,41.944462563],[-71.403442525,41.944409563],[-71.403389525,41.944291563],[-71.403351525,41.944226563],[-71.403320525,41.944157563],[-71.403229525,41.944004563],[-71.402733525,41.943081563],[-71.402092525,41.941891562],[-71.401978524,41.941689563],[-71.401954525,41.941644563],[-71.401766524,41.941293563],[-71.401566524,41.940918562],[-71.401085524,41.940037562],[-71.400978524,41.939858563],[-71.400887523,41.939686562],[-71.400719524,41.939427563],[-71.400505524,41.939160562],[-71.400436523,41.939064562],[-71.400208523,41.938778562],[-71.400139524,41.938679562],[-71.400078524,41.938580562],[-71.400024524,41.938477562],[-71.399963524,41.938378562],[-71.399918523,41.938286562],[-71.399803523,41.938095562],[-71.399628523,41.937779562],[-71.399498524,41.937523562],[-71.399475523,41.937470562],[-71.399406523,41.937291562],[-71.399345523,41.937085562],[-71.399330523,41.936982562],[-71.399323523,41.936840562],[-71.399315523,41.936772562],[-71.399323523,41.936673562],[-71.399323523,41.936573562],[-71.399345523,41.936390561],[-71.399376523,41.936230562],[-71.399429523,41.936085562],[-71.399055523,41.936085562],[-71.398643522,41.936116561],[-71.398529523,41.935582562],[-71.398346523,41.934628562],[-71.398270522,41.934113561],[-71.398254522,41.934060561],[-71.398170523,41.933644561],[-71.398048523,41.932930561],[-71.397995523,41.932545561],[-71.397934523,41.932167561],[-71.397888522,41.931763561],[-71.397888522,41.931705561],[-71.397888522,41.931450561],[-71.397903522,41.931233561],[-71.397919522,41.93097056],[-71.397903522,41.93075656],[-71.397873522,41.93060056],[-71.397789522,41.930409561],[-71.397713522,41.93025256],[-71.397583522,41.93011156],[-71.397469522,41.930218561],[-71.397057522,41.930546561],[-71.396751522,41.930806561],[-71.396530522,41.931019561],[-71.396294522,41.931321561],[-71.396042522,41.931694561],[-71.395844522,41.931974561],[-71.395325522,41.932686561],[-71.395187522,41.932885561],[-71.395050522,41.933239561],[-71.394882521,41.933579562],[-71.394676522,41.934056561],[-71.394066521,41.935391562],[-71.393997522,41.935631561],[-71.393883521,41.935967562],[-71.393806521,41.936219562],[-71.393784522,41.936451562],[-71.393799521,41.936650562],[-71.393883521,41.936886562],[-71.394028521,41.937100562],[-71.394226522,41.937355562],[-71.394394521,41.937565562],[-71.394547521,41.937775562],[-71.394569521,41.937855562],[-71.394569521,41.937954562],[-71.394562522,41.938065563],[-71.394493521,41.938473563],[-71.394447522,41.938656562],[-71.394394521,41.938881563],[-71.394331521,41.939114563],[-71.394318521,41.939164562],[-71.394173522,41.939457562],[-71.394020521,41.939804562],[-71.393967521,41.939904562],[-71.393791521,41.940304563],[-71.393669521,41.940598563],[-71.393593521,41.940766563],[-71.393410522,41.941086563],[-71.393357521,41.941143563],[-71.393238522,41.941135563],[-71.393106521,41.941098563],[-71.393103521,41.941118563],[-71.393011521,41.941125563],[-71.392932521,41.941125563],[-71.392883521,41.941097563],[-71.392811521,41.940987563],[-71.392784521,41.940935563],[-71.392759521,41.940872563],[-71.392769521,41.940821563],[-71.392826521,41.940785563],[-71.392887522,41.940739562],[-71.392937521,41.940725563],[-71.392967521,41.940542563],[-71.392906522,41.940524562],[-71.392756521,41.940461563],[-71.392703521,41.940404563],[-71.392635521,41.940300563],[-71.392590521,41.940242563],[-71.392541521,41.940181563],[-71.392451521,41.940081563],[-71.392425521,41.940019562],[-71.392433521,41.939962562],[-71.392478521,41.939918563],[-71.392462521,41.939891563],[-71.392366521,41.939802562],[-71.392314521,41.939761563],[-71.39226452,41.939714563],[-71.392082521,41.939497562],[-71.39197252,41.939327563],[-71.391931521,41.939279562],[-71.39181752,41.939184562],[-71.39170152,41.939112563],[-71.391638521,41.939080562],[-71.391594521,41.939037563],[-71.391577521,41.938983562],[-71.391534521,41.938945562],[-71.391474521,41.938950562],[-71.39129552,41.939000563],[-71.391259521,41.939035563],[-71.39121252,41.939062562],[-71.391146521,41.939077563],[-71.391068521,41.939081562],[-71.39098652,41.939078563],[-71.39090152,41.939066562],[-71.39066752,41.938995563],[-71.39051552,41.938960563],[-71.39037452,41.938894562],[-71.39025052,41.938809562],[-71.390195521,41.938758562],[-71.39012452,41.938679562],[-71.39004352,41.938589563],[-71.38993152,41.938503562],[-71.38984452,41.938420562],[-71.38979752,41.938385562],[-71.38974952,41.938336563],[-71.38972752,41.938303562],[-71.38970152,41.938225562],[-71.38969952,41.938143563],[-71.38973652,41.937969562],[-71.38974752,41.937849563],[-71.38975252,41.937465562],[-71.38977052,41.937322563],[-71.38980552,41.937157562],[-71.38982652,41.937093562],[-71.38984452,41.937029562],[-71.38977052,41.936790562],[-71.38962852,41.936441562],[-71.38939352,41.935954562],[-71.389359519,41.935854562],[-71.389341519,41.935753562],[-71.389340519,41.935708562],[-71.389343519,41.935518562],[-71.38933552,41.935457562],[-71.38933752,41.935329562],[-71.38934952,41.935272562],[-71.389382519,41.935212562],[-71.38943252,41.935160561],[-71.38949152,41.935113562],[-71.389517519,41.935096562],[-71.387457519,41.933172561],[-71.383400517,41.929204561],[-71.382894517,41.92851256],[-71.382828517,41.92857056],[-71.382515517,41.928818561],[-71.382210517,41.929074561],[-71.382156517,41.929119561],[-71.382102517,41.929175561],[-71.381721517,41.929566561],[-71.381699517,41.929585561],[-71.381659517,41.937046563],[-71.381653518,41.938199563],[-71.381648518,41.939034563],[-71.381645517,41.939704562],[-71.381618517,41.944559564],[-71.381617517,41.944725564],[-71.381616517,41.944891563],[-71.381600518,41.947807565],[-71.381598517,41.947892565],[-71.381595518,41.947920564],[-71.381567518,41.949193565],[-71.381558518,41.949586565],[-71.381523518,41.951041565],[-71.381508518,41.951667565],[-71.381507518,41.951712565],[-71.381506518,41.951762565],[-71.381500518,41.952007566],[-71.381500518,41.952607566],[-71.381500518,41.952874565],[-71.381500518,41.953174566]]]]}}"}, +{"type": "precinct", "typeId": 807, "areaId": 25748, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":87,\"NAME\":\"0807\",\"SHAPE_Length\":0.15038215453468,\"SHAPE_Area\":-0.0012554931633182},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.409370529,41.98277357],[-71.409836529,41.98280857],[-71.410103529,41.982819571],[-71.410255529,41.98282757],[-71.410683529,41.98283457],[-71.41082853,41.98283057],[-71.41110053,41.982821571],[-71.411285529,41.98281557],[-71.41351553,41.98267157],[-71.41390053,41.98264857],[-71.416077531,41.98249957],[-71.416054531,41.98233557],[-71.416035531,41.98223057],[-71.415962531,41.98181257],[-71.415920531,41.98160357],[-71.415817531,41.981087569],[-71.416138531,41.98117557],[-71.416977531,41.98146557],[-71.417336532,41.98157557],[-71.417557531,41.98162957],[-71.417984532,41.98168257],[-71.419426532,41.98187757],[-71.420055532,41.98195857],[-71.420258532,41.98198457],[-71.420479533,41.98198557],[-71.420738532,41.98198057],[-71.421074532,41.98191157],[-71.421410533,41.98185857],[-71.421654532,41.98182057],[-71.423437533,41.981480569],[-71.423615534,41.98144657],[-71.423691533,41.98140857],[-71.423843533,41.98156057],[-71.423945534,41.981519569],[-71.424072533,41.98146957],[-71.424644534,41.98120257],[-71.426552534,41.980248569],[-71.429932535,41.978543569],[-71.430481536,41.978276569],[-71.431015535,41.978043569],[-71.431519536,41.977875569],[-71.431999536,41.977738569],[-71.432503536,41.977627569],[-71.432953536,41.977551569],[-71.433235537,41.977524569],[-71.433426537,41.977501568],[-71.433907536,41.977467569],[-71.434410536,41.977463568],[-71.434944537,41.977490569],[-71.435486537,41.977543568],[-71.436157538,41.977650569],[-71.438019538,41.977974569],[-71.439812538,41.978295569],[-71.440636539,41.978436568],[-71.441231539,41.978543569],[-71.441780539,41.978623569],[-71.442238539,41.978680569],[-71.44274954,41.978730568],[-71.443359539,41.978756569],[-71.44361954,41.978756569],[-71.44412254,41.978756569],[-71.44544654,41.978740569],[-71.44506354,41.977907569],[-71.443733539,41.975017568],[-71.442168539,41.971644568],[-71.438749538,41.964271566],[-71.438123537,41.963714566],[-71.437480537,41.963142566],[-71.434982536,41.960922565],[-71.429463534,41.956015565],[-71.429427534,41.955984565],[-71.428190533,41.954885564],[-71.424223532,41.951358564],[-71.422787531,41.950932564],[-71.422394531,41.951008564],[-71.422229531,41.951033564],[-71.421379531,41.951165564],[-71.420189531,41.951294564],[-71.419151531,41.951348564],[-71.41812153,41.951363564],[-71.41703053,41.951329564],[-71.415794529,41.951256564],[-71.414711528,41.951199564],[-71.413544528,41.951130565],[-71.413033528,41.951104564],[-71.408775527,41.950848564],[-71.406250526,41.950711564],[-71.405144526,41.950661565],[-71.404099526,41.950634564],[-71.403834525,41.950634564],[-71.403008525,41.950634564],[-71.402733525,41.950638565],[-71.402679525,41.950642565],[-71.402542524,41.950642565],[-71.402130525,41.950653564],[-71.400963524,41.950699565],[-71.399857524,41.950764564],[-71.398834524,41.950859564],[-71.396690523,41.951107565],[-71.396378523,41.951157565],[-71.395795522,41.951244565],[-71.395592523,41.951275565],[-71.394653522,41.951439565],[-71.393463522,41.951676565],[-71.391449521,41.952092565],[-71.390999521,41.952179565],[-71.390289521,41.952340566],[-71.389290521,41.952549565],[-71.38822952,41.952763565],[-71.387913521,41.952820565],[-71.38797852,41.952874565],[-71.388167521,41.953071565],[-71.388245521,41.953152565],[-71.388573521,41.953583566],[-71.38869552,41.953732565],[-71.38881752,41.953923565],[-71.388863521,41.954056566],[-71.38889552,41.954214565],[-71.38891652,41.954312565],[-71.38891652,41.954377565],[-71.38893152,41.954560566],[-71.38895452,41.954758566],[-71.388958521,41.954867566],[-71.38896952,41.955140566],[-71.388985521,41.955216566],[-71.389053521,41.955471566],[-71.389168521,41.955716565],[-71.389229521,41.955819566],[-71.389267521,41.955872565],[-71.389343521,41.956009565],[-71.389374521,41.956074566],[-71.389458521,41.956223565],[-71.389488521,41.956295566],[-71.389732521,41.956730566],[-71.389931521,41.957062566],[-71.390045521,41.957283566],[-71.390144521,41.957455566],[-71.390289521,41.957657566],[-71.390434521,41.957840567],[-71.390541521,41.958077566],[-71.390633521,41.958363567],[-71.390694521,41.958592566],[-71.390755522,41.958775567],[-71.390770521,41.958836566],[-71.390831522,41.959019566],[-71.390953522,41.959340567],[-71.391014522,41.959534567],[-71.391075521,41.959832566],[-71.391090522,41.960076567],[-71.391075521,41.960305567],[-71.391022521,41.960495566],[-71.390976522,41.960709566],[-71.390945522,41.960801567],[-71.390854522,41.961148567],[-71.390854522,41.961270567],[-71.390869522,41.961335567],[-71.390930522,41.961514567],[-71.390999521,41.961625566],[-71.391212521,41.961876567],[-71.391434522,41.962117567],[-71.391533522,41.962193567],[-71.391586522,41.962235567],[-71.391991522,41.962696567],[-71.392639522,41.963364567],[-71.392708523,41.963436568],[-71.392883523,41.963669568],[-71.393021523,41.963906567],[-71.393089522,41.964081567],[-71.393166522,41.964329568],[-71.393250523,41.964692567],[-71.393311523,41.964920567],[-71.393379522,41.965214567],[-71.393411523,41.965332567],[-71.393486523,41.965603567],[-71.393547523,41.965863568],[-71.393738523,41.966484567],[-71.393806522,41.966645568],[-71.393906523,41.966809568],[-71.394028523,41.966946568],[-71.394203523,41.967118568],[-71.394455523,41.967324568],[-71.394661524,41.967530568],[-71.394890523,41.967785568],[-71.395180523,41.968098568],[-71.395561523,41.968533568],[-71.395805524,41.968811568],[-71.396095524,41.969258568],[-71.396782524,41.970307568],[-71.397095524,41.970818568],[-71.397507525,41.971592568],[-71.397758525,41.972264569],[-71.397854525,41.972555569],[-71.397934525,41.972798568],[-71.398048525,41.973221569],[-71.398140524,41.973435569],[-71.398201525,41.973553569],[-71.398529525,41.974034569],[-71.398827525,41.974446569],[-71.399132525,41.974842569],[-71.399338525,41.975159569],[-71.399780525,41.97597557],[-71.399857525,41.976105569],[-71.399864526,41.976124569],[-71.400169525,41.97661657],[-71.400208525,41.976685569],[-71.400604526,41.977192569],[-71.400841526,41.977520569],[-71.401077526,41.97782957],[-71.401337526,41.978085569],[-71.401718526,41.978436569],[-71.402161526,41.978806569],[-71.402718526,41.97918757],[-71.403740527,41.97985957],[-71.403954527,41.98000957],[-71.404076527,41.98009557],[-71.404259527,41.98025257],[-71.404404527,41.980500571],[-71.404533527,41.98080557],[-71.404686527,41.98109957],[-71.405014528,41.98154157],[-71.405045527,41.981629571],[-71.405045527,41.98173657],[-71.404999527,41.981861571],[-71.405540528,41.98198457],[-71.408012528,41.98256057],[-71.408730529,41.98269357],[-71.408928529,41.98271657],[-71.409370529,41.98277357]]]]}}"}, +{"type": "precinct", "typeId": 808, "areaId": 25749, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":88,\"NAME\":\"0808\",\"SHAPE_Length\":0.20557916410346,\"SHAPE_Area\":-0.0017359211029257},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.381500518,41.953174566],[-71.381500518,41.954807566],[-71.381499518,41.954864566],[-71.381451518,41.958825567],[-71.381401518,41.962991567],[-71.381402518,41.963000568],[-71.381534519,41.964528568],[-71.381429519,41.964580568],[-71.381396519,41.964593568],[-71.381348195,41.964611319],[-71.381348179,41.964617182],[-71.381349519,41.964628567],[-71.381347641,41.964812953],[-71.381346423,41.965255836],[-71.381403518,41.965623568],[-71.381430519,41.965848568],[-71.381450519,41.966181568],[-71.381440518,41.966494568],[-71.381423518,41.966633568],[-71.381427519,41.966697568],[-71.381432519,41.966736568],[-71.381470519,41.966825568],[-71.381508519,41.966886568],[-71.381412519,41.971407569],[-71.381401519,41.972007569],[-71.381399519,41.97223257],[-71.381401519,41.972607569],[-71.381402519,41.972651569],[-71.381403519,41.972689569],[-71.38147452,41.97565157],[-71.38147652,41.97572357],[-71.38149452,41.97631757],[-71.381505519,41.97680157],[-71.38139952,41.97721057],[-71.381312826,41.977472421],[-71.381298548,41.982661997],[-71.38130152,41.982706571],[-71.38130152,41.982812571],[-71.38130152,41.984470572],[-71.38130152,41.985006571],[-71.38137852,41.992033573],[-71.38140152,41.994106574],[-71.38147952,41.998741574],[-71.38148552,41.999128574],[-71.381487521,41.999201575],[-71.38150552,42.000019575],[-71.38150152,42.000106574],[-71.38150052,42.000718575],[-71.38150052,42.001453575],[-71.38150052,42.001813575],[-71.381501521,42.006690576],[-71.381501521,42.006987576],[-71.381501521,42.010206576],[-71.381504521,42.010250577],[-71.381401521,42.018806578],[-71.383341522,42.018807578],[-71.383726522,42.018807578],[-71.383912523,42.018807578],[-71.384111523,42.018807578],[-71.384766523,42.018805578],[-71.384832523,42.018804578],[-71.385019523,42.018806578],[-71.385203523,42.018806578],[-71.385505523,42.018804578],[-71.387008117,42.018806253],[-71.387385326,42.018801147],[-71.387409523,42.018799578],[-71.387487826,42.018799759],[-71.421223433,42.018338025],[-71.421994535,42.018307577],[-71.422481535,42.018306577],[-71.422775535,42.018304577],[-71.422974535,42.018302577],[-71.424089536,42.018291577],[-71.424440536,42.018288577],[-71.424104536,42.017913577],[-71.424012535,42.017772576],[-71.423852536,42.017471577],[-71.423791536,42.017375577],[-71.423715536,42.017291577],[-71.423600536,42.017207576],[-71.422433535,42.016678576],[-71.421867534,42.016400577],[-71.421707535,42.016312576],[-71.421654534,42.016270576],[-71.421516534,42.016148577],[-71.421272535,42.015889577],[-71.421249534,42.015854577],[-71.421219535,42.015824576],[-71.421127534,42.015675577],[-71.421066535,42.015499576],[-71.421059535,42.015458576],[-71.421043535,42.015416576],[-71.421028535,42.015347577],[-71.420921534,42.015057577],[-71.420883534,42.014927576],[-71.420845534,42.014706577],[-71.420769534,42.014542576],[-71.420746534,42.014508576],[-71.420715535,42.014473576],[-71.420624534,42.014340576],[-71.420441535,42.014145576],[-71.420371534,42.014063577],[-71.420424534,42.014024577],[-71.427517536,42.008634575],[-71.427299536,42.008564574],[-71.426529535,42.008328575],[-71.424789536,42.007786574],[-71.423996535,42.007534574],[-71.423480535,42.007374575],[-71.421799534,42.006852574],[-71.420586534,42.006474575],[-71.420120534,42.006340575],[-71.419502534,42.006119575],[-71.419189533,42.006062575],[-71.418930533,42.006039575],[-71.418724533,42.006028575],[-71.418549533,42.006031574],[-71.418602533,42.005978575],[-71.418648534,42.005875574],[-71.418633533,42.005608574],[-71.418625533,42.005490574],[-71.418625533,42.005234574],[-71.418633533,42.005070575],[-71.418648533,42.004914575],[-71.418655533,42.004753574],[-71.418686533,42.004441574],[-71.418755533,42.003991574],[-71.418831533,42.003716574],[-71.418892533,42.003533574],[-71.418968533,42.003353574],[-71.419052533,42.003174574],[-71.419136534,42.002972574],[-71.419228533,42.002770574],[-71.419304533,42.002583574],[-71.419362533,42.002431574],[-71.419373533,42.002415574],[-71.419426533,42.002259574],[-71.419472533,42.002102574],[-71.419518533,42.001873574],[-71.419533533,42.001759573],[-71.419540533,42.001614574],[-71.419533533,42.001465574],[-71.419502533,42.001202574],[-71.419456533,42.000973574],[-71.419403533,42.000790573],[-71.419342533,42.000611573],[-71.418716533,41.999001573],[-71.418587533,41.998688573],[-71.418526533,41.998558574],[-71.418472533,41.998429573],[-71.418365533,41.998215573],[-71.418289533,41.998055573],[-71.418213533,41.997940573],[-71.418098533,41.997792573],[-71.417976532,41.997651573],[-71.417740532,41.997418573],[-71.417526532,41.997231573],[-71.417397533,41.997136572],[-71.417259532,41.997044573],[-71.417236532,41.997025573],[-71.416992532,41.996861573],[-71.416847532,41.996773573],[-71.416573532,41.996586573],[-71.416477532,41.996516573],[-71.416328532,41.996407573],[-71.416153531,41.996258573],[-71.415924531,41.996014573],[-71.415825531,41.995888572],[-71.415756532,41.995785573],[-71.415695532,41.995682573],[-71.415627531,41.995579572],[-71.415337531,41.994957572],[-71.415291532,41.994835572],[-71.415215532,41.994652573],[-71.415161531,41.994538573],[-71.414909531,41.993920572],[-71.414757531,41.993569572],[-71.414536531,41.993153572],[-71.414215531,41.992569572],[-71.414032531,41.992264572],[-71.413994531,41.992192572],[-71.413933531,41.992077572],[-71.413818531,41.991814572],[-71.413399531,41.990681571],[-71.41333053,41.990494572],[-71.41288053,41.989384572],[-71.41272753,41.988987571],[-71.41265153,41.988804572],[-71.41252953,41.988476572],[-71.41243753,41.988236571],[-71.41233853,41.987984572],[-71.41206453,41.987328571],[-71.41175853,41.986561571],[-71.41149153,41.985989571],[-71.41144653,41.985901571],[-71.41127053,41.985569571],[-71.410973529,41.985112571],[-71.410545529,41.984585571],[-71.410027529,41.983982571],[-71.409961529,41.983868571],[-71.409843529,41.98366657],[-71.409814529,41.98361057],[-71.409775529,41.983536571],[-71.409698529,41.98341457],[-71.409576529,41.98317457],[-71.409370529,41.98277357],[-71.408928529,41.98271657],[-71.408730529,41.98269357],[-71.408012528,41.98256057],[-71.405540528,41.98198457],[-71.404999527,41.981861571],[-71.405045527,41.98173657],[-71.405045527,41.981629571],[-71.405014528,41.98154157],[-71.404686527,41.98109957],[-71.404533527,41.98080557],[-71.404404527,41.980500571],[-71.404259527,41.98025257],[-71.404076527,41.98009557],[-71.403954527,41.98000957],[-71.403740527,41.97985957],[-71.402718526,41.97918757],[-71.402161526,41.978806569],[-71.401718526,41.978436569],[-71.401337526,41.978085569],[-71.401077526,41.97782957],[-71.400841526,41.977520569],[-71.400604526,41.977192569],[-71.400208525,41.976685569],[-71.400169525,41.97661657],[-71.399864526,41.976124569],[-71.399857525,41.976105569],[-71.399780525,41.97597557],[-71.399338525,41.975159569],[-71.399132525,41.974842569],[-71.398827525,41.974446569],[-71.398529525,41.974034569],[-71.398201525,41.973553569],[-71.398140524,41.973435569],[-71.398048525,41.973221569],[-71.397934525,41.972798568],[-71.397854525,41.972555569],[-71.397758525,41.972264569],[-71.397507525,41.971592568],[-71.397095524,41.970818568],[-71.396782524,41.970307568],[-71.396095524,41.969258568],[-71.395805524,41.968811568],[-71.395561523,41.968533568],[-71.395180523,41.968098568],[-71.394890523,41.967785568],[-71.394661524,41.967530568],[-71.394455523,41.967324568],[-71.394203523,41.967118568],[-71.394028523,41.966946568],[-71.393906523,41.966809568],[-71.393806522,41.966645568],[-71.393738523,41.966484567],[-71.393547523,41.965863568],[-71.393486523,41.965603567],[-71.393411523,41.965332567],[-71.393379522,41.965214567],[-71.393311523,41.964920567],[-71.393250523,41.964692567],[-71.393166522,41.964329568],[-71.393089522,41.964081567],[-71.393021523,41.963906567],[-71.392883523,41.963669568],[-71.392708523,41.963436568],[-71.392639522,41.963364567],[-71.391991522,41.962696567],[-71.391586522,41.962235567],[-71.391533522,41.962193567],[-71.391434522,41.962117567],[-71.391212521,41.961876567],[-71.390999521,41.961625566],[-71.390930522,41.961514567],[-71.390869522,41.961335567],[-71.390854522,41.961270567],[-71.390854522,41.961148567],[-71.390945522,41.960801567],[-71.390976522,41.960709566],[-71.391022521,41.960495566],[-71.391075521,41.960305567],[-71.391090522,41.960076567],[-71.391075521,41.959832566],[-71.391014522,41.959534567],[-71.390953522,41.959340567],[-71.390831522,41.959019566],[-71.390770521,41.958836566],[-71.390755522,41.958775567],[-71.390694521,41.958592566],[-71.390633521,41.958363567],[-71.390541521,41.958077566],[-71.390434521,41.957840567],[-71.390289521,41.957657566],[-71.390144521,41.957455566],[-71.390045521,41.957283566],[-71.389931521,41.957062566],[-71.389732521,41.956730566],[-71.389488521,41.956295566],[-71.389458521,41.956223565],[-71.389374521,41.956074566],[-71.389343521,41.956009565],[-71.389267521,41.955872565],[-71.389229521,41.955819566],[-71.389168521,41.955716565],[-71.389053521,41.955471566],[-71.388985521,41.955216566],[-71.38896952,41.955140566],[-71.388958521,41.954867566],[-71.38895452,41.954758566],[-71.38893152,41.954560566],[-71.38891652,41.954377565],[-71.38891652,41.954312565],[-71.38889552,41.954214565],[-71.388863521,41.954056566],[-71.38881752,41.953923565],[-71.38869552,41.953732565],[-71.388573521,41.953583566],[-71.388245521,41.953152565],[-71.388167521,41.953071565],[-71.38797852,41.952874565],[-71.387913521,41.952820565],[-71.38770352,41.952858565],[-71.38729152,41.952919565],[-71.386475519,41.953026565],[-71.386360519,41.953037566],[-71.38588652,41.953084565],[-71.385712519,41.953102565],[-71.385429519,41.953122565],[-71.385185519,41.953148565],[-71.384590519,41.953186565],[-71.383987519,41.953198566],[-71.383807519,41.953204565],[-71.383553519,41.953213566],[-71.383194519,41.953209566],[-71.382668519,41.953209566],[-71.382217519,41.953198566],[-71.381866519,41.953179566],[-71.381570518,41.953177566],[-71.381500518,41.953174566]]]]}}"}, +{"type": "precinct", "typeId": 809, "areaId": 25750, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":89,\"NAME\":\"0809\",\"SHAPE_Length\":0.14013019080079,\"SHAPE_Area\":-0.00070532731021761},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.409370529,41.98277357],[-71.409576529,41.98317457],[-71.409698529,41.98341457],[-71.409775529,41.983536571],[-71.409814529,41.98361057],[-71.409843529,41.98366657],[-71.409961529,41.983868571],[-71.410027529,41.983982571],[-71.410545529,41.984585571],[-71.410973529,41.985112571],[-71.41127053,41.985569571],[-71.41144653,41.985901571],[-71.41149153,41.985989571],[-71.41175853,41.986561571],[-71.41206453,41.987328571],[-71.41233853,41.987984572],[-71.41243753,41.988236571],[-71.41252953,41.988476572],[-71.41265153,41.988804572],[-71.41272753,41.988987571],[-71.41288053,41.989384572],[-71.41333053,41.990494572],[-71.413399531,41.990681571],[-71.413818531,41.991814572],[-71.413933531,41.992077572],[-71.413994531,41.992192572],[-71.414032531,41.992264572],[-71.414215531,41.992569572],[-71.414536531,41.993153572],[-71.414757531,41.993569572],[-71.414909531,41.993920572],[-71.415161531,41.994538573],[-71.415215532,41.994652573],[-71.415291532,41.994835572],[-71.415337531,41.994957572],[-71.415627531,41.995579572],[-71.415695532,41.995682573],[-71.415756532,41.995785573],[-71.415825531,41.995888572],[-71.415924531,41.996014573],[-71.416153531,41.996258573],[-71.416328532,41.996407573],[-71.416477532,41.996516573],[-71.416573532,41.996586573],[-71.416847532,41.996773573],[-71.416992532,41.996861573],[-71.417236532,41.997025573],[-71.417259532,41.997044573],[-71.417397533,41.997136572],[-71.417526532,41.997231573],[-71.417740532,41.997418573],[-71.417976532,41.997651573],[-71.418098533,41.997792573],[-71.418213533,41.997940573],[-71.418289533,41.998055573],[-71.418365533,41.998215573],[-71.418472533,41.998429573],[-71.418526533,41.998558574],[-71.418587533,41.998688573],[-71.418716533,41.999001573],[-71.419846533,41.998734574],[-71.419884533,41.998715574],[-71.419884533,41.998680573],[-71.419807533,41.998425573],[-71.419510533,41.997677573],[-71.419151533,41.996807572],[-71.419403533,41.996735573],[-71.419472533,41.996712573],[-71.419876533,41.996590572],[-71.420006533,41.996544573],[-71.420219533,41.996453573],[-71.420405533,41.996353573],[-71.420443534,41.996330573],[-71.420525533,41.996277573],[-71.420631533,41.996216573],[-71.420830534,41.996083572],[-71.420937533,41.995972572],[-71.420975533,41.995911572],[-71.421005534,41.995797572],[-71.421013533,41.995739572],[-71.421165533,41.995449572],[-71.421280534,41.995335573],[-71.421472534,41.995169572],[-71.421509534,41.995137572],[-71.421730534,41.995026573],[-71.422012534,41.994980572],[-71.422279533,41.994927573],[-71.422569533,41.994851573],[-71.422768534,41.994755573],[-71.422928534,41.994629572],[-71.422944534,41.994606572],[-71.423019534,41.994496572],[-71.423119534,41.994332572],[-71.423294534,41.994080572],[-71.423393534,41.993924572],[-71.423531534,41.993794572],[-71.423698534,41.993676572],[-71.423965534,41.993592572],[-71.424232534,41.993489572],[-71.424347534,41.993489572],[-71.424477535,41.993534572],[-71.424614535,41.993603572],[-71.424774534,41.993634572],[-71.425034534,41.993657572],[-71.425369535,41.993660572],[-71.425888535,41.993691572],[-71.426056535,41.993710572],[-71.426216535,41.993706572],[-71.426308535,41.993630572],[-71.426315535,41.993470572],[-71.426315535,41.993283572],[-71.426285535,41.993153572],[-71.426277535,41.992997572],[-71.426323535,41.992890572],[-71.426498535,41.992554571],[-71.426620535,41.992249572],[-71.426712535,41.992157572],[-71.427101535,41.991967572],[-71.427345536,41.991883572],[-71.427574535,41.991845572],[-71.427742535,41.991887572],[-71.427917535,41.991936571],[-71.427948536,41.991948572],[-71.428185536,41.992001572],[-71.428436536,41.992043572],[-71.428680536,41.992066571],[-71.428864536,41.992043572],[-71.429146536,41.992001572],[-71.429359536,41.991986572],[-71.429512536,41.991993571],[-71.429749536,41.992035572],[-71.429947536,41.992043572],[-71.430122536,41.991990571],[-71.430244536,41.991925572],[-71.430412536,41.991879571],[-71.430542537,41.991875571],[-71.430695536,41.991906572],[-71.430969537,41.992031571],[-71.431259537,41.992173572],[-71.431618536,41.992360571],[-71.432068536,41.992607572],[-71.432373537,41.992802572],[-71.432716537,41.993004571],[-71.432999537,41.993191572],[-71.433304537,41.993412571],[-71.433594537,41.993634572],[-71.433678538,41.993760572],[-71.433792537,41.993966572],[-71.433899538,41.994130572],[-71.434067538,41.994286572],[-71.434357538,41.994484571],[-71.434631538,41.994664572],[-71.434891538,41.994755572],[-71.435303538,41.994851572],[-71.435562538,41.994835572],[-71.435616538,41.994828572],[-71.435776538,41.994801572],[-71.436150538,41.994751572],[-71.436516538,41.994713572],[-71.437210539,41.994660571],[-71.437401539,41.994622571],[-71.437630539,41.994564571],[-71.437927539,41.994526572],[-71.438225539,41.994469572],[-71.438873539,41.994400572],[-71.439888539,41.994309571],[-71.440086539,41.994282572],[-71.44095654,41.994118571],[-71.44165854,41.993950572],[-71.44180354,41.993920571],[-71.44187254,41.993912572],[-71.44194854,41.993924571],[-71.44204754,41.993946572],[-71.442245541,41.994007572],[-71.442322541,41.994027572],[-71.442398541,41.994038571],[-71.44250554,41.994034572],[-71.44264254,41.994004571],[-71.44285654,41.993935572],[-71.44291754,41.993920571],[-71.44297854,41.993916572],[-71.443039541,41.993931572],[-71.443100541,41.993954572],[-71.443153541,41.993981571],[-71.443214541,41.994019571],[-71.443275541,41.994069572],[-71.44342054,41.994160571],[-71.44345954,41.994179571],[-71.44352054,41.994198571],[-71.443581541,41.994210572],[-71.443642541,41.994217571],[-71.443695541,41.994217571],[-71.44381054,41.994202572],[-71.443878541,41.994179571],[-71.444016541,41.994118571],[-71.444321541,41.993950572],[-71.444557541,41.993840572],[-71.444656541,41.993801572],[-71.444839541,41.993752571],[-71.444916541,41.993737572],[-71.444992541,41.993729571],[-71.445084541,41.993737572],[-71.445183541,41.993752571],[-71.445274541,41.993756572],[-71.445351541,41.993740572],[-71.445419541,41.993718572],[-71.445480542,41.993687571],[-71.445549541,41.993637571],[-71.445602541,41.993573571],[-71.445740541,41.993374571],[-71.445801541,41.993313572],[-71.445885541,41.993248571],[-71.445976541,41.993191571],[-71.446075541,41.993142571],[-71.446198542,41.993096572],[-71.446327541,41.993065571],[-71.446632542,41.992970571],[-71.446899542,41.992859571],[-71.446991542,41.992817571],[-71.447159542,41.992718571],[-71.447243542,41.992676571],[-71.447319541,41.992646571],[-71.447487542,41.992604571],[-71.447716542,41.992569571],[-71.447823542,41.992573571],[-71.447922542,41.992592571],[-71.448013542,41.992627571],[-71.448097542,41.992669572],[-71.448158542,41.992707571],[-71.448318542,41.992833571],[-71.448380542,41.992875571],[-71.448448542,41.992913571],[-71.448509542,41.992936571],[-71.448776543,41.993004571],[-71.449059542,41.993096571],[-71.449112542,41.993103571],[-71.449142543,41.993111571],[-71.449303543,41.993130571],[-71.449501542,41.993161571],[-71.449593543,41.993180571],[-71.449692543,41.993206571],[-71.449883543,41.993275571],[-71.449951542,41.993306571],[-71.450027543,41.993332572],[-71.450241543,41.993435571],[-71.450317543,41.993466572],[-71.450409543,41.993489572],[-71.450790543,41.993538571],[-71.450974543,41.993576571],[-71.451050543,41.993595571],[-71.451180543,41.993653571],[-71.451279543,41.993721572],[-71.451378543,41.993821571],[-71.451492543,41.993962571],[-71.451569543,41.994046571],[-71.451653543,41.994126571],[-71.451752543,41.994194571],[-71.451859544,41.994255571],[-71.452087544,41.994366572],[-71.452217543,41.994408571],[-71.452454544,41.994496571],[-71.452690544,41.994572571],[-71.453087544,41.994728571],[-71.453285543,41.994820571],[-71.453720544,41.994992571],[-71.453911544,41.995057571],[-71.454178545,41.995095571],[-71.454292544,41.995106572],[-71.454514544,41.995118571],[-71.455017545,41.995167571],[-71.455162544,41.995186571],[-71.455399545,41.995251571],[-71.455612545,41.995324571],[-71.455971545,41.995469571],[-71.456093544,41.995526571],[-71.456161545,41.995552572],[-71.456299545,41.995617571],[-71.456406545,41.995655571],[-71.456627545,41.995713571],[-71.456741545,41.995739571],[-71.456680545,41.995327571],[-71.456677545,41.995307571],[-71.456645545,41.995112571],[-71.456612545,41.994904571],[-71.456451545,41.993706571],[-71.456375545,41.993271571],[-71.456352545,41.993054571],[-71.456352545,41.992855571],[-71.456367544,41.992657571],[-71.456413545,41.992466571],[-71.456467545,41.992318571],[-71.456535545,41.992169571],[-71.456619544,41.99202857],[-71.456734545,41.991883571],[-71.456993545,41.991608571],[-71.457817545,41.990914571],[-71.458374545,41.99046757],[-71.458679546,41.99021657],[-71.458801546,41.99010957],[-71.460167546,41.98898057],[-71.460312546,41.98886557],[-71.460541546,41.98865557],[-71.460648546,41.98854557],[-71.460732546,41.98844657],[-71.460808546,41.98834357],[-71.460838546,41.98829357],[-71.460870546,41.98823557],[-71.460915546,41.98813357],[-71.460953546,41.988030569],[-71.460988546,41.98790457],[-71.461014546,41.98780957],[-71.461029546,41.98769457],[-71.461037546,41.98758057],[-71.461029546,41.98743157],[-71.460876546,41.98643157],[-71.460831545,41.98619957],[-71.460716545,41.985524569],[-71.460686546,41.98526457],[-71.460648546,41.98500557],[-71.460533545,41.984482569],[-71.459839545,41.982270569],[-71.459656545,41.981717569],[-71.459427545,41.980915569],[-71.459396545,41.980751569],[-71.459358545,41.980584569],[-71.459335545,41.980275568],[-71.459351545,41.980126569],[-71.459373545,41.979981568],[-71.459427545,41.979832568],[-71.459503545,41.979683568],[-71.459595545,41.979542569],[-71.459625545,41.979508568],[-71.459709545,41.979393568],[-71.459969545,41.979107568],[-71.460167545,41.978909568],[-71.460579545,41.978524568],[-71.460236545,41.978264568],[-71.459862545,41.977917568],[-71.459679545,41.977749568],[-71.459251545,41.977398568],[-71.458694545,41.976906568],[-71.457886544,41.976216567],[-71.457817544,41.976204568],[-71.457718544,41.976208568],[-71.457550545,41.976235567],[-71.456367544,41.976620568],[-71.455666543,41.976857568],[-71.454819544,41.977131568],[-71.454063544,41.977383568],[-71.453636543,41.977520568],[-71.452988543,41.977730568],[-71.451820543,41.978115568],[-71.451725542,41.978146568],[-71.451546543,41.978207568],[-71.450882543,41.978394569],[-71.450421542,41.978506569],[-71.450378542,41.978516568],[-71.449867542,41.978600568],[-71.449432542,41.978657568],[-71.449379542,41.978661569],[-71.449232541,41.978672568],[-71.448967542,41.978691568],[-71.448357541,41.978711568],[-71.448051541,41.978711568],[-71.447333541,41.978719569],[-71.446991541,41.978722569],[-71.44544654,41.978740569],[-71.44412254,41.978756569],[-71.44361954,41.978756569],[-71.443359539,41.978756569],[-71.44274954,41.978730568],[-71.442238539,41.978680569],[-71.441780539,41.978623569],[-71.441231539,41.978543569],[-71.440636539,41.978436568],[-71.439812538,41.978295569],[-71.438019538,41.977974569],[-71.436157538,41.977650569],[-71.435486537,41.977543568],[-71.434944537,41.977490569],[-71.434410536,41.977463568],[-71.433907536,41.977467569],[-71.433426537,41.977501568],[-71.433235537,41.977524569],[-71.432953536,41.977551569],[-71.432503536,41.977627569],[-71.431999536,41.977738569],[-71.431519536,41.977875569],[-71.431015535,41.978043569],[-71.430481536,41.978276569],[-71.429932535,41.978543569],[-71.426552534,41.980248569],[-71.424644534,41.98120257],[-71.424072533,41.98146957],[-71.423945534,41.981519569],[-71.423843533,41.98156057],[-71.423691533,41.98140857],[-71.423615534,41.98144657],[-71.423437533,41.981480569],[-71.421654532,41.98182057],[-71.421410533,41.98185857],[-71.421074532,41.98191157],[-71.420738532,41.98198057],[-71.420479533,41.98198557],[-71.420258532,41.98198457],[-71.420055532,41.98195857],[-71.419426532,41.98187757],[-71.417984532,41.98168257],[-71.417557531,41.98162957],[-71.417336532,41.98157557],[-71.416977531,41.98146557],[-71.416138531,41.98117557],[-71.415817531,41.981087569],[-71.415920531,41.98160357],[-71.415962531,41.98181257],[-71.416035531,41.98223057],[-71.416054531,41.98233557],[-71.416077531,41.98249957],[-71.41390053,41.98264857],[-71.41351553,41.98267157],[-71.411285529,41.98281557],[-71.41110053,41.982821571],[-71.41082853,41.98283057],[-71.410683529,41.98283457],[-71.410255529,41.98282757],[-71.410103529,41.982819571],[-71.409836529,41.98280857],[-71.409370529,41.98277357]]]]}}"}, +{"type": "precinct", "typeId": 810, "areaId": 25741, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":80,\"NAME\":\"0810\",\"SHAPE_Length\":0.088008535103964,\"SHAPE_Area\":-0.00024885399935404},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.381700515,41.893207554],[-71.381646515,41.893612554],[-71.381617515,41.893831554],[-71.381592515,41.894017554],[-71.381579515,41.894113554],[-71.38153538,41.894445997],[-71.381523552,41.899222741],[-71.381600515,41.899607556],[-71.381600515,41.899755555],[-71.381600515,41.900007555],[-71.381700515,41.903307556],[-71.381700515,41.903359556],[-71.381699515,41.904577556],[-71.381698515,41.904612556],[-71.381699515,41.904807556],[-71.381700515,41.904946556],[-71.381700515,41.905077556],[-71.381700515,41.905820556],[-71.381700515,41.906204556],[-71.381700515,41.906798557],[-71.381700516,41.907812557],[-71.381700516,41.910107557],[-71.381554516,41.910400557],[-71.381500515,41.910507558],[-71.381552516,41.911435557],[-71.381582516,41.911992557],[-71.381591516,41.912160558],[-71.381592516,41.912178558],[-71.381593516,41.912194557],[-71.381600516,41.912307557],[-71.381600516,41.912507558],[-71.381524516,41.912888558],[-71.381500516,41.913007557],[-71.381489264,41.913063814],[-71.381485112,41.914739434],[-71.381829517,41.914625558],[-71.382904516,41.914292558],[-71.383667516,41.914051558],[-71.383856517,41.914002558],[-71.384118517,41.913927558],[-71.384163517,41.913914558],[-71.384727517,41.913762558],[-71.384979517,41.913685558],[-71.385414517,41.913595557],[-71.385902518,41.913494557],[-71.386337517,41.913411558],[-71.387009518,41.913285557],[-71.388123518,41.913151558],[-71.388405518,41.913105557],[-71.388474518,41.913090557],[-71.389191518,41.912941558],[-71.389336519,41.912915557],[-71.389984518,41.912793557],[-71.390175519,41.912766558],[-71.390236518,41.912762557],[-71.390625519,41.912720557],[-71.390785519,41.912712558],[-71.391075519,41.912705557],[-71.391495519,41.912690558],[-71.391846519,41.912674558],[-71.392212519,41.912671558],[-71.392464519,41.912663557],[-71.392563519,41.912663557],[-71.39278452,41.912655557],[-71.392952519,41.912640557],[-71.393044519,41.912617557],[-71.39405152,41.912396557],[-71.39429552,41.912335557],[-71.39468452,41.912236557],[-71.395966521,41.911946557],[-71.39558452,41.911332557],[-71.39529452,41.910828557],[-71.39508452,41.910451557],[-71.395208521,41.910515557],[-71.39540952,41.910621557],[-71.39567852,41.910752557],[-71.400635522,41.913052557],[-71.401062522,41.912869558],[-71.401482523,41.912697557],[-71.400356522,41.912392557],[-71.400280522,41.912386557],[-71.400240522,41.912321557],[-71.400235522,41.912317557],[-71.400156522,41.912283557],[-71.400072522,41.912265557],[-71.400038522,41.912252557],[-71.399900522,41.912230557],[-71.399876522,41.912209557],[-71.399877522,41.912191557],[-71.399913522,41.912172557],[-71.400024522,41.912168557],[-71.400055522,41.912151557],[-71.400039522,41.912125557],[-71.399986521,41.912096557],[-71.400005522,41.912070557],[-71.400077522,41.912017557],[-71.400138522,41.912018557],[-71.400058522,41.911973557],[-71.400032522,41.911957557],[-71.399798522,41.912009557],[-71.399638521,41.912052557],[-71.399558521,41.912065557],[-71.399379522,41.912068557],[-71.399299522,41.912083557],[-71.399222522,41.912091557],[-71.399053521,41.912058557],[-71.398911522,41.912016557],[-71.398765521,41.911980557],[-71.398620522,41.911924557],[-71.398478522,41.911857557],[-71.397989521,41.911649557],[-71.397690521,41.911494557],[-71.397496521,41.911375557],[-71.397389521,41.911291557],[-71.397322521,41.911231557],[-71.397264521,41.911171557],[-71.397117521,41.910977557],[-71.397060521,41.910867557],[-71.397046521,41.910810557],[-71.397045521,41.910690557],[-71.397052521,41.910624557],[-71.397072521,41.910552557],[-71.397162521,41.910369557],[-71.397242521,41.910166557],[-71.397279521,41.910116557],[-71.397343521,41.910066556],[-71.397534521,41.909917557],[-71.397603521,41.909872556],[-71.397684521,41.909828556],[-71.397864521,41.909751556],[-71.398018521,41.909677556],[-71.398164521,41.909616556],[-71.398231521,41.909578556],[-71.398283521,41.909533557],[-71.398372521,41.909405556],[-71.398431521,41.909348556],[-71.398486521,41.909284556],[-71.398562522,41.909179557],[-71.398614521,41.909141557],[-71.398650521,41.909102557],[-71.398639522,41.909045557],[-71.398643521,41.908755556],[-71.398659522,41.908681556],[-71.398701521,41.908554557],[-71.398839521,41.908062556],[-71.398936521,41.907825556],[-71.398977521,41.907648556],[-71.399068522,41.907448556],[-71.399167521,41.907273556],[-71.399279522,41.907113556],[-71.399314521,41.907049556],[-71.399482521,41.906671556],[-71.399577521,41.906414556],[-71.399604521,41.906363556],[-71.399643521,41.906291556],[-71.399931521,41.905876556],[-71.400021522,41.905702556],[-71.400044522,41.905636555],[-71.400072522,41.905506556],[-71.400093522,41.905223556],[-71.400089521,41.905013555],[-71.400095522,41.904877555],[-71.400088521,41.904803556],[-71.400083522,41.904737556],[-71.400054522,41.904593556],[-71.399946522,41.904280556],[-71.399887522,41.904145556],[-71.399835521,41.903951556],[-71.399823522,41.903889555],[-71.399822521,41.903738556],[-71.399830521,41.903663556],[-71.399845522,41.903594555],[-71.399887522,41.903464556],[-71.399912521,41.903336555],[-71.399929521,41.903278555],[-71.400026521,41.903049555],[-71.400056522,41.902989555],[-71.400078522,41.902925555],[-71.400119522,41.902725555],[-71.400142521,41.902662555],[-71.400238522,41.902481555],[-71.400326521,41.902359555],[-71.400416521,41.902254555],[-71.400561522,41.902114555],[-71.400600522,41.902059555],[-71.400651521,41.901939555],[-71.400670521,41.901849555],[-71.400658522,41.901719555],[-71.400618521,41.901588555],[-71.400594521,41.901534555],[-71.400525522,41.901424555],[-71.400479521,41.901375555],[-71.400424521,41.901334555],[-71.400358521,41.901300555],[-71.400213522,41.901241555],[-71.400147521,41.901206555],[-71.400023522,41.901120555],[-71.399957521,41.901085555],[-71.399736521,41.900992555],[-71.399655521,41.900977555],[-71.399588521,41.900988555],[-71.399576522,41.901037555],[-71.399596521,41.901097555],[-71.399636521,41.901144555],[-71.399746521,41.901255555],[-71.399836521,41.901373555],[-71.399845522,41.901437555],[-71.399843521,41.901495555],[-71.399908521,41.901620555],[-71.399918521,41.901674555],[-71.399914521,41.901810555],[-71.399889521,41.901870555],[-71.399855521,41.901880555],[-71.399813521,41.901861555],[-71.399746521,41.901804555],[-71.399705521,41.901749555],[-71.399669521,41.901686555],[-71.399592521,41.901467555],[-71.399452521,41.901206555],[-71.399365521,41.901087555],[-71.399224521,41.900924555],[-71.399052521,41.900773555],[-71.398923521,41.900674555],[-71.398692521,41.900521555],[-71.398625521,41.900469554],[-71.398502521,41.900362555],[-71.398398521,41.900288555],[-71.398301521,41.900231555],[-71.398166521,41.900164555],[-71.397872521,41.900054555],[-71.39751652,41.899909555],[-71.397448521,41.899877555],[-71.39737352,41.899849555],[-71.39722052,41.899808555],[-71.397057521,41.899773555],[-71.39700352,41.899764555],[-71.39680952,41.899732555],[-71.39656152,41.899709554],[-71.396534521,41.899714555],[-71.394782519,41.898633555],[-71.394296519,41.897660554],[-71.393133519,41.897856554],[-71.392320519,41.898136555],[-71.391739518,41.898351555],[-71.390060518,41.899327555],[-71.388268517,41.899813555],[-71.388236517,41.899854555],[-71.386348517,41.899644555],[-71.386249517,41.899547555],[-71.385932516,41.899599555],[-71.384644516,41.898582555],[-71.383600516,41.897607555],[-71.382990516,41.897070555],[-71.382300515,41.895407554],[-71.382100515,41.894107554],[-71.381700515,41.893207554]]]]}}"}, +{"type": "precinct", "typeId": 811, "areaId": 25743, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":82,\"NAME\":\"0811\",\"SHAPE_Length\":0.08737980460419,\"SHAPE_Area\":-0.00021073816291018},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.399979523,41.92784956],[-71.400009522,41.92791456],[-71.400093523,41.92804856],[-71.400291523,41.92828856],[-71.401314523,41.92924256],[-71.401512523,41.92944856],[-71.401657524,41.92962756],[-71.401680524,41.929657561],[-71.401695524,41.92968856],[-71.401779524,41.929814561],[-71.402008524,41.930241561],[-71.402039523,41.93029156],[-71.402061523,41.93034456],[-71.402565524,41.930107561],[-71.403992524,41.92939456],[-71.404785524,41.929016561],[-71.406075525,41.92837956],[-71.406853525,41.92800956],[-71.407394526,41.92773956],[-71.407928525,41.92749156],[-71.408501526,41.927208559],[-71.409081526,41.92787656],[-71.409103526,41.92791856],[-71.409122526,41.92793056],[-71.409157526,41.92793756],[-71.409203526,41.927925559],[-71.409737526,41.92765156],[-71.409554526,41.927441559],[-71.409477526,41.92735756],[-71.409096525,41.926911559],[-71.408722526,41.926464559],[-71.408594525,41.926273559],[-71.408553525,41.92622456],[-71.408878526,41.92608756],[-71.409164526,41.92594956],[-71.409181526,41.925936559],[-71.409230525,41.925907559],[-71.409279526,41.925878559],[-71.409325526,41.925848559],[-71.409372526,41.92581756],[-71.409430526,41.925781559],[-71.409477526,41.925751559],[-71.409524525,41.92571756],[-71.409569526,41.925684559],[-71.409608526,41.925648559],[-71.409613526,41.925589559],[-71.409576526,41.925550559],[-71.409524525,41.925518559],[-71.409468525,41.92548656],[-71.409413526,41.925456559],[-71.409360526,41.92542456],[-71.409309525,41.925390559],[-71.409264526,41.92533056],[-71.409225526,41.92528856],[-71.409219526,41.92521356],[-71.411999526,41.924482559],[-71.412201526,41.924755559],[-71.412436527,41.924926559],[-71.412645526,41.925002559],[-71.412773527,41.925049559],[-71.413750527,41.925312559],[-71.414108527,41.925396559],[-71.414223527,41.925396559],[-71.414330527,41.925385559],[-71.414413528,41.925331559],[-71.414490528,41.925228559],[-71.414299528,41.925156559],[-71.413803527,41.924931559],[-71.413391527,41.924698559],[-71.413109527,41.924500559],[-71.413048527,41.924462559],[-71.412969527,41.924396559],[-71.412814527,41.924268559],[-71.412735527,41.924202559],[-71.412657527,41.924128559],[-71.412483527,41.923962559],[-71.412170527,41.923619559],[-71.411766526,41.923153559],[-71.411278526,41.922676559],[-71.409569525,41.921128558],[-71.409401526,41.920983558],[-71.408951525,41.920567559],[-71.408829525,41.920445558],[-71.408699525,41.920327558],[-71.408508526,41.920164558],[-71.408211525,41.919911558],[-71.407898525,41.919621558],[-71.407700525,41.919415558],[-71.407532525,41.919224558],[-71.407455525,41.919125558],[-71.407379524,41.919041558],[-71.407135525,41.918747558],[-71.406815524,41.918358558],[-71.406662524,41.918179558],[-71.407738525,41.917653558],[-71.408257525,41.917382558],[-71.408722525,41.917363558],[-71.408672525,41.917390558],[-71.408632525,41.917432558],[-71.408625525,41.917493557],[-71.408604525,41.917545558],[-71.408544525,41.917589557],[-71.408509525,41.917639558],[-71.408483525,41.917694558],[-71.408482525,41.917830558],[-71.408497525,41.917966558],[-71.408497525,41.918037558],[-71.408543525,41.918199558],[-71.408495525,41.918242558],[-71.408434525,41.918279558],[-71.408426525,41.918315558],[-71.408457525,41.918428558],[-71.408486525,41.918482558],[-71.408539525,41.918505558],[-71.408821525,41.918435558],[-71.408881525,41.918404558],[-71.409012526,41.918316558],[-71.409086525,41.918281558],[-71.409161525,41.918251558],[-71.409240525,41.918234558],[-71.409323526,41.918231558],[-71.409363526,41.918202558],[-71.409363526,41.918174557],[-71.409385526,41.918120558],[-71.409439526,41.918078558],[-71.409497526,41.918044558],[-71.409644525,41.917984558],[-71.409783525,41.917899558],[-71.409853526,41.917838558],[-71.409885526,41.917789558],[-71.409909526,41.917738558],[-71.409922525,41.917685558],[-71.409923526,41.917606558],[-71.409872526,41.917552557],[-71.409798525,41.917500558],[-71.409738525,41.917467558],[-71.409437525,41.917334558],[-71.409515525,41.917191558],[-71.408160525,41.916562558],[-71.407616524,41.916310558],[-71.407208524,41.916120558],[-71.406114524,41.915609558],[-71.405674524,41.915404558],[-71.406665524,41.915383558],[-71.407234525,41.915241558],[-71.407928524,41.914984557],[-71.408341525,41.914703557],[-71.408567524,41.914413557],[-71.408728525,41.914108557],[-71.408768525,41.913797557],[-71.408768525,41.913648557],[-71.408762524,41.913626557],[-71.408741525,41.913599557],[-71.408559525,41.913360557],[-71.408505525,41.913321557],[-71.408366525,41.913201557],[-71.408272525,41.913128557],[-71.408241524,41.913079557],[-71.408062524,41.912939557],[-71.407982524,41.912894557],[-71.407921525,41.912833557],[-71.407886524,41.912782557],[-71.407858525,41.912728557],[-71.407768524,41.912493557],[-71.407663525,41.912337557],[-71.407424524,41.912063557],[-71.407214524,41.911850557],[-71.407090524,41.911756557],[-71.407030524,41.911716557],[-71.406946525,41.911670557],[-71.406868524,41.911638557],[-71.406801524,41.911605556],[-71.406662524,41.911523557],[-71.406514524,41.911420557],[-71.406456524,41.911386557],[-71.406307524,41.911317557],[-71.406226524,41.911299557],[-71.406143524,41.911240557],[-71.406066524,41.911209557],[-71.406013523,41.911203557],[-71.405950524,41.911159556],[-71.405878523,41.911137556],[-71.405779523,41.911116556],[-71.405491523,41.911030557],[-71.405393523,41.911007557],[-71.405012524,41.910961556],[-71.404623524,41.910903556],[-71.404266523,41.910876557],[-71.404187523,41.910877557],[-71.404097523,41.910879557],[-71.404021524,41.910898557],[-71.403868523,41.910905556],[-71.403754523,41.910942556],[-71.403689523,41.910972557],[-71.403626523,41.911007557],[-71.403517523,41.911086557],[-71.403466523,41.911129557],[-71.403393523,41.911182557],[-71.403262523,41.911258557],[-71.403226523,41.911309557],[-71.403219523,41.911327557],[-71.403168523,41.911370556],[-71.403114523,41.911399557],[-71.403023523,41.911401557],[-71.402944523,41.911418557],[-71.402864523,41.911449557],[-71.402744523,41.911470557],[-71.402574523,41.911479557],[-71.402366522,41.911484557],[-71.402139522,41.911509557],[-71.402034522,41.911514557],[-71.401749522,41.911515557],[-71.401671522,41.911503557],[-71.401577522,41.911502557],[-71.401504523,41.911506556],[-71.401349523,41.911542557],[-71.401270523,41.911573557],[-71.401206522,41.911608557],[-71.401080522,41.911640557],[-71.401002522,41.911649557],[-71.400944522,41.911649557],[-71.400868522,41.911677557],[-71.400790522,41.911713557],[-71.400601522,41.911820557],[-71.400463522,41.911882557],[-71.400402522,41.911921557],[-71.400338522,41.911954557],[-71.400269522,41.911955557],[-71.400248522,41.911945557],[-71.400181522,41.911939557],[-71.400083522,41.911946557],[-71.400142522,41.911977557],[-71.400146522,41.912005557],[-71.400138522,41.912018557],[-71.400077522,41.912017557],[-71.400005522,41.912070557],[-71.399986521,41.912096557],[-71.400039522,41.912125557],[-71.400055522,41.912151557],[-71.400024522,41.912168557],[-71.399913522,41.912172557],[-71.399877522,41.912191557],[-71.399876522,41.912209557],[-71.399900522,41.912230557],[-71.400038522,41.912252557],[-71.400072522,41.912265557],[-71.400156522,41.912283557],[-71.400235522,41.912317557],[-71.400240522,41.912321557],[-71.400280522,41.912386557],[-71.400356522,41.912392557],[-71.401482523,41.912697557],[-71.401062522,41.912869558],[-71.400635522,41.913052557],[-71.39567852,41.910752557],[-71.39540952,41.910621557],[-71.395208521,41.910515557],[-71.39508452,41.910451557],[-71.39529452,41.910828557],[-71.39558452,41.911332557],[-71.395966521,41.911946557],[-71.39468452,41.912236557],[-71.39429552,41.912335557],[-71.39405152,41.912396557],[-71.393044519,41.912617557],[-71.39315052,41.912850557],[-71.39332652,41.913262557],[-71.39358552,41.913865557],[-71.39377652,41.914311558],[-71.39387552,41.914566557],[-71.39393652,41.914719558],[-71.39406652,41.915078558],[-71.39408152,41.915104558],[-71.39411952,41.915207558],[-71.394135521,41.915249557],[-71.39415752,41.915314558],[-71.39420352,41.915421558],[-71.39423452,41.915512558],[-71.39427252,41.915604558],[-71.39431852,41.915696558],[-71.39437952,41.915837558],[-71.39441752,41.915905558],[-71.39445552,41.915989558],[-71.39461552,41.916256558],[-71.394775521,41.916535558],[-71.39482352,41.916633559],[-71.394890521,41.916745558],[-71.39528752,41.917405558],[-71.39530952,41.917435558],[-71.395660521,41.918049558],[-71.395935521,41.918518559],[-71.396255521,41.919087559],[-71.396355521,41.919243559],[-71.396561521,41.919587559],[-71.396713521,41.919857558],[-71.397079522,41.920483559],[-71.397659522,41.921452559],[-71.397850522,41.921769559],[-71.398102522,41.922196559],[-71.398354522,41.922638559],[-71.398438522,41.922837559],[-71.398598522,41.923199559],[-71.398727522,41.923527559],[-71.398849522,41.923821559],[-71.398987522,41.924187559],[-71.399193522,41.924775559],[-71.399223523,41.924866559],[-71.399269522,41.925019559],[-71.399399523,41.925393559],[-71.399414523,41.92542356],[-71.399544522,41.926037559],[-71.399620522,41.92644956],[-71.399658522,41.92668656],[-71.399681522,41.92677756],[-71.399742523,41.92717056],[-71.399805523,41.92739156],[-71.399850522,41.92754856],[-71.399872522,41.92762456],[-71.399979523,41.92784956]]]]}}"}, +{"type": "precinct", "typeId": 812, "areaId": 25744, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":83,\"NAME\":\"0812\",\"SHAPE_Length\":0.14297773729223,\"SHAPE_Area\":-0.00066256400453712},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.397583522,41.93011156],[-71.397713522,41.93025256],[-71.397789522,41.930409561],[-71.397873522,41.93060056],[-71.397903522,41.93075656],[-71.397919522,41.93097056],[-71.397903522,41.931233561],[-71.397888522,41.931450561],[-71.397888522,41.931705561],[-71.397888522,41.931763561],[-71.397934523,41.932167561],[-71.397995523,41.932545561],[-71.398048523,41.932930561],[-71.398170523,41.933644561],[-71.398254522,41.934060561],[-71.398270522,41.934113561],[-71.398346523,41.934628562],[-71.398529523,41.935582562],[-71.398643522,41.936116561],[-71.399055523,41.936085562],[-71.399429523,41.936085562],[-71.399376523,41.936230562],[-71.399345523,41.936390561],[-71.399323523,41.936573562],[-71.399323523,41.936673562],[-71.399315523,41.936772562],[-71.399323523,41.936840562],[-71.399330523,41.936982562],[-71.399345523,41.937085562],[-71.399406523,41.937291562],[-71.399475523,41.937470562],[-71.399498524,41.937523562],[-71.399628523,41.937779562],[-71.399803523,41.938095562],[-71.399918523,41.938286562],[-71.399963524,41.938378562],[-71.400024524,41.938477562],[-71.400078524,41.938580562],[-71.400139524,41.938679562],[-71.400208523,41.938778562],[-71.400436523,41.939064562],[-71.400505524,41.939160562],[-71.400719524,41.939427563],[-71.400887523,41.939686562],[-71.400978524,41.939858563],[-71.401085524,41.940037562],[-71.401566524,41.940918562],[-71.401766524,41.941293563],[-71.401954525,41.941644563],[-71.401978524,41.941689563],[-71.402092525,41.941891562],[-71.402733525,41.943081563],[-71.403229525,41.944004563],[-71.403320525,41.944157563],[-71.403351525,41.944226563],[-71.403389525,41.944291563],[-71.403442525,41.944409563],[-71.403458524,41.944462563],[-71.403481525,41.944516563],[-71.403549525,41.944786563],[-71.403580525,41.944950563],[-71.403687525,41.945961564],[-71.403877525,41.946106563],[-71.404160525,41.946267564],[-71.404427525,41.946408564],[-71.404869525,41.946625564],[-71.405083525,41.946720564],[-71.405411525,41.946869564],[-71.405991526,41.947144564],[-71.406967527,41.947594564],[-71.407196526,41.947697564],[-71.407486526,41.947811564],[-71.407661526,41.947880564],[-71.408173527,41.948048564],[-71.408684526,41.948174564],[-71.409065527,41.948235564],[-71.409485527,41.948277564],[-71.409912528,41.948288563],[-71.410332527,41.948269563],[-71.410789528,41.948231563],[-71.411324527,41.948147564],[-71.411751528,41.948040564],[-71.411919528,41.947998563],[-71.412392528,41.947857563],[-71.412413528,41.947844563],[-71.412865528,41.947651564],[-71.413353528,41.947377563],[-71.414467529,41.946679563],[-71.415062528,41.946289563],[-71.415263529,41.946163563],[-71.416573529,41.945343563],[-71.417931529,41.944512563],[-71.41883153,41.943936562],[-71.41918953,41.943684562],[-71.41971653,41.943211563],[-71.41996053,41.942948562],[-71.42037253,41.942494562],[-71.42063153,41.942196562],[-71.420807531,41.941998562],[-71.421356531,41.941384562],[-71.421448531,41.941292562],[-71.42190653,41.940815562],[-71.422478531,41.940308562],[-71.422809531,41.940031562],[-71.423347531,41.939587561],[-71.423706531,41.939305562],[-71.424179531,41.938992562],[-71.424614532,41.938771561],[-71.424713532,41.938717561],[-71.424766532,41.938699561],[-71.425331532,41.938504561],[-71.425414532,41.938479561],[-71.426094532,41.938309561],[-71.427330532,41.938054561],[-71.427628532,41.937992561],[-71.429001533,41.937691561],[-71.429558533,41.937584561],[-71.429703533,41.937802561],[-71.429720533,41.937819561],[-71.429939534,41.938046561],[-71.430649533,41.938572562],[-71.431061534,41.938851561],[-71.431099533,41.938877561],[-71.431557534,41.939206561],[-71.431656534,41.939274562],[-71.431801534,41.939385561],[-71.432106534,41.939213562],[-71.432304534,41.939103561],[-71.432518534,41.938980562],[-71.432541534,41.938973561],[-71.432971534,41.938739561],[-71.433637534,41.938376561],[-71.433742535,41.938320561],[-71.433960534,41.938202561],[-71.433707534,41.938081561],[-71.433364534,41.937706561],[-71.433142534,41.937256561],[-71.432809534,41.936843561],[-71.432425534,41.936493561],[-71.431782534,41.935705561],[-71.431443533,41.935370561],[-71.431221534,41.93501056],[-71.430955533,41.93464456],[-71.430854534,41.93428456],[-71.430738534,41.93395656],[-71.430721533,41.93370356],[-71.430717533,41.93340656],[-71.430771533,41.93294756],[-71.430900533,41.93239456],[-71.431013534,41.93189856],[-71.431149534,41.93141956],[-71.431233533,41.931007559],[-71.431271533,41.93079956],[-71.431287533,41.93054956],[-71.431203533,41.93009856],[-71.431106533,41.929587559],[-71.431054533,41.929022559],[-71.430941533,41.92852656],[-71.430891533,41.927891559],[-71.430902533,41.927280559],[-71.430939533,41.926995559],[-71.430756533,41.926606559],[-71.430356532,41.926069559],[-71.429996533,41.925636559],[-71.429579532,41.924779559],[-71.429006532,41.924071558],[-71.428729532,41.923831558],[-71.428327532,41.923551559],[-71.427544531,41.923207558],[-71.426792531,41.922916558],[-71.426025531,41.922678559],[-71.42532253,41.922471558],[-71.424495531,41.922346559],[-71.42371353,41.922261558],[-71.42285353,41.922240558],[-71.422124529,41.922252558],[-71.421986529,41.922229559],[-71.42170053,41.922153558],[-71.420583529,41.921495558],[-71.420071529,41.921202558],[-71.419443529,41.920635558],[-71.419094529,41.920000558],[-71.418807528,41.919269558],[-71.418425528,41.918827558],[-71.416233527,41.917816558],[-71.415002528,41.917125557],[-71.414369527,41.916772557],[-71.414265527,41.916745558],[-71.413595527,41.916372558],[-71.413166527,41.916148557],[-71.412403526,41.915730558],[-71.412109526,41.915576558],[-71.411671526,41.915379557],[-71.411087525,41.915022557],[-71.411026525,41.914992558],[-71.410929525,41.914939557],[-71.410480525,41.914699558],[-71.409750525,41.914304557],[-71.409372525,41.914104557],[-71.409365525,41.914070557],[-71.409329525,41.914022557],[-71.409262525,41.913985557],[-71.408959525,41.913869557],[-71.408872525,41.913774557],[-71.408824525,41.913728557],[-71.408768525,41.913648557],[-71.408768525,41.913797557],[-71.408728525,41.914108557],[-71.408567524,41.914413557],[-71.408341525,41.914703557],[-71.407928524,41.914984557],[-71.407234525,41.915241558],[-71.406665524,41.915383558],[-71.405674524,41.915404558],[-71.406114524,41.915609558],[-71.407208524,41.916120558],[-71.407616524,41.916310558],[-71.408160525,41.916562558],[-71.409515525,41.917191558],[-71.409437525,41.917334558],[-71.409738525,41.917467558],[-71.409798525,41.917500558],[-71.409872526,41.917552557],[-71.409923526,41.917606558],[-71.409922525,41.917685558],[-71.409909526,41.917738558],[-71.409885526,41.917789558],[-71.409853526,41.917838558],[-71.409783525,41.917899558],[-71.409644525,41.917984558],[-71.409497526,41.918044558],[-71.409439526,41.918078558],[-71.409385526,41.918120558],[-71.409363526,41.918174557],[-71.409363526,41.918202558],[-71.409323526,41.918231558],[-71.409240525,41.918234558],[-71.409161525,41.918251558],[-71.409086525,41.918281558],[-71.409012526,41.918316558],[-71.408881525,41.918404558],[-71.408821525,41.918435558],[-71.408539525,41.918505558],[-71.408486525,41.918482558],[-71.408457525,41.918428558],[-71.408426525,41.918315558],[-71.408434525,41.918279558],[-71.408495525,41.918242558],[-71.408543525,41.918199558],[-71.408497525,41.918037558],[-71.408497525,41.917966558],[-71.408482525,41.917830558],[-71.408483525,41.917694558],[-71.408509525,41.917639558],[-71.408544525,41.917589557],[-71.408604525,41.917545558],[-71.408625525,41.917493557],[-71.408632525,41.917432558],[-71.408672525,41.917390558],[-71.408722525,41.917363558],[-71.408257525,41.917382558],[-71.407738525,41.917653558],[-71.406662524,41.918179558],[-71.406815524,41.918358558],[-71.407135525,41.918747558],[-71.407379524,41.919041558],[-71.407455525,41.919125558],[-71.407532525,41.919224558],[-71.407700525,41.919415558],[-71.407898525,41.919621558],[-71.408211525,41.919911558],[-71.408508526,41.920164558],[-71.408699525,41.920327558],[-71.408829525,41.920445558],[-71.408951525,41.920567559],[-71.409401526,41.920983558],[-71.409569525,41.921128558],[-71.411278526,41.922676559],[-71.411766526,41.923153559],[-71.412170527,41.923619559],[-71.412483527,41.923962559],[-71.412657527,41.924128559],[-71.412735527,41.924202559],[-71.412814527,41.924268559],[-71.412969527,41.924396559],[-71.413048527,41.924462559],[-71.413109527,41.924500559],[-71.413391527,41.924698559],[-71.413803527,41.924931559],[-71.414299528,41.925156559],[-71.414490528,41.925228559],[-71.414413528,41.925331559],[-71.414330527,41.925385559],[-71.414223527,41.925396559],[-71.414108527,41.925396559],[-71.413750527,41.925312559],[-71.412773527,41.925049559],[-71.412645526,41.925002559],[-71.412436527,41.924926559],[-71.412201526,41.924755559],[-71.411999526,41.924482559],[-71.409219526,41.92521356],[-71.409225526,41.92528856],[-71.409264526,41.92533056],[-71.409309525,41.925390559],[-71.409360526,41.92542456],[-71.409413526,41.925456559],[-71.409468525,41.92548656],[-71.409524525,41.925518559],[-71.409576526,41.925550559],[-71.409613526,41.925589559],[-71.409608526,41.925648559],[-71.409569526,41.925684559],[-71.409524525,41.92571756],[-71.409477526,41.925751559],[-71.409430526,41.925781559],[-71.409372526,41.92581756],[-71.409325526,41.925848559],[-71.409279526,41.925878559],[-71.409230525,41.925907559],[-71.409181526,41.925936559],[-71.409164526,41.92594956],[-71.408878526,41.92608756],[-71.408553525,41.92622456],[-71.408594525,41.926273559],[-71.408722526,41.926464559],[-71.409096525,41.926911559],[-71.409477526,41.92735756],[-71.409554526,41.927441559],[-71.409737526,41.92765156],[-71.409203526,41.927925559],[-71.409157526,41.92793756],[-71.409122526,41.92793056],[-71.409103526,41.92791856],[-71.409081526,41.92787656],[-71.408501526,41.927208559],[-71.407928525,41.92749156],[-71.407394526,41.92773956],[-71.406853525,41.92800956],[-71.406075525,41.92837956],[-71.404785524,41.929016561],[-71.403992524,41.92939456],[-71.402565524,41.930107561],[-71.402061523,41.93034456],[-71.402039523,41.93029156],[-71.402008524,41.930241561],[-71.401779524,41.929814561],[-71.401695524,41.92968856],[-71.401680524,41.929657561],[-71.401657524,41.92962756],[-71.401512523,41.92944856],[-71.401314523,41.92924256],[-71.400291523,41.92828856],[-71.400093523,41.92804856],[-71.400009522,41.92791456],[-71.399979523,41.92784956],[-71.400040523,41.92851356],[-71.400070523,41.92870056],[-71.400055523,41.92889456],[-71.400024523,41.92907856],[-71.399971523,41.929249561],[-71.399925523,41.92931056],[-71.399811522,41.92937156],[-71.399681523,41.92941756],[-71.399254523,41.929501561],[-71.398697523,41.929619561],[-71.398532522,41.929657561],[-71.398425523,41.92968256],[-71.398010522,41.92977956],[-71.397972522,41.92980256],[-71.397888522,41.929852561],[-71.397583522,41.93011156]]]]}}"}, +{"type": "precinct", "typeId": 813, "areaId": 26072, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":411,\"NAME\":\"0813\",\"SHAPE_Length\":0.073296744984865,\"SHAPE_Area\":-0.00023072123926514},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.460988546,41.98790457],[-71.465618548,41.99033757],[-71.470342549,41.992819571],[-71.47274955,41.994123571],[-71.47282655,41.994164571],[-71.47291055,41.994078571],[-71.47296655,41.994014571],[-71.474655551,41.99227457],[-71.476213551,41.99065457],[-71.478702552,41.988078569],[-71.478774551,41.987998569],[-71.479048552,41.98771557],[-71.479389552,41.987361569],[-71.479719552,41.987018569],[-71.479767552,41.986966569],[-71.480327552,41.986386569],[-71.480427552,41.986283569],[-71.480454552,41.986256569],[-71.480865552,41.985829569],[-71.481022552,41.985666569],[-71.481063552,41.985625569],[-71.481223552,41.985463569],[-71.481279553,41.985402569],[-71.482104553,41.984548569],[-71.482141553,41.984508568],[-71.482247553,41.984397569],[-71.482556552,41.984080568],[-71.482857553,41.983766568],[-71.483126553,41.983486568],[-71.483158553,41.983453568],[-71.486799554,41.979681568],[-71.486963554,41.979507567],[-71.487200554,41.979264567],[-71.487243554,41.979219568],[-71.487205554,41.978806567],[-71.486491554,41.978353568],[-71.486156554,41.978230567],[-71.485283553,41.978005567],[-71.485146553,41.977974567],[-71.483892553,41.978105567],[-71.483499553,41.978144567],[-71.483057691,41.978152751],[-71.47613855,41.980463568],[-71.47557055,41.980762568],[-71.47502355,41.981050569],[-71.47484155,41.981146569],[-71.47408355,41.981545568],[-71.473450549,41.981884569],[-71.473373549,41.981927569],[-71.472733549,41.982285568],[-71.472153549,41.982586569],[-71.471596549,41.982891569],[-71.471252549,41.982716569],[-71.471130549,41.982659569],[-71.470802549,41.982499568],[-71.470421548,41.982308569],[-71.470375549,41.982289569],[-71.470139549,41.982178569],[-71.469955548,41.982106568],[-71.469521549,41.981949569],[-71.468987548,41.981762569],[-71.468750548,41.981678568],[-71.468178547,41.981472569],[-71.467545548,41.981251568],[-71.467178548,41.981118568],[-71.466858547,41.981003569],[-71.466232547,41.980790569],[-71.466125547,41.980748568],[-71.465187547,41.980416568],[-71.464935547,41.980328569],[-71.464378546,41.980114569],[-71.464329547,41.980093569],[-71.464096547,41.979996569],[-71.463722546,41.979809568],[-71.463516546,41.979710568],[-71.462959546,41.979439568],[-71.462563545,41.979279568],[-71.462296546,41.979187568],[-71.461922545,41.979084568],[-71.461739546,41.979039569],[-71.461555545,41.978993568],[-71.461266545,41.978890568],[-71.460899545,41.978718568],[-71.460579545,41.978524568],[-71.460167545,41.978909568],[-71.459969545,41.979107568],[-71.459709545,41.979393568],[-71.459625545,41.979508568],[-71.459595545,41.979542569],[-71.459503545,41.979683568],[-71.459427545,41.979832568],[-71.459373545,41.979981568],[-71.459351545,41.980126569],[-71.459335545,41.980275568],[-71.459358545,41.980584569],[-71.459396545,41.980751569],[-71.459427545,41.980915569],[-71.459656545,41.981717569],[-71.459839545,41.982270569],[-71.460533545,41.984482569],[-71.460648546,41.98500557],[-71.460686546,41.98526457],[-71.460716545,41.985524569],[-71.460831545,41.98619957],[-71.460876546,41.98643157],[-71.461029546,41.98743157],[-71.461037546,41.98758057],[-71.461029546,41.98769457],[-71.461014546,41.98780957],[-71.460988546,41.98790457]]]]}}"}, +{"type": "precinct", "typeId": 901, "areaId": 25754, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":93,\"NAME\":\"0901\",\"SHAPE_Length\":0.09194590033505,\"SHAPE_Area\":-0.00045349511627304},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.523726549,41.662405505],[-71.523731549,41.662405505],[-71.523810549,41.662407505],[-71.524317549,41.662382505],[-71.52475655,41.662366505],[-71.526104549,41.662309505],[-71.52654255,41.662308505],[-71.52726855,41.662310505],[-71.529274551,41.662316504],[-71.530556551,41.662301505],[-71.532306551,41.662283505],[-71.533201552,41.662274504],[-71.541633555,41.662098504],[-71.544315556,41.662007504],[-71.544582556,41.661999505],[-71.544814556,41.662002504],[-71.545498556,41.661985504],[-71.546319556,41.661950504],[-71.546680556,41.661934504],[-71.546658556,41.661421504],[-71.546620556,41.660485504],[-71.546615557,41.660290504],[-71.546606556,41.659867504],[-71.546600556,41.659586503],[-71.546596557,41.659396504],[-71.546593556,41.659251503],[-71.546587556,41.658946503],[-71.546507556,41.655139502],[-71.546491556,41.654408503],[-71.546436556,41.651774502],[-71.546355555,41.646292501],[-71.546319555,41.643805501],[-71.546417555,41.6420935],[-71.546305556,41.6420855],[-71.545983555,41.6420625],[-71.545871555,41.6420445],[-71.545753555,41.6420265],[-71.545555555,41.6420045],[-71.545341555,41.6419455],[-71.544922554,41.6418695],[-71.544761555,41.6418635],[-71.544594554,41.6418675],[-71.543938554,41.641891501],[-71.543693555,41.6419055],[-71.543419555,41.6419385],[-71.543137554,41.6419675],[-71.542854554,41.6419785],[-71.542465554,41.6419645],[-71.542229554,41.6419605],[-71.541954554,41.6419665],[-71.541580554,41.641970501],[-71.541267554,41.6419815],[-71.540855553,41.6420135],[-71.540535553,41.6420435],[-71.540276553,41.642066501],[-71.539963553,41.6420785],[-71.539772553,41.6420775],[-71.539528553,41.6420965],[-71.539292553,41.6421385],[-71.539131552,41.6421505],[-71.538979553,41.6421545],[-71.538795553,41.6421535],[-71.538666552,41.6421565],[-71.538567552,41.6421545],[-71.538384553,41.642167501],[-71.538078552,41.642218501],[-71.537880553,41.6422545],[-71.537750552,41.6422715],[-71.537621552,41.642283501],[-71.537392553,41.642283501],[-71.537262552,41.6422725],[-71.536873552,41.642218501],[-71.536667552,41.6421695],[-71.536408552,41.642120501],[-71.536324552,41.6420735],[-71.536156552,41.6419775],[-71.535873552,41.641853501],[-71.535728552,41.6418205],[-71.535622551,41.641813501],[-71.535423552,41.6418225],[-71.535248552,41.6418625],[-71.535049552,41.641894501],[-71.534866551,41.6419025],[-71.534760552,41.641891501],[-71.534302551,41.641847501],[-71.534042551,41.6418215],[-71.533852551,41.6417985],[-71.533653551,41.6417985],[-71.533386551,41.6418045],[-71.533366551,41.6418055],[-71.532936551,41.6418375],[-71.53250155,41.6418825],[-71.532066551,41.641941501],[-71.53153255,41.641989501],[-71.53128055,41.6420355],[-71.531075551,41.642085501],[-71.530937551,41.642115501],[-71.53067855,41.642165501],[-71.53047255,41.642202501],[-71.53012155,41.642236501],[-71.52957255,41.6423475],[-71.52919855,41.642414501],[-71.528687549,41.6425205],[-71.52853455,41.6425775],[-71.52810755,41.642699501],[-71.52781755,41.642778501],[-71.527672549,41.642813501],[-71.527519549,41.642820501],[-71.527432549,41.642822501],[-71.527054549,41.642826501],[-71.526558549,41.642842501],[-71.525795548,41.642849501],[-71.525543548,41.642850501],[-71.525185549,41.642849501],[-71.524521548,41.642868501],[-71.523743548,41.642863501],[-71.523117548,41.642868501],[-71.522118547,41.642890501],[-71.521705547,41.642912501],[-71.521622547,41.642927502],[-71.521644547,41.643274501],[-71.521690547,41.643709501],[-71.521721547,41.643979502],[-71.521729547,41.644344501],[-71.521767547,41.645005502],[-71.521767547,41.645032502],[-71.521813547,41.645594502],[-71.521858547,41.646101502],[-71.521866548,41.646178502],[-71.521912547,41.646650502],[-71.521950547,41.647284502],[-71.521980548,41.647814502],[-71.521996548,41.648233502],[-71.522003548,41.648395502],[-71.522013547,41.648517502],[-71.522041548,41.648880502],[-71.522049547,41.649011503],[-71.522118548,41.649631503],[-71.522133548,41.649991502],[-71.522164547,41.650377503],[-71.522171548,41.650733502],[-71.522179548,41.651052503],[-71.522179548,41.651237502],[-71.522201548,41.651336502],[-71.522309548,41.651563503],[-71.522514548,41.652049503],[-71.522568548,41.652143503],[-71.522728548,41.652436503],[-71.522973548,41.652895503],[-71.522980548,41.652908503],[-71.523056548,41.653114503],[-71.523163548,41.653377503],[-71.523201548,41.653453503],[-71.523270549,41.653595504],[-71.523407549,41.653939503],[-71.523727548,41.654693503],[-71.523804548,41.654853503],[-71.523873549,41.654964503],[-71.523941548,41.655039503],[-71.524109549,41.655175503],[-71.524422549,41.655398503],[-71.524750549,41.655625503],[-71.525093549,41.655811504],[-71.52545955,41.656019503],[-71.52567355,41.656154503],[-71.52582655,41.656277504],[-71.525986549,41.656458504],[-71.52611655,41.656649504],[-71.526260549,41.656871504],[-71.52648955,41.657212504],[-71.52658855,41.657350504],[-71.526672549,41.657434504],[-71.52672655,41.657509504],[-71.52675655,41.657621504],[-71.52679455,41.657854504],[-71.52687155,41.658235504],[-71.52695555,41.658616504],[-71.52702455,41.658957504],[-71.52709255,41.659257504],[-71.52710055,41.659288504],[-71.52715355,41.659562505],[-71.527176549,41.659674504],[-71.52720755,41.659836504],[-71.52727555,41.660122504],[-71.52732155,41.660306504],[-71.52738255,41.660489504],[-71.52743555,41.660619504],[-71.52752755,41.660788505],[-71.52755755,41.660845505],[-71.52763855,41.660982505],[-71.52763355,41.660983505],[-71.52756455,41.661008504],[-71.52666455,41.661302504],[-71.52619655,41.661472505],[-71.525718549,41.661651504],[-71.525250549,41.661825504],[-71.52502655,41.661912505],[-71.523726549,41.662405505]]]]}}"}, +{"type": "precinct", "typeId": 902, "areaId": 25755, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":94,\"NAME\":\"0902\",\"SHAPE_Length\":0.1549508468818,\"SHAPE_Area\":-0.00098318865367582},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.464203529,41.654985505],[-71.464318529,41.655095506],[-71.464378529,41.655157505],[-71.464470529,41.655254505],[-71.464577529,41.655369506],[-71.464630529,41.655417505],[-71.464859529,41.655669505],[-71.464928529,41.655753505],[-71.465111529,41.655947505],[-71.465202529,41.656040505],[-71.465286529,41.656128506],[-71.46537053,41.656212505],[-71.465454529,41.656300506],[-71.46554653,41.656402506],[-71.46564553,41.656508505],[-71.46574453,41.656605505],[-71.46582053,41.656688506],[-71.46589753,41.656768506],[-71.465980529,41.656847506],[-71.466019529,41.656887506],[-71.46606453,41.656935505],[-71.46614853,41.657015505],[-71.46633953,41.657186505],[-71.46644653,41.657278506],[-71.46655353,41.657366505],[-71.46664453,41.657450506],[-71.46673653,41.657538505],[-71.46682753,41.657622506],[-71.46703453,41.657806506],[-71.467110531,41.657863506],[-71.467186531,41.657916506],[-71.46726253,41.657972506],[-71.46752253,41.658120505],[-71.467598531,41.658159505],[-71.46783553,41.658293506],[-71.46791853,41.658337505],[-71.46801053,41.658389506],[-71.46804853,41.658406506],[-71.46810953,41.658441506],[-71.468178531,41.658475506],[-71.468308531,41.658544506],[-71.46839953,41.658583506],[-71.468483531,41.658626506],[-71.46857453,41.658669505],[-71.468659531,41.658704506],[-71.46875053,41.658738506],[-71.468834531,41.658776506],[-71.468903531,41.658811506],[-71.469185531,41.658971506],[-71.469269531,41.659015506],[-71.469345531,41.659058505],[-71.469422531,41.659097505],[-71.469498531,41.659140506],[-71.469589531,41.659188506],[-71.469681531,41.659235506],[-71.469780531,41.659283506],[-71.469978531,41.659351506],[-71.470077531,41.659380506],[-71.470184531,41.659418506],[-71.470413531,41.659494506],[-71.470543531,41.659523506],[-71.470589531,41.659536506],[-71.470665531,41.659552506],[-71.470787531,41.659576506],[-71.470848532,41.659589506],[-71.470909532,41.659596506],[-71.470963532,41.659609506],[-71.471054531,41.659625506],[-71.471222532,41.659666506],[-71.471260532,41.659674506],[-71.471413532,41.659712506],[-71.471497532,41.659741506],[-71.471573532,41.659785506],[-71.471642532,41.659833506],[-71.471703532,41.659885506],[-71.471764532,41.659943506],[-71.471817532,41.660000506],[-71.471870531,41.660062506],[-71.471924532,41.660128506],[-71.471969532,41.660199506],[-71.472023532,41.660266506],[-71.472069532,41.660341506],[-71.472122532,41.660421506],[-71.472160532,41.660497506],[-71.472198532,41.660564506],[-71.472237532,41.660639506],[-71.472267532,41.660715506],[-71.472290532,41.660791507],[-71.472313532,41.660881506],[-71.472336532,41.660966507],[-71.472366532,41.661060506],[-71.472405532,41.661158506],[-71.472435532,41.661257507],[-71.472473533,41.661377506],[-71.472503532,41.661503506],[-71.472534532,41.661624506],[-71.472610532,41.661856506],[-71.472649532,41.661964506],[-71.472679532,41.662030506],[-71.472702532,41.662093507],[-71.472732532,41.662160506],[-71.472778532,41.662226506],[-71.472824533,41.662288507],[-71.472870532,41.662346507],[-71.472931532,41.662408507],[-71.472992532,41.662465507],[-71.473053533,41.662518506],[-71.473152533,41.662592506],[-71.473251533,41.662662507],[-71.473358532,41.662732506],[-71.473511532,41.662837507],[-71.473587532,41.662894507],[-71.473656533,41.662942506],[-71.473717533,41.662990507],[-71.473778533,41.663043506],[-71.473839532,41.663104507],[-71.473862532,41.663140506],[-71.473877533,41.663180506],[-71.473885533,41.663220507],[-71.473892533,41.663265507],[-71.473945533,41.663260507],[-71.475006533,41.663228507],[-71.475525533,41.663167507],[-71.475769534,41.663130507],[-71.475802533,41.663301507],[-71.475814533,41.663365507],[-71.475825534,41.663438507],[-71.476073533,41.663435507],[-71.476555533,41.663418507],[-71.479428535,41.663298506],[-71.479820535,41.663282507],[-71.480148535,41.663289506],[-71.484375536,41.663293506],[-71.487287537,41.663165506],[-71.488024537,41.663071506],[-71.488464538,41.662999506],[-71.490176538,41.663007506],[-71.490314538,41.663009506],[-71.490552538,41.663011506],[-71.492166539,41.662997506],[-71.492981539,41.662982506],[-71.493568539,41.662971506],[-71.494094539,41.662977505],[-71.494225539,41.662976505],[-71.49481554,41.662958505],[-71.49685354,41.662942506],[-71.49779754,41.662925506],[-71.498011541,41.662921505],[-71.498204541,41.662922505],[-71.499224541,41.662902505],[-71.499359541,41.662906506],[-71.501411542,41.662835506],[-71.506775544,41.662725505],[-71.507594544,41.662707505],[-71.509358544,41.662518505],[-71.509387545,41.662519505],[-71.509648544,41.662522506],[-71.510734545,41.662531505],[-71.512333546,41.662545506],[-71.513100545,41.662517505],[-71.523269549,41.662415505],[-71.523726549,41.662405505],[-71.52502655,41.661912505],[-71.525250549,41.661825504],[-71.525718549,41.661651504],[-71.52619655,41.661472505],[-71.52666455,41.661302504],[-71.52756455,41.661008504],[-71.52763355,41.660983505],[-71.52763855,41.660982505],[-71.52755755,41.660845505],[-71.52752755,41.660788505],[-71.52743555,41.660619504],[-71.52738255,41.660489504],[-71.52732155,41.660306504],[-71.52727555,41.660122504],[-71.52720755,41.659836504],[-71.527176549,41.659674504],[-71.52715355,41.659562505],[-71.52710055,41.659288504],[-71.52709255,41.659257504],[-71.52702455,41.658957504],[-71.52695555,41.658616504],[-71.52687155,41.658235504],[-71.52679455,41.657854504],[-71.52675655,41.657621504],[-71.52672655,41.657509504],[-71.526672549,41.657434504],[-71.52658855,41.657350504],[-71.52648955,41.657212504],[-71.526260549,41.656871504],[-71.52611655,41.656649504],[-71.525986549,41.656458504],[-71.52582655,41.656277504],[-71.52567355,41.656154503],[-71.52545955,41.656019503],[-71.525093549,41.655811504],[-71.524750549,41.655625503],[-71.524422549,41.655398503],[-71.524109549,41.655175503],[-71.523941548,41.655039503],[-71.523873549,41.654964503],[-71.523804548,41.654853503],[-71.523727548,41.654693503],[-71.523407549,41.653939503],[-71.523270549,41.653595504],[-71.523201548,41.653453503],[-71.523163548,41.653377503],[-71.523056548,41.653114503],[-71.522980548,41.652908503],[-71.522973548,41.652895503],[-71.522728548,41.652436503],[-71.522568548,41.652143503],[-71.522514548,41.652049503],[-71.522309548,41.651563503],[-71.522201548,41.651336502],[-71.522179548,41.651237502],[-71.522179548,41.651052503],[-71.522171548,41.650733502],[-71.522164547,41.650377503],[-71.522133548,41.649991502],[-71.522118548,41.649631503],[-71.522049547,41.649011503],[-71.522041548,41.648880502],[-71.522013547,41.648517502],[-71.522003548,41.648395502],[-71.521996548,41.648233502],[-71.521980548,41.647814502],[-71.521950547,41.647284502],[-71.521912547,41.646650502],[-71.521866548,41.646178502],[-71.521858547,41.646101502],[-71.521813547,41.645594502],[-71.521767547,41.645032502],[-71.521767547,41.645005502],[-71.521729547,41.644344501],[-71.521721547,41.643979502],[-71.521690547,41.643709501],[-71.521644547,41.643274501],[-71.521622547,41.642927502],[-71.521400547,41.642941501],[-71.521034547,41.642990501],[-71.520394547,41.643098501],[-71.519791546,41.643188501],[-71.519493546,41.643231501],[-71.519218547,41.643241501],[-71.518768547,41.643256502],[-71.518478546,41.643249501],[-71.518295546,41.643257502],[-71.518271546,41.643259502],[-71.517891546,41.643297502],[-71.517372546,41.643340501],[-71.516151546,41.643439501],[-71.515991545,41.643443501],[-71.515854545,41.643428502],[-71.515709545,41.643399501],[-71.514915545,41.643173501],[-71.514687545,41.643120502],[-71.514542545,41.643092501],[-71.514465545,41.643089501],[-71.514328545,41.643114501],[-71.513901545,41.643187501],[-71.513245545,41.643309501],[-71.512688544,41.643416501],[-71.512199544,41.643490502],[-71.511688544,41.643564502],[-71.511208544,41.643637501],[-71.510857543,41.643694501],[-71.510383544,41.643727502],[-71.510139543,41.643742502],[-71.509728543,41.643791501],[-71.509285543,41.643882502],[-71.508560543,41.644042501],[-71.508202542,41.644131502],[-71.507950542,41.644190502],[-71.507912543,41.644205502],[-71.507832542,41.644219502],[-71.507629543,41.644256501],[-71.507439543,41.644287502],[-71.507149542,41.644316502],[-71.506928543,41.644325502],[-71.506508542,41.644339502],[-71.506020542,41.644367502],[-71.505875542,41.644380502],[-71.505425542,41.644416502],[-71.504684542,41.644473502],[-71.503959542,41.644545502],[-71.503105541,41.644625502],[-71.502388541,41.644690502],[-71.501869541,41.644746502],[-71.501724541,41.644758502],[-71.501549541,41.644785502],[-71.500587541,41.644896503],[-71.49948954,41.645032503],[-71.49916854,41.645062502],[-71.49865754,41.645118502],[-71.498100539,41.645170503],[-71.49764254,41.645216502],[-71.497124539,41.645259502],[-71.496567539,41.645321503],[-71.495552539,41.645451502],[-71.495377539,41.645486502],[-71.495209539,41.645496503],[-71.494408539,41.645539503],[-71.493568538,41.645611503],[-71.493118538,41.645643502],[-71.492989538,41.645655503],[-71.492600537,41.645677503],[-71.492370538,41.645691503],[-71.492241538,41.645703502],[-71.492142538,41.645705502],[-71.491539538,41.645754503],[-71.490951537,41.645798502],[-71.490166537,41.645865503],[-71.489456537,41.645912502],[-71.488922537,41.645950503],[-71.488701536,41.645969503],[-71.488037536,41.646015503],[-71.487999536,41.646020503],[-71.487671536,41.646050502],[-71.487465536,41.646063503],[-71.487419536,41.646068502],[-71.487137536,41.646093503],[-71.486961536,41.646105503],[-71.486580536,41.646141503],[-71.485977536,41.646190503],[-71.485924536,41.646200503],[-71.484581536,41.646314503],[-71.484230535,41.646340503],[-71.484116535,41.646352503],[-71.483490535,41.646401503],[-71.482567535,41.646511503],[-71.481895534,41.646571503],[-71.481827534,41.646581503],[-71.480720534,41.646704503],[-71.480431534,41.646742503],[-71.479355534,41.646882503],[-71.478696533,41.646961503],[-71.478523533,41.646981504],[-71.477860533,41.647081504],[-71.476959532,41.647276504],[-71.476326533,41.647398503],[-71.475799532,41.647517503],[-71.475502532,41.647582504],[-71.475023532,41.647696503],[-71.474503532,41.647811503],[-71.474434532,41.647830503],[-71.474190531,41.647619504],[-71.473709532,41.647337503],[-71.472656531,41.646747504],[-71.472053531,41.646391503],[-71.471199531,41.645955503],[-71.470688531,41.645700503],[-71.470406531,41.645985503],[-71.47019253,41.646215503],[-71.470169531,41.646265503],[-71.47015453,41.646292503],[-71.470146531,41.646378504],[-71.47013953,41.646536503],[-71.470108531,41.646644503],[-71.470009531,41.646818503],[-71.469977531,41.646848503],[-71.46978853,41.647030503],[-71.46934553,41.647422504],[-71.46881953,41.647875504],[-71.46841453,41.648230504],[-71.46821653,41.648405504],[-71.467056529,41.649367504],[-71.46708753,41.649393504],[-71.46717853,41.649477504],[-71.46725553,41.649538504],[-71.46733153,41.649604504],[-71.46746153,41.649714504],[-71.467483529,41.649736504],[-71.46756753,41.649802504],[-71.46765153,41.649863504],[-71.46774353,41.649933504],[-71.46779653,41.649963504],[-71.46784253,41.649976504],[-71.46788053,41.649989504],[-71.46792653,41.649992504],[-71.46798753,41.649991504],[-71.46801853,41.649986504],[-71.46805653,41.649985504],[-71.46810953,41.649966504],[-71.46814053,41.649952504],[-71.46816253,41.649938504],[-71.46818553,41.649928504],[-71.46821653,41.649927504],[-71.46823953,41.649936504],[-71.46826953,41.649944504],[-71.46831553,41.649970504],[-71.46835353,41.650006505],[-71.46838453,41.650045505],[-71.46842953,41.650080504],[-71.46846853,41.650120504],[-71.46848353,41.650160504],[-71.468475531,41.650179504],[-71.468475531,41.650197504],[-71.46843753,41.650229504],[-71.46840753,41.650239504],[-71.46836953,41.650253504],[-71.468338531,41.650267504],[-71.46830753,41.650286504],[-71.46827753,41.650304504],[-71.46823953,41.650337505],[-71.46821653,41.650378504],[-71.46820153,41.650414505],[-71.46819353,41.650450504],[-71.46819353,41.650522504],[-71.46820953,41.650603504],[-71.46823153,41.650639504],[-71.46826253,41.650683504],[-71.468300531,41.650714504],[-71.468415531,41.650819504],[-71.46849853,41.650881505],[-71.46858253,41.650946504],[-71.46868153,41.651030504],[-71.46877353,41.651118505],[-71.468864531,41.651201504],[-71.468918531,41.651259504],[-71.469040531,41.651373504],[-71.469131531,41.651461504],[-71.469170531,41.651515504],[-71.46918553,41.651546505],[-71.469192531,41.651577504],[-71.469208531,41.651613504],[-71.469055531,41.651625505],[-71.468903531,41.651633504],[-71.46857553,41.651658505],[-71.46839153,41.651666504],[-71.46820953,41.651675504],[-71.46796453,41.651671504],[-71.46783553,41.651678505],[-71.46776653,41.651675504],[-71.46769753,41.651686504],[-71.46762853,41.651692504],[-71.46753753,41.651721505],[-71.46749153,41.651740505],[-71.46740053,41.651787504],[-71.46736153,41.651815505],[-71.46731653,41.651843504],[-71.46723253,41.651898505],[-71.46673653,41.652346505],[-71.46627153,41.652743505],[-71.465767529,41.653150504],[-71.465225529,41.653590505],[-71.46472953,41.654015505],[-71.464660529,41.654070505],[-71.464539529,41.654190505],[-71.464470529,41.654290505],[-71.464409529,41.654391505],[-71.464355529,41.654495505],[-71.464295529,41.654690505],[-71.464264529,41.654786505],[-71.464241529,41.654849505],[-71.464218529,41.654917505],[-71.464203529,41.654985505]]]]}}"}, +{"type": "precinct", "typeId": 903, "areaId": 25752, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":91,\"NAME\":\"0903\",\"SHAPE_Length\":0.084041127296377,\"SHAPE_Area\":-0.00025968770152224},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.446167523,41.664093507],[-71.446304523,41.664096507],[-71.446355524,41.664097508],[-71.446472524,41.664100508],[-71.446808524,41.664088507],[-71.447410524,41.664057507],[-71.447441524,41.664057507],[-71.448311524,41.664034507],[-71.449142525,41.663993507],[-71.450127525,41.663972507],[-71.451088525,41.663938507],[-71.451218525,41.663931508],[-71.451912526,41.663898507],[-71.452301526,41.663886507],[-71.452835526,41.663861507],[-71.453972526,41.663827507],[-71.454903526,41.663812508],[-71.455368527,41.663802507],[-71.455658527,41.663796507],[-71.456749527,41.663773507],[-71.458290528,41.663713507],[-71.458530527,41.663742507],[-71.458919528,41.663742507],[-71.459534528,41.663739507],[-71.459647528,41.663742507],[-71.459795528,41.663755507],[-71.463726529,41.663733507],[-71.464115529,41.663731507],[-71.46451453,41.663728507],[-71.465007529,41.663725507],[-71.46511853,41.663751507],[-71.46517853,41.663724507],[-71.466037531,41.663693507],[-71.468221531,41.663556507],[-71.469865531,41.663453507],[-71.472926532,41.663376507],[-71.475825534,41.663438507],[-71.475814533,41.663365507],[-71.475802533,41.663301507],[-71.475769534,41.663130507],[-71.475525533,41.663167507],[-71.475006533,41.663228507],[-71.473945533,41.663260507],[-71.473892533,41.663265507],[-71.473885533,41.663220507],[-71.473877533,41.663180506],[-71.473862532,41.663140506],[-71.473839532,41.663104507],[-71.473778533,41.663043506],[-71.473717533,41.662990507],[-71.473656533,41.662942506],[-71.473587532,41.662894507],[-71.473511532,41.662837507],[-71.473358532,41.662732506],[-71.473251533,41.662662507],[-71.473152533,41.662592506],[-71.473053533,41.662518506],[-71.472992532,41.662465507],[-71.472931532,41.662408507],[-71.472870532,41.662346507],[-71.472824533,41.662288507],[-71.472778532,41.662226506],[-71.472732532,41.662160506],[-71.472702532,41.662093507],[-71.472679532,41.662030506],[-71.472649532,41.661964506],[-71.472610532,41.661856506],[-71.472534532,41.661624506],[-71.472503532,41.661503506],[-71.472473533,41.661377506],[-71.472435532,41.661257507],[-71.472405532,41.661158506],[-71.472366532,41.661060506],[-71.472336532,41.660966507],[-71.472313532,41.660881506],[-71.472290532,41.660791507],[-71.472267532,41.660715506],[-71.472237532,41.660639506],[-71.472198532,41.660564506],[-71.472160532,41.660497506],[-71.472122532,41.660421506],[-71.472069532,41.660341506],[-71.472023532,41.660266506],[-71.471969532,41.660199506],[-71.471924532,41.660128506],[-71.471870531,41.660062506],[-71.471817532,41.660000506],[-71.471764532,41.659943506],[-71.471703532,41.659885506],[-71.471642532,41.659833506],[-71.471573532,41.659785506],[-71.471497532,41.659741506],[-71.471413532,41.659712506],[-71.471260532,41.659674506],[-71.471222532,41.659666506],[-71.471054531,41.659625506],[-71.470963532,41.659609506],[-71.470909532,41.659596506],[-71.470848532,41.659589506],[-71.470787531,41.659576506],[-71.470665531,41.659552506],[-71.470589531,41.659536506],[-71.470543531,41.659523506],[-71.470413531,41.659494506],[-71.470184531,41.659418506],[-71.470077531,41.659380506],[-71.469978531,41.659351506],[-71.469780531,41.659283506],[-71.469681531,41.659235506],[-71.469589531,41.659188506],[-71.469498531,41.659140506],[-71.469422531,41.659097505],[-71.469345531,41.659058505],[-71.469269531,41.659015506],[-71.469185531,41.658971506],[-71.468903531,41.658811506],[-71.468834531,41.658776506],[-71.46875053,41.658738506],[-71.468659531,41.658704506],[-71.46857453,41.658669505],[-71.468483531,41.658626506],[-71.46839953,41.658583506],[-71.468308531,41.658544506],[-71.468178531,41.658475506],[-71.46810953,41.658441506],[-71.46804853,41.658406506],[-71.46801053,41.658389506],[-71.46791853,41.658337505],[-71.46783553,41.658293506],[-71.467598531,41.658159505],[-71.46752253,41.658120505],[-71.46726253,41.657972506],[-71.467186531,41.657916506],[-71.467110531,41.657863506],[-71.46703453,41.657806506],[-71.46682753,41.657622506],[-71.46673653,41.657538505],[-71.46664453,41.657450506],[-71.46655353,41.657366505],[-71.46644653,41.657278506],[-71.46633953,41.657186505],[-71.46614853,41.657015505],[-71.46606453,41.656935505],[-71.466019529,41.656887506],[-71.465980529,41.656847506],[-71.46589753,41.656768506],[-71.46582053,41.656688506],[-71.46574453,41.656605505],[-71.46564553,41.656508505],[-71.46554653,41.656402506],[-71.465454529,41.656300506],[-71.46537053,41.656212505],[-71.465286529,41.656128506],[-71.465202529,41.656040505],[-71.465111529,41.655947505],[-71.464928529,41.655753505],[-71.464859529,41.655669505],[-71.464630529,41.655417505],[-71.464577529,41.655369506],[-71.464470529,41.655254505],[-71.464378529,41.655157505],[-71.464318529,41.655095506],[-71.464203529,41.654985505],[-71.464126529,41.654915505],[-71.464020529,41.654831505],[-71.463882529,41.654726506],[-71.463806529,41.654674505],[-71.463730529,41.654612505],[-71.463661529,41.654551505],[-71.463585529,41.654489505],[-71.463432529,41.654385505],[-71.463364529,41.654337505],[-71.463272528,41.654266505],[-71.463181529,41.654201505],[-71.463097528,41.654135505],[-71.463021528,41.654078505],[-71.462944528,41.654017505],[-71.462876529,41.653955505],[-71.462830529,41.653902505],[-71.462784528,41.653854505],[-71.462746528,41.653800505],[-71.462715529,41.653747505],[-71.462677529,41.653694505],[-71.462654528,41.653640505],[-71.462616528,41.653573505],[-71.462593528,41.653502505],[-71.462563529,41.653435505],[-71.462540529,41.653377505],[-71.462509528,41.653319505],[-71.462486529,41.653261505],[-71.462456528,41.653194505],[-71.462410529,41.653060505],[-71.462250529,41.652861505],[-71.462181528,41.652777504],[-71.462112528,41.652688505],[-71.462044528,41.652604504],[-71.461754528,41.652228505],[-71.461739528,41.652205505],[-71.461357528,41.651754505],[-71.461243528,41.651613504],[-71.460907528,41.651201504],[-71.460663528,41.650882505],[-71.460480527,41.650647505],[-71.460182528,41.650280504],[-71.459976527,41.650014504],[-71.459694527,41.649655505],[-71.459274527,41.649124504],[-71.459236527,41.649084504],[-71.459190527,41.649045504],[-71.459107527,41.649123504],[-71.459045527,41.649187505],[-71.458916527,41.649262505],[-71.458847527,41.649295504],[-71.458755527,41.649342505],[-71.458702527,41.649366504],[-71.458534527,41.649428504],[-71.458298526,41.649699504],[-71.458076527,41.649969504],[-71.457978527,41.650091504],[-71.457947526,41.650129504],[-71.457855527,41.650258505],[-71.457774526,41.650358504],[-71.457672526,41.650257505],[-71.456374526,41.648643504],[-71.456337526,41.648627504],[-71.456141526,41.648544505],[-71.456134079,41.64854397],[-71.456109778,41.648565238],[-71.456062886,41.648561698],[-71.456045932,41.648537638],[-71.455153779,41.648473546],[-71.455115389,41.648520716],[-71.455057296,41.648576471],[-71.455004764,41.648614963],[-71.454953176,41.648655536],[-71.454907073,41.648701645],[-71.454867372,41.64874778],[-71.454817613,41.648789749],[-71.454768769,41.64882966],[-71.454728617,41.648867333],[-71.454670193,41.648915793],[-71.454591339,41.648966669],[-71.454529932,41.649007489],[-71.454464776,41.649047668],[-71.45439014,41.6490824],[-71.454310751,41.64911299],[-71.454239449,41.649132995],[-71.454133774,41.649124103],[-71.454051336,41.649111332],[-71.453963287,41.649098673],[-71.453876421,41.649095116],[-71.453786869,41.649096475],[-71.453694541,41.649097879],[-71.453603189,41.649100677],[-71.453519573,41.649113816],[-71.453438145,41.649138848],[-71.453354,41.649166715],[-71.453268792,41.649189733],[-71.45318996,41.649207699],[-71.453090816,41.649232998],[-71.452990875,41.649263213],[-71.452928286,41.649293558],[-71.45286853,41.649326648],[-71.452811698,41.649363902],[-71.452756815,41.649405342],[-71.452718084,41.649456279],[-71.452704717,41.64951459],[-71.45270641,41.649576841],[-71.452708101,41.649639778],[-71.452711476,41.649695718],[-71.452719723,41.649759276],[-71.452740284,41.649828967],[-71.452757564,41.649882557],[-71.452791882,41.649945005],[-71.45282074,41.650010332],[-71.452850748,41.650086842],[-71.452871809,41.65014112],[-71.452892073,41.650200291],[-71.452909502,41.650258112],[-71.452919521,41.650318148],[-71.452922128,41.650380377],[-71.452923791,41.650441942],[-71.452925364,41.650500694],[-71.452924192,41.650560886],[-71.452913013,41.650629626],[-71.452901862,41.65070118],[-71.452891537,41.650767817],[-71.452890395,41.650828718],[-71.452897638,41.650890217],[-71.452915127,41.650950805],[-71.452933502,41.651008603],[-71.452958787,41.651081704],[-71.452958411,41.651137002],[-71.452953638,41.651202155],[-71.452946237,41.651273641],[-71.452936002,41.651343755],[-71.452928631,41.651415927],[-71.452924096,41.651489473],[-71.45292703,41.651563617],[-71.452929845,41.651633553],[-71.452939275,41.651706213],[-71.452948734,41.651780931],[-71.452950753,41.65185576],[-71.452952654,41.651925718],[-71.452954316,41.651987992],[-71.452953649,41.652066365],[-71.452936443,41.65212049],[-71.452908284,41.652182523],[-71.452875666,41.652253679],[-71.452834693,41.652325678],[-71.452778778,41.6523979],[-71.452715512,41.652473777],[-71.45265511,41.652551668],[-71.452597395,41.652625284],[-71.452540535,41.652696818],[-71.452482641,41.652764899],[-71.452422797,41.652829458],[-71.452358318,41.652894815],[-71.452298504,41.652960105],[-71.452250767,41.653023136],[-71.452210352,41.653081825],[-71.452170644,41.653131389],[-71.452111834,41.653199446],[-71.452066397,41.653244251],[-71.452008734,41.653286398],[-71.451944488,41.653325181],[-71.451882867,41.653358979],[-71.451803708,41.65339867],[-71.451718226,41.653412584],[-71.451652887,41.653403661],[-71.451648923,41.653403156],[-71.451638292,41.653389293],[-71.451589655,41.653349434],[-71.451538093,41.653306829],[-71.451528584,41.65330001],[-71.451501626,41.653303887],[-71.45143109,41.653352568],[-71.451464672,41.653420642],[-71.451505279,41.653473899],[-71.451536496,41.653524522],[-71.451515445,41.653539515],[-71.451473338,41.653534558],[-71.451418204,41.653497601],[-71.451327218,41.65341011],[-71.451275517,41.65343051],[-71.451135835,41.65354386],[-71.451143017,41.653603255],[-71.451118185,41.65361692],[-71.451068603,41.653577083],[-71.451038959,41.653584526],[-71.450996974,41.65361943],[-71.45104148,41.653678223],[-71.451037745,41.65369782],[-71.451029203,41.653742801],[-71.450979188,41.653791148],[-71.450911101,41.653826475],[-71.450844726,41.653854782],[-71.450765389,41.65388816],[-71.450681651,41.653932125],[-71.450608635,41.653992697],[-71.450558412,41.654033383],[-71.450509134,41.654074687],[-71.45045522,41.654116812],[-71.450402371,41.654163077],[-71.450361775,41.654214767],[-71.450330598,41.654270532],[-71.450290151,41.654327825],[-71.450232902,41.654384676],[-71.450171903,41.654440199],[-71.450116425,41.654493507],[-71.450058171,41.65454759],[-71.449996166,41.654601695],[-71.449925865,41.654659455],[-71.449845318,41.654716617],[-71.449763588,41.654765476],[-71.449695617,41.654805673],[-71.44961929,41.654846713],[-71.449558318,41.654905049],[-71.449513234,41.654963094],[-71.449496699,41.654972418],[-71.449425712,41.654970008],[-71.449384337,41.654963358],[-71.449342322,41.65495657],[-71.449277209,41.654929578],[-71.449227452,41.654918442],[-71.449199818,41.654966455],[-71.449201478,41.655027311],[-71.449203314,41.655095852],[-71.44920524,41.655167891],[-71.449201644,41.655242123],[-71.44919793,41.65531217],[-71.449188606,41.655380866],[-71.44917931,41.65545242],[-71.449185016,41.65552581],[-71.449188036,41.655602012],[-71.449179803,41.655678415],[-71.449161533,41.655761995],[-71.449138685,41.655849094],[-71.449113799,41.655929926],[-71.44908224,41.656005267],[-71.44903934,41.656075228],[-71.448992661,41.656143083],[-71.448940311,41.656209656],[-71.448883326,41.656276317],[-71.448823535,41.656343001],[-71.448760791,41.656403439],[-71.448699581,41.656451941],[-71.44864649,41.656490543],[-71.448590064,41.656543163],[-71.448553274,41.656598331],[-71.448520444,41.656660406],[-71.448437587,41.656702929],[-71.448371975,41.656726318],[-71.448305358,41.656747602],[-71.448236881,41.656768268],[-71.448164772,41.65679314],[-71.448096561,41.656824943],[-71.44802838,41.65685677],[-71.447964382,41.656882652],[-71.447960081,41.656884388],[-71.447868571,41.656916569],[-71.447794365,41.656933093],[-71.447717323,41.656948952],[-71.447633047,41.656972629],[-71.44758533,41.657002018],[-71.447515614,41.657046444],[-71.44745644,41.657101235],[-71.447419531,41.657151484],[-71.447393342,41.657219051],[-71.447370048,41.657289387],[-71.44732874,41.657349514],[-71.447268887,41.65741407],[-71.44721559,41.657479246],[-71.44717434,41.657541454],[-71.447124616,41.657601006],[-71.447070403,41.657666891],[-71.4470275,41.657736828],[-71.44699762,41.657805857],[-71.447009909,41.657880554],[-71.447014253,41.657937867],[-71.44701594,41.65800085],[-71.447016829,41.65806868],[-71.447013113,41.658138728],[-71.447001896,41.658206759],[-71.446985894,41.658271403],[-71.446961298,41.658328405],[-71.446920639,41.658377304],[-71.44687227,41.658417943],[-71.446804738,41.658474239],[-71.446733307,41.658524313],[-71.446658775,41.658563911],[-71.44657497,41.658604373],[-71.446502091,41.658636265],[-71.446431514,41.658648559],[-71.446425295,41.658646337],[-71.446384382,41.658631751],[-71.446333148,41.658633922],[-71.446280084,41.658673942],[-71.446226931,41.658710416],[-71.446212936,41.658744211],[-71.44615048,41.658781573],[-71.446088114,41.658821679],[-71.446026546,41.658856206],[-71.445982841,41.658861788],[-71.445958241,41.658849519],[-71.445895786,41.658886858],[-71.445832445,41.658925614],[-71.445766299,41.658963706],[-71.445701864,41.658996882],[-71.445628984,41.659028064],[-71.445554244,41.659059269],[-71.445489632,41.659086132],[-71.445479445,41.659123405],[-71.445440762,41.659177152],[-71.445439759,41.659209352],[-71.44548323,41.659264007],[-71.445443661,41.659319835],[-71.44538023,41.659355801],[-71.445299493,41.659336736],[-71.445240962,41.659312443],[-71.445180692,41.659360898],[-71.445131584,41.659408534],[-71.445086227,41.659456812],[-71.445042788,41.65950715],[-71.445003898,41.659553213],[-71.44495225,41.659610705],[-71.444914835,41.659642041],[-71.444847918,41.659617172],[-71.444771817,41.659597308],[-71.444763556,41.659664746],[-71.444738896,41.659866556],[-71.444932029,41.659899992],[-71.444925562,41.659937175],[-71.444906013,41.65993888],[-71.444822825,41.659933146],[-71.444757473,41.659932017],[-71.44474894,41.659996527],[-71.444738339,41.660054084],[-71.444726026,41.660116557],[-71.444711705,41.660174135],[-71.444702049,41.660231693],[-71.444672608,41.660281808],[-71.444642695,41.660348755],[-71.444622644,41.660401505],[-71.444592996,41.660444645],[-71.444579028,41.660444867],[-71.444553483,41.660467633],[-71.444554342,41.660533405],[-71.444554402,41.660605467],[-71.444544333,41.660647587],[-71.444520088,41.660647964],[-71.444532994,41.660711456],[-71.444546579,41.660765823],[-71.444554554,41.660819592],[-71.444579332,41.660873096],[-71.444599621,41.660933664],[-71.444616159,41.660994321],[-71.444625256,41.661055043],[-71.444625552,41.661065541],[-71.444651599,41.661062351],[-71.44474471,41.661056039],[-71.444817239,41.661045874],[-71.444829377,41.66104636],[-71.444867002,41.661126992],[-71.444904004,41.661115232],[-71.444905778,41.66118096],[-71.444907758,41.66125444],[-71.44490838,41.661312505],[-71.444915676,41.661375354],[-71.444938003,41.661442897],[-71.444960891,41.661495737],[-71.444998515,41.661542042],[-71.445050404,41.661597251],[-71.445100196,41.661644774],[-71.445160235,41.66169077],[-71.445201669,41.661739822],[-71.445200105,41.661750341],[-71.445128461,41.661758425],[-71.445102414,41.661761637],[-71.445114287,41.661786616],[-71.445143702,41.661839367],[-71.445178226,41.661908838],[-71.445203861,41.661960214],[-71.445240305,41.661996777],[-71.445292547,41.661995956],[-71.445286788,41.662025431],[-71.445279054,41.66208363],[-71.445275305,41.662152991],[-71.445275956,41.662212452],[-71.445275544,41.662266354],[-71.445261517,41.662265159],[-71.445215712,41.662262347],[-71.445187275,41.662314521],[-71.445178121,41.662320966],[-71.445105589,41.662296164],[-71.445081109,41.662357419],[-71.445150806,41.66238087],[-71.445134771,41.662444782],[-71.445135482,41.662505684],[-71.445133445,41.662569374],[-71.445119242,41.66263116],[-71.445079759,41.662689847],[-71.445043171,41.662751302],[-71.445007409,41.662809899],[-71.444976225,41.662864953],[-71.444947876,41.662920649],[-71.444947729,41.662985072],[-71.444936332,41.663046814],[-71.44492387,41.66310437],[-71.444923575,41.663128154],[-71.444942151,41.663125076],[-71.445036389,41.663124366],[-71.445098141,41.663129724],[-71.445069674,41.663216957],[-71.445046375,41.663287246],[-71.445019444,41.663361833],[-71.445003587,41.663431348],[-71.444994108,41.663495881],[-71.444977985,41.663555631],[-71.444964874,41.663623683],[-71.444943583,41.663699599],[-71.444927401,41.663756513],[-71.444914083,41.663816905],[-71.444906347,41.663876453],[-71.444890667,41.663952303],[-71.444885589,41.664006249],[-71.444890669,41.66402226],[-71.444967296,41.664037499],[-71.444969523,41.664037507],[-71.445244524,41.664031507],[-71.445572523,41.664074507],[-71.445778523,41.664074507],[-71.446167523,41.664093507]]]]}}"}, +{"type": "precinct", "typeId": 904, "areaId": 25753, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":92,\"NAME\":\"0904\",\"SHAPE_Length\":0.18151724185728,\"SHAPE_Area\":-0.000783903870512},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.459190527,41.649045504],[-71.459236527,41.649084504],[-71.459274527,41.649124504],[-71.459694527,41.649655505],[-71.459976527,41.650014504],[-71.460182528,41.650280504],[-71.460480527,41.650647505],[-71.460663528,41.650882505],[-71.460907528,41.651201504],[-71.461243528,41.651613504],[-71.461357528,41.651754505],[-71.461739528,41.652205505],[-71.461754528,41.652228505],[-71.462044528,41.652604504],[-71.462112528,41.652688505],[-71.462181528,41.652777504],[-71.462250529,41.652861505],[-71.462410529,41.653060505],[-71.462456528,41.653194505],[-71.462486529,41.653261505],[-71.462509528,41.653319505],[-71.462540529,41.653377505],[-71.462563529,41.653435505],[-71.462593528,41.653502505],[-71.462616528,41.653573505],[-71.462654528,41.653640505],[-71.462677529,41.653694505],[-71.462715529,41.653747505],[-71.462746528,41.653800505],[-71.462784528,41.653854505],[-71.462830529,41.653902505],[-71.462876529,41.653955505],[-71.462944528,41.654017505],[-71.463021528,41.654078505],[-71.463097528,41.654135505],[-71.463181529,41.654201505],[-71.463272528,41.654266505],[-71.463364529,41.654337505],[-71.463432529,41.654385505],[-71.463585529,41.654489505],[-71.463661529,41.654551505],[-71.463730529,41.654612505],[-71.463806529,41.654674505],[-71.463882529,41.654726506],[-71.464020529,41.654831505],[-71.464126529,41.654915505],[-71.464203529,41.654985505],[-71.464218529,41.654917505],[-71.464241529,41.654849505],[-71.464264529,41.654786505],[-71.464295529,41.654690505],[-71.464355529,41.654495505],[-71.464409529,41.654391505],[-71.464470529,41.654290505],[-71.464539529,41.654190505],[-71.464660529,41.654070505],[-71.46472953,41.654015505],[-71.465225529,41.653590505],[-71.465767529,41.653150504],[-71.46627153,41.652743505],[-71.46673653,41.652346505],[-71.46723253,41.651898505],[-71.46731653,41.651843504],[-71.46736153,41.651815505],[-71.46740053,41.651787504],[-71.46749153,41.651740505],[-71.46753753,41.651721505],[-71.46762853,41.651692504],[-71.46769753,41.651686504],[-71.46776653,41.651675504],[-71.46783553,41.651678505],[-71.46796453,41.651671504],[-71.46820953,41.651675504],[-71.46839153,41.651666504],[-71.46857553,41.651658505],[-71.468903531,41.651633504],[-71.469055531,41.651625505],[-71.469208531,41.651613504],[-71.469192531,41.651577504],[-71.46918553,41.651546505],[-71.469170531,41.651515504],[-71.469131531,41.651461504],[-71.469040531,41.651373504],[-71.468918531,41.651259504],[-71.468864531,41.651201504],[-71.46877353,41.651118505],[-71.46868153,41.651030504],[-71.46858253,41.650946504],[-71.46849853,41.650881505],[-71.468415531,41.650819504],[-71.468300531,41.650714504],[-71.46826253,41.650683504],[-71.46823153,41.650639504],[-71.46820953,41.650603504],[-71.46819353,41.650522504],[-71.46819353,41.650450504],[-71.46820153,41.650414505],[-71.46821653,41.650378504],[-71.46823953,41.650337505],[-71.46827753,41.650304504],[-71.46830753,41.650286504],[-71.468338531,41.650267504],[-71.46836953,41.650253504],[-71.46840753,41.650239504],[-71.46843753,41.650229504],[-71.468475531,41.650197504],[-71.468475531,41.650179504],[-71.46848353,41.650160504],[-71.46846853,41.650120504],[-71.46842953,41.650080504],[-71.46838453,41.650045505],[-71.46835353,41.650006505],[-71.46831553,41.649970504],[-71.46826953,41.649944504],[-71.46823953,41.649936504],[-71.46821653,41.649927504],[-71.46818553,41.649928504],[-71.46816253,41.649938504],[-71.46814053,41.649952504],[-71.46810953,41.649966504],[-71.46805653,41.649985504],[-71.46801853,41.649986504],[-71.46798753,41.649991504],[-71.46792653,41.649992504],[-71.46788053,41.649989504],[-71.46784253,41.649976504],[-71.46779653,41.649963504],[-71.46774353,41.649933504],[-71.46765153,41.649863504],[-71.46756753,41.649802504],[-71.467483529,41.649736504],[-71.46746153,41.649714504],[-71.46733153,41.649604504],[-71.46725553,41.649538504],[-71.46717853,41.649477504],[-71.46708753,41.649393504],[-71.467056529,41.649367504],[-71.46821653,41.648405504],[-71.46841453,41.648230504],[-71.46881953,41.647875504],[-71.46934553,41.647422504],[-71.46978853,41.647030503],[-71.469977531,41.646848503],[-71.470009531,41.646818503],[-71.470108531,41.646644503],[-71.47013953,41.646536503],[-71.470146531,41.646378504],[-71.47015453,41.646292503],[-71.470169531,41.646265503],[-71.47019253,41.646215503],[-71.470406531,41.645985503],[-71.470688531,41.645700503],[-71.471199531,41.645955503],[-71.472053531,41.646391503],[-71.472656531,41.646747504],[-71.473709532,41.647337503],[-71.474190531,41.647619504],[-71.474434532,41.647830503],[-71.474503532,41.647811503],[-71.475023532,41.647696503],[-71.475502532,41.647582504],[-71.475799532,41.647517503],[-71.476326533,41.647398503],[-71.476959532,41.647276504],[-71.477860533,41.647081504],[-71.478523533,41.646981504],[-71.478696533,41.646961503],[-71.479355534,41.646882503],[-71.480431534,41.646742503],[-71.480720534,41.646704503],[-71.481827534,41.646581503],[-71.481895534,41.646571503],[-71.482567535,41.646511503],[-71.483490535,41.646401503],[-71.484116535,41.646352503],[-71.484230535,41.646340503],[-71.484581536,41.646314503],[-71.485924536,41.646200503],[-71.485977536,41.646190503],[-71.486580536,41.646141503],[-71.486961536,41.646105503],[-71.487137536,41.646093503],[-71.487419536,41.646068502],[-71.487465536,41.646063503],[-71.487671536,41.646050502],[-71.487999536,41.646020503],[-71.488037536,41.646015503],[-71.488701536,41.645969503],[-71.488922537,41.645950503],[-71.489456537,41.645912502],[-71.490166537,41.645865503],[-71.490951537,41.645798502],[-71.491539538,41.645754503],[-71.492142538,41.645705502],[-71.492241538,41.645703502],[-71.492370538,41.645691503],[-71.492600537,41.645677503],[-71.492989538,41.645655503],[-71.493118538,41.645643502],[-71.493568538,41.645611503],[-71.494408539,41.645539503],[-71.495209539,41.645496503],[-71.495377539,41.645486502],[-71.495552539,41.645451502],[-71.495415539,41.644580502],[-71.495262539,41.643575502],[-71.495255538,41.643521502],[-71.495125539,41.642412502],[-71.495048539,41.641838501],[-71.494995539,41.641451501],[-71.494926538,41.640925501],[-71.494920538,41.640879502],[-71.494872538,41.640499501],[-71.494789538,41.639852501],[-71.494690538,41.639030501],[-71.494643538,41.638670501],[-71.494598538,41.638321501],[-71.494499538,41.637499501],[-71.494430538,41.636960501],[-71.494400538,41.6367895],[-71.494331538,41.636485501],[-71.494156538,41.635768501],[-71.494065537,41.6353845],[-71.494011538,41.6351545],[-71.493866538,41.634581501],[-71.493759538,41.6341645],[-71.493690538,41.6338425],[-71.493667538,41.6337435],[-71.493614537,41.6333975],[-71.493576537,41.6330295],[-71.493477537,41.6322345],[-71.493423537,41.6318665],[-71.493416538,41.6317905],[-71.493394538,41.631559499],[-71.493378538,41.631385499],[-71.493340538,41.631035499],[-71.493286537,41.6307935],[-71.493263537,41.6306995],[-71.493248537,41.6305825],[-71.493225537,41.630357499],[-71.493103537,41.6294505],[-71.493088537,41.6293745],[-71.493042537,41.628988499],[-71.492943537,41.6285355],[-71.492859537,41.628123499],[-71.492790537,41.627818499],[-71.492737537,41.627598499],[-71.492691537,41.627397499],[-71.492607537,41.627020499],[-71.492554537,41.626787499],[-71.492447536,41.626303499],[-71.492424536,41.626191499],[-71.492409536,41.625903498],[-71.492271536,41.625258499],[-71.492161537,41.624755498],[-71.492150537,41.624702498],[-71.492134536,41.624644498],[-71.492027537,41.624155498],[-71.491966536,41.623801498],[-71.491920536,41.623563498],[-71.491836537,41.623079498],[-71.491715536,41.622388498],[-71.491623537,41.621895498],[-71.491488536,41.621093498],[-71.491440536,41.620804498],[-71.491341536,41.620257498],[-71.491333536,41.620199498],[-71.491264536,41.619840497],[-71.491234536,41.619683497],[-71.491142536,41.619185497],[-71.491135536,41.619131498],[-71.491074536,41.618763498],[-71.491058536,41.618543497],[-71.491051536,41.618377497],[-71.491051536,41.618174497],[-71.491066536,41.617975497],[-71.491089536,41.617772497],[-71.491158535,41.617487497],[-71.491341536,41.616641497],[-71.491379536,41.616483497],[-71.491493536,41.615706496],[-71.491592536,41.615159496],[-71.491638536,41.614955497],[-71.491722535,41.614611497],[-71.491768536,41.614380496],[-71.491791536,41.614254497],[-71.491801536,41.614198497],[-71.491821536,41.614091496],[-71.491875536,41.613856496],[-71.492073536,41.613694497],[-71.492025536,41.613893496],[-71.491989536,41.614047496],[-71.492111536,41.613941496],[-71.492133536,41.613920496],[-71.492218536,41.613844496],[-71.492767536,41.613390496],[-71.492988537,41.613201496],[-71.493271536,41.612956496],[-71.493729537,41.612541496],[-71.494034537,41.612219496],[-71.494057537,41.612196496],[-71.494438536,41.611796496],[-71.494583537,41.611622496],[-71.494759537,41.611411496],[-71.494964537,41.611141495],[-71.495186537,41.610834495],[-71.495659537,41.610058495],[-71.495872537,41.609617496],[-71.496025537,41.609267496],[-71.496330537,41.608477495],[-71.496491537,41.608045495],[-71.496506537,41.607996495],[-71.496529537,41.607941495],[-71.496551537,41.607882495],[-71.496757537,41.607301495],[-71.497002537,41.606656494],[-71.497230537,41.606021495],[-71.497688538,41.604791494],[-71.497791537,41.604517494],[-71.498001538,41.603951494],[-71.498230538,41.603270494],[-71.498405538,41.602665494],[-71.498093538,41.602668494],[-71.497849537,41.602670494],[-71.496546537,41.602681494],[-71.495689536,41.602688494],[-71.494561536,41.602698494],[-71.491821535,41.602720494],[-71.491411535,41.602724494],[-71.491401535,41.602724494],[-71.490582535,41.602730494],[-71.485405533,41.602770495],[-71.484406533,41.602777494],[-71.484497533,41.603748495],[-71.484650533,41.605375495],[-71.484786533,41.606834495],[-71.484863533,41.607658495],[-71.484965533,41.608680496],[-71.485031534,41.609348495],[-71.485092533,41.609968496],[-71.485283534,41.611841497],[-71.485390534,41.611925496],[-71.485451534,41.612031496],[-71.485420534,41.612167496],[-71.485382534,41.612429496],[-71.485386533,41.612441496],[-71.485371534,41.612500496],[-71.485403534,41.612580497],[-71.485443533,41.612639497],[-71.485461534,41.612700497],[-71.485436534,41.612763496],[-71.485399534,41.612825496],[-71.485384533,41.612880496],[-71.485403534,41.612938496],[-71.485451534,41.612982496],[-71.485538534,41.612995496],[-71.485652534,41.612994496],[-71.485765534,41.612995496],[-71.485873534,41.613008497],[-71.485985534,41.613039496],[-71.486069534,41.613078496],[-71.486148534,41.613131496],[-71.486215534,41.613192496],[-71.486273534,41.613249496],[-71.486332534,41.613284497],[-71.486413534,41.613297496],[-71.486511534,41.613304497],[-71.486624534,41.613308496],[-71.486746535,41.613324497],[-71.486851534,41.613353496],[-71.486925534,41.613388496],[-71.487005534,41.613415497],[-71.487094534,41.613439497],[-71.487175535,41.613467496],[-71.487279534,41.613468496],[-71.487358534,41.613435497],[-71.487443535,41.613452496],[-71.487503535,41.613495497],[-71.487515534,41.613544496],[-71.487479534,41.613599496],[-71.487419534,41.613662496],[-71.487356534,41.613729497],[-71.487286534,41.613794496],[-71.487223534,41.613855496],[-71.487178534,41.613919496],[-71.487161534,41.613988496],[-71.487195535,41.614045497],[-71.487264534,41.614078497],[-71.487355534,41.614103497],[-71.487456534,41.614129496],[-71.487546535,41.614162497],[-71.487610534,41.614209496],[-71.487631534,41.614273497],[-71.487632534,41.614343496],[-71.487609534,41.614413497],[-71.487567535,41.614487497],[-71.487559535,41.614562497],[-71.487567535,41.614638496],[-71.487559535,41.614709496],[-71.487556534,41.614777497],[-71.487569534,41.614837497],[-71.487613534,41.614887496],[-71.487686534,41.614925496],[-71.487765534,41.614952497],[-71.487831535,41.614995497],[-71.487888535,41.615050497],[-71.487944534,41.615108497],[-71.488005535,41.615177497],[-71.488031535,41.615221497],[-71.488036534,41.615280497],[-71.488021534,41.615345497],[-71.487999534,41.615408497],[-71.487965535,41.615464497],[-71.487912535,41.615511496],[-71.487844534,41.615543497],[-71.487777535,41.615572497],[-71.487724534,41.615635497],[-71.487771535,41.615738497],[-71.487826534,41.615798497],[-71.487889535,41.615862497],[-71.487947535,41.615932497],[-71.488039534,41.616056497],[-71.488065535,41.616114496],[-71.488077534,41.616182497],[-71.488070535,41.616260497],[-71.488039534,41.616342497],[-71.487989535,41.616419497],[-71.487926535,41.616498497],[-71.487854535,41.616575497],[-71.487788535,41.616647497],[-71.487726534,41.616716497],[-71.487663535,41.616781497],[-71.487591534,41.616838497],[-71.487515534,41.616888497],[-71.487441535,41.616913497],[-71.487361534,41.616903497],[-71.487279534,41.616864497],[-71.487196535,41.616807497],[-71.487117535,41.616744497],[-71.487048534,41.616693497],[-71.487005534,41.616675497],[-71.486970534,41.616661497],[-71.486873534,41.616645497],[-71.486762535,41.616658497],[-71.486651535,41.616698497],[-71.486534535,41.616748497],[-71.486414535,41.616794497],[-71.486291534,41.616836497],[-71.486173534,41.616877497],[-71.486070534,41.616911497],[-71.486001534,41.616943497],[-71.486009534,41.617059497],[-71.486066535,41.617132497],[-71.486139534,41.617208497],[-71.486213534,41.617287497],[-71.486273534,41.617368497],[-71.486310534,41.617455497],[-71.486304534,41.617542497],[-71.486267534,41.617638497],[-71.486235534,41.617739497],[-71.486212534,41.617845498],[-71.486200535,41.617900497],[-71.486192534,41.617954497],[-71.486189534,41.618009497],[-71.486190534,41.618063498],[-71.486190534,41.618179498],[-71.486191534,41.618239497],[-71.486196534,41.618299497],[-71.486208534,41.618359497],[-71.486225534,41.618418497],[-71.486245534,41.618474497],[-71.486264534,41.618530498],[-71.486282534,41.618589498],[-71.486299535,41.618646498],[-71.486317535,41.618703498],[-71.486327534,41.618740498],[-71.486334535,41.618767497],[-71.486295535,41.618852497],[-71.486288534,41.618906497],[-71.486303534,41.618950497],[-71.486299535,41.619018498],[-71.486279535,41.619072498],[-71.486245534,41.619099497],[-71.486173534,41.619075498],[-71.486159535,41.619097497],[-71.486143535,41.619161497],[-71.486209534,41.619191498],[-71.486234534,41.619249498],[-71.486213534,41.619309498],[-71.486199535,41.619363498],[-71.486197535,41.619427498],[-71.486196534,41.619504498],[-71.486195534,41.619583498],[-71.486183535,41.619637498],[-71.486147534,41.619712498],[-71.486111534,41.619782497],[-71.486073534,41.619841497],[-71.486017534,41.619882497],[-71.485950534,41.619909498],[-71.485873534,41.619940497],[-71.485815534,41.619994497],[-71.485710534,41.619981498],[-71.485627534,41.619979497],[-71.485571534,41.620021498],[-71.485511534,41.620065498],[-71.485430534,41.620103498],[-71.485345534,41.620141498],[-71.485261534,41.620184498],[-71.485185534,41.620229497],[-71.485115534,41.620274498],[-71.485047534,41.620323498],[-71.484993534,41.620369498],[-71.484954534,41.620419498],[-71.484919534,41.620479498],[-71.484884534,41.620551498],[-71.484856534,41.620603498],[-71.484823534,41.620654498],[-71.484771534,41.620721498],[-71.484724534,41.620782498],[-71.484685534,41.620837498],[-71.484646534,41.620888498],[-71.484601534,41.620948498],[-71.484557534,41.621005498],[-71.484508534,41.621067498],[-71.484457534,41.621132498],[-71.484418534,41.621182498],[-71.484379534,41.621236498],[-71.484338534,41.621294498],[-71.484302534,41.621353498],[-71.484270534,41.621415498],[-71.484228534,41.621469498],[-71.484175533,41.621512498],[-71.484121534,41.621554499],[-71.484067534,41.621595498],[-71.484008534,41.621632499],[-71.483939534,41.621661498],[-71.483868534,41.621685498],[-71.483752534,41.621706498],[-71.483698534,41.621673498],[-71.483702534,41.621618498],[-71.483726533,41.621546498],[-71.483722534,41.621488498],[-71.483682534,41.621415498],[-71.483600534,41.621381498],[-71.483497533,41.621383498],[-71.483403533,41.621419498],[-71.483339533,41.621480498],[-71.483306533,41.621555498],[-71.483297533,41.621612499],[-71.483293534,41.621674498],[-71.483294534,41.621735498],[-71.483302533,41.621794498],[-71.483318533,41.621856498],[-71.483334534,41.621921498],[-71.483355534,41.621984498],[-71.483355534,41.622066498],[-71.483321533,41.622126498],[-71.483241533,41.622156499],[-71.483170533,41.622168498],[-71.483094534,41.622181498],[-71.483017534,41.622199498],[-71.482916533,41.622230498],[-71.482851533,41.622258498],[-71.482789534,41.622292499],[-71.482735533,41.622335498],[-71.482693533,41.622384498],[-71.482662533,41.622463498],[-71.482649534,41.622519498],[-71.482635533,41.622580498],[-71.482613534,41.622646499],[-71.482593534,41.622718499],[-71.482576533,41.622792498],[-71.482566533,41.622866498],[-71.482563533,41.622933499],[-71.482554534,41.622991499],[-71.482462533,41.623124498],[-71.482443533,41.623199498],[-71.482422533,41.623278498],[-71.482443533,41.623329498],[-71.482491533,41.623375498],[-71.482512534,41.623429498],[-71.482475534,41.623478499],[-71.482462533,41.623525498],[-71.482482533,41.623588498],[-71.482417534,41.623618499],[-71.482320534,41.623638499],[-71.482234533,41.623633499],[-71.482174533,41.623599499],[-71.482115533,41.623555499],[-71.482023533,41.623541499],[-71.481953533,41.623554499],[-71.481897533,41.623571498],[-71.481855533,41.623592499],[-71.481850533,41.623682498],[-71.481875533,41.623727498],[-71.481852534,41.623735499],[-71.481812533,41.623747499],[-71.481738533,41.623777499],[-71.481628533,41.623790499],[-71.481530533,41.623798498],[-71.481325533,41.623811499],[-71.480816533,41.623885499],[-71.480654533,41.623922499],[-71.480578533,41.623940499],[-71.480475533,41.623964499],[-71.480378533,41.623985499],[-71.480304533,41.624005499],[-71.480236532,41.624029499],[-71.480167533,41.624068499],[-71.480104532,41.624115499],[-71.480060532,41.624167499],[-71.480018533,41.624233499],[-71.479985532,41.624286498],[-71.479958533,41.624340499],[-71.479923533,41.624399499],[-71.479839533,41.624460498],[-71.479770532,41.624486499],[-71.479358532,41.624208498],[-71.476302531,41.626045499],[-71.47191053,41.6286865],[-71.47132053,41.6290845],[-71.47174453,41.629998501],[-71.47196153,41.6305575],[-71.47253553,41.6320855],[-71.472523531,41.6320945],[-71.47245453,41.6321515],[-71.472394531,41.6322075],[-71.47233753,41.6322505],[-71.47226753,41.6323055],[-71.47224253,41.632357501],[-71.472238531,41.6324965],[-71.47222953,41.632565501],[-71.47221053,41.6326325],[-71.472177531,41.6326965],[-71.472135531,41.6327555],[-71.472077531,41.632804501],[-71.472002531,41.6328485],[-71.47191753,41.6328885],[-71.47182353,41.632922501],[-71.47171853,41.632953501],[-71.471612531,41.6329835],[-71.47152153,41.633010501],[-71.47144553,41.633035501],[-71.47137353,41.633058501],[-71.471302531,41.633088501],[-71.47123953,41.633128501],[-71.47118253,41.633173501],[-71.47113453,41.633216501],[-71.47108153,41.6332575],[-71.47099953,41.633291501],[-71.47090353,41.633327501],[-71.47080753,41.633370501],[-71.47072253,41.633425501],[-71.47065253,41.633484501],[-71.47059053,41.633546501],[-71.47053053,41.633606501],[-71.47047553,41.633669501],[-71.47042753,41.633736501],[-71.47038053,41.633808501],[-71.47026953,41.633956501],[-71.47021353,41.634019501],[-71.47011053,41.634154501],[-71.47005853,41.634215501],[-71.470017529,41.634263501],[-71.46996453,41.634313501],[-71.46990553,41.634364501],[-71.46984553,41.634415501],[-71.46980653,41.634446501],[-71.46978753,41.634461501],[-71.469727529,41.634507501],[-71.469666529,41.634544501],[-71.46956753,41.634571501],[-71.46946153,41.634574501],[-71.46938753,41.634581502],[-71.46930553,41.634596501],[-71.46921653,41.634604501],[-71.469121529,41.634604501],[-71.46903453,41.634604501],[-71.46896153,41.634601501],[-71.468870529,41.634593501],[-71.46878753,41.634577501],[-71.46870253,41.634553501],[-71.468614529,41.634525501],[-71.46855253,41.634499501],[-71.468464529,41.634450501],[-71.468403529,41.634405501],[-71.468372529,41.634382501],[-71.46833553,41.634353501],[-71.468266529,41.634299501],[-71.468203529,41.634250501],[-71.46814153,41.634215501],[-71.468077529,41.634173501],[-71.468008529,41.634152501],[-71.46792853,41.634156501],[-71.467855529,41.634171501],[-71.467867529,41.634375501],[-71.467873529,41.634430501],[-71.467926529,41.634776502],[-71.467934529,41.634808501],[-71.468079529,41.635417502],[-71.46823953,41.636138502],[-71.468379529,41.636836502],[-71.468422529,41.637053502],[-71.468502529,41.637623502],[-71.467292529,41.638142502],[-71.466425529,41.638441502],[-71.465537528,41.639086503],[-71.465054529,41.639495503],[-71.466775529,41.641013503],[-71.467202529,41.641477503],[-71.46737753,41.641723502],[-71.46675953,41.642213502],[-71.466263529,41.642611503],[-71.465920529,41.642889502],[-71.465820529,41.642963503],[-71.465652529,41.643106503],[-71.465416528,41.643305503],[-71.465119529,41.643590503],[-71.464966528,41.643765503],[-71.464070528,41.644424503],[-71.463792529,41.644652503],[-71.463783528,41.644659503],[-71.463532528,41.644881503],[-71.463402529,41.645005503],[-71.463119528,41.645299503],[-71.463014529,41.645452503],[-71.461432528,41.646313504],[-71.461043528,41.646722504],[-71.460839527,41.646936504],[-71.460526527,41.647337503],[-71.459447527,41.648717504],[-71.459446528,41.648719505],[-71.459190527,41.649045504]]]]}}"}, +{"type": "precinct", "typeId": 905, "areaId": 25756, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":95,\"NAME\":\"0905\",\"SHAPE_Length\":0.1853976700554,\"SHAPE_Area\":-0.0021382111603021},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.498405538,41.602665494],[-71.498230538,41.603270494],[-71.498001538,41.603951494],[-71.497791537,41.604517494],[-71.497688538,41.604791494],[-71.497230537,41.606021495],[-71.497002537,41.606656494],[-71.496757537,41.607301495],[-71.496551537,41.607882495],[-71.496529537,41.607941495],[-71.496506537,41.607996495],[-71.496491537,41.608045495],[-71.496330537,41.608477495],[-71.496025537,41.609267496],[-71.495872537,41.609617496],[-71.495659537,41.610058495],[-71.495186537,41.610834495],[-71.494964537,41.611141495],[-71.494759537,41.611411496],[-71.494583537,41.611622496],[-71.494438536,41.611796496],[-71.494057537,41.612196496],[-71.494034537,41.612219496],[-71.493729537,41.612541496],[-71.493271536,41.612956496],[-71.492988537,41.613201496],[-71.492767536,41.613390496],[-71.492218536,41.613844496],[-71.492133536,41.613920496],[-71.492111536,41.613941496],[-71.491989536,41.614047496],[-71.492025536,41.613893496],[-71.492073536,41.613694497],[-71.491875536,41.613856496],[-71.491821536,41.614091496],[-71.491801536,41.614198497],[-71.491791536,41.614254497],[-71.491768536,41.614380496],[-71.491722535,41.614611497],[-71.491638536,41.614955497],[-71.491592536,41.615159496],[-71.491493536,41.615706496],[-71.491379536,41.616483497],[-71.491341536,41.616641497],[-71.491158535,41.617487497],[-71.491089536,41.617772497],[-71.491066536,41.617975497],[-71.491051536,41.618174497],[-71.491051536,41.618377497],[-71.491058536,41.618543497],[-71.491074536,41.618763498],[-71.491135536,41.619131498],[-71.491142536,41.619185497],[-71.491234536,41.619683497],[-71.491264536,41.619840497],[-71.491333536,41.620199498],[-71.491341536,41.620257498],[-71.491440536,41.620804498],[-71.491488536,41.621093498],[-71.491623537,41.621895498],[-71.491715536,41.622388498],[-71.491836537,41.623079498],[-71.491920536,41.623563498],[-71.491966536,41.623801498],[-71.492027537,41.624155498],[-71.492134536,41.624644498],[-71.492150537,41.624702498],[-71.492161537,41.624755498],[-71.492271536,41.625258499],[-71.492409536,41.625903498],[-71.492424536,41.626191499],[-71.492447536,41.626303499],[-71.492554537,41.626787499],[-71.492607537,41.627020499],[-71.492691537,41.627397499],[-71.492737537,41.627598499],[-71.492790537,41.627818499],[-71.492859537,41.628123499],[-71.492943537,41.6285355],[-71.493042537,41.628988499],[-71.493088537,41.6293745],[-71.493103537,41.6294505],[-71.493225537,41.630357499],[-71.493248537,41.6305825],[-71.493263537,41.6306995],[-71.493286537,41.6307935],[-71.493340538,41.631035499],[-71.493378538,41.631385499],[-71.493394538,41.631559499],[-71.493416538,41.6317905],[-71.493423537,41.6318665],[-71.493477537,41.6322345],[-71.493576537,41.6330295],[-71.493614537,41.6333975],[-71.493667538,41.6337435],[-71.493690538,41.6338425],[-71.493759538,41.6341645],[-71.493866538,41.634581501],[-71.494011538,41.6351545],[-71.494065537,41.6353845],[-71.494156538,41.635768501],[-71.494331538,41.636485501],[-71.494400538,41.6367895],[-71.494430538,41.636960501],[-71.494499538,41.637499501],[-71.494598538,41.638321501],[-71.494643538,41.638670501],[-71.494690538,41.639030501],[-71.494789538,41.639852501],[-71.494872538,41.640499501],[-71.494920538,41.640879502],[-71.494926538,41.640925501],[-71.494995539,41.641451501],[-71.495048539,41.641838501],[-71.495125539,41.642412502],[-71.495255538,41.643521502],[-71.495262539,41.643575502],[-71.495415539,41.644580502],[-71.495552539,41.645451502],[-71.496567539,41.645321503],[-71.497124539,41.645259502],[-71.49764254,41.645216502],[-71.498100539,41.645170503],[-71.49865754,41.645118502],[-71.49916854,41.645062502],[-71.49948954,41.645032503],[-71.500587541,41.644896503],[-71.501549541,41.644785502],[-71.501724541,41.644758502],[-71.501869541,41.644746502],[-71.502388541,41.644690502],[-71.503105541,41.644625502],[-71.503959542,41.644545502],[-71.504684542,41.644473502],[-71.505425542,41.644416502],[-71.505875542,41.644380502],[-71.506020542,41.644367502],[-71.506508542,41.644339502],[-71.506928543,41.644325502],[-71.507149542,41.644316502],[-71.507439543,41.644287502],[-71.507629543,41.644256501],[-71.507832542,41.644219502],[-71.507912543,41.644205502],[-71.507950542,41.644190502],[-71.508202542,41.644131502],[-71.508560543,41.644042501],[-71.509285543,41.643882502],[-71.509728543,41.643791501],[-71.510139543,41.643742502],[-71.510383544,41.643727502],[-71.510857543,41.643694501],[-71.511208544,41.643637501],[-71.511688544,41.643564502],[-71.512199544,41.643490502],[-71.512688544,41.643416501],[-71.513245545,41.643309501],[-71.513901545,41.643187501],[-71.514328545,41.643114501],[-71.514465545,41.643089501],[-71.514542545,41.643092501],[-71.514687545,41.643120502],[-71.514915545,41.643173501],[-71.515709545,41.643399501],[-71.515854545,41.643428502],[-71.515991545,41.643443501],[-71.516151546,41.643439501],[-71.517372546,41.643340501],[-71.517891546,41.643297502],[-71.518271546,41.643259502],[-71.518295546,41.643257502],[-71.518478546,41.643249501],[-71.518768547,41.643256502],[-71.519218547,41.643241501],[-71.519493546,41.643231501],[-71.519791546,41.643188501],[-71.520394547,41.643098501],[-71.521034547,41.642990501],[-71.521400547,41.642941501],[-71.521622547,41.642927502],[-71.521705547,41.642912501],[-71.522118547,41.642890501],[-71.523117548,41.642868501],[-71.523743548,41.642863501],[-71.524521548,41.642868501],[-71.525185549,41.642849501],[-71.525543548,41.642850501],[-71.525795548,41.642849501],[-71.526558549,41.642842501],[-71.527054549,41.642826501],[-71.527432549,41.642822501],[-71.527519549,41.642820501],[-71.527672549,41.642813501],[-71.52781755,41.642778501],[-71.52810755,41.642699501],[-71.52853455,41.6425775],[-71.528687549,41.6425205],[-71.52919855,41.642414501],[-71.52957255,41.6423475],[-71.53012155,41.642236501],[-71.53047255,41.642202501],[-71.53067855,41.642165501],[-71.530937551,41.642115501],[-71.531075551,41.642085501],[-71.53128055,41.6420355],[-71.53153255,41.641989501],[-71.532066551,41.641941501],[-71.53250155,41.6418825],[-71.532936551,41.6418375],[-71.533366551,41.6418055],[-71.533386551,41.6418045],[-71.533653551,41.6417985],[-71.533852551,41.6417985],[-71.534042551,41.6418215],[-71.534302551,41.641847501],[-71.534760552,41.641891501],[-71.534866551,41.6419025],[-71.535049552,41.641894501],[-71.535248552,41.6418625],[-71.535423552,41.6418225],[-71.535622551,41.641813501],[-71.535728552,41.6418205],[-71.535873552,41.641853501],[-71.536156552,41.6419775],[-71.536324552,41.6420735],[-71.536408552,41.642120501],[-71.536667552,41.6421695],[-71.536873552,41.642218501],[-71.537262552,41.6422725],[-71.537392553,41.642283501],[-71.537621552,41.642283501],[-71.537750552,41.6422715],[-71.537880553,41.6422545],[-71.538078552,41.642218501],[-71.538384553,41.642167501],[-71.538567552,41.6421545],[-71.538666552,41.6421565],[-71.538795553,41.6421535],[-71.538979553,41.6421545],[-71.539131552,41.6421505],[-71.539292553,41.6421385],[-71.539528553,41.6420965],[-71.539772553,41.6420775],[-71.539963553,41.6420785],[-71.540276553,41.642066501],[-71.540535553,41.6420435],[-71.540855553,41.6420135],[-71.541267554,41.6419815],[-71.541580554,41.641970501],[-71.541954554,41.6419665],[-71.542229554,41.6419605],[-71.542465554,41.6419645],[-71.542854554,41.6419785],[-71.543137554,41.6419675],[-71.543419555,41.6419385],[-71.543693555,41.6419055],[-71.543938554,41.641891501],[-71.544594554,41.6418675],[-71.544761555,41.6418635],[-71.544922554,41.6418695],[-71.545341555,41.6419455],[-71.545555555,41.6420045],[-71.545753555,41.6420265],[-71.545871555,41.6420445],[-71.545983555,41.6420625],[-71.546305556,41.6420855],[-71.546417555,41.6420935],[-71.546409555,41.6418505],[-71.546402556,41.6417475],[-71.546371555,41.6414545],[-71.546348555,41.6412885],[-71.546341555,41.6411585],[-71.546356555,41.6410045],[-71.546385555,41.6408435],[-71.546410555,41.6407105],[-71.546433555,41.6404855],[-71.546410555,41.639985499],[-71.546410555,41.639693499],[-71.546407555,41.637416499],[-71.546402555,41.635343498],[-71.546415555,41.634625499],[-71.546305555,41.633251499],[-71.546318555,41.633031498],[-71.546398555,41.631652498],[-71.546510555,41.629737498],[-71.546501555,41.629666498],[-71.546494555,41.629598498],[-71.546333554,41.623992496],[-71.546337554,41.623922497],[-71.546357554,41.621831496],[-71.546422554,41.621264496],[-71.546414554,41.620640496],[-71.546402554,41.620328496],[-71.546372554,41.620249496],[-71.546289553,41.616157495],[-71.546170554,41.610239494],[-71.546148553,41.601903492],[-71.546147553,41.601899492],[-71.545603553,41.601911493],[-71.545013553,41.601924492],[-71.544807552,41.602001492],[-71.543884553,41.602024493],[-71.543793552,41.602026493],[-71.533326549,41.602284493],[-71.533280548,41.602285493],[-71.531380548,41.602331493],[-71.529266547,41.602384493],[-71.528305548,41.602414493],[-71.522606546,41.602598494],[-71.522441545,41.602607493],[-71.522202546,41.602621493],[-71.520447545,41.602627493],[-71.517761544,41.602637494],[-71.515750543,41.602636494],[-71.510712542,41.602633494],[-71.50651554,41.602631494],[-71.499588538,41.602655494],[-71.498405538,41.602665494]]]]}}"}, +{"type": "precinct", "typeId": 1001, "areaId": 25758, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":97,\"NAME\":\"1001\",\"SHAPE_Length\":0.13918168748159,\"SHAPE_Area\":-0.00034887080889652},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.379427709,41.82665896],[-71.379432177,41.82665686],[-71.379439254,41.826649321],[-71.379473788,41.826628055],[-71.379509511,41.826565541],[-71.379443511,41.826644541],[-71.379427511,41.826658541],[-71.379311987,41.826608747],[-71.379315252,41.826611115],[-71.379325332,41.826616385],[-71.379427709,41.82665896]]],[[[-71.379292511,41.826628541],[-71.379243736,41.826659116],[-71.379261002,41.826649111],[-71.37927793,41.826638701],[-71.379292165,41.826628996],[-71.379304109,41.826616333],[-71.379292511,41.826628541]]],[[[-71.379112408,41.826752972],[-71.379129357,41.826740905],[-71.379147247,41.82672758],[-71.379112408,41.826752972]]],[[[-71.379056238,41.826786122],[-71.379083099,41.826772643],[-71.379106764,41.826756972],[-71.379056238,41.826786122]]],[[[-71.378975483,41.826815488],[-71.378994424,41.826809048],[-71.379026731,41.826798448],[-71.379054666,41.826786847],[-71.378975483,41.826815488]]],[[[-71.378862511,41.826863541],[-71.378856896,41.826866776],[-71.378862787,41.826863634],[-71.378866645,41.826861746],[-71.378862511,41.826863541]]],[[[-71.378465008,41.827081032],[-71.378495961,41.827066984],[-71.378529071,41.827052291],[-71.378561206,41.827035631],[-71.378586935,41.827021739],[-71.378465008,41.827081032]]],[[[-71.37830151,41.827160541],[-71.3782945,41.827165023],[-71.378301019,41.827160996],[-71.378307724,41.827157519],[-71.37830151,41.827160541]]],[[[-71.378240511,41.827199541],[-71.378237622,41.827201727],[-71.378240468,41.827199717],[-71.378247259,41.827195226],[-71.378240511,41.827199541]]],[[[-71.377953727,41.827416609],[-71.377986507,41.827394724],[-71.378024747,41.827367802],[-71.378059378,41.827340945],[-71.378091287,41.827314794],[-71.378122339,41.827289306],[-71.378130114,41.827283101],[-71.377953727,41.827416609]]],[[[-71.37787851,41.827473541],[-71.377876562,41.827475561],[-71.377878089,41.827474031],[-71.377880914,41.827471721],[-71.37787851,41.827473541]]],[[[-71.377775535,41.827580331],[-71.377799627,41.82755767],[-71.377825149,41.827529569],[-71.377836162,41.827517457],[-71.377775535,41.827580331]]],[[[-71.377729348,41.82761817],[-71.377738466,41.827611278],[-71.377751706,41.827600448],[-71.377729348,41.82761817]]],[[[-71.377483608,41.827798842],[-71.377496792,41.827790562],[-71.377536894,41.827765655],[-71.377573358,41.827740104],[-71.377600512,41.827719607],[-71.377483608,41.827798842]]],[[[-71.37719151,41.828001541],[-71.377131763,41.828044274],[-71.377156125,41.828028009],[-71.377191701,41.828003166],[-71.377228195,41.827978301],[-71.377263743,41.827952086],[-71.377299262,41.82792523],[-71.377321423,41.827909258],[-71.37719151,41.828001541]]],[[[-71.37682251,41.828291541],[-71.376818798,41.8282948],[-71.376822437,41.828291762],[-71.376859704,41.828262141],[-71.376885767,41.828239941],[-71.376896026,41.828231193],[-71.376932378,41.828200954],[-71.376967842,41.828170668],[-71.376979734,41.828160281],[-71.37682251,41.828291541]]],[[[-71.376390509,41.828653542],[-71.376385931,41.828657608],[-71.376390715,41.828653629],[-71.376428871,41.828623347],[-71.37646614,41.828593063],[-71.376504296,41.82856278],[-71.376541534,41.828532451],[-71.376578803,41.82850219],[-71.376615153,41.828472568],[-71.376647562,41.828444934],[-71.376390509,41.828653542]]],[[[-71.376238509,41.828788542],[-71.376146308,41.828864608],[-71.376147048,41.828864033],[-71.376184346,41.828834435],[-71.376220727,41.828804837],[-71.376254357,41.828775281],[-71.376267984,41.828762364],[-71.376238509,41.828788542]]],[[[-71.365509507,41.858086548],[-71.365623508,41.858185548],[-71.365730508,41.858288547],[-71.370100509,41.857715548],[-71.37123851,41.857637548],[-71.371267509,41.857643547],[-71.37207851,41.857621548],[-71.37229251,41.857621548],[-71.37267351,41.857613547],[-71.373695511,41.857613547],[-71.374526511,41.857144547],[-71.374526146,41.857143451],[-71.374524609,41.857143138],[-71.37447293,41.857134483],[-71.374423055,41.857125807],[-71.374375047,41.85711711],[-71.374326121,41.857108412],[-71.37427719,41.857101818],[-71.374227372,41.857095886],[-71.37417758,41.857092036],[-71.37412595,41.857089578],[-71.374070617,41.857087825],[-71.374010669,41.857084032],[-71.373951669,41.857080239],[-71.373894473,41.857077112],[-71.373838224,41.857074695],[-71.37378387,41.857072943],[-71.373729454,41.857071854],[-71.373675068,41.857070788],[-71.373620657,41.857066978],[-71.373569894,41.857058987],[-71.373522749,41.85704686],[-71.373480201,41.857030554],[-71.373439461,41.857012191],[-71.373401504,41.856994495],[-71.373364463,41.856977485],[-71.373328365,41.856963221],[-71.373290486,41.856952408],[-71.373251739,41.856947815],[-71.373212096,41.856947337],[-71.373168782,41.8569469],[-71.373124496,41.856943032],[-71.373078324,41.856934337],[-71.373032126,41.856922874],[-71.372985929,41.856910749],[-71.372940621,41.856897892],[-71.372898128,41.856885062],[-71.372857439,41.856872187],[-71.372819503,41.856859316],[-71.372787108,41.856844347],[-71.372758357,41.856827278],[-71.372730529,41.856807466],[-71.372706345,41.85678624],[-71.372685806,41.856762251],[-71.37267359,41.856736831],[-71.372669326,41.856681027],[-71.372673634,41.856652766],[-71.372681616,41.856623091],[-71.372692379,41.856594106],[-71.372707791,41.856565766],[-71.372724979,41.856536719],[-71.372743145,41.856507696],[-71.372760334,41.856477963],[-71.372774771,41.856447564],[-71.372784591,41.856416497],[-71.372788874,41.856385469],[-71.37278765,41.856354481],[-71.372781807,41.856324196],[-71.372771373,41.856294638],[-71.372757268,41.85626574],[-71.372739458,41.856238278],[-71.372718007,41.856211566],[-71.372691936,41.856185536],[-71.372663082,41.856158816],[-71.372630555,41.856133488],[-71.372595303,41.856109574],[-71.37255913,41.856087054],[-71.372523874,41.856065198],[-71.372492348,41.85604401],[-71.372463548,41.856021452],[-71.3724375,41.855998852],[-71.372414239,41.855974883],[-71.372393702,41.855950185],[-71.37237962,41.855924785],[-71.372367375,41.855898679],[-71.372351459,41.855873254],[-71.372330921,41.855848579],[-71.372305793,41.855825294],[-71.372276076,41.855802049],[-71.372244494,41.855778802],[-71.372210186,41.855756948],[-71.372174929,41.855735778],[-71.372138782,41.855716002],[-71.3721045,41.855696228],[-71.372070191,41.85567506],[-71.372034937,41.855652518],[-71.372000599,41.855630663],[-71.371969964,41.855607417],[-71.371947591,41.855583426],[-71.371934456,41.85555869],[-71.371927718,41.855532544],[-71.371921955,41.855507794],[-71.371915242,41.855484392],[-71.371903967,41.855463111],[-71.371888102,41.855442535],[-71.371867645,41.855423348],[-71.371843487,41.855404889],[-71.371819328,41.855386407],[-71.371798843,41.855366558],[-71.371783898,41.855344587],[-71.371773517,41.855319855],[-71.371770478,41.855294376],[-71.371772979,41.855267485],[-71.371782823,41.855239871],[-71.371794531,41.855212922],[-71.37180532,41.855186681],[-71.371813354,41.855161146],[-71.371814045,41.855137043],[-71.371808252,41.855112247],[-71.371799707,41.855086785],[-71.371789326,41.855062075],[-71.371777076,41.855038713],[-71.371758458,41.855018133],[-71.371732491,41.855001776],[-71.37169915,41.854986096],[-71.371662108,41.854970459],[-71.371622291,41.854950702],[-71.371582446,41.854929549],[-71.371540741,41.854905674],[-71.371497171,41.854881133],[-71.371451739,41.854854509],[-71.371407229,41.854825827],[-71.371364524,41.854797125],[-71.371322766,41.854769133],[-71.371281953,41.854742491],[-71.371241139,41.854716535],[-71.37120219,41.854691268],[-71.371163213,41.854664605],[-71.371124207,41.854637279],[-71.371084313,41.854609929],[-71.371041664,41.854584017],[-71.370997149,41.85455808],[-71.370951775,41.854533537],[-71.370904504,41.854508991],[-71.37085726,41.854486527],[-71.370810966,41.854463355],[-71.370764641,41.854440206],[-71.370715564,41.854416367],[-71.370663705,41.854391862],[-71.370610927,41.854368042],[-71.370558179,41.854344908],[-71.370508157,41.854319697],[-71.370459053,41.854294486],[-71.370411785,41.854268568],[-71.370364547,41.85424336],[-71.37031728,41.854217442],[-71.370271849,41.85419084],[-71.370227339,41.854162822],[-71.370182798,41.854134826],[-71.370139203,41.85410818],[-71.370096554,41.854082245],[-71.370054824,41.854056311],[-71.370012175,41.854030352],[-71.369971365,41.854003024],[-71.369931444,41.85397501],[-71.369893359,41.85394629],[-71.36985711,41.853916863],[-71.369822728,41.853887438],[-71.369789265,41.853857305],[-71.369758525,41.853826489],[-71.369729623,41.853794943],[-71.369704421,41.853763402],[-71.36967925,41.853731838],[-71.369652181,41.853701003],[-71.369622389,41.853670851],[-71.369589842,41.853641405],[-71.369556378,41.853611981],[-71.369521049,41.853581869],[-71.369484801,41.853552442],[-71.369447637,41.853522327],[-71.369409526,41.853491526],[-71.369372363,41.853460748],[-71.369335201,41.853429948],[-71.369298954,41.853399857],[-71.369261788,41.853371115],[-71.369225569,41.853342396],[-71.369191182,41.853315715],[-71.369156825,41.853289034],[-71.369124332,41.853263728],[-71.369091809,41.853237712],[-71.369060201,41.853213092],[-71.369029572,41.853188474],[-71.368999828,41.853164519],[-71.368970085,41.853140588],[-71.36894129,41.853116634],[-71.368912493,41.853093344],[-71.368884584,41.853070078],[-71.368857652,41.853047521],[-71.368831608,41.853024234],[-71.368807401,41.853000263],[-71.368785976,41.852976936],[-71.368764524,41.852952236],[-71.368744936,41.852928248],[-71.368725319,41.85290355],[-71.368705732,41.852878852],[-71.368685197,41.852854177],[-71.368664662,41.852829478],[-71.368644157,41.852805488],[-71.368626402,41.852782165],[-71.368606839,41.85276092],[-71.368586385,41.852741733],[-71.368563172,41.852725333],[-71.368537258,41.852713754],[-71.368507695,41.852706357],[-71.368477266,41.852703761],[-71.368445887,41.852701873],[-71.368417295,41.852698592],[-71.368391404,41.852690467],[-71.368370997,41.852678186],[-71.368353351,41.852661747],[-71.368337482,41.852643937],[-71.368319806,41.852627497],[-71.368299403,41.852613135],[-71.368278051,41.852599481],[-71.368256701,41.852584431],[-71.368237188,41.852568698],[-71.368219512,41.852552258],[-71.368201864,41.852536528],[-71.368185134,41.852521461],[-71.368167482,41.852507765],[-71.368150747,41.852494779],[-71.368134043,41.852481794],[-71.368120089,41.852469475],[-71.36811259,41.852457094],[-71.368114352,41.852448132],[-71.368128124,41.852444626],[-71.368147536,41.852450022],[-71.368170696,41.852462283],[-71.368196661,41.852478664],[-71.36822449,41.852496442],[-71.368254155,41.85251349],[-71.368282902,41.85253056],[-71.368310732,41.852547606],[-71.368337614,41.852564697],[-71.368365389,41.852578999],[-71.368396842,41.852589166],[-71.368430075,41.852596545],[-71.368467011,41.852603219],[-71.368503972,41.852612683],[-71.368540068,41.85262624],[-71.368576186,41.852643958],[-71.368610463,41.852664419],[-71.368642963,41.852686296],[-71.36867543,41.852709545],[-71.36870609,41.852733477],[-71.368735834,41.852757432],[-71.368764631,41.85277999],[-71.36879432,41.852800492],[-71.36882493,41.852819622],[-71.368856431,41.852836672],[-71.368889742,41.852850934],[-71.368925782,41.852861769],[-71.368964583,41.852869109],[-71.36900611,41.852874393],[-71.369049445,41.852877598],[-71.369091865,41.852880116],[-71.369130585,41.852881967],[-71.369167471,41.852883153],[-71.369204329,41.85288292],[-71.369240241,41.852882023],[-71.369277103,41.852879778],[-71.369314828,41.852874745],[-71.369350692,41.852866964],[-71.369387475,41.852858476],[-71.369425176,41.852850012],[-71.36946563,41.852841505],[-71.369507002,41.852832999],[-71.369550239,41.852824496],[-71.3695962,41.852815263],[-71.369643109,41.852806055],[-71.369690937,41.852796138],[-71.369738766,41.852786222],[-71.369787482,41.852775597],[-71.369839013,41.852764976],[-71.369891431,41.852754356],[-71.369945682,41.852744378],[-71.369998126,41.852735816],[-71.370048738,41.852725903],[-71.370098401,41.852715965],[-71.370147147,41.85270605],[-71.370194975,41.852696133],[-71.370244637,41.852686882],[-71.370294299,41.852677653],[-71.370345825,41.85266909],[-71.370399185,41.852661215],[-71.370451628,41.852653338],[-71.3705041,41.852646148],[-71.37055565,41.852641038],[-71.370608142,41.852638673],[-71.37066158,41.852637681],[-71.370716911,41.852638727],[-71.370774047,41.852639111],[-71.370830267,41.852638786],[-71.370883675,41.852637794],[-71.370933414,41.852635449],[-71.370980376,41.852630356],[-71.371024531,41.85262183],[-71.371066796,41.852609871],[-71.371104445,41.852596581],[-71.371138396,41.852581915],[-71.371170482,41.85256656],[-71.371200733,41.852551249],[-71.371228204,41.852533854],[-71.371251951,41.852513048],[-71.371273839,41.852488809],[-71.37129567,41.852462511],[-71.371319367,41.852436193],[-71.371343982,41.85240919],[-71.371370461,41.852383539],[-71.371395045,41.852357222],[-71.371417825,41.852330216],[-71.37143504,41.852302565],[-71.371443996,41.85227495],[-71.371445522,41.852246],[-71.371438762,41.852215737],[-71.371428305,41.852183412],[-71.371416901,41.8521504],[-71.371406418,41.852115331],[-71.371394074,41.852078178],[-71.371380757,41.852038303],[-71.371366499,41.851994974],[-71.371351296,41.851949586],[-71.371335173,41.851905592],[-71.371319079,41.851862261],[-71.371303898,41.851821698],[-71.371289692,41.851782508],[-71.3712764,41.851745377],[-71.371264087,41.851708248],[-71.371263206,41.851705091],[-71.371253519,41.851670389],[-71.371243042,41.851632552],[-71.37123345,41.851596112],[-71.371223827,41.851559626],[-71.371214265,41.851523163],[-71.371206537,41.851487387],[-71.371198808,41.851452276],[-71.371191077,41.851417895],[-71.371184265,41.851383471],[-71.37117751,41.851350441],[-71.371171669,41.85131947],[-71.371168608,41.851289852],[-71.371170135,41.851260902],[-71.371179063,41.851231915],[-71.371195336,41.851200832],[-71.371217119,41.851167628],[-71.371239794,41.851132367],[-71.371264306,41.851095714],[-71.3712916,41.851059726],[-71.371320728,41.851024427],[-71.371350774,41.850989106],[-71.3713799,41.850954493],[-71.371409056,41.850920565],[-71.371437291,41.850888032],[-71.371466468,41.85085893],[-71.371495701,41.850831887],[-71.371524012,41.850807609],[-71.371551431,41.850785411],[-71.371578878,41.850764586],[-71.371607265,41.850747878],[-71.371637542,41.850734625],[-71.371669708,41.850724782],[-71.371701842,41.850715647],[-71.371732143,41.850705139],[-71.371759665,41.850692592],[-71.371778872,41.850678],[-71.371787008,41.850662802],[-71.371783186,41.850646995],[-71.371766452,41.850633301],[-71.371739617,41.850623118],[-71.371708217,41.850617091],[-71.371677761,41.850613124],[-71.371651007,41.850608451],[-71.371633435,41.850600977],[-71.371625933,41.850589991],[-71.371623024,41.850576244],[-71.371622872,41.850560396],[-71.371625474,41.850543842],[-71.37163361,41.850528644],[-71.371646335,41.850512718],[-71.371662789,41.850498147],[-71.371682912,41.850484265],[-71.371704898,41.850471735],[-71.371722266,41.850459245],[-71.371731376,41.850446083],[-71.371728439,41.850430963],[-71.371713518,41.850413109],[-71.371689391,41.850395336],[-71.371654191,41.850377642],[-71.371610699,41.850361334],[-71.371560786,41.850344402],[-71.371508977,41.850326781],[-71.371459036,41.850308453],[-71.371408177,41.850290147],[-71.371357319,41.850271841],[-71.371308264,41.850253514],[-71.371261107,41.850235166],[-71.371216699,41.850218216],[-71.371173181,41.85019985],[-71.371131529,41.850181485],[-71.37108988,41.850161749],[-71.371048172,41.850140617],[-71.371003715,41.850118133],[-71.370959258,41.850094963],[-71.370914776,41.850069689],[-71.370870293,41.850044461],[-71.370827619,41.850017153],[-71.370786784,41.849988453],[-71.37074503,41.849959729],[-71.370701383,41.849929653],[-71.370655016,41.849898934],[-71.370607701,41.849867483],[-71.370559469,41.849836075],[-71.370511235,41.84980604],[-71.370462082,41.849776004],[-71.370412932,41.849745259],[-71.370367483,41.849713832],[-71.370322004,41.849682405],[-71.370274661,41.84965029],[-71.370228267,41.849617467],[-71.370182791,41.849584668],[-71.370139149,41.849552534],[-71.370095506,41.849521086],[-71.370052807,41.849491011],[-71.370013809,41.849461604],[-71.369974809,41.849432882],[-71.369935837,41.849405556],[-71.369896891,41.849380265],[-71.369859778,41.849356371],[-71.369825445,41.84933383],[-71.369793893,41.84931264],[-71.369764232,41.84929422],[-71.369733678,41.849278544],[-71.369703148,41.84926632],[-71.369673581,41.849261667],[-71.369644122,41.849263898],[-71.369614713,41.84927164],[-71.369586277,41.849282813],[-71.369555083,41.849296087],[-71.369519269,41.849310065],[-71.369477951,41.849323396],[-71.369435713,41.849338098],[-71.369397172,41.849354863],[-71.369362359,41.849372981],[-71.36932935,41.849391078],[-71.3692954,41.84940643],[-71.369260509,41.849417642],[-71.369221917,41.849428895],[-71.369182435,41.849442205],[-71.369142059,41.849458281],[-71.369100734,41.849475043],[-71.369058522,41.849491826],[-71.369015392,41.849508608],[-71.368968536,41.849523328],[-71.368921649,41.849537384],[-71.36887391,41.849550044],[-71.36882516,41.849562727],[-71.368773661,41.849574056],[-71.368717545,41.849584695],[-71.368658677,41.849594667],[-71.36859611,41.849603994],[-71.368532627,41.849612611],[-71.368470951,41.849619859],[-71.368410222,41.849627747],[-71.368352244,41.849636348],[-71.368299831,41.849645596],[-71.368250141,41.849654846],[-71.368203263,41.849664763],[-71.368161891,41.849674641],[-71.368123272,41.849683812],[-71.368087383,41.849689534],[-71.368052391,41.849690409],[-71.368019182,41.849687146],[-71.367989648,41.84968112],[-71.367961004,41.849673701],[-71.367932359,41.849666967],[-71.367902821,41.849663],[-71.367873336,41.849663172],[-71.367842986,41.849667482],[-71.36781266,41.849675223],[-71.367781388,41.849681613],[-71.367749146,41.84968384],[-71.367714102,41.849679911],[-71.367679896,41.849670473],[-71.367646585,41.849656874],[-71.367614166,41.849641217],[-71.367586342,41.849622067],[-71.367563997,41.849600842],[-71.367546245,41.849576832],[-71.367536784,41.849552078],[-71.367534694,41.849527286],[-71.367539976,41.849502457],[-71.367551708,41.849478961],[-71.367571757,41.849456802],[-71.36759645,41.849436683],[-71.367625757,41.849419291],[-71.367659702,41.849406707],[-71.367701129,41.84940026],[-71.36774811,41.849399308],[-71.367801571,41.849401061],[-71.367857839,41.849405563],[-71.367915943,41.849410066],[-71.367969428,41.849414587],[-71.368014597,41.849417772],[-71.368048699,41.849418291],[-71.368071707,41.849414704],[-71.368084512,41.849404977],[-71.368091733,41.849388406],[-71.368097957,41.849366322],[-71.368105965,41.849339415],[-71.368115815,41.849309034],[-71.368124713,41.849280046],[-71.368137341,41.849252413],[-71.368154609,41.849228901],[-71.368182052,41.849210134],[-71.368216947,41.849196842],[-71.368258319,41.849186965],[-71.368304279,41.849177069],[-71.368350246,41.849163721],[-71.368397046,41.849146921],[-71.368443882,41.849127353],[-71.368490631,41.849105727],[-71.368537385,41.849081357],[-71.368581391,41.849054926],[-71.368622555,41.849027119],[-71.368660971,41.84899661],[-71.368697495,41.848964705],[-71.368730349,41.848932132],[-71.368743346,41.848918037],[-71.36876042,41.848899578],[-71.368786818,41.848868416],[-71.36881049,41.848838668],[-71.368831405,41.848811661],[-71.368851428,41.848786757],[-71.368872391,41.848765971],[-71.368892491,41.848748614],[-71.368911671,41.848731987],[-71.368927184,41.848713984],[-71.368942639,41.848694609],[-71.368959016,41.848672468],[-71.368977203,41.848648249],[-71.368995363,41.848621948],[-71.369015331,41.848594276],[-71.36903533,41.848565919],[-71.369054383,41.848536875],[-71.369071573,41.848506457],[-71.369086929,41.848475373],[-71.369097696,41.848444993],[-71.369104735,41.848412573],[-71.369108074,41.848380172],[-71.369107744,41.848347104],[-71.369106494,41.848314721],[-71.369100656,41.848283064],[-71.369092036,41.848250741],[-71.369080663,41.848218414],[-71.369065589,41.84818613],[-71.369048677,41.848155215],[-71.369029041,41.848125692],[-71.3690057,41.848097583],[-71.368978717,41.848070864],[-71.368947114,41.848045536],[-71.368913704,41.848020937],[-71.368879373,41.847997709],[-71.368843208,41.847974479],[-71.368805205,41.847952642],[-71.368764446,41.847932196],[-71.368720044,41.847913851],[-71.36867469,41.847896899],[-71.368628479,41.847880609],[-71.368582237,41.847864343],[-71.368536914,41.847847368],[-71.368493398,41.847829023],[-71.368448993,41.847812027],[-71.368402781,41.847796423],[-71.368358402,41.847781531],[-71.368314938,41.847767989],[-71.368275205,41.847754428],[-71.368239112,41.847740871],[-71.36820764,41.847725879],[-71.368186238,41.847707399],[-71.368175884,41.847685411],[-71.36817655,41.847659227],[-71.36818545,41.847629554],[-71.36819989,41.847597783],[-71.368217056,41.847563911],[-71.368236058,41.847530042],[-71.368257841,41.847496839],[-71.368285185,41.847466386],[-71.36831717,41.84744001],[-71.368352876,41.847418463],[-71.368391392,41.847398954],[-71.36843174,41.847380797],[-71.368471174,41.847360604],[-71.368509662,41.847339723],[-71.368542616,41.847318173],[-71.368570007,41.847294581],[-71.368591865,41.847269656],[-71.368607305,41.847242003],[-71.368614338,41.847213037],[-71.36861495,41.847182713],[-71.368612813,41.847151038],[-71.36861245,41.847119342],[-71.368613125,41.847088333],[-71.368619243,41.847057993],[-71.368630008,41.847028299],[-71.368644442,41.846999273],[-71.368660744,41.846969562],[-71.368676098,41.846939164],[-71.368689591,41.846906706],[-71.368696633,41.846872892],[-71.368699947,41.846837747],[-71.36870143,41.846800518],[-71.368704719,41.846762606],[-71.368711707,41.846725361],[-71.368720561,41.846688118],[-71.368731247,41.846652227],[-71.368744686,41.846616315],[-71.368759102,41.846581114],[-71.368775294,41.846545183],[-71.368793379,41.846510627],[-71.368813329,41.846476072],[-71.368834164,41.846442891],[-71.368855973,41.846411746],[-71.368879642,41.84638337],[-71.368902417,41.846358447],[-71.368921547,41.846336286],[-71.368933304,41.846314849],[-71.368941392,41.846293453],[-71.36895404,41.846269958],[-71.368975011,41.846245033],[-71.369002375,41.846219382],[-71.369034385,41.846195087],[-71.369069173,41.846173516],[-71.369108602,41.846155403],[-71.369151811,41.846143423],[-71.369197769,41.846133528],[-71.36924284,41.846123631],[-71.369286018,41.846111674],[-71.369328254,41.846096949],[-71.369369545,41.846080874],[-71.369409007,41.846062052],[-71.369446545,41.84604117],[-71.369483198,41.846019601],[-71.369518903,41.845998054],[-71.369553721,41.845976482],[-71.369586644,41.845954246],[-71.369617763,41.84593203],[-71.369647933,41.845909813],[-71.369677217,41.845887595],[-71.369706496,41.845867458],[-71.369738584,41.845850046],[-71.369772557,41.845837438],[-71.369809362,41.845831717],[-71.36984711,41.845828078],[-71.369885751,41.84582165],[-71.369924336,41.845812477],[-71.369960174,41.845800558],[-71.369993199,41.845787972],[-71.370028092,41.845774679],[-71.370065736,41.845762075],[-71.370100627,41.845749468],[-71.370131821,41.845735508],[-71.370156506,41.845718156],[-71.370177499,41.845697346],[-71.37019752,41.845672442],[-71.370216599,41.84564477],[-71.370236539,41.84561504],[-71.370255565,41.845583229],[-71.370275511,41.845550732],[-71.370297321,41.845518215],[-71.370319102,41.84548572],[-71.370339047,41.845453223],[-71.370359882,41.845419356],[-71.370378884,41.845384091],[-71.370397858,41.845348163],[-71.370414997,41.845311547],[-71.370432137,41.845274931],[-71.370449276,41.845238337],[-71.370464552,41.845201033],[-71.370478939,41.845164437],[-71.370492376,41.845128525],[-71.370503092,41.845092634],[-71.370513748,41.845056056],[-71.370524438,41.84501742],[-71.370536017,41.844978076],[-71.370547568,41.84493736],[-71.370560957,41.844895251],[-71.370575293,41.844853144],[-71.370590545,41.844812409],[-71.370606713,41.844772361],[-71.370622907,41.844734372],[-71.370639127,41.844698464],[-71.37065443,41.844662532],[-71.370667897,41.844627329],[-71.370681362,41.84459279],[-71.370693937,41.844559667],[-71.370707487,41.844528581],[-71.370721888,41.84450024],[-71.370737322,41.844474668],[-71.370752723,41.844451153],[-71.370766349,41.844427637],[-71.370773461,41.844404182],[-71.37077415,41.844380742],[-71.370772976,41.844356637],[-71.370773666,41.844332512],[-71.370778027,41.844308368],[-71.370785168,41.844285598],[-71.370794143,41.844263517],[-71.370804091,41.844244159],[-71.370814064,41.844227568],[-71.370825923,41.844215781],[-71.370838752,41.84420882],[-71.370854387,41.84420527],[-71.370872801,41.844203782],[-71.370893023,41.844200923],[-71.370912329,41.844196691],[-71.370927023,41.84418971],[-71.370937961,41.84417998],[-71.370946125,41.844165491],[-71.370956044,41.844145423],[-71.370968694,41.844120579],[-71.370982238,41.84409226],[-71.370997591,41.844061839],[-71.371013889,41.844032837],[-71.371028348,41.844005869],[-71.371042832,41.843981667],[-71.371056452,41.843960918],[-71.371068261,41.843943642],[-71.371075505,41.843930478],[-71.371076321,41.843920165],[-71.371070683,41.843910554],[-71.37105951,41.843900274],[-71.371043752,41.843888639],[-71.371028883,41.843876319],[-71.371016739,41.843862607],[-71.371012888,41.843846091],[-71.371015468,41.843825398],[-71.371024391,41.843798492],[-71.371032348,41.843765364],[-71.371039334,41.843728119],[-71.371046324,41.843689502],[-71.371054201,41.843650177],[-71.371063027,41.843610853],[-71.371072772,41.843570843],[-71.371082487,41.843530148],[-71.371092202,41.84348943],[-71.371101918,41.843448735],[-71.371111662,41.843408703],[-71.371121376,41.843368694],[-71.371131147,41.843330743],[-71.371142721,41.84329348],[-71.371156191,41.843256197],[-71.371170548,41.843218914],[-71.371186769,41.843182297],[-71.371203881,41.843143622],[-71.371220964,41.843104239],[-71.371236215,41.843063504],[-71.371252386,41.843021375],[-71.371266693,41.842978581],[-71.371280999,41.842935787],[-71.371294418,41.842893678],[-71.371306885,41.842852963],[-71.371320272,41.842811541],[-71.371333687,41.842770827],[-71.371347077,41.842728032],[-71.371360469,41.842683864],[-71.371374749,41.842638989],[-71.371389029,41.842594137],[-71.371402421,41.842549947],[-71.371414863,41.842506465],[-71.371428253,41.842462984],[-71.371441643,41.842420189],[-71.371455004,41.842376022],[-71.371467475,41.842333226],[-71.371478081,41.842290473],[-71.371487827,41.842249755],[-71.371497569,41.842210432],[-71.37151009,41.842173833],[-71.37152539,41.84213861],[-71.371544416,41.842106112],[-71.371565277,41.842073616],[-71.371585247,41.842043178],[-71.371604295,41.842014842],[-71.371620617,41.841988561],[-71.371637882,41.841965026],[-71.371656063,41.8419422],[-71.371673357,41.841919351],[-71.371688756,41.841895837],[-71.371704161,41.841869578],[-71.371717703,41.841841945],[-71.371730329,41.841813625],[-71.371742926,41.841784618],[-71.371754606,41.841754925],[-71.371766287,41.841725232],[-71.371777047,41.84169691],[-71.371787808,41.841667924],[-71.371796734,41.841639623],[-71.37180474,41.841612007],[-71.371812773,41.841586471],[-71.371820806,41.841560936],[-71.371828868,41.841536087],[-71.371837814,41.841512611],[-71.371845874,41.841489134],[-71.371853934,41.841464971],[-71.371862911,41.841441495],[-71.371871857,41.841418018],[-71.371882672,41.84139315],[-71.371893487,41.841367594],[-71.371904246,41.841339981],[-71.371914089,41.841311658],[-71.371923934,41.841281963],[-71.371935587,41.841250897],[-71.371947241,41.841219146],[-71.371958896,41.841186685],[-71.371971469,41.841154249],[-71.371984012,41.841121103],[-71.371996618,41.841087272],[-71.372010109,41.841054104],[-71.372022656,41.841019587],[-71.372035199,41.840986464],[-71.372045935,41.840954689],[-71.372057617,41.840924309],[-71.372067461,41.840895323],[-71.372076383,41.840868394],[-71.372083522,41.840846311],[-71.372090714,41.840828344],[-71.372097957,41.840815225],[-71.372105226,41.840804851],[-71.372121649,41.840788907],[-71.372128919,41.840777847],[-71.372137943,41.840761254],[-71.372146945,41.840740545],[-71.372157759,41.840715676],[-71.372170382,41.840688728],[-71.372184813,41.840659701],[-71.37220203,41.840629282],[-71.372220135,41.840598178],[-71.37223916,41.840565703],[-71.372259103,41.840533183],[-71.372279019,41.840498628],[-71.372298019,41.840463386],[-71.372315152,41.840428827],[-71.372332314,41.840394978],[-71.372348557,41.8403625],[-71.37236391,41.840330729],[-71.372377428,41.840299643],[-71.372390944,41.840269243],[-71.372405347,41.840238867],[-71.372418863,41.840208466],[-71.37243238,41.840178066],[-71.372444978,41.840147688],[-71.372456658,41.840117994],[-71.372467391,41.840087614],[-71.372477209,41.840056546],[-71.372487027,41.840024793],[-71.372497763,41.83999304],[-71.372509418,41.839960603],[-71.372521988,41.839928829],[-71.372534559,41.839897079],[-71.37254713,41.839865305],[-71.372557866,41.839833553],[-71.372567655,41.839801113],[-71.372578392,41.839768674],[-71.372590047,41.839736214],[-71.372600755,41.839703089],[-71.372612411,41.839669942],[-71.372624983,41.839637483],[-71.37263847,41.839606419],[-71.372652013,41.839577391],[-71.372664606,41.839549757],[-71.372677229,41.839522832],[-71.372688016,41.839495882],[-71.372697883,41.839470348],[-71.372706836,41.839443419],[-71.372713037,41.839415824],[-71.372717313,41.83938754],[-71.372717981,41.839359298],[-71.372716783,41.839331054],[-71.372714636,41.839303495],[-71.372710687,41.839274584],[-71.372705761,41.839244987],[-71.372699028,41.839216783],[-71.372689542,41.839188575],[-71.372677301,41.839162468],[-71.372661359,41.83913638],[-71.372641772,41.839113056],[-71.372638634,41.839110304],[-71.372635509,41.839108544],[-71.37263565,41.839107687],[-71.372617594,41.839091852],[-71.372590689,41.839073391],[-71.37256014,41.839057028],[-71.372526831,41.839044825],[-71.372490825,41.839036072],[-71.37245206,41.839030106],[-71.372408678,41.839024135],[-71.372359818,41.839019599],[-71.372306311,41.83901508],[-71.372250081,41.839011244],[-71.372192931,41.839008116],[-71.372136696,41.839006384],[-71.372081378,41.839005316],[-71.372027066,41.839005645],[-71.37196991,41.839005947],[-71.371911867,41.839006271],[-71.371849236,41.839006635],[-71.37178563,41.839005604],[-71.371722056,41.839003909],[-71.371658453,41.839001506],[-71.37159118,41.838999144],[-71.371522069,41.838998152],[-71.371452956,41.838998555],[-71.37138479,41.838998936],[-71.371317542,41.838999318],[-71.371250293,41.839000386],[-71.371187632,41.83900075],[-71.371126837,41.839001093],[-71.371068794,41.839001417],[-71.37100983,41.839003135],[-71.370951812,41.839006225],[-71.370892907,41.839009315],[-71.37083486,41.839011697],[-71.370777764,41.839012707],[-71.37072339,41.839013035],[-71.3706718,41.83901332],[-71.370623908,41.839014272],[-71.370580604,41.839015207],[-71.370544698,41.839017499],[-71.370517104,41.839022453],[-71.370495071,41.839029472],[-71.370472145,41.839039943],[-71.370446467,41.839050433],[-71.370412445,41.839058193],[-71.370369166,41.839061895],[-71.370315742,41.839061491],[-71.370256729,41.839057697],[-71.370194044,41.83905463],[-71.370127688,41.839052246],[-71.370057632,41.83904988],[-71.369986659,41.839047535],[-71.36991755,41.839045856],[-71.369850303,41.839045551],[-71.369783027,41.839044538],[-71.369720371,41.839042843],[-71.369659521,41.839039732],[-71.369597755,41.839035935],[-71.369536932,41.839034905],[-71.36947797,41.839035913],[-71.369420842,41.839037632],[-71.369369251,41.839037916],[-71.369322248,41.839038206],[-71.369278028,41.83903843],[-71.369238396,41.839037973],[-71.369202466,41.839036812],[-71.36917204,41.839035588],[-71.369147151,41.839033661],[-71.369126853,41.839030322],[-71.369109307,41.8390263],[-71.369094516,41.83902155],[-71.369080641,41.839017509],[-71.369066794,41.839014131],[-71.369040043,41.839010831],[-71.369019769,41.839010259],[-71.369001328,41.839010375],[-71.368985671,41.839010449],[-71.368966344,41.839010564],[-71.368936808,41.839007969],[-71.368920236,41.839006692],[-71.368901769,41.839004727],[-71.368884249,41.839003449],[-71.368869785,41.839002861],[-71.368849237,41.83900158],[-71.368830797,41.839001673],[-71.368813304,41.83900179],[-71.368795812,41.839001885],[-71.368780124,41.839001981],[-71.368759849,41.839002095],[-71.368741439,41.839002189],[-71.368730215,41.839002244],[-71.368723916,41.839002283],[-71.368707342,41.839001692],[-71.368691655,41.839001103],[-71.368655727,41.838999232],[-71.368639147,41.839001408],[-71.368615281,41.839007739],[-71.368601509,41.839013326],[-71.368586842,41.839022365],[-71.368572259,41.839035543],[-71.368557671,41.83905078],[-71.368542192,41.839068097],[-71.368527599,41.839086078],[-71.3685149,41.83910477],[-71.368505871,41.83912342],[-71.368500541,41.839142738],[-71.368499827,41.839162724],[-71.368505566,41.839182672],[-71.368515003,41.839203974],[-71.368528106,41.839226629],[-71.368544019,41.839251345],[-71.368560875,41.839278121],[-71.368574059,41.839306287],[-71.368584517,41.839336554],[-71.368588518,41.839368918],[-71.368587013,41.839402007],[-71.368580001,41.839436485],[-71.368569289,41.839470295],[-71.368556715,41.839502754],[-71.368545059,41.839535237],[-71.368534321,41.839566989],[-71.368524501,41.839598743],[-71.368517435,41.839629081],[-71.368512208,41.839658027],[-71.36850879,41.83968423],[-71.36850351,41.839709105],[-71.368492699,41.839731893],[-71.36847632,41.839755406],[-71.368457223,41.839777544],[-71.368438986,41.839797625],[-71.368424423,41.839815651],[-71.368411696,41.839832925],[-71.368398973,41.839848827],[-71.368384357,41.839862738],[-71.368366045,41.839874517],[-71.368344982,41.839885675],[-71.368320219,41.83989683],[-71.368294537,41.839908715],[-71.368267938,41.839920576],[-71.368242281,41.83993516],[-71.36821757,41.839950476],[-71.368192856,41.839967828],[-71.368167253,41.83998591],[-71.368138867,41.84000399],[-71.368109565,41.840021359],[-71.368083043,41.840040127],[-71.368054683,41.840060264],[-71.368026294,41.840079716],[-71.367995124,41.840098501],[-71.367962153,41.840115203],[-71.367927288,41.840131262],[-71.367889704,41.840145923],[-71.367851139,41.840162001],[-71.36781444,41.840177373],[-71.367779577,41.840192037],[-71.367748361,41.84020323],[-71.367721709,41.840210974],[-71.367698705,41.840214515],[-71.367679374,41.840216002],[-71.367660964,41.840216118],[-71.367644358,41.840216236],[-71.367627785,41.840214914],[-71.367612098,41.840214347],[-71.367593659,41.840213754],[-71.367572469,41.840212472],[-71.367546661,41.840211253],[-71.367518071,41.840209345],[-71.367485809,41.840208827],[-71.367450823,41.840209015],[-71.36741489,41.840209225],[-71.367378955,41.840210122],[-71.367345829,41.840213056],[-71.367316396,41.840219425],[-71.367292552,41.840229895],[-71.367273344,41.840245858],[-71.367258834,41.840268001],[-71.367247128,41.84029424],[-71.367236363,41.840323934],[-71.367227488,41.840356351],[-71.367220447,41.840389457],[-71.367213433,41.840424644],[-71.367204582,41.840460514],[-71.367195729,41.840497117],[-71.367186877,41.840533696],[-71.367178944,41.840568859],[-71.367172822,41.840601257],[-71.367167593,41.840630934],[-71.36716145,41.84065853],[-71.36715525,41.840684044],[-71.367146273,41.84070681],[-71.367135432,41.840728958],[-71.367121811,41.840749707],[-71.367107275,41.840769059],[-71.367091766,41.840785713],[-71.367071619,41.840797535],[-71.367046832,41.840805213],[-71.367017401,41.840810919],[-71.366987053,41.840815915],[-71.366953923,41.840820931],[-71.366919904,41.840826609],[-71.3668868,41.840833705],[-71.366852779,41.840840801],[-71.366819675,41.840847875],[-71.366788411,41.840852183],[-71.366759845,41.840853728],[-71.366734952,41.84085315],[-71.366720157,41.840850252],[-71.366710956,41.840848457],[-71.366690634,41.840841002],[-71.366672954,41.840827992],[-71.366663601,41.840810829],[-71.366663372,41.840788784],[-71.366668624,41.840763268],[-71.366675715,41.840735674],[-71.366680972,41.840707392],[-71.366684366,41.840678421],[-71.366684978,41.840648807],[-71.366686536,41.840619857],[-71.366688066,41.840590221],[-71.366694269,41.840563312],[-71.366704137,41.840538443],[-71.366717757,41.84051838],[-71.366736018,41.840501753],[-71.366756165,41.84048993],[-71.366777259,41.840478772],[-71.366794624,41.840466283],[-71.366804623,41.840452459],[-71.366804497,41.840439355],[-71.366795163,41.840427704],[-71.366779403,41.84041815],[-71.366759969,41.840410672],[-71.366738729,41.840403901],[-71.366717432,41.840395072],[-71.366698894,41.84038277],[-71.366686726,41.840366313],[-71.366685607,41.840345639],[-71.366692751,41.840322161],[-71.366701702,41.840297313],[-71.366706066,41.840271797],[-71.366704841,41.840243553],[-71.36669533,41.840213995],[-71.366683068,41.840183749],[-71.366667995,41.840152813],[-71.366654788,41.840121193],[-71.366648004,41.840089535],[-71.366648619,41.840058526],[-71.366649233,41.840027517],[-71.366646148,41.839996549],[-71.366637555,41.83996697],[-71.366621621,41.839938114],[-71.366601067,41.839909985],[-71.366577731,41.839881875],[-71.366550756,41.839853761],[-71.36652372,41.839824984],[-71.366496717,41.839795521],[-71.366471519,41.839766037],[-71.366447271,41.839735159],[-71.36642391,41.839704282],[-71.366401497,41.839673406],[-71.366380001,41.839642508],[-71.366360367,41.839613694],[-71.36634073,41.839586252],[-71.366322957,41.839559475],[-71.366304293,41.839534778],[-71.366283762,41.839510788],[-71.366261426,41.839486795],[-71.366237252,41.839464882],[-71.366209375,41.839443673],[-71.366176938,41.839424563],[-71.366139938,41.839408237],[-71.366100181,41.839394676],[-71.366059531,41.839383903],[-71.366020765,41.839378598],[-71.365983942,41.839380156],[-71.365947169,41.839387248],[-71.36590761,41.839395754],[-71.365868082,41.839404238],[-71.365826694,41.839409976],[-71.365785251,41.839412283],[-71.365742869,41.839411136],[-71.365701321,41.839405187],[-71.3656607,41.839395077],[-71.365618186,41.839383593],[-71.365574784,41.839372817],[-71.365530462,41.839362726],[-71.365488891,41.83935401],[-71.365451993,41.839347335],[-71.365422485,41.839346111],[-71.365396752,41.839353147],[-71.365371988,41.839364301],[-71.365345392,41.839374789],[-71.365315961,41.839380472],[-71.365286453,41.839379271],[-71.365257815,41.839371165],[-71.365231881,41.839357528],[-71.365204059,41.839339772],[-71.365173458,41.839319955],[-71.36514194,41.839300159],[-71.365108586,41.839281048],[-71.365076147,41.839262623],[-71.365043711,41.839243513],[-71.36501219,41.839225089],[-71.364981614,41.839208039],[-71.364952008,41.839195129],[-71.364922425,41.839186336],[-71.36489106,41.839180993],[-71.364858748,41.839174964],[-71.364827328,41.839166877],[-71.364797747,41.839156711],[-71.364771816,41.839141702],[-71.364746746,41.839123926],[-71.364717063,41.83910411],[-71.364682764,41.839083648],[-71.364643875,41.839064575],[-71.364603148,41.839046896],[-71.364561534,41.839029192],[-71.36452267,41.839012887],[-71.364488397,41.838994483],[-71.364457771,41.838972607],[-71.364427092,41.838946592],[-71.364397336,41.838917811],[-71.364365688,41.838887679],[-71.364334042,41.838856174],[-71.364305176,41.838826022],[-71.364275422,41.838796555],[-71.364243828,41.838769853],[-71.364209478,41.838744565],[-71.36417329,41.838720625],[-71.364133461,41.838698144],[-71.364092685,41.838674907],[-71.364051908,41.838651738],[-71.364012053,41.83862713],[-71.363976758,41.838600469],[-71.363944218,41.838572394],[-71.363908927,41.838544361],[-71.363870912,41.838517011],[-71.363831917,41.838490345],[-71.363792037,41.838463016],[-71.363753045,41.838434978],[-71.363713137,41.838406277],[-71.363671396,41.838376887],[-71.363626899,41.838348888],[-71.363580564,41.838322969],[-71.363532421,41.838298442],[-71.363485165,41.838273894],[-71.363437941,41.838248659],[-71.363389772,41.838222074],[-71.363341573,41.838195467],[-71.363295267,41.838170233],[-71.36325263,41.838144981],[-71.36321183,41.838119023],[-71.36317192,41.838091693],[-71.363132962,41.838062283],[-71.36309486,41.838032874],[-71.36305587,41.838004151],[-71.3630188,41.837978859],[-71.3629845,41.837959083],[-71.362953924,41.837942718],[-71.362927938,41.837924941],[-71.362907466,41.837903009],[-71.362894282,41.837876214],[-71.362881076,41.83784528],[-71.362864147,41.837810934],[-71.362846301,41.837775878],[-71.362826618,41.837742214],[-71.362808769,41.837709262],[-71.362791866,41.837676974],[-71.362777715,41.837644667],[-71.362764512,41.837612338],[-71.362752198,41.837579347],[-71.362741717,41.837547021],[-71.362729434,41.837513321],[-71.362710692,41.837483112],[-71.362685551,41.837456394],[-71.3626549,41.837432437],[-71.36261693,41.837413365],[-71.362574425,41.837398449],[-71.362529157,41.837388378],[-71.362483003,41.837378284],[-71.362437711,41.837365446],[-71.362396986,41.837347766],[-71.362359911,41.837324555],[-71.362324649,41.837297871],[-71.362290276,41.837269816],[-71.36225682,41.837241762],[-71.362225229,41.837214373],[-71.362196417,41.83718836],[-71.362173082,41.837160935],[-71.362158068,41.83713208],[-71.362149451,41.837100419],[-71.362146345,41.837065998],[-71.362144128,41.837030183],[-71.362140078,41.83699368],[-71.362132359,41.836957218],[-71.362121855,41.836921439],[-71.362110463,41.836886368],[-71.362100904,41.836851985],[-71.36209318,41.836817558],[-71.362085457,41.836782468],[-71.362077738,41.836745984],[-71.362070908,41.836708151],[-71.362065913,41.836670274],[-71.362065536,41.836632381],[-71.362065156,41.836595859],[-71.362062942,41.836558672],[-71.362058815,41.836515285],[-71.362052858,41.836469838],[-71.362045954,41.836423727],[-71.362040855,41.836377594],[-71.362038566,41.836332815],[-71.362038138,41.836290096],[-71.362036846,41.836250829],[-71.362033713,41.83621435],[-71.362026907,41.836179924],[-71.362018293,41.836146914],[-71.36200784,41.836115938],[-71.361993743,41.83608777],[-71.36197689,41.836060993],[-71.361964654,41.836034199],[-71.361961624,41.836007348],[-71.361971468,41.835979711],[-71.361987796,41.83595206],[-71.362006845,41.835924389],[-71.362026842,41.835896719],[-71.362046812,41.835867677],[-71.362065865,41.835837948],[-71.362084026,41.835810985],[-71.362099458,41.835787471],[-71.362110319,41.835770859],[-71.362119458,41.835758406],[-71.36211298,41.835756386],[-71.362112856,41.835742596],[-71.362117291,41.835728103],[-71.362124514,41.835710846],[-71.36212893,41.835690841],[-71.362129718,41.835679796],[-71.362132372,41.835668777],[-71.362135869,41.835649457],[-71.362114433,41.83562064],[-71.362091992,41.835590449],[-71.362072433,41.835570576],[-71.362056547,41.835549312],[-71.362044361,41.835528029],[-71.362036793,41.835506707],[-71.362031976,41.835485364],[-71.362028074,41.835465418],[-71.362024173,41.835445449],[-71.362023997,41.835427543],[-71.362023851,41.835410323],[-71.362025536,41.835394477],[-71.36202816,41.835382748],[-71.36206158,41.835355895],[-71.362060326,41.835341692],[-71.362058241,41.835330209],[-71.362052435,41.835314057],[-71.362041015,41.835291861],[-71.362023183,41.835265723],[-71.362001686,41.835236929],[-71.361978298,41.83520612],[-71.361952221,41.835174667],[-71.36192786,41.835141158],[-71.361908028,41.835106236],[-71.36189269,41.835071938],[-71.361884572,41.835036185],[-71.362072336,41.834932152],[-71.362085948,41.834944129],[-71.362104416,41.834959427],[-71.362122883,41.834974748],[-71.362138657,41.834991461],[-71.362153543,41.835008173],[-71.362166626,41.835024906],[-71.362177875,41.835040996],[-71.362189983,41.835055715],[-71.362202093,41.835069771],[-71.362213287,41.83508314],[-71.362222647,41.835095866],[-71.362230231,41.835109985],[-71.362236868,41.835123417],[-71.362240787,41.835135542],[-71.362242874,41.835146338],[-71.362243324,41.835164611],[-71.362243604,41.8351768],[-71.362243943,41.83518963],[-71.36224425,41.835203169],[-71.362244559,41.835216021],[-71.362244813,41.835226175],[-71.36223782,41.835235749],[-71.362227526,41.835258879],[-71.362222449,41.835273829],[-71.362215625,41.835290172],[-71.362207883,41.8353072],[-71.362201058,41.835324206],[-71.362194231,41.835341898],[-71.362187435,41.835359591],[-71.362182444,41.835377239],[-71.362180143,41.835394868],[-71.362180593,41.835413118],[-71.362183794,41.835432034],[-71.362192348,41.835450179],[-71.36220543,41.835466935],[-71.362226621,41.835481527],[-71.362251277,41.835491345],[-71.362279431,41.835495678],[-71.362304667,41.835491958],[-71.362327903,41.835479476],[-71.362345526,41.835460951],[-71.362357653,41.835438463],[-71.362367919,41.83541396],[-71.362380905,41.835390101],[-71.362400278,41.835368193],[-71.362428815,41.83535087],[-71.362464711,41.835338198],[-71.362504383,41.83533294],[-71.362544171,41.835331043],[-71.362583928,41.835329147],[-71.362619909,41.83531986],[-71.362649303,41.835301852],[-71.362670395,41.835276538],[-71.36268413,41.835245888],[-71.362696891,41.835212561],[-71.362711486,41.835179899],[-71.362727941,41.835149892],[-71.362742675,41.835123291],[-71.362750221,41.835098167],[-71.362743328,41.835075244],[-71.362721139,41.835055917],[-71.36268726,41.835040143],[-71.362644473,41.835029229],[-71.362597133,41.835017006],[-71.362550622,41.835002772],[-71.362506864,41.834988472],[-71.362470322,41.83497409],[-71.3624473,41.834958146],[-71.362436883,41.834938672],[-71.36243632,41.834916352],[-71.362443894,41.834891891],[-71.362462321,41.834869296],[-71.362494438,41.834850583],[-71.362538468,41.834837806],[-71.362588968,41.834831029],[-71.362641445,41.834829651],[-71.362691252,41.834832363],[-71.362740201,41.834835737],[-71.362785541,41.834839862],[-71.362828243,41.834847391],[-71.36286473,41.834859075],[-71.362894167,41.834878297],[-71.362916438,41.834902358],[-71.362940602,41.834927749],[-71.362966512,41.834951746],[-71.362995948,41.834971654],[-71.363030713,41.834987406],[-71.363072643,41.834999028],[-71.363119927,41.835009215],[-71.363169045,41.835019381],[-71.36321819,41.83503156],[-71.363268253,41.83504374],[-71.363320121,41.835055213],[-71.363371042,41.835066045],[-71.363421965,41.835076168],[-71.363473746,41.835085605],[-71.363527363,41.835094359],[-71.36358098,41.83510309],[-71.363634537,41.835111158],[-71.363688095,41.835118562],[-71.363738908,41.835123288],[-71.363787771,41.835123963],[-71.363835719,41.835123997],[-71.363883725,41.835125357],[-71.363929981,41.835130146],[-71.363973601,41.835137676],[-71.364015531,41.835149274],[-71.364057516,41.835163594],[-71.364099499,41.835179263],[-71.364139708,41.835194952],[-71.364177193,41.835211348],[-71.364211071,41.83522783],[-71.364240424,41.835243644],[-71.364265193,41.835258195],[-71.364286354,41.835272124],[-71.364302045,41.835284766],[-71.364313126,41.835294087],[-71.364334371,41.835312064],[-71.364414192,41.83533633],[-71.364415852,41.835346623],[-71.364418013,41.835380357],[-71.364423902,41.835415467],[-71.364436184,41.835449853],[-71.364454949,41.835483515],[-71.364476498,41.835517158],[-71.364495261,41.835552169],[-71.364510379,41.835589988],[-71.364523661,41.835628492],[-71.364535136,41.835668388],[-71.364547499,41.8357076],[-71.364561698,41.835746104],[-71.364579568,41.835783904],[-71.364598387,41.835821683],[-71.364619956,41.83586015],[-71.364644309,41.835897912],[-71.364669578,41.835936338],[-71.36469482,41.835973415],[-71.364720951,41.836009098],[-71.364748006,41.836042038],[-71.364775955,41.836071503],[-71.364803848,41.836098223],[-71.36483083,41.836122176],[-71.364856839,41.83614336],[-71.364880986,41.836163215],[-71.364902351,41.836182404],[-71.364921911,41.836202277],[-71.364940551,41.836222835],[-71.364958246,41.836242729],[-71.364973217,41.836263305],[-71.364980788,41.836283942],[-71.364978235,41.836305321],[-71.364969229,41.836327402],[-71.36496028,41.836351563],[-71.364958694,41.836378455],[-71.364962669,41.836408051],[-71.364964837,41.836438355],[-71.36496514,41.836468679],[-71.364961748,41.836496941],[-71.364956462,41.836523851],[-71.364950265,41.836547993],[-71.364942202,41.836572156],[-71.364932334,41.836597025],[-71.364920629,41.836622578],[-71.364905224,41.83664815],[-71.364885204,41.836673076],[-71.364859649,41.836697333],[-71.364833173,41.836723669],[-71.364805864,41.836753435],[-71.364779438,41.836784597],[-71.364755823,41.836817111],[-71.364734016,41.836848232],[-71.364714019,41.836875903],[-71.364694001,41.836899456],[-71.364672066,41.836918183],[-71.364650107,41.836934142],[-71.364629068,41.83694873],[-71.36461818,41.836963948],[-71.364620219,41.836983229],[-71.364636102,41.837006574],[-71.364655736,41.837034702],[-71.364672641,41.837066304],[-71.364685899,41.837102063],[-71.364697348,41.837139878],[-71.364707846,41.83717911],[-71.36472024,41.837218299],[-71.364731687,41.837256823],[-71.364743104,41.837295347],[-71.364753637,41.837332498],[-71.364762276,41.837368961],[-71.364768167,41.837403362],[-71.364769413,41.837435746],[-71.364765128,41.837466774],[-71.36475806,41.837497821],[-71.364748238,41.837529574],[-71.36474028,41.837561992],[-71.364734157,41.837594413],[-71.364730789,41.837625441],[-71.364729231,41.837653705],[-71.364729455,41.837677809],[-71.364729687,41.837698482],[-71.364730747,41.837717762],[-71.364730982,41.837737063],[-71.364732992,41.837755635],[-71.364736867,41.837774232],[-71.36474622,41.837790708],[-71.364762946,41.837805775],[-71.364787992,41.837820098],[-71.364819432,41.83783301],[-71.364857358,41.837844512],[-71.364899811,41.83785531],[-71.364942355,41.837866771],[-71.364982998,41.837880334],[-71.365021862,41.83789664],[-71.365060781,41.837915712],[-71.365097799,41.837937549],[-71.36513307,41.83796078],[-71.365169253,41.837986755],[-71.365206384,41.838012755],[-71.365245323,41.838037338],[-71.365286095,41.83806261],[-71.365328762,41.838087861],[-71.365373206,41.838112406],[-71.365421355,41.838134187],[-71.365472233,41.838152496],[-71.365523058,41.838166688],[-71.365572911,41.838178113],[-71.365621875,41.838190244],[-71.365668054,41.838203768],[-71.365710643,41.838222799],[-71.365749582,41.838247405],[-71.365787656,41.838276127],[-71.365823864,41.838304847],[-71.365861022,41.838332881],[-71.365896288,41.838358878],[-71.365930585,41.838380735],[-71.365963942,41.838398451],[-71.365999056,41.838409286],[-71.366036848,41.838411823],[-71.366078265,41.838406772],[-71.366122383,41.838396875],[-71.366170202,41.838386274],[-71.366218935,41.838377732],[-71.366270474,41.838372601],[-71.366323901,41.838370948],[-71.366380109,41.838370625],[-71.366438176,41.838373048],[-71.366498103,41.838378217],[-71.366558057,41.838385468],[-71.366617122,41.838393403],[-71.366675267,41.838402709],[-71.36672971,41.838412743],[-71.366779592,41.838424876],[-71.366823967,41.838438397],[-71.366863695,41.838451249],[-71.366903398,41.838461358],[-71.366944027,41.838467328],[-71.36698641,41.838468474],[-71.367030608,41.838464089],[-71.367074724,41.838454901],[-71.367119734,41.838442238],[-71.367166582,41.838428183],[-71.367214346,41.838414837],[-71.367262142,41.838400782],[-71.367308042,41.838386725],[-71.367351218,41.838373397],[-71.367391641,41.838360797],[-71.367430223,41.83835094],[-71.367468888,41.838345885],[-71.36750849,41.838345656],[-71.367547204,41.838346135],[-71.367587753,41.838346593],[-71.367629215,41.838349111],[-71.367671674,41.838357164],[-71.367715079,41.838366544],[-71.367758511,41.838378006],[-71.367799156,41.838390882],[-71.367838889,41.838401676],[-71.367878596,41.838409725],[-71.367916416,41.838413634],[-71.367952349,41.838413446],[-71.367988279,41.838414608],[-71.368023346,41.838418536],[-71.368056574,41.838425252],[-71.368087075,41.838434023],[-71.368116653,41.838445583],[-71.36814532,41.838454374],[-71.368174823,41.838457655],[-71.368204277,41.838455425],[-71.368233733,41.8384518],[-71.368263243,41.838452337],[-71.368291879,41.838461128],[-71.368321511,41.838476119],[-71.368353034,41.838493855],[-71.368386336,41.838508826],[-71.368420558,41.838522404],[-71.368455675,41.838532529],[-71.368491656,41.838538539],[-71.368526696,41.838541095],[-71.36855804,41.838541611],[-71.368584764,41.838543517],[-71.368605116,41.838550309],[-71.368619066,41.838562628],[-71.36862845,41.83857979],[-71.368635077,41.838599053],[-71.368638955,41.838616941],[-71.368640969,41.838634163],[-71.368641121,41.838649303],[-71.368641278,41.838662407],[-71.368642317,41.838677547],[-71.368645149,41.838683747],[-71.368656295,41.838691261],[-71.368666473,41.838693948],[-71.368678458,41.838695266],[-71.368704238,41.838695112],[-71.368718978,41.838695015],[-71.368738183,41.838694922],[-71.368762281,41.83869479],[-71.368784391,41.838694655],[-71.36880742,41.838693835],[-71.368825829,41.838693742],[-71.368842435,41.838693646],[-71.368862681,41.838692846],[-71.368870603,41.838692009],[-71.368876537,41.838691375],[-71.368893034,41.838684396],[-71.368907647,41.838671904],[-71.368925908,41.83865459],[-71.368935929,41.838644197],[-71.368948708,41.838631039],[-71.368961432,41.838615114],[-71.368971353,41.838593697],[-71.368979388,41.838567476],[-71.368987369,41.838537802],[-71.368995351,41.838507442],[-71.369000582,41.838476415],[-71.36900395,41.838444677],[-71.369003616,41.83841369],[-71.369003283,41.838381993],[-71.369002954,41.838348239],[-71.369002571,41.838311031],[-71.369004027,41.838271745],[-71.369005457,41.8382304],[-71.369006858,41.838188369],[-71.369008289,41.838146338],[-71.369009718,41.838105679],[-71.369013009,41.838066372],[-71.369015382,41.838027109],[-71.369018698,41.837990569],[-71.369022955,41.83795746],[-71.36903002,41.837927098],[-71.369040782,41.837898113],[-71.369053378,41.837869793],[-71.369063251,41.837842179],[-71.369071259,41.837813877],[-71.369080184,41.837786262],[-71.369092835,41.837760709],[-71.369111958,41.837740607],[-71.36913764,41.837728058],[-71.369167959,41.837721003],[-71.369201089,41.837715301],[-71.36923697,41.837710288],[-71.369273792,41.837708683],[-71.36931159,41.837708475],[-71.369348438,41.837708974],[-71.369385314,41.837710823],[-71.369422161,41.837711985],[-71.369459039,41.837712462],[-71.36949678,41.837710195],[-71.369536333,41.837703768],[-71.369578612,41.837695263],[-71.369624593,41.837686031],[-71.369670575,41.837676135],[-71.369716503,41.837662786],[-71.369758735,41.837647375],[-71.369797214,41.837627866],[-71.369831997,41.837606317],[-71.36986495,41.837582022],[-71.36989601,41.837556353],[-71.369927959,41.837529976],[-71.369960858,41.837502251],[-71.369994679,41.837472423],[-71.370025657,41.837441928],[-71.370056698,41.837410748],[-71.370084955,41.837379587],[-71.370111349,41.837347738],[-71.370136826,41.837315888],[-71.370160439,41.837282686],[-71.370184027,41.837247427],[-71.37020578,41.837211479],[-71.370229372,41.837174138],[-71.370252934,41.837136111],[-71.370274634,41.83709671],[-71.370296364,41.837057309],[-71.370317146,41.837017907],[-71.370337011,41.836978527],[-71.370355956,41.836939832],[-71.370372153,41.836899784],[-71.370387403,41.83685905],[-71.37039987,41.836818335],[-71.370408696,41.836778325],[-71.37041196,41.836736959],[-71.370411525,41.836694949],[-71.370407392,41.83665154],[-71.370400481,41.836606115],[-71.370390818,41.83656071],[-71.370376508,41.836514613],[-71.370358559,41.836468558],[-71.37033874,41.836424582],[-71.370317118,41.836380605],[-71.370295493,41.836337313],[-71.370276677,41.836296768],[-71.370257853,41.836260363],[-71.37023911,41.836228783],[-71.370215805,41.836199942],[-71.370190659,41.836174598],[-71.370161841,41.836150645],[-71.370133051,41.836127378],[-71.37010426,41.83610482],[-71.370078252,41.836082219],[-71.370054969,41.836058227],[-71.370036304,41.83603353],[-71.370023144,41.836008817],[-71.37001552,41.835983356],[-71.370014319,41.835957193],[-71.370019573,41.835929596],[-71.370027581,41.835901294],[-71.370036507,41.835873015],[-71.370049103,41.835843987],[-71.370066316,41.835814963],[-71.370083501,41.83578523],[-71.370100715,41.835756207],[-71.3701975,41.835573756],[-71.370210192,41.835557831],[-71.370225672,41.835539142],[-71.370242015,41.835517],[-71.370260228,41.83549278],[-71.370279272,41.835465817],[-71.370300186,41.835436751],[-71.370321991,41.835405629],[-71.370346552,41.835372406],[-71.370372002,41.835337811],[-71.370397423,41.835302531],[-71.370531193,41.835035965],[-71.370538382,41.835034509],[-71.370544658,41.83503104],[-71.370551706,41.835023502],[-71.370560531,41.835014593],[-71.370571104,41.835002942],[-71.370583425,41.834989234],[-71.370598468,41.834974821],[-71.370614369,41.834959723],[-71.370630271,41.834943939],[-71.370646202,41.834928841],[-71.370662991,41.834913034],[-71.370678895,41.834896587],[-71.370694739,41.834879453],[-71.370711503,41.834860948],[-71.370727319,41.834842466],[-71.370743165,41.834823983],[-71.370760785,41.834805456],[-71.370777549,41.834786974],[-71.370795198,41.834769111],[-71.370813736,41.834750608],[-71.370834108,41.834732062],[-71.370853535,41.834712165],[-71.370874735,41.834692247],[-71.370895938,41.83467098],[-71.370917171,41.834650377],[-71.370940148,41.834629089],[-71.370965877,41.834607759],[-71.370992493,41.834586429],[-71.371020914,41.834564393],[-71.371050253,41.834542312],[-71.371081365,41.834520256],[-71.371113424,41.834498818],[-71.371147257,41.834476719],[-71.371181981,41.834453226],[-71.371216673,41.834429733],[-71.371252257,41.834404229],[-71.371286922,41.834379387],[-71.371322476,41.834353196],[-71.371357142,41.834327668],[-71.371392695,41.834302141],[-71.371428307,41.834277299],[-71.371463001,41.834253143],[-71.371498611,41.834229651],[-71.371536085,41.834206802],[-71.371575332,41.834183931],[-71.371615497,41.834161062],[-71.371654715,41.834137505],[-71.371694881,41.834113949],[-71.371735904,41.834090395],[-71.371780594,41.834067439],[-71.371826199,41.834045833],[-71.371872749,41.834025578],[-71.371920245,41.83400665],[-71.371964989,41.833987101],[-71.372008849,41.833966866],[-71.372050874,41.833945988],[-71.372091953,41.833924445],[-71.3721312,41.833901598],[-71.372168645,41.833878062],[-71.372205141,41.833854548],[-71.372240751,41.833830392],[-71.372277278,41.833806878],[-71.372314749,41.8337854],[-71.372353165,41.833765227],[-71.372391551,41.833744414],[-71.372431745,41.833722207],[-71.372474629,41.833699958],[-71.372520204,41.833677689],[-71.372566728,41.833655398],[-71.372612303,41.833633106],[-71.37265791,41.83361015],[-71.372704375,41.83358651],[-71.372749035,41.83356289],[-71.372792809,41.833539293],[-71.372836522,41.833515009],[-71.372878462,41.833490746],[-71.372916765,41.833465861],[-71.372951401,41.833439669],[-71.372984234,41.833412835],[-71.373014316,41.833385357],[-71.373043452,41.833356529],[-71.373071704,41.833327037],[-71.373098979,41.833296217],[-71.373124512,41.833265419],[-71.373149067,41.833233956],[-71.373172734,41.833203178],[-71.373194598,41.833171758],[-71.373215515,41.833139673],[-71.37323735,41.833107567],[-71.373260073,41.833074775],[-71.373285517,41.833042604],[-71.373311018,41.833011806],[-71.373334742,41.832983063],[-71.373354827,41.832954385],[-71.373370445,41.832927097],[-71.373382426,41.832899188],[-71.373391715,41.832871321],[-71.373400974,41.832843431],[-71.37341115,41.832815566],[-71.373422214,41.832786992],[-71.373435999,41.832759039],[-71.373451589,41.832730425],[-71.373468095,41.832702452],[-71.373485517,41.832675143],[-71.373505717,41.832649827],[-71.373527721,41.832625153],[-71.373549724,41.832600502],[-71.373568149,41.832576579],[-71.373582018,41.83255201],[-71.373590447,41.832526178],[-71.373590741,41.832501137],[-71.373589335,41.832495977],[-71.373587509,41.832494542],[-71.373588678,41.832493566],[-71.373583759,41.832475516],[-71.373572253,41.83244861],[-71.37355983,41.832421726],[-71.373548325,41.83239482],[-71.373544065,41.83236847],[-71.373544358,41.832344115],[-71.373542876,41.832320445],[-71.373533287,41.832298252],[-71.37351734,41.832275457],[-71.373498671,41.832252705],[-71.373480921,41.832229268],[-71.373468555,41.832205082],[-71.373461601,41.832180148],[-71.373461897,41.832154421],[-71.373469408,41.83212861],[-71.373481389,41.832100701],[-71.373491563,41.832073498],[-71.37349816,41.832046338],[-71.373497508,41.832020633],[-71.373492417,41.831997004],[-71.373491879,41.831975369],[-71.373498588,41.831953629],[-71.373503463,41.831931223],[-71.373501953,41.831906203],[-71.373494056,41.831879255],[-71.37348252,41.831852349],[-71.37347282,41.831824736],[-71.373464864,41.831796415],[-71.373459689,41.831769425],[-71.373456317,41.83174239],[-71.37345389,41.831717392],[-71.373453325,41.831693722],[-71.373452757,41.831671402],[-71.37345222,41.831649082],[-71.373452599,41.831627403],[-71.373453836,41.831605061],[-71.373458742,41.831582678],[-71.373467225,41.831560231],[-71.373481152,41.831537675],[-71.373498716,41.831515786],[-71.373518085,41.83149319],[-71.373541059,41.831472565],[-71.373564124,41.831451986],[-71.373587099,41.831430675],[-71.373609188,41.831408699],[-71.373629473,41.831386768],[-71.373648812,41.831364195],[-71.373667293,41.831342261],[-71.373683051,41.831321079],[-71.373696119,41.831299917],[-71.373706465,41.831278798],[-71.373711397,41.831258427],[-71.373712719,41.831239471],[-71.373712267,41.831220535],[-71.373712759,41.83120359],[-71.373715971,41.831187334],[-71.373725512,41.831170947],[-71.373739551,41.831153194],[-71.373755395,41.831135374],[-71.373771269,41.831117554],[-71.373787112,41.831099734],[-71.373801151,41.831081934],[-71.373813414,41.831065528],[-71.373823013,41.8310512],[-71.37383181,41.831040256],[-71.373837942,41.831032075],[-71.373842294,41.831026592],[-71.373844932,41.831022478],[-71.373845763,41.831019758],[-71.373845678,41.831016373],[-71.37384651,41.831012967],[-71.373850864,41.831006843],[-71.373856997,41.830997931],[-71.373865793,41.830987672],[-71.373876308,41.830974008],[-71.3738886,41.830958265],[-71.373903527,41.830939804],[-71.373922035,41.830919928],[-71.373941431,41.830898682],[-71.37396349,41.830876706],[-71.373986467,41.830854069],[-71.374010332,41.830830723],[-71.374034139,41.830806028],[-71.374056143,41.830780691],[-71.37407448,41.830754069],[-71.374089152,41.830725431],[-71.374099272,41.830694844],[-71.374108503,41.830664942],[-71.374118648,41.830637076],[-71.37413166,41.830613192],[-71.37414925,41.830593339],[-71.374169705,41.830578176],[-71.374192963,41.830567705],[-71.374217223,41.830561283],[-71.374240654,41.830556895],[-71.374262166,41.83054848],[-71.374282647,41.830535353],[-71.3743021,41.830516805],[-71.374322355,41.830494187],[-71.374344301,41.8304675],[-71.374366306,41.830441477],[-71.374384613,41.830414169],[-71.374399343,41.830386903],[-71.374410379,41.83035698],[-71.374422272,41.830326349],[-71.374436029,41.830296406],[-71.374455225,41.83026839],[-71.37447992,41.830242347],[-71.374510087,41.830217567],[-71.374543861,41.830192746],[-71.374581215,41.830167197],[-71.374620404,41.83014094],[-71.374658617,41.830113334],[-71.374695887,41.830083737],[-71.374731352,41.830054161],[-71.374765073,41.830025268],[-71.374797817,41.829995712],[-71.374829702,41.82996755],[-71.374861586,41.829940028],[-71.374894387,41.82991253],[-71.374927188,41.829884986],[-71.374960876,41.829857466],[-71.374995482,41.829829238],[-71.375029172,41.829800369],[-71.375063721,41.829770105],[-71.375099214,41.829741878],[-71.375135594,41.829713652],[-71.375171116,41.829686088],[-71.375204803,41.829658568],[-71.375237635,41.829631047],[-71.375270434,41.829604212],[-71.375304179,41.829578704],[-71.375336178,41.829554567],[-71.375369034,41.829529767],[-71.375401004,41.829504966],[-71.375432943,41.829480166],[-71.375464942,41.829456051],[-71.375496912,41.82943125],[-71.37552888,41.829407113],[-71.375559046,41.829382356],[-71.375588265,41.829356912],[-71.375617513,41.829332154],[-71.375647677,41.82930806],[-71.375676927,41.829282616],[-71.375707063,41.82925715],[-71.37571175,41.829252719],[-71.375735337,41.829230379],[-71.375763641,41.829203607],[-71.375782245,41.829186516],[-71.37558751,41.829167542],[-71.375359509,41.829121542],[-71.37531351,41.829113541],[-71.375005509,41.829069542],[-71.374474509,41.828988542],[-71.374344509,41.828968542],[-71.373940509,41.828892542],[-71.373482509,41.828846542],[-71.373317509,41.828838541],[-71.372928509,41.829026542],[-71.372568508,41.829219542],[-71.371735508,41.829652542],[-71.370705508,41.830216542],[-71.370134507,41.830521542],[-71.368898508,41.831173543],[-71.368778508,41.831239542],[-71.367570507,41.831901542],[-71.366310506,41.832572543],[-71.366287507,41.832550543],[-71.366104507,41.832459543],[-71.365471506,41.832085543],[-71.365318506,41.831990543],[-71.364861506,41.831723543],[-71.364410506,41.831574542],[-71.363838506,41.831364543],[-71.363106506,41.831128542],[-71.362083505,41.830773542],[-71.362038505,41.830838543],[-71.361488505,41.831570542],[-71.361198504,41.831955543],[-71.360847504,41.832402543],[-71.360657505,41.832657543],[-71.360435505,41.832959543],[-71.360405505,41.833008543],[-71.360012504,41.833499543],[-71.359919504,41.833615543],[-71.359871505,41.833676543],[-71.359459505,41.834221543],[-71.359047505,41.834854543],[-71.358620505,41.835480544],[-71.358192504,41.836155543],[-71.357750504,41.836819544],[-71.357605504,41.837025544],[-71.356613504,41.838288544],[-71.356209503,41.838772544],[-71.355835503,41.839260544],[-71.355461504,41.839722544],[-71.354973504,41.840310544],[-71.355019503,41.840351544],[-71.355324504,41.840683544],[-71.355453503,41.840841545],[-71.355009504,41.841457544],[-71.354465503,41.842236544],[-71.353890503,41.843006545],[-71.352845503,41.844502545],[-71.352039502,41.845644546],[-71.352104503,41.845711545],[-71.352318503,41.845909546],[-71.352478503,41.846028546],[-71.352936503,41.846356546],[-71.353264503,41.846592546],[-71.353279503,41.846608546],[-71.353867503,41.847069546],[-71.354218503,41.847443546],[-71.354248504,41.847489546],[-71.354477503,41.847763546],[-71.354706503,41.848091546],[-71.354851504,41.848271546],[-71.355125504,41.848610546],[-71.355426503,41.848888546],[-71.355438504,41.848904546],[-71.355820504,41.849285546],[-71.356018504,41.849472546],[-71.356609505,41.850030547],[-71.356773504,41.850186547],[-71.357239504,41.850640546],[-71.357727504,41.851105547],[-71.357750505,41.851132546],[-71.358238505,41.851574547],[-71.358742505,41.852051547],[-71.359268505,41.852501547],[-71.359764506,41.852951547],[-71.360291506,41.853386547],[-71.361137506,41.854126547],[-71.361732506,41.854657547],[-71.361771506,41.854695547],[-71.361954507,41.854863547],[-71.363503507,41.856232548],[-71.363645507,41.856368548],[-71.363739507,41.856457547],[-71.364449508,41.857109548],[-71.364937508,41.857563547],[-71.365509507,41.858086548]]]]}}"}, +{"type": "precinct", "typeId": 1002, "areaId": 25759, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":98,\"NAME\":\"1002\",\"SHAPE_Length\":0.071415520848675,\"SHAPE_Area\":-0.00016494843686872},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.362083505,41.830773542],[-71.363106506,41.831128542],[-71.363838506,41.831364543],[-71.364410506,41.831574542],[-71.364861506,41.831723543],[-71.365318506,41.831990543],[-71.365471506,41.832085543],[-71.366104507,41.832459543],[-71.366287507,41.832550543],[-71.366310506,41.832572543],[-71.367570507,41.831901542],[-71.368778508,41.831239542],[-71.368898508,41.831173543],[-71.370134507,41.830521542],[-71.370705508,41.830216542],[-71.371735508,41.829652542],[-71.372568508,41.829219542],[-71.372928509,41.829026542],[-71.373317509,41.828838541],[-71.373482509,41.828846542],[-71.373940509,41.828892542],[-71.374344509,41.828968542],[-71.374474509,41.828988542],[-71.375005509,41.829069542],[-71.37531351,41.829113541],[-71.375359509,41.829121542],[-71.37558751,41.829167542],[-71.375782245,41.829186516],[-71.375792832,41.829176791],[-71.375821106,41.829149356],[-71.375850299,41.829121877],[-71.375862828,41.829109724],[-71.375878573,41.829094442],[-71.375907736,41.8290663],[-71.375938732,41.829038776],[-71.375970616,41.829010591],[-71.376003387,41.828982429],[-71.376036833,41.828953061],[-71.375902509,41.828914542],[-71.37576351,41.828873542],[-71.37548851,41.828740541],[-71.375383509,41.828664541],[-71.375484509,41.828551541],[-71.375694509,41.828315541],[-71.376218509,41.827772541],[-71.376760509,41.827244541],[-71.37701151,41.826987541],[-71.37722051,41.826793541],[-71.37785351,41.826259541],[-71.378085511,41.826102541],[-71.37821551,41.826004541],[-71.37812051,41.825955541],[-71.37799851,41.825936541],[-71.37773151,41.825920541],[-71.37769351,41.826062541],[-71.37761751,41.826153541],[-71.37749551,41.826287541],[-71.37739651,41.826352541],[-71.37715951,41.826260541],[-71.375542509,41.825707541],[-71.375359509,41.825665541],[-71.374855509,41.825581541],[-71.374451509,41.825516541],[-71.374321509,41.825489541],[-71.374023509,41.825432541],[-71.373848509,41.825383541],[-71.372856509,41.825024541],[-71.372025508,41.824730541],[-71.371704508,41.824623541],[-71.371414508,41.825062541],[-71.371140508,41.825459541],[-71.370453508,41.825226541],[-71.369568507,41.824948541],[-71.368941507,41.824763541],[-71.368682507,41.824686541],[-71.368637507,41.824673541],[-71.367630507,41.824337541],[-71.366318506,41.823918541],[-71.366539507,41.823517541],[-71.366661506,41.823311541],[-71.366837506,41.823033541],[-71.366859506,41.822991541],[-71.367027507,41.822705541],[-71.367137506,41.822554541],[-71.367253506,41.822381541],[-71.367364506,41.822219541],[-71.367501506,41.821964541],[-71.367612507,41.82170454],[-71.367699506,41.821438541],[-71.367908506,41.82076654],[-71.367928506,41.820702541],[-71.368038507,41.82033654],[-71.368062506,41.820255541],[-71.368012506,41.82024454],[-71.367775506,41.82022054],[-71.367630507,41.82022954],[-71.367332506,41.820256541],[-71.366280506,41.82040154],[-71.365349506,41.820546541],[-71.364235505,41.820721541],[-71.364189505,41.82072554],[-71.364128505,41.820736541],[-71.363808505,41.820782541],[-71.363037505,41.82090054],[-71.362854505,41.82092754],[-71.361961504,41.821068541],[-71.361862504,41.821087541],[-71.360985504,41.82121354],[-71.359344504,41.821465541],[-71.358208504,41.821629541],[-71.357674503,41.82170154],[-71.357422503,41.821724541],[-71.356941503,41.821751541],[-71.356163503,41.821812541],[-71.356125503,41.821812541],[-71.355598503,41.822598541],[-71.355324503,41.823052541],[-71.355026502,41.823475541],[-71.354838503,41.823762542],[-71.354622503,41.824093542],[-71.354393502,41.824326542],[-71.354385502,41.824345542],[-71.354263502,41.824528541],[-71.354223502,41.824591541],[-71.353920502,41.825070542],[-71.353729502,41.825329541],[-71.353546502,41.825646542],[-71.353371502,41.825901542],[-71.353233502,41.826172542],[-71.353111502,41.826458541],[-71.352997502,41.826691542],[-71.352882502,41.826950542],[-71.352745502,41.827221542],[-71.352692502,41.827359542],[-71.352623502,41.827629542],[-71.352516502,41.828202542],[-71.352430502,41.828744542],[-71.352425502,41.828778543],[-71.352386502,41.828946542],[-71.352745502,41.829121542],[-71.353294502,41.829335542],[-71.353348502,41.829335542],[-71.354492502,41.829441543],[-71.354736503,41.829487542],[-71.355156503,41.829583542],[-71.355423503,41.829670543],[-71.355682503,41.829770543],[-71.355835503,41.829842542],[-71.356094503,41.829956542],[-71.356133503,41.829972542],[-71.356369503,41.830105542],[-71.356461503,41.830162543],[-71.356873503,41.830445542],[-71.357155504,41.829987543],[-71.357674503,41.829193542],[-71.358139503,41.829377542],[-71.358284504,41.829434542],[-71.358749504,41.829605542],[-71.359016504,41.829197542],[-71.359428504,41.828587542],[-71.359627504,41.828339542],[-71.359642504,41.828312542],[-71.359747504,41.828349542],[-71.360756504,41.828713542],[-71.361771505,41.829049542],[-71.362877505,41.829438542],[-71.362617506,41.830075542],[-71.362343505,41.830426542],[-71.362229505,41.830578542],[-71.362083505,41.830773542]]]]}}"}, +{"type": "precinct", "typeId": 1003, "areaId": 25763, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":102,\"NAME\":\"1003\",\"SHAPE_Length\":0.040119527572764,\"SHAPE_Area\":-9.3130593175825e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.358406503,41.812329539],[-71.358322503,41.812573539],[-71.358185503,41.812981539],[-71.357941502,41.813744539],[-71.357759503,41.81432554],[-71.357658503,41.814648539],[-71.357536503,41.81496554],[-71.357399502,41.81525554],[-71.357354503,41.815345539],[-71.357231503,41.81559054],[-71.356766503,41.81640354],[-71.356750503,41.81642254],[-71.356300503,41.81714754],[-71.356026503,41.81754054],[-71.355858502,41.81796754],[-71.355843502,41.81808154],[-71.355835502,41.81820054],[-71.355843502,41.81834154],[-71.355904502,41.81859254],[-71.355988503,41.81883754],[-71.356083503,41.81907754],[-71.356316503,41.819664541],[-71.356461502,41.820073541],[-71.356506503,41.820214541],[-71.356560502,41.820507541],[-71.356560502,41.82084754],[-71.356544503,41.820996541],[-71.356499502,41.82115654],[-71.356445503,41.821309541],[-71.356354503,41.821461541],[-71.356125503,41.821812541],[-71.356163503,41.821812541],[-71.356941503,41.821751541],[-71.357422503,41.821724541],[-71.357674503,41.82170154],[-71.358208504,41.821629541],[-71.359344504,41.821465541],[-71.360985504,41.82121354],[-71.361862504,41.821087541],[-71.361961504,41.821068541],[-71.362854505,41.82092754],[-71.363037505,41.82090054],[-71.363808505,41.820782541],[-71.364128505,41.820736541],[-71.364189505,41.82072554],[-71.364235505,41.820721541],[-71.365349506,41.820546541],[-71.366280506,41.82040154],[-71.367332506,41.820256541],[-71.367630507,41.82022954],[-71.367775506,41.82022054],[-71.368012506,41.82024454],[-71.368062506,41.820255541],[-71.368093507,41.82015054],[-71.368118507,41.82006254],[-71.368164506,41.81989754],[-71.368416506,41.81913054],[-71.368576506,41.81858554],[-71.368645507,41.81840254],[-71.368698507,41.81831454],[-71.369027507,41.81773654],[-71.369041506,41.817685539],[-71.369270507,41.81701754],[-71.369354507,41.81678454],[-71.369499507,41.81634954],[-71.369667507,41.815873539],[-71.369736507,41.81567054],[-71.369949507,41.815056539],[-71.369965507,41.815018539],[-71.370057507,41.814758539],[-71.369019506,41.814534539],[-71.368504506,41.814412539],[-71.368408507,41.814389539],[-71.367737506,41.814263539],[-71.367142506,41.814118539],[-71.367096506,41.814106539],[-71.366188506,41.813919539],[-71.364975505,41.813691539],[-71.364911505,41.813678539],[-71.362091504,41.813080539],[-71.361938505,41.813049539],[-71.361223504,41.812903539],[-71.360860504,41.812829539],[-71.360170503,41.812689539],[-71.358406503,41.812329539]]]]}}"}, +{"type": "precinct", "typeId": 1004, "areaId": 25757, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":96,\"NAME\":\"1004\",\"SHAPE_Length\":0.097668072329424,\"SHAPE_Area\":-0.00034890432195456},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.340629499,41.842239545],[-71.340833499,41.842443546],[-71.340899498,41.842510545],[-71.341015498,41.842734545],[-71.341037142,41.84278447],[-71.341041341,41.842789745],[-71.341419105,41.843273538],[-71.341799499,41.843701545],[-71.341898499,41.843862546],[-71.342019489,41.844042418],[-71.342384209,41.844509485],[-71.3424187,41.844661922],[-71.341865987,41.845827453],[-71.341823499,41.845940546],[-71.341798499,41.846008546],[-71.341298499,41.847108547],[-71.340597499,41.848608547],[-71.340501559,41.848704486],[-71.337397957,41.855247717],[-71.337397498,41.855387548],[-71.337397498,41.855508548],[-71.337280498,41.855748548],[-71.337248499,41.855814548],[-71.337199498,41.855913548],[-71.334897498,41.860608549],[-71.334769991,41.86078706],[-71.334526943,41.861299316],[-71.335140498,41.861255549],[-71.337776498,41.860925549],[-71.338830499,41.860785549],[-71.3392175,41.860744549],[-71.3409875,41.860560549],[-71.3415765,41.860513549],[-71.3429145,41.860359549],[-71.343056501,41.860345549],[-71.349492503,41.859685549],[-71.349632503,41.859671548],[-71.354140504,41.859055548],[-71.354433504,41.859015548],[-71.354505504,41.859009548],[-71.355183504,41.858976548],[-71.358735506,41.858812548],[-71.359981506,41.859346548],[-71.359970506,41.859211548],[-71.363734507,41.858409548],[-71.364479507,41.858310548],[-71.364677507,41.858399548],[-71.364999508,41.858368547],[-71.365730508,41.858288547],[-71.365623508,41.858185548],[-71.365509507,41.858086548],[-71.364937508,41.857563547],[-71.364449508,41.857109548],[-71.363739507,41.856457547],[-71.363645507,41.856368548],[-71.363503507,41.856232548],[-71.361954507,41.854863547],[-71.361771506,41.854695547],[-71.361732506,41.854657547],[-71.361137506,41.854126547],[-71.360291506,41.853386547],[-71.359764506,41.852951547],[-71.359268505,41.852501547],[-71.358742505,41.852051547],[-71.358238505,41.851574547],[-71.357750505,41.851132546],[-71.357727504,41.851105547],[-71.357239504,41.850640546],[-71.356773504,41.850186547],[-71.356609505,41.850030547],[-71.356018504,41.849472546],[-71.355820504,41.849285546],[-71.355438504,41.848904546],[-71.355426503,41.848888546],[-71.355125504,41.848610546],[-71.354851504,41.848271546],[-71.354706503,41.848091546],[-71.354477503,41.847763546],[-71.354248504,41.847489546],[-71.354218503,41.847443546],[-71.353867503,41.847069546],[-71.353279503,41.846608546],[-71.353264503,41.846592546],[-71.352936503,41.846356546],[-71.352478503,41.846028546],[-71.352318503,41.845909546],[-71.352104503,41.845711545],[-71.352039502,41.845644546],[-71.352845503,41.844502545],[-71.353890503,41.843006545],[-71.354465503,41.842236544],[-71.355009504,41.841457544],[-71.355453503,41.840841545],[-71.355324504,41.840683544],[-71.355019503,41.840351544],[-71.354973504,41.840310544],[-71.354271503,41.839630544],[-71.354034503,41.839383545],[-71.353630503,41.838990544],[-71.353439502,41.838768544],[-71.353249503,41.838452544],[-71.353050502,41.838196545],[-71.352982503,41.838116544],[-71.352287502,41.838505544],[-71.352234502,41.838543544],[-71.352211502,41.838585545],[-71.352234502,41.838662545],[-71.352448502,41.838879545],[-71.351944502,41.839161544],[-71.351715502,41.839264545],[-71.351418502,41.839367545],[-71.351364502,41.839409544],[-71.351334502,41.839466544],[-71.351334502,41.839543545],[-71.351349502,41.839608544],[-71.351662502,41.839943545],[-71.351959502,41.840226544],[-71.352287502,41.840569545],[-71.352058502,41.840775544],[-71.351997502,41.840844545],[-71.351952503,41.840912544],[-71.351860502,41.841172545],[-71.351791502,41.841153545],[-71.351616502,41.841118545],[-71.351372502,41.841099545],[-71.350609501,41.841061545],[-71.350136502,41.841061545],[-71.349754501,41.841133545],[-71.349281502,41.841206545],[-71.348854501,41.841263545],[-71.348236501,41.841347545],[-71.347900501,41.841397545],[-71.347221501,41.841496545],[-71.346657501,41.841584545],[-71.346405501,41.841610545],[-71.3462225,41.841633545],[-71.346115501,41.841637545],[-71.346062501,41.841641545],[-71.345848501,41.841645545],[-71.3453755,41.841679545],[-71.3447655,41.841748545],[-71.344154499,41.841847545],[-71.3440025,41.841866545],[-71.3438575,41.841877545],[-71.343284499,41.841942545],[-71.343162499,41.841956545],[-71.3431535,41.841915545],[-71.3431315,41.841891545],[-71.3429985,41.841885545],[-71.342932499,41.841893545],[-71.342838499,41.841897545],[-71.3425335,41.841936545],[-71.3423765,41.841951545],[-71.342268499,41.841945545],[-71.341739499,41.842017546],[-71.341588499,41.842019546],[-71.341516499,41.842027545],[-71.341418499,41.842032545],[-71.341313499,41.842049545],[-71.341281499,41.842058546],[-71.341238499,41.842098545],[-71.341157499,41.842116546],[-71.341027499,41.842152546],[-71.340946499,41.842169545],[-71.340854499,41.842202545],[-71.340817499,41.842221545],[-71.340767499,41.842232546],[-71.340693499,41.842241545],[-71.340629499,41.842239545]]]]}}"}, +{"type": "precinct", "typeId": 1005, "areaId": 25760, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":99,\"NAME\":\"1005\",\"SHAPE_Length\":0.088220977194105,\"SHAPE_Area\":-0.00029333306035424},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.340629499,41.842239545],[-71.340693499,41.842241545],[-71.340767499,41.842232546],[-71.340817499,41.842221545],[-71.340854499,41.842202545],[-71.340946499,41.842169545],[-71.341027499,41.842152546],[-71.341157499,41.842116546],[-71.341238499,41.842098545],[-71.341281499,41.842058546],[-71.341313499,41.842049545],[-71.341418499,41.842032545],[-71.341516499,41.842027545],[-71.341588499,41.842019546],[-71.341739499,41.842017546],[-71.342268499,41.841945545],[-71.3423765,41.841951545],[-71.3425335,41.841936545],[-71.342838499,41.841897545],[-71.342932499,41.841893545],[-71.3429985,41.841885545],[-71.3431315,41.841891545],[-71.3431535,41.841915545],[-71.343162499,41.841956545],[-71.343284499,41.841942545],[-71.3438575,41.841877545],[-71.3440025,41.841866545],[-71.344154499,41.841847545],[-71.3447655,41.841748545],[-71.3453755,41.841679545],[-71.345848501,41.841645545],[-71.346062501,41.841641545],[-71.346115501,41.841637545],[-71.3462225,41.841633545],[-71.346405501,41.841610545],[-71.346657501,41.841584545],[-71.347221501,41.841496545],[-71.347900501,41.841397545],[-71.348236501,41.841347545],[-71.348854501,41.841263545],[-71.349281502,41.841206545],[-71.349754501,41.841133545],[-71.350136502,41.841061545],[-71.350609501,41.841061545],[-71.351372502,41.841099545],[-71.351616502,41.841118545],[-71.351791502,41.841153545],[-71.351860502,41.841172545],[-71.351952503,41.840912544],[-71.351997502,41.840844545],[-71.352058502,41.840775544],[-71.352287502,41.840569545],[-71.351959502,41.840226544],[-71.351662502,41.839943545],[-71.351349502,41.839608544],[-71.351334502,41.839543545],[-71.351334502,41.839466544],[-71.351364502,41.839409544],[-71.351418502,41.839367545],[-71.351715502,41.839264545],[-71.351944502,41.839161544],[-71.352448502,41.838879545],[-71.352234502,41.838662545],[-71.352211502,41.838585545],[-71.352234502,41.838543544],[-71.352287502,41.838505544],[-71.352982503,41.838116544],[-71.353050502,41.838196545],[-71.353249503,41.838452544],[-71.353439502,41.838768544],[-71.353630503,41.838990544],[-71.354034503,41.839383545],[-71.354271503,41.839630544],[-71.354973504,41.840310544],[-71.355461504,41.839722544],[-71.355835503,41.839260544],[-71.356209503,41.838772544],[-71.356613504,41.838288544],[-71.357605504,41.837025544],[-71.357750504,41.836819544],[-71.358192504,41.836155543],[-71.358620505,41.835480544],[-71.359047505,41.834854543],[-71.359459505,41.834221543],[-71.359871505,41.833676543],[-71.359919504,41.833615543],[-71.360012504,41.833499543],[-71.360405505,41.833008543],[-71.360435505,41.832959543],[-71.360657505,41.832657543],[-71.360847504,41.832402543],[-71.361198504,41.831955543],[-71.361488505,41.831570542],[-71.362038505,41.830838543],[-71.362083505,41.830773542],[-71.362229505,41.830578542],[-71.362343505,41.830426542],[-71.362617506,41.830075542],[-71.362877505,41.829438542],[-71.361771505,41.829049542],[-71.360756504,41.828713542],[-71.359747504,41.828349542],[-71.359642504,41.828312542],[-71.359627504,41.828339542],[-71.359428504,41.828587542],[-71.359016504,41.829197542],[-71.358749504,41.829605542],[-71.358284504,41.829434542],[-71.358139503,41.829377542],[-71.357674503,41.829193542],[-71.357155504,41.829987543],[-71.356873503,41.830445542],[-71.356461503,41.830162543],[-71.356369503,41.830105542],[-71.356133503,41.829972542],[-71.356094503,41.829956542],[-71.355835503,41.829842542],[-71.355682503,41.829770543],[-71.355423503,41.829670543],[-71.355156503,41.829583542],[-71.354736503,41.829487542],[-71.354492502,41.829441543],[-71.353348502,41.829335542],[-71.353294502,41.829335542],[-71.352745502,41.829121542],[-71.352386502,41.828946542],[-71.352425502,41.828778543],[-71.352430502,41.828744542],[-71.352516502,41.828202542],[-71.352623502,41.827629542],[-71.352692502,41.827359542],[-71.352745502,41.827221542],[-71.352882502,41.826950542],[-71.352997502,41.826691542],[-71.353111502,41.826458541],[-71.353233502,41.826172542],[-71.353371502,41.825901542],[-71.353546502,41.825646542],[-71.353729502,41.825329541],[-71.353920502,41.825070542],[-71.354223502,41.824591541],[-71.354263502,41.824528541],[-71.354385502,41.824345542],[-71.354393502,41.824326542],[-71.354622503,41.824093542],[-71.354838503,41.823762542],[-71.355026502,41.823475541],[-71.355324503,41.823052541],[-71.355598503,41.822598541],[-71.356125503,41.821812541],[-71.355995502,41.821823541],[-71.355278502,41.821869541],[-71.354393502,41.821934541],[-71.353683502,41.821991541],[-71.353310502,41.822033541],[-71.352692502,41.822136541],[-71.352341502,41.822213541],[-71.351379501,41.822396541],[-71.3499455,41.822682541],[-71.3494035,41.822785541],[-71.3493055,41.822804541],[-71.3488025,41.822903542],[-71.3483275,41.822996541],[-71.3480075,41.823059542],[-71.3478545,41.823088541],[-71.347446948,41.823177908],[-71.34747219,41.823223141],[-71.34526059,41.827510202],[-71.345111137,41.827675426],[-71.344970119,41.827790683],[-71.344897499,41.828008542],[-71.343707017,41.828823017],[-71.342813714,41.829553085],[-71.342697499,41.829708543],[-71.342561499,41.829805543],[-71.342071668,41.830155546],[-71.335398372,41.835546712],[-71.335454676,41.835770705],[-71.337218716,41.837987226],[-71.337453497,41.838239544],[-71.339893498,41.841339545],[-71.339931498,41.841388545],[-71.339969498,41.841436545],[-71.340251499,41.841794545],[-71.340323499,41.841886545],[-71.340406486,41.841992209],[-71.340501401,41.842111447],[-71.340629499,41.842239545]]]]}}"}, +{"type": "precinct", "typeId": 1006, "areaId": 25764, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":103,\"NAME\":\"1006\",\"SHAPE_Length\":0.058047388844913,\"SHAPE_Area\":-0.00016923013631022},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.339459496,41.806653538],[-71.339398496,41.806797539],[-71.339107496,41.807489538],[-71.339086504,41.807635531],[-71.33909323,41.807651413],[-71.339121522,41.80770488],[-71.339150547,41.807740338],[-71.339208666,41.807784156],[-71.339244913,41.807819453],[-71.339288267,41.807854589],[-71.339324447,41.8079169],[-71.339346597,41.807997543],[-71.339330917,41.808033882],[-71.339345064,41.808060573],[-71.33932982,41.808105917],[-71.339336999,41.808168874],[-71.339306923,41.808232464],[-71.339260052,41.80850365],[-71.347446948,41.823177908],[-71.3478545,41.823088541],[-71.3480075,41.823059542],[-71.3483275,41.822996541],[-71.3488025,41.822903542],[-71.3493055,41.822804541],[-71.3494035,41.822785541],[-71.3499455,41.822682541],[-71.351379501,41.822396541],[-71.352341502,41.822213541],[-71.352692502,41.822136541],[-71.353310502,41.822033541],[-71.353683502,41.821991541],[-71.354393502,41.821934541],[-71.355278502,41.821869541],[-71.355995502,41.821823541],[-71.356125503,41.821812541],[-71.356354503,41.821461541],[-71.356445503,41.821309541],[-71.356499502,41.82115654],[-71.356544503,41.820996541],[-71.356560502,41.82084754],[-71.356560502,41.820507541],[-71.356506503,41.820214541],[-71.356461502,41.820073541],[-71.356316503,41.819664541],[-71.356083503,41.81907754],[-71.355988503,41.81883754],[-71.355904502,41.81859254],[-71.355843502,41.81834154],[-71.355835502,41.81820054],[-71.355843502,41.81808154],[-71.355858502,41.81796754],[-71.356026503,41.81754054],[-71.356300503,41.81714754],[-71.356750503,41.81642254],[-71.356766503,41.81640354],[-71.357231503,41.81559054],[-71.357354503,41.815345539],[-71.357399502,41.81525554],[-71.357536503,41.81496554],[-71.357658503,41.814648539],[-71.357759503,41.81432554],[-71.357941502,41.813744539],[-71.358185503,41.812981539],[-71.358322503,41.812573539],[-71.358406503,41.812329539],[-71.358475503,41.812146539],[-71.358131503,41.812069539],[-71.357368503,41.811940539],[-71.354752502,41.811394539],[-71.352631501,41.810963539],[-71.3513575,41.810688539],[-71.3512425,41.810666539],[-71.350937501,41.810597539],[-71.348412499,41.810078538],[-71.3479165,41.809969539],[-71.347771499,41.809937539],[-71.3474275,41.809868539],[-71.346886499,41.809746538],[-71.345772498,41.809460539],[-71.345343498,41.809336538],[-71.345284498,41.809319538],[-71.344947499,41.809197539],[-71.344475498,41.809025538],[-71.343559498,41.808678539],[-71.343140497,41.808503539],[-71.342575497,41.808236539],[-71.341881497,41.807881539],[-71.341805497,41.807846539],[-71.340912497,41.807392538],[-71.340523497,41.807179538],[-71.339596496,41.806716539],[-71.339459496,41.806653538]]]]}}"}, +{"type": "precinct", "typeId": 1007, "areaId": 25765, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":104,\"NAME\":\"1007\",\"SHAPE_Length\":0.059553761664207,\"SHAPE_Area\":-7.2275772914314e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.339459496,41.806653538],[-71.339596496,41.806716539],[-71.340523497,41.807179538],[-71.340912497,41.807392538],[-71.341805497,41.807846539],[-71.341881497,41.807881539],[-71.342575497,41.808236539],[-71.343140497,41.808503539],[-71.343559498,41.808678539],[-71.344475498,41.809025538],[-71.344947499,41.809197539],[-71.345284498,41.809319538],[-71.345343498,41.809336538],[-71.345772498,41.809460539],[-71.346886499,41.809746538],[-71.3474275,41.809868539],[-71.347771499,41.809937539],[-71.3479165,41.809969539],[-71.348412499,41.810078538],[-71.350937501,41.810597539],[-71.3512425,41.810666539],[-71.3513575,41.810688539],[-71.352631501,41.810963539],[-71.354752502,41.811394539],[-71.357368503,41.811940539],[-71.358131503,41.812069539],[-71.358475503,41.812146539],[-71.358566503,41.811879539],[-71.358849503,41.811085539],[-71.359024503,41.810513538],[-71.359116503,41.810254538],[-71.358223503,41.810067539],[-71.357491503,41.809906538],[-71.357079503,41.809826538],[-71.356102502,41.809616538],[-71.356247502,41.809170538],[-71.356285502,41.809090538],[-71.356119502,41.809050538],[-71.356003502,41.809018539],[-71.355362502,41.808876538],[-71.354340501,41.808602538],[-71.353508501,41.808369538],[-71.353798501,41.807743538],[-71.352722501,41.807438538],[-71.3519575,41.807548538],[-71.3517995,41.807179538],[-71.351639501,41.806672538],[-71.351578501,41.806443538],[-71.3515325,41.806195538],[-71.351501501,41.805996538],[-71.3514565,41.805615538],[-71.3514485,41.805390538],[-71.3514485,41.804985538],[-71.3514565,41.804531538],[-71.3514565,41.803092538],[-71.3512345,41.802895538],[-71.3512095,41.803062537],[-71.3507545,41.803005537],[-71.3507165,41.803067537],[-71.350571499,41.803276537],[-71.3504685,41.803508537],[-71.3504565,41.803524537],[-71.350357499,41.803826538],[-71.3501595,41.804387537],[-71.349968499,41.804974538],[-71.3497245,41.805668538],[-71.3495035,41.806382538],[-71.349243499,41.807186538],[-71.3487555,41.807099538],[-71.348312499,41.807015538],[-71.347794499,41.806939538],[-71.347351499,41.806866538],[-71.346741499,41.806755538],[-71.346092498,41.806649538],[-71.345606498,41.806558538],[-71.345047499,41.806454538],[-71.345146499,41.806145538],[-71.344849498,41.806088538],[-71.344854499,41.806069538],[-71.344849498,41.806031538],[-71.344826498,41.805989538],[-71.344772498,41.805951538],[-71.344238498,41.805687538],[-71.344009498,41.805584538],[-71.344276498,41.804909538],[-71.344719498,41.804768538],[-71.344688498,41.804699538],[-71.344704498,41.804593538],[-71.344772498,41.804360538],[-71.344872498,41.804074538],[-71.344994498,41.803707538],[-71.344368497,41.803593538],[-71.343094498,41.803349537],[-71.343346498,41.802601538],[-71.343181497,41.802571537],[-71.342300498,41.802410538],[-71.340889497,41.802136538],[-71.340886497,41.802135538],[-71.340616497,41.802842537],[-71.340528496,41.802957538],[-71.340337496,41.803100538],[-71.340249497,41.803169538],[-71.340134747,41.803367741],[-71.340131552,41.80337938],[-71.340111652,41.803417593],[-71.340022496,41.803723538],[-71.339802497,41.804214538],[-71.339792239,41.80428245],[-71.339792554,41.804286912],[-71.339790713,41.804292555],[-71.339744497,41.804598538],[-71.339683497,41.804745538],[-71.339619592,41.804898309],[-71.339602523,41.804975282],[-71.339579101,41.805128841],[-71.339589773,41.805257423],[-71.339618319,41.805302885],[-71.339657675,41.805334341],[-71.339715288,41.805396253],[-71.339755549,41.805455837],[-71.339803497,41.805502538],[-71.339796497,41.805574538],[-71.339697295,41.805739261],[-71.339689953,41.805766005],[-71.339652772,41.805829843],[-71.339634845,41.805887475],[-71.339635442,41.805962641],[-71.339679604,41.806009371],[-71.339731142,41.80607136],[-71.339788253,41.80615128],[-71.339809257,41.806231922],[-71.339787047,41.806313361],[-71.339706193,41.806378081],[-71.339564842,41.806441186],[-71.339517496,41.806562539],[-71.339459496,41.806653538]]]]}}"}, +{"type": "precinct", "typeId": 1008, "areaId": 25761, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":100,\"NAME\":\"1008\",\"SHAPE_Length\":0.070808987625447,\"SHAPE_Area\":-0.00016120367709788},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.368062506,41.820255541],[-71.368038507,41.82033654],[-71.367928506,41.820702541],[-71.367908506,41.82076654],[-71.367699506,41.821438541],[-71.367612507,41.82170454],[-71.367501506,41.821964541],[-71.367364506,41.822219541],[-71.367253506,41.822381541],[-71.367137506,41.822554541],[-71.367027507,41.822705541],[-71.366859506,41.822991541],[-71.366837506,41.823033541],[-71.366661506,41.823311541],[-71.366539507,41.823517541],[-71.366318506,41.823918541],[-71.367630507,41.824337541],[-71.368637507,41.824673541],[-71.368682507,41.824686541],[-71.368941507,41.824763541],[-71.369568507,41.824948541],[-71.370453508,41.825226541],[-71.371140508,41.825459541],[-71.371414508,41.825062541],[-71.371704508,41.824623541],[-71.372025508,41.824730541],[-71.372856509,41.825024541],[-71.373848509,41.825383541],[-71.374023509,41.825432541],[-71.374321509,41.825489541],[-71.374451509,41.825516541],[-71.374855509,41.825581541],[-71.375359509,41.825665541],[-71.375542509,41.825707541],[-71.37715951,41.826260541],[-71.37739651,41.826352541],[-71.37749551,41.826287541],[-71.37761751,41.826153541],[-71.37769351,41.826062541],[-71.37773151,41.825920541],[-71.37799851,41.825936541],[-71.37812051,41.825955541],[-71.37821551,41.826004541],[-71.378085511,41.826102541],[-71.37785351,41.826259541],[-71.37722051,41.826793541],[-71.37701151,41.826987541],[-71.376760509,41.827244541],[-71.376218509,41.827772541],[-71.375694509,41.828315541],[-71.375484509,41.828551541],[-71.375383509,41.828664541],[-71.37548851,41.828740541],[-71.37576351,41.828873542],[-71.375902509,41.828914542],[-71.376036833,41.828953061],[-71.376037047,41.828952873],[-71.376071594,41.828923296],[-71.376079525,41.828916993],[-71.376108893,41.828893698],[-71.376146308,41.828864608],[-71.376238509,41.828788542],[-71.376267984,41.828762364],[-71.376286214,41.828745083],[-71.376318956,41.828715549],[-71.376353475,41.828684599],[-71.376385931,41.828657608],[-71.376390509,41.828653542],[-71.376647562,41.828444934],[-71.376650618,41.828442328],[-71.376685136,41.828411401],[-71.376718768,41.828380496],[-71.376752398,41.828350254],[-71.376786974,41.828321362],[-71.376818798,41.8282948],[-71.37682251,41.828291541],[-71.376979734,41.828160281],[-71.377003247,41.828139742],[-71.377040516,41.828109458],[-71.377079616,41.828080503],[-71.377117857,41.828053558],[-71.377131763,41.828044274],[-71.37719151,41.828001541],[-71.377321423,41.827909258],[-71.377336585,41.827898331],[-71.377374827,41.827870701],[-71.377413984,41.82784378],[-71.377454915,41.827816862],[-71.377483608,41.827798842],[-71.377600512,41.827719607],[-71.377606243,41.827715281],[-71.377638152,41.827689153],[-71.37767101,41.82766298],[-71.377704723,41.827636786],[-71.377729348,41.82761817],[-71.377751706,41.827600448],[-71.377770436,41.827585127],[-71.377775535,41.827580331],[-71.377836162,41.827517457],[-71.377850703,41.827501467],[-71.377876562,41.827475561],[-71.37787851,41.827473541],[-71.377880914,41.827471721],[-71.377911774,41.827446487],[-71.377948239,41.827420273],[-71.377953727,41.827416609],[-71.378130114,41.827283101],[-71.378152501,41.827265234],[-71.378181805,41.827242488],[-71.378211107,41.827220451],[-71.378237622,41.827201727],[-71.378240511,41.827199541],[-71.378247259,41.827195226],[-71.378270745,41.827179694],[-71.3782945,41.827165023],[-71.37830151,41.827160541],[-71.378307724,41.827157519],[-71.378333185,41.827144313],[-71.37836535,41.827128294],[-71.378398433,41.827111635],[-71.378430627,41.827096301],[-71.378463737,41.827081609],[-71.378465008,41.827081032],[-71.378586935,41.827021739],[-71.378593373,41.827018262],[-71.378624594,41.827000252],[-71.378654897,41.826982241],[-71.37868523,41.82696487],[-71.378714675,41.826948229],[-71.378744121,41.826930926],[-71.378772648,41.826914308],[-71.378801177,41.82689698],[-71.378831508,41.826880318],[-71.378856896,41.826866776],[-71.378862511,41.826863541],[-71.378866645,41.826861746],[-71.378894064,41.826848322],[-71.378928091,41.826833677],[-71.378961229,41.826820333],[-71.378975483,41.826815488],[-71.379054666,41.826786847],[-71.379055402,41.826786541],[-71.379056238,41.826786122],[-71.379106764,41.826756972],[-71.37910713,41.826756729],[-71.379112408,41.826752972],[-71.379147247,41.82672758],[-71.379150698,41.82672501],[-71.37917112,41.82670987],[-71.37918885,41.826695413],[-71.379206637,41.826683014],[-71.379225342,41.826670547],[-71.379243157,41.826659452],[-71.379243736,41.826659116],[-71.379292511,41.826628541],[-71.379304109,41.826616333],[-71.379311558,41.826608435],[-71.379311987,41.826608747],[-71.379427511,41.826658541],[-71.379443511,41.826644541],[-71.379509511,41.826565541],[-71.379871511,41.826134541],[-71.379971511,41.825980541],[-71.380080511,41.825831541],[-71.38021451,41.825674541],[-71.380445511,41.825374541],[-71.380701985,41.825066952],[-71.380873391,41.824845045],[-71.380890511,41.82482254],[-71.380897547,41.824813771],[-71.381057428,41.824606783],[-71.381183511,41.82439154],[-71.381376511,41.82412354],[-71.381673512,41.823680541],[-71.381809512,41.823506541],[-71.382269511,41.822886541],[-71.382405511,41.82270354],[-71.382463511,41.82251954],[-71.382705512,41.82193054],[-71.382733511,41.82192154],[-71.382805511,41.82183254],[-71.382825397,41.821741633],[-71.382823644,41.821725127],[-71.382821931,41.821692011],[-71.382821105,41.821658851],[-71.382820279,41.82162569],[-71.382819453,41.821592576],[-71.382818657,41.821559415],[-71.382817831,41.821526255],[-71.382818838,41.821493759],[-71.382818935,41.821490764],[-71.382819845,41.821461264],[-71.382820881,41.821429455],[-71.382820085,41.821396958],[-71.382820203,41.821365879],[-71.382819521,41.821337453],[-71.382818808,41.821309049],[-71.382819957,41.821282591],[-71.382824744,41.82125616],[-71.382832222,41.821229022],[-71.382840617,41.82120248],[-71.382850814,41.821176626],[-71.38286379,41.821152765],[-71.38288129,41.821128839],[-71.382902427,41.821105534],[-71.382908613,41.821099869],[-71.382927202,41.821082851],[-71.382955614,41.821060171],[-71.382985771,41.821036739],[-71.383017761,41.821013308],[-71.383051526,41.820989125],[-71.383084464,41.820966312],[-71.383118314,41.820945559],[-71.383150389,41.820926176],[-71.383180748,41.82090885],[-71.383209273,41.820891521],[-71.383235965,41.820873574],[-71.383261768,41.820856311],[-71.383286655,41.820839048],[-71.383311543,41.820821098],[-71.383335544,41.820803148],[-71.383359514,41.820785266],[-71.383382628,41.820768001],[-71.383402989,41.820750847],[-71.383421578,41.820733669],[-71.383437415,41.820716533],[-71.383446925,41.820698088],[-71.383451853,41.820678403],[-71.383455924,41.820658717],[-71.383464459,41.820638967],[-71.383481242,41.820622519],[-71.383505385,41.820610674],[-71.383535109,41.820606222],[-71.383568671,41.820609824],[-71.383605126,41.820619466],[-71.383642493,41.820631807],[-71.383680836,41.820645498],[-71.383718233,41.820658503],[-71.383754743,41.820671529],[-71.383788474,41.820682586],[-71.383820433,41.820693618],[-71.383851445,41.820704032],[-71.383882399,41.82071241],[-71.383916018,41.820718047],[-71.383949493,41.820718904],[-71.383982913,41.820716422],[-71.384018052,41.820709849],[-71.384054019,41.820701904],[-71.384066957,41.820698713],[-71.384091793,41.820692589],[-71.384130454,41.820682588],[-71.384169114,41.820673274],[-71.384208751,41.820664578],[-71.384249212,41.820656569],[-71.384288846,41.820649931],[-71.384327622,41.820644002],[-71.384363677,41.820638069],[-71.384384441,41.82063459],[-71.384384512,41.82063454],[-71.384464511,41.820610539],[-71.384550478,41.82055838],[-71.384553432,41.820556299],[-71.384580955,41.820534921],[-71.384608448,41.820512926],[-71.38463597,41.820491549],[-71.384664379,41.820470195],[-71.384693734,41.820450169],[-71.38472309,41.820429434],[-71.38475064,41.820409428],[-71.384778191,41.820389423],[-71.384804824,41.820369462],[-71.384829683,41.82035014],[-71.384852737,41.820331571],[-71.384877653,41.820314993],[-71.384900764,41.820298414],[-71.384923017,41.820283206],[-71.384938028,41.820272577],[-71.384947776,41.820265378],[-71.384961221,41.820254933],[-71.384976314,41.820243216],[-71.384987825,41.820234263],[-71.384996733,41.820228052],[-71.385002977,41.820223942],[-71.38500564,41.82022184],[-71.385007901,41.820220976],[-71.385030361,41.820204389],[-71.385031415,41.820203205],[-71.385032198,41.820201905],[-71.385052512,41.82015354],[-71.38506106,41.82012317],[-71.385065159,41.820104629],[-71.385072637,41.820077469],[-71.385080944,41.820048274],[-71.385090169,41.820018348],[-71.385101167,41.819988447],[-71.385114029,41.819959165],[-71.385128665,41.819929198],[-71.385143301,41.819899186],[-71.385147943,41.819890238],[-71.385184513,41.819808539],[-71.385228512,41.81967054],[-71.385229458,41.819603353],[-71.38522907,41.819599601],[-71.385226752,41.819579314],[-71.385224493,41.819560422],[-71.385223177,41.819544207],[-71.385222865,41.819530645],[-71.385222521,41.819517816],[-71.385222236,41.81950629],[-71.385222925,41.819496823],[-71.385222806,41.819492243],[-71.385222512,41.81948754],[-71.385223541,41.819485514],[-71.385225217,41.819480543],[-71.385229571,41.819473069],[-71.385231021,41.819470781],[-71.385240097,41.819452903],[-71.385243348,41.819445137],[-71.385248505,41.819433525],[-71.385255479,41.819422605],[-71.385255512,41.819422539],[-71.385255562,41.819422489],[-71.385265144,41.819411656],[-71.385272836,41.819405216],[-71.385276512,41.819401539],[-71.385284949,41.819397198],[-71.385290917,41.81939373],[-71.385305245,41.819386755],[-71.385378319,41.819349154],[-71.38537938,41.819348493],[-71.385380029,41.819347955],[-71.385415634,41.819307665],[-71.385417243,41.819305331],[-71.3854187,41.819302444],[-71.38544333,41.819238228],[-71.385450266,41.819216245],[-71.385459633,41.819192425],[-71.385469959,41.819171422],[-71.385471512,41.819167539],[-71.385474901,41.81916207],[-71.385498662,41.819118922],[-71.385549125,41.819042283],[-71.385572512,41.81900454],[-71.385575759,41.819001834],[-71.385578781,41.818997245],[-71.385592957,41.818984887],[-71.385608078,41.81897452],[-71.385625031,41.818965481],[-71.385641153,41.818959162],[-71.385657305,41.81895353],[-71.385672598,41.818949269],[-71.385679065,41.818947958],[-71.385729859,41.818935697],[-71.385730127,41.818935605],[-71.385733003,41.818934363],[-71.385802512,41.818901539],[-71.385799078,41.818561536],[-71.385797578,41.81855664],[-71.385792765,41.81854093],[-71.385784921,41.818516636],[-71.385776189,41.818493095],[-71.385765711,41.818471566],[-71.385754402,41.818452779],[-71.385741345,41.818437398],[-71.385727486,41.818426065],[-71.385710993,41.818417495],[-71.385692754,41.818411005],[-71.385674571,41.818407168],[-71.385653695,41.818404792],[-71.385630128,41.818403053],[-71.385603841,41.818400717],[-71.385576579,41.818396368],[-71.385547516,41.818390668],[-71.385516619,41.818385034],[-71.385483946,41.818380725],[-71.385447665,41.81837719],[-71.385406888,41.818374359],[-71.385365196,41.818370887],[-71.385322558,41.818366042],[-71.385281697,41.818359187],[-71.385242609,41.818352241],[-71.385204467,41.818346029],[-71.385167271,41.81834112],[-71.385131019,41.818338248],[-71.385094767,41.818335354],[-71.385060317,41.818333124],[-71.385025925,41.818332929],[-71.384994284,41.818333355],[-71.384964446,41.81833376],[-71.384938158,41.81833211],[-71.384918144,41.818326304],[-71.384909726,41.81831557],[-71.384913021,41.818301989],[-71.384926279,41.818290317],[-71.384943347,41.818285325],[-71.384967887,41.818289764],[-71.3849997,41.818296061],[-71.385037785,41.818299621],[-71.385080338,41.818301036],[-71.385124694,41.818302453],[-71.385169051,41.818303206],[-71.385211544,41.818303294],[-71.385251347,41.818303425],[-71.38528849,41.818304263],[-71.385322937,41.818307865],[-71.38535472,41.818313476],[-71.385384759,41.818320504],[-71.385413853,41.818326205],[-71.385443804,41.818330557],[-71.385474616,41.818332829],[-71.385504454,41.818332401],[-71.385531571,41.818332039],[-71.38555325,41.818329682],[-71.385572092,41.81832403],[-71.38558813,41.818313641],[-71.38560494,41.818298518],[-71.385620721,41.818277998],[-71.385639163,41.818256085],[-71.385658524,41.818233487],[-71.38567605,41.818211619],[-71.385692746,41.818191763],[-71.385706752,41.818171927],[-71.385718065,41.818154169],[-71.385727573,41.818136455],[-71.385735307,41.818119426],[-71.38574304,41.818103082],[-71.385750772,41.818087402],[-71.385757705,41.818073802],[-71.385765608,41.818064868],[-71.385776375,41.818061335],[-71.385792726,41.818063843],[-71.385816406,41.818070933],[-71.385846474,41.818078647],[-71.385877399,41.818085653],[-71.385877623,41.818085709],[-71.386781513,41.816733539],[-71.386998512,41.816408539],[-71.387083512,41.816380539],[-71.387233756,41.816330529],[-71.387285004,41.816221452],[-71.387609369,41.81604952],[-71.387979606,41.815913898],[-71.38819707,41.815851859],[-71.388237731,41.815840367],[-71.38840942,41.815827677],[-71.388617783,41.815853559],[-71.388708399,41.815860449],[-71.388644513,41.815735538],[-71.388679513,41.815490539],[-71.388496513,41.815579538],[-71.388214513,41.815686539],[-71.387909513,41.815777539],[-71.387420513,41.815984539],[-71.387192513,41.816101539],[-71.387016513,41.816201538],[-71.386856513,41.816326539],[-71.386838513,41.816340539],[-71.386772512,41.816391539],[-71.386642513,41.816552539],[-71.386543513,41.816719539],[-71.386475512,41.816880539],[-71.386387512,41.817051539],[-71.386375512,41.817067539],[-71.386261512,41.817208539],[-71.386092512,41.817366539],[-71.386070512,41.817376539],[-71.385674512,41.817215539],[-71.385456512,41.817110539],[-71.385323512,41.817047539],[-71.385125512,41.816962539],[-71.385086512,41.816944539],[-71.384300512,41.816681539],[-71.383652511,41.816449539],[-71.383570511,41.816423539],[-71.383377511,41.816349539],[-71.382675511,41.816098539],[-71.381905511,41.815815539],[-71.381104511,41.815533539],[-71.38029551,41.815255539],[-71.37949451,41.814980539],[-71.37870051,41.814713539],[-71.37790851,41.814432539],[-71.37788451,41.814427538],[-71.377098509,41.814156538],[-71.376602509,41.813965539],[-71.376259509,41.814453539],[-71.375946509,41.814877539],[-71.375648508,41.815316539],[-71.375237509,41.81596454],[-71.375084508,41.816189539],[-71.375000509,41.816323539],[-71.374313508,41.81608254],[-71.373627508,41.815838539],[-71.372604508,41.815495539],[-71.371765508,41.815239539],[-71.371170507,41.815052539],[-71.370667507,41.814911539],[-71.370193507,41.814789539],[-71.370057507,41.814758539],[-71.369965507,41.815018539],[-71.369949507,41.815056539],[-71.369736507,41.81567054],[-71.369667507,41.815873539],[-71.369499507,41.81634954],[-71.369354507,41.81678454],[-71.369270507,41.81701754],[-71.369041506,41.817685539],[-71.369027507,41.81773654],[-71.368698507,41.81831454],[-71.368645507,41.81840254],[-71.368576506,41.81858554],[-71.368416506,41.81913054],[-71.368164506,41.81989754],[-71.368118507,41.82006254],[-71.368093507,41.82015054],[-71.368062506,41.820255541]]]]}}"}, +{"type": "precinct", "typeId": 1009, "areaId": 25762, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":101,\"NAME\":\"1009\",\"SHAPE_Length\":0.13149637245394,\"SHAPE_Area\":-0.00029296715298587},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.378909509,41.797195535],[-71.378761203,41.797317092],[-71.378763708,41.797318946],[-71.378792769,41.797336471],[-71.378823604,41.797353312],[-71.378854439,41.797370153],[-71.378883465,41.797389668],[-71.378912459,41.797410486],[-71.378940597,41.797431303],[-71.378967816,41.797453446],[-71.378993231,41.79747625],[-71.379018611,41.797501044],[-71.379043135,41.797525814],[-71.379068516,41.797550607],[-71.379093039,41.79757604],[-71.379115727,41.797602158],[-71.379136674,41.797628227],[-71.379157589,41.797654983],[-71.379177681,41.797680411],[-71.379196825,41.797705793],[-71.379214262,41.797729183],[-71.379231699,41.797752573],[-71.379249139,41.797774637],[-71.379266579,41.797796701],[-71.37928402,41.797818102],[-71.379301495,41.797837513],[-71.379319,41.797856947],[-71.379333819,41.797875006],[-71.379348669,41.797893042],[-71.379361746,41.797911099],[-71.379373907,41.797928492],[-71.379384328,41.797945174],[-71.379393865,41.797960506],[-71.379403466,41.797973872],[-71.379413041,41.797985271],[-71.379422712,41.797994634],[-71.379438484,41.798009378],[-71.379448981,41.798018125],[-71.379514476,41.798033264],[-71.37953301,41.79802592],[-71.379550233,41.798016905],[-71.379568094,41.798009743],[-71.379585988,41.798001254],[-71.379602114,41.797990752],[-71.379620537,41.797977233],[-71.379649671,41.797955904],[-71.379001024,41.797152587],[-71.378909509,41.797195535]]],[[[-71.381104511,41.815533539],[-71.381905511,41.815815539],[-71.382675511,41.816098539],[-71.383377511,41.816349539],[-71.383570511,41.816423539],[-71.383652511,41.816449539],[-71.384300512,41.816681539],[-71.385086512,41.816944539],[-71.385125512,41.816962539],[-71.385323512,41.817047539],[-71.385456512,41.817110539],[-71.385674512,41.817215539],[-71.386070512,41.817376539],[-71.386092512,41.817366539],[-71.386261512,41.817208539],[-71.386375512,41.817067539],[-71.386387512,41.817051539],[-71.386475512,41.816880539],[-71.386543513,41.816719539],[-71.386642513,41.816552539],[-71.386772512,41.816391539],[-71.386838513,41.816340539],[-71.386856513,41.816326539],[-71.387016513,41.816201538],[-71.387192513,41.816101539],[-71.387420513,41.815984539],[-71.387909513,41.815777539],[-71.388214513,41.815686539],[-71.388496513,41.815579538],[-71.388679513,41.815490539],[-71.388644513,41.815735538],[-71.388708399,41.815860449],[-71.388732826,41.815862306],[-71.388998513,41.815809539],[-71.389810225,41.815570468],[-71.389822288,41.815556968],[-71.38993238,41.815531743],[-71.389941731,41.815531734],[-71.390699514,41.815308538],[-71.391099514,41.815208538],[-71.391552254,41.814936895],[-71.39154673,41.814918752],[-71.391541404,41.814886365],[-71.39153877,41.814853226],[-71.391537022,41.814820088],[-71.391533501,41.81478697],[-71.391529979,41.814754562],[-71.391528261,41.81472211],[-71.391527432,41.814688286],[-71.391528377,41.814653732],[-71.391531126,41.814618517],[-71.391536595,41.814583945],[-71.391542123,41.814550699],[-71.391547619,41.814518139],[-71.391552258,41.814486264],[-71.391555123,41.814455097],[-71.391554351,41.814423972],[-71.391551773,41.814393577],[-71.3915447,41.814363887],[-71.391532275,41.814336318],[-71.391512603,41.814309543],[-71.391489381,41.814284823],[-71.391463411,41.814258774],[-71.391436553,41.814233456],[-71.391407862,41.81420745],[-71.391378256,41.814180117],[-71.39134948,41.814150726],[-71.391321562,41.814119347],[-71.391297223,41.81408653],[-71.391276464,41.814052299],[-71.391259313,41.814017339],[-71.391245741,41.813980325],[-71.391234862,41.813942581],[-71.39122487,41.813904129],[-71.391214906,41.813867049],[-71.391202307,41.813833375],[-71.391187933,41.813801093],[-71.391174447,41.813768127],[-71.391163683,41.813734454],[-71.391160103,41.81370001],[-71.391160161,41.813666119],[-71.391163856,41.813632231],[-71.391173848,41.81359828],[-71.391188395,41.813564265],[-71.391207436,41.813530186],[-71.391226508,41.813496084],[-71.391246494,41.813463332],[-71.391263759,41.8134306],[-71.391280139,41.813397205],[-71.391294628,41.813361795],[-71.391309146,41.813326408],[-71.391325498,41.813291686],[-71.391342764,41.813258931],[-71.391363666,41.813226843],[-71.391386401,41.813195397],[-71.391409165,41.813164638],[-71.391430125,41.813134585],[-71.391449368,41.813107252],[-71.391465946,41.813083324],[-71.391478143,41.813064881],[-71.391487822,41.81305325],[-71.391494895,41.813046396],[-71.391498418,41.81304226],[-71.391501051,41.813039541],[-71.391503686,41.813036113],[-71.391508037,41.813029966],[-71.391516827,41.813019683],[-71.391527365,41.813006704],[-71.391538733,41.812990272],[-71.391551818,41.812971143],[-71.391565733,41.812949316],[-71.391581425,41.812925411],[-71.391600695,41.81290009],[-71.391622628,41.812872714],[-71.391648141,41.81284326],[-71.391674483,41.812811772],[-71.391689338,41.812794429],[-71.391743384,41.81268455],[-71.39180608,41.812630181],[-71.391858491,41.812583693],[-71.391908951,41.812533726],[-71.391961307,41.81248367],[-71.392006109,41.812435825],[-71.392047176,41.812390881],[-71.392097472,41.812329526],[-71.392134667,41.812278907],[-71.392155695,41.812225619],[-71.392153746,41.812203069],[-71.392150056,41.812161147],[-71.392144472,41.812100928],[-71.392143955,41.812062669],[-71.393515638,41.811579932],[-71.393606222,41.811554448],[-71.393673199,41.811534043],[-71.39375233,41.811502237],[-71.393815325,41.81146845],[-71.393881217,41.811438873],[-71.393968986,41.811414781],[-71.394001691,41.811402011],[-71.394099514,41.811108538],[-71.394089818,41.811050362],[-71.392588155,41.811577284],[-71.392512649,41.811597704],[-71.391948807,41.811791331],[-71.391868811,41.811627538],[-71.391934815,41.81160432],[-71.392026375,41.811580257],[-71.392108431,41.811554812],[-71.392186699,41.811527946],[-71.392257524,41.811510381],[-71.392345458,41.811497634],[-71.392389883,41.811491616],[-71.392473919,41.811470404],[-71.392523565,41.81143107],[-71.392554016,41.811372692],[-71.392629466,41.811349413],[-71.392714558,41.811336],[-71.392790089,41.811318416],[-71.39289218,41.811303418],[-71.392984715,41.811280727],[-71.393061003,41.811249674],[-71.39311057,41.811202496],[-71.393120229,41.811147826],[-71.393119218,41.811075583],[-71.393118206,41.81100398],[-71.393117251,41.810934526],[-71.39311253,41.810869392],[-71.393121214,41.810812617],[-71.393173867,41.810784537],[-71.393213018,41.810806208],[-71.39324941,41.810832883],[-71.393295564,41.810816209],[-71.393310152,41.810774968],[-71.393348839,41.810763363],[-71.393383544,41.810738286],[-71.393383563,41.810671623],[-71.393390267,41.810610639],[-71.393444378,41.810550681],[-71.393519473,41.810501172],[-71.393559481,41.810448428],[-71.393577584,41.810388734],[-71.393574731,41.81032072],[-71.393544347,41.81024726],[-71.393505788,41.810200092],[-71.393442346,41.81013536],[-71.393390633,41.810094652],[-71.393333236,41.81005332],[-71.393278595,41.810008356],[-71.393225825,41.809959871],[-71.393175869,41.809910656],[-71.393128755,41.809861399],[-71.393088195,41.809805036],[-71.39304468,41.809742289],[-71.392993669,41.809684567],[-71.392935129,41.809631868],[-71.392869011,41.809577813],[-71.392799076,41.809521674],[-71.392730093,41.809463386],[-71.392667653,41.809403617],[-71.392609089,41.809347397],[-71.392551472,41.809291863],[-71.392494721,41.80922995],[-71.392435044,41.809163758],[-71.392364023,41.80909911],[-71.392287376,41.809035898],[-71.392216383,41.808973377],[-71.392157713,41.808908626],[-71.392108516,41.808844525],[-71.392054554,41.808779046],[-71.391995827,41.808711483],[-71.391935316,41.808650984],[-71.391881544,41.808599661],[-71.391829668,41.808548318],[-71.391773001,41.808492076],[-71.391696791,41.808424038],[-71.391678932,41.808410941],[-71.391641173,41.808380101],[-71.391606075,41.808348555],[-71.391575474,41.808315115],[-71.391550226,41.808279027],[-71.391528524,41.808242965],[-71.391507739,41.808206264],[-71.391481639,41.808168209],[-71.391450221,41.808129394],[-71.391413455,41.808090573],[-71.391374027,41.808053054],[-71.391332758,41.808019513],[-71.391291453,41.807989264],[-71.39125097,41.807961074],[-71.391213208,41.807932841],[-71.391178042,41.80790532],[-71.391145565,41.80787851],[-71.391114859,41.807853028],[-71.3910877,41.807826886],[-71.391059621,41.807802069],[-71.391030655,41.807777915],[-71.391002542,41.807755112],[-71.390978859,41.807733661],[-71.390957864,41.807713562],[-71.390939499,41.807692826],[-71.390922019,41.807672067],[-71.390905458,41.807650715],[-71.390891558,41.807628656],[-71.390881205,41.80760532],[-71.390877118,41.80758199],[-71.390876547,41.807558069],[-71.390879553,41.807534197],[-71.390880785,41.8075103],[-71.390877556,41.807486354],[-71.390870812,41.807461718],[-71.390861376,41.807438383],[-71.390850135,41.807416349],[-71.390835348,41.807394313],[-71.390818786,41.807373578],[-71.390799501,41.807354144],[-71.390777554,41.807336697],[-71.390753769,41.807321238],[-71.390728209,41.807307744],[-71.390699921,41.807298227],[-71.39067071,41.807292687],[-71.390640578,41.807289114],[-71.390609528,41.807286203],[-71.390577593,41.807282651],[-71.390543914,41.807279737],[-71.390509284,41.807279453],[-71.390471044,41.807280468],[-71.390431059,41.807283472],[-71.390389238,41.807287823],[-71.39034656,41.807292767],[-71.39030385,41.807298398],[-71.390261992,41.807306065],[-71.390219244,41.807316361],[-71.390175546,41.807327959],[-71.39013099,41.807340243],[-71.39008552,41.807351176],[-71.390039197,41.807360782],[-71.389992018,41.807369702],[-71.389945694,41.807379971],[-71.389899367,41.807391567],[-71.38985386,41.807405839],[-71.389809237,41.807422079],[-71.389765467,41.807439669],[-71.389720845,41.807455268],[-71.38967711,41.807470205],[-71.389633408,41.807483816],[-71.389588787,41.807498752],[-71.38954502,41.807514993],[-71.389498589,41.807533266],[-71.389450354,41.807552155],[-71.389399493,41.807569669],[-71.389350404,41.807587917],[-71.389303057,41.807605457],[-71.389256595,41.807624371],[-71.389211935,41.807643926],[-71.389169905,41.807662866],[-71.389130629,41.807679866],[-71.389090408,41.807695469],[-71.389048476,41.807710408],[-71.389004707,41.807727334],[-71.38896182,41.807746937],[-71.388918867,41.807769215],[-71.388875026,41.807792133],[-71.38883473,41.807815695],[-71.388796208,41.807838686],[-71.388758603,41.80786161],[-71.388722771,41.807883918],[-71.388688714,41.807905565],[-71.388657351,41.807924607],[-71.388627794,41.807941638],[-71.388598304,41.807956017],[-71.388568784,41.807969732],[-71.388540215,41.807981482],[-71.388515194,41.807991909],[-71.388493751,41.808001058],[-71.388472308,41.808010185],[-71.388450864,41.808019975],[-71.38842939,41.808029788],[-71.388406206,41.808038226],[-71.38838122,41.808046],[-71.388355348,41.808053774],[-71.388328622,41.808060219],[-71.388302784,41.808066003],[-71.388276978,41.808070414],[-71.388253834,41.808073571],[-71.388233349,41.808076729],[-71.38821467,41.808078564],[-71.388196909,41.808079781],[-71.388179116,41.808081639],[-71.388161325,41.808082811],[-71.388143564,41.808083983],[-71.388126692,41.808083875],[-71.38810805,41.80808173],[-71.388085928,41.808077546],[-71.388059343,41.808072695],[-71.388029213,41.808068481],[-71.387999081,41.808064907],[-71.387968065,41.808060006],[-71.387937047,41.808055767],[-71.387907771,41.80805224],[-71.3878803,41.808048005],[-71.387856374,41.808043843],[-71.387837797,41.808039708],[-71.387817483,41.808032233],[-71.38780951,41.808029504],[-71.38779799,41.808027435],[-71.387782143,41.80801802],[-71.387770727,41.808009273],[-71.387758426,41.807999222],[-71.38774619,41.807987158],[-71.387733926,41.807973768],[-71.387721694,41.807959714],[-71.38770861,41.80794303],[-71.387693789,41.807923623],[-71.387678117,41.807900899],[-71.387662481,41.807875522],[-71.38764422,41.807848153],[-71.387624218,41.807820074],[-71.387601529,41.807790002],[-71.387577986,41.807759244],[-71.387556248,41.807727869],[-71.387535364,41.807697113],[-71.387517105,41.807668395],[-71.38749881,41.807643016],[-71.387479624,41.807620243],[-71.387460373,41.807599482],[-71.387440237,41.80757808],[-71.38741928,41.807554001],[-71.387397442,41.807527223],[-71.387374786,41.807495848],[-71.387350424,41.80746175],[-71.387325214,41.807423008],[-71.38730004,41.807380974],[-71.387274015,41.80733688],[-71.387246213,41.807294157],[-71.387218378,41.807253378],[-71.387189591,41.807215296],[-71.387158141,41.807179155],[-71.387124032,41.807143012],[-71.387089007,41.807106845],[-71.387056672,41.807070063],[-71.387026996,41.807033261],[-71.387001784,41.806995891],[-71.386978348,41.806956488],[-71.386955829,41.806917086],[-71.386935053,41.806877754],[-71.386915194,41.806837714],[-71.386896224,41.806797012],[-71.386878203,41.80675503],[-71.386861925,41.806712364],[-71.386846533,41.806670408],[-71.386831994,41.806629756],[-71.386817451,41.806591756],[-71.386802839,41.806557736],[-71.386789047,41.806527101],[-71.386777022,41.806499738],[-71.386765851,41.806473085],[-71.386760885,41.806447102],[-71.386759464,41.806420527],[-71.386758961,41.806393953],[-71.386755765,41.806368657],[-71.386755227,41.806344735],[-71.386760005,41.806321528],[-71.38677102,41.806297687],[-71.38678821,41.806273257],[-71.386808974,41.806250158],[-71.386827935,41.806227056],[-71.386842526,41.806203264],[-71.386852594,41.806178736],[-71.386854751,41.806151524],[-71.386851653,41.806122935],[-71.38684321,41.806092305],[-71.386832998,41.806059639],[-71.386822818,41.806025669],[-71.386814411,41.805991723],[-71.386804262,41.805957753],[-71.386790504,41.805925106],[-71.386772315,41.805892386],[-71.386749692,41.805860347],[-71.386724377,41.805829541],[-71.386698142,41.805800769],[-71.38667276,41.805773324],[-71.38664918,41.80574659],[-71.386627342,41.805720475],[-71.386606391,41.805693744],[-71.386585472,41.805666327],[-71.386563666,41.805638908],[-71.38654186,41.805611513],[-71.386520023,41.805584735],[-71.386499106,41.805556014],[-71.386477337,41.805525257],[-71.386454682,41.805494522],[-71.386432024,41.805465113],[-71.386409335,41.805436345],[-71.386386644,41.805408239],[-71.38636484,41.805380181],[-71.386341294,41.805351411],[-71.386317687,41.805323328],[-71.386294108,41.805296548],[-71.386272271,41.805269793],[-71.386253122,41.805243749],[-71.386235717,41.805217044],[-71.38622366,41.805190345],[-71.386217806,41.805165069],[-71.386213725,41.805139772],[-71.386204292,41.805115773],[-71.386189574,41.80509042],[-71.386174827,41.805064404],[-71.386160111,41.805037701],[-71.386144511,41.805010335],[-71.386128024,41.804982967],[-71.386107104,41.804956213],[-71.386082574,41.804931422],[-71.386057155,41.804907979],[-71.386031768,41.80488385],[-71.386005465,41.804859057],[-71.385977424,41.80483225],[-71.385945835,41.804806743],[-71.385912411,41.804781897],[-71.385879935,41.804756412],[-71.385848349,41.804729556],[-71.385817651,41.804701419],[-71.385785213,41.804671932],[-71.385752808,41.804641096],[-71.385719489,41.804608955],[-71.385685348,41.804574778],[-71.385650355,41.804538633],[-71.385612673,41.804501777],[-71.385575942,41.804463641],[-71.385539147,41.804426786],[-71.385506781,41.80439133],[-71.385477957,41.804357867],[-71.385450872,41.804326418],[-71.385422047,41.804293619],[-71.385390534,41.804260176],[-71.385356393,41.804225999],[-71.385319594,41.804191842],[-71.385283649,41.804158303],[-71.385245931,41.804124809],[-71.385206441,41.804091267],[-71.385167868,41.804057725],[-71.385129231,41.804025556],[-71.385092397,41.803993343],[-71.385053793,41.803960465],[-71.385014301,41.803927586],[-71.384973006,41.803895368],[-71.384929936,41.803863835],[-71.384885977,41.803834221],[-71.38484376,41.803804678],[-71.384804233,41.803774406],[-71.384769139,41.80374423],[-71.384737592,41.803712777],[-71.384707848,41.803681325],[-71.384676364,41.80364914],[-71.384643044,41.803617685],[-71.384609754,41.803586824],[-71.384575546,41.803556672],[-71.384540418,41.803528485],[-71.384505288,41.803500961],[-71.384469272,41.803473437],[-71.384435029,41.803445914],[-71.384401706,41.803416403],[-71.384368387,41.803384902],[-71.38433336,41.803351433],[-71.384300108,41.803316616],[-71.384267775,41.803280451],[-71.384237185,41.803244356],[-71.384209318,41.803206251],[-71.384184999,41.803166847],[-71.384165177,41.80312548],[-71.384148935,41.80308151],[-71.38413089,41.803037538],[-71.384109297,41.80299482],[-71.384085897,41.80295409],[-71.384060689,41.802916674],[-71.384036333,41.802880631],[-71.384010204,41.802845204],[-71.383984043,41.80281044],[-71.383956106,41.802777641],[-71.383928137,41.802745551],[-71.383901019,41.802716091],[-71.3838739,41.802687295],[-71.383844121,41.802659159],[-71.383810732,41.802632986],[-71.383773794,41.802608777],[-71.383735017,41.802587195],[-71.383695351,41.802567602],[-71.383655651,41.802549358],[-71.383618578,41.802532444],[-71.383584195,41.802514914],[-71.383549846,41.802495349],[-71.383517273,41.802474483],[-71.383484766,41.802450987],[-71.38345226,41.802426141],[-71.383420642,41.802401274],[-71.383390796,41.802376476],[-71.383363642,41.802350378],[-71.383338262,41.802323573],[-71.383311141,41.802296103],[-71.383280475,41.802267966],[-71.383248005,41.802241108],[-71.38321376,41.802214912],[-71.38318037,41.802189402],[-71.383147866,41.802164556],[-71.383116245,41.802141061],[-71.383087218,41.802119557],[-71.38306088,41.802098743],[-71.383036313,41.802078639],[-71.383011747,41.802057826],[-71.382987183,41.802036373],[-71.382962653,41.802012908],[-71.382943405,41.801992009],[-71.382939898,41.801988164],[-71.382918093,41.801962071],[-71.382897145,41.801934676],[-71.382877113,41.801908608],[-71.382856164,41.801882493],[-71.382835212,41.801857751],[-71.382813342,41.80183367],[-71.382791504,41.801808927],[-71.382771438,41.801784163],[-71.382754883,41.801762123],[-71.382740884,41.801746032],[-71.382730425,41.801732666],[-71.381535566,41.800269325],[-71.381531134,41.800269961],[-71.380442947,41.798928381],[-71.380438659,41.798917079],[-71.380423127,41.798887699],[-71.379759446,41.798103659],[-71.379735347,41.798112736],[-71.379724399,41.798116544],[-71.379716601,41.798119234],[-71.379695196,41.798125706],[-71.379672936,41.798131515],[-71.379651532,41.798137347],[-71.379631015,41.798143157],[-71.379625358,41.798144774],[-71.379613188,41.798148306],[-71.379597987,41.798154854],[-71.379589869,41.798164724],[-71.379590579,41.798177372],[-71.379599263,41.798191422],[-71.379610604,41.798206116],[-71.379624606,41.798220195],[-71.37963946,41.798235578],[-71.379653426,41.798252287],[-71.379666506,41.798269018],[-71.379680503,41.798285086],[-71.379692731,41.798299781],[-71.379703157,41.79831381],[-71.382539658,41.80184542],[-71.38253962,41.801849445],[-71.382549089,41.801869442],[-71.382557738,41.801886099],[-71.38256901,41.801906144],[-71.3825811,41.801930168],[-71.382590496,41.801956134],[-71.382592773,41.801981429],[-71.3825853,41.8020066],[-71.382567227,41.802029038],[-71.382543838,41.802050145],[-71.382522221,41.802071894],[-71.382506805,41.802094999],[-71.382493096,41.802120804],[-71.382478497,41.802148597],[-71.382460353,41.802176387],[-71.382436008,41.802202112],[-71.382404578,41.802225086],[-71.382367895,41.802245402],[-71.382326783,41.802264341],[-71.382283899,41.802283255],[-71.382238326,41.802301503],[-71.382190126,41.802319086],[-71.382139269,41.802335293],[-71.382085784,41.802351452],[-71.382033156,41.802366972],[-71.381979673,41.802382513],[-71.381926158,41.802398009],[-71.381873563,41.802412225],[-71.381820081,41.80242644],[-71.381770181,41.802437983],[-71.381722121,41.802445549],[-71.381675015,41.802449823],[-71.381629685,41.802452132],[-71.381584426,41.802449112],[-71.381538382,41.802440786],[-71.381490534,41.802433076],[-71.381438219,41.802428036],[-71.381383176,41.802426905],[-71.381321898,41.80242643],[-71.381260648,41.802426618],[-71.381202915,41.802426147],[-71.381147837,41.802427691],[-71.381094529,41.802430586],[-71.381042961,41.802434191],[-71.380990544,41.802435075],[-71.380939079,41.802432666],[-71.380884107,41.802426274],[-71.380829169,41.80241851],[-71.380776036,41.802409445],[-71.380726452,41.802398416],[-71.380681366,41.802384763],[-71.380644328,41.802365194],[-71.380612677,41.802342384],[-71.38058283,41.802318227],[-71.380549367,41.802299988],[-71.380508609,41.802292353],[-71.380461612,41.802287319],[-71.380412945,41.802276292],[-71.380364319,41.802259958],[-71.380316644,41.802241659],[-71.380269822,41.802224665],[-71.380225624,41.802209708],[-71.380186778,41.802193454],[-71.380159556,41.802171952],[-71.38013864,41.802144533],[-71.380115987,41.802115123],[-71.380086212,41.802085637],[-71.380048427,41.802057446],[-71.380004372,41.802031833],[-71.379955883,41.802007541],[-71.379904733,41.801984528],[-71.379855323,41.801962225],[-71.379811231,41.801939927],[-71.379774265,41.801915716],[-71.379741794,41.801889543],[-71.379709327,41.801862044],[-71.379677743,41.801835872],[-71.379652331,41.801810438],[-71.379631416,41.801783019],[-71.379609616,41.801754959],[-71.379580691,41.80172879],[-71.379541915,41.80170787],[-71.379497716,41.80169424],[-71.379454332,41.801685939],[-71.379413611,41.801675628],[-71.379374764,41.801660036],[-71.379336839,41.801641793],[-71.379295332,41.801626862],[-71.379252835,41.801617875],[-71.379212962,41.801611568],[-71.379184716,41.801598708],[-71.379163728,41.801577304],[-71.379144589,41.801548561],[-71.379123712,41.801517163],[-71.379096662,41.801485713],[-71.379065048,41.801459563],[-71.379028042,41.801439994],[-71.378991923,41.801420426],[-71.378962046,41.801396932],[-71.378938473,41.80136951],[-71.378916674,41.801340787],[-71.378892183,41.801313982],[-71.37885968,41.801289135],[-71.378819164,41.801267572],[-71.378775888,41.801250627],[-71.378736973,41.801238991],[-71.378704187,41.801234772],[-71.378674028,41.801231172],[-71.378643084,41.801222975],[-71.378609589,41.801205423],[-71.378572589,41.801183178],[-71.378529451,41.801158228],[-71.378480075,41.801134621],[-71.378429748,41.801113574],[-71.378383848,41.801094613],[-71.378340607,41.801075678],[-71.378299172,41.801054755],[-71.378257708,41.801033832],[-71.378217089,41.801018192],[-71.378181754,41.801004639],[-71.378153609,41.800986452],[-71.378126423,41.800962319],[-71.378094874,41.80093482],[-71.378057023,41.800909968],[-71.378012896,41.800890985],[-71.377966037,41.800878015],[-71.377915568,41.800867624],[-71.377866836,41.800859271],[-71.377816296,41.800853546],[-71.377763983,41.800848459],[-71.377710819,41.800840056],[-71.377655954,41.800827031],[-71.377601125,41.800810621],[-71.377546328,41.800793594],[-71.377492351,41.800779175],[-71.377440143,41.800766793],[-71.377391482,41.800753774],[-71.377349056,41.800740145],[-71.37731106,41.800727915],[-71.377274803,41.800716968],[-71.377239431,41.800706731],[-71.377202285,41.800697132],[-71.377165109,41.80068751],[-71.377129667,41.800681938],[-71.377092311,41.800686266],[-71.37705393,41.80069926],[-71.377015545,41.800714221],[-71.376978936,41.800727903],[-71.376943313,41.800736921],[-71.376909537,41.800739286],[-71.376876684,41.800738359],[-71.376845639,41.800734827],[-71.376815511,41.800731227],[-71.376788043,41.800727058],[-71.376763269,41.800720834],[-71.376739381,41.80071468],[-71.376717264,41.800709191],[-71.37669692,41.800703703],[-71.376675691,41.800697551],[-71.376655346,41.800692087],[-71.376634117,41.800685935],[-71.376614661,41.800679785],[-71.37659609,41.80067366],[-71.376578436,41.800668198],[-71.376560717,41.800664085],[-71.37654211,41.800661275],[-71.3765235,41.800659815],[-71.376505746,41.800658309],[-71.37648799,41.800658176],[-71.376472005,41.800658067],[-71.376456019,41.800659239],[-71.376427527,41.800663004],[-71.376414164,41.800666901],[-71.376403424,41.80067343],[-71.376392615,41.800683983],[-71.376382624,41.80069854],[-71.376372626,41.80071639],[-71.376368206,41.800726264],[-71.376363418,41.800736916],[-71.376354203,41.800760758],[-71.376345838,41.80078794],[-71.376336553,41.800816425],[-71.37632727,41.800844292],[-71.376318907,41.800870102],[-71.376314094,41.80089356],[-71.376312956,41.800913248],[-71.376318024,41.800931892],[-71.376329333,41.800947272],[-71.376345138,41.800961353],[-71.376365378,41.800973496],[-71.376387424,41.800983604],[-71.376408618,41.800992432],[-71.376425384,41.800999219],[-71.376443919,41.801007997],[-71.37645622,41.801016061],[-71.376473015,41.801023534],[-71.376494178,41.801032338],[-71.376518915,41.801042473],[-71.376547166,41.801052657],[-71.376578994,41.801062227],[-71.376614398,41.801071802],[-71.376651543,41.801081401],[-71.37668961,41.801089034],[-71.376726789,41.801097329],[-71.376763082,41.801105578],[-71.376795829,41.8011138],[-71.376822375,41.801120644],[-71.376841833,41.80112613],[-71.376863985,41.80112963],[-71.376879083,41.801129761],[-71.376885254,41.801131117],[-71.376904673,41.801140582],[-71.37691609,41.801147981],[-71.376927534,41.801156706],[-71.376938029,41.801166757],[-71.376949407,41.801178158],[-71.37695993,41.801188872],[-71.376972197,41.801198924],[-71.37698187,41.801206984],[-71.376996796,41.801217085],[-71.377002075,41.801221756],[-71.377010935,41.801223161],[-71.377015332,41.801225201],[-71.377024901,41.801239893],[-71.377032735,41.801250581],[-71.377158747,41.801362109],[-71.377173096,41.801369992],[-71.377194253,41.801382112],[-71.377217116,41.801397573],[-71.377243487,41.801415713],[-71.377273367,41.801437219],[-71.377305901,41.801461403],[-71.377340142,41.801488264],[-71.377374348,41.801517093],[-71.377409471,41.801545945],[-71.37744637,41.801572832],[-71.377485107,41.801597732],[-71.377526542,41.801618655],[-71.377567978,41.801638252],[-71.377611254,41.801655198],[-71.377653646,41.80167084],[-71.377694264,41.801687097],[-71.377731302,41.80170534],[-71.377763874,41.801725545],[-71.377796414,41.801747053],[-71.377832495,41.801770601],[-71.377871233,41.80179486],[-71.377910825,41.801820424],[-71.37795127,41.801847292],[-71.377990826,41.801875531],[-71.37802861,41.801903722],[-71.378065541,41.801930655],[-71.37810336,41.801956171],[-71.378142956,41.801979768],[-71.378183535,41.80200069],[-71.378226776,41.802019626],[-71.378270907,41.802037281],[-71.378312411,41.802053539],[-71.378352142,41.802070459],[-71.37839007,41.802087376],[-71.378426222,41.802105595],[-71.378463264,41.802122534],[-71.378501223,41.802138788],[-71.37854007,41.802154357],[-71.378579801,41.802171276],[-71.378620418,41.802188242],[-71.378660119,41.802205138],[-71.378698962,41.802222765],[-71.378735969,41.802241648],[-71.378773007,41.802260531],[-71.378810935,41.802277471],[-71.378850701,41.802291738],[-71.378891358,41.802304015],[-71.378931192,41.802314966],[-71.378967454,41.802323877],[-71.379001123,41.802330133],[-71.379033023,41.802334374],[-71.379061378,41.802338589],[-71.379085267,41.802344766],[-71.379098451,41.802354842],[-71.379100864,41.802372133],[-71.379096083,41.80239534],[-71.379089457,41.802424537],[-71.37908276,41.802459016],[-71.379075997,41.802496193],[-71.379070088,41.802534035],[-71.379066042,41.802572518],[-71.379061935,41.802611025],[-71.379059571,41.802649557],[-71.3790573,41.802686739],[-71.37905674,41.802724586],[-71.379056179,41.802763142],[-71.379054731,41.802801674],[-71.379053282,41.802840847],[-71.379050057,41.802881367],[-71.379048573,41.802923193],[-71.37904617,41.802965726],[-71.37904291,41.803008876],[-71.379039621,41.803051385],[-71.379036397,41.80309186],[-71.379032289,41.80313103],[-71.379028183,41.803168896],[-71.379022337,41.803206074],[-71.379015606,41.803241903],[-71.379008875,41.803278394],[-71.378999454,41.803314837],[-71.378989144,41.803352651],[-71.378978834,41.803390419],[-71.378967636,41.803428896],[-71.378953781,41.803466615],[-71.37893812,41.803505704],[-71.378920683,41.803546117],[-71.378901444,41.803586483],[-71.378879577,41.80362616],[-71.378855019,41.803666498],[-71.378830494,41.803705509],[-71.378805971,41.80374388],[-71.378781483,41.803779529],[-71.378757029,41.803813257],[-71.378735237,41.803845617],[-71.378715247,41.803878664],[-71.37869434,41.803911733],[-71.378670774,41.803944776],[-71.378648094,41.803977797],[-71.378629841,41.804013545],[-71.378613327,41.804050621],[-71.378593272,41.804085657],[-71.37856708,41.804117371],[-71.378535608,41.804145032],[-71.378501513,41.804169328],[-71.378467422,41.804191635],[-71.378438677,41.804215983],[-71.378414266,41.804243034],[-71.378395227,41.804274115],[-71.378380491,41.80430854],[-71.378364894,41.804345639],[-71.37834569,41.804382712],[-71.378325632,41.804419098],[-71.378304692,41.80445347],[-71.378284737,41.804483865],[-71.378266593,41.804510304],[-71.378247598,41.804534091],[-71.378226932,41.804552501],[-71.378205384,41.804568944],[-71.378182066,41.804583395],[-71.378158812,41.804596497],[-71.378134677,41.804606922],[-71.378112385,41.804612707],[-71.378091117,41.804609895],[-71.378073536,41.804597115],[-71.378056948,41.804576402],[-71.378040464,41.804549673],[-71.37802313,41.804519651],[-71.378004942,41.804488302],[-71.377984065,41.804456903],[-71.377961446,41.804425458],[-71.377936992,41.804394719],[-71.377910758,41.804367249],[-71.377884455,41.804344443],[-71.377856313,41.804324289],[-71.377826362,41.804307449],[-71.37779368,41.804295888],[-71.377757351,41.804289629],[-71.377719212,41.804286638],[-71.377680188,41.804283029],[-71.377643858,41.804277434],[-71.377609336,41.804269187],[-71.37757485,41.804258242],[-71.377540395,41.804246679],[-71.377505945,41.804233127],[-71.377472415,41.804217586],[-71.377438952,41.804198707],[-71.37740638,41.804177839],[-71.377377419,41.804154344],[-71.37735204,41.804128224],[-71.377325809,41.80409945],[-71.37729692,41.80407065],[-71.377265335,41.804045141],[-71.377232797,41.804022283],[-71.377202915,41.804000823],[-71.377173887,41.803980622],[-71.377143972,41.803961105],[-71.377114057,41.803940972],[-71.377084208,41.80391878],[-71.377054366,41.803892609],[-71.377022818,41.803863829],[-71.376993077,41.803832993],[-71.376962419,41.803802179],[-71.376931756,41.803774041],[-71.376899254,41.803748553],[-71.376864944,41.803725647],[-71.376832371,41.803705488],[-71.376801535,41.803687937],[-71.376770663,41.803673062],[-71.376737983,41.803660884],[-71.376704382,41.803650648],[-71.376667233,41.80364169],[-71.376628279,41.803634033],[-71.376587521,41.803626396],[-71.376546795,41.803618097],[-71.376506957,41.803609158],[-71.376470662,41.80360155],[-71.376435185,41.803597281],[-71.376400589,41.803596329],[-71.376366815,41.803596727],[-71.376333036,41.803599778],[-71.376300073,41.803607495],[-71.3762697,41.803619194],[-71.376243755,41.803632979],[-71.376224863,41.80365075],[-71.376208564,41.803671223],[-71.376194917,41.803695038],[-71.376185666,41.80372151],[-71.376180815,41.803748741],[-71.376176847,41.803777917],[-71.376171104,41.803807801],[-71.376163559,41.803837636],[-71.376155124,41.803868774],[-71.376146686,41.803901948],[-71.376133755,41.803935048],[-71.376117311,41.803966841],[-71.376099095,41.803998586],[-71.376079992,41.80403033],[-71.376058265,41.804060036],[-71.376033914,41.804087109],[-71.376006022,41.804112097],[-71.375977279,41.804134455],[-71.375947683,41.804155485],[-71.375915431,41.804174523],[-71.375911332,41.804176576],[-71.375883216,41.804190862],[-71.375854577,41.804206565],[-71.375832107,41.804224995],[-71.375814919,41.804246771],[-71.37580301,41.8042726],[-71.37579461,41.804301771],[-71.37578706,41.804333596],[-71.375777704,41.804366746],[-71.375762999,41.80440053],[-71.375743863,41.804433577],[-71.375723873,41.80446532],[-71.375704772,41.804496401],[-71.375685666,41.804529495],[-71.375666563,41.804561193],[-71.375646572,41.804593599],[-71.37562655,41.804626669],[-71.375609185,41.804660404],[-71.375594511,41.804693525],[-71.375580724,41.804726624],[-71.375566939,41.804758442],[-71.375554073,41.80478889],[-71.375541212,41.804817347],[-71.37553462,41.804843891],[-71.375537878,41.804865848],[-71.375549151,41.804884521],[-71.375555072,41.804904492],[-71.375549438,41.804925708],[-71.375532281,41.804946866],[-71.375509811,41.804965251],[-71.375485533,41.80498567],[-71.375463877,41.80501007],[-71.375447467,41.805039873],[-71.375433617,41.805073612],[-71.375422454,41.805108749],[-71.37541306,41.805145901],[-71.375403635,41.805183007],[-71.375392402,41.805222786],[-71.375381166,41.805263892],[-71.375370817,41.805305022],[-71.37536047,41.805344802],[-71.375346615,41.80538124],[-71.375331051,41.805415663],[-71.375311915,41.805448734],[-71.375288381,41.805479787],[-71.37526219,41.805509488],[-71.375233408,41.805535824],[-71.375202892,41.805558156],[-71.375168868,41.805576506],[-71.375134027,41.80559083],[-71.375096561,41.805603161],[-71.375057323,41.805614781],[-71.375018053,41.805627774],[-71.3749797,41.805640081],[-71.374941352,41.805650399],[-71.374903105,41.805655434],[-71.374866705,41.805653771],[-71.374833068,41.805646233],[-71.374803044,41.805635361],[-71.374776602,41.805621199],[-71.374766715,41.805613024],[-71.374753776,41.805602376],[-71.374736336,41.805580312],[-71.374730453,41.805556339],[-71.374737931,41.805530482],[-71.37475611,41.805502717],[-71.374780499,41.805472351],[-71.374810268,41.805441373],[-71.374844437,41.805411086],[-71.374882148,41.805382816],[-71.374922483,41.805357224],[-71.374964521,41.805335636],[-71.375006557,41.805314711],[-71.375046823,41.805293098],[-71.375080033,41.805268779],[-71.375102642,41.80524175],[-71.375109271,41.805211868],[-71.37510356,41.805177947],[-71.37509697,41.805140687],[-71.375091329,41.805102101],[-71.375084738,41.805064841],[-71.375077256,41.805030232],[-71.375070594,41.804998277],[-71.375063075,41.804966984],[-71.375054572,41.804938366],[-71.375046065,41.804912378],[-71.375038405,41.80489037],[-71.375027097,41.80487435],[-71.375011253,41.804864247],[-71.374989134,41.804859421],[-71.374964288,41.804857885],[-71.37493498,41.804856343],[-71.374906621,41.804853454],[-71.37488762,41.804848242],[-71.374879189,41.804845923],[-71.374855404,41.804833091],[-71.374834351,41.804814338],[-71.374814286,41.804790235],[-71.374799577,41.804762891],[-71.374799146,41.804732979],[-71.374810239,41.804702507],[-71.374829344,41.804670099],[-71.374852027,41.804636393],[-71.374879176,41.80460141],[-71.374909867,41.804567758],[-71.374943185,41.804534795],[-71.374977389,41.804501855],[-71.375011627,41.804467566],[-71.375044977,41.804433963],[-71.375077409,41.804400998],[-71.375104521,41.804368669],[-71.375123624,41.804336925],[-71.375132944,41.804306428],[-71.375137834,41.80427524],[-71.375139178,41.804244026],[-71.375139606,41.804212788],[-71.375137405,41.804181546],[-71.375131625,41.804151605],[-71.375122235,41.804123626],[-71.375112022,41.804094297],[-71.375100894,41.804064304],[-71.375089832,41.804031659],[-71.37507608,41.803998987],[-71.375062329,41.803966338],[-71.375050379,41.803934332],[-71.375036595,41.803902987],[-71.375021067,41.803872303],[-71.375001929,41.803842919],[-71.374981048,41.803814859],[-71.374960102,41.803788103],[-71.374942733,41.803761373],[-71.374931569,41.803734055],[-71.374924867,41.803706766],[-71.374921711,41.80367948],[-71.374925647,41.803651607],[-71.37493759,41.803623812],[-71.374954882,41.803596022],[-71.374976574,41.803568969],[-71.375000039,41.803541918],[-71.37502442,41.803514868],[-71.375045226,41.803487791],[-71.3750616,41.803460687],[-71.375069078,41.803434167],[-71.375067661,41.803408232],[-71.375060073,41.803380942],[-71.375052488,41.803352302],[-71.375050253,41.80332305],[-71.375054255,41.803292502],[-71.375060918,41.803260676],[-71.375069389,41.803226839],[-71.375077861,41.803192362],[-71.375089058,41.803155258],[-71.375100257,41.803117469],[-71.375111491,41.803077026],[-71.375121908,41.803032603],[-71.375130555,41.802986807],[-71.375138317,41.802940369],[-71.375145189,41.802895233],[-71.375152026,41.802852773],[-71.37515883,41.802811617],[-71.375165666,41.80276982],[-71.37517339,41.802726698],[-71.375179346,41.802681562],[-71.375185334,41.802635762],[-71.375191357,41.80258731],[-71.375197379,41.80253952],[-71.375203368,41.802493035],[-71.375207582,41.802447896],[-71.375212649,41.802404085],[-71.375215943,41.80236025],[-71.375218351,41.802316413],[-71.375222499,41.802273264],[-71.375227531,41.802232106],[-71.375233444,41.802192961],[-71.375238372,41.802157771],[-71.375243263,41.80212592],[-71.375249036,41.802096037],[-71.375256549,41.802067573],[-71.375266686,41.802041034],[-71.375278594,41.802015251],[-71.375292274,41.801990087],[-71.375305101,41.801963619],[-71.375319702,41.801936513],[-71.375334304,41.801908697],[-71.375351565,41.80188093],[-71.375367971,41.801852522],[-71.37538612,41.801824093],[-71.375404296,41.801796991],[-71.375422411,41.801769865],[-71.375439669,41.801743447],[-71.375456043,41.80171632],[-71.375470643,41.801689213],[-71.375483438,41.801663386],[-71.375494492,41.801636915],[-71.375501084,41.801610372],[-71.375505904,41.801583186],[-71.375510757,41.801555292],[-71.375517348,41.801528794],[-71.375523088,41.80150026],[-71.375528827,41.801472412],[-71.375535387,41.801446554],[-71.37554368,41.801425364],[-71.375558173,41.801406193],[-71.375577062,41.801389748],[-71.375594179,41.801373232],[-71.375606016,41.801352732],[-71.375611655,41.801328863],[-71.375613813,41.801303664],[-71.3756142,41.801277068],[-71.375613703,41.801249831],[-71.375612319,41.80122257],[-71.375610902,41.801196635],[-71.375611286,41.801172051],[-71.375614266,41.801148157],[-71.37562082,41.801125615],[-71.37563177,41.801105091],[-71.375644495,41.801083951],[-71.375658993,41.801062127],[-71.375673555,41.801039],[-71.375688054,41.801017199],[-71.375702581,41.800996038],[-71.375717109,41.8009749],[-71.375731636,41.800953739],[-71.375745246,41.800933263],[-71.375758819,41.800915441],[-71.375772355,41.800901597],[-71.375787595,41.800891071],[-71.375805425,41.800885236],[-71.375824101,41.800884067],[-71.375844483,41.800885552],[-71.375865748,41.800889051],[-71.37588524,41.800892548],[-71.375903848,41.800895358],[-71.37591772,41.800897043],[-71.37592157,41.800897504],[-71.375938439,41.800898277],[-71.375964169,41.800900455],[-71.375982778,41.800901984],[-71.375999647,41.800902757],[-71.376014712,41.800904214],[-71.376031544,41.800908349],[-71.376046574,41.800911795],[-71.376061638,41.80091387],[-71.376079425,41.800914026],[-71.376096297,41.800913495],[-71.376111431,41.800910333],[-71.376118625,41.800904372],[-71.376132234,41.800883896],[-71.376141342,41.800867989],[-71.3761499,41.80085167],[-71.376151373,41.800848836],[-71.376162324,41.800827671],[-71.376174194,41.800805844],[-71.376186952,41.80078331],[-71.376199676,41.80076217],[-71.376210625,41.800742354],[-71.376219767,41.800724458],[-71.376226218,41.800707268],[-71.376229399,41.800691946],[-71.376195508,41.800765536],[-71.376167508,41.800763536],[-71.375847508,41.800679536],[-71.375641508,41.800618536],[-71.375450508,41.800537536],[-71.375328508,41.800469536],[-71.375214508,41.800389536],[-71.374908507,41.800473536],[-71.374825508,41.800522536],[-71.374763508,41.800587536],[-71.374733507,41.800625536],[-71.374596507,41.801087536],[-71.374435508,41.801606537],[-71.374313508,41.801968536],[-71.374062508,41.802769536],[-71.373866508,41.803384537],[-71.373688507,41.803940537],[-71.373444508,41.804730537],[-71.373260507,41.805313537],[-71.373213507,41.805442537],[-71.373131508,41.805668538],[-71.372925507,41.806198537],[-71.372493507,41.807364538],[-71.372452507,41.807476538],[-71.372375507,41.807740537],[-71.372365507,41.807757537],[-71.372269507,41.808102538],[-71.372047507,41.808827538],[-71.371948507,41.809163538],[-71.371857507,41.809483538],[-71.371773507,41.809765538],[-71.371620507,41.810254538],[-71.371597507,41.810383538],[-71.370041507,41.810097538],[-71.369186506,41.809941538],[-71.369161506,41.809940538],[-71.368340506,41.809788538],[-71.368317506,41.809781538],[-71.367470506,41.809628538],[-71.367096506,41.809552538],[-71.366119505,41.809384538],[-71.365776505,41.809311538],[-71.365471505,41.809262538],[-71.365311505,41.809250538],[-71.365189505,41.809277538],[-71.365013505,41.809353539],[-71.364792505,41.809437538],[-71.364128504,41.808571538],[-71.363808505,41.808152538],[-71.363682504,41.807998538],[-71.363449504,41.807713538],[-71.363060504,41.807198538],[-71.363045504,41.807183538],[-71.362648504,41.806664537],[-71.362244504,41.806141537],[-71.361992504,41.805817538],[-71.361908504,41.805695537],[-71.361847503,41.805638537],[-71.361832504,41.805622538],[-71.361626504,41.805527538],[-71.361420503,41.805481537],[-71.361137504,41.805424537],[-71.360832503,41.805348538],[-71.360812503,41.805361537],[-71.360733503,41.805603538],[-71.360512504,41.806279538],[-71.360502503,41.806296537],[-71.360306503,41.806862538],[-71.360092503,41.807476538],[-71.359886503,41.808091538],[-71.359833503,41.808247538],[-71.359673503,41.808705538],[-71.359596503,41.808941539],[-71.359360503,41.809578538],[-71.359116503,41.810254538],[-71.359024503,41.810513538],[-71.358849503,41.811085539],[-71.358566503,41.811879539],[-71.358475503,41.812146539],[-71.358406503,41.812329539],[-71.360170503,41.812689539],[-71.360860504,41.812829539],[-71.361223504,41.812903539],[-71.361938505,41.813049539],[-71.362091504,41.813080539],[-71.364911505,41.813678539],[-71.364975505,41.813691539],[-71.366188506,41.813919539],[-71.367096506,41.814106539],[-71.367142506,41.814118539],[-71.367737506,41.814263539],[-71.368408507,41.814389539],[-71.368504506,41.814412539],[-71.369019506,41.814534539],[-71.370057507,41.814758539],[-71.370193507,41.814789539],[-71.370667507,41.814911539],[-71.371170507,41.815052539],[-71.371765508,41.815239539],[-71.372604508,41.815495539],[-71.373627508,41.815838539],[-71.374313508,41.81608254],[-71.375000509,41.816323539],[-71.375084508,41.816189539],[-71.375237509,41.81596454],[-71.375648508,41.815316539],[-71.375946509,41.814877539],[-71.376259509,41.814453539],[-71.376602509,41.813965539],[-71.377098509,41.814156538],[-71.37788451,41.814427538],[-71.37790851,41.814432539],[-71.37870051,41.814713539],[-71.37949451,41.814980539],[-71.38029551,41.815255539],[-71.381104511,41.815533539]]]]}}"}, +{"type": "precinct", "typeId": 1010, "areaId": 25766, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":105,\"NAME\":\"1010\",\"SHAPE_Length\":0.080431400906382,\"SHAPE_Area\":-0.00020261354961467},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.360832503,41.805348538],[-71.361137504,41.805424537],[-71.361420503,41.805481537],[-71.361626504,41.805527538],[-71.361832504,41.805622538],[-71.361847503,41.805638537],[-71.361908504,41.805695537],[-71.361992504,41.805817538],[-71.362244504,41.806141537],[-71.362648504,41.806664537],[-71.363045504,41.807183538],[-71.363060504,41.807198538],[-71.363449504,41.807713538],[-71.363682504,41.807998538],[-71.363808505,41.808152538],[-71.364128504,41.808571538],[-71.364792505,41.809437538],[-71.365013505,41.809353539],[-71.365189505,41.809277538],[-71.365311505,41.809250538],[-71.365471505,41.809262538],[-71.365776505,41.809311538],[-71.366119505,41.809384538],[-71.367096506,41.809552538],[-71.367470506,41.809628538],[-71.368317506,41.809781538],[-71.368340506,41.809788538],[-71.369161506,41.809940538],[-71.369186506,41.809941538],[-71.370041507,41.810097538],[-71.371597507,41.810383538],[-71.371620507,41.810254538],[-71.371773507,41.809765538],[-71.371857507,41.809483538],[-71.371948507,41.809163538],[-71.372047507,41.808827538],[-71.372269507,41.808102538],[-71.372365507,41.807757537],[-71.372375507,41.807740537],[-71.372452507,41.807476538],[-71.372493507,41.807364538],[-71.372925507,41.806198537],[-71.373131508,41.805668538],[-71.373213507,41.805442537],[-71.373260507,41.805313537],[-71.373444508,41.804730537],[-71.373688507,41.803940537],[-71.373866508,41.803384537],[-71.374062508,41.802769536],[-71.374313508,41.801968536],[-71.374435508,41.801606537],[-71.374596507,41.801087536],[-71.374733507,41.800625536],[-71.374763508,41.800587536],[-71.374825508,41.800522536],[-71.374908507,41.800473536],[-71.375214508,41.800389536],[-71.375328508,41.800469536],[-71.375450508,41.800537536],[-71.375641508,41.800618536],[-71.375847508,41.800679536],[-71.376167508,41.800763536],[-71.376195508,41.800765536],[-71.376229399,41.800691946],[-71.376230167,41.800688245],[-71.376232095,41.800670775],[-71.376233234,41.800650812],[-71.376233517,41.800630917],[-71.376229364,41.800612914],[-71.376220684,41.80059756],[-71.376206681,41.800584167],[-71.376189103,41.800570701],[-71.376169748,41.800559269],[-71.3761459,41.800548426],[-71.376121193,41.800538932],[-71.376093797,41.800529412],[-71.376065516,41.80051925],[-71.376038151,41.800509044],[-71.376009869,41.8004995],[-71.375980667,41.800491282],[-71.375951495,41.800483086],[-71.375925836,41.800476243],[-71.375918535,41.800474292],[-71.375902834,41.800470067],[-71.375881604,41.800464578],[-71.375861259,41.800459777],[-71.375840028,41.800454288],[-71.375818802,41.80044681],[-71.375796721,41.800438668],[-71.375776446,41.800429201],[-71.375757911,41.800420399],[-71.375741147,41.800412972],[-71.375725266,41.800406849],[-71.375709352,41.800402075],[-71.375691666,41.800397276],[-71.375674834,41.800393164],[-71.375659808,41.800387728],[-71.375644815,41.800380966],[-71.375630707,41.800374867],[-71.375615681,41.800369431],[-71.375601571,41.800363996],[-71.375587399,41.800359247],[-71.375572404,41.80035381],[-71.375555638,41.800347023],[-71.375537106,41.800336918],[-71.375515982,41.800324111],[-71.375494008,41.800307988],[-71.375470328,41.800289187],[-71.375443109,41.800267043],[-71.375414185,41.800241582],[-71.375381755,41.800212069],[-71.375349329,41.800179926],[-71.375318741,41.800145796],[-71.375289109,41.800107664],[-71.375262171,41.800066928],[-71.375237009,41.800024205],[-71.375215422,41.799982172],[-71.375195643,41.799937487],[-71.375175899,41.799890814],[-71.375157045,41.799842151],[-71.375138225,41.799791522],[-71.375122096,41.799740233],[-71.375110399,41.799688971],[-71.375100471,41.799639061],[-71.375094056,41.799590504],[-71.375089445,41.799541285],[-71.375086642,41.799489438],[-71.375086533,41.799435628],[-71.375089051,41.799381821],[-71.375094258,41.799328702],[-71.375098545,41.799277572],[-71.375101912,41.799227768],[-71.375105276,41.799179289],[-71.375110411,41.799131499],[-71.375119977,41.7990844],[-71.375133943,41.799037328],[-71.375152402,41.798990307],[-71.375174374,41.798943976],[-71.375198086,41.798898973],[-71.375222679,41.798856647],[-71.3752473,41.798814984],[-71.375270091,41.798771993],[-71.375292946,41.798727652],[-71.375312227,41.798681958],[-71.375329766,41.79863624],[-71.375344613,41.798591845],[-71.375357655,41.798548774],[-71.375368038,41.798505655],[-71.375378454,41.798461232],[-71.375387953,41.798416785],[-71.375395712,41.798370988],[-71.375405276,41.798324552],[-71.375414843,41.798276789],[-71.375426182,41.798229051],[-71.375438406,41.798181978],[-71.375450598,41.798135545],[-71.375461017,41.798089795],[-71.375469696,41.798042695],[-71.375479228,41.797996922],[-71.375490531,41.797951837],[-71.375501765,41.797910731],[-71.375512961,41.797873605],[-71.375523204,41.797839793],[-71.375528127,41.797806593],[-71.375525044,41.797773338],[-71.37551753,41.797739393],[-71.375506502,41.797705421],[-71.375494558,41.797671425],[-71.375483466,41.797638802],[-71.375475917,41.797607509],[-71.375474602,41.797576269],[-71.375476834,41.797544392],[-71.375482609,41.797513205],[-71.375491007,41.797484697],[-71.375503765,41.797461545],[-71.375521767,41.797445076],[-71.375545866,41.797436641],[-71.375575174,41.797436215],[-71.37560881,41.797442449],[-71.375647791,41.797450084],[-71.375687559,41.797461698],[-71.375722822,41.797479917],[-71.375749117,41.797505398],[-71.375767302,41.797536108],[-71.375780132,41.797570768],[-71.375792965,41.797604102],[-71.375810296,41.797634124],[-71.37583213,41.797658892],[-71.375860268,41.797679047],[-71.375891138,41.797693259],[-71.375923884,41.797701527],[-71.375966446,41.797706467],[-71.3760099,41.797708846],[-71.376057814,41.797711871],[-71.376108386,41.797714921],[-71.376158107,41.797716004],[-71.376204286,41.797715711],[-71.376247844,41.79771139],[-71.376287042,41.797701736],[-71.376322799,41.797685423],[-71.376356856,41.797663757],[-71.376388323,41.797637423],[-71.376417137,41.797608457],[-71.376442474,41.797575393],[-71.376463382,41.797541684],[-71.376480745,41.797507308],[-71.376495417,41.797474164],[-71.376508278,41.797445043],[-71.376522875,41.797419263],[-71.376537437,41.797395449],[-71.376552887,41.797370996],[-71.37657008,41.797345859],[-71.376587368,41.797318755],[-71.376604628,41.797290325],[-71.376624577,41.797262606],[-71.3766462,41.797238183],[-71.37667139,41.797217765],[-71.376700911,41.797202726],[-71.376733908,41.79719103],[-71.376769594,41.797180023],[-71.376806133,41.797170343],[-71.376843518,41.797165352],[-71.376879915,41.797166283],[-71.376915321,41.797173227],[-71.376950727,41.797180834],[-71.37698886,41.797184443],[-71.377029723,41.797182771],[-71.377074199,41.797177834],[-71.377118676,41.79717221],[-71.377161381,41.797165898],[-71.377201463,41.797157571],[-71.377239808,41.797145949],[-71.37727553,41.797132266],[-71.377308593,41.797117894],[-71.377338999,41.797102855],[-71.377370292,41.797087818],[-71.377402438,41.797074131],[-71.377435432,41.797063761],[-71.37747197,41.797054767],[-71.377510245,41.797047741],[-71.377551176,41.797042754],[-71.377592072,41.797039779],[-71.377634706,41.797038772],[-71.377679079,41.797039803],[-71.377725221,41.797042162],[-71.377773985,41.797047862],[-71.377824489,41.797054937],[-71.377875878,41.797062652],[-71.377925493,41.797071007],[-71.377975077,41.797079406],[-71.378020228,41.797089036],[-71.378062686,41.797100676],[-71.378098906,41.797113589],[-71.378129741,41.797130476],[-71.378149872,41.79715124],[-71.378157528,41.797175191],[-71.378155369,41.797201763],[-71.378149632,41.797229634],[-71.378146583,41.797258171],[-71.378148854,41.79728541],[-71.378156511,41.797308744],[-71.378172213,41.797328131],[-71.378195073,41.797344277],[-71.3782224,41.797357136],[-71.37825426,41.797365334],[-71.378288782,41.797371613],[-71.378324257,41.797375196],[-71.378358915,41.797374135],[-71.378389183,41.7973671],[-71.378413349,41.797355303],[-71.378427773,41.797339493],[-71.378432488,41.797318916],[-71.378432803,41.797297648],[-71.378433151,41.797275077],[-71.378433437,41.797253146],[-71.378437295,41.797233231],[-71.378447289,41.797216731],[-71.378466073,41.797206254],[-71.378491022,41.797200472],[-71.378522136,41.797198698],[-71.378555876,41.797198299],[-71.378589546,41.797202565],[-71.378617862,41.797210119],[-71.378642563,41.797222311],[-71.378666277,41.797239076],[-71.3786891,41.797258562],[-71.378712776,41.797279329],[-71.37873737,41.797299456],[-71.378761203,41.797317092],[-71.378909509,41.797195535],[-71.379001024,41.797152587],[-71.378739267,41.796828407],[-71.37863231,41.796695953],[-71.378630747,41.796681978],[-71.378630922,41.796670018],[-71.378631067,41.796658058],[-71.378633864,41.796649439],[-71.378640137,41.796645512],[-71.378648998,41.796646254],[-71.378671996,41.796653733],[-71.37869234,41.796658534],[-71.378709175,41.796660679],[-71.37871534,41.796665373],[-71.37886536,41.79682854],[-71.378962772,41.796934503],[-71.378990308,41.796934051],[-71.379014299,41.796933573],[-71.379040949,41.796933144],[-71.37906849,41.796930017],[-71.379096098,41.796924261],[-71.379124657,41.796915852],[-71.379152302,41.796906093],[-71.37917998,41.796895671],[-71.379208543,41.796885296],[-71.379237139,41.796873549],[-71.379267476,41.796862489],[-71.379297812,41.796852139],[-71.379328148,41.796841719],[-71.379359402,41.796830684],[-71.379363225,41.796829064],[-71.379388855,41.796818274],[-71.37941752,41.79680257],[-71.379444417,41.796784189],[-71.37946866,41.79676377],[-71.379491162,41.796742023],[-71.379511893,41.796720273],[-71.379527304,41.796699113],[-71.379540024,41.796679299],[-71.379550053,41.7966601],[-71.379558342,41.796640235],[-71.379565747,41.796619021],[-71.379574102,41.796596504],[-71.379583251,41.796573988],[-71.379594199,41.796553509],[-71.379608688,41.796535686],[-71.379627606,41.796518555],[-71.379649124,41.796500762],[-71.379673427,41.796480366],[-71.379699445,41.796457982],[-71.379726443,41.796434936],[-71.379753442,41.796411249],[-71.379777752,41.79638685],[-71.379800322,41.796361764],[-71.379822863,41.796336037],[-71.379844548,41.796310287],[-71.379865346,41.796284581],[-71.379884341,41.796259446],[-71.37990156,41.796235703],[-71.379918748,41.796212555],[-71.379933308,41.796188741],[-71.379944327,41.796163574],[-71.379952687,41.796137764],[-71.37996013,41.79611257],[-71.379967568,41.796090052],[-71.37997671,41.796070829],[-71.379984045,41.79605428],[-71.379989571,41.796041021],[-71.37999329,41.796029774],[-71.379999704,41.796015213],[-71.379999775,41.796009885],[-71.379996231,41.796009195],[-71.3799963,41.796005216],[-71.380013485,41.795983417],[-71.380026136,41.795967582],[-71.380040591,41.795951086],[-71.380053243,41.795934588],[-71.380054195,41.795930418],[-71.380057033,41.795917989],[-71.380057315,41.795898048],[-71.380061173,41.79587747],[-71.380068579,41.795855615],[-71.380079526,41.795835777],[-71.380089521,41.79581859],[-71.380094161,41.795804645],[-71.380091678,41.795792659],[-71.380084349,41.795784168],[-71.380072975,41.795777185],[-71.380065736,41.795773304],[-71.380045041,41.795768634],[-71.380013886,41.795768154],[-71.379978342,41.795769854],[-71.379939252,41.795771552],[-71.379895732,41.795772512],[-71.379848668,41.795773447],[-71.379798946,41.795773738],[-71.379750111,41.795773343],[-71.37970039,41.795772948],[-71.379649784,41.795771866],[-71.379602757,41.795769484],[-71.379559309,41.795764476],[-71.379516814,41.795756862],[-71.379474794,41.795746994],[-71.379435444,41.795734251],[-71.379397454,41.79572001],[-71.379355949,41.795705742],[-71.379312609,41.79569273],[-71.379269299,41.795679786],[-71.379224217,41.795666132],[-71.379178218,41.795653117],[-71.379128707,41.795638772],[-71.379077426,41.795623075],[-71.379026146,41.795606716],[-71.378975784,41.79558974],[-71.378926276,41.795574046],[-71.37887588,41.795559014],[-71.378827254,41.795545355],[-71.3787804,41.795531676],[-71.378734404,41.795517357],[-71.378687551,41.795503038],[-71.378638959,41.79548803],[-71.378590305,41.795473023],[-71.378545225,41.795458705],[-71.378503686,41.795446426],[-71.378466545,41.795436142],[-71.378431141,41.795427872],[-71.378397473,41.795422965],[-71.378363737,41.79542206],[-71.378329078,41.795423761],[-71.378294415,41.795428116],[-71.378259689,41.795433178],[-71.378225847,41.795439523],[-71.378192887,41.795447927],[-71.378159894,41.795457634],[-71.378128707,41.795465994],[-71.378098409,41.795473051],[-71.37806995,41.79547684],[-71.378042413,41.795477954],[-71.3780158,41.79547573],[-71.377990994,41.795470878],[-71.377967176,41.795460722],[-71.377940737,41.795447224],[-71.377912595,41.79542906],[-71.3778818,41.795408216],[-71.377851958,41.795384081],[-71.377823038,41.795357248],[-71.377797696,41.795329138],[-71.37777498,41.795301694],[-71.37775492,41.795276289],[-71.377737481,41.795254888],[-71.37772263,41.795238178],[-71.377709516,41.795224099],[-71.377699025,41.795212745],[-71.3776885,41.795202695],[-71.377678893,41.795192645],[-71.377669254,41.795183281],[-71.377660501,41.795173873],[-71.377651748,41.79516451],[-71.377641223,41.795155123],[-71.377631618,41.795143747],[-71.377622934,41.795130382],[-71.377615203,41.795113726],[-71.377607477,41.795095079],[-71.377598902,41.795072384],[-71.377588588,41.795048384],[-71.377578308,41.795022417],[-71.377566257,41.794995716],[-71.377552467,41.79496771],[-71.377535102,41.794938991],[-71.377516882,41.794910294],[-71.3774942,41.794881501],[-71.377467085,41.79485403],[-71.377438134,41.794827883],[-71.377408325,41.794802398],[-71.377376747,41.794775585],[-71.377346056,41.79474811],[-71.377316287,41.79471796],[-71.377309553,41.794710768],[-71.377299508,41.794708535],[-71.376320909,41.793877158],[-71.376317899,41.793876049],[-71.376299327,41.793871913],[-71.376281576,41.79386979],[-71.376264773,41.793867005],[-71.376247976,41.793861544],[-71.37623118,41.793855443],[-71.376213529,41.793849341],[-71.376194074,41.793843191],[-71.376174654,41.793835074],[-71.376154382,41.793824921],[-71.376133259,41.793812801],[-71.376112172,41.793797342],[-71.376091974,41.793780557],[-71.376073615,41.793761145],[-71.376056997,41.793741734],[-71.376039524,41.793722323],[-71.376021165,41.79370291],[-71.376001886,41.793684846],[-71.375982606,41.793667399],[-71.375963325,41.793650615],[-71.375944897,41.793635205],[-71.375931837,41.79362522],[-71.375926436,41.793621098],[-71.375911516,41.793609007],[-71.375898331,41.793600279],[-71.375879866,41.793588162],[-71.375869374,41.793577471],[-71.375863552,41.793569849],[-71.375850878,41.793566016],[-71.375835782,41.793565909],[-71.375816219,41.79356838],[-71.37579815,41.793572729],[-71.375779614,41.793581399],[-71.375757252,41.793593792],[-71.375738434,41.793606281],[-71.375733011,41.793613342],[-71.37572575,41.793622779],[-71.375724722,41.793632794],[-71.375726319,41.793644733],[-71.375733229,41.793658759],[-71.37574191,41.793673428],[-71.37575056,41.793688119],[-71.375761013,41.793703521],[-71.375771435,41.793718214],[-71.375782808,41.793731559],[-71.375795037,41.793744973],[-71.375809071,41.79375704],[-71.375823103,41.79376977],[-71.375837106,41.7937825],[-71.375850251,41.793795893],[-71.375862478,41.79380997],[-71.375874704,41.793824665],[-71.375886012,41.793840045],[-71.375897318,41.793856066],[-71.375908654,41.793872772],[-71.375918154,41.793890826],[-71.375924077,41.793909448],[-71.375926485,41.793928729],[-71.375926202,41.793948693],[-71.375922342,41.793969225],[-71.37591405,41.793990461],[-71.375903137,41.794008287],[-71.375886941,41.794023431],[-71.375866352,41.794035232],[-71.375845435,41.794041447],[-71.375841402,41.79404234],[-71.375811142,41.794045418],[-71.375776518,41.794045792],[-71.37574012,41.794046187],[-71.375701066,41.79404587],[-71.375661128,41.794044226],[-71.375621193,41.794041233],[-71.375614807,41.794040426],[-71.375582208,41.794036274],[-71.375542341,41.794029965],[-71.375501621,41.794021665],[-71.375460904,41.794012039],[-71.375421991,41.794001774],[-71.375385739,41.793990164],[-71.375354868,41.793977964],[-71.375327544,41.793963801],[-71.375300221,41.793949593],[-71.375270206,41.793936731],[-71.375237496,41.793927159],[-71.375204714,41.793922916],[-71.375173603,41.793923362],[-71.375142454,41.793928405],[-71.375111302,41.793934134],[-71.375077493,41.79393986],[-71.375043683,41.793945541],[-71.375008955,41.793951906],[-71.374975113,41.793958296],[-71.37494042,41.793962672],[-71.374906649,41.793964373],[-71.374874716,41.793963492],[-71.37484548,41.793958589],[-71.374816313,41.793949707],[-71.374784524,41.793937506],[-71.374749194,41.793923929],[-71.374710317,41.793910989],[-71.374670519,41.793900037],[-71.374628882,41.793892376],[-71.374585468,41.793886726],[-71.37454202,41.793883043],[-71.374500346,41.79387808],[-71.374461399,41.793869782],[-71.374421603,41.793858167],[-71.374380956,41.793843898],[-71.374341228,41.793828944],[-71.374307736,41.793812739],[-71.374278676,41.793795876],[-71.374253197,41.793776433],[-71.374228639,41.793754978],[-71.37420592,41.793730849],[-71.37418317,41.793706743],[-71.374161339,41.793681335],[-71.374143086,41.793654604],[-71.374128346,41.793628586],[-71.374117181,41.793603235],[-71.374109527,41.793579261],[-71.374101871,41.793555926],[-71.374095986,41.793533943],[-71.374090956,41.793511983],[-71.37408947,41.793490714],[-71.374090704,41.793468784],[-71.374097226,41.793446951],[-71.374107324,41.793424436],[-71.374119196,41.793401238],[-71.374131922,41.793378749],[-71.374144709,41.793356283],[-71.374155664,41.793333129],[-71.374165795,41.793309265],[-71.374175897,41.79328476],[-71.374187803,41.793259618],[-71.374201481,41.793234454],[-71.374215161,41.793208696],[-71.374227986,41.793182205],[-71.374239927,41.79315505],[-71.374251834,41.793129244],[-71.374261082,41.793104053],[-71.374266751,41.793080161],[-71.374267958,41.793056928],[-71.374264731,41.793034993],[-71.374258778,41.793016349],[-71.374246553,41.793001608],[-71.374229858,41.792990864],[-71.374207713,41.792985374],[-71.374181131,41.792983149],[-71.374154483,41.792983601],[-71.374127766,41.792988031],[-71.374104586,41.79299649],[-71.374086585,41.793012935],[-71.374072056,41.793035422],[-71.374059228,41.793063217],[-71.374045446,41.793094349],[-71.374031661,41.793126808],[-71.37401791,41.793157894],[-71.374006817,41.793189075],[-71.37399835,41.793221539],[-71.37398988,41.793255353],[-71.373980493,41.793289166],[-71.373970251,41.793322977],[-71.373959157,41.793354776],[-71.373946228,41.793387235],[-71.373932476,41.793418345],[-71.373918727,41.79344815],[-71.37390232,41.793477908],[-71.373885026,41.793507664],[-71.37386773,41.793538769],[-71.37385129,41.79356919],[-71.373832226,41.793598281],[-71.37380965,41.793625355],[-71.373783534,41.793650391],[-71.373753908,41.793673387],[-71.373723465,41.793691786],[-71.373689516,41.79370611],[-71.373653869,41.793713778],[-71.373618325,41.7937155],[-71.373581078,41.793713195],[-71.373542948,41.793708899],[-71.373503966,41.793703276],[-71.373464131,41.79369564],[-71.373429651,41.793684762],[-71.373402365,41.793667923],[-71.373375147,41.793647106],[-71.373348816,41.793625649],[-71.373320676,41.793607483],[-71.373291584,41.793591945],[-71.373260648,41.793581712],[-71.37322698,41.79357749],[-71.373192356,41.793577817],[-71.373155889,41.793582854],[-71.373121163,41.793587893],[-71.373090969,41.793588957],[-71.373065308,41.793584126],[-71.373043266,41.793573331],[-71.373026612,41.793557235],[-71.373018002,41.793537902],[-71.373017436,41.79351533],[-71.373024026,41.793489472],[-71.373029765,41.793461602],[-71.373031961,41.793433018],[-71.373034123,41.793405784],[-71.373045109,41.79338263],[-71.373061376,41.793362157],[-71.373082069,41.793344411],[-71.373108011,41.793330673],[-71.373143696,41.79331898],[-71.373184696,41.793308666],[-71.373229209,41.793299087],[-71.373271982,41.793288798],[-71.373310327,41.793276468],[-71.373340767,41.793259442],[-71.373363272,41.793237032],[-71.373377907,41.793207273],[-71.373386445,41.793170098],[-71.37339325,41.793128301],[-71.373400975,41.793085179],[-71.373409619,41.793040732],[-71.37341912,41.792995599],[-71.373427764,41.792951198],[-71.37343283,41.79290805],[-71.37343432,41.792864852],[-71.373434954,41.792822317],[-71.373432831,41.792783117],[-71.373428045,41.792745859],[-71.373424113,41.792709951],[-71.373420212,41.792673333],[-71.373417167,41.792636786],[-71.373410607,41.792600874],[-71.373404018,41.792563614],[-71.373398348,41.792525691],[-71.373393561,41.792489096],[-71.373388709,41.79245449],[-71.373384771,41.792421234],[-71.373382574,41.792388667],[-71.373383887,41.792358115],[-71.373386081,41.792330241],[-71.373386436,41.792304971],[-71.373385018,41.792280386],[-71.373380905,41.792258404],[-71.373373183,41.792238408],[-71.373364139,41.792222139],[-71.373352336,41.792194797],[-71.373330171,41.792168657],[-71.373288147,41.792156421],[-71.373223564,41.792147454],[-71.373168613,41.792119654],[-71.373169504,41.792055073],[-71.373242208,41.792021262],[-71.373336688,41.792040256],[-71.373443544,41.792043895],[-71.373537048,41.791999747],[-71.373626062,41.791939357],[-71.373721467,41.791891666],[-71.373816932,41.791907162],[-71.373894125,41.79195271],[-71.373932137,41.791985294],[-71.373981216,41.792030628],[-71.374030228,41.792079461],[-71.374088581,41.792133266],[-71.374116196,41.792169978],[-71.374142822,41.792211583],[-71.374155451,41.792223031],[-71.374177532,41.792245581],[-71.374209038,41.792276397],[-71.374240578,41.792305886],[-71.374273925,41.792333388],[-71.374304615,41.792360247],[-71.374333528,41.792389025],[-71.374360605,41.792419127],[-71.374386795,41.792449937],[-71.374414757,41.792480703],[-71.374444491,41.792512157],[-71.37447603,41.79254231],[-71.374507602,41.792571159],[-71.374540029,41.792599986],[-71.374572461,41.792626824],[-71.374604037,41.792653661],[-71.374636498,41.792681162],[-71.374665381,41.792709985],[-71.374693375,41.792740088],[-71.374721339,41.792770214],[-71.374747562,41.792799675],[-71.374775561,41.792827788],[-71.374806251,41.792854624],[-71.374837824,41.792882787],[-71.374870254,41.792910928],[-71.374901794,41.79294044],[-71.374931562,41.792969905],[-71.374961362,41.792998729],[-71.374992053,41.793025542],[-71.375024519,41.79305039],[-71.375057901,41.793075902],[-71.375087705,41.793102713],[-71.375114849,41.793130186],[-71.37513842,41.793156945],[-71.375161135,41.79318304],[-71.375183883,41.793208472],[-71.375207486,41.793233905],[-71.375230204,41.793259337],[-71.375252036,41.793284104],[-71.375273903,41.79330686],[-71.375295802,41.793328334],[-71.375317737,41.793347751],[-71.375339642,41.793366527],[-71.375359806,41.793384638],[-71.375379972,41.793402063],[-71.375399284,41.793418847],[-71.375418567,41.793434282],[-71.375436995,41.793449715],[-71.375455456,41.793463799],[-71.375472146,41.793477242],[-71.375488806,41.793489997],[-71.375504645,41.793501426],[-71.375520485,41.793511506],[-71.375535408,41.79352227],[-71.375549477,41.793531684],[-71.375562662,41.793540412],[-71.375574107,41.793547834],[-71.375585555,41.793553883],[-71.37560767,41.793559396],[-71.375630735,41.793562874],[-71.375652885,41.793565757],[-71.375673232,41.79356834],[-71.37568255,41.793569905],[-71.375690956,41.793568816],[-71.375757383,41.793525735],[-71.375757559,41.793513889],[-71.375759033,41.793494201],[-71.375760543,41.793487547],[-71.375759833,41.793475586],[-71.375757318,41.793464263],[-71.375753948,41.79345294],[-71.375707841,41.793386136],[-71.375684062,41.793372618],[-71.375660316,41.793357819],[-71.37563746,41.793340368],[-71.375613787,41.793319554],[-71.375590148,41.793296797],[-71.375564737,41.793273329],[-71.375537557,41.79324851],[-71.375508606,41.793223049],[-71.37547972,41.793195575],[-71.375449918,41.793167437],[-71.375420148,41.793138613],[-71.375391264,41.793109812],[-71.375362381,41.793080989],[-71.375332612,41.793051525],[-71.375302845,41.793021374],[-71.375271336,41.792991245],[-71.375240684,41.79296043],[-71.375212722,41.792929641],[-71.375185644,41.792899516],[-71.375162044,41.792872071],[-71.375140212,41.792847326],[-71.37512005,41.792827889],[-71.375103427,41.792811839],[-71.375099241,41.792795827],[-71.375105691,41.792779277],[-71.375106417,41.792778031],[-71.374862373,41.79248518],[-71.374862152,41.792488281],[-71.374856658,41.792500853],[-71.374846773,41.792508091],[-71.374833449,41.792508648],[-71.374817574,41.792500558],[-71.374799144,41.792486474],[-71.374777209,41.792467675],[-71.374753537,41.792446221],[-71.374729898,41.792423441],[-71.374706262,41.792399334],[-71.37468266,41.792373901],[-71.374658171,41.792348444],[-71.374632762,41.792324313],[-71.374607353,41.792300845],[-71.37458191,41.792278726],[-71.374557349,41.792258597],[-71.374533675,41.792238469],[-71.374517936,41.792223428],[-71.374446276,41.792176765],[-71.374424179,41.792147103],[-71.374411568,41.792110545],[-71.374425456,41.792056567],[-71.374406487,41.792005206],[-71.374396973,41.791948252],[-71.374405178,41.791936542],[-71.374333125,41.791850076],[-71.374324109,41.791860631],[-71.374300355,41.791881507],[-71.374240092,41.791897884],[-71.374187635,41.791891857],[-71.374138411,41.791857729],[-71.374080936,41.791808178],[-71.374018781,41.791761343],[-71.373953786,41.791713087],[-71.373906427,41.79167832],[-71.373844273,41.791630799],[-71.373781318,41.791571363],[-71.373736909,41.791528183],[-71.373686884,41.791482139],[-71.37363696,41.791431224],[-71.373577728,41.791374582],[-71.37354541,41.791337155],[-71.373506661,41.791291215],[-71.373464081,41.791250851],[-71.373415912,41.791209062],[-71.373383699,41.791164592],[-71.373364553,41.791126518],[-71.373311609,41.791088909],[-71.373296122,41.791055091],[-71.373332354,41.791013259],[-71.373368445,41.790981259],[-71.373420309,41.790962015],[-71.373482445,41.790964364],[-71.373234506,41.790282535],[-71.373222507,41.790455535],[-71.373177506,41.790680534],[-71.373146507,41.790783534],[-71.373062506,41.790860534],[-71.372958506,41.790928534],[-71.372787506,41.791039535],[-71.372391507,41.791264534],[-71.371841506,41.791630534],[-71.371574506,41.791870535],[-71.371506506,41.791943534],[-71.371445506,41.792057534],[-71.371422506,41.792126535],[-71.371399506,41.792218534],[-71.371368506,41.792286535],[-71.371323506,41.792363535],[-71.371231506,41.792435535],[-71.371117506,41.792481535],[-71.370979506,41.792530535],[-71.370850506,41.792553535],[-71.370628506,41.792527534],[-71.370445506,41.792496535],[-71.370293506,41.792488534],[-71.370163506,41.792496535],[-71.370049506,41.792511535],[-71.369865506,41.792565534],[-71.369530505,41.792698535],[-71.369255505,41.792813535],[-71.368950505,41.792977535],[-71.368774505,41.793061535],[-71.368660505,41.793084535],[-71.368416505,41.793095535],[-71.368286505,41.793057535],[-71.368126505,41.792893535],[-71.367661505,41.792820535],[-71.367119505,41.792706535],[-71.366997505,41.792653535],[-71.366974504,41.792641535],[-71.366890505,41.792614535],[-71.366829505,41.792584534],[-71.366798504,41.792534535],[-71.366791505,41.792481535],[-71.366791505,41.792424535],[-71.366486504,41.792340535],[-71.366295504,41.792294535],[-71.366035504,41.792221535],[-71.365990505,41.792214534],[-71.365944504,41.792214534],[-71.365765504,41.792243535],[-71.365746504,41.792214534],[-71.365744504,41.792193535],[-71.365654504,41.791962534],[-71.365479504,41.791447535],[-71.365440504,41.791329535],[-71.365433504,41.791542535],[-71.365440504,41.791710534],[-71.365433504,41.791870535],[-71.365379504,41.792172535],[-71.365379504,41.792214534],[-71.365368504,41.792230535],[-71.365273505,41.792469535],[-71.365135504,41.792889535],[-71.365120504,41.793034535],[-71.364975504,41.793469535],[-71.364960504,41.793515535],[-71.364784504,41.794026536],[-71.364693504,41.794278536],[-71.364403504,41.795105535],[-71.364239504,41.795587535],[-71.364174504,41.795781536],[-71.364136504,41.795880535],[-71.363968503,41.796349535],[-71.363914504,41.796513536],[-71.363686504,41.797173536],[-71.363449504,41.797848536],[-71.363365503,41.798073536],[-71.363228503,41.798516536],[-71.363121504,41.798802537],[-71.363113503,41.798825536],[-71.362960504,41.799220536],[-71.362968504,41.799240536],[-71.362724503,41.799939536],[-71.362701503,41.799988537],[-71.362503504,41.800606536],[-71.362450503,41.800747537],[-71.362251503,41.801281537],[-71.362228504,41.801339537],[-71.362045503,41.801861537],[-71.362000503,41.801979537],[-71.361984503,41.802014537],[-71.361839504,41.802433537],[-71.361763503,41.802647537],[-71.361641504,41.803017537],[-71.361534503,41.803318537],[-71.361361503,41.803799537],[-71.361183503,41.804295537],[-71.360992503,41.804864538],[-71.360962504,41.804955537],[-71.360832503,41.805348538]]]]}}"}, +{"type": "precinct", "typeId": 1011, "areaId": 25767, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":106,\"NAME\":\"1011\",\"SHAPE_Length\":0.11700901622455,\"SHAPE_Area\":-0.00042474378574077},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.372742747,41.789078448],[-71.37259137,41.788725235],[-71.372584947,41.788739341],[-71.37256551,41.788786909],[-71.37256764,41.788837475],[-71.372596761,41.788899481],[-71.372616885,41.788936826],[-71.37264509,41.788998122],[-71.372664198,41.789039696],[-71.372692826,41.789072202],[-71.372729405,41.789071099],[-71.372742747,41.789078448]]],[[[-71.353798501,41.807743538],[-71.353508501,41.808369538],[-71.354340501,41.808602538],[-71.355362502,41.808876538],[-71.356003502,41.809018539],[-71.356119502,41.809050538],[-71.356285502,41.809090538],[-71.356247502,41.809170538],[-71.356102502,41.809616538],[-71.357079503,41.809826538],[-71.357491503,41.809906538],[-71.358223503,41.810067539],[-71.359116503,41.810254538],[-71.359360503,41.809578538],[-71.359596503,41.808941539],[-71.359673503,41.808705538],[-71.359833503,41.808247538],[-71.359886503,41.808091538],[-71.360092503,41.807476538],[-71.360306503,41.806862538],[-71.360502503,41.806296537],[-71.360512504,41.806279538],[-71.360733503,41.805603538],[-71.360812503,41.805361537],[-71.360832503,41.805348538],[-71.360962504,41.804955537],[-71.360992503,41.804864538],[-71.361183503,41.804295537],[-71.361361503,41.803799537],[-71.361534503,41.803318537],[-71.361641504,41.803017537],[-71.361763503,41.802647537],[-71.361839504,41.802433537],[-71.361984503,41.802014537],[-71.362000503,41.801979537],[-71.362045503,41.801861537],[-71.362228504,41.801339537],[-71.362251503,41.801281537],[-71.362450503,41.800747537],[-71.362503504,41.800606536],[-71.362701503,41.799988537],[-71.362724503,41.799939536],[-71.362968504,41.799240536],[-71.362960504,41.799220536],[-71.363113503,41.798825536],[-71.363121504,41.798802537],[-71.363228503,41.798516536],[-71.363365503,41.798073536],[-71.363449504,41.797848536],[-71.363686504,41.797173536],[-71.363914504,41.796513536],[-71.363968503,41.796349535],[-71.364136504,41.795880535],[-71.364174504,41.795781536],[-71.364239504,41.795587535],[-71.364403504,41.795105535],[-71.364693504,41.794278536],[-71.364784504,41.794026536],[-71.364960504,41.793515535],[-71.364975504,41.793469535],[-71.365120504,41.793034535],[-71.365135504,41.792889535],[-71.365273505,41.792469535],[-71.365368504,41.792230535],[-71.365379504,41.792214534],[-71.365379504,41.792172535],[-71.365433504,41.791870535],[-71.365440504,41.791710534],[-71.365433504,41.791542535],[-71.365440504,41.791329535],[-71.365479504,41.791447535],[-71.365654504,41.791962534],[-71.365744504,41.792193535],[-71.365746504,41.792214534],[-71.365765504,41.792243535],[-71.365944504,41.792214534],[-71.365990505,41.792214534],[-71.366035504,41.792221535],[-71.366295504,41.792294535],[-71.366486504,41.792340535],[-71.366791505,41.792424535],[-71.366844505,41.792424535],[-71.366890505,41.792435535],[-71.366928505,41.792458535],[-71.366997505,41.792511535],[-71.367012504,41.792530535],[-71.367020505,41.792565534],[-71.367020505,41.792595535],[-71.367012504,41.792626535],[-71.366997505,41.792653535],[-71.367119505,41.792706535],[-71.367661505,41.792820535],[-71.368126505,41.792893535],[-71.368286505,41.793057535],[-71.368416505,41.793095535],[-71.368660505,41.793084535],[-71.368774505,41.793061535],[-71.368950505,41.792977535],[-71.369255505,41.792813535],[-71.369530505,41.792698535],[-71.369865506,41.792565534],[-71.370049506,41.792511535],[-71.370163506,41.792496535],[-71.370293506,41.792488534],[-71.370445506,41.792496535],[-71.370628506,41.792527534],[-71.370850506,41.792553535],[-71.370979506,41.792530535],[-71.371117506,41.792481535],[-71.371231506,41.792435535],[-71.371323506,41.792363535],[-71.371368506,41.792286535],[-71.371399506,41.792218534],[-71.371422506,41.792126535],[-71.371445506,41.792057534],[-71.371506506,41.791943534],[-71.371574506,41.791870535],[-71.371841506,41.791630534],[-71.372391507,41.791264534],[-71.372787506,41.791039535],[-71.372958506,41.790928534],[-71.373062506,41.790860534],[-71.373146507,41.790783534],[-71.373177506,41.790680534],[-71.373222507,41.790455535],[-71.373234506,41.790282535],[-71.373098506,41.789908534],[-71.37282857,41.789278698],[-71.372830169,41.789309846],[-71.372834831,41.789378664],[-71.372837668,41.789442585],[-71.372845245,41.78950514],[-71.372848511,41.789538143],[-71.372835891,41.789568934],[-71.372799134,41.78958266],[-71.372749309,41.7895907],[-71.37270128,41.78960295],[-71.372673831,41.789622381],[-71.372652709,41.789656615],[-71.372622204,41.789692188],[-71.37258608,41.789725583],[-71.372573216,41.789771809],[-71.372581991,41.789815407],[-71.372596103,41.789880118],[-71.372599222,41.789925059],[-71.372598268,41.789990348],[-71.372597802,41.790024765],[-71.372582265,41.790062527],[-71.372562092,41.790096076],[-71.37251673,41.790118872],[-71.372460372,41.790124024],[-71.372372322,41.790115579],[-71.372307993,41.790087013],[-71.372259755,41.790050117],[-71.372217178,41.790009066],[-71.372175477,41.789973665],[-71.372132964,41.789931196],[-71.372098714,41.789897952],[-71.372091516,41.789890786],[-71.372070782,41.789883674],[-71.372055041,41.789870209],[-71.372032357,41.789860213],[-71.372002982,41.789834019],[-71.371973113,41.78982605],[-71.371898277,41.78987223],[-71.371888885,41.789878028],[-71.371892041,41.78991947],[-71.371923861,41.789991336],[-71.371996757,41.790075438],[-71.372080858,41.79016456],[-71.372201284,41.790272886],[-71.372293674,41.790373291],[-71.372377222,41.790433644],[-71.3724186,41.790493629],[-71.37241624,41.790527998],[-71.372379203,41.79055931],[-71.372331273,41.790567352],[-71.37228757,41.790538923],[-71.372257005,41.790512019],[-71.372188808,41.790492504],[-71.372152824,41.790516774],[-71.37213226,41.790577696],[-71.372117353,41.790636544],[-71.372096822,41.790696049],[-71.372077206,41.790756263],[-71.372057553,41.790819977],[-71.372020142,41.790946765],[-71.372004501,41.790990839],[-71.371958778,41.791041008],[-71.371922709,41.79113832],[-71.37191455,41.791184621],[-71.371902632,41.791230825],[-71.371880238,41.791289619],[-71.371861855,41.791328772],[-71.371829414,41.791369237],[-71.371769044,41.791393319],[-71.371701368,41.791403306],[-71.371657272,41.791403645],[-71.371571926,41.791402269],[-71.371509347,41.791384933],[-71.371469262,41.791365656],[-71.371426432,41.791344271],[-71.371365722,41.791324125],[-71.371294675,41.791308837],[-71.371233013,41.791291502],[-71.371172369,41.791269274],[-71.371119211,41.791247078],[-71.37104237,41.791240863],[-71.370965629,41.791230417],[-71.370914232,41.79121458],[-71.370841394,41.791192932],[-71.370779592,41.791184722],[-71.370715924,41.791177218],[-71.370643864,41.791164033],[-71.370592494,41.791149568],[-71.370599668,41.791107497],[-71.37064887,41.791075605],[-71.370647434,41.791044707],[-71.370591395,41.791027401],[-71.37052576,41.791025521],[-71.37045545,41.79102352],[-71.370380539,41.791015226],[-71.370351835,41.790989741],[-71.370370186,41.79095125],[-71.370422514,41.79089974],[-71.370488684,41.790863065],[-71.370550634,41.790858629],[-71.370596625,41.790858315],[-71.370676747,41.790828036],[-71.370639647,41.79079895],[-71.370578055,41.790777407],[-71.37053994,41.790751866],[-71.370505864,41.790708079],[-71.370506506,41.790662434],[-71.370530617,41.790616289],[-71.370559192,41.790584213],[-71.370628278,41.790541275],[-71.370669887,41.790516303],[-71.370720099,41.790483017],[-71.370842737,41.790432729],[-71.370868213,41.790421712],[-71.370912525,41.790405205],[-71.37096892,41.790397241],[-71.371034519,41.790401248],[-71.371087925,41.790405882],[-71.371151627,41.790411305],[-71.371194705,41.790415149],[-71.37125008,41.79041281],[-71.371263471,41.790394645],[-71.371245905,41.79037697],[-71.371233333,41.790337576],[-71.371274134,41.790303479],[-71.371291429,41.790273425],[-71.371281593,41.790241078],[-71.371262383,41.790205107],[-71.371218891,41.790163345],[-71.371170478,41.790137701],[-71.371105126,41.790117526],[-71.371048033,41.790107948],[-71.370996629,41.79009561],[-71.370943615,41.790063603],[-71.370908449,41.790030335],[-71.370875327,41.789983051],[-71.370857133,41.789943581],[-71.370845546,41.789900689],[-71.370837792,41.789851467],[-71.370838219,41.789821326],[-71.370838613,41.789792535],[-71.370841256,41.789739185],[-71.370855882,41.789699295],[-71.370881714,41.789663032],[-71.370918965,41.789616993],[-71.370941811,41.789591863],[-71.370976988,41.789558491],[-71.371014059,41.789525762],[-71.371047441,41.789488111],[-71.371090351,41.789438648],[-71.37112929,41.78940384],[-71.37117754,41.789373319],[-71.371235902,41.789359045],[-71.371267735,41.789362831],[-71.371302236,41.78937714],[-71.371344849,41.78941467],[-71.37137815,41.789448622],[-71.371409558,41.789481839],[-71.371441033,41.789511581],[-71.371476341,41.789535038],[-71.371511814,41.78955255],[-71.371533043,41.789571783],[-71.371548891,41.789577724],[-71.371591332,41.789625087],[-71.371654387,41.789678922],[-71.371703428,41.789726338],[-71.371741399,41.789763177],[-71.37177639,41.78980765],[-71.371839804,41.78983482],[-71.371843897,41.789834836],[-71.371948352,41.789784447],[-71.371956244,41.789780682],[-71.371954259,41.78974935],[-71.371929876,41.789717809],[-71.371851873,41.789620416],[-71.371700923,41.789419893],[-71.371694495,41.789348696],[-71.371702008,41.789166508],[-71.371658714,41.78907224],[-71.371612381,41.789014925],[-71.371603375,41.78894935],[-71.371614159,41.788889629],[-71.371559906,41.788866425],[-71.371505078,41.788885939],[-71.371449935,41.788925349],[-71.371358386,41.788910382],[-71.371248149,41.78888883],[-71.37082201,41.788245281],[-71.370832801,41.788227798],[-71.370836442,41.788195009],[-71.370828626,41.788176522],[-71.370771903,41.788074989],[-71.370723684,41.787968641],[-71.370675534,41.787858725],[-71.370635748,41.787753117],[-71.370603548,41.787643356],[-71.370565697,41.787532857],[-71.370573023,41.787437595],[-71.370398506,41.787208534],[-71.370290197,41.786287921],[-71.370281281,41.786288839],[-71.370141838,41.786266681],[-71.370115319,41.78621945],[-71.370143136,41.786108042],[-71.370181205,41.786003757],[-71.370191724,41.785918132],[-71.370196023,41.785883141],[-71.370214562,41.785766073],[-71.370225981,41.785742083],[-71.370198505,41.785508533],[-71.369931505,41.783725533],[-71.369694505,41.783066533],[-71.369948505,41.783106533],[-71.370498506,41.783208533],[-71.371798506,41.783408533],[-71.371938023,41.783430337],[-71.371326436,41.782210305],[-71.371340914,41.78218233],[-71.370875067,41.781234534],[-71.370989005,41.781201754],[-71.370875462,41.781007081],[-71.370760542,41.78104201],[-71.370599769,41.780738862],[-71.370486672,41.780779396],[-71.370486421,41.780797645],[-71.370096582,41.780909514],[-71.369121977,41.781189077],[-71.368857282,41.781269776],[-71.368863669,41.781283871],[-71.369042534,41.781236165],[-71.36904594,41.781259335],[-71.369046389,41.781293753],[-71.369005901,41.781371346],[-71.368958182,41.781428533],[-71.36888896,41.781482722],[-71.368816372,41.781508846],[-71.368739085,41.78147242],[-71.368626689,41.781392936],[-71.36852771,41.781295951],[-71.36843902,41.781203299],[-71.368347559,41.781105704],[-71.368251394,41.781008058],[-71.368161794,41.780912592],[-71.36806187,41.780815651],[-71.367957236,41.780720762],[-71.367860195,41.780618884],[-71.367779133,41.780517162],[-71.367703736,41.780409203],[-71.36759876,41.780273561],[-71.367514106,41.780225187],[-71.367398469,41.780177921],[-71.367286693,41.780125057],[-71.367160797,41.78007492],[-71.367075928,41.780041959],[-71.3669271,41.779955846],[-71.366869051,41.779881683],[-71.366798219,41.779783562],[-71.366730195,41.77968684],[-71.366637501,41.7796117],[-71.366527952,41.779532195],[-71.366437267,41.779445874],[-71.366358986,41.779345548],[-71.366298339,41.779257341],[-71.366218592,41.779127536],[-71.366182541,41.779024745],[-71.36612583,41.77892465],[-71.3660739,41.77881754],[-71.366021788,41.778724472],[-71.36601352,41.778704475],[-71.365925306,41.778616733],[-71.365757504,41.778635532],[-71.364693503,41.778790532],[-71.363136503,41.778942532],[-71.363129502,41.779122533],[-71.363129502,41.779526532],[-71.363152502,41.779675532],[-71.363162503,41.779756532],[-71.363167502,41.779798532],[-71.363174503,41.779934532],[-71.363131502,41.779811532],[-71.363120503,41.779795532],[-71.363104503,41.779753532],[-71.362458503,41.779720532],[-71.357906501,41.779907533],[-71.3554125,41.780990533],[-71.3551465,41.781106533],[-71.3535335,41.781806533],[-71.353537499,41.781824533],[-71.3534945,41.781931533],[-71.3534255,41.782037533],[-71.353400499,41.782147534],[-71.3534245,41.782246534],[-71.3534685,41.782367533],[-71.353577499,41.782545533],[-71.3535305,41.782570533],[-71.353460499,41.782674534],[-71.353496499,41.782770534],[-71.3535395,41.782805533],[-71.3535785,41.782837533],[-71.3537155,41.782888534],[-71.3538035,41.782959533],[-71.3537835,41.783008533],[-71.3537765,41.783125534],[-71.3537525,41.783245533],[-71.3537455,41.783360533],[-71.3537455,41.783623534],[-71.3537385,41.783765534],[-71.3536855,41.783901534],[-71.3536755,41.784021534],[-71.3537265,41.784066533],[-71.3537965,41.784078534],[-71.3538405,41.784067533],[-71.3537125,41.784169534],[-71.3536205,41.784254534],[-71.3535105,41.784342534],[-71.3533745,41.784402534],[-71.3530955,41.784517534],[-71.3528065,41.784608533],[-71.352676499,41.784658534],[-71.3525155,41.784710534],[-71.352228499,41.784793534],[-71.351780499,41.784946534],[-71.351839499,41.785078534],[-71.350273499,41.785538534],[-71.348999498,41.785942534],[-71.349098498,41.785950534],[-71.349159499,41.785973534],[-71.349228498,41.786030535],[-71.349304498,41.786110534],[-71.349396499,41.786263535],[-71.349434499,41.786351534],[-71.349533499,41.786858534],[-71.349594498,41.787266534],[-71.349663499,41.787598534],[-71.349678499,41.787697534],[-71.349762499,41.787938535],[-71.349861499,41.788193535],[-71.350136499,41.788861534],[-71.350212499,41.789078534],[-71.350220499,41.789177535],[-71.350220499,41.789357535],[-71.350212499,41.789444534],[-71.350174499,41.789544534],[-71.350121499,41.789643535],[-71.350067499,41.789761535],[-71.349442499,41.790982535],[-71.349174499,41.791493535],[-71.349075499,41.791638535],[-71.348892498,41.791794535],[-71.348785499,41.791855535],[-71.348732499,41.791897536],[-71.348686499,41.791958536],[-71.348671499,41.792019535],[-71.348679498,41.792076536],[-71.348709499,41.792115536],[-71.348755499,41.792149536],[-71.348816498,41.792172536],[-71.349106499,41.792244535],[-71.349258499,41.792290536],[-71.349464499,41.792366536],[-71.349655499,41.792442536],[-71.349831499,41.792523536],[-71.3501975,41.792744535],[-71.350403499,41.792958535],[-71.3504495,41.792988536],[-71.3506625,41.793164536],[-71.350769499,41.793267535],[-71.3509145,41.793381536],[-71.3512125,41.793755535],[-71.3513875,41.794011535],[-71.3514635,41.794133536],[-71.3515175,41.794236536],[-71.351585499,41.794407536],[-71.3519445,41.795437536],[-71.351974499,41.795491536],[-71.3520285,41.795536536],[-71.3521125,41.795594536],[-71.3522195,41.795639536],[-71.3519825,41.795575536],[-71.3519525,41.795922536],[-71.3518605,41.796189536],[-71.3517535,41.796757536],[-71.3515705,41.797528536],[-71.3515325,41.797730537],[-71.3514715,41.798191536],[-71.3514635,41.799012537],[-71.3514635,41.799684536],[-71.3514565,41.800427537],[-71.3514565,41.801517537],[-71.3514565,41.803092538],[-71.3514565,41.804531538],[-71.3514485,41.804985538],[-71.3514485,41.805390538],[-71.3514565,41.805615538],[-71.351501501,41.805996538],[-71.3515325,41.806195538],[-71.351578501,41.806443538],[-71.351639501,41.806672538],[-71.3517995,41.807179538],[-71.3519575,41.807548538],[-71.352722501,41.807438538],[-71.353798501,41.807743538]]]]}}"}, +{"type": "precinct", "typeId": 1012, "areaId": 25768, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":107,\"NAME\":\"1012\",\"SHAPE_Length\":0.049889019687604,\"SHAPE_Area\":-6.3493301101219e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.367637863,41.777645723],[-71.367698636,41.777658142],[-71.367729927,41.777699823],[-71.367734977,41.777739849],[-71.367776882,41.777760571],[-71.367832945,41.77777502],[-71.367913746,41.777764456],[-71.367916983,41.777734981],[-71.367948468,41.77769733],[-71.36793587,41.777657935],[-71.367886728,41.777620351],[-71.367829048,41.777589686],[-71.367754297,41.777570847],[-71.367682106,41.777569552],[-71.367633883,41.777531283],[-71.36762712,41.777477167],[-71.367629906,41.777414738],[-71.367627004,41.777355025],[-71.367626001,41.777293277],[-71.36762679,41.777236403],[-71.367615316,41.777185073],[-71.367598219,41.777135107],[-71.367575395,41.777091379],[-71.36754772,41.777059582],[-71.367513263,41.777042482],[-71.367500697,41.777002355],[-71.367486163,41.776968538],[-71.367438639,41.776947101],[-71.367401477,41.776922932],[-71.367377919,41.776865184],[-71.367336231,41.776828362],[-71.36721732,41.776816196],[-71.367112465,41.776802719],[-71.367038592,41.776788089],[-71.367000593,41.776755526],[-71.366952513,41.7767074],[-71.366895251,41.776711838],[-71.366902787,41.776775789],[-71.366860791,41.776828796],[-71.366851684,41.776874363],[-71.366871409,41.776939082],[-71.366842377,41.777002029],[-71.366804912,41.777065629],[-71.36679095,41.777124478],[-71.366809136,41.77716532],[-71.366902646,41.777183632],[-71.366985972,41.777192716],[-71.367041049,41.777210686],[-71.367076096,41.777253079],[-71.367145048,41.777283826],[-71.367215824,41.777319492],[-71.367265983,41.777352161],[-71.367314097,41.777398869],[-71.367345351,41.777443339],[-71.367357776,41.777492613],[-71.367352287,41.7775466],[-71.367351713,41.777588015],[-71.367359858,41.777609155],[-71.36741016,41.777631991],[-71.367454066,41.777644962],[-71.367505637,41.777645388],[-71.367572209,41.777645236],[-71.367637863,41.777645723]]],[[[-71.369301017,41.777880066],[-71.369390914,41.77788847],[-71.369449447,41.777860156],[-71.36948929,41.777828185],[-71.369551012,41.777839895],[-71.369612216,41.777820023],[-71.369675806,41.777769281],[-71.369738274,41.777729079],[-71.369722695,41.777636992],[-71.369689577,41.777591811],[-71.369651576,41.777559203],[-71.369632437,41.777520464],[-71.369584249,41.777479383],[-71.369524532,41.777458527],[-71.369457857,41.777464329],[-71.369378738,41.777489692],[-71.369329658,41.777511727],[-71.369262462,41.77748805],[-71.369191814,41.777509261],[-71.369158251,41.777563033],[-71.369126592,41.777611913],[-71.369071782,41.777642358],[-71.368981351,41.777671138],[-71.368925601,41.777698083],[-71.36887911,41.777738416],[-71.36886642,41.777774123],[-71.368840594,41.777809037],[-71.368816072,41.777818659],[-71.368803491,41.777845219],[-71.3688201,41.777865705],[-71.368925875,41.777878495],[-71.368978426,41.777877481],[-71.369042993,41.777887136],[-71.36912741,41.777885677],[-71.369198831,41.777875033],[-71.369301017,41.777880066]]],[[[-71.363274503,41.776505532],[-71.363220503,41.777024532],[-71.363213502,41.777520532],[-71.363190502,41.777916532],[-71.363182503,41.778279532],[-71.363182503,41.778378532],[-71.363152502,41.778656533],[-71.363136503,41.778942532],[-71.364693503,41.778790532],[-71.365757504,41.778635532],[-71.365925306,41.778616733],[-71.365841592,41.778533467],[-71.365787174,41.77840392],[-71.3657674,41.778363579],[-71.36565867,41.778141715],[-71.365581999,41.777959109],[-71.365498094,41.777759298],[-71.365570339,41.777573756],[-71.36557496,41.777496647],[-71.365580743,41.777419494],[-71.365576999,41.777354199],[-71.365565637,41.77729443],[-71.365540933,41.77718614],[-71.365486122,41.777084606],[-71.365455978,41.776962954],[-71.365412378,41.776862189],[-71.365356655,41.776758573],[-71.365329322,41.776636925],[-71.365343123,41.776524037],[-71.365312878,41.77640657],[-71.365357018,41.776336712],[-71.365395308,41.776346819],[-71.365428118,41.776347795],[-71.365508199,41.776256459],[-71.3655808,41.776162988],[-71.365670194,41.776074544],[-71.365768963,41.775987575],[-71.365856493,41.775898465],[-71.366001448,41.775858866],[-71.366079309,41.775791402],[-71.366147308,41.775692253],[-71.366168665,41.775573794],[-71.366176844,41.775460146],[-71.366180383,41.775345074],[-71.36617637,41.775232714],[-71.366183711,41.775110626],[-71.366242474,41.775000878],[-71.366230807,41.774896193],[-71.366178,41.77478627],[-71.36614111,41.774676479],[-71.366144657,41.774557176],[-71.366154772,41.774438636],[-71.366178057,41.774318098],[-71.366197338,41.774257564],[-71.366201826,41.77422912],[-71.366214445,41.774199017],[-71.366277233,41.774136361],[-71.366328675,41.774079889],[-71.366364351,41.774009288],[-71.366409954,41.773968955],[-71.366425847,41.773906587],[-71.366425831,41.77384061],[-71.366424794,41.773780921],[-71.366421717,41.773732481],[-71.366393203,41.773693663],[-71.366352603,41.773649113],[-71.366336942,41.773629313],[-71.366315694,41.77360738],[-71.366311271,41.773589788],[-71.366304953,41.773572218],[-71.366298567,41.7735581],[-71.366292685,41.77355137],[-71.366208075,41.773486095],[-71.366093201,41.773416166],[-71.365969631,41.773356105],[-71.365859378,41.773296906],[-71.365778279,41.773189579],[-71.365717161,41.773081681],[-71.365692496,41.773013937],[-71.365688633,41.772888749],[-71.365691359,41.77276789],[-71.365720552,41.772656461],[-71.365740213,41.772545684],[-71.365790234,41.772437298],[-71.365828999,41.772320964],[-71.365842206,41.772198768],[-71.365831649,41.772075653],[-71.365846573,41.77196487],[-71.365862582,41.771846931],[-71.365907105,41.77172356],[-71.365929385,41.771630578],[-71.365995672,41.771515213],[-71.366049585,41.771400452],[-71.366090276,41.771282724],[-71.366140332,41.771171503],[-71.366192209,41.771065977],[-71.366243099,41.770964705],[-71.366311168,41.770858581],[-71.366404587,41.770769066],[-71.366450624,41.77073955],[-71.366527663,41.770667648],[-71.366528315,41.770559548],[-71.366490055,41.770448315],[-71.366534183,41.770351951],[-71.366600247,41.770254355],[-71.366671932,41.770156833],[-71.366753322,41.770048689],[-71.366823531,41.76992553],[-71.366876563,41.769807222],[-71.366931239,41.769705954],[-71.366995418,41.76960337],[-71.367062575,41.769493677],[-71.367125905,41.769372956],[-71.36719325,41.769260817],[-71.367263066,41.769164665],[-71.367341651,41.769052973],[-71.367398329,41.768943176],[-71.367466573,41.768824268],[-71.367538497,41.768712499],[-71.367593173,41.768610544],[-71.367645037,41.768509294],[-71.367648287,41.768502874],[-71.367398504,41.76850853],[-71.367966598,41.76770014],[-71.367991114,41.767641703],[-71.368058586,41.767510674],[-71.368129846,41.767379008],[-71.36820107,41.767250177],[-71.368245727,41.767116857],[-71.368280521,41.76701186],[-71.368322008,41.766904813],[-71.368382684,41.766780155],[-71.368448812,41.766678304],[-71.368531315,41.766589736],[-71.368537591,41.766583042],[-71.368587671,41.766527291],[-71.368649503,41.766278529],[-71.368803503,41.76605253],[-71.368690504,41.76601853],[-71.368385504,41.76595353],[-71.368233504,41.765946529],[-71.368025503,41.765950529],[-71.367790503,41.76595353],[-71.367546503,41.76597653],[-71.367279504,41.76601453],[-71.367226503,41.76603453],[-71.367183504,41.76606053],[-71.366341503,41.76560653],[-71.366005503,41.76561053],[-71.365280503,41.765637529],[-71.364853502,41.76566453],[-71.364059502,41.76568653],[-71.364029502,41.76568853],[-71.363281502,41.76572153],[-71.363121502,41.76572553],[-71.362549502,41.765751529],[-71.361816502,41.76578653],[-71.361450502,41.76580153],[-71.361046501,41.76581253],[-71.360245501,41.76583553],[-71.359375501,41.76585453],[-71.358849501,41.76587053],[-71.358559501,41.76587353],[-71.3584755,41.76587753],[-71.3579645,41.76589253],[-71.3578075,41.76589853],[-71.3583955,41.76677553],[-71.3585085,41.76692753],[-71.359450501,41.76819053],[-71.360058501,41.769005531],[-71.360471502,41.769560531],[-71.360956502,41.770210531],[-71.361004501,41.77027853],[-71.361541502,41.771041531],[-71.361694502,41.770970531],[-71.361801502,41.771096531],[-71.361916502,41.771218531],[-71.362022502,41.771313531],[-71.362099502,41.771393531],[-71.362228502,41.771546531],[-71.362503502,41.771923531],[-71.362556502,41.771992531],[-71.362602502,41.772065531],[-71.362823502,41.772377531],[-71.362869502,41.772454531],[-71.362976502,41.772614531],[-71.363220503,41.773037531],[-71.363258503,41.773125531],[-71.363480502,41.773548532],[-71.363539502,41.773710531],[-71.363571503,41.773796531],[-71.363632503,41.774010531],[-71.363663503,41.774205531],[-71.363670503,41.774327532],[-71.363667503,41.774496531],[-71.363655502,41.774628531],[-71.363602502,41.774853532],[-71.363426502,41.775345531],[-71.363373503,41.775593532],[-71.363319503,41.775910531],[-71.363289502,41.776158532],[-71.363274503,41.776505532]]]]}}"}, +{"type": "precinct", "typeId": 1013, "areaId": 26070, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":409,\"NAME\":\"1013\",\"SHAPE_Length\":0.22904737458419,\"SHAPE_Area\":-0.00059157796892542},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.321985222,41.777909803],[-71.322069384,41.777896303],[-71.32221213,41.777893368],[-71.322362324,41.777881891],[-71.322436973,41.777877913],[-71.322503026,41.777866924],[-71.322559571,41.777846795],[-71.322610383,41.777823159],[-71.322649831,41.777798864],[-71.322665611,41.777771172],[-71.322656779,41.777738684],[-71.322626193,41.777707009],[-71.32258061,41.777684619],[-71.32252373,41.777670787],[-71.322457462,41.777660554],[-71.322384586,41.777653192],[-71.322314619,41.777654295],[-71.322247669,41.777669537],[-71.322115699,41.777709216],[-71.322057219,41.777721566],[-71.322008981,41.777720439],[-71.321964414,41.777706535],[-71.321923487,41.777679875],[-71.321899484,41.777643202],[-71.321900002,41.77759934],[-71.321925031,41.777552475],[-71.321997798,41.777455829],[-71.322032252,41.777403261],[-71.322058136,41.777345786],[-71.322089079,41.777226024],[-71.322105544,41.777171439],[-71.322117299,41.777118996],[-71.32211869,41.777068755],[-71.322106874,41.777022107],[-71.322083745,41.776978369],[-71.32204741,41.776937538],[-71.322001627,41.776899573],[-71.321952086,41.776861648],[-71.321902593,41.776828663],[-71.321857905,41.776803438],[-71.321819962,41.776791648],[-71.321791633,41.776794623],[-71.321770971,41.776808906],[-71.321735547,41.776858637],[-71.321713118,41.776882111],[-71.321689619,41.776894996],[-71.32166311,41.776891593],[-71.321634536,41.776872659],[-71.32160393,41.776837439],[-71.3215751,41.776789484],[-71.32154806,41.776735151],[-71.321516338,41.77668367],[-71.321478111,41.776642127],[-71.32143901,41.776607671],[-71.321406532,41.776575307],[-71.321356722,41.776513301],[-71.321339374,41.776478719],[-71.321333284,41.776438437],[-71.32133756,41.776394536],[-71.321370177,41.776255635],[-71.321405569,41.776107546],[-71.321413632,41.776064313],[-71.321414732,41.775987178],[-71.321422844,41.775948222],[-71.321446106,41.775910571],[-71.32151804,41.775827371],[-71.321545988,41.77578545],[-71.321568282,41.775744298],[-71.321585834,41.775705265],[-71.321595869,41.775666998],[-71.321592643,41.775629511],[-71.321576215,41.775593513],[-71.321545628,41.775562547],[-71.321466578,41.775502142],[-71.321427547,41.775475462],[-71.321385819,41.775462979],[-71.32127709,41.775462879],[-71.321158873,41.775457892],[-71.321100226,41.775453982],[-71.321044341,41.775445799],[-71.320944896,41.775425131],[-71.320793399,41.775401934],[-71.320757421,41.775397899],[-71.320686516,41.775396896],[-71.320596484,41.775374756],[-71.320503564,41.775347671],[-71.320476983,41.775337225],[-71.320433222,41.775309165],[-71.320381904,41.775284683],[-71.320264156,41.775232244],[-71.320203353,41.775202168],[-71.320141553,41.775167836],[-71.320084461,41.77513278],[-71.3200531,41.7751167],[-71.320017034,41.775100613],[-71.319893647,41.775054613],[-71.319784399,41.775000037],[-71.319717869,41.774964325],[-71.319627501,41.774909641],[-71.319600823,41.774890687],[-71.319572601,41.774866454],[-71.319572488,41.774866533],[-71.318935488,41.775309533],[-71.318220488,41.775807533],[-71.318056488,41.775922533],[-71.317818488,41.776087533],[-71.317770924,41.776121224],[-71.317792998,41.776129613],[-71.321985222,41.777909803]]],[[[-71.323982404,41.778766768],[-71.32409649,41.778809534],[-71.32463349,41.779033533],[-71.324904491,41.779146534],[-71.326496491,41.779809534],[-71.326930957,41.780026771],[-71.328113147,41.78053192],[-71.328295662,41.780618251],[-71.328351854,41.780662185],[-71.328317158,41.78062336],[-71.32829701,41.78059376],[-71.32828157,41.780563413],[-71.328268947,41.780530921],[-71.328261031,41.780497726],[-71.328255619,41.780430529],[-71.328250544,41.780397293],[-71.328248341,41.780364039],[-71.328250836,41.780333604],[-71.328343385,41.780045755],[-71.32834972,41.780018825],[-71.328351036,41.779960786],[-71.328348732,41.779827754],[-71.328348079,41.779763377],[-71.328342134,41.779735812],[-71.328324871,41.77971326],[-71.328293482,41.779694323],[-71.328251727,41.779679007],[-71.328198662,41.77966587],[-71.327995979,41.779630234],[-71.327833081,41.779604263],[-71.327645596,41.779575624],[-71.32754237,41.779559919],[-71.327445754,41.779540655],[-71.327361368,41.779517797],[-71.327283587,41.779492753],[-71.327137447,41.779438403],[-71.326996013,41.779384013],[-71.32685174,41.779328934],[-71.326692372,41.779274654],[-71.326608811,41.779240454],[-71.326463494,41.779176179],[-71.326329591,41.779116815],[-71.326187138,41.779055356],[-71.326043769,41.778993874],[-71.325978223,41.778964525],[-71.325919283,41.778932305],[-71.325865976,41.778895817],[-71.325819219,41.77885504],[-71.325777173,41.77881212],[-71.325699691,41.778722677],[-71.325611818,41.778634018],[-71.325534332,41.778546015],[-71.32549044,41.778508032],[-71.325439972,41.778472943],[-71.325327748,41.778407779],[-71.325268834,41.778377686],[-71.32520618,41.778351863],[-71.325135053,41.778330327],[-71.325057349,41.778311662],[-71.324980537,41.778290871],[-71.324827844,41.77824362],[-71.324747253,41.778219325],[-71.32466287,41.778196465],[-71.324576619,41.778174973],[-71.324490416,41.778158513],[-71.324408048,41.778147639],[-71.324265164,41.778133608],[-71.324144951,41.778119428],[-71.324102418,41.778121078],[-71.324079864,41.778134651],[-71.324074476,41.778160873],[-71.324090294,41.77823083],[-71.32410988,41.778297249],[-71.324111117,41.778325539],[-71.324103831,41.778353176],[-71.324068818,41.778442563],[-71.324062267,41.778447538],[-71.32405355,41.778428498],[-71.323991219,41.778341089],[-71.323931917,41.778274199],[-71.323898465,41.77823973],[-71.323860333,41.77820738],[-71.323817511,41.778180741],[-71.323771051,41.778166148],[-71.323721864,41.778165707],[-71.323674672,41.778173067],[-71.323633208,41.778186038],[-71.323600313,41.778204626],[-71.323537389,41.778244618],[-71.323505366,41.778257536],[-71.323473245,41.77826126],[-71.32344487,41.778258586],[-71.323423046,41.778250915],[-71.323409745,41.778243919],[-71.323405884,41.77823687],[-71.323410496,41.77822622],[-71.323493578,41.778121723],[-71.32350846,41.778098282],[-71.323509168,41.778074225],[-71.32349475,41.778050945],[-71.323468975,41.778024927],[-71.323441181,41.777988271],[-71.323397736,41.777899359],[-71.323373657,41.777856328],[-71.323335912,41.777772341],[-71.323316643,41.777735653],[-71.323268753,41.777674359],[-71.323246786,41.777652532],[-71.323226809,41.777639923],[-71.323206024,41.777643573],[-71.323180707,41.777662126],[-71.32306366,41.777774598],[-71.323020617,41.777817297],[-71.32290651,41.777938257],[-71.322789391,41.778042953],[-71.32275009,41.778080649],[-71.322713617,41.778122626],[-71.322657294,41.778200469],[-71.323982404,41.778766768]]],[[[-71.329299591,41.782109492],[-71.329287673,41.782144944],[-71.329284249,41.782180339],[-71.329287453,41.782216408],[-71.329297738,41.782243598],[-71.329299644,41.782228012],[-71.329315953,41.782083577],[-71.329317487,41.782073477],[-71.329299591,41.782109492]]],[[[-71.329899816,41.782350936],[-71.329898471,41.78251306],[-71.329900404,41.782566384],[-71.329939187,41.782520479],[-71.329950304,41.782499204],[-71.329970599,41.782450249],[-71.329996652,41.782407637],[-71.33000398,41.782386357],[-71.330002842,41.782365842],[-71.329989388,41.782346818],[-71.329936973,41.78230608],[-71.329912139,41.78228075],[-71.329889172,41.782253983],[-71.329884096,41.782249354],[-71.329899816,41.782350936]]],[[[-71.343094498,41.803349537],[-71.344368497,41.803593538],[-71.344994498,41.803707538],[-71.344872498,41.804074538],[-71.344772498,41.804360538],[-71.344704498,41.804593538],[-71.344688498,41.804699538],[-71.344719498,41.804768538],[-71.344276498,41.804909538],[-71.344009498,41.805584538],[-71.344238498,41.805687538],[-71.344772498,41.805951538],[-71.344826498,41.805989538],[-71.344849498,41.806031538],[-71.344854499,41.806069538],[-71.344849498,41.806088538],[-71.345146499,41.806145538],[-71.345047499,41.806454538],[-71.345606498,41.806558538],[-71.346092498,41.806649538],[-71.346741499,41.806755538],[-71.347351499,41.806866538],[-71.347794499,41.806939538],[-71.348312499,41.807015538],[-71.3487555,41.807099538],[-71.349243499,41.807186538],[-71.3495035,41.806382538],[-71.3497245,41.805668538],[-71.349968499,41.804974538],[-71.3501595,41.804387537],[-71.350357499,41.803826538],[-71.3504565,41.803524537],[-71.3504685,41.803508537],[-71.350571499,41.803276537],[-71.3507165,41.803067537],[-71.3507545,41.803005537],[-71.3512095,41.803062537],[-71.3512345,41.802895538],[-71.3514565,41.803092538],[-71.3514565,41.801517537],[-71.3514565,41.800427537],[-71.3514635,41.799684536],[-71.3514635,41.799012537],[-71.3514715,41.798191536],[-71.3515325,41.797730537],[-71.3515705,41.797528536],[-71.3517535,41.796757536],[-71.3518605,41.796189536],[-71.3519525,41.795922536],[-71.3519825,41.795575536],[-71.3522195,41.795639536],[-71.3521125,41.795594536],[-71.3520285,41.795536536],[-71.351974499,41.795491536],[-71.3519445,41.795437536],[-71.351585499,41.794407536],[-71.3515175,41.794236536],[-71.3514635,41.794133536],[-71.3513875,41.794011535],[-71.3512125,41.793755535],[-71.3509145,41.793381536],[-71.350769499,41.793267535],[-71.3506625,41.793164536],[-71.3504495,41.792988536],[-71.350403499,41.792958535],[-71.3501975,41.792744535],[-71.349831499,41.792523536],[-71.349655499,41.792442536],[-71.349464499,41.792366536],[-71.349258499,41.792290536],[-71.349106499,41.792244535],[-71.348816498,41.792172536],[-71.348755499,41.792149536],[-71.348709499,41.792115536],[-71.348679498,41.792076536],[-71.348671499,41.792019535],[-71.348686499,41.791958536],[-71.348732499,41.791897536],[-71.348785499,41.791855535],[-71.348892498,41.791794535],[-71.349075499,41.791638535],[-71.349174499,41.791493535],[-71.349442499,41.790982535],[-71.350067499,41.789761535],[-71.350121499,41.789643535],[-71.350174499,41.789544534],[-71.350212499,41.789444534],[-71.350220499,41.789357535],[-71.350220499,41.789177535],[-71.350212499,41.789078534],[-71.350136499,41.788861534],[-71.349861499,41.788193535],[-71.349762499,41.787938535],[-71.349678499,41.787697534],[-71.349663499,41.787598534],[-71.349594498,41.787266534],[-71.349533499,41.786858534],[-71.349434499,41.786351534],[-71.349396499,41.786263535],[-71.349304498,41.786110534],[-71.349228498,41.786030535],[-71.349159499,41.785973534],[-71.349098498,41.785950534],[-71.348999498,41.785942534],[-71.350273499,41.785538534],[-71.351839499,41.785078534],[-71.351780499,41.784946534],[-71.352228499,41.784793534],[-71.3525155,41.784710534],[-71.352676499,41.784658534],[-71.3528065,41.784608533],[-71.3530955,41.784517534],[-71.3533745,41.784402534],[-71.3535105,41.784342534],[-71.3536205,41.784254534],[-71.3537125,41.784169534],[-71.3538405,41.784067533],[-71.3537965,41.784078534],[-71.3537265,41.784066533],[-71.3536755,41.784021534],[-71.3536855,41.783901534],[-71.3537385,41.783765534],[-71.3537455,41.783623534],[-71.3537455,41.783360533],[-71.3537525,41.783245533],[-71.3537765,41.783125534],[-71.3537835,41.783008533],[-71.3538035,41.782959533],[-71.3537155,41.782888534],[-71.3535785,41.782837533],[-71.3535395,41.782805533],[-71.353496499,41.782770534],[-71.353460499,41.782674534],[-71.3535305,41.782570533],[-71.353577499,41.782545533],[-71.3534685,41.782367533],[-71.3534245,41.782246534],[-71.353400499,41.782147534],[-71.3534255,41.782037533],[-71.3534945,41.781931533],[-71.353537499,41.781824533],[-71.3535335,41.781806533],[-71.3551465,41.781106533],[-71.3554125,41.780990533],[-71.357906501,41.779907533],[-71.362458503,41.779720532],[-71.363104503,41.779753532],[-71.363120503,41.779795532],[-71.363131502,41.779811532],[-71.363174503,41.779934532],[-71.363167502,41.779798532],[-71.363162503,41.779756532],[-71.363152502,41.779675532],[-71.363129502,41.779526532],[-71.363129502,41.779122533],[-71.363136503,41.778942532],[-71.363152502,41.778656533],[-71.363182503,41.778378532],[-71.363182503,41.778279532],[-71.363190502,41.777916532],[-71.363213502,41.777520532],[-71.363220503,41.777024532],[-71.363274503,41.776505532],[-71.363289502,41.776158532],[-71.363319503,41.775910531],[-71.363373503,41.775593532],[-71.363426502,41.775345531],[-71.363602502,41.774853532],[-71.363655502,41.774628531],[-71.363667503,41.774496531],[-71.363670503,41.774327532],[-71.363663503,41.774205531],[-71.363632503,41.774010531],[-71.363571503,41.773796531],[-71.363539502,41.773710531],[-71.363480502,41.773548532],[-71.363258503,41.773125531],[-71.363220503,41.773037531],[-71.362976502,41.772614531],[-71.362869502,41.772454531],[-71.362823502,41.772377531],[-71.362602502,41.772065531],[-71.362556502,41.771992531],[-71.362503502,41.771923531],[-71.362228502,41.771546531],[-71.362099502,41.771393531],[-71.362022502,41.771313531],[-71.361916502,41.771218531],[-71.361801502,41.771096531],[-71.361694502,41.770970531],[-71.361541502,41.771041531],[-71.361004501,41.77027853],[-71.360956502,41.770210531],[-71.360471502,41.769560531],[-71.360058501,41.769005531],[-71.359450501,41.76819053],[-71.3585085,41.76692753],[-71.3583955,41.76677553],[-71.3578075,41.76589853],[-71.3574595,41.765380529],[-71.3573375,41.76522053],[-71.356244499,41.76378753],[-71.3551715,41.762381529],[-71.355058499,41.762232529],[-71.353900499,41.760646529],[-71.353865498,41.760658529],[-71.353848498,41.760716529],[-71.353852498,41.760767529],[-71.353902499,41.760883529],[-71.353971499,41.761002529],[-71.354218498,41.761318529],[-71.354377499,41.761545529],[-71.354440499,41.761645529],[-71.354503499,41.761760529],[-71.354582499,41.76188753],[-71.354676499,41.762013529],[-71.354878499,41.762246529],[-71.355045499,41.762496529],[-71.355393499,41.762990529],[-71.3554605,41.76309553],[-71.3555175,41.76321353],[-71.3555195,41.763333529],[-71.355489499,41.76342553],[-71.355337499,41.76356253],[-71.355239499,41.763804529],[-71.355218499,41.763920529],[-71.355250499,41.76400053],[-71.355371499,41.764096529],[-71.3555025,41.76414153],[-71.355645499,41.764171529],[-71.3558095,41.76421553],[-71.355941499,41.76427653],[-71.3560475,41.76435253],[-71.3560665,41.76439753],[-71.355953499,41.764503529],[-71.355878499,41.76457453],[-71.3558115,41.76468953],[-71.355780499,41.76482153],[-71.355781499,41.76504153],[-71.3557915,41.76515253],[-71.3557915,41.76528353],[-71.355801499,41.76540853],[-71.355761499,41.76549853],[-71.3556315,41.76556453],[-71.3555615,41.76567953],[-71.3555205,41.76579253],[-71.355490499,41.76592253],[-71.355486499,41.76598053],[-71.3554835,41.76603853],[-71.3554955,41.76612053],[-71.355530499,41.76618953],[-71.355627499,41.76629853],[-71.355841499,41.766508531],[-71.3559085,41.766607531],[-71.3559635,41.76670953],[-71.356052499,41.76677753],[-71.356205499,41.76678453],[-71.3563335,41.76675553],[-71.3564585,41.76669553],[-71.3565635,41.76665753],[-71.3566175,41.76665653],[-71.3567615,41.76661153],[-71.3568125,41.76665253],[-71.3568145,41.76673653],[-71.3567155,41.76682253],[-71.3566825,41.766841531],[-71.3566225,41.76684853],[-71.3564515,41.76687753],[-71.3563485,41.76688953],[-71.3563145,41.766957531],[-71.3563105,41.76706853],[-71.3562905,41.767131531],[-71.3562525,41.767169531],[-71.3562045,41.76716653],[-71.3561765,41.76707153],[-71.3561245,41.767054531],[-71.3560815,41.767091531],[-71.3560765,41.76722453],[-71.3560845,41.76735253],[-71.3560825,41.76747453],[-71.356088499,41.76758653],[-71.3560745,41.76763253],[-71.3560465,41.76763253],[-71.3559805,41.76761153],[-71.355877499,41.767504531],[-71.3557365,41.76729853],[-71.355702499,41.76721553],[-71.355686499,41.76716053],[-71.355528499,41.767092531],[-71.355447499,41.767072531],[-71.3552865,41.76738853],[-71.3551645,41.76778453],[-71.355154499,41.76780153],[-71.355083499,41.76801953],[-71.355026499,41.76819653],[-71.354958499,41.76842553],[-71.354752499,41.769093531],[-71.3543325,41.76910853],[-71.3542335,41.769101531],[-71.354149499,41.76908953],[-71.353882499,41.769040531],[-71.353378499,41.768956531],[-71.353157499,41.76961253],[-71.352829499,41.769555531],[-71.352493499,41.769493531],[-71.352028499,41.769413531],[-71.351990499,41.769421531],[-71.351967499,41.76943653],[-71.351875499,41.769696531],[-71.351639499,41.770443531],[-71.351555498,41.770760531],[-71.351234498,41.770718531],[-71.351044498,41.770665531],[-71.350899499,41.770615531],[-71.350822499,41.770588531],[-71.350716498,41.770543531],[-71.350479498,41.770382531],[-71.349762498,41.771103531],[-71.349670498,41.771252531],[-71.349670498,41.771897531],[-71.350914498,41.771889532],[-71.351807499,41.771885531],[-71.351807499,41.772393532],[-71.351814499,41.772671532],[-71.351791499,41.773194532],[-71.351761498,41.773426532],[-71.351761498,41.773713532],[-71.351657499,41.774504532],[-71.351669499,41.774525531],[-71.352509499,41.774426532],[-71.353836499,41.774281532],[-71.3548365,41.774144532],[-71.3551105,41.774464532],[-71.3551105,41.774590532],[-71.355095499,41.774716532],[-71.3549885,41.775013531],[-71.3547295,41.775837532],[-71.3544625,41.776616532],[-71.354454499,41.776650533],[-71.3543705,41.776928532],[-71.3543245,41.777104532],[-71.3543095,41.777272533],[-71.3540505,41.778000532],[-71.3539585,41.778248533],[-71.3538595,41.778405533],[-71.3537605,41.778527532],[-71.3536685,41.778588532],[-71.3535695,41.778668533],[-71.353348499,41.778790533],[-71.353233499,41.778843533],[-71.351654499,41.779309533],[-71.351204499,41.779438533],[-71.350922498,41.779518532],[-71.350189498,41.779747533],[-71.349556498,41.779934533],[-71.348900498,41.780140533],[-71.348557498,41.780224533],[-71.348450498,41.780255533],[-71.348259498,41.780301533],[-71.348053498,41.780339533],[-71.347862497,41.780365533],[-71.347664497,41.780384533],[-71.347382498,41.780392533],[-71.346664498,41.780388533],[-71.345802497,41.780362533],[-71.344833497,41.780323533],[-71.343628496,41.780281533],[-71.342827496,41.780259533],[-71.339989495,41.780167533],[-71.338997495,41.780140534],[-71.337502495,41.780091533],[-71.335587494,41.780030533],[-71.334976493,41.780011533],[-71.334747494,41.780007533],[-71.334381494,41.779965534],[-71.333549493,41.779938533],[-71.333420493,41.779938533],[-71.333397493,41.779919534],[-71.332832493,41.779549533],[-71.332642493,41.779404533],[-71.332367493,41.779175533],[-71.332024492,41.778839533],[-71.331718492,41.778523533],[-71.331543492,41.778355533],[-71.331116492,41.777913533],[-71.330940492,41.777764533],[-71.330780492,41.777615533],[-71.330574492,41.777455533],[-71.330482492,41.777378533],[-71.330040492,41.777077533],[-71.329536492,41.776741533],[-71.329193492,41.776505533],[-71.328178491,41.775834532],[-71.327728491,41.775525533],[-71.327591491,41.775410533],[-71.327309491,41.775151532],[-71.327194491,41.775010533],[-71.326950491,41.774681532],[-71.32670649,41.774304533],[-71.326698491,41.774285533],[-71.32646949,41.773938533],[-71.32630949,41.773682533],[-71.32606549,41.773312533],[-71.32578349,41.772866533],[-71.32566149,41.772682532],[-71.32517249,41.771931533],[-71.324966489,41.771599532],[-71.32481649,41.771367532],[-71.32477649,41.771305532],[-71.32466149,41.771382532],[-71.322695704,41.772722386],[-71.322695972,41.77274869],[-71.322696572,41.77280815],[-71.322694915,41.772832914],[-71.32268506,41.77288392],[-71.322683741,41.77294125],[-71.322678323,41.772967472],[-71.322668173,41.772992292],[-71.322653268,41.773013606],[-71.322637371,41.77302856],[-71.32260729,41.773047129],[-71.322596899,41.773048599],[-71.322591221,41.773047219],[-71.322586417,41.77303875],[-71.322561037,41.772958944],[-71.322556865,41.772920746],[-71.322558911,41.77284359],[-71.322563234,41.772804651],[-71.32256317,41.772801669],[-71.322509489,41.772824533],[-71.321769489,41.773338532],[-71.320652492,41.774113531],[-71.320652602,41.774113858],[-71.320656634,41.774126073],[-71.320661725,41.774162854],[-71.320664618,41.774166357],[-71.320674086,41.774167012],[-71.320701374,41.774252516],[-71.320724385,41.774282807],[-71.320759555,41.774302415],[-71.320802202,41.774313504],[-71.320894957,41.774322888],[-71.320940442,41.774335377],[-71.320982267,41.774356367],[-71.321062119,41.774402618],[-71.321102098,41.774428568],[-71.321134573,41.774461641],[-71.321157603,41.774496186],[-71.321183479,41.774529294],[-71.321220664,41.774560225],[-71.321266322,41.774587556],[-71.321315741,41.774613475],[-71.321368898,41.774635809],[-71.321477113,41.774677644],[-71.321532161,41.77470069],[-71.321587191,41.774719482],[-71.321636416,41.7747277],[-71.321679967,41.77473241],[-71.321716011,41.774745638],[-71.321744605,41.774768117],[-71.321774219,41.774796978],[-71.321809484,41.774826487],[-71.321855163,41.774857363],[-71.321902816,41.774892472],[-71.321944779,41.774930453],[-71.321981092,41.774967763],[-71.322012668,41.775005797],[-71.322038563,41.775043159],[-71.32205978,41.775081955],[-71.322073414,41.775122934],[-71.322081423,41.775165345],[-71.32209227,41.775209179],[-71.322126193,41.775293183],[-71.322137964,41.775334159],[-71.32216898,41.775408988],[-71.322172201,41.775448602],[-71.322152843,41.775588118],[-71.322150532,41.775639798],[-71.32215353,41.775748773],[-71.322156471,41.775856307],[-71.322159813,41.775907241],[-71.322170687,41.77595247],[-71.322190008,41.775991994],[-71.322212094,41.776025828],[-71.322223767,41.77605832],[-71.322226401,41.776133311],[-71.322231542,41.776174346],[-71.322250816,41.776208908],[-71.322284188,41.776238437],[-71.322328005,41.77626931],[-71.322474714,41.776378872],[-71.322521341,41.776409749],[-71.322568895,41.776437082],[-71.322611711,41.776465139],[-71.322649821,41.776493944],[-71.322682273,41.77652489],[-71.322708146,41.776559417],[-71.322756205,41.776636284],[-71.322777446,41.776677916],[-71.322806641,41.776759831],[-71.322823095,41.776797956],[-71.322844282,41.776836751],[-71.322870201,41.776876949],[-71.322920225,41.776961572],[-71.322951759,41.776993249],[-71.322992634,41.777016363],[-71.323096094,41.777056132],[-71.323153966,41.777075613],[-71.323214626,41.777092264],[-71.323385355,41.777145056],[-71.323438489,41.777165285],[-71.323486993,41.777191888],[-71.323530778,41.777223491],[-71.323633868,41.777320568],[-71.323656836,41.777345187],[-71.32372154,41.777480693],[-71.323737099,41.777522361],[-71.323757338,41.777561886],[-71.32378042,41.777600662],[-71.323801634,41.777641584],[-71.32381906,41.777681837],[-71.323838327,41.777719211],[-71.323864183,41.777749506],[-71.323898433,41.777771238],[-71.323939193,41.777780929],[-71.324034665,41.777781784],[-71.324090501,41.77778642],[-71.324209793,41.777802016],[-71.324371782,41.777834349],[-71.32442106,41.77784611],[-71.324512088,41.777874607],[-71.324553793,41.777885007],[-71.324616329,41.777897383],[-71.324648522,41.777900726],[-71.324671266,41.777906958],[-71.324707314,41.777919476],[-71.324814444,41.777947197],[-71.324873236,41.77796597],[-71.324977689,41.778012073],[-71.325028937,41.778030172],[-71.325082949,41.778042603],[-71.325182336,41.778053365],[-71.325222149,41.778063054],[-71.325255376,41.778079135],[-71.325282056,41.778098797],[-71.32537935,41.778182439],[-71.325460376,41.778249202],[-71.325503224,41.778277991],[-71.325628753,41.778348732],[-71.32570767,41.778393583],[-71.325789575,41.77845184],[-71.325881992,41.778520655],[-71.325964984,41.778595196],[-71.326099323,41.778696343],[-71.326146926,41.778729323],[-71.326291491,41.778811321],[-71.326381744,41.778856074],[-71.32645496,41.778896708],[-71.326513856,41.778922548],[-71.326533759,41.778928821],[-71.326553643,41.778930818],[-71.326557428,41.778932218],[-71.326603916,41.778948228],[-71.326642855,41.778964981],[-71.326681818,41.77898457],[-71.326751223,41.779022385],[-71.326804438,41.779047553],[-71.326845316,41.779070689],[-71.326880567,41.779095944],[-71.326912027,41.779121947],[-71.326929165,41.779133888],[-71.326950065,41.779144393],[-71.327084796,41.779191729],[-71.327142721,41.779215462],[-71.327254776,41.77926505],[-71.32731644,41.779284513],[-71.327470983,41.779326801],[-71.327563889,41.779351044],[-71.327606564,41.779364944],[-71.327757487,41.77942424],[-71.327832451,41.779451429],[-71.327956675,41.779486788],[-71.328037296,41.779512522],[-71.328110341,41.779537581],[-71.32821937,41.779565255],[-71.328323706,41.779600035],[-71.328356921,41.779609758],[-71.328388237,41.779621605],[-71.328441423,41.779646771],[-71.328485193,41.779674119],[-71.328504299,41.779693129],[-71.328518747,41.779717094],[-71.328555521,41.77980181],[-71.328576912,41.779857596],[-71.328581912,41.779884451],[-71.328579335,41.779911364],[-71.328565734,41.779970871],[-71.328558817,41.780032493],[-71.328553429,41.780059401],[-71.328544224,41.780085641],[-71.328507204,41.780162288],[-71.328488824,41.780214767],[-71.32847518,41.780267048],[-71.328467,41.780298389],[-71.328462533,41.780323881],[-71.32846304,41.780374124],[-71.328465203,41.780399581],[-71.328471123,41.780425043],[-71.32849249,41.780478702],[-71.328543762,41.780591613],[-71.328607241,41.780698826],[-71.328621709,41.780727045],[-71.328644044,41.78078425],[-71.328659778,41.780842177],[-71.328665777,41.780872579],[-71.328675532,41.780995651],[-71.328686646,41.781059724],[-71.328786281,41.781356924],[-71.328813877,41.781397502],[-71.328877219,41.781487746],[-71.328933952,41.781581547],[-71.328950338,41.781612581],[-71.328963936,41.78164647],[-71.328972794,41.781681816],[-71.328975998,41.781717885],[-71.328975806,41.781790059],[-71.328972384,41.781824768],[-71.328949782,41.78192538],[-71.328945339,41.781952999],[-71.328944198,41.782025904],[-71.328944973,41.782102332],[-71.328941717,41.78215472],[-71.328947061,41.782213409],[-71.328954007,41.782243812],[-71.328979202,41.782305939],[-71.329028485,41.782409677],[-71.329043998,41.78244709],[-71.329065559,41.782519868],[-71.329079133,41.78255163],[-71.329095492,41.782581247],[-71.32911467,41.782608032],[-71.329136642,41.782629836],[-71.329161405,41.78264739],[-71.329213698,41.7826761],[-71.329233656,41.782685185],[-71.329249705,41.782682259],[-71.329260895,41.782668051],[-71.329279154,41.782638016],[-71.329273413,41.782570792],[-71.329276964,41.782547589],[-71.32926978,41.782520812],[-71.329230235,41.782443182],[-71.329208921,41.782392359],[-71.329183813,41.78234368],[-71.329174101,41.782318967],[-71.329168155,41.782291401],[-71.329165022,41.782263108],[-71.329165072,41.78217536],[-71.329176338,41.782074799],[-71.329181679,41.782042219],[-71.329188939,41.782012455],[-71.329215517,41.781933048],[-71.3292304,41.781908898],[-71.329250988,41.781887546],[-71.329277283,41.781868993],[-71.329309257,41.781851843],[-71.329344069,41.781836069],[-71.329380802,41.781821694],[-71.329418527,41.7818137],[-71.329498743,41.781813637],[-71.329516501,41.78180932],[-71.329544312,41.781818503],[-71.329576549,41.781825529],[-71.329614466,41.78183734],[-71.329650568,41.781853401],[-71.329684824,41.781874446],[-71.329717261,41.781901845],[-71.329747828,41.781931391],[-71.329805216,41.78199759],[-71.329887567,41.782098312],[-71.329944913,41.782157421],[-71.329970744,41.782187006],[-71.329994706,41.782218715],[-71.330036002,41.782281437],[-71.330075331,41.782337135],[-71.330106139,41.782391448],[-71.330114008,41.782419703],[-71.3301143,41.782448015],[-71.33010078,41.782511776],[-71.330086915,41.782543703],[-71.330065481,41.782572829],[-71.330040232,41.782600577],[-71.330010275,41.782629051],[-71.3299052,41.782709622],[-71.329889586,41.782720658],[-71.329875002,41.782765712],[-71.329763064,41.782894097],[-71.329725614,41.782930875],[-71.329710721,41.782964645],[-71.329753294,41.783018332],[-71.329826805,41.783088671],[-71.329886121,41.783154141],[-71.329912896,41.783185145],[-71.329930036,41.783197085],[-71.329953925,41.783221682],[-71.329963589,41.783241478],[-71.329967568,41.783261974],[-71.329968102,41.783314344],[-71.329957885,41.78333068],[-71.329935328,41.783344963],[-71.329903286,41.78335292],[-71.329867354,41.783353141],[-71.329832269,41.783344833],[-71.329815598,41.783335818],[-71.329853718,41.783405607],[-71.329867597,41.783486369],[-71.329866624,41.783594466],[-71.329872115,41.783684391],[-71.329863886,41.78372608],[-71.329894492,41.783769534],[-71.329912492,41.783809534],[-71.329906492,41.783854534],[-71.329892492,41.783900535],[-71.329890492,41.783958535],[-71.32987025,41.784164703],[-71.329897089,41.784206267],[-71.329896116,41.784314363],[-71.329916461,41.784376997],[-71.329938615,41.784448595],[-71.329973511,41.784496619],[-71.329993492,41.784515534],[-71.330130493,41.784615534],[-71.330206492,41.784686534],[-71.330232492,41.784726534],[-71.330250492,41.784766534],[-71.330268492,41.784851534],[-71.330274492,41.785081534],[-71.330286493,41.785171535],[-71.330302492,41.785215534],[-71.330352492,41.785304535],[-71.330391492,41.785389534],[-71.330393492,41.785430534],[-71.330375492,41.785470534],[-71.330342493,41.785507534],[-71.330262492,41.785581535],[-71.33023847,41.785615497],[-71.330235993,41.785649391],[-71.330205389,41.785740077],[-71.330175315,41.785803708],[-71.330171041,41.785812383],[-71.330104492,41.786061535],[-71.330038492,41.786283535],[-71.329998492,41.786365534],[-71.329912492,41.786484535],[-71.329888492,41.786525535],[-71.329872492,41.786570535],[-71.329847492,41.786706535],[-71.329831492,41.786747535],[-71.329807492,41.786788535],[-71.329770031,41.786835541],[-71.329738821,41.786947375],[-71.329723389,41.787019732],[-71.329700276,41.787137272],[-71.329669093,41.787273024],[-71.329653585,41.787417417],[-71.329651714,41.787561574],[-71.329651251,41.787609586],[-71.329651492,41.787611535],[-71.329652492,41.787746535],[-71.329647403,41.787775711],[-71.329641784,41.787849964],[-71.329588694,41.787950093],[-71.329544729,41.788023051],[-71.329514958,41.788055236],[-71.329448493,41.788178535],[-71.329435492,41.788218535],[-71.32943438,41.788226135],[-71.329440057,41.78825933],[-71.329453369,41.788295068],[-71.329475758,41.788321644],[-71.329504884,41.788357062],[-71.329520385,41.788390236],[-71.329540492,41.788405535],[-71.329590492,41.788436535],[-71.329638107,41.788473162],[-71.32970912,41.788515031],[-71.329847363,41.788539248],[-71.329934727,41.788564505],[-71.330244017,41.78855823],[-71.330368625,41.788582727],[-71.33043424,41.788599375],[-71.3304704,41.788661689],[-71.330433587,41.788716477],[-71.330396798,41.788736995],[-71.330382493,41.788753535],[-71.330350383,41.788768046],[-71.330292948,41.788818407],[-71.330240991,41.788864043],[-71.330240814,41.788864925],[-71.330263192,41.788891086],[-71.330306323,41.78891722],[-71.330372444,41.788915859],[-71.330467349,41.78894996],[-71.33046655,41.788992021],[-71.330482493,41.789003535],[-71.33047578,41.789074393],[-71.330495389,41.789093474],[-71.330532126,41.789110766],[-71.330686257,41.789107649],[-71.33080376,41.789132263],[-71.330822276,41.789147275],[-71.330892492,41.789144535],[-71.330929493,41.789188536],[-71.330922493,41.789350535],[-71.330871493,41.789486535],[-71.330871493,41.789558536],[-71.330896523,41.78958013],[-71.33094596,41.789570696],[-71.331011307,41.789515306],[-71.331042366,41.789469643],[-71.331101319,41.789405411],[-71.331116173,41.789378076],[-71.331204435,41.789367272],[-71.331262946,41.789384123],[-71.331298653,41.789401413],[-71.331335526,41.78945468],[-71.331400933,41.789507389],[-71.331457901,41.7896123],[-71.331461311,41.789615526],[-71.331524204,41.789648985],[-71.331691832,41.789699613],[-71.331867778,41.789768091],[-71.332064854,41.789863185],[-71.332108307,41.789898323],[-71.332189024,41.78996872],[-71.332225578,41.790013025],[-71.33226142,41.790066333],[-71.332266907,41.790073056],[-71.332367493,41.790149535],[-71.332455493,41.790368535],[-71.332448493,41.790485535],[-71.332374493,41.790545535],[-71.332140493,41.790672536],[-71.331898493,41.790771535],[-71.331803493,41.790854535],[-71.331803493,41.790940536],[-71.331868493,41.790979536],[-71.331941173,41.790998825],[-71.33195119,41.791000256],[-71.332090657,41.790997415],[-71.332180057,41.791062353],[-71.332199493,41.791067535],[-71.332232493,41.791099536],[-71.332270493,41.791135536],[-71.332272493,41.791137536],[-71.332276318,41.791147031],[-71.332295227,41.791164385],[-71.332344817,41.791307459],[-71.332409331,41.791396227],[-71.332483046,41.791457278],[-71.332715724,41.791536348],[-71.332789493,41.79155063],[-71.332877688,41.791566838],[-71.332957882,41.791619224],[-71.332978302,41.791654844],[-71.332990469,41.791680088],[-71.333042493,41.791730535],[-71.332998493,41.791861536],[-71.332932494,41.791921535],[-71.332602494,41.792054536],[-71.332597026,41.792110767],[-71.332600441,41.792112842],[-71.332673991,41.792120367],[-71.332718342,41.792119445],[-71.332791181,41.792135974],[-71.332879835,41.792152183],[-71.332914716,41.792223541],[-71.332907862,41.792234508],[-71.332918494,41.792241536],[-71.332940493,41.792317536],[-71.332712493,41.792484536],[-71.332717797,41.792526303],[-71.332736059,41.792533382],[-71.33277312,41.792559635],[-71.33284628,41.792585169],[-71.33291073,41.792610861],[-71.33296246,41.792636835],[-71.332985994,41.792661673],[-71.333028494,41.792676536],[-71.333050494,41.792689536],[-71.333027494,41.792761536],[-71.332764493,41.793032536],[-71.332767982,41.793059452],[-71.332775591,41.793063938],[-71.332797365,41.793063499],[-71.3329141,41.793034082],[-71.333105876,41.793012192],[-71.333208422,41.793019116],[-71.333281468,41.793044649],[-71.333333198,41.793070623],[-71.33334639,41.793098823],[-71.333395494,41.793127536],[-71.333418494,41.793179536],[-71.333432493,41.793212536],[-71.333465913,41.793438118],[-71.333482898,41.793454822],[-71.333512854,41.793481236],[-71.333563551,41.793552274],[-71.333606181,41.793596415],[-71.333643379,41.793658729],[-71.333645826,41.793676007],[-71.333725494,41.793756536],[-71.333732494,41.793868536],[-71.33375293,41.793905693],[-71.333897305,41.793988037],[-71.334033494,41.794020536],[-71.334092494,41.794077536],[-71.334104298,41.794232675],[-71.33411063,41.794264683],[-71.334198494,41.794331536],[-71.3342089,41.794339567],[-71.334229254,41.794349285],[-71.33423271,41.794357942],[-71.334290494,41.794402536],[-71.334283494,41.794465536],[-71.334129494,41.794567536],[-71.334107494,41.794599536],[-71.334128673,41.794644815],[-71.334142764,41.794648241],[-71.334186611,41.79466537],[-71.334454304,41.794713952],[-71.334605123,41.794755933],[-71.334936465,41.794965316],[-71.334964932,41.79499177],[-71.334986203,41.795009338],[-71.335096109,41.795052161],[-71.335190841,41.795113271],[-71.33532321,41.795110588],[-71.335410792,41.795099779],[-71.335543368,41.795106101],[-71.335807741,41.795064672],[-71.336013848,41.795042455],[-71.336240721,41.795055856],[-71.336306458,41.795072544],[-71.336467182,41.795096271],[-71.336614244,41.795129325],[-71.336760573,41.795180388],[-71.336907108,41.795240455],[-71.336927455,41.795253126],[-71.337048495,41.795296536],[-71.337745495,41.795696536],[-71.337815177,41.795727357],[-71.337870201,41.795743159],[-71.337928375,41.795760007],[-71.338025173,41.795776051],[-71.338112045,41.795774287],[-71.338229953,41.795780885],[-71.338398425,41.795777435],[-71.338500975,41.795784354],[-71.338618312,41.795836016],[-71.338734962,41.795932701],[-71.338844047,41.795984523],[-71.338916893,41.796001048],[-71.339092677,41.796006482],[-71.339327921,41.796019675],[-71.339401476,41.796027196],[-71.339422863,41.796044764],[-71.339423755,41.79604769],[-71.339461496,41.796048537],[-71.339476496,41.796246537],[-71.33956179,41.796389423],[-71.339617624,41.796437078],[-71.339668191,41.796472052],[-71.339749428,41.796524435],[-71.339946148,41.796637524],[-71.340069701,41.79672504],[-71.340178929,41.79681288],[-71.340265992,41.796919212],[-71.340304611,41.796970754],[-71.340319496,41.796985537],[-71.340327458,41.797001245],[-71.340339096,41.797016778],[-71.340351135,41.79704796],[-71.340430496,41.797204537],[-71.340423496,41.797442536],[-71.340371496,41.797633537],[-71.340324604,41.797688245],[-71.340324239,41.797692529],[-71.340316748,41.797755722],[-71.340344715,41.797800184],[-71.340369378,41.797832765],[-71.340481496,41.797891536],[-71.340753496,41.797990536],[-71.340892778,41.798070307],[-71.341016791,41.798110702],[-71.341090926,41.798163246],[-71.341170813,41.798206621],[-71.341182435,41.798236201],[-71.341193496,41.798242536],[-71.341244497,41.798353537],[-71.341245497,41.798473536],[-71.341245497,41.798488537],[-71.341219497,41.798527537],[-71.341125278,41.798666437],[-71.341092504,41.798730579],[-71.341071289,41.798746028],[-71.341025497,41.798813537],[-71.340820496,41.799006537],[-71.340790496,41.799070537],[-71.340790496,41.799127688],[-71.340809075,41.799150658],[-71.34085286,41.799194798],[-71.34094788,41.799282917],[-71.341033847,41.799371238],[-71.341071055,41.799433507],[-71.341092765,41.799460079],[-71.341092602,41.799472528],[-71.341098496,41.799478537],[-71.341116496,41.799553537],[-71.341128497,41.799607537],[-71.341107118,41.799691596],[-71.341119468,41.799738743],[-71.341133753,41.799801495],[-71.341155078,41.799891099],[-71.341169042,41.799944845],[-71.341182685,41.79998963],[-71.341233832,41.800069627],[-71.341277322,41.80014078],[-71.341279588,41.800163962],[-71.341304497,41.800234537],[-71.341297497,41.800352537],[-71.34116147,41.800601626],[-71.341147731,41.800638768],[-71.341131281,41.800756191],[-71.34112322,41.800864449],[-71.341144364,41.800981066],[-71.341084382,41.801090367],[-71.341080011,41.80109619],[-71.341048497,41.801194537],[-71.340945497,41.801327537],[-71.340682496,41.801575537],[-71.340660497,41.801652537],[-71.340670304,41.801721892],[-71.340689964,41.80175586],[-71.340755324,41.801835576],[-71.340805393,41.801888601],[-71.340816814,41.801905822],[-71.340828497,41.801915537],[-71.340887497,41.802004537],[-71.340894497,41.802116538],[-71.340886497,41.802135538],[-71.340889497,41.802136538],[-71.342300498,41.802410538],[-71.343181497,41.802571537],[-71.343346498,41.802601538],[-71.343094498,41.803349537]]]]}}"}, +{"type": "precinct", "typeId": 1014, "areaId": 26069, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":408,\"NAME\":\"1014\",\"SHAPE_Length\":0.08591361218712,\"SHAPE_Area\":-0.00014588825351674},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.367398504,41.76850853],[-71.367648287,41.768502874],[-71.36770957,41.768381806],[-71.367769367,41.768254998],[-71.367822535,41.768128137],[-71.367871884,41.768001957],[-71.36791286,41.767861498],[-71.367946819,41.767747284],[-71.367966598,41.76770014],[-71.367398504,41.76850853]]],[[[-71.349998498,41.769524531],[-71.350143498,41.769829531],[-71.350311498,41.770169531],[-71.350372498,41.770256531],[-71.350449498,41.770340531],[-71.350479498,41.770382531],[-71.350716498,41.770543531],[-71.350822499,41.770588531],[-71.350899499,41.770615531],[-71.351044498,41.770665531],[-71.351234498,41.770718531],[-71.351555498,41.770760531],[-71.351639499,41.770443531],[-71.351875499,41.769696531],[-71.351967499,41.76943653],[-71.351990499,41.769421531],[-71.352028499,41.769413531],[-71.352493499,41.769493531],[-71.352829499,41.769555531],[-71.353157499,41.76961253],[-71.353378499,41.768956531],[-71.353882499,41.769040531],[-71.354149499,41.76908953],[-71.3542335,41.769101531],[-71.3543325,41.76910853],[-71.354752499,41.769093531],[-71.354958499,41.76842553],[-71.355026499,41.76819653],[-71.355083499,41.76801953],[-71.355154499,41.76780153],[-71.3551645,41.76778453],[-71.3552865,41.76738853],[-71.355447499,41.767072531],[-71.355528499,41.767092531],[-71.355686499,41.76716053],[-71.355702499,41.76721553],[-71.3557365,41.76729853],[-71.355877499,41.767504531],[-71.3559805,41.76761153],[-71.3560465,41.76763253],[-71.3560745,41.76763253],[-71.356088499,41.76758653],[-71.3560825,41.76747453],[-71.3560845,41.76735253],[-71.3560765,41.76722453],[-71.3560815,41.767091531],[-71.3561245,41.767054531],[-71.3561765,41.76707153],[-71.3562045,41.76716653],[-71.3562525,41.767169531],[-71.3562905,41.767131531],[-71.3563105,41.76706853],[-71.3563145,41.766957531],[-71.3563485,41.76688953],[-71.3564515,41.76687753],[-71.3566225,41.76684853],[-71.3566825,41.766841531],[-71.3567155,41.76682253],[-71.3568145,41.76673653],[-71.3568125,41.76665253],[-71.3567615,41.76661153],[-71.3566175,41.76665653],[-71.3565635,41.76665753],[-71.3564585,41.76669553],[-71.3563335,41.76675553],[-71.356205499,41.76678453],[-71.356052499,41.76677753],[-71.3559635,41.76670953],[-71.3559085,41.766607531],[-71.355841499,41.766508531],[-71.355627499,41.76629853],[-71.355530499,41.76618953],[-71.3554955,41.76612053],[-71.3554835,41.76603853],[-71.355486499,41.76598053],[-71.355490499,41.76592253],[-71.3555205,41.76579253],[-71.3555615,41.76567953],[-71.3556315,41.76556453],[-71.355761499,41.76549853],[-71.355801499,41.76540853],[-71.3557915,41.76528353],[-71.3557915,41.76515253],[-71.355781499,41.76504153],[-71.355780499,41.76482153],[-71.3558115,41.76468953],[-71.355878499,41.76457453],[-71.355953499,41.764503529],[-71.3560665,41.76439753],[-71.3560475,41.76435253],[-71.355941499,41.76427653],[-71.3558095,41.76421553],[-71.355645499,41.764171529],[-71.3555025,41.76414153],[-71.355371499,41.764096529],[-71.355250499,41.76400053],[-71.355218499,41.763920529],[-71.355239499,41.763804529],[-71.355337499,41.76356253],[-71.355489499,41.76342553],[-71.3555195,41.763333529],[-71.3555175,41.76321353],[-71.3554605,41.76309553],[-71.355393499,41.762990529],[-71.355045499,41.762496529],[-71.354878499,41.762246529],[-71.354676499,41.762013529],[-71.354582499,41.76188753],[-71.354503499,41.761760529],[-71.354440499,41.761645529],[-71.354377499,41.761545529],[-71.354218498,41.761318529],[-71.353971499,41.761002529],[-71.353902499,41.760883529],[-71.353852498,41.760767529],[-71.353848498,41.760716529],[-71.353865498,41.760658529],[-71.353900499,41.760646529],[-71.355058499,41.762232529],[-71.3551715,41.762381529],[-71.356244499,41.76378753],[-71.3573375,41.76522053],[-71.3574595,41.765380529],[-71.3578075,41.76589853],[-71.3579645,41.76589253],[-71.3584755,41.76587753],[-71.358559501,41.76587353],[-71.358849501,41.76587053],[-71.359375501,41.76585453],[-71.360245501,41.76583553],[-71.361046501,41.76581253],[-71.361450502,41.76580153],[-71.361816502,41.76578653],[-71.362549502,41.765751529],[-71.363121502,41.76572553],[-71.363281502,41.76572153],[-71.364029502,41.76568853],[-71.364059502,41.76568653],[-71.364853502,41.76566453],[-71.365280503,41.765637529],[-71.366005503,41.76561053],[-71.366341503,41.76560653],[-71.367183504,41.76606053],[-71.367226503,41.76603453],[-71.367279504,41.76601453],[-71.367546503,41.76597653],[-71.367790503,41.76595353],[-71.368025503,41.765950529],[-71.368233504,41.765946529],[-71.368385504,41.76595353],[-71.368690504,41.76601853],[-71.368803503,41.76605253],[-71.368649503,41.766278529],[-71.368587671,41.766527291],[-71.368624479,41.766486315],[-71.368716059,41.766395333],[-71.368805931,41.766287974],[-71.36891076,41.766200643],[-71.368942631,41.766165347],[-71.368986467,41.766088901],[-71.368977603,41.76604688],[-71.368996119,41.766014313],[-71.369076381,41.765915428],[-71.369160603,41.765807309],[-71.369223825,41.765706117],[-71.369309941,41.765597313],[-71.369399627,41.765505597],[-71.369493139,41.765409653],[-71.369752997,41.765180665],[-71.369849027,41.765108187],[-71.369946145,41.765025832],[-71.370024439,41.76493257],[-71.370032396,41.764909893],[-71.370017183,41.76491047],[-71.369868583,41.764938408],[-71.369717246,41.764960648],[-71.369566194,41.764962238],[-71.3694,41.764960173],[-71.369231979,41.764954517],[-71.369081663,41.764970354],[-71.368927664,41.764979074],[-71.368757045,41.765019632],[-71.368605283,41.765070319],[-71.368462884,41.765127443],[-71.368334602,41.765197503],[-71.368192793,41.765279554],[-71.368133008,41.765313034],[-71.367955942,41.765368631],[-71.367792657,41.765362315],[-71.367617243,41.765342422],[-71.367475169,41.76531493],[-71.367329492,41.7652725],[-71.367177952,41.765244197],[-71.367027118,41.765228769],[-71.366879296,41.765204791],[-71.366721969,41.76518286],[-71.366560794,41.765160925],[-71.366403576,41.765131195],[-71.366236933,41.76509496],[-71.36608063,41.765065963],[-71.365941435,41.76503566],[-71.365798556,41.764999634],[-71.365666202,41.764955892],[-71.365527293,41.764905669],[-71.365371417,41.764848246],[-71.365235452,41.764793064],[-71.365093739,41.764740665],[-71.364950237,41.764681906],[-71.364811324,41.764634541],[-71.36470818,41.764543356],[-71.364606126,41.764442269],[-71.364514443,41.764348376],[-71.364413267,41.764251521],[-71.364312965,41.764160384],[-71.364221252,41.764066468],[-71.364124949,41.763962575],[-71.364020161,41.763855058],[-71.36391429,41.763754607],[-71.363821812,41.763647905],[-71.36372292,41.763526194],[-71.363646456,41.76343026],[-71.363571851,41.763335791],[-71.363497247,41.7632413],[-71.363415943,41.76315174],[-71.363315057,41.763034989],[-71.363219845,41.762921857],[-71.36311706,41.762807939],[-71.363032224,41.762699828],[-71.362921765,41.762589422],[-71.362824378,41.762494034],[-71.36273074,41.76240295],[-71.362619407,41.762287534],[-71.362517573,41.762172908],[-71.362418477,41.762063316],[-71.36232334,41.761945198],[-71.362237738,41.761824279],[-71.362164189,41.761724116],[-71.362088823,41.76161613],[-71.36201815,41.761513844],[-71.361946925,41.76138384],[-71.361881448,41.76125103],[-71.361843135,41.761142631],[-71.361811548,41.761030742],[-71.361769656,41.760910195],[-71.361733446,41.760789701],[-71.36168792,41.760654948],[-71.361649924,41.76052663],[-71.36161761,41.760398342],[-71.361584345,41.760271517],[-71.361546141,41.760155274],[-71.361523251,41.760033469],[-71.361502989,41.759925206],[-71.361477229,41.759803398],[-71.361445051,41.75966873],[-71.361409933,41.75953758],[-71.361387817,41.759425747],[-71.361365802,41.759308929],[-71.36134466,41.759198538],[-71.361324933,41.759054737],[-71.361318938,41.758945165],[-71.361313406,41.758805017],[-71.361304161,41.758659171],[-71.36129358,41.758537473],[-71.361287031,41.758401623],[-71.361285105,41.758274996],[-71.361287003,41.758144896],[-71.361306111,41.758008506],[-71.36132486,41.757896997],[-71.361337899,41.757784772],[-71.361351984,41.757668958],[-71.361366397,41.757572402],[-71.361130501,41.757580528],[-71.3605195,41.757756528],[-71.359985501,41.757912528],[-71.3598795,41.757939528],[-71.3599015,41.758084529],[-71.359711501,41.758007528],[-71.359558501,41.757988528],[-71.3594365,41.757985529],[-71.3592225,41.757988528],[-71.3588155,41.758048528],[-71.3587805,41.758053528],[-71.3582085,41.758141529],[-71.3572545,41.758282528],[-71.3563395,41.758431529],[-71.355217499,41.758599528],[-71.354187499,41.758755529],[-71.353735498,41.758829528],[-71.353602498,41.758850528],[-71.353271498,41.758904528],[-71.353113498,41.758937529],[-71.353050498,41.758950529],[-71.352982498,41.758961529],[-71.352821498,41.758997529],[-71.352676498,41.759037529],[-71.352272498,41.759182529],[-71.352066498,41.759262529],[-71.351997498,41.759293529],[-71.351582498,41.759458529],[-71.351547497,41.759472529],[-71.351151498,41.759606529],[-71.350891498,41.759674529],[-71.350861498,41.759680529],[-71.350677498,41.759716529],[-71.350601498,41.759732529],[-71.350395497,41.759751529],[-71.350138498,41.759747529],[-71.350113497,41.759743529],[-71.350060498,41.759743529],[-71.349953497,41.759732529],[-71.348808497,41.759617529],[-71.348686497,41.759606529],[-71.348434497,41.759575529],[-71.348091497,41.759503529],[-71.348022497,41.759488529],[-71.347748496,41.759449529],[-71.347572496,41.759434529],[-71.347466497,41.759426529],[-71.347076497,41.759400529],[-71.347092497,41.759457529],[-71.347115497,41.759514529],[-71.347150497,41.759629529],[-71.347160496,41.759678529],[-71.347182496,41.759768529],[-71.347137496,41.759701529],[-71.347130497,41.759682529],[-71.347076497,41.759621529],[-71.347023496,41.759579529],[-71.346947496,41.759541529],[-71.346771496,41.759472529],[-71.346680496,41.759457529],[-71.346230496,41.759415529],[-71.345772495,41.759373529],[-71.345467496,41.761021529],[-71.345703496,41.760994529],[-71.345741496,41.761170529],[-71.345993496,41.76221953],[-71.346245496,41.76331753],[-71.346298496,41.76352353],[-71.346451497,41.76418053],[-71.346634496,41.76491653],[-71.346970497,41.76633553],[-71.347160497,41.767152531],[-71.347271497,41.76748753],[-71.347280497,41.767542531],[-71.347288497,41.76770153],[-71.347252497,41.768437531],[-71.348129498,41.768456531],[-71.349487498,41.76848353],[-71.349655497,41.768845531],[-71.349800498,41.769135531],[-71.349838498,41.769215531],[-71.349998498,41.769524531]]]]}}"}, +{"type": "precinct", "typeId": 1015, "areaId": 25771, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":110,\"NAME\":\"1015\",\"SHAPE_Length\":0.052928190994084,\"SHAPE_Area\":-5.9620304399771e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.353652592,41.758675025],[-71.353602498,41.758850528],[-71.353735498,41.758829528],[-71.354187499,41.758755529],[-71.355217499,41.758599528],[-71.3563395,41.758431529],[-71.3572545,41.758282528],[-71.3582085,41.758141529],[-71.3587805,41.758053528],[-71.3588155,41.758048528],[-71.3592225,41.757988528],[-71.3594365,41.757985529],[-71.359558501,41.757988528],[-71.359711501,41.758007528],[-71.3599015,41.758084529],[-71.3598795,41.757939528],[-71.359985501,41.757912528],[-71.3605195,41.757756528],[-71.361130501,41.757580528],[-71.361366397,41.757572402],[-71.361368842,41.757556029],[-71.361385699,41.757443099],[-71.36140481,41.757305291],[-71.361431557,41.757166829],[-71.361459915,41.757046184],[-71.36148838,41.756918404],[-71.361512111,41.756790618],[-71.361532826,41.756673462],[-71.361560203,41.756554188],[-71.361569666,41.75642842],[-71.361572369,41.756307538],[-71.361569772,41.756194402],[-71.361569494,41.756181641],[-71.361558875,41.756063533],[-71.361547267,41.75595105],[-71.361541344,41.755836515],[-71.361534472,41.755722665],[-71.361520941,41.755609493],[-71.361498929,41.755491989],[-71.361485544,41.755368115],[-71.361478883,41.755241481],[-71.36146932,41.755115553],[-71.361463429,41.755000309],[-71.361451826,41.754885699],[-71.361439569,41.754748356],[-71.361432945,41.754618887],[-71.361435502,41.754509371],[-71.361446965,41.754376493],[-71.361464074,41.754245772],[-71.36148398,41.754120794],[-71.361498872,41.754012825],[-71.361510963,41.753900553],[-71.361535607,41.7537735],[-71.36156298,41.753655666],[-71.361596243,41.753525788],[-71.36161521,41.753397219],[-71.361634387,41.753255866],[-71.36165503,41.753142964],[-71.361683702,41.753003132],[-71.36171329,41.752863278],[-71.361745605,41.752733398],[-71.361761565,41.752682328],[-71.361800148,41.752577383],[-71.361841053,41.752443329],[-71.36188571,41.752311429],[-71.361936773,41.752197351],[-71.361984051,41.752081828],[-71.362019902,41.751969059],[-71.362049936,41.751862663],[-71.362102083,41.751740765],[-71.362142595,41.751633009],[-71.362172664,41.751524463],[-71.362218157,41.751401117],[-71.36225306,41.751288346],[-71.362271767,41.751180382],[-71.362279999,41.751072358],[-71.362274321,41.750942868],[-71.362237136,41.750823104],[-71.362188487,41.750708952],[-71.362111687,41.750635016],[-71.361965131,41.750592578],[-71.361830252,41.750530304],[-71.361701854,41.750479449],[-71.361562104,41.75042499],[-71.36148084,41.750396603],[-71.361344835,41.750347111],[-71.361213638,41.750291975],[-71.361087562,41.750212719],[-71.360963488,41.750125621],[-71.360843164,41.750041455],[-71.360515483,41.749788447],[-71.360375269,41.749639354],[-71.360259599,41.749367439],[-71.360309263,41.749349364],[-71.360240503,41.749244975],[-71.360275866,41.749231045],[-71.360232546,41.749140408],[-71.360229462,41.749140313],[-71.360224209,41.749126082],[-71.36019873,41.749116629],[-71.360186152,41.749002749],[-71.360143258,41.74888435],[-71.360095418,41.748808115],[-71.359958176,41.748557098],[-71.359904699,41.748447148],[-71.359865555,41.748332321],[-71.359827573,41.748301035],[-71.35984213,41.748291174],[-71.359911864,41.748283643],[-71.359751093,41.747788082],[-71.359631946,41.747432965],[-71.359632732,41.747380321],[-71.359619531,41.74721638],[-71.35961002,41.747138683],[-71.359582937,41.747137003],[-71.359567506,41.747001211],[-71.359585122,41.746989043],[-71.359603578,41.746955997],[-71.359630051,41.746900893],[-71.359662264,41.746818466],[-71.359697553,41.74672589],[-71.359732737,41.746639145],[-71.359779841,41.746533639],[-71.359816425,41.74642078],[-71.359853997,41.746302822],[-71.359874858,41.746202887],[-71.359893105,41.746082595],[-71.359902329,41.74598331],[-71.359901907,41.745882457],[-71.359885212,41.745766239],[-71.359853034,41.745650643],[-71.359824448,41.745553895],[-71.359778682,41.745438168],[-71.359713407,41.745334606],[-71.359645681,41.745262943],[-71.359568417,41.745181778],[-71.359482413,41.745104193],[-71.359387394,41.745043886],[-71.359294042,41.745003202],[-71.359183328,41.744956619],[-71.35908218,41.744920202],[-71.358961857,41.744869148],[-71.358887582,41.744846783],[-71.358797749,41.744830778],[-71.358664198,41.744824577],[-71.358548854,41.744828711],[-71.35842865,41.744834944],[-71.35830146,41.74485203],[-71.358174363,41.744868385],[-71.358011252,41.744890252],[-71.357984025,41.744899435],[-71.357950825,41.744916545],[-71.357937956,41.744936014],[-71.357929948,41.744953361],[-71.357925786,41.744971468],[-71.357742081,41.745012748],[-71.357727442,41.745004612],[-71.3577171,41.745000185],[-71.357661824,41.745002632],[-71.357605739,41.745011939],[-71.357493813,41.745030484],[-71.3574618,41.745035773],[-71.357276315,41.745066896],[-71.357088943,41.745095067],[-71.356937277,41.745132955],[-71.356815557,41.745175477],[-71.356678464,41.745209884],[-71.35652876,41.74524416],[-71.356393659,41.745275688],[-71.356213067,41.745303225],[-71.355988974,41.745324556],[-71.355812841,41.745334265],[-71.355597499,41.746009526],[-71.355545448,41.746148329],[-71.355572607,41.746157471],[-71.355589969,41.746163438],[-71.355621656,41.746181819],[-71.355647616,41.746193652],[-71.355668799,41.746198047],[-71.355679014,41.746231631],[-71.355694213,41.746317386],[-71.355888366,41.746290004],[-71.355912306,41.746372179],[-71.355782859,41.74641389],[-71.355877489,41.746757089],[-71.356056018,41.746738995],[-71.356065194,41.746773173],[-71.355881624,41.74680576],[-71.355916507,41.746869882],[-71.356068868,41.74685084],[-71.356036395,41.74688396],[-71.356023706,41.746891102],[-71.35601689,41.746893929],[-71.356000813,41.746900381],[-71.355945952,41.746907859],[-71.355962453,41.746971089],[-71.356054638,41.746960251],[-71.356064246,41.746965408],[-71.356062981,41.746985005],[-71.356062797,41.746998795],[-71.356059136,41.747010774],[-71.356056675,41.747019027],[-71.355976997,41.747035804],[-71.356008225,41.747149936],[-71.356161157,41.747121793],[-71.356182949,41.747181806],[-71.35621957,41.747274563],[-71.356247149,41.747272653],[-71.35627952,41.747395226],[-71.356364361,41.747501192],[-71.356437884,41.747602068],[-71.356522615,41.747716541],[-71.356603888,41.747806838],[-71.356685127,41.74789853],[-71.356763527,41.747990195],[-71.356830393,41.748091748],[-71.356876511,41.748185271],[-71.356867831,41.748257023],[-71.356886007,41.748378068],[-71.35690382,41.748456462],[-71.35689215,41.748540971],[-71.356825981,41.748647824],[-71.356749614,41.748740349],[-71.356680749,41.748837204],[-71.356579608,41.748933059],[-71.356491526,41.749047523],[-71.356409235,41.7491528],[-71.356354523,41.749256877],[-71.356363962,41.749324512],[-71.35632343,41.749369011],[-71.35623203,41.749450721],[-71.356176059,41.749571171],[-71.356128767,41.749688795],[-71.356052509,41.749772789],[-71.35591377,41.749842045],[-71.355793147,41.749908603],[-71.355758954,41.749972296],[-71.355782868,41.750025839],[-71.355836659,41.750047632],[-71.355984766,41.750049579],[-71.356129302,41.75003725],[-71.356269696,41.750047671],[-71.35632371,41.750119959],[-71.35636751,41.750239779],[-71.356374263,41.750361427],[-71.356337339,41.750417296],[-71.356294473,41.750426184],[-71.35625714,41.750446513],[-71.35627356,41.75049218],[-71.3563691,41.750581146],[-71.356428361,41.750684016],[-71.356494426,41.750775597],[-71.356572156,41.750785482],[-71.356723403,41.750832255],[-71.35687581,41.750865536],[-71.357013595,41.750923543],[-71.357117579,41.751020408],[-71.357253077,41.751104758],[-71.357370813,41.751170423],[-71.357499103,41.751227663],[-71.357628017,41.75130695],[-71.357686115,41.751425506],[-71.357757611,41.751534885],[-71.357843295,41.751649359],[-71.357943639,41.751736271],[-71.358060146,41.751819726],[-71.358172832,41.751905281],[-71.358299332,41.751958242],[-71.358424317,41.752047447],[-71.358535002,41.752140134],[-71.358646706,41.7522285],[-71.358712665,41.752328587],[-71.358775612,41.75243791],[-71.358848158,41.752543059],[-71.358933956,41.752649025],[-71.359055192,41.752736076],[-71.359164973,41.752824462],[-71.359240259,41.752933867],[-71.359269619,41.753068533],[-71.359258187,41.753199284],[-71.359262105,41.753320928],[-71.359219374,41.753449262],[-71.35916816,41.753574018],[-71.359142748,41.753686868],[-71.359171042,41.753764635],[-71.359218509,41.753831127],[-71.359272782,41.753885622],[-71.359260495,41.753946004],[-71.359218853,41.754065123],[-71.359134702,41.754168227],[-71.359055245,41.754275682],[-71.358961418,41.754390095],[-71.358902746,41.754503384],[-71.358885737,41.754627702],[-71.358842967,41.754758894],[-71.358797434,41.754882971],[-71.358767359,41.75499083],[-71.358794988,41.755121125],[-71.358730181,41.7550652],[-71.35858376,41.755012764],[-71.358448076,41.754939119],[-71.358394556,41.754833421],[-71.358386385,41.754743765],[-71.358418175,41.754648006],[-71.35835192,41.754569964],[-71.358210525,41.754496952],[-71.358110207,41.754410086],[-71.358070739,41.754317304],[-71.358070156,41.754291004],[-71.358032659,41.754260107],[-71.357895114,41.754186437],[-71.357752698,41.754119849],[-71.357664916,41.754082121],[-71.357577187,41.753978965],[-71.357522068,41.753851928],[-71.357495189,41.753742924],[-71.357476171,41.753614743],[-71.357446821,41.753546237],[-71.357293932,41.753479567],[-71.357150279,41.753434291],[-71.356974034,41.753405783],[-71.356818279,41.753405909],[-71.356661286,41.75342737],[-71.356556699,41.753435038],[-71.356426167,41.753463827],[-71.356285308,41.753549409],[-71.356144741,41.753613701],[-71.355999581,41.753669365],[-71.355839069,41.75373418],[-71.355697913,41.75377423],[-71.355563375,41.753818632],[-71.355421825,41.75388498],[-71.355287695,41.753964944],[-71.355197896,41.754064471],[-71.355158252,41.754174375],[-71.355091296,41.75427409],[-71.355001182,41.754391386],[-71.354972922,41.754504209],[-71.354954088,41.75462212],[-71.354934269,41.754743552],[-71.354929522,41.754871521],[-71.354929796,41.754980331],[-71.354970827,41.755095871],[-71.355073429,41.755157152],[-71.355219221,41.755188964],[-71.355354394,41.755230596],[-71.355428714,41.755278897],[-71.355475279,41.755405832],[-71.355429663,41.755536311],[-71.355430561,41.755667145],[-71.355458306,41.755783332],[-71.355431002,41.755892588],[-71.355393242,41.756006062],[-71.355397298,41.756117736],[-71.355443016,41.756186812],[-71.355445603,41.756190726],[-71.355444526,41.75626251],[-71.355409388,41.756391653],[-71.355334545,41.756507618],[-71.355294202,41.756601879],[-71.355221432,41.756705795],[-71.355193278,41.756812238],[-71.355165967,41.756923666],[-71.355127261,41.75703643],[-71.355079056,41.757149799],[-71.355080337,41.757191079],[-71.355130669,41.757191486],[-71.355287453,41.757186378],[-71.355371086,41.757182115],[-71.3554568,41.757230454],[-71.355525427,41.757339853],[-71.3555796,41.757466158],[-71.355622637,41.757573902],[-71.355687471,41.757686087],[-71.355728541,41.7577995],[-71.355765016,41.757836776],[-71.355810366,41.757852796],[-71.355871297,41.757908055],[-71.355845901,41.757955499],[-71.355761947,41.757979703],[-71.355602935,41.757942822],[-71.355446977,41.757892451],[-71.355332368,41.757871588],[-71.355183451,41.75792297],[-71.355038904,41.75799997],[-71.354952954,41.758096689],[-71.354851098,41.758176899],[-71.35473203,41.758264107],[-71.354628869,41.75836707],[-71.354563735,41.758469669],[-71.354480005,41.758542904],[-71.35434364,41.75858019],[-71.354197478,41.758573259],[-71.35414838,41.758553666],[-71.354150523,41.75853805],[-71.354179663,41.758428773],[-71.354101154,41.758408229],[-71.353987932,41.758422195],[-71.353944914,41.758441739],[-71.353894053,41.758539462],[-71.353859847,41.758606035],[-71.353733531,41.758669702],[-71.353697455,41.758672057],[-71.353652592,41.758675025]]]]}}"}, +{"type": "precinct", "typeId": 1016, "areaId": 25770, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":109,\"NAME\":\"1016\",\"SHAPE_Length\":0.043559249969504,\"SHAPE_Area\":-8.4130558436481e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.332797492,41.765843531],[-71.332932492,41.765961531],[-71.333078492,41.766086531],[-71.333092492,41.76610253],[-71.333107492,41.766148531],[-71.333107492,41.766312531],[-71.333046492,41.766957531],[-71.333427492,41.766987531],[-71.333778492,41.767010531],[-71.334633493,41.767048531],[-71.335289493,41.767083531],[-71.337311493,41.76719353],[-71.337669494,41.767208531],[-71.337936494,41.767235531],[-71.338058494,41.767254531],[-71.338181494,41.767289531],[-71.338470494,41.767456531],[-71.338745494,41.767624531],[-71.339005494,41.767777531],[-71.339218495,41.767884531],[-71.339478494,41.768006531],[-71.339691494,41.768086531],[-71.340324495,41.768231531],[-71.340622495,41.768261531],[-71.340912495,41.768273531],[-71.341248494,41.768280531],[-71.341709495,41.768297531],[-71.341995495,41.768307531],[-71.342453496,41.768315531],[-71.343376495,41.768338531],[-71.343658496,41.768349531],[-71.343788496,41.768341531],[-71.344612496,41.76836453],[-71.344810496,41.768380531],[-71.345474497,41.768395531],[-71.346352497,41.768414531],[-71.347252497,41.768437531],[-71.347288497,41.76770153],[-71.347280497,41.767542531],[-71.347271497,41.76748753],[-71.347160497,41.767152531],[-71.346970497,41.76633553],[-71.346634496,41.76491653],[-71.346451497,41.76418053],[-71.346298496,41.76352353],[-71.346245496,41.76331753],[-71.345993496,41.76221953],[-71.345741496,41.761170529],[-71.345703496,41.760994529],[-71.345467496,41.761021529],[-71.345772495,41.759373529],[-71.346230496,41.759415529],[-71.346680496,41.759457529],[-71.346771496,41.759472529],[-71.346947496,41.759541529],[-71.347023496,41.759579529],[-71.347076497,41.759621529],[-71.347130497,41.759682529],[-71.347137496,41.759701529],[-71.347182496,41.759768529],[-71.347160496,41.759678529],[-71.347150497,41.759629529],[-71.347115497,41.759514529],[-71.347092497,41.759457529],[-71.347076497,41.759400529],[-71.346291496,41.759339529],[-71.344887496,41.759198529],[-71.343219495,41.759046529],[-71.343117495,41.759037529],[-71.342827494,41.759007529],[-71.342667495,41.759117529],[-71.342582495,41.759179529],[-71.339821494,41.761055529],[-71.336962493,41.76300653],[-71.335401493,41.764069531],[-71.334101492,41.76495553],[-71.333708492,41.76522353],[-71.333356492,41.76546253],[-71.333092492,41.765642531],[-71.332797492,41.765843531]]]]}}"}, +{"type": "precinct", "typeId": 1017, "areaId": 25769, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":108,\"NAME\":\"1017\",\"SHAPE_Length\":0.11401152879069,\"SHAPE_Area\":-0.00033124037328832},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.350138498,41.759747529],[-71.350395497,41.759751529],[-71.350601498,41.759732529],[-71.350677498,41.759716529],[-71.350861498,41.759680529],[-71.350891498,41.759674529],[-71.351151498,41.759606529],[-71.351547497,41.759472529],[-71.351582498,41.759458529],[-71.351997498,41.759293529],[-71.352066498,41.759262529],[-71.352272498,41.759182529],[-71.352676498,41.759037529],[-71.352821498,41.758997529],[-71.352982498,41.758961529],[-71.353050498,41.758950529],[-71.353113498,41.758937529],[-71.353271498,41.758904528],[-71.353602498,41.758850528],[-71.353652592,41.758675025],[-71.353580459,41.758679798],[-71.353483719,41.758671167],[-71.353447059,41.758581291],[-71.353447236,41.758570612],[-71.353370871,41.75846685],[-71.353271679,41.758368592],[-71.353187779,41.75826123],[-71.353117088,41.758161065],[-71.353031472,41.758043021],[-71.352936002,41.757946917],[-71.352851453,41.757883645],[-71.352743102,41.757891305],[-71.352653439,41.757980836],[-71.352559916,41.758075348],[-71.352446706,41.75815051],[-71.352359941,41.758174662],[-71.352338104,41.75817452],[-71.352302686,41.758129422],[-71.352238587,41.758032147],[-71.352175684,41.757919277],[-71.352134515,41.757812243],[-71.352106587,41.757711035],[-71.352137032,41.757580446],[-71.352186264,41.757461408],[-71.352261983,41.757352489],[-71.352362135,41.757257346],[-71.35245933,41.75717281],[-71.352548079,41.757081837],[-71.352629621,41.756963732],[-71.352680491,41.756862465],[-71.352741874,41.756758444],[-71.352804238,41.756652275],[-71.352914025,41.7565501],[-71.353038661,41.756471476],[-71.353178187,41.756412927],[-71.353315603,41.756368554],[-71.353466376,41.756319304],[-71.353615436,41.756257999],[-71.353748188,41.756209297],[-71.353780759,41.756189648],[-71.353752886,41.75618465],[-71.353726784,41.756179952],[-71.353614793,41.756110791],[-71.353509647,41.756026682],[-71.353401801,41.755934749],[-71.353326858,41.755865154],[-71.35323601,41.755779051],[-71.353145785,41.755714994],[-71.353058356,41.755656704],[-71.352957724,41.755588997],[-71.352924746,41.755573107],[-71.352389902,41.755136264],[-71.352371447,41.755099856],[-71.35222012,41.75505804],[-71.352155853,41.755035477],[-71.35210032,41.755066302],[-71.352003962,41.755160078],[-71.351915607,41.755226192],[-71.351779211,41.755266289],[-71.351692893,41.755323167],[-71.351561121,41.75537045],[-71.351408281,41.755428865],[-71.351290333,41.755507542],[-71.351239075,41.755630876],[-71.351209679,41.75575648],[-71.351166967,41.755881998],[-71.351101548,41.756000924],[-71.350998669,41.756086846],[-71.350951723,41.756114868],[-71.350934983,41.756089851],[-71.350898436,41.755992816],[-71.35090028,41.75586912],[-71.350882981,41.755755897],[-71.3508294,41.755655158],[-71.350738879,41.755548448],[-71.350674089,41.755434843],[-71.350583572,41.755326715],[-71.350510452,41.755262815],[-71.350438175,41.755270039],[-71.350399453,41.75525549],[-71.350425249,41.75518104],[-71.350387175,41.75505839],[-71.350310848,41.754955357],[-71.350267577,41.754926577],[-71.35022143,41.754900561],[-71.350234234,41.754805374],[-71.35032324,41.754761353],[-71.350409605,41.754763455],[-71.350536944,41.754822829],[-71.350669821,41.754891517],[-71.350787698,41.754948682],[-71.350939927,41.754930013],[-71.351081234,41.754879313],[-71.3512287,41.754859882],[-71.351394242,41.754842098],[-71.351505199,41.754788271],[-71.351586343,41.754696489],[-71.351656206,41.754596802],[-71.351755475,41.754498799],[-71.351921126,41.754406325],[-71.35204299,41.754323422],[-71.352184227,41.754276219],[-71.352312247,41.754225363],[-71.352465923,41.754174014],[-71.352618471,41.754134783],[-71.352741831,41.754078181],[-71.352750609,41.754059051],[-71.352832725,41.753647995],[-71.352676278,41.753629614],[-71.352553925,41.753620104],[-71.352428581,41.753556458],[-71.352293014,41.75347638],[-71.352201441,41.753375387],[-71.352091932,41.753265636],[-71.351989003,41.753163119],[-71.351894413,41.753073396],[-71.351786719,41.752971559],[-71.351748173,41.752934321],[-71.351738498,41.752938527],[-71.349429497,41.754512528],[-71.349385497,41.754542528],[-71.349250497,41.754634528],[-71.348613497,41.755068528],[-71.347982496,41.755497528],[-71.347183496,41.756042528],[-71.347021496,41.756153529],[-71.346061496,41.756807529],[-71.345268495,41.757344528],[-71.345070495,41.757477529],[-71.344503496,41.757866529],[-71.344036495,41.758187529],[-71.342827494,41.759007529],[-71.343117495,41.759037529],[-71.343219495,41.759046529],[-71.344887496,41.759198529],[-71.346291496,41.759339529],[-71.347076497,41.759400529],[-71.347466497,41.759426529],[-71.347572496,41.759434529],[-71.347748496,41.759449529],[-71.348022497,41.759488529],[-71.348091497,41.759503529],[-71.348434497,41.759575529],[-71.348686497,41.759606529],[-71.348808497,41.759617529],[-71.349953497,41.759732529],[-71.350060498,41.759743529],[-71.350113497,41.759743529],[-71.350138498,41.759747529]]],[[[-71.334381494,41.779965534],[-71.334747494,41.780007533],[-71.334976493,41.780011533],[-71.335587494,41.780030533],[-71.337502495,41.780091533],[-71.338997495,41.780140534],[-71.339989495,41.780167533],[-71.342827496,41.780259533],[-71.343628496,41.780281533],[-71.344833497,41.780323533],[-71.345802497,41.780362533],[-71.346664498,41.780388533],[-71.347382498,41.780392533],[-71.347664497,41.780384533],[-71.347862497,41.780365533],[-71.348053498,41.780339533],[-71.348259498,41.780301533],[-71.348450498,41.780255533],[-71.348557498,41.780224533],[-71.348900498,41.780140533],[-71.349556498,41.779934533],[-71.350189498,41.779747533],[-71.350922498,41.779518532],[-71.351204499,41.779438533],[-71.351654499,41.779309533],[-71.353233499,41.778843533],[-71.353348499,41.778790533],[-71.3535695,41.778668533],[-71.3536685,41.778588532],[-71.3537605,41.778527532],[-71.3538595,41.778405533],[-71.3539585,41.778248533],[-71.3540505,41.778000532],[-71.3543095,41.777272533],[-71.3543245,41.777104532],[-71.3543705,41.776928532],[-71.354454499,41.776650533],[-71.3544625,41.776616532],[-71.3547295,41.775837532],[-71.3549885,41.775013531],[-71.355095499,41.774716532],[-71.3551105,41.774590532],[-71.3551105,41.774464532],[-71.3548365,41.774144532],[-71.353836499,41.774281532],[-71.352509499,41.774426532],[-71.351669499,41.774525531],[-71.351657499,41.774504532],[-71.351761498,41.773713532],[-71.351761498,41.773426532],[-71.351791499,41.773194532],[-71.351814499,41.772671532],[-71.351807499,41.772393532],[-71.351807499,41.771885531],[-71.350914498,41.771889532],[-71.349670498,41.771897531],[-71.349670498,41.771252531],[-71.349762498,41.771103531],[-71.350479498,41.770382531],[-71.350449498,41.770340531],[-71.350372498,41.770256531],[-71.350311498,41.770169531],[-71.350143498,41.769829531],[-71.349998498,41.769524531],[-71.349838498,41.769215531],[-71.349800498,41.769135531],[-71.349655497,41.768845531],[-71.349487498,41.76848353],[-71.348129498,41.768456531],[-71.347252497,41.768437531],[-71.346352497,41.768414531],[-71.345474497,41.768395531],[-71.344810496,41.768380531],[-71.344612496,41.76836453],[-71.343788496,41.768341531],[-71.343658496,41.768349531],[-71.343376495,41.768338531],[-71.342453496,41.768315531],[-71.341995495,41.768307531],[-71.341709495,41.768297531],[-71.341248494,41.768280531],[-71.340912495,41.768273531],[-71.340622495,41.768261531],[-71.340324495,41.768231531],[-71.339691494,41.768086531],[-71.339478494,41.768006531],[-71.339218495,41.767884531],[-71.339005494,41.767777531],[-71.338745494,41.767624531],[-71.338470494,41.767456531],[-71.338181494,41.767289531],[-71.338058494,41.767254531],[-71.337936494,41.767235531],[-71.337669494,41.767208531],[-71.337311493,41.76719353],[-71.335289493,41.767083531],[-71.334633493,41.767048531],[-71.333778492,41.767010531],[-71.333427492,41.766987531],[-71.333046492,41.766957531],[-71.333107492,41.766312531],[-71.333107492,41.766148531],[-71.333092492,41.76610253],[-71.333078492,41.766086531],[-71.332932492,41.765961531],[-71.332797492,41.765843531],[-71.332115492,41.766307531],[-71.330303492,41.767541531],[-71.328678491,41.768647531],[-71.328230491,41.768953531],[-71.32736249,41.769539531],[-71.32682149,41.769913532],[-71.32550449,41.770809532],[-71.32537649,41.770897532],[-71.325064489,41.771109532],[-71.32489949,41.771221532],[-71.32484049,41.771261532],[-71.32477649,41.771305532],[-71.32481649,41.771367532],[-71.324966489,41.771599532],[-71.32517249,41.771931533],[-71.32544749,41.772358533],[-71.32566149,41.772682532],[-71.32578349,41.772866533],[-71.32606549,41.773312533],[-71.32630949,41.773682533],[-71.32646949,41.773938533],[-71.326698491,41.774285533],[-71.32670649,41.774304533],[-71.326950491,41.774681532],[-71.327194491,41.775010533],[-71.327309491,41.775151532],[-71.327591491,41.775410533],[-71.327728491,41.775525533],[-71.328178491,41.775834532],[-71.329193492,41.776505533],[-71.329536492,41.776741533],[-71.330040492,41.777077533],[-71.330482492,41.777378533],[-71.330574492,41.777455533],[-71.330780492,41.777615533],[-71.330940492,41.777764533],[-71.331116492,41.777913533],[-71.331543492,41.778355533],[-71.331718492,41.778523533],[-71.332024492,41.778839533],[-71.332367493,41.779175533],[-71.332642493,41.779404533],[-71.332832493,41.779549533],[-71.333397493,41.779919534],[-71.333420493,41.779938533],[-71.333549493,41.779938533],[-71.334381494,41.779965534]]]]}}"}, +{"type": "precinct", "typeId": 1101, "areaId": 25772, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":111,\"NAME\":\"1101\",\"SHAPE_Length\":0.22158892594569,\"SHAPE_Area\":-0.0018532770700715},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.518277543,41.575972488],[-71.518745543,41.575936488],[-71.522971544,41.575667488],[-71.523452544,41.575636488],[-71.523788544,41.575615488],[-71.524490544,41.575596488],[-71.524734545,41.575608488],[-71.525064545,41.575639488],[-71.525482545,41.575695488],[-71.525909545,41.575776488],[-71.526413546,41.575879488],[-71.526833545,41.575982488],[-71.527191546,41.576085488],[-71.527550545,41.576203488],[-71.528000545,41.576367488],[-71.528664546,41.576622488],[-71.529068546,41.576771488],[-71.529480546,41.576901488],[-71.529839546,41.576985488],[-71.530144546,41.577034488],[-71.530441546,41.577061488],[-71.530678547,41.577065488],[-71.530914547,41.577053488],[-71.531166547,41.577031488],[-71.531441547,41.577000488],[-71.531891547,41.576916488],[-71.532631547,41.576798487],[-71.532883547,41.576771488],[-71.533157548,41.576764488],[-71.533569548,41.576767488],[-71.533707548,41.576783488],[-71.533966547,41.575875488],[-71.534172548,41.575131488],[-71.534332548,41.574559487],[-71.534538548,41.573857487],[-71.534683548,41.573456487],[-71.534866548,41.573014488],[-71.535393548,41.571785487],[-71.535637548,41.571263486],[-71.536133548,41.570065487],[-71.536652549,41.568856486],[-71.536720548,41.568695486],[-71.536812548,41.568482486],[-71.536842548,41.568344486],[-71.536842548,41.568226486],[-71.536827548,41.568062486],[-71.536720548,41.567559486],[-71.536667548,41.567284486],[-71.536226547,41.565283486],[-71.536018548,41.564202485],[-71.535965548,41.563889485],[-71.535950548,41.563767486],[-71.535943548,41.563735485],[-71.535759547,41.562813485],[-71.535706547,41.562638485],[-71.535652548,41.562481485],[-71.535591547,41.562344485],[-71.535416547,41.562081485],[-71.535240547,41.561814485],[-71.535179547,41.561684485],[-71.535141547,41.561585485],[-71.535103547,41.561463485],[-71.535088547,41.561360485],[-71.535088547,41.561253485],[-71.535095547,41.561139484],[-71.535141547,41.560875485],[-71.535408547,41.560067484],[-71.535500548,41.559716484],[-71.535530547,41.559567484],[-71.535515547,41.559292484],[-71.535500548,41.559163485],[-71.535278547,41.558384484],[-71.535156547,41.558003484],[-71.535019547,41.557507484],[-71.534843547,41.556832484],[-71.534779547,41.556726484],[-71.534729547,41.556641484],[-71.534599547,41.556507484],[-71.534470546,41.556412484],[-71.534302547,41.556332484],[-71.534096547,41.556267484],[-71.533844547,41.556202484],[-71.533592546,41.556122484],[-71.533371547,41.556023484],[-71.533195546,41.555905484],[-71.533035546,41.555775484],[-71.532898546,41.555603483],[-71.532829547,41.555485483],[-71.532768546,41.555313484],[-71.532738546,41.555172483],[-71.532730546,41.555012484],[-71.532814546,41.554501484],[-71.533081546,41.553387483],[-71.533272546,41.552643483],[-71.533508546,41.551613483],[-71.533554546,41.551373483],[-71.533569546,41.551247483],[-71.533585546,41.551167483],[-71.533592546,41.551033483],[-71.533592546,41.550858483],[-71.533531546,41.550434482],[-71.533417546,41.549900483],[-71.533394546,41.549832482],[-71.533340546,41.549538482],[-71.533188546,41.548916482],[-71.533134546,41.548539483],[-71.533127546,41.548390482],[-71.533112546,41.548298482],[-71.533066545,41.548203482],[-71.533012546,41.548147483],[-71.532986546,41.548121482],[-71.532923546,41.548077482],[-71.533323546,41.547639482],[-71.533481546,41.547430482],[-71.533515546,41.547274482],[-71.533485546,41.547219482],[-71.533546546,41.547120482],[-71.533875546,41.546543482],[-71.534164546,41.545990482],[-71.534637546,41.545140482],[-71.534676546,41.545063482],[-71.534764546,41.544905482],[-71.535546546,41.543503481],[-71.535667546,41.543286481],[-71.535934546,41.542782481],[-71.535957546,41.542752481],[-71.536179547,41.542359481],[-71.536240547,41.542263481],[-71.536362546,41.542096481],[-71.536713546,41.541596481],[-71.537811547,41.540188481],[-71.538406547,41.53940248],[-71.538658547,41.53908248],[-71.539139547,41.538456481],[-71.539474548,41.53804448],[-71.539680547,41.53784248],[-71.539886548,41.53765948],[-71.540337548,41.53732048],[-71.540573548,41.53717548],[-71.540810547,41.53704148],[-71.541092548,41.53690448],[-71.541374548,41.53677848],[-71.541379548,41.53677648],[-71.541535548,41.53672148],[-71.541718548,41.53665648],[-71.542755549,41.536259479],[-71.543961549,41.535813479],[-71.544479549,41.535591479],[-71.544983549,41.53531748],[-71.545372549,41.535054479],[-71.545578549,41.534893479],[-71.545746549,41.53474848],[-71.546036549,41.534474479],[-71.546143549,41.534336479],[-71.54628055,41.534172479],[-71.54645555,41.533936479],[-71.54663855,41.533665479],[-71.54713455,41.532925479],[-71.54721255,41.532809479],[-71.547282549,41.532703479],[-71.54740755,41.532518479],[-71.547555549,41.532296478],[-71.54772355,41.532045478],[-71.54828855,41.531201479],[-71.54927155,41.529731478],[-71.55042855,41.528013478],[-71.55101255,41.527146478],[-71.55112855,41.526974477],[-71.551443551,41.526509477],[-71.551723551,41.526094477],[-71.55208155,41.525569477],[-71.55215955,41.525450478],[-71.552856551,41.524392477],[-71.552986551,41.524174477],[-71.553085551,41.523991477],[-71.553146551,41.523854477],[-71.553255551,41.523555477],[-71.553352551,41.523228476],[-71.553467551,41.522869477],[-71.553833552,41.521630476],[-71.553963551,41.521202476],[-71.554245551,41.520226476],[-71.554512552,41.519329476],[-71.555252552,41.516850475],[-71.555484552,41.516023475],[-71.555511552,41.515927475],[-71.555763552,41.515095475],[-71.556553552,41.512451475],[-71.556816552,41.511574474],[-71.556847552,41.511452474],[-71.557030552,41.510846474],[-71.557045552,41.510785474],[-71.556735552,41.510703475],[-71.542739546,41.507002474],[-71.535954544,41.505155474],[-71.533654543,41.504545473],[-71.531013543,41.504053474],[-71.530958543,41.503982473],[-71.530873543,41.503941473],[-71.530748542,41.503892474],[-71.530619543,41.503815474],[-71.530528543,41.503760474],[-71.530461543,41.503755474],[-71.530330543,41.503746473],[-71.530086542,41.503729473],[-71.529793542,41.503696474],[-71.529634542,41.503684474],[-71.529442542,41.503682474],[-71.528313542,41.503385474],[-71.527784541,41.503255474],[-71.527137541,41.503188474],[-71.526848541,41.503143473],[-71.526413542,41.503127474],[-71.525955541,41.503078474],[-71.525413541,41.502975474],[-71.524093541,41.502765474],[-71.523254541,41.502651474],[-71.52250654,41.502555474],[-71.52206154,41.502502473],[-71.52133754,41.502415474],[-71.520238539,41.502251474],[-71.519506539,41.502129473],[-71.518812538,41.501988474],[-71.518582538,41.501953473],[-71.518011538,41.501866474],[-71.517797538,41.501839474],[-71.517408538,41.501809474],[-71.516897538,41.501748474],[-71.516309538,41.501641473],[-71.515975538,41.501586474],[-71.515800538,41.501559474],[-71.515350538,41.501471474],[-71.514896537,41.501349473],[-71.514335537,41.501235474],[-71.513495537,41.501071474],[-71.512801537,41.500949474],[-71.512328537,41.500857474],[-71.512130536,41.500820473],[-71.510114535,41.500452473],[-71.507886535,41.500068474],[-71.508523535,41.502681474],[-71.508774535,41.503708474],[-71.508797536,41.503769474],[-71.508911536,41.504177474],[-71.509056536,41.504780474],[-71.509186536,41.505291474],[-71.509491536,41.506401475],[-71.509666536,41.507061475],[-71.509911536,41.508026475],[-71.509933536,41.508095475],[-71.510048536,41.508580476],[-71.510155536,41.508992475],[-71.510277536,41.509369475],[-71.510330536,41.509575476],[-71.510422537,41.509877475],[-71.510475537,41.510025475],[-71.510519537,41.510127475],[-71.510565536,41.510191476],[-71.510593537,41.510272476],[-71.512407538,41.515515477],[-71.513483538,41.517682477],[-71.513782538,41.518283477],[-71.513817538,41.518391477],[-71.513892538,41.518550477],[-71.514492538,41.519820477],[-71.514509538,41.519865477],[-71.514584538,41.519946478],[-71.514799538,41.520244477],[-71.514814538,41.520265477],[-71.515043539,41.520588478],[-71.515519538,41.521323477],[-71.515830539,41.522281478],[-71.515895539,41.522429477],[-71.515899539,41.522438478],[-71.515885538,41.522523478],[-71.516137539,41.523219478],[-71.516830539,41.524178478],[-71.517036539,41.524582478],[-71.51755554,41.525723479],[-71.517838539,41.526299479],[-71.51802854,41.526707479],[-71.518127539,41.526963479],[-71.51828854,41.527051478],[-71.51830954,41.527208478],[-71.51832354,41.527308478],[-71.51835454,41.527357479],[-71.51842054,41.527502478],[-71.51842954,41.527710479],[-71.51867354,41.528399479],[-71.51932554,41.529980479],[-71.51932254,41.53030548],[-71.51932054,41.530521479],[-71.519291541,41.53610048],[-71.51926054,41.536952481],[-71.519242541,41.53843948],[-71.519493541,41.544423482],[-71.519180541,41.556340485],[-71.519063541,41.558005484],[-71.519043542,41.558382485],[-71.518983542,41.559573485],[-71.518804542,41.562508485],[-71.518684542,41.564660486],[-71.518326542,41.569634487],[-71.518331542,41.570362487],[-71.518277543,41.575972488]]]]}}"}, +{"type": "precinct", "typeId": 1102, "areaId": 25774, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":113,\"NAME\":\"1102\",\"SHAPE_Length\":0.58993775417899,\"SHAPE_Area\":-0.0089752338550289},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.604798572,41.600879491],[-71.605022572,41.600876491],[-71.605850572,41.60086349],[-71.610348574,41.60081949],[-71.613507575,41.60078849],[-71.613518575,41.60078849],[-71.613754575,41.60078649],[-71.618101576,41.60074349],[-71.618546576,41.60075449],[-71.620461577,41.60080249],[-71.620659577,41.60080749],[-71.622795578,41.60086949],[-71.624840578,41.60080049],[-71.62760258,41.60070549],[-71.634056582,41.60073849],[-71.636979583,41.600728489],[-71.637030582,41.600728489],[-71.640495584,41.600716489],[-71.642226584,41.60072449],[-71.642821584,41.60072649],[-71.643742585,41.600602489],[-71.643978585,41.600568489],[-71.644113585,41.600549489],[-71.644656585,41.60047249],[-71.645453585,41.600338489],[-71.647659586,41.599887489],[-71.648007587,41.599812489],[-71.648170586,41.599780489],[-71.648912586,41.599623489],[-71.651128587,41.599156489],[-71.651341588,41.599118489],[-71.651571587,41.599075488],[-71.653068588,41.598872489],[-71.653526588,41.598777488],[-71.653686588,41.598775489],[-71.654251588,41.598769489],[-71.657189589,41.598758488],[-71.65758159,41.598757488],[-71.657856589,41.598756489],[-71.658093589,41.598755489],[-71.65822359,41.598754489],[-71.65833559,41.598754489],[-71.658598589,41.598753489],[-71.65874459,41.598753489],[-71.65888259,41.598752489],[-71.65933259,41.598751489],[-71.66146459,41.598747488],[-71.66220759,41.598746488],[-71.665237592,41.598740488],[-71.668104593,41.598740488],[-71.671839593,41.598739488],[-71.672127594,41.598739488],[-71.674622595,41.598738487],[-71.676448595,41.598739487],[-71.682079597,41.598742487],[-71.683884598,41.598743487],[-71.685951599,41.598744487],[-71.692978601,41.598748487],[-71.693100601,41.598748487],[-71.693130601,41.598748487],[-71.693161601,41.598748487],[-71.698909602,41.598738487],[-71.699172603,41.598738487],[-71.703453604,41.598745487],[-71.703761605,41.598745487],[-71.703890604,41.598746487],[-71.707139605,41.598757486],[-71.707198605,41.598757486],[-71.708580605,41.598763487],[-71.709815606,41.598758486],[-71.710518606,41.598755487],[-71.712167607,41.598748487],[-71.714020608,41.598741486],[-71.715950609,41.598733487],[-71.717464609,41.598727487],[-71.71982861,41.598719486],[-71.724228611,41.598703486],[-71.724478611,41.598704486],[-71.726869612,41.598711486],[-71.728865612,41.598717487],[-71.729351612,41.598718486],[-71.732201613,41.598726486],[-71.734643614,41.598728486],[-71.735075615,41.598729486],[-71.740745616,41.598734486],[-71.744667618,41.598685486],[-71.745308618,41.598670486],[-71.745949618,41.598655486],[-71.746731618,41.598648486],[-71.748705619,41.598528485],[-71.74959062,41.598644485],[-71.749854619,41.598634486],[-71.750216619,41.598616486],[-71.760827623,41.598136485],[-71.764811624,41.598012485],[-71.765175624,41.598000485],[-71.767891625,41.597831485],[-71.771004627,41.597689484],[-71.771840627,41.597652485],[-71.774544627,41.597531484],[-71.777328628,41.597414484],[-71.78030463,41.597243484],[-71.781362629,41.597203484],[-71.785885631,41.597002484],[-71.789247632,41.596855484],[-71.789291632,41.596351484],[-71.789417632,41.594934484],[-71.789424632,41.594840483],[-71.789462632,41.594336483],[-71.789480632,41.593892483],[-71.789501632,41.593411484],[-71.789536632,41.592562483],[-71.789555632,41.592119483],[-71.789575632,41.591642483],[-71.789602632,41.591004483],[-71.789635632,41.590211483],[-71.789656632,41.589735482],[-71.789688631,41.588990482],[-71.789701306,41.588717288],[-71.789846496,41.585405538],[-71.789969035,41.582667203],[-71.789975632,41.582515481],[-71.789977174,41.582485321],[-71.78999017,41.58219488],[-71.789992632,41.582130481],[-71.789994388,41.582100618],[-71.790000202,41.581970705],[-71.790000631,41.581960481],[-71.790043631,41.580986481],[-71.790121631,41.579235481],[-71.790187632,41.57770848],[-71.790219631,41.57697748],[-71.790227632,41.57679648],[-71.790235631,41.57661648],[-71.790265064,41.575931226],[-71.790428631,41.572113479],[-71.790430631,41.572067145],[-71.790430631,41.572060479],[-71.790431631,41.572010479],[-71.790432631,41.571994479],[-71.790432631,41.571968479],[-71.790434631,41.571891479],[-71.790436631,41.571866479],[-71.790437631,41.571840479],[-71.790442631,41.571668479],[-71.790446005,41.571564571],[-71.790460631,41.571077479],[-71.79048071,41.570407826],[-71.790490631,41.570075479],[-71.790491105,41.570061334],[-71.790495161,41.569926164],[-71.790520694,41.56947042],[-71.790537631,41.569159478],[-71.790656631,41.567012478],[-71.790696631,41.566297478],[-71.790691631,41.566250478],[-71.79068263,41.566157478],[-71.790677631,41.566112478],[-71.790672631,41.566066478],[-71.790693631,41.565694478],[-71.790693879,41.565690352],[-71.790693733,41.565679451],[-71.790876647,41.561460089],[-71.790883483,41.561036625],[-71.791033526,41.55619389],[-71.79103363,41.556185476],[-71.791045631,41.555793476],[-71.791052784,41.555572287],[-71.791092636,41.554285901],[-71.791123807,41.553434704],[-71.791129631,41.553268475],[-71.79113863,41.553029475],[-71.791146631,41.552789476],[-71.79117363,41.552069476],[-71.791179803,41.551905545],[-71.79118325,41.55181141],[-71.791186631,41.551707475],[-71.79119263,41.551545475],[-71.79119963,41.551339475],[-71.791204631,41.551217475],[-71.79122163,41.550745475],[-71.791232879,41.550456082],[-71.791239856,41.550265544],[-71.79127663,41.549330475],[-71.79129463,41.548859474],[-71.79131863,41.548240475],[-71.79139163,41.546384474],[-71.79141663,41.545766474],[-71.79100463,41.545812474],[-71.784720628,41.546520474],[-71.783624627,41.546600474],[-71.778201625,41.547370474],[-71.771286624,41.548352475],[-71.764144621,41.549273476],[-71.751236617,41.551014477],[-71.749450617,41.551111477],[-71.747670616,41.550992477],[-71.744507615,41.550989476],[-71.744340615,41.551036477],[-71.743344615,41.551057476],[-71.738349613,41.551555477],[-71.738157613,41.551582477],[-71.736214612,41.551759476],[-71.735279612,41.551830477],[-71.734698612,41.551939477],[-71.732195611,41.552149477],[-71.72996361,41.552431477],[-71.72978361,41.552466477],[-71.72848161,41.552613478],[-71.726079609,41.552858477],[-71.725287609,41.552932477],[-71.722447608,41.553265477],[-71.721044607,41.553409478],[-71.720825608,41.553434478],[-71.719979607,41.553528478],[-71.719382607,41.553585478],[-71.717121607,41.553842478],[-71.714933606,41.554069478],[-71.714963605,41.554103478],[-71.714753606,41.554127478],[-71.713222605,41.554281478],[-71.709732604,41.554651478],[-71.704144602,41.555223479],[-71.701683601,41.555473479],[-71.6995766,41.555729479],[-71.698496601,41.555840479],[-71.6983866,41.555866479],[-71.6972866,41.556035479],[-71.6964786,41.556068478],[-71.695011599,41.556192479],[-71.692835599,41.556402479],[-71.692762599,41.556405479],[-71.692622599,41.556423479],[-71.691574598,41.556568479],[-71.685739596,41.557189479],[-71.684288596,41.557381479],[-71.682997595,41.55752848],[-71.678500594,41.55797648],[-71.670995592,41.55882248],[-71.66868059,41.559088481],[-71.66823459,41.55913548],[-71.667839591,41.55917848],[-71.66776359,41.55919748],[-71.66728959,41.55924748],[-71.66704659,41.55927748],[-71.66684259,41.55929748],[-71.66615659,41.55938348],[-71.663399589,41.55967748],[-71.663254589,41.559693481],[-71.661430588,41.559862481],[-71.660508589,41.559962481],[-71.657419587,41.560283481],[-71.656311587,41.560394481],[-71.653980586,41.560640481],[-71.652672585,41.560806482],[-71.652246585,41.560859481],[-71.650406585,41.561087481],[-71.650297585,41.561108481],[-71.647063584,41.561428482],[-71.646990584,41.561435481],[-71.646448583,41.561493481],[-71.644898583,41.561688481],[-71.643974582,41.561768481],[-71.642483582,41.561920481],[-71.638852581,41.562289481],[-71.635585581,41.562639482],[-71.63372858,41.562836482],[-71.620823575,41.564148483],[-71.619166574,41.555596481],[-71.618477574,41.552431481],[-71.617424574,41.547412479],[-71.617373573,41.547196479],[-71.617307573,41.54668248],[-71.616938573,41.544703479],[-71.616761573,41.543873479],[-71.616714573,41.543690479],[-71.616470573,41.542482479],[-71.616423573,41.542340478],[-71.616413573,41.542282478],[-71.616397572,41.542051478],[-71.616388573,41.542001479],[-71.616370573,41.541957478],[-71.616327573,41.541875478],[-71.616253573,41.541710479],[-71.616227573,41.541625478],[-71.616208573,41.541496479],[-71.616201572,41.541333478],[-71.616204572,41.541081478],[-71.616194573,41.540910479],[-71.616173573,41.540676479],[-71.616152573,41.540554478],[-71.616120573,41.540435478],[-71.616006572,41.540127478],[-71.615929572,41.539813478],[-71.615662572,41.538359478],[-71.615623572,41.538123478],[-71.615423572,41.536893478],[-71.615131572,41.535499477],[-71.614876571,41.534434477],[-71.614776572,41.533934477],[-71.614404572,41.532027476],[-71.614193571,41.531006477],[-71.614036571,41.530207477],[-71.613843571,41.529177476],[-71.613628571,41.528068476],[-71.613434571,41.526988476],[-71.61319857,41.525901475],[-71.613076571,41.525296475],[-71.611988571,41.524915475],[-71.61145557,41.524745476],[-71.605347568,41.523218475],[-71.603376567,41.522714475],[-71.598276566,41.521440475],[-71.597723566,41.521313475],[-71.597275565,41.521138475],[-71.597229565,41.521164475],[-71.597137565,41.521225475],[-71.597099565,41.521260475],[-71.597023565,41.521305475],[-71.596985565,41.521332475],[-71.596939565,41.521355475],[-71.596825565,41.521435475],[-71.596764565,41.521492475],[-71.596733565,41.521542475],[-71.596710565,41.521592475],[-71.596680565,41.521641475],[-71.596603565,41.521725476],[-71.596489565,41.521824475],[-71.596413565,41.521881476],[-71.596344565,41.521943475],[-71.596161565,41.522164475],[-71.596107565,41.522217475],[-71.596016565,41.522332475],[-71.595978565,41.522393475],[-71.595955565,41.522419475],[-71.595940565,41.522450475],[-71.595894565,41.522511475],[-71.595818565,41.522637476],[-71.595795565,41.522698476],[-71.595764565,41.522759475],[-71.595741565,41.522820475],[-71.595650565,41.523240476],[-71.595642565,41.523316476],[-71.595642565,41.523594476],[-71.595650565,41.523655476],[-71.595695565,41.523796475],[-71.595741565,41.523915475],[-71.595757565,41.523972475],[-71.595779565,41.524117476],[-71.595764565,41.524212476],[-71.595749565,41.524262475],[-71.595749565,41.524296476],[-71.595726565,41.524418475],[-71.595695565,41.524517475],[-71.595688565,41.524563476],[-71.595673565,41.524609476],[-71.595657565,41.524689476],[-71.595657565,41.524754476],[-71.595642565,41.524819476],[-71.595619565,41.524884476],[-71.595589565,41.524998476],[-71.595581565,41.525051476],[-71.595535565,41.525189476],[-71.595497565,41.525273476],[-71.595467565,41.525360476],[-71.595428565,41.525448476],[-71.595398565,41.525540476],[-71.595360565,41.525689476],[-71.595352565,41.525750476],[-71.595352565,41.525814476],[-71.595345565,41.525853476],[-71.595345565,41.525895476],[-71.595329565,41.525975476],[-71.595314565,41.526017476],[-71.595269565,41.526097476],[-71.595222565,41.526181476],[-71.595131565,41.526299476],[-71.595093565,41.526360476],[-71.595047565,41.526474476],[-71.595032565,41.526528476],[-71.594844565,41.527411476],[-71.594782565,41.527707477],[-71.593970564,41.531381477],[-71.593697564,41.532616477],[-71.593506565,41.533581478],[-71.592560565,41.537693479],[-71.592923565,41.537772479],[-71.593075565,41.537820478],[-71.593268565,41.537907479],[-71.593635565,41.538107478],[-71.596046566,41.539467479],[-71.597107567,41.540173479],[-71.597633567,41.540453479],[-71.598078567,41.540691479],[-71.598427567,41.540879479],[-71.599230567,41.541335479],[-71.599960567,41.541763479],[-71.600525567,41.542099479],[-71.601295568,41.542485479],[-71.601372568,41.542775479],[-71.601532568,41.54344648],[-71.601707568,41.54412548],[-71.601921568,41.544880479],[-71.602180568,41.545735479],[-71.602356568,41.546513479],[-71.602524569,41.54707848],[-71.602798569,41.54809248],[-71.603043569,41.54894348],[-71.603317569,41.549858481],[-71.603424569,41.550194481],[-71.603447569,41.550290481],[-71.603592569,41.550743481],[-71.603683569,41.550976481],[-71.603699569,41.551033481],[-71.603722569,41.551091481],[-71.603767569,41.551266481],[-71.603790569,41.551323481],[-71.603806569,41.551392481],[-71.603828569,41.551457481],[-71.603859569,41.551598481],[-71.603867569,41.551670481],[-71.603928569,41.55195348],[-71.60395157,41.552006481],[-71.603966569,41.552063481],[-71.604019569,41.552189481],[-71.604057569,41.552258481],[-71.60412657,41.552411481],[-71.60418757,41.552567481],[-71.604256569,41.552769481],[-71.60437857,41.553177481],[-71.60440157,41.553234481],[-71.60457657,41.553830481],[-71.604584569,41.553872481],[-71.60461257,41.553964481],[-71.60472957,41.554352481],[-71.60499657,41.555287482],[-71.60531657,41.556317482],[-71.60544657,41.556641482],[-71.60547657,41.556698482],[-71.60554557,41.556878482],[-71.60556057,41.556939482],[-71.60558357,41.557106482],[-71.60558357,41.557152482],[-71.60556057,41.557293482],[-71.60553757,41.557381482],[-71.60513357,41.558377482],[-71.60511057,41.558445482],[-71.60500357,41.558693482],[-71.60495057,41.558785482],[-71.60485857,41.558892483],[-71.60466057,41.559065482],[-71.60458457,41.559128483],[-71.604561569,41.559159482],[-71.60453057,41.559227482],[-71.60420257,41.560109482],[-71.60352357,41.561493482],[-71.603096569,41.562340483],[-71.602989569,41.562588483],[-71.602882569,41.562798483],[-71.60283757,41.562901483],[-71.602745569,41.563179483],[-71.60273757,41.563229483],[-71.60272257,41.563282484],[-71.60271857,41.563309483],[-71.602715569,41.563332483],[-71.602715569,41.563477484],[-71.60273757,41.563630483],[-71.60311157,41.565533483],[-71.603119569,41.565602484],[-71.60313457,41.565670483],[-71.60314257,41.565758484],[-71.603157569,41.565846484],[-71.60317257,41.566002484],[-71.60318857,41.566075483],[-71.60318857,41.566147484],[-71.603195569,41.566235484],[-71.603195569,41.566502483],[-71.60320357,41.566586484],[-71.60320357,41.566666484],[-71.60321057,41.566735483],[-71.60321057,41.566803484],[-71.60322657,41.566872483],[-71.603271569,41.567135484],[-71.60349957,41.567912484],[-71.60369157,41.568566484],[-71.60373757,41.568737484],[-71.60379857,41.569138484],[-71.60381357,41.569210485],[-71.60382157,41.569287485],[-71.603836571,41.569363485],[-71.603836571,41.569493484],[-71.60384457,41.569558485],[-71.603836571,41.569626484],[-71.603836571,41.569760484],[-71.60385157,41.569882484],[-71.60386757,41.569947485],[-71.603874571,41.570008485],[-71.60396657,41.570382484],[-71.60398957,41.570446484],[-71.60400457,41.570557485],[-71.60400457,41.570652485],[-71.60401257,41.570713485],[-71.60401257,41.570835484],[-71.60399657,41.570973484],[-71.60398157,41.571041485],[-71.60362257,41.573239485],[-71.60357757,41.573464485],[-71.60350857,41.573689485],[-71.60343957,41.573838485],[-71.60340957,41.573918485],[-71.60336357,41.574002485],[-71.603348571,41.574044485],[-71.60332557,41.574089485],[-71.60311157,41.574635485],[-71.60302057,41.574910485],[-71.60297457,41.575035486],[-71.60294357,41.575180485],[-71.60294357,41.575402485],[-71.60295957,41.575489486],[-71.60302757,41.575661486],[-71.60314957,41.575875486],[-71.60318857,41.575928485],[-71.60321857,41.575985485],[-71.60330257,41.576184486],[-71.60331757,41.576268486],[-71.60331757,41.576481486],[-71.60330257,41.576588485],[-71.60322657,41.576870486],[-71.60310457,41.577206486],[-71.60288257,41.577664486],[-71.60282957,41.577786486],[-71.60234257,41.578735486],[-71.60204357,41.579304486],[-71.60154757,41.579293487],[-71.60140257,41.579285486],[-71.60114357,41.579285486],[-71.600914569,41.579293487],[-71.60067757,41.579293487],[-71.600449569,41.579308487],[-71.60022757,41.579335486],[-71.599909569,41.579355486],[-71.598457569,41.579472486],[-71.598221568,41.579487487],[-71.597992569,41.579487487],[-71.597870568,41.579483487],[-71.597626569,41.579483487],[-71.597382568,41.579476486],[-71.596855568,41.579445487],[-71.596710568,41.579441486],[-71.595764568,41.579396486],[-71.595490567,41.579373486],[-71.595352568,41.579365487],[-71.595108568,41.579361486],[-71.594673567,41.579361486],[-71.594269567,41.579377486],[-71.594040568,41.579380486],[-71.593895567,41.579388487],[-71.593605567,41.579411487],[-71.592415567,41.579491486],[-71.591141566,41.579598487],[-71.590935566,41.579605487],[-71.590271566,41.579605487],[-71.589264566,41.579567487],[-71.588855566,41.579561487],[-71.588493565,41.579556487],[-71.587593565,41.579533487],[-71.586685565,41.579541487],[-71.585678565,41.579560487],[-71.584709564,41.579594487],[-71.583023564,41.579628487],[-71.582509564,41.579645487],[-71.581642564,41.579670487],[-71.580803563,41.579682487],[-71.580223563,41.579701487],[-71.579689563,41.579712487],[-71.579079563,41.579735487],[-71.578552562,41.579750487],[-71.578774563,41.580109487],[-71.579018562,41.580517487],[-71.579201563,41.580788487],[-71.579414563,41.581116487],[-71.579643563,41.581494488],[-71.580032563,41.582188487],[-71.580170563,41.582413488],[-71.580246563,41.582562488],[-71.580330563,41.582707487],[-71.580414564,41.582852488],[-71.580460563,41.582920488],[-71.580498563,41.582993488],[-71.580544563,41.583062487],[-71.580650563,41.583187488],[-71.580917564,41.583424488],[-71.581367564,41.583798488],[-71.581558564,41.583935488],[-71.581726563,41.584042488],[-71.581970564,41.584187488],[-71.582039564,41.584244488],[-71.582108564,41.584320488],[-71.582222564,41.584481488],[-71.582253564,41.584507488],[-71.582275564,41.584526488],[-71.582367564,41.584568488],[-71.582481564,41.584599487],[-71.582909564,41.584649488],[-71.583290564,41.584710488],[-71.583382564,41.584729488],[-71.583908564,41.584809488],[-71.584129564,41.584847488],[-71.584480565,41.584896488],[-71.584541565,41.584908488],[-71.584900565,41.584957488],[-71.585228565,41.585007488],[-71.585495565,41.585076488],[-71.585846565,41.585179488],[-71.586113565,41.585293488],[-71.586395565,41.585434488],[-71.586624565,41.585530488],[-71.586723565,41.585553488],[-71.586906566,41.585549488],[-71.587097566,41.585534488],[-71.587255566,41.585510488],[-71.587433566,41.585507488],[-71.587555565,41.585518488],[-71.587746566,41.585545488],[-71.588036566,41.585621488],[-71.588890566,41.585812488],[-71.589363567,41.585911488],[-71.589867567,41.586048488],[-71.590459566,41.586231488],[-71.590660567,41.586293488],[-71.590981567,41.586415488],[-71.591393567,41.586590488],[-71.591797567,41.586747488],[-71.592178567,41.586876488],[-71.592598568,41.587025488],[-71.592804567,41.587117488],[-71.592911568,41.587204488],[-71.592964567,41.587319488],[-71.593040567,41.587765488],[-71.593094567,41.588246488],[-71.593147568,41.588910488],[-71.593169568,41.589138489],[-71.593201568,41.589470489],[-71.593201568,41.589890488],[-71.593214568,41.590073489],[-71.593220568,41.590112489],[-71.593277568,41.590218488],[-71.593315568,41.590271489],[-71.593582568,41.590607488],[-71.593796568,41.590866489],[-71.594093568,41.591191488],[-71.594322568,41.591404489],[-71.594505568,41.591519489],[-71.594765569,41.591626489],[-71.595100568,41.591748489],[-71.595131569,41.591763489],[-71.595345569,41.591896489],[-71.596130569,41.592335489],[-71.596779569,41.592717489],[-71.597412569,41.593071489],[-71.598382569,41.593636489],[-71.59847357,41.593689489],[-71.59916757,41.594067489],[-71.59935057,41.59419349],[-71.59956157,41.594394489],[-71.59974757,41.594571489],[-71.60013657,41.594963489],[-71.600362571,41.595212489],[-71.60063957,41.59551749],[-71.60089957,41.595779489],[-71.601097571,41.59597849],[-71.601624571,41.59648949],[-71.602074571,41.596947489],[-71.602203571,41.59707349],[-71.602418571,41.597375489],[-71.603247572,41.59836749],[-71.603408571,41.59860849],[-71.603458572,41.59873149],[-71.603486571,41.59885049],[-71.603525571,41.59906549],[-71.603646571,41.599360491],[-71.603752572,41.59965449],[-71.603838571,41.59982349],[-71.603965572,41.59995649],[-71.604107572,41.60005549],[-71.604274572,41.60013449],[-71.604539572,41.60028149],[-71.604681572,41.600585491],[-71.604798572,41.600879491]]]]}}"}, +{"type": "precinct", "typeId": 1103, "areaId": 25773, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":112,\"NAME\":\"1103\",\"SHAPE_Length\":0.37069841368073,\"SHAPE_Area\":-0.0054954563544197},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.518277543,41.575972488],[-71.518265542,41.579166489],[-71.518290543,41.581390489],[-71.518433544,41.594048492],[-71.518568544,41.594354492],[-71.519032544,41.595265492],[-71.519294544,41.595800492],[-71.519572544,41.596328492],[-71.519909544,41.596988492],[-71.520048544,41.597261492],[-71.520366545,41.597847492],[-71.521216545,41.599487493],[-71.521232544,41.599518492],[-71.521355545,41.599741493],[-71.521602545,41.600255493],[-71.521796545,41.600624493],[-71.521904545,41.600850493],[-71.522441545,41.602607493],[-71.522606546,41.602598494],[-71.528305548,41.602414493],[-71.529266547,41.602384493],[-71.531380548,41.602331493],[-71.533280548,41.602285493],[-71.533326549,41.602284493],[-71.543793552,41.602026493],[-71.543884553,41.602024493],[-71.544807552,41.602001492],[-71.545013553,41.601924492],[-71.545603553,41.601911493],[-71.546147553,41.601899492],[-71.546928554,41.601882492],[-71.551279555,41.601782492],[-71.552429555,41.601755492],[-71.557869557,41.601603492],[-71.563853559,41.601470491],[-71.564705559,41.601451491],[-71.569138561,41.601402492],[-71.573799562,41.601351491],[-71.574293562,41.601343492],[-71.578026563,41.601287492],[-71.583109565,41.601209491],[-71.583832565,41.601198491],[-71.590304567,41.601109491],[-71.590335568,41.601109491],[-71.591481568,41.601093491],[-71.591509568,41.601093491],[-71.593422569,41.601067491],[-71.594067568,41.601057491],[-71.594108568,41.601056491],[-71.596688569,41.601011491],[-71.596741569,41.601010491],[-71.59932057,41.60096649],[-71.59995757,41.600956491],[-71.601684571,41.60092949],[-71.601780571,41.60092749],[-71.604597572,41.600882491],[-71.604798572,41.600879491],[-71.604681572,41.600585491],[-71.604539572,41.60028149],[-71.604274572,41.60013449],[-71.604107572,41.60005549],[-71.603965572,41.59995649],[-71.603838571,41.59982349],[-71.603752572,41.59965449],[-71.603646571,41.599360491],[-71.603525571,41.59906549],[-71.603486571,41.59885049],[-71.603458572,41.59873149],[-71.603408571,41.59860849],[-71.603247572,41.59836749],[-71.602418571,41.597375489],[-71.602203571,41.59707349],[-71.602074571,41.596947489],[-71.601624571,41.59648949],[-71.601097571,41.59597849],[-71.60089957,41.595779489],[-71.60063957,41.59551749],[-71.600362571,41.595212489],[-71.60013657,41.594963489],[-71.59974757,41.594571489],[-71.59956157,41.594394489],[-71.59935057,41.59419349],[-71.59916757,41.594067489],[-71.59847357,41.593689489],[-71.598382569,41.593636489],[-71.597412569,41.593071489],[-71.596779569,41.592717489],[-71.596130569,41.592335489],[-71.595345569,41.591896489],[-71.595131569,41.591763489],[-71.595100568,41.591748489],[-71.594765569,41.591626489],[-71.594505568,41.591519489],[-71.594322568,41.591404489],[-71.594093568,41.591191488],[-71.593796568,41.590866489],[-71.593582568,41.590607488],[-71.593315568,41.590271489],[-71.593277568,41.590218488],[-71.593220568,41.590112489],[-71.593214568,41.590073489],[-71.593201568,41.589890488],[-71.593201568,41.589470489],[-71.593169568,41.589138489],[-71.593147568,41.588910488],[-71.593094567,41.588246488],[-71.593040567,41.587765488],[-71.592964567,41.587319488],[-71.592911568,41.587204488],[-71.592804567,41.587117488],[-71.592598568,41.587025488],[-71.592178567,41.586876488],[-71.591797567,41.586747488],[-71.591393567,41.586590488],[-71.590981567,41.586415488],[-71.590660567,41.586293488],[-71.590459566,41.586231488],[-71.589867567,41.586048488],[-71.589363567,41.585911488],[-71.588890566,41.585812488],[-71.588036566,41.585621488],[-71.587746566,41.585545488],[-71.587555565,41.585518488],[-71.587433566,41.585507488],[-71.587255566,41.585510488],[-71.587097566,41.585534488],[-71.586906566,41.585549488],[-71.586723565,41.585553488],[-71.586624565,41.585530488],[-71.586395565,41.585434488],[-71.586113565,41.585293488],[-71.585846565,41.585179488],[-71.585495565,41.585076488],[-71.585228565,41.585007488],[-71.584900565,41.584957488],[-71.584541565,41.584908488],[-71.584480565,41.584896488],[-71.584129564,41.584847488],[-71.583908564,41.584809488],[-71.583382564,41.584729488],[-71.583290564,41.584710488],[-71.582909564,41.584649488],[-71.582481564,41.584599487],[-71.582367564,41.584568488],[-71.582275564,41.584526488],[-71.582253564,41.584507488],[-71.582222564,41.584481488],[-71.582108564,41.584320488],[-71.582039564,41.584244488],[-71.581970564,41.584187488],[-71.581726563,41.584042488],[-71.581558564,41.583935488],[-71.581367564,41.583798488],[-71.580917564,41.583424488],[-71.580650563,41.583187488],[-71.580544563,41.583062487],[-71.580498563,41.582993488],[-71.580460563,41.582920488],[-71.580414564,41.582852488],[-71.580330563,41.582707487],[-71.580246563,41.582562488],[-71.580170563,41.582413488],[-71.580032563,41.582188487],[-71.579643563,41.581494488],[-71.579414563,41.581116487],[-71.579201563,41.580788487],[-71.579018562,41.580517487],[-71.578774563,41.580109487],[-71.578552562,41.579750487],[-71.579079563,41.579735487],[-71.579689563,41.579712487],[-71.580223563,41.579701487],[-71.580803563,41.579682487],[-71.581642564,41.579670487],[-71.582509564,41.579645487],[-71.583023564,41.579628487],[-71.584709564,41.579594487],[-71.585678565,41.579560487],[-71.586685565,41.579541487],[-71.587593565,41.579533487],[-71.588493565,41.579556487],[-71.588855566,41.579561487],[-71.589264566,41.579567487],[-71.590271566,41.579605487],[-71.590935566,41.579605487],[-71.591141566,41.579598487],[-71.592415567,41.579491486],[-71.593605567,41.579411487],[-71.593895567,41.579388487],[-71.594040568,41.579380486],[-71.594269567,41.579377486],[-71.594673567,41.579361486],[-71.595108568,41.579361486],[-71.595352568,41.579365487],[-71.595490567,41.579373486],[-71.595764568,41.579396486],[-71.596710568,41.579441486],[-71.596855568,41.579445487],[-71.597382568,41.579476486],[-71.597626569,41.579483487],[-71.597870568,41.579483487],[-71.597992569,41.579487487],[-71.598221568,41.579487487],[-71.598457569,41.579472486],[-71.599909569,41.579355486],[-71.60022757,41.579335486],[-71.600449569,41.579308487],[-71.60067757,41.579293487],[-71.600914569,41.579293487],[-71.60114357,41.579285486],[-71.60140257,41.579285486],[-71.60154757,41.579293487],[-71.60204357,41.579304486],[-71.60234257,41.578735486],[-71.60282957,41.577786486],[-71.60288257,41.577664486],[-71.60310457,41.577206486],[-71.60322657,41.576870486],[-71.60330257,41.576588485],[-71.60331757,41.576481486],[-71.60331757,41.576268486],[-71.60330257,41.576184486],[-71.60321857,41.575985485],[-71.60318857,41.575928485],[-71.60314957,41.575875486],[-71.60302757,41.575661486],[-71.60295957,41.575489486],[-71.60294357,41.575402485],[-71.60294357,41.575180485],[-71.60297457,41.575035486],[-71.60302057,41.574910485],[-71.60311157,41.574635485],[-71.60332557,41.574089485],[-71.603348571,41.574044485],[-71.60336357,41.574002485],[-71.60340957,41.573918485],[-71.60343957,41.573838485],[-71.60350857,41.573689485],[-71.60357757,41.573464485],[-71.60362257,41.573239485],[-71.60398157,41.571041485],[-71.60399657,41.570973484],[-71.60401257,41.570835484],[-71.60401257,41.570713485],[-71.60400457,41.570652485],[-71.60400457,41.570557485],[-71.60398957,41.570446484],[-71.60396657,41.570382484],[-71.603874571,41.570008485],[-71.60386757,41.569947485],[-71.60385157,41.569882484],[-71.603836571,41.569760484],[-71.603836571,41.569626484],[-71.60384457,41.569558485],[-71.603836571,41.569493484],[-71.603836571,41.569363485],[-71.60382157,41.569287485],[-71.60381357,41.569210485],[-71.60379857,41.569138484],[-71.60373757,41.568737484],[-71.60369157,41.568566484],[-71.60349957,41.567912484],[-71.603271569,41.567135484],[-71.60322657,41.566872483],[-71.60321057,41.566803484],[-71.60321057,41.566735483],[-71.60320357,41.566666484],[-71.60320357,41.566586484],[-71.603195569,41.566502483],[-71.603195569,41.566235484],[-71.60318857,41.566147484],[-71.60318857,41.566075483],[-71.60317257,41.566002484],[-71.603157569,41.565846484],[-71.60314257,41.565758484],[-71.60313457,41.565670483],[-71.603119569,41.565602484],[-71.60311157,41.565533483],[-71.60273757,41.563630483],[-71.602715569,41.563477484],[-71.602715569,41.563332483],[-71.60271857,41.563309483],[-71.60272257,41.563282484],[-71.60273757,41.563229483],[-71.602745569,41.563179483],[-71.60283757,41.562901483],[-71.602882569,41.562798483],[-71.602989569,41.562588483],[-71.603096569,41.562340483],[-71.60352357,41.561493482],[-71.60420257,41.560109482],[-71.60453057,41.559227482],[-71.604561569,41.559159482],[-71.60458457,41.559128483],[-71.60466057,41.559065482],[-71.60485857,41.558892483],[-71.60495057,41.558785482],[-71.60500357,41.558693482],[-71.60511057,41.558445482],[-71.60513357,41.558377482],[-71.60553757,41.557381482],[-71.60556057,41.557293482],[-71.60558357,41.557152482],[-71.60558357,41.557106482],[-71.60556057,41.556939482],[-71.60554557,41.556878482],[-71.60547657,41.556698482],[-71.60544657,41.556641482],[-71.60531657,41.556317482],[-71.60499657,41.555287482],[-71.60472957,41.554352481],[-71.60461257,41.553964481],[-71.604584569,41.553872481],[-71.60457657,41.553830481],[-71.60440157,41.553234481],[-71.60437857,41.553177481],[-71.604256569,41.552769481],[-71.60418757,41.552567481],[-71.60412657,41.552411481],[-71.604057569,41.552258481],[-71.604019569,41.552189481],[-71.603966569,41.552063481],[-71.60395157,41.552006481],[-71.603928569,41.55195348],[-71.603867569,41.551670481],[-71.603859569,41.551598481],[-71.603828569,41.551457481],[-71.603806569,41.551392481],[-71.603790569,41.551323481],[-71.603767569,41.551266481],[-71.603722569,41.551091481],[-71.603699569,41.551033481],[-71.603683569,41.550976481],[-71.603592569,41.550743481],[-71.603447569,41.550290481],[-71.603424569,41.550194481],[-71.603317569,41.549858481],[-71.603043569,41.54894348],[-71.602798569,41.54809248],[-71.602524569,41.54707848],[-71.602356568,41.546513479],[-71.602180568,41.545735479],[-71.601921568,41.544880479],[-71.601707568,41.54412548],[-71.601532568,41.54344648],[-71.601372568,41.542775479],[-71.601295568,41.542485479],[-71.600525567,41.542099479],[-71.599960567,41.541763479],[-71.599230567,41.541335479],[-71.598427567,41.540879479],[-71.598078567,41.540691479],[-71.597633567,41.540453479],[-71.597107567,41.540173479],[-71.596046566,41.539467479],[-71.593635565,41.538107478],[-71.593268565,41.537907479],[-71.593075565,41.537820478],[-71.592923565,41.537772479],[-71.592560565,41.537693479],[-71.593506565,41.533581478],[-71.593697564,41.532616477],[-71.593970564,41.531381477],[-71.594782565,41.527707477],[-71.594844565,41.527411476],[-71.595032565,41.526528476],[-71.595047565,41.526474476],[-71.595093565,41.526360476],[-71.595131565,41.526299476],[-71.595222565,41.526181476],[-71.595269565,41.526097476],[-71.595314565,41.526017476],[-71.595329565,41.525975476],[-71.595345565,41.525895476],[-71.595345565,41.525853476],[-71.595352565,41.525814476],[-71.595352565,41.525750476],[-71.595360565,41.525689476],[-71.595398565,41.525540476],[-71.595428565,41.525448476],[-71.595467565,41.525360476],[-71.595497565,41.525273476],[-71.595535565,41.525189476],[-71.595581565,41.525051476],[-71.595589565,41.524998476],[-71.595619565,41.524884476],[-71.595642565,41.524819476],[-71.595657565,41.524754476],[-71.595657565,41.524689476],[-71.595673565,41.524609476],[-71.595688565,41.524563476],[-71.595695565,41.524517475],[-71.595726565,41.524418475],[-71.595749565,41.524296476],[-71.595749565,41.524262475],[-71.595764565,41.524212476],[-71.595779565,41.524117476],[-71.595757565,41.523972475],[-71.595741565,41.523915475],[-71.595695565,41.523796475],[-71.595650565,41.523655476],[-71.595642565,41.523594476],[-71.595642565,41.523316476],[-71.595650565,41.523240476],[-71.595741565,41.522820475],[-71.595764565,41.522759475],[-71.595795565,41.522698476],[-71.595818565,41.522637476],[-71.595894565,41.522511475],[-71.595940565,41.522450475],[-71.595955565,41.522419475],[-71.595978565,41.522393475],[-71.596016565,41.522332475],[-71.596107565,41.522217475],[-71.596161565,41.522164475],[-71.596344565,41.521943475],[-71.596413565,41.521881476],[-71.596489565,41.521824475],[-71.596603565,41.521725476],[-71.596680565,41.521641475],[-71.596710565,41.521592475],[-71.596733565,41.521542475],[-71.596764565,41.521492475],[-71.596825565,41.521435475],[-71.596939565,41.521355475],[-71.596985565,41.521332475],[-71.597023565,41.521305475],[-71.597099565,41.521260475],[-71.597137565,41.521225475],[-71.597229565,41.521164475],[-71.597275565,41.521138475],[-71.594252564,41.520360475],[-71.590407563,41.519408475],[-71.57986556,41.516652475],[-71.57924356,41.516512475],[-71.57910656,41.516508475],[-71.576506558,41.515808475],[-71.576059558,41.515777475],[-71.571193556,41.514536474],[-71.569699556,41.514140474],[-71.558766553,41.511242474],[-71.558634552,41.511227474],[-71.558041552,41.511076475],[-71.557734552,41.510997475],[-71.557045552,41.510785474],[-71.557030552,41.510846474],[-71.556847552,41.511452474],[-71.556816552,41.511574474],[-71.556553552,41.512451475],[-71.555763552,41.515095475],[-71.555511552,41.515927475],[-71.555484552,41.516023475],[-71.555252552,41.516850475],[-71.554512552,41.519329476],[-71.554245551,41.520226476],[-71.553963551,41.521202476],[-71.553833552,41.521630476],[-71.553467551,41.522869477],[-71.553352551,41.523228476],[-71.553255551,41.523555477],[-71.553146551,41.523854477],[-71.553085551,41.523991477],[-71.552986551,41.524174477],[-71.552856551,41.524392477],[-71.55215955,41.525450478],[-71.55208155,41.525569477],[-71.551723551,41.526094477],[-71.551443551,41.526509477],[-71.55112855,41.526974477],[-71.55101255,41.527146478],[-71.55042855,41.528013478],[-71.54927155,41.529731478],[-71.54828855,41.531201479],[-71.54772355,41.532045478],[-71.547555549,41.532296478],[-71.54740755,41.532518479],[-71.547282549,41.532703479],[-71.54721255,41.532809479],[-71.54713455,41.532925479],[-71.54663855,41.533665479],[-71.54645555,41.533936479],[-71.54628055,41.534172479],[-71.546143549,41.534336479],[-71.546036549,41.534474479],[-71.545746549,41.53474848],[-71.545578549,41.534893479],[-71.545372549,41.535054479],[-71.544983549,41.53531748],[-71.544479549,41.535591479],[-71.543961549,41.535813479],[-71.542755549,41.536259479],[-71.541718548,41.53665648],[-71.541535548,41.53672148],[-71.541379548,41.53677648],[-71.541374548,41.53677848],[-71.541092548,41.53690448],[-71.540810547,41.53704148],[-71.540573548,41.53717548],[-71.540337548,41.53732048],[-71.539886548,41.53765948],[-71.539680547,41.53784248],[-71.539474548,41.53804448],[-71.539139547,41.538456481],[-71.538658547,41.53908248],[-71.538406547,41.53940248],[-71.537811547,41.540188481],[-71.536713546,41.541596481],[-71.536362546,41.542096481],[-71.536240547,41.542263481],[-71.536179547,41.542359481],[-71.535957546,41.542752481],[-71.535934546,41.542782481],[-71.535667546,41.543286481],[-71.535546546,41.543503481],[-71.534764546,41.544905482],[-71.534676546,41.545063482],[-71.534637546,41.545140482],[-71.534164546,41.545990482],[-71.533875546,41.546543482],[-71.533546546,41.547120482],[-71.533485546,41.547219482],[-71.533515546,41.547274482],[-71.533481546,41.547430482],[-71.533323546,41.547639482],[-71.532923546,41.548077482],[-71.532986546,41.548121482],[-71.533012546,41.548147483],[-71.533066545,41.548203482],[-71.533112546,41.548298482],[-71.533127546,41.548390482],[-71.533134546,41.548539483],[-71.533188546,41.548916482],[-71.533340546,41.549538482],[-71.533394546,41.549832482],[-71.533417546,41.549900483],[-71.533531546,41.550434482],[-71.533592546,41.550858483],[-71.533592546,41.551033483],[-71.533585546,41.551167483],[-71.533569546,41.551247483],[-71.533554546,41.551373483],[-71.533508546,41.551613483],[-71.533272546,41.552643483],[-71.533081546,41.553387483],[-71.532814546,41.554501484],[-71.532730546,41.555012484],[-71.532738546,41.555172483],[-71.532768546,41.555313484],[-71.532829547,41.555485483],[-71.532898546,41.555603483],[-71.533035546,41.555775484],[-71.533195546,41.555905484],[-71.533371547,41.556023484],[-71.533592546,41.556122484],[-71.533844547,41.556202484],[-71.534096547,41.556267484],[-71.534302547,41.556332484],[-71.534470546,41.556412484],[-71.534599547,41.556507484],[-71.534729547,41.556641484],[-71.534779547,41.556726484],[-71.534843547,41.556832484],[-71.535019547,41.557507484],[-71.535156547,41.558003484],[-71.535278547,41.558384484],[-71.535500548,41.559163485],[-71.535515547,41.559292484],[-71.535530547,41.559567484],[-71.535500548,41.559716484],[-71.535408547,41.560067484],[-71.535141547,41.560875485],[-71.535095547,41.561139484],[-71.535088547,41.561253485],[-71.535088547,41.561360485],[-71.535103547,41.561463485],[-71.535141547,41.561585485],[-71.535179547,41.561684485],[-71.535240547,41.561814485],[-71.535416547,41.562081485],[-71.535591547,41.562344485],[-71.535652548,41.562481485],[-71.535706547,41.562638485],[-71.535759547,41.562813485],[-71.535943548,41.563735485],[-71.535950548,41.563767486],[-71.535965548,41.563889485],[-71.536018548,41.564202485],[-71.536226547,41.565283486],[-71.536667548,41.567284486],[-71.536720548,41.567559486],[-71.536827548,41.568062486],[-71.536842548,41.568226486],[-71.536842548,41.568344486],[-71.536812548,41.568482486],[-71.536720548,41.568695486],[-71.536652549,41.568856486],[-71.536133548,41.570065487],[-71.535637548,41.571263486],[-71.535393548,41.571785487],[-71.534866548,41.573014488],[-71.534683548,41.573456487],[-71.534538548,41.573857487],[-71.534332548,41.574559487],[-71.534172548,41.575131488],[-71.533966547,41.575875488],[-71.533707548,41.576783488],[-71.533569548,41.576767488],[-71.533157548,41.576764488],[-71.532883547,41.576771488],[-71.532631547,41.576798487],[-71.531891547,41.576916488],[-71.531441547,41.577000488],[-71.531166547,41.577031488],[-71.530914547,41.577053488],[-71.530678547,41.577065488],[-71.530441546,41.577061488],[-71.530144546,41.577034488],[-71.529839546,41.576985488],[-71.529480546,41.576901488],[-71.529068546,41.576771488],[-71.528664546,41.576622488],[-71.528000545,41.576367488],[-71.527550545,41.576203488],[-71.527191546,41.576085488],[-71.526833545,41.575982488],[-71.526413546,41.575879488],[-71.525909545,41.575776488],[-71.525482545,41.575695488],[-71.525064545,41.575639488],[-71.524734545,41.575608488],[-71.524490544,41.575596488],[-71.523788544,41.575615488],[-71.523452544,41.575636488],[-71.522971544,41.575667488],[-71.518745543,41.575936488],[-71.518277543,41.575972488]]]]}}"}, +{"type": "precinct", "typeId": 1201, "areaId": 25775, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":114,\"NAME\":\"1201\",\"SHAPE_Length\":0.39214626505923,\"SHAPE_Area\":-0.0075013547097675},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.682663608,41.808957529],[-71.683376609,41.812932529],[-71.68482061,41.820914531],[-71.685311611,41.823625531],[-71.685479611,41.825312531],[-71.685500611,41.825388531],[-71.685578611,41.825666532],[-71.68563061,41.826168531],[-71.685806611,41.826990532],[-71.685942611,41.827753532],[-71.686268612,41.829150532],[-71.686315611,41.829425532],[-71.686452611,41.830298533],[-71.686527611,41.830724533],[-71.688183612,41.840328534],[-71.688705613,41.843373535],[-71.688924612,41.844317535],[-71.689076613,41.844887535],[-71.689573613,41.847698535],[-71.689621614,41.847969535],[-71.689708613,41.848509536],[-71.689797614,41.849069536],[-71.689875614,41.849554536],[-71.690017613,41.850326537],[-71.690294614,41.852033537],[-71.690336614,41.852286537],[-71.691032614,41.856561538],[-71.692431615,41.856539537],[-71.697272616,41.856433537],[-71.699913617,41.856386537],[-71.702133618,41.856339537],[-71.703254619,41.856299537],[-71.704486618,41.856266537],[-71.70968262,41.856148537],[-71.714587621,41.856032537],[-71.716944623,41.855991536],[-71.717462623,41.855985536],[-71.719946624,41.855945536],[-71.720054624,41.855942537],[-71.720163624,41.855940537],[-71.723722625,41.855855536],[-71.724244625,41.855865537],[-71.726073625,41.855852536],[-71.726859626,41.855993536],[-71.727153626,41.856072536],[-71.728048626,41.855954536],[-71.728706626,41.855980536],[-71.729805627,41.855980536],[-71.730888628,41.855973536],[-71.731957628,41.855959536],[-71.732079628,41.855957536],[-71.733284628,41.855912536],[-71.734276628,41.855893536],[-71.736053629,41.855805536],[-71.736755629,41.855767536],[-71.737663629,41.855729536],[-71.73832763,41.855690536],[-71.73870163,41.855679536],[-71.73905963,41.855652535],[-71.73913863,41.855648536],[-71.74037963,41.855587536],[-71.741066631,41.855557535],[-71.74185263,41.855511536],[-71.744026632,41.855412536],[-71.744484631,41.855397536],[-71.745458632,41.855346535],[-71.745811632,41.855328535],[-71.746590632,41.855282535],[-71.747200632,41.855263535],[-71.747483633,41.855244535],[-71.747668633,41.855287535],[-71.749488633,41.855252535],[-71.749487633,41.855066536],[-71.749612633,41.855067535],[-71.758221636,41.855067535],[-71.764137638,41.854926535],[-71.765988639,41.854882535],[-71.768763639,41.854835534],[-71.76995864,41.854814534],[-71.77137664,41.854791535],[-71.787391645,41.854521534],[-71.794496648,41.854419534],[-71.794680648,41.854417534],[-71.794524647,41.850436533],[-71.794480648,41.849306533],[-71.794477648,41.849239533],[-71.794474648,41.849167533],[-71.794471647,41.849096533],[-71.794463648,41.848890533],[-71.794324656,41.845293488],[-71.79412302,41.841119795],[-71.794121647,41.841111531],[-71.794115647,41.840974531],[-71.794115744,41.840969174],[-71.794067255,41.839965412],[-71.793738024,41.831660178],[-71.793689646,41.830694529],[-71.793615646,41.829204529],[-71.793532646,41.827594528],[-71.793478646,41.826478528],[-71.793440646,41.825645528],[-71.793343646,41.822950527],[-71.793310646,41.821808528],[-71.793315645,41.821779527],[-71.793302646,41.821575528],[-71.793296645,41.821389527],[-71.793284646,41.821265528],[-71.793265646,41.820648527],[-71.793161645,41.817177526],[-71.793160645,41.817165527],[-71.793158288,41.81705137],[-71.793007121,41.813534582],[-71.792894645,41.812529526],[-71.792867645,41.810990526],[-71.792855645,41.810658526],[-71.792800645,41.809301525],[-71.792804645,41.809216525],[-71.792593644,41.804024524],[-71.792364644,41.800061523],[-71.792360644,41.799996523],[-71.792135644,41.795632522],[-71.792124644,41.795406523],[-71.792079644,41.795090522],[-71.792079644,41.795084522],[-71.792076644,41.795068522],[-71.792070644,41.794912522],[-71.792058644,41.794600522],[-71.792006644,41.793247522],[-71.791919644,41.790723522],[-71.791911643,41.790488522],[-71.791936643,41.789776521],[-71.791940644,41.789622521],[-71.791927644,41.789318521],[-71.791921644,41.789144521],[-71.791573643,41.781292519],[-71.791477643,41.779405519],[-71.791372643,41.777336519],[-71.791370643,41.777304519],[-71.791254642,41.774505519],[-71.791066642,41.770210518],[-71.791066642,41.770188518],[-71.790262642,41.770507518],[-71.789764642,41.770691518],[-71.788895641,41.771038518],[-71.788599641,41.771163518],[-71.788506641,41.771202518],[-71.787987642,41.771408518],[-71.787838641,41.771471518],[-71.787598641,41.771572518],[-71.787209641,41.771725518],[-71.786835641,41.771862518],[-71.786557641,41.771970519],[-71.786362641,41.772046518],[-71.785912641,41.772202519],[-71.785492641,41.772358519],[-71.785217641,41.772484518],[-71.785294641,41.772580518],[-71.78536264,41.772648518],[-71.785757382,41.773121185],[-71.778819639,41.776876519],[-71.772457637,41.77860752],[-71.767701299,41.781152552],[-71.764498634,41.78054052],[-71.762085633,41.781075521],[-71.759811632,41.782049521],[-71.756785632,41.783355521],[-71.753171631,41.784860522],[-71.746500872,41.786585994],[-71.746482629,41.786559522],[-71.746434628,41.786426522],[-71.746418628,41.786369522],[-71.746366629,41.786326522],[-71.746321628,41.786278522],[-71.746290629,41.786226522],[-71.746190628,41.786144522],[-71.746137629,41.786083522],[-71.745781628,41.786179522],[-71.744759628,41.786412522],[-71.744156628,41.786568522],[-71.743581628,41.786696522],[-71.743469627,41.786721522],[-71.743750906,41.787343118],[-71.743313086,41.7876001],[-71.742981627,41.786854522],[-71.742493627,41.786972522],[-71.742241627,41.787045522],[-71.742050627,41.787117523],[-71.741195627,41.787568523],[-71.741177627,41.787633522],[-71.741234627,41.787789522],[-71.741257627,41.787972523],[-71.741264627,41.788342523],[-71.738488626,41.789941523],[-71.738769626,41.788956522],[-71.738678626,41.789021523],[-71.738594626,41.789070523],[-71.738541626,41.789101523],[-71.738373626,41.789162523],[-71.738190626,41.789215523],[-71.737923626,41.789276523],[-71.737579625,41.789326523],[-71.737175625,41.789391523],[-71.736839625,41.789428523],[-71.736755626,41.789437523],[-71.736252626,41.789482523],[-71.735154201,41.789559506],[-71.735146772,41.790198472],[-71.734175952,41.79020799],[-71.7341622,41.78961927],[-71.733765624,41.789635523],[-71.733475624,41.789627523],[-71.733284625,41.789616523],[-71.733210625,41.789604523],[-71.732948624,41.789563523],[-71.732765624,41.789517523],[-71.732407624,41.789399523],[-71.732201624,41.789322523],[-71.732010624,41.789257523],[-71.731950852,41.78923458],[-71.731263491,41.79047449],[-71.730644831,41.790131848],[-71.731156591,41.788961126],[-71.730759623,41.788834523],[-71.730690624,41.788807523],[-71.730595624,41.788777523],[-71.730194623,41.788651523],[-71.729889623,41.788563523],[-71.729393623,41.788411523],[-71.729240623,41.788369523],[-71.729051623,41.788345523],[-71.728577623,41.788285523],[-71.728134623,41.788235523],[-71.727961623,41.788227523],[-71.727821623,41.788224523],[-71.727600622,41.788231523],[-71.727756165,41.789161027],[-71.72188662,41.789898523],[-71.72172562,41.789688524],[-71.72157362,41.789437524],[-71.72149762,41.789292523],[-71.721466621,41.789242524],[-71.72138262,41.789051524],[-71.72049062,41.789059523],[-71.72045162,41.789063523],[-71.71987962,41.789082523],[-71.71911662,41.789151524],[-71.71795762,41.789303524],[-71.717445619,41.789360524],[-71.716696239,41.789436487],[-71.716782087,41.790455455],[-71.710785843,41.790893276],[-71.709618616,41.790802524],[-71.709534617,41.791237525],[-71.709381616,41.791832524],[-71.709331617,41.791951524],[-71.709274617,41.792088524],[-71.709238617,41.792127524],[-71.709247616,41.792196524],[-71.709252617,41.792275524],[-71.709249616,41.792331524],[-71.709233617,41.792403525],[-71.709222617,41.792486524],[-71.709212617,41.792534524],[-71.709193617,41.792616525],[-71.709184617,41.792661525],[-71.709164617,41.792732525],[-71.709145617,41.792800524],[-71.709144617,41.792846524],[-71.709153617,41.792892525],[-71.709179617,41.792939524],[-71.709207616,41.793003525],[-71.709212617,41.793051525],[-71.709211617,41.793099525],[-71.709233617,41.793159525],[-71.709260617,41.793234524],[-71.709297617,41.793291524],[-71.709307617,41.793352525],[-71.709296617,41.793408524],[-71.709263616,41.793450525],[-71.709221617,41.793506524],[-71.70466206,41.794652825],[-71.704178615,41.793721525],[-71.703979615,41.793778525],[-71.703781615,41.793827525],[-71.703560615,41.793866525],[-71.703125615,41.793911525],[-71.703075615,41.793915525],[-71.702911615,41.793927525],[-71.70272042,41.795890145],[-71.700835886,41.796042431],[-71.700920614,41.793827525],[-71.699928614,41.793858525],[-71.699028613,41.793881525],[-71.698220613,41.793928525],[-71.697986613,41.793947525],[-71.697808613,41.793967525],[-71.697517613,41.793938525],[-71.697289612,41.793896525],[-71.696732613,41.793827525],[-71.696655613,41.793808525],[-71.696579613,41.793766525],[-71.69630539,41.794824146],[-71.691736824,41.793586826],[-71.691902611,41.792504525],[-71.691528611,41.792569525],[-71.691338611,41.792611525],[-71.691162611,41.792656525],[-71.69097161,41.792687525],[-71.690811611,41.792687525],[-71.69036961,41.792633525],[-71.68984261,41.792530525],[-71.689682611,41.792485525],[-71.688591609,41.792015525],[-71.68823261,41.791943525],[-71.68803461,41.791890525],[-71.68768361,41.791840525],[-71.687157609,41.791748525],[-71.686729609,41.791645525],[-71.685989609,41.791504525],[-71.685677609,41.791436525],[-71.685532609,41.791394525],[-71.685432608,41.791359525],[-71.684486609,41.791096525],[-71.684319609,41.791054525],[-71.684196609,41.791043524],[-71.684120609,41.791043524],[-71.684013608,41.791058525],[-71.683876608,41.791092525],[-71.683327608,41.791172525],[-71.682938608,41.791245525],[-71.682648608,41.791283525],[-71.682549608,41.791291525],[-71.682436608,41.791277525],[-71.682376608,41.791270525],[-71.681816608,41.791203525],[-71.681496607,41.791172525],[-71.681007607,41.791146525],[-71.680695607,41.791142525],[-71.680466607,41.791134525],[-71.680267607,41.791138525],[-71.680130607,41.791153525],[-71.679848607,41.791195525],[-71.679703607,41.791207525],[-71.679504606,41.791211525],[-71.679542606,41.791399525],[-71.679749607,41.792604525],[-71.679916607,41.793574526],[-71.679969608,41.793845526],[-71.679978607,41.793866526],[-71.680137607,41.795070526],[-71.680138607,41.795163526],[-71.681002608,41.799997526],[-71.681110608,41.800648527],[-71.682663608,41.808957529]]]]}}"}, +{"type": "precinct", "typeId": 1202, "areaId": 25776, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":115,\"NAME\":\"1202\",\"SHAPE_Length\":0.37010803301006,\"SHAPE_Area\":-0.0070559004006137},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.679504606,41.791211525],[-71.679703607,41.791207525],[-71.679848607,41.791195525],[-71.680130607,41.791153525],[-71.680267607,41.791138525],[-71.680466607,41.791134525],[-71.680695607,41.791142525],[-71.681007607,41.791146525],[-71.681496607,41.791172525],[-71.681816608,41.791203525],[-71.682376608,41.791270525],[-71.682436608,41.791277525],[-71.682549608,41.791291525],[-71.682648608,41.791283525],[-71.682938608,41.791245525],[-71.683327608,41.791172525],[-71.683876608,41.791092525],[-71.684013608,41.791058525],[-71.684120609,41.791043524],[-71.684196609,41.791043524],[-71.684319609,41.791054525],[-71.684486609,41.791096525],[-71.685432608,41.791359525],[-71.685532609,41.791394525],[-71.685677609,41.791436525],[-71.685989609,41.791504525],[-71.686729609,41.791645525],[-71.687157609,41.791748525],[-71.68768361,41.791840525],[-71.68803461,41.791890525],[-71.68823261,41.791943525],[-71.688591609,41.792015525],[-71.689682611,41.792485525],[-71.68984261,41.792530525],[-71.69036961,41.792633525],[-71.690811611,41.792687525],[-71.69097161,41.792687525],[-71.691162611,41.792656525],[-71.691338611,41.792611525],[-71.691528611,41.792569525],[-71.691902611,41.792504525],[-71.691736824,41.793586826],[-71.69630539,41.794824146],[-71.696579613,41.793766525],[-71.696655613,41.793808525],[-71.696732613,41.793827525],[-71.697289612,41.793896525],[-71.697517613,41.793938525],[-71.697808613,41.793967525],[-71.697986613,41.793947525],[-71.698220613,41.793928525],[-71.699028613,41.793881525],[-71.699928614,41.793858525],[-71.700920614,41.793827525],[-71.700835886,41.796042431],[-71.70272042,41.795890145],[-71.702911615,41.793927525],[-71.703075615,41.793915525],[-71.703125615,41.793911525],[-71.703560615,41.793866525],[-71.703781615,41.793827525],[-71.703979615,41.793778525],[-71.704178615,41.793721525],[-71.70466206,41.794652825],[-71.709221617,41.793506524],[-71.709263616,41.793450525],[-71.709296617,41.793408524],[-71.709307617,41.793352525],[-71.709297617,41.793291524],[-71.709260617,41.793234524],[-71.709233617,41.793159525],[-71.709211617,41.793099525],[-71.709212617,41.793051525],[-71.709207616,41.793003525],[-71.709179617,41.792939524],[-71.709153617,41.792892525],[-71.709144617,41.792846524],[-71.709145617,41.792800524],[-71.709164617,41.792732525],[-71.709184617,41.792661525],[-71.709193617,41.792616525],[-71.709212617,41.792534524],[-71.709222617,41.792486524],[-71.709233617,41.792403525],[-71.709249616,41.792331524],[-71.709252617,41.792275524],[-71.709247616,41.792196524],[-71.709238617,41.792127524],[-71.709274617,41.792088524],[-71.709331617,41.791951524],[-71.709381616,41.791832524],[-71.709534617,41.791237525],[-71.709618616,41.790802524],[-71.710785843,41.790893276],[-71.716782087,41.790455455],[-71.716696239,41.789436487],[-71.717445619,41.789360524],[-71.71795762,41.789303524],[-71.71911662,41.789151524],[-71.71987962,41.789082523],[-71.72045162,41.789063523],[-71.72049062,41.789059523],[-71.72138262,41.789051524],[-71.721466621,41.789242524],[-71.72149762,41.789292523],[-71.72157362,41.789437524],[-71.72172562,41.789688524],[-71.72188662,41.789898523],[-71.727756165,41.789161027],[-71.727600622,41.788231523],[-71.727821623,41.788224523],[-71.727961623,41.788227523],[-71.728134623,41.788235523],[-71.728577623,41.788285523],[-71.729051623,41.788345523],[-71.729240623,41.788369523],[-71.729393623,41.788411523],[-71.729889623,41.788563523],[-71.730194623,41.788651523],[-71.730595624,41.788777523],[-71.730690624,41.788807523],[-71.730759623,41.788834523],[-71.731156591,41.788961126],[-71.730644831,41.790131848],[-71.731263491,41.79047449],[-71.731950852,41.78923458],[-71.732010624,41.789257523],[-71.732201624,41.789322523],[-71.732407624,41.789399523],[-71.732765624,41.789517523],[-71.732948624,41.789563523],[-71.733210625,41.789604523],[-71.733284625,41.789616523],[-71.733475624,41.789627523],[-71.733765624,41.789635523],[-71.7341622,41.78961927],[-71.734175952,41.79020799],[-71.735146772,41.790198472],[-71.735154201,41.789559506],[-71.736252626,41.789482523],[-71.736755626,41.789437523],[-71.736839625,41.789428523],[-71.737175625,41.789391523],[-71.737579625,41.789326523],[-71.737923626,41.789276523],[-71.738190626,41.789215523],[-71.738373626,41.789162523],[-71.738541626,41.789101523],[-71.738594626,41.789070523],[-71.738678626,41.789021523],[-71.738769626,41.788956522],[-71.738488626,41.789941523],[-71.741264627,41.788342523],[-71.741257627,41.787972523],[-71.741234627,41.787789522],[-71.741177627,41.787633522],[-71.741195627,41.787568523],[-71.742050627,41.787117523],[-71.742241627,41.787045522],[-71.742493627,41.786972522],[-71.742981627,41.786854522],[-71.743313086,41.7876001],[-71.743750906,41.787343118],[-71.743469627,41.786721522],[-71.743581628,41.786696522],[-71.744156628,41.786568522],[-71.744759628,41.786412522],[-71.745781628,41.786179522],[-71.746137629,41.786083522],[-71.746190628,41.786144522],[-71.746290629,41.786226522],[-71.746321628,41.786278522],[-71.746366629,41.786326522],[-71.746418628,41.786369522],[-71.746434628,41.786426522],[-71.746482629,41.786559522],[-71.746500872,41.786585994],[-71.753171631,41.784860522],[-71.756785632,41.783355521],[-71.759811632,41.782049521],[-71.762085633,41.781075521],[-71.764498634,41.78054052],[-71.767701299,41.781152552],[-71.772457637,41.77860752],[-71.778819639,41.776876519],[-71.785757382,41.773121185],[-71.78536264,41.772648518],[-71.785294641,41.772580518],[-71.785217641,41.772484518],[-71.785492641,41.772358519],[-71.785912641,41.772202519],[-71.786362641,41.772046518],[-71.786557641,41.771970519],[-71.786835641,41.771862518],[-71.787209641,41.771725518],[-71.787598641,41.771572518],[-71.787838641,41.771471518],[-71.787987642,41.771408518],[-71.788506641,41.771202518],[-71.788599641,41.771163518],[-71.788895641,41.771038518],[-71.789764642,41.770691518],[-71.790262642,41.770507518],[-71.791066642,41.770188518],[-71.790647641,41.753874514],[-71.790633641,41.753338514],[-71.790599212,41.751938299],[-71.790527156,41.750109997],[-71.790506327,41.749650054],[-71.790327641,41.747891513],[-71.790323641,41.747800513],[-71.79031464,41.747560513],[-71.79019564,41.744417512],[-71.790150641,41.743253512],[-71.790134641,41.742821512],[-71.79011764,41.742358512],[-71.79007064,41.742289512],[-71.79008964,41.740999512],[-71.790094641,41.740640512],[-71.79007164,41.740168512],[-71.790055641,41.739792512],[-71.79001664,41.738884511],[-71.789902639,41.735722511],[-71.78987164,41.734747511],[-71.78986164,41.734436511],[-71.789768639,41.73156451],[-71.789729639,41.727471509],[-71.789711639,41.727262509],[-71.789709639,41.726700509],[-71.78970364,41.724571509],[-71.789642639,41.724583508],[-71.789520639,41.724594509],[-71.786736638,41.724697509],[-71.782539637,41.724849509],[-71.782226637,41.724861509],[-71.780449636,41.724910509],[-71.777031635,41.725004509],[-71.774944634,41.725057509],[-71.769778632,41.725189509],[-71.768562633,41.725245509],[-71.768379632,41.725247509],[-71.767260632,41.72526251],[-71.76177263,41.72543451],[-71.76075663,41.72545351],[-71.75896963,41.72550151],[-71.758435629,41.72550851],[-71.757879629,41.72552051],[-71.757782629,41.72552451],[-71.754574628,41.72560851],[-71.754346628,41.725614511],[-71.754301628,41.72558951],[-71.754031628,41.72556151],[-71.753749627,41.72556651],[-71.753473627,41.72557751],[-71.753394628,41.72558951],[-71.753247627,41.72562951],[-71.753176628,41.72564851],[-71.753098628,41.72566751],[-71.753030627,41.72566951],[-71.750851627,41.72573451],[-71.749049626,41.725750511],[-71.748054625,41.72578351],[-71.739508623,41.725978511],[-71.728340619,41.726135511],[-71.720100617,41.726307511],[-71.719574617,41.726320511],[-71.718285616,41.726347511],[-71.713107614,41.726466512],[-71.713058614,41.726507512],[-71.709737613,41.726536511],[-71.706096612,41.726612511],[-71.700954611,41.726730512],[-71.70058461,41.726739512],[-71.696541609,41.726829512],[-71.686670606,41.727048512],[-71.685104605,41.727082512],[-71.684517605,41.727094513],[-71.679703603,41.727192513],[-71.673166601,41.727324513],[-71.6716846,41.727375513],[-71.6702646,41.727422513],[-71.6684346,41.727484513],[-71.667802599,41.727490513],[-71.6693846,41.733929514],[-71.670802602,41.739703515],[-71.672279602,41.747475517],[-71.672195602,41.747769516],[-71.672195602,41.747918517],[-71.672218602,41.748310517],[-71.672302602,41.748749517],[-71.672523602,41.749813518],[-71.672562602,41.749977517],[-71.672951602,41.752030518],[-71.673065603,41.752808518],[-71.673225602,41.753975518],[-71.673347603,41.754905519],[-71.673355603,41.754963519],[-71.673424603,41.755402518],[-71.673456603,41.755681519],[-71.673470603,41.755803519],[-71.673729603,41.756768519],[-71.673767603,41.757027519],[-71.673782603,41.757275519],[-71.673752603,41.757420519],[-71.673698603,41.757550519],[-71.673630603,41.757656518],[-71.675894605,41.770370522],[-71.675898604,41.770394521],[-71.676197605,41.772218522],[-71.676499605,41.774041522],[-71.676680605,41.775122522],[-71.676725605,41.775415522],[-71.676788605,41.775824522],[-71.676866605,41.776184522],[-71.676912605,41.776393523],[-71.677002606,41.777017523],[-71.677106605,41.777589522],[-71.677296606,41.778413523],[-71.677397605,41.779154523],[-71.677531606,41.779911523],[-71.678029606,41.782560523],[-71.678209606,41.783573524],[-71.679504606,41.791211525]]]]}}"}, +{"type": "precinct", "typeId": 1301, "areaId": 25779, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":118,\"NAME\":\"1301\",\"SHAPE_Length\":0.43737739314507,\"SHAPE_Area\":-0.004875986104221},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.613284593,41.932544555],[-71.613315593,41.932597555],[-71.616144594,41.932498554],[-71.621564595,41.932510554],[-71.623389596,41.932514554],[-71.626109597,41.932401554],[-71.629021598,41.932281554],[-71.629311598,41.932281554],[-71.631696599,41.932289554],[-71.633854599,41.932289554],[-71.639304602,41.932287554],[-71.639353601,41.932304554],[-71.640716602,41.932260553],[-71.648079604,41.931972553],[-71.649513604,41.931929553],[-71.650025605,41.931921554],[-71.650835606,41.931902554],[-71.652653606,41.931856553],[-71.655388607,41.931814553],[-71.661730609,41.931718553],[-71.663134609,41.931705553],[-71.66675061,41.931672552],[-71.674145503,41.931608727],[-71.674742613,41.931603553],[-71.674778613,41.931603553],[-71.676138613,41.931566553],[-71.678490614,41.931551553],[-71.680002615,41.931545552],[-71.681976616,41.931363552],[-71.69805062,41.931103552],[-71.699319621,41.931083552],[-71.700519622,41.931051551],[-71.700485622,41.930951551],[-71.700478621,41.930916551],[-71.700424622,41.930771552],[-71.699921621,41.929165551],[-71.699692621,41.928494551],[-71.699333621,41.927384551],[-71.69889162,41.92607555],[-71.69887562,41.926041551],[-71.69854762,41.925072551],[-71.69789962,41.92320355],[-71.69747962,41.922036549],[-71.69706062,41.92097555],[-71.69690762,41.92060555],[-71.69677762,41.920266549],[-71.69666362,41.919995549],[-71.696587619,41.91974755],[-71.69636562,41.91974755],[-71.694557619,41.919720549],[-71.693977618,41.919697549],[-71.693642618,41.91967055],[-71.692772618,41.91958755],[-71.692291618,41.91954855],[-71.691841618,41.919506549],[-71.690392617,41.919384549],[-71.689873618,41.91933555],[-71.689293617,41.91927455],[-71.688866617,41.919209549],[-71.688499617,41.91914455],[-71.687775616,41.91900355],[-71.687698616,41.918980549],[-71.687175616,41.91887255],[-71.686264616,41.91867955],[-71.685822615,41.91859555],[-71.684798616,41.91838155],[-71.684250615,41.918274549],[-71.683701615,41.91815255],[-71.683441616,41.918099549],[-71.683296615,41.918057549],[-71.682899615,41.91795455],[-71.679947614,41.91709955],[-71.679581613,41.916985549],[-71.679314614,41.916916549],[-71.678375613,41.91663055],[-71.677940614,41.91651255],[-71.677513613,41.916401549],[-71.677246613,41.91634055],[-71.677109613,41.91631455],[-71.676666613,41.91621855],[-71.676613613,41.916211549],[-71.676216613,41.916130549],[-71.676048613,41.91610055],[-71.675888613,41.91606655],[-71.675461613,41.91598555],[-71.675323612,41.91596355],[-71.674385612,41.915787549],[-71.673454612,41.915623549],[-71.673325611,41.91559655],[-71.672951611,41.915528549],[-71.672333611,41.91540255],[-71.672066611,41.915337549],[-71.671953612,41.915312549],[-71.671722611,41.915261549],[-71.671623611,41.915234549],[-71.671486611,41.91518455],[-71.671410611,41.915135549],[-71.671303611,41.915039549],[-71.671043611,41.914772549],[-71.671028611,41.914753549],[-71.670952611,41.914685549],[-71.670876611,41.914597549],[-71.670609611,41.914326549],[-71.670547611,41.91427355],[-71.670403611,41.914124549],[-71.670173611,41.913907549],[-71.66979261,41.913548549],[-71.66965561,41.913430549],[-71.66942661,41.913205549],[-71.66936561,41.913136549],[-71.66925061,41.912957549],[-71.66915961,41.912770549],[-71.66901461,41.912384549],[-71.66899961,41.912342549],[-71.66899161,41.912300549],[-71.66878561,41.911702548],[-71.66861061,41.911148549],[-71.668312609,41.910302548],[-71.668274609,41.910176549],[-71.66824461,41.910094549],[-71.66822861,41.910050548],[-71.668137609,41.909756548],[-71.66808361,41.909607549],[-71.668037609,41.909459548],[-71.66783961,41.908909549],[-71.66780161,41.908783548],[-71.667595609,41.908207549],[-71.667572609,41.908177548],[-71.66754261,41.908112548],[-71.667503609,41.908055548],[-71.667458609,41.908001548],[-71.667397609,41.907948548],[-71.667412609,41.907849548],[-71.667412609,41.907818548],[-71.66742761,41.907753548],[-71.66742761,41.907715548],[-71.667419609,41.907673548],[-71.667419609,41.907631548],[-71.667404609,41.907547548],[-71.667374609,41.907463548],[-71.667328609,41.907307548],[-71.66731361,41.907235548],[-71.667290609,41.907162548],[-71.667229609,41.906910548],[-71.667152609,41.906514547],[-71.667137609,41.906376547],[-71.667137609,41.906056548],[-71.667168609,41.905747548],[-71.66723661,41.905487548],[-71.66731361,41.905281548],[-71.667358609,41.905178548],[-71.667435609,41.905022548],[-71.667480609,41.904942547],[-71.667519609,41.904858547],[-71.667618609,41.904686547],[-71.667709609,41.904488547],[-71.667763609,41.904393547],[-71.66780161,41.904305548],[-71.66793861,41.904042547],[-71.668102609,41.903749547],[-71.66812961,41.903691547],[-71.66816961,41.903621547],[-71.668182609,41.903599547],[-71.668236609,41.903492547],[-71.668297609,41.903389547],[-71.66840461,41.903180547],[-71.66869461,41.902710547],[-71.668785609,41.902577547],[-71.66910661,41.902077547],[-71.669350609,41.901715546],[-71.669479609,41.901490547],[-71.66977761,41.901020547],[-71.66999861,41.900643546],[-71.670029609,41.900582547],[-71.670143609,41.900315546],[-71.67016661,41.900242546],[-71.67016661,41.900208547],[-71.67017461,41.900181546],[-71.67017461,41.900120546],[-71.670181609,41.900059546],[-71.670181609,41.899953547],[-71.670181609,41.899845546],[-71.67015861,41.899643547],[-71.67011361,41.899529547],[-71.67008261,41.899472546],[-71.669991609,41.899224546],[-71.669579609,41.898278546],[-71.669464609,41.897995546],[-71.669060609,41.897095546],[-71.669037609,41.897026546],[-71.669006609,41.896958546],[-71.668976609,41.896828546],[-71.668968609,41.896725546],[-71.668968609,41.896649546],[-71.668976609,41.896595546],[-71.66899161,41.896542546],[-71.669014609,41.896382546],[-71.66912561,41.895958546],[-71.669319609,41.895226545],[-71.669449609,41.894665545],[-71.669571609,41.894318546],[-71.669617609,41.894200546],[-71.66967061,41.894085546],[-71.669754609,41.893883545],[-71.669785609,41.893792545],[-71.670067609,41.893189545],[-71.670418609,41.892418545],[-71.67068561,41.891816545],[-71.67117361,41.890740544],[-71.671219609,41.890580544],[-71.67123361,41.890507544],[-71.67124961,41.890347544],[-71.67124961,41.890171544],[-71.67123461,41.889977544],[-71.671143609,41.889492544],[-71.671043609,41.889065544],[-71.67099861,41.888836544],[-71.67086061,41.888199545],[-71.670845609,41.888073544],[-71.670830609,41.887818544],[-71.670830609,41.887661544],[-71.670845609,41.887509544],[-71.670845609,41.887440544],[-71.670876609,41.887139544],[-71.670929609,41.886757543],[-71.670944609,41.886478544],[-71.670944609,41.886242544],[-71.670937609,41.886120544],[-71.670937609,41.886002544],[-71.670731609,41.883538544],[-71.670708609,41.883145543],[-71.670647609,41.882416543],[-71.670647609,41.882260543],[-71.670654609,41.882103543],[-71.670677609,41.881951543],[-71.670708609,41.881840543],[-71.670746609,41.881729543],[-71.670799609,41.881623543],[-71.670898609,41.881466543],[-71.670952609,41.881390543],[-71.672234609,41.879387542],[-71.672546609,41.878872542],[-71.67289061,41.878331543],[-71.673599609,41.877179542],[-71.67364561,41.877083542],[-71.67366061,41.877034542],[-71.67368361,41.876992542],[-71.67375961,41.876774542],[-71.67380561,41.876515542],[-71.673828609,41.876305541],[-71.67395861,41.875378542],[-71.674065609,41.874737542],[-71.674179609,41.873970541],[-71.67422961,41.873677541],[-71.67429461,41.873291541],[-71.67439361,41.872620541],[-71.67446961,41.872052541],[-71.674534609,41.871653541],[-71.67463761,41.871025541],[-71.67467561,41.870722541],[-71.674690609,41.870602541],[-71.67475961,41.870171541],[-71.67482061,41.86971354],[-71.67495061,41.86890454],[-71.67503461,41.86831754],[-71.67530161,41.86662354],[-71.67556061,41.86499154],[-71.67569061,41.86405254],[-71.67589061,41.862753539],[-71.676018609,41.861920539],[-71.67612561,41.861191538],[-71.67621661,41.860531538],[-71.67653761,41.858448538],[-71.676682609,41.857567538],[-71.67670961,41.857373538],[-71.676796609,41.856743538],[-71.67680461,41.856685538],[-71.675355609,41.856702538],[-71.671936608,41.856732538],[-71.669983608,41.856728538],[-71.659245604,41.857024538],[-71.658738603,41.857037538],[-71.650229601,41.857261539],[-71.650001601,41.857273538],[-71.649918601,41.857271538],[-71.649752601,41.857258539],[-71.649189601,41.857302539],[-71.648920601,41.857297539],[-71.645788599,41.857350539],[-71.638451597,41.857435539],[-71.631813595,41.85751854],[-71.628327594,41.85754054],[-71.626662593,41.857566539],[-71.625756593,41.85747954],[-71.624508593,41.857354539],[-71.623267592,41.857271539],[-71.622309592,41.85720654],[-71.621092592,41.857253539],[-71.618303591,41.85738154],[-71.613846589,41.85757954],[-71.613108589,41.85760754],[-71.611368588,41.85766454],[-71.611174588,41.85766454],[-71.610745588,41.85766854],[-71.609686588,41.857699541],[-71.609331588,41.85770954],[-71.605364586,41.85780554],[-71.605339586,41.85786154],[-71.605278587,41.85796454],[-71.605255586,41.858006541],[-71.605156586,41.85804054],[-71.604996586,41.858048541],[-71.605011586,41.858261541],[-71.604996586,41.85846054],[-71.604912586,41.859002541],[-71.604782586,41.859681541],[-71.604691586,41.859997541],[-71.604490586,41.860545541],[-71.604401586,41.860814541],[-71.604279586,41.861119541],[-71.604179586,41.861309541],[-71.604126586,41.861424541],[-71.603836586,41.861912541],[-71.603676586,41.862152541],[-71.603607586,41.862282542],[-71.603539586,41.862435542],[-71.603493586,41.862572542],[-71.603477586,41.862732541],[-71.603500586,41.863079542],[-71.603539586,41.863243541],[-71.603622586,41.863457541],[-71.603699586,41.863583542],[-71.603821586,41.863736542],[-71.603973586,41.863892542],[-71.604172586,41.864079541],[-71.604370586,41.864273541],[-71.604416586,41.864323542],[-71.604729587,41.864613542],[-71.605392587,41.865273542],[-71.605858587,41.865719542],[-71.606125587,41.866001542],[-71.606156587,41.866043542],[-71.606369587,41.866333542],[-71.606476587,41.866551542],[-71.606537587,41.866707542],[-71.606590587,41.866860542],[-71.606667587,41.867112542],[-71.606789587,41.867577542],[-71.606827587,41.867783542],[-71.606850587,41.867958542],[-71.606857588,41.868164542],[-71.606850587,41.868855542],[-71.606843587,41.868956542],[-71.606827587,41.869244543],[-71.606789587,41.869439543],[-71.606728587,41.869660542],[-71.606644588,41.869851542],[-71.606499587,41.870098543],[-71.606354587,41.870312543],[-71.606239587,41.870446543],[-71.606163587,41.870541543],[-71.605988587,41.870713543],[-71.605057587,41.871544543],[-71.604401587,41.872147543],[-71.604004587,41.872528543],[-71.603683586,41.872857543],[-71.603111587,41.873425543],[-71.602776586,41.873745544],[-71.602966586,41.873845544],[-71.603111587,41.873913543],[-71.603394586,41.874031543],[-71.603813587,41.874215544],[-71.604164587,41.874333544],[-71.604515587,41.874428544],[-71.604805587,41.874489544],[-71.605103587,41.874535543],[-71.605568587,41.874573543],[-71.605965587,41.874600544],[-71.607109588,41.874653543],[-71.608109588,41.874699544],[-71.608467588,41.874722544],[-71.608727589,41.874756544],[-71.609032588,41.874825543],[-71.609825588,41.874970544],[-71.610573589,41.875119543],[-71.610855589,41.875164544],[-71.611153589,41.875199543],[-71.611618589,41.875241543],[-71.611961589,41.875252543],[-71.612282589,41.875256543],[-71.61249559,41.875256543],[-71.61299959,41.875294543],[-71.61327059,41.875351543],[-71.61412059,41.875531543],[-71.61447959,41.875599544],[-71.614754591,41.875668543],[-71.61513559,41.875737544],[-71.61538759,41.875763543],[-71.615685591,41.875775544],[-71.615997591,41.875771544],[-71.616287591,41.875779543],[-71.616485591,41.875790544],[-71.616615591,41.875798543],[-71.616951591,41.875843543],[-71.617287591,41.875912544],[-71.617645591,41.876023544],[-71.618027592,41.876164544],[-71.618347591,41.876305543],[-71.618477592,41.876374544],[-71.618629592,41.876461543],[-71.618843592,41.876625543],[-71.619026592,41.876778543],[-71.619392592,41.877148543],[-71.619461592,41.877232544],[-71.619576592,41.877354544],[-71.619820592,41.877591543],[-71.619965592,41.877785544],[-71.620043592,41.877859544],[-71.620102592,41.877915544],[-71.620239592,41.878056544],[-71.620377592,41.878178543],[-71.620544593,41.878281544],[-71.620689592,41.878350544],[-71.620827592,41.878407544],[-71.621040592,41.878468544],[-71.622101593,41.878688544],[-71.623535593,41.878975544],[-71.623873593,41.879031544],[-71.624321594,41.879105544],[-71.624840593,41.879185544],[-71.625252594,41.879242544],[-71.626137594,41.879349543],[-71.626434595,41.879380544],[-71.626762594,41.879406543],[-71.627815595,41.879502544],[-71.628380595,41.879547544],[-71.628784595,41.879586544],[-71.629819595,41.879673544],[-71.630196596,41.879708544],[-71.630562596,41.879727544],[-71.631325596,41.879738543],[-71.631622596,41.879746544],[-71.632523597,41.879757543],[-71.632607596,41.879761543],[-71.632881596,41.879750544],[-71.633080597,41.879723544],[-71.633263597,41.879685544],[-71.633446596,41.879639543],[-71.633537597,41.879620543],[-71.633713596,41.879574544],[-71.633838597,41.879527543],[-71.634254597,41.879349543],[-71.634705597,41.879139543],[-71.634796597,41.879113543],[-71.634903597,41.879074543],[-71.635101597,41.879021543],[-71.635292598,41.878983543],[-71.635460597,41.878960543],[-71.635544598,41.878952544],[-71.635826597,41.878941543],[-71.636169598,41.878956543],[-71.636803598,41.879010544],[-71.637329598,41.879048544],[-71.637894598,41.879097543],[-71.638176598,41.879116543],[-71.638321598,41.879120543],[-71.638481598,41.879116543],[-71.638924598,41.879086544],[-71.639183598,41.879063543],[-71.639510598,41.879029544],[-71.639824599,41.878998543],[-71.640709599,41.878884543],[-71.640732599,41.879067543],[-71.640778599,41.879200543],[-71.640839599,41.879322544],[-71.640915599,41.879429543],[-71.641098599,41.879551543],[-71.641983599,41.880223544],[-71.642433599,41.880547544],[-71.6424876,41.880581543],[-71.6427156,41.880772543],[-71.6428766,41.880936544],[-71.643036599,41.881146543],[-71.6431666,41.881352544],[-71.6440966,41.882954544],[-71.6442346,41.883175544],[-71.6443106,41.883282544],[-71.6448756,41.883969544],[-71.6453176,41.884537544],[-71.646530601,41.886292544],[-71.646950602,41.886929545],[-71.647125602,41.887150544],[-71.647278602,41.887310545],[-71.647621601,41.887650545],[-71.645523601,41.888375545],[-71.6440516,41.888871545],[-71.643402601,41.889099545],[-71.643341601,41.889115546],[-71.6432116,41.889126545],[-71.6430286,41.889126545],[-71.6424566,41.889092545],[-71.6420756,41.889038546],[-71.6418176,41.889028545],[-71.6413736,41.889012545],[-71.640854599,41.888947545],[-71.640587599,41.888893545],[-71.639984599,41.888779545],[-71.639862599,41.888760545],[-71.639313599,41.888653545],[-71.639160599,41.888630545],[-71.639084599,41.888626546],[-71.639008599,41.888634545],[-71.638786599,41.888691545],[-71.638718599,41.888714545],[-71.638573599,41.888771545],[-71.638329599,41.888886545],[-71.638168599,41.888977546],[-71.637962599,41.889115546],[-71.637505598,41.889473545],[-71.636910599,41.889962545],[-71.636566598,41.890244546],[-71.636398598,41.890374546],[-71.636238598,41.890507545],[-71.635834598,41.890820546],[-71.635719598,41.890915546],[-71.635353598,41.891194546],[-71.634605598,41.891747546],[-71.634453598,41.891865546],[-71.634270598,41.891953546],[-71.634186597,41.891983546],[-71.634026597,41.892029546],[-71.633926598,41.892048546],[-71.633720597,41.892079546],[-71.632675597,41.892331546],[-71.632385597,41.892430547],[-71.631966597,41.892514546],[-71.631638597,41.892556546],[-71.631256596,41.892632546],[-71.630913596,41.892716546],[-71.630196596,41.892842546],[-71.629921596,41.892903546],[-71.629601596,41.892937547],[-71.629257596,41.892990546],[-71.629044596,41.893029546],[-71.628853596,41.893109547],[-71.628677596,41.893193546],[-71.628441596,41.893338546],[-71.628189596,41.893525546],[-71.627777596,41.893799546],[-71.627571595,41.893906547],[-71.626450595,41.894425546],[-71.626183595,41.894543547],[-71.626091595,41.894627547],[-71.626076595,41.894749547],[-71.625847595,41.894684547],[-71.625473595,41.894627547],[-71.625168595,41.894612547],[-71.624893595,41.894623547],[-71.624596595,41.894658547],[-71.624100594,41.894753546],[-71.624019595,41.894770547],[-71.623138594,41.894955547],[-71.622437594,41.895111547],[-71.621788594,41.895241547],[-71.621040593,41.895409547],[-71.620262593,41.895562547],[-71.619659593,41.895687548],[-71.619255593,41.895775547],[-71.618118592,41.896012547],[-71.618077592,41.896020547],[-71.617676593,41.896099547],[-71.617470592,41.896145547],[-71.617218592,41.896187547],[-71.616943592,41.896225547],[-71.616661592,41.896241547],[-71.616447592,41.896237547],[-71.616142591,41.896214548],[-71.615837592,41.896172548],[-71.615211591,41.896019548],[-71.614830592,41.895916548],[-71.614265591,41.895749547],[-71.613937592,41.895642547],[-71.613663591,41.895545547],[-71.613571591,41.895512548],[-71.612724591,41.895142548],[-71.61139759,41.894493547],[-71.61006959,41.893853547],[-71.60952859,41.893601547],[-71.60907759,41.893383547],[-71.608696589,41.893368547],[-71.608330589,41.893341547],[-71.608174589,41.893311547],[-71.607971589,41.893273547],[-71.607651589,41.893185547],[-71.607368588,41.893376547],[-71.607025589,41.893631547],[-71.606667588,41.893917547],[-71.606255588,41.894215547],[-71.605453589,41.894761547],[-71.605095588,41.895012547],[-71.604782588,41.895241547],[-71.604401588,41.895504548],[-71.604240588,41.895638548],[-71.603889588,41.895955548],[-71.603783588,41.896038548],[-71.603058587,41.896424548],[-71.602666588,41.896619548],[-71.602623588,41.896641548],[-71.602587588,41.896658548],[-71.602074587,41.896897548],[-71.601624587,41.897065548],[-71.601265587,41.897210548],[-71.599968587,41.897690548],[-71.599510586,41.897854548],[-71.599259586,41.897949549],[-71.599136587,41.897995548],[-71.598831586,41.898102549],[-71.598564586,41.898201549],[-71.598442586,41.898266548],[-71.598358586,41.898320549],[-71.598228586,41.898461548],[-71.597992586,41.898842549],[-71.597893586,41.898983549],[-71.597771586,41.899117549],[-71.597565586,41.899323548],[-71.597305586,41.899552548],[-71.596992585,41.899838549],[-71.596756586,41.900063549],[-71.596573586,41.900269549],[-71.596558586,41.900292548],[-71.596390585,41.900475549],[-71.595802585,41.901287549],[-71.595688585,41.901463549],[-71.595589585,41.901596549],[-71.595474585,41.901669549],[-71.595184585,41.901791549],[-71.594917585,41.901860549],[-71.594184585,41.902001549],[-71.593498585,41.902134549],[-71.593124585,41.902214549],[-71.592720585,41.902310549],[-71.592140584,41.902436549],[-71.591797584,41.902520549],[-71.590981584,41.902733549],[-71.590935584,41.90274455],[-71.590591584,41.90282555],[-71.590355584,41.902886549],[-71.589966584,41.90297455],[-71.589165584,41.903180549],[-71.588791583,41.90326755],[-71.588188583,41.903397549],[-71.588364583,41.90371455],[-71.588547584,41.90398855],[-71.588722584,41.90427455],[-71.588749583,41.90430855],[-71.588890583,41.904484549],[-71.589081583,41.90469055],[-71.589264584,41.90490455],[-71.589470583,41.90509155],[-71.589630584,41.90520555],[-71.589874583,41.90536555],[-71.590096584,41.90549955],[-71.590248584,41.90562155],[-71.590477584,41.90592655],[-71.590775584,41.90637255],[-71.590935584,41.90658655],[-71.590958584,41.90662455],[-71.591080585,41.90678155],[-71.591209584,41.90698755],[-71.591370585,41.90720455],[-71.591553584,41.90741855],[-71.591759585,41.907677551],[-71.591802585,41.907719551],[-71.592239585,41.90815055],[-71.592491585,41.90837155],[-71.593338585,41.909039551],[-71.593651585,41.909279551],[-71.593857585,41.909451551],[-71.594124586,41.909684551],[-71.594429586,41.909932551],[-71.594788585,41.910214551],[-71.594940586,41.910324551],[-71.595146586,41.910481551],[-71.595200585,41.910527551],[-71.595451585,41.910714551],[-71.595726586,41.910912551],[-71.596008586,41.911137551],[-71.596336586,41.911374551],[-71.596642586,41.911610551],[-71.596976586,41.911861551],[-71.597260587,41.912075551],[-71.597542586,41.912293551],[-71.598129587,41.912735551],[-71.598694587,41.913205551],[-71.599281587,41.913628552],[-71.599808587,41.914025551],[-71.600052588,41.914219551],[-71.600243588,41.914387552],[-71.600624588,41.914757552],[-71.600731588,41.914841551],[-71.600807588,41.914891552],[-71.600922588,41.915108552],[-71.601410588,41.915497552],[-71.601570588,41.915673552],[-71.601776588,41.915863552],[-71.601959589,41.916066552],[-71.602097589,41.916256552],[-71.602234589,41.916500551],[-71.602341588,41.916676551],[-71.602516588,41.916855552],[-71.603096588,41.917355551],[-71.603180589,41.917435552],[-71.603340589,41.917572552],[-71.603600589,41.917820552],[-71.603790589,41.918023552],[-71.603981589,41.918202552],[-71.604149589,41.918385552],[-71.604332589,41.918553552],[-71.604546589,41.918793552],[-71.60471359,41.918991552],[-71.604935589,41.919266552],[-71.60505759,41.919453552],[-71.605209589,41.919663552],[-71.60542359,41.919945553],[-71.60564459,41.920212552],[-71.60579759,41.920411553],[-71.605904589,41.920628553],[-71.60596559,41.920800553],[-71.60601859,41.921269553],[-71.60605659,41.921437552],[-71.60616359,41.921742553],[-71.60640759,41.922360553],[-71.606506591,41.922551553],[-71.60660659,41.922692553],[-71.606819591,41.922882553],[-71.607033591,41.923092553],[-71.60744559,41.923603553],[-71.607635591,41.923874553],[-71.607864591,41.924157553],[-71.60799459,41.924305553],[-71.608192591,41.924473553],[-71.608452591,41.924675553],[-71.608833591,41.924946553],[-71.608986591,41.925015553],[-71.609154591,41.925104553],[-71.609268591,41.925164553],[-71.609535591,41.925290554],[-71.609787591,41.925438553],[-71.610054592,41.925572553],[-71.610222591,41.925648553],[-71.610367592,41.925675553],[-71.610504592,41.925682553],[-71.610748592,41.925667553],[-71.611061592,41.925629553],[-71.611319592,41.925611553],[-71.611316592,41.925669553],[-71.611406592,41.925677553],[-71.611495592,41.925718554],[-71.611474592,41.925777554],[-71.611399592,41.925790553],[-71.611325592,41.925819553],[-71.611287591,41.925871553],[-71.611286592,41.926090554],[-71.611278592,41.926154553],[-71.611282592,41.926210553],[-71.611327592,41.926255553],[-71.611393592,41.926292553],[-71.611456592,41.926335553],[-71.611485592,41.926387553],[-71.611492592,41.926452553],[-71.611453592,41.926527553],[-71.611405592,41.926568553],[-71.611324592,41.926544553],[-71.611246592,41.926541553],[-71.611178592,41.926562553],[-71.611143592,41.926611554],[-71.611176592,41.926665553],[-71.611170592,41.926722553],[-71.611173592,41.926787554],[-71.611166592,41.926842553],[-71.611135592,41.926895553],[-71.611148592,41.926951553],[-71.611259592,41.926995553],[-71.611276592,41.927048553],[-71.611315592,41.927113553],[-71.611383592,41.927212553],[-71.611357592,41.927276554],[-71.611352592,41.927331554],[-71.611457592,41.927362553],[-71.611522592,41.927390554],[-71.611593592,41.927407554],[-71.611632592,41.927455554],[-71.611655592,41.927512554],[-71.611815592,41.927566554],[-71.611838592,41.927585554],[-71.611821592,41.927640553],[-71.611807592,41.927766554],[-71.611776592,41.927808553],[-71.611851593,41.927859554],[-71.611838592,41.927909553],[-71.611812593,41.927968553],[-71.611817592,41.928039554],[-71.611915592,41.928081553],[-71.611967593,41.928043553],[-71.612014592,41.928031554],[-71.612097592,41.928041554],[-71.612105593,41.928101553],[-71.612146592,41.928230554],[-71.612152592,41.928297553],[-71.612202593,41.928420554],[-71.612214592,41.928492553],[-71.612301592,41.928498554],[-71.612311592,41.928557554],[-71.612313593,41.928689553],[-71.612342592,41.928739554],[-71.612400592,41.928796554],[-71.612461592,41.928846554],[-71.612506593,41.928902553],[-71.612529593,41.928955554],[-71.612530593,41.929098554],[-71.612549593,41.929151554],[-71.612559592,41.929221554],[-71.612556592,41.929351554],[-71.612539592,41.929408554],[-71.612546593,41.929562554],[-71.612583593,41.929614554],[-71.612644593,41.929664554],[-71.612682593,41.929678554],[-71.612752592,41.929651554],[-71.612902593,41.929657554],[-71.613010593,41.929724554],[-71.613165593,41.929771554],[-71.613245593,41.929689554],[-71.613277592,41.929713554],[-71.613293593,41.929778554],[-71.613320593,41.929812554],[-71.613455593,41.929826554],[-71.613627592,41.929855554],[-71.613674593,41.929835554],[-71.613731593,41.929836554],[-71.613760593,41.929888554],[-71.613792593,41.929989554],[-71.613842593,41.929989554],[-71.613883593,41.929994554],[-71.613871593,41.930053554],[-71.613840593,41.930110554],[-71.613581593,41.930433554],[-71.613521593,41.930485554],[-71.613049593,41.931079554],[-71.612954593,41.931247554],[-71.612948592,41.931265554],[-71.612929593,41.931390554],[-71.612936593,41.931557554],[-71.612946592,41.931645555],[-71.612990593,41.931766555],[-71.613067593,41.932006554],[-71.613177593,41.932192555],[-71.613223593,41.932258554],[-71.613282593,41.932493554],[-71.613284593,41.932544555]]]]}}"}, +{"type": "precinct", "typeId": 1302, "areaId": 25777, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":116,\"NAME\":\"1302\",\"SHAPE_Length\":0.37551964125839,\"SHAPE_Area\":-0.0078982121862384},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.696587619,41.91974755],[-71.697136619,41.91975155],[-71.69744162,41.919743549],[-71.69766962,41.91972855],[-71.69809762,41.919678549],[-71.69829662,41.919648549],[-71.69870062,41.91955655],[-71.69892962,41.919491549],[-71.69921162,41.91940055],[-71.69941762,41.919327549],[-71.700981621,41.918717549],[-71.701233621,41.918629549],[-71.701393621,41.918564549],[-71.701790621,41.918427549],[-71.702194621,41.918297549],[-71.702766622,41.918152549],[-71.702950621,41.918114549],[-71.703171622,41.918076549],[-71.703354621,41.918049549],[-71.703461622,41.918038549],[-71.703598622,41.918015549],[-71.703758622,41.917996549],[-71.703903622,41.917984549],[-71.704071622,41.917965549],[-71.704391622,41.917954549],[-71.704544622,41.917942549],[-71.704796623,41.917935549],[-71.705048623,41.917939549],[-71.705674622,41.917968549],[-71.705780622,41.917977549],[-71.706062623,41.918011549],[-71.706223622,41.918034549],[-71.707031623,41.918190549],[-71.707161623,41.918236549],[-71.707283623,41.918267549],[-71.707603623,41.918366549],[-71.707970623,41.918488549],[-71.708130624,41.918545548],[-71.708694624,41.918763549],[-71.708817623,41.918805549],[-71.708923624,41.918850549],[-71.709259624,41.918969549],[-71.709396624,41.919033549],[-71.710091624,41.919281549],[-71.710167624,41.919312549],[-71.710762624,41.919533549],[-71.712364624,41.920124549],[-71.713127625,41.920411549],[-71.713417625,41.920517549],[-71.713537625,41.920565549],[-71.713753625,41.920639549],[-71.713951625,41.920700549],[-71.714211626,41.920773549],[-71.714439625,41.920823549],[-71.714684625,41.92086455],[-71.714867625,41.92088455],[-71.715149626,41.92088455],[-71.715424626,41.920872549],[-71.715630626,41.920842549],[-71.715790626,41.920823549],[-71.716080626,41.920746549],[-71.717545627,41.920292549],[-71.717773626,41.920227549],[-71.718170627,41.920136549],[-71.718369627,41.920102549],[-71.718559627,41.920075549],[-71.718758627,41.920052549],[-71.718964627,41.920033549],[-71.719353627,41.920021549],[-71.719536627,41.920021549],[-71.720001627,41.920048548],[-71.720100627,41.920060549],[-71.720322627,41.920079549],[-71.721127627,41.920168549],[-71.721420628,41.920201549],[-71.722321628,41.920311549],[-71.722626628,41.920342548],[-71.724586629,41.920582549],[-71.725822629,41.920716549],[-71.726448629,41.920761549],[-71.726639629,41.920765549],[-71.72698263,41.920758549],[-71.727463629,41.920735549],[-71.72773063,41.920716549],[-71.72795963,41.920704549],[-71.72931763,41.920613548],[-71.73067563,41.920540548],[-71.730759631,41.920533549],[-71.73116363,41.920536548],[-71.731468631,41.920544549],[-71.731590631,41.920555548],[-71.732185631,41.920636548],[-71.733490632,41.920903549],[-71.734024632,41.921002548],[-71.734482632,41.921067548],[-71.734634632,41.921078549],[-71.734887633,41.921104548],[-71.735413633,41.921135549],[-71.735657632,41.921139548],[-71.736115633,41.921128548],[-71.736237632,41.921128548],[-71.737099633,41.921067548],[-71.737274633,41.921059549],[-71.737587633,41.921040549],[-71.737706633,41.921037549],[-71.737885633,41.921032548],[-71.737938633,41.921033549],[-71.738182634,41.921040549],[-71.738281633,41.921044548],[-71.738701633,41.921078549],[-71.739136634,41.921135549],[-71.739693634,41.921235549],[-71.741272634,41.921574548],[-71.741570634,41.921627548],[-71.741867635,41.921669548],[-71.742012634,41.921685548],[-71.742157635,41.921696549],[-71.742409635,41.921704548],[-71.742691634,41.921704548],[-71.742989635,41.921692548],[-71.743141635,41.921677549],[-71.743393635,41.921640549],[-71.743431635,41.921635548],[-71.743553635,41.921612548],[-71.743797635,41.921555548],[-71.744217635,41.921475548],[-71.745491636,41.921200548],[-71.746124636,41.921067548],[-71.746574636,41.920967548],[-71.746902636,41.920910548],[-71.747261636,41.920853548],[-71.749519637,41.920517548],[-71.750748637,41.920342548],[-71.751976637,41.920159548],[-71.752419638,41.920098548],[-71.752853638,41.920025548],[-71.753105638,41.919999548],[-71.753593638,41.919922548],[-71.754082638,41.919854547],[-71.754463639,41.919796547],[-71.754730639,41.919770548],[-71.754807639,41.919762548],[-71.755043639,41.919747548],[-71.755173638,41.919728548],[-71.755539639,41.919693548],[-71.755905639,41.919678547],[-71.756287639,41.919651548],[-71.756653639,41.919629548],[-71.756828639,41.919613548],[-71.757088639,41.919598547],[-71.75733264,41.919579547],[-71.75791264,41.919495548],[-71.758217639,41.919442547],[-71.75884264,41.919293547],[-71.75898764,41.919247547],[-71.75936964,41.919136547],[-71.75965164,41.919026548],[-71.75993364,41.918908547],[-71.76020864,41.918801547],[-71.760468641,41.918667547],[-71.760666641,41.918557547],[-71.76117764,41.918286547],[-71.761429641,41.918137547],[-71.761757641,41.917961547],[-71.762192641,41.917702547],[-71.762413641,41.917591547],[-71.762627641,41.917492547],[-71.763008642,41.917328547],[-71.763168641,41.917275547],[-71.763344641,41.917202547],[-71.763535642,41.917138547],[-71.764481642,41.916890547],[-71.764748641,41.916829546],[-71.764801642,41.916939547],[-71.764870642,41.917019547],[-71.764954642,41.917061547],[-71.765327642,41.917176547],[-71.765442642,41.917225547],[-71.765610642,41.917351547],[-71.765717642,41.917370547],[-71.765877642,41.917370547],[-71.765961642,41.917366547],[-71.766029642,41.917344547],[-71.766083642,41.917271547],[-71.766090642,41.917172547],[-71.766075642,41.917084546],[-71.766014642,41.916989547],[-71.765938642,41.916832546],[-71.765945642,41.916546547],[-71.766571642,41.916390547],[-71.766776642,41.916353547],[-71.766907643,41.916329547],[-71.767059643,41.916306546],[-71.767197643,41.916291547],[-71.767410643,41.916279547],[-71.767632642,41.916283546],[-71.767853643,41.916298547],[-71.768089643,41.916321547],[-71.768394643,41.916371547],[-71.768539643,41.916401546],[-71.768600643,41.916420546],[-71.768646643,41.916432547],[-71.768784643,41.916478546],[-71.768913643,41.916527547],[-71.769035643,41.916581546],[-71.769196643,41.916642547],[-71.769356643,41.916710547],[-71.769508643,41.916783547],[-71.769783643,41.916932547],[-71.769615643,41.917065546],[-71.769536643,41.917157547],[-71.769554643,41.917246547],[-71.769650643,41.917349547],[-71.769932643,41.917527547],[-71.770172643,41.917641547],[-71.770233643,41.917679547],[-71.770363643,41.917801547],[-71.770477644,41.917946547],[-71.770576643,41.918106547],[-71.770719644,41.918311546],[-71.770714643,41.918396547],[-71.770714643,41.918623547],[-71.770726644,41.918681547],[-71.770794643,41.918869547],[-71.770819644,41.918844547],[-71.771133644,41.918663547],[-71.771335644,41.918479547],[-71.771446644,41.918343547],[-71.771660644,41.918095547],[-71.771805644,41.918190547],[-71.772926644,41.918885547],[-71.773048645,41.918957547],[-71.773453645,41.919213547],[-71.773651645,41.919327547],[-71.773758644,41.919400547],[-71.773987645,41.919537547],[-71.774231645,41.919659547],[-71.774460645,41.919766547],[-71.774696645,41.919854547],[-71.774879645,41.919915547],[-71.774971645,41.919941547],[-71.775169645,41.919983547],[-71.775497645,41.920044547],[-71.775703646,41.920075547],[-71.775887645,41.920094547],[-71.776108646,41.920102547],[-71.776596646,41.920102547],[-71.776962646,41.920082547],[-71.777138646,41.920067547],[-71.777267646,41.920060547],[-71.777534646,41.920037547],[-71.777679646,41.920021547],[-71.777884646,41.919999547],[-71.778129646,41.920284547],[-71.778355647,41.920547547],[-71.778508647,41.920725547],[-71.778801647,41.920647547],[-71.779030647,41.920613547],[-71.779198646,41.920575547],[-71.779442647,41.920464547],[-71.779503647,41.920452547],[-71.779639647,41.920320547],[-71.779663647,41.920296547],[-71.779675647,41.920241547],[-71.779709647,41.920086547],[-71.779686646,41.919804547],[-71.779900646,41.919770547],[-71.780221647,41.919704547],[-71.780586647,41.919629547],[-71.780991647,41.919537547],[-71.782242647,41.919236547],[-71.783882648,41.918854547],[-71.784393648,41.918744546],[-71.784775648,41.918671547],[-71.784966649,41.918641547],[-71.785446649,41.918583547],[-71.785889648,41.918549546],[-71.786613649,41.918507546],[-71.786865649,41.918496546],[-71.787086649,41.918488546],[-71.787270649,41.918476546],[-71.78781165,41.918412546],[-71.788155649,41.918362547],[-71.788658649,41.918255546],[-71.789085649,41.918141546],[-71.78934565,41.918064546],[-71.78961965,41.917969546],[-71.79010865,41.917790546],[-71.79064965,41.917603546],[-71.790993651,41.917473546],[-71.79196965,41.917149546],[-71.792023651,41.917138546],[-71.79209165,41.917118546],[-71.792465651,41.917035546],[-71.792702651,41.916989546],[-71.79280965,41.916973546],[-71.793113651,41.916932546],[-71.793380651,41.916906546],[-71.793464651,41.916903546],[-71.793876651,41.916858546],[-71.794204651,41.916806546],[-71.795508652,41.916566546],[-71.796126652,41.916446546],[-71.796715652,41.916340546],[-71.797080652,41.916285545],[-71.797262652,41.916255546],[-71.797261652,41.916240546],[-71.797112652,41.912426545],[-71.797105652,41.912239545],[-71.797105652,41.912214545],[-71.797024652,41.910135545],[-71.796900652,41.906905544],[-71.796828651,41.904454543],[-71.796756651,41.901963543],[-71.796711651,41.900424543],[-71.796698651,41.899929542],[-71.796695651,41.899830542],[-71.796683651,41.899385542],[-71.796573651,41.897203542],[-71.796566651,41.897148542],[-71.796555651,41.897074542],[-71.796563651,41.896975542],[-71.796522651,41.895296542],[-71.796520651,41.895260541],[-71.796434651,41.891728541],[-71.79619165,41.88615054],[-71.79595665,41.880630539],[-71.79586365,41.877696538],[-71.79574465,41.875105538],[-71.795428649,41.868626536],[-71.795408649,41.868200536],[-71.795404649,41.868117536],[-71.795356649,41.867134537],[-71.795353649,41.867082536],[-71.795323648,41.866473536],[-71.795316649,41.866328536],[-71.795289649,41.865779536],[-71.795287649,41.865756536],[-71.795286648,41.865721536],[-71.794966649,41.859980535],[-71.794941648,41.859483535],[-71.794933648,41.859342535],[-71.794914648,41.858974535],[-71.794911649,41.858918535],[-71.794906648,41.858813534],[-71.794680648,41.854417534],[-71.794496648,41.854419534],[-71.787391645,41.854521534],[-71.77137664,41.854791535],[-71.76995864,41.854814534],[-71.768763639,41.854835534],[-71.765988639,41.854882535],[-71.764137638,41.854926535],[-71.758221636,41.855067535],[-71.749612633,41.855067535],[-71.749487633,41.855066536],[-71.749488633,41.855252535],[-71.747668633,41.855287535],[-71.747483633,41.855244535],[-71.747200632,41.855263535],[-71.746590632,41.855282535],[-71.745811632,41.855328535],[-71.745458632,41.855346535],[-71.744484631,41.855397536],[-71.744026632,41.855412536],[-71.74185263,41.855511536],[-71.741066631,41.855557535],[-71.74037963,41.855587536],[-71.73913863,41.855648536],[-71.73905963,41.855652535],[-71.73870163,41.855679536],[-71.73832763,41.855690536],[-71.737663629,41.855729536],[-71.736755629,41.855767536],[-71.736053629,41.855805536],[-71.734276628,41.855893536],[-71.733284628,41.855912536],[-71.732079628,41.855957536],[-71.731957628,41.855959536],[-71.730888628,41.855973536],[-71.729805627,41.855980536],[-71.728706626,41.855980536],[-71.728048626,41.855954536],[-71.727153626,41.856072536],[-71.726859626,41.855993536],[-71.726073625,41.855852536],[-71.724244625,41.855865537],[-71.723722625,41.855855536],[-71.720163624,41.855940537],[-71.720054624,41.855942537],[-71.719946624,41.855945536],[-71.717462623,41.855985536],[-71.716944623,41.855991536],[-71.714587621,41.856032537],[-71.70968262,41.856148537],[-71.704486618,41.856266537],[-71.703254619,41.856299537],[-71.702133618,41.856339537],[-71.699913617,41.856386537],[-71.697272616,41.856433537],[-71.692431615,41.856539537],[-71.691032614,41.856561538],[-71.689926614,41.856570537],[-71.689585614,41.856573537],[-71.688090613,41.856587538],[-71.683496612,41.856628537],[-71.680817611,41.856651538],[-71.680137611,41.856658538],[-71.67879761,41.856668537],[-71.67680461,41.856685538],[-71.676796609,41.856743538],[-71.67670961,41.857373538],[-71.676682609,41.857567538],[-71.67653761,41.858448538],[-71.67621661,41.860531538],[-71.67612561,41.861191538],[-71.676018609,41.861920539],[-71.67589061,41.862753539],[-71.67569061,41.86405254],[-71.67556061,41.86499154],[-71.67530161,41.86662354],[-71.67503461,41.86831754],[-71.67495061,41.86890454],[-71.67482061,41.86971354],[-71.67475961,41.870171541],[-71.674690609,41.870602541],[-71.67467561,41.870722541],[-71.67463761,41.871025541],[-71.674534609,41.871653541],[-71.67446961,41.872052541],[-71.67439361,41.872620541],[-71.67429461,41.873291541],[-71.67422961,41.873677541],[-71.674179609,41.873970541],[-71.674065609,41.874737542],[-71.67395861,41.875378542],[-71.673828609,41.876305541],[-71.67380561,41.876515542],[-71.67375961,41.876774542],[-71.67368361,41.876992542],[-71.67366061,41.877034542],[-71.67364561,41.877083542],[-71.673599609,41.877179542],[-71.67289061,41.878331543],[-71.672546609,41.878872542],[-71.672234609,41.879387542],[-71.670952609,41.881390543],[-71.670898609,41.881466543],[-71.670799609,41.881623543],[-71.670746609,41.881729543],[-71.670708609,41.881840543],[-71.670677609,41.881951543],[-71.670654609,41.882103543],[-71.670647609,41.882260543],[-71.670647609,41.882416543],[-71.670708609,41.883145543],[-71.670731609,41.883538544],[-71.670937609,41.886002544],[-71.670937609,41.886120544],[-71.670944609,41.886242544],[-71.670944609,41.886478544],[-71.670929609,41.886757543],[-71.670876609,41.887139544],[-71.670845609,41.887440544],[-71.670845609,41.887509544],[-71.670830609,41.887661544],[-71.670830609,41.887818544],[-71.670845609,41.888073544],[-71.67086061,41.888199545],[-71.67099861,41.888836544],[-71.671043609,41.889065544],[-71.671143609,41.889492544],[-71.67123461,41.889977544],[-71.67124961,41.890171544],[-71.67124961,41.890347544],[-71.67123361,41.890507544],[-71.671219609,41.890580544],[-71.67117361,41.890740544],[-71.67068561,41.891816545],[-71.670418609,41.892418545],[-71.670067609,41.893189545],[-71.669785609,41.893792545],[-71.669754609,41.893883545],[-71.66967061,41.894085546],[-71.669617609,41.894200546],[-71.669571609,41.894318546],[-71.669449609,41.894665545],[-71.669319609,41.895226545],[-71.66912561,41.895958546],[-71.669014609,41.896382546],[-71.66899161,41.896542546],[-71.668976609,41.896595546],[-71.668968609,41.896649546],[-71.668968609,41.896725546],[-71.668976609,41.896828546],[-71.669006609,41.896958546],[-71.669037609,41.897026546],[-71.669060609,41.897095546],[-71.669464609,41.897995546],[-71.669579609,41.898278546],[-71.669991609,41.899224546],[-71.67008261,41.899472546],[-71.67011361,41.899529547],[-71.67015861,41.899643547],[-71.670181609,41.899845546],[-71.670181609,41.899953547],[-71.670181609,41.900059546],[-71.67017461,41.900120546],[-71.67017461,41.900181546],[-71.67016661,41.900208547],[-71.67016661,41.900242546],[-71.670143609,41.900315546],[-71.670029609,41.900582547],[-71.66999861,41.900643546],[-71.66977761,41.901020547],[-71.669479609,41.901490547],[-71.669350609,41.901715546],[-71.66910661,41.902077547],[-71.668785609,41.902577547],[-71.66869461,41.902710547],[-71.66840461,41.903180547],[-71.668297609,41.903389547],[-71.668236609,41.903492547],[-71.668182609,41.903599547],[-71.66816961,41.903621547],[-71.66812961,41.903691547],[-71.668102609,41.903749547],[-71.66793861,41.904042547],[-71.66780161,41.904305548],[-71.667763609,41.904393547],[-71.667709609,41.904488547],[-71.667618609,41.904686547],[-71.667519609,41.904858547],[-71.667480609,41.904942547],[-71.667435609,41.905022548],[-71.667358609,41.905178548],[-71.66731361,41.905281548],[-71.66723661,41.905487548],[-71.667168609,41.905747548],[-71.667137609,41.906056548],[-71.667137609,41.906376547],[-71.667152609,41.906514547],[-71.667229609,41.906910548],[-71.667290609,41.907162548],[-71.66731361,41.907235548],[-71.667328609,41.907307548],[-71.667374609,41.907463548],[-71.667404609,41.907547548],[-71.667419609,41.907631548],[-71.667419609,41.907673548],[-71.66742761,41.907715548],[-71.66742761,41.907753548],[-71.667412609,41.907818548],[-71.667412609,41.907849548],[-71.667397609,41.907948548],[-71.667458609,41.908001548],[-71.667503609,41.908055548],[-71.66754261,41.908112548],[-71.667572609,41.908177548],[-71.667595609,41.908207549],[-71.66780161,41.908783548],[-71.66783961,41.908909549],[-71.668037609,41.909459548],[-71.66808361,41.909607549],[-71.668137609,41.909756548],[-71.66822861,41.910050548],[-71.66824461,41.910094549],[-71.668274609,41.910176549],[-71.668312609,41.910302548],[-71.66861061,41.911148549],[-71.66878561,41.911702548],[-71.66899161,41.912300549],[-71.66899961,41.912342549],[-71.66901461,41.912384549],[-71.66915961,41.912770549],[-71.66925061,41.912957549],[-71.66936561,41.913136549],[-71.66942661,41.913205549],[-71.66965561,41.913430549],[-71.66979261,41.913548549],[-71.670173611,41.913907549],[-71.670403611,41.914124549],[-71.670547611,41.91427355],[-71.670609611,41.914326549],[-71.670876611,41.914597549],[-71.670952611,41.914685549],[-71.671028611,41.914753549],[-71.671043611,41.914772549],[-71.671303611,41.915039549],[-71.671410611,41.915135549],[-71.671486611,41.91518455],[-71.671623611,41.915234549],[-71.671722611,41.915261549],[-71.671953612,41.915312549],[-71.672066611,41.915337549],[-71.672333611,41.91540255],[-71.672951611,41.915528549],[-71.673325611,41.91559655],[-71.673454612,41.915623549],[-71.674385612,41.915787549],[-71.675323612,41.91596355],[-71.675461613,41.91598555],[-71.675888613,41.91606655],[-71.676048613,41.91610055],[-71.676216613,41.916130549],[-71.676613613,41.916211549],[-71.676666613,41.91621855],[-71.677109613,41.91631455],[-71.677246613,41.91634055],[-71.677513613,41.916401549],[-71.677940614,41.91651255],[-71.678375613,41.91663055],[-71.679314614,41.916916549],[-71.679581613,41.916985549],[-71.679947614,41.91709955],[-71.682899615,41.91795455],[-71.683296615,41.918057549],[-71.683441616,41.918099549],[-71.683701615,41.91815255],[-71.684250615,41.918274549],[-71.684798616,41.91838155],[-71.685822615,41.91859555],[-71.686264616,41.91867955],[-71.687175616,41.91887255],[-71.687698616,41.918980549],[-71.687775616,41.91900355],[-71.688499617,41.91914455],[-71.688866617,41.919209549],[-71.689293617,41.91927455],[-71.689873618,41.91933555],[-71.690392617,41.919384549],[-71.691841618,41.919506549],[-71.692291618,41.91954855],[-71.692772618,41.91958755],[-71.693642618,41.91967055],[-71.693977618,41.919697549],[-71.694557619,41.919720549],[-71.69636562,41.91974755],[-71.696587619,41.91974755]]]]}}"}, +{"type": "precinct", "typeId": 1303, "areaId": 25778, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":117,\"NAME\":\"1303\",\"SHAPE_Length\":0.22903110088933,\"SHAPE_Area\":-0.001031155991262},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.700424622,41.930771552],[-71.700478621,41.930916551],[-71.700485622,41.930951551],[-71.700519622,41.931051551],[-71.707522624,41.930867552],[-71.707849624,41.930863551],[-71.709140624,41.930832551],[-71.714492626,41.930707551],[-71.717817627,41.930613551],[-71.720177628,41.930548551],[-71.722467628,41.93049955],[-71.72588663,41.930428551],[-71.728352631,41.930359551],[-71.728656631,41.93035055],[-71.736317633,41.93013555],[-71.740669634,41.93001355],[-71.740905635,41.93000855],[-71.741754635,41.92999455],[-71.741975635,41.92998755],[-71.742864635,41.92995955],[-71.749513638,41.92974755],[-71.751511638,41.92957355],[-71.754187165,41.929561348],[-71.75828264,41.92954255],[-71.75831864,41.92954355],[-71.75862464,41.929553549],[-71.761498641,41.92946455],[-71.762621641,41.929438549],[-71.765249643,41.929378549],[-71.766418643,41.929321549],[-71.767050643,41.929287549],[-71.768074644,41.929272549],[-71.770378645,41.929230549],[-71.770738644,41.929223549],[-71.781231648,41.929067549],[-71.783234648,41.929023548],[-71.784642649,41.928967548],[-71.785995649,41.928921548],[-71.787094649,41.928883548],[-71.794807652,41.928619548],[-71.796522653,41.928546548],[-71.796585653,41.928549548],[-71.797101653,41.928574548],[-71.797234653,41.928572548],[-71.797774653,41.928561548],[-71.797732653,41.927600548],[-71.797726653,41.927454548],[-71.797725653,41.927422548],[-71.797547652,41.923386547],[-71.797462653,41.920750546],[-71.797355652,41.917453545],[-71.797300652,41.916923546],[-71.797299652,41.916899546],[-71.797268652,41.916412546],[-71.797265652,41.916338546],[-71.797262652,41.916255546],[-71.797080652,41.916285545],[-71.796715652,41.916340546],[-71.796126652,41.916446546],[-71.795508652,41.916566546],[-71.794204651,41.916806546],[-71.793876651,41.916858546],[-71.793464651,41.916903546],[-71.793380651,41.916906546],[-71.793113651,41.916932546],[-71.79280965,41.916973546],[-71.792702651,41.916989546],[-71.792465651,41.917035546],[-71.79209165,41.917118546],[-71.792023651,41.917138546],[-71.79196965,41.917149546],[-71.790993651,41.917473546],[-71.79064965,41.917603546],[-71.79010865,41.917790546],[-71.78961965,41.917969546],[-71.78934565,41.918064546],[-71.789085649,41.918141546],[-71.788658649,41.918255546],[-71.788155649,41.918362547],[-71.78781165,41.918412546],[-71.787270649,41.918476546],[-71.787086649,41.918488546],[-71.786865649,41.918496546],[-71.786613649,41.918507546],[-71.785889648,41.918549546],[-71.785446649,41.918583547],[-71.784966649,41.918641547],[-71.784775648,41.918671547],[-71.784393648,41.918744546],[-71.783882648,41.918854547],[-71.782242647,41.919236547],[-71.780991647,41.919537547],[-71.780586647,41.919629547],[-71.780221647,41.919704547],[-71.779900646,41.919770547],[-71.779686646,41.919804547],[-71.779709647,41.920086547],[-71.779675647,41.920241547],[-71.779663647,41.920296547],[-71.779639647,41.920320547],[-71.779503647,41.920452547],[-71.779442647,41.920464547],[-71.779198646,41.920575547],[-71.779030647,41.920613547],[-71.778801647,41.920647547],[-71.778508647,41.920725547],[-71.778355647,41.920547547],[-71.778129646,41.920284547],[-71.777884646,41.919999547],[-71.777679646,41.920021547],[-71.777534646,41.920037547],[-71.777267646,41.920060547],[-71.777138646,41.920067547],[-71.776962646,41.920082547],[-71.776596646,41.920102547],[-71.776108646,41.920102547],[-71.775887645,41.920094547],[-71.775703646,41.920075547],[-71.775497645,41.920044547],[-71.775169645,41.919983547],[-71.774971645,41.919941547],[-71.774879645,41.919915547],[-71.774696645,41.919854547],[-71.774460645,41.919766547],[-71.774231645,41.919659547],[-71.773987645,41.919537547],[-71.773758644,41.919400547],[-71.773651645,41.919327547],[-71.773453645,41.919213547],[-71.773048645,41.918957547],[-71.772926644,41.918885547],[-71.771805644,41.918190547],[-71.771660644,41.918095547],[-71.771446644,41.918343547],[-71.771335644,41.918479547],[-71.771133644,41.918663547],[-71.770819644,41.918844547],[-71.770794643,41.918869547],[-71.770726644,41.918681547],[-71.770714643,41.918623547],[-71.770714643,41.918396547],[-71.770719644,41.918311546],[-71.770576643,41.918106547],[-71.770477644,41.917946547],[-71.770363643,41.917801547],[-71.770233643,41.917679547],[-71.770172643,41.917641547],[-71.769932643,41.917527547],[-71.769650643,41.917349547],[-71.769554643,41.917246547],[-71.769536643,41.917157547],[-71.769615643,41.917065546],[-71.769783643,41.916932547],[-71.769508643,41.916783547],[-71.769356643,41.916710547],[-71.769196643,41.916642547],[-71.769035643,41.916581546],[-71.768913643,41.916527547],[-71.768784643,41.916478546],[-71.768646643,41.916432547],[-71.768600643,41.916420546],[-71.768539643,41.916401546],[-71.768394643,41.916371547],[-71.768089643,41.916321547],[-71.767853643,41.916298547],[-71.767632642,41.916283546],[-71.767410643,41.916279547],[-71.767197643,41.916291547],[-71.767059643,41.916306546],[-71.766907643,41.916329547],[-71.766776642,41.916353547],[-71.766571642,41.916390547],[-71.765945642,41.916546547],[-71.765938642,41.916832546],[-71.766014642,41.916989547],[-71.766075642,41.917084546],[-71.766090642,41.917172547],[-71.766083642,41.917271547],[-71.766029642,41.917344547],[-71.765961642,41.917366547],[-71.765877642,41.917370547],[-71.765717642,41.917370547],[-71.765610642,41.917351547],[-71.765442642,41.917225547],[-71.765327642,41.917176547],[-71.764954642,41.917061547],[-71.764870642,41.917019547],[-71.764801642,41.916939547],[-71.764748641,41.916829546],[-71.764481642,41.916890547],[-71.763535642,41.917138547],[-71.763344641,41.917202547],[-71.763168641,41.917275547],[-71.763008642,41.917328547],[-71.762627641,41.917492547],[-71.762413641,41.917591547],[-71.762192641,41.917702547],[-71.761757641,41.917961547],[-71.761429641,41.918137547],[-71.76117764,41.918286547],[-71.760666641,41.918557547],[-71.760468641,41.918667547],[-71.76020864,41.918801547],[-71.75993364,41.918908547],[-71.75965164,41.919026548],[-71.75936964,41.919136547],[-71.75898764,41.919247547],[-71.75884264,41.919293547],[-71.758217639,41.919442547],[-71.75791264,41.919495548],[-71.75733264,41.919579547],[-71.757088639,41.919598547],[-71.756828639,41.919613548],[-71.756653639,41.919629548],[-71.756287639,41.919651548],[-71.755905639,41.919678547],[-71.755539639,41.919693548],[-71.755173638,41.919728548],[-71.755043639,41.919747548],[-71.754807639,41.919762548],[-71.754730639,41.919770548],[-71.754463639,41.919796547],[-71.754082638,41.919854547],[-71.753593638,41.919922548],[-71.753105638,41.919999548],[-71.752853638,41.920025548],[-71.752419638,41.920098548],[-71.751976637,41.920159548],[-71.750748637,41.920342548],[-71.749519637,41.920517548],[-71.747261636,41.920853548],[-71.746902636,41.920910548],[-71.746574636,41.920967548],[-71.746124636,41.921067548],[-71.745491636,41.921200548],[-71.744217635,41.921475548],[-71.743797635,41.921555548],[-71.743553635,41.921612548],[-71.743431635,41.921635548],[-71.743393635,41.921640549],[-71.743141635,41.921677549],[-71.742989635,41.921692548],[-71.742691634,41.921704548],[-71.742409635,41.921704548],[-71.742157635,41.921696549],[-71.742012634,41.921685548],[-71.741867635,41.921669548],[-71.741570634,41.921627548],[-71.741272634,41.921574548],[-71.739693634,41.921235549],[-71.739136634,41.921135549],[-71.738701633,41.921078549],[-71.738281633,41.921044548],[-71.738182634,41.921040549],[-71.737938633,41.921033549],[-71.737885633,41.921032548],[-71.737706633,41.921037549],[-71.737587633,41.921040549],[-71.737274633,41.921059549],[-71.737099633,41.921067548],[-71.736237632,41.921128548],[-71.736115633,41.921128548],[-71.735657632,41.921139548],[-71.735413633,41.921135549],[-71.734887633,41.921104548],[-71.734634632,41.921078549],[-71.734482632,41.921067548],[-71.734024632,41.921002548],[-71.733490632,41.920903549],[-71.732185631,41.920636548],[-71.731590631,41.920555548],[-71.731468631,41.920544549],[-71.73116363,41.920536548],[-71.730759631,41.920533549],[-71.73067563,41.920540548],[-71.72931763,41.920613548],[-71.72795963,41.920704549],[-71.72773063,41.920716549],[-71.727463629,41.920735549],[-71.72698263,41.920758549],[-71.726639629,41.920765549],[-71.726448629,41.920761549],[-71.725822629,41.920716549],[-71.724586629,41.920582549],[-71.722626628,41.920342548],[-71.722321628,41.920311549],[-71.721420628,41.920201549],[-71.721127627,41.920168549],[-71.720322627,41.920079549],[-71.720100627,41.920060549],[-71.720001627,41.920048548],[-71.719536627,41.920021549],[-71.719353627,41.920021549],[-71.718964627,41.920033549],[-71.718758627,41.920052549],[-71.718559627,41.920075549],[-71.718369627,41.920102549],[-71.718170627,41.920136549],[-71.717773626,41.920227549],[-71.717545627,41.920292549],[-71.716080626,41.920746549],[-71.715790626,41.920823549],[-71.715630626,41.920842549],[-71.715424626,41.920872549],[-71.715149626,41.92088455],[-71.714867625,41.92088455],[-71.714684625,41.92086455],[-71.714439625,41.920823549],[-71.714211626,41.920773549],[-71.713951625,41.920700549],[-71.713753625,41.920639549],[-71.713537625,41.920565549],[-71.713417625,41.920517549],[-71.713127625,41.920411549],[-71.712364624,41.920124549],[-71.710762624,41.919533549],[-71.710167624,41.919312549],[-71.710091624,41.919281549],[-71.709396624,41.919033549],[-71.709259624,41.918969549],[-71.708923624,41.918850549],[-71.708817623,41.918805549],[-71.708694624,41.918763549],[-71.708130624,41.918545548],[-71.707970623,41.918488549],[-71.707603623,41.918366549],[-71.707283623,41.918267549],[-71.707161623,41.918236549],[-71.707031623,41.918190549],[-71.706223622,41.918034549],[-71.706062623,41.918011549],[-71.705780622,41.917977549],[-71.705674622,41.917968549],[-71.705048623,41.917939549],[-71.704796623,41.917935549],[-71.704544622,41.917942549],[-71.704391622,41.917954549],[-71.704071622,41.917965549],[-71.703903622,41.917984549],[-71.703758622,41.917996549],[-71.703598622,41.918015549],[-71.703461622,41.918038549],[-71.703354621,41.918049549],[-71.703171622,41.918076549],[-71.702950621,41.918114549],[-71.702766622,41.918152549],[-71.702194621,41.918297549],[-71.701790621,41.918427549],[-71.701393621,41.918564549],[-71.701233621,41.918629549],[-71.700981621,41.918717549],[-71.69941762,41.919327549],[-71.69921162,41.91940055],[-71.69892962,41.919491549],[-71.69870062,41.91955655],[-71.69829662,41.919648549],[-71.69809762,41.919678549],[-71.69766962,41.91972855],[-71.69744162,41.919743549],[-71.697136619,41.91975155],[-71.696587619,41.91974755],[-71.69666362,41.919995549],[-71.69677762,41.920266549],[-71.69690762,41.92060555],[-71.69706062,41.92097555],[-71.69747962,41.922036549],[-71.69789962,41.92320355],[-71.69854762,41.925072551],[-71.69887562,41.926041551],[-71.69889162,41.92607555],[-71.699333621,41.927384551],[-71.699692621,41.928494551],[-71.699921621,41.929165551],[-71.700424622,41.930771552]]]]}}"}, +{"type": "precinct", "typeId": 1304, "areaId": 25780, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":119,\"NAME\":\"1304\",\"SHAPE_Length\":0.3093328141538,\"SHAPE_Area\":-0.0021660403068418},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.58029458,41.884634546],[-71.58070058,41.886530546],[-71.58072258,41.886636547],[-71.58074558,41.886741546],[-71.582167581,41.893391548],[-71.582500581,41.894968548],[-71.583078581,41.897478549],[-71.583301582,41.898474549],[-71.583255581,41.898538548],[-71.583572582,41.899940549],[-71.583601581,41.900069549],[-71.584505582,41.90454555],[-71.584613582,41.90508155],[-71.586610583,41.914969552],[-71.587566584,41.919700553],[-71.587708584,41.920406553],[-71.587508584,41.921006553],[-71.587542584,41.921179553],[-71.587544584,41.921219553],[-71.588113584,41.924052554],[-71.588205584,41.924516553],[-71.588871585,41.927439554],[-71.590108585,41.934106556],[-71.592935586,41.933914555],[-71.601661589,41.933322555],[-71.60296959,41.933243555],[-71.60335959,41.933201555],[-71.610544592,41.932776555],[-71.613315593,41.932597555],[-71.613284593,41.932544555],[-71.613282593,41.932493554],[-71.613223593,41.932258554],[-71.613177593,41.932192555],[-71.613067593,41.932006554],[-71.612990593,41.931766555],[-71.612946592,41.931645555],[-71.612936593,41.931557554],[-71.612929593,41.931390554],[-71.612948592,41.931265554],[-71.612954593,41.931247554],[-71.613049593,41.931079554],[-71.613521593,41.930485554],[-71.613581593,41.930433554],[-71.613840593,41.930110554],[-71.613871593,41.930053554],[-71.613883593,41.929994554],[-71.613842593,41.929989554],[-71.613792593,41.929989554],[-71.613760593,41.929888554],[-71.613731593,41.929836554],[-71.613674593,41.929835554],[-71.613627592,41.929855554],[-71.613455593,41.929826554],[-71.613320593,41.929812554],[-71.613293593,41.929778554],[-71.613277592,41.929713554],[-71.613245593,41.929689554],[-71.613165593,41.929771554],[-71.613010593,41.929724554],[-71.612902593,41.929657554],[-71.612752592,41.929651554],[-71.612682593,41.929678554],[-71.612644593,41.929664554],[-71.612583593,41.929614554],[-71.612546593,41.929562554],[-71.612539592,41.929408554],[-71.612556592,41.929351554],[-71.612559592,41.929221554],[-71.612549593,41.929151554],[-71.612530593,41.929098554],[-71.612529593,41.928955554],[-71.612506593,41.928902553],[-71.612461592,41.928846554],[-71.612400592,41.928796554],[-71.612342592,41.928739554],[-71.612313593,41.928689553],[-71.612311592,41.928557554],[-71.612301592,41.928498554],[-71.612214592,41.928492553],[-71.612202593,41.928420554],[-71.612152592,41.928297553],[-71.612146592,41.928230554],[-71.612105593,41.928101553],[-71.612097592,41.928041554],[-71.612014592,41.928031554],[-71.611967593,41.928043553],[-71.611915592,41.928081553],[-71.611817592,41.928039554],[-71.611812593,41.927968553],[-71.611838592,41.927909553],[-71.611851593,41.927859554],[-71.611776592,41.927808553],[-71.611807592,41.927766554],[-71.611821592,41.927640553],[-71.611838592,41.927585554],[-71.611815592,41.927566554],[-71.611655592,41.927512554],[-71.611632592,41.927455554],[-71.611593592,41.927407554],[-71.611522592,41.927390554],[-71.611457592,41.927362553],[-71.611352592,41.927331554],[-71.611357592,41.927276554],[-71.611383592,41.927212553],[-71.611315592,41.927113553],[-71.611276592,41.927048553],[-71.611259592,41.926995553],[-71.611148592,41.926951553],[-71.611135592,41.926895553],[-71.611166592,41.926842553],[-71.611173592,41.926787554],[-71.611170592,41.926722553],[-71.611176592,41.926665553],[-71.611143592,41.926611554],[-71.611178592,41.926562553],[-71.611246592,41.926541553],[-71.611324592,41.926544553],[-71.611405592,41.926568553],[-71.611453592,41.926527553],[-71.611492592,41.926452553],[-71.611485592,41.926387553],[-71.611456592,41.926335553],[-71.611393592,41.926292553],[-71.611327592,41.926255553],[-71.611282592,41.926210553],[-71.611278592,41.926154553],[-71.611286592,41.926090554],[-71.611287591,41.925871553],[-71.611325592,41.925819553],[-71.611399592,41.925790553],[-71.611474592,41.925777554],[-71.611495592,41.925718554],[-71.611406592,41.925677553],[-71.611316592,41.925669553],[-71.611319592,41.925611553],[-71.611061592,41.925629553],[-71.610748592,41.925667553],[-71.610504592,41.925682553],[-71.610367592,41.925675553],[-71.610222591,41.925648553],[-71.610054592,41.925572553],[-71.609787591,41.925438553],[-71.609535591,41.925290554],[-71.609268591,41.925164553],[-71.609154591,41.925104553],[-71.608986591,41.925015553],[-71.608833591,41.924946553],[-71.608452591,41.924675553],[-71.608192591,41.924473553],[-71.60799459,41.924305553],[-71.607864591,41.924157553],[-71.607635591,41.923874553],[-71.60744559,41.923603553],[-71.607033591,41.923092553],[-71.606819591,41.922882553],[-71.60660659,41.922692553],[-71.606506591,41.922551553],[-71.60640759,41.922360553],[-71.60616359,41.921742553],[-71.60605659,41.921437552],[-71.60601859,41.921269553],[-71.60596559,41.920800553],[-71.605904589,41.920628553],[-71.60579759,41.920411553],[-71.60564459,41.920212552],[-71.60542359,41.919945553],[-71.605209589,41.919663552],[-71.60505759,41.919453552],[-71.604935589,41.919266552],[-71.60471359,41.918991552],[-71.604546589,41.918793552],[-71.604332589,41.918553552],[-71.604149589,41.918385552],[-71.603981589,41.918202552],[-71.603790589,41.918023552],[-71.603600589,41.917820552],[-71.603340589,41.917572552],[-71.603180589,41.917435552],[-71.603096588,41.917355551],[-71.602516588,41.916855552],[-71.602341588,41.916676551],[-71.602234589,41.916500551],[-71.602097589,41.916256552],[-71.601959589,41.916066552],[-71.601776588,41.915863552],[-71.601570588,41.915673552],[-71.601410588,41.915497552],[-71.600922588,41.915108552],[-71.600807588,41.914891552],[-71.600731588,41.914841551],[-71.600624588,41.914757552],[-71.600243588,41.914387552],[-71.600052588,41.914219551],[-71.599808587,41.914025551],[-71.599281587,41.913628552],[-71.598694587,41.913205551],[-71.598129587,41.912735551],[-71.597542586,41.912293551],[-71.597260587,41.912075551],[-71.596976586,41.911861551],[-71.596642586,41.911610551],[-71.596336586,41.911374551],[-71.596008586,41.911137551],[-71.595726586,41.910912551],[-71.595451585,41.910714551],[-71.595200585,41.910527551],[-71.595146586,41.910481551],[-71.594940586,41.910324551],[-71.594788585,41.910214551],[-71.594429586,41.909932551],[-71.594124586,41.909684551],[-71.593857585,41.909451551],[-71.593651585,41.909279551],[-71.593338585,41.909039551],[-71.592491585,41.90837155],[-71.592239585,41.90815055],[-71.591802585,41.907719551],[-71.591759585,41.907677551],[-71.591553584,41.90741855],[-71.591370585,41.90720455],[-71.591209584,41.90698755],[-71.591080585,41.90678155],[-71.590958584,41.90662455],[-71.590935584,41.90658655],[-71.590775584,41.90637255],[-71.590477584,41.90592655],[-71.590248584,41.90562155],[-71.590096584,41.90549955],[-71.589874583,41.90536555],[-71.589630584,41.90520555],[-71.589470583,41.90509155],[-71.589264584,41.90490455],[-71.589081583,41.90469055],[-71.588890583,41.904484549],[-71.588749583,41.90430855],[-71.588722584,41.90427455],[-71.588547584,41.90398855],[-71.588364583,41.90371455],[-71.588188583,41.903397549],[-71.588791583,41.90326755],[-71.589165584,41.903180549],[-71.589966584,41.90297455],[-71.590355584,41.902886549],[-71.590591584,41.90282555],[-71.590935584,41.90274455],[-71.590981584,41.902733549],[-71.591797584,41.902520549],[-71.592140584,41.902436549],[-71.592720585,41.902310549],[-71.593124585,41.902214549],[-71.593498585,41.902134549],[-71.594184585,41.902001549],[-71.594917585,41.901860549],[-71.595184585,41.901791549],[-71.595474585,41.901669549],[-71.595589585,41.901596549],[-71.595688585,41.901463549],[-71.595802585,41.901287549],[-71.596390585,41.900475549],[-71.596558586,41.900292548],[-71.596573586,41.900269549],[-71.596756586,41.900063549],[-71.596992585,41.899838549],[-71.597305586,41.899552548],[-71.597565586,41.899323548],[-71.597771586,41.899117549],[-71.597893586,41.898983549],[-71.597992586,41.898842549],[-71.598228586,41.898461548],[-71.598358586,41.898320549],[-71.598442586,41.898266548],[-71.598564586,41.898201549],[-71.598831586,41.898102549],[-71.599136587,41.897995548],[-71.599259586,41.897949549],[-71.599510586,41.897854548],[-71.599968587,41.897690548],[-71.601265587,41.897210548],[-71.601624587,41.897065548],[-71.602074587,41.896897548],[-71.602587588,41.896658548],[-71.602623588,41.896641548],[-71.602666588,41.896619548],[-71.603058587,41.896424548],[-71.603783588,41.896038548],[-71.603889588,41.895955548],[-71.604240588,41.895638548],[-71.604401588,41.895504548],[-71.604782588,41.895241547],[-71.605095588,41.895012547],[-71.605453589,41.894761547],[-71.606255588,41.894215547],[-71.606667588,41.893917547],[-71.607025589,41.893631547],[-71.607368588,41.893376547],[-71.607651589,41.893185547],[-71.607971589,41.893273547],[-71.608174589,41.893311547],[-71.608330589,41.893341547],[-71.608696589,41.893368547],[-71.60907759,41.893383547],[-71.60952859,41.893601547],[-71.61006959,41.893853547],[-71.61139759,41.894493547],[-71.612724591,41.895142548],[-71.613571591,41.895512548],[-71.613663591,41.895545547],[-71.613937592,41.895642547],[-71.614265591,41.895749547],[-71.614830592,41.895916548],[-71.615211591,41.896019548],[-71.615837592,41.896172548],[-71.616142591,41.896214548],[-71.616447592,41.896237547],[-71.616661592,41.896241547],[-71.616943592,41.896225547],[-71.617218592,41.896187547],[-71.617470592,41.896145547],[-71.617676593,41.896099547],[-71.618077592,41.896020547],[-71.618118592,41.896012547],[-71.619255593,41.895775547],[-71.619659593,41.895687548],[-71.620262593,41.895562547],[-71.621040593,41.895409547],[-71.621788594,41.895241547],[-71.622437594,41.895111547],[-71.623138594,41.894955547],[-71.624019595,41.894770547],[-71.624100594,41.894753546],[-71.624596595,41.894658547],[-71.624893595,41.894623547],[-71.625168595,41.894612547],[-71.625473595,41.894627547],[-71.625847595,41.894684547],[-71.626076595,41.894749547],[-71.626091595,41.894627547],[-71.626183595,41.894543547],[-71.626450595,41.894425546],[-71.627571595,41.893906547],[-71.627777596,41.893799546],[-71.628189596,41.893525546],[-71.628441596,41.893338546],[-71.628677596,41.893193546],[-71.628853596,41.893109547],[-71.629044596,41.893029546],[-71.629257596,41.892990546],[-71.629601596,41.892937547],[-71.629921596,41.892903546],[-71.630196596,41.892842546],[-71.630913596,41.892716546],[-71.631256596,41.892632546],[-71.631638597,41.892556546],[-71.631966597,41.892514546],[-71.632385597,41.892430547],[-71.632675597,41.892331546],[-71.633720597,41.892079546],[-71.633926598,41.892048546],[-71.634026597,41.892029546],[-71.634186597,41.891983546],[-71.634270598,41.891953546],[-71.634453598,41.891865546],[-71.634605598,41.891747546],[-71.635353598,41.891194546],[-71.635719598,41.890915546],[-71.635834598,41.890820546],[-71.636238598,41.890507545],[-71.636398598,41.890374546],[-71.636566598,41.890244546],[-71.636910599,41.889962545],[-71.637505598,41.889473545],[-71.637962599,41.889115546],[-71.638168599,41.888977546],[-71.638329599,41.888886545],[-71.638573599,41.888771545],[-71.638718599,41.888714545],[-71.638786599,41.888691545],[-71.639008599,41.888634545],[-71.639084599,41.888626546],[-71.639160599,41.888630545],[-71.639313599,41.888653545],[-71.639862599,41.888760545],[-71.639984599,41.888779545],[-71.640587599,41.888893545],[-71.640854599,41.888947545],[-71.6413736,41.889012545],[-71.6418176,41.889028545],[-71.6420756,41.889038546],[-71.6424566,41.889092545],[-71.6430286,41.889126545],[-71.6432116,41.889126545],[-71.643341601,41.889115546],[-71.643402601,41.889099545],[-71.6440516,41.888871545],[-71.645523601,41.888375545],[-71.647621601,41.887650545],[-71.647278602,41.887310545],[-71.647125602,41.887150544],[-71.646950602,41.886929545],[-71.646530601,41.886292544],[-71.6453176,41.884537544],[-71.6448756,41.883969544],[-71.6443106,41.883282544],[-71.6442346,41.883175544],[-71.6440966,41.882954544],[-71.6431666,41.881352544],[-71.643036599,41.881146543],[-71.6428766,41.880936544],[-71.6427156,41.880772543],[-71.6424876,41.880581543],[-71.642433599,41.880547544],[-71.641983599,41.880223544],[-71.641098599,41.879551543],[-71.640915599,41.879429543],[-71.640839599,41.879322544],[-71.640778599,41.879200543],[-71.640732599,41.879067543],[-71.640709599,41.878884543],[-71.639824599,41.878998543],[-71.639510598,41.879029544],[-71.639183598,41.879063543],[-71.638924598,41.879086544],[-71.638481598,41.879116543],[-71.638321598,41.879120543],[-71.638176598,41.879116543],[-71.637894598,41.879097543],[-71.637329598,41.879048544],[-71.636803598,41.879010544],[-71.636169598,41.878956543],[-71.635826597,41.878941543],[-71.635544598,41.878952544],[-71.635460597,41.878960543],[-71.635292598,41.878983543],[-71.635101597,41.879021543],[-71.634903597,41.879074543],[-71.634796597,41.879113543],[-71.634705597,41.879139543],[-71.634254597,41.879349543],[-71.633838597,41.879527543],[-71.633713596,41.879574544],[-71.633537597,41.879620543],[-71.633446596,41.879639543],[-71.633263597,41.879685544],[-71.633080597,41.879723544],[-71.632881596,41.879750544],[-71.632607596,41.879761543],[-71.632523597,41.879757543],[-71.631622596,41.879746544],[-71.631325596,41.879738543],[-71.630562596,41.879727544],[-71.630196596,41.879708544],[-71.629819595,41.879673544],[-71.628784595,41.879586544],[-71.628380595,41.879547544],[-71.627815595,41.879502544],[-71.626762594,41.879406543],[-71.626434595,41.879380544],[-71.626137594,41.879349543],[-71.625252594,41.879242544],[-71.624840593,41.879185544],[-71.624321594,41.879105544],[-71.623873593,41.879031544],[-71.623535593,41.878975544],[-71.622101593,41.878688544],[-71.621040592,41.878468544],[-71.620827592,41.878407544],[-71.620689592,41.878350544],[-71.620544593,41.878281544],[-71.620377592,41.878178543],[-71.620239592,41.878056544],[-71.620102592,41.877915544],[-71.620043592,41.877859544],[-71.619965592,41.877785544],[-71.619820592,41.877591543],[-71.619576592,41.877354544],[-71.619461592,41.877232544],[-71.619392592,41.877148543],[-71.619026592,41.876778543],[-71.618843592,41.876625543],[-71.618629592,41.876461543],[-71.618477592,41.876374544],[-71.618347591,41.876305543],[-71.618027592,41.876164544],[-71.617645591,41.876023544],[-71.617287591,41.875912544],[-71.616951591,41.875843543],[-71.616615591,41.875798543],[-71.616485591,41.875790544],[-71.616287591,41.875779543],[-71.615997591,41.875771544],[-71.615685591,41.875775544],[-71.61538759,41.875763543],[-71.61513559,41.875737544],[-71.614754591,41.875668543],[-71.61447959,41.875599544],[-71.61412059,41.875531543],[-71.61327059,41.875351543],[-71.61299959,41.875294543],[-71.61249559,41.875256543],[-71.612282589,41.875256543],[-71.611961589,41.875252543],[-71.611618589,41.875241543],[-71.611153589,41.875199543],[-71.610855589,41.875164544],[-71.610573589,41.875119543],[-71.609825588,41.874970544],[-71.609032588,41.874825543],[-71.608727589,41.874756544],[-71.608467588,41.874722544],[-71.608109588,41.874699544],[-71.607109588,41.874653543],[-71.605965587,41.874600544],[-71.605568587,41.874573543],[-71.605103587,41.874535543],[-71.604805587,41.874489544],[-71.604515587,41.874428544],[-71.604164587,41.874333544],[-71.603813587,41.874215544],[-71.603394586,41.874031543],[-71.603111587,41.873913543],[-71.602966586,41.873845544],[-71.602776586,41.873745544],[-71.603111587,41.873425543],[-71.603683586,41.872857543],[-71.604004587,41.872528543],[-71.604401587,41.872147543],[-71.605057587,41.871544543],[-71.605988587,41.870713543],[-71.606163587,41.870541543],[-71.606239587,41.870446543],[-71.606354587,41.870312543],[-71.606499587,41.870098543],[-71.606644588,41.869851542],[-71.606728587,41.869660542],[-71.606789587,41.869439543],[-71.606827587,41.869244543],[-71.606843587,41.868956542],[-71.606850587,41.868855542],[-71.606857588,41.868164542],[-71.606850587,41.867958542],[-71.606827587,41.867783542],[-71.606789587,41.867577542],[-71.606667587,41.867112542],[-71.606590587,41.866860542],[-71.606537587,41.866707542],[-71.606476587,41.866551542],[-71.606369587,41.866333542],[-71.606156587,41.866043542],[-71.606125587,41.866001542],[-71.605858587,41.865719542],[-71.605392587,41.865273542],[-71.604729587,41.864613542],[-71.604416586,41.864323542],[-71.604370586,41.864273541],[-71.604172586,41.864079541],[-71.603973586,41.863892542],[-71.603821586,41.863736542],[-71.603699586,41.863583542],[-71.603622586,41.863457541],[-71.603539586,41.863243541],[-71.603500586,41.863079542],[-71.603477586,41.862732541],[-71.603493586,41.862572542],[-71.603539586,41.862435542],[-71.603607586,41.862282542],[-71.603676586,41.862152541],[-71.603836586,41.861912541],[-71.604126586,41.861424541],[-71.604179586,41.861309541],[-71.604279586,41.861119541],[-71.604401586,41.860814541],[-71.604490586,41.860545541],[-71.604691586,41.859997541],[-71.604782586,41.859681541],[-71.604912586,41.859002541],[-71.604996586,41.85846054],[-71.605011586,41.858261541],[-71.604996586,41.858048541],[-71.605156586,41.85804054],[-71.605255586,41.858006541],[-71.605278587,41.85796454],[-71.605339586,41.85786154],[-71.605364586,41.85780554],[-71.604949586,41.85780754],[-71.604627586,41.857816541],[-71.597344583,41.858003541],[-71.591794582,41.858126541],[-71.590173581,41.85820854],[-71.584687579,41.858372541],[-71.578521578,41.858503541],[-71.577835577,41.858503541],[-71.575107577,41.858607541],[-71.575250577,41.859131541],[-71.575888577,41.862839542],[-71.576096577,41.863517542],[-71.576529577,41.865596543],[-71.576590578,41.865892542],[-71.576945578,41.867595543],[-71.576963578,41.867682543],[-71.577281577,41.869209543],[-71.577190578,41.869473544],[-71.577209578,41.869545543],[-71.577286578,41.869923544],[-71.577321578,41.870078544],[-71.577560578,41.871155544],[-71.577576578,41.871369544],[-71.577575578,41.871395544],[-71.577568578,41.871640544],[-71.577534578,41.871899544],[-71.577783578,41.872773544],[-71.577907578,41.873207544],[-71.577934578,41.873320544],[-71.578258578,41.874656544],[-71.578349578,41.874945544],[-71.578390578,41.875202544],[-71.578407578,41.875307545],[-71.578716579,41.876778545],[-71.579247579,41.879315545],[-71.579726579,41.881522546],[-71.579815579,41.881962545],[-71.579850579,41.882141546],[-71.58029458,41.884634546]]]]}}"}, +{"type": "precinct", "typeId": 1401, "areaId": 25781, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":120,\"NAME\":\"1401\",\"SHAPE_Length\":0.42988056717433,\"SHAPE_Area\":-0.0047022148662148},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.718623601,41.46027446],[-71.718674602,41.459908459],[-71.718697602,41.45982446],[-71.718741601,41.45974446],[-71.718758602,41.459713459],[-71.718811602,41.459656459],[-71.718887602,41.459603459],[-71.719002602,41.45953446],[-71.719070602,41.459507459],[-71.719200602,41.45947346],[-71.719368602,41.45941646],[-71.719505602,41.459385459],[-71.719635602,41.459366459],[-71.719925602,41.459332459],[-71.720230602,41.459313459],[-71.720718602,41.45927846],[-71.721245602,41.459225459],[-71.721664603,41.459210459],[-71.722870603,41.459141459],[-71.723228603,41.459107459],[-71.723495604,41.459092459],[-71.723961604,41.459080459],[-71.725357604,41.459080459],[-71.725685604,41.459095459],[-71.725946604,41.459118459],[-71.726362604,41.459164459],[-71.727478604,41.459324459],[-71.727768605,41.459362459],[-71.727951605,41.459401459],[-71.728134605,41.459450459],[-71.728310605,41.459504459],[-71.728928605,41.459736459],[-71.729187605,41.459816459],[-71.729347606,41.459858459],[-71.729660606,41.459919459],[-71.729828605,41.459931459],[-71.730026606,41.459938459],[-71.730804606,41.459919459],[-71.731087605,41.459904459],[-71.731285606,41.459889459],[-71.731590606,41.459847459],[-71.731888606,41.459782459],[-71.732086606,41.459744459],[-71.732475606,41.459649459],[-71.732795606,41.459576459],[-71.733156606,41.459493459],[-71.733819606,41.459350459],[-71.734262607,41.459246459],[-71.735183607,41.459030458],[-71.736013607,41.458832459],[-71.736717608,41.458666459],[-71.737931607,41.458374459],[-71.738518608,41.458222459],[-71.739136609,41.458073458],[-71.739342608,41.458035458],[-71.739716609,41.457997458],[-71.739899609,41.457989459],[-71.740067609,41.457993459],[-71.740250609,41.458008459],[-71.740623608,41.458069459],[-71.740799608,41.458104459],[-71.740936609,41.458134458],[-71.741379609,41.458229458],[-71.741692609,41.458302459],[-71.742104609,41.458382459],[-71.742737609,41.458516459],[-71.74291261,41.458542458],[-71.743217609,41.458577459],[-71.74340861,41.458577459],[-71.74375961,41.458592459],[-71.74404161,41.458611459],[-71.74445361,41.458653459],[-71.74448461,41.458660458],[-71.74482061,41.458733459],[-71.74500361,41.458790459],[-71.74542261,41.458939458],[-71.746078611,41.459187458],[-71.746925611,41.459496458],[-71.747345611,41.459660458],[-71.747910611,41.459893458],[-71.748444611,41.460099459],[-71.748713612,41.460185458],[-71.748741611,41.460194459],[-71.748932611,41.460247459],[-71.749290612,41.460316458],[-71.749535611,41.460347459],[-71.749771612,41.460362458],[-71.750069612,41.460373459],[-71.750244612,41.460369459],[-71.750412612,41.460354458],[-71.750656612,41.460316458],[-71.751152612,41.460255459],[-71.751335612,41.460236459],[-71.751488612,41.460225458],[-71.751755613,41.460225458],[-71.751976612,41.460236459],[-71.752205612,41.460270459],[-71.752472613,41.460301458],[-71.752670613,41.460320458],[-71.753098613,41.460339458],[-71.753369613,41.460358458],[-71.753586613,41.460373459],[-71.753914613,41.460404459],[-71.754211614,41.460442458],[-71.754433613,41.460480458],[-71.754791614,41.460556458],[-71.755333614,41.460682459],[-71.755478614,41.460709458],[-71.755859614,41.460759459],[-71.756253614,41.460835459],[-71.756783614,41.460915459],[-71.757164614,41.460968458],[-71.757523615,41.461037458],[-71.757570614,41.461047459],[-71.758450614,41.461234458],[-71.758564614,41.461249459],[-71.758713615,41.461258458],[-71.758881615,41.461247459],[-71.759056615,41.461224459],[-71.759956615,41.461079458],[-71.760422615,41.461010458],[-71.760774615,41.460962458],[-71.761581616,41.460846458],[-71.762154616,41.460759459],[-71.762703616,41.460682459],[-71.762947616,41.460656458],[-71.763268616,41.460606459],[-71.764150617,41.460484458],[-71.764580617,41.460415458],[-71.765091617,41.460339458],[-71.765854617,41.460244458],[-71.766884618,41.460171458],[-71.767487618,41.460125458],[-71.769020618,41.460015458],[-71.769394618,41.459996458],[-71.769676619,41.459988458],[-71.770157619,41.459984457],[-71.770378619,41.459988458],[-71.770889618,41.460011458],[-71.771400619,41.460041458],[-71.771515619,41.460053458],[-71.771759619,41.460068458],[-71.771950619,41.460083457],[-71.77322462,41.460171458],[-71.774048619,41.460236458],[-71.77438462,41.460286458],[-71.77494862,41.460385458],[-71.77551162,41.460545458],[-71.77565062,41.460587458],[-71.776222621,41.460789458],[-71.776520621,41.460911458],[-71.776871621,41.461064458],[-71.777451621,41.461293458],[-71.777977621,41.461460458],[-71.778450622,41.461476458],[-71.778885621,41.461464458],[-71.779465622,41.461457458],[-71.779778622,41.461472458],[-71.779922622,41.461472458],[-71.780098622,41.461502458],[-71.780212622,41.461548458],[-71.780327621,41.461628458],[-71.780510622,41.461773458],[-71.780609622,41.461846458],[-71.780724622,41.461911458],[-71.780869622,41.461926458],[-71.780983622,41.461926458],[-71.781136622,41.461918458],[-71.781487622,41.461872458],[-71.782700623,41.461701457],[-71.782873623,41.461693458],[-71.783051623,41.461689458],[-71.783516623,41.461701457],[-71.783661623,41.461716458],[-71.783791623,41.461739457],[-71.784271623,41.461911458],[-71.785461623,41.462380458],[-71.785995624,41.462597457],[-71.786736624,41.462887458],[-71.786987624,41.462994458],[-71.787224624,41.463101458],[-71.787384625,41.463181458],[-71.787552624,41.463288458],[-71.787933624,41.463509458],[-71.788071624,41.463566458],[-71.789040625,41.463936458],[-71.789513625,41.464123458],[-71.790703625,41.464592458],[-71.790909626,41.464653458],[-71.791161626,41.464707458],[-71.791267625,41.464718458],[-71.791374626,41.464722458],[-71.791534626,41.464711458],[-71.791687626,41.464680458],[-71.791748626,41.464664458],[-71.791847626,41.464638458],[-71.792061626,41.464566458],[-71.792419626,41.464459458],[-71.792908626,41.464287458],[-71.793594626,41.464039458],[-71.793907626,41.463913458],[-71.794411626,41.463692458],[-71.794601627,41.463597458],[-71.794701626,41.463559458],[-71.794767789,41.463461063],[-71.794815627,41.463395458],[-71.794868627,41.462937458],[-71.794907627,41.462452458],[-71.794899626,41.462044458],[-71.794846627,41.460923457],[-71.794823626,41.460560457],[-71.794823626,41.460350457],[-71.794899626,41.460217458],[-71.794968627,41.460156457],[-71.795067627,41.460095457],[-71.795189626,41.460049457],[-71.795276627,41.460023457],[-71.795646646,41.459992539],[-71.795840627,41.457466457],[-71.796296627,41.451524455],[-71.796363626,41.449888455],[-71.796388627,41.449263455],[-71.796468627,41.447358455],[-71.796503626,41.446505455],[-71.796609627,41.443946454],[-71.796619828,41.443705023],[-71.796648171,41.443018736],[-71.796649626,41.442975454],[-71.796664626,41.442620454],[-71.796671129,41.442462848],[-71.796671626,41.442443454],[-71.796678626,41.442268454],[-71.796681257,41.442217584],[-71.796682003,41.44219954],[-71.796684626,41.442123453],[-71.796695626,41.441866454],[-71.796696806,41.441841088],[-71.796699626,41.441772795],[-71.796699626,41.441755453],[-71.796702626,41.441680453],[-71.796703626,41.441656453],[-71.796708626,41.441529454],[-71.796724626,41.441152453],[-71.796729285,41.441054623],[-71.796730626,41.441022144],[-71.796730626,41.441015453],[-71.796731626,41.440982453],[-71.796732626,41.440972453],[-71.796737626,41.440846453],[-71.796752626,41.440472453],[-71.796757637,41.440368065],[-71.796758795,41.440340008],[-71.796759626,41.440303454],[-71.796764736,41.440196155],[-71.796765626,41.440174453],[-71.796771546,41.440031254],[-71.796778626,41.439848453],[-71.796813626,41.438996453],[-71.796825626,41.438713453],[-71.796844657,41.438260745],[-71.796872128,41.43759549],[-71.796902994,41.436477156],[-71.796910626,41.436159452],[-71.796938626,41.435162452],[-71.796946421,41.434903652],[-71.796953491,41.434647463],[-71.796971626,41.433965452],[-71.79697718,41.433789122],[-71.796979331,41.433711168],[-71.796991906,41.433415341],[-71.797076626,41.431372452],[-71.797112626,41.430508451],[-71.797147626,41.429687451],[-71.797253626,41.42722745],[-71.797286626,41.426471451],[-71.797287626,41.42640745],[-71.797287626,41.42638445],[-71.797296625,41.42620745],[-71.797326626,41.42561045],[-71.797337625,41.42541145],[-71.797349626,41.42515545],[-71.797360625,41.42492745],[-71.797361625,41.42490345],[-71.797374896,41.424635238],[-71.797387802,41.42436546],[-71.797398625,41.42413545],[-71.797462626,41.42279145],[-71.797655625,41.418759449],[-71.797667129,41.418523527],[-71.797692339,41.417995825],[-71.797705195,41.417729818],[-71.797717201,41.417477342],[-71.79772253,41.417370733],[-71.797723625,41.417344449],[-71.797738625,41.417026448],[-71.797738942,41.417020585],[-71.797740535,41.416985942],[-71.797743851,41.416918453],[-71.797576625,41.416919449],[-71.797392625,41.416912449],[-71.797322625,41.416893449],[-71.797221625,41.416805449],[-71.797100625,41.416724449],[-71.796936625,41.416627449],[-71.796829625,41.416535448],[-71.796671624,41.416480448],[-71.796538625,41.416423448],[-71.796470625,41.416387449],[-71.796399624,41.416286448],[-71.796318624,41.416232449],[-71.796289625,41.416077449],[-71.796189625,41.415949448],[-71.796178625,41.415834448],[-71.796198625,41.415471448],[-71.796199625,41.415434448],[-71.796196625,41.415178448],[-71.796176625,41.415052448],[-71.796170624,41.414962448],[-71.796016625,41.414797449],[-71.795998625,41.414675448],[-71.796023625,41.414553448],[-71.796113624,41.414474448],[-71.796227624,41.414407449],[-71.796300624,41.414325448],[-71.796450625,41.414286448],[-71.796574624,41.414230448],[-71.796637625,41.414161448],[-71.796790624,41.414053448],[-71.796917625,41.414009448],[-71.796938625,41.413880448],[-71.796998625,41.413861448],[-71.797017625,41.413838448],[-71.797090625,41.413759448],[-71.797195625,41.413788448],[-71.797388625,41.413844448],[-71.797433625,41.413790448],[-71.797475625,41.413713448],[-71.797509625,41.413660448],[-71.797527624,41.413633448],[-71.797558625,41.413467448],[-71.797598625,41.413345448],[-71.797545625,41.413184448],[-71.797555625,41.412999448],[-71.797538625,41.412778448],[-71.797573625,41.412561448],[-71.797523625,41.412364447],[-71.797322625,41.412261448],[-71.797269625,41.412144448],[-71.797372624,41.411958448],[-71.797524625,41.411711448],[-71.797561625,41.411577448],[-71.797554625,41.411543447],[-71.797448625,41.411394447],[-71.797285625,41.411357448],[-71.797132625,41.411401448],[-71.797093625,41.411336448],[-71.797114625,41.411313447],[-71.797396625,41.411192447],[-71.797591625,41.411158447],[-71.797921625,41.410959447],[-71.798295625,41.410828447],[-71.798643625,41.410083447],[-71.798374625,41.408927447],[-71.798082625,41.407986447],[-71.797264625,41.407257447],[-71.796479624,41.407628447],[-71.795980624,41.407297447],[-71.796349624,41.406709446],[-71.796962624,41.405965446],[-71.798805625,41.405003446],[-71.802768626,41.404646446],[-71.803203626,41.404338446],[-71.803475626,41.404073446],[-71.802021626,41.402765446],[-71.801317625,41.401984446],[-71.801374625,41.401874445],[-71.801003625,41.401539445],[-71.800883625,41.401410445],[-71.800719625,41.401308445],[-71.800555625,41.401240446],[-71.800536625,41.401114445],[-71.800683626,41.401057445],[-71.800967625,41.401018445],[-71.800984625,41.400938445],[-71.800955626,41.400884445],[-71.800938626,41.400877445],[-71.800752625,41.400905445],[-71.800603625,41.400979445],[-71.800537625,41.400952445],[-71.800485625,41.400653445],[-71.800459625,41.400450445],[-71.800452625,41.400359445],[-71.800575625,41.400276445],[-71.800755625,41.400216445],[-71.800761626,41.400098445],[-71.800667625,41.399960445],[-71.800579625,41.399745445],[-71.800487625,41.399620445],[-71.800285625,41.399502445],[-71.800090625,41.399444445],[-71.799938625,41.399444445],[-71.799824625,41.399340445],[-71.799717625,41.399244445],[-71.799689625,41.399184445],[-71.799709625,41.399051445],[-71.799768625,41.398900445],[-71.799792625,41.398783445],[-71.799756625,41.398597445],[-71.799736625,41.398572445],[-71.799541625,41.398451445],[-71.799310625,41.398339444],[-71.799093624,41.398312445],[-71.798653625,41.398332445],[-71.798534625,41.398269445],[-71.798377624,41.398276445],[-71.798292624,41.398368445],[-71.798282625,41.398397445],[-71.798227625,41.398451445],[-71.798180624,41.398456445],[-71.797829624,41.398501445],[-71.797661624,41.398507445],[-71.797264624,41.398542445],[-71.796927624,41.398516445],[-71.796453624,41.398472445],[-71.796033624,41.398381445],[-71.795668624,41.398248445],[-71.795118623,41.398085445],[-71.794711623,41.397935445],[-71.794613623,41.397845445],[-71.794516623,41.397795445],[-71.794338623,41.397679445],[-71.794298623,41.397620445],[-71.794142623,41.397415445],[-71.794069623,41.397309445],[-71.794061623,41.397246445],[-71.794103623,41.397132445],[-71.794371623,41.397043445],[-71.794897623,41.397029445],[-71.795342624,41.397052444],[-71.796117624,41.396949445],[-71.796733624,41.396933445],[-71.797247624,41.396903445],[-71.797722624,41.396820444],[-71.798072625,41.396702444],[-71.798306625,41.396462445],[-71.798334624,41.396424445],[-71.798491624,41.396212445],[-71.798528624,41.396127445],[-71.798495624,41.395935445],[-71.798495624,41.395908444],[-71.798469624,41.395745444],[-71.798463624,41.395571444],[-71.798341624,41.395399444],[-71.798209625,41.395263444],[-71.798206624,41.395260444],[-71.798156624,41.395104444],[-71.798111625,41.394896444],[-71.798057624,41.394822444],[-71.797925624,41.394578444],[-71.797650624,41.394020444],[-71.797588624,41.393906444],[-71.797535624,41.393809444],[-71.797440624,41.393622444],[-71.797223624,41.393217444],[-71.796989624,41.393024444],[-71.796494623,41.392871444],[-71.796062624,41.392790444],[-71.795517624,41.392674444],[-71.795203623,41.392681444],[-71.794704623,41.392627444],[-71.794064623,41.392533444],[-71.793377622,41.392455444],[-71.793137623,41.392410443],[-71.792994622,41.392369444],[-71.792832622,41.392345444],[-71.792690623,41.392290444],[-71.792537622,41.392266444],[-71.792396622,41.392212444],[-71.792265622,41.392150444],[-71.792144622,41.392129444],[-71.791818622,41.392137443],[-71.791654622,41.392157444],[-71.791502621,41.392191444],[-71.791408622,41.392248444],[-71.791276622,41.392297444],[-71.791132621,41.392371444],[-71.791104622,41.392425444],[-71.791099622,41.392546444],[-71.791177622,41.392613444],[-71.791209621,41.392670444],[-71.791174621,41.392732444],[-71.791044622,41.392818444],[-71.790879621,41.392861444],[-71.790558622,41.392872444],[-71.790465622,41.392853444],[-71.790324622,41.392800444],[-71.790191622,41.392720444],[-71.790029621,41.392631444],[-71.789926621,41.392529444],[-71.789740621,41.392308444],[-71.789665622,41.392181444],[-71.789604621,41.392066444],[-71.789530622,41.391947444],[-71.789460621,41.391851444],[-71.789344621,41.391761444],[-71.789222621,41.391633444],[-71.789178621,41.391537444],[-71.789113621,41.391439444],[-71.788983621,41.391369444],[-71.788870621,41.391273444],[-71.788823621,41.391143443],[-71.788774621,41.391088444],[-71.788600621,41.390988443],[-71.78850162,41.390905444],[-71.78826662,41.390748444],[-71.78786162,41.390493444],[-71.78774062,41.390410444],[-71.787617621,41.390342444],[-71.78750662,41.390272444],[-71.78738862,41.390208443],[-71.787208621,41.390036443],[-71.786974621,41.389908444],[-71.78691462,41.389893444],[-71.78676362,41.389818443],[-71.786664621,41.389718444],[-71.78657762,41.389741443],[-71.78654762,41.389754444],[-71.78643962,41.389801443],[-71.78633062,41.389808444],[-71.78618062,41.389805444],[-71.78599562,41.389767444],[-71.78583262,41.389692444],[-71.78568562,41.389659444],[-71.78552562,41.389632444],[-71.78536662,41.389582444],[-71.78520062,41.389540444],[-71.785071619,41.389486443],[-71.784956619,41.389416444],[-71.78485062,41.389331443],[-71.784725619,41.389217443],[-71.784661619,41.389133444],[-71.78453762,41.389181444],[-71.784512619,41.389277443],[-71.78449662,41.389389443],[-71.784491619,41.389527443],[-71.78445562,41.389559444],[-71.784328619,41.389571444],[-71.784180619,41.389573444],[-71.784168619,41.389615444],[-71.78416762,41.389739443],[-71.784026619,41.389744444],[-71.783895619,41.389694444],[-71.783790619,41.389672444],[-71.783718619,41.389625443],[-71.783732619,41.389506443],[-71.783770619,41.389390443],[-71.783813619,41.389283444],[-71.783926619,41.389243444],[-71.784096619,41.389204444],[-71.784151619,41.389160443],[-71.784307619,41.389089444],[-71.784415619,41.389007444],[-71.784485619,41.388901443],[-71.784541619,41.388860444],[-71.78459262,41.388756444],[-71.78463162,41.388645444],[-71.78465262,41.388531443],[-71.78465362,41.388406444],[-71.784637619,41.388382443],[-71.784531619,41.388260443],[-71.784461619,41.387901444],[-71.784294619,41.387692443],[-71.784256619,41.387570444],[-71.784256619,41.387441443],[-71.78422562,41.387376444],[-71.784172619,41.387355443],[-71.784139619,41.387422443],[-71.784124619,41.387544443],[-71.784119619,41.387666444],[-71.784119619,41.387923444],[-71.78414862,41.388172444],[-71.784123619,41.388200443],[-71.783943619,41.388209443],[-71.783877619,41.388144443],[-71.783873619,41.387904444],[-71.783880619,41.387789443],[-71.783897619,41.387671444],[-71.783964619,41.387436444],[-71.784019619,41.387322443],[-71.784095619,41.387080443],[-71.784125619,41.386953443],[-71.784123619,41.386887443],[-71.784120619,41.386798443],[-71.784032619,41.386702443],[-71.783937619,41.386615443],[-71.783808619,41.386549443],[-71.783652619,41.386496443],[-71.783532619,41.386475443],[-71.783360619,41.386489443],[-71.783215618,41.386530443],[-71.783069619,41.386556443],[-71.782765618,41.386694443],[-71.782640619,41.386760443],[-71.782520619,41.386934443],[-71.782443619,41.387035443],[-71.782338618,41.387269443],[-71.782291619,41.387400443],[-71.782220618,41.387470443],[-71.782115619,41.387615443],[-71.782083618,41.387729444],[-71.782067618,41.387842444],[-71.782067618,41.388330444],[-71.782059619,41.388471443],[-71.782037619,41.388585444],[-71.781917619,41.388657444],[-71.781797618,41.388753444],[-71.781742619,41.388878444],[-71.781602618,41.388942443],[-71.781468618,41.388998443],[-71.781370618,41.389013444],[-71.781221619,41.389019443],[-71.781059618,41.389019443],[-71.780912618,41.388983443],[-71.780612618,41.388880444],[-71.780530618,41.388827443],[-71.780455618,41.388719444],[-71.780430618,41.388601444],[-71.780425618,41.388360443],[-71.780427618,41.388120443],[-71.780463618,41.387993443],[-71.780547618,41.387795443],[-71.780529618,41.387688444],[-71.780500618,41.387567444],[-71.780492618,41.387457443],[-71.780448618,41.387348443],[-71.780423618,41.387216443],[-71.780421618,41.387092443],[-71.780367618,41.387008444],[-71.780314618,41.386948444],[-71.780181618,41.386857443],[-71.780029618,41.386801443],[-71.779881617,41.386740443],[-71.779783617,41.386739443],[-71.779632618,41.386774443],[-71.779555618,41.386804443],[-71.779529617,41.386913443],[-71.779460618,41.386968444],[-71.779372617,41.387056443],[-71.779305618,41.387160444],[-71.779232618,41.387256444],[-71.779222617,41.387285443],[-71.779214618,41.387310443],[-71.779297617,41.387389443],[-71.779309618,41.387486443],[-71.779288618,41.387512444],[-71.779209618,41.387511444],[-71.779190618,41.387503443],[-71.779163617,41.387549444],[-71.779203617,41.387663444],[-71.779327618,41.387708444],[-71.779346618,41.387760444],[-71.779351618,41.388015444],[-71.779307618,41.388144443],[-71.779255617,41.388251444],[-71.779225618,41.388364444],[-71.779212618,41.388493443],[-71.779170618,41.388580444],[-71.779048617,41.388658444],[-71.778995618,41.388716444],[-71.778901618,41.388834444],[-71.778885617,41.388937444],[-71.778837618,41.388991444],[-71.778761618,41.389124444],[-71.778759618,41.389370443],[-71.778765618,41.389644444],[-71.778832617,41.389746444],[-71.778875618,41.389851444],[-71.778987617,41.390386444],[-71.779228618,41.390949444],[-71.779244618,41.391071444],[-71.779320618,41.391218444],[-71.779370618,41.391335444],[-71.779406618,41.391444444],[-71.779431617,41.391589445],[-71.779582618,41.391845444],[-71.779607618,41.391970444],[-71.779677618,41.392082444],[-71.779760618,41.392166444],[-71.779810618,41.392277444],[-71.779925618,41.392369445],[-71.779968618,41.392468445],[-71.780054618,41.392508444],[-71.780209619,41.392602445],[-71.780321618,41.392684444],[-71.780439618,41.392749444],[-71.780596619,41.392805444],[-71.780687618,41.392847444],[-71.780835618,41.392923444],[-71.780881618,41.392974445],[-71.780954618,41.393072445],[-71.781063619,41.393137444],[-71.781084619,41.393248445],[-71.781010618,41.393335444],[-71.780907619,41.393420445],[-71.780783618,41.393496445],[-71.780436618,41.393626444],[-71.780295618,41.393671445],[-71.780128618,41.393715445],[-71.780035618,41.393776444],[-71.779870618,41.393859444],[-71.779732618,41.393920445],[-71.779721618,41.393924445],[-71.779600618,41.393969445],[-71.779352618,41.394113445],[-71.779275618,41.394268445],[-71.779214618,41.394372445],[-71.779092618,41.394463445],[-71.779007618,41.394554445],[-71.778937618,41.394574445],[-71.778819618,41.394564445],[-71.778737618,41.394492445],[-71.778513617,41.394351445],[-71.778405618,41.394270445],[-71.778312618,41.394176445],[-71.778290618,41.394082445],[-71.778288618,41.393843445],[-71.778411618,41.393744445],[-71.778411618,41.393649445],[-71.778370618,41.393553445],[-71.778284617,41.393430444],[-71.778234618,41.393396445],[-71.778106617,41.393327444],[-71.777974617,41.393302445],[-71.777808618,41.393264445],[-71.777575618,41.393266445],[-71.777207617,41.393271444],[-71.777057617,41.393300445],[-71.776831617,41.393336445],[-71.776740617,41.393366444],[-71.776555617,41.393437445],[-71.776434617,41.393466444],[-71.776231616,41.393529445],[-71.776184617,41.393589445],[-71.776043617,41.393648445],[-71.775897617,41.393738444],[-71.775778617,41.393819445],[-71.775709616,41.393872445],[-71.775635617,41.393958445],[-71.775153617,41.394131445],[-71.775000617,41.394218445],[-71.774673616,41.394452445],[-71.774435617,41.394579445],[-71.774284616,41.394645445],[-71.774138616,41.394717445],[-71.773987617,41.394820445],[-71.773737616,41.395001445],[-71.773652616,41.395116445],[-71.773548616,41.395238445],[-71.773496616,41.395360445],[-71.773522616,41.395363445],[-71.773643616,41.395231445],[-71.773895616,41.394976445],[-71.774084617,41.394811445],[-71.774271616,41.394728445],[-71.774297617,41.394722445],[-71.774312616,41.394762445],[-71.774149616,41.394933445],[-71.774102617,41.395011445],[-71.773961616,41.395169445],[-71.773742616,41.395389445],[-71.773472616,41.395610445],[-71.773175616,41.395919446],[-71.773159616,41.395940445],[-71.773168616,41.395984445],[-71.773200616,41.395980445],[-71.773333616,41.395903445],[-71.773627616,41.395639445],[-71.774098616,41.395253445],[-71.775001617,41.394442445],[-71.775075617,41.394343445],[-71.775206617,41.394237445],[-71.775329617,41.394157445],[-71.775399617,41.394157445],[-71.775260616,41.394362445],[-71.775085616,41.394482445],[-71.775002617,41.394565445],[-71.774822617,41.394761445],[-71.774179617,41.395420445],[-71.773798616,41.395728445],[-71.773423616,41.396018445],[-71.773090616,41.396228446],[-71.772105616,41.396738446],[-71.771816616,41.396910446],[-71.771640616,41.397010446],[-71.771528616,41.397068446],[-71.771440615,41.397142446],[-71.771411616,41.397198446],[-71.771378615,41.397322446],[-71.771377615,41.397435446],[-71.771369616,41.397497446],[-71.771385616,41.397619445],[-71.771474615,41.397899446],[-71.771515615,41.398084446],[-71.771549616,41.398282445],[-71.771609615,41.398547446],[-71.771633615,41.398630446],[-71.771663616,41.398706446],[-71.771709615,41.398788445],[-71.771764616,41.398871446],[-71.771866615,41.398997446],[-71.771906616,41.399053446],[-71.772004616,41.399171446],[-71.772201616,41.399393446],[-71.772266616,41.399473446],[-71.772457616,41.399659446],[-71.772560616,41.399786446],[-71.772638616,41.399909446],[-71.772666616,41.399986446],[-71.772715616,41.400188446],[-71.772723616,41.400244446],[-71.772714616,41.400303446],[-71.772697616,41.400360446],[-71.772674616,41.400412446],[-71.772644616,41.400461446],[-71.772591616,41.400523446],[-71.772508616,41.400599447],[-71.772471616,41.400627446],[-71.772330616,41.400736447],[-71.772228616,41.400795447],[-71.772102616,41.400860446],[-71.771887616,41.400994446],[-71.771698616,41.401090446],[-71.771538616,41.401195446],[-71.771423616,41.401252446],[-71.771303616,41.401303446],[-71.771202615,41.401354446],[-71.771103615,41.401398447],[-71.770991615,41.401429446],[-71.770890615,41.401435447],[-71.770785616,41.401415447],[-71.770704616,41.401404446],[-71.770611616,41.401385446],[-71.770489615,41.401346446],[-71.770380616,41.401303446],[-71.770192615,41.401244447],[-71.770076615,41.401188446],[-71.769880615,41.401039446],[-71.769717616,41.400931447],[-71.769533615,41.400776447],[-71.769425615,41.400713447],[-71.769329615,41.400651446],[-71.769253615,41.400572446],[-71.769096615,41.400343446],[-71.769046615,41.400254446],[-71.768878615,41.400027446],[-71.768808615,41.399941446],[-71.768724614,41.399885446],[-71.768617615,41.399880446],[-71.768547615,41.399933446],[-71.768524615,41.400019446],[-71.768538615,41.400094446],[-71.768633615,41.400228447],[-71.768684614,41.400308447],[-71.768715615,41.400376446],[-71.768723614,41.400439446],[-71.768704614,41.400496446],[-71.768645614,41.400545446],[-71.768564615,41.400580447],[-71.768484615,41.400592446],[-71.768406615,41.400569446],[-71.768213615,41.400450446],[-71.768131615,41.400391446],[-71.768056615,41.400330446],[-71.767921615,41.400188447],[-71.767850614,41.400125446],[-71.767791614,41.400066446],[-71.767589615,41.399832446],[-71.767550615,41.399780447],[-71.767520614,41.399723447],[-71.767496614,41.399660446],[-71.767479614,41.399580446],[-71.767488615,41.399516446],[-71.767479614,41.399459446],[-71.767420614,41.399406446],[-71.767299615,41.399313447],[-71.767180615,41.399214446],[-71.767307614,41.399101446],[-71.767333614,41.399057446],[-71.767370614,41.399007446],[-71.767433615,41.399016446],[-71.767497614,41.399050446],[-71.767582614,41.399105446],[-71.767874614,41.399277446],[-71.768086614,41.399391446],[-71.768205615,41.399443446],[-71.768398615,41.399501446],[-71.768533614,41.399527446],[-71.768873615,41.399577446],[-71.769003615,41.399585446],[-71.769136615,41.399585446],[-71.769255615,41.399567447],[-71.769367615,41.399532446],[-71.769471615,41.399492446],[-71.769556615,41.399444446],[-71.769634615,41.399378446],[-71.769744615,41.399215446],[-71.769818615,41.399144446],[-71.769894615,41.399062446],[-71.769975615,41.398986446],[-71.770065615,41.398922446],[-71.770146616,41.398854446],[-71.770286615,41.398681446],[-71.770396616,41.398519446],[-71.770492615,41.398351446],[-71.770524615,41.398273446],[-71.770547615,41.398180446],[-71.770546615,41.398090446],[-71.770524615,41.398006446],[-71.770481615,41.397920446],[-71.770307615,41.397671446],[-71.770263616,41.397592446],[-71.770100615,41.397359446],[-71.769908615,41.397176445],[-71.769904615,41.397164446],[-71.769860615,41.397109446],[-71.769814615,41.397062446],[-71.769706615,41.396975445],[-71.769508615,41.396858445],[-71.769442615,41.396808446],[-71.769364615,41.396765445],[-71.769286615,41.396738446],[-71.769281615,41.396798445],[-71.769317615,41.396811446],[-71.769342615,41.396850446],[-71.769365615,41.396915445],[-71.769377615,41.396974445],[-71.769418615,41.396983446],[-71.769480615,41.396956445],[-71.769504614,41.396968446],[-71.769483615,41.397081446],[-71.769466615,41.397140446],[-71.769529615,41.397254446],[-71.769526615,41.397329445],[-71.769562614,41.397329445],[-71.769609615,41.397369445],[-71.769576615,41.397397446],[-71.769524615,41.397455446],[-71.769542614,41.397568446],[-71.769556615,41.397627446],[-71.769590615,41.397675446],[-71.769598615,41.397743446],[-71.769598615,41.397817446],[-71.769531615,41.397824446],[-71.769511615,41.397780446],[-71.769510615,41.397649446],[-71.769469615,41.397616446],[-71.769380615,41.397406445],[-71.769314615,41.397226446],[-71.769268615,41.397138446],[-71.769217615,41.397059445],[-71.769148615,41.396876445],[-71.769069615,41.396723445],[-71.768980614,41.396479446],[-71.768934615,41.396398445],[-71.768785614,41.396206446],[-71.768695615,41.396116445],[-71.768658615,41.396054446],[-71.768682615,41.395997446],[-71.768643615,41.395949445],[-71.768576614,41.395903445],[-71.768526615,41.395861446],[-71.768476614,41.395805445],[-71.768453614,41.395752445],[-71.768436614,41.395690445],[-71.768406615,41.395627446],[-71.768364615,41.395555445],[-71.768356614,41.395479445],[-71.768412614,41.395335446],[-71.768446615,41.395263445],[-71.768440614,41.395218446],[-71.768392614,41.395176446],[-71.768362614,41.395117446],[-71.768318614,41.395062446],[-71.768262614,41.395014445],[-71.768195615,41.394982446],[-71.768143614,41.394950445],[-71.768130614,41.394835445],[-71.768069614,41.394826446],[-71.768012614,41.394876445],[-71.767941615,41.394925446],[-71.767849614,41.394913445],[-71.767746615,41.394917445],[-71.767589614,41.394957445],[-71.767517614,41.394995445],[-71.767446614,41.395040446],[-71.767315614,41.395144445],[-71.767038614,41.395439445],[-71.766722614,41.395893446],[-71.766512614,41.396181445],[-71.766453614,41.396284446],[-71.766399614,41.396409445],[-71.766359614,41.396464446],[-71.766200614,41.396612446],[-71.766156614,41.396618446],[-71.766052613,41.396622446],[-71.765979614,41.396604445],[-71.765948614,41.396564445],[-71.765932614,41.396505446],[-71.765860613,41.396372445],[-71.765791614,41.396318445],[-71.765735614,41.396282446],[-71.765658614,41.396261446],[-71.765679614,41.396363446],[-71.765737614,41.396502446],[-71.765755614,41.396562446],[-71.765789614,41.396621446],[-71.765834614,41.396680446],[-71.765922614,41.396713446],[-71.765997613,41.396764445],[-71.765970614,41.396806446],[-71.765910614,41.396836446],[-71.765771614,41.396931446],[-71.765559614,41.397124446],[-71.765468613,41.397247445],[-71.765440614,41.397297446],[-71.765398614,41.397357446],[-71.765356613,41.397433446],[-71.765327614,41.397518446],[-71.765285614,41.397591446],[-71.765153614,41.397714446],[-71.765087614,41.397783446],[-71.765035614,41.397849446],[-71.764996614,41.397918446],[-71.764976614,41.397986446],[-71.764966613,41.398048446],[-71.764985613,41.398114446],[-71.765016614,41.398166446],[-71.765010614,41.398207446],[-71.764954614,41.398263446],[-71.764900614,41.398304446],[-71.764850613,41.398356446],[-71.764802614,41.398415446],[-71.764735613,41.398472446],[-71.764645614,41.398519446],[-71.764549614,41.398563446],[-71.764487614,41.398608446],[-71.764483613,41.398687446],[-71.764528614,41.398715446],[-71.764713613,41.398740446],[-71.764741614,41.398783446],[-71.764732613,41.398845446],[-71.764692613,41.398909446],[-71.764627614,41.398973446],[-71.764557613,41.399029446],[-71.764483613,41.399081446],[-71.764413613,41.399140446],[-71.764353614,41.399206446],[-71.764189613,41.399432446],[-71.764149613,41.399515446],[-71.764111613,41.399613446],[-71.764022614,41.399775446],[-71.764000614,41.399824446],[-71.763941613,41.399960446],[-71.763897613,41.400034447],[-71.763862613,41.400115446],[-71.763854613,41.400207447],[-71.763838613,41.400280446],[-71.763789613,41.400434446],[-71.763756613,41.400515447],[-71.763641613,41.400709447],[-71.763570613,41.400842446],[-71.763526613,41.400901446],[-71.763473613,41.400954446],[-71.763442613,41.401007447],[-71.763454613,41.401061447],[-71.763500613,41.401123447],[-71.763489613,41.401170446],[-71.763430613,41.401226446],[-71.763317613,41.401313447],[-71.763248613,41.401350447],[-71.763167613,41.401385446],[-71.763086613,41.401411447],[-71.762985613,41.401414447],[-71.762907613,41.401442446],[-71.762847613,41.401497447],[-71.762777613,41.401536447],[-71.762451613,41.401584447],[-71.762326613,41.401592447],[-71.762092613,41.401562446],[-71.761969613,41.401581446],[-71.761851613,41.401620446],[-71.761748612,41.401643447],[-71.761644612,41.401627447],[-71.761541613,41.401636446],[-71.761329613,41.401706447],[-71.761238612,41.401760447],[-71.761165612,41.401827447],[-71.761076613,41.401892447],[-71.760981612,41.401951447],[-71.760887612,41.401997447],[-71.760829612,41.402038447],[-71.760867612,41.402149447],[-71.760899613,41.402219447],[-71.760978613,41.402276447],[-71.761054613,41.402324447],[-71.761040612,41.402337446],[-71.760881613,41.402419447],[-71.760809612,41.402387447],[-71.760717612,41.402354447],[-71.760608613,41.402334447],[-71.760538612,41.402372447],[-71.760464612,41.402438447],[-71.760398612,41.402522447],[-71.760362612,41.402597447],[-71.760311612,41.402648447],[-71.760233612,41.402674447],[-71.760161613,41.402722447],[-71.760107612,41.402795447],[-71.760047612,41.402937447],[-71.759981612,41.402986447],[-71.759787612,41.403052447],[-71.759672612,41.403085447],[-71.759550612,41.403126447],[-71.759446612,41.403172447],[-71.759351612,41.403233448],[-71.759258612,41.403307447],[-71.758839611,41.403678447],[-71.758737612,41.403752447],[-71.758546611,41.403881447],[-71.758342612,41.404009448],[-71.758257611,41.404075447],[-71.758187612,41.404148448],[-71.758138611,41.404235447],[-71.758029612,41.404489447],[-71.757970612,41.404657447],[-71.757978611,41.404715448],[-71.758021611,41.404748448],[-71.758021611,41.404769448],[-71.757940611,41.404889448],[-71.757824611,41.405030447],[-71.757707611,41.405192447],[-71.757532611,41.405406447],[-71.757486612,41.405478447],[-71.757416611,41.405608448],[-71.757354611,41.405673447],[-71.757298611,41.405672447],[-71.757242611,41.405633447],[-71.756268611,41.407293448],[-71.756138611,41.407455448],[-71.756008611,41.407594448],[-71.755945611,41.407669448],[-71.755872611,41.407730448],[-71.755678611,41.407831448],[-71.755585611,41.407874449],[-71.755477611,41.407910448],[-71.75524961,41.407966448],[-71.755147611,41.407985448],[-71.754809611,41.408017448],[-71.754379611,41.408044448],[-71.75425461,41.408047448],[-71.75403961,41.408044448],[-71.75390461,41.408035448],[-71.75379761,41.408028449],[-71.75359161,41.408002448],[-71.75315661,41.407958448],[-71.75272261,41.407927448],[-71.75260361,41.407912449],[-71.75241061,41.407880448],[-71.752187609,41.407859448],[-71.75200761,41.407849448],[-71.75182861,41.407826448],[-71.751797609,41.407822448],[-71.751624609,41.407804448],[-71.75132361,41.407786448],[-71.751123609,41.407787448],[-71.75093761,41.407805448],[-71.750635609,41.407825448],[-71.750471609,41.407830448],[-71.750399609,41.407814449],[-71.750324609,41.407787448],[-71.750173609,41.407712448],[-71.750034609,41.407625448],[-71.749944609,41.407585448],[-71.749859609,41.407541449],[-71.749720609,41.407451448],[-71.749652609,41.407420448],[-71.749547609,41.407395448],[-71.749482609,41.407365449],[-71.749446609,41.407255448],[-71.749406609,41.407195448],[-71.749325609,41.407202448],[-71.749250609,41.407240448],[-71.749176609,41.407264448],[-71.749102609,41.407278448],[-71.748952608,41.407318448],[-71.748863609,41.407330448],[-71.748674609,41.407336448],[-71.748578608,41.407345449],[-71.748484608,41.407360448],[-71.748393609,41.407358448],[-71.748350608,41.407353448],[-71.748227608,41.407337448],[-71.748171608,41.407301448],[-71.748081608,41.407199448],[-71.748026609,41.407144448],[-71.747973608,41.407080448],[-71.747894609,41.406935448],[-71.747864608,41.406867448],[-71.747848608,41.406796448],[-71.747853609,41.406722448],[-71.747855609,41.406716448],[-71.747875609,41.406658448],[-71.747936608,41.406540448],[-71.747981608,41.406481448],[-71.748019608,41.406416448],[-71.748105609,41.406210448],[-71.748132608,41.406127448],[-71.748182609,41.405904448],[-71.748216608,41.405675448],[-71.748233608,41.405595448],[-71.748245609,41.405480448],[-71.748250608,41.405438447],[-71.748276608,41.405285448],[-71.748282609,41.405201448],[-71.748258608,41.405053448],[-71.748233608,41.404971447],[-71.748202609,41.404897448],[-71.748101608,41.404695448],[-71.748056608,41.404624448],[-71.747995608,41.404556448],[-71.747865608,41.404425447],[-71.747793608,41.404369447],[-71.747545608,41.404233447],[-71.747473608,41.404182448],[-71.747411608,41.404119448],[-71.747242608,41.403861447],[-71.747147608,41.403724447],[-71.747045608,41.403600448],[-71.746937608,41.403447448],[-71.746873608,41.403380448],[-71.746569607,41.403121447],[-71.746382608,41.403012448],[-71.746209608,41.402897448],[-71.746059608,41.402808447],[-71.745818607,41.402659447],[-71.745659607,41.402549448],[-71.745585607,41.402500447],[-71.745364607,41.402341447],[-71.745346607,41.402339447],[-71.745288607,41.402332448],[-71.745263607,41.402332448],[-71.745021607,41.402374448],[-71.744952607,41.402344447],[-71.744821607,41.402300447],[-71.744801607,41.402293448],[-71.744772607,41.402276448],[-71.744724607,41.402247447],[-71.744678607,41.402204447],[-71.744607607,41.402201447],[-71.744523607,41.402172447],[-71.744345607,41.402079448],[-71.744144607,41.401964448],[-71.744082607,41.401935447],[-71.743975607,41.401877447],[-71.743771607,41.401753447],[-71.743602607,41.401659447],[-71.743384607,41.401547447],[-71.743370607,41.401541447],[-71.743041606,41.401391447],[-71.742912606,41.401354447],[-71.742795606,41.401327447],[-71.742693606,41.401309447],[-71.742575606,41.401298447],[-71.742451607,41.401293447],[-71.742226606,41.401298447],[-71.742097606,41.401310447],[-71.741864606,41.401360448],[-71.741412606,41.401442447],[-71.741280606,41.401470447],[-71.741163606,41.401504447],[-71.740969606,41.401544447],[-71.740733606,41.401602447],[-71.740604605,41.401629448],[-71.740372605,41.401668448],[-71.740131606,41.401695447],[-71.740030606,41.401712448],[-71.739931606,41.401722447],[-71.739811605,41.401724447],[-71.739698606,41.401719447],[-71.739597605,41.401704447],[-71.739387606,41.401665447],[-71.739211605,41.401600447],[-71.739137606,41.401560447],[-71.739057605,41.401501447],[-71.738848605,41.401307447],[-71.738803605,41.401244448],[-71.738711605,41.401016447],[-71.738662605,41.400848447],[-71.738574605,41.400692447],[-71.738537605,41.400608447],[-71.738494605,41.400529447],[-71.738439605,41.400461447],[-71.738349605,41.400337447],[-71.738264605,41.400299447],[-71.738167605,41.400272447],[-71.737984605,41.400192447],[-71.737874604,41.400166447],[-71.737771605,41.400152448],[-71.737686605,41.400150447],[-71.737601604,41.400153447],[-71.737508605,41.400183447],[-71.737412605,41.400202447],[-71.737394605,41.400133447],[-71.737409604,41.400052447],[-71.737379605,41.400017447],[-71.737324605,41.400027447],[-71.737178604,41.400089447],[-71.737074604,41.400119447],[-71.736976604,41.400104447],[-71.736874605,41.400109447],[-71.736843604,41.400129447],[-71.737053604,41.400194447],[-71.737079604,41.400256447],[-71.737113604,41.400308448],[-71.737174604,41.400364448],[-71.737105605,41.400401447],[-71.736961604,41.400433447],[-71.736615604,41.400460447],[-71.736159604,41.400507447],[-71.736032604,41.400524447],[-71.735476604,41.400583447],[-71.735347604,41.400600448],[-71.734952604,41.400640447],[-71.734573604,41.400691447],[-71.734449604,41.400704447],[-71.733940603,41.400739447],[-71.733574603,41.400747447],[-71.733343604,41.400760447],[-71.732995604,41.400766447],[-71.732761604,41.400787447],[-71.732658603,41.400783447],[-71.732563603,41.400767447],[-71.732344603,41.400784447],[-71.732244603,41.400799447],[-71.732142603,41.400806447],[-71.731934603,41.400811448],[-71.731850603,41.400803447],[-71.731775603,41.400802447],[-71.731703603,41.400815448],[-71.731543603,41.400859447],[-71.731463603,41.400838447],[-71.731404603,41.400804447],[-71.731329603,41.400783447],[-71.731239603,41.400781447],[-71.731168602,41.400789448],[-71.731097603,41.400809448],[-71.731041603,41.400778447],[-71.730979603,41.400718447],[-71.730929602,41.400653448],[-71.730922603,41.400592447],[-71.730941603,41.400515448],[-71.730983603,41.400453447],[-71.731055603,41.400415447],[-71.731123603,41.400359447],[-71.731186602,41.400293447],[-71.731256603,41.400284448],[-71.731348603,41.400279447],[-71.731456602,41.400280447],[-71.731706603,41.400294447],[-71.732037603,41.400324448],[-71.732175603,41.400333447],[-71.732527603,41.400343448],[-71.732664603,41.400339447],[-71.732808603,41.400329447],[-71.733075603,41.400301447],[-71.733343604,41.400297447],[-71.733469603,41.400282447],[-71.733899603,41.400188448],[-71.734064604,41.400129448],[-71.734221604,41.400092448],[-71.734430604,41.400033448],[-71.734533604,41.400000447],[-71.734634603,41.399960447],[-71.734828604,41.399875447],[-71.734907603,41.399831447],[-71.734979604,41.399780448],[-71.735038604,41.399726447],[-71.735084603,41.399670447],[-71.735128604,41.399555447],[-71.735131604,41.399477447],[-71.735112604,41.399414447],[-71.735082604,41.399352447],[-71.735040604,41.399295447],[-71.734983604,41.399244447],[-71.734841604,41.399149447],[-71.734654603,41.399045447],[-71.734372604,41.398911447],[-71.734277604,41.398859447],[-71.734178604,41.398819447],[-71.734076603,41.398792447],[-71.733846603,41.398740447],[-71.733745603,41.398722447],[-71.733637604,41.398709447],[-71.733083603,41.398665447],[-71.732892603,41.398643447],[-71.732647603,41.398631447],[-71.732568603,41.398621447],[-71.732310603,41.398623447],[-71.731880603,41.398591447],[-71.731674602,41.398581447],[-71.731502602,41.398554447],[-71.731329603,41.398536447],[-71.731252603,41.398522447],[-71.731089602,41.398484447],[-71.730936602,41.398466447],[-71.730926603,41.398465447],[-71.730876602,41.398450447],[-71.730843602,41.398440447],[-71.730748603,41.398424447],[-71.730655603,41.398430447],[-71.730028602,41.398346447],[-71.729799602,41.398330447],[-71.729605602,41.398307447],[-71.729130602,41.398238447],[-71.729037601,41.398217447],[-71.728887602,41.398144447],[-71.728818602,41.398102447],[-71.728764601,41.398055447],[-71.728643602,41.397868447],[-71.728612601,41.397808447],[-71.728587602,41.397738447],[-71.728538601,41.397555447],[-71.728535601,41.397495447],[-71.728548602,41.397428447],[-71.728568602,41.397365447],[-71.728607602,41.397186447],[-71.728583602,41.397054446],[-71.728564602,41.396994446],[-71.728485602,41.396881447],[-71.728450602,41.396818446],[-71.728363601,41.396695447],[-71.728255602,41.396599447],[-71.728146601,41.396592447],[-71.728080602,41.396622447],[-71.728023601,41.396599447],[-71.727975601,41.396596447],[-71.727984601,41.396646446],[-71.727945601,41.396690447],[-71.727884602,41.396735447],[-71.727685601,41.396864447],[-71.727572602,41.396960447],[-71.727345601,41.397140447],[-71.727286601,41.397214447],[-71.727466601,41.397513447],[-71.727453601,41.397545447],[-71.727423601,41.397666447],[-71.727377602,41.397823447],[-71.727330601,41.398169447],[-71.727316601,41.398393447],[-71.727311601,41.398744447],[-71.727328601,41.399111447],[-71.727382601,41.399563448],[-71.727393601,41.399747447],[-71.727412601,41.399904447],[-71.727451602,41.400349447],[-71.727506601,41.400528447],[-71.727539601,41.400677448],[-71.727586602,41.401045448],[-71.727586602,41.401139448],[-71.727571602,41.401237448],[-71.727549602,41.401320448],[-71.727524601,41.401499447],[-71.727509602,41.401573448],[-71.727462601,41.401711448],[-71.727349601,41.401880448],[-71.727284601,41.401953448],[-71.727115601,41.402100448],[-71.727026602,41.402183448],[-71.726739601,41.402417448],[-71.726431601,41.402633448],[-71.726262601,41.402737448],[-71.726151601,41.402800448],[-71.725921601,41.402914448],[-71.725789601,41.402974448],[-71.725445601,41.403150448],[-71.725335601,41.403212448],[-71.725106601,41.403328448],[-71.7248696,41.403440448],[-71.7246356,41.403534448],[-71.724316601,41.403672448],[-71.7240266,41.403812448],[-71.7239476,41.403857449],[-71.723808601,41.403963448],[-71.723750601,41.404015448],[-71.7237076,41.404079448],[-71.7236286,41.404214448],[-71.723592601,41.404284449],[-71.7235586,41.404365448],[-71.7235426,41.404457449],[-71.7235456,41.404562448],[-71.7235236,41.405097449],[-71.7235306,41.405439448],[-71.7235246,41.405842449],[-71.7235076,41.406128449],[-71.7234836,41.406597449],[-71.723458601,41.406777449],[-71.7233826,41.407114449],[-71.7233256,41.407469449],[-71.7233076,41.407638449],[-71.7233096,41.407693449],[-71.723319601,41.407749449],[-71.723355601,41.407865449],[-71.723398601,41.407979449],[-71.7234436,41.408081449],[-71.7235456,41.40834145],[-71.7235986,41.40844045],[-71.723665601,41.408529449],[-71.723842601,41.408708449],[-71.7239326,41.40879045],[-71.7240296,41.408862449],[-71.724252601,41.408996449],[-71.724312601,41.409027449],[-71.724428601,41.409071449],[-71.724540601,41.409097449],[-71.725039601,41.40915945],[-71.725185601,41.409185449],[-71.725472601,41.409244449],[-71.725703601,41.40927445],[-71.725940601,41.40929645],[-71.726209602,41.409350449],[-71.726338602,41.409384449],[-71.726457602,41.40943045],[-71.726636602,41.409516449],[-71.726820601,41.409620449],[-71.726952601,41.409731449],[-71.727050601,41.40980145],[-71.727112602,41.409868449],[-71.727325602,41.41011745],[-71.727389602,41.410200449],[-71.727412602,41.41023045],[-71.727458601,41.410298449],[-71.727546602,41.41040945],[-71.727623602,41.41057745],[-71.727666602,41.410650449],[-71.727752602,41.410820449],[-71.727807602,41.410905449],[-71.727861602,41.410977449],[-71.727913602,41.411059449],[-71.728054602,41.411312449],[-71.728097602,41.411405449],[-71.728126602,41.41149345],[-71.728142602,41.41156745],[-71.728162602,41.41176845],[-71.728182602,41.41189745],[-71.728188602,41.41206645],[-71.728207602,41.41213145],[-71.728245602,41.41219845],[-71.728405602,41.41252745],[-71.728429603,41.41261845],[-71.728413602,41.41269445],[-71.728384602,41.41276645],[-71.728364602,41.41284345],[-71.728361602,41.41292745],[-71.728368603,41.41299945],[-71.728440602,41.41331145],[-71.728483602,41.41337745],[-71.728547603,41.41343945],[-71.728652602,41.41348645],[-71.728866602,41.41356345],[-71.729071603,41.41361845],[-71.729147603,41.41366045],[-71.729215602,41.41372145],[-71.729294602,41.41378345],[-71.729383603,41.41382545],[-71.729479603,41.41385145],[-71.729573603,41.41386145],[-71.729661602,41.41385845],[-71.729742603,41.41387745],[-71.729816603,41.41391445],[-71.729878603,41.41395445],[-71.729909603,41.41401945],[-71.729959603,41.41415745],[-71.729979603,41.41429445],[-71.730015603,41.41444445],[-71.730027603,41.41452645],[-71.729974603,41.41467045],[-71.729938603,41.414736451],[-71.729861603,41.41485845],[-71.729777603,41.41496845],[-71.729728603,41.41502345],[-71.729574603,41.41524845],[-71.729513603,41.415319451],[-71.729385603,41.415454451],[-71.729332602,41.415537451],[-71.729222603,41.41577845],[-71.729173603,41.41593045],[-71.729144603,41.41606845],[-71.729109603,41.41612645],[-71.729095603,41.416211451],[-71.729093603,41.41626845],[-71.729129603,41.416313451],[-71.729204603,41.416354451],[-71.729216602,41.41641745],[-71.729216603,41.416472451],[-71.729240603,41.416703451],[-71.729264603,41.416857451],[-71.729285603,41.416936451],[-71.729340603,41.41698545],[-71.729381603,41.417030451],[-71.729407603,41.41710145],[-71.729400603,41.417176451],[-71.729243603,41.417590451],[-71.729178603,41.417741451],[-71.729123603,41.417813451],[-71.729059602,41.417875451],[-71.728893603,41.418101451],[-71.728826602,41.418203451],[-71.728761603,41.418290451],[-71.728643603,41.418423451],[-71.728389603,41.418657451],[-71.728239602,41.418833451],[-71.728156603,41.418919451],[-71.728119603,41.418967451],[-71.728021603,41.419116451],[-71.727946602,41.419204452],[-71.727837602,41.419356451],[-71.727673602,41.419542451],[-71.727540602,41.419738451],[-71.727444602,41.419895451],[-71.727291602,41.420086451],[-71.727222603,41.420185451],[-71.726979602,41.420616451],[-71.726839602,41.420903451],[-71.726736602,41.421083451],[-71.726693602,41.421173452],[-71.726648602,41.421252452],[-71.726595602,41.421333451],[-71.726547602,41.421426452],[-71.726396602,41.421746452],[-71.726339602,41.421816452],[-71.726282602,41.421851452],[-71.726232602,41.421898451],[-71.726066602,41.422100452],[-71.726039602,41.422151451],[-71.726004602,41.422203452],[-71.725977602,41.422259452],[-71.725960602,41.422313452],[-71.725949602,41.422371452],[-71.725945602,41.422444451],[-71.725951602,41.422657451],[-71.725959602,41.422718452],[-71.725971602,41.423012452],[-71.725960602,41.423334452],[-71.725946602,41.423446452],[-71.725930602,41.423513452],[-71.725859602,41.423746452],[-71.725795602,41.424080453],[-71.725776602,41.424206452],[-71.725768602,41.424566453],[-71.725786602,41.424686452],[-71.725786602,41.424755452],[-71.725763602,41.424895453],[-71.725763602,41.424921452],[-71.725722602,41.425195452],[-71.725745602,41.425288453],[-71.725808602,41.425483453],[-71.725848602,41.425572452],[-71.725896603,41.425652453],[-71.725935603,41.425729453],[-71.725951602,41.425825452],[-71.725962602,41.425933453],[-71.725980602,41.426038452],[-71.725992603,41.426219453],[-71.726031603,41.426339453],[-71.726045602,41.426411453],[-71.726025602,41.426494453],[-71.725980602,41.426583453],[-71.725837603,41.426771453],[-71.725760603,41.426862453],[-71.725772602,41.426904453],[-71.725798603,41.426918453],[-71.725885602,41.426929452],[-71.725993603,41.427025453],[-71.726074602,41.427223452],[-71.726187603,41.427430453],[-71.726035602,41.427522453],[-71.725952603,41.427534452],[-71.725929602,41.427524453],[-71.725829602,41.427482453],[-71.725765602,41.427372453],[-71.725740603,41.427237453],[-71.725729602,41.427067452],[-71.725731602,41.427006452],[-71.725721603,41.426973453],[-71.725656602,41.426925453],[-71.725618602,41.426918453],[-71.725465602,41.426982453],[-71.725139602,41.427089453],[-71.725100602,41.427108453],[-71.725019602,41.427147453],[-71.724855602,41.427255453],[-71.724753602,41.427336453],[-71.724645602,41.427412453],[-71.724376601,41.427652453],[-71.724272602,41.427726453],[-71.723972601,41.427904453],[-71.723863602,41.427962453],[-71.723715601,41.428041453],[-71.723592602,41.428115453],[-71.723461601,41.428180453],[-71.723320602,41.428238453],[-71.723053601,41.428358453],[-71.722723601,41.428476453],[-71.722653601,41.428498453],[-71.722456601,41.428548453],[-71.722267601,41.428597453],[-71.722061601,41.428658453],[-71.721908601,41.428691453],[-71.721796601,41.428704453],[-71.721692601,41.428703453],[-71.721579601,41.428697453],[-71.721351601,41.428654453],[-71.721252601,41.428606453],[-71.721167601,41.428548453],[-71.721074601,41.428491453],[-71.720998601,41.428431453],[-71.720892601,41.428332453],[-71.720835601,41.428296453],[-71.720766601,41.428264453],[-71.7204386,41.428138453],[-71.720196601,41.428025453],[-71.7201326,41.428001453],[-71.7198566,41.427929453],[-71.7197266,41.427909453],[-71.719597601,41.427896453],[-71.7194726,41.427890453],[-71.7193596,41.427905453],[-71.7192626,41.427937453],[-71.7191936,41.427978453],[-71.719129601,41.428028453],[-71.7190236,41.428126453],[-71.7189786,41.428180453],[-71.7189646,41.428239453],[-71.7189786,41.428295453],[-71.7190066,41.428332453],[-71.7190226,41.428353453],[-71.7191656,41.428468454],[-71.7192696,41.428581454],[-71.719305601,41.428634453],[-71.7193176,41.428689453],[-71.7193176,41.428744453],[-71.7192996,41.428812453],[-71.7192096,41.428902453],[-71.7191256,41.428949453],[-71.7190606,41.428973454],[-71.7190116,41.429016453],[-71.7189766,41.429072454],[-71.7189676,41.429143453],[-71.7189806,41.429232453],[-71.7190076,41.429320454],[-71.7190596,41.429390453],[-71.7191376,41.429463454],[-71.7192306,41.429526453],[-71.7193976,41.429603453],[-71.719459601,41.429596454],[-71.7195016,41.429558454],[-71.719556601,41.429632454],[-71.719573601,41.429695454],[-71.719598601,41.429757453],[-71.719653601,41.429808454],[-71.7197836,41.429911454],[-71.719883601,41.430083454],[-71.719961601,41.430248453],[-71.720114601,41.430513454],[-71.720139601,41.430564454],[-71.720198601,41.430726454],[-71.7202836,41.430926453],[-71.720369601,41.431110454],[-71.720506601,41.431344454],[-71.720631601,41.431594454],[-71.720661601,41.431684454],[-71.720675601,41.431782454],[-71.720678601,41.431970454],[-71.720649601,41.432245454],[-71.7206326,41.432337454],[-71.720582601,41.432515454],[-71.720562601,41.432610454],[-71.720518601,41.432891454],[-71.720503601,41.433097454],[-71.720461601,41.433396454],[-71.720465601,41.433719454],[-71.720485601,41.433826454],[-71.720524601,41.433935454],[-71.720577601,41.434042455],[-71.720598601,41.434098454],[-71.720679601,41.434381454],[-71.720729601,41.434613454],[-71.720732601,41.434671454],[-71.720727601,41.434787454],[-71.720731601,41.434914454],[-71.720751601,41.435096455],[-71.720781601,41.435272455],[-71.720816601,41.435383455],[-71.720900601,41.435576455],[-71.720952601,41.435750455],[-71.720986601,41.435965455],[-71.721008601,41.436020454],[-71.721066601,41.436124455],[-71.721120601,41.436236455],[-71.721151601,41.436286455],[-71.721237601,41.436368454],[-71.721291602,41.436405455],[-71.721414601,41.436478455],[-71.721485602,41.436506454],[-71.721659602,41.436548455],[-71.721807601,41.436600455],[-71.721998601,41.436657455],[-71.722096601,41.436712455],[-71.722272601,41.436799454],[-71.722332601,41.436849455],[-71.722414602,41.436974454],[-71.722412601,41.437029455],[-71.722402602,41.437059455],[-71.722367602,41.437167454],[-71.722341602,41.437230455],[-71.722331601,41.437302455],[-71.722360602,41.437368455],[-71.722417602,41.437430455],[-71.722471602,41.437481455],[-71.722512602,41.437527455],[-71.722538602,41.437579455],[-71.722554602,41.437635455],[-71.722534602,41.437767455],[-71.722533602,41.437861455],[-71.722508601,41.437951455],[-71.722494602,41.437975455],[-71.722426601,41.438016455],[-71.722305602,41.438054455],[-71.722154601,41.438158455],[-71.722091602,41.438245455],[-71.721901601,41.438261455],[-71.721218601,41.438425455],[-71.720951601,41.438603455],[-71.720656601,41.438973455],[-71.720462601,41.439615455],[-71.720334601,41.440741455],[-71.720196601,41.441066456],[-71.719082601,41.442371456],[-71.7180396,41.443535456],[-71.7174396,41.443661456],[-71.7170866,41.443362456],[-71.7168006,41.443181456],[-71.7162106,41.443370456],[-71.715777599,41.443666456],[-71.7157896,41.444071456],[-71.7162696,41.445155457],[-71.716629601,41.446320457],[-71.7167766,41.446978457],[-71.717194601,41.447222457],[-71.717215601,41.447268457],[-71.717235601,41.447334457],[-71.717249601,41.447404457],[-71.717252601,41.447476457],[-71.717238601,41.447546457],[-71.7171806,41.447690457],[-71.7171806,41.447745457],[-71.7171676,41.447815457],[-71.717152601,41.447895457],[-71.7170696,41.448187457],[-71.7170256,41.448245457],[-71.716995601,41.448324457],[-71.7170066,41.448404457],[-71.7170256,41.448461457],[-71.717056601,41.448527457],[-71.7171236,41.448719457],[-71.7171836,41.448812457],[-71.717249601,41.449007457],[-71.717267601,41.449080458],[-71.717274601,41.449227457],[-71.717265601,41.449293458],[-71.717226601,41.449360457],[-71.717138601,41.449538457],[-71.717121601,41.449689457],[-71.717092601,41.449766457],[-71.717055601,41.449838458],[-71.717014601,41.449904457],[-71.7169666,41.449965457],[-71.7168556,41.450072458],[-71.716591601,41.450260458],[-71.7165196,41.450330457],[-71.7164596,41.450405458],[-71.716397601,41.450470457],[-71.716179601,41.450665457],[-71.7160996,41.450710458],[-71.715889601,41.450757458],[-71.7158246,41.450802457],[-71.715831601,41.450847458],[-71.715911601,41.450898457],[-71.715907601,41.450945458],[-71.7158206,41.450977457],[-71.715483601,41.451035457],[-71.7154076,41.451016457],[-71.7153536,41.450977457],[-71.7152806,41.450957457],[-71.7151956,41.450957457],[-71.7151306,41.450982458],[-71.7151046,41.451038458],[-71.7151166,41.451174458],[-71.7150726,41.451204458],[-71.7150166,41.451175458],[-71.7149646,41.451053457],[-71.7148796,41.451037458],[-71.7147916,41.451034457],[-71.7146916,41.451024458],[-71.7145996,41.451034457],[-71.7145306,41.451075458],[-71.7144876,41.451128458],[-71.7144576,41.451202458],[-71.7144596,41.451266457],[-71.7145076,41.451482458],[-71.7145386,41.451557458],[-71.7146146,41.451713458],[-71.7146836,41.451887458],[-71.7147256,41.451975458],[-71.7147726,41.452056458],[-71.7148296,41.452130458],[-71.7148716,41.452203458],[-71.7148806,41.452271458],[-71.7148476,41.452325458],[-71.7148016,41.452380458],[-71.7147736,41.452461458],[-71.7147236,41.452639458],[-71.7146536,41.452792458],[-71.7146556,41.452851458],[-71.7147096,41.452900458],[-71.7147686,41.452944458],[-71.7148066,41.452993458],[-71.7147776,41.453001459],[-71.7146906,41.453002458],[-71.7146136,41.453050458],[-71.7144636,41.453212458],[-71.7143926,41.453267458],[-71.7142226,41.453368459],[-71.714159599,41.453423458],[-71.714139599,41.453494458],[-71.7141656,41.453567459],[-71.7142256,41.453637458],[-71.7143166,41.453692458],[-71.7144346,41.453737459],[-71.7145486,41.453789458],[-71.7146346,41.453859459],[-71.7146976,41.453942458],[-71.7147406,41.454033459],[-71.7147586,41.454133458],[-71.7147476,41.454238458],[-71.7147176,41.454337458],[-71.7146746,41.454421459],[-71.7146086,41.454484458],[-71.7145276,41.454515459],[-71.7144516,41.454504458],[-71.7143936,41.454456459],[-71.7143446,41.454386459],[-71.7142536,41.454240458],[-71.7142066,41.454192458],[-71.7141276,41.454177458],[-71.7140326,41.454189459],[-71.7139396,41.454207459],[-71.7138516,41.454204459],[-71.7137776,41.454169459],[-71.713712599,41.454122458],[-71.7136436,41.454090459],[-71.7135896,41.454104458],[-71.713573599,41.454167459],[-71.713592599,41.454328458],[-71.713595599,41.454407458],[-71.7135826,41.454471458],[-71.713534599,41.454517459],[-71.7134476,41.454549458],[-71.713342599,41.454576459],[-71.713320599,41.454548458],[-71.7133386,41.454416459],[-71.713323599,41.454336458],[-71.713266599,41.454249459],[-71.713189599,41.454167459],[-71.7131346,41.454094458],[-71.7131186,41.454028459],[-71.713089599,41.453972459],[-71.713030599,41.453948458],[-71.712968599,41.453969459],[-71.7127916,41.454072459],[-71.712679599,41.454128459],[-71.7125546,41.454166459],[-71.7124196,41.454178458],[-71.712345599,41.454177458],[-71.712188599,41.454162458],[-71.712034599,41.454133458],[-71.711883599,41.454093459],[-71.711771599,41.454059458],[-71.711677599,41.454062458],[-71.711625599,41.454108459],[-71.711627599,41.454170459],[-71.711661599,41.454228459],[-71.711726599,41.454271458],[-71.711813599,41.454302459],[-71.7119136,41.454323459],[-71.7120316,41.454330458],[-71.7123816,41.454332458],[-71.712525599,41.454343459],[-71.7126316,41.454384459],[-71.7126876,41.454449458],[-71.7127076,41.454523458],[-71.7127136,41.454601458],[-71.712699599,41.454687459],[-71.7126676,41.454778458],[-71.712621599,41.454854459],[-71.712560599,41.454904459],[-71.7125126,41.454913458],[-71.712490599,41.454887459],[-71.7124556,41.454826459],[-71.7123966,41.454784459],[-71.712313599,41.454746459],[-71.712254599,41.454711459],[-71.712253599,41.454666458],[-71.712311599,41.454636459],[-71.7123786,41.454614459],[-71.712412599,41.454570458],[-71.712373599,41.454548458],[-71.7123016,41.454540459],[-71.712136599,41.454496459],[-71.7120896,41.454521459],[-71.712063599,41.454572459],[-71.712043599,41.454699458],[-71.712026599,41.454771459],[-71.7120316,41.454841458],[-71.7120666,41.454904459],[-71.712123599,41.454958458],[-71.712194599,41.454998459],[-71.712270599,41.455030458],[-71.7124176,41.455080459],[-71.7124376,41.455126459],[-71.712487599,41.455174459],[-71.712544599,41.455218459],[-71.712604599,41.455277459],[-71.7126496,41.455346458],[-71.712684599,41.455423458],[-71.712698599,41.455506459],[-71.7126906,41.455594459],[-71.712660599,41.455674458],[-71.7126146,41.455754458],[-71.7125506,41.455832458],[-71.712369599,41.455975459],[-71.712308599,41.456036459],[-71.712288599,41.456094459],[-71.712325599,41.456203459],[-71.712327599,41.456530459],[-71.712313599,41.456612459],[-71.7122826,41.456666459],[-71.712236599,41.456682459],[-71.712189599,41.456653459],[-71.7121616,41.456599459],[-71.7121446,41.456545459],[-71.712071599,41.456493459],[-71.712022599,41.456435459],[-71.7120476,41.456376459],[-71.712014599,41.456319459],[-71.712037599,41.456302459],[-71.7121096,41.456268459],[-71.712168599,41.456211459],[-71.712121599,41.456184459],[-71.712035599,41.456177459],[-71.7119496,41.456189459],[-71.711890599,41.456219459],[-71.711839599,41.456261459],[-71.711773599,41.456296459],[-71.711688599,41.456322459],[-71.711599599,41.456337459],[-71.711514599,41.456327459],[-71.711444599,41.456301459],[-71.711360599,41.456254459],[-71.711227599,41.456194459],[-71.711129599,41.456174459],[-71.711073599,41.456202459],[-71.711045599,41.456260459],[-71.711037599,41.456328459],[-71.711046599,41.456397459],[-71.711070599,41.456458459],[-71.711108599,41.456509459],[-71.711210599,41.456604459],[-71.711261599,41.456657459],[-71.711326599,41.456703459],[-71.711414599,41.456744459],[-71.711520599,41.456781459],[-71.711886599,41.456874459],[-71.712005599,41.456901459],[-71.712118599,41.456938459],[-71.7122236,41.456982459],[-71.712325599,41.457033459],[-71.7125706,41.457141459],[-71.712695599,41.457207459],[-71.7128616,41.457309459],[-71.7132736,41.457581459],[-71.7136616,41.457868459],[-71.7137576,41.45793546],[-71.7138576,41.457995459],[-71.7140596,41.458104459],[-71.7141496,41.458165459],[-71.7142176,41.458234459],[-71.7142566,41.458306459],[-71.714253601,41.458375459],[-71.7142236,41.458436459],[-71.7142106,41.458492459],[-71.714254601,41.458544459],[-71.7137626,41.458476459],[-71.7128846,41.457962459],[-71.712792599,41.457968459],[-71.7127106,41.457989459],[-71.7126466,41.45803246],[-71.7125916,41.458084459],[-71.7125506,41.458144459],[-71.7125136,41.458209459],[-71.712484599,41.458279459],[-71.712461599,41.458353459],[-71.712404599,41.458588459],[-71.7123586,41.458724459],[-71.7123426,41.45878946],[-71.7123526,41.458917459],[-71.7123526,41.458979459],[-71.7123606,41.45903946],[-71.7124796,41.45927846],[-71.7125566,41.459403459],[-71.7125776,41.459460459],[-71.712675599,41.45956846],[-71.7126476,41.45960346],[-71.712407599,41.45976046],[-71.712331599,41.45981746],[-71.712287599,41.45987646],[-71.712290599,41.45994246],[-71.7123596,41.45997246],[-71.7124206,41.45995446],[-71.7125866,41.45979946],[-71.7126426,41.45976346],[-71.712715599,41.45972646],[-71.7127996,41.45969046],[-71.712968599,41.459641459],[-71.7130396,41.45962646],[-71.7131386,41.459641459],[-71.7132126,41.459672459],[-71.7132866,41.45970946],[-71.7134086,41.459791459],[-71.7135896,41.45987846],[-71.714018601,41.46010946],[-71.7141196,41.46017046],[-71.714387601,41.460360459],[-71.7147646,41.46059546],[-71.714859601,41.46064146],[-71.715151601,41.46075246],[-71.715246601,41.460783459],[-71.715454601,41.46083046],[-71.7155656,41.46084746],[-71.715785601,41.46085946],[-71.715890601,41.46085646],[-71.715998601,41.46084846],[-71.716217601,41.46083946],[-71.716579601,41.46079946],[-71.716794601,41.46077946],[-71.716889601,41.46077646],[-71.716968601,41.460784459],[-71.717038601,41.46079846],[-71.717124601,41.460788459],[-71.717194601,41.46077146],[-71.717380601,41.46073846],[-71.717586602,41.460690459],[-71.717677601,41.46066046],[-71.717947601,41.460554459],[-71.718110602,41.46048346],[-71.718190602,41.460453459],[-71.718272601,41.46042846],[-71.718349602,41.460398459],[-71.718414601,41.460363459],[-71.718469601,41.46032746],[-71.718550601,41.46028846],[-71.718623601,41.46027446]]]]}}"}, +{"type": "precinct", "typeId": 1402, "areaId": 25782, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":121,\"NAME\":\"1402\",\"SHAPE_Length\":0.35646532916078,\"SHAPE_Area\":-0.0049436246221711},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.720383605,41.521664472],[-71.720810605,41.522099471],[-71.720978606,41.522263472],[-71.721115606,41.522431471],[-71.721252606,41.522564471],[-71.721527606,41.522843471],[-71.721718606,41.523026472],[-71.721863606,41.523186472],[-71.722252606,41.523594472],[-71.722557607,41.523926472],[-71.722577607,41.523946472],[-71.722931607,41.524285472],[-71.723079607,41.524394472],[-71.723221607,41.524498472],[-71.723969607,41.525093472],[-71.724854607,41.525750472],[-71.724922607,41.525811472],[-71.724976608,41.525898473],[-71.724983607,41.525936472],[-71.725006607,41.526001472],[-71.725044607,41.526314472],[-71.725075608,41.526665472],[-71.725143607,41.527287472],[-71.725250608,41.527848473],[-71.725266608,41.527985473],[-71.725273608,41.528130472],[-71.725327608,41.528565473],[-71.725372607,41.528885472],[-71.725426608,41.529190473],[-71.725433607,41.529343473],[-71.725441608,41.529404473],[-71.725502608,41.529629473],[-71.725548607,41.529732473],[-71.725693608,41.529995472],[-71.725922608,41.530388473],[-71.726028608,41.530644473],[-71.726067608,41.530777473],[-71.726669608,41.530621473],[-71.726898608,41.530583473],[-71.727195608,41.530527473],[-71.727274608,41.530511473],[-71.727594608,41.530458473],[-71.727644608,41.530447473],[-71.727908608,41.530409473],[-71.728388609,41.530330473],[-71.728897609,41.530271473],[-71.729071609,41.530261473],[-71.729356609,41.530247473],[-71.729499609,41.530239473],[-71.729876609,41.530228472],[-71.729921609,41.530229472],[-71.73063461,41.530232473],[-71.73145061,41.530225473],[-71.731693609,41.530224473],[-71.73253061,41.530224473],[-71.73263761,41.530222473],[-71.73273661,41.530218473],[-71.733444611,41.530175472],[-71.73450261,41.530149473],[-71.73504661,41.530136472],[-71.735649611,41.530140473],[-71.735832611,41.530148473],[-71.735985611,41.530159473],[-71.736183611,41.530190472],[-71.736382611,41.530236473],[-71.736336611,41.529591472],[-71.736305611,41.529267473],[-71.736247611,41.528809472],[-71.736160611,41.528149472],[-71.736115611,41.527714472],[-71.736130611,41.527581472],[-71.736145611,41.527523472],[-71.736191611,41.527409472],[-71.736252611,41.527302472],[-71.736290611,41.527260472],[-71.736305611,41.527233472],[-71.736319611,41.527220472],[-71.736770611,41.527362472],[-71.736954612,41.527408472],[-71.737091612,41.527463472],[-71.737141611,41.527511472],[-71.737204612,41.527548472],[-71.737285612,41.527553472],[-71.737397612,41.527551472],[-71.737460612,41.527510472],[-71.737513612,41.527467472],[-71.737560611,41.527343472],[-71.737752612,41.527199472],[-71.737794611,41.527153472],[-71.737845612,41.527115472],[-71.737884612,41.527057472],[-71.737894611,41.526996472],[-71.737890612,41.526927472],[-71.737913611,41.526864472],[-71.737959612,41.526806472],[-71.738073611,41.526701472],[-71.738139612,41.526664472],[-71.738189611,41.526618472],[-71.738313612,41.526547472],[-71.738377612,41.526501472],[-71.738435612,41.526453472],[-71.738491612,41.526417472],[-71.738549612,41.526373472],[-71.738597612,41.526318472],[-71.738787612,41.526253471],[-71.738879612,41.526207472],[-71.738965612,41.526144472],[-71.739006612,41.526088472],[-71.739022611,41.526025472],[-71.739104612,41.525881471],[-71.739141612,41.525832472],[-71.739242612,41.525748471],[-71.739316612,41.525718472],[-71.739403612,41.525703472],[-71.739479612,41.525676472],[-71.739519612,41.525630471],[-71.739551612,41.525578472],[-71.739624612,41.525537472],[-71.739685612,41.525482472],[-71.739741612,41.525412471],[-71.739796612,41.525355471],[-71.739865612,41.525317471],[-71.740038612,41.525250472],[-71.740103612,41.525197471],[-71.740231612,41.525106471],[-71.740286613,41.525072472],[-71.740419612,41.525053472],[-71.740485612,41.525022471],[-71.740570612,41.524929471],[-71.740629612,41.524893471],[-71.740815613,41.524851471],[-71.740872613,41.524812471],[-71.740929613,41.524756471],[-71.740969613,41.524709471],[-71.741050612,41.524704472],[-71.741121613,41.524691471],[-71.741183613,41.524659471],[-71.741265612,41.524638471],[-71.741310612,41.524594471],[-71.741372613,41.524556471],[-71.741464612,41.524509472],[-71.741491613,41.524457471],[-71.741489613,41.524385471],[-71.741566613,41.524343471],[-71.741665613,41.524312471],[-71.741736612,41.524279472],[-71.741815612,41.524248471],[-71.741828613,41.524190471],[-71.741826613,41.524071471],[-71.741793612,41.523897471],[-71.741814612,41.523830472],[-71.741864613,41.523792472],[-71.741806613,41.523701471],[-71.741776612,41.523644471],[-71.741730613,41.523526471],[-71.741722613,41.523487471],[-71.741676612,41.523339471],[-71.741623612,41.523198471],[-71.741577612,41.523098471],[-71.741722613,41.523083471],[-71.741913612,41.523072471],[-71.742481613,41.523049471],[-71.743660614,41.523003471],[-71.744545613,41.522961471],[-71.744743613,41.522938471],[-71.744934613,41.522911471],[-71.745201614,41.522850471],[-71.745300614,41.522820471],[-71.745444614,41.522769471],[-71.745560614,41.522728471],[-71.745735614,41.522652471],[-71.746292614,41.522377471],[-71.746475614,41.52229347],[-71.746544614,41.522271471],[-71.746613614,41.522244471],[-71.746765614,41.52219447],[-71.746849614,41.522171471],[-71.746902614,41.52215647],[-71.747093615,41.522114471],[-71.747299614,41.522087471],[-71.747414614,41.52208047],[-71.747520615,41.522068471],[-71.748199615,41.522034471],[-71.749557615,41.521973471],[-71.750641616,41.521916471],[-71.751892616,41.521859471],[-71.752220616,41.52184347],[-71.752434616,41.52182847],[-71.752625616,41.521798471],[-71.752716616,41.521778471],[-71.752815616,41.521763471],[-71.752907616,41.521740471],[-71.753006616,41.521721471],[-71.753159617,41.521679471],[-71.753487617,41.52158047],[-71.753700617,41.52153847],[-71.754059616,41.521489471],[-71.755760617,41.52134047],[-71.757067617,41.52120647],[-71.757133618,41.52119947],[-71.757454617,41.52118347],[-71.757759618,41.52118047],[-71.757896618,41.52118347],[-71.758247618,41.52120247],[-71.758446618,41.52122547],[-71.758535618,41.52123947],[-71.758713618,41.521275471],[-71.758789618,41.52128647],[-71.758858618,41.52130547],[-71.758919618,41.52125247],[-71.758972618,41.521218471],[-71.759010619,41.52120247],[-71.759048619,41.52119547],[-71.759117618,41.52119547],[-71.759758618,41.52115747],[-71.760170618,41.52112247],[-71.760536618,41.52107747],[-71.760574618,41.52106947],[-71.760811619,41.52104247],[-71.761749619,41.52091647],[-71.762024619,41.52088647],[-71.762314619,41.52117647],[-71.762413619,41.52127947],[-71.762566619,41.52146647],[-71.76267262,41.521588471],[-71.762726619,41.52164147],[-71.76277262,41.52169847],[-71.762894619,41.52182447],[-71.76294762,41.52188947],[-71.76306262,41.52201147],[-71.76364962,41.52261047],[-71.76370262,41.52264847],[-71.76374862,41.52269047],[-71.76377962,41.522736471],[-71.76377962,41.52283947],[-71.76374862,41.52289647],[-71.76408462,41.52309147],[-71.76457262,41.523434471],[-71.76466462,41.52351047],[-71.76487762,41.52371647],[-71.76493162,41.52375847],[-71.76494662,41.52377747],[-71.76521362,41.52365947],[-71.765556621,41.523495471],[-71.765930621,41.52328947],[-71.765991621,41.52325147],[-71.766089621,41.52317047],[-71.766243621,41.52303447],[-71.766296621,41.52298047],[-71.76635062,41.522934471],[-71.766396621,41.52288547],[-71.766449621,41.52283947],[-71.76654162,41.52277047],[-71.766800621,41.52261447],[-71.767616621,41.52227447],[-71.768280621,41.52197747],[-71.769073622,41.52164947],[-71.769615622,41.52143147],[-71.769905622,41.52132847],[-71.770081622,41.52127547],[-71.770172622,41.52125247],[-71.770325622,41.52122947],[-71.770531622,41.52121847],[-71.770592622,41.52121847],[-71.770828622,41.52120647],[-71.770973622,41.52118747],[-71.771111622,41.52115747],[-71.771248622,41.521103469],[-71.771263622,41.52109247],[-71.771286622,41.521084469],[-71.771538622,41.52090147],[-71.771660622,41.52081747],[-71.771942622,41.52068047],[-71.772278622,41.52055047],[-71.772507622,41.520478469],[-71.772774623,41.52040947],[-71.773170622,41.52032147],[-71.773688623,41.52022047],[-71.774345623,41.52008147],[-71.774895623,41.519978469],[-71.776100624,41.522118469],[-71.776749624,41.52307947],[-71.777191624,41.52365547],[-71.777611625,41.524182471],[-71.778023625,41.52465547],[-71.778564625,41.52527747],[-71.778938625,41.52574647],[-71.779663626,41.52582247],[-71.780037625,41.52584947],[-71.780655626,41.52591047],[-71.781204625,41.525956471],[-71.781548626,41.52599847],[-71.781921626,41.526009471],[-71.782661626,41.52600547],[-71.782875626,41.52599847],[-71.783218626,41.525952471],[-71.783495626,41.52592947],[-71.783905627,41.525895471],[-71.784287626,41.525895471],[-71.784584627,41.52589147],[-71.785103627,41.52583047],[-71.785156627,41.525818471],[-71.785362627,41.52578447],[-71.785782627,41.52573147],[-71.786118628,41.52571547],[-71.786400627,41.52570847],[-71.786675627,41.52570847],[-71.786934628,41.52573147],[-71.787216627,41.525723471],[-71.787483628,41.52571147],[-71.788002628,41.52571147],[-71.788147627,41.52573147],[-71.788437628,41.52575047],[-71.788614628,41.52575047],[-71.788795628,41.52575047],[-71.789078628,41.52576547],[-71.789299628,41.52578847],[-71.789711628,41.52584947],[-71.790077628,41.52586047],[-71.790550628,41.52588347],[-71.790741628,41.52591447],[-71.790863629,41.52598247],[-71.790947629,41.52616247],[-71.791067629,41.526326471],[-71.791206629,41.52649347],[-71.791275629,41.52656647],[-71.791382629,41.52663547],[-71.791481629,41.52668047],[-71.791626629,41.526734471],[-71.791855629,41.526795471],[-71.792168629,41.526795471],[-71.792206629,41.52679147],[-71.792248629,41.52588447],[-71.792373629,41.523255469],[-71.792375629,41.52316547],[-71.792405629,41.522259469],[-71.792445629,41.521010469],[-71.792478821,41.519989828],[-71.792485405,41.51978523],[-71.792485629,41.519780469],[-71.792550629,41.518430468],[-71.792606629,41.517268468],[-71.792667629,41.516021468],[-71.79269779,41.515400612],[-71.792761437,41.514086543],[-71.792763237,41.514045623],[-71.792766629,41.513959468],[-71.792989628,41.508898466],[-71.792994629,41.508785467],[-71.793046628,41.507772467],[-71.793150629,41.505755466],[-71.793160628,41.505712466],[-71.793188156,41.505594808],[-71.793222506,41.505447364],[-71.793315021,41.50322057],[-71.793357325,41.502289897],[-71.793358628,41.502259466],[-71.793416628,41.500966465],[-71.793439628,41.500472465],[-71.793445254,41.500355386],[-71.793456,41.500118962],[-71.79349147,41.49939366],[-71.793502628,41.499161465],[-71.793533628,41.498514465],[-71.793628628,41.496575464],[-71.793660628,41.495929464],[-71.793698628,41.495139464],[-71.793775628,41.493566463],[-71.793814628,41.492771463],[-71.793853628,41.491982464],[-71.793906994,41.490895748],[-71.793974834,41.489508154],[-71.794007628,41.488822463],[-71.794018627,41.488594462],[-71.794052628,41.487910462],[-71.794164797,41.485934077],[-71.794871548,41.473444115],[-71.795408833,41.464055534],[-71.795641461,41.460060061],[-71.795646646,41.459992539],[-71.795276627,41.460023457],[-71.795189626,41.460049457],[-71.795067627,41.460095457],[-71.794968627,41.460156457],[-71.794899626,41.460217458],[-71.794823626,41.460350457],[-71.794823626,41.460560457],[-71.794846627,41.460923457],[-71.794899626,41.462044458],[-71.794907627,41.462452458],[-71.794868627,41.462937458],[-71.794815627,41.463395458],[-71.794769627,41.463478458],[-71.794701626,41.463559458],[-71.794601627,41.463597458],[-71.794411626,41.463692458],[-71.793907626,41.463913458],[-71.793594626,41.464039458],[-71.792908626,41.464287458],[-71.792419626,41.464459458],[-71.792061626,41.464566458],[-71.791847626,41.464638458],[-71.791748626,41.464664458],[-71.791687626,41.464680458],[-71.791534626,41.464711458],[-71.791374626,41.464722458],[-71.791267625,41.464718458],[-71.791161626,41.464707458],[-71.790909626,41.464653458],[-71.790703625,41.464592458],[-71.789513625,41.464123458],[-71.789040625,41.463936458],[-71.788071624,41.463566458],[-71.787933624,41.463509458],[-71.787552624,41.463288458],[-71.787384625,41.463181458],[-71.787224624,41.463101458],[-71.786987624,41.462994458],[-71.786736624,41.462887458],[-71.785995624,41.462597457],[-71.785461623,41.462380458],[-71.784271623,41.461911458],[-71.783791623,41.461739457],[-71.783661623,41.461716458],[-71.783516623,41.461701457],[-71.783051623,41.461689458],[-71.782873623,41.461693458],[-71.782700623,41.461701457],[-71.781487622,41.461872458],[-71.781136622,41.461918458],[-71.780983622,41.461926458],[-71.780869622,41.461926458],[-71.780724622,41.461911458],[-71.780609622,41.461846458],[-71.780510622,41.461773458],[-71.780327621,41.461628458],[-71.780212622,41.461548458],[-71.780098622,41.461502458],[-71.779922622,41.461472458],[-71.779778622,41.461472458],[-71.779465622,41.461457458],[-71.778885621,41.461464458],[-71.778450622,41.461476458],[-71.777977621,41.461460458],[-71.777451621,41.461293458],[-71.776871621,41.461064458],[-71.776520621,41.460911458],[-71.776222621,41.460789458],[-71.77565062,41.460587458],[-71.77551162,41.460545458],[-71.77494862,41.460385458],[-71.77438462,41.460286458],[-71.774048619,41.460236458],[-71.77322462,41.460171458],[-71.771950619,41.460083457],[-71.771759619,41.460068458],[-71.771515619,41.460053458],[-71.771400619,41.460041458],[-71.770889618,41.460011458],[-71.770378619,41.459988458],[-71.770157619,41.459984457],[-71.769676619,41.459988458],[-71.769394618,41.459996458],[-71.769020618,41.460015458],[-71.767487618,41.460125458],[-71.766884618,41.460171458],[-71.765854617,41.460244458],[-71.765091617,41.460339458],[-71.764580617,41.460415458],[-71.764150617,41.460484458],[-71.763268616,41.460606459],[-71.762947616,41.460656458],[-71.762703616,41.460682459],[-71.762154616,41.460759459],[-71.761581616,41.460846458],[-71.760774615,41.460962458],[-71.760422615,41.461010458],[-71.759956615,41.461079458],[-71.759056615,41.461224459],[-71.758881615,41.461247459],[-71.758713615,41.461258458],[-71.758564614,41.461249459],[-71.758450614,41.461234458],[-71.757570614,41.461047459],[-71.757523615,41.461037458],[-71.757164614,41.460968458],[-71.756783614,41.460915459],[-71.756253614,41.460835459],[-71.755859614,41.460759459],[-71.755478614,41.460709458],[-71.755333614,41.460682459],[-71.754791614,41.460556458],[-71.754433613,41.460480458],[-71.754211614,41.460442458],[-71.753914613,41.460404459],[-71.753586613,41.460373459],[-71.753369613,41.460358458],[-71.753098613,41.460339458],[-71.752670613,41.460320458],[-71.752472613,41.460301458],[-71.752205612,41.460270459],[-71.751976612,41.460236459],[-71.751755613,41.460225458],[-71.751488612,41.460225458],[-71.751335612,41.460236459],[-71.751152612,41.460255459],[-71.750656612,41.460316458],[-71.750412612,41.460354458],[-71.750244612,41.460369459],[-71.750069612,41.460373459],[-71.749771612,41.460362458],[-71.749535611,41.460347459],[-71.749290612,41.460316458],[-71.748932611,41.460247459],[-71.748741611,41.460194459],[-71.748713612,41.460185458],[-71.748444611,41.460099459],[-71.747910611,41.459893458],[-71.747345611,41.459660458],[-71.746925611,41.459496458],[-71.746078611,41.459187458],[-71.74542261,41.458939458],[-71.74500361,41.458790459],[-71.74482061,41.458733459],[-71.74448461,41.458660458],[-71.74445361,41.458653459],[-71.74404161,41.458611459],[-71.74375961,41.458592459],[-71.74340861,41.458577459],[-71.743217609,41.458577459],[-71.74291261,41.458542458],[-71.742737609,41.458516459],[-71.742104609,41.458382459],[-71.741692609,41.458302459],[-71.741379609,41.458229458],[-71.740936609,41.458134458],[-71.740799608,41.458104459],[-71.740623608,41.458069459],[-71.740250609,41.458008459],[-71.740067609,41.457993459],[-71.739899609,41.457989459],[-71.739716609,41.457997458],[-71.739342608,41.458035458],[-71.739136609,41.458073458],[-71.738518608,41.458222459],[-71.737931607,41.458374459],[-71.736717608,41.458666459],[-71.736013607,41.458832459],[-71.735183607,41.459030458],[-71.734262607,41.459246459],[-71.733819606,41.459350459],[-71.733156606,41.459493459],[-71.732795606,41.459576459],[-71.732475606,41.459649459],[-71.732086606,41.459744459],[-71.731888606,41.459782459],[-71.731590606,41.459847459],[-71.731285606,41.459889459],[-71.731087605,41.459904459],[-71.730804606,41.459919459],[-71.730026606,41.459938459],[-71.729828605,41.459931459],[-71.729660606,41.459919459],[-71.729347606,41.459858459],[-71.729187605,41.459816459],[-71.728928605,41.459736459],[-71.728310605,41.459504459],[-71.728134605,41.459450459],[-71.727951605,41.459401459],[-71.727768605,41.459362459],[-71.727478604,41.459324459],[-71.726362604,41.459164459],[-71.725946604,41.459118459],[-71.725685604,41.459095459],[-71.725357604,41.459080459],[-71.723961604,41.459080459],[-71.723495604,41.459092459],[-71.723228603,41.459107459],[-71.722870603,41.459141459],[-71.721664603,41.459210459],[-71.721245602,41.459225459],[-71.720718602,41.45927846],[-71.720230602,41.459313459],[-71.719925602,41.459332459],[-71.719635602,41.459366459],[-71.719505602,41.459385459],[-71.719368602,41.45941646],[-71.719200602,41.45947346],[-71.719070602,41.459507459],[-71.719002602,41.45953446],[-71.718887602,41.459603459],[-71.718811602,41.459656459],[-71.718758602,41.459713459],[-71.718741601,41.45974446],[-71.718697602,41.45982446],[-71.718674602,41.459908459],[-71.718623601,41.46027446],[-71.718713602,41.460266459],[-71.718737602,41.460277459],[-71.718784602,41.46038446],[-71.718851602,41.46038546],[-71.718903602,41.460358459],[-71.718935601,41.46030746],[-71.718956601,41.46025446],[-71.719000602,41.46019446],[-71.718992602,41.46013946],[-71.718991602,41.460081459],[-71.719053601,41.460042459],[-71.719105602,41.460044459],[-71.718908602,41.459831459],[-71.718951602,41.45980646],[-71.719089602,41.459760459],[-71.719165602,41.459741459],[-71.719240602,41.45972746],[-71.719334602,41.459716459],[-71.719443602,41.459721459],[-71.719667602,41.45974746],[-71.719774602,41.45976546],[-71.719863602,41.459798459],[-71.720034602,41.459886459],[-71.720140602,41.459932459],[-71.720391602,41.460026459],[-71.720509602,41.46007446],[-71.720592603,41.460122459],[-71.720648603,41.46017846],[-71.720683602,41.460239459],[-71.720725603,41.460298459],[-71.720782603,41.460364459],[-71.720851602,41.460478459],[-71.720875602,41.460549459],[-71.720903603,41.46060346],[-71.720968602,41.46063846],[-71.721042602,41.460654459],[-71.721122602,41.46064646],[-71.721212603,41.460609459],[-71.721332603,41.460597459],[-71.721468603,41.460630459],[-71.721582603,41.46068346],[-71.721660603,41.460744459],[-71.721680603,41.46079946],[-71.721656603,41.460823459],[-71.721572602,41.46086046],[-71.721476602,41.46087646],[-71.721409603,41.46089846],[-71.721391603,41.460939459],[-71.721336602,41.460985459],[-71.721197603,41.461061459],[-71.721189603,41.46110946],[-71.721187603,41.461173459],[-71.721171603,41.46124246],[-71.721077603,41.461449459],[-71.721063602,41.46151646],[-71.721061602,41.46158246],[-71.721044602,41.461642459],[-71.720914602,41.46176946],[-71.720847602,41.46185046],[-71.720799603,41.46193146],[-71.720780603,41.46200346],[-71.720748603,41.46206846],[-71.720687603,41.462130459],[-71.720531603,41.46222446],[-71.720397603,41.46233246],[-71.720307602,41.46244446],[-71.720241603,41.46249346],[-71.720166602,41.46247546],[-71.720031602,41.46240146],[-71.719964602,41.46237546],[-71.719924602,41.46241446],[-71.719920602,41.46241746],[-71.719932602,41.46247846],[-71.719989602,41.462519459],[-71.720112602,41.462597459],[-71.720156602,41.46265046],[-71.720164602,41.46271346],[-71.720157602,41.46278646],[-71.720162603,41.46284246],[-71.720189602,41.46289246],[-71.720244602,41.46292946],[-71.720331602,41.46295546],[-71.720431603,41.46299246],[-71.720519602,41.46304746],[-71.720587603,41.46311246],[-71.720641602,41.46317546],[-71.720673602,41.46323846],[-71.720664603,41.46331846],[-71.720615602,41.46335946],[-71.720543602,41.46338746],[-71.720463602,41.46340646],[-71.720387602,41.46340946],[-71.720328602,41.46338146],[-71.720284602,41.46332746],[-71.720193602,41.46318246],[-71.720145602,41.46312646],[-71.720106602,41.46311246],[-71.720103603,41.46316846],[-71.720120603,41.46322446],[-71.720150602,41.46332446],[-71.720141603,41.46344346],[-71.720157603,41.46350346],[-71.720202603,41.46355946],[-71.720248602,41.46360646],[-71.720264602,41.463707461],[-71.720271602,41.46375246],[-71.720183603,41.46395746],[-71.720177603,41.46398446],[-71.720156602,41.46408046],[-71.720116602,41.46420846],[-71.720069602,41.46445646],[-71.720044603,41.46455246],[-71.719875602,41.46500346],[-71.719837602,41.465092461],[-71.719832603,41.465168461],[-71.719870603,41.465225461],[-71.719939602,41.46527046],[-71.720097603,41.46535346],[-71.720175603,41.46540646],[-71.720236603,41.465457461],[-71.720278603,41.46556546],[-71.720317603,41.465618461],[-71.720376603,41.465654461],[-71.720447603,41.465655461],[-71.720524603,41.465675461],[-71.720706603,41.46575646],[-71.720798603,41.46580146],[-71.720866602,41.465847461],[-71.720896603,41.46589746],[-71.720897603,41.466020461],[-71.720890603,41.466086461],[-71.720864603,41.46615046],[-71.720824603,41.46621046],[-71.720774603,41.46626746],[-71.720711602,41.466320461],[-71.720453603,41.466484461],[-71.720289603,41.46657546],[-71.720227602,41.466627461],[-71.720182603,41.466689461],[-71.719892602,41.467223461],[-71.719847603,41.46727846],[-71.719780602,41.467321461],[-71.719595603,41.467405461],[-71.719502602,41.467461461],[-71.719415602,41.467522461],[-71.719265603,41.467644461],[-71.719210602,41.46770646],[-71.719179602,41.467770461],[-71.719170602,41.467835461],[-71.719185603,41.467978461],[-71.719164602,41.468053461],[-71.719122602,41.468129461],[-71.719073602,41.468204461],[-71.719024602,41.468251461],[-71.718989602,41.468237461],[-71.718975602,41.468178461],[-71.718977602,41.468110461],[-71.719045602,41.467970461],[-71.719068603,41.467897461],[-71.719049603,41.467844461],[-71.718989602,41.467826461],[-71.718920602,41.467856461],[-71.718794602,41.467969461],[-71.718725602,41.467998461],[-71.718678602,41.467970461],[-71.718668602,41.467907461],[-71.718683602,41.467841461],[-71.718676602,41.467769461],[-71.718627602,41.467760461],[-71.718577602,41.467794461],[-71.718536602,41.467846461],[-71.718505602,41.467905461],[-71.718479602,41.467972461],[-71.718427602,41.468042461],[-71.718389602,41.468032461],[-71.718353602,41.467965461],[-71.718262602,41.467865461],[-71.718224602,41.467806461],[-71.718208602,41.467739461],[-71.718223602,41.467666461],[-71.718253602,41.467590461],[-71.718258602,41.467516461],[-71.718241602,41.467443461],[-71.718210602,41.467383461],[-71.718163602,41.467338461],[-71.718114602,41.467280461],[-71.718061602,41.467227461],[-71.718002602,41.467226461],[-71.717955602,41.467257461],[-71.717959602,41.467301461],[-71.718020601,41.467366461],[-71.718069602,41.467435461],[-71.718083602,41.467488461],[-71.718082602,41.467543461],[-71.718068602,41.467598461],[-71.718043602,41.467655461],[-71.718006602,41.467712461],[-71.717954602,41.467768461],[-71.717892602,41.467818461],[-71.717839602,41.467871461],[-71.717789602,41.467989461],[-71.717739602,41.468040461],[-71.717676602,41.468041461],[-71.717632601,41.467990461],[-71.717632601,41.467923461],[-71.717641602,41.467869461],[-71.717602602,41.467852461],[-71.717537602,41.467877461],[-71.717476601,41.467907461],[-71.717389602,41.467927461],[-71.717330602,41.467985461],[-71.717322601,41.468041461],[-71.717325602,41.468100461],[-71.717347602,41.468155461],[-71.717396601,41.468200461],[-71.717468602,41.468232462],[-71.717633602,41.468288461],[-71.717796602,41.468357461],[-71.717861602,41.468400461],[-71.717914602,41.468443461],[-71.717953602,41.468490461],[-71.718033602,41.468647461],[-71.718075602,41.468764461],[-71.718122602,41.468957461],[-71.718130602,41.469027461],[-71.718120602,41.469092461],[-71.718014602,41.469277461],[-71.717991602,41.469353461],[-71.717985602,41.469411461],[-71.717970602,41.469473461],[-71.717939602,41.469545461],[-71.717914602,41.469628461],[-71.717848602,41.469935461],[-71.717839602,41.470002462],[-71.717808602,41.470062462],[-71.717750602,41.470106461],[-71.717685602,41.470114461],[-71.717631602,41.470082462],[-71.717585602,41.470009461],[-71.717536602,41.469958461],[-71.717446602,41.469952461],[-71.717390602,41.469899461],[-71.717365602,41.469827462],[-71.717294602,41.469806462],[-71.717193602,41.469826462],[-71.717058602,41.469885462],[-71.716970601,41.469937461],[-71.716793601,41.470063462],[-71.716692602,41.470104462],[-71.716613602,41.470090461],[-71.716551602,41.470129461],[-71.716508602,41.470200462],[-71.716492602,41.470256462],[-71.716492602,41.470319461],[-71.716531602,41.470628462],[-71.716535602,41.470712461],[-71.716527602,41.470883462],[-71.716533602,41.470971462],[-71.716555602,41.471051462],[-71.716604602,41.471101461],[-71.716670602,41.471115462],[-71.716746602,41.471111462],[-71.716820602,41.471090462],[-71.716879602,41.471055462],[-71.716934602,41.470995462],[-71.716986601,41.470954462],[-71.717065601,41.470922462],[-71.717160602,41.470910461],[-71.717257602,41.470928461],[-71.717344602,41.470963461],[-71.717422602,41.471002461],[-71.717480602,41.471054462],[-71.717566602,41.471189462],[-71.717541602,41.471218461],[-71.717483602,41.471262462],[-71.717499602,41.471310462],[-71.717577602,41.471336461],[-71.717659602,41.471336461],[-71.717745602,41.471306462],[-71.717831602,41.471263462],[-71.717923602,41.471252462],[-71.718000602,41.471259461],[-71.718186602,41.471256461],[-71.718374602,41.471260461],[-71.718458602,41.471258461],[-71.718538602,41.471265462],[-71.718612602,41.471284462],[-71.718679603,41.471313462],[-71.718738603,41.471348462],[-71.718792602,41.471387462],[-71.718834603,41.471434461],[-71.718902602,41.471554462],[-71.718929603,41.471628461],[-71.718937602,41.471707461],[-71.718926602,41.471862461],[-71.718942602,41.471931462],[-71.718967603,41.471991462],[-71.718966603,41.472046462],[-71.718898602,41.472155461],[-71.718875603,41.472218462],[-71.718861602,41.472287462],[-71.718854603,41.472366462],[-71.718878602,41.472539462],[-71.718871603,41.472621461],[-71.718839602,41.472690462],[-71.718776603,41.472745462],[-71.718697603,41.472801462],[-71.718624602,41.472838462],[-71.718596602,41.472832462],[-71.718570602,41.472784462],[-71.718571602,41.472715462],[-71.718561603,41.472645462],[-71.718559603,41.472584462],[-71.718599603,41.472536462],[-71.718676603,41.472484461],[-71.718710602,41.472423462],[-71.718727602,41.472346462],[-71.718738603,41.472268462],[-71.718755603,41.472191462],[-71.718800602,41.472115461],[-71.718836603,41.472036461],[-71.718825602,41.471971462],[-71.718774603,41.471942462],[-71.718713602,41.471949462],[-71.718647602,41.471976462],[-71.718585602,41.472015462],[-71.718531602,41.472062462],[-71.718428602,41.472173461],[-71.718320602,41.472299462],[-71.718267602,41.472368461],[-71.718121602,41.472591462],[-71.717939603,41.472794462],[-71.717871602,41.472856462],[-71.717799602,41.472914462],[-71.717643602,41.473028462],[-71.717576602,41.473098462],[-71.717519602,41.473178462],[-71.717476602,41.473264462],[-71.717444602,41.473350462],[-71.717426602,41.473431462],[-71.717407602,41.473660462],[-71.717405602,41.473876462],[-71.717425602,41.473990462],[-71.717483602,41.474211462],[-71.717589603,41.474439462],[-71.717619602,41.474520462],[-71.717642602,41.474603462],[-71.717652602,41.474681462],[-71.717653602,41.474756462],[-71.717647603,41.474830462],[-71.717632602,41.474898463],[-71.717605602,41.474954463],[-71.717566602,41.475008462],[-71.717511603,41.475056463],[-71.717385602,41.475136462],[-71.717318602,41.475169463],[-71.717246602,41.475191463],[-71.717163602,41.475202462],[-71.716971602,41.475204462],[-71.716877602,41.475197462],[-71.716792602,41.475181462],[-71.716724602,41.475152463],[-71.716599602,41.475072463],[-71.716420601,41.474945462],[-71.716358602,41.474917463],[-71.716287601,41.474898463],[-71.716211602,41.474888462],[-71.716134602,41.474894463],[-71.716061602,41.474914463],[-71.715973601,41.474950462],[-71.715925602,41.474997463],[-71.715881601,41.475053463],[-71.715865602,41.475113463],[-71.715860601,41.475169463],[-71.715872602,41.475226463],[-71.715956601,41.475494462],[-71.715977601,41.475548462],[-71.716075602,41.475738463],[-71.716101602,41.475779463],[-71.716121602,41.475810463],[-71.716244601,41.475963463],[-71.716377602,41.476109463],[-71.716433602,41.476182463],[-71.716479601,41.476256463],[-71.716529602,41.476325463],[-71.716650602,41.476455463],[-71.716708602,41.476526463],[-71.716755602,41.476597463],[-71.716793602,41.476670463],[-71.716821602,41.476748463],[-71.716860602,41.476901463],[-71.716869602,41.476978463],[-71.716856602,41.477327463],[-71.716839602,41.477403463],[-71.716816602,41.477477462],[-71.716800602,41.477550463],[-71.716802602,41.477621463],[-71.716827602,41.477756463],[-71.716822602,41.477823463],[-71.716790602,41.477886463],[-71.716739602,41.477936463],[-71.716650602,41.477978463],[-71.716576602,41.478032463],[-71.716488602,41.478046463],[-71.716420602,41.478010463],[-71.716391602,41.477944463],[-71.716399602,41.477881463],[-71.716435602,41.477723463],[-71.716463602,41.477543463],[-71.716489602,41.477445463],[-71.716545602,41.477300463],[-71.716515602,41.477304463],[-71.716434602,41.477332463],[-71.716371602,41.477362463],[-71.716312602,41.477400463],[-71.716189602,41.477539463],[-71.716135602,41.477585463],[-71.716011601,41.477678463],[-71.715948602,41.477731463],[-71.715876601,41.477784463],[-71.715791602,41.477833463],[-71.715501602,41.477976463],[-71.715406601,41.478019463],[-71.715307602,41.478053463],[-71.715204602,41.478077463],[-71.715107602,41.478086463],[-71.715019601,41.478087463],[-71.714944601,41.478078463],[-71.714879601,41.478052463],[-71.714761602,41.477975463],[-71.714653601,41.477884463],[-71.714578601,41.477838463],[-71.714490601,41.477799463],[-71.714396601,41.477774463],[-71.714287601,41.477770463],[-71.714168601,41.477787463],[-71.714051601,41.477798463],[-71.713825601,41.477790463],[-71.713721601,41.477807463],[-71.713638601,41.477854463],[-71.713592601,41.477911463],[-71.713568601,41.478040463],[-71.713565601,41.478098463],[-71.713581601,41.478159463],[-71.713702601,41.478374463],[-71.713758601,41.478450464],[-71.713817601,41.478520463],[-71.713879601,41.478580463],[-71.713941602,41.478629463],[-71.714002601,41.478669463],[-71.714116602,41.478765463],[-71.714209601,41.478857464],[-71.714266601,41.478907463],[-71.714309602,41.478964463],[-71.714383601,41.479115463],[-71.714409602,41.479192464],[-71.714419601,41.479274463],[-71.714413601,41.479460464],[-71.714398601,41.479545463],[-71.714379601,41.479613463],[-71.714346601,41.479665463],[-71.714268601,41.479720463],[-71.714181601,41.479765463],[-71.714131601,41.479821463],[-71.714117602,41.479877463],[-71.714129601,41.479940463],[-71.714155602,41.480014463],[-71.714168601,41.480078463],[-71.714199601,41.480142464],[-71.714299601,41.480296464],[-71.714408602,41.480492464],[-71.714499601,41.480640463],[-71.714563602,41.480728464],[-71.714782601,41.481091464],[-71.714832602,41.481188464],[-71.714868602,41.481288464],[-71.714922601,41.481466464],[-71.714954602,41.481680464],[-71.714977601,41.481958464],[-71.714978601,41.482044464],[-71.714962601,41.482197464],[-71.714959601,41.482277464],[-71.714941601,41.482451464],[-71.714965602,41.482525464],[-71.714999601,41.482590464],[-71.715000601,41.482662464],[-71.714992602,41.482802464],[-71.714975602,41.482864464],[-71.714950602,41.482921464],[-71.714914602,41.482981464],[-71.714886602,41.483045464],[-71.714881601,41.483110464],[-71.714867602,41.483174464],[-71.714777602,41.483432464],[-71.714744601,41.483492464],[-71.714702602,41.483549464],[-71.714650601,41.483604464],[-71.714583602,41.483658465],[-71.714503602,41.483708464],[-71.714418601,41.483753465],[-71.714338601,41.483784464],[-71.714252602,41.483791465],[-71.713932601,41.483789464],[-71.713652601,41.483799464],[-71.713553601,41.483809464],[-71.713457601,41.483830465],[-71.713373602,41.483863464],[-71.713290601,41.483905464],[-71.713195601,41.483945464],[-71.713075601,41.483969465],[-71.712950601,41.483984464],[-71.712846601,41.483988465],[-71.712660601,41.483962464],[-71.712568601,41.483970465],[-71.712488601,41.483993464],[-71.712418601,41.484022464],[-71.712354601,41.484057464],[-71.712298601,41.484099464],[-71.712250601,41.484148464],[-71.712211601,41.484202465],[-71.712173601,41.484280465],[-71.712158601,41.484352464],[-71.712163601,41.484416465],[-71.712218601,41.484518464],[-71.712260601,41.484570465],[-71.712325601,41.484620464],[-71.712362601,41.484637464],[-71.712388601,41.484649465],[-71.712472601,41.484674464],[-71.712588601,41.484694464],[-71.712922601,41.484723465],[-71.713090601,41.484741464],[-71.713541601,41.484805465],[-71.713922602,41.484864465],[-71.714387602,41.484921465],[-71.714490601,41.484924465],[-71.714595602,41.484915464],[-71.715044602,41.484850464],[-71.715363602,41.484812464],[-71.715575602,41.484798464],[-71.715680602,41.484786465],[-71.715788602,41.484766465],[-71.715894602,41.484737464],[-71.715997602,41.484702464],[-71.716289602,41.484588464],[-71.716476603,41.484499464],[-71.716572603,41.484465464],[-71.716670603,41.484438465],[-71.716770603,41.484424464],[-71.716861603,41.484433464],[-71.717037603,41.484487464],[-71.717124602,41.484521464],[-71.717205602,41.484560464],[-71.717270603,41.484607464],[-71.717415602,41.484794464],[-71.717458602,41.484861464],[-71.717494602,41.484935464],[-71.717704603,41.485483465],[-71.717758603,41.485649464],[-71.717838603,41.485969465],[-71.717849603,41.486044464],[-71.717863602,41.486211465],[-71.717889603,41.486362465],[-71.717893603,41.486439465],[-71.717891603,41.486520465],[-71.717860603,41.486757465],[-71.717841603,41.486835465],[-71.717808603,41.486913465],[-71.717768603,41.486992465],[-71.717720603,41.487069465],[-71.717543603,41.487291465],[-71.717488603,41.487344464],[-71.717417602,41.487367465],[-71.717352603,41.487335465],[-71.717283603,41.487379465],[-71.717239602,41.487428465],[-71.717187603,41.487573465],[-71.717104602,41.487683465],[-71.717038603,41.487733465],[-71.716959603,41.487759465],[-71.716900603,41.487798465],[-71.716854602,41.487848465],[-71.716790602,41.487979465],[-71.716748603,41.488044465],[-71.716572603,41.488272465],[-71.716548603,41.488329465],[-71.716541602,41.488393465],[-71.716538602,41.488519465],[-71.716531603,41.488580465],[-71.716517602,41.488641465],[-71.716489603,41.488701465],[-71.716446602,41.488758465],[-71.716340603,41.488877465],[-71.716318603,41.488949465],[-71.716313603,41.489230465],[-71.716274603,41.489529465],[-71.716251602,41.489651465],[-71.716209602,41.489796466],[-71.716207602,41.489857466],[-71.716150602,41.490001465],[-71.716086603,41.490181465],[-71.716030602,41.490319465],[-71.715958602,41.490458466],[-71.715862602,41.490606465],[-71.715717603,41.490844466],[-71.715580603,41.491082466],[-71.715502603,41.491235466],[-71.715439603,41.491420465],[-71.715381603,41.491596465],[-71.715348602,41.491716465],[-71.715338602,41.491774465],[-71.715333602,41.491948465],[-71.715360603,41.492182465],[-71.715369602,41.492350466],[-71.715403603,41.492546466],[-71.715445602,41.492741466],[-71.715474602,41.492841466],[-71.715511602,41.492932466],[-71.715553603,41.493014466],[-71.715625602,41.493185466],[-71.715658603,41.493334466],[-71.715743602,41.493455466],[-71.715753603,41.493519466],[-71.715769603,41.493574466],[-71.715758602,41.493631466],[-71.715758602,41.493693466],[-71.715798602,41.493828466],[-71.715814603,41.493899466],[-71.715832603,41.494105466],[-71.715845603,41.494173466],[-71.715912603,41.494329466],[-71.715967603,41.494499467],[-71.715984603,41.494576467],[-71.715993602,41.494668466],[-71.715998603,41.494722466],[-71.716030602,41.494813466],[-71.716076603,41.494915466],[-71.716099603,41.494998466],[-71.716119603,41.495074466],[-71.716135603,41.495131466],[-71.716156603,41.495209466],[-71.716189602,41.495331466],[-71.716232603,41.495609467],[-71.716254603,41.495865467],[-71.716265602,41.496178467],[-71.716274603,41.496251467],[-71.716303602,41.496387467],[-71.716347603,41.496522467],[-71.716377603,41.496583467],[-71.716422603,41.496643467],[-71.716481603,41.496695467],[-71.716514603,41.496747466],[-71.716523603,41.496782467],[-71.716609603,41.497054467],[-71.716653603,41.497225467],[-71.716664603,41.497375467],[-71.716605603,41.497456467],[-71.716594603,41.497518467],[-71.716553603,41.497647467],[-71.716469603,41.497858467],[-71.716406603,41.498144467],[-71.716388603,41.498273467],[-71.716353603,41.498391467],[-71.716298603,41.498503467],[-71.716255603,41.498565467],[-71.716190603,41.498601467],[-71.716102603,41.498635467],[-71.716017603,41.498677467],[-71.715916603,41.498673467],[-71.715687603,41.498612467],[-71.715510603,41.498584467],[-71.715402603,41.498574467],[-71.715083603,41.498572467],[-71.715013603,41.498589467],[-71.714949603,41.498631467],[-71.714927603,41.498698467],[-71.714933603,41.498754467],[-71.714932603,41.498810468],[-71.714926602,41.498823467],[-71.715006603,41.498956467],[-71.715088603,41.499078467],[-71.715115602,41.499132467],[-71.715151603,41.499180468],[-71.715199603,41.499226467],[-71.715388602,41.499355468],[-71.715435603,41.499406467],[-71.715725603,41.499840468],[-71.715758603,41.499900468],[-71.715780603,41.499963467],[-71.715793603,41.500023467],[-71.715801603,41.500104467],[-71.715783603,41.500182467],[-71.715708603,41.500346468],[-71.715659602,41.500411467],[-71.715592603,41.500461468],[-71.715525603,41.500520468],[-71.715489603,41.500568467],[-71.715446602,41.500640468],[-71.715398603,41.500750467],[-71.715385603,41.500814468],[-71.715360603,41.500994468],[-71.715361603,41.501057467],[-71.715376603,41.501120467],[-71.715403603,41.501200468],[-71.715427603,41.501253467],[-71.715524603,41.501410467],[-71.715578603,41.501479468],[-71.715755603,41.501621467],[-71.715928603,41.501812468],[-71.715967603,41.501862468],[-71.716067603,41.502019468],[-71.716110603,41.502128467],[-71.716169603,41.502356468],[-71.716179603,41.502411468],[-71.716212603,41.502525468],[-71.716325603,41.502787468],[-71.716364603,41.502899468],[-71.716422603,41.503016468],[-71.716460603,41.503063468],[-71.716494604,41.503131468],[-71.715992603,41.504063468],[-71.715645603,41.504337468],[-71.715461603,41.504802468],[-71.714357602,41.504858468],[-71.714270603,41.504527468],[-71.713906602,41.504382468],[-71.712943602,41.504653468],[-71.712194602,41.504882468],[-71.711901602,41.504775469],[-71.712599602,41.505145469],[-71.712626602,41.505117468],[-71.712733603,41.504996468],[-71.712797602,41.504935468],[-71.712867603,41.504881468],[-71.713111602,41.504739469],[-71.713313603,41.504636468],[-71.713409602,41.504594468],[-71.713511603,41.504555468],[-71.713736602,41.504485469],[-71.713835602,41.504467468],[-71.713934603,41.504474468],[-71.714030603,41.504497468],[-71.714128603,41.504542469],[-71.714120602,41.504559469],[-71.714042602,41.504586468],[-71.713856603,41.504620469],[-71.713670602,41.504672468],[-71.713590603,41.504700469],[-71.713523602,41.504745468],[-71.713479602,41.504799468],[-71.713443602,41.504864468],[-71.713421602,41.504923468],[-71.713406602,41.505052468],[-71.713360602,41.505087469],[-71.713205602,41.505137468],[-71.713118603,41.505176468],[-71.713039602,41.505222469],[-71.712961602,41.505280469],[-71.712889603,41.505351468],[-71.712842602,41.505420469],[-71.712849603,41.505470468],[-71.712899602,41.505494469],[-71.712985603,41.505485468],[-71.713085602,41.505465468],[-71.713254603,41.505440469],[-71.713469603,41.505381469],[-71.713558602,41.505369468],[-71.713975603,41.505364468],[-71.714080602,41.505372468],[-71.714154603,41.505371468],[-71.714226603,41.505362469],[-71.714507603,41.505288468],[-71.714653603,41.505233468],[-71.714822602,41.505181469],[-71.714898603,41.505164469],[-71.715139603,41.505085469],[-71.715225603,41.505073468],[-71.715397603,41.505098468],[-71.715460603,41.505055468],[-71.715494603,41.505000468],[-71.715532603,41.504953469],[-71.715580604,41.504909468],[-71.715658604,41.504804468],[-71.715683603,41.504900468],[-71.715691603,41.504956468],[-71.715689603,41.505011469],[-71.715663603,41.505129469],[-71.715624603,41.505252468],[-71.715556603,41.505426468],[-71.715603603,41.505530468],[-71.715637603,41.505579468],[-71.715694603,41.505625468],[-71.715730603,41.505677468],[-71.715824603,41.505774468],[-71.715863603,41.505827469],[-71.715882603,41.505880468],[-71.715916603,41.505947469],[-71.715943603,41.506019469],[-71.715984603,41.506166468],[-71.715986604,41.506238469],[-71.715975603,41.506366468],[-71.715976603,41.506432469],[-71.715939603,41.506612468],[-71.715934603,41.506671468],[-71.715946604,41.506968468],[-71.715934603,41.507097469],[-71.715889604,41.507213469],[-71.715877603,41.507267469],[-71.715869604,41.507334468],[-71.715871604,41.507444469],[-71.715902603,41.507700469],[-71.715928604,41.507754469],[-71.715962603,41.507792469],[-71.715096603,41.508400469],[-71.714256602,41.508995469],[-71.712570603,41.51019747],[-71.712311602,41.510376469],[-71.712067603,41.51054847],[-71.711830602,41.51072347],[-71.711632602,41.51085347],[-71.711510602,41.510922469],[-71.711479602,41.51101347],[-71.711052602,41.51143747],[-71.710777602,41.51170847],[-71.711023602,41.51188347],[-71.711225602,41.51202947],[-71.711405602,41.512171469],[-71.711530602,41.51229147],[-71.711908602,41.51269247],[-71.712027603,41.51283247],[-71.712112602,41.51294747],[-71.712212602,41.51319247],[-71.712273602,41.51342447],[-71.712334603,41.51387847],[-71.712433603,41.51430947],[-71.712471603,41.514412471],[-71.712494603,41.51445847],[-71.712524602,41.51449647],[-71.712563602,41.51453447],[-71.712677602,41.514622471],[-71.713814603,41.515267471],[-71.714569603,41.515789471],[-71.715332603,41.51630847],[-71.715736604,41.516568471],[-71.716164604,41.51685047],[-71.716408604,41.517018471],[-71.716454604,41.517060471],[-71.716484604,41.517083471],[-71.716530604,41.51712847],[-71.716942604,41.517605471],[-71.717133604,41.517838471],[-71.717300604,41.518025471],[-71.717361604,41.518074471],[-71.717407605,41.518132471],[-71.717545605,41.518277471],[-71.717728604,41.518437471],[-71.717941604,41.518631471],[-71.718224605,41.518898471],[-71.718605604,41.519287471],[-71.718788605,41.519459471],[-71.718857605,41.519509471],[-71.719063605,41.519673471],[-71.719193605,41.519764471],[-71.719292605,41.519833472],[-71.719528605,41.520058471],[-71.719627605,41.520165472],[-71.719666605,41.520214471],[-71.719719605,41.520340472],[-71.719749606,41.520398472],[-71.719856605,41.520672472],[-71.719902605,41.520777471],[-71.720047605,41.521111471],[-71.720146605,41.521336471],[-71.720200606,41.521443471],[-71.720291606,41.521569472],[-71.720383605,41.521664472]]]]}}"}, +{"type": "precinct", "typeId": 1403, "areaId": 25783, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":122,\"NAME\":\"1403\",\"SHAPE_Length\":0.32984736270983,\"SHAPE_Area\":-0.0027090155669044},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.711901602,41.504775469],[-71.711887602,41.504790468],[-71.711889602,41.504848468],[-71.711939602,41.504977468],[-71.711938602,41.505054468],[-71.711911602,41.505120468],[-71.711809602,41.505256468],[-71.711708602,41.505407468],[-71.711666602,41.505455469],[-71.711426602,41.505623468],[-71.711360602,41.505675469],[-71.711302602,41.505735468],[-71.711268602,41.505795468],[-71.711256601,41.505859469],[-71.711254601,41.505934468],[-71.711264602,41.506090468],[-71.711275601,41.506172469],[-71.711304602,41.506250469],[-71.711353602,41.506283468],[-71.711404602,41.506266469],[-71.711444602,41.506209469],[-71.711472602,41.506141469],[-71.711487601,41.506072469],[-71.711504602,41.505938469],[-71.711523602,41.505878469],[-71.711562602,41.505830469],[-71.711616602,41.505870469],[-71.711648602,41.505922469],[-71.711665602,41.505981469],[-71.711671602,41.506061469],[-71.711695602,41.506126468],[-71.711740602,41.506176469],[-71.711768602,41.506228469],[-71.711786602,41.506303468],[-71.711786602,41.506360468],[-71.711760602,41.506498468],[-71.711659602,41.506805469],[-71.711596602,41.506946469],[-71.711571602,41.507017469],[-71.711557602,41.507093469],[-71.711562602,41.507164469],[-71.711589602,41.507226469],[-71.711640602,41.507292469],[-71.711707602,41.507354469],[-71.711787602,41.507400469],[-71.711867602,41.507432469],[-71.711946602,41.507448469],[-71.712018602,41.507440469],[-71.712080602,41.507406469],[-71.712126602,41.507339469],[-71.712129602,41.507268469],[-71.712110602,41.507197468],[-71.712070602,41.507140468],[-71.712007602,41.507098469],[-71.712041602,41.507082468],[-71.712119602,41.507074469],[-71.712190602,41.507094469],[-71.712248602,41.507138469],[-71.712332602,41.507237468],[-71.712395602,41.507480469],[-71.712431602,41.507657469],[-71.712460603,41.507774469],[-71.712467602,41.507828469],[-71.712445602,41.507901469],[-71.712389602,41.507947469],[-71.712321603,41.507951469],[-71.712289602,41.507938469],[-71.712245603,41.507918469],[-71.712178602,41.507877469],[-71.712098602,41.507841469],[-71.712020602,41.507822469],[-71.711938602,41.507824469],[-71.711870602,41.507846469],[-71.711706602,41.507976469],[-71.711658602,41.508035469],[-71.711573602,41.508285469],[-71.711548602,41.508346469],[-71.711449602,41.508515469],[-71.711325602,41.50867847],[-71.711129602,41.508887469],[-71.711076601,41.50892947],[-71.711020601,41.508966469],[-71.710931602,41.50901047],[-71.710831602,41.509036469],[-71.710753602,41.509044469],[-71.710676602,41.509042469],[-71.710599602,41.50902947],[-71.710487602,41.509003469],[-71.710351602,41.50897147],[-71.710033602,41.508868469],[-71.709868601,41.508829469],[-71.709712601,41.508798469],[-71.709629602,41.508786469],[-71.709552602,41.508780469],[-71.709478601,41.508784469],[-71.709235601,41.508810469],[-71.709152601,41.508825469],[-71.708850601,41.508913469],[-71.708779601,41.508940469],[-71.708652601,41.50900747],[-71.708482601,41.509129469],[-71.708382601,41.509214469],[-71.708300601,41.509310469],[-71.708229601,41.50941347],[-71.708109601,41.50957247],[-71.708043601,41.509682469],[-71.708021601,41.509737469],[-71.708011601,41.509791469],[-71.708005601,41.50990447],[-71.707996601,41.50996047],[-71.707980601,41.51001747],[-71.707870601,41.51031047],[-71.707862601,41.51037447],[-71.707921601,41.51049247],[-71.707938601,41.51056647],[-71.707949601,41.51064447],[-71.707947601,41.51072147],[-71.707910601,41.51087247],[-71.707883601,41.510941469],[-71.707846601,41.51101047],[-71.707764601,41.51112947],[-71.707707601,41.51119347],[-71.707561601,41.51132347],[-71.707452601,41.51140747],[-71.7071386,41.51161047],[-71.707011601,41.51167747],[-71.7069466,41.51170547],[-71.7068496,41.51173947],[-71.7067486,41.51176247],[-71.706350601,41.51182847],[-71.706275601,41.51184547],[-71.7062036,41.51186647],[-71.7061346,41.51189147],[-71.7059796,41.51196147],[-71.7058206,41.51205147],[-71.705748601,41.51209847],[-71.7056756,41.51215447],[-71.7055626,41.51226047],[-71.7054496,41.51238147],[-71.7052946,41.51259647],[-71.7051776,41.51274947],[-71.7048056,41.513398471],[-71.7047786,41.513456471],[-71.7047376,41.513568471],[-71.7046156,41.51383647],[-71.7045936,41.51390947],[-71.7045936,41.513979471],[-71.7046126,41.51404447],[-71.7046476,41.51410347],[-71.7046736,41.51413047],[-71.7046976,41.514156471],[-71.7047606,41.51420647],[-71.7049026,41.51430247],[-71.7049546,41.514327471],[-71.7050216,41.514348471],[-71.7050936,41.51437747],[-71.7052396,41.514444471],[-71.7053166,41.514484471],[-71.7054736,41.514605471],[-71.7055186,41.514659471],[-71.7055486,41.514719471],[-71.705572601,41.51484947],[-71.7055686,41.514914471],[-71.7055236,41.515051471],[-71.705496601,41.515114471],[-71.705455601,41.515165471],[-71.7053936,41.51521847],[-71.705340601,41.51525447],[-71.7053286,41.515262471],[-71.7052536,41.515302471],[-71.705124601,41.515358471],[-71.7049786,41.515403471],[-71.7048276,41.515456471],[-71.7046686,41.51550547],[-71.7046046,41.515539471],[-71.7044896,41.515617471],[-71.7044286,41.515647471],[-71.7043506,41.515658471],[-71.7042636,41.51566447],[-71.7041836,41.515660471],[-71.7040986,41.515675471],[-71.7040226,41.51570347],[-71.7039576,41.51574047],[-71.7039386,41.515756471],[-71.7039346,41.516144471],[-71.7036826,41.516026471],[-71.7036356,41.516043471],[-71.7035586,41.516063471],[-71.7034826,41.516094471],[-71.7034076,41.516101471],[-71.7033836,41.51614847],[-71.703337599,41.516192471],[-71.703279599,41.516228471],[-71.7032066,41.516260471],[-71.7031486,41.516277471],[-71.7025496,41.516317471],[-71.700516599,41.517379471],[-71.698725598,41.518562472],[-71.697011598,41.519507471],[-71.695120598,41.520396472],[-71.693330596,41.521296473],[-71.691983597,41.522141472],[-71.691762596,41.522309473],[-71.691609596,41.522409472],[-71.691509596,41.522474472],[-71.691432596,41.522502473],[-71.691368596,41.522534472],[-71.690989596,41.522758473],[-71.690778596,41.522864472],[-71.690608596,41.522990473],[-71.690400596,41.523126473],[-71.690333596,41.523174472],[-71.690193596,41.523257473],[-71.690101596,41.523356473],[-71.689844596,41.523576473],[-71.689703595,41.523678472],[-71.689542596,41.523783473],[-71.689391595,41.523875473],[-71.689332595,41.523919473],[-71.689287596,41.523966473],[-71.689201595,41.524071473],[-71.689007595,41.524360473],[-71.688888595,41.524521473],[-71.688828595,41.524612473],[-71.688633595,41.524990473],[-71.688530596,41.525161473],[-71.688406595,41.525392473],[-71.688394596,41.525472473],[-71.688476595,41.525484473],[-71.688537595,41.525432473],[-71.688611595,41.525331473],[-71.688714595,41.525218473],[-71.688772595,41.525171473],[-71.688832595,41.525129473],[-71.688907595,41.525020473],[-71.689009595,41.524911473],[-71.689057596,41.524853473],[-71.689132596,41.524716473],[-71.689169596,41.524662473],[-71.689215595,41.524619473],[-71.689247596,41.524640473],[-71.689241595,41.524702473],[-71.689220595,41.524760473],[-71.689094596,41.525028473],[-71.689054596,41.525101473],[-71.688819596,41.525444473],[-71.688694595,41.525654473],[-71.688646596,41.525722474],[-71.688572595,41.525850473],[-71.688541595,41.525918474],[-71.688401595,41.526193473],[-71.688364595,41.526250473],[-71.688318595,41.526303474],[-71.688263595,41.526356473],[-71.688092595,41.526538474],[-71.688024596,41.526597474],[-71.687768595,41.526802473],[-71.687648595,41.526890474],[-71.687597595,41.526940473],[-71.687403595,41.527161474],[-71.687316595,41.527282474],[-71.687219595,41.527466473],[-71.687197595,41.527525473],[-71.687183595,41.527585474],[-71.687160595,41.527770474],[-71.687109595,41.528040474],[-71.687109595,41.528115474],[-71.687122595,41.528186474],[-71.687163595,41.528302474],[-71.687225596,41.528418473],[-71.687267595,41.528473473],[-71.687316595,41.528526474],[-71.687440595,41.528630473],[-71.687517596,41.528677474],[-71.687688595,41.528762474],[-71.687777595,41.528796474],[-71.687867596,41.528823474],[-71.688120596,41.528880474],[-71.688194596,41.528892474],[-71.688270596,41.528881474],[-71.688339595,41.528836474],[-71.688422595,41.528806473],[-71.688507596,41.528788473],[-71.688606596,41.528776474],[-71.688710595,41.528771474],[-71.689054596,41.528772474],[-71.689271596,41.528781474],[-71.689350596,41.528765474],[-71.689418596,41.528723474],[-71.689503596,41.528682474],[-71.689582596,41.528662474],[-71.689670596,41.528648474],[-71.689864596,41.528625474],[-71.690079596,41.528593473],[-71.690188596,41.528581474],[-71.690295596,41.528578474],[-71.690703596,41.528612473],[-71.691020596,41.528661474],[-71.691234596,41.528690473],[-71.691621596,41.528754474],[-71.691814596,41.528764474],[-71.691921597,41.528756474],[-71.692149597,41.528720474],[-71.692247597,41.528694474],[-71.692309597,41.528659474],[-71.692472596,41.528634473],[-71.692950597,41.528534473],[-71.693052597,41.528528474],[-71.693547597,41.528573473],[-71.693633597,41.528586474],[-71.693719598,41.528590473],[-71.693819597,41.528607474],[-71.693872598,41.528656474],[-71.693936597,41.528690473],[-71.694013597,41.528699474],[-71.694585597,41.528706474],[-71.694771598,41.528696474],[-71.694873597,41.528682474],[-71.694959598,41.528661474],[-71.695113598,41.528606474],[-71.695192598,41.528569474],[-71.695295598,41.528548474],[-71.695362598,41.528568474],[-71.695420598,41.528605474],[-71.695470598,41.528649473],[-71.695558598,41.528750473],[-71.695644598,41.528874474],[-71.695722598,41.529006473],[-71.695819598,41.529139473],[-71.696091598,41.529469473],[-71.696187598,41.529579474],[-71.696276598,41.529708474],[-71.696308598,41.529768474],[-71.696310598,41.529824474],[-71.696251598,41.529936473],[-71.696237598,41.529991474],[-71.696271598,41.530050474],[-71.696348598,41.530076474],[-71.696419598,41.530058474],[-71.696494598,41.530018474],[-71.696549598,41.530060474],[-71.696576598,41.530112473],[-71.696643599,41.530280474],[-71.696646598,41.530354474],[-71.696625599,41.530420474],[-71.696561598,41.530474474],[-71.696367598,41.530569474],[-71.696242598,41.530635474],[-71.696164598,41.530691474],[-71.696120598,41.530749474],[-71.696076598,41.530862474],[-71.695921598,41.531147474],[-71.695934598,41.531164474],[-71.696014598,41.531142474],[-71.696068598,41.531104474],[-71.696110598,41.531057474],[-71.696160598,41.531023474],[-71.696167598,41.531050474],[-71.696161598,41.531246474],[-71.696140598,41.531308474],[-71.696099598,41.531355474],[-71.696032598,41.531385474],[-71.695841598,41.531427474],[-71.695695598,41.531451474],[-71.695544598,41.531497474],[-71.695465598,41.531525474],[-71.695390598,41.531558474],[-71.695326598,41.531596474],[-71.695271598,41.531637474],[-71.695227598,41.531685474],[-71.695149598,41.531790474],[-71.695083598,41.531904475],[-71.695031598,41.532022475],[-71.695000598,41.532079475],[-71.694883598,41.532264474],[-71.694770598,41.532470475],[-71.694741598,41.532544475],[-71.694689598,41.532705474],[-71.694656597,41.532785474],[-71.694611598,41.532865474],[-71.694659597,41.532881474],[-71.694733598,41.532890474],[-71.694812597,41.532885474],[-71.694880598,41.532863474],[-71.695001598,41.532791474],[-71.695081598,41.532777475],[-71.695106598,41.532833474],[-71.695077598,41.532905474],[-71.694962598,41.533054475],[-71.694934598,41.533132475],[-71.694943598,41.533207475],[-71.694971598,41.533281475],[-71.695007597,41.533355474],[-71.695098598,41.533515475],[-71.695121598,41.533538475],[-71.695158598,41.533591474],[-71.695275598,41.533708474],[-71.695374598,41.533800474],[-71.695485598,41.533889475],[-71.695597598,41.533948475],[-71.695827598,41.534044475],[-71.695889598,41.534090474],[-71.696007598,41.534146475],[-71.696180598,41.534284475],[-71.696272599,41.534375475],[-71.696407599,41.534494475],[-71.696618599,41.534694474],[-71.696683599,41.534738474],[-71.696950599,41.534903475],[-71.697095598,41.534983475],[-71.697189599,41.535082475],[-71.697229599,41.535132475],[-71.697259599,41.535183474],[-71.697307599,41.535317475],[-71.697320599,41.535374475],[-71.697316599,41.535432475],[-71.697300599,41.535488475],[-71.697255599,41.535602475],[-71.697266599,41.535680475],[-71.697263599,41.535752475],[-71.697246599,41.535826474],[-71.697298599,41.535837475],[-71.697316599,41.535900475],[-71.697313599,41.536028475],[-71.697295599,41.536099475],[-71.697291598,41.536214475],[-71.697288599,41.536324475],[-71.697301599,41.536470475],[-71.697314599,41.536544475],[-71.697319599,41.536671475],[-71.697345599,41.536932475],[-71.697368599,41.537072476],[-71.697403599,41.537208476],[-71.697451599,41.537343475],[-71.697485599,41.537472475],[-71.697545599,41.537598476],[-71.697628599,41.537725475],[-71.697720599,41.537845475],[-71.698011599,41.538147475],[-71.698065599,41.538188475],[-71.698180599,41.538260476],[-71.698332599,41.538407475],[-71.6983796,41.538464475],[-71.698482599,41.538629476],[-71.698508599,41.538683475],[-71.698526599,41.538735475],[-71.698542599,41.538812475],[-71.698544599,41.538866476],[-71.698537599,41.538922476],[-71.698517599,41.538978476],[-71.6984736,41.539047475],[-71.698423599,41.539113476],[-71.698366599,41.539171476],[-71.698265599,41.539287476],[-71.6982046,41.539322475],[-71.6980676,41.539378475],[-71.6979886,41.539416475],[-71.697925599,41.539464476],[-71.697732599,41.539509476],[-71.697666599,41.539533475],[-71.697609599,41.539569476],[-71.697569599,41.539617476],[-71.697530599,41.539676476],[-71.697464599,41.539722476],[-71.697393599,41.539745475],[-71.697229599,41.539782476],[-71.697065599,41.539806475],[-71.696984599,41.539812476],[-71.696907599,41.539812476],[-71.696815599,41.539802476],[-71.696746599,41.539787475],[-71.696682599,41.539761476],[-71.696559599,41.539688475],[-71.696483599,41.539664476],[-71.696409599,41.539686476],[-71.696332599,41.539721476],[-71.696196599,41.539805475],[-71.696103598,41.539902475],[-71.696057599,41.539962475],[-71.696039599,41.540031476],[-71.696039599,41.540086476],[-71.696018599,41.540369475],[-71.695994599,41.540487475],[-71.695963598,41.540621476],[-71.695922599,41.540656476],[-71.695920599,41.540676476],[-71.695899599,41.540729476],[-71.695942599,41.540851476],[-71.695952599,41.540927476],[-71.695952599,41.541062476],[-71.695962599,41.541120476],[-71.695985598,41.541181476],[-71.696027599,41.541233476],[-71.696041598,41.541251476],[-71.696112599,41.541255476],[-71.696149599,41.541269476],[-71.696220598,41.541386476],[-71.696298599,41.541480476],[-71.696402599,41.541568476],[-71.696556599,41.541730476],[-71.696592599,41.541784476],[-71.696616599,41.541891476],[-71.696662599,41.541945476],[-71.696733599,41.541915476],[-71.696780599,41.541969476],[-71.696802599,41.542025477],[-71.696802599,41.542087476],[-71.696778599,41.542150476],[-71.696750599,41.542207476],[-71.696773599,41.542280476],[-71.696775599,41.542350476],[-71.696790599,41.542383476],[-71.696806599,41.542419476],[-71.696818599,41.542476476],[-71.696808599,41.542537476],[-71.696810599,41.542616476],[-71.696896599,41.542710476],[-71.696910599,41.542765477],[-71.696893599,41.542826476],[-71.696862599,41.542885476],[-71.696852599,41.542958477],[-71.696926599,41.543007476],[-71.6969956,41.543065476],[-71.697041599,41.543116477],[-71.697077599,41.543170476],[-71.697091599,41.543240476],[-71.697116599,41.543292477],[-71.697184599,41.543320476],[-71.6972876,41.543329477],[-71.697353599,41.543353476],[-71.697372599,41.543363476],[-71.697415599,41.543385477],[-71.697472599,41.543422476],[-71.697582599,41.543510476],[-71.697651599,41.543544477],[-71.6977326,41.543572476],[-71.6978116,41.543608476],[-71.6978906,41.543652476],[-71.6979666,41.543700477],[-71.6980986,41.543799477],[-71.6982046,41.543897477],[-71.6982636,41.543967476],[-71.698288599,41.544021476],[-71.698210599,41.544146477],[-71.698131599,41.544185477],[-71.698050599,41.544206477],[-71.697955599,41.544218476],[-71.6977326,41.544209477],[-71.6976006,41.544214476],[-71.697389599,41.544244477],[-71.697314599,41.544258476],[-71.697175599,41.544292476],[-71.697068599,41.544337477],[-71.696988599,41.544397477],[-71.6969366,41.544466476],[-71.696913599,41.544538477],[-71.696920599,41.544613477],[-71.696947599,41.544687477],[-71.696990599,41.544757476],[-71.697040599,41.544823477],[-71.697101599,41.544880477],[-71.6971876,41.544927477],[-71.697386599,41.545017477],[-71.6974976,41.545056477],[-71.697624599,41.545095477],[-71.698226599,41.545258477],[-71.6983006,41.545282477],[-71.6984296,41.545332477],[-71.6985426,41.545381476],[-71.698657599,41.545412477],[-71.6987626,41.545416477],[-71.6988566,41.545377477],[-71.698868599,41.545327476],[-71.6988426,41.545270477],[-71.6987966,41.545205477],[-71.698733599,41.545142477],[-71.698673599,41.545093476],[-71.6986786,41.545067477],[-71.698751599,41.545078477],[-71.6988186,41.545101477],[-71.698868599,41.545086477],[-71.698870599,41.545015476],[-71.6988416,41.544953476],[-71.6987446,41.544833477],[-71.6987216,41.544771477],[-71.6987506,41.544647476],[-71.6987476,41.544490476],[-71.698774599,41.544450476],[-71.6988266,41.544493477],[-71.6988596,41.544549476],[-71.6988876,41.544611477],[-71.6988926,41.544680476],[-71.698888599,41.544750477],[-71.698908599,41.544818476],[-71.698948599,41.544877476],[-71.6989786,41.544942477],[-71.6990586,41.545158477],[-71.6991696,41.545371477],[-71.6992006,41.545447477],[-71.6992156,41.545520476],[-71.6992076,41.545586477],[-71.6991816,41.545643477],[-71.6991386,41.545687477],[-71.6990826,41.545721477],[-71.6989536,41.545780477],[-71.6988986,41.545828477],[-71.6988626,41.545887477],[-71.6988426,41.545946477],[-71.6988466,41.546001477],[-71.6988586,41.546056477],[-71.6988906,41.546106477],[-71.6989376,41.546146477],[-71.6990116,41.546209477],[-71.6990566,41.546220476],[-71.6990816,41.546157477],[-71.6990826,41.546086477],[-71.6991116,41.546041477],[-71.6991676,41.546007476],[-71.6992306,41.545980477],[-71.6992826,41.545991477],[-71.6993046,41.546058477],[-71.6993586,41.546379477],[-71.6993766,41.546440477],[-71.6995216,41.546746477],[-71.6995626,41.546885477],[-71.699588601,41.546952477],[-71.6995906,41.547024477],[-71.6995846,41.547087477],[-71.6996346,41.547217477],[-71.6996816,41.547283477],[-71.6997396,41.547335477],[-71.6997686,41.547403477],[-71.6997296,41.547472477],[-71.6997346,41.547539477],[-71.6997216,41.547607477],[-71.699686601,41.547670477],[-71.699724601,41.547718477],[-71.6998446,41.547794477],[-71.699897601,41.547843477],[-71.6999126,41.547873477],[-71.7002416,41.548253477],[-71.7003136,41.548375477],[-71.700344601,41.548531477],[-71.7003516,41.548675478],[-71.7003896,41.548749478],[-71.7005336,41.548825477],[-71.700717601,41.548868478],[-71.700835601,41.548859477],[-71.700931601,41.548811478],[-71.700981601,41.548742477],[-71.7009766,41.548626477],[-71.7011126,41.548619477],[-71.701282601,41.548646477],[-71.701507601,41.548684477],[-71.7015796,41.548708477],[-71.7016576,41.548738477],[-71.701693601,41.548755477],[-71.701806601,41.548838477],[-71.701975601,41.549008477],[-71.702273601,41.549208477],[-71.702540601,41.549331477],[-71.702949601,41.549376478],[-71.703243601,41.549335478],[-71.703410602,41.549275478],[-71.703704602,41.549127477],[-71.703967602,41.549008477],[-71.704048602,41.549001477],[-71.704203602,41.549054477],[-71.704331601,41.549128477],[-71.704404602,41.549147477],[-71.704440602,41.549098477],[-71.704477602,41.548987478],[-71.704555602,41.548866477],[-71.704622601,41.548751477],[-71.704654602,41.548673477],[-71.704720602,41.548516477],[-71.704784602,41.548398477],[-71.704850602,41.548291477],[-71.705038602,41.548091477],[-71.705145602,41.547994477],[-71.705294602,41.547932477],[-71.705455602,41.547885477],[-71.705552602,41.547867477],[-71.705788603,41.547827477],[-71.706078603,41.547750477],[-71.706213602,41.547681477],[-71.706457602,41.547519477],[-71.706581602,41.547430476],[-71.706785603,41.547211477],[-71.706887602,41.547129477],[-71.707008602,41.547090477],[-71.707154603,41.547080476],[-71.707300603,41.547086477],[-71.707452602,41.547106477],[-71.707772603,41.547139476],[-71.707949603,41.547173477],[-71.708267603,41.547259477],[-71.708377603,41.547314476],[-71.708422603,41.547432477],[-71.708505603,41.547544477],[-71.708612603,41.547606476],[-71.708777603,41.547638477],[-71.708954603,41.547602477],[-71.709100603,41.547560477],[-71.709243603,41.547569477],[-71.709372603,41.547649477],[-71.709448603,41.547753477],[-71.709515604,41.547891477],[-71.709557603,41.548010477],[-71.709526603,41.548047477],[-71.709382603,41.548043477],[-71.709351603,41.548065477],[-71.709387603,41.548157477],[-71.709603603,41.548538477],[-71.709755603,41.548615477],[-71.709884604,41.548671477],[-71.710001604,41.548741477],[-71.710089604,41.548826477],[-71.710145603,41.548934477],[-71.710152604,41.549075477],[-71.710134604,41.549209477],[-71.710068604,41.549313477],[-71.710109604,41.549342477],[-71.710261604,41.549386477],[-71.710432604,41.549421477],[-71.710728604,41.549445477],[-71.710905604,41.549491477],[-71.711059604,41.549567477],[-71.711222604,41.549640477],[-71.711364604,41.549725477],[-71.711388604,41.549785477],[-71.711359604,41.549845478],[-71.711270605,41.549919477],[-71.710969604,41.550015477],[-71.710913604,41.550088477],[-71.710941604,41.550153477],[-71.711031604,41.550209477],[-71.711128604,41.550209477],[-71.711271604,41.550159477],[-71.711412604,41.550120477],[-71.711561605,41.550093477],[-71.711734605,41.550089477],[-71.711882604,41.550106477],[-71.712022604,41.550175478],[-71.712140604,41.550270477],[-71.712262605,41.550346477],[-71.712411604,41.550390478],[-71.712586605,41.550400477],[-71.712736604,41.550363477],[-71.712803605,41.550307477],[-71.712814604,41.550195478],[-71.712811605,41.550064477],[-71.712855604,41.549977477],[-71.712983605,41.549943478],[-71.713111605,41.549952477],[-71.713205604,41.550028477],[-71.713277605,41.550157478],[-71.713367605,41.550284477],[-71.713443605,41.550407477],[-71.713544605,41.550518477],[-71.713615605,41.550618477],[-71.713675605,41.550752477],[-71.713755605,41.551002477],[-71.713806605,41.551084477],[-71.713922605,41.551162477],[-71.714031605,41.551247478],[-71.714130605,41.551358477],[-71.714195606,41.551463478],[-71.714278605,41.551529477],[-71.714409606,41.551576478],[-71.714689605,41.551661477],[-71.714776606,41.551729477],[-71.714798606,41.551821477],[-71.714751605,41.551902477],[-71.714639606,41.551986478],[-71.714540605,41.552085478],[-71.714454605,41.552210477],[-71.714360605,41.552311477],[-71.714269605,41.552417478],[-71.714194606,41.552527478],[-71.714162605,41.552582477],[-71.714131605,41.552631478],[-71.714061605,41.552764478],[-71.714007605,41.552879478],[-71.714016605,41.552963478],[-71.714068605,41.553089478],[-71.714126605,41.553195478],[-71.714225605,41.553293478],[-71.714249605,41.553314478],[-71.714347606,41.553397477],[-71.714458605,41.553512478],[-71.714527606,41.553611477],[-71.714611605,41.553703478],[-71.714787605,41.553918478],[-71.714891606,41.554020477],[-71.714933606,41.554069478],[-71.717121607,41.553842478],[-71.719382607,41.553585478],[-71.719979607,41.553528478],[-71.720825608,41.553434478],[-71.721044607,41.553409478],[-71.722447608,41.553265477],[-71.725287609,41.552932477],[-71.726079609,41.552858477],[-71.72848161,41.552613478],[-71.72978361,41.552466477],[-71.72996361,41.552431477],[-71.732195611,41.552149477],[-71.734698612,41.551939477],[-71.735279612,41.551830477],[-71.736214612,41.551759476],[-71.738157613,41.551582477],[-71.738349613,41.551555477],[-71.743344615,41.551057476],[-71.744340615,41.551036477],[-71.744507615,41.550989476],[-71.747670616,41.550992477],[-71.749450617,41.551111477],[-71.751236617,41.551014477],[-71.764144621,41.549273476],[-71.771286624,41.548352475],[-71.778201625,41.547370474],[-71.783624627,41.546600474],[-71.784720628,41.546520474],[-71.79100463,41.545812474],[-71.79141663,41.545766474],[-71.79142063,41.545645474],[-71.791435175,41.545296405],[-71.791475386,41.544272078],[-71.79158363,41.541489473],[-71.79165363,41.539727472],[-71.791936629,41.533316471],[-71.792053629,41.530465471],[-71.792206629,41.52679147],[-71.792168629,41.526795471],[-71.791855629,41.526795471],[-71.791626629,41.526734471],[-71.791481629,41.52668047],[-71.791382629,41.52663547],[-71.791275629,41.52656647],[-71.791206629,41.52649347],[-71.791067629,41.526326471],[-71.790947629,41.52616247],[-71.790863629,41.52598247],[-71.790741628,41.52591447],[-71.790550628,41.52588347],[-71.790077628,41.52586047],[-71.789711628,41.52584947],[-71.789299628,41.52578847],[-71.789078628,41.52576547],[-71.788795628,41.52575047],[-71.788614628,41.52575047],[-71.788437628,41.52575047],[-71.788147627,41.52573147],[-71.788002628,41.52571147],[-71.787483628,41.52571147],[-71.787216627,41.525723471],[-71.786934628,41.52573147],[-71.786675627,41.52570847],[-71.786400627,41.52570847],[-71.786118628,41.52571547],[-71.785782627,41.52573147],[-71.785362627,41.52578447],[-71.785156627,41.525818471],[-71.785103627,41.52583047],[-71.784584627,41.52589147],[-71.784287626,41.525895471],[-71.783905627,41.525895471],[-71.783495626,41.52592947],[-71.783218626,41.525952471],[-71.782875626,41.52599847],[-71.782661626,41.52600547],[-71.781921626,41.526009471],[-71.781548626,41.52599847],[-71.781204625,41.525956471],[-71.780655626,41.52591047],[-71.780037625,41.52584947],[-71.779663626,41.52582247],[-71.778938625,41.52574647],[-71.778564625,41.52527747],[-71.778023625,41.52465547],[-71.777611625,41.524182471],[-71.777191624,41.52365547],[-71.776749624,41.52307947],[-71.776100624,41.522118469],[-71.774895623,41.519978469],[-71.774345623,41.52008147],[-71.773688623,41.52022047],[-71.773170622,41.52032147],[-71.772774623,41.52040947],[-71.772507622,41.520478469],[-71.772278622,41.52055047],[-71.771942622,41.52068047],[-71.771660622,41.52081747],[-71.771538622,41.52090147],[-71.771286622,41.521084469],[-71.771263622,41.52109247],[-71.771248622,41.521103469],[-71.771111622,41.52115747],[-71.770973622,41.52118747],[-71.770828622,41.52120647],[-71.770592622,41.52121847],[-71.770531622,41.52121847],[-71.770325622,41.52122947],[-71.770172622,41.52125247],[-71.770081622,41.52127547],[-71.769905622,41.52132847],[-71.769615622,41.52143147],[-71.769073622,41.52164947],[-71.768280621,41.52197747],[-71.767616621,41.52227447],[-71.766800621,41.52261447],[-71.76654162,41.52277047],[-71.766449621,41.52283947],[-71.766396621,41.52288547],[-71.76635062,41.522934471],[-71.766296621,41.52298047],[-71.766243621,41.52303447],[-71.766089621,41.52317047],[-71.765991621,41.52325147],[-71.765930621,41.52328947],[-71.765556621,41.523495471],[-71.76521362,41.52365947],[-71.76494662,41.52377747],[-71.76493162,41.52375847],[-71.76487762,41.52371647],[-71.76466462,41.52351047],[-71.76457262,41.523434471],[-71.76408462,41.52309147],[-71.76374862,41.52289647],[-71.76377962,41.52283947],[-71.76377962,41.522736471],[-71.76374862,41.52269047],[-71.76370262,41.52264847],[-71.76364962,41.52261047],[-71.76306262,41.52201147],[-71.76294762,41.52188947],[-71.762894619,41.52182447],[-71.76277262,41.52169847],[-71.762726619,41.52164147],[-71.76267262,41.521588471],[-71.762566619,41.52146647],[-71.762413619,41.52127947],[-71.762314619,41.52117647],[-71.762024619,41.52088647],[-71.761749619,41.52091647],[-71.760811619,41.52104247],[-71.760574618,41.52106947],[-71.760536618,41.52107747],[-71.760170618,41.52112247],[-71.759758618,41.52115747],[-71.759117618,41.52119547],[-71.759048619,41.52119547],[-71.759010619,41.52120247],[-71.758972618,41.521218471],[-71.758919618,41.52125247],[-71.758858618,41.52130547],[-71.758789618,41.52128647],[-71.758713618,41.521275471],[-71.758535618,41.52123947],[-71.758446618,41.52122547],[-71.758247618,41.52120247],[-71.757896618,41.52118347],[-71.757759618,41.52118047],[-71.757454617,41.52118347],[-71.757133618,41.52119947],[-71.757067617,41.52120647],[-71.755760617,41.52134047],[-71.754059616,41.521489471],[-71.753700617,41.52153847],[-71.753487617,41.52158047],[-71.753159617,41.521679471],[-71.753006616,41.521721471],[-71.752907616,41.521740471],[-71.752815616,41.521763471],[-71.752716616,41.521778471],[-71.752625616,41.521798471],[-71.752434616,41.52182847],[-71.752220616,41.52184347],[-71.751892616,41.521859471],[-71.750641616,41.521916471],[-71.749557615,41.521973471],[-71.748199615,41.522034471],[-71.747520615,41.522068471],[-71.747414614,41.52208047],[-71.747299614,41.522087471],[-71.747093615,41.522114471],[-71.746902614,41.52215647],[-71.746849614,41.522171471],[-71.746765614,41.52219447],[-71.746613614,41.522244471],[-71.746544614,41.522271471],[-71.746475614,41.52229347],[-71.746292614,41.522377471],[-71.745735614,41.522652471],[-71.745560614,41.522728471],[-71.745444614,41.522769471],[-71.745300614,41.522820471],[-71.745201614,41.522850471],[-71.744934613,41.522911471],[-71.744743613,41.522938471],[-71.744545613,41.522961471],[-71.743660614,41.523003471],[-71.742481613,41.523049471],[-71.741913612,41.523072471],[-71.741722613,41.523083471],[-71.741577612,41.523098471],[-71.741623612,41.523198471],[-71.741676612,41.523339471],[-71.741722613,41.523487471],[-71.741730613,41.523526471],[-71.741776612,41.523644471],[-71.741806613,41.523701471],[-71.741864613,41.523792472],[-71.741814612,41.523830472],[-71.741793612,41.523897471],[-71.741826613,41.524071471],[-71.741828613,41.524190471],[-71.741815612,41.524248471],[-71.741736612,41.524279472],[-71.741665613,41.524312471],[-71.741566613,41.524343471],[-71.741489613,41.524385471],[-71.741491613,41.524457471],[-71.741464612,41.524509472],[-71.741372613,41.524556471],[-71.741310612,41.524594471],[-71.741265612,41.524638471],[-71.741183613,41.524659471],[-71.741121613,41.524691471],[-71.741050612,41.524704472],[-71.740969613,41.524709471],[-71.740929613,41.524756471],[-71.740872613,41.524812471],[-71.740815613,41.524851471],[-71.740629612,41.524893471],[-71.740570612,41.524929471],[-71.740485612,41.525022471],[-71.740419612,41.525053472],[-71.740286613,41.525072472],[-71.740231612,41.525106471],[-71.740103612,41.525197471],[-71.740038612,41.525250472],[-71.739865612,41.525317471],[-71.739796612,41.525355471],[-71.739741612,41.525412471],[-71.739685612,41.525482472],[-71.739624612,41.525537472],[-71.739551612,41.525578472],[-71.739519612,41.525630471],[-71.739479612,41.525676472],[-71.739403612,41.525703472],[-71.739316612,41.525718472],[-71.739242612,41.525748471],[-71.739141612,41.525832472],[-71.739104612,41.525881471],[-71.739022611,41.526025472],[-71.739006612,41.526088472],[-71.738965612,41.526144472],[-71.738879612,41.526207472],[-71.738787612,41.526253471],[-71.738597612,41.526318472],[-71.738549612,41.526373472],[-71.738491612,41.526417472],[-71.738435612,41.526453472],[-71.738377612,41.526501472],[-71.738313612,41.526547472],[-71.738189611,41.526618472],[-71.738139612,41.526664472],[-71.738073611,41.526701472],[-71.737959612,41.526806472],[-71.737913611,41.526864472],[-71.737890612,41.526927472],[-71.737894611,41.526996472],[-71.737884612,41.527057472],[-71.737845612,41.527115472],[-71.737794611,41.527153472],[-71.737752612,41.527199472],[-71.737560611,41.527343472],[-71.737513612,41.527467472],[-71.737460612,41.527510472],[-71.737397612,41.527551472],[-71.737285612,41.527553472],[-71.737204612,41.527548472],[-71.737141611,41.527511472],[-71.737091612,41.527463472],[-71.736954612,41.527408472],[-71.736770611,41.527362472],[-71.736319611,41.527220472],[-71.736305611,41.527233472],[-71.736290611,41.527260472],[-71.736252611,41.527302472],[-71.736191611,41.527409472],[-71.736145611,41.527523472],[-71.736130611,41.527581472],[-71.736115611,41.527714472],[-71.736160611,41.528149472],[-71.736247611,41.528809472],[-71.736305611,41.529267473],[-71.736336611,41.529591472],[-71.736382611,41.530236473],[-71.736183611,41.530190472],[-71.735985611,41.530159473],[-71.735832611,41.530148473],[-71.735649611,41.530140473],[-71.73504661,41.530136472],[-71.73450261,41.530149473],[-71.733444611,41.530175472],[-71.73273661,41.530218473],[-71.73263761,41.530222473],[-71.73253061,41.530224473],[-71.731693609,41.530224473],[-71.73145061,41.530225473],[-71.73063461,41.530232473],[-71.729921609,41.530229472],[-71.729876609,41.530228472],[-71.729499609,41.530239473],[-71.729356609,41.530247473],[-71.729071609,41.530261473],[-71.728897609,41.530271473],[-71.728388609,41.530330473],[-71.727908608,41.530409473],[-71.727644608,41.530447473],[-71.727594608,41.530458473],[-71.727274608,41.530511473],[-71.727195608,41.530527473],[-71.726898608,41.530583473],[-71.726669608,41.530621473],[-71.726067608,41.530777473],[-71.726028608,41.530644473],[-71.725922608,41.530388473],[-71.725693608,41.529995472],[-71.725548607,41.529732473],[-71.725502608,41.529629473],[-71.725441608,41.529404473],[-71.725433607,41.529343473],[-71.725426608,41.529190473],[-71.725372607,41.528885472],[-71.725327608,41.528565473],[-71.725273608,41.528130472],[-71.725266608,41.527985473],[-71.725250608,41.527848473],[-71.725143607,41.527287472],[-71.725075608,41.526665472],[-71.725044607,41.526314472],[-71.725006607,41.526001472],[-71.724983607,41.525936472],[-71.724976608,41.525898473],[-71.724922607,41.525811472],[-71.724854607,41.525750472],[-71.723969607,41.525093472],[-71.723221607,41.524498472],[-71.723079607,41.524394472],[-71.722931607,41.524285472],[-71.722577607,41.523946472],[-71.722557607,41.523926472],[-71.722252606,41.523594472],[-71.721863606,41.523186472],[-71.721718606,41.523026472],[-71.721527606,41.522843471],[-71.721252606,41.522564471],[-71.721115606,41.522431471],[-71.720978606,41.522263472],[-71.720810605,41.522099471],[-71.720383605,41.521664472],[-71.720230605,41.521721472],[-71.720177606,41.521748471],[-71.720146605,41.521778472],[-71.720085606,41.521824471],[-71.720070605,41.521855472],[-71.719978605,41.522175471],[-71.719833605,41.522133472],[-71.719620605,41.522110472],[-71.719566605,41.522095472],[-71.719498606,41.522049472],[-71.719223605,41.521714471],[-71.719231605,41.521679472],[-71.719292605,41.521649471],[-71.719704605,41.521504472],[-71.719810606,41.521416471],[-71.719910606,41.521321471],[-71.719971605,41.521241471],[-71.720047605,41.521111471],[-71.719902605,41.520777471],[-71.719856605,41.520672472],[-71.719749606,41.520398472],[-71.719719605,41.520340472],[-71.719666605,41.520214471],[-71.719627605,41.520165472],[-71.719528605,41.520058471],[-71.719292605,41.519833472],[-71.719193605,41.519764471],[-71.719063605,41.519673471],[-71.718857605,41.519509471],[-71.718788605,41.519459471],[-71.718605604,41.519287471],[-71.718224605,41.518898471],[-71.717941604,41.518631471],[-71.717728604,41.518437471],[-71.717545605,41.518277471],[-71.717407605,41.518132471],[-71.717361604,41.518074471],[-71.717300604,41.518025471],[-71.717133604,41.517838471],[-71.716942604,41.517605471],[-71.716530604,41.51712847],[-71.716484604,41.517083471],[-71.716454604,41.517060471],[-71.716408604,41.517018471],[-71.716164604,41.51685047],[-71.715736604,41.516568471],[-71.715332603,41.51630847],[-71.714569603,41.515789471],[-71.713814603,41.515267471],[-71.712677602,41.514622471],[-71.712563602,41.51453447],[-71.712524602,41.51449647],[-71.712494603,41.51445847],[-71.712471603,41.514412471],[-71.712433603,41.51430947],[-71.712334603,41.51387847],[-71.712273602,41.51342447],[-71.712212602,41.51319247],[-71.712112602,41.51294747],[-71.712027603,41.51283247],[-71.711908602,41.51269247],[-71.711530602,41.51229147],[-71.711405602,41.512171469],[-71.711225602,41.51202947],[-71.711023602,41.51188347],[-71.710777602,41.51170847],[-71.711052602,41.51143747],[-71.711479602,41.51101347],[-71.711510602,41.510922469],[-71.711632602,41.51085347],[-71.711830602,41.51072347],[-71.712067603,41.51054847],[-71.712311602,41.510376469],[-71.712570603,41.51019747],[-71.714256602,41.508995469],[-71.715096603,41.508400469],[-71.715962603,41.507792469],[-71.715928604,41.507754469],[-71.715902603,41.507700469],[-71.715871604,41.507444469],[-71.715869604,41.507334468],[-71.715877603,41.507267469],[-71.715889604,41.507213469],[-71.715934603,41.507097469],[-71.715946604,41.506968468],[-71.715934603,41.506671468],[-71.715939603,41.506612468],[-71.715976603,41.506432469],[-71.715975603,41.506366468],[-71.715986604,41.506238469],[-71.715984603,41.506166468],[-71.715943603,41.506019469],[-71.715916603,41.505947469],[-71.715882603,41.505880468],[-71.715863603,41.505827469],[-71.715824603,41.505774468],[-71.715730603,41.505677468],[-71.715694603,41.505625468],[-71.715637603,41.505579468],[-71.715603603,41.505530468],[-71.715556603,41.505426468],[-71.715624603,41.505252468],[-71.715663603,41.505129469],[-71.715689603,41.505011469],[-71.715691603,41.504956468],[-71.715683603,41.504900468],[-71.715658604,41.504804468],[-71.715580604,41.504909468],[-71.715532603,41.504953469],[-71.715494603,41.505000468],[-71.715460603,41.505055468],[-71.715397603,41.505098468],[-71.715225603,41.505073468],[-71.715139603,41.505085469],[-71.714898603,41.505164469],[-71.714822602,41.505181469],[-71.714653603,41.505233468],[-71.714507603,41.505288468],[-71.714226603,41.505362469],[-71.714154603,41.505371468],[-71.714080602,41.505372468],[-71.713975603,41.505364468],[-71.713558602,41.505369468],[-71.713469603,41.505381469],[-71.713254603,41.505440469],[-71.713085602,41.505465468],[-71.712985603,41.505485468],[-71.712899602,41.505494469],[-71.712849603,41.505470468],[-71.712842602,41.505420469],[-71.712889603,41.505351468],[-71.712961602,41.505280469],[-71.713039602,41.505222469],[-71.713118603,41.505176468],[-71.713205602,41.505137468],[-71.713360602,41.505087469],[-71.713406602,41.505052468],[-71.713421602,41.504923468],[-71.713443602,41.504864468],[-71.713479602,41.504799468],[-71.713523602,41.504745468],[-71.713590603,41.504700469],[-71.713670602,41.504672468],[-71.713856603,41.504620469],[-71.714042602,41.504586468],[-71.714120602,41.504559469],[-71.714128603,41.504542469],[-71.714030603,41.504497468],[-71.713934603,41.504474468],[-71.713835602,41.504467468],[-71.713736602,41.504485469],[-71.713511603,41.504555468],[-71.713409602,41.504594468],[-71.713313603,41.504636468],[-71.713111602,41.504739469],[-71.712867603,41.504881468],[-71.712797602,41.504935468],[-71.712733603,41.504996468],[-71.712626602,41.505117468],[-71.712599602,41.505145469],[-71.711901602,41.504775469]]]]}}"}, +{"type": "precinct", "typeId": 1501, "areaId": 25784, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":123,\"NAME\":\"1501\",\"SHAPE_Length\":0.36408169084631,\"SHAPE_Area\":-0.0012058654942573},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.330182554,41.51834514],[-71.330232755,41.518355835],[-71.330182478,41.518344483],[-71.330182243,41.518343002],[-71.330182554,41.51834514]]],[[[-71.330788478,41.517755482],[-71.330806478,41.517807482],[-71.330806478,41.517864482],[-71.330795478,41.517923482],[-71.330782478,41.517984482],[-71.330785478,41.518039483],[-71.330759478,41.518093483],[-71.330684478,41.518125482],[-71.330629478,41.518160482],[-71.330565478,41.518195483],[-71.330515478,41.518235482],[-71.330458478,41.518284483],[-71.330391478,41.518319482],[-71.330317478,41.518329483],[-71.330244723,41.518358385],[-71.330245355,41.51835852],[-71.330317486,41.518330085],[-71.330391881,41.518320269],[-71.330458766,41.518284851],[-71.330515918,41.518236222],[-71.330566445,41.518195771],[-71.330629646,41.51816101],[-71.330684601,41.518126077],[-71.330759602,41.518093552],[-71.330785788,41.518040327],[-71.330782769,41.517984611],[-71.330796345,41.517924278],[-71.330807151,41.517864626],[-71.330806872,41.517808251],[-71.330786814,41.517747993],[-71.330788478,41.517755482]]],[[[-71.319517066,41.519501848],[-71.319599568,41.519521188],[-71.319681751,41.519531615],[-71.319599475,41.519520483],[-71.319434564,41.519482504],[-71.319517066,41.519501848]]],[[[-71.319274474,41.519481483],[-71.319191474,41.519495483],[-71.319116474,41.519509483],[-71.319037474,41.519522483],[-71.318968712,41.519531893],[-71.319037614,41.519522889],[-71.319116798,41.519509955],[-71.319191664,41.51949626],[-71.319275294,41.519482074],[-71.319350812,41.519474326],[-71.319434474,41.519482484],[-71.319350474,41.519473483],[-71.319274474,41.519481483]]],[[[-71.329883478,41.518150483],[-71.329793478,41.518169483],[-71.329704477,41.518196482],[-71.329629478,41.518217482],[-71.329488477,41.518260482],[-71.329418478,41.518287483],[-71.329334477,41.518315482],[-71.329261478,41.518344483],[-71.329067478,41.518433482],[-71.329003477,41.518464483],[-71.328930477,41.518492482],[-71.328857478,41.518518483],[-71.328703478,41.518584483],[-71.328565478,41.518659483],[-71.328439477,41.518743482],[-71.328371478,41.518780483],[-71.328309477,41.518819483],[-71.328251477,41.518859482],[-71.328136477,41.518929483],[-71.328080478,41.518965483],[-71.327959477,41.519033483],[-71.327896477,41.519081483],[-71.327845477,41.519138483],[-71.327826478,41.519194483],[-71.327843477,41.519258483],[-71.327861477,41.519321483],[-71.327871477,41.519391483],[-71.327862477,41.519461483],[-71.327846478,41.519514483],[-71.327835189,41.519566328],[-71.327838884,41.519550054],[-71.32784692,41.519514755],[-71.327863035,41.519462064],[-71.327872319,41.519392051],[-71.327862372,41.519321757],[-71.327843977,41.519258883],[-71.327826559,41.519194638],[-71.327845513,41.519138566],[-71.327897393,41.51908227],[-71.327960054,41.519033742],[-71.328019542,41.519000281],[-71.328080919,41.518965496],[-71.328136791,41.518929926],[-71.328193572,41.518895751],[-71.328252212,41.51886023],[-71.328310044,41.51881986],[-71.328372436,41.518780937],[-71.328440269,41.518744195],[-71.328501817,41.518702503],[-71.328566135,41.518660221],[-71.328635827,41.518622133],[-71.3287036,41.518585344],[-71.328783264,41.518550861],[-71.328858265,41.518519],[-71.328931274,41.518492626],[-71.329004347,41.518464925],[-71.329068362,41.518433597],[-71.329136941,41.518402321],[-71.329198118,41.518373756],[-71.329262034,41.518345172],[-71.329335141,41.518316053],[-71.3294192,41.518287796],[-71.329488557,41.51826137],[-71.329561463,41.518239157],[-71.329629771,41.518218195],[-71.329705384,41.518196718],[-71.329794003,41.518169885],[-71.329884153,41.518151357],[-71.329958482,41.518143599],[-71.330039506,41.518158607],[-71.330104511,41.518190584],[-71.330155592,41.518229218],[-71.330157983,41.518236292],[-71.330155478,41.518228483],[-71.330104478,41.518190483],[-71.330039478,41.518158482],[-71.329958478,41.518143482],[-71.329883478,41.518150483]]],[[[-71.319724834,41.519537462],[-71.319769488,41.519543501],[-71.319856342,41.519562962],[-71.319912305,41.51957862],[-71.319855474,41.519562483],[-71.319769475,41.519543483],[-71.319708654,41.519535254],[-71.319724834,41.519537462]]],[[[-71.320022264,41.519600317],[-71.320093978,41.51961363],[-71.320021475,41.519599484],[-71.319941834,41.519586366],[-71.320022264,41.519600317]]],[[[-71.320739708,41.519789062],[-71.320655475,41.519760483],[-71.320571475,41.519737483],[-71.320495475,41.519711483],[-71.320429475,41.519685483],[-71.320351475,41.519659483],[-71.320261475,41.519643483],[-71.320185475,41.519631483],[-71.320123057,41.519619304],[-71.320185769,41.519631744],[-71.320262389,41.519643733],[-71.320351991,41.519659951],[-71.320429881,41.519685801],[-71.320495537,41.519712044],[-71.320571633,41.519737823],[-71.320655768,41.519761144],[-71.320739708,41.519789062]]],[[[-71.320739708,41.519789062],[-71.320823647,41.519817666],[-71.32085995,41.519832174],[-71.320823475,41.519817483],[-71.320739708,41.519789062]]],[[[-71.315831121,41.519866608],[-71.315830474,41.519866483],[-71.315754474,41.519860483],[-71.315672473,41.519861483],[-71.315597473,41.519860483],[-71.315510473,41.519857483],[-71.315427473,41.519847483],[-71.315355473,41.519841483],[-71.315274509,41.519839484],[-71.31535581,41.519842361],[-71.315428279,41.519847692],[-71.31551105,41.519857865],[-71.315597616,41.519860817],[-71.315672835,41.519862264],[-71.315755151,41.519861206],[-71.315831121,41.519866608]]],[[[-71.320967259,41.519868409],[-71.321048749,41.519891017],[-71.321125892,41.519912246],[-71.321210912,41.519934905],[-71.321236736,41.519945624],[-71.321210475,41.519934483],[-71.320966475,41.519867483],[-71.320899663,41.519847722],[-71.320967259,41.519868409]]],[[[-71.315831121,41.519866608],[-71.315918952,41.519884087],[-71.315983726,41.51990969],[-71.316056901,41.519945302],[-71.316126972,41.519970296],[-71.316187267,41.519981471],[-71.316126474,41.519969484],[-71.316056473,41.519944483],[-71.315983473,41.519909484],[-71.315918473,41.519883483],[-71.315831121,41.519866608]]],[[[-71.316543473,41.519920483],[-71.316458474,41.519944483],[-71.316368473,41.519966484],[-71.316283474,41.519980483],[-71.316198022,41.519983464],[-71.316198293,41.519983514],[-71.316284113,41.519981227],[-71.316368627,41.519967046],[-71.316458671,41.519945074],[-71.316544399,41.519921106],[-71.316635098,41.519904442],[-71.316719644,41.519889597],[-71.316811278,41.519897267],[-71.316897259,41.519891686],[-71.316991521,41.519873746],[-71.317079766,41.519853075],[-71.317152017,41.51983869],[-71.317240132,41.519820626],[-71.317332428,41.519809246],[-71.317417593,41.519801697],[-71.317506875,41.519801427],[-71.317587609,41.519822047],[-71.317671263,41.519832196],[-71.317747596,41.51982708],[-71.317829195,41.5198214],[-71.31790756,41.519807803],[-71.31798439,41.519788233],[-71.318051544,41.519768443],[-71.318135439,41.519747055],[-71.318209555,41.519729379],[-71.318280339,41.519706393],[-71.318351902,41.519687409],[-71.318422386,41.519673593],[-71.318498531,41.519648762],[-71.31857288,41.51962386],[-71.318646242,41.519603553],[-71.318727423,41.519584081],[-71.318811319,41.519561984],[-71.318882653,41.519548877],[-71.318942757,41.51953621],[-71.318952888,41.519534058],[-71.318942474,41.519535483],[-71.318882474,41.519548483],[-71.318810474,41.519561483],[-71.318726474,41.519583483],[-71.318645474,41.519603483],[-71.318572474,41.519623483],[-71.318421474,41.519673483],[-71.318351475,41.519686483],[-71.318279474,41.519705483],[-71.318209474,41.519728483],[-71.318051474,41.519767483],[-71.317983474,41.519787483],[-71.317907474,41.519807483],[-71.317828474,41.519820483],[-71.317670474,41.519831484],[-71.317587474,41.519821483],[-71.317506474,41.519800483],[-71.317417473,41.519801483],[-71.317331474,41.519808483],[-71.317239474,41.519820483],[-71.317079474,41.519852484],[-71.316991473,41.519873483],[-71.316896474,41.519891484],[-71.316810474,41.519896483],[-71.316719473,41.519889484],[-71.316543473,41.519920483]]],[[[-71.321336598,41.519997832],[-71.32138129,41.520037497],[-71.321336475,41.519997483],[-71.321315942,41.519985506],[-71.321336598,41.519997832]]],[[[-71.321457607,41.520146194],[-71.321498859,41.520194353],[-71.321528637,41.520219952],[-71.321498475,41.520193483],[-71.321457475,41.520145484],[-71.321445008,41.52012803],[-71.321457607,41.520146194]]],[[[-71.321707895,41.52037926],[-71.321754294,41.520406575],[-71.321707475,41.520378484],[-71.321667078,41.520350056],[-71.321707895,41.52037926]]],[[[-71.321829488,41.520459242],[-71.321889682,41.520491307],[-71.321932313,41.52052086],[-71.321889475,41.520490483],[-71.321829475,41.520458483],[-71.321781298,41.520424293],[-71.321829488,41.520459242]]],[[[-71.322006211,41.520565197],[-71.322030331,41.520579779],[-71.322005475,41.520564483],[-71.321960678,41.52053878],[-71.322006211,41.520565197]]],[[[-71.322134906,41.520641324],[-71.322208835,41.520680912],[-71.32227753,41.520720377],[-71.322344459,41.520760457],[-71.322364958,41.520775504],[-71.322343476,41.520759483],[-71.322277475,41.520719483],[-71.322208476,41.520680483],[-71.322134476,41.520640483],[-71.322096656,41.52061921],[-71.322134906,41.520641324]]],[[[-71.322453524,41.52084872],[-71.322493475,41.520900483],[-71.322453475,41.520848483],[-71.322440829,41.520837325],[-71.322453524,41.52084872]]],[[[-71.322831824,41.521411171],[-71.322834813,41.521416138],[-71.322831476,41.521410484],[-71.322824017,41.521400423],[-71.322831824,41.521411171]]],[[[-71.312168741,41.521748642],[-71.312246028,41.521740924],[-71.312306361,41.521692104],[-71.312340552,41.521655604],[-71.312351752,41.521643648],[-71.312407152,41.521585489],[-71.312452474,41.521539663],[-71.312502929,41.52149723],[-71.312564832,41.521453009],[-71.3126249,41.521411392],[-71.312677904,41.521371639],[-71.312738174,41.521323482],[-71.312799324,41.521275989],[-71.312855996,41.521230342],[-71.312913813,41.521178201],[-71.31297065,41.521127957],[-71.313026635,41.521077734],[-71.313092235,41.521027687],[-71.313155936,41.520982188],[-71.313217936,41.52093536],[-71.313290369,41.520890058],[-71.313357435,41.520848566],[-71.313427153,41.520805867],[-71.313500303,41.520765163],[-71.313564619,41.520727555],[-71.313636037,41.520686185],[-71.313700552,41.520642722],[-71.313760654,41.520599801],[-71.31382972,41.520550445],[-71.313891784,41.520502313],[-71.313959051,41.520454258],[-71.314033383,41.520404362],[-71.314098881,41.52035763],[-71.314174029,41.520309748],[-71.314243842,41.520265036],[-71.314313325,41.52022954],[-71.314387974,41.520196087],[-71.314452976,41.520163122],[-71.314522394,41.520128929],[-71.314586642,41.520093333],[-71.314649194,41.520055081],[-71.314724075,41.520015088],[-71.314790157,41.519976864],[-71.314860586,41.519940089],[-71.314931504,41.519913148],[-71.315020767,41.519887883],[-71.31509655,41.519872888],[-71.315184763,41.519852858],[-71.315274473,41.519839483],[-71.315184473,41.519852484],[-71.315096473,41.519872484],[-71.315020473,41.519887484],[-71.314931473,41.519912483],[-71.314860473,41.519939483],[-71.314789473,41.519976483],[-71.314723473,41.520014483],[-71.314648473,41.520054483],[-71.314586473,41.520092483],[-71.314521473,41.520128483],[-71.314387473,41.520195483],[-71.314312473,41.520229483],[-71.314243473,41.520264483],[-71.314098473,41.520357484],[-71.314032473,41.520403483],[-71.313958473,41.520453484],[-71.313891473,41.520501483],[-71.313829472,41.520549484],[-71.313700473,41.520642483],[-71.313635472,41.520685484],[-71.313499472,41.520764484],[-71.313426473,41.520805484],[-71.313217473,41.520934484],[-71.313155473,41.520981484],[-71.313091472,41.521027483],[-71.313026473,41.521077484],[-71.312855472,41.521229484],[-71.312798472,41.521275484],[-71.312737472,41.521322484],[-71.312677473,41.521371484],[-71.312624472,41.521410484],[-71.312502472,41.521496483],[-71.312452472,41.521539484],[-71.312406472,41.521585484],[-71.312305473,41.521691484],[-71.312245473,41.521740484],[-71.312168473,41.521748483],[-71.312092473,41.521735484],[-71.312089869,41.521735512],[-71.312093035,41.521736031],[-71.312168741,41.521748642]]],[[[-71.312001472,41.521736484],[-71.311976472,41.521760484],[-71.311977143,41.521760902],[-71.312001984,41.521736592],[-71.312002101,41.521736477],[-71.312001472,41.521736484]]],[[[-71.323004654,41.521864444],[-71.323063966,41.521897147],[-71.323096728,41.521931952],[-71.323063476,41.521896484],[-71.323004476,41.521863483],[-71.32297752,41.521827056],[-71.323004654,41.521864444]]],[[[-71.312061472,41.522013484],[-71.312014473,41.522057483],[-71.311965472,41.522098483],[-71.311900472,41.522138484],[-71.311855472,41.522161484],[-71.311856468,41.522161909],[-71.311900762,41.52213889],[-71.311966031,41.522098677],[-71.312014656,41.522058186],[-71.312061677,41.522014352],[-71.312065018,41.522012865],[-71.312061472,41.522013484]]],[[[-71.327819477,41.519638483],[-71.327800477,41.519695483],[-71.327767477,41.519756482],[-71.327736477,41.519819483],[-71.327711478,41.519874483],[-71.327693478,41.519927483],[-71.327658477,41.520058483],[-71.327642477,41.520115483],[-71.327627477,41.520177483],[-71.327608477,41.520241483],[-71.327600477,41.520301483],[-71.327592477,41.520330483],[-71.327582477,41.520425483],[-71.327586477,41.520544483],[-71.327576478,41.520604483],[-71.327535478,41.520728483],[-71.327510477,41.520781483],[-71.327479477,41.520837483],[-71.327457478,41.520888483],[-71.327431477,41.520945484],[-71.327406477,41.521008483],[-71.327383477,41.521070483],[-71.327362477,41.521133483],[-71.327329477,41.521242483],[-71.327315477,41.521295484],[-71.327302478,41.521359483],[-71.327305477,41.521417483],[-71.327249477,41.521453483],[-71.327187477,41.521486483],[-71.327126477,41.521532483],[-71.327065477,41.521581483],[-71.326966477,41.521676483],[-71.326905477,41.521727483],[-71.326850477,41.521769483],[-71.326786477,41.521823483],[-71.326691477,41.521922483],[-71.326628477,41.521960483],[-71.326554477,41.521992484],[-71.326479477,41.522022483],[-71.326343477,41.522107483],[-71.326280477,41.522135483],[-71.326195477,41.522161483],[-71.326119477,41.522175483],[-71.325957477,41.522217483],[-71.325869477,41.522239483],[-71.325702477,41.522274483],[-71.325627476,41.522288484],[-71.325557477,41.522306484],[-71.325537526,41.522312086],[-71.325557847,41.522306646],[-71.325628465,41.522288914],[-71.325702482,41.522274527],[-71.325795044,41.522255251],[-71.325869976,41.522240247],[-71.325958256,41.52221758],[-71.326033288,41.522199283],[-71.326119866,41.522175972],[-71.326195616,41.522162273],[-71.326281381,41.522135645],[-71.326343596,41.522107861],[-71.326414222,41.522063828],[-71.326479515,41.52202299],[-71.326554943,41.521992824],[-71.32662864,41.521961352],[-71.326692099,41.521923117],[-71.326744707,41.521868881],[-71.32678737,41.521823617],[-71.326851327,41.521770243],[-71.326906154,41.52172788],[-71.326966513,41.521677062],[-71.327017189,41.521628014],[-71.327066033,41.521581593],[-71.327127207,41.521532766],[-71.327188251,41.521487232],[-71.32724978,41.521453546],[-71.327306142,41.521417816],[-71.327302857,41.521359836],[-71.327316385,41.521296278],[-71.327330435,41.521242601],[-71.327347132,41.521188973],[-71.32736301,41.521134018],[-71.327383537,41.521070608],[-71.327406647,41.521008574],[-71.327431492,41.520945879],[-71.327457967,41.520888492],[-71.327479799,41.520837617],[-71.327511442,41.520782296],[-71.32753602,41.520728817],[-71.327556578,41.520664744],[-71.327576974,41.520604627],[-71.32758687,41.520544928],[-71.327585318,41.520487729],[-71.327583048,41.520425816],[-71.327588366,41.520371325],[-71.327592734,41.520330486],[-71.327600874,41.520301751],[-71.327608914,41.52024205],[-71.327628104,41.520177677],[-71.327642631,41.520116019],[-71.327658849,41.520059211],[-71.327676214,41.51999415],[-71.327693612,41.519928402],[-71.327712468,41.519875052],[-71.327736868,41.519819721],[-71.32776789,41.519756966],[-71.327800703,41.51969625],[-71.327819691,41.519638784],[-71.327833003,41.519576366],[-71.327819477,41.519638483]]],[[[-71.312717625,41.522307859],[-71.312722973,41.522310567],[-71.312725598,41.522307872],[-71.312751968,41.52228086],[-71.312747997,41.522243942],[-71.312747487,41.522243616],[-71.312751473,41.522280484],[-71.312634473,41.522265484],[-71.312187473,41.521991484],[-71.312160675,41.521996163],[-71.312187603,41.521992397],[-71.312635185,41.522266125],[-71.312717625,41.522307859]]],[[[-71.323148555,41.522861837],[-71.323214804,41.522895329],[-71.323252288,41.522919692],[-71.323214476,41.522894484],[-71.323148476,41.522861483],[-71.323146191,41.5228542],[-71.323148555,41.522861837]]],[[[-71.323330288,41.522975162],[-71.323391955,41.523015142],[-71.323440482,41.523055522],[-71.323440476,41.523055483],[-71.323391476,41.523014483],[-71.323329476,41.522974483],[-71.323318904,41.522966828],[-71.323330288,41.522975162]]],[[[-71.325411477,41.522347484],[-71.325323477,41.522374483],[-71.325249477,41.522394483],[-71.325170477,41.522427484],[-71.325087476,41.522457484],[-71.325008476,41.522480484],[-71.324940477,41.522502484],[-71.324869476,41.522537484],[-71.324812476,41.522587483],[-71.324756476,41.522640484],[-71.324705477,41.522684483],[-71.324651477,41.522726483],[-71.324596476,41.522763483],[-71.324538476,41.522812484],[-71.324486476,41.522850484],[-71.324419476,41.522886484],[-71.324345476,41.522923484],[-71.324147476,41.523046484],[-71.324082477,41.523085484],[-71.324010476,41.523115483],[-71.323939476,41.523140484],[-71.323869477,41.523159484],[-71.323780476,41.523170483],[-71.323697476,41.523179484],[-71.323626476,41.523193483],[-71.323548476,41.523214484],[-71.323469105,41.523216468],[-71.32346916,41.523216584],[-71.323548866,41.523214854],[-71.323627466,41.52319398],[-71.323697985,41.523179566],[-71.323781421,41.523171255],[-71.323870221,41.523159796],[-71.323940022,41.52314076],[-71.324010872,41.523116467],[-71.324082804,41.523085588],[-71.324148001,41.523047358],[-71.324216894,41.523003965],[-71.324282124,41.522964454],[-71.324345654,41.522923545],[-71.324419548,41.522887455],[-71.324487296,41.522851241],[-71.324539344,41.522813425],[-71.324597024,41.522763885],[-71.324651688,41.522726782],[-71.324705603,41.522685035],[-71.324756998,41.522641272],[-71.324813043,41.522588437],[-71.324869935,41.522537546],[-71.324941116,41.522502733],[-71.32500928,41.522480996],[-71.325087917,41.522457513],[-71.325171226,41.522428207],[-71.325250254,41.522394845],[-71.32532447,41.522374535],[-71.325412031,41.522347933],[-71.325449389,41.522336837],[-71.325411477,41.522347484]]],[[[-71.345662508,41.539842932],[-71.34573392,41.539842685],[-71.345740735,41.539805599],[-71.345892542,41.539790709],[-71.345939145,41.539841954],[-71.346033451,41.539801532],[-71.345918823,41.538682702],[-71.345906861,41.538541419],[-71.345887782,41.538385032],[-71.345855591,41.538225678],[-71.345811466,41.538080007],[-71.345746182,41.537935862],[-71.345705327,41.537836255],[-71.345672905,41.537800123],[-71.345498323,41.537551317],[-71.345566787,41.537356101],[-71.345609818,41.537359703],[-71.345633981,41.537361908],[-71.34566382,41.537306626],[-71.345703375,41.537197659],[-71.345738904,41.537091728],[-71.345778466,41.536979742],[-71.345816927,41.536857165],[-71.345885575,41.536737534],[-71.345932121,41.536619473],[-71.345944561,41.536520418],[-71.345943879,41.536410093],[-71.345934034,41.536287681],[-71.345924201,41.536159985],[-71.345918479,41.536044416],[-71.345917792,41.535936333],[-71.345916994,41.535810914],[-71.345917344,41.535702054],[-71.345918644,41.535590199],[-71.345928992,41.535475292],[-71.345932278,41.535360399],[-71.345944593,41.535237192],[-71.345960969,41.535121493],[-71.345982275,41.534992925],[-71.345995675,41.534874225],[-71.346008923,41.534742719],[-71.346010203,41.534626336],[-71.346009518,41.534517474],[-71.346000795,41.534409449],[-71.345978879,41.534281783],[-71.345968123,41.53417149],[-71.3459553,41.534046878],[-71.345946447,41.533916897],[-71.345960812,41.533801972],[-71.345961113,41.533687829],[-71.345945286,41.533572293],[-71.345921398,41.533455213],[-71.345900579,41.53333967],[-71.345875736,41.53322714],[-71.345824664,41.53309884],[-71.345779639,41.532975054],[-71.345738647,41.532857311],[-71.345689717,41.532750168],[-71.345648795,41.532641482],[-71.345607845,41.532519188],[-71.345565808,41.532393141],[-71.3455369,41.532275368],[-71.345517102,41.532166573],[-71.345488242,41.532054083],[-71.345461372,41.531937045],[-71.345436436,41.531813217],[-71.345428712,41.531695335],[-71.34542597,41.531581188],[-71.345422251,41.531468618],[-71.345419494,41.531348479],[-71.345419424,41.531339423],[-71.345410706,41.531229841],[-71.345391891,41.531117296],[-71.345366986,41.530993469],[-71.345354231,41.530879354],[-71.345339371,41.530754739],[-71.345310509,41.530643736],[-71.345341929,41.530524214],[-71.34536842,41.530416807],[-71.345411951,41.530298011],[-71.345475655,41.530194222],[-71.345515227,41.530089097],[-71.345501927,41.530050589],[-71.34549755,41.529996931],[-71.345540114,41.529887967],[-71.345578572,41.529764613],[-71.345589926,41.529648953],[-71.345585232,41.529536381],[-71.345533696,41.529502533],[-71.34538174,41.529487989],[-71.345212726,41.52947946],[-71.345048647,41.529456644],[-71.344900743,41.52944055],[-71.344768684,41.52939111],[-71.344673577,41.529301492],[-71.344670906,41.52919647],[-71.344645676,41.52918372],[-71.344495734,41.5291676],[-71.344461727,41.529197948],[-71.34433502,41.529201436],[-71.344242162,41.529202248],[-71.344183179,41.529202717],[-71.34401729,41.529211617],[-71.343846375,41.529222043],[-71.343685552,41.529237742],[-71.343504586,41.529251194],[-71.343338774,41.529266131],[-71.343190989,41.529276473],[-71.343061557,41.529324529],[-71.342965513,41.529409519],[-71.34294409,41.529521484],[-71.342944861,41.52964313],[-71.34294554,41.529752677],[-71.342939129,41.529861552],[-71.342923776,41.529980248],[-71.34294261,41.530095812],[-71.342937305,41.530212967],[-71.342877637,41.530319734],[-71.342771591,41.530412303],[-71.342726729,41.530475225],[-71.342697895,41.530530485],[-71.342700213,41.530578858],[-71.342702351,41.530600747],[-71.34278741,41.530691886],[-71.342836332,41.530799761],[-71.342852143,41.530919117],[-71.342851838,41.531032483],[-71.342831462,41.531151973],[-71.342797957,41.531263189],[-71.34276249,41.53138044],[-71.342718999,41.531505318],[-71.342690525,41.531612722],[-71.342692243,41.531732882],[-71.342697038,41.531851515],[-71.342699768,41.531968612],[-71.342699415,41.532076694],[-71.342692027,41.532186299],[-71.342692709,41.532294383],[-71.342700437,41.532408468],[-71.342721369,41.532537643],[-71.342740249,41.532659245],[-71.342750015,41.532774065],[-71.342759771,41.532892704],[-71.342765539,41.533012092],[-71.342767309,41.533136026],[-71.3427873,41.533276497],[-71.342789087,41.533405737],[-71.342789037,41.533439127],[-71.342829728,41.533628545],[-71.342845141,41.533686678],[-71.34285356,41.533741829],[-71.342853856,41.533795482],[-71.342861262,41.533854405],[-71.342867509,41.533889175],[-71.342871814,41.533933709],[-71.342882244,41.533975438],[-71.342914959,41.534077893],[-71.342984117,41.534201622],[-71.343051155,41.534307967],[-71.343124196,41.534411987],[-71.343186236,41.534521344],[-71.343241175,41.534622412],[-71.343262631,41.534673738],[-71.343296509,41.534786235],[-71.343319347,41.534895721],[-71.343350282,41.535017316],[-71.343382145,41.535132807],[-71.343407971,41.535240033],[-71.343417712,41.535353366],[-71.343429492,41.535466679],[-71.343416102,41.535579318],[-71.343400701,41.535692731],[-71.343374295,41.535813013],[-71.343387104,41.535928615],[-71.343430636,41.535976815],[-71.34346851,41.536086253],[-71.343549561,41.536176653],[-71.343629736,41.536289739],[-71.343631826,41.536306346],[-71.343677769,41.53641504],[-71.343719669,41.536521441],[-71.343785684,41.536624742],[-71.343835671,41.53673566],[-71.343886636,41.536844338],[-71.343964755,41.536952138],[-71.344038812,41.537053117],[-71.344087131,41.537123691],[-71.344214373,41.537309429],[-71.344222416,41.537318976],[-71.344313685,41.537427023],[-71.344638334,41.537874772],[-71.34473553,41.537974204],[-71.344858017,41.537935217],[-71.344903604,41.537990234],[-71.345355017,41.537795168],[-71.345449374,41.537924052],[-71.345502134,41.537996414],[-71.345550943,41.538079406],[-71.345596862,41.538187299],[-71.345637092,41.538345109],[-71.345654064,41.538490949],[-71.345748594,41.539290902],[-71.345343389,41.539315766],[-71.345343646,41.539361094],[-71.345532747,41.539355928],[-71.345620043,41.53948558],[-71.345636746,41.539744763],[-71.345662508,41.539842932]]],[[[-71.370178296,41.573260392],[-71.370266034,41.573353616],[-71.370384662,41.573396562],[-71.370525756,41.573429516],[-71.370673126,41.57346186],[-71.370829482,41.57349291],[-71.370971534,41.573519186],[-71.371129731,41.573543514],[-71.371283373,41.573576596],[-71.371437864,41.573611668],[-71.371587151,41.573629878],[-71.371734832,41.573627962],[-71.371786506,41.573619446],[-71.371786495,41.573618493],[-71.371876495,41.573603492],[-71.372030495,41.573573492],[-71.372173495,41.573531492],[-71.372315494,41.573479492],[-71.372472494,41.573447492],[-71.372610495,41.573408492],[-71.372715573,41.573338878],[-71.372733719,41.573326621],[-71.372766076,41.573305419],[-71.372850495,41.573249492],[-71.372979495,41.573193492],[-71.373056495,41.573211492],[-71.37318329,41.573260413],[-71.373169167,41.573224525],[-71.373134495,41.573137492],[-71.373170495,41.573025492],[-71.373245495,41.572931492],[-71.373347495,41.572844492],[-71.373476495,41.572782492],[-71.373602495,41.572727492],[-71.373742495,41.572678492],[-71.373878495,41.572612492],[-71.373984495,41.572528491],[-71.374159495,41.572336492],[-71.374244495,41.572245492],[-71.374345495,41.572148492],[-71.374542495,41.571952492],[-71.374646495,41.571855492],[-71.374735495,41.571763492],[-71.374836495,41.571663492],[-71.374947495,41.571576491],[-71.375066495,41.571489492],[-71.375189495,41.571417491],[-71.375316496,41.571345491],[-71.375440495,41.571277492],[-71.375571495,41.571203491],[-71.375709495,41.571143491],[-71.375841496,41.571079492],[-71.375964495,41.571010491],[-71.376072496,41.570926492],[-71.376128496,41.570824492],[-71.376158495,41.570713492],[-71.376204496,41.570604491],[-71.376269496,41.570506491],[-71.376363496,41.570413491],[-71.376427496,41.570324491],[-71.376445496,41.570210491],[-71.376511496,41.570095491],[-71.376566495,41.569992491],[-71.376613496,41.569884491],[-71.376685496,41.569782491],[-71.376769496,41.569688491],[-71.376867496,41.569604491],[-71.376935496,41.569502492],[-71.377047496,41.569412491],[-71.377159496,41.569327491],[-71.377225496,41.569215491],[-71.377279496,41.569098491],[-71.377351496,41.568988491],[-71.377452496,41.568899491],[-71.377555496,41.568823491],[-71.377629496,41.568722491],[-71.377676497,41.568603491],[-71.377733497,41.568483491],[-71.377809496,41.568369491],[-71.377880496,41.568273491],[-71.377959496,41.568178491],[-71.378033496,41.568083491],[-71.378110496,41.567987491],[-71.378180497,41.567891491],[-71.378341496,41.567688491],[-71.378430496,41.567587491],[-71.378540496,41.567506491],[-71.378634496,41.567424491],[-71.378723497,41.567330491],[-71.378823497,41.567237491],[-71.378908496,41.567138491],[-71.378968496,41.567040491],[-71.379017497,41.56693249],[-71.379051497,41.566824491],[-71.379081496,41.56671849],[-71.379141496,41.56660649],[-71.379213497,41.56651049],[-71.379253497,41.566403491],[-71.379263496,41.566286491],[-71.379269497,41.566166491],[-71.379269497,41.566050491],[-71.379285497,41.56593649],[-71.379333497,41.565720491],[-71.379368497,41.56561349],[-71.379422497,41.56538149],[-71.379513496,41.56528249],[-71.379608496,41.56518349],[-71.379697497,41.56508349],[-71.379793497,41.56499149],[-71.379878497,41.56486549],[-71.379934497,41.56475049],[-71.379993497,41.56464549],[-71.380077496,41.56454449],[-71.380171497,41.56445949],[-71.380197497,41.56435749],[-71.380221497,41.56424249],[-71.380284497,41.56411749],[-71.380362497,41.56399249],[-71.380448496,41.56387449],[-71.380523497,41.56375149],[-71.380589497,41.56362849],[-71.380659497,41.56349249],[-71.380709497,41.56338949],[-71.380787497,41.56329549],[-71.380888497,41.56320049],[-71.380945497,41.56309249],[-71.380993497,41.56296249],[-71.381029497,41.56283249],[-71.381068497,41.562718489],[-71.381111497,41.56259649],[-71.381142497,41.56248149],[-71.381168497,41.562354489],[-71.381201497,41.562235489],[-71.381228497,41.56212349],[-71.381246497,41.56201249],[-71.381272497,41.56189149],[-71.381306497,41.561783489],[-71.381340497,41.561651489],[-71.381349497,41.561515489],[-71.381333497,41.561375489],[-71.381331497,41.561260489],[-71.381331497,41.561148489],[-71.381342497,41.56103649],[-71.381351497,41.560915489],[-71.381358497,41.560795489],[-71.381349497,41.560677489],[-71.381345497,41.560562489],[-71.381330497,41.560423489],[-71.381305647,41.560320884],[-71.381299519,41.560295981],[-71.381299497,41.560295489],[-71.38129917,41.560291379],[-71.381290497,41.56018249],[-71.381286497,41.560072489],[-71.381268511,41.559949587],[-71.381268497,41.559949489],[-71.381262497,41.559858489],[-71.381272497,41.559740489],[-71.381305496,41.55961649],[-71.381332497,41.559500489],[-71.381377497,41.559246489],[-71.381435497,41.559127489],[-71.381533497,41.559039489],[-71.381653497,41.558953489],[-71.381758497,41.558855489],[-71.381867497,41.558766489],[-71.382009497,41.558694489],[-71.382171497,41.558627489],[-71.382317498,41.558558489],[-71.382472498,41.558502489],[-71.382622497,41.558461489],[-71.382773497,41.558438489],[-71.382922497,41.558394489],[-71.383124497,41.558371488],[-71.383277497,41.558347489],[-71.383417497,41.558295489],[-71.383417497,41.558227489],[-71.383468498,41.558192489],[-71.383607497,41.558147489],[-71.383784497,41.558109489],[-71.383929498,41.558074489],[-71.384081498,41.558007489],[-71.384210497,41.557937489],[-71.384369497,41.557871489],[-71.384520498,41.557819489],[-71.384665498,41.557740489],[-71.384751498,41.557636489],[-71.384809498,41.557512488],[-71.384829498,41.557399488],[-71.384828498,41.557275489],[-71.384824498,41.557166488],[-71.384811498,41.557056489],[-71.384780498,41.556939489],[-71.384693498,41.556717488],[-71.384689498,41.556600488],[-71.384735498,41.556488488],[-71.384798498,41.556359489],[-71.384845498,41.556226488],[-71.384845498,41.556102489],[-71.38482847,41.556063361],[-71.384798508,41.55599502],[-71.384797822,41.555988717],[-71.384785498,41.555883488],[-71.384818498,41.555767488],[-71.384900498,41.555527488],[-71.384979498,41.555287489],[-71.385029497,41.555182488],[-71.385099498,41.555072488],[-71.385158498,41.554941488],[-71.385201498,41.554833488],[-71.385245498,41.554707488],[-71.385286498,41.554602488],[-71.385340498,41.554490488],[-71.385434498,41.554243488],[-71.385468498,41.554121488],[-71.381761257,41.554197494],[-71.380389365,41.55422562],[-71.375030494,41.554335488],[-71.375023495,41.553610489],[-71.375015494,41.552187487],[-71.375015494,41.549845488],[-71.375007494,41.549080487],[-71.375007494,41.547389227],[-71.375931183,41.547386252],[-71.375933949,41.546876714],[-71.375755494,41.546880487],[-71.375496103,41.546889157],[-71.375537997,41.544244056],[-71.375007494,41.544257486],[-71.375001354,41.543832743],[-71.376001377,41.543846803],[-71.3759871,41.542240667],[-71.37727201,41.542219251],[-71.377286286,41.539735094],[-71.3759871,41.539706541],[-71.375958546,41.538043297],[-71.374900494,41.538054485],[-71.374900494,41.537504485],[-71.374900494,41.537014418],[-71.376137006,41.537002521],[-71.376214338,41.535765201],[-71.377600374,41.535753303],[-71.377802629,41.532511287],[-71.374853381,41.532449948],[-71.374847494,41.532002484],[-71.374847494,41.531507484],[-71.374847494,41.530341484],[-71.374862493,41.530070484],[-71.374885493,41.529232484],[-71.374885493,41.529119483],[-71.374903305,41.528453917],[-71.37677252,41.528467442],[-71.376796314,41.527979652],[-71.374915493,41.527998483],[-71.374923493,41.527556483],[-71.374946493,41.526858483],[-71.374954493,41.526524482],[-71.374946493,41.526439483],[-71.374946493,41.526268483],[-71.374946493,41.526119483],[-71.374946493,41.525732483],[-71.374939493,41.525056483],[-71.374923493,41.524179483],[-71.374920493,41.524066482],[-71.374916493,41.523900482],[-71.374916493,41.522728482],[-71.374916493,41.521193482],[-71.374919205,41.520853281],[-71.3765202,41.520861553],[-71.381805081,41.520888857],[-71.381852671,41.519818099],[-71.376901897,41.5198351],[-71.374923493,41.519841894],[-71.374923493,41.519054481],[-71.374908492,41.518046481],[-71.374900493,41.516708481],[-71.374878492,41.515385481],[-71.374847493,41.51439948],[-71.374839492,41.51397648],[-71.374832805,41.513600459],[-71.377369765,41.513552184],[-71.377393559,41.512755064],[-71.374819274,41.512839695],[-71.374808493,41.51223348],[-71.374774492,41.508982479],[-71.374763492,41.508038479],[-71.374748506,41.5070154],[-71.374699888,41.507006679],[-71.374646184,41.507009502],[-71.374596585,41.507107903],[-71.374589862,41.507233977],[-71.374602856,41.507358701],[-71.374602708,41.507482702],[-71.374601535,41.507617244],[-71.374610685,41.507747659],[-71.374625493,41.507878034],[-71.374610352,41.507999113],[-71.374598941,41.508125869],[-71.374600718,41.508245664],[-71.374594983,41.508363986],[-71.374513568,41.508457962],[-71.374429158,41.508573797],[-71.374354168,41.508680541],[-71.374251216,41.508771611],[-71.374138227,41.508830217],[-71.373985489,41.508832245],[-71.373822304,41.50884062],[-71.373695131,41.508917483],[-71.373588523,41.508995147],[-71.373498119,41.50904758],[-71.373355282,41.509089846],[-71.373208944,41.509102446],[-71.373094722,41.509089925],[-71.373005574,41.508997912],[-71.372872615,41.508983152],[-71.37271765,41.509019709],[-71.372581351,41.509063446],[-71.37243295,41.509103555],[-71.372283494,41.509154252],[-71.372190892,41.509241146],[-71.372074909,41.509319461],[-71.371933761,41.509384278],[-71.371795605,41.509427988],[-71.371657017,41.50941322],[-71.371641345,41.509383563],[-71.371759225,41.509300311],[-71.371863082,41.50921487],[-71.371953914,41.50911599],[-71.372033559,41.509011403],[-71.372109431,41.508907521],[-71.372179668,41.508806422],[-71.37218403,41.508738801],[-71.372148158,41.508661872],[-71.372214734,41.508550181],[-71.372312095,41.508456934],[-71.372398194,41.508365092],[-71.372504732,41.508292347],[-71.372648599,41.508235995],[-71.372713676,41.508190533],[-71.372796038,41.508095828],[-71.372900838,41.508008992],[-71.372871068,41.507985586],[-71.372704102,41.507998872],[-71.372541699,41.508028377],[-71.372382086,41.508062071],[-71.372242032,41.508113555],[-71.37212613,41.508182677],[-71.372005383,41.508271552],[-71.371905219,41.508366877],[-71.371834241,41.508442612],[-71.37170046,41.50852157],[-71.37158341,41.508616784],[-71.371474751,41.508714889],[-71.371354983,41.508799534],[-71.371254033,41.508876515],[-71.371138006,41.50896185],[-71.371031268,41.509057167],[-71.370906252,41.509103018],[-71.370755937,41.509141042],[-71.37063353,41.509205947],[-71.37054526,41.509224509],[-71.370418357,41.509163304],[-71.370340883,41.509123468],[-71.370262138,41.509125918],[-71.370250384,41.509100611],[-71.370235478,41.50906869],[-71.370255671,41.509012453],[-71.37031744,41.509024712],[-71.370451712,41.509097956],[-71.370578721,41.509151432],[-71.370619951,41.509149534],[-71.37072759,41.509059868],[-71.370849792,41.509021721],[-71.370980355,41.508986442],[-71.37108421,41.508902443],[-71.371172097,41.50881623],[-71.37126946,41.508722321],[-71.371353715,41.508625515],[-71.37139501,41.508513681],[-71.371473604,41.508418265],[-71.371576592,41.508325802],[-71.371673834,41.508245957],[-71.371771083,41.508163299],[-71.371874865,41.508084239],[-71.371968405,41.50799945],[-71.372063834,41.507913291],[-71.372155489,41.507827791],[-71.37225644,41.507748659],[-71.372337972,41.50764341],[-71.372379551,41.507555727],[-71.372387617,41.507538675],[-71.372476586,41.507441188],[-71.372544425,41.507398542],[-71.372627618,41.507422922],[-71.372765803,41.507377107],[-71.372896479,41.507328447],[-71.373038019,41.50732563],[-71.373177069,41.507288277],[-71.373321407,41.507285462],[-71.373464719,41.507293922],[-71.373589923,41.507336804],[-71.373644731,41.507392026],[-71.373487134,41.50740745],[-71.373427948,41.507428311],[-71.373455832,41.507451715],[-71.373573508,41.507501609],[-71.373597456,41.507546095],[-71.373535842,41.507626781],[-71.373582339,41.507669301],[-71.37373396,41.507692589],[-71.373844749,41.50766991],[-71.373949509,41.507586595],[-71.373979938,41.507537412],[-71.373824349,41.507536647],[-71.373755294,41.507501077],[-71.373778042,41.507474413],[-71.373928121,41.507461084],[-71.374077102,41.507464609],[-71.374111476,41.507498586],[-71.37414885,41.507617848],[-71.374230711,41.507686593],[-71.374338429,41.507694166],[-71.374363034,41.507666795],[-71.374367756,41.507553411],[-71.374380932,41.507442186],[-71.374363129,41.507334289],[-71.374302255,41.507221977],[-71.374263815,41.507118929],[-71.374233495,41.507049737],[-71.374165897,41.506952877],[-71.374169387,41.506878942],[-71.374277815,41.506801989],[-71.374393283,41.506781395],[-71.374499937,41.506803764],[-71.374624952,41.506865695],[-71.374702304,41.506889587],[-71.374748492,41.506892146],[-71.374748492,41.506891479],[-71.374850492,41.506897479],[-71.374945492,41.506819479],[-71.375077492,41.506755479],[-71.375206492,41.506697479],[-71.375475492,41.506569479],[-71.375613492,41.506524479],[-71.375753492,41.506488479],[-71.375898493,41.506464479],[-71.376057493,41.506441479],[-71.376198492,41.506396479],[-71.376265493,41.506337479],[-71.376286493,41.506223478],[-71.376272492,41.506111479],[-71.376294492,41.506051479],[-71.376348493,41.506038479],[-71.374717492,41.503869478],[-71.375377523,41.503853547],[-71.375356222,41.50151839],[-71.375232066,41.49808801],[-71.375096625,41.498090086],[-71.375034564,41.496150497],[-71.378491888,41.492666741],[-71.380500493,41.488965475],[-71.380467548,41.488725413],[-71.378491045,41.488654231],[-71.375793048,41.488668774],[-71.374298491,41.488664476],[-71.367055947,41.488806515],[-71.367050488,41.488680476],[-71.362931013,41.488701473],[-71.362943064,41.488731319],[-71.36295866,41.488763791],[-71.362964359,41.488772922],[-71.362962103,41.488862159],[-71.36294194,41.488918418],[-71.362944847,41.489011433],[-71.362975102,41.489087672],[-71.362993216,41.48915189],[-71.363000096,41.489220943],[-71.363001343,41.489293488],[-71.363013417,41.489409133],[-71.36308106,41.489496806],[-71.363202007,41.489591815],[-71.363322917,41.489689659],[-71.363395491,41.48974708],[-71.363488571,41.489815892],[-71.363590149,41.489879774],[-71.363664581,41.489935803],[-71.363716521,41.489998757],[-71.363721485,41.490068562],[-71.363720448,41.490186204],[-71.363742289,41.49025747],[-71.36382608,41.490318472],[-71.363950802,41.490412798],[-71.364088402,41.49053113],[-71.364188762,41.490625336],[-71.364264051,41.490694035],[-71.36433738,41.490769066],[-71.364431241,41.49085901],[-71.364521186,41.490959539],[-71.364586983,41.491044395],[-71.364645157,41.491138368],[-71.364698678,41.491231649],[-71.364726968,41.491318428],[-71.364822799,41.491499969],[-71.364823662,41.491611278],[-71.364813459,41.491705627],[-71.364826758,41.491790239],[-71.364888867,41.491864502],[-71.364973321,41.491959352],[-71.36502031,41.492049744],[-71.365071168,41.492122553],[-71.365106136,41.492157676],[-71.365223484,41.492275503],[-71.365298742,41.492346328],[-71.365370258,41.492417172],[-71.365455508,41.492524669],[-71.365538957,41.492620866],[-71.365611296,41.492705753],[-71.365683636,41.492790662],[-71.365773689,41.492885517],[-71.365852532,41.49297327],[-71.365968954,41.493158447],[-71.36601579,41.493265053],[-71.366040299,41.493357476],[-71.366059234,41.493438595],[-71.366093353,41.493502168],[-71.366164842,41.493572942],[-71.366222349,41.493638051],[-71.366282599,41.493715879],[-71.36637797,41.493843833],[-71.36643902,41.493932205],[-71.36649731,41.49401632],[-71.36655927,41.494106111],[-71.366662704,41.494277825],[-71.366728349,41.494380313],[-71.366776491,41.494444656],[-71.366845884,41.494544335],[-71.366901151,41.494649555],[-71.366948029,41.494751953],[-71.366979044,41.494847219],[-71.366993288,41.494932518],[-71.366993943,41.494939517],[-71.367000132,41.495006556],[-71.367005869,41.495101679],[-71.366975791,41.495217755],[-71.366959174,41.495296569],[-71.366936931,41.495373958],[-71.366915557,41.495458415],[-71.366894528,41.495507607],[-71.366877165,41.49556387],[-71.366552975,41.495558005],[-71.366540134,41.495634033],[-71.36639417,41.495715029],[-71.366295216,41.495671552],[-71.366185188,41.495613929],[-71.366128861,41.495624933],[-71.366227186,41.495737453],[-71.366325669,41.495832341],[-71.366646172,41.49582759],[-71.366795025,41.496118006],[-71.366834079,41.496194162],[-71.366766728,41.496195959],[-71.36645452,41.496204242],[-71.366449558,41.496443045],[-71.365763153,41.496397329],[-71.365784061,41.496466467],[-71.366637967,41.49653559],[-71.366688915,41.496715452],[-71.366700213,41.496813463],[-71.366711463,41.496919868],[-71.366711427,41.497026259],[-71.366715122,41.497138303],[-71.366718225,41.497212291],[-71.366726644,41.497319401],[-71.36673707,41.497412448],[-71.366729189,41.49756178],[-71.366713949,41.497695529],[-71.366693902,41.497844069],[-71.366681811,41.497939811],[-71.366660234,41.498048213],[-71.366622916,41.498133978],[-71.366581583,41.4982486],[-71.366546071,41.498343538],[-71.366493422,41.498472875],[-71.366450436,41.498562841],[-71.366385714,41.498675218],[-71.366323039,41.498768637],[-71.366269807,41.49885571],[-71.366243562,41.498896411],[-71.366046847,41.499155985],[-71.365913494,41.499239511],[-71.365782969,41.499293789],[-71.365641385,41.499341719],[-71.36559973,41.499360493],[-71.365561539,41.4993819],[-71.365495442,41.49942244],[-71.365483128,41.499434364],[-71.365414179,41.499500972],[-71.365320561,41.499595612],[-71.365257182,41.499660786],[-71.36520218,41.499734455],[-71.365158478,41.49980187],[-71.365095646,41.499910749],[-71.36502749,41.499990736],[-71.364970561,41.500069388],[-71.364915523,41.500145892],[-71.364853001,41.500222319],[-71.364785798,41.500297367],[-71.364720599,41.50035904],[-71.364643244,41.500415026],[-71.364565211,41.500445648],[-71.364472627,41.500422624],[-71.364383609,41.500425675],[-71.364369786,41.500503805],[-71.364329579,41.500601527],[-71.3642745,41.500682261],[-71.364215565,41.500774266],[-71.364152093,41.500853573],[-71.364083081,41.500919448],[-71.363951743,41.501040641],[-71.363828038,41.501147801],[-71.363710091,41.501236694],[-71.363587448,41.501330452],[-71.363495005,41.501399021],[-71.363362016,41.501494185],[-71.363244224,41.501566154],[-71.363132221,41.501619834],[-71.363007974,41.501679788],[-71.362905416,41.501726481],[-71.362796349,41.501772434],[-71.362691041,41.501809929],[-71.362595258,41.501831999],[-71.362512861,41.501824536],[-71.362445771,41.501886891],[-71.362320216,41.501989816],[-71.362243915,41.502034504],[-71.362155367,41.502086907],[-71.362065848,41.5021386],[-71.361972655,41.502186698],[-71.361875611,41.502243299],[-71.361772131,41.502293489],[-71.361687454,41.502328287],[-71.361575719,41.502354498],[-71.361457616,41.502356712],[-71.36133672,41.502356841],[-71.361198971,41.502356126],[-71.361099492,41.502369705],[-71.36099507,41.502419183],[-71.360877434,41.50247354],[-71.360800109,41.502526711],[-71.360735853,41.502585546],[-71.360639667,41.502652713],[-71.360551824,41.502730433],[-71.36044347,41.50279683],[-71.360330604,41.502839231],[-71.360208435,41.502878762],[-71.360068392,41.502925956],[-71.359990211,41.502966455],[-71.359935272,41.503035204],[-71.35987086,41.503109521],[-71.359752073,41.503188529],[-71.359664192,41.503269107],[-71.359594092,41.503356842],[-71.359441306,41.503570215],[-71.359393427,41.503679864],[-71.35938412,41.503777027],[-71.359350438,41.503877591],[-71.359338093,41.504000822],[-71.359335095,41.504092847],[-71.359334215,41.504119855],[-71.359289362,41.50420913],[-71.359220299,41.504280629],[-71.359132496,41.504352013],[-71.359020358,41.504421903],[-71.358918698,41.504472115],[-71.358819798,41.504525875],[-71.358703873,41.50460205],[-71.358672322,41.504673068],[-71.358671766,41.504732941],[-71.358697027,41.504840118],[-71.358714016,41.50493251],[-71.358715305,41.504997348],[-71.358718905,41.505118518],[-71.358732395,41.505182707],[-71.358739311,41.505248238],[-71.35874229,41.505333501],[-71.358738852,41.50540325],[-71.358717459,41.505489787],[-71.358689689,41.505556556],[-71.358666373,41.505645926],[-71.358655333,41.50572829],[-71.358621734,41.505817578],[-71.358590743,41.505924503],[-71.358575762,41.506028017],[-71.358547793,41.506116603],[-71.358512467,41.506188303],[-71.358451583,41.506288696],[-71.358404712,41.506394869],[-71.358354261,41.506482673],[-71.35833681,41.50654671],[-71.358333374,41.506615705],[-71.358309102,41.506710676],[-71.358300822,41.506796589],[-71.358270097,41.50687886],[-71.358232707,41.506975896],[-71.358153652,41.507204773],[-71.358138573,41.507227601],[-71.358110011,41.507280327],[-71.358115787,41.507366302],[-71.358115181,41.507434614],[-71.358084337,41.507529578],[-71.358034957,41.507599773],[-71.357968798,41.507662835],[-71.357901785,41.507713204],[-71.357877871,41.507768748],[-71.357820645,41.507879048],[-71.357821857,41.507950929],[-71.357821004,41.508048834],[-71.357809074,41.508119945],[-71.357784921,41.508201515],[-71.357790856,41.508269881],[-71.357831469,41.508341262],[-71.357850433,41.508420256],[-71.357859039,41.508505548],[-71.357849651,41.508611196],[-71.357845968,41.508709075],[-71.357876938,41.508807842],[-71.357934916,41.508924413],[-71.357975537,41.508992227],[-71.358033826,41.509078496],[-71.358088261,41.509173885],[-71.358138957,41.509267806],[-71.358206536,41.509363234],[-71.358261967,41.50944879],[-71.358319192,41.50954839],[-71.3583737,41.509638839],[-71.358434752,41.509727947],[-71.358481828,41.509807798],[-71.358537994,41.509919358],[-71.358599405,41.509969725],[-71.358673859,41.510024315],[-71.358786764,41.510081972],[-71.358905268,41.510139635],[-71.359006094,41.510183829],[-71.359078641,41.510248297],[-71.359125731,41.510322522],[-71.359196148,41.510415163],[-71.359258383,41.510478863],[-71.359267194,41.510540897],[-71.359307938,41.510595354],[-71.359358755,41.510676628],[-71.359435286,41.510714365],[-71.359510992,41.510739409],[-71.359590176,41.510788424],[-71.359651126,41.510785182],[-71.359724898,41.510817976],[-71.359800816,41.51081553],[-71.359885314,41.510799075],[-71.359962408,41.510773372],[-71.360038552,41.510750503],[-71.360115489,41.510741037],[-71.360184985,41.510725204],[-71.360286344,41.510706002],[-71.360424466,41.510668641],[-71.360549644,41.510609399],[-71.360689662,41.510567122],[-71.360798769,41.510524716],[-71.360805383,41.510519098],[-71.360842246,41.510482665],[-71.360887603,41.510443476],[-71.360964154,41.510372671],[-71.361018926,41.510327181],[-71.361108431,41.510273362],[-71.361188155,41.51026957],[-71.361271623,41.510264319],[-71.361331043,41.510222356],[-71.361374592,41.510174679],[-71.361454893,41.510099716],[-71.361532229,41.510045173],[-71.361619798,41.510000499],[-71.361703626,41.509954449],[-71.361825764,41.509921228],[-71.361951406,41.509914129],[-71.362056448,41.5099076],[-71.362194331,41.509895622],[-71.362298435,41.509886987],[-71.362446487,41.509886318],[-71.362549523,41.509893188],[-71.362665547,41.509916311],[-71.362794527,41.509956418],[-71.36292524,41.510012011],[-71.363048473,41.510064781],[-71.363162368,41.510116763],[-71.363328629,41.510181728],[-71.36347147,41.510243052],[-71.363586202,41.510302079],[-71.363752422,41.510372669],[-71.363892431,41.510435361],[-71.363995067,41.510488701],[-71.364116211,41.510566831],[-71.364208299,41.510644766],[-71.364301377,41.510715018],[-71.364408578,41.51078245],[-71.364507235,41.51086252],[-71.364592677,41.510946828],[-71.364667638,41.511053558],[-71.364739123,41.511134236],[-71.36482176,41.511221993],[-71.364865186,41.511291295],[-71.364933848,41.511369133],[-71.365011925,41.51144067],[-71.365067474,41.511518448],[-71.365117194,41.511619408],[-71.365226919,41.511717877],[-71.365303964,41.511803501],[-71.365353691,41.511900985],[-71.365403418,41.511999155],[-71.365482039,41.51211721],[-71.365561757,41.512219738],[-71.365618133,41.512310208],[-71.365703457,41.512409243],[-71.36577582,41.512493443],[-71.365854528,41.512599537],[-71.365904445,41.512679389],[-71.365990314,41.512824964],[-71.366054244,41.512911899],[-71.366117051,41.513012256],[-71.366163976,41.51311255],[-71.366196022,41.513197915],[-71.366207435,41.513285337],[-71.36622909,41.513378443],[-71.366257624,41.513440591],[-71.366257705,41.513534289],[-71.366245844,41.513605377],[-71.366276196,41.513671758],[-71.36631939,41.513766376],[-71.366305806,41.513847068],[-71.36630206,41.513922671],[-71.36630056,41.513986088],[-71.366302177,41.514013557],[-71.366318709,41.514053095],[-71.366340589,41.514081319],[-71.366336849,41.514124447],[-71.366211665,41.514201213],[-71.366074175,41.514239498],[-71.365957997,41.514257407],[-71.365928534,41.514261969],[-71.365847015,41.514263521],[-71.365783754,41.514264773],[-71.365696323,41.514271143],[-71.365762403,41.514378206],[-71.365818362,41.514480042],[-71.365869294,41.514584915],[-71.365928367,41.51469652],[-71.36595821,41.514802946],[-71.365963978,41.514912545],[-71.365960697,41.515028171],[-71.36593932,41.51513934],[-71.365891452,41.515200736],[-71.365749865,41.515233],[-71.365798896,41.515345417],[-71.36583283,41.515460195],[-71.365838591,41.515572767],[-71.365823255,41.515690735],[-71.365768634,41.51579521],[-71.365708861,41.515874773],[-71.365580218,41.515885829],[-71.365540038,41.51589278],[-71.365592979,41.515997655],[-71.365613783,41.516104871],[-71.365592407,41.516215284],[-71.365558719,41.516290967],[-71.365546378,41.516402123],[-71.365493788,41.516509619],[-71.36544926,41.516617879],[-71.365410726,41.516726123],[-71.365398385,41.516837233],[-71.36536591,41.516943906],[-71.365300096,41.5170303],[-71.365269142,41.517063677],[-71.365252787,41.517173319],[-71.365215332,41.517289088],[-71.365164772,41.517400359],[-71.36510211,41.51750718],[-71.365023333,41.517607967],[-71.364918304,41.517689969],[-71.364824933,41.517711494],[-71.364673956,41.517690871],[-71.36453008,41.517680044],[-71.364506712,41.517795761],[-71.364458114,41.517899488],[-71.364399188,41.517964735],[-71.364333124,41.51800955],[-71.364267407,41.51810651],[-71.364158331,41.518187798],[-71.364043938,41.518221441],[-71.363897072,41.518213698],[-71.363879059,41.518227353],[-71.363888838,41.51833842],[-71.363825053,41.518427812],[-71.363693691,41.518484991],[-71.363706557,41.518603587],[-71.363701234,41.518718479],[-71.363660765,41.518833489],[-71.363567638,41.518897323],[-71.363475393,41.51893241],[-71.363484112,41.519040458],[-71.363465791,41.519157667],[-71.363455453,41.51926958],[-71.363433085,41.51938603],[-71.363373298,41.519469389],[-71.363245926,41.519523507],[-71.363182755,41.519551699],[-71.363181775,41.51959817],[-71.363180458,41.51965978],[-71.363153023,41.5197695],[-71.363080265,41.519870246],[-71.36294479,41.519913812],[-71.362802235,41.519952132],[-71.362815549,41.519987597],[-71.3628866,41.520090116],[-71.362945673,41.520201745],[-71.362981569,41.520308179],[-71.362996339,41.520418475],[-71.362967942,41.52053645],[-71.362888107,41.520630464],[-71.362805149,41.52070483],[-71.362850057,41.520808964],[-71.362873919,41.520922244],[-71.362875637,41.521031107],[-71.362834133,41.521144561],[-71.362865073,41.521263864],[-71.362876862,41.521373402],[-71.362857433,41.521480821],[-71.362827987,41.521591225],[-71.362832719,41.521699291],[-71.362804325,41.521815024],[-71.362765832,41.521929282],[-71.362726317,41.522037524],[-71.362678762,41.522148752],[-71.362606026,41.522251808],[-71.362489844,41.522321765],[-71.362405673,41.522378039],[-71.362380684,41.52239475],[-71.362265501,41.522466949],[-71.362208839,41.522566891],[-71.362199576,41.522687107],[-71.362198325,41.522803491],[-71.362215144,41.522922846],[-71.362201818,41.523036241],[-71.362168302,41.523141426],[-71.362111639,41.52324139],[-71.362101321,41.523357054],[-71.362102105,41.523474949],[-71.362093751,41.523583068],[-71.362076425,41.523702519],[-71.362068119,41.523815898],[-71.362065886,41.523936099],[-71.362043465,41.524047266],[-71.361999837,41.524141895],[-71.361954059,41.524217608],[-71.361991983,41.52432935],[-71.36200979,41.524441891],[-71.362006558,41.524559781],[-71.361990163,41.524670223],[-71.362002981,41.524781981],[-71.362012775,41.524899086],[-71.362017556,41.525012435],[-71.362018263,41.52512356],[-71.362009931,41.525235407],[-71.361979547,41.525355689],[-71.361919886,41.525461688],[-71.361833036,41.525559535],[-71.361750203,41.525657318],[-71.361653215,41.525742323],[-71.361540811,41.525778254],[-71.361387851,41.525765926],[-71.361242913,41.525745305],[-71.361091986,41.525736067],[-71.360936063,41.525729063],[-71.36087181,41.525747418],[-71.36083225,41.525845825],[-71.360862867,41.525916004],[-71.360973648,41.52594205],[-71.361117494,41.525946798],[-71.361266504,41.525970442],[-71.361362629,41.526062289],[-71.361423609,41.52616562],[-71.361446356,41.526259231],[-71.361382242,41.526298032],[-71.361404096,41.526410532],[-71.361405578,41.526486119],[-71.361317725,41.52658241],[-71.361203379,41.526628926],[-71.361074714,41.526639977],[-71.361066927,41.526680836],[-71.361224816,41.526680249],[-71.361340787,41.526728187],[-71.361415889,41.526831466],[-71.361457783,41.526937107],[-71.361480668,41.527051873],[-71.361479433,41.527174316],[-71.361469116,41.52728847],[-71.361510062,41.527396397],[-71.361550996,41.527510361],[-71.36149926,41.527595191],[-71.361535225,41.527712946],[-71.361560098,41.527823209],[-71.361581929,41.527932713],[-71.361613775,41.528041429],[-71.361659694,41.528144055],[-71.361717746,41.528251911],[-71.361783826,41.528362726],[-71.361849936,41.528473587],[-71.361913985,41.528580672],[-71.361939875,41.528700015],[-71.361918478,41.528814933],[-71.361876997,41.528929233],[-71.361832432,41.529033672],[-71.36180807,41.529154669],[-71.361827957,41.529277024],[-71.361837761,41.529389601],[-71.361808031,41.52945925],[-71.36189615,41.529554151],[-71.361954155,41.529655946],[-71.362000068,41.529762346],[-71.36204099,41.52986874],[-71.362023507,41.529961022],[-71.362090566,41.530070374],[-71.362143569,41.530177492],[-71.362181525,41.53029072],[-71.362207425,41.530405466],[-71.362167697,41.530481941],[-71.362099671,41.530541138],[-71.362153629,41.530642974],[-71.362200555,41.530745601],[-71.362218393,41.53085892],[-71.362249274,41.53096457],[-71.362285218,41.531079328],[-71.36231006,41.531191077],[-71.362329926,41.531309658],[-71.362326651,41.531419246],[-71.36226982,41.531494283],[-71.362215909,41.531556424],[-71.362264797,41.531653016],[-71.362337819,41.531750209],[-71.362399918,41.531860356],[-71.362455933,41.531968963],[-71.362487857,41.532085226],[-71.362497707,41.532205373],[-71.362493386,41.53232022],[-71.362512234,41.532431253],[-71.362562244,41.532544427],[-71.362620277,41.532649263],[-71.362676244,41.53275261],[-71.36272322,41.532861252],[-71.362747093,41.532971536],[-71.36276698,41.533095377],[-71.362777763,41.533206423],[-71.36279766,41.533325758],[-71.362813536,41.533446645],[-71.362814317,41.533566781],[-71.362820049,41.533677112],[-71.362837908,41.533795713],[-71.362900955,41.533905037],[-71.363000164,41.533998396],[-71.363083246,41.534090294],[-71.363178378,41.534182893],[-71.363277561,41.534274742],[-71.363365709,41.534374948],[-71.36343979,41.534477424],[-71.36350684,41.534579984],[-71.363571878,41.53468405],[-71.363640969,41.534785788],[-71.363711006,41.534886796],[-71.363762001,41.534996974],[-71.363801992,41.53511471],[-71.363859,41.535216548],[-71.36392201,41.535316061],[-71.363962937,41.535423231],[-71.363994822,41.535531146],[-71.363959318,41.535639347],[-71.363952728,41.535705136],[-71.363998699,41.535816063],[-71.363963928,41.535879669],[-71.364027913,41.535979228],[-71.364110059,41.5360832],[-71.364121922,41.536203326],[-71.364170937,41.536314966],[-71.364168638,41.536424555],[-71.364194426,41.53652272],[-71.364259458,41.536631337],[-71.364320562,41.536740681],[-71.364382586,41.536847008],[-71.364451655,41.536946481],[-71.364522726,41.537049754],[-71.364572727,41.537156157],[-71.364629748,41.537267783],[-71.364691853,41.537379415],[-71.364734838,41.53749338],[-71.364744054,41.537540755],[-71.364756702,41.537605903],[-71.364792656,41.537719883],[-71.364840713,41.537839091],[-71.364855524,41.537947877],[-71.364849293,41.538074889],[-71.364858085,41.538194234],[-71.36485586,41.538312903],[-71.364879783,41.538430687],[-71.364897602,41.538541764],[-71.364882286,41.538661195],[-71.364876039,41.538781392],[-71.364903957,41.538896162],[-71.364962041,41.539010076],[-71.36498992,41.53912862],[-71.365028845,41.539234256],[-71.365073821,41.539342918],[-71.365103747,41.539458445],[-71.36510853,41.539573326],[-71.365100206,41.539682954],[-71.365127044,41.539790176],[-71.365127094,41.539795436],[-71.365128862,41.539911045],[-71.36514565,41.540020566],[-71.365145812,41.540045517],[-71.365154773,41.54008388],[-71.365159063,41.540114005],[-71.365170374,41.540193399],[-71.365187746,41.540314835],[-71.36519981,41.540442234],[-71.365203008,41.540572962],[-71.365202726,41.540679763],[-71.365188316,41.540787898],[-71.365155355,41.540902643],[-71.365136799,41.540911266],[-71.365113002,41.540893285],[-71.365075109,41.540861383],[-71.36506885,41.540885252],[-71.364974998,41.54099064],[-71.364904095,41.541082059],[-71.364879086,41.541192833],[-71.364878933,41.541251906],[-71.364897233,41.541336843],[-71.364911338,41.541360781],[-71.364809782,41.541364596],[-71.364777885,41.541406364],[-71.364781119,41.541519825],[-71.36477832,41.541562931],[-71.364733021,41.54166705],[-71.364640067,41.541763794],[-71.364510132,41.54181535],[-71.364374821,41.541889471],[-71.36425893,41.541964302],[-71.364150947,41.54205698],[-71.364056254,41.54214048],[-71.363950926,41.542229228],[-71.363863286,41.542317356],[-71.363774702,41.54241941],[-71.363683432,41.542540009],[-71.363583296,41.542663273],[-71.363506219,41.542765363],[-71.363414965,41.542877363],[-71.363320178,41.542989998],[-71.363223633,41.543099338],[-71.363140333,41.543206727],[-71.363070302,41.543315435],[-71.362989656,41.543420152],[-71.362900159,41.543535469],[-71.362817692,41.543666026],[-71.362733457,41.543797289],[-71.362645697,41.543925896],[-71.362554434,41.544040547],[-71.362471202,41.544129343],[-71.362389754,41.544208809],[-71.362344669,41.544224009],[-71.362283419,41.544339383],[-71.36219567,41.544461974],[-71.36212207,41.54457269],[-71.362051125,41.544694661],[-71.361987207,41.544819316],[-71.361910051,41.544941302],[-71.361846121,41.54507124],[-71.361786656,41.545191235],[-71.361711293,41.545299936],[-71.361630589,41.545415286],[-71.361543766,41.545530582],[-71.361466651,41.545632672],[-71.361398365,41.545748676],[-71.361350342,41.545870034],[-71.361284685,41.545980736],[-71.361210238,41.546087448],[-71.361175692,41.5461272],[-71.361167631,41.546167007],[-71.361146996,41.546293017],[-71.361106942,41.54641706],[-71.361066035,41.546527129],[-71.361018909,41.546641169],[-71.360969182,41.546747248],[-71.360914118,41.546857985],[-71.360906128,41.546878535],[-71.360844902,41.546994571],[-71.360835067,41.547038126],[-71.360818993,41.547109346],[-71.360779753,41.547250565],[-71.36073265,41.547367944],[-71.360671377,41.547491276],[-71.360608381,41.547609276],[-71.360549792,41.547716052],[-71.360485053,41.54782273],[-71.360429966,41.547943439],[-71.360388149,41.548064803],[-71.360347194,41.548182144],[-71.360301826,41.548298839],[-71.360236192,41.54841089],[-71.360197085,41.548503717],[-71.360194121,41.548621835],[-71.36019915,41.548732646],[-71.360189118,41.548852723],[-71.360160533,41.548979386],[-71.360124852,41.54910675],[-71.360094481,41.549242697],[-71.360072915,41.549389335],[-71.360050442,41.549532609],[-71.360027122,41.549673893],[-71.360009669,41.549818935],[-71.359991091,41.549935251],[-71.359959884,41.55004867],[-71.359930521,41.550126254],[-71.359910174,41.550144822],[-71.359863178,41.550211065],[-71.359892033,41.550326546],[-71.359923457,41.550465267],[-71.359942602,41.550580096],[-71.35994843,41.550714806],[-71.359949795,41.550872701],[-71.359947622,41.551018653],[-71.359932279,41.551145379],[-71.359914296,41.551267436],[-71.359894551,41.551388187],[-71.359906563,41.551521555],[-71.359912383,41.551660199],[-71.359911173,41.551797553],[-71.359913489,41.551923637],[-71.359930809,41.552037778],[-71.359943707,41.552169844],[-71.359960165,41.552302531],[-71.359970429,41.552427984],[-71.359969248,41.552552028],[-71.359953907,41.552677405],[-71.359940299,41.552803469],[-71.359922376,41.552912261],[-71.359882298,41.553044217],[-71.35986354,41.553116508],[-71.359844655,41.553233281],[-71.359817828,41.553361959],[-71.35980782,41.553470738],[-71.359845529,41.553575642],[-71.359884041,41.553717665],[-71.359920856,41.55382785],[-71.35995237,41.553939379],[-71.359968001,41.554046885],[-71.359977403,41.554162343],[-71.359979702,41.554281818],[-71.359958156,41.554418438],[-71.359907452,41.554550381],[-71.359887824,41.554630652],[-71.359919307,41.554756772],[-71.359976369,41.554895501],[-71.359976903,41.555028878],[-71.359967071,41.555070031],[-71.359982891,41.555103875],[-71.360069998,41.555217438],[-71.360156241,41.555350256],[-71.360225716,41.555465146],[-71.360295215,41.555583353],[-71.360348745,41.555708836],[-71.360374896,41.555851529],[-71.360386914,41.55598293],[-71.36039628,41.556115632],[-71.360417115,41.556253013],[-71.360435294,41.556393684],[-71.360448219,41.556527739],[-71.360447896,41.556649817],[-71.360434322,41.556774532],[-71.360447362,41.556855507],[-71.360466463,41.556978272],[-71.360469681,41.557095712],[-71.360467577,41.557224443],[-71.360441647,41.557346513],[-71.360437746,41.557489833],[-71.360462187,41.557607276],[-71.360475954,41.557746615],[-71.360503839,41.557890637],[-71.360531698,41.558032692],[-71.360538432,41.558172022],[-71.360538087,41.558304026],[-71.360539497,41.558441406],[-71.36056125,41.558562848],[-71.360598013,41.558698922],[-71.360641005,41.558813117],[-71.360693693,41.558934596],[-71.360723385,41.55906005],[-71.360752197,41.559184176],[-71.360746587,41.55931551],[-71.360722489,41.559406388],[-71.360717902,41.559472727],[-71.360794439,41.559590965],[-71.360829438,41.559727037],[-71.360874171,41.559838558],[-71.36092954,41.55994609],[-71.360981348,41.56006759],[-71.36102697,41.560191074],[-71.361066429,41.56030595],[-71.361100599,41.560416772],[-71.361134776,41.560524347],[-71.361171568,41.560633869],[-71.361205747,41.560740758],[-71.361254872,41.560878149],[-71.361307591,41.560987004],[-71.361355002,41.561100564],[-71.361418276,41.561228711],[-71.361456891,41.561340224],[-71.36151218,41.561457773],[-71.361549861,41.561579233],[-71.361568144,41.561687406],[-71.361569563,41.561821402],[-71.361582459,41.561956783],[-71.361593652,41.562076885],[-71.361620735,41.562199019],[-71.361677848,41.56231856],[-71.361740261,41.562422829],[-71.361794709,41.562550279],[-71.361821804,41.562667084],[-71.361839144,41.562789184],[-71.361865359,41.562904684],[-71.361900374,41.563034786],[-71.361927448,41.563147612],[-71.361988092,41.56326846],[-71.362057563,41.563390645],[-71.362097004,41.56351611],[-71.36213295,41.563624281],[-71.36219707,41.563771684],[-71.362227644,41.563899791],[-71.36231038,41.564014033],[-71.362339223,41.564140149],[-71.362315959,41.564254881],[-71.362249501,41.564333061],[-71.362209524,41.564416602],[-71.362257094,41.564471752],[-71.362378915,41.564506432],[-71.362484748,41.564585527],[-71.362594043,41.564668629],[-71.36266268,41.56476959],[-71.362727817,41.564869242],[-71.362791096,41.564998028],[-71.362831459,41.565106227],[-71.36288241,41.565218441],[-71.362921876,41.565333271],[-71.362926721,41.565403739],[-71.362920195,41.565523682],[-71.362920156,41.565527707],[-71.362917368,41.565636564],[-71.362916343,41.565746772],[-71.362913473,41.565865737],[-71.362918689,41.565976661],[-71.362922982,41.566092272],[-71.362915633,41.56621249],[-71.362932518,41.566320798],[-71.362945797,41.566435116],[-71.362950943,41.566550729],[-71.362943635,41.56666564],[-71.362929181,41.566775764],[-71.362904891,41.566885829],[-71.362901061,41.567012157],[-71.362909751,41.567136556],[-71.362912263,41.567172967],[-71.362918439,41.567262258],[-71.362914735,41.567371822],[-71.362924459,41.567482729],[-71.362951177,41.567592421],[-71.362981456,41.567703444],[-71.36300102,41.567812418],[-71.36300271,41.56792064],[-71.362998884,41.568044978],[-71.362983429,41.568167861],[-71.362976055,41.568285448],[-71.362963393,41.568397609],[-71.362973998,41.568509203],[-71.363017706,41.568620996],[-71.363071284,41.568730835],[-71.363122187,41.568838634],[-71.363147992,41.568948988],[-71.363155039,41.569058566],[-71.363145979,41.569166706],[-71.363187078,41.569273785],[-71.363226277,41.569386876],[-71.36324763,41.569499901],[-71.363239412,41.569613439],[-71.363263416,41.569725826],[-71.363316161,41.569826881],[-71.36338053,41.569932753],[-71.363409047,41.570042424],[-71.363458151,41.570152234],[-71.36353244,41.570247369],[-71.363616598,41.570341943],[-71.363730392,41.57042043],[-71.363842418,41.570499006],[-71.363950958,41.570570785],[-71.364062103,41.570648673],[-71.36416881,41.570723126],[-71.36426832,41.570802281],[-71.364374918,41.570885515],[-71.364489667,41.570959359],[-71.364592691,41.571047941],[-71.364706518,41.571125809],[-71.364802318,41.57121772],[-71.364898189,41.571304921],[-71.364997552,41.571396836],[-71.365097035,41.571475305],[-71.365191106,41.571564492],[-71.365261767,41.57166367],[-71.365321668,41.571767499],[-71.365354371,41.571814009],[-71.365487224,41.571867794],[-71.365620888,41.571926954],[-71.365733876,41.571999468],[-71.365879395,41.572040552],[-71.366025719,41.572089687],[-71.366163012,41.572146838],[-71.366290315,41.572219414],[-71.366418655,41.572276532],[-71.366549594,41.572343761],[-71.366666175,41.572417628],[-71.366819815,41.57244932],[-71.366959181,41.572476285],[-71.367100346,41.572502519],[-71.367249554,41.572527483],[-71.367404117,41.572555196],[-71.367558753,41.572576803],[-71.367711593,41.572597768],[-71.367861711,41.572624743],[-71.368014471,41.57265513],[-71.368162682,41.572691502],[-71.368318125,41.572721205],[-71.368472638,41.572758294],[-71.368623527,41.572796018],[-71.368769126,41.572829048],[-71.368922744,41.572857399],[-71.3690693,41.572884369],[-71.369221111,41.572918069],[-71.369371073,41.572962561],[-71.369506761,41.573002897],[-71.369643374,41.573037196],[-71.369790593,41.573083011],[-71.369928889,41.573128724],[-71.370067983,41.573186558],[-71.370178296,41.573260392]]]]}}"}, +{"type": "precinct", "typeId": 1502, "areaId": 25785, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":124,\"NAME\":\"1502\",\"SHAPE_Length\":0.65984176268084,\"SHAPE_Area\":-0.0014569178764373},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.359859311,41.462364937],[-71.360088332,41.462406014],[-71.360088484,41.46240547],[-71.359858485,41.46236447],[-71.359820485,41.46236347],[-71.359784485,41.46236647],[-71.359764595,41.462354432],[-71.359784849,41.462366973],[-71.359821158,41.462363793],[-71.359859311,41.462364937]]],[[[-71.360289722,41.464705416],[-71.360291448,41.464709101],[-71.360297575,41.464722269],[-71.360289485,41.464704471],[-71.360239485,41.464692471],[-71.360074485,41.464683471],[-71.360031485,41.464667471],[-71.359962485,41.464671471],[-71.359960981,41.46467276],[-71.359963192,41.464671675],[-71.360031944,41.464668122],[-71.360074568,41.464683657],[-71.360109539,41.464708879],[-71.360115003,41.46471282],[-71.360156909,41.464708937],[-71.360170441,41.464707673],[-71.360240341,41.464693395],[-71.360289722,41.464705416]]],[[[-71.360290615,41.464856131],[-71.360290896,41.464857207],[-71.360290625,41.464856065],[-71.360290615,41.464856131]]],[[[-71.360347955,41.464899837],[-71.360406149,41.464899725],[-71.360481898,41.464880469],[-71.360542563,41.464879701],[-71.360542485,41.464879471],[-71.360481485,41.464879471],[-71.360405485,41.464899471],[-71.360347485,41.464899471],[-71.360306811,41.464894387],[-71.360347955,41.464899837]]],[[[-71.359206795,41.464910179],[-71.359219903,41.464922522],[-71.35924875,41.464931282],[-71.359248484,41.464930471],[-71.359206828,41.464909643],[-71.359206795,41.464910179]]],[[[-71.360636142,41.464992673],[-71.360707819,41.464986288],[-71.360768166,41.464974789],[-71.360818901,41.46496529],[-71.360855577,41.464969222],[-71.360855485,41.464968471],[-71.360818485,41.464964471],[-71.360707485,41.464985471],[-71.360635485,41.464992472],[-71.360567485,41.464991471],[-71.360557433,41.464979486],[-71.36056749,41.464991927],[-71.360636142,41.464992673]]],[[[-71.361553485,41.464789471],[-71.361519485,41.464838472],[-71.361450486,41.464887471],[-71.361409486,41.464921471],[-71.361382485,41.464949471],[-71.361309486,41.464985471],[-71.361223485,41.465019471],[-71.361159485,41.465047471],[-71.361090208,41.465082538],[-71.361159771,41.465047989],[-71.361224227,41.465019959],[-71.361309766,41.464986444],[-71.361382996,41.46494994],[-71.361410237,41.464922254],[-71.361447123,41.464891104],[-71.361519688,41.464838795],[-71.361553996,41.464790375],[-71.361572808,41.464746702],[-71.361575485,41.464738471],[-71.361553485,41.464789471]]],[[[-71.359419007,41.465084022],[-71.359482011,41.465081149],[-71.359518935,41.465047118],[-71.359574322,41.464995339],[-71.359639207,41.464994617],[-71.359702278,41.46498884],[-71.359764218,41.464943609],[-71.359817656,41.464893223],[-71.359862448,41.464847789],[-71.35987316,41.464786945],[-71.359878786,41.464743956],[-71.359880179,41.464742018],[-71.359878485,41.464743471],[-71.359872484,41.464786471],[-71.359861485,41.464847471],[-71.359817485,41.464892471],[-71.359763485,41.464943471],[-71.359701485,41.464988471],[-71.359638484,41.464994472],[-71.359573485,41.464994472],[-71.359481485,41.465080471],[-71.359418485,41.465083471],[-71.359353485,41.465057471],[-71.359296243,41.465031122],[-71.359353663,41.465058191],[-71.359419007,41.465084022]]],[[[-71.360930727,41.465150925],[-71.360997904,41.465130149],[-71.361068531,41.46509351],[-71.360997485,41.465129472],[-71.360930485,41.465150472],[-71.360871551,41.465099528],[-71.360871608,41.465100059],[-71.360930727,41.465150925]]],[[[-71.357125585,41.466405604],[-71.357216602,41.466385111],[-71.357323808,41.466316657],[-71.357411743,41.466259522],[-71.357488521,41.466187874],[-71.357539276,41.466128177],[-71.357583441,41.466064813],[-71.357658899,41.466012511],[-71.357733795,41.46593871],[-71.357791652,41.465856838],[-71.357839117,41.46577198],[-71.357882681,41.465691371],[-71.357921266,41.46562075],[-71.357982219,41.465527401],[-71.358042366,41.465426916],[-71.358072581,41.465346153],[-71.358117686,41.465283499],[-71.358182522,41.465235414],[-71.358239689,41.465190842],[-71.358254198,41.465132175],[-71.358263065,41.465067693],[-71.358311297,41.464992875],[-71.358346993,41.464922205],[-71.358364633,41.464849934],[-71.358376592,41.464775461],[-71.358377927,41.464706738],[-71.358393997,41.46461562],[-71.358420174,41.46454631],[-71.358461378,41.464487196],[-71.358524293,41.464441236],[-71.358572118,41.464385812],[-71.358596073,41.464331525],[-71.358629882,41.464261607],[-71.358653066,41.464197988],[-71.358681196,41.464125089],[-71.358717608,41.464018582],[-71.358736722,41.463967125],[-71.358789028,41.463877996],[-71.358837126,41.46380821],[-71.35887867,41.463732583],[-71.35893205,41.463638447],[-71.358965996,41.463561348],[-71.359019414,41.463463621],[-71.359067613,41.463389535],[-71.359112682,41.463328298],[-71.359157888,41.463259949],[-71.359191801,41.463183513],[-71.359267682,41.463060198],[-71.359310492,41.463016912],[-71.359337165,41.462970541],[-71.359356141,41.462926288],[-71.359378983,41.462879866],[-71.359411027,41.462852256],[-71.359566172,41.462868317],[-71.359616768,41.462866],[-71.359685161,41.462336869],[-71.359746649,41.462343569],[-71.359746485,41.46234347],[-71.359684485,41.462336471],[-71.359665485,41.46248147],[-71.359616485,41.462865471],[-71.359565484,41.462867471],[-71.359410484,41.46285147],[-71.359378485,41.462879471],[-71.359355485,41.462925471],[-71.359336485,41.462970471],[-71.359310484,41.463016471],[-71.359267484,41.463059471],[-71.359191484,41.463183471],[-71.359157484,41.463259471],[-71.359112484,41.463327471],[-71.359067485,41.463389471],[-71.359018484,41.463463471],[-71.358965485,41.463560471],[-71.358931485,41.463637471],[-71.358836485,41.463807471],[-71.358788484,41.463877471],[-71.358736485,41.463966471],[-71.358717485,41.464018471],[-71.358680485,41.464124471],[-71.358652484,41.464197471],[-71.358629484,41.464261471],[-71.358595484,41.464331472],[-71.358571484,41.464385471],[-71.358523485,41.464440471],[-71.358460484,41.464486472],[-71.358419484,41.464545472],[-71.358393484,41.464615471],[-71.358377484,41.464706471],[-71.358376484,41.464774471],[-71.358364485,41.464849471],[-71.358346485,41.464921471],[-71.358310485,41.464992472],[-71.358262484,41.465067471],[-71.358253484,41.465131472],[-71.358239484,41.465190472],[-71.358117484,41.465283472],[-71.358072484,41.465345472],[-71.358041484,41.465426471],[-71.357981484,41.465526471],[-71.357920485,41.465620471],[-71.357791484,41.465856471],[-71.357733484,41.465938471],[-71.357658484,41.466012471],[-71.357582484,41.466064472],[-71.357538484,41.466127471],[-71.357488484,41.466187471],[-71.357411484,41.466259472],[-71.357216484,41.466384471],[-71.357125484,41.466405471],[-71.357032484,41.466388472],[-71.356933484,41.466355472],[-71.356864718,41.466320727],[-71.356933807,41.466356127],[-71.357033342,41.466388795],[-71.357125585,41.466405604]]],[[[-71.356636484,41.466312472],[-71.356526484,41.466351472],[-71.356413484,41.466368472],[-71.356322483,41.466400471],[-71.356255484,41.466451472],[-71.356234484,41.466488472],[-71.356233964,41.466491151],[-71.356236177,41.466487126],[-71.356255562,41.466451953],[-71.356323326,41.466401037],[-71.356413639,41.466369018],[-71.356526541,41.466351594],[-71.356637028,41.46631267],[-71.356733588,41.466301538],[-71.35683895,41.466307707],[-71.356838484,41.466307471],[-71.356733484,41.466301472],[-71.356636484,41.466312472]]],[[[-71.356222031,41.466556384],[-71.35622327,41.466546267],[-71.356221484,41.466555472],[-71.356222031,41.466556384]]],[[[-71.356222031,41.466556384],[-71.356272484,41.466640472],[-71.356291484,41.466687472],[-71.356222484,41.466807472],[-71.356181484,41.466856472],[-71.356130483,41.466907471],[-71.356022484,41.467025471],[-71.355974483,41.467082471],[-71.355910484,41.467143471],[-71.355866484,41.467194472],[-71.355815483,41.467258471],[-71.355769484,41.467305472],[-71.355717484,41.467354472],[-71.355643483,41.467410472],[-71.355579484,41.467449472],[-71.355492483,41.467488472],[-71.355447483,41.467507472],[-71.355371483,41.467541472],[-71.355301484,41.467576472],[-71.355249484,41.467585472],[-71.355183484,41.467592472],[-71.355142483,41.467628471],[-71.355089484,41.467694472],[-71.355061483,41.467731472],[-71.354963483,41.467805472],[-71.354825483,41.467905472],[-71.354763483,41.467954472],[-71.354703484,41.467999472],[-71.354657483,41.468028472],[-71.354506484,41.468119472],[-71.354377483,41.468192472],[-71.354304483,41.468237472],[-71.354105483,41.468347472],[-71.354035483,41.468372472],[-71.353960483,41.468438472],[-71.353903483,41.468509472],[-71.353848483,41.468571472],[-71.353795483,41.468640473],[-71.353741483,41.468704472],[-71.353685483,41.468746472],[-71.353586483,41.468815473],[-71.353543483,41.468869472],[-71.353496483,41.468943472],[-71.353443483,41.469018472],[-71.353401483,41.469070473],[-71.353359483,41.469116472],[-71.353331483,41.469164472],[-71.353366483,41.469251472],[-71.353347483,41.469321473],[-71.353223483,41.469467472],[-71.353139483,41.469538473],[-71.353056483,41.469581472],[-71.352968482,41.469616473],[-71.352874483,41.469616473],[-71.352691483,41.469648472],[-71.352583483,41.469627472],[-71.352494483,41.469631473],[-71.352421483,41.469605472],[-71.352305482,41.469608472],[-71.352197483,41.469620472],[-71.352068483,41.469644472],[-71.351993482,41.469724472],[-71.351977482,41.469806473],[-71.351907483,41.469780472],[-71.351840482,41.469815472],[-71.351767482,41.469855472],[-71.351663758,41.469889383],[-71.351664216,41.469889971],[-71.351767919,41.469855983],[-71.35184123,41.469815872],[-71.351907717,41.469781446],[-71.351977838,41.469806625],[-71.351993744,41.469725045],[-71.352068787,41.469644753],[-71.352198008,41.469621066],[-71.35230607,41.469609358],[-71.352421593,41.469605618],[-71.352495481,41.469632265],[-71.352584278,41.469628217],[-71.352691688,41.469648777],[-71.352790274,41.469631957],[-71.352875476,41.469617086],[-71.352968978,41.469616702],[-71.353057448,41.469581801],[-71.353140342,41.469538957],[-71.353223785,41.469468121],[-71.353276496,41.469406988],[-71.353347777,41.469322368],[-71.353367306,41.469251564],[-71.353331804,41.46916507],[-71.353360402,41.469117308],[-71.353402315,41.469071118],[-71.353444362,41.46901921],[-71.353497346,41.468944447],[-71.353543641,41.468869629],[-71.353586696,41.468815573],[-71.353686309,41.468747044],[-71.353742441,41.468705355],[-71.353796191,41.468641341],[-71.353849072,41.468571655],[-71.353903698,41.468509792],[-71.353961385,41.468439379],[-71.354036118,41.468373471],[-71.354106293,41.468347694],[-71.354172844,41.468310409],[-71.354230686,41.468278761],[-71.354304937,41.468237964],[-71.354378317,41.468192865],[-71.354442982,41.468155554],[-71.35450664,41.468120369],[-71.354570366,41.468081594],[-71.354585163,41.468072807],[-71.354658203,41.468029469],[-71.354703605,41.467999818],[-71.354763634,41.46795532],[-71.354825681,41.467905771],[-71.354917594,41.467839312],[-71.354964067,41.467806117],[-71.355061865,41.467731821],[-71.355090255,41.467694853],[-71.355143065,41.467628688],[-71.355183827,41.467593268],[-71.355249762,41.467586101],[-71.355302476,41.46757663],[-71.355371818,41.46754152],[-71.355447846,41.467507905],[-71.355493041,41.467489026],[-71.355509446,41.467481614],[-71.355579692,41.467449798],[-71.35564436,41.467411046],[-71.355717974,41.467355221],[-71.355770442,41.467305567],[-71.355816183,41.467259404],[-71.355867073,41.467194677],[-71.355910999,41.467144212],[-71.35597517,41.467082497],[-71.356023,41.467026342],[-71.356067867,41.466976587],[-71.3561312,41.466908399],[-71.356181818,41.46685657],[-71.356222851,41.466807497],[-71.356262347,41.466739073],[-71.356291984,41.466687744],[-71.356272871,41.466640882],[-71.356222031,41.466556384]]],[[[-71.350798482,41.470144472],[-71.350714595,41.470161102],[-71.35079862,41.470145157],[-71.350891002,41.470131895],[-71.350890482,41.470131472],[-71.350798482,41.470144472]]],[[[-71.351251483,41.469973472],[-71.351200482,41.470047472],[-71.351128482,41.470106472],[-71.351043482,41.470163472],[-71.350965775,41.470207307],[-71.350966292,41.470208016],[-71.351044448,41.47016368],[-71.351128562,41.470106477],[-71.351201278,41.470047726],[-71.351252348,41.46997367],[-71.351300957,41.469925431],[-71.351335641,41.469956648],[-71.351398153,41.469931526],[-71.351451004,41.469863236],[-71.351532359,41.469802415],[-71.351618587,41.469831342],[-71.351646528,41.469867244],[-71.351618483,41.469830473],[-71.351531482,41.469801472],[-71.351450482,41.469862473],[-71.351397482,41.469931472],[-71.351335482,41.469956472],[-71.351300482,41.469924473],[-71.351251483,41.469973472]]],[[[-71.349377513,41.470413538],[-71.349481607,41.47040894],[-71.349615277,41.470355919],[-71.349761286,41.470305155],[-71.349888382,41.470294367],[-71.350035971,41.470310362],[-71.350118077,41.470306947],[-71.350236245,41.470264494],[-71.350332981,41.47024621],[-71.350445087,41.470221587],[-71.350571622,41.470189985],[-71.350643021,41.470175291],[-71.350571482,41.470189472],[-71.350444482,41.470221473],[-71.350332482,41.470245472],[-71.350235482,41.470264472],[-71.350117482,41.470306472],[-71.350035482,41.470309473],[-71.349887481,41.470293473],[-71.349760482,41.470304472],[-71.349614481,41.470355473],[-71.349481481,41.470408473],[-71.349377482,41.470413473],[-71.349353672,41.470404315],[-71.349377513,41.470413538]]],[[[-71.342888681,41.475205699],[-71.342946911,41.475156836],[-71.343008244,41.475095125],[-71.343077278,41.475029857],[-71.343152545,41.474939554],[-71.343215165,41.4748606],[-71.343279349,41.47475082],[-71.343321474,41.474646521],[-71.343415877,41.474552128],[-71.343500346,41.474479173],[-71.343594125,41.474417071],[-71.343694387,41.474364377],[-71.343814445,41.474324815],[-71.343886518,41.474297652],[-71.343961195,41.474237468],[-71.344039812,41.474169444],[-71.344115712,41.47409355],[-71.344197291,41.474020522],[-71.344273288,41.473941723],[-71.344340751,41.473858522],[-71.344376641,41.4738043],[-71.344397791,41.473772333],[-71.344471977,41.473687768],[-71.344538495,41.473605252],[-71.344620244,41.473524379],[-71.344703109,41.473434154],[-71.344797194,41.473357003],[-71.344899441,41.473300012],[-71.345070133,41.473257429],[-71.345173568,41.473237763],[-71.345290558,41.473208212],[-71.345408841,41.473159315],[-71.34554684,41.473079752],[-71.345675147,41.473009416],[-71.345773481,41.472909354],[-71.345865017,41.472816395],[-71.345996396,41.472732432],[-71.346096195,41.472655334],[-71.346203244,41.472598416],[-71.346309356,41.472539302],[-71.34639668,41.47246493],[-71.346476748,41.47237326],[-71.346529674,41.472302067],[-71.346549285,41.472225524],[-71.346581472,41.472141199],[-71.346648709,41.472022845],[-71.346715571,41.471921665],[-71.346787137,41.471824174],[-71.346880656,41.471726918],[-71.346977769,41.471640438],[-71.347050709,41.4715789],[-71.347108689,41.471529967],[-71.347224932,41.471441568],[-71.347340095,41.471359618],[-71.347477113,41.47128076],[-71.347595062,41.471203135],[-71.347671886,41.471079876],[-71.34780958,41.470919922],[-71.347886616,41.470835382],[-71.347952427,41.470739963],[-71.348060235,41.470642839],[-71.34820067,41.470584157],[-71.348329463,41.47053678],[-71.348503251,41.470479148],[-71.348658004,41.470422016],[-71.348801227,41.470366927],[-71.348951559,41.470340641],[-71.349126087,41.470344004],[-71.349237307,41.470364181],[-71.349125482,41.470343472],[-71.348951481,41.470340472],[-71.348800481,41.470366473],[-71.348657482,41.470421472],[-71.348502481,41.470478472],[-71.348328481,41.470536472],[-71.348200481,41.470583473],[-71.348059481,41.470642473],[-71.347951481,41.470739473],[-71.347886481,41.470834473],[-71.347809481,41.470919473],[-71.347671481,41.471079473],[-71.347594481,41.471202473],[-71.347476481,41.471280473],[-71.347339481,41.471359473],[-71.347224481,41.471441473],[-71.347108481,41.471529472],[-71.346977481,41.471639473],[-71.346880481,41.471726473],[-71.34678648,41.471823473],[-71.346715481,41.471921473],[-71.346648481,41.472022473],[-71.346580481,41.472140473],[-71.346562481,41.472189473],[-71.346548481,41.472225473],[-71.346529481,41.472301473],[-71.346476481,41.472372473],[-71.34639648,41.472464474],[-71.346308481,41.472538473],[-71.34620248,41.472597473],[-71.346095481,41.472654473],[-71.345995481,41.472731473],[-71.345864481,41.472815474],[-71.34567448,41.473008474],[-71.345546481,41.473079473],[-71.34540848,41.473158473],[-71.34529048,41.473207473],[-71.34517348,41.473237473],[-71.345069481,41.473256473],[-71.34489848,41.473299474],[-71.344796481,41.473356474],[-71.34470248,41.473433474],[-71.344619481,41.473523473],[-71.344538481,41.473604473],[-71.34447148,41.473687474],[-71.34439748,41.473771473],[-71.34434048,41.473858473],[-71.34427248,41.473941474],[-71.34419648,41.474020474],[-71.34411548,41.474093474],[-71.34403948,41.474168473],[-71.34396048,41.474236474],[-71.34388648,41.474297474],[-71.34381348,41.474324473],[-71.34369348,41.474363473],[-71.34359348,41.474416473],[-71.34349948,41.474478473],[-71.34341548,41.474551473],[-71.34332048,41.474646474],[-71.34327848,41.474750473],[-71.34321448,41.474860474],[-71.34315248,41.474939474],[-71.34307648,41.475029474],[-71.34300748,41.475094474],[-71.34294648,41.475156473],[-71.34288848,41.475205474],[-71.342868755,41.475196447],[-71.342888681,41.475205699]]],[[[-71.34264848,41.475211474],[-71.342539479,41.475263474],[-71.34244648,41.475323474],[-71.34235148,41.475390473],[-71.34226848,41.475459474],[-71.34219948,41.475536474],[-71.34207448,41.475686474],[-71.34207748,41.475764474],[-71.34208548,41.475845474],[-71.34204648,41.475907474],[-71.34198248,41.475957474],[-71.34186348,41.476018474],[-71.34186748,41.476085474],[-71.341858479,41.476146474],[-71.341855924,41.476148746],[-71.341858714,41.476147129],[-71.341867561,41.476085574],[-71.341864105,41.476018766],[-71.341982668,41.47595766],[-71.342046618,41.475908143],[-71.342086027,41.475846173],[-71.342078074,41.475764951],[-71.342074858,41.475686731],[-71.342137377,41.475612786],[-71.342199962,41.475536715],[-71.342269207,41.475459966],[-71.342351661,41.475391286],[-71.342446518,41.475324201],[-71.342540233,41.47526425],[-71.342649103,41.47521166],[-71.342741529,41.475168883],[-71.3428207,41.475177476],[-71.34274148,41.475168474],[-71.34264848,41.475211474]]],[[[-71.361283035,41.477042284],[-71.361170736,41.477125007],[-71.36106412,41.477209977],[-71.360998127,41.477268056],[-71.361029192,41.477289203],[-71.361198861,41.477298281],[-71.36131349,41.477292359],[-71.361381261,41.477241418],[-71.361458769,41.477230785],[-71.361506994,41.477204794],[-71.36151486,41.477095073],[-71.361521622,41.477090118],[-71.361583574,41.477044155],[-71.361652509,41.477032003],[-71.361693069,41.47700662],[-71.361731798,41.477027113],[-71.361754357,41.477043903],[-71.361818583,41.477029527],[-71.361903739,41.476968749],[-71.361813805,41.476931157],[-71.361778535,41.476928622],[-71.361811698,41.47689239],[-71.36190435,41.476838162],[-71.361834674,41.476741223],[-71.361691801,41.476730325],[-71.361589154,41.476708384],[-71.361542276,41.47671576],[-71.361615321,41.476786905],[-71.361609355,41.476847115],[-71.36147362,41.476811206],[-71.361380985,41.476814479],[-71.361343915,41.47685711],[-71.361341663,41.476971892],[-71.361283035,41.477042284]]],[[[-71.355003488,41.478661424],[-71.354852299,41.478682731],[-71.354782005,41.478716399],[-71.354695072,41.478820188],[-71.354581648,41.478911502],[-71.354470692,41.478973431],[-71.354426448,41.479039675],[-71.354400155,41.479115456],[-71.35443457,41.479161034],[-71.354575987,41.4791992],[-71.354723924,41.479246019],[-71.354821802,41.479266474],[-71.354898495,41.479199927],[-71.354942521,41.479094895],[-71.354962771,41.478987477],[-71.355000958,41.478936936],[-71.355061153,41.478836453],[-71.355091623,41.478741352],[-71.355082713,41.478659443],[-71.355003488,41.478661424]]],[[[-71.34182248,41.476178474],[-71.341777479,41.476216474],[-71.34165248,41.476232474],[-71.341548479,41.476331474],[-71.34140348,41.476478474],[-71.34134448,41.476559474],[-71.34128548,41.476649474],[-71.34122148,41.476779474],[-71.341220479,41.476882474],[-71.341239479,41.477067474],[-71.341196479,41.477161474],[-71.341117479,41.477236474],[-71.34100848,41.477296474],[-71.340906479,41.477376475],[-71.340774479,41.477467474],[-71.340666479,41.477562474],[-71.340557479,41.477661474],[-71.340453479,41.477780474],[-71.340361479,41.477881475],[-71.340142479,41.478089474],[-71.340035479,41.478200474],[-71.339939479,41.478303474],[-71.339803479,41.478344474],[-71.339699479,41.478425475],[-71.339611479,41.478526475],[-71.339522479,41.478615474],[-71.339387479,41.478738475],[-71.339281479,41.478848474],[-71.339115479,41.479054475],[-71.339028479,41.479166475],[-71.338967478,41.479265475],[-71.338910478,41.479367475],[-71.338856479,41.479491475],[-71.338819479,41.479597475],[-71.338769479,41.479744475],[-71.338727479,41.479847475],[-71.338666479,41.480059475],[-71.338581479,41.480299475],[-71.338495479,41.480494475],[-71.338454479,41.480579475],[-71.338418479,41.480645475],[-71.338367478,41.480723475],[-71.338315479,41.480783475],[-71.338255479,41.480840475],[-71.338180479,41.480898475],[-71.338110478,41.480945475],[-71.338018478,41.480996475],[-71.337901478,41.481047475],[-71.337774479,41.481093475],[-71.337747478,41.481128475],[-71.337747933,41.481128679],[-71.337775044,41.481094363],[-71.337901917,41.481047704],[-71.338019341,41.480997349],[-71.338111009,41.480945998],[-71.338180648,41.480898709],[-71.338256244,41.480840726],[-71.338315567,41.480783977],[-71.338367354,41.480724267],[-71.338418519,41.480645941],[-71.338455117,41.480579578],[-71.338495926,41.480495359],[-71.338581868,41.480299712],[-71.338624282,41.480181053],[-71.338666765,41.480059581],[-71.338728204,41.479847845],[-71.338770335,41.479744966],[-71.338819995,41.479598439],[-71.338857452,41.479491939],[-71.338911403,41.479368402],[-71.338967825,41.479266412],[-71.339028955,41.479166647],[-71.339116085,41.479054958],[-71.339190455,41.478962484],[-71.339282363,41.478849451],[-71.339387615,41.478738701],[-71.339522698,41.478616032],[-71.339612266,41.478526621],[-71.339700095,41.478426435],[-71.339803783,41.47834507],[-71.339940125,41.478303545],[-71.340035655,41.478200557],[-71.34005096,41.478184775],[-71.340142821,41.478089832],[-71.340240055,41.477998327],[-71.340361648,41.477882019],[-71.340454282,41.477781153],[-71.340557788,41.477661755],[-71.340666594,41.477563221],[-71.340775361,41.477468324],[-71.340906958,41.477376477],[-71.341008723,41.477296527],[-71.341117705,41.477237467],[-71.341197411,41.477162311],[-71.341240337,41.477068077],[-71.34123071,41.476975417],[-71.341221082,41.476883421],[-71.341222155,41.476780118],[-71.341285787,41.476649504],[-71.341344819,41.476559751],[-71.341403708,41.476478598],[-71.341548755,41.476331721],[-71.341652814,41.476233111],[-71.341778142,41.476216588],[-71.341822784,41.476179029],[-71.34182266,41.476178313],[-71.34182248,41.476178474]]],[[[-71.354145388,41.481454807],[-71.354117213,41.481528436],[-71.354155736,41.48155968],[-71.354163369,41.481559781],[-71.354227329,41.48155833],[-71.354308715,41.481543453],[-71.354327632,41.481502745],[-71.354225029,41.481431306],[-71.354206272,41.481414565],[-71.354145388,41.481454807]]],[[[-71.35422425,41.481860439],[-71.354176751,41.481898663],[-71.354186434,41.481988417],[-71.354234817,41.482003299],[-71.354285274,41.481961533],[-71.354308198,41.481910127],[-71.35434325,41.481875364],[-71.354320933,41.481845696],[-71.35422425,41.481860439]]],[[[-71.354936787,41.482361988],[-71.354930482,41.482393495],[-71.354951967,41.482414562],[-71.354976577,41.482425571],[-71.355041788,41.482409095],[-71.35504463,41.482361735],[-71.355026637,41.482356932],[-71.354994297,41.48234827],[-71.354936787,41.482361988]]],[[[-71.352727617,41.482416447],[-71.352756018,41.482525825],[-71.352857149,41.482575765],[-71.352948089,41.48255953],[-71.353010209,41.482457631],[-71.353014926,41.482362224],[-71.35304197,41.482345334],[-71.35310316,41.482291439],[-71.353190077,41.482238583],[-71.353335111,41.482240209],[-71.353416358,41.4822332],[-71.353474761,41.482174316],[-71.353476687,41.482075291],[-71.35335627,41.481987133],[-71.353248018,41.481912736],[-71.353229214,41.481849408],[-71.353168661,41.481823625],[-71.353075947,41.481831191],[-71.352975836,41.481922635],[-71.352856893,41.482003122],[-71.352864572,41.482050587],[-71.352926331,41.482161746],[-71.352908025,41.482268503],[-71.352837811,41.482345234],[-71.352806646,41.482328384],[-71.352794788,41.482300239],[-71.352747357,41.482334872],[-71.352727617,41.482416447]]],[[[-71.356963631,41.482555902],[-71.356900338,41.482571695],[-71.356822049,41.482671334],[-71.356770289,41.482780543],[-71.356804636,41.482831151],[-71.356830125,41.482843624],[-71.356906903,41.482822222],[-71.356966689,41.482741794],[-71.356972716,41.482725358],[-71.357034934,41.482617671],[-71.357094376,41.482555196],[-71.357128368,41.482573511],[-71.357132249,41.482620194],[-71.35715063,41.482656283],[-71.357221386,41.482649166],[-71.357231282,41.482533045],[-71.357165951,41.482507212],[-71.357094597,41.482496374],[-71.357007464,41.482510491],[-71.356996184,41.482550523],[-71.356963631,41.482555902]]],[[[-71.352991067,41.482947506],[-71.35299404,41.482991306],[-71.35306512,41.483015776],[-71.353107545,41.483043526],[-71.353207934,41.483031716],[-71.353198828,41.483010115],[-71.353187104,41.482976275],[-71.353130441,41.482897393],[-71.352991067,41.482947506]]],[[[-71.35401943,41.482914419],[-71.353984641,41.48303458],[-71.353996258,41.483075624],[-71.354101316,41.483070314],[-71.354121667,41.483054765],[-71.354132638,41.4830312],[-71.354220222,41.482992706],[-71.354229655,41.482949746],[-71.354091297,41.482900148],[-71.35401943,41.482914419]]],[[[-71.35302368,41.483521929],[-71.352992179,41.483572545],[-71.353043093,41.483652061],[-71.353121736,41.483681641],[-71.353248706,41.483629911],[-71.353388958,41.483581948],[-71.353473923,41.483531971],[-71.353460523,41.483485894],[-71.353510331,41.483476398],[-71.353614176,41.483483277],[-71.353730051,41.483414951],[-71.353752906,41.483367845],[-71.353651873,41.483314338],[-71.35361484,41.483255812],[-71.353537495,41.48325784],[-71.353507797,41.483264664],[-71.353449586,41.48326475],[-71.353329572,41.483253367],[-71.353224958,41.483331152],[-71.353132265,41.483436328],[-71.35302368,41.483521929]]],[[[-71.357740696,41.483810921],[-71.357801252,41.483837434],[-71.357862664,41.483820174],[-71.357921593,41.483783518],[-71.357946106,41.48379743],[-71.357967433,41.483780441],[-71.358057307,41.483723332],[-71.358188073,41.483672378],[-71.358254599,41.483638658],[-71.358281988,41.483603061],[-71.358296056,41.483567332],[-71.358308003,41.483541664],[-71.358306494,41.483522268],[-71.358296006,41.483422405],[-71.358187365,41.48341127],[-71.358138867,41.483406316],[-71.35806761,41.483391866],[-71.357992198,41.483344432],[-71.357955604,41.483361951],[-71.357941073,41.483470131],[-71.357911172,41.483486309],[-71.35789029,41.483481092],[-71.357874973,41.483434235],[-71.357813526,41.483453667],[-71.357764474,41.483521279],[-71.357686511,41.483555602],[-71.357686528,41.483603698],[-71.357738915,41.483707615],[-71.357740696,41.483810921]]],[[[-71.358425127,41.485314647],[-71.358364021,41.485414445],[-71.358363953,41.485418036],[-71.358343363,41.485445774],[-71.358305467,41.485529318],[-71.358360582,41.485541438],[-71.358462525,41.485501655],[-71.35851134,41.485445501],[-71.358517399,41.485330747],[-71.35847692,41.485301583],[-71.358425127,41.485314647]]],[[[-71.358121707,41.485068763],[-71.358033797,41.485172553],[-71.357920163,41.485273933],[-71.357817928,41.485377545],[-71.357819142,41.485462234],[-71.357874667,41.485550398],[-71.357931798,41.485558222],[-71.358051543,41.485486329],[-71.35814153,41.485420575],[-71.358220419,41.485338957],[-71.358251927,41.485241707],[-71.358252506,41.485213006],[-71.358263051,41.485161447],[-71.358247304,41.485088106],[-71.358171755,41.485047053],[-71.358121707,41.485068763]]],[[[-71.39827529,41.4867155],[-71.398206133,41.486789377],[-71.398207929,41.486846806],[-71.39832715,41.486849541],[-71.398369949,41.486806926],[-71.398381304,41.486761837],[-71.398384401,41.486648473],[-71.398377165,41.4866269],[-71.39827529,41.4867155]]],[[[-71.38426871,41.490692872],[-71.384357763,41.490798987],[-71.384405531,41.490910503],[-71.384376434,41.491023818],[-71.384321113,41.491139759],[-71.384258356,41.491246544],[-71.384169457,41.491344018],[-71.3841015,41.491398655],[-71.384117285,41.491416326],[-71.384192189,41.491423034],[-71.384335779,41.491393448],[-71.384458779,41.491362331],[-71.384466351,41.491243323],[-71.384484195,41.491129288],[-71.38451424,41.491013184],[-71.384516213,41.490895543],[-71.384444989,41.490786725],[-71.384399859,41.49069632],[-71.384414406,41.49064076],[-71.384375165,41.490625764],[-71.384225427,41.490607409],[-71.384174045,41.490595167],[-71.38426871,41.490692872]]],[[[-71.378567022,41.505319022],[-71.378527338,41.505357562],[-71.378521281,41.505408281],[-71.378535858,41.505454837],[-71.378570943,41.505516303],[-71.378595866,41.505561497],[-71.378619698,41.505621487],[-71.378603326,41.505672127],[-71.378576869,41.505698765],[-71.378553249,41.505721199],[-71.378556755,41.50575011],[-71.378568809,41.505762838],[-71.378595858,41.505777778],[-71.378750428,41.505784162],[-71.378836486,41.505805727],[-71.378881382,41.505810897],[-71.378911733,41.505768071],[-71.378901801,41.505726437],[-71.378875291,41.505650962],[-71.378843114,41.505579642],[-71.378810075,41.505497733],[-71.378783567,41.505420816],[-71.378756946,41.505355906],[-71.378747655,41.505345971],[-71.37868682,41.505340029],[-71.378661705,41.505315989],[-71.378623398,41.505301678],[-71.378567022,41.505319022]]],[[[-71.39853445,41.50681291],[-71.398626709,41.506823672],[-71.398722938,41.506825174],[-71.398821054,41.506825947],[-71.398924958,41.506822493],[-71.399036502,41.506816233],[-71.399143301,41.506809215],[-71.399251007,41.506805787],[-71.39935676,41.506806634],[-71.399466382,41.50680394],[-71.399583573,41.506804889],[-71.399707367,41.506805889],[-71.399829336,41.506806155],[-71.399949358,41.506807106],[-71.400077084,41.506803146],[-71.400196263,41.506797669],[-71.400306895,41.506790675],[-71.400416553,41.506784412],[-71.400520458,41.506779517],[-71.400615885,41.506768118],[-71.400704751,41.506750197],[-71.400787895,41.506732956],[-71.40086246,41.506715685],[-71.400932316,41.506694018],[-71.401005132,41.506666683],[-71.401076099,41.506634291],[-71.40114424,41.506600457],[-71.401207508,41.506569477],[-71.401268984,41.506536322],[-71.401329523,41.506498845],[-71.401389152,41.506459948],[-71.401444947,41.506421712],[-71.401502624,41.506385627],[-71.401566927,41.506353915],[-71.401634127,41.50631793],[-71.401694698,41.506279743],[-71.401766947,41.506223751],[-71.401836438,41.506161306],[-71.401879076,41.506111532],[-71.401918891,41.50605741],[-71.401955877,41.506003262],[-71.401984317,41.505946203],[-71.402009997,41.505884088],[-71.402040393,41.505822022],[-71.402074688,41.505756437],[-71.402112754,41.505691587],[-71.402155562,41.505629577],[-71.402206043,41.505563389],[-71.402263286,41.505491512],[-71.402321471,41.505420344],[-71.402374776,41.505357062],[-71.402427945,41.505303775],[-71.402492421,41.505257015],[-71.402557772,41.505215287],[-71.40262692,41.505177884],[-71.402708381,41.505144883],[-71.40279836,41.505113376],[-71.40289217,41.505082627],[-71.402984061,41.50505327],[-71.403077769,41.505029656],[-71.403180964,41.505009709],[-71.403285071,41.504989785],[-71.403383492,41.504968416],[-71.403481944,41.504945537],[-71.403575687,41.50491911],[-71.40366371,41.504892586],[-71.403744126,41.504866741],[-71.403819733,41.504842265],[-71.403885818,41.504817735],[-71.403947225,41.504788124],[-71.404003014,41.504751327],[-71.40405524,41.504696643],[-71.404052356,41.504630707],[-71.404022757,41.504567446],[-71.403962331,41.504529729],[-71.403887509,41.504496894],[-71.40382628,41.504447718],[-71.403782548,41.504375001],[-71.403745311,41.504313107],[-71.403701444,41.504249743],[-71.403653707,41.50419063],[-71.403605198,41.504139086],[-71.4036021,41.50413579],[-71.403548543,41.504083053],[-71.403494111,41.504025329],[-71.403434939,41.503964011],[-71.4033759,41.503894757],[-71.403323525,41.503824868],[-71.403279728,41.503755764],[-71.40324639,41.503691037],[-71.403213963,41.503627042],[-71.403182551,41.503556599],[-71.403161633,41.503486234],[-71.403155922,41.503419609],[-71.40315674,41.503360879],[-71.403157555,41.503303591],[-71.40316409,41.50324633],[-71.403178329,41.503184136],[-71.403191696,41.503114782],[-71.403208867,41.503045455],[-71.403237506,41.502976206],[-71.403272845,41.502902],[-71.403301589,41.502823466],[-71.403322697,41.502744879],[-71.403339024,41.502669811],[-71.403344854,41.502595351],[-71.403346849,41.502522306],[-71.4033584,41.502446502],[-71.403382401,41.502365746],[-71.403410304,41.502280052],[-71.403441001,41.502197197],[-71.403474521,41.50211869],[-71.403504174,41.502042284],[-71.403524338,41.501963696],[-71.403537841,41.501884989],[-71.403553226,41.501808525],[-71.403569522,41.501733457],[-71.403592612,41.501651258],[-71.403625292,41.501564128],[-71.403654068,41.501484153],[-71.403673324,41.501402661],[-71.403695505,41.501317649],[-71.403717754,41.501228292],[-71.403743742,41.501140401],[-71.403777329,41.501056863],[-71.403815592,41.500979823],[-71.40384807,41.500905614],[-71.403875838,41.500827765],[-71.403897918,41.500749179],[-71.403904689,41.500675429],[-71.403905706,41.500604556],[-71.403909553,41.500533663],[-71.403928705,41.50046006],[-71.403947891,41.500384308],[-71.40396321,41.500311388],[-71.403981318,41.500244189],[-71.404005046,41.500182803],[-71.404022985,41.500127083],[-71.40402474,41.500071945],[-71.404014185,41.500008838],[-71.404013254,41.499939359],[-71.404014306,41.499865604],[-71.404018216,41.499792606],[-71.404025023,41.499715288],[-71.404034688,41.499638728],[-71.404048088,41.499566493],[-71.404064313,41.499497873],[-71.404078588,41.499430671],[-71.404093767,41.499369232],[-71.404116483,41.499312807],[-71.404142028,41.499256431],[-71.404159057,41.499199271],[-71.404157251,41.499124073],[-71.404115473,41.499048498],[-71.404088701,41.498988145],[-71.40406011,41.498923468],[-71.40403822,41.498853101],[-71.40403345,41.498787163],[-71.404040053,41.498724185],[-71.404050488,41.498661987],[-71.404055208,41.498596857],[-71.404058984,41.49853239],[-71.404071171,41.498478061],[-71.404110272,41.498408958],[-71.404153981,41.49834983],[-71.40418245,41.498291329],[-71.404182325,41.498231158],[-71.404183239,41.498168175],[-71.404185063,41.498107274],[-71.404225781,41.498055347],[-71.404296802,41.498020072],[-71.404364061,41.49797839],[-71.404410629,41.49791931],[-71.404443067,41.49785011],[-71.404466795,41.497787992],[-71.404499032,41.497730935],[-71.404526489,41.497677465],[-71.404518284,41.497650906],[-71.404442085,41.497649562],[-71.404368745,41.497648243],[-71.40436316,41.497639617],[-71.404422711,41.497605704],[-71.404491819,41.4975683],[-71.404532598,41.497514933],[-71.404527797,41.497449727],[-71.404475721,41.497427088],[-71.404409778,41.497443042],[-71.404393293,41.497462262],[-71.404352715,41.497502731],[-71.404290379,41.497465012],[-71.404237634,41.497422293],[-71.404215538,41.49736773],[-71.40421164,41.497308951],[-71.404231326,41.497264736],[-71.404280758,41.497202091],[-71.40430078,41.497136334],[-71.404310274,41.497071962],[-71.404306449,41.497004607],[-71.404299729,41.49694084],[-71.404321499,41.496885856],[-71.404381157,41.496840509],[-71.404430615,41.496781454],[-71.404436313,41.496712757],[-71.404409437,41.496661666],[-71.404430802,41.496633211],[-71.404523793,41.496592419],[-71.404573152,41.496537664],[-71.404600545,41.496485611],[-71.404613737,41.496430551],[-71.404596822,41.496411075],[-71.404514561,41.496436918],[-71.404438861,41.496469262],[-71.404356401,41.49650654],[-71.404283529,41.496539618],[-71.404224986,41.496571382],[-71.404193726,41.496625558],[-71.404168015,41.496691974],[-71.404102542,41.496740861],[-71.404074881,41.496809379],[-71.404057816,41.496870862],[-71.404062653,41.496932478],[-71.404059987,41.496986883],[-71.404091843,41.497023685],[-71.404045683,41.497053355],[-71.403977719,41.497078615],[-71.403918067,41.497119662],[-71.403875401,41.497173028],[-71.403870412,41.497255356],[-71.403869563,41.497314817],[-71.403868749,41.497372106],[-71.403870489,41.497450163],[-71.403885685,41.497521187],[-71.40392117,41.497572331],[-71.40395669,41.497620616],[-71.40398249,41.497679551],[-71.403982582,41.497740408],[-71.403950275,41.497803182],[-71.40389718,41.497852902],[-71.403827097,41.497890991],[-71.403751535,41.497911168],[-71.403673416,41.497911948],[-71.403593449,41.49790701],[-71.403508904,41.497892028],[-71.403459896,41.497852216],[-71.403477326,41.497832311],[-71.403522746,41.497788987],[-71.403524675,41.497718847],[-71.403518863,41.497658625],[-71.403522574,41.497597771],[-71.403505389,41.497534613],[-71.403447494,41.497518418],[-71.403401263,41.497554537],[-71.403371647,41.497628085],[-71.40336037,41.497683855],[-71.403365071,41.497754756],[-71.403375694,41.497811437],[-71.40336815,41.497872973],[-71.40335687,41.497930185],[-71.403335028,41.497992327],[-71.403294244,41.498047158],[-71.403243975,41.498098321],[-71.403191753,41.498153737],[-71.403158236,41.498231535],[-71.403133533,41.498294361],[-71.403112564,41.498361513],[-71.403097346,41.498428715],[-71.403091687,41.498490253],[-71.403098508,41.498546908],[-71.403126993,41.498620893],[-71.403167995,41.498684964],[-71.403206408,41.498731125],[-71.403226619,41.498784246],[-71.403221095,41.498837208],[-71.403203798,41.498849246],[-71.403188117,41.498879215],[-71.403185351,41.498939361],[-71.403183592,41.498996626],[-71.403197552,41.499019668],[-71.403214745,41.499015497],[-71.403230985,41.499080096],[-71.403191951,41.499144259],[-71.40313226,41.499189605],[-71.403068836,41.499228454],[-71.403004439,41.499267324],[-71.402982764,41.499318009],[-71.40293246,41.499372031],[-71.402868265,41.499397317],[-71.402787886,41.49942316],[-71.402727389,41.499457048],[-71.402667631,41.499505985],[-71.402626745,41.499567265],[-71.402580074,41.499632062],[-71.402537404,41.499686136],[-71.402497597,41.499738086],[-71.402458731,41.499790791],[-71.402412398,41.499833381],[-71.402352571,41.499886618],[-71.402292745,41.499939877],[-71.402241459,41.499998152],[-71.402199729,41.50005369],[-71.402161704,41.500114263],[-71.402121792,41.500174126],[-71.402090427,41.500235459],[-71.402054285,41.500297475],[-71.402006067,41.500338599],[-71.401989814,41.500344212],[-71.401975787,41.500325492],[-71.402003316,41.500266259],[-71.401991346,41.500236084],[-71.401970252,41.500243796],[-71.401928388,41.50030791],[-71.401893217,41.500370658],[-71.401861988,41.500422707],[-71.401810708,41.500476682],[-71.401750245,41.50050771],[-71.401663136,41.500536406],[-71.401569362,41.500567155],[-71.401489994,41.500587258],[-71.401357779,41.500610632],[-71.401295225,41.500615793],[-71.401205796,41.500610045],[-71.401118324,41.500597162],[-71.401019515,41.500578461],[-71.400932178,41.50055698],[-71.400854466,41.500527754],[-71.400815882,41.500494467],[-71.400833893,41.50043374],[-71.400858431,41.500381641],[-71.400878322,41.500324529],[-71.400876382,41.500260057],[-71.400854392,41.500197534],[-71.400819475,41.500173628],[-71.400760018,41.500203239],[-71.400717561,41.500176398],[-71.400717368,41.500123409],[-71.400769392,41.500080847],[-71.400788309,41.500023734],[-71.400749793,41.499986171],[-71.400674872,41.499962642],[-71.400595301,41.499996375],[-71.400535541,41.500044602],[-71.400468006,41.50010492],[-71.400404241,41.500165996],[-71.400353828,41.500229325],[-71.400303489,41.500284078],[-71.400272224,41.500338276],[-71.400256403,41.500379679],[-71.400167648,41.500390397],[-71.400093126,41.500404146],[-71.400040229,41.500440257],[-71.400011789,41.500497293],[-71.399987014,41.500564418],[-71.399970647,41.500643762],[-71.399930495,41.500720799],[-71.399903973,41.500776464],[-71.39987846,41.500829249],[-71.399823238,41.50089326],[-71.399777843,41.500936559],[-71.399740018,41.500983546],[-71.399707878,41.501032689],[-71.399669954,41.501084662],[-71.399625428,41.501136584],[-71.399573303,41.501184908],[-71.399513609,41.501228812],[-71.399455865,41.501270591],[-71.399392373,41.50131161],[-71.399321341,41.501349695],[-71.399244761,41.501375585],[-71.399169262,41.501390728],[-71.399090933,41.501405867],[-71.39902562,41.501444003],[-71.398961318,41.501477154],[-71.398882721,41.501508759],[-71.398800455,41.501532449],[-71.39872875,41.501552626],[-71.398650885,41.501602162],[-71.398584325,41.501658867],[-71.39850737,41.501709822],[-71.398459114,41.501753827],[-71.398416371,41.501812245],[-71.398375449,41.501874209],[-71.39833173,41.501934021],[-71.398278594,41.501985866],[-71.398221656,41.502036976],[-71.398160881,41.502090209],[-71.398104817,41.502146305],[-71.398057365,41.50220035],[-71.398013851,41.502245846],[-71.397963439,41.502306315],[-71.397974058,41.502362996],[-71.397969572,41.502410928],[-71.39792589,41.502466463],[-71.397855559,41.502521723],[-71.397767266,41.502565441],[-71.39769832,41.502591382],[-71.397623622,41.502618005],[-71.397553632,41.502649641],[-71.397493095,41.502686407],[-71.397439187,41.502725353],[-71.397389985,41.502769356],[-71.397349232,41.502819176],[-71.397310394,41.502870393],[-71.39727162,41.502918774],[-71.39721448,41.502981364],[-71.397158582,41.503027443],[-71.397100905,41.503063503],[-71.397055235,41.503125463],[-71.397022782,41.503197565],[-71.396996258,41.503252475],[-71.396951665,41.503305814],[-71.396899569,41.503352651],[-71.396821668,41.503402895],[-71.396731659,41.503434374],[-71.396638929,41.503455126],[-71.396549191,41.50346943],[-71.396461478,41.503472324],[-71.39639075,41.50348891],[-71.396380254,41.503488855],[-71.396244293,41.503338774],[-71.396184627,41.503381258],[-71.396105718,41.50343436],[-71.3961449,41.503492645],[-71.396187781,41.503558892],[-71.39616694,41.503617466],[-71.396139334,41.503682415],[-71.396109877,41.503744457],[-71.396154711,41.503807138],[-71.396224383,41.503861426],[-71.396280963,41.503903443],[-71.396335559,41.50394969],[-71.396387259,41.503999547],[-71.396429372,41.504051431],[-71.396462904,41.504105457],[-71.396476124,41.504132822],[-71.396490679,41.504162955],[-71.39650409,41.504223915],[-71.396510874,41.504281256],[-71.396511028,41.504337128],[-71.396512021,41.504401599],[-71.396522504,41.504466856],[-71.396525177,41.504546378],[-71.396524989,41.504625896],[-71.39652023,41.504691757],[-71.396504169,41.504747454],[-71.396500485,41.504806158],[-71.396533883,41.504868006],[-71.396573904,41.504934959],[-71.396604509,41.504993213],[-71.396613173,41.50505417],[-71.396614201,41.505115759],[-71.396619098,41.505173808],[-71.396644754,41.505244956],[-71.396685649,41.505317582],[-71.396719183,41.505370145],[-71.396752646,41.505429133],[-71.396784125,41.50549242],[-71.396821293,41.505555734],[-71.396867071,41.505619125],[-71.396917658,41.505681148],[-71.396966262,41.505746714],[-71.39700336,41.505816478],[-71.397032851,41.505886189],[-71.397063318,41.505955169],[-71.39709668,41.50602063],[-71.397130215,41.506073169],[-71.397183669,41.506130895],[-71.397235439,41.50617643],[-71.397304201,41.506231448],[-71.39735988,41.5062677],[-71.397421243,41.506307572],[-71.397491117,41.506351819],[-71.397564826,41.506395406],[-71.397634702,41.506438944],[-71.397693006,41.506489538],[-71.397740906,41.506539346],[-71.397805832,41.506596487],[-71.397899529,41.506640183],[-71.397981117,41.506665207],[-71.398070312,41.50669026],[-71.398163374,41.506712503],[-71.39825637,41.506738337],[-71.398350208,41.506770598],[-71.39844132,41.506794966],[-71.39853445,41.50681291]]],[[[-71.374850545,41.506897799],[-71.374945861,41.506820076],[-71.375077629,41.506755909],[-71.375207467,41.506698074],[-71.37534112,41.506634618],[-71.375475657,41.506569813],[-71.375613836,41.506525366],[-71.375753795,41.50648872],[-71.375899267,41.506464772],[-71.376057848,41.506442302],[-71.376198827,41.506397194],[-71.376265871,41.506338399],[-71.376287477,41.506223661],[-71.376273451,41.506112292],[-71.376294619,41.506051801],[-71.376349072,41.506038686],[-71.376462663,41.506124479],[-71.376488074,41.506152659],[-71.376523929,41.5061924],[-71.376566072,41.5063011],[-71.376561354,41.506414507],[-71.3765929,41.50644848],[-71.376741796,41.5064633],[-71.376909623,41.506458516],[-71.377079281,41.506450854],[-71.37721924,41.506413542],[-71.377353013,41.506333137],[-71.377475401,41.506272479],[-71.377599767,41.506194876],[-71.377727673,41.506144081],[-71.377877826,41.506121577],[-71.377981453,41.506054449],[-71.378043363,41.505942017],[-71.378058455,41.505827272],[-71.378066984,41.505708266],[-71.37807839,41.505580092],[-71.37810853,41.505455574],[-71.378184425,41.505348143],[-71.37829394,41.505254995],[-71.378386721,41.505146941],[-71.378482176,41.505055814],[-71.378588711,41.504978191],[-71.378687638,41.504918056],[-71.378776522,41.504826899],[-71.378849536,41.504729344],[-71.378942197,41.504635378],[-71.379055298,41.504559888],[-71.379183316,41.50449569],[-71.379288969,41.504416602],[-71.379387186,41.504328313],[-71.3794902,41.504228799],[-71.379570691,41.504134065],[-71.37959053,41.504116155],[-71.379670797,41.504043696],[-71.379798019,41.503964676],[-71.379922187,41.503908226],[-71.380053868,41.503852515],[-71.380183694,41.503796092],[-71.380315375,41.503739672],[-71.380423784,41.503666212],[-71.380545302,41.503594252],[-71.380679894,41.503526583],[-71.380805039,41.503467342],[-71.380929347,41.503399616],[-71.381033086,41.503317688],[-71.381137752,41.503243515],[-71.381256586,41.50315815],[-71.381359446,41.503073431],[-71.381471665,41.502995057],[-71.381578264,41.502911738],[-71.381688599,41.502831235],[-71.381791599,41.50273595],[-71.381886976,41.502650468],[-71.382025192,41.502595471],[-71.382126185,41.502515667],[-71.382185183,41.502409588],[-71.38222642,41.502300586],[-71.382265883,41.502179599],[-71.382347435,41.502067299],[-71.382432606,41.501971904],[-71.382513969,41.501879295],[-71.382585238,41.50176623],[-71.382645104,41.501667173],[-71.382739757,41.501559849],[-71.382832407,41.501465925],[-71.382885774,41.50136048],[-71.382922363,41.501246557],[-71.382981427,41.501136223],[-71.383073096,41.501046506],[-71.38317047,41.500947624],[-71.383253752,41.500852249],[-71.383321242,41.500741947],[-71.383386768,41.50064086],[-71.383437372,41.500531158],[-71.383487982,41.500469278],[-71.38351597,41.500435024],[-71.38360866,41.500334764],[-71.383718982,41.500257804],[-71.383784199,41.500192599],[-71.383809566,41.500075782],[-71.383789936,41.49996155],[-71.383767519,41.499840957],[-71.383767648,41.499717688],[-71.383809,41.499592493],[-71.383850412,41.499467985],[-71.383905741,41.499352068],[-71.383992869,41.499248189],[-71.384035048,41.499136374],[-71.384111943,41.49902121],[-71.384185098,41.49890531],[-71.384250556,41.498806326],[-71.384314259,41.498702354],[-71.38435458,41.49859127],[-71.384382738,41.498477954],[-71.384376221,41.498362409],[-71.384370643,41.498248945],[-71.384405381,41.498130056],[-71.384451408,41.498009097],[-71.384493619,41.497895911],[-71.384567568,41.497794099],[-71.384627493,41.497692251],[-71.384686517,41.49758402],[-71.384733458,41.49746169],[-71.384716622,41.497349588],[-71.384687657,41.497232533],[-71.384649255,41.497119608],[-71.384648961,41.497045646],[-71.384735111,41.496941103],[-71.384813736,41.496843549],[-71.384904568,41.496740428],[-71.384979497,41.4966337],[-71.385058156,41.49653338],[-71.385118991,41.496432195],[-71.385163923,41.496326741],[-71.385170023,41.496317644],[-71.38517731,41.496256657],[-71.385166646,41.49623197],[-71.3851611,41.496220347],[-71.38526801,41.496193078],[-71.385573341,41.496115281],[-71.385635061,41.496115182],[-71.385786974,41.496114899],[-71.385883274,41.496032228],[-71.385863711,41.496016634],[-71.385967564,41.495928367],[-71.385921915,41.495888528],[-71.38587177,41.495844774],[-71.385712237,41.495871465],[-71.385565015,41.495885544],[-71.385401028,41.495884763],[-71.385253924,41.495884067],[-71.385100278,41.495884028],[-71.384950345,41.495883284],[-71.384784545,41.495875457],[-71.384638613,41.495848667],[-71.384609792,41.495822475],[-71.384590168,41.49570472],[-71.384559351,41.495586223],[-71.384524719,41.49547472],[-71.384510687,41.495359875],[-71.384483581,41.495242068],[-71.384448045,41.495126378],[-71.384401225,41.4950099],[-71.384401255,41.494958328],[-71.384401273,41.494897197],[-71.384349754,41.49478913],[-71.384284266,41.494667648],[-71.384220442,41.494568694],[-71.38419046,41.494460763],[-71.3841649,41.494380326],[-71.384115081,41.494291312],[-71.384119748,41.494181472],[-71.384157263,41.494073861],[-71.384232194,41.493965006],[-71.384311804,41.493859015],[-71.38430871,41.49378576],[-71.384271063,41.493694699],[-71.384287615,41.493623613],[-71.384369906,41.493531713],[-71.38444475,41.493436992],[-71.384497236,41.493325942],[-71.384472887,41.493214541],[-71.384412455,41.493158563],[-71.384354059,41.49308715],[-71.384413006,41.492985254],[-71.38441713,41.4929416],[-71.384312954,41.49285372],[-71.384191815,41.492777761],[-71.384073364,41.492712417],[-71.383924762,41.492668699],[-71.383783525,41.492639809],[-71.383640445,41.492603919],[-71.383502143,41.492566706],[-71.383493722,41.492564434],[-71.383348599,41.492548232],[-71.383189109,41.492572107],[-71.383052734,41.492630629],[-71.382908071,41.49267995],[-71.382755754,41.492740492],[-71.382606272,41.492796806],[-71.382451315,41.492836212],[-71.382300287,41.492855909],[-71.382155501,41.492805195],[-71.382012718,41.492739709],[-71.381867821,41.492700247],[-71.381715485,41.492653001],[-71.381570497,41.492629776],[-71.381457017,41.492642581],[-71.381344855,41.492716701],[-71.381316556,41.49273913],[-71.381277544,41.49269877],[-71.381188448,41.492600406],[-71.381068974,41.492547727],[-71.380935601,41.492477287],[-71.380862579,41.492472043],[-71.380809918,41.4924936],[-71.380786612,41.492480357],[-71.380775673,41.492474125],[-71.380736263,41.492451672],[-71.380764647,41.492415887],[-71.380873589,41.492389653],[-71.381023484,41.492390357],[-71.381156069,41.492442455],[-71.38121594,41.492453312],[-71.381265595,41.492345759],[-71.381166154,41.492250175],[-71.381045845,41.492188301],[-71.38103501,41.492175506],[-71.380957735,41.492084312],[-71.380906076,41.491990377],[-71.380890869,41.491906451],[-71.380844957,41.491797016],[-71.380794396,41.491685518],[-71.380743719,41.491587308],[-71.380758771,41.491473248],[-71.380785054,41.491355723],[-71.380783257,41.491240891],[-71.380797373,41.491123308],[-71.380832973,41.491017114],[-71.380882635,41.490905354],[-71.380925751,41.490797063],[-71.380955769,41.490682378],[-71.380971803,41.490563402],[-71.380986747,41.49045849],[-71.381046712,41.490350995],[-71.381085154,41.490237073],[-71.381140511,41.490120425],[-71.381186468,41.490005093],[-71.381244542,41.489899699],[-71.381287585,41.489797789],[-71.381308267,41.489681654],[-71.381399883,41.489596146],[-71.381528848,41.489529109],[-71.381671721,41.489473454],[-71.381823379,41.489487583],[-71.381966915,41.489469274],[-71.382103181,41.48941711],[-71.382237465,41.489384635],[-71.382392827,41.489402999],[-71.382551886,41.489428456],[-71.382710989,41.489446823],[-71.382872161,41.489447581],[-71.383031488,41.489442758],[-71.383202112,41.489430924],[-71.383372786,41.489407793],[-71.383507827,41.489393842],[-71.383516284,41.489392982],[-71.383667191,41.489385267],[-71.383816317,41.489369797],[-71.383987019,41.48934806],[-71.384140838,41.489327678],[-71.384284343,41.489308657],[-71.384425992,41.489290344],[-71.384565869,41.489258581],[-71.384704992,41.489206416],[-71.384843287,41.489140872],[-71.384968335,41.489084417],[-71.385093484,41.489022313],[-71.385223311,41.488963072],[-71.38536704,41.488920105],[-71.385506847,41.488893281],[-71.385654133,41.48886795],[-71.38580054,41.488841155],[-71.385937313,41.488844652],[-71.386032075,41.488938788],[-71.386108026,41.48904132],[-71.386162366,41.489152888],[-71.386222312,41.489258859],[-71.386296487,41.48935151],[-71.386401562,41.489445015],[-71.386519968,41.489516715],[-71.386667595,41.489558301],[-71.386704828,41.489590882],[-71.386667348,41.489699889],[-71.386650451,41.489813948],[-71.386654338,41.489904837],[-71.386524886,41.489922525],[-71.386428628,41.490004488],[-71.386382682,41.49011909],[-71.386401333,41.490237529],[-71.386474453,41.490342895],[-71.386505373,41.490455034],[-71.386552241,41.490561609],[-71.38655284,41.490601792],[-71.386423004,41.490664556],[-71.386362255,41.490755839],[-71.386335987,41.490871261],[-71.386308779,41.490984555],[-71.386315309,41.491094475],[-71.386287112,41.49121623],[-71.386316005,41.491339642],[-71.386289811,41.491447288],[-71.3862926,41.491557204],[-71.386340373,41.491668079],[-71.386355354,41.491780843],[-71.386419027,41.49189672],[-71.386522375,41.491971858],[-71.386653866,41.492042931],[-71.386790305,41.49208446],[-71.386945858,41.492084521],[-71.387104289,41.492073997],[-71.387250623,41.492057811],[-71.387414651,41.492046605],[-71.387570205,41.492045957],[-71.387680583,41.492066945],[-71.38780546,41.492146426],[-71.387854339,41.492182448],[-71.387919046,41.492230103],[-71.388004486,41.492319288],[-71.388076776,41.492414726],[-71.38814998,41.492508771],[-71.388243918,41.492591651],[-71.388310775,41.492663116],[-71.388377294,41.492771265],[-71.388502137,41.492854266],[-71.388658222,41.492900112],[-71.388820164,41.492918496],[-71.388979348,41.492930542],[-71.389131088,41.492938304],[-71.389276489,41.492917152],[-71.389430498,41.49287849],[-71.389569406,41.492847429],[-71.389739129,41.492833458],[-71.389895971,41.492791939],[-71.390017533,41.492711507],[-71.390136304,41.492626842],[-71.390255073,41.492543571],[-71.39034774,41.492443969],[-71.390433946,41.492333086],[-71.390519971,41.49223979],[-71.390575392,41.492185114],[-71.390608785,41.492152191],[-71.390710667,41.492070939],[-71.390823878,41.491981304],[-71.390947178,41.491914961],[-71.39108902,41.491874067],[-71.391241026,41.491848756],[-71.391400438,41.491832601],[-71.391554182,41.491822774],[-71.391698517,41.491818519],[-71.39186537,41.49180946],[-71.392019112,41.491800365],[-71.392173732,41.491794037],[-71.392231465,41.491792765],[-71.392333062,41.49179055],[-71.392499908,41.491785035],[-71.392658297,41.491780151],[-71.392698631,41.491779823],[-71.392764544,41.491779816],[-71.392914406,41.491781465],[-71.393085322,41.491779748],[-71.393231415,41.491779198],[-71.393402231,41.491782535],[-71.393570965,41.491794424],[-71.393733004,41.491808387],[-71.39391408,41.491824723],[-71.39407794,41.491840861],[-71.394222663,41.49186041],[-71.394371251,41.491878546],[-71.394516882,41.491900955],[-71.39462318,41.491981783],[-71.39474769,41.492011148],[-71.394838907,41.492032249],[-71.394955763,41.492111783],[-71.395022522,41.492116075],[-71.395191625,41.49210715],[-71.395302517,41.492150041],[-71.39543976,41.492112041],[-71.395575779,41.49204033],[-71.395724885,41.491982398],[-71.39584729,41.491921264],[-71.395850879,41.491883257],[-71.395837811,41.491819232],[-71.395810483,41.491751443],[-71.395724475,41.491706723],[-71.395636321,41.491672727],[-71.395548581,41.491569869],[-71.395507242,41.491438764],[-71.395486032,41.491350261],[-71.395451826,41.491341973],[-71.395369236,41.491366209],[-71.395302123,41.491431511],[-71.395228877,41.491564913],[-71.39517123,41.491682733],[-71.395110712,41.491750967],[-71.395015165,41.49175566],[-71.394832605,41.491716363],[-71.39465579,41.491679243],[-71.394495422,41.491629399],[-71.394373561,41.491561295],[-71.394362989,41.491515957],[-71.394438699,41.491401928],[-71.394488624,41.491338624],[-71.394451537,41.49123197],[-71.394465173,41.491169685],[-71.394480596,41.491112432],[-71.394420538,41.491009828],[-71.394384534,41.490947703],[-71.394467335,41.490812251],[-71.394480429,41.490728422],[-71.394561602,41.490676902],[-71.394692351,41.490628079],[-71.394792246,41.49054808],[-71.394794956,41.490546299],[-71.394828997,41.490524054],[-71.394980332,41.490497],[-71.395115985,41.490443219],[-71.395252743,41.490382281],[-71.395307363,41.490273744],[-71.395381087,41.490163326],[-71.395511021,41.490109448],[-71.395649102,41.490076526],[-71.395795049,41.490032177],[-71.3959499,41.489973564],[-71.396010896,41.489928313],[-71.395975735,41.489871198],[-71.39594811,41.489818526],[-71.395995754,41.489773081],[-71.396129817,41.489703517],[-71.39626314,41.489621008],[-71.396384182,41.489534005],[-71.39649685,41.489434027],[-71.396590749,41.48931592],[-71.39669783,41.489209419],[-71.396787462,41.489115664],[-71.396883886,41.489015488],[-71.396889455,41.488975356],[-71.396777576,41.488885857],[-71.39663833,41.488830524],[-71.396576269,41.488781709],[-71.396576441,41.488673328],[-71.3965954,41.488533564],[-71.396622009,41.488440529],[-71.396731386,41.488362092],[-71.396876203,41.488278952],[-71.396988703,41.488186864],[-71.397072497,41.48814902],[-71.39722774,41.488165809],[-71.397341452,41.488210804],[-71.397384972,41.488329721],[-71.397449031,41.488423042],[-71.39754353,41.488424064],[-71.397630527,41.488418538],[-71.397754986,41.488496705],[-71.397875508,41.488582734],[-71.397969061,41.488682828],[-71.398025489,41.488775318],[-71.397992719,41.488841681],[-71.397894778,41.488921045],[-71.39777734,41.489019533],[-71.397658149,41.489111547],[-71.397536131,41.489201364],[-71.397424243,41.489309942],[-71.397329338,41.489430222],[-71.397247043,41.489539147],[-71.397168782,41.489635886],[-71.397048912,41.489713537],[-71.396918547,41.489791087],[-71.396852447,41.489852822],[-71.396840727,41.489916596],[-71.396882628,41.490020372],[-71.396888919,41.490138158],[-71.396848431,41.490256154],[-71.396773999,41.490353697],[-71.396668518,41.490428639],[-71.396521497,41.490478683],[-71.396375885,41.490503663],[-71.396258658,41.490543283],[-71.396218515,41.490595985],[-71.396213537,41.490704316],[-71.396211115,41.490830602],[-71.396200894,41.490964725],[-71.396171606,41.491095767],[-71.39612566,41.491201499],[-71.396060217,41.491326401],[-71.396089982,41.491467399],[-71.396131784,41.491576252],[-71.396148501,41.49169773],[-71.39612713,41.491766389],[-71.396064152,41.491813811],[-71.395992844,41.491896993],[-71.395957093,41.49201792],[-71.395889962,41.492132049],[-71.39584911,41.492190079],[-71.39582027,41.492231059],[-71.395833767,41.492274273],[-71.395895917,41.492269206],[-71.396006256,41.492240238],[-71.396077559,41.492256129],[-71.396183017,41.492331214],[-71.396293382,41.492400587],[-71.39638736,41.492426767],[-71.396459952,41.492473761],[-71.396522309,41.492510798],[-71.396583556,41.492557851],[-71.396641841,41.492611305],[-71.396720243,41.492658488],[-71.396777794,41.492696206],[-71.396797997,41.492750106],[-71.396797793,41.492763691],[-71.396802724,41.492818903],[-71.396804625,41.492886234],[-71.396803668,41.492952076],[-71.396802816,41.493010096],[-71.396818979,41.493079681],[-71.396834236,41.493145012],[-71.396826687,41.493205816],[-71.396809652,41.493264417],[-71.396791537,41.493332302],[-71.396761985,41.493400108],[-71.396714331,41.493469887],[-71.396663789,41.493538932],[-71.396631648,41.493589537],[-71.396598431,41.493647277],[-71.396568947,41.493710097],[-71.396550763,41.493783013],[-71.396538265,41.493857352],[-71.396526742,41.493930297],[-71.396512464,41.493995372],[-71.39649065,41.494055386],[-71.396467961,41.494111032],[-71.396443358,41.494164548],[-71.39641387,41.494230204],[-71.39641776,41.494289693],[-71.396449795,41.494382322],[-71.396479487,41.494436985],[-71.396545855,41.494459],[-71.396622994,41.49446035],[-71.396692769,41.494443718],[-71.3967496,41.494399081],[-71.396790319,41.494348552],[-71.396817852,41.494287925],[-71.396842691,41.494219338],[-71.396868444,41.494150087],[-71.396883767,41.494077878],[-71.396896267,41.494002052],[-71.396913543,41.493926299],[-71.396938384,41.493856294],[-71.396967065,41.493781329],[-71.396988777,41.493727786],[-71.397013414,41.493671411],[-71.397044987,41.493595031],[-71.397077465,41.493522974],[-71.39711368,41.49345451],[-71.397154532,41.493396137],[-71.397200899,41.493350644],[-71.397273945,41.493303963],[-71.397345005,41.493262998],[-71.397413836,41.493246364],[-71.397499618,41.493243467],[-71.397594854,41.493244238],[-71.3976948,41.493248627],[-71.397770927,41.493254252],[-71.397851795,41.493262077],[-71.397927888,41.493269851],[-71.398033519,41.493275731],[-71.39813454,41.493272985],[-71.398231797,41.49326589],[-71.398310011,41.49325935],[-71.398393467,41.493285106],[-71.398479455,41.493267184],[-71.398550308,41.493241243],[-71.398609927,41.493201616],[-71.398668675,41.493155539],[-71.398737174,41.493098058],[-71.398808337,41.493048516],[-71.398887064,41.493004789],[-71.398946649,41.492967998],[-71.399008184,41.492928395],[-71.399072544,41.492891654],[-71.399140675,41.492854962],[-71.399214625,41.49281258],[-71.399294293,41.492770249],[-71.399379611,41.492732268],[-71.399449723,41.49269345],[-71.399507423,41.492655239],[-71.399584332,41.492606456],[-71.399650716,41.492558281],[-71.399698999,41.492512126],[-71.399728445,41.492451477],[-71.399736934,41.492390673],[-71.399778998,41.492313661],[-71.399817866,41.492258121],[-71.399857703,41.492204731],[-71.39987229,41.492193697],[-71.399928962,41.492150865],[-71.399985017,41.492094037],[-71.400017495,41.492019829],[-71.400030657,41.491966187],[-71.40003144,41.491911757],[-71.400033509,41.491832286],[-71.400044787,41.491777247],[-71.400065523,41.491723681],[-71.400106507,41.491655976],[-71.400162289,41.491617763],[-71.400207639,41.491579449],[-71.400182758,41.491519828],[-71.400167499,41.491453789],[-71.400189544,41.491379481],[-71.400221983,41.491310281],[-71.400259168,41.4912404],[-71.400308634,41.491175607],[-71.400355339,41.491105802],[-71.400386836,41.49103587],[-71.400409826,41.490960121],[-71.400427127,41.490884391],[-71.40044635,41.490805049],[-71.400466413,41.490733574],[-71.400476748,41.490677803],[-71.400480562,41.4906105],[-71.400434589,41.490559986],[-71.400366851,41.490500717],[-71.400315964,41.490461611],[-71.400268976,41.4904183],[-71.400221389,41.490349169],[-71.400189919,41.490283001],[-71.400162349,41.490211898],[-71.400142444,41.4901408],[-71.400138456,41.490084194],[-71.400157541,41.4900156],[-71.400188024,41.489952094],[-71.400245055,41.489891698],[-71.400284022,41.489829708],[-71.400293414,41.489774622],[-71.400288245,41.489733543],[-71.400300466,41.48967862],[-71.400345377,41.489667224],[-71.400369021,41.489660178],[-71.400383202,41.48965573],[-71.400390459,41.489644027],[-71.400391456,41.489628636],[-71.400364397,41.489601261],[-71.400326433,41.489564727],[-71.400359922,41.489543899],[-71.400390242,41.489527596],[-71.400461257,41.489491637],[-71.400461905,41.489445852],[-71.400426888,41.489431253],[-71.40037239,41.489446552],[-71.400344842,41.489440559],[-71.400361532,41.489406337],[-71.400402177,41.489360838],[-71.400425936,41.489298012],[-71.400426721,41.489242164],[-71.400425859,41.489169802],[-71.400418067,41.489113856],[-71.400376099,41.489050492],[-71.400323498,41.488999218],[-71.400278327,41.488961626],[-71.400263807,41.48890995],[-71.40021006,41.488872305],[-71.400138952,41.488849488],[-71.400058461,41.488817377],[-71.399990352,41.488783836],[-71.39991844,41.488750338],[-71.399847469,41.488718258],[-71.399778385,41.488685448],[-71.399719793,41.48865347],[-71.3996498,41.488618555],[-71.399575063,41.488583545],[-71.399496455,41.488553539],[-71.399422557,41.488526442],[-71.399356026,41.488514446],[-71.399148271,41.488388867],[-71.398925421,41.48826881],[-71.398810352,41.488195822],[-71.398693496,41.488117801],[-71.398575867,41.488029008],[-71.398471485,41.487948962],[-71.398371982,41.487861099],[-71.398245067,41.487759261],[-71.398122118,41.487650291],[-71.398045617,41.487557622],[-71.397975166,41.487447784],[-71.397934709,41.487315353],[-71.397895358,41.487175697],[-71.397841018,41.487071819],[-71.39775365,41.48694742],[-71.39768232,41.486836139],[-71.397599428,41.486727616],[-71.397531197,41.486599895],[-71.397496966,41.486493358],[-71.397469529,41.486379647],[-71.39746792,41.486261956],[-71.397481744,41.486135818],[-71.397507876,41.486016254],[-71.397543362,41.485905411],[-71.397585601,41.485793203],[-71.397638471,41.485671101],[-71.397707351,41.485559854],[-71.39780673,41.48545259],[-71.39791688,41.485381265],[-71.39798741,41.485284427],[-71.398086458,41.485193653],[-71.398183656,41.485099949],[-71.398246549,41.485004453],[-71.398205211,41.484968854],[-71.397999362,41.484955178],[-71.397924581,41.484873306],[-71.397877267,41.48475084],[-71.397830762,41.484636243],[-71.397788833,41.484532445],[-71.397838312,41.484438264],[-71.397902013,41.484350683],[-71.397880096,41.484247108],[-71.397743439,41.484155963],[-71.397623087,41.48406353],[-71.39753721,41.483960699],[-71.397453613,41.483839253],[-71.397392948,41.48371737],[-71.397333029,41.48360475],[-71.397266512,41.483491393],[-71.397188734,41.48336428],[-71.397112804,41.483241446],[-71.397065424,41.483123989],[-71.397065635,41.48300989],[-71.397070038,41.482880061],[-71.397022924,41.482748219],[-71.396980222,41.482634425],[-71.396945154,41.482520661],[-71.396927671,41.482384111],[-71.396948318,41.482251575],[-71.397010202,41.482158984],[-71.397101646,41.482066671],[-71.397121643,41.48201809],[-71.397025043,41.481928787],[-71.396993774,41.481816513],[-71.396982106,41.48167576],[-71.3969857,41.481537994],[-71.397021514,41.48141064],[-71.397069242,41.481307104],[-71.39705653,41.4811728],[-71.397059217,41.481031466],[-71.397070216,41.480903152],[-71.397045209,41.48081245],[-71.396977083,41.480680406],[-71.396930946,41.480547169],[-71.396884613,41.480423241],[-71.396849875,41.480293719],[-71.396789726,41.480194752],[-71.396711852,41.48007338],[-71.396676787,41.479958883],[-71.396652509,41.479830904],[-71.396658401,41.479721201],[-71.396668621,41.479585683],[-71.396668221,41.479455049],[-71.396674312,41.479334552],[-71.396734644,41.479221834],[-71.396775907,41.479109647],[-71.39676475,41.47899252],[-71.396734758,41.478862339],[-71.396691116,41.478749231],[-71.396660727,41.478639816],[-71.396636384,41.478514718],[-71.396637998,41.478379077],[-71.396640189,41.478263608],[-71.396645238,41.478148119],[-71.396676376,41.478015706],[-71.396723078,41.477867664],[-71.396776539,41.477714666],[-71.396836591,41.47756675],[-71.396902161,41.477428971],[-71.396957205,41.47729395],[-71.397024856,41.477147574],[-71.397113325,41.477009289],[-71.397182658,41.476875836],[-71.397227179,41.47674069],[-71.397252598,41.476608204],[-71.397252294,41.476473316],[-71.397243518,41.476330416],[-71.397258812,41.476177749],[-71.39727609,41.476020075],[-71.397294043,41.475878183],[-71.397298612,41.475738291],[-71.397301531,41.475584789],[-71.397307246,41.475431977],[-71.397327278,41.475282241],[-71.397343182,41.475147482],[-71.397344628,41.475021195],[-71.397342408,41.47488626],[-71.397343147,41.474745632],[-71.397345868,41.474601416],[-71.39735609,41.474463747],[-71.397361269,41.474341854],[-71.397352462,41.4742959],[-71.397337804,41.474219593],[-71.397318398,41.474088073],[-71.397342313,41.473982823],[-71.397418847,41.473870302],[-71.397443224,41.473742114],[-71.397382104,41.473644564],[-71.397312414,41.473544811],[-71.397260499,41.47341436],[-71.397206769,41.473278898],[-71.39719591,41.473146036],[-71.397198428,41.473015427],[-71.397152165,41.472887931],[-71.397087616,41.472768126],[-71.397008707,41.472653179],[-71.396923043,41.472540352],[-71.39681747,41.472423666],[-71.396743913,41.472327431],[-71.39666955,41.472222597],[-71.396614515,41.47210575],[-71.396587992,41.471995698],[-71.396565304,41.4718835],[-71.396544796,41.471757742],[-71.396515682,41.471632525],[-71.396484521,41.471513801],[-71.396444883,41.471390678],[-71.396391867,41.471267407],[-71.39633135,41.471137587],[-71.396266155,41.471004836],[-71.396226488,41.470881737],[-71.396172031,41.470784993],[-71.396063673,41.470662563],[-71.39600935,41.470557952],[-71.395969714,41.470434806],[-71.395892116,41.47030122],[-71.395820815,41.470185662],[-71.3957602,41.47006156],[-71.39569965,41.469934621],[-71.395628677,41.469804701],[-71.395560332,41.469684845],[-71.395498512,41.469573663],[-71.395446041,41.469471935],[-71.395407958,41.469367498],[-71.395352797,41.469256391],[-71.395291749,41.469156713],[-71.395233629,41.469051298],[-71.395170127,41.468927947],[-71.395093786,41.468828073],[-71.39502161,41.468709631],[-71.39495148,41.46858616],[-71.39489242,41.468480058],[-71.394826868,41.468365236],[-71.394773458,41.468262775],[-71.394715374,41.468155255],[-71.394697405,41.46811716],[-71.394664012,41.468046369],[-71.394620514,41.467926055],[-71.394580981,41.467797901],[-71.394548174,41.467666208],[-71.394521217,41.467526721],[-71.394520917,41.467523999],[-71.394505623,41.467393077],[-71.394503243,41.467266763],[-71.394505504,41.467147657],[-71.394507796,41.467027843],[-71.394524478,41.466903171],[-71.394551849,41.46676785],[-71.394590319,41.466650562],[-71.394659084,41.466545102],[-71.394709084,41.466423662],[-71.394774546,41.46629231],[-71.394839641,41.466180352],[-71.394916337,41.466058456],[-71.394991246,41.465932281],[-71.395056573,41.465808133],[-71.395118944,41.465688214],[-71.395168942,41.465567482],[-71.39522469,41.465443943],[-71.395303032,41.465337142],[-71.395396175,41.465252768],[-71.395522365,41.465189555],[-71.395628552,41.465123237],[-71.395683866,41.465023322],[-71.395767146,41.464907995],[-71.395912798,41.464822729],[-71.396031421,41.464755804],[-71.396043049,41.464747513],[-71.396150377,41.464670972],[-71.396264459,41.464591121],[-71.396396499,41.464518628],[-71.396537917,41.464456274],[-71.396708488,41.464415741],[-71.396860128,41.46436785],[-71.397005546,41.46429411],[-71.397189596,41.464247253],[-71.397343661,41.464223057],[-71.397487749,41.464221013],[-71.397648309,41.464204095],[-71.397803172,41.464136857],[-71.397945526,41.464076698],[-71.398111487,41.4640282],[-71.398260338,41.46397381],[-71.398381897,41.463952145],[-71.39851247,41.463960013],[-71.398610509,41.463870632],[-71.39870784,41.463768351],[-71.398815395,41.463679092],[-71.398948533,41.463600856],[-71.399038102,41.463503508],[-71.399123866,41.463408283],[-71.399253504,41.463312777],[-71.399337996,41.463234018],[-71.399392726,41.463113357],[-71.399462518,41.463005037],[-71.399592898,41.462919593],[-71.399723621,41.462867861],[-71.39982805,41.462793647],[-71.399906826,41.46271415],[-71.399888876,41.46260342],[-71.399928454,41.462528486],[-71.400046526,41.46243935],[-71.400079993,41.462384445],[-71.400037315,41.462319411],[-71.400002745,41.462281005],[-71.400041498,41.462149398],[-71.400057575,41.462054844],[-71.400159343,41.461969833],[-71.400169074,41.461908915],[-71.400107597,41.461830783],[-71.400098167,41.461774698],[-71.400184541,41.461695962],[-71.400316732,41.461617015],[-71.400371374,41.461552294],[-71.4003301,41.461464322],[-71.400339502,41.461419917],[-71.400407702,41.461316168],[-71.400489553,41.461251654],[-71.40063379,41.461207616],[-71.400687865,41.461155359],[-71.400688472,41.461036183],[-71.400640124,41.46092218],[-71.400667285,41.460814988],[-71.40062794,41.46071771],[-71.400659761,41.460604988],[-71.40069607,41.460499908],[-71.400743271,41.460409475],[-71.400711845,41.460342736],[-71.400769031,41.460263448],[-71.400744362,41.460172496],[-71.400693355,41.4601271],[-71.400589962,41.460144392],[-71.400563303,41.460141442],[-71.400484028,41.460072968],[-71.400409973,41.460030183],[-71.40042002,41.459960941],[-71.400514964,41.459882647],[-71.400648201,41.459832997],[-71.400704026,41.459788357],[-71.400725737,41.459746249],[-71.400734975,41.45966939],[-71.400733171,41.459595976],[-71.40081229,41.459527891],[-71.400865453,41.459474238],[-71.400900401,41.459403782],[-71.400902913,41.459351137],[-71.400860757,41.45926424],[-71.400809861,41.459206358],[-71.400802676,41.459193132],[-71.400833735,41.459140718],[-71.400832401,41.459098453],[-71.400759327,41.45905082],[-71.400684723,41.459049589],[-71.400666265,41.459052226],[-71.400624266,41.459022161],[-71.400671961,41.458965645],[-71.400749819,41.458926009],[-71.400822282,41.458875963],[-71.400757579,41.458821431],[-71.400700096,41.458777402],[-71.400697956,41.458725394],[-71.400774025,41.458682989],[-71.400877729,41.45864006],[-71.40092374,41.4585711],[-71.400879286,41.458515373],[-71.400817249,41.458467796],[-71.400824456,41.458406853],[-71.400747569,41.458368205],[-71.400671776,41.458389843],[-71.400630294,41.458319573],[-71.400644958,41.458252462],[-71.400692897,41.458175202],[-71.400741368,41.458128429],[-71.400820172,41.458085341],[-71.400886084,41.458044232],[-71.400936407,41.457998169],[-71.400939312,41.457987079],[-71.400884288,41.4579659],[-71.400786872,41.457952757],[-71.400724839,41.457903098],[-71.400788018,41.457859219],[-71.40083848,41.457802087],[-71.400838619,41.457790286],[-71.400792064,41.457758091],[-71.400728806,41.457733382],[-71.400720956,41.457697995],[-71.400648589,41.457666326],[-71.40055728,41.457676059],[-71.400498507,41.457661074],[-71.400571879,41.457611715],[-71.400629663,41.457557379],[-71.400706779,41.457505256],[-71.400754162,41.457473028],[-71.400804593,41.457415873],[-71.400808441,41.45740483],[-71.40077478,41.457369261],[-71.400693377,41.457322947],[-71.400658939,41.457279029],[-71.400704919,41.457210093],[-71.400752508,41.457162587],[-71.400793587,41.457117156],[-71.400856936,41.457061476],[-71.4008936,41.457001497],[-71.400820186,41.456978769],[-71.400712978,41.457008477],[-71.400639074,41.457028767],[-71.400575576,41.457022789],[-71.400554836,41.456987277],[-71.400582908,41.456879399],[-71.40063803,41.456816028],[-71.400716093,41.456760475],[-71.400801117,41.456664746],[-71.400822122,41.456605988],[-71.400853494,41.456527227],[-71.400896911,41.456443697],[-71.400876624,41.456370106],[-71.4008397,41.45630263],[-71.400875347,41.456250906],[-71.400876776,41.456210747],[-71.40083849,41.456178582],[-71.400773905,41.45618852],[-71.400707883,41.456163123],[-71.400706164,41.456154088],[-71.400738629,41.4561363],[-71.400842399,41.456087196],[-71.400845304,41.456076106],[-71.400799455,41.456059852],[-71.400718687,41.4560357],[-71.400709223,41.455982313],[-71.400788864,41.455947527],[-71.400877646,41.455919039],[-71.400903377,41.455850634],[-71.400895907,41.455785447],[-71.400852755,41.455774753],[-71.400774974,41.455806041],[-71.400712244,41.455815318],[-71.400703138,41.455806253],[-71.400727858,41.455743359],[-71.400800313,41.455696103],[-71.400870039,41.455643905],[-71.400835777,41.455584756],[-71.400807789,41.455538145],[-71.400803016,41.455477832],[-71.400866021,41.455447767],[-71.40091543,41.45540168],[-71.400895005,41.455339204],[-71.400840561,41.455277843],[-71.400817306,41.4552174],[-71.400859527,41.455160169],[-71.400902462,41.455113368],[-71.400918879,41.455053211],[-71.400865145,41.455004314],[-71.400780666,41.454983635],[-71.400808047,41.454929754],[-71.400857457,41.454883004],[-71.40086652,41.45482005],[-71.400885,41.454742536],[-71.400912415,41.454685911],[-71.400920809,41.454603517],[-71.400916878,41.454550134],[-71.400858524,41.454501211],[-71.400817083,41.454426092],[-71.400778936,41.45438288],[-71.400706155,41.454385814],[-71.400639121,41.454368031],[-71.400596519,41.454316445],[-71.400619209,41.454268803],[-71.400707921,41.4542445],[-71.400755512,41.454194227],[-71.400781245,41.454124427],[-71.400780119,41.454065535],[-71.400704175,41.454029632],[-71.400652369,41.453973876],[-71.400662033,41.453935805],[-71.400705449,41.453852275],[-71.400665686,41.453793099],[-71.400665539,41.453730045],[-71.400734246,41.45368688],[-71.40076783,41.453651781],[-71.400743897,41.453577478],[-71.400676369,41.45352571],[-71.40062992,41.453485235],[-71.40056509,41.453438318],[-71.400589839,41.453375424],[-71.400565634,41.453320515],[-71.400496136,41.453284709],[-71.400444839,41.453333538],[-71.400408314,41.453383843],[-71.40036173,41.453352357],[-71.400307294,41.453286832],[-71.400237769,41.453248899],[-71.400151402,41.453231671],[-71.400101255,41.453263898],[-71.400029598,41.453248124],[-71.400021401,41.453241141],[-71.400062234,41.453217209],[-71.400154898,41.453172098],[-71.400202591,41.453114232],[-71.400219111,41.453046459],[-71.400233676,41.452984196],[-71.400273909,41.452934626],[-71.400354593,41.452890808],[-71.400440606,41.452861631],[-71.400479996,41.45280648],[-71.400456768,41.452748804],[-71.400368718,41.452719065],[-71.400342169,41.452706418],[-71.400369586,41.45264842],[-71.400354877,41.452645548],[-71.400285326,41.45268455],[-71.40023578,41.452741683],[-71.400187563,41.452784202],[-71.40015725,41.452788155],[-71.400127545,41.452791789],[-71.400099778,41.452800204],[-71.400088073,41.452801131],[-71.400051418,41.452757715],[-71.400049623,41.452679383],[-71.400074305,41.452620674],[-71.400145641,41.452587254],[-71.400239744,41.452574757],[-71.400316584,41.452540655],[-71.400395378,41.452500312],[-71.400410919,41.452435992],[-71.400465125,41.45237262],[-71.400549521,41.452326769],[-71.40060807,41.452285631],[-71.400656675,41.45222708],[-71.400664859,41.452163393],[-71.400575449,41.452168325],[-71.400475954,41.452168993],[-71.400435635,41.45215622],[-71.40052911,41.452116689],[-71.400578519,41.452069231],[-71.400648341,41.452011521],[-71.400668576,41.45193824],[-71.400638869,41.451883943],[-71.40055659,41.451837651],[-71.400475024,41.451803138],[-71.400482161,41.451747753],[-71.400557275,41.451708093],[-71.400635191,41.451664272],[-71.400644539,41.451653966],[-71.400620062,41.45161845],[-71.40054801,41.451564597],[-71.400522015,41.451507582],[-71.40045141,41.451481472],[-71.400436735,41.451476497],[-71.40043354,41.451439055],[-71.400437877,41.451385772],[-71.400422257,41.451382876],[-71.40034539,41.451416246],[-71.400276577,41.45146984],[-71.400222297,41.451463183],[-71.400204669,41.451401419],[-71.400305805,41.451341152],[-71.400355178,41.451297147],[-71.400361762,41.45128542],[-71.400337313,41.451251299],[-71.400267336,41.45125149],[-71.400245411,41.451236812],[-71.40024856,41.451205642],[-71.400299863,41.451151942],[-71.400351193,41.451100323],[-71.400349478,41.451088543],[-71.400295465,41.451065992],[-71.400198912,41.451052163],[-71.400156214,41.451005402],[-71.400201981,41.450953756],[-71.400285498,41.45090516],[-71.400333963,41.450858387],[-71.400351534,41.450778128],[-71.400388295,41.450711882],[-71.400420365,41.450651807],[-71.400403583,41.450593519],[-71.400379514,41.450530285],[-71.400352436,41.450486443],[-71.400279908,41.450465819],[-71.400192598,41.450451358],[-71.400146994,41.450416419],[-71.400153576,41.450406042],[-71.400140195,41.450370627],[-71.40008409,41.450364655],[-71.400056802,41.450338834],[-71.40013532,41.450318616],[-71.400187357,41.450280857],[-71.400260824,41.450223859],[-71.400226461,41.450173721],[-71.40029415,41.450138194],[-71.400342649,41.450088676],[-71.400268506,41.450051425],[-71.400171487,41.450004983],[-71.400128928,41.449947153],[-71.40011036,41.449884679],[-71.400126846,41.449818255],[-71.400101798,41.449759183],[-71.400088245,41.449736941],[-71.400101612,41.44970235],[-71.400149236,41.449647983],[-71.400137074,41.449591072],[-71.400088845,41.44954362],[-71.400115316,41.449487702],[-71.400142834,41.449422729],[-71.400102938,41.449372586],[-71.400021336,41.449343584],[-71.399973846,41.449310679],[-71.399945887,41.449266812],[-71.399922594,41.449213322],[-71.399973785,41.449172108],[-71.400017528,41.449131552],[-71.399977697,41.449079282],[-71.39993507,41.449026323],[-71.399919969,41.448982559],[-71.399929838,41.448929944],[-71.39989422,41.448905441],[-71.399823658,41.448952058],[-71.399761608,41.448977962],[-71.399683375,41.448972565],[-71.39964695,41.448939028],[-71.399729621,41.448885584],[-71.399774441,41.448836018],[-71.399775311,41.448764686],[-71.399727851,41.448731781],[-71.399654618,41.448697274],[-71.399567135,41.448698044],[-71.399468312,41.448719502],[-71.399365776,41.448743723],[-71.399256764,41.448769288],[-71.399162561,41.448790795],[-71.399083944,41.448817255],[-71.399011592,41.448861102],[-71.398971959,41.448937042],[-71.398926263,41.448981759],[-71.398859273,41.449037389],[-71.398806084,41.449092437],[-71.398724663,41.449123743],[-71.398640409,41.449158477],[-71.398557908,41.449199479],[-71.398517811,41.449240793],[-71.398560333,41.449301345],[-71.39856976,41.449357523],[-71.398528548,41.449412009],[-71.398457249,41.44944266],[-71.398347633,41.449445354],[-71.398249925,41.449452289],[-71.398167556,41.449486361],[-71.398147634,41.449533341],[-71.398183644,41.449598027],[-71.398182743,41.449669358],[-71.398129583,41.449724451],[-71.398057442,41.449748859],[-71.397960475,41.449768258],[-71.397906476,41.449815002],[-71.397881933,41.449861933],[-71.397798205,41.449928571],[-71.397746099,41.449970469],[-71.397715808,41.450038137],[-71.397753709,41.450099395],[-71.397798928,41.45016553],[-71.397793539,41.450229241],[-71.397747564,41.450296164],[-71.397722809,41.450361116],[-71.397703555,41.450426759],[-71.397644863,41.450481092],[-71.397577908,41.450532582],[-71.397536486,41.450603008],[-71.397504552,41.450651945],[-71.397495201,41.450664378],[-71.397440952,41.450657034],[-71.3973887,41.450636587],[-71.397307069,41.45068381],[-71.397228066,41.450740732],[-71.397191372,41.450801488],[-71.397160273,41.450860145],[-71.397085572,41.450868632],[-71.397050619,41.45086629],[-71.396981278,41.450887292],[-71.396925392,41.450935406],[-71.396944937,41.450993034],[-71.396973902,41.451034135],[-71.39694372,41.451090025],[-71.396843909,41.451118409],[-71.396759617,41.451155932],[-71.396695391,41.451210214],[-71.396638657,41.45125556],[-71.3965827,41.451309209],[-71.396540501,41.451370555],[-71.39645141,41.451424654],[-71.396401895,41.451479749],[-71.396365335,41.451531471],[-71.396305872,41.451571921],[-71.396274744,41.451629892],[-71.396226208,41.451680848],[-71.396213602,41.451731997],[-71.396246913,41.451792519],[-71.396243552,41.451841687],[-71.396190255,41.451904372],[-71.396121232,41.451973171],[-71.396037707,41.452024554],[-71.395961881,41.452051015],[-71.395852967,41.452068275],[-71.395742295,41.452081348],[-71.395656357,41.45210151],[-71.395556509,41.452132683],[-71.395471372,41.452165333],[-71.395415021,41.452179484],[-71.395373342,41.452199983],[-71.395319307,41.452248099],[-71.395262435,41.452302432],[-71.395185322,41.452354529],[-71.395128933,41.452372842],[-71.395060252,41.452341882],[-71.394964016,41.452375825],[-71.394893727,41.452399591],[-71.394819585,41.452437168],[-71.39477378,41.452490185],[-71.394694844,41.452540907],[-71.394597584,41.452587336],[-71.394523306,41.4526339],[-71.39444097,41.452662458],[-71.394346446,41.452708866],[-71.394264496,41.452781038],[-71.394196312,41.452855372],[-71.394118005,41.45293036],[-71.394036087,41.45300045],[-71.393951514,41.453058737],[-71.393845077,41.453102343],[-71.393776011,41.453102531],[-71.393681064,41.453109487],[-71.393630563,41.453170092],[-71.393632459,41.453237996],[-71.393629063,41.453288558],[-71.393569527,41.453334564],[-71.393468976,41.453347713],[-71.393374696,41.453374086],[-71.393299781,41.453399883],[-71.393194292,41.453439304],[-71.393091043,41.453448242],[-71.393000443,41.453473224],[-71.392908859,41.453505157],[-71.392807885,41.45355293],[-71.392730032,41.453590502],[-71.392649342,41.453634268],[-71.392546583,41.453677191],[-71.392461791,41.453682098],[-71.39236849,41.453704332],[-71.392304469,41.453741276],[-71.392295371,41.45374655],[-71.392220973,41.453789865],[-71.392140351,41.453828806],[-71.392051361,41.45379906],[-71.391948851,41.453819799],[-71.391871097,41.453851835],[-71.391779717,41.453869885],[-71.39168302,41.453868514],[-71.391604358,41.453897736],[-71.391572208,41.453963297],[-71.391543665,41.454035174],[-71.391478488,41.454090825],[-71.391393272,41.454131087],[-71.391288799,41.454161543],[-71.3911852,41.454196848],[-71.391084153,41.454250817],[-71.390995054,41.454304249],[-71.390910755,41.454341745],[-71.390824388,41.45439726],[-71.390738998,41.454450009],[-71.390664718,41.454494513],[-71.3906015,41.454541153],[-71.390587174,41.45458194],[-71.390653086,41.454614982],[-71.390751922,41.454592846],[-71.390833318,41.454564998],[-71.390935901,41.45453804],[-71.391026264,41.454528292],[-71.391119216,41.454534509],[-71.391130212,41.454539437],[-71.391106886,41.454563497],[-71.391008821,41.454597435],[-71.39092364,41.454634244],[-71.390826275,41.454686204],[-71.390744528,41.454741746],[-71.39065298,41.454768806],[-71.39054889,41.454769462],[-71.390463853,41.454793097],[-71.39043464,41.454846265],[-71.390468159,41.454889453],[-71.390539604,41.4549225],[-71.390637079,41.454932907],[-71.390722705,41.454938409],[-71.390713077,41.454969503],[-71.39073654,41.455009159],[-71.390809708,41.455047788],[-71.390883993,41.455073244],[-71.39094434,41.455107652],[-71.390951589,41.455117402],[-71.390926406,41.455142855],[-71.390852018,41.455124306],[-71.390753912,41.45509176],[-71.390647337,41.455069497],[-71.390543457,41.455053504],[-71.390452219,41.455058403],[-71.390354119,41.455094421],[-71.390280043,41.455125751],[-71.390207545,41.455176545],[-71.390183725,41.455240788],[-71.390202253,41.45530395],[-71.390208941,41.45535809],[-71.390206522,41.455404491],[-71.390276148,41.455434746],[-71.390344829,41.455466464],[-71.390379328,41.455505513],[-71.390289349,41.455556817],[-71.390219724,41.455597894],[-71.390127715,41.455663054],[-71.390066213,41.45571873],[-71.390055562,41.455760938],[-71.389999699,41.455807632],[-71.389950347,41.455850946],[-71.389885657,41.455939872],[-71.389907194,41.45598577],[-71.389995457,41.455997473],[-71.390092295,41.455989149],[-71.390166969,41.455982794],[-71.390234982,41.455996421],[-71.390170015,41.456033363],[-71.390089143,41.456091673],[-71.390034117,41.456146714],[-71.390005994,41.45618392],[-71.390070995,41.456216961],[-71.390157401,41.456230057],[-71.390247735,41.456221704],[-71.390314842,41.456231899],[-71.390376902,41.456278042],[-71.390320406,41.456303305],[-71.39023463,41.456313057],[-71.390143949,41.456347093],[-71.390055232,41.456370679],[-71.389966338,41.45640817],[-71.389911316,41.456460398],[-71.389930825,41.456519445],[-71.389995724,41.456558729],[-71.390038521,41.456599227],[-71.390093934,41.456657119],[-71.390103282,41.456720249],[-71.390096836,41.456792947],[-71.39005004,41.456852914],[-71.389953759,41.456961684],[-71.389927068,41.457033562],[-71.389914353,41.457091663],[-71.389926398,41.457159667],[-71.389972595,41.457220981],[-71.390009895,41.457257997],[-71.390075075,41.457275761],[-71.390155176,41.457279108],[-71.390216924,41.457276788],[-71.390370092,41.457253607],[-71.390328166,41.457435568],[-71.390268478,41.457568844],[-71.390230897,41.457626097],[-71.390135803,41.457715497],[-71.390117346,41.457718133],[-71.390072475,41.457699131],[-71.389998778,41.457702033],[-71.389927401,41.45773547],[-71.389871532,41.45778429],[-71.389835733,41.457848452],[-71.389852161,41.457931715],[-71.389844802,41.458004412],[-71.389800601,41.458074787],[-71.389758216,41.458149989],[-71.389740806,41.458216387],[-71.389767882,41.458258837],[-71.389852994,41.458229668],[-71.38993531,41.45820045],[-71.390007109,41.458205116],[-71.39009327,41.458239],[-71.390165455,41.458285953],[-71.390188641,41.458345735],[-71.390149063,41.458415405],[-71.390126959,41.458488705],[-71.390102125,41.458558504],[-71.390033265,41.458612732],[-71.389954277,41.458669695],[-71.389915857,41.458719332],[-71.389923597,41.458762312],[-71.389994525,41.458762129],[-71.390035784,41.458777674],[-71.389993748,41.458825913],[-71.389941068,41.458912128],[-71.389915463,41.458970148],[-71.389882817,41.459003164],[-71.389826426,41.459018685],[-71.389825797,41.459067192],[-71.389846108,41.459137331],[-71.389831397,41.459207208],[-71.389827648,41.45928478],[-71.389794545,41.459353839],[-71.389785263,41.45943136],[-71.389724487,41.459504372],[-71.389692544,41.459552666],[-71.389709983,41.459631767],[-71.389687915,41.459700906],[-71.389623854,41.459739266],[-71.389602867,41.459798662],[-71.389623217,41.459863953],[-71.38958451,41.459938541],[-71.389550394,41.460013134],[-71.389531231,41.460072578],[-71.389539602,41.460138452],[-71.389653158,41.460189858],[-71.389728399,41.460210491],[-71.389790566,41.460249727],[-71.389798726,41.460260186],[-71.389777957,41.460298817],[-71.389678097,41.460327904],[-71.389582789,41.460361866],[-71.389538827,41.460415614],[-71.389503937,41.460480509],[-71.389435987,41.460534737],[-71.389349187,41.460553545],[-71.389279515,41.460600842],[-71.389235344,41.460670507],[-71.389216955,41.460738963],[-71.389301091,41.46078531],[-71.389387112,41.460831636],[-71.389397095,41.460843492],[-71.38937706,41.460896715],[-71.38932364,41.460969779],[-71.389331903,41.461045373],[-71.3893698,41.461107982],[-71.389378764,41.461200203],[-71.389393581,41.461265466],[-71.389438062,41.461317744],[-71.389451966,41.461383669],[-71.389426322,41.461445874],[-71.38946047,41.461513991],[-71.389470387,41.461528615],[-71.389492385,41.461608452],[-71.38952303,41.461662707],[-71.389533326,41.461722385],[-71.389576686,41.461791288],[-71.38958639,41.461823956],[-71.389613395,41.461873313],[-71.389621763,41.461940582],[-71.389601691,41.461997967],[-71.389613456,41.462088109],[-71.389627817,41.462118014],[-71.389636571,41.462154798],[-71.389629637,41.462192161],[-71.389668724,41.462234737],[-71.389706069,41.462264801],[-71.389759437,41.462276699],[-71.389771689,41.462384475],[-71.389710686,41.462482849],[-71.389675735,41.462564965],[-71.389702409,41.462666443],[-71.38980287,41.462751479],[-71.389817371,41.462842058],[-71.389775729,41.46292554],[-71.389718825,41.463008207],[-71.389749833,41.463082427],[-71.389770448,41.463152978],[-71.389705314,41.463266375],[-71.389703943,41.463340244],[-71.389755053,41.463411144],[-71.389859209,41.463450992],[-71.389900538,41.463534714],[-71.38988553,41.4636716],[-71.389928038,41.463795459],[-71.389976972,41.46393092],[-71.390032193,41.464034849],[-71.390062297,41.464158582],[-71.390010943,41.464249167],[-71.390047088,41.46430624],[-71.390136896,41.46439975],[-71.39018492,41.464534455],[-71.390248378,41.464658586],[-71.390258057,41.464742071],[-71.39023913,41.464841447],[-71.390226838,41.464936758],[-71.390159818,41.465050152],[-71.390098781,41.465149236],[-71.389993567,41.465265773],[-71.389920157,41.465363289],[-71.389820629,41.465479191],[-71.389692891,41.465573957],[-71.389546255,41.465659922],[-71.389384724,41.465725656],[-71.389200861,41.465764587],[-71.389052604,41.465784501],[-71.388906263,41.465803731],[-71.388758915,41.465825109],[-71.388601075,41.465847826],[-71.388449957,41.465869155],[-71.388269591,41.465871518],[-71.388139107,41.465810534],[-71.388014605,41.465736726],[-71.387955596,41.465680133],[-71.388007524,41.465557989],[-71.387976761,41.465518874],[-71.387807186,41.46550629],[-71.387724579,41.465486724],[-71.387571979,41.465433448],[-71.387441427,41.465377472],[-71.387285229,41.465312642],[-71.387213916,41.465250914],[-71.387216965,41.465140432],[-71.387192112,41.465094942],[-71.387043717,41.465072543],[-71.387001356,41.465041947],[-71.387053857,41.464940616],[-71.387021883,41.464916571],[-71.386900957,41.464903828],[-71.386793512,41.464883985],[-71.386632339,41.464883689],[-71.38651474,41.464845814],[-71.386443562,41.464776859],[-71.386412738,41.46473827],[-71.386397903,41.464719685],[-71.386248633,41.464693671],[-71.386158865,41.464649649],[-71.385997832,41.464639335],[-71.385826142,41.46463745],[-71.385662318,41.464623496],[-71.385524246,41.46460982],[-71.385497046,41.464585825],[-71.385503963,41.464473242],[-71.385497165,41.46437988],[-71.385422797,41.464327433],[-71.385268252,41.464276233],[-71.385114741,41.464225056],[-71.384955091,41.464241249],[-71.384782561,41.464233666],[-71.384640696,41.464268012],[-71.38450299,41.464237091],[-71.384349014,41.464208166],[-71.384182435,41.464188421],[-71.384095158,41.464163817],[-71.384006038,41.464184401],[-71.38390233,41.464269374],[-71.383782753,41.464336239],[-71.383666435,41.464433274],[-71.383645192,41.464496191],[-71.383613898,41.464585559],[-71.383559506,41.464686887],[-71.383552038,41.464697491],[-71.383525397,41.464735337],[-71.383490861,41.464784427],[-71.383405036,41.464882544],[-71.383365371,41.464960354],[-71.383351624,41.46508146],[-71.383296796,41.465204995],[-71.38321178,41.465309562],[-71.383110656,41.465410362],[-71.383080538,41.465487518],[-71.383123839,41.465518849],[-71.38306733,41.465630169],[-71.383009003,41.465737187],[-71.382955519,41.465839957],[-71.382877255,41.465942427],[-71.382774518,41.466025981],[-71.382724796,41.466082168],[-71.38274023,41.466122503],[-71.382786794,41.466131607],[-71.382906646,41.466100603],[-71.382933575,41.46613967],[-71.382893267,41.466202362],[-71.382775467,41.466275723],[-71.382714112,41.466341778],[-71.382707058,41.466460101],[-71.382625903,41.466563277],[-71.38260469,41.466675707],[-71.382566031,41.466801591],[-71.382498793,41.466875507],[-71.382469848,41.466891692],[-71.382437576,41.466982476],[-71.382419152,41.467049009],[-71.382333727,41.467175805],[-71.382234787,41.467260118],[-71.382120618,41.467342127],[-71.381999888,41.467420471],[-71.381960083,41.467455902],[-71.381985979,41.467511823],[-71.381992157,41.467525139],[-71.382048103,41.467592481],[-71.382005709,41.467664524],[-71.381889385,41.467760138],[-71.381871432,41.467851761],[-71.381869151,41.467969425],[-71.381872615,41.468087873],[-71.381875108,41.468104525],[-71.381889559,41.468200731],[-71.381890334,41.468309799],[-71.381842224,41.468381036],[-71.381820238,41.468432471],[-71.381731951,41.46850975],[-71.381712721,41.468566951],[-71.381761139,41.468677967],[-71.381777984,41.468744856],[-71.381730778,41.468820416],[-71.381652778,41.468858323],[-71.381656481,41.468912186],[-71.381725843,41.468976088],[-71.381724532,41.468994726],[-71.381667678,41.469024993],[-71.381605109,41.469054431],[-71.381595564,41.469103111],[-71.381649928,41.469154648],[-71.381706444,41.469193311],[-71.381742587,41.469299191],[-71.381720499,41.469406589],[-71.381704666,41.469535606],[-71.381705408,41.469646069],[-71.381666072,41.469707366],[-71.381606461,41.469731844],[-71.381566454,41.469777338],[-71.38158256,41.469832768],[-71.381693777,41.469905724],[-71.381712847,41.469953291],[-71.381680568,41.470046224],[-71.381721083,41.470072498],[-71.381754337,41.470078593],[-71.381752924,41.470153216],[-71.381778343,41.470271184],[-71.381711505,41.470373779],[-71.381602841,41.470468052],[-71.381528269,41.470526088],[-71.381513881,41.47062924],[-71.381553756,41.470689955],[-71.381645644,41.470674475],[-71.38176853,41.470634876],[-71.381817618,41.470611714],[-71.381854366,41.470636543],[-71.381802757,41.470691241],[-71.381773944,41.470751176],[-71.381757336,41.470771102],[-71.381643325,41.470795707],[-71.381643732,41.470822969],[-71.38173118,41.470841172],[-71.38174974,41.470918149],[-71.381715211,41.471028233],[-71.381767395,41.471091957],[-71.381861606,41.471154009],[-71.381850143,41.471204105],[-71.381797389,41.471319797],[-71.381739022,41.471428209],[-71.381702109,41.471511053],[-71.381760206,41.471567647],[-71.381849912,41.471615972],[-71.381936388,41.471634128],[-71.381947687,41.471691681],[-71.38188831,41.471803684],[-71.381858657,41.471907415],[-71.38192221,41.472024346],[-71.381933372,41.472139989],[-71.381971033,41.472215041],[-71.382110096,41.472277551],[-71.382182722,41.472321375],[-71.382217925,41.472427254],[-71.382215377,41.472558526],[-71.38223098,41.472690754],[-71.38227449,41.472810317],[-71.38228357,41.47293458],[-71.382304385,41.473043851],[-71.382354686,41.473158505],[-71.382427987,41.473216006],[-71.382528522,41.473196281],[-71.382581009,41.473245642],[-71.38260236,41.473377922],[-71.382635587,41.473484462],[-71.382635924,41.473617932],[-71.382654991,41.473718579],[-71.382699243,41.473798716],[-71.382680588,41.473924825],[-71.382693772,41.474033311],[-71.382745487,41.474123586],[-71.382841783,41.474178435],[-71.382968548,41.474234345],[-71.383079205,41.474336],[-71.383122654,41.474406804],[-71.383127061,41.474526694],[-71.383197707,41.474574107],[-71.383259205,41.474652247],[-71.383212944,41.474775905],[-71.383131781,41.474878349],[-71.383089417,41.474999174],[-71.38311084,41.475075468],[-71.383232593,41.47509542],[-71.383290229,41.475174288],[-71.383347927,41.475201448],[-71.383334615,41.475248661],[-71.383294942,41.475327179],[-71.383363707,41.475423349],[-71.383412296,41.475527915],[-71.383491386,41.475632831],[-71.38353244,41.475649111],[-71.383599354,41.475675593],[-71.38367902,41.475798486],[-71.383744323,41.475926922],[-71.383798093,41.476059508],[-71.3838368,41.476181216],[-71.383890706,41.476306644],[-71.38395403,41.476436496],[-71.384025254,41.476553525],[-71.384095568,41.476669799],[-71.384153477,41.476784527],[-71.384166122,41.476872933],[-71.384109536,41.476988576],[-71.384108028,41.477066767],[-71.384172799,41.477170799],[-71.384294625,41.477237405],[-71.384292609,41.477293343],[-71.384190798,41.477377631],[-71.38416101,41.477438344],[-71.384167404,41.477553204],[-71.384167072,41.477671625],[-71.384255042,41.477760792],[-71.384265401,41.477818321],[-71.384149364,41.477898867],[-71.3840689,41.477965498],[-71.38412755,41.478091685],[-71.384172308,41.47814671],[-71.38423539,41.478140919],[-71.384305636,41.478107965],[-71.384348811,41.478146453],[-71.384385502,41.478274585],[-71.384446944,41.478404412],[-71.384496113,41.478527662],[-71.384542889,41.478627903],[-71.384475173,41.478725467],[-71.384502853,41.478824774],[-71.384580365,41.478862221],[-71.38463992,41.478890845],[-71.384629937,41.478963951],[-71.384575403,41.479070997],[-71.384590235,41.479144356],[-71.384674572,41.479174698],[-71.384686546,41.479247299],[-71.384656894,41.479351008],[-71.384699435,41.479473451],[-71.384664941,41.479580723],[-71.38469051,41.47968794],[-71.384708103,41.479816556],[-71.384680097,41.479934652],[-71.384582016,41.480022603],[-71.384583833,41.480078591],[-71.384667736,41.480182803],[-71.384703556,41.480305902],[-71.384711667,41.480430849],[-71.384710057,41.480463849],[-71.384677511,41.480570414],[-71.384697827,41.480655305],[-71.384754293,41.480694698],[-71.384717578,41.48081912],[-71.384664891,41.480929781],[-71.384712579,41.481031463],[-71.384685214,41.48116534],[-71.384662963,41.481279943],[-71.384648946,41.481415411],[-71.384685875,41.481530621],[-71.384676602,41.48166614],[-71.384651422,41.481785702],[-71.384650217,41.48189909],[-71.384680993,41.481985524],[-71.384635708,41.482106278],[-71.384620985,41.482228115],[-71.384645975,41.482318797],[-71.384703414,41.4823589],[-71.38466875,41.48247548],[-71.384671175,41.482548712],[-71.384716848,41.482655378],[-71.384733402,41.482787606],[-71.384745379,41.482910453],[-71.384742965,41.483037471],[-71.3847725,41.48313822],[-71.384870531,41.483252669],[-71.384936788,41.483380373],[-71.384986666,41.483517277],[-71.385016871,41.483635293],[-71.385089991,41.483751592],[-71.385153423,41.483877875],[-71.385188537,41.483988738],[-71.385234885,41.484110545],[-71.385278575,41.484222217],[-71.385284432,41.484315555],[-71.385207934,41.484423814],[-71.385166107,41.484514475],[-71.385177886,41.484647362],[-71.385226995,41.484772739],[-71.385281653,41.484908252],[-71.385305634,41.485003255],[-71.385290139,41.485115006],[-71.385278377,41.485231105],[-71.385292845,41.485322417],[-71.385385531,41.48541742],[-71.385506706,41.485517757],[-71.385631278,41.485589441],[-71.385758602,41.48566975],[-71.385857983,41.485763364],[-71.38594304,41.48585685],[-71.386035096,41.485982726],[-71.386115685,41.48610914],[-71.38620249,41.486212004],[-71.386269154,41.486318918],[-71.386318468,41.486433546],[-71.38635355,41.48654729],[-71.386355984,41.486668595],[-71.38635337,41.486807048],[-71.386339226,41.486946838],[-71.386317745,41.487073631],[-71.386284598,41.487209584],[-71.386254608,41.487332],[-71.386225863,41.487437883],[-71.386175626,41.487519845],[-71.386164766,41.487538382],[-71.386092065,41.487648109],[-71.386022392,41.487747822],[-71.385949625,41.487859698],[-71.38585819,41.487950562],[-71.385748561,41.488044106],[-71.385629448,41.48813469],[-71.385505691,41.488219414],[-71.385386916,41.488290628],[-71.38524365,41.488347912],[-71.385102166,41.488411692],[-71.384946393,41.488472439],[-71.384797179,41.488539002],[-71.384651221,41.488586928],[-71.384487269,41.488628204],[-71.384314711,41.488668694],[-71.384244726,41.488685158],[-71.384070419,41.488717001],[-71.383929609,41.488743456],[-71.383772486,41.488775499],[-71.383595351,41.488806606],[-71.383508866,41.488813974],[-71.3834013,41.48882315],[-71.383209233,41.488836128],[-71.383006739,41.488845437],[-71.382808148,41.48884974],[-71.382615374,41.488849795],[-71.382413084,41.488847598],[-71.382218491,41.48884406],[-71.382013511,41.488832507],[-71.381808766,41.488808763],[-71.381639496,41.488779682],[-71.381465086,41.488767015],[-71.381319295,41.488755384],[-71.381169068,41.488724354],[-71.381102876,41.488695653],[-71.381028822,41.488575005],[-71.380957289,41.488473045],[-71.380850511,41.488367824],[-71.380749014,41.48828493],[-71.380640888,41.488201959],[-71.380600096,41.488088871],[-71.380534583,41.487971914],[-71.380428447,41.487882473],[-71.380335928,41.48778104],[-71.380261705,41.487671141],[-71.380204671,41.487558561],[-71.380155167,41.487453285],[-71.380076812,41.487357743],[-71.379972927,41.487251838],[-71.379884007,41.487162575],[-71.379799836,41.487071282],[-71.379705201,41.486980549],[-71.379626104,41.48687563],[-71.379585046,41.486776171],[-71.379509745,41.486674161],[-71.379429374,41.486584334],[-71.379343586,41.486480049],[-71.379270038,41.486384512],[-71.379191115,41.486268867],[-71.379136938,41.486159217],[-71.379107548,41.486049799],[-71.379103885,41.485991636],[-71.379033738,41.485817933],[-71.379039828,41.485699633],[-71.379073597,41.48558015],[-71.379064887,41.48548818],[-71.379025004,41.485379391],[-71.378995886,41.485254925],[-71.378979141,41.485133513],[-71.378964145,41.485019948],[-71.378951101,41.484903571],[-71.378952485,41.484780875],[-71.378976903,41.484652714],[-71.378957336,41.48452764],[-71.378901344,41.48441362],[-71.378870912,41.484309278],[-71.378873574,41.484170093],[-71.378827001,41.484061229],[-71.378760252,41.483958586],[-71.378683147,41.483848683],[-71.378614914,41.483726668],[-71.378590269,41.483618032],[-71.378647072,41.483492376],[-71.378712818,41.483398358],[-71.378685851,41.483360754],[-71.378561595,41.48332211],[-71.378469862,41.48322852],[-71.378365584,41.483142716],[-71.37831716,41.483081213],[-71.37838072,41.483001555],[-71.37826262,41.482939978],[-71.378207608,41.482872636],[-71.378207809,41.482862574],[-71.378149875,41.482747865],[-71.378087381,41.482664369],[-71.378070787,41.482642236],[-71.378051255,41.482516453],[-71.378052802,41.482388725],[-71.378054894,41.482278242],[-71.378057049,41.482167028],[-71.378040577,41.482031254],[-71.378039272,41.481899932],[-71.378025828,41.481754808],[-71.377997789,41.481624648],[-71.377959153,41.481501474],[-71.377924925,41.481395641],[-71.377898433,41.481284122],[-71.377964515,41.481172174],[-71.378051178,41.481081266],[-71.378108684,41.480969241],[-71.378169015,41.480858683],[-71.378212298,41.480741451],[-71.378270747,41.480628695],[-71.378336123,41.480503848],[-71.378405162,41.480387627],[-71.378395884,41.480323672],[-71.378254821,41.480314947],[-71.378224693,41.48029312],[-71.378186225,41.480259666],[-71.378097585,41.480254403],[-71.3780498,41.480210145],[-71.377978348,41.480104569],[-71.377978051,41.479971099],[-71.377982192,41.479854924],[-71.37802171,41.479734052],[-71.378064117,41.479613252],[-71.378087324,41.479497965],[-71.3781374,41.479374383],[-71.378176008,41.479252069],[-71.378164611,41.47919957],[-71.378097762,41.47920245],[-71.378023041,41.479218837],[-71.377975529,41.479208289],[-71.377864497,41.47912744],[-71.377791766,41.479088598],[-71.377723809,41.479098611],[-71.377679122,41.479089553],[-71.377653703,41.479022517],[-71.377625328,41.478910286],[-71.377543147,41.47881897],[-71.377442174,41.478759035],[-71.377291297,41.478715078],[-71.37716147,41.478668421],[-71.37713141,41.478643712],[-71.37712876,41.478533156],[-71.377098638,41.478461106],[-71.377049444,41.478390934],[-71.377015177,41.478387695],[-71.376950252,41.478338912],[-71.376916721,41.478396692],[-71.376871726,41.478502395],[-71.37679146,41.478508713],[-71.376667585,41.47845065],[-71.376551719,41.47837119],[-71.376543381,41.478310118],[-71.376623685,41.478203332],[-71.376667945,41.478084684],[-71.376652583,41.477990534],[-71.376591556,41.477938897],[-71.376541593,41.477906093],[-71.376594862,41.477815516],[-71.376634343,41.47774704],[-71.376579068,41.477644569],[-71.376554497,41.477532388],[-71.37658416,41.477429344],[-71.376543544,41.477342966],[-71.376534669,41.47732402],[-71.376507169,41.477216844],[-71.376488381,41.477101833],[-71.376527831,41.476985284],[-71.376544267,41.4769778],[-71.376623128,41.476941796],[-71.376791188,41.476934315],[-71.376925655,41.476889153],[-71.37700757,41.476797463],[-71.377023145,41.476682123],[-71.377014983,41.476560011],[-71.377016535,41.476478961],[-71.377150466,41.476411524],[-71.37725689,41.476335914],[-71.377302794,41.476230898],[-71.377296142,41.476130354],[-71.377184442,41.476084655],[-71.377022103,41.476091503],[-71.376958555,41.476070737],[-71.376897725,41.47610882],[-71.376818337,41.476118706],[-71.376706904,41.476156985],[-71.376545862,41.476153268],[-71.376403975,41.476183098],[-71.376297313,41.476270919],[-71.376216679,41.476296584],[-71.376173568,41.47635497],[-71.376101079,41.476303229],[-71.375987333,41.476214439],[-71.375950555,41.476141581],[-71.375967341,41.47601403],[-71.375960018,41.475899123],[-71.375910566,41.47579094],[-71.375866761,41.475687131],[-71.375879514,41.475569616],[-71.375957094,41.475454915],[-71.376042807,41.475364716],[-71.376139216,41.475263139],[-71.376251324,41.475189024],[-71.376369918,41.475125756],[-71.376442419,41.47502676],[-71.376500356,41.474990802],[-71.376522044,41.474955148],[-71.376517036,41.474918528],[-71.376440786,41.474813632],[-71.376420819,41.474711519],[-71.376460369,41.474589961],[-71.376445007,41.474544571],[-71.376284289,41.47451629],[-71.376133183,41.474486648],[-71.376020679,41.474481839],[-71.375990524,41.474412624],[-71.375927486,41.474317234],[-71.375797001,41.474254086],[-71.375648116,41.474208002],[-71.375555621,41.47415601],[-71.375591397,41.474132012],[-71.375715771,41.47411472],[-71.375732553,41.474084755],[-71.375704116,41.473976091],[-71.375638286,41.473925866],[-71.375589364,41.473938986],[-71.375521439,41.473998512],[-71.375404669,41.473967123],[-71.375301071,41.473996833],[-71.375271005,41.47407186],[-71.375269693,41.474089766],[-71.375242895,41.474093762],[-71.375099959,41.474085785],[-71.375045348,41.474147589],[-71.375093858,41.474254331],[-71.375081047,41.474275014],[-71.375010337,41.474279992],[-71.37488182,41.474363968],[-71.374755762,41.474418559],[-71.37468744,41.47439916],[-71.374615155,41.474337377],[-71.374556914,41.474389115],[-71.374532838,41.474401049],[-71.374454768,41.474343515],[-71.374340708,41.474420485],[-71.374232228,41.474504711],[-71.374100079,41.474579329],[-71.374011608,41.474663737],[-71.373873777,41.474735444],[-71.373816952,41.474762094],[-71.373801784,41.474759058],[-71.373769242,41.47471422],[-71.373726481,41.474654917],[-71.373641374,41.474666167],[-71.373601121,41.474724579],[-71.373589444,41.474834251],[-71.373567584,41.474831848],[-71.373500414,41.474752186],[-71.373437718,41.474638842],[-71.373375892,41.474578603],[-71.373348213,41.474629252],[-71.373325073,41.474690725],[-71.373262029,41.474694337],[-71.373193839,41.474716583],[-71.373112827,41.474811084],[-71.37303306,41.474891339],[-71.372930331,41.474972757],[-71.372856012,41.475065916],[-71.372766352,41.475166103],[-71.372723375,41.475263962],[-71.372744409,41.475361777],[-71.372782255,41.475477725],[-71.372748515,41.475595034],[-71.372790704,41.475682307],[-71.372853504,41.47574257],[-71.372859007,41.475851712],[-71.372859562,41.475972261],[-71.372931148,41.476018286],[-71.373014735,41.476038573],[-71.373032485,41.476058832],[-71.373017485,41.476093853],[-71.372922155,41.476138687],[-71.372876278,41.476241529],[-71.372884913,41.476288994],[-71.372966515,41.476313578],[-71.372971585,41.476396167],[-71.373003749,41.476509867],[-71.373030913,41.476536723],[-71.373066754,41.47655865],[-71.37303951,41.47663512],[-71.373011696,41.47669151],[-71.372933106,41.47675953],[-71.372866017,41.476824109],[-71.37276813,41.476853892],[-71.372732221,41.47683558],[-71.372667305,41.476737967],[-71.372576253,41.476709027],[-71.372520793,41.47681387],[-71.372394622,41.47687564],[-71.372321843,41.476988217],[-71.37225105,41.477095811],[-71.372204898,41.477214432],[-71.372186733,41.477312524],[-71.372152622,41.477400422],[-71.372190512,41.477463265],[-71.3723018,41.477531953],[-71.37233196,41.477550923],[-71.372188913,41.477596001],[-71.372035644,41.477627369],[-71.371903254,41.477665369],[-71.371837321,41.477620881],[-71.371798817,41.47763838],[-71.371790099,41.477694996],[-71.371724965,41.477707891],[-71.371611212,41.477717415],[-71.371582691,41.477761591],[-71.371582946,41.47784772],[-71.371540306,41.477880994],[-71.371394778,41.477857138],[-71.37126697,41.477853611],[-71.371247236,41.477790947],[-71.371199659,41.477783278],[-71.371148339,41.477822878],[-71.371105047,41.477939375],[-71.37108739,41.477964306],[-71.371070012,41.477925339],[-71.371032033,41.477815863],[-71.370967381,41.477754179],[-71.370942725,41.477796964],[-71.370909992,41.477909974],[-71.370878638,41.478002197],[-71.370803379,41.478044422],[-71.370739456,41.478044441],[-71.370700501,41.477937114],[-71.370648893,41.477892048],[-71.370602086,41.477894397],[-71.370579918,41.477955183],[-71.370563466,41.478015976],[-71.370531787,41.478027124],[-71.370411048,41.477955473],[-71.370339298,41.477915233],[-71.370207417,41.47792597],[-71.370124899,41.477948747],[-71.369988353,41.477904202],[-71.369860682,41.477847569],[-71.369783182,41.47780867],[-71.369699484,41.477843658],[-71.369549345,41.477859932],[-71.369409288,41.477898583],[-71.369307268,41.477895311],[-71.36926877,41.477864027],[-71.369276184,41.47777658],[-71.369187423,41.477727515],[-71.369113078,41.477723108],[-71.369074328,41.477802354],[-71.369065778,41.477850326],[-71.369023983,41.477840536],[-71.368981559,41.477765451],[-71.368830491,41.477730081],[-71.368768694,41.477671258],[-71.368637856,41.477677764],[-71.368586402,41.47772237],[-71.368547879,41.477839649],[-71.36847103,41.477915559],[-71.368322876,41.477927579],[-71.368208052,41.477894766],[-71.368197331,41.477858025],[-71.368222862,41.477819564],[-71.368178582,41.477791108],[-71.368013852,41.477774247],[-71.367917287,41.477735166],[-71.367861669,41.477748892],[-71.3678018,41.477834335],[-71.367750557,41.477820165],[-71.367652382,41.477765233],[-71.367508683,41.477695496],[-71.367415917,41.477657883],[-71.367251891,41.477653966],[-71.367102329,41.477640826],[-71.367036707,41.477579847],[-71.367032317,41.477510889],[-71.367103187,41.47739973],[-71.367204523,41.477291055],[-71.367262749,41.477191225],[-71.367191873,41.477156701],[-71.367114431,41.477165211],[-71.367068317,41.477230726],[-71.367006996,41.477341987],[-71.366907826,41.477387521],[-71.366849858,41.477375424],[-71.366845866,41.477335191],[-71.366873357,41.477245824],[-71.366842462,41.477215325],[-71.366791756,41.477221235],[-71.366696351,41.477269701],[-71.366568381,41.47722738],[-71.36649194,41.477281791],[-71.366483821,41.477355606],[-71.366400706,41.47746094],[-71.366310144,41.477505843],[-71.366253185,41.477490889],[-71.366268204,41.477404206],[-71.366176666,41.477302007],[-71.366124575,41.477183045],[-71.366079364,41.477105052],[-71.366078947,41.477026836],[-71.365946406,41.476974469],[-71.365916712,41.476981295],[-71.365888089,41.47702906],[-71.365884527,41.477016112],[-71.365893623,41.476940857],[-71.365838118,41.476900038],[-71.365722117,41.476878702],[-71.365678838,41.476896147],[-71.365609586,41.476826495],[-71.365537703,41.476794164],[-71.365480903,41.47682081],[-71.365368475,41.476909941],[-71.36526884,41.476930407],[-71.36518176,41.476894262],[-71.36511143,41.47683179],[-71.364966716,41.476813713],[-71.364843126,41.47674203],[-71.364731833,41.476724289],[-71.364608062,41.476710719],[-71.364473837,41.476694209],[-71.364372183,41.476720344],[-71.364302295,41.476781302],[-71.364238879,41.476903307],[-71.364188146,41.477009662],[-71.364143538,41.477051964],[-71.364139118,41.477027763],[-71.364128853,41.476919301],[-71.364106117,41.47681215],[-71.364049843,41.47676129],[-71.363936536,41.47684829],[-71.363813753,41.476929471],[-71.363664541,41.476997447],[-71.363524675,41.477074857],[-71.363430503,41.477157786],[-71.363367995,41.47728121],[-71.363376985,41.477358842],[-71.363388926,41.477363796],[-71.363641277,41.477476684],[-71.363741069,41.477526957],[-71.363783075,41.477580797],[-71.3637975,41.477618916],[-71.36379665,41.477661956],[-71.363766431,41.47774487],[-71.363651586,41.477810325],[-71.363535553,41.47789085],[-71.363419353,41.477978556],[-71.36330928,41.478044817],[-71.36324608,41.478105805],[-71.363105782,41.478155952],[-71.362958585,41.478218189],[-71.362883407,41.478306378],[-71.362864233,41.478327991],[-71.362736604,41.478354619],[-71.362614351,41.478384273],[-71.362580807,41.478399121],[-71.362481059,41.47848632],[-71.362502489,41.47856264],[-71.362559524,41.478670906],[-71.362568704,41.478787943],[-71.362612661,41.478882449],[-71.362585709,41.478943869],[-71.36248212,41.479020222],[-71.362385721,41.479118929],[-71.362265117,41.47918792],[-71.362141514,41.47916504],[-71.361987342,41.479144683],[-71.361860834,41.479172685],[-71.361719214,41.479242199],[-71.361633318,41.479292182],[-71.361604652,41.479343513],[-71.361646039,41.479373408],[-71.361743575,41.479413205],[-71.36173391,41.47946767],[-71.36166044,41.479565877],[-71.361580638,41.479595855],[-71.361426296,41.479584097],[-71.361285477,41.479562475],[-71.361138882,41.479496982],[-71.36102505,41.479413208],[-71.360950562,41.479318413],[-71.360904963,41.479210961],[-71.3608961,41.479174266],[-71.360994178,41.479087845],[-71.361045539,41.479046763],[-71.361071728,41.47907289],[-71.361137362,41.479083649],[-71.361197429,41.479038371],[-71.361200133,41.478996796],[-71.361165698,41.478944771],[-71.361250108,41.478864279],[-71.361304186,41.478817963],[-71.361358332,41.478768058],[-71.361437895,41.478707319],[-71.361512203,41.478700296],[-71.361535817,41.478664647],[-71.361452689,41.478571901],[-71.361475412,41.478483146],[-71.361547373,41.478364858],[-71.361607835,41.478247813],[-71.361603996,41.478150908],[-71.361595761,41.478033849],[-71.361578843,41.477923869],[-71.361505725,41.477857778],[-71.361410709,41.477835914],[-71.361319952,41.477841363],[-71.361444331,41.477727231],[-71.361451072,41.477674889],[-71.361356716,41.477571243],[-71.361286785,41.477536739],[-71.361141793,41.477535146],[-71.361017067,41.477569667],[-71.360909747,41.477641669],[-71.360755328,41.477682282],[-71.360686667,41.477779145],[-71.360615151,41.477873787],[-71.360558559,41.477986559],[-71.360507784,41.478095061],[-71.36050183,41.478205494],[-71.360480577,41.478317211],[-71.360436359,41.478430822],[-71.360372573,41.478522659],[-71.360235868,41.478583602],[-71.36020287,41.478612652],[-71.360235682,41.478641714],[-71.360348637,41.478722606],[-71.360350572,41.478770018],[-71.360245732,41.478861393],[-71.360145991,41.478886841],[-71.360002178,41.478872349],[-71.359856652,41.478848501],[-71.359787132,41.478891527],[-71.359716384,41.478995499],[-71.359667536,41.479055954],[-71.359631974,41.479018998],[-71.359598102,41.479044434],[-71.359553933,41.479106381],[-71.359413164,41.479132807],[-71.359261977,41.479153411],[-71.359151312,41.479152887],[-71.359026273,41.479105598],[-71.358945198,41.479007089],[-71.358859096,41.478968813],[-71.358828561,41.478969919],[-71.358791868,41.478991761],[-71.35876695,41.478997242],[-71.358679187,41.478897947],[-71.358654748,41.478780753],[-71.358725806,41.478660224],[-71.358812764,41.478555723],[-71.358940337,41.478471718],[-71.359028935,41.47838229],[-71.359109595,41.478307124],[-71.359200266,41.478257172],[-71.359219358,41.478231833],[-71.359320823,41.478182695],[-71.359409021,41.478151173],[-71.35945983,41.478112059],[-71.359498141,41.478072792],[-71.359511567,41.477995462],[-71.359531321,41.477917088],[-71.359543024,41.477806708],[-71.359526287,41.477783543],[-71.359450726,41.477793491],[-71.359384275,41.477823621],[-71.359295654,41.477769539],[-71.359311041,41.477713755],[-71.35939709,41.477607057],[-71.35939519,41.477557518],[-71.359370594,41.477498415],[-71.359420822,41.477418591],[-71.359470775,41.477353107],[-71.35943263,41.477301763],[-71.359338379,41.477292088],[-71.359257343,41.477190743],[-71.359178056,41.477095872],[-71.359134859,41.477060211],[-71.359047096,41.477059966],[-71.358962072,41.477115001],[-71.358928684,41.47721225],[-71.358926527,41.477323464],[-71.358892145,41.477374033],[-71.358863601,41.47736867],[-71.358806591,41.477308497],[-71.35870646,41.477206214],[-71.358660525,41.477115272],[-71.358530612,41.477073649],[-71.358376292,41.477110691],[-71.358235888,41.477166596],[-71.358220297,41.477232396],[-71.358206913,41.47733127],[-71.358161611,41.477355182],[-71.35808316,41.477365811],[-71.357993412,41.477466718],[-71.35790579,41.477554705],[-71.357848028,41.47763015],[-71.357787871,41.477729927],[-71.357727798,41.477777376],[-71.357664372,41.477897915],[-71.35761544,41.478010032],[-71.357576933,41.478124426],[-71.357509516,41.47820624],[-71.357495304,41.478280093],[-71.357494385,41.478283522],[-71.357290211,41.478295642],[-71.357078989,41.478263155],[-71.356856466,41.478958197],[-71.35704625,41.478963167],[-71.357064256,41.47882343],[-71.357185102,41.47884055],[-71.357787003,41.47885081],[-71.357852775,41.478951245],[-71.357837237,41.479061597],[-71.35780162,41.479175308],[-71.357749023,41.47928024],[-71.357705005,41.479383786],[-71.357691208,41.479504157],[-71.357671474,41.479586465],[-71.357577085,41.479680161],[-71.357439534,41.479736022],[-71.357265747,41.479743468],[-71.357112145,41.479741013],[-71.356989687,41.479709529],[-71.356902868,41.47961028],[-71.35692779,41.479506504],[-71.356900489,41.479488974],[-71.356765132,41.479432225],[-71.356658198,41.479436048],[-71.356575137,41.479536321],[-71.356496046,41.479628755],[-71.356457816,41.479630468],[-71.356436512,41.479499625],[-71.356391844,41.479441731],[-71.356280137,41.479444793],[-71.356336444,41.479396631],[-71.35619482,41.479368506],[-71.356135776,41.479362121],[-71.356042496,41.479448636],[-71.355901008,41.479510208],[-71.355749883,41.479529389],[-71.355606533,41.479539249],[-71.355470898,41.479594447],[-71.355317267,41.479645849],[-71.355192893,41.479710483],[-71.355072845,41.479798885],[-71.354962279,41.479890203],[-71.354893543,41.479988457],[-71.354855714,41.480069118],[-71.35487524,41.480095215],[-71.354804755,41.480186972],[-71.35473497,41.480291674],[-71.354690589,41.480364391],[-71.354734107,41.480433056],[-71.354827945,41.48046565],[-71.354813669,41.480512126],[-71.354789981,41.48055205],[-71.354822823,41.480675842],[-71.35487909,41.480728125],[-71.354926672,41.480733697],[-71.355007972,41.480675023],[-71.355144395,41.480676522],[-71.355160052,41.480706135],[-71.35519038,41.480716533],[-71.355306541,41.480681185],[-71.355405191,41.480710995],[-71.35550906,41.480814749],[-71.355594201,41.48090254],[-71.355706079,41.480987711],[-71.355818059,41.481068629],[-71.355915476,41.481161534],[-71.355914224,41.481273459],[-71.355947492,41.481329829],[-71.355997779,41.481295198],[-71.356074301,41.481237913],[-71.356152277,41.481251687],[-71.35623138,41.481306377],[-71.356368049,41.481293535],[-71.356425948,41.481309959],[-71.356472094,41.481291126],[-71.356481832,41.481233117],[-71.356484758,41.481230262],[-71.356640525,41.481218358],[-71.356747922,41.481143478],[-71.35686965,41.481065871],[-71.356997722,41.481007026],[-71.357120897,41.481004091],[-71.357274286,41.481063172],[-71.35743258,41.481118782],[-71.357582938,41.481187853],[-71.357730709,41.481244022],[-71.357883221,41.481301706],[-71.358009069,41.4813562],[-71.358149481,41.481397906],[-71.358331658,41.481450182],[-71.358472808,41.48150266],[-71.358600673,41.48155288],[-71.358766164,41.4816286],[-71.35888515,41.481692347],[-71.359027496,41.481782904],[-71.359160197,41.481875508],[-71.359272317,41.481950636],[-71.359358822,41.482015464],[-71.359436627,41.482038543],[-71.359445252,41.482086718],[-71.359193885,41.482399707],[-71.359306519,41.482448284],[-71.359503175,41.482247428],[-71.359648625,41.482323626],[-71.359771409,41.482390304],[-71.359893892,41.482469858],[-71.359956324,41.48252839],[-71.359984999,41.48251635],[-71.360152541,41.482446137],[-71.360181367,41.482476772],[-71.360059959,41.482533776],[-71.359990518,41.48256635],[-71.359998404,41.482590122],[-71.360118999,41.482671137],[-71.360253755,41.482757246],[-71.360356963,41.482848097],[-71.360442718,41.482951665],[-71.360538858,41.483062496],[-71.360618825,41.483171019],[-71.360679385,41.483295117],[-71.360660253,41.483395379],[-71.360584519,41.48351149],[-71.360495399,41.483629643],[-71.360408506,41.483729891],[-71.360316203,41.483814215],[-71.360237646,41.483927464],[-71.360135091,41.483998808],[-71.3600523,41.484086162],[-71.360059409,41.484160864],[-71.360104937,41.484274035],[-71.360095081,41.484388007],[-71.360030991,41.48449137],[-71.360057434,41.48455553],[-71.360159978,41.484631263],[-71.360279536,41.484715112],[-71.360392194,41.484811807],[-71.360514513,41.48489925],[-71.360619435,41.485000874],[-71.360711284,41.485086565],[-71.360802191,41.485171523],[-71.360862152,41.485278376],[-71.360858822,41.485398897],[-71.360838234,41.485525686],[-71.360789258,41.485615323],[-71.360775885,41.485639801],[-71.360697461,41.4857466],[-71.36063107,41.485872877],[-71.360583952,41.485989319],[-71.36049396,41.486100976],[-71.36033733,41.486155971],[-71.36029134,41.486214257],[-71.360300429,41.486287566],[-71.360308255,41.4863257],[-71.360412716,41.48640219],[-71.36053981,41.486491126],[-71.360683079,41.486582413],[-71.36083143,41.486658659],[-71.360961792,41.486727564],[-71.361119166,41.486780263],[-71.361279024,41.486852337],[-71.36140687,41.486903262],[-71.361546951,41.48696438],[-71.361680949,41.487040469],[-71.361794966,41.48711562],[-71.36192374,41.487216791],[-71.362073771,41.48730525],[-71.362197516,41.487369068],[-71.362313589,41.487436354],[-71.362418895,41.487517874],[-71.362455795,41.487557849],[-71.362501162,41.487607028],[-71.362543858,41.487667776],[-71.362514834,41.487786574],[-71.362526912,41.487900092],[-71.36261459,41.488005148],[-71.362686197,41.488101356],[-71.362769271,41.488197715],[-71.362791387,41.488238839],[-71.362868509,41.488345185],[-71.362930941,41.488422628],[-71.362923349,41.488517987],[-71.36290028,41.488625357],[-71.362931013,41.488701473],[-71.367050488,41.488680476],[-71.367055947,41.488806515],[-71.374298491,41.488664476],[-71.375793048,41.488668774],[-71.378491045,41.488654231],[-71.380467548,41.488725413],[-71.380500493,41.488965475],[-71.378491888,41.492666741],[-71.375034564,41.496150497],[-71.375096625,41.498090086],[-71.375232066,41.49808801],[-71.375356222,41.50151839],[-71.375377523,41.503853547],[-71.374717492,41.503869478],[-71.376348493,41.506038479],[-71.376294492,41.506051479],[-71.376272492,41.506111479],[-71.376286493,41.506223478],[-71.376265493,41.506337479],[-71.376198492,41.506396479],[-71.376057493,41.506441479],[-71.375898493,41.506464479],[-71.375753492,41.506488479],[-71.375613492,41.506524479],[-71.375475492,41.506569479],[-71.375206492,41.506697479],[-71.375077492,41.506755479],[-71.374945492,41.506819479],[-71.374850492,41.506897479],[-71.374748492,41.506891479],[-71.374748492,41.506892146],[-71.374850545,41.506897799]]],[[[-71.385434498,41.554243488],[-71.385340498,41.554490488],[-71.385286498,41.554602488],[-71.385245498,41.554707488],[-71.385201498,41.554833488],[-71.385158498,41.554941488],[-71.385099498,41.555072488],[-71.385029497,41.555182488],[-71.384979498,41.555287489],[-71.384900498,41.555527488],[-71.384818498,41.555767488],[-71.384785498,41.555883488],[-71.384797822,41.555988717],[-71.384786375,41.555883541],[-71.38481931,41.555768127],[-71.384862004,41.555644125],[-71.384901121,41.555528031],[-71.384945566,41.555394745],[-71.384980251,41.555287955],[-71.385029943,41.555183193],[-71.385099983,41.555073122],[-71.38515858,41.55494248],[-71.385202098,41.554833709],[-71.385245646,41.55470774],[-71.385287391,41.55460297],[-71.385340657,41.55449087],[-71.385385957,41.554372861],[-71.385434838,41.554243513],[-71.385468665,41.554122154],[-71.385487475,41.554004737],[-71.385492138,41.553881336],[-71.385539215,41.553773255],[-71.385588938,41.553649876],[-71.385640505,41.553516574],[-71.385684909,41.553405174],[-71.385733797,41.553271228],[-71.385796744,41.553158474],[-71.385842021,41.553052381],[-71.385857311,41.552927664],[-71.385842425,41.552874569],[-71.385802942,41.552750484],[-71.385755509,41.552628976],[-71.385711606,41.552508157],[-71.38570747,41.552384725],[-71.385736005,41.552259358],[-71.385754834,41.552130689],[-71.385754206,41.552020547],[-71.385752695,41.551910428],[-71.385728233,41.551797564],[-71.385693182,41.551664176],[-71.385671355,41.551542052],[-71.385667216,41.551419969],[-71.385687841,41.551274058],[-71.385689911,41.551136041],[-71.385669876,41.551016595],[-71.385639209,41.550900432],[-71.385602386,41.550788242],[-71.385563777,41.550670767],[-71.385516343,41.550550608],[-71.385482132,41.550442446],[-71.385467363,41.550323623],[-71.385463905,41.550299057],[-71.385461492,41.550182945],[-71.385459098,41.550072824],[-71.385463787,41.549952077],[-71.38547551,41.549847116],[-71.385479996,41.549806778],[-71.385490892,41.549687363],[-71.385509715,41.549561987],[-71.385535578,41.549449219],[-71.385559714,41.549314586],[-71.38557852,41.549198472],[-71.385601754,41.549074426],[-71.385651526,41.548938469],[-71.385715345,41.548829741],[-71.385756203,41.548724307],[-71.385777677,41.548596943],[-71.385749715,41.548466855],[-71.385731414,41.54834876],[-71.385718438,41.548231265],[-71.385712484,41.548120455],[-71.385733994,41.547989822],[-71.385752806,41.547869705],[-71.385792834,41.547751691],[-71.385844332,41.547619692],[-71.385906417,41.547509613],[-71.386001092,41.547424174],[-71.386109888,41.547342019],[-71.38619486,41.547251905],[-71.38627197,41.547131229],[-71.386312573,41.547066479],[-71.386345543,41.547013865],[-71.386376745,41.546893166],[-71.386401707,41.546789705],[-71.386366649,41.546660959],[-71.386370417,41.546560748],[-71.386415695,41.546450652],[-71.386452159,41.546332634],[-71.386451319,41.546308071],[-71.386437467,41.546186641],[-71.386447441,41.546071182],[-71.386468019,41.545949786],[-71.386486686,41.545894071],[-71.386462178,41.545791224],[-71.386475702,41.545664516],[-71.386479505,41.545544408],[-71.386455049,41.545428937],[-71.386425967,41.545399704],[-71.386352901,41.545280846],[-71.386295742,41.545169962],[-71.386265963,41.545052496],[-71.386222836,41.54499473],[-71.386164772,41.544879889],[-71.386108506,41.544763701],[-71.386047839,41.544658143],[-71.386001163,41.544593695],[-71.385974024,41.544480874],[-71.385965464,41.544363406],[-71.385977198,41.544251288],[-71.386008386,41.54412064],[-71.386077538,41.544005948],[-71.38615104,41.543909808],[-71.386178698,41.543778494],[-71.386214267,41.543666399],[-71.38627369,41.543560982],[-71.386328666,41.54345755],[-71.386322536,41.543429003],[-71.386291048,41.543296922],[-71.386270993,41.543172147],[-71.386311899,41.543054111],[-71.386355428,41.542933424],[-71.386385729,41.542821987],[-71.386398334,41.542698594],[-71.386398462,41.54264286],[-71.386412849,41.542528068],[-71.386461695,41.542412715],[-71.386500779,41.542309245],[-71.386402068,41.542217554],[-71.386306924,41.542105992],[-71.386233864,41.541985785],[-71.386180279,41.541869599],[-71.386119554,41.541763355],[-71.386087873,41.541724833],[-71.386035008,41.54166708],[-71.385981362,41.541551581],[-71.385963984,41.541428135],[-71.385968689,41.541297416],[-71.385977815,41.541162058],[-71.386001054,41.541033393],[-71.386048151,41.540908045],[-71.386116386,41.540793352],[-71.386199624,41.54069793],[-71.386223565,41.540654158],[-71.386196229,41.540637527],[-71.386047975,41.540592235],[-71.38600651,41.540578221],[-71.385909469,41.540525684],[-71.385787639,41.540514265],[-71.385743534,41.540478385],[-71.385699588,41.540386747],[-71.385680395,41.540274621],[-71.385638213,41.540184357],[-71.38559142,41.540136444],[-71.385576531,41.540121221],[-71.385542151,41.540111879],[-71.385497344,41.540094773],[-71.385477724,41.540087252],[-71.385473354,41.540079747],[-71.385410737,41.540029439],[-71.385389605,41.539998887],[-71.385339258,41.539929907],[-71.385343509,41.539815014],[-71.385343766,41.539703912],[-71.385352056,41.539595037],[-71.385379392,41.539473283],[-71.385439023,41.539369513],[-71.385512799,41.539270995],[-71.385550296,41.539169559],[-71.385506342,41.539066212],[-71.385531693,41.538948184],[-71.385576225,41.538844513],[-71.385584528,41.538727337],[-71.385625016,41.538621375],[-71.385709894,41.53852655],[-71.385809858,41.538438509],[-71.385909846,41.538354241],[-71.385987976,41.538305561],[-71.386021036,41.538286543],[-71.385947946,41.5381863],[-71.38593011,41.538081333],[-71.385989794,41.537981337],[-71.386068537,41.537878249],[-71.386176518,41.537782646],[-71.386275479,41.537692294],[-71.386388579,41.537610989],[-71.386503638,41.537522894],[-71.386629943,41.537461178],[-71.386753481,41.537432713],[-71.386891639,41.537485861],[-71.387026812,41.537540493],[-71.38715887,41.537583823],[-71.387186905,41.537565555],[-71.387147309,41.53751056],[-71.387017111,41.53744834],[-71.386887971,41.537389895],[-71.386770814,41.537320073],[-71.386705923,41.537248518],[-71.386708033,41.537242643],[-71.38672865,41.537184939],[-71.386793324,41.537084193],[-71.386856992,41.536984177],[-71.386926696,41.536878839],[-71.386961231,41.536781241],[-71.386973659,41.536688242],[-71.38697616,41.53668566],[-71.387063551,41.536595685],[-71.387166627,41.536518189],[-71.387273625,41.536425579],[-71.387366551,41.536338285],[-71.387454384,41.536238956],[-71.387541261,41.536147195],[-71.387644259,41.536060642],[-71.387757383,41.535980068],[-71.387861313,41.53588295],[-71.38795924,41.535789599],[-71.388087501,41.535720337],[-71.388215792,41.535651806],[-71.388289533,41.535550999],[-71.388353173,41.535447232],[-71.388415814,41.535340422],[-71.388460341,41.535235973],[-71.388507858,41.53512693],[-71.388583534,41.535015536],[-71.388645218,41.534916295],[-71.38870085,41.534814075],[-71.388766549,41.534715592],[-71.388843225,41.53460644],[-71.388871997,41.534547395],[-71.388862249,41.534445386],[-71.3889168,41.534334086],[-71.388965295,41.534222047],[-71.389009751,41.534104722],[-71.389047218,41.533998025],[-71.389076629,41.533886037],[-71.389123116,41.533773288],[-71.389185752,41.533667255],[-71.38925145,41.533568726],[-71.389325136,41.533462613],[-71.389369617,41.53334762],[-71.389433306,41.533248335],[-71.389462687,41.533135615],[-71.389507142,41.533017535],[-71.389515423,41.532908705],[-71.389542769,41.532792941],[-71.389581247,41.532681694],[-71.389598576,41.532568276],[-71.389622931,41.532457083],[-71.38965535,41.532346607],[-71.389675668,41.532229396],[-71.389705055,41.532112148],[-71.389696212,41.531996555],[-71.389723609,41.531886097],[-71.38974794,41.531771131],[-71.389773281,41.531652392],[-71.389798693,41.531545729],[-71.389745641,41.531440133],[-71.38972572,41.531323821],[-71.389721901,41.531207479],[-71.389772404,41.531093132],[-71.389832394,41.531038462],[-71.389848929,41.530961338],[-71.389917615,41.530857529],[-71.389998355,41.530752954],[-71.390080318,41.530680054],[-71.390129841,41.530569526],[-71.390154664,41.530522598],[-71.390097595,41.530416244],[-71.390091814,41.530307447],[-71.390112153,41.530194764],[-71.390147642,41.530085777],[-71.390201185,41.529972965],[-71.390273836,41.529863122],[-71.390347538,41.529761536],[-71.390403133,41.52965856],[-71.39045979,41.529557781],[-71.390522418,41.52945328],[-71.390564903,41.529345809],[-71.390612439,41.529239029],[-71.390638854,41.529132389],[-71.390650128,41.529015924],[-71.390689527,41.528897152],[-71.390726941,41.528782862],[-71.390730202,41.528671763],[-71.390727359,41.528552357],[-71.390754752,41.528442676],[-71.39078413,41.528328446],[-71.390817554,41.528215707],[-71.390854993,41.528103703],[-71.390894413,41.527990191],[-71.390926808,41.527873677],[-71.390966257,41.52776092],[-71.391031897,41.527655621],[-71.391089523,41.52755562],[-71.391157174,41.52744879],[-71.391208699,41.527339041],[-71.391241167,41.527233093],[-71.391287721,41.527129376],[-71.391340299,41.527027129],[-71.391391848,41.526921153],[-71.391438277,41.526800787],[-71.391453567,41.526684348],[-71.391408611,41.526578716],[-71.391418794,41.526549269],[-71.39143699,41.5264968],[-71.391438794,41.526491564],[-71.391553758,41.526317084],[-71.39155818,41.526311508],[-71.391592459,41.526268133],[-71.391669306,41.526174919],[-71.391676459,41.526156013],[-71.391678293,41.52615112],[-71.391704795,41.526081369],[-71.391705804,41.526078695],[-71.391709747,41.526068201],[-71.391694954,41.52596015],[-71.391730358,41.525844393],[-71.391781909,41.525736107],[-71.3918375,41.525632376],[-71.391867804,41.525509044],[-71.391910284,41.525401596],[-71.391957791,41.525291042],[-71.391992212,41.525179812],[-71.39201556,41.525066354],[-71.392060032,41.524950583],[-71.392132649,41.524837651],[-71.392176055,41.524758424],[-71.39219321,41.524727086],[-71.392226632,41.524612836],[-71.392236869,41.524495661],[-71.392268228,41.524377659],[-71.39229554,41.524258898],[-71.392300758,41.524140186],[-71.392306953,41.524019301],[-71.392317239,41.52390965],[-71.392330567,41.523800024],[-71.392348889,41.523688825],[-71.392356167,41.523575443],[-71.392355334,41.523453774],[-71.392350429,41.523328374],[-71.392344573,41.523208211],[-71.392344738,41.523090294],[-71.392341919,41.522973197],[-71.392348141,41.522854508],[-71.392359407,41.522740352],[-71.392370574,41.522612589],[-71.392362681,41.522490937],[-71.392364763,41.522409979],[-71.392365836,41.522368471],[-71.392365984,41.522242275],[-71.392366075,41.522113793],[-71.392361327,41.522004264],[-71.392364585,41.521893143],[-71.392363798,41.521780553],[-71.392350956,41.521670263],[-71.392333093,41.521559967],[-71.392320226,41.521446658],[-71.392321422,41.521331029],[-71.392335729,41.52121834],[-71.392335971,41.521108816],[-71.392332197,41.52099922],[-71.3922962,41.520887535],[-71.392240177,41.52077741],[-71.392206217,41.520667168],[-71.392183095,41.520572511],[-71.392179286,41.520556956],[-71.39218318,41.5205211],[-71.392191586,41.520443533],[-71.392214957,41.520333139],[-71.392246386,41.520226412],[-71.392287762,41.520103845],[-71.392322179,41.51999337],[-71.392299468,41.519907312],[-71.392203209,41.519802615],[-71.392184434,41.519765937],[-71.392146125,41.519691002],[-71.39213229,41.519629378],[-71.392120177,41.519575462],[-71.392099251,41.519459904],[-71.39210129,41.519349627],[-71.392101456,41.51934128],[-71.392121788,41.519228573],[-71.392152113,41.519108283],[-71.392174454,41.518994846],[-71.392185807,41.518956619],[-71.392208849,41.518879065],[-71.392249341,41.518775388],[-71.392288805,41.518667182],[-71.392329278,41.518555912],[-71.392350614,41.518442452],[-71.392346839,41.518333656],[-71.392335003,41.518222612],[-71.39234928,41.51810919],[-71.392373627,41.517996488],[-71.392387956,41.517888372],[-71.392383206,41.517780284],[-71.392337194,41.517671678],[-71.392283099,41.517557026],[-71.392218963,41.51744161],[-71.392188648,41.51737738],[-71.392160798,41.517322427],[-71.3921178,41.517213777],[-71.392069766,41.517096089],[-71.392031692,41.516972282],[-71.392002633,41.516843931],[-71.39196255,41.516720876],[-71.391918528,41.516606188],[-71.391870409,41.516485459],[-71.391836355,41.516360145],[-71.391821411,41.516233981],[-71.391806495,41.516110126],[-71.391801664,41.515996024],[-71.391821995,41.515883317],[-71.391744853,41.515777837],[-71.391660677,41.515675392],[-71.391604649,41.515571327],[-71.39156462,41.515453555],[-71.39152158,41.515335071],[-71.391468491,41.515221175],[-71.391410429,41.515114843],[-71.391367462,41.51500768],[-71.39130732,41.514890026],[-71.391230128,41.51477924],[-71.391150978,41.514674512],[-71.39106982,41.51456976],[-71.390959657,41.514488559],[-71.390846578,41.514421763],[-71.390718455,41.514363323],[-71.390587355,41.514301861],[-71.390464179,41.514232814],[-71.390353065,41.514156163],[-71.390240937,41.514086302],[-71.390182437,41.514060838],[-71.390056127,41.513974406],[-71.389935064,41.513880112],[-71.389810896,41.513823184],[-71.389693309,41.513760614],[-71.389570305,41.513681114],[-71.389457669,41.513588978],[-71.389357157,41.513506092],[-71.389249963,41.513433697],[-71.389133355,41.513369023],[-71.389014826,41.513307183],[-71.388897307,41.513241821],[-71.388794112,41.513144799],[-71.388688845,41.513068197],[-71.388578895,41.512989487],[-71.388462476,41.512904366],[-71.388344052,41.512834796],[-71.388213467,41.512760181],[-71.388100724,41.512678632],[-71.387975728,41.512609672],[-71.387850728,41.512543547],[-71.387744517,41.512467676],[-71.387629806,41.512398771],[-71.387507568,41.512336903],[-71.387375096,41.512263681],[-71.38722849,41.512199616],[-71.38711472,41.512132816],[-71.386996341,41.512056863],[-71.386867687,41.511975937],[-71.386750248,41.511902088],[-71.386633802,41.511817012],[-71.386515578,41.511722717],[-71.386389874,41.511625602],[-71.386265072,41.511534845],[-71.386137331,41.511455291],[-71.386004064,41.511368734],[-71.385859547,41.511277842],[-71.385751517,41.511201212],[-71.385637073,41.511104153],[-71.385522562,41.511010616],[-71.385387412,41.510923324],[-71.385253089,41.510850097],[-71.385118885,41.510761411],[-71.384980898,41.51067901],[-71.384871825,41.510608027],[-71.384771285,41.510530031],[-71.384658808,41.510423116],[-71.384566812,41.510331087],[-71.384473798,41.510246809],[-71.384381765,41.51015901],[-71.384269102,41.510071808],[-71.384159306,41.50998111],[-71.384049477,41.50989183],[-71.383934134,41.509789805],[-71.383816946,41.509682152],[-71.383703519,41.509580861],[-71.383610586,41.509486703],[-71.383509151,41.509400243],[-71.383472026,41.509369743],[-71.383391913,41.509303888],[-71.383273738,41.509203986],[-71.383160241,41.509109052],[-71.383057112,41.509000727],[-71.382987674,41.508903894],[-71.382902262,41.508807662],[-71.382811128,41.50872972],[-71.382748334,41.508728009],[-71.382710813,41.508732042],[-71.382686536,41.508612887],[-71.382638681,41.508509809],[-71.382559804,41.508417838],[-71.382461242,41.5083258],[-71.382355074,41.508250563],[-71.382237699,41.50816475],[-71.382126886,41.508084614],[-71.382015291,41.507982637],[-71.381905432,41.507896831],[-71.381792843,41.507806813],[-71.381684012,41.507707652],[-71.38157415,41.507623995],[-71.381483065,41.507537613],[-71.381388239,41.507450495],[-71.381292512,41.507357041],[-71.381187261,41.507281141],[-71.381088784,41.507178514],[-71.380982785,41.507079354],[-71.38087217,41.506975959],[-71.38077648,41.506879692],[-71.380682333,41.506821459],[-71.380542132,41.506775688],[-71.380384083,41.506741104],[-71.380227739,41.506722028],[-71.380089385,41.506681198],[-71.379961584,41.506610122],[-71.379857478,41.506508883],[-71.379760991,41.50640063],[-71.379668026,41.506312804],[-71.379559943,41.506240421],[-71.379459034,41.506204021],[-71.379303595,41.506189885],[-71.379157877,41.50613489],[-71.379010158,41.506091922],[-71.378865226,41.506055955],[-71.378711867,41.506019979],[-71.378549037,41.505988933],[-71.378425214,41.506004513],[-71.378313971,41.506077214],[-71.378165513,41.506120852],[-71.378045948,41.506185791],[-71.377925332,41.506259167],[-71.377784118,41.506333184],[-71.37765219,41.506419881],[-71.377550155,41.506513059],[-71.377439774,41.506595662],[-71.377313751,41.506647877],[-71.377196005,41.506714897],[-71.377050377,41.506757166],[-71.376889078,41.506768359],[-71.376721467,41.506755556],[-71.376574379,41.506749223],[-71.376486943,41.506747551],[-71.376421626,41.506746337],[-71.376256782,41.506733536],[-71.376096541,41.506732769],[-71.375932436,41.506747457],[-71.375783111,41.506781921],[-71.375657132,41.506825695],[-71.375522452,41.506901821],[-71.375374742,41.506965926],[-71.375247498,41.507050521],[-71.375119395,41.507123177],[-71.375028874,41.507191048],[-71.375203934,41.507207407],[-71.37536775,41.507232879],[-71.375481572,41.50729331],[-71.375494928,41.507372981],[-71.37542738,41.507487486],[-71.375355299,41.507585771],[-71.375244082,41.507657074],[-71.375139202,41.507755895],[-71.375055788,41.507861853],[-71.374948382,41.507928951],[-71.374904334,41.507925221],[-71.374878021,41.507828589],[-71.374879,41.507715133],[-71.37488001,41.507601036],[-71.374896392,41.507546852],[-71.374948002,41.507430866],[-71.374921487,41.507359597],[-71.374856831,41.507251512],[-71.37486714,41.507143051],[-71.374854967,41.507034497],[-71.374748506,41.5070154],[-71.374763492,41.508038479],[-71.374774492,41.508982479],[-71.374808493,41.51223348],[-71.374819274,41.512839695],[-71.377393559,41.512755064],[-71.377369765,41.513552184],[-71.374832805,41.513600459],[-71.374839492,41.51397648],[-71.374847493,41.51439948],[-71.374878492,41.515385481],[-71.374900493,41.516708481],[-71.374908492,41.518046481],[-71.374923493,41.519054481],[-71.374923493,41.519841894],[-71.376901897,41.5198351],[-71.381852671,41.519818099],[-71.381805081,41.520888857],[-71.3765202,41.520861553],[-71.374919205,41.520853281],[-71.374916493,41.521193482],[-71.374916493,41.522728482],[-71.374916493,41.523900482],[-71.374920493,41.524066482],[-71.374923493,41.524179483],[-71.374939493,41.525056483],[-71.374946493,41.525732483],[-71.374946493,41.526119483],[-71.374946493,41.526268483],[-71.374946493,41.526439483],[-71.374954493,41.526524482],[-71.374946493,41.526858483],[-71.374923493,41.527556483],[-71.374915493,41.527998483],[-71.376796314,41.527979652],[-71.37677252,41.528467442],[-71.374903305,41.528453917],[-71.374885493,41.529119483],[-71.374885493,41.529232484],[-71.374862493,41.530070484],[-71.374847494,41.530341484],[-71.374847494,41.531507484],[-71.374847494,41.532002484],[-71.374853381,41.532449948],[-71.377802629,41.532511287],[-71.377600374,41.535753303],[-71.376214338,41.535765201],[-71.376137006,41.537002521],[-71.374900494,41.537014418],[-71.374900494,41.537504485],[-71.374900494,41.538054485],[-71.375958546,41.538043297],[-71.3759871,41.539706541],[-71.377286286,41.539735094],[-71.37727201,41.542219251],[-71.3759871,41.542240667],[-71.376001377,41.543846803],[-71.375001354,41.543832743],[-71.375007494,41.544257486],[-71.375537997,41.544244056],[-71.375496103,41.546889157],[-71.375755494,41.546880487],[-71.375933949,41.546876714],[-71.375931183,41.547386252],[-71.375007494,41.547389227],[-71.375007494,41.549080487],[-71.375015494,41.549845488],[-71.375015494,41.552187487],[-71.375023495,41.553610489],[-71.375030494,41.554335488],[-71.380389365,41.55422562],[-71.381761257,41.554197494],[-71.385468498,41.554121488],[-71.385434498,41.554243488]]],[[[-71.384845498,41.556102489],[-71.384845498,41.556226488],[-71.384798498,41.556359489],[-71.384735498,41.556488488],[-71.384689498,41.556600488],[-71.384693498,41.556717488],[-71.384780498,41.556939489],[-71.384811498,41.557056489],[-71.384824498,41.557166488],[-71.384828498,41.557275489],[-71.384829498,41.557399488],[-71.384809498,41.557512488],[-71.384751498,41.557636489],[-71.384665498,41.557740489],[-71.384520498,41.557819489],[-71.384369497,41.557871489],[-71.384210497,41.557937489],[-71.384081498,41.558007489],[-71.383929498,41.558074489],[-71.383784497,41.558109489],[-71.383607497,41.558147489],[-71.383468498,41.558192489],[-71.383417497,41.558227489],[-71.383417497,41.558295489],[-71.383277497,41.558347489],[-71.383124497,41.558371488],[-71.382922497,41.558394489],[-71.382773497,41.558438489],[-71.382622497,41.558461489],[-71.382472498,41.558502489],[-71.382317498,41.558558489],[-71.382171497,41.558627489],[-71.382009497,41.558694489],[-71.381867497,41.558766489],[-71.381758497,41.558855489],[-71.381653497,41.558953489],[-71.381533497,41.559039489],[-71.381435497,41.559127489],[-71.381377497,41.559246489],[-71.381332497,41.559500489],[-71.381305496,41.55961649],[-71.381272497,41.559740489],[-71.381262497,41.559858489],[-71.381268497,41.559949489],[-71.381263414,41.559859338],[-71.381272553,41.559740584],[-71.381306394,41.559617237],[-71.381333159,41.559500492],[-71.381356424,41.559365813],[-71.381377895,41.559247073],[-71.381436483,41.55912773],[-71.381533834,41.559040263],[-71.381654172,41.55895355],[-71.381758636,41.558856118],[-71.381868381,41.558767336],[-71.382009886,41.558694527],[-71.382171656,41.558628394],[-71.382317599,41.55855895],[-71.3824732,41.558502736],[-71.382622561,41.558461768],[-71.382773686,41.558439419],[-71.382923053,41.558395135],[-71.38312454,41.558372196],[-71.383278285,41.558348476],[-71.383384158,41.558311923],[-71.383417946,41.558300248],[-71.383417956,41.558294279],[-71.383418106,41.558227934],[-71.383469442,41.558193476],[-71.383608215,41.558147877],[-71.383784973,41.558110275],[-71.383929939,41.55807463],[-71.384082023,41.558008461],[-71.384211156,41.55793829],[-71.384370304,41.557872151],[-71.384520566,41.55781993],[-71.384665638,41.557741152],[-71.384751534,41.557637089],[-71.384810092,41.55751308],[-71.38482984,41.557400352],[-71.384829209,41.557275619],[-71.384825047,41.557167441],[-71.384812028,41.557057288],[-71.384781363,41.556939798],[-71.384735685,41.556823643],[-71.384694403,41.556718103],[-71.384690257,41.556601303],[-71.384736432,41.556488579],[-71.38479856,41.55635993],[-71.384845655,41.556226624],[-71.384845935,41.556103196],[-71.38482847,41.556063361],[-71.384845498,41.556102489]]],[[[-71.381286497,41.560072489],[-71.381290497,41.56018249],[-71.38129917,41.560291379],[-71.381290956,41.560183178],[-71.381286773,41.560073011],[-71.381268511,41.559949587],[-71.381286497,41.560072489]]],[[[-71.381330497,41.560423489],[-71.381345497,41.560562489],[-71.381349497,41.560677489],[-71.381358497,41.560795489],[-71.381351497,41.560915489],[-71.381342497,41.56103649],[-71.381331497,41.561148489],[-71.381331497,41.561260489],[-71.381333497,41.561375489],[-71.381349497,41.561515489],[-71.381340497,41.561651489],[-71.381306497,41.561783489],[-71.381272497,41.56189149],[-71.381246497,41.56201249],[-71.381228497,41.56212349],[-71.381201497,41.562235489],[-71.381168497,41.562354489],[-71.381142497,41.56248149],[-71.381111497,41.56259649],[-71.381068497,41.562718489],[-71.381029497,41.56283249],[-71.380993497,41.56296249],[-71.380945497,41.56309249],[-71.380888497,41.56320049],[-71.380787497,41.56329549],[-71.380709497,41.56338949],[-71.380659497,41.56349249],[-71.380589497,41.56362849],[-71.380523497,41.56375149],[-71.380448496,41.56387449],[-71.380362497,41.56399249],[-71.380284497,41.56411749],[-71.380221497,41.56424249],[-71.380197497,41.56435749],[-71.380171497,41.56445949],[-71.380077496,41.56454449],[-71.379993497,41.56464549],[-71.379934497,41.56475049],[-71.379878497,41.56486549],[-71.379793497,41.56499149],[-71.379697497,41.56508349],[-71.379608496,41.56518349],[-71.379513496,41.56528249],[-71.379422497,41.56538149],[-71.379368497,41.56561349],[-71.379333497,41.565720491],[-71.379285497,41.56593649],[-71.379269497,41.566050491],[-71.379269497,41.566166491],[-71.379263496,41.566286491],[-71.379253497,41.566403491],[-71.379213497,41.56651049],[-71.379141496,41.56660649],[-71.379081496,41.56671849],[-71.379051497,41.566824491],[-71.379017497,41.56693249],[-71.378968496,41.567040491],[-71.378908496,41.567138491],[-71.378823497,41.567237491],[-71.378723497,41.567330491],[-71.378634496,41.567424491],[-71.378540496,41.567506491],[-71.378430496,41.567587491],[-71.378341496,41.567688491],[-71.378180497,41.567891491],[-71.378110496,41.567987491],[-71.378033496,41.568083491],[-71.377959496,41.568178491],[-71.377880496,41.568273491],[-71.377809496,41.568369491],[-71.377733497,41.568483491],[-71.377676497,41.568603491],[-71.377629496,41.568722491],[-71.377555496,41.568823491],[-71.377452496,41.568899491],[-71.377351496,41.568988491],[-71.377279496,41.569098491],[-71.377225496,41.569215491],[-71.377159496,41.569327491],[-71.377047496,41.569412491],[-71.376935496,41.569502492],[-71.376867496,41.569604491],[-71.376769496,41.569688491],[-71.376685496,41.569782491],[-71.376613496,41.569884491],[-71.376566495,41.569992491],[-71.376511496,41.570095491],[-71.376445496,41.570210491],[-71.376427496,41.570324491],[-71.376363496,41.570413491],[-71.376269496,41.570506491],[-71.376204496,41.570604491],[-71.376158495,41.570713492],[-71.376128496,41.570824492],[-71.376072496,41.570926492],[-71.375964495,41.571010491],[-71.375841496,41.571079492],[-71.375709495,41.571143491],[-71.375571495,41.571203491],[-71.375440495,41.571277492],[-71.375316496,41.571345491],[-71.375189495,41.571417491],[-71.375066495,41.571489492],[-71.374947495,41.571576491],[-71.374836495,41.571663492],[-71.374735495,41.571763492],[-71.374646495,41.571855492],[-71.374542495,41.571952492],[-71.374345495,41.572148492],[-71.374244495,41.572245492],[-71.374159495,41.572336492],[-71.373984495,41.572528491],[-71.373878495,41.572612492],[-71.373742495,41.572678492],[-71.373602495,41.572727492],[-71.373476495,41.572782492],[-71.373347495,41.572844492],[-71.373245495,41.572931492],[-71.373170495,41.573025492],[-71.373134495,41.573137492],[-71.373169167,41.573224525],[-71.373166063,41.573216638],[-71.373135457,41.573137864],[-71.37317137,41.573025796],[-71.373245589,41.57293209],[-71.373347539,41.572845251],[-71.373476973,41.572782731],[-71.373602768,41.572727593],[-71.373742834,41.572678577],[-71.373878546,41.572613433],[-71.373984937,41.572528635],[-71.374078052,41.572426921],[-71.374160303,41.57233663],[-71.374245234,41.572246342],[-71.374346379,41.572149417],[-71.374441187,41.572053811],[-71.374543253,41.571952815],[-71.374647046,41.571855915],[-71.374735573,41.571763664],[-71.374836722,41.571664039],[-71.374947592,41.571576523],[-71.375067413,41.571490481],[-71.375189797,41.571417819],[-71.375316594,41.571345917],[-71.375440704,41.571278014],[-71.375572043,41.571204082],[-71.375709506,41.571144266],[-71.375841648,41.571079779],[-71.375964875,41.571011166],[-71.376073026,41.570927031],[-71.376129439,41.570825184],[-71.3761591,41.570713772],[-71.376204806,41.570605144],[-71.376270135,41.570506669],[-71.376364171,41.570413851],[-71.3764275,41.570325368],[-71.376445533,41.570211199],[-71.376511898,41.570095938],[-71.376566546,41.56999274],[-71.376614046,41.569884755],[-71.376685653,41.56978297],[-71.376769731,41.569689294],[-71.376868042,41.569605148],[-71.376936085,41.569503336],[-71.377047869,41.569412526],[-71.377160494,41.569327731],[-71.377225937,41.569215831],[-71.377279786,41.569099184],[-71.377352382,41.568988687],[-71.377452528,41.568899807],[-71.377556151,41.568823693],[-71.377629521,41.568722573],[-71.377677129,41.568603861],[-71.377733694,41.568483855],[-71.377809888,41.568370022],[-71.377880567,41.568274251],[-71.377960168,41.568178557],[-71.378034408,41.568083498],[-71.378111359,41.567987778],[-71.378181123,41.567892051],[-71.378257162,41.56779569],[-71.378342234,41.567688567],[-71.378430857,41.567587554],[-71.378540758,41.567507443],[-71.378635467,41.567425258],[-71.378724016,41.567330968],[-71.378824165,41.567238085],[-71.37890919,41.567139035],[-71.378969152,41.567040529],[-71.379018412,41.566932568],[-71.379051623,41.566824566],[-71.37908209,41.566718528],[-71.379142166,41.566607285],[-71.379213725,41.56651085],[-71.379254091,41.566403519],[-71.379264115,41.566286642],[-71.379269636,41.566167062],[-71.379269791,41.566050793],[-71.37928602,41.565937308],[-71.379310248,41.565829205],[-71.379333623,41.565721147],[-71.379369449,41.565614452],[-71.379394374,41.565507883],[-71.379422928,41.5653819],[-71.379514162,41.565283153],[-71.379608928,41.565183723],[-71.379697513,41.565084333],[-71.379794002,41.56499156],[-71.379879102,41.564866277],[-71.379935041,41.564750912],[-71.37999358,41.564646138],[-71.380077751,41.564544753],[-71.380171575,41.564459913],[-71.380198317,41.564357805],[-71.38022155,41.564243046],[-71.38028457,41.56411838],[-71.380363456,41.563993068],[-71.38044854,41.56387508],[-71.380523919,41.563751753],[-71.380590467,41.563629149],[-71.380659689,41.563492552],[-71.380710273,41.563389736],[-71.380788217,41.563295616],[-71.380889152,41.563200903],[-71.380945956,41.563093474],[-71.380993941,41.562963487],[-71.381029593,41.562833487],[-71.381068718,41.562719407],[-71.381112272,41.562597374],[-71.381142598,41.562481981],[-71.381169384,41.562354625],[-71.381202366,41.562235896],[-71.381229124,41.562123794],[-71.381247018,41.562013031],[-71.381272909,41.56189162],[-71.381306724,41.561783504],[-71.381340612,41.561651558],[-71.381349752,41.561515538],[-71.381334174,41.561375513],[-71.381331765,41.561261391],[-71.381332032,41.561148598],[-71.381342863,41.561037165],[-71.381352005,41.560916399],[-71.381359351,41.560795655],[-71.381349915,41.560677569],[-71.38134574,41.560562758],[-71.381331043,41.560424084],[-71.381305647,41.560320884],[-71.381330497,41.560423489]]],[[[-71.372850495,41.573249492],[-71.372766076,41.573305419],[-71.372850726,41.573249954],[-71.372980087,41.57319418],[-71.37305692,41.573212035],[-71.373183548,41.57326107],[-71.37318329,41.573260413],[-71.373056495,41.573211492],[-71.372979495,41.573193492],[-71.372850495,41.573249492]]],[[[-71.372610495,41.573408492],[-71.372472494,41.573447492],[-71.372315494,41.573479492],[-71.372173495,41.573531492],[-71.372030495,41.573573492],[-71.371876495,41.573603492],[-71.371786495,41.573618493],[-71.371786506,41.573619446],[-71.371877349,41.573604474],[-71.372030691,41.573573725],[-71.372174248,41.573532124],[-71.372316151,41.573479728],[-71.372473059,41.573447633],[-71.372611218,41.573409365],[-71.372715573,41.573338878],[-71.372610495,41.573408492]]]]}}"}, +{"type": "precinct", "typeId": 1601, "areaId": 25786, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":125,\"NAME\":\"1601\",\"SHAPE_Length\":0.083466933767063,\"SHAPE_Area\":-0.00019994673284412},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.466644538,41.804707534],[-71.466727538,41.804856534],[-71.467862538,41.805466534],[-71.468716538,41.805138534],[-71.469103539,41.806108534],[-71.467903539,41.806308535],[-71.467703538,41.807308534],[-71.466803538,41.807808535],[-71.466945538,41.807964535],[-71.467082538,41.807936535],[-71.467782538,41.808884535],[-71.468703539,41.810608535],[-71.466603539,41.810708535],[-71.466372538,41.810899535],[-71.466842538,41.812314536],[-71.467113538,41.812915536],[-71.467407538,41.813324536],[-71.467627539,41.813339536],[-71.467867539,41.813314535],[-71.468049539,41.813744536],[-71.468097539,41.813955536],[-71.467834538,41.814309536],[-71.467949539,41.814553536],[-71.468025539,41.814679536],[-71.468056539,41.814743536],[-71.468094539,41.814846536],[-71.468109539,41.814946536],[-71.468132539,41.815049537],[-71.468140539,41.815113536],[-71.468155539,41.815178536],[-71.468163539,41.815239536],[-71.468178539,41.815312536],[-71.468193539,41.815453536],[-71.468208539,41.815594537],[-71.46830054,41.815738536],[-71.468327539,41.815998536],[-71.468502539,41.816328536],[-71.46868954,41.816834537],[-71.468849539,41.817337536],[-71.46927054,41.817824536],[-71.469397539,41.818007537],[-71.46946354,41.818299537],[-71.46955954,41.818913537],[-71.46982054,41.819602537],[-71.46989454,41.819855537],[-71.47052054,41.820782538],[-71.47054254,41.820831537],[-71.47055854,41.820870537],[-71.47094354,41.821694538],[-71.47097454,41.821790538],[-71.47101854,41.821927538],[-71.473270541,41.821523538],[-71.473737541,41.821439537],[-71.474393541,41.821321537],[-71.475001542,41.821212537],[-71.475452542,41.821131537],[-71.475609542,41.821103537],[-71.476555542,41.820908537],[-71.476724543,41.820869537],[-71.477020542,41.820801537],[-71.477425543,41.820702537],[-71.477821542,41.820599537],[-71.478210542,41.820485537],[-71.478607543,41.820351537],[-71.478710543,41.820316536],[-71.478978543,41.820214537],[-71.479390543,41.820060537],[-71.479996543,41.819817537],[-71.480141543,41.819760537],[-71.481043543,41.819378537],[-71.483764545,41.818233536],[-71.483925544,41.818165537],[-71.484840544,41.817788536],[-71.485573545,41.817536536],[-71.485771545,41.817472536],[-71.485695545,41.817260536],[-71.485495545,41.816702536],[-71.483909544,41.817140536],[-71.483220544,41.817330537],[-71.478266542,41.815819536],[-71.475136541,41.814864536],[-71.474891542,41.814577536],[-71.475411541,41.814373536],[-71.475896541,41.813940535],[-71.476034542,41.813816536],[-71.476027541,41.813689535],[-71.476057542,41.813216536],[-71.475792541,41.812516535],[-71.475967541,41.812447535],[-71.476631541,41.812168535],[-71.477005542,41.812020535],[-71.477440542,41.811860535],[-71.477669542,41.811795535],[-71.477798542,41.811764535],[-71.477745542,41.811615536],[-71.477684542,41.811501535],[-71.477364542,41.811089536],[-71.477837542,41.811085535],[-71.478119542,41.811070536],[-71.478203542,41.811043535],[-71.478218542,41.811028535],[-71.478271542,41.810917535],[-71.478317542,41.810650535],[-71.478394542,41.810284535],[-71.478149542,41.810288535],[-71.478119542,41.809994535],[-71.478096542,41.809643535],[-71.478256542,41.809639535],[-71.479086542,41.809581535],[-71.479187542,41.809574535],[-71.480255542,41.809521535],[-71.480186543,41.809399535],[-71.480072543,41.809155535],[-71.480057543,41.809079535],[-71.480049543,41.808998535],[-71.480064542,41.808915535],[-71.480095543,41.808533535],[-71.480049542,41.808052534],[-71.480049542,41.807976534],[-71.480034543,41.807827535],[-71.480019543,41.807751535],[-71.479973543,41.807598535],[-71.479813542,41.806904534],[-71.479660542,41.806290534],[-71.479416543,41.805188534],[-71.478867542,41.805203534],[-71.478839542,41.805203534],[-71.476494541,41.805245534],[-71.476402541,41.805252534],[-71.476326541,41.805264534],[-71.476250541,41.805069534],[-71.476234541,41.805046534],[-71.476227541,41.805024534],[-71.476189541,41.804955534],[-71.476158541,41.804882534],[-71.476120541,41.804810534],[-71.476067541,41.804684534],[-71.476006541,41.804558533],[-71.475914541,41.804333534],[-71.475899541,41.804306534],[-71.475853541,41.804177534],[-71.475769541,41.803883534],[-71.475670541,41.803456534],[-71.475639541,41.803353533],[-71.475586541,41.803135533],[-71.475510541,41.802914534],[-71.475433541,41.802746533],[-71.475388541,41.802666533],[-71.475319541,41.802597534],[-71.47524354,41.802529534],[-71.475159541,41.802472533],[-71.475060541,41.802418533],[-71.47495354,41.802372534],[-71.47483854,41.802334534],[-71.47473954,41.802311534],[-71.47453354,41.802277533],[-71.47431954,41.802220533],[-71.474091541,41.802136534],[-71.47393054,41.802067533],[-71.47380154,41.802006533],[-71.47364854,41.801922534],[-71.47345054,41.801819534],[-71.47325154,41.801751533],[-71.47315254,41.801731533],[-71.472847539,41.801659533],[-71.47271754,41.801663534],[-71.47244354,41.801663534],[-71.47211554,41.801674533],[-71.47190154,41.801667534],[-71.471695539,41.801667534],[-71.471588539,41.801670534],[-71.471428539,41.801670534],[-71.471191539,41.801678533],[-71.471092539,41.801701534],[-71.470993539,41.801724534],[-71.470146539,41.802010533],[-71.469383539,41.802273534],[-71.469139538,41.802338533],[-71.468956539,41.802391534],[-71.468605539,41.802822533],[-71.468002538,41.803521534],[-71.467651538,41.803963534],[-71.467560538,41.804062534],[-71.467361538,41.804257534],[-71.467171538,41.804409534],[-71.467072538,41.804478535],[-71.466698538,41.804684534],[-71.466644538,41.804707534]]]]}}"}, +{"type": "precinct", "typeId": 1602, "areaId": 25787, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":126,\"NAME\":\"1602\",\"SHAPE_Length\":0.19973379138823,\"SHAPE_Area\":-0.0013531273833688},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.539490562,41.815178534],[-71.539780562,41.815369534],[-71.540070562,41.815529534],[-71.540337563,41.815682534],[-71.540627563,41.815819534],[-71.540985563,41.815945535],[-71.541062563,41.815966534],[-71.541756563,41.816155534],[-71.542366564,41.816117534],[-71.542725563,41.816071534],[-71.543129563,41.815979534],[-71.543541563,41.815918534],[-71.544006563,41.815823534],[-71.544479564,41.815712534],[-71.544998565,41.815560534],[-71.545494564,41.815442534],[-71.545891565,41.815327534],[-71.546242565,41.815190534],[-71.546532565,41.815056534],[-71.546822565,41.814976534],[-71.547028565,41.814961534],[-71.547279565,41.815033533],[-71.547623565,41.815140534],[-71.547890565,41.815190534],[-71.548050565,41.815209533],[-71.548210565,41.815232534],[-71.548874566,41.815159534],[-71.549118565,41.815113534],[-71.549286566,41.815014533],[-71.549522566,41.814835533],[-71.550072565,41.814434534],[-71.550301566,41.814274533],[-71.550400566,41.814148534],[-71.550491566,41.813980533],[-71.550560566,41.813931534],[-71.550735566,41.813916534],[-71.551041566,41.813942533],[-71.551410566,41.813964533],[-71.552597567,41.814034534],[-71.553070567,41.814072534],[-71.553513567,41.814114533],[-71.553970567,41.814152534],[-71.554451567,41.814167534],[-71.555016567,41.814221533],[-71.555473567,41.814259533],[-71.556084568,41.814289533],[-71.556671568,41.814301533],[-71.557671568,41.814392533],[-71.558403568,41.814469533],[-71.558868568,41.814503534],[-71.559410569,41.814534533],[-71.560028569,41.814576533],[-71.56046357,41.814614533],[-71.561119569,41.814656534],[-71.561623569,41.814698534],[-71.56278257,41.814782533],[-71.56332457,41.814827533],[-71.56376657,41.814855533],[-71.56391957,41.814865533],[-71.565346571,41.814968534],[-71.56432157,41.810091533],[-71.56421057,41.809564532],[-71.56330157,41.805241531],[-71.562580569,41.801819531],[-71.562423569,41.801023531],[-71.562317569,41.80052353],[-71.561623569,41.79723453],[-71.559934568,41.790443528],[-71.559853568,41.790102529],[-71.559806567,41.789907529],[-71.559560568,41.789643528],[-71.558608567,41.789728529],[-71.556020566,41.789960529],[-71.555456566,41.790125529],[-71.551859565,41.791171529],[-71.551499565,41.791141529],[-71.551465565,41.791139529],[-71.550357565,41.791619529],[-71.549418564,41.791901529],[-71.548729564,41.791973529],[-71.547310564,41.79213453],[-71.546089564,41.792263529],[-71.543488562,41.792546529],[-71.542328562,41.79267253],[-71.541527562,41.79273653],[-71.539726561,41.79290453],[-71.539436561,41.792935529],[-71.538834561,41.79299253],[-71.537621561,41.79309953],[-71.536980561,41.79316053],[-71.53631656,41.79322553],[-71.53618656,41.79323253],[-71.53606456,41.79324453],[-71.53525556,41.793305529],[-71.53502756,41.793305529],[-71.53467656,41.79328253],[-71.534225559,41.79322153],[-71.53374556,41.79309553],[-71.533325559,41.792954529],[-71.533012559,41.79281353],[-71.532845559,41.79273353],[-71.532616559,41.79259553],[-71.532242559,41.79235953],[-71.531960558,41.79216853],[-71.531601559,41.79195153],[-71.531227559,41.79174153],[-71.530968558,41.79162353],[-71.530556558,41.791455529],[-71.530144558,41.791298529],[-71.529755558,41.791180529],[-71.529266557,41.791043529],[-71.528633558,41.790890529],[-71.526970557,41.79047453],[-71.526634557,41.79039453],[-71.526405557,41.79033753],[-71.525764557,41.790226529],[-71.524590556,41.790036529],[-71.524178556,41.78997853],[-71.523926556,41.78994453],[-71.523552555,41.78990253],[-71.523155556,41.78986853],[-71.522719555,41.789840529],[-71.522491556,41.789819529],[-71.522349555,41.78980753],[-71.522171555,41.78979153],[-71.521797555,41.78974653],[-71.521431555,41.78967753],[-71.521095555,41.78959753],[-71.520805555,41.78951353],[-71.520569555,41.78943353],[-71.520210555,41.789292529],[-71.519653554,41.789078529],[-71.519348554,41.78899053],[-71.518982555,41.78889553],[-71.518940554,41.78888753],[-71.518608554,41.78881953],[-71.518379554,41.788781529],[-71.518188554,41.78875453],[-71.517715554,41.78871253],[-71.516998553,41.78866253],[-71.516174554,41.788590529],[-71.514717552,41.78844553],[-71.514122553,41.78839953],[-71.513802552,41.788391529],[-71.513329553,41.78840353],[-71.512741552,41.788433529],[-71.512131552,41.78845653],[-71.510475552,41.78854453],[-71.510451551,41.788549529],[-71.510025551,41.78857853],[-71.509331551,41.78863953],[-71.508659551,41.78868153],[-71.507615551,41.78876553],[-71.50653155,41.78885353],[-71.50605855,41.78888753],[-71.50575355,41.78891053],[-71.50508955,41.78897153],[-71.50441755,41.78903253],[-71.50379255,41.78909353],[-71.503067549,41.789151531],[-71.502838549,41.78919653],[-71.502655549,41.78924253],[-71.502144549,41.78939153],[-71.501068548,41.78973053],[-71.500931548,41.789814531],[-71.500824549,41.789853531],[-71.498497548,41.790589531],[-71.498207548,41.79068053],[-71.498001548,41.790749531],[-71.497887547,41.790779531],[-71.497765548,41.790818531],[-71.497426547,41.790901531],[-71.497360547,41.790917531],[-71.496758547,41.791039531],[-71.497009547,41.791638531],[-71.497581547,41.792862531],[-71.498276547,41.794228531],[-71.498817548,41.795308532],[-71.498970548,41.795582532],[-71.497897548,41.795710531],[-71.497887547,41.795764531],[-71.497884548,41.795897532],[-71.497887547,41.795915532],[-71.497892548,41.795952532],[-71.497928547,41.796071532],[-71.497962548,41.796131532],[-71.498026548,41.796180532],[-71.498166548,41.796275531],[-71.498228548,41.796329531],[-71.498280548,41.796384532],[-71.498273548,41.796425532],[-71.498241548,41.796482532],[-71.498250548,41.796543531],[-71.498281548,41.796594532],[-71.498335548,41.796642531],[-71.498399548,41.796673532],[-71.498445548,41.796727532],[-71.498466548,41.796780531],[-71.498447548,41.796892532],[-71.498445548,41.796937532],[-71.498425548,41.796996532],[-71.498414548,41.797052531],[-71.498421548,41.797112532],[-71.498324548,41.797208531],[-71.498348548,41.797262532],[-71.498382548,41.797321532],[-71.498382548,41.797379532],[-71.498392548,41.797437532],[-71.495005263,41.796488472],[-71.494705884,41.798632034],[-71.494741809,41.799937332],[-71.492610222,41.801829415],[-71.489029635,41.801673737],[-71.486320544,41.801548533],[-71.486458544,41.801781533],[-71.486534545,41.801896533],[-71.486656544,41.802048533],[-71.486832544,41.802239533],[-71.486877544,41.802277533],[-71.487068544,41.802468533],[-71.488235545,41.803479534],[-71.489632546,41.804749534],[-71.489838545,41.804928533],[-71.490143545,41.805199534],[-71.490982546,41.805821534],[-71.491005546,41.805832534],[-71.491173546,41.805767533],[-71.491455546,41.805680534],[-71.491661547,41.805607534],[-71.491837547,41.805531534],[-71.491890546,41.805504534],[-71.492126547,41.805447534],[-71.492973546,41.805279533],[-71.493034546,41.805264533],[-71.493679547,41.805165533],[-71.494016547,41.805098534],[-71.494217547,41.804982534],[-71.494278547,41.804953533],[-71.494485547,41.804950533],[-71.494573547,41.804956533],[-71.494640547,41.804953533],[-71.494714547,41.804964534],[-71.494795547,41.804970533],[-71.494884547,41.804994533],[-71.494991547,41.805014533],[-71.495124547,41.805019534],[-71.495265547,41.805017533],[-71.495529547,41.804978533],[-71.496376548,41.804875533],[-71.496834548,41.804810534],[-71.497681548,41.804608533],[-71.497917548,41.804558533],[-71.498016548,41.804543533],[-71.498146548,41.804531533],[-71.498367549,41.804520533],[-71.498520548,41.804520533],[-71.498787548,41.804535534],[-71.498863548,41.804535534],[-71.499023548,41.804531533],[-71.499306549,41.804501533],[-71.499359549,41.804501533],[-71.500229549,41.804398533],[-71.500343549,41.804367533],[-71.500450549,41.804356533],[-71.500549549,41.804356533],[-71.500679549,41.804371533],[-71.500862549,41.804409533],[-71.500961549,41.804448533],[-71.500999549,41.804470533],[-71.501091549,41.804509533],[-71.501183549,41.804543533],[-71.50145055,41.804608533],[-71.501556549,41.804619533],[-71.50172455,41.804619533],[-71.50195355,41.804604533],[-71.502121549,41.804600533],[-71.50260255,41.804585533],[-71.50298355,41.804593533],[-71.50363955,41.804566533],[-71.505501551,41.804497533],[-71.506882551,41.804459533],[-71.507607551,41.804417533],[-71.508316552,41.804383532],[-71.508507552,41.804387533],[-71.510040552,41.804509533],[-71.510933552,41.804573533],[-71.511925553,41.804650533],[-71.512772553,41.804772532],[-71.514000553,41.805020533],[-71.514353554,41.805091533],[-71.514420554,41.805104532],[-71.514472554,41.805119533],[-71.514618553,41.805161533],[-71.514786554,41.805220533],[-71.515312554,41.805439533],[-71.515961555,41.805725533],[-71.516205554,41.805821533],[-71.516388555,41.805870533],[-71.516479554,41.805890533],[-71.516708554,41.806034533],[-71.516891555,41.806107533],[-71.517036554,41.806179533],[-71.517159554,41.806260533],[-71.517532555,41.806569533],[-71.517677555,41.806683533],[-71.517815554,41.806775533],[-71.517975555,41.806862533],[-71.518456555,41.807068533],[-71.518524555,41.807091533],[-71.518715555,41.807202533],[-71.518898555,41.807297533],[-71.518990555,41.807377533],[-71.519241555,41.807698533],[-71.519463555,41.807999533],[-71.519554555,41.808087534],[-71.519653555,41.808194533],[-71.519974556,41.808426533],[-71.520325556,41.808590534],[-71.520546555,41.808648534],[-71.520775556,41.808693533],[-71.521591556,41.808739533],[-71.521797556,41.808773533],[-71.521965557,41.808823534],[-71.522133556,41.808892533],[-71.522331556,41.809006533],[-71.522560556,41.809121533],[-71.522705557,41.809212534],[-71.522781557,41.809292534],[-71.522827556,41.809388534],[-71.522865557,41.809517533],[-71.522896557,41.809582534],[-71.522957557,41.809651533],[-71.523071557,41.809739534],[-71.523270557,41.809883533],[-71.523483557,41.810059533],[-71.523621557,41.810200533],[-71.523743557,41.810307534],[-71.523872557,41.810387534],[-71.523994557,41.810433533],[-71.524147557,41.810482534],[-71.524361557,41.810517534],[-71.524689557,41.810540534],[-71.524979557,41.810547533],[-71.525368557,41.810547533],[-71.525558557,41.810540534],[-71.525749558,41.810543534],[-71.525887558,41.810578534],[-71.526268558,41.810700534],[-71.526596558,41.810845534],[-71.526688557,41.810910534],[-71.526787558,41.811001534],[-71.526901558,41.811089534],[-71.527069558,41.811165534],[-71.527252559,41.811203534],[-71.527473558,41.811215534],[-71.527954559,41.811253533],[-71.528114558,41.811283534],[-71.528358559,41.811375534],[-71.528664558,41.811478534],[-71.529182559,41.811764534],[-71.529564559,41.812004534],[-71.529648559,41.812069533],[-71.529884559,41.812237534],[-71.530212559,41.812493534],[-71.53037356,41.812642534],[-71.530434559,41.812729533],[-71.530441559,41.812809534],[-71.53041256,41.812902534],[-71.53037356,41.813034534],[-71.530846559,41.813034534],[-71.530960559,41.813057534],[-71.531235559,41.813122534],[-71.531395559,41.813149534],[-71.53160956,41.813176534],[-71.53177656,41.813202534],[-71.531898559,41.813233534],[-71.53223456,41.813340534],[-71.53244056,41.813412533],[-71.53273856,41.813523534],[-71.53305856,41.813614534],[-71.53373056,41.813824534],[-71.533958561,41.813889534],[-71.534325561,41.813961534],[-71.534477561,41.813977534],[-71.535149561,41.814019534],[-71.535477561,41.814022534],[-71.536110561,41.814015534],[-71.536491561,41.814034534],[-71.536774561,41.814072534],[-71.536972561,41.814091534],[-71.537216562,41.814129534],[-71.537590561,41.814198534],[-71.537918562,41.814251534],[-71.538200562,41.814335534],[-71.538757562,41.814640534],[-71.539040562,41.814824534],[-71.539268562,41.815018534],[-71.539490562,41.815178534]]]]}}"}, +{"type": "precinct", "typeId": 1603, "areaId": 25788, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":127,\"NAME\":\"1603\",\"SHAPE_Length\":0.10220164470094,\"SHAPE_Area\":-0.00024777987876283},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.463665537,41.805054534],[-71.463716537,41.805049534],[-71.463843537,41.805031534],[-71.463966537,41.805003535],[-71.464085537,41.804987534],[-71.464340538,41.805001535],[-71.464583537,41.804999534],[-71.464725537,41.804972534],[-71.464405537,41.805129534],[-71.464920538,41.805882535],[-71.465057538,41.805748534],[-71.465759538,41.805264534],[-71.465935538,41.805138535],[-71.466179538,41.804974534],[-71.466278538,41.804913534],[-71.466385538,41.804856534],[-71.466507537,41.804783534],[-71.466644538,41.804707534],[-71.466698538,41.804684534],[-71.467072538,41.804478535],[-71.467171538,41.804409534],[-71.467361538,41.804257534],[-71.467560538,41.804062534],[-71.467651538,41.803963534],[-71.468002538,41.803521534],[-71.468605539,41.802822533],[-71.468956539,41.802391534],[-71.469139538,41.802338533],[-71.469383539,41.802273534],[-71.470146539,41.802010533],[-71.470993539,41.801724534],[-71.471092539,41.801701534],[-71.471191539,41.801678533],[-71.471428539,41.801670534],[-71.471588539,41.801670534],[-71.471695539,41.801667534],[-71.47190154,41.801667534],[-71.47211554,41.801674533],[-71.47244354,41.801663534],[-71.47271754,41.801663534],[-71.472847539,41.801659533],[-71.47315254,41.801731533],[-71.47325154,41.801751533],[-71.47345054,41.801819534],[-71.47364854,41.801922534],[-71.47380154,41.802006533],[-71.47393054,41.802067533],[-71.474091541,41.802136534],[-71.47431954,41.802220533],[-71.47453354,41.802277533],[-71.47473954,41.802311534],[-71.47483854,41.802334534],[-71.47495354,41.802372534],[-71.475060541,41.802418533],[-71.475159541,41.802472533],[-71.47524354,41.802529534],[-71.475319541,41.802597534],[-71.475388541,41.802666533],[-71.475433541,41.802746533],[-71.475510541,41.802914534],[-71.475586541,41.803135533],[-71.475639541,41.803353533],[-71.475670541,41.803456534],[-71.475769541,41.803883534],[-71.475853541,41.804177534],[-71.475899541,41.804306534],[-71.475914541,41.804333534],[-71.476006541,41.804558533],[-71.476067541,41.804684534],[-71.476120541,41.804810534],[-71.476158541,41.804882534],[-71.476189541,41.804955534],[-71.476227541,41.805024534],[-71.476234541,41.805046534],[-71.476250541,41.805069534],[-71.476326541,41.805264534],[-71.476402541,41.805252534],[-71.476494541,41.805245534],[-71.478839542,41.805203534],[-71.478867542,41.805203534],[-71.479416543,41.805188534],[-71.480148542,41.805169534],[-71.481041543,41.805134534],[-71.481123543,41.805130534],[-71.482155543,41.805081534],[-71.482712543,41.805066533],[-71.483215544,41.805073534],[-71.483810543,41.805081534],[-71.484146544,41.805092534],[-71.484436544,41.805107533],[-71.484711544,41.805134534],[-71.485023544,41.805184533],[-71.485306544,41.805241533],[-71.485435544,41.805272534],[-71.485565544,41.805294534],[-71.485664544,41.805306534],[-71.485870545,41.805317534],[-71.485939544,41.805325534],[-71.486443544,41.805352534],[-71.486801545,41.805367534],[-71.487030545,41.805386534],[-71.487190545,41.805378533],[-71.488022545,41.805133534],[-71.488327545,41.805043534],[-71.488503546,41.805012533],[-71.488708545,41.804993533],[-71.488808545,41.804993533],[-71.489838545,41.804928533],[-71.489632546,41.804749534],[-71.488235545,41.803479534],[-71.487068544,41.802468533],[-71.486877544,41.802277533],[-71.486832544,41.802239533],[-71.486656544,41.802048533],[-71.486534545,41.801896533],[-71.486458544,41.801781533],[-71.486320544,41.801548533],[-71.489029635,41.801673737],[-71.492610222,41.801829415],[-71.494741809,41.799937332],[-71.494705884,41.798632034],[-71.495005263,41.796488472],[-71.498392548,41.797437532],[-71.498382548,41.797379532],[-71.498382548,41.797321532],[-71.498348548,41.797262532],[-71.498324548,41.797208531],[-71.498421548,41.797112532],[-71.498414548,41.797052531],[-71.498425548,41.796996532],[-71.498445548,41.796937532],[-71.498447548,41.796892532],[-71.498466548,41.796780531],[-71.498445548,41.796727532],[-71.498399548,41.796673532],[-71.498335548,41.796642531],[-71.498281548,41.796594532],[-71.498250548,41.796543531],[-71.498241548,41.796482532],[-71.498273548,41.796425532],[-71.498280548,41.796384532],[-71.498228548,41.796329531],[-71.498166548,41.796275531],[-71.498026548,41.796180532],[-71.497962548,41.796131532],[-71.497928547,41.796071532],[-71.497892548,41.795952532],[-71.497887547,41.795915532],[-71.497884548,41.795897532],[-71.497887547,41.795764531],[-71.497897548,41.795710531],[-71.498970548,41.795582532],[-71.498817548,41.795308532],[-71.498276547,41.794228531],[-71.497581547,41.792862531],[-71.497009547,41.791638531],[-71.496758547,41.791039531],[-71.496597547,41.791069531],[-71.495699547,41.79118453],[-71.495140546,41.791256531],[-71.495059546,41.791266531],[-71.493454546,41.791466531],[-71.493187546,41.791504531],[-71.493057546,41.791520531],[-71.492805546,41.791535531],[-71.492630546,41.791535531],[-71.492203546,41.791527531],[-71.491821545,41.791493531],[-71.491501546,41.791455531],[-71.490921546,41.791390531],[-71.490700545,41.791371531],[-71.490555545,41.791367531],[-71.490471545,41.791371531],[-71.490334545,41.791378531],[-71.490166545,41.791401531],[-71.490105545,41.791417531],[-71.489983545,41.791447531],[-71.489799545,41.791504531],[-71.489563545,41.791600531],[-71.489410545,41.791687531],[-71.488976544,41.792015531],[-71.488342545,41.792504532],[-71.487717544,41.792981531],[-71.487373544,41.793229531],[-71.486885544,41.793579531],[-71.486847544,41.793610532],[-71.486504544,41.793877531],[-71.486145543,41.794106531],[-71.485977544,41.794220532],[-71.485718543,41.794388532],[-71.485466543,41.794537531],[-71.484802543,41.794922532],[-71.484421543,41.795166532],[-71.484276543,41.795254532],[-71.483948543,41.795422532],[-71.483849543,41.795468532],[-71.483223543,41.795777532],[-71.482776543,41.795986532],[-71.482727543,41.796006532],[-71.482498542,41.796093532],[-71.482330543,41.796151532],[-71.482010542,41.796269533],[-71.481956542,41.796288533],[-71.481758542,41.796372532],[-71.481552542,41.796444533],[-71.481354542,41.796505532],[-71.481102542,41.796574532],[-71.480904542,41.796620533],[-71.480705542,41.796658533],[-71.480453542,41.796700532],[-71.479942542,41.796795533],[-71.479813542,41.796830533],[-71.479736542,41.796860532],[-71.479568542,41.796936532],[-71.479537541,41.796954532],[-71.479447542,41.796891533],[-71.479369542,41.796859532],[-71.479282541,41.796856532],[-71.479002542,41.796857532],[-71.478929541,41.796862532],[-71.478794541,41.796890533],[-71.478682541,41.796920532],[-71.478615542,41.796947533],[-71.478537542,41.796990533],[-71.478457542,41.797026533],[-71.478398542,41.797038532],[-71.478254541,41.797006533],[-71.478179541,41.796980532],[-71.477952542,41.796890533],[-71.477879541,41.796864532],[-71.477808541,41.796844532],[-71.477706541,41.796826532],[-71.477601541,41.796825532],[-71.477452541,41.796831533],[-71.477347541,41.796831533],[-71.477244541,41.796820532],[-71.477024541,41.796776533],[-71.476802541,41.796746532],[-71.476694541,41.796745532],[-71.47658954,41.796750533],[-71.47643654,41.796771533],[-71.476352541,41.796775533],[-71.476191541,41.796772533],[-71.47583454,41.796729532],[-71.475744541,41.796698533],[-71.475684541,41.796619533],[-71.47565554,41.796551532],[-71.47562154,41.796492532],[-71.47556254,41.796450532],[-71.475474541,41.796425533],[-71.47538254,41.796415532],[-71.47528754,41.796411532],[-71.475202541,41.796402533],[-71.47511954,41.796380533],[-71.475027541,41.796339532],[-71.47495754,41.796313532],[-71.47487954,41.796293532],[-71.47480154,41.796279532],[-71.47472454,41.796279532],[-71.47464254,41.796290532],[-71.47456354,41.796312532],[-71.47448854,41.796344533],[-71.47429354,41.796452532],[-71.47416154,41.796505532],[-71.47408054,41.796531532],[-71.47400954,41.796539533],[-71.47398454,41.796540533],[-71.47371754,41.796513532],[-71.47368254,41.796513532],[-71.47360254,41.796505532],[-71.47344854,41.796471532],[-71.47336154,41.796464533],[-71.473120539,41.796463533],[-71.47296054,41.796432532],[-71.472733539,41.796413532],[-71.47257054,41.796391532],[-71.47251254,41.796391532],[-71.47243154,41.796399533],[-71.472362539,41.796431532],[-71.472310539,41.796468532],[-71.47223554,41.796571532],[-71.47210054,41.796724532],[-71.47206354,41.796774533],[-71.472036539,41.796824532],[-71.471912539,41.796928533],[-71.471932539,41.796988533],[-71.471940539,41.797045533],[-71.471992539,41.797168532],[-71.472014539,41.797237533],[-71.472026539,41.797304532],[-71.47202154,41.797432533],[-71.471976539,41.797491533],[-71.471823539,41.797578532],[-71.471784539,41.797639532],[-71.47176854,41.797707533],[-71.471786539,41.797773532],[-71.471819539,41.797834532],[-71.47180754,41.797894533],[-71.471705539,41.798061533],[-71.471665539,41.798191533],[-71.471635539,41.798255533],[-71.471609539,41.798299532],[-71.471598539,41.798318532],[-71.471552539,41.798377532],[-71.471501539,41.798416532],[-71.471347539,41.798487533],[-71.471253539,41.798521533],[-71.471005539,41.798590532],[-71.470932539,41.798604533],[-71.470909539,41.798610532],[-71.470845539,41.798626533],[-71.470660538,41.798665533],[-71.470496539,41.798718533],[-71.470451539,41.798725533],[-71.470387538,41.798752533],[-71.470105539,41.798766533],[-71.470042539,41.798776533],[-71.469973539,41.798806533],[-71.469832539,41.798839533],[-71.469752539,41.798844533],[-71.469678539,41.798844533],[-71.469597539,41.798820533],[-71.469522539,41.798782533],[-71.469463539,41.798725533],[-71.469428539,41.798652533],[-71.469384539,41.798540533],[-71.469328539,41.798470533],[-71.469278538,41.798428533],[-71.469077539,41.798298532],[-71.468939539,41.798238533],[-71.468849538,41.798199533],[-71.468834538,41.798145533],[-71.468794538,41.798106533],[-71.468666538,41.798087533],[-71.468572539,41.798097533],[-71.468489538,41.798120533],[-71.468413538,41.798134533],[-71.468341538,41.798127533],[-71.468211538,41.798038533],[-71.468122538,41.798006532],[-71.467920538,41.798004533],[-71.467813538,41.798011533],[-71.467716538,41.798040533],[-71.467636538,41.798079533],[-71.467582538,41.798117533],[-71.467479538,41.798213533],[-71.467441538,41.798265533],[-71.467348538,41.798362533],[-71.467374538,41.798423533],[-71.467380538,41.798488533],[-71.467354538,41.798561533],[-71.467270538,41.798712533],[-71.467185538,41.798848533],[-71.467081538,41.799073533],[-71.467018538,41.799270533],[-71.467009538,41.799325533],[-71.466991538,41.799390533],[-71.466906538,41.799482533],[-71.466905538,41.799500533],[-71.466881537,41.799502533],[-71.466869538,41.799536533],[-71.466871538,41.799650533],[-71.466924538,41.799762533],[-71.466940538,41.799882533],[-71.467022538,41.800025533],[-71.467027538,41.800093533],[-71.466993538,41.800237533],[-71.466968538,41.800291533],[-71.466893538,41.800410533],[-71.466873538,41.800467533],[-71.466859537,41.800539534],[-71.466854538,41.800627533],[-71.466871538,41.801415534],[-71.466851538,41.801471534],[-71.466804538,41.801524534],[-71.466685537,41.801624534],[-71.466650538,41.801687534],[-71.466623537,41.801757534],[-71.466590538,41.801901534],[-71.466582538,41.801966533],[-71.466546537,41.802104533],[-71.466509537,41.802170534],[-71.466461538,41.802236534],[-71.466338538,41.802359534],[-71.466292537,41.802421534],[-71.466209538,41.802610533],[-71.466167538,41.802660534],[-71.466027538,41.803757534],[-71.464315537,41.804171534],[-71.463665537,41.805054534]]]]}}"}, +{"type": "precinct", "typeId": 1604, "areaId": 25790, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":129,\"NAME\":\"1604\",\"SHAPE_Length\":0.18005439922566,\"SHAPE_Area\":-0.0010947224881137},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.507195552,41.825711537],[-71.507439553,41.825772537],[-71.507584552,41.825814538],[-71.507889552,41.825894537],[-71.508179553,41.825978537],[-71.510414553,41.826702537],[-71.511032553,41.826916537],[-71.512108554,41.827286537],[-71.512421554,41.827343537],[-71.513412554,41.827641537],[-71.514641555,41.828007537],[-71.515831555,41.828366538],[-71.516022555,41.828423538],[-71.516113556,41.828446538],[-71.517044556,41.828720537],[-71.517181556,41.828764537],[-71.517452556,41.828846537],[-71.518836556,41.829261538],[-71.519046556,41.829325537],[-71.519524557,41.829468537],[-71.519825556,41.829552538],[-71.519974557,41.829598537],[-71.520409556,41.829728538],[-71.520676557,41.829811538],[-71.521538558,41.830059538],[-71.521797557,41.830124537],[-71.521957557,41.830166537],[-71.522389558,41.830267537],[-71.522957558,41.830399537],[-71.523560558,41.830548538],[-71.524101558,41.830689538],[-71.524551558,41.830799538],[-71.524940558,41.830902538],[-71.525078558,41.830937538],[-71.525513559,41.830990537],[-71.525848559,41.831017538],[-71.526230559,41.831021538],[-71.526779559,41.830990537],[-71.52711556,41.830952537],[-71.527519559,41.830883538],[-71.528038559,41.830784538],[-71.528702559,41.830651537],[-71.53001456,41.830403537],[-71.530663561,41.830273537],[-71.53186056,41.830044537],[-71.53275356,41.829888537],[-71.533124561,41.829826537],[-71.533287561,41.829800537],[-71.534126561,41.829659537],[-71.535398562,41.829447537],[-71.535454562,41.829438537],[-71.535896562,41.829373537],[-71.536263562,41.829342537],[-71.536469562,41.829331537],[-71.536652563,41.829331537],[-71.536919562,41.829342537],[-71.537285562,41.829377537],[-71.537308562,41.829243537],[-71.537247562,41.829090537],[-71.537117563,41.828816537],[-71.536873562,41.828263537],[-71.536423562,41.827359536],[-71.536015562,41.826444536],[-71.536003562,41.826428536],[-71.535789562,41.825936536],[-71.535583561,41.825482537],[-71.535545561,41.825417536],[-71.535393561,41.825066536],[-71.535179561,41.824635536],[-71.535019561,41.824238536],[-71.534895562,41.823943535],[-71.534813561,41.823746536],[-71.534630561,41.823346536],[-71.534462561,41.822956536],[-71.534248561,41.822430536],[-71.533844561,41.821545535],[-71.533562561,41.820858536],[-71.533386561,41.820450536],[-71.533250561,41.820099536],[-71.53318856,41.819939535],[-71.53286056,41.819176535],[-71.53276156,41.818966535],[-71.53271556,41.818858535],[-71.53260056,41.818585535],[-71.532478561,41.818348535],[-71.53239456,41.818161535],[-71.53266156,41.818104535],[-71.53322656,41.817997534],[-71.53330256,41.817990535],[-71.533409561,41.817997534],[-71.53351656,41.818028535],[-71.533661561,41.818093534],[-71.533821561,41.818150534],[-71.534088561,41.818222535],[-71.534401561,41.818276535],[-71.53464556,41.818280535],[-71.535068561,41.818264535],[-71.535851562,41.818234535],[-71.536156561,41.818219535],[-71.536240562,41.818222535],[-71.536331561,41.818234535],[-71.536522561,41.818276535],[-71.537437562,41.818543534],[-71.537758562,41.818013535],[-71.538101562,41.817490534],[-71.538315562,41.817074535],[-71.538643562,41.816513534],[-71.538849562,41.816231534],[-71.539154562,41.815674534],[-71.539490562,41.815178534],[-71.539268562,41.815018534],[-71.539040562,41.814824534],[-71.538757562,41.814640534],[-71.538200562,41.814335534],[-71.537918562,41.814251534],[-71.537590561,41.814198534],[-71.537216562,41.814129534],[-71.536972561,41.814091534],[-71.536774561,41.814072534],[-71.536491561,41.814034534],[-71.536110561,41.814015534],[-71.535477561,41.814022534],[-71.535149561,41.814019534],[-71.534477561,41.813977534],[-71.534325561,41.813961534],[-71.533958561,41.813889534],[-71.53373056,41.813824534],[-71.53305856,41.813614534],[-71.53273856,41.813523534],[-71.53244056,41.813412533],[-71.53223456,41.813340534],[-71.531898559,41.813233534],[-71.53177656,41.813202534],[-71.53160956,41.813176534],[-71.531395559,41.813149534],[-71.531235559,41.813122534],[-71.530960559,41.813057534],[-71.530846559,41.813034534],[-71.53037356,41.813034534],[-71.53041256,41.812902534],[-71.530441559,41.812809534],[-71.530434559,41.812729533],[-71.53037356,41.812642534],[-71.530212559,41.812493534],[-71.529884559,41.812237534],[-71.529648559,41.812069533],[-71.529564559,41.812004534],[-71.529182559,41.811764534],[-71.528664558,41.811478534],[-71.528358559,41.811375534],[-71.528114558,41.811283534],[-71.527954559,41.811253533],[-71.527473558,41.811215534],[-71.527252559,41.811203534],[-71.527069558,41.811165534],[-71.526901558,41.811089534],[-71.526787558,41.811001534],[-71.526688557,41.810910534],[-71.526596558,41.810845534],[-71.526268558,41.810700534],[-71.525887558,41.810578534],[-71.525749558,41.810543534],[-71.525558557,41.810540534],[-71.525368557,41.810547533],[-71.524979557,41.810547533],[-71.524689557,41.810540534],[-71.524361557,41.810517534],[-71.524147557,41.810482534],[-71.523994557,41.810433533],[-71.523872557,41.810387534],[-71.523743557,41.810307534],[-71.523621557,41.810200533],[-71.523483557,41.810059533],[-71.523270557,41.809883533],[-71.523071557,41.809739534],[-71.522957557,41.809651533],[-71.522896557,41.809582534],[-71.522865557,41.809517533],[-71.522827556,41.809388534],[-71.522781557,41.809292534],[-71.522705557,41.809212534],[-71.522560556,41.809121533],[-71.522331556,41.809006533],[-71.522133556,41.808892533],[-71.521965557,41.808823534],[-71.521797556,41.808773533],[-71.521591556,41.808739533],[-71.520775556,41.808693533],[-71.520546555,41.808648534],[-71.520325556,41.808590534],[-71.519974556,41.808426533],[-71.519653555,41.808194533],[-71.519554555,41.808087534],[-71.519463555,41.807999533],[-71.519241555,41.807698533],[-71.518990555,41.807377533],[-71.518898555,41.807297533],[-71.518715555,41.807202533],[-71.518524555,41.807091533],[-71.518456555,41.807068533],[-71.517975555,41.806862533],[-71.517815554,41.806775533],[-71.517677555,41.806683533],[-71.517532555,41.806569533],[-71.517159554,41.806260533],[-71.517036554,41.806179533],[-71.516891555,41.806107533],[-71.516708554,41.806034533],[-71.516479554,41.805890533],[-71.516388555,41.805870533],[-71.516205554,41.805821533],[-71.515961555,41.805725533],[-71.515312554,41.805439533],[-71.514786554,41.805220533],[-71.514618553,41.805161533],[-71.514472554,41.805119533],[-71.514420554,41.805104532],[-71.514353554,41.805091533],[-71.514000553,41.805020533],[-71.512772553,41.804772532],[-71.511925553,41.804650533],[-71.510933552,41.804573533],[-71.510040552,41.804509533],[-71.508507552,41.804387533],[-71.508316552,41.804383532],[-71.507607551,41.804417533],[-71.506882551,41.804459533],[-71.505501551,41.804497533],[-71.50363955,41.804566533],[-71.50298355,41.804593533],[-71.50260255,41.804585533],[-71.502121549,41.804600533],[-71.50195355,41.804604533],[-71.50172455,41.804619533],[-71.501556549,41.804619533],[-71.50145055,41.804608533],[-71.501183549,41.804543533],[-71.501091549,41.804509533],[-71.500999549,41.804470533],[-71.500961549,41.804448533],[-71.500862549,41.804409533],[-71.500679549,41.804371533],[-71.500549549,41.804356533],[-71.500450549,41.804356533],[-71.500343549,41.804367533],[-71.500229549,41.804398533],[-71.499359549,41.804501533],[-71.499306549,41.804501533],[-71.499023548,41.804531533],[-71.498863548,41.804535534],[-71.498787548,41.804535534],[-71.498520548,41.804520533],[-71.498367549,41.804520533],[-71.498146548,41.804531533],[-71.498016548,41.804543533],[-71.497917548,41.804558533],[-71.497681548,41.804608533],[-71.496834548,41.804810534],[-71.496376548,41.804875533],[-71.495529547,41.804978533],[-71.495265547,41.805017533],[-71.495124547,41.805019534],[-71.494991547,41.805014533],[-71.494884547,41.804994533],[-71.494795547,41.804970533],[-71.494714547,41.804964534],[-71.494640547,41.804953533],[-71.494573547,41.804956533],[-71.494485547,41.804950533],[-71.494278547,41.804953533],[-71.494217547,41.804982534],[-71.494016547,41.805098534],[-71.493679547,41.805165533],[-71.493034546,41.805264533],[-71.492973546,41.805279533],[-71.492126547,41.805447534],[-71.491890546,41.805504534],[-71.491837547,41.805531534],[-71.491661547,41.805607534],[-71.491455546,41.805680534],[-71.491173546,41.805767533],[-71.491005546,41.805832534],[-71.490982546,41.805821534],[-71.490143545,41.805199534],[-71.489838545,41.804928533],[-71.488808545,41.804993533],[-71.488708545,41.804993533],[-71.488503546,41.805012533],[-71.488327545,41.805043534],[-71.488022545,41.805133534],[-71.487190545,41.805378533],[-71.487030545,41.805386534],[-71.486801545,41.805367534],[-71.486443544,41.805352534],[-71.485939544,41.805325534],[-71.485870545,41.805317534],[-71.485664544,41.805306534],[-71.485565544,41.805294534],[-71.485435544,41.805272534],[-71.485306544,41.805241533],[-71.485023544,41.805184533],[-71.484711544,41.805134534],[-71.484436544,41.805107533],[-71.484146544,41.805092534],[-71.483810543,41.805081534],[-71.483215544,41.805073534],[-71.482712543,41.805066533],[-71.482155543,41.805081534],[-71.481123543,41.805130534],[-71.481041543,41.805134534],[-71.480148542,41.805169534],[-71.479416543,41.805188534],[-71.479660542,41.806290534],[-71.479813542,41.806904534],[-71.479973543,41.807598535],[-71.480019543,41.807751535],[-71.480034543,41.807827535],[-71.480049542,41.807976534],[-71.480049542,41.808052534],[-71.480095543,41.808533535],[-71.480064542,41.808915535],[-71.480049543,41.808998535],[-71.480057543,41.809079535],[-71.480072543,41.809155535],[-71.480186543,41.809399535],[-71.480255542,41.809521535],[-71.479187542,41.809574535],[-71.479086542,41.809581535],[-71.478256542,41.809639535],[-71.478096542,41.809643535],[-71.478119542,41.809994535],[-71.478149542,41.810288535],[-71.478394542,41.810284535],[-71.478317542,41.810650535],[-71.478271542,41.810917535],[-71.478218542,41.811028535],[-71.478203542,41.811043535],[-71.478119542,41.811070536],[-71.477837542,41.811085535],[-71.477364542,41.811089536],[-71.477684542,41.811501535],[-71.477745542,41.811615536],[-71.477798542,41.811764535],[-71.477669542,41.811795535],[-71.477440542,41.811860535],[-71.477005542,41.812020535],[-71.476631541,41.812168535],[-71.475967541,41.812447535],[-71.475792541,41.812516535],[-71.476057542,41.813216536],[-71.476027541,41.813689535],[-71.476034542,41.813816536],[-71.475896541,41.813940535],[-71.475411541,41.814373536],[-71.474891542,41.814577536],[-71.475136541,41.814864536],[-71.478266542,41.815819536],[-71.483220544,41.817330537],[-71.483909544,41.817140536],[-71.485495545,41.816702536],[-71.485695545,41.817260536],[-71.485771545,41.817472536],[-71.485573545,41.817536536],[-71.484840544,41.817788536],[-71.483925544,41.818165537],[-71.483764545,41.818233536],[-71.481043543,41.819378537],[-71.480141543,41.819760537],[-71.479996543,41.819817537],[-71.479390543,41.820060537],[-71.478978543,41.820214537],[-71.478710543,41.820316536],[-71.478607543,41.820351537],[-71.478722543,41.820382537],[-71.478989542,41.820463537],[-71.479248543,41.820542537],[-71.479973543,41.820755537],[-71.480354543,41.820870537],[-71.481606544,41.821259537],[-71.481689544,41.821282537],[-71.482201544,41.821434537],[-71.482918544,41.821644537],[-71.483490545,41.821808537],[-71.483749544,41.821885537],[-71.484161544,41.821995537],[-71.484375544,41.822045537],[-71.484688545,41.822110537],[-71.485039545,41.822174537],[-71.485588545,41.822262537],[-71.486122546,41.822335537],[-71.486296546,41.822361537],[-71.486832545,41.822441537],[-71.487000546,41.822472537],[-71.487305546,41.822529537],[-71.487541546,41.822571537],[-71.488243546,41.822720537],[-71.488373546,41.822743537],[-71.488853547,41.822838537],[-71.488892547,41.822842537],[-71.489998547,41.823021537],[-71.490547547,41.823109537],[-71.491104547,41.823204537],[-71.491402547,41.823239537],[-71.491570547,41.823254537],[-71.491814547,41.823265537],[-71.492065547,41.823269537],[-71.492348547,41.823265537],[-71.492485547,41.823258537],[-71.492645547,41.823243537],[-71.493546548,41.823136537],[-71.493965547,41.823094537],[-71.494308548,41.823082537],[-71.494598548,41.823090537],[-71.494865548,41.823113537],[-71.495117548,41.823143536],[-71.495453548,41.823204537],[-71.496101549,41.823342537],[-71.496880549,41.823487537],[-71.499016549,41.823906537],[-71.49916855,41.823941537],[-71.50091655,41.824345537],[-71.50262555,41.824711537],[-71.504700552,41.825165537],[-71.505989552,41.825451537],[-71.506523553,41.825570537],[-71.507133552,41.825695537],[-71.507195552,41.825711537]]]]}}"}, +{"type": "precinct", "typeId": 1605, "areaId": 25789, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":128,\"NAME\":\"1605\",\"SHAPE_Length\":0.1020672819633,\"SHAPE_Area\":-0.00055921828773618},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.548630566,41.832569537],[-71.549622566,41.832692537],[-71.550964567,41.832852537],[-71.551155567,41.832875537],[-71.551720567,41.832943537],[-71.552249568,41.833007537],[-71.552452567,41.833031537],[-71.553032568,41.833092537],[-71.553604568,41.833168537],[-71.554008568,41.833207537],[-71.555542569,41.833275537],[-71.555687568,41.833283537],[-71.556203569,41.833300537],[-71.556976569,41.833325537],[-71.557182569,41.833334537],[-71.557533569,41.833348537],[-71.558067569,41.833382537],[-71.55841157,41.833435537],[-71.55878457,41.833500537],[-71.55932657,41.833607537],[-71.56016557,41.833786537],[-71.56108957,41.833973537],[-71.56155757,41.834078537],[-71.561653571,41.834099537],[-71.562897571,41.834355537],[-71.563538571,41.834496537],[-71.563919571,41.834568537],[-71.564331571,41.834641537],[-71.564728572,41.834698537],[-71.565071572,41.834740537],[-71.565506572,41.834782537],[-71.566048572,41.834828537],[-71.566635572,41.834858537],[-71.567436573,41.834927537],[-71.567493572,41.834931537],[-71.568039573,41.834969537],[-71.568840573,41.835034537],[-71.569572574,41.835083537],[-71.569760573,41.835098537],[-71.569888573,41.835108537],[-71.569826573,41.835001537],[-71.569769573,41.834900537],[-71.569711573,41.834800537],[-71.569267573,41.834031537],[-71.568192572,41.828522536],[-71.566615571,41.821009534],[-71.565800571,41.817129534],[-71.565416571,41.815301534],[-71.565346571,41.814968534],[-71.56391957,41.814865533],[-71.56376657,41.814855533],[-71.56332457,41.814827533],[-71.56278257,41.814782533],[-71.561623569,41.814698534],[-71.561119569,41.814656534],[-71.56046357,41.814614533],[-71.560028569,41.814576533],[-71.559410569,41.814534533],[-71.558868568,41.814503534],[-71.558403568,41.814469533],[-71.557671568,41.814392533],[-71.556671568,41.814301533],[-71.556084568,41.814289533],[-71.555473567,41.814259533],[-71.555016567,41.814221533],[-71.554451567,41.814167534],[-71.553970567,41.814152534],[-71.553513567,41.814114533],[-71.553070567,41.814072534],[-71.552597567,41.814034534],[-71.551410566,41.813964533],[-71.551041566,41.813942533],[-71.550735566,41.813916534],[-71.550560566,41.813931534],[-71.550491566,41.813980533],[-71.550400566,41.814148534],[-71.550301566,41.814274533],[-71.550072565,41.814434534],[-71.549522566,41.814835533],[-71.549286566,41.815014533],[-71.549118565,41.815113534],[-71.548874566,41.815159534],[-71.548210565,41.815232534],[-71.548050565,41.815209533],[-71.547890565,41.815190534],[-71.547623565,41.815140534],[-71.547279565,41.815033533],[-71.547028565,41.814961534],[-71.546822565,41.814976534],[-71.546532565,41.815056534],[-71.546242565,41.815190534],[-71.545891565,41.815327534],[-71.545494564,41.815442534],[-71.544998565,41.815560534],[-71.544479564,41.815712534],[-71.544006563,41.815823534],[-71.543541563,41.815918534],[-71.543129563,41.815979534],[-71.542725563,41.816071534],[-71.542366564,41.816117534],[-71.541756563,41.816155534],[-71.541062563,41.815966534],[-71.540985563,41.815945535],[-71.540627563,41.815819534],[-71.540337563,41.815682534],[-71.540070562,41.815529534],[-71.539780562,41.815369534],[-71.539490562,41.815178534],[-71.539154562,41.815674534],[-71.538849562,41.816231534],[-71.538643562,41.816513534],[-71.538315562,41.817074535],[-71.538101562,41.817490534],[-71.537758562,41.818013535],[-71.537437562,41.818543534],[-71.536522561,41.818276535],[-71.536331561,41.818234535],[-71.536240562,41.818222535],[-71.536156561,41.818219535],[-71.535851562,41.818234535],[-71.535068561,41.818264535],[-71.53464556,41.818280535],[-71.534401561,41.818276535],[-71.534088561,41.818222535],[-71.533821561,41.818150534],[-71.533661561,41.818093534],[-71.53351656,41.818028535],[-71.533409561,41.817997534],[-71.53330256,41.817990535],[-71.53322656,41.817997534],[-71.53266156,41.818104535],[-71.53239456,41.818161535],[-71.532478561,41.818348535],[-71.53260056,41.818585535],[-71.53271556,41.818858535],[-71.53276156,41.818966535],[-71.53286056,41.819176535],[-71.53318856,41.819939535],[-71.533250561,41.820099536],[-71.533386561,41.820450536],[-71.533562561,41.820858536],[-71.533844561,41.821545535],[-71.534248561,41.822430536],[-71.534462561,41.822956536],[-71.534630561,41.823346536],[-71.534813561,41.823746536],[-71.534895562,41.823943535],[-71.535019561,41.824238536],[-71.535179561,41.824635536],[-71.535393561,41.825066536],[-71.535545561,41.825417536],[-71.535583561,41.825482537],[-71.535789562,41.825936536],[-71.536003562,41.826428536],[-71.536015562,41.826444536],[-71.536423562,41.827359536],[-71.536873562,41.828263537],[-71.537117563,41.828816537],[-71.537247562,41.829090537],[-71.537308562,41.829243537],[-71.537285562,41.829377537],[-71.537567563,41.829438537],[-71.538063562,41.829571537],[-71.538254562,41.829627537],[-71.539886564,41.830109537],[-71.540405563,41.830258537],[-71.541077564,41.830464537],[-71.541748564,41.830658537],[-71.542511564,41.830891537],[-71.543015564,41.831036537],[-71.543671565,41.831234537],[-71.544395565,41.831444537],[-71.545303565,41.831719537],[-71.546089566,41.831959537],[-71.546593566,41.832108537],[-71.546944566,41.832207537],[-71.547256566,41.832299537],[-71.547768566,41.832436537],[-71.548134566,41.832505537],[-71.548630566,41.832569537]]]]}}"}, +{"type": "precinct", "typeId": 1606, "areaId": 25791, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":130,\"NAME\":\"1606\",\"SHAPE_Length\":0.039884461208565,\"SHAPE_Area\":-7.1683785934541e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.480602545,41.846613542],[-71.480575545,41.846644542],[-71.480551544,41.846701542],[-71.480540545,41.846759541],[-71.480538545,41.846830542],[-71.480571545,41.846911542],[-71.480597545,41.847020542],[-71.480643545,41.847062542],[-71.480697545,41.847102542],[-71.480715545,41.847166542],[-71.480743544,41.847219542],[-71.480641545,41.847409542],[-71.480617545,41.847467542],[-71.480600545,41.847523542],[-71.480592545,41.847580542],[-71.480581545,41.847835542],[-71.480585545,41.847890542],[-71.480597545,41.847953542],[-71.480553545,41.848183542],[-71.480577545,41.848272542],[-71.480569545,41.848541542],[-71.480575545,41.848601542],[-71.480577545,41.848785543],[-71.480583545,41.848948542],[-71.480600545,41.849053543],[-71.480552545,41.849093543],[-71.480503545,41.849205542],[-71.480503545,41.849224542],[-71.480504545,41.849263542],[-71.480619545,41.849361542],[-71.480631545,41.849435542],[-71.480688545,41.849617543],[-71.480745545,41.849744542],[-71.480750545,41.849798543],[-71.480779545,41.849863542],[-71.480812545,41.849923542],[-71.480889545,41.850089543],[-71.480907545,41.850147543],[-71.480911545,41.850205543],[-71.480908545,41.850253542],[-71.480840545,41.850522543],[-71.480843545,41.850571543],[-71.480954545,41.850784543],[-71.480974545,41.850829543],[-71.481531545,41.850695543],[-71.481552545,41.850685543],[-71.481591545,41.850673543],[-71.481667545,41.850651543],[-71.481734546,41.850630543],[-71.481827546,41.850602542],[-71.481934545,41.850582542],[-71.482170545,41.850560543],[-71.483612546,41.850399543],[-71.484409546,41.850297542],[-71.485069547,41.850209543],[-71.485863547,41.850109543],[-71.486740547,41.850003542],[-71.486740547,41.849453542],[-71.486732547,41.849125542],[-71.486732547,41.848469542],[-71.486732547,41.847809542],[-71.486732546,41.847134542],[-71.486732546,41.846884542],[-71.486732546,41.846672542],[-71.486740547,41.846501542],[-71.486740547,41.846081541],[-71.486710546,41.845887541],[-71.486694546,41.845826541],[-71.486645547,41.845628541],[-71.486632546,41.845587542],[-71.486580547,41.845433541],[-71.486519546,41.845276542],[-71.486412547,41.845070541],[-71.486145546,41.844582541],[-71.486046547,41.844387541],[-71.485992546,41.844292541],[-71.485947547,41.844197541],[-71.485931546,41.844174541],[-71.485855546,41.844029541],[-71.485840546,41.843991541],[-71.485817546,41.843956541],[-71.485756546,41.843815541],[-71.485741546,41.843743541],[-71.485733547,41.843724541],[-71.485703546,41.843621541],[-71.485680546,41.843567541],[-71.485672547,41.843514541],[-71.485649546,41.843422541],[-71.485634547,41.843327541],[-71.485611546,41.843232541],[-71.485596547,41.843144541],[-71.485558547,41.843010541],[-71.485542546,41.842907541],[-71.485489546,41.842694541],[-71.485451546,41.842591541],[-71.485435546,41.842530541],[-71.485413546,41.842472541],[-71.485382546,41.842366541],[-71.485298546,41.842129541],[-71.485268546,41.842053541],[-71.485168546,41.841843541],[-71.485039546,41.841469541],[-71.484993546,41.841362541],[-71.484955545,41.841249541],[-71.484932546,41.841179541],[-71.484901546,41.841103541],[-71.484856546,41.840947541],[-71.484772546,41.84071854],[-71.484741545,41.84066054],[-71.484718546,41.84059954],[-71.484688546,41.84054254],[-71.484665545,41.84048554],[-71.484634546,41.84042854],[-71.484596546,41.840371541],[-71.484566545,41.840313541],[-71.484406546,41.84009254],[-71.484360546,41.840042541],[-71.484314545,41.839989541],[-71.484184546,41.83981754],[-71.484146546,41.839756541],[-71.483894546,41.83946654],[-71.483841546,41.83940954],[-71.483780546,41.83936054],[-71.483597545,41.839226541],[-71.483543545,41.83918054],[-71.483429546,41.83909654],[-71.483307545,41.839016541],[-71.483124545,41.838894541],[-71.482742545,41.838604541],[-71.482635545,41.838509541],[-71.482590545,41.83845954],[-71.482544545,41.83841754],[-71.482506545,41.83837554],[-71.482480545,41.83834154],[-71.482422545,41.83826554],[-71.482383545,41.83820354],[-71.482239545,41.837944541],[-71.482079545,41.837632541],[-71.482050544,41.83760154],[-71.482036545,41.837573541],[-71.481827545,41.83729254],[-71.481745545,41.83716054],[-71.481704544,41.83709354],[-71.481628545,41.83700654],[-71.481560545,41.83694154],[-71.481178544,41.83705954],[-71.480858545,41.83716654],[-71.480621545,41.83725854],[-71.480522544,41.83728854],[-71.480438544,41.83730754],[-71.480370545,41.83729254],[-71.480293545,41.83725854],[-71.480250544,41.83736154],[-71.480232544,41.83746054],[-71.480225544,41.83776454],[-71.480227544,41.837805541],[-71.480247544,41.838116541],[-71.480270544,41.838387541],[-71.479942545,41.83839854],[-71.479485544,41.83842554],[-71.479385544,41.838448541],[-71.479286544,41.83848254],[-71.478783544,41.838799541],[-71.478713544,41.83892054],[-71.478811544,41.83909754],[-71.478843544,41.839168541],[-71.478964544,41.839440541],[-71.479283544,41.840528541],[-71.479589544,41.841568541],[-71.479022544,41.841628541],[-71.479059544,41.841669541],[-71.479091544,41.841720541],[-71.479113544,41.841772541],[-71.479113544,41.841831541],[-71.479101544,41.841895541],[-71.479105544,41.841961541],[-71.479151544,41.842100541],[-71.479187544,41.842171541],[-71.479232544,41.842232541],[-71.479289544,41.842280541],[-71.479357545,41.842320541],[-71.479488544,41.842379541],[-71.479547544,41.842420541],[-71.479592544,41.842467542],[-71.479620544,41.842522541],[-71.479652544,41.842710541],[-71.479679544,41.842779542],[-71.479713544,41.842834541],[-71.479762545,41.842900541],[-71.479794544,41.842971541],[-71.479787544,41.843028541],[-71.479769544,41.843088541],[-71.479661544,41.843286542],[-71.479575544,41.843506541],[-71.479539544,41.843632542],[-71.479529545,41.843687541],[-71.479529545,41.843898541],[-71.479543544,41.843952541],[-71.479585544,41.844003542],[-71.479664545,41.844049541],[-71.480206544,41.843671541],[-71.479739544,41.844062542],[-71.479521544,41.844291541],[-71.479586545,41.844470542],[-71.480330545,41.845052542],[-71.480782544,41.845978542],[-71.480602545,41.846613542]]]]}}"}, +{"type": "precinct", "typeId": 1607, "areaId": 25792, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":131,\"NAME\":\"1607\",\"SHAPE_Length\":0.032375056707842,\"SHAPE_Area\":-3.8910749309818e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.47117654,41.823769537],[-71.47120754,41.823891538],[-71.471225541,41.823937538],[-71.47130654,41.824147538],[-71.471413541,41.824444538],[-71.471565541,41.824845538],[-71.47165754,41.825085538],[-71.47173354,41.825272538],[-71.471817541,41.825497538],[-71.472809541,41.825444538],[-71.473450541,41.825405538],[-71.474160541,41.825370538],[-71.474731542,41.825341538],[-71.474762542,41.825360538],[-71.474770542,41.825383538],[-71.475830542,41.825383538],[-71.475960542,41.825192538],[-71.475708542,41.825051538],[-71.475311542,41.824776538],[-71.475220542,41.824700538],[-71.475212542,41.824669538],[-71.475220542,41.824643538],[-71.475243541,41.824604538],[-71.475380541,41.824513538],[-71.475609542,41.824334537],[-71.475647542,41.824299538],[-71.475731542,41.824238537],[-71.475784542,41.824242538],[-71.475838542,41.824261538],[-71.476089542,41.824417538],[-71.476349542,41.824555538],[-71.476654542,41.824753538],[-71.476746542,41.824704537],[-71.476848542,41.824655538],[-71.477058542,41.824555538],[-71.477196542,41.824505538],[-71.477272542,41.824486538],[-71.477432542,41.824463538],[-71.477562543,41.824456538],[-71.477730543,41.824459538],[-71.477936542,41.824486538],[-71.478088543,41.824520538],[-71.478127543,41.824536538],[-71.478157543,41.824543538],[-71.478264543,41.824601538],[-71.478424543,41.824673538],[-71.478523543,41.824726537],[-71.478615543,41.824757538],[-71.478691543,41.824768538],[-71.478783543,41.824772538],[-71.478867543,41.824768538],[-71.478973543,41.824738538],[-71.479080543,41.824696538],[-71.479134543,41.824662538],[-71.479218543,41.824616538],[-71.479591544,41.824376537],[-71.479912543,41.824170538],[-71.480286544,41.823929537],[-71.480701544,41.823665538],[-71.481682544,41.823029537],[-71.482307544,41.822617537],[-71.482384544,41.822571537],[-71.482765544,41.822316537],[-71.483383544,41.821911537],[-71.483490545,41.821808537],[-71.482918544,41.821644537],[-71.482201544,41.821434537],[-71.481689544,41.821282537],[-71.481606544,41.821259537],[-71.480354543,41.820870537],[-71.479973543,41.820755537],[-71.479248543,41.820542537],[-71.478989542,41.820463537],[-71.478722543,41.820382537],[-71.478607543,41.820351537],[-71.478210542,41.820485537],[-71.477821542,41.820599537],[-71.477425543,41.820702537],[-71.477020542,41.820801537],[-71.476724543,41.820869537],[-71.476555542,41.820908537],[-71.475609542,41.821103537],[-71.475452542,41.821131537],[-71.475001542,41.821212537],[-71.474393541,41.821321537],[-71.473737541,41.821439537],[-71.473270541,41.821523538],[-71.47101854,41.821927538],[-71.47105254,41.821982537],[-71.47104154,41.821983537],[-71.471180541,41.822327537],[-71.471862541,41.823467538],[-71.472013541,41.823719538],[-71.47117654,41.823769537]]]]}}"}, +{"type": "precinct", "typeId": 1608, "areaId": 25793, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":132,\"NAME\":\"1608\",\"SHAPE_Length\":0.068576022963019,\"SHAPE_Area\":-0.00018772274123606},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.470444541,41.832920539],[-71.47060454,41.832837539],[-71.47064254,41.832817539],[-71.470688541,41.83280654],[-71.470863541,41.832745539],[-71.470917541,41.83273754],[-71.47103154,41.83273754],[-71.471222541,41.83275654],[-71.471558541,41.83282554],[-71.472130541,41.832913539],[-71.472534541,41.83298154],[-71.473740542,41.833187539],[-71.473976541,41.833229539],[-71.474365542,41.83328354],[-71.474670542,41.83337454],[-71.474968543,41.83347454],[-71.475182543,41.833561539],[-71.475319543,41.833622539],[-71.475479542,41.833737539],[-71.475571543,41.833813539],[-71.475830542,41.83402354],[-71.476051543,41.83417554],[-71.476128543,41.834240539],[-71.476463543,41.83450054],[-71.476685543,41.834671539],[-71.477036543,41.83491254],[-71.477158543,41.83498454],[-71.477257543,41.83504554],[-71.477356543,41.83509554],[-71.478119543,41.83468354],[-71.479820544,41.83378654],[-71.480743544,41.833294539],[-71.480843544,41.833233539],[-71.480949544,41.83316154],[-71.481781544,41.832741539],[-71.482040545,41.832569539],[-71.482368544,41.832329539],[-71.482704545,41.832062539],[-71.484327545,41.831270539],[-71.483376544,41.829899539],[-71.483162544,41.829674539],[-71.483315545,41.829556539],[-71.483788545,41.829163539],[-71.483864545,41.829098538],[-71.484291545,41.828755539],[-71.484398545,41.828675538],[-71.484856546,41.828320538],[-71.485039545,41.828183538],[-71.485680545,41.827698538],[-71.486015545,41.827443538],[-71.48600337,41.827298431],[-71.486002015,41.827282277],[-71.485892545,41.825977538],[-71.485695546,41.825665538],[-71.485718545,41.825646538],[-71.485725545,41.825608538],[-71.485718545,41.825501538],[-71.485680545,41.825341538],[-71.485603545,41.825093537],[-71.485504545,41.824734538],[-71.485374545,41.824334537],[-71.485352545,41.824253538],[-71.485298545,41.824143537],[-71.485260545,41.824082537],[-71.484871545,41.823647538],[-71.484770545,41.823542537],[-71.484650545,41.823418537],[-71.484482545,41.823220538],[-71.484467544,41.823166537],[-71.484467544,41.823132537],[-71.484459545,41.823079537],[-71.484528544,41.823067537],[-71.484589545,41.823040537],[-71.484642545,41.822979537],[-71.484711545,41.822880537],[-71.484795545,41.822720537],[-71.485039545,41.822174537],[-71.484688545,41.822110537],[-71.484375544,41.822045537],[-71.484161544,41.821995537],[-71.483749544,41.821885537],[-71.483490545,41.821808537],[-71.483383544,41.821911537],[-71.482765544,41.822316537],[-71.482384544,41.822571537],[-71.482307544,41.822617537],[-71.481682544,41.823029537],[-71.480701544,41.823665538],[-71.480286544,41.823929537],[-71.479912543,41.824170538],[-71.479591544,41.824376537],[-71.479218543,41.824616538],[-71.479134543,41.824662538],[-71.479080543,41.824696538],[-71.478973543,41.824738538],[-71.478867543,41.824768538],[-71.478783543,41.824772538],[-71.478691543,41.824768538],[-71.478615543,41.824757538],[-71.478523543,41.824726537],[-71.478424543,41.824673538],[-71.478264543,41.824601538],[-71.478157543,41.824543538],[-71.478127543,41.824536538],[-71.478088543,41.824520538],[-71.477936542,41.824486538],[-71.477730543,41.824459538],[-71.477562543,41.824456538],[-71.477432542,41.824463538],[-71.477272542,41.824486538],[-71.477196542,41.824505538],[-71.477058542,41.824555538],[-71.476848542,41.824655538],[-71.476746542,41.824704537],[-71.476654542,41.824753538],[-71.476349542,41.824555538],[-71.476089542,41.824417538],[-71.475838542,41.824261538],[-71.475784542,41.824242538],[-71.475731542,41.824238537],[-71.475647542,41.824299538],[-71.475609542,41.824334537],[-71.475380541,41.824513538],[-71.475243541,41.824604538],[-71.475220542,41.824643538],[-71.475212542,41.824669538],[-71.475220542,41.824700538],[-71.475311542,41.824776538],[-71.475708542,41.825051538],[-71.475960542,41.825192538],[-71.475830542,41.825383538],[-71.474770542,41.825383538],[-71.474762542,41.825360538],[-71.474731542,41.825341538],[-71.474160541,41.825370538],[-71.473450541,41.825405538],[-71.472809541,41.825444538],[-71.471817541,41.825497538],[-71.47173354,41.825272538],[-71.47165754,41.825085538],[-71.471565541,41.824845538],[-71.471413541,41.824444538],[-71.47130654,41.824147538],[-71.471225541,41.823937538],[-71.47120754,41.823891538],[-71.47117654,41.823769537],[-71.47030954,41.823819538],[-71.467623539,41.823977538],[-71.466483539,41.824044538],[-71.466314539,41.824052538],[-71.465271539,41.824105538],[-71.465076539,41.824109538],[-71.464765539,41.824145538],[-71.464602538,41.824161538],[-71.464057538,41.824216538],[-71.463886538,41.824228538],[-71.462909538,41.824299538],[-71.462591537,41.824336538],[-71.462206538,41.824380538],[-71.462122537,41.824451538],[-71.462126537,41.824474538],[-71.462166537,41.824589538],[-71.462225538,41.824789538],[-71.461936538,41.825123538],[-71.462080537,41.825548538],[-71.462303538,41.825801538],[-71.462504538,41.826138539],[-71.462542538,41.826461538],[-71.462523538,41.826478538],[-71.462366538,41.826693538],[-71.462333537,41.826744539],[-71.462309538,41.826797539],[-71.462297537,41.826984539],[-71.462306538,41.827055539],[-71.462332538,41.827146539],[-71.462355537,41.827200538],[-71.462387538,41.827256539],[-71.462412537,41.827311539],[-71.462432537,41.827421539],[-71.462454538,41.827489539],[-71.462495538,41.827537539],[-71.462556538,41.827649538],[-71.462594538,41.827699539],[-71.462660538,41.827753539],[-71.462748538,41.827775539],[-71.462804538,41.827775539],[-71.462873538,41.827810539],[-71.462930538,41.827855539],[-71.462983538,41.827840539],[-71.463065538,41.827844538],[-71.463145538,41.827889539],[-71.463200538,41.827927539],[-71.463249539,41.827973539],[-71.463348538,41.828082539],[-71.463461538,41.828222539],[-71.463635538,41.828413539],[-71.463676539,41.828483539],[-71.463744538,41.828624539],[-71.463793539,41.828689539],[-71.463948539,41.828849539],[-71.464021538,41.828947539],[-71.464125539,41.829144539],[-71.464180539,41.829236539],[-71.464304538,41.829405539],[-71.464422538,41.829605539],[-71.464569539,41.829885539],[-71.464646539,41.830079539],[-71.464686539,41.830134539],[-71.464744539,41.830255539],[-71.464750539,41.830324539],[-71.464742539,41.830596539],[-71.464693538,41.83066754],[-71.464722539,41.830773539],[-71.464726539,41.830830539],[-71.464737539,41.830886539],[-71.464758539,41.83093954],[-71.464758539,41.83099954],[-71.464769539,41.83105654],[-71.464803539,41.831127539],[-71.464860539,41.831189539],[-71.464922539,41.831223539],[-71.464992539,41.83125154],[-71.465100539,41.83127354],[-71.465246539,41.831275539],[-71.465319539,41.83128854],[-71.465416539,41.831322539],[-71.465615539,41.83142654],[-71.465693539,41.831456539],[-71.466091539,41.831519539],[-71.466177539,41.831517539],[-71.466293539,41.831491539],[-71.46646254,41.831460539],[-71.466861539,41.831418539],[-71.46702454,41.831412539],[-71.467191539,41.831417539],[-71.46726254,41.83142654],[-71.46743754,41.831460539],[-71.46759054,41.831499539],[-71.46767354,41.83152854],[-71.467756539,41.83156454],[-71.46791454,41.831648539],[-71.46798254,41.831692539],[-71.46803854,41.83173754],[-71.46822154,41.83193754],[-71.46828654,41.83199154],[-71.46835654,41.832041539],[-71.46848754,41.832121539],[-71.46875854,41.832316539],[-71.46881954,41.83237854],[-71.46888854,41.83243754],[-71.46895054,41.83247654],[-71.46902554,41.832511539],[-71.46911354,41.83254054],[-71.46930454,41.83257954],[-71.46940454,41.832583539],[-71.46969554,41.83263954],[-71.46979154,41.832664539],[-71.469987541,41.83273154],[-71.470258541,41.832839539],[-71.470367541,41.83288854],[-71.470444541,41.832920539]]]]}}"}, +{"type": "precinct", "typeId": 1609, "areaId": 25794, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":133,\"NAME\":\"1609\",\"SHAPE_Length\":0.080032816573272,\"SHAPE_Area\":-0.00021262826304065},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.477356543,41.83509554],[-71.477463543,41.83514854],[-71.477577543,41.83523254],[-71.477623543,41.83524754],[-71.477753543,41.83530154],[-71.478012543,41.83537754],[-71.478119543,41.83541554],[-71.478516544,41.83556454],[-71.479012543,41.83580454],[-71.479358543,41.83597954],[-71.479622544,41.83611354],[-71.479767544,41.83617854],[-71.480003544,41.83627054],[-71.480171544,41.83633154],[-71.480478544,41.83645354],[-71.480566545,41.83648854],[-71.481102544,41.83665954],[-71.481171545,41.83667454],[-71.481247545,41.83669754],[-71.481613545,41.83677754],[-71.481796544,41.83678954],[-71.482391545,41.83678954],[-71.482597545,41.83678154],[-71.483072545,41.83674754],[-71.483368545,41.836697539],[-71.483620545,41.83665554],[-71.483833545,41.83660554],[-71.483864545,41.83660254],[-71.484047545,41.83655654],[-71.484222545,41.83650654],[-71.484436545,41.83643854],[-71.485016545,41.836232539],[-71.485245546,41.83615554],[-71.485725546,41.835980539],[-71.486694546,41.83563754],[-71.486870546,41.83558354],[-71.487007546,41.83554554],[-71.487289547,41.83548054],[-71.487442546,41.835453539],[-71.487961546,41.83538154],[-71.488159546,41.83536254],[-71.488403547,41.835339539],[-71.488762547,41.835293539],[-71.488892547,41.83527054],[-71.489082547,41.835236539],[-71.489334547,41.835175539],[-71.489540547,41.83511054],[-71.489647547,41.83507254],[-71.489807547,41.83501554],[-71.490265547,41.834797539],[-71.490334548,41.834755539],[-71.490395548,41.834717539],[-71.490509548,41.834649539],[-71.490723548,41.834504539],[-71.491013548,41.834263539],[-71.491158547,41.834122539],[-71.491325548,41.833916539],[-71.491531547,41.833622539],[-71.491623548,41.833443539],[-71.491692548,41.833283539],[-71.491768548,41.833043539],[-71.491882547,41.832516539],[-71.491913548,41.832428538],[-71.491982548,41.832199539],[-71.492012548,41.832127539],[-71.492043548,41.832077538],[-71.492035547,41.832009539],[-71.492035547,41.831879539],[-71.492058547,41.831799539],[-71.492125548,41.831684539],[-71.492149548,41.831646538],[-71.492226548,41.831543539],[-71.492271547,41.831494538],[-71.492393548,41.831383539],[-71.492462548,41.831334538],[-71.492523547,41.831284539],[-71.492661548,41.831189539],[-71.492783548,41.831116539],[-71.492966548,41.831025538],[-71.493034548,41.831002538],[-71.493141548,41.830990538],[-71.493195548,41.830990538],[-71.493233548,41.830986538],[-71.493500548,41.830994539],[-71.493866549,41.831021539],[-71.494019549,41.831005538],[-71.494171548,41.830994539],[-71.494354549,41.830994539],[-71.494568549,41.831005538],[-71.495209549,41.831078539],[-71.496761549,41.831238538],[-71.497009549,41.831265538],[-71.497246549,41.831280538],[-71.497368549,41.831284538],[-71.49749055,41.831280538],[-71.497734549,41.831257538],[-71.49793255,41.831223538],[-71.49803255,41.831200538],[-71.49818455,41.831150538],[-71.49835255,41.831086538],[-71.49852055,41.831005538],[-71.49861155,41.830956538],[-71.49885655,41.830803539],[-71.49948955,41.830399538],[-71.49984755,41.830189538],[-71.50009255,41.830075538],[-71.50031355,41.829991538],[-71.50056555,41.829907538],[-71.50069455,41.829857538],[-71.50074055,41.829956538],[-71.500862551,41.830162539],[-71.501114551,41.830517538],[-71.501137551,41.830546538],[-71.501213551,41.830639538],[-71.50132055,41.830758538],[-71.501633551,41.831067538],[-71.501770551,41.831185538],[-71.501831551,41.831242538],[-71.501923551,41.831208538],[-71.502281551,41.830986538],[-71.502632551,41.830742538],[-71.502769551,41.830655538],[-71.502991552,41.830544538],[-71.503204552,41.830464538],[-71.503471551,41.830407538],[-71.503967552,41.830338538],[-71.504280552,41.830265538],[-71.504875552,41.830109538],[-71.505585552,41.829895538],[-71.505936552,41.829735537],[-71.505959552,41.829720538],[-71.506508552,41.829377538],[-71.506744552,41.829209537],[-71.506927553,41.829045538],[-71.507362552,41.828598538],[-71.507820553,41.828129538],[-71.507881553,41.828076538],[-71.507927553,41.828022537],[-71.507965553,41.827958538],[-71.507996553,41.827893538],[-71.508049552,41.827698538],[-71.508057553,41.827633537],[-71.508056553,41.827545538],[-71.508011553,41.827252538],[-71.507904553,41.826813537],[-71.507904553,41.826786538],[-71.507828553,41.826607537],[-71.507713552,41.826424537],[-71.507240553,41.825966537],[-71.507217552,41.825936537],[-71.507187552,41.825875537],[-71.507187552,41.825760537],[-71.507195552,41.825734537],[-71.507195552,41.825711537],[-71.507133552,41.825695537],[-71.506523553,41.825570537],[-71.505989552,41.825451537],[-71.504700552,41.825165537],[-71.50262555,41.824711537],[-71.50091655,41.824345537],[-71.49916855,41.823941537],[-71.499016549,41.823906537],[-71.496880549,41.823487537],[-71.496101549,41.823342537],[-71.495453548,41.823204537],[-71.495117548,41.823143536],[-71.494865548,41.823113537],[-71.494598548,41.823090537],[-71.494308548,41.823082537],[-71.493965547,41.823094537],[-71.493546548,41.823136537],[-71.492645547,41.823243537],[-71.492485547,41.823258537],[-71.492348547,41.823265537],[-71.492065547,41.823269537],[-71.491814547,41.823265537],[-71.491570547,41.823254537],[-71.491402547,41.823239537],[-71.491104547,41.823204537],[-71.490547547,41.823109537],[-71.489998547,41.823021537],[-71.488892547,41.822842537],[-71.488853547,41.822838537],[-71.488373546,41.822743537],[-71.488243546,41.822720537],[-71.487541546,41.822571537],[-71.487305546,41.822529537],[-71.487000546,41.822472537],[-71.486832545,41.822441537],[-71.486296546,41.822361537],[-71.486122546,41.822335537],[-71.485588545,41.822262537],[-71.485039545,41.822174537],[-71.484795545,41.822720537],[-71.484711545,41.822880537],[-71.484642545,41.822979537],[-71.484589545,41.823040537],[-71.484528544,41.823067537],[-71.484459545,41.823079537],[-71.484467544,41.823132537],[-71.484467544,41.823166537],[-71.484482545,41.823220538],[-71.484650545,41.823418537],[-71.484770545,41.823542537],[-71.484871545,41.823647538],[-71.485260545,41.824082537],[-71.485298545,41.824143537],[-71.485352545,41.824253538],[-71.485374545,41.824334537],[-71.485504545,41.824734538],[-71.485603545,41.825093537],[-71.485680545,41.825341538],[-71.485718545,41.825501538],[-71.485725545,41.825608538],[-71.485718545,41.825646538],[-71.485695546,41.825665538],[-71.485892545,41.825977538],[-71.486002015,41.827282277],[-71.48600337,41.827298431],[-71.486015545,41.827443538],[-71.485680545,41.827698538],[-71.485039545,41.828183538],[-71.484856546,41.828320538],[-71.484398545,41.828675538],[-71.484291545,41.828755539],[-71.483864545,41.829098538],[-71.483788545,41.829163539],[-71.483315545,41.829556539],[-71.483162544,41.829674539],[-71.483376544,41.829899539],[-71.484327545,41.831270539],[-71.482704545,41.832062539],[-71.482368544,41.832329539],[-71.482040545,41.832569539],[-71.481781544,41.832741539],[-71.480949544,41.83316154],[-71.480843544,41.833233539],[-71.480743544,41.833294539],[-71.479820544,41.83378654],[-71.478119543,41.83468354],[-71.477356543,41.83509554]]]]}}"}, +{"type": "precinct", "typeId": 1610, "areaId": 25795, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":134,\"NAME\":\"1610\",\"SHAPE_Length\":0.12211503820025,\"SHAPE_Area\":-0.00068745529257667},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.495487551,41.868677546],[-71.495512551,41.868665546],[-71.495594551,41.868653546],[-71.495690551,41.868659546],[-71.495872551,41.868649546],[-71.495952551,41.868651546],[-71.496062551,41.868664546],[-71.496165551,41.868681546],[-71.496246551,41.868690546],[-71.496320551,41.868703546],[-71.496400552,41.868723546],[-71.496487551,41.868716546],[-71.496580551,41.868727546],[-71.496653552,41.868731546],[-71.496749552,41.868754546],[-71.496837552,41.868784546],[-71.496920551,41.868823546],[-71.496942552,41.868871546],[-71.496918551,41.868927546],[-71.496933552,41.868950546],[-71.497014551,41.868968546],[-71.497201552,41.868969546],[-71.497297552,41.868978546],[-71.497632552,41.868879546],[-71.498533552,41.868701546],[-71.499657553,41.868481546],[-71.500498552,41.868348546],[-71.502739554,41.867994546],[-71.503142553,41.867931545],[-71.504247554,41.867758546],[-71.504997554,41.867695545],[-71.505927554,41.867567546],[-71.507980555,41.867291545],[-71.508090555,41.867280545],[-71.508976555,41.867150545],[-71.512550556,41.866642545],[-71.512924557,41.866608545],[-71.513046556,41.866581545],[-71.513176557,41.866562545],[-71.513321557,41.866558545],[-71.513775557,41.866495545],[-71.514582557,41.866385545],[-71.515110557,41.866313545],[-71.515281557,41.866280545],[-71.516605558,41.866106544],[-71.517105558,41.866006545],[-71.520349559,41.865517545],[-71.52300856,41.865118544],[-71.52302356,41.865116544],[-71.52325956,41.865081544],[-71.527679561,41.864411544],[-71.527790561,41.864393544],[-71.529126562,41.864177544],[-71.529601562,41.864113544],[-71.529617562,41.864112544],[-71.529984562,41.864075544],[-71.530594562,41.863982543],[-71.530768562,41.863962543],[-71.531483563,41.863871544],[-71.531494562,41.863663544],[-71.531502563,41.863373544],[-71.531502563,41.863179544],[-71.531471562,41.862912543],[-71.531433562,41.862736543],[-71.531311562,41.862355544],[-71.531120562,41.861874543],[-71.530960562,41.861565543],[-71.530800562,41.861298543],[-71.530609562,41.861020543],[-71.530411562,41.860787543],[-71.530151562,41.860516543],[-71.529854562,41.860237543],[-71.529373562,41.859799543],[-71.528687561,41.859230543],[-71.527931561,41.858517543],[-71.527466561,41.858040543],[-71.52674956,41.857239542],[-71.52646656,41.856945542],[-71.52625356,41.856755543],[-71.52604756,41.856587543],[-71.52578756,41.856415542],[-71.52564256,41.856327543],[-71.52534556,41.856179542],[-71.52513956,41.856083542],[-71.52492556,41.855999543],[-71.524467559,41.855843543],[-71.52358256,41.855564542],[-71.523155559,41.855412543],[-71.522804559,41.855263542],[-71.522522559,41.855137542],[-71.522243558,41.854978542],[-71.522194559,41.854950542],[-71.521873558,41.854737542],[-71.521591559,41.854542542],[-71.521271558,41.854298542],[-71.521254558,41.854285543],[-71.521049559,41.854129543],[-71.520521558,41.853729542],[-71.520195558,41.853482542],[-71.519951558,41.853306542],[-71.518173557,41.851960542],[-71.517807557,41.851704542],[-71.517494557,41.851517542],[-71.517212557,41.851380542],[-71.516945557,41.851258542],[-71.516708557,41.851166542],[-71.516388557,41.851056542],[-71.514503556,41.850445541],[-71.513832556,41.850239542],[-71.511763555,41.849653541],[-71.511689555,41.849632541],[-71.511574556,41.849602542],[-71.511459555,41.849569541],[-71.511185555,41.849491541],[-71.511024555,41.849453541],[-71.510933555,41.849430542],[-71.510818555,41.849400541],[-71.510780555,41.849388542],[-71.510460555,41.849316541],[-71.509338554,41.849099542],[-71.508499554,41.848950541],[-71.508270554,41.848904541],[-71.508026553,41.848858542],[-71.507553554,41.848755541],[-71.507355554,41.848702542],[-71.506498554,41.848421541],[-71.505356553,41.848046541],[-71.505135553,41.847973541],[-71.504936553,41.847901541],[-71.504639553,41.847802541],[-71.504341552,41.847683541],[-71.504143553,41.847596542],[-71.503571552,41.847329541],[-71.503258552,41.847172541],[-71.502968552,41.847039541],[-71.502800552,41.846978541],[-71.502602552,41.846917541],[-71.502388552,41.846863541],[-71.502182552,41.846817542],[-71.502029552,41.846794542],[-71.501976552,41.846787541],[-71.501717552,41.846768541],[-71.501602552,41.846764541],[-71.501358551,41.846768541],[-71.501083551,41.846783541],[-71.500961552,41.846794542],[-71.500534552,41.846814542],[-71.500305551,41.846825541],[-71.499832551,41.846829541],[-71.499611551,41.846825541],[-71.499344551,41.846806541],[-71.499161551,41.846783541],[-71.498367551,41.846669541],[-71.49813855,41.846630541],[-71.497818551,41.846569541],[-71.49758155,41.846512541],[-71.49738355,41.846440541],[-71.49722355,41.846363542],[-71.49696455,41.846218541],[-71.49683455,41.846123541],[-71.49659055,41.845887541],[-71.49647555,41.845723542],[-71.49620155,41.845806541],[-71.49591155,41.845917542],[-71.49575055,41.845990541],[-71.49566755,41.846043541],[-71.495567549,41.846123541],[-71.49572855,41.846253541],[-71.495857549,41.846394541],[-71.49594155,41.846493541],[-71.49575055,41.846665541],[-71.495369549,41.846955541],[-71.495102549,41.847191541],[-71.49473655,41.847489542],[-71.494629549,41.847542541],[-71.494594549,41.847552542],[-71.49450755,41.847577542],[-71.494324549,41.847577542],[-71.494182549,41.847572542],[-71.493958549,41.847565542],[-71.493828549,41.847565542],[-71.493736549,41.847573542],[-71.493693549,41.847582541],[-71.493645549,41.847592542],[-71.493553549,41.847630542],[-71.493599549,41.847680541],[-71.493614549,41.847744542],[-71.493622549,41.847832541],[-71.49361355,41.848041542],[-71.493599549,41.848366542],[-71.493568549,41.848732542],[-71.493523549,41.848881542],[-71.493507549,41.849011542],[-71.493439549,41.849251542],[-71.493187549,41.849266542],[-71.492912549,41.849289542],[-71.492088549,41.849381542],[-71.490875548,41.849503542],[-71.490425548,41.849553542],[-71.489997548,41.849612542],[-71.489845548,41.849633542],[-71.488037547,41.849854543],[-71.487587548,41.849903542],[-71.486740547,41.850003542],[-71.485863547,41.850109543],[-71.485069547,41.850209543],[-71.484409546,41.850297542],[-71.483612546,41.850399543],[-71.482170545,41.850560543],[-71.481934545,41.850582542],[-71.481827546,41.850602542],[-71.481734546,41.850630543],[-71.481667545,41.850651543],[-71.481591545,41.850673543],[-71.481552545,41.850685543],[-71.481531545,41.850695543],[-71.480974545,41.850829543],[-71.480994546,41.850875542],[-71.481034546,41.850945543],[-71.481106545,41.851112543],[-71.481165545,41.851184543],[-71.485636547,41.853527543],[-71.485697546,41.853548543],[-71.485922547,41.853917543],[-71.486104547,41.854307543],[-71.486453547,41.855015543],[-71.486567547,41.855102544],[-71.486631548,41.855161544],[-71.486731547,41.855286543],[-71.486869547,41.855553544],[-71.486908547,41.855677543],[-71.487023547,41.855986543],[-71.487057548,41.856047543],[-71.487073548,41.856093544],[-71.487080548,41.856113544],[-71.487095548,41.856142543],[-71.487123547,41.856268544],[-71.487174548,41.856597544],[-71.487190548,41.856697544],[-71.487198547,41.856831544],[-71.487224547,41.856956544],[-71.487242547,41.857018543],[-71.487246548,41.857342544],[-71.487234548,41.857470544],[-71.487231548,41.857606544],[-71.487234548,41.857680543],[-71.487236548,41.857733544],[-71.487227548,41.857935544],[-71.487274548,41.858398544],[-71.487354547,41.858720544],[-71.487381548,41.858851544],[-71.487398547,41.858901544],[-71.487421548,41.859081544],[-71.487429548,41.859149544],[-71.487433547,41.859177544],[-71.487387548,41.859227544],[-71.487365548,41.859262544],[-71.487378547,41.859278545],[-71.487516548,41.859299544],[-71.487631548,41.859351544],[-71.487672548,41.859415545],[-71.487674548,41.859482544],[-71.487646547,41.859544544],[-71.487654548,41.859611544],[-71.487688548,41.859689544],[-71.487691548,41.859763545],[-71.487784547,41.860037545],[-71.487794548,41.860211545],[-71.487806548,41.860272545],[-71.487831548,41.860330545],[-71.487823548,41.860390545],[-71.487789548,41.860449544],[-71.487768548,41.860509544],[-71.487797548,41.860627544],[-71.487796548,41.860694544],[-71.487802547,41.860753545],[-71.487820548,41.860807544],[-71.487833548,41.860867544],[-71.487830548,41.860937544],[-71.487820548,41.860994545],[-71.487868548,41.861047545],[-71.487923548,41.861152544],[-71.488057548,41.861470544],[-71.488127548,41.861601544],[-71.488178548,41.861698544],[-71.488216548,41.861759544],[-71.488230549,41.861815544],[-71.488237548,41.861870545],[-71.488215548,41.861928545],[-71.488161548,41.861982545],[-71.488150548,41.862041545],[-71.488161548,41.862107544],[-71.488251548,41.862286544],[-71.488388548,41.862454545],[-71.488422548,41.862506545],[-71.488446548,41.862575544],[-71.488483549,41.862625545],[-71.488547548,41.862658545],[-71.488565548,41.862716545],[-71.488608548,41.862748545],[-71.488676549,41.862769545],[-71.488742548,41.862805545],[-71.488888549,41.862846545],[-71.488985549,41.862869544],[-71.489248548,41.862978545],[-71.489490549,41.863112545],[-71.489651549,41.863164545],[-71.489885549,41.863231545],[-71.490124548,41.863343545],[-71.490280548,41.863435545],[-71.490420549,41.863506545],[-71.490558549,41.863582545],[-71.490619549,41.863622545],[-71.490818549,41.863795545],[-71.490929549,41.863904545],[-71.491185549,41.864115545],[-71.491308549,41.864199545],[-71.491462549,41.864376545],[-71.49150355,41.864440545],[-71.491551549,41.864568545],[-71.491587549,41.864624545],[-71.491634549,41.864731545],[-71.491686549,41.864791545],[-71.491829549,41.864890545],[-71.49187555,41.864922545],[-71.49206455,41.865081545],[-71.49220255,41.865222545],[-71.49231955,41.865325545],[-71.49235355,41.865373545],[-71.49238355,41.866243545],[-71.49268055,41.866968545],[-71.49285455,41.867221545],[-71.49295255,41.867409546],[-71.49337555,41.867791546],[-71.49408455,41.868284546],[-71.494451551,41.868363546],[-71.494578551,41.868426545],[-71.49466955,41.868462546],[-71.494860551,41.868515546],[-71.495048551,41.868544545],[-71.495192551,41.868557546],[-71.495250551,41.868598546],[-71.495392551,41.868668546],[-71.495459551,41.868683545],[-71.495487551,41.868677546]]]]}}"}, +{"type": "precinct", "typeId": 1611, "areaId": 25796, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":135,\"NAME\":\"1611\",\"SHAPE_Length\":0.1085436226769,\"SHAPE_Area\":-0.0001441144937406},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.479521544,41.844291541],[-71.479739544,41.844062542],[-71.480206544,41.843671541],[-71.479664545,41.844049541],[-71.479585544,41.844003542],[-71.479543544,41.843952541],[-71.479529545,41.843898541],[-71.479529545,41.843687541],[-71.479539544,41.843632542],[-71.479575544,41.843506541],[-71.479661544,41.843286542],[-71.479769544,41.843088541],[-71.479787544,41.843028541],[-71.479794544,41.842971541],[-71.479762545,41.842900541],[-71.479713544,41.842834541],[-71.479679544,41.842779542],[-71.479652544,41.842710541],[-71.479620544,41.842522541],[-71.479592544,41.842467542],[-71.479547544,41.842420541],[-71.479488544,41.842379541],[-71.479357545,41.842320541],[-71.479289544,41.842280541],[-71.479232544,41.842232541],[-71.479187544,41.842171541],[-71.479151544,41.842100541],[-71.479105544,41.841961541],[-71.479101544,41.841895541],[-71.479113544,41.841831541],[-71.479113544,41.841772541],[-71.479091544,41.841720541],[-71.479059544,41.841669541],[-71.479022544,41.841628541],[-71.479589544,41.841568541],[-71.479283544,41.840528541],[-71.478964544,41.839440541],[-71.478843544,41.839168541],[-71.478811544,41.83909754],[-71.478713544,41.83892054],[-71.478783544,41.838799541],[-71.479286544,41.83848254],[-71.479385544,41.838448541],[-71.479485544,41.83842554],[-71.479942545,41.83839854],[-71.480270544,41.838387541],[-71.480247544,41.838116541],[-71.480227544,41.837805541],[-71.480225544,41.83776454],[-71.480232544,41.83746054],[-71.480250544,41.83736154],[-71.480293545,41.83725854],[-71.480370545,41.83729254],[-71.480438544,41.83730754],[-71.480522544,41.83728854],[-71.480621545,41.83725854],[-71.480858545,41.83716654],[-71.481178544,41.83705954],[-71.481560545,41.83694154],[-71.481628545,41.83700654],[-71.481704544,41.83709354],[-71.481745545,41.83716054],[-71.481827545,41.83729254],[-71.482036545,41.837573541],[-71.482050544,41.83760154],[-71.482079545,41.837632541],[-71.482239545,41.837944541],[-71.482383545,41.83820354],[-71.482422545,41.83826554],[-71.482480545,41.83834154],[-71.482506545,41.83837554],[-71.482544545,41.83841754],[-71.482590545,41.83845954],[-71.482635545,41.838509541],[-71.482742545,41.838604541],[-71.483124545,41.838894541],[-71.483307545,41.839016541],[-71.483429546,41.83909654],[-71.483543545,41.83918054],[-71.483597545,41.839226541],[-71.483780546,41.83936054],[-71.483841546,41.83940954],[-71.483894546,41.83946654],[-71.484146546,41.839756541],[-71.484184546,41.83981754],[-71.484314545,41.839989541],[-71.484360546,41.840042541],[-71.484406546,41.84009254],[-71.484566545,41.840313541],[-71.484596546,41.840371541],[-71.484634546,41.84042854],[-71.484665545,41.84048554],[-71.484688546,41.84054254],[-71.484718546,41.84059954],[-71.484741545,41.84066054],[-71.484772546,41.84071854],[-71.484856546,41.840947541],[-71.484901546,41.841103541],[-71.484932546,41.841179541],[-71.484955545,41.841249541],[-71.484993546,41.841362541],[-71.485039546,41.841469541],[-71.485168546,41.841843541],[-71.485268546,41.842053541],[-71.485298546,41.842129541],[-71.485382546,41.842366541],[-71.485413546,41.842472541],[-71.485435546,41.842530541],[-71.485451546,41.842591541],[-71.485489546,41.842694541],[-71.485542546,41.842907541],[-71.485558547,41.843010541],[-71.485596547,41.843144541],[-71.485611546,41.843232541],[-71.485634547,41.843327541],[-71.485649546,41.843422541],[-71.485672547,41.843514541],[-71.485680546,41.843567541],[-71.485703546,41.843621541],[-71.485733547,41.843724541],[-71.485741546,41.843743541],[-71.485756546,41.843815541],[-71.485817546,41.843956541],[-71.485840546,41.843991541],[-71.485855546,41.844029541],[-71.485931546,41.844174541],[-71.485947547,41.844197541],[-71.485992546,41.844292541],[-71.486046547,41.844387541],[-71.486145546,41.844582541],[-71.486412547,41.845070541],[-71.486519546,41.845276542],[-71.486580547,41.845433541],[-71.486632546,41.845587542],[-71.486645547,41.845628541],[-71.486694546,41.845826541],[-71.486710546,41.845887541],[-71.486740547,41.846081541],[-71.486740547,41.846501542],[-71.486732546,41.846672542],[-71.486732546,41.846884542],[-71.486732546,41.847134542],[-71.486732547,41.847809542],[-71.486732547,41.848469542],[-71.486732547,41.849125542],[-71.486740547,41.849453542],[-71.486740547,41.850003542],[-71.487587548,41.849903542],[-71.488037547,41.849854543],[-71.489845548,41.849633542],[-71.489997548,41.849612542],[-71.490425548,41.849553542],[-71.490875548,41.849503542],[-71.492088549,41.849381542],[-71.492912549,41.849289542],[-71.493187549,41.849266542],[-71.493439549,41.849251542],[-71.493507549,41.849011542],[-71.493523549,41.848881542],[-71.493568549,41.848732542],[-71.493599549,41.848366542],[-71.49361355,41.848041542],[-71.493622549,41.847832541],[-71.493614549,41.847744542],[-71.493599549,41.847680541],[-71.493553549,41.847630542],[-71.493645549,41.847592542],[-71.493693549,41.847582541],[-71.493736549,41.847573542],[-71.493828549,41.847565542],[-71.493958549,41.847565542],[-71.494182549,41.847572542],[-71.494324549,41.847577542],[-71.49450755,41.847577542],[-71.494594549,41.847552542],[-71.494629549,41.847542541],[-71.49473655,41.847489542],[-71.495102549,41.847191541],[-71.495369549,41.846955541],[-71.49575055,41.846665541],[-71.49594155,41.846493541],[-71.495857549,41.846394541],[-71.49572855,41.846253541],[-71.495567549,41.846123541],[-71.49566755,41.846043541],[-71.49575055,41.845990541],[-71.49591155,41.845917542],[-71.49620155,41.845806541],[-71.49647555,41.845723542],[-71.49636855,41.845566542],[-71.49623955,41.845353542],[-71.49604855,41.845051541],[-71.49586555,41.844796541],[-71.495667549,41.844571541],[-71.49549955,41.844406541],[-71.49583455,41.844235541],[-71.49676555,41.84379654],[-71.49712455,41.843647541],[-71.49723855,41.843594541],[-71.49740655,41.843460541],[-71.49762055,41.843274541],[-71.497902551,41.843007541],[-71.498001551,41.84294254],[-71.49812355,41.842904541],[-71.498405551,41.84283954],[-71.498756551,41.842739541],[-71.499245551,41.84260654],[-71.500114551,41.84237754],[-71.500252551,41.84233554],[-71.500328551,41.842305541],[-71.500389551,41.84221754],[-71.500393551,41.84216554],[-71.500381551,41.842076541],[-71.500336551,41.841935541],[-71.50024455,41.84171054],[-71.500221551,41.841629541],[-71.500175551,41.84146554],[-71.500084551,41.84118754],[-71.499962551,41.84091654],[-71.499901551,41.84062654],[-71.499908551,41.84051254],[-71.499985551,41.84026854],[-71.50006955,41.84008454],[-71.500160551,41.83984454],[-71.500259551,41.83963454],[-71.500298551,41.83948954],[-71.500336551,41.83937154],[-71.500328551,41.83929954],[-71.50030555,41.83921954],[-71.500175551,41.83901654],[-71.500137551,41.83889054],[-71.500099551,41.83863954],[-71.499969551,41.83802154],[-71.499931551,41.837872539],[-71.49989355,41.837834539],[-71.49985555,41.83780754],[-71.49977955,41.83779654],[-71.49935255,41.83779954],[-71.499146551,41.83782254],[-71.499092551,41.83783854],[-71.49906255,41.837872539],[-71.49904655,41.83791454],[-71.49903955,41.83797154],[-71.49906255,41.838086539],[-71.499107551,41.83840254],[-71.49913855,41.83854754],[-71.499184551,41.83870454],[-71.49925255,41.83906654],[-71.49925255,41.83912354],[-71.49923755,41.83916154],[-71.49919155,41.83921554],[-71.49884055,41.83942154],[-71.49869555,41.83952854],[-71.498640551,41.83956554],[-71.49849755,41.83966154],[-71.49839855,41.83973354],[-71.49765055,41.83991754],[-71.49755955,41.83993654],[-71.49749055,41.83994354],[-71.49742155,41.83993954],[-71.49734555,41.83990554],[-71.49715455,41.83978754],[-71.496910549,41.83996254],[-71.49660555,41.84020354],[-71.49623955,41.84050854],[-71.495613549,41.84097354],[-71.495427549,41.841119541],[-71.494827549,41.841587541],[-71.494553549,41.84182854],[-71.494316549,41.841992541],[-71.494049549,41.84219854],[-71.493294549,41.842808541],[-71.493156549,41.842930541],[-71.493019549,41.842850541],[-71.492966549,41.842823541],[-71.492661548,41.842640541],[-71.492447548,41.842526541],[-71.491920548,41.84225554],[-71.491051548,41.841854541],[-71.490463548,41.84159154],[-71.490013547,41.84139754],[-71.489571548,41.841198541],[-71.489357548,41.84108454],[-71.489204548,41.84099254],[-71.489044547,41.840886541],[-71.488876547,41.840767541],[-71.488693547,41.840626541],[-71.488411547,41.84038654],[-71.487892547,41.83995554],[-71.487747546,41.839829541],[-71.487465547,41.839600541],[-71.487228547,41.839440541],[-71.486740546,41.83913554],[-71.486603546,41.83906654],[-71.486450546,41.83843654],[-71.486252546,41.83780354],[-71.485199546,41.838002541],[-71.484929546,41.83805754],[-71.485128546,41.83726654],[-71.485229545,41.83686554],[-71.485085546,41.83653754],[-71.485039546,41.83638854],[-71.485016545,41.836232539],[-71.484436545,41.83643854],[-71.484222545,41.83650654],[-71.484047545,41.83655654],[-71.483864545,41.83660254],[-71.483833545,41.83660554],[-71.483620545,41.83665554],[-71.483368545,41.836697539],[-71.483072545,41.83674754],[-71.482597545,41.83678154],[-71.482391545,41.83678954],[-71.481796544,41.83678954],[-71.481613545,41.83677754],[-71.481247545,41.83669754],[-71.481171545,41.83667454],[-71.481102544,41.83665954],[-71.480566545,41.83648854],[-71.480478544,41.83645354],[-71.480171544,41.83633154],[-71.480003544,41.83627054],[-71.479767544,41.83617854],[-71.479622544,41.83611354],[-71.479358543,41.83597954],[-71.479012543,41.83580454],[-71.478516544,41.83556454],[-71.478119543,41.83541554],[-71.478012543,41.83537754],[-71.477753543,41.83530154],[-71.477623543,41.83524754],[-71.477577543,41.83523254],[-71.477463543,41.83514854],[-71.477356543,41.83509554],[-71.477257543,41.83504554],[-71.477158543,41.83498454],[-71.477036543,41.83491254],[-71.476685543,41.834671539],[-71.476463543,41.83450054],[-71.476128543,41.834240539],[-71.476051543,41.83417554],[-71.475830542,41.83402354],[-71.475571543,41.833813539],[-71.475479542,41.833737539],[-71.475319543,41.833622539],[-71.475182543,41.833561539],[-71.474968543,41.83347454],[-71.474670542,41.83337454],[-71.474365542,41.83328354],[-71.473976541,41.833229539],[-71.473740542,41.833187539],[-71.472534541,41.83298154],[-71.472130541,41.832913539],[-71.471558541,41.83282554],[-71.471222541,41.83275654],[-71.47103154,41.83273754],[-71.470917541,41.83273754],[-71.470863541,41.832745539],[-71.470688541,41.83280654],[-71.47064254,41.832817539],[-71.47060454,41.832837539],[-71.470444541,41.832920539],[-71.47058654,41.832976539],[-71.470608541,41.83299054],[-71.470834541,41.83308154],[-71.470902541,41.83311854],[-71.47097254,41.83316554],[-71.471063541,41.83321554],[-71.471590541,41.833446539],[-71.471673542,41.83349554],[-71.471745541,41.83354654],[-71.471827542,41.83362954],[-71.471994541,41.833815539],[-71.472064541,41.83388254],[-71.472235542,41.834008539],[-71.472383541,41.83413054],[-71.472432542,41.83418954],[-71.472462541,41.834242539],[-71.472477541,41.83431654],[-71.472476541,41.83437254],[-71.472416541,41.834573539],[-71.472381541,41.83464354],[-71.472334542,41.83471454],[-71.472232541,41.83484354],[-71.472194542,41.83489954],[-71.472176542,41.834941539],[-71.472008541,41.83492454],[-71.471987541,41.83491554],[-71.471963542,41.83494554],[-71.471932541,41.83499754],[-71.471889541,41.83505154],[-71.471852541,41.83511554],[-71.471791541,41.83523954],[-71.471676541,41.83554254],[-71.471673542,41.83556554],[-71.471667541,41.83560754],[-71.471674541,41.83566354],[-71.471749542,41.83579454],[-71.471744541,41.83585054],[-71.471703541,41.83598254],[-71.471695541,41.836052541],[-71.471702541,41.83611654],[-71.471721541,41.83617754],[-71.471733541,41.83619754],[-71.471753541,41.83623054],[-71.471797541,41.836284541],[-71.472046541,41.83652354],[-71.472262541,41.83670454],[-71.472303541,41.83676354],[-71.472313542,41.83682554],[-71.472329542,41.83688254],[-71.472357541,41.83691654],[-71.472381541,41.83694454],[-71.472459541,41.83698954],[-71.472525542,41.83701654],[-71.472589542,41.83704854],[-71.472645542,41.837086541],[-71.472667542,41.83711954],[-71.472690541,41.83715454],[-71.472695542,41.83723154],[-71.472707542,41.83728854],[-71.472732541,41.83734454],[-71.472747541,41.837372541],[-71.472800542,41.83746554],[-71.472829541,41.83753754],[-71.472861542,41.837684541],[-71.472884541,41.837742541],[-71.472952542,41.83787154],[-71.473034542,41.837983541],[-71.473034542,41.838033541],[-71.473093542,41.838290541],[-71.473108542,41.838425541],[-71.473098541,41.838704541],[-71.473119542,41.838779541],[-71.473171542,41.83888254],[-71.473228542,41.838947541],[-71.473310542,41.838990541],[-71.473402542,41.83900154],[-71.473504542,41.838987541],[-71.473599542,41.83896154],[-71.473962542,41.838830541],[-71.474276542,41.838743541],[-71.474391542,41.838684541],[-71.474496543,41.838583541],[-71.474572542,41.83853454],[-71.474876542,41.83839854],[-71.474952542,41.83837454],[-71.475180543,41.838312541],[-71.475223543,41.838295541],[-71.475395543,41.83822354],[-71.475541542,41.838170541],[-71.475580542,41.83812454],[-71.475740543,41.83800454],[-71.475810542,41.837978541],[-71.475891543,41.837958541],[-71.475986542,41.837960541],[-71.476019543,41.83798454],[-71.476061543,41.838037541],[-71.476105543,41.83808454],[-71.476180542,41.838136541],[-71.476245543,41.83816454],[-71.476351543,41.838195541],[-71.476453543,41.83820454],[-71.476539543,41.83818154],[-71.476602543,41.83814554],[-71.476652543,41.83808954],[-71.476711543,41.83795354],[-71.476745543,41.837899541],[-71.476832543,41.83783554],[-71.476905543,41.83781854],[-71.477018543,41.83783754],[-71.477086543,41.837866541],[-71.477148543,41.83789654],[-71.477216543,41.837919541],[-71.477366544,41.83803454],[-71.477466543,41.83812254],[-71.477509543,41.83816854],[-71.477558544,41.838232541],[-71.477584543,41.83832654],[-71.477587543,41.83845654],[-71.477527543,41.83876554],[-71.477510543,41.83913454],[-71.477484544,41.839207541],[-71.477405544,41.83933354],[-71.477378543,41.839400541],[-71.477358543,41.83946954],[-71.477322543,41.83964454],[-71.477461544,41.84065754],[-71.477640544,41.841477541],[-71.477696544,41.841543541],[-71.477765543,41.841610541],[-71.477800543,41.841637541],[-71.477847544,41.841673541],[-71.477939543,41.841727541],[-71.478123544,41.841812541],[-71.478376544,41.841959541],[-71.478460544,41.842020541],[-71.478537544,41.842091541],[-71.478592544,41.842165541],[-71.478623544,41.842247541],[-71.478659544,41.842377541],[-71.478672544,41.842426541],[-71.478706544,41.842514541],[-71.478784544,41.842675541],[-71.478888544,41.842854541],[-71.478951544,41.842962541],[-71.478990544,41.843047541],[-71.479011544,41.843133541],[-71.479019544,41.843218541],[-71.479012544,41.843466541],[-71.479004544,41.843509541],[-71.479521544,41.844291541]]]]}}"}, +{"type": "precinct", "typeId": 1612, "areaId": 25798, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":137,\"NAME\":\"1612\",\"SHAPE_Length\":0.18209402494779,\"SHAPE_Area\":-0.0011340416438361},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.49647555,41.845723542],[-71.49659055,41.845887541],[-71.49683455,41.846123541],[-71.49696455,41.846218541],[-71.49722355,41.846363542],[-71.49738355,41.846440541],[-71.49758155,41.846512541],[-71.497818551,41.846569541],[-71.49813855,41.846630541],[-71.498367551,41.846669541],[-71.499161551,41.846783541],[-71.499344551,41.846806541],[-71.499611551,41.846825541],[-71.499832551,41.846829541],[-71.500305551,41.846825541],[-71.500534552,41.846814542],[-71.500961552,41.846794542],[-71.501083551,41.846783541],[-71.501358551,41.846768541],[-71.501602552,41.846764541],[-71.501717552,41.846768541],[-71.501976552,41.846787541],[-71.502029552,41.846794542],[-71.502182552,41.846817542],[-71.502388552,41.846863541],[-71.502602552,41.846917541],[-71.502800552,41.846978541],[-71.502968552,41.847039541],[-71.503258552,41.847172541],[-71.503571552,41.847329541],[-71.504143553,41.847596542],[-71.504341552,41.847683541],[-71.504639553,41.847802541],[-71.504936553,41.847901541],[-71.505135553,41.847973541],[-71.505356553,41.848046541],[-71.506498554,41.848421541],[-71.507355554,41.848702542],[-71.507553554,41.848755541],[-71.508026553,41.848858542],[-71.508270554,41.848904541],[-71.508499554,41.848950541],[-71.509338554,41.849099542],[-71.510460555,41.849316541],[-71.510780555,41.849388542],[-71.510818555,41.849400541],[-71.510933555,41.849430542],[-71.511024555,41.849453541],[-71.511185555,41.849491541],[-71.511459555,41.849569541],[-71.511574556,41.849602542],[-71.511689555,41.849632541],[-71.511763555,41.849653541],[-71.513832556,41.850239542],[-71.514503556,41.850445541],[-71.516388557,41.851056542],[-71.516708557,41.851166542],[-71.516945557,41.851258542],[-71.517212557,41.851380542],[-71.517494557,41.851517542],[-71.517807557,41.851704542],[-71.518173557,41.851960542],[-71.519951558,41.853306542],[-71.520195558,41.853482542],[-71.520521558,41.853729542],[-71.521049559,41.854129543],[-71.521254558,41.854285543],[-71.521271558,41.854298542],[-71.521591559,41.854542542],[-71.521873558,41.854737542],[-71.522194559,41.854950542],[-71.522243558,41.854978542],[-71.522522559,41.855137542],[-71.522804559,41.855263542],[-71.523155559,41.855412543],[-71.52358256,41.855564542],[-71.524467559,41.855843543],[-71.52492556,41.855999543],[-71.52513956,41.856083542],[-71.52534556,41.856179542],[-71.52564256,41.856327543],[-71.52578756,41.856415542],[-71.52604756,41.856587543],[-71.52625356,41.856755543],[-71.52646656,41.856945542],[-71.52674956,41.857239542],[-71.527466561,41.858040543],[-71.527931561,41.858517543],[-71.528687561,41.859230543],[-71.529373562,41.859799543],[-71.529854562,41.860237543],[-71.530151562,41.860516543],[-71.530411562,41.860787543],[-71.530670562,41.860711543],[-71.530762562,41.860665543],[-71.530830562,41.860588543],[-71.530930562,41.860432543],[-71.531029562,41.860230543],[-71.531136562,41.859993543],[-71.531242562,41.859738543],[-71.531259562,41.859683543],[-71.531303562,41.859543543],[-71.531342562,41.859356543],[-71.531326562,41.859055543],[-71.531326562,41.858815542],[-71.531342562,41.858464542],[-71.531326562,41.858384542],[-71.531258562,41.858158543],[-71.531227562,41.858075542],[-71.531235562,41.858014542],[-71.531342562,41.857785542],[-71.531456562,41.857605542],[-71.531548562,41.857472542],[-71.531616562,41.857361543],[-71.531654562,41.857289543],[-71.531731562,41.856968542],[-71.531761562,41.856808542],[-71.531807562,41.856701543],[-71.531921562,41.856491542],[-71.531967562,41.856385542],[-71.532036562,41.856285542],[-71.532104562,41.856209542],[-71.532204562,41.856129542],[-71.532310562,41.856076542],[-71.532524562,41.856011542],[-71.532753562,41.855961542],[-71.532898562,41.855935542],[-71.533051562,41.855885543],[-71.533165562,41.855843542],[-71.533554562,41.855633542],[-71.533798563,41.855408542],[-71.534142563,41.855164542],[-71.534454563,41.854916542],[-71.534691563,41.854664542],[-71.535690563,41.853245542],[-71.535851564,41.852967541],[-71.535995563,41.852692541],[-71.536133563,41.852467542],[-71.536209563,41.852326541],[-71.536392563,41.852066541],[-71.536545563,41.851860541],[-71.536713563,41.851731542],[-71.537056564,41.851513541],[-71.537361563,41.851330541],[-71.537872564,41.850983541],[-71.538193564,41.850773541],[-71.538315564,41.850632541],[-71.538345564,41.850499541],[-71.538300564,41.850399541],[-71.538116563,41.850163541],[-71.537720564,41.849633541],[-71.537430564,41.84920254],[-71.537361563,41.849049541],[-71.537361563,41.84890854],[-71.537430564,41.848763541],[-71.537582564,41.84859554],[-71.537743564,41.84846254],[-71.538040563,41.848240541],[-71.538345564,41.84799654],[-71.538612564,41.84781354],[-71.539116564,41.84739054],[-71.539291564,41.84723754],[-71.539474564,41.84705454],[-71.539627564,41.846875541],[-71.539886564,41.84646354],[-71.540062564,41.84626054],[-71.540344564,41.84598354],[-71.540482564,41.84584854],[-71.540680564,41.845726539],[-71.540909564,41.84562354],[-71.541100564,41.84554754],[-71.541412564,41.84544854],[-71.541679565,41.84534154],[-71.542046565,41.84520454],[-71.542358565,41.84510154],[-71.542572565,41.844967539],[-71.542770565,41.84481854],[-71.543632566,41.84445154],[-71.543701565,41.844422539],[-71.544365565,41.844155539],[-71.544617565,41.84404054],[-71.544647566,41.84400654],[-71.544647566,41.843823539],[-71.544632565,41.84363654],[-71.544678566,41.843468539],[-71.544812565,41.843213539],[-71.544828565,41.84318654],[-71.544968566,41.842987539],[-71.545036566,41.842793539],[-71.545067566,41.842572539],[-71.545242566,41.842339539],[-71.545525566,41.842106539],[-71.545616566,41.841992539],[-71.545700566,41.841839539],[-71.545837566,41.841675539],[-71.545959566,41.841599539],[-71.546188566,41.841481539],[-71.546471566,41.841355539],[-71.546722566,41.841263539],[-71.546967567,41.841168539],[-71.547157566,41.841034539],[-71.547218566,41.840844539],[-71.547264566,41.840176539],[-71.547302566,41.839844538],[-71.547295566,41.839573539],[-71.547272566,41.839199538],[-71.547295566,41.838906538],[-71.547348566,41.838597538],[-71.547348566,41.838307538],[-71.547379567,41.838013538],[-71.547417567,41.837723538],[-71.547462566,41.837441538],[-71.547684566,41.836792538],[-71.547768567,41.836419538],[-71.547874566,41.836102538],[-71.547966566,41.835804538],[-71.548103566,41.835373537],[-71.548225566,41.834942537],[-71.548340566,41.834591537],[-71.548409567,41.834336538],[-71.548447567,41.834061538],[-71.548462566,41.833813537],[-71.548492566,41.833470537],[-71.548561566,41.833106538],[-71.548576566,41.833027538],[-71.548630566,41.832569537],[-71.548134566,41.832505537],[-71.547768566,41.832436537],[-71.547256566,41.832299537],[-71.546944566,41.832207537],[-71.546593566,41.832108537],[-71.546089566,41.831959537],[-71.545303565,41.831719537],[-71.544395565,41.831444537],[-71.543671565,41.831234537],[-71.543015564,41.831036537],[-71.542511564,41.830891537],[-71.541748564,41.830658537],[-71.541077564,41.830464537],[-71.540405563,41.830258537],[-71.539886564,41.830109537],[-71.538254562,41.829627537],[-71.538063562,41.829571537],[-71.537567563,41.829438537],[-71.537285562,41.829377537],[-71.536919562,41.829342537],[-71.536652563,41.829331537],[-71.536469562,41.829331537],[-71.536263562,41.829342537],[-71.535896562,41.829373537],[-71.535454562,41.829438537],[-71.535398562,41.829447537],[-71.534126561,41.829659537],[-71.533287561,41.829800537],[-71.533124561,41.829826537],[-71.53275356,41.829888537],[-71.53186056,41.830044537],[-71.530663561,41.830273537],[-71.53001456,41.830403537],[-71.528702559,41.830651537],[-71.528038559,41.830784538],[-71.527519559,41.830883538],[-71.52711556,41.830952537],[-71.526779559,41.830990537],[-71.526230559,41.831021538],[-71.525848559,41.831017538],[-71.525513559,41.830990537],[-71.525078558,41.830937538],[-71.524940558,41.830902538],[-71.524551558,41.830799538],[-71.524101558,41.830689538],[-71.523560558,41.830548538],[-71.522957558,41.830399537],[-71.522389558,41.830267537],[-71.521957557,41.830166537],[-71.521797557,41.830124537],[-71.521538558,41.830059538],[-71.520676557,41.829811538],[-71.520409556,41.829728538],[-71.519974557,41.829598537],[-71.519825556,41.829552538],[-71.519524557,41.829468537],[-71.519046556,41.829325537],[-71.518836556,41.829261538],[-71.517452556,41.828846537],[-71.517181556,41.828764537],[-71.517044556,41.828720537],[-71.516113556,41.828446538],[-71.516022555,41.828423538],[-71.515831555,41.828366538],[-71.514641555,41.828007537],[-71.513412554,41.827641537],[-71.512421554,41.827343537],[-71.512108554,41.827286537],[-71.511032553,41.826916537],[-71.510414553,41.826702537],[-71.508179553,41.825978537],[-71.507889552,41.825894537],[-71.507584552,41.825814538],[-71.507439553,41.825772537],[-71.507195552,41.825711537],[-71.507195552,41.825734537],[-71.507187552,41.825760537],[-71.507187552,41.825875537],[-71.507217552,41.825936537],[-71.507240553,41.825966537],[-71.507713552,41.826424537],[-71.507828553,41.826607537],[-71.507904553,41.826786538],[-71.507904553,41.826813537],[-71.508011553,41.827252538],[-71.508056553,41.827545538],[-71.508057553,41.827633537],[-71.508049552,41.827698538],[-71.507996553,41.827893538],[-71.507965553,41.827958538],[-71.507927553,41.828022537],[-71.507881553,41.828076538],[-71.507820553,41.828129538],[-71.507362552,41.828598538],[-71.506927553,41.829045538],[-71.506744552,41.829209537],[-71.506508552,41.829377538],[-71.505959552,41.829720538],[-71.505936552,41.829735537],[-71.505585552,41.829895538],[-71.504875552,41.830109538],[-71.504280552,41.830265538],[-71.503967552,41.830338538],[-71.503471551,41.830407538],[-71.503204552,41.830464538],[-71.502991552,41.830544538],[-71.502769551,41.830655538],[-71.502632551,41.830742538],[-71.502281551,41.830986538],[-71.501923551,41.831208538],[-71.501831551,41.831242538],[-71.501770551,41.831185538],[-71.501633551,41.831067538],[-71.50132055,41.830758538],[-71.501213551,41.830639538],[-71.501137551,41.830546538],[-71.501114551,41.830517538],[-71.500862551,41.830162539],[-71.50074055,41.829956538],[-71.50069455,41.829857538],[-71.50056555,41.829907538],[-71.50031355,41.829991538],[-71.50009255,41.830075538],[-71.49984755,41.830189538],[-71.49948955,41.830399538],[-71.49885655,41.830803539],[-71.49861155,41.830956538],[-71.49852055,41.831005538],[-71.49835255,41.831086538],[-71.49818455,41.831150538],[-71.49803255,41.831200538],[-71.49793255,41.831223538],[-71.497734549,41.831257538],[-71.49749055,41.831280538],[-71.497368549,41.831284538],[-71.497246549,41.831280538],[-71.497009549,41.831265538],[-71.496761549,41.831238538],[-71.495209549,41.831078539],[-71.494568549,41.831005538],[-71.494354549,41.830994539],[-71.494171548,41.830994539],[-71.494019549,41.831005538],[-71.493866549,41.831021539],[-71.493500548,41.830994539],[-71.493233548,41.830986538],[-71.493195548,41.830990538],[-71.493141548,41.830990538],[-71.493034548,41.831002538],[-71.492966548,41.831025538],[-71.492783548,41.831116539],[-71.492661548,41.831189539],[-71.492523547,41.831284539],[-71.492462548,41.831334538],[-71.492393548,41.831383539],[-71.492271547,41.831494538],[-71.492226548,41.831543539],[-71.492149548,41.831646538],[-71.492125548,41.831684539],[-71.492058547,41.831799539],[-71.492035547,41.831879539],[-71.492035547,41.832009539],[-71.492043548,41.832077538],[-71.492012548,41.832127539],[-71.491982548,41.832199539],[-71.491913548,41.832428538],[-71.491882547,41.832516539],[-71.491768548,41.833043539],[-71.491692548,41.833283539],[-71.491623548,41.833443539],[-71.491531547,41.833622539],[-71.491325548,41.833916539],[-71.491158547,41.834122539],[-71.491013548,41.834263539],[-71.490723548,41.834504539],[-71.490509548,41.834649539],[-71.490395548,41.834717539],[-71.490334548,41.834755539],[-71.490265547,41.834797539],[-71.489807547,41.83501554],[-71.489647547,41.83507254],[-71.489540547,41.83511054],[-71.489334547,41.835175539],[-71.489082547,41.835236539],[-71.488892547,41.83527054],[-71.488762547,41.835293539],[-71.488403547,41.835339539],[-71.488159546,41.83536254],[-71.487961546,41.83538154],[-71.487442546,41.835453539],[-71.487289547,41.83548054],[-71.487007546,41.83554554],[-71.486870546,41.83558354],[-71.486694546,41.83563754],[-71.485725546,41.835980539],[-71.485245546,41.83615554],[-71.485016545,41.836232539],[-71.485039546,41.83638854],[-71.485085546,41.83653754],[-71.485229545,41.83686554],[-71.485128546,41.83726654],[-71.484929546,41.83805754],[-71.485199546,41.838002541],[-71.486252546,41.83780354],[-71.486450546,41.83843654],[-71.486603546,41.83906654],[-71.486740546,41.83913554],[-71.487228547,41.839440541],[-71.487465547,41.839600541],[-71.487747546,41.839829541],[-71.487892547,41.83995554],[-71.488411547,41.84038654],[-71.488693547,41.840626541],[-71.488876547,41.840767541],[-71.489044547,41.840886541],[-71.489204548,41.84099254],[-71.489357548,41.84108454],[-71.489571548,41.841198541],[-71.490013547,41.84139754],[-71.490463548,41.84159154],[-71.491051548,41.841854541],[-71.491920548,41.84225554],[-71.492447548,41.842526541],[-71.492661548,41.842640541],[-71.492966549,41.842823541],[-71.493019549,41.842850541],[-71.493156549,41.842930541],[-71.493294549,41.842808541],[-71.494049549,41.84219854],[-71.494316549,41.841992541],[-71.494553549,41.84182854],[-71.494827549,41.841587541],[-71.495427549,41.841119541],[-71.495613549,41.84097354],[-71.49623955,41.84050854],[-71.49660555,41.84020354],[-71.496910549,41.83996254],[-71.49715455,41.83978754],[-71.49734555,41.83990554],[-71.49742155,41.83993954],[-71.49749055,41.83994354],[-71.49755955,41.83993654],[-71.49765055,41.83991754],[-71.49839855,41.83973354],[-71.49849755,41.83966154],[-71.498640551,41.83956554],[-71.49869555,41.83952854],[-71.49884055,41.83942154],[-71.49919155,41.83921554],[-71.49923755,41.83916154],[-71.49925255,41.83912354],[-71.49925255,41.83906654],[-71.499184551,41.83870454],[-71.49913855,41.83854754],[-71.499107551,41.83840254],[-71.49906255,41.838086539],[-71.49903955,41.83797154],[-71.49904655,41.83791454],[-71.49906255,41.837872539],[-71.499092551,41.83783854],[-71.499146551,41.83782254],[-71.49935255,41.83779954],[-71.49977955,41.83779654],[-71.49985555,41.83780754],[-71.49989355,41.837834539],[-71.499931551,41.837872539],[-71.499969551,41.83802154],[-71.500099551,41.83863954],[-71.500137551,41.83889054],[-71.500175551,41.83901654],[-71.50030555,41.83921954],[-71.500328551,41.83929954],[-71.500336551,41.83937154],[-71.500298551,41.83948954],[-71.500259551,41.83963454],[-71.500160551,41.83984454],[-71.50006955,41.84008454],[-71.499985551,41.84026854],[-71.499908551,41.84051254],[-71.499901551,41.84062654],[-71.499962551,41.84091654],[-71.500084551,41.84118754],[-71.500175551,41.84146554],[-71.500221551,41.841629541],[-71.50024455,41.84171054],[-71.500336551,41.841935541],[-71.500381551,41.842076541],[-71.500393551,41.84216554],[-71.500389551,41.84221754],[-71.500328551,41.842305541],[-71.500252551,41.84233554],[-71.500114551,41.84237754],[-71.499245551,41.84260654],[-71.498756551,41.842739541],[-71.498405551,41.84283954],[-71.49812355,41.842904541],[-71.498001551,41.84294254],[-71.497902551,41.843007541],[-71.49762055,41.843274541],[-71.49740655,41.843460541],[-71.49723855,41.843594541],[-71.49712455,41.843647541],[-71.49676555,41.84379654],[-71.49583455,41.844235541],[-71.49549955,41.844406541],[-71.495667549,41.844571541],[-71.49586555,41.844796541],[-71.49604855,41.845051541],[-71.49623955,41.845353542],[-71.49636855,41.845566542],[-71.49647555,41.845723542]]]]}}"}, +{"type": "precinct", "typeId": 1613, "areaId": 25797, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":136,\"NAME\":\"1613\",\"SHAPE_Length\":0.13063419240421,\"SHAPE_Area\":-0.00089368648575879},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.530411562,41.860787543],[-71.530609562,41.861020543],[-71.530800562,41.861298543],[-71.530960562,41.861565543],[-71.531120562,41.861874543],[-71.531311562,41.862355544],[-71.531433562,41.862736543],[-71.531471562,41.862912543],[-71.531502563,41.863179544],[-71.531502563,41.863373544],[-71.531494562,41.863663544],[-71.531483563,41.863871544],[-71.533216563,41.863655544],[-71.534691563,41.863476543],[-71.534883564,41.863451544],[-71.535296564,41.863398543],[-71.535954564,41.863315544],[-71.537822565,41.863158544],[-71.538501565,41.863012543],[-71.540035565,41.862807544],[-71.542953566,41.862336543],[-71.545333567,41.862086543],[-71.545431567,41.862111543],[-71.546284567,41.861997543],[-71.547226568,41.861937543],[-71.547901568,41.861840543],[-71.548524568,41.861763543],[-71.548601568,41.861762543],[-71.549088568,41.861695543],[-71.550188568,41.861581543],[-71.55283957,41.861274542],[-71.55504057,41.861061542],[-71.55550057,41.861011543],[-71.556706571,41.860807542],[-71.556816571,41.860798543],[-71.557994571,41.860740543],[-71.558472571,41.860684542],[-71.559406572,41.860507543],[-71.559752571,41.860453542],[-71.560706572,41.860307542],[-71.561743572,41.860117542],[-71.561807572,41.860106542],[-71.562896573,41.860006542],[-71.562897573,41.860017542],[-71.563122573,41.859979542],[-71.565942574,41.859669542],[-71.568644574,41.859362541],[-71.569886575,41.859220542],[-71.572473576,41.858936541],[-71.573608576,41.858815541],[-71.575000576,41.858643541],[-71.575107577,41.858607541],[-71.574379576,41.855376541],[-71.574343576,41.855086541],[-71.574095576,41.853092541],[-71.574083576,41.85304254],[-71.573969576,41.85236654],[-71.573978576,41.85230854],[-71.573712575,41.85152854],[-71.572742575,41.847933539],[-71.571859574,41.844105539],[-71.571838574,41.844062539],[-71.571606574,41.843029539],[-71.570639574,41.838574537],[-71.570114574,41.837654537],[-71.569899574,41.835235537],[-71.569888573,41.835108537],[-71.569760573,41.835098537],[-71.569572574,41.835083537],[-71.568840573,41.835034537],[-71.568039573,41.834969537],[-71.567493572,41.834931537],[-71.567436573,41.834927537],[-71.566635572,41.834858537],[-71.566048572,41.834828537],[-71.565506572,41.834782537],[-71.565071572,41.834740537],[-71.564728572,41.834698537],[-71.564331571,41.834641537],[-71.563919571,41.834568537],[-71.563538571,41.834496537],[-71.562897571,41.834355537],[-71.561653571,41.834099537],[-71.56155757,41.834078537],[-71.56108957,41.833973537],[-71.56016557,41.833786537],[-71.55932657,41.833607537],[-71.55878457,41.833500537],[-71.55841157,41.833435537],[-71.558067569,41.833382537],[-71.557533569,41.833348537],[-71.557182569,41.833334537],[-71.556976569,41.833325537],[-71.556203569,41.833300537],[-71.555687568,41.833283537],[-71.555542569,41.833275537],[-71.554008568,41.833207537],[-71.553604568,41.833168537],[-71.553032568,41.833092537],[-71.552452567,41.833031537],[-71.552249568,41.833007537],[-71.551720567,41.832943537],[-71.551155567,41.832875537],[-71.550964567,41.832852537],[-71.549622566,41.832692537],[-71.548630566,41.832569537],[-71.548576566,41.833027538],[-71.548561566,41.833106538],[-71.548492566,41.833470537],[-71.548462566,41.833813537],[-71.548447567,41.834061538],[-71.548409567,41.834336538],[-71.548340566,41.834591537],[-71.548225566,41.834942537],[-71.548103566,41.835373537],[-71.547966566,41.835804538],[-71.547874566,41.836102538],[-71.547768567,41.836419538],[-71.547684566,41.836792538],[-71.547462566,41.837441538],[-71.547417567,41.837723538],[-71.547379567,41.838013538],[-71.547348566,41.838307538],[-71.547348566,41.838597538],[-71.547295566,41.838906538],[-71.547272566,41.839199538],[-71.547295566,41.839573539],[-71.547302566,41.839844538],[-71.547264566,41.840176539],[-71.547218566,41.840844539],[-71.547157566,41.841034539],[-71.546967567,41.841168539],[-71.546722566,41.841263539],[-71.546471566,41.841355539],[-71.546188566,41.841481539],[-71.545959566,41.841599539],[-71.545837566,41.841675539],[-71.545700566,41.841839539],[-71.545616566,41.841992539],[-71.545525566,41.842106539],[-71.545242566,41.842339539],[-71.545067566,41.842572539],[-71.545036566,41.842793539],[-71.544968566,41.842987539],[-71.544828565,41.84318654],[-71.544812565,41.843213539],[-71.544678566,41.843468539],[-71.544632565,41.84363654],[-71.544647566,41.843823539],[-71.544647566,41.84400654],[-71.544617565,41.84404054],[-71.544365565,41.844155539],[-71.543701565,41.844422539],[-71.543632566,41.84445154],[-71.542770565,41.84481854],[-71.542572565,41.844967539],[-71.542358565,41.84510154],[-71.542046565,41.84520454],[-71.541679565,41.84534154],[-71.541412564,41.84544854],[-71.541100564,41.84554754],[-71.540909564,41.84562354],[-71.540680564,41.845726539],[-71.540482564,41.84584854],[-71.540344564,41.84598354],[-71.540062564,41.84626054],[-71.539886564,41.84646354],[-71.539627564,41.846875541],[-71.539474564,41.84705454],[-71.539291564,41.84723754],[-71.539116564,41.84739054],[-71.538612564,41.84781354],[-71.538345564,41.84799654],[-71.538040563,41.848240541],[-71.537743564,41.84846254],[-71.537582564,41.84859554],[-71.537430564,41.848763541],[-71.537361563,41.84890854],[-71.537361563,41.849049541],[-71.537430564,41.84920254],[-71.537720564,41.849633541],[-71.538116563,41.850163541],[-71.538300564,41.850399541],[-71.538345564,41.850499541],[-71.538315564,41.850632541],[-71.538193564,41.850773541],[-71.537872564,41.850983541],[-71.537361563,41.851330541],[-71.537056564,41.851513541],[-71.536713563,41.851731542],[-71.536545563,41.851860541],[-71.536392563,41.852066541],[-71.536209563,41.852326541],[-71.536133563,41.852467542],[-71.535995563,41.852692541],[-71.535851564,41.852967541],[-71.535690563,41.853245542],[-71.534691563,41.854664542],[-71.534454563,41.854916542],[-71.534142563,41.855164542],[-71.533798563,41.855408542],[-71.533554562,41.855633542],[-71.533165562,41.855843542],[-71.533051562,41.855885543],[-71.532898562,41.855935542],[-71.532753562,41.855961542],[-71.532524562,41.856011542],[-71.532310562,41.856076542],[-71.532204562,41.856129542],[-71.532104562,41.856209542],[-71.532036562,41.856285542],[-71.531967562,41.856385542],[-71.531921562,41.856491542],[-71.531807562,41.856701543],[-71.531761562,41.856808542],[-71.531731562,41.856968542],[-71.531654562,41.857289543],[-71.531616562,41.857361543],[-71.531548562,41.857472542],[-71.531456562,41.857605542],[-71.531342562,41.857785542],[-71.531235562,41.858014542],[-71.531227562,41.858075542],[-71.531258562,41.858158543],[-71.531326562,41.858384542],[-71.531342562,41.858464542],[-71.531326562,41.858815542],[-71.531326562,41.859055543],[-71.531342562,41.859356543],[-71.531303562,41.859543543],[-71.531259562,41.859683543],[-71.531242562,41.859738543],[-71.531136562,41.859993543],[-71.531029562,41.860230543],[-71.530930562,41.860432543],[-71.530830562,41.860588543],[-71.530762562,41.860665543],[-71.530670562,41.860711543],[-71.530411562,41.860787543]]]]}}"}, +{"type": "precinct", "typeId": 1701, "areaId": 25799, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":138,\"NAME\":\"1701\",\"SHAPE_Length\":0.15306593418503,\"SHAPE_Area\":-0.0012371174005598},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.450750538,41.909529555],[-71.450890538,41.909530555],[-71.451084538,41.909531555],[-71.451301538,41.909853555],[-71.451406539,41.910025555],[-71.451462539,41.910092555],[-71.451539539,41.910112555],[-71.451865539,41.910171555],[-71.451989539,41.910251555],[-71.452167539,41.910406555],[-71.452230539,41.910453555],[-71.452290539,41.910491555],[-71.452357539,41.910512555],[-71.452434539,41.910522555],[-71.452707539,41.910519555],[-71.452798539,41.910511555],[-71.452907539,41.910516555],[-71.45293254,41.910563555],[-71.45293154,41.910606556],[-71.452906539,41.910662555],[-71.45291254,41.910731555],[-71.45295254,41.910790555],[-71.453006539,41.910841556],[-71.45310454,41.910892555],[-71.453178539,41.910902555],[-71.453388539,41.910904555],[-71.453468539,41.910916555],[-71.453733539,41.910920555],[-71.453812539,41.910910555],[-71.45388254,41.910895555],[-71.45396454,41.910871555],[-71.454181539,41.910824555],[-71.45454454,41.911732555],[-71.45473554,41.912243556],[-71.45551454,41.914287556],[-71.45656354,41.914682556],[-71.45693354,41.914847556],[-71.457428541,41.915067556],[-71.458899542,41.915779556],[-71.459949542,41.916261556],[-71.461299543,41.916890556],[-71.461493543,41.916984557],[-71.461601542,41.916916556],[-71.461945542,41.916695556],[-71.462387543,41.916375556],[-71.462845543,41.916054556],[-71.463089543,41.915871556],[-71.463310543,41.915722556],[-71.463509543,41.915612556],[-71.463623543,41.915562555],[-71.463867543,41.915467555],[-71.464287543,41.915333556],[-71.465134544,41.915051556],[-71.465919544,41.914811556],[-71.466736544,41.914547555],[-71.466906544,41.914494555],[-71.467316544,41.914368556],[-71.468643545,41.913941556],[-71.469330545,41.913727556],[-71.470078545,41.913514555],[-71.470207545,41.913483555],[-71.470329545,41.913445555],[-71.470436545,41.913407555],[-71.470650545,41.913315555],[-71.470840545,41.913224555],[-71.471016545,41.913109555],[-71.471291545,41.912869555],[-71.471519545,41.912651555],[-71.471878545,41.912289555],[-71.472656546,41.911473555],[-71.472931546,41.911759554],[-71.473190546,41.911965555],[-71.473495546,41.912178555],[-71.473969546,41.912411555],[-71.474228547,41.912529555],[-71.474426546,41.912617554],[-71.474861546,41.912800555],[-71.475945546,41.913281555],[-71.476479547,41.913529555],[-71.476650547,41.913604555],[-71.476848547,41.913691555],[-71.477097547,41.913800555],[-71.477562548,41.914059555],[-71.477989548,41.914379555],[-71.478514548,41.914784555],[-71.479248548,41.915379555],[-71.479698548,41.915226556],[-71.480072548,41.915093555],[-71.480598549,41.914898555],[-71.480931549,41.914806555],[-71.480514548,41.913529555],[-71.477501547,41.904298553],[-71.477047547,41.902967553],[-71.476861547,41.902438553],[-71.476818547,41.902327553],[-71.476766546,41.902189553],[-71.476604547,41.901755552],[-71.476599546,41.901718552],[-71.476531546,41.901569553],[-71.476471547,41.901524552],[-71.476486547,41.901368552],[-71.476410547,41.901204553],[-71.476372547,41.900986553],[-71.476273547,41.900830553],[-71.476242546,41.900727552],[-71.476166546,41.900521553],[-71.475914546,41.899792552],[-71.475876546,41.899651552],[-71.475830546,41.899506553],[-71.475792546,41.899361552],[-71.475700546,41.899109552],[-71.475586546,41.898732552],[-71.475555546,41.898545552],[-71.475555545,41.898484552],[-71.475548546,41.898423552],[-71.475517546,41.898285552],[-71.475464546,41.898152552],[-71.475372546,41.897873552],[-71.475334546,41.897728552],[-71.475288546,41.897587552],[-71.475151546,41.897221552],[-71.475090545,41.896965552],[-71.475052545,41.896840551],[-71.475021546,41.896767552],[-71.474998546,41.896691552],[-71.474876545,41.896412551],[-71.474815545,41.896313551],[-71.474801545,41.896296551],[-71.474795545,41.896255551],[-71.473704545,41.892407551],[-71.473581545,41.892164551],[-71.473523545,41.891990551],[-71.472804545,41.88980755],[-71.472704545,41.88960655],[-71.472646545,41.889422551],[-71.472302544,41.888335551],[-71.471782544,41.88669455],[-71.471025544,41.884302549],[-71.470801543,41.883609549],[-71.470630543,41.883026549],[-71.469957544,41.880754549],[-71.468723543,41.876650548],[-71.468706543,41.876604548],[-71.468803543,41.876106548],[-71.468792542,41.876085548],[-71.468360542,41.875180548],[-71.468318543,41.875052548],[-71.468225542,41.874889548],[-71.467906542,41.874178548],[-71.467588542,41.873466547],[-71.467555542,41.873326547],[-71.467516542,41.873162548],[-71.467503542,41.873107547],[-71.467504542,41.872607547],[-71.466900541,41.872746547],[-71.466759542,41.872775547],[-71.466597542,41.872788548],[-71.46346454,41.873138548],[-71.455602538,41.874305548],[-71.449101536,41.874906548],[-71.448990536,41.874940548],[-71.447768535,41.875341549],[-71.447402535,41.875007548],[-71.447302535,41.875060548],[-71.446700535,41.875505548],[-71.445366535,41.875553549],[-71.444233535,41.875593549],[-71.444219534,41.875594549],[-71.444134535,41.875603548],[-71.444002534,41.875606548],[-71.443586534,41.875682548],[-71.442806534,41.875838548],[-71.441856533,41.876019549],[-71.441396533,41.876112549],[-71.440047533,41.876192549],[-71.438219533,41.876300549],[-71.438102532,41.876308549],[-71.436914532,41.876548549],[-71.434997531,41.876911549],[-71.434821531,41.876911549],[-71.434386532,41.876909549],[-71.433728531,41.87690755],[-71.433462531,41.87690655],[-71.433830531,41.877503549],[-71.434265532,41.87824755],[-71.434654532,41.878937549],[-71.434742531,41.879116549],[-71.434776532,41.87918555],[-71.434860531,41.87934355],[-71.434906532,41.879429549],[-71.434976531,41.87956955],[-71.435295532,41.88021155],[-71.436302532,41.88243155],[-71.436905532,41.883789551],[-71.437073533,41.884140551],[-71.437805533,41.885777551],[-71.438187533,41.886601551],[-71.438211533,41.886656551],[-71.438629533,41.887612551],[-71.438739533,41.887850551],[-71.438759533,41.887894551],[-71.438881533,41.888173551],[-71.438995533,41.888420551],[-71.439102534,41.888668551],[-71.439339534,41.889176551],[-71.439583534,41.889676552],[-71.439598533,41.889698552],[-71.439756534,41.890012552],[-71.439807534,41.890107552],[-71.439842534,41.890171551],[-71.439980534,41.890408551],[-71.440239534,41.890831552],[-71.440514534,41.891255552],[-71.440804534,41.891674552],[-71.440987534,41.891919552],[-71.441162534,41.892163552],[-71.441185534,41.892189552],[-71.441353534,41.892403552],[-71.441811535,41.892933552],[-71.442223535,41.893399552],[-71.442871535,41.894150552],[-71.443375536,41.894696552],[-71.443474536,41.894810553],[-71.443535535,41.894883553],[-71.443611536,41.894959552],[-71.443909535,41.895295553],[-71.444077536,41.895504553],[-71.444199535,41.895665553],[-71.444397535,41.895920553],[-71.444733536,41.896382553],[-71.444878536,41.896614553],[-71.445023536,41.896862552],[-71.445152535,41.897114552],[-71.445274536,41.897366552],[-71.445396536,41.897641553],[-71.445423536,41.897711553],[-71.445503536,41.897919553],[-71.445618536,41.898194553],[-71.446304536,41.899926553],[-71.446465536,41.900322553],[-71.446495537,41.900414553],[-71.447205537,41.902184553],[-71.447311537,41.902424554],[-71.447334537,41.902489554],[-71.447182537,41.902535553],[-71.447212537,41.902600554],[-71.447403537,41.903061553],[-71.447563537,41.903466554],[-71.447952537,41.904473554],[-71.448143537,41.904923554],[-71.448273537,41.905201554],[-71.448410537,41.905480554],[-71.448555537,41.905754554],[-71.449181538,41.906838555],[-71.449219538,41.906895555],[-71.449394538,41.907208555],[-71.450294538,41.908757555],[-71.450750538,41.909529555]]]]}}"}, +{"type": "precinct", "typeId": 1702, "areaId": 25807, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":146,\"NAME\":\"1702\",\"SHAPE_Length\":0.069617926731221,\"SHAPE_Area\":-0.00022064774244245},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.461972545,41.957726564],[-71.462307545,41.957578564],[-71.462464545,41.957541564],[-71.462585545,41.957472564],[-71.462624545,41.957448564],[-71.462697545,41.957402564],[-71.462726545,41.957361564],[-71.462785545,41.957326564],[-71.462855545,41.957217563],[-71.462896545,41.957167564],[-71.462977545,41.957112564],[-71.463066545,41.957161564],[-71.463326546,41.957310564],[-71.463852546,41.957631564],[-71.464371546,41.957959564],[-71.464554546,41.958065564],[-71.464767546,41.958187564],[-71.465141545,41.958424564],[-71.465416546,41.958634564],[-71.465553546,41.958794564],[-71.465828546,41.959320565],[-71.466049546,41.959771564],[-71.466743546,41.959668564],[-71.467346546,41.959614565],[-71.467731547,41.959569564],[-71.467995547,41.959538564],[-71.468033547,41.959530564],[-71.468338547,41.959496564],[-71.468735547,41.959458565],[-71.469177548,41.959401564],[-71.469559547,41.959359564],[-71.470146548,41.959351564],[-71.470589548,41.959420564],[-71.470909548,41.959496564],[-71.471161548,41.959519564],[-71.471451548,41.959504564],[-71.471451548,41.959195564],[-71.471466548,41.958893564],[-71.471451548,41.958592564],[-71.471428548,41.958302564],[-71.471359548,41.957966564],[-71.471252548,41.957650563],[-71.471085548,41.957379563],[-71.470871548,41.957116564],[-71.470215547,41.956532564],[-71.469925547,41.956284563],[-71.469643547,41.956005564],[-71.469444547,41.955735563],[-71.469299547,41.955422563],[-71.469223547,41.955059563],[-71.469154547,41.954678563],[-71.469078547,41.954304563],[-71.468948547,41.953770563],[-71.468948547,41.953740563],[-71.468857547,41.953522563],[-71.468689547,41.953251563],[-71.468452547,41.952958563],[-71.468178547,41.952664563],[-71.468048546,41.952534563],[-71.467857546,41.952343562],[-71.467064546,41.951573563],[-71.466797546,41.951291562],[-71.466553546,41.951020562],[-71.466263546,41.950653562],[-71.466080545,41.950409563],[-71.465904545,41.950188562],[-71.465767545,41.950020562],[-71.465195546,41.949192562],[-71.464912545,41.948761562],[-71.464706545,41.948494562],[-71.464447545,41.948124562],[-71.464203545,41.947731562],[-71.463669545,41.946694562],[-71.463409544,41.946309562],[-71.463158544,41.946022562],[-71.462860544,41.945774561],[-71.462494544,41.945504562],[-71.462250544,41.945313562],[-71.462097544,41.945187561],[-71.461800544,41.944905562],[-71.461212544,41.944367561],[-71.460640543,41.943856562],[-71.459991544,41.943299561],[-71.459282543,41.942704561],[-71.458923543,41.942410561],[-71.458420543,41.941990561],[-71.458099543,41.942154561],[-71.457756542,41.942223561],[-71.457321542,41.942280561],[-71.456787542,41.942433562],[-71.456444542,41.942566561],[-71.456131542,41.942700561],[-71.455933542,41.942730561],[-71.455704541,41.942723562],[-71.455513542,41.942692561],[-71.455345542,41.942589562],[-71.455086542,41.942383561],[-71.454895542,41.942181561],[-71.454712541,41.942002561],[-71.454536541,41.941918561],[-71.454384541,41.941899561],[-71.454239542,41.941910561],[-71.454071541,41.941967561],[-71.453247541,41.942456561],[-71.452469541,41.942917562],[-71.452141541,41.943108562],[-71.452103541,41.943127561],[-71.45147654,41.943508561],[-71.45089754,41.943859561],[-71.45069954,41.943974562],[-71.45025654,41.944268561],[-71.450027541,41.944481562],[-71.44983754,41.944722562],[-71.44968454,41.944985562],[-71.44957054,41.945294562],[-71.44952454,41.945626562],[-71.44952454,41.945969562],[-71.44956254,41.946530562],[-71.44952454,41.946663563],[-71.44944054,41.946804562],[-71.44931854,41.946904562],[-71.44908154,41.947033563],[-71.44885354,41.947163562],[-71.44863154,41.947277562],[-71.44852454,41.947335562],[-71.44826554,41.947464563],[-71.448220539,41.947476562],[-71.44715854,41.948756562],[-71.447458539,41.948765563],[-71.44828654,41.948777562],[-71.44847954,41.948757562],[-71.44864654,41.948734562],[-71.44874454,41.948725563],[-71.44885254,41.948723563],[-71.44904754,41.948728563],[-71.44915054,41.948743563],[-71.44922354,41.948762563],[-71.449655541,41.948900563],[-71.44987654,41.948996563],[-71.450022541,41.949046562],[-71.45016954,41.949088562],[-71.45048054,41.949210563],[-71.450544541,41.949240562],[-71.450630541,41.949270563],[-71.450856541,41.949367563],[-71.450919541,41.949400562],[-71.450977541,41.949439562],[-71.451080541,41.949530563],[-71.451269541,41.949666563],[-71.451327541,41.949716563],[-71.451431541,41.949824563],[-71.45147254,41.949883563],[-71.451502541,41.949942562],[-71.45151154,41.950001562],[-71.451504541,41.950058563],[-71.451488541,41.950113563],[-71.451480541,41.950230563],[-71.451481541,41.950286563],[-71.451524541,41.950439563],[-71.451574541,41.950545563],[-71.451617541,41.950616563],[-71.451652541,41.950687563],[-71.451654541,41.950760563],[-71.451636541,41.950853563],[-71.451654541,41.951204563],[-71.451666541,41.951231563],[-71.451714541,41.951264563],[-71.451835541,41.951436563],[-71.451888541,41.951496563],[-71.452009541,41.951620563],[-71.452059541,41.951677564],[-71.452112542,41.951723563],[-71.452172542,41.951761563],[-71.452241541,41.951798563],[-71.452289542,41.951840563],[-71.452293541,41.951884563],[-71.452229542,41.951881563],[-71.452132542,41.951841563],[-71.452072541,41.951810563],[-71.452005541,41.951753563],[-71.451898541,41.951643563],[-71.451813541,41.951526563],[-71.451710541,41.951404563],[-71.451662541,41.951356563],[-71.451594541,41.951335563],[-71.451544541,41.951465563],[-71.451535541,41.951528563],[-71.451536541,41.951678563],[-71.451549541,41.951845563],[-71.451575541,41.951976563],[-71.451681541,41.952190563],[-71.451765541,41.952342563],[-71.451846541,41.952458563],[-71.451890541,41.952511563],[-71.452059541,41.952653563],[-71.452216541,41.952818563],[-71.452269542,41.952858563],[-71.452330541,41.952891563],[-71.452397541,41.952935563],[-71.452472541,41.953011563],[-71.452315541,41.953113563],[-71.454360542,41.954986564],[-71.455219542,41.955642564],[-71.456509543,41.956209564],[-71.457241543,41.956576564],[-71.458140543,41.956857564],[-71.458906543,41.956908564],[-71.460061544,41.957131564],[-71.461004544,41.957307564],[-71.461781544,41.957423564],[-71.461972545,41.957726564]]]]}}"}, +{"type": "precinct", "typeId": 1703, "areaId": 25809, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":148,\"NAME\":\"1703\",\"SHAPE_Length\":0.095742267765908,\"SHAPE_Area\":-0.00025501475436735},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.487205554,41.978806567],[-71.487364554,41.979093567],[-71.487651554,41.978778567],[-71.487713554,41.978737567],[-71.487774554,41.978705567],[-71.487833554,41.978665567],[-71.487859554,41.978638567],[-71.488007554,41.978440567],[-71.488020554,41.978422567],[-71.488020554,41.978364567],[-71.487967554,41.978178567],[-71.487959554,41.978108567],[-71.487959554,41.978040567],[-71.487969554,41.977970567],[-71.487969554,41.977914567],[-71.487961554,41.977642567],[-71.487959554,41.977544567],[-71.487954554,41.977518567],[-71.487936554,41.977475567],[-71.487928554,41.977399567],[-71.487931554,41.977341567],[-71.487980554,41.977287567],[-71.488019554,41.977228567],[-71.488079554,41.977184567],[-71.488149554,41.977154567],[-71.488227554,41.977129567],[-71.488309554,41.977119567],[-71.488392554,41.977120567],[-71.488471554,41.977140567],[-71.488552554,41.977137567],[-71.488642554,41.977119567],[-71.488724554,41.977094567],[-71.488796555,41.977055567],[-71.488845555,41.976999567],[-71.488880554,41.976882567],[-71.488950554,41.976705567],[-71.488951555,41.976531567],[-71.488968554,41.976504566],[-71.488971555,41.975865566],[-71.489063555,41.975486566],[-71.489096554,41.974751566],[-71.488792554,41.974441566],[-71.488560554,41.974131566],[-71.488276554,41.973640566],[-71.487912554,41.973391566],[-71.487740554,41.973232566],[-71.487538554,41.972968566],[-71.487307554,41.972367566],[-71.487297553,41.972269566],[-71.487294554,41.972115566],[-71.487282554,41.971592566],[-71.487245554,41.971352566],[-71.487225554,41.971146566],[-71.487203554,41.971007565],[-71.487126554,41.970759566],[-71.487120553,41.970686566],[-71.487086553,41.970628566],[-71.487058554,41.970567566],[-71.487065553,41.970546566],[-71.487012554,41.970016565],[-71.486910553,41.970006565],[-71.486839554,41.969992565],[-71.486737553,41.969962566],[-71.486706553,41.969768566],[-71.486677553,41.969716566],[-71.486681553,41.969497566],[-71.486730553,41.969450565],[-71.486786553,41.969416566],[-71.486848553,41.969369565],[-71.486902553,41.969320566],[-71.486961553,41.969277565],[-71.487025553,41.969248565],[-71.487103553,41.969226565],[-71.487169554,41.969198565],[-71.487172554,41.969144566],[-71.487290554,41.969082565],[-71.487345554,41.969039565],[-71.487483554,41.968975565],[-71.487547554,41.968936565],[-71.487651554,41.968837565],[-71.487719554,41.968779565],[-71.487820554,41.968703565],[-71.487938554,41.968632565],[-71.488012554,41.968578565],[-71.488124554,41.968471565],[-71.488193553,41.968416565],[-71.488260554,41.968362565],[-71.488280554,41.968310565],[-71.488280554,41.968190565],[-71.488274554,41.968128565],[-71.488246554,41.968076565],[-71.488188554,41.968021565],[-71.488115553,41.967977565],[-71.488039554,41.967941565],[-71.487938554,41.967935565],[-71.487616554,41.967934565],[-71.487537554,41.967927565],[-71.487441554,41.967903565],[-71.487381554,41.967862565],[-71.487344554,41.967815565],[-71.487335553,41.967757565],[-71.487338553,41.967687565],[-71.487360553,41.967623565],[-71.487405554,41.967559565],[-71.487456553,41.967517565],[-71.487599554,41.967422565],[-71.487664554,41.967386565],[-71.487755554,41.967379565],[-71.487835554,41.967385565],[-71.487937554,41.967327565],[-71.487988554,41.967275565],[-71.487995554,41.967214565],[-71.487995554,41.967151565],[-71.487960553,41.967092565],[-71.487894554,41.967048565],[-71.487820554,41.967037565],[-71.487657554,41.967037565],[-71.487582554,41.967025565],[-71.487493553,41.967002565],[-71.487335553,41.966953565],[-71.487249554,41.966942565],[-71.487169554,41.966956565],[-71.487116553,41.967011565],[-71.487087553,41.967119565],[-71.487043553,41.967143565],[-71.486999553,41.967113565],[-71.486973553,41.967048565],[-71.486854553,41.966806565],[-71.486780553,41.966610565],[-71.486729553,41.966555565],[-71.486668553,41.966502565],[-71.486540553,41.966418565],[-71.486492553,41.966366565],[-71.486461553,41.966314565],[-71.486440553,41.966251565],[-71.486439553,41.965919565],[-71.486476553,41.965872565],[-71.486535553,41.965829565],[-71.486591553,41.965779564],[-71.486629553,41.965722564],[-71.486676553,41.965681564],[-71.486746553,41.965640565],[-71.486799553,41.965600565],[-71.486850553,41.965543565],[-71.486890553,41.965479565],[-71.486908553,41.965424565],[-71.486924553,41.965106565],[-71.486919553,41.964987565],[-71.486887553,41.964937565],[-71.486827553,41.964895565],[-71.486781553,41.964831565],[-71.486781553,41.964721564],[-71.486808553,41.964663564],[-71.486816553,41.964630564],[-71.486911553,41.964537564],[-71.486943553,41.964481565],[-71.486960553,41.964423565],[-71.486968553,41.964358564],[-71.486973553,41.964246564],[-71.486986553,41.964121564],[-71.487015553,41.964062564],[-71.487027553,41.963994564],[-71.487027553,41.963777564],[-71.487033553,41.963715564],[-71.487072553,41.963662564],[-71.487118553,41.963619564],[-71.487316553,41.963516564],[-71.487462553,41.963451564],[-71.487527553,41.963408564],[-71.487594553,41.963371564],[-71.487642553,41.963319564],[-71.487654553,41.963259564],[-71.487625554,41.963147564],[-71.487236554,41.963288564],[-71.486252553,41.963631565],[-71.486122553,41.963681564],[-71.485481553,41.963868564],[-71.485031553,41.964066564],[-71.484680553,41.964245564],[-71.484512552,41.964363565],[-71.484390552,41.964440565],[-71.484108552,41.964630564],[-71.483704553,41.964886565],[-71.483383552,41.965104565],[-71.483322552,41.965145565],[-71.482986552,41.965413565],[-71.482475552,41.965744565],[-71.482216552,41.965920565],[-71.480064551,41.967343565],[-71.479584551,41.967656565],[-71.479103551,41.967926565],[-71.479057551,41.967949565],[-71.478081551,41.968373565],[-71.477737551,41.968510565],[-71.47759255,41.968548565],[-71.47757055,41.968556566],[-71.477348551,41.968575566],[-71.47727255,41.968575566],[-71.47719655,41.968270566],[-71.47705855,41.967873565],[-71.47687555,41.967537565],[-71.47661655,41.967114565],[-71.47647155,41.966805565],[-71.47631855,41.966637565],[-71.47618155,41.966496566],[-71.47613555,41.966473565],[-71.47589155,41.966347565],[-71.475693549,41.966229565],[-71.47560955,41.966133565],[-71.47557155,41.966065565],[-71.47541855,41.966126566],[-71.475128549,41.966198565],[-71.474739549,41.966309565],[-71.474609549,41.966084565],[-71.474426549,41.965748565],[-71.474182549,41.965294565],[-71.474168549,41.965278565],[-71.474121549,41.965241565],[-71.474037549,41.965245565],[-71.473770549,41.965321565],[-71.473396549,41.965439565],[-71.472885548,41.965588565],[-71.472427549,41.964630565],[-71.472359548,41.964524565],[-71.472214549,41.964295565],[-71.471985549,41.963906564],[-71.471786548,41.963555564],[-71.471664548,41.963276565],[-71.471614549,41.963136565],[-71.471535548,41.962918565],[-71.471382548,41.962559565],[-71.471275548,41.962250564],[-71.471245548,41.962094564],[-71.471237548,41.962014564],[-71.471237548,41.961968565],[-71.471268548,41.961682564],[-71.471283548,41.961590564],[-71.471298548,41.961541565],[-71.471344548,41.961318564],[-71.471458548,41.960762565],[-71.471497548,41.960507564],[-71.471504548,41.960431565],[-71.471535548,41.960190564],[-71.471519548,41.960057564],[-71.471508548,41.959971564],[-71.471451548,41.959504564],[-71.471161548,41.959519564],[-71.470909548,41.959496564],[-71.470589548,41.959420564],[-71.470146548,41.959351564],[-71.469559547,41.959359564],[-71.469177548,41.959401564],[-71.468735547,41.959458565],[-71.468338547,41.959496564],[-71.468033547,41.959530564],[-71.467995547,41.959538564],[-71.467731547,41.959569564],[-71.467346546,41.959614565],[-71.466743546,41.959668564],[-71.466049546,41.959771564],[-71.465828546,41.959320565],[-71.465553546,41.958794564],[-71.465416546,41.958634564],[-71.465141545,41.958424564],[-71.464767546,41.958187564],[-71.464554546,41.958065564],[-71.464371546,41.957959564],[-71.463852546,41.957631564],[-71.463326546,41.957310564],[-71.463066545,41.957161564],[-71.462977545,41.957112564],[-71.462896545,41.957167564],[-71.462855545,41.957217563],[-71.462785545,41.957326564],[-71.462726545,41.957361564],[-71.462697545,41.957402564],[-71.462624545,41.957448564],[-71.462585545,41.957472564],[-71.462464545,41.957541564],[-71.462307545,41.957578564],[-71.461972545,41.957726564],[-71.462150544,41.958073564],[-71.462229545,41.958781564],[-71.462227545,41.960581565],[-71.462516545,41.961506565],[-71.462940545,41.962266565],[-71.463647545,41.962959565],[-71.463932545,41.963550565],[-71.464088545,41.964100566],[-71.465011546,41.966006566],[-71.465002546,41.966562566],[-71.464582546,41.967121566],[-71.464389546,41.968104566],[-71.464559546,41.968539566],[-71.464898546,41.969103566],[-71.465360546,41.969397566],[-71.467261547,41.969802566],[-71.469291548,41.970567566],[-71.469964548,41.970939566],[-71.469992548,41.971116567],[-71.470310548,41.971152566],[-71.471043548,41.971414566],[-71.471787549,41.972030567],[-71.473264549,41.972246567],[-71.47414155,41.972632566],[-71.47617655,41.974653567],[-71.477866551,41.976138567],[-71.478657551,41.977149567],[-71.478770551,41.977187567],[-71.479470551,41.977420567],[-71.481785552,41.977833567],[-71.482435552,41.978095567],[-71.482797553,41.978157568],[-71.483057691,41.978152751],[-71.483499553,41.978144567],[-71.483892553,41.978105567],[-71.485146553,41.977974567],[-71.485283553,41.978005567],[-71.486156554,41.978230567],[-71.486491554,41.978353568],[-71.487205554,41.978806567]]]]}}"}, +{"type": "precinct", "typeId": 1704, "areaId": 25802, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":141,\"NAME\":\"1704\",\"SHAPE_Length\":0.12432373987416,\"SHAPE_Area\":-0.00070198497095011},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.421356529,41.903435554],[-71.421654528,41.903569554],[-71.421753528,41.903607554],[-71.422073529,41.903748555],[-71.422356528,41.903859555],[-71.422462529,41.903897555],[-71.422607529,41.903942555],[-71.423004529,41.904057554],[-71.423340529,41.904164555],[-71.423454529,41.904194554],[-71.42369853,41.904270554],[-71.424286529,41.904454555],[-71.42472853,41.904602554],[-71.42482853,41.904641554],[-71.42497353,41.904713555],[-71.425089529,41.904779555],[-71.42515653,41.904808555],[-71.42527053,41.904877555],[-71.42538553,41.904957555],[-71.42552953,41.905033555],[-71.42569053,41.905102555],[-71.42578153,41.905136555],[-71.42593153,41.905178555],[-71.42597253,41.905190555],[-71.42628553,41.905262555],[-71.426506531,41.905320555],[-71.42665353,41.905353555],[-71.426857531,41.905400555],[-71.427902531,41.905655555],[-71.428146531,41.905724555],[-71.428513531,41.905838555],[-71.428650531,41.905884555],[-71.428795531,41.905938555],[-71.428940531,41.905987555],[-71.429375531,41.906147555],[-71.429520531,41.906197555],[-71.429916532,41.906311555],[-71.430313531,41.906414555],[-71.430885532,41.906544555],[-71.431038532,41.906575555],[-71.431396532,41.906662555],[-71.431648532,41.906701555],[-71.431854532,41.906712555],[-71.432291532,41.906706555],[-71.432396533,41.906704555],[-71.432755532,41.906712555],[-71.432884533,41.906723555],[-71.433052533,41.906754555],[-71.433250533,41.906804555],[-71.433472532,41.906880555],[-71.433594533,41.906933555],[-71.433823532,41.907055555],[-71.433891533,41.907105555],[-71.434036532,41.907196555],[-71.434196533,41.907284555],[-71.434364533,41.907357555],[-71.434573533,41.907428556],[-71.434792533,41.907502555],[-71.435020533,41.907570555],[-71.435143533,41.907597555],[-71.435349533,41.907627555],[-71.435448533,41.907631555],[-71.435562533,41.907627555],[-71.435677533,41.907616555],[-71.435898533,41.907566555],[-71.436111533,41.907486555],[-71.436211534,41.907444555],[-71.436256534,41.907421555],[-71.436501534,41.907303555],[-71.436691533,41.907223555],[-71.436943533,41.907158555],[-71.437073534,41.907135555],[-71.437477534,41.907086555],[-71.437714534,41.907048555],[-71.437920534,41.906998555],[-71.438019534,41.906968555],[-71.438210534,41.906891555],[-71.438515534,41.906731555],[-71.438866535,41.906517555],[-71.439117534,41.906357554],[-71.439285534,41.906262554],[-71.439514535,41.906113555],[-71.439743535,41.905949554],[-71.439804535,41.905896555],[-71.439926534,41.905770555],[-71.440117535,41.905514555],[-71.440178535,41.905419555],[-71.440331535,41.905217555],[-71.440491534,41.904980554],[-71.440590534,41.904850555],[-71.440681535,41.904717555],[-71.440796535,41.904583554],[-71.441040535,41.904328554],[-71.441139535,41.904236554],[-71.441353535,41.904057554],[-71.441666535,41.903862554],[-71.441864535,41.903763554],[-71.442406535,41.903538554],[-71.442650536,41.903443554],[-71.443062536,41.903305554],[-71.443230536,41.903256554],[-71.443398535,41.903214554],[-71.443492536,41.903195554],[-71.443718536,41.903149554],[-71.443878536,41.903122554],[-71.444290536,41.903073554],[-71.444489536,41.903061554],[-71.444695536,41.903054554],[-71.445076536,41.903023554],[-71.445404537,41.902977554],[-71.445618537,41.902943553],[-71.445648536,41.902935554],[-71.445808537,41.902905553],[-71.446159537,41.902817554],[-71.446678536,41.902668554],[-71.446976537,41.902592553],[-71.447029537,41.902573553],[-71.447158537,41.902539554],[-71.447182537,41.902535553],[-71.447334537,41.902489554],[-71.447311537,41.902424554],[-71.447205537,41.902184553],[-71.446495537,41.900414553],[-71.446465536,41.900322553],[-71.446304536,41.899926553],[-71.445618536,41.898194553],[-71.445503536,41.897919553],[-71.445423536,41.897711553],[-71.445396536,41.897641553],[-71.445274536,41.897366552],[-71.445152535,41.897114552],[-71.445023536,41.896862552],[-71.444878536,41.896614553],[-71.444733536,41.896382553],[-71.444397535,41.895920553],[-71.444199535,41.895665553],[-71.444077536,41.895504553],[-71.443909535,41.895295553],[-71.443611536,41.894959552],[-71.443535535,41.894883553],[-71.443474536,41.894810553],[-71.443375536,41.894696552],[-71.442871535,41.894150552],[-71.442223535,41.893399552],[-71.441811535,41.892933552],[-71.441353534,41.892403552],[-71.441185534,41.892189552],[-71.441162534,41.892163552],[-71.440987534,41.891919552],[-71.440804534,41.891674552],[-71.440514534,41.891255552],[-71.440239534,41.890831552],[-71.439980534,41.890408551],[-71.439842534,41.890171551],[-71.439807534,41.890107552],[-71.439756534,41.890012552],[-71.439598533,41.889698552],[-71.439583534,41.889676552],[-71.439339534,41.889176551],[-71.439102534,41.888668551],[-71.438995533,41.888420551],[-71.438881533,41.888173551],[-71.438759533,41.887894551],[-71.438739533,41.887850551],[-71.438629533,41.887612551],[-71.438211533,41.886656551],[-71.438187533,41.886601551],[-71.437805533,41.885777551],[-71.437073533,41.884140551],[-71.436928532,41.884156551],[-71.436821533,41.88416755],[-71.436569533,41.884198551],[-71.435707532,41.884293551],[-71.435249532,41.884335551],[-71.435020532,41.88434655],[-71.434814532,41.884346551],[-71.434601532,41.88433955],[-71.434219532,41.884308551],[-71.433868531,41.88426655],[-71.433334531,41.884217551],[-71.432846532,41.884194551],[-71.432007531,41.884175551],[-71.431778531,41.884175551],[-71.43161853,41.884179551],[-71.431450531,41.884198551],[-71.431282531,41.88422455],[-71.431091531,41.884274551],[-71.430908531,41.884331551],[-71.430717531,41.88440055],[-71.43047353,41.884503551],[-71.43012253,41.884640551],[-71.42993253,41.884724551],[-71.42968853,41.884823551],[-71.42950453,41.884880551],[-71.42933753,41.884911551],[-71.42921453,41.884919551],[-71.42910053,41.884915551],[-71.42884153,41.884858551],[-71.42866553,41.884804551],[-71.42858953,41.884777551],[-71.42808553,41.884621551],[-71.42806253,41.88461355],[-71.42802453,41.884602551],[-71.42768953,41.884480551],[-71.42759753,41.88443855],[-71.42728453,41.884308551],[-71.427048529,41.88422455],[-71.426834529,41.884171551],[-71.426735529,41.884140551],[-71.426491529,41.884072551],[-71.426353529,41.884041551],[-71.425964529,41.88395055],[-71.425415529,41.883805551],[-71.425278529,41.88377455],[-71.425011528,41.883706551],[-71.424855528,41.883655551],[-71.424374528,41.88387355],[-71.422544528,41.884056551],[-71.422054528,41.883824551],[-71.420930528,41.883293551],[-71.420918527,41.883312551],[-71.420876527,41.88340455],[-71.420822527,41.883557551],[-71.420738527,41.883713551],[-71.420616527,41.883885551],[-71.420593527,41.883931551],[-71.420563527,41.883973551],[-71.420555527,41.884003551],[-71.420540528,41.884034551],[-71.420486527,41.884091551],[-71.420418527,41.884140551],[-71.420380527,41.884098551],[-71.420212527,41.883942551],[-71.420128527,41.883854551],[-71.419159526,41.884224551],[-71.418961526,41.884297551],[-71.418739527,41.884396552],[-71.418571526,41.884457551],[-71.418343526,41.884545551],[-71.418076526,41.884655551],[-71.417976526,41.884701551],[-71.417908526,41.884720551],[-71.417847527,41.884743551],[-71.417702526,41.884774551],[-71.417542526,41.884793551],[-71.417366526,41.884789551],[-71.417274526,41.884777551],[-71.417122526,41.884751551],[-71.416725526,41.884659551],[-71.416641525,41.884640551],[-71.416519526,41.884606551],[-71.416336526,41.884545551],[-71.415863525,41.884365551],[-71.415413525,41.884194551],[-71.414841525,41.883965551],[-71.414642525,41.883881551],[-71.414719525,41.883690551],[-71.414894525,41.883263551],[-71.414993525,41.883011551],[-71.415146525,41.882626551],[-71.415451525,41.88186355],[-71.415486526,41.881774551],[-71.415604526,41.88147455],[-71.415642526,41.881363551],[-71.415688525,41.881253551],[-71.415718526,41.88114255],[-71.415733525,41.88102855],[-71.415741526,41.88090855],[-71.415749525,41.88079955],[-71.415749525,41.88069255],[-71.415749525,41.880612551],[-71.415703526,41.880238551],[-71.415668525,41.880083551],[-71.415642526,41.87997155],[-71.415642526,41.879948551],[-71.415148525,41.87990155],[-71.413887525,41.87978055],[-71.413030525,41.879870551],[-71.412920524,41.879887551],[-71.412186524,41.87986455],[-71.411597524,41.87960755],[-71.410716523,41.87962055],[-71.409835523,41.879908551],[-71.408943523,41.880062551],[-71.408134523,41.88014855],[-71.406442522,41.88040155],[-71.406337522,41.880417551],[-71.406266522,41.880432551],[-71.405021522,41.880698551],[-71.404534521,41.880756551],[-71.404507522,41.880759551],[-71.404494521,41.882069551],[-71.404508522,41.882409551],[-71.405093522,41.884475551],[-71.405205522,41.884787551],[-71.405310522,41.885322552],[-71.405430522,41.885618552],[-71.405684522,41.886248552],[-71.405763522,41.886443552],[-71.406296523,41.887759552],[-71.406481522,41.889055553],[-71.406494523,41.889145552],[-71.407141523,41.891290553],[-71.406541523,41.892211553],[-71.406586523,41.892205553],[-71.406639523,41.892186553],[-71.406853523,41.892064553],[-71.407112523,41.891877553],[-71.407158523,41.891838553],[-71.407178523,41.891827553],[-71.407288523,41.891724553],[-71.407357524,41.891629553],[-71.407410523,41.891556552],[-71.407524523,41.891369553],[-71.407547523,41.891316553],[-71.407616523,41.891190553],[-71.407651523,41.891162553],[-71.407692523,41.891159553],[-71.407730523,41.891182553],[-71.407753523,41.891213553],[-71.407776523,41.891274553],[-71.407715523,41.891335553],[-71.407684524,41.891384553],[-71.407661523,41.891434553],[-71.407600523,41.891644553],[-71.407578523,41.891827553],[-71.407562523,41.891919553],[-71.407547523,41.892094553],[-71.407547524,41.892277553],[-71.407570524,41.892533553],[-71.407570524,41.892655553],[-71.407578523,41.892720553],[-71.407623523,41.892891553],[-71.407669524,41.893013553],[-71.407722524,41.893113554],[-71.407784524,41.893196553],[-71.407829523,41.893246553],[-71.407936524,41.893334553],[-71.408096524,41.893437553],[-71.408173524,41.893498553],[-71.408241523,41.893532553],[-71.408295523,41.893547553],[-71.408356523,41.893555553],[-71.408463524,41.893555553],[-71.408539524,41.893547553],[-71.408745523,41.893540553],[-71.408791524,41.893555553],[-71.408836524,41.893593553],[-71.409064524,41.893459553],[-71.409118524,41.893511553],[-71.409079524,41.893534553],[-71.409080524,41.893564553],[-71.409062524,41.893604553],[-71.409002524,41.893650553],[-71.408886524,41.893751553],[-71.408855524,41.893812553],[-71.408837524,41.893878553],[-71.408835524,41.893941553],[-71.408841523,41.894008554],[-71.408880523,41.894063553],[-71.409047524,41.894228553],[-71.409098524,41.894266553],[-71.409159524,41.894301554],[-71.409341524,41.894380554],[-71.409425524,41.894422553],[-71.409502524,41.894475554],[-71.409571524,41.894536554],[-71.409615524,41.894603553],[-71.409645524,41.894668554],[-71.409694524,41.894721553],[-71.409854524,41.894796553],[-71.410002524,41.894881553],[-71.410091524,41.894883554],[-71.410150524,41.894909553],[-71.410286524,41.894999554],[-71.410397525,41.895085553],[-71.410464524,41.895149553],[-71.410515525,41.895208553],[-71.410551525,41.895273554],[-71.410594525,41.895317554],[-71.410624524,41.895373554],[-71.410625525,41.895436553],[-71.410642524,41.895507554],[-71.410686525,41.895571554],[-71.410744525,41.895632553],[-71.410868524,41.895727554],[-71.410916525,41.895785554],[-71.410973525,41.895832553],[-71.411054525,41.895849553],[-71.411139525,41.895888553],[-71.411157525,41.895948553],[-71.411203524,41.896007553],[-71.411281524,41.896033554],[-71.411353525,41.896041553],[-71.411509525,41.896130554],[-71.411593525,41.896167554],[-71.411669524,41.896188554],[-71.411760525,41.896204554],[-71.411821525,41.896185554],[-71.411834525,41.896167554],[-71.411784525,41.896125553],[-71.411784525,41.896066553],[-71.411920525,41.895980554],[-71.411960525,41.896006553],[-71.412032525,41.896039554],[-71.412091525,41.896024553],[-71.412148525,41.895979554],[-71.412137525,41.895925553],[-71.412117525,41.895871553],[-71.412126525,41.895810553],[-71.412173525,41.895800554],[-71.412260525,41.895818554],[-71.412427526,41.895872553],[-71.412498525,41.895912553],[-71.412598525,41.896019554],[-71.412705525,41.896235553],[-71.412764525,41.896376553],[-71.412778526,41.896438554],[-71.412783525,41.896494553],[-71.412803525,41.896551553],[-71.412849525,41.896584554],[-71.412888525,41.896585554],[-71.412993526,41.896631553],[-71.413078525,41.896620554],[-71.413216525,41.896557554],[-71.413333525,41.896525554],[-71.413353525,41.896482554],[-71.413364526,41.896428554],[-71.413444525,41.896387554],[-71.413490525,41.896431553],[-71.413559526,41.896508553],[-71.413902526,41.896859553],[-71.413956526,41.896916554],[-71.414604526,41.897591554],[-71.415283526,41.898270554],[-71.415810526,41.898770554],[-71.415916527,41.898880554],[-71.416046526,41.899006554],[-71.416298527,41.899262554],[-71.416412526,41.899399554],[-71.416451526,41.899437554],[-71.416588527,41.899628554],[-71.416748527,41.899880555],[-71.417053527,41.900414554],[-71.417099527,41.900483555],[-71.417259527,41.900742554],[-71.417343527,41.900849554],[-71.417519527,41.901051555],[-71.417572527,41.901120554],[-71.417831527,41.901425554],[-71.418045527,41.901711555],[-71.418533527,41.902390555],[-71.418770527,41.902691554],[-71.418884527,41.902687555],[-71.418962527,41.902689555],[-71.419022527,41.902691554],[-71.419465528,41.902748554],[-71.419685528,41.902790554],[-71.419792528,41.902817555],[-71.419991528,41.902874555],[-71.420456528,41.903038555],[-71.420708528,41.903160554],[-71.420769528,41.903183554],[-71.420906528,41.903244555],[-71.421227528,41.903374554],[-71.421356529,41.903435554]]]]}}"}, +{"type": "precinct", "typeId": 1705, "areaId": 25805, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":144,\"NAME\":\"1705\",\"SHAPE_Length\":0.087213860902833,\"SHAPE_Area\":-0.00022516354629407},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.408768525,41.913648557],[-71.408824525,41.913728557],[-71.408872525,41.913774557],[-71.408959525,41.913869557],[-71.409262525,41.913985557],[-71.409329525,41.914022557],[-71.409365525,41.914070557],[-71.409372525,41.914104557],[-71.409750525,41.914304557],[-71.410480525,41.914699558],[-71.410929525,41.914939557],[-71.411026525,41.914992558],[-71.411087525,41.915022557],[-71.411671526,41.915379557],[-71.412109526,41.915576558],[-71.412403526,41.915730558],[-71.413166527,41.916148557],[-71.413595527,41.916372558],[-71.414265527,41.916745558],[-71.414369527,41.916772557],[-71.415002528,41.917125557],[-71.416233527,41.917816558],[-71.418425528,41.918827558],[-71.418807528,41.919269558],[-71.419094529,41.920000558],[-71.419443529,41.920635558],[-71.420071529,41.921202558],[-71.420583529,41.921495558],[-71.42170053,41.922153558],[-71.421986529,41.922229559],[-71.422124529,41.922252558],[-71.42285353,41.922240558],[-71.42335453,41.922140558],[-71.42330753,41.922132559],[-71.42290853,41.922088558],[-71.42280953,41.922085558],[-71.42269253,41.922087558],[-71.425117531,41.921597558],[-71.425291531,41.921562558],[-71.426908531,41.921364558],[-71.426743531,41.921196558],[-71.426605532,41.921067558],[-71.426338531,41.920834558],[-71.426201531,41.920727558],[-71.425888531,41.920517558],[-71.425713531,41.920414558],[-71.425529531,41.920315558],[-71.425354531,41.920227558],[-71.425552531,41.919938558],[-71.42569053,41.919724558],[-71.425758531,41.919674558],[-71.42582753,41.919636558],[-71.425919531,41.919598557],[-71.426033531,41.919567558],[-71.426224531,41.919476558],[-71.426300531,41.919407557],[-71.426710531,41.919104558],[-71.426857531,41.918995557],[-71.427109531,41.918764557],[-71.427330531,41.918564557],[-71.427559532,41.918332557],[-71.427755532,41.918189558],[-71.42567353,41.914766557],[-71.420521529,41.908564555],[-71.419110528,41.906846555],[-71.418713528,41.906417555],[-71.418570528,41.906244555],[-71.418393528,41.906018555],[-71.419378528,41.905409555],[-71.420517528,41.904705555],[-71.421356529,41.903435554],[-71.421227528,41.903374554],[-71.420906528,41.903244555],[-71.420769528,41.903183554],[-71.420708528,41.903160554],[-71.420456528,41.903038555],[-71.419991528,41.902874555],[-71.419792528,41.902817555],[-71.419685528,41.902790554],[-71.419465528,41.902748554],[-71.419022527,41.902691554],[-71.418962527,41.902689555],[-71.418884527,41.902687555],[-71.418770527,41.902691554],[-71.418533527,41.902390555],[-71.418045527,41.901711555],[-71.417831527,41.901425554],[-71.417572527,41.901120554],[-71.417519527,41.901051555],[-71.417259527,41.901162555],[-71.416168527,41.901570555],[-71.415977527,41.901638554],[-71.415767526,41.901725555],[-71.415627526,41.901783555],[-71.415359526,41.901883555],[-71.415100526,41.901993554],[-71.415016526,41.902024555],[-71.414940527,41.902073555],[-71.414886526,41.902115555],[-71.414841526,41.902157555],[-71.414696526,41.902336555],[-71.414238526,41.902993555],[-71.414032526,41.903263555],[-71.413895526,41.903492555],[-71.413834526,41.903622555],[-71.413825526,41.903655555],[-71.413803526,41.903736555],[-71.413795526,41.903786555],[-71.413795526,41.903874555],[-71.413811526,41.904004555],[-71.413841526,41.904110555],[-71.413857526,41.904194555],[-71.413902526,41.904347556],[-71.413918526,41.904423555],[-71.413940526,41.904488555],[-71.413979526,41.904637555],[-71.414001526,41.904747555],[-71.414062526,41.904969556],[-71.414101526,41.905079555],[-71.414215526,41.905560555],[-71.414276526,41.905716555],[-71.414345526,41.905884556],[-71.414398526,41.905972555],[-71.414444526,41.906060556],[-71.414528527,41.906186555],[-71.414589527,41.906262555],[-71.414848526,41.906617555],[-71.414865527,41.906630555],[-71.415184526,41.907055556],[-71.414391527,41.907360556],[-71.413414526,41.907727556],[-71.413033526,41.907883556],[-71.412827526,41.907582556],[-71.412458526,41.907088556],[-71.412386526,41.907053556],[-71.412361526,41.907044555],[-71.412277525,41.907055556],[-71.411774525,41.907292555],[-71.411629525,41.907090556],[-71.411499525,41.906929556],[-71.411270525,41.907021555],[-71.409927525,41.907616556],[-71.408638525,41.908184556],[-71.407944524,41.907330556],[-71.407867524,41.907215555],[-71.407852524,41.907185556],[-71.407837524,41.907139556],[-71.407829524,41.907082556],[-71.407814524,41.906624556],[-71.407806525,41.906582556],[-71.407799524,41.905999556],[-71.407791524,41.905720555],[-71.407791524,41.905610556],[-71.407768524,41.905568556],[-71.407707524,41.905495556],[-71.407402524,41.905285555],[-71.407219524,41.905465555],[-71.406822524,41.905869555],[-71.406342524,41.906346556],[-71.406194523,41.906483556],[-71.406075523,41.906594556],[-71.405991524,41.906674556],[-71.405838523,41.906804556],[-71.405769524,41.906845555],[-71.405693524,41.906884555],[-71.405548523,41.906948556],[-71.405472523,41.906975556],[-71.405403524,41.907124556],[-71.405151524,41.907582556],[-71.405098523,41.907689556],[-71.405052524,41.907799556],[-71.405022523,41.907910556],[-71.405014524,41.907978556],[-71.405014524,41.908120556],[-71.405022523,41.908196556],[-71.405022523,41.908272556],[-71.405029523,41.908345556],[-71.405029523,41.908451556],[-71.405037523,41.908558557],[-71.405029523,41.908665556],[-71.405014524,41.908760556],[-71.404991524,41.908856556],[-71.404953524,41.908947557],[-71.404907523,41.909024557],[-71.404739524,41.909218557],[-71.404633523,41.909306556],[-71.404556523,41.909336557],[-71.404200523,41.909442556],[-71.403976523,41.909512557],[-71.403732523,41.909596556],[-71.403687523,41.909615556],[-71.403580523,41.909638556],[-71.403481523,41.909649557],[-71.403252523,41.909653556],[-71.402695523,41.909634556],[-71.402695523,41.909676556],[-71.402679522,41.909745557],[-71.402672523,41.909813556],[-71.402657523,41.909886556],[-71.402649523,41.909962557],[-71.402649523,41.910042556],[-71.402641522,41.910118557],[-71.402657523,41.910294557],[-71.402672523,41.910382557],[-71.402763523,41.910702557],[-71.402794523,41.910782557],[-71.402875522,41.910999556],[-71.402924523,41.911129557],[-71.402954523,41.911221557],[-71.403023523,41.911401557],[-71.403114523,41.911399557],[-71.403168523,41.911370556],[-71.403219523,41.911327557],[-71.403226523,41.911309557],[-71.403262523,41.911258557],[-71.403393523,41.911182557],[-71.403466523,41.911129557],[-71.403517523,41.911086557],[-71.403626523,41.911007557],[-71.403689523,41.910972557],[-71.403754523,41.910942556],[-71.403868523,41.910905556],[-71.404021524,41.910898557],[-71.404097523,41.910879557],[-71.404187523,41.910877557],[-71.404266523,41.910876557],[-71.404623524,41.910903556],[-71.405012524,41.910961556],[-71.405393523,41.911007557],[-71.405491523,41.911030557],[-71.405779523,41.911116556],[-71.405878523,41.911137556],[-71.405950524,41.911159556],[-71.406013523,41.911203557],[-71.406066524,41.911209557],[-71.406143524,41.911240557],[-71.406226524,41.911299557],[-71.406307524,41.911317557],[-71.406456524,41.911386557],[-71.406514524,41.911420557],[-71.406662524,41.911523557],[-71.406801524,41.911605556],[-71.406868524,41.911638557],[-71.406946525,41.911670557],[-71.407030524,41.911716557],[-71.407090524,41.911756557],[-71.407214524,41.911850557],[-71.407424524,41.912063557],[-71.407663525,41.912337557],[-71.407768524,41.912493557],[-71.407858525,41.912728557],[-71.407886524,41.912782557],[-71.407921525,41.912833557],[-71.407982524,41.912894557],[-71.408062524,41.912939557],[-71.408241524,41.913079557],[-71.408272525,41.913128557],[-71.408366525,41.913201557],[-71.408505525,41.913321557],[-71.408559525,41.913360557],[-71.408741525,41.913599557],[-71.408762524,41.913626557],[-71.408768525,41.913648557]]]]}}"}, +{"type": "precinct", "typeId": 1706, "areaId": 25800, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":139,\"NAME\":\"1706\",\"SHAPE_Length\":0.10823151932168,\"SHAPE_Area\":-0.0004133526326519},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.450750538,41.909529555],[-71.451050538,41.910073555],[-71.451271539,41.910454555],[-71.451477539,41.910866555],[-71.45298854,41.914315556],[-71.453196539,41.914786556],[-71.45439954,41.917508557],[-71.45466654,41.918133557],[-71.45597854,41.921116557],[-71.45601754,41.921227557],[-71.456052541,41.921290557],[-71.456398541,41.922104557],[-71.456440541,41.922197557],[-71.456650541,41.922665557],[-71.456955541,41.923287557],[-71.457130541,41.923588558],[-71.457298542,41.923848558],[-71.457474542,41.924103557],[-71.457809541,41.924557558],[-71.458115542,41.924958558],[-71.458614542,41.925630558],[-71.458780542,41.925853558],[-71.459175542,41.926384558],[-71.459572542,41.926926558],[-71.460228542,41.927792558],[-71.462135544,41.930336559],[-71.462868544,41.931313559],[-71.463165544,41.931717559],[-71.463791544,41.932438559],[-71.464401544,41.93303356],[-71.464622544,41.93322856],[-71.465454544,41.93398756],[-71.466232545,41.934700559],[-71.466407545,41.93470656],[-71.467049545,41.934731559],[-71.470139546,41.93484556],[-71.471109546,41.934879559],[-71.473028547,41.93494556],[-71.473512547,41.93496256],[-71.473021547,41.933169559],[-71.472879547,41.932544559],[-71.472830547,41.932328559],[-71.472606547,41.931409559],[-71.472481547,41.930811558],[-71.472467547,41.930745559],[-71.472303546,41.930309558],[-71.472049546,41.929755559],[-71.471630547,41.928982558],[-71.471585546,41.928899559],[-71.471291893,41.92839091],[-71.47266166,41.927369313],[-71.472769899,41.927288586],[-71.473701673,41.926593652],[-71.473761676,41.926548901],[-71.473976681,41.926388546],[-71.474558751,41.925954428],[-71.475868547,41.924977558],[-71.475994548,41.925051557],[-71.476089547,41.925106557],[-71.476341547,41.925221557],[-71.476913548,41.925442557],[-71.477272548,41.925576557],[-71.477577548,41.925679558],[-71.477715548,41.925721557],[-71.477989549,41.925778558],[-71.478226549,41.925808557],[-71.478561548,41.925812557],[-71.478683548,41.925805557],[-71.478806549,41.925793557],[-71.479347549,41.925694557],[-71.479546549,41.925652557],[-71.48085955,41.925398557],[-71.481030549,41.925365557],[-71.48169755,41.925236557],[-71.481880549,41.925743557],[-71.48204055,41.926228557],[-71.482109549,41.926403558],[-71.482170549,41.926510557],[-71.48225455,41.926571557],[-71.48239955,41.926617558],[-71.48333755,41.926758557],[-71.48368155,41.926819557],[-71.48372755,41.926636558],[-71.48383355,41.926262557],[-71.48396355,41.925900557],[-71.48403955,41.925751557],[-71.484055551,41.925694557],[-71.48416155,41.925496557],[-71.48433755,41.925213557],[-71.48450055,41.924997557],[-71.48416455,41.923987557],[-71.483204549,41.921066557],[-71.482963549,41.920082556],[-71.482868549,41.919808556],[-71.48270555,41.919010556],[-71.482147549,41.917697556],[-71.481423549,41.915991555],[-71.481305549,41.915683556],[-71.481006549,41.915006555],[-71.480931549,41.914806555],[-71.480598549,41.914898555],[-71.480072548,41.915093555],[-71.479698548,41.915226556],[-71.479248548,41.915379555],[-71.478514548,41.914784555],[-71.477989548,41.914379555],[-71.477562548,41.914059555],[-71.477097547,41.913800555],[-71.476848547,41.913691555],[-71.476650547,41.913604555],[-71.476479547,41.913529555],[-71.475945546,41.913281555],[-71.474861546,41.912800555],[-71.474426546,41.912617554],[-71.474228547,41.912529555],[-71.473969546,41.912411555],[-71.473495546,41.912178555],[-71.473190546,41.911965555],[-71.472931546,41.911759554],[-71.472656546,41.911473555],[-71.471878545,41.912289555],[-71.471519545,41.912651555],[-71.471291545,41.912869555],[-71.471016545,41.913109555],[-71.470840545,41.913224555],[-71.470650545,41.913315555],[-71.470436545,41.913407555],[-71.470329545,41.913445555],[-71.470207545,41.913483555],[-71.470078545,41.913514555],[-71.469330545,41.913727556],[-71.468643545,41.913941556],[-71.467316544,41.914368556],[-71.466906544,41.914494555],[-71.466736544,41.914547555],[-71.465919544,41.914811556],[-71.465134544,41.915051556],[-71.464287543,41.915333556],[-71.463867543,41.915467555],[-71.463623543,41.915562555],[-71.463509543,41.915612556],[-71.463310543,41.915722556],[-71.463089543,41.915871556],[-71.462845543,41.916054556],[-71.462387543,41.916375556],[-71.461945542,41.916695556],[-71.461601542,41.916916556],[-71.461493543,41.916984557],[-71.461299543,41.916890556],[-71.459949542,41.916261556],[-71.458899542,41.915779556],[-71.457428541,41.915067556],[-71.45693354,41.914847556],[-71.45656354,41.914682556],[-71.45551454,41.914287556],[-71.45473554,41.912243556],[-71.45454454,41.911732555],[-71.454181539,41.910824555],[-71.45396454,41.910871555],[-71.45388254,41.910895555],[-71.453812539,41.910910555],[-71.453733539,41.910920555],[-71.453468539,41.910916555],[-71.453388539,41.910904555],[-71.453178539,41.910902555],[-71.45310454,41.910892555],[-71.453006539,41.910841556],[-71.45295254,41.910790555],[-71.45291254,41.910731555],[-71.452906539,41.910662555],[-71.45293154,41.910606556],[-71.45293254,41.910563555],[-71.452907539,41.910516555],[-71.452798539,41.910511555],[-71.452707539,41.910519555],[-71.452434539,41.910522555],[-71.452357539,41.910512555],[-71.452290539,41.910491555],[-71.452230539,41.910453555],[-71.452167539,41.910406555],[-71.451989539,41.910251555],[-71.451865539,41.910171555],[-71.451539539,41.910112555],[-71.451462539,41.910092555],[-71.451406539,41.910025555],[-71.451301538,41.909853555],[-71.451084538,41.909531555],[-71.450890538,41.909530555],[-71.450750538,41.909529555]]]]}}"}, +{"type": "precinct", "typeId": 1707, "areaId": 25801, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":140,\"NAME\":\"1707\",\"SHAPE_Length\":0.054304732808986,\"SHAPE_Area\":-0.00012104285246305},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.415642526,41.879948551],[-71.415642526,41.87997155],[-71.415668525,41.880083551],[-71.415703526,41.880238551],[-71.415749525,41.880612551],[-71.415749525,41.88069255],[-71.415749525,41.88079955],[-71.415741526,41.88090855],[-71.415733525,41.88102855],[-71.415718526,41.88114255],[-71.415688525,41.881253551],[-71.415642526,41.881363551],[-71.415604526,41.88147455],[-71.415486526,41.881774551],[-71.415451525,41.88186355],[-71.415146525,41.882626551],[-71.414993525,41.883011551],[-71.414894525,41.883263551],[-71.414719525,41.883690551],[-71.414642525,41.883881551],[-71.414841525,41.883965551],[-71.415413525,41.884194551],[-71.415863525,41.884365551],[-71.416336526,41.884545551],[-71.416519526,41.884606551],[-71.416641525,41.884640551],[-71.416725526,41.884659551],[-71.417122526,41.884751551],[-71.417274526,41.884777551],[-71.417366526,41.884789551],[-71.417542526,41.884793551],[-71.417702526,41.884774551],[-71.417847527,41.884743551],[-71.417908526,41.884720551],[-71.417976526,41.884701551],[-71.418076526,41.884655551],[-71.418343526,41.884545551],[-71.418571526,41.884457551],[-71.418739527,41.884396552],[-71.418961526,41.884297551],[-71.419159526,41.884224551],[-71.420128527,41.883854551],[-71.420212527,41.883942551],[-71.420380527,41.884098551],[-71.420418527,41.884140551],[-71.420486527,41.884091551],[-71.420540528,41.884034551],[-71.420555527,41.884003551],[-71.420563527,41.883973551],[-71.420593527,41.883931551],[-71.420616527,41.883885551],[-71.420738527,41.883713551],[-71.420822527,41.883557551],[-71.420876527,41.88340455],[-71.420918527,41.883312551],[-71.420930528,41.883293551],[-71.422054528,41.883824551],[-71.422544528,41.884056551],[-71.424374528,41.88387355],[-71.424855528,41.883655551],[-71.425011528,41.883706551],[-71.425278529,41.88377455],[-71.425415529,41.883805551],[-71.425964529,41.88395055],[-71.426353529,41.884041551],[-71.426491529,41.884072551],[-71.426735529,41.884140551],[-71.426834529,41.884171551],[-71.427048529,41.88422455],[-71.42728453,41.884308551],[-71.42759753,41.88443855],[-71.42768953,41.884480551],[-71.42802453,41.884602551],[-71.42806253,41.88461355],[-71.42808553,41.884621551],[-71.42858953,41.884777551],[-71.42866553,41.884804551],[-71.42884153,41.884858551],[-71.42910053,41.884915551],[-71.42921453,41.884919551],[-71.42933753,41.884911551],[-71.42950453,41.884880551],[-71.42968853,41.884823551],[-71.42993253,41.884724551],[-71.43012253,41.884640551],[-71.43047353,41.884503551],[-71.430717531,41.88440055],[-71.430908531,41.884331551],[-71.431091531,41.884274551],[-71.431282531,41.88422455],[-71.431450531,41.884198551],[-71.43161853,41.884179551],[-71.431778531,41.884175551],[-71.432007531,41.884175551],[-71.432846532,41.884194551],[-71.433334531,41.884217551],[-71.433868531,41.88426655],[-71.434219532,41.884308551],[-71.434601532,41.88433955],[-71.434814532,41.884346551],[-71.435020532,41.88434655],[-71.435249532,41.884335551],[-71.435707532,41.884293551],[-71.436569533,41.884198551],[-71.436821533,41.88416755],[-71.436928532,41.884156551],[-71.437073533,41.884140551],[-71.436905532,41.883789551],[-71.436302532,41.88243155],[-71.435295532,41.88021155],[-71.434976531,41.87956955],[-71.434906532,41.879429549],[-71.434860531,41.87934355],[-71.434776532,41.87918555],[-71.434742531,41.879116549],[-71.434654532,41.878937549],[-71.434265532,41.87824755],[-71.433830531,41.877503549],[-71.433462531,41.87690655],[-71.433306531,41.87690655],[-71.433240531,41.87690655],[-71.433200531,41.87690655],[-71.43242053,41.877130549],[-71.43224953,41.87717955],[-71.432025531,41.877243549],[-71.43180253,41.877308549],[-71.43006753,41.877533549],[-71.42812453,41.87780355],[-71.425300528,41.878176549],[-71.425148528,41.87818955],[-71.423784528,41.878372549],[-71.422153528,41.87857755],[-71.418564526,41.87914755],[-71.418060526,41.87921255],[-71.416555526,41.87979655],[-71.415787525,41.87992555],[-71.415642526,41.879948551]]]]}}"}, +{"type": "precinct", "typeId": 1708, "areaId": 25806, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":145,\"NAME\":\"1708\",\"SHAPE_Length\":0.24967755549346,\"SHAPE_Area\":-0.0014668704916466},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.433960534,41.938202561],[-71.434118534,41.938381561],[-71.434841535,41.939201561],[-71.435362535,41.940037561],[-71.436516535,41.941208561],[-71.437272536,41.941834561],[-71.438092537,41.942635562],[-71.439157537,41.943428562],[-71.439278537,41.943550562],[-71.439636536,41.943737562],[-71.440681537,41.944463562],[-71.440818537,41.944598563],[-71.441042537,41.944953562],[-71.441612537,41.945910562],[-71.441898537,41.946247562],[-71.442095537,41.946604563],[-71.442332538,41.947103562],[-71.442549538,41.947418563],[-71.442885538,41.947664562],[-71.443172538,41.947779562],[-71.444250539,41.948184563],[-71.446521539,41.948800563],[-71.44734754,41.949117563],[-71.44777854,41.949107562],[-71.44814154,41.949119563],[-71.44849054,41.948939563],[-71.44896654,41.949120563],[-71.44932954,41.949213563],[-71.44966654,41.949187563],[-71.45058054,41.949579563],[-71.45098754,41.949921563],[-71.451275541,41.950312563],[-71.451399541,41.951564563],[-71.451402541,41.951607563],[-71.451503541,41.952195563],[-71.451609541,41.952409563],[-71.452315541,41.953113563],[-71.452472541,41.953011563],[-71.452397541,41.952935563],[-71.452330541,41.952891563],[-71.452269542,41.952858563],[-71.452216541,41.952818563],[-71.452059541,41.952653563],[-71.451890541,41.952511563],[-71.451846541,41.952458563],[-71.451765541,41.952342563],[-71.451681541,41.952190563],[-71.451575541,41.951976563],[-71.451549541,41.951845563],[-71.451536541,41.951678563],[-71.451535541,41.951528563],[-71.451544541,41.951465563],[-71.451594541,41.951335563],[-71.451662541,41.951356563],[-71.451710541,41.951404563],[-71.451813541,41.951526563],[-71.451898541,41.951643563],[-71.452005541,41.951753563],[-71.452072541,41.951810563],[-71.452132542,41.951841563],[-71.452229542,41.951881563],[-71.452293541,41.951884563],[-71.452289542,41.951840563],[-71.452241541,41.951798563],[-71.452172542,41.951761563],[-71.452112542,41.951723563],[-71.452059541,41.951677564],[-71.452009541,41.951620563],[-71.451888541,41.951496563],[-71.451835541,41.951436563],[-71.451714541,41.951264563],[-71.451666541,41.951231563],[-71.451654541,41.951204563],[-71.451636541,41.950853563],[-71.451654541,41.950760563],[-71.451652541,41.950687563],[-71.451617541,41.950616563],[-71.451574541,41.950545563],[-71.451524541,41.950439563],[-71.451481541,41.950286563],[-71.451480541,41.950230563],[-71.451488541,41.950113563],[-71.451504541,41.950058563],[-71.45151154,41.950001562],[-71.451502541,41.949942562],[-71.45147254,41.949883563],[-71.451431541,41.949824563],[-71.451327541,41.949716563],[-71.451269541,41.949666563],[-71.451080541,41.949530563],[-71.450977541,41.949439562],[-71.450919541,41.949400562],[-71.450856541,41.949367563],[-71.450630541,41.949270563],[-71.450544541,41.949240562],[-71.45048054,41.949210563],[-71.45016954,41.949088562],[-71.450022541,41.949046562],[-71.44987654,41.948996563],[-71.449655541,41.948900563],[-71.44922354,41.948762563],[-71.44915054,41.948743563],[-71.44904754,41.948728563],[-71.44885254,41.948723563],[-71.44874454,41.948725563],[-71.44864654,41.948734562],[-71.44847954,41.948757562],[-71.44828654,41.948777562],[-71.447458539,41.948765563],[-71.44715854,41.948756562],[-71.448220539,41.947476562],[-71.44826554,41.947464563],[-71.44852454,41.947335562],[-71.44863154,41.947277562],[-71.44885354,41.947163562],[-71.44908154,41.947033563],[-71.44931854,41.946904562],[-71.44944054,41.946804562],[-71.44952454,41.946663563],[-71.44956254,41.946530562],[-71.44952454,41.945969562],[-71.44952454,41.945626562],[-71.44957054,41.945294562],[-71.44968454,41.944985562],[-71.44983754,41.944722562],[-71.450027541,41.944481562],[-71.45025654,41.944268561],[-71.45069954,41.943974562],[-71.45089754,41.943859561],[-71.45147654,41.943508561],[-71.452103541,41.943127561],[-71.452141541,41.943108562],[-71.452469541,41.942917562],[-71.453247541,41.942456561],[-71.454071541,41.941967561],[-71.454239542,41.941910561],[-71.454384541,41.941899561],[-71.454536541,41.941918561],[-71.454712541,41.942002561],[-71.454895542,41.942181561],[-71.455086542,41.942383561],[-71.455345542,41.942589562],[-71.455513542,41.942692561],[-71.455704541,41.942723562],[-71.455933542,41.942730561],[-71.456131542,41.942700561],[-71.456444542,41.942566561],[-71.456787542,41.942433562],[-71.457321542,41.942280561],[-71.457756542,41.942223561],[-71.458099543,41.942154561],[-71.458420543,41.941990561],[-71.458351543,41.941937561],[-71.457573543,41.941273561],[-71.457454543,41.941175561],[-71.457150542,41.940924561],[-71.457436543,41.940964561],[-71.459717543,41.941334561],[-71.460007543,41.941380561],[-71.461494544,41.941601561],[-71.462845544,41.941815561],[-71.463234544,41.941874561],[-71.463875544,41.941971561],[-71.466415545,41.94237656],[-71.467422546,41.942528561],[-71.467873545,41.942597561],[-71.469353547,41.942841561],[-71.469659547,41.942888561],[-71.471092547,41.943108561],[-71.472572547,41.943333561],[-71.473434547,41.943455561],[-71.474297548,41.943562561],[-71.474869548,41.943608561],[-71.475418549,41.943638561],[-71.476158549,41.94366556],[-71.476533548,41.943673561],[-71.476777549,41.943681561],[-71.476868549,41.943680561],[-71.476983549,41.943670561],[-71.477193548,41.943653561],[-71.477327549,41.943633561],[-71.477692549,41.943596561],[-71.47808855,41.94356656],[-71.47851655,41.943516561],[-71.478723549,41.94348856],[-71.47900455,41.94345156],[-71.47945455,41.943383561],[-71.48014155,41.94325356],[-71.48078255,41.943108561],[-71.48134055,41.94296256],[-71.48136955,41.942955561],[-71.48201855,41.942761561],[-71.482750551,41.94253256],[-71.483444551,41.942257561],[-71.484116551,41.94197156],[-71.484430551,41.94180456],[-71.484802551,41.94160556],[-71.485916551,41.94096856],[-71.486528552,41.94060456],[-71.486701552,41.94050256],[-71.487213552,41.94019756],[-71.488197552,41.93959856],[-71.489225553,41.93897156],[-71.489073552,41.93853656],[-71.488882552,41.938009559],[-71.487504552,41.934207559],[-71.487462552,41.934027559],[-71.487204551,41.932906559],[-71.487152552,41.932756559],[-71.486304551,41.930306558],[-71.485605551,41.928406558],[-71.485182551,41.927100558],[-71.48450055,41.924997557],[-71.48433755,41.925213557],[-71.48416155,41.925496557],[-71.484055551,41.925694557],[-71.48403955,41.925751557],[-71.48396355,41.925900557],[-71.48383355,41.926262557],[-71.48372755,41.926636558],[-71.48368155,41.926819557],[-71.48333755,41.926758557],[-71.48239955,41.926617558],[-71.48225455,41.926571557],[-71.482170549,41.926510557],[-71.482109549,41.926403558],[-71.48204055,41.926228557],[-71.481880549,41.925743557],[-71.48169755,41.925236557],[-71.481030549,41.925365557],[-71.48085955,41.925398557],[-71.479546549,41.925652557],[-71.479347549,41.925694557],[-71.478806549,41.925793557],[-71.478683548,41.925805557],[-71.478561548,41.925812557],[-71.478226549,41.925808557],[-71.477989549,41.925778558],[-71.477715548,41.925721557],[-71.477577548,41.925679558],[-71.477272548,41.925576557],[-71.476913548,41.925442557],[-71.476341547,41.925221557],[-71.476089547,41.925106557],[-71.475994548,41.925051557],[-71.475868547,41.924977558],[-71.474558751,41.925954428],[-71.473976681,41.926388546],[-71.473761676,41.926548901],[-71.473701673,41.926593652],[-71.472769899,41.927288586],[-71.47266166,41.927369313],[-71.471291893,41.92839091],[-71.471585546,41.928899559],[-71.471630547,41.928982558],[-71.472049546,41.929755559],[-71.472303546,41.930309558],[-71.472467547,41.930745559],[-71.472481547,41.930811558],[-71.472606547,41.931409559],[-71.472830547,41.932328559],[-71.472879547,41.932544559],[-71.473021547,41.933169559],[-71.473512547,41.93496256],[-71.473028547,41.93494556],[-71.471109546,41.934879559],[-71.470139546,41.93484556],[-71.467049545,41.934731559],[-71.466407545,41.93470656],[-71.466232545,41.934700559],[-71.465454544,41.93398756],[-71.464622544,41.93322856],[-71.464401544,41.93303356],[-71.463791544,41.932438559],[-71.463165544,41.931717559],[-71.462868544,41.931313559],[-71.462135544,41.930336559],[-71.460228542,41.927792558],[-71.459572542,41.926926558],[-71.459175542,41.926384558],[-71.458780542,41.925853558],[-71.458614542,41.925630558],[-71.458115542,41.924958558],[-71.457809541,41.924557558],[-71.457474542,41.924103557],[-71.457298542,41.923848558],[-71.457130541,41.923588558],[-71.456955541,41.923287557],[-71.456650541,41.922665557],[-71.456440541,41.922197557],[-71.456398541,41.922104557],[-71.456052541,41.921290557],[-71.45601754,41.921227557],[-71.45597854,41.921116557],[-71.45466654,41.918133557],[-71.45439954,41.917508557],[-71.453196539,41.914786556],[-71.45298854,41.914315556],[-71.451477539,41.910866555],[-71.451271539,41.910454555],[-71.451050538,41.910073555],[-71.450750538,41.909529555],[-71.450294538,41.908757555],[-71.449394538,41.907208555],[-71.449219538,41.906895555],[-71.449181538,41.906838555],[-71.448555537,41.905754554],[-71.448410537,41.905480554],[-71.448273537,41.905201554],[-71.448143537,41.904923554],[-71.447952537,41.904473554],[-71.447563537,41.903466554],[-71.447403537,41.903061553],[-71.447189537,41.902607554],[-71.447158537,41.902539554],[-71.447029537,41.902573553],[-71.446976537,41.902592553],[-71.446678536,41.902668554],[-71.446159537,41.902817554],[-71.445808537,41.902905553],[-71.445648536,41.902935554],[-71.445618537,41.902943553],[-71.445404537,41.902977554],[-71.445076536,41.903023554],[-71.444695536,41.903054554],[-71.444489536,41.903061554],[-71.444290536,41.903073554],[-71.443878536,41.903122554],[-71.443718536,41.903149554],[-71.443492536,41.903195554],[-71.443398535,41.903214554],[-71.443230536,41.903256554],[-71.443062536,41.903305554],[-71.442650536,41.903443554],[-71.442406535,41.903538554],[-71.441864535,41.903763554],[-71.441666535,41.903862554],[-71.441353535,41.904057554],[-71.441139535,41.904236554],[-71.441040535,41.904328554],[-71.440796535,41.904583554],[-71.440681535,41.904717555],[-71.440590534,41.904850555],[-71.440491534,41.904980554],[-71.440331535,41.905217555],[-71.440178535,41.905419555],[-71.440117535,41.905514555],[-71.439926534,41.905770555],[-71.439804535,41.905896555],[-71.439743535,41.905949554],[-71.439514535,41.906113555],[-71.439285534,41.906262554],[-71.439117534,41.906357554],[-71.438866535,41.906517555],[-71.438515534,41.906731555],[-71.438210534,41.906891555],[-71.438019534,41.906968555],[-71.437920534,41.906998555],[-71.437714534,41.907048555],[-71.437477534,41.907086555],[-71.437073534,41.907135555],[-71.436943533,41.907158555],[-71.436691533,41.907223555],[-71.436501534,41.907303555],[-71.436256534,41.907421555],[-71.436211534,41.907444555],[-71.436111533,41.907486555],[-71.435898533,41.907566555],[-71.435677533,41.907616555],[-71.435562533,41.907627555],[-71.435448533,41.907631555],[-71.435349533,41.907627555],[-71.435143533,41.907597555],[-71.435020533,41.907570555],[-71.434792533,41.907502555],[-71.434573533,41.907428556],[-71.434364533,41.907357555],[-71.434196533,41.907284555],[-71.434036532,41.907196555],[-71.433891533,41.907105555],[-71.433823532,41.907055555],[-71.433594533,41.906933555],[-71.433472532,41.906880555],[-71.433250533,41.906804555],[-71.433052533,41.906754555],[-71.432884533,41.906723555],[-71.432755532,41.906712555],[-71.432396533,41.906704555],[-71.432291532,41.906706555],[-71.431854532,41.906712555],[-71.431648532,41.906701555],[-71.431396532,41.906662555],[-71.431038532,41.906575555],[-71.430885532,41.906544555],[-71.430313531,41.906414555],[-71.429916532,41.906311555],[-71.429520531,41.906197555],[-71.429375531,41.906147555],[-71.428940531,41.905987555],[-71.428795531,41.905938555],[-71.428650531,41.905884555],[-71.428513531,41.905838555],[-71.428146531,41.905724555],[-71.427902531,41.905655555],[-71.426857531,41.905400555],[-71.42665353,41.905353555],[-71.426506531,41.905320555],[-71.42628553,41.905262555],[-71.42597253,41.905190555],[-71.42593153,41.905178555],[-71.42578153,41.905136555],[-71.42569053,41.905102555],[-71.42552953,41.905033555],[-71.42538553,41.904957555],[-71.42527053,41.904877555],[-71.42515653,41.904808555],[-71.425089529,41.904779555],[-71.42497353,41.904713555],[-71.42482853,41.904641554],[-71.42472853,41.904602554],[-71.424286529,41.904454555],[-71.42369853,41.904270554],[-71.423454529,41.904194554],[-71.423340529,41.904164555],[-71.423004529,41.904057554],[-71.422607529,41.903942555],[-71.422462529,41.903897555],[-71.422356528,41.903859555],[-71.422073529,41.903748555],[-71.421753528,41.903607554],[-71.421654528,41.903569554],[-71.421356529,41.903435554],[-71.420517528,41.904705555],[-71.419378528,41.905409555],[-71.418393528,41.906018555],[-71.418570528,41.906244555],[-71.418713528,41.906417555],[-71.419110528,41.906846555],[-71.420521529,41.908564555],[-71.42567353,41.914766557],[-71.427755532,41.918189558],[-71.427559532,41.918332557],[-71.427330531,41.918564557],[-71.427109531,41.918764557],[-71.426857531,41.918995557],[-71.426710531,41.919104558],[-71.426300531,41.919407557],[-71.426224531,41.919476558],[-71.426033531,41.919567558],[-71.425919531,41.919598557],[-71.42582753,41.919636558],[-71.425758531,41.919674558],[-71.42569053,41.919724558],[-71.425552531,41.919938558],[-71.425354531,41.920227558],[-71.425529531,41.920315558],[-71.425713531,41.920414558],[-71.425888531,41.920517558],[-71.426201531,41.920727558],[-71.426338531,41.920834558],[-71.426605532,41.921067558],[-71.426743531,41.921196558],[-71.426908531,41.921364558],[-71.425291531,41.921562558],[-71.425117531,41.921597558],[-71.42269253,41.922087558],[-71.42280953,41.922085558],[-71.42290853,41.922088558],[-71.42330753,41.922132559],[-71.42335453,41.922140558],[-71.42285353,41.922240558],[-71.42371353,41.922261558],[-71.424495531,41.922346559],[-71.42532253,41.922471558],[-71.426025531,41.922678559],[-71.426792531,41.922916558],[-71.427544531,41.923207558],[-71.428327532,41.923551559],[-71.428729532,41.923831558],[-71.429006532,41.924071558],[-71.429579532,41.924779559],[-71.429996533,41.925636559],[-71.430356532,41.926069559],[-71.430756533,41.926606559],[-71.430939533,41.926995559],[-71.430902533,41.927280559],[-71.430891533,41.927891559],[-71.430941533,41.92852656],[-71.431054533,41.929022559],[-71.431106533,41.929587559],[-71.431203533,41.93009856],[-71.431287533,41.93054956],[-71.431271533,41.93079956],[-71.431233533,41.931007559],[-71.431149534,41.93141956],[-71.431013534,41.93189856],[-71.430900533,41.93239456],[-71.430771533,41.93294756],[-71.430717533,41.93340656],[-71.430721533,41.93370356],[-71.430738534,41.93395656],[-71.430854534,41.93428456],[-71.430955533,41.93464456],[-71.431221534,41.93501056],[-71.431443533,41.935370561],[-71.431782534,41.935705561],[-71.432425534,41.936493561],[-71.432809534,41.936843561],[-71.433142534,41.937256561],[-71.433364534,41.937706561],[-71.433707534,41.938081561],[-71.433960534,41.938202561]]]]}}"}, +{"type": "precinct", "typeId": 1709, "areaId": 25808, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":147,\"NAME\":\"1709\",\"SHAPE_Length\":0.12632996375319,\"SHAPE_Area\":-0.00045559251698695},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.471451548,41.959504564],[-71.471508548,41.959971564],[-71.471519548,41.960057564],[-71.471535548,41.960190564],[-71.471504548,41.960431565],[-71.471497548,41.960507564],[-71.471458548,41.960762565],[-71.471344548,41.961318564],[-71.471298548,41.961541565],[-71.471283548,41.961590564],[-71.471268548,41.961682564],[-71.471237548,41.961968565],[-71.471237548,41.962014564],[-71.471245548,41.962094564],[-71.471275548,41.962250564],[-71.471382548,41.962559565],[-71.471535548,41.962918565],[-71.471614549,41.963136565],[-71.471664548,41.963276565],[-71.471786548,41.963555564],[-71.471985549,41.963906564],[-71.472214549,41.964295565],[-71.472359548,41.964524565],[-71.472427549,41.964630565],[-71.472885548,41.965588565],[-71.473396549,41.965439565],[-71.473770549,41.965321565],[-71.474037549,41.965245565],[-71.474121549,41.965241565],[-71.474168549,41.965278565],[-71.474182549,41.965294565],[-71.474426549,41.965748565],[-71.474609549,41.966084565],[-71.474739549,41.966309565],[-71.475128549,41.966198565],[-71.47541855,41.966126566],[-71.47557155,41.966065565],[-71.47560955,41.966133565],[-71.475693549,41.966229565],[-71.47589155,41.966347565],[-71.47613555,41.966473565],[-71.47618155,41.966496566],[-71.47631855,41.966637565],[-71.47647155,41.966805565],[-71.47661655,41.967114565],[-71.47687555,41.967537565],[-71.47705855,41.967873565],[-71.47719655,41.968270566],[-71.47727255,41.968575566],[-71.477348551,41.968575566],[-71.47757055,41.968556566],[-71.47759255,41.968548565],[-71.477737551,41.968510565],[-71.478081551,41.968373565],[-71.479057551,41.967949565],[-71.479103551,41.967926565],[-71.479584551,41.967656565],[-71.480064551,41.967343565],[-71.482216552,41.965920565],[-71.482475552,41.965744565],[-71.482986552,41.965413565],[-71.483322552,41.965145565],[-71.483383552,41.965104565],[-71.483704553,41.964886565],[-71.484108552,41.964630564],[-71.484390552,41.964440565],[-71.484512552,41.964363565],[-71.484680553,41.964245564],[-71.485031553,41.964066564],[-71.485481553,41.963868564],[-71.486122553,41.963681564],[-71.486252553,41.963631565],[-71.487236554,41.963288564],[-71.487625554,41.963147564],[-71.487588553,41.963036564],[-71.487578553,41.962998564],[-71.487576553,41.962880564],[-71.487555553,41.962826564],[-71.487523554,41.962772564],[-71.487497553,41.962714564],[-71.487446554,41.962660564],[-71.487373553,41.962611564],[-71.487314553,41.962557564],[-71.487292553,41.962495564],[-71.487290554,41.962435564],[-71.487319553,41.962367564],[-71.487372553,41.962328564],[-71.487409553,41.962276564],[-71.487431553,41.962203564],[-71.487437553,41.962126564],[-71.487437553,41.961986564],[-71.487421553,41.961929564],[-71.487370553,41.961874564],[-71.487341553,41.961818564],[-71.487303553,41.961770564],[-71.487289553,41.961711564],[-71.487284553,41.961648564],[-71.487221553,41.961544564],[-71.487165553,41.961494564],[-71.486993553,41.961434564],[-71.486929553,41.961389564],[-71.486911553,41.961322564],[-71.486952553,41.961274564],[-71.486991553,41.961240564],[-71.487012553,41.961222564],[-71.487041553,41.961163564],[-71.487045553,41.961094564],[-71.487039553,41.961035564],[-71.487015553,41.960964564],[-71.486980553,41.960913564],[-71.486886553,41.960819564],[-71.486829553,41.960779564],[-71.486747553,41.960752564],[-71.486647553,41.960747563],[-71.486545553,41.960747563],[-71.486456553,41.960732564],[-71.486308553,41.960687564],[-71.486162553,41.960629563],[-71.486100553,41.960578564],[-71.486075553,41.960510564],[-71.486064553,41.960450564],[-71.486063553,41.960320563],[-71.486095553,41.960284564],[-71.486163553,41.960260563],[-71.486250553,41.960237564],[-71.486338553,41.960227564],[-71.486375553,41.960169564],[-71.486520553,41.960113564],[-71.486583553,41.960080564],[-71.486613553,41.960022564],[-71.486614553,41.959902564],[-71.486638553,41.959844564],[-71.486644553,41.959777563],[-71.486667553,41.959713563],[-71.486717553,41.959661563],[-71.486738553,41.959600563],[-71.486726553,41.959538563],[-71.486701553,41.959474563],[-71.486689553,41.959410564],[-71.486688553,41.959290563],[-71.486716553,41.959166563],[-71.486747553,41.959104563],[-71.486869553,41.958939563],[-71.486978553,41.958822563],[-71.487052553,41.958762563],[-71.487087553,41.958731564],[-71.487152553,41.958683563],[-71.487287553,41.958615564],[-71.487313553,41.958552563],[-71.487313553,41.958488563],[-71.487292553,41.958464563],[-71.487153553,41.958415563],[-71.486970553,41.958388563],[-71.486782553,41.958346563],[-71.486613552,41.958283564],[-71.486538553,41.958249563],[-71.486501553,41.958203563],[-71.486476552,41.958147564],[-71.486456553,41.958085563],[-71.486452553,41.957913563],[-71.486420552,41.957863563],[-71.486368553,41.957810563],[-71.486362552,41.957690563],[-71.486306553,41.957663563],[-71.486233553,41.957635563],[-71.486135553,41.957529563],[-71.486017553,41.957414563],[-71.485985552,41.957358563],[-71.485980553,41.957292563],[-71.485993552,41.957238563],[-71.485909552,41.957173563],[-71.485865553,41.957143563],[-71.485781552,41.957133563],[-71.485633552,41.957172563],[-71.485570552,41.957148563],[-71.485513553,41.957100563],[-71.485470552,41.957041563],[-71.485442552,41.956982563],[-71.485354552,41.956881563],[-71.485314552,41.956819563],[-71.485311552,41.956750563],[-71.485360552,41.956702563],[-71.485408552,41.956681563],[-71.485484552,41.956666563],[-71.485476553,41.956610563],[-71.485420552,41.956562563],[-71.485362552,41.956523563],[-71.485315552,41.956474563],[-71.485272552,41.956420563],[-71.485243552,41.956366563],[-71.485200552,41.956320563],[-71.485084552,41.956238563],[-71.484973552,41.956146563],[-71.484960552,41.956086563],[-71.485077552,41.955964563],[-71.485142552,41.955925563],[-71.485231552,41.955901563],[-71.485509552,41.955862563],[-71.485594552,41.955842563],[-71.485671553,41.955819563],[-71.485758552,41.955801563],[-71.485852552,41.955803563],[-71.485909552,41.955848563],[-71.485986552,41.955860563],[-71.486062552,41.955847563],[-71.486145552,41.955844563],[-71.486224552,41.955847563],[-71.486303552,41.955869563],[-71.486373553,41.955907563],[-71.486478552,41.956018563],[-71.486553553,41.956068563],[-71.486683553,41.956137563],[-71.486811553,41.956240563],[-71.486891553,41.956288563],[-71.486970553,41.956323563],[-71.487049553,41.956333563],[-71.487128553,41.956301563],[-71.487256552,41.956205563],[-71.487367553,41.956104563],[-71.487419553,41.956063563],[-71.487466553,41.956023563],[-71.487491553,41.956021563],[-71.487547553,41.956008562],[-71.487597553,41.955968562],[-71.487664553,41.955861563],[-71.487690553,41.955795562],[-71.487691553,41.955675563],[-71.487684553,41.955603563],[-71.487629553,41.955463562],[-71.487624553,41.955331563],[-71.487635553,41.955262563],[-71.487692553,41.955214563],[-71.487766553,41.955164563],[-71.487830553,41.955111562],[-71.487891553,41.955069563],[-71.487941553,41.955042563],[-71.488021553,41.954990563],[-71.488072553,41.954949563],[-71.488129553,41.954879562],[-71.488149553,41.954814562],[-71.488150553,41.954693563],[-71.488141553,41.954621563],[-71.488088553,41.954501563],[-71.488072553,41.954443562],[-71.488071553,41.954385562],[-71.487954553,41.954079562],[-71.487935553,41.954027562],[-71.487846553,41.953797563],[-71.487769553,41.953591562],[-71.487754553,41.953530562],[-71.487724552,41.953472562],[-71.487615553,41.953181562],[-71.487621553,41.953124562],[-71.487747553,41.952948562],[-71.487751553,41.952880562],[-71.487854553,41.952786562],[-71.487882553,41.952730562],[-71.487901553,41.952676562],[-71.487887553,41.952608562],[-71.487835553,41.952559562],[-71.487689553,41.952503562],[-71.487471552,41.952457562],[-71.487435552,41.952409562],[-71.487416553,41.952352562],[-71.487410553,41.952291562],[-71.487410553,41.952107562],[-71.487401553,41.952064562],[-71.487387553,41.952002562],[-71.487393552,41.951943562],[-71.487442553,41.951756562],[-71.487444553,41.951699562],[-71.487432552,41.951637562],[-71.487377552,41.951489562],[-71.487338552,41.951423562],[-71.487293553,41.951359562],[-71.487264553,41.951293562],[-71.487229553,41.951233562],[-71.487179552,41.951181562],[-71.487129553,41.951117562],[-71.487129553,41.951051562],[-71.487188553,41.951026562],[-71.487248553,41.951007562],[-71.487282553,41.950992562],[-71.487411553,41.950925562],[-71.487427552,41.950910562],[-71.487456552,41.950882562],[-71.487482553,41.950822562],[-71.487478553,41.950757562],[-71.487437552,41.950693562],[-71.487324553,41.950599562],[-71.487255553,41.950557562],[-71.487190553,41.950512562],[-71.487143552,41.950475562],[-71.487116552,41.950463562],[-71.487023552,41.950384562],[-71.486974553,41.950337562],[-71.486937553,41.950281562],[-71.486873552,41.950166562],[-71.486763553,41.950010562],[-71.486717552,41.949934562],[-71.486701552,41.949866561],[-71.486701552,41.949803562],[-71.486729552,41.949741562],[-71.486786552,41.949681562],[-71.486826552,41.949621562],[-71.486842552,41.949432561],[-71.486843552,41.949292562],[-71.486869552,41.949230562],[-71.486975553,41.949131561],[-71.487005552,41.949067561],[-71.487000552,41.949007561],[-71.486966552,41.948952561],[-71.486943552,41.948895561],[-71.486946552,41.948831561],[-71.486993552,41.948777561],[-71.487025552,41.948720561],[-71.487029552,41.948657561],[-71.487024552,41.948590562],[-71.486978553,41.948473562],[-71.486948552,41.948416562],[-71.486896552,41.948362561],[-71.486858552,41.948315561],[-71.486857552,41.948245561],[-71.486908552,41.948197561],[-71.487027552,41.948102561],[-71.487156552,41.947978561],[-71.487211553,41.947913561],[-71.487244552,41.947849561],[-71.487248553,41.947721561],[-71.487338552,41.947540561],[-71.487409552,41.947365561],[-71.487447552,41.947198561],[-71.487440552,41.947122561],[-71.487389552,41.947057561],[-71.487269553,41.946942561],[-71.487111552,41.946701561],[-71.487082552,41.946642561],[-71.487077552,41.946524561],[-71.487055553,41.946450561],[-71.487014552,41.946402561],[-71.486940552,41.946347561],[-71.486854552,41.946313561],[-71.486754552,41.946290561],[-71.486677552,41.946279561],[-71.486573552,41.946273561],[-71.486144552,41.946272561],[-71.486032552,41.946259561],[-71.485942552,41.946211561],[-71.485911552,41.946181561],[-71.485871552,41.946140561],[-71.485799552,41.946078561],[-71.485717551,41.946021561],[-71.485648552,41.945956561],[-71.485561551,41.945919561],[-71.485462551,41.945898561],[-71.485366551,41.945891561],[-71.485256552,41.945905561],[-71.485149552,41.945933561],[-71.485057551,41.945929561],[-71.484978551,41.945916561],[-71.484800551,41.945916561],[-71.484549551,41.945912561],[-71.484352551,41.945938561],[-71.484273551,41.945898561],[-71.484242551,41.945849561],[-71.484239551,41.945792561],[-71.484258551,41.945735561],[-71.484332551,41.945606561],[-71.484341551,41.945539561],[-71.484296551,41.945473561],[-71.484214551,41.945381561],[-71.484166551,41.945316561],[-71.484168551,41.945252561],[-71.484189552,41.945188561],[-71.484244551,41.945062561],[-71.484249551,41.944985561],[-71.484197551,41.94481556],[-71.484170551,41.944762561],[-71.484126551,41.944691561],[-71.484086551,41.94463856],[-71.483970551,41.94446356],[-71.483960551,41.944401561],[-71.483963551,41.94433056],[-71.483979551,41.944256561],[-71.484017551,41.94419256],[-71.484066551,41.944130561],[-71.484122551,41.94407556],[-71.484226551,41.943985561],[-71.484295551,41.943945561],[-71.484360551,41.94391856],[-71.484375551,41.94388056],[-71.484427551,41.943928561],[-71.484478551,41.94392156],[-71.484534551,41.94386456],[-71.484586551,41.94382456],[-71.484656552,41.94379556],[-71.484840551,41.94376456],[-71.484841551,41.94374456],[-71.484787551,41.94368756],[-71.484754552,41.943623561],[-71.484734552,41.94356356],[-71.484723551,41.943502561],[-71.484725551,41.94344456],[-71.484731551,41.94338756],[-71.484749551,41.94331756],[-71.484775551,41.943247561],[-71.484748551,41.94317656],[-71.484619551,41.94294056],[-71.484562551,41.94278556],[-71.484520551,41.94272756],[-71.484583551,41.942700561],[-71.484627551,41.94264556],[-71.484675551,41.94260156],[-71.484788551,41.94251056],[-71.484859551,41.942468561],[-71.484940551,41.94244456],[-71.485040551,41.94244356],[-71.485143552,41.94245856],[-71.485232551,41.94248456],[-71.485304551,41.94251556],[-71.485368551,41.942566561],[-71.485454552,41.942683561],[-71.485503551,41.94272456],[-71.485708552,41.94284756],[-71.485836551,41.94291456],[-71.485912551,41.94294256],[-71.486050552,41.94298556],[-71.486224551,41.943013561],[-71.486286552,41.94304356],[-71.486347552,41.94308856],[-71.486421552,41.943129561],[-71.486509552,41.94315956],[-71.486602552,41.94319856],[-71.486753552,41.94327056],[-71.486831552,41.94331456],[-71.486882552,41.94337156],[-71.486911552,41.94343956],[-71.486940552,41.94364156],[-71.486969552,41.943694561],[-71.487022552,41.94373956],[-71.487107552,41.943770561],[-71.487402552,41.943908561],[-71.487534552,41.94398156],[-71.487607552,41.94401456],[-71.487676552,41.94403556],[-71.487747552,41.94405056],[-71.487810552,41.94407056],[-71.487855553,41.94409056],[-71.487901552,41.94411456],[-71.487947552,41.944161561],[-71.487983552,41.94422856],[-71.488061552,41.944339561],[-71.488100552,41.94440656],[-71.488137552,41.944413561],[-71.488175552,41.944413561],[-71.488229553,41.94440056],[-71.488294552,41.94437156],[-71.488301553,41.944353561],[-71.488510553,41.94425156],[-71.488574553,41.944208561],[-71.488624552,41.94414956],[-71.488656553,41.94409856],[-71.488792553,41.94401856],[-71.488870553,41.94397956],[-71.488953552,41.94395356],[-71.489037553,41.94393556],[-71.489488553,41.94385756],[-71.489800553,41.94378556],[-71.490148553,41.94369256],[-71.490294553,41.94365356],[-71.490519553,41.943573561],[-71.490602553,41.94353556],[-71.490655553,41.94348956],[-71.490712553,41.943428561],[-71.490719553,41.94330156],[-71.490744553,41.943259561],[-71.490605554,41.94290656],[-71.489225553,41.93897156],[-71.488197552,41.93959856],[-71.487213552,41.94019756],[-71.486701552,41.94050256],[-71.486528552,41.94060456],[-71.485916551,41.94096856],[-71.484802551,41.94160556],[-71.484430551,41.94180456],[-71.484116551,41.94197156],[-71.483444551,41.942257561],[-71.482750551,41.94253256],[-71.48201855,41.942761561],[-71.48136955,41.942955561],[-71.48134055,41.94296256],[-71.48078255,41.943108561],[-71.48014155,41.94325356],[-71.47945455,41.943383561],[-71.47900455,41.94345156],[-71.478723549,41.94348856],[-71.47851655,41.943516561],[-71.47808855,41.94356656],[-71.477692549,41.943596561],[-71.477327549,41.943633561],[-71.477193548,41.943653561],[-71.476983549,41.943670561],[-71.476868549,41.943680561],[-71.476777549,41.943681561],[-71.476533548,41.943673561],[-71.476158549,41.94366556],[-71.475418549,41.943638561],[-71.474869548,41.943608561],[-71.474297548,41.943562561],[-71.473434547,41.943455561],[-71.472572547,41.943333561],[-71.471092547,41.943108561],[-71.469659547,41.942888561],[-71.469353547,41.942841561],[-71.467873545,41.942597561],[-71.467422546,41.942528561],[-71.466415545,41.94237656],[-71.463875544,41.941971561],[-71.463234544,41.941874561],[-71.462845544,41.941815561],[-71.461494544,41.941601561],[-71.460007543,41.941380561],[-71.459717543,41.941334561],[-71.457436543,41.940964561],[-71.457150542,41.940924561],[-71.457454543,41.941175561],[-71.457573543,41.941273561],[-71.458351543,41.941937561],[-71.458420543,41.941990561],[-71.458923543,41.942410561],[-71.459282543,41.942704561],[-71.459991544,41.943299561],[-71.460640543,41.943856562],[-71.461212544,41.944367561],[-71.461800544,41.944905562],[-71.462097544,41.945187561],[-71.462250544,41.945313562],[-71.462494544,41.945504562],[-71.462860544,41.945774561],[-71.463158544,41.946022562],[-71.463409544,41.946309562],[-71.463669545,41.946694562],[-71.464203545,41.947731562],[-71.464447545,41.948124562],[-71.464706545,41.948494562],[-71.464912545,41.948761562],[-71.465195546,41.949192562],[-71.465767545,41.950020562],[-71.465904545,41.950188562],[-71.466080545,41.950409563],[-71.466263546,41.950653562],[-71.466553546,41.951020562],[-71.466797546,41.951291562],[-71.467064546,41.951573563],[-71.467857546,41.952343562],[-71.468048546,41.952534563],[-71.468178547,41.952664563],[-71.468452547,41.952958563],[-71.468689547,41.953251563],[-71.468857547,41.953522563],[-71.468948547,41.953740563],[-71.468948547,41.953770563],[-71.469078547,41.954304563],[-71.469154547,41.954678563],[-71.469223547,41.955059563],[-71.469299547,41.955422563],[-71.469444547,41.955735563],[-71.469643547,41.956005564],[-71.469925547,41.956284563],[-71.470215547,41.956532564],[-71.470871548,41.957116564],[-71.471085548,41.957379563],[-71.471252548,41.957650563],[-71.471359548,41.957966564],[-71.471428548,41.958302564],[-71.471451548,41.958592564],[-71.471466548,41.958893564],[-71.471451548,41.959195564],[-71.471451548,41.959504564]]]]}}"}, +{"type": "precinct", "typeId": 1710, "areaId": 25803, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":142,\"NAME\":\"1710\",\"SHAPE_Length\":0.069274524368174,\"SHAPE_Area\":-0.00014006232266543},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.400088521,41.904803556],[-71.400810522,41.905114555],[-71.402664522,41.905915556],[-71.402863523,41.905945556],[-71.403763523,41.906086555],[-71.404358523,41.904026555],[-71.404434523,41.904084555],[-71.404472523,41.904141555],[-71.404495523,41.904225556],[-71.404517523,41.904446555],[-71.405369523,41.904392555],[-71.405527719,41.90441115],[-71.405779462,41.904440739],[-71.408066524,41.904709555],[-71.408142524,41.904671555],[-71.408234525,41.904637556],[-71.408562525,41.904480556],[-71.408707524,41.904416555],[-71.409302525,41.904168555],[-71.409363525,41.904137555],[-71.409935524,41.903885555],[-71.410240525,41.903759555],[-71.410049524,41.903332555],[-71.409897524,41.903023555],[-71.409767525,41.902775555],[-71.409401525,41.902050555],[-71.410027525,41.901871554],[-71.410263525,41.901810555],[-71.409996524,41.901303555],[-71.409943525,41.901188554],[-71.409912525,41.901108555],[-71.409897524,41.901032554],[-71.409889525,41.900959554],[-71.409889525,41.900875555],[-71.409897524,41.900742554],[-71.409897524,41.900463555],[-71.409874524,41.900360555],[-71.409851525,41.900299554],[-71.409790525,41.900097554],[-71.410355525,41.900086554],[-71.410984525,41.900059554],[-71.411163525,41.900051555],[-71.411629525,41.900032555],[-71.411819525,41.900017555],[-71.411850525,41.900006554],[-71.411880526,41.899983554],[-71.412010525,41.899834554],[-71.412155525,41.899681554],[-71.412399525,41.899804554],[-71.412445526,41.899823554],[-71.412477525,41.899823554],[-71.412521526,41.899796554],[-71.412582526,41.899693554],[-71.412865525,41.899247554],[-71.413254525,41.898621554],[-71.413399526,41.898659554],[-71.414055526,41.898796554],[-71.414627526,41.898907554],[-71.415237526,41.899037554],[-71.415413526,41.899109554],[-71.415833526,41.899281554],[-71.416321527,41.899495554],[-71.416405527,41.899540554],[-71.416588527,41.899628554],[-71.416451526,41.899437554],[-71.416412526,41.899399554],[-71.416298527,41.899262554],[-71.416046526,41.899006554],[-71.415916527,41.898880554],[-71.415810526,41.898770554],[-71.415283526,41.898270554],[-71.414604526,41.897591554],[-71.413956526,41.896916554],[-71.413902526,41.896859553],[-71.413559526,41.896508553],[-71.413490525,41.896431553],[-71.413444525,41.896387554],[-71.413364526,41.896428554],[-71.413353525,41.896482554],[-71.413333525,41.896525554],[-71.413216525,41.896557554],[-71.413078525,41.896620554],[-71.412993526,41.896631553],[-71.412888525,41.896585554],[-71.412849525,41.896584554],[-71.412803525,41.896551553],[-71.412783525,41.896494553],[-71.412778526,41.896438554],[-71.412764525,41.896376553],[-71.412705525,41.896235553],[-71.412598525,41.896019554],[-71.412498525,41.895912553],[-71.412427526,41.895872553],[-71.412260525,41.895818554],[-71.412173525,41.895800554],[-71.412126525,41.895810553],[-71.412117525,41.895871553],[-71.412137525,41.895925553],[-71.412148525,41.895979554],[-71.412091525,41.896024553],[-71.412032525,41.896039554],[-71.411960525,41.896006553],[-71.411920525,41.895980554],[-71.411784525,41.896066553],[-71.411784525,41.896125553],[-71.411834525,41.896167554],[-71.411821525,41.896185554],[-71.411760525,41.896204554],[-71.411669524,41.896188554],[-71.411593525,41.896167554],[-71.411509525,41.896130554],[-71.411353525,41.896041553],[-71.411281524,41.896033554],[-71.411203524,41.896007553],[-71.411157525,41.895948553],[-71.411139525,41.895888553],[-71.411054525,41.895849553],[-71.410973525,41.895832553],[-71.410916525,41.895785554],[-71.410868524,41.895727554],[-71.410744525,41.895632553],[-71.410686525,41.895571554],[-71.410642524,41.895507554],[-71.410625525,41.895436553],[-71.410624524,41.895373554],[-71.410594525,41.895317554],[-71.410551525,41.895273554],[-71.410515525,41.895208553],[-71.410464524,41.895149553],[-71.410397525,41.895085553],[-71.410286524,41.894999554],[-71.410150524,41.894909553],[-71.410091524,41.894883554],[-71.410002524,41.894881553],[-71.409854524,41.894796553],[-71.409694524,41.894721553],[-71.409645524,41.894668554],[-71.409615524,41.894603553],[-71.409571524,41.894536554],[-71.409502524,41.894475554],[-71.409425524,41.894422553],[-71.409341524,41.894380554],[-71.409159524,41.894301554],[-71.409098524,41.894266553],[-71.409047524,41.894228553],[-71.408880523,41.894063553],[-71.408841523,41.894008554],[-71.408835524,41.893941553],[-71.408837524,41.893878553],[-71.408855524,41.893812553],[-71.408886524,41.893751553],[-71.409002524,41.893650553],[-71.409062524,41.893604553],[-71.409080524,41.893564553],[-71.409079524,41.893534553],[-71.409118524,41.893511553],[-71.409064524,41.893459553],[-71.408836524,41.893593553],[-71.408791524,41.893555553],[-71.408745523,41.893540553],[-71.408539524,41.893547553],[-71.408463524,41.893555553],[-71.408356523,41.893555553],[-71.408295523,41.893547553],[-71.408241523,41.893532553],[-71.408173524,41.893498553],[-71.408096524,41.893437553],[-71.407936524,41.893334553],[-71.407829523,41.893246553],[-71.407784524,41.893196553],[-71.407722524,41.893113554],[-71.407669524,41.893013553],[-71.407623523,41.892891553],[-71.407578523,41.892720553],[-71.407570524,41.892655553],[-71.407570524,41.892533553],[-71.407547524,41.892277553],[-71.407547523,41.892094553],[-71.407562523,41.891919553],[-71.407578523,41.891827553],[-71.407600523,41.891644553],[-71.407661523,41.891434553],[-71.407684524,41.891384553],[-71.407715523,41.891335553],[-71.407776523,41.891274553],[-71.407753523,41.891213553],[-71.407730523,41.891182553],[-71.407692523,41.891159553],[-71.407651523,41.891162553],[-71.407616523,41.891190553],[-71.407547523,41.891316553],[-71.407524523,41.891369553],[-71.407410523,41.891556552],[-71.407357524,41.891629553],[-71.407288523,41.891724553],[-71.407178523,41.891827553],[-71.407158523,41.891838553],[-71.407112523,41.891877553],[-71.406853523,41.892064553],[-71.406639523,41.892186553],[-71.406586523,41.892205553],[-71.406541523,41.892211553],[-71.405406523,41.893688553],[-71.404522523,41.894712554],[-71.404503523,41.894726554],[-71.404169522,41.895250554],[-71.403633522,41.895281553],[-71.401996521,41.895497553],[-71.401830522,41.895518554],[-71.401786521,41.895523554],[-71.401480522,41.895536553],[-71.401058522,41.895644554],[-71.399367521,41.896009554],[-71.398964521,41.896089554],[-71.39862652,41.896148554],[-71.39686152,41.896444554],[-71.395618519,41.896660554],[-71.395214519,41.897394554],[-71.394296519,41.897660554],[-71.394782519,41.898633555],[-71.396534521,41.899714555],[-71.39656152,41.899709554],[-71.39680952,41.899732555],[-71.39700352,41.899764555],[-71.397057521,41.899773555],[-71.39722052,41.899808555],[-71.39737352,41.899849555],[-71.397448521,41.899877555],[-71.39751652,41.899909555],[-71.397872521,41.900054555],[-71.398166521,41.900164555],[-71.398301521,41.900231555],[-71.398398521,41.900288555],[-71.398502521,41.900362555],[-71.398625521,41.900469554],[-71.398692521,41.900521555],[-71.398923521,41.900674555],[-71.399052521,41.900773555],[-71.399224521,41.900924555],[-71.399365521,41.901087555],[-71.399452521,41.901206555],[-71.399592521,41.901467555],[-71.399669521,41.901686555],[-71.399705521,41.901749555],[-71.399746521,41.901804555],[-71.399813521,41.901861555],[-71.399855521,41.901880555],[-71.399889521,41.901870555],[-71.399914521,41.901810555],[-71.399918521,41.901674555],[-71.399908521,41.901620555],[-71.399843521,41.901495555],[-71.399845522,41.901437555],[-71.399836521,41.901373555],[-71.399746521,41.901255555],[-71.399636521,41.901144555],[-71.399596521,41.901097555],[-71.399576522,41.901037555],[-71.399588521,41.900988555],[-71.399655521,41.900977555],[-71.399736521,41.900992555],[-71.399957521,41.901085555],[-71.400023522,41.901120555],[-71.400147521,41.901206555],[-71.400213522,41.901241555],[-71.400358521,41.901300555],[-71.400424521,41.901334555],[-71.400479521,41.901375555],[-71.400525522,41.901424555],[-71.400594521,41.901534555],[-71.400618521,41.901588555],[-71.400658522,41.901719555],[-71.400670521,41.901849555],[-71.400651521,41.901939555],[-71.400600522,41.902059555],[-71.400561522,41.902114555],[-71.400416521,41.902254555],[-71.400326521,41.902359555],[-71.400238522,41.902481555],[-71.400142521,41.902662555],[-71.400119522,41.902725555],[-71.400078522,41.902925555],[-71.400056522,41.902989555],[-71.400026521,41.903049555],[-71.399929521,41.903278555],[-71.399912521,41.903336555],[-71.399887522,41.903464556],[-71.399845522,41.903594555],[-71.399830521,41.903663556],[-71.399822521,41.903738556],[-71.399823522,41.903889555],[-71.399835521,41.903951556],[-71.399887522,41.904145556],[-71.399946522,41.904280556],[-71.400054522,41.904593556],[-71.400083522,41.904737556],[-71.400088521,41.904803556]]]]}}"}, +{"type": "precinct", "typeId": 1711, "areaId": 25804, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":143,\"NAME\":\"1711\",\"SHAPE_Length\":0.068877331112465,\"SHAPE_Area\":-8.9894008211026e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.400088521,41.904803556],[-71.400095522,41.904877555],[-71.400089521,41.905013555],[-71.400093522,41.905223556],[-71.400072522,41.905506556],[-71.400044522,41.905636555],[-71.400021522,41.905702556],[-71.399931521,41.905876556],[-71.399643521,41.906291556],[-71.399604521,41.906363556],[-71.399577521,41.906414556],[-71.399482521,41.906671556],[-71.399314521,41.907049556],[-71.399279522,41.907113556],[-71.399167521,41.907273556],[-71.399068522,41.907448556],[-71.398977521,41.907648556],[-71.398936521,41.907825556],[-71.398839521,41.908062556],[-71.398701521,41.908554557],[-71.398659522,41.908681556],[-71.398643521,41.908755556],[-71.398639522,41.909045557],[-71.398650521,41.909102557],[-71.398614521,41.909141557],[-71.398562522,41.909179557],[-71.398486521,41.909284556],[-71.398431521,41.909348556],[-71.398372521,41.909405556],[-71.398283521,41.909533557],[-71.398231521,41.909578556],[-71.398164521,41.909616556],[-71.398018521,41.909677556],[-71.397864521,41.909751556],[-71.397684521,41.909828556],[-71.397603521,41.909872556],[-71.397534521,41.909917557],[-71.397343521,41.910066556],[-71.397279521,41.910116557],[-71.397242521,41.910166557],[-71.397162521,41.910369557],[-71.397072521,41.910552557],[-71.397052521,41.910624557],[-71.397045521,41.910690557],[-71.397046521,41.910810557],[-71.397060521,41.910867557],[-71.397117521,41.910977557],[-71.397264521,41.911171557],[-71.397322521,41.911231557],[-71.397389521,41.911291557],[-71.397496521,41.911375557],[-71.397690521,41.911494557],[-71.397989521,41.911649557],[-71.398478522,41.911857557],[-71.398620522,41.911924557],[-71.398765521,41.911980557],[-71.398911522,41.912016557],[-71.399053521,41.912058557],[-71.399222522,41.912091557],[-71.399299522,41.912083557],[-71.399379522,41.912068557],[-71.399558521,41.912065557],[-71.399638521,41.912052557],[-71.399798522,41.912009557],[-71.400032522,41.911957557],[-71.400058522,41.911973557],[-71.400138522,41.912018557],[-71.400146522,41.912005557],[-71.400142522,41.911977557],[-71.400083522,41.911946557],[-71.400181522,41.911939557],[-71.400248522,41.911945557],[-71.400269522,41.911955557],[-71.400338522,41.911954557],[-71.400402522,41.911921557],[-71.400463522,41.911882557],[-71.400601522,41.911820557],[-71.400790522,41.911713557],[-71.400868522,41.911677557],[-71.400944522,41.911649557],[-71.401002522,41.911649557],[-71.401080522,41.911640557],[-71.401206522,41.911608557],[-71.401270523,41.911573557],[-71.401349523,41.911542557],[-71.401504523,41.911506556],[-71.401577522,41.911502557],[-71.401671522,41.911503557],[-71.401749522,41.911515557],[-71.402034522,41.911514557],[-71.402139522,41.911509557],[-71.402366522,41.911484557],[-71.402574523,41.911479557],[-71.402744523,41.911470557],[-71.402864523,41.911449557],[-71.402944523,41.911418557],[-71.403023523,41.911401557],[-71.402954523,41.911221557],[-71.402924523,41.911129557],[-71.402875522,41.910999556],[-71.402794523,41.910782557],[-71.402763523,41.910702557],[-71.402672523,41.910382557],[-71.402657523,41.910294557],[-71.402641522,41.910118557],[-71.402649523,41.910042556],[-71.402649523,41.909962557],[-71.402657523,41.909886556],[-71.402672523,41.909813556],[-71.402679522,41.909745557],[-71.402695523,41.909676556],[-71.402695523,41.909634556],[-71.403252523,41.909653556],[-71.403481523,41.909649557],[-71.403580523,41.909638556],[-71.403687523,41.909615556],[-71.403732523,41.909596556],[-71.403976523,41.909512557],[-71.404200523,41.909442556],[-71.404556523,41.909336557],[-71.404633523,41.909306556],[-71.404739524,41.909218557],[-71.404907523,41.909024557],[-71.404953524,41.908947557],[-71.404991524,41.908856556],[-71.405014524,41.908760556],[-71.405029523,41.908665556],[-71.405037523,41.908558557],[-71.405029523,41.908451556],[-71.405029523,41.908345556],[-71.405022523,41.908272556],[-71.405022523,41.908196556],[-71.405014524,41.908120556],[-71.405014524,41.907978556],[-71.405022523,41.907910556],[-71.405052524,41.907799556],[-71.405098523,41.907689556],[-71.405151524,41.907582556],[-71.405403524,41.907124556],[-71.405472523,41.906975556],[-71.405548523,41.906948556],[-71.405693524,41.906884555],[-71.405769524,41.906845555],[-71.405838523,41.906804556],[-71.405991524,41.906674556],[-71.406075523,41.906594556],[-71.406194523,41.906483556],[-71.406342524,41.906346556],[-71.406822524,41.905869555],[-71.407219524,41.905465555],[-71.407402524,41.905285555],[-71.407707524,41.905495556],[-71.407768524,41.905568556],[-71.407791524,41.905610556],[-71.407791524,41.905720555],[-71.407799524,41.905999556],[-71.407806525,41.906582556],[-71.407814524,41.906624556],[-71.407829524,41.907082556],[-71.407837524,41.907139556],[-71.407852524,41.907185556],[-71.407867524,41.907215555],[-71.407944524,41.907330556],[-71.408638525,41.908184556],[-71.409927525,41.907616556],[-71.411270525,41.907021555],[-71.411499525,41.906929556],[-71.411629525,41.907090556],[-71.411774525,41.907292555],[-71.412277525,41.907055556],[-71.412361526,41.907044555],[-71.412386526,41.907053556],[-71.412458526,41.907088556],[-71.412827526,41.907582556],[-71.413033526,41.907883556],[-71.413414526,41.907727556],[-71.414391527,41.907360556],[-71.415184526,41.907055556],[-71.414865527,41.906630555],[-71.414848526,41.906617555],[-71.414589527,41.906262555],[-71.414528527,41.906186555],[-71.414444526,41.906060556],[-71.414398526,41.905972555],[-71.414345526,41.905884556],[-71.414276526,41.905716555],[-71.414215526,41.905560555],[-71.414101526,41.905079555],[-71.414062526,41.904969556],[-71.414001526,41.904747555],[-71.413979526,41.904637555],[-71.413940526,41.904488555],[-71.413918526,41.904423555],[-71.413902526,41.904347556],[-71.413857526,41.904194555],[-71.413841526,41.904110555],[-71.413811526,41.904004555],[-71.413795526,41.903874555],[-71.413795526,41.903786555],[-71.413803526,41.903736555],[-71.413825526,41.903655555],[-71.413834526,41.903622555],[-71.413895526,41.903492555],[-71.414032526,41.903263555],[-71.414238526,41.902993555],[-71.414696526,41.902336555],[-71.414841526,41.902157555],[-71.414886526,41.902115555],[-71.414940527,41.902073555],[-71.415016526,41.902024555],[-71.415100526,41.901993554],[-71.415359526,41.901883555],[-71.415627526,41.901783555],[-71.415767526,41.901725555],[-71.415977527,41.901638554],[-71.416168527,41.901570555],[-71.417259527,41.901162555],[-71.417519527,41.901051555],[-71.417343527,41.900849554],[-71.417259527,41.900742554],[-71.417099527,41.900483555],[-71.417053527,41.900414554],[-71.416748527,41.899880555],[-71.416588527,41.899628554],[-71.416405527,41.899540554],[-71.416321527,41.899495554],[-71.415833526,41.899281554],[-71.415413526,41.899109554],[-71.415237526,41.899037554],[-71.414627526,41.898907554],[-71.414055526,41.898796554],[-71.413399526,41.898659554],[-71.413254525,41.898621554],[-71.412865525,41.899247554],[-71.412582526,41.899693554],[-71.412521526,41.899796554],[-71.412477525,41.899823554],[-71.412445526,41.899823554],[-71.412399525,41.899804554],[-71.412155525,41.899681554],[-71.412010525,41.899834554],[-71.411880526,41.899983554],[-71.411850525,41.900006554],[-71.411819525,41.900017555],[-71.411629525,41.900032555],[-71.411163525,41.900051555],[-71.410984525,41.900059554],[-71.410355525,41.900086554],[-71.409790525,41.900097554],[-71.409851525,41.900299554],[-71.409874524,41.900360555],[-71.409897524,41.900463555],[-71.409897524,41.900742554],[-71.409889525,41.900875555],[-71.409889525,41.900959554],[-71.409897524,41.901032554],[-71.409912525,41.901108555],[-71.409943525,41.901188554],[-71.409996524,41.901303555],[-71.410263525,41.901810555],[-71.410027525,41.901871554],[-71.409401525,41.902050555],[-71.409767525,41.902775555],[-71.409897524,41.903023555],[-71.410049524,41.903332555],[-71.410240525,41.903759555],[-71.409935524,41.903885555],[-71.409363525,41.904137555],[-71.409302525,41.904168555],[-71.408707524,41.904416555],[-71.408562525,41.904480556],[-71.408234525,41.904637556],[-71.408142524,41.904671555],[-71.408066524,41.904709555],[-71.405779462,41.904440739],[-71.405527719,41.90441115],[-71.405369523,41.904392555],[-71.404517523,41.904446555],[-71.404495523,41.904225556],[-71.404472523,41.904141555],[-71.404434523,41.904084555],[-71.404358523,41.904026555],[-71.403763523,41.906086555],[-71.402863523,41.905945556],[-71.402664522,41.905915556],[-71.400810522,41.905114555],[-71.400088521,41.904803556]]]]}}"}, +{"type": "precinct", "typeId": 1801, "areaId": 25810, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":149,\"NAME\":\"1801\",\"SHAPE_Length\":0.5020633213744,\"SHAPE_Area\":-0.0062720673310171},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.198189161,41.452889896],[-71.198268325,41.452928068],[-71.198332904,41.452914578],[-71.198160544,41.452860509],[-71.198189161,41.452889896]]],[[[-71.194875527,41.452627937],[-71.194851845,41.452693168],[-71.194848963,41.452711434],[-71.194847697,41.452773935],[-71.194900584,41.452833789],[-71.19495354,41.452878892],[-71.195016798,41.452924754],[-71.19508671,41.452945317],[-71.195190275,41.45295897],[-71.195250775,41.452990074],[-71.195312294,41.453011323],[-71.195374103,41.452977113],[-71.195421944,41.452932986],[-71.195438075,41.452876837],[-71.195393525,41.452828257],[-71.195296502,41.452813203],[-71.195220993,41.452793312],[-71.195149293,41.452758702],[-71.195126248,41.452707366],[-71.195114188,41.452692583],[-71.195162078,41.452637959],[-71.195210671,41.452628231],[-71.195288962,41.452650942],[-71.195371922,41.452676502],[-71.195435266,41.452704068],[-71.19549771,41.452722484],[-71.195551921,41.452707236],[-71.195577435,41.452653216],[-71.195575843,41.45259702],[-71.195521812,41.452573686],[-71.195420119,41.452562851],[-71.195340826,41.452552761],[-71.195257767,41.452548333],[-71.19517855,41.452522074],[-71.195093683,41.452507784],[-71.195003065,41.452520854],[-71.194944988,41.452556515],[-71.194899937,41.452602067],[-71.194875527,41.452627937]]],[[[-71.199358759,41.453276834],[-71.199398769,41.453302233],[-71.199452153,41.453274997],[-71.199452891,41.453266618],[-71.199452431,41.453266474],[-71.199314432,41.453222474],[-71.199313755,41.453222261],[-71.199358759,41.453276834]]],[[[-71.199597413,41.453337926],[-71.19960745,41.453382938],[-71.199656806,41.45341186],[-71.199691342,41.453411241],[-71.199737307,41.453371338],[-71.199738864,41.453356478],[-71.199606745,41.453314963],[-71.199597413,41.453337926]]],[[[-71.198725738,41.453295349],[-71.198717985,41.453348022],[-71.198696956,41.453438509],[-71.198677078,41.453490441],[-71.198676155,41.453670266],[-71.198678629,41.453733463],[-71.198691495,41.45377775],[-71.198741811,41.45378982],[-71.198787685,41.453769609],[-71.198843881,41.453726234],[-71.19891689,41.453695551],[-71.198991768,41.453654992],[-71.199002349,41.453595374],[-71.199002666,41.45353987],[-71.199000374,41.453437314],[-71.19899214,41.453403559],[-71.19895028,41.453377469],[-71.198874867,41.453336517],[-71.198841356,41.453312553],[-71.198794005,41.453270965],[-71.19876133,41.453270148],[-71.198725738,41.453295349]]],[[[-71.199415724,41.453810794],[-71.199455949,41.453796148],[-71.199443077,41.453759591],[-71.199463867,41.453713973],[-71.199442536,41.453685833],[-71.19939508,41.453653394],[-71.199372876,41.453616789],[-71.199320782,41.453581525],[-71.199254483,41.453581328],[-71.199204887,41.453604366],[-71.199177591,41.453649944],[-71.199199714,41.453704089],[-71.199198707,41.453718152],[-71.199236663,41.453780046],[-71.199350587,41.453776159],[-71.199415724,41.453810794]]],[[[-71.192509225,41.453995353],[-71.192534426,41.453995443],[-71.192595042,41.454008275],[-71.192685487,41.454026081],[-71.192761122,41.45402562],[-71.192777153,41.453991243],[-71.192757885,41.453932187],[-71.192755331,41.45388724],[-71.192724646,41.453863945],[-71.192648924,41.453882725],[-71.192602292,41.453876243],[-71.192570639,41.453858571],[-71.192507879,41.453894218],[-71.192446131,41.453921428],[-71.192394644,41.453945144],[-71.192433669,41.453985317],[-71.192447653,41.453985354],[-71.192509225,41.453995353]]],[[[-71.192084582,41.453968809],[-71.192049103,41.4539694],[-71.191973498,41.453969861],[-71.19195478,41.453981063],[-71.19195453,41.454021085],[-71.191969399,41.454039398],[-71.192044895,41.454062081],[-71.192096222,41.454065763],[-71.192168149,41.454058958],[-71.192191575,41.454042165],[-71.192204789,41.454011989],[-71.19221249,41.453964966],[-71.192162121,41.45395781],[-71.192084582,41.453968809]]],[[[-71.193066477,41.453833366],[-71.192965413,41.453882244],[-71.192941827,41.453926435],[-71.192965963,41.453952502],[-71.192999514,41.453961008],[-71.1930321,41.453980786],[-71.193027306,41.454004673],[-71.193027018,41.4540594],[-71.193060482,41.454086202],[-71.193101501,41.4540969],[-71.193171357,41.45412309],[-71.193256166,41.454150005],[-71.19328986,41.454134658],[-71.193296698,41.454077089],[-71.193297799,41.454043381],[-71.193297002,41.454018817],[-71.193340211,41.453971156],[-71.193378769,41.453923529],[-71.193310824,41.453879049],[-71.193233397,41.453872507],[-71.19317938,41.45384636],[-71.193180544,41.453799296],[-71.193124582,41.453792103],[-71.193066477,41.453833366]]],[[[-71.198095526,41.454018977],[-71.198059911,41.454049072],[-71.198033293,41.454138196],[-71.198027386,41.454199312],[-71.198095498,41.454208639],[-71.198145013,41.454203166],[-71.198211509,41.454161213],[-71.198229506,41.454108568],[-71.198215656,41.454079738],[-71.198145025,41.454017049],[-71.198095526,41.454018977]]],[[[-71.197635612,41.453960754],[-71.197632619,41.453996538],[-71.197635134,41.454050632],[-71.19766653,41.45411745],[-71.197700722,41.454177963],[-71.197723935,41.45420684],[-71.197796551,41.454247762],[-71.197836655,41.45425283],[-71.197851712,41.454231098],[-71.197881925,41.454166569],[-71.19791301,41.454110459],[-71.197909684,41.45403459],[-71.197848478,41.453958569],[-71.197752401,41.453942147],[-71.197669307,41.453938407],[-71.197635612,41.453960754]]],[[[-71.192213749,41.454084397],[-71.19221269,41.454108956],[-71.192190007,41.454161589],[-71.192198251,41.454192485],[-71.192226242,41.454194001],[-71.192254189,41.454204596],[-71.192254099,41.454217243],[-71.192268014,41.454238366],[-71.192294116,41.454240563],[-71.192334317,41.454231523],[-71.192336357,41.454198526],[-71.192306995,41.454107814],[-71.192306162,41.454084644],[-71.19228475,41.454074044],[-71.192213749,41.454084397]]],[[[-71.194036495,41.454180442],[-71.194029738,41.454221156],[-71.194017268,41.454287149],[-71.194010435,41.454344009],[-71.194023278,41.454386147],[-71.194098857,41.454391333],[-71.194133582,41.454357006],[-71.194156271,41.454303024],[-71.194178989,41.454242662],[-71.194169055,41.454182945],[-71.194103843,41.454158163],[-71.194036495,41.454180442]]],[[[-71.19518729,41.454233034],[-71.195115146,41.454279864],[-71.195058874,41.454332362],[-71.195011018,41.454379301],[-71.194968707,41.454436753],[-71.194928302,41.454483004],[-71.194902001,41.454516622],[-71.194893478,41.454538372],[-71.194893161,41.45459948],[-71.194894861,41.454632486],[-71.194900237,41.454678835],[-71.19492887,41.454731604],[-71.194944666,41.454747106],[-71.194970614,41.454782303],[-71.195003026,41.454832955],[-71.195031669,41.454889954],[-71.195058474,41.454943404],[-71.195080548,41.45500105],[-71.195086761,41.455063593],[-71.195111672,41.455119165],[-71.195111362,41.455178855],[-71.19512809,41.455196464],[-71.195155149,41.455195849],[-71.195183286,41.455172779],[-71.195186425,41.45510603],[-71.195192389,41.455040019],[-71.195206765,41.454969114],[-71.195230538,41.454891282],[-71.19525136,41.454833018],[-71.195271278,41.45477338],[-71.195289351,41.45471161],[-71.195299925,41.454654074],[-71.195304936,41.45458383],[-71.195327762,41.454506658],[-71.195351517,41.454425967],[-71.195362114,41.454363491],[-71.195362438,41.454307277],[-71.19532913,41.454246789],[-71.195261108,41.454224813],[-71.19518729,41.454233034]]],[[[-71.190894529,41.455156373],[-71.190881414,41.455165463],[-71.190793483,41.455193997],[-71.190733648,41.455214922],[-71.190727607,41.455290034],[-71.190731172,41.455320255],[-71.190758211,41.455330185],[-71.190857152,41.455332555],[-71.190924452,41.455320843],[-71.190947147,41.455266108],[-71.190972651,41.455208612],[-71.190995346,41.455153899],[-71.190982361,41.455135614],[-71.190958122,41.455131295],[-71.190894529,41.455156373]]],[[[-71.199552825,41.455279757],[-71.199550951,41.455283983],[-71.19954052,41.455311331],[-71.199550573,41.455352798],[-71.199586959,41.455359937],[-71.199674813,41.455340521],[-71.199701165,41.455301962],[-71.199652786,41.455265312],[-71.199585647,41.455248968],[-71.199552825,41.455279757]]],[[[-71.192287823,41.45613824],[-71.192245657,41.456164107],[-71.192239907,41.456190781],[-71.192248141,41.456223805],[-71.192263064,41.456224554],[-71.192260008,41.456279342],[-71.192270936,41.456327811],[-71.192323171,41.456339225],[-71.192361352,41.456358996],[-71.192432101,41.456389419],[-71.19247221,41.456400069],[-71.192492027,41.456355869],[-71.192486756,41.456300372],[-71.192499188,41.456242818],[-71.19248552,41.456182382],[-71.192417579,41.456136528],[-71.192330821,41.456129229],[-71.192287823,41.45613824]]],[[[-71.191268503,41.456631744],[-71.19128234,41.456662702],[-71.191318723,41.456664194],[-71.191368181,41.456671348],[-71.19141016,41.456678505],[-71.191452975,41.45670181],[-71.191461283,41.456719419],[-71.191474228,41.456746121],[-71.191505,41.456751143],[-71.191529343,41.456739956],[-71.191501648,41.456682318],[-71.191509402,41.456624043],[-71.191558854,41.456632615],[-71.191580226,41.456651631],[-71.191602691,41.456639067],[-71.191589956,41.456574402],[-71.191503413,41.456521477],[-71.191465233,41.456508042],[-71.19145321,41.456485505],[-71.191417777,41.456476262],[-71.191357707,41.45654],[-71.19132599,41.456535661],[-71.19129903,41.456508945],[-71.191258855,41.456518649],[-71.191259641,41.456545317],[-71.191279997,41.456579814],[-71.191268503,41.456631744]]],[[[-71.191947621,41.456914044],[-71.191993357,41.45691133],[-71.192064351,41.456909439],[-71.192146492,41.456909705],[-71.192179242,41.456895041],[-71.192179465,41.45685431],[-71.192155442,41.456804366],[-71.192096804,41.456771162],[-71.192021295,41.456750583],[-71.191926032,41.456754536],[-71.191855903,41.456772552],[-71.191843577,41.456807671],[-71.191853693,41.456841385],[-71.191901976,41.456891394],[-71.191947621,41.456914044]]],[[[-71.188317867,41.458110367],[-71.188328095,41.458120252],[-71.188426521,41.458218151],[-71.188494576,41.458240131],[-71.188576699,41.458244584],[-71.188627164,41.458238431],[-71.188696318,41.4582211],[-71.188763723,41.458188281],[-71.188797618,41.458137807],[-71.188790439,41.458081595],[-71.18875038,41.458060424],[-71.188669987,41.458081956],[-71.188613969,41.458079677],[-71.188561848,41.45805072],[-71.188501373,41.458014032],[-71.18843618,41.457985039],[-71.188354027,41.457980563],[-71.188304522,41.457989531],[-71.188230712,41.457994911],[-71.188193319,41.45800748],[-71.188190344,41.458038347],[-71.188260176,41.458076478],[-71.188317867,41.458110367]]],[[[-71.190271987,41.458271505],[-71.190335247,41.458317347],[-71.19038091,41.458336475],[-71.190399562,41.458339338],[-71.190478795,41.458363428],[-71.190550653,41.458365748],[-71.19060868,41.458342073],[-71.190594866,41.458306199],[-71.190522173,41.458281395],[-71.190448611,41.458247486],[-71.19037023,41.458236],[-71.190356206,41.458238044],[-71.190335775,41.458219007],[-71.190291873,41.458219598],[-71.190271987,41.458271505]]],[[[-71.187931536,41.458248256],[-71.187956651,41.458266597],[-71.187997625,41.458287085],[-71.188058036,41.458337152],[-71.188117588,41.458369629],[-71.188195915,41.458392368],[-71.188251025,41.4583876],[-71.188287546,41.458366636],[-71.188300796,41.458335797],[-71.188242277,41.458278006],[-71.188186477,41.458236414],[-71.188140041,41.458194825],[-71.188063636,41.458164383],[-71.187993805,41.458126253],[-71.187881001,41.458097793],[-71.187848098,41.458137727],[-71.187822808,41.458155954],[-71.187795731,41.458153731],[-71.187766881,41.458134693],[-71.187768991,41.458093945],[-71.18778234,41.458042729],[-71.187737523,41.458044002],[-71.187702852,41.458065681],[-71.187686646,41.458129536],[-71.187687252,41.458187147],[-71.187689796,41.458233489],[-71.187708374,41.458251835],[-71.187771817,41.458259029],[-71.187845654,41.458248023],[-71.187873882,41.458206659],[-71.187931536,41.458248256]]],[[[-71.170904378,41.458363114],[-71.17094327,41.458421544],[-71.170995524,41.458428715],[-71.171043206,41.458414123],[-71.171115299,41.458375747],[-71.171183613,41.45835138],[-71.171179233,41.458303569],[-71.171131753,41.458278139],[-71.171055314,41.458256148],[-71.170977732,41.458267818],[-71.170899271,41.458278823],[-71.170848734,41.458299033],[-71.170781342,41.458327588],[-71.170774756,41.458337426],[-71.170784932,41.458357123],[-71.170826929,41.458354476],[-71.170904378,41.458363114]]],[[[-71.185124592,41.458335929],[-71.185060958,41.458361736],[-71.185010292,41.458409327],[-71.184964379,41.458442203],[-71.184999518,41.458506221],[-71.18506651,41.458540138],[-71.185135527,41.458557891],[-71.185210181,41.458560245],[-71.185259534,41.458589196],[-71.185382695,41.458600785],[-71.185462072,41.458601025],[-71.185525729,41.458570325],[-71.185509999,41.458541465],[-71.185482274,41.458490824],[-71.185433056,41.458440123],[-71.185373566,41.45838864],[-71.185293556,41.458343459],[-71.185204016,41.458326336],[-71.185124592,41.458335929]]],[[[-71.187765481,41.45857224],[-71.187713922,41.458610042],[-71.187713774,41.458634604],[-71.187757531,41.458657913],[-71.18781249,41.458684752],[-71.187870168,41.458721455],[-71.187901852,41.458732815],[-71.187919667,41.458720194],[-71.18795628,41.458686583],[-71.187929489,41.458631027],[-71.187880265,41.458581014],[-71.187822601,41.458541498],[-71.187765481,41.45857224]]],[[[-71.185039978,41.458965655],[-71.185018305,41.458996516],[-71.185041429,41.459036602],[-71.185047009,41.45903943],[-71.185072188,41.459044439],[-71.185139296,41.459067127],[-71.185193559,41.459049002],[-71.185207679,41.459027268],[-71.185200374,41.458997792],[-71.185105409,41.458951837],[-71.185039978,41.458965655]]],[[[-71.185380988,41.459092419],[-71.185360186,41.459138011],[-71.185400149,41.459178875],[-71.185435414,41.4592106],[-71.185505129,41.459272609],[-71.185564647,41.459312131],[-71.185621372,41.459357249],[-71.185678127,41.459396054],[-71.185733096,41.459408143],[-71.185779205,41.459347205],[-71.185796306,41.459293851],[-71.185839564,41.459237823],[-71.185831356,41.459199859],[-71.185718656,41.459149648],[-71.185641289,41.459123411],[-71.185576127,41.459088104],[-71.185506303,41.459054866],[-71.185441937,41.459043461],[-71.185380988,41.459092419]]],[[[-71.177089925,41.459158043],[-71.177038331,41.459201443],[-71.176990438,41.459252561],[-71.176976993,41.459321339],[-71.176989667,41.459389505],[-71.177021065,41.45945212],[-71.177049723,41.459503475],[-71.177084248,41.459505699],[-71.177147868,41.459483419],[-71.177220741,41.459477311],[-71.177289082,41.459441002],[-71.177293906,41.459412222],[-71.17728937,41.459389042],[-71.177356792,41.459354126],[-71.177364441,41.459319751],[-71.177317086,41.459274632],[-71.177281747,41.459246449],[-71.177184184,41.459167479],[-71.177121819,41.459132862],[-71.177089925,41.459158043]]],[[[-71.180672182,41.459350432],[-71.180664586,41.459374287],[-71.180672685,41.459427666],[-71.180661989,41.459507018],[-71.180659846,41.459559682],[-71.180722344,41.459567609],[-71.180743954,41.459543792],[-71.180743342,41.459482682],[-71.180741835,41.459418092],[-71.180734652,41.459363985],[-71.180695541,41.459342058],[-71.180672182,41.459350432]]],[[[-71.175359348,41.459589488],[-71.175344198,41.45962805],[-71.175367407,41.459649888],[-71.175417818,41.459654993],[-71.175484897,41.459676955],[-71.175498063,41.459664368],[-71.17544416,41.459615731],[-71.175415381,41.45958896],[-71.175359348,41.459589488]]],[[[-71.170798203,41.459640334],[-71.170806511,41.459662839],[-71.170850362,41.459666486],[-71.170889369,41.459702412],[-71.170952706,41.459724412],[-71.170972458,41.459708299],[-71.17097449,41.459673199],[-71.170960678,41.459645075],[-71.170938291,41.459635154],[-71.170858972,41.459629278],[-71.170814164,41.459628464],[-71.170798203,41.459640334]]],[[[-71.177046518,41.459745066],[-71.17706019,41.459802028],[-71.177089827,41.459851968],[-71.17710473,41.459856926],[-71.177135686,41.459831033],[-71.177186341,41.459786967],[-71.177251865,41.459754836],[-71.177310778,41.459737482],[-71.177333052,41.459764234],[-71.177332931,41.459782507],[-71.177355302,41.459789568],[-71.177411571,41.459747645],[-71.177395089,41.459687199],[-71.177364327,41.459680046],[-71.17713034,41.459615422],[-71.177060479,41.459584259],[-71.176991494,41.459566524],[-71.176977351,41.459592442],[-71.176977122,41.459632464],[-71.176993878,41.459643786],[-71.17703191,41.459686752],[-71.177046518,41.459745066]]],[[[-71.176071153,41.459692123],[-71.176076328,41.459770125],[-71.176107882,41.459807423],[-71.176126538,41.459809603],[-71.176184374,41.459819623],[-71.176202031,41.459833028],[-71.176250291,41.459879522],[-71.176279156,41.459895086],[-71.176365906,41.459910791],[-71.176416426,41.459894123],[-71.176429833,41.459833052],[-71.176482368,41.459784029],[-71.176441686,41.459711576],[-71.176371806,41.459690294],[-71.176342892,41.459684586],[-71.17623095,41.459666661],[-71.176172255,41.459646119],[-71.176084577,41.459627576],[-71.176020309,41.459602764],[-71.175939132,41.459597618],[-71.175904425,41.459625582],[-71.175908715,41.459686017],[-71.175922528,41.459726787],[-71.175967253,41.459738165],[-71.175986055,41.459717178],[-71.176010548,41.459676492],[-71.176041382,41.459675184],[-71.176071153,41.459692123]]],[[[-71.17009932,41.46006726],[-71.170085169,41.460093909],[-71.170094177,41.460152208],[-71.170151819,41.460188233],[-71.170173279,41.460188981],[-71.170242,41.460258726],[-71.1703062,41.460302477],[-71.170342584,41.460304],[-71.170426865,41.460260719],[-71.170485005,41.460216655],[-71.170477615,41.46019907],[-71.170422646,41.460181348],[-71.170362192,41.460136189],[-71.170326886,41.460107981],[-71.170258859,41.460087409],[-71.170189886,41.46006752],[-71.170156312,41.460057589],[-71.17009932,41.46006726]]],[[[-71.178060426,41.460426737],[-71.178021901,41.460470815],[-71.178048691,41.460524977],[-71.178048622,41.46053273],[-71.178078985,41.460620613],[-71.178103876,41.460677607],[-71.178156834,41.4607213],[-71.178168694,41.460769817],[-71.178245242,41.460777053],[-71.178256545,41.460753894],[-71.178244742,41.460699819],[-71.178225438,41.460644236],[-71.178222952,41.460587374],[-71.178186878,41.460523329],[-71.178155425,41.460471257],[-71.178122106,41.460415681],[-71.178100701,41.46040366],[-71.178060426,41.460426737]]],[[[-71.196590353,41.460669234],[-71.196589998,41.460738759],[-71.196602753,41.46080061],[-71.196621124,41.460857582],[-71.196666823,41.460869641],[-71.196760119,41.460884661],[-71.196834728,41.460897528],[-71.196913283,41.460872463],[-71.196942393,41.46084306],[-71.196894997,41.460797241],[-71.196842039,41.460750767],[-71.196861924,41.460698149],[-71.1968602,41.460670037],[-71.196782811,41.460647329],[-71.19669879,41.460644958],[-71.196641945,41.460623722],[-71.196590353,41.460669234]]],[[[-71.174329359,41.460793546],[-71.17433573,41.460826588],[-71.174353318,41.460854014],[-71.174378475,41.460863256],[-71.174457807,41.460867002],[-71.174497878,41.460879054],[-71.174545323,41.460905923],[-71.174571542,41.460897558],[-71.174584998,41.460832988],[-71.174624455,41.460785347],[-71.174593948,41.460733277],[-71.17454001,41.460691684],[-71.174465333,41.460687219],[-71.174386819,41.460702434],[-71.174354102,41.46070934],[-71.174354207,41.460688277],[-71.174380622,41.460640599],[-71.174446148,41.460608514],[-71.174469685,41.460576997],[-71.174400934,41.460518484],[-71.17433196,41.460498575],[-71.174243258,41.460496197],[-71.174162097,41.460487482],[-71.174090246,41.460477422],[-71.174015541,41.460478605],[-71.173959419,41.460496696],[-71.173930295,41.460526825],[-71.173935678,41.460568967],[-71.173971069,41.460586655],[-71.174018433,41.460629647],[-71.174058356,41.460671178],[-71.1741359,41.460661609],[-71.174200186,41.460682878],[-71.174231802,41.460707553],[-71.174231624,41.460737055],[-71.174234242,41.460772899],[-71.174292103,41.46077798],[-71.174315458,41.460776628],[-71.174329359,41.460793546]]],[[[-71.174704307,41.460861456],[-71.174703004,41.460927478],[-71.174714817,41.460985076],[-71.174762372,41.461002134],[-71.174838861,41.46101502],[-71.17492002,41.461024398],[-71.175000382,41.461010605],[-71.175074179,41.461002375],[-71.175055966,41.460923673],[-71.174985227,41.460885509],[-71.174944382,41.460839722],[-71.174930453,41.460828476],[-71.174893983,41.460838185],[-71.174863189,41.460837366],[-71.174849233,41.460825388],[-71.174782116,41.460804844],[-71.174719479,41.460818686],[-71.174704307,41.460861456]]],[[[-71.196342076,41.462085816],[-71.196294219,41.46213207],[-71.196295783,41.462181199],[-71.196325604,41.462195343],[-71.196400283,41.462199771],[-71.196490974,41.462174053],[-71.19656482,41.462161623],[-71.196642398,41.462144287],[-71.19671629,41.462122069],[-71.196804262,41.462079488],[-71.19682405,41.462047934],[-71.196755168,41.462006289],[-71.196684375,41.461970287],[-71.196664654,41.461994066],[-71.196660665,41.462041122],[-71.196640028,41.462059318],[-71.196592453,41.462051462],[-71.196599266,41.461998811],[-71.196539509,41.462002106],[-71.196516953,41.462027341],[-71.196437636,41.4620264],[-71.196412304,41.462047419],[-71.196342076,41.462085816]]],[[[-71.196370739,41.462315576],[-71.196400345,41.462369033],[-71.196418878,41.462397875],[-71.196424389,41.462409142],[-71.196444896,41.46241903],[-71.196459817,41.462420487],[-71.196469151,41.462420512],[-71.196549527,41.462409518],[-71.196616016,41.462371111],[-71.196633889,41.462345864],[-71.19657519,41.462317579],[-71.19649494,41.462314531],[-71.196404475,41.462291811],[-71.196370739,41.462315576]]],[[[-71.169191416,41.46656522],[-71.169214537,41.466604623],[-71.16928996,41.466642781],[-71.169350455,41.466680896],[-71.169375548,41.46669716],[-71.169419356,41.466716269],[-71.169496976,41.466693301],[-71.169563413,41.46666893],[-71.169624302,41.46663544],[-71.169629091,41.46661439],[-71.169582634,41.466572084],[-71.169544472,41.466548807],[-71.169539928,41.466527708],[-71.169467241,41.466501473],[-71.169398984,41.466518841],[-71.169333388,41.466557235],[-71.169255006,41.466550674],[-71.169217696,41.466539315],[-71.169191416,41.46656522]]],[[[-71.168578918,41.467715101],[-71.168576816,41.467751642],[-71.16860469,41.467776993],[-71.16866439,41.467786313],[-71.168685087,41.467758289],[-71.168649881,41.467709703],[-71.16861914,41.467703988],[-71.168578918,41.467715101]]],[[[-71.168570031,41.467961569],[-71.168625035,41.467979315],[-71.168679917,41.468015333],[-71.168738687,41.468028127],[-71.168811545,41.468015049],[-71.168856471,41.467999741],[-71.168885768,41.467942925],[-71.168869127,41.467914815],[-71.168788742,41.467925081],[-71.16875417,41.467931294],[-71.168710442,41.467902351],[-71.168732267,41.467837784],[-71.168693164,41.467820107],[-71.168653782,41.467845288],[-71.168596596,41.467885809],[-71.168548779,41.467919358],[-71.168570031,41.467961569]]],[[[-71.193432205,41.468540151],[-71.193432066,41.468569631],[-71.193447692,41.468615298],[-71.193456967,41.46862797],[-71.19347844,41.468626632],[-71.193529968,41.468596604],[-71.193552576,41.468560849],[-71.19352653,41.468538985],[-71.193474285,41.468527639],[-71.193432205,41.468540151]]],[[[-71.193100956,41.468676786],[-71.193077501,41.468698495],[-71.193054837,41.468746188],[-71.193064622,41.468831176],[-71.193101821,41.468860801],[-71.193143178,41.468808287],[-71.193180211,41.46869248],[-71.193134601,41.468673376],[-71.193100956,41.468676786]]],[[[-71.192835006,41.470052579],[-71.192825482,41.470086264],[-71.192825313,41.470122078],[-71.192857734,41.470172044],[-71.192883604,41.470218494],[-71.192937655,41.470240387],[-71.192963848,41.470231378],[-71.192960247,41.470208178],[-71.192898096,41.470130734],[-71.192904939,41.470072457],[-71.192891971,41.470049964],[-71.192857492,41.470036493],[-71.192835006,41.470052579]]],[[[-71.161071088,41.470033769],[-71.16107078,41.470087147],[-71.1610754,41.470099099],[-71.161107679,41.470165929],[-71.161186112,41.470168996],[-71.161250815,41.470122874],[-71.161242624,41.470084223],[-71.161180286,41.470043971],[-71.161149562,41.470029106],[-71.161071088,41.470033769]]],[[[-71.161785331,41.470217345],[-71.161817823,41.470249024],[-71.161854232,41.470252653],[-71.161928866,41.470261358],[-71.161970964,41.47024673],[-71.162095338,41.470215512],[-71.162151579,41.470182676],[-71.162188683,41.470222121],[-71.162256825,41.47022797],[-71.162313174,41.470174116],[-71.162341552,41.470108151],[-71.162314723,41.47006311],[-71.162233717,41.470028453],[-71.162127371,41.470007763],[-71.162041517,41.469999003],[-71.161959326,41.469999448],[-71.161860266,41.470016012],[-71.161779911,41.470019938],[-71.161705232,41.470014069],[-71.161621271,41.470003966],[-71.161569827,41.470020647],[-71.161634851,41.470076343],[-71.161695363,41.470110987],[-71.161753942,41.470154703],[-71.161785331,41.470217345]]],[[[-71.163712943,41.47033458],[-71.163746288,41.470383848],[-71.163763866,41.470412692],[-71.163774779,41.4704605],[-71.163847424,41.470495132],[-71.163920143,41.470515767],[-71.164007894,41.470522336],[-71.164102115,41.47053599],[-71.164189924,41.470531375],[-71.164275252,41.47047127],[-71.164330611,41.470426492],[-71.164378482,41.470383087],[-71.164387147,41.470336046],[-71.164341633,41.470293786],[-71.164335416,41.470237553],[-71.16429923,41.470196693],[-71.164243282,41.470178966],[-71.164169474,41.47019277],[-71.164127103,41.470254441],[-71.164067956,41.47030273],[-71.16400716,41.470322884],[-71.163928033,41.47028327],[-71.163875964,41.470244491],[-71.163853877,41.470181922],[-71.163851455,41.47011518],[-71.163829388,41.470054739],[-71.16380611,41.470046209],[-71.163739758,41.470053013],[-71.163683557,41.470090036],[-71.163658911,41.470146155],[-71.163673514,41.470209411],[-71.163691837,41.470270573],[-71.163712943,41.47033458]]],[[[-71.161054421,41.470816813],[-71.16112994,41.470836727],[-71.161220441,41.470852476],[-71.161292327,41.470857628],[-71.161343709,41.470852931],[-71.161290863,41.470782519],[-71.161249153,41.470728308],[-71.161229736,41.470696599],[-71.161267409,41.470638437],[-71.161303199,41.470591499],[-71.16134639,41.470548081],[-71.161403621,41.470506123],[-71.161464373,41.470488783],[-71.161506404,41.470493138],[-71.161530719,41.470483375],[-71.161501989,41.470447476],[-71.161424645,41.470421932],[-71.161332352,41.470394216],[-71.161252111,41.470382019],[-71.161219439,41.470379109],[-71.16110665,41.470340104],[-71.16104148,41.470312514],[-71.160976279,41.470284923],[-71.160903418,41.470286058],[-71.160845426,41.470304869],[-71.160804071,41.470351791],[-71.160828041,41.470402404],[-71.160823916,41.470470499],[-71.160794631,41.470529417],[-71.16073462,41.470567845],[-71.160659942,41.470567602],[-71.160583441,41.470555438],[-71.160538949,41.470498383],[-71.160507568,41.470434369],[-71.160457363,41.470394175],[-71.160395818,41.470377115],[-71.160331077,41.470430303],[-71.160280362,41.470482091],[-71.160224905,41.470545117],[-71.160258368,41.470571219],[-71.160324464,41.470607961],[-71.16037083,41.470667102],[-71.160435997,41.470695402],[-71.160509649,41.470717437],[-71.160588058,41.470725445],[-71.160653112,41.470781096],[-71.160745442,41.470801769],[-71.16082568,41.470814698],[-71.160915311,41.470816403],[-71.160988174,41.470803285],[-71.161054421,41.470816813]]],[[[-71.142980863,41.473300552],[-71.142915795,41.473343849],[-71.142864507,41.473397343],[-71.142882554,41.473438908],[-71.142936852,41.473479785],[-71.142985037,41.473465412],[-71.143044004,41.473420015],[-71.143118962,41.473397538],[-71.143121413,41.473377671],[-71.14307784,41.473332985],[-71.143024314,41.473295427],[-71.142980863,41.473300552]]],[[[-71.154728747,41.474162274],[-71.15480523,41.474207191],[-71.15490193,41.474235886],[-71.154986843,41.474250709],[-71.155062807,41.474250228],[-71.155153276,41.474243798],[-71.155209296,41.474202411],[-71.155229317,41.474165673],[-71.155265911,41.474128802],[-71.155312762,41.474130589],[-71.155371332,41.474141331],[-71.15541135,41.474158672],[-71.155412899,41.474210637],[-71.155459944,41.474238885],[-71.155532992,41.474237686],[-71.155601883,41.474217469],[-71.155681739,41.474216954],[-71.155744052,41.47421586],[-71.155757533,41.474202567],[-71.155729671,41.474152215],[-71.155661154,41.474118963],[-71.155576173,41.474093894],[-71.15550193,41.474073844],[-71.155486957,41.474041712],[-71.155508717,41.473986638],[-71.155562234,41.473981172],[-71.155630088,41.473955852],[-71.155674554,41.473925568],[-71.15571096,41.473872573],[-71.155715004,41.47386673],[-71.155735757,41.473818216],[-71.155754007,41.473805647],[-71.155763392,41.47377336],[-71.155710354,41.473734162],[-71.155632076,41.473700972],[-71.155545104,41.47367297],[-71.155464031,41.473650795],[-71.155393621,41.473624878],[-71.155334782,41.473590099],[-71.155272244,41.473570701],[-71.155236423,41.473587792],[-71.155262579,41.47366158],[-71.15527591,41.473722295],[-71.155268811,41.473782376],[-71.155208964,41.473828897],[-71.155116518,41.473835367],[-71.155031703,41.473824912],[-71.154983761,41.473805443],[-71.154982434,41.473774702],[-71.154929728,41.473764778],[-71.154914403,41.473787557],[-71.154934641,41.473853346],[-71.154924746,41.473924465],[-71.154941969,41.473985168],[-71.154991107,41.474025841],[-71.155037159,41.474051936],[-71.154972484,41.474102857],[-71.154898561,41.474108467],[-71.154815669,41.474096555],[-71.154743629,41.474097002],[-71.154707774,41.474114801],[-71.154728747,41.474162274]]],[[[-71.205419436,41.543580605],[-71.205391472,41.543658657],[-71.205388447,41.543714703],[-71.205377946,41.54378834],[-71.205394424,41.543839976],[-71.205470622,41.54386606],[-71.205555574,41.54386152],[-71.205608337,41.543825956],[-71.205610562,41.543758404],[-71.205593552,41.543736749],[-71.205569549,41.543706545],[-71.205561345,41.543649624],[-71.205520622,41.543580887],[-71.205471281,41.543539687],[-71.205419436,41.543580605]]],[[[-71.207788743,41.545465173],[-71.207791587,41.545536602],[-71.207788256,41.545607238],[-71.207777586,41.545691623],[-71.20776804,41.545769905],[-71.20776382,41.545835119],[-71.20776172,41.545895764],[-71.207773965,41.545955028],[-71.207822127,41.546008506],[-71.207882908,41.546038299],[-71.207918851,41.546087835],[-71.207937174,41.546149447],[-71.207982466,41.546191368],[-71.20803994,41.546178135],[-71.208065455,41.546123061],[-71.208065563,41.546058545],[-71.208065837,41.545984059],[-71.208131367,41.545980086],[-71.208216212,41.545979432],[-71.208289273,41.545952471],[-71.208324018,41.54589598],[-71.208310819,41.545832117],[-71.20829969,41.545768259],[-71.208344874,41.545698804],[-71.208385904,41.54563238],[-71.208389123,41.545566386],[-71.208355254,41.545516124],[-71.20837077,41.545504728],[-71.208433602,41.545477718],[-71.208500547,41.545449987],[-71.208523384,41.545489381],[-71.208541748,41.54554866],[-71.208559057,41.545612602],[-71.208582413,41.545678869],[-71.208628513,41.545730786],[-71.208704337,41.545779942],[-71.208780045,41.545834472],[-71.208841318,41.545897268],[-71.208878303,41.545945274],[-71.20891616,41.546002452],[-71.208950821,41.546066553],[-71.208952145,41.546069859],[-71.208974303,41.546125181],[-71.208988463,41.546179821],[-71.20899044,41.546179492],[-71.211727441,41.545555492],[-71.212208999,41.545452586],[-71.21217291,41.54544643],[-71.212081206,41.545428614],[-71.211991535,41.54541238],[-71.211905419,41.545397736],[-71.211895715,41.545396086],[-71.211781512,41.545378807],[-71.211684695,41.545360955],[-71.211594026,41.545343141],[-71.211499312,41.545324562],[-71.211390268,41.5453043],[-71.211299651,41.545281889],[-71.211217256,41.545258789],[-71.211127721,41.545232561],[-71.211033136,41.545205475],[-71.21096813,41.545181024],[-71.210887937,41.545148736],[-71.210790414,41.545111693],[-71.210715251,41.545084861],[-71.210631937,41.545056338],[-71.210543441,41.545029358],[-71.210462092,41.545003974],[-71.210379742,41.544977832],[-71.210292315,41.544950099],[-71.210188592,41.544917592],[-71.210092088,41.544884347],[-71.210008819,41.544852783],[-71.20992144,41.544821185],[-71.209824912,41.544786477],[-71.209717152,41.54475158],[-71.209626736,41.54471842],[-71.20953839,41.544685287],[-71.209442939,41.544648248],[-71.209342444,41.544608864],[-71.20925415,41.544571112],[-71.20916685,41.544535694],[-71.20907751,41.544500249],[-71.208974899,41.544464633],[-71.208873293,41.544429065],[-71.20878492,41.544395176],[-71.208700651,41.544362854],[-71.20862039,41.544332874],[-71.208554465,41.544303022],[-71.208463213,41.544259887],[-71.208389104,41.544229191],[-71.208305822,41.544200713],[-71.208219439,41.544171472],[-71.208135143,41.544138348],[-71.20806115,41.544102301],[-71.207996398,41.54406248],[-71.207928635,41.544021874],[-71.207857761,41.543982747],[-71.207785818,41.543944395],[-71.207725202,41.543905408],[-71.207658771,41.543846372],[-71.207616838,41.543789091],[-71.207575987,41.543728016],[-71.20750479,41.543706566],[-71.207428977,41.543716574],[-71.207359237,41.543729706],[-71.207276403,41.543730433],[-71.207194761,41.543723479],[-71.207127807,41.543692846],[-71.207045701,41.543653644],[-71.206946814,41.543636537],[-71.206843351,41.543648531],[-71.206749874,41.543673747],[-71.206678885,41.543700666],[-71.206609745,41.543736075],[-71.206540635,41.543771507],[-71.206469537,41.543802292],[-71.20640055,41.543830794],[-71.206392528,41.543834318],[-71.206329065,41.543859679],[-71.206288064,41.543872404],[-71.206256898,41.543891329],[-71.206210899,41.543918747],[-71.206054487,41.544033954],[-71.206005676,41.544077236],[-71.205954784,41.544122823],[-71.205926153,41.544180153],[-71.205910777,41.544241427],[-71.205914869,41.544299069],[-71.205968119,41.544351051],[-71.205995619,41.544361893],[-71.206040198,41.544379411],[-71.206135763,41.544411078],[-71.20620285,41.544432519],[-71.206265774,41.544459254],[-71.206354941,41.544505473],[-71.206433769,41.544556148],[-71.206485218,41.544595844],[-71.206535514,41.544641666],[-71.206586797,41.54469131],[-71.206636847,41.544750945],[-71.206682689,41.544819008],[-71.206716349,41.544881574],[-71.206739826,41.544940912],[-71.206759148,41.545003327],[-71.206777418,41.545069559],[-71.206817316,41.545126011],[-71.206874578,41.545125837],[-71.20693582,41.545073439],[-71.207004298,41.545016507],[-71.20708272,41.544975038],[-71.207166049,41.544945909],[-71.207239269,41.544910556],[-71.207319775,41.54486605],[-71.207414285,41.54484166],[-71.207521585,41.544843465],[-71.207612078,41.544872786],[-71.207678547,41.544930289],[-71.207710298,41.544984365],[-71.207735532,41.545059099],[-71.207755513,41.545144568],[-71.207769553,41.545217673],[-71.207778549,41.545288409],[-71.207784101,41.545380634],[-71.207788743,41.545465173]]],[[[-71.207657669,41.54634722],[-71.207624624,41.546365206],[-71.20759997,41.546431809],[-71.207585688,41.546486957],[-71.20758801,41.546499653],[-71.20759744,41.546497491],[-71.207818439,41.546447492],[-71.207821271,41.546446842],[-71.20781569,41.546430871],[-71.207799993,41.546394605],[-71.207746427,41.546357992],[-71.207694959,41.54633923],[-71.207681417,41.546334294],[-71.207657669,41.54634722]]],[[[-71.20724534,41.546578203],[-71.207245823,41.546578093],[-71.20724569,41.546578074],[-71.20724534,41.546578203]]],[[[-71.205974941,41.546707744],[-71.206000139,41.546710835],[-71.206082616,41.546729318],[-71.20615406,41.546736956],[-71.20622604,41.546713836],[-71.206279923,41.5466737],[-71.206290645,41.546645346],[-71.206276875,41.546643057],[-71.206212132,41.546632293],[-71.206141923,41.546613932],[-71.206105658,41.546582073],[-71.206109679,41.546527585],[-71.206080275,41.546513491],[-71.20601216,41.546550457],[-71.205939339,41.54656429],[-71.205879055,41.546619755],[-71.2058181,41.546655276],[-71.205759141,41.546693821],[-71.205780108,41.546722461],[-71.205852676,41.546723951],[-71.205931772,41.54670245],[-71.205974941,41.546707744]]],[[[-71.203336743,41.545964638],[-71.203235155,41.545985119],[-71.203169283,41.546010586],[-71.203108406,41.546042218],[-71.203061627,41.546086327],[-71.203022505,41.546160415],[-71.2030021,41.546215525],[-71.202979614,41.546272893],[-71.202945855,41.546332473],[-71.202912031,41.546392784],[-71.202876359,41.546444675],[-71.202845837,41.54649507],[-71.202818316,41.546548559],[-71.20280091,41.546606741],[-71.202794723,41.546668153],[-71.202789062,41.546734415],[-71.20278829,41.546743355],[-71.202788181,41.546807093],[-71.202790265,41.546863975],[-71.202810318,41.546885662],[-71.202894011,41.546891092],[-71.202979842,41.546895019],[-71.203051782,41.546874233],[-71.203111071,41.546817235],[-71.203146665,41.546769163],[-71.203168221,41.546735394],[-71.20317929,41.546718042],[-71.203209889,41.546663805],[-71.203238565,41.546604212],[-71.20327229,41.546545409],[-71.203315314,41.546483635],[-71.203356978,41.546439489],[-71.203400802,41.546389243],[-71.203491865,41.546327181],[-71.203651785,41.546245834],[-71.203673198,41.546189949],[-71.203710061,41.5461304],[-71.203725563,41.54606222],[-71.203712168,41.546009081],[-71.203645151,41.545985376],[-71.203547255,41.545970578],[-71.203442076,41.545964178],[-71.203336743,41.545964638]]],[[[-71.202415675,41.546536861],[-71.202471278,41.546573505],[-71.20246506,41.546634871],[-71.20245284,41.546690825],[-71.202441655,41.546733494],[-71.202438587,41.546745218],[-71.202414731,41.546822547],[-71.202393945,41.546900685],[-71.202394758,41.546969045],[-71.202464758,41.546999734],[-71.202517143,41.546987932],[-71.2025593,41.546916161],[-71.20257876,41.546854898],[-71.202588978,41.546797407],[-71.202596271,41.546733894],[-71.202597444,41.546723788],[-71.202608824,41.546658593],[-71.202626322,41.546593482],[-71.202648015,41.546523054],[-71.202715838,41.546330963],[-71.202735578,41.546255087],[-71.202721216,41.546200414],[-71.202637795,41.546175796],[-71.202548214,41.546153381],[-71.202465702,41.546136427],[-71.202384856,41.546140997],[-71.202326933,41.546178834],[-71.202246265,41.54623102],[-71.202163762,41.546271651],[-71.202100356,41.546330194],[-71.202061359,41.546396598],[-71.202058294,41.546454176],[-71.202102342,41.5465076],[-71.2021745,41.546532143],[-71.202257427,41.546525291],[-71.20234434,41.546525379],[-71.202415675,41.546536861]]],[[[-71.204312544,41.547039674],[-71.204320438,41.547062193],[-71.204331988,41.547095138],[-71.20436875,41.547097839],[-71.204420718,41.547050701],[-71.204464284,41.547031378],[-71.204584725,41.547005576],[-71.204684093,41.547014169],[-71.204780792,41.547038156],[-71.204867296,41.547061293],[-71.20494582,41.547072083],[-71.205025632,41.547067486],[-71.205090786,41.547025893],[-71.205146005,41.546966527],[-71.205213153,41.546928049],[-71.205237592,41.54687606],[-71.205234054,41.54686647],[-71.205208301,41.54679665],[-71.205176865,41.54674063],[-71.205173634,41.546734859],[-71.205122384,41.546684414],[-71.205056708,41.546639992],[-71.205001257,41.546596443],[-71.204956041,41.546551434],[-71.204920067,41.546502675],[-71.204902655,41.546448749],[-71.204929147,41.546393701],[-71.204988283,41.546403504],[-71.20505691,41.546454885],[-71.205129869,41.546490955],[-71.20519078,41.546458545],[-71.20525515,41.546401581],[-71.205332278,41.546377765],[-71.205411169,41.54636779],[-71.205429499,41.54631343],[-71.20546329,41.546253095],[-71.205534569,41.546210031],[-71.205622101,41.546174052],[-71.205708511,41.546144177],[-71.205760227,41.546111697],[-71.205744753,41.546060063],[-71.205676105,41.546013302],[-71.205580371,41.545991605],[-71.205503605,41.545996211],[-71.205433781,41.546013939],[-71.205358478,41.546051595],[-71.205293728,41.546071669],[-71.205239952,41.546048113],[-71.205252088,41.545996778],[-71.205316406,41.545944434],[-71.205394872,41.545900657],[-71.205475378,41.545856907],[-71.205547728,41.545812314],[-71.205608481,41.545787564],[-71.205686826,41.545810611],[-71.205765774,41.545855181],[-71.205848127,41.545880594],[-71.205953344,41.545885483],[-71.206051455,41.545886465],[-71.206113086,41.545869402],[-71.206150904,41.545813719],[-71.206081976,41.545781525],[-71.206012143,41.54574089],[-71.205961024,41.54568203],[-71.205895487,41.545687511],[-71.205852283,41.545702426],[-71.205819662,41.545639154],[-71.205795478,41.545561335],[-71.205794338,41.54551063],[-71.205879183,41.545509932],[-71.205982271,41.545520944],[-71.206063705,41.545540958],[-71.20612317,41.54553155],[-71.206158887,41.545475862],[-71.206196545,41.545428595],[-71.206247331,41.545446769],[-71.20630061,41.545499505],[-71.206367375,41.5455386],[-71.206395084,41.545591088],[-71.206394058,41.545649472],[-71.206328767,41.545641118],[-71.206271699,41.545632099],[-71.206210786,41.545665288],[-71.206178354,41.545707994],[-71.206217299,41.545759848],[-71.206310847,41.54578689],[-71.206406122,41.545775538],[-71.206481379,41.545740946],[-71.2065492,41.545721656],[-71.206613415,41.545732295],[-71.206657301,41.545795687],[-71.206685728,41.545864346],[-71.206723784,41.545910823],[-71.206799821,41.545946099],[-71.206864397,41.545937573],[-71.206894915,41.545887155],[-71.206866372,41.545823893],[-71.206826392,41.545772037],[-71.206864135,41.545719418],[-71.206909116,41.545661512],[-71.206901032,41.545597662],[-71.206938826,41.545540424],[-71.207023276,41.545505946],[-71.207115673,41.545484615],[-71.207207538,41.545493196],[-71.207264188,41.545527554],[-71.207303048,41.545584781],[-71.207340274,41.545619707],[-71.207252835,41.54564878],[-71.207215569,41.545676815],[-71.207208106,41.545752015],[-71.207222431,41.54580902],[-71.207248863,41.545874563],[-71.207275333,41.545938551],[-71.20727435,41.545994603],[-71.207215307,41.546038591],[-71.207136416,41.546048544],[-71.207051131,41.546072295],[-71.207002271,41.546119442],[-71.207070441,41.546137751],[-71.207164429,41.546141764],[-71.207254181,41.546153405],[-71.207332612,41.546171077],[-71.207404309,41.546163346],[-71.207494224,41.546165793],[-71.207565271,41.54619415],[-71.207658295,41.546195827],[-71.207697924,41.546150165],[-71.2076867,41.546093969],[-71.207653999,41.546034516],[-71.207621342,41.545971953],[-71.207603145,41.54590268],[-71.207602504,41.545821993],[-71.207607886,41.545749075],[-71.207614191,41.545680779],[-71.207622685,41.54560636],[-71.207630351,41.54551968],[-71.207631671,41.545442864],[-71.207630815,41.545376036],[-71.20762393,41.545303019],[-71.207612107,41.545217639],[-71.207596951,41.545149128],[-71.207573756,41.545074399],[-71.207551358,41.545011954],[-71.20751957,41.544959455],[-71.207452206,41.544951874],[-71.207362596,41.544990136],[-71.207296648,41.545019402],[-71.20722878,41.545042533],[-71.207147368,41.545078597],[-71.207093113,41.545141054],[-71.207062562,41.545192204],[-71.207024902,41.545240226],[-71.206944361,41.545285509],[-71.206838307,41.545270602],[-71.206767477,41.545228455],[-71.206697889,41.545173985],[-71.20663442,41.545119576],[-71.206579248,41.545061438],[-71.206535483,41.544991893],[-71.206492957,41.544910803],[-71.20644404,41.544842732],[-71.206385794,41.54478454],[-71.206318291,41.544727056],[-71.206248694,41.544674872],[-71.206184102,41.544626635],[-71.206126575,41.544584568],[-71.20606785,41.54455176],[-71.206000724,41.544531897],[-71.205908983,41.544516363],[-71.205843268,41.544474229],[-71.205790855,41.544432266],[-71.205714326,41.544425369],[-71.205640721,41.544424632],[-71.205568602,41.544398536],[-71.205511045,41.544356491],[-71.205456634,41.544312167],[-71.205440703,41.54428745],[-71.205487561,41.544238743],[-71.20546796,41.544190964],[-71.205443586,41.544182256],[-71.205405201,41.544155012],[-71.205268461,41.544026888],[-71.205242917,41.543967498],[-71.205228843,41.543895926],[-71.205230155,41.543821442],[-71.205246738,41.543749399],[-71.205273463,41.543682848],[-71.205263257,41.543624367],[-71.205207969,41.543572356],[-71.205151321,41.543537998],[-71.205093677,41.543502105],[-71.205012782,41.543451378],[-71.204934804,41.543408343],[-71.204849009,41.543404441],[-71.20478173,41.543452157],[-71.20473999,41.543500122],[-71.20469825,41.543548087],[-71.204666697,41.543598457],[-71.204647965,41.543674314],[-71.204660915,41.543752013],[-71.20465141,41.543827207],[-71.204648388,41.543882475],[-71.204651478,41.54393936],[-71.204664724,41.543998604],[-71.204679002,41.544058651],[-71.204692398,41.544111789],[-71.204717581,41.544190366],[-71.204736016,41.544246627],[-71.204758564,41.544302144],[-71.20480536,41.544374052],[-71.204865569,41.544435315],[-71.204914446,41.544504942],[-71.204936038,41.544556637],[-71.204946285,41.544612786],[-71.204942143,41.544673425],[-71.204936074,41.544729395],[-71.204933056,41.544783909],[-71.20492489,41.544839141],[-71.204905515,41.544895763],[-71.204875878,41.544953113],[-71.204845281,41.545007327],[-71.204819809,41.545059313],[-71.204784887,41.54512733],[-71.204738989,41.54517908],[-71.204705406,41.545227135],[-71.204717257,41.545251796],[-71.204795153,41.545239532],[-71.204869082,41.545222615],[-71.204939906,41.545205645],[-71.205008019,41.545229375],[-71.205068243,41.545233807],[-71.205137273,41.545203018],[-71.205204301,41.545170669],[-71.205278609,41.545130654],[-71.205311405,41.545068052],[-71.205330974,41.545002169],[-71.20536332,41.54496486],[-71.20543413,41.544950976],[-71.205491052,41.544911603],[-71.205530565,41.544931944],[-71.205566342,41.544990697],[-71.205611311,41.545049496],[-71.205639785,41.545114336],[-71.205639597,41.545182693],[-71.20561137,41.545217726],[-71.20554686,41.545164846],[-71.20549648,41.545124397],[-71.20541804,41.545109034],[-71.205369309,41.545147719],[-71.205394947,41.545200179],[-71.205359154,41.545258977],[-71.205305142,41.545307597],[-71.205212912,41.545318956],[-71.205100499,41.545317067],[-71.205023887,41.545314789],[-71.204931858,41.545315399],[-71.204839621,41.54532829],[-71.204749181,41.545354266],[-71.204669919,41.545385737],[-71.204609631,41.545441979],[-71.204565448,41.545511458],[-71.204537884,41.545568013],[-71.204511369,41.545621506],[-71.204472542,41.545677963],[-71.204418622,41.54571963],[-71.204333534,41.545733385],[-71.204244251,41.54575248],[-71.204173191,41.545780953],[-71.204112147,41.545822602],[-71.204110119,41.545880183],[-71.204120116,41.545950945],[-71.20410645,41.546030702],[-71.204072743,41.546085617],[-71.204020595,41.546145791],[-71.20396431,41.54620513],[-71.203913334,41.546255312],[-71.203863433,41.54630321],[-71.20381042,41.54635261],[-71.203757326,41.546406628],[-71.203703193,41.546461353],[-71.203646033,41.546512274],[-71.203584954,41.546554678],[-71.203526909,41.546599398],[-71.203469775,41.546651074],[-71.203416636,41.546708134],[-71.203397482,41.546736009],[-71.203371524,41.546773768],[-71.203334694,41.54683254],[-71.203300733,41.546902845],[-71.203283109,41.546975594],[-71.203282006,41.547037065],[-71.20330837,41.547050375],[-71.203368615,41.546997221],[-71.203404414,41.546937646],[-71.203437091,41.546881928],[-71.203500541,41.546820344],[-71.203587033,41.546785873],[-71.20368135,41.546771434],[-71.20375891,41.54677989],[-71.203824633,41.546820493],[-71.203903696,41.546859666],[-71.203993166,41.5468867],[-71.204090028,41.546901472],[-71.204171545,41.54691689],[-71.204239584,41.546943685],[-71.204286876,41.546987168],[-71.204312544,41.547039674]]],[[[-71.202391241,41.547224788],[-71.202331319,41.547260287],[-71.202274512,41.547293507],[-71.202217634,41.547329037],[-71.202155631,41.547366817],[-71.202089549,41.547404587],[-71.202032548,41.547447],[-71.201977496,41.547495615],[-71.201924474,41.547546546],[-71.201883143,41.547584292],[-71.201874582,41.54759211],[-71.201819736,41.547629223],[-71.201742095,41.547684527],[-71.201693282,41.547727029],[-71.201645459,41.547772667],[-71.201596643,41.547815948],[-71.201545831,41.547856135],[-71.201527252,41.547868311],[-71.204265439,41.547258492],[-71.204266439,41.547258492],[-71.204716196,41.547157888],[-71.20467892,41.547133924],[-71.204610806,41.547110193],[-71.2045367,41.547138659],[-71.204465427,41.54718019],[-71.204395401,41.547208689],[-71.204312358,41.547220916],[-71.204236864,41.547213221],[-71.204194596,41.547175972],[-71.204173161,41.547116593],[-71.204165542,41.547095376],[-71.204150735,41.547054146],[-71.204092046,41.547019759],[-71.204004384,41.547003548],[-71.203907566,41.546985689],[-71.203828318,41.546960305],[-71.203768921,41.546907506],[-71.203705081,41.546874615],[-71.203654435,41.54690561],[-71.203609655,41.546951989],[-71.203561834,41.546997605],[-71.203509815,41.547049317],[-71.203456696,41.547101757],[-71.203389583,41.547138725],[-71.203307561,41.547154042],[-71.203225802,41.547151727],[-71.203197429,41.547145113],[-71.203139253,41.547131652],[-71.203050792,41.547103889],[-71.202955221,41.547072974],[-71.202858444,41.547052827],[-71.202758214,41.547055632],[-71.202660699,41.547076924],[-71.202575319,41.547107577],[-71.202517474,41.547141572],[-71.20245432,41.547184701],[-71.202391241,41.547224788]]],[[[-71.126258586,41.551512788],[-71.126868575,41.554869969],[-71.126985532,41.555802024],[-71.126989413,41.555803496],[-71.126998414,41.555877496],[-71.127151641,41.557125741],[-71.127169414,41.557267496],[-71.127862442,41.562789497],[-71.128715415,41.562785497],[-71.128744414,41.562784497],[-71.128969415,41.562778497],[-71.129224415,41.562771497],[-71.129447415,41.562765497],[-71.130109415,41.562659498],[-71.131291416,41.562457497],[-71.132561415,41.562254497],[-71.132708416,41.562230497],[-71.132721415,41.562228497],[-71.132843416,41.562208497],[-71.133396416,41.562117497],[-71.135302417,41.561701497],[-71.140346418,41.560600496],[-71.141391419,41.560258497],[-71.143855419,41.559750496],[-71.149179421,41.558675496],[-71.152458422,41.558004495],[-71.153096422,41.557873496],[-71.156120423,41.557254496],[-71.156211423,41.557189495],[-71.156456423,41.557121495],[-71.157348423,41.556925496],[-71.158165424,41.556711496],[-71.158828424,41.556559495],[-71.159515424,41.556424495],[-71.159805424,41.556351495],[-71.159843424,41.556310495],[-71.172862428,41.553139494],[-71.17777043,41.552320494],[-71.192161434,41.549919493],[-71.195119436,41.549247492],[-71.196739436,41.548685492],[-71.197753437,41.548720492],[-71.199135437,41.548417493],[-71.199978437,41.548207493],[-71.199976154,41.548177761],[-71.199974018,41.548106471],[-71.199968475,41.548041163],[-71.199964596,41.547995226],[-71.199962904,41.547975192],[-71.199989045,41.547911568],[-71.2000399,41.547855601],[-71.200065304,41.547799888],[-71.200090628,41.547741522],[-71.200100517,41.547703127],[-71.200120857,41.54760994],[-71.200134852,41.547572447],[-71.2001366,41.547530211],[-71.200235766,41.547415252],[-71.200338165,41.547463866],[-71.200377341,41.547425226],[-71.200442236,41.547361223],[-71.200410128,41.547326354],[-71.200473372,41.547277052],[-71.200535376,41.547239272],[-71.200570345,41.547228089],[-71.200641423,41.547196553],[-71.200705329,41.547168773],[-71.200746895,41.54715971],[-71.200776149,41.547153337],[-71.200836158,41.547112511],[-71.200890047,41.547071577],[-71.200947972,41.547033741],[-71.201025318,41.546996093],[-71.201078292,41.546948981],[-71.20111397,41.546896359],[-71.201147604,41.546844487],[-71.201179449,41.54677795],[-71.201188041,41.546730197],[-71.201189665,41.546721214],[-71.20119501,41.546651429],[-71.20122146,41.546599446],[-71.201267471,41.546543832],[-71.201313418,41.546488973],[-71.201348132,41.546434015],[-71.201378692,41.546382089],[-71.201419401,41.546334122],[-71.201466263,41.546285417],[-71.201516158,41.546239098],[-71.201578273,41.546196699],[-71.201642396,41.54615435],[-71.201696367,41.546108774],[-71.201744264,41.546060094],[-71.201791128,41.546010657],[-71.201832831,41.545964979],[-71.201871579,41.54591312],[-71.201880845,41.54585103],[-71.201900421,41.545784392],[-71.201927013,41.545727836],[-71.201949673,41.545718861],[-71.202023753,41.545748761],[-71.202097366,41.545747968],[-71.202169432,41.545719476],[-71.202251011,41.545674245],[-71.202335509,41.54563666],[-71.202422086,41.545596816],[-71.202509616,41.545561595],[-71.20258875,41.545538586],[-71.202665314,41.545544708],[-71.202617459,41.545591101],[-71.202563288,41.545647381],[-71.202525569,41.545700775],[-71.202490894,41.545754201],[-71.202481681,41.545811695],[-71.202492793,41.545877863],[-71.202513099,41.5459441],[-71.202578739,41.545989346],[-71.202654104,41.546004658],[-71.202726757,41.546000798],[-71.202807931,41.545977795],[-71.202891177,41.545954043],[-71.202968405,41.54592179],[-71.203047818,41.545884191],[-71.203125124,41.545848097],[-71.203203386,41.545815846],[-71.203281682,41.545782842],[-71.203346594,41.545754285],[-71.203413668,41.54571885],[-71.203461604,41.545667859],[-71.203486255,41.545602813],[-71.203504612,41.545549253],[-71.203536369,41.545488113],[-71.203598212,41.545458016],[-71.203672767,41.545464154],[-71.203739695,41.545493988],[-71.203710678,41.545515205],[-71.203637657,41.545539831],[-71.2035868,41.545583861],[-71.203556086,41.545643449],[-71.203567985,41.545664314],[-71.203645588,41.545669706],[-71.203734536,41.545670575],[-71.203823572,41.545665339],[-71.203912896,41.545643957],[-71.203989115,41.545612456],[-71.204062262,41.545580146],[-71.204088621,41.545534337],[-71.204073427,41.545468159],[-71.204053284,41.545392682],[-71.2040331,41.545319493],[-71.204025132,41.545251069],[-71.204042703,41.545182871],[-71.204105027,41.545127435],[-71.204149847,41.545078746],[-71.204194629,41.545031544],[-71.204254551,41.544995289],[-71.2043175,41.544962885],[-71.204382615,41.544922824],[-71.204440457,41.544888828],[-71.204504448,41.544854917],[-71.204564408,41.54481713],[-71.204612216,41.5447738],[-71.204626757,41.544702529],[-71.204607409,41.544639359],[-71.204587221,41.544566947],[-71.204579225,41.544497746],[-71.204579367,41.544433254],[-71.20456912,41.544377082],[-71.204563987,41.544320946],[-71.204543605,41.544257751],[-71.204501913,41.544188234],[-71.204459192,41.544117136],[-71.204416458,41.544049103],[-71.204372733,41.543978026],[-71.204323823,41.543909177],[-71.204299471,41.543842151],[-71.204297543,41.543777585],[-71.204320152,41.543712533],[-71.204355067,41.543646072],[-71.20440409,41.543589709],[-71.204470641,41.543528155],[-71.204538125,41.543468913],[-71.20460968,41.543411259],[-71.204678117,41.543356639],[-71.204754578,41.543311324],[-71.204829922,41.543270604],[-71.204911411,41.543230699],[-71.204996864,41.543196225],[-71.205076872,41.543180879],[-71.205163225,41.543209436],[-71.205226109,41.543237681],[-71.205296304,41.543258352],[-71.205368664,41.543271368],[-71.205463601,41.543280004],[-71.205570768,41.543290273],[-71.205666423,41.543315034],[-71.205732014,41.543364051],[-71.205753378,41.543425717],[-71.205761576,41.543484171],[-71.205788044,41.543548182],[-71.205830932,41.543609285],[-71.20587299,41.54365886],[-71.205928395,41.543705519],[-71.205984879,41.54374907],[-71.206010096,41.543773377],[-71.2060291,41.543791744],[-71.206106622,41.543800999],[-71.206157904,41.543783383],[-71.20618045,41.543779255],[-71.206209089,41.543773908],[-71.206256809,41.543749468],[-71.206315099,41.543690178],[-71.20636491,41.543647653],[-71.206410714,41.543602763],[-71.206453573,41.543549426],[-71.206491362,41.543492965],[-71.206524072,41.543435714],[-71.206548555,41.54337986],[-71.206566287,41.543302468],[-71.206568391,41.543241068],[-71.206568626,41.543168869],[-71.206563703,41.543099698],[-71.206540234,41.543038782],[-71.206496249,41.542984583],[-71.206444086,41.542927984],[-71.206393015,41.542865259],[-71.206343089,41.542798718],[-71.206292169,41.542729864],[-71.206231906,41.542667047],[-71.206162512,41.542604138],[-71.206092016,41.542542758],[-71.206023469,41.542487581],[-71.205957879,41.542438518],[-71.205892282,41.54239101],[-71.205830807,41.542340471],[-71.205769487,41.542283025],[-71.205709184,41.54222254],[-71.205657063,41.542163631],[-71.205349939,41.541783458],[-71.205312047,41.541728542],[-71.205276313,41.541667526],[-71.205242574,41.541609579],[-71.205207749,41.541556249],[-71.205172925,41.541502896],[-71.205140061,41.541453435],[-71.205111395,41.541397834],[-71.205084899,41.541333799],[-71.205059393,41.541272878],[-71.205031728,41.541218102],[-71.205000019,41.541162447],[-71.204968391,41.541102241],[-71.204940939,41.541034362],[-71.204927778,41.540969744],[-71.204924062,41.540889805],[-71.204918974,41.540830628],[-71.2049131,41.540756812],[-71.204903211,41.540682231],[-71.204888934,41.540622161],[-71.204876611,41.540567516],[-71.204867376,41.540509838],[-71.204858335,41.540442944],[-71.204851293,41.540378341],[-71.204848571,41.54030076],[-71.204849846,41.540227786],[-71.204858417,41.540150302],[-71.204875074,41.540075218],[-71.204898595,41.540017052],[-71.204929319,41.539954376],[-71.204982118,41.539917256],[-71.204991502,41.539848237],[-71.204995477,41.539810809],[-71.20500009,41.539766911],[-71.20500926,41.539711704],[-71.205020472,41.539655747],[-71.205034766,41.539598312],[-71.205056325,41.539536276],[-71.205083964,41.539475879],[-71.20511144,41.539424699],[-71.20515043,41.539358247],[-71.205191575,41.539286496],[-71.205222172,41.539231504],[-71.205249719,41.539177991],[-71.20527105,41.539125994],[-71.205294937,41.539047131],[-71.205308181,41.538992735],[-71.205327667,41.538931448],[-71.205349187,41.53887099],[-71.20537475,41.538812097],[-71.205395106,41.538760098],[-71.205419715,41.538696583],[-71.205450717,41.538619317],[-71.205479223,41.538568916],[-71.20550566,41.538518487],[-71.205537626,41.538443556],[-71.205566504,41.538371613],[-71.205590904,41.538320402],[-71.205617408,41.538268487],[-71.205645996,41.538213466],[-71.205679667,41.538158482],[-71.205715575,41.538093578],[-71.20576284,41.538021042],[-71.205797426,41.537972235],[-71.205846727,41.537900527],[-71.205882382,41.537850945],[-71.205922051,41.537802242],[-71.205957747,41.537750327],[-71.205994539,41.537691555],[-71.206033319,41.537637407],[-71.206071098,41.537582479],[-71.206110992,41.537524514],[-71.206148737,41.537470363],[-71.206177245,41.537419185],[-71.206198322,41.537382556],[-71.206353057,41.537102979],[-71.206454441,41.536754062],[-71.206506112,41.536427041],[-71.206525412,41.536109932],[-71.206565106,41.535745626],[-71.206566065,41.535445943],[-71.206550677,41.535207097],[-71.206550896,41.535138626],[-71.20654907,41.535084602],[-71.206543176,41.535028305],[-71.206541341,41.534969731],[-71.206536507,41.534894431],[-71.20653776,41.534825962],[-71.206563226,41.534774295],[-71.206569531,41.534705839],[-71.206580937,41.534633623],[-71.20661356,41.53456066],[-71.206639088,41.534495294],[-71.206681784,41.534436033],[-71.20672856,41.534369945],[-71.20676121,41.534297736],[-71.206788728,41.534243079],[-71.206825331,41.534185312],[-71.206857946,41.534127557],[-71.206888491,41.53406982],[-71.20691908,41.534015857],[-71.20695776,41.533942886],[-71.206985326,41.533870711],[-71.207013918,41.533793918],[-71.207040448,41.533735439],[-71.207065951,41.533675357],[-71.207090415,41.533622933],[-71.207130102,41.533556048],[-71.207156598,41.533505139],[-71.20718512,41.533450438],[-71.207213653,41.533393428],[-71.207239135,41.533337965],[-71.20725556,41.533279414],[-71.207263863,41.533220088],[-71.207296499,41.533144106],[-71.207332088,41.53309473],[-71.207367708,41.533038515],[-71.2073922,41.532973146],[-71.207410645,41.532905476],[-71.207429079,41.532840092],[-71.207450561,41.532773939],[-71.207475093,41.532706352],[-71.207503652,41.532636398],[-71.207538299,41.532566504],[-71.207574985,41.532496593],[-71.207606564,41.532431975],[-71.207632069,41.53237116],[-71.207651507,41.53231264],[-71.207669887,41.532259423],[-71.207700482,41.532190274],[-71.207725997,41.532127195],[-71.207733302,41.532059496],[-71.207739643,41.53198953],[-71.207759088,41.531922617],[-71.207771456,41.531852667],[-71.207771652,41.531795607],[-71.207771838,41.531733996],[-71.207774049,41.531675432],[-71.207785443,41.531598665],[-71.207801831,41.531534785],[-71.207827369,41.531466378],[-71.207849919,41.531392657],[-71.207863332,41.531313584],[-71.207875658,41.531259551],[-71.207905255,41.531182052],[-71.207927777,41.531107531],[-71.207930023,41.531041374],[-71.207930191,41.53098356],[-71.207930459,41.530917398],[-71.207937719,41.530859602],[-71.207960169,41.530801066],[-71.207978548,41.530747872],[-71.207991922,41.530690823],[-71.208014389,41.530628491],[-71.208042913,41.530566175],[-71.208063413,41.530494736],[-71.208084914,41.530417193],[-71.208114507,41.530340402],[-71.208145162,41.530264415],[-71.208160534,41.530209658],[-71.208176986,41.530131348],[-71.208188331,41.530058353],[-71.208199728,41.529980785],[-71.208225255,41.529914665],[-71.208259852,41.529855405],[-71.208280345,41.529785453],[-71.208290706,41.529707882],[-71.208295977,41.529652367],[-71.208307301,41.529597645],[-71.208329803,41.529520837],[-71.208350268,41.529450153],[-71.208371788,41.529374874],[-71.208394289,41.529304949],[-71.20843087,41.529257862],[-71.208506865,41.52923061],[-71.208562704,41.529185081],[-71.208506159,41.529143886],[-71.208446523,41.529113364],[-71.208409288,41.52904864],[-71.20839433,41.528983949],[-71.208394499,41.528926134],[-71.208388607,41.528869082],[-71.208373609,41.528813539],[-71.208373811,41.528754947],[-71.20837399,41.528694868],[-71.208403551,41.528638615],[-71.208452267,41.528593113],[-71.208474709,41.528549809],[-71.208453624,41.528494227],[-71.208441683,41.528435627],[-71.208441851,41.528377813],[-71.208439003,41.528320768],[-71.208411848,41.528268213],[-71.208360431,41.528210314],[-71.2083232,41.528144834],[-71.208293092,41.528065674],[-71.208270053,41.527991083],[-71.208246964,41.527927927],[-71.208246172,41.527867068],[-71.208246358,41.527805434],[-71.208232378,41.527746852],[-71.20818396,41.527698863],[-71.208112238,41.52765612],[-71.208057788,41.527595925],[-71.208015441,41.527538049],[-71.207993418,41.527468057],[-71.207985533,41.527394259],[-71.207962478,41.527323441],[-71.207931317,41.527268634],[-71.20789406,41.527209215],[-71.207863887,41.527151347],[-71.207831668,41.527095005],[-71.207794404,41.527037118],[-71.207758144,41.526979257],[-71.207727004,41.526919854],[-71.207699844,41.526862015],[-71.207672697,41.526807951],[-71.207655682,41.526747828],[-71.20766399,41.526687016],[-71.207625691,41.526635964],[-71.207576206,41.526595542],[-71.207519685,41.526542958],[-71.20745819,41.526479703],[-71.207415824,41.526433261],[-71.207370417,41.526386011],[-71.207323016,41.526335691],[-71.20727665,41.526278559],[-71.207250498,41.526226806],[-71.207185912,41.526181062],[-71.207106018,41.526148933],[-71.207042403,41.526103968],[-71.206976794,41.526049074],[-71.206915215,41.525998009],[-71.206859716,41.525941585],[-71.206797175,41.525881415],[-71.206751779,41.525838692],[-71.206685163,41.525777757],[-71.20664181,41.525734308],[-71.206600448,41.525687823],[-71.20656417,41.525634489],[-71.206530945,41.525578945],[-71.206503789,41.525527167],[-71.206465582,41.525456333],[-71.206430377,41.525387794],[-71.206410333,41.525331483],[-71.206395375,41.525260708],[-71.206378348,41.525203628],[-71.206348184,41.525144249],[-71.206302833,41.52509167],[-71.206243233,41.525054286],[-71.206172456,41.525032127],[-71.206106776,41.525000056],[-71.206071533,41.524939864],[-71.206032253,41.524884281],[-71.206010171,41.524827942],[-71.206010365,41.52477166],[-71.20599027,41.524726761],[-71.205929683,41.524685577],[-71.205835681,41.524644308],[-71.205760812,41.52459856],[-71.205697695,41.52455163],[-71.205639956,41.524499888],[-71.205573173,41.52444954],[-71.205521879,41.524405979],[-71.205473243,41.524353505],[-71.205422811,41.524301027],[-71.205370487,41.524243101],[-71.205317245,41.52417973],[-71.205263114,41.524117682],[-71.205211721,41.52406248],[-71.205163185,41.52402167],[-71.205104582,41.523972647],[-71.205065884,41.523909861],[-71.205029927,41.52384642],[-71.205000401,41.523794544],[-71.204970959,41.523744017],[-71.204945976,41.523690072],[-71.204923738,41.523634761],[-71.204899635,41.523574689],[-71.204873685,41.523512531],[-71.204850532,41.523457927],[-71.204823775,41.523406012],[-71.204796993,41.523352794],[-71.204773842,41.523297481],[-71.204752455,41.523235998],[-71.204726535,41.523173885],[-71.204697826,41.523109685],[-71.204670988,41.523048919],[-71.204643288,41.522990187],[-71.204614678,41.52293765],[-71.204580498,41.52286527],[-71.204552615,41.522786732],[-71.204533083,41.522732069],[-71.204513575,41.522678801],[-71.204494981,41.522625512],[-71.204473632,41.522568831],[-71.204450455,41.522506017],[-71.204428129,41.522437007],[-71.204411237,41.522370732],[-71.204397129,41.52230785],[-71.204383033,41.522249084],[-71.204373562,41.52219033],[-71.204371289,41.52213491],[-71.204370898,41.522080388],[-71.204370539,41.522025453],[-71.20437178,41.521946784],[-71.20437775,41.521892049],[-71.204397206,41.521816034],[-71.204411387,41.521762601],[-71.204422835,41.521707834],[-71.204434234,41.521650346],[-71.204450253,41.521594196],[-71.204477009,41.521518839],[-71.20449373,41.521442154],[-71.204519595,41.521368854],[-71.204553667,41.521297588],[-71.20458591,41.52122698],[-71.204625477,41.521158403],[-71.204669597,41.521092583],[-71.20470913,41.521024715],[-71.204730587,41.520970569],[-71.204820027,41.520875797],[-71.204859662,41.520818861],[-71.204919346,41.520763212],[-71.204962648,41.520709693],[-71.204993104,41.520643906],[-71.205022676,41.52057814],[-71.205044075,41.520516446],[-71.205067287,41.520457547],[-71.20509319,41.520389004],[-71.205120891,41.520319848],[-71.205144056,41.52025132],[-71.205157284,41.52018629],[-71.205155881,41.520119963],[-71.205144454,41.520049541],[-71.205126619,41.519976403],[-71.205106944,41.519899876],[-71.205089986,41.519821297],[-71.205074007,41.519748164],[-71.205059854,41.519681851],[-71.205047554,41.519616251],[-71.205038881,41.519549243],[-71.205017473,41.519485725],[-71.204977835,41.519416121],[-71.204949247,41.51936562],[-71.204900293,41.519296999],[-71.204854569,41.51923399],[-71.204808547,41.519163067],[-71.2047736,41.519112572],[-71.204737737,41.519062761],[-71.20470187,41.519013658],[-71.204648603,41.518943448],[-71.204599839,41.518873181],[-71.204548386,41.518805674],[-71.20451252,41.518756572],[-71.204480332,41.51870812],[-71.204435299,41.518647422],[-71.204401211,41.518588741],[-71.20437618,41.518525922],[-71.20433027,41.518470711],[-71.204278101,41.518433299],[-71.204212358,41.518403445],[-71.204146611,41.518374299],[-71.204078113,41.518341076],[-71.204007785,41.518302382],[-71.203936474,41.518258906],[-71.203865145,41.518212685],[-71.203792033,41.518170554],[-71.203723449,41.51812976],[-71.203656703,41.518086296],[-71.203590045,41.51805031],[-71.203516978,41.518018424],[-71.203439283,41.517973604],[-71.203403635,41.517950391],[-71.203373448,41.517930782],[-71.203313086,41.517888615],[-71.203250893,41.517847837],[-71.203180526,41.517811178],[-71.203110226,41.517773147],[-71.203048897,41.517729627],[-71.202992995,41.51767718],[-71.202930775,41.517628878],[-71.202855785,41.517578576],[-71.202796357,41.517545284],[-71.202730645,41.517515475],[-71.202664907,41.517484934],[-71.202605503,41.517453037],[-71.202524147,41.517404114],[-71.202439161,41.517357262],[-71.202379758,41.517325365],[-71.202318505,41.517285253],[-71.202255437,41.517243101],[-71.202192326,41.517203693],[-71.202138308,41.517158751],[-71.202087935,41.51711519],[-71.202034844,41.517073681],[-71.201977217,41.517032869],[-71.201915044,41.516987952],[-71.201853702,41.516941024],[-71.201795151,41.516896093],[-71.20174291,41.516848457],[-71.201695256,41.516802799],[-71.201651243,41.516759187],[-71.20160815,41.516714227],[-71.201567798,41.516668543],[-71.201526531,41.516623565],[-71.201484296,41.516577235],[-71.201438477,41.516529524],[-71.201395321,41.516478412],[-71.201357639,41.516427932],[-71.201302574,41.516365903],[-71.201253984,41.516312079],[-71.201215354,41.51625613],[-71.201186693,41.516196091],[-71.201159022,41.516145591],[-71.201140394,41.516087499],[-71.201130855,41.516024604],[-71.201130477,41.51596784],[-71.201145541,41.515914433],[-71.201185195,41.515860243],[-71.201234063,41.515820347],[-71.201310361,41.515797447],[-71.201380441,41.515796508],[-71.201454103,41.515797546],[-71.201531668,41.515823247],[-71.20158476,41.51586407],[-71.201601277,41.515885222],[-71.201648582,41.515880908],[-71.201621792,41.515824258],[-71.201559559,41.515779363],[-71.201480208,41.515751645],[-71.201403598,41.51573004],[-71.201330746,41.515724888],[-71.201302116,41.515664803],[-71.201278058,41.515609464],[-71.201247599,41.515550083],[-71.201216978,41.515472932],[-71.201195707,41.515420345],[-71.201163316,41.515344539],[-71.201129142,41.515279019],[-71.201094057,41.515206659],[-71.201065417,41.51514861],[-71.201034022,41.515087877],[-71.201000851,41.515029198],[-71.200964958,41.51497392],[-71.20093091,41.514920728],[-71.200895717,41.51485875],[-71.200889439,41.514847688],[-71.200852504,41.514773951],[-71.200814666,41.514705014],[-71.200755403,41.514557486],[-71.200730299,41.514485083],[-71.20071426,41.514406484],[-71.200703841,41.514349762],[-71.200687779,41.514269813],[-71.200675395,41.514190537],[-71.20067136,41.514135135],[-71.200670959,41.514076976],[-71.20067053,41.514018154],[-71.200671032,41.513962055],[-71.20067778,41.513890902],[-71.200685513,41.513823799],[-71.200697735,41.513753323],[-71.200714509,41.513678673],[-71.200729502,41.513614334],[-71.200749122,41.513556112],[-71.200772356,41.513499227],[-71.200798362,41.513441662],[-71.20083258,41.513391597],[-71.200883108,41.5133346],[-71.200902796,41.513321066],[-71.200950138,41.513288508],[-71.201020785,41.513243112],[-71.201084107,41.513189487],[-71.201147482,41.513144072],[-71.201209088,41.5131062],[-71.201278987,41.513077862],[-71.201360629,41.513043335],[-71.20142412,41.513012305],[-71.201503949,41.512975029],[-71.201578265,41.512932318],[-71.201627101,41.512892445],[-71.201687725,41.512842952],[-71.201740233,41.512805101],[-71.201801838,41.512767251],[-71.201865266,41.512730046],[-71.201930529,41.512690788],[-71.20199575,41.512647435],[-71.202058211,41.512602017],[-71.202111607,41.512562819],[-71.202168654,41.512523585],[-71.202222041,41.512479607],[-71.202277209,41.512432204],[-71.202327786,41.512377264],[-71.202372893,41.512320984],[-71.202420738,41.512264687],[-71.202467621,41.512205667],[-71.202503606,41.512148082],[-71.202537708,41.512082991],[-71.202558196,41.512020655],[-71.20256871,41.511963805],[-71.20258013,41.511908352],[-71.202587337,41.511895998],[-71.20265082,41.51186634],[-71.202724461,41.511857817],[-71.202815441,41.511849956],[-71.202906388,41.511842736],[-71.202988258,41.511837618],[-71.203058253,41.511827736],[-71.203054488,41.511812701],[-71.202984332,41.511797952],[-71.202907896,41.511798944],[-71.202826041,41.511807469],[-71.202737802,41.511814696],[-71.202658712,41.511823891],[-71.2026159,41.511817903],[-71.202585456,41.511761953],[-71.202565019,41.511706624],[-71.202565499,41.511641629],[-71.202587765,41.511576576],[-71.202588157,41.511504079],[-71.202584117,41.511449387],[-71.20258097,41.511392593],[-71.202576026,41.511335863],[-71.202572836,41.511274998],[-71.20257238,41.511208628],[-71.202574616,41.511138835],[-71.202577717,41.5110663],[-71.202584472,41.510993088],[-71.202593067,41.510923288],[-71.202600788,41.510858312],[-71.202605792,41.510795341],[-71.202608082,41.510733781],[-71.202611309,41.51067355],[-71.202616367,41.510618813],[-71.202631268,41.510540751],[-71.202644367,41.510464079],[-71.202654898,41.510409996],[-71.2026762,41.510336067],[-71.202699363,41.510267586],[-71.202725354,41.510212719],[-71.202778677,41.510155728],[-71.202843924,41.510119213],[-71.202906499,41.510088203],[-71.202939997,41.51006821],[-71.202921479,41.510025853],[-71.20284217,41.510003624],[-71.202810818,41.509946963],[-71.202795786,41.509880693],[-71.202786144,41.509806844],[-71.202785561,41.509728216],[-71.202785125,41.509663882],[-71.202784733,41.509609862],[-71.202785179,41.509545553],[-71.202804721,41.509477086],[-71.202824215,41.50940585],[-71.202845471,41.509328445],[-71.202870414,41.509249723],[-71.20288913,41.509195615],[-71.202908749,41.509143522],[-71.202934608,41.50906407],[-71.202951522,41.50901133],[-71.202980112,41.508940073],[-71.20299065,41.508884618],[-71.203016523,41.508815412],[-71.203048785,41.508746222],[-71.20308925,41.508679707],[-71.203136119,41.508616569],[-71.203184842,41.508560275],[-71.203228958,41.508493746],[-71.2032676,41.50842654],[-71.203447484,41.508130312],[-71.203490677,41.508065839],[-71.203532966,41.507999328],[-71.203572628,41.507948545],[-71.203616877,41.507899145],[-71.203659256,41.507846265],[-71.203699813,41.50779274],[-71.203738574,41.507739232],[-71.203779133,41.507685021],[-71.203824244,41.507633565],[-71.203865755,41.507584136],[-71.203897262,41.507533377],[-71.203941334,41.507462777],[-71.203985487,41.507401005],[-71.204025109,41.507345418],[-71.204066596,41.50729464],[-71.204109944,41.507249332],[-71.204152364,41.507200591],[-71.204243548,41.507099649],[-71.204284905,41.507030391],[-71.20431534,41.506961173],[-71.204349434,41.506896745],[-71.204394457,41.506830903],[-71.204445851,41.506762289],[-71.204481936,41.506714972],[-71.204518879,41.50666624],[-71.204554922,41.506614783],[-71.204590937,41.506562618],[-71.204619678,41.506511235],[-71.204645666,41.506456391],[-71.204672563,41.506402258],[-71.204699466,41.506346753],[-71.204725409,41.506288502],[-71.204748646,41.506229557],[-71.204770977,41.506169283],[-71.204792362,41.506109671],[-71.204813819,41.506054175],[-71.204834379,41.506002107],[-71.204861111,41.505924006],[-71.204878911,41.505869896],[-71.204911158,41.505796589],[-71.204950742,41.505735537],[-71.204978513,41.505676581],[-71.204978906,41.505603421],[-71.204978491,41.50554732],[-71.204978043,41.50548509],[-71.204984873,41.505421437],[-71.204998992,41.505360479],[-71.205019488,41.505302259],[-71.205042758,41.505249512],[-71.205067874,41.50519876],[-71.205092991,41.505148053],[-71.205118974,41.505093918],[-71.205144946,41.505035666],[-71.205169096,41.504976747],[-71.205189555,41.504913038],[-71.205207258,41.5048466],[-71.205223161,41.504774738],[-71.205241744,41.504702151],[-71.205267592,41.504630932],[-71.205298045,41.504563749],[-71.205326695,41.504498643],[-71.205354428,41.504434244],[-71.205383077,41.504369138],[-71.205410829,41.504307438],[-71.205439553,41.5042526],[-71.205474558,41.504181313],[-71.205490631,41.504138885],[-71.205513879,41.504084034],[-71.205531627,41.504021027],[-71.205553794,41.50394296],[-71.205569774,41.503887472],[-71.205583,41.503828593],[-71.205589132,41.503798078],[-71.205594392,41.503771791],[-71.205606685,41.503710828],[-71.205623541,41.503649923],[-71.205636744,41.503589649],[-71.205648194,41.50353351],[-71.20565855,41.503456853],[-71.205662722,41.503402113],[-71.205663174,41.503342607],[-71.205662726,41.503280377],[-71.205662256,41.503216088],[-71.205661769,41.503149055],[-71.205661318,41.503087465],[-71.205663617,41.503023161],[-71.205669485,41.502956785],[-71.205671732,41.502890422],[-71.205671287,41.502827528],[-71.205670829,41.502767311],[-71.205670402,41.502707116],[-71.205669987,41.502651038],[-71.205672322,41.502592177],[-71.205677352,41.50253609],[-71.205684262,41.502481357],[-71.205691142,41.502426578],[-71.205701639,41.502372517],[-71.2057158,41.502315676],[-71.205729023,41.50225746],[-71.205739493,41.502195852],[-71.205745421,41.502136314],[-71.20575137,41.502078835],[-71.205759196,41.502023395],[-71.205774109,41.5019481],[-71.205783724,41.501894014],[-71.205794223,41.501839267],[-71.20580838,41.501783112],[-71.205828919,41.5017283],[-71.205851272,41.501676236],[-71.205884443,41.501606316],[-71.205917663,41.501545956],[-71.205965472,41.501488332],[-71.205984005,41.501406184],[-71.205993545,41.50134183],[-71.206027616,41.501274657],[-71.206060881,41.501217727],[-71.206116006,41.50116346],[-71.206159349,41.501118128],[-71.20615618,41.501058658],[-71.206156598,41.500993],[-71.206190847,41.500947004],[-71.206243243,41.500897556],[-71.206266613,41.500855718],[-71.206234481,41.500816895],[-71.206220404,41.500754675],[-71.206221813,41.500698579],[-71.206221394,41.500643187],[-71.206220352,41.500624705],[-71.206309772,41.500285361],[-71.206313988,41.500227511],[-71.206314205,41.500165968],[-71.206313428,41.500102273],[-71.206309728,41.50003928],[-71.206291336,41.499969114],[-71.206281733,41.499899611],[-71.206272195,41.499835962],[-71.206247172,41.499779021],[-71.206206473,41.499717762],[-71.206160885,41.499654342],[-71.206119225,41.4995902],[-71.206083366,41.499528176],[-71.206052479,41.499469802],[-71.20601197,41.499420299],[-71.20595109,41.499381905],[-71.205873796,41.499353829],[-71.205777003,41.499325932],[-71.205675274,41.499292945],[-71.205605772,41.499264133],[-71.205535297,41.49923532],[-71.205464856,41.499212361],[-71.205394469,41.499190912],[-71.205325026,41.499169373],[-71.20525561,41.499148613],[-71.205187143,41.499126368],[-71.205116804,41.4991078],[-71.205042626,41.499097318],[-71.204963658,41.49908982],[-71.204878789,41.49908233],[-71.204789063,41.4990727],[-71.204698308,41.499061627],[-71.204608599,41.499054901],[-71.204527675,41.49904957],[-71.204454568,41.499044214],[-71.204170794,41.499020523],[-71.203687221,41.498909571],[-71.203597145,41.498869911],[-71.202973251,41.498671323],[-71.202876328,41.4986324],[-71.202370286,41.498433701],[-71.202262635,41.498392691],[-71.201846505,41.498216841],[-71.201561109,41.498056903],[-71.201488402,41.498004685],[-71.201431356,41.497960398],[-71.201375354,41.497920482],[-71.201313511,41.497880642],[-71.201242816,41.497834238],[-71.201164289,41.497784223],[-71.201082858,41.497737197],[-71.201002426,41.497691591],[-71.200974789,41.497675007],[-71.200928831,41.497647421],[-71.200855259,41.497604714],[-71.200777754,41.497557629],[-71.200702094,41.497506135],[-71.200629412,41.497455381],[-71.200610857,41.497441885],[-71.20055962,41.497404611],[-71.200490927,41.497359652],[-71.200427131,41.497321293],[-71.20037113,41.497281377],[-71.200317959,41.497234858],[-71.200267687,41.497186151],[-71.200220359,41.497138847],[-71.200176006,41.497092992],[-71.200115926,41.497040714],[-71.200078465,41.497004322],[-71.200017553,41.496960779],[-71.200000028,41.49694182],[-71.199711604,41.496629647],[-71.199656328,41.496571413],[-71.199591175,41.496497876],[-71.199405927,41.496161501],[-71.19937116,41.496101697],[-71.199335208,41.496028716],[-71.199227481,41.495735768],[-71.199199428,41.495671499],[-71.199186085,41.495616667],[-71.199199365,41.495586536],[-71.199251593,41.495553969],[-71.19925374,41.495490945],[-71.199259831,41.49543015],[-71.199258977,41.495358359],[-71.199258321,41.495302692],[-71.199258548,41.495240463],[-71.199257735,41.495173086],[-71.199256921,41.495105709],[-71.199262039,41.495044888],[-71.199272906,41.494977427],[-71.199277118,41.49492175],[-71.199284155,41.49486018],[-71.19929122,41.494799341],[-71.199291495,41.494740017],[-71.199290657,41.494671199],[-71.199290087,41.494623331],[-71.19928987,41.494604531],[-71.19928912,41.494543032],[-71.19928831,41.494474923],[-71.199303027,41.49440379],[-71.199330695,41.494353778],[-71.19937478,41.494292693],[-71.199412,41.494229463],[-71.199443558,41.494180169],[-71.199490694,41.494130093],[-71.19954869,41.494093058],[-71.199520725,41.494036107],[-71.199463707,41.493993306],[-71.19944062,41.493966899],[-71.19942422,41.493948149],[-71.199403046,41.493889729],[-71.199386762,41.493832695],[-71.199384509,41.493826468],[-71.199367659,41.493780113],[-71.199349412,41.493720146],[-71.199338837,41.493652103],[-71.199317467,41.493576828],[-71.199300122,41.493512472],[-71.199287739,41.493453984],[-71.199263719,41.493399262],[-71.199229877,41.493337219],[-71.199232044,41.493276436],[-71.199201187,41.493220232],[-71.199139211,41.493170877],[-71.199068391,41.493113471],[-71.199006315,41.493053092],[-71.198956869,41.492991191],[-71.198928753,41.492921067],[-71.198920085,41.492848638],[-71.198944765,41.492793517],[-71.198980748,41.492708306],[-71.198970295,41.492646873],[-71.198970361,41.492573621],[-71.19897725,41.492498168],[-71.198989979,41.492422662],[-71.19901255,41.492356558],[-71.199036257,41.49230148],[-71.199067727,41.492244868],[-71.199107359,41.492218946],[-71.199125326,41.492174922],[-71.199099363,41.492119418],[-71.199057857,41.492070619],[-71.19900343,41.492000677],[-71.198959027,41.49195338],[-71.198908848,41.491911992],[-71.198853803,41.49187059],[-71.198803522,41.491838029],[-71.198797851,41.491834355],[-71.198705821,41.491792536],[-71.19863243,41.491765197],[-71.198552155,41.491733495],[-71.198473769,41.491694479],[-71.198402109,41.491648094],[-71.198333393,41.49160318],[-71.19826076,41.491556769],[-71.198185179,41.491509687],[-71.198113476,41.491459666],[-71.198044585,41.491400069],[-71.197973683,41.491334612],[-71.197897885,41.491269233],[-71.197820163,41.49120529],[-71.197753155,41.491139821],[-71.197696801,41.491072823],[-71.197644451,41.491008032],[-71.197592013,41.490942441],[-71.197537704,41.490880549],[-71.197487307,41.49082084],[-71.197433042,41.490762631],[-71.197373027,41.490711015],[-71.197309135,41.490662386],[-71.197239485,41.490622569],[-71.197161161,41.490590184],[-71.197078022,41.490559983],[-71.196987039,41.490529075],[-71.196890256,41.490496047],[-71.196792442,41.490462262],[-71.196696485,41.490421941],[-71.196606327,41.490377106],[-71.196519194,41.490335962],[-71.196432044,41.490298477],[-71.196341998,41.490262448],[-71.196247041,41.490222815],[-71.196154933,41.490178776],[-71.196070607,41.490129543],[-71.195988176,41.490078096],[-71.195906695,41.490025188],[-71.195829044,41.48996639],[-71.195758183,41.489906077],[-71.1956903,41.489846482],[-71.195626185,41.489781018],[-71.195567891,41.489713306],[-71.19551257,41.489646997],[-71.195469896,41.489582139],[-71.19543801,41.489519345],[-71.19541288,41.489455791],[-71.195382887,41.489391539],[-71.195346097,41.489330264],[-71.195313339,41.489278491],[-71.1953019,41.489214128],[-71.195281617,41.489148346],[-71.19525742,41.489080381],[-71.195231149,41.489000769],[-71.19520797,41.488936466],[-71.19518962,41.48886703],[-71.195176137,41.488797538],[-71.195160748,41.488732455],[-71.195142462,41.488668874],[-71.195125075,41.488601613],[-71.195098053,41.488539541],[-71.195058432,41.4884856],[-71.195010104,41.488433214],[-71.19495489,41.48837715],[-71.194892882,41.488323378],[-71.194821208,41.488274795],[-71.194741694,41.488224819],[-71.19465928,41.488170422],[-71.194577749,41.488116049],[-71.194504062,41.48806236],[-71.194433312,41.488011561],[-71.194357776,41.487963036],[-71.194275322,41.487910857],[-71.194191902,41.487857233],[-71.194105533,41.487803579],[-71.194041027,41.48776382],[-71.194022133,41.487752175],[-71.193936861,41.487704378],[-71.193847662,41.487657395],[-71.193753574,41.487608957],[-71.193658485,41.487559762],[-71.193564353,41.487507665],[-71.193469238,41.487451197],[-71.193377009,41.487395446],[-71.19328768,41.487337438],[-71.193199305,41.487277237],[-71.19311184,41.487211184],[-71.193027298,41.487144361],[-71.192944716,41.487081225],[-71.192857224,41.487014417],[-71.192763926,41.486946953],[-71.192668605,41.486876556],[-71.192575267,41.486811265],[-71.192481087,41.486750362],[-71.19238689,41.486693141],[-71.192298493,41.486631498],[-71.192208082,41.486564728],[-71.19211777,41.48650308],[-71.19202937,41.486442146],[-71.1919469,41.486387769],[-71.191875183,41.48633628],[-71.191809408,41.486289106],[-71.191744588,41.486245571],[-71.191674933,41.486202091],[-71.191598393,41.486154316],[-71.191525744,41.48610717],[-71.191461882,41.486060709],[-71.191407779,41.486014939],[-71.191337947,41.485957553],[-71.191319854,41.485944034],[-71.191259332,41.485898772],[-71.191198366,41.485850833],[-71.191133487,41.485800734],[-71.191065696,41.485749209],[-71.190998894,41.485700568],[-71.190941869,41.485655544],[-71.190889726,41.485613414],[-71.190838588,41.485571287],[-71.190785476,41.485528446],[-71.190727464,41.485479737],[-71.190667362,41.485423018],[-71.190607287,41.485367031],[-71.190552102,41.485312498],[-71.190382777,41.485078517],[-71.190169043,41.484711587],[-71.189987855,41.484299736],[-71.189868152,41.483814249],[-71.189855815,41.48376086],[-71.18983854,41.483697258],[-71.189819137,41.483620477],[-71.189811604,41.483561223],[-71.189807947,41.483499007],[-71.189805263,41.483436747],[-71.189804542,41.483377444],[-71.189804892,41.48332322],[-71.189812767,41.483247038],[-71.189831432,41.483178776],[-71.189853986,41.483111256],[-71.189879557,41.483048821],[-71.18991098,41.482990015],[-71.18993761,41.482934925],[-71.189949096,41.482918009],[-71.189980652,41.48286945],[-71.190012125,41.482812863],[-71.190047578,41.482763536],[-71.190100556,41.482712656],[-71.190153487,41.482658825],[-71.190199709,41.482615337],[-71.190277128,41.482573053],[-71.190334165,41.482538261],[-71.190400012,41.482505574],[-71.19047658,41.482475797],[-71.190550216,41.482442331],[-71.190619916,41.48240524],[-71.190685739,41.482371135],[-71.190747705,41.48234212],[-71.190811518,41.482302154],[-71.190861655,41.482260094],[-71.190909803,41.482214323],[-71.190923867,41.482166631],[-71.190935861,41.482113079],[-71.190947734,41.482046399],[-71.190948859,41.481976054],[-71.190933319,41.481899261],[-71.19090232,41.481830613],[-71.190861696,41.481771568],[-71.19068717,41.481424138],[-71.190617139,41.481352092],[-71.190554053,41.481207498],[-71.190472738,41.481001541],[-71.190452426,41.480930635],[-71.190431157,41.480862654],[-71.190407949,41.480793226],[-71.190384654,41.480716503],[-71.190364528,41.480663894],[-71.190342487,41.480611325],[-71.190308503,41.480537569],[-71.19027166,41.480470438],[-71.190231994,41.480408445],[-71.190186439,41.480344286],[-71.19014177,41.480272857],[-71.190112933,41.48022322],[-71.190083073,41.480171408],[-71.190048353,41.48011821],[-71.190010701,41.480061368],[-71.189979811,41.480002235],[-71.189955737,41.479942342],[-71.189933539,41.479878017],[-71.189909391,41.479814465],[-71.189883324,41.479751685],[-71.189852405,41.479685942],[-71.189818462,41.479616623],[-71.189783456,41.479540669],[-71.18974843,41.479462519],[-71.189715444,41.479390275],[-71.189696383,41.479356879],[-71.189679676,41.479327492],[-71.189645906,41.47927281],[-71.189613174,41.47922394],[-71.189582418,41.479175098],[-71.189550619,41.479121839],[-71.189515897,41.47906935],[-71.189480259,41.479017591],[-71.189434609,41.478948309],[-71.18939881,41.478885571],[-71.189372984,41.478842528],[-71.189371641,41.478729021],[-71.189370864,41.478662398],[-71.189370017,41.478591339],[-71.189387021,41.478545851],[-71.189436294,41.478512525],[-71.189493265,41.478471856],[-71.189500396,41.478417627],[-71.189549345,41.478356536],[-71.189567122,41.478295613],[-71.189587865,41.478237625],[-71.189669928,41.478177035],[-71.18973382,41.47814512],[-71.189743509,41.478141373],[-71.189815297,41.478118194],[-71.189868682,41.478102466],[-71.189887885,41.478080356],[-71.189876463,41.47802036],[-71.189880525,41.477952951],[-71.189932742,41.477837643],[-71.190014725,41.477851015],[-71.190049906,41.477864694],[-71.190137445,41.47785457],[-71.190102737,41.477799154],[-71.190055423,41.477753332],[-71.190054102,41.477641265],[-71.190064973,41.477574537],[-71.190076759,41.477500516],[-71.190091533,41.477431557],[-71.190111212,41.477366979],[-71.190152323,41.477303717],[-71.190215035,41.477251331],[-71.190324729,41.477224937],[-71.190402535,41.4772149],[-71.190464393,41.477175662],[-71.190504512,41.477110201],[-71.19054027,41.477002305],[-71.190553952,41.47692607],[-71.190553041,41.476849156],[-71.1905512,41.476775921],[-71.190550415,41.476710763],[-71.190549724,41.476651436],[-71.19054936,41.476619257],[-71.190557384,41.47655618],[-71.190583011,41.476500377],[-71.190592891,41.476430696],[-71.19059213,41.476366978],[-71.190582497,41.4762953],[-71.190576786,41.476223542],[-71.190576008,41.476156919],[-71.190581133,41.476096099],[-71.190601918,41.47604177],[-71.190626488,41.475977868],[-71.1906618,41.475919073],[-71.190700141,41.475868999],[-71.190744288,41.475813041],[-71.190797193,41.475757014],[-71.190846348,41.475715683],[-71.190908082,41.475664002],[-71.190977696,41.475623961],[-71.191050288,41.475584682],[-71.191109154,41.475541044],[-71.191169974,41.475495994],[-71.191243642,41.475466918],[-71.191305625,41.475439411],[-71.191305541,41.475431361],[-71.191402428,41.475347459],[-71.191454991,41.475292826],[-71.19150855,41.475233302],[-71.191558412,41.475164597],[-71.191604541,41.47509451],[-71.191629114,41.475042615],[-71.191650906,41.474987191],[-71.191674529,41.474930399],[-71.191702883,41.474870075],[-71.191729354,41.474809037],[-71.191758633,41.474745926],[-71.191800967,41.474687035],[-71.191846985,41.474633802],[-71.191887411,41.474586181],[-71.191933475,41.474529426],[-71.191953432,41.474463477],[-71.191960256,41.474409408],[-71.191957791,41.474345502],[-71.19194414,41.474280835],[-71.191921116,41.474217537],[-71.19189346,41.474150043],[-71.191868625,41.474077592],[-71.191843812,41.474000294],[-71.191819943,41.47392931],[-71.191808077,41.473873063],[-71.191814948,41.473815495],[-71.191828303,41.473756526],[-71.19183234,41.473700345],[-71.191815834,41.473641296],[-71.191787303,41.473572404],[-71.191757795,41.473497837],[-71.191729239,41.473421215],[-71.191701644,41.473341073],[-71.191673138,41.473253884],[-71.191640967,41.473163896],[-71.19160776,41.473087215],[-71.191578196,41.473024632],[-71.191555116,41.472973296],[-71.191528417,41.472902967],[-71.1915063,41.472847425],[-71.191509387,41.472792637],[-71.19157873,41.472751451],[-71.191616285,41.472712924],[-71.191594174,41.472655987],[-71.191566546,41.47258282],[-71.191551918,41.472518859],[-71.191537378,41.472442983],[-71.191528514,41.472362869],[-71.1915261,41.47228842],[-71.191518936,41.472228001],[-71.19151179,41.47216406],[-71.191516789,41.472103674],[-71.191521481,41.47209527],[-71.191550409,41.472099579],[-71.191630675,41.472108256],[-71.191668135,41.472089374],[-71.191640207,41.472073176],[-71.19156477,41.472033591],[-71.191514572,41.471994097],[-71.191514063,41.471915446],[-71.191524667,41.471852971],[-71.19153713,41.471789791],[-71.191582263,41.471730221],[-71.191616217,41.47166854],[-71.191626795,41.471611668],[-71.191643966,41.471542921],[-71.191670332,41.471497343],[-71.19181126,41.471339048],[-71.19187599,41.471289342],[-71.191926668,41.47124033],[-71.191978301,41.471188508],[-71.192026191,41.471137384],[-71.192073199,41.471079923],[-71.192116506,41.471007724],[-71.192142939,41.470954439],[-71.192175886,41.470906065],[-71.192229431,41.470842287],[-71.192277407,41.470779225],[-71.192326286,41.470718293],[-71.192371451,41.470651702],[-71.19240453,41.470575267],[-71.192424419,41.470523314],[-71.192460333,41.470451781],[-71.192494311,41.470378139],[-71.192532073,41.470301739],[-71.192558511,41.47024699],[-71.192585883,41.47019444],[-71.19260962,41.470119329],[-71.192632295,41.470063198],[-71.192663403,41.470011343],[-71.192682342,41.469960851],[-71.192635953,41.469900282],[-71.19260363,41.469842608],[-71.19259926,41.469782883],[-71.192616326,41.469729573],[-71.192645629,41.469667124],[-71.192661827,41.469604664],[-71.192662156,41.469541475],[-71.192651958,41.469524592],[-71.1926184,41.469522376],[-71.192564269,41.469510979],[-71.192527207,41.469458873],[-71.192517282,41.46939074],[-71.192556801,41.469334654],[-71.192590653,41.469294013],[-71.192545121,41.469245429],[-71.192519355,41.46917723],[-71.192528059,41.46911754],[-71.192556359,41.469067759],[-71.192618208,41.469028611],[-71.192676254,41.468996473],[-71.192755709,41.468976377],[-71.192805246,41.468968802],[-71.192878254,41.468935995],[-71.192938251,41.468889798],[-71.192971212,41.468837948],[-71.192949123,41.468783092],[-71.19289715,41.468720404],[-71.192866581,41.468671152],[-71.192826745,41.468614167],[-71.192745657,41.468587216],[-71.192676695,41.468555402],[-71.192630265,41.468510316],[-71.19258864,41.468439262],[-71.192561825,41.468387206],[-71.192543438,41.468333756],[-71.192530616,41.468280365],[-71.192510478,41.468211473],[-71.192494006,41.468145403],[-71.192500833,41.468090647],[-71.192595466,41.468030523],[-71.192643304,41.467989919],[-71.192663254,41.467924656],[-71.192682275,41.467856622],[-71.192671398,41.467796857],[-71.192656571,41.467749568],[-71.19265025,41.467729402],[-71.192617918,41.467667475],[-71.192616368,41.467609198],[-71.192651188,41.467556599],[-71.192654358,41.467490581],[-71.192615411,41.467438516],[-71.192563413,41.467381454],[-71.192536662,41.4673224],[-71.192505202,41.467268892],[-71.192472779,41.467219634],[-71.192448765,41.467166923],[-71.192449035,41.467161229],[-71.192450869,41.467120549],[-71.192517272,41.46710179],[-71.192598646,41.467073946],[-71.192644662,41.467026316],[-71.192675761,41.466969521],[-71.192647938,41.466937817],[-71.192584506,41.466926396],[-71.192536805,41.466938207],[-71.192465724,41.466962579],[-71.192404129,41.466954661],[-71.192364311,41.466894132],[-71.192335691,41.466831575],[-71.192329474,41.466770449],[-71.192361486,41.466719969],[-71.192414961,41.466676567],[-71.192436639,41.466637998],[-71.192422742,41.466612689],[-71.192354791,41.466573148],[-71.192334444,41.466542196],[-71.192357212,41.466472709],[-71.192368787,41.466403924],[-71.192370934,41.466348447],[-71.192407628,41.46629798],[-71.192360111,41.466277475],[-71.192293789,41.466279379],[-71.192264197,41.466223108],[-71.192241223,41.466162624],[-71.192195734,41.466111914],[-71.192118402,41.466075869],[-71.192061521,41.466061675],[-71.192040885,41.466079161],[-71.192010175,41.466060097],[-71.191974986,41.46600452],[-71.191947299,41.465937688],[-71.191943034,41.46586886],[-71.191942511,41.465792999],[-71.191940926,41.465736094],[-71.191941239,41.465676427],[-71.191945278,41.465619537],[-71.191944749,41.465545116],[-71.191945095,41.465478359],[-71.19193983,41.465415132],[-71.191920543,41.465359598],[-71.191928075,41.465342077],[-71.191921685,41.465317451],[-71.191853635,41.465292661],[-71.191817401,41.465258853],[-71.191816836,41.465192117],[-71.191817122,41.465131718],[-71.1918193,41.465076264],[-71.191826107,41.465032028],[-71.191838531,41.464976579],[-71.191847226,41.464919015],[-71.191857822,41.464857935],[-71.191873076,41.464795495],[-71.191885491,41.464742126],[-71.191899847,41.464676848],[-71.191913203,41.464623551],[-71.191931286,41.464567384],[-71.191950283,41.464504222],[-71.191975768,41.464451644],[-71.19200964,41.464399751],[-71.192028538,41.464376954],[-71.19205664,41.464342999],[-71.192118551,41.464289831],[-71.192172943,41.464245037],[-71.192223615,41.464196025],[-71.192276095,41.464156852],[-71.192449529,41.464026041],[-71.192522579,41.463983401],[-71.192589108,41.463943579],[-71.19264903,41.463912156],[-71.192710824,41.463877215],[-71.192786677,41.463839499],[-71.192844731,41.463804571],[-71.192923331,41.463771116],[-71.192996283,41.46374883],[-71.193064537,41.463730076],[-71.19314405,41.463709224],[-71.193227235,41.463689869],[-71.193312302,41.463671114],[-71.193390798,41.463653096],[-71.193466521,41.463636465],[-71.193546926,41.46361987],[-71.193647843,41.463605388],[-71.193719777,41.46359929],[-71.193816938,41.463588342],[-71.193888891,41.463578013],[-71.193980411,41.463570573],[-71.194079434,41.463564547],[-71.194156446,41.463564797],[-71.194230657,41.463565681],[-71.194305344,41.463568738],[-71.19440893,41.463581683],[-71.194494753,41.463595999],[-71.194573138,41.463608168],[-71.194660806,41.46362457],[-71.194747569,41.463639574],[-71.194818434,41.463653828],[-71.194885564,41.463673697],[-71.194902277,41.463688492],[-71.194903997,41.46371729],[-71.19493641,41.463768674],[-71.194981,41.463816591],[-71.195018949,41.46388059],[-71.195050395,41.463930576],[-71.195093105,41.463977733],[-71.195115185,41.464041027],[-71.195091519,41.464102051],[-71.195060449,41.464153243],[-71.195011694,41.464195926],[-71.194940518,41.464235029],[-71.194879624,41.464272786],[-71.19484203,41.464314813],[-71.194885616,41.464376037],[-71.194892264,41.4643847],[-71.194928286,41.464431656],[-71.194977475,41.464484479],[-71.195026705,41.464535198],[-71.195063714,41.464598509],[-71.195098918,41.464651295],[-71.195135068,41.464703397],[-71.195178684,41.464751975],[-71.195236368,41.464789383],[-71.195317472,41.464818414],[-71.195391222,41.464820736],[-71.195465882,41.464830105],[-71.195543233,41.464855581],[-71.195581396,41.46488029],[-71.195572796,41.464911874],[-71.195557518,41.464973628],[-71.195547938,41.465026273],[-71.195623513,41.465034935],[-71.195673896,41.465040717],[-71.195734303,41.464918659],[-71.195814488,41.464942816],[-71.195792647,41.465010157],[-71.195779149,41.465094397],[-71.195880862,41.465105255],[-71.195909266,41.46503226],[-71.195970735,41.464877958],[-71.196023758,41.464917435],[-71.196089772,41.464968198],[-71.196147478,41.465007687],[-71.196204227,41.465043674],[-71.196219136,41.465054256],[-71.196200145,41.465110398],[-71.196174569,41.465183378],[-71.196148986,41.465257752],[-71.19613189,41.465311749],[-71.196112935,41.465366495],[-71.196093951,41.465421219],[-71.196075915,41.46547455],[-71.196059761,41.465528572],[-71.196043604,41.465583326],[-71.196025601,41.465635972],[-71.196007563,41.465689943],[-71.19598476,41.465767847],[-71.195965753,41.465833822],[-71.195940224,41.465889947],[-71.195906348,41.465943236],[-71.195872427,41.465999292],[-71.195834761,41.46605678],[-71.195785869,41.466121944],[-71.195728549,41.466188505],[-71.195670342,41.46624946],[-71.195613062,41.46631387],[-71.19555108,41.466382522],[-71.195506925,41.466429426],[-71.195465607,41.466474279],[-71.195409256,41.466541528],[-71.195352894,41.466604569],[-71.195304967,41.466664819],[-71.195260786,41.466717372],[-71.19521384,41.466769208],[-71.195214647,41.466791692],[-71.195244456,41.466808649],[-71.195315326,41.466829191],[-71.195347124,41.466817383],[-71.195382884,41.466764785],[-71.195425157,41.466717144],[-71.195468375,41.466662507],[-71.195503213,41.466612034],[-71.195544529,41.466560891],[-71.195586809,41.466511878],[-71.195624443,41.466461412],[-71.195661091,41.466413734],[-71.195702431,41.466363986],[-71.19574285,41.466316363],[-71.195786974,41.466269436],[-71.19583205,41.466220408],[-71.195873377,41.46617345],[-71.1959147,41.466127248],[-71.195957968,41.46606838],[-71.196001226,41.466011617],[-71.196044447,41.465962606],[-71.196082004,41.465915616],[-71.196128121,41.465851839],[-71.196161096,41.465796466],[-71.196182893,41.465731915],[-71.196201956,41.465660359],[-71.196232212,41.465588101],[-71.196264312,41.465517929],[-71.196291767,41.465446373],[-71.196315492,41.465372702],[-71.196342966,41.46529696],[-71.196368596,41.465219041],[-71.196381992,41.46516293],[-71.196397328,41.465082171],[-71.19640511,41.465023919],[-71.196411036,41.464959303],[-71.196416982,41.464890503],[-71.196422922,41.46482941],[-71.196436376,41.464754317],[-71.196449802,41.464691849],[-71.19645854,41.46463074],[-71.196475644,41.464568281],[-71.196550678,41.464503917],[-71.196630167,41.464481691],[-71.196704117,41.464447489],[-71.196731325,41.464422267],[-71.196681311,41.464389499],[-71.19665594,41.464372875],[-71.196629165,41.464311695],[-71.196628582,41.464247772],[-71.196622426,41.464178917],[-71.196609675,41.464116379],[-71.196578216,41.464062231],[-71.196536404,41.464017822],[-71.19650033,41.463955954],[-71.196473569,41.463891939],[-71.196439406,41.463824405],[-71.196402399,41.463760408],[-71.196369062,41.463704815],[-71.196302937,41.463671593],[-71.196244077,41.463677749],[-71.196172163,41.463679618],[-71.19610142,41.463645698],[-71.196055026,41.463586616],[-71.196049793,41.463515636],[-71.196089287,41.46346378],[-71.196152034,41.463426027],[-71.196170098,41.463366384],[-71.196245816,41.463344148],[-71.196296387,41.463322509],[-71.196295763,41.463260713],[-71.196336149,41.463213067],[-71.196333559,41.463175164],[-71.196278649,41.463136346],[-71.196201382,41.463099595],[-71.19613532,41.46305304],[-71.196112283,41.46299258],[-71.196112592,41.46293289],[-71.196117606,41.462868272],[-71.196117918,41.462807873],[-71.196121041,41.462744691],[-71.196135495,41.462663952],[-71.196147931,41.46260498],[-71.196159439,41.462549528],[-71.196178409,41.462491305],[-71.196223512,41.462435941],[-71.19625088,41.462382658],[-71.196226858,41.462331296],[-71.196203024,41.462278861],[-71.196201941,41.462276434],[-71.196192001,41.462217403],[-71.196155828,41.462170286],[-71.195928507,41.461896388],[-71.195915769,41.461831015],[-71.195902689,41.461656824],[-71.195956134,41.461612003],[-71.196011463,41.46156721],[-71.196079704,41.46155058],[-71.196095548,41.461556248],[-71.196125173,41.46160552],[-71.196172648,41.461628127],[-71.19625109,41.461627625],[-71.196324906,41.461621531],[-71.196414726,41.461586662],[-71.196435488,41.461541777],[-71.196397501,41.461486171],[-71.19646862,41.461451962],[-71.196552797,41.461427668],[-71.196580935,41.461398239],[-71.196557915,41.461340569],[-71.196563704,41.461305479],[-71.19654521,41.461268197],[-71.196488427,41.461233628],[-71.196439182,41.461186409],[-71.196447798,41.461151326],[-71.196490818,41.461138106],[-71.196563612,41.461142529],[-71.196585148,41.461127149],[-71.196579827,41.461081486],[-71.19654726,41.461056792],[-71.196489591,41.461016594],[-71.196432779,41.460988314],[-71.196361912,41.460968459],[-71.196302408,41.460917713],[-71.196258861,41.460861383],[-71.196202141,41.460813458],[-71.196135214,41.460757089],[-71.196068288,41.460700698],[-71.196005022,41.460654836],[-71.195946399,41.460617472],[-71.195873734,41.460591985],[-71.195785961,41.460592393],[-71.195693509,41.460592149],[-71.195587302,41.460548964],[-71.195520251,41.460512949],[-71.195443005,41.460472699],[-71.195390971,41.460424076],[-71.195331501,41.460366309],[-71.195277688,41.460301536],[-71.195239765,41.460232596],[-71.195209348,41.460164386],[-71.195186342,41.460097567],[-71.195163373,41.460029376],[-71.195142269,41.459959109],[-71.195128617,41.45988813],[-71.195126133,41.459827677],[-71.195122754,41.459763792],[-71.195094899,41.459732775],[-71.195095992,41.459700486],[-71.195099172,41.459631678],[-71.195064983,41.459564143],[-71.195030759,41.459497318],[-71.195005969,41.459422078],[-71.194983051,41.459343344],[-71.194966516,41.45929063],[-71.194944486,41.459216816],[-71.194920592,41.4591451],[-71.19489204,41.459074791],[-71.194866264,41.459002407],[-71.194842311,41.458943316],[-71.194839831,41.4588822],[-71.194901728,41.458830427],[-71.194879596,41.458772049],[-71.194826588,41.458730445],[-71.194794301,41.458665728],[-71.194795517,41.458607459],[-71.194795827,41.458547746],[-71.194795265,41.458479614],[-71.194784463,41.458403725],[-71.194760562,41.458327116],[-71.194732051,41.458254702],[-71.194699717,41.458187149],[-71.194673019,41.458110532],[-71.19465748,41.458046569],[-71.194649416,41.457983335],[-71.19464973,41.457922913],[-71.194650055,41.457866722],[-71.194649542,41.457788093],[-71.194649921,41.457713629],[-71.194649299,41.457651832],[-71.194645883,41.457589319],[-71.194647173,41.457521879],[-71.194658787,41.457450257],[-71.194688961,41.4573949],[-71.194696693,41.457340833],[-71.194666145,41.457288059],[-71.194639419,41.457224066],[-71.194636056,41.457150347],[-71.194633682,41.45707304],[-71.194634112,41.456994391],[-71.194634491,41.45691995],[-71.194634835,41.456853215],[-71.194637083,41.456782301],[-71.194647764,41.456702261],[-71.194659278,41.456639079],[-71.194671805,41.456573795],[-71.194687032,41.456516271],[-71.194702359,41.456443928],[-71.194711066,41.456382911],[-71.19472823,41.456314095],[-71.194750975,41.456248175],[-71.194765306,41.456187104],[-71.194768387,41.456133024],[-71.194779891,41.456097835],[-71.194757308,41.456109827],[-71.194694501,41.456155264],[-71.194629763,41.456216887],[-71.194567809,41.456281308],[-71.194521813,41.456326811],[-71.194473067,41.456368809],[-71.19439157,41.456419135],[-71.194307343,41.456455435],[-71.194216699,41.456472713],[-71.19419023,41.45647063],[-71.194133676,41.456466134],[-71.194062864,41.456435711],[-71.193979953,41.456405279],[-71.193898675,41.456415561],[-71.193810771,41.456438494],[-71.193721922,41.456468423],[-71.193660165,41.456497052],[-71.193601139,41.456533373],[-71.193555182,41.456576795],[-71.193505337,41.456645456],[-71.193472381,41.456697352],[-71.193441271,41.456757669],[-71.193408246,41.456824293],[-71.19337615,41.456887374],[-71.193346891,41.456948405],[-71.193322307,41.457010844],[-71.19330609,41.457078222],[-71.193290741,41.457148415],[-71.193269862,41.457211572],[-71.193245271,41.457275406],[-71.193216002,41.457338518],[-71.193180146,41.457405843],[-71.193139656,41.457475946],[-71.193101027,41.457544659],[-71.193064273,41.457609147],[-71.193029389,41.457670162],[-71.192993562,41.457731176],[-71.192954024,41.457792842],[-71.192914475,41.457856659],[-71.192874044,41.457914115],[-71.19282707,41.457966636],[-71.192775427,41.458022713],[-71.19271911,41.458083626],[-71.192659014,41.458146655],[-71.192598045,41.458201244],[-71.192535258,41.45824812],[-71.192469657,41.458292175],[-71.192400366,41.45833199],[-71.19233295,41.458367647],[-71.192264612,41.458399002],[-71.192195378,41.458426878],[-71.192126147,41.458454068],[-71.192056913,41.458481968],[-71.191988571,41.458514077],[-71.191927728,41.458548288],[-71.191860328,41.458580423],[-71.191775161,41.458615255],[-71.191688222,41.458638875],[-71.191602249,41.458651269],[-71.191539711,41.45865181],[-71.191477266,41.458632638],[-71.191422393,41.458593863],[-71.191357291,41.458545181],[-71.191284697,41.458499292],[-71.191193394,41.458462523],[-71.191093597,41.458447481],[-71.190999371,41.458437348],[-71.190914383,41.458440596],[-71.190820902,41.458459281],[-71.190728409,41.458474493],[-71.19063959,41.458497353],[-71.190543241,41.458530804],[-71.190475877,41.458555185],[-71.190409466,41.458577442],[-71.190312205,41.458610868],[-71.190243959,41.458635224],[-71.190171011,41.458657486],[-71.19009903,41.458674834],[-71.190027993,41.458685162],[-71.189933629,41.458697532],[-71.189851455,41.4587036],[-71.189791794,41.458680935],[-71.189756477,41.458653464],[-71.18968655,41.458634957],[-71.189641578,41.458662211],[-71.189564972,41.458673942],[-71.189513836,41.45863584],[-71.189492463,41.4586168],[-71.189444889,41.458609651],[-71.189359791,41.458636065],[-71.18927202,41.458636514],[-71.189174895,41.458641168],[-71.189076819,41.458647856],[-71.188982464,41.458658121],[-71.188907763,41.458665603],[-71.188802382,41.458642128],[-71.1887391,41.458601179],[-71.188643897,41.458598086],[-71.188556981,41.458610475],[-71.188465377,41.458630558],[-71.188368199,41.458646419],[-71.188267271,41.458664373],[-71.188169158,41.458685147],[-71.188098989,41.458710915],[-71.188042788,41.458746577],[-71.187990226,41.458796954],[-71.187953512,41.458851651],[-71.187917684,41.458911931],[-71.187890341,41.458965236],[-71.187862937,41.459024852],[-71.187840177,41.459092189],[-71.187793137,41.459157401],[-71.187742483,41.459202889],[-71.187684349,41.45924838],[-71.187622473,41.459294547],[-71.187552227,41.45934275],[-71.187478193,41.459388197],[-71.187406054,41.459437835],[-71.187337628,41.459486797],[-71.187272015,41.459532267],[-71.187207396,41.459573486],[-71.187146455,41.459621051],[-71.187094789,41.459680624],[-71.187052453,41.459740909],[-71.187017543,41.459806108],[-71.186984523,41.459869917],[-71.186951487,41.45993089],[-71.186905412,41.459991165],[-71.186844426,41.460047877],[-71.186774151,41.460095415],[-71.186701143,41.46012959],[-71.186626304,41.460158866],[-71.186550506,41.460185326],[-71.18647667,41.460208292],[-71.186410242,41.460233405],[-71.186346591,41.460262666],[-71.186280132,41.460294091],[-71.186209019,41.460326167],[-71.186138841,41.460353351],[-71.18608178,41.460371422],[-71.186004157,41.4603979],[-71.185919917,41.460434834],[-71.185859052,41.460466251],[-71.185794441,41.460499076],[-71.185725191,41.460529076],[-71.18565504,41.460556969],[-71.185584869,41.460582711],[-71.185510012,41.460609196],[-71.185425849,41.460636319],[-71.185333264,41.460663418],[-71.185234167,41.460685605],[-71.185129466,41.460709836],[-71.185027557,41.460734828],[-71.184928534,41.460754202],[-71.1848304,41.460765826],[-71.184736998,41.460773277],[-71.184648254,41.4607793],[-71.184558595,41.460786076],[-71.184466105,41.460793529],[-71.184375501,41.460800942],[-71.184287693,41.460808409],[-71.184210147,41.460818716],[-71.184110259,41.460821918],[-71.184018821,41.460806893],[-71.183925654,41.460772194],[-71.183860446,41.460746012],[-71.183789618,41.460719105],[-71.183714141,41.460691453],[-71.183632148,41.460665934],[-71.183544474,41.460646001],[-71.183457748,41.460624676],[-71.183372928,41.460599103],[-71.183282481,41.460574269],[-71.183185554,41.460550057],[-71.183086695,41.460529384],[-71.182992488,41.460508725],[-71.182903902,41.460488789],[-71.182819956,41.460471017],[-71.182740724,41.460453188],[-71.182666177,41.460428374],[-71.182600011,41.460399398],[-71.182501193,41.460376599],[-71.182421824,41.46037423],[-71.18232943,41.460368349],[-71.182227737,41.460355398],[-71.182124183,41.460343814],[-71.182018689,41.460337187],[-71.181913212,41.460333351],[-71.181804919,41.460327379],[-71.18169949,41.460313709],[-71.181599729,41.460297241],[-71.181509252,41.460278717],[-71.181425304,41.460261584],[-71.181340413,41.460250805],[-71.181256373,41.460246342],[-71.181181782,41.460230629],[-71.181107253,41.460202292],[-71.181041119,41.460173292],[-71.180975042,41.46013869],[-71.18090522,41.460099137],[-71.180835298,41.460079983],[-71.180748598,41.460053694],[-71.180797397,41.460009621],[-71.180819128,41.459967532],[-71.180847837,41.46000274],[-71.180917666,41.460040875],[-71.180961574,41.460033313],[-71.181011321,41.459987825],[-71.181043085,41.459982996],[-71.181115013,41.459971303],[-71.181044247,41.459944372],[-71.180945266,41.459942656],[-71.180865949,41.459942413],[-71.18081094,41.459926069],[-71.180774684,41.459898593],[-71.180694393,41.459898324],[-71.180647012,41.459851812],[-71.180602517,41.45979337],[-71.180544869,41.459751083],[-71.180472261,41.459715707],[-71.180406058,41.459694437],[-71.180377966,41.459713341],[-71.180374054,41.459748436],[-71.180368079,41.459807424],[-71.180290578,41.459814916],[-71.180223195,41.459842081],[-71.180241473,41.459908867],[-71.180262678,41.459961596],[-71.180310005,41.460013025],[-71.180347131,41.460055255],[-71.180319864,41.460091702],[-71.180251483,41.460130117],[-71.180215667,41.460192544],[-71.180173252,41.460267555],[-71.180120676,41.460319347],[-71.180055979,41.460369023],[-71.17999134,41.460413051],[-71.17993319,41.46045433],[-71.179863842,41.460503971],[-71.179782436,41.460538827],[-71.179755216,41.460565441],[-71.179737881,41.460653168],[-71.179719702,41.460733186],[-71.179701664,41.460790722],[-71.179663913,41.460862955],[-71.179600092,41.460925945],[-71.179542918,41.460966517],[-71.17948291,41.4610085],[-71.179424834,41.46104692],[-71.179334036,41.461087375],[-71.179234904,41.461115869],[-71.179135873,41.461130322],[-71.179055619,41.461122322],[-71.17898665,41.461094708],[-71.178891406,41.461105672],[-71.178785842,41.461113084],[-71.178707418,41.461109983],[-71.17862251,41.461102702],[-71.178536676,41.461091919],[-71.178454547,41.46108181],[-71.17837709,41.461073863],[-71.178303428,41.461060987],[-71.178234438,41.461043939],[-71.178157982,41.461024034],[-71.178087066,41.461015374],[-71.178012368,41.461015119],[-71.17793767,41.461014887],[-71.177831232,41.461014566],[-71.177750029,41.461014293],[-71.177664164,41.461009821],[-71.177572695,41.461001103],[-71.177478471,41.46099025],[-71.177381388,41.460979458],[-71.177289036,41.460965088],[-71.177206027,41.460948686],[-71.177124002,41.460930159],[-71.177040106,41.460908838],[-71.176958979,41.460886838],[-71.176888136,41.460863425],[-71.176799628,41.460828003],[-71.17672144,41.460789819],[-71.176660038,41.460751018],[-71.176606094,41.460710112],[-71.176598733,41.460692527],[-71.176621247,41.460670864],[-71.176690494,41.460642265],[-71.176732721,41.46060586],[-71.17673213,41.460541251],[-71.17672408,41.460478701],[-71.176725356,41.460417596],[-71.176756709,41.460317971],[-71.176763606,41.460257636],[-71.176774112,41.460211285],[-71.176727744,41.460157067],[-71.176676602,41.46011546],[-71.176608629,41.460083639],[-71.176519127,41.460058779],[-71.176417525,41.460033862],[-71.176312154,41.460008958],[-71.17623473,41.459994652],[-71.176149858,41.459980348],[-71.176069623,41.45996887],[-71.175997803,41.459958834],[-71.175906357,41.459945906],[-71.175829876,41.459931625],[-71.17575903,41.459915188],[-71.175688174,41.459894611],[-71.175620161,41.459864894],[-71.175554957,41.459845019],[-71.175536142,41.459862553],[-71.175546156,41.459908916],[-71.175619669,41.459957608],[-71.175705403,41.459988084],[-71.175795795,41.460017155],[-71.17588164,41.460031485],[-71.175954344,41.460047173],[-71.176013912,41.460081783],[-71.176084734,41.460103068],[-71.176146152,41.460144705],[-71.176174753,41.460207289],[-71.17619683,41.460261439],[-71.176209596,41.460316958],[-71.176192537,41.460360477],[-71.176143863,41.460384903],[-71.176105591,41.460384063],[-71.176038602,41.460343806],[-71.175985647,41.460293777],[-71.175942053,41.460244484],[-71.175896622,41.460185351],[-71.175826813,41.460143691],[-71.175745869,41.460097768],[-71.175665804,41.460058206],[-71.175582909,41.460019299],[-71.175502876,41.459973425],[-71.175440589,41.459923346],[-71.175391408,41.459872619],[-71.175336561,41.459830315],[-71.175267588,41.459804117],[-71.175255399,41.45981602],[-71.175256034,41.459871505],[-71.175278087,41.459936198],[-71.17532733,41.459980591],[-71.175344734,41.460032578],[-71.175367744,41.460094461],[-71.175410426,41.460143775],[-71.175454938,41.460197988],[-71.175500368,41.460257144],[-71.175537432,41.460305024],[-71.175578421,41.460321995],[-71.175619505,41.460320007],[-71.175661429,41.460338398],[-71.175718993,41.460396879],[-71.175770974,41.46045324],[-71.17581826,41.460506043],[-71.175874992,41.460548376],[-71.175942082,41.460574568],[-71.175982267,41.46056981],[-71.176025868,41.460617708],[-71.176031193,41.460671765],[-71.176013987,41.460744787],[-71.175987493,41.460808611],[-71.175982481,41.460862662],[-71.17603366,41.460890913],[-71.176024173,41.460921807],[-71.175979913,41.460987708],[-71.175907719,41.461046441],[-71.175853346,41.461085602],[-71.175802717,41.461124064],[-71.175748348,41.461162538],[-71.175685616,41.461195363],[-71.17561074,41.461224608],[-71.175525651,41.461247513],[-71.175437771,41.461269014],[-71.175346184,41.461284193],[-71.175252805,41.461286697],[-71.175160403,41.461282228],[-71.175078316,41.461270012],[-71.175007413,41.461258514],[-71.174917788,41.461258238],[-71.174848564,41.461281919],[-71.174783884,41.461327362],[-71.174701402,41.461381879],[-71.174641438,41.461420337],[-71.174579606,41.461461557],[-71.174519615,41.461499283],[-71.174456868,41.461534943],[-71.17439131,41.46157334],[-71.174328529,41.461609708],[-71.174239625,41.461647307],[-71.174145191,41.461672288],[-71.174038797,41.461662861],[-71.173965216,41.461633813],[-71.17389255,41.461604082],[-71.173823617,41.461575779],[-71.173742659,41.461526379],[-71.173694337,41.461486174],[-71.173619944,41.461431143],[-71.173554862,41.461386705],[-71.173489753,41.461341557],[-71.173444118,41.461317506],[-71.173431237,41.461285177],[-71.173425943,41.461225448],[-71.173375767,41.46118526],[-71.173322834,41.461137334],[-71.173275498,41.461088715],[-71.173215972,41.46104571],[-71.173144271,41.46101175],[-71.173058479,41.460986875],[-71.172947469,41.460976703],[-71.172880448,41.460937153],[-71.172821866,41.460894128],[-71.172749258,41.460853167],[-71.172708441,41.460808088],[-71.172702281,41.460739254],[-71.172683993,41.460675966],[-71.172624511,41.460624522],[-71.172558405,41.460590578],[-71.172504468,41.460548961],[-71.172485794,41.460550303],[-71.172485428,41.46061706],[-71.172496222,41.460689406],[-71.172507045,41.46076182],[-71.17253195,41.46081527],[-71.172567099,41.460868749],[-71.172568903,41.4608849],[-71.172516398,41.460921251],[-71.172438719,41.460957531],[-71.172348061,41.460969165],[-71.172239734,41.460975855],[-71.17215566,41.460984031],[-71.172070623,41.46099639],[-71.171990271,41.461008077],[-71.171917385,41.461016285],[-71.171845504,41.461018138],[-71.171767067,41.461017892],[-71.171686775,41.461017663],[-71.171600876,41.461013872],[-71.171510378,41.461005861],[-71.171424556,41.460992946],[-71.171346234,41.460975844],[-71.171269778,41.460956644],[-71.171192404,41.460932477],[-71.17112062,41.460909082],[-71.171045156,41.46088005],[-71.171006288,41.460828664],[-71.171006408,41.460804788],[-71.1709871,41.460751331],[-71.170965781,41.460722454],[-71.170962275,41.460682421],[-71.170884965,41.460645654],[-71.170793511,41.460640452],[-71.170701082,41.460641583],[-71.170617097,41.460632171],[-71.170528425,41.460629813],[-71.170445334,41.460630193],[-71.170397794,41.460610388],[-71.170371803,41.460585728],[-71.170323534,41.460535688],[-71.170291919,41.460511012],[-71.170263855,41.460523578],[-71.170248713,41.460560036],[-71.170298804,41.460616394],[-71.170289259,41.460652181],[-71.170233021,41.460692774],[-71.1701497,41.460732512],[-71.170081404,41.460758983],[-71.170003743,41.460785427],[-71.16991957,41.46081327],[-71.169840021,41.460840394],[-71.169760551,41.460864019],[-71.169676379,41.46088555],[-71.16958762,41.46090629],[-71.169501593,41.460927792],[-71.169422096,41.460950731],[-71.16934536,41.460980676],[-71.169271403,41.461014151],[-71.169196527,41.461049042],[-71.169119766,41.461083926],[-71.169039258,41.46112015],[-71.168957807,41.461156439],[-71.168881992,41.461190594],[-71.168820191,41.461224836],[-71.168749843,41.461277967],[-71.168703813,41.461331899],[-71.1686689,41.461393593],[-71.168648917,41.461460957],[-71.168646645,41.461531161],[-71.168648186,41.461586671],[-71.168657185,41.461646388],[-71.168669921,41.461706848],[-71.168680805,41.461766593],[-71.168694504,41.461822801],[-71.168720325,41.461874882],[-71.168757382,41.461923451],[-71.168792577,41.461973409],[-71.16882406,41.462024088],[-71.168858285,41.462079692],[-71.168892533,41.462136714],[-71.168925795,41.462190189],[-71.168962872,41.462240861],[-71.169024157,41.462302169],[-71.169096652,41.462359279],[-71.169143074,41.462407897],[-71.169187621,41.462454405],[-71.169232158,41.462502995],[-71.169272022,41.462555825],[-71.169307201,41.462609282],[-71.169335814,41.462668392],[-71.169352259,41.462728816],[-71.169364977,41.462792775],[-71.169379532,41.462860238],[-71.169401563,41.462928454],[-71.169424509,41.462995941],[-71.169443798,41.463059209],[-71.169457419,41.463118962],[-71.169462651,41.463184294],[-71.169469706,41.463255966],[-71.169487096,41.463322042],[-71.169510098,41.463384612],[-71.169534986,41.463440875],[-71.169561758,41.463491541],[-71.169608986,41.463561224],[-71.169644119,41.463623852],[-71.169674586,41.463689256],[-71.169723692,41.463748402],[-71.169782221,41.463801995],[-71.169835033,41.463873775],[-71.169867415,41.46392727],[-71.169895136,41.463982832],[-71.169917206,41.464043318],[-71.169931749,41.464107282],[-71.169940778,41.464161418],[-71.169942412,41.464204945],[-71.169942108,41.464259055],[-71.169931305,41.464314781],[-71.169919066,41.464372035],[-71.169917791,41.4644317],[-71.169906026,41.464527194],[-71.169928972,41.464601016],[-71.169945343,41.464676214],[-71.169945058,41.464732405],[-71.169943776,41.46479351],[-71.169931267,41.464855955],[-71.16991133,41.464914217],[-71.169885831,41.464966081],[-71.169884499,41.465037021],[-71.169868157,41.465117774],[-71.169847316,41.465174592],[-71.169826419,41.465236304],[-71.169807407,41.465298044],[-71.169785613,41.465350651],[-71.169763742,41.465418741],[-71.169768892,41.465500196],[-71.169798337,41.465575455],[-71.169821383,41.465629609],[-71.169841617,41.465686567],[-71.169859945,41.465747729],[-71.169875413,41.465815217],[-71.169888093,41.465886882],[-71.169891388,41.465962752],[-71.169894709,41.46603933],[-71.169905472,41.466117325],[-71.169908777,41.466191068],[-71.169908306,41.466271821],[-71.169905087,41.466349067],[-71.16989349,41.466423475],[-71.169878141,41.466494351],[-71.169858134,41.46656032],[-71.169844702,41.466624889],[-71.169850902,41.46668533],[-71.169876695,41.466749303],[-71.169907116,41.466818275],[-71.169941251,41.466892106],[-71.169980035,41.466966682],[-71.170020715,41.467039159],[-71.170055954,41.46709918],[-71.170063249,41.467111597],[-71.17010301,41.467185489],[-71.170138076,41.467255847],[-71.170168511,41.46732196],[-71.170191511,41.467385262],[-71.170213562,41.46744991],[-71.170229966,41.467518819],[-71.170241674,41.467590481],[-71.170254362,41.467660751],[-71.17025864,41.467686653],[-71.170266104,41.467731728],[-71.170264729,41.467811106],[-71.170254016,41.467891121],[-71.170241487,41.467963423],[-71.170233623,41.468027322],[-71.170235148,41.468086331],[-71.170244191,41.468143944],[-71.170250399,41.468202943],[-71.170250046,41.468260552],[-71.170247848,41.468322318],[-71.170234401,41.468389723],[-71.170214345,41.468465503],[-71.170192451,41.468537778],[-71.170165032,41.46860233],[-71.170130149,41.46865769],[-71.170095307,41.468710946],[-71.170069807,41.468762833],[-71.170033895,41.46884138],[-71.169999933,41.468900997],[-71.169970639,41.468963394],[-71.169955339,41.469024459],[-71.169954078,41.469081356],[-71.169953737,41.469142463],[-71.169950607,41.469202122],[-71.169942776,41.469265313],[-71.16992839,41.469331983],[-71.169902808,41.469400063],[-71.169869715,41.469468052],[-71.169832923,41.469533995],[-71.169799871,41.469599857],[-71.169771538,41.469658781],[-71.16974692,41.469716297],[-71.169721409,41.469770311],[-71.169692172,41.469821479],[-71.169644138,41.469891598],[-71.169594384,41.469941243],[-71.169532417,41.470000756],[-71.169468566,41.470065889],[-71.169411237,41.470128206],[-71.169372659,41.470174452],[-71.169352012,41.47019262],[-71.169302278,41.470238103],[-71.169234802,41.470280768],[-71.16916642,41.470321966],[-71.169095066,41.470385659],[-71.169047176,41.470433274],[-71.168991847,41.470478718],[-71.168928044,41.470528391],[-71.16886051,41.470582262],[-71.168793914,41.470636844],[-71.168726394,41.470687901],[-71.168661686,41.47073613],[-71.16859976,41.470787204],[-71.168534101,41.470836871],[-71.168459115,41.470885094],[-71.168372971,41.470926949],[-71.168284033,41.470968111],[-71.168196038,41.471009252],[-71.168115485,41.471051878],[-71.168030228,41.471098607],[-71.167938471,41.471143968],[-71.16784203,41.471189338],[-71.167743694,41.471236784],[-71.167642546,41.471286988],[-71.167545158,41.4713394],[-71.167449579,41.47139456],[-71.167354027,41.47145043],[-71.167256611,41.471502086],[-71.167161061,41.471551643],[-71.167070218,41.471596297],[-71.16697847,41.471639576],[-71.166885798,41.471679308],[-71.1667894,41.471716215],[-71.16669211,41.471748912],[-71.166593904,41.471776712],[-71.166492929,41.471798809],[-71.166391046,41.471813973],[-71.166292007,41.471826265],[-71.16619294,41.471837915],[-71.166092004,41.471852351],[-71.165990149,41.471868133],[-71.16588827,41.471882565],[-71.165787348,41.471894187],[-71.165689249,41.471900878],[-71.165594935,41.471904812],[-71.16550432,41.471910837],[-71.165409965,41.471916829],[-71.165308136,41.47192145],[-71.165206342,41.471925339],[-71.165111983,41.47193204],[-71.165022276,41.471938754],[-71.164935405,41.471944081],[-71.164849463,41.471945912],[-71.164603892,41.471945814],[-71.164382507,41.471954934],[-71.164203089,41.471981054],[-71.164112378,41.471999725],[-71.163910389,41.472051027],[-71.163722413,41.472103102],[-71.163539166,41.472140439],[-71.163348452,41.472174918],[-71.163188685,41.47218776],[-71.1630075,41.47219066],[-71.162976594,41.472204612],[-71.162940515,41.472313368],[-71.162883502,41.472483148],[-71.162837925,41.472611521],[-71.162785715,41.472758148],[-71.162732577,41.472907608],[-71.162676708,41.473044344],[-71.162646258,41.473140469],[-71.162606716,41.473189501],[-71.162562534,41.473242041],[-71.162528388,41.473335342],[-71.162465609,41.473373785],[-71.162438851,41.473479023],[-71.162393481,41.473573],[-71.162374495,41.473627718],[-71.162317322,41.473664028],[-71.162186911,41.473901996],[-71.162120508,41.473970503],[-71.162086962,41.47401834],[-71.162025067,41.474056122],[-71.161975959,41.474102564],[-71.161944504,41.474163535],[-71.161888538,41.474207121],[-71.161855114,41.474266645],[-71.161812855,41.474317452],[-71.161744175,41.474355969],[-71.161692983,41.474393691],[-71.161632996,41.474427019],[-71.161599556,41.474483616],[-71.161544627,41.474538159],[-71.161480857,41.474579595],[-71.161423887,41.474623178],[-71.161370863,41.47466819],[-71.161322754,41.474721221],[-71.161284346,41.474768358],[-71.161233412,41.474826526],[-71.161195999,41.474875106],[-71.161144849,41.474916465],[-71.161083013,41.474960079],[-71.161005732,41.475014762],[-71.160943835,41.475052521],[-71.160878073,41.475091],[-71.160811348,41.475133182],[-71.160745646,41.475177584],[-71.16068189,41.475221901],[-71.160622003,41.475264812],[-71.160562091,41.475306899],[-71.160503155,41.47534828],[-71.160443249,41.475388972],[-71.160387236,41.475429606],[-71.160331185,41.47546585],[-71.160246921,41.475506653],[-71.16016166,41.475546035],[-71.160105586,41.475580814],[-71.160048596,41.475622201],[-71.159994551,41.475664305],[-71.159938515,41.475703476],[-71.159884402,41.475741166],[-71.159810845,41.475781199],[-71.159754646,41.475804978],[-71.159720995,41.4758433],[-71.159664871,41.475875861],[-71.159571484,41.4758816],[-71.159493989,41.475918717],[-71.159430042,41.475946955],[-71.159354323,41.47597015],[-71.159274737,41.475994088],[-71.159199074,41.476018037],[-71.159125328,41.476041924],[-71.159057382,41.47606139],[-71.158961226,41.47608473],[-71.158892357,41.476106435],[-71.158815687,41.476131068],[-71.158731258,41.4761565],[-71.158643928,41.476184188],[-71.158556572,41.476211121],[-71.158471155,41.476233624],[-71.158393428,41.476250957],[-71.15831669,41.476265389],[-71.158236032,41.476279054],[-71.158160229,41.476294929],[-71.158058264,41.476318297],[-71.157987334,41.476332677],[-71.15791247,41.476343409],[-71.157830744,41.476351971],[-71.157749026,41.476359115],[-71.157666335,41.476366233],[-71.15760522,41.476370373],[-71.157582649,41.476371884],[-71.157494096,41.476377567],[-71.157407512,41.476384719],[-71.157329642,41.476388878],[-71.157230347,41.476390229],[-71.15713786,41.476392332],[-71.157042514,41.476400235],[-71.156937433,41.476408978],[-71.156863485,41.476413103],[-71.156785591,41.476415821],[-71.156709626,41.47641628],[-71.156616147,41.476416161],[-71.156531256,41.476402071],[-71.156433067,41.476412939],[-71.156257165,41.476444065],[-71.156182296,41.476455551],[-71.15610157,41.476464869],[-71.156014982,41.476472752],[-71.155925478,41.47647994],[-71.155838887,41.476488509],[-71.155755287,41.476500746],[-71.155673647,41.476515939],[-71.155591967,41.476527449],[-71.155510279,41.476534569],[-71.155429511,41.476540227],[-71.155344847,41.476546606],[-71.155251473,41.476555245],[-71.155148379,41.476567629],[-71.155042411,41.476582955],[-71.154944224,41.476598966],[-71.154852872,41.476616371],[-71.154765443,41.476633787],[-71.154684821,41.47665191],[-71.154611966,41.476667746],[-71.154543913,41.476678428],[-71.15446511,41.476686264],[-71.154395148,41.476701331],[-71.154315489,41.476715751],[-71.154227082,41.476733896],[-71.154130992,41.476761646],[-71.154063017,41.476780378],[-71.1539941,41.476799107],[-71.15389701,41.476826099],[-71.153795016,41.476848707],[-71.153722161,41.476864589],[-71.153620006,41.476871805],[-71.153515795,41.476871011],[-71.153441771,41.476872229],[-71.153363893,41.476871994],[-71.153281095,41.476870304],[-71.153199248,41.476867176],[-71.153119375,41.476864739],[-71.153039478,41.476860885],[-71.152962437,41.476851825],[-71.152863832,41.47683195],[-71.152819565,41.476813086],[-71.152794382,41.476802353],[-71.152721242,41.47679184],[-71.152634739,41.47680633],[-71.152534519,41.47681577],[-71.152448851,41.476816312],[-71.152372776,41.476808695],[-71.152295807,41.47680334],[-71.152216774,41.476791391],[-71.15212304,41.476770753],[-71.152052737,41.476752885],[-71.151954129,41.476727887],[-71.151866069,41.476692561],[-71.151785674,41.476645457],[-71.151709176,41.47659761],[-71.151641545,41.476557771],[-71.151571972,41.476517195],[-71.151502282,41.476470055],[-71.151440468,41.476428701],[-71.151382628,41.476394656],[-71.151342532,41.476375095],[-71.151337939,41.476369478],[-71.151296019,41.476332736],[-71.151291427,41.476327118],[-71.151263601,41.47629895],[-71.151217815,41.476234455],[-71.151190459,41.476192474],[-71.151156889,41.476152304],[-71.151064586,41.476046319],[-71.151005464,41.475951137],[-71.150860218,41.475828319],[-71.150814126,41.475815463],[-71.150712545,41.475789586],[-71.150635297,41.475774189],[-71.150557054,41.475762745],[-71.150483808,41.475760716],[-71.150410911,41.475773256],[-71.150332244,41.475801009],[-71.150253217,41.475839351],[-71.150177645,41.475879784],[-71.15010384,41.475919582],[-71.150030869,41.475962699],[-71.14995677,41.476011827],[-71.149883339,41.476066903],[-71.149816072,41.476123461],[-71.14975681,41.476178787],[-71.149702771,41.476235568],[-71.149648622,41.476295666],[-71.149588263,41.47635698],[-71.14952276,41.476413543],[-71.149462619,41.476468202],[-71.149409495,41.476524347],[-71.149357814,41.47658914],[-71.149306126,41.476655282],[-71.149252787,41.476717395],[-71.149198709,41.476775503],[-71.149143636,41.476837587],[-71.149089381,41.47690036],[-71.149032691,41.476957728],[-71.148971705,41.47701108],[-71.148906307,41.477064991],[-71.14883625,41.477125429],[-71.148769721,41.477185991],[-71.148710351,41.477243991],[-71.148658149,41.477298148],[-71.148603188,41.477356207],[-71.148541248,41.477411523],[-71.148468172,41.477456651],[-71.148391013,41.477491773],[-71.148316754,41.477519561],[-71.148241796,41.477541402],[-71.148161024,41.477553139],[-71.148076173,41.477554228],[-71.147997786,41.477546739],[-71.147924022,41.477533386],[-71.147850476,41.477513401],[-71.147771716,41.477490587],[-71.147691157,41.477468499],[-71.147617397,41.47745446],[-71.147545134,41.477450419],[-71.147470794,41.477453668],[-71.147390134,41.477461471],[-71.147313145,41.477465305],[-71.147206479,41.477457294],[-71.147137306,41.477438694],[-71.147065739,41.477412769],[-71.146995578,41.477396796],[-71.146907649,41.477410431],[-71.146841152,41.477470284],[-71.146793493,41.477521869],[-71.146735994,41.477576604],[-71.146671407,41.477631842],[-71.146606928,41.477683788],[-71.146546192,41.477729799],[-71.146483108,41.477765808],[-71.146415969,41.477792428],[-71.146343871,41.477808353],[-71.146239771,41.47780371],[-71.146158259,41.477783563],[-71.146090706,41.477796894],[-71.146034943,41.477850993],[-71.146008635,41.477924233],[-71.145993602,41.478004346],[-71.145963473,41.478058936],[-71.145921766,41.478117263],[-71.145875651,41.478175554],[-71.145831303,41.478233187],[-71.145788718,41.478290803],[-71.145744302,41.478349785],[-71.145695544,41.478407313],[-71.145642668,41.47845616],[-71.145583984,41.478493601],[-71.145493747,41.478523077],[-71.145403676,41.478522067],[-71.145309939,41.478524248],[-71.145210808,41.478556258],[-71.145151426,41.478587681],[-71.145087462,41.478650925],[-71.145081435,41.478724548],[-71.145137656,41.478787408],[-71.145198498,41.478817144],[-71.145266719,41.478837731],[-71.145335931,41.478854983],[-71.145404001,41.478880876],[-71.145468046,41.478919952],[-71.145526469,41.478969554],[-71.145580373,41.479022413],[-71.145628003,41.479077127],[-71.14567108,41.479135761],[-71.145706956,41.479198925],[-71.145738392,41.47926196],[-71.145768204,41.479321674],[-71.145804261,41.479379508],[-71.145845462,41.47944207],[-71.145888362,41.479505347],[-71.145928749,41.479566557],[-71.145970135,41.47962315],[-71.146010526,41.479683743],[-71.146049895,41.479747603],[-71.146088383,41.47981146],[-71.146126167,41.479870649],[-71.146164832,41.479929841],[-71.146200708,41.479992981],[-71.14622777,41.480055294],[-71.146248041,41.480108209],[-71.146264894,41.480185584],[-71.146270904,41.480243509],[-71.146265523,41.480299204],[-71.146234631,41.480376364],[-71.146195094,41.480449358],[-71.146205675,41.480527972],[-71.146233096,41.480580314],[-71.146243007,41.48065362],[-71.146193848,41.480723108],[-71.146147004,41.480775382],[-71.146095814,41.480826888],[-71.146038455,41.48087762],[-71.145976762,41.48092564],[-71.145912499,41.480970931],[-71.145843822,41.481016779],[-71.145781251,41.48106411],[-71.145725836,41.481109565],[-71.145679172,41.481156534],[-71.145647454,41.481206407],[-71.145625327,41.481259832],[-71.145597796,41.481317082],[-71.145558922,41.481368854],[-71.145515039,41.481413201],[-71.145452791,41.481451202],[-71.145389729,41.481487874],[-71.145320321,41.481528438],[-71.145262591,41.481563205],[-71.145199567,41.481598573],[-71.145131259,41.481632485],[-71.145061436,41.481659713],[-71.144991979,41.481675668],[-71.14491936,41.481680269],[-71.144841668,41.481678131],[-71.144763197,41.481674001],[-71.144659204,41.481665378],[-71.144560635,41.481654851],[-71.14445506,41.481640871],[-71.144382912,41.481631546],[-71.144282624,41.48161836],[-71.144184982,41.481605182],[-71.144083918,41.481589318],[-71.143997504,41.48155845],[-71.143942973,41.481497584],[-71.143876203,41.481433891],[-71.1438201,41.48139358],[-71.143752902,41.481369061],[-71.143678144,41.481358996],[-71.143605956,41.481351636],[-71.143498436,41.481342956],[-71.143420885,41.481337501],[-71.143342383,41.48133337],[-71.143270059,41.481328686],[-71.14317157,41.481314796],[-71.143101368,41.481300193],[-71.143027816,41.481280845],[-71.142962416,41.481255691],[-71.142887246,41.481204457],[-71.142812953,41.481153867],[-71.142727826,41.481110355],[-71.142633558,41.481103247],[-71.142570721,41.48113196],[-71.142506565,41.48117391],[-71.142439506,41.481223832],[-71.142364438,41.48127556],[-71.142288455,41.481327924],[-71.142218648,41.481379736],[-71.142154197,41.481430993],[-71.142087872,41.481485561],[-71.142015381,41.481538691],[-71.141937705,41.481589015],[-71.14186381,41.481632123],[-71.141792703,41.48167133],[-71.141719731,41.481712451],[-71.14164051,41.481756115],[-71.141560339,41.481801079],[-71.141484532,41.481848824],[-71.141412256,41.48189594],[-71.14133733,41.481943687],[-71.141257821,41.481995354],[-71.141178275,41.482048302],[-71.141105813,41.482101431],[-71.141037833,41.482152631],[-71.140967248,41.482201787],[-71.140892992,41.482254819],[-71.140820458,41.482309938],[-71.140752405,41.482363127],[-71.140687005,41.482415067],[-71.140619906,41.482466246],[-71.140552625,41.482522776],[-71.140487881,41.482582676],[-71.140431072,41.482642738],[-71.140387564,41.482701035],[-71.14035015,41.482762758],[-71.140305612,41.482825694],[-71.140251589,41.482882495],[-71.140189784,41.482933141],[-71.140121949,41.482979698],[-71.140054111,41.483026918],[-71.139988997,41.483070831],[-71.139922369,41.483108106],[-71.139852327,41.483141323],[-71.139782323,41.483173213],[-71.139713238,41.483203802],[-71.139647817,41.483231773],[-71.139580639,41.483258412],[-71.139511807,41.483281707],[-71.139440614,41.483297607],[-71.139339602,41.483304975],[-71.139262487,41.483286254],[-71.139191445,41.483296826],[-71.139144918,41.483339813],[-71.139145306,41.483406914],[-71.139088083,41.483453664],[-71.139013824,41.483506741],[-71.138961525,41.483564895],[-71.138986526,41.483608541],[-71.139061949,41.483625267],[-71.139145558,41.483635523],[-71.139210483,41.483675269],[-71.139247971,41.483743105],[-71.139277087,41.483823424],[-71.139293754,41.483878204],[-71.139308169,41.483949581],[-71.139272221,41.483993379],[-71.139194831,41.484035102],[-71.139137324,41.484089192],[-71.139185973,41.484140619],[-71.13925292,41.484199697],[-71.139301843,41.484267705],[-71.139310645,41.484347641],[-71.139296298,41.484406486],[-71.139276845,41.4844593],[-71.139253097,41.484535223],[-71.139254802,41.484589727],[-71.139273047,41.484650573],[-71.139297568,41.484709517],[-71.139322199,41.484765123],[-71.139346019,41.484818736],[-71.139369655,41.484878295],[-71.139391349,41.484942513],[-71.139414076,41.485001406],[-71.139439623,41.485056397],[-71.139467005,41.485109404],[-71.139511512,41.485178679],[-71.139551128,41.485235933],[-71.139580527,41.485254412],[-71.139663227,41.48526462],[-71.13974464,41.485287448],[-71.139794392,41.485332246],[-71.139851242,41.485402429],[-71.139891745,41.485459021],[-71.139929567,41.4855162],[-71.139964812,41.485572068],[-71.139998335,41.485625826],[-71.140031744,41.485683608],[-71.140064128,41.485745367],[-71.140095671,41.485805111],[-71.140127358,41.485860852],[-71.14015911,41.485915931],[-71.140190687,41.485975012],[-71.140223212,41.486033432],[-71.140254051,41.486088508],[-71.140280526,41.486140848],[-71.140287528,41.486222059],[-71.140272341,41.486278935],[-71.140275807,41.486334131],[-71.140297938,41.48638568],[-71.140327161,41.486436108],[-71.140358852,41.486491164],[-71.140393144,41.486548972],[-71.140423099,41.486604686],[-71.140447769,41.486658965],[-71.140468059,41.486713207],[-71.140484539,41.486774619],[-71.140500988,41.486836076],[-71.140516802,41.486891516],[-71.140530851,41.486946974],[-71.140546627,41.487003718],[-71.1405666,41.487065895],[-71.140589253,41.487127486],[-71.140612962,41.487185056],[-71.140637595,41.487240707],[-71.14066381,41.487301646],[-71.140689068,41.487365257],[-71.140708153,41.487428735],[-71.140723683,41.48749147],[-71.140737475,41.487554886],[-71.14074933,41.487622207],[-71.140757726,41.487688121],[-71.140763547,41.487752038],[-71.140772752,41.487820014],[-71.140784463,41.487891313],[-71.140799842,41.487959399],[-71.140815327,41.488024787],[-71.140831592,41.488092213],[-71.140847774,41.48816364],[-71.140864005,41.488231706],[-71.140877692,41.488297752],[-71.140889612,41.488364409],[-71.140902201,41.488436397],[-71.140914056,41.488503741],[-71.140926021,41.488567745],[-71.140941435,41.488635191],[-71.140956667,41.488707874],[-71.14097289,41.488777289],[-71.140988376,41.4888427],[-71.141006329,41.488912807],[-71.141023325,41.488985563],[-71.141038705,41.489053626],[-71.141051514,41.489119006],[-71.141057965,41.489190197],[-71.141054683,41.489261221],[-71.141044497,41.489326826],[-71.141034409,41.489391082],[-71.141034655,41.489462186],[-71.141041071,41.489534086],[-71.141047666,41.489601321],[-71.141048055,41.489668446],[-71.141042836,41.48974342],[-71.141033305,41.489817009],[-71.141020428,41.489885167],[-71.141000396,41.489954583],[-71.140969701,41.490027077],[-71.140936477,41.490094897],[-71.140907841,41.490158112],[-71.140889683,41.490224218],[-71.140881181,41.490293144],[-71.140879807,41.49036024],[-71.140877441,41.490430604],[-71.140875109,41.490500373],[-71.14086886,41.490579963],[-71.140853049,41.490656071],[-71.140815968,41.490733782],[-71.140780419,41.490792904],[-71.140737931,41.490847225],[-71.140691253,41.490894854],[-71.140637737,41.490935693],[-71.140578968,41.490975097],[-71.140520088,41.491017863],[-71.140462159,41.491059259],[-71.140402436,41.49110065],[-71.140339222,41.491140635],[-71.140274353,41.491177276],[-71.140205143,41.49121253],[-71.140141122,41.491249837],[-71.140080622,41.491288549],[-71.140018472,41.491323232],[-71.139951911,41.491357854],[-71.139880058,41.491392369],[-71.139807251,41.491428847],[-71.139737018,41.491467369],[-71.139666608,41.491510555],[-71.139592521,41.491558304],[-71.139514131,41.491603318],[-71.13943931,41.491646422],[-71.139409643,41.491664808],[-71.139371644,41.491688337],[-71.139305676,41.491730942],[-71.139240474,41.49177817],[-71.139176892,41.491829474],[-71.139115184,41.491877467],[-71.139056197,41.491922839],[-71.138997316,41.491965558],[-71.138936598,41.492010262],[-71.138874814,41.492060907],[-71.138815569,41.492114283],[-71.138761613,41.492168384],[-71.138713902,41.492220652],[-71.138674054,41.492275712],[-71.138641928,41.492336902],[-71.138613361,41.492398127],[-71.138586602,41.49245675],[-71.138558182,41.492513355],[-71.138526965,41.492575212],[-71.138492083,41.492639664],[-71.138457341,41.492700801],[-71.138420949,41.492757907],[-71.138381838,41.492816994],[-71.138339941,41.492879298],[-71.138297269,41.492938923],[-71.138252127,41.492993897],[-71.13820526,41.493047494],[-71.13815377,41.493106314],[-71.138097053,41.493164362],[-71.138036925,41.493217689],[-71.137975218,41.493265018],[-71.137912769,41.493309029],[-71.137845879,41.493352958],[-71.137774724,41.493392802],[-71.137698457,41.493427232],[-71.137621313,41.493460928],[-71.137545822,41.49349806],[-71.137478932,41.493541942],[-71.137406818,41.493584436],[-71.137327292,41.493636077],[-71.137272148,41.49367357],[-71.137216058,41.493711678],[-71.137125539,41.49374915],[-71.13702473,41.493777145],[-71.136954194,41.493798397],[-71.136887814,41.493827004],[-71.136827348,41.493864411],[-71.136768569,41.4939045],[-71.136708954,41.493941887],[-71.136648521,41.493978631],[-71.136566454,41.494027542],[-71.136484497,41.49407316],[-71.136426751,41.494107923],[-71.136417821,41.494111073],[-71.136057888,41.494219322],[-71.135937502,41.494266602],[-71.135816272,41.494312644],[-71.135698283,41.494355563],[-71.135594294,41.494397155],[-71.135505025,41.494433669],[-71.135485437,41.494438822],[-71.135413148,41.494457872],[-71.135313923,41.494485184],[-71.135206701,41.494533603],[-71.135101196,41.494585092],[-71.134993906,41.494629187],[-71.134877466,41.494661545],[-71.134761797,41.494692075],[-71.134667428,41.494715651],[-71.134584592,41.494738533],[-71.134487173,41.494780075],[-71.134387249,41.494817904],[-71.134282283,41.494848971],[-71.13417957,41.49486335],[-71.134070141,41.494865975],[-71.133960851,41.49488159],[-71.133859908,41.494905831],[-71.133752501,41.494938193],[-71.133675382,41.494956015],[-71.133588438,41.494978928],[-71.133509865,41.49501726],[-71.133480589,41.495030431],[-71.133423135,41.495056251],[-71.13334545,41.495093304],[-71.133267791,41.495136532],[-71.133182634,41.495171801],[-71.133113849,41.495200169],[-71.133016151,41.495220646],[-71.132915001,41.495227573],[-71.132785975,41.495242072],[-71.132713676,41.495251881],[-71.132637243,41.495261082],[-71.132558303,41.495267234],[-71.132481005,41.495273345],[-71.132409503,41.495281921],[-71.132281351,41.495303215],[-71.132171392,41.49532937],[-71.132078779,41.495359742],[-71.131973009,41.495392656],[-71.13186731,41.495429345],[-71.131795446,41.495475015],[-71.131756058,41.495549559],[-71.13169834,41.495605657],[-71.131602011,41.495668813],[-71.131499005,41.495724011],[-71.131381034,41.495768183],[-71.131250709,41.495813048],[-71.131120161,41.495838107],[-71.130990289,41.495851412],[-71.1308794,41.495869558],[-71.130773271,41.495874615],[-71.130682056,41.495883287],[-71.130608335,41.495912918],[-71.130540508,41.495949292],[-71.130464265,41.495978321],[-71.130364297,41.496012419],[-71.13024307,41.496056603],[-71.13017342,41.496081833],[-71.130098864,41.496108374],[-71.130025921,41.496134897],[-71.129891541,41.496180982],[-71.129768377,41.496207252],[-71.129652957,41.496193204],[-71.129554951,41.496187103],[-71.129482769,41.496208025],[-71.129413168,41.496235153],[-71.129306591,41.496270555],[-71.129229504,41.496292788],[-71.129137603,41.496315064],[-71.129041591,41.496338036],[-71.128950508,41.496360933],[-71.128868486,41.49638443],[-71.128791425,41.49640728],[-71.12871924,41.496428796],[-71.128647045,41.49644663],[-71.128573137,41.4964608],[-71.128493463,41.49647248],[-71.128410497,41.496485477],[-71.128327558,41.496499045],[-71.128245433,41.496513851],[-71.128165775,41.496528025],[-71.128088532,41.496540353],[-71.128015429,41.496551986],[-71.127973976,41.496561183],[-71.127885739,41.496580772],[-71.127779317,41.496626053],[-71.127681914,41.496668825],[-71.127554794,41.496705645],[-71.127424362,41.496741815],[-71.127308626,41.49676678],[-71.127213183,41.496769924],[-71.127106002,41.496756449],[-71.127007356,41.496766421],[-71.126937011,41.496800978],[-71.126863169,41.496819446],[-71.126782305,41.496805141],[-71.12670069,41.496794585],[-71.126622646,41.496803182],[-71.126548654,41.496810535],[-71.126461507,41.496820429],[-71.126375133,41.49682287],[-71.126302738,41.496827712],[-71.126227932,41.496833827],[-71.126155564,41.496839286],[-71.126014953,41.496852071],[-71.12587602,41.496864152],[-71.125802002,41.496870863],[-71.12572555,41.49687759],[-71.125649889,41.496884319],[-71.125577577,41.496890418],[-71.125438554,41.496896941],[-71.125299471,41.496897929],[-71.125167836,41.496905047],[-71.125046208,41.496917686],[-71.124914722,41.496935897],[-71.124843234,41.496946938],[-71.124770153,41.496959827],[-71.124697065,41.496973997],[-71.124624001,41.496989333],[-71.124486052,41.497015046],[-71.124367686,41.497026437],[-71.12426327,41.497034604],[-71.124157263,41.49704958],[-71.124047998,41.497065187],[-71.123941103,41.497075838],[-71.123830023,41.497079111],[-71.123719013,41.497086066],[-71.123618818,41.497105955],[-71.123535996,41.497130658],[-71.12346363,41.497135498],[-71.123384624,41.49713668],[-71.123280388,41.49716097],[-71.123209857,41.497179995],[-71.123126162,41.497202866],[-71.123035754,41.497208447],[-71.12291641,41.497209908],[-71.122788951,41.497220719],[-71.1226706,41.497234533],[-71.122579509,41.497258065],[-71.122480356,41.497292182],[-71.122395574,41.497292795],[-71.122300888,41.497290998],[-71.122171684,41.497293158],[-71.122097571,41.497289918],[-71.12202255,41.497280547],[-71.121946708,41.497271218],[-71.121869332,41.497269271],[-71.121792813,41.49727165],[-71.121719623,41.497277127],[-71.121580536,41.497278704],[-71.121451421,41.497286421],[-71.121319073,41.497300965],[-71.12124666,41.497303357],[-71.121172633,41.497306315],[-71.121041148,41.497323972],[-71.120991168,41.497329273],[-71.120921952,41.497336569],[-71.12080757,41.497337382],[-71.120701401,41.497338129],[-71.120596876,41.497338836],[-71.120525723,41.497339337],[-71.120539408,41.497376485],[-71.120552408,41.497409484],[-71.120559408,41.497429484],[-71.120570408,41.497456485],[-71.120547442,41.49750142],[-71.120617719,41.49790991],[-71.120753994,41.499618657],[-71.122495705,41.522148407],[-71.124488249,41.537116795],[-71.125329584,41.543586048],[-71.126258586,41.551512788]]]]}}"}, +{"type": "precinct", "typeId": 1901, "areaId": 25815, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":154,\"NAME\":\"1901\",\"SHAPE_Length\":0.21062175142809,\"SHAPE_Area\":-0.0014225437789185},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.233335074,41.514949893],[-71.235543447,41.516386485],[-71.237873448,41.517922486],[-71.238615448,41.518428486],[-71.24252345,41.520973486],[-71.24271545,41.521098486],[-71.24381645,41.521801486],[-71.246430451,41.523490486],[-71.246841451,41.523778486],[-71.248341452,41.524668487],[-71.249750452,41.525930487],[-71.255386454,41.530543487],[-71.257263455,41.532129487],[-71.257402455,41.532185487],[-71.258462456,41.532961487],[-71.259915456,41.533931488],[-71.260870456,41.534457488],[-71.261990457,41.535193488],[-71.265786458,41.538097488],[-71.265876458,41.537971488],[-71.266250458,41.537559489],[-71.266418459,41.537366488],[-71.266577458,41.537192488],[-71.266853458,41.536894488],[-71.266968458,41.536779488],[-71.267456458,41.536243488],[-71.267783459,41.535871488],[-71.268020458,41.535619488],[-71.268722458,41.534849488],[-71.269409459,41.534105488],[-71.269744459,41.533721487],[-71.269897459,41.533555487],[-71.270217459,41.533180487],[-71.270675459,41.532671487],[-71.27105746,41.532222487],[-71.271224459,41.532039487],[-71.27134646,41.531897487],[-71.27159846,41.531621487],[-71.27203346,41.531122487],[-71.27230046,41.530820487],[-71.272369459,41.530737486],[-71.27274346,41.530311486],[-71.27310146,41.529844486],[-71.27324646,41.529657487],[-71.27371246,41.529013487],[-71.27387246,41.528803487],[-71.27448246,41.527993486],[-71.275169461,41.527075486],[-71.275207461,41.527029486],[-71.275505461,41.526636486],[-71.275619461,41.526476486],[-71.275695461,41.526366486],[-71.275795461,41.526252485],[-71.275894461,41.526160486],[-71.275909461,41.525961485],[-71.275932461,41.525627485],[-71.276008461,41.524986485],[-71.276092461,41.524138486],[-71.276206461,41.523118485],[-71.276306461,41.522243485],[-71.27635146,41.521800485],[-71.276474461,41.520780485],[-71.27660346,41.519593485],[-71.27684046,41.517540484],[-71.277007461,41.516428484],[-71.277023461,41.516298484],[-71.277122461,41.515688484],[-71.27720646,41.515092484],[-71.27726746,41.514559483],[-71.277335461,41.513932483],[-71.277358461,41.513593484],[-71.27740446,41.512980483],[-71.27748146,41.511911483],[-71.277549461,41.511198482],[-71.277671461,41.510156483],[-71.27771746,41.509790483],[-71.27777846,41.509402482],[-71.27793846,41.508196482],[-71.27619946,41.508433482],[-71.27579446,41.508500483],[-71.27546646,41.508551482],[-71.274864459,41.508649482],[-71.27402446,41.508814483],[-71.273941459,41.508829483],[-71.272834459,41.509054482],[-71.272193458,41.509170482],[-71.271774458,41.509241483],[-71.271591458,41.509267482],[-71.271430459,41.509293483],[-71.270477458,41.509442482],[-71.270026458,41.509501482],[-71.269752458,41.509542482],[-71.269668458,41.509544483],[-71.269584457,41.509550483],[-71.269431458,41.509553483],[-71.269381458,41.509551483],[-71.269157457,41.509527483],[-71.269149458,41.509491483],[-71.269149458,41.509437483],[-71.269142458,41.509401482],[-71.269141458,41.509302483],[-71.269134457,41.509271482],[-71.269134457,41.509226482],[-71.269126458,41.509181483],[-71.269126458,41.509136483],[-71.268867457,41.507898483],[-71.268714457,41.507172482],[-71.268692457,41.507032482],[-71.268669457,41.506808482],[-71.268615457,41.506376482],[-71.268609457,41.506309482],[-71.268562457,41.505752482],[-71.268516457,41.505316482],[-71.268486458,41.504997482],[-71.268447457,41.504660482],[-71.268417457,41.504322482],[-71.268371457,41.504008482],[-71.268356457,41.503945481],[-71.268333457,41.503752481],[-71.268295457,41.503510482],[-71.268234457,41.503232482],[-71.268188457,41.502976481],[-71.268119457,41.502694481],[-71.268089457,41.502537481],[-71.268058456,41.502348481],[-71.268012457,41.502115481],[-71.267989457,41.501949482],[-71.267951457,41.501747481],[-71.267875457,41.501401481],[-71.267806456,41.501070481],[-71.267781457,41.500946481],[-71.267707456,41.500581481],[-71.267555456,41.49984548],[-71.267486457,41.49953648],[-71.267288456,41.49862148],[-71.267143456,41.497854481],[-71.267089456,41.49762548],[-71.267082457,41.497576481],[-71.267013456,41.49724448],[-71.266998456,41.49715448],[-71.266929456,41.49671448],[-71.266922456,41.49653948],[-71.266914456,41.49609848],[-71.266906457,41.49579648],[-71.266914456,41.49517448],[-71.266914456,41.49495848],[-71.266922456,41.49477848],[-71.266921456,41.494192479],[-71.266922456,41.493490479],[-71.266921456,41.49295948],[-71.266922456,41.49282348],[-71.266921456,41.492747479],[-71.266921456,41.491995479],[-71.266924456,41.491794479],[-71.266929456,41.491351479],[-71.266960456,41.490940479],[-71.266975456,41.490827479],[-71.266998456,41.490678479],[-71.267021456,41.490592479],[-71.267112456,41.490302479],[-71.267257456,41.489930479],[-71.267417456,41.489598479],[-71.267570456,41.489321479],[-71.267661456,41.489193479],[-71.267635488,41.48871508],[-71.267621397,41.488730625],[-71.267552797,41.488785557],[-71.267473625,41.48883658],[-71.26741884,41.488872398],[-71.267337064,41.488920168],[-71.267247249,41.488953491],[-71.267156487,41.488979585],[-71.267066588,41.489002387],[-71.267029602,41.489011095],[-71.266972342,41.489024586],[-71.266900699,41.489036791],[-71.266823004,41.489049006],[-71.266745249,41.489061244],[-71.266669259,41.489072799],[-71.266592385,41.489085039],[-71.266510247,41.489097908],[-71.266429024,41.489110184],[-71.266347751,41.489119122],[-71.266269928,41.489124772],[-71.266192134,41.489130423],[-71.266106484,41.489138757],[-71.266017336,41.489147083],[-71.265928198,41.489152802],[-71.265834607,41.489153275],[-71.265741868,41.489153749],[-71.265648277,41.489154176],[-71.265553804,41.48915467],[-71.265457567,41.48915516],[-71.265364889,41.489155611],[-71.26527218,41.489156085],[-71.265182941,41.489155857],[-71.265098087,41.489154335],[-71.265021061,41.489149443],[-71.264937899,41.489142595],[-71.264849477,41.489135165],[-71.264757557,41.489127727],[-71.264663878,41.489118982],[-71.26456585,41.489110274],[-71.264464293,41.489101558],[-71.264463455,41.489101478],[-71.264365382,41.489092848],[-71.264275201,41.48908411],[-71.264192895,41.489075959],[-71.264114997,41.489068459],[-71.264041515,41.489061589],[-71.264027265,41.489060439],[-71.263953933,41.489055435],[-71.263876007,41.489047271],[-71.263795468,41.489038461],[-71.263714927,41.489030314],[-71.263635214,41.489020178],[-71.263557249,41.489006113],[-71.26348102,41.488991365],[-71.26339955,41.488979283],[-71.263313754,41.488969181],[-71.263227078,41.488958436],[-71.263141231,41.488945704],[-71.26305189,41.488931661],[-71.262962524,41.488916314],[-71.262879272,41.488900934],[-71.262795145,41.488883608],[-71.262708433,41.488866276],[-71.262622567,41.488850273],[-71.262538463,41.488834891],[-71.262454357,41.488820195],[-71.262371978,41.488807446],[-71.262289659,41.488794698],[-71.262215164,41.488779953],[-71.261733802,41.488648803],[-71.261661095,41.488636006],[-71.261570904,41.488622005],[-71.261475355,41.488600789],[-71.26137981,41.488578865],[-71.261341104,41.488571063],[-71.261247371,41.488552938],[-71.26119933,41.488544254],[-71.261121333,41.48853085],[-71.261048654,41.488518715],[-71.260976827,41.488506582],[-71.260897938,41.488487848],[-71.260812886,41.488465967],[-71.260722602,41.48844403],[-71.260630552,41.488422753],[-71.26053675,41.488398224],[-71.260444713,41.488373698],[-71.260359635,41.488350445],[-71.260299134,41.488331224],[-71.260283453,41.488326479],[-71.260207453,41.488300478],[-71.260096546,41.488267523],[-71.260032465,41.488249455],[-71.259945739,41.488228188],[-71.259860729,41.488211499],[-71.259779242,41.48819612],[-71.259700397,41.488182005],[-71.259621506,41.488164001],[-71.25953907,41.488142034],[-71.259455791,41.488118143],[-71.259379456,41.488091523],[-71.259308385,41.488064251],[-71.259248484,41.488042968],[-71.259238453,41.488039479],[-71.259234929,41.488038356],[-71.259162752,41.488016308],[-71.259082035,41.487990387],[-71.25899435,41.487965206],[-71.258902316,41.487939971],[-71.258811131,41.487915446],[-71.258724322,41.487892188],[-71.258648191,41.487868457],[-71.258638453,41.487865479],[-71.258600656,41.487853028],[-71.258554138,41.487837789],[-71.258467308,41.487811901],[-71.258377052,41.487791311],[-71.258282457,41.487775996],[-71.258190455,41.487758695],[-71.258100168,41.48773806],[-71.258015146,41.487716772],[-71.25793533,41.487694146],[-71.257863394,41.48767085],[-71.257791509,41.487650138],[-71.257712601,41.487628817],[-71.257632792,41.487604247],[-71.257571869,41.487582753],[-71.257556453,41.487577479],[-71.257542465,41.487573399],[-71.257484544,41.487556937],[-71.257411795,41.487539539],[-71.257339924,41.487523447],[-71.257268942,41.48750539],[-71.257196148,41.487484036],[-71.257119837,41.487459427],[-71.257051956,41.487439074],[-71.257039453,41.487435479],[-71.257016287,41.487429473],[-71.256958501,41.48741481],[-71.256879585,41.487395501],[-71.256799819,41.487376122],[-71.256717439,41.487356142],[-71.256635036,41.487334195],[-71.256559608,41.487309611],[-71.256488552,41.48728691],[-71.256414879,41.487264914],[-71.256342067,41.487240266],[-71.25627273,41.487213658],[-71.256206916,41.487188316],[-71.256108671,41.487157233],[-71.256036782,41.48713787],[-71.255962273,41.487119805],[-71.255886879,41.487102424],[-71.255807993,41.487083731],[-71.25580012,41.48708248],[-71.255143182,41.48687523],[-71.255054597,41.486847346],[-71.254974786,41.4868241],[-71.2548941,41.486798817],[-71.254817789,41.486774847],[-71.25474326,41.486754173],[-71.254674872,41.486734131],[-71.254606487,41.486713402],[-71.25453981,41.486691373],[-71.254450281,41.486656328],[-71.25435461,41.486620584],[-71.254289686,41.486594572],[-71.254289452,41.486594479],[-71.254281095,41.486590692],[-71.254226437,41.486565948],[-71.254225452,41.486565478],[-71.254165452,41.486536479],[-71.254162075,41.486535106],[-71.254074452,41.486499479],[-71.254054296,41.486492338],[-71.253975411,41.486465241],[-71.253899965,41.486437978],[-71.25387403,41.486428184],[-71.253760673,41.486386738],[-71.253736744,41.486378258],[-71.253671422,41.486354105],[-71.253579451,41.486320479],[-71.253551423,41.486309195],[-71.253503313,41.486289961],[-71.253435702,41.486258072],[-71.2533707,41.48622747],[-71.253243401,41.486175465],[-71.253027554,41.486094339],[-71.252872192,41.486031959],[-71.252794868,41.485994812],[-71.252731339,41.485962046],[-71.252722451,41.485957479],[-71.252716845,41.485954473],[-71.25265433,41.485921212],[-71.252522501,41.485847506],[-71.252522451,41.485847478],[-71.25233355,41.485745817],[-71.252168382,41.485663084],[-71.252006847,41.485592845],[-71.251875226,41.485542201],[-71.251814601,41.485512889],[-71.251136275,41.485124051],[-71.250550723,41.484805644],[-71.250537602,41.48479959],[-71.25047845,41.484772478],[-71.250388451,41.484727479],[-71.250358719,41.484711702],[-71.250290666,41.484676161],[-71.250203958,41.484628244],[-71.250164747,41.484604845],[-71.25003245,41.484527478],[-71.249943701,41.484480121],[-71.249857967,41.484432227],[-71.249812177,41.484402973],[-71.24977645,41.484380478],[-71.249740163,41.484356752],[-71.249699296,41.484330408],[-71.249623406,41.48427723],[-71.249546562,41.484227046],[-71.249471739,41.484181326],[-71.249419077,41.484145091],[-71.249340517,41.48409201],[-71.249324013,41.484080925],[-71.249293526,41.484063143],[-71.24917845,41.483996478],[-71.249164934,41.483988416],[-71.24912155,41.483963001],[-71.249055778,41.483928369],[-71.248998871,41.483889961],[-71.248932057,41.483849403],[-71.248852163,41.483794067],[-71.248763385,41.483739465],[-71.248676602,41.483687818],[-71.248660806,41.483677225],[-71.248550324,41.483604815],[-71.248528925,41.483591144],[-71.248502976,41.483572214],[-71.248405576,41.48350238],[-71.248370092,41.483477407],[-71.248312242,41.483441745],[-71.248285449,41.483425478],[-71.248214449,41.483375478],[-71.248165752,41.483343013],[-71.248145576,41.483329793],[-71.24807473,41.483286276],[-71.248008065,41.483236967],[-71.247988834,41.483222914],[-71.247932862,41.483182112],[-71.247866931,41.483134124],[-71.247847553,41.483116331],[-71.24781245,41.483084478],[-71.247798309,41.483070489],[-71.247762841,41.483036401],[-71.247718763,41.482991982],[-71.247677613,41.482945305],[-71.247628553,41.482899389],[-71.247552595,41.482841018],[-71.247492566,41.482784786],[-71.247436659,41.482747889],[-71.247368844,41.482707328],[-71.247304275,41.48266316],[-71.247288449,41.482652478],[-71.247265682,41.48263527],[-71.24720304,41.482588406],[-71.247115225,41.482529346],[-71.247043225,41.482470183],[-71.247009801,41.4824444],[-71.246973449,41.482416478],[-71.246895449,41.482354478],[-71.246817449,41.482284478],[-71.246745448,41.482224478],[-71.246705177,41.482189826],[-71.246678238,41.482166969],[-71.246651565,41.482143695],[-71.246616449,41.482113478],[-71.246547449,41.482048478],[-71.246469449,41.481977478],[-71.246397448,41.481914478],[-71.246370157,41.481887634],[-71.246336948,41.481855459],[-71.246289165,41.481812365],[-71.246272449,41.481797478],[-71.246252002,41.481773836],[-71.246208664,41.48172436],[-71.2461475,41.481655455],[-71.246114852,41.48162489],[-71.246082448,41.481595478],[-71.246028448,41.481537478],[-71.245980449,41.481470478],[-71.245956752,41.481434933],[-71.245926588,41.481390086],[-71.245910347,41.481370035],[-71.245873448,41.481325478],[-71.245796448,41.481214478],[-71.245758448,41.481140478],[-71.245719448,41.481070478],[-71.245672448,41.481014478],[-71.245596927,41.48093132],[-71.245583566,41.480916856],[-71.245571477,41.480901048],[-71.245538448,41.480858478],[-71.24546275,41.480756113],[-71.245450809,41.480740395],[-71.245413579,41.480687711],[-71.245411451,41.480684481],[-71.245379448,41.480636477],[-71.245349448,41.480578477],[-71.245328448,41.480507478],[-71.245322448,41.480426477],[-71.245341448,41.480357478],[-71.245378448,41.480290477],[-71.245410448,41.480236478],[-71.245464448,41.480172477],[-71.245512449,41.480118478],[-71.245550449,41.480071477],[-71.245582376,41.480017599],[-71.245579229,41.480005807],[-71.245566448,41.479959477],[-71.245555448,41.479891478],[-71.245568449,41.479833478],[-71.245595448,41.479776478],[-71.245634448,41.479709478],[-71.245665449,41.479644477],[-71.245697448,41.479580478],[-71.245732448,41.479524477],[-71.245769448,41.479472477],[-71.245808448,41.479420478],[-71.245853448,41.479355477],[-71.245901449,41.479289478],[-71.245991448,41.479177477],[-71.246038449,41.479128478],[-71.246087448,41.479063477],[-71.246133449,41.478991478],[-71.246204448,41.478875478],[-71.246238448,41.478822477],[-71.246271449,41.478752477],[-71.246320448,41.478619477],[-71.246342448,41.478563477],[-71.246364449,41.478500477],[-71.246385449,41.478416477],[-71.246424449,41.478290477],[-71.246440448,41.478234478],[-71.246479448,41.478081477],[-71.246501449,41.478021478],[-71.246520449,41.477965477],[-71.246539449,41.477897477],[-71.246557449,41.477810477],[-71.246573448,41.477742477],[-71.246589448,41.477684477],[-71.246608448,41.477624477],[-71.246628448,41.477542477],[-71.246642449,41.477467477],[-71.246652448,41.477405477],[-71.246667448,41.477348477],[-71.246690448,41.477277477],[-71.246715449,41.477195477],[-71.246737449,41.477133477],[-71.246761419,41.477082954],[-71.246773493,41.477056734],[-71.246788331,41.477026231],[-71.246802448,41.476996477],[-71.246835449,41.476923477],[-71.246870449,41.476862477],[-71.246903448,41.476808477],[-71.246945448,41.476733477],[-71.247008449,41.476611477],[-71.247036448,41.476560476],[-71.247059448,41.476488477],[-71.247065449,41.476415477],[-71.247079448,41.476350477],[-71.247098448,41.476291477],[-71.247151449,41.476152476],[-71.247186449,41.476089477],[-71.247227449,41.476023477],[-71.247233448,41.475946477],[-71.247244449,41.475874477],[-71.247276449,41.475814477],[-71.247310448,41.475758477],[-71.247346449,41.475695477],[-71.247379449,41.475635477],[-71.247409448,41.475578477],[-71.247440449,41.475514477],[-71.247466448,41.475429476],[-71.247492449,41.475361477],[-71.247542448,41.475246477],[-71.247567449,41.475170477],[-71.247592449,41.475090477],[-71.247620448,41.475028477],[-71.247676449,41.474916477],[-71.247709449,41.474839477],[-71.247730449,41.474773476],[-71.247736449,41.474717477],[-71.247736449,41.474638476],[-71.247733935,41.474616298],[-71.247727762,41.474562291],[-71.247727067,41.4745557],[-71.247719448,41.474488477],[-71.247714449,41.474431477],[-71.247725449,41.474359476],[-71.247735968,41.474317096],[-71.247741635,41.474293987],[-71.24774634,41.474275314],[-71.247760448,41.474218477],[-71.247777448,41.474162476],[-71.247805449,41.474091476],[-71.247823449,41.474038477],[-71.247844449,41.473962477],[-71.247862449,41.473893476],[-71.247865449,41.473824477],[-71.247855778,41.473754852],[-71.247855514,41.473753085],[-71.247855448,41.473752476],[-71.247848449,41.473675476],[-71.247839448,41.473601476],[-71.247828449,41.473524476],[-71.247814376,41.473455989],[-71.247813591,41.473452367],[-71.247813593,41.473452178],[-71.247813449,41.473451476],[-71.247814449,41.473375476],[-71.247823449,41.473299476],[-71.247834449,41.473237476],[-71.247852449,41.473158476],[-71.247870449,41.473015476],[-71.247870449,41.472935476],[-71.247857448,41.472874476],[-71.247854448,41.472814477],[-71.247858448,41.472749476],[-71.247830449,41.472700476],[-71.247801469,41.472669722],[-71.247781946,41.472649398],[-71.247734914,41.472607969],[-71.247680864,41.472556896],[-71.247680847,41.472556853],[-71.247680448,41.472556476],[-71.247663572,41.472513082],[-71.247659454,41.472502647],[-71.247633782,41.472465344],[-71.247622448,41.472449476],[-71.247595449,41.472388476],[-71.247603448,41.472324476],[-71.247595449,41.472264476],[-71.247628448,41.472209476],[-71.247680448,41.472148476],[-71.247728449,41.472094476],[-71.247785449,41.472039476],[-71.247846449,41.471989476],[-71.247891449,41.471938476],[-71.247878469,41.471883562],[-71.247803875,41.471855764],[-71.247729705,41.471865184],[-71.247661679,41.471897624],[-71.247617626,41.471942605],[-71.247567586,41.471986886],[-71.247515544,41.472029653],[-71.247465504,41.472073911],[-71.247413443,41.472113728],[-71.247361432,41.472156563],[-71.247319347,41.472203743],[-71.247277444,41.47226659],[-71.247206471,41.472298315],[-71.247131269,41.472306977],[-71.247054022,41.472309689],[-71.246965868,41.47231025],[-71.246892589,41.472309219],[-71.24681727,41.472308962],[-71.246736049,41.47230947],[-71.246652185,41.472340525],[-71.246606282,41.472399658],[-71.246612889,41.472459981],[-71.246632269,41.47251203],[-71.246638878,41.472571598],[-71.24665135,41.472625141],[-71.246643071,41.472681841],[-71.24660605,41.472740169],[-71.246566083,41.472797783],[-71.246531069,41.472856093],[-71.246481228,41.472919013],[-71.246428169,41.47295734],[-71.246365106,41.472987527],[-71.24629508,41.47301779],[-71.246227063,41.473047256],[-71.246156222,41.473091651],[-71.246105203,41.473136684],[-71.246040251,41.473175808],[-71.245967296,41.473208306],[-71.245899209,41.473232581],[-71.245824055,41.473244238],[-71.245761032,41.473279639],[-71.245739843,41.473332674],[-71.24569175,41.473376181],[-71.245619983,41.473423592],[-71.24553427,41.47346809],[-71.245447544,41.473507349],[-71.245364746,41.473545084],[-71.245284817,41.47357242],[-71.245194904,41.473594611],[-71.24510799,41.473619712],[-71.245032016,41.473646302],[-71.244964107,41.473686929],[-71.244914156,41.473738642],[-71.244869156,41.473791806],[-71.244829115,41.47384425],[-71.244829677,41.473894885],[-71.244846177,41.473952143],[-71.24485367,41.474007896],[-71.244855346,41.474011062],[-71.244881003,41.474058497],[-71.244875651,41.474112916],[-71.244841608,41.474171205],[-71.244790727,41.474227421],[-71.244728863,41.474277003],[-71.244663022,41.47432509],[-71.244592153,41.47436802],[-71.244536244,41.47441901],[-71.244496227,41.474472895],[-71.244487946,41.474529571],[-71.244459746,41.474578908],[-71.24438888,41.474621083],[-71.244321858,41.474652037],[-71.244257011,41.474702367],[-71.244226861,41.474752477],[-71.244193734,41.474801871],[-71.244131892,41.474853649],[-71.244071776,41.474883841],[-71.244009733,41.474916979],[-71.243944872,41.474962849],[-71.243865822,41.474982684],[-71.243791839,41.475012959],[-71.243790512,41.475071824],[-71.243736492,41.475113876],[-71.243667515,41.47514709],[-71.243591595,41.475182598],[-71.243501771,41.475212243],[-71.243410885,41.475233629],[-71.243332764,41.47524903],[-71.243245693,41.475259264],[-71.243148719,41.475266549],[-71.243048741,41.475272409],[-71.242954733,41.475283428],[-71.242869595,41.475289161],[-71.242820861,41.475266883],[-71.242806447,41.475260477],[-71.242773447,41.475193477],[-71.242757447,41.475127477],[-71.2427485,41.475056899],[-71.24272759,41.475039985],[-71.242705589,41.475022588],[-71.242625814,41.475010532],[-71.242543738,41.47502593],[-71.24248572,41.475063513],[-71.242431785,41.47511453],[-71.242382789,41.475162516],[-71.242303805,41.475188342],[-71.24222983,41.475216398],[-71.242162022,41.475268961],[-71.242092268,41.47532152],[-71.242021507,41.475374855],[-71.241949779,41.475426746],[-71.241894683,41.47546358],[-71.241813062,41.475517736],[-71.241736374,41.475570325],[-71.241651662,41.475614091],[-71.241584495,41.47563537],[-71.241508361,41.475647754],[-71.241407311,41.475647665],[-71.24132498,41.475635497],[-71.241236659,41.475623359],[-71.241141318,41.475602355],[-71.241072732,41.475582647],[-71.241072446,41.475582477],[-71.241071504,41.475581882],[-71.240996927,41.475535433],[-71.240954599,41.475466407],[-71.240954571,41.475465682],[-71.240954446,41.475465477],[-71.240951446,41.475392476],[-71.240932446,41.475326477],[-71.240889447,41.475276477],[-71.240814748,41.475235641],[-71.240762908,41.475242581],[-71.240731841,41.475300898],[-71.240719573,41.475357588],[-71.240697651,41.475404761],[-71.240689415,41.47542263],[-71.240660553,41.475486099],[-71.240649559,41.475566645],[-71.240647364,41.475636691],[-71.240638116,41.475698602],[-71.240595136,41.475754743],[-71.240546018,41.475794518],[-71.24050209,41.475852165],[-71.240458156,41.4759113],[-71.2404152,41.47596895],[-71.240364173,41.476014712],[-71.240285255,41.476046483],[-71.240221232,41.476079637],[-71.240187119,41.476131269],[-71.240167896,41.476185771],[-71.240124989,41.476246394],[-71.240066051,41.476292984],[-71.240002089,41.476333617],[-71.239933109,41.476366783],[-71.239879174,41.476417043],[-71.239847194,41.476482791],[-71.23982208,41.476542585],[-71.239802972,41.476606006],[-71.239783928,41.476676197],[-71.23977975,41.476747702],[-71.23980124,41.476810895],[-71.239817749,41.476872636],[-71.239838355,41.476944037],[-71.239854895,41.477005778],[-71.23986943,41.477066805],[-71.239893984,41.477139656],[-71.239926367,41.477201318],[-71.239947775,41.477254814],[-71.239976285,41.477326919],[-71.240010692,41.477392245],[-71.240042023,41.477450909],[-71.240069434,41.477508878],[-71.24009986,41.477573486],[-71.240131401,41.477630747],[-71.240144953,41.477655034],[-71.240176642,41.477711634],[-71.240197132,41.47777407],[-71.240197936,41.477847073],[-71.240206447,41.477907477],[-71.240206541,41.477908132],[-71.240205162,41.477964046],[-71.240190981,41.478027433],[-71.240168807,41.478081951],[-71.240124957,41.47815005],[-71.240093869,41.478205348],[-71.240060777,41.478259978],[-71.240024613,41.478307123],[-71.239966876,41.478372264],[-71.239922805,41.478419482],[-71.239880781,41.478471897],[-71.23984371,41.478525055],[-71.239792993,41.478599107],[-71.239741168,41.478661265],[-71.239686411,41.478726458],[-71.239684013,41.478778596],[-71.239706921,41.478799605],[-71.239733446,41.478823477],[-71.23973335,41.478823842],[-71.239734037,41.478824472],[-71.239720736,41.478872995],[-71.239677616,41.478917975],[-71.239613608,41.478954125],[-71.239561608,41.478999152],[-71.239565183,41.479055764],[-71.239588868,41.47909898],[-71.239596446,41.479112478],[-71.239607411,41.479134408],[-71.239625909,41.479170869],[-71.239658101,41.479219815],[-71.239695286,41.479267286],[-71.239728671,41.479329659],[-71.23973332,41.479391488],[-71.239724098,41.479454108],[-71.239710806,41.479507845],[-71.239693831,41.479585427],[-71.239678651,41.479647371],[-71.239663508,41.479715306],[-71.239643355,41.479773488],[-71.239616199,41.479826553],[-71.239585082,41.479881142],[-71.239553035,41.479940212],[-71.239522029,41.480005252],[-71.239491989,41.480064303],[-71.239434272,41.480131662],[-71.239356546,41.480183561],[-71.239268846,41.480227319],[-71.239180057,41.480262154],[-71.239095114,41.480285769],[-71.239003099,41.480298253],[-71.238902066,41.480299625],[-71.238795939,41.480289847],[-71.238703665,41.480275511],[-71.238617475,41.480276795],[-71.238521623,41.480298235],[-71.238455478,41.480321],[-71.23836473,41.480358804],[-71.238292764,41.48039203],[-71.238219913,41.480433488],[-71.238157042,41.480481532],[-71.23811301,41.480533232],[-71.238070022,41.480590104],[-71.238029091,41.480649953],[-71.237997064,41.48071124],[-71.237967056,41.480776992],[-71.237937118,41.480847981],[-71.237902108,41.480910039],[-71.237866063,41.480964639],[-71.237832058,41.481025944],[-71.237804046,41.481094651],[-71.237786844,41.48115213],[-71.237769707,41.48121631],[-71.237751529,41.481274541],[-71.237723592,41.481347021],[-71.237699631,41.481421637],[-71.237686401,41.481482052],[-71.237670249,41.481543261],[-71.237648022,41.481594828],[-71.237605189,41.481665856],[-71.237575028,41.481716719],[-71.237549867,41.481772007],[-71.237542509,41.48179406],[-71.237529703,41.481832475],[-71.237512498,41.481890709],[-71.237496248,41.481945926],[-71.237480098,41.48200638],[-71.237469025,41.482082466],[-71.237460887,41.482154762],[-71.237455579,41.482211422],[-71.237451467,41.482288927],[-71.237451469,41.482288965],[-71.23745513,41.482352964],[-71.237461812,41.482422961],[-71.237464446,41.482481478],[-71.237464463,41.482481812],[-71.2374653,41.482560784],[-71.237460963,41.482618201],[-71.237449783,41.482683103],[-71.237438633,41.48274796],[-71.237435269,41.482805379],[-71.23743587,41.482859765],[-71.23743265,41.482926813],[-71.23742755,41.483007326],[-71.237422352,41.483074392],[-71.237420968,41.483131038],[-71.237422595,41.483187645],[-71.23743028,41.483257668],[-71.237439021,41.483329888],[-71.237446622,41.4833909],[-71.237454173,41.483448961],[-71.237459787,41.483512278],[-71.237460636,41.483588254],[-71.237461366,41.483656043],[-71.237460964,41.48371045],[-71.237450919,41.483788002],[-71.237441651,41.483846185],[-71.237435401,41.483910298],[-71.237432278,41.48399077],[-71.237432993,41.484054831],[-71.237435617,41.484112123],[-71.237435635,41.484112193],[-71.237451085,41.484168719],[-71.237466596,41.484228971],[-71.237475157,41.484285548],[-71.237485646,41.484339134],[-71.237503232,41.484405337],[-71.237502876,41.484463449],[-71.237493572,41.484523141],[-71.237469636,41.484598489],[-71.237444721,41.48467539],[-71.237426582,41.484738835],[-71.23740451,41.484804536],[-71.237376346,41.484857622],[-71.237332558,41.484930935],[-71.237306422,41.484986197],[-71.237283389,41.485056356],[-71.237261369,41.485124298],[-71.237245142,41.485181047],[-71.237229812,41.485234025],[-71.237225496,41.485287944],[-71.237226415,41.485296473],[-71.237233105,41.485352499],[-71.237246688,41.485415697],[-71.237263331,41.485489376],[-71.237282893,41.485555584],[-71.237284645,41.485626325],[-71.237276531,41.485700154],[-71.237275225,41.485759773],[-71.237276788,41.485817134],[-71.237279364,41.485872234],[-71.237291985,41.485914417],[-71.237300243,41.485940606],[-71.237314288,41.48598305],[-71.237314956,41.486043406],[-71.237302659,41.486098586],[-71.23729928,41.486152998],[-71.237335509,41.486175445],[-71.237382446,41.486150479],[-71.237446446,41.486102479],[-71.237524446,41.486114479],[-71.237526899,41.48611518],[-71.237535682,41.486116545],[-71.237586055,41.486132082],[-71.237615446,41.486140479],[-71.237687446,41.486177479],[-71.237736331,41.486221605],[-71.237744024,41.486228511],[-71.237750973,41.486234822],[-71.237800446,41.486279479],[-71.237800828,41.486280098],[-71.237801055,41.486280304],[-71.237838375,41.486340423],[-71.237861785,41.486380855],[-71.237867446,41.486390479],[-71.237929446,41.48642748],[-71.238059446,41.486491479],[-71.238102447,41.486491479],[-71.238139447,41.486442479],[-71.238179447,41.486396479],[-71.238252446,41.486356479],[-71.238329446,41.486325479],[-71.238403446,41.486301479],[-71.238488447,41.486276479],[-71.238563446,41.486247479],[-71.238687447,41.486175479],[-71.238748446,41.486143479],[-71.238817447,41.486111479],[-71.238889446,41.486073479],[-71.238948446,41.486029479],[-71.239000447,41.485976479],[-71.239057447,41.485933479],[-71.239135447,41.485906479],[-71.239320446,41.485846479],[-71.239417446,41.485821479],[-71.239505447,41.485803479],[-71.239596447,41.485791479],[-71.239675503,41.48578519],[-71.239685172,41.485784394],[-71.239689898,41.485784045],[-71.239772447,41.485777479],[-71.239814447,41.485776479],[-71.239886447,41.485772479],[-71.239962447,41.485769479],[-71.240146447,41.485771479],[-71.240223447,41.485767479],[-71.240328447,41.485751479],[-71.240424446,41.485724479],[-71.240554447,41.485675479],[-71.240651447,41.485643479],[-71.240741447,41.485606479],[-71.240807447,41.485584479],[-71.240891447,41.485558479],[-71.240967447,41.485531478],[-71.241122447,41.485474478],[-71.241195447,41.485443479],[-71.241275447,41.485412479],[-71.241352447,41.485380479],[-71.241426447,41.485352479],[-71.241526447,41.485330479],[-71.241599447,41.485331479],[-71.241839364,41.485341732],[-71.241844324,41.4853419],[-71.241850826,41.485342222],[-71.241950447,41.485346479],[-71.242033447,41.485352479],[-71.242118448,41.485361479],[-71.242319447,41.485389479],[-71.242405448,41.485387479],[-71.242486448,41.485373479],[-71.242760448,41.485372479],[-71.242841448,41.485374479],[-71.242921447,41.485383479],[-71.242995448,41.485398478],[-71.243068448,41.485415478],[-71.243317448,41.485483479],[-71.243385245,41.485503818],[-71.243399735,41.485508101],[-71.243409247,41.485511018],[-71.243477448,41.485531478],[-71.243641208,41.485587397],[-71.243641448,41.485587479],[-71.243642399,41.485587795],[-71.243649202,41.485590475],[-71.243729448,41.485621479],[-71.243806794,41.485656725],[-71.243808448,41.485657479],[-71.243808643,41.48565755],[-71.243891188,41.485687582],[-71.243899336,41.485690655],[-71.244071448,41.485753479],[-71.244135389,41.485780245],[-71.244157853,41.485789489],[-71.244189606,41.485804096],[-71.244234448,41.485824478],[-71.244266781,41.48584043],[-71.244310249,41.485861549],[-71.244386949,41.48590133],[-71.244472662,41.485946254],[-71.244555401,41.485989685],[-71.244613707,41.486021447],[-71.244630448,41.486030479],[-71.244701448,41.486072479],[-71.244770449,41.486114479],[-71.244844719,41.486154545],[-71.244846449,41.486155478],[-71.244846541,41.486155525],[-71.244920448,41.486192479],[-71.244994448,41.486224479],[-71.245066448,41.486259479],[-71.245135449,41.486297479],[-71.245140806,41.486300561],[-71.245209213,41.486339537],[-71.245289951,41.486381499],[-71.245370689,41.486423484],[-71.245445438,41.486464724],[-71.245482825,41.48648964],[-71.245557779,41.486538782],[-71.245596151,41.486563604],[-71.245664114,41.486600574],[-71.245682449,41.486610479],[-71.245690464,41.486614987],[-71.245758641,41.486652791],[-71.245827438,41.486691822],[-71.245888571,41.486736435],[-71.245902449,41.486746479],[-71.245902518,41.486746614],[-71.24590335,41.486747221],[-71.245928675,41.4867977],[-71.24594363,41.48681229],[-71.24596949,41.486837475],[-71.246044449,41.486830479],[-71.246110449,41.486849479],[-71.246165449,41.486894479],[-71.246229449,41.486953479],[-71.246279722,41.487001924],[-71.246339766,41.487059673],[-71.246362936,41.487081584],[-71.246407449,41.487123479],[-71.246443125,41.487156098],[-71.246477928,41.487187707],[-71.246542043,41.487249894],[-71.246602273,41.487318088],[-71.246659591,41.487399655],[-71.246668831,41.487412885],[-71.246729431,41.487498687],[-71.246764285,41.48754655],[-71.246798785,41.487596885],[-71.246815449,41.487620479],[-71.246847533,41.487671812],[-71.246871139,41.487709071],[-71.24688925,41.487734801],[-71.246980449,41.487862479],[-71.246992449,41.487882556],[-71.247033317,41.48795018],[-71.247081869,41.488041493],[-71.24712634,41.488118708],[-71.247161004,41.488175077],[-71.247174449,41.488196479],[-71.247183502,41.488213312],[-71.247226314,41.488290979],[-71.247270854,41.488374118],[-71.247310291,41.48844764],[-71.247347892,41.488531587],[-71.247377563,41.488598366],[-71.247388449,41.488622479],[-71.247422834,41.488687811],[-71.247428997,41.488699448],[-71.247436277,41.488714558],[-71.247465449,41.488774479],[-71.247473972,41.488800634],[-71.24749524,41.488864463],[-71.247518994,41.488950758],[-71.2475318,41.489001654],[-71.247544365,41.489049819],[-71.247561375,41.489112153],[-71.247582288,41.489209625],[-71.247600037,41.48929147],[-71.247616758,41.489371826],[-71.247628725,41.489432675],[-71.247641593,41.489495175],[-71.247654435,41.489554159],[-71.247670167,41.489630786],[-71.247680006,41.489713413],[-71.247684015,41.48980879],[-71.247687849,41.489886991],[-71.247688707,41.489963722],[-71.247687712,41.49005536],[-71.247688707,41.490144006],[-71.247687538,41.490217782],[-71.247679413,41.49028937],[-71.247674291,41.490363183],[-71.247675013,41.490427975],[-71.247674616,41.490483114],[-71.247665559,41.490560639],[-71.24770745,41.490621479],[-71.247836449,41.49072548],[-71.24786545,41.49077548],[-71.247867162,41.490778422],[-71.247829023,41.490824856],[-71.247762959,41.490855837],[-71.247703927,41.490893443],[-71.247655825,41.490936219],[-71.247611759,41.490981199],[-71.247568704,41.491032127],[-71.247525811,41.491096458],[-71.247499774,41.491159247],[-71.24743069,41.491396166],[-71.247416112,41.491687955],[-71.24737872,41.491956595],[-71.24733873,41.492244189],[-71.247222279,41.492928591],[-71.247078637,41.493384806],[-71.246924926,41.493801685],[-71.246851145,41.49395466],[-71.246746408,41.49415971],[-71.24670545,41.49421835],[-71.246666572,41.494274021],[-71.246568812,41.494397715],[-71.246430651,41.494484065],[-71.246313459,41.494520696],[-71.246228752,41.494526501],[-71.246120834,41.494532667],[-71.246053264,41.494574667],[-71.245954255,41.494573854],[-71.245878095,41.49459548],[-71.245783928,41.494702418],[-71.245753015,41.49473542],[-71.245705303,41.494786337],[-71.245610183,41.494895582],[-71.245416873,41.495074593],[-71.245212144,41.495318345],[-71.244845409,41.495739094],[-71.244493761,41.496236375],[-71.244394084,41.496443607],[-71.244373808,41.496556311],[-71.24436873,41.496633074],[-71.244358157,41.49665297],[-71.244329072,41.496661757],[-71.24432904,41.496661298],[-71.244328448,41.496661481],[-71.244325454,41.496617557],[-71.244265703,41.4965936],[-71.244194425,41.496649313],[-71.243995133,41.496908147],[-71.243953916,41.496954321],[-71.24378373,41.497167913],[-71.243581792,41.497441262],[-71.243408056,41.497752089],[-71.243325014,41.497858889],[-71.243251909,41.497883494],[-71.243191942,41.497986138],[-71.243133406,41.498065206],[-71.243046927,41.498079398],[-71.243014988,41.498094284],[-71.242946034,41.498200132],[-71.242912983,41.498249915],[-71.242821924,41.49836063],[-71.242678703,41.498522961],[-71.242644624,41.4985713],[-71.242555494,41.49871692],[-71.24245388,41.498888514],[-71.242354729,41.499037244],[-71.242264171,41.499166943],[-71.242181653,41.499217506],[-71.242047476,41.499223289],[-71.241959562,41.499223023],[-71.241895318,41.499198911],[-71.241895177,41.499198751],[-71.241894448,41.499198482],[-71.241834447,41.499129909],[-71.241831843,41.499126957],[-71.24183184,41.49912693],[-71.241831448,41.499126481],[-71.241823474,41.49904275],[-71.241749074,41.499012731],[-71.241748195,41.4990129],[-71.241625141,41.499216738],[-71.241618371,41.499229575],[-71.241632408,41.499232473],[-71.241662448,41.499238482],[-71.241662549,41.499238697],[-71.241663052,41.499238801],[-71.241677645,41.499270824],[-71.241701448,41.499321481],[-71.241725448,41.499330482],[-71.241800448,41.499319481],[-71.241874448,41.499316482],[-71.241946448,41.499351482],[-71.241974437,41.499371549],[-71.242000273,41.499389493],[-71.242044928,41.499435951],[-71.242063435,41.499487263],[-71.242066448,41.499495481],[-71.242066419,41.499495538],[-71.242066713,41.499496353],[-71.242030169,41.499567511],[-71.242002643,41.49963551],[-71.241972922,41.499696712],[-71.241937178,41.499757946],[-71.241907138,41.499807758],[-71.241874217,41.499862915],[-71.241843385,41.499920318],[-71.241822575,41.499974565],[-71.241798939,41.500035666],[-71.241754092,41.500098595],[-71.24171295,41.500147765],[-71.241666043,41.500208448],[-71.241616362,41.500278295],[-71.241574874,41.50035333],[-71.24155208,41.500409081],[-71.241527412,41.500469471],[-71.241498747,41.500532893],[-71.241466911,41.500590317],[-71.241434865,41.50063937],[-71.241389281,41.500711422],[-71.24135934,41.50076654],[-71.241326583,41.500826271],[-71.241283666,41.500885362],[-71.241237818,41.500947533],[-71.241198023,41.50100965],[-71.241162009,41.501061827],[-71.241117164,41.501123978],[-71.241076946,41.50117013],[-71.241035751,41.501217058],[-71.240992728,41.501272375],[-71.240958777,41.50132602],[-71.240919933,41.501385806],[-71.240875112,41.501449513],[-71.240833388,41.501514666],[-71.240799939,41.501587318],[-71.240773417,41.501654518],[-71.240740573,41.501712717],[-71.240702679,41.501770973],[-71.240655822,41.501833919],[-71.240596935,41.501900109],[-71.240546272,41.501971487],[-71.240523425,41.502024974],[-71.240498539,41.502078479],[-71.240462047,41.502151146],[-71.240430529,41.502219936],[-71.240400727,41.502278096],[-71.240374043,41.50233999],[-71.240372824,41.502409123],[-71.240387601,41.502471957],[-71.240389184,41.502532658],[-71.240390788,41.502595668],[-71.240392529,41.502662452],[-71.240393056,41.502720932],[-71.240376659,41.502789505],[-71.24034162,41.502840929],[-71.240308538,41.502889978],[-71.240278711,41.502946629],[-71.240238494,41.502992026],[-71.240232011,41.503053623],[-71.240245809,41.503117964],[-71.240261326,41.503170898],[-71.24026404,41.503237684],[-71.240275669,41.503296715],[-71.240282302,41.503357381],[-71.240266963,41.503427465],[-71.240228094,41.503485742],[-71.240173011,41.503543524],[-71.24011714,41.503608142],[-71.240062271,41.503673472],[-71.240034266,41.503723242],[-71.240008348,41.503776013],[-71.239976381,41.503827376],[-71.239941785,41.503882025],[-71.239911642,41.503941464],[-71.239879693,41.503995845],[-71.239831784,41.504055016],[-71.239795895,41.504113253],[-71.239754935,41.504169283],[-71.239716141,41.504231379],[-71.239683428,41.504294128],[-71.239656478,41.504346165],[-71.239648808,41.504400189],[-71.239650313,41.50440337],[-71.239660448,41.504424483],[-71.239751448,41.504406483],[-71.239822447,41.504366483],[-71.239870448,41.504325483],[-71.239887448,41.504281483],[-71.239886814,41.504285499],[-71.239888162,41.50428199],[-71.239907359,41.504281736],[-71.239872727,41.504376482],[-71.239902447,41.504376482],[-71.239950448,41.504309483],[-71.239992448,41.504319482],[-71.240152148,41.504333573],[-71.240163308,41.504334527],[-71.240193977,41.504341935],[-71.240217448,41.504347483],[-71.240308447,41.504366483],[-71.240400448,41.504390482],[-71.240435448,41.504403483],[-71.240481094,41.504421039],[-71.240487838,41.504423538],[-71.240500263,41.504430473],[-71.240564448,41.504465483],[-71.240630448,41.504515483],[-71.240684448,41.504571482],[-71.2406846,41.504571729],[-71.24068466,41.50457179],[-71.240728887,41.504642489],[-71.240759583,41.50469596],[-71.240788162,41.504746429],[-71.240817247,41.504815082],[-71.240820917,41.504878828],[-71.240822686,41.504946367],[-71.240824531,41.505017726],[-71.240822512,41.50509676],[-71.240816508,41.50517583],[-71.240812511,41.505254837],[-71.240805923,41.505312637],[-71.240795421,41.505375048],[-71.240780931,41.505438297],[-71.240759296,41.505500111],[-71.24073761,41.505559661],[-71.240714869,41.505616968],[-71.240692151,41.505675784],[-71.240673501,41.505736804],[-71.240653854,41.505796313],[-71.240631109,41.505854352],[-71.240597103,41.50590571],[-71.240553918,41.505954965],[-71.240535065,41.505975437],[-71.240510712,41.506001911],[-71.240458907,41.506068758],[-71.240417046,41.50612936],[-71.240369844,41.50617863],[-71.240317723,41.506233308],[-71.240275861,41.506293933],[-71.240238919,41.506349149],[-71.240194812,41.506400667],[-71.240158,41.506461212],[-71.240132029,41.506511696],[-71.240101062,41.506563815],[-71.240052352,41.506632841],[-71.240014557,41.506695693],[-71.239987904,41.506718846],[-71.239927564,41.506728864],[-71.239904633,41.506780064],[-71.239885115,41.506844901],[-71.23985343,41.50690914],[-71.239813313,41.506959112],[-71.239748397,41.506987369],[-71.239685908,41.507032327],[-71.239646984,41.507088362],[-71.23960901,41.507142821],[-71.239555643,41.507189171],[-71.239494903,41.507222744],[-71.239418589,41.507240547],[-71.239321043,41.507257181],[-71.239221696,41.507282913],[-71.239130732,41.507319939],[-71.239070914,41.507351227],[-71.239009194,41.507386284],[-71.238923389,41.507426271],[-71.238859555,41.507457572],[-71.238792651,41.507488158],[-71.238707847,41.507528925],[-71.23864208,41.507564064],[-71.238555798,41.507586601],[-71.238515099,41.507614501],[-71.23853884,41.507672667],[-71.238527386,41.507736563],[-71.238491309,41.507787984],[-71.238456476,41.507847755],[-71.238411572,41.507907618],[-71.238334623,41.507939118],[-71.238257115,41.507950925],[-71.238192149,41.507938199],[-71.238154307,41.507997186],[-71.238124579,41.508058386],[-71.238091519,41.508108236],[-71.23805748,41.508159616],[-71.238030503,41.50821012],[-71.238003556,41.508260624],[-71.237976655,41.508314947],[-71.237956873,41.50836915],[-71.237937243,41.508430945],[-71.237903368,41.508486876],[-71.237829775,41.508493272],[-71.237794759,41.508545427],[-71.237781266,41.508609409],[-71.237768856,41.508676436],[-71.237771389,41.508734851],[-71.237773155,41.508802436],[-71.237754374,41.508857349],[-71.237737577,41.508910735],[-71.23773609,41.508969988],[-71.237698426,41.509037368],[-71.237649133,41.509083682],[-71.23757953,41.509126473],[-71.237526429,41.509143961],[-71.23743197,41.509171395],[-71.237419146,41.50917514],[-71.237340532,41.509181592],[-71.237247288,41.509209532],[-71.237185486,41.509241592],[-71.23712995,41.509281876],[-71.237082534,41.509322842],[-71.237017239,41.509376185],[-71.236951709,41.509419694],[-71.236870629,41.509448942],[-71.236823057,41.509445838],[-71.236822995,41.509445518],[-71.236822447,41.509445483],[-71.236812556,41.509392073],[-71.236749106,41.509397573],[-71.236735561,41.509459268],[-71.236715717,41.509513493],[-71.236663837,41.509537044],[-71.236581042,41.509539004],[-71.236550234,41.509558465],[-71.2365447,41.509617754],[-71.236542253,41.509680846],[-71.236563967,41.50972102],[-71.236566447,41.509725484],[-71.236618447,41.509733483],[-71.236618481,41.509734232],[-71.236619408,41.509734378],[-71.236620568,41.509778406],[-71.236547847,41.509779497],[-71.236487313,41.509821347],[-71.236455523,41.509880279],[-71.236444222,41.509951058],[-71.236431917,41.510021881],[-71.236413162,41.510077618],[-71.23638925,41.510129569],[-71.236365337,41.510181566],[-71.23633476,41.510248848],[-71.236255402,41.510265933],[-71.236222435,41.510319578],[-71.236215777,41.510373582],[-71.236216531,41.510442674],[-71.236206976,41.510502823],[-71.236221552,41.510562738],[-71.236224302,41.510569385],[-71.236246417,41.510620693],[-71.236267089,41.510677366],[-71.236260447,41.510732124],[-71.236203194,41.510745098],[-71.236151174,41.510765584],[-71.236127422,41.510822933],[-71.236126511,41.51090492],[-71.236127932,41.510959605],[-71.236127548,41.511024143],[-71.236085758,41.511087785],[-71.236058993,41.51114515],[-71.236041266,41.51120233],[-71.236013889,41.511275634],[-71.235988596,41.511352693],[-71.235968437,41.51143196],[-71.235951079,41.511502839],[-71.235942426,41.511558416],[-71.235949011,41.511618672],[-71.235990447,41.511632484],[-71.23599047,41.511632779],[-71.235990835,41.5116329],[-71.235996825,41.511708728],[-71.235991554,41.51177792],[-71.235985889,41.51183188],[-71.235985563,41.511897218],[-71.235970799,41.511951363],[-71.235895695,41.511976736],[-71.235821118,41.511984684],[-71.235758388,41.51201976],[-71.235692591,41.512053364],[-71.235607381,41.512079675],[-71.235549863,41.512120022],[-71.235496517,41.512167126],[-71.235446161,41.512211881],[-71.235467043,41.512276902],[-71.235480669,41.512298048],[-71.235497447,41.512323485],[-71.235569446,41.512329484],[-71.235610446,41.512364485],[-71.235610156,41.512364635],[-71.235610784,41.512365167],[-71.235550932,41.512395653],[-71.235477784,41.512418743],[-71.235443055,41.51248151],[-71.235452305,41.512526196],[-71.235497912,41.512571835],[-71.235479447,41.512638161],[-71.23543261,41.512663141],[-71.235343752,41.512665979],[-71.235277796,41.512693522],[-71.23521435,41.512740008],[-71.235146723,41.512782001],[-71.235077912,41.512815667],[-71.235046271,41.512882215],[-71.235045816,41.512941424],[-71.235059639,41.51300652],[-71.235100276,41.513054526],[-71.235111,41.513118152],[-71.235113,41.513194817],[-71.235107385,41.513251132],[-71.235088707,41.513309865],[-71.235054851,41.513367305],[-71.23501081,41.51342264],[-71.234969731,41.513475603],[-71.234935717,41.513526982],[-71.234905692,41.513577547],[-71.234874638,41.5136266],[-71.234837506,41.513674221],[-71.234790133,41.513718205],[-71.234735571,41.513756981],[-71.234673792,41.513789794],[-71.234611084,41.513826378],[-71.234548485,41.513866004],[-71.23432567,41.513961932],[-71.234104022,41.514025181],[-71.233831843,41.514086094],[-71.233706597,41.514087954],[-71.23362578,41.514088362],[-71.23354158,41.5140752],[-71.233457381,41.514061946],[-71.233391033,41.514036338],[-71.233359598,41.513992766],[-71.233359593,41.513992688],[-71.233359446,41.513992485],[-71.233355446,41.513934485],[-71.233352446,41.513822485],[-71.233333446,41.513758485],[-71.233297703,41.51369792],[-71.233237974,41.513665766],[-71.233164148,41.513663055],[-71.233126695,41.513699309],[-71.233097774,41.513655476],[-71.233090844,41.513645082],[-71.23307353,41.513636027],[-71.233060832,41.513629678],[-71.232998873,41.513639619],[-71.232995555,41.513706506],[-71.232985045,41.513768916],[-71.233020032,41.513832154],[-71.233020057,41.513832183],[-71.233061446,41.513879485],[-71.233061634,41.513880131],[-71.23306169,41.513880196],[-71.233078262,41.513934642],[-71.233077776,41.513993851],[-71.233059993,41.514048789],[-71.233045838,41.514098061],[-71.23303962,41.514119707],[-71.233030268,41.514188981],[-71.233032099,41.514259585],[-71.233034759,41.514323111],[-71.233063446,41.514380485],[-71.233080711,41.514406628],[-71.233099275,41.514433986],[-71.233101088,41.514503835],[-71.233102558,41.514560761],[-71.233112781,41.514604507],[-71.233189446,41.514609484],[-71.233237446,41.514622485],[-71.233236913,41.514623151],[-71.233237521,41.514623326],[-71.233189567,41.514682494],[-71.233150679,41.5147423],[-71.233124912,41.514783803],[-71.233166027,41.514811898],[-71.23318515,41.514824551],[-71.233196696,41.514827727],[-71.233252446,41.514842484],[-71.233283279,41.514858399],[-71.233283446,41.514858485],[-71.233284052,41.514858788],[-71.2333184,41.514897015],[-71.233340882,41.514927644],[-71.233335074,41.514949893]]]]}}"}, +{"type": "precinct", "typeId": 1902, "areaId": 25814, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":153,\"NAME\":\"1902\",\"SHAPE_Length\":0.13401483720636,\"SHAPE_Area\":-0.00046315230604563},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.267635488,41.48871508],[-71.267661456,41.489193479],[-71.267570456,41.489321479],[-71.267417456,41.489598479],[-71.267257456,41.489930479],[-71.267112456,41.490302479],[-71.267021456,41.490592479],[-71.266998456,41.490678479],[-71.266975456,41.490827479],[-71.266960456,41.490940479],[-71.266929456,41.491351479],[-71.266924456,41.491794479],[-71.266921456,41.491995479],[-71.266921456,41.492747479],[-71.266922456,41.49282348],[-71.266921456,41.49295948],[-71.266922456,41.493490479],[-71.266921456,41.494192479],[-71.266922456,41.49477848],[-71.266914456,41.49495848],[-71.266914456,41.49517448],[-71.266906457,41.49579648],[-71.266914456,41.49609848],[-71.266922456,41.49653948],[-71.266929456,41.49671448],[-71.266998456,41.49715448],[-71.267013456,41.49724448],[-71.267082457,41.497576481],[-71.267089456,41.49762548],[-71.267143456,41.497854481],[-71.267288456,41.49862148],[-71.267486457,41.49953648],[-71.267555456,41.49984548],[-71.267707456,41.500581481],[-71.267781457,41.500946481],[-71.267806456,41.501070481],[-71.267875457,41.501401481],[-71.267951457,41.501747481],[-71.267989457,41.501949482],[-71.268012457,41.502115481],[-71.268058456,41.502348481],[-71.268089457,41.502537481],[-71.268119457,41.502694481],[-71.268188457,41.502976481],[-71.268234457,41.503232482],[-71.268295457,41.503510482],[-71.268333457,41.503752481],[-71.268356457,41.503945481],[-71.268371457,41.504008482],[-71.268417457,41.504322482],[-71.268447457,41.504660482],[-71.268486458,41.504997482],[-71.268516457,41.505316482],[-71.268562457,41.505752482],[-71.268609457,41.506309482],[-71.268615457,41.506376482],[-71.268669457,41.506808482],[-71.268692457,41.507032482],[-71.268714457,41.507172482],[-71.268867457,41.507898483],[-71.269126458,41.509136483],[-71.269126458,41.509181483],[-71.269134457,41.509226482],[-71.269134457,41.509271482],[-71.269141458,41.509302483],[-71.269142458,41.509401482],[-71.269149458,41.509437483],[-71.269149458,41.509491483],[-71.269157457,41.509527483],[-71.269381458,41.509551483],[-71.269431458,41.509553483],[-71.269584457,41.509550483],[-71.269668458,41.509544483],[-71.269752458,41.509542482],[-71.270026458,41.509501482],[-71.270477458,41.509442482],[-71.271430459,41.509293483],[-71.271591458,41.509267482],[-71.271774458,41.509241483],[-71.272193458,41.509170482],[-71.272834459,41.509054482],[-71.273941459,41.508829483],[-71.27402446,41.508814483],[-71.274864459,41.508649482],[-71.27546646,41.508551482],[-71.27579446,41.508500483],[-71.27619946,41.508433482],[-71.27793846,41.508196482],[-71.27777846,41.509402482],[-71.27771746,41.509790483],[-71.277671461,41.510156483],[-71.277549461,41.511198482],[-71.27748146,41.511911483],[-71.27740446,41.512980483],[-71.277358461,41.513593484],[-71.277335461,41.513932483],[-71.27726746,41.514559483],[-71.27720646,41.515092484],[-71.277122461,41.515688484],[-71.277023461,41.516298484],[-71.277007461,41.516428484],[-71.27684046,41.517540484],[-71.27660346,41.519593485],[-71.276474461,41.520780485],[-71.27635146,41.521800485],[-71.276306461,41.522243485],[-71.276206461,41.523118485],[-71.276092461,41.524138486],[-71.276008461,41.524986485],[-71.275932461,41.525627485],[-71.275909461,41.525961485],[-71.275894461,41.526160486],[-71.276001461,41.526067486],[-71.27625246,41.525887486],[-71.27675646,41.525584486],[-71.276979461,41.525448486],[-71.278167461,41.524728486],[-71.278747461,41.524378485],[-71.278991462,41.524229485],[-71.279304462,41.524043486],[-71.279480462,41.523936485],[-71.280006462,41.523619485],[-71.280845462,41.523121485],[-71.281120462,41.522953485],[-71.281631462,41.522628485],[-71.281944462,41.522433485],[-71.282150463,41.522307485],[-71.282241462,41.522255484],[-71.282272463,41.522232485],[-71.282478463,41.522116484],[-71.282722463,41.521917485],[-71.282882462,41.521761485],[-71.283042463,41.521591484],[-71.283218463,41.521349485],[-71.283325463,41.521135485],[-71.283386462,41.520985484],[-71.283424463,41.520850484],[-71.283455463,41.520714484],[-71.283462463,41.520547484],[-71.283454463,41.520349484],[-71.283439463,41.520210484],[-71.283409462,41.519787484],[-71.283370462,41.519473484],[-71.283363463,41.519441485],[-71.283302463,41.518889484],[-71.283203463,41.518107484],[-71.283195462,41.518071484],[-71.283180463,41.517950484],[-71.283157462,41.517725484],[-71.283112463,41.517343484],[-71.283073463,41.517038484],[-71.283035462,41.516728484],[-71.282951463,41.515982484],[-71.282867462,41.515200483],[-71.282791462,41.514553483],[-71.282745462,41.514162483],[-71.282577462,41.512657482],[-71.282554462,41.512504483],[-71.282463462,41.511736483],[-71.282421462,41.511390482],[-71.282379462,41.511031483],[-71.282348462,41.510621483],[-71.282356462,41.510383482],[-71.282440462,41.509620482],[-71.282463462,41.509471482],[-71.282608462,41.508257482],[-71.282653462,41.507765482],[-71.282646461,41.507445482],[-71.282638462,41.507423482],[-71.282600462,41.507307482],[-71.282325462,41.506718482],[-71.281871461,41.505755481],[-71.281295462,41.504540482],[-71.281196461,41.504344481],[-71.281021461,41.503969481],[-71.280891461,41.503684482],[-71.280670461,41.503215481],[-71.28040246,41.502685481],[-71.280197461,41.502265481],[-71.28015146,41.502181481],[-71.279869461,41.501588481],[-71.27978546,41.501409481],[-71.279632461,41.501088481],[-71.27948746,41.500775481],[-71.27939646,41.50058848],[-71.279289461,41.50035648],[-71.27920546,41.500169481],[-71.27916746,41.50006548],[-71.27914446,41.50000348],[-71.27910646,41.499837481],[-71.27910646,41.499725481],[-71.27909846,41.499626481],[-71.27913646,41.499454481],[-71.27924346,41.49922748],[-71.27927646,41.499181481],[-71.27922346,41.49907248],[-71.279189461,41.499003481],[-71.27903746,41.498654481],[-71.27869446,41.497738481],[-71.27826646,41.49654448],[-71.27886946,41.49644748],[-71.28057846,41.49616948],[-71.281364461,41.496028479],[-71.282585462,41.49581948],[-71.283470461,41.495680479],[-71.283577462,41.49566448],[-71.283912462,41.49560348],[-71.283950462,41.49556748],[-71.284210462,41.495309479],[-71.284263462,41.49521848],[-71.284339462,41.495109479],[-71.284378462,41.49502748],[-71.284393462,41.494995479],[-71.284431462,41.494936479],[-71.284492462,41.494813479],[-71.284500461,41.49479048],[-71.284515462,41.494736479],[-71.284530462,41.494659479],[-71.284553462,41.494505479],[-71.284469462,41.493886479],[-71.284385461,41.493405479],[-71.284339462,41.493186479],[-71.284263462,41.492822479],[-71.284248461,41.492760479],[-71.284141462,41.492172479],[-71.284110461,41.492033479],[-71.284042462,41.491706479],[-71.284171461,41.491532479],[-71.284271461,41.491377479],[-71.284423461,41.491131478],[-71.284591462,41.490902479],[-71.284820462,41.490708479],[-71.285141461,41.490508478],[-71.285499462,41.490321479],[-71.285758462,41.490172478],[-71.285842462,41.490085478],[-71.285865462,41.490008478],[-71.285888462,41.489935479],[-71.286071462,41.489949478],[-71.286270462,41.489936479],[-71.286514462,41.489900478],[-71.286590462,41.489885478],[-71.286659462,41.489876478],[-71.286562462,41.489778478],[-71.286483462,41.489702478],[-71.286428462,41.489660478],[-71.286361462,41.489606478],[-71.286305462,41.489569478],[-71.286257462,41.489518478],[-71.286209462,41.489476478],[-71.286145462,41.489430478],[-71.286049462,41.489337478],[-71.286009462,41.489290478],[-71.285916207,41.489255755],[-71.285916284,41.489256313],[-71.285861363,41.489240261],[-71.285832506,41.489223334],[-71.285789462,41.489198478],[-71.285760309,41.48917104],[-71.285738989,41.489151434],[-71.285720886,41.489131805],[-71.285690462,41.489099479],[-71.285675195,41.489066171],[-71.28566452,41.489043921],[-71.285641006,41.488991576],[-71.285635534,41.488979636],[-71.285626851,41.488965283],[-71.285598462,41.488918478],[-71.285597074,41.488917229],[-71.285548462,41.488873478],[-71.285531412,41.488866761],[-71.28548252,41.488848249],[-71.285396679,41.48883224],[-71.285296864,41.48882023],[-71.285223283,41.488812728],[-71.285142742,41.488803933],[-71.285053416,41.488792595],[-71.285052462,41.488792478],[-71.285042913,41.488790938],[-71.284959696,41.488777908],[-71.284865919,41.488761312],[-71.284774799,41.488741405],[-71.284681885,41.488721494],[-71.284590734,41.488701564],[-71.284503081,41.488681619],[-71.284502461,41.488681478],[-71.28441281,41.488663015],[-71.284354461,41.488652468],[-71.284285485,41.488640564],[-71.284215708,41.488629186],[-71.284111576,41.48861405],[-71.284079036,41.48860953],[-71.284000225,41.488598685],[-71.283898675,41.488587379],[-71.283795378,41.48858005],[-71.283684229,41.488574032],[-71.283574845,41.488568017],[-71.28346981,41.488561987],[-71.283364829,41.488557948],[-71.283260646,41.488551874],[-71.283162618,41.488542518],[-71.283150291,41.488540873],[-71.283071461,41.488530478],[-71.283052557,41.48852729],[-71.282989213,41.488517103],[-71.282899778,41.488493881],[-71.282875687,41.488485332],[-71.282764577,41.488447259],[-71.282756717,41.488444623],[-71.28267954,41.488421333],[-71.282614566,41.48839603],[-71.282535536,41.48836288],[-71.28245742,41.488329113],[-71.282390689,41.48830184],[-71.282324001,41.488279782],[-71.282254628,41.488251223],[-71.282254511,41.488250499],[-71.282254461,41.488250478],[-71.282248461,41.488216478],[-71.28227746,41.488149478],[-71.282301461,41.488088478],[-71.282312388,41.488026892],[-71.282280189,41.488003768],[-71.28225846,41.487988478],[-71.282242089,41.487975813],[-71.282205488,41.487948262],[-71.282160477,41.487901797],[-71.282151635,41.48787765],[-71.28214046,41.487847478],[-71.282133357,41.487829566],[-71.28211751,41.487790201],[-71.282077696,41.487745026],[-71.28202353,41.487707995],[-71.282009461,41.487698478],[-71.28196446,41.487652478],[-71.28192446,41.487585478],[-71.28189246,41.487518478],[-71.281878461,41.487456478],[-71.281880461,41.487398478],[-71.28188646,41.487339478],[-71.281871989,41.487288405],[-71.281869694,41.487280417],[-71.281855817,41.487264318],[-71.2818426,41.487249632],[-71.281842109,41.487249634],[-71.281762244,41.487285237],[-71.28175954,41.487286886],[-71.281691383,41.48729515],[-71.2816082,41.487285729],[-71.28154343,41.487271324],[-71.281512461,41.487264478],[-71.281486936,41.487256244],[-71.281419678,41.487234714],[-71.28132483,41.487193757],[-71.281264158,41.48715789],[-71.281264089,41.487157849],[-71.28126346,41.487157478],[-71.281252687,41.487149398],[-71.281212181,41.487119375],[-71.281172187,41.487082321],[-71.28114846,41.487060478],[-71.281104461,41.486994477],[-71.28108746,41.486920478],[-71.28109446,41.486842478],[-71.28111346,41.486787478],[-71.28118346,41.486647478],[-71.281200461,41.486591478],[-71.281178679,41.486539994],[-71.281080662,41.486506392],[-71.281033538,41.486462098],[-71.28102746,41.486456478],[-71.28099146,41.486401478],[-71.280926461,41.486361478],[-71.280916671,41.486355846],[-71.280855945,41.486321403],[-71.28078121,41.486278379],[-71.280706249,41.486245549],[-71.280694461,41.486240478],[-71.280681889,41.486233427],[-71.280621341,41.48620027],[-71.280558969,41.486164493],[-71.28054646,41.486157477],[-71.28051646,41.486099477],[-71.28052746,41.486037478],[-71.28053346,41.485973478],[-71.28054346,41.485919478],[-71.280559358,41.485860852],[-71.280536608,41.485830392],[-71.280440338,41.485824308],[-71.280375469,41.485804905],[-71.280323642,41.485747949],[-71.28032046,41.485744478],[-71.28024146,41.485601478],[-71.280220267,41.48556439],[-71.280209522,41.485545974],[-71.28020946,41.485545478],[-71.280209401,41.485545073],[-71.28020046,41.485483478],[-71.28025346,41.485388478],[-71.28026346,41.485318477],[-71.28026446,41.485255478],[-71.28030346,41.485198478],[-71.28033746,41.485177478],[-71.28041946,41.485141477],[-71.28048746,41.485090477],[-71.280511422,41.485031572],[-71.280475666,41.484990146],[-71.280402232,41.484994488],[-71.28040146,41.484994478],[-71.280400445,41.484994462],[-71.280336633,41.484993517],[-71.28033661,41.48499348],[-71.28033646,41.484993477],[-71.280325364,41.484975489],[-71.280304659,41.484942364],[-71.280270903,41.484887297],[-71.280269703,41.484887235],[-71.280225507,41.48493143],[-71.28022412,41.484934206],[-71.280225551,41.48499669],[-71.280186703,41.485053493],[-71.280127664,41.485100447],[-71.280089629,41.485150642],[-71.280078874,41.485219094],[-71.280079227,41.485258546],[-71.280042081,41.485306754],[-71.279994821,41.48530568],[-71.279994459,41.485305478],[-71.27993146,41.485269478],[-71.2799132,41.485257634],[-71.279857603,41.485222193],[-71.279805239,41.48517488],[-71.27979246,41.485163477],[-71.279740459,41.485108477],[-71.279705593,41.485046714],[-71.279705459,41.485046477],[-71.27967246,41.484976478],[-71.27963546,41.484909477],[-71.27959846,41.484855477],[-71.27955146,41.484799478],[-71.27955146,41.484744478],[-71.279566459,41.484664478],[-71.27958246,41.484609478],[-71.27960946,41.484548478],[-71.27964946,41.484501477],[-71.27967246,41.484445477],[-71.27971446,41.484397478],[-71.27977146,41.484353478],[-71.279762502,41.484303716],[-71.279709826,41.484260089],[-71.279657775,41.484210338],[-71.279652988,41.484198923],[-71.27963246,41.484150477],[-71.27964146,41.484102478],[-71.279667459,41.483965478],[-71.279661459,41.483898477],[-71.279613415,41.483849452],[-71.279613391,41.483849428],[-71.27961246,41.483848478],[-71.279583459,41.483799477],[-71.279582463,41.483733652],[-71.279552462,41.483687328],[-71.279478083,41.483683755],[-71.27941976,41.483716965],[-71.279329479,41.483694379],[-71.279298327,41.483732695],[-71.279267359,41.483788759],[-71.279209636,41.483788396],[-71.279142055,41.483762469],[-71.279075241,41.483725314],[-71.279062995,41.483714159],[-71.279024459,41.483679477],[-71.279015854,41.483675988],[-71.278988099,41.483665227],[-71.278903409,41.483680136],[-71.278825509,41.483674612],[-71.27872996,41.483654051],[-71.278660731,41.483638618],[-71.278566119,41.483620002],[-71.278491519,41.483592117],[-71.278437797,41.483550939],[-71.27838493,41.483509123],[-71.278347849,41.483469888],[-71.278347459,41.483469477],[-71.278397459,41.483419477],[-71.278453459,41.483367477],[-71.278492459,41.483315477],[-71.278460547,41.483272595],[-71.27837727,41.483240179],[-71.278376459,41.483239477],[-71.278321746,41.483192434],[-71.278321875,41.48319184],[-71.278321459,41.483191477],[-71.27833346,41.483134477],[-71.278273459,41.482992478],[-71.278254459,41.482923477],[-71.278246459,41.482853477],[-71.278243459,41.482782477],[-71.278234459,41.482712477],[-71.278211459,41.482644477],[-71.278175459,41.482580477],[-71.278150954,41.482532211],[-71.278142458,41.48251589],[-71.278136466,41.482499655],[-71.278117459,41.482449477],[-71.278097459,41.482388477],[-71.278084459,41.482323477],[-71.278073459,41.482248477],[-71.278043459,41.482098477],[-71.278035459,41.482024477],[-71.278021459,41.481953477],[-71.278004459,41.481889477],[-71.277963459,41.481771477],[-71.277943912,41.48172442],[-71.277936619,41.481707289],[-71.277932318,41.48169578],[-71.277912459,41.481644477],[-71.277911459,41.481583477],[-71.277931459,41.481535477],[-71.277982459,41.481431477],[-71.277966459,41.481369477],[-71.277947882,41.481349443],[-71.277915576,41.481314753],[-71.277874027,41.48129437],[-71.277847459,41.481281477],[-71.277754459,41.481219477],[-71.277783459,41.481162476],[-71.277848458,41.481120477],[-71.277898459,41.481072477],[-71.277869756,41.48101903],[-71.277779999,41.481020795],[-71.277701261,41.481021214],[-71.277642597,41.48101225],[-71.277609135,41.480988103],[-71.277609224,41.480988016],[-71.277608459,41.480987476],[-71.277661459,41.480935477],[-71.277702459,41.480868477],[-71.277726323,41.480814782],[-71.277715575,41.480791582],[-71.277697459,41.480753476],[-71.277661866,41.480741128],[-71.277648861,41.480736655],[-71.277581875,41.480777783],[-71.277518278,41.480806385],[-71.277467469,41.480794806],[-71.277431615,41.48075925],[-71.277409459,41.480737477],[-71.277357914,41.480675028],[-71.277357893,41.480675002],[-71.277357459,41.480674477],[-71.277313459,41.480605477],[-71.277280592,41.48056774],[-71.277259642,41.480543954],[-71.277203169,41.480490306],[-71.277153858,41.480449799],[-71.277153844,41.480449734],[-71.277153459,41.480449477],[-71.277138459,41.480380477],[-71.277107458,41.480321477],[-71.277066459,41.480269476],[-71.277063459,41.480214477],[-71.277069458,41.480154477],[-71.277056582,41.480128724],[-71.277018034,41.480132146],[-71.276957099,41.480164686],[-71.276875851,41.48017036],[-71.276783964,41.480165585],[-71.276709658,41.480168574],[-71.276709561,41.480168472],[-71.276709459,41.480168476],[-71.276692868,41.48015091],[-71.276692459,41.480150476],[-71.276690465,41.480085691],[-71.276641193,41.48004723],[-71.276559954,41.480058827],[-71.276470604,41.480041524],[-71.276470458,41.480041477],[-71.276469242,41.480040945],[-71.276406529,41.480014253],[-71.276342387,41.479980372],[-71.276220342,41.47992838],[-71.276143012,41.479891294],[-71.276103687,41.479868163],[-71.276030324,41.479825939],[-71.276004125,41.47981107],[-71.275919833,41.479773376],[-71.275831992,41.479733023],[-71.275759139,41.479703149],[-71.275676011,41.479698322],[-71.275654098,41.47969446],[-71.275636763,41.479656847],[-71.275635458,41.479655477],[-71.275636458,41.479588476],[-71.275623458,41.479529476],[-71.275623214,41.479529428],[-71.275558064,41.47951671],[-71.27549253,41.479524952],[-71.275412788,41.479508239],[-71.275335601,41.479482977],[-71.275249853,41.47947947],[-71.275165891,41.479478597],[-71.275078432,41.479477694],[-71.275025217,41.479493782],[-71.274981045,41.47954202],[-71.274938635,41.479590879],[-71.274858608,41.479639298],[-71.274789822,41.479673217],[-71.274721932,41.479711689],[-71.274664591,41.479751439],[-71.274591624,41.479807076],[-71.274520217,41.479842293],[-71.274450438,41.47986434],[-71.274411286,41.479885624],[-71.274374309,41.479954871],[-71.274386198,41.48001662],[-71.274441742,41.480065648],[-71.274433385,41.480107781],[-71.274375109,41.480144922],[-71.27430806,41.480177495],[-71.274270968,41.480236198],[-71.274258559,41.480315212],[-71.274239865,41.48037386],[-71.274201801,41.480423368],[-71.274155913,41.480474872],[-71.274098656,41.480525188],[-71.274041485,41.480568186],[-71.274030874,41.48057617],[-71.27395524,41.480628508],[-71.273880564,41.480685445],[-71.273817251,41.480745606],[-71.273773209,41.48080832],[-71.273736165,41.480870317],[-71.273680683,41.480925873],[-71.273608591,41.480982792],[-71.2735374,41.481043006],[-71.273467973,41.4811032],[-71.273394076,41.481154238],[-71.273312315,41.481201989],[-71.273234944,41.481255033],[-71.273165467,41.481311911],[-71.273099582,41.481376709],[-71.273027491,41.481432964],[-71.272955339,41.481480689],[-71.272911249,41.481539469],[-71.272887293,41.481598129],[-71.272843137,41.481649637],[-71.272778746,41.481686788],[-71.272703757,41.481710859],[-71.27262522,41.481731652],[-71.27249705,41.481779014],[-71.27242921,41.481819452],[-71.27235516,41.481853359],[-71.272277858,41.481912302],[-71.272226697,41.481957941],[-71.272172024,41.482007552],[-71.272117363,41.482062423],[-71.272067935,41.482108065],[-71.272009765,41.482157646],[-71.271943529,41.482183015],[-71.271897845,41.482253593],[-71.271871237,41.482313597],[-71.271794718,41.482365932],[-71.27172596,41.482399163],[-71.271651812,41.482425842],[-71.271579404,41.482442005],[-71.271484101,41.482447739],[-71.271408007,41.482448136],[-71.271323164,41.482445932],[-71.271316794,41.482445485],[-71.271316456,41.482445478],[-71.2713151,41.482445366],[-71.271244384,41.482440401],[-71.271226852,41.482435884],[-71.271230986,41.482418373],[-71.271230457,41.482417477],[-71.271251457,41.482377477],[-71.271250457,41.482285477],[-71.271237469,41.482217541],[-71.271228029,41.482207844],[-71.271191457,41.482170477],[-71.271212457,41.482107477],[-71.271259456,41.482005477],[-71.271281457,41.481982477],[-71.271324457,41.481970477],[-71.271322457,41.481838477],[-71.271320457,41.481783477],[-71.271303248,41.481743075],[-71.27129752,41.481729798],[-71.271271365,41.481738459],[-71.271250897,41.481799116],[-71.270962613,41.482422779],[-71.270919619,41.48250649],[-71.270880094,41.482589566],[-71.270836246,41.482673984],[-71.270795853,41.482753102],[-71.270756316,41.482830896],[-71.270714137,41.482907426],[-71.270670263,41.482990517],[-71.27062906,41.483074917],[-71.270590397,41.483154725],[-71.270552596,41.483231835],[-71.270515613,41.483301081],[-71.270482943,41.483363062],[-71.270448437,41.483419825],[-71.270385076,41.483474724],[-71.270304756,41.483491579],[-71.270232168,41.483489307],[-71.270160385,41.483483103],[-71.270093553,41.483443976],[-71.27002155,41.483414078],[-71.270013008,41.483399493],[-71.269992456,41.483365478],[-71.269961457,41.483308477],[-71.269937932,41.483297121],[-71.269904048,41.483281151],[-71.269839527,41.483302497],[-71.269839502,41.483302462],[-71.269839456,41.483302478],[-71.269800456,41.483248478],[-71.269792457,41.483191477],[-71.269799456,41.483139477],[-71.269842771,41.48307756],[-71.269955456,41.482916478],[-71.269989344,41.482861658],[-71.269984038,41.482839418],[-71.269975456,41.482804477],[-71.269968457,41.482750477],[-71.269959563,41.48271787],[-71.269921519,41.482787125],[-71.269660237,41.483304059],[-71.269628442,41.483368055],[-71.269598495,41.483442505],[-71.269574612,41.483513652],[-71.269548963,41.48357695],[-71.269518924,41.48364287],[-71.269490657,41.483706781],[-71.269471892,41.483766754],[-71.269453346,41.483842462],[-71.26944864,41.483897753],[-71.269469981,41.483929764],[-71.269499113,41.483972479],[-71.269505798,41.484034264],[-71.269521146,41.484088771],[-71.269544348,41.484140608],[-71.269591456,41.484147477],[-71.269637457,41.484135478],[-71.269675457,41.484086478],[-71.269675902,41.48408741],[-71.269675955,41.484087343],[-71.269678997,41.484093881],[-71.269686456,41.484109477],[-71.26968645,41.484109895],[-71.26968664,41.484110303],[-71.269686294,41.484173469],[-71.269668539,41.484240626],[-71.269635732,41.484289456],[-71.269587309,41.484350857],[-71.26954564,41.484385948],[-71.269460612,41.484366635],[-71.269380019,41.484348635],[-71.269379457,41.484348478],[-71.269377044,41.484347772],[-71.269297562,41.484324707],[-71.269233835,41.484336198],[-71.269222938,41.484390195],[-71.269076751,41.484669785],[-71.269022983,41.484626018],[-71.268970407,41.484615072],[-71.268942274,41.484598114],[-71.268942275,41.484597974],[-71.268941456,41.484597477],[-71.268942456,41.484541478],[-71.268948456,41.484481477],[-71.268942472,41.48444358],[-71.26890502,41.484443072],[-71.268866998,41.484495894],[-71.268830937,41.484570401],[-71.268806068,41.484627755],[-71.26878387,41.484686394],[-71.268761619,41.484743067],[-71.268737589,41.48479514],[-71.268698842,41.484863741],[-71.268673163,41.484926376],[-71.26865351,41.484979097],[-71.268632127,41.485031152],[-71.268611094,41.485129908],[-71.268557342,41.485184116],[-71.268514156,41.485243537],[-71.268485831,41.485306144],[-71.268459428,41.485383895],[-71.268437268,41.485449121],[-71.268414265,41.485520246],[-71.268391318,41.485592744],[-71.268368319,41.485662588],[-71.268340939,41.485733064],[-71.268311806,41.485800312],[-71.268283506,41.485864268],[-71.268253468,41.485929524],[-71.268219997,41.486002046],[-71.268186575,41.486077839],[-71.268147842,41.486150373],[-71.268105547,41.486215719],[-71.268068468,41.486276432],[-71.268043651,41.486335753],[-71.268020563,41.486396335],[-71.267994885,41.486458284],[-71.267968342,41.48652421],[-71.267941826,41.486590777],[-71.267918806,41.486657991],[-71.267904517,41.486724491],[-71.267895467,41.486788966],[-71.267882897,41.48685085],[-71.267866875,41.486917392],[-71.267847347,41.486985871],[-71.267824327,41.487053086],[-71.267799505,41.48711371],[-71.267777278,41.487171709],[-71.267757664,41.487230331],[-71.26774162,41.48729422],[-71.267726481,41.487360078],[-71.267712122,41.487420654],[-71.267696874,41.487474665],[-71.267676469,41.487541839],[-71.267663878,41.487601116],[-71.267647792,41.487659722],[-71.267629918,41.48771638],[-71.267609408,41.487770427],[-71.267585393,41.487826432],[-71.26755973,41.487892338],[-71.267550679,41.487956858],[-71.267552546,41.487960416],[-71.267576456,41.488005479],[-71.267633041,41.488041316],[-71.267637173,41.488043893],[-71.267670452,41.488079846],[-71.267679456,41.488089478],[-71.267679506,41.488089627],[-71.267679591,41.488089719],[-71.267691244,41.488122561],[-71.267676527,41.488138426],[-71.26762343,41.488170245],[-71.26763988,41.488220784],[-71.267640456,41.488222478],[-71.267664816,41.488244965],[-71.267693451,41.488271152],[-71.267741093,41.488318932],[-71.267729006,41.488339376],[-71.267668171,41.488383095],[-71.267663346,41.488431135],[-71.267684786,41.488490633],[-71.267714456,41.488504479],[-71.267715266,41.488505314],[-71.267733145,41.488509057],[-71.267747397,41.488537948],[-71.267725195,41.488597251],[-71.267677706,41.488668509],[-71.267635488,41.48871508]]]]}}"}, +{"type": "precinct", "typeId": 1903, "areaId": 25813, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":152,\"NAME\":\"1903\",\"SHAPE_Length\":0.12194018786348,\"SHAPE_Area\":-0.00034858312235593},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.283073463,41.517038484],[-71.283218462,41.516650484],[-71.283171463,41.516426483],[-71.283244463,41.516320484],[-71.283306463,41.516167484],[-71.283210463,41.516175483],[-71.283134462,41.516176483],[-71.283073463,41.516164484],[-71.283073463,41.516106484],[-71.283081462,41.516047484],[-71.283126463,41.516001483],[-71.283203463,41.515968484],[-71.283279463,41.515953483],[-71.283355462,41.515951484],[-71.283393462,41.515955483],[-71.283424463,41.515909484],[-71.283485462,41.515886484],[-71.283554463,41.515862483],[-71.283706463,41.515859483],[-71.283783463,41.515848484],[-71.283851463,41.515820483],[-71.283874462,41.515761483],[-71.283859462,41.515707483],[-71.283821463,41.515649483],[-71.283798462,41.515591483],[-71.283798462,41.515528483],[-71.283828463,41.515478484],[-71.283851463,41.515415483],[-71.283897462,41.515360483],[-71.283950463,41.515314483],[-71.284004463,41.515272483],[-71.284080463,41.515239483],[-71.284149462,41.515211484],[-71.284195463,41.515169484],[-71.284248463,41.515127483],[-71.284309463,41.515081483],[-71.284355463,41.515035484],[-71.284415463,41.514998483],[-71.284477463,41.514961483],[-71.284523463,41.514915484],[-71.284561463,41.514865483],[-71.284606463,41.514814483],[-71.284660463,41.514759483],[-71.284713463,41.514722484],[-71.284774463,41.514685484],[-71.284843463,41.514670483],[-71.284912463,41.514700483],[-71.284957463,41.514744483],[-71.285019463,41.514779483],[-71.285095463,41.514804483],[-71.285171463,41.514803483],[-71.285247463,41.514774483],[-71.285286463,41.514729483],[-71.285331463,41.514674483],[-71.285377463,41.514623483],[-71.285423463,41.514582483],[-71.285476463,41.514531483],[-71.285583463,41.514439483],[-71.285621463,41.514380483],[-71.285652463,41.514330483],[-71.285667464,41.514266483],[-71.285675463,41.514207483],[-71.285705464,41.514153483],[-71.285751463,41.514111483],[-71.285842464,41.514011483],[-71.285888463,41.513969483],[-71.285995464,41.513886483],[-71.286071463,41.513880483],[-71.286140463,41.513910483],[-71.286216463,41.513913483],[-71.286292463,41.513902483],[-71.286354463,41.513865483],[-71.286407464,41.513824483],[-71.286468463,41.513795483],[-71.286552463,41.513798483],[-71.286621464,41.513788483],[-71.286697464,41.513750483],[-71.286766463,41.513713483],[-71.286826463,41.513671483],[-71.286888464,41.513638483],[-71.286949464,41.513601483],[-71.287116463,41.513472483],[-71.287162464,41.513426483],[-71.287200464,41.513367483],[-71.287239464,41.513321482],[-71.287284464,41.513275483],[-71.287338464,41.513233483],[-71.287391464,41.513178483],[-71.287445463,41.513128483],[-71.287498464,41.513072483],[-71.287544464,41.513026483],[-71.287597464,41.512985483],[-71.287666464,41.512965483],[-71.287742464,41.512950482],[-71.287803464,41.512909483],[-71.287857464,41.512867483],[-71.287895464,41.512817482],[-71.287933464,41.512762483],[-71.287948464,41.512712483],[-71.287986464,41.512653483],[-71.288009463,41.512594483],[-71.288032464,41.512530483],[-71.288070464,41.512480483],[-71.288101464,41.512430483],[-71.288131464,41.512371483],[-71.288223464,41.512261483],[-71.288269464,41.512210482],[-71.288299464,41.512151482],[-71.288299464,41.512030483],[-71.288314464,41.511975482],[-71.288345464,41.511916482],[-71.288421464,41.511807482],[-71.288452464,41.511747482],[-71.288474464,41.511697483],[-71.288513464,41.511647482],[-71.288558464,41.511583483],[-71.288597464,41.511537483],[-71.288749464,41.511404483],[-71.288788464,41.511358482],[-71.288833464,41.511308483],[-71.288871464,41.511262482],[-71.288909464,41.511211483],[-71.288963465,41.511170483],[-71.289032464,41.511132483],[-71.289100464,41.511109482],[-71.289184464,41.511089482],[-71.289253465,41.511074483],[-71.289329464,41.511050482],[-71.289390465,41.511017483],[-71.289436464,41.510976483],[-71.289474464,41.510921483],[-71.289482464,41.510862483],[-71.289459464,41.510809482],[-71.289451464,41.510755482],[-71.289451464,41.510696482],[-71.289466465,41.510633482],[-71.289497464,41.510574482],[-71.289543464,41.510402482],[-71.289550464,41.510348482],[-71.289550464,41.510294482],[-71.289565465,41.510235482],[-71.289588464,41.510176482],[-71.289611464,41.510121483],[-71.289649464,41.510071482],[-71.289695464,41.510025482],[-71.289749464,41.509979482],[-71.289802464,41.509937482],[-71.289840465,41.509919482],[-71.289941464,41.509884482],[-71.290008464,41.509987482],[-71.290229465,41.510294482],[-71.290252464,41.510325482],[-71.290435465,41.510627483],[-71.290572465,41.510908482],[-71.290588464,41.510953482],[-71.291320465,41.510938483],[-71.291412465,41.510932482],[-71.291900465,41.510909482],[-71.292465465,41.510893482],[-71.292922465,41.510893482],[-71.293083465,41.510881483],[-71.293182465,41.510852482],[-71.293244466,41.510822483],[-71.293334465,41.510763483],[-71.293479466,41.510594482],[-71.293602466,41.510352482],[-71.293731466,41.510156482],[-71.293792466,41.510083482],[-71.293830466,41.510001482],[-71.293823465,41.509934482],[-71.293785465,41.509853482],[-71.293723465,41.509787482],[-71.293701466,41.509702482],[-71.293708465,41.509562482],[-71.293708465,41.509405482],[-71.293663466,41.509270482],[-71.293640466,41.509149482],[-71.293525466,41.508908482],[-71.293441466,41.508649482],[-71.293388466,41.508492482],[-71.293357465,41.508412482],[-71.293342465,41.508354482],[-71.293350466,41.508299482],[-71.293373465,41.508272481],[-71.293472465,41.508225482],[-71.293563466,41.508187482],[-71.293739466,41.508170482],[-71.294105466,41.508149482],[-71.294433466,41.508143482],[-71.294631466,41.508143482],[-71.295135466,41.508133481],[-71.295570466,41.508116481],[-71.295783466,41.508138481],[-71.295913466,41.508068482],[-71.295967466,41.508036481],[-71.296066466,41.508056481],[-71.296142466,41.508077481],[-71.296356466,41.508104482],[-71.296379466,41.508113482],[-71.296607467,41.508144482],[-71.296913467,41.508161482],[-71.297401467,41.508146482],[-71.297599467,41.508134481],[-71.298309467,41.508106482],[-71.298477467,41.508098481],[-71.298706467,41.508089482],[-71.299316468,41.508068482],[-71.299446467,41.508065481],[-71.299553467,41.508058481],[-71.299972468,41.508055481],[-71.300163467,41.508046481],[-71.300498468,41.508030482],[-71.300971468,41.508021481],[-71.301124468,41.508018481],[-71.301467468,41.508002481],[-71.301811468,41.507991482],[-71.301879468,41.508444482],[-71.302062468,41.509584482],[-71.302108468,41.509863482],[-71.302154468,41.510231482],[-71.302261469,41.510999482],[-71.302291468,41.511183482],[-71.302314469,41.511363482],[-71.302314469,41.511547482],[-71.302307468,41.511624482],[-71.302299469,41.511696482],[-71.302291468,41.511831482],[-71.302284468,41.511895483],[-71.302268468,41.511980482],[-71.302146469,41.512366482],[-71.301887469,41.513159483],[-71.301811469,41.513372483],[-71.301658469,41.513826483],[-71.301628468,41.513921483],[-71.301223468,41.515095482],[-71.301185469,41.515226483],[-71.300972469,41.515870483],[-71.300827468,41.516310483],[-71.300815468,41.516400483],[-71.300781469,41.516450483],[-71.300613468,41.516958483],[-71.300491468,41.517325483],[-71.300414468,41.517539483],[-71.300361468,41.517724484],[-71.300331469,41.517806483],[-71.300216468,41.518182483],[-71.300193468,41.518241483],[-71.301177468,41.518343483],[-71.301742468,41.518413483],[-71.302490469,41.518501484],[-71.303215469,41.518581484],[-71.303436469,41.518604484],[-71.30393947,41.518670483],[-71.304029469,41.518680484],[-71.30471047,41.518763483],[-71.30504647,41.518801483],[-71.30533547,41.518836484],[-71.30597647,41.518909483],[-71.30625147,41.518944483],[-71.306747471,41.519006483],[-71.307189471,41.519060483],[-71.307273471,41.519067484],[-71.308486471,41.519210483],[-71.308937471,41.519282484],[-71.309471471,41.519374483],[-71.309814471,41.519417484],[-71.309867472,41.519421484],[-71.310150471,41.519437484],[-71.310310472,41.519448483],[-71.310424472,41.519454483],[-71.310523472,41.519457484],[-71.310956472,41.519426483],[-71.310890472,41.519187484],[-71.310601472,41.518800483],[-71.310174472,41.518253484],[-71.310050471,41.518092483],[-71.309782471,41.517745483],[-71.30850447,41.516101483],[-71.307991471,41.514982482],[-71.307330471,41.514249483],[-71.30600747,41.512825482],[-71.304918469,41.511343482],[-71.303969469,41.509757481],[-71.303288469,41.508564481],[-71.302092468,41.506968481],[-71.301521468,41.505957481],[-71.300350468,41.504769481],[-71.299354467,41.503645481],[-71.298448467,41.50270248],[-71.297761466,41.501889481],[-71.297415466,41.50151348],[-71.297408466,41.50127048],[-71.297409466,41.50098648],[-71.297416466,41.500936481],[-71.297248467,41.50077748],[-71.296954466,41.50063648],[-71.295868465,41.50017648],[-71.295421465,41.49973948],[-71.294649465,41.498560479],[-71.294273465,41.498191479],[-71.294029465,41.49794448],[-71.293868465,41.497778479],[-71.293720465,41.49763848],[-71.293639465,41.497548479],[-71.293551465,41.497429479],[-71.293530465,41.49740548],[-71.293391464,41.49723048],[-71.293297465,41.49711348],[-71.293152465,41.496967479],[-71.292587465,41.496404479],[-71.292452465,41.496278479],[-71.292163464,41.49594148],[-71.291343464,41.495024479],[-71.290800464,41.494411479],[-71.290269464,41.493805479],[-71.290056463,41.493572479],[-71.289977464,41.493493479],[-71.287255462,41.490600479],[-71.287030462,41.490326478],[-71.286659462,41.489876478],[-71.286590462,41.489885478],[-71.286514462,41.489900478],[-71.286270462,41.489936479],[-71.286071462,41.489949478],[-71.285888462,41.489935479],[-71.285865462,41.490008478],[-71.285842462,41.490085478],[-71.285758462,41.490172478],[-71.285499462,41.490321479],[-71.285141461,41.490508478],[-71.284820462,41.490708479],[-71.284591462,41.490902479],[-71.284423461,41.491131478],[-71.284271461,41.491377479],[-71.284171461,41.491532479],[-71.284042462,41.491706479],[-71.284110461,41.492033479],[-71.284141462,41.492172479],[-71.284248461,41.492760479],[-71.284263462,41.492822479],[-71.284339462,41.493186479],[-71.284385461,41.493405479],[-71.284469462,41.493886479],[-71.284553462,41.494505479],[-71.284530462,41.494659479],[-71.284515462,41.494736479],[-71.284500461,41.49479048],[-71.284492462,41.494813479],[-71.284431462,41.494936479],[-71.284393462,41.494995479],[-71.284378462,41.49502748],[-71.284339462,41.495109479],[-71.284263462,41.49521848],[-71.284210462,41.495309479],[-71.283950462,41.49556748],[-71.283912462,41.49560348],[-71.283577462,41.49566448],[-71.283470461,41.495680479],[-71.282585462,41.49581948],[-71.281364461,41.496028479],[-71.28057846,41.49616948],[-71.27886946,41.49644748],[-71.27826646,41.49654448],[-71.27869446,41.497738481],[-71.27903746,41.498654481],[-71.279189461,41.499003481],[-71.27922346,41.49907248],[-71.27927646,41.499181481],[-71.27924346,41.49922748],[-71.27913646,41.499454481],[-71.27909846,41.499626481],[-71.27910646,41.499725481],[-71.27910646,41.499837481],[-71.27914446,41.50000348],[-71.27916746,41.50006548],[-71.27920546,41.500169481],[-71.279289461,41.50035648],[-71.27939646,41.50058848],[-71.27948746,41.500775481],[-71.279632461,41.501088481],[-71.27978546,41.501409481],[-71.279869461,41.501588481],[-71.28015146,41.502181481],[-71.280197461,41.502265481],[-71.28040246,41.502685481],[-71.280670461,41.503215481],[-71.280891461,41.503684482],[-71.281021461,41.503969481],[-71.281196461,41.504344481],[-71.281295462,41.504540482],[-71.281871461,41.505755481],[-71.282325462,41.506718482],[-71.282600462,41.507307482],[-71.282638462,41.507423482],[-71.282646461,41.507445482],[-71.282653462,41.507765482],[-71.282608462,41.508257482],[-71.282463462,41.509471482],[-71.282440462,41.509620482],[-71.282356462,41.510383482],[-71.282348462,41.510621483],[-71.282379462,41.511031483],[-71.282421462,41.511390482],[-71.282463462,41.511736483],[-71.282554462,41.512504483],[-71.282577462,41.512657482],[-71.282745462,41.514162483],[-71.282791462,41.514553483],[-71.282867462,41.515200483],[-71.282951463,41.515982484],[-71.283035462,41.516728484],[-71.283073463,41.517038484]]]]}}"}, +{"type": "precinct", "typeId": 1904, "areaId": 25812, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":151,\"NAME\":\"1904\",\"SHAPE_Length\":0.23461355028746,\"SHAPE_Area\":-0.00072586296945278},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.282478463,41.522116484],[-71.282600463,41.522050485],[-71.282920462,41.521900485],[-71.283233463,41.521790484],[-71.283424463,41.521719485],[-71.284049463,41.521540485],[-71.284141463,41.521511484],[-71.284881463,41.521284484],[-71.285445464,41.521120485],[-71.285911464,41.520989484],[-71.286363464,41.520867485],[-71.286903464,41.520722484],[-71.287475464,41.520571485],[-71.288032464,41.520425484],[-71.288467464,41.520312484],[-71.289657465,41.520005484],[-71.289794465,41.519966484],[-71.290504465,41.519767484],[-71.290649465,41.519729484],[-71.291519465,41.519455484],[-71.292137466,41.519276484],[-71.293083466,41.518987484],[-71.293350466,41.518900483],[-71.294410466,41.518573484],[-71.294593467,41.518515484],[-71.295303466,41.518312484],[-71.295539466,41.518235483],[-71.296055467,41.518074484],[-71.296577467,41.517926483],[-71.296836467,41.519159484],[-71.297561468,41.519064484],[-71.297699468,41.519070484],[-71.298042468,41.519131484],[-71.298416468,41.519209484],[-71.299743468,41.519488483],[-71.299515329,41.520133852],[-71.298743189,41.519971699],[-71.298530863,41.519444249],[-71.298309467,41.519499484],[-71.297635476,41.52136184],[-71.298999303,41.521621518],[-71.298864995,41.522000066],[-71.297496372,41.521751098],[-71.297294467,41.522280484],[-71.297111468,41.522819484],[-71.297527751,41.522870824],[-71.297774626,41.522484138],[-71.298553468,41.522822484],[-71.298221468,41.523741484],[-71.298187468,41.523838484],[-71.298040468,41.524198485],[-71.297973467,41.524410485],[-71.297920468,41.524560485],[-71.297790468,41.524940485],[-71.297706468,41.525167485],[-71.297668468,41.525299485],[-71.297637468,41.525376485],[-71.297622467,41.525408485],[-71.297584467,41.525507485],[-71.297561468,41.525544485],[-71.297515468,41.525644485],[-71.297416468,41.525835485],[-71.297394467,41.525880485],[-71.297271467,41.526095485],[-71.297187468,41.526222485],[-71.296951468,41.526587485],[-71.296806467,41.526833486],[-71.296714467,41.526975485],[-71.296493467,41.527326485],[-71.296318467,41.527600485],[-71.296180467,41.527796485],[-71.296150467,41.527842486],[-71.295997467,41.528056486],[-71.295921468,41.528171486],[-71.295898467,41.528212486],[-71.295822467,41.528321485],[-71.295776467,41.528381485],[-71.295578467,41.528650485],[-71.295211467,41.529108486],[-71.294914467,41.529501486],[-71.294700467,41.529789486],[-71.294456467,41.530096486],[-71.294220467,41.530420486],[-71.294044467,41.530680486],[-71.293975467,41.530821486],[-71.293861466,41.531031486],[-71.293815467,41.531135486],[-71.293746467,41.531299487],[-71.293716467,41.531380486],[-71.293678467,41.531489486],[-71.293594467,41.531775486],[-71.293342467,41.532532486],[-71.293258466,41.532786486],[-71.292869466,41.534063487],[-71.292861467,41.534099487],[-71.292610466,41.534906487],[-71.292243466,41.536053487],[-71.292175467,41.536306487],[-71.291908466,41.537226488],[-71.291778466,41.537679487],[-71.291710467,41.537928488],[-71.291671467,41.538045488],[-71.291641466,41.538168487],[-71.291610467,41.538290488],[-71.291587466,41.538416488],[-71.291565466,41.538552488],[-71.291557466,41.538683488],[-71.291549467,41.538840488],[-71.291549467,41.538876488],[-71.291549467,41.539003488],[-71.291557466,41.539160487],[-71.291564466,41.539322488],[-71.291564466,41.539480488],[-71.291572467,41.539637488],[-71.291595467,41.540708488],[-71.291595467,41.540758489],[-71.291595467,41.540848488],[-71.291603466,41.541028488],[-71.291610467,41.541230488],[-71.291618466,41.541568488],[-71.291626467,41.541784488],[-71.291633467,41.542266488],[-71.291633467,41.542549489],[-71.291659466,41.543491488],[-71.291664467,41.543634489],[-71.291664467,41.543693489],[-71.291686467,41.544143489],[-71.291687467,41.544278489],[-71.291694466,41.544386489],[-71.291702467,41.544575489],[-71.291725467,41.544831489],[-71.291740467,41.545051489],[-71.291770467,41.545235489],[-71.291786467,41.545343489],[-71.291824467,41.545599489],[-71.291900467,41.546183489],[-71.291977467,41.546735489],[-71.292003467,41.546905489],[-71.292007467,41.546933489],[-71.292030467,41.547063489],[-71.292068467,41.547472489],[-71.292091467,41.54779149],[-71.292091467,41.548111489],[-71.292083468,41.548287489],[-71.292083468,41.548332489],[-71.292823468,41.548466489],[-71.293472467,41.548606489],[-71.293937467,41.548704489],[-71.294121468,41.548760489],[-71.294311468,41.548819489],[-71.294700468,41.54896449],[-71.294772468,41.548995489],[-71.295181468,41.54917549],[-71.295913468,41.54950349],[-71.295967468,41.54952949],[-71.296195469,41.54963249],[-71.296386469,41.54972349],[-71.296920468,41.549964489],[-71.297508469,41.55023249],[-71.297668469,41.55030549],[-71.298072469,41.55048249],[-71.298507469,41.55068549],[-71.29871347,41.55077549],[-71.299125469,41.55096149],[-71.29956047,41.55116349],[-71.30053747,41.55160349],[-71.30150747,41.55203449],[-71.30156747,41.55206049],[-71.30160247,41.55207549],[-71.30242147,41.55242149],[-71.30255847,41.55247749],[-71.302627471,41.55250749],[-71.302916471,41.55262249],[-71.303770471,41.55296249],[-71.304443472,41.55323249],[-71.304908472,41.55343949],[-71.305572472,41.55373149],[-71.305679472,41.554132491],[-71.305809472,41.55387149],[-71.305839472,41.55380749],[-71.305938472,41.55362149],[-71.306007472,41.55347549],[-71.306058472,41.55338049],[-71.306121472,41.55324849],[-71.306126472,41.55324049],[-71.306196472,41.55311049],[-71.306356741,41.553117837],[-71.306361481,41.553107105],[-71.306394213,41.553044657],[-71.306429741,41.552984158],[-71.306466893,41.552920277],[-71.306510601,41.552863016],[-71.30655735,41.552817103],[-71.306603297,41.552774552],[-71.306708941,41.552673073],[-71.306769971,41.552626178],[-71.306816635,41.55257823],[-71.306872136,41.552527438],[-71.306921818,41.552488209],[-71.306975774,41.552444801],[-71.307029619,41.5523981],[-71.307090511,41.552346539],[-71.307150263,41.552288916],[-71.307213635,41.552232603],[-71.307277232,41.552182327],[-71.307342591,41.552133335],[-71.307418873,41.552086855],[-71.307499429,41.552036264],[-71.307552756,41.551999625],[-71.307628919,41.551951772],[-71.307696249,41.551905436],[-71.307762466,41.551854433],[-71.307827083,41.55180887],[-71.307894273,41.551758508],[-71.307952342,41.551703627],[-71.308004275,41.551654269],[-71.30805248,41.551598913],[-71.308092732,41.551546357],[-71.308129395,41.55149256],[-71.308160304,41.551428142],[-71.308193722,41.551359611],[-71.308233214,41.551285602],[-71.308263633,41.551232595],[-71.308293108,41.551179654],[-71.308334482,41.551107615],[-71.308379559,41.551039561],[-71.308422981,41.550974866],[-71.308464465,41.550906875],[-71.308516753,41.550840022],[-71.308567385,41.550777215],[-71.308607383,41.55071734],[-71.308644209,41.55066958],[-71.308682663,41.55061709],[-71.308710063,41.550555433],[-71.308734418,41.550483045],[-71.308754917,41.550428237],[-71.308776243,41.55037135],[-71.308793975,41.550315234],[-71.308801075,41.550261365],[-71.308803885,41.550186036],[-71.308820374,41.55011782],[-71.308844981,41.550052888],[-71.308874864,41.549985083],[-71.308911621,41.549909125],[-71.308942034,41.549857467],[-71.308975129,41.549805082],[-71.309010075,41.549754666],[-71.309017104,41.549745553],[-71.309046931,41.549706953],[-71.309096537,41.549640781],[-71.309144431,41.549576711],[-71.309190307,41.549505296],[-71.309231846,41.549438609],[-71.309266454,41.549378839],[-71.309301035,41.549317651],[-71.309328266,41.549250596],[-71.309357068,41.549177483],[-71.309381241,41.549125266],[-71.309407207,41.549074378],[-71.309435,41.54902347],[-71.309465358,41.548969777],[-71.309497512,41.548916086],[-71.309529664,41.548863036],[-71.309564639,41.548812643],[-71.309598616,41.548760236],[-71.309629002,41.548707228],[-71.309657705,41.54865694],[-71.309697365,41.548586978],[-71.309735313,41.548519758],[-71.30976685,41.548447885],[-71.309804768,41.548379956],[-71.309849758,41.548309202],[-71.309893921,41.54823982],[-71.309938109,41.548172427],[-71.309980784,41.548112464],[-71.310017217,41.548052629],[-71.310057351,41.547997442],[-71.310102704,41.547937438],[-71.310153192,41.547870604],[-71.310199119,41.547801842],[-71.310225114,41.547750954],[-71.310251109,41.547700043],[-71.310279783,41.547649091],[-71.310311024,41.547594735],[-71.310315245,41.54758795],[-71.3103401,41.547552222],[-71.310353613,41.547532782],[-71.310393662,41.547474896],[-71.31043109,41.547418378],[-71.310473427,41.547348375],[-71.31052568,41.547281499],[-71.310564271,41.547233032],[-71.310602919,41.547185916],[-71.310638859,41.5471382],[-71.310683047,41.547070121],[-71.310715366,41.547021827],[-71.310750252,41.546970062],[-71.310752609,41.546965698],[-71.310777986,41.546917804],[-71.310819525,41.546849812],[-71.310868189,41.546781649],[-71.310914312,41.546718261],[-71.31096146,41.546658237],[-71.311003219,41.546598272],[-71.311036998,41.546539827],[-71.311062823,41.54648425],[-71.311084227,41.546430747],[-71.311091186,41.546372166],[-71.311081788,41.546306514],[-71.311064463,41.546244989],[-71.311049397,41.546170683],[-71.311037867,41.546094988],[-71.311020205,41.546023423],[-71.311000748,41.5459519],[-71.310987224,41.545870873],[-71.310976552,41.545793121],[-71.310966816,41.545718046],[-71.310959619,41.545638905],[-71.310953014,41.545575865],[-71.310946209,41.545508114],[-71.310939433,41.545441071],[-71.310934623,41.545378652],[-71.310929893,41.54531964],[-71.310926963,41.545259876],[-71.310923834,41.545194738],[-71.310921562,41.545128252],[-71.310919375,41.545063847],[-71.310917272,41.545002026],[-71.310916823,41.54493687],[-71.310918112,41.544870298],[-71.310918379,41.544799745],[-71.310917818,41.544731203],[-71.310915743,41.544670092],[-71.310907801,41.544595683],[-71.310883296,41.544533003],[-71.310845479,41.544473228],[-71.310796944,41.54441435],[-71.310745213,41.544365643],[-71.310676465,41.544317229],[-71.310623163,41.54427529],[-71.310566268,41.544233344],[-71.310504099,41.544194249],[-71.310433667,41.544149216],[-71.310356252,41.544108404],[-71.310350171,41.544105855],[-71.31027185,41.544073068],[-71.310186316,41.544029017],[-71.310107986,41.543988911],[-71.310026546,41.543960898],[-71.309944219,41.543934256],[-71.309864659,41.543908922],[-71.309774602,41.543891827],[-71.3096811,41.543876852],[-71.309580387,41.543860654],[-71.309475337,41.543849251],[-71.309377384,41.54383635],[-71.309282057,41.543820732],[-71.309184989,41.543807146],[-71.309089575,41.543790179],[-71.309003801,41.543766297],[-71.308939432,41.543740668],[-71.308887097,41.543701359],[-71.30884401,41.543643724],[-71.308804511,41.543587376],[-71.308757451,41.543545286],[-71.308692184,41.543494109],[-71.308628389,41.543459721],[-71.308556503,41.54342349],[-71.308480744,41.543379271],[-71.308403414,41.54334111],[-71.308332665,41.543311559],[-71.308301693,41.543295384],[-71.308231825,41.543266474],[-71.3081651,41.543224763],[-71.308117046,41.543179309],[-71.308072328,41.5431278],[-71.308028386,41.54307149],[-71.307989744,41.543013771],[-71.307954496,41.5429513],[-71.30791406,41.542892938],[-71.307871715,41.542831942],[-71.307834127,41.542778249],[-71.307809416,41.542745092],[-71.307787252,41.542715302],[-71.307752508,41.542667583],[-71.307706461,41.542602625],[-71.307669474,41.542541523],[-71.30763514,41.542479008],[-71.307598899,41.542412534],[-71.307569756,41.542344562],[-71.307546908,41.542278453],[-71.307528816,41.542220333],[-71.307509927,41.542164248],[-71.307495425,41.542106775],[-71.307483464,41.542044503],[-71.307477884,41.541986153],[-71.307469681,41.541929193],[-71.307469484,41.541923819],[-71.307467385,41.541862044],[-71.307465366,41.541803631],[-71.307476061,41.541748967],[-71.307490945,41.541687541],[-71.307485238,41.541569546],[-71.307489756,41.541513729],[-71.307498824,41.541453367],[-71.307502727,41.541389636],[-71.307513792,41.541322737],[-71.307527212,41.541262498],[-71.307544197,41.541200984],[-71.307567499,41.541134334],[-71.307594236,41.541069063],[-71.307617955,41.541015587],[-71.307648294,41.540947074],[-71.307673845,41.540891681],[-71.307701882,41.540839607],[-71.307726518,41.540784807],[-71.307757173,41.540732761],[-71.307786127,41.540679408],[-71.307816978,41.540622743],[-71.307852113,41.540568806],[-71.307890951,41.540508403],[-71.307924421,41.540451147],[-71.307957991,41.540391307],[-71.307990613,41.540332701],[-71.308027648,41.540274239],[-71.308069753,41.540220428],[-71.308114174,41.540175883],[-71.308158763,41.540126101],[-71.308198085,41.540076836],[-71.308230148,41.540032111],[-71.308238553,41.540020393],[-71.308279123,41.539960656],[-71.308321327,41.539904261],[-71.308360981,41.539845162],[-71.30840662,41.539790099],[-71.308457656,41.539731912],[-71.308506761,41.53967825],[-71.308555014,41.539624586],[-71.308604086,41.539571564],[-71.308652239,41.53952053],[-71.308699544,41.539468191],[-71.308745047,41.539417725],[-71.308791402,41.539367305],[-71.308836871,41.539318188],[-71.308880508,41.539270989],[-71.308923326,41.539222484],[-71.30896778,41.539176636],[-71.309014,41.539130836],[-71.309060254,41.539083709],[-71.309105557,41.539039188],[-71.309153477,41.538994717],[-71.309201463,41.538948303],[-71.309249319,41.538905135],[-71.309296388,41.538859977],[-71.30934964,41.538813662],[-71.309402793,41.538769909],[-71.309451596,41.538725485],[-71.309500301,41.538683028],[-71.309558138,41.53863018],[-71.309608705,41.538533776],[-71.310045394,41.538102762],[-71.310368601,41.537797458],[-71.310979019,41.537220817],[-71.311047405,41.537192525],[-71.311103989,41.537150858],[-71.311154393,41.537109729],[-71.311214408,41.537070766],[-71.311273377,41.537035735],[-71.311342682,41.537005477],[-71.311405115,41.536972464],[-71.311470202,41.536937557],[-71.311529336,41.536897884],[-71.311586804,41.536855577],[-71.311655555,41.536816765],[-71.311715505,41.536779105],[-71.311777875,41.536746778],[-71.31184191,41.536717747],[-71.311919863,41.53671728],[-71.311993619,41.536736451],[-71.31206224,41.536752892],[-71.312135867,41.536774716],[-71.312210339,41.536799148],[-71.312284193,41.536816375],[-71.312352781,41.53683348],[-71.312430953,41.536852063],[-71.312505629,41.536869291],[-71.312574248,41.536886395],[-71.312648924,41.536903624],[-71.31272101,41.536921488],[-71.312790221,41.536944516],[-71.312868291,41.536967056],[-71.312940216,41.536988167],[-71.31302264,41.537010142],[-71.313097147,41.53703327],[-71.313178817,41.537052614],[-71.313251692,41.537071783],[-71.313329081,41.537087757],[-71.31340997,41.537103737],[-71.313485495,41.537122338],[-71.313563536,41.537144214],[-71.313630194,41.537165888],[-71.313702217,41.537185056],[-71.313776757,41.537207543],[-71.313851129,41.537235267],[-71.313917753,41.537258245],[-71.31399074,41.537249124],[-71.314058858,41.537228742],[-71.314132244,41.537207775],[-71.314210867,41.537186244],[-71.314286834,41.537167317],[-71.314356689,41.537146298],[-71.314430961,41.537124028],[-71.314502742,41.537099765],[-71.314577997,41.537074249],[-71.314654164,41.537049398],[-71.314727416,41.537032409],[-71.314799721,41.537016654],[-71.314869473,41.536999591],[-71.314945673,41.536973413],[-71.315018341,41.536947825],[-71.315094543,41.536921007],[-71.315165214,41.536901978],[-71.315232481,41.536880886],[-71.315310416,41.536854779],[-71.315382985,41.536831843],[-71.315462651,41.536807043],[-71.31553957,41.536784845],[-71.315613805,41.536764542],[-71.315690008,41.53673706],[-71.31576461,41.536705619],[-71.315835478,41.536681308],[-71.315917597,41.536660513],[-71.316002298,41.536641781],[-71.3160783,41.536620863],[-71.3161615,41.536594855],[-71.316230403,41.536576418],[-71.316316154,41.536552405],[-71.316392905,41.536535466],[-71.316476957,41.53650946],[-71.316546907,41.536486451],[-71.316623991,41.536459633],[-71.316695706,41.536436694],[-71.316769124,41.536414399],[-71.316841628,41.536392765],[-71.31692388,41.536368037],[-71.316997461,41.536341808],[-71.317084948,41.536317179],[-71.317163665,41.536293703],[-71.317232499,41.536277895],[-71.317312983,41.536253803],[-71.317398832,41.536227182],[-71.317479415,41.536200415],[-71.317556266,41.536180183],[-71.317626019,41.536162455],[-71.317693316,41.536140744],[-71.317776418,41.536116656],[-71.317846134,41.536100872],[-71.317922984,41.536081303],[-71.318001636,41.53605913],[-71.318077834,41.53603295],[-71.318159267,41.536006893],[-71.318232915,41.535978056],[-71.318318767,41.53595013],[-71.318395001,41.535921961],[-71.3184817,41.535895363],[-71.3185595,41.535873142],[-71.318646033,41.535851781],[-71.318727365,41.535828993],[-71.318807848,41.535804901],[-71.318885747,41.53578005],[-71.318964529,41.535754605],[-71.319051261,41.535727321],[-71.319132695,41.535700623],[-71.319200842,41.53567953],[-71.319279691,41.535652118],[-71.319348624,41.535633016],[-71.319416674,41.535613958],[-71.319505889,41.535591297],[-71.319574822,41.53557224],[-71.319653638,41.535545492],[-71.319725154,41.535527765],[-71.319808318,41.535502396],[-71.319879935,41.535481422],[-71.319946417,41.53545701],[-71.320035014,41.53542648],[-71.320107447,41.535407451],[-71.32019503,41.53538019],[-71.320269294,41.535359243],[-71.320354257,41.535332595],[-71.320428489,41.535312311],[-71.320510837,41.53528495],[-71.320578951,41.535264565],[-71.320666466,41.535239911],[-71.32075748,41.535215331],[-71.320826382,41.53519625],[-71.320913898,41.535170978],[-71.320984595,41.535151946],[-71.321068678,41.535124588],[-71.321142091,41.535102998],[-71.321224372,41.535077581],[-71.321314469,41.535054302],[-71.321395083,41.535026274],[-71.321462447,41.535001885],[-71.321528892,41.534979462],[-71.321608555,41.534954017],[-71.321678405,41.534932994],[-71.321759082,41.53490428],[-71.321832398,41.53488468],[-71.321918014,41.534863932],[-71.322008993,41.534840654],[-71.322093042,41.534814004],[-71.322181506,41.534786742],[-71.322266436,41.534760756],[-71.322354964,41.534732169],[-71.322419678,41.534708393],[-71.322500456,41.534675722],[-71.322566934,41.534651994],[-71.322644246,41.534617992],[-71.32270654,41.534588288],[-71.322785783,41.534548983],[-71.322859659,41.534513557],[-71.322937952,41.534476903],[-71.323004994,41.534436069],[-71.323077271,41.534395381],[-71.323140845,41.534353809],[-71.323201084,41.534307636],[-71.323270711,41.534267515],[-71.323332419,41.534229235],[-71.323388991,41.534188202],[-71.3234525,41.53414798],[-71.323511657,41.534107659],[-71.323569965,41.534065989],[-71.323631774,41.534024415],[-71.323688413,41.533980797],[-71.323739852,41.533935754],[-71.323792176,41.533889363],[-71.32384113,41.533840313],[-71.323886617,41.533789863],[-71.32393194,41.533744033],[-71.323981778,41.533694345],[-71.324029,41.533643897],[-71.324072688,41.533594771],[-71.32411654,41.533541003],[-71.324163794,41.533489961],[-71.324206764,41.533436168],[-71.324251434,41.53338375],[-71.324298656,41.533333326],[-71.324344374,41.53327629],[-71.324382962,41.533221781],[-71.324421713,41.533163316],[-71.324459548,41.533106177],[-71.324495716,41.533046359],[-71.324524852,41.532987033],[-71.324547934,41.53292628],[-71.324574551,41.532864298],[-71.324602802,41.532805634],[-71.32463282,41.532746333],[-71.324659239,41.532689633],[-71.324684873,41.53263092],[-71.324705141,41.5325754],[-71.324725475,41.53251789],[-71.324748361,41.532462443],[-71.324765979,41.532407491],[-71.324775683,41.532353098],[-71.324778552,41.532293915],[-71.32476012,41.532244237],[-71.324696338,41.532239726],[-71.3246464,41.532293394],[-71.32463405,41.532347073],[-71.324630033,41.532414785],[-71.324623732,41.532471241],[-71.324608763,41.532525556],[-71.324588395,41.532584324],[-71.324565409,41.53264311],[-71.32454066,41.532701184],[-71.324510706,41.532759137],[-71.324485726,41.532823797],[-71.324459141,41.532885116],[-71.324429841,41.532949061],[-71.324395372,41.533010872],[-71.324355572,41.533074572],[-71.324320652,41.533123231],[-71.324278334,41.533183589],[-71.324248546,41.533236304],[-71.324205346,41.53329666],[-71.32416856,41.533348587],[-71.324130171,41.533396532],[-71.324092667,41.533443861],[-71.324055061,41.5334951],[-71.324014091,41.533541029],[-71.323965136,41.533590719],[-71.323912649,41.533641044],[-71.323869091,41.5336869],[-71.323824488,41.53373671],[-71.323775665,41.533782489],[-71.323724259,41.533826893],[-71.323674389,41.533877244],[-71.32362128,41.533920935],[-71.323561076,41.533965874],[-71.323506986,41.534012194],[-71.323451327,41.534053205],[-71.323387754,41.534094754],[-71.323329379,41.534138391],[-71.323271989,41.534178074],[-71.323206712,41.53421891],[-71.32314844,41.534258591],[-71.323093763,41.53429638],[-71.323030354,41.534333285],[-71.322970644,41.534364365],[-71.322893169,41.53440237],[-71.322816972,41.534429856],[-71.322744113,41.534460687],[-71.322669515,41.534492818],[-71.322607124,41.534524511],[-71.322541461,41.534550916],[-71.322469583,41.534579118],[-71.32240454,41.534612064],[-71.322327359,41.534642819],[-71.32224848,41.534670919],[-71.322163549,41.534697568],[-71.322081203,41.534724976],[-71.321993589,41.534752879],[-71.321925377,41.53477594],[-71.321837699,41.534805147],[-71.321767785,41.534827496],[-71.321696988,41.534849799],[-71.321618374,41.534870008],[-71.321546758,41.534891029],[-71.321473476,41.534909348],[-71.321401012,41.534928995],[-71.321330182,41.534952007],[-71.321248817,41.53497674],[-71.32117017,41.534997635],[-71.321087204,41.535017746],[-71.321010257,41.535040633],[-71.320931474,41.535066696],[-71.320855277,41.535093541],[-71.320776628,41.535115076],[-71.32069618,41.535137844],[-71.320620049,41.535162722],[-71.320535118,41.535188729],[-71.320454471,41.535217442],[-71.320368724,41.535241436],[-71.320289193,41.535262924],[-71.320204527,41.535281064],[-71.320124079,41.535303831],[-71.320039998,41.535330526],[-71.319955163,41.535354544],[-71.319869516,41.535375267],[-71.31978645,41.535398052],[-71.319701518,41.535424059],[-71.319617369,41.535453361],[-71.319534138,41.53548072],[-71.319448321,41.53550732],[-71.319365124,41.535533352],[-71.319277575,41.535559309],[-71.319193459,41.535587284],[-71.319105811,41.535615871],[-71.319024347,41.535642615],[-71.318940396,41.535666016],[-71.318861615,41.535690797],[-71.318776747,41.5357155],[-71.318695349,41.535740231],[-71.318610483,41.535764248],[-71.318526501,41.535787648],[-71.318439931,41.535811662],[-71.318358532,41.535836393],[-71.318274583,41.53585913],[-71.318191483,41.535882532],[-71.318107498,41.535907259],[-71.318023383,41.535934546],[-71.317940116,41.535963231],[-71.3178542,41.535992482],[-71.317773686,41.53601662],[-71.317691666,41.536034785],[-71.317619951,41.536057747],[-71.317538486,41.536084467],[-71.317461468,41.536109982],[-71.31738275,41.536133482],[-71.317307568,41.536155683],[-71.317233233,41.536179235],[-71.317151897,41.536203348],[-71.317075766,41.536226874],[-71.316993579,41.536250322],[-71.316916597,41.536273824],[-71.316833593,41.536295258],[-71.316755762,41.536317455],[-71.31667436,41.536342848],[-71.316596328,41.536371654],[-71.316520159,41.536397764],[-71.316445693,41.536424632],[-71.316370976,41.536443563],[-71.316289542,41.536469642],[-71.316204394,41.536495646],[-71.316133075,41.536507424],[-71.316053871,41.536541442],[-71.315973419,41.536564275],[-71.315893817,41.53658839],[-71.31581765,41.536613905],[-71.315735429,41.536637946],[-71.315657497,41.536663436],[-71.315573477,41.536688778],[-71.315496624,41.536709032],[-71.31541369,41.536727172],[-71.315335137,41.53674605],[-71.315257401,41.53676628],[-71.315184734,41.536791846],[-71.315112032,41.536818738],[-71.315034982,41.536844228],[-71.314965913,41.536867239],[-71.314896977,41.536886315],[-71.314812894,41.53691232],[-71.314744809,41.536932062],[-71.314673255,41.536951088],[-71.31458652,41.536978392],[-71.314518398,41.5370001],[-71.314435161,41.537028073],[-71.314363545,41.537047763],[-71.314292941,41.537064801],[-71.31422234,41.537080559],[-71.314149186,41.53709494],[-71.314064448,41.537115683],[-71.313978146,41.537129814],[-71.31389374,41.537140678],[-71.3138155,41.537124085],[-71.313738146,41.537106808],[-71.313650553,41.537082744],[-71.313564564,41.537062022],[-71.313475234,41.537038572],[-71.313393862,41.537010699],[-71.31330722,41.536984053],[-71.313224012,41.536959424],[-71.313133806,41.536933983],[-71.313048734,41.536911959],[-71.312979227,41.53689682],[-71.312892388,41.53687541],[-71.312809994,41.536853435],[-71.312725771,41.536832738],[-71.31264178,41.536805478],[-71.312574209,41.536783779],[-71.312489334,41.53675718],[-71.312419012,41.536739364],[-71.312336591,41.536716726],[-71.312252501,41.536692072],[-71.312177173,41.536668919],[-71.312096487,41.536646329],[-71.312022896,41.536622538],[-71.311950391,41.536591546],[-71.311917402,41.536558033],[-71.311945434,41.536505959],[-71.311997765,41.536460899],[-71.312057068,41.536415325],[-71.312104985,41.536370853],[-71.312151099,41.536328322],[-71.312200097,41.536277997],[-71.312259398,41.536233063],[-71.312311484,41.536220272],[-71.312379054,41.536241926],[-71.312462759,41.536252125],[-71.312539312,41.536241067],[-71.312580796,41.536231346],[-71.312777697,41.53628445],[-71.312878372,41.536310068],[-71.312864307,41.536363744],[-71.313007083,41.536387555],[-71.313042134,41.536360602],[-71.313966907,41.536611886],[-71.314290238,41.535934616],[-71.314140863,41.535898218],[-71.313869606,41.536460033],[-71.313198316,41.536274134],[-71.313710327,41.535249871],[-71.314521233,41.535475283],[-71.314563908,41.535378749],[-71.314304168,41.535267846],[-71.313789196,41.5350672],[-71.313860198,41.534910702],[-71.313232065,41.534742048],[-71.313246293,41.534684439],[-71.31319324,41.534674222],[-71.313165145,41.534727623],[-71.31314101,41.534716606],[-71.313115103,41.534654953],[-71.313109148,41.534598249],[-71.313111276,41.534535795],[-71.31311327,41.534477297],[-71.313115199,41.534420766],[-71.313117161,41.534362908],[-71.313106007,41.534304138],[-71.313093087,41.53424605],[-71.31309246,41.534188783],[-71.313094457,41.534129622],[-71.313096318,41.534075035],[-71.313096844,41.534008599],[-71.313096157,41.533951355],[-71.313095403,41.5338961],[-71.313095931,41.533829024],[-71.313101623,41.533765295],[-71.313116121,41.533698493],[-71.31313058,41.533634321],[-71.313148741,41.533563614],[-71.313167619,41.533497551],[-71.313177365,41.533442473],[-71.313190257,41.533372993],[-71.313199218,41.533315901],[-71.313210729,41.533260872],[-71.31322041,41.533207098],[-71.313228421,41.533152018],[-71.313241313,41.533082537],[-71.313249259,41.53302876],[-71.313257671,41.532961171],[-71.313263883,41.532907345],[-71.313274911,41.532840446],[-71.313290355,41.532772342],[-71.313310867,41.532709575],[-71.313339261,41.53264698],[-71.313363005,41.532592817],[-71.313363167,41.532536238],[-71.313346094,41.532472106],[-71.313328721,41.53241719],[-71.313346382,41.532361599],[-71.31336363,41.532343514],[-71.31346272,41.532261892],[-71.313642691,41.532144313],[-71.313806564,41.532035627],[-71.313810459,41.531972535],[-71.313794832,41.531892008],[-71.314012112,41.531733003],[-71.314027201,41.531778035],[-71.314138098,41.531760421],[-71.314124172,41.531681246],[-71.313946959,41.531177206],[-71.315174653,41.530913141],[-71.315257793,41.530894956],[-71.319253636,41.530042954],[-71.319288298,41.530022243],[-71.319304224,41.53000834],[-71.319310999,41.52999065],[-71.319294085,41.529944083],[-71.319129495,41.529517507],[-71.319114795,41.529495849],[-71.319096393,41.529491955],[-71.319062227,41.529498442],[-71.318720216,41.52957015],[-71.318649445,41.529584698],[-71.31743178,41.529846232],[-71.315717341,41.530217236],[-71.313758547,41.53064209],[-71.313268054,41.5292874],[-71.313096004,41.528801959],[-71.313076695,41.528764422],[-71.312953434,41.528395582],[-71.318432666,41.527219865],[-71.318458207,41.527195457],[-71.318471262,41.527174346],[-71.318478401,41.527146022],[-71.318424995,41.526991978],[-71.31839794,41.52697014],[-71.318382977,41.526955594],[-71.318346337,41.526944215],[-71.318302921,41.526950505],[-71.317575375,41.52710377],[-71.315634905,41.527521961],[-71.312842445,41.528119454],[-71.312602519,41.527460183],[-71.312598475,41.527458918],[-71.312537596,41.527431444],[-71.312504499,41.527415701],[-71.312473129,41.527360488],[-71.312455829,41.527302279],[-71.312429792,41.527244536],[-71.312407055,41.52719279],[-71.31239077,41.527130649],[-71.312374284,41.527075048],[-71.312349782,41.527023277],[-71.312330743,41.526966346],[-71.312310173,41.526902162],[-71.312292806,41.526845897],[-71.31232623,41.526790606],[-71.312391924,41.526762927],[-71.312461599,41.526747832],[-71.312534875,41.526729495],[-71.31261855,41.526714011],[-71.312703207,41.526695899],[-71.312778182,41.526678915],[-71.31285839,41.526662693],[-71.312929732,41.526650254],[-71.31300294,41.526633907],[-71.313076246,41.52661557],[-71.313156389,41.526600697],[-71.313227762,41.526587572],[-71.31330627,41.526570021],[-71.313375162,41.526551608],[-71.313447487,41.526535899],[-71.313518011,41.526521446],[-71.313598251,41.526504583],[-71.313676662,41.526488976],[-71.313743983,41.526466581],[-71.313775079,41.526426403],[-71.313755221,41.526368122],[-71.313732454,41.526316376],[-71.313701317,41.52625396],[-71.313682081,41.526201648],[-71.313662395,41.52613678],[-71.313644074,41.526083784],[-71.313622354,41.526027489],[-71.31360577,41.525973878],[-71.313588497,41.525916286],[-71.313565762,41.525863877],[-71.313538973,41.52580284],[-71.313511955,41.525747726],[-71.313478859,41.525742481],[-71.313480363,41.525801739],[-71.313490568,41.525861789],[-71.313507841,41.52591938],[-71.313532143,41.525977052],[-71.313560113,41.526029583],[-71.313586249,41.526084651],[-71.31361235,41.52614109],[-71.313634203,41.526193474],[-71.313655073,41.526249151],[-71.313672243,41.526310607],[-71.31368618,41.526364168],[-71.3136921,41.526422198],[-71.313616762,41.526449017],[-71.313543588,41.526464038],[-71.313473946,41.526478516],[-71.313391872,41.526497982],[-71.313319381,41.526518951],[-71.313240025,41.526535197],[-71.313159914,41.526549452],[-71.313078893,41.526563019],[-71.313001368,41.526577301],[-71.312927243,41.52659495],[-71.312847853,41.526612523],[-71.312774743,41.526626217],[-71.312699836,41.526640572],[-71.312623875,41.526661488],[-71.312545535,41.526673802],[-71.312467944,41.526690096],[-71.312392219,41.526703099],[-71.312348089,41.526714074],[-71.312030741,41.525827143],[-71.311656292,41.524768067],[-71.312736053,41.524677002],[-71.312790539,41.524978721],[-71.313228663,41.524941058],[-71.313113797,41.524226439],[-71.312670576,41.524260664],[-71.312698234,41.52457892],[-71.311628093,41.524669543],[-71.311483818,41.524279948],[-71.31208638,41.523216021],[-71.311853323,41.52314639],[-71.311829025,41.523088032],[-71.311753916,41.52305763],[-71.311673344,41.523033073],[-71.311595287,41.523011836],[-71.311523412,41.522989397],[-71.311442838,41.522965481],[-71.311364885,41.52294031],[-71.311296125,41.522903468],[-71.311289622,41.522837547],[-71.3113116,41.522782718],[-71.311346208,41.522717596],[-71.311381364,41.522662354],[-71.31141564,41.522606425],[-71.311452529,41.522551895],[-71.311488304,41.522503881],[-71.311530428,41.522448834],[-71.31157245,41.522397651],[-71.311611958,41.522342485],[-71.311641855,41.522306102],[-71.311653979,41.522291325],[-71.311704502,41.522246903],[-71.31176454,41.52220595],[-71.311841057,41.522169918],[-71.311856468,41.522161909],[-71.311855472,41.522161484],[-71.311906472,41.521682484],[-71.311912472,41.521628483],[-71.311861472,41.521492483],[-71.311779473,41.521270484],[-71.312038472,41.520853483],[-71.311858473,41.520588484],[-71.311717472,41.520376484],[-71.311187472,41.519752484],[-71.310956472,41.519426483],[-71.310523472,41.519457484],[-71.310424472,41.519454483],[-71.310310472,41.519448483],[-71.310150471,41.519437484],[-71.309867472,41.519421484],[-71.309814471,41.519417484],[-71.309471471,41.519374483],[-71.308937471,41.519282484],[-71.308486471,41.519210483],[-71.307273471,41.519067484],[-71.307189471,41.519060483],[-71.306747471,41.519006483],[-71.30625147,41.518944483],[-71.30597647,41.518909483],[-71.30533547,41.518836484],[-71.30504647,41.518801483],[-71.30471047,41.518763483],[-71.304029469,41.518680484],[-71.30393947,41.518670483],[-71.303436469,41.518604484],[-71.303215469,41.518581484],[-71.302490469,41.518501484],[-71.301742468,41.518413483],[-71.301177468,41.518343483],[-71.300193468,41.518241483],[-71.300216468,41.518182483],[-71.300331469,41.517806483],[-71.300361468,41.517724484],[-71.300414468,41.517539483],[-71.300491468,41.517325483],[-71.300613468,41.516958483],[-71.300781469,41.516450483],[-71.300815468,41.516400483],[-71.300827468,41.516310483],[-71.300972469,41.515870483],[-71.301185469,41.515226483],[-71.301223468,41.515095482],[-71.301628468,41.513921483],[-71.301658469,41.513826483],[-71.301811469,41.513372483],[-71.301887469,41.513159483],[-71.302146469,41.512366482],[-71.302268468,41.511980482],[-71.302284468,41.511895483],[-71.302291468,41.511831482],[-71.302299469,41.511696482],[-71.302307468,41.511624482],[-71.302314469,41.511547482],[-71.302314469,41.511363482],[-71.302291468,41.511183482],[-71.302261469,41.510999482],[-71.302154468,41.510231482],[-71.302108468,41.509863482],[-71.302062468,41.509584482],[-71.301879468,41.508444482],[-71.301811468,41.507991482],[-71.301467468,41.508002481],[-71.301124468,41.508018481],[-71.300971468,41.508021481],[-71.300498468,41.508030482],[-71.300163467,41.508046481],[-71.299972468,41.508055481],[-71.299553467,41.508058481],[-71.299446467,41.508065481],[-71.299316468,41.508068482],[-71.298706467,41.508089482],[-71.298477467,41.508098481],[-71.298309467,41.508106482],[-71.297599467,41.508134481],[-71.297401467,41.508146482],[-71.296913467,41.508161482],[-71.296607467,41.508144482],[-71.296379466,41.508113482],[-71.296356466,41.508104482],[-71.296142466,41.508077481],[-71.296066466,41.508056481],[-71.295967466,41.508036481],[-71.295913466,41.508068482],[-71.295783466,41.508138481],[-71.295570466,41.508116481],[-71.295135466,41.508133481],[-71.294631466,41.508143482],[-71.294433466,41.508143482],[-71.294105466,41.508149482],[-71.293739466,41.508170482],[-71.293563466,41.508187482],[-71.293472465,41.508225482],[-71.293373465,41.508272481],[-71.293350466,41.508299482],[-71.293342465,41.508354482],[-71.293357465,41.508412482],[-71.293388466,41.508492482],[-71.293441466,41.508649482],[-71.293525466,41.508908482],[-71.293640466,41.509149482],[-71.293663466,41.509270482],[-71.293708465,41.509405482],[-71.293708465,41.509562482],[-71.293701466,41.509702482],[-71.293723465,41.509787482],[-71.293785465,41.509853482],[-71.293823465,41.509934482],[-71.293830466,41.510001482],[-71.293792466,41.510083482],[-71.293731466,41.510156482],[-71.293602466,41.510352482],[-71.293479466,41.510594482],[-71.293334465,41.510763483],[-71.293244466,41.510822483],[-71.293182465,41.510852482],[-71.293083465,41.510881483],[-71.292922465,41.510893482],[-71.292465465,41.510893482],[-71.291900465,41.510909482],[-71.291412465,41.510932482],[-71.291320465,41.510938483],[-71.290588464,41.510953482],[-71.290572465,41.510908482],[-71.290435465,41.510627483],[-71.290252464,41.510325482],[-71.290229465,41.510294482],[-71.290008464,41.509987482],[-71.289941464,41.509884482],[-71.289840465,41.509919482],[-71.289802464,41.509937482],[-71.289749464,41.509979482],[-71.289695464,41.510025482],[-71.289649464,41.510071482],[-71.289611464,41.510121483],[-71.289588464,41.510176482],[-71.289565465,41.510235482],[-71.289550464,41.510294482],[-71.289550464,41.510348482],[-71.289543464,41.510402482],[-71.289497464,41.510574482],[-71.289466465,41.510633482],[-71.289451464,41.510696482],[-71.289451464,41.510755482],[-71.289459464,41.510809482],[-71.289482464,41.510862483],[-71.289474464,41.510921483],[-71.289436464,41.510976483],[-71.289390465,41.511017483],[-71.289329464,41.511050482],[-71.289253465,41.511074483],[-71.289184464,41.511089482],[-71.289100464,41.511109482],[-71.289032464,41.511132483],[-71.288963465,41.511170483],[-71.288909464,41.511211483],[-71.288871464,41.511262482],[-71.288833464,41.511308483],[-71.288788464,41.511358482],[-71.288749464,41.511404483],[-71.288597464,41.511537483],[-71.288558464,41.511583483],[-71.288513464,41.511647482],[-71.288474464,41.511697483],[-71.288452464,41.511747482],[-71.288421464,41.511807482],[-71.288345464,41.511916482],[-71.288314464,41.511975482],[-71.288299464,41.512030483],[-71.288299464,41.512151482],[-71.288269464,41.512210482],[-71.288223464,41.512261483],[-71.288131464,41.512371483],[-71.288101464,41.512430483],[-71.288070464,41.512480483],[-71.288032464,41.512530483],[-71.288009463,41.512594483],[-71.287986464,41.512653483],[-71.287948464,41.512712483],[-71.287933464,41.512762483],[-71.287895464,41.512817482],[-71.287857464,41.512867483],[-71.287803464,41.512909483],[-71.287742464,41.512950482],[-71.287666464,41.512965483],[-71.287597464,41.512985483],[-71.287544464,41.513026483],[-71.287498464,41.513072483],[-71.287445463,41.513128483],[-71.287391464,41.513178483],[-71.287338464,41.513233483],[-71.287284464,41.513275483],[-71.287239464,41.513321482],[-71.287200464,41.513367483],[-71.287162464,41.513426483],[-71.287116463,41.513472483],[-71.286949464,41.513601483],[-71.286888464,41.513638483],[-71.286826463,41.513671483],[-71.286766463,41.513713483],[-71.286697464,41.513750483],[-71.286621464,41.513788483],[-71.286552463,41.513798483],[-71.286468463,41.513795483],[-71.286407464,41.513824483],[-71.286354463,41.513865483],[-71.286292463,41.513902483],[-71.286216463,41.513913483],[-71.286140463,41.513910483],[-71.286071463,41.513880483],[-71.285995464,41.513886483],[-71.285888463,41.513969483],[-71.285842464,41.514011483],[-71.285751463,41.514111483],[-71.285705464,41.514153483],[-71.285675463,41.514207483],[-71.285667464,41.514266483],[-71.285652463,41.514330483],[-71.285621463,41.514380483],[-71.285583463,41.514439483],[-71.285476463,41.514531483],[-71.285423463,41.514582483],[-71.285377463,41.514623483],[-71.285331463,41.514674483],[-71.285286463,41.514729483],[-71.285247463,41.514774483],[-71.285171463,41.514803483],[-71.285095463,41.514804483],[-71.285019463,41.514779483],[-71.284957463,41.514744483],[-71.284912463,41.514700483],[-71.284843463,41.514670483],[-71.284774463,41.514685484],[-71.284713463,41.514722484],[-71.284660463,41.514759483],[-71.284606463,41.514814483],[-71.284561463,41.514865483],[-71.284523463,41.514915484],[-71.284477463,41.514961483],[-71.284415463,41.514998483],[-71.284355463,41.515035484],[-71.284309463,41.515081483],[-71.284248463,41.515127483],[-71.284195463,41.515169484],[-71.284149462,41.515211484],[-71.284080463,41.515239483],[-71.284004463,41.515272483],[-71.283950463,41.515314483],[-71.283897462,41.515360483],[-71.283851463,41.515415483],[-71.283828463,41.515478484],[-71.283798462,41.515528483],[-71.283798462,41.515591483],[-71.283821463,41.515649483],[-71.283859462,41.515707483],[-71.283874462,41.515761483],[-71.283851463,41.515820483],[-71.283783463,41.515848484],[-71.283706463,41.515859483],[-71.283554463,41.515862483],[-71.283485462,41.515886484],[-71.283424463,41.515909484],[-71.283393462,41.515955483],[-71.283355462,41.515951484],[-71.283279463,41.515953483],[-71.283203463,41.515968484],[-71.283126463,41.516001483],[-71.283081462,41.516047484],[-71.283073463,41.516106484],[-71.283073463,41.516164484],[-71.283134462,41.516176483],[-71.283210463,41.516175483],[-71.283306463,41.516167484],[-71.283244463,41.516320484],[-71.283171463,41.516426483],[-71.283218462,41.516650484],[-71.283073463,41.517038484],[-71.283112463,41.517343484],[-71.283157462,41.517725484],[-71.283180463,41.517950484],[-71.283195462,41.518071484],[-71.283203463,41.518107484],[-71.283302463,41.518889484],[-71.283363463,41.519441485],[-71.283370462,41.519473484],[-71.283409462,41.519787484],[-71.283439463,41.520210484],[-71.283454463,41.520349484],[-71.283462463,41.520547484],[-71.283455463,41.520714484],[-71.283424463,41.520850484],[-71.283386462,41.520985484],[-71.283325463,41.521135485],[-71.283218463,41.521349485],[-71.283042463,41.521591484],[-71.282882462,41.521761485],[-71.282722463,41.521917485],[-71.282478463,41.522116484]]]]}}"}, +{"type": "precinct", "typeId": 1905, "areaId": 25811, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":150,\"NAME\":\"1905\",\"SHAPE_Length\":0.15167771345637,\"SHAPE_Area\":-0.00071030248735986},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.265786458,41.538097488],[-71.276493462,41.544613489],[-71.280483463,41.547041489],[-71.290060467,41.553999491],[-71.290636467,41.554418491],[-71.291062467,41.55476249],[-71.291502467,41.555117491],[-71.291998468,41.555519491],[-71.292517467,41.555939491],[-71.293716468,41.556909491],[-71.293845468,41.557013491],[-71.293964468,41.557109491],[-71.295550469,41.558390491],[-71.295590469,41.558418491],[-71.299630471,41.561267492],[-71.29987247,41.561480492],[-71.300363471,41.561912492],[-71.300499471,41.562007492],[-71.300925471,41.562290492],[-71.300926088,41.562290916],[-71.300957789,41.56225039],[-71.301010094,41.562183518],[-71.301053894,41.562129598],[-71.301078702,41.562105982],[-71.301224607,41.561967084],[-71.301271253,41.561918452],[-71.301314001,41.56185982],[-71.301360395,41.561803823],[-71.301416486,41.561743613],[-71.301472241,41.561673339],[-71.301506347,41.561622947],[-71.301543211,41.561576562],[-71.301587375,41.561532706],[-71.30163698,41.561492106],[-71.301716641,41.561440855],[-71.301783838,41.56139251],[-71.301834793,41.561338443],[-71.301882845,41.561277715],[-71.301925145,41.561206343],[-71.301957888,41.56114321],[-71.301979333,41.561090395],[-71.302107724,41.560945485],[-71.302143564,41.560895073],[-71.30217813,41.560833247],[-71.30222231,41.560763868],[-71.302256382,41.560714139],[-71.302295704,41.560660326],[-71.302334086,41.560605138],[-71.302366969,41.560546031],[-71.302394404,41.560485748],[-71.302422839,41.560427387],[-71.302458681,41.560376289],[-71.3024964,41.560328534],[-71.302532325,41.560280157],[-71.302584572,41.560211249],[-71.3026258,41.560161395],[-71.302667884,41.560110216],[-71.302708088,41.560056336],[-71.302747466,41.560003872],[-71.302782339,41.559950759],[-71.3028234,41.559895554],[-71.302869931,41.559843605],[-71.302918401,41.55979493],[-71.302965787,41.559742296],[-71.303014087,41.559689618],[-71.303071197,41.559633411],[-71.30312842,41.559579925],[-71.303179543,41.559529859],[-71.30322419,41.559476627],[-71.303271553,41.559421271],[-71.303311022,41.559378664],[-71.303321592,41.559367201],[-71.303373513,41.559315124],[-71.303424574,41.559265081],[-71.303472761,41.559209064],[-71.303520894,41.559151035],[-71.303566373,41.559094395],[-71.303609915,41.559033773],[-71.303651551,41.558969123],[-71.303686059,41.558905284],[-71.303723414,41.558846779],[-71.303761765,41.558790927],[-71.303799976,41.558731051],[-71.303837024,41.558663168],[-71.3038749,41.558593183],[-71.303910068,41.558522667],[-71.303944379,41.558453453],[-71.303979658,41.558386253],[-71.304015878,41.558320359],[-71.304043061,41.558251956],[-71.304065909,41.558187685],[-71.304088813,41.558124741],[-71.304116277,41.558064435],[-71.304144652,41.558004747],[-71.304172945,41.557941744],[-71.304201349,41.55788272],[-71.304231575,41.557825002],[-71.304266279,41.55776656],[-71.304304432,41.557705334],[-71.304340791,41.557643488],[-71.304374441,41.557581019],[-71.304410715,41.55751716],[-71.304447986,41.557455292],[-71.30448346,41.55739413],[-71.30451363,41.557334446],[-71.304537529,41.557274819],[-71.304561598,41.557219287],[-71.304586436,41.557161011],[-71.304614838,41.557101987],[-71.304645064,41.557044269],[-71.304676089,41.556983877],[-71.304707145,41.556923486],[-71.304734636,41.556863819],[-71.304766403,41.556799381],[-71.304790555,41.556746501],[-71.30475647,41.55669071],[-71.304767331,41.556642793],[-71.304811729,41.556580114],[-71.304856266,41.556522123],[-71.304899036,41.556464221],[-71.304939319,41.556413038],[-71.304985242,41.556369778],[-71.305050036,41.556328242],[-71.305119388,41.556289939],[-71.305187561,41.556269151],[-71.305256138,41.556285985],[-71.305325597,41.556303438],[-71.305393346,41.556322306],[-71.305471897,41.556343616],[-71.305555206,41.556372253],[-71.305640139,41.556397507],[-71.305721203,41.556413402],[-71.305795799,41.556423407],[-71.305877636,41.556435278],[-71.305952232,41.55644526],[-71.306002221,41.556416712],[-71.306041622,41.55636491],[-71.306017592,41.556316317],[-71.305964338,41.556276365],[-71.305904237,41.556245252],[-71.305836236,41.556218997],[-71.305759282,41.556192956],[-71.305692828,41.55615863],[-71.305576296,41.556152121],[-71.305501255,41.55612805],[-71.305436758,41.556101046],[-71.305364425,41.556077596],[-71.305281341,41.556055021],[-71.30520376,41.556035656],[-71.305142943,41.556009961],[-71.305154214,41.555947272],[-71.305166396,41.555885201],[-71.305179407,41.555821096],[-71.305200736,41.555764896],[-71.30522768,41.555714697],[-71.305294267,41.555674444],[-71.305356605,41.555639628],[-71.305406119,41.555596328],[-71.305442868,41.555545893],[-71.305469612,41.555490983],[-71.30549671,41.555419881],[-71.305516021,41.555356336],[-71.305541574,41.555292687],[-71.305573373,41.555227562],[-71.305615031,41.555164306],[-71.30565923,41.555096229],[-71.305696245,41.555027636],[-71.305729753,41.554961165],[-71.30576876,41.55489859],[-71.305804064,41.554832031],[-71.305834837,41.554763565],[-71.305868949,41.554688358],[-71.305888621,41.554636248],[-71.305918229,41.554560394],[-71.305956926,41.554489082],[-71.306001841,41.554415655],[-71.306028668,41.554363374],[-71.306054502,41.554307112],[-71.306083954,41.554252778],[-71.306125247,41.554178749],[-71.306161433,41.554112214],[-71.306199891,41.554059724],[-71.306216198,41.554013028],[-71.306164071,41.553952885],[-71.306107282,41.553914345],[-71.30604,41.553882717],[-71.30600023,41.553844503],[-71.306036981,41.553741651],[-71.306070403,41.553673144],[-71.30609949,41.553608083],[-71.306121731,41.553551884],[-71.306141291,41.553496389],[-71.306137619,41.553441381],[-71.306136809,41.553417184],[-71.306182393,41.553363905],[-71.306235525,41.553321914],[-71.306283928,41.553272574],[-71.306309846,41.553218989],[-71.306335732,41.553165403],[-71.306356741,41.553117837],[-71.306196472,41.55311049],[-71.306126472,41.55324049],[-71.306121472,41.55324849],[-71.306058472,41.55338049],[-71.306007472,41.55347549],[-71.305938472,41.55362149],[-71.305839472,41.55380749],[-71.305809472,41.55387149],[-71.305679472,41.554132491],[-71.305572472,41.55373149],[-71.304908472,41.55343949],[-71.304443472,41.55323249],[-71.303770471,41.55296249],[-71.302916471,41.55262249],[-71.302627471,41.55250749],[-71.30255847,41.55247749],[-71.30242147,41.55242149],[-71.30160247,41.55207549],[-71.30156747,41.55206049],[-71.30150747,41.55203449],[-71.30053747,41.55160349],[-71.29956047,41.55116349],[-71.299125469,41.55096149],[-71.29871347,41.55077549],[-71.298507469,41.55068549],[-71.298072469,41.55048249],[-71.297668469,41.55030549],[-71.297508469,41.55023249],[-71.296920468,41.549964489],[-71.296386469,41.54972349],[-71.296195469,41.54963249],[-71.295967468,41.54952949],[-71.295913468,41.54950349],[-71.295181468,41.54917549],[-71.294772468,41.548995489],[-71.294700468,41.54896449],[-71.294311468,41.548819489],[-71.294121468,41.548760489],[-71.293937467,41.548704489],[-71.293472467,41.548606489],[-71.292823468,41.548466489],[-71.292083468,41.548332489],[-71.292083468,41.548287489],[-71.292091467,41.548111489],[-71.292091467,41.54779149],[-71.292068467,41.547472489],[-71.292030467,41.547063489],[-71.292007467,41.546933489],[-71.292003467,41.546905489],[-71.291977467,41.546735489],[-71.291900467,41.546183489],[-71.291824467,41.545599489],[-71.291786467,41.545343489],[-71.291770467,41.545235489],[-71.291740467,41.545051489],[-71.291725467,41.544831489],[-71.291702467,41.544575489],[-71.291694466,41.544386489],[-71.291687467,41.544278489],[-71.291686467,41.544143489],[-71.291664467,41.543693489],[-71.291664467,41.543634489],[-71.291659466,41.543491488],[-71.291633467,41.542549489],[-71.291633467,41.542266488],[-71.291626467,41.541784488],[-71.291618466,41.541568488],[-71.291610467,41.541230488],[-71.291603466,41.541028488],[-71.291595467,41.540848488],[-71.291595467,41.540758489],[-71.291595467,41.540708488],[-71.291572467,41.539637488],[-71.291564466,41.539480488],[-71.291564466,41.539322488],[-71.291557466,41.539160487],[-71.291549467,41.539003488],[-71.291549467,41.538876488],[-71.291549467,41.538840488],[-71.291557466,41.538683488],[-71.291565466,41.538552488],[-71.291587466,41.538416488],[-71.291610467,41.538290488],[-71.291641466,41.538168487],[-71.291671467,41.538045488],[-71.291710467,41.537928488],[-71.291778466,41.537679487],[-71.291908466,41.537226488],[-71.292175467,41.536306487],[-71.292243466,41.536053487],[-71.292610466,41.534906487],[-71.292861467,41.534099487],[-71.292869466,41.534063487],[-71.293258466,41.532786486],[-71.293342467,41.532532486],[-71.293594467,41.531775486],[-71.293678467,41.531489486],[-71.293716467,41.531380486],[-71.293746467,41.531299487],[-71.293815467,41.531135486],[-71.293861466,41.531031486],[-71.293975467,41.530821486],[-71.294044467,41.530680486],[-71.294220467,41.530420486],[-71.294456467,41.530096486],[-71.294700467,41.529789486],[-71.294914467,41.529501486],[-71.295211467,41.529108486],[-71.295578467,41.528650485],[-71.295776467,41.528381485],[-71.295822467,41.528321485],[-71.295898467,41.528212486],[-71.295921468,41.528171486],[-71.295997467,41.528056486],[-71.296150467,41.527842486],[-71.296180467,41.527796485],[-71.296318467,41.527600485],[-71.296493467,41.527326485],[-71.296714467,41.526975485],[-71.296806467,41.526833486],[-71.296951468,41.526587485],[-71.297187468,41.526222485],[-71.297271467,41.526095485],[-71.297394467,41.525880485],[-71.297416468,41.525835485],[-71.297515468,41.525644485],[-71.297561468,41.525544485],[-71.297584467,41.525507485],[-71.297622467,41.525408485],[-71.297637468,41.525376485],[-71.297668468,41.525299485],[-71.297706468,41.525167485],[-71.297790468,41.524940485],[-71.297920468,41.524560485],[-71.297973467,41.524410485],[-71.298040468,41.524198485],[-71.298187468,41.523838484],[-71.298221468,41.523741484],[-71.298553468,41.522822484],[-71.297774626,41.522484138],[-71.297527751,41.522870824],[-71.297111468,41.522819484],[-71.297294467,41.522280484],[-71.297496372,41.521751098],[-71.298864995,41.522000066],[-71.298999303,41.521621518],[-71.297635476,41.52136184],[-71.298309467,41.519499484],[-71.298530863,41.519444249],[-71.298743189,41.519971699],[-71.299515329,41.520133852],[-71.299743468,41.519488483],[-71.298416468,41.519209484],[-71.298042468,41.519131484],[-71.297699468,41.519070484],[-71.297561468,41.519064484],[-71.296836467,41.519159484],[-71.296577467,41.517926483],[-71.296055467,41.518074484],[-71.295539466,41.518235483],[-71.295303466,41.518312484],[-71.294593467,41.518515484],[-71.294410466,41.518573484],[-71.293350466,41.518900483],[-71.293083466,41.518987484],[-71.292137466,41.519276484],[-71.291519465,41.519455484],[-71.290649465,41.519729484],[-71.290504465,41.519767484],[-71.289794465,41.519966484],[-71.289657465,41.520005484],[-71.288467464,41.520312484],[-71.288032464,41.520425484],[-71.287475464,41.520571485],[-71.286903464,41.520722484],[-71.286363464,41.520867485],[-71.285911464,41.520989484],[-71.285445464,41.521120485],[-71.284881463,41.521284484],[-71.284141463,41.521511484],[-71.284049463,41.521540485],[-71.283424463,41.521719485],[-71.283233463,41.521790484],[-71.282920462,41.521900485],[-71.282600463,41.522050485],[-71.282478463,41.522116484],[-71.282272463,41.522232485],[-71.282241462,41.522255484],[-71.282150463,41.522307485],[-71.281944462,41.522433485],[-71.281631462,41.522628485],[-71.281120462,41.522953485],[-71.280845462,41.523121485],[-71.280006462,41.523619485],[-71.279480462,41.523936485],[-71.279304462,41.524043486],[-71.278991462,41.524229485],[-71.278747461,41.524378485],[-71.278167461,41.524728486],[-71.276979461,41.525448486],[-71.27675646,41.525584486],[-71.27625246,41.525887486],[-71.276001461,41.526067486],[-71.275894461,41.526160486],[-71.275795461,41.526252485],[-71.275695461,41.526366486],[-71.275619461,41.526476486],[-71.275505461,41.526636486],[-71.275207461,41.527029486],[-71.275169461,41.527075486],[-71.27448246,41.527993486],[-71.27387246,41.528803487],[-71.27371246,41.529013487],[-71.27324646,41.529657487],[-71.27310146,41.529844486],[-71.27274346,41.530311486],[-71.272369459,41.530737486],[-71.27230046,41.530820487],[-71.27203346,41.531122487],[-71.27159846,41.531621487],[-71.27134646,41.531897487],[-71.271224459,41.532039487],[-71.27105746,41.532222487],[-71.270675459,41.532671487],[-71.270217459,41.533180487],[-71.269897459,41.533555487],[-71.269744459,41.533721487],[-71.269409459,41.534105488],[-71.268722458,41.534849488],[-71.268020458,41.535619488],[-71.267783459,41.535871488],[-71.267456458,41.536243488],[-71.266968458,41.536779488],[-71.266853458,41.536894488],[-71.266577458,41.537192488],[-71.266418459,41.537366488],[-71.266250458,41.537559489],[-71.265876458,41.537971488],[-71.265786458,41.538097488]]]]}}"}, +{"type": "precinct", "typeId": 2001, "areaId": 25816, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":155,\"NAME\":\"2001\",\"SHAPE_Length\":0.097575393103502,\"SHAPE_Area\":-0.00021690318588538},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.440600267,41.438376044],[-71.440597809,41.438438868],[-71.440597535,41.438472144],[-71.440601145,41.438513518],[-71.440599726,41.438569709],[-71.440565845,41.438629451],[-71.440532096,41.438677324],[-71.440584889,41.438708615],[-71.440688043,41.43870613],[-71.440739514,41.438653852],[-71.440794932,41.438605304],[-71.440815914,41.438559597],[-71.440794718,41.438506299],[-71.440796938,41.438472292],[-71.440769945,41.438410071],[-71.440711326,41.438369172],[-71.440634811,41.438355525],[-71.440600267,41.438376044]]],[[[-71.441140257,41.439402897],[-71.441137236,41.439415429],[-71.441126141,41.439450895],[-71.441105127,41.439499575],[-71.441181676,41.439510248],[-71.441221391,41.439452041],[-71.441212892,41.439406159],[-71.441187464,41.439394254],[-71.441140257,41.439402897]]],[[[-71.44212632,41.439665993],[-71.442106654,41.439668865],[-71.442107452,41.439694023],[-71.442116229,41.439701437],[-71.442142524,41.439729626],[-71.442223065,41.439729255],[-71.442220425,41.439689323],[-71.442206796,41.439670791],[-71.442178589,41.439639627],[-71.44212632,41.439665993]]],[[[-71.472898155,41.43992363],[-71.472898521,41.439923463],[-71.47291317,41.439909085],[-71.472898155,41.43992363]]],[[[-71.44027461,41.44093567],[-71.440231118,41.440968741],[-71.440261263,41.441007339],[-71.440301262,41.441038577],[-71.440297306,41.441043698],[-71.440274484,41.441073166],[-71.440271091,41.441127847],[-71.440324927,41.441151019],[-71.440384062,41.441129118],[-71.440412953,41.441076028],[-71.440417252,41.441028003],[-71.440424499,41.440980734],[-71.44039154,41.440928069],[-71.440366115,41.440912436],[-71.440338609,41.440912307],[-71.44027461,41.44093567]]],[[[-71.440478109,41.440785084],[-71.440430696,41.44081813],[-71.440445892,41.440885445],[-71.440503507,41.440929317],[-71.440541528,41.440964236],[-71.440524363,41.441023278],[-71.440556346,41.441079601],[-71.44058465,41.441103378],[-71.440632382,41.441154609],[-71.440653754,41.441182041],[-71.440740326,41.441169119],[-71.440801443,41.44113983],[-71.440798839,41.441095461],[-71.440799146,41.441058526],[-71.440831819,41.441025381],[-71.440865599,41.440976776],[-71.440904379,41.44091189],[-71.440928477,41.44084917],[-71.440908356,41.440783316],[-71.440884241,41.440730725],[-71.440817677,41.440700845],[-71.440768286,41.440736863],[-71.440705195,41.440764664],[-71.440649556,41.440718574],[-71.44062805,41.440705916],[-71.440548065,41.440761747],[-71.440478109,41.440785084]]],[[[-71.469285147,41.441319285],[-71.469204009,41.44135764],[-71.46912496,41.441395517],[-71.469285519,41.441319464],[-71.469351581,41.441306425],[-71.469285147,41.441319285]]],[[[-71.468929894,41.44147919],[-71.468916274,41.441483315],[-71.468929519,41.441479463],[-71.4689728,41.441465036],[-71.468929894,41.44147919]]],[[[-71.468733768,41.441536198],[-71.468711529,41.441544526],[-71.468733519,41.441536463],[-71.46874954,41.441531804],[-71.468733768,41.441536198]]],[[[-71.468586376,41.44162741],[-71.468583678,41.441631023],[-71.468586519,41.441627464],[-71.468597835,41.441615949],[-71.468586376,41.44162741]]],[[[-71.468317519,41.441721463],[-71.468421519,41.441741464],[-71.46845848,41.441741464],[-71.468421163,41.441741052],[-71.4683175,41.441721127],[-71.468241121,41.441720351],[-71.46822356,41.441721645],[-71.468241519,41.441720463],[-71.468317519,41.441721463]]],[[[-71.468096133,41.44174341],[-71.468010493,41.441785376],[-71.46799769,41.441793556],[-71.468010519,41.441785464],[-71.468096519,41.441743464],[-71.468111557,41.441739541],[-71.468096133,41.44174341]]],[[[-71.46768707,41.442040151],[-71.467623561,41.442072357],[-71.467620797,41.442074109],[-71.467623519,41.442072464],[-71.467687519,41.442040464],[-71.467699417,41.442032945],[-71.46768707,41.442040151]]],[[[-71.467239519,41.442161463],[-71.467254311,41.442164422],[-71.467239522,41.442161351],[-71.467220382,41.442160477],[-71.467239519,41.442161463]]],[[[-71.467489789,41.442153234],[-71.467441949,41.44216932],[-71.467489519,41.442153464],[-71.467491534,41.442152245],[-71.467489789,41.442153234]]],[[[-71.467411519,41.442179463],[-71.467411648,41.44217942],[-71.467404192,41.442179379],[-71.467411519,41.442179463]]],[[[-71.466950043,41.442178375],[-71.46691966,41.442188889],[-71.466950519,41.442178464],[-71.466980205,41.442173396],[-71.466950043,41.442178375]]],[[[-71.466700353,41.442307528],[-71.466700519,41.442307464],[-71.466729749,41.442281632],[-71.466700353,41.442307528]]],[[[-71.448535107,41.446377829],[-71.448558498,41.44643394],[-71.448570147,41.44650171],[-71.448616421,41.446563617],[-71.448673405,41.446613134],[-71.448728759,41.446647807],[-71.448804095,41.446666365],[-71.448876972,41.44668291],[-71.448954585,41.446705289],[-71.449021744,41.446726245],[-71.449121153,41.446745888],[-71.449201664,41.446756193],[-71.449275481,41.446775047],[-71.449372131,41.446786822],[-71.449397451,41.44682617],[-71.449366637,41.446894561],[-71.4493558,41.446953722],[-71.449345841,41.4470186],[-71.449329252,41.447086997],[-71.449297529,41.44715182],[-71.449256324,41.447213689],[-71.449221747,41.44727492],[-71.449213767,41.447334082],[-71.449224657,41.447401897],[-71.449241192,41.447481149],[-71.44925857,41.44756971],[-71.44927601,41.447657471],[-71.449295272,41.447746742],[-71.449318331,41.447840291],[-71.449342367,41.447928146],[-71.449364621,41.448001683],[-71.449386036,41.448060286],[-71.449417814,41.448120311],[-71.449503596,41.448194837],[-71.449535474,41.448244914],[-71.449547344,41.448264313],[-71.449568291,41.448298536],[-71.449598283,41.448350053],[-71.449585427,41.448427028],[-71.449547164,41.448496468],[-71.449542769,41.44855881],[-71.449547111,41.448565125],[-71.449585034,41.44862035],[-71.449644286,41.448686928],[-71.449711204,41.448747815],[-71.449778091,41.448808724],[-71.449846898,41.448862522],[-71.449860691,41.448871402],[-71.44990356,41.448899093],[-71.449958274,41.448939963],[-71.450005485,41.448973306],[-71.450011105,41.448977288],[-71.450099048,41.44901186],[-71.450190859,41.449035044],[-71.450291884,41.449093956],[-71.450355913,41.449157014],[-71.450419033,41.449215748],[-71.450488947,41.44925523],[-71.450555133,41.449280461],[-71.450634668,41.44929934],[-71.450722782,41.449308229],[-71.450793175,41.449277864],[-71.450867441,41.449229617],[-71.450940796,41.449179243],[-71.451015935,41.449142454],[-71.451102404,41.449116418],[-71.451179388,41.449091729],[-71.451238483,41.449047019],[-71.451279549,41.449005802],[-71.451334878,41.448957524],[-71.451368444,41.4489056],[-71.451395493,41.44883078],[-71.451423344,41.448779517],[-71.451455908,41.448726151],[-71.451495126,41.448677775],[-71.451565723,41.4486153],[-71.451630533,41.448569884],[-71.451703851,41.448526668],[-71.45177993,41.448492028],[-71.451857855,41.448466607],[-71.451944289,41.448445556],[-71.452039235,41.448421697],[-71.452139929,41.44839498],[-71.452235946,41.448361813],[-71.452319624,41.448325758],[-71.452394759,41.448291804],[-71.452468952,41.448257873],[-71.452550709,41.44822893],[-71.452634351,41.448200011],[-71.452718938,41.448167501],[-71.452798782,41.44813714],[-71.452865339,41.448111026],[-71.452949082,41.448068545],[-71.452991192,41.448010198],[-71.453083714,41.447932843],[-71.453172066,41.447906052],[-71.453278342,41.447891504],[-71.453346748,41.447872504],[-71.45341139,41.447845635],[-71.453472327,41.447813778],[-71.453539121,41.447752696],[-71.453579348,41.447692907],[-71.453632654,41.447663174],[-71.453713337,41.447647769],[-71.453766609,41.447622313],[-71.453828594,41.44756976],[-71.453834653,41.447513433],[-71.453793286,41.447466898],[-71.453793692,41.447408419],[-71.453818715,41.447356423],[-71.453847508,41.447301614],[-71.453877242,41.447250374],[-71.453913702,41.447185575],[-71.453967075,41.447147266],[-71.45404214,41.447122596],[-71.454092687,41.447081427],[-71.45411112,41.447020828],[-71.454136176,41.446963868],[-71.454170684,41.446908376],[-71.45421649,41.446865765],[-71.454198382,41.446854917],[-71.454259328,41.446808606],[-71.454303343,41.446762746],[-71.454326089,41.446705419],[-71.454326983,41.446644379],[-71.454350521,41.446584171],[-71.454380536,41.44652097],[-71.454426195,41.446470125],[-71.45447338,41.446411436],[-71.454536793,41.446357259],[-71.45459044,41.446315404],[-71.454646734,41.446270624],[-71.454703028,41.446225157],[-71.454767742,41.446178756],[-71.454834611,41.446137982],[-71.454885401,41.446095486],[-71.454930177,41.446046081],[-71.454969271,41.445995394],[-71.455011281,41.445946742],[-71.455063835,41.445902074],[-71.455118337,41.445898505],[-71.455178062,41.445945847],[-71.455273516,41.445972345],[-71.455347895,41.445970384],[-71.455424069,41.445966891],[-71.455520044,41.445943052],[-71.455605577,41.445898237],[-71.455669631,41.445837678],[-71.455709366,41.445781319],[-71.455687571,41.445738612],[-71.455602392,41.445711112],[-71.455538674,41.44567948],[-71.455575912,41.445629546],[-71.455613373,41.445564724],[-71.455612664,41.445489572],[-71.455609967,41.445432921],[-71.455615781,41.445376046],[-71.455628907,41.445294861],[-71.455633581,41.445214612],[-71.455635626,41.445157803],[-71.455640587,41.445103054],[-71.455665349,41.445028666],[-71.455712322,41.4449657],[-71.455775403,41.444904455],[-71.455830946,41.444843413],[-71.455885487,41.444780952],[-71.455895905,41.44470194],[-71.455889409,41.444644693],[-71.455877379,41.444589709],[-71.455833477,41.444517834],[-71.455788602,41.444445981],[-71.455746464,41.444371934],[-71.455713599,41.444294803],[-71.455688661,41.444225977],[-71.455694055,41.444160616],[-71.455721181,41.444096064],[-71.4557619,41.444020517],[-71.455795068,41.443964292],[-71.455832036,41.443908708],[-71.455866206,41.443853902],[-71.455907987,41.443781168],[-71.455945969,41.443707128],[-71.455977716,41.443641023],[-71.456018182,41.443579678],[-71.456062476,41.443519614],[-71.456105619,41.443456075],[-71.456140311,41.443392051],[-71.456163757,41.443329693],[-71.456163886,41.443272952],[-71.456172616,41.443218113],[-71.456196361,41.443162181],[-71.456212449,41.44310364],[-71.456248322,41.443045929],[-71.456267508,41.443034844],[-71.456318986,41.443005041],[-71.456415628,41.442976193],[-71.456509863,41.442955943],[-71.456536888,41.442950144],[-71.456604099,41.442935692],[-71.456707966,41.442920157],[-71.456779095,41.442909755],[-71.456883172,41.44289845],[-71.456986337,41.4428879],[-71.457091776,41.442885058],[-71.457168948,41.442883005],[-71.457268943,41.442885284],[-71.457342946,41.442896083],[-71.457419103,41.442911777],[-71.457490087,41.442938219],[-71.457557271,41.442964087],[-71.457650628,41.442985002],[-71.457741579,41.443014469],[-71.457812023,41.443029612],[-71.457881855,41.443051845],[-71.457950834,41.44307554],[-71.458046825,41.443112671],[-71.458138286,41.443152773],[-71.458219862,41.44320378],[-71.458277133,41.443239135],[-71.458345697,41.443294689],[-71.45837847,41.44332999],[-71.458347009,41.443381894],[-71.45833399,41.443445354],[-71.458336556,41.443519751],[-71.458328608,41.443590898],[-71.45829498,41.443657049],[-71.458295932,41.443737118],[-71.458289538,41.443801129],[-71.458280378,41.443866603],[-71.458278726,41.443931188],[-71.458268383,41.443991768],[-71.458251415,41.444051087],[-71.458230378,41.444104801],[-71.458207474,41.444178481],[-71.458166008,41.444237722],[-71.458127219,41.44429406],[-71.458048584,41.44434581],[-71.457989828,41.444398459],[-71.457974864,41.444460523],[-71.458012631,41.444482217],[-71.458109082,41.444469011],[-71.458180825,41.444452182],[-71.458267644,41.44443426],[-71.458324016,41.444450495],[-71.458397576,41.444491071],[-71.458471988,41.444530206],[-71.458538593,41.444563163],[-71.458620183,41.444594296],[-71.458691164,41.444581057],[-71.458760945,41.444542362],[-71.458800154,41.444494463],[-71.458830553,41.444439769],[-71.45886861,41.444387684],[-71.458923927,41.444341552],[-71.458984285,41.444302328],[-71.459044061,41.444270926],[-71.459104809,41.444240233],[-71.459163583,41.444207458],[-71.459252088,41.444166094],[-71.459345022,41.444138797],[-71.45943942,41.444101529],[-71.459516528,41.444058309],[-71.459545744,41.443998696],[-71.459563773,41.443941481],[-71.459613076,41.443887662],[-71.459680732,41.443843318],[-71.459751364,41.443802451],[-71.459823495,41.443793396],[-71.459903171,41.443824596],[-71.459990979,41.443827943],[-71.46006577,41.443794716],[-71.460115714,41.443735225],[-71.460101185,41.443686666],[-71.460085971,41.443664408],[-71.460131072,41.443621336],[-71.460213442,41.443569495],[-71.460274861,41.443533084],[-71.460331719,41.443499691],[-71.460389579,41.443467624],[-71.460474956,41.443419946],[-71.460551792,41.443371098],[-71.460613343,41.443316963],[-71.460676046,41.443267768],[-71.460739138,41.44322708],[-71.460801019,41.443180034],[-71.460866488,41.44313004],[-71.460938463,41.443077074],[-71.460989186,41.443033889],[-71.461038847,41.4429886],[-71.461083857,41.44294411],[-71.461132726,41.44290097],[-71.461192961,41.442859641],[-71.461260915,41.442821677],[-71.46132993,41.442786457],[-71.461396059,41.442749956],[-71.461457417,41.442712149],[-71.46151704,41.442677246],[-71.461572804,41.44264097],[-71.461625621,41.442601971],[-71.461701333,41.4425496],[-71.461777166,41.442498648],[-71.461855884,41.442449709],[-71.461928488,41.442410168],[-71.462012987,41.442403677],[-71.462110827,41.442399639],[-71.462215514,41.442381949],[-71.462311181,41.442352432],[-71.462384576,41.442310032],[-71.462443478,41.44226024],[-71.462510427,41.442220856],[-71.462571232,41.442191579],[-71.462630404,41.442147436],[-71.462645783,41.442093856],[-71.462641507,41.442023758],[-71.462640599,41.441964912],[-71.462661973,41.44189839],[-71.462732109,41.441867446],[-71.462817298,41.441875112],[-71.462832301,41.441896158],[-71.462836492,41.441902037],[-71.462847577,41.441917546],[-71.462816912,41.44196657],[-71.46276217,41.442024071],[-71.46273828,41.4420779],[-71.462816341,41.442114083],[-71.462894312,41.442148185],[-71.462933071,41.442190393],[-71.46296788,41.442229146],[-71.463056245,41.442264372],[-71.463120575,41.442288909],[-71.463208941,41.442324135],[-71.463302249,41.442325148],[-71.463390919,41.442306446],[-71.463470053,41.442325613],[-71.463547634,41.442351893],[-71.463612355,41.442384915],[-71.463650412,41.442432108],[-71.463681712,41.44249652],[-71.463738384,41.442519111],[-71.463819876,41.44250912],[-71.4639065,41.442506791],[-71.463981025,41.442508347],[-71.464055179,41.442521978],[-71.464134153,41.442557429],[-71.46421425,41.442597156],[-71.464308149,41.442630073],[-71.464401317,41.442667266],[-71.464489132,41.442710289],[-71.464576557,41.442745559],[-71.464656796,41.442747665],[-71.464693924,41.442716161],[-71.464629184,41.442662556],[-71.464555862,41.442626993],[-71.464481077,41.442599892],[-71.464416597,41.442571856],[-71.464341913,41.44252703],[-71.464256403,41.442493156],[-71.464191041,41.442465142],[-71.46413034,41.442417828],[-71.464123897,41.442361268],[-71.464145601,41.442301812],[-71.464193525,41.442259403],[-71.464287877,41.442241319],[-71.464368846,41.44224052],[-71.464446539,41.442229247],[-71.464543448,41.442205354],[-71.464626132,41.442180474],[-71.464712436,41.44215189],[-71.464804633,41.442128865],[-71.464877183,41.442129024],[-71.464973368,41.442149843],[-71.465031092,41.442194411],[-71.465070843,41.442257865],[-71.465132427,41.442304448],[-71.465224753,41.442323252],[-71.46532548,41.442320538],[-71.465418649,41.442298885],[-71.46549562,41.442272013],[-71.465561595,41.44223265],[-71.465603174,41.442174801],[-71.4656478,41.442102682],[-71.465686973,41.442054117],[-71.465754201,41.442001238],[-71.465824707,41.441957532],[-71.465898741,41.441908771],[-71.465968094,41.44186081],[-71.466020096,41.44180548],[-71.466052593,41.441735141],[-71.466080289,41.441663451],[-71.466109839,41.441591029],[-71.46611881,41.441522033],[-71.466114261,41.441445576],[-71.466110653,41.44136976],[-71.466132264,41.441308909],[-71.466174784,41.441251037],[-71.466195152,41.44118385],[-71.466208193,41.441121121],[-71.46625402,41.441073771],[-71.466328944,41.441063981],[-71.466402285,41.441060572],[-71.466468189,41.441038956],[-71.466514016,41.440991605],[-71.46655432,41.44092742],[-71.466598723,41.440870189],[-71.466672414,41.440834899],[-71.466763947,41.440797693],[-71.466842991,41.440755154],[-71.466908513,41.440705887],[-71.466972422,41.440662315],[-71.467031469,41.440615357],[-71.467038445,41.440583958],[-71.467011452,41.440531509],[-71.467068214,41.440495939],[-71.467158132,41.440464472],[-71.467228986,41.440449078],[-71.46730397,41.440439974],[-71.467377069,41.440431624],[-71.467473122,41.440409902],[-71.467556655,41.440382847],[-71.467633654,41.44035666],[-71.467695095,41.440320977],[-71.46775757,41.440287375],[-71.467820566,41.440304134],[-71.467875213,41.44036368],[-71.467910135,41.44042441],[-71.467876158,41.440482765],[-71.467864952,41.440524912],[-71.467928249,41.440548052],[-71.468014139,41.440550683],[-71.468118842,41.440552839],[-71.468219535,41.440550122],[-71.468317342,41.440545346],[-71.468406609,41.440540134],[-71.468463611,41.440510258],[-71.468486803,41.440442248],[-71.468475535,41.440363846],[-71.468463565,41.440290406],[-71.468463473,41.440228703],[-71.468491637,41.440186835],[-71.468567602,41.440159297],[-71.468664416,41.440133983],[-71.468690589,41.440123905],[-71.468747738,41.440101942],[-71.468802412,41.440043775],[-71.468836118,41.439979016],[-71.468870676,41.439912839],[-71.468918695,41.439851971],[-71.468971575,41.439795267],[-71.469027493,41.439742018],[-71.469098054,41.439699681],[-71.469150263,41.439647917],[-71.469159743,41.439589509],[-71.469200895,41.43952315],[-71.469270674,41.439464576],[-71.469287549,41.439449554],[-71.469334859,41.439407532],[-71.469370268,41.439339205],[-71.469414298,41.439294048],[-71.469474413,41.439230759],[-71.469531121,41.439174628],[-71.469595487,41.439121105],[-71.469668242,41.439065276],[-71.469726063,41.439032518],[-71.469787623,41.438998961],[-71.469867244,41.438949284],[-71.469946494,41.438911706],[-71.470033913,41.438887373],[-71.470126706,41.438876373],[-71.470199493,41.438880806],[-71.470273343,41.438888029],[-71.470348346,41.438899484],[-71.470442704,41.438922493],[-71.470530406,41.438943533],[-71.470628782,41.438951517],[-71.470733272,41.438948707],[-71.470830896,41.43894043],[-71.470930314,41.438930644],[-71.471033319,41.438917268],[-71.471124567,41.438894215],[-71.471216938,41.438873998],[-71.471324465,41.438876106],[-71.471399498,41.438888269],[-71.471469059,41.438904135],[-71.471566123,41.438924903],[-71.471669059,41.43892925],[-71.47174334,41.438925838],[-71.471815615,41.438919635],[-71.471908528,41.438911425],[-71.471985884,41.438893079],[-71.472062999,41.43887041],[-71.472141727,41.438841384],[-71.472223983,41.438807259],[-71.472305237,41.438771715],[-71.472384636,41.438736949],[-71.472452239,41.438711739],[-71.472516955,41.438685202],[-71.472581369,41.438652971],[-71.472642807,41.438617262],[-71.472713839,41.4386047],[-71.472783777,41.438589371],[-71.472866906,41.438573633],[-71.472945596,41.438563726],[-71.473033066,41.43855995],[-71.473107699,41.438583478],[-71.473174335,41.438617844],[-71.473175554,41.438683048],[-71.473161329,41.438760735],[-71.473164953,41.438817385],[-71.473173249,41.438893042],[-71.473198964,41.438958273],[-71.473256902,41.439007092],[-71.473333609,41.439014931],[-71.473415608,41.439014859],[-71.473441822,41.439051046],[-71.473414656,41.439114184],[-71.473369407,41.439173545],[-71.47333735,41.439232565],[-71.473337567,41.439296373],[-71.473343919,41.43937068],[-71.473347354,41.439442882],[-71.473332791,41.439495253],[-71.473331253,41.439500786],[-71.473252705,41.43953338],[-71.473179711,41.439584272],[-71.473143515,41.439655459],[-71.473113733,41.439722896],[-71.473050922,41.439769262],[-71.472993438,41.439815751],[-71.47306852,41.439757463],[-71.474518521,41.439053463],[-71.474835521,41.438899463],[-71.475075521,41.438885462],[-71.475052521,41.438870463],[-71.475021521,41.438839463],[-71.474892521,41.438748462],[-71.474815521,41.438687463],[-71.474648521,41.438572462],[-71.474365521,41.438389463],[-71.474022521,41.438160463],[-71.47393852,41.438095463],[-71.47345052,41.437798462],[-71.473190521,41.437626463],[-71.47293152,41.437470463],[-71.47267252,41.437333462],[-71.47261852,41.437313462],[-71.47239752,41.437218463],[-71.47208452,41.437104463],[-71.47195452,41.437012462],[-71.47182552,41.436867463],[-71.47172552,41.436707462],[-71.47162752,41.436538463],[-71.47161952,41.436520463],[-71.47134052,41.436441463],[-71.47114652,41.436388462],[-71.47073152,41.436240462],[-71.470369519,41.436106462],[-71.470180519,41.436065462],[-71.468920519,41.435387462],[-71.468586519,41.435204462],[-71.468522519,41.435155462],[-71.468142519,41.434722462],[-71.467772519,41.434122462],[-71.467699518,41.433928462],[-71.467613519,41.433922462],[-71.467270518,41.433869462],[-71.466971518,41.433792462],[-71.466942518,41.433785462],[-71.466423518,41.433586462],[-71.466156517,41.433503462],[-71.466049518,41.433472462],[-71.465981517,41.433579462],[-71.465911518,41.433716462],[-71.465874518,41.433789462],[-71.465759518,41.433926462],[-71.465622518,41.434060462],[-71.465500518,41.434140462],[-71.465393518,41.434197462],[-71.465210518,41.434208462],[-71.464523517,41.434185462],[-71.462227517,41.434143463],[-71.461097516,41.434147462],[-71.460450516,41.434133462],[-71.460144516,41.434109462],[-71.459824516,41.434044463],[-71.459755516,41.433998462],[-71.459625515,41.433865462],[-71.459534516,41.433899462],[-71.459419516,41.433922462],[-71.459274515,41.433937462],[-71.459114516,41.433930462],[-71.458435515,41.433880462],[-71.457672515,41.433819462],[-71.457016515,41.433754462],[-71.456902515,41.433743462],[-71.455919854,41.434013094],[-71.455890873,41.434042359],[-71.455826891,41.434104313],[-71.455765555,41.434161968],[-71.455706775,41.434214615],[-71.455647114,41.434267263],[-71.455587542,41.434322746],[-71.455521554,41.434382709],[-71.455458633,41.434446744],[-71.455398598,41.434512907],[-71.455335946,41.434582637],[-71.455266849,41.434656138],[-71.455189393,41.434731946],[-71.455107405,41.43481212],[-71.45502171,41.434892429],[-71.454934159,41.434974202],[-71.454848583,41.435057324],[-71.454754467,41.435139963],[-71.454704657,41.435183146],[-71.454654848,41.435225596],[-71.454604097,41.435268115],[-71.454551461,41.435311341],[-71.454496059,41.435354659],[-71.45443783,41.435398775],[-71.454380543,41.435442846],[-71.45432514,41.435486895],[-71.454271562,41.435529435],[-71.454218866,41.435571267],[-71.454167051,41.435611681],[-71.454115118,41.435649236],[-71.454013717,41.435717166],[-71.453914782,41.435777252],[-71.453815759,41.435835188],[-71.453718948,41.435900192],[-71.453628029,41.435970711],[-71.453534224,41.436039878],[-71.453425345,41.436108742],[-71.453366605,41.4361422],[-71.453307866,41.436175681],[-71.453194096,41.436240426],[-71.453081179,41.436303731],[-71.452971999,41.436366214],[-71.452871298,41.43642918],[-71.452774606,41.436496996],[-71.452679947,41.436567603],[-71.452580666,41.43664045],[-71.452526817,41.436677363],[-71.452471964,41.436713567],[-71.452364145,41.436785243],[-71.452310265,41.436821425],[-71.452205331,41.436894429],[-71.452106933,41.436965171],[-71.452013004,41.43703221],[-71.451918927,41.437094973],[-71.451820931,41.437155721],[-71.451725911,41.437218551],[-71.451636722,41.437286187],[-71.4515745,41.437342147],[-71.451556283,41.437358537],[-71.451479702,41.437432902],[-71.451401998,41.437503767],[-71.451314873,41.437574902],[-71.451218297,41.437644821],[-71.451117099,41.437717025],[-71.45106416,41.437753915],[-71.451010308,41.437790805],[-71.450956456,41.43782838],[-71.450900811,41.437866047],[-71.450843071,41.437900899],[-71.450728233,41.43796356],[-71.450614158,41.438022631],[-71.450495372,41.438081814],[-71.45043654,41.438113166],[-71.450377708,41.438144542],[-71.450318936,41.438176603],[-71.450260104,41.438207933],[-71.450145295,41.438271988],[-71.450034374,41.438338081],[-71.449929899,41.438400426],[-71.44982327,41.438457898],[-71.449727709,41.438508651],[-71.449666902,41.43853863],[-71.449655865,41.438544617],[-71.449606872,41.438584184],[-71.44955494,41.438613138],[-71.449548099,41.438617],[-71.449475313,41.438652234],[-71.449394107,41.438689179],[-71.449306485,41.438729781],[-71.449215453,41.438777608],[-71.44912855,41.43883239],[-71.449040852,41.438891471],[-71.448945468,41.438947209],[-71.448843249,41.438998164],[-71.44874097,41.439047701],[-71.448643522,41.439099207],[-71.448547899,41.439149273],[-71.448446622,41.439200182],[-71.448336132,41.439255616],[-71.448219405,41.439318297],[-71.448101527,41.439376768],[-71.447978669,41.43942968],[-71.447914033,41.439456912],[-71.447849276,41.439482772],[-71.447783577,41.439508654],[-71.447716936,41.439534513],[-71.447649412,41.439561149],[-71.44758289,41.439589867],[-71.4475174,41.439620003],[-71.447452882,41.439650779],[-71.447388395,41.439681556],[-71.447325821,41.439713729],[-71.447265161,41.439746542],[-71.447206475,41.439780729],[-71.447148702,41.439814871],[-71.447043458,41.439881512],[-71.446949551,41.439948547],[-71.446856317,41.440009911],[-71.446753541,41.440068685],[-71.446662233,41.440115801],[-71.446637604,41.440128506],[-71.446576825,41.44015846],[-71.446516015,41.440187752],[-71.44639616,41.44024414],[-71.446276095,41.440296296],[-71.446160832,41.44034969],[-71.446053314,41.440407867],[-71.445948563,41.440465245],[-71.445843751,41.440521251],[-71.445731134,41.440571055],[-71.44561086,41.440618225],[-71.445494444,41.44066741],[-71.445381706,41.440715132],[-71.445272349,41.440754874],[-71.445168466,41.440790274],[-71.445065316,41.440820665],[-71.444960042,41.440846869],[-71.444849146,41.440873254],[-71.444735601,41.440903937],[-71.444629833,41.440939381],[-71.444564281,41.440968074],[-71.444547769,41.440977718],[-71.444483398,41.441011329],[-71.444417965,41.441042858],[-71.444340432,41.441077538],[-71.444256424,41.441114524],[-71.444170412,41.441149451],[-71.44407927,41.441175295],[-71.443981355,41.441197043],[-71.443873075,41.44121906],[-71.443757376,41.441243452],[-71.443640855,41.441270656],[-71.44352233,41.441295778],[-71.443409129,41.441313698],[-71.443293073,41.441330245],[-71.443171542,41.441351226],[-71.443044357,41.441372318],[-71.442914257,41.441391396],[-71.442788718,41.441406816],[-71.442674652,41.441406279],[-71.442572716,41.441402638],[-71.44247676,41.441406615],[-71.442382105,41.441418346],[-71.442300534,41.441446756],[-71.442233543,41.441484709],[-71.442174418,41.441530214],[-71.442114709,41.441582877],[-71.4420633,41.441632457],[-71.442033174,41.441673013],[-71.441991903,41.441737189],[-71.441929546,41.441794173],[-71.441877719,41.441834559],[-71.441822243,41.441877138],[-71.441770565,41.441921068],[-71.441720831,41.441965663],[-71.44167216,41.442012339],[-71.441630291,41.442064508],[-71.441597232,41.442122124],[-71.441568209,41.442186008],[-71.441557762,41.442245145],[-71.441577644,41.442307728],[-71.441662319,41.442344478],[-71.441734268,41.44237093],[-71.441789763,41.442409174],[-71.441832516,41.442456239],[-71.441892914,41.442518454],[-71.441967403,41.442559018],[-71.442067112,41.442574825],[-71.442144838,41.442564939],[-71.442225362,41.442553567],[-71.442322321,41.442550986],[-71.442395694,41.442548324],[-71.442489648,41.442541578],[-71.442603118,41.442530749],[-71.442702367,41.442516779],[-71.442820102,41.442495202],[-71.442937598,41.442467931],[-71.443037102,41.442439781],[-71.443123326,41.442409132],[-71.443211808,41.442367758],[-71.443297345,41.442322928],[-71.443375583,41.442283264],[-71.443437684,41.442240482],[-71.443504543,41.442179817],[-71.443546678,41.442133343],[-71.443590578,41.442085337],[-71.443665303,41.442030897],[-71.443751359,41.442017262],[-71.443862928,41.442024933],[-71.443970907,41.442036237],[-71.444072546,41.442033519],[-71.444165991,41.442016138],[-71.444258988,41.441990271],[-71.44434524,41.441960993],[-71.444431641,41.44193462],[-71.444523321,41.441920096],[-71.44462496,41.441916668],[-71.444737905,41.441913681],[-71.444855562,41.441910536],[-71.444970392,41.44190748],[-71.445074094,41.441908239],[-71.44517651,41.44192185],[-71.445286761,41.441941593],[-71.445399899,41.441962688],[-71.445507712,41.441991006],[-71.445615092,41.442029296],[-71.445724684,41.442075294],[-71.445824091,41.442125107],[-71.44590751,41.442175369],[-71.445973326,41.442232484],[-71.446025952,41.442289227],[-71.446056132,41.442326336],[-71.446069978,41.442343358],[-71.446096162,41.442398671],[-71.44610528,41.442472889],[-71.44615125,41.442528416],[-71.446217518,41.44255429],[-71.446280464,41.442590912],[-71.446337622,41.442643998],[-71.446397905,41.442703374],[-71.446464874,41.442764011],[-71.446533548,41.442821699],[-71.446600188,41.442875978],[-71.446658707,41.442937503],[-71.446698799,41.443008785],[-71.446720347,41.443085502],[-71.446732053,41.44315469],[-71.44674216,41.443209034],[-71.446759639,41.443280168],[-71.446785629,41.44335181],[-71.446809166,41.443411466],[-71.446834244,41.44348313],[-71.446860382,41.443558317],[-71.446877982,41.443631601],[-71.446889779,41.443701452],[-71.446900662,41.443772789],[-71.446918053,41.443841842],[-71.446940708,41.44390223],[-71.446993635,41.443965353],[-71.447041716,41.444005901],[-71.447084563,41.444055824],[-71.447118585,41.444118001],[-71.447151171,41.444189485],[-71.447188318,41.444257998],[-71.44722608,41.444318667],[-71.447255795,41.444369659],[-71.447249945,41.444425116],[-71.44723515,41.444491502],[-71.447234638,41.444560249],[-71.447240722,41.444629594],[-71.447256632,41.444687326],[-71.447308348,41.444744823],[-71.447400195,41.444753715],[-71.447473885,41.444738243],[-71.447545512,41.444717898],[-71.447617527,41.444706084],[-71.44769017,41.444707673],[-71.447785815,41.444717162],[-71.447852922,41.444761469],[-71.447896233,41.444840459],[-71.447918216,41.444906541],[-71.447940289,41.444975459],[-71.44796133,41.445042226],[-71.447977092,41.445096413],[-71.447969267,41.44515052],[-71.4479401,41.445211571],[-71.447908225,41.44527557],[-71.447863099,41.445337734],[-71.447811901,41.445391592],[-71.447768032,41.445439554],[-71.447712796,41.445487808],[-71.447644728,41.4455031],[-71.447593756,41.445501636],[-71.447596506,41.445559705],[-71.4476343,41.445582135],[-71.447710069,41.445590014],[-71.447797683,41.445609653],[-71.447880212,41.445640817],[-71.447960213,41.445678383],[-71.448043101,41.4457173],[-71.448119947,41.445747866],[-71.448183511,41.445776643],[-71.4482263,41.445824438],[-71.448260324,41.445887369],[-71.448296412,41.445953046],[-71.448323137,41.44602041],[-71.448355426,41.446085491],[-71.448386445,41.446143526],[-71.448408548,41.446212444],[-71.448404404,41.446264312],[-71.448333045,41.446290306],[-71.448287157,41.44631638],[-71.448322991,41.446357265],[-71.448398882,41.446367271],[-71.448472319,41.446365314],[-71.448535107,41.446377829]]]]}}"}, +{"type": "precinct", "typeId": 2002, "areaId": 25819, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":158,\"NAME\":\"2002\",\"SHAPE_Length\":0.18968953899792,\"SHAPE_Area\":-0.00072842997920488},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.438912506,41.439285029],[-71.438900267,41.43933966],[-71.43889125,41.439361793],[-71.438856705,41.439382358],[-71.438847551,41.43942073],[-71.43886406,41.439446696],[-71.438863716,41.439489555],[-71.438884181,41.439510355],[-71.438926288,41.439528993],[-71.438968572,41.439520302],[-71.43897856,41.439499656],[-71.438978002,41.439446459],[-71.439033323,41.439407541],[-71.439052361,41.439361033],[-71.439004632,41.439310579],[-71.438951804,41.439283724],[-71.438912506,41.439285029]]],[[[-71.439233019,41.43961684],[-71.439192614,41.439631456],[-71.439146445,41.439633467],[-71.439145163,41.439671888],[-71.439148741,41.43971404],[-71.439157138,41.439769504],[-71.439156687,41.439829401],[-71.439175072,41.439864219],[-71.439190784,41.43986576],[-71.439236463,41.439801656],[-71.439245825,41.439735177],[-71.439266876,41.439682793],[-71.439271311,41.439619993],[-71.439253693,41.439608801],[-71.439233019,41.43961684]]],[[[-71.43854372,41.440577595],[-71.438543684,41.44058425],[-71.438526792,41.440609307],[-71.438513578,41.440666155],[-71.438577368,41.440671609],[-71.438610248,41.440612644],[-71.438591899,41.440571903],[-71.43854372,41.440577595]]],[[[-71.438336408,41.440707478],[-71.438349797,41.440754849],[-71.43837297,41.440805245],[-71.438414006,41.44083127],[-71.438468424,41.44078421],[-71.438436442,41.440728618],[-71.43837487,41.440691421],[-71.438348338,41.440690538],[-71.438336408,41.440707478]]],[[[-71.436360308,41.441423726],[-71.436328497,41.441474526],[-71.436339808,41.441532234],[-71.436393537,41.441570914],[-71.436427945,41.441567388],[-71.436430066,41.441543742],[-71.436437276,41.441505347],[-71.436471093,41.441454525],[-71.436461453,41.441428585],[-71.436403734,41.441398753],[-71.436360308,41.441423726]]],[[[-71.435105232,41.442623551],[-71.435168051,41.442628297],[-71.435185049,41.442589931],[-71.435138393,41.442530556],[-71.435117026,41.44250015],[-71.435148731,41.442465588],[-71.435215541,41.44246144],[-71.435310895,41.4424523],[-71.435353143,41.442452461],[-71.435353247,41.442439905],[-71.435346762,41.442388855],[-71.435343086,41.442357064],[-71.435329803,41.442297113],[-71.435343885,41.442256527],[-71.435376176,41.442274429],[-71.435426922,41.442316791],[-71.435480964,41.442314831],[-71.435486067,41.442287481],[-71.435509134,41.442227734],[-71.435576318,41.442182924],[-71.435630638,41.442146247],[-71.435622904,41.442129205],[-71.435571012,41.442109004],[-71.435496611,41.442075412],[-71.435445968,41.44202125],[-71.435444513,41.441955428],[-71.435415482,41.441899128],[-71.435362757,41.441860448],[-71.435299276,41.441818766],[-71.435246172,41.441825185],[-71.435221161,41.44188349],[-71.435240171,41.441961168],[-71.435248597,41.44201517],[-71.435242252,41.442069094],[-71.43520444,41.442132469],[-71.435152061,41.442172897],[-71.435079081,41.442208053],[-71.435012103,41.442229193],[-71.434925905,41.442199962],[-71.434852508,41.442165615],[-71.434803777,41.442114427],[-71.434797118,41.442087024],[-71.43476486,41.442066926],[-71.434673418,41.442084233],[-71.434650525,41.442120355],[-71.434725519,41.442199048],[-71.434733915,41.442253049],[-71.434741303,41.442311487],[-71.43476742,41.442363348],[-71.434790555,41.442418867],[-71.434802175,41.44243964],[-71.434869742,41.442468014],[-71.434930552,41.442477174],[-71.43495587,41.442507583],[-71.434960275,41.44257041],[-71.434986635,41.442591991],[-71.43504363,41.442586329],[-71.435105232,41.442623551]]],[[[-71.436585404,41.442639836],[-71.436549674,41.44268773],[-71.436511174,41.442709709],[-71.436551203,41.442740927],[-71.436599347,41.442741159],[-71.436647424,41.442747292],[-71.436711495,41.442715812],[-71.43676786,41.442669485],[-71.436717111,41.442629343],[-71.436630773,41.442617151],[-71.436585404,41.442639836]]],[[[-71.435696096,41.442803619],[-71.435725058,41.442868793],[-71.435755134,41.442914024],[-71.435824922,41.442910632],[-71.435901722,41.442885838],[-71.435950212,41.442843189],[-71.43595746,41.442797384],[-71.435919376,41.442766923],[-71.435929434,41.442738867],[-71.43596322,41.442689509],[-71.435920171,41.442670091],[-71.435856142,41.442689015],[-71.435814653,41.442721353],[-71.435742856,41.442727716],[-71.435723426,41.442704675],[-71.435728562,41.442674398],[-71.435729013,41.442618229],[-71.435709826,41.442564976],[-71.435689538,41.442519019],[-71.435660086,41.442518911],[-71.435616555,41.442556394],[-71.435587625,41.442613141],[-71.435560952,41.442630805],[-71.435526682,41.442616583],[-71.43549952,41.442575059],[-71.435504864,41.442518938],[-71.435481763,41.442459691],[-71.435456269,41.44245293],[-71.435419811,41.442469034],[-71.435384985,41.442524291],[-71.43538346,41.442590797],[-71.435408537,41.442650777],[-71.435431674,41.442704855],[-71.435472673,41.442737559],[-71.435453527,41.442796599],[-71.435453005,41.442863883],[-71.435482246,41.442892831],[-71.435567089,41.442848876],[-71.435619506,41.442800306],[-71.435656899,41.442791613],[-71.435696096,41.442803619]]],[[[-71.426999369,41.453900552],[-71.42707476,41.453927496],[-71.427154237,41.453942663],[-71.427204545,41.453917744],[-71.427186234,41.453872609],[-71.427125597,41.453837579],[-71.42705024,41.453807686],[-71.427053403,41.453778849],[-71.427080156,41.453750141],[-71.427059974,41.453693136],[-71.427036595,41.453668627],[-71.427060539,41.453623656],[-71.427106535,41.453649026],[-71.427153443,41.45367435],[-71.427178005,41.453674457],[-71.427193861,41.453658275],[-71.427137244,41.453615883],[-71.427142419,41.453582634],[-71.427148455,41.453567131],[-71.427223156,41.453558602],[-71.427232459,41.453503217],[-71.427222165,41.453438876],[-71.427183133,41.453410607],[-71.427108406,41.453416918],[-71.427080898,41.453413859],[-71.427078195,41.453384263],[-71.427042804,41.453390027],[-71.427016742,41.453453475],[-71.426994668,41.453511025],[-71.426951056,41.453555891],[-71.426926032,41.453614903],[-71.426912916,41.453654758],[-71.426858862,41.453658222],[-71.426799018,41.453647596],[-71.426738753,41.45368726],[-71.426701937,41.453743977],[-71.426722224,41.453788427],[-71.426786782,41.453824168],[-71.426813073,41.453854625],[-71.42684714,41.453891719],[-71.426928774,41.45388029],[-71.426999369,41.453900552]]],[[[-71.42714663,41.454030571],[-71.4271111,41.454051864],[-71.427115919,41.454064422],[-71.427152826,41.454117093],[-71.427194006,41.454126907],[-71.427230436,41.45411673],[-71.427286533,41.454107366],[-71.427311591,41.454044649],[-71.427309791,41.454023173],[-71.427222402,41.454015388],[-71.42714663,41.454030571]]],[[[-71.426720176,41.454041186],[-71.42675313,41.454094564],[-71.426781466,41.454117589],[-71.426828475,41.454134817],[-71.426900183,41.45413811],[-71.426886974,41.454070772],[-71.426850036,41.454019634],[-71.426781382,41.454003787],[-71.426720176,41.454041186]]],[[[-71.425878928,41.45637075],[-71.425949565,41.456382917],[-71.426024333,41.456371438],[-71.426053926,41.456359725],[-71.426103267,41.456331878],[-71.426136304,41.456365976],[-71.426142754,41.456307661],[-71.42614224,41.456251514],[-71.426090234,41.456243133],[-71.426015435,41.456256098],[-71.425953291,41.456287574],[-71.425915822,41.456301454],[-71.425872449,41.456321209],[-71.425878928,41.45637075]]],[[[-71.426187266,41.457482369],[-71.42618091,41.457537779],[-71.426179479,41.457593192],[-71.426157408,41.457647038],[-71.426121594,41.457701583],[-71.426073983,41.457758293],[-71.426035256,41.457808354],[-71.426057419,41.457860946],[-71.4261342,41.457845032],[-71.426203178,41.457820217],[-71.426246762,41.45777606],[-71.426276536,41.457739235],[-71.426330591,41.457738012],[-71.42637209,41.457709382],[-71.426359778,41.457655355],[-71.426323596,41.45763301],[-71.42629266,41.457567856],[-71.426287289,41.457505738],[-71.426243408,41.4574634],[-71.426187266,41.457482369]]],[[[-71.426189981,41.458118023],[-71.426251458,41.458166342],[-71.426315019,41.458200665],[-71.426382019,41.458177288],[-71.426424415,41.458162702],[-71.426442605,41.45809998],[-71.426465721,41.458036508],[-71.426473017,41.457982585],[-71.426463691,41.457922682],[-71.426434656,41.457870085],[-71.426392501,41.457860246],[-71.426377581,41.457880889],[-71.426371256,41.457936322],[-71.426373787,41.45798291],[-71.426387067,41.458042038],[-71.426365201,41.458075208],[-71.426280716,41.458074834],[-71.426210082,41.458059008],[-71.426151133,41.458059451],[-71.426189981,41.458118023]]],[[[-71.429799318,41.462707467],[-71.429799508,41.462707469],[-71.429805966,41.462704509],[-71.429799318,41.462707467]]],[[[-71.436935511,41.483590473],[-71.437019511,41.484238473],[-71.437119511,41.484906473],[-71.437164511,41.485237473],[-71.437637512,41.488725474],[-71.437729511,41.489342474],[-71.437920511,41.490853474],[-71.438026512,41.491764474],[-71.438049512,41.492054474],[-71.439018512,41.492054474],[-71.439957513,41.492031474],[-71.440819513,41.492016474],[-71.441444513,41.492005474],[-71.442223513,41.491997474],[-71.443329514,41.491982474],[-71.443184513,41.488713473],[-71.443192513,41.488713473],[-71.443657513,41.488694473],[-71.444054514,41.488678473],[-71.444511513,41.488659473],[-71.444748514,41.488648474],[-71.445000514,41.488644473],[-71.445396514,41.488633473],[-71.445923514,41.488621473],[-71.446663514,41.488610474],[-71.446785515,41.488495473],[-71.446861515,41.488438473],[-71.446892514,41.488400473],[-71.446976515,41.488369473],[-71.447009514,41.488355474],[-71.447039515,41.488341473],[-71.447047362,41.488338531],[-71.447033184,41.488307815],[-71.447028979,41.488278997],[-71.446976359,41.488243684],[-71.446908783,41.488198439],[-71.44686144,41.488144284],[-71.446836179,41.488090276],[-71.446821049,41.488032842],[-71.446804163,41.487965025],[-71.446801119,41.487893143],[-71.44681091,41.487822022],[-71.446811481,41.487756385],[-71.446801922,41.487692733],[-71.446778522,41.487631819],[-71.446755151,41.487571569],[-71.44674002,41.487515508],[-71.446724856,41.487462213],[-71.446710706,41.487396547],[-71.446701079,41.487341906],[-71.446697025,41.487278966],[-71.446700299,41.487218156],[-71.446720152,41.487153329],[-71.446757394,41.48709887],[-71.446806524,41.487049356],[-71.446858321,41.487010912],[-71.446922883,41.486984299],[-71.446995784,41.486950096],[-71.447078781,41.486918711],[-71.447147935,41.486892785],[-71.447233667,41.486863482],[-71.447318489,41.486831411],[-71.447395919,41.486801373],[-71.447478916,41.486769301],[-71.447550906,41.486733725],[-71.447589869,41.486693126],[-71.447580243,41.486635741],[-71.447557817,41.486573455],[-71.447513276,41.486515871],[-71.447451311,41.486453385],[-71.447390225,41.486395702],[-71.447320015,41.486336642],[-71.447255283,41.486274108],[-71.44719511,41.486216471],[-71.447137636,41.486167777],[-71.447080131,41.486119815],[-71.447058551,41.486065123],[-71.447055409,41.486001543],[-71.447025556,41.485947487],[-71.446961598,41.485905743],[-71.446909532,41.48586469],[-71.446878831,41.485806472],[-71.446872077,41.485734611],[-71.446866229,41.485670275],[-71.446848366,41.485608678],[-71.446845258,41.485540958],[-71.446841269,41.48547182],[-71.446846399,41.485410371],[-71.446884619,41.485348342],[-71.446918216,41.485286974],[-71.446958325,41.485220144],[-71.446979156,41.485148364],[-71.446989013,41.485071045],[-71.446995901,41.485015794],[-71.447002818,41.484961916],[-71.447004335,41.484892117],[-71.447004907,41.484825085],[-71.446991668,41.484761432],[-71.446955468,41.484695595],[-71.446910995,41.484631104],[-71.446873817,41.484572906],[-71.446855985,41.484509936],[-71.446875804,41.48444783],[-71.446930569,41.484385215],[-71.446969735,41.484319047],[-71.447012511,41.484263995],[-71.447043306,41.484206743],[-71.447048502,41.484137678],[-71.44699839,41.48408837],[-71.446955608,41.484039111],[-71.44697725,41.483980459],[-71.447010879,41.483915661],[-71.447033529,41.483850126],[-71.447055171,41.483790125],[-71.447108854,41.483748206],[-71.447187292,41.483707808],[-71.447269405,41.483673655],[-71.447335956,41.483627694],[-71.447398079,41.48356579],[-71.447418922,41.483537755],[-71.447448255,41.483498301],[-71.447454331,41.483431317],[-71.447430499,41.483408416],[-71.447405161,41.483384068],[-71.447320848,41.483355327],[-71.447233701,41.483334864],[-71.447155568,41.48333723],[-71.447082906,41.483344492],[-71.447012303,41.483324791],[-71.446986266,41.48325418],[-71.446943651,41.483186991],[-71.446906538,41.483123898],[-71.446893366,41.483054024],[-71.446907524,41.483033996],[-71.446931456,41.483000297],[-71.446964171,41.482937579],[-71.446988681,41.482865138],[-71.447015049,41.482791303],[-71.447030374,41.482720184],[-71.447031756,41.482665617],[-71.447030404,41.482608945],[-71.447015373,41.482542546],[-71.446986568,41.482472596],[-71.446956785,41.482409552],[-71.446925244,41.482338915],[-71.446899041,41.482286256],[-71.446875606,41.482232912],[-71.446861389,41.482176188],[-71.446854532,41.482119513],[-71.446855037,41.482059388],[-71.446855541,41.482000635],[-71.446886501,41.481925453],[-71.446921851,41.481875864],[-71.446971176,41.481805607],[-71.447017701,41.481738139],[-71.447008176,41.481671057],[-71.446965562,41.481603799],[-71.446898,41.481549566],[-71.446832259,41.481500182],[-71.446815372,41.481435132],[-71.446812398,41.48135289],[-71.446798183,41.481294747],[-71.446783086,41.481235964],[-71.446756946,41.481180584],[-71.446727062,41.481129959],[-71.446689786,41.481082097],[-71.446645148,41.481036291],[-71.446596797,41.480995262],[-71.446544733,41.48095629],[-71.446488042,41.480922851],[-71.446403732,41.480896168],[-71.446322601,41.480924123],[-71.446260065,41.480971824],[-71.446255074,41.480975618],[-71.446211722,41.480994077],[-71.44613943,41.480960538],[-71.446112517,41.4808851],[-71.44612683,41.48082505],[-71.446159477,41.48076988],[-71.44620671,41.480728644],[-71.446232206,41.480716078],[-71.44628697,41.480688979],[-71.446344335,41.480641574],[-71.446398118,41.480585865],[-71.446442785,41.48052249],[-71.446430459,41.480459545],[-71.446363808,41.48040808],[-71.446280608,41.48036413],[-71.446262546,41.480324671],[-71.446335577,41.480271807],[-71.446401922,41.480250706],[-71.446456211,41.480245448],[-71.446500649,41.48031202],[-71.446535055,41.480372985],[-71.446583405,41.480415363],[-71.446674063,41.480451059],[-71.446744054,41.480434808],[-71.446812357,41.480399208],[-71.446881535,41.480372597],[-71.446977023,41.480378587],[-71.447036449,41.480413423],[-71.447107858,41.480447669],[-71.447179271,41.480476998],[-71.447250784,41.480496013],[-71.447350927,41.480499947],[-71.447442221,41.480464472],[-71.447498573,41.480428111],[-71.447511195,41.48035013],[-71.447485026,41.480293309],[-71.447442345,41.480235748],[-71.447400576,41.480177502],[-71.447368025,41.480115807],[-71.447343746,41.480052812],[-71.447318555,41.479991188],[-71.447299747,41.479932335],[-71.447287387,41.479873553],[-71.447297076,41.479814187],[-71.44730126,41.479754772],[-71.447330225,41.479700309],[-71.447370163,41.479652804],[-71.447422901,41.479608826],[-71.447482119,41.479562815],[-71.447540459,41.47951127],[-71.447594272,41.479453502],[-71.447643465,41.479394291],[-71.447685324,41.479339239],[-71.447729858,41.479286223],[-71.447776246,41.47923529],[-71.447819865,41.479185064],[-71.44785798,41.47913479],[-71.447890561,41.479083119],[-71.447922295,41.479026621],[-71.447948526,41.47896804],[-71.447967428,41.478907992],[-71.447962429,41.478847132],[-71.447940949,41.478782743],[-71.447930482,41.478714288],[-71.447919129,41.478649973],[-71.447897619,41.478586979],[-71.447888971,41.478524745],[-71.447890388,41.478464644],[-71.44790929,41.478405281],[-71.447920835,41.478343149],[-71.447952566,41.478289373],[-71.447980588,41.478234246],[-71.44798568,41.478178971],[-71.447976935,41.478124376],[-71.447966397,41.47806834],[-71.44795866,41.478008165],[-71.447941676,41.477950708],[-71.447930227,41.477892613],[-71.447919724,41.477831065],[-71.447917525,41.477766753],[-71.447915328,41.477701092],[-71.447914953,41.47763685],[-71.447915456,41.477578783],[-71.447916124,41.477504158],[-71.447919431,41.477437128],[-71.447922333,41.477421257],[-71.447933975,41.477351509],[-71.44797496,41.477285364],[-71.448003047,41.477224703],[-71.448028399,41.477160563],[-71.448051959,41.477094342],[-71.448070018,41.477023911],[-71.448081663,41.476950732],[-71.448097052,41.476872706],[-71.448101435,41.476791199],[-71.44810572,41.476718634],[-71.448141201,41.476651778],[-71.448181371,41.476577331],[-71.448176572,41.476493007],[-71.448146893,41.476416128],[-71.448129163,41.476341426],[-71.448117847,41.476269517],[-71.448098294,41.476192002],[-71.448076984,41.476106893],[-71.448057468,41.476022493],[-71.448052635,41.475943681],[-71.448053304,41.475867661],[-71.448056711,41.475789607],[-71.448058258,41.47571775],[-71.448062475,41.475654882],[-71.448067736,41.475578178],[-71.448073911,41.475499417],[-71.448092981,41.475418648],[-71.448122923,41.475357324],[-71.448158368,41.475295294],[-71.448201106,41.475240928],[-71.448252994,41.475190728],[-71.44831224,41.475141241],[-71.448374156,41.475098708],[-71.448440696,41.475055468],[-71.448499064,41.474999782],[-71.44855473,41.474939247],[-71.448603071,41.47487521],[-71.448645911,41.474806298],[-71.448666768,41.474733833],[-71.448656398,41.474656413],[-71.448625806,41.474580219],[-71.448587789,41.474510974],[-71.448556248,41.474442373],[-71.448522823,41.474373816],[-71.44848018,41.474308617],[-71.448439392,41.474244174],[-71.448424332,41.474177753],[-71.448416661,41.474111334],[-71.448416352,41.474040185],[-71.448415979,41.473973862],[-71.448417459,41.473909575],[-71.448420698,41.473851532],[-71.448435008,41.473790087],[-71.448478723,41.473729478],[-71.448527875,41.473675824],[-71.448588133,41.473613964],[-71.448659396,41.473554877],[-71.448713037,41.473516387],[-71.448804355,41.473475399],[-71.448875285,41.473452949],[-71.448907113,41.473388104],[-71.44891403,41.473330772],[-71.448919124,41.473271358],[-71.448931609,41.473210643],[-71.448933023,41.473152599],[-71.448933492,41.473097986],[-71.448934027,41.473035825],[-71.448925347,41.472974964],[-71.448917546,41.472919615],[-71.448913556,41.472849814],[-71.448914025,41.472794537],[-71.448919998,41.472739949],[-71.448930761,41.472663979],[-71.448972686,41.472596485],[-71.449014609,41.472530341],[-71.449055588,41.472467626],[-71.449076279,41.472410392],[-71.449089642,41.47235448],[-71.449089676,41.472349609],[-71.449075871,41.472311044],[-71.448345177,41.472224704],[-71.448357971,41.4721577],[-71.448359426,41.472087078],[-71.448374174,41.47201079],[-71.448388885,41.47194166],[-71.448406388,41.471880376],[-71.448415311,41.471824074],[-71.448423291,41.471769875],[-71.448454681,41.471757883],[-71.448544746,41.471761079],[-71.448638575,41.471772167],[-71.448731528,41.471775388],[-71.448809346,41.471769979],[-71.448880571,41.471756701],[-71.448936794,41.471717709],[-71.448960922,41.471660705],[-71.448981252,41.471599422],[-71.44898466,41.471518852],[-71.44898507,41.47146106],[-71.448985481,41.471402558],[-71.448984885,41.471347647],[-71.448973116,41.471271964],[-71.448934673,41.471204778],[-71.448871563,41.471145997],[-71.448805565,41.471087237],[-71.448762273,41.471037864],[-71.448752633,41.470922983],[-71.448761592,41.470860941],[-71.448775326,41.470796064],[-71.448800464,41.470729844],[-71.448825503,41.470673572],[-71.448826857,41.470614361],[-71.448827368,41.470543762],[-71.448831652,41.470471014],[-71.448847237,41.470411147],[-71.448869445,41.470358418],[-71.448865148,41.47029422],[-71.448828622,41.470225594],[-71.448767367,41.470168254],[-71.448713576,41.470130975],[-71.448655984,41.470095066],[-71.448572826,41.470050523],[-71.448504841,41.470006011],[-71.448476724,41.469955249],[-71.448474376,41.469886775],[-71.448464464,41.469809698],[-71.448451619,41.469750436],[-71.448439721,41.469684016],[-71.448430678,41.469622675],[-71.448430185,41.469554864],[-71.448469482,41.469501526],[-71.448510635,41.469446062],[-71.448525209,41.469396143],[-71.448480001,41.469350337],[-71.448414979,41.46928945],[-71.448372629,41.469242868],[-71.448328363,41.469197748],[-71.448276524,41.469154043],[-71.448224621,41.469115323],[-71.448149034,41.469072934],[-71.448079064,41.469041273],[-71.448000478,41.469023856],[-71.447958555,41.469052219],[-71.44791364,41.469096269],[-71.447885778,41.469146822],[-71.447857812,41.469213042],[-71.447831865,41.469263596],[-71.447786911,41.469317617],[-71.447722352,41.469325936],[-71.447678959,41.46929081],[-71.447679099,41.469268695],[-71.44767937,41.469234436],[-71.447747032,41.469186188],[-71.447810923,41.469139379],[-71.447815208,41.469066631],[-71.447779727,41.468986615],[-71.447747941,41.468925103],[-71.447713265,41.468865076],[-71.447672871,41.468807814],[-71.447631499,41.468756292],[-71.447577918,41.468688297],[-71.447553708,41.46862114],[-71.447554258,41.468541964],[-71.447554667,41.468487053],[-71.447567532,41.468407905],[-71.447599194,41.468358108],[-71.447638395,41.468311151],[-71.447671,41.468260646],[-71.447694153,41.468205814],[-71.447715387,41.468153977],[-71.447716332,41.46815169],[-71.447761387,41.468084084],[-71.44780383,41.468050073],[-71.447834834,41.468025181],[-71.447891997,41.467987609],[-71.447948216,41.467951408],[-71.448019715,41.467894654],[-71.448060967,41.46782844],[-71.448078502,41.467764343],[-71.448061892,41.467698653],[-71.448046294,41.467622237],[-71.448047616,41.467565886],[-71.448047681,41.467560626],[-71.448048029,41.467505943],[-71.448051362,41.467443189],[-71.448060323,41.46737902],[-71.448071159,41.467325577],[-71.448094348,41.467262169],[-71.44812978,41.467212374],[-71.448187008,41.467168352],[-71.448249893,41.467121542],[-71.448300497,41.467071799],[-71.448338887,41.467009862],[-71.448361133,41.466947185],[-71.448394714,41.466891717],[-71.448445351,41.466837675],[-71.448489425,41.466778621],[-71.44851638,41.466720245],[-71.448531055,41.466656079],[-71.448532443,41.466592592],[-71.448552474,41.466561978],[-71.448565016,41.466542795],[-71.448635326,41.466525926],[-71.448730159,41.466527775],[-71.448815469,41.466535954],[-71.448890422,41.466530568],[-71.448927466,41.466517845],[-71.448956163,41.466485131],[-71.448946146,41.466425893],[-71.4489182,41.466352993],[-71.448901518,41.466300133],[-71.448892441,41.466243754],[-71.448887134,41.466187377],[-71.448883745,41.466127456],[-71.448883211,41.466071813],[-71.448883729,41.465994032],[-71.448884106,41.46593983],[-71.448887478,41.465865664],[-71.448888898,41.465799295],[-71.448858728,41.46577138],[-71.4487603,41.465742451],[-71.44869501,41.46571866],[-71.448633691,41.465669874],[-71.448593295,41.465616957],[-71.448545331,41.465559715],[-71.448494439,41.465514546],[-71.448430226,41.465473649],[-71.448353461,41.465465473],[-71.448278442,41.465478017],[-71.448200631,41.465485575],[-71.448122856,41.465485289],[-71.448041348,41.465476401],[-71.44799698,41.465448388],[-71.448003987,41.465392771],[-71.448076981,41.465401609],[-71.448177463,41.465409156],[-71.448273272,41.465403093],[-71.448351218,41.465379137],[-71.448426235,41.465368033],[-71.448519924,41.465391951],[-71.448605968,41.465431509],[-71.448676775,41.465476732],[-71.448737257,41.465506216],[-71.448801846,41.465494352],[-71.448853423,41.465442483],[-71.448880477,41.46537194],[-71.448915066,41.465309315],[-71.448981781,41.465261065],[-71.449064575,41.465219318],[-71.449121701,41.465186022],[-71.449175092,41.465146274],[-71.449229424,41.4651087],[-71.449290318,41.465077555],[-71.449354976,41.465053524],[-71.449430166,41.465015318],[-71.449478006,41.464958415],[-71.449513639,41.46488081],[-71.44955175,41.464783949],[-71.44956573,41.4647526],[-71.449598402,41.464690659],[-71.449631072,41.464630868],[-71.449663742,41.464571054],[-71.449696347,41.464516249],[-71.449738401,41.464470756],[-71.449796533,41.464433228],[-71.449863144,41.464398518],[-71.449934498,41.464365273],[-71.450006794,41.464332028],[-71.45006681,41.464295142],[-71.450109001,41.464228974],[-71.450115235,41.464148382],[-71.450114703,41.46408844],[-71.45010946,41.4640271],[-71.450097559,41.463964979],[-71.450086566,41.463907159],[-71.450078464,41.46384719],[-71.450075073,41.463789419],[-71.450076562,41.463710952],[-71.450084508,41.46365673],[-71.45010211,41.463580489],[-71.450104472,41.463512726],[-71.450103062,41.463448529],[-71.450078847,41.463387066],[-71.450012821,41.463333293],[-71.449950427,41.463301659],[-71.449885201,41.46327501],[-71.449787689,41.463246082],[-71.449690207,41.463217178],[-71.449593732,41.463182556],[-71.449535647,41.463161924],[-71.449496285,41.463147933],[-71.44939978,41.463114043],[-71.449333548,41.463091647],[-71.449233207,41.463064868],[-71.449134782,41.46303738],[-71.449045778,41.463014905],[-71.448970932,41.463004626],[-71.44892074,41.462999435],[-71.448839237,41.462988399],[-71.448761396,41.462998107],[-71.448697442,41.46305706],[-71.448656361,41.46310253],[-71.448602834,41.463162243],[-71.448573061,41.463211355],[-71.448543726,41.463205533],[-71.448509861,41.463161173],[-71.448537753,41.46310776],[-71.448608333,41.463052423],[-71.448663744,41.46299342],[-71.44867549,41.462941396],[-71.448627428,41.462896252],[-71.448544242,41.462859554],[-71.4484476,41.462847046],[-71.448376417,41.462857489],[-71.448275736,41.462876312],[-71.448182792,41.462878099],[-71.448100448,41.462853546],[-71.448028637,41.462812598],[-71.44795975,41.462765935],[-71.447907078,41.462706495],[-71.447847648,41.462657777],[-71.447762477,41.462633885],[-71.447667822,41.462608525],[-71.447581816,41.462563958],[-71.447521444,41.462515217],[-71.447472571,41.462458659],[-71.447441635,41.462402911],[-71.447428655,41.462362196],[-71.447443054,41.462340133],[-71.447496515,41.462286847],[-71.44755357,41.462263523],[-71.44759619,41.462270129],[-71.447635671,41.4623238],[-71.44766365,41.462390228],[-71.447710598,41.462458928],[-71.447769124,41.462496919],[-71.447843897,41.462520052],[-71.447924395,41.46253253],[-71.447995406,41.462547038],[-71.448065234,41.462595829],[-71.448110331,41.462660938],[-71.448176393,41.462704718],[-71.448269266,41.462716492],[-71.448343238,41.462716068],[-71.44842481,41.462716379],[-71.448510151,41.462717447],[-71.448595427,41.46272494],[-71.44867498,41.462740939],[-71.448747837,41.462766175],[-71.448816858,41.462797835],[-71.448881137,41.462828075],[-71.448943534,41.462855409],[-71.449036303,41.462883604],[-71.449135709,41.462901097],[-71.449202881,41.462926353],[-71.44927288,41.462952296],[-71.449343822,41.462977553],[-71.449410993,41.463004935],[-71.449505583,41.463038115],[-71.449535743,41.463038449],[-71.449608954,41.463039235],[-71.449683836,41.463040983],[-71.449757806,41.463043371],[-71.449862153,41.463040947],[-71.449959033,41.463022053],[-71.450037013,41.462989542],[-71.450091345,41.462949086],[-71.450129699,41.462888611],[-71.450158702,41.462812398],[-71.450183873,41.462736891],[-71.450229863,41.462670016],[-71.45029187,41.462611061],[-71.45035673,41.462558488],[-71.450412943,41.462522354],[-71.450426435,41.462492446],[-71.450364381,41.462413014],[-71.450313554,41.462364302],[-71.450262598,41.462324851],[-71.450204877,41.462306096],[-71.450150544,41.46234797],[-71.450091677,41.46235627],[-71.450012264,41.46231747],[-71.449964267,41.462264505],[-71.449967537,41.462203146],[-71.450012277,41.462181942],[-71.450042583,41.46218845],[-71.450086915,41.462222889],[-71.450140032,41.462219504],[-71.450142189,41.462181701],[-71.450098026,41.462125193],[-71.450037753,41.462064309],[-71.449995511,41.462001352],[-71.449968438,41.461940597],[-71.449932723,41.461890542],[-71.449876144,41.461849648],[-71.449800427,41.461827248],[-71.449750445,41.461787089],[-71.449704437,41.461719854],[-71.449659233,41.461673339],[-71.44957797,41.461630171],[-71.449536844,41.461617757],[-71.44949657,41.461605618],[-71.449430544,41.461553971],[-71.449369292,41.461503081],[-71.449303234,41.461454339],[-71.449253321,41.461404185],[-71.449241388,41.461346364],[-71.449217277,41.461269968],[-71.449188254,41.461216347],[-71.449159198,41.46116554],[-71.449138857,41.461089854],[-71.449145055,41.461017106],[-71.449157844,41.460952938],[-71.449197039,41.460906758],[-71.449250463,41.460859166],[-71.449264126,41.460803598],[-71.449291076,41.460747326],[-71.449348436,41.46068192],[-71.449406703,41.460622232],[-71.449453634,41.460557507],[-71.44950329,41.460506323],[-71.449537748,41.460491358],[-71.449569863,41.460477352],[-71.449642121,41.460449094],[-71.449709737,41.460408689],[-71.449731001,41.460351729],[-71.449731379,41.460296063],[-71.44973179,41.460236143],[-71.449735999,41.460179084],[-71.449743946,41.460124908],[-71.44975206,41.460049326],[-71.449759232,41.45997443],[-71.449769096,41.459918105],[-71.449821709,41.459856264],[-71.449858045,41.459808596],[-71.449860373,41.459747259],[-71.449863609,41.459690245],[-71.449875421,41.45963033],[-71.449893861,41.459569047],[-71.449911322,41.459515607],[-71.44994591,41.459449436],[-71.449990891,41.459387523],[-71.450020663,41.45933697],[-71.450006844,41.459279171],[-71.449968234,41.459239063],[-71.449907247,41.459280203],[-71.449897726,41.459286579],[-71.449874118,41.459269393],[-71.449872609,41.459215145],[-71.449875845,41.459158085],[-71.449843083,41.459103732],[-71.449789203,41.459075715],[-71.449793382,41.459017924],[-71.44981764,41.458941685],[-71.449812502,41.458863239],[-71.449794849,41.458810355],[-71.449784934,41.458736846],[-71.449786356,41.458667619],[-71.449786596,41.458631965],[-71.44978603,41.458577053],[-71.449791218,41.458512127],[-71.449784095,41.458445069],[-71.449782621,41.458385125],[-71.449801968,41.458330977],[-71.449813781,41.458268959],[-71.449826539,41.458204082],[-71.449872389,41.458157904],[-71.449902163,41.458103806],[-71.449874184,41.458038042],[-71.449855658,41.457973792],[-71.449864646,41.457908936],[-71.449905754,41.457862711],[-71.449930411,41.457860663],[-71.450019478,41.457870993],[-71.450101886,41.457883448],[-71.450193747,41.457898079],[-71.450277059,41.457921236],[-71.450366998,41.457943711],[-71.450458823,41.457966209],[-71.450536422,41.457986482],[-71.450618861,41.457998204],[-71.450689162,41.457979916],[-71.450697665,41.457952749],[-71.450708575,41.457917946],[-71.450710392,41.457886614],[-71.450711778,41.457863013],[-71.450693145,41.457819415],[-71.450598463,41.457796229],[-71.450502805,41.457778007],[-71.450427965,41.45776846],[-71.450345493,41.457759574],[-71.45026211,41.457749955],[-71.450183472,41.457737503],[-71.450084076,41.45771786],[-71.450016909,41.45769336],[-71.450011529,41.45765194],[-71.450040363,41.457594319],[-71.450068354,41.457525927],[-71.450095269,41.457473223],[-71.450128845,41.457415605],[-71.450167161,41.457361534],[-71.450210289,41.457296761],[-71.450243863,41.45724127],[-71.450287965,41.457174371],[-71.450324502,41.457101042],[-71.450349639,41.45702764],[-71.450354826,41.456962759],[-71.450331524,41.456902738],[-71.450342599,41.456811491],[-71.45034684,41.456751573],[-71.45034826,41.456682368],[-71.450348741,41.456610328],[-71.450340709,41.456538238],[-71.45033076,41.456469714],[-71.450316067,41.456401875],[-71.450305076,41.456344077],[-71.45031211,41.456289192],[-71.450321031,41.456232135],[-71.450329008,41.456175786],[-71.450335101,41.45611946],[-71.450345099,41.456043878],[-71.450369324,41.455969789],[-71.450406801,41.455898611],[-71.450451809,41.45583743],[-71.450513702,41.455800567],[-71.450595272,41.455791614],[-71.450688239,41.455787011],[-71.450729211,41.455757183],[-71.450705939,41.455697894],[-71.450610217,41.455687515],[-71.450561847,41.455691611],[-71.450503326,41.455652867],[-71.450499093,41.455582219],[-71.450477777,41.455509391],[-71.450431772,41.455442842],[-71.450377224,41.455376999],[-71.450334044,41.455313332],[-71.450289784,41.455269654],[-71.450224572,41.45523587],[-71.450128507,41.455276857],[-71.450103987,41.455261066],[-71.450103588,41.455186166],[-71.450099258,41.455124095],[-71.450056953,41.455069714],[-71.449992578,41.455054477],[-71.449906237,41.455061301],[-71.449813338,41.455057372],[-71.449719498,41.45505198],[-71.449622596,41.455075859],[-71.449561678,41.45511055],[-71.449541964,41.455129866],[-71.449497729,41.455173072],[-71.449447941,41.455242826],[-71.44939341,41.455311779],[-71.449368348,41.455367342],[-71.4493528,41.455424351],[-71.449355111,41.455501378],[-71.449370811,41.455562083],[-71.449400775,41.455614995],[-71.449437399,41.455663678],[-71.449481589,41.455718037],[-71.449512392,41.45578737],[-71.449508043,41.455867254],[-71.449491522,41.455924948],[-71.449466489,41.45598122],[-71.449431942,41.456036734],[-71.449388911,41.456094348],[-71.449342051,41.456150519],[-71.449291422,41.456205271],[-71.44923888,41.456257849],[-71.449183542,41.456308253],[-71.449126288,41.456359388],[-71.449081413,41.456404171],[-71.449023185,41.456456747],[-71.448973565,41.456503609],[-71.448963176,41.456493587],[-71.448971256,41.456425117],[-71.448988754,41.456363856],[-71.449022467,41.456286958],[-71.449047497,41.456234254],[-71.449086861,41.456163076],[-71.449141354,41.456103364],[-71.449208129,41.456044411],[-71.44924732,41.455998917],[-71.449283717,41.455949122],[-71.449315374,41.455897861],[-71.449331864,41.455841585],[-71.44932753,41.45578594],[-71.449300396,41.455729461],[-71.449256238,41.45567293],[-71.449207273,41.455622113],[-71.449157295,41.455582663],[-71.449110213,41.455534661],[-71.44912826,41.455392096],[-71.44914478,41.455336483],[-71.449168905,41.455275225],[-71.44919777,41.455216141],[-71.449225696,41.455153466],[-71.449247026,41.455088616],[-71.449268326,41.455023789],[-71.449291541,41.454959694],[-71.449309005,41.454901268],[-71.449325663,41.454824981],[-71.449343229,41.454753039],[-71.449375158,41.454662533],[-71.449439977,41.454614305],[-71.449497127,41.454576709],[-71.449542414,41.454548553],[-71.449560936,41.454537034],[-71.449624711,41.454503009],[-71.449710347,41.45446268],[-71.449777019,41.454415871],[-71.449807767,41.454358206],[-71.449819582,41.454291888],[-71.449852348,41.45421929],[-71.449945501,41.454049839],[-71.449982943,41.453983647],[-71.450012817,41.453915278],[-71.450044508,41.453856195],[-71.450093213,41.45380931],[-71.450144748,41.453758857],[-71.450221908,41.453710658],[-71.450292273,41.453681689],[-71.450359813,41.453651987],[-71.450427385,41.453618717],[-71.45049113,41.453581169],[-71.450546391,41.45354643],[-71.450600681,41.453510959],[-71.450661593,41.453480567],[-71.450725333,41.453450132],[-71.450788164,41.453414001],[-71.450839662,41.45337137],[-71.450873232,41.453318028],[-71.450895438,41.453258187],[-71.450923361,41.453196929],[-71.450954142,41.45313286],[-71.450982063,41.453072312],[-71.451005208,41.453017502],[-71.451013354,41.45293762],[-71.451024611,41.452885252],[-71.451030986,41.452855638],[-71.451052249,41.452796528],[-71.451071627,41.452737371],[-71.45109477,41.452684711],[-71.451143578,41.452619254],[-71.451188585,41.452555923],[-71.451194508,41.452521712],[-71.451156909,41.45247591],[-71.451110772,41.452425073],[-71.451078891,41.45237431],[-71.451041362,41.452317096],[-71.451001007,41.452257753],[-71.450957796,41.452196191],[-71.450909877,41.452131082],[-71.450855329,41.452067389],[-71.450797958,41.451999394],[-71.450746303,41.451930007],[-71.45069653,41.451864165],[-71.450640976,41.451805456],[-71.450584443,41.451754569],[-71.450531645,41.451709446],[-71.450466572,41.451656382],[-71.450412796,41.451618349],[-71.450383811,41.451559743],[-71.450377562,41.451502656],[-71.450470523,41.451498008],[-71.450571087,41.451488423],[-71.450616899,41.451445813],[-71.450651443,41.451391031],[-71.450722816,41.451352067],[-71.450794959,41.451340938],[-71.450861588,41.45130554],[-71.450918873,41.451245828],[-71.450951437,41.451195299],[-71.45097744,41.45113834],[-71.450989215,41.451083457],[-71.450982964,41.451027765],[-71.450953977,41.4509706],[-71.450916448,41.450913409],[-71.450885578,41.45085478],[-71.45086507,41.450800477],[-71.450849333,41.450747617],[-71.450819511,41.450670441],[-71.450807574,41.450616919],[-71.450793724,41.450562665],[-71.450761846,41.450509707],[-71.450713859,41.450455301],[-71.450661164,41.450395908],[-71.450611325,41.450337911],[-71.45056899,41.450286389],[-71.450509663,41.450234768],[-71.450451216,41.450184612],[-71.450379862,41.450080201],[-71.450377171,41.450061355],[-71.450370821,41.450017396],[-71.450389257,41.449956798],[-71.450377425,41.449887588],[-71.450322676,41.449851681],[-71.450252592,41.449835733],[-71.450172045,41.449827533],[-71.450125837,41.449793117],[-71.45010173,41.449716011],[-71.450098338,41.449660343],[-71.45008839,41.44959182],[-71.450067711,41.449563909],[-71.450013098,41.449510186],[-71.449968843,41.449465776],[-71.449915142,41.449412054],[-71.449859623,41.449350486],[-71.449793678,41.449290309],[-71.449723864,41.449239392],[-71.449683309,41.449207973],[-71.449672038,41.449199232],[-71.4496145,41.449155502],[-71.44955407,41.449116733],[-71.449546687,41.449112408],[-71.449529976,41.449102612],[-71.449496463,41.449082997],[-71.449423793,41.449032766],[-71.449356871,41.448978282],[-71.449282351,41.448921623],[-71.449212605,41.44886357],[-71.449146455,41.448832621],[-71.44902431,41.448806449],[-71.448959274,41.44875128],[-71.448912195,41.44870545],[-71.448862261,41.448656028],[-71.448812392,41.448601598],[-71.448773954,41.448545801],[-71.448743963,41.448492889],[-71.448721571,41.448441466],[-71.448685091,41.448369249],[-71.448653354,41.448296393],[-71.448646163,41.448240701],[-71.448645636,41.448177213],[-71.448637604,41.448108691],[-71.448620025,41.448044395],[-71.448598612,41.447985106],[-71.448580995,41.447929386],[-71.448556754,41.447872245],[-71.448521147,41.447811486],[-71.448480765,41.447753515],[-71.448442266,41.447698449],[-71.448405679,41.447647661],[-71.448368119,41.447596827],[-71.448328645,41.447544619],[-71.448290146,41.447490217],[-71.448256422,41.447431608],[-71.448221722,41.447377253],[-71.448178447,41.447328566],[-71.448123738,41.447284836],[-71.448048244,41.447233893],[-71.44798213,41.447198689],[-71.44790845,41.447160577],[-71.447875531,41.447122643],[-71.44785694,41.447069759],[-71.447814674,41.447013273],[-71.447750483,41.446969493],[-71.44769964,41.446919362],[-71.447658353,41.446855695],[-71.447618003,41.446797038],[-71.447575737,41.446741215],[-71.447521031,41.446696067],[-71.447506867,41.446694574],[-71.447443787,41.446630143],[-71.447378182,41.446567517],[-71.4473298,41.446520611],[-71.447282568,41.446478646],[-71.447227948,41.44643965],[-71.447170531,41.446401476],[-71.447115942,41.446362526],[-71.447061412,41.446324948],[-71.447000256,41.446287573],[-71.446923994,41.446249184],[-71.446845847,41.446210864],[-71.446776151,41.446172295],[-71.446713874,41.446130688],[-71.446642908,41.446084389],[-71.446564284,41.44603541],[-71.446489369,41.445985656],[-71.44642974,41.445940436],[-71.446377798,41.44589856],[-71.446324092,41.445858878],[-71.446271268,41.44581771],[-71.446219147,41.445771579],[-71.446166698,41.445719113],[-71.446115371,41.445668683],[-71.446047816,41.445615181],[-71.446008887,41.445569422],[-71.445983405,41.445508439],[-71.445915476,41.445466989],[-71.445826053,41.445429645],[-71.445757255,41.445409487],[-71.445685046,41.445397218],[-71.445611955,41.445385702],[-71.445539567,41.44536991],[-71.445471561,41.445346894],[-71.445391877,41.445295855],[-71.445337276,41.445237007],[-71.44528927,41.445178711],[-71.445226982,41.445116543],[-71.445181578,41.445072382],[-71.445135876,41.445022549],[-71.445093733,41.444968349],[-71.44505171,41.444916323],[-71.445010599,41.444864205],[-71.444971373,41.444812065],[-71.444938743,41.444759059],[-71.444904139,41.444704634],[-71.444860171,41.44465192],[-71.444817969,41.444596348],[-71.444785131,41.444539043],[-71.44475615,41.444483797],[-71.4447272,41.444429261],[-71.444687991,41.444357246],[-71.444650935,41.444290882],[-71.444615555,41.444220196],[-71.444610446,41.444151583],[-71.44462958,41.444097161],[-71.44465163,41.444045508],[-71.444677389,41.443992324],[-71.444710478,41.443934021],[-71.444742683,41.443877113],[-71.444777835,41.443823042],[-71.444747478,41.443779162],[-71.444670666,41.44374928],[-71.444577956,41.443721288],[-71.444485364,41.443696818],[-71.44439077,41.443668802],[-71.444302353,41.443632876],[-71.444229596,41.443588724],[-71.444166667,41.443532959],[-71.444118437,41.443489573],[-71.444065318,41.443442755],[-71.444016177,41.443399392],[-71.443969923,41.443357357],[-71.443904077,41.443299555],[-71.443825936,41.443261941],[-71.443728724,41.443238977],[-71.443624047,41.443237531],[-71.443551616,41.443240171],[-71.443449122,41.443245015],[-71.44335388,41.443263836],[-71.443270619,41.443276694],[-71.44320659,41.443298298],[-71.443204624,41.443356479],[-71.44321839,41.443429167],[-71.443243135,41.443494428],[-71.443273146,41.443551092],[-71.443315781,41.443596076],[-71.443370413,41.443615886],[-71.443419149,41.443669883],[-71.443425544,41.443725712],[-71.443368719,41.443780436],[-71.443374096,41.443854058],[-71.443358014,41.443892746],[-71.443315732,41.443895996],[-71.443275012,41.44385099],[-71.443234952,41.443781147],[-71.443207888,41.443726543],[-71.443180674,41.443669125],[-71.443150574,41.44361038],[-71.443122568,41.443555798],[-71.443096446,41.443501193],[-71.443071296,41.443447253],[-71.443035304,41.443383679],[-71.442985788,41.443353077],[-71.442910405,41.443393406],[-71.442844355,41.443431314],[-71.442761976,41.443442731],[-71.442695138,41.443444505],[-71.442688542,41.443444685],[-71.442592494,41.443446558],[-71.442504956,41.443448893],[-71.442405169,41.443451541],[-71.44230447,41.443454212],[-71.442226265,41.443454173],[-71.442150767,41.443452649],[-71.442088819,41.443457809],[-71.442021896,41.443451349],[-71.441937569,41.443431066],[-71.441857233,41.443401843],[-71.441790627,41.44338086],[-71.44170911,41.443379744],[-71.441652952,41.443401671],[-71.441650564,41.443454866],[-71.441634405,41.443510981],[-71.441580994,41.443554362],[-71.441555428,41.443558671],[-71.441554525,41.443549065],[-71.441555005,41.443488437],[-71.44155063,41.443418223],[-71.441524642,41.443351612],[-71.441488804,41.443287854],[-71.4414461,41.443219657],[-71.441412171,41.443162601],[-71.441367382,41.443114368],[-71.441294116,41.443065251],[-71.441229596,41.443024303],[-71.441170765,41.443010002],[-71.441080304,41.443019195],[-71.441041448,41.442965088],[-71.441013383,41.442911008],[-71.440971719,41.442836155],[-71.440940734,41.442784293],[-71.440902754,41.442736795],[-71.440858935,41.442692999],[-71.440779775,41.44264166],[-71.440715153,41.442613291],[-71.440641718,41.442582629],[-71.440568319,41.442547577],[-71.440492941,41.442514697],[-71.440417628,41.442478157],[-71.440352104,41.442439427],[-71.440294452,41.442400746],[-71.440214253,41.442355307],[-71.440176045,41.442326196],[-71.440148831,41.442305507],[-71.440107999,41.442253548],[-71.44005638,41.442197878],[-71.440005768,41.442139281],[-71.439976697,41.442088906],[-71.439953625,41.442026687],[-71.439948942,41.441996358],[-71.439955354,41.441931364],[-71.439960727,41.441872248],[-71.439907098,41.4418225],[-71.439831791,41.441780745],[-71.439766268,41.441741283],[-71.439730363,41.441686421],[-71.439709201,41.441630172],[-71.439716552,41.441568838],[-71.43971318,41.441501575],[-71.439683038,41.441459318],[-71.439612515,41.441437554],[-71.439544943,41.441412865],[-71.439475464,41.441379301],[-71.439400128,41.441337569],[-71.439318924,41.441296542],[-71.439233769,41.441256978],[-71.439173203,41.441215322],[-71.439151102,41.441155345],[-71.439188037,41.441083071],[-71.439215057,41.441017425],[-71.439244122,41.440942929],[-71.439259413,41.440873481],[-71.439253997,41.440815067],[-71.439276022,41.44076122],[-71.439315806,41.440695626],[-71.439366305,41.440646344],[-71.439378443,41.440601296],[-71.439351413,41.44054724],[-71.439311625,41.440485675],[-71.43927073,41.440438953],[-71.439242356,41.440424026],[-71.439176765,41.440395655],[-71.439200695,41.440350682],[-71.439252201,41.440296942],[-71.439273321,41.440234952],[-71.439265964,41.440172101],[-71.439258816,41.440112131],[-71.439221633,41.440061042],[-71.439194162,41.440056454],[-71.439132557,41.440022184],[-71.439111361,41.439971104],[-71.439117326,41.439962256],[-71.439169702,41.439919608],[-71.439143511,41.439878863],[-71.439068066,41.439857073],[-71.438987356,41.439875944],[-71.43892017,41.439927366],[-71.438865818,41.439970722],[-71.438830961,41.44003195],[-71.438817578,41.440107277],[-71.438817178,41.440111897],[-71.438812168,41.440171563],[-71.438785185,41.440230554],[-71.438776934,41.440278554],[-71.438825839,41.440307579],[-71.43885633,41.440300323],[-71.438914396,41.44028359],[-71.438980022,41.440308301],[-71.438975725,41.440352599],[-71.438967368,41.440416882],[-71.438989706,41.440450239],[-71.439025954,41.440461488],[-71.438980274,41.440525591],[-71.438929741,41.440579332],[-71.438872372,41.440629342],[-71.438826833,41.440672725],[-71.438782228,41.440725006],[-71.438758119,41.440797332],[-71.438739012,41.440851226],[-71.438718894,41.440913217],[-71.43869781,41.440968574],[-71.438650533,41.440985359],[-71.438572175,41.440957644],[-71.438483867,41.440941725],[-71.438411059,41.440958404],[-71.438341134,41.440980985],[-71.438263577,41.440974014],[-71.438220427,41.440964957],[-71.438231315,41.440956844],[-71.438282756,41.440908295],[-71.438311647,41.440858157],[-71.43828563,41.440794495],[-71.438261557,41.440732275],[-71.438237444,41.440679683],[-71.438221003,41.440645621],[-71.438163942,41.440660136],[-71.438098702,41.440709386],[-71.438046328,41.440748328],[-71.437993952,41.440789467],[-71.437940607,41.44082619],[-71.437898014,41.440871107],[-71.437877758,41.440949335],[-71.437860626,41.441002476],[-71.437825804,41.441057758],[-71.437802251,41.441055435],[-71.437769227,41.441009448],[-71.437721499,41.440957507],[-71.437682509,41.44092039],[-71.437661349,41.440990499],[-71.437644152,41.441048077],[-71.43761519,41.441109285],[-71.43759309,41.441176488],[-71.437590568,41.44124002],[-71.43760017,41.441273325],[-71.437622785,41.441271187],[-71.437710303,41.441254608],[-71.437775338,41.441230492],[-71.437819634,41.441217388],[-71.437808363,41.441274992],[-71.437802987,41.441335573],[-71.43784076,41.44140521],[-71.437877566,41.441468946],[-71.437944097,41.441501778],[-71.438004899,41.4415183],[-71.438038893,41.441566506],[-71.438048369,41.441605734],[-71.43802142,41.441658824],[-71.438023881,41.4417246],[-71.43805403,41.441757252],[-71.438081674,41.441740388],[-71.438104739,41.441680641],[-71.438129436,41.441662267],[-71.438162458,41.441711204],[-71.438196381,41.441771188],[-71.43820759,41.441841474],[-71.438181542,41.441906388],[-71.438172143,41.441978059],[-71.438186505,41.442025453],[-71.438220605,41.442058839],[-71.43823972,41.442126202],[-71.438259214,41.442146247],[-71.438329869,41.442156897],[-71.438336323,41.442210119],[-71.438284749,41.44226976],[-71.438241182,41.442315408],[-71.438202506,41.442362546],[-71.438163802,41.442408197],[-71.438117286,41.442453821],[-71.438060955,41.442497907],[-71.437989883,41.442541185],[-71.43791486,41.442584461],[-71.437838894,41.442628468],[-71.437761018,41.44266655],[-71.437666396,41.442703823],[-71.437557999,41.44274843],[-71.437446656,41.442790085],[-71.437335382,41.442822797],[-71.437221158,41.44285704],[-71.437100095,41.442891988],[-71.43702531,41.442908643],[-71.436911191,41.44292882],[-71.4367893,41.442939365],[-71.436678234,41.442945548],[-71.436589845,41.442948083],[-71.436484673,41.442956464],[-71.436410862,41.442970923],[-71.43633604,41.442993501],[-71.436262157,41.443019051],[-71.436189279,41.443043093],[-71.436120323,41.443064942],[-71.436035541,41.443108943],[-71.435989931,41.443158248],[-71.435949138,41.443224572],[-71.435913236,41.443293163],[-71.435871435,41.443363923],[-71.435819752,41.443438336],[-71.435761165,41.443516428],[-71.435696681,41.443595981],[-71.435629216,41.443677727],[-71.435562719,41.443763155],[-71.435502084,41.443853779],[-71.435447346,41.443942988],[-71.435386679,41.444034343],[-71.435353863,41.444085234],[-71.435321048,41.444135301],[-71.435289236,41.444184705],[-71.435254447,41.444233308],[-71.435180072,41.444323878],[-71.435107642,41.444414471],[-71.435043052,41.444506579],[-71.434986368,41.444595741],[-71.434929722,41.444676806],[-71.434868219,41.444751946],[-71.434803733,41.444830743],[-71.434741225,41.444906568],[-71.434682705,41.444977272],[-71.4346203,41.445041273],[-71.434545197,41.445098612],[-71.434461317,41.44514849],[-71.434363774,41.44518354],[-71.434251588,41.44521108],[-71.434136459,41.445233496],[-71.434018415,41.445252159],[-71.433907302,41.44527014],[-71.433802022,41.44529112],[-71.433696744,41.445309858],[-71.433595523,41.445315289],[-71.433505194,41.445308993],[-71.433423745,41.445298998],[-71.433349201,41.445283883],[-71.433251136,41.445264203],[-71.433178603,41.445244676],[-71.433161154,41.445216513],[-71.433164453,41.445170683],[-71.433197304,41.445118352],[-71.43319873,41.44506072],[-71.433176669,41.44499635],[-71.433123913,41.444956914],[-71.433065361,41.444908624],[-71.433028138,41.444898082],[-71.432952102,41.444945059],[-71.432899717,41.444988436],[-71.432832732,41.445011747],[-71.432764777,41.445032886],[-71.432699664,41.445069531],[-71.432649192,41.445113664],[-71.4326025,41.445177765],[-71.432567565,41.445247064],[-71.432535545,41.445319361],[-71.432501649,41.44538276],[-71.432459189,41.445409905],[-71.432408235,41.445391967],[-71.432384924,41.44536005],[-71.432360889,41.445294215],[-71.432322976,41.44524596],[-71.432268131,41.445227974],[-71.432214951,41.445246216],[-71.432218282,41.44531643],[-71.432256123,41.445375754],[-71.432270591,41.445405357],[-71.432220113,41.445455413],[-71.432199051,41.445512256],[-71.432155409,41.445564511],[-71.432124158,41.445539999],[-71.432114516,41.445517032],[-71.432055616,41.445511577],[-71.43202495,41.445538042],[-71.432006909,41.445583086],[-71.431939056,41.445593086],[-71.431944501,41.44564704],[-71.431996114,41.445703468],[-71.432055671,41.445749564],[-71.432101387,41.445807452],[-71.432161816,41.445863131],[-71.432186963,41.445912065],[-71.432159068,41.44596218],[-71.432117335,41.446020383],[-71.432073654,41.44608078],[-71.432027964,41.446144882],[-71.431984218,41.446208984],[-71.431946334,41.446277549],[-71.431915318,41.446347651],[-71.431895056,41.446423682],[-71.431874829,41.446495254],[-71.431853664,41.446562434],[-71.431837458,41.44662518],[-71.431811332,41.446698258],[-71.431784375,41.446752078],[-71.431758321,41.446814773],[-71.431736253,41.446873833],[-71.431716095,41.446936554],[-71.431698922,41.446994131],[-71.431671967,41.447045733],[-71.431645942,41.447109937],[-71.431623705,41.447184481],[-71.431612493,41.447238379],[-71.431595318,41.447297443],[-71.431568291,41.447359405],[-71.431543245,41.447416931],[-71.431501505,41.447480325],[-71.431452178,41.447503006],[-71.431362055,41.447472329],[-71.431317135,41.44743882],[-71.431267533,41.447376515],[-71.43122376,41.447320869],[-71.431175962,41.447277799],[-71.431137417,41.447309428],[-71.431120172,41.447376587],[-71.431095297,41.447415657],[-71.431058451,41.447478323],[-71.431052061,41.447541829],[-71.43109088,41.447596695],[-71.43111911,41.447633053],[-71.431077376,41.447690523],[-71.431068001,41.447759952],[-71.431050792,41.447821965],[-71.431028761,41.447873616],[-71.431061713,41.447928433],[-71.431128142,41.447973824],[-71.431163003,41.448035343],[-71.431203931,41.448079164],[-71.431273379,41.44811566],[-71.431350628,41.44816259],[-71.431432948,41.448185898],[-71.431515164,41.448220984],[-71.43157476,41.448261912],[-71.43163234,41.448310957],[-71.431682047,41.448360706],[-71.43172291,41.448409695],[-71.431782329,41.448473493],[-71.431866448,41.448521181],[-71.43192712,41.448550285],[-71.432000317,41.448606795],[-71.432044195,41.448649862],[-71.43208801,41.448695903],[-71.432120998,41.44874706],[-71.432148085,41.448801873],[-71.432174168,41.448858195],[-71.432184432,41.448926217],[-71.432173052,41.448995621],[-71.43215775,41.449065801],[-71.43213752,41.449139591],[-71.432115316,41.449211207],[-71.432093212,41.449274682],[-71.432084849,41.449336723],[-71.432087309,41.449397354],[-71.432084876,41.449457204],[-71.432068636,41.449522923],[-71.432043517,41.449591519],[-71.432013473,41.449660866],[-71.431977561,41.449730942],[-71.431941688,41.449793562],[-71.431903941,41.449845135],[-71.431853464,41.449890754],[-71.431791298,41.449922987],[-71.431719137,41.449978862],[-71.431681247,41.450050354],[-71.431656195,41.450113049],[-71.43165966,41.45017073],[-71.431666078,41.450225462],[-71.431645014,41.45028155],[-71.43164366,41.450326626],[-71.431680603,41.450374836],[-71.431697841,41.450430375],[-71.431666785,41.450507063],[-71.431629943,41.450565291],[-71.431594068,41.450628712],[-71.431561105,41.450698057],[-71.431532028,41.45077111],[-71.431503925,41.450844141],[-71.431466038,41.450912706],[-71.431425233,41.450980492],[-71.431380478,41.451047543],[-71.431331769,41.451116079],[-71.43128212,41.451182373],[-71.431231534,41.451243497],[-71.43118775,41.451310549],[-71.431148891,41.451378359],[-71.431108119,41.451443263],[-71.431062457,41.451504391],[-71.431011872,41.451564028],[-71.43097409,41.451618528],[-71.430942239,41.45167015],[-71.430905463,41.451722432],[-71.430863829,41.451768811],[-71.430787816,41.45181359],[-71.430696192,41.451844913],[-71.430633049,41.451879386],[-71.430576742,41.451916082],[-71.43051655,41.451948338],[-71.43045424,41.451999026],[-71.430439041,41.452055872],[-71.430493676,41.452104161],[-71.430562504,41.452098577],[-71.430618533,41.452093648],[-71.430667342,41.452132305],[-71.430644124,41.452212039],[-71.430615187,41.452267345],[-71.430590172,41.452321189],[-71.430584998,41.452355903],[-71.430584504,41.452419459],[-71.430605698,41.452471318],[-71.430571838,41.452524356],[-71.430571625,41.452553173],[-71.430595733,41.452607984],[-71.43059236,41.452664151],[-71.43057213,41.452735014],[-71.430545137,41.452791052],[-71.430501487,41.452845548],[-71.430447015,41.452900015],[-71.430383697,41.452954408],[-71.430317501,41.452999971],[-71.430259178,41.453044784],[-71.430201791,41.453095498],[-71.43015659,41.453121771],[-71.430133655,41.453135136],[-71.430061663,41.453170267],[-71.429983844,41.453196497],[-71.429908074,41.453211683],[-71.429808851,41.45321272],[-71.429737355,41.453182076],[-71.429670886,41.453141143],[-71.429618159,41.453099488],[-71.429600921,41.453044726],[-71.4295739,41.452985498],[-71.429507327,41.452957076],[-71.429459102,41.452967932],[-71.429445153,41.452992281],[-71.429425998,41.453052051],[-71.429404969,41.453101461],[-71.429370235,41.453146402],[-71.429402428,41.453173912],[-71.429473063,41.453185299],[-71.429489471,41.45322014],[-71.429549103,41.453258118],[-71.42955961,41.45329657],[-71.429512945,41.4533555],[-71.429489867,41.453416023],[-71.429465814,41.453478696],[-71.429421308,41.453508834],[-71.429353795,41.453477438],[-71.429289271,41.453437261],[-71.429217806,41.453406663],[-71.429167567,41.453424859],[-71.42915625,41.453488386],[-71.429165682,41.453536487],[-71.429204021,41.453531479],[-71.42924225,41.453543487],[-71.429270276,41.453601274],[-71.429242482,41.453637346],[-71.429177713,41.453626717],[-71.429153877,41.453657623],[-71.429099612,41.453687687],[-71.429089267,41.4537527],[-71.429109384,41.453814851],[-71.429088285,41.453872402],[-71.429084876,41.453932274],[-71.429074815,41.453959598],[-71.42900282,41.453996191],[-71.428997369,41.454060476],[-71.429030253,41.454123458],[-71.429076074,41.454170987],[-71.429076694,41.454216065],[-71.429021322,41.454257197],[-71.428934582,41.45429449],[-71.42884188,41.45433473],[-71.428774882,41.454360281],[-71.42870494,41.454382147],[-71.428636,41.454404037],[-71.428560155,41.45443029],[-71.428482513,41.45443214],[-71.428431552,41.454414155],[-71.428345199,41.454403421],[-71.428270331,41.454425993],[-71.42824635,41.454476887],[-71.428174463,41.454497265],[-71.428101608,41.45451316],[-71.428026941,41.45451874],[-71.427943402,41.454519831],[-71.427834359,41.454519328],[-71.427757722,41.454519006],[-71.427682058,41.454518661],[-71.427577979,41.454510797],[-71.427494574,41.454500041],[-71.427402288,41.454494471],[-71.427319757,41.454490394],[-71.427246137,41.454484104],[-71.42721974,41.454466271],[-71.427231022,41.454407913],[-71.427237375,41.454354013],[-71.427240787,41.454293432],[-71.427235275,41.454247551],[-71.427129186,41.454242635],[-71.427038772,41.454248867],[-71.426965775,41.454282531],[-71.426914704,41.454283048],[-71.426870678,41.454262139],[-71.426805149,41.454224888],[-71.426730597,41.454208282],[-71.42665809,41.454185778],[-71.426677958,41.454278254],[-71.426727736,41.454319887],[-71.426794274,41.454352702],[-71.426861886,41.45437669],[-71.426903859,41.454411594],[-71.426926961,41.454467137],[-71.426931428,41.4545226],[-71.426855761,41.454524473],[-71.426796918,41.454515334],[-71.426757224,41.454562444],[-71.426693317,41.454568807],[-71.426644404,41.454541972],[-71.426578309,41.454574931],[-71.426485958,41.454571556],[-71.426415324,41.45455939],[-71.426375769,41.454590262],[-71.426388148,41.454638343],[-71.426448857,41.4546645],[-71.426520672,41.454654483],[-71.426604218,41.454648224],[-71.426694518,41.454663421],[-71.426783888,41.454667526],[-71.426859278,41.454695933],[-71.426875403,41.454764783],[-71.426900443,41.454827737],[-71.426872716,41.454856399],[-71.426807768,41.454869416],[-71.426827921,41.45492569],[-71.426811919,41.454962569],[-71.426741972,41.454987384],[-71.426684895,41.455001916],[-71.426611935,41.455029657],[-71.42655555,41.455077465],[-71.426501885,41.455032125],[-71.426451168,41.454986787],[-71.426397947,41.455005735],[-71.42636106,41.455070617],[-71.426321363,41.455119214],[-71.426289998,41.455112424],[-71.426277446,41.455082822],[-71.426244246,41.455059725],[-71.426229113,41.45510772],[-71.426243328,41.455172085],[-71.426224167,41.455233342],[-71.426191237,41.455293813],[-71.426164269,41.45534985],[-71.426151944,41.455414862],[-71.426088653,41.455467011],[-71.426060717,41.455519389],[-71.426086974,41.455553482],[-71.426174475,41.45554503],[-71.426258229,41.455516588],[-71.42632134,41.455489527],[-71.426402146,41.455459596],[-71.426473931,41.455450357],[-71.426557475,41.455446294],[-71.426560281,41.455464774],[-71.426534569,41.45548605],[-71.426455705,41.455518956],[-71.426387669,41.455546745],[-71.42632646,41.455584899],[-71.426274069,41.45562235],[-71.42621876,41.455659089],[-71.426150721,41.455689051],[-71.426076928,41.455699822],[-71.425993275,41.455719368],[-71.425939806,41.455768687],[-71.42590479,41.455844616],[-71.425878829,41.455896972],[-71.425841032,41.45595888],[-71.425817018,41.456010528],[-71.425839355,41.456043155],[-71.425895178,41.456063386],[-71.425957795,41.456096176],[-71.426005703,41.456125961],[-71.42593083,41.456150018],[-71.425914939,41.45616915],[-71.42600431,41.456173987],[-71.426083898,41.456174359],[-71.426110437,41.45617449],[-71.426191177,41.456151192],[-71.426250402,41.456119692],[-71.426321355,41.456093391],[-71.426397131,41.456077522],[-71.42641184,41.456081259],[-71.42639102,41.456104802],[-71.426333558,41.456163701],[-71.426264477,41.456200318],[-71.426200324,41.456234765],[-71.426202845,41.456290204],[-71.426255612,41.456323697],[-71.426324197,41.456349149],[-71.426355069,41.456416545],[-71.426389928,41.456479551],[-71.426418855,41.456545459],[-71.426440009,41.456603242],[-71.426468068,41.456658057],[-71.426501991,41.45671514],[-71.426525017,41.456784703],[-71.426519419,41.456869662],[-71.426510045,41.456932457],[-71.426505627,41.456995256],[-71.426494275,41.457060268],[-71.426478996,41.457129669],[-71.426459836,41.457190194],[-71.426455424,41.457247801],[-71.426471582,41.457315141],[-71.426487846,41.457369171],[-71.426522049,41.457394464],[-71.426542625,41.457399715],[-71.426600357,41.457425892],[-71.426600835,41.457487207],[-71.426594477,41.457544859],[-71.426574275,41.45761277],[-71.426551157,41.457678416],[-71.426545771,41.457736777],[-71.42656002,41.457798192],[-71.426569279,41.457864019],[-71.426571626,41.457939446],[-71.426574977,41.458014119],[-71.426581319,41.458079166],[-71.426587695,41.45814053],[-71.426621511,41.45821241],[-71.426662165,41.458286489],[-71.426682349,41.458342763],[-71.426699548,41.458404203],[-71.426720636,41.458467132],[-71.426734884,41.458530743],[-71.426734251,41.458606877],[-71.42673372,41.458673383],[-71.426733193,41.45873623],[-71.426731724,41.458799031],[-71.426703902,41.458830688],[-71.426627324,41.458827392],[-71.42655783,41.45879677],[-71.42650239,41.458758862],[-71.426512691,41.458789903],[-71.42654565,41.458841062],[-71.426591437,41.458892297],[-71.426636257,41.458939781],[-71.426693745,41.458994729],[-71.426749461,41.459031197],[-71.42678697,41.459009928],[-71.426849766,41.459022067],[-71.426907355,41.459068873],[-71.426956025,41.45912601],[-71.427027706,41.459131522],[-71.427120894,41.459152644],[-71.427217904,41.459181179],[-71.427311998,41.459208248],[-71.427417955,41.459228669],[-71.427489632,41.459237886],[-71.427564195,41.459249276],[-71.427641668,41.459268856],[-71.427718132,41.459292849],[-71.427784683,41.459319031],[-71.427864891,41.459365966],[-71.427931258,41.459421719],[-71.427981837,41.459484781],[-71.428021625,41.45954779],[-71.428074323,41.459592351],[-71.428145759,41.459627433],[-71.428221948,41.459680996],[-71.428275653,41.459722631],[-71.428341013,41.459781333],[-71.428381773,41.459845098],[-71.428412679,41.459911738],[-71.428419958,41.459982731],[-71.428398682,41.460060979],[-71.428368768,41.460114797],[-71.428336909,41.460167859],[-71.428290164,41.460238636],[-71.428266007,41.460309472],[-71.428250769,41.460370732],[-71.428247328,41.460430626],[-71.4282688,41.46045136],[-71.428292427,41.460447098],[-71.428331224,41.460388117],[-71.428388622,41.460334408],[-71.428452745,41.460302933],[-71.428508056,41.46026697],[-71.428578874,41.460256219],[-71.428659335,41.460269122],[-71.428734724,41.460304938],[-71.428799185,41.460352548],[-71.428854725,41.460412685],[-71.428900344,41.460482352],[-71.428934271,41.460539434],[-71.428977046,41.460596545],[-71.429070864,41.460655379],[-71.429155934,41.460708238],[-71.429219495,41.460745464],[-71.429282085,41.460781226],[-71.429341722,41.460820668],[-71.429399314,41.46086825],[-71.429451912,41.460922462],[-71.429493716,41.460978085],[-71.429525632,41.461041043],[-71.429557512,41.461108461],[-71.429583528,41.461172856],[-71.429607599,41.461235809],[-71.429633619,41.461296545],[-71.429661649,41.46135431],[-71.429689713,41.461408415],[-71.429709933,41.461462446],[-71.429720302,41.461517935],[-71.429718805,41.461580759],[-71.429717238,41.461652433],[-71.429716643,41.461724862],[-71.429717085,41.461794342],[-71.429725408,41.461857217],[-71.429737683,41.461920872],[-71.429744027,41.461986673],[-71.429743505,41.462047256],[-71.429744054,41.462102693],[-71.429745508,41.4621633],[-71.429753932,41.462217324],[-71.42980667,41.462256739],[-71.429774739,41.462320161],[-71.429767414,41.462374816],[-71.429705269,41.462403366],[-71.429693192,41.46243803],[-71.42973104,41.462498064],[-71.429779025,41.462518242],[-71.429834644,41.462564313],[-71.429871519,41.46262437],[-71.429894623,41.462683595],[-71.429847326,41.46270113],[-71.429827955,41.462697395],[-71.429847507,41.462701469],[-71.432816509,41.462773468],[-71.432785509,41.462979469],[-71.432785509,41.463238469],[-71.432800509,41.463337469],[-71.432800509,41.463372469],[-71.432808508,41.463387469],[-71.432808508,41.463406469],[-71.432816509,41.463433469],[-71.432861509,41.463726469],[-71.432961509,41.464272469],[-71.432983508,41.464417469],[-71.433060509,41.464775469],[-71.433130509,41.465142469],[-71.433144509,41.465214469],[-71.433159508,41.465260469],[-71.433333509,41.466185469],[-71.433342509,41.466233469],[-71.433403509,41.466626469],[-71.433468509,41.466969469],[-71.433479509,41.46699647],[-71.433556509,41.46737347],[-71.433586509,41.467553469],[-71.433609509,41.46765647],[-71.433739509,41.46834647],[-71.433754509,41.46847647],[-71.433777509,41.46861347],[-71.433807509,41.46888847],[-71.433815509,41.46901747],[-71.433815509,41.46914747],[-71.433823509,41.46927347],[-71.433829509,41.46970747],[-71.433868509,41.47128047],[-71.433891509,41.472088471],[-71.433907509,41.472535471],[-71.43391451,41.47262647],[-71.433922509,41.472771471],[-71.43393751,41.472889471],[-71.433960509,41.473000471],[-71.433968509,41.473065471],[-71.43397551,41.47311447],[-71.434036509,41.473337471],[-71.43411051,41.47352247],[-71.43422451,41.47375647],[-71.434329509,41.473951471],[-71.43434151,41.473973471],[-71.43451251,41.474254471],[-71.43463951,41.474461471],[-71.43467751,41.474518471],[-71.43476151,41.474667471],[-71.43482251,41.47478547],[-71.43492951,41.475022471],[-71.43495951,41.475098471],[-71.43499051,41.475171471],[-71.43503651,41.475323471],[-71.43508951,41.475476471],[-71.43537251,41.476412471],[-71.435593511,41.477141472],[-71.435863511,41.478037472],[-71.435943511,41.478303471],[-71.43603251,41.478604472],[-71.43608951,41.478794472],[-71.436119511,41.478901471],[-71.436195511,41.479138471],[-71.43622551,41.479273471],[-71.43626451,41.479397472],[-71.436333511,41.479676472],[-71.436346511,41.479738472],[-71.43645551,41.480229472],[-71.436546511,41.480786472],[-71.436638511,41.481438472],[-71.436790511,41.482533472],[-71.436821511,41.482762472],[-71.436861511,41.483048473],[-71.436935511,41.483590473]]]]}}"}, +{"type": "precinct", "typeId": 2003, "areaId": 25820, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":159,\"NAME\":\"2003\",\"SHAPE_Length\":0.16315502357644,\"SHAPE_Area\":-0.00067405216681628},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.429958229,41.464178447],[-71.429977447,41.464233187],[-71.430020611,41.464241515],[-71.430053088,41.464237236],[-71.430099621,41.464194588],[-71.43006059,41.464158933],[-71.429984982,41.464152666],[-71.429958229,41.464178447]]],[[[-71.430696846,41.466052529],[-71.430692856,41.466059913],[-71.430637332,41.466120989],[-71.43063195,41.466178618],[-71.430708567,41.46618118],[-71.43074237,41.466131801],[-71.430772249,41.466082443],[-71.430777523,41.466041074],[-71.43076375,41.466041043],[-71.430696846,41.466052529]]],[[[-71.430622901,41.467422564],[-71.430616792,41.46744838],[-71.430631258,41.467483197],[-71.430660367,41.467530647],[-71.430687885,41.467529269],[-71.430697845,41.467513815],[-71.430697881,41.467507891],[-71.43070406,41.467473155],[-71.430691641,41.467428803],[-71.430655344,41.467421989],[-71.430622901,41.467422564]]],[[[-71.420853667,41.468708281],[-71.420781223,41.468746332],[-71.420751276,41.468819107],[-71.420732584,41.468887087],[-71.420687909,41.468943614],[-71.420620991,41.468988736],[-71.420579512,41.469017204],[-71.420577169,41.469118334],[-71.420566903,41.469184216],[-71.420554881,41.469243098],[-71.420546567,41.469303446],[-71.420546402,41.469314675],[-71.420571542,41.469319816],[-71.420645375,41.469314744],[-71.420688974,41.46926805],[-71.420713969,41.469216998],[-71.420728789,41.469157455],[-71.420747279,41.469104912],[-71.4207493,41.469092998],[-71.420781531,41.468992826],[-71.420824286,41.468939774],[-71.420876208,41.468899467],[-71.420893559,41.468858862],[-71.420893315,41.468809737],[-71.420919864,41.468781122],[-71.420956047,41.468730901],[-71.420956513,41.4686979],[-71.420937034,41.468688578],[-71.420853667,41.468708281]]],[[[-71.420686675,41.492754742],[-71.420742355,41.492791715],[-71.420798067,41.492827248],[-71.420859366,41.492870698],[-71.420900582,41.492920445],[-71.420928374,41.492977937],[-71.420959971,41.49303335],[-71.421003203,41.493076672],[-71.421055891,41.493122906],[-71.421100066,41.493166229],[-71.421139299,41.493220961],[-71.421166216,41.493273466],[-71.421185433,41.493328779],[-71.421194152,41.49338827],[-71.421187667,41.493443359],[-71.421169679,41.493502694],[-71.421149837,41.493560519],[-71.421130975,41.493613359],[-71.421118739,41.493669862],[-71.421120766,41.493729325],[-71.421148593,41.493783958],[-71.421199564,41.493816606],[-71.421254201,41.493861422],[-71.421278096,41.493923188],[-71.421289508,41.493994184],[-71.421299979,41.494063739],[-71.421319938,41.49413481],[-71.421360047,41.494195991],[-71.421396321,41.494258611],[-71.421405106,41.494313094],[-71.421387118,41.494372383],[-71.421382419,41.49443541],[-71.421405768,41.494470646],[-71.421422524,41.494499428],[-71.421430307,41.494553223],[-71.421425574,41.494618354],[-71.421409599,41.494672682],[-71.421365002,41.494726739],[-71.42134597,41.494793918],[-71.421347052,41.494854776],[-71.421344333,41.494914945],[-71.421330049,41.494979977],[-71.421327269,41.494989512],[-71.421312058,41.495041439],[-71.421297739,41.495110108],[-71.421288293,41.495173749],[-71.421275922,41.495241687],[-71.421264559,41.49530535],[-71.421255048,41.495372581],[-71.42124271,41.495438369],[-71.421237001,41.495505649],[-71.421245589,41.495572321],[-71.421250407,41.495638258],[-71.421251359,41.49570632],[-71.421249517,41.495770035],[-71.421246701,41.495835189],[-71.421231504,41.495900221],[-71.421200292,41.495951566],[-71.421202417,41.496005998],[-71.421221667,41.49605987],[-71.421231265,41.496122266],[-71.421237902,41.496193213],[-71.421264722,41.496251458],[-71.421280138,41.4963067],[-71.421281223,41.496365408],[-71.421275645,41.49642482],[-71.421275789,41.496482132],[-71.421275896,41.496543721],[-71.42127503,41.496606019],[-71.421261751,41.496669657],[-71.421241843,41.496731804],[-71.421270716,41.496777152],[-71.421320482,41.496827706],[-71.421330179,41.496883629],[-71.421331163,41.49695025],[-71.421330262,41.497016092],[-71.421325528,41.497081955],[-71.42130939,41.497144882],[-71.421282921,41.497199111],[-71.421278319,41.497256352],[-71.42130524,41.497306707],[-71.421329199,41.497366323],[-71.421335905,41.497430821],[-71.421355023,41.497494001],[-71.421355064,41.497560621],[-71.421333271,41.497621326],[-71.421340951,41.497685115],[-71.421385973,41.497734888],[-71.421416597,41.49779245],[-71.421419564,41.497854796],[-71.421416814,41.497914896],[-71.421408277,41.497981442],[-71.421395941,41.498045081],[-71.421392148,41.498112362],[-71.421407462,41.49817698],[-71.421427458,41.498244437],[-71.421446545,41.498309035],[-71.421473265,41.49837517],[-71.421499953,41.498442701],[-71.421525666,41.498511603],[-71.421553232,41.498582724],[-71.421582778,41.498651743],[-71.421602739,41.498722814],[-71.421615128,41.498791638],[-71.421623653,41.4988619],[-71.421634224,41.498925029],[-71.421649475,41.498991705],[-71.421672362,41.499058524],[-71.421674134,41.499102733],[-71.421675197,41.499129423],[-71.42166471,41.499198094],[-71.421655099,41.499272506],[-71.421647437,41.499344793],[-71.421637793,41.499421355],[-71.421621522,41.499493545],[-71.421601445,41.499569299],[-71.421580398,41.499641485],[-71.42155746,41.499717238],[-71.421533553,41.499790108],[-71.421509642,41.499865814],[-71.421501008,41.499937369],[-71.421477159,41.500011634],[-71.421444673,41.500084453],[-71.421422678,41.500160206],[-71.421421549,41.500238969],[-71.421415705,41.500316975],[-71.421400641,41.500372035],[-71.421383324,41.500453555],[-71.421370178,41.50050713],[-71.421341457,41.500585669],[-71.42131596,41.50063919],[-71.421291342,41.500695594],[-71.421268706,41.500748408],[-71.421249807,41.500804861],[-71.4212376,41.500861318],[-71.421229229,41.500915675],[-71.421223654,41.500972914],[-71.421212999,41.501054484],[-71.421205538,41.501111014],[-71.421195827,41.501191852],[-71.421188365,41.501249114],[-71.421171047,41.50133061],[-71.421154065,41.501387065],[-71.421134255,41.501441321],[-71.421113505,41.50149416],[-71.421091746,41.501550565],[-71.42106218,41.501622654],[-71.42103635,41.50169909],[-71.421015501,41.501757692],[-71.420999458,41.501816296],[-71.420978573,41.501879838],[-71.420953045,41.501933336],[-71.420930407,41.501986173],[-71.420908648,41.502042578],[-71.42089429,41.502116941],[-71.420881851,41.502189179],[-71.420862685,41.502264248],[-71.420834063,41.502334919],[-71.420803488,41.502410575],[-71.420773015,41.502477654],[-71.420739647,41.5025483],[-71.420709272,41.502609662],[-71.420676006,41.502671731],[-71.420640989,41.502722272],[-71.420591738,41.502769876],[-71.420551876,41.502827595],[-71.420514774,41.50289172],[-71.420483558,41.502943773],[-71.420457995,41.503000153],[-71.420441985,41.503055899],[-71.42041161,41.503117238],[-71.420374574,41.5031764],[-71.420336529,41.503239837],[-71.420314914,41.503282306],[-71.420304204,41.503303348],[-71.420270903,41.503368207],[-71.420228989,41.503435918],[-71.420177583,41.503503555],[-71.420126112,41.503574782],[-71.420079392,41.503641759],[-71.420025094,41.503711497],[-71.419989177,41.503751106],[-71.41996706,41.503775515],[-71.419933992,41.503823908],[-71.419894938,41.503890936],[-71.419851105,41.503960064],[-71.419804446,41.504026309],[-71.419774061,41.504066608],[-71.419776507,41.504066477],[-71.421425751,41.50326538],[-71.422653705,41.503247154],[-71.4289327,41.503151788],[-71.448214591,41.502593503],[-71.448254996,41.502529801],[-71.448289411,41.50248227],[-71.448325652,41.502432659],[-71.448358153,41.502380987],[-71.44838603,41.502329359],[-71.448416735,41.502279791],[-71.448453918,41.502231552],[-71.448509394,41.502172046],[-71.44856042,41.502123036],[-71.448605852,41.502069197],[-71.448655877,41.502015979],[-71.448694858,41.501964264],[-71.448717082,41.501905041],[-71.448729145,41.501845195],[-71.44869055,41.501794819],[-71.448612366,41.501755859],[-71.448527559,41.501707245],[-71.448452856,41.50165301],[-71.448396879,41.501615935],[-71.448340904,41.501576826],[-71.448285752,41.501535612],[-71.448221212,41.501479208],[-71.448202793,41.501421019],[-71.448183347,41.501353109],[-71.44811195,41.50127381],[-71.448081602,41.501220555],[-71.448078795,41.501153933],[-71.448083237,41.501077458],[-71.448095983,41.50100165],[-71.448102568,41.500946056],[-71.448109008,41.500881383],[-71.448116363,41.500814651],[-71.448124686,41.500753455],[-71.448132185,41.500696444],[-71.448131204,41.500629068],[-71.448116495,41.50057223],[-71.448072162,41.500508014],[-71.448025347,41.500466758],[-71.447972141,41.500428267],[-71.447909745,41.500393362],[-71.447836245,41.500359275],[-71.447758151,41.500325849],[-71.447681911,41.500293843],[-71.447611238,41.500262479],[-71.447544275,41.500232465],[-71.447485619,41.500200993],[-71.447416456,41.500146004],[-71.447379514,41.500084467],[-71.447359213,41.500022137],[-71.447359118,41.499950577],[-71.447378316,41.499873354],[-71.447398772,41.499819024],[-71.44742659,41.499764584],[-71.447460034,41.499712227],[-71.447499042,41.499663989],[-71.447559997,41.499598197],[-71.447613501,41.499530366],[-71.447656279,41.499484874],[-71.447702736,41.499440024],[-71.447758154,41.499375716],[-71.447803411,41.499310718],[-71.447826461,41.499245251],[-71.447794999,41.499178114],[-71.447753694,41.499133315],[-71.447690896,41.499070623],[-71.447644053,41.49902724],[-71.447595444,41.498985961],[-71.44751341,41.498936639],[-71.44745287,41.498903838],[-71.447391447,41.498871678],[-71.44730131,41.498836302],[-71.447222275,41.49880155],[-71.447146864,41.498763254],[-71.447074136,41.498718006],[-71.447008802,41.498670612],[-71.446945177,41.498615581],[-71.446886176,41.498561214],[-71.446858657,41.498510705],[-71.44683553,41.49844492],[-71.446832752,41.498383101],[-71.446855977,41.498328087],[-71.446886651,41.498277124],[-71.446842407,41.498219814],[-71.446796132,41.498152166],[-71.446746293,41.498091423],[-71.446713065,41.49802991],[-71.44669462,41.497968222],[-71.446677943,41.497902348],[-71.44666766,41.497829503],[-71.446666536,41.497753139],[-71.446666586,41.497692717],[-71.446677794,41.497638451],[-71.44668438,41.497583521],[-71.446674213,41.497517605],[-71.446666871,41.497456539],[-71.446650134,41.497389293],[-71.446647446,41.497328892],[-71.446638306,41.497272719],[-71.446638219,41.497267185],[-71.446804334,41.496902668],[-71.446832462,41.496840589],[-71.446859648,41.496776474],[-71.446875819,41.496717111],[-71.446887364,41.496659804],[-71.446894353,41.49659488],[-71.446896717,41.496530639],[-71.446897223,41.496470491],[-71.446903199,41.49641524],[-71.446917582,41.496347574],[-71.446935577,41.496289653],[-71.446986638,41.496229757],[-71.447041413,41.496167142],[-71.447093454,41.496099653],[-71.447165689,41.496037823],[-71.447232351,41.495982874],[-71.447286993,41.495933363],[-71.447326097,41.495876206],[-71.447340377,41.49582169],[-71.447347368,41.495753289],[-71.447353374,41.495699411],[-71.447365935,41.495626232],[-71.447381197,41.495561357],[-71.447399193,41.495501309],[-71.447426476,41.495429555],[-71.447467539,41.495356527],[-71.447492932,41.495289598],[-71.447494416,41.495221904],[-71.44749691,41.49514728],[-71.447505789,41.495076136],[-71.447530203,41.495015427],[-71.447541041,41.495004454],[-71.447575655,41.494969342],[-71.447633064,41.4949199],[-71.447691383,41.494873889],[-71.44769719,41.494838649],[-71.447656457,41.494767276],[-71.447642237,41.494709157],[-71.447617007,41.494650278],[-71.447593601,41.494592796],[-71.44758215,41.494534014],[-71.447582687,41.494471785],[-71.447584138,41.494408207],[-71.447590145,41.49435163],[-71.447590749,41.494281808],[-71.447554409,41.494232552],[-71.447480379,41.494184514],[-71.447386022,41.494147445],[-71.447300848,41.494114542],[-71.447255256,41.49407077],[-71.447236444,41.494012626],[-71.447234313,41.493940059],[-71.44722006,41.493886765],[-71.447199389,41.493832782],[-71.447184257,41.493774663],[-71.447175607,41.493713802],[-71.447166927,41.493652941],[-71.447152675,41.493598275],[-71.447121128,41.493527615],[-71.44709502,41.493464619],[-71.447067935,41.493406425],[-71.447032641,41.493343379],[-71.446992786,41.493278227],[-71.446952767,41.493228261],[-71.4469091,41.493175548],[-71.446869114,41.493122128],[-71.446841996,41.49306741],[-71.446816765,41.493010613],[-71.446796129,41.492951759],[-71.446777318,41.492893614],[-71.44676678,41.492835542],[-71.446754385,41.492780191],[-71.446736483,41.492725524],[-71.446717639,41.492670833],[-71.446703418,41.492616144],[-71.446691967,41.492559421],[-71.446684199,41.492499247],[-71.446682878,41.492440493],[-71.446683351,41.492383158],[-71.446680141,41.49232852],[-71.4466797,41.492273289],[-71.44667615,41.492225352],[-71.446675578,41.492217964],[-71.446676994,41.49216063],[-71.446671079,41.492103223],[-71.446670837,41.492027181],[-71.446646623,41.49195522],[-71.446605792,41.491894893],[-71.446585291,41.491820853],[-71.446565769,41.491740594],[-71.446563506,41.49168113],[-71.446559065,41.491644491],[-71.446556648,41.491624433],[-71.446538748,41.491569056],[-71.446525441,41.491513018],[-71.446534188,41.491455001],[-71.446560421,41.49140056],[-71.446596689,41.491350263],[-71.446620122,41.491298587],[-71.446641868,41.491226099],[-71.446665469,41.491155716],[-71.446684447,41.491083936],[-71.446698928,41.491005933],[-71.446715066,41.490947279],[-71.446732965,41.490894138],[-71.446763928,41.490820328],[-71.446788305,41.490766572],[-71.446809917,41.490710001],[-71.446826934,41.490654801],[-71.446838615,41.490580204],[-71.446839118,41.49052216],[-71.446836887,41.490460639],[-71.446827361,41.490393557],[-71.446817868,41.490322358],[-71.446791798,41.490253141],[-71.446763022,41.490180401],[-71.446726855,41.490109053],[-71.446680556,41.49004248],[-71.44664432,41.489980783],[-71.446618246,41.489915042],[-71.446589373,41.48985129],[-71.446562388,41.489784863],[-71.446546412,41.489719104],[-71.446543301,41.489655501],[-71.446543775,41.489597457],[-71.446548938,41.489533195],[-71.446550321,41.489478605],[-71.446576725,41.489400653],[-71.446601069,41.489349642],[-71.44660819,41.489270903],[-71.446611429,41.489216337],[-71.446629494,41.489143848],[-71.446661335,41.489074909],[-71.446676899,41.489045546],[-71.446724515,41.488947473],[-71.446718514,41.488820473],[-71.446721077,41.488808757],[-71.4467321,41.488755974],[-71.446761171,41.488689756],[-71.446796526,41.4886374],[-71.446803782,41.48863245],[-71.446864515,41.488590474],[-71.446875361,41.488584505],[-71.446936054,41.488548248],[-71.44700997,41.488510424],[-71.447013514,41.488508473],[-71.447050796,41.488462079],[-71.447058219,41.488452799],[-71.447058515,41.488417926],[-71.447058515,41.488401473],[-71.447047623,41.488339096],[-71.447047362,41.488338531],[-71.447039515,41.488341473],[-71.447009514,41.488355474],[-71.446976515,41.488369473],[-71.446892514,41.488400473],[-71.446861515,41.488438473],[-71.446785515,41.488495473],[-71.446663514,41.488610474],[-71.445923514,41.488621473],[-71.445396514,41.488633473],[-71.445000514,41.488644473],[-71.444748514,41.488648474],[-71.444511513,41.488659473],[-71.444054514,41.488678473],[-71.443657513,41.488694473],[-71.443192513,41.488713473],[-71.443184513,41.488713473],[-71.443329514,41.491982474],[-71.442223513,41.491997474],[-71.441444513,41.492005474],[-71.440819513,41.492016474],[-71.439957513,41.492031474],[-71.439018512,41.492054474],[-71.438049512,41.492054474],[-71.438026512,41.491764474],[-71.437920511,41.490853474],[-71.437729511,41.489342474],[-71.437637512,41.488725474],[-71.437164511,41.485237473],[-71.437119511,41.484906473],[-71.437019511,41.484238473],[-71.436935511,41.483590473],[-71.436861511,41.483048473],[-71.436821511,41.482762472],[-71.436790511,41.482533472],[-71.436638511,41.481438472],[-71.436546511,41.480786472],[-71.43645551,41.480229472],[-71.436346511,41.479738472],[-71.436333511,41.479676472],[-71.43626451,41.479397472],[-71.43622551,41.479273471],[-71.436195511,41.479138471],[-71.436119511,41.478901471],[-71.43608951,41.478794472],[-71.43603251,41.478604472],[-71.435943511,41.478303471],[-71.435863511,41.478037472],[-71.435593511,41.477141472],[-71.43537251,41.476412471],[-71.43508951,41.475476471],[-71.43503651,41.475323471],[-71.43499051,41.475171471],[-71.43495951,41.475098471],[-71.43492951,41.475022471],[-71.43482251,41.47478547],[-71.43476151,41.474667471],[-71.43467751,41.474518471],[-71.43463951,41.474461471],[-71.43451251,41.474254471],[-71.43434151,41.473973471],[-71.434329509,41.473951471],[-71.43422451,41.47375647],[-71.43411051,41.47352247],[-71.434036509,41.473337471],[-71.43397551,41.47311447],[-71.433968509,41.473065471],[-71.433960509,41.473000471],[-71.43393751,41.472889471],[-71.433922509,41.472771471],[-71.43391451,41.47262647],[-71.433907509,41.472535471],[-71.433891509,41.472088471],[-71.433868509,41.47128047],[-71.433829509,41.46970747],[-71.433823509,41.46927347],[-71.433815509,41.46914747],[-71.433815509,41.46901747],[-71.433807509,41.46888847],[-71.433777509,41.46861347],[-71.433754509,41.46847647],[-71.433739509,41.46834647],[-71.433609509,41.46765647],[-71.433586509,41.467553469],[-71.433556509,41.46737347],[-71.433479509,41.46699647],[-71.433468509,41.466969469],[-71.433403509,41.466626469],[-71.433342509,41.466233469],[-71.433333509,41.466185469],[-71.433159508,41.465260469],[-71.433144509,41.465214469],[-71.433130509,41.465142469],[-71.433060509,41.464775469],[-71.432983508,41.464417469],[-71.432961509,41.464272469],[-71.432861509,41.463726469],[-71.432816509,41.463433469],[-71.432808508,41.463406469],[-71.432808508,41.463387469],[-71.432800509,41.463372469],[-71.432800509,41.463337469],[-71.432785509,41.463238469],[-71.432785509,41.462979469],[-71.432816509,41.462773468],[-71.429847507,41.462701469],[-71.429827955,41.462697395],[-71.429823769,41.462696588],[-71.429805966,41.462704509],[-71.429799508,41.462707469],[-71.429799318,41.462707467],[-71.42979913,41.46270755],[-71.429818349,41.46276014],[-71.429876952,41.462802532],[-71.429893426,41.4628344],[-71.429879514,41.462851338],[-71.429836209,41.462860734],[-71.429761716,41.462836744],[-71.429741107,41.462832957],[-71.429746829,41.462855145],[-71.429766011,41.462913613],[-71.429752961,41.462948299],[-71.429734363,41.462940077],[-71.429697169,41.462921461],[-71.429666529,41.462944221],[-71.42966104,41.463015161],[-71.429668356,41.463081694],[-71.429693366,41.463149817],[-71.429717337,41.463221621],[-71.429711882,41.463290319],[-71.429697685,41.463344947],[-71.429707186,41.463387125],[-71.429753161,41.463411007],[-71.429820678,41.463448281],[-71.429887226,41.463481826],[-71.429967729,41.463487364],[-71.429966301,41.463543532],[-71.429912348,41.463529983],[-71.429852525,41.463519358],[-71.429786385,41.463558974],[-71.429772262,41.463601778],[-71.429803591,41.463617464],[-71.429874206,41.463629605],[-71.42988593,41.463640773],[-71.429902657,41.463636415],[-71.429983986,41.463665578],[-71.430034675,41.463716838],[-71.430058753,41.463775331],[-71.430059193,41.463846252],[-71.430064636,41.463902447],[-71.430040689,41.463948173],[-71.429953291,41.463935975],[-71.429901241,41.463934251],[-71.42982244,41.463956822],[-71.429790759,41.463985482],[-71.429819068,41.46401077],[-71.42988756,41.464046558],[-71.429972984,41.464057291],[-71.430043806,41.464046516],[-71.430078087,41.464060694],[-71.430113958,41.464122968],[-71.430148931,41.464171176],[-71.430189803,41.464220166],[-71.430212001,41.464274176],[-71.430223141,41.46434739],[-71.430220599,41.464421305],[-71.430215219,41.464476716],[-71.430195017,41.464546114],[-71.430172979,41.464598519],[-71.430169538,41.464659832],[-71.430176335,41.464672414],[-71.430201875,41.46467179],[-71.430253303,41.4646299],[-71.430317391,41.464605788],[-71.430373013,41.46465115],[-71.430403054,41.464706011],[-71.430466552,41.464750646],[-71.430491045,41.464762553],[-71.430502191,41.464773858],[-71.430546594,41.464818984],[-71.430587499,41.46486571],[-71.43061651,41.46491762],[-71.430639645,41.464977599],[-71.430656748,41.465048598],[-71.430657262,41.465107764],[-71.430577628,41.465112564],[-71.430498857,41.46513438],[-71.430468213,41.465159359],[-71.430513007,41.465208328],[-71.430519496,41.465253477],[-71.430545762,41.465285374],[-71.430610298,41.465326305],[-71.430689793,41.465338474],[-71.430722787,41.465391118],[-71.430717439,41.465445065],[-71.430729929,41.465479126],[-71.430798666,41.465486829],[-71.430863168,41.465531465],[-71.430907959,41.465584139],[-71.430948765,41.46563832],[-71.430993491,41.465695407],[-71.431009761,41.465749413],[-71.431005347,41.465811503],[-71.431021322,41.465857001],[-71.431011246,41.465954834],[-71.430980534,41.466014964],[-71.430943318,41.466072963],[-71.430906166,41.466126754],[-71.430864234,41.466187495],[-71.430861425,41.466256309],[-71.430850258,41.466320842],[-71.430852165,41.466386137],[-71.43089525,41.466442675],[-71.430934692,41.466493562],[-71.430932827,41.466560936],[-71.430915286,41.466615539],[-71.430929326,41.466679561],[-71.430957384,41.466742997],[-71.430978803,41.466816194],[-71.430988026,41.466892105],[-71.430968239,41.466972002],[-71.430949692,41.467028708],[-71.430939533,41.467089743],[-71.430936757,41.467155058],[-71.430927511,41.467215361],[-71.430901448,41.467277643],[-71.430869694,41.467344817],[-71.430838881,41.467414072],[-71.43081464,41.467478482],[-71.430807179,41.467545853],[-71.430807994,41.467551548],[-71.430816536,41.467611244],[-71.430830706,41.467667536],[-71.43084367,41.467742764],[-71.430838165,41.467801719],[-71.430820623,41.467856346],[-71.430785985,41.467862408],[-71.430739422,41.467787595],[-71.430672876,41.467804639],[-71.430678458,41.467873481],[-71.430699131,41.467933322],[-71.430651834,41.467977204],[-71.43068009,41.468025889],[-71.430711305,41.468065473],[-71.430662088,41.46811283],[-71.430652523,41.468129588],[-71.430669473,41.468144852],[-71.430679254,41.468153686],[-71.430752076,41.468154256],[-71.430774192,41.468172703],[-71.430753205,41.468207636],[-71.4306731,41.468193682],[-71.430589352,41.468174078],[-71.43052479,41.468184079],[-71.430501722,41.468231658],[-71.430536482,41.468282496],[-71.430609038,41.468304152],[-71.430689145,41.468316687],[-71.430694342,41.468346902],[-71.430673459,41.468369919],[-71.430633706,41.46841033],[-71.430576065,41.468459031],[-71.43054727,41.468516395],[-71.430532495,41.468571068],[-71.430527996,41.468627212],[-71.430527073,41.468693923],[-71.430523486,41.468750044],[-71.430518757,41.468822357],[-71.430517966,41.468879943],[-71.430517144,41.468938193],[-71.430514497,41.468995778],[-71.430511624,41.469067383],[-71.430510737,41.469129177],[-71.430511248,41.469162842],[-71.430496551,41.469144492],[-71.430444942,41.469096342],[-71.430393202,41.469056608],[-71.430347539,41.469049925],[-71.430306843,41.469089672],[-71.430292977,41.469147113],[-71.430291175,41.469211697],[-71.430298776,41.469269334],[-71.430325924,41.469330642],[-71.430358512,41.469337935],[-71.430375527,41.469321227],[-71.430389378,41.46933466],[-71.430419621,41.469373512],[-71.430495078,41.46938465],[-71.430501637,41.469449993],[-71.430503642,41.469508313],[-71.430520842,41.469547089],[-71.430468925,41.469587377],[-71.430444847,41.469640581],[-71.430460903,41.469696142],[-71.430496192,41.469708354],[-71.430523648,41.469681178],[-71.430545541,41.46965258],[-71.430556499,41.469669534],[-71.430594837,41.469731603],[-71.430628685,41.46978315],[-71.430651214,41.469842306],[-71.430668018,41.469909851],[-71.430687521,41.469984442],[-71.430711707,41.470058373],[-71.430724803,41.470123789],[-71.430694253,41.470172667],[-71.430663603,41.470229321],[-71.430668178,41.470302394],[-71.430678312,41.470379724],[-71.430688511,41.470453554],[-71.430672629,41.470519433],[-71.430621323,41.470585749],[-71.430587548,41.470664127],[-71.430577422,41.470721639],[-71.430571069,41.470776341],[-71.430543899,41.470849165],[-71.430496303,41.470914111],[-71.430453685,41.470958682],[-71.430403621,41.471000435],[-71.430347994,41.471040035],[-71.430289538,41.471081006],[-71.430231991,41.471124081],[-71.430176366,41.471161577],[-71.430121715,41.471199074],[-71.430041593,41.471253913],[-71.429981285,41.47129207],[-71.4299172,41.471335118],[-71.429850348,41.471378827],[-71.429782524,41.471421142],[-71.429713854,41.471459201],[-71.429641411,41.471498676],[-71.429562366,41.471541578],[-71.429477658,41.471590765],[-71.4293882,41.471645576],[-71.429298711,41.471701004],[-71.429207366,41.471757871],[-71.429113255,41.471813319],[-71.429020091,41.471864559],[-71.428925979,41.471920007],[-71.428832782,41.471973351],[-71.428734087,41.472021706],[-71.428627911,41.472070056],[-71.428519913,41.472115546],[-71.42841182,41.472165244],[-71.428303754,41.472217069],[-71.428186388,41.472264634],[-71.428063395,41.472313522],[-71.427940403,41.472361701],[-71.427818384,41.472409171],[-71.427698187,41.472459502],[-71.427580822,41.472505625],[-71.427467328,41.472543358],[-71.427355689,41.472580406],[-71.427243138,41.47261743],[-71.427130589,41.47265235],[-71.427015272,41.472688686],[-71.426898005,41.472727788],[-71.426777971,41.472766156],[-71.426655141,41.472803814],[-71.426533289,41.472837286],[-71.426415276,41.472863008],[-71.426300223,41.472879675],[-71.42618052,41.472894167],[-71.426047712,41.472908558],[-71.42590924,41.472929235],[-71.4257735,41.472954168],[-71.425643416,41.472979104],[-71.425520818,41.47299851],[-71.425404857,41.473010944],[-71.425287953,41.473024087],[-71.425166363,41.473039972],[-71.4250383,41.47305233],[-71.424914958,41.473057669],[-71.42480105,41.473056749],[-71.42470308,41.4730525],[-71.424615455,41.473041945],[-71.424529784,41.473025834],[-71.424437639,41.473006151],[-71.424336129,41.472987079],[-71.424230878,41.472967959],[-71.424125692,41.472945385],[-71.424018652,41.472922079],[-71.423906797,41.472907848],[-71.423789346,41.472894254],[-71.423672872,41.472877916],[-71.423560139,41.472860186],[-71.423453035,41.472840378],[-71.423345049,41.47281986],[-71.423236124,41.472797215],[-71.423130908,41.47277464],[-71.423025724,41.472751311],[-71.42292054,41.472727296],[-71.422816364,41.472699782],[-71.422718792,41.472668155],[-71.422631535,41.472630956],[-71.422556408,41.47259596],[-71.422488599,41.472570117],[-71.422401274,41.47253852],[-71.422334674,41.472493055],[-71.422280371,41.472437833],[-71.422213058,41.472378348],[-71.422157679,41.472332936],[-71.422108937,41.47227989],[-71.422071419,41.47222484],[-71.422047886,41.472171971],[-71.422017916,41.472111345],[-71.421967389,41.472051277],[-71.421908238,41.47200728],[-71.421836952,41.471965265],[-71.421778675,41.47192829],[-71.421747695,41.471872581],[-71.421748693,41.471801638],[-71.42174312,41.471732773],[-71.421711462,41.471660207],[-71.421677918,41.471587618],[-71.421651956,41.471507349],[-71.421626704,41.47144325],[-71.421598653,41.471379835],[-71.42157047,41.471325545],[-71.421551722,41.471264286],[-71.421557239,41.471202517],[-71.421577751,41.471137375],[-71.421580703,41.471059481],[-71.421563062,41.470987726],[-71.42152753,41.470926341],[-71.421498536,41.470863588],[-71.421485651,41.470782025],[-71.421475327,41.470719468],[-71.421464126,41.470652657],[-71.421451008,41.470587949],[-71.421440617,41.470530309],[-71.421433968,41.47047194],[-71.421417075,41.470410728],[-71.421397415,41.470348759],[-71.421380522,41.470287525],[-71.421364538,41.470229126],[-71.42134569,41.470174934],[-71.421323438,41.4700954],[-71.421312102,41.470039818],[-71.421304511,41.469980762],[-71.421292299,41.469920971],[-71.421272507,41.469868859],[-71.421232194,41.469813052],[-71.421190937,41.469758661],[-71.421171114,41.469706572],[-71.421164532,41.469643309],[-71.421154143,41.469584938],[-71.421107902,41.469553665],[-71.421050182,41.469610092],[-71.420998804,41.469677821],[-71.420923395,41.469728472],[-71.420851281,41.469744729],[-71.42081636,41.469706557],[-71.420813487,41.469644029],[-71.420790021,41.469586997],[-71.420766635,41.469590297],[-71.420737699,41.469655366],[-71.420723724,41.469720559],[-71.420706886,41.469789272],[-71.42068169,41.469855075],[-71.420649956,41.469921513],[-71.420619132,41.469989393],[-71.420601383,41.470057351],[-71.420579961,41.47011968],[-71.420542799,41.470173468],[-71.420494584,41.470214532],[-71.420419239,41.470261661],[-71.420355083,41.470309644],[-71.420286377,41.470347698],[-71.420212274,41.470373787],[-71.42013925,41.470387275],[-71.420106397,41.470398207],[-71.42006212,41.470426695],[-71.420030146,41.470440281],[-71.420008576,41.470449437],[-71.419954592,41.470507969],[-71.419948003,41.470574631],[-71.419943395,41.470637795],[-71.4199035,41.470688059],[-71.419831017,41.470731027],[-71.419765918,41.470778254],[-71.419723869,41.470848825],[-71.419690381,41.470906159],[-71.419651197,41.470971152],[-71.419595232,41.471033205],[-71.419526391,41.471081115],[-71.419454819,41.471124793],[-71.419390827,41.471162186],[-71.41933041,41.471208776],[-71.419300485,41.471212026],[-71.419256067,41.471182172],[-71.419219578,41.471255628],[-71.419199231,41.471308123],[-71.419148925,41.471366727],[-71.419092118,41.471421049],[-71.41907541,41.471481346],[-71.419068814,41.471552924],[-71.419054705,41.471625801],[-71.41902934,41.471703565],[-71.418993696,41.471781915],[-71.418946019,41.471853168],[-71.41889386,41.471909666],[-71.418842028,41.471947822],[-71.418757681,41.471968918],[-71.418674543,41.471971786],[-71.41861142,41.471945304],[-71.418555175,41.471961708],[-71.418523505,41.472023252],[-71.41852924,41.472080911],[-71.418529349,41.47213987],[-71.418519147,41.47220088],[-71.41850143,41.472264653],[-71.418475454,41.472319225],[-71.418424303,41.472372156],[-71.41840109,41.472430275],[-71.418400089,41.472500508],[-71.418390828,41.472562914],[-71.4183295,41.472607376],[-71.418269215,41.472644108],[-71.418213514,41.472687911],[-71.418202466,41.472744003],[-71.418173561,41.472806258],[-71.418183004,41.472865315],[-71.418232141,41.472891696],[-71.418300619,41.472868349],[-71.418340278,41.472838486],[-71.418369872,41.472857695],[-71.418381202,41.472915381],[-71.418370123,41.472972846],[-71.418314486,41.473013126],[-71.418311799,41.473070002],[-71.418349417,41.473116661],[-71.418406236,41.473127633],[-71.418420399,41.473181845],[-71.418405647,41.473233681],[-71.418333658,41.473243602],[-71.418296593,41.473289659],[-71.418294815,41.473349348],[-71.418293949,41.473409725],[-71.418295976,41.473466627],[-71.418308019,41.47353767],[-71.418303646,41.473581852],[-71.418270585,41.473611788],[-71.418215893,41.473649965],[-71.418242284,41.473700733],[-71.418284455,41.473753752],[-71.418265996,41.473803459],[-71.418273719,41.473851995],[-71.418349511,41.473841345],[-71.418400396,41.473808037],[-71.418440642,41.473868031],[-71.418469699,41.473927262],[-71.418486659,41.473982871],[-71.418510023,41.47404697],[-71.41848206,41.474109934],[-71.418455947,41.474175736],[-71.418450396,41.474237481],[-71.418419292,41.474259002],[-71.41837548,41.474253071],[-71.418329948,41.474237235],[-71.418269626,41.474278199],[-71.418256594,41.474340579],[-71.418235433,41.474386075],[-71.418182596,41.474423567],[-71.418162247,41.474476063],[-71.41812963,41.474539687],[-71.418131593,41.474598693],[-71.418122464,41.474651997],[-71.41812062,41.474715894],[-71.418139735,41.474749756],[-71.418135223,41.474806585],[-71.418113864,41.474864728],[-71.418084212,41.474915753],[-71.418038755,41.474960317],[-71.417995961,41.47501474],[-71.417975478,41.47507707],[-71.417921662,41.475118792],[-71.417849164,41.475097151],[-71.417800067,41.475133982],[-71.417772168,41.475193447],[-71.417763819,41.475254505],[-71.417766722,41.475315593],[-71.417799214,41.475327806],[-71.417845889,41.475330286],[-71.417879626,41.475320019],[-71.417896299,41.475264685],[-71.41796913,41.475264531],[-71.417965231,41.47534176],[-71.417949199,41.475419553],[-71.417945633,41.475474301],[-71.417944561,41.475552242],[-71.417943727,41.475610537],[-71.41796203,41.475637354],[-71.418023438,41.475652606],[-71.418040898,41.475673087],[-71.417975049,41.47570698],[-71.417971148,41.47578629],[-71.417975876,41.475847425],[-71.417996609,41.47590027],[-71.418024648,41.475899055],[-71.41807517,41.475889668],[-71.418144669,41.475927408],[-71.418151315,41.475987149],[-71.418132787,41.476041773],[-71.418093765,41.476095535],[-71.41808646,41.476149572],[-71.4180772,41.476209874],[-71.418054928,41.476268016],[-71.418022211,41.476337267],[-71.417970889,41.476401426],[-71.417904639,41.476464134],[-71.417861678,41.476529787],[-71.417844834,41.476599185],[-71.417829811,41.476672107],[-71.417817552,41.476747821],[-71.417798856,41.476815114],[-71.417769171,41.476866825],[-71.41775064,41.476924239],[-71.417706766,41.476989936],[-71.417727433,41.477047675],[-71.417742305,41.477118697],[-71.417732134,41.477177626],[-71.417718287,41.477233716],[-71.417692142,41.477300181],[-71.417650288,41.477355313],[-71.417615885,41.47741052],[-71.417611243,41.477474393],[-71.417604743,41.477540368],[-71.417610514,41.477593774],[-71.417671856,41.477613944],[-71.41771298,41.477678855],[-71.417725055,41.477749144],[-71.417719402,41.477819328],[-71.417714858,41.477877575],[-71.417711224,41.477937263],[-71.417710356,41.477998371],[-71.417711174,41.478072791],[-71.417718531,41.478147261],[-71.417711088,41.478213213],[-71.417686762,41.478283246],[-71.417667124,41.47834983],[-71.417663455,41.478412972],[-71.417680415,41.478468604],[-71.417698256,41.478524945],[-71.41769927,41.478588822],[-71.417689065,41.478650518],[-71.417678759,41.478719967],[-71.417687164,41.478782523],[-71.417716056,41.478853692],[-71.417742115,41.478928336],[-71.417742191,41.478988027],[-71.417736672,41.479047691],[-71.417724646,41.479107236],[-71.41771262,41.479165432],[-71.417711652,41.479233561],[-71.417714655,41.479287651],[-71.41775403,41.479342064],[-71.417782888,41.479416001],[-71.417782021,41.479476423],[-71.417781118,41.479541007],[-71.417779305,41.479604173],[-71.417785007,41.479664622],[-71.417804764,41.479720943],[-71.417827223,41.47978081],[-71.417846843,41.479849091],[-71.417866371,41.479918058],[-71.4178803,41.479990497],[-71.417889509,41.480067096],[-71.417893023,41.480149979],[-71.417900249,41.480232225],[-71.417908481,41.480311636],[-71.417918601,41.480389653],[-71.41793152,41.480467008],[-71.417942552,41.480545026],[-71.41795085,41.480620938],[-71.417960094,41.480694037],[-71.417969339,41.480766473],[-71.417968336,41.480838078],[-71.417955268,41.480903272],[-71.417931106,41.480963494],[-71.41791069,41.481019488],[-71.417909755,41.481085491],[-71.417918122,41.481155067],[-71.417931206,41.481221903],[-71.41794898,41.481283848],[-71.4179593,41.481347845],[-71.417962108,41.481411746],[-71.417970642,41.481469408],[-71.417949079,41.481542942],[-71.41793692,41.481610263],[-71.417957553,41.481672233],[-71.417977114,41.481739782],[-71.417978098,41.481803041],[-71.417963308,41.481859085],[-71.417959473,41.481934188],[-71.41792591,41.481996393],[-71.417960842,41.482102009],[-71.418012419,41.482152977],[-71.418085089,41.482165493],[-71.418162111,41.482199808],[-71.418213885,41.482238175],[-71.418265531,41.482282122],[-71.418312423,41.48233375],[-71.418349945,41.482388116],[-71.418391951,41.482455864],[-71.418422023,41.482509492],[-71.418477574,41.482543585],[-71.418550988,41.482569458],[-71.418641698,41.482627063],[-71.418698094,41.482666828],[-71.418769454,41.482706009],[-71.418827804,41.482740195],[-71.41889084,41.482772281],[-71.418961492,41.482794629],[-71.419062103,41.482814391],[-71.419154292,41.48283266],[-71.419258517,41.482856678],[-71.419332975,41.482874843],[-71.419408346,41.482892986],[-71.419479062,41.482912521],[-71.419552612,41.482927827],[-71.419632765,41.482939684],[-71.419718548,41.482949532],[-71.419802445,41.482959288],[-71.419877883,41.482972559],[-71.419952407,41.482986493],[-71.420014707,41.482999572],[-71.420028754,41.48300251],[-71.420101326,41.483022045],[-71.420187688,41.483055038],[-71.420259117,41.483089324],[-71.420325893,41.483122852],[-71.420384076,41.483169662],[-71.420428074,41.483227599],[-71.420460911,41.483284065],[-71.420479662,41.483345278],[-71.420485335,41.483407123],[-71.420477086,41.483462531],[-71.420540965,41.483502346],[-71.420594533,41.483544212],[-71.420633878,41.483601415],[-71.420674876,41.483675473],[-71.420704951,41.483728392],[-71.420734081,41.483783392],[-71.420754754,41.483839735],[-71.420767941,41.483899504],[-71.420771697,41.483962033],[-71.420770832,41.484023095],[-71.420764369,41.484085572],[-71.420749483,41.484147242],[-71.420731829,41.484208201],[-71.420712388,41.48426422],[-71.420688296,41.484317422],[-71.420658544,41.484374073],[-71.420633475,41.484430705],[-71.420614914,41.484487455],[-71.420585936,41.484557463],[-71.420564608,41.484613457],[-71.420555849,41.484637968],[-71.420510419,41.484681847],[-71.420431036,41.484684034],[-71.420160337,41.484674195],[-71.420081933,41.484672151],[-71.420012655,41.484668809],[-71.419994195,41.484667927],[-71.419922363,41.484663143],[-71.419845882,41.484656229],[-71.419761917,41.484650636],[-71.419704786,41.484662145],[-71.419708258,41.484682525],[-71.41978464,41.48469646],[-71.420012601,41.484712514],[-71.420323858,41.484734434],[-71.42040971,41.484739364],[-71.42049543,41.484751979],[-71.420564841,41.484796052],[-71.420601521,41.484845499],[-71.42063143,41.484909648],[-71.420638046,41.48497147],[-71.420636272,41.485029742],[-71.420621447,41.485090703],[-71.420582757,41.485118509],[-71.420538094,41.485106197],[-71.42053877,41.485125179],[-71.420578384,41.485162714],[-71.420620793,41.4852024],[-71.420610623,41.485261969],[-71.420589874,41.485342572],[-71.420576906,41.48540143],[-71.420564847,41.485463857],[-71.420556566,41.485520683],[-71.420541578,41.485590061],[-71.420523014,41.485649624],[-71.420482233,41.485695633],[-71.420441178,41.485691809],[-71.4203744,41.485658281],[-71.42031315,41.485629696],[-71.420252575,41.485622199],[-71.420271659,41.485659559],[-71.420327148,41.48569795],[-71.420399621,41.485726611],[-71.420470109,41.48576085],[-71.420491693,41.485818589],[-71.42049066,41.485893008],[-71.420484975,41.485965296],[-71.420473762,41.486031954],[-71.420453311,41.48609218],[-71.420432924,41.486148906],[-71.420448002,41.4862052],[-71.420460214,41.486267072],[-71.420442328,41.486343491],[-71.420405056,41.486404962],[-71.420393976,41.486461787],[-71.420416535,41.486518817],[-71.420442703,41.486583626],[-71.420468805,41.486653398],[-71.420491332,41.486711137],[-71.420504488,41.486772347],[-71.420503588,41.486836908],[-71.420502556,41.486909245],[-71.420499635,41.486985057],[-71.420487344,41.487062921],[-71.420472288,41.487137925],[-71.420453527,41.487208717],[-71.420426335,41.487283644],[-71.420399044,41.487365568],[-71.420379202,41.48744967],[-71.420361217,41.487532401],[-71.420340497,41.487612981],[-71.420317927,41.487688642],[-71.420293533,41.487764302],[-71.420269072,41.487844148],[-71.4202464,41.487928934],[-71.42022656,41.488010955],[-71.42020955,41.488092269],[-71.420202687,41.48818212],[-71.420201452,41.488271976],[-71.420200186,41.488361877],[-71.420198951,41.488451024],[-71.420197819,41.488530382],[-71.420198707,41.48859993],[-71.420208022,41.488668066],[-71.420228493,41.488741265],[-71.42025544,41.488816617],[-71.420284275,41.488890576],[-71.420305623,41.488968006],[-71.420316593,41.489050277],[-71.420321931,41.489137369],[-71.420328994,41.48923153],[-71.420337975,41.489324274],[-71.420347933,41.489413566],[-71.420358024,41.489493709],[-71.420373713,41.489572484],[-71.420394051,41.489655517],[-71.420413381,41.489742024],[-71.420430857,41.489827799],[-71.420447487,41.489908016],[-71.420465974,41.489987502],[-71.420485404,41.490067034],[-71.420495498,41.490145737],[-71.420507509,41.490223092],[-71.420515038,41.490284205],[-71.420514271,41.490338979],[-71.420512493,41.490400086],[-71.420497536,41.490468777],[-71.42047712,41.490524109],[-71.420449283,41.490578634],[-71.420414908,41.49063176],[-71.420375846,41.490687605],[-71.420334899,41.490742739],[-71.420286531,41.490796427],[-71.420231627,41.490847984],[-71.4201749,41.490898098],[-71.420117228,41.490948898],[-71.420055848,41.490998255],[-71.420004824,41.491035269],[-71.419987897,41.491047584],[-71.419921865,41.491095496],[-71.419862377,41.491139297],[-71.419808512,41.491185891],[-71.419763889,41.491236792],[-71.419720274,41.491283507],[-71.419670221,41.491322466],[-71.419597648,41.491370351],[-71.419541999,41.491408505],[-71.419500207,41.491457326],[-71.419464884,41.491513904],[-71.419457479,41.491574276],[-71.419412718,41.491637091],[-71.419365197,41.491694325],[-71.419342885,41.491732205],[-71.419318769,41.491777127],[-71.419315199,41.491786387],[-71.419295357,41.491843525],[-71.419288804,41.4919036],[-71.419308052,41.491957473],[-71.419357978,41.491997278],[-71.419415438,41.492044271],[-71.419469066,41.492091238],[-71.419537055,41.492134761],[-71.419595527,41.492176037],[-71.419639743,41.492209412],[-71.419651169,41.492218019],[-71.419712538,41.492252893],[-71.419778744,41.492287793],[-71.419839132,41.492328384],[-71.419903386,41.492367559],[-71.419973361,41.492404634],[-71.420003119,41.492421693],[-71.420040445,41.492443103],[-71.420105608,41.492485183],[-71.420160345,41.492521424],[-71.420214108,41.492557642],[-71.420277525,41.492585358],[-71.420336938,41.49262883],[-71.420394432,41.492673649],[-71.420412906,41.492714622],[-71.42037211,41.492770145],[-71.420331409,41.492821414],[-71.420331784,41.492862969],[-71.420372524,41.492879052],[-71.420448955,41.492860992],[-71.420509466,41.492827095],[-71.420559617,41.492783128],[-71.420615488,41.492738432],[-71.420686675,41.492754742]]]]}}"}, +{"type": "precinct", "typeId": 2004, "areaId": 25817, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":156,\"NAME\":\"2004\",\"SHAPE_Length\":0.20937865345032,\"SHAPE_Area\":-0.00095009397540789},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.503483725,41.407070265],[-71.503476288,41.407130171],[-71.503488088,41.407063583],[-71.503483725,41.407070265]]],[[[-71.504203528,41.407068456],[-71.504223808,41.407154645],[-71.504217283,41.407123391],[-71.50420367,41.407068434],[-71.504201926,41.407063917],[-71.504203528,41.407068456]]],[[[-71.504243529,41.407238455],[-71.504248933,41.407272844],[-71.50424381,41.407238382],[-71.504239261,41.407220317],[-71.504243529,41.407238455]]],[[[-71.503512199,41.407258464],[-71.503518785,41.407287654],[-71.503512529,41.407258456],[-71.503501577,41.407230815],[-71.503512199,41.407258464]]],[[[-71.503694169,41.407421638],[-71.503731841,41.407425283],[-71.503694529,41.407421456],[-71.50365263,41.40741389],[-71.503694169,41.407421638]]],[[[-71.503856751,41.407433777],[-71.503940491,41.407435247],[-71.503784391,41.407429864],[-71.503856751,41.407433777]]],[[[-71.504039351,41.40744548],[-71.504059317,41.407448677],[-71.504039529,41.407445456],[-71.504010317,41.407442315],[-71.504039351,41.40744548]]],[[[-71.504205883,41.407484756],[-71.504205529,41.407484456],[-71.504167918,41.407472703],[-71.504205883,41.407484756]]],[[[-71.504379529,41.407485455],[-71.504410764,41.407507044],[-71.504379492,41.407485194],[-71.504360654,41.407468783],[-71.504379529,41.407485455]]],[[[-71.504515393,41.407593334],[-71.504507661,41.407566996],[-71.504448241,41.407533094],[-71.504515393,41.407593334]]],[[[-71.504289034,41.407584866],[-71.504357856,41.407614289],[-71.504289529,41.407584455],[-71.504257529,41.407528455],[-71.504257302,41.407528263],[-71.504289034,41.407584866]]],[[[-71.504360584,41.407615455],[-71.504360819,41.407615555],[-71.504438039,41.407614523],[-71.504438274,41.407614459],[-71.504360584,41.407615455]]],[[[-71.466942518,41.433785462],[-71.466971518,41.433792462],[-71.467270518,41.433869462],[-71.467613519,41.433922462],[-71.467699518,41.433928462],[-71.467772519,41.434122462],[-71.468142519,41.434722462],[-71.468522519,41.435155462],[-71.468586519,41.435204462],[-71.468920519,41.435387462],[-71.470180519,41.436065462],[-71.470369519,41.436106462],[-71.47073152,41.436240462],[-71.47114652,41.436388462],[-71.47134052,41.436441463],[-71.47161952,41.436520463],[-71.47162752,41.436538463],[-71.47172552,41.436707462],[-71.47182552,41.436867463],[-71.47195452,41.437012462],[-71.47208452,41.437104463],[-71.47239752,41.437218463],[-71.47261852,41.437313462],[-71.47267252,41.437333462],[-71.47293152,41.437470463],[-71.473190521,41.437626463],[-71.47345052,41.437798462],[-71.47393852,41.438095463],[-71.474022521,41.438160463],[-71.474365521,41.438389463],[-71.474648521,41.438572462],[-71.474815521,41.438687463],[-71.474892521,41.438748462],[-71.475021521,41.438839463],[-71.475052521,41.438870463],[-71.475075521,41.438885462],[-71.475691522,41.438653462],[-71.476335521,41.438371463],[-71.477510522,41.437854462],[-71.478309522,41.437528462],[-71.482040523,41.436005462],[-71.482338524,41.435883462],[-71.482628524,41.435765462],[-71.482811523,41.435688462],[-71.483257524,41.435500462],[-71.483360523,41.435467462],[-71.483535523,41.435370462],[-71.483872524,41.435174462],[-71.483880524,41.435092462],[-71.483930524,41.434980462],[-71.483936524,41.434870461],[-71.483970524,41.434748461],[-71.484009524,41.434639461],[-71.484034524,41.434521461],[-71.484073524,41.434394462],[-71.484128524,41.434283461],[-71.484215523,41.434177462],[-71.484335524,41.434109461],[-71.484467523,41.434043462],[-71.484606524,41.433989461],[-71.485012524,41.433791462],[-71.485146524,41.433733462],[-71.485315524,41.433709462],[-71.485576525,41.433715461],[-71.485655525,41.433749462],[-71.485731525,41.433637461],[-71.485829525,41.433551461],[-71.485936524,41.433468461],[-71.486042525,41.433361462],[-71.486121525,41.433252461],[-71.486210524,41.433196461],[-71.486374525,41.433171461],[-71.486594524,41.433179461],[-71.486735524,41.433192461],[-71.486890524,41.433228461],[-71.487044524,41.433271461],[-71.487139524,41.433293461],[-71.487290525,41.433315461],[-71.487466525,41.433280461],[-71.487599525,41.433192461],[-71.487813525,41.432229461],[-71.489500525,41.432109461],[-71.489610526,41.432021461],[-71.489991525,41.431722461],[-71.491373526,41.430253461],[-71.491536526,41.43007746],[-71.491601526,41.430008461],[-71.491614526,41.429988461],[-71.491758526,41.429773461],[-71.491899526,41.429559461],[-71.492000526,41.42940846],[-71.492192303,41.429082535],[-71.492182476,41.429078579],[-71.492087705,41.429012203],[-71.492028613,41.42891731],[-71.491997601,41.428800692],[-71.492017853,41.428692426],[-71.492142605,41.428593955],[-71.492226031,41.428492188],[-71.492298124,41.428369448],[-71.492398263,41.428261645],[-71.492469685,41.428164496],[-71.492529495,41.428089326],[-71.492672287,41.428074149],[-71.492756859,41.428035938],[-71.49285806,41.427923331],[-71.492915658,41.427792083],[-71.492962347,41.42765587],[-71.492997426,41.427542276],[-71.492980907,41.427434853],[-71.492912944,41.427326009],[-71.49281769,41.427243716],[-71.492729,41.427156003],[-71.492724699,41.427037009],[-71.492770831,41.426993421],[-71.492891528,41.426979981],[-71.492959988,41.426997572],[-71.493011575,41.427085512],[-71.49302953,41.427116113],[-71.493059757,41.427191267],[-71.49317838,41.427258672],[-71.493293296,41.427326032],[-71.493421279,41.427386669],[-71.493547562,41.427441724],[-71.493620729,41.427491197],[-71.493703401,41.427597548],[-71.493766606,41.427604664],[-71.493889405,41.427545597],[-71.493986378,41.427455059],[-71.494055245,41.427349585],[-71.494107032,41.427264578],[-71.494092639,41.427145446],[-71.494020966,41.427039325],[-71.49389648,41.426948981],[-71.493780626,41.426846333],[-71.493703606,41.426732526],[-71.493679096,41.426614628],[-71.493683939,41.426497121],[-71.49374132,41.426372802],[-71.493825045,41.426262045],[-71.493805943,41.426147647],[-71.49370112,41.42604516],[-71.493607874,41.42595532],[-71.49356966,41.42583374],[-71.493577268,41.425715615],[-71.493646103,41.425611514],[-71.493734717,41.425522919],[-71.493749983,41.425393154],[-71.493735016,41.425260849],[-71.493652743,41.425138671],[-71.493583628,41.425004876],[-71.493535903,41.424895622],[-71.493450804,41.424774794],[-71.493357533,41.424650328],[-71.493285773,41.424546951],[-71.493218631,41.424443665],[-71.493160636,41.424341843],[-71.493140411,41.424234351],[-71.493136749,41.424091869],[-71.493136276,41.423966746],[-71.493125078,41.42383101],[-71.493122538,41.423715492],[-71.493125925,41.423584194],[-71.493129555,41.42344249],[-71.493161077,41.42332471],[-71.493236413,41.423217933],[-71.493239707,41.423089379],[-71.493184417,41.422989021],[-71.493109833,41.422888365],[-71.493012034,41.422798844],[-71.492856166,41.422749138],[-71.49270048,41.422696366],[-71.492646282,41.422624344],[-71.492647633,41.422500639],[-71.492650648,41.422435528],[-71.492653816,41.42236726],[-71.492702962,41.422242826],[-71.492748614,41.422111439],[-71.492780471,41.4219798],[-71.49281014,41.421861974],[-71.492852477,41.421749912],[-71.492793142,41.421701332],[-71.49275246,41.421675875],[-71.492819016,41.421552333],[-71.492889701,41.421446243],[-71.492931004,41.421341019],[-71.492970092,41.42121368],[-71.493012216,41.421098553],[-71.493053613,41.420968035],[-71.493048461,41.420846273],[-71.493047683,41.420733545],[-71.493127665,41.42062407],[-71.493231009,41.420535019],[-71.493326516,41.420427832],[-71.493389755,41.420326429],[-71.493423341,41.420199683],[-71.493426392,41.42008149],[-71.493425006,41.419957007],[-71.493439906,41.419841055],[-71.493502415,41.419732699],[-71.493595759,41.419675323],[-71.493597775,41.419561246],[-71.493600978,41.419437541],[-71.49358449,41.419328014],[-71.493486509,41.419280278],[-71.493416231,41.41929793],[-71.493333433,41.419338886],[-71.493220835,41.419324105],[-71.493152296,41.419274015],[-71.493143528,41.419150812],[-71.493139074,41.419038039],[-71.493119063,41.418922977],[-71.493118346,41.418808877],[-71.493064486,41.418723728],[-71.493012472,41.418709202],[-71.492928588,41.418685778],[-71.492801983,41.418679778],[-71.492694938,41.418734957],[-71.49261338,41.418834026],[-71.492525043,41.418946817],[-71.492461469,41.41906137],[-71.492382491,41.4191681],[-71.492267146,41.419259734],[-71.492148286,41.419273242],[-71.492047236,41.419237878],[-71.491943243,41.419173445],[-71.491818347,41.419101783],[-71.491704877,41.41901297],[-71.491625376,41.418924708],[-71.491625181,41.418789864],[-71.49163492,41.418661403],[-71.491669696,41.418523611],[-71.491691375,41.41839602],[-71.491694489,41.418274327],[-71.491699335,41.418158261],[-71.491757105,41.418054685],[-71.491839663,41.417988825],[-71.49196317,41.417971269],[-71.492078042,41.418005422],[-71.492134643,41.418018714],[-71.492280243,41.417965527],[-71.492396615,41.417905661],[-71.492362629,41.417798694],[-71.492363854,41.417715034],[-71.492480867,41.417628935],[-71.492615951,41.417591483],[-71.492762269,41.417617838],[-71.492883365,41.417695651],[-71.492970768,41.417760539],[-71.493012576,41.417740416],[-71.493018197,41.417737718],[-71.493066061,41.417627806],[-71.493103446,41.417494886],[-71.493120381,41.41737205],[-71.493123707,41.417243474],[-71.493111927,41.417165165],[-71.493012646,41.417089161],[-71.492986702,41.417069308],[-71.492858861,41.417005904],[-71.492722753,41.416975569],[-71.492559721,41.416991865],[-71.492417133,41.417037505],[-71.492292799,41.417120768],[-71.492226889,41.417218648],[-71.492130111,41.417302987],[-71.491987584,41.417343778],[-71.491913876,41.4173459],[-71.491828562,41.417348364],[-71.491683126,41.417324111],[-71.491661042,41.417290604],[-71.491692188,41.417258565],[-71.491850633,41.417241538],[-71.492004857,41.417208501],[-71.492041349,41.417182043],[-71.491991264,41.417059638],[-71.491963237,41.41693545],[-71.491956386,41.416808817],[-71.491927142,41.416695721],[-71.491909049,41.416577183],[-71.491863609,41.416487345],[-71.491766968,41.416459619],[-71.491768678,41.416392609],[-71.491833616,41.416296056],[-71.491907759,41.416200349],[-71.49199475,41.41613936],[-71.492067057,41.416148009],[-71.492134864,41.416190484],[-71.492303912,41.416153537],[-71.492434619,41.416108423],[-71.492545187,41.416022232],[-71.492642843,41.415940683],[-71.49276532,41.415856733],[-71.492755734,41.415729345],[-71.492740943,41.415683878],[-71.492719137,41.415616821],[-71.492721307,41.415497232],[-71.492708956,41.415369798],[-71.492711855,41.415257162],[-71.492754189,41.415147113],[-71.492770457,41.415014603],[-71.492773356,41.41490263],[-71.492776163,41.414792761],[-71.492813477,41.414735199],[-71.492941691,41.414679655],[-71.493012908,41.414640871],[-71.493077654,41.414605609],[-71.493104637,41.414556211],[-71.493068978,41.41447893],[-71.49301293,41.414433186],[-71.492963748,41.414393023],[-71.492822395,41.414316993],[-71.492714946,41.414244213],[-71.492656564,41.414157645],[-71.492632788,41.414046631],[-71.492622989,41.413926859],[-71.492625495,41.413794142],[-71.492613964,41.41367158],[-71.49250482,41.413558662],[-71.492427819,41.413445563],[-71.492323019,41.413341656],[-71.492209135,41.413234204],[-71.492103058,41.41314347],[-71.491976626,41.413060739],[-71.491855326,41.412991868],[-71.491794081,41.412979926],[-71.491763696,41.413018208],[-71.491750047,41.41308508],[-71.491680443,41.413112405],[-71.49163688,41.413092413],[-71.491619481,41.413024762],[-71.491603478,41.412962622],[-71.491548841,41.412838089],[-71.491492136,41.412721789],[-71.491489954,41.412683527],[-71.491485801,41.412610364],[-71.491488977,41.412486613],[-71.491492305,41.412358037],[-71.491483541,41.412234834],[-71.491441419,41.412122217],[-71.491436393,41.411996293],[-71.491423042,41.411872334],[-71.491349598,41.41176477],[-71.491271568,41.411655764],[-71.491204962,41.411532419],[-71.491129666,41.411424145],[-71.491043189,41.411322617],[-71.490959722,41.411210752],[-71.490910158,41.411102846],[-71.49089856,41.411053582],[-71.490835265,41.410943411],[-71.490791012,41.410878478],[-71.490805975,41.410761841],[-71.49086064,41.41067137],[-71.490976638,41.410589389],[-71.491034212,41.410551406],[-71.491092515,41.410512943],[-71.491220508,41.410463644],[-71.491379421,41.410463199],[-71.491522352,41.410477732],[-71.491684208,41.410506377],[-71.491835708,41.410507189],[-71.491930313,41.410471243],[-71.491972579,41.41039925],[-71.491996348,41.410296564],[-71.492137648,41.410231554],[-71.49226148,41.410164918],[-71.492268012,41.410161533],[-71.492396484,41.410166185],[-71.492520391,41.410241276],[-71.492567654,41.410293263],[-71.492578194,41.410311903],[-71.492594809,41.410326542],[-71.492608693,41.410324484],[-71.492614223,41.410307743],[-71.492639166,41.410293062],[-71.492669667,41.410288902],[-71.492697374,41.410280533],[-71.49270014,41.410261711],[-71.492711231,41.410242866],[-71.492738967,41.410236602],[-71.492772234,41.410221944],[-71.492788852,41.410215678],[-71.492811027,41.410228236],[-71.4928332,41.410261719],[-71.49285817,41.410274254],[-71.492924699,41.410282651],[-71.492991226,41.41030564],[-71.493013372,41.410313257],[-71.493021726,41.410316116],[-71.493035574,41.410353762],[-71.493057748,41.410383083],[-71.493082684,41.410429077],[-71.493091001,41.410491856],[-71.493068825,41.410489774],[-71.493060506,41.410447898],[-71.493035569,41.410403962],[-71.493013365,41.41037551],[-71.493007837,41.41036842],[-71.492974574,41.410347492],[-71.492930222,41.410337037],[-71.49288034,41.410330745],[-71.492819341,41.410314],[-71.492766664,41.410316101],[-71.492708456,41.410330734],[-71.492697365,41.410360053],[-71.492689037,41.41039557],[-71.492664125,41.410408147],[-71.492653008,41.410391383],[-71.492614182,41.410401855],[-71.492580945,41.41042486],[-71.492550657,41.410429112],[-71.492492834,41.410526467],[-71.49243331,41.41062723],[-71.492380833,41.410738514],[-71.492345518,41.410861051],[-71.492313665,41.410992644],[-71.492270815,41.411122728],[-71.492233951,41.411234882],[-71.492210331,41.411367299],[-71.492209537,41.411397717],[-71.492209232,41.411409472],[-71.492198069,41.411522679],[-71.492192527,41.411631176],[-71.492177383,41.411755429],[-71.492189344,41.411825413],[-71.492279874,41.411841269],[-71.492373089,41.411752744],[-71.492393109,41.411748926],[-71.492463561,41.411735391],[-71.492624147,41.411740502],[-71.492716434,41.411795785],[-71.492791097,41.411891594],[-71.49287257,41.411938414],[-71.493013197,41.411942219],[-71.493038716,41.411942907],[-71.493117402,41.411917777],[-71.493191874,41.411808256],[-71.493243951,41.411748178],[-71.493316742,41.411739538],[-71.493418478,41.411783203],[-71.493518176,41.411871076],[-71.49353688,41.411964709],[-71.493504914,41.412030619],[-71.493369141,41.412095014],[-71.493328854,41.41212488],[-71.49332474,41.412249958],[-71.493325244,41.412373046],[-71.493312479,41.412422743],[-71.493302784,41.412460524],[-71.493235846,41.412563253],[-71.493164867,41.412679773],[-71.493161555,41.412683638],[-71.493082496,41.412775389],[-71.493048737,41.412839218],[-71.493065131,41.412950072],[-71.493152249,41.413063354],[-71.493204854,41.413196188],[-71.493241996,41.413323944],[-71.493297792,41.413440242],[-71.493346298,41.413553636],[-71.493401153,41.413671307],[-71.493461023,41.413772443],[-71.49350005,41.413896105],[-71.493539199,41.414017],[-71.493616477,41.414119738],[-71.493683456,41.414229976],[-71.493764319,41.414336236],[-71.49388541,41.414414093],[-71.493945867,41.414419814],[-71.494055001,41.414355005],[-71.49412756,41.414247518],[-71.494170582,41.414218407],[-71.494220253,41.414234807],[-71.494229762,41.414237941],[-71.494325391,41.414342372],[-71.494411633,41.414453548],[-71.494487697,41.414566714],[-71.494472469,41.414658447],[-71.494376881,41.414769043],[-71.494299066,41.414865437],[-71.494195431,41.414930269],[-71.494153859,41.415047226],[-71.494201487,41.415159911],[-71.494310911,41.415263176],[-71.494459715,41.415297145],[-71.49451762,41.415320338],[-71.494583393,41.415346665],[-71.494674468,41.41544826],[-71.494682327,41.415571439],[-71.494617424,41.415666623],[-71.494519348,41.415729488],[-71.494348208,41.415741487],[-71.494192257,41.41576826],[-71.494038922,41.415766057],[-71.493882063,41.415758936],[-71.493722016,41.415730317],[-71.493650739,41.415752085],[-71.493620747,41.415811135],[-71.493623135,41.415932851],[-71.493594139,41.416059665],[-71.493570977,41.416174107],[-71.493636714,41.416262207],[-71.493781871,41.416332084],[-71.493928001,41.416400565],[-71.494009295,41.416488849],[-71.494022078,41.41656375],[-71.494116132,41.416657088],[-71.494516785,41.416579235],[-71.494620453,41.416512984],[-71.494780841,41.416491837],[-71.494945569,41.416514966],[-71.495102275,41.41656563],[-71.49525421,41.416623178],[-71.495353192,41.416660667],[-71.495406115,41.416680703],[-71.495546505,41.416758125],[-71.495687382,41.416816884],[-71.495836313,41.416847399],[-71.495888507,41.416877887],[-71.495896922,41.41688285],[-71.495893276,41.416892661],[-71.495879176,41.416930282],[-71.495928178,41.417006716],[-71.495940663,41.417039764],[-71.49589888,41.417164315],[-71.495831728,41.417276011],[-71.495736565,41.417369364],[-71.495640828,41.417412928],[-71.495528232,41.417397441],[-71.495397745,41.417327796],[-71.495253831,41.417245457],[-71.495115355,41.417163941],[-71.494990764,41.417079842],[-71.49487787,41.417004913],[-71.494761114,41.416974193],[-71.49466863,41.4169977],[-71.494552956,41.417101823],[-71.494448403,41.417202653],[-71.494331757,41.417309475],[-71.494217268,41.417403946],[-71.494098558,41.417483117],[-71.493973805,41.417517736],[-71.49398501,41.417576193],[-71.49397716,41.417703283],[-71.493944213,41.417841807],[-71.493911601,41.417966471],[-71.493892996,41.418083749],[-71.493881438,41.418211525],[-71.4938951,41.418322332],[-71.493943672,41.418434399],[-71.493954931,41.418567985],[-71.493967983,41.418703698],[-71.493987873,41.418822922],[-71.493988287,41.418950196],[-71.494011033,41.41906528],[-71.49404104,41.419184642],[-71.494073386,41.419320653],[-71.494101357,41.419446899],[-71.494138871,41.419559468],[-71.49421245,41.419663577],[-71.49431137,41.419747265],[-71.494445354,41.419822515],[-71.494581744,41.41984251],[-71.494729165,41.419824586],[-71.494867777,41.419792025],[-71.495013012,41.419752649],[-71.495147797,41.419691705],[-71.495280972,41.419621728],[-71.495407706,41.419550286],[-71.495520828,41.41947308],[-71.495653365,41.419392033],[-71.495772747,41.419287314],[-71.495870071,41.419180857],[-71.495982524,41.419093999],[-71.496098257,41.419023746],[-71.496223986,41.418957152],[-71.496335679,41.418863341],[-71.496385877,41.418768637],[-71.496321715,41.418654992],[-71.496324973,41.418529206],[-71.496299793,41.418400903],[-71.496281905,41.418273423],[-71.496303636,41.418143063],[-71.496362069,41.418014602],[-71.496396499,41.417889983],[-71.496441866,41.417768223],[-71.496450654,41.417641133],[-71.496454033,41.417509812],[-71.496464735,41.41737856],[-71.496515206,41.417274227],[-71.496572361,41.417158871],[-71.496626052,41.417035876],[-71.496681018,41.416934333],[-71.49678976,41.416848092],[-71.49693505,41.416770749],[-71.497046312,41.416694891],[-71.497139437,41.416609107],[-71.497228399,41.416507359],[-71.497299011,41.41640401],[-71.497346927,41.416290597],[-71.497361637,41.416182947],[-71.497387405,41.416074085],[-71.497430459,41.415970323],[-71.497525831,41.415870016],[-71.497607469,41.415802779],[-71.49777797,41.415779661],[-71.497939478,41.415786845],[-71.498078016,41.415828951],[-71.498212271,41.415895232],[-71.498288769,41.415991082],[-71.498392247,41.416039592],[-71.498397531,41.416155819],[-71.498371796,41.416228775],[-71.498266429,41.416324714],[-71.498144809,41.416412168],[-71.498038987,41.416491527],[-71.497944679,41.416586231],[-71.497895912,41.416696877],[-71.497883756,41.416812875],[-71.497908394,41.416854682],[-71.497964053,41.416870029],[-71.498113777,41.416834171],[-71.498233391,41.416824842],[-71.498399974,41.416885359],[-71.498558658,41.416929821],[-71.498734266,41.416959348],[-71.498908567,41.416967446],[-71.499047382,41.417000564],[-71.499196983,41.417040085],[-71.499363993,41.417083288],[-71.49950299,41.417142706],[-71.499656785,41.417162946],[-71.499806508,41.417163015],[-71.499948666,41.417207933],[-71.500066488,41.417271192],[-71.500163286,41.417363176],[-71.500253886,41.417413582],[-71.500364386,41.417402764],[-71.500428796,41.417362878],[-71.500422719,41.41724178],[-71.500372284,41.417130425],[-71.500295751,41.417033226],[-71.500196522,41.416927337],[-71.500161036,41.416841802],[-71.50014305,41.416719148],[-71.500041179,41.416609097],[-71.499959361,41.416504168],[-71.499950763,41.416373418],[-71.499995363,41.416246122],[-71.500062385,41.416139889],[-71.500145236,41.416024943],[-71.500251601,41.415924862],[-71.500375193,41.415833289],[-71.500489093,41.415761659],[-71.500604389,41.415671367],[-71.500736153,41.41558272],[-71.500886449,41.415525406],[-71.501035317,41.415486068],[-71.501176589,41.415457731],[-71.501317437,41.415445905],[-71.501472382,41.415457841],[-71.501580024,41.41548501],[-71.501703192,41.415553848],[-71.501820375,41.415641302],[-71.501886215,41.415761164],[-71.501921339,41.415860558],[-71.502009234,41.4159068],[-71.502083699,41.415904421],[-71.502183713,41.415837386],[-71.502216887,41.415760449],[-71.502173073,41.415642943],[-71.50210067,41.415528501],[-71.502008004,41.415417902],[-71.501897352,41.415326422],[-71.501773638,41.415242353],[-71.50163373,41.41518152],[-71.501476081,41.4151329],[-71.501344074,41.415086749],[-71.501232725,41.414986945],[-71.501166007,41.414902325],[-71.501162541,41.414786121],[-71.501165365,41.414676229],[-71.501130759,41.414556801],[-71.501006864,41.414481673],[-71.500867051,41.414417431],[-71.500707976,41.414352183],[-71.500576062,41.414301869],[-71.500425038,41.414246432],[-71.500257549,41.41422187],[-71.500112815,41.414242591],[-71.500012225,41.414333112],[-71.49992968,41.414436303],[-71.499854122,41.414516097],[-71.499860107,41.414606115],[-71.499927128,41.414643027],[-71.50000551,41.41463102],[-71.500113758,41.414564125],[-71.500254938,41.414574508],[-71.500315974,41.414666629],[-71.50031406,41.414776544],[-71.500312936,41.414892725],[-71.50034672,41.41493675],[-71.500484195,41.414985098],[-71.500528583,41.415045201],[-71.50050045,41.415103566],[-71.500373336,41.415188827],[-71.500239173,41.415262264],[-71.500098173,41.415316901],[-71.499947573,41.415351367],[-71.499769387,41.415350177],[-71.499599708,41.415339428],[-71.499441938,41.41529563],[-71.49933366,41.415220066],[-71.499246923,41.415126824],[-71.499171792,41.415012357],[-71.499153473,41.414940178],[-71.499083628,41.414833351],[-71.499036873,41.414722726],[-71.499026394,41.414593989],[-71.499029586,41.414469552],[-71.499032473,41.414356916],[-71.49903527,41.414247024],[-71.499035665,41.414232478],[-71.49900477,41.414111037],[-71.498989732,41.414053426],[-71.498956436,41.413990029],[-71.498872343,41.413974294],[-71.498701451,41.413975939],[-71.498567747,41.413924913],[-71.498470957,41.413830847],[-71.498410411,41.41371933],[-71.498353572,41.413608568],[-71.498310465,41.41349799],[-71.498283855,41.413389035],[-71.498260495,41.413261464],[-71.498273501,41.413148279],[-71.498325211,41.413030772],[-71.498388344,41.412932819],[-71.498447497,41.412810601],[-71.498487511,41.412683832],[-71.498497235,41.412554774],[-71.498531081,41.412453642],[-71.498614445,41.412354592],[-71.498684504,41.412237359],[-71.498751554,41.412129092],[-71.498844912,41.41206963],[-71.498997966,41.41204763],[-71.49914947,41.412050513],[-71.49931914,41.412058542],[-71.499467272,41.4120496],[-71.499551607,41.411984443],[-71.499606078,41.411866295],[-71.499671608,41.411745563],[-71.499743942,41.411647061],[-71.499808165,41.4115422],[-71.499880195,41.41145543],[-71.500018786,41.411388283],[-71.500164637,41.411359306],[-71.500275279,41.411342908],[-71.500302286,41.411292822],[-71.50030344,41.411175291],[-71.50024982,41.411081866],[-71.500155249,41.410971929],[-71.500049226,41.410881888],[-71.499935607,41.410870545],[-71.499789423,41.410911299],[-71.499654782,41.410968818],[-71.499531107,41.410991917],[-71.499379698,41.410950978],[-71.499234212,41.410892864],[-71.499094043,41.410844492],[-71.498932032,41.410785485],[-71.498772117,41.410717444],[-71.498647746,41.410661708],[-71.498484217,41.410591585],[-71.49833199,41.410509845],[-71.498230313,41.410428836],[-71.498122136,41.410348445],[-71.497990993,41.410269083],[-71.497925164,41.410185148],[-71.497881482,41.41009808],[-71.49775283,41.410029855],[-71.497668318,41.409994038],[-71.497688614,41.40990983],[-71.497640254,41.409822831],[-71.497636549,41.40979191],[-71.497632813,41.409755363],[-71.497621636,41.409713258],[-71.497603014,41.409693567],[-71.497610488,41.409668272],[-71.497580689,41.40961766],[-71.497543447,41.409547401],[-71.497517384,41.40951648],[-71.497507756,41.409462094],[-71.497470089,41.409401944],[-71.497415561,41.409350027],[-71.497369904,41.409305132],[-71.497341107,41.409251935],[-71.497346001,41.409183575],[-71.497363289,41.409114279],[-71.497385012,41.409060671],[-71.49741758,41.408991741],[-71.497428215,41.408923267],[-71.497458262,41.408863713],[-71.49747883,41.408805097],[-71.497508329,41.408754897],[-71.497533758,41.408699049],[-71.497576047,41.408634921],[-71.497629878,41.408597804],[-71.497684287,41.408550623],[-71.497749601,41.408514718],[-71.497826307,41.408501478],[-71.497904804,41.408484646],[-71.49797507,41.408452904],[-71.498034551,41.408413545],[-71.498083887,41.40835932],[-71.498082673,41.408304774],[-71.498107281,41.408251784],[-71.498143128,41.408193557],[-71.498154917,41.408130115],[-71.498165824,41.408068799],[-71.498176853,41.408010412],[-71.498199183,41.407948182],[-71.498216074,41.407893225],[-71.498204198,41.407833899],[-71.49817771,41.407767734],[-71.498163951,41.40770914],[-71.498114862,41.407649951],[-71.498057024,41.407610362],[-71.497986732,41.407569583],[-71.49794779,41.40750152],[-71.497915166,41.407448414],[-71.497880719,41.407397459],[-71.497850957,41.407365432],[-71.497850527,41.407365456],[-71.497838527,41.407352456],[-71.497815929,41.407343069],[-71.497773944,41.407325918],[-71.497715226,41.407287769],[-71.497695552,41.407254594],[-71.497684527,41.407236456],[-71.497650527,41.407201456],[-71.497644238,41.407191527],[-71.497613193,41.40714357],[-71.497581633,41.4070933],[-71.497576212,41.407084145],[-71.497516263,41.40698951],[-71.497510402,41.406980799],[-71.497458671,41.406927373],[-71.497438927,41.406906594],[-71.497415527,41.406882455],[-71.497373527,41.406831456],[-71.497316527,41.406779456],[-71.497248526,41.406733456],[-71.497194592,41.406716551],[-71.497181244,41.406712454],[-71.497125412,41.406674945],[-71.497060497,41.406649832],[-71.497026751,41.406678788],[-71.497022527,41.406682456],[-71.496977526,41.406702456],[-71.496828527,41.406743456],[-71.496756526,41.406773456],[-71.496630527,41.406844455],[-71.49661261,41.406868622],[-71.496587997,41.406902422],[-71.496571218,41.406917376],[-71.496540526,41.406945456],[-71.496459527,41.406969456],[-71.496405526,41.407009456],[-71.496373526,41.407065456],[-71.49637325,41.407065915],[-71.496306783,41.407097566],[-71.496270841,41.407125892],[-71.496242527,41.407148456],[-71.496160571,41.407223035],[-71.496142675,41.407239837],[-71.496113391,41.407261793],[-71.496082526,41.407285456],[-71.49604495,41.407327505],[-71.49604048,41.407332573],[-71.496024367,41.407341823],[-71.495971527,41.407372456],[-71.495944436,41.407381486],[-71.49590001,41.407396765],[-71.495888143,41.407437006],[-71.495883526,41.407453456],[-71.495847526,41.407508456],[-71.495779526,41.407556456],[-71.495714526,41.407592456],[-71.495714177,41.407592642],[-71.49563407,41.407616699],[-71.495632931,41.407617171],[-71.495489526,41.407681456],[-71.495413526,41.407697456],[-71.495345526,41.407725456],[-71.495270526,41.407733456],[-71.495027526,41.407742456],[-71.49502131,41.407738834],[-71.49495661,41.407703716],[-71.494906679,41.407672041],[-71.494900526,41.407668456],[-71.494880723,41.407661012],[-71.494832158,41.40764331],[-71.494759527,41.407615542],[-71.494690602,41.407584801],[-71.494666608,41.407532884],[-71.494631443,41.407506728],[-71.494606526,41.407488456],[-71.494529526,41.407448456],[-71.494351694,41.407369484],[-71.494314334,41.407354867],[-71.494245329,41.40732225],[-71.494225526,41.407313456],[-71.494164612,41.407278758],[-71.494146901,41.407268844],[-71.49405504,41.40726088],[-71.493984142,41.407228744],[-71.493927521,41.407195533],[-71.493875336,41.407154341],[-71.493817958,41.407102513],[-71.493764378,41.407049886],[-71.493749168,41.407026419],[-71.493730526,41.406998455],[-71.493699525,41.406933456],[-71.493646583,41.406805043],[-71.49362707,41.406760728],[-71.493607575,41.406710426],[-71.493605525,41.406705455],[-71.493579525,41.406654456],[-71.493569332,41.406648183],[-71.493566296,41.406646488],[-71.49354124,41.406591758],[-71.49352068,41.406598073],[-71.493478525,41.406611456],[-71.493442636,41.40662758],[-71.493409732,41.40664282],[-71.493339832,41.406659465],[-71.493249974,41.40667874],[-71.493175328,41.406687551],[-71.493107525,41.406720456],[-71.492932525,41.406838456],[-71.492867525,41.406869456],[-71.492861325,41.406875291],[-71.492851007,41.406885852],[-71.492771293,41.406919947],[-71.4927189,41.406952434],[-71.492696526,41.406966456],[-71.492552181,41.406973858],[-71.492540753,41.406974661],[-71.492496501,41.406989329],[-71.492466525,41.406999456],[-71.492319525,41.407060456],[-71.492265948,41.407070592],[-71.492245291,41.407074631],[-71.492169316,41.407082813],[-71.492096163,41.407113866],[-71.492040749,41.407159626],[-71.492027268,41.407181551],[-71.492010525,41.407209456],[-71.492036525,41.407265456],[-71.492041161,41.407271902],[-71.492077729,41.407322488],[-71.492114686,41.407363823],[-71.492130525,41.407381456],[-71.492241891,41.407471298],[-71.4922498,41.407477309],[-71.492276802,41.407509741],[-71.49231489,41.407556262],[-71.492351153,41.407604979],[-71.492351525,41.407605456],[-71.492338525,41.407669456],[-71.492318155,41.407712167],[-71.492307639,41.40773449],[-71.492290666,41.40775296],[-71.492266525,41.407779456],[-71.492195525,41.407815456],[-71.492131533,41.407840453],[-71.492074525,41.407884456],[-71.492040525,41.407941456],[-71.491984525,41.407991457],[-71.491965525,41.408048456],[-71.491966893,41.408088116],[-71.491967605,41.40810611],[-71.491981814,41.408176163],[-71.492003314,41.408237434],[-71.492022809,41.408296578],[-71.492056583,41.408353962],[-71.492078014,41.408391324],[-71.492084525,41.408402456],[-71.492091525,41.408458457],[-71.492144525,41.408500456],[-71.492194158,41.408514536],[-71.492215774,41.408520583],[-71.492239598,41.408527427],[-71.492285525,41.408540456],[-71.492287131,41.408540152],[-71.492322096,41.408533238],[-71.492307483,41.408485674],[-71.492305599,41.408479691],[-71.492297646,41.408470986],[-71.492265525,41.408436456],[-71.492280837,41.408329278],[-71.492282083,41.408317339],[-71.492294152,41.408264304],[-71.492296525,41.408253456],[-71.492296699,41.408253096],[-71.492325525,41.408193456],[-71.492382472,41.408125702],[-71.492410396,41.408089719],[-71.49246241,41.408030397],[-71.492516913,41.407986078],[-71.49255698,41.407966823],[-71.492584525,41.407953456],[-71.492627076,41.407937275],[-71.492655716,41.407926281],[-71.49272489,41.407890973],[-71.492776567,41.407848163],[-71.492799265,41.407795243],[-71.492810329,41.407737541],[-71.492846484,41.407687183],[-71.492876969,41.407662384],[-71.492897525,41.407645456],[-71.492965525,41.407614456],[-71.493053525,41.407613456],[-71.493084493,41.407627413],[-71.493124263,41.40764505],[-71.493185525,41.407686456],[-71.493185955,41.407686746],[-71.493237835,41.407744451],[-71.493258392,41.407761458],[-71.493291525,41.407788456],[-71.493360525,41.407827456],[-71.493378832,41.407873622],[-71.493383633,41.407885501],[-71.493422664,41.407932045],[-71.493459021,41.407983596],[-71.493471714,41.408038623],[-71.493469508,41.408044143],[-71.493431125,41.408152311],[-71.493427957,41.408162372],[-71.493414828,41.408215796],[-71.493378169,41.408232498],[-71.493350525,41.408245457],[-71.493298526,41.408242456],[-71.493267483,41.408252979],[-71.4932393,41.408262831],[-71.493177429,41.408276973],[-71.493162526,41.408280456],[-71.49309834,41.408314829],[-71.493062071,41.408314936],[-71.493022525,41.408315456],[-71.492964964,41.408322272],[-71.492946115,41.408324654],[-71.492866218,41.408353763],[-71.492808768,41.408396665],[-71.492773494,41.40844485],[-71.492733635,41.408473756],[-71.492713901,41.408490583],[-71.492678525,41.408521456],[-71.492621525,41.408640456],[-71.492593739,41.408680812],[-71.492579622,41.408701923],[-71.492527245,41.408751937],[-71.492475177,41.408794976],[-71.492473525,41.408796456],[-71.492453891,41.408810169],[-71.492410582,41.408840712],[-71.492387824,41.40887056],[-71.492364526,41.408901456],[-71.492357258,41.408921528],[-71.492343766,41.408959954],[-71.492313589,41.409017332],[-71.492313525,41.409017456],[-71.492222525,41.409119457],[-71.492296525,41.409182456],[-71.492366525,41.409362456],[-71.492058525,41.409642457],[-71.491936525,41.409764457],[-71.491852525,41.409829456],[-71.491737525,41.409909456],[-71.491440525,41.410054457],[-71.490692524,41.410405457],[-71.490555524,41.410473456],[-71.490433525,41.410527456],[-71.490250525,41.410591456],[-71.490013524,41.410668456],[-71.489784525,41.410721457],[-71.489105524,41.410828457],[-71.488960524,41.410839456],[-71.488754524,41.410847457],[-71.488598524,41.410844457],[-71.488335524,41.410839456],[-71.488129524,41.410839456],[-71.488045524,41.410851457],[-71.488014524,41.410851457],[-71.487940523,41.410864457],[-71.487356523,41.410993457],[-71.486766524,41.411139457],[-71.486061523,41.411320457],[-71.486031523,41.411332457],[-71.485428523,41.411484457],[-71.484116522,41.411858457],[-71.483925522,41.411919457],[-71.482506522,41.412373457],[-71.482292522,41.412430457],[-71.482170522,41.412453458],[-71.481918522,41.412484457],[-71.481339522,41.412518457],[-71.481216521,41.412529457],[-71.480972522,41.412560457],[-71.480850522,41.412571458],[-71.480621522,41.412579457],[-71.480507522,41.412579457],[-71.480316521,41.412587457],[-71.480125521,41.412590458],[-71.479805522,41.412617457],[-71.479546521,41.412651458],[-71.479362521,41.412682457],[-71.479073521,41.412724458],[-71.478928521,41.412735457],[-71.478729521,41.412732457],[-71.478378521,41.412709458],[-71.47824952,41.412693457],[-71.47754752,41.412659457],[-71.47753152,41.412606458],[-71.477501521,41.412564457],[-71.477440521,41.412533458],[-71.47731052,41.412499457],[-71.47696752,41.412438458],[-71.47564752,41.412190457],[-71.473549519,41.411805457],[-71.471581518,41.411450457],[-71.471268518,41.411389457],[-71.471123519,41.411354457],[-71.470970519,41.411301458],[-71.470512518,41.411129458],[-71.470200518,41.411007457],[-71.469948518,41.410908457],[-71.469803517,41.410847457],[-71.469704518,41.410820457],[-71.469582518,41.410794458],[-71.469238517,41.410733457],[-71.469093518,41.410702458],[-71.468536517,41.410599458],[-71.467697517,41.410435457],[-71.466896516,41.410294457],[-71.465965516,41.410145457],[-71.465212516,41.410016458],[-71.465012516,41.409981457],[-71.464149516,41.409817457],[-71.463043516,41.409623457],[-71.462163515,41.409454458],[-71.461365515,41.409302457],[-71.459816515,41.408997457],[-71.459579515,41.409569458],[-71.459412514,41.409981457],[-71.459366515,41.410057458],[-71.459328515,41.410138457],[-71.459267515,41.410210458],[-71.459221514,41.410256457],[-71.459160514,41.410298457],[-71.459099514,41.410332457],[-71.459038514,41.410355457],[-71.458916515,41.410386458],[-71.458809514,41.410401458],[-71.458702515,41.410405458],[-71.458633514,41.410614458],[-71.458313514,41.411408458],[-71.458237515,41.411396458],[-71.458168514,41.411396458],[-71.458115514,41.411404458],[-71.458061514,41.411370458],[-71.457970514,41.411381458],[-71.457932514,41.411450458],[-71.457848514,41.411465457],[-71.457802514,41.411461458],[-71.456718513,41.411244458],[-71.456596514,41.411343458],[-71.456528513,41.411412458],[-71.456474514,41.411499458],[-71.456276513,41.411988458],[-71.456123514,41.412396458],[-71.456047514,41.412602458],[-71.455800513,41.413227458],[-71.455673513,41.413548459],[-71.455602514,41.413722459],[-71.455402513,41.414215458],[-71.454994513,41.415314459],[-71.454933513,41.415501458],[-71.454529513,41.416611459],[-71.454361513,41.417057459],[-71.454353513,41.417111459],[-71.454353513,41.417164459],[-71.454346513,41.417218459],[-71.454346513,41.417290459],[-71.452650513,41.416881459],[-71.452649592,41.416881251],[-71.452650086,41.416889305],[-71.452656441,41.416965488],[-71.452644719,41.417042167],[-71.452619478,41.417117286],[-71.452590777,41.417186228],[-71.45256761,41.417249821],[-71.45255878,41.417318383],[-71.45256787,41.417393927],[-71.452575074,41.417472238],[-71.452579543,41.417551828],[-71.452590301,41.417632176],[-71.452610143,41.417711979],[-71.452643539,41.417788539],[-71.45268602,41.417863892],[-71.452729505,41.417935837],[-71.452764,41.418005628],[-71.452794909,41.418075395],[-71.452830347,41.418142488],[-71.452871443,41.418200779],[-71.452915495,41.418247589],[-71.452973538,41.418314989],[-71.453005611,41.418371835],[-71.453049414,41.418468274],[-71.453058818,41.418530919],[-71.453058225,41.418594819],[-71.453054897,41.418659357],[-71.453033616,41.418720252],[-71.453017712,41.418781927],[-71.453033435,41.418844644],[-71.453064377,41.418912353],[-71.453097111,41.418980085],[-71.453124501,41.419044362],[-71.453142835,41.419110556],[-71.453141205,41.419179898],[-71.453136022,41.419247752],[-71.453139831,41.419317165],[-71.453177754,41.419394482],[-71.453247335,41.419432109],[-71.453319116,41.419452767],[-71.453391998,41.419462585],[-71.453443469,41.419501988],[-71.45346391,41.419554598],[-71.453491456,41.419613409],[-71.453522588,41.419671604],[-71.453553718,41.419731857],[-71.453582994,41.419793412],[-71.453609566,41.419854944],[-71.453637051,41.419914464],[-71.453668182,41.419974717],[-71.453699252,41.420034924],[-71.453727742,41.420091722],[-71.45375444,41.420147125],[-71.453780257,41.42020255],[-71.453806893,41.420260034],[-71.453837269,41.420313425],[-71.453863149,41.420365442],[-71.453896984,41.420425719],[-71.45393975,41.42048879],[-71.453977484,41.420536192],[-71.454018833,41.420584328],[-71.45406644,41.420633221],[-71.454123008,41.420684999],[-71.454181431,41.420736046],[-71.454238848,41.420791163],[-71.454298906,41.420849758],[-71.454362831,41.420897513],[-71.454426,41.420938453],[-71.454463261,41.420967513],[-71.454480996,41.420981334],[-71.454528729,41.421024806],[-71.454576493,41.421067547],[-71.454624225,41.421113055],[-71.454685071,41.42117572],[-71.454725133,41.421239453],[-71.454760825,41.421297031],[-71.454789441,41.421349073],[-71.454808878,41.421405753],[-71.454820234,41.421460989],[-71.454813806,41.421660072],[-71.454820495,41.421829132],[-71.454817958,41.421895158],[-71.454802786,41.421953013],[-71.454783355,41.422020153],[-71.454768872,41.422092898],[-71.454750172,41.422155784],[-71.454697593,41.42221964],[-71.454623992,41.422276901],[-71.454564623,41.42231674],[-71.454478881,41.422356661],[-71.454424581,41.422403478],[-71.454392664,41.422466015],[-71.454424409,41.422519773],[-71.454488656,41.422543606],[-71.454547608,41.422534939],[-71.45475937,41.422430711],[-71.455332196,41.422052294],[-71.455349962,41.422109248],[-71.455370525,41.422165426],[-71.455383905,41.422194202],[-71.455404081,41.422237617],[-71.455440266,41.422285567],[-71.455499687,41.422346357],[-71.455556805,41.422398706],[-71.455581987,41.422453353],[-71.455562465,41.42251912],[-71.455525437,41.422592451],[-71.455486405,41.422663722],[-71.455421102,41.422717237],[-71.455362825,41.422760599],[-71.455356281,41.422821065],[-71.455384678,41.422884153],[-71.45539481,41.422908902],[-71.455407065,41.422938844],[-71.455440381,41.423006027],[-71.455472936,41.4230768],[-71.455501753,41.423148327],[-71.455529178,41.423210705],[-71.455564542,41.423261536],[-71.455598022,41.423312435],[-71.455624177,41.423367037],[-71.455638968,41.423421245],[-71.45564591,41.423488418],[-71.455645618,41.423561443],[-71.455633691,41.423628448],[-71.455625953,41.423703825],[-71.455622863,41.423778358],[-71.455617009,41.423853691],[-71.455611214,41.423930441],[-71.455609276,41.424009206],[-71.455612408,41.424095657],[-71.455617663,41.424186957],[-71.45562401,41.424281093],[-71.455628893,41.424384514],[-71.455629615,41.424439792],[-71.455627231,41.424549088],[-71.455625097,41.42460377],[-71.45562108,41.424657743],[-71.455617514,41.424762098],[-71.455622067,41.424858407],[-71.455626261,41.424947648],[-71.455627599,41.425035516],[-71.455631792,41.425124049],[-71.45564708,41.425208766],[-71.455666195,41.42529408],[-71.455677984,41.425383804],[-71.45568324,41.42547515],[-71.455692083,41.425563547],[-71.455708702,41.425656018],[-71.455714287,41.425754408],[-71.45571905,41.425854971],[-71.455730257,41.425952539],[-71.455742136,41.426044414],[-71.45575098,41.426132079],[-71.455756728,41.426214208],[-71.455760413,41.426292106],[-71.455768657,41.426367078],[-71.45578058,41.426439787],[-71.455793326,41.426509661],[-71.45580157,41.426584587],[-71.455804522,41.426667515],[-71.455797412,41.426756318],[-71.455777205,41.426846922],[-71.455756264,41.426942489],[-71.455736968,41.427032362],[-71.455716251,41.427112354],[-71.455695234,41.427185965],[-71.455675921,41.427255964],[-71.455658522,41.427326626],[-71.455644309,41.427404311],[-71.45564131,41.427480971],[-71.455640014,41.427553355],[-71.455631243,41.427626605],[-71.45561721,41.427708544],[-71.455595759,41.427793498],[-71.45556948,41.427875044],[-71.455544141,41.427957298],[-71.45551692,41.428038843],[-71.455486841,41.428120524],[-71.455449317,41.428203757],[-71.455403524,41.428291515],[-71.455363533,41.428382615],[-71.455340617,41.428476145],[-71.455326973,41.428565883],[-71.455315884,41.428650544],[-71.455288751,41.428734216],[-71.455264594,41.428821388],[-71.455241499,41.428911374],[-71.455227001,41.429003238],[-71.455237879,41.429093694],[-71.45525082,41.429188382],[-71.455268711,41.429287897],[-71.45529022,41.429383778],[-71.455296657,41.429480018],[-71.45530088,41.429569969],[-71.4553079,41.429658434],[-71.45530997,41.429742094],[-71.455293991,41.429822614],[-71.455254192,41.429898139],[-71.455197735,41.429979786],[-71.455141279,41.430061434],[-71.455095947,41.430138535],[-71.455062293,41.430203931],[-71.455032227,41.43026576],[-71.455004957,41.430326767],[-71.454996707,41.43039151],[-71.455029295,41.430462969],[-71.455098712,41.430536273],[-71.45518691,41.430608371],[-71.455278518,41.430672558],[-71.455352316,41.430739391],[-71.455393592,41.430814878],[-71.455405725,41.43089255],[-71.455406404,41.430966262],[-71.455409459,41.431031443],[-71.455414219,41.431092302],[-71.455442769,41.431158226],[-71.455494482,41.431215673],[-71.455559667,41.431258603],[-71.455627394,41.431316376],[-71.455678765,41.431385899],[-71.455717828,41.431455759],[-71.455722896,41.431465367],[-71.45574578,41.431508943],[-71.455801334,41.431547844],[-71.455842263,41.431554927],[-71.455908086,41.431553511],[-71.455968368,41.431612883],[-71.456059905,41.431695525],[-71.456131521,41.431756021],[-71.456269099,41.431835319],[-71.456422153,41.43190353],[-71.456544234,41.431937356],[-71.456594943,41.431951395],[-71.456848007,41.432022616],[-71.456922284,41.432058939],[-71.456960523,41.432090537],[-71.456979758,41.432138275],[-71.456980028,41.432143947],[-71.456981886,41.432183604],[-71.456789972,41.432788633],[-71.456634127,41.432983017],[-71.45662655,41.432999344],[-71.456596063,41.433054267],[-71.456581397,41.433080699],[-71.456543431,41.433141062],[-71.45652968,41.433162921],[-71.45647231,41.433245301],[-71.456422417,41.433326105],[-71.456376323,41.433407415],[-71.456328493,41.433492382],[-71.456273247,41.433578994],[-71.456211286,41.43366359],[-71.456146529,41.433749009],[-71.456084478,41.433831524],[-71.456021155,41.433907657],[-71.45595653,41.43397606],[-71.455919854,41.434013094],[-71.456902515,41.433743462],[-71.457016515,41.433754462],[-71.457672515,41.433819462],[-71.458435515,41.433880462],[-71.459114516,41.433930462],[-71.459274515,41.433937462],[-71.459419516,41.433922462],[-71.459534516,41.433899462],[-71.459625515,41.433865462],[-71.459755516,41.433998462],[-71.459824516,41.434044463],[-71.460144516,41.434109462],[-71.460450516,41.434133462],[-71.461097516,41.434147462],[-71.462227517,41.434143463],[-71.464523517,41.434185462],[-71.465210518,41.434208462],[-71.465393518,41.434197462],[-71.465500518,41.434140462],[-71.465622518,41.434060462],[-71.465759518,41.433926462],[-71.465874518,41.433789462],[-71.465911518,41.433716462],[-71.465981517,41.433579462],[-71.466049518,41.433472462],[-71.466156517,41.433503462],[-71.466423518,41.433586462],[-71.466942518,41.433785462]]]]}}"}, +{"type": "precinct", "typeId": 2005, "areaId": 25818, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":157,\"NAME\":\"2005\",\"SHAPE_Length\":0.57328217056814,\"SHAPE_Area\":-0.0013673330445981},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.513166389,41.361442556],[-71.513261669,41.361442266],[-71.513293423,41.361411516],[-71.513308325,41.36135714],[-71.511720908,41.357034481],[-71.511636662,41.356961289],[-71.511341117,41.356031309],[-71.511254456,41.355800118],[-71.511092542,41.355487865],[-71.510865877,41.355253706],[-71.510639103,41.355039037],[-71.510405951,41.354795123],[-71.510043385,41.354560953],[-71.509648278,41.354395097],[-71.509188519,41.354209733],[-71.509013687,41.354209747],[-71.508696452,41.354136593],[-71.508502167,41.354219542],[-71.508327336,41.35422931],[-71.508035941,41.354170775],[-71.507718704,41.354068351],[-71.50734958,41.354097642],[-71.507207076,41.354117163],[-71.507148807,41.354195234],[-71.507135954,41.354283057],[-71.506980488,41.354439201],[-71.506650313,41.35470269],[-71.506106376,41.354995456],[-71.50522575,41.355434614],[-71.505085412,41.355543391],[-71.504999138,41.35561027],[-71.504811102,41.35567012],[-71.504545892,41.355717644],[-71.504148086,41.355955313],[-71.503866038,41.356186051],[-71.501755043,41.357400979],[-71.501042709,41.357805946],[-71.497863163,41.359742923],[-71.497817741,41.359806345],[-71.497934303,41.359908814],[-71.498070337,41.359777082],[-71.498148087,41.359694128],[-71.498258165,41.359640462],[-71.50174207,41.357557113],[-71.503846585,41.356376342],[-71.503963142,41.356351938],[-71.504040882,41.356293379],[-71.504079689,41.356166532],[-71.504332258,41.355981121],[-71.504681921,41.355820085],[-71.504895575,41.355854232],[-71.504986173,41.355756649],[-71.505089863,41.355688333],[-71.505197995,41.355657217],[-71.505853938,41.355278471],[-71.506028765,41.35518575],[-71.506197105,41.355112563],[-71.506494967,41.354941767],[-71.506605036,41.354951517],[-71.506663309,41.354902735],[-71.506954673,41.354649005],[-71.507161809,41.35443919],[-71.507291339,41.354429426],[-71.507336626,41.354292801],[-71.507472634,41.354195213],[-71.507647467,41.354204957],[-71.507841655,41.354248856],[-71.508087749,41.354322039],[-71.508262588,41.354370805],[-71.508320871,41.354414712],[-71.508508678,41.354400076],[-71.508625228,41.354356155],[-71.508735295,41.354356147],[-71.508787098,41.354453722],[-71.508923115,41.354439067],[-71.508974917,41.354526886],[-71.509072008,41.354526878],[-71.509149745,41.354492717],[-71.509214504,41.354443933],[-71.509382853,41.354473186],[-71.509533678,41.354528878],[-71.509615967,41.354497567],[-71.509680736,41.354517073],[-71.509719562,41.354595137],[-71.509900892,41.354653656],[-71.50997863,41.354634138],[-71.510056272,41.354721954],[-71.510270059,41.354882958],[-71.510516182,41.355097605],[-71.510775171,41.355331782],[-71.510911214,41.355458615],[-71.510975998,41.355565943],[-71.511053637,41.355624492],[-71.51106014,41.355712314],[-71.511163751,41.35588795],[-71.511150902,41.35596113],[-71.511137931,41.355995287],[-71.511189726,41.356019682],[-71.511196233,41.356127015],[-71.511137964,41.356185577],[-71.511468349,41.357175996],[-71.511578415,41.357146697],[-71.513166389,41.361442556]]],[[[-71.520737337,41.378475413],[-71.520730878,41.378483373],[-71.520737533,41.378475449],[-71.520738557,41.378457534],[-71.520737337,41.378475413]]],[[[-71.520651742,41.378576973],[-71.520611343,41.378625626],[-71.520608478,41.378630136],[-71.520611533,41.378625449],[-71.520664217,41.37856273],[-71.520651742,41.378576973]]],[[[-71.520538048,41.378737293],[-71.520505323,41.378775973],[-71.520538533,41.37873745],[-71.520556204,41.378710338],[-71.520538048,41.378737293]]],[[[-71.520434328,41.37884526],[-71.520429707,41.378848971],[-71.520434533,41.378845449],[-71.52046773,41.378814711],[-71.520434328,41.37884526]]],[[[-71.520283336,41.37894727],[-71.520270977,41.378951402],[-71.520230377,41.378964977],[-71.52020055,41.378996452],[-71.520224533,41.37897145],[-71.520301759,41.37894111],[-71.520283336,41.37894727]]],[[[-71.520112441,41.379060688],[-71.520050234,41.379091276],[-71.519982406,41.379111094],[-71.519904044,41.379139467],[-71.519834099,41.37918801],[-71.519758415,41.379235068],[-71.519681908,41.37927348],[-71.519617817,41.379301919],[-71.519549931,41.379331777],[-71.519482986,41.379360925],[-71.519417983,41.379385773],[-71.519327262,41.379411952],[-71.519231742,41.379438109],[-71.519154261,41.379470095],[-71.519121541,41.37951161],[-71.51912016,41.379566843],[-71.519133023,41.379631518],[-71.519169722,41.379695595],[-71.519216898,41.37975967],[-71.519270782,41.37981805],[-71.519340969,41.379865014],[-71.519388709,41.379888746],[-71.519422601,41.379905595],[-71.51950912,41.379936799],[-71.519545794,41.379947727],[-71.519546533,41.37994645],[-71.520140532,41.37904345],[-71.520112441,41.379060688]]],[[[-71.516441794,41.380317019],[-71.51644418,41.380385241],[-71.516445651,41.380441228],[-71.51648429,41.380495997],[-71.516539055,41.380564417],[-71.51657584,41.380616237],[-71.516614538,41.380665951],[-71.516671246,41.380730095],[-71.516719361,41.380794194],[-71.516758001,41.380855389],[-71.51680332,41.380909426],[-71.516839077,41.380973458],[-71.516884279,41.381046179],[-71.516909557,41.381100127],[-71.51693772,41.381157688],[-71.516963913,41.381224557],[-71.51698725,41.381290009],[-71.517011559,41.381351115],[-71.517038751,41.38141014],[-71.517066886,41.381472686],[-71.517091165,41.381538824],[-71.517108794,41.381602813],[-71.517124509,41.381664606],[-71.517139283,41.381727155],[-71.51715497,41.381795421],[-71.5171726,41.381862246],[-71.517190257,41.381919785],[-71.517229722,41.38199532],[-71.517261712,41.382050021],[-71.517292679,41.38210852],[-71.51731224,41.38214474],[-71.517312532,41.38214445],[-71.517632532,41.38175245],[-71.518628786,41.380912079],[-71.518599442,41.380863317],[-71.518544527,41.380812119],[-71.518536384,41.380791711],[-71.518529607,41.380774728],[-71.518557708,41.380712379],[-71.518575273,41.380655017],[-71.518573799,41.380598321],[-71.518599163,41.380525155],[-71.518632973,41.380463605],[-71.518673433,41.380408503],[-71.518738584,41.380364993],[-71.518813211,41.380329394],[-71.518882129,41.380290938],[-71.518962317,41.380272628],[-71.519028732,41.380270403],[-71.519057662,41.380269434],[-71.519142443,41.380275526],[-71.519222574,41.380269406],[-71.519303793,41.380243183],[-71.519376505,41.38020548],[-71.519398925,41.380138832],[-71.51935072,41.380083311],[-71.519258465,41.380062102],[-71.519232473,41.380054676],[-71.519187102,41.380041714],[-71.519120595,41.380014143],[-71.519049291,41.3799887],[-71.518976074,41.379964698],[-71.518895296,41.379938502],[-71.51880972,41.37991082],[-71.518738416,41.379883982],[-71.518673792,41.379857165],[-71.518592129,41.379816583],[-71.51851903,41.3797768],[-71.518457321,41.379747079],[-71.518397523,41.379714521],[-71.518314007,41.379666758],[-71.518231374,41.379626931],[-71.518131379,41.379614276],[-71.518030327,41.379619621],[-71.517951169,41.379627135],[-71.517873981,41.379623236],[-71.517782491,41.379620689],[-71.517707157,41.379621798],[-71.517627174,41.379614263],[-71.517591272,41.379572484],[-71.517614577,41.379515899],[-71.517594035,41.37946051],[-71.517604069,41.379395213],[-71.517667305,41.379347381],[-71.517678074,41.37931081],[-71.517642231,41.3792597],[-71.517674894,41.379228248],[-71.517741312,41.37926945],[-71.517811556,41.379307793],[-71.517880887,41.379340396],[-71.517966668,41.379342921],[-71.51806004,41.379347664],[-71.518149703,41.379335094],[-71.518229774,41.379334006],[-71.518300633,41.379294818],[-71.518381646,41.379294439],[-71.518452006,41.379314851],[-71.518539669,41.379317421],[-71.518618946,41.379299066],[-71.518699251,41.379267103],[-71.518776789,41.37922366],[-71.518865745,41.37918385],[-71.51893834,41.379160465],[-71.519014761,41.379137102],[-71.519082648,41.379110812],[-71.519142942,41.37907732],[-71.519217713,41.379022372],[-71.519265794,41.378968001],[-71.519289067,41.378912102],[-71.519323758,41.378860592],[-71.519400975,41.378860213],[-71.519486696,41.378869896],[-71.519566854,41.378858767],[-71.519646187,41.378829662],[-71.51971781,41.378808449],[-71.519775278,41.378769903],[-71.51982898,41.378729961],[-71.519905547,41.378690062],[-71.519979937,41.37868392],[-71.520021191,41.378647503],[-71.520073126,41.378586681],[-71.520116349,41.378538783],[-71.520161604,41.378480135],[-71.520185819,41.378429221],[-71.520195761,41.378373301],[-71.520223539,41.378354726],[-71.520276657,41.378392293],[-71.520353726,41.378409843],[-71.520434622,41.378426708],[-71.520512896,41.378412674],[-71.520564362,41.378409326],[-71.520632752,41.378439777],[-71.520696811,41.378413464],[-71.520741628,41.378412221],[-71.520739725,41.378440246],[-71.521591533,41.377537449],[-71.522704603,41.376824685],[-71.522612204,41.376823584],[-71.522511184,41.376818869],[-71.522470132,41.376816979],[-71.52240737,41.37681411],[-71.522323476,41.376813737],[-71.522284717,41.376810916],[-71.522229165,41.376806872],[-71.522133884,41.376802888],[-71.522037691,41.37679744],[-71.521946263,41.376787715],[-71.521842447,41.376776528],[-71.521767174,41.376769727],[-71.521682368,41.376765054],[-71.521601448,41.376760404],[-71.52153003,41.376750034],[-71.521459583,41.376736828],[-71.521385311,41.37672575],[-71.521303418,41.376715336],[-71.521228234,41.376701376],[-71.521129245,41.376688015],[-71.521035905,41.376678289],[-71.521008244,41.376676716],[-71.520927293,41.376670648],[-71.520853963,41.376661719],[-71.520779778,41.376637741],[-71.52070277,41.376617309],[-71.520621789,41.376609776],[-71.520551431,41.376589365],[-71.520464712,41.37658396],[-71.520387615,41.376570709],[-71.520312345,41.376569693],[-71.520242987,41.37654281],[-71.520163947,41.376530977],[-71.520090588,41.376525638],[-71.520014375,41.376521717],[-71.519941163,41.376500598],[-71.519848795,41.376488698],[-71.519772611,41.376481187],[-71.519699281,41.376471571],[-71.519624068,41.376459005],[-71.519544147,41.376442895],[-71.519443246,41.376428069],[-71.51936609,41.376418431],[-71.519271838,41.376402964],[-71.519191887,41.376386785],[-71.519106289,41.376369211],[-71.519002502,41.37635155],[-71.518912135,41.376328191],[-71.518829388,41.376304122],[-71.518739933,41.376284354],[-71.518663839,41.376270392],[-71.518583976,41.376240605],[-71.518484075,41.376218665],[-71.518413659,41.376203971],[-71.518342271,41.376188613],[-71.518267117,41.376170329],[-71.518190081,41.376151313],[-71.518091122,41.37612935],[-71.517995017,41.376107432],[-71.517903649,41.376087641],[-71.517817168,41.376061422],[-71.517732509,41.376037398],[-71.517661181,41.376016963],[-71.517587969,41.375990787],[-71.517499515,41.375967473],[-71.517432984,41.375944201],[-71.517363656,41.375910866],[-71.51726667,41.375881744],[-71.517170653,41.375848985],[-71.517106005,41.375825049],[-71.517014814,41.375783758],[-71.516925567,41.375741004],[-71.516863831,41.375711281],[-71.516773613,41.375671408],[-71.516689102,41.375626526],[-71.516624512,41.375596118],[-71.516558041,41.375568522],[-71.516488685,41.375536628],[-71.516419417,41.375496866],[-71.516342499,41.375458501],[-71.516270348,41.375421575],[-71.516205818,41.37538538],[-71.516140317,41.37535209],[-71.516072934,41.375316604],[-71.5160122,41.375280432],[-71.515952437,41.375243573],[-71.515893616,41.375205982],[-71.515836707,41.375168436],[-71.515781681,41.375132995],[-71.515724804,41.375098308],[-71.515647033,41.375046974],[-71.515568351,41.374991341],[-71.515514296,41.374953818],[-71.515460272,41.374912659],[-71.515407219,41.374873649],[-71.515354137,41.374834662],[-71.515280222,41.374782664],[-71.515209131,41.374728493],[-71.515158933,41.374688065],[-71.515110647,41.374646927],[-71.515066157,41.374603685],[-71.51499801,41.374543064],[-71.514952666,41.374489736],[-71.51492542,41.374437938],[-71.514891582,41.374375323],[-71.51486057,41.374321353],[-71.514852243,41.374289015],[-71.514891673,41.374241096],[-71.514941578,41.374195349],[-71.515003929,41.374141778],[-71.515063456,41.374086035],[-71.515120129,41.374028851],[-71.515171093,41.373969496],[-71.515217232,41.373920181],[-71.515273844,41.373865124],[-71.515327574,41.373817981],[-71.515391779,41.373773032],[-71.515450334,41.373720147],[-71.515499385,41.37366221],[-71.515536049,41.373604937],[-71.515581216,41.373556309],[-71.515621704,41.373496886],[-71.515676315,41.373454042],[-71.515738606,41.373409093],[-71.515782832,41.373359755],[-71.515826056,41.373314717],[-71.515875107,41.373258929],[-71.515929954,41.373191683],[-71.515961791,41.373142278],[-71.516002307,41.373074278],[-71.516063686,41.373022834],[-71.516119357,41.37297354],[-71.516181735,41.372915646],[-71.516241261,41.372859903],[-71.516292193,41.372803405],[-71.516335506,41.372750523],[-71.516375875,41.372703998],[-71.516429692,41.372648232],[-71.516465322,41.372593818],[-71.516477238,41.372531403],[-71.516480622,41.372463249],[-71.516474501,41.372392854],[-71.516470175,41.372332523],[-71.516463083,41.372263569],[-71.516456992,41.372188898],[-71.516457521,41.372118571],[-71.516458962,41.372052498],[-71.516462374,41.371979998],[-71.516465846,41.371901026],[-71.516465463,41.37182784],[-71.516461195,41.371760327],[-71.516456046,41.371688492],[-71.516449925,41.371614506],[-71.516441863,41.371547703],[-71.516432799,41.371484513],[-71.516426679,41.371414119],[-71.516426325,41.371333706],[-71.516427854,41.371259079],[-71.516428383,41.371189462],[-71.516428971,41.371113326],[-71.516425763,41.371032182],[-71.516423468,41.370958951],[-71.516421113,41.37089146],[-71.516418817,41.370818229],[-71.516417493,41.370742116],[-71.51641708,41.370671744],[-71.516412813,41.370605695],[-71.516405721,41.370533905],[-71.516399571,41.370464929],[-71.516394305,41.37040821],[-71.516390125,41.370328462],[-71.516388743,41.370263167],[-71.516384535,41.370190622],[-71.516379296,41.370123818],[-71.516376913,41.370063509],[-71.516373587,41.369998191],[-71.516371322,41.369923496],[-71.516369909,41.36985747],[-71.516366495,41.369802855],[-71.516356609,41.369728162],[-71.516348458,41.369671421],[-71.516334599,41.369613195],[-71.51630747,41.369543444],[-71.516281255,41.369483024],[-71.516255098,41.369414004],[-71.516237504,41.369352897],[-71.516218849,41.369296821],[-71.516195428,41.369243582],[-71.516174891,41.369187506],[-71.516152442,41.369133558],[-71.516127226,41.36906312],[-71.516098186,41.368999087],[-71.516072883,41.368942257],[-71.516046696,41.368875387],[-71.516025218,41.368817871],[-71.515999002,41.368754569],[-71.515973728,41.36869559],[-71.51595128,41.368642396],[-71.515927859,41.368587693],[-71.515907411,41.368519405],[-71.515888904,41.368446839],[-71.51587128,41.368381409],[-71.515847919,41.36832172],[-71.515821763,41.368254141],[-71.515796607,41.3681765],[-71.515770481,41.368106748],[-71.515742353,41.368044864],[-71.515712373,41.367979413],[-71.515685275,41.367907489],[-71.515660973,41.367844964],[-71.515636611,41.367789575],[-71.515617017,41.36773494],[-71.515601246,41.367677423],[-71.515590303,41.367616338],[-71.515575474,41.367559575],[-71.515546493,41.367484792],[-71.515526899,41.367432284],[-71.515508275,41.367371177],[-71.515489711,41.367308651],[-71.515466291,41.367255412],[-71.515429661,41.36718278],[-71.515411038,41.367128099],[-71.515394356,41.367062715],[-71.51537388,41.367000876],[-71.515350461,41.3669491],[-71.515317656,41.366875713],[-71.515299063,41.366816755],[-71.515275732,41.366749885],[-71.515246664,41.366688756],[-71.51521945,41.36663554],[-71.515196973,41.3665823],[-71.515177468,41.366518288],[-71.515159874,41.366450731],[-71.515142192,41.366391819],[-71.515112301,41.366313446],[-71.515088942,41.366253757],[-71.515066582,41.366186863],[-71.515047017,41.366125756],[-71.515025542,41.36607183],[-71.515003064,41.366018613],[-71.514979675,41.365958902],[-71.514954433,41.365897772],[-71.514932927,41.365842405],[-71.51490589,41.365765472],[-71.51488915,41.365710151],[-71.51487247,41.365649043],[-71.514854788,41.365591526],[-71.514831458,41.365526782],[-71.514804305,41.365467849],[-71.514764647,41.36542026],[-71.514702656,41.365425048],[-71.514663232,41.365470794],[-71.51465514,41.365531791],[-71.51467085,41.365597176],[-71.514692355,41.365651147],[-71.514724365,41.365703654],[-71.514755344,41.365764851],[-71.514785293,41.36583458],[-71.514811447,41.365906481],[-71.514838484,41.365984169],[-71.514864549,41.366060393],[-71.514895441,41.366136593],[-71.514922506,41.366207054],[-71.514938187,41.366275343],[-71.514965282,41.366345804],[-71.514987613,41.366420565],[-71.515012796,41.366488144],[-71.515045689,41.366551491],[-71.515070961,41.366612643],[-71.515089495,41.366678736],[-71.515115621,41.36675352],[-71.515137128,41.366808154],[-71.515162429,41.366864275],[-71.515199058,41.366934803],[-71.515219476,41.36700451],[-71.515235275,41.367059122],[-71.515256723,41.367122402],[-71.515277229,41.36718136],[-71.515299707,41.367235308],[-71.51531836,41.367287816],[-71.515335982,41.367345311],[-71.515372788,41.367394271],[-71.515392294,41.367459701],[-71.515407123,41.367517219],[-71.515432366,41.367581207],[-71.515455608,41.367653818],[-71.515470467,41.367707721],[-71.515484354,41.367761625],[-71.515522042,41.367816349],[-71.515542461,41.36788896],[-71.515565762,41.367956517],[-71.515591007,41.368022701],[-71.515618163,41.368085248],[-71.515650174,41.368136382],[-71.515665974,41.368190285],[-71.515664561,41.368247691],[-71.515700367,41.368300997],[-71.51573332,41.368356408],[-71.515754828,41.368410356],[-71.515782837,41.368485848],[-71.515800519,41.368538356],[-71.51581626,41.368597977],[-71.51583206,41.368653322],[-71.515850684,41.36870798],[-71.515869338,41.368761906],[-71.515888963,41.368814391],[-71.515916032,41.368889883],[-71.515938451,41.368946713],[-71.515944718,41.369000572],[-71.515992,41.369048182],[-71.515998268,41.369103482],[-71.51601595,41.369157385],[-71.516036487,41.369212752],[-71.516055054,41.369281772],[-71.516084947,41.369358704],[-71.51610728,41.369431292],[-71.516123932,41.36949455],[-71.516149178,41.369560024],[-71.51617254,41.369621154],[-71.516192136,41.369677207],[-71.516213556,41.369743345],[-71.516223442,41.369818771],[-71.516234359,41.369889873],[-71.516238507,41.369968159],[-71.516237949,41.370042076],[-71.51623742,41.37011318],[-71.516239685,41.37018927],[-71.51624101,41.370266115],[-71.516252898,41.370334359],[-71.516255192,41.370403999],[-71.516253693,41.370480089],[-71.516248485,41.370534636],[-71.516245043,41.370612191],[-71.516257843,41.370684711],[-71.516259108,41.370768028],[-71.516262463,41.370828337],[-71.516266789,41.37088796],[-71.516267289,41.370943924],[-71.516266878,41.370999911],[-71.516266437,41.371058071],[-71.516266907,41.371119089],[-71.516273116,41.371179421],[-71.516281238,41.371241924],[-71.516281738,41.371300061],[-71.516281268,41.371362521],[-71.516280798,41.371425689],[-71.516280209,41.371499652],[-71.516283447,41.371576451],[-71.516289684,41.371631042],[-71.516292128,41.371689956],[-71.516297336,41.371754587],[-71.516297836,41.371813456],[-71.516297395,41.371870861],[-71.516299838,41.371928311],[-71.516304135,41.371990084],[-71.516306489,41.372054715],[-71.516306018,41.372115002],[-71.516308431,41.372175311],[-71.51631464,41.372236351],[-71.516318937,41.372299565],[-71.51632132,41.372359165],[-71.516322615,41.372438137],[-71.516325853,41.372517817],[-71.516325353,41.372581008],[-71.516299196,41.372638325],[-71.516262592,41.372686999],[-71.516218338,41.372739218],[-71.516177969,41.372786452],[-71.516127094,41.372829981],[-71.516075337,41.372869234],[-71.516033025,41.372917909],[-71.515989773,41.372970105],[-71.515940752,41.373023743],[-71.515884111,41.373078068],[-71.51582838,41.37313452],[-71.515770798,41.373190264],[-71.515711301,41.373242416],[-71.515652806,41.37329171],[-71.515600048,41.373335286],[-71.51557486,41.373387594],[-71.515517247,41.373443314],[-71.515480702,41.373489815],[-71.515434593,41.373531971],[-71.515387543,41.373579159],[-71.515343318,41.373631379],[-71.515296268,41.373676417],[-71.515241596,41.373718529],[-71.515200255,41.373771479],[-71.515158913,41.373817226],[-71.515105124,41.373870132],[-71.515046568,41.373923725],[-71.514984217,41.373978028],[-71.514920864,41.374033749],[-71.514865133,41.374093082],[-71.514802782,41.374151661],[-71.514741283,41.374213877],[-71.514681756,41.374272479],[-71.514626024,41.374329685],[-71.514567467,41.374383255],[-71.51451565,41.37443257],[-71.514511765,41.374439729],[-71.514472334,41.374485498],[-71.51442243,41.374534104],[-71.514369552,41.374593482],[-71.514341508,41.374645036],[-71.51431729,41.374697321],[-71.514280655,41.374752466],[-71.514256319,41.374817673],[-71.5142434,41.374887978],[-71.514249548,41.374955491],[-71.51425958,41.375015113],[-71.51426102,41.375073982],[-71.514249131,41.375132806],[-71.514235329,41.375193071],[-71.514243449,41.375253426],[-71.514239181,41.375312981],[-71.51424633,41.375376171],[-71.514251507,41.375445857],[-71.51425483,41.375509756],[-71.514261067,41.375567206],[-71.514263508,41.375622484],[-71.514268773,41.375679225],[-71.514309645,41.375695183],[-71.51434119,41.375683836],[-71.514421992,41.375712917],[-71.514469218,41.375769127],[-71.51448493,41.375830943],[-71.514484517,41.375888371],[-71.514484192,41.375928555],[-71.514484045,41.375950099],[-71.514480689,41.376015417],[-71.514477304,41.376082886],[-71.51448922,41.376146121],[-71.514501047,41.376216538],[-71.51451573,41.376294112],[-71.514537061,41.376368141],[-71.514560483,41.376421381],[-71.514554362,41.376477346],[-71.514566159,41.376551353],[-71.514580901,41.376620328],[-71.514621389,41.376680084],[-71.514697396,41.376714883],[-71.514765693,41.376758969],[-71.514822513,41.376807332],[-71.514879393,41.376847074],[-71.514931536,41.376886038],[-71.514983619,41.376930766],[-71.515034701,41.376974076],[-71.515108942,41.37698804],[-71.515172473,41.377031417],[-71.515214081,41.377077519],[-71.515256602,41.377127233],[-71.515286615,41.377188362],[-71.515311862,41.377251687],[-71.515339964,41.377317848],[-71.51536527,41.377375386],[-71.51539243,41.377437247],[-71.515415824,41.377496204],[-71.515443983,41.377546584],[-71.515474969,41.377610617],[-71.515493626,41.377667402],[-71.515516959,41.377726405],[-71.515540324,41.377787489],[-71.515572311,41.377845095],[-71.515621394,41.377908485],[-71.515661884,41.377972563],[-71.515694724,41.378040918],[-71.515724768,41.378099874],[-71.51571291,41.378158721],[-71.515677215,41.37821453],[-71.515635753,41.378275394],[-71.515592407,41.378334063],[-71.51555574,41.378390649],[-71.51552296,41.37844504],[-71.51548447,41.378492958],[-71.515444979,41.378546641],[-71.515411226,41.378597463],[-71.515368909,41.378643965],[-71.515341895,41.378687628],[-71.514959052,41.378772116],[-71.515012313,41.378910201],[-71.51545151,41.378815162],[-71.515497856,41.378859158],[-71.515559506,41.378901072],[-71.515635426,41.378941611],[-71.51570561,41.3789886],[-71.515762404,41.379041926],[-71.51582014,41.379096739],[-71.515875962,41.379148693],[-71.515925135,41.379201311],[-71.515955209,41.379256722],[-71.515986255,41.379309274],[-71.516022921,41.379375456],[-71.516043461,41.379432286],[-71.516067797,41.379489093],[-71.516085483,41.37954446],[-71.516107936,41.37959914],[-71.516150429,41.379652399],[-71.516203341,41.37971652],[-71.516235328,41.379769804],[-71.516264461,41.379824483],[-71.516292653,41.379877013],[-71.516318962,41.379930251],[-71.516343328,41.379982758],[-71.516362957,41.380035243],[-71.516382408,41.380107877],[-71.516403832,41.380174747],[-71.51642711,41.380244453],[-71.516441794,41.380317019]]],[[[-71.504319908,41.393066112],[-71.504260809,41.393114805],[-71.504196516,41.393152155],[-71.504125207,41.393181066],[-71.50412518,41.393228453],[-71.504196189,41.393264174],[-71.504274942,41.393278214],[-71.504369971,41.393245917],[-71.504434598,41.393216435],[-71.504476385,41.393164517],[-71.50448449,41.393104756],[-71.504468178,41.393054168],[-71.504398779,41.393034891],[-71.504319908,41.393066112]]],[[[-71.497930449,41.39870105],[-71.498008296,41.398716557],[-71.498076728,41.398710681],[-71.498105007,41.398654763],[-71.498108532,41.398598685],[-71.498113607,41.398534648],[-71.498117435,41.39848646],[-71.498152518,41.398433973],[-71.498174206,41.398379657],[-71.498193981,41.398325363],[-71.498221561,41.398275208],[-71.498263842,41.398211789],[-71.498322039,41.398164517],[-71.498382877,41.398135884],[-71.498457201,41.398110522],[-71.498538207,41.398085732],[-71.498612804,41.398066842],[-71.498700067,41.39805479],[-71.498771231,41.398046763],[-71.49884513,41.398035031],[-71.49892164,41.398016782],[-71.499004893,41.397999835],[-71.499077121,41.397970196],[-71.499128847,41.397927383],[-71.499182031,41.397873798],[-71.499220849,41.397819047],[-71.499243994,41.397754621],[-71.499260396,41.397686788],[-71.499284635,41.397625221],[-71.499308144,41.397568685],[-71.499341282,41.397514803],[-71.499382043,41.39746076],[-71.499398809,41.397402967],[-71.499424961,41.397340622],[-71.499458037,41.397285322],[-71.499491934,41.397226385],[-71.499527136,41.397176048],[-71.499555444,41.397120839],[-71.499584785,41.39706707],[-71.499627155,41.397005801],[-71.499665243,41.396956835],[-71.499666154,41.396954663],[-71.499716421,41.396901123],[-71.499757515,41.39685568],[-71.499833204,41.396815908],[-71.499894344,41.396818836],[-71.499955272,41.396864874],[-71.499999373,41.39687034],[-71.499974406,41.396817784],[-71.499936836,41.396760448],[-71.499958947,41.39671688],[-71.500016746,41.396659612],[-71.500078281,41.39662446],[-71.500121197,41.39662565],[-71.500140605,41.396633814],[-71.50018744,41.396588966],[-71.500160074,41.396547936],[-71.50020703,41.396505946],[-71.5002764,41.396475665],[-71.500354427,41.396471754],[-71.500401535,41.396433355],[-71.500473851,41.396405178],[-71.500530131,41.39638169],[-71.500602266,41.396374303],[-71.500676192,41.39636257],[-71.500765214,41.396347635],[-71.500847159,41.396345805],[-71.500926643,41.396354792],[-71.501034071,41.396371052],[-71.501111764,41.396382235],[-71.501205038,41.39640236],[-71.501284918,41.396420655],[-71.501313438,41.396442976],[-71.50134208,41.396467493],[-71.501433106,41.396478333],[-71.501512319,41.396504541],[-71.501583391,41.396518057],[-71.501657257,41.396528576],[-71.501726415,41.396517666],[-71.501752017,41.396466138],[-71.501763255,41.396460832],[-71.501850393,41.396445965],[-71.501933614,41.396453419],[-71.502013614,41.396427209],[-71.502090061,41.396406853],[-71.502162226,41.396399464],[-71.502244808,41.396389697],[-71.502334164,41.396384115],[-71.502409488,41.396383862],[-71.502431508,41.396385508],[-71.502501699,41.396400418],[-71.502540851,41.396449817],[-71.502587444,41.396494711],[-71.502653536,41.396526224],[-71.502722209,41.396550534],[-71.5027955,41.396595541],[-71.502866574,41.396632727],[-71.502952894,41.396668837],[-71.503018591,41.396691042],[-71.503107767,41.396727084],[-71.503177747,41.396760678],[-71.503254225,41.396766119],[-71.503339026,41.396764928],[-71.50343069,41.396767944],[-71.503502613,41.396777753],[-71.503515615,41.396816953],[-71.503611835,41.3968148],[-71.503688951,41.396813059],[-71.503760236,41.396806402],[-71.50380649,41.396747211],[-71.503846488,41.396697513],[-71.503887609,41.396652777],[-71.503927759,41.396607355],[-71.503968668,41.396556924],[-71.50401395,41.396497002],[-71.504051062,41.39644664],[-71.504060929,41.396383221],[-71.504017099,41.396336132],[-71.503942472,41.39630622],[-71.503890869,41.396303043],[-71.503836408,41.396252615],[-71.50377311,41.396219547],[-71.503710723,41.39618506],[-71.50364132,41.396141403],[-71.503636217,41.396138179],[-71.503569912,41.396096351],[-71.503505734,41.396064746],[-71.503437274,41.396046223],[-71.503379293,41.39605041],[-71.50335803,41.395995567],[-71.503343387,41.395939192],[-71.503316476,41.395909621],[-71.50328671,41.395880165],[-71.503275773,41.395821503],[-71.503280083,41.395761834],[-71.50329399,41.395704086],[-71.503282901,41.395640438],[-71.503273211,41.395612651],[-71.503267195,41.39555751],[-71.503281861,41.395494708],[-71.503291425,41.395423421],[-71.503291938,41.395364529],[-71.503305846,41.395306804],[-71.503323094,41.395260468],[-71.50329743,41.395262459],[-71.503258981,41.395302826],[-71.503194895,41.395274102],[-71.503125554,41.395231886],[-71.503054877,41.39520474],[-71.502986023,41.395176154],[-71.502925277,41.395135149],[-71.502876467,41.395083143],[-71.502799839,41.395073334],[-71.502723059,41.395085137],[-71.502655605,41.395114641],[-71.502598477,41.395164774],[-71.502535275,41.3952064],[-71.502497069,41.395252484],[-71.502460107,41.395282034],[-71.502407839,41.395334202],[-71.50235715,41.395378435],[-71.502306248,41.395417613],[-71.502283015,41.395479889],[-71.502268409,41.395544109],[-71.502258358,41.39560323],[-71.502209521,41.395645952],[-71.50213757,41.395682775],[-71.502061004,41.395723989],[-71.501990541,41.39575068],[-71.501930161,41.395742722],[-71.501874093,41.395698743],[-71.501809794,41.395664302],[-71.50174917,41.395626178],[-71.501684446,41.395580964],[-71.501632296,41.395540507],[-71.501568575,41.395496688],[-71.501524595,41.395445985],[-71.501471928,41.395392652],[-71.501416164,41.395332137],[-71.501370878,41.395272126],[-71.501349039,41.395202257],[-71.501318302,41.395149084],[-71.501281156,41.395101811],[-71.501245772,41.395050948],[-71.501208444,41.395000107],[-71.501181535,41.39499423],[-71.5012058,41.394933372],[-71.501242792,41.394880129],[-71.501289625,41.39483528],[-71.501336305,41.394786108],[-71.50139808,41.394756719],[-71.501462285,41.394717975],[-71.501504015,41.394663886],[-71.501488554,41.394611102],[-71.501411866,41.394599896],[-71.50132883,41.394598182],[-71.501247616,41.39459354],[-71.501168437,41.394593175],[-71.501139402,41.394581649],[-71.501091474,41.394527446],[-71.501047343,41.39447242],[-71.501033038,41.394449047],[-71.501002909,41.394386542],[-71.50095726,41.394340894],[-71.500908725,41.394295336],[-71.50090918,41.394234295],[-71.500931411,41.394169869],[-71.500896817,41.394139063],[-71.500941463,41.394087078],[-71.501027838,41.394053572],[-71.501087366,41.394016339],[-71.501113636,41.393957607],[-71.501133983,41.393893227],[-71.501146981,41.39383692],[-71.501145674,41.393779492],[-71.501128301,41.393726799],[-71.501069471,41.393685747],[-71.501018174,41.393642385],[-71.500976716,41.393582282],[-71.50092961,41.393524489],[-71.500869049,41.393488492],[-71.500804085,41.393461253],[-71.500811434,41.393405838],[-71.500791146,41.393351704],[-71.500813468,41.393313145],[-71.50089714,41.393283275],[-71.500968268,41.393273784],[-71.501044621,41.393276367],[-71.501113837,41.393290592],[-71.501186333,41.393291094],[-71.501265996,41.393304404],[-71.501343776,41.39329402],[-71.501397593,41.393256924],[-71.501479685,41.393235653],[-71.501545194,41.393204777],[-71.501614439,41.393171591],[-71.501680434,41.393128457],[-71.501729998,41.393079994],[-71.501776981,41.393038712],[-71.501826819,41.392997407],[-71.501841609,41.392986269],[-71.501930626,41.392970624],[-71.502034949,41.392956786],[-71.502118438,41.392946287],[-71.502194304,41.392935971],[-71.502291126,41.392925906],[-71.502389618,41.392908591],[-71.502465393,41.392896125],[-71.502535367,41.392881601],[-71.502610625,41.392855504],[-71.502677105,41.392825314],[-71.50275625,41.392801961],[-71.502820544,41.392764635],[-71.502888633,41.392726485],[-71.502972455,41.392700182],[-71.503042701,41.392668459],[-71.50312473,41.392621344],[-71.503200958,41.392572262],[-71.503258326,41.392528601],[-71.503282346,41.39246127],[-71.503303754,41.392399793],[-71.503358298,41.39235691],[-71.503438717,41.392317067],[-71.503509934,41.392285984],[-71.50358188,41.392248497],[-71.503656498,41.392208014],[-71.503715718,41.39216218],[-71.503767922,41.392108616],[-71.503807947,41.39206029],[-71.503859514,41.392013929],[-71.50390048,41.39196558],[-71.503950133,41.391919243],[-71.504038722,41.391893534],[-71.504126097,41.391885114],[-71.504212015,41.391887467],[-71.504286272,41.391908779],[-71.504335809,41.391955799],[-71.504358318,41.39201844],[-71.504382315,41.392094026],[-71.504409896,41.392164488],[-71.504450171,41.392218141],[-71.504536698,41.392236274],[-71.504614509,41.392251045],[-71.50470219,41.392274186],[-71.504790297,41.392307368],[-71.5048641,41.392341624],[-71.504933316,41.392356579],[-71.505027008,41.392338644],[-71.505094945,41.392320596],[-71.50515374,41.392289124],[-71.505200629,41.392245005],[-71.505236918,41.39219821],[-71.505287601,41.392130306],[-71.505339225,41.392061669],[-71.505391943,41.391998019],[-71.505428171,41.391949806],[-71.505443749,41.391933636],[-71.505497623,41.391897978],[-71.505567352,41.391877003],[-71.505629608,41.391836108],[-71.505716282,41.391809734],[-71.505776898,41.391775357],[-71.505813915,41.391724262],[-71.505888138,41.391696768],[-71.505959475,41.391668565],[-71.506034063,41.39164967],[-71.506122863,41.391628991],[-71.506196601,41.391612978],[-71.506272373,41.391601195],[-71.506354888,41.391590007],[-71.50643959,41.391585932],[-71.50652244,41.391584074],[-71.506613004,41.391583452],[-71.506697889,41.391584407],[-71.506777125,41.391586941],[-71.506869724,41.391589863],[-71.506965906,41.391586976],[-71.507043198,41.391588115],[-71.507125439,41.391571163],[-71.507187937,41.391536739],[-71.507258089,41.391502108],[-71.507314359,41.391454878],[-71.507347061,41.391390289],[-71.507351882,41.391319802],[-71.507340881,41.391259037],[-71.507303215,41.391198821],[-71.507248756,41.391148372],[-71.507223365,41.391133142],[-71.507164777,41.391098566],[-71.507143512,41.39104377],[-71.507095705,41.390992474],[-71.507074044,41.390926152],[-71.507048891,41.390869274],[-71.507035886,41.390806382],[-71.507038218,41.390745295],[-71.507023421,41.390684643],[-71.507006803,41.390626142],[-71.50700461,41.390571596],[-71.507019424,41.390512383],[-71.5070565,41.39046202],[-71.507114836,41.390419066],[-71.507134418,41.390359762],[-71.507153302,41.390307639],[-71.507156697,41.390249388],[-71.507157664,41.390201292],[-71.507187817,41.390168288],[-71.507175875,41.390108231],[-71.50719822,41.390046708],[-71.507227521,41.389992206],[-71.507246889,41.38992787],[-71.507240505,41.389863376],[-71.507248546,41.389802174],[-71.507266031,41.389738616],[-71.507270401,41.389704059],[-71.50734207,41.3896845],[-71.507417536,41.389664118],[-71.507495795,41.38964298],[-71.507568649,41.389629116],[-71.507664466,41.389640591],[-71.507732588,41.389675669],[-71.507775963,41.389734992],[-71.507830391,41.389784755],[-71.507894535,41.389815602],[-71.507986918,41.389813492],[-71.508063084,41.389811062],[-71.508138674,41.389817278],[-71.508150611,41.389829901],[-71.508197237,41.389899218],[-71.508231804,41.389953716],[-71.508275271,41.390015211],[-71.508334833,41.390075608],[-71.508397341,41.390136667],[-71.508460883,41.390199854],[-71.508525304,41.390260867],[-71.508582893,41.390318428],[-71.508634619,41.390372535],[-71.508673955,41.390426941],[-71.50869431,41.390482469],[-71.508693104,41.390548542],[-71.508666114,41.390612352],[-71.508641796,41.39067248],[-71.508636337,41.390727164],[-71.508637312,41.390751566],[-71.508596014,41.390791273],[-71.508589488,41.390819404],[-71.508609511,41.390890758],[-71.508617083,41.390961678],[-71.508627753,41.391037539],[-71.508629097,41.391095652],[-71.508640156,41.391134188],[-71.508690485,41.391176106],[-71.508748528,41.391221476],[-71.508795335,41.391272108],[-71.508843964,41.391319835],[-71.508897846,41.391356675],[-71.508974776,41.391372884],[-71.509063426,41.391372328],[-71.509133579,41.391362122],[-71.509186415,41.391299911],[-71.509242166,41.391240466],[-71.509302715,41.391180952],[-71.509356461,41.391117986],[-71.509408446,41.391058656],[-71.509458033,41.391010898],[-71.509518586,41.390975055],[-71.509575403,41.390940745],[-71.509603093,41.390894155],[-71.509582524,41.390832864],[-71.509549929,41.390780494],[-71.509506461,41.390718976],[-71.509459105,41.390654737],[-71.509414635,41.390591847],[-71.50936734,41.390529003],[-71.50931458,41.390473478],[-71.509256354,41.390423808],[-71.509183828,41.390397467],[-71.509097698,41.390390087],[-71.50902612,41.390411797],[-71.508950075,41.390417817],[-71.508883411,41.390395638],[-71.508815927,41.390377073],[-71.508767789,41.390364521],[-71.508698176,41.390316544],[-71.508645751,41.390268909],[-71.508594783,41.390210456],[-71.508542661,41.390146308],[-71.508487866,41.390087215],[-71.508443702,41.390031506],[-71.508405064,41.389971382],[-71.508369098,41.389906113],[-71.50833614,41.389843679],[-71.508323194,41.389782959],[-71.508324736,41.389726194],[-71.508348963,41.389663894],[-71.508371033,41.389595921],[-71.508387576,41.38953234],[-71.508411074,41.389475803],[-71.508423215,41.389421736],[-71.508452575,41.389369338],[-71.508487888,41.389321902],[-71.508541545,41.38928048],[-71.508594169,41.389237617],[-71.508655997,41.389209642],[-71.508724537,41.38918441],[-71.508779348,41.389148019],[-71.508851105,41.389106161],[-71.50891363,41.389072491],[-71.508969775,41.389021646],[-71.509019754,41.388960235],[-71.509073136,41.388911608],[-71.509119685,41.388859574],[-71.509164804,41.388796082],[-71.509213445,41.388725363],[-71.50926151,41.388663243],[-71.509310882,41.388609722],[-71.509347742,41.388554327],[-71.509373305,41.388501311],[-71.50939091,41.388440612],[-71.509406511,41.388377831],[-71.509428095,41.38832134],[-71.509442056,41.388265009],[-71.509454863,41.388203669],[-71.509466697,41.388141666],[-71.509468055,41.388079893],[-71.509463825,41.388021826],[-71.509458715,41.387965222],[-71.509437541,41.387912576],[-71.509404098,41.387863064],[-71.509355593,41.387817487],[-71.50930718,41.387775524],[-71.509250991,41.387729422],[-71.509182081,41.387698644],[-71.509130058,41.387684765],[-71.509062394,41.387661169],[-71.50899473,41.387638258],[-71.50892069,41.387622003],[-71.508837297,41.387610963],[-71.508752505,41.387588465],[-71.508662553,41.387579712],[-71.508614113,41.387559979],[-71.508556012,41.387513899],[-71.508472586,41.387477747],[-71.50842141,41.387438002],[-71.508378764,41.387372184],[-71.508329621,41.387311535],[-71.508265568,41.387258412],[-71.508198145,41.38721757],[-71.508135767,41.387207511],[-71.50806893,41.387228397],[-71.50798232,41.387232497],[-71.507887055,41.387234653],[-71.507795011,41.387244631],[-71.50772055,41.387266431],[-71.507659028,41.387301565],[-71.507591767,41.387336126],[-71.507518062,41.387328469],[-71.507490272,41.38730105],[-71.507483436,41.38727324],[-71.507417659,41.38727329],[-71.507382227,41.387340828],[-71.507361704,41.387400178],[-71.50735749,41.38746202],[-71.507425275,41.387489232],[-71.507497557,41.387532063],[-71.507520856,41.387590427],[-71.507524386,41.387655699],[-71.507508449,41.387709903],[-71.507470647,41.387766029],[-71.507434392,41.387813511],[-71.507396407,41.387864629],[-71.507323344,41.387897178],[-71.507306557,41.387954264],[-71.507301645,41.388022578],[-71.507303262,41.388087164],[-71.507307367,41.38814235],[-71.507286053,41.388181597],[-71.507211686,41.388229973],[-71.507190374,41.38829289],[-71.507193538,41.388348854],[-71.507238642,41.388403832],[-71.507227104,41.388425605],[-71.507176634,41.388451177],[-71.507171631,41.388516587],[-71.507141206,41.388566812],[-71.507119856,41.388557254],[-71.507103451,41.388504493],[-71.507043742,41.388465663],[-71.506978232,41.388424042],[-71.506916671,41.388386699],[-71.506901514,41.388364744],[-71.50695675,41.388315409],[-71.506941652,41.388271225],[-71.506880273,41.388238158],[-71.506835931,41.388202551],[-71.506875922,41.388152828],[-71.506893288,41.388110769],[-71.506928389,41.388058302],[-71.506953745,41.388048397],[-71.507026844,41.388065408],[-71.507061427,41.38800002],[-71.507082891,41.387940647],[-71.507125766,41.387891564],[-71.507141825,41.387840219],[-71.507074979,41.387789337],[-71.507008741,41.387753526],[-71.506968013,41.387712773],[-71.507019482,41.387664925],[-71.507092393,41.387628099],[-71.507167217,41.387591982],[-71.507189411,41.387550517],[-71.507152479,41.387509009],[-71.507082659,41.387479716],[-71.507052862,41.387425813],[-71.507067462,41.387361614],[-71.507116744,41.387305922],[-71.507172645,41.387249383],[-71.507217372,41.387198791],[-71.507280987,41.387144263],[-71.507322403,41.387083014],[-71.507361237,41.387029746],[-71.507419387,41.386981737],[-71.507508577,41.38697112],[-71.507581791,41.386942161],[-71.507603254,41.386882079],[-71.507611142,41.386817309],[-71.507637373,41.386757844],[-71.50766825,41.386694697],[-71.507698822,41.386624346],[-71.507718826,41.386552097],[-71.507731966,41.386475686],[-71.507753883,41.386403391],[-71.507782179,41.386347471],[-71.507799755,41.38628748],[-71.507817455,41.386252602],[-71.507858909,41.386263897],[-71.50793316,41.386285207],[-71.508000695,41.386257826],[-71.508023013,41.386243691],[-71.508117366,41.386242244],[-71.508208772,41.386240202],[-71.508281927,41.386234227],[-71.508373243,41.386228572],[-71.508444911,41.386232683],[-71.508529911,41.386236519],[-71.508598393,41.386256525],[-71.508628373,41.386314706],[-71.508631783,41.386377096],[-71.508645608,41.386436375],[-71.508653937,41.386502241],[-71.508692726,41.386566687],[-71.508737162,41.386628891],[-71.508768691,41.386678426],[-71.508830191,41.386714397],[-71.508916955,41.386738267],[-71.509004113,41.386748506],[-71.509053643,41.386747404],[-71.509100081,41.386788705],[-71.50914743,41.38682925],[-71.509206259,41.386869566],[-71.509294937,41.386894122],[-71.509373074,41.386893086],[-71.509456005,41.386868219],[-71.509539909,41.386845525],[-71.509617985,41.386843025],[-71.50971395,41.386858089],[-71.509806394,41.386881844],[-71.509877762,41.38690178],[-71.509950132,41.386923844],[-71.510015936,41.386900808],[-71.510090334,41.386877588],[-71.510170441,41.38685423],[-71.510256197,41.386829317],[-71.510331262,41.386798892],[-71.510392568,41.386758772],[-71.510444823,41.3867066],[-71.510507402,41.386650607],[-71.510573293,41.386605318],[-71.51064125,41.386563596],[-71.510710118,41.386521828],[-71.510771271,41.386477339],[-71.510818182,41.38643395],[-71.510821553,41.386431251],[-71.510829235,41.386425075],[-71.510890026,41.386395704],[-71.510973048,41.386373717],[-71.511046046,41.386339039],[-71.51109165,41.386287759],[-71.511112077,41.386226281],[-71.51114122,41.386167433],[-71.511163896,41.386114531],[-71.511194193,41.386061423],[-71.51120002,41.386041205],[-71.511266307,41.386005978],[-71.511337697,41.38597919],[-71.511418561,41.3859508],[-71.511489558,41.385937711],[-71.511570239,41.38590573],[-71.511628689,41.385864946],[-71.511708276,41.385829397],[-71.511777478,41.385795496],[-71.511858494,41.385770696],[-71.511939601,41.385748755],[-71.512033674,41.385717207],[-71.512100509,41.385696319],[-71.512183194,41.385665733],[-71.512234749,41.385620032],[-71.512239595,41.385550254],[-71.512237215,41.385490723],[-71.512228063,41.385428493],[-71.512212321,41.385368529],[-71.512168915,41.385307789],[-71.512138143,41.385253201],[-71.512131399,41.385238747],[-71.512107915,41.385188526],[-71.51208127,41.385118065],[-71.512054778,41.385051881],[-71.512012827,41.384979592],[-71.51197656,41.384930859],[-71.511936558,41.384883681],[-71.511876875,41.384821137],[-71.511822174,41.384764927],[-71.51175809,41.384711806],[-71.51168156,41.384681236],[-71.511602057,41.384671547],[-71.511512475,41.384672127],[-71.511436498,41.384679614],[-71.511365837,41.384700593],[-71.511283759,41.384721825],[-71.511185007,41.384731943],[-71.511105387,41.384743089],[-71.511033602,41.384759791],[-71.510961817,41.384776516],[-71.510888088,41.384792532],[-71.510816364,41.384811384],[-71.510741031,41.384858299],[-71.510659898,41.384903201],[-71.510572933,41.384946114],[-71.510494532,41.384988088],[-71.510430979,41.38502041],[-71.510385132,41.385065949],[-71.51035116,41.385122008],[-71.510299424,41.385187056],[-71.510242524,41.385238931],[-71.510233173,41.385247463],[-71.510172812,41.385311254],[-71.510121805,41.385371293],[-71.510054882,41.385414455],[-71.509975687,41.385437081],[-71.509885955,41.385457764],[-71.5097869,41.385483684],[-71.509710377,41.385501232],[-71.509632912,41.385518758],[-71.50953659,41.385541751],[-71.509446583,41.385555274],[-71.509356637,41.385570948],[-71.509259404,41.385595404],[-71.50917189,41.385624663],[-71.509096734,41.385652205],[-71.509005602,41.385661451],[-71.508922886,41.385690595],[-71.508859666,41.385731515],[-71.508841211,41.38579441],[-71.508814254,41.385859639],[-71.508750062,41.38589985],[-71.508691186,41.385953577],[-71.508624238,41.386043417],[-71.50854556,41.386078254],[-71.508479665,41.386099803],[-71.508400042,41.386111679],[-71.508310519,41.386113698],[-71.508220782,41.386110685],[-71.508129768,41.386099097],[-71.50804161,41.386088194],[-71.507943824,41.386074593],[-71.507878956,41.386049485],[-71.50781937,41.386013491],[-71.507745116,41.385967801],[-71.507682767,41.385934003],[-71.507616562,41.385899587],[-71.50754565,41.385866727],[-71.507483119,41.385828675],[-71.507415092,41.385796501],[-71.507347854,41.385759226],[-71.507302176,41.38571358],[-71.507227139,41.385720308],[-71.507207766,41.385736525],[-71.507145844,41.385714253],[-71.507132051,41.385654973],[-71.507079723,41.385609487],[-71.507019346,41.385554122],[-71.506980076,41.385501179],[-71.506979736,41.385445146],[-71.506990509,41.385380285],[-71.506967211,41.385321944],[-71.506978895,41.385256328],[-71.506988216,41.385239175],[-71.507013538,41.385192403],[-71.507053523,41.385118964],[-71.507102347,41.385052522],[-71.507173524,41.385020042],[-71.507234102,41.384984955],[-71.507256689,41.384929858],[-71.507272169,41.384864174],[-71.507313888,41.384810105],[-71.507309599,41.384750642],[-71.507307285,41.384692506],[-71.507304635,41.384625793],[-71.507308941,41.384566856],[-71.507317648,41.384497695],[-71.507318377,41.384491954],[-71.50738746,41.384479646],[-71.507376552,41.384420984],[-71.507338893,41.384385217],[-71.50725845,41.384375548],[-71.507118912,41.384359936],[-71.507090914,41.384357788],[-71.507018519,41.384359416],[-71.50695976,41.384368659],[-71.506937899,41.384394275],[-71.50690854,41.384446628],[-71.50688814,41.384508859],[-71.506866555,41.384564642],[-71.506801239,41.384600552],[-71.506751655,41.384648331],[-71.506692837,41.384679827],[-71.506647625,41.384717475],[-71.506589259,41.384712309],[-71.506532841,41.384755949],[-71.506495616,41.384802721],[-71.506444816,41.384842679],[-71.506364225,41.384878224],[-71.506298059,41.38491633],[-71.506241121,41.384922645],[-71.506172185,41.384891911],[-71.506103461,41.384865431],[-71.506019435,41.384861593],[-71.505933861,41.384867109],[-71.505856792,41.384895427],[-71.505811064,41.384943823],[-71.505778879,41.384997684],[-71.505745601,41.385047978],[-71.505680924,41.385099691],[-71.505609594,41.385127162],[-71.505539751,41.385145233],[-71.505466657,41.385152624],[-71.505384392,41.385145881],[-71.505297176,41.38513493],[-71.505241575,41.385151239],[-71.5051772,41.385185731],[-71.505108298,41.385203093],[-71.505038667,41.385226195],[-71.504987925,41.385239279],[-71.50495941,41.385246622],[-71.504885408,41.385279901],[-71.50484244,41.385302408],[-71.504764911,41.385294818],[-71.504695948,41.385310029],[-71.504641594,41.385357922],[-71.504599965,41.385413431],[-71.504534221,41.385438614],[-71.504462221,41.38545028],[-71.504385515,41.385487196],[-71.504346527,41.385536918],[-71.504296029,41.385585428],[-71.504265028,41.385644984],[-71.504238461,41.385720251],[-71.504200446,41.385795085],[-71.504173878,41.38584595],[-71.504149314,41.385899605],[-71.504131461,41.385954563],[-71.504144554,41.386019629],[-71.504117926,41.386093433],[-71.504077511,41.386156122],[-71.504038097,41.386220183],[-71.504003452,41.386283421],[-71.503959908,41.386338952],[-71.50394497,41.386394574],[-71.503947646,41.386462018],[-71.503971154,41.386502407],[-71.503966145,41.386544168],[-71.503907719,41.386560568],[-71.50386153,41.386573789],[-71.503818501,41.386618571],[-71.503759378,41.386666555],[-71.50371811,41.386707723],[-71.503712798,41.386741571],[-71.503668372,41.386799298],[-71.50364399,41.386857321],[-71.503622645,41.386920238],[-71.503601056,41.386976729],[-71.503547794,41.387026748],[-71.503509623,41.387074983],[-71.503474673,41.38713033],[-71.50343128,41.387190229],[-71.503382572,41.387235789],[-71.50331379,41.387280411],[-71.503236717,41.387308041],[-71.503154026,41.387338621],[-71.503061768,41.387367234],[-71.502960612,41.387388941],[-71.502864498,41.387417645],[-71.502785633,41.387448134],[-71.50271843,41.387484842],[-71.502666016,41.387532688],[-71.502605615,41.387572096],[-71.50256547,41.387617494],[-71.502522986,41.387675906],[-71.502487245,41.387736308],[-71.502460827,41.387790763],[-71.50243778,41.387858757],[-71.502413122,41.387910308],[-71.50237902,41.387963459],[-71.502360467,41.388024912],[-71.50235145,41.388086137],[-71.502349173,41.388100591],[-71.502305262,41.38814679],[-71.502252422,41.388184573],[-71.502183213,41.388217714],[-71.502118802,41.388252912],[-71.502085427,41.388276652],[-71.502007077,41.388296368],[-71.501928756,41.388293099],[-71.501851194,41.388284089],[-71.501781134,41.388295709],[-71.501690331,41.388289855],[-71.501602991,41.388276043],[-71.501520084,41.388277187],[-71.501443737,41.388274604],[-71.501359585,41.388267881],[-71.501272458,41.388259077],[-71.501185937,41.388264613],[-71.50108317,41.388269782],[-71.500985747,41.388289223],[-71.500901657,41.388307657],[-71.500831657,41.388322135],[-71.500763966,41.388345943],[-71.500693996,41.388384824],[-71.500640396,41.388427683],[-71.50058877,41.388471938],[-71.50054185,41.388514614],[-71.500478926,41.388561979],[-71.500412024,41.388605845],[-71.500383873,41.38864166],[-71.500378892,41.388707824],[-71.500340172,41.388765435],[-71.500300997,41.388811542],[-71.500239986,41.388859592],[-71.500163912,41.388888569],[-71.500080427,41.388922784],[-71.499993208,41.388958461],[-71.499928977,41.388997959],[-71.499917255,41.389063597],[-71.499988318,41.389148103],[-71.4999909,41.389213398],[-71.499971403,41.389274142],[-71.499943129,41.389330815],[-71.499900521,41.389386344],[-71.499866659,41.389445967],[-71.499845157,41.389504607],[-71.49982563,41.389565351],[-71.499806892,41.389621749],[-71.499800696,41.38968151],[-71.499802093,41.389741064],[-71.499795807,41.389798629],[-71.499792587,41.389813037],[-71.49974512,41.38984286],[-71.499666919,41.389842471],[-71.499599742,41.389806656],[-71.499548995,41.389800595],[-71.499503349,41.38985187],[-71.499435109,41.389886427],[-71.499410145,41.389930087],[-71.499412391,41.38998676],[-71.499411753,41.390042792],[-71.499408321,41.390052192],[-71.499343452,41.390099602],[-71.499283866,41.390135417],[-71.499219422,41.390169859],[-71.49916184,41.390207046],[-71.499107144,41.390246337],[-71.499043033,41.390288715],[-71.498986788,41.390336651],[-71.498946031,41.390391448],[-71.498910741,41.390438881],[-71.498903573,41.390450522],[-71.498866522,41.390501614],[-71.498815925,41.390548727],[-71.498785797,41.390605399],[-71.498737083,41.390627332],[-71.498649891,41.390640024],[-71.498583139,41.390615689],[-71.498530601,41.390565167],[-71.498506823,41.390494635],[-71.49849419,41.390441072],[-71.498477367,41.390377561],[-71.498454773,41.390312723],[-71.498416904,41.39024681],[-71.498376726,41.390195282],[-71.49832516,41.390144738],[-71.498249299,41.390083307],[-71.498194331,41.390043626],[-71.498123875,41.389998524],[-71.498068816,41.389955961],[-71.497995627,41.38991381],[-71.497917427,41.389888285],[-71.497829781,41.389866557],[-71.497746752,41.389840437],[-71.497663996,41.389820744],[-71.497585067,41.389802446],[-71.497499213,41.389800798],[-71.497426903,41.389804547],[-71.49735025,41.389818473],[-71.497270773,41.389834618],[-71.497187954,41.389861626],[-71.49712445,41.389895381],[-71.497070604,41.389931743],[-71.497061097,41.389955643],[-71.497090766,41.390007399],[-71.497136803,41.390062381],[-71.497148766,41.390123857],[-71.497182808,41.390189107],[-71.497218216,41.390240017],[-71.497280017,41.390283861],[-71.49737064,41.390284687],[-71.497446746,41.390280846],[-71.497512528,41.390233415],[-71.497578553,41.390190991],[-71.497639962,41.390153005],[-71.497713852,41.390116871],[-71.497798735,41.390117147],[-71.497863907,41.390149396],[-71.497924827,41.390196121],[-71.497983986,41.390245042],[-71.498058087,41.390262768],[-71.4980921,41.390302243],[-71.498127964,41.390365297],[-71.498155781,41.390417831],[-71.498186635,41.39047455],[-71.49821837,41.390529119],[-71.498240508,41.390582476],[-71.498248767,41.390646902],[-71.498243299,41.390701608],[-71.498199809,41.390734175],[-71.498127862,41.390747302],[-71.498043707,41.390764956],[-71.497981781,41.390814447],[-71.497953596,41.390873246],[-71.497929207,41.390931222],[-71.497901994,41.390989267],[-71.497886292,41.391026248],[-71.497841676,41.391079695],[-71.497860413,41.391143161],[-71.497839151,41.391208227],[-71.497787582,41.391253921],[-71.497720371,41.391290604],[-71.497661938,41.391331403],[-71.497646994,41.391387756],[-71.497653217,41.391448637],[-71.497681885,41.391498243],[-71.497722275,41.391554757],[-71.49779823,41.39159469],[-71.497862765,41.391635607],[-71.497924355,41.391674442],[-71.497998792,41.391700081],[-71.498059775,41.391698664],[-71.498110161,41.391647275],[-71.498167532,41.391602907],[-71.498223353,41.391567893],[-71.498311093,41.391568832],[-71.498393336,41.391551887],[-71.498467895,41.391532242],[-71.498550198,41.391539744],[-71.498624545,41.391515091],[-71.498660322,41.391455423],[-71.498738921,41.391417756],[-71.498805554,41.391368151],[-71.498861496,41.391336018],[-71.498922935,41.39134686],[-71.498958315,41.391397724],[-71.498987834,41.391468119],[-71.499010823,41.391542997],[-71.499027434,41.3916015],[-71.49903457,41.39166094],[-71.498995574,41.391711369],[-71.498963442,41.391742952],[-71.498943185,41.391712535],[-71.498946679,41.391656456],[-71.498906834,41.391613551],[-71.498845334,41.391625718],[-71.498783864,41.391661555],[-71.498717626,41.391698261],[-71.498699038,41.391758959],[-71.498684337,41.391820297],[-71.498647315,41.391872853],[-71.498620983,41.391930143],[-71.498602273,41.391987296],[-71.49856358,41.392045615],[-71.498517112,41.392099749],[-71.498468731,41.392153974],[-71.498474531,41.392179726],[-71.498568132,41.392208475],[-71.498658575,41.392228717],[-71.498738328,41.392244132],[-71.498809607,41.392262635],[-71.498876361,41.39228697],[-71.498941323,41.392314232],[-71.498998844,41.392346686],[-71.499067937,41.392381747],[-71.499154614,41.39240352],[-71.499226744,41.392419827],[-71.499264495,41.392434053],[-71.499290583,41.39246646],[-71.499330824,41.392495003],[-71.499316822,41.392550623],[-71.499265131,41.392594123],[-71.499175355,41.392613379],[-71.499082511,41.392628427],[-71.49900297,41.3926424],[-71.498945539,41.392684618],[-71.498882822,41.392738455],[-71.498827577,41.392787786],[-71.498786575,41.392835379],[-71.498732605,41.392892577],[-71.498672501,41.392939895],[-71.498601979,41.392965166],[-71.498527144,41.393001323],[-71.498454922,41.393031671],[-71.498376048,41.393062156],[-71.498298935,41.393088342],[-71.498216721,41.393107369],[-71.498127976,41.393129483],[-71.49804397,41.393150774],[-71.49795972,41.393166279],[-71.497886981,41.393182996],[-71.497820255,41.393207489],[-71.49775517,41.393224732],[-71.4976855,41.393199733],[-71.497648783,41.393139537],[-71.497596304,41.393090479],[-71.497552116,41.393034034],[-71.497524664,41.392966429],[-71.497503164,41.392905158],[-71.497470092,41.392840572],[-71.497426634,41.392778386],[-71.497375309,41.392734314],[-71.497293156,41.392730424],[-71.497206812,41.392740965],[-71.497103035,41.392744736],[-71.497025194,41.392753653],[-71.496956252,41.392769569],[-71.496877378,41.392800054],[-71.4968081,41.392832482],[-71.496745565,41.392866214],[-71.496690926,41.392907631],[-71.496644122,41.392953233],[-71.496610742,41.393001351],[-71.496567858,41.39300087],[-71.496510732,41.392979187],[-71.496446072,41.392983507],[-71.496411665,41.392934015],[-71.496400795,41.392876107],[-71.496356729,41.392846968],[-71.496281834,41.392857258],[-71.496205268,41.392874042],[-71.496110298,41.39288337],[-71.496027294,41.392881652],[-71.495932022,41.39285935],[-71.495855763,41.392835951],[-71.495785183,41.392811683],[-71.495688424,41.392775086],[-71.495621731,41.392752168],[-71.495535571,41.392719666],[-71.495456003,41.392684831],[-71.495381232,41.392650614],[-71.495311746,41.392629227],[-71.495225584,41.392620373],[-71.495156611,41.392635556],[-71.495060943,41.392652064],[-71.494963785,41.392678681],[-71.494867659,41.39270667],[-71.494770562,41.392733973],[-71.494700616,41.392749934],[-71.494616549,41.392769735],[-71.494543142,41.392769984],[-71.494464849,41.392743747],[-71.494412459,41.39274347],[-71.494438058,41.392789533],[-71.494510064,41.392826014],[-71.494577453,41.392866132],[-71.494640135,41.392907805],[-71.494713144,41.392945636],[-71.494796782,41.39298683],[-71.494865721,41.393019034],[-71.494940552,41.393054692],[-71.495025346,41.393077223],[-71.495108259,41.393076061],[-71.495182881,41.393057882],[-71.495262302,41.393041716],[-71.495333582,41.393060221],[-71.495401155,41.393080944],[-71.495436778,41.393113902],[-71.495444277,41.393158957],[-71.495511334,41.393190475],[-71.495577936,41.393211221],[-71.495640467,41.393249325],[-71.495689726,41.393289854],[-71.495736008,41.393349844],[-71.495748182,41.39341777],[-71.495748755,41.393480229],[-71.495719777,41.393542618],[-71.495678773,41.39359021],[-71.495620669,41.393639631],[-71.49559652,41.393704056],[-71.495624609,41.39376304],[-71.495672441,41.393815094],[-71.495703082,41.393867515],[-71.495736669,41.393920598],[-71.495755434,41.393985528],[-71.495783007,41.394055238],[-71.495815774,41.394112667],[-71.495859231,41.394174189],[-71.495911193,41.39423402],[-71.495967135,41.394274434],[-71.496042242,41.394292825],[-71.496127494,41.394303119],[-71.496211046,41.394318491],[-71.496300185,41.394330135],[-71.496399712,41.394339355],[-71.496496202,41.394344366],[-71.496588045,41.394352351],[-71.496668012,41.394373554],[-71.49673832,41.394415043],[-71.496800215,41.394461037],[-71.496876021,41.394497357],[-71.496947818,41.394528051],[-71.497002697,41.394566315],[-71.497063166,41.394600851],[-71.49713958,41.394627863],[-71.497207125,41.394647899],[-71.497280533,41.394671366],[-71.497373438,41.394706611],[-71.497464127,41.39473328],[-71.497546463,41.394765895],[-71.49761088,41.394803198],[-71.497657772,41.394856007],[-71.497663784,41.394911147],[-71.497663144,41.39496718],[-71.497669186,41.395023761],[-71.497733391,41.395055369],[-71.497826815,41.395054685],[-71.49790554,41.395019878],[-71.497940651,41.394968832],[-71.497966955,41.394910787],[-71.497971118,41.394847505],[-71.497946822,41.394787744],[-71.49789571,41.394676936],[-71.497898201,41.394667536],[-71.497931369,41.394614363],[-71.497930368,41.394565581],[-71.497894075,41.394514671],[-71.497869689,41.394453469],[-71.497869175,41.394392474],[-71.497886124,41.39433898],[-71.497918319,41.394285121],[-71.497978911,41.394250725],[-71.498027659,41.394205831],[-71.497999901,41.394154761],[-71.497947057,41.394097081],[-71.497898676,41.394055067],[-71.497831132,41.39400992],[-71.497801004,41.393995534],[-71.497726322,41.393964177],[-71.497655345,41.393953564],[-71.49762382,41.393927719],[-71.497646236,41.393867616],[-71.497645843,41.393810189],[-71.497674911,41.393749926],[-71.497676098,41.393683876],[-71.497674248,41.393612818],[-71.497700278,41.393548347],[-71.497757438,41.393498971],[-71.497825136,41.393474455],[-71.49787115,41.393432489],[-71.497900398,41.393401706],[-71.497973532,41.393394297],[-71.4980487,41.393390456],[-71.498120528,41.393398187],[-71.498207267,41.393397663],[-71.498280249,41.393386686],[-71.498352321,41.39335277],[-71.49837683,41.393346458],[-71.498454004,41.393320319],[-71.498536188,41.393301223],[-71.4986092,41.393290955],[-71.49869099,41.393285536],[-71.498776211,41.393270694],[-71.498858577,41.393280346],[-71.498937754,41.393281444],[-71.499014653,41.393296951],[-71.499082654,41.39332913],[-71.499142423,41.393369451],[-71.499189103,41.393416519],[-71.499220627,41.393466034],[-71.49922418,41.393508298],[-71.499185274,41.393560191],[-71.499173186,41.39361572],[-71.499170877,41.393677516],[-71.499176282,41.39374201],[-71.49919089,41.393773251],[-71.499104758,41.393765864],[-71.499038487,41.393801106],[-71.498963501,41.393786286],[-71.498883108,41.393778761],[-71.498817203,41.393751521],[-71.498736871,41.393745437],[-71.498652196,41.393773933],[-71.498583678,41.393801308],[-71.498518318,41.393835772],[-71.498453717,41.393890363],[-71.498417483,41.393937865],[-71.498369221,41.393995657],[-71.498331984,41.394066143],[-71.49831048,41.394124783],[-71.498259819,41.394168991],[-71.498250979,41.39423456],[-71.498230295,41.394290295],[-71.498199102,41.394345549],[-71.498167149,41.394405149],[-71.498142577,41.394458825],[-71.498117215,41.394516115],[-71.498146826,41.394565722],[-71.498202709,41.394604648],[-71.498267855,41.394636233],[-71.498347367,41.394670334],[-71.498421626,41.394690918],[-71.498500531,41.394685545],[-71.498564252,41.394657552],[-71.49864504,41.394650738],[-71.498713711,41.39465131],[-71.498775913,41.394608292],[-71.498817796,41.394559235],[-71.498882458,41.39453122],[-71.498964886,41.394541581],[-71.499037717,41.394550684],[-71.499111216,41.394576299],[-71.499186263,41.394617695],[-71.499266049,41.394658977],[-71.499330376,41.394694152],[-71.499402387,41.394706182],[-71.499435766,41.394682443],[-71.499450588,41.394623231],[-71.499446033,41.394556587],[-71.499441629,41.394494197],[-71.499437833,41.394422521],[-71.499440233,41.394362852],[-71.499468934,41.3943414],[-71.499551606,41.394358232],[-71.49960184,41.394398713],[-71.499613624,41.394455135],[-71.499615962,41.39451398],[-71.499611436,41.39456864],[-71.499632635,41.394598326],[-71.49970738,41.394607406],[-71.499778237,41.394639562],[-71.499866132,41.394643336],[-71.499947741,41.394609899],[-71.500011461,41.394581174],[-71.500057261,41.394534198],[-71.500095134,41.394527611],[-71.500162134,41.394558395],[-71.500248632,41.394552151],[-71.500288116,41.394562031],[-71.500271897,41.394609053],[-71.500219172,41.394650448],[-71.500155696,41.394684914],[-71.500071991,41.394713365],[-71.500002562,41.394741495],[-71.499899268,41.394758168],[-71.499810734,41.394761598],[-71.49974015,41.394736624],[-71.499708473,41.394683519],[-71.499642567,41.394655548],[-71.499571861,41.394675788],[-71.499545377,41.394729556],[-71.499554184,41.394783164],[-71.499636188,41.394783485],[-71.499685208,41.394818271],[-71.499699847,41.394874669],[-71.499680196,41.394883726],[-71.499616051,41.394852142],[-71.499568611,41.394810106],[-71.499512757,41.394820717],[-71.499521777,41.39487938],[-71.499544829,41.394932005],[-71.49954416,41.394987328],[-71.499494441,41.395031491],[-71.499424495,41.395071102],[-71.49935549,41.395086333],[-71.499281291,41.395090861],[-71.499209431,41.395082422],[-71.499141854,41.39506026],[-71.499082964,41.395018498],[-71.499085425,41.394960293],[-71.499084879,41.394898543],[-71.499076983,41.394867142],[-71.498993551,41.394903505],[-71.498945745,41.394948353],[-71.498897423,41.395004019],[-71.498861613,41.395063002],[-71.498837315,41.395123128],[-71.498824375,41.395181562],[-71.498822947,41.395241917],[-71.49881186,41.395298864],[-71.498817356,41.395365554],[-71.498823672,41.395428539],[-71.498819632,41.395494703],[-71.498769912,41.395538911],[-71.498720374,41.395588105],[-71.498681345,41.395637093],[-71.498647266,41.395691707],[-71.498617045,41.395746938],[-71.498590802,41.395806424],[-71.498608204,41.395860604],[-71.498685075,41.395899782],[-71.49877115,41.395906461],[-71.498876451,41.395893334],[-71.498978927,41.395880254],[-71.499054645,41.395866349],[-71.499098443,41.395816515],[-71.499106796,41.395762495],[-71.49913972,41.395703627],[-71.49918783,41.39564222],[-71.499222455,41.395578252],[-71.499274058,41.395533289],[-71.499342122,41.39549441],[-71.499411522,41.395464885],[-71.499481621,41.395453221],[-71.499500603,41.395475062],[-71.499471658,41.395538916],[-71.499422121,41.39558811],[-71.499350412,41.395606978],[-71.499281801,41.395632226],[-71.499232173,41.39567783],[-71.499206508,41.395729379],[-71.499219628,41.395795132],[-71.499284442,41.395842497],[-71.499340781,41.395892926],[-71.499384152,41.395952252],[-71.499409665,41.396018485],[-71.499404227,41.396073854],[-71.499362374,41.396124329],[-71.499352715,41.396138234],[-71.499320885,41.396184158],[-71.499287505,41.3962323],[-71.499220624,41.396276874],[-71.499145604,41.396284306],[-71.499070281,41.396308274],[-71.498992496,41.396342327],[-71.498914074,41.396360623],[-71.498834043,41.396362406],[-71.498761635,41.39636332],[-71.498676258,41.396373862],[-71.498577729,41.396390442],[-71.498488859,41.396409675],[-71.498430604,41.396455461],[-71.498366243,41.396515106],[-71.498297751,41.396567615],[-71.498240133,41.396628518],[-71.498187648,41.396675607],[-71.498123287,41.396712245],[-71.498047355,41.396744857],[-71.497981111,41.396781494],[-71.497934184,41.396824924],[-71.497868517,41.396875924],[-71.49781184,41.396912378],[-71.497744047,41.396958415],[-71.497688189,41.397016413],[-71.497634974,41.397069288],[-71.497579846,41.397122209],[-71.497525476,41.39716939],[-71.497480675,41.397217782],[-71.497458409,41.397281476],[-71.497419287,41.397328314],[-71.497368744,41.397376134],[-71.497321057,41.397423841],[-71.497276619,41.397481565],[-71.497292137,41.3975365],[-71.497318589,41.397601978],[-71.497360715,41.397654878],[-71.497415931,41.397700277],[-71.497470176,41.397746431],[-71.497520897,41.397799148],[-71.497557191,41.397848618],[-71.4975598,41.397914599],[-71.497543913,41.397970951],[-71.497527418,41.398035217],[-71.497516633,41.398100077],[-71.497503813,41.398161415],[-71.497486984,41.398218499],[-71.497450169,41.398275331],[-71.497402694,41.398328092],[-71.497351148,41.398375204],[-71.497312937,41.398421287],[-71.497348168,41.398467874],[-71.497350142,41.398469979],[-71.497349805,41.398533192],[-71.497375316,41.39859938],[-71.497413706,41.398653789],[-71.497502427,41.398655392],[-71.497584618,41.398660723],[-71.497669482,41.398660244],[-71.497749728,41.398664202],[-71.497770594,41.398685289],[-71.497784079,41.398712231],[-71.497837112,41.398703152],[-71.497846042,41.398687875],[-71.497930449,41.39870105]]],[[[-71.502428571,41.399910771],[-71.502381767,41.399956353],[-71.502370014,41.400020505],[-71.502366827,41.400084496],[-71.502369381,41.400149036],[-71.502372694,41.400207859],[-71.502379804,41.400267276],[-71.502397575,41.400330055],[-71.502420145,41.40039416],[-71.502445267,41.400450306],[-71.502478013,41.400507001],[-71.502519717,41.400524039],[-71.502548601,41.400459475],[-71.502565457,41.400403808],[-71.502582342,41.400348164],[-71.502590602,41.400291948],[-71.502591906,41.400228735],[-71.502589595,41.400171353],[-71.502586495,41.400116876],[-71.502582301,41.400059563],[-71.50257434,41.400002982],[-71.5025453,41.399944045],[-71.502491931,41.399897139],[-71.502428571,41.399910771]]],[[[-71.502550986,41.400855018],[-71.502531396,41.400913612],[-71.502496194,41.400963951],[-71.502510319,41.400983733],[-71.502565083,41.400945882],[-71.502609611,41.400914754],[-71.50261216,41.400858676],[-71.502581785,41.400837796],[-71.502550986,41.400855018]]],[[[-71.500133631,41.402100612],[-71.50007039,41.402140795],[-71.500092959,41.402180453],[-71.500146905,41.402218738],[-71.500208263,41.402251831],[-71.500259142,41.402260041],[-71.500333834,41.402267657],[-71.500385229,41.402240647],[-71.500397257,41.402183654],[-71.500358073,41.402133591],[-71.500291187,41.402106375],[-71.500212515,41.402094506],[-71.500133631,41.402100612]]],[[[-71.501273597,41.401488343],[-71.501325296,41.401541012],[-71.501382523,41.401589268],[-71.501458249,41.401622727],[-71.501541142,41.401646008],[-71.50161951,41.401674389],[-71.501687794,41.401713061],[-71.501717502,41.401764817],[-71.501724642,41.401824211],[-71.501691018,41.401890307],[-71.501638653,41.401940325],[-71.501585255,41.401988902],[-71.501534834,41.402039584],[-71.501484625,41.402096028],[-71.501453583,41.402153411],[-71.501463912,41.402221381],[-71.501504859,41.402269294],[-71.501539305,41.402320203],[-71.501574967,41.402377561],[-71.501604858,41.402433639],[-71.501613668,41.40248727],[-71.501623268,41.402536578],[-71.501554742,41.402564687],[-71.50150189,41.402602515],[-71.50148002,41.402651801],[-71.501546939,41.402704151],[-71.501600825,41.402740285],[-71.501658601,41.402802171],[-71.501702981,41.402862915],[-71.501731202,41.402925465],[-71.501748305,41.402995425],[-71.50175423,41.403072841],[-71.501779626,41.403136168],[-71.501813071,41.403185637],[-71.501823369,41.403229227],[-71.501774922,41.40328199],[-71.501746735,41.403340081],[-71.501792664,41.403392179],[-71.501850288,41.403426804],[-71.501925196,41.403463876],[-71.501984124,41.403458957],[-71.502032663,41.403409053],[-71.502081688,41.403346205],[-71.502101126,41.403283974],[-71.502112636,41.403213373],[-71.502135628,41.403143938],[-71.502156433,41.403067368],[-71.502180275,41.40299576],[-71.502219883,41.402936685],[-71.502265475,41.402883991],[-71.502306722,41.402818444],[-71.502342472,41.402758043],[-71.502374395,41.402697024],[-71.502390066,41.402636326],[-71.502393314,41.402574507],[-71.502388057,41.402513603],[-71.502354521,41.402461963],[-71.502321683,41.402402409],[-71.502291396,41.402336291],[-71.502252666,41.402273993],[-71.502217246,41.402222375],[-71.502210229,41.402189511],[-71.502187992,41.402133982],[-71.502184952,41.402057984],[-71.502175625,41.401991408],[-71.502186558,41.401930161],[-71.502214683,41.401869897],[-71.502243173,41.401818987],[-71.502287792,41.401766316],[-71.502368619,41.401737223],[-71.502442216,41.40171689],[-71.502500869,41.401681097],[-71.502514322,41.401611868],[-71.502512893,41.401552313],[-71.502515988,41.401486172],[-71.502520238,41.401425062],[-71.502515832,41.401362009],[-71.502501978,41.401301266],[-71.502481351,41.401238555],[-71.502451217,41.401176029],[-71.502395358,41.401162216],[-71.50230469,41.40118367],[-71.502231823,41.401221911],[-71.502149114,41.401276207],[-71.50209441,41.401315476],[-71.502010365,41.401360441],[-71.501927109,41.401401106],[-71.501859131,41.401441427],[-71.501791154,41.401482412],[-71.501727974,41.40147665],[-71.501651125,41.401438183],[-71.501592257,41.401396468],[-71.501552222,41.401349241],[-71.501497212,41.40130883],[-71.501417084,41.401307047],[-71.501351384,41.401333646],[-71.501290483,41.401385288],[-71.501233197,41.401431098],[-71.501273597,41.401488343]]],[[[-71.502623355,41.403539288],[-71.502606529,41.40359571],[-71.502619228,41.403651399],[-71.502627978,41.403679232],[-71.502693044,41.403708619],[-71.502761057,41.403740841],[-71.502837423,41.403766386],[-71.502872568,41.403763457],[-71.502856739,41.403701342],[-71.502840272,41.403622714],[-71.502801783,41.40356547],[-71.50275482,41.403511223],[-71.502677969,41.403497892],[-71.502623355,41.403539288]]],[[[-71.493478114,41.406611148],[-71.493442636,41.40662758],[-71.493478525,41.406611456],[-71.49352068,41.406598073],[-71.493478114,41.406611148]]],[[[-71.493579525,41.406654456],[-71.493605525,41.406705455],[-71.493607575,41.406710426],[-71.493605841,41.406705953],[-71.493579934,41.406654104],[-71.493569332,41.406648183],[-71.493579525,41.406654456]]],[[[-71.497022676,41.406682284],[-71.496977687,41.406701974],[-71.496896518,41.406722441],[-71.496828684,41.406743365],[-71.496756415,41.40677298],[-71.496688277,41.406809708],[-71.496630498,41.406844058],[-71.49661261,41.406868622],[-71.496630527,41.406844455],[-71.496756526,41.406773456],[-71.496828527,41.406743456],[-71.496977526,41.406702456],[-71.497022527,41.406682456],[-71.497026751,41.406678788],[-71.497022676,41.406682284]]],[[[-71.493175033,41.406687586],[-71.493107653,41.406719989],[-71.493053759,41.406756373],[-71.49301375,41.40678258],[-71.492986834,41.406800234],[-71.492933001,41.406838058],[-71.492867474,41.406868998],[-71.492861325,41.406875291],[-71.492867525,41.406869456],[-71.492932525,41.406838456],[-71.493107525,41.406720456],[-71.493175328,41.406687551],[-71.493175033,41.406687586]]],[[[-71.497248526,41.406733456],[-71.497316527,41.406779456],[-71.497373527,41.406831456],[-71.497415527,41.406882455],[-71.497438927,41.406906594],[-71.497415902,41.406882363],[-71.497373831,41.406831613],[-71.497316451,41.406779055],[-71.497248833,41.406733199],[-71.497194592,41.406716551],[-71.497248526,41.406733456]]],[[[-71.498562483,41.406025157],[-71.498569044,41.406046563],[-71.498584657,41.406103648],[-71.498600694,41.406170796],[-71.498614119,41.40624517],[-71.498622745,41.406318195],[-71.498627999,41.406378367],[-71.498640665,41.406433393],[-71.498646861,41.406492856],[-71.498658038,41.406558632],[-71.498676476,41.406614207],[-71.498704209,41.406664568],[-71.498771373,41.406699674],[-71.498842667,41.406741871],[-71.498896009,41.406788069],[-71.498935408,41.406819494],[-71.498998926,41.406857528],[-71.499069431,41.406904069],[-71.499141182,41.406934053],[-71.499193127,41.406945786],[-71.499239727,41.406894465],[-71.499294923,41.406843693],[-71.499318709,41.406794339],[-71.499328643,41.406732384],[-71.499356105,41.406679324],[-71.499350789,41.40661698],[-71.499312545,41.406566894],[-71.499255527,41.406523645],[-71.499247569,41.406467819],[-71.499272084,41.406412701],[-71.499325457,41.406363393],[-71.499374425,41.406323508],[-71.499431839,41.40628058],[-71.499472939,41.40623516],[-71.49954308,41.406199848],[-71.499594964,41.406162044],[-71.499639679,41.406111501],[-71.499684243,41.40605739],[-71.499740744,41.406015194],[-71.499822245,41.406001861],[-71.499897398,41.406021712],[-71.499964075,41.406066858],[-71.50000232,41.406117699],[-71.500043511,41.406170621],[-71.500094696,41.406210393],[-71.500169333,41.406241748],[-71.50024327,41.406230038],[-71.500305088,41.40620209],[-71.500385283,41.406203874],[-71.500432428,41.406190586],[-71.500421218,41.406124079],[-71.500411953,41.406058944],[-71.500398101,41.405998201],[-71.500382699,41.405971282],[-71.500427748,41.405928629],[-71.500445336,41.405867199],[-71.500501776,41.405823585],[-71.500557395,41.405783539],[-71.500602839,41.405727987],[-71.500656484,41.405685813],[-71.50071183,41.4056379],[-71.500772643,41.40558484],[-71.500837588,41.405538893],[-71.50088458,41.405497612],[-71.500897095,41.405428406],[-71.500917233,41.40535904],[-71.50095174,41.405291481],[-71.501003167,41.405242218],[-71.501089467,41.405230942],[-71.501138829,41.405224789],[-71.501113585,41.405165075],[-71.501169386,41.405129351],[-71.501251371,41.405104513],[-71.501342987,41.40508235],[-71.501413885,41.405067118],[-71.501488277,41.405067597],[-71.50156191,41.405072399],[-71.501661119,41.40507377],[-71.50174587,41.405070407],[-71.501776489,41.405072579],[-71.501862425,41.405075665],[-71.501943621,41.405078888],[-71.502001214,41.405040968],[-71.502051272,41.404980956],[-71.502102182,41.404941755],[-71.502157557,41.404895304],[-71.502168308,41.404829712],[-71.502145007,41.404772102],[-71.50208483,41.404721033],[-71.502001142,41.404679091],[-71.501922649,41.404647851],[-71.501859707,41.404599001],[-71.501825138,41.404545233],[-71.501798921,41.404485542],[-71.501798616,41.40442951],[-71.501852563,41.404371578],[-71.501907633,41.404317192],[-71.501971634,41.404272662],[-71.502019961,41.404217018],[-71.502048118,41.404157531],[-71.502050576,41.404099303],[-71.502048387,41.404044072],[-71.502034352,41.403979074],[-71.501969254,41.403925239],[-71.501891673,41.403891826],[-71.501802914,41.403865824],[-71.501723572,41.403861137],[-71.50166519,41.403879663],[-71.501612307,41.403941162],[-71.501568658,41.403994588],[-71.501530051,41.404055057],[-71.501489805,41.404121999],[-71.501458519,41.40419809],[-71.501430635,41.404264048],[-71.501398438,41.404317908],[-71.50135254,41.404362735],[-71.501261017,41.404387779],[-71.501164756,41.404412914],[-71.501095772,41.404428833],[-71.501010172,41.404458748],[-71.500947567,41.404490332],[-71.500894865,41.404532437],[-71.500839216,41.404548035],[-71.500750821,41.404555057],[-71.500675974,41.404591901],[-71.500613855,41.404636385],[-71.500556384,41.404677895],[-71.500542654,41.404739965],[-71.500541652,41.404810337],[-71.500522728,41.404886152],[-71.500502498,41.404953368],[-71.500508513,41.405008554],[-71.500501436,41.405070419],[-71.500486673,41.405131071],[-71.500487403,41.40519783],[-71.500469998,41.405263536],[-71.500419208,41.405329312],[-71.500371396,41.405374206],[-71.500312891,41.405413589],[-71.500230479,41.405452034],[-71.500156937,41.405473075],[-71.500062283,41.40546658],[-71.499999707,41.405427815],[-71.499976621,41.405374458],[-71.499948523,41.405339901],[-71.499908881,41.405325722],[-71.499969088,41.405281285],[-71.500012374,41.405218551],[-71.500025132,41.405155109],[-71.500017113,41.405097132],[-71.499946214,41.405065686],[-71.499937162,41.405029276],[-71.499980965,41.404979465],[-71.500006876,41.404911402],[-71.500059822,41.404876456],[-71.500090472,41.404854958],[-71.500121243,41.404791104],[-71.500151619,41.404739417],[-71.500188162,41.404674717],[-71.500242566,41.404627535],[-71.500301374,41.404596065],[-71.500375371,41.404585774],[-71.500415619,41.404590599],[-71.500491772,41.40456304],[-71.50056264,41.404547076],[-71.500616162,41.404502113],[-71.500626308,41.404445875],[-71.500595566,41.404391992],[-71.500558811,41.404331066],[-71.50054019,41.404269727],[-71.500521538,41.404208458],[-71.500511574,41.404149773],[-71.500445567,41.404120384],[-71.500410452,41.404124776],[-71.500385878,41.404178475],[-71.500380715,41.404240294],[-71.500342897,41.404296441],[-71.500253469,41.404302021],[-71.500183483,41.404268425],[-71.500143963,41.404210449],[-71.500094511,41.404164914],[-71.500019361,41.404145062],[-71.499954568,41.404099162],[-71.499942388,41.404032632],[-71.499952078,41.403964204],[-71.499958852,41.403894426],[-71.499969726,41.403832425],[-71.499963499,41.403771544],[-71.4999272,41.403722098],[-71.499896885,41.403655271],[-71.499919363,41.403596608],[-71.499938287,41.403544487],[-71.499934733,41.403479261],[-71.499913987,41.403413691],[-71.499860009,41.403374674],[-71.499771495,41.40335512],[-71.499687779,41.403336183],[-71.499623474,41.403301008],[-71.499553124,41.403258789],[-71.499489275,41.403212134],[-71.499426428,41.403166187],[-71.499377737,41.403117038],[-71.499339494,41.403066174],[-71.499305839,41.403010942],[-71.499288404,41.402956762],[-71.49926702,41.402898374],[-71.499251074,41.402832667],[-71.499249586,41.402771672],[-71.499275618,41.402706469],[-71.499312859,41.402659699],[-71.499357724,41.402612724],[-71.499415468,41.402602089],[-71.499502463,41.402607304],[-71.499578492,41.40260058],[-71.499655464,41.402569408],[-71.499710716,41.402520786],[-71.499695894,41.402460111],[-71.499701817,41.402393192],[-71.499723566,41.402340293],[-71.499763267,41.402283369],[-71.499809164,41.402238543],[-71.499858159,41.402199389],[-71.499874501,41.40217892],[-71.499867818,41.402130229],[-71.499798442,41.402088742],[-71.499726878,41.402063813],[-71.499643984,41.402040554],[-71.499546572,41.402036986],[-71.499472669,41.402048695],[-71.499409853,41.402075956],[-71.499328144,41.402107952],[-71.49925825,41.402124601],[-71.499203423,41.402112937],[-71.499128063,41.402063628],[-71.499068225,41.402021889],[-71.499012275,41.401981499],[-71.498954927,41.401930383],[-71.498936005,41.401861909],[-71.498932908,41.401807409],[-71.498923735,41.401745133],[-71.498895427,41.401680455],[-71.498852842,41.401616784],[-71.498813265,41.401556657],[-71.498798049,41.401485164],[-71.498806889,41.401419664],[-71.498837781,41.401357205],[-71.498878272,41.401296004],[-71.498912201,41.401238531],[-71.498952449,41.401170813],[-71.498991573,41.401099595],[-71.499022039,41.40102641],[-71.499045854,41.400953339],[-71.499058248,41.400881275],[-71.499056335,41.40080953],[-71.499052023,41.400748581],[-71.499028757,41.40069097],[-71.499001755,41.400635555],[-71.498971625,41.40057305],[-71.49893302,41.400513632],[-71.498879319,41.400457394],[-71.49881441,41.400407879],[-71.498752568,41.400362595],[-71.498690454,41.400311593],[-71.498628066,41.40025341],[-71.49856653,41.4001923],[-71.498509701,41.400130412],[-71.498460648,41.400071223],[-71.498402999,41.400012193],[-71.498345502,41.399957509],[-71.498288157,41.399905639],[-71.498223371,41.399858982],[-71.498158067,41.39982312],[-71.498083895,41.399804686],[-71.498008446,41.399801345],[-71.497937005,41.39982737],[-71.497852899,41.39984578],[-71.497785588,41.399880313],[-71.497731187,41.399926784],[-71.497704,41.399987001],[-71.497711895,41.400041387],[-71.497726625,41.400100622],[-71.497735826,41.400164316],[-71.497703931,41.400225356],[-71.497652354,41.400271759],[-71.497583221,41.400307756],[-71.497501391,41.400336182],[-71.497422964,41.400354476],[-71.497358781,41.400393949],[-71.497341132,41.400453938],[-71.497323815,41.400522549],[-71.497294775,41.400583497],[-71.497251458,41.400645498],[-71.497202553,41.400711203],[-71.497151035,41.400782741],[-71.497117833,41.400834427],[-71.497077735,41.400905713],[-71.497059204,41.400967165],[-71.497068283,41.401027978],[-71.497070741,41.401089705],[-71.497064603,41.401151546],[-71.497032221,41.401201105],[-71.496967096,41.401241333],[-71.496908895,41.401288581],[-71.49687946,41.401339513],[-71.496860898,41.401400965],[-71.49687265,41.4014567],[-71.496870127,41.401513465],[-71.496872311,41.40156801],[-71.496867326,41.401634883],[-71.49684676,41.401693499],[-71.496853135,41.401757971],[-71.496849852,41.401819058],[-71.49681589,41.401876553],[-71.496796143,41.401931579],[-71.496794986,41.401999092],[-71.496797686,41.402067223],[-71.496800903,41.402123873],[-71.496800292,41.402180591],[-71.496753907,41.402237629],[-71.496702115,41.402278291],[-71.496640512,41.402312],[-71.496592548,41.40235257],[-71.496573894,41.402411141],[-71.496565933,41.402475223],[-71.496569392,41.4025383],[-71.496569693,41.402593578],[-71.496532845,41.402650409],[-71.49650432,41.402700609],[-71.496469324,41.402755954],[-71.496427252,41.40280071],[-71.496358206,41.402838856],[-71.496293321,41.402886287],[-71.496226432,41.402930836],[-71.496167319,41.402979571],[-71.496113491,41.403016688],[-71.49605702,41.4030603],[-71.495985879,41.403092773],[-71.495928345,41.40313284],[-71.495885542,41.403184068],[-71.495845048,41.403244581],[-71.495814972,41.403304135],[-71.495827605,41.403358384],[-71.495862533,41.403420821],[-71.495894818,41.403489731],[-71.4959114,41.403547479],[-71.495922634,41.403614009],[-71.495946354,41.403683124],[-71.495974994,41.403756425],[-71.496005365,41.403824671],[-71.496037378,41.403887108],[-71.496073795,41.403940146],[-71.496123245,41.403984264],[-71.496127193,41.403987787],[-71.496172998,41.404036273],[-71.496237453,41.404075041],[-71.496300177,41.404117421],[-71.496343551,41.404176771],[-71.496364902,41.404234428],[-71.49635849,41.404289134],[-71.496342721,41.404348368],[-71.496323915,41.40440337],[-71.496299672,41.404464959],[-71.496269626,41.404525222],[-71.49626133,41.404580682],[-71.496263726,41.404640946],[-71.496259319,41.404698464],[-71.496256885,41.404757401],[-71.496266055,41.404820386],[-71.496271095,41.404874818],[-71.496294572,41.404938193],[-71.496327163,41.404989858],[-71.49637552,41.405031163],[-71.496434208,41.405020485],[-71.496481354,41.404983527],[-71.496554138,41.404943118],[-71.496628258,41.404912016],[-71.496701801,41.404890978],[-71.49676942,41.40486509],[-71.496837373,41.404847048],[-71.49683613,41.404791061],[-71.496873313,41.404742805],[-71.496906364,41.404711222],[-71.496975076,41.404688148],[-71.49699774,41.404634472],[-71.497035864,41.404586239],[-71.497107158,41.404556647],[-71.497195311,41.404543156],[-71.497285195,41.404524656],[-71.497383706,41.404508786],[-71.497464173,41.404494036],[-71.497537957,41.404478738],[-71.497615144,41.404453307],[-71.497700047,41.40442989],[-71.497790994,41.40441418],[-71.497884765,41.404399133],[-71.497986131,41.404381776],[-71.498072279,41.404366226],[-71.498145972,41.404348022],[-71.498212375,41.404315661],[-71.49825396,41.404306102],[-71.498302925,41.404363187],[-71.498376981,41.404403166],[-71.498440041,41.404429765],[-71.498461699,41.404447215],[-71.498407173,41.404490783],[-71.498379802,41.404546677],[-71.498369534,41.404600034],[-71.49832394,41.404580227],[-71.498283419,41.404520124],[-71.498256629,41.404469785],[-71.498202439,41.404425736],[-71.498100102,41.404417982],[-71.498024829,41.404419696],[-71.497920183,41.404426372],[-71.497827353,41.404442082],[-71.49775132,41.404471812],[-71.497689048,41.404489009],[-71.497619608,41.404493445],[-71.497542998,41.404533215],[-71.497466904,41.404562167],[-71.497398253,41.404586705],[-71.497327961,41.404617007],[-71.497259886,41.404655862],[-71.497194849,41.404698994],[-71.497152927,41.404748759],[-71.497114014,41.404777643],[-71.497064226,41.404796693],[-71.497017657,41.404848745],[-71.496981871,41.404907681],[-71.497024851,41.404957699],[-71.497050091,41.405017414],[-71.497041066,41.405077929],[-71.497020769,41.40521554],[-71.497016392,41.405273036],[-71.497011255,41.405336341],[-71.496999618,41.405403396],[-71.496986158,41.405472624],[-71.496985942,41.405539383],[-71.496984815,41.405607628],[-71.496986695,41.40567864],[-71.497011297,41.405745605],[-71.497082286,41.405780622],[-71.49715598,41.405786867],[-71.497225484,41.405760156],[-71.497273056,41.405709545],[-71.497327128,41.405677482],[-71.497377552,41.405700011],[-71.497409112,41.405749595],[-71.497435112,41.405804278],[-71.497391398,41.405856239],[-71.497379975,41.405885924],[-71.497365453,41.405923568],[-71.497352115,41.405995678],[-71.497349591,41.406051756],[-71.497340172,41.406126611],[-71.497331572,41.406198629],[-71.497329777,41.406273347],[-71.497340163,41.406342713],[-71.49738764,41.406386876],[-71.497458053,41.406430537],[-71.497521723,41.406424821],[-71.497566198,41.406367806],[-71.497585064,41.406314953],[-71.497614046,41.406251878],[-71.497621126,41.406189945],[-71.497656852,41.406128836],[-71.497663443,41.406126252],[-71.49772915,41.406100638],[-71.497807037,41.406092429],[-71.49788462,41.406077771],[-71.497963843,41.406079556],[-71.498049659,41.406054652],[-71.498122898,41.406025722],[-71.498206679,41.405998714],[-71.498284748,41.405971819],[-71.498363911,41.405947807],[-71.498444258,41.405953868],[-71.498505497,41.405982663],[-71.498562483,41.406025157]]],[[[-71.492696833,41.406966118],[-71.492615908,41.406969383],[-71.492552181,41.406973858],[-71.492696526,41.406966456],[-71.4927189,41.406952434],[-71.492696833,41.406966118]]],[[[-71.493699525,41.406933456],[-71.493730526,41.406998455],[-71.493749168,41.407026419],[-71.493730876,41.406998197],[-71.493699685,41.406933587],[-71.493677454,41.406877347],[-71.493654312,41.406822594],[-71.493646583,41.406805043],[-71.493699525,41.406933456]]],[[[-71.496540089,41.406945119],[-71.496459072,41.406969199],[-71.496405332,41.407009198],[-71.496373526,41.407065456],[-71.496405526,41.407009456],[-71.496459527,41.406969456],[-71.496540526,41.406945456],[-71.496571218,41.406917376],[-71.496540089,41.406945119]]],[[[-71.492466387,41.40699931],[-71.492383756,41.407032032],[-71.492320021,41.407060022],[-71.492265948,41.407070592],[-71.492319525,41.407060456],[-71.492466525,41.406999456],[-71.492496501,41.406989329],[-71.492466387,41.40699931]]],[[[-71.497576212,41.407084145],[-71.497548918,41.407038044],[-71.497516263,41.40698951],[-71.497576212,41.407084145]]],[[[-71.496242045,41.407148587],[-71.496190492,41.407194944],[-71.496160571,41.407223035],[-71.496242527,41.407148456],[-71.496270841,41.407125892],[-71.496242045,41.407148587]]],[[[-71.497650527,41.407201456],[-71.497684527,41.407236456],[-71.497695552,41.407254594],[-71.497684547,41.407236036],[-71.497650768,41.407201615],[-71.497644238,41.407191527],[-71.497650527,41.407201456]]],[[[-71.492010305,41.407209138],[-71.492036362,41.407265264],[-71.492041161,41.407271902],[-71.492036525,41.407265456],[-71.492010525,41.407209456],[-71.492027268,41.407181551],[-71.492010305,41.407209138]]],[[[-71.494225526,41.407313456],[-71.494245329,41.40732225],[-71.494225878,41.407313056],[-71.494164612,41.407278758],[-71.494225526,41.407313456]]],[[[-71.496082464,41.407284981],[-71.49604495,41.407327505],[-71.496082526,41.407285456],[-71.496113391,41.407261793],[-71.496082464,41.407284981]]],[[[-71.497838527,41.407352456],[-71.497850527,41.407365456],[-71.497850957,41.407365432],[-71.497838891,41.407352449],[-71.497815929,41.407343069],[-71.497838527,41.407352456]]],[[[-71.49597149,41.407372182],[-71.495944436,41.407381486],[-71.495971527,41.407372456],[-71.496024367,41.407341823],[-71.49597149,41.407372182]]],[[[-71.49213061,41.407381634],[-71.49219473,41.407435453],[-71.492241891,41.407471298],[-71.492130525,41.407381456],[-71.492114686,41.407363823],[-71.49213061,41.407381634]]],[[[-71.494529526,41.407448456],[-71.494606526,41.407488456],[-71.494631443,41.407506728],[-71.494606646,41.407488284],[-71.494529764,41.407448372],[-71.494442341,41.407408688],[-71.494380221,41.407380646],[-71.494351694,41.407369484],[-71.494529526,41.407448456]]],[[[-71.495883177,41.407453848],[-71.495847206,41.40750853],[-71.495779461,41.407556007],[-71.495714526,41.407592456],[-71.495779526,41.407556456],[-71.495847526,41.407508456],[-71.495883526,41.407453456],[-71.495888143,41.407437006],[-71.495883177,41.407453848]]],[[[-71.503597466,41.40666923],[-71.503565574,41.406730295],[-71.503558408,41.406790009],[-71.503578855,41.406848442],[-71.503578524,41.406911633],[-71.503552342,41.406973247],[-71.503516074,41.407020727],[-71.503488088,41.407063583],[-71.503476288,41.407130171],[-71.503475769,41.407134348],[-71.503491965,41.407205794],[-71.503501577,41.407230815],[-71.503512529,41.407258456],[-71.503518785,41.407287654],[-71.50352493,41.407314885],[-71.503552759,41.407367394],[-71.503622082,41.407408194],[-71.50365263,41.40741389],[-71.503694529,41.407421456],[-71.503731841,41.407425283],[-71.503772635,41.407429229],[-71.503784391,41.407429864],[-71.503940491,41.407435247],[-71.503946456,41.407435352],[-71.504010317,41.407442315],[-71.504039529,41.407445456],[-71.504059317,41.407448677],[-71.504125746,41.407459314],[-71.504167918,41.407472703],[-71.504205529,41.407484456],[-71.504205883,41.407484756],[-71.504205903,41.407484773],[-71.504257225,41.407528126],[-71.504257302,41.407528263],[-71.504257529,41.407528455],[-71.504289529,41.407584455],[-71.504357856,41.407614289],[-71.504360584,41.407615455],[-71.504438274,41.407614459],[-71.504515409,41.407593388],[-71.504515393,41.407593334],[-71.504448241,41.407533094],[-71.504447177,41.407532487],[-71.504410764,41.407507044],[-71.504379529,41.407485455],[-71.504360654,41.407468783],[-71.504319219,41.407432686],[-71.504274075,41.407376266],[-71.504254234,41.407308502],[-71.504248933,41.407272844],[-71.504243529,41.407238455],[-71.504239261,41.407220317],[-71.504229073,41.407179857],[-71.504223808,41.407154645],[-71.504203528,41.407068456],[-71.504201926,41.407063917],[-71.504179212,41.407005061],[-71.504139992,41.406954268],[-71.504089258,41.406901553],[-71.504044083,41.406845134],[-71.504016709,41.406779703],[-71.50400498,41.406724677],[-71.503967735,41.406675255],[-71.50390063,41.406643011],[-71.503828971,41.406663322],[-71.503748166,41.406645005],[-71.503660254,41.406641257],[-71.503597466,41.40666923]]],[[[-71.492965525,41.407614456],[-71.492897525,41.407645456],[-71.492876969,41.407662384],[-71.492897311,41.407645837],[-71.492965694,41.407614874],[-71.493013661,41.407614191],[-71.493053395,41.407613622],[-71.493084493,41.407627413],[-71.493053525,41.407613456],[-71.492965525,41.407614456]]],[[[-71.494900526,41.407668456],[-71.494906679,41.407672041],[-71.49490087,41.407668356],[-71.494880723,41.407661012],[-71.494900526,41.407668456]]],[[[-71.492338419,41.407669151],[-71.492318155,41.407712167],[-71.492338525,41.407669456],[-71.492351525,41.407605456],[-71.492351153,41.407604979],[-71.492338419,41.407669151]]],[[[-71.495027526,41.407742456],[-71.495270526,41.407733456],[-71.495345526,41.407725456],[-71.495413526,41.407697456],[-71.495489526,41.407681456],[-71.495632931,41.407617171],[-71.495560888,41.407647045],[-71.495489741,41.407680959],[-71.495413158,41.407697057],[-71.495345596,41.407725116],[-71.495270592,41.407733278],[-71.495195316,41.40773499],[-71.495104881,41.407739171],[-71.495027782,41.407742347],[-71.49502131,41.407738834],[-71.495027526,41.407742456]]],[[[-71.492131533,41.407840453],[-71.492195525,41.407815456],[-71.492266525,41.407779456],[-71.492290666,41.40775296],[-71.492266532,41.407779222],[-71.492195475,41.407815261],[-71.492131617,41.407840391],[-71.492131533,41.407840453]]],[[[-71.493291082,41.407788503],[-71.493360339,41.407827867],[-71.493378832,41.407873622],[-71.493360525,41.407827456],[-71.493291525,41.407788456],[-71.493258392,41.407761458],[-71.493291082,41.407788503]]],[[[-71.492584525,41.407953456],[-71.49255698,41.407966823],[-71.492584294,41.407953698],[-71.492627076,41.407937275],[-71.492584525,41.407953456]]],[[[-71.492131533,41.407840453],[-71.492074198,41.407884023],[-71.492040259,41.407941517],[-71.491984054,41.407991599],[-71.491965304,41.408048019],[-71.491966893,41.408088116],[-71.491965525,41.408048456],[-71.491984525,41.407991457],[-71.492040525,41.407941456],[-71.492074525,41.407884456],[-71.492131533,41.407840453]]],[[[-71.493449137,41.408095112],[-71.493431125,41.408152311],[-71.493469508,41.408044143],[-71.493449137,41.408095112]]],[[[-71.493267483,41.408252979],[-71.493298526,41.408242456],[-71.493350525,41.408245457],[-71.493378169,41.408232498],[-71.493350181,41.40824525],[-71.493298569,41.408242113],[-71.493267483,41.408252979]]],[[[-71.492296699,41.408253096],[-71.492325812,41.408193568],[-71.492365035,41.408148173],[-71.492382472,41.408125702],[-71.492325525,41.408193456],[-71.492296699,41.408253096]]],[[[-71.492296699,41.408253096],[-71.492296525,41.408253456],[-71.492294152,41.408264304],[-71.492296699,41.408253096]]],[[[-71.493162776,41.408280322],[-71.493162526,41.408280456],[-71.493177429,41.408276973],[-71.493162776,41.408280322]]],[[[-71.493022031,41.408315053],[-71.493013586,41.408316128],[-71.492964964,41.408322272],[-71.493022525,41.408315456],[-71.493062071,41.408314936],[-71.493022031,41.408315053]]],[[[-71.492265525,41.408436456],[-71.492297646,41.408470986],[-71.492265817,41.408436149],[-71.492275848,41.408377053],[-71.492280837,41.408329278],[-71.492265525,41.408436456]]],[[[-71.492307483,41.408485674],[-71.492305668,41.408479766],[-71.492305599,41.408479691],[-71.492307483,41.408485674]]],[[[-71.492084251,41.408402197],[-71.492091231,41.408458733],[-71.492144388,41.408500613],[-71.492194158,41.408514536],[-71.492144525,41.408500456],[-71.492091525,41.408458457],[-71.492084525,41.408402456],[-71.492078014,41.408391324],[-71.492084251,41.408402197]]],[[[-71.492285216,41.408540531],[-71.492287131,41.408540152],[-71.492285525,41.408540456],[-71.492239598,41.408527427],[-71.492285216,41.408540531]]],[[[-71.492678281,41.408520957],[-71.49264826,41.408581218],[-71.492621035,41.408639993],[-71.492593739,41.408680812],[-71.492621525,41.408640456],[-71.492678525,41.408521456],[-71.492713901,41.408490583],[-71.492678281,41.408520957]]],[[[-71.492473683,41.408796211],[-71.492453891,41.408810169],[-71.492473525,41.408796456],[-71.492475177,41.408794976],[-71.492473683,41.408796211]]],[[[-71.492364339,41.408901361],[-71.492357258,41.408921528],[-71.492364526,41.408901456],[-71.492387824,41.40887056],[-71.492364339,41.408901361]]],[[[-71.452652436,41.416749248],[-71.452645492,41.416814425],[-71.452649592,41.416881251],[-71.452650513,41.416881459],[-71.454346513,41.417290459],[-71.454346513,41.417218459],[-71.454353513,41.417164459],[-71.454353513,41.417111459],[-71.454361513,41.417057459],[-71.454529513,41.416611459],[-71.454933513,41.415501458],[-71.454994513,41.415314459],[-71.455402513,41.414215458],[-71.455602514,41.413722459],[-71.455673513,41.413548459],[-71.455800513,41.413227458],[-71.456047514,41.412602458],[-71.456123514,41.412396458],[-71.456276513,41.411988458],[-71.456474514,41.411499458],[-71.456528513,41.411412458],[-71.456596514,41.411343458],[-71.456718513,41.411244458],[-71.457802514,41.411461458],[-71.457848514,41.411465457],[-71.457932514,41.411450458],[-71.457970514,41.411381458],[-71.458061514,41.411370458],[-71.458115514,41.411404458],[-71.458168514,41.411396458],[-71.458237515,41.411396458],[-71.458313514,41.411408458],[-71.458633514,41.410614458],[-71.458702515,41.410405458],[-71.458809514,41.410401458],[-71.458916515,41.410386458],[-71.459038514,41.410355457],[-71.459099514,41.410332457],[-71.459160514,41.410298457],[-71.459221514,41.410256457],[-71.459267515,41.410210458],[-71.459328515,41.410138457],[-71.459366515,41.410057458],[-71.459412514,41.409981457],[-71.459579515,41.409569458],[-71.459816515,41.408997457],[-71.461365515,41.409302457],[-71.462163515,41.409454458],[-71.463043516,41.409623457],[-71.464149516,41.409817457],[-71.465012516,41.409981457],[-71.465212516,41.410016458],[-71.465965516,41.410145457],[-71.466896516,41.410294457],[-71.467697517,41.410435457],[-71.468536517,41.410599458],[-71.469093518,41.410702458],[-71.469238517,41.410733457],[-71.469582518,41.410794458],[-71.469704518,41.410820457],[-71.469803517,41.410847457],[-71.469948518,41.410908457],[-71.470200518,41.411007457],[-71.470512518,41.411129458],[-71.470970519,41.411301458],[-71.471123519,41.411354457],[-71.471268518,41.411389457],[-71.471581518,41.411450457],[-71.473549519,41.411805457],[-71.47564752,41.412190457],[-71.47696752,41.412438458],[-71.47731052,41.412499457],[-71.477440521,41.412533458],[-71.477501521,41.412564457],[-71.47753152,41.412606458],[-71.47754752,41.412659457],[-71.47824952,41.412693457],[-71.478378521,41.412709458],[-71.478729521,41.412732457],[-71.478928521,41.412735457],[-71.479073521,41.412724458],[-71.479362521,41.412682457],[-71.479546521,41.412651458],[-71.479805522,41.412617457],[-71.480125521,41.412590458],[-71.480316521,41.412587457],[-71.480507522,41.412579457],[-71.480621522,41.412579457],[-71.480850522,41.412571458],[-71.480972522,41.412560457],[-71.481216521,41.412529457],[-71.481339522,41.412518457],[-71.481918522,41.412484457],[-71.482170522,41.412453458],[-71.482292522,41.412430457],[-71.482506522,41.412373457],[-71.483925522,41.411919457],[-71.484116522,41.411858457],[-71.485428523,41.411484457],[-71.486031523,41.411332457],[-71.486061523,41.411320457],[-71.486766524,41.411139457],[-71.487356523,41.410993457],[-71.487940523,41.410864457],[-71.488014524,41.410851457],[-71.488045524,41.410851457],[-71.488129524,41.410839456],[-71.488335524,41.410839456],[-71.488598524,41.410844457],[-71.488754524,41.410847457],[-71.488960524,41.410839456],[-71.489105524,41.410828457],[-71.489784525,41.410721457],[-71.490013524,41.410668456],[-71.490250525,41.410591456],[-71.490433525,41.410527456],[-71.490555524,41.410473456],[-71.490692524,41.410405457],[-71.491440525,41.410054457],[-71.491737525,41.409909456],[-71.491852525,41.409829456],[-71.491936525,41.409764457],[-71.492058525,41.409642457],[-71.492366525,41.409362456],[-71.492296525,41.409182456],[-71.492222525,41.409119457],[-71.492313525,41.409017456],[-71.492313589,41.409017332],[-71.492259635,41.409074552],[-71.492222447,41.409119055],[-71.492209534,41.40913456],[-71.492168669,41.409185741],[-71.492111282,41.40920568],[-71.492022089,41.409217018],[-71.491946872,41.409220168],[-71.49186743,41.409237727],[-71.491807732,41.409271365],[-71.49175274,41.409327897],[-71.491716735,41.409381114],[-71.491681762,41.409437189],[-71.491643631,41.409486129],[-71.491604557,41.409535114],[-71.491603737,41.409538019],[-71.491545643,41.409612549],[-71.491500617,41.409655908],[-71.491450851,41.409699381],[-71.491400627,41.409755798],[-71.491331511,41.409792545],[-71.491254864,41.409807177],[-71.491161297,41.409804951],[-71.491084562,41.409793761],[-71.49100327,41.409788404],[-71.490926592,41.409803035],[-71.490887198,41.409747205],[-71.490829091,41.409700408],[-71.490771982,41.409678699],[-71.490721977,41.40969276],[-71.490675749,41.409632768],[-71.490649632,41.409575224],[-71.49062637,41.409518275],[-71.490589102,41.40946814],[-71.490552717,41.409415833],[-71.490541728,41.409355042],[-71.490507014,41.409297681],[-71.490471388,41.409241051],[-71.490472825,41.409180719],[-71.490474171,41.409118191],[-71.490452581,41.409054793],[-71.490425341,41.408992927],[-71.490406028,41.408938791],[-71.490364843,41.408885179],[-71.49031828,41.408841699],[-71.490230033,41.40882861],[-71.490152875,41.408806648],[-71.490126086,41.408780665],[-71.490125669,41.408721796],[-71.490124436,41.408642116],[-71.49013751,41.408563603],[-71.490159333,41.408487721],[-71.490184011,41.408412503],[-71.490204832,41.408335935],[-71.490227596,41.408260739],[-71.490242218,41.408196543],[-71.490235757,41.408129875],[-71.49021441,41.408072195],[-71.490148131,41.408036351],[-71.490077446,41.408009244],[-71.490015592,41.408037186],[-71.489947846,41.408059524],[-71.489881072,41.408083304],[-71.489826446,41.408124717],[-71.48976289,41.408157713],[-71.489741381,41.408168255],[-71.489755273,41.408109799],[-71.489803976,41.408062759],[-71.489851798,41.408017869],[-71.489928288,41.408023342],[-71.489991511,41.407982432],[-71.490048901,41.407938778],[-71.490123444,41.407966549],[-71.49021163,41.407977488],[-71.490291645,41.407975688],[-71.490321109,41.407996571],[-71.490327388,41.408058894],[-71.490355539,41.408120006],[-71.490409515,41.408159027],[-71.49046343,41.408195876],[-71.490536211,41.408227991],[-71.490615527,41.408231909],[-71.49067732,41.408202548],[-71.490696041,41.40814542],[-71.490709387,41.408073311],[-71.490734886,41.407994479],[-71.4907499,41.407940277],[-71.490766862,41.407862405],[-71.490784187,41.407793795],[-71.49079422,41.407734676],[-71.490821417,41.407674484],[-71.490859672,41.407604709],[-71.49089422,41.407538617],[-71.490926825,41.407471106],[-71.490963681,41.407414276],[-71.490976842,41.407360829],[-71.490956375,41.407302417],[-71.490977891,41.407243047],[-71.490967145,41.407188775],[-71.490914569,41.407137518],[-71.490873626,41.407090333],[-71.490851519,41.407037684],[-71.490903836,41.406985544],[-71.490969697,41.40696396],[-71.491023531,41.406926845],[-71.491018954,41.40685876],[-71.491016744,41.406802796],[-71.491020033,41.406741687],[-71.491047471,41.406687943],[-71.491108778,41.40664637],[-71.491178557,41.406626844],[-71.491248639,41.40661379],[-71.491256233,41.406613631],[-71.491371486,41.406601404],[-71.491417173,41.406601407],[-71.491466838,41.406620851],[-71.49149466,41.406644821],[-71.491560243,41.406656764],[-71.491617869,41.406652286],[-71.491653656,41.406634335],[-71.491693396,41.406578969],[-71.491751033,41.40648923],[-71.491806699,41.406372549],[-71.491852396,41.406290265],[-71.491856743,41.406269156],[-71.49183621,41.406255981],[-71.491751339,41.40623203],[-71.491700062,41.406237515],[-71.491650329,41.406282406],[-71.491581916,41.406312681],[-71.491510069,41.406353042],[-71.491449674,41.406393175],[-71.491388976,41.406425418],[-71.491312424,41.406442931],[-71.491231801,41.406454063],[-71.491138482,41.406456891],[-71.491043249,41.406460452],[-71.490945282,41.406466962],[-71.490846192,41.406469196],[-71.490759525,41.406471842],[-71.490687166,41.406475632],[-71.490661195,41.406469752],[-71.49065285,41.406403153],[-71.490654226,41.406341381],[-71.490668605,41.406271398],[-71.490683225,41.406206494],[-71.490693288,41.406148106],[-71.490702531,41.406092624],[-71.490698805,41.40602232],[-71.490667069,41.40596704],[-71.490615254,41.405910752],[-71.490560795,41.405860272],[-71.490548075,41.405803873],[-71.490561966,41.405745395],[-71.49058788,41.405725431],[-71.490658994,41.405715214],[-71.490755379,41.405716639],[-71.490840282,41.40571763],[-71.490913249,41.405705949],[-71.490997062,41.405679631],[-71.491073311,41.405654251],[-71.491133827,41.405616954],[-71.491199384,41.405586793],[-71.491291697,41.405605508],[-71.491364657,41.405641924],[-71.491427197,41.405680739],[-71.491449577,41.405739838],[-71.491512754,41.405794411],[-71.491575174,41.405829659],[-71.491644156,41.405861134],[-71.491718303,41.405879527],[-71.491800563,41.405885593],[-71.491884588,41.405865062],[-71.491960777,41.405838217],[-71.492014003,41.405785322],[-71.492034515,41.405725266],[-71.492043363,41.405659743],[-71.492042063,41.40560307],[-71.492043196,41.405534802],[-71.492053348,41.405478587],[-71.492071946,41.405417891],[-71.492094129,41.405352026],[-71.492114519,41.405289111],[-71.492148427,41.405230199],[-71.492197277,41.405187458],[-71.492265083,41.405142133],[-71.492319433,41.40509356],[-71.492372931,41.405047823],[-71.492428494,41.405006363],[-71.492495328,41.404960375],[-71.492556965,41.404927377],[-71.49263057,41.40490705],[-71.492699102,41.404880365],[-71.492755486,41.404834582],[-71.492769462,41.404803456],[-71.49280428,41.404742326],[-71.492837609,41.404693477],[-71.492839103,41.404635317],[-71.492798071,41.404585229],[-71.492740726,41.40453411],[-71.492680586,41.4044845],[-71.49265635,41.404450582],[-71.492686308,41.404388171],[-71.492714685,41.404334382],[-71.492758221,41.404277414],[-71.492831218,41.404242724],[-71.492902027,41.40422537],[-71.492977908,41.404215037],[-71.493014025,41.4042101],[-71.493059469,41.404203859],[-71.493140906,41.404212806],[-71.493217358,41.404259352],[-71.493223949,41.404263354],[-71.493231871,41.404319204],[-71.493245959,41.404385666],[-71.493257921,41.404446411],[-71.493273619,41.404507064],[-71.493277714,41.404561564],[-71.493257873,41.404613707],[-71.493243925,41.404671431],[-71.493236262,41.404742695],[-71.49323574,41.404801586],[-71.493255266,41.404862148],[-71.493285211,41.404919623],[-71.493300909,41.404978881],[-71.493303394,41.405041317],[-71.49329227,41.405098264],[-71.493266839,41.405154134],[-71.493216257,41.40520049],[-71.493159541,41.405237673],[-71.493103705,41.405272639],[-71.493089943,41.405285903],[-71.493018676,41.405316911],[-71.493013906,41.40532567],[-71.492989357,41.405370723],[-71.492979599,41.405437733],[-71.492993413,41.405497699],[-71.493010874,41.405553321],[-71.493013881,41.405558033],[-71.493043402,41.405604255],[-71.493114606,41.405595477],[-71.493177458,41.405568929],[-71.493227159,41.40552406],[-71.493252651,41.405470339],[-71.493279905,41.405411564],[-71.493304243,41.405352148],[-71.493329734,41.405297718],[-71.493348543,41.405242762],[-71.49337692,41.405188995],[-71.493419968,41.40514424],[-71.493474438,41.405098503],[-71.493523684,41.405041375],[-71.493555737,41.404983927],[-71.493570597,41.404925425],[-71.493573002,41.404866489],[-71.493570851,41.404812011],[-71.493564872,41.40475758],[-71.493544616,41.404703467],[-71.493518499,41.404645901],[-71.493490194,41.404581199],[-71.493459825,41.404512929],[-71.493433404,41.404447496],[-71.493411783,41.404383343],[-71.49339979,41.404321158],[-71.493387768,41.40425895],[-71.493376626,41.40419386],[-71.493368401,41.404130875],[-71.493366007,41.404070634],[-71.493366529,41.404018901],[-71.49336656,41.404011766],[-71.493392356,41.40394151],[-71.4934276,41.40386748],[-71.493477514,41.403803904],[-71.493532076,41.403736668],[-71.4935946,41.403629707],[-71.493625953,41.40357873],[-71.493671582,41.403526726],[-71.493714144,41.403469804],[-71.493746166,41.403412332],[-71.493783867,41.403353329],[-71.49378448,41.403295878],[-71.493756631,41.403243389],[-71.493685768,41.403211207],[-71.493612839,41.403175525],[-71.493556982,41.403137306],[-71.493530986,41.403083307],[-71.493514407,41.403026245],[-71.493531028,41.40296413],[-71.493572891,41.402913657],[-71.493632918,41.402864192],[-71.493693187,41.40282049],[-71.493762781,41.402772992],[-71.49383842,41.402732493],[-71.49390935,41.402692862],[-71.493967312,41.402639852],[-71.494002461,41.402588075],[-71.494032628,41.402531427],[-71.494052955,41.402467048],[-71.494053873,41.402393817],[-71.494052847,41.402319168],[-71.494058383,41.402242232],[-71.494067654,41.402163742],[-71.494079143,41.40209241],[-71.4940841,41.402024828],[-71.494097987,41.401966372],[-71.494116854,41.401912788],[-71.494124788,41.401848705],[-71.494124095,41.40178341],[-71.494131239,41.401722964],[-71.494134767,41.40166755],[-71.494138265,41.401611472],[-71.494137086,41.401556926],[-71.494145019,41.401492843],[-71.494134395,41.401417737],[-71.494118454,41.401352029],[-71.494090029,41.401284469],[-71.494053251,41.401222808],[-71.494028836,41.401160165],[-71.494024649,41.401102143],[-71.494026812,41.401036756],[-71.494041337,41.400969633],[-71.494051184,41.400905505],[-71.494049701,41.4008438],[-71.49405967,41.400782554],[-71.494080817,41.400714607],[-71.494098227,41.400648879],[-71.494118493,41.400583082],[-71.494142586,41.400516507],[-71.494168592,41.400451259],[-71.494198819,41.400396075],[-71.494225311,41.400342331],[-71.494250345,41.400277151],[-71.494273768,41.400217735],[-71.494287655,41.400160011],[-71.494301541,41.4001008],[-71.494283533,41.400054579],[-71.494196087,41.400037833],[-71.494134366,41.400044988],[-71.494082969,41.400094935],[-71.494050497,41.400117918],[-71.494021371,41.400080569],[-71.494008223,41.400037755],[-71.493944197,41.400010467],[-71.493885154,41.399964426],[-71.493841906,41.399907934],[-71.493821561,41.399850254],[-71.493815128,41.399785073],[-71.493817594,41.399727577],[-71.493800561,41.399657615],[-71.493798624,41.399584384],[-71.493786814,41.399527208],[-71.493753924,41.399467651],[-71.493743208,41.399413311],[-71.493716302,41.39936009],[-71.493648876,41.399318554],[-71.49357191,41.399301602],[-71.49348902,41.39930345],[-71.493410714,41.399324578],[-71.493337662,41.399357827],[-71.493271839,41.399380831],[-71.493193836,41.399409849],[-71.493107146,41.399436236],[-71.493029842,41.399458759],[-71.493014534,41.399460176],[-71.492956671,41.399465456],[-71.492913086,41.399447065],[-71.492885696,41.399381608],[-71.492840019,41.399336002],[-71.492776996,41.399310109],[-71.492719472,41.399277675],[-71.492667173,41.399233578],[-71.492627906,41.399180607],[-71.492574544,41.399133697],[-71.492498733,41.399121045],[-71.492423739,41.399129204],[-71.492372807,41.399095147],[-71.492346295,41.399051943],[-71.492359241,41.39899351],[-71.492379993,41.398939926],[-71.492424769,41.398890826],[-71.492481118,41.398844335],[-71.492566653,41.39881438],[-71.492619323,41.398795973],[-71.49276032,41.3987684],[-71.492826599,41.398732452],[-71.492883311,41.398695291],[-71.492937715,41.398649554],[-71.493000197,41.398613697],[-71.493014625,41.398608598],[-71.493078229,41.398586074],[-71.493152344,41.398554998],[-71.493181781,41.398503335],[-71.493210395,41.398479735],[-71.49327552,41.398438778],[-71.493348299,41.398398393],[-71.493425389,41.398371524],[-71.493502177,41.398335325],[-71.493577142,41.398302076],[-71.493659394,41.398284424],[-71.49375258,41.398278026],[-71.493853542,41.398275744],[-71.493926893,41.398274101],[-71.494022144,41.39827127],[-71.494093554,41.398244493],[-71.494132437,41.39819123],[-71.494170105,41.398130785],[-71.494220924,41.398089415],[-71.494274411,41.398092528],[-71.494296091,41.398158831],[-71.494290526,41.398233639],[-71.49428068,41.398298476],[-71.494228706,41.398358509],[-71.494190278,41.398423253],[-71.494171441,41.398477523],[-71.494155034,41.39854467],[-71.494156244,41.398599239],[-71.49421164,41.398649671],[-71.494272172,41.398685626],[-71.49432286,41.398737613],[-71.494364194,41.398794127],[-71.494398755,41.398847943],[-71.494416518,41.398911432],[-71.494429452,41.398972885],[-71.494448308,41.399039942],[-71.494467225,41.39910844],[-71.494483713,41.399163375],[-71.494496344,41.399217625],[-71.494508335,41.399303526],[-71.494530867,41.399366924],[-71.494554918,41.399420213],[-71.494587873,41.399433823],[-71.494636261,41.399403339],[-71.494675873,41.399344266],[-71.494712083,41.399295348],[-71.49475303,41.399247071],[-71.494812445,41.39920625],[-71.494891387,41.399200879],[-71.494963858,41.399200653],[-71.495032651,41.399252252],[-71.495098377,41.399298156],[-71.495139774,41.399332417],[-71.495173399,41.399315151],[-71.495178415,41.399248988],[-71.49518817,41.39918271],[-71.495211774,41.399128325],[-71.495225508,41.399066278],[-71.495234382,41.399001464],[-71.495234993,41.398944722],[-71.495217108,41.398878352],[-71.49519576,41.398819986],[-71.495177905,41.398755765],[-71.495158866,41.398683677],[-71.495132264,41.398613898],[-71.495104902,41.398549174],[-71.4950824,41.398486485],[-71.49506649,41.39842151],[-71.495054709,41.398365088],[-71.495042413,41.398295699],[-71.495039046,41.398234772],[-71.495049925,41.398172039],[-71.495074228,41.398111891],[-71.495109464,41.398062309],[-71.495116758,41.39800614],[-71.495138479,41.39795251],[-71.495171408,41.397892888],[-71.49520777,41.39782389],[-71.495232741,41.397756583],[-71.495240673,41.397692478],[-71.495243594,41.397622037],[-71.495244602,41.397550224],[-71.495241053,41.397485684],[-71.495220738,41.397430131],[-71.495144748,41.397388778],[-71.495068178,41.397381914],[-71.49499981,41.397364758],[-71.494964276,41.397334682],[-71.494989884,41.397283133],[-71.495006927,41.397231767],[-71.49497583,41.397169261],[-71.494930943,41.397118601],[-71.494862456,41.397074893],[-71.494803411,41.397076925],[-71.494741873,41.397111343],[-71.49468319,41.3971464],[-71.494600666,41.39715758],[-71.494546937,41.397149458],[-71.494521915,41.39709546],[-71.494498715,41.397039289],[-71.494468711,41.396979642],[-71.494436035,41.396925095],[-71.494392941,41.396872216],[-71.494339762,41.396828897],[-71.494285609,41.396810003],[-71.494195949,41.396809885],[-71.494125118,41.396826531],[-71.494049547,41.396869157],[-71.493967628,41.396919102],[-71.493908884,41.396952718],[-71.493847406,41.396988576],[-71.493793703,41.397029282],[-71.493725998,41.397077443],[-71.493682407,41.397132261],[-71.493650601,41.39719616],[-71.493626994,41.397274238],[-71.493620214,41.397343329],[-71.49360092,41.397409812],[-71.49354108,41.397464263],[-71.493492327,41.397509155],[-71.4934416,41.397552674],[-71.49336855,41.397585215],[-71.493267226,41.397578851],[-71.493192933,41.397581225],[-71.493104365,41.397583941],[-71.493030711,41.397578425],[-71.493014735,41.397577555],[-71.492945698,41.397573846],[-71.49286518,41.397563458],[-71.49277221,41.397551216],[-71.492691359,41.397532183],[-71.492601001,41.39751411],[-71.492496338,41.397494915],[-71.492416853,41.397486653],[-71.492335757,41.397485596],[-71.492252869,41.397487443],[-71.492168795,41.397507288],[-71.492085477,41.397545796],[-71.492005865,41.397582041],[-71.491925341,41.397619725],[-71.491844609,41.39762729],[-71.491804889,41.39756357],[-71.491794661,41.397497748],[-71.491792787,41.39742669],[-71.491802636,41.397362562],[-71.491787671,41.397296877],[-71.491826433,41.397240733],[-71.491859395,41.397181821],[-71.491867361,41.397118471],[-71.491849661,41.397056377],[-71.491827496,41.397002355],[-71.491778603,41.396947417],[-71.491751639,41.396892732],[-71.491701135,41.396845044],[-71.491602907,41.396868067],[-71.491508566,41.396893881],[-71.491417113,41.396895932],[-71.491316823,41.396892449],[-71.491234847,41.396892877],[-71.491185404,41.396871695],[-71.491151667,41.396814311],[-71.491106874,41.396766485],[-71.491075963,41.396708301],[-71.491078522,41.396652268],[-71.491094202,41.396590863],[-71.491128076,41.396531242],[-71.491171668,41.396476402],[-71.491227134,41.396432793],[-71.491271697,41.396378662],[-71.491243275,41.39633484],[-71.49119748,41.396284865],[-71.49120742,41.396223619],[-71.491244787,41.396155994],[-71.491256878,41.396137904],[-71.491280785,41.396102045],[-71.491312775,41.396043179],[-71.491343064,41.395989413],[-71.491344711,41.395934067],[-71.491331599,41.395867605],[-71.49130895,41.395801325],[-71.491297052,41.395741975],[-71.491276801,41.395687176],[-71.491236323,41.395628487],[-71.491201646,41.395571103],[-71.491202019,41.395508644],[-71.491222377,41.395444974],[-71.491267639,41.395383662],[-71.491299356,41.395318347],[-71.491309236,41.395254928],[-71.491309306,41.39518387],[-71.49132131,41.395126146],[-71.491317066,41.395067369],[-71.491294842,41.395010465],[-71.491260437,41.394960239],[-71.491220383,41.394912323],[-71.491221698,41.394849086],[-71.491212292,41.394780406],[-71.491192377,41.394710467],[-71.491175257,41.394639773],[-71.491162206,41.394574751],[-71.49115845,41.394503738],[-71.491170484,41.394446769],[-71.491187836,41.394378868],[-71.491214327,41.394325148],[-71.491251327,41.39427264],[-71.491306427,41.394220431],[-71.491371976,41.394165799],[-71.491429871,41.394110663],[-71.491479232,41.394057127],[-71.491513134,41.393998238],[-71.491528054,41.393941909],[-71.491529307,41.393876523],[-71.491512823,41.39382161],[-71.491531838,41.393796065],[-71.491597041,41.393829781],[-71.491665493,41.393872759],[-71.491713351,41.393924816],[-71.491733236,41.393994023],[-71.491754183,41.394066043],[-71.491764379,41.394131179],[-71.491781318,41.39419755],[-71.491798136,41.394261794],[-71.491794179,41.394330085],[-71.491762402,41.394394691],[-71.491715836,41.394445986],[-71.491655604,41.39448971],[-71.49157806,41.394530231],[-71.491495808,41.394572284],[-71.491442166,41.394613698],[-71.491422478,41.394670849],[-71.491482487,41.394716892],[-71.491554039,41.394742558],[-71.491582767,41.394769913],[-71.491657514,41.394754595],[-71.491735297,41.39474495],[-71.491809586,41.394743285],[-71.491892713,41.394747865],[-71.491971889,41.394772662],[-71.492040889,41.394805578],[-71.492094764,41.394841739],[-71.492138525,41.394887392],[-71.492192736,41.394908459],[-71.492248442,41.394870567],[-71.492300231,41.394829907],[-71.492349742,41.394780007],[-71.492382581,41.394718213],[-71.492396377,41.394657607],[-71.492404039,41.394585635],[-71.492443863,41.394532326],[-71.492494924,41.394473027],[-71.4925431,41.394413796],[-71.492589484,41.39435676],[-71.492632223,41.394304115],[-71.492658591,41.39424893],[-71.492661939,41.394187821],[-71.49264427,41.39412719],[-71.492598142,41.39407008],[-71.49253124,41.394017748],[-71.492459388,41.393960476],[-71.492389419,41.393903181],[-71.492325493,41.393854349],[-71.4922691,41.393802498],[-71.492210275,41.393762173],[-71.492144618,41.393716268],[-71.492094177,41.393670729],[-71.49206445,41.393618285],[-71.492046994,41.393562663],[-71.492022795,41.393505028],[-71.492009895,41.393444284],[-71.491990222,41.39338084],[-71.491949654,41.393320002],[-71.491894963,41.393263073],[-71.491842245,41.39320754],[-71.49177981,41.393147913],[-71.491721505,41.393095398],[-71.491652022,41.393050293],[-71.491561943,41.393038668],[-71.491466881,41.393045797],[-71.49139177,41.393075477],[-71.491323858,41.393093516],[-71.491247839,41.39310028],[-71.491158911,41.393118067],[-71.491085592,41.393144133],[-71.491025723,41.393197874],[-71.490985079,41.393254795],[-71.490972072,41.39331181],[-71.491010545,41.393368372],[-71.491024567,41.393433371],[-71.491062491,41.393500727],[-71.491098018,41.393554498],[-71.491099891,41.393626265],[-71.491073521,41.393682845],[-71.49105192,41.393739356],[-71.491013737,41.393786855],[-71.490952079,41.393818411],[-71.490880336,41.393860944],[-71.490824112,41.393909585],[-71.49080333,41.393962483],[-71.49076056,41.394014395],[-71.490709316,41.394068662],[-71.49067435,41.394124738],[-71.490677652,41.39418427],[-71.490700028,41.394243346],[-71.490695585,41.394300178],[-71.490674195,41.394361675],[-71.490677618,41.394424066],[-71.490676152,41.394483712],[-71.49066457,41.394552185],[-71.490641388,41.394616609],[-71.490625919,41.394683686],[-71.490625028,41.394757649],[-71.490627176,41.394812195],[-71.490635031,41.394890252],[-71.490644527,41.394961151],[-71.490650348,41.395036396],[-71.490649668,41.395115367],[-71.490628701,41.395188345],[-71.490595161,41.39525661],[-71.490566147,41.395318289],[-71.490523436,41.39537091],[-71.490473102,41.395424469],[-71.49043601,41.395475558],[-71.490385343,41.395519762],[-71.49034233,41.395565248],[-71.490335883,41.395619244],[-71.490364089,41.395681088],[-71.49041368,41.395730218],[-71.490433355,41.395769991],[-71.490384571,41.395814173],[-71.490346719,41.395868853],[-71.490346557,41.395937784],[-71.490337709,41.39600333],[-71.49029898,41.396035757],[-71.490241146,41.396068662],[-71.490187687,41.396091391],[-71.490171113,41.396033596],[-71.490178558,41.396004711],[-71.490254188,41.395987954],[-71.490286299,41.39593197],[-71.490287464,41.395865166],[-71.490294519,41.395802524],[-71.490296564,41.395733547],[-71.490264773,41.395677558],[-71.490229246,41.395623078],[-71.49020678,41.39556112],[-71.490202688,41.395505933],[-71.490234527,41.395443477],[-71.490280244,41.395393623],[-71.490322165,41.39534457],[-71.490355918,41.395282091],[-71.490386267,41.395229697],[-71.490390464,41.395190818],[-71.490344939,41.395172495],[-71.490393693,41.395128313],[-71.490393064,41.395064413],[-71.490366042,41.395007555],[-71.490334156,41.394972378],[-71.490299291,41.394959545],[-71.490347013,41.394911795],[-71.490341007,41.394856654],[-71.490298587,41.394796593],[-71.490253705,41.394746595],[-71.490239592,41.394679423],[-71.490224961,41.394623046],[-71.490175432,41.394576044],[-71.490109469,41.394547404],[-71.490049096,41.394515701],[-71.489968185,41.394519673],[-71.489904643,41.394551274],[-71.489880408,41.394541735],[-71.489921387,41.394492019],[-71.490001359,41.394466502],[-71.490089405,41.394474583],[-71.490175507,41.394481269],[-71.490253351,41.394472356],[-71.490312064,41.394438009],[-71.490277388,41.394381334],[-71.490235422,41.39433273],[-71.490202418,41.394269582],[-71.49015605,41.394206731],[-71.490122195,41.394145755],[-71.490088431,41.394088348],[-71.490075075,41.394039816],[-71.490135822,41.394008305],[-71.490195601,41.393953124],[-71.490231811,41.393904208],[-71.490264622,41.393841728],[-71.490271829,41.3937827],[-71.490270739,41.393755416],[-71.490258722,41.393692499],[-71.490231185,41.393623519],[-71.49019493,41.393574047],[-71.490135256,41.393536626],[-71.490057844,41.393507506],[-71.489991973,41.393480947],[-71.489956508,41.393427908],[-71.489920041,41.39337345],[-71.48986286,41.393325943],[-71.48982381,41.393279399],[-71.48978549,41.393226404],[-71.489771741,41.393167832],[-71.489751159,41.393105829],[-71.48974959,41.393041951],[-71.489825095,41.393022313],[-71.489905156,41.392997574],[-71.489974014,41.392954378],[-71.490039044,41.392911273],[-71.49009618,41.392861168],[-71.490135183,41.392811497],[-71.490191649,41.392768551],[-71.490256101,41.392734091],[-71.490317123,41.392686046],[-71.490382667,41.392655885],[-71.490463579,41.392628928],[-71.490519923,41.392583146],[-71.490592754,41.392567874],[-71.49065927,41.392538377],[-71.490718103,41.392506912],[-71.490779608,41.392471056],[-71.490784346,41.392471217],[-71.490843878,41.392433028],[-71.490915253,41.392404834],[-71.490994281,41.392379386],[-71.491055087,41.392349293],[-71.491115045,41.392298434],[-71.491173393,41.392254733],[-71.491247958,41.392212131],[-71.49129759,41.392165068],[-71.491347709,41.392105791],[-71.491374898,41.392047016],[-71.49137287,41.391995398],[-71.491387178,41.391973489],[-71.491431288,41.391881347],[-71.491442743,41.391835836],[-71.491461123,41.391792384],[-71.491506413,41.391732467],[-71.491543229,41.391674973],[-71.491574669,41.391626124],[-71.491634717,41.391577392],[-71.491705727,41.391540644],[-71.491761979,41.39149198],[-71.491832505,41.391443019],[-71.491894405,41.391394241],[-71.491939936,41.391340087],[-71.491983494,41.391283806],[-71.4920426,41.391235828],[-71.492091319,41.391189496],[-71.492128165,41.391133375],[-71.492171631,41.391074989],[-71.492208295,41.391013859],[-71.492233419,41.390950121],[-71.49226249,41.390889128],[-71.492283148,41.390834103],[-71.492320327,41.390785163],[-71.492367223,41.390741758],[-71.492418554,41.39068964],[-71.492458163,41.390630591],[-71.492493216,41.390576665],[-71.492512445,41.390532434],[-71.492595385,41.390532005],[-71.492612422,41.390529468],[-71.492553783,41.390492757],[-71.492479347,41.390491563],[-71.492434769,41.390449456],[-71.492454394,41.390390863],[-71.492527316,41.390354046],[-71.492600513,41.390300717],[-71.492671645,41.390243111],[-71.492741197,41.390193441],[-71.492805587,41.390134577],[-71.492860347,41.390097461],[-71.492939798,41.390056894],[-71.493015544,41.39002129],[-71.493018429,41.39001994],[-71.493106383,41.38997775],[-71.493199166,41.389937618],[-71.493270477,41.389909446],[-71.493346525,41.389879032],[-71.493415952,41.389850906],[-71.493504878,41.389809424],[-71.49360674,41.389781276],[-71.493678504,41.389763876],[-71.493772592,41.38973232],[-71.493838649,41.389690676],[-71.493872516,41.389631718],[-71.493898306,41.389560066],[-71.493946053,41.389490062],[-71.493995166,41.389430099],[-71.494027241,41.389373382],[-71.494044887,41.389353783],[-71.494079485,41.389272389],[-71.494085866,41.389240668],[-71.494148459,41.389209087],[-71.494209899,41.389171125],[-71.494238329,41.389118799],[-71.494247231,41.389079097],[-71.494297161,41.389039922],[-71.494342962,41.388992217],[-71.494394837,41.388930012],[-71.494442278,41.388875811],[-71.494486774,41.38882097],[-71.49453136,41.388766861],[-71.494576948,41.388714124],[-71.494617829,41.388662964],[-71.494656766,41.388611096],[-71.494697828,41.388564968],[-71.494746149,41.388509281],[-71.494769809,41.388480786],[-71.494776642,41.388484216],[-71.494853019,41.388487536],[-71.49490173,41.388489299],[-71.494885182,41.388456662],[-71.494810263,41.388442525],[-71.494788246,41.388440877],[-71.49481151,41.388420821],[-71.494781112,41.388405131],[-71.494723901,41.388356163],[-71.494662713,41.388304381],[-71.494594904,41.388252805],[-71.494533988,41.388207496],[-71.494478052,41.388166395],[-71.494404989,41.388127123],[-71.494372044,41.388065417],[-71.494378275,41.388006366],[-71.494418396,41.387960238],[-71.494468933,41.387912441],[-71.494524359,41.387867412],[-71.494583309,41.387815819],[-71.494642288,41.387764249],[-71.494702785,41.387727682],[-71.494753625,41.387687067],[-71.494791863,41.387640962],[-71.494855335,41.387607254],[-71.494929101,41.387591934],[-71.495016746,41.387566986],[-71.495097316,41.387531426],[-71.495173058,41.387493853],[-71.495252169,41.387469088],[-71.495333618,41.387455071],[-71.495415917,41.387439568],[-71.495491202,41.387414894],[-71.495568826,41.387376521],[-71.495637976,41.387341257],[-71.495685809,41.387297073],[-71.495678342,41.387252727],[-71.495622497,41.387215241],[-71.495563525,41.387170595],[-71.495520679,41.387124167],[-71.495454327,41.387085444],[-71.495372183,41.38705715],[-71.495315763,41.387004592],[-71.495274254,41.386943732],[-71.495236146,41.386896526],[-71.495239457,41.386882323],[-71.495241857,41.386871963],[-71.495315014,41.386865334],[-71.495410854,41.386878968],[-71.495494335,41.386892145],[-71.495570923,41.38690045],[-71.495673992,41.386903198],[-71.49576701,41.386892498],[-71.495858662,41.386872467],[-71.495940442,41.386890721],[-71.496007432,41.38692153],[-71.496077551,41.386934294],[-71.496165284,41.386935212],[-71.496240052,41.386896929],[-71.496330854,41.386879779],[-71.49639563,41.386853937],[-71.496460863,41.386815837],[-71.49652482,41.386769893],[-71.496583525,41.386711849],[-71.496635518,41.386652548],[-71.496667437,41.386592925],[-71.496658694,41.386539294],[-71.496689885,41.386485458],[-71.496707622,41.386427619],[-71.496703162,41.386363811],[-71.496700705,41.386300688],[-71.496696608,41.386245502],[-71.496675749,41.386176341],[-71.496645961,41.386122434],[-71.496616781,41.386059929],[-71.4965941,41.385992209],[-71.496592645,41.385931922],[-71.496613754,41.385863266],[-71.496647861,41.385785667],[-71.496669607,41.385733501],[-71.496689805,41.385666239],[-71.496712978,41.385601128],[-71.496729168,41.38552824],[-71.496732694,41.3854492],[-71.496736797,41.3853845],[-71.496758452,41.385329405],[-71.49679447,41.385276187],[-71.496848829,41.385239344],[-71.496917978,41.38519301],[-71.496993168,41.385165476],[-71.497059765,41.385138125],[-71.49711045,41.385093895],[-71.497158766,41.385038961],[-71.497212275,41.384993999],[-71.497293144,41.384965596],[-71.49737711,41.38494362],[-71.497451268,41.384914645],[-71.497525334,41.384882856],[-71.497596061,41.38483961],[-71.497673225,41.384790486],[-71.497741523,41.384733654],[-71.49779242,41.384670761],[-71.497833752,41.384607365],[-71.49787566,41.384558332],[-71.49792437,41.384511997],[-71.497966035,41.384457932],[-71.497998803,41.384394742],[-71.498012075,41.384320459],[-71.498014871,41.384247182],[-71.497993616,41.384191675],[-71.497938563,41.384149112],[-71.49785381,41.384127338],[-71.497773763,41.384128389],[-71.49772229,41.384152539],[-71.497656121,41.384166946],[-71.497585338,41.384112558],[-71.497532988,41.384041911],[-71.497506936,41.383985786],[-71.49749139,41.383930851],[-71.497476848,41.383852199],[-71.497467073,41.383774188],[-71.497454412,41.383719161],[-71.49742666,41.383644443],[-71.497390314,41.383569839],[-71.497343522,41.383495509],[-71.497308846,41.383438858],[-71.49727253,41.383387947],[-71.497223977,41.383318008],[-71.497181072,41.383245714],[-71.49715417,41.383192471],[-71.497133736,41.383133327],[-71.497131675,41.383057992],[-71.497165445,41.382995511],[-71.497220258,41.382935409],[-71.497277896,41.382874506],[-71.497337537,41.382815708],[-71.497397026,41.382777058],[-71.497474127,41.382750164],[-71.49754822,41.382743487],[-71.497631939,41.382763844],[-71.497686902,41.382755429],[-71.497750976,41.382712388],[-71.497817176,41.382651302],[-71.497852858,41.382589461],[-71.497859055,41.382528992],[-71.497855686,41.382467241],[-71.497855505,41.382439339],[-71.49786738,41.382369631],[-71.497902151,41.382311632],[-71.497951163,41.382265892],[-71.498033334,41.382234675],[-71.498104087,41.382208421],[-71.498161662,41.382162041],[-71.498205907,41.382112687],[-71.498238734,41.382059742],[-71.498164642,41.3820242],[-71.498083961,41.381982918],[-71.49802809,41.381935278],[-71.497985671,41.381873344],[-71.497974741,41.381812257],[-71.497981879,41.381750598],[-71.497977569,41.381693125],[-71.497938976,41.381634782],[-71.497917387,41.381593065],[-71.497945447,41.381541493],[-71.497952676,41.38146904],[-71.497976029,41.381410263],[-71.497995556,41.381345723],[-71.49800655,41.381282624],[-71.498052829,41.381216048],[-71.49810761,41.381161],[-71.498167977,41.381119651],[-71.498234934,41.381090538],[-71.498297153,41.38105708],[-71.498351873,41.381010631],[-71.498369486,41.380951831],[-71.498392869,41.380888046],[-71.498403802,41.380831396],[-71.498390867,41.380778222],[-71.498371283,41.380724979],[-71.498389807,41.380669084],[-71.498447472,41.380610445],[-71.498488983,41.380544601],[-71.498502892,41.380472148],[-71.498512944,41.380405435],[-71.498516346,41.380336549],[-71.498513099,41.380265422],[-71.498513647,41.380195782],[-71.498525582,41.380133414],[-71.498549906,41.380071047],[-71.498586618,41.38000948],[-71.498621356,41.379956489],[-71.498659951,41.379894923],[-71.498698455,41.379846323],[-71.498753112,41.379805615],[-71.498806372,41.37982167],[-71.49884706,41.379855587],[-71.498923154,41.379879602],[-71.498935329,41.379905514],[-71.498876846,41.379949014],[-71.498821278,41.37998755],[-71.498768503,41.380031094],[-71.498724321,41.380075417],[-71.498691404,41.380139179],[-71.498673761,41.380200083],[-71.498696413,41.380228214],[-71.498747821,41.380236334],[-71.498780766,41.380289622],[-71.498802263,41.380345701],[-71.498798983,41.380396656],[-71.498741623,41.380420121],[-71.498732755,41.380453809],[-71.498785833,41.380494953],[-71.498847991,41.380462203],[-71.498932983,41.38044464],[-71.499009199,41.380449283],[-71.499074635,41.380491937],[-71.499113319,41.380544516],[-71.499150243,41.380574134],[-71.49922652,41.380573037],[-71.4992789,41.380576125],[-71.499344397,41.380610156],[-71.499424257,41.380637807],[-71.499485898,41.380680438],[-71.499555039,41.380733863],[-71.499606173,41.380780039],[-71.499631467,41.3808347],[-71.499651022,41.38089366],[-71.499654301,41.380957605],[-71.499656669,41.381024364],[-71.499664686,41.38109261],[-71.499667023,41.3811601],[-71.499659857,41.381218946],[-71.499651749,41.381285659],[-71.499641667,41.381353836],[-71.499640179,41.381424185],[-71.499647345,41.381483786],[-71.499672609,41.381541351],[-71.499723683,41.381586772],[-71.49979483,41.381631644],[-71.499850763,41.381670638],[-71.499895188,41.381720358],[-71.49990615,41.381779295],[-71.499897101,41.381839536],[-71.499882282,41.381907713],[-71.499875996,41.381980166],[-71.499864943,41.382050493],[-71.499839709,41.382107829],[-71.499810588,41.382172987],[-71.499777641,41.38224105],[-71.499749491,41.382307694],[-71.49972614,41.382365053],[-71.499704731,41.382422343],[-71.499697474,41.382467261],[-71.499695712,41.382478307],[-71.499729054,41.382478445],[-71.499749126,41.382467261],[-71.499790363,41.382444276],[-71.499846996,41.382392155],[-71.499894063,41.3823471],[-71.499940311,41.382286287],[-71.499971223,41.382234006],[-71.500000283,41.382173102],[-71.500023665,41.382111489],[-71.500046986,41.382055593],[-71.500081694,41.382003334],[-71.500106958,41.38193884],[-71.500113122,41.381884294],[-71.500124145,41.381814699],[-71.500126574,41.381750136],[-71.500112727,41.381691198],[-71.500088404,41.381635074],[-71.500072705,41.381570397],[-71.500077837,41.381528064],[-71.500138143,41.381492431],[-71.500148983,41.381446553],[-71.500161797,41.38139203],[-71.500157273,41.381359714],[-71.500206191,41.381322595],[-71.500243723,41.381276122],[-71.500251891,41.381206482],[-71.500259057,41.381146927],[-71.500260423,41.381090963],[-71.500237042,41.381034839],[-71.500262153,41.380994747],[-71.500301628,41.380946125],[-71.500307883,41.380877925],[-71.500319847,41.380811257],[-71.500350576,41.38078196],[-71.500406994,41.380757809],[-71.500440821,41.380697637],[-71.500462805,41.380693406],[-71.500491926,41.380748112],[-71.500533466,41.380795682],[-71.500582991,41.380800919],[-71.500619217,41.380798929],[-71.500626414,41.380854939],[-71.500614481,41.380915202],[-71.500595868,41.380981161],[-71.500563894,41.381046365],[-71.500532011,41.381100797],[-71.500524845,41.381163942],[-71.500515706,41.381232782],[-71.500504775,41.381297368],[-71.500506141,41.381358387],[-71.500525728,41.381416638],[-71.500595113,41.381442092],[-71.500667474,41.381450302],[-71.500738134,41.381437677],[-71.500807853,41.381418626],[-71.500803571,41.381357562],[-71.50082677,41.381318178],[-71.500896337,41.381319207],[-71.500962868,41.381341048],[-71.501030522,41.381346376],[-71.501033619,41.381314815],[-71.5009806,41.381267176],[-71.500948776,41.381198817],[-71.500925364,41.38114562],[-71.500904897,41.381080211],[-71.500919532,41.38103431],[-71.50097164,41.381074012],[-71.50100647,41.381128741],[-71.501006045,41.38118116],[-71.501006744,41.381214162],[-71.501043518,41.3812696],[-71.501080321,41.381316438],[-71.501104645,41.381373271],[-71.501061526,41.381403941],[-71.500987283,41.381387818],[-71.500927462,41.381357423],[-71.50086746,41.381354268],[-71.500863331,41.381396601],[-71.500867704,41.381443325],[-71.500806488,41.381473172],[-71.500725321,41.381488587],[-71.500646219,41.381488244],[-71.500567086,41.38148717],[-71.500532591,41.381510727],[-71.500539758,41.381571745],[-71.500545953,41.381629218],[-71.500564567,41.381688887],[-71.500558343,41.381752764],[-71.500583547,41.381820346],[-71.500602131,41.381880015],[-71.500623601,41.381938998],[-71.500595513,41.381994871],[-71.500594086,41.382054471],[-71.500612671,41.382115581],[-71.500675407,41.382139526],[-71.500744215,41.382118279],[-71.500791342,41.382066111],[-71.50078706,41.382002188],[-71.500790187,41.381969895],[-71.500857234,41.381928545],[-71.500929018,41.381890808],[-71.500986561,41.381842276],[-71.501056492,41.381800926],[-71.501132862,41.381786906],[-71.501213118,41.38176145],[-71.501285843,41.381726595],[-71.501309193,41.381667086],[-71.501322036,41.381611144],[-71.501345023,41.381596164],[-71.501370651,41.381606341],[-71.501390178,41.381668891],[-71.501459503,41.381705117],[-71.501530651,41.381746329],[-71.501560714,41.381801012],[-71.501562082,41.381872802],[-71.501552093,41.381930916],[-71.501529745,41.381986103],[-71.501498774,41.382041998],[-71.501463065,41.382098512],[-71.50141688,41.382151457],[-71.501397386,41.382210212],[-71.501426508,41.382261327],[-71.501472847,41.382308211],[-71.501538347,41.382344414],[-71.501540929,41.382379566],[-71.501521648,41.382408954],[-71.501509776,41.382463409],[-71.501511871,41.382467251],[-71.501537957,41.382515233],[-71.501620917,41.38251418],[-71.501697226,41.38250805],[-71.501756621,41.382467248],[-71.501759506,41.382465258],[-71.501809426,41.38241883],[-71.501859467,41.382359481],[-71.501890378,41.382306467],[-71.501914669,41.382248444],[-71.501936167,41.382182462],[-71.501974699,41.382130225],[-71.501994162,41.38207792],[-71.502021277,41.382024929],[-71.502075904,41.381986391],[-71.502118202,41.381942045],[-71.502143434,41.381884731],[-71.502189588,41.381836108],[-71.502212847,41.381783093],[-71.502238018,41.381732252],[-71.50225663,41.381669152],[-71.502301842,41.381618402],[-71.502382068,41.381597199],[-71.502460259,41.381596832],[-71.50251777,41.381554017],[-71.502577284,41.381503998],[-71.502620493,41.381460451],[-71.502666646,41.381408214],[-71.502727952,41.381368281],[-71.502780695,41.381329057],[-71.502767757,41.381275152],[-71.502816463,41.381264561],[-71.5028853,41.381239036],[-71.502929601,41.381183231],[-71.502958598,41.381131658],[-71.503013223,41.381091747],[-71.503032504,41.381061672],[-71.503085765,41.381076994],[-71.50310338,41.381141671],[-71.503122908,41.38120493],[-71.50318361,41.381241796],[-71.503262712,41.381243577],[-71.503333372,41.381228847],[-71.503379923,41.381250572],[-71.503383236,41.381313741],[-71.503382784,41.3813719],[-71.50336891,41.381438614],[-71.503357982,41.381498146],[-71.503349847,41.381560559],[-71.50335313,41.381629514],[-71.503332757,41.38167537],[-71.503260244,41.381684383],[-71.503221043,41.381696436],[-71.503202492,41.381753773],[-71.50320872,41.381811201],[-71.503240698,41.381863756],[-71.503303284,41.381907826],[-71.503382326,41.381916811],[-71.503478616,41.381914338],[-71.503562546,41.381905394],[-71.503649331,41.381902921],[-71.503724849,41.381873804],[-71.503778292,41.381869023],[-71.50384847,41.381912406],[-71.503911147,41.381942844],[-71.503986755,41.381902269],[-71.504049944,41.381865926],[-71.504118781,41.381841086],[-71.504191203,41.381844994],[-71.50426633,41.381866147],[-71.504336718,41.381883686],[-71.504419647,41.38188334],[-71.504494284,41.381849214],[-71.504562089,41.381831555],[-71.504645138,41.381819728],[-71.504675806,41.381795438],[-71.504674405,41.381733711],[-71.504673854,41.381679142],[-71.504682778,41.38163395],[-71.50467069,41.38159658],[-71.504698293,41.381601725],[-71.504747489,41.381647875],[-71.504750193,41.381668733],[-71.504721378,41.38169659],[-71.504739054,41.381750518],[-71.504729038,41.381812909],[-71.504690538,41.38186302],[-71.504624555,41.381889278],[-71.504549979,41.381916931],[-71.504503887,41.381959838],[-71.504504527,41.382002194],[-71.504581687,41.382008274],[-71.504643874,41.38197838],[-71.504717479,41.381950727],[-71.504789992,41.381940981],[-71.504832378,41.381885884],[-71.504900394,41.381840232],[-71.504962611,41.38180892],[-71.505023976,41.381762536],[-71.505078691,41.38171398],[-71.505116921,41.381701925],[-71.505128859,41.381757957],[-71.505101686,41.381820303],[-71.505051769,41.381866778],[-71.504980838,41.381916708],[-71.504920534,41.38194802],[-71.504848782,41.38197931],[-71.504786596,41.382011331],[-71.50471229,41.3820074],[-71.504661642,41.38202515],[-71.504602219,41.382065084],[-71.504543096,41.382066275],[-71.504486859,41.382067467],[-71.504417201,41.382075772],[-71.5043909,41.382026075],[-71.504418013,41.381970224],[-71.504385673,41.381962175],[-71.504315924,41.381981961],[-71.504243502,41.381982352],[-71.504158691,41.381982012],[-71.504085266,41.38198094],[-71.504027786,41.382018724],[-71.504000643,41.382076061],[-71.503982093,41.382135548],[-71.503967248,41.382202262],[-71.503934576,41.3822373],[-71.503891368,41.382281602],[-71.503895684,41.382337611],[-71.503919008,41.382398743],[-71.503957698,41.382448439],[-71.504015121,41.382467191],[-71.504029029,41.382471719],[-71.504076372,41.382512861],[-71.504136165,41.382544741],[-71.504213205,41.382568043],[-71.50428071,41.382590613],[-71.504356898,41.382594521],[-71.504437094,41.382581231],[-71.504511521,41.38257224],[-71.504588681,41.382579029],[-71.504665721,41.382599472],[-71.504750504,41.382609189],[-71.504823989,41.382592993],[-71.504897474,41.38258542],[-71.504961574,41.382555548],[-71.505026586,41.382529999],[-71.505108664,41.382516708],[-71.50518318,41.382491913],[-71.505248283,41.382467141],[-71.505257757,41.38246355],[-71.505331212,41.382455245],[-71.505416024,41.382459221],[-71.505492243,41.382464591],[-71.505498013,41.38246713],[-71.505542592,41.382487048],[-71.505621815,41.382471606],[-71.505651725,41.382467122],[-71.505701009,41.382459756],[-71.505778229,41.382459363],[-71.505862281,41.382441794],[-71.505894951,41.382405314],[-71.505886838,41.382345005],[-71.505859595,41.382294646],[-71.505824761,41.382237769],[-71.505785159,41.382180846],[-71.505744615,41.382126828],[-71.50569639,41.382074915],[-71.505637658,41.382025861],[-71.505569452,41.381973857],[-71.50551652,41.381918353],[-71.505490249,41.38186582],[-71.505461214,41.381801076],[-71.505454954,41.381743625],[-71.50545829,41.381686952],[-71.505435815,41.38163227],[-71.505408693,41.381565398],[-71.505378686,41.381501362],[-71.505344824,41.381443067],[-71.505311873,41.38138834],[-71.5052713,41.381337912],[-71.505227813,41.381289612],[-71.505190065,41.381239916],[-71.505156173,41.381187361],[-71.505123223,41.381139129],[-71.505087448,41.381081543],[-71.505065975,41.381022584],[-71.505090964,41.380998248],[-71.505163415,41.380990698],[-71.505235836,41.380993142],[-71.505255396,41.381051392],[-71.505285493,41.381106097],[-71.505323151,41.381168005],[-71.505372196,41.381232109],[-71.505419359,41.381299071],[-71.50546555,41.381365348],[-71.505507856,41.381438028],[-71.505545424,41.381510685],[-71.505570693,41.381569667],[-71.50559408,41.381630822],[-71.505628914,41.381681226],[-71.505665571,41.381750293],[-71.505704081,41.381821556],[-71.505750333,41.381880605],[-71.505796585,41.381941118],[-71.505846633,41.382001676],[-71.505898595,41.382062189],[-71.50594676,41.382117693],[-71.50599787,41.382164552],[-71.506049921,41.382211456],[-71.50610009,41.382256897],[-71.506153143,41.382297375],[-71.506215731,41.38234142],[-71.506254812,41.382343019],[-71.506314234,41.382299493],[-71.506371593,41.38228037],[-71.50642659,41.382315771],[-71.506480554,41.382359107],[-71.506505215,41.382399152],[-71.506505033,41.382402971],[-71.506499446,41.382402537],[-71.506440412,41.38237688],[-71.506382531,41.382342898],[-71.506353957,41.382340589],[-71.506343972,41.382400122],[-71.506301647,41.382448038],[-71.506314098,41.382467088],[-71.506339336,41.382505623],[-71.506383767,41.382554678],[-71.506441587,41.38259081],[-71.506490263,41.382584564],[-71.506546771,41.382549637],[-71.506592682,41.382529005],[-71.506663133,41.382542243],[-71.506740203,41.382559094],[-71.506799296,41.382561515],[-71.506825928,41.382568123],[-71.506804525,41.382622556],[-71.506835565,41.382677969],[-71.506870371,41.382735555],[-71.506918627,41.382778869],[-71.506973624,41.382819278],[-71.507035332,41.382849714],[-71.50707788,41.382897991],[-71.507142442,41.3829306],[-71.507185872,41.382986813],[-71.507233067,41.383044421],[-71.507276527,41.383091989],[-71.507313276,41.383147424],[-71.507350997,41.383199292],[-71.5073773,41.383249697],[-71.507418847,41.383299369],[-71.507424107,41.383359701],[-71.507437079,41.383409283],[-71.507506559,41.383421103],[-71.507400297,41.383602975],[-71.5072078,41.383844797],[-71.507204616,41.383886421],[-71.507209936,41.38393669],[-71.50724972,41.383970604],[-71.507325002,41.384000331],[-71.507521171,41.383999083],[-71.507572672,41.383992859],[-71.507630824,41.383993816],[-71.507687153,41.383981851],[-71.507733095,41.383960555],[-71.507971323,41.383966577],[-71.50798872,41.383444741],[-71.508006205,41.383402475],[-71.508074759,41.383291503],[-71.508175683,41.38317998],[-71.508268238,41.38316744],[-71.509206819,41.383087574],[-71.509958494,41.383017619],[-71.510051019,41.383007251],[-71.510152107,41.383004086],[-71.51133988,41.382993523],[-71.511653318,41.382466671],[-71.511814026,41.382196555],[-71.512150621,41.382304239],[-71.512195122,41.38222046],[-71.51186047,41.382106989],[-71.51232704,41.381302083],[-71.511898172,41.38104463],[-71.511345219,41.380689759],[-71.51137412,41.380651837],[-71.51086937,41.380345239],[-71.510421505,41.380081241],[-71.510642315,41.379874701],[-71.510389137,41.37970347],[-71.510469546,41.37953724],[-71.510839208,41.379189232],[-71.511418836,41.379542136],[-71.511465893,41.379495681],[-71.511544586,41.379429966],[-71.510964928,41.379074227],[-71.511390234,41.378677635],[-71.511850876,41.378270426],[-71.511836663,41.378257437],[-71.512130564,41.377971548],[-71.512214902,41.377904438],[-71.512600967,41.377528543],[-71.51303867,41.377126957],[-71.513084546,41.377109204],[-71.5131572,41.377080791],[-71.513169825,41.377052156],[-71.513176978,41.376988987],[-71.513178453,41.376922937],[-71.513178867,41.376867682],[-71.513182195,41.376808104],[-71.513189318,41.376747839],[-71.513193587,41.376687529],[-71.513192177,41.376623629],[-71.513186971,41.376555407],[-71.513185591,41.37648794],[-71.513186065,41.376424748],[-71.513189422,41.376360871],[-71.513195634,41.376298457],[-71.513201845,41.376231697],[-71.513207056,41.376175023],[-71.513212444,41.376096051],[-71.513214948,41.376017079],[-71.513224896,41.375961846],[-71.513236757,41.375907367],[-71.51324491,41.375836307],[-71.513253947,41.375778192],[-71.513251507,41.375723647],[-71.513257688,41.375661187],[-71.513271492,41.375605267],[-71.513270933,41.375545666],[-71.51326773,41.375471727],[-71.513265348,41.375404922],[-71.513274532,41.375326704],[-71.513287542,41.375247822],[-71.513289868,41.375191812],[-71.513292254,41.375128644],[-71.513298495,41.37506193],[-71.513302764,41.375001643],[-71.513304179,41.374942065],[-71.513307506,41.374879605],[-71.513309922,41.374815705],[-71.513311306,41.374756859],[-71.513311898,41.374680083],[-71.51331143,41.374616892],[-71.513309078,41.374548669],[-71.513309611,41.374480447],[-71.513306229,41.374425878],[-71.513323886,41.374359209],[-71.513316768,41.374293137],[-71.513324833,41.37423859],[-71.513305297,41.374171764],[-71.513293412,41.374106356],[-71.51324813,41.374048019],[-71.513190461,41.373990323],[-71.513142206,41.373941295],[-71.513098541,41.373919595],[-71.513063083,41.373943819],[-71.513083708,41.373989146],[-71.51313773,41.374029575],[-71.513151557,41.374090683],[-71.513201695,41.374140421],[-71.513198337,41.374199976],[-71.513189391,41.374253814],[-71.513179414,41.374312638],[-71.513176056,41.374375784],[-71.513175612,41.374433189],[-71.51317608,41.374494939],[-71.513173665,41.37456458],[-71.513167395,41.374635639],[-71.513164919,41.374707407],[-71.513166271,41.374782788],[-71.51316665,41.374858878],[-71.513168001,41.374930005],[-71.513172294,41.374991755],[-71.513170879,41.375052042],[-71.513157017,41.375116584],[-71.513100431,41.375165144],[-71.513029631,41.375197148],[-71.512949299,41.375231989],[-71.512853784,41.375263881],[-71.512784045,41.375282986],[-71.512708598,41.375302022],[-71.512638918,41.375317513],[-71.51254249,41.375337192],[-71.51244421,41.375354013],[-71.512345899,41.375370765],[-71.51225618,41.375386898],[-71.512178968,41.375390154],[-71.512086424,41.375397642],[-71.512000651,41.375403003],[-71.511914905,41.375397614],[-71.511822421,41.375399362],[-71.511737587,41.375398982],[-71.511657552,41.375401506],[-71.511556535,41.375398931],[-71.51148512,41.375389996],[-71.51140988,41.375381793],[-71.511323193,41.375374941],[-71.511216498,41.375369462],[-71.511113628,41.375362542],[-71.511027853,41.375357885],[-71.510939254,41.375353914],[-71.510836354,41.375348412],[-71.510735457,41.375336483],[-71.510646916,41.375320299],[-71.510555493,41.375311297],[-71.510450681,41.375307235],[-71.510350665,41.375298897],[-71.510264979,41.375287057],[-71.510175469,41.37527515],[-71.510074571,41.37525963],[-71.509969848,41.375246259],[-71.509877513,41.375230784],[-71.509785208,41.375213136],[-71.509680485,41.375196175],[-71.509574791,41.375182782],[-71.509481515,41.375168015],[-71.509386326,41.375149658],[-71.509282574,41.375131965],[-71.509185473,41.375118616],[-71.509099848,41.375101744],[-71.509013251,41.375081991],[-71.508918092,41.375061461],[-71.508822904,41.375043812],[-71.508740103,41.37502694],[-71.5086621,41.37501439],[-71.508577326,41.375004677],[-71.5084764,41.374994186],[-71.508383064,41.37498086],[-71.508289819,41.374966092],[-71.508190775,41.374952034],[-71.508095586,41.374937244],[-71.508006076,41.374925357],[-71.507916597,41.374913494],[-71.507817583,41.37489868],[-71.507709977,41.374887435],[-71.507619496,41.374876258],[-71.507530988,41.374862244],[-71.507430122,41.374844572],[-71.507320662,41.374821822],[-71.507226506,41.374797746],[-71.507134202,41.374776528],[-71.507029541,41.374758101],[-71.506920022,41.374746123],[-71.506823833,41.374733504],[-71.506722967,41.374713659],[-71.506611656,41.3746902],[-71.506507936,41.374666055],[-71.506417575,41.374641977],[-71.506323419,41.374618563],[-71.506216846,41.374596567],[-71.506121718,41.374571003],[-71.506033301,41.374544776],[-71.505940116,41.374516398],[-71.505836396,41.374490811],[-71.505740358,41.374466688],[-71.505655737,41.374442632],[-71.505566318,41.37441709],[-71.505469278,41.374392967],[-71.505385628,41.374368202],[-71.50531051,41.374344191],[-71.505233509,41.374319403],[-71.505147916,41.374294639],[-71.505060411,41.374271269],[-71.504979585,41.374250094],[-71.504900612,41.374231824],[-71.504819786,41.374209209],[-71.504732281,41.374184398],[-71.504642863,41.374162469],[-71.504562037,41.374142735],[-71.504478327,41.37412156],[-71.504385054,41.374101003],[-71.504289898,41.374079806],[-71.504204366,41.374054262],[-71.504117832,41.374028056],[-71.504019853,41.374003199],[-71.503917106,41.37398047],[-71.503827628,41.37396069],[-71.503746833,41.373938828],[-71.503662213,41.373912598],[-71.503574769,41.373882069],[-71.503493002,41.373852248],[-71.503418887,41.373825355],[-71.503344773,41.373799193],[-71.503257268,41.373775822],[-71.503165938,41.373754601],[-71.503087968,41.373729857],[-71.503015736,41.373702963],[-71.502938767,41.373676802],[-71.502851263,41.373651989],[-71.502768556,41.373625073],[-71.502698207,41.37360106],[-71.50262977,41.373577048],[-71.502553713,41.373553036],[-71.502465298,41.373526782],[-71.502397803,41.373504943],[-71.502330278,41.373485984],[-71.502250395,41.373462658],[-71.502169632,41.373431418],[-71.502088899,41.37339732],[-71.502010989,41.373366103],[-71.501916017,41.373324778],[-71.50184673,41.373284984],[-71.501799425,41.37324025],[-71.501745411,41.373201257],[-71.501786822,41.37314543],[-71.501830208,41.373083885],[-71.501873592,41.373020167],[-71.501904529,41.372964316],[-71.501935466,41.37290993],[-71.501954957,41.37285687],[-71.501910325,41.37283368],[-71.501866392,41.372845688],[-71.501832601,41.372900829],[-71.501806431,41.372956016],[-71.501770667,41.373020443],[-71.50173299,41.373087019],[-71.50170014,41.373145042],[-71.501633072,41.373187834],[-71.501557927,41.373167389],[-71.501479957,41.373145503],[-71.501406664,41.373131553],[-71.501327723,41.373108935],[-71.501251697,41.373084876],[-71.501182321,41.373061594],[-71.501111972,41.373036918],[-71.501040683,41.373011464],[-71.50096654,41.372986009],[-71.500893368,41.372964878],[-71.500824872,41.372945187],[-71.500757408,41.372920441],[-71.500689004,41.372891442],[-71.500626367,41.372857388],[-71.500566585,41.37282338],[-71.500504891,41.372792963],[-71.500422307,41.37275095],[-71.500347344,41.372710446],[-71.500281885,41.372669943],[-71.500228904,41.372621595],[-71.50019499,41.372569748],[-71.500226839,41.372517489],[-71.500276783,41.372471038],[-71.500330553,41.372418894],[-71.50038156,41.372357372],[-71.500432566,41.37229585],[-71.500481599,41.372240778],[-71.500526837,41.372184287],[-71.500516726,41.372139736],[-71.500448019,41.372149479],[-71.50040187,41.372198079],[-71.500364284,41.372253197],[-71.500317072,41.372316159],[-71.500261299,41.372379808],[-71.500220888,41.372425549],[-71.50016223,41.372490639],[-71.500111284,41.372545688],[-71.500051988,41.37257773],[-71.499973838,41.372573773],[-71.499893927,41.372555477],[-71.499801689,41.372529221],[-71.499730401,41.372505916],[-71.49966391,41.372478357],[-71.499597418,41.372452216],[-71.499529925,41.372428201],[-71.499457666,41.372404942],[-71.499385436,41.372379487],[-71.499318946,41.372350464],[-71.499255309,41.372323613],[-71.499170814,41.3722816],[-71.499085378,41.372239563],[-71.498997088,41.372194668],[-71.498919364,41.372141927],[-71.498849292,41.37208562],[-71.498780191,41.372025721],[-71.498712031,41.371967241],[-71.49865049,41.371914569],[-71.498631789,41.371867845],[-71.498661756,41.371814808],[-71.498699344,41.371762618],[-71.498752173,41.37171116],[-71.498807856,41.371659702],[-71.498867456,41.371597495],[-71.498927025,41.371533161],[-71.498981888,41.371464481],[-71.499026216,41.371404378],[-71.499059948,41.371354269],[-71.49907944,41.371301942],[-71.499050051,41.371280306],[-71.499002991,41.371324606],[-71.498952167,41.371365292],[-71.498908841,41.371420364],[-71.498857894,41.371480444],[-71.498803031,41.371546242],[-71.49874917,41.371609181],[-71.498698284,41.371656362],[-71.498645698,41.371676213],[-71.498570555,41.371659356],[-71.49849353,41.371633169],[-71.498404239,41.371603322],[-71.498307207,41.371576333],[-71.49822833,41.371547972],[-71.498155191,41.371516044],[-71.49807926,41.371476957],[-71.497998623,41.371432839],[-71.497939937,41.371381562],[-71.497877486,41.371322418],[-71.497834952,41.371277705],[-71.497789595,41.371229402],[-71.497741354,41.371180389],[-71.497691199,41.371135677],[-71.497640104,41.371093777],[-71.497589919,41.371054095],[-71.497529291,41.371003528],[-71.497478226,41.370954469],[-71.497450964,41.370903376],[-71.49750182,41.370861272],[-71.49756318,41.37081631],[-71.497634165,41.370758495],[-71.497686872,41.37071996],[-71.497736756,41.370678542],[-71.497793319,41.37063573],[-71.497853708,41.370592917],[-71.497906445,41.370552941],[-71.497971691,41.370496543],[-71.498035025,41.370444399],[-71.498095413,41.37039731],[-71.498088036,41.370366389],[-71.498057554,41.37036122],[-71.497994434,41.370393238],[-71.497935018,41.37043605],[-71.497871745,41.370479594],[-71.497807532,41.370524534],[-71.497736638,41.370574459],[-71.497662861,41.370625092],[-71.49758805,41.370684325],[-71.497520891,41.370742186],[-71.497458528,41.370792889],[-71.497412439,41.370836456],[-71.497380924,41.370845649],[-71.497311552,41.37081953],[-71.49724895,41.370781883],[-71.49717217,41.370732733],[-71.497101068,41.370682164],[-71.497028114,41.370628668],[-71.496960929,41.370567374],[-71.496898511,41.370504638],[-71.496857922,41.370455626],[-71.496823101,41.370403777],[-71.496791073,41.37035337],[-71.496743077,41.37028064],[-71.496704523,41.370211593],[-71.496679205,41.370159036],[-71.496650092,41.370105061],[-71.496619036,41.370056117],[-71.496570949,41.369989837],[-71.496537162,41.369922208],[-71.496531063,41.369848954],[-71.496534528,41.369775036],[-71.496534077,41.369709672],[-71.496544068,41.369651604],[-71.496598749,41.369609502],[-71.496671463,41.369574649],[-71.496762302,41.369534102],[-71.496847524,41.369485665],[-71.496905908,41.369450766],[-71.496966205,41.369417285],[-71.497028413,41.369385977],[-71.497091533,41.369356156],[-71.497179609,41.369309845],[-71.497259063,41.369262848],[-71.497314592,41.369227903],[-71.497374919,41.36919369],[-71.497436156,41.369163114],[-71.497513666,41.369125425],[-71.497586409,41.369085518],[-71.497644003,41.369032688],[-71.497622419,41.368990926],[-71.497569896,41.369000759],[-71.497495301,41.369036321],[-71.497421647,41.36906827],[-71.497346019,41.369111013],[-71.497271363,41.369156638],[-71.49720624,41.369193687],[-71.497134498,41.369227808],[-71.497045542,41.369268332],[-71.496959409,41.369312447],[-71.49689723,41.369340896],[-71.496807363,41.369381397],[-71.496737442,41.369423454],[-71.496669465,41.369463338],[-71.496608105,41.36951045],[-71.496531474,41.36955676],[-71.496446617,41.369566432],[-71.49636085,41.369566086],[-71.49628483,41.369538433],[-71.496218527,41.369486469],[-71.496164672,41.369425175],[-71.496110848,41.369361776],[-71.496053229,41.369298354],[-71.496026029,41.369247237],[-71.495993031,41.369198248],[-71.495940967,41.369156416],[-71.495866432,41.369180473],[-71.495807597,41.369145021],[-71.49573932,41.369103783],[-71.495680669,41.369050401],[-71.49563152,41.369001365],[-71.495584222,41.368957361],[-71.495534041,41.368913333],[-71.495487684,41.368871478],[-71.495428819,41.368839617],[-71.495392998,41.368792823],[-71.495348739,41.368725856],[-71.495324364,41.368674053],[-71.495295375,41.368603565],[-71.495277802,41.368534587],[-71.495256464,41.368464809],[-71.495237981,41.368394389],[-71.495213698,41.368331106],[-71.495189445,41.36826494],[-71.495140267,41.368218054],[-71.495090239,41.368156805],[-71.49504865,41.368111428],[-71.495000382,41.368068818],[-71.494943523,41.36802838],[-71.494881896,41.367988606],[-71.494824095,41.367948877],[-71.494766264,41.367911253],[-71.494702695,41.367875091],[-71.494640097,41.367840325],[-71.494576467,41.367809927],[-71.494505216,41.367782296],[-71.494433996,41.367751098],[-71.494372309,41.367719945],[-71.494308679,41.367691651],[-71.49423837,41.367664775],[-71.494166179,41.367632158],[-71.494094018,41.367598809],[-71.494025683,41.367566924],[-71.493964027,41.367532867],[-71.493901369,41.367497414],[-71.493835918,41.367459811],[-71.493777178,41.367417887],[-71.49372797,41.367373149],[-71.493685472,41.367327726],[-71.493643946,41.367278758],[-71.49360242,41.36722684],[-71.493560863,41.367177849],[-71.493519307,41.367130276],[-71.493479694,41.367077694],[-71.493443937,41.367020813],[-71.493404355,41.366964641],[-71.493366624,41.366916359],[-71.493329834,41.366869541],[-71.493268425,41.366803922],[-71.493225927,41.366758522],[-71.493178603,41.366713807],[-71.493122717,41.366673346],[-71.493065828,41.366636452],[-71.493018047,41.366609714],[-71.493005085,41.366602463],[-71.492927249,41.366566208],[-71.492866505,41.366535078],[-71.49280394,41.366496743],[-71.492726044,41.366464056],[-71.492639525,41.366438527],[-71.492553037,41.36640799],[-71.492472348,41.366371735],[-71.492402195,41.366326172],[-71.492341575,41.366276379],[-71.492301963,41.36622597],[-71.492274738,41.36617412],[-71.49222945,41.366116484],[-71.492172562,41.366081076],[-71.492107176,41.366033387],[-71.49202655,41.365988486],[-71.491965776,41.365959505],[-71.491875525,41.365927503],[-71.491799635,41.36588194],[-71.491773413,41.365823664],[-71.491740573,41.365761774],[-71.491692309,41.365719208],[-71.491622157,41.365673645],[-71.491544324,41.365634531],[-71.491463606,41.365597566],[-71.491384832,41.36555772],[-71.491298469,41.365517141],[-71.491235783,41.365489554],[-71.491174069,41.36546055],[-71.491109501,41.365430104],[-71.491023139,41.365383785],[-71.490942514,41.365340324],[-71.490880831,41.365307775],[-71.490819179,41.365271566],[-71.490750848,41.365237506],[-71.49067678,41.365202714],[-71.49060939,41.365168677],[-71.490545826,41.36513105],[-71.490479469,41.365094109],[-71.490411139,41.365055749],[-71.490334279,41.365014507],[-71.490261244,41.364970384],[-71.490193948,41.364926261],[-71.490127561,41.364886506],[-71.490061174,41.364848124],[-71.489991934,41.364809055],[-71.48992743,41.364772137],[-71.489874371,41.364731674],[-71.489825168,41.364688421],[-71.489774052,41.364645809],[-71.489723877,41.364606101],[-71.48967273,41.364567812],[-71.48959979,41.364512916],[-71.489537291,41.364462366],[-71.489479559,41.364413304],[-71.489423709,41.364364241],[-71.489370774,41.364313738],[-71.489332106,41.364262574],[-71.489312535,41.364207934],[-71.489354923,41.364152843],[-71.489403866,41.364107129],[-71.489449046,41.364057093],[-71.489473373,41.363996168],[-71.489414545,41.363964327],[-71.489365787,41.363987056],[-71.489309225,41.364028446],[-71.489260747,41.364010991],[-71.48920559,41.363997813],[-71.489143847,41.363973152],[-71.489101324,41.363929146],[-71.489056102,41.363864303],[-71.48900997,41.363798066],[-71.488980868,41.363737639],[-71.488974777,41.363670857],[-71.489004749,41.363613523],[-71.489045163,41.363564881],[-71.48911684,41.363539365],[-71.489201906,41.363508223],[-71.489278381,41.363480534],[-71.489305344,41.363444767],[-71.489281947,41.363391545],[-71.489216039,41.363410613],[-71.489154711,41.363449098],[-71.489097269,41.363485457],[-71.48907071,41.363465946],[-71.489041668,41.363408378],[-71.48901454,41.363341502],[-71.489012274,41.363273988],[-71.489051562,41.363241859],[-71.489136565,41.363218585],[-71.489221568,41.363196706],[-71.489295913,41.363192733],[-71.489371416,41.363165067],[-71.489447488,41.363182661],[-71.489520167,41.363153554],[-71.489522513,41.363099008],[-71.48949159,41.363033549],[-71.489463489,41.3629731],[-71.489421969,41.362925503],[-71.489386663,41.362930371],[-71.48930746,41.362942233],[-71.489258517,41.362987215],[-71.489189756,41.363004888],[-71.489147202,41.36296159],[-71.489097185,41.362900361],[-71.489036755,41.362832589],[-71.48899903,41.362785747],[-71.488962276,41.362736755],[-71.488926464,41.362684195],[-71.488893597,41.362626604],[-71.488865436,41.362569768],[-71.488840189,41.362512932],[-71.488815883,41.362454679],[-71.488789665,41.36239352],[-71.488760655,41.362329503],[-71.488727728,41.362274084],[-71.488698625,41.362221548],[-71.488665884,41.362143876],[-71.488646343,41.362090632],[-71.488629626,41.362037456],[-71.488607265,41.361972753],[-71.48859061,41.36190876],[-71.488584304,41.361865648],[-71.488566739,41.361796646],[-71.488552876,41.361742762],[-71.488540956,41.361685996],[-71.488530918,41.361627789],[-71.488520942,41.361567433],[-71.488515732,41.361503532],[-71.488516259,41.361439632],[-71.488513902,41.36137715],[-71.488505808,41.361315376],[-71.488498685,41.361253602],[-71.488497269,41.361191119],[-71.488499647,41.361133691],[-71.488511743,41.361052662],[-71.488521864,41.360979455],[-71.488547225,41.360904899],[-71.488592557,41.360840523],[-71.488640682,41.360779006],[-71.488687866,41.360720325],[-71.488746433,41.360658878],[-71.488806001,41.360598094],[-71.488873219,41.360538111],[-71.488946083,41.360481742],[-71.489014935,41.36044973],[-71.48907626,41.360409804],[-71.489151005,41.360352726],[-71.489215339,41.360293429],[-71.48927776,41.360232691],[-71.489351625,41.360175613],[-71.489416046,41.360127641],[-71.489593514,41.359981541],[-71.489761895,41.359840066],[-71.490072683,41.359683959],[-71.490409534,41.359547386],[-71.490746268,41.359420547],[-71.491076511,41.35930835],[-71.491471522,41.359201045],[-71.491814733,41.359137648],[-71.49209328,41.359132778],[-71.492358737,41.359123041],[-71.492553036,41.359220632],[-71.492688951,41.359220641],[-71.493006304,41.35931826],[-71.493122878,41.359230445],[-71.492993349,41.359118214],[-71.492747258,41.359001087],[-71.492449482,41.358932778],[-71.492067353,41.358913219],[-71.49169182,41.358942482],[-71.491329141,41.359030278],[-71.490849891,41.359166842],[-71.490422432,41.359308297],[-71.489943285,41.359488791],[-71.489535276,41.359703423],[-71.489282653,41.359874178],[-71.488989491,41.360123937],[-71.488975525,41.360138001],[-71.488930348,41.360186619],[-71.488882378,41.360228742],[-71.488812308,41.360288016],[-71.488770955,41.360336635],[-71.488733396,41.360384567],[-71.488685241,41.360451825],[-71.488637117,41.360509042],[-71.488573785,41.360565458],[-71.4885229,41.360614761],[-71.48847672,41.36066482],[-71.488435367,41.360713439],[-71.488393982,41.360764939],[-71.48834683,41.360819298],[-71.488296885,41.360875051],[-71.488242113,41.360927945],[-71.488185521,41.360976493],[-71.488134636,41.361022206],[-71.488084753,41.361065792],[-71.488052661,41.361098768],[-71.488039575,41.361112238],[-71.488001044,41.361161566],[-71.48795969,41.361211648],[-71.487915513,41.361258116],[-71.487870335,41.361302411],[-71.487824246,41.361348148],[-71.487780948,41.36139752],[-71.487739563,41.361448266],[-71.487696327,41.361495443],[-71.48765118,41.36153832],[-71.487585902,41.361598326],[-71.487527303,41.361660527],[-71.487469583,41.361724147],[-71.487409102,41.361781316],[-71.487346741,41.361831282],[-71.487287263,41.361881247],[-71.487223113,41.36191829],[-71.487143848,41.361940192],[-71.487041818,41.361950518],[-71.486969387,41.361953048],[-71.486870335,41.36194613],[-71.486778903,41.361939235],[-71.486695151,41.361929552],[-71.48661228,41.361921972],[-71.486517147,41.361902887],[-71.486440044,41.361891008],[-71.486364006,41.361868403],[-71.486273576,41.36186009],[-71.486200236,41.361856193],[-71.486132697,41.361837912],[-71.486058509,41.361820338],[-71.486040054,41.361815213],[-71.485969146,41.361795513],[-71.485897842,41.361780135],[-71.485817886,41.361767546],[-71.485734136,41.361752075],[-71.485656124,41.361736651],[-71.485576168,41.361724085],[-71.485490535,41.361711473],[-71.485405844,41.361698883],[-71.485327802,41.361682727],[-71.485257471,41.361662317],[-71.485186106,41.361647625],[-71.485118629,41.361627239],[-71.485056952,41.361597499],[-71.484967683,41.361556161],[-71.484887977,41.36151631],[-71.484796733,41.361486452],[-71.484724458,41.361472491],[-71.484658926,41.3614449],[-71.484594397,41.361410151],[-71.484529836,41.361380411],[-71.484463363,41.361352111],[-71.484394947,41.36132452],[-71.484326653,41.361291189],[-71.48425833,41.361256416],[-71.484195683,41.361223817],[-71.484110272,41.361179619],[-71.484048596,41.361148461],[-71.483974472,41.36112231],[-71.483894642,41.361099657],[-71.483828138,41.361074215],[-71.483758781,41.361048042],[-71.483689988,41.361071452],[-71.483603261,41.361071737],[-71.4834975,41.361073414],[-71.48342874,41.361089619],[-71.483346841,41.361083478],[-71.483275414,41.361077407],[-71.483193577,41.361067698],[-71.483107884,41.361059429],[-71.48301266,41.361050381],[-71.482957538,41.361031436],[-71.482879621,41.361005215],[-71.482814028,41.360982701],[-71.482720934,41.360952818],[-71.482650699,41.360917312],[-71.482586235,41.36087394],[-71.482516972,41.360838457],[-71.482455298,41.360804417],[-71.482391804,41.360766808],[-71.482335899,41.360726318],[-71.482279994,41.360688025],[-71.482221205,41.360650416],[-71.482158591,41.360614248],[-71.482068477,41.360568585],[-71.482003886,41.360544606],[-71.481911736,41.360510423],[-71.481826201,41.36048061],[-71.481738754,41.360452899],[-71.481653062,41.360446779],[-71.481599413,41.360483158],[-71.481555171,41.360532483],[-71.4814929,41.360570986],[-71.481404918,41.360610767],[-71.481309317,41.360646178],[-71.481208165,41.360669421],[-71.481108864,41.360693373],[-71.481017246,41.360708018],[-71.480918917,41.360728379],[-71.48085492,41.360753229],[-71.480790861,41.360778765],[-71.480726802,41.360805032],[-71.48064252,41.360854899],[-71.48057059,41.360909158],[-71.48049866,41.360967649],[-71.480458273,41.36101272],[-71.480409136,41.361082833],[-71.480381071,41.361134424],[-71.480359623,41.361191734],[-71.480341058,41.361246917],[-71.480326193,41.361318636],[-71.480320891,41.361385372],[-71.480312673,41.361457847],[-71.480299815,41.361513786],[-71.480284981,41.361580497],[-71.480278707,41.36164865],[-71.480268608,41.361718998],[-71.480277636,41.361779309],[-71.480310493,41.361840471],[-71.480335795,41.361892277],[-71.480339116,41.361953364],[-71.480338516,41.362027991],[-71.480338045,41.36208256],[-71.480340455,41.362141429],[-71.480352369,41.362197487],[-71.480372842,41.362253569],[-71.480399085,41.362307548],[-71.48042147,41.362368684],[-71.48043912,41.362424743],[-71.480469,41.362497385],[-71.480498942,41.362565727],[-71.480511732,41.36263473],[-71.480521606,41.362707985],[-71.480535463,41.362761162],[-71.480555058,41.362814385],[-71.480577475,41.362869072],[-71.480602714,41.362928791],[-71.480627013,41.362988442],[-71.48064943,41.363043838],[-71.480676644,41.363097085],[-71.480709535,41.363151088],[-71.480742364,41.363210854],[-71.480776226,41.363268425],[-71.48081197,41.36332316],[-71.480848717,41.363375013],[-71.480883551,41.363429725],[-71.480913557,41.363488027],[-71.480948361,41.363543471],[-71.48098699,41.363598184],[-71.481025681,41.363647179],[-71.481067195,41.363698347],[-71.481112504,41.363746657],[-71.481171012,41.363818046],[-71.481215317,41.363878545],[-71.481269216,41.363930447],[-71.481314619,41.363972308],[-71.481360931,41.364019909],[-71.481408184,41.36406751],[-71.481465783,41.364133844],[-71.481507205,41.364191461],[-71.481532445,41.364251157],[-71.481565274,41.3643152],[-71.481601897,41.364382857],[-71.481656675,41.364444136],[-71.481721958,41.364503289],[-71.481769243,41.36454515],[-71.481817469,41.36458916],[-71.481891312,41.364651288],[-71.481954746,41.364700379],[-71.482002031,41.364746562],[-71.482051134,41.364802053],[-71.482088856,41.364848143],[-71.482132315,41.364897893],[-71.482179538,41.364947644],[-71.482230587,41.364995268],[-71.482281666,41.365045042],[-71.482331773,41.365094107],[-71.482378997,41.365144567],[-71.482426251,41.365194317],[-71.482472595,41.365239059],[-71.482517969,41.36528236],[-71.482558514,41.365332087],[-71.482596204,41.365384649],[-71.482633894,41.365440093],[-71.482668669,41.365498395],[-71.482699681,41.365553815],[-71.482730661,41.365609966],[-71.482762614,41.365664677],[-71.482796448,41.365723002],[-71.482833166,41.365781305],[-71.482872739,41.36583389],[-71.482907547,41.365886452],[-71.482940502,41.365937595],[-71.482980138,41.36598588],[-71.483024539,41.366034167],[-71.483066057,41.366083893],[-71.483100925,41.366134328],[-71.483130997,41.366185425],[-71.48317518,41.366259578],[-71.483201457,41.366310674],[-71.48322485,41.366362479],[-71.483248274,41.366414284],[-71.483281952,41.366491249],[-71.483312777,41.366565331],[-71.483335199,41.366617113],[-71.483357651,41.366670358],[-71.48337819,41.366724267],[-71.483402367,41.366796907],[-71.483418046,41.36686161],[-71.483428018,41.366926244],[-71.483418925,41.366990097],[-71.483413626,41.367052556],[-71.483419803,41.367116457],[-71.483428772,41.367184704],[-71.483441504,41.367258005],[-71.483460977,41.367326986],[-71.48347951,41.367392421],[-71.483496162,41.367450651],[-71.483510931,41.367513159],[-71.483521814,41.367579279],[-71.483533636,41.367649653],[-71.483541664,41.367717923],[-71.483551574,41.367787588],[-71.483555838,41.367851511],[-71.48355725,41.367910403],[-71.483566313,41.367968587],[-71.483574279,41.368042551],[-71.483574781,41.368100002],[-71.483577196,41.368154594],[-71.483584346,41.368210582],[-71.483600873,41.368286034],[-71.483610939,41.368341405],[-71.483621853,41.36840103],[-71.483627121,41.368459923],[-71.483627592,41.368518768],[-71.48363377,41.368578393],[-71.483645688,41.36863445],[-71.483659548,41.368691239],[-71.483671434,41.368749446],[-71.483683225,41.368824875],[-71.483683539,41.368905288],[-71.483670527,41.368979158],[-71.483663377,41.369040884],[-71.483661935,41.369100484],[-71.483656636,41.369165779],[-71.483661748,41.36923972],[-71.483669777,41.369307967],[-71.483671157,41.369373308],[-71.483694458,41.369435885],[-71.483744475,41.369497848],[-71.48379741,41.369551212],[-71.483845639,41.369600985],[-71.483891957,41.369648563],[-71.483934387,41.36970188],[-71.483982494,41.369760275],[-71.484021003,41.369831522],[-71.484044273,41.369899816],[-71.484051299,41.369971653],[-71.48405547,41.370045594],[-71.484054813,41.370126007],[-71.484063751,41.370202144],[-71.484079369,41.370271878],[-71.484081628,41.370345796],[-71.484079277,41.370400342],[-71.484067236,41.370475675],[-71.484041867,41.370548789],[-71.484023335,41.370601137],[-71.484003799,41.370658448],[-71.483983291,41.370718663],[-71.483962813,41.370778169],[-71.48394425,41.370831203],[-71.483921922,41.370884237],[-71.483895737,41.370939374],[-71.48386673,41.370993801],[-71.483837691,41.371048229],[-71.483811507,41.371104121],[-71.483785322,41.371160744],[-71.483763873,41.371217346],[-71.483748193,41.371273239],[-71.483732483,41.371326296],[-71.483698553,41.371396527],[-71.48366575,41.37144805],[-71.48363668,41.371506091],[-71.48360855,41.371567677],[-71.483585188,41.371626428],[-71.483566593,41.371684516],[-71.483548968,41.371745464],[-71.483526515,41.371809955],[-71.483498385,41.371870123],[-71.483467402,41.371929559],[-71.483432655,41.371983277],[-71.483388406,41.372036879],[-71.483344094,41.372094849],[-71.483302605,41.372156365],[-71.483263939,41.372220831],[-71.483231042,41.372282394],[-71.483199086,41.372344025],[-71.483161422,41.372406319],[-71.483123727,41.372468613],[-71.483089858,41.372532325],[-71.483055048,41.372591737],[-71.483015471,41.372653299],[-71.482975895,41.372714151],[-71.482937289,41.372777108],[-71.482899624,41.372839401],[-71.482863873,41.372900986],[-71.482827149,41.372962571],[-71.482787604,41.373018415],[-71.48274997,41.373077095],[-71.482716132,41.373135067],[-71.482677527,41.373193037],[-71.482632273,41.373250298],[-71.482584197,41.373299577],[-71.482538975,41.373352515],[-71.482492873,41.373398958],[-71.4824458,41.373445401],[-71.482399636,41.373496166],[-71.482357267,41.373550523],[-71.482322519,41.373601336],[-71.482286829,41.373655739],[-71.482253054,41.37370438],[-71.482222162,41.373755948],[-71.482193122,41.373807493],[-71.482145922,41.373869008],[-71.482105435,41.373923387],[-71.482053593,41.373974106],[-71.481998835,41.374027706],[-71.481956466,41.374079203],[-71.481928428,41.374129331],[-71.481952732,41.374188318],[-71.482017179,41.374230959],[-71.482054968,41.374273481],[-71.482059171,41.374338113],[-71.482042485,41.374398351],[-71.482019152,41.374454266],[-71.481997762,41.374508008],[-71.481966807,41.374564585],[-71.481935883,41.374618257],[-71.481890691,41.374665432],[-71.481831198,41.374713977],[-71.481769822,41.374761812],[-71.481720678,41.374826894],[-71.481660275,41.374869697],[-71.481635184,41.374908345],[-71.481592125,41.374926817],[-71.481548875,41.374976142],[-71.481506505,41.375026907],[-71.481456639,41.375066168],[-71.481417122,41.375118421],[-71.481361549,41.375154044],[-71.481342071,41.375206345],[-71.481287376,41.375248441],[-71.481214584,41.375292638],[-71.481137966,41.375336811],[-71.4810796,41.37536882],[-71.481000034,41.375424451],[-71.48092238,41.375480791],[-71.480866775,41.375516437],[-71.48081026,41.375552082],[-71.480752772,41.375589146],[-71.480693371,41.375629068],[-71.480640587,41.375674777],[-71.480595393,41.375720533],[-71.480532917,41.375785543],[-71.480471414,41.375846277],[-71.480418536,41.375900608],[-71.480349695,41.375929002],[-71.480256141,41.3759487],[-71.48021195,41.375991552],[-71.480168511,41.376058097],[-71.480105093,41.376122421],[-71.480044563,41.376177414],[-71.479982211,41.376229548],[-71.479937989,41.376274595],[-71.479899411,41.376330415],[-71.479866603,41.376379055],[-71.479838532,41.3764306],[-71.479793304,41.376487105],[-71.479753962,41.376556693],[-71.479722518,41.376613177],[-71.479682,41.376658797],[-71.479631885,41.376707753],[-71.479597862,41.376757765],[-71.479558315,41.376803385],[-71.479515362,41.376863938],[-71.479490476,41.376923443],[-71.479481744,41.376981097],[-71.479471855,41.377045888],[-71.479459388,41.37710281],[-71.479438932,41.37717096],[-71.479424583,41.377227059],[-71.479411503,41.377301066],[-71.479406382,41.37736453],[-71.479402417,41.3774223],[-71.479393378,41.377489263],[-71.479380788,41.377548999],[-71.479361395,41.37761429],[-71.47933833,41.377675968],[-71.479315203,41.377738354],[-71.479291135,41.377802159],[-71.479263425,41.377860862],[-71.479231673,41.377926632],[-71.479203175,41.377981036],[-71.479171546,41.37804326],[-71.479134485,41.378098211],[-71.479088799,41.37815586],[-71.479047635,41.378219295],[-71.479016098,41.37827937],[-71.478993912,41.378343197],[-71.478973853,41.378399203],[-71.478957652,41.378454593],[-71.478938565,41.378511353],[-71.478924727,41.378579642],[-71.478922766,41.378633845],[-71.478915609,41.378701563],[-71.478903049,41.378761321],[-71.478884903,41.378817373],[-71.478863719,41.378879051],[-71.478844387,41.378942239],[-71.478827029,41.379003299],[-71.478804751,41.379069986],[-71.478778952,41.379128758],[-71.478751876,41.379196038],[-71.478725105,41.379254764],[-71.478698059,41.379321358],[-71.478671411,41.379377248],[-71.478645643,41.37943458],[-71.478621031,41.379486194],[-71.478598026,41.379545721],[-71.478572105,41.379607353],[-71.478536863,41.379664476],[-71.478498583,41.379727271],[-71.478470656,41.379792378],[-71.478435322,41.379851675],[-71.478391823,41.379901524],[-71.47835033,41.379947806],[-71.478320069,41.379998619],[-71.478295365,41.380053114],[-71.478282016,41.380108527],[-71.478290102,41.380173686],[-71.47833287,41.380223118],[-71.478387803,41.380304249],[-71.478360398,41.380354399],[-71.478326158,41.380410105],[-71.478281564,41.380464185],[-71.478227925,41.380505982],[-71.478172557,41.380542679],[-71.478111297,41.380585023],[-71.478060145,41.380636106],[-71.478003775,41.380673534],[-71.477949409,41.380708859],[-71.477900139,41.38076072],[-71.477854665,41.380813359],[-71.477816905,41.380861128],[-71.477788465,41.380913427],[-71.477763851,41.380965018],[-71.477745796,41.381019652],[-71.477733327,41.381075865],[-71.477736951,41.381133088],[-71.477646851,41.381239075],[-71.477569018,41.381347466],[-71.47748788,41.381440807],[-71.477402822,41.381538356],[-71.477332855,41.381639772],[-71.47732204,41.381653744],[-71.477281877,41.381712307],[-71.477235491,41.381762796],[-71.477185156,41.381817469],[-71.477146545,41.381863111],[-71.477101161,41.381912182],[-71.477059574,41.381961322],[-71.477015919,41.382014716],[-71.476967497,41.382068726],[-71.476915279,41.382123376],[-71.476860963,41.382184407],[-71.476813451,41.382239858],[-71.476763842,41.382300981],[-71.476708616,41.382359838],[-71.476651446,41.382420113],[-71.476613594,41.382464863],[-71.476597979,41.382483316],[-71.476541811,41.38254215],[-71.476480692,41.382606609],[-71.476424584,41.382664735],[-71.476371087,41.382727938],[-71.476313036,41.382786771],[-71.476257717,41.382847755],[-71.476209897,41.382912492],[-71.476161198,41.382974346],[-71.476110523,41.383039059],[-71.476060094,41.383095882],[-71.476012427,41.383156295],[-71.475962243,41.383207446],[-71.475903772,41.383251231],[-71.475839868,41.383287787],[-71.475778941,41.383320136],[-71.475715282,41.383350243],[-71.475650743,41.383377491],[-71.475576003,41.383399545],[-71.475499299,41.383396578],[-71.475420077,41.383384943],[-71.475351578,41.383364254],[-71.475281197,41.383343541],[-71.475205127,41.383349128],[-71.475194578,41.383378926],[-71.47526009,41.383429529],[-71.475320292,41.383469314],[-71.475387112,41.383510701],[-71.475446219,41.383554762],[-71.475507178,41.383599532],[-71.475574757,41.383645219],[-71.475636565,41.383693603],[-71.475700164,41.383744869],[-71.475761942,41.383793985],[-71.475814092,41.383847193],[-71.475867184,41.383900423],[-71.475921309,41.383950109],[-71.475966809,41.384003864],[-71.475998098,41.384056656],[-71.476019881,41.384110635],[-71.476030001,41.384171586],[-71.476028007,41.38422723],[-71.476011586,41.384288336],[-71.475986878,41.384342831],[-71.475954731,41.384392888],[-71.475917847,41.384443561],[-71.475895564,41.384508783],[-71.475918228,41.384564271],[-71.475932389,41.384619529],[-71.475926108,41.384688688],[-71.47591248,41.384751259],[-71.475886493,41.384814284],[-71.475867433,41.384869627],[-71.475848433,41.384923506],[-71.475820686,41.384983672],[-71.475785285,41.385045049],[-71.47575101,41.385102217],[-71.475715425,41.385167917],[-71.475681181,41.385224354],[-71.475674677,41.385236817],[-71.475645504,41.385292912],[-71.475612078,41.385352208],[-71.475578375,41.385419371],[-71.475546648,41.385483745],[-71.475511154,41.385548003],[-71.475472837,41.385612215],[-71.475430847,41.385672104],[-71.47538682,41.385735445],[-71.475347838,41.385791081],[-71.475318933,41.385856919],[-71.475296014,41.385915027],[-71.475270998,41.385977344],[-71.475239423,41.386038127],[-71.475200441,41.386093076],[-71.475159299,41.386156487],[-71.475119405,41.386210681],[-71.475076595,41.386267665],[-71.475032057,41.386318885],[-71.474990464,41.386368025],[-71.474949506,41.386425763],[-71.474900015,41.386483318],[-71.474847669,41.386542243],[-71.474793194,41.386606863],[-71.474745278,41.386672994],[-71.474700217,41.386739217],[-71.474648597,41.386803174],[-71.474592147,41.386869875],[-71.474539647,41.386932345],[-71.474481376,41.386996872],[-71.474418643,41.387053463],[-71.474359431,41.387117235],[-71.474303226,41.387177532],[-71.474243195,41.387238445],[-71.474182314,41.387295745],[-71.474134919,41.387348359],[-71.474088189,41.387408109],[-71.474036087,41.38745919],[-71.473988692,41.387511095],[-71.473951743,41.387563163],[-71.473910272,41.387608757],[-71.473860114,41.387659152],[-71.473807039,41.387710919],[-71.473762652,41.387757907],[-71.473720873,41.387812741],[-71.473672629,41.387861741],[-71.473617825,41.387908476],[-71.47357049,41.387958963],[-71.473534482,41.388011053],[-71.473482103,41.388069978],[-71.473439567,41.388118431],[-71.473397942,41.388168233],[-71.473358956,41.3882246],[-71.473314353,41.388277969],[-71.473261339,41.388328294],[-71.473204345,41.388383605],[-71.473154186,41.388433268],[-71.473102144,41.388482198],[-71.473047462,41.388526051],[-71.473004987,41.388573062],[-71.472965397,41.38861868],[-71.472911625,41.388664728],[-71.472856821,41.388711462],[-71.472810334,41.388764762],[-71.47275516,41.388822223],[-71.472700417,41.388866807],[-71.472636074,41.388916215],[-71.472576347,41.388967842],[-71.472514737,41.389019446],[-71.472446291,41.389077314],[-71.47239036,41.389129766],[-71.472344999,41.389177394],[-71.472288433,41.389221268],[-71.472248473,41.389277566],[-71.472205875,41.389327413],[-71.472164309,41.38937582],[-71.472108285,41.389430398],[-71.472059158,41.389477247],[-71.472019536,41.389524282],[-71.471981367,41.389583507],[-71.471947362,41.389633517],[-71.471908651,41.389680597],[-71.471853906,41.38972589],[-71.471796122,41.389776877],[-71.471746933,41.389825831],[-71.471699595,41.389876294],[-71.471657998,41.389925455],[-71.47161282,41.389968806],[-71.471565544,41.39001712],[-71.471521153,41.390064794],[-71.471473846,41.390115234],[-71.471428115,41.390172879],[-71.471386087,41.390234161],[-71.471340385,41.390291783],[-71.471290673,41.390355762],[-71.471239354,41.390411142],[-71.471192588,41.390471599],[-71.471141331,41.390525561],[-71.471076955,41.39057499],[-71.47101522,41.390630138],[-71.470964996,41.390681218],[-71.470915866,41.390729508],[-71.470812132,41.390845229],[-71.470747818,41.390892531],[-71.470701143,41.390950839],[-71.470641493,41.391026731],[-71.470576766,41.39111257],[-71.470512501,41.39118551],[-71.470460331,41.391238739],[-71.470420338,41.391295767],[-71.470411411,41.391359139],[-71.470409473,41.391413387],[-71.470381473,41.391479247],[-71.470306064,41.391545574],[-71.470239312,41.391607742],[-71.470173827,41.391687863],[-71.470108761,41.391782964],[-71.470075634,41.391833682],[-71.4700378,41.391883598],[-71.469998933,41.391935664],[-71.469961948,41.391988485],[-71.469928759,41.392041375],[-71.46989645,41.392095707],[-71.469862197,41.392151433],[-71.46982515,41.392205649],[-71.469790958,41.392259958],[-71.469757646,41.392315707],[-71.469721479,41.392371387],[-71.469685281,41.392428507],[-71.469649053,41.392486337],[-71.469614737,41.392544213],[-71.469581333,41.392602066],[-71.46954799,41.392659256],[-71.469511761,41.3927164],[-71.469474621,41.392774184],[-71.469436448,41.392833362],[-71.469399277,41.392891214],[-71.4693649,41.392950508],[-71.469334288,41.393009849],[-71.469305621,41.393068549],[-71.469276984,41.393126541],[-71.469248286,41.393185928],[-71.469219588,41.393245338],[-71.46919092,41.393304061],[-71.469160401,41.393360566],[-71.469130004,41.393414943],[-71.46909879,41.393465021],[-71.469039676,41.393553079],[-71.468984729,41.393629817],[-71.468920428,41.393704197],[-71.468841003,41.393776126],[-71.468749678,41.393836388],[-71.468673583,41.393868409],[-71.468607627,41.393909214],[-71.468538835,41.393974948],[-71.468482465,41.394039496],[-71.468415339,41.394113097],[-71.468339617,41.394187268],[-71.468264142,41.394255012],[-71.468192555,41.394320013],[-71.468124765,41.394385014],[-71.46805418,41.394448575],[-71.467983873,41.39450429],[-71.467930248,41.394544596],[-71.467867207,41.394584739],[-71.467797054,41.394635446],[-71.467743612,41.39467152],[-71.467657424,41.394720416],[-71.467600789,41.394764974],[-71.467553537,41.394813286],[-71.467497473,41.394868571],[-71.467442118,41.394904599],[-71.467378536,41.394931865],[-71.467312099,41.394959771],[-71.467250972,41.394997078],[-71.467204247,41.395023595],[-71.467188996,41.395032235],[-71.467118947,41.395055086],[-71.467038943,41.395064165],[-71.466966809,41.395066271],[-71.466863701,41.395058443],[-71.466788233,41.395046186],[-71.466717718,41.395029058],[-71.466630689,41.394996534],[-71.46655684,41.39496717],[-71.466486788,41.394937166],[-71.466409019,41.394910614],[-71.466320711,41.394886666],[-71.466227633,41.394863334],[-71.466136223,41.394847183],[-71.466051094,41.394841143],[-71.465963928,41.394838647],[-71.465891887,41.394837185],[-71.46581037,41.394835514],[-71.465729672,41.394837434],[-71.465644745,41.394852115],[-71.465551191,41.394869491],[-71.465457237,41.394896176],[-71.465369841,41.394926476],[-71.46528439,41.394954718],[-71.46521042,41.394981797],[-71.465140433,41.395001787],[-71.465071232,41.395027495],[-71.46500123,41.395074656],[-71.464933929,41.395126116],[-71.464861072,41.395173207],[-71.46478843,41.395215998],[-71.464712577,41.39524159],[-71.464640289,41.395246531],[-71.464564359,41.395247811],[-71.464485295,41.395257644],[-71.464402529,41.395263816],[-71.464317029,41.395268478],[-71.464244278,41.39528698],[-71.464189786,41.395351595],[-71.464169401,41.395416884],[-71.464116729,41.395483626],[-71.464041834,41.395534947],[-71.463984655,41.395568091],[-71.463922091,41.395619644],[-71.463866394,41.395664956],[-71.463803011,41.395712918],[-71.463743424,41.395761727],[-71.463685474,41.395816209],[-71.463626705,41.395867855],[-71.463565174,41.395916595],[-71.463507532,41.395963278],[-71.463446433,41.395999897],[-71.463379777,41.396034936],[-71.463314973,41.396069336],[-71.463252145,41.396101586],[-71.463182943,41.396126629],[-71.46316748,41.396132251],[-71.46313297,41.396144864],[-71.463113205,41.396132233],[-71.463071762,41.396105759],[-71.463028116,41.39605344],[-71.462972293,41.395997321],[-71.462901238,41.395969419],[-71.462816432,41.395979867],[-71.462740177,41.396016846],[-71.462708585,41.396077603],[-71.462708676,41.396132103],[-71.462708694,41.396152595],[-71.462709621,41.396232618],[-71.462721273,41.396303589],[-71.462771756,41.396350307],[-71.462853059,41.396357697],[-71.462947495,41.396342496],[-71.463035789,41.396340718],[-71.463105085,41.396365714],[-71.463158487,41.396567517],[-71.46315108,41.396615199],[-71.463138582,41.396640581],[-71.463116944,41.396717762],[-71.463084049,41.396773052],[-71.463032202,41.396828816],[-71.462970392,41.396885789],[-71.462910373,41.396943472],[-71.462859437,41.39699855],[-71.462807433,41.397061061],[-71.462763913,41.397107383],[-71.462733026,41.397156635],[-71.462736214,41.397213081],[-71.462738239,41.39728247],[-71.462715151,41.39734403],[-71.462680059,41.397416289],[-71.462639468,41.397492548],[-71.462599032,41.397562724],[-71.462569439,41.397632378],[-71.462558705,41.397705628],[-71.462556143,41.397777669],[-71.462532112,41.397840555],[-71.462487524,41.397893691],[-71.462433853,41.397950118],[-71.462420883,41.398004293],[-71.462436549,41.398068381],[-71.462465037,41.398123828],[-71.462476302,41.398183798],[-71.462523929,41.398232711],[-71.462611753,41.39825968],[-71.462684737,41.398266085],[-71.462761179,41.398279329],[-71.462840169,41.398299389],[-71.462923529,41.398324962],[-71.463007707,41.398355292],[-71.46308186,41.39838754],[-71.4631452,41.398420997],[-71.463211719,41.398472866],[-71.463247499,41.398525662],[-71.463244049,41.398557588],[-71.463161089,41.398630586],[-71.463106848,41.398673382],[-71.463056159,41.398718238],[-71.46301157,41.39877341],[-71.462982102,41.398836248],[-71.462957915,41.398906658],[-71.462937125,41.398985897],[-71.462925294,41.399067312],[-71.462923333,41.39915088],[-71.462921402,41.399234516],[-71.462919627,41.399311978],[-71.462916092,41.399385322],[-71.462900925,41.399456489],[-71.462881109,41.399533076],[-71.462865787,41.399609001],[-71.462847824,41.399683552],[-71.462816345,41.399756567],[-71.462768741,41.399823882],[-71.462723022,41.399887904],[-71.462694526,41.399949394],[-71.462682344,41.400006314],[-71.462693804,41.400097548],[-71.462710227,41.400167765],[-71.462679784,41.400234674],[-71.462667289,41.400306574],[-71.462688144,41.400380978],[-71.462668764,41.400437096],[-71.462638631,41.400491769],[-71.462628209,41.400551458],[-71.462633001,41.400617463],[-71.462640496,41.400683538],[-71.462635449,41.400745286],[-71.46261324,41.400807555],[-71.462580249,41.400867602],[-71.46250449,41.400980831],[-71.462470681,41.401037493],[-71.462437721,41.401096191],[-71.462406428,41.401161041],[-71.46237061,41.401225821],[-71.462325925,41.401284423],[-71.46226672,41.401345467],[-71.462197551,41.40140708],[-71.462122405,41.401457119],[-71.462042922,41.401496864],[-71.46194989,41.401537108],[-71.461850479,41.40157998],[-71.461761031,41.40162162],[-71.461683524,41.401656609],[-71.461615227,41.401680234],[-71.46152835,41.401689239],[-71.461444331,41.40169223],[-71.461362081,41.401733963],[-71.461305858,41.401782864],[-71.461245046,41.401836452],[-71.461176911,41.401894017],[-71.461116949,41.401948977],[-71.461057203,41.401995772],[-71.461000069,41.402044627],[-71.460967139,41.40210202],[-71.460945964,41.40215816],[-71.460908725,41.402207273],[-71.46085332,41.402259604],[-71.460794081,41.402321997],[-71.460743925,41.402383204],[-71.460700937,41.402445877],[-71.460665208,41.402507958],[-71.460631241,41.402571389],[-71.46058907,41.402637447],[-71.460539607,41.402706818],[-71.460486592,41.402773422],[-71.460422889,41.402834441],[-71.460352142,41.402887224],[-71.460273318,41.402937832],[-71.460183586,41.402991043],[-71.46009401,41.403039497],[-71.46001358,41.403081253],[-71.459940629,41.403112263],[-71.459858058,41.403128838],[-71.459783527,41.403112231],[-71.459743128,41.403062062],[-71.459677681,41.403042165],[-71.45958068,41.40306061],[-71.459508041,41.403078035],[-71.45943361,41.403095413],[-71.45933284,41.403118545],[-71.459242346,41.40312757],[-71.459149491,41.403122254],[-71.459079294,41.403072371],[-71.459006548,41.403017708],[-71.458932867,41.40300245],[-71.458885063,41.403038546],[-71.458878251,41.403098967],[-71.458874712,41.403172997],[-71.45886215,41.403247618],[-71.458844244,41.403318761],[-71.458831932,41.403382497],[-71.458836089,41.40343693],[-71.458854176,41.4035133],[-71.458825519,41.403580895],[-71.458768537,41.403623688],[-71.458703414,41.403667667],[-71.458635494,41.403715716],[-71.458564713,41.403770534],[-71.458503523,41.403839054],[-71.458445697,41.403919194],[-71.458382496,41.403996564],[-71.458317347,41.404080658],[-71.458246635,41.404169461],[-71.458177683,41.404261672],[-71.458106183,41.404348439],[-71.458027641,41.404424934],[-71.457934734,41.404498429],[-71.457839154,41.404570595],[-71.457750897,41.404638785],[-71.457668959,41.404707046],[-71.45759513,41.404776065],[-71.457527744,41.404839116],[-71.457456113,41.404891188],[-71.457379325,41.40493164],[-71.457293579,41.40496859],[-71.457198086,41.404997943],[-71.457102027,41.405012293],[-71.457008856,41.405021932],[-71.456928386,41.405026316],[-71.456834868,41.405008762],[-71.456785166,41.404971396],[-71.45682828,41.404865911],[-71.456860554,41.404797701],[-71.45686853,41.404726394],[-71.456837527,41.404662094],[-71.456771856,41.404612967],[-71.456692356,41.40457591],[-71.456614365,41.404551775],[-71.456562482,41.40455251],[-71.456515034,41.404553179],[-71.456423912,41.404588662],[-71.456354511,41.404621089],[-71.45629388,41.404666463],[-71.45625186,41.404725773],[-71.456222382,41.404790622],[-71.456209942,41.4048598],[-71.456208129,41.404935912],[-71.456205715,41.405001846],[-71.456212105,41.405076017],[-71.456211734,41.405131043],[-71.456189589,41.405268074],[-71.456178753,41.405345417],[-71.456166219,41.405418689],[-71.456163775,41.405484601],[-71.456183744,41.40555761],[-71.456231529,41.405599687],[-71.456278938,41.405658116],[-71.456318899,41.405725919],[-71.456355308,41.405790976],[-71.456384737,41.405845076],[-71.456407315,41.405923552],[-71.456407825,41.405978624],[-71.456404595,41.406039733],[-71.456397717,41.406103561],[-71.45639342,41.406170798],[-71.456393741,41.406235407],[-71.456413992,41.406296159],[-71.456459674,41.40635047],[-71.456507209,41.406402792],[-71.456531955,41.406464941],[-71.45653209,41.406536319],[-71.456537475,41.406615269],[-71.456538364,41.406694127],[-71.456532025,41.406771518],[-71.456497707,41.406849264],[-71.456452545,41.406927509],[-71.456403767,41.40700573],[-71.456355051,41.407081916],[-71.456297189,41.407162717],[-71.456232002,41.407248868],[-71.45616144,41.407332226],[-71.456083678,41.407414805],[-71.455999661,41.407493927],[-71.455915675,41.407572363],[-71.455837002,41.407654254],[-71.455763642,41.407740973],[-71.455696662,41.407826414],[-71.455621697,41.40790499],[-71.455538714,41.407979333],[-71.455447716,41.40804816],[-71.45535678,41.408114243],[-71.455273231,41.40817365],[-71.455190811,41.40822423],[-71.455110216,41.408272112],[-71.455033172,41.408323472],[-71.454957701,41.408384278],[-71.45488113,41.408454688],[-71.454801856,41.40852432],[-71.454720916,41.408587159],[-71.454638338,41.408644531],[-71.454557679,41.408696483],[-71.454470733,41.408744957],[-71.45437756,41.40879201],[-71.454282597,41.408836318],[-71.454191343,41.40887722],[-71.454112912,41.408912226],[-71.454021877,41.408942973],[-71.453952058,41.408956324],[-71.453873218,41.408968185],[-71.453791737,41.40897666],[-71.453719372,41.4089818],[-71.453618746,41.40900017],[-71.453550595,41.409017638],[-71.453458678,41.409049757],[-71.453400997,41.409082301],[-71.45334237,41.409118892],[-71.453257652,41.409151105],[-71.453182333,41.409166444],[-71.453145084,41.40921624],[-71.453096205,41.409259079],[-71.453037294,41.409268478],[-71.453058447,41.409213049],[-71.453098994,41.409140154],[-71.453140676,41.409094476],[-71.453183299,41.409048845],[-71.453219604,41.409001724],[-71.453267949,41.408941846],[-71.453326355,41.408914768],[-71.453404538,41.408930718],[-71.453489477,41.408928442],[-71.453552535,41.408895992],[-71.453607827,41.408848444],[-71.453616373,41.408792163],[-71.453585564,41.408757091],[-71.453506375,41.408746493],[-71.453427157,41.40873594],[-71.453337218,41.408719803],[-71.453249133,41.408703667],[-71.453164163,41.408707314],[-71.453073568,41.408758461],[-71.453020823,41.408813534],[-71.452968926,41.408870574],[-71.452921713,41.408920275],[-71.452883615,41.408966664],[-71.452868467,41.409035154],[-71.452880731,41.409089682],[-71.45288193,41.409154291],[-71.452882217,41.40921954],[-71.452887849,41.409287605],[-71.452882759,41.409352097],[-71.452872139,41.409419263],[-71.452890377,41.409488842],[-71.452927569,41.409560052],[-71.452952439,41.409616804],[-71.452974324,41.409684372],[-71.452990675,41.409758021],[-71.453006901,41.409836427],[-71.453011503,41.4099001],[-71.453012376,41.409911901],[-71.453010652,41.409985315],[-71.453010939,41.410051273],[-71.453022229,41.410107836],[-71.45304452,41.410159806],[-71.453078445,41.41021464],[-71.453114066,41.410274964],[-71.453148745,41.410336568],[-71.453190623,41.410398975],[-71.453232407,41.410465476],[-71.453254229,41.41053716],[-71.453253448,41.410609865],[-71.453251693,41.410684604],[-71.453246291,41.410761378],[-71.453219323,41.410834415],[-71.453194147,41.410906835],[-71.453188745,41.410983563],[-71.453195981,41.411060479],[-71.453212271,41.41113614],[-71.45322419,41.411206334],[-71.453237901,41.411277215],[-71.453257838,41.411350911],[-71.453276893,41.411425225],[-71.453295919,41.411498234],[-71.453317773,41.411567861],[-71.453342424,41.411634835],[-71.453365189,41.411703775],[-71.453383554,41.411767225],[-71.453381231,41.411829752],[-71.45336338,41.411896823],[-71.453346409,41.41196728],[-71.453326702,41.412037689],[-71.453299703,41.412110772],[-71.453278898,41.412189369],[-71.4532618,41.412265268],[-71.453230399,41.412333524],[-71.453195383,41.412401732],[-71.453173853,41.41247349],[-71.453169331,41.41255159],[-71.453170217,41.412629098],[-71.453169182,41.412674312],[-71.453168556,41.412700453],[-71.453163373,41.412768353],[-71.453149292,41.412830714],[-71.453125845,41.412906543],[-71.453108748,41.412981116],[-71.453144907,41.413056351],[-71.453182448,41.413111918],[-71.453198139,41.413175321],[-71.4531939,41.413240569],[-71.45317633,41.413296731],[-71.453147506,41.413371802],[-71.453132925,41.413454541],[-71.453117115,41.413513472],[-71.453053363,41.413575173],[-71.45299816,41.413619313],[-71.452956257,41.413672492],[-71.452954091,41.413727494],[-71.452989116,41.413774873],[-71.453058191,41.413832191],[-71.453086833,41.413882884],[-71.453094602,41.413936701],[-71.453080584,41.413996341],[-71.453071693,41.414066938],[-71.453063649,41.41414092],[-71.453051991,41.414214832],[-71.453041306,41.414286069],[-71.453020687,41.41435721],[-71.452986549,41.414427431],[-71.452947067,41.414493556],[-71.452908716,41.41455083],[-71.452849427,41.414614591],[-71.452788155,41.41464711],[-71.452719585,41.414606099],[-71.452677767,41.414540947],[-71.452637867,41.414471084],[-71.452603125,41.41441083],[-71.45258278,41.414354835],[-71.452580983,41.414276618],[-71.452568215,41.414205051],[-71.452522218,41.41416366],[-71.452463808,41.414189388],[-71.452416088,41.414260838],[-71.452393173,41.414313544],[-71.452368843,41.414389395],[-71.452335616,41.41445893],[-71.452332256,41.414525504],[-71.452327734,41.414602941],[-71.45232604,41.414674982],[-71.452371314,41.414708894],[-71.452462423,41.414712843],[-71.452542811,41.414713219],[-71.45261814,41.41473596],[-71.452639111,41.414766158],[-71.452601263,41.414839716],[-71.45257445,41.41490532],[-71.452535878,41.414972131],[-71.452486712,41.415027205],[-71.45244402,41.415076953],[-71.452430221,41.415127079],[-71.452472795,41.415197629],[-71.452499551,41.415251706],[-71.452484906,41.415337166],[-71.452452779,41.415397919],[-71.452418011,41.415455927],[-71.452390379,41.4155181],[-71.452383498,41.415580533],[-71.452396455,41.415643935],[-71.452431292,41.415700141],[-71.452536838,41.415781763],[-71.452592646,41.41582803],[-71.452634715,41.415882319],[-71.452659587,41.415939047],[-71.452697128,41.415994592],[-71.452742718,41.416054371],[-71.452785481,41.416116778],[-71.45281639,41.416185859],[-71.452849059,41.416257663],[-71.452892483,41.416330294],[-71.452934176,41.416401552],[-71.452963168,41.416474657],[-71.452986815,41.416544993],[-71.453003513,41.416603662],[-71.452994148,41.416656557],[-71.452974908,41.41666787],[-71.452869334,41.416663733],[-71.452794001,41.416643714],[-71.452710246,41.416633113],[-71.45266158,41.416667124],[-71.452652436,41.416749248]]]]}}"}, +{"type": "precinct", "typeId": 2101, "areaId": 25824, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":163,\"NAME\":\"2101\",\"SHAPE_Length\":0.057848047754061,\"SHAPE_Area\":-0.0001420836836566},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.287255462,41.490600479],[-71.289977464,41.493493479],[-71.290056463,41.493572479],[-71.290269464,41.493805479],[-71.290800464,41.494411479],[-71.291343464,41.495024479],[-71.292163464,41.49594148],[-71.292452465,41.496278479],[-71.292587465,41.496404479],[-71.293152465,41.496967479],[-71.293297465,41.49711348],[-71.293391464,41.49723048],[-71.293530465,41.49740548],[-71.293551465,41.497429479],[-71.293639465,41.497548479],[-71.293720465,41.49763848],[-71.293868465,41.497778479],[-71.294029465,41.49794448],[-71.294273465,41.498191479],[-71.294649465,41.498560479],[-71.295421465,41.49973948],[-71.295868465,41.50017648],[-71.296954466,41.50063648],[-71.297248467,41.50077748],[-71.297248467,41.50073348],[-71.297264466,41.50060248],[-71.297569466,41.50056048],[-71.298225467,41.50047948],[-71.298660466,41.50043448],[-71.298850467,41.50041748],[-71.299583467,41.50032148],[-71.299713467,41.50030548],[-71.300079468,41.50026248],[-71.300689467,41.50020048],[-71.300788467,41.50018948],[-71.301200468,41.50013148],[-71.301445467,41.50010448],[-71.301681467,41.50007748],[-71.301826468,41.500060479],[-71.302093468,41.50002348],[-71.302200468,41.50001248],[-71.302276468,41.49999348],[-71.302345468,41.49997848],[-71.302398468,41.49996848],[-71.302696468,41.49988148],[-71.303008468,41.49979848],[-71.303443468,41.49968148],[-71.303756468,41.499594479],[-71.303894468,41.49955948],[-71.304161468,41.49948648],[-71.304367469,41.49942448],[-71.304595469,41.499361479],[-71.304885469,41.49928748],[-71.305160469,41.499201479],[-71.305702469,41.499046479],[-71.306022469,41.498949479],[-71.306478469,41.498819479],[-71.307121469,41.49863548],[-71.307304469,41.498266479],[-71.307342469,41.498180479],[-71.30757947,41.49771648],[-71.307685469,41.497488479],[-71.30770047,41.497457479],[-71.30799047,41.496852479],[-71.30825847,41.496329479],[-71.308311469,41.496224479],[-71.30849447,41.495855479],[-71.30882247,41.495200479],[-71.30882447,41.495150478],[-71.308196469,41.494853478],[-71.30806747,41.494797478],[-71.307365469,41.494464478],[-71.307044469,41.494308478],[-71.306869469,41.494222479],[-71.306541469,41.494066479],[-71.306434469,41.494010478],[-71.306335469,41.493962478],[-71.305862469,41.493738478],[-71.305168468,41.493405478],[-71.304542468,41.494016478],[-71.304199468,41.494352479],[-71.304092468,41.494435479],[-71.303512468,41.493767478],[-71.303314468,41.493537479],[-71.302428468,41.493658479],[-71.301437467,41.493804478],[-71.300689467,41.493913479],[-71.299819467,41.494034478],[-71.299797467,41.493904479],[-71.299545467,41.492806478],[-71.299476466,41.492519478],[-71.298929466,41.492582479],[-71.298807466,41.492596478],[-71.298752466,41.492441478],[-71.298744466,41.492403478],[-71.298713466,41.492296478],[-71.298698466,41.492228478],[-71.298690466,41.492170478],[-71.298667466,41.492058479],[-71.298354466,41.490673478],[-71.298316466,41.490583478],[-71.298301466,41.490480478],[-71.298293466,41.490431478],[-71.298278466,41.490364478],[-71.298232466,41.490184478],[-71.298187466,41.490068478],[-71.298171466,41.489996478],[-71.298172466,41.489938478],[-71.298172466,41.489875478],[-71.298026466,41.489261478],[-71.298011466,41.489202478],[-71.297981466,41.489109478],[-71.297965466,41.489005477],[-71.297943466,41.488943477],[-71.297904466,41.488889478],[-71.297859466,41.488841478],[-71.297576466,41.488738478],[-71.297538466,41.488721478],[-71.297485466,41.488682478],[-71.297195465,41.488016478],[-71.297165466,41.487963478],[-71.297104465,41.487847477],[-71.297073465,41.487785478],[-71.297027466,41.487678477],[-71.297004465,41.487619477],[-71.296981465,41.487566477],[-71.296951466,41.487517477],[-71.296920465,41.487441477],[-71.296882465,41.487365477],[-71.296821465,41.487231477],[-71.296783465,41.487174477],[-71.296745465,41.487120477],[-71.296691465,41.487058477],[-71.296630465,41.487010477],[-71.296562465,41.486966478],[-71.296493465,41.486918477],[-71.296447466,41.486901477],[-71.296424465,41.486883477],[-71.296341465,41.486858477],[-71.296257465,41.486842477],[-71.296096465,41.486845477],[-71.296020465,41.486860477],[-71.295951465,41.486879477],[-71.294509465,41.487800478],[-71.293647464,41.488339477],[-71.293571464,41.488400477],[-71.293426464,41.488510478],[-71.293388464,41.488529478],[-71.293312464,41.488535477],[-71.293243464,41.488559478],[-71.293167464,41.488592477],[-71.293098464,41.488616478],[-71.293022464,41.488645478],[-71.292831464,41.488693478],[-71.292739464,41.488727478],[-71.292465464,41.488831478],[-71.292381464,41.488865477],[-71.292305464,41.488889478],[-71.292236464,41.488912478],[-71.292152464,41.488932478],[-71.291992464,41.488994478],[-71.291931464,41.489040478],[-71.291877464,41.489091478],[-71.291808464,41.489128478],[-71.291732464,41.489125478],[-71.291656463,41.489136478],[-71.291580464,41.489173478],[-71.291504464,41.489220478],[-71.291480463,41.489283478],[-71.291488464,41.489333478],[-71.291442463,41.489397478],[-71.291374464,41.489416478],[-71.291274464,41.489418478],[-71.291076464,41.489377478],[-71.290992463,41.489388478],[-71.290847464,41.489458478],[-71.290741463,41.489492478],[-71.290702463,41.489483478],[-71.290634464,41.489458478],[-71.290565463,41.489459478],[-71.290504463,41.489505478],[-71.290451463,41.489552478],[-71.290374463,41.489589478],[-71.290214463,41.489592478],[-71.290122463,41.489612478],[-71.290054463,41.489654478],[-71.290031464,41.489713478],[-71.290001463,41.489768478],[-71.289932463,41.489801478],[-71.289878463,41.489766478],[-71.289794463,41.489740478],[-71.289711463,41.489755478],[-71.289627463,41.489793478],[-71.289535463,41.489813478],[-71.289451463,41.489851478],[-71.289390463,41.489897478],[-71.289314463,41.489925478],[-71.289230463,41.489923478],[-71.289131463,41.489938478],[-71.289039463,41.489958478],[-71.288955463,41.489978478],[-71.288864463,41.489997478],[-71.288780463,41.490026478],[-71.288688463,41.490068478],[-71.288612463,41.490115478],[-71.288528463,41.490157478],[-71.288444463,41.490181478],[-71.288345463,41.490179478],[-71.288253463,41.490181478],[-71.288162463,41.490205479],[-71.288085463,41.490211478],[-71.288017463,41.490257478],[-71.287979463,41.490312478],[-71.287933462,41.490358478],[-71.287856462,41.490396478],[-71.287780462,41.490402478],[-71.287681462,41.490408478],[-71.287590463,41.490428478],[-71.287498462,41.490443478],[-71.287414463,41.490450478],[-71.287345462,41.490473478],[-71.287307462,41.490519478],[-71.287277463,41.490583478],[-71.287255462,41.490600479]]]]}}"}, +{"type": "precinct", "typeId": 2102, "areaId": 25821, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":160,\"NAME\":\"2102\",\"SHAPE_Length\":0.14645342030662,\"SHAPE_Area\":-0.00043273389912255},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.326937921,41.514429985],[-71.327030503,41.514456196],[-71.327129032,41.514465995],[-71.327232523,41.514463498],[-71.327328005,41.514451978],[-71.327417167,41.514436857],[-71.327510045,41.514420439],[-71.327606843,41.514394444],[-71.327689211,41.514359965],[-71.327754336,41.514321778],[-71.32781936,41.514287045],[-71.327874381,41.514249392],[-71.327945895,41.514211352],[-71.328023733,41.514175425],[-71.328102214,41.514149151],[-71.328183094,41.514135984],[-71.328274655,41.514133971],[-71.328366115,41.514136097],[-71.328460958,41.514147193],[-71.328560363,41.514159074],[-71.328657877,41.514172987],[-71.328762792,41.514184281],[-71.328855101,41.514187071],[-71.328931486,41.514171107],[-71.328985591,41.514134161],[-71.329042705,41.514087569],[-71.329105497,41.514033529],[-71.329172207,41.513970622],[-71.329241553,41.513911903],[-71.329314452,41.513855934],[-71.329372846,41.513796353],[-71.329414781,41.51373581],[-71.329463173,41.513673287],[-71.329511628,41.513609415],[-71.329525441,41.513540162],[-71.329528337,41.513468675],[-71.329551005,41.513410596],[-71.329583648,41.513354728],[-71.329585629,41.513283925],[-71.329602144,41.513216781],[-71.329654828,41.51316467],[-71.329703827,41.513113834],[-71.329685261,41.513057867],[-71.32967822,41.512981402],[-71.329666683,41.512902118],[-71.329668766,41.512827176],[-71.329679874,41.512756548],[-71.329696323,41.512691461],[-71.329717268,41.512629218],[-71.329741998,41.5125622],[-71.329765779,41.512497239],[-71.329781927,41.512442489],[-71.32980906,41.512387207],[-71.329850046,41.512328698],[-71.329888841,41.512281872],[-71.329924996,41.512232229],[-71.329961084,41.512184667],[-71.33000819,41.512135887],[-71.330034482,41.512111523],[-71.33009876,41.512069904],[-71.330170303,41.51203113],[-71.330231944,41.511985367],[-71.330277493,41.511926933],[-71.330284513,41.51187201],[-71.330286158,41.511812894],[-71.330287771,41.511754486],[-71.330285123,41.511684981],[-71.330248272,41.511628689],[-71.330205778,41.511577809],[-71.330212866,41.511520142],[-71.330253415,41.511476772],[-71.330222921,41.51142129],[-71.330222105,41.511384125],[-71.330238288,41.511362377],[-71.330287865,41.511322611],[-71.330341256,41.511278734],[-71.330393569,41.51123968],[-71.330366085,41.511208285],[-71.330326035,41.511200107],[-71.330298211,41.511147374],[-71.330272513,41.511084398],[-71.330288117,41.511016566],[-71.330321634,41.510962757],[-71.330317939,41.510898052],[-71.330312828,41.51085123],[-71.330316401,41.510788],[-71.330349135,41.510731445],[-71.330390699,41.51068396],[-71.330415023,41.510632058],[-71.330407377,41.510576953],[-71.330403993,41.510567938],[-71.330388598,41.509705307],[-71.330509744,41.509591685],[-71.330641451,41.509593068],[-71.330644544,41.509515407],[-71.330688634,41.509245126],[-71.330617289,41.509244701],[-71.330599197,41.509368881],[-71.33050041,41.50936734],[-71.330356872,41.509364384],[-71.330355317,41.509354045],[-71.33031357,41.509308701],[-71.330281188,41.509288962],[-71.330284693,41.509228476],[-71.330286508,41.509162499],[-71.330299033,41.509108384],[-71.330325238,41.508988447],[-71.330327253,41.508915541],[-71.330335588,41.508846235],[-71.330357578,41.508779167],[-71.330373014,41.508716823],[-71.330375672,41.508654278],[-71.330377451,41.508590382],[-71.330382005,41.508524432],[-71.330384427,41.508470828],[-71.330402533,41.508411279],[-71.330404077,41.508355593],[-71.330405654,41.508299221],[-71.330408114,41.50824285],[-71.330421522,41.508188073],[-71.330436788,41.50813259],[-71.330454758,41.508078552],[-71.330454826,41.508075808],[-71.33051605,41.508013486],[-71.330552306,41.507959041],[-71.330590822,41.507889504],[-71.330632171,41.507818645],[-71.330659198,41.507768143],[-71.330683556,41.507714206],[-71.330705343,41.507654753],[-71.330726897,41.507602801],[-71.330748174,41.507528871],[-71.330751948,41.507458094],[-71.330743992,41.507382315],[-71.33071684,41.507305546],[-71.330687797,41.50723081],[-71.330654699,41.507171185],[-71.330604808,41.507122925],[-71.33053258,41.507088079],[-71.330484512,41.507040576],[-71.330461017,41.506996905],[-71.330431404,41.50694282],[-71.330390911,41.506918793],[-71.330359855,41.506916231],[-71.330301818,41.5068651],[-71.330264058,41.506808121],[-71.330204197,41.506756301],[-71.330132242,41.506745537],[-71.330060701,41.506751309],[-71.329966612,41.50674639],[-71.329885123,41.506716905],[-71.329819253,41.506682845],[-71.329758821,41.506651676],[-71.329411232,41.506452947],[-71.329343094,41.506402349],[-71.329288506,41.506358884],[-71.329230304,41.506313263],[-71.329173929,41.506266982],[-71.329118428,41.506223493],[-71.329060094,41.506181988],[-71.329004592,41.506139162],[-71.328950849,41.506098442],[-71.328897078,41.506057013],[-71.32884624,41.506010832],[-71.328795305,41.505966709],[-71.328721961,41.505906406],[-71.328670146,41.505861572],[-71.328621067,41.505817474],[-71.328568306,41.505774034],[-71.328517404,41.505729202],[-71.328470221,41.505681699],[-71.328424894,41.505634222],[-71.328379634,41.505584001],[-71.328338094,41.505531064],[-71.328299256,41.505480257],[-71.328267683,41.505431635],[-71.328235637,41.505366476],[-71.32821809,41.50530637],[-71.328225347,41.505242551],[-71.328230675,41.505183532],[-71.328249901,41.505149416],[-71.328290318,41.505143827],[-71.328321975,41.505091388],[-71.328348158,41.50503814],[-71.328371941,41.504971807],[-71.328380312,41.504901129],[-71.328380001,41.504846103],[-71.328355254,41.504781779],[-71.328329258,41.504729779],[-71.328299613,41.504677043],[-71.328258574,41.504607617],[-71.328232678,41.50455221],[-71.328208475,41.504500922],[-71.328166432,41.504465891],[-71.3281227,41.504459697],[-71.328063411,41.504354224],[-71.327990817,41.504333143],[-71.327680269,41.504249889],[-71.327663029,41.504211785],[-71.327586552,41.5041982],[-71.327548637,41.504212734],[-71.327461068,41.50417146],[-71.326999153,41.50404816],[-71.326111657,41.503811216],[-71.326024966,41.503738312],[-71.325542169,41.503270005],[-71.325494521,41.503272677],[-71.325301732,41.503330131],[-71.325333778,41.503393918],[-71.325605465,41.504046033],[-71.325623632,41.504089627],[-71.32569359,41.504140253],[-71.325836211,41.504208507],[-71.325825433,41.504234471],[-71.325928006,41.504295918],[-71.325961391,41.504280623],[-71.326041014,41.504312121],[-71.327428645,41.505073928],[-71.327472251,41.505184638],[-71.327443364,41.505236441],[-71.327405156,41.505326628],[-71.32669557,41.506761725],[-71.326570625,41.506748043],[-71.32649864,41.5067373],[-71.325292451,41.506488662],[-71.325235719,41.506610015],[-71.324996731,41.507121481],[-71.325100048,41.507156835],[-71.32506031,41.507237322],[-71.325012869,41.507331497],[-71.324690724,41.508024446],[-71.324679916,41.508117121],[-71.324669517,41.508227704],[-71.324605598,41.508485945],[-71.324620777,41.508565945],[-71.324665851,41.508786022],[-71.324631314,41.508843945],[-71.324607762,41.508901335],[-71.324639165,41.508956202],[-71.324636536,41.509017353],[-71.324631842,41.509088128],[-71.324617047,41.509158682],[-71.324601302,41.509232047],[-71.324599079,41.509311791],[-71.324588643,41.5093907],[-71.324578746,41.509450352],[-71.324569558,41.509517621],[-71.324562195,41.50958558],[-71.324554903,41.509649399],[-71.324543047,41.50971321],[-71.324537713,41.509772961],[-71.324522105,41.50984077],[-71.324478778,41.509886169],[-71.324474996,41.509923235],[-71.324460097,41.509998661],[-71.324430059,41.510058031],[-71.324423845,41.510117049],[-71.324399547,41.510168926],[-71.32433902,41.510206523],[-71.324272307,41.510236404],[-71.324216137,41.510282996],[-71.324173154,41.510347629],[-71.324136388,41.510419293],[-71.324126557,41.51047691],[-71.324141975,41.510547258],[-71.324141576,41.510627005],[-71.324129314,41.510705911],[-71.324129827,41.510786391],[-71.324146903,41.510862299],[-71.324174014,41.510940441],[-71.324183348,41.510999048],[-71.324188117,41.511058266],[-71.324196537,41.511117558],[-71.324214183,41.511174188],[-71.3242345,41.511232994],[-71.324244712,41.511293661],[-71.32424938,41.511356309],[-71.324261352,41.511418396],[-71.324280721,41.511479214],[-71.324317163,41.511549938],[-71.324361412,41.511602903],[-71.324399201,41.511659221],[-71.324420464,41.511717297],[-71.324436321,41.511771889],[-71.324466712,41.511830162],[-71.324483578,41.511882652],[-71.324501616,41.511907036],[-71.324556155,41.512002761],[-71.324562378,41.512075748],[-71.324555595,41.512154044],[-71.324534917,41.512205996],[-71.324526165,41.512224439],[-71.324517345,41.512279313],[-71.324502751,41.512343029],[-71.324506408,41.51240842],[-71.324520405,41.512464358],[-71.324537915,41.5125265],[-71.324556273,41.512590083],[-71.324579161,41.512655092],[-71.324605664,41.512722209],[-71.324634027,41.512787981],[-71.324663508,41.512845544],[-71.324694032,41.512899677],[-71.324725438,41.51295379],[-71.324755084,41.513006527],[-71.324778039,41.513069454],[-71.324765335,41.51313187],[-71.324730358,41.513171839],[-71.324716133,41.51322252],[-71.324713701,41.513278204],[-71.324733988,41.513337651],[-71.324798581,41.513384061],[-71.32486662,41.513405068],[-71.324936219,41.513434356],[-71.324996958,41.513488284],[-71.325055605,41.513551083],[-71.325122569,41.513609937],[-71.325193178,41.513670856],[-71.32523952,41.513715614],[-71.325307432,41.513773052],[-71.325369695,41.513803609],[-71.325434759,41.513833508],[-71.32550253,41.513864165],[-71.325569321,41.513896833],[-71.325636113,41.513929546],[-71.325698306,41.513963511],[-71.325755968,41.51399676],[-71.325829662,41.514042611],[-71.325890503,41.514093063],[-71.32595963,41.514140257],[-71.326050247,41.514172595],[-71.326120925,41.514197127],[-71.326196978,41.514225829],[-71.326272082,41.514256542],[-71.326343571,41.514285215],[-71.326410467,41.514313057],[-71.326509335,41.514344172],[-71.326604515,41.51437734],[-71.326680266,41.514416333],[-71.326769902,41.514417726],[-71.326846829,41.514415532],[-71.326937921,41.514429985]]],[[[-71.319434474,41.519482484],[-71.319434564,41.519482504],[-71.319599475,41.519520483],[-71.319681751,41.519531615],[-71.319684986,41.519532025],[-71.319708654,41.519535254],[-71.319769475,41.519543483],[-71.319855474,41.519562483],[-71.319912305,41.51957862],[-71.31993698,41.519585524],[-71.319941834,41.519586366],[-71.320021475,41.519599484],[-71.320093978,41.51961363],[-71.320101403,41.519615009],[-71.320123057,41.519619304],[-71.320185475,41.519631483],[-71.320261475,41.519643483],[-71.320351475,41.519659483],[-71.320429475,41.519685483],[-71.320495475,41.519711483],[-71.320571475,41.519737483],[-71.320655475,41.519760483],[-71.320739708,41.519789062],[-71.320823475,41.519817483],[-71.32085995,41.519832174],[-71.320896204,41.519846663],[-71.320899663,41.519847722],[-71.320966475,41.519867483],[-71.321210475,41.519934483],[-71.321236736,41.519945624],[-71.321277387,41.519962498],[-71.321315942,41.519985506],[-71.321336475,41.519997483],[-71.32138129,41.520037497],[-71.321392666,41.520047593],[-71.321423386,41.520096856],[-71.321445008,41.52012803],[-71.321457475,41.520145484],[-71.321498475,41.520193483],[-71.321528637,41.520219952],[-71.321548192,41.520236762],[-71.321599844,41.520287751],[-71.321654047,41.520340733],[-71.321667078,41.520350056],[-71.321707475,41.520378484],[-71.321754294,41.520406575],[-71.321767958,41.520414619],[-71.321781298,41.520424293],[-71.321829475,41.520458483],[-71.321889475,41.520490483],[-71.321932313,41.52052086],[-71.321945265,41.520529838],[-71.321960678,41.52053878],[-71.322005475,41.520564483],[-71.322030331,41.520579779],[-71.322071407,41.520604611],[-71.322096656,41.52061921],[-71.322134476,41.520640483],[-71.322208476,41.520680483],[-71.322277475,41.520719483],[-71.322343476,41.520759483],[-71.322364958,41.520775504],[-71.322403376,41.520803704],[-71.322440829,41.520837325],[-71.322453475,41.520848483],[-71.322493475,41.520900483],[-71.322493733,41.520900834],[-71.322512906,41.520954376],[-71.32251295,41.520954468],[-71.322539933,41.521009583],[-71.322577422,41.521066198],[-71.322614063,41.521120845],[-71.322652237,41.52118279],[-71.322688875,41.521238718],[-71.322741212,41.521295653],[-71.322789199,41.52135249],[-71.322824017,41.521400423],[-71.322831476,41.521410484],[-71.322834813,41.521416138],[-71.322868267,41.521471741],[-71.322889994,41.52152808],[-71.322901089,41.521588176],[-71.322919447,41.521641148],[-71.32294454,41.521701495],[-71.322961885,41.52175769],[-71.322967848,41.52181373],[-71.32297752,41.521827056],[-71.323004476,41.521863483],[-71.323063476,41.521896484],[-71.323096728,41.521931952],[-71.323108722,41.521944694],[-71.323138265,41.522002509],[-71.323153809,41.522060714],[-71.32317259,41.522126173],[-71.32318735,41.522181724],[-71.3231956,41.52224767],[-71.323205092,41.522304402],[-71.323207959,41.522324464],[-71.323215007,41.522373668],[-71.323221721,41.522433688],[-71.323219405,41.52250202],[-71.323210256,41.522565012],[-71.323174093,41.52262483],[-71.323157093,41.52268765],[-71.323142811,41.522747273],[-71.323132778,41.522810859],[-71.323146191,41.5228542],[-71.323148476,41.522861483],[-71.323214476,41.522894484],[-71.323252288,41.522919692],[-71.323272188,41.522932626],[-71.323318904,41.522966828],[-71.323329476,41.522974483],[-71.323391476,41.523014483],[-71.323440476,41.523055483],[-71.323440482,41.523055522],[-71.323441325,41.523056223],[-71.323449019,41.523114256],[-71.32345037,41.523176784],[-71.323469105,41.523216468],[-71.323548476,41.523214484],[-71.323626476,41.523193483],[-71.323697476,41.523179484],[-71.323780476,41.523170483],[-71.323869477,41.523159484],[-71.323939476,41.523140484],[-71.324010476,41.523115483],[-71.324082477,41.523085484],[-71.324147476,41.523046484],[-71.324345476,41.522923484],[-71.324419476,41.522886484],[-71.324486476,41.522850484],[-71.324538476,41.522812484],[-71.324596476,41.522763483],[-71.324651477,41.522726483],[-71.324705477,41.522684483],[-71.324756476,41.522640484],[-71.324812476,41.522587483],[-71.324869476,41.522537484],[-71.324940477,41.522502484],[-71.325008476,41.522480484],[-71.325087476,41.522457484],[-71.325170477,41.522427484],[-71.325249477,41.522394483],[-71.325323477,41.522374483],[-71.325411477,41.522347484],[-71.325449389,41.522336837],[-71.325479369,41.522327933],[-71.325488962,41.522325089],[-71.325537526,41.522312086],[-71.325557477,41.522306484],[-71.325627476,41.522288484],[-71.325702477,41.522274483],[-71.325869477,41.522239483],[-71.325957477,41.522217483],[-71.326119477,41.522175483],[-71.326195477,41.522161483],[-71.326280477,41.522135483],[-71.326343477,41.522107483],[-71.326479477,41.522022483],[-71.326554477,41.521992484],[-71.326628477,41.521960483],[-71.326691477,41.521922483],[-71.326786477,41.521823483],[-71.326850477,41.521769483],[-71.326905477,41.521727483],[-71.326966477,41.521676483],[-71.327065477,41.521581483],[-71.327126477,41.521532483],[-71.327187477,41.521486483],[-71.327249477,41.521453483],[-71.327305477,41.521417483],[-71.327302478,41.521359483],[-71.327315477,41.521295484],[-71.327329477,41.521242483],[-71.327362477,41.521133483],[-71.327383477,41.521070483],[-71.327406477,41.521008483],[-71.327431477,41.520945484],[-71.327457478,41.520888483],[-71.327479477,41.520837483],[-71.327510477,41.520781483],[-71.327535478,41.520728483],[-71.327576478,41.520604483],[-71.327586477,41.520544483],[-71.327582477,41.520425483],[-71.327592477,41.520330483],[-71.327600477,41.520301483],[-71.327608477,41.520241483],[-71.327627477,41.520177483],[-71.327642477,41.520115483],[-71.327658477,41.520058483],[-71.327693478,41.519927483],[-71.327711478,41.519874483],[-71.327736477,41.519819483],[-71.327767477,41.519756482],[-71.327800477,41.519695483],[-71.327819477,41.519638483],[-71.327833003,41.519576366],[-71.32783445,41.519569579],[-71.327835189,41.519566328],[-71.327846478,41.519514483],[-71.327862477,41.519461483],[-71.327871477,41.519391483],[-71.327861477,41.519321483],[-71.327843477,41.519258483],[-71.327826478,41.519194483],[-71.327845477,41.519138483],[-71.327896477,41.519081483],[-71.327959477,41.519033483],[-71.328080478,41.518965483],[-71.328136477,41.518929483],[-71.328251477,41.518859482],[-71.328309477,41.518819483],[-71.328371478,41.518780483],[-71.328439477,41.518743482],[-71.328565478,41.518659483],[-71.328703478,41.518584483],[-71.328857478,41.518518483],[-71.328930477,41.518492482],[-71.329003477,41.518464483],[-71.329067478,41.518433482],[-71.329261478,41.518344483],[-71.329334477,41.518315482],[-71.329418478,41.518287483],[-71.329488477,41.518260482],[-71.329629478,41.518217482],[-71.329704477,41.518196482],[-71.329793478,41.518169483],[-71.329883478,41.518150483],[-71.329958478,41.518143482],[-71.330039478,41.518158482],[-71.330104478,41.518190483],[-71.330155478,41.518228483],[-71.330157983,41.518236292],[-71.330173347,41.518281754],[-71.330182243,41.518343002],[-71.330182478,41.518344483],[-71.330232755,41.518355835],[-71.330244723,41.518358385],[-71.330317478,41.518329483],[-71.330391478,41.518319482],[-71.330458478,41.518284483],[-71.330515478,41.518235482],[-71.330565478,41.518195483],[-71.330629478,41.518160482],[-71.330684478,41.518125482],[-71.330759478,41.518093483],[-71.330785478,41.518039483],[-71.330782478,41.517984482],[-71.330795478,41.517923482],[-71.330806478,41.517864482],[-71.330806478,41.517807482],[-71.330788478,41.517755482],[-71.330786814,41.517747993],[-71.330786612,41.517747388],[-71.330751384,41.517697319],[-71.330711692,41.517643745],[-71.330673758,41.517592941],[-71.330645018,41.51754023],[-71.330610936,41.517482616],[-71.330571244,41.517429019],[-71.330536147,41.51737552],[-71.330518363,41.517357381],[-71.330446061,41.517358327],[-71.330451572,41.517555107],[-71.330342602,41.517754875],[-71.330214362,41.517794137],[-71.330195064,41.517796555],[-71.330121582,41.517806395],[-71.330045394,41.517815522],[-71.329969308,41.517820532],[-71.329895792,41.517831744],[-71.329821195,41.517849175],[-71.329739233,41.517867121],[-71.329648611,41.517868473],[-71.329568503,41.517887154],[-71.329500129,41.517910174],[-71.329418806,41.517939807],[-71.329345633,41.517970984],[-71.329281785,41.517996824],[-71.329203298,41.518023763],[-71.32913401,41.518047422],[-71.329065802,41.51806493],[-71.328990972,41.518089907],[-71.328917151,41.518112804],[-71.328835354,41.518125284],[-71.328762649,41.518140613],[-71.328702182,41.518176817],[-71.328646214,41.518214469],[-71.328567901,41.518233152],[-71.32849124,41.518259475],[-71.328420872,41.518288621],[-71.328338698,41.518282529],[-71.328272613,41.518256725],[-71.32820027,41.518226726],[-71.328135333,41.51819269],[-71.328061271,41.518157154],[-71.327995353,41.518125838],[-71.327936837,41.518091216],[-71.327861927,41.518054284],[-71.327803314,41.51802243],[-71.327682119,41.517940077],[-71.327620667,41.51791158],[-71.327555662,41.517880288],[-71.327493295,41.517852522],[-71.327160217,41.517326701],[-71.326122429,41.517694096],[-71.326085482,41.517673595],[-71.32602217,41.517647153],[-71.325958857,41.517620711],[-71.325896625,41.517588096],[-71.325830644,41.517558174],[-71.325761851,41.517533004],[-71.325689146,41.517514003],[-71.325612042,41.517490079],[-71.325541395,41.517464243],[-71.325471085,41.517425967],[-71.325402603,41.517387075],[-71.325327425,41.517359769],[-71.325252316,41.517329695],[-71.32518295,41.517291489],[-71.325120685,41.517260222],[-71.325053048,41.517224122],[-71.324989905,41.517191459],[-71.324924934,41.517159503],[-71.324869162,41.517124221],[-71.324808148,41.51708063],[-71.324746285,41.517035665],[-71.324684968,41.51700305],[-71.324609924,41.516971627],[-71.32453485,41.516940181],[-71.324469852,41.516907515],[-71.324406572,41.516880386],[-71.3243315,41.516848253],[-71.324265619,41.516815586],[-71.324195277,41.516778727],[-71.324127602,41.516745325],[-71.324048473,41.516728257],[-71.323964881,41.516707729],[-71.323885856,41.516685836],[-71.323819672,41.516664168],[-71.323758289,41.516633612],[-71.323691292,41.516608489],[-71.323628997,41.516577954],[-71.323567984,41.516534339],[-71.323514202,41.516494989],[-71.323455757,41.516458307],[-71.323395555,41.516418856],[-71.323349313,41.516370689],[-71.323307565,41.516325983],[-71.323258454,41.51628122],[-71.323217687,41.516233816],[-71.323173541,41.516176025],[-71.323133106,41.516118308],[-71.323099033,41.516059983],[-71.323065839,41.516003077],[-71.323031561,41.515953031],[-71.322974066,41.515914292],[-71.32291748,41.515843263],[-71.322842977,41.515725871],[-71.322752447,41.515560794],[-71.322660234,41.515421786],[-71.322635049,41.515373926],[-71.322626766,41.515342856],[-71.322614056,41.515306199],[-71.322585052,41.515263822],[-71.322556253,41.515213166],[-71.322528434,41.515160431],[-71.322502805,41.515096745],[-71.322474278,41.515035798],[-71.322452268,41.514972872],[-71.322450342,41.514909542],[-71.322454662,41.514853906],[-71.322467437,41.514788815],[-71.322482778,41.514731276],[-71.322497443,41.514664815],[-71.322518194,41.514609411],[-71.322544591,41.514547931],[-71.322571896,41.514487849],[-71.322595283,41.514436633],[-71.322619886,41.514374442],[-71.32265358,41.514314461],[-71.322711645,41.514266546],[-71.322781099,41.51423738],[-71.322843323,41.514203971],[-71.322901862,41.514171883],[-71.322963069,41.514143276],[-71.323028742,41.514116802],[-71.323103741,41.514084968],[-71.323165997,41.514050896],[-71.323198608,41.513997751],[-71.323191982,41.513939194],[-71.323133945,41.513921083],[-71.323062937,41.513939933],[-71.322988918,41.51396971],[-71.322923279,41.513994789],[-71.32285565,41.514023981],[-71.322787885,41.514058685],[-71.322717448,41.51409128],[-71.32264072,41.514121007],[-71.322574172,41.514144712],[-71.322501368,41.514163536],[-71.322424106,41.514177436],[-71.322378642,41.514134759],[-71.322358124,41.514082881],[-71.322351497,41.514024987],[-71.322353115,41.513967266],[-71.322370385,41.51390495],[-71.322372949,41.513846544],[-71.322378253,41.513787479],[-71.322397111,41.513734107],[-71.322418807,41.513678086],[-71.322423165,41.513619683],[-71.322399334,41.513555359],[-71.322399091,41.513499671],[-71.322411963,41.513432453],[-71.322403478,41.513375242],[-71.322398033,41.513307768],[-71.322406885,41.513252871],[-71.322418578,41.51319393],[-71.322421109,41.513136187],[-71.322414615,41.513074177],[-71.322414343,41.513017802],[-71.322417922,41.512955281],[-71.322424983,41.512899032],[-71.322432958,41.512842076],[-71.3224291,41.512784209],[-71.322420577,41.512729743],[-71.322430344,41.512674184],[-71.32245491,41.512614051],[-71.322457443,41.512555645],[-71.322446387,41.512492919],[-71.322440605,41.512437816],[-71.322435192,41.512369633],[-71.322433163,41.512310465],[-71.322424743,41.512251859],[-71.322426094,41.51220292],[-71.322500411,41.512096941],[-71.32252471,41.512045727],[-71.322553773,41.511987774],[-71.322567289,41.511929522],[-71.322578134,41.511869162],[-71.322611761,41.511811239],[-71.322655392,41.511755526],[-71.322705139,41.511710915],[-71.322750258,41.511667623],[-71.322773746,41.511612292],[-71.322776242,41.511555921],[-71.32271824,41.511537147],[-71.322648279,41.511518857],[-71.322571049,41.511499733],[-71.322504396,41.511462238],[-71.322447141,41.511415312],[-71.322376908,41.51137429],[-71.322309041,41.511347061],[-71.322242925,41.511324706],[-71.322167657,41.511300165],[-71.322098031,41.511270875],[-71.32202736,41.511245701],[-71.321952902,41.511225231],[-71.321888686,41.511198099],[-71.321811727,41.51116937],[-71.321738216,41.511147575],[-71.321668254,41.511129971],[-71.321587068,41.511122504],[-71.321509099,41.511128833],[-71.321438393,41.51110503],[-71.321360352,41.511082496],[-71.321289477,41.51106489],[-71.321209544,41.511044343],[-71.32113874,41.511023284],[-71.321063505,41.510998056],[-71.321005943,41.510963456],[-71.320937569,41.510921795],[-71.320854966,41.510898476],[-71.32078433,41.510871928],[-71.320723933,41.510839336],[-71.320647109,41.510805803],[-71.320575254,41.510790917],[-71.320497589,41.510786268],[-71.320322364,41.510765183],[-71.320303492,41.510768355],[-71.320270872,41.510780608],[-71.32019868,41.510777408],[-71.320119188,41.510773396],[-71.32003875,41.510770731],[-71.319952768,41.510770094],[-71.319881389,41.510737324],[-71.319828526,41.510697996],[-71.319830115,41.510640915],[-71.319836076,41.510630793],[-71.319861815,41.510587106],[-71.319924068,41.510553699],[-71.319983488,41.510586954],[-71.320050338,41.510618276],[-71.320110668,41.510619902],[-71.320188638,41.510612889],[-71.320264888,41.510634025],[-71.320300569,41.510636871],[-71.320418513,41.510620841],[-71.320472763,41.510609536],[-71.320484297,41.510608617],[-71.320559294,41.510609786],[-71.320638928,41.510606228],[-71.320713245,41.510599826],[-71.320801356,41.510589557],[-71.320882943,41.510583944],[-71.320958108,41.510578984],[-71.321031821,41.510560162],[-71.321103198,41.510527615],[-71.321167379,41.510489431],[-71.321219087,41.510439998],[-71.321269986,41.510385784],[-71.321328689,41.510348208],[-71.321389929,41.51031752],[-71.321461139,41.510290461],[-71.321535155,41.510260685],[-71.321598421,41.510223162],[-71.321670071,41.510179638],[-71.32174094,41.51013259],[-71.321807045,41.510091664],[-71.321880319,41.510055025],[-71.321942676,41.510016106],[-71.322001312,41.509980588],[-71.322059003,41.509945755],[-71.322117806,41.509904726],[-71.32216769,41.509853917],[-71.322215744,41.509805141],[-71.322245486,41.509754713],[-71.322269004,41.509699382],[-71.322295227,41.509644786],[-71.322322297,41.509592295],[-71.322361229,41.50954131],[-71.32240905,41.509499417],[-71.322468054,41.509451527],[-71.322509657,41.50940265],[-71.322553285,41.509347647],[-71.322601072,41.509307126],[-71.322648961,41.509262512],[-71.322704553,41.50920492],[-71.322756394,41.509150043],[-71.322789274,41.509086607],[-71.322801976,41.509025587],[-71.322816539,41.508962557],[-71.322842796,41.508906566],[-71.322872668,41.508852685],[-71.322897912,41.508800146],[-71.322893209,41.508739579],[-71.322870967,41.508684199],[-71.322848625,41.508632273],[-71.322836389,41.508578441],[-71.322840712,41.50852141],[-71.322836856,41.508462903],[-71.322835973,41.508396167],[-71.322831103,41.508341089],[-71.32282566,41.508272905],[-71.322840185,41.50821262],[-71.322853061,41.508143412],[-71.322867517,41.508085848],[-71.322875691,41.508022694],[-71.322881874,41.507964362],[-71.322900829,41.507908269],[-71.322918974,41.507848034],[-71.322907752,41.507790751],[-71.322888419,41.507728561],[-71.322875403,41.507670565],[-71.322873571,41.507605955],[-71.322883572,41.50754214],[-71.322886372,41.50747477],[-71.322889007,41.507412225],[-71.322883422,41.507351634],[-71.322875141,41.50728683],[-71.322865032,41.50722271],[-71.3228605,41.50715526],[-71.322861205,41.507097492],[-71.322872893,41.507039946],[-71.322898307,41.5069805],[-71.322931895,41.506924635],[-71.322972783,41.506869559],[-71.323025167,41.506827055],[-71.323087617,41.506786123],[-71.323151895,41.506744461],[-71.323206943,41.506706833],[-71.323268249,41.50667276],[-71.323338877,41.506633944],[-71.323409743,41.506619256],[-71.323487576,41.506616333],[-71.323567945,41.50662039],[-71.323654799,41.506622445],[-71.32373158,41.506625695],[-71.323813908,41.506625593],[-71.32389995,41.506624192],[-71.323982477,41.506617938],[-71.323967675,41.50659022],[-71.323899201,41.506552677],[-71.32382201,41.506532227],[-71.323752256,41.506507055],[-71.323705104,41.506460214],[-71.323711087,41.506408057],[-71.323851776,41.506415774],[-71.323920954,41.506417732],[-71.324020789,41.506423922],[-71.324062929,41.506422546],[-71.324133192,41.506428462],[-71.324190678,41.506434176],[-71.324285473,41.50644738],[-71.324426576,41.506470877],[-71.324835304,41.50654473],[-71.324850968,41.506512347],[-71.324901326,41.506408228],[-71.324597533,41.506344964],[-71.324462822,41.506320174],[-71.324332573,41.506299552],[-71.324218716,41.506281242],[-71.324110194,41.506270259],[-71.324049232,41.506256604],[-71.324036559,41.506251553],[-71.323968592,41.506229196],[-71.323900661,41.506204713],[-71.323826275,41.506182232],[-71.323762128,41.506153707],[-71.323708461,41.506108868],[-71.323666719,41.506064208],[-71.323617513,41.506023515],[-71.323550899,41.505984649],[-71.323487834,41.505949972],[-71.323420238,41.505914535],[-71.3233591,41.505875745],[-71.323306512,41.505826059],[-71.32325389,41.505777105],[-71.323205764,41.505730948],[-71.323163313,41.505678717],[-71.323126441,41.505622423],[-71.32309129,41.50557098],[-71.323059008,41.505516134],[-71.32303113,41.505464153],[-71.323012805,41.505400593],[-71.323010843,41.505339344],[-71.323007153,41.505275325],[-71.323000695,41.505211257],[-71.32299515,41.505147212],[-71.322995212,41.505079837],[-71.322989669,41.505015084],[-71.3229825,41.504944131],[-71.322971579,41.504876579],[-71.322958431,41.504822723],[-71.322937335,41.50476053],[-71.322919589,41.504707947],[-71.322893901,41.50464497],[-71.322865546,41.504578512],[-71.322837088,41.50451617],[-71.322806804,41.50445378],[-71.322779223,41.504393521],[-71.322749617,41.504339434],[-71.322721802,41.504286698],[-71.322689589,41.504229108],[-71.322655555,41.504170165],[-71.322617836,41.504112475],[-71.322580967,41.504055495],[-71.322575195,41.504041329],[-71.322552711,41.503986292],[-71.322527969,41.50392263],[-71.32250512,41.503856226],[-71.322482916,41.503798811],[-71.322465506,41.503735252],[-71.322454349,41.503676619],[-71.322441436,41.50361453],[-71.322428524,41.503552418],[-71.322417403,41.503491773],[-71.322409087,41.503429028],[-71.322395228,41.503368309],[-71.322371367,41.503305357],[-71.322339938,41.503250512],[-71.322308741,41.50318883],[-71.322282922,41.503129945],[-71.322259054,41.503069074],[-71.322239657,41.503008919],[-71.322225765,41.50294955],[-71.322213697,41.50289023],[-71.322196221,41.502828751],[-71.322175807,41.502773443],[-71.322152725,41.502714609],[-71.322137108,41.502651784],[-71.322125786,41.502597953],[-71.322118282,41.502538686],[-71.322108983,41.502479415],[-71.322095834,41.502426222],[-71.322095528,41.502371197],[-71.322081704,41.502309083],[-71.322060312,41.502255809],[-71.322047836,41.502145579],[-71.322023428,41.501971227],[-71.321984356,41.501764262],[-71.321965997,41.501603069],[-71.321955547,41.501453003],[-71.321956349,41.50129344],[-71.321959455,41.501181382],[-71.321965432,41.501098259],[-71.321977725,41.500986399],[-71.321983907,41.500961709],[-71.322029732,41.50095764],[-71.322104786,41.500956064],[-71.322176326,41.500948925],[-71.322247896,41.500941808],[-71.322321362,41.500931264],[-71.32239658,41.500924886],[-71.322471837,41.500915762],[-71.322545134,41.500911416],[-71.322626031,41.500897567],[-71.322687499,41.50085796],[-71.322703988,41.500857528],[-71.322924925,41.500839686],[-71.322890647,41.500692008],[-71.32266326,41.500710411],[-71.322597403,41.50077542],[-71.322575304,41.500780555],[-71.322527689,41.500782539],[-71.322453514,41.50078549],[-71.322375592,41.500790446],[-71.322293105,41.500796059],[-71.322207137,41.500795378],[-71.322170061,41.500748048],[-71.322153498,41.500686571],[-71.322139575,41.500627179],[-71.322124837,41.50056575],[-71.322113648,41.500507849],[-71.3221053,41.50044579],[-71.322098707,41.500387256],[-71.32207826,41.500333251],[-71.322068962,41.50024027],[-71.322043103,41.500085126],[-71.321985749,41.499877927],[-71.321949415,41.499737746],[-71.32198564,41.4997177],[-71.32202558,41.499696332],[-71.322057379,41.499670676],[-71.322068662,41.499627538],[-71.322040626,41.499476468],[-71.322040474,41.499476479],[-71.321914474,41.499485479],[-71.321609474,41.499536479],[-71.321449474,41.49957148],[-71.321197474,41.499630479],[-71.321006474,41.499670479],[-71.320517473,41.499813479],[-71.320140474,41.499950479],[-71.320037474,41.499987479],[-71.319923474,41.500030479],[-71.319732474,41.500110479],[-71.319587473,41.50017148],[-71.319129474,41.50034748],[-71.319053474,41.500380479],[-71.318466474,41.500613479],[-71.318420473,41.500632479],[-71.318361473,41.50065548],[-71.318347473,41.50048548],[-71.318344473,41.50044448],[-71.318321473,41.500242479],[-71.318311473,41.50019248],[-71.318244473,41.49984348],[-71.318145473,41.499439479],[-71.318104473,41.499026479],[-71.318084473,41.498824479],[-71.318077473,41.498702479],[-71.318070473,41.498654479],[-71.317901473,41.498661479],[-71.317871473,41.498666479],[-71.317527473,41.498682479],[-71.317214473,41.498688479],[-71.317031472,41.498701479],[-71.315948472,41.498930479],[-71.315254472,41.499079479],[-71.315078472,41.499110479],[-71.314498472,41.499229479],[-71.314231472,41.499289479],[-71.313949471,41.499344479],[-71.313545472,41.49942948],[-71.313377472,41.499463479],[-71.313087471,41.499519479],[-71.312484471,41.497973479],[-71.312446471,41.497906479],[-71.312422471,41.497875479],[-71.312416471,41.497866479],[-71.312370471,41.497831479],[-71.312317471,41.497796479],[-71.312263471,41.497770479],[-71.312217471,41.497749479],[-71.312172471,41.497740479],[-71.312065471,41.497725479],[-71.312011471,41.497726479],[-71.311973471,41.497722479],[-71.311697471,41.497467479],[-71.311172471,41.496982479],[-71.310783471,41.497214479],[-71.31046347,41.497406479],[-71.310157471,41.497587479],[-71.30985247,41.497774479],[-71.30952447,41.497974479],[-71.30906647,41.498253479],[-71.30883047,41.498393479],[-71.30866947,41.498491479],[-71.30846447,41.498621479],[-71.30810547,41.498840479],[-71.30796847,41.498928479],[-71.30756347,41.499171479],[-71.307006469,41.49886648],[-71.306968469,41.498935479],[-71.306877469,41.499072479],[-71.30674747,41.49923248],[-71.306419469,41.49964448],[-71.306152469,41.49997848],[-71.306033469,41.50012748],[-71.305984469,41.50018848],[-71.305618469,41.50064248],[-71.305557469,41.50071548],[-71.305534469,41.50074748],[-71.305106469,41.50126448],[-71.305084469,41.50129648],[-71.304710469,41.50175048],[-71.304672469,41.50179548],[-71.304374468,41.50216248],[-71.304099468,41.502514481],[-71.304054469,41.502573481],[-71.303665469,41.50307248],[-71.303260468,41.503580481],[-71.303199469,41.503658481],[-71.302910468,41.504010481],[-71.302833468,41.504106481],[-71.302299468,41.504757481],[-71.302177468,41.504903481],[-71.301994468,41.505118481],[-71.301803468,41.505352481],[-71.301666468,41.505530481],[-71.301559468,41.505740481],[-71.301536468,41.505803481],[-71.301521468,41.505898481],[-71.301521468,41.505957481],[-71.302092468,41.506968481],[-71.303288469,41.508564481],[-71.303969469,41.509757481],[-71.304918469,41.511343482],[-71.30600747,41.512825482],[-71.307330471,41.514249483],[-71.307991471,41.514982482],[-71.30850447,41.516101483],[-71.309782471,41.517745483],[-71.310050471,41.518092483],[-71.310174472,41.518253484],[-71.310601472,41.518800483],[-71.310890472,41.519187484],[-71.310956472,41.519426483],[-71.311187472,41.519752484],[-71.311717472,41.520376484],[-71.311858473,41.520588484],[-71.312038472,41.520853483],[-71.311779473,41.521270484],[-71.311861472,41.521492483],[-71.311912472,41.521628483],[-71.311906472,41.521682484],[-71.311855472,41.522161484],[-71.311900472,41.522138484],[-71.311965472,41.522098483],[-71.312014473,41.522057483],[-71.312061472,41.522013484],[-71.312065018,41.522012865],[-71.312075906,41.522008018],[-71.312160675,41.521996163],[-71.312187473,41.521991484],[-71.312634473,41.522265484],[-71.312751473,41.522280484],[-71.312747487,41.522243616],[-71.312583485,41.522138838],[-71.311976624,41.52176141],[-71.311977143,41.521760902],[-71.311976472,41.521760484],[-71.312001472,41.521736484],[-71.312002101,41.521736477],[-71.312015533,41.521723326],[-71.312089869,41.521735512],[-71.312092473,41.521735484],[-71.312168473,41.521748483],[-71.312245473,41.521740484],[-71.312305473,41.521691484],[-71.312406472,41.521585484],[-71.312452472,41.521539484],[-71.312502472,41.521496483],[-71.312624472,41.521410484],[-71.312677473,41.521371484],[-71.312737472,41.521322484],[-71.312798472,41.521275484],[-71.312855472,41.521229484],[-71.313026473,41.521077484],[-71.313091472,41.521027483],[-71.313155473,41.520981484],[-71.313217473,41.520934484],[-71.313426473,41.520805484],[-71.313499472,41.520764484],[-71.313635472,41.520685484],[-71.313700473,41.520642483],[-71.313829472,41.520549484],[-71.313891473,41.520501483],[-71.313958473,41.520453484],[-71.314032473,41.520403483],[-71.314098473,41.520357484],[-71.314243473,41.520264483],[-71.314312473,41.520229483],[-71.314387473,41.520195483],[-71.314521473,41.520128483],[-71.314586473,41.520092483],[-71.314648473,41.520054483],[-71.314723473,41.520014483],[-71.314789473,41.519976483],[-71.314860473,41.519939483],[-71.314931473,41.519912483],[-71.315020473,41.519887484],[-71.315096473,41.519872484],[-71.315184473,41.519852484],[-71.315274473,41.519839483],[-71.315274509,41.519839484],[-71.315355473,41.519841483],[-71.315427473,41.519847483],[-71.315510473,41.519857483],[-71.315597473,41.519860483],[-71.315672473,41.519861483],[-71.315754474,41.519860483],[-71.315830474,41.519866483],[-71.315831121,41.519866608],[-71.315918473,41.519883483],[-71.315983473,41.519909484],[-71.316056473,41.519944483],[-71.316126474,41.519969484],[-71.316187267,41.519981471],[-71.316198022,41.519983464],[-71.316283474,41.519980483],[-71.316368473,41.519966484],[-71.316458474,41.519944483],[-71.316543473,41.519920483],[-71.316719473,41.519889484],[-71.316810474,41.519896483],[-71.316896474,41.519891484],[-71.316991473,41.519873483],[-71.317079474,41.519852484],[-71.317239474,41.519820483],[-71.317331474,41.519808483],[-71.317417473,41.519801483],[-71.317506474,41.519800483],[-71.317587474,41.519821483],[-71.317670474,41.519831484],[-71.317828474,41.519820483],[-71.317907474,41.519807483],[-71.317983474,41.519787483],[-71.318051474,41.519767483],[-71.318209474,41.519728483],[-71.318279474,41.519705483],[-71.318351475,41.519686483],[-71.318421474,41.519673483],[-71.318572474,41.519623483],[-71.318645474,41.519603483],[-71.318726474,41.519583483],[-71.318810474,41.519561483],[-71.318882474,41.519548483],[-71.318942474,41.519535483],[-71.318952888,41.519534058],[-71.318954084,41.519533804],[-71.318968712,41.519531893],[-71.319037474,41.519522483],[-71.319116474,41.519509483],[-71.319191474,41.519495483],[-71.319274474,41.519481483],[-71.319350474,41.519473483],[-71.319434474,41.519482484]]]]}}"}, +{"type": "precinct", "typeId": 2103, "areaId": 25823, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":162,\"NAME\":\"2103\",\"SHAPE_Length\":0.045017286785917,\"SHAPE_Area\":-4.1700047604885e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.297248467,41.50077748],[-71.297416466,41.500936481],[-71.297409466,41.50098648],[-71.297408466,41.50127048],[-71.297415466,41.50151348],[-71.297761466,41.501889481],[-71.298448467,41.50270248],[-71.299354467,41.503645481],[-71.300350468,41.504769481],[-71.301521468,41.505957481],[-71.301521468,41.505898481],[-71.301536468,41.505803481],[-71.301559468,41.505740481],[-71.301666468,41.505530481],[-71.301803468,41.505352481],[-71.301994468,41.505118481],[-71.302177468,41.504903481],[-71.302299468,41.504757481],[-71.302833468,41.504106481],[-71.302910468,41.504010481],[-71.303199469,41.503658481],[-71.303260468,41.503580481],[-71.303665469,41.50307248],[-71.304054469,41.502573481],[-71.304099468,41.502514481],[-71.304374468,41.50216248],[-71.304672469,41.50179548],[-71.304710469,41.50175048],[-71.305084469,41.50129648],[-71.305106469,41.50126448],[-71.305534469,41.50074748],[-71.305557469,41.50071548],[-71.305618469,41.50064248],[-71.305984469,41.50018848],[-71.306033469,41.50012748],[-71.306152469,41.49997848],[-71.306419469,41.49964448],[-71.30674747,41.49923248],[-71.306877469,41.499072479],[-71.306968469,41.498935479],[-71.307006469,41.49886648],[-71.30756347,41.499171479],[-71.30796847,41.498928479],[-71.30810547,41.498840479],[-71.30846447,41.498621479],[-71.30866947,41.498491479],[-71.30883047,41.498393479],[-71.30906647,41.498253479],[-71.30952447,41.497974479],[-71.30985247,41.497774479],[-71.310157471,41.497587479],[-71.31046347,41.497406479],[-71.310783471,41.497214479],[-71.311172471,41.496982479],[-71.31168347,41.496656479],[-71.31182047,41.496563479],[-71.311463471,41.496229479],[-71.31078347,41.495593479],[-71.31049347,41.495338479],[-71.31037947,41.495241479],[-71.31028847,41.495162479],[-71.30966947,41.494616478],[-71.30918147,41.494257478],[-71.30917347,41.494293478],[-71.30909747,41.494519478],[-71.308334469,41.494089478],[-71.307579469,41.493708478],[-71.307067469,41.493475478],[-71.306541469,41.494066479],[-71.306869469,41.494222479],[-71.307044469,41.494308478],[-71.307365469,41.494464478],[-71.30806747,41.494797478],[-71.308196469,41.494853478],[-71.30882447,41.495150478],[-71.30882247,41.495200479],[-71.30849447,41.495855479],[-71.308311469,41.496224479],[-71.30825847,41.496329479],[-71.30799047,41.496852479],[-71.30770047,41.497457479],[-71.307685469,41.497488479],[-71.30757947,41.49771648],[-71.307342469,41.498180479],[-71.307304469,41.498266479],[-71.307121469,41.49863548],[-71.306478469,41.498819479],[-71.306022469,41.498949479],[-71.305702469,41.499046479],[-71.305160469,41.499201479],[-71.304885469,41.49928748],[-71.304595469,41.499361479],[-71.304367469,41.49942448],[-71.304161468,41.49948648],[-71.303894468,41.49955948],[-71.303756468,41.499594479],[-71.303443468,41.49968148],[-71.303008468,41.49979848],[-71.302696468,41.49988148],[-71.302398468,41.49996848],[-71.302345468,41.49997848],[-71.302276468,41.49999348],[-71.302200468,41.50001248],[-71.302093468,41.50002348],[-71.301826468,41.500060479],[-71.301681467,41.50007748],[-71.301445467,41.50010448],[-71.301200468,41.50013148],[-71.300788467,41.50018948],[-71.300689467,41.50020048],[-71.300079468,41.50026248],[-71.299713467,41.50030548],[-71.299583467,41.50032148],[-71.298850467,41.50041748],[-71.298660466,41.50043448],[-71.298225467,41.50047948],[-71.297569466,41.50056048],[-71.297264466,41.50060248],[-71.297248467,41.50073348],[-71.297248467,41.50077748]]]]}}"}, +{"type": "precinct", "typeId": 2104, "areaId": 25822, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":161,\"NAME\":\"2104\",\"SHAPE_Length\":0.037541607833942,\"SHAPE_Area\":-5.1756335830557e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.311172471,41.496982479],[-71.311697471,41.497467479],[-71.311973471,41.497722479],[-71.312011471,41.497726479],[-71.312065471,41.497725479],[-71.312172471,41.497740479],[-71.312217471,41.497749479],[-71.312263471,41.497770479],[-71.312317471,41.497796479],[-71.312370471,41.497831479],[-71.312416471,41.497866479],[-71.312422471,41.497875479],[-71.312446471,41.497906479],[-71.312484471,41.497973479],[-71.313087471,41.499519479],[-71.313377472,41.499463479],[-71.313545472,41.49942948],[-71.313949471,41.499344479],[-71.314231472,41.499289479],[-71.314498472,41.499229479],[-71.315078472,41.499110479],[-71.315254472,41.499079479],[-71.315948472,41.498930479],[-71.317031472,41.498701479],[-71.317214473,41.498688479],[-71.317527473,41.498682479],[-71.317871473,41.498666479],[-71.317901473,41.498661479],[-71.318070473,41.498654479],[-71.318077473,41.498702479],[-71.318084473,41.498824479],[-71.318104473,41.499026479],[-71.318145473,41.499439479],[-71.318244473,41.49984348],[-71.318311473,41.50019248],[-71.318321473,41.500242479],[-71.318344473,41.50044448],[-71.318347473,41.50048548],[-71.318361473,41.50065548],[-71.318420473,41.500632479],[-71.318466474,41.500613479],[-71.319053474,41.500380479],[-71.319129474,41.50034748],[-71.319587473,41.50017148],[-71.319732474,41.500110479],[-71.319923474,41.500030479],[-71.320037474,41.499987479],[-71.320140474,41.499950479],[-71.320517473,41.499813479],[-71.321006474,41.499670479],[-71.321197474,41.499630479],[-71.321449474,41.49957148],[-71.321609474,41.499536479],[-71.321914474,41.499485479],[-71.322040474,41.499476479],[-71.322032474,41.49943448],[-71.322004474,41.49937648],[-71.321979676,41.499355649],[-71.321916921,41.499328735],[-71.321841103,41.49932146],[-71.321841085,41.499320543],[-71.321840475,41.499320479],[-71.321839474,41.499244479],[-71.321830474,41.499067479],[-71.321835474,41.498840479],[-71.321868474,41.498637479],[-71.321900475,41.498464479],[-71.322497474,41.498423479],[-71.322497534,41.498424012],[-71.322498293,41.498423961],[-71.322502217,41.498466158],[-71.322502475,41.498468479],[-71.322589474,41.498466479],[-71.322585474,41.498415479],[-71.322686474,41.498401479],[-71.32267853,41.498351824],[-71.322584252,41.498359966],[-71.322584004,41.498359435],[-71.322583475,41.498359479],[-71.322560763,41.498310107],[-71.322489466,41.498314446],[-71.322490789,41.498364693],[-71.321887783,41.498405361],[-71.321887669,41.498404466],[-71.321887474,41.498404479],[-71.321864512,41.498222778],[-71.321864498,41.498222672],[-71.321855329,41.498187264],[-71.321797474,41.497964479],[-71.321851474,41.497963479],[-71.321852462,41.497929895],[-71.321842008,41.49788238],[-71.321812474,41.497749479],[-71.321767474,41.497566478],[-71.321694474,41.497245479],[-71.321718474,41.497124479],[-71.321801474,41.497080478],[-71.321847474,41.497028479],[-71.321879474,41.496987479],[-71.321895474,41.496952479],[-71.321903474,41.496928479],[-71.321903474,41.496893479],[-71.321904474,41.496859479],[-71.321903474,41.496827478],[-71.321897474,41.496785478],[-71.321895474,41.496727478],[-71.321882474,41.496671478],[-71.321883474,41.496645479],[-71.321902474,41.496615478],[-71.321923474,41.496564479],[-71.321961474,41.496513478],[-71.321973474,41.496463479],[-71.321977474,41.496449479],[-71.321998475,41.496385479],[-71.321997474,41.496327479],[-71.321991567,41.496272349],[-71.32199155,41.496272183],[-71.32199012,41.496263249],[-71.321978474,41.496192479],[-71.321965474,41.496122478],[-71.321947333,41.496074653],[-71.321943625,41.496065232],[-71.321929979,41.496056124],[-71.321922474,41.496051478],[-71.32191785,41.496049978],[-71.321911124,41.496047823],[-71.321887905,41.496040355],[-71.321852923,41.496029094],[-71.321808491,41.496014594],[-71.321805484,41.496010492],[-71.321793771,41.495994874],[-71.32173382,41.495956137],[-71.321690565,41.495911703],[-71.321682541,41.495898105],[-71.321661612,41.495843002],[-71.321661474,41.495842479],[-71.321661385,41.49584215],[-71.321644474,41.495779478],[-71.321628057,41.49572366],[-71.321624556,41.495711922],[-71.321610484,41.49565221],[-71.321605198,41.495619296],[-71.321600474,41.495590479],[-71.321599474,41.495548479],[-71.321689474,41.495538478],[-71.321737474,41.495535478],[-71.321709474,41.495456479],[-71.321680593,41.49524535],[-71.321607279,41.495246126],[-71.321594252,41.495237839],[-71.321566474,41.495220479],[-71.321556474,41.495185478],[-71.321554474,41.495124479],[-71.321533474,41.494885478],[-71.321602474,41.494877478],[-71.321557562,41.49458605],[-71.321448115,41.494597583],[-71.321448107,41.49459741],[-71.321447474,41.494597479],[-71.321436474,41.494377478],[-71.321456474,41.494322478],[-71.321470474,41.494263478],[-71.321484474,41.494239478],[-71.321671474,41.494214478],[-71.321630515,41.493948749],[-71.321537378,41.493949083],[-71.321537137,41.493948478],[-71.321536474,41.493948478],[-71.321513473,41.493892478],[-71.321506428,41.493873103],[-71.321505653,41.493871322],[-71.321505775,41.493871306],[-71.321505474,41.493870478],[-71.321555474,41.493864478],[-71.321475473,41.493303478],[-71.321456163,41.493300181],[-71.321435262,41.493296718],[-71.321435229,41.493296607],[-71.321434473,41.493296478],[-71.321420474,41.493248478],[-71.321357473,41.493264478],[-71.320907473,41.493304478],[-71.320823474,41.492662478],[-71.319602473,41.492732478],[-71.318732473,41.492803478],[-71.317561472,41.492890478],[-71.317390473,41.492902478],[-71.317443472,41.493541478],[-71.317466473,41.493617478],[-71.317474473,41.493743478],[-71.317489473,41.493878478],[-71.317497472,41.493999478],[-71.317497472,41.494116478],[-71.317489473,41.494220478],[-71.317466473,41.494333478],[-71.317405472,41.494487478],[-71.317291473,41.494611478],[-71.317268472,41.494630478],[-71.317207472,41.494680478],[-71.316985473,41.494766478],[-71.316642472,41.494867479],[-71.316627472,41.494836478],[-71.316101472,41.494306478],[-71.315658472,41.493870478],[-71.314651471,41.494610478],[-71.314315472,41.494865479],[-71.314109471,41.495027478],[-71.313613471,41.495401478],[-71.312789471,41.495967478],[-71.31182047,41.496563479],[-71.31168347,41.496656479],[-71.311172471,41.496982479]]]]}}"}, +{"type": "precinct", "typeId": 2105, "areaId": 26067, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":406,\"NAME\":\"2105\",\"SHAPE_Length\":0.080273433774102,\"SHAPE_Area\":-0.00021233439342542},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.287255462,41.490600479],[-71.287277463,41.490583478],[-71.287307462,41.490519478],[-71.287345462,41.490473478],[-71.287414463,41.490450478],[-71.287498462,41.490443478],[-71.287590463,41.490428478],[-71.287681462,41.490408478],[-71.287780462,41.490402478],[-71.287856462,41.490396478],[-71.287933462,41.490358478],[-71.287979463,41.490312478],[-71.288017463,41.490257478],[-71.288085463,41.490211478],[-71.288162463,41.490205479],[-71.288253463,41.490181478],[-71.288345463,41.490179478],[-71.288444463,41.490181478],[-71.288528463,41.490157478],[-71.288612463,41.490115478],[-71.288688463,41.490068478],[-71.288780463,41.490026478],[-71.288864463,41.489997478],[-71.288955463,41.489978478],[-71.289039463,41.489958478],[-71.289131463,41.489938478],[-71.289230463,41.489923478],[-71.289314463,41.489925478],[-71.289390463,41.489897478],[-71.289451463,41.489851478],[-71.289535463,41.489813478],[-71.289627463,41.489793478],[-71.289711463,41.489755478],[-71.289794463,41.489740478],[-71.289878463,41.489766478],[-71.289932463,41.489801478],[-71.290001463,41.489768478],[-71.290031464,41.489713478],[-71.290054463,41.489654478],[-71.290122463,41.489612478],[-71.290214463,41.489592478],[-71.290374463,41.489589478],[-71.290451463,41.489552478],[-71.290504463,41.489505478],[-71.290565463,41.489459478],[-71.290634464,41.489458478],[-71.290702463,41.489483478],[-71.290741463,41.489492478],[-71.290847464,41.489458478],[-71.290992463,41.489388478],[-71.291076464,41.489377478],[-71.291274464,41.489418478],[-71.291374464,41.489416478],[-71.291442463,41.489397478],[-71.291488464,41.489333478],[-71.291480463,41.489283478],[-71.291504464,41.489220478],[-71.291580464,41.489173478],[-71.291656463,41.489136478],[-71.291732464,41.489125478],[-71.291808464,41.489128478],[-71.291877464,41.489091478],[-71.291931464,41.489040478],[-71.291992464,41.488994478],[-71.292152464,41.488932478],[-71.292236464,41.488912478],[-71.292305464,41.488889478],[-71.292381464,41.488865477],[-71.292465464,41.488831478],[-71.292739464,41.488727478],[-71.292831464,41.488693478],[-71.293022464,41.488645478],[-71.293098464,41.488616478],[-71.293167464,41.488592477],[-71.293243464,41.488559478],[-71.293312464,41.488535477],[-71.293388464,41.488529478],[-71.293426464,41.488510478],[-71.293571464,41.488400477],[-71.293647464,41.488339477],[-71.294509465,41.487800478],[-71.295951465,41.486879477],[-71.296020465,41.486860477],[-71.296096465,41.486845477],[-71.296257465,41.486842477],[-71.296341465,41.486858477],[-71.296424465,41.486883477],[-71.296447466,41.486901477],[-71.296493465,41.486918477],[-71.296562465,41.486966478],[-71.296630465,41.487010477],[-71.296691465,41.487058477],[-71.296745465,41.487120477],[-71.296783465,41.487174477],[-71.296821465,41.487231477],[-71.296882465,41.487365477],[-71.296920465,41.487441477],[-71.296951466,41.487517477],[-71.296981465,41.487566477],[-71.297004465,41.487619477],[-71.297027466,41.487678477],[-71.297073465,41.487785478],[-71.297104465,41.487847477],[-71.297165466,41.487963478],[-71.297195465,41.488016478],[-71.297485466,41.488682478],[-71.297538466,41.488721478],[-71.297576466,41.488738478],[-71.297859466,41.488841478],[-71.297904466,41.488889478],[-71.297943466,41.488943477],[-71.297965466,41.489005477],[-71.297981466,41.489109478],[-71.298011466,41.489202478],[-71.298026466,41.489261478],[-71.298172466,41.489875478],[-71.298172466,41.489938478],[-71.298171466,41.489996478],[-71.298187466,41.490068478],[-71.298232466,41.490184478],[-71.298278466,41.490364478],[-71.298293466,41.490431478],[-71.298301466,41.490480478],[-71.298316466,41.490583478],[-71.298354466,41.490673478],[-71.298667466,41.492058479],[-71.298690466,41.492170478],[-71.298698466,41.492228478],[-71.298713466,41.492296478],[-71.298744466,41.492403478],[-71.298752466,41.492441478],[-71.298807466,41.492596478],[-71.298929466,41.492582479],[-71.299476466,41.492519478],[-71.299545467,41.492806478],[-71.299797467,41.493904479],[-71.299819467,41.494034478],[-71.300689467,41.493913479],[-71.301437467,41.493804478],[-71.302428468,41.493658479],[-71.303314468,41.493537479],[-71.303512468,41.493767478],[-71.304092468,41.494435479],[-71.304199468,41.494352479],[-71.304542468,41.494016478],[-71.305168468,41.493405478],[-71.305671469,41.492899478],[-71.306182468,41.492385478],[-71.306511468,41.492072478],[-71.306846468,41.491746478],[-71.307327469,41.491263477],[-71.307540469,41.490957478],[-71.307639469,41.490815477],[-71.307891469,41.490464477],[-71.307960469,41.490368477],[-71.308486469,41.489565477],[-71.308812469,41.489062477],[-71.309639469,41.487790477],[-71.309501469,41.487666477],[-71.309287469,41.487135477],[-71.309280469,41.487108477],[-71.30908247,41.486562477],[-71.309028469,41.486433477],[-71.308837469,41.485856477],[-71.308830469,41.485811477],[-71.308723469,41.485210477],[-71.308708469,41.485106476],[-71.308609469,41.484469477],[-71.308550469,41.484099477],[-71.308532469,41.483984477],[-71.308502469,41.483791476],[-71.308502469,41.483656476],[-71.308509469,41.483318476],[-71.308486469,41.482148476],[-71.308486469,41.482094476],[-71.308494469,41.481783476],[-71.308509469,41.480990476],[-71.308501469,41.480116476],[-71.308509469,41.479071475],[-71.308502469,41.478905475],[-71.308479469,41.478784475],[-71.308433469,41.478623475],[-71.308410468,41.478533475],[-71.308342469,41.478309476],[-71.308021468,41.477284475],[-71.307830468,41.475271475],[-71.306938468,41.475334475],[-71.306099468,41.475373475],[-71.305427467,41.475405475],[-71.305045468,41.475426475],[-71.304763467,41.475436475],[-71.303939467,41.475479475],[-71.303566467,41.475496475],[-71.303390467,41.475508475],[-71.301735466,41.475596475],[-71.301681466,41.475601475],[-71.301528466,41.475609475],[-71.300140466,41.475677475],[-71.299598466,41.475706475],[-71.297385465,41.475818475],[-71.297081377,41.475834427],[-71.29708119,41.475834797],[-71.297046714,41.475890471],[-71.297026055,41.475942784],[-71.297049645,41.476003729],[-71.297064743,41.476035208],[-71.297075464,41.476057475],[-71.297075471,41.476057575],[-71.297075719,41.476058091],[-71.297080223,41.47611532],[-71.29709493,41.476171786],[-71.297135008,41.476198504],[-71.297152031,41.476209625],[-71.297186779,41.476259503],[-71.297187465,41.476260475],[-71.297187573,41.476260642],[-71.297194611,41.476314605],[-71.297176663,41.476375339],[-71.297156004,41.476427584],[-71.297130402,41.476494914],[-71.297124881,41.476509884],[-71.297106478,41.476560257],[-71.297079013,41.47662038],[-71.297055996,41.476687669],[-71.297038976,41.47675291],[-71.29702809,41.4768207],[-71.297022354,41.476885184],[-71.297025045,41.476939185],[-71.297032292,41.477004194],[-71.297051662,41.477070906],[-71.297056663,41.477081871],[-71.297077825,41.47712807],[-71.297097823,41.477180569],[-71.297112698,41.477237679],[-71.297119915,41.477302666],[-71.297121085,41.477366429],[-71.297115215,41.477425081],[-71.297105986,41.4774883],[-71.29709161,41.477554209],[-71.297078006,41.477616163],[-71.297053074,41.47767302],[-71.296995836,41.477713993],[-71.296962136,41.477764454],[-71.296955414,41.477823103],[-71.296955596,41.477881674],[-71.296963647,41.477942751],[-71.296961192,41.477998733],[-71.296943994,41.478052287],[-71.296944286,41.478114746],[-71.29694191,41.478174661],[-71.296932597,41.478235273],[-71.296894601,41.478288379],[-71.296834854,41.478333922],[-71.296790929,41.478376703],[-71.296790098,41.478377503],[-71.296777766,41.478412088],[-71.29676758,41.478442641],[-71.296744513,41.478505996],[-71.296722943,41.478557622],[-71.29670758,41.478617674],[-71.296705205,41.478676926],[-71.296701949,41.478736177],[-71.296676062,41.478787223],[-71.296641454,41.47883576],[-71.296617413,41.478889148],[-71.296719465,41.478961476],[-71.296719542,41.478962194],[-71.296719914,41.478962462],[-71.296726127,41.47901775],[-71.296718522,41.479077038],[-71.296691779,41.479129386],[-71.296660714,41.479183099],[-71.296662734,41.479246841],[-71.296653557,41.479312668],[-71.296639796,41.479366182],[-71.296608891,41.479427008],[-71.296583028,41.479479975],[-71.29656601,41.479543958],[-71.296551527,41.479604652],[-71.296545661,41.479661954],[-71.296505103,41.479717068],[-71.296495899,41.479781568],[-71.296521305,41.47984574],[-71.296557778,41.479900693],[-71.296575346,41.479962336],[-71.296589469,41.480026603],[-71.29660538,41.48009284],[-71.29661314,41.480155129],[-71.296613465,41.480157476],[-71.296615287,41.480167045],[-71.296625872,41.480220857],[-71.296634774,41.480281936],[-71.296636795,41.480345724],[-71.296624125,41.48041024],[-71.296618333,41.48047278],[-71.296651695,41.480522433],[-71.296654465,41.480526476],[-71.296654487,41.480526588],[-71.29665481,41.480527069],[-71.296666189,41.480583601],[-71.296660347,41.48064287],[-71.296664179,41.480711167],[-71.296666228,41.480775595],[-71.296673267,41.480829535],[-71.296687368,41.480891195],[-71.296705866,41.48095675],[-71.29672522,41.481021003],[-71.296741233,41.481093713],[-71.296756345,41.481162555],[-71.296764258,41.481219104],[-71.29676636,41.481286117],[-71.296758085,41.481355215],[-71.296760054,41.481416328],[-71.296743916,41.481480953],[-71.296738102,41.481540862],[-71.296739217,41.481602704],[-71.296749723,41.481656628],[-71.296737827,41.481716595],[-71.296751701,41.481770739],[-71.296795465,41.481819477],[-71.296795535,41.481819672],[-71.296795956,41.481820139],[-71.296818718,41.481883712],[-71.296799758,41.4819366],[-71.296780131,41.481998611],[-71.296787276,41.482057789],[-71.296805775,41.482123321],[-71.296819847,41.48218434],[-71.296812379,41.482248203],[-71.296803093,41.482310142],[-71.296816366,41.482373789],[-71.296832213,41.482422958],[-71.296837465,41.482438476],[-71.296842693,41.482455155],[-71.296859443,41.4825061],[-71.296882217,41.482561779],[-71.296885465,41.482569476],[-71.296888144,41.482576466],[-71.296909298,41.482629892],[-71.296892122,41.482686053],[-71.296866284,41.482740324],[-71.296899398,41.482800531],[-71.29690926,41.482866185],[-71.296893122,41.482930787],[-71.296862081,41.482985758],[-71.296845943,41.483050337],[-71.296850507,41.483112759],[-71.296858465,41.483166477],[-71.296860906,41.483175526],[-71.296876037,41.483230309],[-71.296906338,41.483288235],[-71.296906465,41.483288476],[-71.296914273,41.483296284],[-71.296940196,41.483322062],[-71.296950596,41.483332372],[-71.296975147,41.483397869],[-71.296971114,41.483462356],[-71.296957858,41.483519347],[-71.296918793,41.483582605],[-71.296896485,41.483642715],[-71.29690294,41.483711633],[-71.296936105,41.483775087],[-71.296962307,41.483812056],[-71.296980465,41.483837477],[-71.296991107,41.483850114],[-71.297029162,41.483894542],[-71.297061613,41.483924665],[-71.297084465,41.483945477],[-71.297132398,41.48399059],[-71.297135695,41.483993665],[-71.297173905,41.484048621],[-71.29718982,41.484114171],[-71.2972013,41.484177839],[-71.297218149,41.484245998],[-71.297236621,41.48431089],[-71.297249715,41.484364132],[-71.297264723,41.48442776],[-71.297262475,41.484495451],[-71.297250659,41.484558735],[-71.297245564,41.484612813],[-71.297229377,41.484673482],[-71.297225397,41.484740552],[-71.297232527,41.484802648],[-71.297252465,41.484857477],[-71.297252488,41.48485771],[-71.297252616,41.484858061],[-71.297252545,41.484858286],[-71.297258408,41.484917749],[-71.297259937,41.484928925],[-71.297254227,41.484994712],[-71.297225102,41.485059474],[-71.297186201,41.485108668],[-71.297150711,41.485156586],[-71.297122895,41.485230499],[-71.297080471,41.485278108],[-71.297031077,41.485327695],[-71.29696516,41.485389213],[-71.296909607,41.485433574],[-71.296845247,41.485474032],[-71.296773899,41.485511893],[-71.296698187,41.485554389],[-71.296613718,41.485596252],[-71.296524899,41.485638198],[-71.296453893,41.48567359],[-71.296436957,41.485682045],[-71.296342927,41.485727275],[-71.296248848,41.485768526],[-71.296160934,41.485813081],[-71.296080028,41.485862818],[-71.295990397,41.485911326],[-71.295892819,41.485953257],[-71.295793508,41.485994589],[-71.295692403,41.48603585],[-71.295585213,41.486077878],[-71.295478041,41.486123816],[-71.295379676,41.486173658],[-71.29528735,41.486218227],[-71.29520203,41.486259447],[-71.295124534,41.486297983],[-71.29504785,41.486329956],[-71.294986927,41.486359898],[-71.294929521,41.486393072],[-71.294899028,41.486408363],[-71.294832793,41.486435026],[-71.294741334,41.48647429],[-71.294676025,41.486506192],[-71.294608954,41.486537473],[-71.294539269,41.486568086],[-71.294462564,41.486596788],[-71.294389332,41.486623506],[-71.294332278,41.48664614],[-71.294297999,41.486659967],[-71.29424206,41.486682773],[-71.294151428,41.486720072],[-71.29404514,41.486764707],[-71.293932752,41.486814637],[-71.293818687,41.48686589],[-71.293702777,41.486913824],[-71.293582495,41.486959188],[-71.293463898,41.487000598],[-71.293351423,41.487039367],[-71.293239808,41.487075461],[-71.293124664,41.487111549],[-71.293012209,41.487153587],[-71.292901557,41.48720217],[-71.292786556,41.48725079],[-71.292665413,41.487298782],[-71.292545186,41.487345449],[-71.292434464,41.48738749],[-71.292326385,41.487430153],[-71.292213099,41.487474797],[-71.292092813,41.487520799],[-71.2919734,41.487569411],[-71.291852262,41.487615458],[-71.291785072,41.487635531],[-71.291717032,41.487654961],[-71.29164899,41.487675055],[-71.29158183,41.487695128],[-71.291452774,41.487734596],[-71.29132533,41.487764851],[-71.291198747,41.487791836],[-71.291085295,41.487821384],[-71.290978865,41.487852202],[-71.290863629,41.487878431],[-71.290734408,41.487902804],[-71.290602593,41.487929779],[-71.290481361,41.487966585],[-71.290357573,41.488013289],[-71.290226769,41.488056686],[-71.290095867,41.488092925],[-71.289959713,41.488125838],[-71.289888155,41.488142014],[-71.289814802,41.488158163],[-71.289741482,41.488173672],[-71.289669893,41.488189848],[-71.289600098,41.488206003],[-71.289531125,41.488222138],[-71.289390573,41.488251154],[-71.28931808,41.488264675],[-71.289244733,41.48827888],[-71.289172266,41.488293727],[-71.289100655,41.488307249],[-71.28902731,41.488320791],[-71.288949584,41.488334988],[-71.288872736,41.488349872],[-71.28879856,41.488366683],[-71.288726121,41.488382193],[-71.288655416,41.488397706],[-71.288583802,41.488411891],[-71.288511313,41.488424085],[-71.288445653,41.488435016],[-71.288337446,41.488453497],[-71.288292961,41.488461373],[-71.288221352,41.488474254],[-71.288148889,41.488487797],[-71.288073806,41.488502661],[-71.287996078,41.48851688],[-71.287914883,41.488531116],[-71.287834514,41.488544026],[-71.287757671,41.488557607],[-71.287682564,41.488570435],[-71.28760831,41.488582671],[-71.287530561,41.48859426],[-71.287451958,41.48860651],[-71.28737597,41.488618742],[-71.287299955,41.488630311],[-71.287224849,41.488642568],[-71.28714886,41.48865544],[-71.287070254,41.488668353],[-71.286985535,41.488681301],[-71.286901698,41.488694205],[-71.286819595,41.488707134],[-71.286740103,41.488721349],[-71.286660639,41.48873625],[-71.286584675,41.488750449],[-71.286508711,41.48876467],[-71.286437953,41.488777506],[-71.286310443,41.488798561],[-71.28620302,41.488815537],[-71.286127979,41.488835683],[-71.286053078,41.488868957],[-71.285985144,41.488901535],[-71.285925173,41.488945242],[-71.285893236,41.488991471],[-71.28589287,41.489047388],[-71.285893274,41.489090796],[-71.285916207,41.489255755],[-71.286009462,41.489290478],[-71.286049462,41.489337478],[-71.286145462,41.489430478],[-71.286209462,41.489476478],[-71.286257462,41.489518478],[-71.286305462,41.489569478],[-71.286361462,41.489606478],[-71.286428462,41.489660478],[-71.286483462,41.489702478],[-71.286562462,41.489778478],[-71.286659462,41.489876478],[-71.287030462,41.490326478],[-71.287255462,41.490600479]]]]}}"}, +{"type": "precinct", "typeId": 2106, "areaId": 25825, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":164,\"NAME\":\"2106\",\"SHAPE_Length\":0.31686022158799,\"SHAPE_Area\":-0.00035162425602696},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.337251778,41.469447181],[-71.337323984,41.4694871],[-71.33739014,41.469527194],[-71.337447741,41.469571414],[-71.337510991,41.469605053],[-71.337510478,41.469604473],[-71.337447477,41.469570473],[-71.337415478,41.469546473],[-71.337389477,41.469526473],[-71.337323478,41.469486473],[-71.337251477,41.469446473],[-71.337204422,41.469417455],[-71.337251778,41.469447181]]],[[[-71.337669455,41.469744669],[-71.337669478,41.469744473],[-71.337652296,41.469732079],[-71.337669455,41.469744669]]],[[[-71.336623478,41.469259473],[-71.336548477,41.469287472],[-71.336412477,41.469350473],[-71.336341477,41.469376473],[-71.336261477,41.469399473],[-71.336184477,41.469433473],[-71.336125477,41.469465473],[-71.336048477,41.469484473],[-71.335962478,41.469497473],[-71.335876477,41.469513473],[-71.335805478,41.469534473],[-71.335719477,41.469564473],[-71.335654477,41.469588473],[-71.335584477,41.469615473],[-71.335517477,41.469652473],[-71.335479477,41.469705473],[-71.335444477,41.469760473],[-71.335406477,41.469813473],[-71.335354477,41.469866473],[-71.335238477,41.469955473],[-71.335179477,41.469990473],[-71.335107477,41.470022473],[-71.335045477,41.470055473],[-71.334971477,41.470085473],[-71.334896477,41.470109473],[-71.334830477,41.470148473],[-71.334780477,41.470198473],[-71.334733477,41.470248473],[-71.334682477,41.470299473],[-71.334613477,41.470328473],[-71.334539476,41.470355473],[-71.334480476,41.470395473],[-71.334457477,41.470455473],[-71.334450477,41.470512473],[-71.334456477,41.470572474],[-71.334456513,41.470572531],[-71.334451181,41.47051275],[-71.334458136,41.470456386],[-71.334480577,41.470396315],[-71.334539547,41.470356217],[-71.334613901,41.470328789],[-71.334682936,41.470300209],[-71.334734424,41.470248574],[-71.334780799,41.470198989],[-71.33483064,41.470149364],[-71.334896601,41.470110374],[-71.33497192,41.470085554],[-71.335046128,41.470055517],[-71.335108029,41.470022513],[-71.335180417,41.469990599],[-71.335238765,41.469955737],[-71.33529415,41.469913804],[-71.335355416,41.469867099],[-71.335406787,41.469813474],[-71.335445233,41.469760882],[-71.335480036,41.4697057],[-71.33551757,41.46965249],[-71.335584496,41.469616085],[-71.335654529,41.469589427],[-71.3357203,41.469564867],[-71.335805817,41.469535166],[-71.33587696,41.469514342],[-71.335963112,41.469498387],[-71.336049378,41.469485016],[-71.336125838,41.469466052],[-71.336185151,41.469433798],[-71.336261798,41.469400448],[-71.336342344,41.469376755],[-71.336413287,41.469350738],[-71.336484763,41.469318181],[-71.336549392,41.469287742],[-71.336623685,41.469259625],[-71.336693295,41.469243464],[-71.336782276,41.469250931],[-71.336850006,41.469269461],[-71.336912999,41.4692972],[-71.336983775,41.46932543],[-71.337053499,41.469349085],[-71.337121662,41.469376695],[-71.337184786,41.469406251],[-71.337164478,41.469396473],[-71.337121478,41.469376473],[-71.337053478,41.469348473],[-71.336983477,41.469324473],[-71.336912478,41.469296473],[-71.336849478,41.469268472],[-71.336781478,41.469250472],[-71.336771477,41.469249472],[-71.336692477,41.469242473],[-71.336623478,41.469259473]]],[[[-71.334489477,41.470625473],[-71.33450797,41.470646608],[-71.3344903,41.470626105],[-71.334474163,41.470600879],[-71.334489477,41.470625473]]],[[[-71.334539476,41.470728474],[-71.334551477,41.470782473],[-71.334553477,41.470842473],[-71.334554166,41.470842899],[-71.334552296,41.470783243],[-71.334540211,41.47072868],[-71.334531623,41.470674054],[-71.334531549,41.470673968],[-71.334539476,41.470728474]]],[[[-71.333839352,41.471885925],[-71.333921764,41.471883117],[-71.333996637,41.471867445],[-71.334052401,41.471833357],[-71.334097101,41.47178512],[-71.334133105,41.471737122],[-71.33413889,41.471674238],[-71.334132543,41.471611656],[-71.334127393,41.47155628],[-71.334147421,41.471500872],[-71.334187772,41.471452766],[-71.334224111,41.47139235],[-71.334261561,41.471337149],[-71.334301999,41.471290987],[-71.334348402,41.47124273],[-71.334418811,41.471224558],[-71.334489624,41.471214871],[-71.334567156,41.471181478],[-71.334629477,41.47113935],[-71.334674465,41.471097036],[-71.334691083,41.471042995],[-71.334684764,41.470981077],[-71.33467242,41.470920636],[-71.334640752,41.470898754],[-71.334671477,41.470920473],[-71.334684477,41.470980474],[-71.334690477,41.471042473],[-71.334673477,41.471096473],[-71.334629477,41.471138474],[-71.334566477,41.471181473],[-71.334489477,41.471214474],[-71.334418477,41.471224473],[-71.334347477,41.471242473],[-71.334301477,41.471290473],[-71.334261477,41.471336473],[-71.334223477,41.471391474],[-71.334187477,41.471452473],[-71.334146477,41.471500473],[-71.334126477,41.471555473],[-71.334138477,41.471673473],[-71.334132476,41.471736473],[-71.334096477,41.471784473],[-71.334051476,41.471832473],[-71.333996476,41.471866473],[-71.333921477,41.471882473],[-71.333838476,41.471885473],[-71.333760476,41.471881473],[-71.333716724,41.471866557],[-71.333716858,41.47186688],[-71.333761002,41.471882084],[-71.333839352,41.471885925]]],[[[-71.333509678,41.471895809],[-71.333581101,41.47186195],[-71.333639334,41.471825122],[-71.333691814,41.47180827],[-71.333691477,41.471807473],[-71.333638477,41.471824473],[-71.333580477,41.471861473],[-71.333509476,41.471895474],[-71.333435476,41.471884473],[-71.333370763,41.47186257],[-71.33337086,41.471862835],[-71.333436209,41.471885342],[-71.333509678,41.471895809]]],[[[-71.331436476,41.471832474],[-71.331355476,41.471862473],[-71.331270476,41.471891474],[-71.331187476,41.471915474],[-71.331102476,41.471945473],[-71.331030475,41.471981473],[-71.330959476,41.472012474],[-71.330884476,41.472049474],[-71.330745501,41.472109463],[-71.330746191,41.472109545],[-71.330819464,41.472078252],[-71.330885095,41.472050401],[-71.330959843,41.472013164],[-71.331031382,41.471981892],[-71.33110272,41.471946067],[-71.331188214,41.471915776],[-71.331270528,41.471892043],[-71.331356049,41.471863009],[-71.331437223,41.471833466],[-71.331524576,41.471824651],[-71.331611538,41.471826311],[-71.331700942,41.471823972],[-71.331784091,41.471818559],[-71.331864643,41.471794251],[-71.331940444,41.471760903],[-71.332007041,41.471735638],[-71.332073798,41.471695347],[-71.33208954,41.471640047],[-71.332108314,41.471576152],[-71.332150343,41.471526746],[-71.332207839,41.471493233],[-71.332270033,41.471465468],[-71.332343489,41.471456999],[-71.332430206,41.47143517],[-71.332506773,41.471399193],[-71.332570439,41.471366787],[-71.332642075,41.47135644],[-71.332712657,41.47134218],[-71.332781926,41.471318176],[-71.332855342,41.471289466],[-71.332914658,41.471257214],[-71.332971189,41.471220429],[-71.333030218,41.471181659],[-71.333094171,41.471155154],[-71.333153486,41.471123542],[-71.333208876,41.471080924],[-71.333269927,41.471048011],[-71.333350489,41.471042639],[-71.333422568,41.471061016],[-71.333483148,41.471093419],[-71.333530481,41.471136578],[-71.333530476,41.471136474],[-71.333482477,41.471092473],[-71.333422477,41.471060474],[-71.333350476,41.471042473],[-71.333269477,41.471047473],[-71.333208477,41.471080473],[-71.333153477,41.471123473],[-71.333093477,41.471154474],[-71.333029476,41.471181473],[-71.332914477,41.471256473],[-71.332854476,41.471288473],[-71.332781477,41.471317473],[-71.332712476,41.471341473],[-71.332641476,41.471355473],[-71.332569476,41.471366473],[-71.332506476,41.471398473],[-71.332429477,41.471434473],[-71.332343476,41.471456473],[-71.332269476,41.471464474],[-71.332207476,41.471492473],[-71.332149476,41.471526474],[-71.332107476,41.471575473],[-71.332073476,41.471694473],[-71.332006476,41.471735473],[-71.331939476,41.471760474],[-71.331864476,41.471793473],[-71.331783476,41.471818474],[-71.331700476,41.471823473],[-71.331611476,41.471825473],[-71.331524476,41.471824473],[-71.331436476,41.471832474]]],[[[-71.330041475,41.472433473],[-71.329974476,41.472463474],[-71.329919475,41.472506473],[-71.329895476,41.472560474],[-71.329882475,41.472613474],[-71.329853476,41.472667474],[-71.329793476,41.472703473],[-71.329737476,41.472739473],[-71.329688475,41.472782473],[-71.329644475,41.472829474],[-71.329606475,41.472880474],[-71.329573475,41.472942474],[-71.329544476,41.472994473],[-71.329483476,41.473044474],[-71.329410475,41.473088474],[-71.329353475,41.473132474],[-71.329289476,41.473172474],[-71.329220475,41.473219474],[-71.329166475,41.473258474],[-71.329106475,41.473292474],[-71.329035475,41.473325473],[-71.328880475,41.473385474],[-71.328797475,41.473409474],[-71.328718475,41.473424474],[-71.328637475,41.473431474],[-71.328559475,41.473436474],[-71.328490475,41.473453474],[-71.328424475,41.473482474],[-71.328370475,41.473519473],[-71.328319475,41.473564474],[-71.328267475,41.473613474],[-71.328222475,41.473664474],[-71.328187475,41.473716474],[-71.328152475,41.473771473],[-71.328137475,41.473834474],[-71.328165475,41.473889474],[-71.328165733,41.473889691],[-71.328138212,41.473835204],[-71.328152671,41.473772081],[-71.328188364,41.473716926],[-71.328223349,41.473665041],[-71.328267912,41.473613581],[-71.328319523,41.473564533],[-71.328370483,41.473520104],[-71.328425254,41.473483365],[-71.328490831,41.473454212],[-71.328559539,41.47343675],[-71.328637518,41.473432109],[-71.328718849,41.473424775],[-71.328798132,41.473410279],[-71.328881272,41.473385909],[-71.328954692,41.473357225],[-71.329035752,41.473325716],[-71.329107208,41.473292477],[-71.329166501,41.473258901],[-71.329221157,41.473219577],[-71.329290305,41.473173367],[-71.329354452,41.473132479],[-71.329410668,41.473089201],[-71.329484249,41.473045468],[-71.32954535,41.472994879],[-71.329574252,41.472943144],[-71.329607012,41.472880871],[-71.329644609,41.472829561],[-71.329688489,41.472782719],[-71.329737831,41.472740254],[-71.329793481,41.472704179],[-71.32985351,41.472667973],[-71.329883207,41.472614249],[-71.329896391,41.472560981],[-71.329919977,41.472506791],[-71.329975311,41.472463512],[-71.330041737,41.472434359],[-71.330124428,41.472418472],[-71.330201277,41.472426933],[-71.330268615,41.472455917],[-71.330336574,41.472422101],[-71.330349413,41.472361011],[-71.330381436,41.472301368],[-71.330445725,41.472263727],[-71.33050922,41.47222748],[-71.330559774,41.472174519],[-71.330611669,41.472132011],[-71.330669313,41.472100444],[-71.330744285,41.472109319],[-71.330668476,41.472099473],[-71.330611476,41.472131474],[-71.330559476,41.472174473],[-71.330508475,41.472227474],[-71.330380476,41.472300474],[-71.330348475,41.472360474],[-71.330336476,41.472421474],[-71.330268475,41.472455474],[-71.330200476,41.472426473],[-71.330123476,41.472417474],[-71.330041475,41.472433473]]],[[[-71.328216475,41.473932474],[-71.328266475,41.473979474],[-71.328266883,41.4739797],[-71.328217442,41.473933161],[-71.328198201,41.473917066],[-71.328216475,41.473932474]]],[[[-71.328379475,41.474057474],[-71.328379475,41.474112474],[-71.328388475,41.474149474],[-71.3283887,41.474149887],[-71.328380352,41.474113185],[-71.328380408,41.474057611],[-71.328358275,41.474038924],[-71.328379475,41.474057474]]],[[[-71.32825683,41.474310004],[-71.328336091,41.474292283],[-71.328386298,41.47424552],[-71.328398189,41.474233669],[-71.328408267,41.474217309],[-71.32841128,41.474193208],[-71.328403209,41.474177216],[-71.328410475,41.474192474],[-71.328407475,41.474216474],[-71.328385475,41.474245474],[-71.328335475,41.474291474],[-71.328256475,41.474309474],[-71.328184475,41.474307474],[-71.328110475,41.474288474],[-71.328040475,41.474273474],[-71.327962475,41.474244474],[-71.327925128,41.474211277],[-71.32796313,41.474245437],[-71.328040688,41.474273889],[-71.328111074,41.474289409],[-71.328184979,41.474308158],[-71.32825683,41.474310004]]],[[[-71.336209537,41.474217544],[-71.336285203,41.474238189],[-71.336364469,41.47426602],[-71.336441148,41.474295128],[-71.336510045,41.474323036],[-71.336561596,41.474363913],[-71.336561478,41.474363474],[-71.336509477,41.474322474],[-71.336440478,41.474294474],[-71.336363478,41.474265474],[-71.336284478,41.474237474],[-71.336209478,41.474217474],[-71.336175485,41.474209569],[-71.336209537,41.474217544]]],[[[-71.337348478,41.474512473],[-71.337532478,41.474202473],[-71.337608478,41.474052474],[-71.337699478,41.473834473],[-71.337730478,41.473762474],[-71.337760478,41.473689474],[-71.337791478,41.473625474],[-71.337821478,41.473557473],[-71.337844478,41.473489474],[-71.337867478,41.473425473],[-71.337883478,41.473362473],[-71.337905478,41.473299474],[-71.337928478,41.473249473],[-71.337959478,41.473203474],[-71.337990479,41.473153473],[-71.338020478,41.473085474],[-71.338096478,41.472948474],[-71.338127478,41.472898473],[-71.338203479,41.472797473],[-71.338264478,41.472719473],[-71.338325478,41.472633474],[-71.338386478,41.472555474],[-71.338447478,41.472468473],[-71.338508478,41.472390473],[-71.338569478,41.472303474],[-71.338623478,41.472217473],[-71.338684478,41.472130474],[-71.338760478,41.472029473],[-71.338516479,41.472021473],[-71.338279478,41.472003473],[-71.338035478,41.471995474],[-71.337890478,41.471975474],[-71.337600478,41.471954474],[-71.337539478,41.471987473],[-71.337494478,41.471974474],[-71.337455478,41.471957474],[-71.337394478,41.471926473],[-71.337341478,41.471892473],[-71.337310477,41.471852473],[-71.337288478,41.471812473],[-71.337257478,41.471731473],[-71.336936478,41.470630473],[-71.336913611,41.470485321],[-71.336846926,41.470522188],[-71.336836583,41.470523774],[-71.336774741,41.47055806],[-71.336704172,41.470591922],[-71.336643183,41.4706255],[-71.336577411,41.470650107],[-71.336516682,41.470688945],[-71.336493332,41.470748374],[-71.336516338,41.470813747],[-71.33654385,41.470864672],[-71.336571481,41.470916878],[-71.336601275,41.470979492],[-71.33661251,41.471034076],[-71.336612663,41.471094179],[-71.33659528,41.471150827],[-71.336559971,41.471213852],[-71.336533835,41.471268772],[-71.33651245,41.471332709],[-71.336479104,41.471400883],[-71.336458629,41.471465485],[-71.336480639,41.471528272],[-71.33651926,41.471574981],[-71.33654647,41.471637661],[-71.336535991,41.471693472],[-71.336497807,41.471750639],[-71.336477667,41.471803463],[-71.336495327,41.471866381],[-71.336534156,41.471879083],[-71.336613031,41.471856119],[-71.336686195,41.471879047],[-71.336758998,41.47191245],[-71.336822569,41.471953249],[-71.336879407,41.471999481],[-71.336946878,41.472049342],[-71.337013351,41.47209728],[-71.337068965,41.472134386],[-71.337132623,41.472177151],[-71.337189174,41.472216843],[-71.33724743,41.472255209],[-71.337312966,41.47230118],[-71.337368809,41.47234414],[-71.337416867,41.472387318],[-71.337461008,41.472440439],[-71.337497595,41.472498946],[-71.337525197,41.472551152],[-71.337560223,41.472613614],[-71.337588459,41.47267952],[-71.337610296,41.472739104],[-71.33759683,41.472785832],[-71.337564524,41.472839622],[-71.337602557,41.472891522],[-71.337669799,41.472936214],[-71.337710952,41.472980823],[-71.337724743,41.473035364],[-71.337708821,41.473103746],[-71.337681181,41.473163947],[-71.337657745,41.473221409],[-71.33761715,41.473282575],[-71.33758405,41.473337668],[-71.337548017,41.473385667],[-71.337510225,41.473432383],[-71.337467664,41.473489041],[-71.337427139,41.473533878],[-71.337387553,41.473580019],[-71.337341916,41.47362629],[-71.337276443,41.473676374],[-71.337222743,41.473736583],[-71.337162558,41.473787796],[-71.337103225,41.473839032],[-71.337069836,41.473887584],[-71.337023317,41.473933876],[-71.336968579,41.473971259],[-71.336948716,41.47400979],[-71.336942219,41.474017785],[-71.336886795,41.474061937],[-71.336832224,41.474105473],[-71.336790049,41.474116986],[-71.336732617,41.474100689],[-71.336694576,41.474149234],[-71.336652218,41.474197201],[-71.336617463,41.474196351],[-71.336611533,41.474196229],[-71.336577751,41.474195403],[-71.336509896,41.474176599],[-71.336438524,41.474153284],[-71.336358754,41.474144366],[-71.336286657,41.474131479],[-71.336217123,41.474115279],[-71.336155455,41.47410291],[-71.336131361,41.474155226],[-71.336131327,41.474155434],[-71.336173478,41.474153474],[-71.337348478,41.474512473]]],[[[-71.327035234,41.474531521],[-71.327035474,41.474531475],[-71.326990696,41.474422515],[-71.327035234,41.474531521]]],[[[-71.327533475,41.474156474],[-71.327468475,41.474162474],[-71.327130474,41.474238474],[-71.327070474,41.474319474],[-71.327184475,41.474652474],[-71.327033588,41.474673458],[-71.327033915,41.474674321],[-71.327184982,41.47465321],[-71.327071439,41.474319892],[-71.327131376,41.474239205],[-71.327469205,41.474163417],[-71.327533993,41.474156882],[-71.327603178,41.474154859],[-71.327680281,41.474159891],[-71.327819906,41.474175995],[-71.327909193,41.474197113],[-71.327908474,41.474196474],[-71.327819475,41.474175474],[-71.327679475,41.474159474],[-71.327602475,41.474154474],[-71.327533475,41.474156474]]],[[[-71.323476604,41.476179965],[-71.323539462,41.476218842],[-71.323476474,41.476179475],[-71.323361474,41.476145475],[-71.323204474,41.476148475],[-71.323165564,41.476129519],[-71.323165863,41.47612986],[-71.323205161,41.476148971],[-71.323215561,41.47614885],[-71.323296881,41.476147351],[-71.323361748,41.476146032],[-71.323476604,41.476179965]]],[[[-71.323614569,41.476293704],[-71.32361683,41.476297825],[-71.323614474,41.476293474],[-71.323606961,41.476283815],[-71.323614569,41.476293704]]],[[[-71.320628765,41.476656288],[-71.320794362,41.476672784],[-71.320986755,41.476687697],[-71.321154989,41.476707399],[-71.321294884,41.476737164],[-71.321364552,41.476759845],[-71.321427416,41.476790429],[-71.321471795,41.476818715],[-71.321426473,41.476789475],[-71.321364473,41.476759474],[-71.321294473,41.476736474],[-71.321154473,41.476706475],[-71.320986472,41.476687475],[-71.320793472,41.476672475],[-71.320628473,41.476655475],[-71.320412473,41.476650475],[-71.320226472,41.476662474],[-71.320106171,41.476672417],[-71.320106369,41.476672785],[-71.320226484,41.47666307],[-71.320413203,41.476651378],[-71.320628765,41.476656288]]],[[[-71.321575884,41.476909926],[-71.321576663,41.476909796],[-71.321575473,41.476909475],[-71.32155229,41.476888157],[-71.321575884,41.476909926]]],[[[-71.321657652,41.476933815],[-71.321686156,41.476930269],[-71.32171447,41.476918237],[-71.321725458,41.476903823],[-71.321726822,41.476882968],[-71.321726502,41.476866707],[-71.321727117,41.476853054],[-71.321753782,41.47684365],[-71.321698,41.476680889],[-71.32168654,41.476623719],[-71.321692156,41.476594202],[-71.321697586,41.476565692],[-71.321724204,41.47650682],[-71.321771483,41.4764432],[-71.321773385,41.476359247],[-71.321844972,41.47634742],[-71.321926748,41.476323784],[-71.322011911,41.476295557],[-71.322081585,41.476271423],[-71.322165917,41.476247059],[-71.322256354,41.476225313],[-71.32235458,41.476202137],[-71.322430491,41.476187709],[-71.322505573,41.476176481],[-71.322578123,41.476167948],[-71.32264979,41.476160008],[-71.322723165,41.476150127],[-71.322800007,41.476140206],[-71.322879487,41.476132872],[-71.322951179,41.476126899],[-71.323047111,41.476119386],[-71.323125711,41.47611141],[-71.323151682,41.476113712],[-71.323151473,41.476113474],[-71.323125474,41.476110475],[-71.323046474,41.476118474],[-71.322799473,41.476139474],[-71.322649473,41.476159475],[-71.322505474,41.476176474],[-71.322430473,41.476187475],[-71.322354473,41.476201475],[-71.322255473,41.476224475],[-71.322165473,41.476246475],[-71.322081473,41.476270474],[-71.322011473,41.476295475],[-71.321926473,41.476323475],[-71.321844473,41.476346474],[-71.321772473,41.476358475],[-71.321771473,41.476442475],[-71.321723473,41.476506474],[-71.321697473,41.476565474],[-71.321686473,41.476623474],[-71.321697473,41.476680474],[-71.321753473,41.476843475],[-71.321726473,41.476852474],[-71.321726473,41.476882475],[-71.321713473,41.476917475],[-71.321685473,41.476929475],[-71.321657473,41.476933474],[-71.321627473,41.476923475],[-71.321625599,41.47692297],[-71.321628059,41.47692437],[-71.321657652,41.476933815]]],[[[-71.319829473,41.476666475],[-71.319772473,41.476692475],[-71.319700472,41.476723475],[-71.319582472,41.476799475],[-71.319526472,41.476837475],[-71.319465472,41.476887475],[-71.319400472,41.476936475],[-71.319338472,41.476985475],[-71.319287473,41.477035475],[-71.319229473,41.477072475],[-71.319156472,41.477111475],[-71.319097472,41.477160475],[-71.319052472,41.477203475],[-71.318990472,41.477236475],[-71.318981472,41.477241475],[-71.318980037,41.477244207],[-71.318982357,41.477241652],[-71.31905347,41.477203823],[-71.319097684,41.47716108],[-71.319157362,41.477112254],[-71.319230212,41.477073124],[-71.319287486,41.477036073],[-71.319339352,41.476986069],[-71.319400766,41.476936606],[-71.319465642,41.476888429],[-71.319527027,41.476838303],[-71.319583422,41.476799992],[-71.319642431,41.476762258],[-71.319701441,41.476723906],[-71.319772716,41.476693212],[-71.319830141,41.476667275],[-71.320088823,41.476641135],[-71.320088472,41.476640474],[-71.319829473,41.476666475]]],[[[-71.31703968,41.477344604],[-71.317075248,41.4773488],[-71.317116947,41.477357466],[-71.31715523,41.477370155],[-71.317116472,41.477356475],[-71.317074471,41.477348475],[-71.317039472,41.477344475],[-71.316999472,41.477341475],[-71.316959472,41.477341475],[-71.316912471,41.477347475],[-71.316893944,41.477350626],[-71.316912526,41.477347901],[-71.316960012,41.477342168],[-71.31699982,41.477341774],[-71.31703968,41.477344604]]],[[[-71.323675448,41.477382572],[-71.323651221,41.477406003],[-71.323693184,41.477378326],[-71.323675448,41.477382572]]],[[[-71.335212534,41.477492004],[-71.335213417,41.477496548],[-71.335212477,41.477491475],[-71.335211421,41.477485133],[-71.335212534,41.477492004]]],[[[-71.323662724,41.477488143],[-71.323673696,41.477497575],[-71.323662473,41.477487475],[-71.323660198,41.477483411],[-71.323662724,41.477488143]]],[[[-71.323706388,41.477512407],[-71.323715907,41.47751233],[-71.323759182,41.47751187],[-71.323784991,41.477503791],[-71.323804619,41.477487972],[-71.323819015,41.477472168],[-71.323822138,41.477453282],[-71.323821871,41.477439605],[-71.323819979,41.477430523],[-71.323809208,41.477410449],[-71.323830867,41.47736273],[-71.323851905,41.477286353],[-71.323871141,41.477201558],[-71.323883415,41.477116157],[-71.323890273,41.47702041],[-71.323892173,41.476936434],[-71.323886848,41.476836278],[-71.323879016,41.476741356],[-71.323858686,41.476623749],[-71.323833341,41.47651661],[-71.323802422,41.47639],[-71.323789713,41.476310781],[-71.323783424,41.476252247],[-71.323782577,41.476206049],[-71.323787886,41.476165645],[-71.323809486,41.476117262],[-71.323853083,41.47604259],[-71.323916736,41.47592804],[-71.323967612,41.475871537],[-71.324041099,41.475775092],[-71.32406411,41.475755985],[-71.324087069,41.475733608],[-71.324111867,41.475717065],[-71.324159885,41.475693788],[-71.32428592,41.47563063],[-71.32476983,41.475358071],[-71.325357182,41.475019321],[-71.325334124,41.474942763],[-71.325552732,41.474784948],[-71.32580408,41.474619567],[-71.325990901,41.47452128],[-71.326259148,41.474381149],[-71.326373393,41.474335672],[-71.326445513,41.474304975],[-71.32652662,41.474291101],[-71.326600871,41.474282522],[-71.32668808,41.4742725],[-71.326766679,41.474263859],[-71.326839173,41.474252693],[-71.326888256,41.474239822],[-71.326915496,41.474239526],[-71.326915474,41.474239474],[-71.326887475,41.474239474],[-71.326838474,41.474252474],[-71.326766474,41.474263474],[-71.326526474,41.474290474],[-71.326512474,41.474292474],[-71.326445475,41.474304474],[-71.326372474,41.474335474],[-71.326258474,41.474380474],[-71.325990474,41.474520474],[-71.325803474,41.474619474],[-71.325552474,41.474784475],[-71.325333474,41.474942474],[-71.325356474,41.475018475],[-71.325215474,41.475100474],[-71.325044474,41.475198474],[-71.324769474,41.475357474],[-71.324285474,41.475630474],[-71.324159474,41.475693474],[-71.324111474,41.475716475],[-71.324086473,41.475733475],[-71.324063474,41.475755475],[-71.324040474,41.475774475],[-71.323967474,41.475871475],[-71.323916473,41.475927475],[-71.323852473,41.476042474],[-71.323809474,41.476116474],[-71.323787474,41.476165475],[-71.323782474,41.476205475],[-71.323782474,41.476251474],[-71.323789474,41.476310474],[-71.323801474,41.476389474],[-71.323858474,41.476623474],[-71.323878474,41.476740474],[-71.323886474,41.476835474],[-71.323891473,41.476935474],[-71.323889474,41.477019475],[-71.323882474,41.477115475],[-71.323870474,41.477201475],[-71.323851474,41.477285474],[-71.323830474,41.477362474],[-71.323808474,41.477409475],[-71.323819474,41.477430475],[-71.323821474,41.477452475],[-71.323818474,41.477471475],[-71.323804474,41.477487475],[-71.323798473,41.477491475],[-71.323784474,41.477503475],[-71.323758473,41.477511475],[-71.323705474,41.477511475],[-71.323685843,41.477506354],[-71.323706388,41.477512407]]],[[[-71.317720472,41.477516475],[-71.317823185,41.47750173],[-71.317917972,41.477480611],[-71.318051769,41.477461612],[-71.318135675,41.477460075],[-71.318215263,41.4774586],[-71.31830445,41.477460914],[-71.318390302,41.477470426],[-71.318673212,41.477513022],[-71.318738937,41.477509763],[-71.318792261,41.477493587],[-71.318822261,41.477476985],[-71.318846849,41.477449373],[-71.318870688,41.477428348],[-71.31888053,41.477399593],[-71.318916537,41.477333463],[-71.318945972,41.47733447],[-71.318950565,41.477301247],[-71.318950367,41.477301172],[-71.318945472,41.477333475],[-71.318916472,41.477332475],[-71.318880472,41.477399474],[-71.318870472,41.477427475],[-71.318846472,41.477448475],[-71.318821472,41.477476475],[-71.318791472,41.477493475],[-71.318738472,41.477509475],[-71.318672472,41.477512475],[-71.318389472,41.477469475],[-71.318303472,41.477460475],[-71.318214472,41.477458475],[-71.318051472,41.477461475],[-71.317917472,41.477480475],[-71.317822472,41.477501475],[-71.317720472,41.477516475]]],[[[-71.317720472,41.477516475],[-71.317641472,41.477516475],[-71.317552472,41.477508475],[-71.317498471,41.477505475],[-71.317421845,41.477487562],[-71.317422234,41.477487715],[-71.317498726,41.47750579],[-71.317553303,41.477509101],[-71.317641744,41.477517292],[-71.317720472,41.477516475]]],[[[-71.316330471,41.477446475],[-71.316280471,41.477485475],[-71.316222471,41.477519475],[-71.316222525,41.477519723],[-71.316280729,41.477485944],[-71.316331077,41.477447031],[-71.316331481,41.477446303],[-71.316330471,41.477446475]]],[[[-71.325813668,41.477512415],[-71.325827933,41.477534392],[-71.325855765,41.477588773],[-71.32588432,41.477634031],[-71.325957856,41.477632632],[-71.326007264,41.477590443],[-71.326054218,41.477556118],[-71.32609075,41.477518598],[-71.326087339,41.477475071],[-71.326053718,41.477436347],[-71.325993703,41.477373866],[-71.32598835,41.477271743],[-71.325985103,41.477189749],[-71.325973826,41.477142368],[-71.325941887,41.477145293],[-71.325912823,41.477165146],[-71.325819901,41.477194782],[-71.32577919,41.47719193],[-71.325728394,41.477207428],[-71.325700743,41.477255871],[-71.325676345,41.477338783],[-71.325683269,41.477387553],[-71.325701049,41.477414018],[-71.325714356,41.477430138],[-71.325717156,41.477440525],[-71.325706116,41.477452378],[-71.325617944,41.477457207],[-71.325525078,41.477443207],[-71.325445172,41.477427123],[-71.325329164,41.477379537],[-71.325259499,41.477354869],[-71.325218811,41.477354647],[-71.325174684,41.477355129],[-71.325134395,41.477376382],[-71.325094904,41.477394367],[-71.325078214,41.477426428],[-71.325083865,41.477451114],[-71.325104846,41.477463221],[-71.325129378,41.477477941],[-71.32515204,41.477486826],[-71.32521072,41.477525268],[-71.325258474,41.477532568],[-71.325303855,41.477506748],[-71.325325133,41.477487638],[-71.32539675,41.477475831],[-71.325522385,41.477483615],[-71.325685237,41.477492964],[-71.325771755,41.477492683],[-71.325813668,41.477512415]]],[[[-71.335604311,41.479465084],[-71.33568166,41.479483787],[-71.335747256,41.479520222],[-71.335801787,41.479567137],[-71.335803978,41.479571302],[-71.335801478,41.479566475],[-71.335746478,41.479519475],[-71.335681478,41.479483475],[-71.335604478,41.479464475],[-71.335523478,41.479449474],[-71.335445478,41.479451475],[-71.335366478,41.479457475],[-71.335334937,41.479458461],[-71.335335036,41.479458821],[-71.335367031,41.479457838],[-71.335445688,41.479452438],[-71.335523546,41.479450308],[-71.335604311,41.479465084]]],[[[-71.335989516,41.480025286],[-71.336010507,41.480082972],[-71.336015853,41.480101711],[-71.336010478,41.480082475],[-71.335989478,41.480024475],[-71.335976213,41.479991123],[-71.335989516,41.480025286]]],[[[-71.336061666,41.48027314],[-71.336062133,41.480275632],[-71.336060811,41.480268011],[-71.336061666,41.48027314]]],[[[-71.336118603,41.480355188],[-71.336162119,41.4803684],[-71.336208244,41.480372125],[-71.336262924,41.480401547],[-71.336207478,41.480371475],[-71.336161478,41.480367475],[-71.336118478,41.480354475],[-71.336085025,41.480336681],[-71.336118603,41.480355188]]],[[[-71.33633104,41.480435192],[-71.336407652,41.480469103],[-71.336471888,41.480502814],[-71.336519748,41.480539879],[-71.336519478,41.480539475],[-71.336471478,41.480502475],[-71.336407478,41.480468475],[-71.336330478,41.480434475],[-71.3362668,41.48040363],[-71.33633104,41.480435192]]],[[[-71.336579875,41.480638175],[-71.336589216,41.480648342],[-71.336606301,41.480664298],[-71.336579478,41.480637475],[-71.336579875,41.480638175]]],[[[-71.337336166,41.480755061],[-71.337417696,41.480781088],[-71.337507622,41.480817967],[-71.337561662,41.480844733],[-71.337561479,41.480844475],[-71.337507478,41.480817475],[-71.337417478,41.480780475],[-71.337335478,41.480754475],[-71.337232478,41.480740475],[-71.337144478,41.480754475],[-71.337066478,41.480792475],[-71.336999478,41.480818475],[-71.336880478,41.480838475],[-71.336871656,41.480840385],[-71.336881238,41.480838921],[-71.336935819,41.480830194],[-71.336999954,41.480819421],[-71.337067291,41.480792964],[-71.337145332,41.480755088],[-71.337233409,41.480740964],[-71.337336166,41.480755061]]],[[[-71.336663483,41.480893649],[-71.336663478,41.480893475],[-71.336659568,41.480876876],[-71.336663483,41.480893649]]],[[[-71.336783478,41.480859475],[-71.336814478,41.481066475],[-71.336826478,41.481210475],[-71.336834478,41.481447475],[-71.336679947,41.481460436],[-71.336679962,41.481460952],[-71.336834793,41.481447633],[-71.336827113,41.481211466],[-71.336814703,41.481067093],[-71.336784141,41.480860281],[-71.336784003,41.480859361],[-71.336783478,41.480859475]]],[[[-71.337687478,41.481204475],[-71.337634479,41.481306475],[-71.337526478,41.481506475],[-71.337483479,41.481590476],[-71.337444479,41.481675475],[-71.337421479,41.481717475],[-71.337376478,41.481728475],[-71.337331478,41.481783476],[-71.336692478,41.481789475],[-71.336692486,41.481790459],[-71.33733195,41.481784023],[-71.337376945,41.481729267],[-71.337388382,41.481728666],[-71.337422015,41.481717576],[-71.337444808,41.481675504],[-71.337483672,41.481591238],[-71.337527342,41.481507069],[-71.337578889,41.481410081],[-71.337635318,41.481306628],[-71.337687943,41.481204611],[-71.337747933,41.481128679],[-71.337747478,41.481128475],[-71.337687478,41.481204475]]],[[[-71.327083369,41.492082878],[-71.327083672,41.492106092],[-71.327088049,41.492427788],[-71.327028097,41.492461591],[-71.326986599,41.492510836],[-71.326972197,41.492573478],[-71.326948192,41.49263295],[-71.326919787,41.492687933],[-71.326920827,41.492743234],[-71.326929649,41.492799805],[-71.326933356,41.492858334],[-71.326934417,41.492916883],[-71.326938335,41.492987786],[-71.326939746,41.493063259],[-71.326944436,41.493129589],[-71.326953289,41.493186137],[-71.326957818,41.493244645],[-71.326968963,41.493377285],[-71.32704945,41.493376446],[-71.327156738,41.493374663],[-71.32715469,41.493264038],[-71.327160204,41.493260821],[-71.327214646,41.493228908],[-71.327301561,41.49320132],[-71.327382637,41.493184838],[-71.327472933,41.493155906],[-71.327543555,41.49313568],[-71.327609564,41.493100468],[-71.327666823,41.493060806],[-71.327724027,41.493019222],[-71.327776834,41.492972418],[-71.327822681,41.492923774],[-71.32786063,41.492870658],[-71.327895196,41.492820235],[-71.327940908,41.49276505],[-71.327996168,41.49271045],[-71.328053134,41.49265519],[-71.328107405,41.492595375],[-71.328159997,41.492537547],[-71.328197095,41.492484429],[-71.328231446,41.492422914],[-71.328269316,41.492365247],[-71.328310813,41.492315979],[-71.328332255,41.492259133],[-71.328352713,41.492195127],[-71.32837674,41.492138286],[-71.3283885,41.492108069],[-71.328400688,41.492076824],[-71.328423812,41.492016733],[-71.328450376,41.491955253],[-71.328476967,41.491895098],[-71.328501022,41.491839514],[-71.328533586,41.491774749],[-71.328563562,41.491711307],[-71.32858154,41.491653175],[-71.328590899,41.491599056],[-71.328589862,41.491542474],[-71.328584502,41.491487212],[-71.328565034,41.491418413],[-71.328553542,41.49135866],[-71.328546369,41.491298867],[-71.32853058,41.4912424],[-71.328497645,41.491193935],[-71.328249682,41.4896645],[-71.328248275,41.489656036],[-71.328251747,41.489654051],[-71.328286414,41.489610719],[-71.328275002,41.489555516],[-71.328255535,41.48948674],[-71.328243188,41.489428289],[-71.328231699,41.489367895],[-71.328227058,41.489305475],[-71.328225912,41.489244319],[-71.328228261,41.48918374],[-71.328243513,41.489121099],[-71.328265836,41.489064255],[-71.328284609,41.48900418],[-71.328300718,41.488939574],[-71.328319361,41.48887106],[-71.328334774,41.488816241],[-71.328460343,41.488246325],[-71.32846919,41.488178277],[-71.328476633,41.488112468],[-71.328486525,41.488040785],[-71.328500714,41.48796577],[-71.328510074,41.487911033],[-71.328521141,41.487854927],[-71.328533596,41.487779954],[-71.328544452,41.487711498],[-71.328553657,41.487646309],[-71.32856299,41.487590246],[-71.328568777,41.487529649],[-71.32855299,41.487472565],[-71.328546777,41.487464185],[-71.328602409,41.487151154],[-71.328543073,41.485592429],[-71.328526619,41.485592564],[-71.328490101,41.484931726],[-71.328439358,41.484625055],[-71.32842864,41.484560751],[-71.32837225,41.484319892],[-71.328284685,41.484033794],[-71.328263487,41.483964352],[-71.328189442,41.483753014],[-71.32814526,41.483657786],[-71.328065882,41.483531036],[-71.327999059,41.483429553],[-71.327928988,41.483337236],[-71.327899152,41.483268581],[-71.327883288,41.4832069],[-71.327869078,41.483140647],[-71.327817377,41.482921864],[-71.327836953,41.482902797],[-71.327875883,41.4828562],[-71.327922919,41.482826402],[-71.327962117,41.482793436],[-71.327946281,41.482778616],[-71.327912708,41.482788743],[-71.32780855,41.482832635],[-71.327800238,41.482836144],[-71.327062447,41.482862115],[-71.327015837,41.482868472],[-71.327004773,41.482877695],[-71.326960055,41.482847599],[-71.326916723,41.482890987],[-71.32694781,41.482911823],[-71.326912856,41.482961329],[-71.326927785,41.483019739],[-71.326954981,41.483085851],[-71.326985454,41.483143461],[-71.327035691,41.483191106],[-71.327082378,41.483235499],[-71.327132369,41.483272692],[-71.327145414,41.485322049],[-71.327044645,41.48604555],[-71.327016609,41.486260601],[-71.326980761,41.48647381],[-71.326113917,41.487520978],[-71.326004419,41.487590475],[-71.325404716,41.487549269],[-71.325396232,41.488024472],[-71.325565189,41.488035706],[-71.325573685,41.48783906],[-71.325763525,41.487854648],[-71.325761664,41.487754451],[-71.326030304,41.487771827],[-71.326261557,41.48782599],[-71.326265578,41.487903388],[-71.326284951,41.488154416],[-71.326720744,41.488781117],[-71.32683626,41.490152553],[-71.326917732,41.490157547],[-71.326941633,41.490605721],[-71.326735718,41.490889662],[-71.326744251,41.491305657],[-71.326754477,41.491805817],[-71.326951907,41.491808355],[-71.326952971,41.491865578],[-71.326959635,41.491990458],[-71.327080788,41.491989862],[-71.327083369,41.492082878]]],[[[-71.321475473,41.493303478],[-71.321555474,41.493864478],[-71.321505474,41.493870478],[-71.321505775,41.493871306],[-71.321555738,41.49386495],[-71.321476094,41.493303483],[-71.321456163,41.493300181],[-71.321475473,41.493303478]]],[[[-71.321513473,41.493892478],[-71.321536474,41.493948478],[-71.321537137,41.493948478],[-71.321514691,41.493892079],[-71.321506428,41.493873103],[-71.321513473,41.493892478]]],[[[-71.321630515,41.493948749],[-71.321671474,41.494214478],[-71.321484474,41.494239478],[-71.321470474,41.494263478],[-71.321456474,41.494322478],[-71.321436474,41.494377478],[-71.321447474,41.494597479],[-71.321448107,41.49459741],[-71.321437099,41.494377717],[-71.3214569,41.49432286],[-71.321471388,41.494264129],[-71.321484778,41.494239931],[-71.32167213,41.494215156],[-71.321630884,41.493948748],[-71.321630515,41.493948749]]],[[[-71.314729471,41.492933478],[-71.314781471,41.492987478],[-71.315063472,41.493283478],[-71.315322472,41.493548478],[-71.315437472,41.493667478],[-71.315597472,41.493803478],[-71.315658472,41.493870478],[-71.316101472,41.494306478],[-71.316627472,41.494836478],[-71.316642472,41.494867479],[-71.316985473,41.494766478],[-71.317207472,41.494680478],[-71.317268472,41.494630478],[-71.317291473,41.494611478],[-71.317405472,41.494487478],[-71.317466473,41.494333478],[-71.317489473,41.494220478],[-71.317497472,41.494116478],[-71.317497472,41.493999478],[-71.317489473,41.493878478],[-71.317474473,41.493743478],[-71.317466473,41.493617478],[-71.317443472,41.493541478],[-71.317390473,41.492902478],[-71.317561472,41.492890478],[-71.318732473,41.492803478],[-71.319602473,41.492732478],[-71.320823474,41.492662478],[-71.320907473,41.493304478],[-71.321357473,41.493264478],[-71.321420474,41.493248478],[-71.321434473,41.493296478],[-71.321435229,41.493296607],[-71.321417723,41.493237023],[-71.321418365,41.493224652],[-71.321479571,41.493211665],[-71.321478538,41.493155678],[-71.321474866,41.493097148],[-71.321468525,41.493036029],[-71.321463554,41.492907858],[-71.321414109,41.492902521],[-71.321418334,41.492848486],[-71.321442264,41.492785082],[-71.321455921,41.492729643],[-71.321476574,41.492674742],[-71.321509411,41.492624296],[-71.321538964,41.492584273],[-71.321583822,41.492575995],[-71.321560487,41.492345201],[-71.321621058,41.492297062],[-71.321690692,41.492271624],[-71.321775447,41.492266793],[-71.321863717,41.492267204],[-71.321943351,41.492266344],[-71.322021141,41.492261639],[-71.32209739,41.492264067],[-71.322128778,41.492276122],[-71.322443199,41.492287791],[-71.322419938,41.492106465],[-71.322319584,41.492109489],[-71.321833949,41.492108029],[-71.321820958,41.492097946],[-71.321678514,41.491987309],[-71.321622054,41.491557036],[-71.321692807,41.491544613],[-71.323029732,41.491427754],[-71.323018917,41.491355994],[-71.323014069,41.491237223],[-71.32301317,41.49114286],[-71.322892978,41.49114869],[-71.322438095,41.491171682],[-71.322423004,41.49115103],[-71.322315927,41.491165799],[-71.321621565,41.491203008],[-71.321593029,41.491016528],[-71.321773492,41.4909938],[-71.321768748,41.49097106],[-71.321529239,41.490985303],[-71.321528262,41.490931305],[-71.321604268,41.490922023],[-71.321756298,41.490908057],[-71.321755901,41.490886581],[-71.321567442,41.490897015],[-71.321558223,41.490820341],[-71.321927309,41.490793697],[-71.321941732,41.490824777],[-71.322074862,41.49081492],[-71.322075026,41.490777162],[-71.322194235,41.490763579],[-71.322952413,41.49071265],[-71.322959585,41.490726246],[-71.32303999,41.490720858],[-71.323020475,41.490649474],[-71.322888699,41.489983731],[-71.32281256,41.489986496],[-71.322812961,41.490006645],[-71.32146548,41.490112553],[-71.321418408,41.489908685],[-71.321309533,41.489825841],[-71.321401667,41.489658302],[-71.321391676,41.489586154],[-71.321479577,41.489564404],[-71.321744172,41.489550566],[-71.321816442,41.489527694],[-71.322065255,41.489501641],[-71.322736833,41.489402851],[-71.322604329,41.488838672],[-71.322403041,41.488860294],[-71.322342157,41.488890868],[-71.322257463,41.488896958],[-71.322184846,41.488902312],[-71.322111455,41.488912833],[-71.32203375,41.488921426],[-71.321986177,41.488922588],[-71.321970285,41.488905822],[-71.321839929,41.488926066],[-71.321840142,41.488937113],[-71.32121161,41.489023135],[-71.321211129,41.489043283],[-71.321112857,41.489065154],[-71.320344956,41.489151915],[-71.320219509,41.488639088],[-71.319878427,41.488684294],[-71.319878077,41.488711646],[-71.319480621,41.488750291],[-71.319456018,41.488683518],[-71.319392914,41.48840692],[-71.319309258,41.488422752],[-71.318709235,41.488505832],[-71.318730395,41.48857459],[-71.318902596,41.489321247],[-71.317385972,41.489549241],[-71.317362149,41.489475974],[-71.316956132,41.48797222],[-71.316946326,41.487674231],[-71.317048352,41.487669271],[-71.317048387,41.487624354],[-71.317080415,41.487624016],[-71.317081025,41.487234175],[-71.317155425,41.487232121],[-71.317676516,41.487234503],[-71.31767261,41.487162913],[-71.316536318,41.487172176],[-71.316530687,41.487055072],[-71.316707143,41.487048035],[-71.316711809,41.486924956],[-71.316724767,41.486924177],[-71.316726112,41.48685717],[-71.316883502,41.486848341],[-71.316884179,41.486791716],[-71.31695682,41.486787692],[-71.317206895,41.486785734],[-71.317204486,41.48670118],[-71.317277124,41.486698436],[-71.31773462,41.48667675],[-71.317727368,41.486518706],[-71.317050628,41.486525087],[-71.316703538,41.486524786],[-71.316630845,41.486525563],[-71.31619837,41.486540493],[-71.31619404,41.48644745],[-71.316185263,41.486346054],[-71.316282115,41.486341749],[-71.316970107,41.486335253],[-71.316977525,41.486174397],[-71.316952432,41.486174677],[-71.316947429,41.486136956],[-71.316860972,41.486143725],[-71.316072638,41.486152622],[-71.316073398,41.486099222],[-71.316269691,41.486088718],[-71.316249377,41.485926217],[-71.316543131,41.485899745],[-71.316540373,41.485842474],[-71.316518547,41.485644225],[-71.316423347,41.485645857],[-71.316243456,41.485653574],[-71.316224144,41.485545757],[-71.316088311,41.485547186],[-71.316093424,41.485448853],[-71.316179957,41.485447299],[-71.316568715,41.485455581],[-71.316650075,41.485454728],[-71.316812764,41.485453066],[-71.316885322,41.485445771],[-71.317066196,41.485445213],[-71.317872908,41.485354144],[-71.317869318,41.485300142],[-71.317857552,41.485037964],[-71.317770196,41.485040845],[-71.3170888,41.485075281],[-71.317059185,41.484877774],[-71.316027495,41.484876151],[-71.316025768,41.484830614],[-71.315888923,41.484824884],[-71.315887999,41.484775414],[-71.316031492,41.484764163],[-71.316117918,41.484756754],[-71.316469928,41.484745264],[-71.31647879,41.484708755],[-71.316566171,41.484707819],[-71.316760674,41.484694064],[-71.316753928,41.484562688],[-71.316195332,41.484591276],[-71.316224702,41.484540895],[-71.316345053,41.484356091],[-71.316416812,41.484351426],[-71.316857401,41.484355284],[-71.316954043,41.484338034],[-71.317192227,41.484299717],[-71.317278651,41.48429297],[-71.317749777,41.484263323],[-71.317747892,41.484208684],[-71.317736949,41.48413068],[-71.317664286,41.484132737],[-71.317206038,41.484157716],[-71.317064396,41.484127943],[-71.316528822,41.484136809],[-71.316501315,41.48381814],[-71.316488832,41.483704388],[-71.316667835,41.483696691],[-71.316653144,41.483556886],[-71.315607282,41.483584077],[-71.315570774,41.483341687],[-71.315536384,41.483306915],[-71.315521627,41.48325564],[-71.31553222,41.483220391],[-71.315526658,41.483154723],[-71.315525737,41.483103973],[-71.316278201,41.483075972],[-71.316255073,41.482994838],[-71.316208641,41.482496769],[-71.316291675,41.482493951],[-71.316817351,41.482463732],[-71.316813877,41.482228828],[-71.316828993,41.482109562],[-71.316715744,41.482117913],[-71.316073295,41.482102479],[-71.316072106,41.482038693],[-71.316072664,41.481927408],[-71.31616087,41.481923912],[-71.316906085,41.481927159],[-71.316904662,41.481849102],[-71.316878613,41.481844189],[-71.316863865,41.481703103],[-71.316727865,41.481647907],[-71.31604699,41.481660862],[-71.316046762,41.481601606],[-71.316363373,41.481594427],[-71.316361675,41.481549531],[-71.316271608,41.481544607],[-71.316260134,41.481439935],[-71.316066312,41.481441958],[-71.316066214,41.481390546],[-71.316315342,41.481382734],[-71.316307515,41.481332705],[-71.316077294,41.48133316],[-71.316074658,41.481190012],[-71.316146411,41.481185988],[-71.316261496,41.481184136],[-71.316276653,41.481115024],[-71.316476422,41.481107087],[-71.316485003,41.481008074],[-71.316268198,41.48098623],[-71.316265123,41.480912057],[-71.316069464,41.480908268],[-71.315796022,41.480911078],[-71.315795187,41.480959264],[-71.315744977,41.480959138],[-71.315753136,41.480838008],[-71.315884774,41.480843136],[-71.316541537,41.480836272],[-71.316540375,41.480773835],[-71.316535742,41.480615727],[-71.316459619,41.480616521],[-71.315807687,41.480604433],[-71.315797337,41.480511472],[-71.31560509,41.480505652],[-71.315605819,41.480452275],[-71.315678351,41.480441757],[-71.315770953,41.480442088],[-71.315846726,41.480468007],[-71.315884064,41.480427907],[-71.315968029,41.480428361],[-71.316058923,41.480430656],[-71.316137714,41.480432452],[-71.316215624,41.480434223],[-71.316295378,41.480439908],[-71.316381925,41.480441601],[-71.316459891,41.480444699],[-71.316588919,41.4804479],[-71.316621171,41.480086354],[-71.316521661,41.480087407],[-71.315584332,41.480082844],[-71.315585416,41.480000856],[-71.315698602,41.479991844],[-71.317019537,41.479911026],[-71.316940525,41.479523299],[-71.316883108,41.479318246],[-71.316912308,41.4793056],[-71.316737174,41.478915592],[-71.316373168,41.478932416],[-71.316369659,41.478882988],[-71.316648104,41.478870991],[-71.316425999,41.478466546],[-71.316228846,41.477549318],[-71.316332471,41.478034475],[-71.316425471,41.478466475],[-71.316647472,41.478870475],[-71.316369471,41.478882475],[-71.316372471,41.478931475],[-71.316200471,41.478926475],[-71.315597471,41.478956476],[-71.315399471,41.478964475],[-71.314216471,41.479006475],[-71.314193471,41.478682476],[-71.314186471,41.478615475],[-71.31416347,41.478323475],[-71.314155471,41.478242475],[-71.31414047,41.478076475],[-71.314094471,41.477482475],[-71.314079471,41.477244475],[-71.314056471,41.476951475],[-71.314018471,41.476551475],[-71.31401047,41.476443474],[-71.31398747,41.476196475],[-71.313980471,41.476111474],[-71.313941471,41.475657475],[-71.313941471,41.475612475],[-71.31388847,41.474973475],[-71.313842471,41.474483474],[-71.31381247,41.474227474],[-71.31378947,41.474016474],[-71.31375147,41.473643474],[-71.31374347,41.473580474],[-71.31369747,41.473158474],[-71.31367547,41.472816474],[-71.31339247,41.472795475],[-71.31261447,41.472734474],[-71.31232447,41.472731474],[-71.312210469,41.472728474],[-71.31207247,41.472731474],[-71.311881469,41.472744474],[-71.311470469,41.472793475],[-71.311126469,41.472836474],[-71.310554469,41.472906474],[-71.310142469,41.472955474],[-71.310027469,41.472534474],[-71.309707469,41.471392474],[-71.309524469,41.470684474],[-71.309516469,41.470639474],[-71.309394469,41.470155474],[-71.309349468,41.469944474],[-71.309356469,41.469805474],[-71.309372469,41.469683474],[-71.309379469,41.469624474],[-71.309623469,41.468921473],[-71.309677468,41.468798473],[-71.309677468,41.468722473],[-71.309677468,41.468690473],[-71.309669469,41.468569473],[-71.309532469,41.468004473],[-71.309471469,41.467744474],[-71.309394469,41.467413474],[-71.309104469,41.466234473],[-71.309058468,41.466037473],[-71.309005468,41.465849473],[-71.308906468,41.465454473],[-71.308799468,41.464633473],[-71.308746468,41.464174473],[-71.308715468,41.463905472],[-71.308670468,41.463523472],[-71.308639468,41.463244472],[-71.308547468,41.462593473],[-71.308509468,41.461914472],[-71.308517468,41.461445472],[-71.308517468,41.461279472],[-71.308532468,41.460652472],[-71.308593468,41.460237471],[-71.308693468,41.459523472],[-71.308738467,41.459207471],[-71.308830468,41.458904472],[-71.309058468,41.458152471],[-71.308410467,41.458066472],[-71.308563467,41.456716471],[-71.308669468,41.455728471],[-71.309005468,41.45472147],[-71.309059468,41.454553471],[-71.309066468,41.454535471],[-71.309219468,41.45410047],[-71.309288467,41.453896471],[-71.310272468,41.452530471],[-71.310615468,41.452045471],[-71.311042468,41.45143847],[-71.311046468,41.45120147],[-71.310822739,41.451133073],[-71.310633551,41.451242263],[-71.310620797,41.451269023],[-71.31060422,41.451303804],[-71.31058924,41.451374791],[-71.310569369,41.451434106],[-71.310503064,41.451446896],[-71.310478702,41.451388743],[-71.310458251,41.45136076],[-71.310445468,41.45139847],[-71.310379468,41.45141147],[-71.310355468,41.45135347],[-71.310274468,41.45124247],[-71.310173553,41.451153528],[-71.31012619,41.45114432],[-71.310033321,41.451145402],[-71.309878051,41.451206895],[-71.309781611,41.451244059],[-71.309644419,41.451339727],[-71.309576463,41.4514493],[-71.309570826,41.451516094],[-71.309663923,41.451634578],[-71.309686438,41.45169019],[-71.309676965,41.451748608],[-71.309651042,41.451808736],[-71.309546732,41.45184479],[-71.309445085,41.451863695],[-71.309370505,41.451847357],[-71.309337318,41.451828636],[-71.309327467,41.451830471],[-71.309307765,41.451825882],[-71.309256984,41.451852246],[-71.30918646,41.451924627],[-71.309139518,41.451999678],[-71.309099135,41.452066735],[-71.309050284,41.452118958],[-71.3089887,41.45215913],[-71.308843303,41.452170049],[-71.308727958,41.452174362],[-71.308631307,41.452168987],[-71.308506468,41.452135618],[-71.308497693,41.452130942],[-71.308394467,41.452103471],[-71.308256467,41.45202947],[-71.308136467,41.45181347],[-71.308039467,41.45172247],[-71.308037395,41.451720978],[-71.30803241,41.451721153],[-71.307951424,41.451753996],[-71.307884983,41.451802073],[-71.307802867,41.451867596],[-71.307785769,41.451892861],[-71.307775793,41.451997659],[-71.307774921,41.452035576],[-71.307764862,41.452158075],[-71.307761561,41.452256799],[-71.307744365,41.452356553],[-71.307689618,41.452469715],[-71.307637497,41.452527283],[-71.307569924,41.452587822],[-71.307495532,41.452651825],[-71.307470512,41.452693636],[-71.307448364,41.452740597],[-71.307370167,41.452816486],[-71.307300769,41.452856827],[-71.307233759,41.452891226],[-71.307149249,41.452943045],[-71.307094374,41.452996081],[-71.307019329,41.453064703],[-71.306960162,41.453119789],[-71.306889378,41.453186314],[-71.306815693,41.453247025],[-71.306758741,41.453292944],[-71.306702665,41.4533205],[-71.306615508,41.453352165],[-71.306529942,41.453380518],[-71.306462953,41.453397283],[-71.306359371,41.453411723],[-71.30628283,41.453390165],[-71.30627422,41.453381468],[-71.306260467,41.453383471],[-71.306184466,41.453361471],[-71.306136467,41.453313471],[-71.306097467,41.45326047],[-71.306065467,41.45320347],[-71.305974466,41.45314747],[-71.305918467,41.45308647],[-71.305870297,41.453048113],[-71.305848541,41.453046563],[-71.305760336,41.453093253],[-71.305684863,41.453152062],[-71.305645298,41.45321841],[-71.305638125,41.453289203],[-71.305631802,41.453360593],[-71.305621017,41.453409197],[-71.305618133,41.453479198],[-71.305640785,41.453538721],[-71.305686879,41.453596981],[-71.305745129,41.453636004],[-71.305798718,41.453658588],[-71.305828467,41.45366647],[-71.305833054,41.453669274],[-71.305924979,41.453694123],[-71.305997289,41.453737996],[-71.305968036,41.453781857],[-71.305930769,41.453822023],[-71.30585697,41.453879508],[-71.305829137,41.453916145],[-71.305808522,41.453978752],[-71.305796372,41.45403657],[-71.305775788,41.454099153],[-71.305729459,41.45415003],[-71.305657365,41.454206786],[-71.305597535,41.454228572],[-71.305504013,41.454253228],[-71.305408333,41.454288355],[-71.305260293,41.454337252],[-71.305175463,41.454362975],[-71.305101253,41.454354433],[-71.305051505,41.45434918],[-71.304989147,41.454372356],[-71.304923512,41.454342696],[-71.304866468,41.454367688],[-71.304835166,41.454405096],[-71.304800799,41.454451053],[-71.304747359,41.45446027],[-71.304700874,41.454431398],[-71.304696449,41.454428021],[-71.304658467,41.454434471],[-71.304612466,41.454405471],[-71.304561423,41.454367391],[-71.304503382,41.454386191],[-71.304418612,41.454432153],[-71.304368561,41.454477259],[-71.304352146,41.454517552],[-71.304373748,41.454571882],[-71.304377139,41.454627325],[-71.304355728,41.454691234],[-71.304322726,41.454767907],[-71.304310977,41.45483357],[-71.304316417,41.454915088],[-71.304327169,41.454978846],[-71.304339626,41.455062183],[-71.304316681,41.455130708],[-71.304289075,41.455192182],[-71.30425676,41.455283219],[-71.304245066,41.455350826],[-71.304249537,41.455410822],[-71.304233444,41.455495505],[-71.304235984,41.455570615],[-71.304259491,41.455628837],[-71.304295214,41.455688657],[-71.304312014,41.455752928],[-71.30438889,41.455876398],[-71.304414073,41.455933273],[-71.304370872,41.456014754],[-71.304327926,41.456082514],[-71.304294693,41.456134967],[-71.304256862,41.456200014],[-71.304264751,41.456316116],[-71.304293713,41.456380065],[-71.304280111,41.456424844],[-71.304229464,41.456495427],[-71.304189784,41.456558504],[-71.304169563,41.456610659],[-71.304144799,41.456677306],[-71.304109609,41.456743547],[-71.304075097,41.456786278],[-71.304019507,41.456862821],[-71.303989883,41.456917842],[-71.303943669,41.456990261],[-71.303895633,41.45704182],[-71.303888083,41.457085787],[-71.303881164,41.457162413],[-71.303879354,41.45721803],[-71.303891377,41.457235047],[-71.303910466,41.457227472],[-71.303962288,41.457253814],[-71.303979682,41.457246788],[-71.304099762,41.457308399],[-71.304156057,41.457381428],[-71.304185444,41.457435543],[-71.30420668,41.457501033],[-71.304200791,41.457619445],[-71.3042022,41.457706971],[-71.304212097,41.457772031],[-71.304229099,41.457840213],[-71.304245961,41.457924724],[-71.304248985,41.457990663],[-71.30424448,41.458063337],[-71.304234429,41.458109975],[-71.30421208,41.458171961],[-71.304167395,41.458220804],[-71.304048671,41.458283998],[-71.304062237,41.458372505],[-71.304078841,41.458431561],[-71.304067913,41.458496517],[-71.304005172,41.458625557],[-71.30392174,41.458719869],[-71.30386867,41.458756508],[-71.303801451,41.458786993],[-71.303728065,41.458816348],[-71.303654538,41.458841745],[-71.303619153,41.458850947],[-71.30357385,41.458862785],[-71.303503815,41.458889424],[-71.303425315,41.45892085],[-71.303322159,41.458982332],[-71.303251845,41.459040988],[-71.303209975,41.459093678],[-71.303186657,41.45915374],[-71.303138418,41.459201388],[-71.303084553,41.459239397],[-71.303005906,41.459228331],[-71.302946215,41.459252745],[-71.302944348,41.459307059],[-71.30295126,41.459363697],[-71.302938993,41.459418884],[-71.302924199,41.459475463],[-71.302910113,41.459528749],[-71.302894496,41.459586012],[-71.302896095,41.459640216],[-71.302889427,41.459703807],[-71.302862728,41.459765899],[-71.302823385,41.459817221],[-71.302767046,41.459858542],[-71.302706504,41.459902555],[-71.302647611,41.45994394],[-71.302590592,41.459989194],[-71.302548491,41.460037332],[-71.302471064,41.460034775],[-71.30242632,41.460082313],[-71.302387059,41.460136242],[-71.302386984,41.46019113],[-71.302401653,41.460246295],[-71.302443911,41.460296819],[-71.30250185,41.460329303],[-71.302531793,41.460342558],[-71.302591466,41.460332472],[-71.302638466,41.460319472],[-71.302710466,41.460294472],[-71.302779466,41.460257472],[-71.302844466,41.460229472],[-71.302918466,41.460218472],[-71.303001466,41.460228472],[-71.303027624,41.460239371],[-71.303050358,41.460242011],[-71.303122076,41.460272162],[-71.303184364,41.460304538],[-71.303255036,41.460349118],[-71.30331542,41.460397866],[-71.303344864,41.460453285],[-71.303376043,41.460508021],[-71.303418617,41.460565086],[-71.303464484,41.460618818],[-71.303502766,41.460677294],[-71.303528178,41.460739384],[-71.303550974,41.460801515],[-71.303567948,41.460869034],[-71.303575232,41.460933563],[-71.303569705,41.461002278],[-71.303552013,41.461072001],[-71.303538838,41.461125907],[-71.303520152,41.461192404],[-71.303505244,41.461246398],[-71.303476018,41.461309858],[-71.30344517,41.461376655],[-71.303422704,41.461436673],[-71.30343016,41.461504473],[-71.303447498,41.461562181],[-71.303453931,41.461626686],[-71.303434817,41.461684034],[-71.303405446,41.461744933],[-71.303380054,41.461797193],[-71.303389923,41.461861635],[-71.303385415,41.461914663],[-71.303367268,41.46197398],[-71.303361167,41.462030962],[-71.303368053,41.46208632],[-71.303414718,41.462138086],[-71.303469223,41.462190895],[-71.303514067,41.462241377],[-71.303557947,41.462289228],[-71.303608507,41.462329588],[-71.303617454,41.462336716],[-71.303680453,41.4623658],[-71.30374962,41.462396061],[-71.303817451,41.462436108],[-71.303871248,41.462492231],[-71.303912541,41.462540832],[-71.303964806,41.462600909],[-71.30399323,41.462652415],[-71.304011624,41.462712732],[-71.304017601,41.462767448],[-71.304018833,41.462832767],[-71.304013446,41.462905485],[-71.303994616,41.462969352],[-71.303974509,41.463023428],[-71.303946357,41.463073168],[-71.303904003,41.463134388],[-71.303875084,41.463186734],[-71.303844662,41.46324308],[-71.303827823,41.463312142],[-71.303808768,41.463370108],[-71.303785706,41.463436049],[-71.303752669,41.463492436],[-71.303719858,41.463554701],[-71.303688498,41.463609764],[-71.303679927,41.463669441],[-71.303669937,41.463735701],[-71.303649316,41.463798307],[-71.303622759,41.463863671],[-71.303603701,41.463902426],[-71.303595747,41.463918627],[-71.303572599,41.463982601],[-71.303544733,41.464038196],[-71.303509961,41.464095289],[-71.303475701,41.464143898],[-71.303438854,41.464193189],[-71.303404651,41.464243079],[-71.303373231,41.464297479],[-71.303337209,41.464345445],[-71.303294168,41.4643923],[-71.303249449,41.464440503],[-71.303173301,41.46446601],[-71.303126992,41.464517503],[-71.303109468,41.464571538],[-71.303137766,41.464624279],[-71.303123037,41.464679005],[-71.303081757,41.464726458],[-71.303016917,41.464752305],[-71.302937784,41.46476939],[-71.3028709,41.464807697],[-71.302835814,41.464857585],[-71.302807352,41.464919126],[-71.302794744,41.464986114],[-71.30279143,41.465046325],[-71.302805218,41.465101488],[-71.302862739,41.465143142],[-71.302904062,41.465192383],[-71.302882589,41.465255011],[-71.302852847,41.465307378],[-71.302824325,41.465368232],[-71.302819505,41.465433747],[-71.302821275,41.46549184],[-71.302820917,41.465559809],[-71.302803478,41.465615788],[-71.302786863,41.465670465],[-71.302757972,41.465722857],[-71.302715215,41.465775545],[-71.30267348,41.465832168],[-71.302623646,41.465882465],[-71.302578444,41.465939197],[-71.302533923,41.465991973],[-71.302487017,41.466049342],[-71.302452016,41.466101197],[-71.302404485,41.466163894],[-71.302362579,41.466216561],[-71.302319478,41.466262112],[-71.302271094,41.466325448],[-71.302232569,41.466376085],[-71.302186458,41.466431534],[-71.302149071,41.46648805],[-71.302101367,41.466547431],[-71.302050255,41.466607537],[-71.302003631,41.46665187],[-71.301959591,41.46669614],[-71.301911971,41.466737864],[-71.301829941,41.466766791],[-71.30175427,41.466784408],[-71.301690625,41.466836396],[-71.301645221,41.466889148],[-71.30160212,41.466934699],[-71.301545805,41.466975997],[-71.301478293,41.467019562],[-71.301416634,41.467058403],[-71.301353185,41.467095984],[-71.301287123,41.467132965],[-71.301219807,41.467162168],[-71.301143598,41.467186347],[-71.301073213,41.467205116],[-71.300997314,41.467217541],[-71.300924911,41.467229857],[-71.300852563,41.46724414],[-71.300777547,41.467255902],[-71.300687268,41.467257576],[-71.300686757,41.467257467],[-71.300686465,41.467257474],[-71.300672915,41.467254544],[-71.300612701,41.467241826],[-71.300521682,41.467227214],[-71.300443594,41.467229183],[-71.300348428,41.467238189],[-71.300270795,41.467250633],[-71.300198307,41.467260981],[-71.30012056,41.46727084],[-71.300047107,41.467278626],[-71.299975156,41.467282411],[-71.299882662,41.467292656],[-71.299797726,41.467296785],[-71.299711652,41.467295744],[-71.299627965,41.467289423],[-71.299540412,41.467274702],[-71.29953974,41.467274518],[-71.299539465,41.467274474],[-71.299533852,41.467272899],[-71.299457748,41.467251985],[-71.299392359,41.467228178],[-71.299320263,41.467190156],[-71.299238733,41.467155023],[-71.299158681,41.467133545],[-71.299073602,41.467135066],[-71.298991454,41.467162047],[-71.298927604,41.467191117],[-71.298860403,41.46722224],[-71.298777487,41.467251826],[-71.298705254,41.467268098],[-71.298623871,41.467293684],[-71.298550018,41.46731256],[-71.298481365,41.467331331],[-71.298410156,41.467350805],[-71.298339458,41.467362414],[-71.298266825,41.467370177],[-71.298192658,41.467382534],[-71.298113149,41.467372194],[-71.298046852,41.467347081],[-71.297973113,41.467368609],[-71.297939919,41.467394897],[-71.29792282,41.467408452],[-71.297909156,41.467470863],[-71.297900378,41.467526628],[-71.297850653,41.467579531],[-71.297793739,41.467626749],[-71.29772722,41.467672898],[-71.297663028,41.467713746],[-71.297599947,41.467759146],[-71.297529108,41.467806065],[-71.297461849,41.467855483],[-71.297411839,41.467901867],[-71.297376662,41.467949833],[-71.297367978,41.467985014],[-71.297361265,41.468012309],[-71.297355012,41.468052029],[-71.297349404,41.468093738],[-71.297344932,41.468130976],[-71.297330927,41.468185588],[-71.297289708,41.468242332],[-71.297283818,41.468250549],[-71.29725006,41.468298744],[-71.297205819,41.468357397],[-71.297155553,41.468417502],[-71.297108555,41.468472948],[-71.297060874,41.468513367],[-71.297019217,41.468571978],[-71.29697114,41.468622207],[-71.296911153,41.468679276],[-71.296861994,41.468725662],[-71.296804539,41.468780037],[-71.296753674,41.468827082],[-71.29669582,41.468873017],[-71.296631231,41.468923675],[-71.296555871,41.468966789],[-71.296506836,41.468992591],[-71.296504656,41.468993743],[-71.296445708,41.469035083],[-71.296430072,41.469047115],[-71.296443574,41.469114765],[-71.296426099,41.46917008],[-71.296409651,41.469228004],[-71.296387058,41.46928674],[-71.296369984,41.469349922],[-71.296390333,41.469396476],[-71.296430621,41.469415909],[-71.296461464,41.469430474],[-71.296461855,41.469430975],[-71.296462287,41.469431183],[-71.296505314,41.469469704],[-71.296514804,41.469478205],[-71.296542554,41.469534308],[-71.296543465,41.469535474],[-71.296543384,41.469535986],[-71.296543539,41.469536301],[-71.296534817,41.469593346],[-71.296539972,41.469629651],[-71.296542465,41.469646474],[-71.296574779,41.469681274],[-71.296595379,41.469702886],[-71.296635565,41.469749215],[-71.296645465,41.469760474],[-71.296645672,41.469760867],[-71.296645824,41.469761043],[-71.296676234,41.469818432],[-71.296694879,41.469884582],[-71.296712986,41.469932102],[-71.296715464,41.469938474],[-71.296726357,41.469953996],[-71.296756439,41.469996045],[-71.29679418,41.470042767],[-71.296851389,41.470096864],[-71.296904243,41.470150253],[-71.296906464,41.470152474],[-71.296906619,41.470152653],[-71.296906889,41.470152925],[-71.2969106,41.470157253],[-71.296951465,41.470204474],[-71.296995465,41.470265474],[-71.297034009,41.47031222],[-71.297043249,41.470323228],[-71.297086874,41.470384825],[-71.29712041,41.470434284],[-71.297159745,41.470496674],[-71.297175466,41.470530398],[-71.297184465,41.470549474],[-71.29718785,41.470557107],[-71.29721272,41.470611621],[-71.297236028,41.470665247],[-71.29724993,41.470692848],[-71.297261465,41.470715474],[-71.297266465,41.470725475],[-71.297266534,41.470725814],[-71.29726658,41.470725906],[-71.297281022,41.470794793],[-71.297276735,41.470853059],[-71.297250992,41.470917782],[-71.297228374,41.470974551],[-71.297193935,41.471038824],[-71.297149494,41.471092879],[-71.297090727,41.471138172],[-71.297082435,41.471203726],[-71.297128785,41.471249594],[-71.297149555,41.471283087],[-71.297160465,41.471300474],[-71.297160472,41.471300691],[-71.297160674,41.471301016],[-71.297163462,41.471362404],[-71.297149087,41.471428108],[-71.297113339,41.471483253],[-71.297098645,41.471538787],[-71.297131465,41.471595474],[-71.297173465,41.471643475],[-71.297173577,41.471643706],[-71.297173653,41.471643793],[-71.297203327,41.471703765],[-71.297249166,41.471757522],[-71.297296061,41.471813796],[-71.297329088,41.471871121],[-71.29736652,41.471920516],[-71.297425465,41.471965474],[-71.297498465,41.471989475],[-71.297513883,41.471995879],[-71.297564203,41.472016645],[-71.297590937,41.472049977],[-71.297604464,41.472066475],[-71.297615484,41.472084228],[-71.297641223,41.472125071],[-71.297675728,41.472176475],[-71.297702702,41.472234589],[-71.297723851,41.472298091],[-71.29773093,41.472358686],[-71.297724371,41.47242422],[-71.297706329,41.472486098],[-71.297669958,41.472545839],[-71.29764123,41.472602095],[-71.297599372,41.472656109],[-71.297551007,41.472700483],[-71.297471948,41.472719509],[-71.297403175,41.472755294],[-71.297350291,41.472795864],[-71.297306672,41.472849234],[-71.297291188,41.472909721],[-71.297291163,41.472966576],[-71.297294805,41.473027257],[-71.297308505,41.4730805],[-71.297351193,41.473140837],[-71.29738081,41.473199551],[-71.297381809,41.473259633],[-71.29738457,41.473320335],[-71.297385313,41.473374538],[-71.297395802,41.473433744],[-71.297390463,41.47348812],[-71.297392115,41.473543606],[-71.297388966,41.473607728],[-71.297398034,41.473674135],[-71.297414465,41.473730475],[-71.297414508,41.473730566],[-71.297444166,41.473790602],[-71.297482553,41.473831423],[-71.297485465,41.473834475],[-71.297586465,41.473921475],[-71.297640465,41.473964475],[-71.297694608,41.4740099],[-71.297701149,41.474015318],[-71.297714954,41.47402697],[-71.297758465,41.474063475],[-71.297804465,41.474110475],[-71.297818837,41.474145298],[-71.297830866,41.47417399],[-71.297856078,41.474231507],[-71.297896125,41.474290605],[-71.297940351,41.474345662],[-71.297980198,41.474400826],[-71.297989041,41.474461379],[-71.297987443,41.474466796],[-71.297982069,41.474483756],[-71.297970307,41.474520808],[-71.297944837,41.474595251],[-71.297909252,41.474636584],[-71.297850849,41.474661935],[-71.297840637,41.474718658],[-71.297827789,41.474772815],[-71.297813332,41.47483543],[-71.297791016,41.474892955],[-71.29774594,41.474935048],[-71.297694752,41.474977268],[-71.29764978,41.475025193],[-71.297623119,41.475081429],[-71.297596559,41.475144184],[-71.297581974,41.475199046],[-71.297559552,41.47525131],[-71.297525957,41.475307626],[-71.297478653,41.475323094],[-71.297397229,41.475319383],[-71.297358385,41.475371824],[-71.297381957,41.475412807],[-71.297389465,41.475425475],[-71.297389544,41.475425997],[-71.297389659,41.475426196],[-71.297399388,41.475485286],[-71.29738483,41.47554143],[-71.29733887,41.475584207],[-71.29727475,41.475628485],[-71.297221964,41.47567587],[-71.29716222,41.475721368],[-71.297111268,41.475775251],[-71.297081377,41.475834427],[-71.297385465,41.475818475],[-71.299598466,41.475706475],[-71.300140466,41.475677475],[-71.301528466,41.475609475],[-71.301681466,41.475601475],[-71.301735466,41.475596475],[-71.303390467,41.475508475],[-71.303566467,41.475496475],[-71.303939467,41.475479475],[-71.304763467,41.475436475],[-71.305045468,41.475426475],[-71.305427467,41.475405475],[-71.306099468,41.475373475],[-71.306938468,41.475334475],[-71.307830468,41.475271475],[-71.308021468,41.477284475],[-71.308342469,41.478309476],[-71.308410468,41.478533475],[-71.308433469,41.478623475],[-71.308479469,41.478784475],[-71.308502469,41.478905475],[-71.308509469,41.479071475],[-71.308501469,41.480116476],[-71.308509469,41.480990476],[-71.308494469,41.481783476],[-71.308486469,41.482094476],[-71.308486469,41.482148476],[-71.308509469,41.483318476],[-71.308502469,41.483656476],[-71.308502469,41.483791476],[-71.308532469,41.483984477],[-71.308550469,41.484099477],[-71.308609469,41.484469477],[-71.308708469,41.485106476],[-71.308723469,41.485210477],[-71.308830469,41.485811477],[-71.308837469,41.485856477],[-71.309028469,41.486433477],[-71.30908247,41.486562477],[-71.309280469,41.487108477],[-71.309287469,41.487135477],[-71.309501469,41.487666477],[-71.309639469,41.487790477],[-71.31034147,41.488212477],[-71.31046347,41.488286477],[-71.31050847,41.488313477],[-71.31108047,41.488648477],[-71.31113447,41.488683477],[-71.31166047,41.489010477],[-71.31221747,41.489359477],[-71.312645471,41.489625477],[-71.312820471,41.489698478],[-71.31287447,41.489706477],[-71.312866471,41.489760477],[-71.312858471,41.489837477],[-71.312858471,41.490094477],[-71.312866471,41.490138477],[-71.312881471,41.490206478],[-71.312904471,41.490318478],[-71.312934471,41.490407477],[-71.312995471,41.490483478],[-71.313110471,41.490579478],[-71.313194471,41.490663477],[-71.313285471,41.490742477],[-71.313346471,41.490804478],[-71.313400471,41.490898477],[-71.313445471,41.490987478],[-71.313462471,41.491015477],[-71.313499471,41.491076478],[-71.313567471,41.491259478],[-71.313819471,41.491835478],[-71.313957471,41.492134478],[-71.314460471,41.492651478],[-71.314729471,41.492933478]]],[[[-71.321557562,41.49458605],[-71.321602474,41.494877478],[-71.321533474,41.494885478],[-71.321554474,41.495124479],[-71.321556474,41.495185478],[-71.321566474,41.495220479],[-71.321594252,41.495237839],[-71.321566984,41.495220494],[-71.321556798,41.495185488],[-71.321554805,41.495124948],[-71.321533956,41.494885672],[-71.321602905,41.494878072],[-71.321557835,41.494586021],[-71.321557562,41.49458605]]],[[[-71.321680593,41.49524535],[-71.321709474,41.495456479],[-71.321737474,41.495535478],[-71.321689474,41.495538478],[-71.321599474,41.495548479],[-71.321600474,41.495590479],[-71.321605198,41.495619296],[-71.321600674,41.495591132],[-71.321599908,41.495548821],[-71.321616337,41.495548],[-71.321689761,41.495539424],[-71.321738167,41.495535657],[-71.321736115,41.495518775],[-71.32170988,41.495457237],[-71.321680833,41.495245348],[-71.321680593,41.49524535]]],[[[-71.321644474,41.495779478],[-71.321661385,41.49584215],[-71.321644872,41.495780038],[-71.321628057,41.49572366],[-71.321644474,41.495779478]]],[[[-71.321805484,41.496010492],[-71.321794277,41.495995201],[-71.321793771,41.495994874],[-71.321805484,41.496010492]]],[[[-71.321922474,41.496051478],[-71.321929979,41.496056124],[-71.321923464,41.496051776],[-71.32191785,41.496049978],[-71.321922474,41.496051478]]],[[[-71.321965474,41.496122478],[-71.321978474,41.496192479],[-71.32199012,41.496263249],[-71.321978895,41.496193107],[-71.321966342,41.496122945],[-71.321947333,41.496074653],[-71.321965474,41.496122478]]],[[[-71.321997474,41.496327479],[-71.321998475,41.496385479],[-71.321977474,41.496449479],[-71.321973474,41.496463479],[-71.321961474,41.496513478],[-71.321923474,41.496564479],[-71.321902474,41.496615478],[-71.321883474,41.496645479],[-71.321882474,41.496671478],[-71.321895474,41.496727478],[-71.321897474,41.496785478],[-71.321903474,41.496827478],[-71.321904474,41.496859479],[-71.321903474,41.496893479],[-71.321903474,41.496928479],[-71.321895474,41.496952479],[-71.321879474,41.496987479],[-71.321847474,41.497028479],[-71.321801474,41.497080478],[-71.321718474,41.497124479],[-71.321694474,41.497245479],[-71.321767474,41.497566478],[-71.321812474,41.497749479],[-71.321842008,41.49788238],[-71.32181277,41.497749494],[-71.321768431,41.497567243],[-71.321732536,41.497411946],[-71.32169512,41.497245624],[-71.3217186,41.497124975],[-71.321802161,41.497080897],[-71.321848085,41.497028825],[-71.3218802,41.49698748],[-71.321896019,41.496953474],[-71.321904209,41.49692865],[-71.321904427,41.496893522],[-71.321904672,41.496859675],[-71.321904089,41.496828433],[-71.321898092,41.49678552],[-71.321896151,41.496727633],[-71.321882981,41.49667181],[-71.321884267,41.496646403],[-71.321902725,41.496615626],[-71.321924279,41.496564636],[-71.32196232,41.49651413],[-71.321977583,41.496450163],[-71.3219989,41.49638616],[-71.321997811,41.496328252],[-71.321991567,41.496272349],[-71.321997474,41.496327479]]],[[[-71.321851474,41.497963479],[-71.321797474,41.497964479],[-71.321855329,41.498187264],[-71.32179764,41.497964494],[-71.321851606,41.497963983],[-71.32185255,41.497930297],[-71.321852462,41.497929895],[-71.321851474,41.497963479]]],[[[-71.322560763,41.498310107],[-71.322583475,41.498359479],[-71.322584004,41.498359435],[-71.322560935,41.498310096],[-71.322560763,41.498310107]]],[[[-71.321887474,41.498404479],[-71.321887669,41.498404466],[-71.321864512,41.498222778],[-71.321887474,41.498404479]]],[[[-71.322589474,41.498466479],[-71.322586319,41.498416389],[-71.322687352,41.498402183],[-71.322678698,41.49835181],[-71.32267853,41.498351824],[-71.322686474,41.498401479],[-71.322585474,41.498415479],[-71.322589474,41.498466479]]],[[[-71.322589474,41.498466479],[-71.322502475,41.498468479],[-71.322502217,41.498466158],[-71.322502519,41.49846941],[-71.322589498,41.498466662],[-71.322589474,41.498466479]]],[[[-71.339127328,41.495473654],[-71.339046172,41.495534512],[-71.339113183,41.495584188],[-71.339125209,41.495604651],[-71.339180521,41.495698678],[-71.339204385,41.495753782],[-71.339204766,41.495808716],[-71.339198556,41.495872103],[-71.339194029,41.49595587],[-71.339186786,41.496031216],[-71.339178523,41.496112896],[-71.339156329,41.496181818],[-71.339205503,41.496236363],[-71.339260236,41.496294415],[-71.339314912,41.49636301],[-71.339377047,41.496428871],[-71.339514162,41.496496529],[-71.339604512,41.496556162],[-71.339661166,41.496612113],[-71.339712235,41.496663801],[-71.339749306,41.496704836],[-71.339846487,41.496732827],[-71.339953981,41.496760901],[-71.34000459,41.496776546],[-71.340041825,41.496788124],[-71.340149191,41.496830972],[-71.340245262,41.496877943],[-71.34036191,41.496931392],[-71.340447671,41.49697764],[-71.340540865,41.497031673],[-71.340634047,41.497090624],[-71.340714175,41.497138968],[-71.340810153,41.497199317],[-71.34088909,41.497274417],[-71.340940986,41.497336672],[-71.341003933,41.497420143],[-71.3410472,41.497502787],[-71.341073491,41.49759874],[-71.341087737,41.497681937],[-71.341072906,41.497763586],[-71.341043941,41.497852921],[-71.341010322,41.497942182],[-71.340985334,41.498009706],[-71.340934738,41.498112299],[-71.340898537,41.498174798],[-71.340843673,41.498231577],[-71.340754055,41.498293797],[-71.340683162,41.498361759],[-71.340662003,41.498418722],[-71.340705428,41.498486592],[-71.340784645,41.498534888],[-71.340893989,41.498566486],[-71.340996839,41.498591648],[-71.341109055,41.498618309],[-71.341200821,41.49862301],[-71.341276067,41.498591027],[-71.341359153,41.498525231],[-71.341404036,41.498432486],[-71.341467935,41.498313056],[-71.341507928,41.4982421],[-71.341603024,41.498091106],[-71.341680647,41.498007006],[-71.341740231,41.497948129],[-71.341805573,41.497873091],[-71.341867126,41.497805069],[-71.341912006,41.49771301],[-71.341982103,41.497633816],[-71.342080233,41.497560333],[-71.342155723,41.497502255],[-71.342249161,41.497431578],[-71.342313315,41.497381901],[-71.342370927,41.497332878],[-71.342438929,41.497276894],[-71.342502047,41.497239885],[-71.34258221,41.497186753],[-71.342622033,41.497134847],[-71.342637694,41.497061639],[-71.342645871,41.496988398],[-71.342669008,41.496918104],[-71.342720164,41.496859215],[-71.34278925,41.496782055],[-71.342832112,41.496706185],[-71.34284859,41.496647089],[-71.342856728,41.496577392],[-71.342848018,41.496506209],[-71.342828984,41.49643986],[-71.342779758,41.496392429],[-71.342727703,41.496345658],[-71.342707821,41.496265242],[-71.342705023,41.496164473],[-71.342717143,41.49607086],[-71.34274514,41.495977978],[-71.342779773,41.495883092],[-71.342808669,41.495795882],[-71.342871624,41.495675009],[-71.342903999,41.495620943],[-71.342922459,41.495446333],[-71.342868577,41.495400268],[-71.34281159,41.495380247],[-71.342742399,41.495362977],[-71.342667617,41.495343573],[-71.342534689,41.495330195],[-71.342445648,41.495332543],[-71.342361209,41.495344068],[-71.34228696,41.495367637],[-71.342208017,41.495395407],[-71.342107471,41.495425869],[-71.342045469,41.49544177],[-71.341931112,41.495447491],[-71.341836528,41.495439951],[-71.3417345,41.495428878],[-71.341622205,41.495412075],[-71.341525854,41.49539328],[-71.341428623,41.495373729],[-71.34132857,41.495351339],[-71.341227579,41.495326866],[-71.341116271,41.495304437],[-71.341028421,41.495280027],[-71.340943441,41.495251414],[-71.340886528,41.495226453],[-71.340856082,41.495175571],[-71.340829255,41.495137386],[-71.340764497,41.49514832],[-71.3407209,41.495200929],[-71.340678454,41.495231013],[-71.340579222,41.495221316],[-71.340481023,41.495199705],[-71.340383685,41.495186488],[-71.340163597,41.495178292],[-71.34005582,41.495179835],[-71.340008558,41.495188757],[-71.339939415,41.495201788],[-71.339843593,41.495228024],[-71.339750606,41.495251519],[-71.339655771,41.49527213],[-71.339547831,41.495290619],[-71.339464451,41.495291554],[-71.339371919,41.495266428],[-71.339306744,41.495224508],[-71.339268619,41.495191934],[-71.339219154,41.495169132],[-71.339171533,41.495151272],[-71.339144412,41.49514618],[-71.33911622,41.495155883],[-71.339067989,41.495200024],[-71.339049812,41.495243634],[-71.339059472,41.495310588],[-71.339085103,41.495376947],[-71.339127328,41.495473654]]],[[[-71.321900475,41.498464479],[-71.321868474,41.498637479],[-71.321835474,41.498840479],[-71.321830474,41.499067479],[-71.321839474,41.499244479],[-71.321840475,41.499320479],[-71.321841085,41.499320543],[-71.321839669,41.499245003],[-71.321830876,41.499068113],[-71.321833342,41.498978741],[-71.321836306,41.498840543],[-71.32186941,41.49863824],[-71.321900762,41.498464729],[-71.322497534,41.498424012],[-71.322497474,41.498423479],[-71.321900475,41.498464479]]],[[[-71.322004474,41.49937648],[-71.322032474,41.49943448],[-71.322040474,41.499476479],[-71.322040626,41.499476468],[-71.322032868,41.499434666],[-71.322026851,41.499421277],[-71.322005221,41.499376899],[-71.321980182,41.499355866],[-71.321979676,41.499355649],[-71.322004474,41.49937648]]],[[[-71.341445999,41.499162553],[-71.341408762,41.499238408],[-71.341383732,41.499310871],[-71.341360556,41.499384],[-71.341326027,41.499471887],[-71.341287896,41.499539987],[-71.341230067,41.499614372],[-71.341192177,41.499658573],[-71.341135262,41.499732273],[-71.341088825,41.499788377],[-71.341048141,41.499830425],[-71.340986791,41.499876606],[-71.340920753,41.49992413],[-71.340878129,41.499975345],[-71.34087016,41.500024619],[-71.340893907,41.500091707],[-71.340903604,41.500156557],[-71.34091617,41.500217888],[-71.340929069,41.500242629],[-71.340953227,41.500266012],[-71.340997159,41.500276822],[-71.341020668,41.500267043],[-71.341048156,41.500234789],[-71.341106354,41.500121663],[-71.341133566,41.500015424],[-71.341170226,41.499902245],[-71.341202687,41.499838963],[-71.341252,41.499776527],[-71.341294658,41.499723231],[-71.341340242,41.499655118],[-71.341365225,41.499589745],[-71.341392148,41.499514494],[-71.341423829,41.499434378],[-71.341446849,41.499375291],[-71.341465224,41.499312676],[-71.341477923,41.499257096],[-71.341481329,41.499195123],[-71.3414725,41.499135901],[-71.341445999,41.499162553]]]]}}"}, +{"type": "precinct", "typeId": 2107, "areaId": 25826, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":165,\"NAME\":\"2107\",\"SHAPE_Length\":0.34925200904758,\"SHAPE_Area\":-0.00095810201391319},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.331356285,41.451622797],[-71.331301429,41.451676507],[-71.331308487,41.451697901],[-71.331339633,41.451714093],[-71.331426652,41.451718337],[-71.331524291,41.451706656],[-71.331614219,41.451679458],[-71.331630559,41.451637881],[-71.331540941,41.451616046],[-71.331448779,41.451613876],[-71.331356285,41.451622797]]],[[[-71.332634074,41.451645749],[-71.332611726,41.451707077],[-71.332614881,41.451756665],[-71.332651619,41.45176223],[-71.332675896,41.451742665],[-71.332715259,41.451673014],[-71.332739196,41.451608372],[-71.332687139,41.451590755],[-71.332634074,41.451645749]]],[[[-71.335586505,41.45163155],[-71.335642013,41.45166733],[-71.335608274,41.451726378],[-71.33563663,41.451776596],[-71.335690204,41.45180789],[-71.335722956,41.451802471],[-71.335762917,41.451783775],[-71.335792511,41.451728746],[-71.335817546,41.451649673],[-71.335839299,41.451594221],[-71.335789983,41.451598108],[-71.335716405,41.451603949],[-71.335643379,41.45158365],[-71.335586505,41.45163155]]],[[[-71.334772731,41.451349562],[-71.334780218,41.451417977],[-71.334775183,41.451497169],[-71.334712502,41.451569349],[-71.334669602,41.45165608],[-71.33465657,41.451712619],[-71.334671494,41.451772995],[-71.334712861,41.451822888],[-71.334716624,41.451885535],[-71.334733471,41.451930819],[-71.334793647,41.451935777],[-71.334828751,41.451962311],[-71.334895997,41.452008285],[-71.334930253,41.451997585],[-71.334973016,41.451964462],[-71.335027391,41.45191928],[-71.335099073,41.451834374],[-71.335129577,41.45178065],[-71.335122522,41.451721361],[-71.335135439,41.451662237],[-71.335176358,41.451589294],[-71.335156159,41.451546704],[-71.335077766,41.451485345],[-71.334977525,41.451420662],[-71.334882206,41.451368907],[-71.334782869,41.451343402],[-71.334772731,41.451349562]]],[[[-71.331039315,41.452398888],[-71.331081908,41.45245592],[-71.331148415,41.452504502],[-71.33122531,41.452533203],[-71.331319022,41.452512506],[-71.331360832,41.452496352],[-71.331373573,41.452471214],[-71.331338921,41.452434868],[-71.331262706,41.452402189],[-71.331117259,41.452374623],[-71.331039315,41.452398888]]],[[[-71.334468652,41.452536292],[-71.334451694,41.452582488],[-71.334469958,41.45262057],[-71.334501133,41.452638042],[-71.334540357,41.452621998],[-71.334585953,41.452575088],[-71.334583677,41.452525457],[-71.334524946,41.452513937],[-71.334468652,41.452536292]]],[[[-71.330936253,41.453047151],[-71.330889295,41.453102611],[-71.330908475,41.453161575],[-71.330951869,41.453179432],[-71.331008148,41.45317533],[-71.331077427,41.453151967],[-71.331098897,41.453089974],[-71.331047191,41.453042306],[-71.330936253,41.453047151]]],[[[-71.327055414,41.45287562],[-71.327031679,41.452964457],[-71.327021476,41.453063401],[-71.327023393,41.453143038],[-71.327043414,41.453181741],[-71.32706958,41.453184319],[-71.327117138,41.453179199],[-71.327161046,41.45315189],[-71.327207193,41.453116739],[-71.327194784,41.453073267],[-71.327150836,41.453024099],[-71.327131513,41.452963167],[-71.327123123,41.452894109],[-71.327111107,41.452840186],[-71.327055414,41.45287562]]],[[[-71.330082129,41.453946999],[-71.330115285,41.453950708],[-71.330141989,41.453945441],[-71.330240252,41.453929143],[-71.330316301,41.453921296],[-71.330422677,41.453929617],[-71.330539189,41.453932465],[-71.33059339,41.453921293],[-71.330667754,41.453895147],[-71.330737445,41.453842351],[-71.330722706,41.453805486],[-71.330633075,41.45376405],[-71.330546126,41.453743431],[-71.330429326,41.453734065],[-71.330357128,41.45376927],[-71.33019742,41.453847273],[-71.330088395,41.453875608],[-71.330046422,41.453907381],[-71.330082129,41.453946999]]],[[[-71.334935903,41.454553127],[-71.334971427,41.45457049],[-71.334987964,41.45457072],[-71.335012414,41.454555043],[-71.335001485,41.454525296],[-71.3349604,41.454519154],[-71.334935903,41.454553127]]],[[[-71.335453227,41.454583416],[-71.335450696,41.454622681],[-71.335474321,41.454644944],[-71.335503304,41.454652052],[-71.335523166,41.454611646],[-71.335505695,41.454572239],[-71.335453227,41.454583416]]],[[[-71.324154121,41.454497723],[-71.324080108,41.454550623],[-71.324014022,41.454605914],[-71.324073585,41.454635736],[-71.324146918,41.454643647],[-71.324214764,41.454645786],[-71.324275037,41.454615461],[-71.324285159,41.454570765],[-71.324245253,41.454533906],[-71.324222982,41.454484198],[-71.324154121,41.454497723]]],[[[-71.335588875,41.454605382],[-71.33557837,41.454660507],[-71.335594193,41.454702588],[-71.335645212,41.454735228],[-71.335697129,41.454749573],[-71.335719789,41.454732636],[-71.335741459,41.454674554],[-71.335738301,41.45462499],[-71.335701449,41.45457954],[-71.335627004,41.454566466],[-71.335588875,41.454605382]]],[[[-71.324913363,41.454764221],[-71.324986207,41.454761679],[-71.325029216,41.454752756],[-71.325073538,41.454752869],[-71.325148028,41.454749003],[-71.325184987,41.454740209],[-71.325280945,41.454711538],[-71.325352659,41.454722099],[-71.325400915,41.454695345],[-71.325419357,41.454642589],[-71.32547175,41.454591576],[-71.325530854,41.454554777],[-71.325592745,41.4545218],[-71.325659748,41.45448675],[-71.32573943,41.454462446],[-71.325809057,41.454446245],[-71.325878683,41.454430707],[-71.325962211,41.454434447],[-71.326036062,41.454453426],[-71.32610811,41.454452872],[-71.326177594,41.454433423],[-71.326181175,41.454379089],[-71.326198706,41.454325691],[-71.326232743,41.454272546],[-71.326207771,41.454220914],[-71.326215584,41.454163842],[-71.326255787,41.45411249],[-71.32630275,41.454057055],[-71.326341018,41.45400179],[-71.326374405,41.453953219],[-71.326419434,41.45389323],[-71.326467076,41.453833862],[-71.32652367,41.453780111],[-71.32658487,41.45373213],[-71.326659513,41.453692929],[-71.326727311,41.45365589],[-71.326784795,41.453621717],[-71.326825591,41.453564466],[-71.326857072,41.453512003],[-71.326886675,41.453456999],[-71.326883629,41.453390443],[-71.326849532,41.453329259],[-71.326827453,41.453264458],[-71.326830889,41.453206876],[-71.32684839,41.45315286],[-71.326859957,41.453101557],[-71.326840156,41.453048491],[-71.326851596,41.45297633],[-71.326906868,41.452950708],[-71.326949579,41.452916284],[-71.326951599,41.452865263],[-71.32696165,41.452800945],[-71.327001526,41.452723452],[-71.326997206,41.452667368],[-71.326971107,41.452628198],[-71.326962038,41.452620591],[-71.326876415,41.452628033],[-71.3268277,41.452645661],[-71.32676986,41.452596814],[-71.326750653,41.452537872],[-71.326751956,41.45252804],[-71.326793058,41.452515226],[-71.326889491,41.452534925],[-71.326905031,41.452532547],[-71.326939038,41.452478739],[-71.326923211,41.45241772],[-71.32684919,41.45239483],[-71.326796532,41.452363533],[-71.326857451,41.452329251],[-71.326905073,41.452288134],[-71.326893191,41.452217882],[-71.326865089,41.45215458],[-71.326841555,41.452076787],[-71.326805832,41.451998631],[-71.326753133,41.451948398],[-71.326682283,41.451956753],[-71.32663042,41.452037841],[-71.326534122,41.45211614],[-71.326447476,41.45217721],[-71.326394387,41.452250475],[-71.326369016,41.452360259],[-71.326337787,41.452455146],[-71.326296463,41.452539223],[-71.326286535,41.452625725],[-71.326322058,41.452699307],[-71.326313519,41.452777944],[-71.326306827,41.452859146],[-71.32630203,41.452868401],[-71.326232845,41.452855832],[-71.326220656,41.452855494],[-71.326172612,41.452792711],[-71.326120919,41.452820832],[-71.326118153,41.45291176],[-71.326163987,41.452983115],[-71.326173083,41.452992002],[-71.326140261,41.453034011],[-71.326047294,41.453071103],[-71.325973226,41.453065822],[-71.325887744,41.453020342],[-71.325778013,41.452994401],[-71.325654751,41.453015255],[-71.325513335,41.453094766],[-71.32544485,41.453172992],[-71.32534629,41.453277473],[-71.325252296,41.453368125],[-71.325154569,41.453434048],[-71.325095847,41.453498316],[-71.324997038,41.453559709],[-71.324986074,41.453567148],[-71.324992174,41.453604893],[-71.325077875,41.453636653],[-71.325166229,41.453687948],[-71.325140855,41.453740899],[-71.325102529,41.453794837],[-71.325034645,41.453829908],[-71.324953375,41.453800671],[-71.324847385,41.453762225],[-71.324777777,41.453760107],[-71.324667738,41.453746651],[-71.324642392,41.453800243],[-71.324728811,41.453847625],[-71.324772271,41.453885701],[-71.324673939,41.453938587],[-71.324610841,41.454002299],[-71.324559999,41.454086635],[-71.324576342,41.454158746],[-71.32459393,41.454163507],[-71.32469502,41.454113827],[-71.324756471,41.454052126],[-71.324760098,41.454059999],[-71.324738325,41.45413036],[-71.324679412,41.454208989],[-71.324655981,41.454285385],[-71.32462807,41.454377601],[-71.324634187,41.454453905],[-71.324714584,41.454502787],[-71.324799742,41.454522127],[-71.324848802,41.454569223],[-71.324862416,41.454638792],[-71.324888976,41.454743944],[-71.324913363,41.454764221]]],[[[-71.338198737,41.454618963],[-71.338182126,41.454672981],[-71.338165429,41.454725033],[-71.338169629,41.454759573],[-71.338209429,41.454793843],[-71.338235828,41.454800993],[-71.338265939,41.454794974],[-71.338294897,41.454763477],[-71.338304647,41.454729894],[-71.338299754,41.454680374],[-71.338276678,41.454632634],[-71.338249212,41.45460195],[-71.338216981,41.454580635],[-71.338198737,41.454618963]]],[[[-71.315511152,41.454676091],[-71.315489883,41.454704759],[-71.315469923,41.454743194],[-71.315468375,41.454785021],[-71.315475407,41.454824712],[-71.315500563,41.454861962],[-71.315537358,41.45486886],[-71.315589336,41.454827639],[-71.315640548,41.454789071],[-71.315695196,41.45474973],[-71.315745297,41.454705991],[-71.315785336,41.454651373],[-71.315759187,41.454610211],[-71.315711434,41.454629757],[-71.315667348,41.454653791],[-71.315620127,41.454646511],[-71.315561942,41.45464667],[-71.315511152,41.454676091]]],[[[-71.323652478,41.454752529],[-71.32361907,41.454819419],[-71.323664109,41.454835223],[-71.323709214,41.454871953],[-71.323767467,41.454891985],[-71.323791183,41.454878962],[-71.323792046,41.454841045],[-71.323764117,41.454781654],[-71.323722135,41.454736993],[-71.323652478,41.454752529]]],[[[-71.323976464,41.454847365],[-71.323939964,41.454865948],[-71.32390222,41.454895027],[-71.323900955,41.454924459],[-71.323933279,41.454966109],[-71.323954544,41.454994295],[-71.323956122,41.4550289],[-71.323954656,41.45505378],[-71.323972638,41.455104282],[-71.324016298,41.455090718],[-71.324048817,41.455004273],[-71.324080031,41.45492766],[-71.32408955,41.454869928],[-71.324061631,41.454829473],[-71.323976464,41.454847365]]],[[[-71.336821587,41.455099257],[-71.336851378,41.455123954],[-71.336888537,41.45511973],[-71.336897205,41.455081594],[-71.336860351,41.4550734],[-71.336821587,41.455099257]]],[[[-71.32878971,41.455100643],[-71.32875396,41.455135535],[-71.328764178,41.455168598],[-71.328785463,41.455178487],[-71.328807933,41.455176599],[-71.328874457,41.455150077],[-71.328917245,41.455097997],[-71.328882737,41.455064898],[-71.32878971,41.455100643]]],[[[-71.31526089,41.454787776],[-71.315234571,41.45483878],[-71.315222567,41.45488027],[-71.315202105,41.454945485],[-71.315184107,41.45498907],[-71.315158132,41.455047255],[-71.31514087,41.455088234],[-71.315132842,41.455121108],[-71.315168655,41.455163293],[-71.315202771,41.455149991],[-71.315289669,41.455112487],[-71.315351416,41.455057263],[-71.315367159,41.454983692],[-71.315372502,41.454911042],[-71.315390637,41.454851723],[-71.315366326,41.454794852],[-71.315318754,41.454761454],[-71.31526089,41.454787776]]],[[[-71.333658688,41.455413034],[-71.333663231,41.45545535],[-71.333691997,41.455476181],[-71.333752683,41.455473318],[-71.333768066,41.455449396],[-71.333735737,41.455407108],[-71.333689525,41.455384743],[-71.333658688,41.455413034]]],[[[-71.32380261,41.455430859],[-71.323728249,41.455476577],[-71.323678813,41.455534706],[-71.323694974,41.45558397],[-71.323715674,41.455618696],[-71.323743765,41.455663038],[-71.323795974,41.455703507],[-71.323824125,41.455692298],[-71.323833894,41.455620843],[-71.323839087,41.455544259],[-71.323856322,41.455466047],[-71.323854341,41.455422979],[-71.32380261,41.455430859]]],[[[-71.336594343,41.455634508],[-71.336578235,41.455681323],[-71.336570766,41.455725909],[-71.336585783,41.455750379],[-71.336616097,41.455748272],[-71.33667576,41.455704926],[-71.336718525,41.455671779],[-71.336741058,41.455632635],[-71.336690902,41.455618887],[-71.336603615,41.455610073],[-71.336594343,41.455634508]]],[[[-71.324491897,41.456085335],[-71.324481949,41.456133302],[-71.324492902,41.456163736],[-71.324542633,41.45618794],[-71.324584877,41.456180983],[-71.324630263,41.456147753],[-71.324624808,41.456085149],[-71.324565127,41.456053383],[-71.324491897,41.456085335]]],[[[-71.3195206,41.456042492],[-71.319440444,41.456093573],[-71.319389233,41.456132806],[-71.319342168,41.45616738],[-71.31933957,41.456205318],[-71.319390332,41.456251733],[-71.319443787,41.456280404],[-71.319532661,41.456286604],[-71.319578372,41.456279518],[-71.319598655,41.456266559],[-71.319621676,41.456219574],[-71.31961048,41.456146029],[-71.31960636,41.456074919],[-71.319579459,41.456018777],[-71.3195206,41.456042492]]],[[[-71.320023541,41.456042526],[-71.320056121,41.456090032],[-71.32007293,41.456134701],[-71.320030135,41.456186755],[-71.319989094,41.456219852],[-71.319966629,41.456241315],[-71.320013639,41.456281297],[-71.32005484,41.456289343],[-71.32011607,41.456298907],[-71.320224316,41.456291484],[-71.320289105,41.45624541],[-71.32032491,41.456192865],[-71.320328207,41.456132653],[-71.320284205,41.456082178],[-71.320226175,41.456047737],[-71.320154077,41.456010391],[-71.320064659,41.455992436],[-71.320023541,41.456042526]]],[[[-71.319571763,41.457139653],[-71.319541348,41.457177684],[-71.319530736,41.457211264],[-71.319551299,41.457261702],[-71.319562981,41.45726993],[-71.319611792,41.457274535],[-71.31964999,41.457236265],[-71.31966838,41.457182206],[-71.319671649,41.457121353],[-71.319621383,41.457104351],[-71.319571763,41.457139653]]],[[[-71.321931551,41.457721418],[-71.321884007,41.4577645],[-71.321844077,41.457802769],[-71.321825631,41.457855525],[-71.321822698,41.45790524],[-71.321833345,41.457947429],[-71.321847532,41.457973203],[-71.321875385,41.457993417],[-71.321944059,41.457994255],[-71.321980016,41.457963916],[-71.322018127,41.457923701],[-71.322048455,41.457883702],[-71.32206258,41.457843473],[-71.322065338,41.457835564],[-71.322076744,41.457799996],[-71.322085135,41.457755321],[-71.32205329,41.457705186],[-71.321990323,41.457696352],[-71.321931551,41.457721418]]],[[[-71.32676647,41.458121229],[-71.326779616,41.458162095],[-71.32681383,41.45816903],[-71.326844346,41.4581715],[-71.326883221,41.458128655],[-71.326866118,41.458078154],[-71.326802385,41.458071289],[-71.32676647,41.458121229]]],[[[-71.321303859,41.45816504],[-71.321318162,41.458192781],[-71.321356328,41.458210748],[-71.321389544,41.458215122],[-71.321432901,41.458213313],[-71.321442833,41.458183689],[-71.321397652,41.458107736],[-71.32134676,41.458096656],[-71.321303859,41.45816504]]],[[[-71.325321991,41.458482245],[-71.325302179,41.45852393],[-71.325296855,41.458559325],[-71.325314685,41.458587643],[-71.325355974,41.458597654],[-71.325405457,41.45857877],[-71.325442094,41.458543811],[-71.325432719,41.45849115],[-71.325382467,41.458456517],[-71.325321991,41.458482245]]],[[[-71.321343509,41.458328715],[-71.321306881,41.458381922],[-71.321284749,41.458448509],[-71.321281842,41.45849955],[-71.321301593,41.458569609],[-71.321320337,41.458618763],[-71.321315671,41.458668567],[-71.321308392,41.45871775],[-71.321312045,41.458760156],[-71.321350591,41.458805545],[-71.321403926,41.458812649],[-71.321436428,41.458745141],[-71.321435036,41.458676574],[-71.32143032,41.458611341],[-71.321429328,41.458551923],[-71.32143612,41.458491625],[-71.321463454,41.458424269],[-71.321450656,41.458335056],[-71.321414866,41.458293514],[-71.321343509,41.458328715]]],[[[-71.321962886,41.458102209],[-71.322004094,41.458186114],[-71.322061206,41.458257146],[-71.322110793,41.458334272],[-71.32213171,41.458411537],[-71.322142622,41.458479158],[-71.322170513,41.458518972],[-71.322182362,41.458588561],[-71.322227277,41.458639677],[-71.322269091,41.458679764],[-71.32227019,41.458722876],[-71.322264279,41.458783129],[-71.322293875,41.458822237],[-71.322313484,41.458833497],[-71.322446632,41.458781673],[-71.322474853,41.458733918],[-71.322439914,41.458692309],[-71.322368093,41.458641243],[-71.322336927,41.458587176],[-71.322318258,41.458521007],[-71.322303678,41.458449515],[-71.322289531,41.458386486],[-71.32228135,41.45826517],[-71.322261695,41.458215352],[-71.322228347,41.458169811],[-71.322141733,41.458081239],[-71.32209589,41.458047137],[-71.32202241,41.458036],[-71.321962886,41.458102209]]],[[[-71.322510614,41.458964939],[-71.322444091,41.459011125],[-71.322369689,41.459036579],[-71.322340185,41.459075207],[-71.322350975,41.459120712],[-71.322374059,41.459150822],[-71.322462803,41.459172663],[-71.322557561,41.459174135],[-71.322647667,41.459131301],[-71.322657245,41.45907485],[-71.322647673,41.459017591],[-71.322590511,41.45896417],[-71.322510614,41.458964939]]],[[[-71.337335478,41.480754475],[-71.337417478,41.480780475],[-71.337507478,41.480817475],[-71.337561479,41.480844475],[-71.337561662,41.480844733],[-71.337562448,41.480845122],[-71.33758936,41.480882759],[-71.337601841,41.480926664],[-71.337606685,41.480971931],[-71.337608291,41.480986295],[-71.337604001,41.481060137],[-71.337531508,41.481105248],[-71.337297324,41.481559734],[-71.336693032,41.481573057],[-71.336692478,41.481789475],[-71.337331478,41.481783476],[-71.337376478,41.481728475],[-71.337421479,41.481717475],[-71.337444479,41.481675475],[-71.337483479,41.481590476],[-71.337526478,41.481506475],[-71.337634479,41.481306475],[-71.337687478,41.481204475],[-71.337747478,41.481128475],[-71.337774479,41.481093475],[-71.337901478,41.481047475],[-71.338018478,41.480996475],[-71.338110478,41.480945475],[-71.338180479,41.480898475],[-71.338255479,41.480840475],[-71.338315479,41.480783475],[-71.338367478,41.480723475],[-71.338418479,41.480645475],[-71.338454479,41.480579475],[-71.338495479,41.480494475],[-71.338581479,41.480299475],[-71.338666479,41.480059475],[-71.338727479,41.479847475],[-71.338769479,41.479744475],[-71.338819479,41.479597475],[-71.338856479,41.479491475],[-71.338910478,41.479367475],[-71.338967478,41.479265475],[-71.339028479,41.479166475],[-71.339115479,41.479054475],[-71.339281479,41.478848474],[-71.339387479,41.478738475],[-71.339522479,41.478615474],[-71.339611479,41.478526475],[-71.339699479,41.478425475],[-71.339803479,41.478344474],[-71.339939479,41.478303474],[-71.340035479,41.478200474],[-71.340142479,41.478089474],[-71.340361479,41.477881475],[-71.340453479,41.477780474],[-71.340557479,41.477661474],[-71.340666479,41.477562474],[-71.340774479,41.477467474],[-71.340906479,41.477376475],[-71.34100848,41.477296474],[-71.341117479,41.477236474],[-71.341196479,41.477161474],[-71.341239479,41.477067474],[-71.341220479,41.476882474],[-71.34122148,41.476779474],[-71.34128548,41.476649474],[-71.34134448,41.476559474],[-71.34140348,41.476478474],[-71.341548479,41.476331474],[-71.34165248,41.476232474],[-71.341777479,41.476216474],[-71.34182248,41.476178474],[-71.34182266,41.476178313],[-71.341821044,41.476168963],[-71.341855924,41.476148746],[-71.341858479,41.476146474],[-71.34186748,41.476085474],[-71.34186348,41.476018474],[-71.34198248,41.475957474],[-71.34204648,41.475907474],[-71.34208548,41.475845474],[-71.34207748,41.475764474],[-71.34207448,41.475686474],[-71.34219948,41.475536474],[-71.34226848,41.475459474],[-71.34235148,41.475390473],[-71.34244648,41.475323474],[-71.342539479,41.475263474],[-71.34264848,41.475211474],[-71.34274148,41.475168474],[-71.3428207,41.475177476],[-71.342830088,41.475178495],[-71.342868755,41.475196447],[-71.34288848,41.475205474],[-71.34294648,41.475156473],[-71.34300748,41.475094474],[-71.34307648,41.475029474],[-71.34315248,41.474939474],[-71.34321448,41.474860474],[-71.34327848,41.474750473],[-71.34332048,41.474646474],[-71.34341548,41.474551473],[-71.34349948,41.474478473],[-71.34359348,41.474416473],[-71.34369348,41.474363473],[-71.34381348,41.474324473],[-71.34388648,41.474297474],[-71.34396048,41.474236474],[-71.34403948,41.474168473],[-71.34411548,41.474093474],[-71.34419648,41.474020474],[-71.34427248,41.473941474],[-71.34434048,41.473858473],[-71.34439748,41.473771473],[-71.34447148,41.473687474],[-71.344538481,41.473604473],[-71.344619481,41.473523473],[-71.34470248,41.473433474],[-71.344796481,41.473356474],[-71.34489848,41.473299474],[-71.345069481,41.473256473],[-71.34517348,41.473237473],[-71.34529048,41.473207473],[-71.34540848,41.473158473],[-71.345546481,41.473079473],[-71.34567448,41.473008474],[-71.345864481,41.472815474],[-71.345995481,41.472731473],[-71.346095481,41.472654473],[-71.34620248,41.472597473],[-71.346308481,41.472538473],[-71.34639648,41.472464474],[-71.346476481,41.472372473],[-71.346529481,41.472301473],[-71.346548481,41.472225473],[-71.346562481,41.472189473],[-71.346580481,41.472140473],[-71.346648481,41.472022473],[-71.346715481,41.471921473],[-71.34678648,41.471823473],[-71.346880481,41.471726473],[-71.346977481,41.471639473],[-71.347108481,41.471529472],[-71.347224481,41.471441473],[-71.347339481,41.471359473],[-71.347476481,41.471280473],[-71.347594481,41.471202473],[-71.347671481,41.471079473],[-71.347809481,41.470919473],[-71.347886481,41.470834473],[-71.347951481,41.470739473],[-71.348059481,41.470642473],[-71.348200481,41.470583473],[-71.348328481,41.470536472],[-71.348502481,41.470478472],[-71.348657482,41.470421472],[-71.348800481,41.470366473],[-71.348951481,41.470340472],[-71.349125482,41.470343472],[-71.349237307,41.470364181],[-71.349261068,41.470368492],[-71.349353672,41.470404315],[-71.349377482,41.470413473],[-71.349481481,41.470408473],[-71.349614481,41.470355473],[-71.349760482,41.470304472],[-71.349887481,41.470293473],[-71.350035482,41.470309473],[-71.350117482,41.470306472],[-71.350235482,41.470264472],[-71.350332482,41.470245472],[-71.350444482,41.470221473],[-71.350571482,41.470189472],[-71.350643021,41.470175291],[-71.350680834,41.470167508],[-71.350714595,41.470161102],[-71.350798482,41.470144472],[-71.350890482,41.470131472],[-71.350891002,41.470131895],[-71.350891453,41.47013183],[-71.350905743,41.470132008],[-71.350939345,41.470171114],[-71.350965775,41.470207307],[-71.351043482,41.470163472],[-71.351128482,41.470106472],[-71.351200482,41.470047472],[-71.351251483,41.469973472],[-71.351300482,41.469924473],[-71.351335482,41.469956472],[-71.351397482,41.469931472],[-71.351450482,41.469862473],[-71.351531482,41.469801472],[-71.351618483,41.469830473],[-71.351646528,41.469867244],[-71.351663758,41.469889383],[-71.351767482,41.469855472],[-71.351840482,41.469815472],[-71.351907483,41.469780472],[-71.351977482,41.469806473],[-71.351993482,41.469724472],[-71.352068483,41.469644472],[-71.352197483,41.469620472],[-71.352305482,41.469608472],[-71.352421483,41.469605472],[-71.352494483,41.469631473],[-71.352583483,41.469627472],[-71.352691483,41.469648472],[-71.352874483,41.469616473],[-71.352968482,41.469616473],[-71.353056483,41.469581472],[-71.353139483,41.469538473],[-71.353223483,41.469467472],[-71.353347483,41.469321473],[-71.353366483,41.469251472],[-71.353331483,41.469164472],[-71.353359483,41.469116472],[-71.353401483,41.469070473],[-71.353443483,41.469018472],[-71.353496483,41.468943472],[-71.353543483,41.468869472],[-71.353586483,41.468815473],[-71.353685483,41.468746472],[-71.353741483,41.468704472],[-71.353795483,41.468640473],[-71.353848483,41.468571472],[-71.353903483,41.468509472],[-71.353960483,41.468438472],[-71.354035483,41.468372472],[-71.354105483,41.468347472],[-71.354304483,41.468237472],[-71.354377483,41.468192472],[-71.354506484,41.468119472],[-71.354657483,41.468028472],[-71.354703484,41.467999472],[-71.354763483,41.467954472],[-71.354825483,41.467905472],[-71.354963483,41.467805472],[-71.355061483,41.467731472],[-71.355089484,41.467694472],[-71.355142483,41.467628471],[-71.355183484,41.467592472],[-71.355249484,41.467585472],[-71.355301484,41.467576472],[-71.355371483,41.467541472],[-71.355447483,41.467507472],[-71.355492483,41.467488472],[-71.355579484,41.467449472],[-71.355643483,41.467410472],[-71.355717484,41.467354472],[-71.355769484,41.467305472],[-71.355815483,41.467258471],[-71.355866484,41.467194472],[-71.355910484,41.467143471],[-71.355974483,41.467082471],[-71.356022484,41.467025471],[-71.356130483,41.466907471],[-71.356181484,41.466856472],[-71.356222484,41.466807472],[-71.356291484,41.466687472],[-71.356272484,41.466640472],[-71.356222031,41.466556384],[-71.356221484,41.466555472],[-71.35622327,41.466546267],[-71.356228851,41.46650045],[-71.356233964,41.466491151],[-71.356234484,41.466488472],[-71.356255484,41.466451472],[-71.356322483,41.466400471],[-71.356413484,41.466368472],[-71.356526484,41.466351472],[-71.356636484,41.466312472],[-71.356733484,41.466301472],[-71.356838484,41.466307471],[-71.35683895,41.466307707],[-71.356839354,41.46630773],[-71.356864718,41.466320727],[-71.356933484,41.466355472],[-71.357032484,41.466388472],[-71.357125484,41.466405471],[-71.357216484,41.466384471],[-71.357411484,41.466259472],[-71.357488484,41.466187471],[-71.357538484,41.466127471],[-71.357582484,41.466064472],[-71.357658484,41.466012471],[-71.357733484,41.465938471],[-71.357791484,41.465856471],[-71.357920485,41.465620471],[-71.357981484,41.465526471],[-71.358041484,41.465426471],[-71.358072484,41.465345472],[-71.358117484,41.465283472],[-71.358239484,41.465190472],[-71.358253484,41.465131472],[-71.358262484,41.465067471],[-71.358310485,41.464992472],[-71.358346485,41.464921471],[-71.358364485,41.464849471],[-71.358376484,41.464774471],[-71.358377484,41.464706471],[-71.358393484,41.464615471],[-71.358419484,41.464545472],[-71.358460484,41.464486472],[-71.358523485,41.464440471],[-71.358571484,41.464385471],[-71.358595484,41.464331472],[-71.358629484,41.464261471],[-71.358652484,41.464197471],[-71.358680485,41.464124471],[-71.358717485,41.464018471],[-71.358736485,41.463966471],[-71.358788484,41.463877471],[-71.358836485,41.463807471],[-71.358931485,41.463637471],[-71.358965485,41.463560471],[-71.359018484,41.463463471],[-71.359067485,41.463389471],[-71.359112484,41.463327471],[-71.359157484,41.463259471],[-71.359191484,41.463183471],[-71.359267484,41.463059471],[-71.359310484,41.463016471],[-71.359336485,41.462970471],[-71.359355485,41.462925471],[-71.359378485,41.462879471],[-71.359410484,41.46285147],[-71.359565484,41.462867471],[-71.359616485,41.462865471],[-71.359665485,41.46248147],[-71.359684485,41.462336471],[-71.359746485,41.46234347],[-71.359746649,41.462343569],[-71.359747139,41.462343623],[-71.359764595,41.462354432],[-71.359784485,41.46236647],[-71.359820485,41.46236347],[-71.359858485,41.46236447],[-71.360088484,41.46240547],[-71.360088332,41.462406014],[-71.360089375,41.462406201],[-71.359994062,41.462744585],[-71.359961093,41.462821],[-71.359923484,41.462891646],[-71.359875048,41.462977921],[-71.359824899,41.463054887],[-71.359757126,41.463155318],[-71.359700221,41.463235043],[-71.359657838,41.463305614],[-71.359626888,41.463375627],[-71.359625795,41.463431566],[-71.359622461,41.463454501],[-71.359600903,41.463483908],[-71.359535059,41.463633627],[-71.359493488,41.463708522],[-71.359456085,41.463767687],[-71.359426913,41.463844838],[-71.359378576,41.463926814],[-71.35935435,41.463994731],[-71.359345178,41.464074285],[-71.359332141,41.464155984],[-71.359285685,41.464239381],[-71.359262672,41.464294401],[-71.359229977,41.464355767],[-71.359196369,41.464417086],[-71.359193393,41.464471605],[-71.359186448,41.46453394],[-71.359185044,41.464606414],[-71.359179415,41.464650844],[-71.359198781,41.464707745],[-71.359216222,41.464768921],[-71.359210954,41.464842763],[-71.359206828,41.464909643],[-71.359248484,41.464930471],[-71.35924875,41.464931282],[-71.359249315,41.464931454],[-71.359268224,41.464989064],[-71.359291306,41.465028795],[-71.359296243,41.465031122],[-71.359353485,41.465057471],[-71.359418485,41.465083471],[-71.359481485,41.465080471],[-71.359573485,41.464994472],[-71.359638484,41.464994472],[-71.359701485,41.464988471],[-71.359763485,41.464943471],[-71.359817485,41.464892471],[-71.359861485,41.464847471],[-71.359872484,41.464786471],[-71.359878485,41.464743471],[-71.359880179,41.464742018],[-71.359904189,41.46470863],[-71.359913094,41.464696268],[-71.359960981,41.46467276],[-71.359962485,41.464671471],[-71.360031485,41.464667471],[-71.360074485,41.464683471],[-71.360239485,41.464692471],[-71.360289485,41.464704471],[-71.360297575,41.464722269],[-71.360309879,41.464748711],[-71.360298261,41.464806696],[-71.360290625,41.464856065],[-71.360290896,41.464857207],[-71.360300386,41.464893536],[-71.360306811,41.464894387],[-71.360347485,41.464899471],[-71.360405485,41.464899471],[-71.360481485,41.464879471],[-71.360542485,41.464879471],[-71.360542563,41.464879701],[-71.360542921,41.464879697],[-71.360558333,41.464923649],[-71.360542321,41.464960793],[-71.360557433,41.464979486],[-71.360567485,41.464991471],[-71.360635485,41.464992472],[-71.360707485,41.464985471],[-71.360818485,41.464964471],[-71.360855485,41.464968471],[-71.360855577,41.464969222],[-71.360856016,41.464969269],[-71.360864335,41.465031783],[-71.360871551,41.465099528],[-71.360930485,41.465150472],[-71.360997485,41.465129472],[-71.361068531,41.46509351],[-71.361077866,41.465088668],[-71.361090208,41.465082538],[-71.361159485,41.465047471],[-71.361223485,41.465019471],[-71.361309486,41.464985471],[-71.361382485,41.464949471],[-71.361409486,41.464921471],[-71.361450486,41.464887471],[-71.361519485,41.464838472],[-71.361553485,41.464789471],[-71.361575485,41.464738471],[-71.361606486,41.464667471],[-71.361623486,41.464619471],[-71.361658486,41.464549471],[-71.361679486,41.464492471],[-71.361734485,41.464469471],[-71.361779486,41.464434471],[-71.361731773,41.464377583],[-71.361728095,41.464373251],[-71.361728073,41.464373171],[-71.361727485,41.464372471],[-71.361713485,41.464323471],[-71.361746485,41.464246471],[-71.361765485,41.464184471],[-71.361766485,41.464175471],[-71.361772485,41.464107471],[-71.361773485,41.464048471],[-71.361761486,41.463964471],[-71.361730485,41.463924471],[-71.361709485,41.463873471],[-71.361725485,41.463829471],[-71.361773485,41.463779471],[-71.361788485,41.463721471],[-71.361783485,41.463654471],[-71.361792485,41.463592471],[-71.361787485,41.463492471],[-71.361787485,41.46345547],[-71.361817486,41.463411471],[-71.361829485,41.463340471],[-71.361829485,41.463267471],[-71.361817486,41.463191471],[-71.361805598,41.463136987],[-71.361805485,41.463136471],[-71.361798486,41.46306647],[-71.361807485,41.463013471],[-71.361870485,41.462984471],[-71.361947485,41.462995471],[-71.361952887,41.463003303],[-71.361987858,41.463053415],[-71.362054486,41.463043471],[-71.362114485,41.462996471],[-71.362139485,41.462938471],[-71.362230486,41.462887471],[-71.362272485,41.462835471],[-71.362338486,41.462800471],[-71.362442486,41.462720471],[-71.362527485,41.46267647],[-71.362620486,41.462630471],[-71.362674486,41.46261647],[-71.362794486,41.462604471],[-71.362852486,41.462587471],[-71.362906486,41.462555471],[-71.362956485,41.46249947],[-71.362992485,41.462439471],[-71.363018486,41.46236647],[-71.363016486,41.46230447],[-71.363016486,41.46225147],[-71.362987567,41.462189643],[-71.362944562,41.462151],[-71.362944666,41.462150634],[-71.362944486,41.46215047],[-71.362951486,41.462125471],[-71.362999486,41.462067471],[-71.363057486,41.46203747],[-71.363108486,41.462004471],[-71.363157486,41.461950471],[-71.363166486,41.461874471],[-71.363184486,41.46181747],[-71.363228485,41.461774471],[-71.363295486,41.46172447],[-71.363372486,41.46164947],[-71.363426486,41.46158647],[-71.363448486,41.46151547],[-71.363432573,41.461452813],[-71.36338754,41.46140994],[-71.363311077,41.461410078],[-71.363266322,41.461382032],[-71.363266304,41.46138198],[-71.363265485,41.461381471],[-71.363246485,41.461327471],[-71.363281486,41.46129547],[-71.363381486,41.461244471],[-71.363436486,41.461188471],[-71.363435486,41.461127471],[-71.363382938,41.461089474],[-71.363370658,41.461080704],[-71.363298702,41.461019876],[-71.363278411,41.46100636],[-71.363249485,41.46098747],[-71.363182486,41.46096347],[-71.363197486,41.46092347],[-71.363251486,41.46088447],[-71.363295486,41.460841471],[-71.363302486,41.46071747],[-71.363307485,41.46066747],[-71.363303486,41.46064047],[-71.363298486,41.46061447],[-71.363277486,41.46055147],[-71.363228485,41.460486471],[-71.36320414,41.460475491],[-71.363177925,41.460463965],[-71.363121119,41.460442057],[-71.363121016,41.460441675],[-71.363120486,41.46044147],[-71.363108486,41.46039547],[-71.363108486,41.46034547],[-71.363099486,41.46029847],[-71.363062704,41.460258706],[-71.363004886,41.460242331],[-71.362959481,41.460263477],[-71.362902722,41.460306017],[-71.362855765,41.460344862],[-71.362844063,41.460354729],[-71.36280121,41.460391888],[-71.36276127,41.46041654],[-71.362760516,41.460416451],[-71.362760485,41.46041647],[-71.362758349,41.460416194],[-71.362729994,41.460412843],[-71.362729777,41.460412508],[-71.362729486,41.460412471],[-71.362717361,41.460393352],[-71.362703812,41.460372446],[-71.362703682,41.460371782],[-71.362703485,41.460371471],[-71.362693486,41.46032347],[-71.362713486,41.46025947],[-71.362741485,41.46020647],[-71.362774486,41.46014747],[-71.362773508,41.460115189],[-71.362737977,41.460087205],[-71.362667816,41.460098465],[-71.362609345,41.460130642],[-71.362569545,41.460146946],[-71.362524362,41.460149385],[-71.362523598,41.460148465],[-71.362523486,41.46014847],[-71.362496486,41.46011647],[-71.362497486,41.46006947],[-71.362491485,41.46001947],[-71.362422149,41.46000589],[-71.362359377,41.460016541],[-71.36230501,41.460020296],[-71.362261901,41.460005424],[-71.362237327,41.459985038],[-71.362215485,41.45996747],[-71.362190486,41.459922471],[-71.362186486,41.45988647],[-71.362198485,41.45985047],[-71.362237485,41.459806471],[-71.362282485,41.45976647],[-71.362303486,41.45973847],[-71.362311485,41.459690471],[-71.362323486,41.45960547],[-71.362317485,41.45942447],[-71.362286486,41.45933347],[-71.362203957,41.459262873],[-71.362202983,41.459262865],[-71.362088066,41.459353292],[-71.362081557,41.45935899],[-71.36199236,41.459487184],[-71.361891431,41.459599378],[-71.361805001,41.459726913],[-71.361694792,41.459842526],[-71.361600709,41.459922893],[-71.361488679,41.4600364],[-71.36141746,41.460130127],[-71.361313003,41.460227725],[-71.361242802,41.460243146],[-71.361242485,41.46024247],[-71.361199485,41.46014847],[-71.361181392,41.46014036],[-71.361112813,41.460109817],[-71.361035761,41.460087082],[-71.360889789,41.460192017],[-71.360861791,41.460219519],[-71.360738582,41.460271285],[-71.360595995,41.460257047],[-71.360425768,41.460245383],[-71.360267417,41.46023865],[-71.360266484,41.46023847],[-71.36026376,41.460237925],[-71.360122248,41.460209886],[-71.359975622,41.460151251],[-71.359975484,41.46015047],[-71.359975275,41.460149384],[-71.359959485,41.46006747],[-71.359965485,41.460040471],[-71.359962998,41.460037941],[-71.359907885,41.45998241],[-71.359754165,41.459971542],[-71.359623991,41.459996221],[-71.359502669,41.459975901],[-71.359363284,41.45992983],[-71.359362625,41.459929516],[-71.359362485,41.45992947],[-71.35935569,41.459926209],[-71.359237853,41.459870009],[-71.359117405,41.459783184],[-71.359117178,41.459782969],[-71.359116484,41.45978247],[-71.359059845,41.459728978],[-71.359009122,41.45968121],[-71.359008738,41.45968071],[-71.359008484,41.45968047],[-71.358916484,41.45956047],[-71.358967484,41.45945347],[-71.359065484,41.45932147],[-71.359108485,41.45921347],[-71.359115484,41.45918747],[-71.359081549,41.459122595],[-71.359052409,41.459121677],[-71.35895894,41.459156325],[-71.358930217,41.459167199],[-71.358839446,41.459135321],[-71.358838978,41.459134644],[-71.358838484,41.45913447],[-71.358789843,41.459063664],[-71.358759921,41.459020438],[-71.358744583,41.458995131],[-71.358699484,41.45892147],[-71.358715484,41.45882647],[-71.358747484,41.45870047],[-71.358753484,41.45856647],[-71.358742484,41.45845047],[-71.358721484,41.45830847],[-71.358741484,41.45817147],[-71.358825484,41.45801847],[-71.358924484,41.45790947],[-71.358981484,41.45779147],[-71.359093484,41.45775047],[-71.359184484,41.45770547],[-71.359242484,41.45758147],[-71.359353484,41.45751247],[-71.359411484,41.45741347],[-71.359398484,41.45731647],[-71.359340876,41.457242969],[-71.35922534,41.457319333],[-71.359111198,41.457453601],[-71.359007574,41.457560209],[-71.358992793,41.457562913],[-71.358976614,41.457435992],[-71.358975484,41.457431469],[-71.359033484,41.457275469],[-71.359037484,41.45716247],[-71.359107484,41.45706947],[-71.359122341,41.457014997],[-71.359097294,41.4570003],[-71.359091225,41.456996886],[-71.359002628,41.457022526],[-71.358916447,41.457062032],[-71.358848796,41.45709479],[-71.358848654,41.457094386],[-71.358848484,41.45709447],[-71.358825484,41.45702847],[-71.358798402,41.456984944],[-71.358797749,41.456984242],[-71.358703523,41.457005007],[-71.358622842,41.457045982],[-71.358572629,41.457083748],[-71.358506764,41.457119299],[-71.358420002,41.457132525],[-71.358358291,41.457131351],[-71.358358007,41.457130487],[-71.358357484,41.45713047],[-71.358343484,41.45708747],[-71.358410484,41.457019469],[-71.358435248,41.456976875],[-71.35837486,41.456991498],[-71.358300799,41.457021435],[-71.358300834,41.457020332],[-71.358300484,41.457020469],[-71.358301484,41.45697247],[-71.358336484,41.45691147],[-71.358315631,41.456881794],[-71.358311028,41.456875308],[-71.358311042,41.456875263],[-71.358310484,41.45687447],[-71.358328484,41.45681747],[-71.358377484,41.45675347],[-71.358366521,41.456697656],[-71.35830138,41.456698556],[-71.358233081,41.456707757],[-71.358232781,41.45670743],[-71.358232484,41.456707469],[-71.358214592,41.456687589],[-71.358187679,41.456658233],[-71.358158807,41.456612251],[-71.358148879,41.45659904],[-71.358124484,41.45656747],[-71.358099483,41.45652347],[-71.358095353,41.456521109],[-71.358058062,41.456499971],[-71.358057561,41.456499513],[-71.358057484,41.456499469],[-71.35805319,41.456495514],[-71.358019864,41.456465024],[-71.35797057,41.456429995],[-71.357953096,41.456415284],[-71.357932484,41.456398469],[-71.357908484,41.45635047],[-71.357920484,41.45631147],[-71.357910579,41.456257984],[-71.357860038,41.456219225],[-71.357765444,41.456199805],[-71.35776532,41.456199637],[-71.357764484,41.45619947],[-71.357737484,41.456162469],[-71.357712212,41.456129977],[-71.357702967,41.45611831],[-71.357669217,41.456093089],[-71.357644577,41.45607943],[-71.357635483,41.45607447],[-71.357577483,41.456028469],[-71.357516055,41.455964394],[-71.357461654,41.455907927],[-71.357454445,41.455894052],[-71.357429484,41.45584647],[-71.357407484,41.455771469],[-71.357369484,41.45571047],[-71.357369484,41.45564547],[-71.357388484,41.45547047],[-71.357376469,41.455411171],[-71.357372645,41.455393146],[-71.357367838,41.455368573],[-71.357357483,41.45531747],[-71.357369484,41.455266469],[-71.35737146,41.455198293],[-71.357341617,41.455154802],[-71.357329484,41.455137469],[-71.357307483,41.455089469],[-71.357345483,41.455014469],[-71.357390484,41.454940469],[-71.357380483,41.454875469],[-71.357377483,41.45484947],[-71.357434483,41.45481347],[-71.357480483,41.454769469],[-71.357502484,41.454726469],[-71.357537483,41.454667469],[-71.357565484,41.45456047],[-71.357574483,41.454466469],[-71.357573494,41.454402154],[-71.357555898,41.454366762],[-71.357535483,41.45432647],[-71.357481483,41.454276469],[-71.357421483,41.45420847],[-71.357398483,41.454144469],[-71.357406484,41.454079469],[-71.357446484,41.454005469],[-71.357499483,41.453946469],[-71.357537483,41.453892469],[-71.357562484,41.453825469],[-71.357557418,41.453814916],[-71.357538518,41.453776433],[-71.357491151,41.453737266],[-71.357490972,41.453736866],[-71.357490484,41.453736469],[-71.357471799,41.453694003],[-71.357468765,41.453687221],[-71.357468774,41.453687128],[-71.357468484,41.453686469],[-71.357473483,41.453627469],[-71.357524484,41.453578469],[-71.357554483,41.453522469],[-71.357534799,41.453474243],[-71.357468036,41.453464785],[-71.357400062,41.453451779],[-71.357399759,41.453451521],[-71.357399483,41.453451469],[-71.357362825,41.453420047],[-71.357350877,41.453409866],[-71.357350814,41.453409753],[-71.357350484,41.453409469],[-71.357340356,41.453390902],[-71.357326562,41.453366039],[-71.357274721,41.453246456],[-71.357274814,41.453246231],[-71.357274484,41.453245469],[-71.357306483,41.453167469],[-71.357357483,41.453105469],[-71.357407484,41.453021469],[-71.357393512,41.452943628],[-71.357310912,41.452878108],[-71.357303541,41.452868176],[-71.357248483,41.452794469],[-71.357200483,41.452725469],[-71.357177484,41.452647469],[-71.357164483,41.452565469],[-71.357187483,41.452470469],[-71.357261483,41.452293469],[-71.357272484,41.452203468],[-71.357314484,41.452115469],[-71.357390484,41.452059469],[-71.357366496,41.451973515],[-71.35726961,41.451958311],[-71.357168694,41.451927768],[-71.357168617,41.451927509],[-71.357168483,41.451927469],[-71.357149483,41.451864469],[-71.357178484,41.451783469],[-71.357234484,41.451714469],[-71.357267483,41.451621468],[-71.357282483,41.451534469],[-71.357304483,41.451450469],[-71.357334484,41.451344468],[-71.357381483,41.451221469],[-71.357467484,41.451138469],[-71.357586484,41.451080469],[-71.357638483,41.451032468],[-71.357657461,41.450965547],[-71.357545848,41.450981983],[-71.357429931,41.451042102],[-71.357342553,41.451103835],[-71.35730578,41.451169381],[-71.357271266,41.451272391],[-71.357234023,41.45137183],[-71.357167435,41.45146213],[-71.357045796,41.451469526],[-71.356930753,41.451463163],[-71.356790151,41.451440621],[-71.356789866,41.451440529],[-71.356789484,41.451440469],[-71.356776636,41.451436261],[-71.356673657,41.451403037],[-71.356566591,41.451349548],[-71.356566483,41.451349468],[-71.356469483,41.451269468],[-71.3564458,41.451239865],[-71.356405711,41.451190353],[-71.356354081,41.451133841],[-71.356332483,41.451110468],[-71.356280483,41.451025469],[-71.356255483,41.450901468],[-71.356320483,41.450795469],[-71.356346483,41.450701468],[-71.356322482,41.450623468],[-71.356338483,41.450537469],[-71.356371483,41.450441469],[-71.356356483,41.450358468],[-71.356355483,41.450182468],[-71.356348483,41.450096468],[-71.356265483,41.450051469],[-71.35625019,41.450043978],[-71.356168095,41.450004445],[-71.356077665,41.449948345],[-71.356050057,41.449915386],[-71.356024483,41.449885468],[-71.356082483,41.449812468],[-71.356073488,41.449762496],[-71.355967477,41.449713285],[-71.355947315,41.449698707],[-71.355888483,41.449656468],[-71.355841202,41.449615688],[-71.355808868,41.449588055],[-71.355740609,41.449527272],[-71.355679926,41.449449232],[-71.355679613,41.449448636],[-71.355679482,41.449448469],[-71.355638483,41.449370469],[-71.355679482,41.449295469],[-71.355720444,41.449234526],[-71.355686532,41.449156868],[-71.355664672,41.44913244],[-71.355627482,41.449091468],[-71.355578483,41.449019468],[-71.355551671,41.44900212],[-71.355511208,41.448976088],[-71.355399701,41.448980819],[-71.355315317,41.449023114],[-71.355208799,41.448998761],[-71.355132416,41.448996812],[-71.355034917,41.449058461],[-71.354957187,41.449156293],[-71.354895402,41.449232716],[-71.35481593,41.449320803],[-71.354721746,41.449408803],[-71.354624208,41.449473906],[-71.354518486,41.449528523],[-71.354386841,41.449594086],[-71.354247951,41.449650536],[-71.354143424,41.449687179],[-71.354016661,41.449730563],[-71.35388673,41.449736527],[-71.35388655,41.449736465],[-71.353886482,41.449736468],[-71.353882347,41.449735016],[-71.353775774,41.449698262],[-71.353721861,41.449665992],[-71.353634733,41.449711096],[-71.35354598,41.449734699],[-71.353448411,41.449731853],[-71.353303666,41.449742555],[-71.353208032,41.449730746],[-71.353207856,41.449730515],[-71.353207482,41.449730468],[-71.353151482,41.449656468],[-71.353136607,41.449617793],[-71.353084078,41.449566312],[-71.353057397,41.449562618],[-71.35295757,41.449590987],[-71.352858684,41.449686572],[-71.352799337,41.44978589],[-71.352830456,41.449869955],[-71.35277318,41.449954089],[-71.352694179,41.450006841],[-71.35255474,41.45003628],[-71.352427616,41.450037397],[-71.352329032,41.450039421],[-71.352206888,41.450015639],[-71.352206679,41.450015506],[-71.352206482,41.450015469],[-71.352127656,41.449965579],[-71.352041327,41.449929183],[-71.351955889,41.449911897],[-71.351859158,41.449848125],[-71.35177398,41.449810074],[-71.351710629,41.449784463],[-71.351681182,41.449772747],[-71.351620494,41.44978744],[-71.351578299,41.449842549],[-71.35157761,41.449842301],[-71.351577482,41.449842469],[-71.35154424,41.449830323],[-71.351473818,41.449805044],[-71.351349309,41.449818697],[-71.351311406,41.44983086],[-71.351275391,41.449908206],[-71.351280451,41.450005974],[-71.351280481,41.450006468],[-71.351301741,41.450039433],[-71.351369844,41.450144486],[-71.351457207,41.450224164],[-71.351516866,41.450279037],[-71.351553481,41.450312468],[-71.351638482,41.450380469],[-71.351638553,41.450380809],[-71.351639295,41.450381403],[-71.351658392,41.450471627],[-71.35159741,41.450553607],[-71.35155764,41.450645922],[-71.351616016,41.450812466],[-71.351625878,41.450840024],[-71.351597796,41.450944435],[-71.351526357,41.451052679],[-71.351455611,41.451110358],[-71.351343158,41.451115038],[-71.351237354,41.451176628],[-71.351182844,41.451259393],[-71.351071359,41.451332662],[-71.350959116,41.451391407],[-71.35084122,41.451463273],[-71.350668247,41.451519469],[-71.350542786,41.45153655],[-71.350408996,41.451552866],[-71.350271522,41.451571944],[-71.350147695,41.45160499],[-71.350011306,41.451680855],[-71.349846489,41.451746118],[-71.349718117,41.451772205],[-71.349567796,41.451786325],[-71.349420088,41.451813599],[-71.349264122,41.451836699],[-71.34926348,41.451836469],[-71.349260236,41.451835356],[-71.34922848,41.451824469],[-71.34914948,41.451750469],[-71.349056823,41.451795871],[-71.34905002,41.451800398],[-71.349050036,41.451937619],[-71.349044015,41.452043569],[-71.348981124,41.452133892],[-71.348870175,41.452236273],[-71.348755591,41.452333115],[-71.348688489,41.45239082],[-71.348598411,41.452446275],[-71.348482582,41.45250291],[-71.348369127,41.452584498],[-71.348265026,41.45265647],[-71.348152781,41.452714527],[-71.348036049,41.452766997],[-71.347899988,41.452817246],[-71.347745471,41.452869437],[-71.347579228,41.452904917],[-71.347431814,41.452909387],[-71.347288187,41.452906178],[-71.347142745,41.452899535],[-71.347094611,41.45289197],[-71.347017761,41.452879884],[-71.346881167,41.452833116],[-71.346776984,41.452771365],[-71.346738327,41.452720295],[-71.34670348,41.452674469],[-71.34666248,41.452596469],[-71.34664848,41.45253147],[-71.346644508,41.452482812],[-71.346580854,41.452422036],[-71.346444116,41.452385696],[-71.346282286,41.452367824],[-71.346148604,41.452375833],[-71.346148345,41.452375938],[-71.346128412,41.452445227],[-71.346128307,41.452449127],[-71.346163741,41.452546852],[-71.346170392,41.452556572],[-71.346242411,41.452660646],[-71.346269006,41.452723863],[-71.34627448,41.452736469],[-71.346274328,41.452736513],[-71.346274574,41.452737098],[-71.34626795,41.452748822],[-71.346184866,41.452763439],[-71.346165419,41.452738644],[-71.34612048,41.452682469],[-71.346072489,41.45264819],[-71.346057641,41.452637757],[-71.345950848,41.452702794],[-71.345883409,41.452786111],[-71.345820703,41.45286047],[-71.345802443,41.452894796],[-71.345742063,41.452911273],[-71.345720017,41.452952616],[-71.345736355,41.453010614],[-71.345725254,41.453064435],[-71.345719654,41.453105845],[-71.345708533,41.4531679],[-71.345688813,41.453192364],[-71.34564853,41.453243356],[-71.345577789,41.453333625],[-71.345573735,41.453338285],[-71.345550835,41.453367962],[-71.345287374,41.453505493],[-71.345280649,41.453508685],[-71.345188441,41.453511717],[-71.345188137,41.453511429],[-71.345187479,41.453511469],[-71.345131715,41.453457966],[-71.345113949,41.453441131],[-71.34511373,41.45344071],[-71.345113479,41.453440469],[-71.345020035,41.453384987],[-71.345018388,41.45338417],[-71.344953906,41.45336103],[-71.344892529,41.453348918],[-71.344827197,41.453363718],[-71.344826586,41.453363445],[-71.344826479,41.453363469],[-71.344798787,41.453351028],[-71.344758021,41.453332819],[-71.344682347,41.453311928],[-71.344595397,41.453328574],[-71.34448358,41.45337071],[-71.344426141,41.453402628],[-71.344379894,41.453457728],[-71.344344862,41.453526611],[-71.344317642,41.453595276],[-71.34429975,41.453678751],[-71.344285802,41.453752946],[-71.344268634,41.453813505],[-71.344246353,41.453876208],[-71.344212374,41.453949575],[-71.344178207,41.454037396],[-71.344147088,41.454097022],[-71.344113269,41.454154129],[-71.344084487,41.454189493],[-71.344053035,41.454223001],[-71.344013018,41.454278246],[-71.343982995,41.454324152],[-71.343942675,41.454353943],[-71.343849961,41.454377282],[-71.343757234,41.454380998],[-71.343655636,41.454382392],[-71.343555714,41.454381707],[-71.343462782,41.454382176],[-71.343349502,41.454374063],[-71.343238404,41.454356667],[-71.343238013,41.454356551],[-71.343237478,41.45435647],[-71.343200956,41.454345513],[-71.343147696,41.454329648],[-71.343068685,41.454293154],[-71.342992335,41.454259837],[-71.342984478,41.454256469],[-71.34294684,41.454231736],[-71.342911935,41.45420903],[-71.342844737,41.45416505],[-71.342784184,41.454113071],[-71.342783479,41.45411247],[-71.342773478,41.454095469],[-71.342809478,41.45404547],[-71.342891479,41.45399247],[-71.342929478,41.45395047],[-71.342943479,41.45387147],[-71.342930557,41.45383171],[-71.342889116,41.453790107],[-71.34283334,41.453748432],[-71.342832817,41.453747723],[-71.342832478,41.453747469],[-71.342809478,41.45371647],[-71.342796479,41.45366047],[-71.342792478,41.453594469],[-71.342778479,41.453550469],[-71.342772478,41.453511469],[-71.342822479,41.453475469],[-71.342825479,41.453435469],[-71.342797479,41.453379469],[-71.342839479,41.453323469],[-71.342845479,41.45327447],[-71.342820479,41.453224469],[-71.342777112,41.453170262],[-71.342726599,41.453148105],[-71.342667144,41.453158772],[-71.342602779,41.453213413],[-71.342558647,41.453273341],[-71.342527612,41.453334956],[-71.342510702,41.453401394],[-71.342509027,41.453477869],[-71.342510774,41.453534681],[-71.342487872,41.453564701],[-71.342440721,41.453578336],[-71.342408919,41.453567406],[-71.342393407,41.453549861],[-71.342359478,41.453512469],[-71.342313003,41.453467972],[-71.34224537,41.453467811],[-71.342199852,41.453459835],[-71.34219971,41.453459511],[-71.342199479,41.453459469],[-71.342189538,41.45343613],[-71.342176514,41.453406196],[-71.342175403,41.453399018],[-71.342168478,41.453357469],[-71.342124656,41.453368202],[-71.342120149,41.453370441],[-71.342091988,41.453437823],[-71.342065013,41.453492743],[-71.342038224,41.453533301],[-71.341985484,41.453557563],[-71.341930202,41.45356421],[-71.341879888,41.453565536],[-71.341879818,41.453565456],[-71.341879478,41.45356547],[-71.341846479,41.45352747],[-71.341824692,41.453476965],[-71.341785197,41.453452336],[-71.341722823,41.453437636],[-71.341641115,41.453435877],[-71.341594802,41.453467123],[-71.341573426,41.453531724],[-71.341534737,41.453577823],[-71.341485014,41.453611168],[-71.341413993,41.453652236],[-71.341335938,41.453635959],[-71.341266346,41.453626252],[-71.341260584,41.453625484],[-71.341181948,41.453630807],[-71.341134984,41.453667334],[-71.341125841,41.453713977],[-71.341113768,41.45375348],[-71.341070733,41.453799046],[-71.341013038,41.453810356],[-71.34094292,41.45379725],[-71.340938478,41.45379647],[-71.340912808,41.4537872],[-71.340867035,41.453771046],[-71.340791812,41.453740342],[-71.340740053,41.453710996],[-71.340740172,41.453710856],[-71.340739478,41.453710469],[-71.340767478,41.45367747],[-71.340849478,41.453633469],[-71.340897478,41.45359547],[-71.340929478,41.45354047],[-71.340931478,41.453496469],[-71.340930029,41.453493373],[-71.340909587,41.453450397],[-71.340867664,41.453426668],[-71.340815747,41.453412325],[-71.340751425,41.453411413],[-71.340679522,41.453415247],[-71.340668657,41.453401394],[-71.340655478,41.45338547],[-71.340713478,41.45331247],[-71.340760298,41.45324971],[-71.340754538,41.453227538],[-71.340747478,41.453201469],[-71.340778478,41.45313647],[-71.340835478,41.453084469],[-71.340879478,41.453028469],[-71.340911478,41.45297647],[-71.340942478,41.452913469],[-71.340954478,41.45286147],[-71.340912478,41.452812469],[-71.340904691,41.452811076],[-71.34081771,41.452796069],[-71.340725705,41.452816113],[-71.340657902,41.452871456],[-71.340593434,41.452942448],[-71.340550065,41.453000386],[-71.340516618,41.453065954],[-71.340479171,41.453138812],[-71.340433115,41.4532139],[-71.340392849,41.453282912],[-71.340392776,41.453337777],[-71.340400021,41.4533659],[-71.340405478,41.45338647],[-71.340405352,41.453386596],[-71.340405483,41.453387103],[-71.340352396,41.453440751],[-71.340309907,41.4534994],[-71.340270814,41.45353635],[-71.340193653,41.453539673],[-71.340122443,41.453521301],[-71.34011246,41.453513877],[-71.340090946,41.453497907],[-71.340090985,41.453497846],[-71.340090478,41.453497469],[-71.340079522,41.453419788],[-71.34002641,41.453398309],[-71.339973383,41.453378132],[-71.33991634,41.453384205],[-71.339850647,41.453372175],[-71.339788319,41.453339178],[-71.339775292,41.453329096],[-71.339735478,41.453298469],[-71.339674477,41.45324547],[-71.339635772,41.453205884],[-71.339630797,41.453200846],[-71.339630477,41.453200469],[-71.339578478,41.45313547],[-71.339547478,41.45307847],[-71.339526478,41.453027469],[-71.339526254,41.453026576],[-71.339516287,41.453014981],[-71.339514663,41.452980214],[-71.339514477,41.45297947],[-71.339515477,41.452945469],[-71.339528478,41.452891469],[-71.339591477,41.452870469],[-71.339662478,41.452834469],[-71.339718478,41.452790469],[-71.339754478,41.452737469],[-71.339755478,41.45268647],[-71.339745517,41.452630686],[-71.339698003,41.452586144],[-71.339631963,41.452566978],[-71.339631477,41.45256647],[-71.33963014,41.452565132],[-71.339588478,41.452523469],[-71.339562046,41.452474016],[-71.339557826,41.452466292],[-71.339551314,41.452456224],[-71.339519477,41.452408469],[-71.339496477,41.452358469],[-71.339400477,41.452230469],[-71.339346956,41.452189231],[-71.339339836,41.452183793],[-71.339339733,41.452183666],[-71.339339477,41.452183469],[-71.339260055,41.452085719],[-71.339235822,41.452056467],[-71.339172485,41.452001925],[-71.339125542,41.451972586],[-71.339081478,41.45194547],[-71.339042,41.451927046],[-71.339006766,41.451910875],[-71.33892269,41.451896075],[-71.338847798,41.451892151],[-71.338749962,41.451861345],[-71.338678016,41.451845582],[-71.338677477,41.451845469],[-71.338638697,41.451836209],[-71.338611302,41.451829681],[-71.338611183,41.451829638],[-71.338610477,41.45182947],[-71.338598781,41.451825176],[-71.338531791,41.451801073],[-71.338443933,41.451779178],[-71.33838065,41.451801067],[-71.338311117,41.451818579],[-71.338237337,41.451819848],[-71.338168397,41.45180326],[-71.338131477,41.451794469],[-71.338041477,41.451742469],[-71.338033059,41.451738066],[-71.337976886,41.451709018],[-71.337934011,41.451702303],[-71.337896968,41.45174639],[-71.337876804,41.451799214],[-71.33783953,41.451838087],[-71.337827688,41.451844931],[-71.337716708,41.451830847],[-71.337644507,41.451771946],[-71.337619573,41.451702019],[-71.337598654,41.451643099],[-71.33757384,41.451576442],[-71.337516361,41.451535448],[-71.337458595,41.451563748],[-71.337404196,41.451570395],[-71.33735962,41.451526467],[-71.33733305,41.451483013],[-71.337298477,41.451427469],[-71.337270476,41.451339469],[-71.337291476,41.451254469],[-71.337336477,41.451191469],[-71.337418477,41.451113469],[-71.337480477,41.451056469],[-71.337544476,41.450986469],[-71.337607477,41.450924469],[-71.337667477,41.450859469],[-71.337746477,41.450787469],[-71.337821477,41.450716469],[-71.337853477,41.450656469],[-71.337848477,41.450582469],[-71.337835476,41.450492469],[-71.337832477,41.450419469],[-71.337855476,41.450321469],[-71.337851284,41.450275346],[-71.337850495,41.450266854],[-71.337847547,41.45025069],[-71.337837477,41.450196469],[-71.337795477,41.450143469],[-71.337822477,41.450075469],[-71.337880477,41.450005469],[-71.337938477,41.449977469],[-71.338006477,41.449946469],[-71.338067477,41.449900469],[-71.338045014,41.449867262],[-71.338044848,41.449867128],[-71.337971432,41.449857282],[-71.337898971,41.449830399],[-71.337891664,41.449822728],[-71.337906439,41.449794083],[-71.337907477,41.449789469],[-71.337957477,41.449749469],[-71.337979477,41.449710469],[-71.337967605,41.44967881],[-71.337964569,41.449671201],[-71.337964628,41.449670872],[-71.337964477,41.449670469],[-71.337970477,41.449631469],[-71.337965205,41.449626308],[-71.337923901,41.449585884],[-71.337867423,41.449560052],[-71.337824622,41.449536321],[-71.337791397,41.449512352],[-71.337791603,41.449512264],[-71.337790477,41.449511468],[-71.337839477,41.449491469],[-71.337839791,41.449491555],[-71.337839932,41.449491495],[-71.337858003,41.449496522],[-71.337927477,41.449515469],[-71.337997477,41.449532468],[-71.338060477,41.449539469],[-71.338108476,41.449515469],[-71.338101561,41.449468046],[-71.338030652,41.449427041],[-71.337934614,41.44939751],[-71.337934477,41.449397469],[-71.337928257,41.449395663],[-71.337841477,41.449370469],[-71.337828231,41.449365738],[-71.337771566,41.449346241],[-71.337690716,41.449307179],[-71.337616971,41.449271192],[-71.33756599,41.449258749],[-71.337560477,41.449257469],[-71.337560432,41.449257392],[-71.337539688,41.449252329],[-71.337527616,41.449253913],[-71.33753739,41.449296168],[-71.337593674,41.449349581],[-71.337628846,41.449397018],[-71.33757452,41.449423928],[-71.337495633,41.449426629],[-71.337400802,41.449423248],[-71.337298607,41.449410891],[-71.337214449,41.449394122],[-71.337135982,41.449350443],[-71.337084995,41.449318444],[-71.337020665,41.449297884],[-71.336994364,41.449349534],[-71.336992901,41.449411624],[-71.336994991,41.449475618],[-71.336997383,41.449527834],[-71.337016784,41.449609668],[-71.337052635,41.449689764],[-71.337048702,41.449755213],[-71.337003542,41.449811936],[-71.336949545,41.449864964],[-71.336896282,41.449916049],[-71.336828224,41.449927593],[-71.336727744,41.449934152],[-71.336666457,41.449960571],[-71.336601689,41.449969444],[-71.336527757,41.449947201],[-71.336451336,41.449947893],[-71.336342771,41.4499664],[-71.336272459,41.449967604],[-71.336249646,41.449925056],[-71.336271053,41.449861759],[-71.336260807,41.449790161],[-71.33620637,41.449739929],[-71.336182361,41.449689603],[-71.33621275,41.449632585],[-71.33616224,41.449592102],[-71.336101593,41.449557733],[-71.336060949,41.449486275],[-71.336034685,41.449462772],[-71.335972433,41.449450014],[-71.335906077,41.44946156],[-71.335842961,41.449429863],[-71.335774141,41.449406186],[-71.335678369,41.449438731],[-71.335630016,41.449483144],[-71.335626935,41.449547908],[-71.335581526,41.449618352],[-71.335531487,41.449644489],[-71.335471519,41.449606188],[-71.335433273,41.449548386],[-71.335398997,41.449483271],[-71.335332344,41.449432084],[-71.335274469,41.44941988],[-71.335207913,41.449426165],[-71.335138825,41.449472424],[-71.335107094,41.449518988],[-71.335059581,41.449543757],[-71.334991959,41.449527193],[-71.334927727,41.449528245],[-71.3348692,41.449521254],[-71.334817736,41.449497761],[-71.33476517,41.44952529],[-71.334733653,41.449595387],[-71.334714484,41.449650751],[-71.334687412,41.449741644],[-71.334658739,41.449816869],[-71.33462881,41.449883675],[-71.334625929,41.44995299],[-71.334662833,41.450000385],[-71.334695622,41.450051821],[-71.334664394,41.450127797],[-71.334676515,41.4502026],[-71.334710298,41.450257925],[-71.334750842,41.450308481],[-71.334802549,41.450356171],[-71.334853507,41.450387485],[-71.334881287,41.450424666],[-71.334890697,41.450478012],[-71.334911239,41.45052847],[-71.33493974,41.450581296],[-71.33499429,41.450634776],[-71.335061367,41.450638897],[-71.335134684,41.450627864],[-71.33518975,41.45059764],[-71.33523019,41.450533204],[-71.335297157,41.450496845],[-71.335360249,41.450489937],[-71.335443543,41.45048841],[-71.335525249,41.450489579],[-71.335614593,41.450487236],[-71.335699533,41.450483721],[-71.335789355,41.450472872],[-71.335884998,41.450456016],[-71.335955715,41.450463321],[-71.33601008,41.45049393],[-71.336063932,41.450474865],[-71.336077681,41.450471248],[-71.336135514,41.450501107],[-71.336188953,41.450549394],[-71.336246509,41.450592311],[-71.336309063,41.450630525],[-71.336380324,41.450687504],[-71.336428567,41.450735257],[-71.336495724,41.450816519],[-71.336555169,41.450882241],[-71.336599556,41.450940554],[-71.336643321,41.451004104],[-71.336673672,41.451059493],[-71.33672103,41.451145163],[-71.336734483,41.451210819],[-71.336736095,41.45128332],[-71.336717285,41.451365512],[-71.336687778,41.451422462],[-71.336639248,41.451500815],[-71.33660229,41.451546892],[-71.336537782,41.451560339],[-71.336442455,41.451583714],[-71.336407765,41.451622544],[-71.336412813,41.451694295],[-71.336426382,41.451762513],[-71.336418233,41.451811764],[-71.336395511,41.451865934],[-71.336337468,41.451907315],[-71.336255429,41.451916643],[-71.336164452,41.451902677],[-71.33605265,41.451889253],[-71.335990611,41.451900051],[-71.335975703,41.45195334],[-71.336032524,41.451998887],[-71.33611261,41.452040602],[-71.336212294,41.452073929],[-71.336310779,41.452100164],[-71.336405409,41.452136868],[-71.336457653,41.452177331],[-71.336514805,41.452249041],[-71.336543422,41.452304473],[-71.336507315,41.452350505],[-71.336525346,41.452421246],[-71.336599583,41.452468326],[-71.336662456,41.452513081],[-71.336671461,41.452595198],[-71.336644102,41.452680236],[-71.336596367,41.452756577],[-71.336541284,41.452805075],[-71.336477799,41.452822412],[-71.336415338,41.452842998],[-71.336365092,41.452902457],[-71.336346413,41.452968297],[-71.336326566,41.453027617],[-71.336298905,41.453087154],[-71.336262523,41.453145604],[-71.336218109,41.453218657],[-71.336196499,41.453277379],[-71.336205331,41.453355585],[-71.3362349,41.453431876],[-71.336272829,41.453519774],[-71.336290468,41.453601652],[-71.336277998,41.453688884],[-71.336286947,41.453732441],[-71.336306654,41.453801834],[-71.336316653,41.453887154],[-71.336314569,41.453954527],[-71.336334044,41.454019368],[-71.336331365,41.454093281],[-71.336329252,41.454160013],[-71.336365078,41.454202214],[-71.336444141,41.454240679],[-71.336526284,41.454251568],[-71.336624112,41.454226161],[-71.336734967,41.454218702],[-71.33684338,41.454215197],[-71.33694161,41.454235508],[-71.337031085,41.454292627],[-71.337097106,41.454368032],[-71.337168775,41.454434114],[-71.337230942,41.454482824],[-71.337309862,41.454517995],[-71.337383743,41.454538317],[-71.33748388,41.454562472],[-71.337574196,41.454599352],[-71.337616696,41.454635455],[-71.337669115,41.454679829],[-71.337692538,41.454698204],[-71.337753655,41.454705105],[-71.337806773,41.454688668],[-71.337874867,41.454640485],[-71.337909228,41.454612151],[-71.337949883,41.454571248],[-71.338016766,41.454496306],[-71.338089484,41.454434293],[-71.338135498,41.454377525],[-71.338172934,41.454322964],[-71.338204969,41.454263981],[-71.338247345,41.454203389],[-71.338334112,41.45412669],[-71.338421458,41.454098888],[-71.338521193,41.454076684],[-71.338606659,41.454046341],[-71.338685931,41.454013588],[-71.338796164,41.453974749],[-71.338918544,41.453953262],[-71.338987066,41.453952123],[-71.339107783,41.453951606],[-71.339188583,41.453952108],[-71.339278265,41.453975263],[-71.3393374,41.454033162],[-71.339382269,41.454082967],[-71.339467297,41.454119312],[-71.339564517,41.454118075],[-71.339630963,41.454145749],[-71.339661418,41.454184808],[-71.339707787,41.454267228],[-71.339717836,41.454334275],[-71.339694842,41.454400863],[-71.339655356,41.454486205],[-71.339640103,41.454532336],[-71.339600401,41.454594145],[-71.339522761,41.45464323],[-71.339469326,41.454689696],[-71.339409995,41.45475987],[-71.339372574,41.454833391],[-71.339384515,41.454885346],[-71.339465848,41.454916586],[-71.339556382,41.454939697],[-71.339628402,41.454975703],[-71.339685257,41.455021912],[-71.339750909,41.455051574],[-71.339842368,41.45505703],[-71.339925407,41.455050285],[-71.339999724,41.455041789],[-71.340108735,41.455005783],[-71.34020773,41.45501285],[-71.340287506,41.455047358],[-71.34036796,41.455077909],[-71.340449337,41.45509147],[-71.340536293,41.455074163],[-71.340621961,41.455048439],[-71.340691153,41.455023103],[-71.340753758,41.455005809],[-71.340809402,41.454987978],[-71.340885251,41.45497491],[-71.340954441,41.454987493],[-71.341019501,41.455023031],[-71.341108532,41.455089318],[-71.341168637,41.455149824],[-71.341233928,41.455227832],[-71.341287882,41.455304865],[-71.341309471,41.455377462],[-71.341316041,41.455463531],[-71.341303635,41.45555209],[-71.341259701,41.455616637],[-71.341175619,41.455677013],[-71.341115222,41.455723676],[-71.341022519,41.455803822],[-71.340960273,41.455847921],[-71.340864219,41.455893552],[-71.340795345,41.455925429],[-71.340725142,41.455966475],[-71.340635341,41.456015842],[-71.340551763,41.456031095],[-71.340468029,41.456023477],[-71.3403833,41.456012633],[-71.340289181,41.456024876],[-71.340236872,41.456058285],[-71.34019496,41.456091411],[-71.340124236,41.456121341],[-71.340105958,41.456124541],[-71.34001871,41.456111704],[-71.339964244,41.456119221],[-71.339936502,41.456114013],[-71.339907661,41.456098033],[-71.339866793,41.456077141],[-71.339832513,41.456060444],[-71.339815758,41.456024835],[-71.339754007,41.456003594],[-71.339690605,41.456022877],[-71.339646715,41.456069105],[-71.339668375,41.45616201],[-71.339670408,41.456225341],[-71.339617593,41.456265907],[-71.339556763,41.456265525],[-71.339493956,41.456241058],[-71.339419725,41.456213602],[-71.339360772,41.456216424],[-71.33929324,41.456221452],[-71.339236628,41.456236673],[-71.339189516,41.456269884],[-71.339136439,41.456305899],[-71.339075232,41.45633495],[-71.339012798,41.4563562],[-71.338936371,41.456393486],[-71.338882183,41.456423644],[-71.338773373,41.456475498],[-71.338713582,41.456497324],[-71.338652189,41.456503482],[-71.338575142,41.456471538],[-71.338529031,41.456432206],[-71.338489851,41.456392722],[-71.338487832,41.456348969],[-71.338505787,41.456304741],[-71.338501471,41.456267593],[-71.338496275,41.45622985],[-71.338478324,41.45619895],[-71.338416989,41.456205748],[-71.338411224,41.456250337],[-71.338368748,41.456290003],[-71.338317708,41.456313556],[-71.338277441,41.456344671],[-71.338223731,41.456366322],[-71.338194368,41.456389288],[-71.338180213,41.456421035],[-71.338155399,41.45644849],[-71.33809103,41.456465209],[-71.338036467,41.456487522],[-71.337986814,41.45650321],[-71.337960475,41.456459468],[-71.33798165,41.456391573],[-71.338009443,41.456315706],[-71.338017577,41.456247565],[-71.338012931,41.456184277],[-71.337985854,41.45614385],[-71.337954245,41.456116567],[-71.337908852,41.45613082],[-71.337852107,41.456162346],[-71.3378107,41.456187605],[-71.337763419,41.456179008],[-71.337727272,41.456130312],[-71.33771812,41.456082226],[-71.337695218,41.456037712],[-71.337668561,41.455987451],[-71.337627504,41.455981973],[-71.337587554,41.456020247],[-71.337566449,41.456108382],[-71.337578561,41.456164247],[-71.337569849,41.456220015],[-71.33755331,41.456257042],[-71.337520193,41.456273599],[-71.337465403,41.456252801],[-71.337395733,41.456249409],[-71.337323683,41.456249993],[-71.337250636,41.456247946],[-71.337194631,41.45623897],[-71.337163381,41.456201877],[-71.337181018,41.456151084],[-71.337195263,41.456083409],[-71.337190572,41.456038439],[-71.337149847,41.456021847],[-71.337074128,41.456018606],[-71.33700752,41.456043212],[-71.336952044,41.456102161],[-71.336916454,41.456159331],[-71.336870956,41.456227832],[-71.336844147,41.456286638],[-71.336818623,41.456354618],[-71.336805431,41.456426869],[-71.336831915,41.456473196],[-71.336795993,41.456504866],[-71.336670042,41.456542125],[-71.336590033,41.456540319],[-71.336536653,41.456550809],[-71.336469008,41.456552566],[-71.336419531,41.456534291],[-71.336334381,41.456533872],[-71.336253491,41.456531424],[-71.336167273,41.45650818],[-71.336098114,41.456459002],[-71.33606762,41.456399702],[-71.336066223,41.456350689],[-71.33607937,41.456296826],[-71.336113356,41.456261289],[-71.336165352,41.4562207],[-71.336237393,41.456163284],[-71.336270915,41.45611862],[-71.336297451,41.456071523],[-71.33635746,41.456035977],[-71.336419593,41.455989295],[-71.336454171,41.455947881],[-71.336484532,41.455890886],[-71.336435273,41.455858844],[-71.33639611,41.455837633],[-71.336380978,41.455810602],[-71.33633088,41.455798181],[-71.336264172,41.455801882],[-71.336228359,41.455778618],[-71.336220479,41.455720677],[-71.33620828,41.455663484],[-71.336200013,41.455578098],[-71.336193462,41.455511628],[-71.336186624,41.45543864],[-71.336182691,41.455334163],[-71.336186049,41.455256295],[-71.336190445,41.455200658],[-71.336164394,41.455163435],[-71.336093155,41.455144374],[-71.336017481,41.455123477],[-71.335933939,41.455100831],[-71.335865847,41.455075142],[-71.335829156,41.455050618],[-71.335819555,41.455012343],[-71.335848501,41.45496191],[-71.335859018,41.454926362],[-71.335826412,41.454897133],[-71.335771073,41.454865265],[-71.335701885,41.454852702],[-71.335650574,41.454851416],[-71.335613169,41.454868721],[-71.335600683,41.454937657],[-71.335580805,41.454996336],[-71.335544972,41.455029286],[-71.335523653,41.455056654],[-71.335482115,41.455097578],[-71.335425806,41.45510102],[-71.335371464,41.455071714],[-71.335334212,41.455016475],[-71.335296061,41.454980263],[-71.335203535,41.454951931],[-71.335123804,41.45493702],[-71.335022367,41.454922032],[-71.334956108,41.454917226],[-71.334889637,41.454888245],[-71.334844727,41.454856071],[-71.334787225,41.454814456],[-71.3347262,41.454771624],[-71.334675283,41.454722632],[-71.334646621,41.454684809],[-71.334639883,41.454632701],[-71.334666619,41.454590865],[-71.334680822,41.454540799],[-71.334696582,41.454487466],[-71.334723002,41.454438425],[-71.334758042,41.4544068],[-71.334830325,41.454373559],[-71.334879661,41.454350691],[-71.334876561,41.454302408],[-71.334846845,41.454260718],[-71.334817058,41.454198766],[-71.334812168,41.454149245],[-71.334892627,41.454104673],[-71.334942729,41.454079199],[-71.334978244,41.45403973],[-71.334967027,41.454003419],[-71.334991107,41.453942001],[-71.335000661,41.453866589],[-71.335013753,41.453810691],[-71.335022063,41.45374646],[-71.335034808,41.453683403],[-71.334981955,41.453667135],[-71.334943659,41.453628269],[-71.334919517,41.453594249],[-71.334884441,41.453568379],[-71.334822924,41.45355235],[-71.334806277,41.453511617],[-71.334803942,41.453461345],[-71.334749962,41.45345818],[-71.334694087,41.45347077],[-71.334634232,41.453434435],[-71.334640851,41.453389802],[-71.334693845,41.453314567],[-71.3347183,41.453260994],[-71.334685526,41.453190644],[-71.334621543,41.453140055],[-71.334546264,41.453108683],[-71.334473047,41.453103409],[-71.334381546,41.453115559],[-71.334277103,41.453148341],[-71.33421812,41.453187822],[-71.334141198,41.453252548],[-71.334149323,41.453296767],[-71.334167348,41.453368834],[-71.334115081,41.453421132],[-71.334055821,41.453473648],[-71.334010483,41.453526481],[-71.333990012,41.453591037],[-71.334001308,41.453667188],[-71.334017621,41.453719698],[-71.334024141,41.453785551],[-71.334035109,41.453835561],[-71.334048636,41.453883585],[-71.334068672,41.453941841],[-71.334077507,41.453982128],[-71.334047924,41.454019524],[-71.334024971,41.454067815],[-71.334016371,41.454126213],[-71.334037175,41.454181841],[-71.334074531,41.454219424],[-71.334128074,41.454251383],[-71.334191442,41.454269313],[-71.334242403,41.454300672],[-71.334254109,41.454347413],[-71.334255695,41.454381355],[-71.334252039,41.454396466],[-71.334231296,41.454436208],[-71.334199808,41.454469713],[-71.334138757,41.454520945],[-71.33407573,41.454548093],[-71.334007361,41.454572077],[-71.333946303,41.4545665],[-71.333895486,41.454538433],[-71.333839714,41.454533984],[-71.333824373,41.454577507],[-71.333819081,41.454614229],[-71.333750147,41.454644798],[-71.333663941,41.454677744],[-71.333598472,41.454708867],[-71.333529365,41.454736165],[-71.333444155,41.454771696],[-71.33335204,41.454808727],[-71.333256402,41.454844517],[-71.3331811,41.454869382],[-71.333086169,41.45490188],[-71.332991414,41.454937032],[-71.332901914,41.454973997],[-71.332819172,41.455006878],[-71.332754584,41.455037934],[-71.332708264,41.455069885],[-71.332693398,41.45510554],[-71.332784688,41.455200493],[-71.332822059,41.45522049],[-71.332905127,41.45521439],[-71.332978928,41.455194806],[-71.333080847,41.455163461],[-71.333148194,41.455135566],[-71.333261669,41.455090745],[-71.333374551,41.45505251],[-71.333487261,41.455009723],[-71.333592443,41.454974289],[-71.333688789,41.454935229],[-71.33379403,41.454900458],[-71.333903964,41.454873424],[-71.334008061,41.454870053],[-71.334100545,41.454878739],[-71.334222022,41.454914798],[-71.334299065,41.454946744],[-71.334372367,41.454991241],[-71.334449537,41.455044799],[-71.334534722,41.455102692],[-71.334619417,41.455150155],[-71.334693627,41.455196551],[-71.334746293,41.455227204],[-71.334833084,41.455263509],[-71.334902084,41.455290457],[-71.334975155,41.455330356],[-71.335048776,41.455345419],[-71.335127294,41.455371489],[-71.335215243,41.455394668],[-71.335205157,41.455440051],[-71.335128509,41.455491696],[-71.335043196,41.455544221],[-71.334980542,41.455579832],[-71.334906566,41.455632761],[-71.334886871,41.455714928],[-71.334891728,41.455801727],[-71.334889193,41.455878247],[-71.334875148,41.455950474],[-71.334835946,41.456004437],[-71.334775824,41.45600076],[-71.334668237,41.455965019],[-71.334568734,41.455954562],[-71.334485588,41.455978936],[-71.334401257,41.45601511],[-71.334342404,41.456038215],[-71.334283014,41.456069165],[-71.33425379,41.456132633],[-71.334294482,41.456185842],[-71.334308658,41.45622991],[-71.334218539,41.456234857],[-71.334179757,41.456278987],[-71.334189139,41.45633167],[-71.334241985,41.45642309],[-71.334308424,41.456489326],[-71.334368421,41.456566164],[-71.334421183,41.456654976],[-71.334466728,41.456700851],[-71.334531716,41.456716153],[-71.334638693,41.456681338],[-71.334735674,41.456655932],[-71.334750332,41.456654283],[-71.33478454,41.456699089],[-71.334777674,41.456757421],[-71.334711664,41.456833004],[-71.334607099,41.456863797],[-71.33450466,41.456883478],[-71.334397336,41.45691111],[-71.334265652,41.456918468],[-71.334202801,41.456911585],[-71.334116843,41.456893599],[-71.334027246,41.45687243],[-71.333927484,41.456855385],[-71.333842091,41.456830836],[-71.333751649,41.456866497],[-71.333673253,41.456899248],[-71.333571864,41.456924121],[-71.333496721,41.456933252],[-71.333397503,41.456929335],[-71.333307288,41.456912052],[-71.33320894,41.456889131],[-71.333150596,41.456867159],[-71.33308299,41.456889154],[-71.333061174,41.456943942],[-71.333026634,41.457004955],[-71.332983831,41.457075356],[-71.332927758,41.457140225],[-71.332871742,41.457206353],[-71.332864511,41.457275822],[-71.33290679,41.457326312],[-71.332945023,41.457401793],[-71.332965214,41.457482966],[-71.332981108,41.457544601],[-71.332998888,41.457629086],[-71.333011441,41.457713084],[-71.333023752,41.457772861],[-71.333043785,41.457868373],[-71.333040383,41.457926641],[-71.33301634,41.458007635],[-71.332998986,41.458064945],[-71.33301268,41.458154776],[-71.333041496,41.458215447],[-71.333081924,41.458300651],[-71.333110899,41.458382888],[-71.333120452,41.458439483],[-71.333107762,41.458503844],[-71.333028754,41.458560813],[-71.33292041,41.458641387],[-71.332867069,41.458671521],[-71.332864005,41.458680756],[-71.332912153,41.458707584],[-71.332980879,41.458747615],[-71.332959195,41.458786074],[-71.332884868,41.458831798],[-71.332790254,41.458833627],[-71.332701259,41.458825494],[-71.332614724,41.458889175],[-71.332574535,41.458959488],[-71.33253438,41.459087297],[-71.332540968,41.459173367],[-71.332548989,41.459234602],[-71.332519226,41.459305295],[-71.33246562,41.459367447],[-71.332429922,41.459440923],[-71.332399986,41.459507705],[-71.332371306,41.459582929],[-71.332356998,41.459649323],[-71.332372896,41.459768477],[-71.332427803,41.459885972],[-71.332447364,41.459952118],[-71.33244262,41.459999955],[-71.332466526,41.460066657],[-71.332502105,41.460122557],[-71.332489709,41.4601549],[-71.332441336,41.46017969],[-71.332440001,41.460226091],[-71.332455708,41.460265542],[-71.332471658,41.460329167],[-71.332473714,41.460392543],[-71.332456504,41.460452438],[-71.332415161,41.460497958],[-71.332362602,41.460507167],[-71.332297,41.460516699],[-71.332225158,41.460540791],[-71.332194577,41.460574892],[-71.332132538,41.460605264],[-71.332064841,41.460625337],[-71.331920285,41.460693142],[-71.331826717,41.460736092],[-71.331764086,41.460772364],[-71.331698422,41.460817185],[-71.331641866,41.460890561],[-71.331604259,41.460960786],[-71.331570682,41.461024407],[-71.331539375,41.461080119],[-71.331523671,41.461192251],[-71.331516992,41.461235557],[-71.331473731,41.461258249],[-71.331376682,41.461283013],[-71.331299582,41.461305907],[-71.331230751,41.461282204],[-71.331170146,41.461287055],[-71.331140474,41.461321843],[-71.331145391,41.461372027],[-71.331149169,41.461415691],[-71.331117808,41.46143353],[-71.331051907,41.461416898],[-71.330974788,41.461458797],[-71.330927133,41.461499207],[-71.330847849,41.461532001],[-71.330781509,41.461544184],[-71.330695856,41.461570588],[-71.33061163,41.461609412],[-71.330547035,41.461640443],[-71.330476388,41.461671693],[-71.330399718,41.461704399],[-71.330322865,41.461714234],[-71.330227423,41.461716724],[-71.330141568,41.461739215],[-71.330100729,41.461776891],[-71.330062056,41.461823626],[-71.330016059,41.46188103],[-71.330000119,41.461931092],[-71.329976375,41.462000331],[-71.329949155,41.462050696],[-71.329913009,41.462096086],[-71.329865152,41.462131967],[-71.329798297,41.462189272],[-71.329748304,41.462216665],[-71.329668729,41.46224358],[-71.329601623,41.462257728],[-71.329533147,41.462260852],[-71.329439742,41.462251519],[-71.329369811,41.462241559],[-71.329275153,41.462223122],[-71.329218339,41.462196486],[-71.329171462,41.462159801],[-71.329100592,41.462148581],[-71.329021133,41.462177439],[-71.328930221,41.46220333],[-71.328877583,41.462230193],[-71.328857486,41.462265337],[-71.328838978,41.462297191],[-71.328804927,41.462331377],[-71.328782675,41.462376398],[-71.328752638,41.462422299],[-71.328711856,41.462461255],[-71.328622662,41.462504072],[-71.328555506,41.462536562],[-71.328490258,41.46257221],[-71.328496112,41.462623677],[-71.32847565,41.462669958],[-71.328459131,41.46270831],[-71.328412978,41.462743461],[-71.328361873,41.462765043],[-71.328351696,41.462808435],[-71.328347484,41.462849092],[-71.328330287,41.46289069],[-71.328274251,41.462937901],[-71.328188613,41.462945984],[-71.328082282,41.462938278],[-71.328005606,41.46291479],[-71.327967397,41.462877249],[-71.327955857,41.462814796],[-71.327948241,41.462762732],[-71.327947023,41.462717677],[-71.327914866,41.462679321],[-71.327863991,41.46270614],[-71.32785003,41.4627431],[-71.327833973,41.462790532],[-71.327778291,41.462807006],[-71.327732029,41.462802317],[-71.327681354,41.462776855],[-71.327627507,41.462777598],[-71.327573184,41.462786207],[-71.32750758,41.46279512],[-71.327484406,41.46282054],[-71.3274636,41.462858999],[-71.32741304,41.462892976],[-71.327362363,41.46292501],[-71.327347971,41.462952181],[-71.327326543,41.462995854],[-71.327264645,41.463028808],[-71.327218058,41.463054879],[-71.327156408,41.463074774],[-71.327091254,41.463074494],[-71.327007283,41.463061674],[-71.326939561,41.463043825],[-71.326903861,41.463023189],[-71.326897933,41.462988692],[-71.32690909,41.462966181],[-71.326850839,41.462965728],[-71.326776788,41.462961111],[-71.326695125,41.462960622],[-71.326642639,41.462952858],[-71.326570762,41.462920114],[-71.326539084,41.462873229],[-71.326524855,41.462827833],[-71.326512042,41.462775898],[-71.326496106,41.462731872],[-71.326492247,41.462685577],[-71.326490292,41.462643128],[-71.326496831,41.46259662],[-71.326516165,41.462563418],[-71.326555273,41.46252581],[-71.326613139,41.462499483],[-71.326714461,41.462492934],[-71.326759229,41.462521795],[-71.326771707,41.462585507],[-71.326829661,41.462674857],[-71.326940982,41.462715115],[-71.327031848,41.462707499],[-71.327096715,41.462701239],[-71.327162347,41.46269299],[-71.327204759,41.462670321],[-71.327164176,41.462656995],[-71.327093667,41.4626353],[-71.327045576,41.462609773],[-71.327017146,41.462576523],[-71.327009168,41.462535573],[-71.327019633,41.462498677],[-71.32706395,41.462479898],[-71.327096613,41.462453578],[-71.327067329,41.462421036],[-71.327028383,41.462386741],[-71.326944175,41.462349061],[-71.326866522,41.462361523],[-71.326790089,41.462361545],[-71.326858985,41.462291826],[-71.326945379,41.462262157],[-71.326943942,41.4622308],[-71.326966435,41.462209976],[-71.327010435,41.462184656],[-71.326997564,41.462131372],[-71.326982424,41.462085381],[-71.326969495,41.462030816],[-71.326963757,41.46198198],[-71.326971379,41.461939956],[-71.326995625,41.461900107],[-71.327015291,41.461855837],[-71.327033542,41.461818083],[-71.327061887,41.461791871],[-71.327084687,41.461815461],[-71.327106473,41.461854785],[-71.327136533,41.461903658],[-71.327165538,41.461949281],[-71.327215677,41.461981969],[-71.327281156,41.462008346],[-71.327335299,41.462033081],[-71.327362198,41.462070285],[-71.327349435,41.462113719],[-71.327374209,41.462161441],[-71.327415347,41.462206099],[-71.327445944,41.462247791],[-71.327483405,41.462269048],[-71.32753026,41.462267815],[-71.32758039,41.46228088],[-71.327625786,41.462267958],[-71.327677006,41.462248366],[-71.327716631,41.462221828],[-71.327658975,41.462157316],[-71.327658552,41.462110272],[-71.327685094,41.462064526],[-71.327694536,41.462023762],[-71.327699312,41.461976589],[-71.327710342,41.461933152],[-71.327708444,41.461892029],[-71.327695657,41.461783879],[-71.327690338,41.4616684],[-71.327688028,41.461599146],[-71.327688717,41.461557318],[-71.327697076,41.461512002],[-71.327717143,41.46147688],[-71.327772874,41.461441424],[-71.32776933,41.46140231],[-71.327760499,41.461361383],[-71.327758641,41.461282364],[-71.327756311,41.461232137],[-71.327753122,41.461162264],[-71.327756873,41.461111841],[-71.327782771,41.460975894],[-71.327798137,41.460913413],[-71.32781792,41.46087111],[-71.327847726,41.460820658],[-71.327867652,41.46078158],[-71.327876326,41.460743468],[-71.327843911,41.460699875],[-71.327827123,41.460655893],[-71.32782241,41.460610238],[-71.327819881,41.460554797],[-71.327824543,41.460505015],[-71.32784642,41.46045215],[-71.327891808,41.460418941],[-71.327951262,41.460389299],[-71.328002988,41.460361841],[-71.328062682,41.460356373],[-71.328130994,41.460368299],[-71.328196357,41.460392067],[-71.328271843,41.460428017],[-71.328337811,41.460464205],[-71.328448677,41.46051489],[-71.328516665,41.460557598],[-71.328591214,41.46059158],[-71.328660475,41.460624433],[-71.328728799,41.460655318],[-71.32879919,41.460675023],[-71.328853463,41.460684732],[-71.328892339,41.460641885],[-71.328957304,41.46056244],[-71.329012037,41.460524465],[-71.329062374,41.460504849],[-71.329122413,41.460507179],[-71.329197746,41.460520259],[-71.32925604,41.460503696],[-71.3293149,41.460479952],[-71.329371117,41.460455633],[-71.32941864,41.460430867],[-71.329445652,41.460413823],[-71.329445687,41.460377231],[-71.329476673,41.460351594],[-71.329535302,41.460323276],[-71.329593711,41.460309366],[-71.329653491,41.460305841],[-71.329710237,41.460311574],[-71.329743522,41.460336826],[-71.329803122,41.460367308],[-71.3299386,41.46042322],[-71.329991557,41.460459754],[-71.330040929,41.460495069],[-71.330090751,41.460521215],[-71.330183117,41.460508361],[-71.330243673,41.460521807],[-71.330331016,41.460569848],[-71.330413915,41.460596454],[-71.330514852,41.46061929],[-71.330591211,41.460635595],[-71.330658842,41.460652801],[-71.330744499,41.460682613],[-71.330802193,41.460709844],[-71.330879558,41.460748334],[-71.330956738,41.460764617],[-71.331049553,41.460742592],[-71.331144983,41.460720502],[-71.33127896,41.460687629],[-71.331360983,41.460677],[-71.331464428,41.460659267],[-71.331538366,41.460624041],[-71.331601878,41.460588388],[-71.33166334,41.460545619],[-71.331735259,41.460503895],[-71.331791883,41.460450782],[-71.33181893,41.460396482],[-71.331775509,41.460340135],[-71.331710092,41.460277787],[-71.331688391,41.460240454],[-71.331696169,41.460183405],[-71.33172018,41.46013898],[-71.331802474,41.460058415],[-71.331856139,41.459997567],[-71.331926151,41.459857888],[-71.331927821,41.459799663],[-71.331889917,41.459749705],[-71.331848576,41.459700473],[-71.331830128,41.459639498],[-71.331837602,41.459594203],[-71.331870497,41.459535223],[-71.331906698,41.459491137],[-71.331955025,41.459389915],[-71.331968493,41.459342503],[-71.332053705,41.459250094],[-71.332101714,41.459236442],[-71.332171817,41.459249626],[-71.332218525,41.459245166],[-71.332252704,41.459195268],[-71.332216614,41.459090356],[-71.332187691,41.459047318],[-71.332162282,41.45898592],[-71.332163952,41.458927695],[-71.332183557,41.458882098],[-71.332181876,41.45882659],[-71.332154122,41.458790071],[-71.332142982,41.458736104],[-71.332164671,41.458660413],[-71.332169456,41.458632175],[-71.332177322,41.458576429],[-71.332182909,41.45850833],[-71.332180478,41.458437155],[-71.332177507,41.458410438],[-71.332114493,41.458324538],[-71.332019397,41.458277972],[-71.331894761,41.458250529],[-71.331799281,41.458269989],[-71.331655686,41.45832078],[-71.331557203,41.458314209],[-71.331482935,41.458266485],[-71.33142428,41.45820003],[-71.331393573,41.458118498],[-71.331434789,41.458051435],[-71.331496479,41.458013904],[-71.331584602,41.457946909],[-71.331593349,41.457891782],[-71.331673429,41.457819767],[-71.331795173,41.457765651],[-71.331920907,41.457685263],[-71.331994918,41.457632359],[-71.332015248,41.457564533],[-71.33206553,41.457506356],[-71.332156193,41.457456311],[-71.332273951,41.457391166],[-71.332345894,41.457350104],[-71.332426664,41.457293092],[-71.332479387,41.45723094],[-71.332527965,41.457172829],[-71.332598306,41.457116099],[-71.332655522,41.457056468],[-71.332698122,41.456982156],[-71.332722609,41.456929271],[-71.332749325,41.456848829],[-71.332766578,41.456771302],[-71.332762013,41.456690358],[-71.332752373,41.456632459],[-71.33272025,41.45655749],[-71.332684876,41.456505478],[-71.332661561,41.456433563],[-71.332667681,41.456358901],[-71.332679748,41.456300462],[-71.332715506,41.456226987],[-71.332788344,41.456168225],[-71.332908671,41.456084032],[-71.332967112,41.456032202],[-71.332985362,41.455957283],[-71.333000503,41.45590914],[-71.333034651,41.455858601],[-71.333045302,41.455806724],[-71.333041121,41.455753865],[-71.333035612,41.455708917],[-71.333002039,41.455677765],[-71.332958731,41.455661259],[-71.33290325,41.455626118],[-71.332869043,41.455581289],[-71.332828728,41.455535902],[-71.332785264,41.455497188],[-71.332732109,41.455456127],[-71.332674292,41.455407307],[-71.332620113,41.455362311],[-71.332626895,41.455302012],[-71.332656621,41.455268574],[-71.332665262,41.455253881],[-71.332598814,41.455145265],[-71.332541612,41.455129104],[-71.332499185,41.455113216],[-71.332466781,41.455088584],[-71.33244127,41.455043493],[-71.332464702,41.454986694],[-71.332530753,41.454930713],[-71.332567353,41.454895798],[-71.332603551,41.454851734],[-71.332622705,41.454815284],[-71.332606682,41.454768674],[-71.332592912,41.454733091],[-71.332578073,41.454675299],[-71.332569069,41.454630438],[-71.332575316,41.454577366],[-71.332612221,41.454530009],[-71.332677717,41.454500213],[-71.332783045,41.454467411],[-71.332857827,41.454432116],[-71.332908781,41.454406622],[-71.332980013,41.454368806],[-71.333033292,41.454337369],[-71.333078556,41.454302214],[-71.333154808,41.454203526],[-71.333169355,41.454161329],[-71.333187416,41.454100726],[-71.333203842,41.454061093],[-71.333233503,41.453969495],[-71.333235344,41.453915204],[-71.333230515,41.453866347],[-71.333219201,41.453809155],[-71.333215641,41.45375106],[-71.33322138,41.453705808],[-71.333231035,41.453651322],[-71.333236775,41.453606093],[-71.33324211,41.453552356],[-71.333250291,41.453503792],[-71.333262254,41.45346166],[-71.333261671,41.453392408],[-71.333260771,41.453316638],[-71.333269125,41.453271321],[-71.333334304,41.453234343],[-71.333407105,41.453212173],[-71.333497151,41.453186963],[-71.333573723,41.453152312],[-71.333640837,41.453119201],[-71.333718508,41.453070783],[-71.333743137,41.453021122],[-71.333740763,41.452950633],[-71.333708077,41.452882181],[-71.333658286,41.45285734],[-71.333601325,41.45290261],[-71.333552706,41.452978399],[-71.33349421,41.452934153],[-71.333423468,41.452888287],[-71.333344989,41.45291978],[-71.333296416,41.452977228],[-71.333249807,41.45303987],[-71.333208164,41.453097786],[-71.333151213,41.453162654],[-71.33310015,41.453147646],[-71.333015113,41.453093],[-71.33300164,41.453083558],[-71.333037767,41.453019231],[-71.333122716,41.452977822],[-71.333180951,41.452922081],[-71.333192915,41.452879925],[-71.333146688,41.452781174],[-71.333101694,41.452747055],[-71.332948189,41.452696175],[-71.332854232,41.452729955],[-71.332798369,41.45276148],[-71.332729401,41.452735171],[-71.33266839,41.45271196],[-71.332610022,41.452689302],[-71.332521946,41.452681764],[-71.332462,41.452681402],[-71.332385387,41.452696454],[-71.33231882,41.452741274],[-71.332303391,41.452783515],[-71.332252951,41.452857358],[-71.332188914,41.452899574],[-71.332079822,41.452907626],[-71.332035733,41.452912044],[-71.33196117,41.45293357],[-71.331841277,41.452933418],[-71.331782938,41.4529114],[-71.331757006,41.452876828],[-71.331694512,41.452839253],[-71.331715859,41.452813189],[-71.331724587,41.452776381],[-71.331671651,41.452757527],[-71.331601319,41.452777001],[-71.331530047,41.452795147],[-71.331467413,41.452811796],[-71.331357332,41.452873499],[-71.33137318,41.45291622],[-71.331422752,41.452954784],[-71.331380498,41.45303694],[-71.331298,41.453093948],[-71.331249959,41.453144856],[-71.331229715,41.453214648],[-71.331210962,41.453260224],[-71.331153987,41.453286533],[-71.331123351,41.453319352],[-71.331132211,41.453360966],[-71.331153604,41.453410717],[-71.331187562,41.453468651],[-71.33121355,41.453505213],[-71.331261414,41.453545809],[-71.331320492,41.453564535],[-71.331355939,41.453598869],[-71.331349607,41.453649334],[-71.331331505,41.45369036],[-71.331287436,41.453733314],[-71.331224945,41.453753256],[-71.331155694,41.453777237],[-71.331111367,41.453814336],[-71.331084139,41.453845765],[-71.331063175,41.453899891],[-71.331087403,41.453935192],[-71.331140992,41.45394881],[-71.33119848,41.45397085],[-71.331253527,41.453996865],[-71.331259208,41.454045084],[-71.331208019,41.454102596],[-71.331145118,41.454151308],[-71.331093645,41.45416571],[-71.330991818,41.454161169],[-71.330887741,41.454145602],[-71.330797123,41.454121157],[-71.33072967,41.454108525],[-71.330655279,41.454133344],[-71.330644465,41.454200269],[-71.33066968,41.454276716],[-71.330691649,41.454338909],[-71.330721441,41.454420439],[-71.330759077,41.454501821],[-71.330788772,41.454562447],[-71.330806654,41.454629941],[-71.330810212,41.45468799],[-71.330809765,41.454754656],[-71.330793377,41.454813934],[-71.33076577,41.454874111],[-71.330729887,41.454925356],[-71.330679409,41.454942343],[-71.330652806,41.454967209],[-71.330630833,41.454999812],[-71.330575597,41.454988182],[-71.33052527,41.454970543],[-71.330467159,41.454953762],[-71.330364422,41.454948602],[-71.330306247,41.454967727],[-71.330294616,41.454998082],[-71.33027657,41.455040411],[-71.330241115,41.455043949],[-71.330232647,41.454991861],[-71.330199526,41.454951561],[-71.330140908,41.454942624],[-71.330022218,41.454911116],[-71.329912779,41.45491132],[-71.329858979,41.454931664],[-71.329817568,41.454899424],[-71.329746376,41.454862704],[-71.329686561,41.454846629],[-71.329604899,41.454826543],[-71.329500284,41.454818818],[-71.32942699,41.45483051],[-71.329406273,41.454870914],[-71.329413737,41.454957625],[-71.32939111,41.455088912],[-71.329403666,41.455134968],[-71.329421563,41.455184852],[-71.32946379,41.455253639],[-71.329501393,41.455277503],[-71.329538086,41.455300725],[-71.329553704,41.455338232],[-71.329523688,41.455365792],[-71.32948513,41.455358325],[-71.329420363,41.455329275],[-71.329362369,41.455314461],[-71.329318258,41.455337837],[-71.329321379,41.455376538],[-71.329306334,41.455410181],[-71.329301927,41.455433044],[-71.329297162,41.455464758],[-71.329303604,41.455477621],[-71.329308224,41.455489291],[-71.329289555,41.455525444],[-71.329231034,41.455537433],[-71.329150001,41.455532349],[-71.329055269,41.455511283],[-71.328985389,41.455484352],[-71.328964572,41.45544702],[-71.328925093,41.455419952],[-71.328872833,41.455397758],[-71.328809995,41.455409855],[-71.328750718,41.455443408],[-71.328696813,41.455480126],[-71.328652859,41.455525001],[-71.328620496,41.455577485],[-71.328611759,41.455651548],[-71.328624324,41.45571725],[-71.328644616,41.455780768],[-71.328665761,41.455843601],[-71.328679829,41.455903976],[-71.328700514,41.45595702],[-71.328713414,41.456010944],[-71.328638701,41.456029838],[-71.328570565,41.456021823],[-71.328491094,41.456012145],[-71.328437808,41.455986725],[-71.328386648,41.455950812],[-71.328300233,41.455922987],[-71.328241165,41.455923219],[-71.328178449,41.455900027],[-71.328100557,41.455868052],[-71.328042486,41.455870893],[-71.328001879,41.455913782],[-71.327985489,41.455973014],[-71.327991295,41.456042136],[-71.328003774,41.456105848],[-71.327996566,41.456175957],[-71.328002888,41.456256813],[-71.328007973,41.456311571],[-71.327992684,41.456356397],[-71.328011261,41.456401662],[-71.327991337,41.456440717],[-71.327938139,41.456474142],[-71.327867755,41.45651127],[-71.327794729,41.456547135],[-71.327731555,41.456570985],[-71.327662509,41.456561665],[-71.327614987,41.456529576],[-71.327565187,41.456542652],[-71.327540266,41.45658577],[-71.32753663,41.456638778],[-71.327517828,41.456758864],[-71.327475621,41.456786084],[-71.327410263,41.456819148],[-71.327352516,41.456848084],[-71.327291045,41.456871273],[-71.327228157,41.456901642],[-71.327196609,41.456933178],[-71.327192379,41.456992108],[-71.327178504,41.457031035],[-71.327145883,41.457076978],[-71.327154598,41.457115298],[-71.327186943,41.457138606],[-71.327176995,41.457187236],[-71.327177447,41.457234257],[-71.327176988,41.457281323],[-71.327179335,41.457313276],[-71.327180197,41.457332214],[-71.327186469,41.457374533],[-71.327197567,41.457408215],[-71.327210151,41.457454935],[-71.32721174,41.457509139],[-71.327217524,41.457540389],[-71.32725257,41.457565575],[-71.327322384,41.457572267],[-71.327388414,41.457572503],[-71.327461301,41.457589582],[-71.32752351,41.457620642],[-71.327599567,41.457668989],[-71.327628034,41.457721816],[-71.327633093,41.457774585],[-71.327617467,41.457831851],[-71.327589682,41.457888802],[-71.327557128,41.457955625],[-71.327551654,41.458025028],[-71.32753148,41.458077827],[-71.327501357,41.458121762],[-71.327443573,41.458187266],[-71.32738102,41.458262735],[-71.327335874,41.458320117],[-71.327304219,41.458368646],[-71.32726098,41.458429233],[-71.327209955,41.458490677],[-71.327145726,41.458567493],[-71.327076373,41.458627445],[-71.327003353,41.458682933],[-71.326929337,41.458735857],[-71.326868784,41.458779265],[-71.326796271,41.45882684],[-71.326674302,41.458894718],[-71.326592097,41.458939968],[-71.326433838,41.458992468],[-71.326311935,41.459023708],[-71.326210139,41.459039449],[-71.326139598,41.459054322],[-71.326041556,41.459075832],[-71.325952525,41.459104285],[-71.325858466,41.459136778],[-71.325791141,41.459165333],[-71.325694899,41.459207016],[-71.325628515,41.459236189],[-71.325539942,41.459275117],[-71.325456003,41.45932041],[-71.325331217,41.459383136],[-71.325251597,41.459427635],[-71.325166184,41.459478231],[-71.325071654,41.459538831],[-71.324969397,41.45960095],[-71.324837622,41.459662568],[-71.324750781,41.459701406],[-71.324634852,41.459748822],[-71.32453991,41.459781359],[-71.324396583,41.459819745],[-71.324296949,41.459844544],[-71.32415277,41.459882883],[-71.324058049,41.459901034],[-71.323932842,41.459916714],[-71.323782765,41.459921287],[-71.323656952,41.459924525],[-71.323509288,41.459925099],[-71.323409274,41.45992179],[-71.323309938,41.459915256],[-71.323214721,41.459903309],[-71.323094749,41.459882907],[-71.322965883,41.459857529],[-71.322878701,41.459831003],[-71.322841779,41.459802564],[-71.322854738,41.459744059],[-71.322843603,41.459690801],[-71.322795872,41.459635198],[-71.32271635,41.459586934],[-71.322642139,41.459598003],[-71.322576478,41.459662419],[-71.322543431,41.459718171],[-71.322521088,41.459761887],[-71.322489794,41.4597993],[-71.322412029,41.459809128],[-71.32233025,41.459785789],[-71.322197164,41.459725229],[-71.32207823,41.459670157],[-71.321984306,41.459630103],[-71.321858085,41.459605277],[-71.321728971,41.459592956],[-71.321606482,41.459592834],[-71.321476015,41.459608641],[-71.321348881,41.459639387],[-71.321225211,41.45967071],[-71.321099666,41.459698142],[-71.320968376,41.45971461],[-71.320836234,41.459731122],[-71.320729773,41.459739761],[-71.320620891,41.459733417],[-71.32049669,41.459714447],[-71.320418891,41.45970337],[-71.320278804,41.459679595],[-71.320141954,41.459650451],[-71.320015419,41.459618441],[-71.319927441,41.459594587],[-71.319791779,41.459553665],[-71.31960004,41.459463897],[-71.31953027,41.459419305],[-71.319429973,41.459353945],[-71.319375649,41.459286736],[-71.319331644,41.459236901],[-71.319263986,41.459143279],[-71.319228612,41.459072944],[-71.319212439,41.458985143],[-71.319218595,41.458892208],[-71.319258856,41.458823181],[-71.319357142,41.458769019],[-71.319461087,41.458724494],[-71.319588127,41.458672206],[-71.319671674,41.458638009],[-71.319732517,41.458601809],[-71.319785017,41.458514871],[-71.319809223,41.458435801],[-71.319848889,41.458372673],[-71.319864097,41.458325927],[-71.319909307,41.458269875],[-71.319861579,41.458214226],[-71.319773023,41.458158375],[-71.319680535,41.458073222],[-71.319579497,41.457990868],[-71.319520883,41.457925071],[-71.319480596,41.457861451],[-71.31942772,41.457787658],[-71.319364092,41.457688668],[-71.319328711,41.457598778],[-71.319319336,41.457526471],[-71.319315773,41.457429862],[-71.319295004,41.45735525],[-71.319255831,41.457240609],[-71.319228493,41.457155718],[-71.319215758,41.45706719],[-71.319221514,41.456965084],[-71.31923512,41.456882384],[-71.319249777,41.456804237],[-71.319253363,41.456749926],[-71.319289391,41.456682996],[-71.3192938,41.456627978],[-71.319328648,41.456591806],[-71.319430863,41.456566924],[-71.31950128,41.456530465],[-71.319496881,41.456472414],[-71.319450659,41.456411552],[-71.319399238,41.456350797],[-71.319330522,41.456310804],[-71.319265418,41.456349672],[-71.319250904,41.456431113],[-71.319169816,41.456500511],[-71.319104885,41.456542718],[-71.319084032,41.456618408],[-71.318994665,41.456658611],[-71.318936039,41.456630731],[-71.318925096,41.456542824],[-71.318914674,41.456486227],[-71.31893211,41.456392967],[-71.318912594,41.456326842],[-71.31887846,41.456226411],[-71.318863791,41.456133993],[-71.318835623,41.45603085],[-71.318785134,41.455952463],[-71.318740015,41.455877789],[-71.318700634,41.455795166],[-71.318598637,41.45565472],[-71.318502588,41.455605581],[-71.31840457,41.455608765],[-71.318330858,41.455649243],[-71.318284769,41.455704676],[-71.318180865,41.4557688],[-71.318127226,41.455773449],[-71.318056083,41.455775944],[-71.317968922,41.455787996],[-71.317880787,41.455779166],[-71.317807562,41.455754281],[-71.317619338,41.455608209],[-71.317580387,41.45553542],[-71.317547631,41.455465019],[-71.317530465,41.455374609],[-71.317545883,41.455274897],[-71.317600188,41.455227734],[-71.317666882,41.455185484],[-71.317686353,41.455136618],[-71.317722102,41.455082793],[-71.317800182,41.455099726],[-71.317858152,41.455057051],[-71.317916122,41.454938561],[-71.317956698,41.454876121],[-71.317989144,41.45480731],[-71.318005231,41.454740235],[-71.318016393,41.454662174],[-71.318018741,41.45456148],[-71.317993855,41.45449219],[-71.317956796,41.454460502],[-71.317908906,41.454420564],[-71.317825421,41.454380249],[-71.317745445,41.454378407],[-71.317697659,41.454377691],[-71.317653121,41.454335082],[-71.317593839,41.454292815],[-71.317494872,41.45425554],[-71.317415001,41.454237986],[-71.317324906,41.454223984],[-71.31723424,41.454196922],[-71.31715634,41.454202858],[-71.317050352,41.454240906],[-71.316915556,41.454275111],[-71.316788006,41.454316326],[-71.316712956,41.454346349],[-71.316619357,41.454389287],[-71.316603367,41.454400171],[-71.316588334,41.454470473],[-71.31659089,41.454544896],[-71.3165561,41.454657545],[-71.316589922,41.454694557],[-71.316615115,41.454751429],[-71.316605783,41.454794113],[-71.316552773,41.454813171],[-71.316482343,41.454811069],[-71.316393392,41.454822499],[-71.316335699,41.454852756],[-71.316281201,41.454914281],[-71.316227174,41.454949003],[-71.316164929,41.45495517],[-71.316038226,41.45490033],[-71.315965754,41.454910666],[-71.315919461,41.454962187],[-71.315856181,41.455097797],[-71.315814155,41.455166866],[-71.315774202,41.455223406],[-71.315711351,41.455293014],[-71.315672093,41.455307748],[-71.315603615,41.455367672],[-71.315573893,41.455439665],[-71.315571649,41.455523366],[-71.315558426,41.455576633],[-71.315558424,41.455652447],[-71.315566973,41.455725417],[-71.315597393,41.455782778],[-71.315630513,41.455842042],[-71.315657632,41.455884486],[-71.315651314,41.455936254],[-71.315623205,41.455985998],[-71.31560106,41.456033623],[-71.315549946,41.456112695],[-71.315492946,41.456176892],[-71.315447391,41.456225143],[-71.315417942,41.456265096],[-71.31539361,41.456279854],[-71.315357097,41.456301956],[-71.3152481,41.456274063],[-71.315125897,41.456260899],[-71.315011401,41.456263848],[-71.314908496,41.456274363],[-71.314771183,41.456272701],[-71.314636139,41.456263793],[-71.314516174,41.456319151],[-71.314388568,41.456378019],[-71.31427564,41.45639595],[-71.314146798,41.456408457],[-71.314007468,41.456420559],[-71.313884277,41.456423745],[-71.313762704,41.456424257],[-71.313671446,41.456422714],[-71.313529098,41.456406109],[-71.313386127,41.456394785],[-71.313216465,41.456351491],[-71.313102897,41.456317161],[-71.312986144,41.456290808],[-71.312844586,41.456253277],[-71.312680522,41.456198053],[-71.312567459,41.456157228],[-71.312453888,41.456124202],[-71.312340487,41.456095109],[-71.312212201,41.456062492],[-71.312098917,41.456035366],[-71.311962754,41.455982726],[-71.311835426,41.455934353],[-71.311718529,41.455884488],[-71.311599921,41.455816941],[-71.311517683,41.455766149],[-71.311413678,41.45569499],[-71.311316891,41.455629559],[-71.31124201,41.455568739],[-71.311165848,41.45549886],[-71.31112537,41.455430618],[-71.311128245,41.455340995],[-71.311173581,41.455211761],[-71.311195839,41.455147144],[-71.311274382,41.455098056],[-71.311335022,41.455037687],[-71.31141961,41.45496949],[-71.311432001,41.454879013],[-71.311425327,41.454790312],[-71.311396518,41.45469238],[-71.311319923,41.45459373],[-71.311200768,41.454495513],[-71.311146763,41.454396283],[-71.311140117,41.454308244],[-71.311206299,41.454254906],[-71.31129723,41.454210755],[-71.311366616,41.454132493],[-71.311418334,41.45406646],[-71.311444136,41.453984788],[-71.311433797,41.453891598],[-71.311417124,41.453812325],[-71.311438237,41.453722915],[-71.311502079,41.453637599],[-71.311571121,41.453551538],[-71.311658281,41.453444717],[-71.311747357,41.453379042],[-71.311809643,41.45331664],[-71.311855675,41.453240329],[-71.311873354,41.453171222],[-71.311955441,41.453104415],[-71.312015026,41.453040133],[-71.312102534,41.452959498],[-71.312154073,41.452870572],[-71.312108101,41.452758067],[-71.311989088,41.452642859],[-71.311992211,41.452540223],[-71.312013343,41.452433156],[-71.312031641,41.452339213],[-71.312098348,41.452240111],[-71.312109284,41.452137259],[-71.31207076,41.452035035],[-71.312115832,41.451995932],[-71.31214046,41.451983531],[-71.312173706,41.452008171],[-71.312204437,41.452072051],[-71.312277564,41.45217081],[-71.312318407,41.452133141],[-71.312338888,41.452030053],[-71.312365002,41.451955516],[-71.31233389,41.451844613],[-71.312321131,41.451736462],[-71.31234306,41.451626767],[-71.312367716,41.451520232],[-71.312342379,41.451441175],[-71.312288749,41.451370052],[-71.31221942,41.451335245],[-71.312109453,41.451362236],[-71.312036412,41.451360218],[-71.311990968,41.451296702],[-71.312022735,41.451212249],[-71.311980241,41.451137531],[-71.3118791,41.451129704],[-71.311747906,41.451128506],[-71.311575774,41.451124496],[-71.311436982,41.451185561],[-71.311332054,41.451246429],[-71.311216208,41.451277549],[-71.311086519,41.451271115],[-71.311046838,41.451201548],[-71.310823096,41.451132867],[-71.310822739,41.451133073],[-71.311046468,41.45120147],[-71.311042468,41.45143847],[-71.310615468,41.452045471],[-71.310272468,41.452530471],[-71.309288467,41.453896471],[-71.309219468,41.45410047],[-71.309066468,41.454535471],[-71.309059468,41.454553471],[-71.309005468,41.45472147],[-71.308669468,41.455728471],[-71.308563467,41.456716471],[-71.308410467,41.458066472],[-71.309058468,41.458152471],[-71.308830468,41.458904472],[-71.308738467,41.459207471],[-71.308693468,41.459523472],[-71.308593468,41.460237471],[-71.308532468,41.460652472],[-71.308517468,41.461279472],[-71.308517468,41.461445472],[-71.308509468,41.461914472],[-71.308547468,41.462593473],[-71.308639468,41.463244472],[-71.308670468,41.463523472],[-71.308715468,41.463905472],[-71.308746468,41.464174473],[-71.308799468,41.464633473],[-71.308906468,41.465454473],[-71.309005468,41.465849473],[-71.309058468,41.466037473],[-71.309104469,41.466234473],[-71.309394469,41.467413474],[-71.309471469,41.467744474],[-71.309532469,41.468004473],[-71.309669469,41.468569473],[-71.309677468,41.468690473],[-71.309677468,41.468722473],[-71.309677468,41.468798473],[-71.309623469,41.468921473],[-71.309379469,41.469624474],[-71.309372469,41.469683474],[-71.309356469,41.469805474],[-71.309349468,41.469944474],[-71.309394469,41.470155474],[-71.309516469,41.470639474],[-71.309524469,41.470684474],[-71.309707469,41.471392474],[-71.310027469,41.472534474],[-71.310142469,41.472955474],[-71.310554469,41.472906474],[-71.311126469,41.472836474],[-71.311470469,41.472793475],[-71.311881469,41.472744474],[-71.31207247,41.472731474],[-71.312210469,41.472728474],[-71.31232447,41.472731474],[-71.31261447,41.472734474],[-71.31339247,41.472795475],[-71.31367547,41.472816474],[-71.31369747,41.473158474],[-71.31374347,41.473580474],[-71.31375147,41.473643474],[-71.31378947,41.474016474],[-71.31381247,41.474227474],[-71.313842471,41.474483474],[-71.31388847,41.474973475],[-71.313941471,41.475612475],[-71.313941471,41.475657475],[-71.313980471,41.476111474],[-71.31398747,41.476196475],[-71.31401047,41.476443474],[-71.314018471,41.476551475],[-71.314056471,41.476951475],[-71.314079471,41.477244475],[-71.314094471,41.477482475],[-71.31414047,41.478076475],[-71.314155471,41.478242475],[-71.31416347,41.478323475],[-71.314186471,41.478615475],[-71.314193471,41.478682476],[-71.314216471,41.479006475],[-71.315399471,41.478964475],[-71.315597471,41.478956476],[-71.316200471,41.478926475],[-71.316372471,41.478931475],[-71.316369471,41.478882475],[-71.316647472,41.478870475],[-71.316425471,41.478466475],[-71.316332471,41.478034475],[-71.316228846,41.477549318],[-71.316222489,41.477519744],[-71.316222525,41.477519723],[-71.316222471,41.477519475],[-71.316280471,41.477485475],[-71.316330471,41.477446475],[-71.316331481,41.477446303],[-71.316339452,41.47743195],[-71.316893944,41.477350626],[-71.316912471,41.477347475],[-71.316959472,41.477341475],[-71.316999472,41.477341475],[-71.317039472,41.477344475],[-71.317074471,41.477348475],[-71.317116472,41.477356475],[-71.31715523,41.477370155],[-71.317168322,41.477374494],[-71.317325454,41.477449643],[-71.317421845,41.477487562],[-71.317498471,41.477505475],[-71.317552472,41.477508475],[-71.317641472,41.477516475],[-71.317720472,41.477516475],[-71.317822472,41.477501475],[-71.317917472,41.477480475],[-71.318051472,41.477461475],[-71.318214472,41.477458475],[-71.318303472,41.477460475],[-71.318389472,41.477469475],[-71.318672472,41.477512475],[-71.318738472,41.477509475],[-71.318791472,41.477493475],[-71.318821472,41.477476475],[-71.318846472,41.477448475],[-71.318870472,41.477427475],[-71.318880472,41.477399474],[-71.318916472,41.477332475],[-71.318945472,41.477333475],[-71.318950367,41.477301172],[-71.318933978,41.477294909],[-71.318980037,41.477244207],[-71.318981472,41.477241475],[-71.318990472,41.477236475],[-71.319052472,41.477203475],[-71.319097472,41.477160475],[-71.319156472,41.477111475],[-71.319229473,41.477072475],[-71.319287473,41.477035475],[-71.319338472,41.476985475],[-71.319400472,41.476936475],[-71.319465472,41.476887475],[-71.319526472,41.476837475],[-71.319582472,41.476799475],[-71.319700472,41.476723475],[-71.319772473,41.476692475],[-71.319829473,41.476666475],[-71.320088472,41.476640474],[-71.320088823,41.476641135],[-71.320089336,41.476641083],[-71.320106171,41.476672417],[-71.320226472,41.476662474],[-71.320412473,41.476650475],[-71.320628473,41.476655475],[-71.320793472,41.476672475],[-71.320986472,41.476687475],[-71.321154473,41.476706475],[-71.321294473,41.476736474],[-71.321364473,41.476759474],[-71.321426473,41.476789475],[-71.321471795,41.476818715],[-71.321488707,41.476829494],[-71.32155229,41.476888157],[-71.321575473,41.476909475],[-71.321576663,41.476909796],[-71.321596573,41.476906459],[-71.321625599,41.47692297],[-71.321627473,41.476923475],[-71.321657473,41.476933474],[-71.321685473,41.476929475],[-71.321713473,41.476917475],[-71.321726473,41.476882475],[-71.321726473,41.476852474],[-71.321753473,41.476843475],[-71.321697473,41.476680474],[-71.321686473,41.476623474],[-71.321697473,41.476565474],[-71.321723473,41.476506474],[-71.321771473,41.476442475],[-71.321772473,41.476358475],[-71.321844473,41.476346474],[-71.321926473,41.476323475],[-71.322011473,41.476295475],[-71.322081473,41.476270474],[-71.322165473,41.476246475],[-71.322255473,41.476224475],[-71.322354473,41.476201475],[-71.322430473,41.476187475],[-71.322505474,41.476176474],[-71.322649473,41.476159475],[-71.322799473,41.476139474],[-71.323046474,41.476118474],[-71.323125474,41.476110475],[-71.323151473,41.476113474],[-71.323151682,41.476113712],[-71.323151705,41.476113714],[-71.323165564,41.476129519],[-71.323204474,41.476148475],[-71.323361474,41.476145475],[-71.323476474,41.476179475],[-71.323539462,41.476218842],[-71.323572872,41.476239506],[-71.323606961,41.476283815],[-71.323614474,41.476293474],[-71.32361683,41.476297825],[-71.323653998,41.476365553],[-71.323687768,41.476460859],[-71.323736067,41.476637421],[-71.323765028,41.476846635],[-71.323771528,41.476916856],[-71.323767726,41.477085471],[-71.323744168,41.477261443],[-71.323695288,41.477377822],[-71.323693184,41.477378326],[-71.323651221,41.477406003],[-71.32364825,41.477408876],[-71.32364713,41.477440801],[-71.32364926,41.47746292],[-71.323660198,41.477483411],[-71.323662473,41.477487475],[-71.323673696,41.477497575],[-71.3236829,41.477505487],[-71.323685843,41.477506354],[-71.323705474,41.477511475],[-71.323758473,41.477511475],[-71.323784474,41.477503475],[-71.323798473,41.477491475],[-71.323804474,41.477487475],[-71.323818474,41.477471475],[-71.323821474,41.477452475],[-71.323819474,41.477430475],[-71.323808474,41.477409475],[-71.323830474,41.477362474],[-71.323851474,41.477285474],[-71.323870474,41.477201475],[-71.323882474,41.477115475],[-71.323889474,41.477019475],[-71.323891473,41.476935474],[-71.323886474,41.476835474],[-71.323878474,41.476740474],[-71.323858474,41.476623474],[-71.323801474,41.476389474],[-71.323789474,41.476310474],[-71.323782474,41.476251474],[-71.323782474,41.476205475],[-71.323787474,41.476165475],[-71.323809474,41.476116474],[-71.323852473,41.476042474],[-71.323916473,41.475927475],[-71.323967474,41.475871475],[-71.324040474,41.475774475],[-71.324063474,41.475755475],[-71.324086473,41.475733475],[-71.324111474,41.475716475],[-71.324159474,41.475693474],[-71.324285474,41.475630474],[-71.324769474,41.475357474],[-71.325044474,41.475198474],[-71.325215474,41.475100474],[-71.325356474,41.475018475],[-71.325333474,41.474942474],[-71.325552474,41.474784475],[-71.325803474,41.474619474],[-71.325990474,41.474520474],[-71.326258474,41.474380474],[-71.326372474,41.474335474],[-71.326445475,41.474304474],[-71.326512474,41.474292474],[-71.326526474,41.474290474],[-71.326766474,41.474263474],[-71.326838474,41.474252474],[-71.326887475,41.474239474],[-71.326915474,41.474239474],[-71.326915496,41.474239526],[-71.326915929,41.474239521],[-71.326990696,41.474422515],[-71.327035474,41.474531475],[-71.327035234,41.474531521],[-71.327035599,41.474532415],[-71.326983848,41.47454208],[-71.327033588,41.474673458],[-71.327184475,41.474652474],[-71.327070474,41.474319474],[-71.327130474,41.474238474],[-71.327468475,41.474162474],[-71.327533475,41.474156474],[-71.327602475,41.474154474],[-71.327679475,41.474159474],[-71.327819475,41.474175474],[-71.327908474,41.474196474],[-71.327909193,41.474197113],[-71.327909434,41.47419717],[-71.327925128,41.474211277],[-71.327962475,41.474244474],[-71.328040475,41.474273474],[-71.328110475,41.474288474],[-71.328184475,41.474307474],[-71.328256475,41.474309474],[-71.328335475,41.474291474],[-71.328385475,41.474245474],[-71.328407475,41.474216474],[-71.328410475,41.474192474],[-71.328403209,41.474177216],[-71.32840048,41.474171809],[-71.328388829,41.474150453],[-71.3283887,41.474149887],[-71.328388475,41.474149474],[-71.328379475,41.474112474],[-71.328379475,41.474057474],[-71.328358275,41.474038924],[-71.328331619,41.474016418],[-71.328267401,41.473980187],[-71.328266883,41.4739797],[-71.328266475,41.473979474],[-71.328216475,41.473932474],[-71.328198201,41.473917066],[-71.328165922,41.473890065],[-71.328165733,41.473889691],[-71.328165475,41.473889474],[-71.328137475,41.473834474],[-71.328152475,41.473771473],[-71.328187475,41.473716474],[-71.328222475,41.473664474],[-71.328267475,41.473613474],[-71.328319475,41.473564474],[-71.328370475,41.473519473],[-71.328424475,41.473482474],[-71.328490475,41.473453474],[-71.328559475,41.473436474],[-71.328637475,41.473431474],[-71.328718475,41.473424474],[-71.328797475,41.473409474],[-71.328880475,41.473385474],[-71.329035475,41.473325473],[-71.329106475,41.473292474],[-71.329166475,41.473258474],[-71.329220475,41.473219474],[-71.329289476,41.473172474],[-71.329353475,41.473132474],[-71.329410475,41.473088474],[-71.329483476,41.473044474],[-71.329544476,41.472994473],[-71.329573475,41.472942474],[-71.329606475,41.472880474],[-71.329644475,41.472829474],[-71.329688475,41.472782473],[-71.329737476,41.472739473],[-71.329793476,41.472703473],[-71.329853476,41.472667474],[-71.329882475,41.472613474],[-71.329895476,41.472560474],[-71.329919475,41.472506473],[-71.329974476,41.472463474],[-71.330041475,41.472433473],[-71.330123476,41.472417474],[-71.330200476,41.472426473],[-71.330268475,41.472455474],[-71.330336476,41.472421474],[-71.330348475,41.472360474],[-71.330380476,41.472300474],[-71.330508475,41.472227474],[-71.330559476,41.472174473],[-71.330611476,41.472131474],[-71.330668476,41.472099473],[-71.330744285,41.472109319],[-71.330745501,41.472109463],[-71.330884476,41.472049474],[-71.330959476,41.472012474],[-71.331030475,41.471981473],[-71.331102476,41.471945473],[-71.331187476,41.471915474],[-71.331270476,41.471891474],[-71.331355476,41.471862473],[-71.331436476,41.471832474],[-71.331524476,41.471824473],[-71.331611476,41.471825473],[-71.331700476,41.471823473],[-71.331783476,41.471818474],[-71.331864476,41.471793473],[-71.331939476,41.471760474],[-71.332006476,41.471735473],[-71.332073476,41.471694473],[-71.332107476,41.471575473],[-71.332149476,41.471526474],[-71.332207476,41.471492473],[-71.332269476,41.471464474],[-71.332343476,41.471456473],[-71.332429477,41.471434473],[-71.332506476,41.471398473],[-71.332569476,41.471366473],[-71.332641476,41.471355473],[-71.332712476,41.471341473],[-71.332781477,41.471317473],[-71.332854476,41.471288473],[-71.332914477,41.471256473],[-71.333029476,41.471181473],[-71.333093477,41.471154474],[-71.333153477,41.471123473],[-71.333208477,41.471080473],[-71.333269477,41.471047473],[-71.333350476,41.471042473],[-71.333422477,41.471060474],[-71.333482477,41.471092473],[-71.333530476,41.471136474],[-71.333530481,41.471136578],[-71.333531231,41.471137262],[-71.333533391,41.471184241],[-71.333493977,41.471234269],[-71.333455445,41.471284299],[-71.333417909,41.471336868],[-71.333385746,41.471393288],[-71.333367422,41.47144799],[-71.333363369,41.471510831],[-71.333398304,41.47157135],[-71.333407064,41.47162991],[-71.333375522,41.47168107],[-71.333346261,41.471743898],[-71.333350991,41.471808467],[-71.333370763,41.47186257],[-71.333435476,41.471884473],[-71.333509476,41.471895474],[-71.333580477,41.471861473],[-71.333638477,41.471824473],[-71.333691477,41.471807473],[-71.333691814,41.47180827],[-71.333692439,41.471808069],[-71.333716724,41.471866557],[-71.333760476,41.471881473],[-71.333838476,41.471885473],[-71.333921477,41.471882473],[-71.333996476,41.471866473],[-71.334051476,41.471832473],[-71.334096477,41.471784473],[-71.334132476,41.471736473],[-71.334138477,41.471673473],[-71.334126477,41.471555473],[-71.334146477,41.471500473],[-71.334187477,41.471452473],[-71.334223477,41.471391474],[-71.334261477,41.471336473],[-71.334301477,41.471290473],[-71.334347477,41.471242473],[-71.334418477,41.471224473],[-71.334489477,41.471214474],[-71.334566477,41.471181473],[-71.334629477,41.471138474],[-71.334673477,41.471096473],[-71.334690477,41.471042473],[-71.334684477,41.470980474],[-71.334671477,41.470920473],[-71.334640752,41.470898754],[-71.33461408,41.470880324],[-71.334554181,41.470843348],[-71.334554166,41.470842899],[-71.334553477,41.470842473],[-71.334551477,41.470782473],[-71.334539476,41.470728474],[-71.334531549,41.470673968],[-71.33450797,41.470646608],[-71.334489477,41.470625473],[-71.334474163,41.470600879],[-71.334456591,41.47057341],[-71.334456513,41.470572531],[-71.334456477,41.470572474],[-71.334450477,41.470512473],[-71.334457477,41.470455473],[-71.334480476,41.470395473],[-71.334539476,41.470355473],[-71.334613477,41.470328473],[-71.334682477,41.470299473],[-71.334733477,41.470248473],[-71.334780477,41.470198473],[-71.334830477,41.470148473],[-71.334896477,41.470109473],[-71.334971477,41.470085473],[-71.335045477,41.470055473],[-71.335107477,41.470022473],[-71.335179477,41.469990473],[-71.335238477,41.469955473],[-71.335354477,41.469866473],[-71.335406477,41.469813473],[-71.335444477,41.469760473],[-71.335479477,41.469705473],[-71.335517477,41.469652473],[-71.335584477,41.469615473],[-71.335654477,41.469588473],[-71.335719477,41.469564473],[-71.335805478,41.469534473],[-71.335876477,41.469513473],[-71.335962478,41.469497473],[-71.336048477,41.469484473],[-71.336125477,41.469465473],[-71.336184477,41.469433473],[-71.336261477,41.469399473],[-71.336341477,41.469376473],[-71.336412477,41.469350473],[-71.336548477,41.469287472],[-71.336623478,41.469259473],[-71.336692477,41.469242473],[-71.336771477,41.469249472],[-71.336781478,41.469250472],[-71.336849478,41.469268472],[-71.336912478,41.469296473],[-71.336983477,41.469324473],[-71.337053478,41.469348473],[-71.337121478,41.469376473],[-71.337164478,41.469396473],[-71.337184786,41.469406251],[-71.337191819,41.469409544],[-71.337204422,41.469417455],[-71.337251477,41.469446473],[-71.337323478,41.469486473],[-71.337389477,41.469526473],[-71.337415478,41.469546473],[-71.337447477,41.469570473],[-71.337510478,41.469604473],[-71.337510991,41.469605053],[-71.337556832,41.469656772],[-71.337609243,41.469700493],[-71.337652296,41.469732079],[-71.337669478,41.469744473],[-71.337669455,41.469744669],[-71.33766949,41.469744694],[-71.337662233,41.4698135],[-71.337623026,41.469867441],[-71.337589928,41.469922534],[-71.337552483,41.469977118],[-71.337507787,41.470024693],[-71.337450726,41.470068637],[-71.337377717,41.470105812],[-71.337313968,41.470136894],[-71.337294883,41.470193608],[-71.337266782,41.470243974],[-71.337215802,41.470287789],[-71.337148081,41.470326161],[-71.337086152,41.470358457],[-71.337014818,41.470394948],[-71.33695611,41.470440262],[-71.336913853,41.470485188],[-71.336913611,41.470485321],[-71.336936478,41.470630473],[-71.337257478,41.471731473],[-71.337288478,41.471812473],[-71.337310477,41.471852473],[-71.337341478,41.471892473],[-71.337394478,41.471926473],[-71.337455478,41.471957474],[-71.337494478,41.471974474],[-71.337539478,41.471987473],[-71.337600478,41.471954474],[-71.337890478,41.471975474],[-71.338035478,41.471995474],[-71.338279478,41.472003473],[-71.338516479,41.472021473],[-71.338760478,41.472029473],[-71.338684478,41.472130474],[-71.338623478,41.472217473],[-71.338569478,41.472303474],[-71.338508478,41.472390473],[-71.338447478,41.472468473],[-71.338386478,41.472555474],[-71.338325478,41.472633474],[-71.338264478,41.472719473],[-71.338203479,41.472797473],[-71.338127478,41.472898473],[-71.338096478,41.472948474],[-71.338020478,41.473085474],[-71.337990479,41.473153473],[-71.337959478,41.473203474],[-71.337928478,41.473249473],[-71.337905478,41.473299474],[-71.337883478,41.473362473],[-71.337867478,41.473425473],[-71.337844478,41.473489474],[-71.337821478,41.473557473],[-71.337791478,41.473625474],[-71.337760478,41.473689474],[-71.337730478,41.473762474],[-71.337699478,41.473834473],[-71.337608478,41.474052474],[-71.337532478,41.474202473],[-71.337348478,41.474512473],[-71.336173478,41.474153474],[-71.336131327,41.474155434],[-71.336124352,41.474197594],[-71.336175485,41.474209569],[-71.336209478,41.474217474],[-71.336284478,41.474237474],[-71.336363478,41.474265474],[-71.336440478,41.474294474],[-71.336509477,41.474322474],[-71.336561478,41.474363474],[-71.336561596,41.474363913],[-71.33656188,41.474364139],[-71.336576792,41.47441994],[-71.336580422,41.474475862],[-71.336577148,41.47453253],[-71.336576545,41.474591122],[-71.336566471,41.47465503],[-71.336557174,41.474712374],[-71.336550541,41.474774274],[-71.336545725,41.474839401],[-71.336539145,41.474904572],[-71.336530646,41.474958693],[-71.336514014,41.475006559],[-71.33651092,41.475015497],[-71.336456346,41.475059719],[-71.336407885,41.475103835],[-71.33635334,41.475148651],[-71.336292768,41.475195517],[-71.336234731,41.475238408],[-71.336176693,41.475281321],[-71.336119427,41.475319684],[-71.336072612,41.475361835],[-71.336007588,41.475401605],[-71.335939952,41.475440045],[-71.335880072,41.475477786],[-71.335812543,41.475522081],[-71.335748452,41.475565717],[-71.335681777,41.475608754],[-71.335612458,41.475651125],[-71.335548287,41.47569021],[-71.335478917,41.475728715],[-71.335410235,41.475759354],[-71.335340652,41.475786127],[-71.335274799,41.475828457],[-71.335229079,41.475882319],[-71.335194504,41.475930205],[-71.335156674,41.475990505],[-71.33513343,41.476042821],[-71.335114718,41.476106762],[-71.335101925,41.476162867],[-71.335094507,41.47622934],[-71.335097351,41.476287891],[-71.335102769,41.476345783],[-71.335103839,41.476403668],[-71.335106674,41.476460939],[-71.335113744,41.476514854],[-71.335120094,41.476577298],[-71.335123726,41.476631894],[-71.335128346,41.476693032],[-71.335139095,41.476759325],[-71.335145334,41.47681715],[-71.335155125,41.476877586],[-71.335157876,41.476932227],[-71.335159773,41.476987552],[-71.335162795,41.477055183],[-71.335171812,41.477120811],[-71.335185123,41.477184454],[-71.335186328,41.477248858],[-71.335187425,41.477308116],[-71.335194658,41.47736983],[-71.335202743,41.47743159],[-71.335211421,41.477485133],[-71.335212477,41.477491475],[-71.335213417,41.477496548],[-71.335223011,41.477545924],[-71.335227477,41.477601474],[-71.335227522,41.477601825],[-71.335229448,41.477657813],[-71.335231452,41.477718948],[-71.335234203,41.477773611],[-71.335236982,41.477828869],[-71.335239785,41.47788678],[-71.335243606,41.477951165],[-71.335246409,41.478009099],[-71.33525367,41.478072139],[-71.335258235,41.478130647],[-71.335260321,41.478195693],[-71.33526747,41.478254845],[-71.335273049,41.478321176],[-71.335281904,41.478379027],[-71.335291694,41.478440081],[-71.33529618,41.478494084],[-71.335300851,41.478559087],[-71.335302085,41.478624154],[-71.335298863,41.478683406],[-71.335292948,41.478737485],[-71.335284475,41.47879291],[-71.335268163,41.478845831],[-71.335266452,41.478848961],[-71.335172468,41.478866368],[-71.335334937,41.479458461],[-71.335366478,41.479457475],[-71.335445478,41.479451475],[-71.335523478,41.479449474],[-71.335604478,41.479464475],[-71.335681478,41.479483475],[-71.335746478,41.479519475],[-71.335801478,41.479566475],[-71.335803978,41.479571302],[-71.335831418,41.479623463],[-71.335854966,41.479679825],[-71.335880195,41.47973292],[-71.335900357,41.479793234],[-71.33592044,41.479848997],[-71.335944073,41.479907944],[-71.335966794,41.479966935],[-71.335976213,41.479991123],[-71.335989478,41.480024475],[-71.336010478,41.480082475],[-71.336015853,41.480101711],[-71.33602995,41.480151129],[-71.336050941,41.480208837],[-71.336060811,41.480268011],[-71.336062133,41.480275632],[-71.336072259,41.480329644],[-71.336085025,41.480336681],[-71.336118478,41.480354475],[-71.336161478,41.480367475],[-71.336207478,41.480371475],[-71.336262924,41.480401547],[-71.336266478,41.480403475],[-71.3362668,41.48040363],[-71.336330478,41.480434475],[-71.336407478,41.480468475],[-71.336471478,41.480502475],[-71.336519478,41.480539475],[-71.336519748,41.480539879],[-71.336519815,41.480539931],[-71.336538358,41.480567424],[-71.336559586,41.480603566],[-71.336577934,41.480634865],[-71.336579478,41.480637475],[-71.336606301,41.480664298],[-71.33661097,41.480668659],[-71.336659568,41.480876876],[-71.336663478,41.480893475],[-71.336663483,41.480893649],[-71.336663534,41.480893866],[-71.336679947,41.481460436],[-71.336834478,41.481447475],[-71.336826478,41.481210475],[-71.336814478,41.481066475],[-71.336783478,41.480859475],[-71.336784003,41.480859361],[-71.336783183,41.480853899],[-71.336871656,41.480840385],[-71.336880478,41.480838475],[-71.336999478,41.480818475],[-71.337066478,41.480792475],[-71.337144478,41.480754475],[-71.337232478,41.480740475],[-71.337335478,41.480754475]]]]}}"}, +{"type": "precinct", "typeId": 2108, "areaId": 26068, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":407,\"NAME\":\"2108\",\"SHAPE_Length\":0.029236633557685,\"SHAPE_Area\":-4.3620559145977e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.306541469,41.494066479],[-71.307067469,41.493475478],[-71.307579469,41.493708478],[-71.308334469,41.494089478],[-71.30909747,41.494519478],[-71.30917347,41.494293478],[-71.30918147,41.494257478],[-71.30966947,41.494616478],[-71.31028847,41.495162479],[-71.31037947,41.495241479],[-71.31049347,41.495338479],[-71.31078347,41.495593479],[-71.311463471,41.496229479],[-71.31182047,41.496563479],[-71.312789471,41.495967478],[-71.313613471,41.495401478],[-71.314109471,41.495027478],[-71.314315472,41.494865479],[-71.314651471,41.494610478],[-71.315658472,41.493870478],[-71.315597472,41.493803478],[-71.315437472,41.493667478],[-71.315322472,41.493548478],[-71.315063472,41.493283478],[-71.314781471,41.492987478],[-71.314729471,41.492933478],[-71.314460471,41.492651478],[-71.313957471,41.492134478],[-71.313819471,41.491835478],[-71.313567471,41.491259478],[-71.313499471,41.491076478],[-71.313462471,41.491015477],[-71.313445471,41.490987478],[-71.313400471,41.490898477],[-71.313346471,41.490804478],[-71.313285471,41.490742477],[-71.313194471,41.490663477],[-71.313110471,41.490579478],[-71.312995471,41.490483478],[-71.312934471,41.490407477],[-71.312904471,41.490318478],[-71.312881471,41.490206478],[-71.312866471,41.490138477],[-71.312858471,41.490094477],[-71.312858471,41.489837477],[-71.312866471,41.489760477],[-71.31287447,41.489706477],[-71.312820471,41.489698478],[-71.312645471,41.489625477],[-71.31221747,41.489359477],[-71.31166047,41.489010477],[-71.31113447,41.488683477],[-71.31108047,41.488648477],[-71.31050847,41.488313477],[-71.31046347,41.488286477],[-71.31034147,41.488212477],[-71.309639469,41.487790477],[-71.308812469,41.489062477],[-71.308486469,41.489565477],[-71.307960469,41.490368477],[-71.307891469,41.490464477],[-71.307639469,41.490815477],[-71.307540469,41.490957478],[-71.307327469,41.491263477],[-71.306846468,41.491746478],[-71.306511468,41.492072478],[-71.306182468,41.492385478],[-71.305671469,41.492899478],[-71.305168468,41.493405478],[-71.305862469,41.493738478],[-71.306335469,41.493962478],[-71.306434469,41.494010478],[-71.306541469,41.494066479]]]]}}"}, +{"type": "precinct", "typeId": 2201, "areaId": 25827, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":166,\"NAME\":\"2201\",\"SHAPE_Length\":0.47539547307984,\"SHAPE_Area\":-0.0026541265325277},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.57580067,41.201915258],[-71.575701654,41.201947525],[-71.575616415,41.201979166],[-71.575585885,41.202027079],[-71.575627287,41.202163501],[-71.575696648,41.202280967],[-71.575771379,41.202327918],[-71.575838215,41.202330184],[-71.575954178,41.202287751],[-71.576216858,41.202190649],[-71.576286207,41.202166931],[-71.576359462,41.202142571],[-71.576397262,41.202122213],[-71.576436719,41.202069927],[-71.576519912,41.201997393],[-71.576589976,41.201937332],[-71.576632004,41.201856866],[-71.576575985,41.201807182],[-71.576506355,41.201798148],[-71.576465676,41.201815511],[-71.576335873,41.201908294],[-71.576185399,41.201907982],[-71.576020808,41.201876277],[-71.575904853,41.201872694],[-71.57580067,41.201915258]]],[[[-71.567977105,41.224681728],[-71.568091929,41.224695177],[-71.568222386,41.224710767],[-71.568336307,41.224729362],[-71.568454072,41.224745004],[-71.568588406,41.224759859],[-71.568709114,41.224779891],[-71.568822133,41.224805119],[-71.568949691,41.224829492],[-71.569063682,41.224856914],[-71.569163071,41.224882951],[-71.569275056,41.224904474],[-71.569393889,41.224927456],[-71.569494249,41.224954909],[-71.569601494,41.224991164],[-71.569716593,41.225034732],[-71.569818133,41.225089356],[-71.569911853,41.225139615],[-71.570017297,41.225191285],[-71.570078732,41.225219654],[-71.570140261,41.225251704],[-71.570196915,41.225285199],[-71.570301496,41.225350844],[-71.57041377,41.225413533],[-71.570477238,41.225445537],[-71.570543615,41.22547827],[-71.570605117,41.225512539],[-71.570662774,41.225549006],[-71.57072043,41.225584009],[-71.570782929,41.225616013],[-71.570850242,41.22564511],[-71.570923368,41.225671961],[-71.570989678,41.225698085],[-71.571111633,41.225748234],[-71.571176036,41.225775114],[-71.571247226,41.225803453],[-71.571320385,41.225831745],[-71.571387696,41.2258594],[-71.571450161,41.225887012],[-71.571576,41.225942236],[-71.571646253,41.225972771],[-71.571718446,41.22600406],[-71.571783857,41.22603828],[-71.571842485,41.226075477],[-71.571901149,41.226117043],[-71.571962751,41.22615863],[-71.572028198,41.226197996],[-71.572095612,41.226235165],[-71.572157118,41.226272315],[-71.572214809,41.226310976],[-71.572270564,41.226351858],[-71.572330234,41.226398614],[-71.572393812,41.226446032],[-71.572460266,41.226492007],[-71.572522839,41.226534347],[-71.572579563,41.226574473],[-71.572634317,41.226613868],[-71.572690076,41.226657677],[-71.57274978,41.22670807],[-71.5728153,41.226757727],[-71.572882753,41.226801483],[-71.572944323,41.226840851],[-71.573003891,41.226877315],[-71.573062552,41.226915267],[-71.573126064,41.226956829],[-71.573195489,41.22700351],[-71.573265852,41.22704875],[-71.573332272,41.227089556],[-71.573392872,41.227127483],[-71.573453441,41.227164633],[-71.573515012,41.227204046],[-71.573582465,41.227247778],[-71.573650895,41.227297411],[-71.573715477,41.227347045],[-71.573774146,41.227391583],[-71.573831842,41.227433194],[-71.573889538,41.227474074],[-71.573952083,41.227517077],[-71.574018606,41.227567465],[-71.574084191,41.227620049],[-71.574142895,41.227667492],[-71.574199623,41.227709858],[-71.574256321,41.227752179],[-71.574315021,41.227796739],[-71.574376696,41.227846375],[-71.574438377,41.22790118],[-71.574495176,41.22795162],[-71.574548029,41.227996184],[-71.57459888,41.228037754],[-71.574650762,41.228080123],[-71.574705588,41.228126882],[-71.574764358,41.228179493],[-71.574823096,41.228229885],[-71.574878829,41.22827518],[-71.574928774,41.228319014],[-71.574975812,41.228363605],[-71.575023823,41.228411122],[-71.575073841,41.22846598],[-71.575127766,41.228519349],[-71.575183499,41.228564574],[-71.575238292,41.228608405],[-71.5752863,41.228652973],[-71.575331403,41.228700515],[-71.575375605,41.228755376],[-71.575422685,41.228809527],[-71.575472666,41.228857752],[-71.575526491,41.228903047],[-71.575584225,41.228949026],[-71.575638084,41.228996517],[-71.575686166,41.229052862],[-71.57573034,41.229108456],[-71.575773536,41.229157463],[-71.57581667,41.229204251],[-71.575858863,41.229250355],[-71.575901061,41.229300071],[-71.575944267,41.229357175],[-71.575989411,41.229412744],[-71.576033544,41.229459555],[-71.576072798,41.229504883],[-71.576148404,41.229600022],[-71.576186762,41.229655665],[-71.576227053,41.229706846],[-71.576268217,41.229752218],[-71.5763506,41.229839965],[-71.576391798,41.229888951],[-71.576432092,41.229941642],[-71.576468475,41.229992186],[-71.576532381,41.230081432],[-71.576595291,41.230173675],[-71.57662977,41.230228588],[-71.576666157,41.230282036],[-71.576738787,41.230369835],[-71.576798781,41.230455448],[-71.576842304,41.230548527],[-71.576872914,41.230610052],[-71.576921139,41.230682521],[-71.576974207,41.230752082],[-71.577041964,41.230842789],[-71.577117531,41.230928368],[-71.577195007,41.231013922],[-71.577257014,41.23110987],[-71.57731701,41.231195482],[-71.577388567,41.231270817],[-71.577457286,41.231354914],[-71.57751244,41.231444279],[-71.577552846,41.231513826],[-71.57760003,41.231576026],[-71.577659739,41.231623489],[-71.577685041,41.231627772],[-71.57771293,41.231590244],[-71.57771727,41.231520439],[-71.57771275,41.231438244],[-71.577703207,41.231336222],[-71.577691793,41.231240835],[-71.577679667,41.231182865],[-71.577660508,41.231096334],[-71.577648414,41.231039851],[-71.577636323,41.230986318],[-71.577611276,41.230890253],[-71.577587128,41.23078536],[-71.577575001,41.230726658],[-71.577550885,41.230624006],[-71.577528678,41.230520575],[-71.577518487,41.230459654],[-71.577509301,41.230403169],[-71.577492975,41.230303393],[-71.577472699,41.230193328],[-71.57746251,41.230133893],[-71.577446151,41.230031922],[-71.577433701,41.229929926],[-71.577426449,41.229869025],[-71.577418201,41.229811053],[-71.577403811,41.229708371],[-71.577382536,41.229599016],[-71.577370441,41.229541801],[-71.577348303,41.229445735],[-71.577329073,41.229348889],[-71.577321823,41.229289452],[-71.577315544,41.229231478],[-71.577303093,41.229128772],[-71.577289571,41.229016484],[-71.577282289,41.228955561],[-71.577274106,41.22890127],[-71.57725581,41.228800033],[-71.57724465,41.228739134],[-71.577231518,41.228675333],[-71.577218423,41.228617409],[-71.577203424,41.228563124],[-71.577171489,41.228456063],[-71.577157423,41.228396653],[-71.577147269,41.228340877],[-71.57713188,41.228238197],[-71.577118392,41.228128836],[-71.577113113,41.228070862],[-71.577104538,41.227966621],[-71.577088111,41.227856577],[-71.577076953,41.227797165],[-71.577052841,41.227695954],[-71.577029701,41.227596183],[-71.577019543,41.227536771],[-71.577010359,41.227481017],[-71.576988259,41.227390051],[-71.576968097,41.227298374],[-71.576957975,41.227244085],[-71.576936774,41.227144336],[-71.576917579,41.227051172],[-71.576902187,41.226945495],[-71.576894974,41.226891204],[-71.57688059,41.226792159],[-71.576859351,41.226686532],[-71.576848193,41.226625634],[-71.576836102,41.226571346],[-71.576809086,41.226472355],[-71.576781928,41.226356462],[-71.576768864,41.226298539],[-71.576741815,41.226197307],[-71.576710851,41.226090268],[-71.576694883,41.226035251],[-71.576669774,41.225935527],[-71.576650539,41.225832803],[-71.57664229,41.225772657],[-71.576635044,41.225716148],[-71.576620658,41.225614884],[-71.576609109,41.225505545],[-71.576601861,41.22544684],[-71.576584566,41.225344892],[-71.576570147,41.225241387],[-71.576562866,41.225180487],[-71.576554684,41.225125464],[-71.576545144,41.225024175],[-71.576536499,41.22491042],[-71.576531156,41.224848763],[-71.57652255,41.224742349],[-71.576520722,41.224629276],[-71.576520223,41.224564711],[-71.576519793,41.224507443],[-71.576519366,41.224453101],[-71.576518476,41.224339295],[-71.576516038,41.224275418],[-71.576511732,41.224218906],[-71.576504129,41.224115443],[-71.57650273,41.224058906],[-71.576502232,41.223995737],[-71.576501803,41.223939223],[-71.576501017,41.223836441],[-71.576495314,41.223725588],[-71.576492913,41.223667589],[-71.576485311,41.223564125],[-71.576477703,41.223456202],[-71.576474298,41.223393812],[-71.576470962,41.223338786],[-71.57646433,41.223236008],[-71.576459991,41.223178032],[-71.576456615,41.223114179],[-71.576451307,41.223056913],[-71.576440766,41.222952719],[-71.576431221,41.222846284],[-71.576427495,41.222742086],[-71.576428684,41.222644402],[-71.576427283,41.222586402],[-71.576425787,41.222524034],[-71.576423417,41.222466011],[-71.576421052,41.222411671],[-71.576419263,41.222305962],[-71.576418832,41.222247962],[-71.576418083,41.222151057],[-71.576417545,41.222079105],[-71.57641701,41.222010081],[-71.576413673,41.221953614],[-71.576411305,41.221897787],[-71.576410846,41.22184125],[-71.576411277,41.221769344],[-71.576415693,41.221711271],[-71.576420969,41.221637828],[-71.576423305,41.22156297],[-71.576424669,41.221485848],[-71.576427793,41.221385258],[-71.576433827,41.221286085],[-71.576441869,41.221195007],[-71.576444922,41.221085613],[-71.576446465,41.22103127],[-71.576451563,41.220935094],[-71.576457558,41.220829334],[-71.576460033,41.220769845],[-71.576461544,41.22071477],[-71.576461728,41.220611965],[-71.576462921,41.220544517],[-71.576463775,41.220497425],[-71.57646916,41.220439397],[-71.576481035,41.220336561],[-71.576487964,41.220225677],[-71.576492282,41.220161795],[-71.576495758,41.220103746],[-71.576500177,41.22004867],[-71.576507104,41.219936345],[-71.576511484,41.219873881],[-71.576516508,41.219766681],[-71.576521532,41.219659458],[-71.576524947,41.2196007],[-71.576529036,41.219496428],[-71.576534169,41.21940462],[-71.576538297,41.21930769],[-71.576545371,41.219217344],[-71.576554383,41.219127752],[-71.576564254,41.219020503],[-71.576568379,41.218921377],[-71.576567664,41.2188274],[-71.576566842,41.218720227],[-71.576567061,41.218622567],[-71.576568281,41.218525639],[-71.576568823,41.218470565],[-71.576570333,41.218414758],[-71.576583179,41.218313385],[-71.576599868,41.218209036],[-71.576606221,41.218150322],[-71.576614515,41.218094442],[-71.576635144,41.217991577],[-71.576663492,41.217885002],[-71.576678631,41.217828385],[-71.576691032,41.217787095],[-71.576694743,41.217774742],[-71.576727034,41.217672532],[-71.576757289,41.217565201],[-71.576782763,41.21746231],[-71.576804397,41.217364567],[-71.576823989,41.217256534],[-71.576834901,41.217159599],[-71.576827436,41.217070064],[-71.576808138,41.216963703],[-71.576788913,41.216867566],[-71.576764878,41.216776646],[-71.576743675,41.21667246],[-71.576727356,41.216574902],[-71.57671505,41.216489052],[-71.576710497,41.216403174],[-71.576715738,41.216326804],[-71.57671915,41.216265851],[-71.57671754,41.216235525],[-71.576715774,41.216201974],[-71.576711331,41.216132243],[-71.576711733,41.216061777],[-71.576714409,41.216044484],[-71.576721924,41.215995627],[-71.576724294,41.215924427],[-71.576723648,41.215837769],[-71.576725873,41.215745986],[-71.576732979,41.215658568],[-71.576740983,41.215560903],[-71.576745432,41.215506535],[-71.576750531,41.215411823],[-71.576756667,41.215323696],[-71.576760834,41.215234862],[-71.57676137,41.215175351],[-71.576758498,41.214972052],[-71.576760592,41.214872538],[-71.576770251,41.214739696],[-71.576775606,41.21457932],[-71.576791892,41.214364824],[-71.576802636,41.214228277],[-71.576814186,41.214004086],[-71.576821644,41.213932129],[-71.576823168,41.213811071],[-71.576819867,41.213733769],[-71.576814539,41.213658686],[-71.57681113,41.213540537],[-71.576803989,41.213365143],[-71.576812385,41.213292453],[-71.576826832,41.213214613],[-71.576835169,41.213144141],[-71.57684542,41.213078174],[-71.576872444,41.213007187],[-71.576899585,41.212932472],[-71.576919765,41.212862175],[-71.576931043,41.212793943],[-71.576941466,41.212719788],[-71.576946067,41.212640354],[-71.576947617,41.212566845],[-71.576950962,41.212500791],[-71.576955277,41.212435491],[-71.576960648,41.212367171],[-71.576965992,41.212300407],[-71.576967225,41.212241719],[-71.576968401,41.212185272],[-71.576972543,41.212127382],[-71.57697971,41.212066563],[-71.576989846,41.212005788],[-71.576997896,41.211949405],[-71.577007464,41.211869327],[-71.577013576,41.211812191],[-71.577019774,41.211751373],[-71.577023946,41.21169346],[-71.577032485,41.211614846],[-71.577035147,41.211534613],[-71.577040289,41.211476768],[-71.577056273,41.211419008],[-71.577077049,41.211366505],[-71.577104159,41.211291812],[-71.577134236,41.211217141],[-71.577164798,41.211167742],[-71.577200239,41.211120626],[-71.577242495,41.211075084],[-71.577287661,41.211030295],[-71.577335766,41.210987791],[-71.577385899,41.210943822],[-71.577440054,41.210894704],[-71.57750114,41.210841968],[-71.577549389,41.210792763],[-71.577590877,41.210737547],[-71.577640382,41.210675007],[-71.577686065,41.210607941],[-71.577723815,41.210542275],[-71.577754605,41.210481714],[-71.577771759,41.210414347],[-71.577774931,41.210356458],[-71.577776307,41.210291092],[-71.577778595,41.210228011],[-71.577781796,41.210169345],[-71.577784969,41.210112165],[-71.577792135,41.210051369],[-71.577802356,41.209986865],[-71.577811489,41.209924558],[-71.577821567,41.209866756],[-71.577836464,41.209812701],[-71.577856356,41.209756471],[-71.577881181,41.209697332],[-71.577910799,41.20964496],[-71.577951661,41.209574146],[-71.578000279,41.209504905],[-71.57804556,41.209457142],[-71.578096746,41.209408735],[-71.578151841,41.20936259],[-71.578211726,41.209319483],[-71.578278545,41.209276462],[-71.578347448,41.209227517],[-71.578415322,41.209180036],[-71.578472355,41.20913318],[-71.578519516,41.209088435],[-71.578559891,41.20904063],[-71.578612475,41.208971431],[-71.578656185,41.208902903],[-71.578676959,41.208850376],[-71.578691001,41.20879113],[-71.578707011,41.208731151],[-71.578721993,41.208673369],[-71.578737032,41.208611926],[-71.578752246,41.208544492],[-71.578770395,41.208475615],[-71.578785404,41.208414927],[-71.578796509,41.208356347],[-71.578807697,41.20829111],[-71.578820939,41.208221436],[-71.57883615,41.208152538],[-71.578852246,41.208088853],[-71.578866402,41.208023638],[-71.578876764,41.207951724],[-71.578879992,41.207890862],[-71.578888156,41.207830065],[-71.578898261,41.20777073],[-71.578910534,41.207701811],[-71.578928796,41.207626255],[-71.578950028,41.207552229],[-71.578962358,41.207480314],[-71.578973805,41.20740394],[-71.578991241,41.207321706],[-71.579010533,41.207246149],[-71.579028711,41.207177295],[-71.579043008,41.207103914],[-71.579047692,41.207020065],[-71.579052464,41.206933198],[-71.579067961,41.206850942],[-71.579091247,41.206772455],[-71.579112536,41.206696211],[-71.579123752,41.206630243],[-71.579127067,41.206566385],[-71.579142249,41.206498973],[-71.57916827,41.206428718],[-71.579192354,41.206359928],[-71.579209418,41.206296243],[-71.579220635,41.206230275],[-71.579234932,41.206157649],[-71.579268886,41.206086725],[-71.579308574,41.206024076],[-71.579335421,41.205961277],[-71.57935163,41.205892355],[-71.579372774,41.205821302],[-71.579404644,41.205755572],[-71.579438427,41.205693568],[-71.579465361,41.205628549],[-71.579483596,41.205556698],[-71.579502741,41.205485624],[-71.579532614,41.205421359],[-71.579568363,41.205357889],[-71.579596382,41.205288388],[-71.579617584,41.205215871],[-71.579647484,41.205149364],[-71.579679296,41.205085852],[-71.579697415,41.205018484],[-71.579709773,41.204945837],[-71.579734796,41.2048778],[-71.579765581,41.204816507],[-71.579790519,41.204753663],[-71.579811605,41.204686316],[-71.579832632,41.204619723],[-71.579859451,41.204559851],[-71.579892148,41.204502307],[-71.579925928,41.204439594],[-71.579957797,41.204373108],[-71.579992575,41.204308885],[-71.580025241,41.204251364],[-71.580055998,41.204192289],[-71.580093685,41.204129596],[-71.580138306,41.204066235],[-71.580190656,41.204008929],[-71.580239982,41.203954553],[-71.580279437,41.203901533],[-71.580319918,41.203846294],[-71.580368304,41.203791209],[-71.580431264,41.203742152],[-71.580500045,41.203699152],[-71.580567741,41.203660567],[-71.580635263,41.203628683],[-71.580709635,41.203600637],[-71.580786059,41.203567374],[-71.580863539,41.20353116],[-71.580925357,41.203490292],[-71.580981472,41.203441949],[-71.581036587,41.203392051],[-71.581093612,41.203345216],[-71.581152608,41.203299867],[-71.581210748,41.203247817],[-71.58126107,41.203192685],[-71.581307398,41.203139774],[-71.581353727,41.203087595],[-71.581399059,41.203036881],[-71.581445331,41.202988384],[-71.581488663,41.202936916],[-71.581532082,41.202883207],[-71.581577529,41.202828055],[-71.581624855,41.202774366],[-71.581665423,41.20271693],[-71.581708982,41.202654301],[-71.581761472,41.202589538],[-71.581817815,41.202530033],[-71.581874043,41.202475766],[-71.581928241,41.202421431],[-71.58198564,41.202358998],[-71.582048969,41.202292901],[-71.582115179,41.202230553],[-71.58216627,41.202185071],[-71.582217248,41.202147046],[-71.582283316,41.202092154],[-71.582336545,41.202037797],[-71.582392571,41.201992403],[-71.582451393,41.201954486],[-71.582530924,41.201913833],[-71.58258963,41.201881085],[-71.582650306,41.201849159],[-71.582713976,41.201814258],[-71.582783694,41.201771988],[-71.582862227,41.201732821],[-71.582928863,41.201697209],[-71.582988596,41.201662264],[-71.583048243,41.201631048],[-71.583110803,41.201604266],[-71.583177268,41.201576865],[-71.583250549,41.201551722],[-71.583322719,41.201533281],[-71.583391981,41.20151482],[-71.583447442,41.201502292],[-71.583467059,41.201497864],[-71.583549099,41.201478798],[-71.58364004,41.201457576],[-71.583721136,41.201434006],[-71.583799326,41.201411924],[-71.583883392,41.201389907],[-71.583968482,41.20136416],[-71.584051692,41.201336197],[-71.584120124,41.20130877],[-71.584184563,41.201283565],[-71.584247176,41.201252346],[-71.584313955,41.201210786],[-71.5843837,41.201167782],[-71.58445333,41.201129239],[-71.584515117,41.201091342],[-71.584576903,41.201052736],[-71.584642453,41.20102156],[-71.584715763,41.200995708],[-71.584790214,41.200963153],[-71.584862782,41.200925408],[-71.584928504,41.200886821],[-71.584994169,41.200850431],[-71.585063772,41.200815638],[-71.585136225,41.200783062],[-71.585209762,41.200746779],[-71.585278479,41.200705995],[-71.585341261,41.200665169],[-71.585401079,41.20062725],[-71.5854579,41.200590019],[-71.585515776,41.20054986],[-71.585574737,41.200505241],[-71.585633756,41.200458402],[-71.585689835,41.200410034],[-71.585743973,41.200359426],[-71.585798199,41.200306598],[-71.585853308,41.200257476],[-71.585914265,41.200211391],[-71.585976191,41.200165328],[-71.586038117,41.200119288],[-71.586098105,41.20007318],[-71.586154184,41.200024834],[-71.586212202,41.199977974],[-71.586276096,41.199931932],[-71.586341872,41.199888908],[-71.586407736,41.199844397],[-71.58646678,41.199795294],[-71.586525882,41.19974324],[-71.586585954,41.199692696],[-71.586641119,41.199641377],[-71.586697197,41.199593008],[-71.586755243,41.199544683],[-71.586816255,41.19949487],[-71.586880263,41.199444413],[-71.586944184,41.199396884],[-71.587007135,41.199348579],[-71.587073026,41.199301826],[-71.587143823,41.199255847],[-71.587217527,41.199209958],[-71.587291233,41.199166264],[-71.587360889,41.199127719],[-71.587427519,41.199090617],[-71.587492241,41.199053493],[-71.587554935,41.199017835],[-71.587609872,41.198977677],[-71.587654138,41.198928425],[-71.587696751,41.198866503],[-71.587740419,41.198800166],[-71.587786084,41.198733119],[-71.587812693,41.19868221],[-71.587833655,41.198620053],[-71.58785861,41.198554966],[-71.587893492,41.198485548],[-71.587936161,41.198419967],[-71.587979373,41.198375907],[-71.588022584,41.198331092],[-71.588071728,41.1982849],[-71.588126749,41.198240214],[-71.588181685,41.19820001],[-71.588232625,41.19816125],[-71.588284566,41.198123244],[-71.588345263,41.198089028],[-71.588400142,41.198051797],[-71.588470735,41.198014006],[-71.588520628,41.19807405],[-71.58857537,41.198137796],[-71.58863482,41.198212058],[-71.588683029,41.198257946],[-71.58874667,41.198318849],[-71.588785037,41.198364631],[-71.588806147,41.198390161],[-71.588834302,41.198408299],[-71.588851989,41.198410024],[-71.588863881,41.198404205],[-71.588871154,41.198385697],[-71.588862738,41.198364822],[-71.58883113,41.198324319],[-71.588794587,41.198283774],[-71.588493437,41.197962299],[-71.588450334,41.197907556],[-71.588405517,41.19783868],[-71.588369834,41.197806299],[-71.588325678,41.197801324],[-71.588272422,41.19776134],[-71.588241554,41.197685203],[-71.58824001,41.197617574],[-71.588253895,41.197517479],[-71.588280645,41.197413783],[-71.588291217,41.197281694],[-71.588273413,41.197192373],[-71.58819979,41.197092688],[-71.588152061,41.196974755],[-71.588079719,41.19685954],[-71.587997449,41.196747099],[-71.587905198,41.196642763],[-71.587840076,41.19656027],[-71.587803304,41.196437274],[-71.587771865,41.196340347],[-71.58773943,41.196245617],[-71.587719259,41.196174091],[-71.587693384,41.19609429],[-71.587672245,41.196023451],[-71.587601047,41.195946864],[-71.587482445,41.195881566],[-71.58734322,41.195813081],[-71.587256078,41.19574666],[-71.587209271,41.195728261],[-71.587123873,41.195720573],[-71.587005589,41.195734019],[-71.586830232,41.195796567],[-71.586682227,41.19586687],[-71.58647755,41.195968435],[-71.586238785,41.196099323],[-71.586158351,41.196136983],[-71.586024493,41.196189618],[-71.585941149,41.196225016],[-71.585794285,41.196288639],[-71.585692172,41.196374368],[-71.585643683,41.196435424],[-71.585535013,41.196555235],[-71.585412108,41.196695641],[-71.585371379,41.196857074],[-71.585310568,41.196990069],[-71.585130501,41.197230875],[-71.584925075,41.197414111],[-71.584855106,41.197468253],[-71.584799887,41.197524031],[-71.584769024,41.19758903],[-71.584789875,41.197720753],[-71.584841762,41.197873654],[-71.584823307,41.198003439],[-71.584746179,41.198118378],[-71.584651765,41.198259905],[-71.58464395,41.198351899],[-71.584704793,41.198406127],[-71.584774221,41.198472311],[-71.584775163,41.198521346],[-71.584745012,41.19859897],[-71.58479128,41.198691633],[-71.584886124,41.198812369],[-71.5849369,41.198925132],[-71.585030404,41.199016136],[-71.585119658,41.199075146],[-71.585165898,41.199122456],[-71.58520552,41.199203184],[-71.585220182,41.199301359],[-71.585225944,41.199354942],[-71.585218871,41.199411302],[-71.585187552,41.199451784],[-71.585109934,41.199446421],[-71.585045696,41.1993669],[-71.584990015,41.19925485],[-71.584912855,41.199181833],[-71.584850301,41.199116513],[-71.584874261,41.199052136],[-71.584878768,41.198977916],[-71.58484334,41.198884651],[-71.584811962,41.198832299],[-71.584722366,41.198742847],[-71.584606184,41.198653049],[-71.584595631,41.198594209],[-71.584576518,41.198566526],[-71.584508404,41.198533024],[-71.584336717,41.198513892],[-71.584166027,41.198539381],[-71.584053413,41.198610821],[-71.584010085,41.198660849],[-71.583941625,41.198735757],[-71.583897212,41.198790954],[-71.583780548,41.198868298],[-71.583686244,41.198908757],[-71.583541454,41.198967229],[-71.583444179,41.199005403],[-71.583317365,41.199055171],[-71.5830787,41.199134821],[-71.582991413,41.199169397],[-71.582805802,41.199251135],[-71.582599622,41.19937497],[-71.58251981,41.199430444],[-71.582466696,41.199478123],[-71.582452461,41.199500226],[-71.582452885,41.199620574],[-71.582570774,41.199768329],[-71.582693683,41.199910202],[-71.582817479,41.20005873],[-71.582868736,41.20019528],[-71.582907041,41.200338334],[-71.582969709,41.200446058],[-71.583033203,41.200561192],[-71.583116068,41.200643925],[-71.583202042,41.200718446],[-71.583262485,41.200791224],[-71.583284592,41.200863527],[-71.583255979,41.200913704],[-71.583188574,41.200939666],[-71.583119456,41.200904677],[-71.583022701,41.200829249],[-71.582948651,41.20074811],[-71.582865274,41.200643877],[-71.582781212,41.200523292],[-71.582740907,41.200475269],[-71.582675474,41.20040764],[-71.582632145,41.200363278],[-71.582549994,41.200293237],[-71.582373314,41.20018269],[-71.582303343,41.200142487],[-71.582234313,41.20010377],[-71.582164198,41.200068758],[-71.582040574,41.200008627],[-71.581953004,41.199963038],[-71.581782601,41.199882218],[-71.581595166,41.199815384],[-71.581510049,41.199793557],[-71.581377494,41.199783084],[-71.581142304,41.199836746],[-71.580997563,41.199938281],[-71.580919968,41.200074762],[-71.580872783,41.200216803],[-71.580850388,41.200252223],[-71.580709697,41.200348586],[-71.580530041,41.200426657],[-71.58048839,41.200539098],[-71.580408484,41.200644338],[-71.580391965,41.200681287],[-71.58040865,41.200730517],[-71.580438543,41.200759085],[-71.58058222,41.200800175],[-71.580762529,41.200833509],[-71.580868355,41.200851137],[-71.581053113,41.200857777],[-71.581142684,41.200855153],[-71.581296207,41.200850287],[-71.581433813,41.200854147],[-71.581470867,41.200870176],[-71.581416294,41.200939354],[-71.581387397,41.200956848],[-71.581352735,41.201015126],[-71.5813494,41.201035872],[-71.581282333,41.201090765],[-71.581033309,41.201054392],[-71.58081164,41.201025753],[-71.580708663,41.20101041],[-71.580583467,41.2009777],[-71.580517262,41.20094575],[-71.580457473,41.200935362],[-71.580399706,41.200968886],[-71.580348444,41.201022463],[-71.580301174,41.201072401],[-71.58024746,41.201102217],[-71.580139176,41.201106135],[-71.579977354,41.201084908],[-71.579905951,41.201111511],[-71.579805225,41.201180149],[-71.5796222,41.201278965],[-71.579490656,41.201405922],[-71.579386819,41.201481194],[-71.579358409,41.201476411],[-71.579269415,41.201405525],[-71.579119354,41.201244021],[-71.579073118,41.201197418],[-71.578954944,41.201110612],[-71.57870592,41.201072702],[-71.578442116,41.201083654],[-71.578338825,41.20108393],[-71.578187414,41.201082844],[-71.578077162,41.20108747],[-71.577979605,41.201096708],[-71.5779104,41.201113702],[-71.577837772,41.201154462],[-71.577785707,41.201196923],[-71.577757746,41.201264915],[-71.577742649,41.201327889],[-71.577718596,41.201396656],[-71.577685727,41.20146241],[-71.577650121,41.201519155],[-71.577576464,41.201561356],[-71.577483668,41.201577337],[-71.577406333,41.201607624],[-71.577343801,41.201634357],[-71.577266436,41.201665354],[-71.577191809,41.201706846],[-71.577130844,41.201752881],[-71.577077322,41.201819083],[-71.577011627,41.201859197],[-71.576928384,41.201887888],[-71.57685504,41.201913758],[-71.576798299,41.201946502],[-71.576872548,41.201969667],[-71.576942921,41.201992811],[-71.577010181,41.20202108],[-71.577080121,41.202062042],[-71.577089727,41.20211935],[-71.577127603,41.202190363],[-71.577183795,41.20223115],[-71.577263663,41.202268491],[-71.577351518,41.20229853],[-71.577431675,41.202323246],[-71.577506953,41.202344946],[-71.577585198,41.202366689],[-71.577661416,41.20238912],[-71.577698469,41.202404419],[-71.577703171,41.20246244],[-71.577686306,41.202515695],[-71.577660513,41.202573348],[-71.577604999,41.202594221],[-71.577530547,41.202579222],[-71.577438667,41.202552113],[-71.577366071,41.202544569],[-71.577282915,41.202570309],[-71.577198472,41.202609406],[-71.577121307,41.202631529],[-71.577024602,41.202646711],[-71.576957163,41.20267267],[-71.576929459,41.202728745],[-71.57690763,41.2027842],[-71.576855623,41.202825951],[-71.576849885,41.202865248],[-71.5769263,41.202927063],[-71.576973448,41.202976662],[-71.577010754,41.20302613],[-71.577064461,41.203091369],[-71.577120194,41.203153701],[-71.577173507,41.203192226],[-71.577232637,41.203233057],[-71.577284865,41.203275997],[-71.577336718,41.203334558],[-71.577370944,41.203390707],[-71.577350033,41.203403071],[-71.577260092,41.20337747],[-71.577177083,41.203349005],[-71.577106028,41.203313237],[-71.57704102,41.203270122],[-71.576972279,41.203219532],[-71.576894692,41.203166614],[-71.57681317,41.203114362],[-71.576744341,41.203066012],[-71.57668624,41.203023717],[-71.576620379,41.202975388],[-71.576607008,41.202909894],[-71.576595347,41.202856246],[-71.576505778,41.202810609],[-71.576407198,41.202776025],[-71.576312437,41.202745166],[-71.576216419,41.202726177],[-71.576125081,41.202721366],[-71.576047318,41.202724185],[-71.575963455,41.202688996],[-71.575903528,41.202639222],[-71.575829967,41.202582664],[-71.57574257,41.202529615],[-71.575638312,41.202481563],[-71.575546837,41.202435926],[-71.5754959,41.202408469],[-71.575462235,41.202390354],[-71.575380685,41.202338101],[-71.575293462,41.202277664],[-71.575218134,41.202211387],[-71.575165398,41.202146101],[-71.575134285,41.202081853],[-71.575119091,41.202008858],[-71.57508527,41.201933451],[-71.57502352,41.201876245],[-71.574970585,41.201822144],[-71.574955105,41.201764038],[-71.574947726,41.201692616],[-71.574932532,41.201620376],[-71.5749318,41.201562421],[-71.574924249,41.201499942],[-71.574885658,41.201463099],[-71.574809126,41.201455487],[-71.574763624,41.20146606],[-71.574732808,41.201528838],[-71.574720653,41.201545771],[-71.574664716,41.201540661],[-71.574558271,41.201457662],[-71.574496004,41.201424996],[-71.574443579,41.201392416],[-71.574372506,41.201311361],[-71.574345281,41.201202557],[-71.574321051,41.201092357],[-71.574316389,41.200986078],[-71.574349231,41.200920325],[-71.574426432,41.200850701],[-71.574536173,41.200823779],[-71.574564611,41.2008271],[-71.574605112,41.200866229],[-71.57459303,41.200973022],[-71.574616175,41.201088438],[-71.574677292,41.201175355],[-71.574790331,41.20122498],[-71.574918771,41.201290423],[-71.574983115,41.201365467],[-71.57505233,41.201488835],[-71.575125035,41.201539515],[-71.575223131,41.201550315],[-71.575330648,41.201536751],[-71.575402503,41.201533182],[-71.575485314,41.20152375],[-71.575555748,41.201494886],[-71.5756065,41.201468002],[-71.575688304,41.201504634],[-71.575767208,41.201495182],[-71.575845286,41.201477543],[-71.575906589,41.201461927],[-71.575917125,41.201381825],[-71.575911513,41.201320832],[-71.575888101,41.201264881],[-71.575707039,41.201128254],[-71.575632451,41.201073115],[-71.57552301,41.200992337],[-71.575454243,41.200942477],[-71.575326347,41.20084959],[-71.575260462,41.200804211],[-71.57510687,41.200669417],[-71.574922502,41.20055207],[-71.574846889,41.200499173],[-71.574695664,41.200394864],[-71.57462393,41.200344251],[-71.574475556,41.200242913],[-71.574276047,41.200096438],[-71.574220059,41.200045243],[-71.574157005,41.199957595],[-71.574118108,41.199890265],[-71.574037289,41.199757824],[-71.573987671,41.199689105],[-71.5739312,41.199610968],[-71.573900031,41.199548916],[-71.573824349,41.199406156],[-71.573737924,41.19921494],[-71.573738703,41.199207598],[-71.573752519,41.199079922],[-71.57372944,41.198914007],[-71.573697628,41.19879034],[-71.573688139,41.198726307],[-71.57366392,41.198570021],[-71.57367991,41.198463293],[-71.57375772,41.198317874],[-71.573792998,41.198184559],[-71.573774962,41.198059556],[-71.573790902,41.197908253],[-71.573800951,41.197851137],[-71.573816316,41.197728035],[-71.573869673,41.197622427],[-71.57390518,41.197477264],[-71.57394848,41.197288366],[-71.573996802,41.197095074],[-71.574016929,41.196979447],[-71.57401117,41.196786258],[-71.573996868,41.196670173],[-71.573977511,41.19660905],[-71.573939046,41.196520175],[-71.573896933,41.196417945],[-71.573856617,41.196324565],[-71.573830413,41.196260382],[-71.573752969,41.196108659],[-71.573733438,41.196054238],[-71.573727894,41.195944185],[-71.573688605,41.195848654],[-71.573670847,41.195808435],[-71.573663257,41.19579115],[-71.573662956,41.195710963],[-71.573660255,41.195652209],[-71.573662491,41.195593543],[-71.573664638,41.195537118],[-71.573674775,41.195477098],[-71.573689959,41.195408909],[-71.573700325,41.195336996],[-71.57370758,41.195272449],[-71.57372362,41.195210983],[-71.573751555,41.195145943],[-71.573785392,41.195078062],[-71.573824166,41.195012374],[-71.573866732,41.194952745],[-71.573907387,41.194890074],[-71.57394228,41.194819197],[-71.573976263,41.194747543],[-71.574002141,41.194684699],[-71.574018211,41.194623234],[-71.574024582,41.194553495],[-71.574026192,41.194477745],[-71.574027686,41.194406454],[-71.574029065,41.194340356],[-71.574033497,41.194269841],[-71.574041951,41.194194909],[-71.574052315,41.194121532],[-71.574064562,41.194054054],[-71.574078776,41.193985157],[-71.574095046,41.193913308],[-71.574112256,41.193843654],[-71.574137166,41.193781589],[-71.574165868,41.193726199],[-71.574202356,41.193674647],[-71.574254472,41.193626972],[-71.57431109,41.193597661],[-71.574316114,41.19359505],[-71.574405933,41.193579783],[-71.57448471,41.193573305],[-71.574561069,41.19354302],[-71.574628931,41.193497005],[-71.574686807,41.193456097],[-71.57473014,41.19340685],[-71.574730348,41.193349672],[-71.574720063,41.193278229],[-71.574735986,41.19322271],[-71.5747579,41.193162087],[-71.574769335,41.193100259],[-71.574771201,41.193090171],[-71.574792548,41.193010954],[-71.574813749,41.19293693],[-71.574831927,41.192867298],[-71.574845287,41.192793209],[-71.574859701,41.192715369],[-71.574877937,41.192642787],[-71.574897029,41.19257766],[-71.574915091,41.192512489],[-71.574932272,41.192444344],[-71.574942261,41.192389515],[-71.574954623,41.192316868],[-71.574962815,41.192252343],[-71.574960402,41.192181033],[-71.574940844,41.192128785],[-71.574912558,41.192070481],[-71.57486759,41.192012029],[-71.57481275,41.1919534],[-71.574743223,41.191891693],[-71.574688953,41.191853899],[-71.574599317,41.191814916],[-71.574511304,41.191792353],[-71.574425997,41.191779418],[-71.574349333,41.191778507],[-71.574260515,41.191793064],[-71.57416297,41.191802276],[-71.574065397,41.191812974],[-71.573961122,41.191813955],[-71.57386498,41.191804663],[-71.573788774,41.19178072],[-71.573727572,41.191744325],[-71.573670852,41.191681237],[-71.573628591,41.191633212],[-71.573588443,41.191579238],[-71.573558221,41.191520181],[-71.573525118,41.191458153],[-71.573488021,41.191397545],[-71.573451953,41.191336182],[-71.573421902,41.191268228],[-71.573395846,41.191198098],[-71.573367676,41.191133848],[-71.57334236,41.191075634],[-71.573325913,41.191015265],[-71.573316483,41.190949036],[-71.573306114,41.190882052],[-71.573298567,41.190820305],[-71.573294897,41.190760865],[-71.57329716,41.190699226],[-71.573300479,41.190634658],[-71.573309732,41.190570133],[-71.573321749,41.190512329],[-71.573333765,41.190455281],[-71.573342845,41.190397434],[-71.573344817,41.19034723],[-71.573344964,41.190343251],[-71.573337301,41.190286695],[-71.573295042,41.190238647],[-71.573207914,41.190219765],[-71.573134072,41.190223334],[-71.573049395,41.190230501],[-71.572951708,41.190245657],[-71.572851968,41.19026603],[-71.572746181,41.190293726],[-71.572652054,41.190325301],[-71.572591646,41.190347708],[-71.572562895,41.190358384],[-71.57248049,41.190394526],[-71.57240884,41.190436014],[-71.572346031,41.190477611],[-71.57229015,41.190514811],[-71.572230132,41.190562375],[-71.572177222,41.190602616],[-71.572129156,41.190643631],[-71.572058099,41.190701449],[-71.571988588,41.190734038],[-71.571910666,41.190744973],[-71.571828213,41.190737317],[-71.571740087,41.190719921],[-71.571650281,41.190688392],[-71.571548494,41.190664875],[-71.571489597,41.190657753],[-71.571412313,41.190642477],[-71.571241141,41.190628883],[-71.571167863,41.19062241],[-71.571066337,41.1905878],[-71.570915938,41.190492383],[-71.570854797,41.190453013],[-71.570795653,41.190412957],[-71.57073551,41.190373609],[-71.570700907,41.190348907],[-71.570678364,41.190332819],[-71.570617281,41.190291231],[-71.570551235,41.190251796],[-71.570476261,41.190216712],[-71.570395385,41.190182317],[-71.570323377,41.190145058],[-71.570256419,41.190102673],[-71.570192572,41.190052121],[-71.57012887,41.189996377],[-71.570061203,41.189940612],[-71.569992508,41.189887044],[-71.569931686,41.189833562],[-71.569880759,41.189775774],[-71.569833945,41.189712816],[-71.569784046,41.189653518],[-71.569729099,41.189600879],[-71.569668104,41.189555562],[-71.569599065,41.189519079],[-71.569533904,41.189485612],[-71.569484572,41.189445662],[-71.569452185,41.189396966],[-71.569432717,41.189339548],[-71.569420211,41.189280731],[-71.569415576,41.189220491],[-71.569405181,41.189153508],[-71.569392904,41.189082797],[-71.569378545,41.18901728],[-71.569368006,41.188957684],[-71.569380083,41.188896954],[-71.569380545,41.188876163],[-71.569398556,41.188814698],[-71.569411094,41.188732422],[-71.56941294,41.188645511],[-71.569390957,41.188557698],[-71.569351208,41.188302228],[-71.569345486,41.188244962],[-71.569343785,41.188182456],[-71.569340027,41.188121461],[-71.569338331,41.188064169],[-71.569337572,41.188004704],[-71.569337842,41.18794517],[-71.569339181,41.187865349],[-71.569344472,41.187800575],[-71.569345764,41.187734293],[-71.569351974,41.187680062],[-71.569410882,41.187442234],[-71.56944311,41.187369965],[-71.569473314,41.187303002],[-71.569499547,41.187230004],[-71.569520794,41.187166798],[-71.569511123,41.187097504],[-71.569520358,41.187041007],[-71.569546519,41.186986832],[-71.569569713,41.186931904],[-71.569588933,41.186870209],[-71.569610117,41.186804716],[-71.569638327,41.186741506],[-71.569668536,41.186679072],[-71.569698718,41.186618879],[-71.56973689,41.186557218],[-71.569776086,41.186490319],[-71.569815197,41.186428612],[-71.56986733,41.186370739],[-71.569918487,41.186306142],[-71.569958653,41.186241438],[-71.570013697,41.186188092],[-71.57007774,41.186141533],[-71.570140729,41.18610028],[-71.570203689,41.186060515],[-71.570293625,41.186022334],[-71.570389474,41.185992451],[-71.570465352,41.185971569],[-71.570536232,41.185949889],[-71.570604195,41.185916936],[-71.570653247,41.185866589],[-71.5706854,41.185811678],[-71.570684693,41.185745375],[-71.570664065,41.185679038],[-71.570643383,41.18561874],[-71.570648668,41.185550214],[-71.570676902,41.185482498],[-71.570727082,41.185411818],[-71.570765177,41.185364428],[-71.570817297,41.185296034],[-71.570864455,41.185229862],[-71.570914638,41.185162223],[-71.570968813,41.185091564],[-71.571033863,41.185025426],[-71.571081922,41.184981849],[-71.571133981,41.184941312],[-71.571194947,41.184907585],[-71.571251915,41.184871551],[-71.571306967,41.184828016],[-71.571296272,41.184763937],[-71.571308499,41.184705265],[-71.571357632,41.18464737],[-71.571424654,41.184586514],[-71.57146078,41.184538416],[-71.57147206,41.184471396],[-71.571436448,41.184407288],[-71.571421804,41.184331181],[-71.571426117,41.184261124],[-71.571437445,41.184182097],[-71.571452669,41.184123354],[-71.571448914,41.184066087],[-71.57146324,41.183988567],[-71.571506327,41.183939733],[-71.57155937,41.183886342],[-71.571620438,41.183835301],[-71.571679502,41.18377971],[-71.571725608,41.183722595],[-71.571764749,41.183663906],[-71.571801918,41.183602245],[-71.571836092,41.183542072],[-71.571857334,41.183477356],[-71.571871554,41.183414131],[-71.571892742,41.183354652],[-71.571905993,41.183291405],[-71.57189432,41.183219848],[-71.571866725,41.183150474],[-71.571840052,41.183093176],[-71.571824367,41.183035138],[-71.571829622,41.182968076],[-71.571838951,41.182889028],[-71.571841264,41.182817485],[-71.571843557,41.182754222],[-71.571834858,41.18268941],[-71.571828235,41.182612567],[-71.571821608,41.18253195],[-71.571818901,41.182464916],[-71.571821194,41.182402407],[-71.571821508,41.182330088],[-71.571821872,41.182247248],[-71.571822186,41.182174929],[-71.571822476,41.182107871],[-71.571826817,41.182035572],[-71.571832172,41.181949733],[-71.571832489,41.181878923],[-71.571832753,41.181816416],[-71.571833019,41.181754641],[-71.571843351,41.181680097],[-71.571860489,41.181627391],[-71.571927567,41.181565825],[-71.571977669,41.181510949],[-71.572023829,41.181449305],[-71.572069925,41.181385419],[-71.572118029,41.181330544],[-71.572175072,41.181283965],[-71.572233142,41.181235145],[-71.572290155,41.181187857],[-71.572358159,41.181143604],[-71.57243013,41.181100103],[-71.572483124,41.181059542],[-71.572533198,41.18100773],[-71.572524527,41.180940631],[-71.572507944,41.180864504],[-71.572497199,41.180811014],[-71.572465581,41.180743884],[-71.572418862,41.180709149],[-71.572330136,41.180711904],[-71.572235412,41.180710911],[-71.572157738,41.180688135],[-71.572098121,41.180651075],[-71.572066454,41.180594488],[-71.572021811,41.180547676],[-71.571973683,41.180607834],[-71.571969421,41.180668835],[-71.571999987,41.180742713],[-71.5720167,41.180800749],[-71.572024345,41.180870845],[-71.572011145,41.180925035],[-71.571964088,41.180968589],[-71.571908102,41.181012902],[-71.571830158,41.181048104],[-71.571732294,41.181083272],[-71.571662418,41.181104929],[-71.571587574,41.18112357],[-71.571514694,41.181139214],[-71.571419955,41.18115327],[-71.571347171,41.181145538],[-71.571267527,41.181121253],[-71.571196826,41.18110826],[-71.571142164,41.181062185],[-71.571090483,41.181028917],[-71.571027517,41.181058139],[-71.570968557,41.181096416],[-71.570923423,41.18115504],[-71.570851474,41.181191747],[-71.570757604,41.181226157],[-71.570673742,41.181247822],[-71.570586985,41.181252838],[-71.570516112,41.181276759],[-71.570432228,41.181306681],[-71.570359232,41.181356219],[-71.57030808,41.181421662],[-71.570265921,41.18148854],[-71.570235717,41.181553261],[-71.570210482,41.181621753],[-71.570170269,41.181696955],[-71.570128112,41.181766144],[-71.570089965,41.181820303],[-71.570039862,41.181875911],[-71.569988739,41.181940576],[-71.569938614,41.18200444],[-71.569896448,41.182065349],[-71.56987124,41.182131576],[-71.569851995,41.182197046],[-71.56984079,41.182250502],[-71.569830532,41.182311483],[-71.569827294,41.182369464],[-71.56982708,41.182425201],[-71.569837699,41.182503575],[-71.569837396,41.182560844],[-71.569839184,41.182619577],[-71.569833945,41.182674562],[-71.569810658,41.182753574],[-71.569771415,41.182831062],[-71.569742207,41.182894273],[-71.569718993,41.182956749],[-71.569691833,41.183009369],[-71.56965277,41.183057491],[-71.56959972,41.183104843],[-71.569535706,41.183146828],[-71.56946583,41.183171525],[-71.569395945,41.183187897],[-71.569324088,41.183200543],[-71.569250285,41.183204109],[-71.569178535,41.183203169],[-71.569073821,41.183205908],[-71.568969085,41.183216926],[-71.568900203,41.183236339],[-71.568833291,41.18325877],[-71.568771258,41.183314384],[-71.568721149,41.183366972],[-71.568644254,41.183396888],[-71.568603355,41.183397347],[-71.568591397,41.183397491],[-71.568523781,41.183354419],[-71.568464108,41.183322618],[-71.568412452,41.183284819],[-71.568379764,41.183234271],[-71.568357065,41.183181474],[-71.568342377,41.18311893],[-71.56833274,41.183050368],[-71.568316102,41.182975749],[-71.568285536,41.182898074],[-71.568264836,41.182846054],[-71.568231251,41.182777414],[-71.568164666,41.182735073],[-71.568078076,41.182697959],[-71.568008391,41.18267291],[-71.567933792,41.18263883],[-71.56785916,41.182602486],[-71.567789523,41.182564629],[-71.567726856,41.182534362],[-71.567645314,41.182490451],[-71.567615699,41.182423342],[-71.567618042,41.182347271],[-71.567638185,41.182299115],[-71.567707087,41.182269913],[-71.56779395,41.182249049],[-71.567880728,41.182234224],[-71.567981446,41.182232197],[-71.568074273,41.182212084],[-71.568155131,41.182181412],[-71.568237101,41.182142459],[-71.56832201,41.182105769],[-71.568402921,41.182068327],[-71.568477819,41.182040631],[-71.568564575,41.182034084],[-71.568652336,41.182033551],[-71.568729135,41.182029251],[-71.568807931,41.182024173],[-71.568825,41.181990313],[-71.568840249,41.181924046],[-71.56889435,41.181869214],[-71.568933419,41.181827885],[-71.56891571,41.181770603],[-71.568881128,41.181703474],[-71.568817607,41.181637048],[-71.568764075,41.181570594],[-71.56873443,41.181505748],[-71.568731782,41.181433454],[-71.56871108,41.181379902],[-71.568680418,41.181327088],[-71.568643768,41.181278805],[-71.56860007,41.181235742],[-71.56853051,41.181184346],[-71.568424873,41.181169771],[-71.568339145,41.181174099],[-71.568259301,41.181189676],[-71.568190276,41.181245248],[-71.56812524,41.181294025],[-71.568028372,41.181328435],[-71.567944537,41.181348589],[-71.567862721,41.181359638],[-71.567790969,41.181354191],[-71.567717244,41.18134424],[-71.56764856,41.181319922],[-71.567565993,41.181278322],[-71.567500303,41.181250275],[-71.567443658,41.181216962],[-71.567355124,41.181171545],[-71.567300415,41.181135258],[-71.567241795,41.181094467],[-71.567191188,41.181044591],[-71.567143574,41.180990277],[-71.567098954,41.180932142],[-71.567063323,41.180873292],[-71.567032716,41.18081222],[-71.567008068,41.180747349],[-71.566973435,41.180686234],[-71.566937777,41.180630426],[-71.566903149,41.180574572],[-71.566869574,41.18051197],[-71.566842927,41.180445636],[-71.56682028,41.180382296],[-71.566795637,41.180321976],[-71.566774962,41.180263186],[-71.566750315,41.180198314],[-71.566721701,41.180131981],[-71.566694063,41.18007315],[-71.566678618,41.180037731],[-71.566668393,41.180014317],[-71.566648716,41.179954794],[-71.566628094,41.179888434],[-71.56660145,41.179824341],[-71.56655279,41.179782035],[-71.566463137,41.17976523],[-71.566368519,41.179747674],[-71.566318808,41.179713647],[-71.566294191,41.179648044],[-71.566299456,41.179585557],[-71.566299726,41.179523026],[-71.566295006,41.17946576],[-71.566288386,41.17938441],[-71.566282694,41.179324148],[-71.566273002,41.179258604],[-71.566263289,41.179202804],[-71.566259589,41.179136503],[-71.566246932,41.179073225],[-71.566230252,41.179012146],[-71.566230548,41.178945887],[-71.56624278,41.178887902],[-71.566239438,41.178876308],[-71.566233515,41.178855727],[-71.566226504,41.178830922],[-71.566202142,41.178772993],[-71.566159687,41.178740819],[-71.566085942,41.178737613],[-71.566003231,41.178728352],[-71.565928559,41.178706324],[-71.565858957,41.178668489],[-71.565812421,41.178599833],[-71.565779812,41.178532702],[-71.565765204,41.178455062],[-71.565758512,41.178393291],[-71.56574488,41.178322444],[-71.565738186,41.178258431],[-71.565727472,41.178199658],[-71.565714787,41.178137821],[-71.565706148,41.178065507],[-71.565697482,41.177996944],[-71.565689308,41.177965135],[-71.565681801,41.177935887],[-71.565663152,41.177873322],[-71.565638508,41.17780925],[-71.565605928,41.177740587],[-71.565572294,41.177677252],[-71.565533672,41.17761989],[-71.565495075,41.177558046],[-71.565460526,41.177487896],[-71.565421952,41.177418504],[-71.565375366,41.17735815],[-71.565322789,41.177301482],[-71.565266217,41.177244839],[-71.565200678,41.177182163],[-71.565129181,41.177123219],[-71.565066647,41.177068089],[-71.565005029,41.17702046],[-71.564947434,41.176969832],[-71.564891862,41.176913966],[-71.564824307,41.176862567],[-71.56473873,41.176829955],[-71.564658092,41.176803378],[-71.564581452,41.176777576],[-71.564501813,41.176750267],[-71.56442417,41.176721424],[-71.564360513,41.176692642],[-71.564282924,41.176656297],[-71.56420231,41.176622195],[-71.564147636,41.176586684],[-71.564095016,41.176545819],[-71.564056343,41.176496759],[-71.564009656,41.176455983],[-71.563752875,41.176367179],[-71.563672264,41.176335341],[-71.563586688,41.176302728],[-71.563512066,41.176266381],[-71.563438474,41.176230788],[-71.563386845,41.176180934],[-71.563351176,41.176138665],[-71.563325386,41.176107711],[-71.56323873,41.176084888],[-71.56318808,41.176045577],[-71.563199364,41.175974853],[-71.563217588,41.175913845],[-71.563222831,41.175857396],[-71.563232169,41.175778348],[-71.563228452,41.17572108],[-71.563220763,41.175658531],[-71.563228051,41.175587741],[-71.563244279,41.175528267],[-71.563254583,41.175446954],[-71.563272786,41.175394271],[-71.563297948,41.175339343],[-71.563323114,41.175288167],[-71.563350353,41.175221985],[-71.563361639,41.175153456],[-71.563411665,41.175111392],[-71.56345672,41.175062582],[-71.563512716,41.175027307],[-71.563549701,41.175022209],[-71.563560596,41.175020671],[-71.563552387,41.175076412],[-71.563523301,41.175111696],[-71.56348723,41.175154531],[-71.563518956,41.175188523],[-71.563604634,41.17520309],[-71.563681375,41.175210069],[-71.563764178,41.175193671],[-71.563832205,41.175141121],[-71.563893193,41.175103646],[-71.563966934,41.17510683],[-71.564041602,41.175130369],[-71.564111305,41.175151646],[-71.564201023,41.17514963],[-71.564280883,41.175126462],[-71.564357598,41.175137215],[-71.564439178,41.175170584],[-71.564525934,41.175172296],[-71.564587471,41.175232711],[-71.564637993,41.175294641],[-71.564713612,41.175330186],[-71.564809251,41.175346279],[-71.564880877,41.175383359],[-71.564952345,41.175445323],[-71.565031884,41.175495229],[-71.565134511,41.175506812],[-71.56521624,41.17550624],[-71.565298002,41.175507977],[-71.565369723,41.175519464],[-71.565443443,41.175530949],[-71.565524127,41.175545472],[-71.565612721,41.175568293],[-71.565686943,41.175598304],[-71.565693333,41.175600884],[-71.565762011,41.175625912],[-71.565833734,41.175638908],[-71.565916441,41.175648169],[-71.56600916,41.175649145],[-71.566096931,41.175636607],[-71.566164807,41.175615687],[-71.566231711,41.175593234],[-71.566302608,41.175567052],[-71.566378472,41.175543885],[-71.566456358,41.17551397],[-71.566520365,41.175469723],[-71.566590311,41.17543222],[-71.566665231,41.175403016],[-71.56676009,41.175365612],[-71.566856925,41.175337218],[-71.566954584,41.175345029],[-71.567026279,41.175359511],[-71.567045904,41.175428868],[-71.567030733,41.175483036],[-71.56699951,41.175557546],[-71.566977292,41.175617001],[-71.566954055,41.175687001],[-71.566927846,41.175751719],[-71.566902631,41.175811153],[-71.566868431,41.175876585],[-71.566833412,41.175909654],[-71.566749656,41.175911692],[-71.566673839,41.175922028],[-71.566598021,41.175930877],[-71.566523183,41.175951756],[-71.566449289,41.175977941],[-71.566355477,41.176003314],[-71.566285478,41.176049851],[-71.566239372,41.176106187],[-71.566231057,41.176175491],[-71.566251757,41.176230531],[-71.566282366,41.176296131],[-71.566307981,41.176362488],[-71.566326633,41.176427341],[-71.566352275,41.176490656],[-71.566380864,41.176563782],[-71.566398491,41.176633118],[-71.5664122,41.176689647],[-71.566446855,41.17674397],[-71.566495512,41.176786276],[-71.566562164,41.176811328],[-71.566663849,41.176816849],[-71.566766602,41.176801283],[-71.566842467,41.176777407],[-71.566913394,41.176749715],[-71.566977296,41.176721226],[-71.567078103,41.176696649],[-71.567150954,41.176685537],[-71.567224766,41.176667631],[-71.567284857,41.176612042],[-71.567290193,41.176531463],[-71.56729753,41.176454657],[-71.567353621,41.176394565],[-71.56745932,41.176388785],[-71.567548996,41.176403324],[-71.567650595,41.176413374],[-71.567740247,41.176433196],[-71.567813967,41.176443925],[-71.567892702,41.17644564],[-71.567981453,41.176442866],[-71.568079189,41.176435581],[-71.568153981,41.176428995],[-71.568254787,41.176404418],[-71.568333601,41.176394033],[-71.568430337,41.176386017],[-71.568523057,41.176387013],[-71.568605785,41.176384974],[-71.568691514,41.176387393],[-71.568787208,41.176395936],[-71.568884838,41.176402968],[-71.56896363,41.176400931],[-71.569042388,41.176395074],[-71.569136131,41.176390055],[-71.569240856,41.176379014],[-71.569331626,41.176367958],[-71.569413407,41.176358372],[-71.56950024,41.176345786],[-71.569593972,41.176330954],[-71.569677806,41.176316106],[-71.569757731,41.176268874],[-71.56981872,41.176235125],[-71.56987671,41.176199136],[-71.569945725,41.176139789],[-71.569998822,41.176085689],[-71.570047749,41.176066242],[-71.570149434,41.176072492],[-71.570229996,41.176112628],[-71.570270617,41.176167723],[-71.570276342,41.176227253],[-71.570228161,41.176293426],[-71.57018311,41.176342284],[-71.57013406,41.176388102],[-71.570087977,41.176434673],[-71.570021925,41.176490222],[-71.569942996,41.176533725],[-71.569858146,41.176561382],[-71.569801127,41.17660039],[-71.569768934,41.176671882],[-71.569751738,41.176726806],[-71.569742431,41.176799131],[-71.569746156,41.176857862],[-71.569747887,41.176919636],[-71.569747642,41.176973864],[-71.569732368,41.177043859],[-71.569702139,41.177111577],[-71.569680928,41.177177047],[-71.569656725,41.177247048],[-71.569637531,41.177301996],[-71.569617338,41.1773577],[-71.569596146,41.177412604],[-71.569581945,41.177466062],[-71.569522491,41.177607511],[-71.569490369,41.177660912],[-71.569454223,41.177716557],[-71.569416132,41.177764655],[-71.569374994,41.177821812],[-71.569313932,41.177875162],[-71.569259867,41.177932258],[-71.569193859,41.177973512],[-71.569136769,41.178032851],[-71.569082628,41.178104288],[-71.569038445,41.178174964],[-71.56896837,41.178235798],[-71.568884471,41.178277771],[-71.568812594,41.178294167],[-71.568732778,41.178303752],[-71.568638189,41.178283933],[-71.568562667,41.178231008],[-71.568483097,41.178185587],[-71.568445421,41.178138815],[-71.56844669,41.178078572],[-71.56848091,41.178004082],[-71.568502104,41.177949888],[-71.568516331,41.177891169],[-71.568525563,41.177832453],[-71.568529804,41.177777468],[-71.568526054,41.177723219],[-71.568499435,41.177654621],[-71.568443836,41.17760555],[-71.568360248,41.177566878],[-71.568273669,41.177535047],[-71.568189061,41.177505456],[-71.568092442,41.177481865],[-71.568014728,41.177474866],[-71.567938011,41.177464871],[-71.567848405,41.177431509],[-71.567758785,41.177414705],[-71.567662994,41.177431778],[-71.567599062,41.177461777],[-71.567536978,41.177522628],[-71.567507751,41.177595604],[-71.567505385,41.1776792],[-71.567516046,41.177743988],[-71.567527712,41.177814105],[-71.567541397,41.17787514],[-71.567557073,41.177929404],[-71.567569812,41.177983693],[-71.567572563,41.178039429],[-71.567568294,41.178097387],[-71.567531147,41.1781523],[-71.567479099,41.17820036],[-71.567393272,41.178222001],[-71.567296555,41.178222492],[-71.567225828,41.178209497],[-71.567142172,41.178194222],[-71.567059508,41.178172176],[-71.566982837,41.178148641],[-71.566908197,41.1781281],[-71.566831502,41.178110579],[-71.566749789,41.178099831],[-71.566672051,41.17809887],[-71.566585142,41.178129522],[-71.566564077,41.178162629],[-71.566609668,41.178224492],[-71.566664319,41.178265309],[-71.56672094,41.178309143],[-71.566771569,41.178352958],[-71.566812214,41.178403526],[-71.566848794,41.178475183],[-71.566837514,41.178545198],[-71.566764521,41.178596998],[-71.566696589,41.178623934],[-71.566593852,41.178628934],[-71.566487281,41.178614358],[-71.566394605,41.178600551],[-71.566321754,41.178612418],[-71.566291582,41.178681643],[-71.566302095,41.17880966],[-71.566322402,41.178835343],[-71.56634956,41.17886936],[-71.566382187,41.178923661],[-71.56640484,41.178993039],[-71.566453446,41.179042116],[-71.566561047,41.179056714],[-71.566633824,41.179060651],[-71.566735405,41.179078981],[-71.566814974,41.179123648],[-71.566882536,41.179178797],[-71.566963099,41.179217426],[-71.567068856,41.179204145],[-71.567147665,41.179186259],[-71.567241464,41.179172184],[-71.567322275,41.179158071],[-71.56739602,41.179160544],[-71.567470717,41.17917651],[-71.567544369,41.17920684],[-71.56760297,41.179260485],[-71.567631606,41.179317806],[-71.567649209,41.179391647],[-71.567641929,41.179464702],[-71.567590775,41.179529343],[-71.567515881,41.179558525],[-71.567434094,41.179565846],[-71.56734839,41.179562626],[-71.567261681,41.179552636],[-71.567175024,41.179535076],[-71.567090363,41.179515296],[-71.567025674,41.179487979],[-71.56693408,41.179466648],[-71.566844254,41.179487513],[-71.566792102,41.179553687],[-71.566807781,41.179611702],[-71.566844407,41.179668287],[-71.566883059,41.17972263],[-71.566911727,41.179781438],[-71.566934351,41.179851594],[-71.566956923,41.17992996],[-71.566978546,41.179998539],[-71.566997052,41.180037546],[-71.567007185,41.180058902],[-71.567044788,41.180123011],[-71.56707532,41.180199909],[-71.567098915,41.180271551],[-71.567130552,41.180333377],[-71.567170149,41.180393002],[-71.567211801,41.180448852],[-71.5672504,41.180509964],[-71.567280036,41.180568772],[-71.567300737,41.180622324],[-71.567342315,41.18069471],[-71.567379941,41.180751317],[-71.567431467,41.180812468],[-71.567490068,41.18086458],[-71.567558703,41.180900905],[-71.567628362,41.180931237],[-71.567729052,41.180934494],[-71.567805822,41.180933191],[-71.567903586,41.180916895],[-71.567995434,41.180888503],[-71.568056404,41.180859261],[-71.568111372,41.180823252],[-71.5681664,41.180786465],[-71.568243414,41.180729402],[-71.568292472,41.180686626],[-71.568330536,41.180639283],[-71.568340869,41.180561675],[-71.56831225,41.180492323],[-71.56833332,41.18046379],[-71.568412114,41.180458712],[-71.568500869,41.180454405],[-71.568578661,41.180447086],[-71.568656429,41.180444249],[-71.568730305,41.180426365],[-71.568803178,41.180404686],[-71.568886986,41.180388328],[-71.568968852,41.180368953],[-71.569050634,41.180355616],[-71.56913839,41.180352064],[-71.569241023,41.180360625],[-71.569331705,41.180375917],[-71.569415342,41.180398761],[-71.569497982,41.180423778],[-71.569592634,41.180442841],[-71.569688302,41.180449873],[-71.569771062,41.180445592],[-71.569840917,41.180432193],[-71.569933839,41.180390259],[-71.569981888,41.180339158],[-71.570027974,41.180293319],[-71.570070131,41.180224886],[-71.570065408,41.180167642],[-71.57003774,41.180111807],[-71.569991098,41.180061976],[-71.569967942,41.180035734],[-71.569944483,41.180009172],[-71.56991182,41.179952562],[-71.569889194,41.179883962],[-71.569868565,41.179813875],[-71.569845949,41.179754286],[-71.569828209,41.179697004],[-71.569816522,41.179638232],[-71.56982081,41.179571194],[-71.569842049,41.179502704],[-71.569875221,41.179440269],[-71.569910422,41.179378586],[-71.569941596,41.179315397],[-71.569982738,41.179261282],[-71.57005263,41.179226795],[-71.570126504,41.17920891],[-71.57020525,41.179216662],[-71.57028389,41.179239439],[-71.570356544,41.17926899],[-71.570415217,41.179302278],[-71.570470771,41.179363447],[-71.570478442,41.179431279],[-71.570460177,41.179505782],[-71.570423933,41.179583269],[-71.57036482,41.179647893],[-71.570304787,41.179700465],[-71.570272636,41.179755376],[-71.570290462,41.17977954],[-71.570399135,41.179776043],[-71.570480998,41.179754402],[-71.570547874,41.179730484],[-71.57061086,41.179692959],[-71.570664935,41.179644896],[-71.570704049,41.179590736],[-71.570735228,41.179533607],[-71.570760355,41.179478678],[-71.570770683,41.179398874],[-71.570758967,41.179342343],[-71.570732298,41.179285776],[-71.570702607,41.179235226],[-71.570667055,41.179167343],[-71.570634444,41.179103232],[-71.57060777,41.179042914],[-71.570625042,41.178973672],[-71.5706512,41.178920984],[-71.570693354,41.178851063],[-71.570745477,41.178789416],[-71.570817522,41.178732354],[-71.570878481,41.178696363],[-71.57093847,41.17865964],[-71.571002429,41.178627375],[-71.571071348,41.178589893],[-71.571141349,41.178546371],[-71.57122034,41.17850138],[-71.571298242,41.1784579],[-71.57137521,41.178418948],[-71.571449178,41.178376179],[-71.571514181,41.178330396],[-71.571570247,41.178277071],[-71.571616376,41.178217668],[-71.57165851,41.178158268],[-71.571704612,41.17810113],[-71.571758626,41.178055331],[-71.571801354,41.178013473],[-71.571848327,41.177950776],[-71.571939355,41.177897613],[-71.572026964,41.177928708],[-71.572119381,41.178037838],[-71.572161609,41.178091879],[-71.572208749,41.17815454],[-71.572252613,41.178209792],[-71.572293243,41.178270009],[-71.572333854,41.178312982],[-71.572361489,41.178365797],[-71.572395617,41.178403879],[-71.572432453,41.178427619],[-71.572452847,41.17843251],[-71.572524121,41.178412265],[-71.572541936,41.178404678],[-71.572610608,41.178378334],[-71.572690464,41.178351433],[-71.572747507,41.178307141],[-71.572789593,41.178259794],[-71.572840616,41.178219233],[-71.572921519,41.178180278],[-71.572992418,41.178156356],[-71.573052404,41.178118832],[-71.573083602,41.1780534],[-71.573077876,41.177994625],[-71.573054224,41.177931286],[-71.572992656,41.177879911],[-71.572920071,41.177830784],[-71.572874456,41.177779444],[-71.572886705,41.177714687],[-71.57291885,41.177657535],[-71.573001682,41.177639665],[-71.573087362,41.177650406],[-71.573176085,41.177649161],[-71.57324608,41.177601841],[-71.573272305,41.17752962],[-71.573226742,41.177470755],[-71.573156184,41.17741934],[-71.573114555,41.177359764],[-71.573095921,41.17728963],[-71.573118156,41.177222648],[-71.57315028,41.177173775],[-71.5731785,41.177099288],[-71.573206653,41.177045111],[-71.57322867,41.177027098],[-71.573299203,41.177083019],[-71.573345846,41.177133603],[-71.573395436,41.17719322],[-71.573444994,41.17725135],[-71.573490615,41.177307973],[-71.573530244,41.17736604],[-71.573568901,41.177421158],[-71.573607528,41.177476231],[-71.5736332,41.17753202],[-71.573649843,41.177607393],[-71.573671447,41.177679767],[-71.573669088,41.177762608],[-71.573692692,41.177837245],[-71.573736365,41.177883279],[-71.573792959,41.177925601],[-71.57385765,41.177953668],[-71.573931405,41.177965903],[-71.574029092,41.17796767],[-71.57408108,41.177924089],[-71.574119198,41.177876721],[-71.574159334,41.177819563],[-71.574204464,41.177761692],[-71.574258526,41.17770608],[-71.574316586,41.177651975],[-71.574371647,41.17759714],[-71.574419774,41.177539268],[-71.57446884,41.177482904],[-71.574527875,41.177434836],[-71.57458791,41.1773883],[-71.574646919,41.177344738],[-71.574699909,41.177304976],[-71.574766936,41.177257658],[-71.57478201,41.177230569],[-71.574742331,41.177183068],[-71.5747017,41.177122668],[-71.574675106,41.177055558],[-71.574659487,41.176976457],[-71.574678799,41.176895137],[-71.574713915,41.17684402],[-71.574744086,41.176782316],[-71.574722434,41.176721996],[-71.574746682,41.176643006],[-71.574766896,41.176583527],[-71.574788081,41.176526336],[-71.574822193,41.176470691],[-71.574860308,41.176421058],[-71.57489046,41.176370676],[-71.574906624,41.17631646],[-71.574899896,41.176256954],[-71.574875276,41.176195126],[-71.574840614,41.17613932],[-71.574792947,41.176093997],[-71.57472928,41.176060715],[-71.574655611,41.176041665],[-71.574581912,41.176023416],[-71.574509238,41.176001369],[-71.574434541,41.175983875],[-71.574371846,41.175952834],[-71.574304338,41.175894693],[-71.574274721,41.175829849],[-71.574328853,41.175757632],[-71.574411757,41.175724713],[-71.574501602,41.175700823],[-71.574578433,41.175678451],[-71.574659314,41.175650747],[-71.574739197,41.175623821],[-71.574817049,41.175594656],[-71.574895985,41.175560229],[-71.574983852,41.175527306],[-71.575080656,41.175500438],[-71.575177441,41.17548409],[-71.575270228,41.175465481],[-71.575343973,41.175470945],[-71.575416672,41.175489194],[-71.57550727,41.175515048],[-71.575588889,41.175549873],[-71.575662439,41.175597511],[-71.575728103,41.175630083],[-71.575797733,41.175664138],[-71.575854382,41.175701175],[-71.575937,41.1757368],[-71.576013662,41.175752073],[-71.576087503,41.175735671],[-71.576185193,41.175742674],[-71.576269727,41.175785113],[-71.576301391,41.175838633],[-71.576325093,41.175890673],[-71.576332724,41.175972021],[-71.57633645,41.176026269],[-71.576344131,41.176097851],[-71.576323994,41.176143744],[-71.576251085,41.176180478],[-71.576158169,41.176219397],[-71.576069281,41.17625987],[-71.576004258,41.176310938],[-71.575995031,41.176367391],[-71.576009775,41.176422409],[-71.576042438,41.17647522],[-71.576087109,41.176520567],[-71.576147676,41.176568877],[-71.576214267,41.17661652],[-71.576285874,41.176657389],[-71.576366496,41.176692969],[-71.576450056,41.176730102],[-71.576526627,41.17677019],[-71.576602209,41.176818604],[-71.576669747,41.176873725],[-71.576735286,41.176927383],[-71.57679392,41.176978759],[-71.576838542,41.177033094],[-71.57687021,41.177088901],[-71.576900854,41.177149238],[-71.576924507,41.177210312],[-71.576947212,41.177263838],[-71.57696785,41.177335434],[-71.576975526,41.177402533],[-71.576950372,41.1774552],[-71.576852629,41.177457186],[-71.576765925,41.1774502],[-71.576695244,41.177426666],[-71.576614652,41.177391064],[-71.576543019,41.177355501],[-71.576466351,41.177336477],[-71.576393557,41.177343821],[-71.576303785,41.177353395],[-71.576222003,41.177362987],[-71.576146208,41.177365804],[-71.576063453,41.177370868],[-71.57596372,41.177379671],[-71.575885905,41.177390014],[-71.575809013,41.17741321],[-71.575768911,41.177472565],[-71.575779559,41.177544168],[-71.575795177,41.177621782],[-71.575809797,41.177699421],[-71.575791512,41.177776943],[-71.57574943,41.177825778],[-71.575697359,41.17787462],[-71.575646315,41.177921196],[-71.575566388,41.177964681],[-71.575494558,41.177967542],[-71.575417846,41.177964321],[-71.575333065,41.177971673],[-71.57525023,41.177987256],[-71.575174368,41.178011915],[-71.575100454,41.178046408],[-71.575029533,41.178077079],[-71.57496361,41.178110056],[-71.5749006,41.178150579],[-71.574844587,41.178193385],[-71.574803502,41.178240732],[-71.574770384,41.178293358],[-71.574727255,41.178353537],[-71.574680131,41.178414428],[-71.574642965,41.178474581],[-71.574628769,41.178528772],[-71.574608583,41.178586741],[-71.574581408,41.178648442],[-71.574557153,41.17872144],[-71.574531949,41.178786182],[-71.574504768,41.178841822],[-71.574454624,41.178909485],[-71.574398661,41.178944743],[-71.574326785,41.178961897],[-71.574263048,41.178948924],[-71.574212505,41.178878033],[-71.574186834,41.178824462],[-71.574149243,41.178749789],[-71.574098611,41.178706709],[-71.57403502,41.178661374],[-71.573966431,41.178613754],[-71.573910828,41.178565394],[-71.573857169,41.178522339],[-71.573772626,41.178473174],[-71.573709933,41.178445883],[-71.573645242,41.178417839],[-71.573572593,41.17839355],[-71.573498893,41.178376833],[-71.573396241,41.1783758],[-71.573326366,41.178395217],[-71.573251496,41.178414614],[-71.573167663,41.178431729],[-71.573083859,41.178448066],[-71.5729821,41.178460619],[-71.572884439,41.178455878],[-71.572778734,41.178459375],[-71.57270691,41.178468226],[-71.572623355,41.17849216],[-71.572538727,41.178525039],[-71.57250719,41.178533901],[-71.572436374,41.178551899],[-71.572359531,41.178566768],[-71.572278695,41.178584658],[-71.572206853,41.178605585],[-71.57213595,41.178626465],[-71.572063079,41.178647392],[-71.571972287,41.178668239],[-71.571897414,41.178686125],[-71.571482157,41.178806344],[-71.571407313,41.178822743],[-71.571315546,41.178838306],[-71.571237729,41.178849447],[-71.571191768,41.178868916],[-71.571194543,41.178915595],[-71.571256093,41.17897827],[-71.571321729,41.179012353],[-71.571403346,41.179044185],[-71.571474973,41.179076],[-71.571548678,41.179097293],[-71.571641322,41.179108808],[-71.571733023,41.179115819],[-71.571824724,41.179122051],[-71.571918391,41.179127573],[-71.572020076,41.179129339],[-71.572105836,41.179128828],[-71.572180579,41.179130497],[-71.572278276,41.179139813],[-71.572354866,41.179168605],[-71.572417439,41.179224509],[-71.572470002,41.179289407],[-71.572535596,41.179340049],[-71.572629151,41.17938022],[-71.572724694,41.179412066],[-71.572808335,41.179438635],[-71.572873992,41.179463683],[-71.572957779,41.179458598],[-71.573023514,41.179470839],[-71.573084143,41.17951995],[-71.573119773,41.179575025],[-71.573149385,41.179634608],[-71.573181052,41.179691172],[-71.573212717,41.179745471],[-71.573244408,41.179796019],[-71.573284062,41.179848094],[-71.573322744,41.179897174],[-71.573368336,41.179953752],[-71.573372214,41.179983139],[-71.573308231,41.180022152],[-71.573281726,41.18003365],[-71.573244297,41.180049867],[-71.573184338,41.180086636],[-71.57312235,41.180122606],[-71.573059362,41.180157113],[-71.573001398,41.180191617],[-71.572947403,41.180228383],[-71.572883347,41.1802832],[-71.572868103,41.180350199],[-71.572882746,41.180424064],[-71.572907392,41.180482873],[-71.572935066,41.180541704],[-71.572965731,41.180595271],[-71.573005412,41.180644305],[-71.573057048,41.180690404],[-71.573111628,41.18074327],[-71.573164217,41.180802885],[-71.5732188,41.180858771],[-71.573273411,41.180912392],[-71.573334014,41.180963745],[-71.573397579,41.181010636],[-71.573458254,41.181045453],[-71.573564939,41.181048724],[-71.573648669,41.181045149],[-71.573724467,41.181040823],[-71.573800264,41.181035743],[-71.573879057,41.181029151],[-71.573962865,41.1810143],[-71.574034717,41.181000165],[-71.574118356,41.181023005],[-71.574164999,41.181069793],[-71.574206654,41.181123376],[-71.574245309,41.181173942],[-71.574277002,41.181225222],[-71.574522777,41.181563283],[-71.575035968,41.182309513],[-71.575235688,41.182236195],[-71.575258492,41.182269389],[-71.575331357,41.182240204],[-71.575136367,41.181922604],[-71.575029562,41.181948724],[-71.574809794,41.181589628],[-71.575106742,41.18140356],[-71.575193541,41.181382691],[-71.575277425,41.18135503],[-71.575358255,41.181329613],[-71.575443141,41.181304239],[-71.575539957,41.181280367],[-71.575642738,41.181258023],[-71.575738532,41.181241675],[-71.575841265,41.181229898],[-71.575959955,41.181221128],[-71.576077565,41.18122144],[-71.576177261,41.181228487],[-71.576274931,41.181236221],[-71.576367579,41.181247755],[-71.576440313,41.181263763],[-71.576527929,41.181295633],[-71.576601507,41.181334191],[-71.576656123,41.181389343],[-71.57666884,41.181442876],[-71.576666576,41.181500833],[-71.576670363,41.181555081],[-71.576663083,41.181620612],[-71.57664287,41.181680823],[-71.576643604,41.181738801],[-71.576700146,41.181809755],[-71.576756758,41.181862596],[-71.576815338,41.181916236],[-71.576866958,41.181971367],[-71.576922492,41.182033997],[-71.576978082,41.182092922],[-71.57703669,41.182143519],[-71.577117267,41.182186646],[-71.577209822,41.182220777],[-71.577291494,41.182241306],[-71.577372236,41.182244545],[-71.577463988,41.18223872],[-71.577570723,41.182231444],[-71.577661425,41.182233944],[-71.577737126,41.182249194],[-71.577814849,41.182259205],[-71.577899616,41.182260154],[-71.577993284,41.182262629],[-71.578081021,41.182266618],[-71.57815981,41.182256273],[-71.57823468,41.182234586],[-71.578294719,41.182189557],[-71.578360652,41.182161838],[-71.578457388,41.182147775],[-71.578554183,41.182131448],[-71.578657913,41.182118134],[-71.57877663,41.182105657],[-71.57889035,41.182091605],[-71.578992107,41.182073764],[-71.579102805,41.182064997],[-71.579231435,41.182063811],[-71.57934311,41.182061859],[-71.579454766,41.182068895],[-71.579589288,41.182083508],[-71.579708859,41.182101882],[-71.579820409,41.182120994],[-71.579945907,41.182158233],[-71.580068348,41.182196183],[-71.58017292,41.182228061],[-71.580225432,41.182242342],[-71.58030693,41.182269685],[-71.580881113,41.182383205],[-71.580948373,41.182402323],[-71.581045219,41.1824281],[-71.581139228,41.182460534],[-71.581224345,41.182499744],[-71.581296619,41.182533771],[-71.581386558,41.182555824],[-71.58145382,41.182574965],[-71.581545832,41.182608932],[-71.58162995,41.182647411],[-71.581712097,41.182684381],[-71.581791308,41.182720622],[-71.58187153,41.182767313],[-71.581919172,41.182808905],[-71.581968814,41.182851982],[-71.582018457,41.182896523],[-71.582068068,41.182938845],[-71.582117645,41.182978194],[-71.582169219,41.183016787],[-71.582221797,41.183059084],[-71.582279344,41.183105105],[-71.582333957,41.183152639],[-71.582384604,41.183200174],[-71.582449101,41.183259594],[-71.58249088,41.183309423],[-71.582521866,41.183370421],[-71.582570588,41.183427679],[-71.582641008,41.183478128],[-71.582719225,41.183517365],[-71.58280727,41.18354836],[-71.582900134,41.18355918],[-71.582987886,41.183549923],[-71.583070801,41.183545883],[-71.583142856,41.183547867],[-71.58321896,41.183568465],[-71.583300174,41.183607699],[-71.583367556,41.183649207],[-71.583422066,41.183686288],[-71.583482511,41.183724851],[-71.583534089,41.183764929],[-71.583581769,41.183811712],[-71.583622583,41.183863028],[-71.58366637,41.183918802],[-71.583713197,41.183984981],[-71.58376493,41.18405191],[-71.583813697,41.184119573],[-71.583852658,41.184188776],[-71.583869955,41.184268538],[-71.583874234,41.184323655],[-71.583863816,41.184392322],[-71.583823741,41.184446144],[-71.583762795,41.184490376],[-71.583675896,41.184481748],[-71.583597836,41.184471581],[-71.583540844,41.184506867],[-71.583492805,41.184559186],[-71.583449662,41.184605577],[-71.583425576,41.184639101],[-71.583411493,41.184658689],[-71.583384261,41.184718402],[-71.58336694,41.184787097],[-71.583369325,41.184853445],[-71.583375678,41.184921299],[-71.583390858,41.184978626],[-71.583413945,41.185040453],[-71.583426154,41.185071092],[-71.583440034,41.185105983],[-71.583470132,41.185181162],[-71.583493176,41.185232537],[-71.58353801,41.185302491],[-71.583587773,41.185367157],[-71.583641504,41.185433308],[-71.583694201,41.185495022],[-71.58376262,41.185541012],[-71.583835948,41.185590703],[-71.583909304,41.185638153],[-71.58399835,41.185667661],[-71.584069591,41.185694986],[-71.584138947,41.185739442],[-71.584216277,41.185792127],[-71.584286775,41.185853782],[-71.584351307,41.185913154],[-71.584406976,41.185978617],[-71.584449908,41.186051499],[-71.584476118,41.186138642],[-71.584498351,41.186218377],[-71.584517509,41.186283889],[-71.584523894,41.186352475],[-71.58451441,41.186416636],[-71.584451557,41.186462379],[-71.584385591,41.186489438],[-71.584321634,41.186523975],[-71.584263707,41.186562967],[-71.584207692,41.186606417],[-71.58417642,41.186654996],[-71.584144221,41.186713272],[-71.584113025,41.186774544],[-71.58408376,41.186831332],[-71.584065391,41.186884315],[-71.584051046,41.186959686],[-71.58404163,41.187030548],[-71.584036107,41.187091733],[-71.58403545,41.187146167],[-71.584084171,41.187199673],[-71.584144616,41.187235239],[-71.584219801,41.187267021],[-71.584290077,41.187295101],[-71.584356418,41.187324694],[-71.584436529,41.187349725],[-71.584519574,41.187371803],[-71.584601613,41.187389399],[-71.584690627,41.187415201],[-71.584778645,41.187443954],[-71.584862762,41.187476438],[-71.584944879,41.187506728],[-71.585039839,41.187542154],[-71.585109149,41.187572476],[-71.585182431,41.187607254],[-71.585258657,41.187647268],[-71.585333012,41.187691721],[-71.585409273,41.187735462],[-71.585488564,41.187781375],[-71.585575702,41.187831032],[-71.585669838,41.187883612],[-71.585756076,41.187939216],[-71.585842283,41.18799482],[-71.585929523,41.188052665],[-71.586017763,41.188110486],[-71.586099107,41.188174328],[-71.586175517,41.188238173],[-71.586249957,41.188300533],[-71.586318497,41.188365939],[-71.586387006,41.188430521],[-71.586445716,41.188503368],[-71.586493553,41.188572563],[-71.586528439,41.188624615],[-71.586556422,41.188676717],[-71.586597366,41.188753351],[-71.586628429,41.188821849],[-71.586655527,41.188891129],[-71.586679621,41.188955882],[-71.586703782,41.189025163],[-71.586725987,41.189103343],[-71.586749154,41.189176354],[-71.586767343,41.18923967],[-71.586783505,41.189303743],[-71.586790966,41.189382735],[-71.586791495,41.189462509],[-71.586792882,41.189526639],[-71.586795233,41.189587063],[-71.586799656,41.189657846],[-71.586810025,41.18973759],[-71.586823283,41.18980393],[-71.5868365,41.189862013],[-71.586849724,41.189926111],[-71.586855188,41.190005149],[-71.586865518,41.190078169],[-71.586907381,41.190139158],[-71.586967946,41.190193363],[-71.587037421,41.190254285],[-71.587109902,41.190321083],[-71.587131754,41.190337419],[-71.587190277,41.190381196],[-71.587282416,41.19043158],[-71.587367585,41.190476709],[-71.587448819,41.190522664],[-71.587529122,41.190574567],[-71.587611362,41.190624958],[-71.587696491,41.190662677],[-71.587775678,41.190694453],[-71.587845929,41.190723286],[-71.587913202,41.19074391],[-71.587914937,41.190705119],[-71.587879939,41.190638911],[-71.587853952,41.190586784],[-71.587826937,41.190535459],[-71.587792894,41.190459507],[-71.587781681,41.190405859],[-71.587781298,41.190346212],[-71.587781619,41.190336926],[-71.587783806,41.190273891],[-71.587787316,41.19020452],[-71.58778987,41.190144847],[-71.587793453,41.190084419],[-71.587799901,41.190015823],[-71.587820183,41.189944907],[-71.587851371,41.189879151],[-71.587890441,41.189820868],[-71.587943346,41.189761752],[-71.587998206,41.189692959],[-71.588060046,41.189636031],[-71.588117929,41.18958663],[-71.588162035,41.189535754],[-71.588199165,41.189475963],[-71.588248166,41.189418382],[-71.588319929,41.189379331],[-71.58841847,41.189349889],[-71.588514053,41.189327173],[-71.58860477,41.189311185],[-71.588698493,41.189301164],[-71.58878428,41.189288884],[-71.588818594,41.189252218],[-71.588832243,41.189225334],[-71.588929094,41.189245089],[-71.589009176,41.189267921],[-71.589087241,41.189276575],[-71.589173058,41.189264341],[-71.589243779,41.189215593],[-71.589308588,41.189161681],[-71.589379333,41.189109228],[-71.589459993,41.189067174],[-71.589549479,41.189014638],[-71.589630059,41.188958426],[-71.589691832,41.188898524],[-71.589755597,41.188834161],[-71.58982823,41.188768281],[-71.589914713,41.188712019],[-71.590013106,41.188663935],[-71.590100627,41.188614419],[-71.59018421,41.188562642],[-71.5902718,41.188519804],[-71.590360371,41.188485176],[-71.590447076,41.188458761],[-71.59053899,41.188477809],[-71.590622111,41.188508825],[-71.590723082,41.188552453],[-71.59082699,41.188596787],[-71.59092402,41.188636689],[-71.591022997,41.188683314],[-71.591133915,41.188738094],[-71.591241973,41.188804793],[-71.591333199,41.188873037],[-71.591421444,41.188930899],[-71.591513628,41.1889902],[-71.59160292,41.18906071],[-71.591675481,41.189138711],[-71.591738126,41.189206337],[-71.591790865,41.189269511],[-71.591834778,41.18934319],[-71.591865897,41.189425822],[-71.591875188,41.189487704],[-71.591847894,41.189542228],[-71.591824601,41.189599722],[-71.591821019,41.189658641],[-71.591831385,41.189731683],[-71.591856483,41.189795725],[-71.591892421,41.189859736],[-71.591923529,41.189934889],[-71.591950751,41.190023539],[-71.591975887,41.190092773],[-71.591992048,41.190153117],[-71.592003378,41.190222431],[-71.59201379,41.190306657],[-71.59201628,41.190333552],[-71.592020185,41.190375975],[-71.59201757,41.190432674],[-71.592002183,41.190493112],[-71.591978011,41.190572266],[-71.591944966,41.19064994],[-71.591905869,41.190708247],[-71.591865737,41.190762804],[-71.591829648,41.190828542],[-71.591799501,41.190900244],[-71.591767335,41.190957082],[-71.591717374,41.191019858],[-71.591673306,41.191074486],[-71.59163035,41.191144712],[-71.591575447,41.1912031],[-71.591512525,41.191242077],[-71.591457203,41.191238553],[-71.591429208,41.191181992],[-71.591398286,41.191132157],[-71.591415711,41.191077641],[-71.591457815,41.191026056],[-71.591463442,41.190979051],[-71.59139332,41.190979313],[-71.591323383,41.191003429],[-71.591254477,41.191029054],[-71.59119148,41.191058379],[-71.591115793,41.191106354],[-71.591053059,41.191172227],[-71.591010104,41.191244716],[-71.590985855,41.191312663],[-71.590976524,41.191396196],[-71.590970052,41.191467079],[-71.590962608,41.191535676],[-71.59095412,41.19159389],[-71.590951532,41.19164908],[-71.590950952,41.19171097],[-71.590943547,41.191786313],[-71.590932133,41.191851986],[-71.590906802,41.191904243],[-71.590866669,41.191959601],[-71.590827539,41.192017152],[-71.590783453,41.192059819],[-71.590719419,41.192083907],[-71.590649439,41.192100567],[-71.590555896,41.192133712],[-71.590490932,41.192164548],[-71.590435951,41.192210974],[-71.590387838,41.192254444],[-71.590338827,41.19230457],[-71.590282842,41.192348001],[-71.590181327,41.192375229],[-71.590107442,41.192391891],[-71.590033497,41.192410086],[-71.589960551,41.192427502],[-71.58989361,41.192452347],[-71.589825902,41.19251374],[-71.589805512,41.192571231],[-71.58979907,41.192642846],[-71.589797563,41.192714434],[-71.589787108,41.192774136],[-71.589771684,41.192831623],[-71.589759266,41.192895032],[-71.589743955,41.192968895],[-71.589710831,41.193035384],[-71.589671906,41.193089619],[-71.589666799,41.193096736],[-71.589618798,41.193155781],[-71.589558024,41.193218633],[-71.589492323,41.193287526],[-71.589429511,41.193343632],[-71.589358757,41.193393112],[-71.589281101,41.193443397],[-71.589195508,41.193491402],[-71.589104003,41.193533533],[-71.589023228,41.193562138],[-71.588950396,41.193597439],[-71.588898377,41.193641621],[-71.588860169,41.193689497],[-71.588818177,41.193759767],[-71.588809574,41.193801559],[-71.588753615,41.193911086],[-71.588734681,41.193971046],[-71.588726613,41.194027384],[-71.588719486,41.194086718],[-71.58871524,41.194148359],[-71.588709139,41.194204695],[-71.588699075,41.194263299],[-71.588682023,41.194326963],[-71.588649454,41.194380049],[-71.588606304,41.194423354],[-71.588546037,41.194482088],[-71.58849878,41.194532784],[-71.588463272,41.194585095],[-71.588449157,41.194648802],[-71.588424347,41.194707943],[-71.588376005,41.1947631],[-71.588320616,41.194824071],[-71.588262234,41.19488875],[-71.588224618,41.19494925],[-71.588182407,41.194993264],[-71.588159478,41.195055422],[-71.58817012,41.195110511],[-71.58822463,41.195138647],[-71.588315476,41.195167189],[-71.58840327,41.195200948],[-71.588469362,41.195239595],[-71.588532485,41.195278222],[-71.588577783,41.195323312],[-71.588586116,41.195394732],[-71.58859673,41.195452062],[-71.588613136,41.19551538],[-71.588636499,41.195572883],[-71.588679544,41.195631308],[-71.58873374,41.195672824],[-71.588788935,41.195714338],[-71.588846099,41.195756583],[-71.588910964,41.195805683],[-71.588983643,41.195857018],[-71.589042377,41.195917147],[-71.589076666,41.195971051],[-71.589117857,41.19602424],[-71.589163898,41.196080513],[-71.589210967,41.196135299],[-71.589258031,41.196187089],[-71.58930624,41.196234463],[-71.589358412,41.196278907],[-71.589409615,41.196323375],[-71.5894639,41.196362625],[-71.589524144,41.196397503],[-71.589584385,41.196430894],[-71.589651647,41.196460688],[-71.589724927,41.196484532],[-71.589808161,41.196502649],[-71.589884545,41.196516175],[-71.589960076,41.196525997],[-71.590047444,41.196533682],[-71.590138777,41.196539991],[-71.590223179,41.196548388],[-71.590316395,41.196559178],[-71.590399796,41.196566843],[-71.590487108,41.196577524],[-71.590546384,41.196612379],[-71.590591712,41.196656004],[-71.590635702,41.196716693],[-71.590688588,41.196773029],[-71.590737711,41.196823375],[-71.590781814,41.19687814],[-71.590827828,41.196935853],[-71.590882686,41.196994475],[-71.590939568,41.197049366],[-71.590984724,41.19709967],[-71.591028826,41.19715368],[-71.591074871,41.197210684],[-71.591125707,41.197272922],[-71.591180478,41.197334471],[-71.591242211,41.197393887],[-71.591304827,41.197456276],[-71.591357574,41.197520776],[-71.591399908,41.197565845],[-71.591443184,41.197613154],[-71.59148455,41.197658955],[-71.591543145,41.197725738],[-71.59158451,41.19777083],[-71.591628784,41.197816651],[-71.591675967,41.19786478],[-71.591725148,41.19791213],[-71.591769451,41.19795722],[-71.591835807,41.198030057],[-71.591890581,41.198092383],[-71.591929949,41.19813814],[-71.591972198,41.198186936],[-71.592016415,41.198235708],[-71.592054786,41.19828222],[-71.59211538,41.198349093],[-71.592157744,41.198392651],[-71.592211378,41.198462365],[-71.592245785,41.198511785],[-71.592303468,41.198574864],[-71.592357385,41.198629757],[-71.592418177,41.198686154],[-71.592483734,41.198750072],[-71.592525046,41.198798869],[-71.592568295,41.198847641],[-71.592613625,41.198890534],[-71.592671364,41.198949884],[-71.592720123,41.199018801],[-71.592755499,41.199067534],[-71.592796753,41.199117749],[-71.592840029,41.199164348],[-71.592895776,41.199228114],[-71.592946558,41.199292615],[-71.59300233,41.199352676],[-71.593053397,41.199404552],[-71.593109654,41.199443067],[-71.593189641,41.199474474],[-71.593262378,41.199476084],[-71.593333828,41.19944499],[-71.593366341,41.199395585],[-71.593375715,41.199322916],[-71.593370973,41.19926716],[-71.593330915,41.19920576],[-71.593263876,41.199165607],[-71.593181692,41.199143831],[-71.59310248,41.199124364],[-71.59304012,41.199095368],[-71.592995844,41.199048769],[-71.592972474,41.198989849],[-71.592944426,41.19891968],[-71.592931895,41.198859379],[-71.592925497,41.198788735],[-71.592920182,41.19871363],[-71.592916777,41.198640056],[-71.592912404,41.19856646],[-71.592908228,41.198483258],[-71.592909129,41.198391865],[-71.592910943,41.198304244],[-71.592914783,41.198215134],[-71.592927691,41.19811353],[-71.592936548,41.198017075],[-71.592944379,41.197923549],[-71.592959256,41.197822721],[-71.592966146,41.197727731],[-71.592962113,41.197637782],[-71.592962129,41.197541952],[-71.592968021,41.197447695],[-71.592972801,41.197359363],[-71.592974502,41.197276933],[-71.592974834,41.197212299],[-71.592976506,41.19713138],[-71.592983913,41.197058666],[-71.592993486,41.196976345],[-71.593003144,41.19689025],[-71.593008838,41.196805622],[-71.593014645,41.196715093],[-71.593018739,41.19661265],[-71.593024744,41.196512424],[-71.593030779,41.19641222],[-71.593034821,41.196358035],[-71.593038891,41.196303118],[-71.593045952,41.196199963],[-71.593049104,41.196095256],[-71.593049268,41.196040297],[-71.593049482,41.195934792],[-71.593047643,41.19583304],[-71.593049746,41.195778833],[-71.593051957,41.19567264],[-71.593048123,41.195573794],[-71.593046312,41.195470555],[-71.593047381,41.195370241],[-71.593049422,41.195272214],[-71.593051547,41.195169017],[-71.593058635,41.195064376],[-71.593068578,41.194964901],[-71.593075694,41.194858796],[-71.59307782,41.194756285],[-71.593080888,41.194656061],[-71.593089001,41.194548446],[-71.593098028,41.194443803],[-71.593107056,41.194340669],[-71.593111126,41.194285752],[-71.593114228,41.194230813],[-71.593125224,41.194127701],[-71.593125064,41.193993264],[-71.593141532,41.193841363],[-71.593162514,41.193584046],[-71.593165012,41.193509461],[-71.593170485,41.193440088],[-71.59317893,41.193374441],[-71.593183401,41.193302827],[-71.593186789,41.193215594],[-71.593193224,41.193141006],[-71.593197628,41.19308682],[-71.5931987,41.193073851],[-71.593202166,41.192998534],[-71.593202555,41.192909793],[-71.593202984,41.192828554],[-71.593206418,41.192751727],[-71.593210843,41.192669685],[-71.593217171,41.19258389],[-71.593227575,41.19251154],[-71.593241911,41.192436922],[-71.593257102,41.192345128],[-71.593276227,41.192252598],[-71.593293429,41.192169768],[-71.593306688,41.192082481],[-71.593320869,41.191983986],[-71.593333132,41.191898941],[-71.593344428,41.191815383],[-71.593360576,41.191716155],[-71.593376767,41.191625114],[-71.593393969,41.191543015],[-71.593420032,41.191453476],[-71.593456961,41.191361596],[-71.593495904,41.191280943],[-71.593529937,41.191196544],[-71.593558857,41.191094286],[-71.593584922,41.191006165],[-71.59361499,41.190923347],[-71.593647913,41.190824745],[-71.593682846,41.190735176],[-71.593722789,41.190655208],[-71.593770628,41.190571529],[-71.593821325,41.190474377],[-71.593872068,41.190388431],[-71.593900781,41.190332008],[-71.593916903,41.190300295],[-71.59395966,41.19019798],[-71.594002528,41.1901106],[-71.59404737,41.190027632],[-71.594098061,41.189926798],[-71.594151728,41.189832616],[-71.59420743,41.189742938],[-71.59426596,41.189641319],[-71.594294256,41.189589744],[-71.594351925,41.189500065],[-71.594405602,41.189413362],[-71.594433896,41.189361055],[-71.594461188,41.18930653],[-71.594518821,41.189213077],[-71.594581432,41.189128608],[-71.594614666,41.189080002],[-71.594648862,41.189026181],[-71.594683093,41.188976111],[-71.594745666,41.188886404],[-71.594805269,41.188794436],[-71.59483553,41.18874215],[-71.594866793,41.188691327],[-71.594928365,41.188600844],[-71.594992937,41.18851189],[-71.595026163,41.18845807],[-71.595044707,41.188427087],[-71.595058087,41.188404753],[-71.595092593,41.188356421],[-71.595163101,41.188269658],[-71.595237541,41.188179896],[-71.595276708,41.188130553],[-71.595317813,41.188082649],[-71.595360952,41.188037763],[-71.595405122,41.18799434],[-71.595450229,41.187949452],[-71.595497271,41.18790303],[-71.595542335,41.187849932],[-71.595585434,41.18779903],[-71.595627572,41.18775339],[-71.595705024,41.1876741],[-71.595760914,41.187612713],[-71.59580402,41.187566317],[-71.595852065,41.18752289],[-71.595913007,41.187479453],[-71.59597592,41.187438164],[-71.596053571,41.187392379],[-71.596111623,41.187360105],[-71.596169605,41.187321839],[-71.596227584,41.187281377],[-71.596284534,41.187240893],[-71.596340509,41.187196705],[-71.596398484,41.187153247],[-71.596459396,41.187110496],[-71.59651831,41.187067768],[-71.596576289,41.187027284],[-71.5966313,41.186986824],[-71.596691198,41.186933644],[-71.596733228,41.186877551],[-71.596786079,41.186808756],[-71.596837003,41.186747418],[-71.596893751,41.186673382],[-71.596948531,41.18659937],[-71.597005385,41.186535763],[-71.597071116,41.186476609],[-71.597140775,41.186412236],[-71.597217369,41.186349299],[-71.597300834,41.1862856],[-71.597382366,41.186224877],[-71.597472802,41.18616641],[-71.597561171,41.186102685],[-71.597642661,41.186034505],[-71.597726123,41.185969343],[-71.59780962,41.185907108],[-71.597880204,41.185834524],[-71.597941838,41.185749299],[-71.598004514,41.185673016],[-71.598066203,41.185604144],[-71.598120979,41.185529399],[-71.598172667,41.185433731],[-71.598219496,41.185348564],[-71.598262365,41.185267861],[-71.598315091,41.185178206],[-71.598370747,41.185084776],[-71.598428422,41.185004746],[-71.598495032,41.184928459],[-71.598574398,41.184837958],[-71.598614565,41.184793028],[-71.598694012,41.184716707],[-71.598778432,41.184646283],[-71.598868757,41.184576562],[-71.598961076,41.184504644],[-71.59905437,41.184436431],[-71.599146766,41.184375674],[-71.59923921,41.184326124],[-71.599322786,41.184278868],[-71.599387732,41.184244277],[-71.599461484,41.184206727],[-71.599544134,41.18416766],[-71.599615958,41.184136791],[-71.599690774,41.18410219],[-71.599771458,41.184064635],[-71.599867948,41.184029215],[-71.599962436,41.183990824],[-71.600056994,41.183959156],[-71.600162388,41.183925947],[-71.60027171,41.183887474],[-71.600368165,41.183849104],[-71.600464613,41.183806205],[-71.600561957,41.183755163],[-71.600656316,41.183692893],[-71.600742707,41.183626194],[-71.60082816,41.18356025],[-71.600914548,41.183492087],[-71.601008837,41.183423848],[-71.601103079,41.183345202],[-71.601195403,41.183278497],[-71.601294734,41.183221438],[-71.601408881,41.18317253],[-71.601522134,41.183132589],[-71.601632508,41.183110535],[-71.601753854,41.183096682],[-71.601880038,41.183079028],[-71.601993407,41.18305624],[-71.602022796,41.183051502],[-71.602111718,41.183037152],[-71.602239904,41.183022469],[-71.602353351,41.183010864],[-71.60246688,41.183012662],[-71.602590441,41.183041278],[-71.602704094,41.183063956],[-71.602813576,41.183052377],[-71.602938747,41.183026512],[-71.603064843,41.18299175],[-71.60317817,41.182961481],[-71.60330134,41.182933422],[-71.603429405,41.182900121],[-71.603543738,41.182874334],[-71.603636441,41.182858309],[-71.603718213,41.182840853],[-71.603797121,41.182831588],[-71.603888791,41.182813346],[-71.60396863,41.182798865],[-71.604068159,41.182773159],[-71.604146532,41.182750583],[-71.604186353,41.182739111],[-71.604299644,41.182705159],[-71.60441094,41.182674159],[-71.604531121,41.182632699],[-71.60464029,41.182577824],[-71.604733609,41.182511847],[-71.604822881,41.182433226],[-71.604916155,41.182358283],[-71.604994594,41.182282668],[-71.605065085,41.182197408],[-71.605138509,41.182109882],[-71.605205104,41.182030572],[-71.605267766,41.181952775],[-71.605332251,41.181860088],[-71.605392865,41.181770354],[-71.605459462,41.181692577],[-71.605524024,41.181610296],[-71.605555278,41.181561711],[-71.605612889,41.181468252],[-71.60566958,41.181386779],[-71.605727231,41.181299335],[-71.605754517,41.181249245],[-71.605801294,41.181158838],[-71.605844152,41.181078131],[-71.605885994,41.180987751],[-71.605922829,41.180889211],[-71.605959807,41.180804782],[-71.605993723,41.180717429],[-71.606009137,41.180664422],[-71.606033166,41.180565916],[-71.60605331,41.180480039],[-71.606077378,41.180386793],[-71.606103311,41.180286731],[-71.606128422,41.180202381],[-71.606145631,41.18011733],[-71.60615499,41.180045689],[-71.606157411,41.180007514],[-71.606158562,41.179989011],[-71.606188644,41.179909094],[-71.606204903,41.179835959],[-71.606220109,41.179747937],[-71.606232388,41.179665863],[-71.606247634,41.179583764],[-71.606267703,41.179489745],[-71.606286797,41.179391221],[-71.606307936,41.17930317],[-71.606329978,41.179212099],[-71.606361872,41.179110613],[-71.606396815,41.17902319],[-71.606430758,41.178934372],[-71.60644717,41.178881341],[-71.606462614,41.178828334],[-71.606500482,41.178734253],[-71.606534389,41.178642393],[-71.60654983,41.178587877],[-71.606566239,41.17853265],[-71.60659811,41.178436333],[-71.606625142,41.178343039],[-71.606636619,41.178289281],[-71.606659691,41.178198987],[-71.606681989,41.178135521],[-71.6067061,41.178051904],[-71.606746917,41.177965253],[-71.606800661,41.177880031],[-71.606850409,41.177794126],[-71.606902049,41.177699208],[-71.606930328,41.177646875],[-71.606976058,41.177548303],[-71.607022833,41.177458627],[-71.607075433,41.177359249],[-71.607126102,41.1772636],[-71.60717981,41.177174672],[-71.607234382,41.177078265],[-71.607263663,41.177028195],[-71.607312402,41.176937053],[-71.607348272,41.176843682],[-71.607364679,41.176788456],[-71.607381087,41.176733207],[-71.607415984,41.176637641],[-71.607452853,41.176544269],[-71.607469261,41.176489774],[-71.607484671,41.17643528],[-71.607516568,41.176338208],[-71.607552469,41.176245637],[-71.607571844,41.17619114],[-71.607592218,41.176136596],[-71.607636922,41.176040998],[-71.607677759,41.175949863],[-71.607694197,41.175895369],[-71.607708603,41.175837903],[-71.607732626,41.175738619],[-71.607756629,41.17564535],[-71.607766137,41.175591594],[-71.607782258,41.175491654],[-71.6077945,41.175407316],[-71.607818571,41.175318485],[-71.607855474,41.175228886],[-71.607891425,41.17514894],[-71.607917534,41.175066808],[-71.607918787,41.174963177],[-71.607887617,41.174876044],[-71.607846591,41.174795667],[-71.607811411,41.174699595],[-71.607788029,41.174599052],[-71.60776573,41.174512642],[-71.607742385,41.174415781],[-71.607733118,41.174357651],[-71.607723858,41.174304004],[-71.607706449,41.174208647],[-71.607697869,41.174107999],[-71.607698471,41.174050568],[-71.607701759,41.173951395],[-71.607705129,41.17386487],[-71.607710556,41.173796251],[-71.60771409,41.1737366],[-71.607722515,41.173668733],[-71.607735789,41.173585858],[-71.607751881,41.17348665],[-71.607765775,41.173431494],[-71.607775909,41.173391117],[-71.607807877,41.173300769],[-71.607840736,41.173200722],[-71.607873595,41.17309992],[-71.607906566,41.173012567],[-71.607956301,41.172922156],[-71.607985547,41.172870576],[-71.608049083,41.172779352],[-71.608131468,41.172701489],[-71.60822065,41.17261541],[-71.608265766,41.172569739],[-71.60836489,41.17249257],[-71.608418887,41.172454301],[-71.608472912,41.172414591],[-71.60852594,41.172376346],[-71.608577966,41.172335884],[-71.608630987,41.172293179],[-71.608684015,41.172254934],[-71.608742986,41.172222652],[-71.60880399,41.172194052],[-71.608925048,41.172147371],[-71.60903427,41.172099993],[-71.609145342,41.1720369],[-71.609202304,41.171998651],[-71.609291621,41.171922268],[-71.609347342,41.171847495],[-71.609380319,41.171765332],[-71.609409236,41.171662293],[-71.609442165,41.171569747],[-71.609464267,41.171482381],[-71.609480316,41.171377226],[-71.609498402,41.171277948],[-71.609524434,41.171187627],[-71.60954284,41.171135349],[-71.609560208,41.171077125],[-71.609575617,41.171024094],[-71.609620417,41.17093522],[-71.609674084,41.170845513],[-71.609700392,41.170794005],[-71.609754992,41.170701279],[-71.609821535,41.170619016],[-71.60989393,41.170524808],[-71.609931073,41.170473175],[-71.60997222,41.170426799],[-71.610050593,41.170341506],[-71.610115058,41.170248015],[-71.610146265,41.170194215],[-71.610175505,41.170141148],[-71.61022423,41.170047009],[-71.610256124,41.1699522],[-71.610264626,41.169896249],[-71.610271842,41.16979483],[-71.61027617,41.169704553],[-71.61027545,41.169600192],[-71.610282668,41.169500238],[-71.610306733,41.169411383],[-71.610332649,41.169307682],[-71.610350777,41.16921586],[-71.610362249,41.169162124],[-71.610384545,41.169101654],[-71.610406679,41.169016574],[-71.610435687,41.168933684],[-71.610460835,41.168859008],[-71.610482969,41.16877466],[-71.610508957,41.168677615],[-71.610525234,41.168601484],[-71.610537565,41.168536586],[-71.610554885,41.168469397],[-71.610572053,41.168382858],[-71.610593259,41.168304481],[-71.610617367,41.168223836],[-71.610642391,41.168129788],[-71.61066542,41.168037252],[-71.61069546,41.167956579],[-71.610723455,41.167865501],[-71.610751404,41.167765481],[-71.610779479,41.167686319],[-71.610793884,41.167631094],[-71.610801381,41.167572148],[-71.610816819,41.167519163],[-71.610832144,41.167453485],[-71.610843531,41.167385569],[-71.610857768,41.167302784],[-71.610869923,41.167205775],[-71.610872448,41.167141619],[-71.610872082,41.167086453],[-71.610873567,41.16701562],[-71.610876012,41.166939547],[-71.610871519,41.166859799],[-71.610866098,41.166785999],[-71.610865613,41.166713657],[-71.610866095,41.16664056],[-71.61086566,41.16658018],[-71.610864131,41.166498897],[-71.610862763,41.166441537],[-71.610862362,41.166383353],[-71.610856161,41.166223992],[-71.610851132,41.166166658],[-71.610860926,41.166105766],[-71.610866952,41.166035888],[-71.61087982,41.165966827],[-71.61089075,41.165897745],[-71.610894698,41.165869495],[-71.610900708,41.1658264],[-71.610907866,41.165745429],[-71.610906184,41.165663551],[-71.61090379,41.165625633],[-71.610901457,41.165588378],[-71.610900605,41.165513978],[-71.610904905,41.165425508],[-71.610912146,41.165340008],[-71.610920193,41.165266423],[-71.610934196,41.165188464],[-71.610949331,41.165100052],[-71.610957488,41.165019812],[-71.610962624,41.164942479],[-71.610965899,41.164856251],[-71.610970226,41.164766248],[-71.610976359,41.164688205],[-71.610976618,41.16460859],[-71.610972162,41.164514845],[-71.610955767,41.164429894],[-71.610948045,41.164355409],[-71.610939493,41.164273516],[-71.610931934,41.164187893],[-71.610928121,41.164116469],[-71.610920264,41.164051659],[-71.610905646,41.163980155],[-71.610896981,41.163902698],[-71.610885273,41.163833409],[-71.610877387,41.163769377],[-71.610874571,41.163697175],[-71.610873828,41.163615365],[-71.610877941,41.163541739],[-71.610888786,41.163475653],[-71.610899714,41.163405816],[-71.610907762,41.163332232],[-71.610922572,41.16326692],[-71.610944116,41.163210567],[-71.610965687,41.163151973],[-71.610987337,41.163086723],[-71.611009959,41.163023691],[-71.611035465,41.16296587],[-71.611063911,41.16291038],[-71.611070726,41.16289569],[-71.611080586,41.16287441],[-71.611092437,41.162848851],[-71.611120043,41.162779913],[-71.611150671,41.1627088],[-71.611185182,41.162642874],[-71.6112157,41.162577707],[-71.611243367,41.162509501],[-71.611273909,41.162441315],[-71.61130634,41.162380629],[-71.611335783,41.162324337],[-71.611361287,41.162265785],[-71.61138981,41.162202815],[-71.611420303,41.162141354],[-71.611453703,41.162080644],[-71.611486191,41.162017739],[-71.611521668,41.161951081],[-71.611552405,41.16187322],[-71.611581118,41.161797602],[-71.611613632,41.161732433],[-71.611652991,41.161670299],[-71.61169825,41.161607497],[-71.611744453,41.161548375],[-71.611785666,41.161491454],[-71.611825914,41.161436044],[-71.611865186,41.161376837],[-71.611910475,41.161314012],[-71.611956704,41.161252672],[-71.612000993,41.161189092],[-71.612047193,41.16112853],[-71.612100322,41.161067228],[-71.612147657,41.160997722],[-71.612196879,41.160934938],[-71.61224693,41.160878832],[-71.612302776,41.160831731],[-71.612358623,41.160784607],[-71.612411503,41.160737464],[-71.612468323,41.160693312],[-71.612534812,41.160658186],[-71.612601164,41.160631247],[-71.612690265,41.160599346],[-71.612761656,41.16056426],[-71.612826395,41.160514223],[-71.612863594,41.160464716],[-71.612891145,41.160400992],[-71.612904983,41.160334903],[-71.612917795,41.160270302],[-71.612923705,41.160204884],[-71.612926843,41.16012904],[-71.612931947,41.160052485],[-71.612933953,41.159987048],[-71.612934961,41.159921566],[-71.612932225,41.159844195],[-71.612922726,41.159757797],[-71.612922901,41.159683419],[-71.612918061,41.159614215],[-71.612907457,41.159536783],[-71.612900786,41.15945857],[-71.612899936,41.159386457],[-71.612896148,41.15931277],[-71.612888588,41.159227856],[-71.612878062,41.159142968],[-71.612869342,41.159069994],[-71.612862644,41.158993313],[-71.612866001,41.158904088],[-71.612874153,41.158822338],[-71.612882115,41.158753945],[-71.612888192,41.15867963],[-71.612888528,41.158593359],[-71.61288679,41.158515233],[-71.61288691,41.158443828],[-71.612875308,41.158367083],[-71.612857886,41.15828362],[-71.612836338,41.15821274],[-71.612808782,41.158149299],[-71.612781304,41.158079111],[-71.612756983,41.157996341],[-71.612736464,41.157924728],[-71.612723619,41.157863628],[-71.612710854,41.157796582],[-71.612697285,41.157719084],[-71.612690531,41.157645376],[-71.612692593,41.157576943],[-71.612693681,41.157505561],[-71.612694019,41.157420022],[-71.612691339,41.157339677],[-71.61268841,41.157272667],[-71.612686511,41.157206434],[-71.612683747,41.15712984],[-71.612679986,41.157053888],[-71.612674152,41.156986904],[-71.612668314,41.156917678],[-71.612661671,41.156838046],[-71.612651147,41.156753867],[-71.612640464,41.156682359],[-71.612623849,41.156610788],[-71.612604516,41.156525085],[-71.612583105,41.156444576],[-71.612556546,41.156380334],[-71.612526106,41.156310903],[-71.612489873,41.156234685],[-71.612455585,41.15616224],[-71.612429107,41.156092096],[-71.612408585,41.156018265],[-71.612391164,41.155935533],[-71.612377596,41.155858058],[-71.61236769,41.155798465],[-71.61236177,41.155734431],[-71.612349037,41.155667385],[-71.612341154,41.155605549],[-71.612330248,41.155545202],[-71.612319291,41.155490824],[-71.612304479,41.155428949],[-71.612288755,41.155364833],[-71.612273862,41.155308927],[-71.61225703,41.155251468],[-71.612226699,41.155175336],[-71.612199363,41.155097714],[-71.61217682,41.155027613],[-71.612141342,41.154967061],[-71.612107995,41.154896078],[-71.612084511,41.154824445],[-71.612066598,41.154771469],[-71.612038182,41.154699818],[-71.612016556,41.154634907],[-71.612001856,41.154567863],[-71.611982277,41.154496249],[-71.611959819,41.154422396],[-71.611937112,41.154361947],[-71.611911333,41.15431042],[-71.611880623,41.154259538],[-71.611834312,41.154198882],[-71.61178587,41.154148612],[-71.611740424,41.15409763],[-71.611700793,41.154050417],[-71.61165421,41.154007601],[-71.611611616,41.153961099],[-71.611567082,41.153913112],[-71.611513739,41.153862778],[-71.61146613,41.153821473],[-71.611416587,41.15378161],[-71.611352327,41.153735678],[-71.611295855,41.153695708],[-71.611245365,41.153650677],[-71.61119302,41.15359961],[-71.611147437,41.153557525],[-71.611098969,41.153508765],[-71.611043603,41.153460674],[-71.610990204,41.153412581],[-71.610930959,41.153361475],[-71.610867781,41.15331035],[-71.610805629,41.153257714],[-71.610737518,41.153206548],[-71.610672288,41.153158375],[-71.610615901,41.153114722],[-71.610560454,41.153072577],[-71.610504926,41.153035625],[-71.610448756,41.152977082],[-71.610398405,41.15292384],[-71.610351987,41.152869862],[-71.610312385,41.152820407],[-71.610259988,41.152773845],[-71.610200742,41.152721252],[-71.610145543,41.152664218],[-71.610094249,41.152607226],[-71.610030293,41.152542698],[-71.609969195,41.152486379],[-71.609907015,41.152433742],[-71.609839014,41.152375096],[-71.609785535,41.152332264],[-71.609731141,41.152285658],[-71.609675752,41.152240517],[-71.609617342,41.15219913],[-71.609559821,41.152163619],[-71.609502298,41.1521274],[-71.609440927,41.152088188],[-71.609378584,41.152046736],[-71.609324163,41.152001594],[-71.609272709,41.151957249],[-71.609223136,41.151915945],[-71.609141289,41.151863853],[-71.609088727,41.151826188],[-71.609035192,41.151786305],[-71.608986674,41.151741981],[-71.608934193,41.151698369],[-71.608879663,41.151659997],[-71.608830123,41.151620087],[-71.608764092,41.151562216],[-71.608699087,41.151502149],[-71.608625137,41.151449409],[-71.608545117,41.15140333],[-71.608469921,41.15136548],[-71.608377829,41.151338624],[-71.608309314,41.151314971],[-71.608243761,41.151289828],[-71.608157704,41.151252652],[-71.608071568,41.15122284],[-71.607982386,41.151198977],[-71.607881401,41.151174279],[-71.607780389,41.151151068],[-71.607678407,41.151127125],[-71.607606875,41.151108643],[-71.607532431,41.151085659],[-71.607460951,41.151061939],[-71.607366006,41.151029893],[-71.607270948,41.151002262],[-71.607177024,41.150964977],[-71.607114604,41.15093018],[-71.607050215,41.15089392],[-71.606982861,41.150858372],[-71.606916475,41.150822091],[-71.606852141,41.150782789],[-71.60679174,41.150742866],[-71.606733306,41.150702918],[-71.606671992,41.150659222],[-71.606608707,41.150613286],[-71.606554404,41.150564437],[-71.606502061,41.150511172],[-71.606448751,41.15045864],[-71.606397325,41.150411298],[-71.606344875,41.150366199],[-71.606287578,41.150318107],[-71.606228283,41.150269217],[-71.606165085,41.150220308],[-71.606096925,41.150172089],[-71.606025805,41.150126824],[-71.605951692,41.150083002],[-71.605875529,41.150043665],[-71.605801335,41.150005812],[-71.605725146,41.149969425],[-71.605644939,41.149936701],[-71.605564813,41.149898099],[-71.605488709,41.149857961],[-71.60541349,41.14982235],[-71.605340154,41.149790466],[-71.605265879,41.14975856],[-71.605183789,41.149721377],[-71.605098815,41.149678251],[-71.605018831,41.149632879],[-71.604939789,41.149590501],[-71.604859692,41.149550389],[-71.604781593,41.149511007],[-71.604701471,41.149473846],[-71.604627221,41.149438211],[-71.604553026,41.149398917],[-71.604472933,41.149360977],[-71.604386881,41.149324484],[-71.604302856,41.149287302],[-71.604223703,41.149250894],[-71.60414649,41.149215994],[-71.604066343,41.149181805],[-71.60397924,41.149149795],[-71.603898121,41.149113365],[-71.603818939,41.149076934],[-71.603739762,41.149044254],[-71.603655652,41.149010045],[-71.603565724,41.14897129],[-71.603483664,41.14893262],[-71.603406479,41.148895523],[-71.603335222,41.148857667],[-71.603265991,41.14881839],[-71.603196783,41.148774608],[-71.603124667,41.148728586],[-71.603067427,41.148675988],[-71.603014177,41.148620481],[-71.602963835,41.148566481],[-71.602906567,41.148515369],[-71.602843399,41.148463507],[-71.602774359,41.148410827],[-71.602704269,41.148363317],[-71.60263204,41.148322511],[-71.602560869,41.148280216],[-71.602489752,41.148234194],[-71.602411793,41.148185158],[-71.602332808,41.148138319],[-71.602258753,41.148090058],[-71.602183733,41.148043284],[-71.602111617,41.14799653],[-71.602042467,41.147950505],[-71.60197138,41.147903042],[-71.60196829,41.147901077],[-71.601898296,41.147856266],[-71.601824243,41.147808713],[-71.601750162,41.147762693],[-71.601678021,41.147718912],[-71.601606879,41.147675107],[-71.601534627,41.147638028],[-71.60145739,41.147605367],[-71.601377219,41.147572663],[-71.601296045,41.147537695],[-71.601210912,41.147505728],[-71.601127777,41.147474467],[-71.601048602,41.147440275],[-71.600969399,41.147407593],[-71.600885266,41.147376355],[-71.600795176,41.147347296],[-71.600712981,41.147316789],[-71.600635718,41.147286346],[-71.60055945,41.147253707],[-71.600477311,41.147220203],[-71.600388248,41.147189656],[-71.60030694,41.14716514],[-71.600231562,41.147140665],[-71.600150283,41.147115371],[-71.60006011,41.147090771],[-71.599967919,41.147072829],[-71.599882484,41.147060163],[-71.599795996,41.14705125],[-71.599697793,41.14703919],[-71.599595627,41.147027111],[-71.599501302,41.14701809],[-71.599408915,41.147009821],[-71.59930772,41.147000005],[-71.599202592,41.146990124],[-71.599109265,41.14698037],[-71.599018844,41.146972145],[-71.598922466,41.146966053],[-71.598821162,41.14696367],[-71.59873163,41.146962854],[-71.598643095,41.146960574],[-71.598548604,41.146961959],[-71.598450152,41.146964811],[-71.598361478,41.14697145],[-71.598274687,41.146982571],[-71.598187845,41.146999662],[-71.598094987,41.147021126],[-71.598009002,41.147044916],[-71.597932823,41.147071032],[-71.59786052,41.147098676],[-71.5977834,41.14712326],[-71.597694478,41.147146252],[-71.597603617,41.147167028],[-71.597522615,41.14718489],[-71.59743771,41.147203465],[-71.597347846,41.147223485],[-71.597251028,41.147247147],[-71.597165098,41.147267987],[-71.597078196,41.147286517],[-71.596982485,41.147302059],[-71.596875972,41.14731745],[-71.596782256,41.147331503],[-71.596691533,41.147344067],[-71.596596818,41.147358121],[-71.596488367,41.147372735],[-71.596390661,41.147389719],[-71.596299855,41.147407497],[-71.596206136,41.147420063],[-71.596097795,41.147427266],[-71.59599743,41.147425612],[-71.595904132,41.147415878],[-71.595803904,41.147404594],[-71.595690849,41.147395357],[-71.595591595,41.147388532],[-71.595495273,41.147379463],[-71.595395215,41.147359991],[-71.595285348,41.147337416],[-71.595190304,41.147312016],[-71.595099079,41.14729185],[-71.595015779,41.147269551],[-71.594997403,41.147262293],[-71.59494636,41.147242117],[-71.594869043,41.147214666],[-71.594790673,41.147190899],[-71.594705381,41.147171528],[-71.594617066,41.147154379],[-71.594518919,41.147138609],[-71.594432488,41.147126673],[-71.594357915,41.147113377],[-71.594292399,41.147086008],[-71.594217496,41.147031773],[-71.594140457,41.146986436],[-71.594085052,41.146941333],[-71.5940348,41.146881382],[-71.593970592,41.146836904],[-71.593907016,41.146811775],[-71.593833607,41.146786562],[-71.593749257,41.146769431],[-71.593669863,41.14674866],[-71.593591439,41.146728597],[-71.593517974,41.146706403],[-71.593436949,41.146666215],[-71.593353898,41.146626783],[-71.593283316,41.146610533],[-71.593201844,41.146596419],[-71.593113531,41.146579268],[-71.593022173,41.146570994],[-71.592927821,41.146562699],[-71.592831338,41.146567054],[-71.592734601,41.146584788],[-71.592637782,41.146608447],[-71.592533067,41.146632797],[-71.59244204,41.146666194],[-71.592354832,41.146703361],[-71.592277487,41.146740612],[-71.592206985,41.146781631],[-71.592148114,41.146831698],[-71.592091211,41.146882518],[-71.592036305,41.146933314],[-71.591976522,41.146979676],[-71.59190502,41.147019918],[-71.591825711,41.147059366],[-71.59174141,41.147099504],[-71.591657306,41.14712928],[-71.591572314,41.147150824],[-71.591478486,41.147172284],[-71.591376707,41.147198895],[-71.591284791,41.147224104],[-71.591198803,41.147247889],[-71.591111816,41.14727163],[-71.591021009,41.147290182],[-71.590929257,41.147303474],[-71.59084158,41.147309375],[-71.590753129,41.14730263],[-71.590662821,41.147287674],[-71.590568665,41.147268971],[-71.590482402,41.147247357],[-71.590396139,41.147225056],[-71.590308768,41.147211608],[-71.59021735,41.147204086],[-71.590129785,41.147203308],[-71.590048064,41.147206254],[-71.589962297,41.147215172],[-71.589871546,41.147229995],[-71.589784557,41.147252248],[-71.589708406,41.147279113],[-71.589630256,41.147304424],[-71.589543154,41.147333378],[-71.58944232,41.147365202],[-71.589346187,41.147405987],[-71.589262886,41.147448387],[-71.589179636,41.147484085],[-71.589077773,41.147515909],[-71.588969895,41.147552861],[-71.58887978,41.147591492],[-71.588794535,41.147628655],[-71.588697659,41.147657525],[-71.588589007,41.147681829],[-71.588492132,41.147710699],[-71.588401182,41.14773595],[-71.588305245,41.147765573],[-71.588206344,41.147795931],[-71.588122153,41.147830142],[-71.588040956,41.147863619],[-71.587954768,41.147897764],[-71.587859775,41.147931869],[-71.587761813,41.147963734],[-71.587672718,41.147996394],[-71.587581798,41.148021622],[-71.587482009,41.148045255],[-71.587375354,41.148070334],[-71.587278418,41.148099958],[-71.587182456,41.148134063],[-71.58708056,41.148165863],[-71.586981662,41.14819917],[-71.586888659,41.148228835],[-71.586786906,41.148254734],[-71.58668213,41.14828203],[-71.586574643,41.148296702],[-71.586478183,41.148297278],[-71.586378898,41.148290445],[-71.58627183,41.148277557],[-71.586179416,41.148272252],[-71.586096751,41.148271513],[-71.58601021,41.14826849],[-71.585927574,41.148267042],[-71.585835075,41.148265442],[-71.585748588,41.148257227],[-71.585659196,41.148248991],[-71.585565838,41.14823918],[-71.585463674,41.148228598],[-71.58537126,41.14822256],[-71.585280813,41.148217252],[-71.585189367,41.14821199],[-71.585086092,41.148207332],[-71.584983732,41.148208643],[-71.584889183,41.14821299],[-71.584794607,41.148220309],[-71.584693074,41.148229807],[-71.584598303,41.148249775],[-71.584512198,41.148280211],[-71.584426063,41.148310671],[-71.584340931,41.148344125],[-71.584254714,41.148381286],[-71.584167584,41.148414719],[-71.584082365,41.148451924],[-71.583998144,41.148488328],[-71.583902147,41.148520898],[-71.583801445,41.148541601],[-71.583708639,41.148560812],[-71.583619709,41.148583062],[-71.583521916,41.148606736],[-71.583423122,41.148628925],[-71.58337902,41.148639958],[-71.583334222,41.148651151],[-71.583248229,41.148674954],[-71.583155337,41.148698624],[-71.583056518,41.148724517],[-71.582965508,41.148753469],[-71.582876439,41.148785348],[-71.582783434,41.148815742],[-71.582680625,41.148846052],[-71.582582773,41.148871212],[-71.582491905,41.148892707],[-71.582395219,41.14890746],[-71.582298591,41.148920703],[-71.58226011,41.148926334],[-71.582115111,41.148947914],[-71.582037307,41.148963979],[-71.58196428,41.148976359],[-71.581890315,41.148989494],[-71.581813414,41.14900119],[-71.581739288,41.149006274],[-71.581642044,41.149010163],[-71.581564109,41.1490182],[-71.581477717,41.149037999],[-71.58140285,41.149055503],[-71.581320912,41.149056316],[-71.581236195,41.149060812],[-71.581144927,41.149077001],[-71.581039162,41.149091141],[-71.580967071,41.149102788],[-71.580888298,41.149118144],[-71.580816978,41.149116685],[-71.580761865,41.149105539],[-71.580683189,41.149126728],[-71.580587589,41.149114558],[-71.580505422,41.149100802],[-71.580421219,41.149080528],[-71.580339888,41.14905801],[-71.580253717,41.149036274],[-71.58017229,41.149008679],[-71.580101256,41.148968589],[-71.580042749,41.148929108],[-71.579998545,41.148881475],[-71.579952337,41.14882872],[-71.57988986,41.148783432],[-71.579822602,41.14873753],[-71.579764904,41.148690707],[-71.579719665,41.148637974],[-71.579666776,41.148589706],[-71.579591933,41.148551814],[-71.57950069,41.148513385],[-71.579435537,41.148481982],[-71.579375223,41.148448334],[-71.579292501,41.148400338],[-71.57921075,41.148354514],[-71.579143529,41.148313689],[-71.579054255,41.148277408],[-71.578966825,41.148238952],[-71.578887913,41.148188758],[-71.578805195,41.148142912],[-71.578711144,41.148108875],[-71.57861903,41.148075569],[-71.578545062,41.148034748],[-71.578477873,41.147994654],[-71.578392833,41.147981607],[-71.578295526,41.147982565],[-71.57821065,41.147979032],[-71.578128483,41.147964564],[-71.578036632,41.147947999],[-71.577933286,41.147933706],[-71.577860871,41.147926413],[-71.577766211,41.147914264],[-71.577669613,41.147900606],[-71.577563461,41.147893633],[-71.577489268,41.14789222],[-71.577394804,41.147891688],[-71.577306117,41.147889621],[-71.57721346,41.147882524],[-71.577137301,41.147881843],[-71.5770593,41.147884091],[-71.576960122,41.147889418],[-71.576866884,41.147902746],[-71.576766093,41.147926279],[-71.57669901,41.147950247],[-71.576610066,41.147987541],[-71.576526647,41.148013876],[-71.576442384,41.14804387],[-71.576352539,41.148086996],[-71.576294301,41.148120336],[-71.576238031,41.148153697],[-71.576181793,41.148189916],[-71.576123683,41.148229088],[-71.576066479,41.148266086],[-71.576007334,41.148300203],[-71.575926238,41.148347577],[-71.57584979,41.148385503],[-71.575762559,41.148413349],[-71.575745378,41.148418552],[-71.57567339,41.148440419],[-71.575580378,41.148466827],[-71.575493015,41.148485914],[-71.575410172,41.148488187],[-71.575331009,41.14848021],[-71.575244806,41.148454857],[-71.575172033,41.148425675],[-71.57510446,41.148419795],[-71.575024782,41.148438053],[-71.574969674,41.148483031],[-71.574884314,41.148507193],[-71.574808479,41.148526157],[-71.574733706,41.148547292],[-71.574657902,41.148566965],[-71.574585973,41.148588076],[-71.574514139,41.148612824],[-71.574440433,41.148641987],[-71.57437057,41.148671056],[-71.574303549,41.148697195],[-71.574234589,41.148721918],[-71.574166534,41.148744467],[-71.574076523,41.148777391],[-71.573994133,41.148805896],[-71.573903862,41.14882281],[-71.573804879,41.148841262],[-71.573715095,41.148887314],[-71.573648137,41.14891709],[-71.573556093,41.14894496],[-71.573449325,41.14895619],[-71.573371292,41.14895768],[-71.573283766,41.148967319],[-71.573207091,41.148993533],[-71.573131415,41.149019814],[-71.573054576,41.149034386],[-71.572973798,41.149044638],[-71.572889145,41.149052788],[-71.572814987,41.149056403],[-71.572741861,41.149063677],[-71.572657403,41.149083468],[-71.572554769,41.149112168],[-71.572477091,41.14913479],[-71.572406128,41.149155122],[-71.572333195,41.149172619],[-71.572259231,41.14918792],[-71.572175643,41.149201856],[-71.572087214,41.149216572],[-71.572011342,41.149230433],[-71.571939218,41.149240565],[-71.571830546,41.149254744],[-71.571746892,41.149263602],[-71.571674672,41.149269387],[-71.571565804,41.149269752],[-71.571522445,41.149270168],[-71.57149255,41.149270484],[-71.571409674,41.14927129],[-71.571321984,41.149269949],[-71.571227455,41.14926724],[-71.571146997,41.149293524],[-71.571058116,41.149338109],[-71.570985186,41.149358464],[-71.570887069,41.149368199],[-71.570816556,41.14935795],[-71.570744109,41.149349212],[-71.570666979,41.149347041],[-71.570578387,41.149350823],[-71.570498479,41.149354532],[-71.570420445,41.149356729],[-71.570341412,41.149357509],[-71.570249882,41.149358389],[-71.570158386,41.14936295],[-71.570076607,41.14937105],[-71.569996829,41.149382741],[-71.569914146,41.14939521],[-71.569819934,41.149406337],[-71.569741029,41.149414412],[-71.569662996,41.149417341],[-71.569584992,41.149418829],[-71.569498275,41.149421123],[-71.569408684,41.149424928],[-71.569332617,41.149427147],[-71.569255424,41.149422779],[-71.569176228,41.149412626],[-71.569083536,41.149402595],[-71.568994753,41.149396908],[-71.56891381,41.149394783],[-71.568835712,41.149393366],[-71.568753708,41.14938907],[-71.5686687,41.149376793],[-71.568594995,41.149351289],[-71.568525098,41.149322101],[-71.568456233,41.149295131],[-71.568383559,41.149271777],[-71.56830514,41.149252131],[-71.568226814,41.149235436],[-71.568156142,41.149216472],[-71.56808628,41.14919092],[-71.568014475,41.149159583],[-71.567936767,41.149124613],[-71.567861932,41.149088932],[-71.567840319,41.149080093],[-71.567794004,41.149061183],[-71.56772146,41.149045879],[-71.567649981,41.149036361],[-71.567574658,41.149026181],[-71.567498273,41.149013075],[-71.56740142,41.148985663],[-71.567335461,41.148959308],[-71.567265567,41.148931583],[-71.56718805,41.148906104],[-71.567101913,41.148883649],[-71.567023528,41.148866953],[-71.566942427,41.148857531],[-71.566863425,41.148859064],[-71.566788361,41.148864871],[-71.56668915,41.14886948],[-71.566601493,41.148870354],[-71.566500345,41.148874232],[-71.566426216,41.148877133],[-71.566342469,41.148884523],[-71.566265534,41.148894768],[-71.566189661,41.148908626],[-71.566113854,41.14892827],[-71.566038144,41.14895377],[-71.565959654,41.148983708],[-71.565890821,41.149017162],[-71.565819921,41.14904259],[-71.565746114,41.149064451],[-71.565668433,41.149086315],[-71.565660477,41.149088767],[-71.565585037,41.14911191],[-71.565513201,41.149138824],[-71.565444303,41.149168642],[-71.565376434,41.1491999],[-71.565305599,41.149228987],[-71.565230984,41.149261049],[-71.565158338,41.149295992],[-71.565091441,41.149329445],[-71.565021605,41.149360727],[-71.564950864,41.14939345],[-71.564874376,41.149429149],[-71.564793046,41.149464188],[-71.564721432,41.149502058],[-71.564652661,41.149539148],[-71.564583859,41.149574774],[-71.564509274,41.149607545],[-71.564426943,41.149640412],[-71.564354264,41.149673158],[-71.564290239,41.149705145],[-71.564210069,41.149751802],[-71.564154047,41.14979968],[-71.564089246,41.149843309],[-71.564001592,41.149847795],[-71.56393353,41.14986741],[-71.563861788,41.149899424],[-71.563791078,41.149935074],[-71.563710682,41.149966475],[-71.563627285,41.149993487],[-71.563558289,41.150017471],[-71.563495134,41.150042848],[-71.563397433,41.150078809],[-71.563318846,41.150104309],[-71.563233511,41.150129194],[-71.56315486,41.150151811],[-71.563079115,41.150174404],[-71.563006307,41.150200585],[-71.562931628,41.150230473],[-71.562864694,41.150260266],[-71.562795017,41.150301015],[-71.562704838,41.150324484],[-71.562622346,41.15034859],[-71.56255551,41.150385677],[-71.562466299,41.1504091],[-71.562394556,41.150441114],[-71.562324846,41.150478958],[-71.562248162,41.150502305],[-71.562148948,41.150506155],[-71.562078886,41.150525062],[-71.561988995,41.150564541],[-71.561905597,41.150592328],[-71.561798632,41.150591905],[-71.561706229,41.150599365],[-71.561629481,41.15061903],[-71.561537462,41.150649064],[-71.561443313,41.150666771],[-71.561357233,41.150705469],[-71.561288683,41.15075564],[-71.561209871,41.15076881],[-71.561124212,41.150773269],[-71.561036845,41.150795249],[-71.560947953,41.150836945],[-71.56086678,41.150881381],[-71.560780605,41.150916466],[-71.560681674,41.150933466],[-71.560596988,41.150943025],[-71.560521174,41.150959784],[-71.560452048,41.150976493],[-71.560362677,41.1509912],[-71.560254935,41.151002441],[-71.560175186,41.151017075],[-71.560106027,41.151030856],[-71.560006161,41.151052225],[-71.55990026,41.151057609],[-71.559818223,41.151051865],[-71.559746775,41.15104456],[-71.559670579,41.151040163],[-71.559589638,41.1510424],[-71.559502077,41.151051274],[-71.559410704,41.151061636],[-71.559335605,41.151065288],[-71.559260316,41.151060181],[-71.559184055,41.151050706],[-71.559095206,41.151041397],[-71.559005514,41.151036434],[-71.558922604,41.151035791],[-71.558841632,41.151036541],[-71.558759752,41.15103736],[-71.558697209,41.15104],[-71.558670189,41.151041157],[-71.558590406,41.15105213],[-71.558512593,41.151067425],[-71.558438623,41.151082009],[-71.55836562,41.151095082],[-71.558274408,41.151116353],[-71.558228206,41.151120448],[-71.558141325,41.151111846],[-71.55807126,41.151128509],[-71.558022759,41.151168329],[-71.55801781,41.151217185],[-71.557931631,41.151250095],[-71.557870537,41.151283472],[-71.557801729,41.151319826],[-71.557713453,41.151341804],[-71.557643356,41.151357758],[-71.557568513,41.151378173],[-71.557493794,41.151402226],[-71.557428669,41.151427623],[-71.557335742,41.15146129],[-71.557239877,41.15149139],[-71.557164032,41.151508101],[-71.557088122,41.151520489],[-71.557015025,41.151530681],[-71.556941959,41.151542335],[-71.55686508,41.151553237],[-71.556774581,41.151560669],[-71.556687954,41.151565881],[-71.556607075,41.151570312],[-71.556527197,41.151577647],[-71.556441602,41.151587935],[-71.556345419,41.151600516],[-71.556261762,41.151611535],[-71.556181946,41.151621066],[-71.556103005,41.151627645],[-71.556013473,41.151632881],[-71.555925846,41.15163736],[-71.555844936,41.151641082],[-71.555767866,41.151641806],[-71.555687765,41.151636035],[-71.555595946,41.151620916],[-71.555588925,41.151619409],[-71.555514716,41.151603481],[-71.555437393,41.151591122],[-71.555360164,41.151582377],[-71.555275221,41.151575922],[-71.555180719,41.1515732],[-71.555099775,41.151572507],[-71.555019707,41.15156964],[-71.554939638,41.151566065],[-71.554847168,41.151567687],[-71.554761477,41.151572142],[-71.554682503,41.151575084],[-71.554602625,41.151581686],[-71.554518969,41.1515949],[-71.554427753,41.151613972],[-71.554352909,41.151634363],[-71.554283811,41.1516518],[-71.554212743,41.15166487],[-71.554133897,41.151676572],[-71.554045461,41.151691274],[-71.553965804,41.151710226],[-71.55388996,41.151729176],[-71.553817113,41.151751006],[-71.553736553,41.151775082],[-71.553649276,41.151801425],[-71.553576524,41.151828355],[-71.55350749,41.151850161],[-71.55343933,41.151867552],[-71.553369452,41.151893726],[-71.553295799,41.151927976],[-71.553226954,41.151959913],[-71.553161826,41.151984599],[-71.553062925,41.152005938],[-71.552977362,41.152019151],[-71.552895546,41.152025798],[-71.552821842,41.151998066],[-71.552723275,41.151982284],[-71.552648206,41.151988105],[-71.552563486,41.151995486],[-71.552474888,41.151997813],[-71.552396819,41.151997849],[-71.552322592,41.151997082],[-71.55224927,41.151992701],[-71.552146083,41.151989317],[-71.552069888,41.151987156],[-71.552008615,41.15195203],[-71.551908112,41.151936958],[-71.551830756,41.151920937],[-71.551741749,41.151902131],[-71.551663363,41.15188396],[-71.551587912,41.151865743],[-71.551509589,41.151850477],[-71.551423613,41.15183892],[-71.551333827,41.151829582],[-71.551257568,41.151823029],[-71.55118231,41.151818649],[-71.551106209,41.151820123],[-71.551017676,41.151828259],[-71.550929238,41.151840763],[-71.550853329,41.151856052],[-71.550778483,41.151875708],[-71.550702794,41.151901221],[-71.550619421,41.151930441],[-71.550538954,41.151959637],[-71.550466169,41.151985102],[-71.550392293,41.152006908],[-71.55031554,41.15202732],[-71.550234009,41.152049975],[-71.550160194,41.152073977],[-71.550089568,41.152113278],[-71.550036537,41.152170639],[-71.549992936,41.152214731],[-71.549938745,41.152258965],[-71.549872025,41.152301855],[-71.549804274,41.152342595],[-71.549744208,41.152381022],[-71.54968792,41.152415079],[-71.549611611,41.152461701],[-71.549557356,41.15250303],[-71.54949367,41.152557537],[-71.549446257,41.152602431],[-71.549397876,41.152648812],[-71.549354432,41.152700245],[-71.54930321,41.15275095],[-71.549244363,41.152803236],[-71.549181645,41.152857766],[-71.549116052,41.152911564],[-71.549056269,41.152966046],[-71.549003172,41.153019016],[-71.548952044,41.153074158],[-71.54889423,41.15313223],[-71.548835447,41.153188907],[-71.548707419,41.153313953],[-71.548559575,41.153404998],[-71.548483011,41.153437073],[-71.54838817,41.153470048],[-71.548316132,41.153485996],[-71.548216291,41.153508795],[-71.548157324,41.153522154],[-71.548115481,41.15353164],[-71.54804438,41.153546147],[-71.547962719,41.153561528],[-71.547880152,41.153579059],[-71.547810114,41.153597957],[-71.547737329,41.153626325],[-71.547661322,41.153635802],[-71.547585439,41.153648916],[-71.547506716,41.153667886],[-71.547438615,41.153688201],[-71.547341804,41.153718248],[-71.547277673,41.153746566],[-71.547208171,41.153796797],[-71.547137827,41.153854988],[-71.54708179,41.15390359],[-71.547030438,41.153945625],[-71.546976118,41.153983317],[-71.546907615,41.154034965],[-71.546857263,41.154079127],[-71.546807973,41.154128412],[-71.546763527,41.154179136],[-71.54672089,41.154222518],[-71.54666779,41.154273977],[-71.546628186,41.154326848],[-71.546582928,41.154385532],[-71.546543514,41.154450022],[-71.546521532,41.154517982],[-71.546511142,41.15458875],[-71.546500815,41.154662423],[-71.54648955,41.15473756],[-71.546504279,41.154811703],[-71.546525788,41.154887993],[-71.546551232,41.154966408],[-71.546567582,41.155021636],[-71.546590091,41.155100099],[-71.54661063,41.155174925],[-71.546634139,41.155254119],[-71.546651457,41.155309301],[-71.546666188,41.155386394],[-71.546667482,41.155462144],[-71.546662093,41.155543042],[-71.546659198,41.155599924],[-71.546648965,41.155678651],[-71.54664248,41.155750859],[-71.546644744,41.155828758],[-71.546644755,41.155887034],[-71.546637986,41.155943209],[-71.546621501,41.155996528],[-71.546591928,41.156071124],[-71.5465726,41.156125931],[-71.546557176,41.156182201],[-71.546542658,41.15623552],[-71.546503306,41.156302892],[-71.546450425,41.156368234],[-71.5464146,41.156418108],[-71.546374962,41.15646732],[-71.546316206,41.156526146],[-71.546254259,41.156567522],[-71.546219561,41.156626842],[-71.546184892,41.156685475],[-71.546134536,41.156728196],[-71.546058156,41.156771202],[-71.546007821,41.15680036],[-71.545982714,41.156814916],[-71.545914113,41.156860709],[-71.545848324,41.156903596],[-71.54578622,41.15693699],[-71.545723114,41.156965261],[-71.545657072,41.156993579],[-71.545599779,41.157026903],[-71.545529461,41.157085138],[-71.545479295,41.157140255],[-71.545439626,41.157190176],[-71.54540483,41.157240758],[-71.545358476,41.157294387],[-71.545325963,41.157365369],[-71.545313696,41.157438311],[-71.545308053,41.157504663],[-71.54529766,41.157573967],[-71.545291238,41.157652716],[-71.545292532,41.157729174],[-71.545292762,41.157799823],[-71.545308521,41.157876917],[-71.545332619,41.157934932],[-71.545349938,41.157990868],[-71.545359507,41.158044681],[-71.545371455,41.158123971],[-71.545387868,41.158183567],[-71.545404312,41.158244581],[-71.545418725,41.15829981],[-71.545418175,41.158380683],[-71.545412437,41.15844118],[-71.545417353,41.158504532],[-71.545422238,41.158567106],[-71.54542806,41.158626798],[-71.545441567,41.158684954],[-71.545459979,41.158747409],[-71.545485142,41.15881201],[-71.545507335,41.158872267],[-71.545522779,41.158930377],[-71.54553338,41.158987117],[-71.545545045,41.159050374],[-71.545558615,41.159112876],[-71.545573123,41.159173228],[-71.545578912,41.15922997],[-71.545570236,41.159287609],[-71.545568373,41.1593503],[-71.545579069,41.159412826],[-71.545580985,41.159470346],[-71.545569402,41.159524396],[-71.545552976,41.159578425],[-71.545539489,41.159636866],[-71.545526034,41.159697435],[-71.545513452,41.159752194],[-71.545496027,41.159805537],[-71.545476665,41.159858171],[-71.545455397,41.159912293],[-71.545434192,41.159969297],[-71.545409019,41.16002127],[-71.545381938,41.160071827],[-71.545354858,41.160123778],[-71.545328746,41.16017502],[-71.54530173,41.160232095],[-71.545273744,41.160287706],[-71.545247603,41.160339703],[-71.545218554,41.160389505],[-71.545177005,41.160437986],[-71.54512968,41.160491615],[-71.545083448,41.160550343],[-71.545037123,41.1606069],[-71.544985077,41.160661285],[-71.544933876,41.160712765],[-71.544881645,41.160761365],[-71.544821725,41.160808571],[-71.544761774,41.160853537],[-71.54470851,41.160897791],[-71.544656213,41.160940512],[-71.544601979,41.16098257],[-71.544552525,41.161022386],[-71.544510884,41.161068647],[-71.544467746,41.161140457],[-71.544440011,41.161209951],[-71.544416868,41.16126771],[-71.544399443,41.161321785],[-71.544385173,41.16138894],[-71.54437878,41.161466957],[-71.54437901,41.161539047],[-71.544380082,41.161603132],[-71.54438784,41.161663532],[-71.54440341,41.161728938],[-71.544432383,41.161789879],[-71.544484321,41.161842532],[-71.544553662,41.161896504],[-71.544602566,41.16193683],[-71.544662062,41.161977816],[-71.544722529,41.162020927],[-71.544777215,41.16206411],[-71.54482037,41.162107412],[-71.544863969,41.162178387],[-71.54489191,41.162234228],[-71.544928539,41.162291392],[-71.544971823,41.162344871],[-71.545011199,41.16239332],[-71.545063452,41.162462028],[-71.545110957,41.162535861],[-71.545150334,41.162585019],[-71.545191616,41.162631294],[-71.545255243,41.162691101],[-71.545329396,41.162744293],[-71.545401644,41.162798264],[-71.545436862,41.162827571],[-71.545454395,41.162842179],[-71.545488991,41.162891384],[-71.545505475,41.162919898],[-71.545518746,41.162942833],[-71.545524747,41.162954449],[-71.545570116,41.163176603],[-71.545594646,41.163461456],[-71.545548523,41.163724952],[-71.545479729,41.163940198],[-71.545323299,41.164129611],[-71.545156888,41.164328748],[-71.545089404,41.164471698],[-71.545024967,41.164601083],[-71.545062116,41.164752591],[-71.545138127,41.164906485],[-71.545202368,41.165021159],[-71.545424136,41.165128727],[-71.545674048,41.165187454],[-71.54593074,41.165289815],[-71.546188034,41.165472088],[-71.54638487,41.165584856],[-71.546477385,41.165616747],[-71.54655698,41.165654635],[-71.546577632,41.165669608],[-71.546619571,41.16570001],[-71.546693114,41.1657379],[-71.546784742,41.16575847],[-71.546856506,41.165763198],[-71.546937227,41.165767168],[-71.54701193,41.165776423],[-71.547110548,41.165794017],[-71.547186247,41.165799498],[-71.547268997,41.165804221],[-71.547358707,41.165808232],[-71.547434405,41.165812204],[-71.54752811,41.165816236],[-71.547613901,41.165798384],[-71.547692917,41.165745907],[-71.547777818,41.165712251],[-71.547852652,41.165694358],[-71.547925546,41.165671937],[-71.547937952,41.16566905],[-71.548005373,41.165653332],[-71.548085146,41.165643006],[-71.548167922,41.165642492],[-71.548243597,41.165657006],[-71.548286976,41.165668904],[-71.548321244,41.165678312],[-71.548397865,41.165704148],[-71.54847055,41.165726943],[-71.548542203,41.165746719],[-71.548610892,41.165768761],[-71.548688542,41.165793063],[-71.548765108,41.165824936],[-71.548831719,41.165861251],[-71.548896337,41.165902849],[-71.548964896,41.165952748],[-71.549032371,41.166010195],[-71.549094886,41.166072149],[-71.549163392,41.166131082],[-71.54922294,41.166191529],[-71.549277461,41.166248135],[-71.549323027,41.166310051],[-71.549368595,41.16637343],[-71.549417154,41.166430817],[-71.549468712,41.166491243],[-71.549520296,41.166544854],[-71.549598967,41.166557857],[-71.549708675,41.166549142],[-71.549783457,41.166541791],[-71.549873218,41.166531482],[-71.549964006,41.166518178],[-71.550062727,41.166507911],[-71.550136542,41.166502825],[-71.55024112,41.166514421],[-71.550310835,41.166531178],[-71.550376532,41.166556971],[-71.5504432,41.166585028],[-71.550515798,41.166611595],[-71.550587433,41.166644155],[-71.550654046,41.166680514],[-71.550723625,41.166716094],[-71.550790269,41.166751698],[-71.550855857,41.166793295],[-71.550923471,41.16683114],[-71.550986064,41.166872761],[-71.551048657,41.166915892],[-71.55111228,41.166958198],[-71.551173905,41.167001306],[-71.551234497,41.167039154],[-71.55129612,41.167078511],[-71.551351752,41.167120043],[-71.551401391,41.167162379],[-71.551451032,41.167206201],[-71.551495651,41.167253044],[-71.551537305,41.167300598],[-71.551583922,41.167348172],[-71.551630569,41.167394283],[-71.551676218,41.167442612],[-71.551724775,41.167493182],[-71.551770425,41.167542312],[-71.551813048,41.16759062],[-71.55185473,41.167635177],[-71.55189838,41.167680511],[-71.55194802,41.167722046],[-71.551999628,41.167764357],[-71.552048274,41.167811953],[-71.5520889,41.167860285],[-71.552123562,41.167907819],[-71.552158226,41.16795613],[-71.552186898,41.168006685],[-71.552214573,41.168058751],[-71.552248241,41.168111545],[-71.552284818,41.168168135],[-71.552315462,41.168223218],[-71.552340113,41.168279013],[-71.552353809,41.168335568],[-71.552366507,41.168394364],[-71.552382173,41.168454646],[-71.552404827,41.168511219],[-71.552431504,41.168564039],[-71.552463144,41.168615325],[-71.552496812,41.168666633],[-71.552527456,41.168722471],[-71.55254207,41.168754278],[-71.552553107,41.168778288],[-71.552582617,41.168853704],[-71.552604224,41.168925304],[-71.552625908,41.168978104],[-71.552653559,41.169036962],[-71.552685174,41.16909575],[-71.552715817,41.169148591],[-71.55274449,41.169199147],[-71.552775161,41.169249701],[-71.552808804,41.169307024],[-71.552842419,41.169367412],[-71.552875031,41.169422471],[-71.552904674,41.169474512],[-71.552931351,41.169525823],[-71.552958031,41.169580885],[-71.552985628,41.169647245],[-71.553016219,41.169711362],[-71.553045868,41.169769418],[-71.553074515,41.169824525],[-71.553102166,41.169882582],[-71.553131762,41.169950474],[-71.553157361,41.170016057],[-71.553180018,41.170074871],[-71.553200675,41.170129158],[-71.55322333,41.170185731],[-71.553244963,41.170249829],[-71.553264597,41.170312373],[-71.553285282,41.170364419],[-71.553319874,41.170434572],[-71.553345554,41.170486638],[-71.553374174,41.170544695],[-71.553403848,41.170596759],[-71.553452363,41.170665419],[-71.553517826,41.170731921],[-71.553562453,41.170783978],[-71.553606028,41.170844361],[-71.553648605,41.170906254],[-71.553691237,41.170960599],[-71.553732866,41.171010439],[-71.553770501,41.17106179],[-71.553807136,41.171112342],[-71.553845798,41.171160674],[-71.553901334,41.171227089],[-71.553923888,41.171305504],[-71.553923629,41.171359754],[-71.553939219,41.171435131],[-71.553963798,41.171510503],[-71.553969403,41.171591122],[-71.553984097,41.171644634],[-71.554004784,41.171698166],[-71.554027468,41.17175021],[-71.554052152,41.171805273],[-71.554069842,41.171858806],[-71.554092525,41.171910073],[-71.554124039,41.171989238],[-71.554148665,41.172046565],[-71.554173321,41.172104669],[-71.554195009,41.172160442],[-71.554213699,41.172214753],[-71.554234385,41.172266775],[-71.554256043,41.172322548],[-71.554281701,41.172383648],[-71.554308326,41.172442506],[-71.554334978,41.172498299],[-71.554358663,41.172552585],[-71.554381322,41.172610667],[-71.554404955,41.172676251],[-71.554428587,41.172738838],[-71.554451245,41.172796166],[-71.554468937,41.172851209],[-71.554486599,41.172905497],[-71.554512254,41.172962823],[-71.554540876,41.173020857],[-71.554565558,41.173072946],[-71.554582251,41.173126479],[-71.554598973,41.173179213],[-71.554615637,41.173235034],[-71.55462834,41.173295339],[-71.554637042,41.173350318],[-71.554627696,41.173431652],[-71.554614483,41.173485863],[-71.554605184,41.173551371],[-71.554594865,41.173627423],[-71.55458263,41.1736922],[-71.554562425,41.173747856],[-71.55454322,41.173803556],[-71.554527959,41.173869776],[-71.554514664,41.173934531],[-71.554506393,41.173998551],[-71.554342121,41.174585666],[-71.554020234,41.175619827],[-71.553814467,41.176334148],[-71.553699739,41.17677676],[-71.553676204,41.176907046],[-71.553686597,41.177029837],[-71.553712043,41.177126342],[-71.553776339,41.177238747],[-71.553822918,41.177302147],[-71.553858534,41.177360246],[-71.553894201,41.17740707],[-71.553926896,41.177446302],[-71.5539726,41.177477317],[-71.554038439,41.177475982],[-71.554083351,41.17746329],[-71.554122428,41.177423476],[-71.554118744,41.177360193],[-71.554080159,41.177299831],[-71.554046458,41.177251543],[-71.553969232,41.177135324],[-71.553922887,41.177024443],[-71.553912574,41.176888844],[-71.553937318,41.176719425],[-71.553950632,41.176639598],[-71.553996298,41.176476253],[-71.554119389,41.176157942],[-71.55427852,41.175606967],[-71.554621401,41.174562297],[-71.554807716,41.173951179],[-71.554902302,41.173762332],[-71.554966801,41.173611122],[-71.555076058,41.17348482],[-71.555088838,41.173527789],[-71.555145627,41.173533228],[-71.555212357,41.173336023],[-71.55507688,41.173309329],[-71.555315447,41.172608644],[-71.556137222,41.172756956],[-71.556120784,41.172860136],[-71.556041027,41.172862942],[-71.556034242,41.173034663],[-71.555894956,41.173404902],[-71.555642926,41.173359785],[-71.555638702,41.173410996],[-71.555603827,41.173405638],[-71.555594659,41.173446285],[-71.555989126,41.173515142],[-71.5561043,41.173194545],[-71.556401361,41.173193851],[-71.556401258,41.173003996],[-71.556641474,41.173075306],[-71.557067288,41.173201619],[-71.556740654,41.17355178],[-71.556618985,41.173568033],[-71.556523656,41.173696616],[-71.556717508,41.173810099],[-71.556851706,41.173685453],[-71.556830221,41.173587461],[-71.557095767,41.173301141],[-71.558137663,41.173917069],[-71.558173717,41.173886312],[-71.55834159,41.174022311],[-71.558463397,41.174195179],[-71.558554126,41.174411587],[-71.558645881,41.174622733],[-71.557579057,41.17549222],[-71.557502113,41.175530453],[-71.557385479,41.175527126],[-71.556487922,41.175368798],[-71.555823561,41.175235942],[-71.555710005,41.175219827],[-71.555629244,41.175219615],[-71.5556062,41.175245905],[-71.55561885,41.175313003],[-71.555694461,41.175344849],[-71.555766152,41.175358629],[-71.557468699,41.175638811],[-71.557555477,41.17563154],[-71.557651519,41.175556452],[-71.557708597,41.175508394],[-71.558718746,41.17469776],[-71.559032509,41.174445993],[-71.559140974,41.174488455],[-71.559227473,41.174542935],[-71.559269235,41.17456487],[-71.55934695,41.174578622],[-71.559482424,41.174597077],[-71.559639807,41.174675902],[-71.559706219,41.174709145],[-71.56015868,41.174959693],[-71.560613172,41.17521097],[-71.561033658,41.175476489],[-71.561071429,41.175502177],[-71.561299495,41.175773217],[-71.56154177,41.175990777],[-71.561625351,41.176027166],[-71.561865009,41.176163396],[-71.561916631,41.176207213],[-71.562113425,41.176341086],[-71.562439932,41.176668838],[-71.562771217,41.177050883],[-71.56306892,41.177354473],[-71.563356619,41.177672386],[-71.563416102,41.177735066],[-71.56361246,41.177972819],[-71.563672972,41.178035498],[-71.563954683,41.178351881],[-71.564022145,41.178431892],[-71.564259664,41.178812178],[-71.564446366,41.179199856],[-71.564667523,41.179682544],[-71.564699052,41.179760197],[-71.564836581,41.180038806],[-71.564913475,41.180194653],[-71.565137754,41.180644152],[-71.565189265,41.180721885],[-71.565375847,41.181129917],[-71.565593974,41.181626899],[-71.565627507,41.181708347],[-71.565693275,41.181935833],[-71.565775722,41.182220945],[-71.565800266,41.182303885],[-71.56596547,41.182819559],[-71.566080959,41.183296702],[-71.56621034,41.183798697],[-71.566345702,41.184285684],[-71.566355318,41.184364036],[-71.566409172,41.184809376],[-71.566484842,41.185272841],[-71.566520203,41.185840919],[-71.566534806,41.186359973],[-71.566531853,41.186792355],[-71.566496647,41.187305263],[-71.566457639,41.187771423],[-71.566405771,41.18821575],[-71.566338922,41.188666054],[-71.566270157,41.188928586],[-71.566248122,41.188995223],[-71.566227909,41.189067004],[-71.566212863,41.189127736],[-71.56619864,41.189195168],[-71.566187298,41.189267059],[-71.566173959,41.189339729],[-71.566157713,41.189412331],[-71.566135446,41.189488551],[-71.566107217,41.189567702],[-71.566074169,41.189642326],[-71.566049991,41.189715551],[-71.566034626,41.189791927],[-71.566021171,41.18986972],[-71.566005923,41.18994159],[-71.565986678,41.190013393],[-71.565966408,41.190088949],[-71.565944112,41.190166678],[-71.565924868,41.190239213],[-71.565909589,41.190311106],[-71.565898791,41.190351823],[-71.565888204,41.190391808],[-71.565868787,41.190473286],[-71.565853365,41.19055259],[-71.565834976,41.190632581],[-71.565813416,41.190720716],[-71.565794028,41.19080144],[-71.565770762,41.190878437],[-71.565742502,41.19095832],[-71.565705316,41.191044016],[-71.565702386,41.191050514],[-71.565669215,41.191123835],[-71.565646917,41.191201541],[-71.56563326,41.191289763],[-71.565622596,41.191375056],[-71.565610053,41.191457376],[-71.565597508,41.191538187],[-71.565583908,41.191624191],[-71.565558702,41.191700435],[-71.565534553,41.191773659],[-71.565510373,41.191846152],[-71.565476296,41.191922973],[-71.565443305,41.191995402],[-71.565420153,41.192067162],[-71.565392124,41.192135906],[-71.565371405,41.192187652],[-71.565351307,41.192255019],[-71.565337314,41.19231129],[-71.565322179,41.192376482],[-71.565305929,41.192446889],[-71.565278755,41.19252302],[-71.565246645,41.192599153],[-71.565216563,41.192675308],[-71.565185249,41.192759606],[-71.565153993,41.192843173],[-71.565132607,41.192924606],[-71.56511122,41.193005331],[-71.565088719,41.193092711],[-71.565084281,41.193106139],[-71.565062485,41.193171906],[-71.565032314,41.193249525],[-71.564999206,41.193327855],[-71.564963043,41.193409137],[-71.564930962,41.193484493],[-71.564899909,41.193558407],[-71.564871736,41.193636048],[-71.564846412,41.193716751],[-71.564822144,41.193794413],[-71.564799933,41.193869168],[-71.564780484,41.193950669],[-71.564755218,41.194029841],[-71.564718232,41.194105908],[-71.564675369,41.194179669],[-71.564630364,41.194260841],[-71.564588442,41.194336843],[-71.564558299,41.19441373],[-71.564531122,41.194489197],[-71.564505858,41.194569855],[-71.564478651,41.194646009],[-71.564451504,41.194720721],[-71.564423387,41.194794634],[-71.564396122,41.194873806],[-71.564366008,41.194949938],[-71.564331958,41.195026073],[-71.564307068,41.195086695],[-71.564287141,41.195145096],[-71.564271064,41.195208779],[-71.564251961,41.19527395],[-71.564228952,41.195339008],[-71.56420283,41.195410747],[-71.564179563,41.195490717],[-71.564155265,41.195569888],[-71.564122153,41.195645999],[-71.564085989,41.195728012],[-71.564049883,41.195808539],[-71.564011868,41.195886825],[-71.563974907,41.195959919],[-71.56393592,41.196035965],[-71.563895024,41.196109747],[-71.563856123,41.196181332],[-71.563813375,41.196250656],[-71.563765517,41.196328056],[-71.563713723,41.196405435],[-71.563666775,41.196484343],[-71.563621885,41.196562542],[-71.563581726,41.196648217],[-71.563543591,41.196729453],[-71.563501609,41.19680845],[-71.563451753,41.196886606],[-71.563407803,41.196967045],[-71.563373041,41.197029022],[-71.563338598,41.197076888],[-71.563303691,41.197146275],[-71.563281649,41.197210624],[-71.563250738,41.197279369],[-71.563211923,41.197346471],[-71.563173166,41.197411355],[-71.563132413,41.197479214],[-71.563086608,41.197551466],[-71.563046767,41.197623052],[-71.56301374,41.197695434],[-71.562984535,41.197774562],[-71.562954302,41.197855908],[-71.562919219,41.197931974],[-71.562873444,41.198005004],[-71.562818739,41.198080851],[-71.562767882,41.198158938],[-71.562730803,41.198238001],[-71.562706532,41.19831644],[-71.562682146,41.198400825],[-71.562651001,41.198479176],[-71.562608075,41.198555154],[-71.562561212,41.198631135],[-71.562517143,41.198715256],[-71.562476186,41.198792789],[-71.562432289,41.198867235],[-71.562395627,41.198940123],[-71.5623933,41.198944813],[-71.562359129,41.199025338],[-71.562328011,41.199100715],[-71.56229895,41.199173941],[-71.562265834,41.199250784],[-71.562224818,41.199330489],[-71.562186826,41.199405824],[-71.562144985,41.199477342],[-71.562103,41.199557071],[-71.562056018,41.199637488],[-71.562005277,41.199712625],[-71.561955561,41.199783346],[-71.561914604,41.199861565],[-71.561874584,41.199939097],[-71.561833682,41.200012146],[-71.561784967,41.200084331],[-71.561727233,41.200162398],[-71.561657807,41.200237316],[-71.561582474,41.200310704],[-71.56151904,41.200381981],[-71.561469179,41.200460113],[-71.561421344,41.200536025],[-71.561372568,41.200608987],[-71.561318945,41.200679642],[-71.561257362,41.200755447],[-71.56118993,41.200827413],[-71.561125495,41.200897181],[-71.561069962,41.200967082],[-71.561021069,41.201045236],[-71.560972206,41.201123367],[-71.560919493,41.20119704],[-71.560860991,41.201266119],[-71.560796411,41.201343366],[-71.560733857,41.20141837],[-71.560678378,41.201482325],[-71.560624046,41.201541109],[-71.560587485,41.20159563],[-71.560539851,41.201661159],[-71.560481436,41.201726578],[-71.560405334,41.201790268],[-71.560334139,41.201854025],[-71.560272611,41.201926078],[-71.560212141,41.201996667],[-71.560152725,41.202061332],[-71.560080618,41.20212207],[-71.559993677,41.202187893],[-71.559912464,41.202259728],[-71.559837215,41.202329364],[-71.559768899,41.202398356],[-71.559694649,41.202467305],[-71.559604564,41.202540471],[-71.559517592,41.202607757],[-71.559436582,41.20266994],[-71.559363504,41.2027307],[-71.559297125,41.202798959],[-71.55922781,41.202867951],[-71.559165484,41.202931062],[-71.559109325,41.202982391],[-71.559059187,41.203027862],[-71.559019803,41.203076415],[-71.55897745,41.2031249],[-71.558924315,41.203171813],[-71.558865394,41.203215687],[-71.558806296,41.203265462],[-71.558751104,41.203315327],[-71.558744841,41.203321917],[-71.558700851,41.203368185],[-71.558651566,41.203419579],[-71.558597432,41.203467201],[-71.558546266,41.20351489],[-71.558501769,41.203570787],[-71.558455336,41.203628149],[-71.558408755,41.203690748],[-71.558363203,41.20375186],[-71.558320646,41.203809265],[-71.558287049,41.20386383],[-71.558255451,41.20391693],[-71.558220796,41.203973691],[-71.558189051,41.204032737],[-71.558161272,41.204090341],[-71.558131524,41.204147923],[-71.558100805,41.204203995],[-71.558068974,41.204268256],[-71.558036084,41.204334714],[-71.55800716,41.204399728],[-71.557980263,41.204461791],[-71.557951426,41.2045231],[-71.557925382,41.204591109],[-71.557904332,41.204656257],[-71.557882429,41.204716145],[-71.55786546,41.204773857],[-71.557849316,41.204839048],[-71.557828119,41.204910096],[-71.55780798,41.204978194],[-71.557792806,41.205044894],[-71.557774665,41.205112213],[-71.557751441,41.205186235],[-71.557723369,41.205256464],[-71.557690509,41.205322921],[-71.557658676,41.205386404],[-71.557643355,41.205459028],[-71.557629005,41.205533115],[-71.557609719,41.205607204],[-71.557593429,41.205679805],[-71.557580309,41.205740512],[-71.557575965,41.205760526],[-71.557555651,41.205836812],[-71.557534396,41.205911565],[-71.557509205,41.205986298],[-71.557475993,41.206067621],[-71.557438991,41.206142909],[-71.557404868,41.206220505],[-71.557373684,41.206299609],[-71.557339504,41.206382374],[-71.557300503,41.206457685],[-71.557257594,41.206532175],[-71.557202875,41.206607311],[-71.557144191,41.206685353],[-71.557088561,41.206758202],[-71.557042742,41.206829675],[-71.557005768,41.206903521],[-71.55696189,41.206978743],[-71.55691519,41.207047288],[-71.556873774,41.207098037],[-71.556833357,41.20714803],[-71.556774876,41.207216398],[-71.556721563,41.207272985],[-71.556663283,41.207329436],[-71.556597247,41.207382118],[-71.556522308,41.207436931],[-71.556447225,41.207499178],[-71.556358215,41.207567171],[-71.556267385,41.207631461],[-71.556202695,41.207665593],[-71.556116149,41.207710577],[-71.55604829,41.207758022],[-71.555963305,41.207822354],[-71.555877174,41.207893365],[-71.555799918,41.207965996],[-71.555732503,41.208037203],[-71.555675695,41.208117486],[-71.555629817,41.20819344],[-71.555595925,41.208261361],[-71.555564117,41.20832338],[-71.55553704,41.208392875],[-71.555508879,41.208469073],[-71.555485594,41.208546022],[-71.555469183,41.20862306],[-71.555457564,41.208706866],[-71.555446062,41.208786188],[-71.555440406,41.208866377],[-71.555442654,41.208946631],[-71.555449692,41.20903212],[-71.555454877,41.209111686],[-71.555463031,41.209191251],[-71.555478,41.209273168],[-71.555492942,41.209357258],[-71.555502006,41.209439109],[-71.555513039,41.209520937],[-71.555526953,41.209608024],[-71.555540895,41.209692114],[-71.555551928,41.209774696],[-71.555559024,41.209857235],[-71.55557091,41.209945031],[-71.555585881,41.21002768],[-71.55558907,41.21010942],[-71.555578274,41.210200658],[-71.555564627,41.210285906],[-71.555546103,41.21037111],[-71.555517648,41.2104592],[-71.555486255,41.210547178],[-71.555455978,41.210630009],[-71.55542573,41.210712085],[-71.555390488,41.210797114],[-71.555349426,41.210876816],[-71.555310421,41.210953591],[-71.555259603,41.211028747],[-71.555208729,41.211109849],[-71.555169694,41.211187378],[-71.555130718,41.211262666],[-71.555088716,41.211340882],[-71.555045656,41.21142285],[-71.555003624,41.211502507],[-71.55496456,41.211581569],[-71.554915536,41.211666375],[-71.554862662,41.211747433],[-71.554811816,41.211826294],[-71.55475224,41.211897611],[-71.554690609,41.21197339],[-71.554635911,41.212047015],[-71.554590643,41.212096255],[-71.554535733,41.212133447],[-71.554473423,41.212195823],[-71.55440474,41.212278946],[-71.55434596,41.21236067],[-71.554305837,41.212443391],[-71.554297228,41.212470383],[-71.554278438,41.212529193],[-71.554252007,41.212614332],[-71.554238417,41.212698115],[-71.554247509,41.212779166],[-71.554275232,41.212864188],[-71.554308947,41.212943352],[-71.554344718,41.21301881],[-71.554390391,41.213091381],[-71.554445879,41.213166349],[-71.554505391,41.213235415],[-71.554569809,41.213303815],[-71.554636227,41.213372945],[-71.554699443,41.213453193],[-71.554758781,41.213531178],[-71.554811331,41.213604615],[-71.554860942,41.213675789],[-71.554911405,41.213753641],[-71.554967923,41.213826367],[-71.555029405,41.213895455],[-71.55509785,41.213960948],[-71.555164209,41.214031542],[-71.555223664,41.21410358],[-71.555276303,41.214173335],[-71.555326003,41.214241513],[-71.555377584,41.214314195],[-71.555428079,41.214392047],[-71.555470758,41.214466861],[-71.555501593,41.214540765],[-71.555516594,41.214621927],[-71.555526629,41.214705242],[-71.555536723,41.214786315],[-71.555537971,41.214865815],[-71.555524384,41.214951062],[-71.555518587,41.214973364],[-71.555466931,41.215207703],[-71.555462567,41.215276753],[-71.555465088,41.215356001],[-71.555477294,41.215427192],[-71.555495282,41.215495431],[-71.55551728,41.215576796],[-71.555537409,41.215669231],[-71.55555256,41.21574845],[-71.555565735,41.215819641],[-71.555569291,41.215904765],[-71.555569942,41.21599506],[-71.555571994,41.21605688],[-71.55557243,41.216070694],[-71.55558467,41.216146986],[-71.555608678,41.21624086],[-71.555639463,41.216325903],[-71.555678901,41.216399163],[-71.555734883,41.216479688],[-71.555797778,41.21656826],[-71.555861541,41.216645099],[-71.555924269,41.216714574],[-71.555997819,41.216795776],[-71.556074217,41.2168762],[-71.556149573,41.216942695],[-71.556224961,41.217011409],[-71.556300453,41.217094051],[-71.556373005,41.217175253],[-71.556456149,41.217245358],[-71.556538356,41.217317728],[-71.55661388,41.217401834],[-71.556693151,41.217475668],[-71.556783073,41.217536964],[-71.556890503,41.217598938],[-71.556986279,41.217669745],[-71.557082083,41.217736138],[-71.557167645,41.217798648],[-71.557173009,41.217802556],[-71.557259127,41.217876364],[-71.557333625,41.217964175],[-71.557409153,41.218050499],[-71.557492295,41.218115457],[-71.55758506,41.218170873],[-71.557680797,41.218229238],[-71.557766778,41.218284657],[-71.557855635,41.218337125],[-71.557949335,41.218386685],[-71.558042199,41.218450151],[-71.558110845,41.218528427],[-71.558172712,41.21861263],[-71.558242291,41.218684273],[-71.558310902,41.218757426],[-71.558376677,41.218842267],[-71.558429755,41.21892062],[-71.558463214,41.218976294],[-71.558504459,41.219031895],[-71.558536012,41.219089789],[-71.558573378,41.219143974],[-71.55862047,41.219201037],[-71.558675312,41.219253635],[-71.55873306,41.219304059],[-71.558759466,41.219329547],[-71.558789843,41.219358898],[-71.55883787,41.219410837],[-71.55888586,41.21945612],[-71.558938661,41.219494836],[-71.559012015,41.219551794],[-71.55907181,41.219621268],[-71.55911793,41.219673985],[-71.559166961,41.219731],[-71.559205231,41.219778576],[-71.559248374,41.219823175],[-71.559300312,41.219878039],[-71.559332803,41.219933667],[-71.559363354,41.219986415],[-71.559403664,41.220046454],[-71.559442973,41.220103566],[-71.559481281,41.220159191],[-71.559518682,41.220217059],[-71.559552246,41.220285952],[-71.55957809,41.220359949],[-71.559600928,41.22042448],[-71.559628641,41.220488253],[-71.559654327,41.220554451],[-71.559657364,41.220562295],[-71.559679435,41.220650291],[-71.559704247,41.220720653],[-71.5597339,41.220785134],[-71.559767532,41.220861368],[-71.559800266,41.220950045],[-71.559828987,41.221021891],[-71.559852828,41.221090058],[-71.55987968,41.221172174],[-71.559909506,41.221259412],[-71.559932409,41.221329065],[-71.559958191,41.221400226],[-71.559992893,41.221485952],[-71.560038191,41.221565794],[-71.560089263,41.221633123],[-71.560152029,41.221701886],[-71.560224594,41.221785991],[-71.560291309,41.221866462],[-71.56036183,41.221934467],[-71.560433353,41.222005353],[-71.560500135,41.222091725],[-71.560568724,41.222167072],[-71.560640248,41.222237957],[-71.560708899,41.222314036],[-71.560774681,41.222399653],[-71.560832608,41.222475052],[-71.560884653,41.222544575],[-71.560942583,41.222622146],[-71.561004522,41.222711471],[-71.561060541,41.22278687],[-71.561115528,41.222859296],[-71.561172527,41.222944964],[-71.561226646,41.223029192],[-71.561280664,41.223101619],[-71.561340528,41.223173311],[-71.561409218,41.223256731],[-71.561478841,41.223333518],[-71.561545491,41.223406669],[-71.561611238,41.223484213],[-71.561679964,41.223572779],[-71.561751557,41.223650273],[-71.561822085,41.223722668],[-71.56190725,41.223800864],[-71.561955211,41.223841778],[-71.562047188,41.223914801],[-71.562131312,41.223981288],[-71.562222223,41.224047702],[-71.562332612,41.224114769],[-71.562441932,41.224172322],[-71.562546401,41.224225441],[-71.562660491,41.224264625],[-71.562786143,41.22429493],[-71.562899161,41.224321627],[-71.563014087,41.224349032],[-71.563145583,41.224375628],[-71.563266321,41.224397861],[-71.563382212,41.224419411],[-71.563511768,41.224444566],[-71.563631575,41.224475627],[-71.563743589,41.224497179],[-71.563873116,41.224523043],[-71.564002675,41.224551125],[-71.564123451,41.224580721],[-71.564263737,41.224611702],[-71.56433779,41.224628997],[-71.564407905,41.224647072],[-71.564545285,41.224679495],[-71.564621244,41.224694593],[-71.564699143,41.224711153],[-71.564773194,41.224726984],[-71.564843306,41.224741376],[-71.564915385,41.224753549],[-71.564991311,41.224765719],[-71.565070176,41.224777842],[-71.565144194,41.224790768],[-71.565214276,41.224805137],[-71.56528345,41.224820262],[-71.565354565,41.22483758],[-71.565430591,41.224859288],[-71.565505618,41.224880995],[-71.565574796,41.224899779],[-71.565710272,41.224936638],[-71.565736302,41.224944171],[-71.5657853,41.224958346],[-71.565859391,41.224983004],[-71.56597736,41.225021429],[-71.56609613,41.225042928],[-71.566240118,41.22504742],[-71.566353688,41.225019063],[-71.566445629,41.224961398],[-71.566551205,41.224905897],[-71.566658855,41.224865056],[-71.566740278,41.224830908],[-71.56682679,41.224826146],[-71.566928837,41.224816893],[-71.567034621,41.224788563],[-71.567125804,41.224760264],[-71.567222969,41.22474589],[-71.56733281,41.224744682],[-71.567452436,41.224744155],[-71.567551504,41.224724656],[-71.567645631,41.224702256],[-71.56775543,41.224689269],[-71.567872045,41.224677765],[-71.567977105,41.224681728]]]]}}"}, +{"type": "precinct", "typeId": 2301, "areaId": 26042, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":381,\"NAME\":\"2301\",\"SHAPE_Length\":0.18724769100262,\"SHAPE_Area\":-0.0011121077177163},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.495570535,41.573866489],[-71.495883535,41.574143489],[-71.496303536,41.574550489],[-71.496517536,41.574766489],[-71.496950535,41.575262488],[-71.497135536,41.575472488],[-71.497864536,41.576363489],[-71.498474536,41.577019489],[-71.498659536,41.577204489],[-71.498734536,41.577279489],[-71.498862536,41.577397489],[-71.498970536,41.577498489],[-71.499149537,41.577658489],[-71.499386536,41.577858489],[-71.499562536,41.57800649],[-71.499896536,41.578264489],[-71.501284537,41.579315489],[-71.501350537,41.579365489],[-71.501381537,41.57938849],[-71.501556537,41.579514489],[-71.501701537,41.579632489],[-71.501854537,41.579747489],[-71.502350537,41.580162489],[-71.502518538,41.58031949],[-71.502708538,41.58051749],[-71.502892538,41.580723489],[-71.503189537,41.58110149],[-71.503265538,41.58120049],[-71.503431538,41.58143849],[-71.503525538,41.58158949],[-71.503685538,41.58185649],[-71.503822538,41.58213149],[-71.503952538,41.58240549],[-71.504143539,41.58288249],[-71.504219539,41.58312649],[-71.504265538,41.58332949],[-71.504303538,41.58353849],[-71.504333539,41.58374449],[-71.504364538,41.58411149],[-71.504395539,41.58483949],[-71.504318539,41.58534349],[-71.504242538,41.585743491],[-71.504181539,41.58602649],[-71.504082539,41.586331491],[-71.503899538,41.586781491],[-71.503708538,41.58717449],[-71.503479539,41.587555491],[-71.503197538,41.587963491],[-71.502800538,41.588478491],[-71.502457538,41.588910491],[-71.502410538,41.588974491],[-71.502060538,41.589444491],[-71.501928538,41.589608492],[-71.501641538,41.589966491],[-71.501263537,41.590452491],[-71.500954538,41.590851492],[-71.500548538,41.591389491],[-71.500069537,41.592007492],[-71.499733538,41.592469492],[-71.499466537,41.592900492],[-71.499237537,41.593312492],[-71.499046537,41.593701492],[-71.498840537,41.594197492],[-71.498795537,41.594334492],[-71.498779537,41.594372492],[-71.498745537,41.594485493],[-71.498657537,41.594761492],[-71.498573537,41.595078492],[-71.498528537,41.595307492],[-71.498491537,41.595527492],[-71.498474537,41.595631493],[-71.498413537,41.596150493],[-71.498398537,41.596417492],[-71.498398537,41.596845493],[-71.498397537,41.597712493],[-71.498405537,41.598820493],[-71.498405538,41.600459493],[-71.498360537,41.601123494],[-71.498291538,41.601742493],[-71.498215538,41.602132493],[-71.498093538,41.602668494],[-71.498405538,41.602665494],[-71.499588538,41.602655494],[-71.50651554,41.602631494],[-71.510712542,41.602633494],[-71.515750543,41.602636494],[-71.517761544,41.602637494],[-71.520447545,41.602627493],[-71.522202546,41.602621493],[-71.522441545,41.602607493],[-71.521904545,41.600850493],[-71.521796545,41.600624493],[-71.521602545,41.600255493],[-71.521355545,41.599741493],[-71.521232544,41.599518492],[-71.521216545,41.599487493],[-71.520366545,41.597847492],[-71.520048544,41.597261492],[-71.519909544,41.596988492],[-71.519572544,41.596328492],[-71.519294544,41.595800492],[-71.519032544,41.595265492],[-71.518568544,41.594354492],[-71.518433544,41.594048492],[-71.518290543,41.581390489],[-71.518265542,41.579166489],[-71.518277543,41.575972488],[-71.518331542,41.570362487],[-71.518326542,41.569634487],[-71.518684542,41.564660486],[-71.518804542,41.562508485],[-71.518983542,41.559573485],[-71.519043542,41.558382485],[-71.519063541,41.558005484],[-71.519180541,41.556340485],[-71.519493541,41.544423482],[-71.519242541,41.53843948],[-71.51926054,41.536952481],[-71.519291541,41.53610048],[-71.51932054,41.530521479],[-71.51932254,41.53030548],[-71.51932554,41.529980479],[-71.51867354,41.528399479],[-71.51842954,41.527710479],[-71.51842054,41.527502478],[-71.51835454,41.527357479],[-71.51832354,41.527308478],[-71.51786654,41.528229479],[-71.51673954,41.53047648],[-71.51572654,41.53246848],[-71.514961539,41.53400748],[-71.514682539,41.53454948],[-71.513953539,41.536011481],[-71.513146539,41.53760048],[-71.510615538,41.542613482],[-71.509741538,41.544366483],[-71.508954538,41.545928482],[-71.508583538,41.546652482],[-71.508341537,41.547121483],[-71.507665538,41.548478483],[-71.506740537,41.550299483],[-71.506033538,41.551675484],[-71.504569537,41.554620485],[-71.503841537,41.556095485],[-71.503075536,41.557598485],[-71.501174536,41.561361486],[-71.500540536,41.562597486],[-71.499800536,41.564090486],[-71.498211536,41.567223487],[-71.497837535,41.567967487],[-71.497395536,41.568846487],[-71.496801535,41.570014487],[-71.496122535,41.571367488],[-71.495933535,41.571744488],[-71.495130535,41.573324489],[-71.495575535,41.573708488],[-71.495632535,41.573761488],[-71.495570535,41.573866489]]]]}}"}, +{"type": "precinct", "typeId": 2302, "areaId": 26043, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":382,\"NAME\":\"2302\",\"SHAPE_Length\":0.20320053605113,\"SHAPE_Area\":-0.0011571782184185},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.457779525,41.614636497],[-71.457817525,41.615109498],[-71.457848524,41.615414497],[-71.457886525,41.615811498],[-71.458122525,41.615796498],[-71.458443525,41.615754498],[-71.458557525,41.615685497],[-71.458641525,41.615620498],[-71.459213525,41.615624498],[-71.460060526,41.615620498],[-71.461273526,41.615631497],[-71.462662527,41.615651497],[-71.463577527,41.615620498],[-71.463669527,41.615582498],[-71.464251527,41.615553497],[-71.464204527,41.615524498],[-71.464207527,41.615457497],[-71.464242527,41.615400497],[-71.464342527,41.615296497],[-71.464383527,41.615235498],[-71.464400527,41.615172498],[-71.464403527,41.615103497],[-71.464388527,41.615039498],[-71.464362527,41.614988497],[-71.464321527,41.614926497],[-71.464238527,41.614829497],[-71.464214527,41.614766498],[-71.464234527,41.614698497],[-71.464265527,41.614649498],[-71.464346527,41.614548498],[-71.464380527,41.614499497],[-71.464422527,41.614449497],[-71.464532527,41.614353497],[-71.464578527,41.614300497],[-71.464652527,41.614198497],[-71.464685527,41.614141498],[-71.464713527,41.614075497],[-71.464733527,41.613949497],[-71.464764527,41.613891497],[-71.464772527,41.613767497],[-71.464783527,41.613709497],[-71.464785527,41.613699497],[-71.464813527,41.613639497],[-71.464870527,41.613603497],[-71.465059527,41.613506497],[-71.465118527,41.613466497],[-71.465222527,41.613355497],[-71.465288527,41.613241497],[-71.465331527,41.613183497],[-71.465454527,41.613100497],[-71.465451528,41.613072497],[-71.465386527,41.613042497],[-71.465453527,41.612852497],[-71.465495527,41.612791497],[-71.465548528,41.612732497],[-71.465611527,41.612688497],[-71.465616527,41.612686497],[-71.465667528,41.612638497],[-71.465725528,41.612616497],[-71.465769527,41.612611497],[-71.465815527,41.612588497],[-71.465814527,41.612567497],[-71.465836527,41.612539497],[-71.465909527,41.612413497],[-71.465986527,41.612175496],[-71.466053528,41.611925497],[-71.466078527,41.611801497],[-71.466126527,41.611625497],[-71.466147527,41.611502497],[-71.466205527,41.611316496],[-71.466221527,41.611196497],[-71.466238527,41.611126496],[-71.466269528,41.611067496],[-71.466319527,41.611017497],[-71.466375527,41.610980497],[-71.466446528,41.610948496],[-71.466493527,41.610896497],[-71.466514527,41.610841497],[-71.466518528,41.610785497],[-71.466531527,41.610719496],[-71.466539528,41.610715496],[-71.466485528,41.610626497],[-71.466452527,41.610562496],[-71.466447528,41.610465496],[-71.466439527,41.610326496],[-71.466464528,41.610274496],[-71.466480528,41.610220497],[-71.466497527,41.610106497],[-71.466543528,41.609992496],[-71.466543528,41.609932496],[-71.466526527,41.609876496],[-71.466533527,41.609623496],[-71.466584527,41.609558497],[-71.466661528,41.609505496],[-71.466728527,41.609452496],[-71.466741527,41.609318496],[-71.466760527,41.609264496],[-71.466793528,41.609192496],[-71.466872528,41.609155496],[-71.466747527,41.609050496],[-71.466630527,41.608975497],[-71.466523528,41.608899496],[-71.466476527,41.608850496],[-71.466444528,41.608786496],[-71.466431527,41.608722496],[-71.466427528,41.608657496],[-71.466429527,41.608528496],[-71.466449527,41.608406496],[-71.466525528,41.608198496],[-71.466858527,41.608269496],[-71.467316528,41.608380496],[-71.467659527,41.608475496],[-71.468155528,41.608624496],[-71.468498528,41.608738496],[-71.468910528,41.608887496],[-71.469429529,41.609085496],[-71.470247529,41.609408496],[-71.470606528,41.609550496],[-71.471291529,41.609826496],[-71.471535529,41.609929497],[-71.471863529,41.610066497],[-71.471970529,41.610104497],[-71.472282529,41.610237496],[-71.472504529,41.610344496],[-71.472694529,41.610447496],[-71.472786529,41.610505496],[-71.47285553,41.610554497],[-71.47289353,41.610588496],[-71.472923529,41.610608496],[-71.472984529,41.610661496],[-71.47305353,41.610730497],[-71.47319053,41.610882497],[-71.47334353,41.611100497],[-71.473488529,41.611370497],[-71.47356453,41.611527497],[-71.47369453,41.611821497],[-71.47379353,41.612091497],[-71.47386253,41.612255496],[-71.47390753,41.612435497],[-71.47392353,41.612530496],[-71.47393853,41.612702496],[-71.47393053,41.612778497],[-71.47393053,41.612854497],[-71.47391553,41.613057497],[-71.47391553,41.613263497],[-71.47393053,41.613434497],[-71.47393053,41.613476497],[-71.47394653,41.613556497],[-71.47399153,41.613709497],[-71.47406853,41.613900497],[-71.47415953,41.614079497],[-71.47375253,41.615223497],[-71.47359553,41.615881497],[-71.47355853,41.616036497],[-71.47333053,41.616994497],[-71.47329553,41.617156498],[-71.47273753,41.619763498],[-71.47258053,41.622009498],[-71.47278053,41.622681499],[-71.47301153,41.623388498],[-71.476302531,41.626045499],[-71.479358532,41.624208498],[-71.479770532,41.624486499],[-71.479839533,41.624460498],[-71.479923533,41.624399499],[-71.479958533,41.624340499],[-71.479985532,41.624286498],[-71.480018533,41.624233499],[-71.480060532,41.624167499],[-71.480104532,41.624115499],[-71.480167533,41.624068499],[-71.480236532,41.624029499],[-71.480304533,41.624005499],[-71.480378533,41.623985499],[-71.480475533,41.623964499],[-71.480578533,41.623940499],[-71.480654533,41.623922499],[-71.480816533,41.623885499],[-71.481325533,41.623811499],[-71.481530533,41.623798498],[-71.481628533,41.623790499],[-71.481738533,41.623777499],[-71.481812533,41.623747499],[-71.481852534,41.623735499],[-71.481875533,41.623727498],[-71.481850533,41.623682498],[-71.481855533,41.623592499],[-71.481897533,41.623571498],[-71.481953533,41.623554499],[-71.482023533,41.623541499],[-71.482115533,41.623555499],[-71.482174533,41.623599499],[-71.482234533,41.623633499],[-71.482320534,41.623638499],[-71.482417534,41.623618499],[-71.482482533,41.623588498],[-71.482462533,41.623525498],[-71.482475534,41.623478499],[-71.482512534,41.623429498],[-71.482491533,41.623375498],[-71.482443533,41.623329498],[-71.482422533,41.623278498],[-71.482443533,41.623199498],[-71.482462533,41.623124498],[-71.482554534,41.622991499],[-71.482563533,41.622933499],[-71.482566533,41.622866498],[-71.482576533,41.622792498],[-71.482593534,41.622718499],[-71.482613534,41.622646499],[-71.482635533,41.622580498],[-71.482649534,41.622519498],[-71.482662533,41.622463498],[-71.482693533,41.622384498],[-71.482735533,41.622335498],[-71.482789534,41.622292499],[-71.482851533,41.622258498],[-71.482916533,41.622230498],[-71.483017534,41.622199498],[-71.483094534,41.622181498],[-71.483170533,41.622168498],[-71.483241533,41.622156499],[-71.483321533,41.622126498],[-71.483355534,41.622066498],[-71.483355534,41.621984498],[-71.483334534,41.621921498],[-71.483318533,41.621856498],[-71.483302533,41.621794498],[-71.483294534,41.621735498],[-71.483293534,41.621674498],[-71.483297533,41.621612499],[-71.483306533,41.621555498],[-71.483339533,41.621480498],[-71.483403533,41.621419498],[-71.483497533,41.621383498],[-71.483600534,41.621381498],[-71.483682534,41.621415498],[-71.483722534,41.621488498],[-71.483726533,41.621546498],[-71.483702534,41.621618498],[-71.483698534,41.621673498],[-71.483752534,41.621706498],[-71.483868534,41.621685498],[-71.483939534,41.621661498],[-71.484008534,41.621632499],[-71.484067534,41.621595498],[-71.484121534,41.621554499],[-71.484175533,41.621512498],[-71.484228534,41.621469498],[-71.484270534,41.621415498],[-71.484302534,41.621353498],[-71.484338534,41.621294498],[-71.484379534,41.621236498],[-71.484418534,41.621182498],[-71.484457534,41.621132498],[-71.484508534,41.621067498],[-71.484557534,41.621005498],[-71.484601534,41.620948498],[-71.484646534,41.620888498],[-71.484685534,41.620837498],[-71.484724534,41.620782498],[-71.484771534,41.620721498],[-71.484823534,41.620654498],[-71.484856534,41.620603498],[-71.484884534,41.620551498],[-71.484919534,41.620479498],[-71.484954534,41.620419498],[-71.484993534,41.620369498],[-71.485047534,41.620323498],[-71.485115534,41.620274498],[-71.485185534,41.620229497],[-71.485261534,41.620184498],[-71.485345534,41.620141498],[-71.485430534,41.620103498],[-71.485511534,41.620065498],[-71.485571534,41.620021498],[-71.485627534,41.619979497],[-71.485710534,41.619981498],[-71.485815534,41.619994497],[-71.485873534,41.619940497],[-71.485950534,41.619909498],[-71.486017534,41.619882497],[-71.486073534,41.619841497],[-71.486111534,41.619782497],[-71.486147534,41.619712498],[-71.486183535,41.619637498],[-71.486195534,41.619583498],[-71.486196534,41.619504498],[-71.486197535,41.619427498],[-71.486199535,41.619363498],[-71.486213534,41.619309498],[-71.486234534,41.619249498],[-71.486209534,41.619191498],[-71.486143535,41.619161497],[-71.486159535,41.619097497],[-71.486173534,41.619075498],[-71.486245534,41.619099497],[-71.486279535,41.619072498],[-71.486299535,41.619018498],[-71.486303534,41.618950497],[-71.486288534,41.618906497],[-71.486295535,41.618852497],[-71.486334535,41.618767497],[-71.486327534,41.618740498],[-71.486317535,41.618703498],[-71.486299535,41.618646498],[-71.486282534,41.618589498],[-71.486264534,41.618530498],[-71.486245534,41.618474497],[-71.486225534,41.618418497],[-71.486208534,41.618359497],[-71.486196534,41.618299497],[-71.486191534,41.618239497],[-71.486190534,41.618179498],[-71.486190534,41.618063498],[-71.486189534,41.618009497],[-71.486192534,41.617954497],[-71.486200535,41.617900497],[-71.486212534,41.617845498],[-71.486235534,41.617739497],[-71.486267534,41.617638497],[-71.486304534,41.617542497],[-71.486310534,41.617455497],[-71.486273534,41.617368497],[-71.486213534,41.617287497],[-71.486139534,41.617208497],[-71.486066535,41.617132497],[-71.486009534,41.617059497],[-71.486001534,41.616943497],[-71.486070534,41.616911497],[-71.486173534,41.616877497],[-71.486291534,41.616836497],[-71.486414535,41.616794497],[-71.486534535,41.616748497],[-71.486651535,41.616698497],[-71.486762535,41.616658497],[-71.486873534,41.616645497],[-71.486970534,41.616661497],[-71.487005534,41.616675497],[-71.487048534,41.616693497],[-71.487117535,41.616744497],[-71.487196535,41.616807497],[-71.487279534,41.616864497],[-71.487361534,41.616903497],[-71.487441535,41.616913497],[-71.487515534,41.616888497],[-71.487591534,41.616838497],[-71.487663535,41.616781497],[-71.487726534,41.616716497],[-71.487788535,41.616647497],[-71.487854535,41.616575497],[-71.487926535,41.616498497],[-71.487989535,41.616419497],[-71.488039534,41.616342497],[-71.488070535,41.616260497],[-71.488077534,41.616182497],[-71.488065535,41.616114496],[-71.488039534,41.616056497],[-71.487947535,41.615932497],[-71.487889535,41.615862497],[-71.487826534,41.615798497],[-71.487771535,41.615738497],[-71.487724534,41.615635497],[-71.487777535,41.615572497],[-71.487844534,41.615543497],[-71.487912535,41.615511496],[-71.487965535,41.615464497],[-71.487999534,41.615408497],[-71.488021534,41.615345497],[-71.488036534,41.615280497],[-71.488031535,41.615221497],[-71.488005535,41.615177497],[-71.487944534,41.615108497],[-71.487888535,41.615050497],[-71.487831535,41.614995497],[-71.487765534,41.614952497],[-71.487686534,41.614925496],[-71.487613534,41.614887496],[-71.487569534,41.614837497],[-71.487556534,41.614777497],[-71.487559535,41.614709496],[-71.487567535,41.614638496],[-71.487559535,41.614562497],[-71.487567535,41.614487497],[-71.487609534,41.614413497],[-71.487632534,41.614343496],[-71.487631534,41.614273497],[-71.487610534,41.614209496],[-71.487546535,41.614162497],[-71.487456534,41.614129496],[-71.487355534,41.614103497],[-71.487264534,41.614078497],[-71.487195535,41.614045497],[-71.487161534,41.613988496],[-71.487178534,41.613919496],[-71.487223534,41.613855496],[-71.487286534,41.613794496],[-71.487356534,41.613729497],[-71.487419534,41.613662496],[-71.487479534,41.613599496],[-71.487515534,41.613544496],[-71.487503535,41.613495497],[-71.487443535,41.613452496],[-71.487358534,41.613435497],[-71.487279534,41.613468496],[-71.487175535,41.613467496],[-71.487094534,41.613439497],[-71.487005534,41.613415497],[-71.486925534,41.613388496],[-71.486851534,41.613353496],[-71.486746535,41.613324497],[-71.486624534,41.613308496],[-71.486511534,41.613304497],[-71.486413534,41.613297496],[-71.486332534,41.613284497],[-71.486273534,41.613249496],[-71.486215534,41.613192496],[-71.486148534,41.613131496],[-71.486069534,41.613078496],[-71.485985534,41.613039496],[-71.485873534,41.613008497],[-71.485765534,41.612995496],[-71.485652534,41.612994496],[-71.485538534,41.612995496],[-71.485451534,41.612982496],[-71.485403534,41.612938496],[-71.485384533,41.612880496],[-71.485399534,41.612825496],[-71.485436534,41.612763496],[-71.485461534,41.612700497],[-71.485443533,41.612639497],[-71.485403534,41.612580497],[-71.485371534,41.612500496],[-71.485386533,41.612441496],[-71.485382534,41.612429496],[-71.485420534,41.612167496],[-71.485451534,41.612031496],[-71.485390534,41.611925496],[-71.485283534,41.611841497],[-71.485092533,41.609968496],[-71.485031534,41.609348495],[-71.484965533,41.608680496],[-71.484863533,41.607658495],[-71.484786533,41.606834495],[-71.484650533,41.605375495],[-71.484497533,41.603748495],[-71.484406533,41.602777494],[-71.485405533,41.602770495],[-71.490582535,41.602730494],[-71.491401535,41.602724494],[-71.491411535,41.602724494],[-71.491821535,41.602720494],[-71.494561536,41.602698494],[-71.495689536,41.602688494],[-71.496546537,41.602681494],[-71.497849537,41.602670494],[-71.498093538,41.602668494],[-71.498215538,41.602132493],[-71.498291538,41.601742493],[-71.498360537,41.601123494],[-71.498405538,41.600459493],[-71.498405537,41.598820493],[-71.498397537,41.597712493],[-71.498398537,41.596845493],[-71.498398537,41.596417492],[-71.498413537,41.596150493],[-71.498474537,41.595631493],[-71.498491537,41.595527492],[-71.498528537,41.595307492],[-71.498573537,41.595078492],[-71.498657537,41.594761492],[-71.498745537,41.594485493],[-71.498779537,41.594372492],[-71.498795537,41.594334492],[-71.498840537,41.594197492],[-71.499046537,41.593701492],[-71.499237537,41.593312492],[-71.499466537,41.592900492],[-71.499733538,41.592469492],[-71.500069537,41.592007492],[-71.500548538,41.591389491],[-71.500954538,41.590851492],[-71.501263537,41.590452491],[-71.501641538,41.589966491],[-71.501928538,41.589608492],[-71.502060538,41.589444491],[-71.502410538,41.588974491],[-71.502457538,41.588910491],[-71.502800538,41.588478491],[-71.503197538,41.587963491],[-71.503479539,41.587555491],[-71.503708538,41.58717449],[-71.503899538,41.586781491],[-71.504082539,41.586331491],[-71.504181539,41.58602649],[-71.504242538,41.585743491],[-71.504318539,41.58534349],[-71.504395539,41.58483949],[-71.504364538,41.58411149],[-71.504333539,41.58374449],[-71.504303538,41.58353849],[-71.504265538,41.58332949],[-71.504219539,41.58312649],[-71.504143539,41.58288249],[-71.503952538,41.58240549],[-71.503822538,41.58213149],[-71.503685538,41.58185649],[-71.503525538,41.58158949],[-71.503431538,41.58143849],[-71.503265538,41.58120049],[-71.503189537,41.58110149],[-71.502892538,41.580723489],[-71.502708538,41.58051749],[-71.502518538,41.58031949],[-71.502350537,41.580162489],[-71.501854537,41.579747489],[-71.501701537,41.579632489],[-71.501556537,41.579514489],[-71.501381537,41.57938849],[-71.501350537,41.579365489],[-71.501284537,41.579315489],[-71.499896536,41.578264489],[-71.499562536,41.57800649],[-71.499386536,41.577858489],[-71.499149537,41.577658489],[-71.498970536,41.577498489],[-71.498862536,41.577397489],[-71.498734536,41.577279489],[-71.498659536,41.577204489],[-71.498474536,41.577019489],[-71.497864536,41.576363489],[-71.497135536,41.575472488],[-71.496950535,41.575262488],[-71.496517536,41.574766489],[-71.496303536,41.574550489],[-71.495883535,41.574143489],[-71.495570535,41.573866489],[-71.495073535,41.573436488],[-71.494650534,41.574281489],[-71.493107534,41.577349489],[-71.492049534,41.57942349],[-71.491741534,41.58003149],[-71.491040533,41.58143849],[-71.489121534,41.585230491],[-71.488908534,41.585667491],[-71.487776533,41.587892492],[-71.485613533,41.592173492],[-71.485555533,41.592159492],[-71.485428532,41.592125493],[-71.484567532,41.591866492],[-71.484138532,41.591744492],[-71.483940533,41.591679492],[-71.483757532,41.591610492],[-71.483650532,41.591561492],[-71.483421532,41.591473492],[-71.483246532,41.591420492],[-71.483002532,41.591370492],[-71.482925532,41.591359492],[-71.482773531,41.591351492],[-71.482503531,41.591351492],[-71.482346531,41.591351492],[-71.481972531,41.591336492],[-71.481697532,41.591301492],[-71.481560532,41.591278492],[-71.481454531,41.591254492],[-71.481171532,41.591187493],[-71.480784531,41.591082492],[-71.480606531,41.591034493],[-71.478867531,41.590603493],[-71.47807353,41.590413492],[-71.47767353,41.590308492],[-71.47740253,41.590237492],[-71.47708953,41.590149492],[-71.47692953,41.590100492],[-71.475304529,41.589562492],[-71.474382529,41.589260492],[-71.474068529,41.589157492],[-71.473732529,41.589058492],[-71.473577529,41.589015492],[-71.473457528,41.588982492],[-71.473320528,41.588940492],[-71.473206529,41.588894492],[-71.473099528,41.588841492],[-71.472957529,41.588763492],[-71.472839529,41.588688492],[-71.472702528,41.588585492],[-71.472511529,41.588414492],[-71.472458528,41.588349492],[-71.472351528,41.588257492],[-71.472305528,41.588227492],[-71.472214528,41.588154492],[-71.472160528,41.588116492],[-71.472054528,41.588059492],[-71.471947528,41.588025492],[-71.471870528,41.588013492],[-71.471794528,41.588009492],[-71.471649528,41.588009492],[-71.471504528,41.588017492],[-71.471420528,41.588032492],[-71.471268527,41.588066492],[-71.470413527,41.588284492],[-71.470329527,41.588311492],[-71.470238527,41.588334492],[-71.470139527,41.588368492],[-71.469849527,41.588482492],[-71.469498527,41.588631492],[-71.469322527,41.588700492],[-71.469009527,41.588833492],[-71.468475527,41.589081493],[-71.468109527,41.589245492],[-71.467911526,41.589318492],[-71.467758526,41.589363492],[-71.467705527,41.589383492],[-71.467590527,41.589413493],[-71.467415527,41.589447492],[-71.467163527,41.589470493],[-71.466820526,41.589486492],[-71.465622526,41.589554492],[-71.465508526,41.589558492],[-71.465302526,41.589543492],[-71.465088526,41.589493493],[-71.464836526,41.589413493],[-71.464666526,41.589346492],[-71.464554526,41.589302492],[-71.464157526,41.589123492],[-71.463890526,41.589009492],[-71.463760525,41.588948492],[-71.463562525,41.588848493],[-71.463423526,41.588764492],[-71.463326526,41.588696492],[-71.463181525,41.588578492],[-71.463112526,41.588513492],[-71.463036525,41.588456493],[-71.462959525,41.588414492],[-71.462883525,41.588372492],[-71.462799525,41.588334492],[-71.462639525,41.588272492],[-71.462578525,41.588383492],[-71.462563525,41.588440493],[-71.462563525,41.588486492],[-71.462578525,41.588578492],[-71.462624525,41.588719492],[-71.462639525,41.588787493],[-71.462646525,41.588860492],[-71.462646525,41.588932492],[-71.462639525,41.589009492],[-71.462601525,41.589219493],[-71.462540525,41.589543493],[-71.462517525,41.589692492],[-71.462486525,41.589836493],[-71.462425525,41.590069493],[-71.462387525,41.590180492],[-71.462273525,41.590390493],[-71.462105525,41.590672493],[-71.461922525,41.590596493],[-71.461472525,41.590466493],[-71.461250525,41.590390493],[-71.461159525,41.590363493],[-71.460976524,41.590317492],[-71.460907525,41.590294492],[-71.460831524,41.590275492],[-71.460701524,41.590229493],[-71.460594525,41.590176492],[-71.460472524,41.590077493],[-71.460419525,41.590046493],[-71.460312524,41.589997493],[-71.460266524,41.589981492],[-71.460114524,41.589951493],[-71.459946524,41.589909492],[-71.459915524,41.589894493],[-71.459908524,41.589882493],[-71.459197524,41.589682493],[-71.458825523,41.589758493],[-71.458513523,41.589963492],[-71.458334524,41.590061492],[-71.458019524,41.590179492],[-71.457474524,41.590149493],[-71.457359524,41.590523493],[-71.456512523,41.593369494],[-71.455780524,41.595787494],[-71.455330523,41.597340494],[-71.455101523,41.598149495],[-71.455025523,41.598450494],[-71.454910523,41.598938494],[-71.454895523,41.599114494],[-71.454880523,41.599339495],[-71.454903523,41.600209495],[-71.454948523,41.601075495],[-71.454964523,41.601296495],[-71.455006523,41.602277495],[-71.455015523,41.602492495],[-71.455017524,41.602536496],[-71.455017524,41.602623495],[-71.455026523,41.602750496],[-71.455042523,41.603046496],[-71.455062523,41.603418495],[-71.455073524,41.603603495],[-71.455060523,41.603842496],[-71.455099523,41.603856495],[-71.455231524,41.605130496],[-71.455261523,41.605431496],[-71.455341524,41.605833496],[-71.455391523,41.606083496],[-71.455574524,41.606530496],[-71.455788524,41.607151496],[-71.456009524,41.607781496],[-71.456429524,41.608944496],[-71.456543524,41.609276496],[-71.457039524,41.610669497],[-71.457085525,41.610798497],[-71.457298525,41.611615497],[-71.457382524,41.611981497],[-71.457420524,41.612160497],[-71.457428525,41.612214497],[-71.457481524,41.612439497],[-71.457619524,41.613137497],[-71.457687525,41.613686497],[-71.457695524,41.613785497],[-71.457779525,41.614636497]]]]}}"}, +{"type": "precinct", "typeId": 2303, "areaId": 26047, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":386,\"NAME\":\"2303\",\"SHAPE_Length\":0.33863384925245,\"SHAPE_Area\":-0.0019166653722101},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.429550305,41.584007047],[-71.429548283,41.584008016],[-71.429621514,41.583974493],[-71.429621472,41.58397298],[-71.429550305,41.584007047]]],[[[-71.429320557,41.584106366],[-71.429248851,41.584136761],[-71.429172572,41.584170538],[-71.429097174,41.58420642],[-71.42903867,41.584231111],[-71.429097514,41.584206493],[-71.429320514,41.584106493],[-71.429396514,41.584077492],[-71.429320557,41.584106366]]],[[[-71.428948339,41.584267139],[-71.428890268,41.584293198],[-71.429021355,41.584238355],[-71.428948339,41.584267139]]],[[[-71.428803128,41.5843293],[-71.428792047,41.584332758],[-71.428803514,41.584329492],[-71.428838696,41.584314773],[-71.428803128,41.5843293]]],[[[-71.428564775,41.584385297],[-71.428509284,41.584397067],[-71.428564514,41.584385492],[-71.428590727,41.584381932],[-71.428564775,41.584385297]]],[[[-71.428246623,41.584461324],[-71.428156772,41.584481987],[-71.428153603,41.584482756],[-71.428246513,41.584461493],[-71.428259969,41.584457839],[-71.428246623,41.584461324]]],[[[-71.427844138,41.584553282],[-71.42780242,41.58456416],[-71.427844513,41.584553493],[-71.427863554,41.584549135],[-71.427844138,41.584553282]]],[[[-71.427698344,41.584590033],[-71.427668484,41.584596356],[-71.427698513,41.584590493],[-71.427746813,41.584578252],[-71.427698344,41.584590033]]],[[[-71.427458166,41.584642553],[-71.427458513,41.584642492],[-71.427463821,41.584641072],[-71.427458166,41.584642553]]],[[[-71.427458166,41.584642553],[-71.427366583,41.584658433],[-71.427288676,41.584676428],[-71.42721436,41.584696461],[-71.427149664,41.584716668],[-71.427214513,41.584696492],[-71.427366514,41.584658492],[-71.427458166,41.584642553]]],[[[-71.426905177,41.584784907],[-71.426889281,41.584788909],[-71.426946291,41.584776159],[-71.426905177,41.584784907]]],[[[-71.42659724,41.584848655],[-71.426526186,41.584862755],[-71.426660561,41.584839279],[-71.42659724,41.584848655]]],[[[-71.426432225,41.584883906],[-71.426396317,41.584893084],[-71.42647778,41.584873401],[-71.426432225,41.584883906]]],[[[-71.426046142,41.584986251],[-71.426029927,41.585011011],[-71.426046513,41.584986493],[-71.426067725,41.584980769],[-71.426046142,41.584986251]]],[[[-71.425966569,41.585033564],[-71.426023512,41.585020493],[-71.426023535,41.585020459],[-71.425966569,41.585033564]]],[[[-71.424859512,41.585130493],[-71.424921073,41.585144411],[-71.424859562,41.585130384],[-71.424729418,41.585083639],[-71.424859512,41.585130493]]],[[[-71.423535036,41.585416273],[-71.42343854,41.585448606],[-71.423535512,41.585416493],[-71.424598343,41.585036553],[-71.423535036,41.585416273]]],[[[-71.417915403,41.585708434],[-71.418108455,41.585704494],[-71.418108433,41.585704375],[-71.417915403,41.585708434]]],[[[-71.419954883,41.585718493],[-71.420554498,41.585718494],[-71.420053717,41.585718003],[-71.419954883,41.585718493]]],[[[-71.422617984,41.585720123],[-71.421645994,41.585722378],[-71.422617512,41.585720493],[-71.42263139,41.585715897],[-71.422617984,41.585720123]]],[[[-71.41811251,41.585727493],[-71.418112682,41.585727493],[-71.418109479,41.585710063],[-71.41811251,41.585727493]]],[[[-71.417904365,41.585733494],[-71.41790451,41.585733493],[-71.417907335,41.585724667],[-71.417904365,41.585733494]]],[[[-71.417133517,41.585737341],[-71.417133517,41.585737493],[-71.41736605,41.585736287],[-71.417133517,41.585737341]]],[[[-71.407808507,41.585967493],[-71.407825765,41.585968772],[-71.407808554,41.585967332],[-71.407808507,41.585967493]]],[[[-71.41189834,41.585984356],[-71.411944508,41.585977493],[-71.411959528,41.585977894],[-71.411944278,41.585977366],[-71.41189834,41.585984356]]],[[[-71.412254508,41.586015493],[-71.412308797,41.586031566],[-71.412254626,41.586015246],[-71.41217347,41.585998215],[-71.412104201,41.585987551],[-71.412254508,41.586015493]]],[[[-71.411713015,41.586046438],[-71.411687194,41.586061465],[-71.411713508,41.586046493],[-71.411738559,41.58603505],[-71.411713015,41.586046438]]],[[[-71.412406509,41.586060494],[-71.412420645,41.586063728],[-71.412406719,41.586060255],[-71.412349575,41.586043638],[-71.412406509,41.586060494]]],[[[-71.412745258,41.586156523],[-71.412711035,41.586144098],[-71.412680581,41.586133696],[-71.412745258,41.586156523]]],[[[-71.416706929,41.586149601],[-71.416635311,41.586176535],[-71.416634697,41.586176723],[-71.41663551,41.586176494],[-71.416759598,41.586131052],[-71.416706929,41.586149601]]],[[[-71.411773508,41.586162493],[-71.411754967,41.586177763],[-71.411773748,41.58616257],[-71.411797091,41.586148968],[-71.411773508,41.586162493]]],[[[-71.412111313,41.586144693],[-71.412182351,41.586165742],[-71.412236379,41.586181047],[-71.412111509,41.586144493],[-71.412101116,41.586142184],[-71.412111313,41.586144693]]],[[[-71.411656586,41.586235457],[-71.411656708,41.58623548],[-71.411670104,41.586229108],[-71.411656586,41.586235457]]],[[[-71.416472924,41.586222111],[-71.416402327,41.586236696],[-71.416332672,41.586251991],[-71.416278305,41.586261642],[-71.416332509,41.586252493],[-71.41647251,41.586222493],[-71.416483274,41.586219455],[-71.416472924,41.586222111]]],[[[-71.413051004,41.586265802],[-71.41300865,41.58625053],[-71.412946999,41.586230832],[-71.413051004,41.586265802]]],[[[-71.4126633,41.586303669],[-71.412691785,41.586310303],[-71.412608986,41.586289057],[-71.4126633,41.586303669]]],[[[-71.41321848,41.586322113],[-71.413160706,41.586301004],[-71.413104528,41.586283799],[-71.41321848,41.586322113]]],[[[-71.416997941,41.5863388],[-71.417006955,41.586282119],[-71.417011902,41.586237193],[-71.416997941,41.5863388]]],[[[-71.416187006,41.586276355],[-71.416111872,41.586288879],[-71.416028513,41.586302037],[-71.415947862,41.586317209],[-71.415864502,41.58633103],[-71.41578186,41.586345434],[-71.416249434,41.586266515],[-71.416187006,41.586276355]]],[[[-71.417134244,41.58626515],[-71.417101118,41.586361475],[-71.41710151,41.586361493],[-71.41713451,41.586265493],[-71.41714451,41.586103493],[-71.417144503,41.58610324],[-71.417134244,41.58626515]]],[[[-71.413298509,41.586354493],[-71.413312774,41.586358963],[-71.413298046,41.586354143],[-71.413278363,41.586346074],[-71.413298509,41.586354493]]],[[[-71.415702349,41.586360093],[-71.415625354,41.586375359],[-71.415564074,41.586388788],[-71.415781143,41.586345566],[-71.415702349,41.586360093]]],[[[-71.415484258,41.58639769],[-71.415408304,41.586408818],[-71.415359982,41.586415739],[-71.41555047,41.586391144],[-71.415484258,41.58639769]]],[[[-71.413448509,41.586401493],[-71.413510963,41.586417786],[-71.41344831,41.586401184],[-71.413426952,41.586394739],[-71.413448509,41.586401493]]],[[[-71.413072433,41.586411581],[-71.413157207,41.586434149],[-71.413232815,41.586455269],[-71.413268978,41.586465233],[-71.413004445,41.586390729],[-71.413072433,41.586411581]]],[[[-71.415234309,41.586431628],[-71.415160123,41.58644143],[-71.415081333,41.586453881],[-71.415007144,41.586465719],[-71.414922872,41.586478166],[-71.414841339,41.586492011],[-71.414778389,41.586500896],[-71.414841509,41.586492493],[-71.415160509,41.586441493],[-71.415271995,41.586427099],[-71.415234309,41.586431628]]],[[[-71.413845509,41.586521493],[-71.413858042,41.586526005],[-71.413845396,41.586521388],[-71.413840325,41.586519881],[-71.413845509,41.586521493]]],[[[-71.413388599,41.586496871],[-71.413459704,41.586513826],[-71.413537321,41.586528992],[-71.413321878,41.58647964],[-71.413388599,41.586496871]]],[[[-71.414598671,41.586524648],[-71.414558317,41.586530194],[-71.414617383,41.58652233],[-71.414598671,41.586524648]]],[[[-71.413624692,41.586552737],[-71.413670884,41.586574356],[-71.413624509,41.586552493],[-71.413570025,41.586537751],[-71.413624692,41.586552737]]],[[[-71.414053509,41.586592493],[-71.414138509,41.586591493],[-71.41435994,41.586558861],[-71.414293664,41.586568468],[-71.41422228,41.586578226],[-71.414138921,41.586591406],[-71.414053871,41.586592165],[-71.413991621,41.586578347],[-71.414053509,41.586592493]]],[[[-71.412404509,41.586815494],[-71.412509353,41.586841455],[-71.412509384,41.5868414],[-71.412404601,41.586815279],[-71.412404509,41.586815494]]],[[[-71.411848353,41.586990454],[-71.411848508,41.586990494],[-71.41201338,41.586645763],[-71.411848353,41.586990454]]],[[[-71.413247653,41.587021623],[-71.413170759,41.587027969],[-71.413082898,41.587034877],[-71.413010373,41.587041336],[-71.413341509,41.587015494],[-71.413341881,41.587015434],[-71.413247653,41.587021623]]],[[[-71.412790509,41.587058493],[-71.412885027,41.587051117],[-71.412845912,41.587053771],[-71.4127901,41.587058189],[-71.412438643,41.586967255],[-71.412438509,41.586967493],[-71.412790509,41.587058493]]],[[[-71.412617512,41.642653505],[-71.412699512,41.642684504],[-71.412777512,41.642726504],[-71.412942512,41.642846505],[-71.412988512,41.642889504],[-71.413080512,41.642988504],[-71.413143512,41.643097505],[-71.413149512,41.643153504],[-71.413140512,41.643208504],[-71.413147512,41.643262504],[-71.413180512,41.643315505],[-71.413254512,41.643380504],[-71.413243512,41.643423504],[-71.413297512,41.643561504],[-71.413323512,41.643658504],[-71.413373512,41.643722505],[-71.413474512,41.643734504],[-71.413611512,41.643782505],[-71.413656512,41.643808504],[-71.413719512,41.643852504],[-71.413746512,41.643905504],[-71.413723512,41.643963504],[-71.413693512,41.644012505],[-71.413691512,41.644067505],[-71.413802512,41.644198504],[-71.413850512,41.644239504],[-71.413897512,41.644291505],[-71.413940512,41.644322505],[-71.414019512,41.644356504],[-71.414080512,41.644402505],[-71.414171512,41.644525505],[-71.414185512,41.643101505],[-71.414185512,41.643036504],[-71.414131512,41.642899504],[-71.414062512,41.642643504],[-71.413979512,41.642361505],[-71.413910512,41.642147505],[-71.413895512,41.641987504],[-71.413902512,41.641934504],[-71.413910512,41.641896504],[-71.413956512,41.641796505],[-71.414024512,41.641713504],[-71.414131512,41.641648504],[-71.414268512,41.641594504],[-71.414467512,41.641549504],[-71.414558512,41.641537504],[-71.414574512,41.641533504],[-71.415741513,41.641434504],[-71.416870513,41.641343504],[-71.417166513,41.641312504],[-71.417854513,41.641243504],[-71.418724514,41.641159504],[-71.419049514,41.641135503],[-71.419075514,41.641133504],[-71.419235513,41.641137504],[-71.419548513,41.641198504],[-71.419594514,41.641205504],[-71.419754514,41.641247504],[-71.419884514,41.641262504],[-71.420052514,41.641266504],[-71.420227514,41.641232503],[-71.420380514,41.641171504],[-71.420555514,41.641087504],[-71.420738514,41.641007504],[-71.420883514,41.640957504],[-71.421005514,41.640915504],[-71.421555514,41.640820504],[-71.421852514,41.640759504],[-71.422020515,41.640755504],[-71.422119515,41.640721504],[-71.422165514,41.640675504],[-71.422195515,41.640610503],[-71.422203514,41.640519504],[-71.422195515,41.640423504],[-71.422180514,41.640355503],[-71.422966515,41.640087503],[-71.424118515,41.639702503],[-71.425255516,41.639332503],[-71.426376516,41.638977503],[-71.427055516,41.638752503],[-71.428078516,41.638440503],[-71.428650517,41.638256503],[-71.428978517,41.638153503],[-71.429169517,41.638096503],[-71.430069517,41.637837503],[-71.430916517,41.637562503],[-71.431129518,41.637486503],[-71.432945517,41.636856503],[-71.433090518,41.636811502],[-71.433404518,41.636705503],[-71.433601518,41.636639503],[-71.434437518,41.636374503],[-71.436989519,41.635601502],[-71.437508519,41.635430502],[-71.43797352,41.635254502],[-71.438293519,41.635106502],[-71.438370519,41.635067502],[-71.438431519,41.635037502],[-71.43920952,41.634545502],[-71.43986552,41.634087502],[-71.43992652,41.634041502],[-71.44129952,41.633103501],[-71.44232952,41.632405501],[-71.44019652,41.631423501],[-71.44019652,41.631364501],[-71.44018052,41.631309501],[-71.44013852,41.631263502],[-71.44007552,41.631218501],[-71.44001452,41.631167502],[-71.44040152,41.631078501],[-71.44046452,41.631051502],[-71.44055552,41.630956501],[-71.44066352,41.630855502],[-71.44082452,41.630723501],[-71.44086552,41.630671501],[-71.44087552,41.630601502],[-71.44087452,41.630546501],[-71.44088152,41.630493501],[-71.44090252,41.630453501],[-71.44087852,41.630420501],[-71.44087452,41.630331501],[-71.44073052,41.630282501],[-71.44067452,41.630242501],[-71.44062652,41.630132501],[-71.44056752,41.630024501],[-71.44056052,41.629951501],[-71.44055952,41.629824501],[-71.44056352,41.629764501],[-71.44058552,41.629636501],[-71.44060052,41.629575501],[-71.44060152,41.629461501],[-71.44057752,41.629409501],[-71.44053252,41.6293555],[-71.44050452,41.629301501],[-71.44050252,41.629263501],[-71.44063752,41.629282501],[-71.44070952,41.629276501],[-71.44078752,41.629245501],[-71.44085652,41.629206501],[-71.44082652,41.6290835],[-71.44080352,41.628955501],[-71.44079652,41.6288885],[-71.44080652,41.6288295],[-71.44079352,41.628775501],[-71.44100952,41.6287525],[-71.44108152,41.628717501],[-71.44112252,41.6286565],[-71.44115152,41.6285975],[-71.44118452,41.628545501],[-71.44128652,41.628449501],[-71.44142452,41.6283035],[-71.44148852,41.628175501],[-71.44153752,41.628122501],[-71.44161652,41.628066501],[-71.44174252,41.6279945],[-71.44179952,41.6279555],[-71.44190652,41.627869501],[-71.44197352,41.627807501],[-71.44201752,41.6277375],[-71.442029521,41.6276805],[-71.44203452,41.627618501],[-71.44203452,41.627340501],[-71.44202552,41.6271345],[-71.44196652,41.6268105],[-71.44195952,41.626737501],[-71.44196152,41.6263445],[-71.44198052,41.6261575],[-71.44200252,41.626095501],[-71.442128521,41.6258495],[-71.44215152,41.6257925],[-71.44218252,41.6257375],[-71.44222752,41.6256785],[-71.44232852,41.6255215],[-71.442361521,41.6254595],[-71.44247352,41.6252045],[-71.439387519,41.6253685],[-71.439391519,41.6252995],[-71.439381519,41.6252445],[-71.43937752,41.6251725],[-71.43939552,41.6250365],[-71.439479519,41.6249375],[-71.439521519,41.6248805],[-71.439580519,41.6247625],[-71.439624519,41.6247105],[-71.43965252,41.6246555],[-71.439673519,41.6245995],[-71.439682519,41.6245335],[-71.439678519,41.6243935],[-71.439601519,41.6242285],[-71.439560519,41.6241765],[-71.439497519,41.6241325],[-71.439446519,41.6241075],[-71.439218238,41.623568989],[-71.444538187,41.623052351],[-71.444559521,41.6234575],[-71.444855521,41.6234595],[-71.445450521,41.623433499],[-71.446022522,41.623349499],[-71.446208521,41.623314499],[-71.446251521,41.6233075],[-71.446587522,41.623238499],[-71.446044522,41.622480499],[-71.446112521,41.6224445],[-71.446208521,41.622343499],[-71.446236522,41.6222925],[-71.446354522,41.622209499],[-71.446425521,41.622187499],[-71.446497522,41.622159499],[-71.446568522,41.6221395],[-71.446751521,41.6221145],[-71.446840522,41.622106499],[-71.447125521,41.622092499],[-71.447226522,41.622091499],[-71.447329522,41.622082499],[-71.447593522,41.622070499],[-71.447953522,41.622069499],[-71.448432522,41.622073499],[-71.448506522,41.6220805],[-71.448579522,41.622093499],[-71.448653522,41.622111499],[-71.448805522,41.622164499],[-71.448879522,41.622181499],[-71.448959522,41.622187499],[-71.449032523,41.622208499],[-71.449117522,41.622300499],[-71.449169523,41.622365499],[-71.449242523,41.622401499],[-71.449332522,41.622405499],[-71.449431522,41.622393499],[-71.449511523,41.6223885],[-71.449589523,41.622377499],[-71.449665522,41.622359499],[-71.449742522,41.622346499],[-71.449812523,41.622321499],[-71.449872522,41.622283499],[-71.449982523,41.622191499],[-71.450046523,41.622147499],[-71.450118523,41.622111499],[-71.450193523,41.622081499],[-71.450294523,41.622048499],[-71.450350523,41.621991499],[-71.450379522,41.621915499],[-71.450412523,41.6218655],[-71.450449523,41.621819499],[-71.450494523,41.621774499],[-71.450545523,41.621734499],[-71.450612523,41.621705499],[-71.450689523,41.6216905],[-71.450840523,41.621688499],[-71.450959523,41.621680499],[-71.451002523,41.621636499],[-71.451026523,41.621580499],[-71.451043523,41.621516499],[-71.451084523,41.621462499],[-71.451202523,41.621383499],[-71.451318523,41.621277499],[-71.451359523,41.621229499],[-71.451529523,41.621062499],[-71.451567524,41.621006499],[-71.451593523,41.620950499],[-71.451640523,41.620823499],[-71.451713523,41.620716498],[-71.451769523,41.620575499],[-71.451837523,41.620452499],[-71.451885523,41.620380499],[-71.451944523,41.620304499],[-71.452035524,41.620187499],[-71.452084523,41.620117499],[-71.452140523,41.620056498],[-71.452238523,41.619972499],[-71.452367524,41.619878498],[-71.452476523,41.619784498],[-71.452523524,41.619732499],[-71.452594523,41.619600499],[-71.452645523,41.619539499],[-71.452748523,41.619445499],[-71.452805523,41.619386499],[-71.452863523,41.619376498],[-71.453184524,41.619382499],[-71.453279524,41.619393498],[-71.453602524,41.619411498],[-71.454015524,41.619416498],[-71.454095524,41.619420499],[-71.454244524,41.619471498],[-71.454403524,41.619502499],[-71.454463524,41.619505499],[-71.454572524,41.619514498],[-71.454635524,41.619515499],[-71.454694524,41.619512498],[-71.454783524,41.619499499],[-71.454913524,41.619474498],[-71.455016524,41.619449498],[-71.455074524,41.619438499],[-71.455154525,41.619415498],[-71.455243524,41.619384499],[-71.455311525,41.619365499],[-71.455413524,41.619343499],[-71.455494524,41.619330499],[-71.455568524,41.619329499],[-71.455649524,41.619361499],[-71.455809524,41.619391498],[-71.455884524,41.619391498],[-71.455963524,41.619374498],[-71.456057524,41.619335498],[-71.456619671,41.619182331],[-71.456622422,41.618775868],[-71.456750216,41.617565738],[-71.456291524,41.617451498],[-71.456497525,41.617016498],[-71.456711525,41.616520498],[-71.456802524,41.616276498],[-71.456917524,41.615998497],[-71.457146524,41.615395497],[-71.457283524,41.615017498],[-71.457315525,41.614910497],[-71.457390525,41.614659497],[-71.457443524,41.614640498],[-71.457542525,41.614643498],[-71.457626525,41.614640497],[-71.457779525,41.614636497],[-71.457695524,41.613785497],[-71.457687525,41.613686497],[-71.457619524,41.613137497],[-71.457481524,41.612439497],[-71.457428525,41.612214497],[-71.457420524,41.612160497],[-71.457382524,41.611981497],[-71.457298525,41.611615497],[-71.457085525,41.610798497],[-71.457039524,41.610669497],[-71.456543524,41.609276496],[-71.456429524,41.608944496],[-71.456009524,41.607781496],[-71.455788524,41.607151496],[-71.455574524,41.606530496],[-71.455391523,41.606083496],[-71.455341524,41.605833496],[-71.455261523,41.605431496],[-71.455231524,41.605130496],[-71.455099523,41.603856495],[-71.455060523,41.603842496],[-71.455073524,41.603603495],[-71.455062523,41.603418495],[-71.455042523,41.603046496],[-71.455026523,41.602750496],[-71.454548523,41.602577496],[-71.454072523,41.602448495],[-71.453883523,41.602416495],[-71.453593523,41.602395495],[-71.453300523,41.602397495],[-71.453215523,41.602405495],[-71.453339523,41.602528495],[-71.453455523,41.602690495],[-71.453133522,41.602508495],[-71.453079523,41.602448495],[-71.453048523,41.602421496],[-71.452744522,41.602154495],[-71.452309522,41.601876496],[-71.451598522,41.601521495],[-71.451500522,41.601464495],[-71.451386522,41.601416495],[-71.450020522,41.600838495],[-71.447990521,41.599987495],[-71.44574052,41.599030494],[-71.444379519,41.598461495],[-71.442697519,41.597753495],[-71.441393518,41.597204495],[-71.440634518,41.596883495],[-71.440253518,41.596722495],[-71.439230518,41.596292495],[-71.439003518,41.596196495],[-71.434692516,41.594368495],[-71.432190515,41.593312494],[-71.431305515,41.592938494],[-71.430291515,41.592543494],[-71.430168515,41.592495494],[-71.429687514,41.592327494],[-71.429594514,41.592302494],[-71.429192514,41.592194494],[-71.428406514,41.592015494],[-71.427696514,41.591858494],[-71.426140513,41.591542494],[-71.425293513,41.591355494],[-71.424866513,41.591256494],[-71.424556513,41.591163494],[-71.424370512,41.591107494],[-71.423965513,41.590977494],[-71.423759512,41.590908494],[-71.423035513,41.590634494],[-71.421616511,41.590073494],[-71.419884511,41.589394494],[-71.419212511,41.589138494],[-71.419319511,41.588978494],[-71.419418511,41.588883494],[-71.418315511,41.588503493],[-71.41626751,41.587988494],[-71.413911509,41.587375493],[-71.411624508,41.586992494],[-71.409866508,41.586546494],[-71.407791587,41.586010514],[-71.407727355,41.586173985],[-71.409270019,41.586576186],[-71.411744148,41.587207987],[-71.411636795,41.587458441],[-71.410385975,41.587763949],[-71.409840989,41.587626237],[-71.407572083,41.588189429],[-71.407599446,41.588269266],[-71.407597551,41.588274067],[-71.407446837,41.588264752],[-71.407362026,41.588246297],[-71.407280868,41.588229925],[-71.407202418,41.588215637],[-71.407112932,41.588207469],[-71.407027099,41.588200676],[-71.406936564,41.588201403],[-71.40685046,41.58821382],[-71.406758804,41.588231699],[-71.406672596,41.588253058],[-71.40657451,41.588272943],[-71.406481024,41.588292192],[-71.406382085,41.588311368],[-71.406290428,41.588329932],[-71.406193254,41.588350527],[-71.406106029,41.588379431],[-71.406014131,41.588417205],[-71.405938647,41.588457852],[-71.405868577,41.588504723],[-71.405797459,41.588559803],[-71.405732837,41.588609469],[-71.405660937,41.588657001],[-71.405591745,41.588707303],[-71.405525436,41.588743863],[-71.405451949,41.588772161],[-71.405388518,41.588799187],[-71.405322378,41.588824129],[-71.405249877,41.588844857],[-71.405227099,41.588839213],[-71.405047991,41.58883177],[-71.404045133,41.590130091],[-71.404052058,41.592612707],[-71.404037643,41.59276041],[-71.404036909,41.592844318],[-71.40403632,41.592912858],[-71.404035695,41.592985582],[-71.404035105,41.593054831],[-71.404034622,41.593113583],[-71.404035089,41.593168127],[-71.404027923,41.596504863],[-71.404038272,41.599102445],[-71.404033133,41.59915767],[-71.404026085,41.599185314],[-71.404018699,41.599214261],[-71.403993963,41.599273586],[-71.40395331,41.599341955],[-71.403906096,41.599416562],[-71.40386184,41.599469468],[-71.403808291,41.599522367],[-71.403752781,41.599582947],[-71.403698179,41.599647005],[-71.403635234,41.599707557],[-71.403567663,41.599765291],[-71.403498233,41.599822293],[-71.403425968,41.599880732],[-71.40335093,41.599939787],[-71.403273964,41.600003757],[-71.40320358,41.600067779],[-71.403146173,41.600132543],[-71.403097072,41.600205066],[-71.40305911,41.600285993],[-71.403031384,41.600367659],[-71.403010209,41.600448691],[-71.402996508,41.600524149],[-71.403003308,41.600601843],[-71.403032435,41.6006831],[-71.403079198,41.600768649],[-71.403126899,41.600857698],[-71.403175518,41.600944689],[-71.403228791,41.601037264],[-71.403293179,41.60113337],[-71.403365099,41.601225343],[-71.403440745,41.601311717],[-71.403506193,41.601392456],[-71.403567085,41.601463402],[-71.40362805,41.601525933],[-71.403684427,41.601580776],[-71.403738986,41.601628573],[-71.403797333,41.601669421],[-71.403858555,41.601703319],[-71.40393366,41.60174425],[-71.403989235,41.601785073],[-71.404042164,41.601802612],[-71.40403948,41.601968437],[-71.404030362,41.602529397],[-71.404135662,41.602529943],[-71.412863979,41.602523167],[-71.414579198,41.602521779],[-71.414610486,41.60257088],[-71.414659335,41.602634745],[-71.416654601,41.604761134],[-71.416769437,41.604883501],[-71.416796427,41.604912244],[-71.416683343,41.605062118],[-71.416686516,41.605129951],[-71.416696285,41.605186652],[-71.416690972,41.605266349],[-71.416677431,41.605322941],[-71.416657365,41.605383691],[-71.416633549,41.605445147],[-71.41660787,41.605510741],[-71.416573679,41.605584036],[-71.41652826,41.605669124],[-71.416480003,41.605757731],[-71.416432662,41.605844212],[-71.416389066,41.605932846],[-71.416349189,41.606020087],[-71.416306539,41.606108012],[-71.416259193,41.606197992],[-71.416212689,41.606297098],[-71.416186171,41.60635009],[-71.416158678,41.606403859],[-71.416127498,41.606457534],[-71.41609257,41.606511229],[-71.416053924,41.606564899],[-71.416014301,41.606620671],[-71.415974675,41.606678548],[-71.415934135,41.606735692],[-71.415894511,41.606792151],[-71.415855866,41.606845134],[-71.415817222,41.6068967],[-71.415777667,41.60694687],[-71.415737164,41.606999143],[-71.415697572,41.607053497],[-71.415655176,41.607108536],[-71.415613693,41.607164307],[-71.415572241,41.607220056],[-71.415533596,41.607272307],[-71.415496811,41.607323897],[-71.415461883,41.607376883],[-71.41542604,41.607430577],[-71.415391076,41.607487085],[-71.415354252,41.60754494],[-71.41531557,41.607602795],[-71.415275031,41.607658589],[-71.415234495,41.607712234],[-71.415193955,41.607768692],[-71.415154292,41.607830022],[-71.415119289,41.607892819],[-71.41508618,41.607952804],[-71.415051214,41.608010684],[-71.415014423,41.608066458],[-71.414975742,41.608122231],[-71.414937029,41.608179399],[-71.414897433,41.608235858],[-71.414856894,41.608290943],[-71.414818248,41.608343903],[-71.414779604,41.608394805],[-71.414740992,41.608444243],[-71.414703327,41.608491624],[-71.414666576,41.608539737],[-71.414629825,41.608587805],[-71.414594933,41.608635164],[-71.414529881,41.60872369],[-71.41446406,41.60879401],[-71.414389967,41.608852433],[-71.414318682,41.608906626],[-71.41425774,41.608951817],[-71.414194869,41.609003272],[-71.414112616,41.609032987],[-71.414090619,41.609099292],[-71.414055613,41.609162774],[-71.414018826,41.609214386],[-71.413973553,41.609277083],[-71.413917967,41.609349538],[-71.413852104,41.609427566],[-71.413777798,41.609507668],[-71.413701593,41.60959472],[-71.413662038,41.609641413],[-71.413622512,41.609690164],[-71.413582953,41.60974031],[-71.413546168,41.609789795],[-71.413511272,41.609839327],[-71.41344432,41.609933408],[-71.413361561,41.610021828],[-71.413312747,41.610064991],[-71.413262075,41.610107353],[-71.413212352,41.610147017],[-71.41311582,41.610211574],[-71.413044608,41.610255315],[-71.412967454,41.610343762],[-71.412900025,41.61038403],[-71.412853232,41.610420197],[-71.412835295,41.610434065],[-71.412764879,41.61049736],[-71.412685065,41.610569727],[-71.412595858,41.610646959],[-71.412507626,41.610724854],[-71.412422171,41.610799275],[-71.412323775,41.610866665],[-71.412214266,41.610926271],[-71.412102875,41.610980318],[-71.411990637,41.61103011],[-71.411870931,41.611080606],[-71.41175782,41.611122027],[-71.411652247,41.611155107],[-71.411551344,41.611182633],[-71.411461726,41.611203192],[-71.411368431,41.61121531],[-71.411294813,41.611212166],[-71.411242826,41.611189554],[-71.411163047,41.611145788],[-71.410972814,41.611049795],[-71.41090699,41.611007481],[-71.410822511,41.610969315],[-71.41075475,41.610939646],[-71.41068608,41.610905746],[-71.41062302,41.610869746],[-71.410553478,41.610828184],[-71.410524118,41.610772771],[-71.410529071,41.610738516],[-71.410508016,41.610692967],[-71.41043731,41.610677932],[-71.410433592,41.610677906],[-71.410348967,41.610789924],[-71.409293719,41.612186058],[-71.408445763,41.613307845],[-71.40833999,41.613263326],[-71.4057716,41.61218318],[-71.404752559,41.611754589],[-71.404664458,41.611714883],[-71.40465706,41.611710188],[-71.404653465,41.611709499],[-71.404647524,41.611708762],[-71.404640942,41.611708734],[-71.404635577,41.611709393],[-71.40462957,41.611712109],[-71.404622526,41.611715305],[-71.40460095,41.611736968],[-71.404462607,41.61189822],[-71.404230163,41.612181906],[-71.404189347,41.612231705],[-71.404178696,41.61226273],[-71.404174194,41.612277797],[-71.404185144,41.612312522],[-71.40421385,41.612332923],[-71.407917271,41.613915912],[-71.407750831,41.614122428],[-71.40715297,41.61498303],[-71.407112098,41.614965341],[-71.407056428,41.615045523],[-71.407098139,41.615073],[-71.40706422,41.615115487],[-71.403361156,41.613526867],[-71.403321155,41.613518944],[-71.40324928,41.613530501],[-71.403210692,41.613576505],[-71.403205085,41.613576454],[-71.402136183,41.614982642],[-71.402131986,41.615037182],[-71.40217537,41.615085634],[-71.402212451,41.615110319],[-71.402957108,41.615432815],[-71.403016241,41.615384153],[-71.403065174,41.615329857],[-71.403080219,41.615315942],[-71.403106161,41.615330737],[-71.403173042,41.615359037],[-71.403195411,41.615358439],[-71.403199239,41.615346573],[-71.403274981,41.615318255],[-71.403333527,41.615336051],[-71.403392907,41.615367112],[-71.403462564,41.615393288],[-71.403496007,41.615405345],[-71.403574002,41.615439989],[-71.406334734,41.616617787],[-71.406362054,41.61669273],[-71.406374544,41.616759268],[-71.40637028,41.61682076],[-71.406348378,41.616877299],[-71.406329179,41.616939465],[-71.406374425,41.616989358],[-71.406421376,41.617060932],[-71.406421784,41.617115476],[-71.406426803,41.617185438],[-71.406469241,41.617238072],[-71.406533942,41.617300627],[-71.406582976,41.617344256],[-71.406659958,41.617386582],[-71.406737344,41.617381339],[-71.406772028,41.617358429],[-71.406746528,41.617289068],[-71.406716362,41.617221807],[-71.406691741,41.617156609],[-71.406686789,41.617081753],[-71.406715394,41.617005689],[-71.406754128,41.616942898],[-71.406775041,41.616895438],[-71.406774384,41.616865364],[-71.40684594,41.616886691],[-71.406883568,41.616956816],[-71.406895112,41.617024702],[-71.406906621,41.617096133],[-71.406914522,41.617154182],[-71.406908435,41.61721222],[-71.406895753,41.6172786],[-71.406891414,41.617349927],[-71.4068862,41.617415649],[-71.406877311,41.617472267],[-71.406872092,41.61754078],[-71.406866885,41.617601586],[-71.406834674,41.617663673],[-71.40677751,41.617699783],[-71.406739142,41.617719855],[-71.406759393,41.617751431],[-71.406842499,41.617732219],[-71.406903494,41.617681498],[-71.406953482,41.617612496],[-71.406995165,41.617533653],[-71.407024753,41.617451255],[-71.407050697,41.617360461],[-71.407075732,41.617265459],[-71.407100694,41.617178872],[-71.407121829,41.617104129],[-71.407138185,41.617047563],[-71.407153602,41.616986079],[-71.407174226,41.616970819],[-71.407255901,41.617013148],[-71.407334772,41.617055474],[-71.407408946,41.617101296],[-71.40745886,41.617147692],[-71.407468658,41.617200895],[-71.407441074,41.61726724],[-71.407420816,41.617346146],[-71.407397783,41.6174272],[-71.407365425,41.617506737],[-71.40734236,41.617588477],[-71.407365056,41.617658544],[-71.407405646,41.61770347],[-71.407451329,41.617704399],[-71.40752041,41.617688651],[-71.407557057,41.61776367],[-71.407556396,41.617841975],[-71.407536174,41.617918114],[-71.40749755,41.617967595],[-71.407392005,41.61799365],[-71.40730078,41.617979237],[-71.407220882,41.617950151],[-71.407148459,41.61791556],[-71.407100398,41.61787335],[-71.407004653,41.617844937],[-71.406933905,41.61783269],[-71.406855719,41.61782181],[-71.406782238,41.617802586],[-71.406712544,41.617777761],[-71.406643867,41.617745963],[-71.406575162,41.617711351],[-71.406510202,41.61768031],[-71.406450057,41.617627524],[-71.406374861,41.617593593],[-71.406294821,41.617579921],[-71.406209098,41.617575323],[-71.406122346,41.617587487],[-71.406036513,41.617596176],[-71.405956429,41.617591582],[-71.405875438,41.617581408],[-71.405789824,41.617565626],[-71.405703298,41.617547717],[-71.40561681,41.617524914],[-71.40552566,41.617501421],[-71.405428967,41.61747575],[-71.405332278,41.617447312],[-71.405243024,41.617419612],[-71.405160288,41.617394731],[-71.405082174,41.617376874],[-71.405011428,41.61736394],[-71.404924937,41.617343263],[-71.404847702,41.617328883],[-71.404773303,41.617313133],[-71.404794368,41.617350313],[-71.404866792,41.617382848],[-71.40494111,41.617411885],[-71.404978886,41.617463098],[-71.404969335,41.617492455],[-71.404882593,41.617496911],[-71.40480998,41.617489601],[-71.404762438,41.617489356],[-71.404760471,41.617500515],[-71.404838466,41.617537285],[-71.404908126,41.617563505],[-71.404990821,41.617595385],[-71.405093048,41.617630117],[-71.405202741,41.617664923],[-71.405314332,41.617694128],[-71.40543427,41.617726176],[-71.405543016,41.617762353],[-71.405621014,41.617797705],[-71.405661563,41.617849652],[-71.40568462,41.617879858],[-71.405788096,41.617873357],[-71.405876778,41.617854905],[-71.40595438,41.617827274],[-71.40602269,41.617796845],[-71.406102044,41.617779757],[-71.40619327,41.617793462],[-71.406280562,41.617829575],[-71.406357573,41.617873273],[-71.406427119,41.617915593],[-71.406483662,41.617951544],[-71.40655033,41.618002894],[-71.406600244,41.618049291],[-71.406961568,41.61841122],[-71.40706044,41.618513115],[-71.407100399,41.618594585],[-71.407140891,41.61864532],[-71.407172139,41.618702427],[-71.40721085,41.618762239],[-71.407250455,41.618814414],[-71.407288172,41.618866587],[-71.40731562,41.618916693],[-71.407342236,41.618973797],[-71.407364106,41.619025339],[-71.407387895,41.619076861],[-71.407412566,41.6191298],[-71.407437322,41.619187612],[-71.407462051,41.619243364],[-71.407487776,41.619305339],[-71.407512445,41.619359696],[-71.407536314,41.61942032],[-71.407558291,41.619481628],[-71.40757655,41.619543687],[-71.407594893,41.619610595],[-71.407616843,41.619669822],[-71.40763885,41.619731862],[-71.407657087,41.619788318],[-71.407673514,41.619852458],[-71.407685251,41.619913826],[-71.407695187,41.619978029],[-71.407705094,41.620040813],[-71.40771403,41.620100098],[-71.407723023,41.620162928],[-71.407726327,41.620218069],[-71.407726887,41.620274603],[-71.407727495,41.620339507],[-71.407720613,41.620399602],[-71.407663345,41.620443191],[-71.407579967,41.620480653],[-71.407514372,41.620528512],[-71.407485203,41.620593575],[-71.407477487,41.620661377],[-71.407495828,41.620729703],[-71.407543706,41.620774131],[-71.4076101,41.620807254],[-71.407653447,41.620865674],[-71.407682862,41.620926965],[-71.407735456,41.620976954],[-71.407811064,41.621003086],[-71.407885411,41.620994295],[-71.407929532,41.620937523],[-71.407948594,41.62088503],[-71.407989965,41.620833149],[-71.408041972,41.620824501],[-71.408113942,41.620858313],[-71.40819694,41.62087464],[-71.408268271,41.620843526],[-71.408284927,41.62083295],[-71.408197111,41.620603682],[-71.408132816,41.620594986],[-71.408213266,41.620344584],[-71.408234603,41.620342383],[-71.408263112,41.620204685],[-71.408292775,41.620198237],[-71.408416693,41.619726241],[-71.408956177,41.61980502],[-71.408976617,41.619704388],[-71.409050205,41.619713777],[-71.409125683,41.61972383],[-71.409201187,41.61973672],[-71.409280406,41.619751647],[-71.409349441,41.619770089],[-71.40940756,41.619814456],[-71.409423988,41.619878641],[-71.409409674,41.619936626],[-71.409392633,41.620005176],[-71.409391335,41.620061708],[-71.409429027,41.62011109],[-71.409481647,41.620164578],[-71.409541626,41.620208923],[-71.409570938,41.620257635],[-71.409493867,41.620274818],[-71.409409282,41.620282253],[-71.409341559,41.620305663],[-71.409304799,41.620352631],[-71.409294229,41.620414142],[-71.409279964,41.620479857],[-71.409262981,41.620550465],[-71.409244029,41.620612015],[-71.409224187,41.620678458],[-71.409199603,41.620735132],[-71.409159177,41.620787723],[-71.409081216,41.62080909],[-71.408993775,41.620810278],[-71.408920233,41.620809946],[-71.408841144,41.620809677],[-71.408779812,41.620817724],[-71.408750596,41.620874395],[-71.408733448,41.620931052],[-71.408723766,41.620989064],[-71.408757848,41.621048254],[-71.40881319,41.621095432],[-71.408868536,41.621139797],[-71.408927537,41.62118556],[-71.408993125,41.621229201],[-71.409055716,41.621258203],[-71.409129364,41.621269651],[-71.409214921,41.621265693],[-71.409293903,41.621255487],[-71.409367389,41.621252321],[-71.409451194,41.621258859],[-71.409518535,41.621291272],[-71.409576597,41.621333558],[-71.409629141,41.621376571],[-71.409673327,41.621425203],[-71.409703613,41.621475311],[-71.409732086,41.621535915],[-71.409757764,41.621590913],[-71.409791816,41.62165008],[-71.409847163,41.621694491],[-71.409903397,41.621736752],[-71.409945778,41.621791008],[-71.409975113,41.621845324],[-71.409992463,41.621905255],[-71.410007034,41.621969438],[-71.410026212,41.622030058],[-71.410051832,41.622082289],[-71.410102678,41.622142086],[-71.410137622,41.622196314],[-71.41017165,41.622252005],[-71.410207487,41.622300013],[-71.410250836,41.622359096],[-71.410286672,41.622407813],[-71.410358569,41.622431128],[-71.410439491,41.622429316],[-71.410514838,41.622426104],[-71.410604063,41.622415127],[-71.410683858,41.622390971],[-71.410751473,41.622358503],[-71.410819008,41.622317642],[-71.410874392,41.622269842],[-71.410922334,41.622225603],[-71.410973028,41.622175033],[-71.411032235,41.622139128],[-71.411291949,41.621954085],[-71.410856657,41.621492837],[-71.411083643,41.621391061],[-71.411490999,41.621755412],[-71.411571442,41.621701913],[-71.41120284,41.621303814],[-71.411558104,41.621091722],[-71.411503302,41.62100473],[-71.411558657,41.620954849],[-71.411604713,41.620906424],[-71.411656348,41.620858003],[-71.411719301,41.620822741],[-71.411769103,41.620777108],[-71.411799259,41.620721787],[-71.411832195,41.620662238],[-71.411870762,41.62060825],[-71.411934654,41.620577219],[-71.412010782,41.620558639],[-71.412050559,41.620532575],[-71.412010061,41.620483214],[-71.412010468,41.620430866],[-71.412052862,41.620385915],[-71.412055611,41.620381023],[-71.412118126,41.620399526],[-71.412160542,41.620360223],[-71.412132413,41.620337309],[-71.412125381,41.620285687],[-71.412505641,41.619771139],[-71.412466274,41.619741356],[-71.412489021,41.619688133],[-71.412513575,41.619628646],[-71.412537156,41.619566413],[-71.4125543,41.619509755],[-71.412575107,41.619448869],[-71.41259877,41.619393589],[-71.412609338,41.619331415],[-71.412618101,41.619274774],[-71.412627752,41.619213994],[-71.412638344,41.619156691],[-71.412642367,41.619088909],[-71.412673466,41.61903432],[-71.412722297,41.618983793],[-71.412750567,41.618924971],[-71.41275836,41.618864167],[-71.412758711,41.618806925],[-71.41274883,41.618744141],[-71.412712965,41.618694052],[-71.41266875,41.618644735],[-71.412621788,41.618597519],[-71.41256178,41.618552444],[-71.412494446,41.618515801],[-71.412422477,41.618481282],[-71.41235234,41.618443951],[-71.412296133,41.618405168],[-71.412277924,41.618348712],[-71.412315543,41.618295455],[-71.412369035,41.61824628],[-71.412410454,41.618199246],[-71.412463138,41.618161277],[-71.412517574,41.61811279],[-71.412564464,41.618054577],[-71.412611354,41.617996409],[-71.412652718,41.61794519],[-71.412699716,41.617897452],[-71.412741134,41.617851149],[-71.412786245,41.617801351],[-71.412837904,41.617754965],[-71.412843274,41.617749938],[-71.412884012,41.617711434],[-71.412926373,41.617666527],[-71.412980861,41.617622933],[-71.413028044,41.617596143],[-71.41309349,41.617631389],[-71.413178475,41.617663036],[-71.413264267,41.617684232],[-71.413356528,41.617699807],[-71.413428337,41.61771683],[-71.413513353,41.617749209],[-71.413580526,41.617769087],[-71.413654035,41.617768685],[-71.413742334,41.617761205],[-71.413825978,41.617748186],[-71.41391328,41.617733752],[-71.413997028,41.617733998],[-71.414080856,41.617742614],[-71.414159081,41.617748458],[-71.414249455,41.617761927],[-71.414323068,41.617774789],[-71.414408865,41.617793217],[-71.414496518,41.617812973],[-71.41457296,41.617829999],[-71.414629198,41.61786949],[-71.414609333,41.617934562],[-71.414609977,41.618000861],[-71.414614311,41.618065082],[-71.414628001,41.618129927],[-71.414630502,41.618197646],[-71.414633058,41.618270258],[-71.414635454,41.618325399],[-71.414638039,41.618398697],[-71.414641406,41.618456628],[-71.414642104,41.618528553],[-71.414643582,41.618586483],[-71.414644252,41.618655641],[-71.414643901,41.618714278],[-71.414641796,41.618784806],[-71.414640498,41.618844837],[-71.414641197,41.618916076],[-71.414641758,41.6189754],[-71.414642296,41.619029853],[-71.414643022,41.619103173],[-71.414645389,41.619157604],[-71.414645145,41.619226761],[-71.414640131,41.619284732],[-71.414629618,41.619353195],[-71.41462086,41.61940771],[-71.414602826,41.619470656],[-71.41458668,41.619534976],[-71.414569621,41.619597946],[-71.414553558,41.619668532],[-71.414542101,41.619736309],[-71.414541858,41.619804734],[-71.414553657,41.619870973],[-71.414564514,41.619934467],[-71.414584668,41.619997213],[-71.414611234,41.620051524],[-71.414639715,41.620109314],[-71.414651405,41.620165101],[-71.414685359,41.620209608],[-71.414726183,41.620198226],[-71.41477496,41.620142118],[-71.414807972,41.620091646],[-71.414842843,41.620041199],[-71.414891725,41.619997623],[-71.414954968,41.6199952],[-71.415024221,41.620035319],[-71.415083151,41.620067791],[-71.415154264,41.620107225],[-71.415233459,41.620118672],[-71.415300236,41.620094549],[-71.415377224,41.620069014],[-71.415457414,41.62008881],[-71.415522923,41.620125449],[-71.41558743,41.620158611],[-71.415651105,41.62019948],[-71.415642048,41.620226757],[-71.415557624,41.620251623],[-71.415484325,41.620275788],[-71.41541769,41.620308259],[-71.415375379,41.620360873],[-71.415335011,41.62041971],[-71.415286291,41.620480026],[-71.415237541,41.620538948],[-71.415176478,41.6205749],[-71.415101297,41.62059346],[-71.415015767,41.620600898],[-71.414970575,41.620643059],[-71.414940419,41.620699776],[-71.414915895,41.620761345],[-71.414909103,41.62082773],[-71.414895704,41.620888553],[-71.414876736,41.620943792],[-71.414842912,41.621008236],[-71.414813647,41.621059373],[-71.414789929,41.621110446],[-71.414756108,41.621173472],[-71.414727785,41.621226691],[-71.414683697,41.62128557],[-71.414647074,41.621346513],[-71.41462341,41.621403212],[-71.414615593,41.621460517],[-71.414629197,41.621521177],[-71.414641803,41.621576279],[-71.414661016,41.621636897],[-71.414717253,41.621679202],[-71.414775379,41.621722171],[-71.414814935,41.621771553],[-71.414858212,41.621819473],[-71.414910459,41.621836641],[-71.414977075,41.621796486],[-71.415023993,41.621741085],[-71.415062611,41.621692676],[-71.415107641,41.621635193],[-71.415147068,41.621574206],[-71.415180918,41.621513284],[-71.415231578,41.621462025],[-71.415277581,41.621405914],[-71.415314258,41.621350574],[-71.415363896,41.621288177],[-71.41540909,41.621245353],[-71.415463631,41.621209419],[-71.415537736,41.62117549],[-71.415621299,41.62115689],[-71.415704082,41.621152948],[-71.415778428,41.621144152],[-71.415855364,41.621113037],[-71.415920173,41.621079146],[-71.41599269,41.621071081],[-71.416068679,41.621041314],[-71.416127776,41.620993537],[-71.416145862,41.620936857],[-71.416124842,41.620882504],[-71.416100105,41.620826799],[-71.416111641,41.620768101],[-71.416117704,41.620722664],[-71.416067528,41.620729923],[-71.416022443,41.62078393],[-71.415971784,41.620835167],[-71.415888248,41.620855871],[-71.415797946,41.620854273],[-71.415726026,41.620825336],[-71.41568733,41.620770421],[-71.415700994,41.620738917],[-71.415776071,41.620707092],[-71.415786122,41.620688872],[-71.415730881,41.620654253],[-71.41576028,41.620616402],[-71.415839155,41.620593614],[-71.415923794,41.620591068],[-71.415998249,41.620592061],[-71.416089411,41.620588742],[-71.416160901,41.620572992],[-71.416219164,41.620533584],[-71.416269824,41.620481662],[-71.416329915,41.620442233],[-71.416400597,41.620438351],[-71.41643827,41.620483522],[-71.416419377,41.620551385],[-71.416391974,41.62060177],[-71.416357129,41.620656425],[-71.416323175,41.62070477],[-71.416292131,41.620765694],[-71.416253488,41.620811291],[-71.416242009,41.620873487],[-71.416296468,41.62092416],[-71.416349957,41.62097067],[-71.416407085,41.621007348],[-71.416473428,41.621036326],[-71.416545211,41.621053393],[-71.416613953,41.621042512],[-71.416660007,41.62099269],[-71.416704227,41.62094776],[-71.416780245,41.620918725],[-71.416845944,41.620879963],[-71.416889112,41.620823187],[-71.41694821,41.620773991],[-71.417017622,41.620738708],[-71.417080465,41.62069226],[-71.417131179,41.620645208],[-71.417193991,41.620598783],[-71.417266266,41.620564873],[-71.417358236,41.620549731],[-71.41744379,41.620546454],[-71.417521965,41.620546007],[-71.417611295,41.620545522],[-71.417684806,41.620545826],[-71.417772384,41.620557232],[-71.417866562,41.620579026],[-71.417935656,41.620601007],[-71.418026088,41.620620739],[-71.418098845,41.620639201],[-71.418180143,41.620675758],[-71.418242822,41.620710313],[-71.418304718,41.620761653],[-71.418347081,41.62081099],[-71.41837268,41.620860429],[-71.418317281,41.620901921],[-71.418268424,41.620951078],[-71.418275351,41.620992957],[-71.418342719,41.621030991],[-71.418421862,41.621036811],[-71.418501734,41.62102031],[-71.418576809,41.620989192],[-71.418657433,41.620956637],[-71.418728817,41.620928307],[-71.418807663,41.620903435],[-71.418878209,41.620886995],[-71.418927632,41.620895789],[-71.418911463,41.62095732],[-71.418888804,41.621017496],[-71.418859622,41.621077691],[-71.418799639,41.621129014],[-71.418736717,41.621165652],[-71.418686947,41.6212141],[-71.418632431,41.621255615],[-71.418564743,41.621277636],[-71.418482175,41.621304632],[-71.418407989,41.621331543],[-71.418372068,41.621370121],[-71.418409664,41.621405527],[-71.418483281,41.621419095],[-71.418557711,41.621416609],[-71.418632921,41.621399442],[-71.418703359,41.621371819],[-71.418774745,41.621342094],[-71.418857335,41.621322096],[-71.418934377,41.621302116],[-71.419017993,41.62128978],[-71.419097168,41.621294936],[-71.419179919,41.621291701],[-71.419248552,41.62126968],[-71.419305894,41.621233769],[-71.419379999,41.621198419],[-71.419451327,41.621165903],[-71.419531977,41.621136847],[-71.419609936,41.621114077],[-71.419685954,41.621084332],[-71.419747929,41.621048378],[-71.41981085,41.62101174],[-71.419844417,41.621002432],[-71.419887893,41.620990365],[-71.41996884,41.620991999],[-71.420039252,41.620960191],[-71.42010654,41.620989831],[-71.420175718,41.621020181],[-71.420222713,41.621070892],[-71.420211375,41.621095286],[-71.420199946,41.621119886],[-71.420117381,41.621145488],[-71.4200381,41.621127755],[-71.419975394,41.621089702],[-71.419902742,41.621083843],[-71.419848175,41.62111836],[-71.419844267,41.621124052],[-71.419811505,41.621171621],[-71.419756047,41.621211718],[-71.419679948,41.62123378],[-71.419617946,41.621266257],[-71.419563541,41.621316829],[-71.419515712,41.621373626],[-71.419467854,41.621429074],[-71.419420968,41.621486558],[-71.419381493,41.621541234],[-71.419324337,41.621598116],[-71.419260609,41.621645251],[-71.419189898,41.621647031],[-71.419120615,41.621604125],[-71.419062379,41.621549288],[-71.418994121,41.621515439],[-71.41890485,41.621516634],[-71.418822122,41.621525472],[-71.418730096,41.621535721],[-71.418649172,41.621539689],[-71.418561567,41.621524807],[-71.4184759,41.621520379],[-71.41840341,41.62153055],[-71.418328202,41.621546322],[-71.418237227,41.621569173],[-71.418153801,41.621599644],[-71.418087994,41.621627933],[-71.41803717,41.621665219],[-71.41810524,41.621679516],[-71.418187055,41.621670014],[-71.418259623,41.621669586],[-71.418337097,41.621694294],[-71.418385063,41.62174782],[-71.418402446,41.621811958],[-71.41840595,41.621885235],[-71.418410343,41.621954326],[-71.418405468,41.622026293],[-71.418390326,41.62209409],[-71.418365859,41.622161287],[-71.418324492,41.622215938],[-71.418279356,41.622262308],[-71.41820835,41.622231933],[-71.418146558,41.622193903],[-71.418081047,41.62215587],[-71.417995137,41.622125621],[-71.417915913,41.622110653],[-71.417831134,41.622101353],[-71.417751828,41.622079434],[-71.417663223,41.622059679],[-71.417571952,41.622050398],[-71.41748076,41.622051636],[-71.417390487,41.622049307],[-71.417309402,41.622035801],[-71.41723581,41.622026418],[-71.417144565,41.622021321],[-71.4170627,41.622021742],[-71.416987354,41.622024958],[-71.416908316,41.62203167],[-71.416834991,41.622050942],[-71.416769214,41.622079229],[-71.416703542,41.622119409],[-71.416645361,41.622165792],[-71.416589068,41.622212885],[-71.41652528,41.622257915],[-71.416465242,41.622302238],[-71.416407033,41.622345854],[-71.416346993,41.622391549],[-71.416292558,41.622439329],[-71.416246532,41.622489151],[-71.416205109,41.622538268],[-71.416180533,41.622593571],[-71.416170831,41.622648794],[-71.416169509,41.622703931],[-71.416166356,41.62276188],[-71.416147491,41.622831824],[-71.416128521,41.622888458],[-71.416109626,41.622957693],[-71.416102725,41.62301429],[-71.416095826,41.623069492],[-71.41609375,41.62314281],[-71.416093372,41.623199389],[-71.416095902,41.623269897],[-71.416097493,41.623335511],[-71.416094307,41.623394878],[-71.41610059,41.623462576],[-71.416103067,41.623526795],[-71.416086978,41.623593928],[-71.416075465,41.623658206],[-71.416088266,41.623729362],[-71.416084277,41.623797122],[-71.41608589,41.623869024],[-71.416095887,41.623939493],[-71.416105885,41.624009961],[-71.416126095,41.624078241],[-71.416145197,41.624131907],[-71.41615611,41.624201003],[-71.416154037,41.624272194],[-71.416140721,41.624340016],[-71.416124658,41.624411334],[-71.416109483,41.624478445],[-71.416095284,41.624546242],[-71.416074531,41.624614104],[-71.416047285,41.624682646],[-71.416020955,41.624749841],[-71.415997319,41.624807935],[-71.41595118,41.62484934],[-71.415902108,41.624873363],[-71.415937166,41.624938773],[-71.415973032,41.62499165],[-71.416002408,41.625043174],[-71.416023399,41.625097527],[-71.41603229,41.625151917],[-71.416036709,41.625222427],[-71.416028891,41.625281127],[-71.416003533,41.625351066],[-71.415980839,41.625411265],[-71.415945184,41.62547708],[-71.415902847,41.625524115],[-71.41584741,41.625566977],[-71.415792945,41.62561199],[-71.415746834,41.625654814],[-71.415683152,41.625708945],[-71.415650273,41.625772658],[-71.415643399,41.625831359],[-71.415636661,41.625903278],[-71.415642801,41.625962606],[-71.415661183,41.626030931],[-71.41568123,41.626084552],[-71.415692115,41.626152253],[-71.415678796,41.626221446],[-71.415643925,41.626269813],[-71.415589376,41.626308491],[-71.415554584,41.626366645],[-71.415532778,41.626422613],[-71.415445387,41.626425888],[-71.415368149,41.626427043],[-71.4152966,41.626436482],[-71.415228902,41.626460605],[-71.415178101,41.626499994],[-71.415147859,41.626550399],[-71.415097304,41.626518573],[-71.415028743,41.626550357],[-71.415010714,41.626608409],[-71.414941129,41.626630427],[-71.414923098,41.626689897],[-71.414892912,41.626744487],[-71.414847741,41.626790124],[-71.414803571,41.62683926],[-71.414741502,41.626871026],[-71.414695446,41.626917325],[-71.414649117,41.626939222],[-71.414638291,41.626920576],[-71.414627343,41.626901677],[-71.414659333,41.626842835],[-71.414704452,41.626790909],[-71.4147096,41.626746889],[-71.414658857,41.626695487],[-71.41459601,41.626646294],[-71.414533355,41.626613795],[-71.414445637,41.626587728],[-71.414375704,41.626573451],[-71.414299276,41.626561319],[-71.414206086,41.626547139],[-71.414128712,41.626535692],[-71.414038274,41.626515248],[-71.413967373,41.62649539],[-71.413892617,41.626462973],[-71.413836403,41.62642419],[-71.413781965,41.626378388],[-71.413721979,41.626333336],[-71.413668543,41.626291033],[-71.413607637,41.626250165],[-71.413540268,41.626210756],[-71.413476669,41.626178279],[-71.413405604,41.626145179],[-71.413336483,41.626116243],[-71.413267333,41.626086552],[-71.413187024,41.62605978],[-71.413117955,41.626037796],[-71.413043307,41.626017248],[-71.412967014,41.626018357],[-71.412883205,41.626010449],[-71.412832008,41.626003527],[-71.412808634,41.626000376],[-71.412734852,41.625970064],[-71.412666592,41.625936211],[-71.41258998,41.625903129],[-71.412511585,41.625881229],[-71.412424004,41.625867738],[-71.412350432,41.625862513],[-71.412267483,41.625849735],[-71.412186419,41.625841074],[-71.412095116,41.625829684],[-71.412003868,41.625823233],[-71.411913453,41.62580974],[-71.411835952,41.625780133],[-71.411761089,41.625739368],[-71.41169922,41.625690814],[-71.411641932,41.625635952],[-71.411595852,41.625587342],[-71.411530291,41.625541621],[-71.411476801,41.625495841],[-71.411427059,41.625450704],[-71.41136338,41.625411274],[-71.41131822,41.625358433],[-71.411290709,41.625305515],[-71.411275249,41.625243458],[-71.411271859,41.625182028],[-71.411272189,41.625119183],[-71.411283673,41.62505701],[-71.411304564,41.625003832],[-71.411338443,41.624947073],[-71.41137887,41.624894504],[-71.411415554,41.624837725],[-71.411454958,41.624774704],[-71.411494417,41.624716509],[-71.41152358,41.624654212],[-71.411554684,41.624598183],[-71.41159603,41.624542093],[-71.411639207,41.624483946],[-71.411659124,41.62442864],[-71.411642691,41.624365188],[-71.411627229,41.624305258],[-71.411596866,41.624242549],[-71.411571132,41.624182634],[-71.411560331,41.624124103],[-71.411557939,41.624067545],[-71.411503561,41.62402524],[-71.411435275,41.623989991],[-71.411378178,41.62395331],[-71.41134981,41.623902496],[-71.411340675,41.623829215],[-71.411316002,41.623774195],[-71.411322852,41.623713413],[-71.411346542,41.623663004],[-71.411389799,41.623612496],[-71.411394817,41.623553816],[-71.411391454,41.623494513],[-71.411393724,41.623440017],[-71.411399683,41.623383443],[-71.411372257,41.623335395],[-71.411291116,41.623318387],[-71.411214557,41.623293674],[-71.411147299,41.623265424],[-71.411124534,41.623218776],[-71.411103676,41.623181871],[-71.411024398,41.623162028],[-71.410952636,41.623151269],[-71.410901035,41.623107549],[-71.4108864,41.623133448],[-71.410892538,41.623191404],[-71.410866149,41.62325368],[-71.410819175,41.623302813],[-71.410755226,41.623328286],[-71.410681787,41.623339161],[-71.410605659,41.623355613],[-71.41052395,41.62337492],[-71.410446849,41.623389291],[-71.410374334,41.6233939],[-71.41029524,41.623395027],[-71.410216064,41.623389156],[-71.410139727,41.623380498],[-71.410065374,41.623391371],[-71.409985473,41.623403681],[-71.409911878,41.623395688],[-71.409840927,41.623370956],[-71.409779167,41.623334271],[-71.409713764,41.623309475],[-71.409628313,41.623323198],[-71.409541861,41.623333467],[-71.409480046,41.623293282],[-71.409424677,41.623241897],[-71.409363805,41.623202467],[-71.409289969,41.623170735],[-71.409232764,41.623124974],[-71.409177499,41.623086898],[-71.409103747,41.623060723],[-71.409037433,41.62303389],[-71.408971144,41.623011174],[-71.408961846,41.623011944],[-71.4089103,41.622973826],[-71.408845765,41.622939264],[-71.408787751,41.622905372],[-71.408739791,41.622852528],[-71.408740309,41.622809236],[-71.408776422,41.622790878],[-71.40884462,41.622821257],[-71.408918269,41.622834099],[-71.408980413,41.622813543],[-71.408996643,41.622758967],[-71.408982989,41.622693435],[-71.408937697,41.622629433],[-71.408899897,41.622569576],[-71.408884465,41.622511704],[-71.408883851,41.622449568],[-71.408885101,41.622384619],[-71.408888155,41.622314778],[-71.408896813,41.622248418],[-71.408919457,41.622184744],[-71.408957113,41.622130116],[-71.40899377,41.622071233],[-71.409014553,41.622008313],[-71.40895274,41.621967442],[-71.408858693,41.621960941],[-71.408776881,41.621967668],[-71.408698894,41.62198485],[-71.408620928,41.622008344],[-71.408546847,41.622043641],[-71.408494211,41.622087211],[-71.408439823,41.622140568],[-71.40839007,41.622192511],[-71.408333797,41.622243076],[-71.408270086,41.62229439],[-71.408207264,41.62234152],[-71.408137921,41.622388004],[-71.408062975,41.622430962],[-71.407987975,41.622469071],[-71.407911111,41.622509991],[-71.40783708,41.622552263],[-71.407760221,41.622590394],[-71.407685219,41.622629189],[-71.407607467,41.622672921],[-71.407523277,41.622721543],[-71.407437146,41.622763919],[-71.407348181,41.622804875],[-71.407262887,41.622837464],[-71.407173821,41.622863784],[-71.407088473,41.622890769],[-71.407002126,41.62291286],[-71.40692058,41.622945429],[-71.406848325,41.622980727],[-71.406774237,41.623019522],[-71.406716024,41.623061051],[-71.406663387,41.623103912],[-71.406606035,41.623139816],[-71.406539465,41.623185569],[-71.406491307,41.623208194],[-71.406485305,41.623164211],[-71.406484855,41.623116734],[-71.406436454,41.623117678],[-71.406380101,41.6231585],[-71.406326599,41.623209043],[-71.40626663,41.623263149],[-71.406205719,41.623315128],[-71.406148501,41.623363633],[-71.406089474,41.623419798],[-71.406032279,41.623473174],[-71.405980691,41.623527218],[-71.405924414,41.623578491],[-71.405860647,41.623624224],[-71.405797851,41.623672724],[-71.405731279,41.623718477],[-71.40566468,41.623762126],[-71.405602745,41.623805047],[-71.405537065,41.623845907],[-71.40547513,41.623888805],[-71.405416969,41.623935205],[-71.405356029,41.623985124],[-71.405291317,41.624030856],[-71.405231325,41.624078627],[-71.405167525,41.624125068],[-71.405097211,41.624165969],[-71.405027839,41.62420822],[-71.404951027,41.624253301],[-71.404878877,41.624298386],[-71.404811389,41.624344823],[-71.404741124,41.624393386],[-71.404677383,41.624441199],[-71.404614552,41.624491093],[-71.404548086,41.62454732],[-71.404486311,41.6246049],[-71.404424561,41.624665979],[-71.404364641,41.62472635],[-71.404306582,41.624785305],[-71.404242942,41.624846382],[-71.404174587,41.624901212],[-71.404109091,41.624959543],[-71.404040765,41.625015745],[-71.403967775,41.625071302],[-71.403899473,41.625131049],[-71.403827428,41.62518727],[-71.403759155,41.625247657],[-71.403698293,41.625305237],[-71.403653299,41.625370446],[-71.403614802,41.625432779],[-71.403575391,41.625494425],[-71.403517275,41.625549903],[-71.403447035,41.625600569],[-71.403380568,41.625656063],[-71.403316874,41.625710873],[-71.403266253,41.625768416],[-71.403233335,41.625829335],[-71.403208743,41.625886694],[-71.403185095,41.625944786],[-71.403167944,41.626000001],[-71.403156397,41.626058034],[-71.403152316,41.626116714],[-71.40315473,41.626173935],[-71.403155279,41.626234677],[-71.40315675,41.626290525],[-71.403170347,41.626349814],[-71.403189524,41.626407667],[-71.40321239,41.626464792],[-71.403237171,41.62652544],[-71.403264701,41.626582545],[-71.403295028,41.626643792],[-71.403321645,41.62670021],[-71.403336129,41.626757419],[-71.403351587,41.626815955],[-71.403368848,41.626871039],[-71.403390825,41.626931662],[-71.403420214,41.626988769],[-71.403456153,41.627048603],[-71.403498586,41.627107047],[-71.403543799,41.62716124],[-71.403586176,41.627216894],[-71.403631363,41.627268296],[-71.403680263,41.627323224],[-71.403734745,41.627375984],[-71.40378548,41.627427368],[-71.403834408,41.627484354],[-71.403883312,41.627537155],[-71.40392755,41.62759137],[-71.403970873,41.627646293],[-71.404015112,41.62770053],[-71.404065954,41.627762389],[-71.404121409,41.627816567],[-71.404175916,41.627873535],[-71.404232312,41.627931167],[-71.404291453,41.627987429],[-71.404346044,41.628049245],[-71.404398691,41.628106943],[-71.404455112,41.628168097],[-71.404509622,41.628223624],[-71.404559471,41.628277134],[-71.404613062,41.628335495],[-71.40467032,41.628387571],[-71.404722965,41.628447327],[-71.40477098,41.628504334],[-71.404822713,41.628562008],[-71.404875392,41.628618974],[-71.404924297,41.62867246],[-71.404971393,41.628732966],[-71.405024959,41.628787828],[-71.405080385,41.628842692],[-71.405128374,41.628897596],[-71.405174505,41.628951103],[-71.405223461,41.629011587],[-71.405271449,41.629067199],[-71.405314803,41.629122808],[-71.405363708,41.629177049],[-71.405409811,41.629229137],[-71.405446667,41.629288994],[-71.405479752,41.629343268],[-71.405512865,41.629398959],[-71.405519642,41.629412504],[-71.405542255,41.629457438],[-71.405566986,41.629513168],[-71.405587105,41.629575207],[-71.405605341,41.629632327],[-71.405624519,41.629691574],[-71.40564553,41.629748056],[-71.405669343,41.629805844],[-71.405694128,41.629866468],[-71.405717,41.629922197],[-71.405739923,41.629984238],[-71.405757217,41.630039276],[-71.405765209,41.630098606],[-71.40577137,41.630158597],[-71.405774728,41.630217946],[-71.405775365,41.630282873],[-71.40577592,41.630341534],[-71.405776527,41.630405752],[-71.405768703,41.630462347],[-71.405750659,41.63052392],[-71.405733511,41.630577763],[-71.40571552,41.63064487],[-71.405699312,41.630701505],[-71.405683078,41.630755395],[-71.405672477,41.63081336],[-71.405663681,41.630867165],[-71.405654103,41.630934279],[-71.405655426,41.630967601],[-71.405656487,41.630992895],[-71.405633787,41.631048861],[-71.405613804,41.631102748],[-71.405598484,41.631156616],[-71.405592518,41.63121319],[-71.405561899,41.631223113],[-71.405506815,41.63120388],[-71.405518553,41.631265248],[-71.405559052,41.631315297],[-71.4056199,41.631353379],[-71.405693665,41.631376012],[-71.405765778,41.631423799],[-71.405821153,41.631473769],[-71.405871971,41.631534254],[-71.405917216,41.631591259],[-71.405966201,41.631654533],[-71.406013329,41.631716434],[-71.406054905,41.631780433],[-71.406096398,41.631839585],[-71.406141615,41.631895172],[-71.406184943,41.63194943],[-71.406221591,41.631986212],[-71.40625743,41.632034907],[-71.406293374,41.632094786],[-71.406326483,41.632154639],[-71.406346083,41.632196598],[-71.406352131,41.632209638],[-71.406377779,41.63226466],[-71.406408089,41.632320372],[-71.406441232,41.632378121],[-71.406476153,41.63242892],[-71.406517649,41.63248663],[-71.406558203,41.632541596],[-71.406592233,41.632597242],[-71.406628177,41.632657829],[-71.406662236,41.632714893],[-71.406697288,41.632780306],[-71.406735096,41.632838059],[-71.406770121,41.632901413],[-71.406803262,41.632961312],[-71.406835514,41.633023977],[-71.40686868,41.633087307],[-71.406903708,41.633149266],[-71.406935042,41.63321472],[-71.406962634,41.633275347],[-71.40699116,41.633342903],[-71.407019667,41.633403507],[-71.407049143,41.633468275],[-71.407073931,41.63352819],[-71.407095938,41.633593706],[-71.407109567,41.633655098],[-71.407118533,41.633716464],[-71.407128442,41.633778563],[-71.407140157,41.633835746],[-71.407153784,41.633899219],[-71.407163612,41.63395432],[-71.40717072,41.634014312],[-71.407176829,41.634069432],[-71.407178304,41.634125304],[-71.407177944,41.634184627],[-71.407160898,41.634252467],[-71.407133534,41.634308475],[-71.407095007,41.634369413],[-71.407095306,41.634400547],[-71.407095509,41.634400503],[-71.407095509,41.634421675],[-71.407095537,41.634424531],[-71.407099783,41.634428777],[-71.40715097,41.634479438],[-71.407190557,41.634530194],[-71.407228204,41.634586333],[-71.407230509,41.634589503],[-71.407233344,41.634594678],[-71.407262396,41.634644325],[-71.407292476,41.634702615],[-71.40729351,41.634704503],[-71.407319509,41.634764503],[-71.407334238,41.634810238],[-71.407338533,41.634823339],[-71.407354964,41.634886815],[-71.407369454,41.634943978],[-71.407377722,41.634980353],[-71.407383509,41.635003503],[-71.407387509,41.635128503],[-71.40739651,41.635196503],[-71.407499509,41.635565503],[-71.407515208,41.635597647],[-71.407525787,41.635619003],[-71.407541929,41.635651034],[-71.407568785,41.635797179],[-71.40758551,41.635886504],[-71.407631346,41.636022021],[-71.40764313,41.636022988],[-71.407655509,41.636023504],[-71.40766151,41.636082504],[-71.407663748,41.63609061],[-71.407678802,41.636143934],[-71.407696178,41.636208074],[-71.407713524,41.636272214],[-71.407714903,41.636275928],[-71.40776151,41.636390503],[-71.407753998,41.636429429],[-71.407750582,41.636447832],[-71.40776451,41.636510504],[-71.40779451,41.636569504],[-71.407807953,41.636607146],[-71.407814626,41.636625673],[-71.407815211,41.636636026],[-71.40781851,41.636685504],[-71.407833449,41.636744266],[-71.407837406,41.636749861],[-71.40785751,41.636777503],[-71.407946509,41.637143503],[-71.407908458,41.6371608],[-71.407902633,41.637163541],[-71.407963487,41.637395006],[-71.40804074,41.637393192],[-71.40818179,41.637934235],[-71.408203098,41.637933234],[-71.40823251,41.637931504],[-71.40826451,41.637979503],[-71.40826551,41.638101504],[-71.40827751,41.638166504],[-71.40829751,41.638233503],[-71.408296798,41.638243945],[-71.408294164,41.638296714],[-71.408289231,41.638354923],[-71.40828851,41.638365503],[-71.408299703,41.6383987],[-71.408311288,41.638432069],[-71.408318595,41.638454731],[-71.408338571,41.638513974],[-71.40834863,41.638542169],[-71.408369647,41.638597919],[-71.408387887,41.638655793],[-71.408402796,41.638704456],[-71.40840551,41.638712504],[-71.408417423,41.638756919],[-71.408422563,41.638775679],[-71.408423495,41.638779558],[-71.40848651,41.639014504],[-71.40851451,41.639135504],[-71.40852351,41.639199504],[-71.408521895,41.639298854],[-71.408521783,41.639322566],[-71.40852981,41.639381164],[-71.408536916,41.639443969],[-71.408537528,41.639506791],[-71.40853551,41.639536533],[-71.40853451,41.639629504],[-71.408535696,41.639642622],[-71.408541117,41.639685519],[-71.408547281,41.639746242],[-71.408551661,41.639817438],[-71.408569905,41.639873185],[-71.408583811,41.639920207],[-71.40859051,41.639941504],[-71.40858551,41.640006504],[-71.408567219,41.640121742],[-71.40856588,41.640132247],[-71.408567653,41.640161429],[-71.40856951,41.640186504],[-71.408583141,41.640272669],[-71.40858893,41.6403039],[-71.40859787,41.640363208],[-71.408598504,41.640428134],[-71.40859851,41.640428504],[-71.408598273,41.640429584],[-71.408588823,41.640487541],[-71.408574504,41.640544864],[-71.408561125,41.640606394],[-71.408548638,41.6406623],[-71.408535257,41.640725203],[-71.408521854,41.640781863],[-71.40850756,41.64084337],[-71.40850751,41.640843504],[-71.40847382,41.640947236],[-71.40846959,41.640960843],[-71.408454378,41.6410245],[-71.408439057,41.641079031],[-71.408422093,41.641132152],[-71.40841951,41.641141504],[-71.408415817,41.641148633],[-71.408394565,41.641195149],[-71.408366256,41.641249762],[-71.408336942,41.641300896],[-71.408304969,41.641363214],[-71.408301061,41.641393556],[-71.40829751,41.641424505],[-71.408299224,41.641522214],[-71.408300118,41.641537795],[-71.408300677,41.641595083],[-71.408308692,41.641632595],[-71.40831551,41.641663504],[-71.40833951,41.641729504],[-71.408353315,41.641783804],[-71.408354639,41.641788876],[-71.40835598,41.641794285],[-71.40836951,41.641847504],[-71.40837651,41.641906504],[-71.40840351,41.641914504],[-71.40857751,41.642029505],[-71.40871451,41.642082504],[-71.40879651,41.642100504],[-71.40886951,41.642069505],[-71.40892951,41.642032504],[-71.40904451,41.641944504],[-71.40910151,41.641886504],[-71.40911351,41.641828504],[-71.409088511,41.641767504],[-71.40902651,41.641714504],[-71.408953511,41.641673504],[-71.408896511,41.641634504],[-71.408837511,41.641575504],[-71.40885151,41.641523505],[-71.40892851,41.641495504],[-71.409111511,41.641480504],[-71.40915951,41.641431504],[-71.409149511,41.641369504],[-71.40911551,41.641302504],[-71.409073511,41.641243504],[-71.409052511,41.641175504],[-71.40906751,41.641113505],[-71.409110511,41.641052504],[-71.40917751,41.641005504],[-71.40925851,41.640986504],[-71.40933451,41.640998504],[-71.40940651,41.641029504],[-71.40958851,41.641156504],[-71.40964051,41.641201504],[-71.40966551,41.641209504],[-71.40972651,41.641256504],[-71.409772511,41.641309505],[-71.409928511,41.641509504],[-71.409984511,41.641553504],[-71.41005551,41.641580505],[-71.41012851,41.641583504],[-71.410211511,41.641574504],[-71.41028851,41.641557504],[-71.410370511,41.641544504],[-71.410450511,41.641547504],[-71.410528511,41.641559504],[-71.410605511,41.641581505],[-71.410672511,41.641610504],[-71.41073251,41.641648504],[-71.410784511,41.641691504],[-71.410826511,41.641740504],[-71.410860511,41.641794505],[-71.410977511,41.642030505],[-71.411033511,41.642074504],[-71.411070511,41.642087505],[-71.411126511,41.642086505],[-71.411184511,41.642051504],[-71.411232511,41.642005504],[-71.411297511,41.641967504],[-71.411384511,41.641949505],[-71.411457511,41.641974504],[-71.411606511,41.642046505],[-71.411688511,41.642081504],[-71.411756511,41.642123504],[-71.411793511,41.642176504],[-71.411777511,41.642231504],[-71.411732511,41.642273504],[-71.411609511,41.642366504],[-71.411553511,41.642418505],[-71.411545511,41.642478505],[-71.411568512,41.642533505],[-71.411604511,41.642592505],[-71.411750511,41.642759504],[-71.411805511,41.642808505],[-71.411871511,41.642875504],[-71.411909511,41.642848505],[-71.412057512,41.642817504],[-71.412217511,41.642802504],[-71.412289512,41.642779504],[-71.412419512,41.642719504],[-71.412481512,41.642674505],[-71.412544512,41.642648504],[-71.412617512,41.642653505]]]]}}"}, +{"type": "precinct", "typeId": 2304, "areaId": 26046, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":385,\"NAME\":\"2304\",\"SHAPE_Length\":0.26399540393676,\"SHAPE_Area\":-0.0010040976917459},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.407095306,41.634400547],[-71.407095509,41.634421675],[-71.407095509,41.634400503],[-71.407095306,41.634400547]]],[[[-71.407095537,41.634424575],[-71.407099783,41.634428777],[-71.407095537,41.634424531],[-71.407095537,41.634424575]]],[[[-71.407230223,41.634589344],[-71.407233344,41.634594678],[-71.407230509,41.634589503],[-71.407228204,41.634586333],[-71.407230223,41.634589344]]],[[[-71.407293647,41.634704885],[-71.407319351,41.634764824],[-71.407334238,41.634810238],[-71.407319509,41.634764503],[-71.40729351,41.634704503],[-71.407292476,41.634702615],[-71.407293647,41.634704885]]],[[[-71.407383086,41.635003952],[-71.407383669,41.635065403],[-71.407387053,41.635128914],[-71.407396101,41.635196592],[-71.407412558,41.635263498],[-71.407427969,41.635316499],[-71.40744817,41.635386908],[-71.407463578,41.635441967],[-71.407480956,41.635504757],[-71.407499221,41.635565376],[-71.407515208,41.635597647],[-71.407499509,41.635565503],[-71.40739651,41.635196503],[-71.407387509,41.635128503],[-71.407383509,41.635003503],[-71.407377722,41.634980353],[-71.407383086,41.635003952]]],[[[-71.407585125,41.635886097],[-71.407631115,41.636022002],[-71.407631346,41.636022021],[-71.40758551,41.635886504],[-71.407568785,41.635797179],[-71.407585125,41.635886097]]],[[[-71.407655317,41.636023988],[-71.407661483,41.636082584],[-71.407663748,41.63609061],[-71.40766151,41.636082504],[-71.407655509,41.636023504],[-71.40764313,41.636022988],[-71.407655317,41.636023988]]],[[[-71.407735511,41.636331463],[-71.407761186,41.636390693],[-71.407753998,41.636429429],[-71.40776151,41.636390503],[-71.407714903,41.636275928],[-71.407735511,41.636331463]]],[[[-71.407750556,41.636447972],[-71.407764185,41.63651076],[-71.407794555,41.636569947],[-71.407807953,41.636607146],[-71.40779451,41.636569504],[-71.40776451,41.636510504],[-71.407750582,41.636447832],[-71.407750556,41.636447972]]],[[[-71.407818016,41.636685685],[-71.407833449,41.636744266],[-71.40781851,41.636685504],[-71.407815211,41.636636026],[-71.407818016,41.636685685]]],[[[-71.407857058,41.636777652],[-71.407946195,41.637143039],[-71.407908458,41.6371608],[-71.407946509,41.637143503],[-71.40785751,41.636777503],[-71.407837406,41.636749861],[-71.407857058,41.636777652]]],[[[-71.408264127,41.63797988],[-71.408263742,41.638036458],[-71.408265297,41.638101386],[-71.408277094,41.638166253],[-71.408297302,41.638233848],[-71.408296798,41.638243945],[-71.40829751,41.638233503],[-71.40827751,41.638166504],[-71.40826551,41.638101504],[-71.40826451,41.637979503],[-71.40823251,41.637931504],[-71.408203098,41.637933234],[-71.408232033,41.637931874],[-71.408264127,41.63797988]]],[[[-71.408288304,41.638365866],[-71.408299703,41.6383987],[-71.40828851,41.638365503],[-71.408289231,41.638354923],[-71.408288304,41.638365866]]],[[[-71.408329499,41.638488548],[-71.408338571,41.638513974],[-71.408318595,41.638454731],[-71.408329499,41.638488548]]],[[[-71.408405184,41.638712248],[-71.408417423,41.638756919],[-71.40840551,41.638712504],[-71.408402796,41.638704456],[-71.408405184,41.638712248]]],[[[-71.40843614,41.638832177],[-71.408452545,41.638894235],[-71.408469869,41.638953481],[-71.408486276,41.639014143],[-71.408500851,41.639076932],[-71.408514457,41.639135511],[-71.408523451,41.639199667],[-71.408522089,41.639257617],[-71.408521895,41.639298854],[-71.40852351,41.639199504],[-71.40851451,41.639135504],[-71.40848651,41.639014504],[-71.408423495,41.638779558],[-71.40843614,41.638832177]]],[[[-71.408533449,41.639566889],[-71.408534062,41.639629689],[-71.408535696,41.639642622],[-71.40853451,41.639629504],[-71.40853551,41.639536533],[-71.408533449,41.639566889]]],[[[-71.408590112,41.639941512],[-71.408585143,41.64000648],[-71.408574512,41.640064492],[-71.408567219,41.640121742],[-71.40858551,41.640006504],[-71.40859051,41.639941504],[-71.408583811,41.639920207],[-71.408590112,41.639941512]]],[[[-71.408569187,41.640186701],[-71.40857716,41.640240405],[-71.408583141,41.640272669],[-71.40856951,41.640186504],[-71.408567653,41.640161429],[-71.408569187,41.640186701]]],[[[-71.408598273,41.640429584],[-71.40859851,41.640428504],[-71.408598504,41.640428134],[-71.408598273,41.640429584]]],[[[-71.408487629,41.640902815],[-71.40847382,41.640947236],[-71.40850751,41.640843504],[-71.408487629,41.640902815]]],[[[-71.408419183,41.641141266],[-71.408415817,41.641148633],[-71.40841951,41.641141504],[-71.408422093,41.641132152],[-71.408419183,41.641141266]]],[[[-71.408297139,41.641424017],[-71.408296756,41.641479178],[-71.408299224,41.641522214],[-71.40829751,41.641424505],[-71.408301061,41.641393556],[-71.408297139,41.641424017]]],[[[-71.445122136,41.641652771],[-71.4450962,41.641714094],[-71.445059232,41.64177125],[-71.445034725,41.641798071],[-71.445059522,41.641771503],[-71.445096522,41.641714503],[-71.445122522,41.641652503],[-71.445130666,41.641627115],[-71.445122136,41.641652771]]],[[[-71.408315275,41.641663406],[-71.408339174,41.641729632],[-71.408353315,41.641783804],[-71.40833951,41.641729504],[-71.40831551,41.641663504],[-71.408308692,41.641632595],[-71.408315275,41.641663406]]],[[[-71.444968852,41.641860009],[-71.444901619,41.641906081],[-71.444838084,41.641940424],[-71.44481068,41.641954632],[-71.444838522,41.641940503],[-71.444901522,41.641906503],[-71.444968522,41.641860503],[-71.444986328,41.641844514],[-71.444968852,41.641860009]]],[[[-71.444711049,41.642004305],[-71.444642522,41.642029504],[-71.444673522,41.642018503],[-71.444711522,41.642004503],[-71.444741714,41.641989407],[-71.444711049,41.642004305]]],[[[-71.444492929,41.642090075],[-71.444470281,41.642099399],[-71.444492522,41.642090503],[-71.444527176,41.64207589],[-71.444492929,41.642090075]]],[[[-71.444228704,41.642219182],[-71.444174341,41.64225904],[-71.444126345,41.642294298],[-71.444174522,41.642259503],[-71.444228522,41.642219503],[-71.444249802,41.642207752],[-71.444228704,41.642219182]]],[[[-71.444061073,41.642336741],[-71.444047299,41.64234633],[-71.444061521,41.642336503],[-71.444096378,41.642314054],[-71.444061073,41.642336741]]],[[[-71.44385935,41.642461166],[-71.443818589,41.64248197],[-71.443859522,41.642461503],[-71.443909979,41.642434637],[-71.44385935,41.642461166]]],[[[-71.443052124,41.642533403],[-71.443028792,41.64253898],[-71.443052521,41.642533504],[-71.443075135,41.642532666],[-71.443052124,41.642533403]]],[[[-71.443223521,41.642533504],[-71.443307521,41.642538503],[-71.443361426,41.642542995],[-71.443307638,41.642538011],[-71.4432231,41.64253303],[-71.443170347,41.642531731],[-71.443223521,41.642533504]]],[[[-71.443471522,41.642549503],[-71.443488354,41.642550127],[-71.443471195,41.642549366],[-71.443446461,41.64254825],[-71.443471522,41.642549503]]],[[[-71.443712066,41.642529131],[-71.44363848,41.642551049],[-71.443594677,41.642552013],[-71.443638522,41.642551504],[-71.443712521,41.642529503],[-71.443761916,41.642508335],[-71.443712066,41.642529131]]],[[[-71.442652252,41.642679983],[-71.442669522,41.642679503],[-71.442704047,41.642677686],[-71.442652252,41.642679983]]],[[[-71.442473514,41.642685356],[-71.442458275,41.642688146],[-71.442473521,41.642685503],[-71.442509387,41.642683418],[-71.442473514,41.642685356]]],[[[-71.442355666,41.642876378],[-71.442384521,41.642854503],[-71.442384536,41.642854195],[-71.442355666,41.642876378]]],[[[-71.442281497,41.642929734],[-71.442283243,41.642954548],[-71.442266042,41.643029368],[-71.442252387,41.643060143],[-71.442203505,41.643104417],[-71.442188664,41.643115048],[-71.442203521,41.643104503],[-71.442252521,41.643060504],[-71.442266521,41.643029503],[-71.442283522,41.642954503],[-71.442281538,41.642929706],[-71.442281497,41.642929734]]],[[[-71.441974703,41.643398974],[-71.441982119,41.643409901],[-71.441974661,41.643398714],[-71.441974703,41.643398974]]],[[[-71.442074188,41.643498735],[-71.442126453,41.64355765],[-71.442146154,41.64358066],[-71.442126522,41.643557503],[-71.442074521,41.643498503],[-71.44203608,41.643469964],[-71.442074188,41.643498735]]],[[[-71.442211314,41.64364638],[-71.442226205,41.64366053],[-71.442211521,41.643646504],[-71.442199236,41.64363502],[-71.442211314,41.64364638]]],[[[-71.442317677,41.643760826],[-71.442355065,41.643818407],[-71.442397144,41.643881571],[-71.442430994,41.64392867],[-71.442397522,41.643881504],[-71.442355521,41.643818504],[-71.442317521,41.643760504],[-71.442303863,41.643742993],[-71.442317677,41.643760826]]],[[[-71.442511336,41.644072404],[-71.442545065,41.64413211],[-71.442582456,41.644186924],[-71.442614301,41.644238968],[-71.442652522,41.644289504],[-71.442614522,41.644238503],[-71.442582521,41.644186504],[-71.442545521,41.644132504],[-71.442511521,41.644072504],[-71.44249137,41.64403283],[-71.442511336,41.644072404]]],[[[-71.442717234,41.644406926],[-71.442724797,41.644453464],[-71.442717521,41.644406504],[-71.442705184,41.644376609],[-71.442717234,41.644406926]]],[[[-71.442733402,41.644526843],[-71.442729522,41.644483504],[-71.442728995,41.644480345],[-71.442733402,41.644526843]]],[[[-71.442737355,41.644683656],[-71.442731231,41.644747641],[-71.442713034,41.644810981],[-71.442692039,41.64486668],[-71.442665517,41.644931456],[-71.442665523,41.6449315],[-71.442692522,41.644866504],[-71.442713522,41.644810504],[-71.442731522,41.644747504],[-71.442737521,41.644683503],[-71.442737521,41.644663936],[-71.442737355,41.644683656]]],[[[-71.442717258,41.645068263],[-71.442720976,41.645072257],[-71.442717521,41.645068504],[-71.442710147,41.645055968],[-71.442717258,41.645068263]]],[[[-71.442843464,41.645254255],[-71.442830522,41.645198504],[-71.442807176,41.645170065],[-71.442830195,41.645198652],[-71.442843464,41.645254255]]],[[[-71.442843464,41.645254255],[-71.442840497,41.645270383],[-71.442843522,41.645254504],[-71.442843464,41.645254255]]],[[[-71.442818235,41.64538087],[-71.442798181,41.645440755],[-71.442783308,41.645470368],[-71.442798521,41.645440504],[-71.442818521,41.645380504],[-71.442823932,41.645354281],[-71.442818235,41.64538087]]],[[[-71.442647375,41.645654737],[-71.442617133,41.645720174],[-71.442594261,41.645746501],[-71.442617521,41.645720504],[-71.442647522,41.645654504],[-71.442647375,41.645654737]]],[[[-71.442571078,41.645773185],[-71.442526819,41.645811111],[-71.442571522,41.645773504],[-71.442579903,41.645763027],[-71.442571078,41.645773185]]],[[[-71.442429744,41.645859172],[-71.442342627,41.645869168],[-71.4423208,41.645880187],[-71.442342522,41.645869504],[-71.442429521,41.645859504],[-71.442460851,41.645846417],[-71.442429744,41.645859172]]],[[[-71.44213549,41.645963034],[-71.442048434,41.645973076],[-71.441960378,41.645976119],[-71.441875069,41.645976373],[-71.441838318,41.645976504],[-71.441875522,41.645976504],[-71.441960521,41.645976504],[-71.442048522,41.645973504],[-71.442135521,41.645963504],[-71.442196336,41.645943233],[-71.44213549,41.645963034]]],[[[-71.441614672,41.645995291],[-71.441585389,41.646002871],[-71.441614521,41.645995504],[-71.441655322,41.645988169],[-71.441614672,41.645995291]]],[[[-71.441443427,41.646047301],[-71.441357361,41.646075409],[-71.441317852,41.64608553],[-71.441357521,41.646075504],[-71.441443521,41.646047505],[-71.441477128,41.646035502],[-71.441443427,41.646047301]]],[[[-71.441176824,41.646118403],[-71.44109351,41.646137456],[-71.441027324,41.646153629],[-71.441093521,41.646137504],[-71.441176521,41.646118504],[-71.441191737,41.646115123],[-71.441176824,41.646118403]]],[[[-71.440859423,41.646225131],[-71.440834611,41.64623979],[-71.440859521,41.646225504],[-71.440893521,41.646206504],[-71.440894658,41.646205864],[-71.440859423,41.646225131]]],[[[-71.440716196,41.646311069],[-71.440645135,41.646366239],[-71.440606035,41.646404442],[-71.440645521,41.646366504],[-71.440716521,41.646311504],[-71.440750767,41.646290043],[-71.440716196,41.646311069]]],[[[-71.440560403,41.646467347],[-71.440588473,41.646512483],[-71.440588515,41.646512495],[-71.440560521,41.646467504],[-71.440584993,41.646430076],[-71.440560403,41.646467347]]],[[[-71.440740127,41.646518761],[-71.440720521,41.646517504],[-71.440630521,41.646518504],[-71.440592297,41.646513044],[-71.440630238,41.646518611],[-71.440720153,41.646517605],[-71.440740127,41.646518761]]],[[[-71.440828953,41.646570123],[-71.440784289,41.646578351],[-71.440837805,41.646569144],[-71.440828953,41.646570123]]],[[[-71.440432418,41.646621443],[-71.44038547,41.646681405],[-71.440389651,41.646699727],[-71.440385521,41.646681504],[-71.440432521,41.646621504],[-71.440516521,41.646589504],[-71.44057982,41.646615568],[-71.440516599,41.646589195],[-71.440432418,41.646621443]]],[[[-71.44042514,41.646809952],[-71.440437525,41.646869716],[-71.440444388,41.646932953],[-71.440450279,41.646992074],[-71.440452455,41.647046298],[-71.440433419,41.647123564],[-71.440427621,41.647130842],[-71.44043352,41.647123504],[-71.44045252,41.647046504],[-71.440450521,41.646992504],[-71.440444521,41.646932504],[-71.440437521,41.646869504],[-71.440425521,41.646809504],[-71.440405941,41.646764386],[-71.44042514,41.646809952]]],[[[-71.440281287,41.647274926],[-71.440221326,41.647327289],[-71.440203494,41.647343922],[-71.440221521,41.647327504],[-71.440328467,41.647234153],[-71.440281287,41.647274926]]],[[[-71.440121772,41.647430492],[-71.440076627,41.647484189],[-71.44003154,41.647542048],[-71.439984101,41.647604274],[-71.439927455,41.64766407],[-71.439899036,41.64768773],[-71.43992752,41.647664505],[-71.43998452,41.647604505],[-71.440076521,41.647484505],[-71.440126621,41.647424834],[-71.440121772,41.647430492]]],[[[-71.439637462,41.647861121],[-71.439553331,41.647903111],[-71.439470114,41.647945101],[-71.439384151,41.647989171],[-71.439355409,41.648004082],[-71.439470521,41.647945504],[-71.439702802,41.647828898],[-71.439637462,41.647861121]]],[[[-71.439215833,41.64806622],[-71.439176203,41.648078568],[-71.439215521,41.648066505],[-71.439236451,41.648057986],[-71.439215833,41.64806622]]],[[[-71.438877184,41.648187614],[-71.438811446,41.648219894],[-71.438790307,41.648230311],[-71.438692267,41.648276501],[-71.438591535,41.648331036],[-71.438494518,41.648391154],[-71.438419243,41.648439484],[-71.43849452,41.648391504],[-71.43859152,41.648331504],[-71.438692521,41.648276504],[-71.438790521,41.648230505],[-71.438897,41.648177899],[-71.438877184,41.648187614]]],[[[-71.4383097,41.648503023],[-71.438264248,41.648526622],[-71.43830952,41.648503505],[-71.438382748,41.648461438],[-71.4383097,41.648503023]]],[[[-71.432796505,41.651331503],[-71.432796931,41.65133123],[-71.43279681,41.651331184],[-71.432796505,41.651331503]]],[[[-71.417207246,41.654355754],[-71.417303792,41.654376315],[-71.417394836,41.654407345],[-71.417484017,41.654440455],[-71.417575059,41.65447359],[-71.417653115,41.65450253],[-71.417727402,41.654522479],[-71.417807168,41.654526447],[-71.417899899,41.65452617],[-71.4180019,41.654525854],[-71.418102015,41.654521352],[-71.418200219,41.654509255],[-71.418299398,41.654497822],[-71.418387416,41.654487136],[-71.418453127,41.65446468],[-71.418527989,41.654415106],[-71.418614839,41.654363369],[-71.418691636,41.654326969],[-71.418777672,41.654291262],[-71.418865594,41.65425901],[-71.418952622,41.654234418],[-71.419039623,41.654207722],[-71.419119166,41.654169952],[-71.419189414,41.654127991],[-71.419250419,41.654088859],[-71.419343914,41.654061458],[-71.41942928,41.65407373],[-71.419526713,41.654092231],[-71.419615824,41.654109331],[-71.41969839,41.65411673],[-71.419783682,41.654115074],[-71.419803383,41.654112893],[-71.419873588,41.654105097],[-71.419964331,41.654084624],[-71.420057855,41.654058641],[-71.420146719,41.654028446],[-71.420234608,41.653997611],[-71.420327167,41.653962525],[-71.420422471,41.653927464],[-71.420515945,41.653892424],[-71.420594518,41.653849072],[-71.420653611,41.65380159],[-71.42071273,41.65375763],[-71.420774597,41.653710837],[-71.420840181,41.653666149],[-71.420906737,41.65362423],[-71.420974229,41.653590636],[-71.421051145,41.653579986],[-71.4211345,41.653565818],[-71.42122247,41.653542597],[-71.421315076,41.653517985],[-71.421409513,41.653492687],[-71.421498424,41.65347292],[-71.421578061,41.653456005],[-71.421663277,41.653440444],[-71.421754173,41.653443639],[-71.421842366,41.65346284],[-71.421921333,41.653495986],[-71.421998492,41.653536083],[-71.422078431,41.653573391],[-71.422151929,41.653615589],[-71.422222648,41.653661284],[-71.422296118,41.653701401],[-71.42236493,41.653735957],[-71.42244395,41.653776741],[-71.422529292,41.653783431],[-71.42262467,41.6537609],[-71.422696699,41.653706451],[-71.422724162,41.653639576],[-71.422747904,41.653572745],[-71.422805035,41.653507217],[-71.422848364,41.653457025],[-71.422886951,41.653395029],[-71.422919047,41.653328844],[-71.422947429,41.653257854],[-71.422965595,41.653187566],[-71.422967078,41.653120079],[-71.422967672,41.6530568],[-71.42297845,41.652993482],[-71.423005934,41.652933628],[-71.423053818,41.652873651],[-71.423109115,41.652810889],[-71.42315512,41.652741214],[-71.423192714,41.652666685],[-71.423235892,41.652589392],[-71.423286476,41.652514803],[-71.423340727,41.652433265],[-71.423394092,41.652353143],[-71.423450254,41.652279953],[-71.423512937,41.652210906],[-71.423574675,41.652141196],[-71.423633662,41.652076354],[-71.423690792,41.652009431],[-71.423750695,41.65194459],[-71.42381343,41.651881787],[-71.423878933,41.651825251],[-71.423947265,41.651774298],[-71.424016567,41.651727461],[-71.424086833,41.6516911],[-71.424173834,41.651659552],[-71.424277535,41.651634898],[-71.424382259,41.651622755],[-71.424486113,41.651624516],[-71.424584437,41.651635352],[-71.424673547,41.651651076],[-71.424756111,41.651658448],[-71.424834854,41.651647797],[-71.424908914,41.651626005],[-71.424977425,41.651603546],[-71.42504219,41.651577632],[-71.425102266,41.651545425],[-71.425170675,41.651505585],[-71.425239029,41.651460874],[-71.425302752,41.65141273],[-71.42537108,41.651363148],[-71.425441327,41.651316357],[-71.425516226,41.651279929],[-71.425608772,41.651251151],[-71.425710616,41.651223705],[-71.425808662,41.651183792],[-71.425901107,41.651136192],[-71.425983367,41.651088654],[-71.426069398,41.651050174],[-71.426171243,41.65102131],[-71.42627581,41.650985541],[-71.426372,41.650942128],[-71.426460806,41.650902232],[-71.426542227,41.650868575],[-71.426618955,41.650832193],[-71.426690087,41.650782612],[-71.426763079,41.650733718],[-71.426833268,41.650682032],[-71.42689971,41.65062689],[-71.42697825,41.650578686],[-71.427076325,41.650539413],[-71.427183692,41.650506435],[-71.427285535,41.650478301],[-71.427373422,41.650441857],[-71.427457513,41.650391506],[-71.427528643,41.650342611],[-71.427593357,41.650305557],[-71.427674877,41.650290721],[-71.427765743,41.650289726],[-71.427864955,41.650295711],[-71.427961422,41.650302335],[-71.428049541,41.650303488],[-71.428133882,41.650302535],[-71.42823025,41.650288301],[-71.428293051,41.650243585],[-71.428333594,41.650198261],[-71.428374113,41.650146715],[-71.428417379,41.650092999],[-71.428473632,41.650040686],[-71.42854196,41.649988358],[-71.4286084,41.649933193],[-71.428673977,41.649887106],[-71.428744293,41.649856276],[-71.428826675,41.649833069],[-71.428910996,41.649821686],[-71.428987927,41.649820041],[-71.429085412,41.649844114],[-71.429174622,41.649877879],[-71.429253465,41.649885291],[-71.429345324,41.649894747],[-71.429437129,41.649898623],[-71.429531684,41.649897652],[-71.429619773,41.649897362],[-71.429695736,41.649888787],[-71.429789201,41.649852345],[-71.429849275,41.649818077],[-71.429913095,41.649787997],[-71.429978797,41.649765534],[-71.430046357,41.649745862],[-71.430138011,41.649719137],[-71.430234504,41.649729967],[-71.430300483,41.64976175],[-71.430356362,41.649800502],[-71.430406627,41.649842772],[-71.430469885,41.649882237],[-71.430546135,41.649918142],[-71.430619578,41.649956173],[-71.430688438,41.650003234],[-71.430748948,41.650045487],[-71.430844653,41.650081335],[-71.430912444,41.650101318],[-71.430979369,41.650133078],[-71.431038073,41.650182283],[-71.4310847,41.650234979],[-71.431126721,41.650288381],[-71.43116691,41.650344595],[-71.431211705,41.650398708],[-71.431262054,41.650448616],[-71.431318846,41.650490844],[-71.431377471,41.650528911],[-71.431449031,41.650561382],[-71.431530777,41.650591047],[-71.431609779,41.650621373],[-71.431681365,41.650658007],[-71.431750258,41.650704404],[-71.431827415,41.650750074],[-71.431905525,41.650787352],[-71.431977112,41.650823299],[-71.432038514,41.650860658],[-71.432118531,41.650911864],[-71.432203159,41.650957516],[-71.432278491,41.650999022],[-71.432336175,41.651034298],[-71.432350438,41.651098935],[-71.432347971,41.651155238],[-71.432362793,41.651152411],[-71.432416376,41.651114708],[-71.432471762,41.651072821],[-71.432536447,41.651032266],[-71.432600189,41.650988966],[-71.432677858,41.650953266],[-71.432737169,41.650948887],[-71.432777156,41.65096684],[-71.432801959,41.650924341],[-71.432793271,41.650863892],[-71.432788276,41.6507999],[-71.432798996,41.650724758],[-71.432839355,41.650648146],[-71.432875235,41.65059726],[-71.432911142,41.650549873],[-71.432950713,41.650497616],[-71.432993063,41.650441817],[-71.433039101,41.650386752],[-71.433091637,41.650328877],[-71.433146919,41.6502689],[-71.433199431,41.650204073],[-71.433247304,41.650143405],[-71.43329984,41.650084822],[-71.43335512,41.650026925],[-71.433409515,41.649969075],[-71.433472237,41.649908347],[-71.433537729,41.649851829],[-71.433603277,41.649800159],[-71.433667934,41.649755441],[-71.433732617,41.649714908],[-71.433798213,41.649675062],[-71.433860146,41.649640084],[-71.433926736,41.649612771],[-71.434001735,41.64959166],[-71.434083227,41.649571947],[-71.434173042,41.649553589],[-71.4342703,41.649532422],[-71.434362918,41.649516123],[-71.434453698,41.649508216],[-71.434539954,41.649511422],[-71.434619737,41.649522993],[-71.434693033,41.649526923],[-71.434800498,41.649513399],[-71.434869919,41.649489517],[-71.434932791,41.649459434],[-71.43499289,41.649427954],[-71.43505296,41.649395056],[-71.435114891,41.649360787],[-71.435182373,41.649325103],[-71.435251715,41.649289443],[-71.435314563,41.649252384],[-71.435372773,41.649218822],[-71.435444027,41.64919215],[-71.43552088,41.649175933],[-71.435593153,41.64916598],[-71.435682968,41.649146934],[-71.435768257,41.649140373],[-71.435849925,41.649158188],[-71.435923321,41.649184414],[-71.435993837,41.649193899],[-71.436062108,41.649129742],[-71.436092381,41.649072586],[-71.436111474,41.649005795],[-71.436153738,41.648939589],[-71.436222163,41.648905277],[-71.436326773,41.648878532],[-71.43640541,41.648845643],[-71.436485851,41.648807816],[-71.436561658,41.648769323],[-71.436633777,41.648730165],[-71.436704949,41.648691692],[-71.436775204,41.648656009],[-71.436843628,41.648621696],[-71.43691019,41.648589487],[-71.436973948,41.64855595],[-71.43703957,41.648518846],[-71.43711077,41.648482454],[-71.437188436,41.648443962],[-71.437266992,41.648399912],[-71.437342773,41.648355884],[-71.43741392,41.648311145],[-71.437477629,41.648265029],[-71.43753649,41.648219185],[-71.43753948,41.648216854],[-71.437601358,41.648172155],[-71.437667869,41.648128122],[-71.43773993,41.648084092],[-71.437813877,41.648043516],[-71.437885964,41.648004379],[-71.43795436,41.647965927],[-71.438019091,41.647934402],[-71.438109715,41.647895207],[-71.438188377,41.647866411],[-71.438269104,41.647878004],[-71.438343414,41.647904869],[-71.43839906,41.647903321],[-71.438469443,41.647891284],[-71.438538835,41.647863215],[-71.438584918,41.647818553],[-71.438594791,41.647760104],[-71.438589764,41.647691973],[-71.438589454,41.647633564],[-71.438596627,41.647593204],[-71.438640801,41.647535345],[-71.438698042,41.647491352],[-71.438762692,41.64744734],[-71.438813438,41.647404052],[-71.438869737,41.647356628],[-71.43892881,41.647309114],[-71.4389888,41.647260251],[-71.439047843,41.64721276],[-71.439111552,41.647163213],[-71.439180783,41.647110833],[-71.439252817,41.647060559],[-71.43932485,41.64701097],[-71.439388558,41.646962772],[-71.439450433,41.646918758],[-71.439513223,41.646874059],[-71.439567688,41.646830041],[-71.439609138,41.646782632],[-71.43964218,41.646726916],[-71.439680803,41.646669763],[-71.439725918,41.646613963],[-71.439773838,41.646558895],[-71.43982267,41.646506573],[-71.439872445,41.646457041],[-71.439923161,41.646411672],[-71.439974878,41.64637186],[-71.439985282,41.64636441],[-71.440050573,41.646317379],[-71.440119861,41.646267789],[-71.440179818,41.646218239],[-71.440183222,41.646163972],[-71.440152352,41.646114695],[-71.440166882,41.646062515],[-71.440250121,41.64602679],[-71.440318592,41.646002927],[-71.440392639,41.645982521],[-71.440467604,41.645958615],[-71.440545288,41.645928468],[-71.440627614,41.645889975],[-71.440708936,41.645848669],[-71.440784738,41.645810174],[-71.440853132,41.645769639],[-71.440916863,41.64572702],[-71.440974099,41.645685107],[-71.441047049,41.645629938],[-71.441121908,41.645587965],[-71.44120792,41.645551532],[-71.441299482,41.645515102],[-71.441372533,41.645482848],[-71.44144564,41.645455511],[-71.441514187,41.645446924],[-71.441513325,41.645456002],[-71.441515471,41.645510204],[-71.441551791,41.645536522],[-71.44162966,41.645536973],[-71.441708475,41.645536007],[-71.441803887,41.645523912],[-71.44187427,41.645508373],[-71.441944622,41.645492858],[-71.442040929,41.645468207],[-71.442122332,41.645437329],[-71.442187003,41.645399581],[-71.442246152,41.645364667],[-71.442266257,41.645316605],[-71.442262198,41.645252615],[-71.442260886,41.645185195],[-71.44225117,41.645105948],[-71.442229488,41.645042703],[-71.442176409,41.645005331],[-71.442103149,41.644999988],[-71.442039834,41.644954309],[-71.442025668,41.644908448],[-71.44205685,41.644848546],[-71.442104816,41.644806674],[-71.442150926,41.644760615],[-71.442152495,41.644710555],[-71.442110466,41.644659924],[-71.442086062,41.644606443],[-71.442107977,41.644545187],[-71.442140048,41.644480414],[-71.442158273,41.644421237],[-71.44213753,41.644364282],[-71.442082467,41.644297681],[-71.44204324,41.644249842],[-71.442004045,41.644200584],[-71.441951727,41.644132613],[-71.441921771,41.644082651],[-71.441890872,41.644030561],[-71.441851677,41.643982036],[-71.441807846,41.643936252],[-71.441750892,41.643870405],[-71.441700489,41.643808678],[-71.44165386,41.643754568],[-71.441610003,41.643703249],[-71.44157536,41.643644961],[-71.441549986,41.643586631],[-71.44151723,41.643531773],[-71.44148636,41.643481834],[-71.441455594,41.643452042],[-71.441439457,41.643394357],[-71.441410998,41.643342132],[-71.44139925,41.643285661],[-71.441407104,41.643231831],[-71.441426975,41.64317238],[-71.441437575,41.643115761],[-71.441444454,41.643060558],[-71.441459689,41.643003209],[-71.441485225,41.642950714],[-71.441525639,41.642897403],[-71.441575383,41.642843365],[-71.441623234,41.642792139],[-71.441667454,41.642745096],[-71.441715363,41.642697324],[-71.441767993,41.642653761],[-71.44182712,41.642608052],[-71.441879721,41.642563049],[-71.441888557,41.642535565],[-71.441896842,41.642509909],[-71.441931676,41.642456641],[-71.441983306,41.642406789],[-71.442056535,41.642376341],[-71.442135455,41.642356347],[-71.442211656,41.642342618],[-71.442291631,41.642335866],[-71.442360335,41.642318726],[-71.442371467,41.642313769],[-71.442401215,41.642322588],[-71.442473889,41.642297903],[-71.442552114,41.642270453],[-71.44261843,41.642230579],[-71.442683833,41.642187983],[-71.442740945,41.642143965],[-71.44280543,41.642105462],[-71.442868928,41.6420794],[-71.442949016,41.642047834],[-71.443020737,41.642031449],[-71.443111784,41.642018482],[-71.443206448,41.642018666],[-71.443295556,41.642026417],[-71.443385681,41.642021773],[-71.443472133,41.641998512],[-71.443555838,41.641979365],[-71.443630291,41.641976726],[-71.44365133,41.642009188],[-71.443632745,41.642064317],[-71.44364175,41.642121541],[-71.443704128,41.642156127],[-71.443790573,41.642141807],[-71.44385593,41.642116431],[-71.443919466,41.642081381],[-71.443989399,41.64205189],[-71.444063056,41.642017576],[-71.444141277,41.641993601],[-71.444208435,41.641966122],[-71.444282088,41.641935925],[-71.444361123,41.641922973],[-71.44444109,41.641923835],[-71.444520194,41.641901919],[-71.444578249,41.6418579],[-71.444628081,41.641804204],[-71.444667756,41.641755351],[-71.444700084,41.641706449],[-71.44473245,41.641648605],[-71.444769422,41.641588019],[-71.444809136,41.641530155],[-71.44484516,41.641472313],[-71.444865571,41.64141858],[-71.444890552,41.641369674],[-71.444925537,41.641349749],[-71.444999949,41.641358841],[-71.445047652,41.641369498],[-71.445078012,41.641376236],[-71.445084244,41.641381758],[-71.445130258,41.641422526],[-71.445151217,41.641477719],[-71.445152007,41.641505133],[-71.445151523,41.641477503],[-71.445130522,41.641422503],[-71.445084522,41.641381503],[-71.444992522,41.641149503],[-71.444943522,41.641102503],[-71.444900522,41.641045503],[-71.444868522,41.640989503],[-71.444845522,41.640944503],[-71.444838522,41.640931503],[-71.444813522,41.640879503],[-71.444794522,41.640817503],[-71.444782522,41.640761503],[-71.444804522,41.640702503],[-71.444830522,41.640649503],[-71.444837522,41.640588503],[-71.444863522,41.640529503],[-71.444911522,41.640478503],[-71.444962522,41.640437503],[-71.445013522,41.640398503],[-71.445067522,41.640355503],[-71.445111522,41.640310503],[-71.445154522,41.640259503],[-71.445208522,41.640210503],[-71.445266522,41.640161503],[-71.445341522,41.640117503],[-71.445410522,41.640081502],[-71.445471522,41.640031503],[-71.445545522,41.639996503],[-71.445623522,41.639997503],[-71.445715523,41.639999503],[-71.445792523,41.639998503],[-71.445864522,41.639989503],[-71.445885522,41.639925502],[-71.445889523,41.639869502],[-71.445899522,41.639815503],[-71.445908523,41.639753503],[-71.445903522,41.639698503],[-71.445899522,41.639643503],[-71.445878522,41.639580503],[-71.445891523,41.639516502],[-71.445911523,41.639450503],[-71.445932522,41.639386503],[-71.445946522,41.639327503],[-71.445956522,41.639270503],[-71.445958522,41.639208502],[-71.445958522,41.639167502],[-71.445958522,41.639144503],[-71.445965522,41.639082503],[-71.445978522,41.639021503],[-71.445991522,41.638965503],[-71.446015522,41.638910503],[-71.446054522,41.638863503],[-71.446100522,41.638818502],[-71.446151522,41.638778502],[-71.446231522,41.638751503],[-71.446276522,41.638771503],[-71.446277523,41.638845503],[-71.446251522,41.638901503],[-71.446244522,41.638915502],[-71.446223523,41.638960503],[-71.446200523,41.639021503],[-71.446194522,41.639083503],[-71.446201523,41.639148502],[-71.446250522,41.639120503],[-71.446319523,41.639104503],[-71.446379523,41.639074503],[-71.446448522,41.639055503],[-71.446525522,41.639032502],[-71.446591523,41.639008503],[-71.446662522,41.638976502],[-71.446733522,41.638962503],[-71.446802523,41.638945503],[-71.446809523,41.638944503],[-71.446885523,41.638931502],[-71.446961523,41.638895502],[-71.447013523,41.638850503],[-71.447058523,41.638798502],[-71.447094523,41.638723502],[-71.447071523,41.638688503],[-71.447002523,41.638658502],[-71.446941523,41.638599502],[-71.446908522,41.638537503],[-71.446905523,41.638475503],[-71.446909522,41.638418503],[-71.446942523,41.638358503],[-71.446988522,41.638306502],[-71.447060523,41.638258502],[-71.447121523,41.638224503],[-71.447185522,41.638181503],[-71.447255523,41.638136502],[-71.447327523,41.638094502],[-71.447399522,41.638056502],[-71.447475522,41.638026503],[-71.447540523,41.637999502],[-71.447611522,41.637970503],[-71.447675523,41.637933503],[-71.447742523,41.637880502],[-71.447809523,41.637810502],[-71.447872523,41.637732502],[-71.447937523,41.637665502],[-71.447971523,41.637603503],[-71.447953523,41.637539502],[-71.447930523,41.637463503],[-71.447920523,41.637389503],[-71.447930523,41.637319502],[-71.447964523,41.637258502],[-71.448019522,41.637208502],[-71.448086523,41.637170502],[-71.448164523,41.637133503],[-71.448247523,41.637095503],[-71.448338523,41.637053502],[-71.448439523,41.637009502],[-71.448540523,41.636964502],[-71.448639523,41.636928502],[-71.448731523,41.636908502],[-71.448825523,41.636915502],[-71.448916523,41.636933502],[-71.448996523,41.636951502],[-71.449102523,41.636948502],[-71.449159523,41.636911502],[-71.449206524,41.636860502],[-71.449248523,41.636802502],[-71.449286524,41.636738502],[-71.449311523,41.636669502],[-71.449339523,41.636589502],[-71.449368523,41.636507502],[-71.449388523,41.636427502],[-71.449397523,41.636350502],[-71.449385523,41.636276502],[-71.449345523,41.636212502],[-71.449283523,41.636159502],[-71.449205523,41.636110502],[-71.449133523,41.636057502],[-71.449060523,41.636004502],[-71.448982523,41.635949502],[-71.448912523,41.635891502],[-71.448855523,41.635833502],[-71.448818523,41.635781502],[-71.448797523,41.635727502],[-71.448794523,41.635669502],[-71.448817523,41.635614502],[-71.448861523,41.635561502],[-71.448915523,41.635521502],[-71.448984523,41.635493502],[-71.449059523,41.635488502],[-71.449123523,41.635458502],[-71.449201523,41.635414502],[-71.449268523,41.635370502],[-71.449344524,41.635315502],[-71.449424523,41.635254502],[-71.449491523,41.635188501],[-71.449531523,41.635111501],[-71.449558524,41.635032501],[-71.449570523,41.634959502],[-71.449575523,41.634888502],[-71.449567523,41.634818501],[-71.449542523,41.634750502],[-71.449518524,41.634695502],[-71.449475523,41.634634502],[-71.449414523,41.634583501],[-71.449335523,41.634540502],[-71.449272523,41.634509501],[-71.449195523,41.634479502],[-71.449118523,41.634449501],[-71.449041523,41.634424502],[-71.448971523,41.634401502],[-71.448880523,41.634360502],[-71.448810523,41.634304502],[-71.448765523,41.634259502],[-71.448705523,41.634193501],[-71.448651523,41.634121502],[-71.448609523,41.634041501],[-71.448572523,41.633965501],[-71.448549523,41.633894502],[-71.448543523,41.633824501],[-71.448535523,41.633750501],[-71.448522523,41.633666501],[-71.448502523,41.633569501],[-71.448473523,41.633472501],[-71.448447523,41.633385502],[-71.448444523,41.633308502],[-71.448488522,41.633244501],[-71.448558523,41.633185501],[-71.448640523,41.633127501],[-71.448711523,41.633066501],[-71.448739523,41.632996502],[-71.448732523,41.632914501],[-71.448736523,41.632825502],[-71.448770523,41.632741501],[-71.448812523,41.632668502],[-71.448849523,41.632597501],[-71.448888523,41.632533502],[-71.448941523,41.632481501],[-71.449010523,41.632425501],[-71.449093523,41.632370501],[-71.449186523,41.632320501],[-71.449277523,41.632264501],[-71.449320523,41.632203501],[-71.449332523,41.632187501],[-71.449339523,41.632096501],[-71.449339523,41.632013501],[-71.449346523,41.631944501],[-71.449371523,41.631877501],[-71.449402523,41.631826501],[-71.449412523,41.631810501],[-71.449464523,41.631746501],[-71.449524523,41.631687501],[-71.449575523,41.631629501],[-71.449606523,41.631565501],[-71.449628523,41.631503501],[-71.449649523,41.631444501],[-71.449659523,41.631370501],[-71.449659523,41.631314501],[-71.449661523,41.631239501],[-71.449684523,41.631185501],[-71.449718523,41.631126501],[-71.449753523,41.631060501],[-71.449782523,41.630996501],[-71.449808523,41.630940501],[-71.449854523,41.630893501],[-71.449915523,41.630853501],[-71.449985523,41.630821501],[-71.450055523,41.630792501],[-71.450126523,41.630762501],[-71.450199523,41.630725501],[-71.450276523,41.630685501],[-71.450299524,41.630675501],[-71.450359523,41.630650501],[-71.450393523,41.630639501],[-71.450453524,41.630620501],[-71.450551524,41.630596501],[-71.450641523,41.630580501],[-71.450731523,41.630577501],[-71.450821524,41.630577501],[-71.450906523,41.630578501],[-71.450978524,41.630573501],[-71.451075524,41.630544501],[-71.451143523,41.630509501],[-71.451219523,41.6304695],[-71.451307524,41.630436501],[-71.451414523,41.630420501],[-71.451505524,41.630394501],[-71.451535523,41.630347501],[-71.451534523,41.630270501],[-71.451512523,41.6301945],[-71.451478523,41.630143501],[-71.451432523,41.630085501],[-71.451384524,41.6300225],[-71.451339523,41.629959501],[-71.451305524,41.629896501],[-71.451285523,41.629836501],[-71.451281523,41.629815501],[-71.451272524,41.629775501],[-71.451267524,41.6297125],[-71.451271524,41.6296485],[-71.451287524,41.629583501],[-71.451313524,41.629504501],[-71.451366524,41.629463501],[-71.451539524,41.6294345],[-71.451614523,41.6294335],[-71.451697524,41.6294185],[-71.451782524,41.629405501],[-71.451858524,41.629405501],[-71.451930524,41.629405501],[-71.452008524,41.629405501],[-71.452097523,41.629405501],[-71.452189524,41.629407501],[-71.452270523,41.6294215],[-71.452340524,41.629441501],[-71.452351524,41.629447501],[-71.452426523,41.629486501],[-71.452507524,41.6295375],[-71.452587524,41.629587501],[-71.452643524,41.629626501],[-71.452713524,41.6296705],[-71.452788524,41.629716501],[-71.452848524,41.6297665],[-71.452928524,41.629811501],[-71.453000524,41.629842501],[-71.453056524,41.629856501],[-71.453073524,41.629860501],[-71.453110524,41.6298675],[-71.453241524,41.629889501],[-71.453264525,41.629897501],[-71.453404524,41.6299605],[-71.453668524,41.630026501],[-71.453892524,41.6300575],[-71.453910524,41.630056501],[-71.453943525,41.630108501],[-71.453955524,41.630127501],[-71.453963525,41.6301405],[-71.453972524,41.630153501],[-71.454207524,41.630496501],[-71.454330525,41.630676501],[-71.454404525,41.631210501],[-71.454388525,41.631242501],[-71.454231525,41.631560501],[-71.454084524,41.631929501],[-71.454059525,41.632316501],[-71.454170525,41.632734501],[-71.454230525,41.632961502],[-71.454672525,41.633716501],[-71.455236525,41.634638502],[-71.455580525,41.635117502],[-71.455997525,41.635412502],[-71.456513526,41.635615501],[-71.457299526,41.635800502],[-71.457497525,41.635859502],[-71.457667526,41.635910501],[-71.457878526,41.636077502],[-71.458191526,41.636318501],[-71.458255526,41.636332502],[-71.458324526,41.636374502],[-71.458337526,41.636470502],[-71.458337526,41.636543502],[-71.458337526,41.636597502],[-71.458337526,41.636664502],[-71.458341526,41.636735502],[-71.458351526,41.636803502],[-71.458367526,41.636867502],[-71.458384526,41.636929502],[-71.458411527,41.636990502],[-71.458445526,41.637055502],[-71.458485526,41.637121502],[-71.458501526,41.637147502],[-71.458525526,41.637185502],[-71.458569526,41.637250502],[-71.458620526,41.637312501],[-71.458673526,41.637377502],[-71.458722527,41.637445502],[-71.458768526,41.637512502],[-71.458820527,41.637571502],[-71.458870526,41.637631502],[-71.458921526,41.637694502],[-71.458969526,41.637762502],[-71.459009527,41.637831502],[-71.459035527,41.637875502],[-71.459047526,41.637895502],[-71.459123526,41.637954502],[-71.459194526,41.637975502],[-71.459279526,41.637992502],[-71.459370526,41.638009502],[-71.459464527,41.638027502],[-71.459560527,41.638049502],[-71.459650527,41.638071502],[-71.459724526,41.638089502],[-71.459818526,41.638106502],[-71.459902527,41.638117502],[-71.459975526,41.638121502],[-71.460069527,41.638121502],[-71.460153527,41.638124502],[-71.460252527,41.638126502],[-71.460360527,41.638128502],[-71.460461527,41.638126502],[-71.460552527,41.638108502],[-71.460635527,41.638070502],[-71.460719527,41.638029502],[-71.460798527,41.637995502],[-71.460868527,41.637961502],[-71.460932527,41.637926502],[-71.461003527,41.637896502],[-71.461108527,41.637888502],[-71.461187527,41.637927502],[-71.461254527,41.637987502],[-71.461295527,41.638032502],[-71.461351527,41.638093502],[-71.461433528,41.638138502],[-71.461501527,41.638165502],[-71.461577527,41.638195502],[-71.461649528,41.638223502],[-71.461741527,41.638251502],[-71.461835527,41.638272502],[-71.461932527,41.638295502],[-71.462023527,41.638319502],[-71.462108527,41.638341502],[-71.462173528,41.638356502],[-71.462181527,41.638358502],[-71.462212528,41.638365502],[-71.462247528,41.638371502],[-71.462354527,41.638388502],[-71.462466528,41.638335502],[-71.462525528,41.638263502],[-71.462531527,41.638235502],[-71.462557528,41.638181502],[-71.462594528,41.638128502],[-71.462629527,41.638074502],[-71.462665527,41.638005502],[-71.462691528,41.637952502],[-71.462731528,41.637884502],[-71.462758528,41.637828502],[-71.462788528,41.637764502],[-71.462830528,41.637693502],[-71.462862527,41.637641502],[-71.462892528,41.637591502],[-71.462915528,41.637537502],[-71.462935528,41.637476502],[-71.462963528,41.637409501],[-71.463002528,41.637339502],[-71.463032528,41.637296502],[-71.463045528,41.637277502],[-71.463089528,41.637213502],[-71.463126528,41.637147502],[-71.463160528,41.637082501],[-71.463188528,41.637018502],[-71.463212527,41.636951502],[-71.463222528,41.636918502],[-71.463231527,41.636889502],[-71.463251527,41.636825501],[-71.463273528,41.636761502],[-71.463297528,41.636699502],[-71.463320528,41.636648502],[-71.463373528,41.636590501],[-71.463436528,41.636552501],[-71.463524527,41.636546502],[-71.463600528,41.636554501],[-71.463682528,41.636568502],[-71.463769528,41.636578502],[-71.463851528,41.636582502],[-71.463949528,41.636584502],[-71.464022528,41.636578502],[-71.464095528,41.636559502],[-71.464159528,41.636530502],[-71.464239528,41.636489502],[-71.464312528,41.636457501],[-71.464385528,41.636407502],[-71.464455528,41.636366502],[-71.464512528,41.636335502],[-71.464576528,41.636304501],[-71.464649528,41.636276502],[-71.464726528,41.636254502],[-71.464799528,41.636243501],[-71.464897528,41.636210502],[-71.464958528,41.636175502],[-71.465019529,41.636141502],[-71.465083528,41.636112501],[-71.465146528,41.636072501],[-71.465217529,41.636021502],[-71.465287528,41.635969501],[-71.465345528,41.635920502],[-71.465395528,41.635871501],[-71.465448529,41.635804502],[-71.465511529,41.635768502],[-71.465586529,41.635739501],[-71.465666529,41.635721501],[-71.465742529,41.635691502],[-71.465814529,41.635654501],[-71.465882528,41.635616501],[-71.465966528,41.635585501],[-71.466065529,41.635555502],[-71.466163529,41.635532502],[-71.466246529,41.635496502],[-71.466308529,41.635446501],[-71.466325529,41.635383501],[-71.466350528,41.635318502],[-71.466390528,41.635253501],[-71.466433529,41.635187501],[-71.466472529,41.635126502],[-71.466511529,41.635071501],[-71.466563529,41.635026502],[-71.466693529,41.634950502],[-71.466750529,41.634904501],[-71.466799528,41.634850501],[-71.466846529,41.634791501],[-71.466902529,41.634732501],[-71.466952529,41.634667501],[-71.466997529,41.634604501],[-71.467048529,41.634548501],[-71.467109529,41.634505501],[-71.467198529,41.634478501],[-71.467284529,41.634435501],[-71.467326529,41.634385501],[-71.467388529,41.634317501],[-71.467457529,41.634286501],[-71.467542529,41.634256501],[-71.467611529,41.634239501],[-71.467650529,41.634230501],[-71.467743529,41.634205501],[-71.467834529,41.634175501],[-71.467855529,41.634171501],[-71.46792853,41.634156501],[-71.468008529,41.634152501],[-71.468077529,41.634173501],[-71.46814153,41.634215501],[-71.468203529,41.634250501],[-71.468266529,41.634299501],[-71.46833553,41.634353501],[-71.468372529,41.634382501],[-71.468403529,41.634405501],[-71.468464529,41.634450501],[-71.46855253,41.634499501],[-71.468614529,41.634525501],[-71.46870253,41.634553501],[-71.46878753,41.634577501],[-71.468870529,41.634593501],[-71.46896153,41.634601501],[-71.46903453,41.634604501],[-71.469121529,41.634604501],[-71.46921653,41.634604501],[-71.46930553,41.634596501],[-71.46938753,41.634581502],[-71.46946153,41.634574501],[-71.46956753,41.634571501],[-71.469666529,41.634544501],[-71.469727529,41.634507501],[-71.46978753,41.634461501],[-71.46980653,41.634446501],[-71.46984553,41.634415501],[-71.46990553,41.634364501],[-71.46996453,41.634313501],[-71.470017529,41.634263501],[-71.47005853,41.634215501],[-71.47011053,41.634154501],[-71.47021353,41.634019501],[-71.47026953,41.633956501],[-71.47038053,41.633808501],[-71.47042753,41.633736501],[-71.47047553,41.633669501],[-71.47053053,41.633606501],[-71.47059053,41.633546501],[-71.47065253,41.633484501],[-71.47072253,41.633425501],[-71.47080753,41.633370501],[-71.47090353,41.633327501],[-71.47099953,41.633291501],[-71.47108153,41.6332575],[-71.47113453,41.633216501],[-71.47118253,41.633173501],[-71.47123953,41.633128501],[-71.471302531,41.633088501],[-71.47137353,41.633058501],[-71.47144553,41.633035501],[-71.47152153,41.633010501],[-71.471612531,41.6329835],[-71.47171853,41.632953501],[-71.47182353,41.632922501],[-71.47191753,41.6328885],[-71.472002531,41.6328485],[-71.472077531,41.632804501],[-71.472135531,41.6327555],[-71.472177531,41.6326965],[-71.47221053,41.6326325],[-71.47222953,41.632565501],[-71.472238531,41.6324965],[-71.47224253,41.632357501],[-71.47226753,41.6323055],[-71.47233753,41.6322505],[-71.472394531,41.6322075],[-71.47245453,41.6321515],[-71.472523531,41.6320945],[-71.47253553,41.6320855],[-71.47196153,41.6305575],[-71.47174453,41.629998501],[-71.47132053,41.6290845],[-71.47191053,41.6286865],[-71.476302531,41.626045499],[-71.47301153,41.623388498],[-71.47278053,41.622681499],[-71.47258053,41.622009498],[-71.47273753,41.619763498],[-71.47329553,41.617156498],[-71.47333053,41.616994497],[-71.47355853,41.616036497],[-71.47359553,41.615881497],[-71.47375253,41.615223497],[-71.47415953,41.614079497],[-71.47406853,41.613900497],[-71.47399153,41.613709497],[-71.47394653,41.613556497],[-71.47393053,41.613476497],[-71.47393053,41.613434497],[-71.47391553,41.613263497],[-71.47391553,41.613057497],[-71.47393053,41.612854497],[-71.47393053,41.612778497],[-71.47393853,41.612702496],[-71.47392353,41.612530496],[-71.47390753,41.612435497],[-71.47386253,41.612255496],[-71.47379353,41.612091497],[-71.47369453,41.611821497],[-71.47356453,41.611527497],[-71.473488529,41.611370497],[-71.47334353,41.611100497],[-71.47319053,41.610882497],[-71.47305353,41.610730497],[-71.472984529,41.610661496],[-71.472923529,41.610608496],[-71.47289353,41.610588496],[-71.47285553,41.610554497],[-71.472786529,41.610505496],[-71.472694529,41.610447496],[-71.472504529,41.610344496],[-71.472282529,41.610237496],[-71.471970529,41.610104497],[-71.471863529,41.610066497],[-71.471535529,41.609929497],[-71.471291529,41.609826496],[-71.470606528,41.609550496],[-71.470247529,41.609408496],[-71.469429529,41.609085496],[-71.468910528,41.608887496],[-71.468498528,41.608738496],[-71.468155528,41.608624496],[-71.467659527,41.608475496],[-71.467316528,41.608380496],[-71.466858527,41.608269496],[-71.466525528,41.608198496],[-71.466449527,41.608406496],[-71.466429527,41.608528496],[-71.466427528,41.608657496],[-71.466431527,41.608722496],[-71.466444528,41.608786496],[-71.466476527,41.608850496],[-71.466523528,41.608899496],[-71.466630527,41.608975497],[-71.466747527,41.609050496],[-71.466872528,41.609155496],[-71.466793528,41.609192496],[-71.466760527,41.609264496],[-71.466741527,41.609318496],[-71.466728527,41.609452496],[-71.466661528,41.609505496],[-71.466584527,41.609558497],[-71.466533527,41.609623496],[-71.466526527,41.609876496],[-71.466543528,41.609932496],[-71.466543528,41.609992496],[-71.466497527,41.610106497],[-71.466480528,41.610220497],[-71.466464528,41.610274496],[-71.466439527,41.610326496],[-71.466447528,41.610465496],[-71.466452527,41.610562496],[-71.466485528,41.610626497],[-71.466539528,41.610715496],[-71.466531527,41.610719496],[-71.466518528,41.610785497],[-71.466514527,41.610841497],[-71.466493527,41.610896497],[-71.466446528,41.610948496],[-71.466375527,41.610980497],[-71.466319527,41.611017497],[-71.466269528,41.611067496],[-71.466238527,41.611126496],[-71.466221527,41.611196497],[-71.466205527,41.611316496],[-71.466147527,41.611502497],[-71.466126527,41.611625497],[-71.466078527,41.611801497],[-71.466053528,41.611925497],[-71.465986527,41.612175496],[-71.465909527,41.612413497],[-71.465836527,41.612539497],[-71.465814527,41.612567497],[-71.465815527,41.612588497],[-71.465769527,41.612611497],[-71.465725528,41.612616497],[-71.465667528,41.612638497],[-71.465616527,41.612686497],[-71.465611527,41.612688497],[-71.465548528,41.612732497],[-71.465495527,41.612791497],[-71.465453527,41.612852497],[-71.465386527,41.613042497],[-71.465451528,41.613072497],[-71.465454527,41.613100497],[-71.465331527,41.613183497],[-71.465288527,41.613241497],[-71.465222527,41.613355497],[-71.465118527,41.613466497],[-71.465059527,41.613506497],[-71.464870527,41.613603497],[-71.464813527,41.613639497],[-71.464785527,41.613699497],[-71.464783527,41.613709497],[-71.464772527,41.613767497],[-71.464764527,41.613891497],[-71.464733527,41.613949497],[-71.464713527,41.614075497],[-71.464685527,41.614141498],[-71.464652527,41.614198497],[-71.464578527,41.614300497],[-71.464532527,41.614353497],[-71.464422527,41.614449497],[-71.464380527,41.614499497],[-71.464346527,41.614548498],[-71.464265527,41.614649498],[-71.464234527,41.614698497],[-71.464214527,41.614766498],[-71.464238527,41.614829497],[-71.464321527,41.614926497],[-71.464362527,41.614988497],[-71.464388527,41.615039498],[-71.464403527,41.615103497],[-71.464400527,41.615172498],[-71.464383527,41.615235498],[-71.464342527,41.615296497],[-71.464242527,41.615400497],[-71.464207527,41.615457497],[-71.464204527,41.615524498],[-71.464251527,41.615553497],[-71.463669527,41.615582498],[-71.463577527,41.615620498],[-71.462662527,41.615651497],[-71.461273526,41.615631497],[-71.460060526,41.615620498],[-71.459213525,41.615624498],[-71.458641525,41.615620498],[-71.458557525,41.615685497],[-71.458443525,41.615754498],[-71.458122525,41.615796498],[-71.457886525,41.615811498],[-71.457848524,41.615414497],[-71.457817525,41.615109498],[-71.457779525,41.614636497],[-71.457626525,41.614640497],[-71.457542525,41.614643498],[-71.457443524,41.614640498],[-71.457390525,41.614659497],[-71.457315525,41.614910497],[-71.457283524,41.615017498],[-71.457146524,41.615395497],[-71.456917524,41.615998497],[-71.456802524,41.616276498],[-71.456711525,41.616520498],[-71.456497525,41.617016498],[-71.456291524,41.617451498],[-71.456750216,41.617565738],[-71.456622422,41.618775868],[-71.456619671,41.619182331],[-71.456057524,41.619335498],[-71.455963524,41.619374498],[-71.455884524,41.619391498],[-71.455809524,41.619391498],[-71.455649524,41.619361499],[-71.455568524,41.619329499],[-71.455494524,41.619330499],[-71.455413524,41.619343499],[-71.455311525,41.619365499],[-71.455243524,41.619384499],[-71.455154525,41.619415498],[-71.455074524,41.619438499],[-71.455016524,41.619449498],[-71.454913524,41.619474498],[-71.454783524,41.619499499],[-71.454694524,41.619512498],[-71.454635524,41.619515499],[-71.454572524,41.619514498],[-71.454463524,41.619505499],[-71.454403524,41.619502499],[-71.454244524,41.619471498],[-71.454095524,41.619420499],[-71.454015524,41.619416498],[-71.453602524,41.619411498],[-71.453279524,41.619393498],[-71.453184524,41.619382499],[-71.452863523,41.619376498],[-71.452805523,41.619386499],[-71.452748523,41.619445499],[-71.452645523,41.619539499],[-71.452594523,41.619600499],[-71.452523524,41.619732499],[-71.452476523,41.619784498],[-71.452367524,41.619878498],[-71.452238523,41.619972499],[-71.452140523,41.620056498],[-71.452084523,41.620117499],[-71.452035524,41.620187499],[-71.451944523,41.620304499],[-71.451885523,41.620380499],[-71.451837523,41.620452499],[-71.451769523,41.620575499],[-71.451713523,41.620716498],[-71.451640523,41.620823499],[-71.451593523,41.620950499],[-71.451567524,41.621006499],[-71.451529523,41.621062499],[-71.451359523,41.621229499],[-71.451318523,41.621277499],[-71.451202523,41.621383499],[-71.451084523,41.621462499],[-71.451043523,41.621516499],[-71.451026523,41.621580499],[-71.451002523,41.621636499],[-71.450959523,41.621680499],[-71.450840523,41.621688499],[-71.450689523,41.6216905],[-71.450612523,41.621705499],[-71.450545523,41.621734499],[-71.450494523,41.621774499],[-71.450449523,41.621819499],[-71.450412523,41.6218655],[-71.450379522,41.621915499],[-71.450350523,41.621991499],[-71.450294523,41.622048499],[-71.450193523,41.622081499],[-71.450118523,41.622111499],[-71.450046523,41.622147499],[-71.449982523,41.622191499],[-71.449872522,41.622283499],[-71.449812523,41.622321499],[-71.449742522,41.622346499],[-71.449665522,41.622359499],[-71.449589523,41.622377499],[-71.449511523,41.6223885],[-71.449431522,41.622393499],[-71.449332522,41.622405499],[-71.449242523,41.622401499],[-71.449169523,41.622365499],[-71.449117522,41.622300499],[-71.449032523,41.622208499],[-71.448959522,41.622187499],[-71.448879522,41.622181499],[-71.448805522,41.622164499],[-71.448653522,41.622111499],[-71.448579522,41.622093499],[-71.448506522,41.6220805],[-71.448432522,41.622073499],[-71.447953522,41.622069499],[-71.447593522,41.622070499],[-71.447329522,41.622082499],[-71.447226522,41.622091499],[-71.447125521,41.622092499],[-71.446840522,41.622106499],[-71.446751521,41.6221145],[-71.446568522,41.6221395],[-71.446497522,41.622159499],[-71.446425521,41.622187499],[-71.446354522,41.622209499],[-71.446236522,41.6222925],[-71.446208521,41.622343499],[-71.446112521,41.6224445],[-71.446044522,41.622480499],[-71.446587522,41.623238499],[-71.446251521,41.6233075],[-71.446208521,41.623314499],[-71.446022522,41.623349499],[-71.445450521,41.623433499],[-71.444855521,41.6234595],[-71.444559521,41.6234575],[-71.444538187,41.623052351],[-71.439218238,41.623568989],[-71.439446519,41.6241075],[-71.439497519,41.6241325],[-71.439560519,41.6241765],[-71.439601519,41.6242285],[-71.439678519,41.6243935],[-71.439682519,41.6245335],[-71.439673519,41.6245995],[-71.43965252,41.6246555],[-71.439624519,41.6247105],[-71.439580519,41.6247625],[-71.439521519,41.6248805],[-71.439479519,41.6249375],[-71.43939552,41.6250365],[-71.43937752,41.6251725],[-71.439381519,41.6252445],[-71.439391519,41.6252995],[-71.439387519,41.6253685],[-71.44247352,41.6252045],[-71.442361521,41.6254595],[-71.44232852,41.6255215],[-71.44222752,41.6256785],[-71.44218252,41.6257375],[-71.44215152,41.6257925],[-71.442128521,41.6258495],[-71.44200252,41.626095501],[-71.44198052,41.6261575],[-71.44196152,41.6263445],[-71.44195952,41.626737501],[-71.44196652,41.6268105],[-71.44202552,41.6271345],[-71.44203452,41.627340501],[-71.44203452,41.627618501],[-71.442029521,41.6276805],[-71.44201752,41.6277375],[-71.44197352,41.627807501],[-71.44190652,41.627869501],[-71.44179952,41.6279555],[-71.44174252,41.6279945],[-71.44161652,41.628066501],[-71.44153752,41.628122501],[-71.44148852,41.628175501],[-71.44142452,41.6283035],[-71.44128652,41.628449501],[-71.44118452,41.628545501],[-71.44115152,41.6285975],[-71.44112252,41.6286565],[-71.44108152,41.628717501],[-71.44100952,41.6287525],[-71.44079352,41.628775501],[-71.44080652,41.6288295],[-71.44079652,41.6288885],[-71.44080352,41.628955501],[-71.44082652,41.6290835],[-71.44085652,41.629206501],[-71.44078752,41.629245501],[-71.44070952,41.629276501],[-71.44063752,41.629282501],[-71.44050252,41.629263501],[-71.44050452,41.629301501],[-71.44053252,41.6293555],[-71.44057752,41.629409501],[-71.44060152,41.629461501],[-71.44060052,41.629575501],[-71.44058552,41.629636501],[-71.44056352,41.629764501],[-71.44055952,41.629824501],[-71.44056052,41.629951501],[-71.44056752,41.630024501],[-71.44062652,41.630132501],[-71.44067452,41.630242501],[-71.44073052,41.630282501],[-71.44087452,41.630331501],[-71.44087852,41.630420501],[-71.44090252,41.630453501],[-71.44088152,41.630493501],[-71.44087452,41.630546501],[-71.44087552,41.630601502],[-71.44086552,41.630671501],[-71.44082452,41.630723501],[-71.44066352,41.630855502],[-71.44055552,41.630956501],[-71.44046452,41.631051502],[-71.44040152,41.631078501],[-71.44001452,41.631167502],[-71.44007552,41.631218501],[-71.44013852,41.631263502],[-71.44018052,41.631309501],[-71.44019652,41.631364501],[-71.44019652,41.631423501],[-71.44232952,41.632405501],[-71.44129952,41.633103501],[-71.43992652,41.634041502],[-71.43986552,41.634087502],[-71.43920952,41.634545502],[-71.438431519,41.635037502],[-71.438370519,41.635067502],[-71.438293519,41.635106502],[-71.43797352,41.635254502],[-71.437508519,41.635430502],[-71.436989519,41.635601502],[-71.434437518,41.636374503],[-71.433601518,41.636639503],[-71.433404518,41.636705503],[-71.433090518,41.636811502],[-71.432945517,41.636856503],[-71.431129518,41.637486503],[-71.430916517,41.637562503],[-71.430069517,41.637837503],[-71.429169517,41.638096503],[-71.428978517,41.638153503],[-71.428650517,41.638256503],[-71.428078516,41.638440503],[-71.427055516,41.638752503],[-71.426376516,41.638977503],[-71.425255516,41.639332503],[-71.424118515,41.639702503],[-71.422966515,41.640087503],[-71.422180514,41.640355503],[-71.422195515,41.640423504],[-71.422203514,41.640519504],[-71.422195515,41.640610503],[-71.422165514,41.640675504],[-71.422119515,41.640721504],[-71.422020515,41.640755504],[-71.421852514,41.640759504],[-71.421555514,41.640820504],[-71.421005514,41.640915504],[-71.420883514,41.640957504],[-71.420738514,41.641007504],[-71.420555514,41.641087504],[-71.420380514,41.641171504],[-71.420227514,41.641232503],[-71.420052514,41.641266504],[-71.419884514,41.641262504],[-71.419754514,41.641247504],[-71.419594514,41.641205504],[-71.419548513,41.641198504],[-71.419235513,41.641137504],[-71.419075514,41.641133504],[-71.419049514,41.641135503],[-71.418724514,41.641159504],[-71.417854513,41.641243504],[-71.417166513,41.641312504],[-71.416870513,41.641343504],[-71.415741513,41.641434504],[-71.414574512,41.641533504],[-71.414558512,41.641537504],[-71.414467512,41.641549504],[-71.414268512,41.641594504],[-71.414131512,41.641648504],[-71.414024512,41.641713504],[-71.413956512,41.641796505],[-71.413910512,41.641896504],[-71.413902512,41.641934504],[-71.413895512,41.641987504],[-71.413910512,41.642147505],[-71.413979512,41.642361505],[-71.414062512,41.642643504],[-71.414131512,41.642899504],[-71.414185512,41.643036504],[-71.414185512,41.643101505],[-71.414171512,41.644525505],[-71.414080512,41.644402505],[-71.414019512,41.644356504],[-71.413940512,41.644322505],[-71.413897512,41.644291505],[-71.413850512,41.644239504],[-71.413802512,41.644198504],[-71.413691512,41.644067505],[-71.413693512,41.644012505],[-71.413723512,41.643963504],[-71.413746512,41.643905504],[-71.413719512,41.643852504],[-71.413656512,41.643808504],[-71.413611512,41.643782505],[-71.413474512,41.643734504],[-71.413373512,41.643722505],[-71.413323512,41.643658504],[-71.413297512,41.643561504],[-71.413243512,41.643423504],[-71.413254512,41.643380504],[-71.413180512,41.643315505],[-71.413147512,41.643262504],[-71.413140512,41.643208504],[-71.413149512,41.643153504],[-71.413143512,41.643097505],[-71.413080512,41.642988504],[-71.412988512,41.642889504],[-71.412942512,41.642846505],[-71.412777512,41.642726504],[-71.412699512,41.642684504],[-71.412617512,41.642653505],[-71.412544512,41.642648504],[-71.412481512,41.642674505],[-71.412419512,41.642719504],[-71.412289512,41.642779504],[-71.412217511,41.642802504],[-71.412057512,41.642817504],[-71.411909511,41.642848505],[-71.411871511,41.642875504],[-71.411805511,41.642808505],[-71.411750511,41.642759504],[-71.411604511,41.642592505],[-71.411568512,41.642533505],[-71.411545511,41.642478505],[-71.411553511,41.642418505],[-71.411609511,41.642366504],[-71.411732511,41.642273504],[-71.411777511,41.642231504],[-71.411793511,41.642176504],[-71.411756511,41.642123504],[-71.411688511,41.642081504],[-71.411606511,41.642046505],[-71.411457511,41.641974504],[-71.411384511,41.641949505],[-71.411297511,41.641967504],[-71.411232511,41.642005504],[-71.411184511,41.642051504],[-71.411126511,41.642086505],[-71.411070511,41.642087505],[-71.411033511,41.642074504],[-71.410977511,41.642030505],[-71.410860511,41.641794505],[-71.410826511,41.641740504],[-71.410784511,41.641691504],[-71.41073251,41.641648504],[-71.410672511,41.641610504],[-71.410605511,41.641581505],[-71.410528511,41.641559504],[-71.410450511,41.641547504],[-71.410370511,41.641544504],[-71.41028851,41.641557504],[-71.410211511,41.641574504],[-71.41012851,41.641583504],[-71.41005551,41.641580505],[-71.409984511,41.641553504],[-71.409928511,41.641509504],[-71.409772511,41.641309505],[-71.40972651,41.641256504],[-71.40966551,41.641209504],[-71.40964051,41.641201504],[-71.40958851,41.641156504],[-71.40940651,41.641029504],[-71.40933451,41.640998504],[-71.40925851,41.640986504],[-71.40917751,41.641005504],[-71.409110511,41.641052504],[-71.40906751,41.641113505],[-71.409052511,41.641175504],[-71.409073511,41.641243504],[-71.40911551,41.641302504],[-71.409149511,41.641369504],[-71.40915951,41.641431504],[-71.409111511,41.641480504],[-71.40892851,41.641495504],[-71.40885151,41.641523505],[-71.408837511,41.641575504],[-71.408896511,41.641634504],[-71.408953511,41.641673504],[-71.40902651,41.641714504],[-71.409088511,41.641767504],[-71.40911351,41.641828504],[-71.40910151,41.641886504],[-71.40904451,41.641944504],[-71.40892951,41.642032504],[-71.40886951,41.642069505],[-71.40879651,41.642100504],[-71.40871451,41.642082504],[-71.40857751,41.642029505],[-71.40840351,41.641914504],[-71.40837651,41.641906504],[-71.40836951,41.641847504],[-71.40835598,41.641794285],[-71.40836916,41.641847456],[-71.408376241,41.641906053],[-71.408328985,41.641927947],[-71.408250784,41.641928388],[-71.408170861,41.641939301],[-71.408129316,41.641975813],[-71.408151223,41.642028042],[-71.40820386,41.642081552],[-71.40825647,41.642132204],[-71.408311834,41.642176592],[-71.408354228,41.642229432],[-71.408378937,41.642284452],[-71.408412033,41.642336667],[-71.408458175,41.64239159],[-71.408512646,41.642442243],[-71.408564286,41.642489464],[-71.408599243,41.642541611],[-71.408634144,41.642590305],[-71.408674679,41.642643143],[-71.408705859,41.642692542],[-71.408736259,41.64275452],[-71.408764824,41.642821435],[-71.408790527,41.642884804],[-71.40880594,41.642937805],[-71.408821483,41.643006837],[-71.408827756,41.643077325],[-71.40882842,41.643146437],[-71.408830916,41.643214156],[-71.408835278,41.64327769],[-71.408845134,41.643336975],[-71.408867123,41.643396888],[-71.408885392,41.643456866],[-71.408893444,41.643519626],[-71.40889403,41.643579681],[-71.408893752,41.643647443],[-71.408881316,41.643710324],[-71.408851902,41.64374815],[-71.408817178,41.643854785],[-71.408816549,41.643911798],[-71.408807685,41.64399252],[-71.408805267,41.644064122],[-71.40879826,41.644146241],[-71.408783877,41.644227621],[-71.408762024,41.644309042],[-71.408734679,41.644393271],[-71.408702667,41.644478914],[-71.40867348,41.644571467],[-71.408645209,41.644663379],[-71.408617882,41.644756619],[-71.408588715,41.644856878],[-71.408561464,41.644960523],[-71.40854596,41.645014117],[-71.408516818,41.645118538],[-71.408486735,41.645219437],[-71.408459428,41.645318965],[-71.408434009,41.645420554],[-71.408408588,41.64552356],[-71.40838222,41.645627252],[-71.408353109,41.645730255],[-71.408326718,41.645829099],[-71.408299387,41.645923733],[-71.408275777,41.646017685],[-71.408254963,41.646117882],[-71.408233257,41.646223635],[-71.408214333,41.64632452],[-71.408199986,41.646421955],[-71.408191192,41.646517245],[-71.40818429,41.646611118],[-71.408169003,41.646705053],[-71.40814353,41.646801084],[-71.408120862,41.646896431],[-71.408092565,41.646984136],[-71.408054975,41.647067007],[-71.408013696,41.647149899],[-71.407988154,41.647229921],[-71.407984866,41.647311974],[-71.407990874,41.647396824],[-71.408011702,41.647480177],[-71.40804363,41.647562143],[-71.408075559,41.64764411],[-71.408091724,41.647726155],[-71.408087526,41.64780544],[-71.408082352,41.647884701],[-71.408083676,41.6479612],[-71.408091493,41.648039077],[-71.408109498,41.648113417],[-71.408138584,41.648179395],[-71.408149166,41.648199254],[-71.408170423,41.648239133],[-71.408183721,41.648300273],[-71.408170127,41.648361529],[-71.408143592,41.648431831],[-71.408111557,41.648509813],[-71.408076742,41.648591955],[-71.408045621,41.648670647],[-71.408018221,41.648748609],[-71.407992628,41.64882097],[-71.407969815,41.648889903],[-71.407943281,41.648958833],[-71.407911222,41.649031944],[-71.407880966,41.649102952],[-71.407858127,41.649167677],[-71.407845453,41.649224749],[-71.407845738,41.649281762],[-71.407855318,41.649341573],[-71.407876966,41.649406174],[-71.407906969,41.649470735],[-71.407944361,41.64952835],[-71.407988195,41.649579681],[-71.408039391,41.649621253],[-71.408096115,41.649656563],[-71.40818348,41.649693887],[-71.408256961,41.649738884],[-71.408312938,41.649806851],[-71.408346611,41.649863777],[-71.408378473,41.649929048],[-71.408405728,41.649997106],[-71.408416248,41.65006108],[-71.408414697,41.650122964],[-71.408400935,41.650151539],[-71.408363299,41.650223251],[-71.40836267,41.650279577],[-71.408363009,41.650341462],[-71.408363343,41.650406846],[-71.40836363,41.650462442],[-71.40837874,41.650515282],[-71.408467116,41.650572023],[-71.408506389,41.650636591],[-71.408541943,41.650700471],[-71.408545081,41.650767229],[-71.408541677,41.650824263],[-71.408600309,41.650869956],[-71.408657997,41.6509143],[-71.408721313,41.650968368],[-71.408782826,41.651025201],[-71.408837764,41.651074414],[-71.408893627,41.651116675],[-71.408915135,41.651151385],[-71.408942006,41.651146444],[-71.409013169,41.651106616],[-71.409074153,41.651062618],[-71.409145298,41.651013711],[-71.409197924,41.650972542],[-71.409250555,41.650927188],[-71.409301322,41.650884622],[-71.409356749,41.650846245],[-71.409452947,41.650804928],[-71.409532589,41.650785208],[-71.409625244,41.650769638],[-71.40971978,41.650761022],[-71.409816197,41.65075936],[-71.409913554,41.650761174],[-71.410011879,41.650768524],[-71.410118578,41.650784204],[-71.410227187,41.650808211],[-71.410334904,41.65083711],[-71.410441698,41.650872252],[-71.410553181,41.650912955],[-71.410666438,41.650948788],[-71.410776932,41.65097698],[-71.410883661,41.650993369],[-71.410981957,41.651000054],[-71.411074807,41.651020617],[-71.411185246,41.65104396],[-71.411304072,41.651066533],[-71.41141734,41.651095413],[-71.411518559,41.651127805],[-71.411620746,41.651165755],[-71.41172021,41.651210656],[-71.411815036,41.651258365],[-71.411907975,41.651303283],[-71.412006497,41.651346125],[-71.412114277,41.651397274],[-71.412232378,41.651460187],[-71.4122928,41.651492707],[-71.412351393,41.651524518],[-71.412459304,41.651591653],[-71.412557,41.651660244],[-71.412651005,41.651728786],[-71.412750616,41.651802204],[-71.412796824,41.651837572],[-71.41284742,41.651876328],[-71.412938648,41.651946995],[-71.41302527,41.652019762],[-71.413114695,41.652094613],[-71.413202229,41.652169439],[-71.413290704,41.652247765],[-71.413379181,41.652325381],[-71.413458395,41.65239748],[-71.413525537,41.652467533],[-71.413599115,41.652536151],[-71.413673648,41.652597817],[-71.41374998,41.652658775],[-71.413836554,41.652723218],[-71.413922188,41.652784137],[-71.414003184,41.65284718],[-71.414084179,41.652910932],[-71.414166118,41.652976056],[-71.414250856,41.653045345],[-71.414338373,41.653112532],[-71.414426776,41.65317837],[-71.414505026,41.653243469],[-71.414570282,41.653311462],[-71.414628127,41.653380799],[-71.414690637,41.653450163],[-71.414762336,41.653511849],[-71.414844257,41.653568648],[-71.414935417,41.653625386],[-71.415027521,41.65368352],[-71.415115907,41.653739615],[-71.415186617,41.653788745],[-71.415237825,41.653827546],[-71.415317737,41.653858593],[-71.41540786,41.653893123],[-71.415474784,41.653922811],[-71.415552808,41.653952484],[-71.415642878,41.653980748],[-71.415736701,41.654007552],[-71.415819358,41.654039332],[-71.415885392,41.654073204],[-71.415960793,41.654127208],[-71.416008303,41.654172273],[-71.416051234,41.654222205],[-71.416089502,41.654270075],[-71.416152805,41.654317896],[-71.416241941,41.654338452],[-71.416311538,41.654352864],[-71.416382081,41.654367278],[-71.41645446,41.654376775],[-71.416538861,41.654380724],[-71.416636252,41.654384568],[-71.416743801,41.654384944],[-71.416853186,41.654380449],[-71.416950532,41.654371829],[-71.417033915,41.654361141],[-71.41711638,41.654352556],[-71.417207246,41.654355754]]]]}}"}, +{"type": "precinct", "typeId": 2305, "areaId": 26041, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":380,\"NAME\":\"2305\",\"SHAPE_Length\":0.18774784591228,\"SHAPE_Area\":-0.0010524327112614},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.495073535,41.573436488],[-71.495570535,41.573866489],[-71.495632535,41.573761488],[-71.495575535,41.573708488],[-71.495130535,41.573324489],[-71.495933535,41.571744488],[-71.496122535,41.571367488],[-71.496801535,41.570014487],[-71.497395536,41.568846487],[-71.497837535,41.567967487],[-71.498211536,41.567223487],[-71.499800536,41.564090486],[-71.500540536,41.562597486],[-71.501174536,41.561361486],[-71.503075536,41.557598485],[-71.503841537,41.556095485],[-71.504569537,41.554620485],[-71.506033538,41.551675484],[-71.506740537,41.550299483],[-71.507665538,41.548478483],[-71.508341537,41.547121483],[-71.508583538,41.546652482],[-71.508954538,41.545928482],[-71.509741538,41.544366483],[-71.510615538,41.542613482],[-71.513146539,41.53760048],[-71.513953539,41.536011481],[-71.514682539,41.53454948],[-71.514961539,41.53400748],[-71.51572654,41.53246848],[-71.51673954,41.53047648],[-71.51786654,41.528229479],[-71.51832354,41.527308478],[-71.51830954,41.527208478],[-71.51828854,41.527051478],[-71.518127539,41.526963479],[-71.51802854,41.526707479],[-71.517838539,41.526299479],[-71.51755554,41.525723479],[-71.517036539,41.524582478],[-71.516830539,41.524178478],[-71.516137539,41.523219478],[-71.515885538,41.522523478],[-71.515899539,41.522438478],[-71.515895539,41.522429477],[-71.515830539,41.522281478],[-71.515519538,41.521323477],[-71.515043539,41.520588478],[-71.514814538,41.520265477],[-71.514799538,41.520244477],[-71.514584538,41.519946478],[-71.514509538,41.519865477],[-71.514492538,41.519820477],[-71.513892538,41.518550477],[-71.513817538,41.518391477],[-71.513782538,41.518283477],[-71.513483538,41.517682477],[-71.512407538,41.515515477],[-71.510593537,41.510272476],[-71.510565536,41.510191476],[-71.510519537,41.510127475],[-71.510475537,41.510025475],[-71.510422537,41.509877475],[-71.510330536,41.509575476],[-71.510277536,41.509369475],[-71.510155536,41.508992475],[-71.510048536,41.508580476],[-71.509933536,41.508095475],[-71.509911536,41.508026475],[-71.509666536,41.507061475],[-71.509491536,41.506401475],[-71.509186536,41.505291474],[-71.509056536,41.504780474],[-71.508911536,41.504177474],[-71.508797536,41.503769474],[-71.508774535,41.503708474],[-71.508354536,41.503708474],[-71.507576536,41.503701475],[-71.506773535,41.503684475],[-71.506218535,41.503666475],[-71.505844534,41.503640475],[-71.505643535,41.503629474],[-71.505394534,41.503617474],[-71.505035534,41.503594474],[-71.504799534,41.503594474],[-71.504631535,41.503613474],[-71.504509534,41.503636474],[-71.504349534,41.503689474],[-71.504150534,41.503785474],[-71.503967534,41.503907474],[-71.503807534,41.504048475],[-71.503632534,41.504181474],[-71.503380534,41.504330474],[-71.503120534,41.504456475],[-71.502808534,41.504563475],[-71.502472533,41.504689475],[-71.502243533,41.504769475],[-71.502052534,41.504856475],[-71.501816533,41.504986475],[-71.501549534,41.505158475],[-71.501106533,41.505482475],[-71.500839533,41.505669475],[-71.500595533,41.505818475],[-71.500473533,41.505875475],[-71.500336533,41.505921475],[-71.500168532,41.505970475],[-71.499977533,41.506020475],[-71.499863533,41.506066475],[-71.499725533,41.506131475],[-71.499557533,41.506226475],[-71.499356533,41.506349475],[-71.499199532,41.506478475],[-71.499104533,41.506569475],[-71.499077532,41.506596475],[-71.498962532,41.506752475],[-71.498825532,41.506913475],[-71.498689532,41.507049475],[-71.498405533,41.507317475],[-71.498116533,41.507569475],[-71.497734532,41.507931476],[-71.497459532,41.508183476],[-71.497139532,41.508488475],[-71.496796532,41.508793476],[-71.496513532,41.509060476],[-71.496254532,41.509297476],[-71.496056531,41.509518475],[-71.495941532,41.509659476],[-71.495796532,41.509873476],[-71.495644531,41.510075476],[-71.495552531,41.510273476],[-71.495514532,41.510369476],[-71.495491531,41.510559476],[-71.495483532,41.510716476],[-71.495483532,41.511242476],[-71.495491531,41.511456476],[-71.495506531,41.511689476],[-71.495552532,41.511902476],[-71.495621532,41.512177476],[-71.495735532,41.512719476],[-71.495819531,41.513039477],[-71.495941532,41.513436477],[-71.496063532,41.513806477],[-71.496170532,41.514187477],[-71.496315532,41.514771477],[-71.496384532,41.515015477],[-71.496452532,41.515297477],[-71.496513532,41.515629477],[-71.496559532,41.515915477],[-71.496605532,41.516163477],[-71.496613533,41.516304477],[-71.496605532,41.516384477],[-71.496567532,41.516465477],[-71.496509532,41.516538477],[-71.496498533,41.516552477],[-71.496368532,41.516663477],[-71.495987532,41.516941477],[-71.495926532,41.516987477],[-71.495491532,41.517361477],[-71.495010532,41.517697477],[-71.494431532,41.518116478],[-71.494247532,41.518235477],[-71.494118532,41.518303478],[-71.493919532,41.518364478],[-71.493767532,41.518402478],[-71.493113531,41.518508477],[-71.492895531,41.518541478],[-71.492416531,41.518605477],[-71.49203553,41.518647477],[-71.491115531,41.518774478],[-71.49090653,41.518803478],[-71.490471531,41.518898477],[-71.48997553,41.518971478],[-71.48951553,41.519030478],[-71.48947153,41.519036478],[-71.48893053,41.519093478],[-71.48853353,41.519154478],[-71.48839353,41.519178478],[-71.48816753,41.519219478],[-71.487907529,41.519242478],[-71.48764053,41.519238478],[-71.48760253,41.519234478],[-71.48732853,41.519257478],[-71.48696153,41.519314478],[-71.486641529,41.519349478],[-71.486359529,41.519368478],[-71.486076529,41.519398478],[-71.485832529,41.519425478],[-71.485725529,41.519432478],[-71.485619528,41.519444478],[-71.485367528,41.519459478],[-71.485405528,41.519558478],[-71.485420529,41.519669478],[-71.485413529,41.519944478],[-71.485428529,41.520272478],[-71.485545529,41.520860479],[-71.485603529,41.521145478],[-71.485649529,41.521408479],[-71.485756529,41.521782479],[-71.485907529,41.522393478],[-71.485947529,41.522553479],[-71.485986529,41.522769479],[-71.486023529,41.522971479],[-71.486191529,41.523898479],[-71.486214529,41.524006479],[-71.486420529,41.524926479],[-71.48647353,41.525219479],[-71.486542529,41.525635479],[-71.48666453,41.52620748],[-71.486717529,41.526528479],[-71.48677853,41.526856479],[-71.486847529,41.52716148],[-71.487061529,41.52805448],[-71.48707653,41.52813448],[-71.48709153,41.52821048],[-71.487335529,41.52921048],[-71.48745753,41.52981648],[-71.48759553,41.53043848],[-71.487801531,41.53130448],[-71.48786953,41.53162048],[-71.48792353,41.531983481],[-71.48796153,41.532345481],[-71.488014531,41.532734481],[-71.48804553,41.533151481],[-71.48806853,41.533440481],[-71.48807553,41.533787481],[-71.48809853,41.534047481],[-71.488129531,41.534302481],[-71.48817453,41.534603481],[-71.488396531,41.535675481],[-71.488434531,41.535950481],[-71.488457531,41.536038482],[-71.488556531,41.536526482],[-71.48870153,41.537297481],[-71.488754531,41.537621481],[-71.488808531,41.537907482],[-71.488815531,41.537964482],[-71.48887653,41.538247481],[-71.488937531,41.538453482],[-71.489037531,41.538670482],[-71.489166531,41.538887481],[-71.489349531,41.539132482],[-71.489540531,41.539410482],[-71.489700531,41.539563482],[-71.489746531,41.539524482],[-71.489983532,41.539418482],[-71.490341531,41.539284482],[-71.490654531,41.539177482],[-71.491013532,41.539093482],[-71.491043531,41.539090482],[-71.491325532,41.539029482],[-71.491707532,41.538983482],[-71.492134532,41.538964482],[-71.493042532,41.538903482],[-71.493118532,41.538895482],[-71.493256532,41.538887481],[-71.494232533,41.538800482],[-71.494606533,41.538754481],[-71.495041533,41.538678481],[-71.495468533,41.538613482],[-71.495563534,41.538601481],[-71.495712533,41.538582481],[-71.496254533,41.538571482],[-71.496712534,41.538571482],[-71.497031533,41.538565482],[-71.497169533,41.538563481],[-71.497223533,41.538567482],[-71.497630534,41.538588482],[-71.497964533,41.538614481],[-71.498142534,41.538637481],[-71.498254534,41.538658481],[-71.498353534,41.538690482],[-71.498482534,41.538752481],[-71.498575534,41.538812481],[-71.498706534,41.538910481],[-71.499181534,41.539310482],[-71.499496535,41.539589481],[-71.499748535,41.539841482],[-71.499977534,41.540055482],[-71.500229534,41.540261482],[-71.500427535,41.540398482],[-71.500381534,41.540455482],[-71.500313535,41.540642481],[-71.500206534,41.541020482],[-71.499939535,41.541890482],[-71.499855534,41.542179482],[-71.499718534,41.542717482],[-71.499634535,41.543026482],[-71.499596535,41.543187482],[-71.499565534,41.543293483],[-71.499481535,41.543492482],[-71.499390534,41.543652482],[-71.499199534,41.543953483],[-71.499039534,41.544190483],[-71.498917535,41.544407482],[-71.498802534,41.544754483],[-71.498741535,41.544991482],[-71.498711534,41.545216483],[-71.498726534,41.545452483],[-71.498764534,41.545643483],[-71.498886534,41.546162483],[-71.498978534,41.546486483],[-71.499054535,41.546788483],[-71.499107535,41.547043483],[-71.499130535,41.547123483],[-71.499214534,41.547589483],[-71.499268535,41.547791483],[-71.499397535,41.548386483],[-71.499443535,41.548645483],[-71.499741535,41.550045483],[-71.499817535,41.550354483],[-71.499870535,41.550499484],[-71.500038535,41.550801484],[-71.500122535,41.550965484],[-71.500214535,41.551125484],[-71.500290535,41.551285484],[-71.500336536,41.551419484],[-71.500359536,41.551552484],[-71.500351535,41.551701484],[-71.500313535,41.551850484],[-71.500237535,41.551964484],[-71.500145536,41.552060484],[-71.500000535,41.552166484],[-71.499809535,41.552285484],[-71.499237535,41.552624484],[-71.499031535,41.552754484],[-71.498848535,41.552895484],[-71.498703535,41.553032484],[-71.498543535,41.553223484],[-71.498222535,41.553646485],[-71.497940535,41.553967484],[-71.497787534,41.554127485],[-71.497688535,41.554272485],[-71.497544535,41.554512484],[-71.497490535,41.554608484],[-71.497284534,41.555008485],[-71.497162535,41.555222485],[-71.496986535,41.555470485],[-71.496887535,41.555580485],[-71.496674535,41.555817485],[-71.496544534,41.555985485],[-71.496399535,41.556225485],[-71.496315534,41.556385485],[-71.496178534,41.556721485],[-71.496147535,41.556862485],[-71.496132534,41.556969485],[-71.496140534,41.557083485],[-71.496178534,41.557202485],[-71.496353534,41.557530486],[-71.496391534,41.557640485],[-71.496414534,41.557751485],[-71.496414534,41.558094486],[-71.496407534,41.558354485],[-71.496384534,41.558529485],[-71.496361535,41.558651485],[-71.496269534,41.558800485],[-71.495926534,41.559327485],[-71.495811534,41.559456486],[-71.495377534,41.559964486],[-71.495303534,41.560041486],[-71.494781534,41.560597486],[-71.494713534,41.560654486],[-71.494621534,41.560707486],[-71.494422534,41.560796486],[-71.494324534,41.560841486],[-71.494217534,41.560883486],[-71.494118534,41.560929486],[-71.493393534,41.561154486],[-71.492896533,41.561282486],[-71.492302533,41.561440486],[-71.491859533,41.561562486],[-71.491661533,41.561634486],[-71.491577533,41.561680486],[-71.491516533,41.561730486],[-71.491035533,41.561432486],[-71.490791533,41.561322486],[-71.490723533,41.561287486],[-71.490662533,41.561249486],[-71.490501533,41.561123486],[-71.490318532,41.560997486],[-71.490257533,41.560936486],[-71.490219533,41.560906486],[-71.490189532,41.560871486],[-71.490150532,41.560837486],[-71.490105532,41.560807486],[-71.490059533,41.560791486],[-71.490013532,41.560780486],[-71.489906533,41.560765486],[-71.489800532,41.560757486],[-71.489693533,41.560757486],[-71.489555533,41.560772486],[-71.489776365,41.561710157],[-71.489998533,41.562653487],[-71.490440533,41.564473486],[-71.490898533,41.566407487],[-71.491348534,41.568333488],[-71.491417533,41.568554487],[-71.491478533,41.568772488],[-71.491692533,41.569367488],[-71.491882533,41.569783488],[-71.492126534,41.570237488],[-71.492371534,41.570641488],[-71.492500534,41.570839488],[-71.492630534,41.571019488],[-71.492767534,41.571198488],[-71.492950534,41.571419488],[-71.492996534,41.571480488],[-71.493050534,41.571541488],[-71.493103534,41.571610488],[-71.493187534,41.571713488],[-71.493332534,41.571877488],[-71.493469534,41.572018488],[-71.493622534,41.572152488],[-71.493767535,41.572289488],[-71.495038534,41.573404489],[-71.495073535,41.573436488]]]]}}"}, +{"type": "precinct", "typeId": 2306, "areaId": 26049, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":388,\"NAME\":\"2306\",\"SHAPE_Length\":0.24110237508095,\"SHAPE_Area\":-0.0016459439334105},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.448148516,41.502730476],[-71.448148997,41.502796869],[-71.448148876,41.502730689],[-71.448158484,41.502702304],[-71.448148516,41.502730476]]],[[[-71.448149516,41.502868476],[-71.448152942,41.502889308],[-71.448149983,41.502868207],[-71.448149647,41.502844903],[-71.448149039,41.502802626],[-71.448149516,41.502868476]]],[[[-71.448174516,41.503020476],[-71.448181786,41.503032779],[-71.448174487,41.503020299],[-71.448174516,41.503020476]]],[[[-71.448281516,41.503142476],[-71.448347516,41.503205476],[-71.448372417,41.503249995],[-71.448348007,41.503205513],[-71.448281493,41.503142179],[-71.448247701,41.503114628],[-71.448281516,41.503142476]]],[[[-71.448389456,41.503324083],[-71.448389469,41.503323975],[-71.4483884,41.503317039],[-71.448389456,41.503324083]]],[[[-71.448373753,41.503513626],[-71.448379472,41.503462243],[-71.448380091,41.503437569],[-71.448373753,41.503513626]]],[[[-71.448359516,41.503618152],[-71.448359574,41.503618001],[-71.448359516,41.503613871],[-71.448359516,41.503618152]]],[[[-71.448333515,41.503684476],[-71.44830306,41.503723748],[-71.448333753,41.503684884],[-71.448353259,41.503634358],[-71.448333515,41.503684476]]],[[[-71.448205244,41.503882378],[-71.448235276,41.503837108],[-71.448259377,41.503793087],[-71.448205244,41.503882378]]],[[[-71.448077515,41.504054477],[-71.448075658,41.504057742],[-71.448077665,41.504054462],[-71.448083912,41.504045965],[-71.448077515,41.504054477]]],[[[-71.447986516,41.504223476],[-71.447985461,41.504226958],[-71.447986779,41.504223247],[-71.448003271,41.504188811],[-71.447986516,41.504223476]]],[[[-71.447933516,41.504398476],[-71.44793138,41.504428912],[-71.447933916,41.504398727],[-71.447936221,41.504389543],[-71.447933516,41.504398476]]],[[[-71.447929516,41.504635476],[-71.447921515,41.504698477],[-71.447904515,41.504758477],[-71.447857516,41.504876476],[-71.447856137,41.504881762],[-71.447857719,41.504876514],[-71.447881802,41.504815897],[-71.447904969,41.504758046],[-71.447921658,41.504698867],[-71.447929984,41.504635612],[-71.447930917,41.504572423],[-71.447930052,41.504512663],[-71.447929516,41.504476982],[-71.447929516,41.504635476]]],[[[-71.447824471,41.505238591],[-71.44782534,41.505190024],[-71.447824274,41.505116428],[-71.44782366,41.50507459],[-71.447824471,41.505238591]]],[[[-71.447810516,41.505382477],[-71.447806833,41.505504005],[-71.447810709,41.505452724],[-71.447810613,41.505382582],[-71.447811234,41.505375548],[-71.447810516,41.505382477]]],[[[-71.447797516,41.505571477],[-71.447792254,41.50569161],[-71.44779569,41.505628565],[-71.447797653,41.505571596],[-71.447799751,41.505557319],[-71.447797516,41.505571477]]],[[[-71.447766515,41.505842477],[-71.447766488,41.505842728],[-71.4477672,41.505838807],[-71.447766515,41.505842477]]],[[[-71.447776516,41.505977477],[-71.447791251,41.505993849],[-71.447776761,41.505977414],[-71.447767753,41.505947293],[-71.447776516,41.505977477]]],[[[-71.447897516,41.506077477],[-71.447914334,41.506085972],[-71.447897402,41.506077113],[-71.447860127,41.506053916],[-71.447897516,41.506077477]]],[[[-71.448430516,41.506312477],[-71.448442561,41.50631663],[-71.448430298,41.506312342],[-71.448426782,41.50631097],[-71.448430516,41.506312477]]],[[[-71.448706516,41.506396477],[-71.448793727,41.506416723],[-71.448706845,41.506396193],[-71.448688176,41.506391237],[-71.448706516,41.506396477]]],[[[-71.449027859,41.506471075],[-71.448963636,41.506455174],[-71.448882997,41.506437094],[-71.448801526,41.506418533],[-71.449027859,41.506471075]]],[[[-71.449116516,41.506500476],[-71.449137766,41.506510309],[-71.449116785,41.506500479],[-71.449095534,41.506493105],[-71.449116516,41.506500476]]],[[[-71.44926127,41.506579325],[-71.449261115,41.506579147],[-71.449240967,41.506566831],[-71.44926127,41.506579325]]],[[[-71.449339516,41.506693476],[-71.449340244,41.50669535],[-71.449339459,41.506693096],[-71.449313762,41.506639844],[-71.449313607,41.506639665],[-71.449339516,41.506693476]]],[[[-71.449386516,41.506814477],[-71.449408128,41.506855793],[-71.449386522,41.506814282],[-71.449385583,41.506812074],[-71.449386516,41.506814477]]],[[[-71.449479097,41.506991469],[-71.449455908,41.506946364],[-71.449425457,41.506888923],[-71.449479097,41.506991469]]],[[[-71.449515517,41.507069477],[-71.449555936,41.507180395],[-71.449538032,41.507129039],[-71.44951593,41.507069499],[-71.449501108,41.507037269],[-71.449496872,41.507028044],[-71.449515517,41.507069477]]],[[[-71.449589516,41.507318477],[-71.449580661,41.507348919],[-71.449589789,41.507318928],[-71.449573933,41.507246126],[-71.449559632,41.50719219],[-71.449589516,41.507318477]]],[[[-71.449508516,41.507407477],[-71.449455546,41.507418965],[-71.449500819,41.5074095],[-71.449508852,41.507407834],[-71.449573043,41.507373946],[-71.449573123,41.507373682],[-71.449508516,41.507407477]]],[[[-71.449339517,41.507425477],[-71.449276459,41.507435466],[-71.449339101,41.507425872],[-71.449386981,41.507425477],[-71.449339517,41.507425477]]],[[[-71.448935416,41.507548189],[-71.448989417,41.507526002],[-71.449068753,41.507490687],[-71.448935416,41.507548189]]],[[[-71.448707516,41.507688477],[-71.448697809,41.507698345],[-71.448707224,41.507688802],[-71.448717101,41.507680835],[-71.448707516,41.507688477]]],[[[-71.448566516,41.507870477],[-71.448539516,41.507924477],[-71.448522516,41.507982477],[-71.448519754,41.508009252],[-71.448523016,41.507982027],[-71.448539734,41.507924905],[-71.448566672,41.507870556],[-71.448569839,41.507865512],[-71.448566516,41.507870477]]],[[[-71.448507516,41.508785477],[-71.448519166,41.508816059],[-71.448507927,41.508785739],[-71.448496952,41.508745861],[-71.448507516,41.508785477]]],[[[-71.448615516,41.509087478],[-71.448610655,41.509101252],[-71.448615819,41.50908767],[-71.448620548,41.509032761],[-71.448620501,41.509032644],[-71.448615516,41.509087478]]],[[[-71.448550516,41.509319478],[-71.448543892,41.509340591],[-71.44855083,41.509319519],[-71.448556151,41.509280035],[-71.448550516,41.509319478]]],[[[-71.448447517,41.509583477],[-71.448446239,41.509585539],[-71.448447479,41.509583598],[-71.448478955,41.509524996],[-71.448498142,41.509481306],[-71.448447517,41.509583477]]],[[[-71.448313516,41.509820477],[-71.448343889,41.50976507],[-71.448372208,41.509705083],[-71.448313516,41.509820477]]],[[[-71.448313516,41.509820477],[-71.448208568,41.509953231],[-71.448234354,41.509921543],[-71.448274312,41.509872596],[-71.448313297,41.509820882],[-71.448313516,41.509820477]]],[[[-71.448149516,41.510009477],[-71.448107869,41.510039766],[-71.448149701,41.510009737],[-71.448175404,41.509986894],[-71.448149516,41.510009477]]],[[[-71.447963516,41.510118478],[-71.447893516,41.510142477],[-71.447864814,41.510149722],[-71.447893838,41.51014245],[-71.447963714,41.510118925],[-71.448024167,41.510090751],[-71.447963516,41.510118478]]],[[[-71.447461516,41.510358477],[-71.447441058,41.510374186],[-71.447461773,41.510358534],[-71.447501504,41.510333294],[-71.447461516,41.510358477]]],[[[-71.447311516,41.510505478],[-71.447311463,41.510505583],[-71.447313172,41.510503398],[-71.447311516,41.510505478]]],[[[-71.447261583,41.510635236],[-71.447280935,41.510567688],[-71.447311449,41.510505612],[-71.447280515,41.510567478],[-71.447261583,41.510635236]]],[[[-71.447261583,41.510635236],[-71.447261515,41.510635477],[-71.447259262,41.510648217],[-71.447261583,41.510635236]]],[[[-71.447211053,41.510864967],[-71.447222766,41.510823782],[-71.447236556,41.510772579],[-71.447211053,41.510864967]]],[[[-71.447185516,41.510957478],[-71.447153476,41.51100591],[-71.447185903,41.51095744],[-71.447201813,41.510898438],[-71.447185516,41.510957478]]],[[[-71.447074922,41.511016713],[-71.447119607,41.511020456],[-71.447074516,41.511016478],[-71.447023193,41.510997945],[-71.447074922,41.511016713]]],[[[-71.446466515,41.511019477],[-71.446425831,41.511030965],[-71.446466948,41.511019611],[-71.446475925,41.511017703],[-71.446466515,41.511019477]]],[[[-71.446005516,41.511199477],[-71.445957515,41.511244478],[-71.445957395,41.511244663],[-71.446005692,41.511199816],[-71.446057966,41.511169383],[-71.446005516,41.511199477]]],[[[-71.445824711,41.51157859],[-71.445849468,41.511512969],[-71.44587515,41.51143703],[-71.445881128,41.511417013],[-71.445824711,41.51157859]]],[[[-71.445755516,41.511789478],[-71.445777668,41.511724025],[-71.445797958,41.511656477],[-71.445814137,41.511608874],[-71.445797515,41.511656478],[-71.445755516,41.511789478]]],[[[-71.445755516,41.511789478],[-71.445727515,41.511852478],[-71.445692516,41.511903478],[-71.445638516,41.511944478],[-71.445493515,41.512013478],[-71.445426515,41.512040478],[-71.445373256,41.512041971],[-71.445426556,41.512040836],[-71.445493608,41.512013881],[-71.445566143,41.51198064],[-71.445638588,41.511944631],[-71.445692537,41.511903925],[-71.445727814,41.511852896],[-71.445755516,41.511789478]]],[[[-71.445082515,41.512058478],[-71.44504138,41.512080808],[-71.445082114,41.512058968],[-71.445110711,41.512046453],[-71.445082515,41.512058478]]],[[[-71.444944515,41.512139478],[-71.44489486,41.512191043],[-71.4449447,41.512139931],[-71.444994787,41.512107689],[-71.444944515,41.512139478]]],[[[-71.444892515,41.512193478],[-71.444891654,41.512194908],[-71.444892754,41.51219323],[-71.444892515,41.512193478]]],[[[-71.444764515,41.512533478],[-71.444764994,41.512537197],[-71.444764666,41.512533847],[-71.44476418,41.512499295],[-71.444764515,41.512533478]]],[[[-71.444787515,41.512684478],[-71.444803515,41.512728478],[-71.444818503,41.512749176],[-71.444803539,41.512728032],[-71.444787967,41.51268416],[-71.444782988,41.512670142],[-71.444787515,41.512684478]]],[[[-71.444946515,41.512901478],[-71.444970763,41.512922897],[-71.44494652,41.51290118],[-71.444939683,41.512893699],[-71.444946515,41.512901478]]],[[[-71.445151516,41.513029478],[-71.445314507,41.51308565],[-71.445238971,41.513059213],[-71.445151671,41.513029395],[-71.445118995,41.51301554],[-71.445151516,41.513029478]]],[[[-71.445491515,41.513137478],[-71.445523314,41.513151326],[-71.445491449,41.513137045],[-71.445414398,41.513113338],[-71.445330491,41.513091047],[-71.445491515,41.513137478]]],[[[-71.445669955,41.513321642],[-71.445639337,41.513267085],[-71.445603545,41.513212804],[-71.445669955,41.513321642]]],[[[-71.445138024,41.513399049],[-71.445112516,41.513395478],[-71.445077916,41.513397262],[-71.445112659,41.51339573],[-71.445138024,41.513399049]]],[[[-71.445723959,41.513446448],[-71.445703011,41.513388097],[-71.445675126,41.513331277],[-71.445723959,41.513446448]]],[[[-71.444915516,41.513421478],[-71.444839516,41.513446478],[-71.444779515,41.513479478],[-71.444773479,41.513485515],[-71.44477935,41.513479732],[-71.444839867,41.513446599],[-71.444915256,41.513421684],[-71.444941169,41.513416091],[-71.444915516,41.513421478]]],[[[-71.445743515,41.513523478],[-71.445748606,41.513556144],[-71.445743823,41.513523209],[-71.445735142,41.513488506],[-71.445743515,41.513523478]]],[[[-71.444646515,41.513641478],[-71.444627382,41.513664863],[-71.444646763,41.513641267],[-71.444648087,41.513639298],[-71.444646515,41.513641478]]],[[[-71.445316098,41.513535082],[-71.445346537,41.513593849],[-71.445377946,41.513656116],[-71.445411153,41.513716257],[-71.445445212,41.513761408],[-71.445411515,41.513716478],[-71.445316515,41.513535478],[-71.445283516,41.513486478],[-71.44528323,41.513486255],[-71.445316098,41.513535082]]],[[[-71.445760515,41.513746479],[-71.445751559,41.513805196],[-71.44575159,41.513805153],[-71.445760919,41.513746747],[-71.445760884,41.513679373],[-71.445755898,41.513611651],[-71.445760515,41.513746479]]],[[[-71.444375515,41.513879478],[-71.444352459,41.513900958],[-71.444375818,41.513879646],[-71.444434217,41.513832608],[-71.444490912,41.51378701],[-71.444547544,41.513743493],[-71.444600314,41.513697451],[-71.444375515,41.513879478]]],[[[-71.444152515,41.514116479],[-71.444143533,41.514175357],[-71.444152825,41.514116928],[-71.444181243,41.514078707],[-71.444152515,41.514116479]]],[[[-71.444125515,41.514240478],[-71.444114552,41.514267573],[-71.444126003,41.514240801],[-71.444142826,41.514177968],[-71.444125515,41.514240478]]],[[[-71.444055515,41.514413478],[-71.444051671,41.514421539],[-71.444055506,41.514413618],[-71.444057166,41.514409398],[-71.444055515,41.514413478]]],[[[-71.443922703,41.514649609],[-71.443951951,41.514602016],[-71.443986232,41.514543371],[-71.44400285,41.514514894],[-71.443922703,41.514649609]]],[[[-71.443852515,41.514779479],[-71.443828515,41.514845478],[-71.443826008,41.514858107],[-71.443828873,41.514845406],[-71.443852907,41.514779918],[-71.443872404,41.514738417],[-71.443852515,41.514779479]]],[[[-71.443797515,41.515044478],[-71.443798515,41.515115478],[-71.443808515,41.515188479],[-71.443813976,41.515208764],[-71.443808921,41.51518801],[-71.443798607,41.515115851],[-71.443797574,41.515044313],[-71.443798159,41.515035723],[-71.443797515,41.515044478]]],[[[-71.443857515,41.515370478],[-71.443881515,41.515428478],[-71.443916515,41.515488478],[-71.443926766,41.515501918],[-71.443916802,41.515488551],[-71.44388171,41.515428409],[-71.443857783,41.515370262],[-71.443851722,41.515348962],[-71.443857515,41.515370478]]],[[[-71.444072515,41.515665478],[-71.44408844,41.515679697],[-71.444072716,41.515665091],[-71.444065186,41.515657687],[-71.444072515,41.515665478]]],[[[-71.444373515,41.515941479],[-71.444412515,41.515994478],[-71.444415376,41.515997712],[-71.444412985,41.515994971],[-71.444373383,41.515941139],[-71.444352038,41.515919125],[-71.444373515,41.515941479]]],[[[-71.444626649,41.516179517],[-71.444583346,41.516146384],[-71.44454917,41.516120928],[-71.444626649,41.516179517]]],[[[-71.444798516,41.516309479],[-71.444879515,41.516361479],[-71.444881756,41.516362673],[-71.444879445,41.516361366],[-71.444798275,41.516309252],[-71.444794322,41.516306308],[-71.444798516,41.516309479]]],[[[-71.445211112,41.516538133],[-71.445135568,41.516497473],[-71.445121979,41.516490649],[-71.445211112,41.516538133]]],[[[-71.445280516,41.516582479],[-71.445311282,41.516602169],[-71.445290281,41.516588614],[-71.445215656,41.516540569],[-71.445280516,41.516582479]]],[[[-71.445655516,41.516822479],[-71.445698347,41.516845185],[-71.445655959,41.516822427],[-71.445617993,41.516798464],[-71.445655516,41.516822479]]],[[[-71.446100516,41.517029479],[-71.446367916,41.517143802],[-71.446288517,41.517108255],[-71.446193673,41.51706876],[-71.446100685,41.51702922],[-71.446007668,41.516987622],[-71.445916478,41.516945315],[-71.445850443,41.516916877],[-71.446100516,41.517029479]]],[[[-71.446549516,41.517233479],[-71.446552842,41.517234762],[-71.446549068,41.517233223],[-71.446535538,41.51722653],[-71.446549516,41.517233479]]],[[[-71.446842516,41.517346479],[-71.446860748,41.517354349],[-71.446842766,41.517346108],[-71.446747949,41.517309381],[-71.446724781,41.517301073],[-71.446842516,41.517346479]]],[[[-71.447218252,41.517495383],[-71.44721826,41.517495118],[-71.44718203,41.517482226],[-71.447179445,41.517481307],[-71.447218252,41.517495383]]],[[[-71.447217517,41.517515474],[-71.447217635,41.517515266],[-71.447217812,41.517509578],[-71.447217517,41.517515474]]],[[[-71.447217517,41.517515474],[-71.447186516,41.517568479],[-71.447090865,41.517660185],[-71.447141422,41.517613137],[-71.44718698,41.51756831],[-71.447217517,41.517515474]]],[[[-71.446834277,41.517828205],[-71.446894585,41.517795068],[-71.446947651,41.517765471],[-71.446834277,41.517828205]]],[[[-71.446375516,41.518319479],[-71.446429977,41.518257305],[-71.446463402,41.51820353],[-71.446499452,41.518140746],[-71.44652585,41.518103396],[-71.446499516,41.518140479],[-71.446429516,41.518257479],[-71.446375516,41.518319479]]],[[[-71.446375516,41.518319479],[-71.446298516,41.518370479],[-71.446225515,41.518398479],[-71.446131516,41.518411479],[-71.446116004,41.518412874],[-71.446131884,41.518411835],[-71.446225953,41.518398614],[-71.44629858,41.518370907],[-71.446375457,41.518319554],[-71.446375516,41.518319479]]],[[[-71.445942516,41.518428479],[-71.44591341,41.518434947],[-71.445942691,41.518428692],[-71.445952031,41.518427624],[-71.445942516,41.518428479]]],[[[-71.445741515,41.518516479],[-71.445701515,41.518571479],[-71.445691918,41.518591999],[-71.445701722,41.518571699],[-71.44574157,41.518516487],[-71.445754757,41.51850618],[-71.445741515,41.518516479]]],[[[-71.445340339,41.519079581],[-71.44544092,41.519067646],[-71.445516778,41.519071913],[-71.445589722,41.519067808],[-71.445663291,41.519042892],[-71.445663332,41.519042541],[-71.445589516,41.519067479],[-71.445516516,41.51907148],[-71.445440516,41.519067479],[-71.445340516,41.519079479],[-71.445340339,41.519079581]]],[[[-71.445340339,41.519079581],[-71.445283516,41.51911248],[-71.445282003,41.519121405],[-71.44528353,41.519112694],[-71.445340339,41.519079581]]],[[[-71.445277516,41.51922748],[-71.445285044,41.519241188],[-71.445277804,41.519227361],[-71.44527512,41.519193946],[-71.445277516,41.51922748]]],[[[-71.473134526,41.542856483],[-71.473282526,41.542950483],[-71.476044527,41.544636484],[-71.477051528,41.545243484],[-71.477205528,41.545205484],[-71.478491528,41.544920483],[-71.478943528,41.544793484],[-71.479691528,41.544587483],[-71.480141528,41.544457483],[-71.480522529,41.544331483],[-71.480881528,41.544197483],[-71.481133528,41.544083483],[-71.481383529,41.543964483],[-71.482147529,41.543606483],[-71.482212529,41.543572483],[-71.482826529,41.543263483],[-71.483032529,41.543156483],[-71.483902529,41.542736483],[-71.48442153,41.542496482],[-71.48514653,41.542160483],[-71.48537453,41.542065483],[-71.48549753,41.542027482],[-71.48557353,41.542008482],[-71.48564953,41.541996482],[-71.48582553,41.541985483],[-71.48600053,41.541996482],[-71.48610753,41.542012482],[-71.48621453,41.542038483],[-71.48644353,41.542115483],[-71.48667953,41.542233483],[-71.48729753,41.542569483],[-71.48732153,41.542580482],[-71.488022531,41.542927482],[-71.488136531,41.542988482],[-71.488289531,41.543057483],[-71.488396531,41.543080482],[-71.488518531,41.543076483],[-71.488663531,41.543038483],[-71.488800531,41.542954483],[-71.488953531,41.542820483],[-71.488998531,41.542759483],[-71.489044531,41.542698482],[-71.489120531,41.542546483],[-71.489296531,41.542084483],[-71.489388531,41.541817482],[-71.489433531,41.541623482],[-71.489464531,41.541413482],[-71.489471531,41.541230482],[-71.489449531,41.540974482],[-71.489433531,41.540707482],[-71.489441531,41.540367482],[-71.489471531,41.540028482],[-71.489525531,41.539811482],[-71.489609531,41.539627482],[-71.489700531,41.539563482],[-71.489540531,41.539410482],[-71.489349531,41.539132482],[-71.489166531,41.538887481],[-71.489037531,41.538670482],[-71.488937531,41.538453482],[-71.48887653,41.538247481],[-71.488815531,41.537964482],[-71.488808531,41.537907482],[-71.488754531,41.537621481],[-71.48870153,41.537297481],[-71.488556531,41.536526482],[-71.488457531,41.536038482],[-71.488434531,41.535950481],[-71.488396531,41.535675481],[-71.48817453,41.534603481],[-71.488129531,41.534302481],[-71.48809853,41.534047481],[-71.48807553,41.533787481],[-71.48806853,41.533440481],[-71.48804553,41.533151481],[-71.488014531,41.532734481],[-71.48796153,41.532345481],[-71.48792353,41.531983481],[-71.48786953,41.53162048],[-71.487801531,41.53130448],[-71.48759553,41.53043848],[-71.48745753,41.52981648],[-71.487335529,41.52921048],[-71.48709153,41.52821048],[-71.48707653,41.52813448],[-71.487061529,41.52805448],[-71.486847529,41.52716148],[-71.48677853,41.526856479],[-71.486717529,41.526528479],[-71.48666453,41.52620748],[-71.486542529,41.525635479],[-71.48647353,41.525219479],[-71.486420529,41.524926479],[-71.486214529,41.524006479],[-71.486191529,41.523898479],[-71.486023529,41.522971479],[-71.485986529,41.522769479],[-71.485947529,41.522553479],[-71.485907529,41.522393478],[-71.485756529,41.521782479],[-71.485649529,41.521408479],[-71.485603529,41.521145478],[-71.485545529,41.520860479],[-71.485428529,41.520272478],[-71.485413529,41.519944478],[-71.485420529,41.519669478],[-71.485405528,41.519558478],[-71.485367528,41.519459478],[-71.485619528,41.519444478],[-71.485725529,41.519432478],[-71.485832529,41.519425478],[-71.486076529,41.519398478],[-71.486359529,41.519368478],[-71.486641529,41.519349478],[-71.48696153,41.519314478],[-71.48732853,41.519257478],[-71.48760253,41.519234478],[-71.48764053,41.519238478],[-71.487907529,41.519242478],[-71.48816753,41.519219478],[-71.48839353,41.519178478],[-71.48853353,41.519154478],[-71.48893053,41.519093478],[-71.48947153,41.519036478],[-71.48951553,41.519030478],[-71.48997553,41.518971478],[-71.490471531,41.518898477],[-71.49090653,41.518803478],[-71.491115531,41.518774478],[-71.49203553,41.518647477],[-71.492416531,41.518605477],[-71.492895531,41.518541478],[-71.493113531,41.518508477],[-71.493767532,41.518402478],[-71.493919532,41.518364478],[-71.494118532,41.518303478],[-71.494247532,41.518235477],[-71.494431532,41.518116478],[-71.495010532,41.517697477],[-71.495491532,41.517361477],[-71.495926532,41.516987477],[-71.495987532,41.516941477],[-71.496368532,41.516663477],[-71.496498533,41.516552477],[-71.496509532,41.516538477],[-71.496567532,41.516465477],[-71.496605532,41.516384477],[-71.496613533,41.516304477],[-71.496605532,41.516163477],[-71.496559532,41.515915477],[-71.496513532,41.515629477],[-71.496452532,41.515297477],[-71.496384532,41.515015477],[-71.496315532,41.514771477],[-71.496170532,41.514187477],[-71.496063532,41.513806477],[-71.495941532,41.513436477],[-71.495819531,41.513039477],[-71.495735532,41.512719476],[-71.495621532,41.512177476],[-71.495552532,41.511902476],[-71.495506531,41.511689476],[-71.495491531,41.511456476],[-71.495483532,41.511242476],[-71.495483532,41.510716476],[-71.495491531,41.510559476],[-71.495514532,41.510369476],[-71.495552531,41.510273476],[-71.495644531,41.510075476],[-71.495796532,41.509873476],[-71.495941532,41.509659476],[-71.496056531,41.509518475],[-71.496254532,41.509297476],[-71.496513532,41.509060476],[-71.496796532,41.508793476],[-71.497139532,41.508488475],[-71.497459532,41.508183476],[-71.497734532,41.507931476],[-71.498116533,41.507569475],[-71.498405533,41.507317475],[-71.498689532,41.507049475],[-71.498825532,41.506913475],[-71.498962532,41.506752475],[-71.499077532,41.506596475],[-71.499104533,41.506569475],[-71.499199532,41.506478475],[-71.499356533,41.506349475],[-71.499557533,41.506226475],[-71.499725533,41.506131475],[-71.499863533,41.506066475],[-71.499977533,41.506020475],[-71.500168532,41.505970475],[-71.500336533,41.505921475],[-71.500473533,41.505875475],[-71.500595533,41.505818475],[-71.500839533,41.505669475],[-71.501106533,41.505482475],[-71.501549534,41.505158475],[-71.501816533,41.504986475],[-71.502052534,41.504856475],[-71.502243533,41.504769475],[-71.502472533,41.504689475],[-71.502808534,41.504563475],[-71.503120534,41.504456475],[-71.503380534,41.504330474],[-71.503632534,41.504181474],[-71.503807534,41.504048475],[-71.503967534,41.503907474],[-71.504150534,41.503785474],[-71.504349534,41.503689474],[-71.504509534,41.503636474],[-71.504631535,41.503613474],[-71.504799534,41.503594474],[-71.505035534,41.503594474],[-71.505394534,41.503617474],[-71.505643535,41.503629474],[-71.505844534,41.503640475],[-71.506218535,41.503666475],[-71.506773535,41.503684475],[-71.507576536,41.503701475],[-71.508354536,41.503708474],[-71.508774535,41.503708474],[-71.508523535,41.502681474],[-71.507886535,41.500068474],[-71.507322535,41.499969474],[-71.506810535,41.499885473],[-71.506398535,41.499805474],[-71.506047534,41.499755474],[-71.505727534,41.499736474],[-71.505355534,41.499728473],[-71.504956534,41.499725474],[-71.504369534,41.499729473],[-71.503835533,41.499725474],[-71.503438534,41.499709473],[-71.503225534,41.499675474],[-71.502927533,41.499576473],[-71.502698534,41.499488474],[-71.502385533,41.499400473],[-71.502088533,41.499328474],[-71.501561533,41.499229474],[-71.500997533,41.499111474],[-71.500295533,41.498931473],[-71.499707532,41.498767474],[-71.499666532,41.498757473],[-71.499234532,41.498653474],[-71.499120532,41.498622473],[-71.498265532,41.498412474],[-71.497304531,41.498164474],[-71.496946532,41.498088474],[-71.496068531,41.497924474],[-71.495397531,41.497814474],[-71.49389453,41.497581474],[-71.49231553,41.497310473],[-71.49171253,41.497199473],[-71.491568529,41.497163474],[-71.491527529,41.497134473],[-71.489210529,41.497205474],[-71.487180528,41.497413474],[-71.482973527,41.497600474],[-71.478728526,41.497885474],[-71.478687525,41.497893474],[-71.476001525,41.498003474],[-71.473739524,41.498126475],[-71.470946523,41.498361475],[-71.469565523,41.498380475],[-71.466376521,41.498572475],[-71.458115519,41.499077475],[-71.457966518,41.499066475],[-71.457894519,41.499061475],[-71.456491518,41.499143475],[-71.456481519,41.499143475],[-71.455362518,41.499280475],[-71.454417517,41.499462475],[-71.453453517,41.499882476],[-71.452481517,41.500344475],[-71.45248109,41.500344747],[-71.452514158,41.500375504],[-71.452560323,41.500437615],[-71.452592762,41.500506833],[-71.452605517,41.500542161],[-71.45261875,41.500578815],[-71.452642884,41.500648052],[-71.452674292,41.500713085],[-71.452716747,41.500773204],[-71.452771246,41.500835936],[-71.452829516,41.500902123],[-71.452887814,41.500970414],[-71.452945169,41.50103939],[-71.452996931,41.501102898],[-71.453042154,41.501163614],[-71.453084638,41.501225769],[-71.453105062,41.50129505],[-71.453113498,41.501365836],[-71.453131154,41.501435139],[-71.453157967,41.50150232],[-71.453185696,41.501565978],[-71.453213339,41.501623416],[-71.453254766,41.501675141],[-71.4533017,41.501726824],[-71.453342214,41.50177999],[-71.453378104,41.501832468],[-71.453412081,41.501880806],[-71.453427996,41.501959165],[-71.453409458,41.502017682],[-71.453375222,41.502076284],[-71.45332891,41.502131542],[-71.453276945,41.5021806],[-71.453216588,41.502223479],[-71.453149694,41.502260135],[-71.453085423,41.502288445],[-71.453023036,41.502318837],[-71.452964447,41.50235545],[-71.45289967,41.502410175],[-71.452888234,41.502447745],[-71.452938733,41.502492477],[-71.452997452,41.502527446],[-71.453075494,41.502555974],[-71.453171003,41.502578768],[-71.453273875,41.502600148],[-71.45337766,41.502621505],[-71.453479648,41.502645674],[-71.453576213,41.502680315],[-71.453663649,41.502718475],[-71.453739097,41.50276022],[-71.453804441,41.502805506],[-71.453857828,41.502854377],[-71.453900197,41.50290958],[-71.453923304,41.502972619],[-71.453927031,41.503037159],[-71.453927959,41.503100372],[-71.453914957,41.503159509],[-71.453878866,41.503217469],[-71.453837207,41.503275451],[-71.453784474,41.503333565],[-71.453719694,41.503391034],[-71.453654119,41.503455455],[-71.453589543,41.50352548],[-71.453529533,41.503591939],[-71.453471465,41.503664688],[-71.453416224,41.503740136],[-71.453375856,41.503821765],[-71.4533493,41.503902508],[-71.453343097,41.503982459],[-71.453343401,41.504067193],[-71.453343793,41.504156774],[-71.453343145,41.50417045],[-71.453339591,41.504247109],[-71.453338069,41.504332551],[-71.453341055,41.504411705],[-71.453351406,41.504485945],[-71.45337457,41.504553809],[-71.453415317,41.504624334],[-71.453469937,41.504693355],[-71.453516194,41.504759628],[-71.453550316,41.50481908],[-71.4535678,41.504875897],[-71.45356593,41.504937736],[-71.453551246,41.505007987],[-71.453534765,41.50508105],[-71.453517255,41.505147868],[-71.453481103,41.505203062],[-71.453423571,41.505247292],[-71.45334928,41.505286118],[-71.453263944,41.505326403],[-71.453181376,41.505368061],[-71.453104404,41.505411048],[-71.453038478,41.50545189],[-71.452961476,41.505494214],[-71.452849556,41.505484014],[-71.452758304,41.505500054],[-71.452699031,41.505554025],[-71.452660167,41.505613403],[-71.452654732,41.505682902],[-71.452658371,41.505741222],[-71.452649963,41.505798256],[-71.452617434,41.505848488],[-71.452563523,41.505889929],[-71.452499422,41.505930062],[-71.452426927,41.505965389],[-71.452344243,41.505996618],[-71.452264152,41.506018129],[-71.452191196,41.506019425],[-71.452111295,41.505988837],[-71.452090799,41.505976502],[-71.452007853,41.505991767],[-71.452001609,41.506000684],[-71.451955347,41.50606653],[-71.451924877,41.506129982],[-71.451898174,41.506198992],[-71.45187972,41.506264415],[-71.45189649,41.506337194],[-71.4519406,41.50638405],[-71.452006093,41.506438394],[-71.45208363,41.506498185],[-71.452146469,41.506561561],[-71.452185332,41.506628609],[-71.45221038,41.506699265],[-71.452220759,41.506776249],[-71.452219207,41.506858924],[-71.45221577,41.506940225],[-71.452206826,41.507022942],[-71.452195169,41.507111261],[-71.452183513,41.507198871],[-71.452170003,41.507284444],[-71.452151779,41.507365808],[-71.452152112,41.507451273],[-71.452163577,41.507540082],[-71.452181494,41.507626744],[-71.452218704,41.507709091],[-71.452275326,41.507789205],[-71.452336514,41.507865067],[-71.452386596,41.507943852],[-71.452421895,41.508018583],[-71.452441348,41.508085073],[-71.452444161,41.508150345],[-71.452438666,41.508217078],[-71.45240828,41.508288168],[-71.452361311,41.508362224],[-71.452312488,41.508433421],[-71.452275739,41.508510157],[-71.452256602,41.508592938],[-71.452251396,41.508680505],[-71.45224622,41.508768072],[-71.452242697,41.50884313],[-71.45222604,41.508903682],[-71.452151267,41.508970958],[-71.452076856,41.509000086],[-71.451996879,41.509027839],[-71.451917016,41.509064604],[-71.45184546,41.509101303],[-71.451794374,41.509145489],[-71.451767467,41.509201967],[-71.45173137,41.50925995],[-71.451694301,41.509315096],[-71.451685863,41.509370712],[-71.451685817,41.509431844],[-71.451681235,41.509497181],[-71.451640729,41.509633675],[-71.45159647,41.509702083],[-71.451534452,41.50975818],[-71.451455704,41.509808163],[-71.451360256,41.509853382],[-71.451270375,41.509899244],[-71.45120727,41.509944226],[-71.451168288,41.509993174],[-71.451127479,41.510045597],[-71.45107365,41.510093304],[-71.450995671,41.510132149],[-71.450898136,41.510159323],[-71.450791236,41.510179654],[-71.450670375,41.510193851],[-71.450537439,41.510202598],[-71.450404504,41.510209928],[-71.45026877,41.510217348],[-71.450132978,41.510220514],[-71.449996273,41.510224411],[-71.449854088,41.510231828],[-71.449781096,41.510233122],[-71.449708135,41.510233045],[-71.449635086,41.510229491],[-71.449498606,41.510217447],[-71.449375086,41.510207993],[-71.449260416,41.510201996],[-71.449143921,41.510196708],[-71.44903202,41.510190689],[-71.448926542,41.510181151],[-71.448827488,41.510167385],[-71.448737622,41.510152823],[-71.448659834,41.510140301],[-71.448564459,41.510127886],[-71.448482191,41.510125082],[-71.448397268,41.510132042],[-71.448299615,41.51015297],[-71.448273533,41.510200436],[-71.448282992,41.510280943],[-71.448296818,41.510341943],[-71.448317095,41.510401483],[-71.448347477,41.510456132],[-71.448390762,41.510508547],[-71.448448775,41.510558063],[-71.448516008,41.510606829],[-71.448586011,41.510653493],[-71.448642139,41.510701636],[-71.448690991,41.510755402],[-71.448731564,41.510812732],[-71.448770194,41.510865213],[-71.448827178,41.510907799],[-71.448889615,41.51094339],[-71.448938292,41.510988145],[-71.448966877,41.511046247],[-71.448977021,41.511107978],[-71.44897883,41.511167738],[-71.448983379,41.511225989],[-71.448997146,41.511284222],[-71.44901651,41.511345225],[-71.449035817,41.511401288],[-71.449046759,41.511454717],[-71.449015543,41.511530677],[-71.448983009,41.511580245],[-71.448960896,41.511649188],[-71.448994336,41.511724605],[-71.449051439,41.51177348],[-71.449118645,41.511818746],[-71.449185879,41.511868907],[-71.449239356,41.511923315],[-71.449282641,41.511977833],[-71.449328608,41.512025377],[-71.449380941,41.512065926],[-71.449448918,41.512099415],[-71.449497101,41.512115399],[-71.449530622,41.512126506],[-71.449617663,41.512139008],[-71.44970079,41.512136917],[-71.44977461,41.512129357],[-71.449844662,41.512116283],[-71.44994694,41.512097368],[-71.450050276,41.512086802],[-71.450125184,41.512090356],[-71.450196553,41.512104338],[-71.450284738,41.512132803],[-71.450364444,41.512148115],[-71.450437467,41.512148215],[-71.450509518,41.512146919],[-71.450536178,41.512139064],[-71.450563319,41.512098527],[-71.450568844,41.512034585],[-71.450582793,41.511976135],[-71.450624576,41.511926457],[-71.450699049,41.511901561],[-71.450808719,41.511883312],[-71.450889818,41.511866651],[-71.450970858,41.511847224],[-71.451049012,41.51182226],[-71.451112381,41.511793265],[-71.451189361,41.511750965],[-71.451256238,41.511710811],[-71.451310922,41.511659652],[-71.451392759,41.511631876],[-71.45148899,41.511640836],[-71.451551371,41.51167224],[-71.451609329,41.511718988],[-71.45166549,41.511767839],[-71.451718027,41.511820896],[-71.451762286,41.511876786],[-71.451792613,41.511930017],[-71.45180439,41.511967643],[-71.451811038,41.511988938],[-71.451816532,41.512047213],[-71.451813718,41.512108343],[-71.451805367,41.51216883],[-71.451788708,41.512230801],[-71.451759118,41.512292857],[-71.45171474,41.512354359],[-71.451662027,41.51241453],[-71.4516074,41.512471247],[-71.45155083,41.512520348],[-71.451493116,41.512554171],[-71.451405624,41.512575015],[-71.45132989,41.512576995],[-71.451288818,41.512612083],[-71.451240496,41.512658306],[-71.451168343,41.512713803],[-71.45108317,41.512765888],[-71.450996169,41.512820121],[-71.450919332,41.512873535],[-71.450859991,41.512924716],[-71.450820948,41.512971582],[-71.450769177,41.51303244],[-71.450741643,41.513108356],[-71.450741627,41.513170174],[-71.450738297,41.513187599],[-71.450728736,41.51323768],[-71.450722297,41.513301599],[-71.450732443,41.513364747],[-71.450745358,41.513426456],[-71.450755736,41.513503463],[-71.450736393,41.513571699],[-71.450681823,41.513630451],[-71.450595503,41.513667989],[-71.450502529,41.51369306],[-71.450461629,41.513740635],[-71.450487708,41.513816163],[-71.450529169,41.513872052],[-71.450580054,41.513937619],[-71.450628169,41.514005998],[-71.450674428,41.514073667],[-71.450709641,41.514142131],[-71.450720758,41.514208024],[-71.450706954,41.514275508],[-71.45068216,41.514349344],[-71.45064903,41.514421873],[-71.450608506,41.514495131],[-71.450556935,41.514569893],[-71.450499883,41.514650188],[-71.450433669,41.514734824],[-71.450363743,41.514818726],[-71.450292903,41.51490336],[-71.450221178,41.514990784],[-71.450148452,41.515074731],[-71.450072901,41.515152433],[-71.449990868,41.515230201],[-71.449907922,41.515308677],[-71.449831486,41.515388528],[-71.449765126,41.515463375],[-71.449704188,41.515529877],[-71.449633623,41.51557211],[-71.449555434,41.515596363],[-71.44952642,41.515616842],[-71.449499629,41.515635721],[-71.449494324,41.515649441],[-71.449476487,41.515695653],[-71.449453489,41.515767386],[-71.449407366,41.51583721],[-71.449340919,41.515905127],[-71.44926896,41.515977273],[-71.449201713,41.516055596],[-71.449131669,41.516131905],[-71.449051315,41.516199244],[-71.44896054,41.516247916],[-71.448863967,41.516277193],[-71.448767989,41.516286321],[-71.448671924,41.516288496],[-71.448574147,41.516301809],[-71.448476486,41.51632276],[-71.448379738,41.516343025],[-71.448292355,41.516370818],[-71.448219992,41.51641449],[-71.448159877,41.516476097],[-71.448104564,41.516544591],[-71.448041909,41.516624287],[-71.447983085,41.516706752],[-71.447940816,41.516787669],[-71.447916989,41.516864982],[-71.447890393,41.51694227],[-71.447850836,41.517018295],[-71.447805624,41.517086747],[-71.447757616,41.51715243],[-71.447707665,41.517211892],[-71.447654712,41.517257493],[-71.447579664,41.517308779],[-71.447529568,41.517357812],[-71.447508193,41.517413559],[-71.447500693,41.517469221],[-71.447486452,41.517506127],[-71.447433846,41.517575307],[-71.447387547,41.517632644],[-71.447321576,41.517671378],[-71.447246123,41.517694945],[-71.447186662,41.517735695],[-71.447160748,41.51779638],[-71.447112649,41.517858564],[-71.447054987,41.517895175],[-71.446991812,41.517937364],[-71.446935265,41.517986439],[-71.446884254,41.518036844],[-71.446833272,41.518090061],[-71.44678877,41.518144585],[-71.446746981,41.518194262],[-71.44670148,41.518242565],[-71.44665044,41.518290912],[-71.446591919,41.518334452],[-71.446525004,41.518372522],[-71.446451609,41.518409262],[-71.446373559,41.51844392],[-71.446295538,41.518480658],[-71.446221227,41.518519456],[-71.446145918,41.518552034],[-71.446062102,41.518567317],[-71.445984476,41.518568653],[-71.445903281,41.518579066],[-71.445856096,41.51863846],[-71.445837547,41.518696267],[-71.445817112,41.5187527],[-71.445792253,41.518823059],[-71.44576999,41.518882258],[-71.44575418,41.518938671],[-71.44574488,41.518998471],[-71.445726416,41.519062521],[-71.445703298,41.519125906],[-71.445664305,41.519176247],[-71.445595245,41.51919419],[-71.445510022,41.519180999],[-71.445434282,41.519182313],[-71.445402884,41.519247866],[-71.445393496,41.519302109],[-71.445366436,41.519348179],[-71.445344285,41.519349059],[-71.445344516,41.519349479],[-71.445306516,41.519388479],[-71.445280516,41.51946148],[-71.445215515,41.519514479],[-71.445125516,41.519527479],[-71.445042515,41.519527479],[-71.444968516,41.519532479],[-71.444888515,41.519571479],[-71.444803515,41.519667479],[-71.444731515,41.519727479],[-71.444673515,41.519761479],[-71.444608515,41.519873479],[-71.444551515,41.51997048],[-71.444537515,41.520132479],[-71.444539515,41.520248479],[-71.444564516,41.520286479],[-71.444649515,41.52052948],[-71.444666515,41.520596479],[-71.444669515,41.520658479],[-71.444663516,41.52072548],[-71.444641516,41.52078948],[-71.444576515,41.52089548],[-71.444595515,41.52093348],[-71.444541516,41.52098348],[-71.444454515,41.52103248],[-71.444383515,41.52108848],[-71.444334515,41.52115148],[-71.444317515,41.52121548],[-71.444359515,41.52127048],[-71.444457515,41.521316479],[-71.444572515,41.52135448],[-71.444689515,41.52138248],[-71.444807515,41.52140348],[-71.444925516,41.521414479],[-71.445045516,41.52142048],[-71.445170516,41.521436479],[-71.445296516,41.52145848],[-71.445526516,41.521474479],[-71.445635516,41.52150248],[-71.445731516,41.52153848],[-71.445827516,41.52156048],[-71.445916516,41.521574479],[-71.446004516,41.52158248],[-71.446097516,41.521572479],[-71.446293516,41.521534479],[-71.446394516,41.52152948],[-71.446702516,41.52153648],[-71.446790516,41.521552479],[-71.446861516,41.52158148],[-71.446920516,41.52162148],[-71.447106516,41.52177548],[-71.447149516,41.52182248],[-71.447454516,41.521824479],[-71.447557516,41.52181448],[-71.447696517,41.521844479],[-71.447765516,41.521863479],[-71.447845516,41.52186848],[-71.447924516,41.52186048],[-71.447989517,41.52181348],[-71.448094517,41.52170448],[-71.448209517,41.52162548],[-71.448279517,41.52158548],[-71.448346517,41.52156648],[-71.448510517,41.52154148],[-71.448610517,41.52154448],[-71.448710517,41.521533479],[-71.448781517,41.521516479],[-71.448847517,41.521494479],[-71.448937517,41.521455479],[-71.449015517,41.521415479],[-71.449079517,41.521377479],[-71.449118517,41.521321479],[-71.449158517,41.52119748],[-71.449184517,41.521142479],[-71.449300517,41.52095748],[-71.449368517,41.520914479],[-71.449439517,41.52088048],[-71.449510517,41.520838479],[-71.449614517,41.52074748],[-71.449673517,41.52070448],[-71.449741517,41.52066948],[-71.449820517,41.520644479],[-71.449972517,41.52060848],[-71.450105518,41.520557479],[-71.450176517,41.520536479],[-71.450250517,41.520522479],[-71.450324517,41.520522479],[-71.450394518,41.520536479],[-71.450464517,41.520565479],[-71.450530518,41.520603479],[-71.450655517,41.52068948],[-71.450712517,41.520740479],[-71.450832517,41.520927479],[-71.450887517,41.52099648],[-71.451056518,41.52117248],[-71.451134518,41.521281479],[-71.451353518,41.521533479],[-71.451398518,41.521594479],[-71.451447518,41.52164348],[-71.451509518,41.521667479],[-71.451586518,41.52166348],[-71.451681518,41.521650479],[-71.451787518,41.52164448],[-71.451886518,41.52164548],[-71.451966518,41.521650479],[-71.452043518,41.52166648],[-71.452120518,41.52170248],[-71.452192518,41.521749479],[-71.452257518,41.521804479],[-71.452306518,41.521862479],[-71.452409518,41.522043479],[-71.452414518,41.522098479],[-71.452427518,41.522155479],[-71.452502519,41.52225948],[-71.452532518,41.522334479],[-71.452540518,41.522408479],[-71.452571518,41.52248048],[-71.452623518,41.52251948],[-71.452696519,41.52256148],[-71.452785518,41.52259948],[-71.452877518,41.522623479],[-71.452967519,41.52263648],[-71.452981518,41.52263948],[-71.453748519,41.52589148],[-71.453994519,41.52592748],[-71.454108519,41.525937481],[-71.454192519,41.52593848],[-71.454230519,41.52591148],[-71.454227519,41.52588948],[-71.454352519,41.52590648],[-71.454430519,41.52591248],[-71.454500519,41.52592848],[-71.454580519,41.525954481],[-71.454656519,41.525993481],[-71.454729519,41.52604548],[-71.454779519,41.52610648],[-71.454783519,41.526168481],[-71.454803519,41.526230481],[-71.454925519,41.526342481],[-71.455059519,41.52650648],[-71.45511552,41.526560481],[-71.455181519,41.52661148],[-71.455228519,41.52666648],[-71.455247519,41.526729481],[-71.455243519,41.52684548],[-71.45521352,41.52691648],[-71.455147519,41.52701648],[-71.455118519,41.527087481],[-71.455141519,41.52714848],[-71.45521352,41.52718948],[-71.455305519,41.527222481],[-71.455478519,41.52726548],[-71.455704519,41.52732848],[-71.45579952,41.52736948],[-71.455920519,41.52744348],[-71.45597352,41.52748348],[-71.45614252,41.52766048],[-71.45618552,41.52771748],[-71.456251519,41.52777148],[-71.456327519,41.52779248],[-71.45649952,41.52781348],[-71.45677452,41.527822481],[-71.45695952,41.52783448],[-71.45704452,41.52783548],[-71.45712052,41.52781448],[-71.45718452,41.527782481],[-71.45723352,41.527725481],[-71.45724052,41.527651481],[-71.45722952,41.52758048],[-71.45715052,41.52748148],[-71.45711552,41.52740848],[-71.45711152,41.527339481],[-71.45714452,41.527274481],[-71.45722952,41.52724948],[-71.45731752,41.52724848],[-71.45749452,41.527280481],[-71.45759352,41.52728448],[-71.45768852,41.527279481],[-71.45773952,41.52723248],[-71.45780452,41.527183481],[-71.45787152,41.527122481],[-71.45796152,41.52703148],[-71.45801152,41.526990481],[-71.45809552,41.52694448],[-71.458197521,41.52694148],[-71.45830352,41.52695948],[-71.45839752,41.526970481],[-71.458486521,41.526945481],[-71.45857952,41.526912481],[-71.45864952,41.52690048],[-71.45872552,41.52689648],[-71.45883252,41.526906481],[-71.45891052,41.526949481],[-71.45894152,41.52701848],[-71.458938521,41.52708948],[-71.45886252,41.52722548],[-71.458854521,41.52729248],[-71.45888452,41.527357481],[-71.459107521,41.52766048],[-71.459162521,41.527725481],[-71.459355521,41.52789048],[-71.459417521,41.527938481],[-71.45945052,41.527958481],[-71.459476521,41.52812748],[-71.459475521,41.52818548],[-71.459461521,41.52830048],[-71.45942952,41.52836148],[-71.459367521,41.528410481],[-71.459206521,41.52847348],[-71.45915552,41.528520481],[-71.459170521,41.528582481],[-71.459211521,41.528646481],[-71.459263521,41.528704481],[-71.459339521,41.528745481],[-71.459405521,41.528791481],[-71.459438521,41.528848481],[-71.459425521,41.528911481],[-71.459439521,41.528977481],[-71.459472521,41.529037481],[-71.459568521,41.52913948],[-71.459612521,41.529200481],[-71.459614521,41.529257481],[-71.459609521,41.529323481],[-71.459593521,41.529381481],[-71.459554521,41.529435481],[-71.459528521,41.529486481],[-71.459563521,41.529609481],[-71.459573521,41.52968348],[-71.459571521,41.529763481],[-71.459591521,41.529894481],[-71.459596521,41.529965481],[-71.459612521,41.530032481],[-71.45970052,41.530282481],[-71.459716521,41.530341481],[-71.45973952,41.530397481],[-71.459769521,41.530454481],[-71.459846521,41.530560481],[-71.459884521,41.530623481],[-71.459887521,41.530685481],[-71.459884521,41.530860481],[-71.459907521,41.531032481],[-71.459950521,41.531355481],[-71.460255521,41.531333481],[-71.460297521,41.531330481],[-71.461037521,41.531250481],[-71.462349522,41.531052481],[-71.463089522,41.530915481],[-71.463852523,41.530758481],[-71.465599523,41.530381481],[-71.465981523,41.530304481],[-71.466080523,41.530281481],[-71.466225523,41.530255481],[-71.466263523,41.530354481],[-71.466316523,41.530461481],[-71.466560523,41.531037481],[-71.466698524,41.531376481],[-71.467543523,41.533355481],[-71.467705524,41.533734482],[-71.467957524,41.534294482],[-71.468269524,41.535019482],[-71.468399524,41.535344482],[-71.468521524,41.535668482],[-71.468620524,41.536011482],[-71.468697524,41.536358482],[-71.468814524,41.537121482],[-71.468829796,41.537350393],[-71.468844525,41.537578483],[-71.468849524,41.537747482],[-71.468819524,41.538239483],[-71.468788524,41.538559482],[-71.468765525,41.538750483],[-71.468750524,41.539048482],[-71.468735524,41.539219482],[-71.468727525,41.539429483],[-71.468742525,41.539502483],[-71.468758524,41.539639483],[-71.468796524,41.539753483],[-71.468842525,41.539864482],[-71.468882525,41.539948483],[-71.468895524,41.539975483],[-71.468971524,41.540108483],[-71.469025524,41.540188483],[-71.469162524,41.540356483],[-71.469339524,41.540500483],[-71.469345525,41.540505483],[-71.469696525,41.540741482],[-71.470142525,41.541022483],[-71.471039525,41.541584483],[-71.473134526,41.542856483]]]]}}"}, +{"type": "precinct", "typeId": 2307, "areaId": 26045, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":384,\"NAME\":\"2307\",\"SHAPE_Length\":0.31275876887498,\"SHAPE_Area\":-0.00073097032738325},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.435141683,41.548886489],[-71.435132089,41.548890212],[-71.435120032,41.548922246],[-71.435145521,41.548945267],[-71.43520432,41.548933111],[-71.435209502,41.548895333],[-71.435186133,41.548883885],[-71.435141683,41.548886489]]],[[[-71.42999694,41.549392165],[-71.430060434,41.549432272],[-71.430102532,41.549466007],[-71.430168829,41.549503188],[-71.430230232,41.549534603],[-71.43029361,41.549568877],[-71.430346505,41.549612705],[-71.430385079,41.549667593],[-71.430430414,41.549720907],[-71.430489266,41.549774847],[-71.430552872,41.549823666],[-71.430604995,41.549878425],[-71.430608248,41.549883207],[-71.430648553,41.549942647],[-71.430684292,41.550001878],[-71.430719029,41.550058936],[-71.430780632,41.550102678],[-71.430848592,41.550123141],[-71.430896852,41.550118345],[-71.43091928,41.550069485],[-71.430892105,41.5500015],[-71.430854618,41.549953863],[-71.430821972,41.549905496],[-71.43080991,41.549883328],[-71.430794079,41.549854183],[-71.430770828,41.549789767],[-71.430757429,41.54973613],[-71.430739188,41.549683312],[-71.430709149,41.549617475],[-71.430667538,41.54955465],[-71.430630884,41.549497636],[-71.430615535,41.549445507],[-71.43068943,41.549409966],[-71.430759741,41.5493948],[-71.430842799,41.549388972],[-71.430926084,41.549397667],[-71.430992355,41.549431211],[-71.431039066,41.549450404],[-71.431073035,41.549399996],[-71.431077766,41.549330955],[-71.431101943,41.549269016],[-71.431136799,41.549213509],[-71.431173578,41.549153612],[-71.431205516,41.549094513],[-71.431232671,41.549037606],[-71.431259708,41.548977132],[-71.431270454,41.548920375],[-71.431266562,41.548857961],[-71.431248206,41.548799289],[-71.431213557,41.548745868],[-71.43115585,41.548704279],[-71.431080013,41.548677338],[-71.431000252,41.548647537],[-71.430940597,41.548604506],[-71.430889536,41.548554116],[-71.430848126,41.548503641],[-71.430815337,41.548448024],[-71.430801853,41.548388601],[-71.430807698,41.548331178],[-71.430825086,41.548269989],[-71.430839582,41.548208158],[-71.430845373,41.548144949],[-71.430848212,41.548080252],[-71.430849132,41.548016332],[-71.430851916,41.547946581],[-71.430851805,41.547879046],[-71.430840012,41.547804369],[-71.430823405,41.547733326],[-71.430799953,41.547657292],[-71.430773783,41.547589994],[-71.43074085,41.547527105],[-71.430709064,41.547472907],[-71.430670492,41.547417333],[-71.430615735,41.547378627],[-71.430529333,41.547354676],[-71.43045195,41.547351748],[-71.430372675,41.547353187],[-71.430295379,41.547354603],[-71.430214185,41.547356773],[-71.430125291,41.547357588],[-71.430034446,41.547359842],[-71.429942715,41.547366487],[-71.429864472,41.547370053],[-71.429788148,41.54737362],[-71.429712825,41.547379406],[-71.429632636,41.547381552],[-71.42956015,41.547382926],[-71.429486632,41.547380662],[-71.429414117,41.547380595],[-71.429341746,41.547387777],[-71.429260639,41.547394337],[-71.429182426,41.547398634],[-71.42910318,41.547401535],[-71.429023935,41.54740295],[-71.428950505,41.547404345],[-71.428873206,41.547408666],[-71.428795106,41.547420967],[-71.428744788,41.547417094],[-71.428670559,41.547369799],[-71.428611852,41.547326013],[-71.428552058,41.547274267],[-71.428490461,41.547228352],[-71.428436625,41.547185254],[-71.428383704,41.547139939],[-71.428328372,41.547100775],[-71.428325999,41.547099081],[-71.428263656,41.547068419],[-71.428187594,41.547026955],[-71.428126082,41.546988289],[-71.428070355,41.546948118],[-71.428020212,41.546896309],[-71.427954862,41.546859105],[-71.427869805,41.546859875],[-71.427788698,41.546866388],[-71.427713351,41.546867049],[-71.427618612,41.546868613],[-71.427543204,41.546869275],[-71.427465879,41.546869249],[-71.427391388,41.546867007],[-71.427310056,41.546857556],[-71.427242011,41.54683494],[-71.427174828,41.546804321],[-71.427110395,41.546764921],[-71.427054612,41.546721113],[-71.427000776,41.54667877],[-71.426947944,41.546637113],[-71.426900838,41.546593219],[-71.426836491,41.546558233],[-71.426764581,41.546534883],[-71.426708685,41.546484534],[-71.426668282,41.546435521],[-71.426623095,41.546390896],[-71.426564505,41.546352918],[-71.426500157,41.546319372],[-71.426438759,41.54628871],[-71.426367824,41.546265338],[-71.426297951,41.546244893],[-71.426207684,41.546223223],[-71.426133054,41.546210071],[-71.426044905,41.54619922],[-71.425955981,41.546200741],[-71.425885756,41.54622169],[-71.42582727,41.546254173],[-71.425810682,41.54630443],[-71.42583579,41.546363748],[-71.425906867,41.546395811],[-71.425980693,41.546419872],[-71.426066263,41.546450321],[-71.426140259,41.546485977],[-71.426201657,41.546516662],[-71.426264085,41.546552379],[-71.426319839,41.546594037],[-71.426379517,41.546638512],[-71.426443032,41.546681524],[-71.426501736,41.546726044],[-71.426562387,41.546771982],[-71.426633637,41.546813468],[-71.426695177,41.546854307],[-71.426757719,41.54689661],[-71.426831774,41.546934461],[-71.42689509,41.546966542],[-71.42695941,41.546998692],[-71.427033382,41.547029224],[-71.42711603,41.547060448],[-71.42718499,41.547080914],[-71.427272109,41.547088128],[-71.427365846,41.5470851],[-71.427442198,41.547084416],[-71.427535963,41.547083583],[-71.427618129,41.54708288],[-71.427707023,41.547082067],[-71.427783375,41.547081383],[-71.427843782,41.547100472],[-71.427857234,41.547104711],[-71.427918028,41.547159339],[-71.427972783,41.54719736],[-71.428049703,41.547233703],[-71.428123845,41.547275898],[-71.428182465,41.547315317],[-71.428227654,41.547359941],[-71.428290427,41.547416057],[-71.428351107,41.547464167],[-71.428411758,41.547511545],[-71.42846468,41.547556814],[-71.428519663,41.547609358],[-71.428576535,41.547660415],[-71.428616941,41.547708719],[-71.428651646,41.547764314],[-71.428688214,41.54781481],[-71.428725756,41.547864598],[-71.428763382,41.547921659],[-71.428797974,41.547970004],[-71.428832624,41.548020499],[-71.428870221,41.548076096],[-71.428908678,41.548125884],[-71.428953006,41.548178489],[-71.42899642,41.548233289],[-71.429036825,41.548282324],[-71.429079265,41.548336437],[-71.429125485,41.548386139],[-71.429168727,41.548430762],[-71.429205266,41.548479817],[-71.429254493,41.548535992],[-71.429292065,41.548587976],[-71.429323849,41.548642883],[-71.429334383,41.54869796],[-71.429386504,41.548752696],[-71.429440286,41.548792157],[-71.429501859,41.548833749],[-71.429570274,41.548881817],[-71.429633936,41.548934228],[-71.429699403,41.548978704],[-71.429761034,41.549023155],[-71.429805249,41.549069264],[-71.429834975,41.549114016],[-71.429847514,41.549173439],[-71.429878327,41.549226219],[-71.429913922,41.549277446],[-71.429950577,41.549333019],[-71.42999694,41.549392165]]],[[[-71.417052508,41.554559214],[-71.417076581,41.55461421],[-71.417114116,41.554666151],[-71.417156547,41.55472315],[-71.417204739,41.554774299],[-71.417249953,41.554821123],[-71.417297143,41.554870784],[-71.417350005,41.554913177],[-71.417411461,41.554948944],[-71.417473893,41.554984002],[-71.417545089,41.555022566],[-71.417611416,41.555059731],[-71.417668499,41.555062859],[-71.417723992,41.555023906],[-71.417759922,41.554973481],[-71.41778812,41.554921679],[-71.417825055,41.554871209],[-71.417881319,41.55482352],[-71.417940733,41.5547896],[-71.418005071,41.554762157],[-71.418069437,41.554736154],[-71.418141566,41.554710843],[-71.418226185,41.554680303],[-71.418293529,41.554658648],[-71.418379176,41.554633209],[-71.418461041,41.554613622],[-71.41853142,41.554599927],[-71.418621074,41.554583913],[-71.418693428,41.554573078],[-71.418786033,41.554559193],[-71.418877721,41.554548212],[-71.418967461,41.554536543],[-71.419051411,41.554528529],[-71.419139372,41.554527767],[-71.419221548,41.554527025],[-71.419316297,41.554526908],[-71.419405288,41.554529784],[-71.419495282,41.554534078],[-71.419575567,41.554535529],[-71.41965969,41.554536228],[-71.419738858,41.55452972],[-71.4198121,41.554515271],[-71.419887178,41.55449282],[-71.419926655,41.554477342],[-71.419961137,41.554463827],[-71.420029371,41.554436362],[-71.420091704,41.554403885],[-71.420097616,41.554350122],[-71.420047533,41.554299659],[-71.420000514,41.554258713],[-71.419957244,41.554214086],[-71.419927023,41.554179235],[-71.419917872,41.554168662],[-71.419892739,41.554106416],[-71.419885993,41.55404695],[-71.419903393,41.553985054],[-71.419918874,41.553923911],[-71.41992737,41.553898394],[-71.41993828,41.55386563],[-71.419962551,41.553811674],[-71.419988744,41.553754792],[-71.420022725,41.553702215],[-71.420065471,41.553653166],[-71.420103264,41.553596201],[-71.420135355,41.553545819],[-71.420116514,41.553516944],[-71.420071921,41.553508611],[-71.420001599,41.553526652],[-71.419962214,41.553541536],[-71.419927789,41.553558779],[-71.419901772,41.553571842],[-71.419837435,41.553600727],[-71.419772211,41.553632517],[-71.419694268,41.553657916],[-71.419618135,41.553672385],[-71.41953524,41.553689091],[-71.419462915,41.553702076],[-71.41937613,41.553713725],[-71.419294068,41.553721717],[-71.419220684,41.553728893],[-71.419187832,41.553729213],[-71.419120955,41.553719606],[-71.41904317,41.553691238],[-71.418959627,41.553666595],[-71.418878285,41.553658579],[-71.418791299,41.553660072],[-71.41870245,41.553666665],[-71.418626259,41.553678251],[-71.418535661,41.553695728],[-71.418455602,41.553708776],[-71.418366981,41.553726986],[-71.418289844,41.553740745],[-71.418201191,41.553760395],[-71.418112596,41.553782219],[-71.418046227,41.553803921],[-71.417969342,41.55383506],[-71.41790108,41.553860374],[-71.417838691,41.553888505],[-71.417758971,41.553921884],[-71.417697554,41.553951502],[-71.417633525,41.553999985],[-71.417572392,41.554046276],[-71.417503493,41.554093361],[-71.417449921,41.554130875],[-71.417396351,41.554166925],[-71.417335935,41.554199402],[-71.417261199,41.554239279],[-71.417191188,41.554275477],[-71.417116249,41.554307349],[-71.417049019,41.554334813],[-71.41698393,41.554378241],[-71.417018658,41.554434595],[-71.417038921,41.554493979],[-71.417052508,41.554559214]]],[[[-71.454271049,41.57044863],[-71.454261111,41.570483009],[-71.454271521,41.570448489],[-71.454327521,41.570423489],[-71.454327581,41.570423238],[-71.454271049,41.57044863]]],[[[-71.454208649,41.570837138],[-71.454206237,41.57086787],[-71.4542153,41.570778531],[-71.454208649,41.570837138]]],[[[-71.454124461,41.57128606],[-71.45408503,41.571327776],[-71.454124521,41.571286489],[-71.454141522,41.571227489],[-71.454141622,41.571227017],[-71.454124461,41.57128606]]],[[[-71.436811594,41.572567997],[-71.436752626,41.572607415],[-71.436760253,41.572655514],[-71.436817413,41.572690902],[-71.436892297,41.572696249],[-71.436940266,41.572661582],[-71.436948753,41.572640318],[-71.436943088,41.572578543],[-71.436896724,41.572558987],[-71.436850099,41.572557978],[-71.436811594,41.572567997]]],[[[-71.443684132,41.573013662],[-71.443699923,41.573067322],[-71.443718419,41.573125763],[-71.44372047,41.573183441],[-71.443711559,41.573239651],[-71.443746045,41.573262537],[-71.443769118,41.573241417],[-71.444086797,41.572744614],[-71.444480474,41.572157008],[-71.444527139,41.57207566],[-71.444329673,41.57200293],[-71.444386483,41.571916808],[-71.444163764,41.571816462],[-71.444683171,41.570882418],[-71.444559379,41.570841764],[-71.445408169,41.569496083],[-71.445807556,41.568887938],[-71.445871713,41.568860547],[-71.445945062,41.568839336],[-71.446012872,41.568813205],[-71.44607703,41.568784328],[-71.446129199,41.568744925],[-71.446173153,41.56869573],[-71.446197685,41.568637424],[-71.446227788,41.568582642],[-71.446256915,41.568529209],[-71.446286105,41.568472277],[-71.446319893,41.568417497],[-71.446358275,41.568366904],[-71.446412364,41.568323363],[-71.446465476,41.568284646],[-71.446508454,41.56823616],[-71.446561599,41.568193258],[-71.446608226,41.568151748],[-71.446659547,41.568104706],[-71.446713639,41.568058374],[-71.44677317,41.568026636],[-71.446828105,41.567991419],[-71.446877567,41.567945748],[-71.446930678,41.567907054],[-71.446986526,41.567871815],[-71.44704342,41.567824089],[-71.447103966,41.567779155],[-71.447162583,41.567746753],[-71.447218465,41.56770806],[-71.447276238,41.567664497],[-71.447346917,41.56762867],[-71.447409249,41.567596246],[-71.447455063,41.567579504],[-71.447486347,41.567568106],[-71.44750101,41.567587621],[-71.447462563,41.56764448],[-71.44740935,41.567697079],[-71.447369045,41.567754623],[-71.447386173,41.567813132],[-71.447426544,41.567862],[-71.447480839,41.56790191],[-71.447536009,41.567952271],[-71.447575468,41.567999012],[-71.447631592,41.568037527],[-71.447675679,41.568085734],[-71.44772707,41.56814021],[-71.447780415,41.56818778],[-71.447834674,41.568235305],[-71.447885252,41.568278666],[-71.447945053,41.568326926],[-71.448003027,41.568375847],[-71.448052627,41.56842273],[-71.448103202,41.568469544],[-71.448152867,41.568512195],[-71.44820439,41.568555557],[-71.448257772,41.568596129],[-71.448320376,41.568643726],[-71.448388559,41.568683664],[-71.448466133,41.568709061],[-71.448540055,41.568730958],[-71.44861773,41.568744531],[-71.448692734,41.568746989],[-71.448699219,41.568748364],[-71.448763921,41.568762595],[-71.448810816,41.56880385],[-71.448877271,41.568834754],[-71.448959879,41.568810777],[-71.449028533,41.568794433],[-71.449111913,41.568795476],[-71.449185938,41.568802804],[-71.44926476,41.568791313],[-71.449342538,41.568790295],[-71.449422849,41.568820564],[-71.449452384,41.56882618],[-71.449494068,41.568834112],[-71.449575526,41.568839362],[-71.449650497,41.568845935],[-71.449736551,41.568853314],[-71.449808716,41.568864758],[-71.449889194,41.568877645],[-71.449959402,41.568898853],[-71.450024981,41.568921386],[-71.450095123,41.568950232],[-71.450167968,41.568988136],[-71.450253043,41.569002443],[-71.450334532,41.569006961],[-71.450417815,41.569015687],[-71.450494513,41.569034153],[-71.450560024,41.569065056],[-71.450638475,41.569100149],[-71.450709496,41.56913597],[-71.450779636,41.569167583],[-71.450853493,41.56919714],[-71.450933126,41.569200307],[-71.451001812,41.569181103],[-71.45106408,41.569153571],[-71.451089519,41.56909874],[-71.451094516,41.569054947],[-71.451114446,41.568995929],[-71.451129714,41.568941048],[-71.451138991,41.568916238],[-71.451151471,41.56888274],[-71.451176942,41.568825828],[-71.451160756,41.568765948],[-71.451145481,41.568709522],[-71.451146831,41.568655276],[-71.451185175,41.568609552],[-71.451252168,41.568574384],[-71.451316327,41.568541296],[-71.451372144,41.568504683],[-71.451427077,41.568469464],[-71.451495016,41.568430843],[-71.451535186,41.568385783],[-71.451587448,41.568339426],[-71.451661707,41.568318897],[-71.45173394,41.56832062],[-71.451799165,41.568327211],[-71.451813507,41.56832868],[-71.451877534,41.568307667],[-71.45196175,41.568206938],[-71.451993707,41.568149343],[-71.452009887,41.568095857],[-71.452027992,41.568032653],[-71.452048867,41.567971554],[-71.452079911,41.567912563],[-71.452105317,41.567860522],[-71.452133591,41.567800821],[-71.452159941,41.567747386],[-71.452177978,41.567693901],[-71.452116216,41.567658884],[-71.452112117,41.567642142],[-71.452100945,41.567595415],[-71.45209036,41.567537024],[-71.452083398,41.567479961],[-71.452082045,41.567415971],[-71.452098257,41.5673583],[-71.452116362,41.567295119],[-71.452102033,41.567235903],[-71.452121961,41.567177571],[-71.452138176,41.567117133],[-71.452144218,41.567058063],[-71.452130768,41.567003742],[-71.452100596,41.566954262],[-71.452058427,41.566903268],[-71.452016228,41.566851611],[-71.451979569,41.566803455],[-71.451954089,41.566751164],[-71.451938781,41.566697551],[-71.451927225,41.56663422],[-71.45194435,41.56657934],[-71.45201033,41.566551123],[-71.45207996,41.566527779],[-71.452150566,41.566503064],[-71.452228307,41.566507601],[-71.452297531,41.566539213],[-71.452353685,41.566579807],[-71.452401394,41.566634966],[-71.452443658,41.566680403],[-71.452490554,41.566722342],[-71.452538331,41.566767758],[-71.452585161,41.566815964],[-71.452638509,41.566863487],[-71.452704767,41.566913896],[-71.452769198,41.566962841],[-71.452832718,41.567009727],[-71.452885189,41.567048924],[-71.452933944,41.567090178],[-71.452999288,41.567140564],[-71.453054562,41.567179053],[-71.453105143,41.567220994],[-71.453168629,41.56727346],[-71.453237689,41.567323161],[-71.453300264,41.567372128],[-71.453352767,41.56740993],[-71.453421051,41.567439437],[-71.453490414,41.567450191],[-71.453514802,41.567413449],[-71.453479121,41.567358364],[-71.453437931,41.567299024],[-71.453397555,41.567251553],[-71.45335069,41.567207509],[-71.453303859,41.567157932],[-71.453257942,41.567109727],[-71.453206451,41.567062205],[-71.453150364,41.567011183],[-71.453095157,41.566965055],[-71.453036267,41.566917462],[-71.452974639,41.566864333],[-71.452918551,41.566816101],[-71.452862496,41.566763661],[-71.452806475,41.566707058],[-71.452749443,41.566658803],[-71.452694269,41.566609862],[-71.45264281,41.566561631],[-71.452600545,41.566516926],[-71.45258064,41.566461207],[-71.45256905,41.566402039],[-71.452635094,41.566368951],[-71.45272317,41.566357529],[-71.452797362,41.566341848],[-71.452861516,41.566310886],[-71.452910027,41.566267979],[-71.452953911,41.566220886],[-71.453019078,41.566179472],[-71.453087927,41.566141491],[-71.453144717,41.56610211],[-71.453208905,41.56606623],[-71.453274949,41.566032456],[-71.453331705,41.565998632],[-71.453417041,41.56598371],[-71.453485424,41.566000729],[-71.453568737,41.566004605],[-71.453647521,41.565997319],[-71.453731911,41.565985872],[-71.453807079,41.565967401],[-71.453877653,41.565942684],[-71.453943665,41.56591099],[-71.454005961,41.565879272],[-71.454079371,41.565848336],[-71.454159204,41.565821541],[-71.454241769,41.565807349],[-71.45432339,41.565791007],[-71.45439214,41.565762813],[-71.454449839,41.565728989],[-71.454502942,41.565691686],[-71.45455517,41.565643223],[-71.454588002,41.565591917],[-71.454591307,41.565526556],[-71.454585255,41.565471598],[-71.454548627,41.565419944],[-71.454508251,41.565373868],[-71.454523348,41.565339821],[-71.454594865,41.565315104],[-71.454669967,41.565302258],[-71.454737801,41.565276122],[-71.454806481,41.565258356],[-71.454884353,41.565248256],[-71.454954526,41.565272228],[-71.455003212,41.565324619],[-71.455043524,41.56537696],[-71.455105218,41.565422449],[-71.455182791,41.565447842],[-71.455252118,41.565463466],[-71.455327052,41.565473535],[-71.455411243,41.565484362],[-71.455492564,41.565505617],[-71.455559899,41.565541388],[-71.455611326,41.565593757],[-71.45567211,41.565633711],[-71.455747044,41.565645175],[-71.45583306,41.565658769],[-71.455906914,41.565691113],[-71.455965774,41.565740031],[-71.456034868,41.565785591],[-71.456098424,41.565826872],[-71.456182649,41.565832141],[-71.456244942,41.565803212],[-71.456292506,41.56576099],[-71.456341926,41.565720186],[-71.456408784,41.565695443],[-71.45645474,41.565688005],[-71.456483916,41.565683282],[-71.456555136,41.565693349],[-71.456607541,41.565741555],[-71.456645083,41.565794582],[-71.456684549,41.56583997],[-71.456727729,41.565885383],[-71.45677176,41.565934958],[-71.456809302,41.565987984],[-71.456830153,41.566045806],[-71.456814856,41.56610764],[-71.456741347,41.566149739],[-71.456672535,41.566182782],[-71.456614767,41.566229118],[-71.456546021,41.566253859],[-71.45646994,41.566270914],[-71.456454347,41.566273813],[-71.456389233,41.566285841],[-71.456317814,41.566299444],[-71.456231529,41.566321297],[-71.456160958,41.566342539],[-71.456087481,41.566382533],[-71.456048161,41.566436628],[-71.4560328,41.566501229],[-71.456028651,41.566557555],[-71.456020719,41.5666236],[-71.456001771,41.566677771],[-71.455977153,41.566742346],[-71.455961788,41.566812481],[-71.455957574,41.566873679],[-71.455931161,41.566934777],[-71.45584856,41.566956654],[-71.455777006,41.566988347],[-71.455735859,41.567041686],[-71.455702015,41.567103467],[-71.455670975,41.567161018],[-71.455639901,41.567223509],[-71.455603319,41.567281767],[-71.455561165,41.567337187],[-71.455516335,41.567388466],[-71.455462282,41.567432721],[-71.455397215,41.567462335],[-71.455318496,41.567461962],[-71.455240757,41.567452601],[-71.455168592,41.56744251],[-71.455114227,41.567408184],[-71.455089691,41.567351778],[-71.455060563,41.567286931],[-71.455018392,41.567234588],[-71.454961293,41.567192623],[-71.454882839,41.567161627],[-71.454807157,41.567128619],[-71.45472678,41.567105283],[-71.45465458,41.567101481],[-71.454569275,41.567113614],[-71.454506066,41.567142565],[-71.454449275,41.567182633],[-71.454405361,41.567227646],[-71.454360565,41.567272636],[-71.454310164,41.567318996],[-71.454258915,41.567359112],[-71.454191856,41.567406082],[-71.454115574,41.567447469],[-71.454042975,41.567490252],[-71.453975069,41.567528897],[-71.453900713,41.567559856],[-71.453813681,41.567557374],[-71.453733273,41.567534769],[-71.453660227,41.567521224],[-71.453586978,41.567535511],[-71.453577221,41.567595265],[-71.453591585,41.567650959],[-71.453604058,41.567712255],[-71.453553655,41.5677593],[-71.453493246,41.567789624],[-71.453416151,41.567817128],[-71.453341014,41.567832054],[-71.45328469,41.567812295],[-71.453208608,41.567829348],[-71.453174151,41.567850053],[-71.453171046,41.567889685],[-71.453095028,41.567901867],[-71.453023572,41.567920316],[-71.452957593,41.567947138],[-71.452899857,41.567985833],[-71.452835634,41.568025189],[-71.452776007,41.568068068],[-71.452721986,41.568106741],[-71.452659587,41.568150282],[-71.452607393,41.568189002],[-71.452547763,41.568235311],[-71.45248719,41.568279585],[-71.452429451,41.568322419],[-71.452374419,41.568368799],[-71.452224745,41.568490769],[-71.45221222,41.568502245],[-71.452162728,41.568552103],[-71.452116952,41.568599882],[-71.452066716,41.568625383],[-71.452037963,41.568632918],[-71.45200516,41.568681434],[-71.451971411,41.568731367],[-71.451940434,41.568781302],[-71.451902902,41.568841639],[-71.451886689,41.568898601],[-71.451903821,41.568956423],[-71.45188852,41.569016175],[-71.451865819,41.569075169],[-71.451835685,41.569137637],[-71.451813932,41.569191783],[-71.451785623,41.569255623],[-71.451765726,41.569311874],[-71.451742145,41.56936602],[-71.451716676,41.569421537],[-71.451694952,41.569476392],[-71.451675057,41.569528504],[-71.451641273,41.569585367],[-71.451589043,41.569628934],[-71.451541406,41.569679479],[-71.451495563,41.569734255],[-71.451436845,41.569780542],[-71.451370793,41.5698185],[-71.451314,41.569855114],[-71.451283123,41.569892515],[-71.45130238,41.569918321],[-71.451255659,41.569966807],[-71.451216366,41.570016715],[-71.451177042,41.57006939],[-71.451130283,41.570125516],[-71.45109285,41.570174052],[-71.451060893,41.570228148],[-71.451066977,41.570278258],[-71.45112776,41.570321645],[-71.451191349,41.570360185],[-71.451256863,41.570389714],[-71.451327039,41.570416479],[-71.451397247,41.570441825],[-71.451461883,41.570465751],[-71.451538547,41.570489751],[-71.451613385,41.57051375],[-71.451680725,41.570545316],[-71.451748064,41.570579008],[-71.451815373,41.570612701],[-71.451879061,41.570642206],[-71.451944576,41.570671027],[-71.452015631,41.570704766],[-71.452081212,41.57072732],[-71.452144903,41.570752641],[-71.45221518,41.570766849],[-71.45247259,41.570791769],[-71.452535446,41.570792641],[-71.452608596,41.570793701],[-71.45263738,41.570786166],[-71.45267113,41.57073486],[-71.452751715,41.570730342],[-71.452825742,41.570739017],[-71.452851757,41.570729423],[-71.45286618,41.570662031],[-71.45288425,41.57060507],[-71.452909722,41.570546077],[-71.452914662,41.570536428],[-71.452939853,41.570487109],[-71.452981001,41.570438596],[-71.453046105,41.570404821],[-71.453113611,41.570419028],[-71.453140038,41.57047061],[-71.453220487,41.57048489],[-71.453254879,41.570471823],[-71.453275687,41.570417699],[-71.453298355,41.570362135],[-71.453325651,41.570306641],[-71.453390753,41.570274947],[-71.453445687,41.570238995],[-71.453485321,41.570219709],[-71.45351079,41.570207301],[-71.453594141,41.570207678],[-71.453669114,41.570212877],[-71.453746893,41.570213937],[-71.453827441,41.570215708],[-71.453902447,41.570218116],[-71.453987624,41.570221284],[-71.454072801,41.570224474],[-71.454147773,41.570231067],[-71.454220821,41.570246693],[-71.454223894,41.570250582],[-71.454257485,41.570293454],[-71.45432016,41.570334781],[-71.454350484,41.570327646],[-71.454350521,41.570327489],[-71.454383062,41.57031998],[-71.454389554,41.570318452],[-71.45443746,41.570263559],[-71.454449353,41.570220659],[-71.454455794,41.570197342],[-71.454469884,41.570142118],[-71.454483237,41.570098],[-71.454487522,41.570082489],[-71.454497521,41.570018489],[-71.454500358,41.569846835],[-71.454500125,41.56983762],[-71.454501521,41.569776489],[-71.454501529,41.569776443],[-71.454510318,41.569720828],[-71.454511195,41.569711587],[-71.454519521,41.569601489],[-71.454537573,41.56949662],[-71.454540057,41.569479633],[-71.454542385,41.56941704],[-71.454549157,41.569354646],[-71.454549502,41.569349652],[-71.454551764,41.569287029],[-71.454557904,41.569216799],[-71.454563066,41.569151462],[-71.454567283,41.569087474],[-71.454571466,41.569028358],[-71.454574546,41.568987589],[-71.454575521,41.568973489],[-71.454578408,41.568955524],[-71.454584395,41.568917148],[-71.454620034,41.56886168],[-71.454620521,41.56886135],[-71.454620521,41.568207489],[-71.455086521,41.568116489],[-71.455513521,41.568062488],[-71.455588521,41.568055489],[-71.456085522,41.568009488],[-71.456451522,41.567963489],[-71.456619521,41.567921489],[-71.456856522,41.567818488],[-71.456963522,41.567753488],[-71.457718522,41.567315489],[-71.457802522,41.567265488],[-71.458102522,41.567088488],[-71.458534522,41.566834488],[-71.459015523,41.566559489],[-71.459282523,41.566418488],[-71.459503523,41.566357488],[-71.459763523,41.566311488],[-71.460121523,41.566277488],[-71.462921524,41.566159488],[-71.463318524,41.566136488],[-71.463753524,41.566193488],[-71.464546524,41.566357488],[-71.465263524,41.566510488],[-71.465714525,41.566601488],[-71.465813525,41.566624488],[-71.466476525,41.566777488],[-71.467575526,41.567067488],[-71.468437525,41.567299488],[-71.468742526,41.567379488],[-71.469971526,41.567730488],[-71.471496527,41.568180488],[-71.472220936,41.568386281],[-71.472752479,41.567745102],[-71.476706528,41.562975487],[-71.476793528,41.562998487],[-71.476977529,41.563020487],[-71.477163528,41.563024487],[-71.477253528,41.563016487],[-71.477336528,41.562989487],[-71.477398528,41.562941487],[-71.477523529,41.562859487],[-71.477594529,41.562841487],[-71.477829529,41.562881487],[-71.478056528,41.562935487],[-71.478178529,41.562993486],[-71.478198529,41.563110487],[-71.478202529,41.563173487],[-71.48380753,41.561867486],[-71.486252531,41.561760487],[-71.486942248,41.561741446],[-71.489776365,41.561710157],[-71.489555533,41.560772486],[-71.489227532,41.559414486],[-71.489067532,41.558796486],[-71.488983532,41.558392485],[-71.488884532,41.558007485],[-71.488808532,41.557675485],[-71.488635532,41.557104485],[-71.488525531,41.556759485],[-71.488403532,41.556477486],[-71.488312531,41.556229485],[-71.488159531,41.555878485],[-71.487930532,41.555405485],[-71.487579531,41.554715485],[-71.487335531,41.554314484],[-71.486877531,41.553605485],[-71.486702531,41.553353485],[-71.486420531,41.552983485],[-71.486092531,41.552563484],[-71.486000531,41.552437485],[-71.485733531,41.552090484],[-71.48548953,41.551762484],[-71.485285531,41.551500485],[-71.485013531,41.551619485],[-71.48485853,41.551653485],[-71.48479353,41.551699485],[-71.48450853,41.551731485],[-71.48443153,41.551745484],[-71.48433253,41.551757485],[-71.48425553,41.551771485],[-71.48418253,41.551793485],[-71.48411153,41.551838484],[-71.48407453,41.551888485],[-71.48401053,41.551924485],[-71.48392153,41.551949485],[-71.48384953,41.551984485],[-71.48382353,41.552106485],[-71.48380153,41.552161485],[-71.48380053,41.552220485],[-71.48374853,41.552235485],[-71.48369953,41.552183485],[-71.48364053,41.552134484],[-71.48356153,41.552025485],[-71.48348253,41.552019484],[-71.48339853,41.552019484],[-71.48331653,41.552026485],[-71.48316053,41.552017484],[-71.48308053,41.552016484],[-71.48300153,41.552008485],[-71.482930529,41.551988485],[-71.482853529,41.551984485],[-71.48282753,41.551994484],[-71.48264553,41.552058484],[-71.48241453,41.552221485],[-71.48231753,41.552315485],[-71.482253529,41.552352485],[-71.482110529,41.552418485],[-71.48204453,41.552461484],[-71.481996529,41.552505485],[-71.48198653,41.552514485],[-71.48175653,41.552688485],[-71.481527529,41.552893485],[-71.48148153,41.552948484],[-71.481445529,41.553000485],[-71.481418529,41.553057485],[-71.481415529,41.553114485],[-71.48140553,41.553170485],[-71.481374529,41.553230485],[-71.48132453,41.553291485],[-71.481243529,41.553470485],[-71.481257529,41.553537485],[-71.481278529,41.553601485],[-71.481270529,41.553658485],[-71.48120853,41.553695485],[-71.481143529,41.553728485],[-71.481098529,41.553779485],[-71.481079529,41.553847485],[-71.481074529,41.554032485],[-71.481063529,41.554094485],[-71.481037529,41.554157485],[-71.480999529,41.554216485],[-71.480900529,41.554320485],[-71.480822529,41.554356485],[-71.480746529,41.554361485],[-71.480718529,41.554358485],[-71.480670529,41.554353485],[-71.480592529,41.554367485],[-71.480521529,41.554367485],[-71.480462529,41.554331485],[-71.480405529,41.554280485],[-71.480319529,41.554176485],[-71.480205529,41.554097485],[-71.480179529,41.554046485],[-71.480182529,41.553987485],[-71.480213529,41.553935485],[-71.480261529,41.553881485],[-71.480327529,41.553838485],[-71.480375529,41.553791485],[-71.480530529,41.553484485],[-71.480558529,41.553417485],[-71.480518529,41.553215485],[-71.480509529,41.553093485],[-71.480471529,41.552904485],[-71.480422529,41.552705485],[-71.480416529,41.552644485],[-71.480414529,41.552517485],[-71.480439529,41.552253485],[-71.480452529,41.552196485],[-71.480515529,41.552094484],[-71.480524529,41.552036484],[-71.480474529,41.551986485],[-71.480420529,41.551948485],[-71.480343529,41.551909485],[-71.480275528,41.551882484],[-71.480198528,41.551859484],[-71.480113529,41.551865485],[-71.480025528,41.551876484],[-71.479952529,41.551877484],[-71.479863529,41.551891485],[-71.479791528,41.551916484],[-71.479716529,41.551956484],[-71.479652528,41.552010485],[-71.479507529,41.552144485],[-71.479462528,41.552191484],[-71.479354529,41.552354485],[-71.479222528,41.552509485],[-71.479135529,41.552597484],[-71.479097529,41.552644485],[-71.478933528,41.552799485],[-71.478875528,41.552847485],[-71.478805529,41.552894485],[-71.478668528,41.552964485],[-71.478518529,41.553016485],[-71.478447528,41.553031485],[-71.478282529,41.553051485],[-71.478110528,41.553052485],[-71.477864528,41.553033485],[-71.477707528,41.552996485],[-71.477619528,41.552964485],[-71.477506528,41.552880485],[-71.477429528,41.552843485],[-71.477346528,41.552825485],[-71.477257528,41.552821485],[-71.477179528,41.552842485],[-71.477112528,41.552882485],[-71.477072528,41.552940485],[-71.477047528,41.553004485],[-71.477020527,41.553055485],[-71.476960527,41.553109485],[-71.476900528,41.553142485],[-71.476855528,41.553186485],[-71.476873528,41.553216485],[-71.476943527,41.553243485],[-71.477098527,41.553267485],[-71.477176528,41.553298485],[-71.477261528,41.553395485],[-71.477330527,41.553435485],[-71.477406528,41.553457485],[-71.477468528,41.553489485],[-71.477494528,41.553547485],[-71.477474528,41.553610485],[-71.477425528,41.553662485],[-71.477430528,41.553695485],[-71.477492528,41.553702485],[-71.477640528,41.553641485],[-71.477723528,41.553619485],[-71.477808528,41.553622485],[-71.477872528,41.553654485],[-71.477927528,41.553702485],[-71.477970528,41.553762485],[-71.478036528,41.553872485],[-71.478081528,41.553932485],[-71.478139528,41.553969485],[-71.478216528,41.553972485],[-71.478279528,41.553944485],[-71.478396528,41.553879485],[-71.478465528,41.553885485],[-71.478527528,41.553920485],[-71.478585528,41.553966485],[-71.478655529,41.554010485],[-71.478730529,41.554034485],[-71.478803528,41.554064485],[-71.478826529,41.554109485],[-71.478813528,41.554123485],[-71.478780528,41.554159485],[-71.478717528,41.554197485],[-71.478641528,41.554210485],[-71.478475529,41.554210485],[-71.478391528,41.554204485],[-71.478323529,41.554187485],[-71.478259528,41.554157485],[-71.478199528,41.554109485],[-71.478167529,41.554117486],[-71.478111528,41.554163485],[-71.478045528,41.554187485],[-71.477977528,41.554224485],[-71.477896528,41.554240485],[-71.477820528,41.554228485],[-71.477748528,41.554222485],[-71.477587528,41.554236485],[-71.477510528,41.554219485],[-71.477438528,41.554195486],[-71.477378528,41.554212485],[-71.477348528,41.554269485],[-71.477369528,41.554381485],[-71.477349528,41.554443485],[-71.477312528,41.554499485],[-71.477262528,41.554542485],[-71.477190528,41.554574485],[-71.477131528,41.554615485],[-71.477127528,41.554670485],[-71.477145528,41.554732485],[-71.477167528,41.554785485],[-71.477149528,41.554899485],[-71.477167528,41.554956485],[-71.477201528,41.555016485],[-71.477289528,41.555120485],[-71.477334528,41.555180485],[-71.477368528,41.555235485],[-71.477349528,41.555288485],[-71.477287528,41.555317485],[-71.477208528,41.555314485],[-71.477131528,41.555284486],[-71.477078528,41.555245486],[-71.477022528,41.555193485],[-71.476992528,41.555138485],[-71.476989528,41.555070486],[-71.476993528,41.555011486],[-71.477024528,41.554894486],[-71.477026528,41.554831485],[-71.477021528,41.554774485],[-71.477000528,41.554712485],[-71.476965528,41.554660486],[-71.476914528,41.554611485],[-71.476856528,41.554564486],[-71.476791528,41.554526486],[-71.476713528,41.554488485],[-71.476646528,41.554439485],[-71.476590527,41.554405485],[-71.476439528,41.554332485],[-71.476358527,41.554305485],[-71.476285528,41.554306485],[-71.476130528,41.554329486],[-71.476087527,41.554323485],[-71.476048527,41.554318485],[-71.475958528,41.554318485],[-71.475801528,41.554341485],[-71.475723528,41.554358485],[-71.475558527,41.554406486],[-71.475474528,41.554418485],[-71.475390527,41.554419485],[-71.475310527,41.554425485],[-71.475055527,41.554474485],[-71.474901527,41.554526486],[-71.474744527,41.554570485],[-71.474663527,41.554586485],[-71.474588527,41.554577485],[-71.474504527,41.554555485],[-71.474190527,41.554418485],[-71.474099527,41.554395485],[-71.474015526,41.554384485],[-71.473925527,41.554378485],[-71.473760527,41.554377485],[-71.473689527,41.554388486],[-71.473657527,41.554397485],[-71.473643527,41.554341485],[-71.473549526,41.554337485],[-71.473473526,41.554325485],[-71.473396526,41.554306485],[-71.473320527,41.554272486],[-71.473042455,41.555148995],[-71.471867,41.554882496],[-71.47151484,41.555853316],[-71.470434565,41.555563021],[-71.469401879,41.55521562],[-71.469225799,41.555453567],[-71.468735629,41.55531651],[-71.468595241,41.555516384],[-71.466924859,41.555166604],[-71.466461525,41.555413486],[-71.466438524,41.555432486],[-71.465385524,41.556122486],[-71.464981524,41.556462486],[-71.464806524,41.556713486],[-71.464771524,41.556787486],[-71.464569524,41.556808486],[-71.464197524,41.556804486],[-71.463901524,41.556779486],[-71.463739523,41.556756486],[-71.463635524,41.556746486],[-71.463433523,41.556745486],[-71.463353523,41.556755486],[-71.463207524,41.556783486],[-71.463118523,41.556807486],[-71.463025523,41.556848486],[-71.462935524,41.556863486],[-71.462862523,41.556835486],[-71.462800524,41.556802486],[-71.462746523,41.556794486],[-71.462638523,41.556806486],[-71.462611523,41.556811486],[-71.462563524,41.556819486],[-71.462332524,41.556820486],[-71.462253524,41.556815486],[-71.462153523,41.556796486],[-71.462046523,41.556805486],[-71.461883523,41.556834486],[-71.461795523,41.556842486],[-71.461688523,41.556846487],[-71.461619523,41.556863486],[-71.461549523,41.556888486],[-71.461493523,41.556939486],[-71.461428523,41.556970486],[-71.461303523,41.556970486],[-71.461219523,41.556946486],[-71.461136523,41.556911486],[-71.460976523,41.556924487],[-71.460897523,41.556918486],[-71.460856523,41.556904487],[-71.460811523,41.556888486],[-71.460725523,41.556878486],[-71.460474523,41.556935486],[-71.460367522,41.556936486],[-71.460197522,41.556912486],[-71.460016522,41.556912486],[-71.459937522,41.556917486],[-71.459859522,41.556930486],[-71.459794523,41.556955486],[-71.459737523,41.556967486],[-71.459654522,41.556970486],[-71.459577522,41.556964487],[-71.459504523,41.556950486],[-71.459415522,41.556940486],[-71.459357522,41.556928486],[-71.459283522,41.556869486],[-71.459199522,41.556863486],[-71.459094523,41.556832486],[-71.459013522,41.556801486],[-71.458532522,41.556670487],[-71.458338522,41.556631487],[-71.458256522,41.556607486],[-71.458100522,41.556548486],[-71.458007521,41.556521486],[-71.457726522,41.556455487],[-71.457636521,41.556428486],[-71.457459521,41.556367486],[-71.457386521,41.556336486],[-71.457100522,41.556157486],[-71.457022522,41.556116486],[-71.456756521,41.555996486],[-71.456479522,41.555893486],[-71.456056521,41.555677486],[-71.455900521,41.555621486],[-71.455819521,41.555565486],[-71.455744521,41.555521486],[-71.455589521,41.555445486],[-71.455380521,41.555333486],[-71.455191521,41.555205486],[-71.455135521,41.555160486],[-71.455086521,41.555112486],[-71.45492652,41.554988486],[-71.454832521,41.554896486],[-71.454725521,41.554721486],[-71.45469652,41.554662486],[-71.454666521,41.554567485],[-71.45465252,41.554532486],[-71.454605521,41.554467486],[-71.45449552,41.554357486],[-71.454433521,41.554315486],[-71.45436052,41.554288486],[-71.454296521,41.554254485],[-71.454174521,41.554156486],[-71.453925521,41.553987486],[-71.45381452,41.553906485],[-71.45372152,41.553837486],[-71.45351952,41.553674486],[-71.45346652,41.553612485],[-71.45342352,41.553551486],[-71.45337652,41.553499486],[-71.45332052,41.553455485],[-71.45325052,41.553414486],[-71.45316852,41.553377485],[-71.45298352,41.553312486],[-71.45279852,41.553258486],[-71.45271152,41.553225485],[-71.45252852,41.553142486],[-71.45235352,41.553076486],[-71.45219052,41.553031485],[-71.452098519,41.553013486],[-71.452000519,41.553003486],[-71.451707519,41.552978486],[-71.45160552,41.552961486],[-71.45144552,41.552923486],[-71.451171519,41.552875485],[-71.45101752,41.552837486],[-71.450950519,41.552816485],[-71.450761519,41.552745486],[-71.450597519,41.552705486],[-71.450520519,41.552680485],[-71.450373519,41.552617485],[-71.450278519,41.552598485],[-71.450022519,41.552592486],[-71.449794518,41.552566486],[-71.449718519,41.552549486],[-71.449481519,41.552459486],[-71.449318519,41.552408486],[-71.449242519,41.552392486],[-71.449170518,41.552384485],[-71.449081519,41.552380486],[-71.448694519,41.552293486],[-71.448623518,41.552265485],[-71.448507518,41.552163486],[-71.448453518,41.552125486],[-71.448364519,41.552026486],[-71.448317518,41.551985486],[-71.448276518,41.551937485],[-71.448163518,41.551832486],[-71.448068518,41.551736486],[-71.447990518,41.551723485],[-71.447913518,41.551717486],[-71.447888518,41.551711486],[-71.447838518,41.551699486],[-71.447789518,41.551700485],[-71.447815518,41.551823485],[-71.447914518,41.552189485],[-71.447975519,41.552525486],[-71.447800518,41.552411486],[-71.447273518,41.552208485],[-71.445816517,41.551693486],[-71.445702517,41.551655486],[-71.444923517,41.551358486],[-71.444283517,41.551167486],[-71.443604517,41.551026486],[-71.442894516,41.550908485],[-71.442497517,41.550862485],[-71.442383516,41.550846485],[-71.441841516,41.550831486],[-71.441422516,41.550831486],[-71.441124516,41.550824485],[-71.440872516,41.550827485],[-71.440907516,41.550501486],[-71.440805515,41.550494485],[-71.440732516,41.550485486],[-71.440575516,41.550485486],[-71.440319515,41.550525486],[-71.440093516,41.550573485],[-71.440017516,41.550600486],[-71.439948515,41.550637486],[-71.439810515,41.550744485],[-71.439675515,41.550826485],[-71.439541515,41.550923485],[-71.439469515,41.550950486],[-71.439387515,41.550963485],[-71.439234515,41.551002485],[-71.439156515,41.551009486],[-71.438887515,41.551011486],[-71.438800515,41.551005486],[-71.438658515,41.550986486],[-71.438669205,41.55100301],[-71.438615535,41.551031088],[-71.43853726,41.551033265],[-71.438444175,41.551016657],[-71.438367246,41.550980299],[-71.438301943,41.550947492],[-71.438215905,41.550948292],[-71.438130156,41.550965741],[-71.43803547,41.550969509],[-71.437952895,41.550946297],[-71.437873417,41.550933219],[-71.43780041,41.550901893],[-71.43772832,41.550866978],[-71.437646093,41.55086332],[-71.437580019,41.550840689],[-71.437528921,41.550790302],[-71.43750867,41.550732385],[-71.43749618,41.55067733],[-71.437473123,41.55062522],[-71.437445911,41.55055575],[-71.437441097,41.55049624],[-71.43746415,41.550426294],[-71.43747675,41.55036812],[-71.43746214,41.550300715],[-71.437433241,41.550245743],[-71.437403396,41.550192281],[-71.437369741,41.550143207],[-71.437337949,41.550089057],[-71.437304265,41.550039228],[-71.437261017,41.549993853],[-71.437224441,41.549944069],[-71.437186684,41.549886988],[-71.437183827,41.54988271],[-71.437128779,41.549825094],[-71.437083612,41.549780473],[-71.43704108,41.549719845],[-71.437002614,41.549672255],[-71.436942784,41.549617632],[-71.436866685,41.549574709],[-71.436784945,41.54954132],[-71.436722652,41.549514277],[-71.436655433,41.549482199],[-71.436575554,41.54944442],[-71.436513175,41.549413054],[-71.436449822,41.549380224],[-71.436385325,41.549335043],[-71.436315985,41.54929281],[-71.436257416,41.549257032],[-71.436195008,41.549224179],[-71.436126043,41.5492023],[-71.436050434,41.549189177],[-71.435957353,41.549172567],[-71.435877073,41.549171836],[-71.435804815,41.549187005],[-71.4357327,41.549210886],[-71.435657777,41.549242793],[-71.435589701,41.549276054],[-71.435523543,41.549310778],[-71.435450712,41.549350668],[-71.435364992,41.549371043],[-71.435286861,41.54938264],[-71.435200025,41.549392859],[-71.435151421,41.549438343],[-71.4351011,41.549496175],[-71.435045654,41.549534428],[-71.434971618,41.54956048],[-71.434886814,41.54957795],[-71.434813725,41.549601854],[-71.434735765,41.549624336],[-71.434670465,41.54965252],[-71.434599379,41.549681502],[-71.434516637,41.549706909],[-71.434442519,41.549723539],[-71.43437424,41.549746667],[-71.434347117,41.549804283],[-71.434355765,41.549862309],[-71.434360522,41.54988541],[-71.434368338,41.549923218],[-71.434393511,41.549987611],[-71.434424527,41.550054157],[-71.434456461,41.550117067],[-71.434490428,41.550185741],[-71.434521445,41.550251532],[-71.434555382,41.550320229],[-71.434583479,41.550383869],[-71.434611604,41.550450436],[-71.434635805,41.550512679],[-71.43464454,41.550576536],[-71.434639813,41.550644091],[-71.434627298,41.550707387],[-71.434622571,41.550775696],[-71.434623544,41.550837422],[-71.4346352,41.550901945],[-71.434668967,41.550958292],[-71.434718258,41.551018125],[-71.434774366,41.551080065],[-71.434835256,41.551140544],[-71.434891362,41.551204657],[-71.434940653,41.551265221],[-71.434982298,41.551329486],[-71.434986078,41.551385405],[-71.434937618,41.551437383],[-71.434876297,41.551472774],[-71.43481993,41.551516857],[-71.434755916,41.551565397],[-71.434690787,41.551603003],[-71.434607099,41.551627724],[-71.434521463,41.551652466],[-71.434439662,41.551677873],[-71.434355084,41.551709134],[-71.434274402,41.551742523],[-71.434186044,41.551778904],[-71.434111318,41.551822405],[-71.434037708,41.551875352],[-71.433988073,41.551915049],[-71.433930044,41.551975094],[-71.433881725,41.552038004],[-71.433842112,41.552100805],[-71.433818883,41.552159864],[-71.433808314,41.552223825],[-71.433806308,41.552280472],[-71.433809171,41.552339317],[-71.433819739,41.552395835],[-71.433842793,41.552448654],[-71.433890968,41.552498355],[-71.433947763,41.552543578],[-71.434005532,41.552589557],[-71.434071064,41.55263618],[-71.434134561,41.552678434],[-71.434193191,41.552716409],[-71.434266255,41.552752081],[-71.434336195,41.552775403],[-71.434427505,41.55280219],[-71.434499396,41.552822608],[-71.434580995,41.552848017],[-71.434645297,41.552877944],[-71.434701979,41.552915208],[-71.434771377,41.552963228],[-71.43482803,41.553000492],[-71.434881848,41.553040682],[-71.434954052,41.553083604],[-71.435031098,41.553126482],[-71.435091848,41.553176053],[-71.435140054,41.553227171],[-71.435181354,41.553271836],[-71.435187083,41.553328419],[-71.435125645,41.553356583],[-71.435040351,41.553342081],[-71.43495984,41.553323214],[-71.434894535,41.553291822],[-71.434822359,41.553251096],[-71.434757198,41.553227686],[-71.434668094,41.553216864],[-71.434594484,41.553208818],[-71.434508329,41.553203051],[-71.434423462,41.553216908],[-71.434360136,41.553246511],[-71.434327053,41.553295456],[-71.434280481,41.553345263],[-71.434188913,41.553362797],[-71.434095425,41.553381794],[-71.434017434,41.553399931],[-71.433947232,41.553423812],[-71.433878949,41.553446894],[-71.433803735,41.553459224],[-71.433715919,41.553469419],[-71.433637526,41.553465051],[-71.433563974,41.553459154],[-71.433467965,41.553442564],[-71.433407474,41.553408293],[-71.433369039,41.553360678],[-71.433327594,41.553309495],[-71.433279536,41.553264894],[-71.433236259,41.553218809],[-71.433197737,41.553167581],[-71.433160275,41.553121431],[-71.433123731,41.553071645],[-71.433081199,41.553011747],[-71.43303586,41.552957725],[-71.432995248,41.552896319],[-71.432957586,41.552838551],[-71.432919925,41.552779342],[-71.432887017,41.552717232],[-71.432847495,41.552661635],[-71.432800208,41.552607589],[-71.432744417,41.552563784],[-71.432672299,41.552527424],[-71.43259829,41.552494677],[-71.4325319,41.552453862],[-71.432455917,41.552416791],[-71.432396344,41.552378815],[-71.432330986,41.552342345],[-71.432257121,41.552316847],[-71.43219182,41.552284036],[-71.432139896,41.55224021],[-71.432066115,41.552222008],[-71.431999897,41.552192787],[-71.431939265,41.552149756],[-71.431875082,41.552124904],[-71.431817257,41.552076043],[-71.431748865,41.552029463],[-71.431690267,41.551992196],[-71.431642237,41.551951253],[-71.431575821,41.551907555],[-71.431491215,41.551877774],[-71.431435341,41.551827473],[-71.43140355,41.551775448],[-71.431378464,41.551717573],[-71.43135057,41.551665573],[-71.431317722,41.551605589],[-71.431281066,41.551549239],[-71.431240628,41.551498055],[-71.431188646,41.551452742],[-71.431122375,41.551416294],[-71.431056072,41.551382018],[-71.430990573,41.551336125],[-71.430924301,41.551301872],[-71.430854161,41.551268348],[-71.430815412,41.551204061],[-71.430786518,41.551149133],[-71.430772918,41.551083878],[-71.430782658,41.551028607],[-71.430803886,41.550963784],[-71.430837688,41.550899586],[-71.430880337,41.550845479],[-71.430938566,41.550799912],[-71.431000748,41.55075796],[-71.43104334,41.55070024],[-71.431067518,41.550638254],[-71.431054863,41.550571581],[-71.431049138,41.550515707],[-71.431060741,41.550455338],[-71.431064667,41.550398623],[-71.431025262,41.55035103],[-71.430961251,41.550338551],[-71.43089022,41.550370434],[-71.4308358,41.550414494],[-71.430788281,41.550466449],[-71.430764935,41.550518967],[-71.430733857,41.550570794],[-71.430662883,41.550607045],[-71.43058601,41.550635289],[-71.430530531,41.550672098],[-71.430490802,41.550728403],[-71.430466569,41.55078451],[-71.430446257,41.550845698],[-71.430427952,41.5509105],[-71.430417207,41.550965083],[-71.430416345,41.551031153],[-71.430418259,41.551091416],[-71.4304375,41.551148648],[-71.430463587,41.551208674],[-71.430441243,41.551263319],[-71.430382869,41.551302346],[-71.430309977,41.551337155],[-71.430247736,41.551376202],[-71.430195349,41.551424562],[-71.430136003,41.551461415],[-71.430052915,41.551465047],[-71.429971517,41.551454134],[-71.429905872,41.551459835],[-71.429936598,41.551508932],[-71.429962658,41.551566785],[-71.429963655,41.551629975],[-71.429940509,41.551694088],[-71.429903785,41.551756866],[-71.429846529,41.551803142],[-71.429770626,41.551833627],[-71.429683586,41.551831493],[-71.429610923,41.551823398],[-71.429592018,41.551849732],[-71.429619881,41.551900314],[-71.429660489,41.551962385],[-71.429694139,41.552010775],[-71.429725869,41.552061291],[-71.429752903,41.552119145],[-71.429775983,41.552172697],[-71.429799093,41.552227668],[-71.429813723,41.55229656],[-71.429813802,41.552364072],[-71.429800279,41.552425217],[-71.429764819,41.552445138],[-71.429734029,41.552454153],[-71.42974273,41.552516501],[-71.429752321,41.552572332],[-71.429732065,41.552637887],[-71.429668048,41.552684182],[-71.429600709,41.552706576],[-71.429549926,41.552734629],[-71.429583803,41.552798983],[-71.429603132,41.552859073],[-71.42960599,41.552918582],[-71.429595417,41.552982588],[-71.429575991,41.553039408],[-71.429548863,41.553096314],[-71.429509964,41.553143127],[-71.429448583,41.553173461],[-71.429366294,41.553167647],[-71.429326711,41.553170916],[-71.429338164,41.55322238],[-71.429366227,41.553285312],[-71.429353733,41.553351489],[-71.429331501,41.55341343],[-71.429304429,41.553474658],[-71.429280336,41.553540257],[-71.429262803,41.553592687],[-71.429230889,41.553654735],[-71.429192217,41.553715362],[-71.429150395,41.553760733],[-71.429101728,41.553801823],[-71.429035733,41.553846698],[-71.428974322,41.5538763],[-71.428899418,41.553909643],[-71.428817758,41.553940878],[-71.42874466,41.553965487],[-71.428669729,41.553996658],[-71.428607371,41.554027745],[-71.428544411,41.554081312],[-71.428500641,41.554126018],[-71.428449193,41.55417511],[-71.428403221,41.554201679],[-71.428367269,41.554252131],[-71.42832175,41.554309162],[-71.428292558,41.554358817],[-71.428269352,41.554418538],[-71.428241304,41.554480521],[-71.428211338,41.554541061],[-71.428176502,41.554601644],[-71.428138773,41.55466154],[-71.428096289,41.554726555],[-71.428050829,41.554784341],[-71.428001386,41.554837802],[-71.427958589,41.554883195],[-71.42795669,41.554947846],[-71.427972151,41.555007958],[-71.427985663,41.555068137],[-71.427991414,41.555126184],[-71.427988431,41.55518068],[-71.427981578,41.555238125],[-71.427981544,41.555296214],[-71.427980448,41.555350689],[-71.427973596,41.55540667],[-71.427964969,41.555471386],[-71.427953333,41.555531046],[-71.427941611,41.555585629],[-71.427930005,41.555645289],[-71.427919315,41.555703463],[-71.427911603,41.555766006],[-71.427900884,41.555821985],[-71.427890223,41.555881645],[-71.427880505,41.555940552],[-71.427875601,41.555997975],[-71.427871784,41.556061916],[-71.427871749,41.556121469],[-71.427873746,41.556186809],[-71.427874686,41.556245653],[-71.427883359,41.556304388],[-71.42789882,41.5563645],[-71.427917087,41.556420268],[-71.427932521,41.556478252],[-71.427934517,41.556545033],[-71.427961607,41.556607233],[-71.428005054,41.556663497],[-71.428056259,41.556724774],[-71.428089997,41.55677751],[-71.428125765,41.556839624],[-71.42814598,41.556896102],[-71.428169148,41.556953999],[-71.428224108,41.557006543],[-71.428275089,41.557051102],[-71.428328019,41.557095662],[-71.428380918,41.5571402],[-71.428424222,41.557188459],[-71.428457903,41.55723829],[-71.428506246,41.55730032],[-71.428541817,41.557348666],[-71.428603482,41.557396022],[-71.428670075,41.557448435],[-71.428729734,41.557492931],[-71.428787416,41.557535276],[-71.428840347,41.557579104],[-71.428898175,41.557627967],[-71.428957864,41.557673194],[-71.429008818,41.557715603],[-71.429055903,41.557759496],[-71.429108777,41.557800397],[-71.429174367,41.557851391],[-71.429225349,41.55789595],[-71.429281172,41.557940512],[-71.429342723,41.557982058],[-71.429398489,41.558023693],[-71.429452338,41.558064594],[-71.429510908,41.558103303],[-71.429566676,41.558143473],[-71.429639829,41.55818418],[-71.429721606,41.558218329],[-71.429789057,41.558266397],[-71.429840958,41.558306588],[-71.429896724,41.558348245],[-71.429942839,41.558389941],[-71.429996857,41.558443924],[-71.43004993,41.558497906],[-71.430106643,41.5585381],[-71.430180542,41.55856504],[-71.430253041,41.558563643],[-71.430324281,41.5585434],[-71.430398869,41.558552891],[-71.430474089,41.558541318],[-71.430530578,41.558505241],[-71.430590389,41.558495992],[-71.430637623,41.558487582],[-71.430612535,41.558428974],[-71.430654643,41.558402448],[-71.430739546,41.558390081],[-71.430807892,41.558370591],[-71.43087621,41.558349661],[-71.430953492,41.558345339],[-71.431022466,41.55836578],[-71.431075198,41.558398013],[-71.431101467,41.558347646],[-71.431145123,41.558297176],[-71.431202613,41.55826469],[-71.431252285,41.55822504],[-71.431264806,41.55816099],[-71.431295774,41.55810189],[-71.431366812,41.558070029],[-71.431379847,41.558038682],[-71.431349889,41.557977945],[-71.431338292,41.557917059],[-71.431343079,41.557853118],[-71.431371154,41.55779404],[-71.431428386,41.557745613],[-71.431507274,41.557719497],[-71.431593091,41.557704888],[-71.431673152,41.557691855],[-71.431765758,41.557678668],[-71.431847823,41.557670666],[-71.431937678,41.557667701],[-71.432016049,41.557669897],[-71.432090579,41.557675041],[-71.432185447,41.557682187],[-71.432276477,41.557690816],[-71.432359657,41.55769441],[-71.432379767,41.557680449],[-71.432390425,41.55762152],[-71.432405007,41.557564743],[-71.432405983,41.557505167],[-71.432467081,41.557456697],[-71.432536285,41.557430666],[-71.432630981,41.557427657],[-71.432720148,41.557441362],[-71.432798604,41.557449367],[-71.432871302,41.557460364],[-71.432942051,41.557471382],[-71.433024517,41.557487302],[-71.433095466,41.557511357],[-71.433172288,41.557539028],[-71.433246187,41.557565966],[-71.433312295,41.55759004],[-71.433386224,41.557617687],[-71.433451474,41.557647615],[-71.433512914,41.557680492],[-71.433573466,41.557719131],[-71.433619582,41.557760849],[-71.433656217,41.557814271],[-71.433662918,41.557871609],[-71.433690845,41.557925072],[-71.433734182,41.557975548],[-71.433794735,41.558013478],[-71.433858066,41.558044137],[-71.433945974,41.558039019],[-71.434019848,41.558002012],[-71.434081088,41.557963695],[-71.434151124,41.557928218],[-71.434218323,41.557897108],[-71.434280651,41.557866041],[-71.434354582,41.557833425],[-71.434427568,41.557800832],[-71.434502529,41.557772584],[-71.434572707,41.55774653],[-71.434636066,41.557719099],[-71.434710398,41.557710451],[-71.434791517,41.55770462],[-71.434847201,41.557679449],[-71.434864674,41.557622627],[-71.43486562,41.557560194],[-71.434849064,41.557492055],[-71.434828785,41.557431942],[-71.434823027,41.557374627],[-71.434826836,41.557310686],[-71.434862527,41.557244269],[-71.434913886,41.557189365],[-71.434982143,41.557165505],[-71.435060026,41.55719823],[-71.43512055,41.557234718],[-71.435196855,41.557231125],[-71.435251734,41.55727932],[-71.435298854,41.557323142],[-71.435350787,41.557364794],[-71.43540452,41.557402102],[-71.435469887,41.557437083],[-71.435543902,41.557471315],[-71.435610213,41.557506274],[-71.435684228,41.557540483],[-71.435754378,41.557572517],[-71.43582467,41.557616192],[-71.435879466,41.557656405],[-71.435901553,41.557706296],[-71.435894879,41.557773163],[-71.435897973,41.55784724],[-71.435893047,41.557902445],[-71.435877752,41.557973767],[-71.435861254,41.558030566],[-71.43582539,41.55808827],[-71.435797265,41.558140786],[-71.435766184,41.558195518],[-71.435767275,41.558262344],[-71.435796378,41.558329621],[-71.435814853,41.558398446],[-71.435819637,41.558455783],[-71.435812019,41.558523382],[-71.435812908,41.558579299],[-71.43580417,41.558639647],[-71.435773092,41.558691498],[-71.435708042,41.55873496],[-71.435644881,41.558776868],[-71.435567829,41.558794274],[-71.435550899,41.558825642],[-71.435532569,41.558886831],[-71.435501635,41.558947373],[-71.435467921,41.559015963],[-71.43541848,41.559069405],[-71.435357238,41.559110651],[-71.43532722,41.559167534],[-71.435341742,41.559229862],[-71.435370844,41.559298602],[-71.435397829,41.559351377],[-71.435428821,41.559417168],[-71.43542776,41.559473816],[-71.435439506,41.559542729],[-71.435471359,41.559600516],[-71.435505131,41.559656863],[-71.435543716,41.559711726],[-71.435581415,41.559770202],[-71.435606392,41.559822268],[-71.435632374,41.559874334],[-71.435668008,41.559927023],[-71.435698802,41.559977605],[-71.43572295,41.56003692],[-71.435745093,41.560092643],[-71.435768238,41.560149807],[-71.435790555,41.560213558],[-71.435811753,41.560269966],[-71.435833093,41.560335866],[-71.435843722,41.560395333],[-71.43584862,41.560461361],[-71.435851601,41.560525992],[-71.435852572,41.560590623],[-71.435852659,41.560656693],[-71.435847849,41.560717753],[-71.435841175,41.56078462],[-71.4358286,41.560845721],[-71.435810296,41.560911278],[-71.435779332,41.560969648],[-71.435733787,41.561023778],[-71.435676524,41.561072207],[-71.435619094,41.561106136],[-71.435539372,41.561141745],[-71.435470166,41.561167023],[-71.435388384,41.561191722],[-71.435314019,41.561198953],[-71.435227998,41.561200437],[-71.435139855,41.561191788],[-71.435050597,41.561172253],[-71.434968929,41.561144649],[-71.434890125,41.561114873],[-71.434830601,41.561079803],[-71.434791786,41.561071434],[-71.434767609,41.561132665],[-71.434729941,41.561195467],[-71.434677549,41.561243875],[-71.434608285,41.561265562],[-71.434525298,41.56127791],[-71.434449072,41.561288753],[-71.434404357,41.561333438],[-71.434360757,41.561389741],[-71.434305528,41.561443248],[-71.434251216,41.561493141],[-71.434221081,41.561543529],[-71.434203606,41.561601036],[-71.434182293,41.561659319],[-71.434183236,41.561719604],[-71.434196671,41.561773218],[-71.434271493,41.56179652],[-71.434360724,41.561813151],[-71.434439384,41.5618357],[-71.434505497,41.561859065],[-71.434575766,41.561899104],[-71.434636207,41.561930516],[-71.434705444,41.561966918],[-71.434786224,41.56200033],[-71.434870701,41.562022127],[-71.434954117,41.562038778],[-71.435042978,41.562030732],[-71.435117283,41.562023525],[-71.435191733,41.562022858],[-71.435277757,41.56201991],[-71.435370252,41.562000935],[-71.435439633,41.561985033],[-71.435516747,41.561969845],[-71.435587846,41.561940864],[-71.435653816,41.561894544],[-71.435706123,41.561838153],[-71.435766134,41.561782408],[-71.435814746,41.561737656],[-71.435880687,41.561689117],[-71.435944796,41.561645723],[-71.43599418,41.561590086],[-71.436063015,41.561540085],[-71.436119475,41.561502565],[-71.436165164,41.561457102],[-71.436178712,41.561396711],[-71.436166194,41.561338729],[-71.436172809,41.561268934],[-71.436199879,41.561206949],[-71.436211563,41.56115312],[-71.436211478,41.561085563],[-71.436211361,41.561018761],[-71.436235508,41.560956111],[-71.436247138,41.560895719],[-71.436233701,41.560842104],[-71.436232756,41.560781819],[-71.436252204,41.560728635],[-71.436274517,41.560673234],[-71.436292821,41.560606991],[-71.436296542,41.560538681],[-71.436296599,41.560481301],[-71.436295739,41.560426847],[-71.436289865,41.560361528],[-71.436284021,41.560296986],[-71.436275197,41.560229539],[-71.436272217,41.560162735],[-71.436271269,41.560104645],[-71.436270123,41.56003201],[-71.436283699,41.559973791],[-71.436312601,41.559905998],[-71.436340758,41.559852728],[-71.436385529,41.559810192],[-71.436458314,41.559766688],[-71.436529468,41.559740633],[-71.436611306,41.559718106],[-71.436703111,41.559715846],[-71.436777214,41.559694115],[-71.436832612,41.559650807],[-71.436880219,41.559603905],[-71.436916939,41.559542566],[-71.43697526,41.559499191],[-71.437044262,41.559462248],[-71.437096623,41.559410225],[-71.437118879,41.559349724],[-71.437147007,41.559293549],[-71.437179802,41.559228617],[-71.437219386,41.559165083],[-71.437255305,41.559112525],[-71.437296036,41.559059101],[-71.437335849,41.55901009],[-71.437376578,41.558958175],[-71.437423239,41.558912003],[-71.437475773,41.558870135],[-71.43754165,41.558820154],[-71.437615838,41.558803523],[-71.437702087,41.558815782],[-71.43777496,41.55883693],[-71.437845053,41.558867545],[-71.437907785,41.55885898],[-71.437961091,41.55880547],[-71.438003853,41.558760097],[-71.438049568,41.558716074],[-71.438095138,41.558663384],[-71.438137787,41.558609252],[-71.438170811,41.558558155],[-71.43819212,41.558499849],[-71.438208645,41.55844449],[-71.438226116,41.558387005],[-71.438243528,41.558327988],[-71.43825524,41.558274159],[-71.438265922,41.558215938],[-71.438274684,41.558159935],[-71.438278634,41.558103997],[-71.438277715,41.558045908],[-71.438276653,41.557978396],[-71.438281405,41.557912259],[-71.438297929,41.557857632],[-71.438326053,41.557803652],[-71.43837598,41.557779963],[-71.438451599,41.557793816],[-71.43854157,41.557796609],[-71.438624665,41.557793703],[-71.438697249,41.557798133],[-71.43877579,41.557813383],[-71.438856166,41.557820653],[-71.438928749,41.557825082],[-71.439014941,41.557832309],[-71.439092481,41.557843968],[-71.43917973,41.557859177],[-71.439247876,41.557887571],[-71.439291218,41.557937313],[-71.439287182,41.557988173],[-71.439206236,41.558004162],[-71.439118356,41.55801148],[-71.439045402,41.558044831],[-71.439047151,41.558094894],[-71.439073222,41.558152768],[-71.439070245,41.55820946],[-71.439051803,41.558264795],[-71.439028461,41.558316583],[-71.438994781,41.558386615],[-71.438963791,41.558444276],[-71.438935578,41.558495329],[-71.43890943,41.55855297],[-71.438879328,41.558605509],[-71.438841464,41.558655962],[-71.438802797,41.558717324],[-71.438770776,41.558770593],[-71.438752361,41.558828856],[-71.438742711,41.55889069],[-71.438733921,41.55894523],[-71.43872619,41.559007066],[-71.438719519,41.559074642],[-71.438730322,41.559145727],[-71.438764155,41.559204955],[-71.438804547,41.559251082],[-71.438840154,41.559302352],[-71.438884615,41.559360739],[-71.438918275,41.559409835],[-71.438966573,41.559467493],[-71.439035637,41.559493715],[-71.439109507,41.559459678],[-71.439164702,41.559403997],[-71.439213281,41.559357094],[-71.439277212,41.559304184],[-71.439327824,41.5592638],[-71.439404819,41.559242046],[-71.439460708,41.559290193],[-71.439517599,41.559341245],[-71.439581022,41.559375538],[-71.439616572,41.559423171],[-71.439631987,41.559480376],[-71.439638838,41.559545696],[-71.439637869,41.559605248],[-71.439635925,41.559665532],[-71.439637992,41.559734508],[-71.439645846,41.55980271],[-71.439652553,41.559859293],[-71.439660377,41.559926031],[-71.439661498,41.559997225],[-71.439638331,41.560058412],[-71.439607226,41.560108801],[-71.43958586,41.56016418],[-71.439645128,41.560181821],[-71.439721406,41.560177493],[-71.43979491,41.560178309],[-71.439843867,41.560216367],[-71.439866158,41.560279316],[-71.439895152,41.560338587],[-71.439936488,41.560385423],[-71.440011253,41.56040513],[-71.44006577,41.560423843],[-71.440083212,41.560429867],[-71.440150359,41.56045611],[-71.440158813,41.560501077],[-71.440095567,41.560537246],[-71.440065642,41.560563302],[-71.440045011,41.560581267],[-71.4399673,41.560618985],[-71.439892137,41.560634931],[-71.43981869,41.560637774],[-71.439728773,41.560638596],[-71.439656273,41.560639244],[-71.439613966,41.560653401],[-71.439582032,41.560711062],[-71.439554762,41.560762184],[-71.43950246,41.56081709],[-71.439433602,41.560862748],[-71.439362449,41.560887341],[-71.439295076,41.560908322],[-71.439208541,41.560938831],[-71.439135497,41.56096635],[-71.439064401,41.560995334],[-71.438987518,41.561025779],[-71.438916452,41.56105474],[-71.438844266,41.561077205],[-71.438761368,41.561092461],[-71.438683196,41.561101887],[-71.438599092,41.561104107],[-71.438520719,41.561100428],[-71.438440369,41.561093891],[-71.438355236,41.561090323],[-71.438273939,41.561086689],[-71.43818597,41.561087488],[-71.438105763,41.561090372],[-71.438017851,41.561094807],[-71.43793372,41.561094807],[-71.437846609,41.561089798],[-71.437759526,41.56108696],[-71.437678258,41.561084767],[-71.437592295,41.561089911],[-71.437517161,41.561105857],[-71.437432169,41.561113129],[-71.437356002,41.561126169],[-71.437283731,41.561141338],[-71.437207303,41.561141296],[-71.437115151,41.561122515],[-71.43704328,41.561101367],[-71.436969029,41.561054101],[-71.436913197,41.561010297],[-71.43684485,41.560967333],[-71.436780541,41.560935989],[-71.436717262,41.560909654],[-71.43664539,41.56088997],[-71.436574609,41.560876072],[-71.436520786,41.560896167],[-71.436533361,41.560958517],[-71.436571089,41.561019188],[-71.43661145,41.561066048],[-71.436680945,41.561118412],[-71.436749323,41.561162108],[-71.43680713,41.561210212],[-71.436864938,41.561256898],[-71.436928619,41.561308618],[-71.436985538,41.561362599],[-71.437036643,41.561414427],[-71.437088808,41.561472042],[-71.437134214,41.561529035],[-71.437171826,41.561584606],[-71.437209556,41.561645277],[-71.437250977,41.561698632],[-71.437298331,41.561756336],[-71.437343649,41.561810379],[-71.437384986,41.561856506],[-71.437424549,41.561909883],[-71.437467863,41.561958871],[-71.437505649,41.562024619],[-71.437503646,41.562080534],[-71.437465034,41.5621448],[-71.437427194,41.562198866],[-71.437394139,41.562247858],[-71.437371941,41.562310486],[-71.437373776,41.562365672],[-71.437376757,41.562431721],[-71.437388333,41.562489725],[-71.437408529,41.562544738],[-71.437432565,41.562596848],[-71.437449956,41.562656205],[-71.437468406,41.562722148],[-71.437502124,41.562775544],[-71.437551226,41.562821585],[-71.437603451,41.562882149],[-71.437640034,41.562932643],[-71.437700679,41.562977111],[-71.437779225,41.562993117],[-71.437858691,41.563003291],[-71.437932399,41.563016435],[-71.438009142,41.563038981],[-71.438078439,41.563079772],[-71.438135074,41.563114107],[-71.438186038,41.563157221],[-71.438237117,41.563206144],[-71.438296846,41.563253562],[-71.438356577,41.563299493],[-71.438412468,41.563348373],[-71.438471225,41.563393618],[-71.438530896,41.56343884],[-71.438581974,41.563489227],[-71.438631135,41.563539612],[-71.438683101,41.563585631],[-71.438730256,41.56363167],[-71.438786235,41.563684918],[-71.438845966,41.563731535],[-71.43890074,41.563771014],[-71.438934431,41.563821552],[-71.43894681,41.563869356],[-71.43899611,41.563869656],[-71.439070934,41.563830475],[-71.43914103,41.56379934],[-71.439218059,41.563779073],[-71.439298585,41.563796519],[-71.439378052,41.563806692],[-71.439458232,41.56380303],[-71.439535145,41.563776198],[-71.439598509,41.563747301],[-71.439673389,41.56371251],[-71.439752309,41.56368927],[-71.439835153,41.563668914],[-71.4399133,41.563658068],[-71.440004997,41.563647047],[-71.440062767,41.563641543],[-71.440080308,41.56363986],[-71.440170085,41.563631056],[-71.440268685,41.563629461],[-71.44034036,41.563636039],[-71.440431455,41.563650494],[-71.440508973,41.563660665],[-71.440599067,41.563670752],[-71.440681399,41.563677998],[-71.440753073,41.563686062],[-71.44082575,41.563694859],[-71.440897366,41.563700041],[-71.440982274,41.563686912],[-71.441063141,41.563664404],[-71.441148222,41.563662892],[-71.441236252,41.563665727],[-71.441308013,41.563678182],[-71.441404837,41.563687471],[-71.441482211,41.563688951],[-71.441570299,41.563695422],[-71.441643951,41.563704905],[-71.441715682,41.563716605],[-71.441785582,41.563733404],[-71.441846202,41.563774989],[-71.44190012,41.563820275],[-71.441955098,41.563872766],[-71.442014031,41.563928918],[-71.442057291,41.563974977],[-71.442097717,41.564023275],[-71.44214006,41.564072283],[-71.44218444,41.564126347],[-71.442231713,41.564179657],[-71.442278012,41.564233012],[-71.442328295,41.56429211],[-71.442383331,41.564347528],[-71.442440374,41.56440727],[-71.44248971,41.564469271],[-71.442534234,41.56453278],[-71.44258363,41.564597686],[-71.442629071,41.564657559],[-71.442668783,41.564721865],[-71.442706518,41.564783952],[-71.442746258,41.56485114],[-71.442790814,41.56491394],[-71.442837255,41.564979599],[-71.442880864,41.56504528],[-71.442921581,41.565111028],[-71.442965188,41.565178881],[-71.443012637,41.565242368],[-71.443057219,41.56530949],[-71.443095959,41.565373041],[-71.443135788,41.565443865],[-71.443174526,41.565508857],[-71.443208568,41.56558192],[-71.443237712,41.565649194],[-71.443265909,41.565720104],[-71.443295024,41.565786669],[-71.443321302,41.565857601],[-71.443347524,41.565924165],[-71.443375662,41.565993634],[-71.443407699,41.566061619],[-71.443439766,41.566129603],[-71.44346696,41.566198317],[-71.44349321,41.56626854],[-71.443518514,41.566339494],[-71.443539982,41.566410447],[-71.443560474,41.566482908],[-71.443577071,41.566552463],[-71.443591748,41.566623526],[-71.443606367,41.566690908],[-71.443621014,41.566761239],[-71.443635606,41.566825739],[-71.443651257,41.566897466],[-71.443666792,41.566961966],[-71.443682444,41.567033007],[-71.44369798,41.567096776],[-71.443712598,41.567165621],[-71.443722319,41.567228014],[-71.443729117,41.567289674],[-71.443740728,41.567350559],[-71.443753226,41.567406413],[-71.443762946,41.567469469],[-71.443764816,41.567526141],[-71.44376574,41.567584185],[-71.443766694,41.567643029],[-71.443762716,41.56770043],[-71.443766592,41.567759939],[-71.443773391,41.567821599],[-71.44376363,41.56787543],[-71.443737396,41.56792724],[-71.443678067,41.567969908],[-71.443637677,41.567981872],[-71.443576288,41.56801219],[-71.44351785,41.568046855],[-71.443472191,41.568093761],[-71.443436927,41.568127477],[-71.4434355,41.56815803],[-71.443407437,41.568211371],[-71.443373759,41.568277059],[-71.44333457,41.568342653],[-71.443294728,41.568389036],[-71.443238508,41.568427795],[-71.443181311,41.568469962],[-71.443138662,41.568521832],[-71.443092229,41.568582619],[-71.443043286,41.568623463],[-71.442974242,41.568665532],[-71.442916229,41.568700151],[-71.442859942,41.568745771],[-71.442820101,41.568790782],[-71.442778695,41.568813837],[-71.442654359,41.568740249],[-71.442319939,41.568962398],[-71.442369431,41.569024514],[-71.442243054,41.569123179],[-71.442140481,41.569062774],[-71.442073526,41.569083575],[-71.442011857,41.56911954],[-71.441996484,41.569180526],[-71.441972105,41.56923252],[-71.441897907,41.569247805],[-71.441813697,41.569256155],[-71.441735648,41.56928651],[-71.441663114,41.569314168],[-71.441588818,41.569336337],[-71.441504474,41.569357677],[-71.441429232,41.569381881],[-71.441381168,41.569425469],[-71.441333102,41.569470452],[-71.441301383,41.569523768],[-71.441259943,41.569548903],[-71.441071052,41.569603191],[-71.44085215,41.56964015],[-71.440761542,41.56964916],[-71.440692308,41.569630806],[-71.440632506,41.569588534],[-71.440586474,41.569540187],[-71.440540442,41.569492503],[-71.440514575,41.569438791],[-71.440499703,41.569383782],[-71.440471547,41.569369177],[-71.44044622,41.5694246],[-71.440457307,41.569489212],[-71.44046301,41.569546893],[-71.440446754,41.569605842],[-71.440400514,41.569652175],[-71.440334342,41.569681254],[-71.440265428,41.569711658],[-71.440186531,41.569735813],[-71.440109624,41.5697497],[-71.440057067,41.569742469],[-71.440025674,41.569738176],[-71.439977782,41.569692526],[-71.439937266,41.569640774],[-71.439894073,41.569586276],[-71.439850849,41.569531754],[-71.439809938,41.569512248],[-71.439774045,41.569532583],[-71.439784314,41.569590998],[-71.439820097,41.569656447],[-71.43985585,41.569721896],[-71.43987062,41.569787219],[-71.439844248,41.569852201],[-71.439811614,41.56990483],[-71.43976883,41.569966327],[-71.439734404,41.57001413],[-71.439677166,41.570063864],[-71.439604434,41.570105243],[-71.43953268,41.570143855],[-71.439457369,41.570174918],[-71.439381081,41.570209434],[-71.439322182,41.570243319],[-71.43925591,41.570280653],[-71.439195152,41.570316572],[-71.439138014,41.570355329],[-71.439077189,41.570398131],[-71.439024487,41.570447868],[-71.438986372,41.570499076],[-71.43896013,41.570553126],[-71.438939403,41.57060583],[-71.43891773,41.570659219],[-71.438895993,41.57071677],[-71.438874352,41.570768764],[-71.438857245,41.570824237],[-71.438845489,41.57089005],[-71.438851094,41.570952556],[-71.438862277,41.571010971],[-71.438880769,41.571068727],[-71.438902032,41.57112653],[-71.4389032,41.571180068],[-71.43883872,41.571221497],[-71.438779689,41.571265032],[-71.438717004,41.57130852],[-71.438660745,41.571350707],[-71.438603543,41.571392894],[-71.43854637,41.571435721],[-71.438493766,41.571477225],[-71.438435712,41.571518016],[-71.43837035,41.571557385],[-71.438303095,41.571602242],[-71.438234894,41.571647716],[-71.438164932,41.571689119],[-71.438098591,41.571732581],[-71.438034988,41.571778812],[-71.437966789,41.571822983],[-71.437902274,41.571867841],[-71.43783864,41.571914095],[-71.437768645,41.571957509],[-71.437703216,41.572001681],[-71.437639614,41.572047272],[-71.437578722,41.572092132],[-71.437534273,41.572140546],[-71.437543529,41.572205821],[-71.43755109,41.572260781],[-71.43755493,41.572321205],[-71.437558769,41.572382314],[-71.437566231,41.572444821],[-71.437574573,41.572510782],[-71.437582981,41.57257194],[-71.437592369,41.572626878],[-71.437603518,41.572687397],[-71.437615451,41.572756768],[-71.437626666,41.572812439],[-71.437636968,41.572866737],[-71.437656341,41.572926597],[-71.437686388,41.57293846],[-71.43768157,41.572882175],[-71.437675053,41.572817588],[-71.437662991,41.572756428],[-71.437648254,41.572690418],[-71.437636258,41.572623769],[-71.437628893,41.572554378],[-71.437615984,41.572487043],[-71.437603075,41.572419685],[-71.437592905,41.572355095],[-71.437585411,41.57229396],[-71.437583364,41.572237677],[-71.437585005,41.572177279],[-71.437605832,41.572118401],[-71.437665615,41.57208653],[-71.43771825,41.572044341],[-71.437772717,41.571998723],[-71.437840851,41.571958692],[-71.437908007,41.571923463],[-71.437963321,41.571882694],[-71.438029629,41.571841953],[-71.438092314,41.571799792],[-71.438154968,41.5717577],[-71.438219515,41.571711446],[-71.438280375,41.571666608],[-71.438343975,41.571623099],[-71.438411232,41.571576892],[-71.438475778,41.571530638],[-71.438543979,41.571483746],[-71.438611267,41.571436854],[-71.438673985,41.571390599],[-71.438740328,41.571344392],[-71.438801219,41.571298113],[-71.43885565,41.571256611],[-71.438926459,41.571221406],[-71.438978952,41.571264338],[-71.439060196,41.571272431],[-71.439138929,41.571262684],[-71.439212281,41.571243947],[-71.439292809,41.57123626],[-71.439366975,41.571225115],[-71.439437553,41.571208435],[-71.439514529,41.571189059],[-71.43958517,41.57117032],[-71.439666713,41.571151015],[-71.439742805,41.571132965],[-71.43982438,41.571112951],[-71.439905039,41.571094949],[-71.439984751,41.571080423],[-71.440055808,41.571072112],[-71.440068021,41.571070678],[-71.440130509,41.571042261],[-71.440213161,41.571009897],[-71.440290363,41.570975427],[-71.440377418,41.570957451],[-71.440465155,41.570958068],[-71.440556415,41.570969665],[-71.440626563,41.570990078],[-71.440708459,41.571018067],[-71.440781284,41.571041203],[-71.440864125,41.571067866],[-71.440932447,41.571086883],[-71.441016166,41.571119675],[-71.441094276,41.571158662],[-71.44114961,41.571193338],[-71.441219396,41.571243938],[-71.441284616,41.571291747],[-71.441324286,41.571338695],[-71.441357465,41.571390375],[-71.441397917,41.571447616],[-71.441431944,41.571504853],[-71.441472364,41.571564838],[-71.441521043,41.571617326],[-71.44157432,41.571671211],[-71.441632197,41.571723749],[-71.441689129,41.571777682],[-71.441730629,41.571822573],[-71.441782013,41.571881946],[-71.441822565,41.571930267],[-71.441863117,41.571979275],[-71.441910816,41.572039309],[-71.441953945,41.572101376],[-71.441988983,41.572152439],[-71.442030353,41.572206912],[-71.442069012,41.572262117],[-71.442102194,41.572311051],[-71.442132629,41.572367555],[-71.442161143,41.572426116],[-71.442196116,41.572482621],[-71.442233797,41.57254121],[-71.442271512,41.572596344],[-71.442310073,41.572658386],[-71.44235053,41.572712882],[-71.442399337,41.572760567],[-71.442448114,41.572808275],[-71.442502506,41.572843636],[-71.4425643,41.572876347],[-71.442637258,41.572889854],[-71.442719451,41.57289591],[-71.442792541,41.572898485],[-71.442880216,41.572903857],[-71.442953991,41.572923584],[-71.443022968,41.57296252],[-71.44307726,41.573008149],[-71.443135238,41.573052476],[-71.44320056,41.573092073],[-71.443266958,41.573119961],[-71.443327709,41.573162254],[-71.443373781,41.573204403],[-71.443427454,41.573227436],[-71.443488245,41.573189434],[-71.443511775,41.573132591],[-71.443538895,41.573080622],[-71.443573323,41.573029365],[-71.443639595,41.57299276],[-71.443684132,41.573013662]]],[[[-71.452727325,41.573691613],[-71.452738939,41.573703331],[-71.452727521,41.57369149],[-71.452710544,41.573670453],[-71.452727325,41.573691613]]],[[[-71.45283539,41.57380349],[-71.452844068,41.573814827],[-71.452835521,41.57380349],[-71.452829832,41.573797589],[-71.45283539,41.57380349]]],[[[-71.452952402,41.574011605],[-71.452950521,41.57400049],[-71.452950408,41.574000215],[-71.452952402,41.574011605]]],[[[-71.453282885,41.57419851],[-71.453255521,41.57417549],[-71.453255159,41.574175371],[-71.453282885,41.57419851]]],[[[-71.453684521,41.57425149],[-71.453654422,41.574259642],[-71.453684867,41.574251738],[-71.453710581,41.574250776],[-71.453684521,41.57425149]]],[[[-71.453345142,41.574283824],[-71.45339042,41.574294975],[-71.453345521,41.574283489],[-71.453325493,41.57424269],[-71.453345142,41.574283824]]],[[[-71.453789537,41.574260883],[-71.45373136,41.574312728],[-71.45366669,41.574373192],[-71.453635416,41.574382855],[-71.453666521,41.57437349],[-71.453797677,41.574255251],[-71.453789537,41.574260883]]],[[[-71.453500067,41.574415251],[-71.45348455,41.574418897],[-71.453543188,41.574407424],[-71.453500067,41.574415251]]],[[[-71.453151124,41.574727143],[-71.4531285,41.574805096],[-71.453109596,41.574876625],[-71.45309338,41.574938115],[-71.453082054,41.574987027],[-71.453151521,41.57472749],[-71.453174525,41.574661296],[-71.453151124,41.574727143]]],[[[-71.453051372,41.57511902],[-71.453047462,41.575176856],[-71.453093156,41.575246421],[-71.453106926,41.575280808],[-71.453093521,41.57524649],[-71.453047521,41.57517649],[-71.453051521,41.57511949],[-71.453054125,41.575108051],[-71.453051372,41.57511902]]],[[[-71.453117027,41.575383191],[-71.45308859,41.575454076],[-71.453046845,41.575523651],[-71.453002296,41.575596107],[-71.452959635,41.57566925],[-71.452959567,41.575669413],[-71.453088522,41.57545449],[-71.453117521,41.57538349],[-71.453118178,41.575335519],[-71.453117027,41.575383191]]],[[[-71.452930284,41.575740133],[-71.452924408,41.575782602],[-71.452930521,41.57574049],[-71.452959521,41.57566949],[-71.452930284,41.575740133]]],[[[-71.453069344,41.57595592],[-71.45314856,41.57599159],[-71.453148521,41.57599149],[-71.453069522,41.57595549],[-71.453001962,41.575936474],[-71.453069344,41.57595592]]],[[[-71.45317142,41.576050614],[-71.453171521,41.57605049],[-71.453160317,41.57602175],[-71.45317142,41.576050614]]],[[[-71.452798898,41.576113015],[-71.45279886,41.576113337],[-71.45281656,41.576105343],[-71.452798898,41.576113015]]],[[[-71.452888521,41.57612949],[-71.452901983,41.57613393],[-71.452888459,41.576129404],[-71.45288371,41.576127044],[-71.452888521,41.57612949]]],[[[-71.452788694,41.576198338],[-71.452786181,41.576219423],[-71.452786252,41.576289358],[-71.452782585,41.576329414],[-71.452786521,41.576289491],[-71.452786521,41.57621949],[-71.452792837,41.576163697],[-71.452788694,41.576198338]]],[[[-71.452679566,41.576661335],[-71.452651245,41.576739355],[-71.45264007,41.576818662],[-71.452644594,41.576865615],[-71.452640522,41.57681849],[-71.452651521,41.576739491],[-71.452706992,41.576587935],[-71.452679566,41.576661335]]],[[[-71.452701993,41.577046926],[-71.452701521,41.577045491],[-71.452701343,41.577045096],[-71.452701993,41.577046926]]],[[[-71.452748105,41.577188852],[-71.452761899,41.577261117],[-71.452748521,41.57718849],[-71.452743861,41.577174313],[-71.452748105,41.577188852]]],[[[-71.452765387,41.577338107],[-71.452762968,41.577360511],[-71.452765521,41.577338491],[-71.452762521,41.577264491],[-71.452765387,41.577338107]]],[[[-71.452734146,41.577535779],[-71.452731269,41.577597138],[-71.452731368,41.577669751],[-71.452731521,41.577669491],[-71.452734521,41.577535491],[-71.452738648,41.577502995],[-71.452734146,41.577535779]]],[[[-71.452695394,41.577730562],[-71.452695521,41.577730491],[-71.452711303,41.577703749],[-71.452695394,41.577730562]]],[[[-71.450997852,41.57740449],[-71.451050782,41.577450435],[-71.451083879,41.577503689],[-71.451106615,41.577564166],[-71.451121055,41.577641838],[-71.451144882,41.577710137],[-71.451193918,41.577750431],[-71.451256207,41.577785585],[-71.451321418,41.577823577],[-71.451395185,41.57786507],[-71.451471729,41.577898698],[-71.451545148,41.577918077],[-71.451620284,41.577921013],[-71.45171983,41.577905229],[-71.451796987,41.577852501],[-71.451823769,41.577798037],[-71.451820866,41.577729564],[-71.451808343,41.577653997],[-71.451801459,41.577573447],[-71.451798439,41.577497084],[-71.451797425,41.577427148],[-71.451801278,41.577365768],[-71.451810467,41.577337711],[-71.45182402,41.577296368],[-71.451879309,41.577242396],[-71.451952717,41.577193257],[-71.452016591,41.577143496],[-71.452041281,41.577076201],[-71.452039148,41.576995607],[-71.452053186,41.576916256],[-71.45206631,41.576838367],[-71.452070934,41.576763402],[-71.452102465,41.576711089],[-71.452150227,41.576662122],[-71.452171993,41.576592745],[-71.452186265,41.576526955],[-71.452208004,41.576454696],[-71.452216463,41.576382568],[-71.452238404,41.576323871],[-71.452265955,41.576258704],[-71.452292161,41.576198133],[-71.452293534,41.576194955],[-71.452303112,41.57613424],[-71.452307879,41.576070664],[-71.452333628,41.576011236],[-71.452368965,41.575959588],[-71.452410056,41.575910733],[-71.452455986,41.575866796],[-71.452502889,41.57582501],[-71.45253445,41.575772674],[-71.452548778,41.575712625],[-71.452555376,41.575644041],[-71.452554274,41.575568411],[-71.452555119,41.575496349],[-71.452571336,41.575435522],[-71.452596226,41.575383252],[-71.45261731,41.575330272],[-71.452634587,41.57527729],[-71.452679224,41.575209866],[-71.452741891,41.575141557],[-71.452757222,41.575085052],[-71.452743071,41.575027369],[-71.452727773,41.574956124],[-71.452761904,41.574886614],[-71.452816958,41.574816953],[-71.452849521,41.574768139],[-71.452881763,41.574698652],[-71.452856046,41.574631816],[-71.452820204,41.574583569],[-71.452791047,41.574556342],[-71.452756595,41.57452415],[-71.452682234,41.574507676],[-71.452588273,41.574514133],[-71.452480944,41.574518571],[-71.452403124,41.574525628],[-71.452310673,41.574508552],[-71.452246644,41.574482706],[-71.452167763,41.574482627],[-71.452179313,41.574556089],[-71.452183466,41.574582414],[-71.452188172,41.574643021],[-71.452168264,41.574712422],[-71.452136704,41.574763339],[-71.452096922,41.574772951],[-71.452075014,41.574703898],[-71.452011539,41.574588106],[-71.452011075,41.574556019],[-71.45201064,41.574526723],[-71.452031638,41.574467316],[-71.452068892,41.574417064],[-71.452129219,41.57438235],[-71.452202404,41.574382449],[-71.452266521,41.574413304],[-71.452326485,41.574418544],[-71.452390705,41.574391607],[-71.452468918,41.5743467],[-71.45255858,41.574303879],[-71.452646323,41.574261767],[-71.45272545,41.57421542],[-71.452787463,41.574167099],[-71.452812179,41.574101976],[-71.452806616,41.574046355],[-71.452790491,41.573981558],[-71.452761883,41.57391184],[-71.45272472,41.573838619],[-71.452699266,41.573787471],[-71.45265924,41.573715027],[-71.452615552,41.573651866],[-71.452591042,41.573600719],[-71.452603944,41.573574172],[-71.452618198,41.573573355],[-71.45263374,41.573588225],[-71.452618521,41.57357349],[-71.453369521,41.571476489],[-71.454016521,41.571362489],[-71.454077013,41.571334134],[-71.454016416,41.571362104],[-71.453946304,41.571328366],[-71.453882679,41.57129399],[-71.453821792,41.571263823],[-71.453733877,41.571254366],[-71.453647757,41.57124914],[-71.453590648,41.571216161],[-71.45353723,41.571175615],[-71.4534709,41.571134949],[-71.453408256,41.571092225],[-71.453354902,41.571047471],[-71.453296006,41.571001296],[-71.453249108,41.570957253],[-71.453214303,41.570909143],[-71.453199028,41.570849928],[-71.453198465,41.570828544],[-71.453197636,41.57079568],[-71.453207396,41.570733135],[-71.453203171,41.570678864],[-71.453119816,41.570682672],[-71.453048292,41.570708097],[-71.452980418,41.570739081],[-71.452910718,41.570768622],[-71.452835445,41.570797522],[-71.452760201,41.570828456],[-71.452696957,41.570857384],[-71.452619887,41.570886968],[-71.45256127,41.570918664],[-71.452534308,41.570933175],[-71.45246028,41.570925186],[-71.452438511,41.57091763],[-71.452171026,41.570843856],[-71.452095274,41.570819857],[-71.45202226,41.570800067],[-71.451941847,41.570778833],[-71.451867917,41.570761787],[-71.451797641,41.570746184],[-71.451793488,41.57080251],[-71.451776603,41.570819769],[-71.45176173,41.570835063],[-71.451687666,41.570836084],[-71.451602326,41.570846134],[-71.451521639,41.570864555],[-71.451450181,41.570882318],[-71.451359396,41.570884681],[-71.451273242,41.570883592],[-71.451189043,41.570875552],[-71.451096533,41.570861905],[-71.451017911,41.570849019],[-71.45093189,41.570833363],[-71.450857963,41.570813549],[-71.450790624,41.570780519],[-71.450712103,41.570753728],[-71.450706774,41.570752788],[-71.450634456,41.570740178],[-71.450542761,41.570737692],[-71.450460353,41.570737313],[-71.450385314,41.570736938],[-71.450376463,41.570802273],[-71.450370419,41.570859993],[-71.450352647,41.570883542],[-71.450293654,41.570848503],[-71.450272806,41.570790679],[-71.45024361,41.570739072],[-71.450162117,41.570736636],[-71.450083394,41.570736259],[-71.449991697,41.57073583],[-71.449905574,41.570735449],[-71.449813842,41.57074131],[-71.449728464,41.570761764],[-71.449657037,41.570776735],[-71.449583755,41.570789624],[-71.449507701,41.570803175],[-71.449450834,41.570814585],[-71.449429787,41.570818807],[-71.449359274,41.570834487],[-71.449285078,41.570847376],[-71.44921271,41.570859557],[-71.449126452,41.570875161],[-71.449046713,41.570887316],[-71.448975321,41.570897392],[-71.448899236,41.570910966],[-71.448818587,41.57092033],[-71.448726787,41.570933805],[-71.448698006,41.570936307],[-71.448650799,41.570940426],[-71.448577618,41.570940805],[-71.44849612,41.570943901],[-71.448407195,41.570943473],[-71.448322963,41.570937512],[-71.448254579,41.570918431],[-71.448184468,41.570886839],[-71.448110578,41.570860025],[-71.448025334,41.570863829],[-71.44795283,41.570893389],[-71.44790154,41.570937665],[-71.447848326,41.570988891],[-71.447779739,41.570994852],[-71.44770956,41.570972294],[-71.447632829,41.570955244],[-71.44754674,41.570949944],[-71.447463422,41.570944692],[-71.447389395,41.5709367],[-71.447303337,41.570929388],[-71.447227387,41.570926929],[-71.447143088,41.570930023],[-71.447083554,41.570961739],[-71.447062742,41.571014535],[-71.447040002,41.571077028],[-71.447022872,41.571133256],[-71.447011281,41.571192346],[-71.447002495,41.571247916],[-71.446987158,41.57130833],[-71.446969146,41.571361814],[-71.446930765,41.571409663],[-71.446905354,41.571461702],[-71.446887247,41.571520012],[-71.446865519,41.571574203],[-71.446833588,41.57162967],[-71.44679703,41.571682368],[-71.446750368,41.571725981],[-71.446711074,41.571773098],[-71.446686476,41.571835566],[-71.446663737,41.57189735],[-71.446632784,41.571947306],[-71.446577779,41.571990138],[-71.446519087,41.5720337],[-71.446445771,41.572048646],[-71.446375255,41.572065056],[-71.44630312,41.572050089],[-71.446228279,41.57203098],[-71.446151274,41.5720494],[-71.446123866,41.572047992],[-71.446105899,41.572047092],[-71.446078533,41.571994799],[-71.446045659,41.571938318],[-71.446008124,41.571883208],[-71.445976193,41.571826727],[-71.44594214,41.571796638],[-71.445868886,41.571809525],[-71.445789048,41.571830024],[-71.4457112,41.571837992],[-71.445698665,41.571895686],[-71.445668625,41.571945619],[-71.445599055,41.571960589],[-71.445523913,41.571972766],[-71.445446944,41.571985628],[-71.445372779,41.571995038],[-71.445344598,41.57204289],[-71.445326521,41.572100536],[-71.445306551,41.572162344],[-71.44528472,41.572228312],[-71.44526387,41.572287352],[-71.445239273,41.572347739],[-71.445206393,41.572406704],[-71.445185546,41.572461559],[-71.445171217,41.572515021],[-71.445183178,41.572524838],[-71.445260989,41.572525881],[-71.445346303,41.572513755],[-71.445417697,41.572503635],[-71.445489091,41.572494933],[-71.445563256,41.572486254],[-71.44563928,41.572474764],[-71.445711654,41.572459087],[-71.445792373,41.572442796],[-71.445870287,41.572429934],[-71.445941714,41.572417755],[-71.446020505,41.57241116],[-71.446053754,41.572421078],[-71.446070848,41.57248304],[-71.446055744,41.572517772],[-71.445988877,41.572541091],[-71.445914612,41.572560198],[-71.445841325,41.572575166],[-71.445765202,41.572594272],[-71.445690902,41.572619691],[-71.445619303,41.572655517],[-71.445548585,41.572694133],[-71.445470532,41.572725793],[-71.445399038,41.572746296],[-71.445322947,41.572762635],[-71.44524037,41.572779679],[-71.4451634,41.572791123],[-71.445094743,41.572804721],[-71.445062844,41.572856025],[-71.445028175,41.57290527],[-71.445042874,41.572917855],[-71.445126227,41.572921028],[-71.445201271,41.572917885],[-71.445281921,41.572911291],[-71.445357,41.572901927],[-71.445437653,41.572893229],[-71.445514588,41.572885948],[-71.445604532,41.572873869],[-71.445675958,41.572862354],[-71.445747386,41.572849466],[-71.445826213,41.572838],[-71.445914266,41.572828665],[-71.44598931,41.572825567],[-71.446065267,41.572821738],[-71.44614673,41.572827653],[-71.446204707,41.572875204],[-71.446255255,41.57291996],[-71.446313233,41.572966825],[-71.446363814,41.573010186],[-71.446412497,41.573063976],[-71.446447231,41.573119771],[-71.446470882,41.573172039],[-71.446491761,41.573224306],[-71.446518185,41.573275226],[-71.446549201,41.573333764],[-71.44658765,41.573389561],[-71.446616775,41.573451597],[-71.446636741,41.57350455],[-71.44666029,41.573570037],[-71.446673385,41.573608075],[-71.446704346,41.573696206],[-71.446717835,41.573773901],[-71.446722681,41.573844502],[-71.446723746,41.573919423],[-71.446724611,41.573978679],[-71.446718806,41.574037955],[-71.446719354,41.574075027],[-71.446628658,41.574111462],[-71.446557623,41.574126317],[-71.44622997,41.574141121],[-71.446134004,41.574141899],[-71.446135473,41.574243236],[-71.446771688,41.574210165],[-71.446851716,41.57422166],[-71.446904174,41.57424245],[-71.446930544,41.574284519],[-71.446932795,41.574287768],[-71.44697228,41.574344846],[-71.447005342,41.574398079],[-71.44703191,41.574459222],[-71.447045054,41.574512674],[-71.447038076,41.574553813],[-71.447034526,41.574574806],[-71.447032984,41.574599093],[-71.447040518,41.574658992],[-71.447045191,41.574718158],[-71.447051953,41.574791642],[-71.44705754,41.574848658],[-71.447064101,41.574907848],[-71.447071606,41.574966306],[-71.44707811,41.575021174],[-71.44708493,41.57509747],[-71.447095529,41.575172327],[-71.447108988,41.575249999],[-71.447118528,41.57531628],[-71.447121423,41.57538832],[-71.447122378,41.575449703],[-71.447122549,41.575463974],[-71.447123503,41.57552746],[-71.447124454,41.575593143],[-71.447126293,41.575653748],[-71.447140523,41.575720031],[-71.447149089,41.57578487],[-71.447157625,41.575849733],[-71.447163154,41.575903914],[-71.447164135,41.5759717],[-71.447165144,41.576040904],[-71.447162348,41.576108757],[-71.44715374,41.576169472],[-71.447150977,41.576195862],[-71.447146219,41.576241599],[-71.447148058,41.576302959],[-71.447166069,41.576364167],[-71.447183162,41.576429696],[-71.44718689,41.57648964],[-71.447183178,41.576560305],[-71.44714105,41.576604859],[-71.447111029,41.576631534],[-71.447107143,41.576690764],[-71.447117453,41.576745634],[-71.447133573,41.576809722],[-71.447140256,41.576832114],[-71.44715356,41.576876648],[-71.447203172,41.576954038],[-71.447534812,41.577147553],[-71.447617473,41.577146882],[-71.447719081,41.577143201],[-71.447708598,41.577074747],[-71.44768112,41.576817382],[-71.447701408,41.576775082],[-71.447775336,41.576763086],[-71.447828545,41.576761921],[-71.447909605,41.576782655],[-71.447915503,41.576796174],[-71.44792885,41.576862433],[-71.447945001,41.576927939],[-71.447955572,41.57700067],[-71.447959444,41.577071979],[-71.447963201,41.577133317],[-71.447966381,41.577156143],[-71.448050961,41.577155449],[-71.448130759,41.577154776],[-71.448169744,41.577154451],[-71.448179382,41.577098722],[-71.448184269,41.577043036],[-71.448230838,41.577043354],[-71.448241322,41.577110344],[-71.448299254,41.577107718],[-71.448261762,41.576686304],[-71.448320637,41.576683678],[-71.448319454,41.57660233],[-71.448333216,41.576568672],[-71.448373828,41.576552636],[-71.448448962,41.576555597],[-71.448491444,41.576600921],[-71.448535584,41.576629116],[-71.448569498,41.576609554],[-71.448602175,41.57657451],[-71.448619093,41.576556336],[-71.448678133,41.576499486],[-71.448703828,41.576435027],[-71.448712435,41.576373603],[-71.448773883,41.576352408],[-71.448834964,41.576370433],[-71.448887863,41.576414961],[-71.449121417,41.576398782],[-71.449092458,41.576237743],[-71.449054043,41.576210237],[-71.449041932,41.576196716],[-71.449009585,41.576160682],[-71.448958634,41.576118945],[-71.448898063,41.576070937],[-71.448885951,41.576058605],[-71.44885275,41.576024926],[-71.448820657,41.575975948],[-71.448803706,41.575920413],[-71.44879909,41.575864815],[-71.448797221,41.575802014],[-71.448797125,41.575729974],[-71.448799179,41.575674996],[-71.44880498,41.575618557],[-71.448809896,41.57556358],[-71.448808972,41.575500048],[-71.448798574,41.575438043],[-71.448790151,41.575382489],[-71.448776977,41.57532691],[-71.448770329,41.575261317],[-71.448765598,41.575197165],[-71.44876367,41.575131529],[-71.448762716,41.575066601],[-71.448770496,41.575011557],[-71.448830853,41.57498039],[-71.448908789,41.574981865],[-71.448976539,41.57500058],[-71.449081787,41.575049682],[-71.449439107,41.575113806],[-71.449439598,41.575148797],[-71.449391142,41.575149187],[-71.449393637,41.575191292],[-71.449447304,41.575265138],[-71.449729209,41.57565304],[-71.449839653,41.575601472],[-71.449876412,41.575643979],[-71.449851112,41.575670589],[-71.450118369,41.576141523],[-71.450128513,41.576178759],[-71.450159656,41.576197228],[-71.450161999,41.576200408],[-71.450233046,41.576249769],[-71.450304981,41.576294144],[-71.450357081,41.576348642],[-71.450403458,41.576400371],[-71.450428082,41.576460117],[-71.450402245,41.576511677],[-71.450358318,41.576562703],[-71.450303887,41.576609562],[-71.450245649,41.576655688],[-71.450186407,41.57669971],[-71.450089011,41.576733354],[-71.450014137,41.576747524],[-71.449940294,41.57676812],[-71.44986674,41.576807996],[-71.449853499,41.576876599],[-71.449864786,41.576932886],[-71.449875156,41.576992009],[-71.449892965,41.577041827],[-71.449927604,41.577070086],[-71.449996706,41.577115878],[-71.450060767,41.577142458],[-71.450129464,41.577160486],[-71.45019444,41.577184893],[-71.450218427,41.577201827],[-71.450043626,41.577252773],[-71.450167673,41.57733701],[-71.450627825,41.577649471],[-71.450625564,41.577657909],[-71.450585267,41.577661254],[-71.450587471,41.577686594],[-71.450665869,41.577684936],[-71.45074206,41.577622534],[-71.450721912,41.577602263],[-71.450730904,41.577553349],[-71.450925886,41.577398238],[-71.450997852,41.57740449]]],[[[-71.452523714,41.577832221],[-71.452480733,41.577881098],[-71.452433154,41.577940538],[-71.452523522,41.57783249],[-71.452533721,41.57782586],[-71.452523714,41.577832221]]],[[[-71.452431286,41.577942872],[-71.452430187,41.577951295],[-71.452431504,41.577942599],[-71.452431286,41.577942872]]],[[[-71.45250255,41.578013629],[-71.452502521,41.57801349],[-71.452426999,41.57797573],[-71.45250255,41.578013629]]],[[[-71.45252314,41.578116262],[-71.452523448,41.578116598],[-71.452523522,41.578116491],[-71.452522557,41.578111758],[-71.45252314,41.578116262]]]]}}"}, +{"type": "precinct", "typeId": 2308, "areaId": 26048, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":387,\"NAME\":\"2308\",\"SHAPE_Length\":0.3345268400263,\"SHAPE_Area\":-0.0023020509427381},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.489555533,41.560772486],[-71.489693533,41.560757486],[-71.489800532,41.560757486],[-71.489906533,41.560765486],[-71.490013532,41.560780486],[-71.490059533,41.560791486],[-71.490105532,41.560807486],[-71.490150532,41.560837486],[-71.490189532,41.560871486],[-71.490219533,41.560906486],[-71.490257533,41.560936486],[-71.490318532,41.560997486],[-71.490501533,41.561123486],[-71.490662533,41.561249486],[-71.490723533,41.561287486],[-71.490791533,41.561322486],[-71.491035533,41.561432486],[-71.491516533,41.561730486],[-71.491577533,41.561680486],[-71.491661533,41.561634486],[-71.491859533,41.561562486],[-71.492302533,41.561440486],[-71.492896533,41.561282486],[-71.493393534,41.561154486],[-71.494118534,41.560929486],[-71.494217534,41.560883486],[-71.494324534,41.560841486],[-71.494422534,41.560796486],[-71.494621534,41.560707486],[-71.494713534,41.560654486],[-71.494781534,41.560597486],[-71.495303534,41.560041486],[-71.495377534,41.559964486],[-71.495811534,41.559456486],[-71.495926534,41.559327485],[-71.496269534,41.558800485],[-71.496361535,41.558651485],[-71.496384534,41.558529485],[-71.496407534,41.558354485],[-71.496414534,41.558094486],[-71.496414534,41.557751485],[-71.496391534,41.557640485],[-71.496353534,41.557530486],[-71.496178534,41.557202485],[-71.496140534,41.557083485],[-71.496132534,41.556969485],[-71.496147535,41.556862485],[-71.496178534,41.556721485],[-71.496315534,41.556385485],[-71.496399535,41.556225485],[-71.496544534,41.555985485],[-71.496674535,41.555817485],[-71.496887535,41.555580485],[-71.496986535,41.555470485],[-71.497162535,41.555222485],[-71.497284534,41.555008485],[-71.497490535,41.554608484],[-71.497544535,41.554512484],[-71.497688535,41.554272485],[-71.497787534,41.554127485],[-71.497940535,41.553967484],[-71.498222535,41.553646485],[-71.498543535,41.553223484],[-71.498703535,41.553032484],[-71.498848535,41.552895484],[-71.499031535,41.552754484],[-71.499237535,41.552624484],[-71.499809535,41.552285484],[-71.500000535,41.552166484],[-71.500145536,41.552060484],[-71.500237535,41.551964484],[-71.500313535,41.551850484],[-71.500351535,41.551701484],[-71.500359536,41.551552484],[-71.500336536,41.551419484],[-71.500290535,41.551285484],[-71.500214535,41.551125484],[-71.500122535,41.550965484],[-71.500038535,41.550801484],[-71.499870535,41.550499484],[-71.499817535,41.550354483],[-71.499741535,41.550045483],[-71.499443535,41.548645483],[-71.499397535,41.548386483],[-71.499268535,41.547791483],[-71.499214534,41.547589483],[-71.499130535,41.547123483],[-71.499107535,41.547043483],[-71.499054535,41.546788483],[-71.498978534,41.546486483],[-71.498886534,41.546162483],[-71.498764534,41.545643483],[-71.498726534,41.545452483],[-71.498711534,41.545216483],[-71.498741535,41.544991482],[-71.498802534,41.544754483],[-71.498917535,41.544407482],[-71.499039534,41.544190483],[-71.499199534,41.543953483],[-71.499390534,41.543652482],[-71.499481535,41.543492482],[-71.499565534,41.543293483],[-71.499596535,41.543187482],[-71.499634535,41.543026482],[-71.499718534,41.542717482],[-71.499855534,41.542179482],[-71.499939535,41.541890482],[-71.500206534,41.541020482],[-71.500313535,41.540642481],[-71.500381534,41.540455482],[-71.500427535,41.540398482],[-71.500229534,41.540261482],[-71.499977534,41.540055482],[-71.499748535,41.539841482],[-71.499496535,41.539589481],[-71.499181534,41.539310482],[-71.498706534,41.538910481],[-71.498575534,41.538812481],[-71.498482534,41.538752481],[-71.498353534,41.538690482],[-71.498254534,41.538658481],[-71.498142534,41.538637481],[-71.497964533,41.538614481],[-71.497630534,41.538588482],[-71.497223533,41.538567482],[-71.497169533,41.538563481],[-71.497031533,41.538565482],[-71.496712534,41.538571482],[-71.496254533,41.538571482],[-71.495712533,41.538582481],[-71.495563534,41.538601481],[-71.495468533,41.538613482],[-71.495041533,41.538678481],[-71.494606533,41.538754481],[-71.494232533,41.538800482],[-71.493256532,41.538887481],[-71.493118532,41.538895482],[-71.493042532,41.538903482],[-71.492134532,41.538964482],[-71.491707532,41.538983482],[-71.491325532,41.539029482],[-71.491043531,41.539090482],[-71.491013532,41.539093482],[-71.490654531,41.539177482],[-71.490341531,41.539284482],[-71.489983532,41.539418482],[-71.489746531,41.539524482],[-71.489700531,41.539563482],[-71.489609531,41.539627482],[-71.489525531,41.539811482],[-71.489471531,41.540028482],[-71.489441531,41.540367482],[-71.489433531,41.540707482],[-71.489449531,41.540974482],[-71.489471531,41.541230482],[-71.489464531,41.541413482],[-71.489433531,41.541623482],[-71.489388531,41.541817482],[-71.489296531,41.542084483],[-71.489120531,41.542546483],[-71.489044531,41.542698482],[-71.488998531,41.542759483],[-71.488953531,41.542820483],[-71.488800531,41.542954483],[-71.488663531,41.543038483],[-71.488518531,41.543076483],[-71.488396531,41.543080482],[-71.488289531,41.543057483],[-71.488136531,41.542988482],[-71.488022531,41.542927482],[-71.48732153,41.542580482],[-71.48729753,41.542569483],[-71.48667953,41.542233483],[-71.48644353,41.542115483],[-71.48621453,41.542038483],[-71.48610753,41.542012482],[-71.48600053,41.541996482],[-71.48582553,41.541985483],[-71.48564953,41.541996482],[-71.48557353,41.542008482],[-71.48549753,41.542027482],[-71.48537453,41.542065483],[-71.48514653,41.542160483],[-71.48442153,41.542496482],[-71.483902529,41.542736483],[-71.483032529,41.543156483],[-71.482826529,41.543263483],[-71.482212529,41.543572483],[-71.482147529,41.543606483],[-71.481383529,41.543964483],[-71.481133528,41.544083483],[-71.480881528,41.544197483],[-71.480522529,41.544331483],[-71.480141528,41.544457483],[-71.479691528,41.544587483],[-71.478943528,41.544793484],[-71.478491528,41.544920483],[-71.477205528,41.545205484],[-71.477051528,41.545243484],[-71.476044527,41.544636484],[-71.473282526,41.542950483],[-71.473134526,41.542856483],[-71.471039525,41.541584483],[-71.470142525,41.541022483],[-71.469696525,41.540741482],[-71.469345525,41.540505483],[-71.469339524,41.540500483],[-71.469162524,41.540356483],[-71.469025524,41.540188483],[-71.468971524,41.540108483],[-71.468895524,41.539975483],[-71.468882525,41.539948483],[-71.468842525,41.539864482],[-71.468796524,41.539753483],[-71.468758524,41.539639483],[-71.468742525,41.539502483],[-71.468727525,41.539429483],[-71.468735524,41.539219482],[-71.468750524,41.539048482],[-71.468765525,41.538750483],[-71.468788524,41.538559482],[-71.468819524,41.538239483],[-71.468849524,41.537747482],[-71.468844525,41.537578483],[-71.468829796,41.537350393],[-71.468814524,41.537121482],[-71.468697524,41.536358482],[-71.468620524,41.536011482],[-71.468521524,41.535668482],[-71.468399524,41.535344482],[-71.468269524,41.535019482],[-71.467957524,41.534294482],[-71.467705524,41.533734482],[-71.467543523,41.533355481],[-71.466698524,41.531376481],[-71.466560523,41.531037481],[-71.466316523,41.530461481],[-71.466263523,41.530354481],[-71.466225523,41.530255481],[-71.466080523,41.530281481],[-71.465981523,41.530304481],[-71.465599523,41.530381481],[-71.463852523,41.530758481],[-71.463089522,41.530915481],[-71.462349522,41.531052481],[-71.461037521,41.531250481],[-71.460297521,41.531330481],[-71.460255521,41.531333481],[-71.459950521,41.531355481],[-71.459907521,41.531032481],[-71.459884521,41.530860481],[-71.459887521,41.530685481],[-71.459884521,41.530623481],[-71.459846521,41.530560481],[-71.459769521,41.530454481],[-71.45973952,41.530397481],[-71.459716521,41.530341481],[-71.45970052,41.530282481],[-71.459612521,41.530032481],[-71.459596521,41.529965481],[-71.459591521,41.529894481],[-71.459571521,41.529763481],[-71.459573521,41.52968348],[-71.459563521,41.529609481],[-71.459528521,41.529486481],[-71.459554521,41.529435481],[-71.459593521,41.529381481],[-71.459609521,41.529323481],[-71.459614521,41.529257481],[-71.459612521,41.529200481],[-71.459568521,41.52913948],[-71.459472521,41.529037481],[-71.459439521,41.528977481],[-71.459425521,41.528911481],[-71.459438521,41.528848481],[-71.459405521,41.528791481],[-71.459339521,41.528745481],[-71.459263521,41.528704481],[-71.459211521,41.528646481],[-71.459170521,41.528582481],[-71.45915552,41.528520481],[-71.459206521,41.52847348],[-71.459367521,41.528410481],[-71.45942952,41.52836148],[-71.459461521,41.52830048],[-71.459475521,41.52818548],[-71.459476521,41.52812748],[-71.45945052,41.527958481],[-71.459417521,41.527938481],[-71.459355521,41.52789048],[-71.459162521,41.527725481],[-71.459107521,41.52766048],[-71.45888452,41.527357481],[-71.458854521,41.52729248],[-71.45886252,41.52722548],[-71.458938521,41.52708948],[-71.45894152,41.52701848],[-71.45891052,41.526949481],[-71.45883252,41.526906481],[-71.45872552,41.52689648],[-71.45864952,41.52690048],[-71.45857952,41.526912481],[-71.458486521,41.526945481],[-71.45839752,41.526970481],[-71.45830352,41.52695948],[-71.458197521,41.52694148],[-71.45809552,41.52694448],[-71.45801152,41.526990481],[-71.45796152,41.52703148],[-71.45787152,41.527122481],[-71.45780452,41.527183481],[-71.45773952,41.52723248],[-71.45768852,41.527279481],[-71.45759352,41.52728448],[-71.45749452,41.527280481],[-71.45731752,41.52724848],[-71.45722952,41.52724948],[-71.45714452,41.527274481],[-71.45711152,41.527339481],[-71.45711552,41.52740848],[-71.45715052,41.52748148],[-71.45722952,41.52758048],[-71.45724052,41.527651481],[-71.45723352,41.527725481],[-71.45718452,41.527782481],[-71.45712052,41.52781448],[-71.45704452,41.52783548],[-71.45695952,41.52783448],[-71.45677452,41.527822481],[-71.45649952,41.52781348],[-71.456327519,41.52779248],[-71.456251519,41.52777148],[-71.45618552,41.52771748],[-71.45614252,41.52766048],[-71.45597352,41.52748348],[-71.455920519,41.52744348],[-71.45579952,41.52736948],[-71.455704519,41.52732848],[-71.455478519,41.52726548],[-71.455305519,41.527222481],[-71.45521352,41.52718948],[-71.455141519,41.52714848],[-71.455118519,41.527087481],[-71.455147519,41.52701648],[-71.45521352,41.52691648],[-71.455243519,41.52684548],[-71.455247519,41.526729481],[-71.455228519,41.52666648],[-71.455181519,41.52661148],[-71.45511552,41.526560481],[-71.455059519,41.52650648],[-71.454925519,41.526342481],[-71.454803519,41.526230481],[-71.454783519,41.526168481],[-71.454779519,41.52610648],[-71.454729519,41.52604548],[-71.454656519,41.525993481],[-71.454580519,41.525954481],[-71.454500519,41.52592848],[-71.454430519,41.52591248],[-71.454352519,41.52590648],[-71.454227519,41.52588948],[-71.454230519,41.52591148],[-71.454192519,41.52593848],[-71.454108519,41.525937481],[-71.453994519,41.52592748],[-71.453748519,41.52589148],[-71.452981518,41.52263948],[-71.452967519,41.52263648],[-71.452877518,41.522623479],[-71.452785518,41.52259948],[-71.452696519,41.52256148],[-71.452623518,41.52251948],[-71.452571518,41.52248048],[-71.452540518,41.522408479],[-71.452532518,41.522334479],[-71.452502519,41.52225948],[-71.452427518,41.522155479],[-71.452414518,41.522098479],[-71.452409518,41.522043479],[-71.452306518,41.521862479],[-71.452257518,41.521804479],[-71.452192518,41.521749479],[-71.452120518,41.52170248],[-71.452043518,41.52166648],[-71.451966518,41.521650479],[-71.451886518,41.52164548],[-71.451787518,41.52164448],[-71.451681518,41.521650479],[-71.451586518,41.52166348],[-71.451509518,41.521667479],[-71.451447518,41.52164348],[-71.451398518,41.521594479],[-71.451353518,41.521533479],[-71.451134518,41.521281479],[-71.451056518,41.52117248],[-71.450887517,41.52099648],[-71.450832517,41.520927479],[-71.450712517,41.520740479],[-71.450655517,41.52068948],[-71.450530518,41.520603479],[-71.450464517,41.520565479],[-71.450394518,41.520536479],[-71.450324517,41.520522479],[-71.450250517,41.520522479],[-71.450176517,41.520536479],[-71.450105518,41.520557479],[-71.449972517,41.52060848],[-71.449820517,41.520644479],[-71.449741517,41.52066948],[-71.449673517,41.52070448],[-71.449614517,41.52074748],[-71.449510517,41.520838479],[-71.449439517,41.52088048],[-71.449368517,41.520914479],[-71.449300517,41.52095748],[-71.449184517,41.521142479],[-71.449158517,41.52119748],[-71.449118517,41.521321479],[-71.449079517,41.521377479],[-71.449015517,41.521415479],[-71.448937517,41.521455479],[-71.448847517,41.521494479],[-71.448781517,41.521516479],[-71.448710517,41.521533479],[-71.448610517,41.52154448],[-71.448510517,41.52154148],[-71.448346517,41.52156648],[-71.448279517,41.52158548],[-71.448209517,41.52162548],[-71.448094517,41.52170448],[-71.447989517,41.52181348],[-71.447924516,41.52186048],[-71.447845516,41.52186848],[-71.447765516,41.521863479],[-71.447696517,41.521844479],[-71.447557516,41.52181448],[-71.447454516,41.521824479],[-71.447149516,41.52182248],[-71.447106516,41.52177548],[-71.446920516,41.52162148],[-71.446861516,41.52158148],[-71.446790516,41.521552479],[-71.446702516,41.52153648],[-71.446394516,41.52152948],[-71.446293516,41.521534479],[-71.446097516,41.521572479],[-71.446004516,41.52158248],[-71.445916516,41.521574479],[-71.445827516,41.52156048],[-71.445731516,41.52153848],[-71.445635516,41.52150248],[-71.445526516,41.521474479],[-71.445296516,41.52145848],[-71.445170516,41.521436479],[-71.445045516,41.52142048],[-71.444925516,41.521414479],[-71.444807515,41.52140348],[-71.444689515,41.52138248],[-71.444572515,41.52135448],[-71.444457515,41.521316479],[-71.444359515,41.52127048],[-71.444317515,41.52121548],[-71.444334515,41.52115148],[-71.444383515,41.52108848],[-71.444454515,41.52103248],[-71.444541516,41.52098348],[-71.444595515,41.52093348],[-71.444576515,41.52089548],[-71.444641516,41.52078948],[-71.444663516,41.52072548],[-71.444669515,41.520658479],[-71.444666515,41.520596479],[-71.444649515,41.52052948],[-71.444564516,41.520286479],[-71.444539515,41.520248479],[-71.444537515,41.520132479],[-71.444551515,41.51997048],[-71.444608515,41.519873479],[-71.444673515,41.519761479],[-71.444731515,41.519727479],[-71.444803515,41.519667479],[-71.444888515,41.519571479],[-71.444968516,41.519532479],[-71.445042515,41.519527479],[-71.445125516,41.519527479],[-71.445215515,41.519514479],[-71.445280516,41.51946148],[-71.445306516,41.519388479],[-71.445344516,41.519349479],[-71.445344285,41.519349059],[-71.445308215,41.519285442],[-71.445285044,41.519241188],[-71.445277516,41.51922748],[-71.44527512,41.519193946],[-71.445273287,41.519171122],[-71.445282003,41.519121405],[-71.445283516,41.51911248],[-71.445340339,41.519079581],[-71.445340516,41.519079479],[-71.445440516,41.519067479],[-71.445516516,41.51907148],[-71.445589516,41.519067479],[-71.445663332,41.519042541],[-71.445671509,41.518971999],[-71.445670469,41.518901148],[-71.445669318,41.518822017],[-71.44566183,41.518751918],[-71.445658111,41.518687331],[-71.445672093,41.518633045],[-71.445691918,41.518591999],[-71.445701515,41.518571479],[-71.445741515,41.518516479],[-71.445754757,41.51850618],[-71.445795496,41.51847434],[-71.445861612,41.518446013],[-71.44591341,41.518434947],[-71.445942516,41.518428479],[-71.445952031,41.518427624],[-71.446034048,41.518418238],[-71.446116004,41.518412874],[-71.446131516,41.518411479],[-71.446225515,41.518398479],[-71.446298516,41.518370479],[-71.446375516,41.518319479],[-71.446429516,41.518257479],[-71.446499516,41.518140479],[-71.44652585,41.518103396],[-71.446548348,41.518071565],[-71.446607466,41.518005086],[-71.446672178,41.517944122],[-71.446742516,41.5178873],[-71.446817565,41.517837387],[-71.446834277,41.517828205],[-71.446947651,41.517765471],[-71.446967922,41.517754165],[-71.447033808,41.517709187],[-71.447089471,41.517661483],[-71.447090865,41.517660185],[-71.447186516,41.517568479],[-71.447217517,41.517515474],[-71.447217812,41.517509578],[-71.447218252,41.517495383],[-71.447179445,41.517481307],[-71.447115166,41.517458479],[-71.447025975,41.517425848],[-71.446932072,41.51738704],[-71.446860748,41.517354349],[-71.446842516,41.517346479],[-71.446724781,41.517301073],[-71.446647624,41.517273405],[-71.446552842,41.517234762],[-71.446549516,41.517233479],[-71.446535538,41.51722653],[-71.446460678,41.5171895],[-71.44637688,41.517147815],[-71.446367916,41.517143802],[-71.446100516,41.517029479],[-71.445850443,41.516916877],[-71.445826259,41.516906463],[-71.44573884,41.516866925],[-71.445698347,41.516845185],[-71.445655516,41.516822479],[-71.445617993,41.516798464],[-71.445583181,41.516776493],[-71.445514175,41.516733281],[-71.445442371,41.516688034],[-71.445366767,41.516637981],[-71.445311282,41.516602169],[-71.445280516,41.516582479],[-71.445215656,41.516540569],[-71.44521551,41.516540484],[-71.445211112,41.516538133],[-71.445121979,41.516490649],[-71.445049917,41.516454459],[-71.444964239,41.516409319],[-71.444881756,41.516362673],[-71.444879515,41.516361479],[-71.444798516,41.516309479],[-71.444794322,41.516306308],[-71.44472356,41.516253597],[-71.444652525,41.516199315],[-71.444626649,41.516179517],[-71.44454917,41.516120928],[-71.444515138,41.51609558],[-71.444458097,41.516046702],[-71.444415376,41.515997712],[-71.444412515,41.515994478],[-71.444373515,41.515941479],[-71.444352038,41.515919125],[-71.444324619,41.515890848],[-71.444265633,41.515838538],[-71.444201052,41.515782796],[-71.444136442,41.515724286],[-71.44408844,41.515679697],[-71.444072515,41.515665478],[-71.444065186,41.515657687],[-71.444014586,41.515607933],[-71.443961054,41.51554792],[-71.443926766,41.515501918],[-71.443916515,41.515488478],[-71.443881515,41.515428478],[-71.443857515,41.515370478],[-71.443851722,41.515348962],[-71.443841219,41.51531205],[-71.443824627,41.515252488],[-71.443813976,41.515208764],[-71.443808515,41.515188479],[-71.443798515,41.515115478],[-71.443797515,41.515044478],[-71.443798159,41.515035723],[-71.443802166,41.514976895],[-71.44381412,41.514910807],[-71.443826008,41.514858107],[-71.443828515,41.514845478],[-71.443852515,41.514779479],[-71.443872404,41.514738417],[-71.44388336,41.514715097],[-71.443917641,41.514657847],[-71.443922703,41.514649609],[-71.44400285,41.514514894],[-71.44402411,41.514478462],[-71.444051671,41.514421539],[-71.444055515,41.514413478],[-71.444057166,41.514409398],[-71.44408045,41.514350212],[-71.444103655,41.514293048],[-71.444114552,41.514267573],[-71.444125515,41.514240478],[-71.444142826,41.514177968],[-71.444143508,41.514175478],[-71.444143533,41.514175357],[-71.444152515,41.514116479],[-71.444181243,41.514078707],[-71.444206317,41.514044982],[-71.444258184,41.513988267],[-71.444317443,41.513932905],[-71.444352459,41.513900958],[-71.444375515,41.513879478],[-71.444600314,41.513697451],[-71.444601379,41.513696521],[-71.444627382,41.513664863],[-71.444646515,41.513641478],[-71.444648087,41.513639298],[-71.44468387,41.513586099],[-71.444721033,41.513537176],[-71.444773479,41.513485515],[-71.444779515,41.513479478],[-71.444839516,41.513446478],[-71.444915516,41.513421478],[-71.444941169,41.513416091],[-71.445015684,41.513400006],[-71.445077916,41.513397262],[-71.445112516,41.513395478],[-71.445138024,41.513399049],[-71.445162645,41.513402272],[-71.445223255,41.513439281],[-71.445223475,41.513439454],[-71.445223515,41.513439478],[-71.445283065,41.51348601],[-71.44528323,41.513486255],[-71.445283516,41.513486478],[-71.445316515,41.513535478],[-71.445411515,41.513716478],[-71.445445212,41.513761408],[-71.445450674,41.513768649],[-71.445450733,41.513768712],[-71.445493894,41.513814225],[-71.445554735,41.513866511],[-71.445642863,41.513890086],[-71.445707236,41.513867338],[-71.445751559,41.513805196],[-71.445760515,41.513746479],[-71.445755898,41.513611651],[-71.445755107,41.513600903],[-71.445748606,41.513556144],[-71.445743515,41.513523478],[-71.445735142,41.513488506],[-71.445726143,41.513452532],[-71.445723959,41.513446448],[-71.445675126,41.513331277],[-71.445673486,41.513327935],[-71.445669955,41.513321642],[-71.445603545,41.513212804],[-71.445601534,41.513209755],[-71.445553771,41.513164976],[-71.445523314,41.513151326],[-71.445491515,41.513137478],[-71.445330491,41.513091047],[-71.445328157,41.513090427],[-71.445314507,41.51308565],[-71.445151516,41.513029478],[-71.445118995,41.51301554],[-71.445074506,41.512996677],[-71.445006446,41.512954861],[-71.444970763,41.512922897],[-71.444946515,41.512901478],[-71.444939683,41.512893699],[-71.444894872,41.512844666],[-71.444845052,41.51278669],[-71.444818503,41.512749176],[-71.444803515,41.512728478],[-71.444787515,41.512684478],[-71.444782988,41.512670142],[-71.444781411,41.5126657],[-71.444771182,41.512600516],[-71.444764994,41.512537197],[-71.444764515,41.512533478],[-71.44476418,41.512499295],[-71.444763805,41.512472738],[-71.444763202,41.512431069],[-71.444786348,41.512369743],[-71.444823251,41.512302775],[-71.444855731,41.512249709],[-71.444891654,41.512194908],[-71.444892515,41.512193478],[-71.444892754,41.51219323],[-71.444892808,41.512193147],[-71.44489486,41.512191043],[-71.444944515,41.512139478],[-71.444994787,41.512107689],[-71.445012436,41.512096327],[-71.44504138,41.512080808],[-71.445082515,41.512058478],[-71.445110711,41.512046453],[-71.445150081,41.512029224],[-71.445243285,41.51202012],[-71.445319393,41.512043118],[-71.445373256,41.512041971],[-71.445426515,41.512040478],[-71.445493515,41.512013478],[-71.445638516,41.511944478],[-71.445692516,41.511903478],[-71.445727515,41.511852478],[-71.445755516,41.511789478],[-71.445797515,41.511656478],[-71.445814137,41.511608874],[-71.445821871,41.511586117],[-71.445824711,41.51157859],[-71.445881128,41.511417013],[-71.445897179,41.511363262],[-71.445922121,41.511298415],[-71.445957377,41.51124469],[-71.445957395,41.511244663],[-71.445957515,41.511244478],[-71.446005516,41.511199477],[-71.446057966,41.511169383],[-71.446066178,41.511164602],[-71.446137767,41.511132069],[-71.446214924,41.511100179],[-71.446297676,41.511071012],[-71.44638137,41.511043242],[-71.446425831,41.511030965],[-71.446466515,41.511019477],[-71.446475925,41.511017703],[-71.446555412,41.511000807],[-71.446642016,41.510986234],[-71.446724143,41.510977192],[-71.446798961,41.510975878],[-71.446890422,41.510975165],[-71.446966242,41.510977281],[-71.447023193,41.510997945],[-71.447074516,41.511016478],[-71.447119607,41.511020456],[-71.447142463,41.511022371],[-71.447153476,41.51100591],[-71.447185516,41.510957478],[-71.447201813,41.510898438],[-71.44720693,41.510879463],[-71.447211053,41.510864967],[-71.447236556,41.510772579],[-71.447238513,41.510765311],[-71.447249609,41.510702012],[-71.447259262,41.510648217],[-71.447261515,41.510635477],[-71.447261583,41.510635236],[-71.447280515,41.510567478],[-71.447311449,41.510505612],[-71.447311463,41.510505583],[-71.447311516,41.510505478],[-71.447313172,41.510503398],[-71.447354082,41.510451085],[-71.447405116,41.510401344],[-71.447441058,41.510374186],[-71.447461516,41.510358477],[-71.447501504,41.510333294],[-71.447524908,41.510318426],[-71.44759267,41.510275507],[-71.447659489,41.510231879],[-71.447723627,41.510193144],[-71.447790705,41.510168292],[-71.447864814,41.510149722],[-71.447893516,41.510142477],[-71.447963516,41.510118478],[-71.448024167,41.510090751],[-71.448033475,41.510086413],[-71.448094843,41.510049117],[-71.448107869,41.510039766],[-71.448149516,41.510009477],[-71.448175404,41.509986894],[-71.448196255,41.509968363],[-71.448208568,41.509953231],[-71.448313516,41.509820477],[-71.448372208,41.509705083],[-71.448372537,41.509704386],[-71.448409552,41.509642951],[-71.448446239,41.509585539],[-71.448447517,41.509583477],[-71.448498142,41.509481306],[-71.448502211,41.50947204],[-71.44852515,41.509397517],[-71.448543892,41.509340591],[-71.448550516,41.509319478],[-71.448556151,41.509280035],[-71.448558328,41.50926388],[-71.448573191,41.509206117],[-71.448593562,41.509146207],[-71.448610655,41.509101252],[-71.448615516,41.509087478],[-71.448620501,41.509032644],[-71.448597562,41.508974661],[-71.448564296,41.508912395],[-71.448531031,41.508848069],[-71.448519166,41.508816059],[-71.448507516,41.508785477],[-71.448496952,41.508745861],[-71.448491333,41.508725446],[-71.448483161,41.508670646],[-71.448480267,41.50859913],[-71.448506033,41.508527376],[-71.448513516,41.508470477],[-71.448513515,41.508470387],[-71.448510636,41.508400267],[-71.448510395,41.508321068],[-71.448509298,41.508246077],[-71.448508259,41.508175226],[-71.448509133,41.508108537],[-71.448515604,41.508043887],[-71.448519754,41.508009252],[-71.448522516,41.507982477],[-71.448539516,41.507924477],[-71.448566516,41.507870477],[-71.448569839,41.507865512],[-71.448598262,41.507820256],[-71.448647118,41.507749724],[-71.448697809,41.507698345],[-71.448707516,41.507688477],[-71.448717101,41.507680835],[-71.448781203,41.507629122],[-71.44884625,41.507590386],[-71.448918688,41.507555061],[-71.448935416,41.507548189],[-71.449068753,41.507490687],[-71.44907847,41.507486362],[-71.449168609,41.507457129],[-71.449238597,41.507441265],[-71.449276459,41.507435466],[-71.449339517,41.507425477],[-71.449386981,41.507425477],[-71.449425932,41.507425156],[-71.449455546,41.507418965],[-71.449508516,41.507407477],[-71.449573123,41.507373682],[-71.449580661,41.507348919],[-71.449589516,41.507318477],[-71.449559632,41.50719219],[-71.449558311,41.507187206],[-71.449555936,41.507180395],[-71.449515517,41.507069477],[-71.449496872,41.507028044],[-71.44948826,41.507009293],[-71.449479097,41.506991469],[-71.449425457,41.506888923],[-71.449420728,41.506880002],[-71.449408128,41.506855793],[-71.449386516,41.506814477],[-71.449385583,41.506812074],[-71.449359737,41.506751309],[-71.449340244,41.50669535],[-71.449339516,41.506693476],[-71.449313607,41.506639665],[-71.44926127,41.506579325],[-71.449240967,41.506566831],[-71.449183723,41.50653184],[-71.449137766,41.506510309],[-71.449116516,41.506500476],[-71.449095534,41.506493105],[-71.44904248,41.506474694],[-71.449027859,41.506471075],[-71.448801526,41.506418533],[-71.448797704,41.506417662],[-71.448793727,41.506416723],[-71.448706516,41.506396477],[-71.448688176,41.506391237],[-71.448610361,41.506370581],[-71.44851759,41.506342867],[-71.448442561,41.50631663],[-71.448430516,41.506312477],[-71.448426782,41.50631097],[-71.448346628,41.506279692],[-71.448261105,41.506244251],[-71.44817193,41.506210318],[-71.448093828,41.506176892],[-71.448024003,41.506142739],[-71.447958832,41.506109251],[-71.447914334,41.506085972],[-71.447897516,41.506077477],[-71.447860127,41.506053916],[-71.447824695,41.506031866],[-71.447794573,41.505997616],[-71.447791251,41.505993849],[-71.447776516,41.505977477],[-71.447767753,41.505947293],[-71.447758313,41.505915726],[-71.447766488,41.505842728],[-71.447766515,41.505842477],[-71.4477672,41.505838807],[-71.44778101,41.50576205],[-71.447791337,41.505708447],[-71.447792254,41.50569161],[-71.447797516,41.505571477],[-71.447799751,41.505557319],[-71.447806035,41.505514563],[-71.447806833,41.505504005],[-71.447810516,41.505382477],[-71.447811234,41.505375548],[-71.447816938,41.505310956],[-71.447824321,41.505246992],[-71.447824471,41.505238591],[-71.44782366,41.50507459],[-71.447823235,41.505045622],[-71.447827082,41.504991376],[-71.447840087,41.504935008],[-71.447856137,41.504881762],[-71.447857516,41.504876476],[-71.447904515,41.504758477],[-71.447921515,41.504698477],[-71.447929516,41.504635476],[-71.447929516,41.504476982],[-71.447929186,41.504455031],[-71.44793138,41.504428912],[-71.447933516,41.504398476],[-71.447936221,41.504389543],[-71.447947894,41.504343045],[-71.447965496,41.504283179],[-71.447985461,41.504226958],[-71.447986516,41.504223476],[-71.448003271,41.504188811],[-71.448013169,41.504168142],[-71.448015485,41.504163295],[-71.448046075,41.504106088],[-71.448075658,41.504057742],[-71.448077515,41.504054477],[-71.448083912,41.504045965],[-71.448115704,41.504002724],[-71.4481556,41.503950301],[-71.448198207,41.503892986],[-71.448205244,41.503882378],[-71.448259377,41.503793087],[-71.448263153,41.503786189],[-71.448295656,41.503733123],[-71.44830306,41.503723748],[-71.448333515,41.503684476],[-71.448353259,41.503634358],[-71.448359516,41.503618152],[-71.448359516,41.503613871],[-71.448359084,41.503583284],[-71.448372118,41.503528311],[-71.448373753,41.503513626],[-71.448380091,41.503437569],[-71.448381232,41.503392079],[-71.448389456,41.503324083],[-71.4483884,41.503317039],[-71.448380268,41.503264304],[-71.448372417,41.503249995],[-71.448347516,41.503205476],[-71.448281516,41.503142476],[-71.448247701,41.503114628],[-71.448213209,41.503086506],[-71.448181786,41.503032779],[-71.448174516,41.503020476],[-71.448174487,41.503020299],[-71.448174382,41.50302012],[-71.448160298,41.502941761],[-71.448152942,41.502889308],[-71.448149516,41.502868476],[-71.448149039,41.502802626],[-71.448149003,41.502800145],[-71.448148997,41.502796869],[-71.448148516,41.502730476],[-71.448158484,41.502702304],[-71.448171045,41.502665199],[-71.44821162,41.502598186],[-71.448214591,41.502593503],[-71.4289327,41.503151788],[-71.422653705,41.503247154],[-71.421425751,41.50326538],[-71.419776507,41.504066477],[-71.419774061,41.504066608],[-71.419753983,41.504093237],[-71.419715396,41.504151642],[-71.419711129,41.504158066],[-71.419676915,41.504222238],[-71.4196455,41.504286458],[-71.419610346,41.504348479],[-71.419574183,41.504414823],[-71.419544683,41.504480462],[-71.419515084,41.504551864],[-71.419485614,41.504617503],[-71.419453188,41.504687439],[-71.419414198,41.504750876],[-71.419373226,41.504817856],[-71.419338981,41.50488276],[-71.419308505,41.504949839],[-71.419273282,41.505017624],[-71.41923325,41.5050868],[-71.419190359,41.505155906],[-71.419149352,41.505226477],[-71.419113121,41.505297097],[-71.419073058,41.505366959],[-71.419033024,41.505437553],[-71.418991074,41.505508123],[-71.418955786,41.505578744],[-71.4189243,41.505650099],[-71.418893755,41.505722918],[-71.418856583,41.505791387],[-71.418818435,41.505862005],[-71.418784156,41.505928327],[-71.418749877,41.505995403],[-71.418714687,41.506059551],[-71.418680375,41.506128045],[-71.418643335,41.506187893],[-71.418606261,41.506251331],[-71.418567171,41.506320507],[-71.418543589,41.506371902],[-71.418516071,41.50643258],[-71.418490603,41.506483219],[-71.418460126,41.506549566],[-71.418426822,41.50661447],[-71.418391498,41.506688658],[-71.418362872,41.506759351],[-71.41833226,41.506836447],[-71.418296906,41.506909949],[-71.418277125,41.506962078],[-71.418257043,41.507036391],[-71.41823501,41.507114293],[-71.418213955,41.507187874],[-71.418194782,41.507265069],[-71.418179962,41.507315624],[-71.418172751,41.507340136],[-71.418157379,41.507418774],[-71.41814396,41.507493161],[-71.41813145,41.507569698],[-71.418124793,41.507637662],[-71.418118103,41.507707091],[-71.41808961,41.50776843],[-71.418039176,41.507832522],[-71.417986018,41.507885794],[-71.417929158,41.507931928],[-71.417871388,41.507975133],[-71.417855578,41.508014413],[-71.417913018,41.508063578],[-71.417920727,41.508126613],[-71.417887523,41.50818365],[-71.417843011,41.508232743],[-71.417791771,41.508284621],[-71.417739785,41.508324309],[-71.417682115,41.508360402],[-71.417616842,41.508394249],[-71.417534441,41.508426528],[-71.417463744,41.50844244],[-71.417381508,41.508464748],[-71.417323806,41.508501482],[-71.417371891,41.508539137],[-71.417442963,41.508563316],[-71.417525602,41.508582586],[-71.417613055,41.508597583],[-71.417699366,41.508624768],[-71.417749302,41.508665993],[-71.417792377,41.508719356],[-71.41782206,41.508776873],[-71.417841178,41.508840076],[-71.417849964,41.508893826],[-71.417831092,41.508948106],[-71.417791255,41.509005093],[-71.417803304,41.509028108],[-71.417839785,41.509075681],[-71.417821855,41.509131402],[-71.417794334,41.509192743],[-71.417765738,41.509261995],[-71.417729472,41.509333323],[-71.417704913,41.509386135],[-71.417677526,41.509437482],[-71.417651081,41.50948956],[-71.417624572,41.509544498],[-71.417587296,41.509620834],[-71.417562735,41.509674378],[-71.417526435,41.509748542],[-71.417499959,41.509801329],[-71.417471629,41.509851966],[-71.417425839,41.509923928],[-71.41739465,41.50997383],[-71.417347983,41.510041492],[-71.417302225,41.510111327],[-71.417251791,41.510173931],[-71.417198497,41.510236556],[-71.417150988,41.510295641],[-71.417107316,41.510352578],[-71.417064519,41.510414548],[-71.41702081,41.510475785],[-71.416977006,41.510540612],[-71.416933365,41.510596109],[-71.416890635,41.51065307],[-71.416847971,41.510706463],[-71.416806352,41.510751236],[-71.416757898,41.510811051],[-71.416703796,41.510862172],[-71.41666029,41.510907652],[-71.416657294,41.510918375],[-71.416616548,41.510970352],[-71.416560527,41.511023576],[-71.416510192,41.511079044],[-71.416479976,41.511128239],[-71.416452589,41.511178876],[-71.41641561,41.511234445],[-71.416369143,41.511287104],[-71.41632076,41.511338275],[-71.416268572,41.511391569],[-71.416214531,41.511441981],[-71.416166146,41.511494592],[-71.416117727,41.511550085],[-71.416064596,41.511602647],[-71.416011398,41.511659509],[-71.415962979,41.511715002],[-71.415911669,41.511771178],[-71.415854634,41.511830164],[-71.415797701,41.511881282],[-71.41574262,41.511935261],[-71.415679998,41.51198562],[-71.415607923,41.512028746],[-71.415542443,41.512076953],[-71.41546744,41.512125039],[-71.415396305,41.512170315],[-71.415330824,41.512219209],[-71.415253936,41.512266607],[-71.415184688,41.512310443],[-71.415115433,41.512360752],[-71.415039453,41.512410964],[-71.414978783,41.512456316],[-71.414909533,41.512502347],[-71.414840317,41.512545498],[-71.414781634,41.512583693],[-71.414720121,41.512622617],[-71.414659552,41.512660788],[-71.414588451,41.51270245],[-71.414514555,41.512740542],[-71.414462433,41.512788119],[-71.414435954,41.512840197],[-71.414440933,41.512894654],[-71.414470547,41.512957225],[-71.414501105,41.513019042],[-71.41452207,41.513087965],[-71.414546975,41.513145455],[-71.4146026,41.513188195],[-71.414671683,41.513155039],[-71.414710447,41.513108093],[-71.414770953,41.513072049],[-71.414807998,41.513013598],[-71.414810789,41.512950616],[-71.414823034,41.512894137],[-71.414847697,41.512834144],[-71.414890262,41.512789396],[-71.41494989,41.512749738],[-71.415010428,41.512711545],[-71.415078603,41.512673448],[-71.415148694,41.512636725],[-71.415215927,41.512597873],[-71.415286019,41.512559023],[-71.415353282,41.512520879],[-71.415415772,41.512479119],[-71.415477414,41.512433768],[-71.415534282,41.512386972],[-71.415587379,41.512338001],[-71.415643336,41.512289009],[-71.415707841,41.512241555],[-71.415771436,41.512191882],[-71.415834999,41.512143696],[-71.415905258,41.512093388],[-71.415970773,41.512040927],[-71.416040967,41.5119935],[-71.416114959,41.511950421],[-71.41618882,41.511914478],[-71.416270114,41.511894343],[-71.416346332,41.511894947],[-71.416422415,41.511904859],[-71.416468752,41.511931033],[-71.416457382,41.511993963],[-71.41643945,41.512049661],[-71.416416573,41.512118209],[-71.416397464,41.512189686],[-71.416380205,41.512266196],[-71.416367696,41.512340583],[-71.416351378,41.512418512],[-71.416335129,41.512490037],[-71.416325511,41.512563717],[-71.416315989,41.512633075],[-71.416301561,41.512708901],[-71.41628531,41.512781798],[-71.416271887,41.512856207],[-71.416269941,41.512926348],[-71.416266108,41.51299651],[-71.416250027,41.513055846],[-71.416213924,41.513115716],[-71.416186467,41.51317207],[-71.416164599,41.513236342],[-71.416136102,41.513297018],[-71.416103831,41.513357622],[-71.41607917,41.51341686],[-71.416056525,41.513469696],[-71.416025234,41.513526048],[-71.415960729,41.513572083],[-71.415881784,41.513562123],[-71.415808827,41.51353291],[-71.415735937,41.513499375],[-71.415664059,41.513459415],[-71.415594164,41.513415202],[-71.415561619,41.513359055],[-71.41553187,41.513305815],[-71.415472373,41.513268104],[-71.415402242,41.513242484],[-71.41532838,41.51320753],[-71.415278473,41.513166328],[-71.415230117,41.513148751],[-71.415163019,41.513176877],[-71.415103259,41.513225066],[-71.415096664,41.513288799],[-71.415069575,41.513318625],[-71.414999786,41.513333827],[-71.414938274,41.513371289],[-71.414972127,41.513404498],[-71.415050938,41.513423767],[-71.415129782,41.513441549],[-71.415204015,41.513448602],[-71.415288647,41.513460717],[-71.415363656,41.513479937],[-71.415432847,41.513503407],[-71.415503886,41.513533327],[-71.415568225,41.513567496],[-71.415639231,41.513599612],[-71.415700714,41.513630852],[-71.41575819,41.5136786],[-71.415792752,41.513728299],[-71.415821494,41.513783665],[-71.415845488,41.513841155],[-71.415860936,41.513895002],[-71.415859189,41.513951581],[-71.41584701,41.514005179],[-71.415833824,41.514060926],[-71.41583585,41.514117508],[-71.415866439,41.514180766],[-71.415885659,41.51423537],[-71.41590666,41.514301411],[-71.415909657,41.514360166],[-71.415898353,41.514418819],[-71.415879511,41.514471681],[-71.415837789,41.514522902],[-71.415760692,41.51451802],[-71.41571395,41.514521919],[-71.415701838,41.514570532],[-71.41572294,41.514628682],[-71.415759355,41.514681264],[-71.415799537,41.514738148],[-71.415831039,41.514801429],[-71.415841573,41.514866685],[-71.415824415,41.514934596],[-71.415801737,41.51498885],[-71.415782863,41.51504242],[-71.415763985,41.515099558],[-71.415745078,41.515155278],[-71.415727142,41.515213149],[-71.415710118,41.51527102],[-71.415694103,41.515325347],[-71.415681858,41.515382513],[-71.415681085,41.515439093],[-71.415684084,41.515495721],[-71.415693745,41.515554504],[-71.415691055,41.515611059],[-71.415696881,41.515670548],[-71.415697084,41.515724978],[-71.415695136,41.515795851],[-71.415681778,41.515865937],[-71.415638639,41.515883516],[-71.415562348,41.515888628],[-71.415522103,41.51590335],[-71.415559527,41.515952365],[-71.415580595,41.516013397],[-71.415593991,41.516077968],[-71.415586424,41.516140947],[-71.415555197,41.516193685],[-71.415519157,41.516249987],[-71.415489782,41.516305585],[-71.415471848,41.516362037],[-71.415450078,41.51641915],[-71.415415957,41.516474036],[-71.415403676,41.516534815],[-71.41537797,41.516599792],[-71.415349369,41.516668313],[-71.415322752,41.51673258],[-71.415291389,41.516795312],[-71.415260062,41.516854522],[-71.415229645,41.51691586],[-71.415204037,41.516975143],[-71.415166147,41.517027121],[-71.415115029,41.517071817],[-71.415047761,41.517110669],[-71.414982473,41.517147395],[-71.414918066,41.517185586],[-71.414845308,41.517210735],[-71.414806743,41.517173222],[-71.414762355,41.517144213],[-71.414734019,41.51719629],[-71.414722748,41.517252038],[-71.41472568,41.517312943],[-71.414753443,41.517373317],[-71.414745941,41.517432728],[-71.414740147,41.517488526],[-71.414740469,41.517544741],[-71.414742697,41.517609281],[-71.414744977,41.517680065],[-71.414754648,41.517753622],[-71.414767085,41.517829879],[-71.41477122,41.51790206],[-71.414771649,41.517969389],[-71.414786833,41.518039405],[-71.414787182,41.518097701],[-71.414788418,41.51815323],[-71.414787857,41.518209444],[-71.414766882,41.518262967],[-71.414750721,41.518335155],[-71.414750179,41.518399739],[-71.41476079,41.518476727],[-71.414784304,41.518552307],[-71.414796749,41.518622321],[-71.414790591,41.518677204],[-71.414759789,41.518775133],[-71.414776856,41.518847963],[-71.414796536,41.518900624],[-71.414815332,41.518953994],[-71.414835142,41.519023327],[-71.414863161,41.519075285],[-71.414942779,41.519111135],[-71.415006774,41.519156717],[-71.415022799,41.519212165],[-71.414998253,41.519273347],[-71.415039227,41.519331467],[-71.415041482,41.51939882],[-71.415061133,41.519450795],[-71.415134377,41.519497733],[-71.415194583,41.519532928],[-71.415248418,41.51957578],[-71.415282887,41.519628383],[-71.415291259,41.519649018],[-71.415305394,41.519683814],[-71.415306631,41.519738657],[-71.415306686,41.519743505],[-71.415321818,41.5198073],[-71.415341578,41.519868995],[-71.415341903,41.519923128],[-71.415342305,41.519988376],[-71.415342806,41.52007096],[-71.415336703,41.520130669],[-71.415309408,41.520199441],[-71.415296821,41.520261272],[-71.415309164,41.520316764],[-71.415346407,41.520366602],[-71.415369008,41.520442844],[-71.415371282,41.520519208],[-71.415374431,41.520578146],[-71.415363702,41.520638583],[-71.4153687,41.520703103],[-71.415429952,41.520752844],[-71.415493896,41.520792891],[-71.415530253,41.520845495],[-71.415541652,41.520901695],[-71.415542079,41.520971105],[-71.41553694,41.521038453],[-71.415510559,41.521106518],[-71.415488854,41.521182956],[-71.415469916,41.521260745],[-71.415467621,41.521340582],[-71.415479023,41.521394632],[-71.415485829,41.521450119],[-71.415480643,41.521506353],[-71.415470803,41.52156121],[-71.415468459,41.521632014],[-71.415486541,41.521721517],[-71.415491491,41.521775608],[-71.415492779,41.521838753],[-71.415498666,41.521897738],[-71.415490733,41.521960899],[-71.415479976,41.522019209],[-71.415439505,41.52204086],[-71.415460122,41.522099125],[-71.415480777,41.522151787],[-71.415474672,41.522212891],[-71.415474996,41.522267733],[-71.415475319,41.522323924],[-71.415485016,41.522402329],[-71.415488602,41.522429296],[-71.415494689,41.522475177],[-71.415499665,41.522533407],[-71.415506493,41.522595138],[-71.415518889,41.522657582],[-71.415532146,41.522712342],[-71.415536151,41.52276856],[-71.415503266,41.522829735],[-71.415506414,41.522889451],[-71.415516086,41.522963648],[-71.415510085,41.523038611],[-71.415507666,41.523096927],[-71.415517338,41.523171124],[-71.4154937,41.52323576],[-71.415464525,41.523299019],[-71.41543073,41.523358113],[-71.415419977,41.523412993],[-71.415477595,41.523474555],[-71.415534299,41.523537512],[-71.415583529,41.523590789],[-71.415593127,41.523652522],[-71.415655348,41.52370853],[-71.415724985,41.523772114],[-71.415772371,41.523816402],[-71.415816956,41.523861374],[-71.415854171,41.523911212],[-71.415884022,41.523960358],[-71.415923249,41.524031032],[-71.415957771,41.524092005],[-71.416008889,41.524145238],[-71.416023087,41.524202789],[-71.415992974,41.524261886],[-71.41599418,41.524317414],[-71.415984123,41.524328545],[-71.415914022,41.524341278],[-71.415900275,41.524358008],[-71.415925222,41.524364133],[-71.415987235,41.524393063],[-71.416030991,41.524444964],[-71.416060936,41.524515654],[-71.416084487,41.524589152],[-71.416080185,41.524644677],[-71.416052617,41.524665605],[-71.415995293,41.524657467],[-71.415940576,41.524657107],[-71.415938229,41.524659804],[-71.415939198,41.524663418],[-71.416004817,41.524705341],[-71.416043917,41.524756529],[-71.416056264,41.524810626],[-71.416050105,41.524866858],[-71.416061535,41.524923744],[-71.416066485,41.524978544],[-71.416102818,41.525028381],[-71.416151165,41.525083738],[-71.41619313,41.525155763],[-71.416213784,41.525210552],[-71.416228925,41.525268767],[-71.41624772,41.525325635],[-71.416260093,41.525382475],[-71.416267807,41.525442149],[-71.416281091,41.525501094],[-71.416291626,41.525567721],[-71.416304097,41.525643979],[-71.416321165,41.525718181],[-71.416340037,41.525786804],[-71.41635711,41.525857553],[-71.416376922,41.525928281],[-71.416401359,41.525999676],[-71.416422086,41.52606901],[-71.416431708,41.526135591],[-71.416435769,41.526195993],[-71.416438941,41.52626186],[-71.416452302,41.526331921],[-71.416481365,41.526403982],[-71.416515001,41.526469117],[-71.416545838,41.526533586],[-71.416572993,41.526598008],[-71.416593669,41.526659703],[-71.416583934,41.526728442],[-71.4165232,41.526766843],[-71.416496621,41.526798818],[-71.416499763,41.526864045],[-71.416527022,41.526942372],[-71.41654953,41.526999928],[-71.416575722,41.527056024],[-71.41661772,41.527127386],[-71.416655119,41.527201511],[-71.416676686,41.527256964],[-71.416702061,41.527333207],[-71.416722844,41.527406703],[-71.416737144,41.527480903],[-71.416734697,41.527537825],[-71.416663877,41.527585937],[-71.416661432,41.527641486],[-71.416665522,41.527703924],[-71.41665665,41.527763631],[-71.416629251,41.527817172],[-71.416608945,41.527822784],[-71.416602622,41.527840869],[-71.416594738,41.527913063],[-71.416582179,41.527976267],[-71.416561233,41.528029104],[-71.416525531,41.52807914],[-71.416500877,41.528128521],[-71.416477216,41.528186181],[-71.41644438,41.528255705],[-71.416409766,41.528334238],[-71.416387019,41.528391922],[-71.416366125,41.528451688],[-71.41634526,41.528512827],[-71.416320685,41.528571219],[-71.41629702,41.528631647],[-71.416270616,41.528692804],[-71.41624327,41.528752612],[-71.4162131,41.528806837],[-71.416158079,41.528874332],[-71.416114015,41.52891821],[-71.416067183,41.528960005],[-71.41601661,41.529000448],[-71.415963293,41.529044319],[-71.415907211,41.529084757],[-71.415851102,41.529122406],[-71.415795931,41.529163577],[-71.415743531,41.529204704],[-71.415690191,41.529242332],[-71.415639648,41.529282752],[-71.415591897,41.529328731],[-71.41554783,41.529374004],[-71.415505617,41.52942065],[-71.415466202,41.529469357],[-71.415430469,41.52951802],[-71.41537359,41.529585559],[-71.415301931,41.529644762],[-71.415226423,41.529713659],[-71.415184496,41.529774942],[-71.415168276,41.529843014],[-71.415179727,41.529907538],[-71.415208688,41.529963636],[-71.415265399,41.53002593],[-71.415323052,41.530088201],[-71.415579233,41.530314206],[-71.41564045,41.530352215],[-71.415713758,41.530406768],[-71.415786121,41.530462051],[-71.41598437,41.530560628],[-71.416063978,41.530592315],[-71.416152887,41.530632929],[-71.416239964,41.530678457],[-71.416334385,41.530716993],[-71.416405636,41.530738977],[-71.416475031,41.53076096],[-71.416542652,41.530789162],[-71.416610266,41.530822966],[-71.416675109,41.530858119],[-71.416738128,41.530891211],[-71.416804801,41.53092362],[-71.416873361,41.530955985],[-71.41694466,41.530987666],[-71.417017789,41.531017266],[-71.41708815,41.531045493],[-71.417155744,41.531071636],[-71.417217795,41.531100588],[-71.417303018,41.531145383],[-71.417380875,41.531190927],[-71.417449532,41.531242753],[-71.417510797,41.53129183],[-71.417571119,41.531340884],[-71.417627731,41.531387167],[-71.417684315,41.531431415],[-71.417715111,41.531483352],[-71.417704231,41.531518792],[-71.417764484,41.53155051],[-71.417836751,41.531588434],[-71.417885942,41.531630618],[-71.41794441,41.531678298],[-71.418025036,41.53172453],[-71.418105666,41.531768657],[-71.418178924,41.531816988],[-71.41824847,41.531865338],[-71.418309729,41.531919949],[-71.418368302,41.531980825],[-71.41842776,41.532040328],[-71.418476142,41.53209772],[-71.41852084,41.532155864],[-71.418558113,41.53221334],[-71.418571252,41.532245252],[-71.418552828,41.532252924],[-71.418542838,41.532282807],[-71.418582883,41.532338181],[-71.418621988,41.532390809],[-71.418659266,41.532444831],[-71.418690113,41.532505092],[-71.418710815,41.532573716],[-71.418732512,41.53264998],[-71.418752331,41.532718626],[-71.418763812,41.532786603],[-71.418759542,41.532842128],[-71.418732169,41.53289981],[-71.418659439,41.532938225],[-71.418607138,41.532996026],[-71.418574278,41.53305997],[-71.418560829,41.533129439],[-71.418548374,41.53320721],[-71.418528372,41.533260025],[-71.41850006,41.533313521],[-71.418465297,41.533365708],[-71.418407507,41.53343183],[-71.418387576,41.533500608],[-71.418388055,41.533579052],[-71.418367212,41.533647143],[-71.418317656,41.533700029],[-71.418262587,41.53375506],[-71.418229673,41.533813447],[-71.418200569,41.533890566],[-71.418171368,41.533948955],[-71.418142168,41.534005971],[-71.418115713,41.534058805],[-71.418070854,41.53412697],[-71.418017661,41.534190991],[-71.417992142,41.534249382],[-71.418004564,41.534319441],[-71.418016,41.534373514],[-71.418022779,41.534428338],[-71.418024049,41.534483158],[-71.41800323,41.534556075],[-71.417966705,41.534628386],[-71.417965304,41.534701957],[-71.417992568,41.534779597],[-71.417996629,41.534842057],[-71.417997033,41.534907968],[-71.418001121,41.53497251],[-71.418007978,41.53503838],[-71.418015804,41.535107773],[-71.418025453,41.535179225],[-71.418037876,41.535247889],[-71.4180503,41.535315844],[-71.418061783,41.535381763],[-71.418074154,41.535443475],[-71.418091254,41.535521153],[-71.418097173,41.535582197],[-71.418074472,41.535650264],[-71.418086894,41.535719637],[-71.418101953,41.535773735],[-71.418121777,41.535839568],[-71.418125566,41.535851372],[-71.418179432,41.535906732],[-71.418221286,41.535953051],[-71.41827053,41.536004954],[-71.418317979,41.536056148],[-71.418371851,41.536106637],[-71.418432074,41.536141122],[-71.418509839,41.536168621],[-71.418580134,41.536181569],[-71.418654034,41.536183405],[-71.418726079,41.536184554],[-71.418745517,41.536194173],[-71.418732937,41.536249738],[-71.418746193,41.536310078],[-71.4187881,41.536363371],[-71.418863195,41.536408935],[-71.418928912,41.5364316],[-71.419002936,41.536456351],[-71.419072394,41.536481809],[-71.419136307,41.53651211],[-71.419197446,41.536545223],[-71.419260469,41.536581081],[-71.419319836,41.536619041],[-71.419376397,41.536662579],[-71.419432106,41.536705408],[-71.419491439,41.536746844],[-71.419560058,41.536786891],[-71.419632333,41.536823396],[-71.419705495,41.536857157],[-71.419783313,41.536891608],[-71.419862015,41.536925327],[-71.41994072,41.536956302],[-71.419948265,41.536959349],[-71.420017538,41.536987275],[-71.420092558,41.537020329],[-71.420167576,41.537054754],[-71.420245367,41.537087123],[-71.420327786,41.537118055],[-71.420412027,41.537152509],[-71.420496325,41.537190371],[-71.420574114,41.537224089],[-71.420650965,41.537253667],[-71.420723216,41.537286078],[-71.420793602,41.537325394],[-71.420867735,41.537362586],[-71.420945499,41.537392873],[-71.421026036,41.537420349],[-71.421105657,41.537449952],[-71.421186244,41.537486416],[-71.421265888,41.537522262],[-71.421346448,41.537556004],[-71.421422411,41.537590429],[-71.421496514,41.537627666],[-71.421569704,41.537664857],[-71.421633645,41.53769797],[-71.421692044,41.537733847],[-71.421756037,41.537774599],[-71.421831138,41.537818057],[-71.421910806,41.5378601],[-71.421989591,41.537902165],[-71.422063723,41.537940751],[-71.422137799,41.537975906],[-71.422208247,41.538015908],[-71.422280548,41.538059386],[-71.422354706,41.53810218],[-71.42242607,41.538140101],[-71.422493719,41.538178728],[-71.422560458,41.538215273],[-71.422627195,41.538253213],[-71.422691188,41.53829536],[-71.422752436,41.538342307],[-71.422816452,41.538390696],[-71.422881385,41.538436251],[-71.422943551,41.538479082],[-71.423003804,41.538518413],[-71.423060402,41.538559182],[-71.423114231,41.538599972],[-71.423187501,41.53864759],[-71.423206081,41.538663474],[-71.423270936,41.538697959],[-71.423331194,41.53873315],[-71.423404441,41.538775257],[-71.423478594,41.538824225],[-71.423549144,41.538882292],[-71.423618754,41.538937569],[-71.423687506,41.538997717],[-71.423752541,41.539060629],[-71.423815721,41.539122191],[-71.423874281,41.539178215],[-71.423926277,41.539225224],[-71.423975505,41.539270859],[-71.424019061,41.539298446],[-71.424061003,41.539353841],[-71.42410194,41.53940855],[-71.424139254,41.539464606],[-71.424172826,41.539519332],[-71.42420831,41.539578177],[-71.424243763,41.539638416],[-71.424270046,41.539704962],[-71.424287988,41.539771548],[-71.424285601,41.53983469],[-71.424282277,41.539892297],[-71.424248474,41.539957659],[-71.424184076,41.539999514],[-71.424109486,41.54003656],[-71.424030297,41.540075707],[-71.423963022,41.540104387],[-71.423892069,41.540129611],[-71.423823853,41.540155523],[-71.423805818,41.540168524],[-71.423767736,41.540195965],[-71.423765324,41.540254282],[-71.423789468,41.540275681],[-71.423838699,41.540318572],[-71.423891641,41.540364163],[-71.423980826,41.540445753],[-71.424029111,41.540490701],[-71.42408025,41.540542604],[-71.424136011,41.540598626],[-71.424197363,41.54066364],[-71.424241054,41.540707235],[-71.424302352,41.540766692],[-71.424359081,41.540828272],[-71.424414867,41.540889165],[-71.424461409,41.540942413],[-71.424602928,41.541123041],[-71.424637444,41.541177745],[-71.424681155,41.54123106],[-71.42472767,41.541281541],[-71.424733019,41.541288474],[-71.424773831,41.541348374],[-71.424822047,41.541402424],[-71.424873209,41.54146153],[-71.424918476,41.541511965],[-71.424967665,41.541566702],[-71.425023614,41.541619979],[-71.425076668,41.541675404],[-71.425125858,41.541729432],[-71.425175049,41.541782728],[-71.425217565,41.541844069],[-71.42525719,41.541904014],[-71.425290083,41.541968345],[-71.425319111,41.542032011],[-71.425352979,41.542095611],[-71.425388823,41.542161385],[-71.425420714,41.542223589],[-71.425455584,41.542290071],[-71.425496183,41.542350725],[-71.425538813,41.542418607],[-71.425582362,41.542482122],[-71.425624992,41.542550713],[-71.425670488,41.542614961],[-71.425716955,41.542682091],[-71.425766345,41.5427492],[-71.425812872,41.542817039],[-71.425854557,41.542887116],[-71.425890458,41.542957258],[-71.425925414,41.54302884],[-71.425961257,41.543096055],[-71.425992347,41.54316768],[-71.426018513,41.543232785],[-71.426040898,41.543303764],[-71.426060335,41.543370396],[-71.426079854,41.543445033],[-71.426101237,41.543513107],[-71.426118839,41.543587766],[-71.426132461,41.543655172],[-71.426146225,41.543730582],[-71.426159847,41.543798011],[-71.426172668,41.543874153],[-71.426174719,41.54394457],[-71.426161451,41.544020924],[-71.426129624,41.544088026],[-71.42609794,41.544163133],[-71.426077827,41.544235915],[-71.426065132,41.544289788],[-71.426050831,41.5443647],[-71.426029828,41.544442604],[-71.426001925,41.544512591],[-71.425969211,41.544583283],[-71.425939275,41.544646727],[-71.425912232,41.544709442],[-71.425886135,41.54477067],[-71.425857031,41.544825402],[-71.425819106,41.544873701],[-71.425762882,41.544925008],[-71.425701762,41.544972057],[-71.425655104,41.545016783],[-71.425604522,41.545059311],[-71.425557806,41.545101133],[-71.425522946,41.545158079],[-71.425487197,41.545220124],[-71.425452163,41.545268357],[-71.425414325,41.54532027],[-71.425363998,41.545378806],[-71.425328334,41.545445952],[-71.42530112,41.545497757],[-71.425271985,41.545552511],[-71.425249838,41.545618774],[-71.425229552,41.545681378],[-71.425209352,41.545749128],[-71.425196827,41.545813155],[-71.425185304,41.54587931],[-71.425173811,41.545946951],[-71.425161343,41.546014638],[-71.425144092,41.546085226],[-71.425123862,41.546152198],[-71.425097876,41.546220722],[-71.425059203,41.546282765],[-71.425015834,41.546352147],[-71.424973296,41.546412793],[-71.424932761,41.546479249],[-71.424885354,41.546539251],[-71.424832163,41.546598518],[-71.424780917,41.546660004],[-71.424734427,41.546716302],[-71.424689744,41.546763201],[-71.424637185,41.546801428],[-71.424593389,41.546844623],[-71.424552569,41.546893652],[-71.424496258,41.546939172],[-71.424428375,41.546987725],[-71.42438077,41.547033159],[-71.424329381,41.547086641],[-71.424315303,41.547098181],[-71.424268316,41.547136571],[-71.424211113,41.547188654],[-71.424156862,41.547242865],[-71.424100691,41.547297853],[-71.424038851,41.547358645],[-71.423985541,41.547414298],[-71.42393324,41.547466361],[-71.42388068,41.547505296],[-71.42383986,41.547553593],[-71.423793453,41.547615013],[-71.423754637,41.547667634],[-71.423710009,41.547718169],[-71.42366535,41.547769414],[-71.423623586,41.547817687],[-71.423580848,41.547865982],[-71.423538194,41.547920087],[-71.423499463,41.54797783],[-71.42346941,41.548034001],[-71.423445197,41.548094499],[-71.423428691,41.548150564],[-71.423419889,41.548205835],[-71.423417932,41.5482647],[-71.423426768,41.548335808],[-71.42344609,41.548395877],[-71.423470109,41.54844799],[-71.423499941,41.548502143],[-71.423528827,41.548557804],[-71.423553821,41.548609164],[-71.423584628,41.548662631],[-71.423620217,41.548713883],[-71.423662513,41.548757798],[-71.423711449,41.548798036],[-71.423790318,41.548832941],[-71.423866927,41.548848223],[-71.423950959,41.548842379],[-71.424024685,41.548797443],[-71.424069287,41.548743293],[-71.424125545,41.548693406],[-71.42418667,41.548645648],[-71.424237085,41.548593676],[-71.424281742,41.548544649],[-71.424328233,41.548489038],[-71.424375585,41.548426131],[-71.424422021,41.548365443],[-71.424470318,41.548301851],[-71.424517727,41.548241849],[-71.424561123,41.548177567],[-71.424608475,41.548113952],[-71.424660667,41.548051071],[-71.424718643,41.547988812],[-71.424771921,41.547933868],[-71.424828035,41.547875266],[-71.424886183,41.547821766],[-71.424943383,41.547771147],[-71.425000641,41.547724118],[-71.425065859,41.547690131],[-71.425137948,41.547664083],[-71.425203194,41.547632268],[-71.425269242,41.547591054],[-71.425327473,41.547544048],[-71.425376053,41.547497128],[-71.42541375,41.547436502],[-71.425441797,41.547375984],[-71.42545922,41.54731411],[-71.425476527,41.547247844],[-71.425496813,41.547185217],[-71.425520908,41.547119642],[-71.425528664,41.547098973],[-71.425544116,41.547057726],[-71.425550769,41.546990127],[-71.425551695,41.546925498],[-71.425543858,41.546858027],[-71.425533212,41.546796363],[-71.425518732,41.546734765],[-71.425489844,41.546679836],[-71.425455168,41.546627876],[-71.425419435,41.546569329],[-71.425406986,41.546514251],[-71.425415728,41.546456785],[-71.425425504,41.546400806],[-71.425436053,41.546333896],[-71.425453559,41.546279271],[-71.425473845,41.546216644],[-71.425492183,41.546153284],[-71.425511466,41.546089238],[-71.425530777,41.546027319],[-71.425560715,41.545962434],[-71.425594546,41.545901119],[-71.425630324,41.545840491],[-71.425672945,41.545785654],[-71.425721552,41.545740952],[-71.425779034,41.54570776],[-71.425840269,41.545667274],[-71.425903453,41.545626766],[-71.425967636,41.545590605],[-71.426046283,41.545550679],[-71.426115308,41.545513034],[-71.426177487,41.545471817],[-71.426242616,41.54543346],[-71.426306914,41.54540313],[-71.426389654,41.545376952],[-71.426462166,41.545377776],[-71.426543383,41.545379955],[-71.426611746,41.545361908],[-71.426684002,41.545347478],[-71.426767886,41.545332917],[-71.426840198,41.545322146],[-71.426931843,41.545308963],[-71.427013979,41.545306065],[-71.427091272,41.545305405],[-71.427176359,41.545304612],[-71.427256574,41.545303908],[-71.42734163,41.545303139],[-71.427430552,41.545302349],[-71.427511799,41.54530455],[-71.427594017,41.545310342],[-71.427675378,41.545319793],[-71.427745255,41.545335891],[-71.427820915,41.545353343],[-71.427892653,41.545365074],[-71.427974901,41.545370889],[-71.42805632,41.545383221],[-71.428146358,41.545392585],[-71.4282258,41.545402766],[-71.428314893,41.545412884],[-71.428387489,41.545420202],[-71.428480278,41.545419391],[-71.428561327,41.545408509],[-71.428630661,41.545392635],[-71.428703863,41.545374545],[-71.428783765,41.54535424],[-71.428859831,41.545334665],[-71.428946492,41.545313541],[-71.429017577,41.545283854],[-71.429088517,41.545246186],[-71.429162323,41.545205615],[-71.429233119,41.545159964],[-71.429285675,41.545120272],[-71.429343069,41.545082709],[-71.429396367,41.545031399],[-71.429435177,41.544978777],[-71.429483752,41.54493261],[-71.429548935,41.544897865],[-71.429617097,41.544867467],[-71.429691185,41.544845763],[-71.429764357,41.544827672],[-71.42983664,41.544813948],[-71.429919778,41.544813221],[-71.429996327,41.544824177],[-71.430086594,41.544845867],[-71.430160449,41.544871366],[-71.430238001,41.544884448],[-71.43031953,41.544906956],[-71.430391467,41.544932476],[-71.430461343,41.544950014],[-71.430549378,41.54495288],[-71.430621204,41.544911552],[-71.430681234,41.544855832],[-71.430720042,41.544803918],[-71.430753008,41.544749142],[-71.430786031,41.544698025],[-71.430825756,41.544642498],[-71.430870435,41.5445934],[-71.430924622,41.544536304],[-71.43097394,41.544476278],[-71.431020566,41.544428668],[-71.431076468,41.544418753],[-71.431117044,41.544478651],[-71.431143273,41.544546681],[-71.431181416,41.544575383],[-71.431275176,41.544575988],[-71.431369795,41.544570075],[-71.431451958,41.544569324],[-71.431526389,41.544568659],[-71.431609526,41.544567931],[-71.431691718,41.544568643],[-71.431772906,41.544567936],[-71.431860853,41.544567142],[-71.431934254,41.544562109],[-71.432017247,41.544553399],[-71.432090619,41.544546215],[-71.43218936,41.544557686],[-71.43226485,41.54456283],[-71.432359526,41.544559775],[-71.432436736,41.544551107],[-71.432518499,41.544524992],[-71.432574945,41.544488891],[-71.432607767,41.544423937],[-71.432620456,41.544370086],[-71.43263489,41.544306768],[-71.43265915,41.544250637],[-71.432693145,41.544199497],[-71.432761162,41.544159675],[-71.432840087,41.544140076],[-71.432931844,41.544134184],[-71.433012059,41.544132012],[-71.433093218,41.544130596],[-71.433172458,41.544129155],[-71.433264243,41.544126121],[-71.433340534,41.544121088],[-71.433413017,41.544119735],[-71.433492286,41.544120444],[-71.433583381,41.544135614],[-71.433655292,41.544157519],[-71.433732012,41.544180044],[-71.433760478,41.544206658],[-71.433689484,41.544241425],[-71.43363006,41.544273202],[-71.433586299,41.544318597],[-71.433560095,41.544372577],[-71.433533145,41.54444037],[-71.433492392,41.544491552],[-71.433444765,41.544537013],[-71.433391326,41.544581052],[-71.433329266,41.544629569],[-71.43327889,41.544683741],[-71.433246813,41.544734882],[-71.43323129,41.544791659],[-71.433224443,41.544848349],[-71.433243916,41.544917175],[-71.433282433,41.544968403],[-71.433356491,41.545005495],[-71.433444895,41.545033745],[-71.433509275,41.54506875],[-71.433576659,41.545112447],[-71.433626658,41.54515849],[-71.433667123,41.545210405],[-71.433717326,41.545266602],[-71.433779928,41.545313247],[-71.43384634,41.545355526],[-71.433918337,41.545383926],[-71.43399984,41.545404258],[-71.434069832,41.545428311],[-71.434141858,41.545458175],[-71.434203258,41.545490319],[-71.434273365,41.545521622],[-71.434248621,41.545546536],[-71.434174361,41.54555738],[-71.434081572,41.54555895],[-71.433995685,41.545568415],[-71.433909855,41.545581539],[-71.433835567,41.545590918],[-71.433749337,41.545577902],[-71.433675478,41.5455546],[-71.433582519,41.545543775],[-71.433503361,41.545551757],[-71.433434113,41.54557342],[-71.433366871,41.545598721],[-71.433291666,41.545611027],[-71.433216175,41.545605906],[-71.433147701,41.545555667],[-71.433110187,41.54550588],[-71.433039937,41.545465863],[-71.432942509,41.545479048],[-71.432878501,41.545526831],[-71.43282211,41.545567301],[-71.432745644,41.545562888],[-71.432669896,41.545541049],[-71.432588508,41.545527988],[-71.432502622,41.545536011],[-71.432426471,41.545550489],[-71.432344593,41.545569377],[-71.432270505,41.545590396],[-71.432193408,41.545607046],[-71.432120236,41.545625115],[-71.432079395,41.545671974],[-71.432092938,41.545733593],[-71.432089098,41.545796071],[-71.432075522,41.545852849],[-71.432065867,41.545915369],[-71.432066981,41.545985809],[-71.432067865,41.546042435],[-71.432091977,41.546099624],[-71.432159333,41.546141127],[-71.432229382,41.546168817],[-71.43229273,41.546200941],[-71.432338894,41.546246273],[-71.4323793,41.546296771],[-71.432426439,41.546342103],[-71.432463952,41.546392599],[-71.432496628,41.546440942],[-71.432572462,41.546468613],[-71.432650819,41.546470809],[-71.432737995,41.546481677],[-71.432810965,41.546512251],[-71.432880099,41.546542091],[-71.432948087,41.546562553],[-71.433002816,41.546599108],[-71.433023172,41.546667204],[-71.432979756,41.546731488],[-71.432925426,41.546779895],[-71.432885702,41.546835445],[-71.432854627,41.546887273],[-71.432865364,41.546954722],[-71.432899069,41.547009629],[-71.4329308,41.547058749],[-71.432938821,41.547103601],[-71.432943513,41.54712979],[-71.432904819,41.547189686],[-71.432848398,41.547228692],[-71.432770415,41.547246805],[-71.432693089,41.547247492],[-71.432609893,41.547243898],[-71.432523688,41.547234517],[-71.432443214,41.547217797],[-71.432355951,41.547201852],[-71.432286299,41.547200278],[-71.432260866,41.547241909],[-71.432273322,41.547296255],[-71.432306025,41.547346817],[-71.432353278,41.547400154],[-71.432412131,41.547452606],[-71.432446782,41.547504609],[-71.432494005,41.547557192],[-71.432558329,41.547589293],[-71.432649459,41.547605195],[-71.432736521,41.547610209],[-71.432831288,41.547612277],[-71.432917436,41.547618045],[-71.433007478,41.547626696],[-71.433090846,41.547641907],[-71.433165622,41.547663746],[-71.433253918,41.547683282],[-71.433331416,41.547692795],[-71.433418537,41.547700713],[-71.433494976,41.547704371],[-71.43357419,41.547702953],[-71.433657131,41.547689119],[-71.43373506,41.547665173],[-71.433819747,41.547641186],[-71.43389315,41.547636174],[-71.433978666,41.547665199],[-71.434056708,41.547708788],[-71.43412507,41.547751776],[-71.434205088,41.547798957],[-71.434281354,41.547853499],[-71.434336024,41.547889321],[-71.43439276,41.547930222],[-71.434442763,41.547974801],[-71.434493713,41.548017185],[-71.434550419,41.548057331],[-71.434608128,41.548098941],[-71.434662886,41.548138377],[-71.434753531,41.548184053],[-71.434819659,41.548209613],[-71.43490641,41.548253138],[-71.434972624,41.548283043],[-71.435033024,41.548313723],[-71.43509059,41.548346619],[-71.435160757,41.54838229],[-71.435224137,41.548416585],[-71.435311918,41.548464455],[-71.435377159,41.548495114],[-71.435459098,41.548540122],[-71.435547681,41.548579279],[-71.435633171,41.548605353],[-71.435727196,41.548620522],[-71.43582016,41.5486313],[-71.43591891,41.548640595],[-71.436017804,41.548658603],[-71.436119647,41.54868018],[-71.436217538,41.548695305],[-71.436321159,41.548705242],[-71.436417016,41.548715267],[-71.436515823,41.548728197],[-71.436606926,41.548744096],[-71.43669614,41.548759994],[-71.436773811,41.548781786],[-71.436849766,41.54881524],[-71.436914093,41.548847339],[-71.436947775,41.548898586],[-71.436948807,41.548964657],[-71.436947749,41.549019155],[-71.43694967,41.549078709],[-71.436977166,41.54910459],[-71.437405193,41.549212563],[-71.437389156,41.549237414],[-71.437331044,41.54923139],[-71.437265432,41.549237072],[-71.437252229,41.549258997],[-71.437294102,41.549277476],[-71.437372546,41.549287673],[-71.437358858,41.549338665],[-71.437286627,41.549356715],[-71.437211715,41.549628985],[-71.437649984,41.54988724],[-71.437659659,41.54989294],[-71.437636422,41.550376829],[-71.437747211,41.550534142],[-71.437761591,41.550587047],[-71.438100729,41.55069728],[-71.438196132,41.550739297],[-71.438376572,41.550776877],[-71.438495407,41.550831737],[-71.438532985,41.550885867],[-71.438584826,41.550924613],[-71.438644459,41.550964736],[-71.438658474,41.550986401],[-71.438658515,41.550986486],[-71.438800515,41.551005486],[-71.438887515,41.551011486],[-71.439156515,41.551009486],[-71.439234515,41.551002485],[-71.439387515,41.550963485],[-71.439469515,41.550950486],[-71.439541515,41.550923485],[-71.439675515,41.550826485],[-71.439810515,41.550744485],[-71.439948515,41.550637486],[-71.440017516,41.550600486],[-71.440093516,41.550573485],[-71.440319515,41.550525486],[-71.440575516,41.550485486],[-71.440732516,41.550485486],[-71.440805515,41.550494485],[-71.440907516,41.550501486],[-71.440872516,41.550827485],[-71.441124516,41.550824485],[-71.441422516,41.550831486],[-71.441841516,41.550831486],[-71.442383516,41.550846485],[-71.442497517,41.550862485],[-71.442894516,41.550908485],[-71.443604517,41.551026486],[-71.444283517,41.551167486],[-71.444923517,41.551358486],[-71.445702517,41.551655486],[-71.445816517,41.551693486],[-71.447273518,41.552208485],[-71.447800518,41.552411486],[-71.447975519,41.552525486],[-71.447914518,41.552189485],[-71.447815518,41.551823485],[-71.447789518,41.551700485],[-71.447838518,41.551699486],[-71.447888518,41.551711486],[-71.447913518,41.551717486],[-71.447990518,41.551723485],[-71.448068518,41.551736486],[-71.448163518,41.551832486],[-71.448276518,41.551937485],[-71.448317518,41.551985486],[-71.448364519,41.552026486],[-71.448453518,41.552125486],[-71.448507518,41.552163486],[-71.448623518,41.552265485],[-71.448694519,41.552293486],[-71.449081519,41.552380486],[-71.449170518,41.552384485],[-71.449242519,41.552392486],[-71.449318519,41.552408486],[-71.449481519,41.552459486],[-71.449718519,41.552549486],[-71.449794518,41.552566486],[-71.450022519,41.552592486],[-71.450278519,41.552598485],[-71.450373519,41.552617485],[-71.450520519,41.552680485],[-71.450597519,41.552705486],[-71.450761519,41.552745486],[-71.450950519,41.552816485],[-71.45101752,41.552837486],[-71.451171519,41.552875485],[-71.45144552,41.552923486],[-71.45160552,41.552961486],[-71.451707519,41.552978486],[-71.452000519,41.553003486],[-71.452098519,41.553013486],[-71.45219052,41.553031485],[-71.45235352,41.553076486],[-71.45252852,41.553142486],[-71.45271152,41.553225485],[-71.45279852,41.553258486],[-71.45298352,41.553312486],[-71.45316852,41.553377485],[-71.45325052,41.553414486],[-71.45332052,41.553455485],[-71.45337652,41.553499486],[-71.45342352,41.553551486],[-71.45346652,41.553612485],[-71.45351952,41.553674486],[-71.45372152,41.553837486],[-71.45381452,41.553906485],[-71.453925521,41.553987486],[-71.454174521,41.554156486],[-71.454296521,41.554254485],[-71.45436052,41.554288486],[-71.454433521,41.554315486],[-71.45449552,41.554357486],[-71.454605521,41.554467486],[-71.45465252,41.554532486],[-71.454666521,41.554567485],[-71.45469652,41.554662486],[-71.454725521,41.554721486],[-71.454832521,41.554896486],[-71.45492652,41.554988486],[-71.455086521,41.555112486],[-71.455135521,41.555160486],[-71.455191521,41.555205486],[-71.455380521,41.555333486],[-71.455589521,41.555445486],[-71.455744521,41.555521486],[-71.455819521,41.555565486],[-71.455900521,41.555621486],[-71.456056521,41.555677486],[-71.456479522,41.555893486],[-71.456756521,41.555996486],[-71.457022522,41.556116486],[-71.457100522,41.556157486],[-71.457386521,41.556336486],[-71.457459521,41.556367486],[-71.457636521,41.556428486],[-71.457726522,41.556455487],[-71.458007521,41.556521486],[-71.458100522,41.556548486],[-71.458256522,41.556607486],[-71.458338522,41.556631487],[-71.458532522,41.556670487],[-71.459013522,41.556801486],[-71.459094523,41.556832486],[-71.459199522,41.556863486],[-71.459283522,41.556869486],[-71.459357522,41.556928486],[-71.459415522,41.556940486],[-71.459504523,41.556950486],[-71.459577522,41.556964487],[-71.459654522,41.556970486],[-71.459737523,41.556967486],[-71.459794523,41.556955486],[-71.459859522,41.556930486],[-71.459937522,41.556917486],[-71.460016522,41.556912486],[-71.460197522,41.556912486],[-71.460367522,41.556936486],[-71.460474523,41.556935486],[-71.460725523,41.556878486],[-71.460811523,41.556888486],[-71.460856523,41.556904487],[-71.460897523,41.556918486],[-71.460976523,41.556924487],[-71.461136523,41.556911486],[-71.461219523,41.556946486],[-71.461303523,41.556970486],[-71.461428523,41.556970486],[-71.461493523,41.556939486],[-71.461549523,41.556888486],[-71.461619523,41.556863486],[-71.461688523,41.556846487],[-71.461795523,41.556842486],[-71.461883523,41.556834486],[-71.462046523,41.556805486],[-71.462153523,41.556796486],[-71.462253524,41.556815486],[-71.462332524,41.556820486],[-71.462563524,41.556819486],[-71.462611523,41.556811486],[-71.462638523,41.556806486],[-71.462746523,41.556794486],[-71.462800524,41.556802486],[-71.462862523,41.556835486],[-71.462935524,41.556863486],[-71.463025523,41.556848486],[-71.463118523,41.556807486],[-71.463207524,41.556783486],[-71.463353523,41.556755486],[-71.463433523,41.556745486],[-71.463635524,41.556746486],[-71.463739523,41.556756486],[-71.463901524,41.556779486],[-71.464197524,41.556804486],[-71.464569524,41.556808486],[-71.464771524,41.556787486],[-71.464806524,41.556713486],[-71.464981524,41.556462486],[-71.465385524,41.556122486],[-71.466438524,41.555432486],[-71.466461525,41.555413486],[-71.466924859,41.555166604],[-71.468595241,41.555516384],[-71.468735629,41.55531651],[-71.469225799,41.555453567],[-71.469401879,41.55521562],[-71.470434565,41.555563021],[-71.47151484,41.555853316],[-71.471867,41.554882496],[-71.473042455,41.555148995],[-71.473320527,41.554272486],[-71.473396526,41.554306485],[-71.473473526,41.554325485],[-71.473549526,41.554337485],[-71.473643527,41.554341485],[-71.473657527,41.554397485],[-71.473689527,41.554388486],[-71.473760527,41.554377485],[-71.473925527,41.554378485],[-71.474015526,41.554384485],[-71.474099527,41.554395485],[-71.474190527,41.554418485],[-71.474504527,41.554555485],[-71.474588527,41.554577485],[-71.474663527,41.554586485],[-71.474744527,41.554570485],[-71.474901527,41.554526486],[-71.475055527,41.554474485],[-71.475310527,41.554425485],[-71.475390527,41.554419485],[-71.475474528,41.554418485],[-71.475558527,41.554406486],[-71.475723528,41.554358485],[-71.475801528,41.554341485],[-71.475958528,41.554318485],[-71.476048527,41.554318485],[-71.476087527,41.554323485],[-71.476130528,41.554329486],[-71.476285528,41.554306485],[-71.476358527,41.554305485],[-71.476439528,41.554332485],[-71.476590527,41.554405485],[-71.476646528,41.554439485],[-71.476713528,41.554488485],[-71.476791528,41.554526486],[-71.476856528,41.554564486],[-71.476914528,41.554611485],[-71.476965528,41.554660486],[-71.477000528,41.554712485],[-71.477021528,41.554774485],[-71.477026528,41.554831485],[-71.477024528,41.554894486],[-71.476993528,41.555011486],[-71.476989528,41.555070486],[-71.476992528,41.555138485],[-71.477022528,41.555193485],[-71.477078528,41.555245486],[-71.477131528,41.555284486],[-71.477208528,41.555314485],[-71.477287528,41.555317485],[-71.477349528,41.555288485],[-71.477368528,41.555235485],[-71.477334528,41.555180485],[-71.477289528,41.555120485],[-71.477201528,41.555016485],[-71.477167528,41.554956485],[-71.477149528,41.554899485],[-71.477167528,41.554785485],[-71.477145528,41.554732485],[-71.477127528,41.554670485],[-71.477131528,41.554615485],[-71.477190528,41.554574485],[-71.477262528,41.554542485],[-71.477312528,41.554499485],[-71.477349528,41.554443485],[-71.477369528,41.554381485],[-71.477348528,41.554269485],[-71.477378528,41.554212485],[-71.477438528,41.554195486],[-71.477510528,41.554219485],[-71.477587528,41.554236485],[-71.477748528,41.554222485],[-71.477820528,41.554228485],[-71.477896528,41.554240485],[-71.477977528,41.554224485],[-71.478045528,41.554187485],[-71.478111528,41.554163485],[-71.478167529,41.554117486],[-71.478199528,41.554109485],[-71.478259528,41.554157485],[-71.478323529,41.554187485],[-71.478391528,41.554204485],[-71.478475529,41.554210485],[-71.478641528,41.554210485],[-71.478717528,41.554197485],[-71.478780528,41.554159485],[-71.478813528,41.554123485],[-71.478826529,41.554109485],[-71.478803528,41.554064485],[-71.478730529,41.554034485],[-71.478655529,41.554010485],[-71.478585528,41.553966485],[-71.478527528,41.553920485],[-71.478465528,41.553885485],[-71.478396528,41.553879485],[-71.478279528,41.553944485],[-71.478216528,41.553972485],[-71.478139528,41.553969485],[-71.478081528,41.553932485],[-71.478036528,41.553872485],[-71.477970528,41.553762485],[-71.477927528,41.553702485],[-71.477872528,41.553654485],[-71.477808528,41.553622485],[-71.477723528,41.553619485],[-71.477640528,41.553641485],[-71.477492528,41.553702485],[-71.477430528,41.553695485],[-71.477425528,41.553662485],[-71.477474528,41.553610485],[-71.477494528,41.553547485],[-71.477468528,41.553489485],[-71.477406528,41.553457485],[-71.477330527,41.553435485],[-71.477261528,41.553395485],[-71.477176528,41.553298485],[-71.477098527,41.553267485],[-71.476943527,41.553243485],[-71.476873528,41.553216485],[-71.476855528,41.553186485],[-71.476900528,41.553142485],[-71.476960527,41.553109485],[-71.477020527,41.553055485],[-71.477047528,41.553004485],[-71.477072528,41.552940485],[-71.477112528,41.552882485],[-71.477179528,41.552842485],[-71.477257528,41.552821485],[-71.477346528,41.552825485],[-71.477429528,41.552843485],[-71.477506528,41.552880485],[-71.477619528,41.552964485],[-71.477707528,41.552996485],[-71.477864528,41.553033485],[-71.478110528,41.553052485],[-71.478282529,41.553051485],[-71.478447528,41.553031485],[-71.478518529,41.553016485],[-71.478668528,41.552964485],[-71.478805529,41.552894485],[-71.478875528,41.552847485],[-71.478933528,41.552799485],[-71.479097529,41.552644485],[-71.479135529,41.552597484],[-71.479222528,41.552509485],[-71.479354529,41.552354485],[-71.479462528,41.552191484],[-71.479507529,41.552144485],[-71.479652528,41.552010485],[-71.479716529,41.551956484],[-71.479791528,41.551916484],[-71.479863529,41.551891485],[-71.479952529,41.551877484],[-71.480025528,41.551876484],[-71.480113529,41.551865485],[-71.480198528,41.551859484],[-71.480275528,41.551882484],[-71.480343529,41.551909485],[-71.480420529,41.551948485],[-71.480474529,41.551986485],[-71.480524529,41.552036484],[-71.480515529,41.552094484],[-71.480452529,41.552196485],[-71.480439529,41.552253485],[-71.480414529,41.552517485],[-71.480416529,41.552644485],[-71.480422529,41.552705485],[-71.480471529,41.552904485],[-71.480509529,41.553093485],[-71.480518529,41.553215485],[-71.480558529,41.553417485],[-71.480530529,41.553484485],[-71.480375529,41.553791485],[-71.480327529,41.553838485],[-71.480261529,41.553881485],[-71.480213529,41.553935485],[-71.480182529,41.553987485],[-71.480179529,41.554046485],[-71.480205529,41.554097485],[-71.480319529,41.554176485],[-71.480405529,41.554280485],[-71.480462529,41.554331485],[-71.480521529,41.554367485],[-71.480592529,41.554367485],[-71.480670529,41.554353485],[-71.480718529,41.554358485],[-71.480746529,41.554361485],[-71.480822529,41.554356485],[-71.480900529,41.554320485],[-71.480999529,41.554216485],[-71.481037529,41.554157485],[-71.481063529,41.554094485],[-71.481074529,41.554032485],[-71.481079529,41.553847485],[-71.481098529,41.553779485],[-71.481143529,41.553728485],[-71.48120853,41.553695485],[-71.481270529,41.553658485],[-71.481278529,41.553601485],[-71.481257529,41.553537485],[-71.481243529,41.553470485],[-71.48132453,41.553291485],[-71.481374529,41.553230485],[-71.48140553,41.553170485],[-71.481415529,41.553114485],[-71.481418529,41.553057485],[-71.481445529,41.553000485],[-71.48148153,41.552948484],[-71.481527529,41.552893485],[-71.48175653,41.552688485],[-71.48198653,41.552514485],[-71.481996529,41.552505485],[-71.48204453,41.552461484],[-71.482110529,41.552418485],[-71.482253529,41.552352485],[-71.48231753,41.552315485],[-71.48241453,41.552221485],[-71.48264553,41.552058484],[-71.48282753,41.551994484],[-71.482853529,41.551984485],[-71.482930529,41.551988485],[-71.48300153,41.552008485],[-71.48308053,41.552016484],[-71.48316053,41.552017484],[-71.48331653,41.552026485],[-71.48339853,41.552019484],[-71.48348253,41.552019484],[-71.48356153,41.552025485],[-71.48364053,41.552134484],[-71.48369953,41.552183485],[-71.48374853,41.552235485],[-71.48380053,41.552220485],[-71.48380153,41.552161485],[-71.48382353,41.552106485],[-71.48384953,41.551984485],[-71.48392153,41.551949485],[-71.48401053,41.551924485],[-71.48407453,41.551888485],[-71.48411153,41.551838484],[-71.48418253,41.551793485],[-71.48425553,41.551771485],[-71.48433253,41.551757485],[-71.48443153,41.551745484],[-71.48450853,41.551731485],[-71.48479353,41.551699485],[-71.48485853,41.551653485],[-71.485013531,41.551619485],[-71.485285531,41.551500485],[-71.48548953,41.551762484],[-71.485733531,41.552090484],[-71.486000531,41.552437485],[-71.486092531,41.552563484],[-71.486420531,41.552983485],[-71.486702531,41.553353485],[-71.486877531,41.553605485],[-71.487335531,41.554314484],[-71.487579531,41.554715485],[-71.487930532,41.555405485],[-71.488159531,41.555878485],[-71.488312531,41.556229485],[-71.488403532,41.556477486],[-71.488525531,41.556759485],[-71.488635532,41.557104485],[-71.488808532,41.557675485],[-71.488884532,41.558007485],[-71.488983532,41.558392485],[-71.489067532,41.558796486],[-71.489227532,41.559414486],[-71.489555533,41.560772486]]]]}}"}, +{"type": "precinct", "typeId": 2309, "areaId": 26044, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":383,\"NAME\":\"2309\",\"SHAPE_Length\":0.35399732679334,\"SHAPE_Area\":-0.0013705706692037},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.454575521,41.568973489],[-71.454574546,41.568987589],[-71.454575616,41.568973426],[-71.454578408,41.568955524],[-71.454575521,41.568973489]]],[[[-71.454549157,41.569354646],[-71.454549404,41.569352367],[-71.454549502,41.569349652],[-71.454549157,41.569354646]]],[[[-71.454519521,41.569601489],[-71.454511195,41.569711587],[-71.454516392,41.569656841],[-71.454519629,41.569601223],[-71.454531214,41.569540097],[-71.454537573,41.56949662],[-71.454519521,41.569601489]]],[[[-71.454497521,41.570018489],[-71.454487522,41.570082489],[-71.454483237,41.570098],[-71.454487955,41.570082412],[-71.454497714,41.570018472],[-71.454500073,41.569955856],[-71.454501518,41.569892599],[-71.454500358,41.569846835],[-71.454497521,41.570018489]]],[[[-71.454449353,41.570220659],[-71.454455531,41.570198371],[-71.454455794,41.570197342],[-71.454449353,41.570220659]]],[[[-71.454389554,41.570318452],[-71.454389728,41.570318411],[-71.454437426,41.57026368],[-71.45443746,41.570263559],[-71.454389554,41.570318452]]],[[[-71.454350521,41.570327489],[-71.454350484,41.570327646],[-71.454383062,41.57031998],[-71.454350521,41.570327489]]],[[[-71.445481992,41.580285688],[-71.445600498,41.580331117],[-71.445716143,41.580375128],[-71.445827122,41.580425585],[-71.445920155,41.580483329],[-71.446003714,41.580542577],[-71.446098695,41.580603204],[-71.44620501,41.580658689],[-71.446297012,41.580711447],[-71.446359648,41.580770183],[-71.446399439,41.580829068],[-71.446432647,41.580892318],[-71.4464488,41.580954988],[-71.446450637,41.58101708],[-71.446454422,41.581081254],[-71.446478243,41.581151704],[-71.44651263,41.581227075],[-71.446552682,41.581302381],[-71.446584119,41.581372742],[-71.446606823,41.581431802],[-71.446635255,41.581489356],[-71.44668037,41.581519679],[-71.446784473,41.581489562],[-71.446859893,41.581448271],[-71.446922718,41.581388519],[-71.446955172,41.581332595],[-71.446982874,41.581278155],[-71.447006799,41.581223004],[-71.447052476,41.581161986],[-71.447116388,41.581112938],[-71.447155627,41.58106621],[-71.447190914,41.581008846],[-71.447224197,41.580944346],[-71.447261315,41.580884102],[-71.447307136,41.580832323],[-71.447364494,41.580789789],[-71.447428664,41.580759973],[-71.44749192,41.580730935],[-71.447556091,41.580699724],[-71.447617458,41.580671348],[-71.447674758,41.580624537],[-71.447663387,41.580561137],[-71.447632836,41.580487163],[-71.447618458,41.580413768],[-71.447631761,41.580347269],[-71.447678557,41.580295513],[-71.447768488,41.580273371],[-71.447857138,41.580291912],[-71.447939234,41.580316923],[-71.448035268,41.580318979],[-71.448125172,41.580291851],[-71.44819741,41.580227734],[-71.448233698,41.580174647],[-71.448268126,41.580123709],[-71.4482968,41.580069932],[-71.448312135,41.580013405],[-71.448327499,41.579959074],[-71.448354284,41.579906028],[-71.448387739,41.579852963],[-71.448419189,41.579792784],[-71.448450608,41.579733291],[-71.448480285,41.579681642],[-71.448528735,41.579616325],[-71.448568715,41.579553909],[-71.448596357,41.57949446],[-71.448580378,41.579442493],[-71.448543504,41.579390677],[-71.448507632,41.579342452],[-71.448462143,41.579285005],[-71.448412874,41.579231194],[-71.448381985,41.579198637],[-71.448354557,41.579141747],[-71.448317626,41.5790857],[-71.448278864,41.57903466],[-71.448207727,41.57898029],[-71.44813562,41.578920202],[-71.448084519,41.578874234],[-71.448036227,41.578818273],[-71.447993484,41.57875511],[-71.447949798,41.578691947],[-71.447907971,41.578625927],[-71.447865143,41.578556338],[-71.447822286,41.578484622],[-71.447793711,41.578415657],[-71.447785059,41.578342904],[-71.447780183,41.5782702],[-71.447778114,41.578192442],[-71.447771291,41.578117563],[-71.447768363,41.578046918],[-71.447767354,41.577976273],[-71.447766373,41.577908487],[-71.447765478,41.57784715],[-71.447761779,41.577789379],[-71.447748577,41.577730941],[-71.447741763,41.577719572],[-71.447701034,41.577729936],[-71.447628306,41.577761921],[-71.447540613,41.577808283],[-71.447452059,41.577863267],[-71.447356039,41.577923988],[-71.447249541,41.577984818],[-71.447141095,41.578043498],[-71.447036457,41.578102179],[-71.44693093,41.578166531],[-71.446827352,41.578230907],[-71.446716072,41.578291026],[-71.446605592,41.578341174],[-71.446510968,41.578369076],[-71.446431427,41.578388982],[-71.446340696,41.57842329],[-71.446245328,41.578466171],[-71.446150876,41.578505486],[-71.446058111,41.578531948],[-71.445975823,41.578558301],[-71.445896569,41.578598194],[-71.445814482,41.578638818],[-71.445720887,41.578673856],[-71.445618706,41.578704636],[-71.445518384,41.578733999],[-71.445415345,41.57877125],[-71.445302888,41.578815701],[-71.445180986,41.578863784],[-71.44505436,41.578914791],[-71.444929594,41.578962895],[-71.444810584,41.579011688],[-71.444699158,41.579060415],[-71.444606651,41.579103983],[-71.444522673,41.579146091],[-71.444432228,41.579199609],[-71.444340807,41.579254612],[-71.444257946,41.579307355],[-71.44418639,41.579354363],[-71.444125167,41.57939264],[-71.444062227,41.579443837],[-71.444036183,41.57948188],[-71.444045287,41.579520351],[-71.444087227,41.579592068],[-71.444118545,41.579655317],[-71.444186873,41.579713988],[-71.44428056,41.579751769],[-71.444345595,41.57977977],[-71.444353237,41.579782564],[-71.444418502,41.579826985],[-71.444483566,41.579855718],[-71.444561996,41.579891501],[-71.444640513,41.579932224],[-71.4447172,41.579976514],[-71.444797721,41.580025128],[-71.444890638,41.58007361],[-71.444991081,41.580119878],[-71.445100084,41.58016464],[-71.445224258,41.580207145],[-71.445355045,41.580245331],[-71.445481992,41.580285688]]],[[[-71.454707925,41.581281572],[-71.454794456,41.581286568],[-71.454880334,41.581310158],[-71.454932326,41.581355369],[-71.45495235,41.581424443],[-71.454960954,41.581492163],[-71.454981865,41.581556207],[-71.455024471,41.581609372],[-71.455101644,41.581623719],[-71.455177584,41.58161595],[-71.45525704,41.581589589],[-71.455319318,41.58155986],[-71.455394052,41.581534938],[-71.455482356,41.581529941],[-71.455551217,41.581495115],[-71.455603732,41.581446171],[-71.455630423,41.581387406],[-71.455644721,41.581325229],[-71.455661997,41.58127227],[-71.455704093,41.581224809],[-71.455727065,41.581171119],[-71.455720467,41.581110512],[-71.455702447,41.581047888],[-71.455659928,41.581001103],[-71.455594059,41.580981685],[-71.455528917,41.58101219],[-71.45546472,41.581041988],[-71.455391761,41.58105687],[-71.45531748,41.581046047],[-71.455265575,41.581005822],[-71.455222025,41.580952656],[-71.455242251,41.580906124],[-71.455308367,41.580877723],[-71.455387254,41.580879194],[-71.45547287,41.580883481],[-71.455526619,41.580855235],[-71.455518133,41.580793895],[-71.455483199,41.580745673],[-71.455431177,41.580699021],[-71.455371513,41.580648822],[-71.455312822,41.580600796],[-71.455253275,41.580557046],[-71.455192695,41.580509019],[-71.455134978,41.580462388],[-71.455089656,41.580418506],[-71.455050713,41.580355325],[-71.455011859,41.580295735],[-71.454957978,41.580251964],[-71.454894711,41.580214639],[-71.454822086,41.580188127],[-71.454747485,41.58015592],[-71.45468599,41.580112169],[-71.45462919,41.580061971],[-71.4545772,41.580015296],[-71.45452515,41.579967204],[-71.454470268,41.579917715],[-71.454408745,41.579871151],[-71.454348166,41.5798231],[-71.454287588,41.579775073],[-71.454223261,41.579731343],[-71.45415613,41.579689808],[-71.454089088,41.579652527],[-71.454018295,41.57962103],[-71.453952282,41.579592302],[-71.453891966,41.579562113],[-71.453826898,41.579532699],[-71.453740136,41.579514117],[-71.453673019,41.579538217],[-71.453597547,41.579576699],[-71.453535385,41.579615004],[-71.45347033,41.579651935],[-71.453407282,41.579693852],[-71.453364301,41.579743462],[-71.453330792,41.579792275],[-71.453302123,41.579845298],[-71.453281096,41.579902578],[-71.453265707,41.579955515],[-71.453247572,41.580014169],[-71.453230294,41.580068546],[-71.453217797,41.580122879],[-71.45320822,41.580182885],[-71.453207317,41.580252134],[-71.453212999,41.580314182],[-71.453225405,41.580384694],[-71.453236783,41.580446698],[-71.453248276,41.580517256],[-71.453244396,41.5805758],[-71.45322331,41.58062949],[-71.453186967,41.580679033],[-71.453144043,41.58073292],[-71.453098168,41.580780424],[-71.453054154,41.58082427],[-71.452995084,41.580880414],[-71.452926396,41.58092736],[-71.452861543,41.580977852],[-71.452819621,41.581035284],[-71.452800627,41.581101118],[-71.452825111,41.581150138],[-71.452894103,41.581188838],[-71.452966073,41.581236757],[-71.453017091,41.581279178],[-71.453065274,41.581325143],[-71.453120041,41.581365393],[-71.453171944,41.581405596],[-71.453221045,41.581446621],[-71.453294934,41.581495958],[-71.45336009,41.581531799],[-71.453420437,41.581563429],[-71.453506402,41.5815934],[-71.453576994,41.581609209],[-71.453661752,41.581622759],[-71.453737778,41.581622881],[-71.453823962,41.581601487],[-71.453891996,41.581574482],[-71.453960001,41.581546814],[-71.454043264,41.581520433],[-71.454115164,41.581496998],[-71.454195419,41.581460667],[-71.454270777,41.581413677],[-71.454329132,41.581376765],[-71.454403633,41.581336224],[-71.45447267,41.581311347],[-71.454539788,41.581288],[-71.454629952,41.581279368],[-71.454707925,41.581281572]]],[[[-71.449135609,41.5881225],[-71.449146925,41.588181646],[-71.44918526,41.588203458],[-71.449220156,41.588182479],[-71.4492259,41.588121054],[-71.449190284,41.588089958],[-71.449154156,41.58808953],[-71.449135609,41.5881225]]],[[[-71.453883523,41.602416495],[-71.454072523,41.602448495],[-71.454548523,41.602577496],[-71.455026523,41.602750496],[-71.455017524,41.602623495],[-71.455017524,41.602536496],[-71.455015523,41.602492495],[-71.455006523,41.602277495],[-71.454964523,41.601296495],[-71.454948523,41.601075495],[-71.454903523,41.600209495],[-71.454880523,41.599339495],[-71.454895523,41.599114494],[-71.454910523,41.598938494],[-71.455025523,41.598450494],[-71.455101523,41.598149495],[-71.455330523,41.597340494],[-71.455780524,41.595787494],[-71.456512523,41.593369494],[-71.457359524,41.590523493],[-71.457474524,41.590149493],[-71.458019524,41.590179492],[-71.458334524,41.590061492],[-71.458513523,41.589963492],[-71.458825523,41.589758493],[-71.459197524,41.589682493],[-71.459908524,41.589882493],[-71.459915524,41.589894493],[-71.459946524,41.589909492],[-71.460114524,41.589951493],[-71.460266524,41.589981492],[-71.460312524,41.589997493],[-71.460419525,41.590046493],[-71.460472524,41.590077493],[-71.460594525,41.590176492],[-71.460701524,41.590229493],[-71.460831524,41.590275492],[-71.460907525,41.590294492],[-71.460976524,41.590317492],[-71.461159525,41.590363493],[-71.461250525,41.590390493],[-71.461472525,41.590466493],[-71.461922525,41.590596493],[-71.462105525,41.590672493],[-71.462273525,41.590390493],[-71.462387525,41.590180492],[-71.462425525,41.590069493],[-71.462486525,41.589836493],[-71.462517525,41.589692492],[-71.462540525,41.589543493],[-71.462601525,41.589219493],[-71.462639525,41.589009492],[-71.462646525,41.588932492],[-71.462646525,41.588860492],[-71.462639525,41.588787493],[-71.462624525,41.588719492],[-71.462578525,41.588578492],[-71.462563525,41.588486492],[-71.462563525,41.588440493],[-71.462578525,41.588383492],[-71.462639525,41.588272492],[-71.462799525,41.588334492],[-71.462883525,41.588372492],[-71.462959525,41.588414492],[-71.463036525,41.588456493],[-71.463112526,41.588513492],[-71.463181525,41.588578492],[-71.463326526,41.588696492],[-71.463423526,41.588764492],[-71.463562525,41.588848493],[-71.463760525,41.588948492],[-71.463890526,41.589009492],[-71.464157526,41.589123492],[-71.464554526,41.589302492],[-71.464666526,41.589346492],[-71.464836526,41.589413493],[-71.465088526,41.589493493],[-71.465302526,41.589543492],[-71.465508526,41.589558492],[-71.465622526,41.589554492],[-71.466820526,41.589486492],[-71.467163527,41.589470493],[-71.467415527,41.589447492],[-71.467590527,41.589413493],[-71.467705527,41.589383492],[-71.467758526,41.589363492],[-71.467911526,41.589318492],[-71.468109527,41.589245492],[-71.468475527,41.589081493],[-71.469009527,41.588833492],[-71.469322527,41.588700492],[-71.469498527,41.588631492],[-71.469849527,41.588482492],[-71.470139527,41.588368492],[-71.470238527,41.588334492],[-71.470329527,41.588311492],[-71.470413527,41.588284492],[-71.471268527,41.588066492],[-71.471420528,41.588032492],[-71.471504528,41.588017492],[-71.471649528,41.588009492],[-71.471794528,41.588009492],[-71.471870528,41.588013492],[-71.471947528,41.588025492],[-71.472054528,41.588059492],[-71.472160528,41.588116492],[-71.472214528,41.588154492],[-71.472305528,41.588227492],[-71.472351528,41.588257492],[-71.472458528,41.588349492],[-71.472511529,41.588414492],[-71.472702528,41.588585492],[-71.472839529,41.588688492],[-71.472957529,41.588763492],[-71.473099528,41.588841492],[-71.473206529,41.588894492],[-71.473320528,41.588940492],[-71.473457528,41.588982492],[-71.473577529,41.589015492],[-71.473732529,41.589058492],[-71.474068529,41.589157492],[-71.474382529,41.589260492],[-71.475304529,41.589562492],[-71.47692953,41.590100492],[-71.47708953,41.590149492],[-71.47740253,41.590237492],[-71.47767353,41.590308492],[-71.47807353,41.590413492],[-71.478867531,41.590603493],[-71.480606531,41.591034493],[-71.480784531,41.591082492],[-71.481171532,41.591187493],[-71.481454531,41.591254492],[-71.481560532,41.591278492],[-71.481697532,41.591301492],[-71.481972531,41.591336492],[-71.482346531,41.591351492],[-71.482503531,41.591351492],[-71.482773531,41.591351492],[-71.482925532,41.591359492],[-71.483002532,41.591370492],[-71.483246532,41.591420492],[-71.483421532,41.591473492],[-71.483650532,41.591561492],[-71.483757532,41.591610492],[-71.483940533,41.591679492],[-71.484138532,41.591744492],[-71.484567532,41.591866492],[-71.485428532,41.592125493],[-71.485555533,41.592159492],[-71.485613533,41.592173492],[-71.487776533,41.587892492],[-71.488908534,41.585667491],[-71.489121534,41.585230491],[-71.491040533,41.58143849],[-71.491741534,41.58003149],[-71.492049534,41.57942349],[-71.493107534,41.577349489],[-71.494650534,41.574281489],[-71.495073535,41.573436488],[-71.495038534,41.573404489],[-71.493767535,41.572289488],[-71.493622534,41.572152488],[-71.493469534,41.572018488],[-71.493332534,41.571877488],[-71.493187534,41.571713488],[-71.493103534,41.571610488],[-71.493050534,41.571541488],[-71.492996534,41.571480488],[-71.492950534,41.571419488],[-71.492767534,41.571198488],[-71.492630534,41.571019488],[-71.492500534,41.570839488],[-71.492371534,41.570641488],[-71.492126534,41.570237488],[-71.491882533,41.569783488],[-71.491692533,41.569367488],[-71.491478533,41.568772488],[-71.491417533,41.568554487],[-71.491348534,41.568333488],[-71.490898533,41.566407487],[-71.490440533,41.564473486],[-71.489998533,41.562653487],[-71.489776365,41.561710157],[-71.486942248,41.561741446],[-71.486252531,41.561760487],[-71.48380753,41.561867486],[-71.478202529,41.563173487],[-71.478198529,41.563110487],[-71.478178529,41.562993486],[-71.478056528,41.562935487],[-71.477829529,41.562881487],[-71.477594529,41.562841487],[-71.477523529,41.562859487],[-71.477398528,41.562941487],[-71.477336528,41.562989487],[-71.477253528,41.563016487],[-71.477163528,41.563024487],[-71.476977529,41.563020487],[-71.476793528,41.562998487],[-71.476706528,41.562975487],[-71.472752479,41.567745102],[-71.472220936,41.568386281],[-71.471496527,41.568180488],[-71.469971526,41.567730488],[-71.468742526,41.567379488],[-71.468437525,41.567299488],[-71.467575526,41.567067488],[-71.466476525,41.566777488],[-71.465813525,41.566624488],[-71.465714525,41.566601488],[-71.465263524,41.566510488],[-71.464546524,41.566357488],[-71.463753524,41.566193488],[-71.463318524,41.566136488],[-71.462921524,41.566159488],[-71.460121523,41.566277488],[-71.459763523,41.566311488],[-71.459503523,41.566357488],[-71.459282523,41.566418488],[-71.459015523,41.566559489],[-71.458534522,41.566834488],[-71.458102522,41.567088488],[-71.457802522,41.567265488],[-71.457718522,41.567315489],[-71.456963522,41.567753488],[-71.456856522,41.567818488],[-71.456619521,41.567921489],[-71.456451522,41.567963489],[-71.456085522,41.568009488],[-71.455588521,41.568055489],[-71.455513521,41.568062488],[-71.455086521,41.568116489],[-71.454620521,41.568207489],[-71.454620521,41.56886135],[-71.454683345,41.568818847],[-71.45475304,41.568792734],[-71.454830982,41.568774995],[-71.454913553,41.568755886],[-71.455001564,41.568753519],[-71.455082958,41.568763636],[-71.455158741,41.568784843],[-71.455235373,41.568811608],[-71.455315719,41.568839792],[-71.455387753,41.568865845],[-71.455477424,41.568885022],[-71.455555066,41.568905566],[-71.455635412,41.56893375],[-71.455698088,41.568973659],[-71.455753266,41.569023307],[-71.455820473,41.569072297],[-71.455886799,41.569118473],[-71.45594377,41.56917368],[-71.455984964,41.569232288],[-71.45599936,41.56928869],[-71.455997917,41.569352016],[-71.455976166,41.569406826],[-71.455932151,41.569466453],[-71.45587249,41.569515555],[-71.455794348,41.569558337],[-71.455731072,41.569594241],[-71.455673369,41.569628729],[-71.455614721,41.56966532],[-71.455556071,41.569704679],[-71.455496345,41.569759361],[-71.455446819,41.569815464],[-71.455404695,41.569870243],[-71.455362568,41.569928476],[-71.455326964,41.569978387],[-71.455281189,41.570027584],[-71.455235447,41.570072574],[-71.455275795,41.570120753],[-71.455319889,41.570168934],[-71.455358311,41.570228227],[-71.455332777,41.570292801],[-71.455290652,41.570348267],[-71.455261466,41.570408609],[-71.455252622,41.570469782],[-71.455262392,41.570523392],[-71.455301828,41.570570153],[-71.455373019,41.570585069],[-71.455461877,41.570593817],[-71.455539554,41.570609467],[-71.455628283,41.570630038],[-71.455705016,41.570646397],[-71.455788169,41.570669756],[-71.455853719,41.570695052],[-71.455931261,41.570731604],[-71.455997758,41.570752762],[-71.45606797,41.570775315],[-71.456131529,41.570818037],[-71.456148698,41.570873091],[-71.456110323,41.570922269],[-71.456037954,41.57093793],[-71.455943485,41.570938237],[-71.455849897,41.570941952],[-71.455776648,41.570952055],[-71.455703366,41.570966343],[-71.4556811,41.5709718],[-71.455619847,41.570986848],[-71.455544769,41.570998299],[-71.455471589,41.570997288],[-71.455376272,41.570990596],[-71.455285522,41.570986718],[-71.455213318,41.570982894],[-71.455123511,41.570979039],[-71.455035563,41.570973745],[-71.454951267,41.570973369],[-71.45487163,41.570972309],[-71.454792873,41.57097612],[-71.454789493,41.570976462],[-71.454709453,41.5709848],[-71.454625123,41.570988586],[-71.454553761,41.571000085],[-71.454481528,41.570994865],[-71.454406719,41.570971599],[-71.454360798,41.570922709],[-71.4543539,41.570857985],[-71.454358115,41.570797473],[-71.454365102,41.570734927],[-71.454372971,41.570675126],[-71.454379925,41.570616765],[-71.454385902,41.570562521],[-71.454390116,41.570502055],[-71.454376699,41.570440759],[-71.454327772,41.570423153],[-71.454327581,41.570423238],[-71.454327521,41.570423489],[-71.454271521,41.570448489],[-71.454261111,41.570483009],[-71.454252976,41.570511148],[-71.454244979,41.570580669],[-71.454235218,41.570645295],[-71.454226439,41.570700225],[-71.454216616,41.570766931],[-71.4542153,41.570778531],[-71.454206237,41.57086787],[-71.454203517,41.570902521],[-71.454195531,41.570973391],[-71.454195517,41.570973488],[-71.454195364,41.57097423],[-71.454183901,41.571036621],[-71.454170425,41.571101245],[-71.45415506,41.571167264],[-71.454141622,41.571227017],[-71.454141522,41.571227489],[-71.454124521,41.571286489],[-71.45408503,41.571327776],[-71.454080574,41.57133249],[-71.454077013,41.571334134],[-71.454016521,41.571362489],[-71.453369521,41.571476489],[-71.452618521,41.57357349],[-71.45263374,41.573588225],[-71.452681805,41.573634215],[-71.452710544,41.573670453],[-71.452727521,41.57369149],[-71.452738939,41.573703331],[-71.452781343,41.573746111],[-71.452829832,41.573797589],[-71.452835521,41.57380349],[-71.452844068,41.573814827],[-71.452884772,41.573868003],[-71.452924771,41.573937612],[-71.452950408,41.574000215],[-71.452950521,41.57400049],[-71.452952402,41.574011605],[-71.452961804,41.574065057],[-71.453019629,41.574120219],[-71.453090212,41.574138201],[-71.453113052,41.574140154],[-71.453185467,41.574152396],[-71.453255159,41.574175371],[-71.453255521,41.57417549],[-71.453282885,41.57419851],[-71.453318655,41.574228378],[-71.453325493,41.57424269],[-71.453345521,41.574283489],[-71.45339042,41.574294975],[-71.453431926,41.574305197],[-71.453540054,41.574290055],[-71.453616695,41.574269435],[-71.453654422,41.574259642],[-71.453684521,41.57425149],[-71.453710581,41.574250776],[-71.453757993,41.574249001],[-71.453798952,41.574254369],[-71.453797677,41.574255251],[-71.453666521,41.57437349],[-71.453635416,41.574382855],[-71.453573993,41.574401833],[-71.453543188,41.574407424],[-71.45348455,41.574418897],[-71.453481121,41.574419703],[-71.453391227,41.574445417],[-71.453299416,41.574469713],[-71.453232477,41.574508839],[-71.453212859,41.574556537],[-71.453200521,41.57458649],[-71.453200393,41.57458686],[-71.453177583,41.57465269],[-71.453174525,41.574661296],[-71.453151521,41.57472749],[-71.453082054,41.574987027],[-71.453079967,41.574996038],[-71.453067529,41.575054648],[-71.453054125,41.575108051],[-71.453051521,41.57511949],[-71.453047521,41.57517649],[-71.453093521,41.57524649],[-71.453106926,41.575280808],[-71.453118785,41.575310421],[-71.453118178,41.575335519],[-71.453117521,41.57538349],[-71.453088522,41.57545449],[-71.452959567,41.575669413],[-71.452959521,41.57566949],[-71.452930521,41.57574049],[-71.452924408,41.575782602],[-71.452921681,41.575802313],[-71.452922696,41.575872226],[-71.452934755,41.575917078],[-71.453001962,41.575936474],[-71.453069522,41.57595549],[-71.453148521,41.57599149],[-71.45314856,41.57599159],[-71.453148749,41.575991675],[-71.453160317,41.57602175],[-71.453171521,41.57605049],[-71.45317142,41.576050614],[-71.453171457,41.576050711],[-71.453117318,41.576116805],[-71.453055986,41.576148683],[-71.45298206,41.576160728],[-71.452901983,41.57613393],[-71.452888521,41.57612949],[-71.45288371,41.576127044],[-71.45282909,41.576099901],[-71.45281656,41.576105343],[-71.45279886,41.576113337],[-71.452792837,41.576163697],[-71.452786521,41.57621949],[-71.452786521,41.576289491],[-71.452782585,41.576329414],[-71.452779713,41.576360778],[-71.45276367,41.576433702],[-71.452738154,41.576508842],[-71.452707915,41.576585465],[-71.452706992,41.576587935],[-71.452651521,41.576739491],[-71.452640522,41.57681849],[-71.452644594,41.576865615],[-71.452647899,41.576899921],[-71.452669895,41.576974691],[-71.452701343,41.577045096],[-71.452701521,41.577045491],[-71.452701993,41.577046926],[-71.452727111,41.577116919],[-71.452743861,41.577174313],[-71.452748521,41.57718849],[-71.452761899,41.577261117],[-71.452762517,41.577264351],[-71.452762521,41.577264491],[-71.452765521,41.577338491],[-71.452762968,41.577360511],[-71.452757936,41.577407124],[-71.452742781,41.577472891],[-71.452738648,41.577502995],[-71.452734521,41.577535491],[-71.452731521,41.577669491],[-71.452731368,41.577669751],[-71.452731368,41.577669932],[-71.452711303,41.577703749],[-71.452695521,41.577730491],[-71.452695394,41.577730562],[-71.452695201,41.577730887],[-71.452584017,41.577793893],[-71.452533721,41.57782586],[-71.452523522,41.57783249],[-71.452433154,41.577940538],[-71.452431504,41.577942599],[-71.452430187,41.577951295],[-71.452426999,41.57797573],[-71.452502521,41.57801349],[-71.45250255,41.578013629],[-71.452502657,41.578013683],[-71.45251778,41.578074888],[-71.452522557,41.578111758],[-71.452523522,41.578116491],[-71.452523448,41.578116598],[-71.452566568,41.578163689],[-71.452609055,41.578207593],[-71.452692094,41.578232624],[-71.452791758,41.578223219],[-71.452866603,41.578208339],[-71.452949949,41.578187653],[-71.453023763,41.578166346],[-71.453121219,41.578135558],[-71.453222452,41.578104039],[-71.453300988,41.57808127],[-71.453380468,41.578057769],[-71.453459092,41.578039299],[-71.453541813,41.578040751],[-71.453626595,41.578057159],[-71.453722886,41.57807849],[-71.45383349,41.578103279],[-71.453946928,41.578124456],[-71.454061223,41.578142066],[-71.454169822,41.578159742],[-71.45427181,41.578179565],[-71.454370018,41.578203022],[-71.454463565,41.57822936],[-71.454553273,41.578257891],[-71.454639265,41.578287152],[-71.45471953,41.578317166],[-71.454799883,41.578352188],[-71.454882212,41.578392196],[-71.454955155,41.578440823],[-71.455015848,41.578496695],[-71.45505665,41.578556995],[-71.455078388,41.578613926],[-71.455082414,41.578693125],[-71.455083489,41.578768024],[-71.455101537,41.578831357],[-71.455165094,41.578887915],[-71.455228244,41.578916687],[-71.455311765,41.57890883],[-71.455391958,41.57886749],[-71.455431784,41.578797936],[-71.455450919,41.578742873],[-71.455479557,41.578686968],[-71.455523511,41.578636626],[-71.455575077,41.57859054],[-71.455636234,41.578549353],[-71.455706982,41.578512377],[-71.455785255,41.578471791],[-71.455862586,41.578429031],[-71.455939058,41.578394847],[-71.456014643,41.578364963],[-71.456074057,41.57833306],[-71.45609883,41.578272213],[-71.456077686,41.578191726],[-71.456054029,41.5781334],[-71.456019955,41.578078065],[-71.455990631,41.57802335],[-71.455978161,41.577952106],[-71.456013324,41.577885454],[-71.456061998,41.5778358],[-71.456118257,41.577783221],[-71.456175431,41.577730688],[-71.456232664,41.577679505],[-71.456293733,41.577631914],[-71.456357752,41.577589309],[-71.456427525,41.577550869],[-71.456446781,41.577539212],[-71.456494375,41.577510369],[-71.456553526,41.577460627],[-71.456607866,41.577408093],[-71.456660435,41.577362739],[-71.456688349,41.577339651],[-71.456710198,41.577321615],[-71.456783602,41.577273205],[-71.456849713,41.577243385],[-71.456921722,41.577231383],[-71.457021792,41.577249121],[-71.457092641,41.577286334],[-71.457117276,41.577339812],[-71.457119161,41.577343929],[-71.457157131,41.577405692],[-71.457194302,41.577477448],[-71.457190513,41.577541687],[-71.457171613,41.577613925],[-71.457155663,41.577691836],[-71.457152934,41.577765361],[-71.457163457,41.577833791],[-71.457186228,41.577897126],[-71.457203363,41.577962654],[-71.457214771,41.57802818],[-71.457231964,41.578098693],[-71.457254823,41.578166282],[-71.457276738,41.578234647],[-71.457294846,41.578302257],[-71.457312837,41.578362754],[-71.457340302,41.578420327],[-71.45738282,41.578468529],[-71.457434695,41.578506626],[-71.457528359,41.578541514],[-71.457604528,41.578550164],[-71.457681466,41.578548088],[-71.457753652,41.578546079],[-71.457851659,41.578554554],[-71.457936998,41.578605905],[-71.45798533,41.578660467],[-71.45802702,41.578717199],[-71.458057261,41.578769055],[-71.458060619,41.57880471],[-71.458008646,41.578823696],[-71.45793454,41.578826436],[-71.457874096,41.578851914],[-71.457870756,41.578882649],[-71.457847914,41.578880674],[-71.457811208,41.578840319],[-71.457769925,41.578812814],[-71.457653087,41.57881595],[-71.457552566,41.578831762],[-71.457448384,41.578856194],[-71.457349957,41.578883418],[-71.457259972,41.578902709],[-71.457166948,41.578912029],[-71.457072153,41.57892711],[-71.456980365,41.578955686],[-71.45689256,41.578994257],[-71.456810537,41.579039851],[-71.456733353,41.579091164],[-71.456658086,41.579143873],[-71.456585683,41.579196561],[-71.456519803,41.579241383],[-71.456461509,41.579283235],[-71.456445594,41.579307014],[-71.456418733,41.579347094],[-71.456413969,41.579411379],[-71.456445487,41.579465455],[-71.456459991,41.579502326],[-71.456445449,41.579522515],[-71.456436699,41.579534632],[-71.456363917,41.579561659],[-71.456329699,41.579626871],[-71.456308966,41.57970343],[-71.4563261,41.57976889],[-71.456364927,41.579824935],[-71.456404687,41.579943072],[-71.456418842,41.580001487],[-71.456432997,41.580058437],[-71.456445068,41.580089911],[-71.456453733,41.580112532],[-71.456475445,41.580165849],[-71.456500991,41.580223468],[-71.456540823,41.580280908],[-71.456593876,41.580334032],[-71.456656374,41.580383454],[-71.456724628,41.580435691],[-71.45679105,41.580492936],[-71.456858446,41.580552331],[-71.456920146,41.580611769],[-71.456968622,41.580677698],[-71.456995377,41.580751691],[-71.457009764,41.580827212],[-71.457015626,41.580898545],[-71.457016644,41.580970607],[-71.457017752,41.581046261],[-71.457018002,41.581127585],[-71.457012527,41.581208267],[-71.456995603,41.581283342],[-71.456978531,41.58135199],[-71.456983329,41.581419732],[-71.45701357,41.581472298],[-71.457073978,41.581507448],[-71.457141141,41.581551154],[-71.457193398,41.581613516],[-71.45723432,41.581683101],[-71.457277073,41.58174626],[-71.457296925,41.581803922],[-71.45728452,41.581863241],[-71.457269279,41.581926882],[-71.457244564,41.581992028],[-71.457216072,41.58205651],[-71.457214172,41.58212075],[-71.457218941,41.582187074],[-71.457222619,41.582244089],[-71.457253748,41.582291647],[-71.457297516,41.582294888],[-71.457382668,41.58226775],[-71.457447738,41.582254121],[-71.457520027,41.582240426],[-71.457554234,41.582239249],[-71.457625859,41.582261459],[-71.45768727,41.582301618],[-71.45774496,41.582347539],[-71.457812156,41.582391199],[-71.457887763,41.58242839],[-71.457962427,41.582463453],[-71.458022922,41.582505784],[-71.458059894,41.582562583],[-71.458084615,41.582627999],[-71.458101723,41.582691377],[-71.458101653,41.582752027],[-71.45809397,41.582810617],[-71.458065244,41.582861514],[-71.458011046,41.582924066],[-71.458006138,41.582977647],[-71.458088085,41.583056166],[-71.4581438,41.583096368],[-71.458197656,41.583138742],[-71.458199954,41.583165844],[-71.458133108,41.583144985],[-71.458065201,41.583116282],[-71.457983867,41.583079158],[-71.457929154,41.583043918],[-71.4578712,41.58297945],[-71.457852146,41.582911818],[-71.457827366,41.582842834],[-71.457783929,41.582798931],[-71.457693979,41.582756132],[-71.457614796,41.582738264],[-71.457533812,41.58272465],[-71.457432938,41.582712629],[-71.457347407,41.582713352],[-71.457243072,41.582729894],[-71.457165476,41.582752666],[-71.457089059,41.582790418],[-71.457017449,41.582834553],[-71.456952599,41.582882898],[-71.456889694,41.582936961],[-71.456822984,41.582988187],[-71.456757246,41.583041494],[-71.456705762,41.583097597],[-71.456669509,41.583152836],[-71.456647569,41.583212243],[-71.456644723,41.583276506],[-71.456652354,41.583343517],[-71.456658127,41.583411259],[-71.456660949,41.583473305],[-71.456666662,41.58353892],[-71.456677097,41.583603805],[-71.456687474,41.583662927],[-71.456697882,41.58372349],[-71.456698814,41.58378629],[-71.45669928,41.5838184],[-71.456640761,41.583781054],[-71.456590421,41.583719379],[-71.456530607,41.583659941],[-71.456485252,41.583614642],[-71.456442729,41.583570945],[-71.456437006,41.583565088],[-71.456392568,41.583515512],[-71.45636038,41.583458715],[-71.456331111,41.583408253],[-71.45625931,41.583373876],[-71.456170509,41.583343951],[-71.456111873,41.583299448],[-71.456057873,41.583247101],[-71.456004876,41.583196882],[-71.455960438,41.583147993],[-71.455947997,41.583078876],[-71.455937533,41.583012596],[-71.45590626,41.582954335],[-71.455940363,41.582882697],[-71.455978536,41.582827459],[-71.456019541,41.582772907],[-71.456067276,41.582721812],[-71.456112263,41.582678628],[-71.456162888,41.582631811],[-71.456153035,41.582608343],[-71.456082355,41.58258396],[-71.456007009,41.582567465],[-71.455925969,41.582548863],[-71.455844986,41.582536689],[-71.455759455,41.58253741],[-71.455662707,41.58255034],[-71.455561264,41.582568299],[-71.455471185,41.582583313],[-71.455412421,41.582594496],[-71.455321544,41.582617376],[-71.455222137,41.582642494],[-71.455143595,41.582668123],[-71.455068978,41.582698694],[-71.455010504,41.582730551],[-71.454958105,41.582786653],[-71.454901899,41.582842067],[-71.454825304,41.582869823],[-71.454746791,41.582895429],[-71.454744205,41.582978239],[-71.454737464,41.583035388],[-71.454703185,41.583096322],[-71.454651787,41.583157409],[-71.454590915,41.583219294],[-71.454527152,41.583279073],[-71.454463302,41.583330961],[-71.454406005,41.583377112],[-71.454344101,41.583433279],[-71.454321185,41.583490558],[-71.454330907,41.583569668],[-71.454358661,41.583648648],[-71.454375678,41.583707018],[-71.45438508,41.583764036],[-71.454381461,41.583842568],[-71.454350931,41.583898473],[-71.454282952,41.583931149],[-71.454224303,41.583948781],[-71.454113805,41.583932568],[-71.454081328,41.583856491],[-71.454070893,41.583794487],[-71.454055796,41.583736072],[-71.454032939,41.583667042],[-71.454000897,41.583620947],[-71.453866612,41.583602758],[-71.453792473,41.583602659],[-71.453711606,41.583596201],[-71.453626756,41.583579083],[-71.453551237,41.583549711],[-71.453485104,41.583513161],[-71.453427415,41.583467947],[-71.453380116,41.583417683],[-71.453343264,41.583368727],[-71.453302664,41.583321965],[-71.453251704,41.583281031],[-71.453163673,41.583241797],[-71.453072069,41.583215413],[-71.452996434,41.58317751],[-71.45292295,41.583156006],[-71.45286754,41.583202843],[-71.452839245,41.583283698],[-71.452833475,41.583342997],[-71.452834549,41.583416478],[-71.452856229,41.58346911],[-71.452923872,41.583480686],[-71.452977682,41.583456672],[-71.453043379,41.583463309],[-71.453071235,41.583483743],[-71.453082947,41.583505085],[-71.453074751,41.583507025],[-71.453011902,41.583522048],[-71.452936424,41.583560507],[-71.452865556,41.583585383],[-71.452792157,41.583572385],[-71.452729003,41.583544367],[-71.45267983,41.583559761],[-71.452626396,41.583611584],[-71.452584355,41.583660485],[-71.45254323,41.5837079],[-71.452487194,41.583776188],[-71.452436856,41.583842924],[-71.452373205,41.583911278],[-71.452320775,41.583963765],[-71.452260699,41.584015654],[-71.452196729,41.58406187],[-71.452136567,41.584107287],[-71.452097389,41.584157584],[-71.452093594,41.584222578],[-71.452094637,41.584295349],[-71.45209571,41.58436883],[-71.452086305,41.584440271],[-71.452055831,41.584500451],[-71.452013788,41.584551478],[-71.451970743,41.584598229],[-71.451942274,41.584665499],[-71.451930065,41.584739821],[-71.451919483,41.584797013],[-71.451897539,41.584854978],[-71.451866976,41.584910928],[-71.451829889,41.584974718],[-71.451783298,41.585037224],[-71.451725052,41.585085478],[-71.451655211,41.585118884],[-71.451584339,41.585145886],[-71.451503132,41.585184364],[-71.451478324,41.585243083],[-71.451477988,41.5852845],[-71.451448909,41.585311131],[-71.451389719,41.585357257],[-71.451334162,41.585392704],[-71.451272022,41.585433157],[-71.451209912,41.585474364],[-71.451160109,41.585514022],[-71.451126596,41.585562812],[-71.451107456,41.58561721],[-71.45109401,41.585674402],[-71.451082513,41.585732303],[-71.45107007,41.585791667],[-71.451057687,41.585853821],[-71.451047191,41.585916731],[-71.451043337,41.585978134],[-71.451044293,41.586043039],[-71.451040351,41.586099434],[-71.451004264,41.586167524],[-71.450966057,41.586219262],[-71.450917459,41.586276026],[-71.450868919,41.586336359],[-71.450840389,41.58640013],[-71.450828034,41.586465143],[-71.450827071,41.58652936],[-71.45082794,41.586588593],[-71.450829098,41.586668546],[-71.450825216,41.586726359],[-71.450803211,41.586782197],[-71.450760279,41.586836791],[-71.450702148,41.58689147],[-71.450637345,41.586945529],[-71.450574432,41.586998148],[-71.450516184,41.587045738],[-71.45046369,41.58709612],[-71.450423594,41.587147124],[-71.450375997,41.587208166],[-71.450311849,41.587241505],[-71.450237484,41.587292083],[-71.450194783,41.587363098],[-71.450180423,41.587418848],[-71.45018533,41.587495189],[-71.450204232,41.587553537],[-71.450239339,41.587613174],[-71.450264083,41.587680764],[-71.450252845,41.587757921],[-71.450210087,41.587823218],[-71.450132771,41.587867392],[-71.450062753,41.587887944],[-71.450035358,41.587901014],[-71.450051311,41.587951562],[-71.450093146,41.588017605],[-71.450138904,41.588090716],[-71.450142606,41.588149218],[-71.450139754,41.588214167],[-71.450129344,41.588282039],[-71.450109286,41.588340714],[-71.450076002,41.588405238],[-71.450072252,41.588408804],[-71.450029232,41.588456994],[-71.449971099,41.588511673],[-71.449922585,41.588574155],[-71.449885349,41.588628019],[-71.449850031,41.588682525],[-71.449808303,41.588754226],[-71.449757609,41.588798891],[-71.449697441,41.588844353],[-71.449631605,41.588892007],[-71.449561017,41.588939659],[-71.449497985,41.588985165],[-71.449453962,41.58903045],[-71.449436423,41.589059075],[-71.449420532,41.58908498],[-71.44941447,41.589124267],[-71.449436372,41.589124505],[-71.449452487,41.589124695],[-71.44952566,41.589121914],[-71.449536919,41.58917747],[-71.449536813,41.589235284],[-71.449544438,41.589301609],[-71.449587217,41.589366875],[-71.449643848,41.589404978],[-71.449719402,41.589436434],[-71.449801568,41.589465034],[-71.44987904,41.589497931],[-71.449948067,41.58953947],[-71.45000679,41.589591066],[-71.450052319,41.58964778],[-71.450084621,41.58971176],[-71.450108421,41.589780791],[-71.450122775,41.589851304],[-71.450128569,41.589923346],[-71.450129611,41.589993991],[-71.450130625,41.590062463],[-71.450131549,41.590127413],[-71.450122914,41.590186001],[-71.450126558,41.590240204],[-71.450147322,41.590295694],[-71.4501589,41.590371924],[-71.450198442,41.590410865],[-71.450289911,41.590426524],[-71.450359596,41.590445925],[-71.450420953,41.590480416],[-71.450472919,41.590525629],[-71.450527779,41.590570843],[-71.450592057,41.590611007],[-71.450652524,41.590654028],[-71.450699826,41.590703583],[-71.450736739,41.590756131],[-71.450797556,41.590819849],[-71.450859318,41.590883544],[-71.450893656,41.590956764],[-71.450907153,41.591035167],[-71.450925374,41.591109959],[-71.450951007,41.591173227],[-71.450999197,41.591217797],[-71.451032492,41.591219641],[-71.451110505,41.591225415],[-71.45112671,41.591227411],[-71.451061673,41.591265073],[-71.4510072,41.591310468],[-71.450970821,41.591357884],[-71.450946038,41.591419439],[-71.450929875,41.591482415],[-71.450886024,41.591540554],[-71.450793474,41.591581291],[-71.450714777,41.591594087],[-71.450629204,41.591594759],[-71.450547528,41.591597583],[-71.450472607,41.591611043],[-71.450400638,41.591629491],[-71.450328698,41.591649356],[-71.450264428,41.591676978],[-71.450211818,41.591715971],[-71.450165846,41.59175842],[-71.450126603,41.591805148],[-71.450091197,41.591853228],[-71.450047143,41.591896409],[-71.45000309,41.591939591],[-71.449988959,41.592013202],[-71.45003847,41.592082747],[-71.45011228,41.592127809],[-71.450140139,41.592148267],[-71.450169609,41.592212246],[-71.450198847,41.592261954],[-71.450202665,41.592328301],[-71.450253949,41.592390688],[-71.450287284,41.592460341],[-71.450294168,41.592540936],[-71.450262001,41.59261614],[-71.450210389,41.592662886],[-71.450145496,41.592708414],[-71.450081458,41.592751016],[-71.450014557,41.592792266],[-71.449952527,41.592837727],[-71.4499002,41.592901647],[-71.449893569,41.592968104],[-71.449886792,41.593024543],[-71.449866791,41.593085344],[-71.44984673,41.593144728],[-71.449831335,41.593197664],[-71.449804805,41.593269967],[-71.449792505,41.593339302],[-71.449820944,41.593397586],[-71.449910933,41.593441786],[-71.449992102,41.593466818],[-71.450081773,41.593488194],[-71.450178087,41.59350811],[-71.450263979,41.593531634],[-71.450335702,41.593560344],[-71.450399895,41.593594744],[-71.450459336,41.593629212],[-71.450523847,41.593685773],[-71.450560991,41.593756113],[-71.45057606,41.593810229],[-71.45058549,41.593869374],[-71.450587243,41.593927875],[-71.450588172,41.593987817],[-71.450583313,41.594047093],[-71.450565084,41.594102178],[-71.450531595,41.594151699],[-71.450456366,41.594205844],[-71.450358827,41.594233086],[-71.450271537,41.594243042],[-71.450202456,41.594265013],[-71.450146861,41.594299728],[-71.450105727,41.594347187],[-71.450082863,41.594407301],[-71.450083817,41.594472937],[-71.450093274,41.594535673],[-71.450100699,41.594586995],[-71.450124384,41.59464745],[-71.450152853,41.59470857],[-71.450170841,41.5947698],[-71.450155563,41.594829185],[-71.450079241,41.594876881],[-71.450000713,41.594901798],[-71.449925047,41.594927425],[-71.449855965,41.594949372],[-71.449751581,41.594962362],[-71.449677457,41.594964411],[-71.449604279,41.594965019],[-71.449517786,41.594967131],[-71.449444752,41.594977733],[-71.449431741,41.594981798],[-71.449386062,41.594996049],[-71.449402258,41.59493241],[-71.449398469,41.594868922],[-71.449372924,41.594810616],[-71.449314311,41.594769014],[-71.449249665,41.594767384],[-71.449177063,41.594810118],[-71.449113228,41.594862004],[-71.449019409,41.594882042],[-71.448945227,41.594881209],[-71.448872048,41.594883257],[-71.448771558,41.59490192],[-71.448675937,41.594929115],[-71.448583035,41.594945562],[-71.448492445,41.594927729],[-71.448416886,41.594895587],[-71.448335745,41.594871949],[-71.448261187,41.594845455],[-71.448203331,41.594810278],[-71.448169082,41.594742112],[-71.448158966,41.594705882],[-71.448155935,41.594686167],[-71.44815763,41.594662497],[-71.448174308,41.594645467],[-71.448202984,41.594634731],[-71.448279142,41.594641215],[-71.448346197,41.594677791],[-71.448412598,41.594732913],[-71.44847605,41.594780167],[-71.448560054,41.59480447],[-71.448655077,41.594801539],[-71.44873458,41.594778042],[-71.44880721,41.594738944],[-71.448900055,41.594716024],[-71.448991955,41.5946953],[-71.449092414,41.594675196],[-71.449153139,41.594666167],[-71.449219933,41.594686298],[-71.449309694,41.594712684],[-71.449379411,41.594734944],[-71.449431918,41.594754932],[-71.449447268,41.594760771],[-71.449517103,41.594788748],[-71.449590686,41.594815972],[-71.449663295,41.594841069],[-71.449734729,41.594850477],[-71.449807879,41.594847033],[-71.449909488,41.594838318],[-71.449995719,41.594819076],[-71.450061791,41.594788528],[-71.450077332,41.594744877],[-71.450036496,41.594682425],[-71.449995746,41.594626377],[-71.449959663,41.594563882],[-71.4499482,41.594495451],[-71.449948132,41.594424807],[-71.449957656,41.594361942],[-71.449981553,41.594306082],[-71.450016015,41.594258002],[-71.450062877,41.594210545],[-71.450117352,41.594166522],[-71.450175751,41.59412895],[-71.450252929,41.594076223],[-71.450316823,41.594024314],[-71.450378914,41.593980294],[-71.450402927,41.593931546],[-71.450385911,41.593873885],[-71.450347793,41.593803544],[-71.450294648,41.59374262],[-71.45022868,41.593717457],[-71.45013732,41.593712501],[-71.450064916,41.593699548],[-71.449979138,41.593684554],[-71.449891384,41.593666014],[-71.449812163,41.59364311],[-71.449743245,41.593611566],[-71.449682744,41.593569939],[-71.449629773,41.593521867],[-71.449589171,41.593472977],[-71.449552056,41.593406182],[-71.449550245,41.593346262],[-71.44957125,41.593287588],[-71.449606252,41.593211654],[-71.449625397,41.593155837],[-71.449626477,41.593098732],[-71.449625638,41.593040941],[-71.449624509,41.59296531],[-71.449625388,41.592893226],[-71.44964994,41.592817378],[-71.449673895,41.592765086],[-71.449712733,41.592691966],[-71.449753577,41.592623855],[-71.44979259,41.592560752],[-71.449820324,41.592506998],[-71.449811752,41.592442845],[-71.449762358,41.592379726],[-71.449719779,41.592326558],[-71.449673334,41.592271285],[-71.449626946,41.59222102],[-71.4495728,41.592157213],[-71.449568953,41.592090158],[-71.449582054,41.592009411],[-71.449616112,41.591932767],[-71.44965976,41.591863217],[-71.449704352,41.591792889],[-71.44975656,41.591723274],[-71.449801502,41.591674376],[-71.449851136,41.591624038],[-71.449906469,41.591571462],[-71.449960797,41.591516759],[-71.450012263,41.591460682],[-71.450060896,41.591405336],[-71.450113363,41.591354245],[-71.450173534,41.591308075],[-71.450234735,41.591268331],[-71.450294047,41.591229318],[-71.450345773,41.591191057],[-71.450385816,41.591133649],[-71.450342032,41.591064769],[-71.450280472,41.591015344],[-71.450197243,41.590979632],[-71.450130363,41.590956619],[-71.450038035,41.59094814],[-71.44995954,41.590975138],[-71.449867472,41.590984474],[-71.449777717,41.590957357],[-71.449721797,41.590903612],[-71.449675979,41.590826956],[-71.449630596,41.590778087],[-71.449573048,41.590742156],[-71.449505224,41.590719851],[-71.449435137,41.590707151],[-71.449358472,41.590693235],[-71.449277364,41.590672479],[-71.449199005,41.590643172],[-71.449132809,41.590603052],[-71.449079812,41.590552807],[-71.449036202,41.590496803],[-71.448997432,41.590445741],[-71.448951106,41.590396893],[-71.448892469,41.590351677],[-71.448835809,41.59031147],[-71.448765518,41.590250674],[-71.448727634,41.590196022],[-71.448696394,41.590138491],[-71.448663321,41.590088117],[-71.448618654,41.590020677],[-71.448627061,41.589944937],[-71.448649953,41.589888414],[-71.448668156,41.589829761],[-71.448685323,41.589769667],[-71.44870444,41.58971097],[-71.448724501,41.589651586],[-71.448747394,41.589593599],[-71.448764649,41.589537782],[-71.448762867,41.58947999],[-71.448744909,41.589422373],[-71.448705196,41.589371288],[-71.448647561,41.589331789],[-71.448575788,41.589297452],[-71.448503011,41.589261629],[-71.448441656,41.589226451],[-71.448388544,41.589169802],[-71.448375225,41.589102125],[-71.448377906,41.589025718],[-71.448408271,41.588956963],[-71.448469153,41.588895128],[-71.448541603,41.588843887],[-71.448598023,41.588802015],[-71.448634315,41.588748928],[-71.448662789,41.588682321],[-71.448681019,41.588627191],[-71.448706863,41.588574168],[-71.448746047,41.588523209],[-71.448783312,41.588472226],[-71.448806032,41.588401386],[-71.448786928,41.588329453],[-71.448740285,41.588259908],[-71.448681564,41.588208311],[-71.448602349,41.588186115],[-71.448499663,41.588184125],[-71.448398923,41.588186367],[-71.448311467,41.588185642],[-71.448235288,41.588176277],[-71.448176922,41.588215312],[-71.448157865,41.588276113],[-71.448148483,41.58835183],[-71.448134062,41.588405499],[-71.448101665,41.588462109],[-71.448057755,41.588518143],[-71.448000507,41.588567127],[-71.447928917,41.588609815],[-71.44786305,41.588656027],[-71.447812414,41.588704259],[-71.447753419,41.588766118],[-71.447705732,41.588820023],[-71.447651259,41.58886544],[-71.447578376,41.588886012],[-71.447499593,41.588894506],[-71.447522576,41.588840087],[-71.447551081,41.588774213],[-71.447582247,41.588695464],[-71.447597469,41.588631093],[-71.447616413,41.588560297],[-71.44764005,41.588487308],[-71.447660824,41.588412946],[-71.447689244,41.588339181],[-71.447721527,41.588271845],[-71.44776048,41.588206616],[-71.447800465,41.588145595],[-71.447839563,41.588088919],[-71.447884446,41.58803643],[-71.447930328,41.587990438],[-71.447999915,41.587938464],[-71.448089858,41.587914903],[-71.448198153,41.587911132],[-71.448288357,41.587903969],[-71.448341227,41.587880711],[-71.448350002,41.587764309],[-71.44834905,41.587697964],[-71.448358487,41.58762865],[-71.448378402,41.5875614],[-71.448408795,41.587494085],[-71.448443084,41.587431712],[-71.44848032,41.587379312],[-71.448555514,41.587322331],[-71.448629196,41.587290324],[-71.448716189,41.58725894],[-71.44880138,41.587233958],[-71.44888657,41.587209709],[-71.448968898,41.587184086],[-71.449047388,41.587157729],[-71.449115489,41.5871329],[-71.449176514,41.587081013],[-71.449176331,41.587003942],[-71.449151673,41.586944219],[-71.449124213,41.586885203],[-71.449091084,41.586829089],[-71.449058841,41.586770849],[-71.449047526,41.586710994],[-71.449047575,41.586648903],[-71.449046679,41.586586857],[-71.449045754,41.586524057],[-71.449055248,41.586459042],[-71.449075192,41.586391792],[-71.449090297,41.58631889],[-71.449103453,41.586245278],[-71.4491177,41.58617878],[-71.449117777,41.58611957],[-71.449116968,41.586063928],[-71.449133876,41.585983846],[-71.449156767,41.585925836],[-71.449174937,41.585867893],[-71.449191247,41.585812098],[-71.4491933,41.585757852],[-71.449171333,41.585685986],[-71.449169348,41.585614609],[-71.449188405,41.585551657],[-71.449231365,41.585499922],[-71.449296282,41.585455149],[-71.449351725,41.585411173],[-71.449397663,41.585367992],[-71.449410453,41.585332893],[-71.44937776,41.585305343],[-71.449364815,41.585264767],[-71.449385672,41.585198225],[-71.449410281,41.585124527],[-71.449422464,41.58504808],[-71.449418444,41.58496888],[-71.449417606,41.584910425],[-71.44941671,41.58484902],[-71.449415698,41.584779816],[-71.449414656,41.584709171],[-71.449416507,41.584640654],[-71.449416469,41.58457216],[-71.449415516,41.584505792],[-71.449414561,41.584441596],[-71.449415612,41.58438305],[-71.449431603,41.584305827],[-71.449440173,41.584291148],[-71.449470552,41.584239156],[-71.449528537,41.584175901],[-71.449571266,41.584106328],[-71.449576066,41.584044902],[-71.449574111,41.583973593],[-71.449565394,41.58390155],[-71.449551132,41.583832455],[-71.449538755,41.583766905],[-71.449536886,41.583703418],[-71.449536905,41.583639177],[-71.449540672,41.583573497],[-71.449547334,41.583507064],[-71.449552992,41.583438526],[-71.449555757,41.583368569],[-71.449555632,41.583295089],[-71.449555449,41.583217286],[-71.449562908,41.583143009],[-71.449579901,41.583069376],[-71.449598783,41.582995012],[-71.449619554,41.582920604],[-71.449639437,41.58285054],[-71.449660323,41.582784684],[-71.44968602,41.582720249],[-71.449717411,41.582658629],[-71.449755531,41.582599779],[-71.449802325,41.582549463],[-71.449856819,41.582507659],[-71.449924741,41.582471394],[-71.45000606,41.582442888],[-71.450088407,41.58242225],[-71.450164262,41.582408767],[-71.450242033,41.582398143],[-71.450315198,41.582396094],[-71.450411176,41.582396044],[-71.450487859,41.582374694],[-71.450498191,41.582366053],[-71.450557322,41.58231421],[-71.45058213,41.582256201],[-71.450600981,41.582180396],[-71.450624902,41.582125931],[-71.450655406,41.582067901],[-71.450688745,41.582006236],[-71.450722968,41.581943176],[-71.450754388,41.581881555],[-71.450776333,41.581822836],[-71.450780158,41.581758596],[-71.450774364,41.581687995],[-71.4507619,41.58161531],[-71.450743828,41.581548386],[-71.450727702,41.581485693],[-71.450719131,41.581420831],[-71.450714311,41.58135094],[-71.450713211,41.581276018],[-71.450712227,41.581207523],[-71.4507113,41.581145454],[-71.450708513,41.581084826],[-71.450691502,41.581025014],[-71.450657343,41.580963938],[-71.450607956,41.580900819],[-71.450546262,41.5808414],[-71.450476068,41.58078415],[-71.450403983,41.580729804],[-71.45033665,41.580675436],[-71.450273095,41.580619584],[-71.450207682,41.580564463],[-71.450143212,41.580510737],[-71.450085499,41.580463394],[-71.450035429,41.580419554],[-71.449979459,41.580362928],[-71.44993285,41.580294093],[-71.449896571,41.580218744],[-71.449860583,41.58016128],[-71.449818011,41.580110262],[-71.449753777,41.580068657],[-71.449683813,41.58003],[-71.449624385,41.579996218],[-71.449544033,41.579960483],[-71.449476249,41.579939665],[-71.449443628,41.579940359],[-71.449424956,41.579940763],[-71.449385661,41.579984633],[-71.449356188,41.580049089],[-71.449315468,41.580124358],[-71.449265273,41.580201818],[-71.44921024,41.580272233],[-71.449146531,41.580336994],[-71.449078131,41.580401754],[-71.449011589,41.580467246],[-71.448957471,41.580536197],[-71.448921443,41.580607854],[-71.448887217,41.580672354],[-71.448869107,41.580733202],[-71.448854804,41.580794669],[-71.4488176,41.580850615],[-71.448756378,41.580889649],[-71.448680554,41.580904549],[-71.448600722,41.580904491],[-71.448521863,41.58090585],[-71.448444952,41.580909338],[-71.448371018,41.580922089],[-71.448278366,41.580955666],[-71.448227022,41.581020318],[-71.448224997,41.581076691],[-71.448237169,41.581130142],[-71.448312171,41.581190186],[-71.448391521,41.581223085],[-71.448470988,41.581261656],[-71.448536315,41.581309643],[-71.448588389,41.581361306],[-71.448624348,41.581415958],[-71.448625158,41.581470891],[-71.448581313,41.581527634],[-71.448487398,41.581539827],[-71.448412942,41.581518319],[-71.448343123,41.581488946],[-71.448267466,41.58144745],[-71.448193272,41.581442362],[-71.448102652,41.581485156],[-71.448044291,41.5815249],[-71.447988938,41.581573885],[-71.447945006,41.581624933],[-71.447901017,41.581670949],[-71.44782385,41.581725092],[-71.447719719,41.581753061],[-71.447634189,41.581753067],[-71.447541931,41.581749526],[-71.447447784,41.581746762],[-71.447359451,41.581748917],[-71.447276927,41.581761],[-71.447201304,41.581790147],[-71.447136449,41.58183636],[-71.447093546,41.581893811],[-71.44706407,41.581958267],[-71.447040348,41.582026248],[-71.447013878,41.582101385],[-71.446982685,41.582179448],[-71.446959106,41.5822574],[-71.446934556,41.582332561],[-71.446908855,41.582397682],[-71.446881355,41.582466415],[-71.446840544,41.582535257],[-71.446788311,41.582602767],[-71.446732269,41.582672447],[-71.446678207,41.582742129],[-71.446621193,41.58280895],[-71.446498606,41.582940531],[-71.446435634,41.582991021],[-71.446373408,41.583024336],[-71.446308231,41.58305271],[-71.446227855,41.583080504],[-71.446139978,41.583117603],[-71.446056027,41.583159667],[-71.445980544,41.583199562],[-71.445919349,41.583237863],[-71.445862046,41.583284719],[-71.445814159,41.583325816],[-71.445682261,41.583406095],[-71.445511656,41.583477276],[-71.44543728,41.583505576],[-71.445372073,41.583531914],[-71.445295903,41.583555433],[-71.445219829,41.583573441],[-71.445151884,41.583597033],[-71.445070262,41.583619772],[-71.444993177,41.583643977],[-71.44491704,41.583665415],[-71.44484188,41.583682097],[-71.444767538,41.583705594],[-71.444683079,41.583733843],[-71.444608669,41.583764224],[-71.444536151,41.583791198],[-71.444462623,41.583822974],[-71.444409068,41.583865852],[-71.44433926,41.583893513],[-71.444283941,41.583932937],[-71.444243047,41.583988261],[-71.444250613,41.58404457],[-71.444323289,41.584082157],[-71.444395084,41.584117617],[-71.444460418,41.584157876],[-71.444534105,41.584189289],[-71.444612493,41.584208331],[-71.444677957,41.584238276],[-71.444747828,41.584279933],[-71.444814956,41.584323623],[-71.444880254,41.584369371],[-71.444935374,41.58442122],[-71.444971204,41.584483237],[-71.444986898,41.584546524],[-71.444989734,41.584614494],[-71.444976125,41.584678889],[-71.444950729,41.58474051],[-71.444902555,41.584795763],[-71.44485448,41.584840061],[-71.444798085,41.584891148],[-71.444736434,41.58492572],[-71.444667506,41.58495544],[-71.444597697,41.584983125],[-71.44452531,41.584997726],[-71.444437325,41.585014973],[-71.444345651,41.585035626],[-71.444271371,41.585055029],[-71.444203487,41.585075167],[-71.444131886,41.585097339],[-71.444064033,41.585116082],[-71.443987764,41.585146461],[-71.443921643,41.585171403],[-71.443837408,41.585183871],[-71.443747923,41.585172987],[-71.443668715,41.585149782],[-71.443588597,41.585121796],[-71.443512069,41.585099986],[-71.443431852,41.585080233],[-71.443348045,41.585056316],[-71.443275174,41.58503181],[-71.443192215,41.585014113],[-71.443114707,41.584997083],[-71.443036318,41.584978703],[-71.442966253,41.584950081],[-71.44289808,41.584918075],[-71.442822566,41.584885975],[-71.442748843,41.584860758],[-71.442664089,41.584840294],[-71.442576529,41.584823898],[-71.442483454,41.584810221],[-71.442410385,41.584802889],[-71.442314502,41.584795363],[-71.442242346,41.584790067],[-71.442167449,41.58478406],[-71.442084328,41.584777317],[-71.442012271,41.584763102],[-71.441932901,41.584750895],[-71.441848933,41.584738663],[-71.441762124,41.58473464],[-71.441674366,41.584735396],[-71.4415839,41.584733406],[-71.441494382,41.584727346],[-71.441410378,41.584720557],[-71.441330518,41.584746107],[-71.441247948,41.584769575],[-71.441175562,41.584782802],[-71.441108458,41.584815288],[-71.441102318,41.584868091],[-71.441159261,41.584922001],[-71.441217215,41.584969074],[-71.441267795,41.585020236],[-71.441300065,41.585073264],[-71.441329465,41.585135256],[-71.441359873,41.585193795],[-71.441392927,41.585256475],[-71.441425133,41.585313665],[-71.44143443,41.58537416],[-71.441421792,41.585437891],[-71.441414638,41.585500322],[-71.441413815,41.585568244],[-71.441407573,41.585632733],[-71.441382993,41.585698448],[-71.441360338,41.585757303],[-71.441358634,41.585822526],[-71.441355167,41.5858829],[-71.441344293,41.585950063],[-71.441330807,41.586007619],[-71.441313667,41.586064487],[-71.441289086,41.586130202],[-71.441255761,41.586164969],[-71.441167155,41.5861582],[-71.441075706,41.586163071],[-71.440992383,41.586176246],[-71.440921659,41.586201824],[-71.440869958,41.586244724],[-71.440828245,41.586290419],[-71.440761272,41.586311264],[-71.440675894,41.586338801],[-71.440600928,41.586340363],[-71.440528705,41.586338496],[-71.440444304,41.586363998],[-71.440362679,41.58638543],[-71.440279909,41.586425318],[-71.440214565,41.586462653],[-71.440130949,41.586495679],[-71.440063845,41.586526106],[-71.440041321,41.586539953],[-71.44000307,41.586563466],[-71.439942231,41.586604211],[-71.439880445,41.586648409],[-71.439828773,41.586691331],[-71.439774332,41.586730752],[-71.439716299,41.586768091],[-71.439648964,41.586817065],[-71.439600005,41.58685793],[-71.439554666,41.586902891],[-71.439496434,41.586956741],[-71.439431841,41.587004985],[-71.439362711,41.587051191],[-71.43930908,41.587103008],[-71.439265472,41.58715419],[-71.439187468,41.587178368],[-71.439117721,41.587199851],[-71.43903322,41.587232213],[-71.438964385,41.587255801],[-71.438891765,41.587286842],[-71.438827467,41.58731249],[-71.438781709,41.587316994],[-71.438803455,41.587256058],[-71.438848892,41.587204191],[-71.438897952,41.587154407],[-71.43894982,41.587098496],[-71.439012651,41.58704538],[-71.43907999,41.586993685],[-71.439142723,41.58694743],[-71.439203596,41.586903255],[-71.439250926,41.586845946],[-71.439299172,41.586786556],[-71.439352899,41.58672925],[-71.43941397,41.586668563],[-71.439470438,41.586611305],[-71.439525047,41.586555394],[-71.439582329,41.586506369],[-71.439632302,41.586456585],[-71.439680416,41.586407509],[-71.439743215,41.586355102],[-71.43980216,41.5863198],[-71.43986662,41.58628251],[-71.439928209,41.586253406],[-71.439981737,41.586212612],[-71.440033503,41.586166259],[-71.440041705,41.586157573],[-71.440084393,41.586112428],[-71.440138119,41.58605375],[-71.440181759,41.585999823],[-71.440220766,41.585948592],[-71.440249788,41.585891136],[-71.440270648,41.585830885],[-71.44028048,41.585772619],[-71.440293118,41.585710237],[-71.440301154,41.585650574],[-71.440308373,41.58558405],[-71.440328354,41.585519705],[-71.440357506,41.585451912],[-71.440393935,41.585388331],[-71.440423023,41.585324722],[-71.440450248,41.58526587],[-71.440481192,41.585203635],[-71.440508451,41.585141352],[-71.440529313,41.585078334],[-71.440547499,41.585011175],[-71.44056748,41.584946145],[-71.440589289,41.584880383],[-71.440597358,41.584817953],[-71.44058904,41.584754119],[-71.440548516,41.5846996],[-71.440488864,41.584644957],[-71.440421771,41.584598519],[-71.440366624,41.584547377],[-71.44031895,41.584484575],[-71.440259269,41.584428559],[-71.440199585,41.58437602],[-71.440142578,41.584326866],[-71.440096601,41.584273716],[-71.440071742,41.584211795],[-71.440060555,41.584154752],[-71.440047607,41.584090825],[-71.440043627,41.584080325],[-71.440024575,41.584030254],[-71.440004284,41.583968335],[-71.439992282,41.583903745],[-71.439978421,41.58383984],[-71.439959141,41.583772456],[-71.439944399,41.583705738],[-71.439937002,41.583635684],[-71.43993877,41.583568448],[-71.439940478,41.583499794],[-71.439944987,41.583433246],[-71.439958606,41.583364027],[-71.439969449,41.5832989],[-71.439979443,41.583229656],[-71.439991167,41.583166564],[-71.43999558,41.583104819],[-71.439983416,41.583051206],[-71.43995937,41.582999577],[-71.439950078,41.582935034],[-71.439954326,41.58288701],[-71.43989262,41.582848808],[-71.439825531,41.582801684],[-71.43975942,41.582749758],[-71.439717034,41.582702785],[-71.439670012,41.582661297],[-71.439615715,41.582615621],[-71.439555937,41.582567838],[-71.43951626,41.582522261],[-71.439492215,41.582470631],[-71.439474568,41.582417679],[-71.439455256,41.582353039],[-71.439436794,41.582291784],[-71.439401816,41.582238022],[-71.439329895,41.582211433],[-71.439255197,41.582191748],[-71.439173806,41.582195296],[-71.43914633,41.582197156],[-71.439146286,41.582179272],[-71.43914611,41.582140188],[-71.439155256,41.582066118],[-71.439166201,41.581990723],[-71.43917166,41.581918],[-71.439171407,41.58186309],[-71.439164108,41.581786839],[-71.439138502,41.581711149],[-71.439106365,41.581648493],[-71.439078699,41.581593385],[-71.439043791,41.581531367],[-71.438984794,41.581496642],[-71.438910033,41.581479656],[-71.438862881,41.581448483],[-71.438896041,41.581426728],[-71.438939968,41.581421537],[-71.438894631,41.581242078],[-71.43877405,41.58123577],[-71.43874175,41.581186126],[-71.438698451,41.581139175],[-71.438657015,41.581087444],[-71.438629349,41.581033],[-71.438600805,41.580973089],[-71.438570564,41.580904235],[-71.438536603,41.580839496],[-71.438519023,41.580781031],[-71.438511492,41.580724699],[-71.438506705,41.580665625],[-71.438507432,41.580605912],[-71.438515435,41.58054904],[-71.438538125,41.580486709],[-71.438585991,41.580309952],[-71.438607117,41.580226398],[-71.438810825,41.579708166],[-71.438889282,41.579646254],[-71.438957162,41.579626119],[-71.439038712,41.579611571],[-71.439124832,41.579595699],[-71.439201715,41.579588673],[-71.439253374,41.579586231],[-71.439264894,41.579579513],[-71.43926088,41.57957233],[-71.43920218,41.579548194],[-71.439130359,41.579516116],[-71.43907427,41.57946838],[-71.439032999,41.579403591],[-71.439003605,41.579340913],[-71.438987819,41.57928524],[-71.43897843,41.579228861],[-71.438969039,41.579174586],[-71.438965165,41.57911693],[-71.438960508,41.579048227],[-71.43895115,41.578991894],[-71.438936312,41.578932768],[-71.438927019,41.578870947],[-71.438916716,41.578815962],[-71.438909638,41.578795285],[-71.438872946,41.578429922],[-71.438874522,41.578374327],[-71.438873389,41.578315277],[-71.438868633,41.578256225],[-71.438866683,41.578191708],[-71.438868256,41.578138858],[-71.438870842,41.578077111],[-71.43888064,41.578022938],[-71.438896866,41.57796607],[-71.438923274,41.577899693],[-71.438957678,41.577849146],[-71.439004935,41.577797989],[-71.439037278,41.577768024],[-71.439072594,41.577718827],[-71.439111563,41.577671737],[-71.439149715,41.577617761],[-71.439189598,41.577570031],[-71.439218616,41.577513238],[-71.439200122,41.577455459],[-71.439158653,41.577408486],[-71.439095158,41.577366898],[-71.439045881,41.577331653],[-71.439038972,41.577326686],[-71.438988301,41.577284465],[-71.438929506,41.57723396],[-71.438869798,41.577182106],[-71.438810938,41.577135009],[-71.438745714,41.577087222],[-71.438681373,41.577040099],[-71.43862062,41.576999199],[-71.438558953,41.576958275],[-71.438500972,41.576916004],[-71.438444852,41.576871698],[-71.438389547,41.576834276],[-71.438332382,41.576799552],[-71.438310168,41.576747924],[-71.438291642,41.57669218],[-71.438275955,41.576629623],[-71.438260236,41.576569102],[-71.438247193,41.57651343],[-71.438230627,41.576447442],[-71.438223097,41.576390401],[-71.438215538,41.57633272],[-71.438208074,41.576271539],[-71.438200645,41.576204916],[-71.438199835,41.576191354],[-71.438196837,41.576141771],[-71.438192181,41.576073777],[-71.438184719,41.576009921],[-71.43817458,41.57594325],[-71.438164343,41.575883486],[-71.438154109,41.575820246],[-71.438142956,41.575761854],[-71.438126359,41.575696529],[-71.438109759,41.575634658],[-71.438095053,41.575565904],[-71.438085798,41.575498593],[-71.43807752,41.575427807],[-71.438067351,41.575361182],[-71.438052676,41.575291765],[-71.438040679,41.575225093],[-71.438036872,41.575161239],[-71.438027611,41.57510079],[-71.438018257,41.57504098],[-71.438008022,41.574979135],[-71.438000524,41.574921431],[-71.437992116,41.574860296],[-71.437982728,41.574804649],[-71.437977091,41.574742829],[-71.437969596,41.57468238],[-71.437964841,41.574623328],[-71.437959141,41.574564253],[-71.437956506,41.574549226],[-71.437949721,41.574510664],[-71.437941278,41.574453646],[-71.437936557,41.574390454],[-71.437927168,41.574336156],[-71.437899142,41.574311259],[-71.437878644,41.574344066],[-71.437880658,41.574403803],[-71.437884467,41.574464935],[-71.437891829,41.574537734],[-71.437893676,41.574549192],[-71.437902879,41.574606417],[-71.437912237,41.574662064],[-71.437920612,41.574725967],[-71.437930748,41.574795359],[-71.437943626,41.574864089],[-71.437955756,41.574919074],[-71.437968799,41.574974769],[-71.437980729,41.575046906],[-71.437988227,41.57510461],[-71.437995559,41.575176745],[-71.438004914,41.575235846],[-71.438018705,41.575305263],[-71.438028029,41.57536434],[-71.438039048,41.575434419],[-71.438046576,41.575492809],[-71.438058508,41.575563574],[-71.438065121,41.57562265],[-71.438073596,41.57567761],[-71.438081127,41.575733256],[-71.438088654,41.575792356],[-71.438098044,41.575845967],[-71.4381074,41.575904381],[-71.438118449,41.575974437],[-71.438129635,41.576030131],[-71.438141599,41.576099524],[-71.438155358,41.576170999],[-71.438158902,41.576191309],[-71.438167323,41.576239752],[-71.438181995,41.576311181],[-71.43819308,41.57637648],[-71.438198649,41.576445824],[-71.438206078,41.576511761],[-71.438215301,41.576581153],[-71.438223612,41.576649172],[-71.438232803,41.576720644],[-71.438243855,41.576788642],[-71.438254873,41.576860093],[-71.438264196,41.576921251],[-71.438264417,41.576976847],[-71.438251878,41.577030333],[-71.438224753,41.577082255],[-71.438201117,41.577147307],[-71.438172099,41.57720339],[-71.438141253,41.577260182],[-71.438094907,41.577313375],[-71.438081459,41.577331137],[-71.438053098,41.577368674],[-71.438026787,41.577428213],[-71.437986804,41.577484245],[-71.437942156,41.577545694],[-71.437895776,41.577603026],[-71.437837551,41.577656167],[-71.437770257,41.577703059],[-71.437708413,41.577751395],[-71.437649341,41.577799],[-71.437603842,41.577857728],[-71.437556516,41.577915745],[-71.437507363,41.577973762],[-71.437444672,41.57801519],[-71.437375647,41.578055906],[-71.437304831,41.578090447],[-71.43725408,41.578130578],[-71.43722418,41.578183917],[-71.437185926,41.578246101],[-71.437141306,41.578308923],[-71.43710501,41.578361526],[-71.437059446,41.578424347],[-71.437014826,41.578486505],[-71.436966586,41.578543859],[-71.43691107,41.578598372],[-71.436846514,41.578646661],[-71.436790249,41.578687452],[-71.43674759,41.578737284],[-71.43669948,41.578786382],[-71.43664491,41.578837466],[-71.436594973,41.578886539],[-71.436539522,41.578934901],[-71.436487823,41.578979171],[-71.436435144,41.579027534],[-71.436374148,41.579077905],[-71.436323361,41.579122839],[-71.436256197,41.579158752],[-71.436193567,41.579198145],[-71.436155378,41.579254841],[-71.43611823,41.579305385],[-71.436068228,41.579357202],[-71.436016498,41.5794001],[-71.435952887,41.579445644],[-71.435890192,41.579489839],[-71.43583298,41.579532001],[-71.435777526,41.579583107],[-71.435728403,41.579638333],[-71.435685643,41.579696375],[-71.435643962,41.579742091],[-71.435589523,41.579782197],[-71.435537856,41.579823036],[-71.435485277,41.579861793],[-71.435427216,41.579900525],[-71.435376397,41.579945503],[-71.435331875,41.579998033],[-71.435287354,41.580050562],[-71.43524009,41.580103776],[-71.435191948,41.580152187],[-71.435142041,41.580198516],[-71.435098468,41.580246952],[-71.43504396,41.580294604],[-71.434990333,41.580345025],[-71.434938436,41.580401643],[-71.434878444,41.580450665],[-71.43481839,41.580501035],[-71.434763849,41.580551478],[-71.43470761,41.580594304],[-71.434648569,41.580636442],[-71.434595989,41.580675222],[-71.434541064,41.580683103],[-71.434460922,41.58065781],[-71.43438495,41.580666251],[-71.434325095,41.580700132],[-71.434264224,41.580745036],[-71.434214219,41.580796831],[-71.434169695,41.580850068],[-71.434137114,41.580900615],[-71.434158347,41.580957046],[-71.434173215,41.581012742],[-71.43417343,41.581071106],[-71.434153546,41.581125181],[-71.434105466,41.58117151],[-71.434054613,41.581217838],[-71.434026571,41.581267746],[-71.434011285,41.581322556],[-71.433996814,41.581385622],[-71.433976015,41.581441092],[-71.433938768,41.581497101],[-71.433899758,41.58154897],[-71.43385791,41.581605663],[-71.433810645,41.581657504],[-71.433748824,41.581706478],[-71.433698951,41.581747317],[-71.433652732,41.581789554],[-71.433589084,41.581837841],[-71.43353559,41.581875247],[-71.433470964,41.581926278],[-71.433402746,41.581974539],[-71.433346543,41.582010526],[-71.433292134,41.582047909],[-71.433232306,41.582083185],[-71.433164226,41.582116353],[-71.433098884,41.582152311],[-71.433029887,41.58218884],[-71.432957267,41.582222667],[-71.432885527,41.582259949],[-71.432808241,41.58229988],[-71.432733695,41.582339904],[-71.432657354,41.582378463],[-71.432582808,41.582419127],[-71.432509206,41.582459838],[-71.432428266,41.582498394],[-71.432354665,41.58253771],[-71.432273689,41.582580383],[-71.432192746,41.582620997],[-71.432109976,41.582660924],[-71.432029001,41.58270362],[-71.431952624,41.582746318],[-71.431871649,41.582787618],[-71.431804379,41.582831786],[-71.431734364,41.582877986],[-71.431663472,41.582918652],[-71.431598945,41.582960077],[-71.431527106,41.583003532],[-71.431458071,41.583044222],[-71.431389036,41.583085643],[-71.431314457,41.58312697],[-71.43124461,41.58315874],[-71.431171177,41.583181565],[-71.431101363,41.583210614],[-71.431031451,41.583245128],[-71.430955109,41.583283023],[-71.43088885,41.583319643],[-71.430826247,41.583356288],[-71.430767267,41.583393599],[-71.430711873,41.58343855],[-71.430660948,41.583491714],[-71.43063711,41.583508898],[-71.43061943,41.583521626],[-71.430537289,41.583512131],[-71.430482867,41.583474706],[-71.430428955,41.583472958],[-71.430354405,41.583514307],[-71.430306356,41.583555855],[-71.43025465,41.583598064],[-71.430199257,41.583641597],[-71.43014481,41.583683781],[-71.43008302,41.583727974],[-71.430013917,41.583774174],[-71.429942077,41.583816874],[-71.429863903,41.583856848],[-71.429787525,41.583898195],[-71.429706614,41.583934691],[-71.429626648,41.583970502],[-71.429621472,41.58397298],[-71.429621514,41.583974493],[-71.429548283,41.584008016],[-71.42947122,41.584044962],[-71.42939677,41.584077391],[-71.429396561,41.584077471],[-71.429396514,41.584077492],[-71.429320514,41.584106493],[-71.429097514,41.584206493],[-71.42903867,41.584231111],[-71.429023639,41.584237455],[-71.429021355,41.584238355],[-71.428890268,41.584293198],[-71.428877545,41.584298907],[-71.428838696,41.584314773],[-71.428803514,41.584329492],[-71.428792047,41.584332758],[-71.428721435,41.584354795],[-71.428645354,41.58437485],[-71.428590727,41.584381932],[-71.428564514,41.584385492],[-71.428509284,41.584397067],[-71.428474042,41.584404543],[-71.428397965,41.584420504],[-71.428320907,41.584441931],[-71.428259969,41.584457839],[-71.428246513,41.584461493],[-71.428153603,41.584482756],[-71.428068748,41.584503338],[-71.427993583,41.584520672],[-71.427922075,41.584536636],[-71.427863554,41.584549135],[-71.427844513,41.584553493],[-71.42780242,41.58456416],[-71.427769854,41.584572652],[-71.427746813,41.584578252],[-71.427698513,41.584590493],[-71.427668484,41.584596356],[-71.42762318,41.584605949],[-71.427529708,41.584623843],[-71.427463821,41.584641072],[-71.427458513,41.584642492],[-71.427458166,41.584642553],[-71.427366514,41.584658492],[-71.427214513,41.584696492],[-71.427149664,41.584716668],[-71.427145523,41.584717956],[-71.427061088,41.584745488],[-71.426989512,41.584766962],[-71.426946291,41.584776159],[-71.426889281,41.584788909],[-71.426828151,41.584804297],[-71.426751159,41.584820211],[-71.426676908,41.584836859],[-71.426660561,41.584839279],[-71.426526186,41.584862755],[-71.426510164,41.584865934],[-71.42647778,41.584873401],[-71.426396317,41.584893084],[-71.426361628,41.58490195],[-71.426290996,41.584922739],[-71.426205712,41.584944113],[-71.426124997,41.584966222],[-71.426067725,41.584980769],[-71.426046513,41.584986493],[-71.426029927,41.585011011],[-71.426023775,41.585020404],[-71.426023535,41.585020459],[-71.426023512,41.585020493],[-71.425966569,41.585033564],[-71.425204135,41.58520896],[-71.424921073,41.585144411],[-71.424859512,41.585130493],[-71.424729418,41.585083639],[-71.424598343,41.585036553],[-71.423535512,41.585416493],[-71.42343854,41.585448606],[-71.422790519,41.58566574],[-71.42263139,41.585715897],[-71.422617512,41.585720493],[-71.421645994,41.585722378],[-71.421069311,41.585723713],[-71.42084814,41.585718781],[-71.420554498,41.585718494],[-71.419954883,41.585718493],[-71.419888069,41.585718825],[-71.41907637,41.585722808],[-71.418112729,41.585727751],[-71.418112682,41.585727493],[-71.41811251,41.585727493],[-71.418109479,41.585710063],[-71.418108455,41.585704494],[-71.417915403,41.585708434],[-71.417912777,41.585708488],[-71.417907335,41.585724667],[-71.41790451,41.585733493],[-71.417904365,41.585733494],[-71.417904247,41.585733846],[-71.41736605,41.585736287],[-71.417133517,41.585737493],[-71.417144503,41.58610324],[-71.41714451,41.586103493],[-71.41713451,41.586265493],[-71.41710151,41.586361493],[-71.417101118,41.586361475],[-71.417101039,41.586361704],[-71.416995071,41.586356848],[-71.416997941,41.5863388],[-71.417011902,41.586237193],[-71.41701315,41.586225864],[-71.416988244,41.586169404],[-71.416967092,41.586106794],[-71.416931119,41.58605849],[-71.416890948,41.586052744],[-71.416834729,41.586090095],[-71.416777631,41.586124701],[-71.416759598,41.586131052],[-71.41663551,41.586176494],[-71.416634697,41.586176723],[-71.416556385,41.586200697],[-71.416483274,41.586219455],[-71.41647251,41.586222493],[-71.416332509,41.586252493],[-71.416278305,41.586261642],[-71.416262108,41.586264518],[-71.416249434,41.586266515],[-71.41578186,41.586345434],[-71.41578151,41.586345493],[-71.415781143,41.586345566],[-71.415564074,41.586388788],[-71.415555669,41.58639063],[-71.41555047,41.586391144],[-71.415359982,41.586415739],[-71.41532586,41.586420626],[-71.415271995,41.586427099],[-71.415160509,41.586441493],[-71.414841509,41.586492493],[-71.414778389,41.586500896],[-71.414758012,41.586503772],[-71.414677396,41.586514896],[-71.414617383,41.58652233],[-71.414558317,41.586530194],[-71.414518056,41.586535726],[-71.414445694,41.586547587],[-71.414366024,41.586557979],[-71.41435994,41.586558861],[-71.414138509,41.586591493],[-71.414053509,41.586592493],[-71.413991621,41.586578347],[-71.413983678,41.586576584],[-71.413920021,41.586548636],[-71.413858042,41.586526005],[-71.413845509,41.586521493],[-71.413840325,41.586519881],[-71.413762513,41.586496764],[-71.41367418,41.586470031],[-71.413604971,41.586447613],[-71.413517554,41.586419532],[-71.413510963,41.586417786],[-71.413448509,41.586401493],[-71.413426952,41.586394739],[-71.413364514,41.586375896],[-71.413312774,41.586358963],[-71.413298509,41.586354493],[-71.413278363,41.586346074],[-71.413231646,41.586326923],[-71.41321848,41.586322113],[-71.413104528,41.586283799],[-71.413080534,41.58627645],[-71.413051004,41.586265802],[-71.412946999,41.586230832],[-71.412933961,41.586226667],[-71.412886189,41.586210576],[-71.41286113,41.586202164],[-71.412790195,41.586172837],[-71.412745258,41.586156523],[-71.412680581,41.586133696],[-71.412637292,41.586118909],[-71.41255986,41.586095683],[-71.412483272,41.586079341],[-71.412420645,41.586063728],[-71.412406509,41.586060494],[-71.412349575,41.586043638],[-71.412329286,41.586037738],[-71.412308797,41.586031566],[-71.412254508,41.586015493],[-71.412104201,41.585987551],[-71.412098673,41.5859867],[-71.412019209,41.585979962],[-71.411959528,41.585977894],[-71.411944508,41.585977493],[-71.41189834,41.585984356],[-71.411871004,41.585988516],[-71.411794853,41.586009955],[-71.411738559,41.58603505],[-71.411713508,41.586046493],[-71.411687194,41.586061465],[-71.411655916,41.586079669],[-71.411616854,41.586132239],[-71.411589701,41.586185619],[-71.411604724,41.586225535],[-71.411656586,41.586235457],[-71.411670104,41.586229108],[-71.411722029,41.586204405],[-71.411754967,41.586177763],[-71.411773508,41.586162493],[-71.411797091,41.586148968],[-71.411841396,41.586123149],[-71.411949035,41.586108184],[-71.412036556,41.586126295],[-71.412101116,41.586142184],[-71.412111509,41.586144493],[-71.412236379,41.586181047],[-71.412264352,41.586188972],[-71.412339013,41.5862108],[-71.412421015,41.586233321],[-71.412497502,41.586256546],[-71.412579501,41.586281125],[-71.412608986,41.586289057],[-71.412691785,41.586310303],[-71.412745368,41.586322782],[-71.412831026,41.586344664],[-71.412885988,41.586359503],[-71.412909374,41.58636581],[-71.412996859,41.586388402],[-71.413004445,41.586390729],[-71.413268978,41.586465233],[-71.413312046,41.5864771],[-71.413321878,41.58647964],[-71.413537321,41.586528992],[-71.413539949,41.586529506],[-71.413570025,41.586537751],[-71.413624509,41.586552493],[-71.413670884,41.586574356],[-71.413694679,41.586585493],[-71.413726895,41.586640633],[-71.413728887,41.58670037],[-71.413723602,41.586757288],[-71.413706436,41.586814838],[-71.413683857,41.586866186],[-71.413648519,41.586913957],[-71.413587597,41.586958828],[-71.413515943,41.586987864],[-71.413427065,41.587003669],[-71.413341881,41.587015434],[-71.413341509,41.587015494],[-71.413010373,41.587041336],[-71.413004207,41.587041885],[-71.412928227,41.587048208],[-71.412885027,41.587051117],[-71.412790509,41.587058493],[-71.412438509,41.586967493],[-71.412438643,41.586967255],[-71.41243833,41.586967175],[-71.412509353,41.586841455],[-71.412404509,41.586815494],[-71.412404601,41.586815279],[-71.412404571,41.586815272],[-71.412428132,41.586759831],[-71.41201338,41.586645763],[-71.411848508,41.586990494],[-71.411848353,41.586990454],[-71.407835052,41.585969549],[-71.407825765,41.585968772],[-71.407808507,41.585967493],[-71.407791587,41.586010514],[-71.409866508,41.586546494],[-71.411624508,41.586992494],[-71.413911509,41.587375493],[-71.41626751,41.587988494],[-71.418315511,41.588503493],[-71.419418511,41.588883494],[-71.419319511,41.588978494],[-71.419212511,41.589138494],[-71.419884511,41.589394494],[-71.421616511,41.590073494],[-71.423035513,41.590634494],[-71.423759512,41.590908494],[-71.423965513,41.590977494],[-71.424370512,41.591107494],[-71.424556513,41.591163494],[-71.424866513,41.591256494],[-71.425293513,41.591355494],[-71.426140513,41.591542494],[-71.427696514,41.591858494],[-71.428406514,41.592015494],[-71.429192514,41.592194494],[-71.429594514,41.592302494],[-71.429687514,41.592327494],[-71.430168515,41.592495494],[-71.430291515,41.592543494],[-71.431305515,41.592938494],[-71.432190515,41.593312494],[-71.434692516,41.594368495],[-71.439003518,41.596196495],[-71.439230518,41.596292495],[-71.440253518,41.596722495],[-71.440634518,41.596883495],[-71.441393518,41.597204495],[-71.442697519,41.597753495],[-71.444379519,41.598461495],[-71.44574052,41.599030494],[-71.447990521,41.599987495],[-71.450020522,41.600838495],[-71.451386522,41.601416495],[-71.451500522,41.601464495],[-71.451598522,41.601521495],[-71.452309522,41.601876496],[-71.452744522,41.602154495],[-71.453048523,41.602421496],[-71.453079523,41.602448495],[-71.453133522,41.602508495],[-71.453455523,41.602690495],[-71.453339523,41.602528495],[-71.453215523,41.602405495],[-71.453300523,41.602397495],[-71.453593523,41.602395495],[-71.453883523,41.602416495]]]]}}"}, +{"type": "precinct", "typeId": 2401, "areaId": 25828, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":167,\"NAME\":\"2401\",\"SHAPE_Length\":0.040736450215879,\"SHAPE_Area\":-5.363081170879e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.447892534,41.853028544],[-71.448158534,41.853016544],[-71.448273534,41.852997544],[-71.449112534,41.852864544],[-71.449226535,41.852845544],[-71.449760535,41.852772544],[-71.450043535,41.852726544],[-71.450188535,41.852707544],[-71.450601535,41.852644544],[-71.450905535,41.852597544],[-71.451248536,41.852532544],[-71.451431536,41.852486544],[-71.451508536,41.852463544],[-71.451637536,41.852410544],[-71.451683536,41.852383544],[-71.451721536,41.852353544],[-71.451813536,41.852291544],[-71.451973536,41.852154544],[-71.452362536,41.852410544],[-71.452393536,41.852440544],[-71.452385536,41.852482544],[-71.452385536,41.852551543],[-71.452377536,41.852589544],[-71.452377536,41.852673544],[-71.452393536,41.852795544],[-71.452477536,41.853150544],[-71.451843535,41.853238544],[-71.451172536,41.853337544],[-71.451134536,41.853348544],[-71.451111536,41.853367544],[-71.451111536,41.853394544],[-71.451118536,41.853421544],[-71.451332536,41.853920544],[-71.451561536,41.854496545],[-71.452118536,41.854416544],[-71.452408536,41.854378544],[-71.452744536,41.854329544],[-71.452682536,41.853970544],[-71.452637536,41.853749544],[-71.453506536,41.853642544],[-71.454178537,41.853550544],[-71.454895537,41.853459544],[-71.455437537,41.853390544],[-71.456726537,41.853218544],[-71.457382537,41.853138544],[-71.457390538,41.853222544],[-71.457436538,41.853390544],[-71.457443537,41.853470544],[-71.457458537,41.853516544],[-71.457466538,41.853577544],[-71.457481537,41.853638544],[-71.457695537,41.854153544],[-71.458221538,41.854107544],[-71.460670539,41.853951544],[-71.461052539,41.853920544],[-71.461220539,41.853913544],[-71.461388539,41.853920544],[-71.461700539,41.853962544],[-71.461769539,41.853966544],[-71.461861539,41.853962544],[-71.46227354,41.853920544],[-71.462418539,41.853360544],[-71.46254754,41.852829543],[-71.463066539,41.850834544],[-71.462631539,41.850624543],[-71.462387539,41.850514543],[-71.461967539,41.850323543],[-71.461494539,41.850121543],[-71.460518539,41.849705543],[-71.459930538,41.849457543],[-71.459633538,41.849340543],[-71.459419538,41.849255544],[-71.459015538,41.849102543],[-71.458603538,41.848950543],[-71.457817537,41.848656543],[-71.457100537,41.848381543],[-71.456184537,41.848019543],[-71.456025537,41.847958543],[-71.455377536,41.848208543],[-71.454606537,41.848504543],[-71.454529537,41.848553543],[-71.454410537,41.848621543],[-71.453568536,41.849266543],[-71.452393536,41.850186544],[-71.451702536,41.850651544],[-71.450935535,41.851179544],[-71.450562535,41.851456544],[-71.450455536,41.851505544],[-71.450233535,41.851574544],[-71.450109535,41.851621544],[-71.449305535,41.852004544],[-71.448934535,41.852274544],[-71.448224535,41.852802544],[-71.447892534,41.853028544]]]]}}"}, +{"type": "precinct", "typeId": 2402, "areaId": 25829, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":168,\"NAME\":\"2402\",\"SHAPE_Length\":0.062926499921744,\"SHAPE_Area\":-0.00012210308253246},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.456025537,41.847958543],[-71.456184537,41.848019543],[-71.457100537,41.848381543],[-71.457817537,41.848656543],[-71.458603538,41.848950543],[-71.459015538,41.849102543],[-71.459419538,41.849255544],[-71.459633538,41.849340543],[-71.459930538,41.849457543],[-71.460518539,41.849705543],[-71.461494539,41.850121543],[-71.461967539,41.850323543],[-71.462387539,41.850514543],[-71.462433539,41.850376543],[-71.462494539,41.850045543],[-71.462517539,41.849903543],[-71.462608539,41.849442543],[-71.462639539,41.849331543],[-71.462699539,41.848979543],[-71.462730539,41.848709542],[-71.462784539,41.848729542],[-71.463066539,41.848809543],[-71.463608539,41.848942543],[-71.463760539,41.848980543],[-71.46381254,41.848994543],[-71.463913539,41.848996543],[-71.46414254,41.848984543],[-71.464310539,41.848969543],[-71.464439539,41.848950543],[-71.464539539,41.848927543],[-71.46474554,41.848858543],[-71.46492054,41.848782543],[-71.46515754,41.848664543],[-71.46588154,41.848187542],[-71.46609554,41.848008542],[-71.46632454,41.847802543],[-71.46717854,41.846875543],[-71.46756754,41.846474542],[-71.46762154,41.846402542],[-71.46772054,41.846253542],[-71.467766541,41.846169542],[-71.46779654,41.846119542],[-71.467827541,41.846051542],[-71.467865541,41.845936542],[-71.468002541,41.845997543],[-71.468124541,41.846070542],[-71.468292541,41.846211543],[-71.468384541,41.846280542],[-71.46843754,41.846325542],[-71.468506541,41.846341542],[-71.468567541,41.846348543],[-71.468620541,41.846348543],[-71.468765541,41.846329543],[-71.469788541,41.846146542],[-71.470154541,41.846074542],[-71.471100542,41.845875542],[-71.471588542,41.845776542],[-71.472267542,41.845646542],[-71.473030542,41.845505542],[-71.473412542,41.845429542],[-71.473892543,41.845345542],[-71.473610542,41.844712541],[-71.472900542,41.842907541],[-71.473694542,41.842728541],[-71.474876542,41.842469541],[-71.475531543,41.842313541],[-71.475662543,41.842282541],[-71.476214543,41.842160541],[-71.476372544,41.842125541],[-71.476387543,41.842163541],[-71.476715543,41.842575541],[-71.476891543,41.842781541],[-71.476929543,41.842827541],[-71.477028543,41.842980541],[-71.477097543,41.843121541],[-71.477135543,41.843281542],[-71.477707544,41.843171541],[-71.478645544,41.842949541],[-71.478888544,41.842854541],[-71.478784544,41.842675541],[-71.478706544,41.842514541],[-71.478672544,41.842426541],[-71.478659544,41.842377541],[-71.478623544,41.842247541],[-71.478592544,41.842165541],[-71.478537544,41.842091541],[-71.478460544,41.842020541],[-71.478376544,41.841959541],[-71.478123544,41.841812541],[-71.477939543,41.841727541],[-71.477847544,41.841673541],[-71.477800543,41.841637541],[-71.477765543,41.841610541],[-71.477696544,41.841543541],[-71.477640544,41.841477541],[-71.477461544,41.84065754],[-71.477322543,41.83964454],[-71.477358543,41.83946954],[-71.477378543,41.839400541],[-71.477405544,41.83933354],[-71.477484544,41.839207541],[-71.477510543,41.83913454],[-71.477527543,41.83876554],[-71.477587543,41.83845654],[-71.477584543,41.83832654],[-71.477558544,41.838232541],[-71.477509543,41.83816854],[-71.477466543,41.83812254],[-71.477366544,41.83803454],[-71.477216543,41.837919541],[-71.477148543,41.83789654],[-71.477086543,41.837866541],[-71.477018543,41.83783754],[-71.476905543,41.83781854],[-71.476832543,41.83783554],[-71.476745543,41.837899541],[-71.476711543,41.83795354],[-71.476652543,41.83808954],[-71.476602543,41.83814554],[-71.476539543,41.83818154],[-71.476453543,41.83820454],[-71.476351543,41.838195541],[-71.476245543,41.83816454],[-71.476180542,41.838136541],[-71.476105543,41.83808454],[-71.476061543,41.838037541],[-71.476019543,41.83798454],[-71.475986542,41.837960541],[-71.475891543,41.837958541],[-71.475810542,41.837978541],[-71.475740543,41.83800454],[-71.475580542,41.83812454],[-71.475541542,41.838170541],[-71.475395543,41.83822354],[-71.475223543,41.838295541],[-71.475180543,41.838312541],[-71.474952542,41.83837454],[-71.474876542,41.83839854],[-71.474572542,41.83853454],[-71.474496543,41.838583541],[-71.474391542,41.838684541],[-71.474276542,41.838743541],[-71.473962542,41.838830541],[-71.473599542,41.83896154],[-71.473504542,41.838987541],[-71.473402542,41.83900154],[-71.473310542,41.838990541],[-71.473228542,41.838947541],[-71.473171542,41.83888254],[-71.473119542,41.838779541],[-71.473098541,41.838704541],[-71.473108542,41.838425541],[-71.473093542,41.838290541],[-71.473034542,41.838033541],[-71.473034542,41.837983541],[-71.472952542,41.83787154],[-71.472884541,41.837742541],[-71.472861542,41.837684541],[-71.472829541,41.83753754],[-71.472800542,41.83746554],[-71.472747541,41.837372541],[-71.472732541,41.83734454],[-71.472707542,41.83728854],[-71.472695542,41.83723154],[-71.472690541,41.83715454],[-71.472667542,41.83711954],[-71.471252541,41.838036541],[-71.471016541,41.83820054],[-71.470979541,41.83822054],[-71.470535541,41.83845654],[-71.46914454,41.839013541],[-71.468742541,41.839268541],[-71.46688654,41.840183541],[-71.46566254,41.840786541],[-71.46543354,41.840899541],[-71.465375539,41.840940541],[-71.464503539,41.841557541],[-71.463409539,41.842354541],[-71.462150539,41.843256542],[-71.460968538,41.844119542],[-71.459566537,41.845247542],[-71.459358538,41.845432543],[-71.458522538,41.846048543],[-71.458468538,41.846079542],[-71.458066537,41.846364543],[-71.457565537,41.846794543],[-71.456071537,41.847930543],[-71.456025537,41.847958543]]]]}}"}, +{"type": "precinct", "typeId": 2403, "areaId": 25830, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":169,\"NAME\":\"2403\",\"SHAPE_Length\":0.057504453355017,\"SHAPE_Area\":-0.00010487789425256},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.463982541,41.870808547],[-71.464714541,41.871338547],[-71.464886541,41.871458547],[-71.466759542,41.872775547],[-71.466900541,41.872746547],[-71.467504542,41.872607547],[-71.468198542,41.872607547],[-71.468394542,41.872589547],[-71.468421542,41.872577548],[-71.468500542,41.872564547],[-71.468713542,41.872534547],[-71.469007542,41.872502547],[-71.469204542,41.872472547],[-71.470664543,41.872279547],[-71.473356544,41.871927547],[-71.475571545,41.871638547],[-71.475555544,41.871609547],[-71.475464544,41.871510547],[-71.475327544,41.871449546],[-71.474869545,41.871285547],[-71.474388544,41.871079546],[-71.474007544,41.870953547],[-71.473602544,41.870831547],[-71.473022543,41.870827547],[-71.472870543,41.870808547],[-71.472835544,41.870797547],[-71.472717543,41.870758547],[-71.472511544,41.870621547],[-71.472206543,41.870396546],[-71.471588543,41.869973547],[-71.471497543,41.869881547],[-71.471413543,41.869759547],[-71.471413543,41.869706547],[-71.471413543,41.869667547],[-71.471497543,41.869389547],[-71.471634543,41.869042547],[-71.471802543,41.868725546],[-71.471878543,41.868531546],[-71.471909543,41.868294546],[-71.471939543,41.868004546],[-71.471931543,41.867848546],[-71.471825543,41.867585547],[-71.471718543,41.867337546],[-71.471550543,41.867199546],[-71.471298543,41.867012546],[-71.471252543,41.866982546],[-71.471313543,41.866917546],[-71.471382542,41.866852546],[-71.471443543,41.866787546],[-71.471527543,41.866707546],[-71.471771543,41.866490546],[-71.471848543,41.866429546],[-71.472008543,41.866288546],[-71.472099543,41.866234546],[-71.472404543,41.866078546],[-71.472626543,41.865952546],[-71.472870543,41.865796546],[-71.473900543,41.865078546],[-71.473976543,41.865029546],[-71.474045544,41.864994545],[-71.474113543,41.864975545],[-71.474342544,41.864933546],[-71.474617544,41.864903546],[-71.474739544,41.864899545],[-71.474922544,41.864872546],[-71.475052544,41.864834546],[-71.475357544,41.864716546],[-71.475479544,41.864682545],[-71.475647544,41.864666545],[-71.475967544,41.864651546],[-71.475983545,41.863972546],[-71.475967544,41.863282545],[-71.475883544,41.862786545],[-71.475845544,41.862603545],[-71.475792544,41.862324545],[-71.475723544,41.861870545],[-71.475639544,41.861466545],[-71.475563544,41.861031545],[-71.475464544,41.860600545],[-71.475380543,41.860119544],[-71.475304543,41.859742545],[-71.475250544,41.859421544],[-71.474373543,41.859513544],[-71.474236543,41.859524545],[-71.473503543,41.859604545],[-71.472649542,41.859696545],[-71.472072543,41.859757545],[-71.471725543,41.859795545],[-71.471069543,41.859871545],[-71.470840542,41.859906544],[-71.470619543,41.859940545],[-71.470100542,41.860031545],[-71.468712541,41.860291545],[-71.467983542,41.860428545],[-71.467781541,41.860466545],[-71.467011541,41.860605545],[-71.466408541,41.860714545],[-71.466363541,41.860723545],[-71.465851541,41.860821545],[-71.46548054,41.860884545],[-71.46537854,41.860901545],[-71.465172541,41.860932545],[-71.465074541,41.860945545],[-71.46467654,41.861000545],[-71.46440154,41.861058545],[-71.46411954,41.861107545],[-71.46357754,41.861210545],[-71.46338754,41.861252545],[-71.46328754,41.861271545],[-71.46349354,41.861546545],[-71.463951541,41.862221546],[-71.46429454,41.862709546],[-71.464516541,41.863015546],[-71.464607541,41.863148546],[-71.46483654,41.863488546],[-71.46502754,41.863716546],[-71.46508854,41.863800546],[-71.465134541,41.863845545],[-71.465393541,41.864098545],[-71.465683541,41.864327546],[-71.465904541,41.864464546],[-71.466240541,41.864594546],[-71.466301541,41.864621546],[-71.466782541,41.864796546],[-71.467323542,41.865010546],[-71.467781541,41.865162546],[-71.467903542,41.865185546],[-71.467888542,41.865448546],[-71.467880542,41.865696546],[-71.467857541,41.865853546],[-71.467827542,41.865853546],[-71.467606541,41.865830546],[-71.467247542,41.865742546],[-71.466934542,41.865639546],[-71.466782541,41.865605546],[-71.466690541,41.865609546],[-71.466591541,41.865662546],[-71.466522541,41.865731546],[-71.466187541,41.866043546],[-71.465942541,41.866280546],[-71.465874541,41.866356547],[-71.465866541,41.866410546],[-71.465877541,41.866451546],[-71.465897541,41.866475546],[-71.465981541,41.866547546],[-71.466125541,41.866654546],[-71.466145541,41.866691546],[-71.465820541,41.867005546],[-71.465782541,41.867104546],[-71.465630541,41.867665546],[-71.465446541,41.868458547],[-71.465248541,41.869267546],[-71.465034541,41.869618547],[-71.464676541,41.870163547],[-71.464493541,41.870427547],[-71.46432554,41.870568547],[-71.463982541,41.870808547]]]]}}"}, +{"type": "precinct", "typeId": 2404, "areaId": 25843, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":182,\"NAME\":\"2404\",\"SHAPE_Length\":0.03482002475976,\"SHAPE_Area\":-5.7566737635919e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.466660541,41.852703544],[-71.466133541,41.853005543],[-71.46542454,41.853409543],[-71.46511154,41.853592544],[-71.46502754,41.853646543],[-71.46495154,41.853703543],[-71.46487454,41.853783543],[-71.46484454,41.853814544],[-71.46479854,41.853875544],[-71.46473754,41.853997544],[-71.46471454,41.854058544],[-71.46468454,41.854313544],[-71.46468454,41.854348544],[-71.46467654,41.854924544],[-71.46466854,41.855591544],[-71.46466854,41.855896544],[-71.464653541,41.856293545],[-71.46463854,41.856530544],[-71.46461554,41.856629544],[-71.46453154,41.856842544],[-71.46447854,41.856968544],[-71.46444754,41.857052545],[-71.46418054,41.857693545],[-71.46405054,41.858006545],[-71.46399754,41.858139545],[-71.46393654,41.858273545],[-71.46371554,41.858811544],[-71.463524539,41.859211545],[-71.46342954,41.859404545],[-71.46334154,41.859585545],[-71.46324954,41.859799545],[-71.46316554,41.859982545],[-71.463097539,41.860142545],[-71.46304354,41.860245545],[-71.46302054,41.860306545],[-71.46300354,41.860385545],[-71.462997539,41.860463545],[-71.462997539,41.860508545],[-71.46300554,41.860554545],[-71.46305154,41.860661545],[-71.46306654,41.860714545],[-71.46309754,41.860787545],[-71.46323454,41.861039545],[-71.46338754,41.861252545],[-71.46357754,41.861210545],[-71.46411954,41.861107545],[-71.46440154,41.861058545],[-71.46467654,41.861000545],[-71.465074541,41.860945545],[-71.465172541,41.860932545],[-71.46537854,41.860901545],[-71.46548054,41.860884545],[-71.465851541,41.860821545],[-71.466363541,41.860723545],[-71.466408541,41.860714545],[-71.467011541,41.860605545],[-71.467781541,41.860466545],[-71.467983542,41.860428545],[-71.468712541,41.860291545],[-71.470100542,41.860031545],[-71.470619543,41.859940545],[-71.470840542,41.859906544],[-71.471069543,41.859871545],[-71.471725543,41.859795545],[-71.471725543,41.859726545],[-71.471298543,41.859288545],[-71.471031542,41.858982545],[-71.470985542,41.858937545],[-71.470955542,41.858891544],[-71.470932543,41.858845545],[-71.470932543,41.858818544],[-71.470955542,41.858765545],[-71.471397543,41.858437545],[-71.471680542,41.858227544],[-71.471931542,41.858033544],[-71.472798543,41.857371544],[-71.472946543,41.857258544],[-71.473068543,41.857167544],[-71.473289543,41.856991544],[-71.473419543,41.856892544],[-71.473701543,41.856694544],[-71.474121543,41.856358544],[-71.474251543,41.856259544],[-71.474495543,41.856072544],[-71.474602543,41.855984543],[-71.474701543,41.855927544],[-71.474792544,41.855862544],[-71.474846544,41.855832544],[-71.474876543,41.855786544],[-71.474907544,41.855736544],[-71.475014543,41.855305544],[-71.475052543,41.855076544],[-71.475105544,41.854779543],[-71.473729543,41.854662543],[-71.473638543,41.854657543],[-71.473602543,41.854653544],[-71.473564543,41.854650544],[-71.472130542,41.854527544],[-71.471405542,41.854466543],[-71.470390542,41.854374544],[-71.470161542,41.854355544],[-71.469498541,41.854302544],[-71.469284541,41.854279544],[-71.468834541,41.854237544],[-71.468735541,41.854222544],[-71.468559541,41.854180544],[-71.468513542,41.854161544],[-71.468441541,41.854134543],[-71.468399541,41.854119544],[-71.468246541,41.854039544],[-71.467987541,41.853859543],[-71.46684354,41.852863543],[-71.466660541,41.852703544]]]]}}"}, +{"type": "precinct", "typeId": 2405, "areaId": 25831, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":170,\"NAME\":\"2405\",\"SHAPE_Length\":0.066218862660314,\"SHAPE_Area\":-0.00010288671612923},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.447667535,41.853176544],[-71.447578534,41.853279544],[-71.447235535,41.853691544],[-71.446976534,41.854000544],[-71.446785534,41.854214544],[-71.446838534,41.854283545],[-71.446960534,41.854473545],[-71.447144534,41.854741544],[-71.447487535,41.855210544],[-71.447609534,41.855355545],[-71.447685535,41.855416545],[-71.447754534,41.855481544],[-71.448006534,41.855664545],[-71.448181534,41.855770544],[-71.448273534,41.855820545],[-71.448387535,41.855873545],[-71.448509534,41.855923545],[-71.448631535,41.855965544],[-71.448708535,41.855984544],[-71.448776535,41.856003544],[-71.449219535,41.856072545],[-71.449348535,41.856083544],[-71.450348535,41.856198544],[-71.450493536,41.856209545],[-71.452324536,41.856388545],[-71.452667536,41.856434544],[-71.452751536,41.856449545],[-71.452927536,41.856491544],[-71.453171536,41.856575545],[-71.453300537,41.856629544],[-71.453430536,41.856697545],[-71.453606536,41.856812545],[-71.453781537,41.856934545],[-71.454414537,41.857415545],[-71.454483537,41.857457545],[-71.454552536,41.857499545],[-71.454750537,41.857594545],[-71.454880537,41.857651545],[-71.455017537,41.857705545],[-71.455132537,41.857746545],[-71.455574537,41.857884545],[-71.455750537,41.857933545],[-71.455887537,41.857979545],[-71.455994538,41.858010545],[-71.456665537,41.858216545],[-71.456360538,41.858914545],[-71.456192537,41.859307545],[-71.455867537,41.860059545],[-71.455711537,41.860421545],[-71.455627537,41.860627545],[-71.455605537,41.860672545],[-71.455223537,41.861565545],[-71.454964537,41.862191546],[-71.454944537,41.862235546],[-71.454666537,41.862866546],[-71.454521537,41.862899546],[-71.454292537,41.862950546],[-71.453735537,41.863095546],[-71.453752536,41.863148546],[-71.454453537,41.862980546],[-71.454540537,41.862960546],[-71.454636537,41.862938546],[-71.455200537,41.862809545],[-71.456279538,41.862576545],[-71.456543537,41.862519545],[-71.457695538,41.862290546],[-71.457980538,41.862238546],[-71.458092538,41.862217546],[-71.458801539,41.862091545],[-71.459488538,41.861962546],[-71.460236539,41.861828546],[-71.460876539,41.861721545],[-71.461891539,41.861523545],[-71.46267754,41.861390545],[-71.46328754,41.861271545],[-71.46338754,41.861252545],[-71.46323454,41.861039545],[-71.46309754,41.860787545],[-71.46306654,41.860714545],[-71.46305154,41.860661545],[-71.46300554,41.860554545],[-71.462997539,41.860508545],[-71.462997539,41.860463545],[-71.46300354,41.860385545],[-71.46302054,41.860306545],[-71.46304354,41.860245545],[-71.463097539,41.860142545],[-71.46316554,41.859982545],[-71.46324954,41.859799545],[-71.46334154,41.859585545],[-71.46342954,41.859404545],[-71.463524539,41.859211545],[-71.46371554,41.858811544],[-71.46393654,41.858273545],[-71.46399754,41.858139545],[-71.46405054,41.858006545],[-71.46418054,41.857693545],[-71.46444754,41.857052545],[-71.46447854,41.856968544],[-71.46453154,41.856842544],[-71.46461554,41.856629544],[-71.46463854,41.856530544],[-71.464653541,41.856293545],[-71.46466854,41.855896544],[-71.46466854,41.855591544],[-71.46467654,41.854924544],[-71.46468454,41.854348544],[-71.46468454,41.854313544],[-71.46471454,41.854058544],[-71.46473754,41.853997544],[-71.46479854,41.853875544],[-71.46484454,41.853814544],[-71.46487454,41.853783543],[-71.46495154,41.853703543],[-71.46502754,41.853646543],[-71.46511154,41.853592544],[-71.46542454,41.853409543],[-71.466133541,41.853005543],[-71.466660541,41.852703544],[-71.466576541,41.852627544],[-71.46629354,41.852417543],[-71.46598154,41.852242543],[-71.46583654,41.852162543],[-71.46511854,41.851807544],[-71.46504454,41.851774543],[-71.46502754,41.851761543],[-71.46477554,41.851643543],[-71.46386754,41.851208543],[-71.463066539,41.850834544],[-71.46254754,41.852829543],[-71.462418539,41.853360544],[-71.46227354,41.853920544],[-71.461861539,41.853962544],[-71.461769539,41.853966544],[-71.461700539,41.853962544],[-71.461388539,41.853920544],[-71.461220539,41.853913544],[-71.461052539,41.853920544],[-71.460670539,41.853951544],[-71.458221538,41.854107544],[-71.457695537,41.854153544],[-71.457481537,41.853638544],[-71.457466538,41.853577544],[-71.457458537,41.853516544],[-71.457443537,41.853470544],[-71.457436538,41.853390544],[-71.457390538,41.853222544],[-71.457382537,41.853138544],[-71.456726537,41.853218544],[-71.455437537,41.853390544],[-71.454895537,41.853459544],[-71.454178537,41.853550544],[-71.453506536,41.853642544],[-71.452637536,41.853749544],[-71.452682536,41.853970544],[-71.452744536,41.854329544],[-71.452408536,41.854378544],[-71.452118536,41.854416544],[-71.451561536,41.854496545],[-71.451332536,41.853920544],[-71.451118536,41.853421544],[-71.451111536,41.853394544],[-71.451111536,41.853367544],[-71.451134536,41.853348544],[-71.451172536,41.853337544],[-71.451843535,41.853238544],[-71.452477536,41.853150544],[-71.452393536,41.852795544],[-71.452377536,41.852673544],[-71.452377536,41.852589544],[-71.452385536,41.852551543],[-71.452385536,41.852482544],[-71.452393536,41.852440544],[-71.452362536,41.852410544],[-71.451973536,41.852154544],[-71.451813536,41.852291544],[-71.451721536,41.852353544],[-71.451683536,41.852383544],[-71.451637536,41.852410544],[-71.451508536,41.852463544],[-71.451431536,41.852486544],[-71.451248536,41.852532544],[-71.450905535,41.852597544],[-71.450601535,41.852644544],[-71.450188535,41.852707544],[-71.450043535,41.852726544],[-71.449760535,41.852772544],[-71.449226535,41.852845544],[-71.449112534,41.852864544],[-71.448273534,41.852997544],[-71.448158534,41.853016544],[-71.447892534,41.853028544],[-71.447667535,41.853176544]]]]}}"}, +{"type": "precinct", "typeId": 2406, "areaId": 25832, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":171,\"NAME\":\"2406\",\"SHAPE_Length\":0.060570778475649,\"SHAPE_Area\":-0.00011511015398155},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.473564543,41.854650544],[-71.473582543,41.854617544],[-71.473638543,41.854657543],[-71.473676543,41.854639543],[-71.474068543,41.854393544],[-71.474319543,41.854214543],[-71.474457543,41.854096543],[-71.474564543,41.853981543],[-71.474747543,41.853791544],[-71.474846543,41.853699544],[-71.474945544,41.853627543],[-71.475243543,41.853428544],[-71.475281544,41.853398543],[-71.475723544,41.853119543],[-71.475700543,41.853089543],[-71.475677543,41.853016544],[-71.475677543,41.852993543],[-71.475662543,41.852925543],[-71.475586544,41.852326543],[-71.475502543,41.851773543],[-71.475494544,41.851742543],[-71.475426543,41.851265543],[-71.475397544,41.851079543],[-71.475327543,41.850628543],[-71.475281544,41.850254543],[-71.476837544,41.850151543],[-71.477737544,41.850094542],[-71.478172544,41.850068543],[-71.478197544,41.850064543],[-71.478256544,41.850068543],[-71.478294544,41.850075542],[-71.478371544,41.850109543],[-71.478432544,41.850163543],[-71.478508544,41.850243543],[-71.478592545,41.850323543],[-71.478668544,41.850407542],[-71.478844545,41.850579543],[-71.478867545,41.850621542],[-71.479584545,41.850365543],[-71.479652544,41.850312542],[-71.479317545,41.849945542],[-71.479263544,41.849865542],[-71.478844544,41.849289543],[-71.478561544,41.848851542],[-71.478271544,41.848408542],[-71.477982544,41.847981542],[-71.477837544,41.847805542],[-71.477814544,41.847763542],[-71.477676544,41.847569542],[-71.477509544,41.847321542],[-71.477348544,41.847092542],[-71.477303544,41.847020542],[-71.477264544,41.846966542],[-71.477203544,41.846840542],[-71.477150544,41.846653542],[-71.477089544,41.846371542],[-71.477600544,41.846207542],[-71.477776544,41.846154542],[-71.477966544,41.846100542],[-71.478271544,41.846001542],[-71.478493544,41.845917542],[-71.478699544,41.845841542],[-71.479324544,41.845635542],[-71.480095545,41.845375541],[-71.480229545,41.845350542],[-71.480250545,41.845420542],[-71.480255544,41.845552541],[-71.480283545,41.845611541],[-71.480373544,41.845710541],[-71.480419545,41.845770542],[-71.480457545,41.845834542],[-71.480484545,41.845898542],[-71.480497545,41.845958542],[-71.480498545,41.846014542],[-71.480489544,41.846068542],[-71.480485545,41.846144542],[-71.480560545,41.846470542],[-71.480523545,41.846516542],[-71.480465545,41.846566542],[-71.480404545,41.846634542],[-71.480509544,41.846632542],[-71.480602545,41.846613542],[-71.480782544,41.845978542],[-71.480330545,41.845052542],[-71.479586545,41.844470542],[-71.479521544,41.844291541],[-71.479004544,41.843509541],[-71.479012544,41.843466541],[-71.479019544,41.843218541],[-71.479011544,41.843133541],[-71.478990544,41.843047541],[-71.478951544,41.842962541],[-71.478888544,41.842854541],[-71.478645544,41.842949541],[-71.477707544,41.843171541],[-71.477135543,41.843281542],[-71.477097543,41.843121541],[-71.477028543,41.842980541],[-71.476929543,41.842827541],[-71.476891543,41.842781541],[-71.476715543,41.842575541],[-71.476387543,41.842163541],[-71.476372544,41.842125541],[-71.476214543,41.842160541],[-71.475662543,41.842282541],[-71.475531543,41.842313541],[-71.474876542,41.842469541],[-71.473694542,41.842728541],[-71.472900542,41.842907541],[-71.473610542,41.844712541],[-71.473892543,41.845345542],[-71.473412542,41.845429542],[-71.473030542,41.845505542],[-71.472267542,41.845646542],[-71.471588542,41.845776542],[-71.471100542,41.845875542],[-71.470154541,41.846074542],[-71.469788541,41.846146542],[-71.468765541,41.846329543],[-71.468620541,41.846348543],[-71.468567541,41.846348543],[-71.468506541,41.846341542],[-71.46843754,41.846325542],[-71.468384541,41.846280542],[-71.468292541,41.846211543],[-71.468124541,41.846070542],[-71.468002541,41.845997543],[-71.467865541,41.845936542],[-71.467827541,41.846051542],[-71.46779654,41.846119542],[-71.467766541,41.846169542],[-71.46772054,41.846253542],[-71.46762154,41.846402542],[-71.46756754,41.846474542],[-71.46717854,41.846875543],[-71.46632454,41.847802543],[-71.46609554,41.848008542],[-71.46588154,41.848187542],[-71.46515754,41.848664543],[-71.46492054,41.848782543],[-71.46474554,41.848858543],[-71.464539539,41.848927543],[-71.464439539,41.848950543],[-71.464310539,41.848969543],[-71.46414254,41.848984543],[-71.463913539,41.848996543],[-71.46381254,41.848994543],[-71.463760539,41.848980543],[-71.463608539,41.848942543],[-71.463066539,41.848809543],[-71.462784539,41.848729542],[-71.462730539,41.848709542],[-71.462699539,41.848979543],[-71.462639539,41.849331543],[-71.462608539,41.849442543],[-71.462517539,41.849903543],[-71.462494539,41.850045543],[-71.462433539,41.850376543],[-71.462387539,41.850514543],[-71.462631539,41.850624543],[-71.463066539,41.850834544],[-71.46386754,41.851208543],[-71.46477554,41.851643543],[-71.46502754,41.851761543],[-71.46504454,41.851774543],[-71.46511854,41.851807544],[-71.46583654,41.852162543],[-71.46598154,41.852242543],[-71.46629354,41.852417543],[-71.466576541,41.852627544],[-71.466660541,41.852703544],[-71.46684354,41.852863543],[-71.467987541,41.853859543],[-71.468246541,41.854039544],[-71.468399541,41.854119544],[-71.468441541,41.854134543],[-71.468513542,41.854161544],[-71.468559541,41.854180544],[-71.468735541,41.854222544],[-71.468834541,41.854237544],[-71.469284541,41.854279544],[-71.469498541,41.854302544],[-71.470161542,41.854355544],[-71.470390542,41.854374544],[-71.471405542,41.854466543],[-71.472130542,41.854527544],[-71.473564543,41.854650544]]]]}}"}, +{"type": "precinct", "typeId": 2407, "areaId": 25841, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":180,\"NAME\":\"2407\",\"SHAPE_Length\":0.052201836421824,\"SHAPE_Area\":-0.00014463184129808},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.475250544,41.859421544],[-71.475304543,41.859742545],[-71.475380543,41.860119544],[-71.475464544,41.860600545],[-71.475563544,41.861031545],[-71.475639544,41.861466545],[-71.475723544,41.861870545],[-71.475792544,41.862324545],[-71.475845544,41.862603545],[-71.475883544,41.862786545],[-71.475967544,41.863282545],[-71.475983545,41.863972546],[-71.475967544,41.864651546],[-71.475647544,41.864666545],[-71.475479544,41.864682545],[-71.475357544,41.864716546],[-71.475052544,41.864834546],[-71.474922544,41.864872546],[-71.474739544,41.864899545],[-71.474617544,41.864903546],[-71.474342544,41.864933546],[-71.474113543,41.864975545],[-71.474045544,41.864994545],[-71.473976543,41.865029546],[-71.473900543,41.865078546],[-71.472870543,41.865796546],[-71.472626543,41.865952546],[-71.472404543,41.866078546],[-71.472099543,41.866234546],[-71.472008543,41.866288546],[-71.471848543,41.866429546],[-71.471771543,41.866490546],[-71.471527543,41.866707546],[-71.471443543,41.866787546],[-71.471382542,41.866852546],[-71.471313543,41.866917546],[-71.471252543,41.866982546],[-71.471298543,41.867012546],[-71.471550543,41.867199546],[-71.471718543,41.867337546],[-71.471825543,41.867585547],[-71.471931543,41.867848546],[-71.471939543,41.868004546],[-71.471909543,41.868294546],[-71.471878543,41.868531546],[-71.471802543,41.868725546],[-71.471634543,41.869042547],[-71.471497543,41.869389547],[-71.471413543,41.869667547],[-71.471413543,41.869706547],[-71.471413543,41.869759547],[-71.471497543,41.869881547],[-71.471588543,41.869973547],[-71.472206543,41.870396546],[-71.472511544,41.870621547],[-71.472717543,41.870758547],[-71.472835544,41.870797547],[-71.472870543,41.870808547],[-71.473022543,41.870827547],[-71.473602544,41.870831547],[-71.474007544,41.870953547],[-71.474388544,41.871079546],[-71.474869545,41.871285547],[-71.475327544,41.871449546],[-71.475464544,41.871510547],[-71.475555544,41.871609547],[-71.475571545,41.871638547],[-71.482750547,41.870636546],[-71.485943548,41.870200546],[-71.486676548,41.870097546],[-71.486641548,41.869908546],[-71.486641548,41.869564546],[-71.486679548,41.869019546],[-71.486702548,41.868782546],[-71.486984548,41.868771546],[-71.487144548,41.868744546],[-71.487320548,41.868702546],[-71.487526549,41.868592546],[-71.487701549,41.868508546],[-71.487946548,41.868359546],[-71.488098548,41.868210546],[-71.488197548,41.868069546],[-71.488251548,41.867958545],[-71.488258548,41.867787546],[-71.488243549,41.867710546],[-71.488182548,41.867619546],[-71.487961548,41.867401546],[-71.487572548,41.867066545],[-71.487350548,41.866864546],[-71.487411549,41.866764546],[-71.487480548,41.866570546],[-71.487518548,41.866429546],[-71.487511548,41.866349546],[-71.487366548,41.865788546],[-71.487289548,41.865654546],[-71.487275548,41.865637545],[-71.487106548,41.865425545],[-71.486877548,41.865181545],[-71.486839548,41.865155545],[-71.486298548,41.864525545],[-71.485840547,41.863915545],[-71.485535548,41.863514545],[-71.485435547,41.863381545],[-71.485374547,41.863316545],[-71.485275547,41.863240545],[-71.485130548,41.863034545],[-71.485046547,41.862896545],[-71.484962547,41.862732545],[-71.484703547,41.862801545],[-71.484634547,41.862671545],[-71.484505547,41.862355545],[-71.484390546,41.861996545],[-71.484230547,41.861580545],[-71.484070547,41.861138544],[-71.483978547,41.860882544],[-71.483902546,41.860688544],[-71.483887546,41.860630544],[-71.483704547,41.860119544],[-71.483513546,41.859627545],[-71.483429547,41.859352545],[-71.483360546,41.859158545],[-71.483299546,41.859043545],[-71.483292547,41.859013544],[-71.483269546,41.858990544],[-71.483246546,41.858979544],[-71.483185546,41.858960544],[-71.483017546,41.858933544],[-71.482811546,41.858883544],[-71.482750547,41.858872544],[-71.482620546,41.858841544],[-71.482574546,41.858834544],[-71.482529546,41.858822544],[-71.482491546,41.858807544],[-71.482422546,41.858769545],[-71.482368546,41.858719544],[-71.482323546,41.858632544],[-71.482315546,41.858597544],[-71.482216546,41.858353544],[-71.481644546,41.858460544],[-71.480644546,41.858651545],[-71.480415545,41.858681544],[-71.480164545,41.858723544],[-71.480034545,41.858735544],[-71.479599545,41.858769545],[-71.479385545,41.858776544],[-71.478836545,41.858857544],[-71.478043545,41.859005545],[-71.477898544,41.859036544],[-71.476921544,41.859227544],[-71.476273544,41.859307544],[-71.476112544,41.859326544],[-71.475990544,41.859337545],[-71.475250544,41.859421544]]]]}}"}, +{"type": "precinct", "typeId": 2408, "areaId": 25833, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":172,\"NAME\":\"2408\",\"SHAPE_Length\":0.073402903938164,\"SHAPE_Area\":-0.00010995970206182},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.475250544,41.859421544],[-71.475990544,41.859337545],[-71.476112544,41.859326544],[-71.476273544,41.859307544],[-71.476921544,41.859227544],[-71.477898544,41.859036544],[-71.478043545,41.859005545],[-71.478836545,41.858857544],[-71.479385545,41.858776544],[-71.479599545,41.858769545],[-71.480034545,41.858735544],[-71.480164545,41.858723544],[-71.480415545,41.858681544],[-71.480644546,41.858651545],[-71.481644546,41.858460544],[-71.482216546,41.858353544],[-71.482315546,41.858597544],[-71.482323546,41.858632544],[-71.482368546,41.858719544],[-71.482422546,41.858769545],[-71.482491546,41.858807544],[-71.482529546,41.858822544],[-71.482574546,41.858834544],[-71.482620546,41.858841544],[-71.482750547,41.858872544],[-71.482811546,41.858883544],[-71.483017546,41.858933544],[-71.483185546,41.858960544],[-71.483246546,41.858979544],[-71.483269546,41.858990544],[-71.483292547,41.859013544],[-71.483299546,41.859043545],[-71.483360546,41.859158545],[-71.483429547,41.859352545],[-71.483513546,41.859627545],[-71.483704547,41.860119544],[-71.483887546,41.860630544],[-71.483902546,41.860688544],[-71.483978547,41.860882544],[-71.484070547,41.861138544],[-71.484230547,41.861580545],[-71.484390546,41.861996545],[-71.484505547,41.862355545],[-71.484634547,41.862671545],[-71.484703547,41.862801545],[-71.484962547,41.862732545],[-71.485046547,41.862896545],[-71.485130548,41.863034545],[-71.485275547,41.863240545],[-71.485374547,41.863316545],[-71.485435547,41.863381545],[-71.485535548,41.863514545],[-71.485840547,41.863915545],[-71.486298548,41.864525545],[-71.486839548,41.865155545],[-71.486877548,41.865181545],[-71.487106548,41.865425545],[-71.487275548,41.865637545],[-71.487289548,41.865654546],[-71.487366548,41.865788546],[-71.487511548,41.866349546],[-71.487518548,41.866429546],[-71.487480548,41.866570546],[-71.487411549,41.866764546],[-71.487350548,41.866864546],[-71.487572548,41.867066545],[-71.487961548,41.867401546],[-71.488182548,41.867619546],[-71.488243549,41.867710546],[-71.488258548,41.867787546],[-71.488251548,41.867958545],[-71.488197548,41.868069546],[-71.488098548,41.868210546],[-71.487946548,41.868359546],[-71.487701549,41.868508546],[-71.487526549,41.868592546],[-71.487320548,41.868702546],[-71.487144548,41.868744546],[-71.486984548,41.868771546],[-71.486702548,41.868782546],[-71.486679548,41.869019546],[-71.486641548,41.869564546],[-71.486641548,41.869908546],[-71.486676548,41.870097546],[-71.487399548,41.869996546],[-71.491004549,41.869498546],[-71.491104549,41.869506546],[-71.49167855,41.869364546],[-71.49229955,41.869211546],[-71.494921551,41.868892546],[-71.495205551,41.868857546],[-71.495466551,41.868699546],[-71.495487551,41.868677546],[-71.495459551,41.868683545],[-71.495392551,41.868668546],[-71.495250551,41.868598546],[-71.495192551,41.868557546],[-71.495048551,41.868544545],[-71.494860551,41.868515546],[-71.49466955,41.868462546],[-71.494578551,41.868426545],[-71.494451551,41.868363546],[-71.49408455,41.868284546],[-71.49337555,41.867791546],[-71.49295255,41.867409546],[-71.49285455,41.867221545],[-71.49268055,41.866968545],[-71.49238355,41.866243545],[-71.49235355,41.865373545],[-71.49231955,41.865325545],[-71.49220255,41.865222545],[-71.49206455,41.865081545],[-71.49187555,41.864922545],[-71.491829549,41.864890545],[-71.491686549,41.864791545],[-71.491634549,41.864731545],[-71.491587549,41.864624545],[-71.491551549,41.864568545],[-71.49150355,41.864440545],[-71.491462549,41.864376545],[-71.491308549,41.864199545],[-71.491185549,41.864115545],[-71.490929549,41.863904545],[-71.490818549,41.863795545],[-71.490619549,41.863622545],[-71.490558549,41.863582545],[-71.490420549,41.863506545],[-71.490280548,41.863435545],[-71.490124548,41.863343545],[-71.489885549,41.863231545],[-71.489651549,41.863164545],[-71.489490549,41.863112545],[-71.489248548,41.862978545],[-71.488985549,41.862869544],[-71.488888549,41.862846545],[-71.488742548,41.862805545],[-71.488676549,41.862769545],[-71.488608548,41.862748545],[-71.488565548,41.862716545],[-71.488547548,41.862658545],[-71.488483549,41.862625545],[-71.488446548,41.862575544],[-71.488422548,41.862506545],[-71.488388548,41.862454545],[-71.488251548,41.862286544],[-71.488161548,41.862107544],[-71.488150548,41.862041545],[-71.488161548,41.861982545],[-71.488215548,41.861928545],[-71.488237548,41.861870545],[-71.488230549,41.861815544],[-71.488216548,41.861759544],[-71.488178548,41.861698544],[-71.488127548,41.861601544],[-71.488057548,41.861470544],[-71.487923548,41.861152544],[-71.487868548,41.861047545],[-71.487820548,41.860994545],[-71.487830548,41.860937544],[-71.487833548,41.860867544],[-71.487820548,41.860807544],[-71.487802547,41.860753545],[-71.487796548,41.860694544],[-71.487797548,41.860627544],[-71.487768548,41.860509544],[-71.487789548,41.860449544],[-71.487823548,41.860390545],[-71.487831548,41.860330545],[-71.487806548,41.860272545],[-71.487794548,41.860211545],[-71.487784547,41.860037545],[-71.487691548,41.859763545],[-71.487688548,41.859689544],[-71.487654548,41.859611544],[-71.487646547,41.859544544],[-71.487674548,41.859482544],[-71.487672548,41.859415545],[-71.487631548,41.859351544],[-71.487516548,41.859299544],[-71.487378547,41.859278545],[-71.487365548,41.859262544],[-71.487387548,41.859227544],[-71.487433547,41.859177544],[-71.487429548,41.859149544],[-71.487421548,41.859081544],[-71.487337547,41.859044545],[-71.487030547,41.858910544],[-71.486862548,41.858830545],[-71.486771547,41.858784544],[-71.486473548,41.858647544],[-71.485733547,41.858288544],[-71.485634547,41.858239544],[-71.485474547,41.858158544],[-71.484863547,41.857872544],[-71.484291547,41.857602543],[-71.483543546,41.857228544],[-71.483353547,41.857136544],[-71.483284546,41.857102544],[-71.483170546,41.857014544],[-71.483109546,41.856930544],[-71.483047546,41.856820544],[-71.482948546,41.856610543],[-71.482880546,41.856488544],[-71.482628546,41.855976544],[-71.482506546,41.855729544],[-71.482391546,41.855469544],[-71.482124546,41.854908544],[-71.481743545,41.854123543],[-71.480858546,41.852242543],[-71.480751545,41.852013543],[-71.480659545,41.851776543],[-71.480629545,41.851712543],[-71.480209545,41.851841543],[-71.479584545,41.852044543],[-71.479507545,41.852074543],[-71.479439544,41.852093543],[-71.479317545,41.852139543],[-71.479164544,41.852208543],[-71.478851544,41.852330543],[-71.478745545,41.852360543],[-71.478526544,41.852438543],[-71.478455545,41.852463543],[-71.478271544,41.852536543],[-71.478172544,41.852570544],[-71.477982544,41.852646543],[-71.477722544,41.852765544],[-71.477615544,41.852822544],[-71.477432544,41.852963543],[-71.477379544,41.853020543],[-71.476837544,41.853779544],[-71.476748544,41.853884543],[-71.476730544,41.853897543],[-71.476700544,41.853932544],[-71.476624544,41.853985543],[-71.476448544,41.854081543],[-71.476212544,41.854226544],[-71.476120544,41.854271543],[-71.476051544,41.854313543],[-71.475746544,41.854470543],[-71.475586544,41.854565543],[-71.475380543,41.854695544],[-71.475250543,41.854798543],[-71.475159544,41.854782544],[-71.475105544,41.854779543],[-71.475052543,41.855076544],[-71.475014543,41.855305544],[-71.474907544,41.855736544],[-71.474876543,41.855786544],[-71.474846544,41.855832544],[-71.474792544,41.855862544],[-71.474701543,41.855927544],[-71.474602543,41.855984543],[-71.474495543,41.856072544],[-71.474251543,41.856259544],[-71.474121543,41.856358544],[-71.473701543,41.856694544],[-71.473419543,41.856892544],[-71.473289543,41.856991544],[-71.473068543,41.857167544],[-71.472946543,41.857258544],[-71.472798543,41.857371544],[-71.471931542,41.858033544],[-71.471680542,41.858227544],[-71.471397543,41.858437545],[-71.470955542,41.858765545],[-71.470932543,41.858818544],[-71.470932543,41.858845545],[-71.470955542,41.858891544],[-71.470985542,41.858937545],[-71.471031542,41.858982545],[-71.471298543,41.859288545],[-71.471725543,41.859726545],[-71.471725543,41.859795545],[-71.472072543,41.859757545],[-71.472649542,41.859696545],[-71.473503543,41.859604545],[-71.474236543,41.859524545],[-71.474373543,41.859513544],[-71.475250544,41.859421544]]]]}}"}, +{"type": "precinct", "typeId": 2409, "areaId": 25834, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":173,\"NAME\":\"2409\",\"SHAPE_Length\":0.054430106573569,\"SHAPE_Area\":-5.1576433877042e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.475105544,41.854779543],[-71.475159544,41.854782544],[-71.475250543,41.854798543],[-71.475380543,41.854695544],[-71.475586544,41.854565543],[-71.475746544,41.854470543],[-71.476051544,41.854313543],[-71.476120544,41.854271543],[-71.476212544,41.854226544],[-71.476448544,41.854081543],[-71.476624544,41.853985543],[-71.476700544,41.853932544],[-71.476730544,41.853897543],[-71.476748544,41.853884543],[-71.476837544,41.853779544],[-71.477379544,41.853020543],[-71.477432544,41.852963543],[-71.477615544,41.852822544],[-71.477722544,41.852765544],[-71.477982544,41.852646543],[-71.478172544,41.852570544],[-71.478271544,41.852536543],[-71.478455545,41.852463543],[-71.478526544,41.852438543],[-71.478745545,41.852360543],[-71.478851544,41.852330543],[-71.479164544,41.852208543],[-71.479317545,41.852139543],[-71.479439544,41.852093543],[-71.479507545,41.852074543],[-71.479584545,41.852044543],[-71.480209545,41.851841543],[-71.480629545,41.851712543],[-71.480659545,41.851776543],[-71.480751545,41.852013543],[-71.480858546,41.852242543],[-71.481743545,41.854123543],[-71.482124546,41.854908544],[-71.482391546,41.855469544],[-71.482506546,41.855729544],[-71.482628546,41.855976544],[-71.482880546,41.856488544],[-71.482948546,41.856610543],[-71.483047546,41.856820544],[-71.483109546,41.856930544],[-71.483170546,41.857014544],[-71.483284546,41.857102544],[-71.483353547,41.857136544],[-71.483543546,41.857228544],[-71.484291547,41.857602543],[-71.484863547,41.857872544],[-71.485474547,41.858158544],[-71.485634547,41.858239544],[-71.485733547,41.858288544],[-71.486473548,41.858647544],[-71.486771547,41.858784544],[-71.486862548,41.858830545],[-71.487030547,41.858910544],[-71.487337547,41.859044545],[-71.487421548,41.859081544],[-71.487398547,41.858901544],[-71.487381548,41.858851544],[-71.487354547,41.858720544],[-71.487274548,41.858398544],[-71.487227548,41.857935544],[-71.487236548,41.857733544],[-71.487234548,41.857680543],[-71.487231548,41.857606544],[-71.487234548,41.857470544],[-71.487246548,41.857342544],[-71.487242547,41.857018543],[-71.487224547,41.856956544],[-71.487198547,41.856831544],[-71.487190548,41.856697544],[-71.487174548,41.856597544],[-71.487123547,41.856268544],[-71.487095548,41.856142543],[-71.487080548,41.856113544],[-71.487073548,41.856093544],[-71.487057548,41.856047543],[-71.487023547,41.855986543],[-71.486908547,41.855677543],[-71.486869547,41.855553544],[-71.486731547,41.855286543],[-71.486631548,41.855161544],[-71.486567547,41.855102544],[-71.486453547,41.855015543],[-71.486104547,41.854307543],[-71.485922547,41.853917543],[-71.485697546,41.853548543],[-71.485636547,41.853527543],[-71.481165545,41.851184543],[-71.481106545,41.851112543],[-71.481034546,41.850945543],[-71.480994546,41.850875542],[-71.480974545,41.850829543],[-71.480954545,41.850784543],[-71.480843545,41.850571543],[-71.480840545,41.850522543],[-71.480908545,41.850253542],[-71.480911545,41.850205543],[-71.480907545,41.850147543],[-71.480889545,41.850089543],[-71.480812545,41.849923542],[-71.480779545,41.849863542],[-71.480750545,41.849798543],[-71.480745545,41.849744542],[-71.480688545,41.849617543],[-71.480631545,41.849435542],[-71.480619545,41.849361542],[-71.480504545,41.849263542],[-71.480503545,41.849224542],[-71.480503545,41.849205542],[-71.480552545,41.849093543],[-71.480600545,41.849053543],[-71.480583545,41.848948542],[-71.480577545,41.848785543],[-71.480575545,41.848601542],[-71.480569545,41.848541542],[-71.480577545,41.848272542],[-71.480553545,41.848183542],[-71.480597545,41.847953542],[-71.480585545,41.847890542],[-71.480581545,41.847835542],[-71.480592545,41.847580542],[-71.480600545,41.847523542],[-71.480617545,41.847467542],[-71.480641545,41.847409542],[-71.480743544,41.847219542],[-71.480715545,41.847166542],[-71.480697545,41.847102542],[-71.480643545,41.847062542],[-71.480597545,41.847020542],[-71.480571545,41.846911542],[-71.480538545,41.846830542],[-71.480540545,41.846759541],[-71.480551544,41.846701542],[-71.480575545,41.846644542],[-71.480602545,41.846613542],[-71.480509544,41.846632542],[-71.480404545,41.846634542],[-71.480465545,41.846566542],[-71.480523545,41.846516542],[-71.480560545,41.846470542],[-71.480485545,41.846144542],[-71.480489544,41.846068542],[-71.480498545,41.846014542],[-71.480497545,41.845958542],[-71.480484545,41.845898542],[-71.480457545,41.845834542],[-71.480419545,41.845770542],[-71.480373544,41.845710541],[-71.480283545,41.845611541],[-71.480255544,41.845552541],[-71.480250545,41.845420542],[-71.480229545,41.845350542],[-71.480095545,41.845375541],[-71.479324544,41.845635542],[-71.478699544,41.845841542],[-71.478493544,41.845917542],[-71.478271544,41.846001542],[-71.477966544,41.846100542],[-71.477776544,41.846154542],[-71.477600544,41.846207542],[-71.477089544,41.846371542],[-71.477150544,41.846653542],[-71.477203544,41.846840542],[-71.477264544,41.846966542],[-71.477303544,41.847020542],[-71.477348544,41.847092542],[-71.477509544,41.847321542],[-71.477676544,41.847569542],[-71.477814544,41.847763542],[-71.477837544,41.847805542],[-71.477982544,41.847981542],[-71.478271544,41.848408542],[-71.478561544,41.848851542],[-71.478844544,41.849289543],[-71.479263544,41.849865542],[-71.479317545,41.849945542],[-71.479652544,41.850312542],[-71.479584545,41.850365543],[-71.478867545,41.850621542],[-71.478844545,41.850579543],[-71.478668544,41.850407542],[-71.478592545,41.850323543],[-71.478508544,41.850243543],[-71.478432544,41.850163543],[-71.478371544,41.850109543],[-71.478294544,41.850075542],[-71.478256544,41.850068543],[-71.478197544,41.850064543],[-71.478172544,41.850068543],[-71.477737544,41.850094542],[-71.476837544,41.850151543],[-71.475281544,41.850254543],[-71.475327543,41.850628543],[-71.475397544,41.851079543],[-71.475426543,41.851265543],[-71.475494544,41.851742543],[-71.475502543,41.851773543],[-71.475586544,41.852326543],[-71.475662543,41.852925543],[-71.475677543,41.852993543],[-71.475677543,41.853016544],[-71.475700543,41.853089543],[-71.475723544,41.853119543],[-71.475281544,41.853398543],[-71.475243543,41.853428544],[-71.474945544,41.853627543],[-71.474846543,41.853699544],[-71.474747543,41.853791544],[-71.474564543,41.853981543],[-71.474457543,41.854096543],[-71.474319543,41.854214543],[-71.474068543,41.854393544],[-71.473676543,41.854639543],[-71.473638543,41.854657543],[-71.473729543,41.854662543],[-71.475105544,41.854779543]]]]}}"}, +{"type": "precinct", "typeId": 2410, "areaId": 25835, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":174,\"NAME\":\"2410\",\"SHAPE_Length\":0.03819608430424,\"SHAPE_Area\":-6.5111416867513e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.453072536,41.863324546],[-71.453751537,41.863728546],[-71.454628538,41.864312546],[-71.454773537,41.864403546],[-71.455460538,41.864846546],[-71.455963538,41.865174546],[-71.456543538,41.865540546],[-71.457771538,41.866352547],[-71.457870538,41.866417546],[-71.458076539,41.866566547],[-71.458344539,41.866753546],[-71.459579539,41.867634547],[-71.459655539,41.867688546],[-71.461304539,41.868859547],[-71.46160154,41.869069546],[-71.46219654,41.869500547],[-71.463982541,41.870808547],[-71.46432554,41.870568547],[-71.464493541,41.870427547],[-71.464676541,41.870163547],[-71.465034541,41.869618547],[-71.465248541,41.869267546],[-71.465446541,41.868458547],[-71.465630541,41.867665546],[-71.465782541,41.867104546],[-71.465820541,41.867005546],[-71.466145541,41.866691546],[-71.466125541,41.866654546],[-71.465981541,41.866547546],[-71.465897541,41.866475546],[-71.465877541,41.866451546],[-71.465866541,41.866410546],[-71.465874541,41.866356547],[-71.465942541,41.866280546],[-71.466187541,41.866043546],[-71.466522541,41.865731546],[-71.466591541,41.865662546],[-71.466690541,41.865609546],[-71.466782541,41.865605546],[-71.466934542,41.865639546],[-71.467247542,41.865742546],[-71.467606541,41.865830546],[-71.467827542,41.865853546],[-71.467857541,41.865853546],[-71.467880542,41.865696546],[-71.467888542,41.865448546],[-71.467903542,41.865185546],[-71.467781541,41.865162546],[-71.467323542,41.865010546],[-71.466782541,41.864796546],[-71.466301541,41.864621546],[-71.466240541,41.864594546],[-71.465904541,41.864464546],[-71.465683541,41.864327546],[-71.465393541,41.864098545],[-71.465134541,41.863845545],[-71.46508854,41.863800546],[-71.46502754,41.863716546],[-71.46483654,41.863488546],[-71.464607541,41.863148546],[-71.464516541,41.863015546],[-71.46429454,41.862709546],[-71.463951541,41.862221546],[-71.46349354,41.861546545],[-71.46328754,41.861271545],[-71.46267754,41.861390545],[-71.461891539,41.861523545],[-71.460876539,41.861721545],[-71.460236539,41.861828546],[-71.459488538,41.861962546],[-71.458801539,41.862091545],[-71.458092538,41.862217546],[-71.457980538,41.862238546],[-71.457695538,41.862290546],[-71.456543537,41.862519545],[-71.456279538,41.862576545],[-71.455200537,41.862809545],[-71.454636537,41.862938546],[-71.454540537,41.862960546],[-71.454453537,41.862980546],[-71.453752536,41.863148546],[-71.453415537,41.863228546],[-71.453072536,41.863324546]]]]}}"}, +{"type": "precinct", "typeId": 2411, "areaId": 25842, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":181,\"NAME\":\"2411\",\"SHAPE_Length\":0.057739781785649,\"SHAPE_Area\":-0.00015481903167847},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.442688534,41.866085546],[-71.442856533,41.866566547],[-71.443039534,41.867035547],[-71.443214534,41.867592547],[-71.443817534,41.867524547],[-71.443985534,41.867501547],[-71.444321534,41.869038547],[-71.444328534,41.869210547],[-71.444305534,41.869275547],[-71.444244534,41.869339548],[-71.444359534,41.869423547],[-71.444438534,41.869460547],[-71.444496534,41.869488547],[-71.444588534,41.869484547],[-71.445386534,41.870181547],[-71.446465535,41.870350548],[-71.446548535,41.870369548],[-71.446793535,41.870366548],[-71.446938535,41.870388548],[-71.447075535,41.870434547],[-71.447189535,41.870499547],[-71.447350535,41.870640548],[-71.447380535,41.870724548],[-71.447510536,41.870903547],[-71.447662536,41.871136547],[-71.447777535,41.871361548],[-71.447861536,41.871613548],[-71.448074536,41.872746548],[-71.448120535,41.873078548],[-71.448158535,41.873284548],[-71.448265536,41.873532548],[-71.448326536,41.873677548],[-71.448524536,41.874070548],[-71.448555536,41.874115548],[-71.448822536,41.874607549],[-71.448990536,41.874940548],[-71.449101536,41.874906548],[-71.455602538,41.874305548],[-71.46346454,41.873138548],[-71.466597542,41.872788548],[-71.466759542,41.872775547],[-71.464886541,41.871458547],[-71.464714541,41.871338547],[-71.463982541,41.870808547],[-71.46219654,41.869500547],[-71.46160154,41.869069546],[-71.461304539,41.868859547],[-71.459655539,41.867688546],[-71.459579539,41.867634547],[-71.458344539,41.866753546],[-71.458076539,41.866566547],[-71.457870538,41.866417546],[-71.457771538,41.866352547],[-71.456543538,41.865540546],[-71.455963538,41.865174546],[-71.455460538,41.864846546],[-71.454773537,41.864403546],[-71.454628538,41.864312546],[-71.453751537,41.863728546],[-71.453072536,41.863324546],[-71.452927537,41.863362546],[-71.452286537,41.863514546],[-71.451385536,41.863720546],[-71.451344536,41.863730546],[-71.450142536,41.864014546],[-71.449425535,41.864182546],[-71.449219536,41.864235546],[-71.449051536,41.864273546],[-71.448311535,41.864445547],[-71.448055535,41.864503547],[-71.447792535,41.864563547],[-71.446770535,41.864807546],[-71.445961534,41.865017546],[-71.445129534,41.865261547],[-71.444420534,41.865509547],[-71.444366534,41.865525546],[-71.443638534,41.865761547],[-71.443436533,41.865826547],[-71.443335534,41.865862547],[-71.442772534,41.866059547],[-71.442688534,41.866085546]]]]}}"}, +{"type": "precinct", "typeId": 2412, "areaId": 25836, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":175,\"NAME\":\"2412\",\"SHAPE_Length\":0.062049460349743,\"SHAPE_Area\":-0.00012814974320434},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.43071753,41.868340548],[-71.43085553,41.868348547],[-71.43096953,41.868355548],[-71.43134353,41.868382548],[-71.43194653,41.868420548],[-71.432648531,41.868470547],[-71.432846531,41.868481548],[-71.43320553,41.868485547],[-71.433449531,41.868466547],[-71.433586531,41.868451547],[-71.433655531,41.868439548],[-71.433723531,41.868428547],[-71.434517531,41.868245548],[-71.434883531,41.868161547],[-71.436836532,41.867661548],[-71.438499532,41.867245547],[-71.439438532,41.867016547],[-71.439774532,41.866928547],[-71.440010532,41.866871547],[-71.440277532,41.866795547],[-71.440331533,41.866860547],[-71.440758533,41.866726547],[-71.441130533,41.866603547],[-71.441185533,41.866585547],[-71.441284533,41.866555547],[-71.441948533,41.866333547],[-71.442484533,41.866153547],[-71.442688534,41.866085546],[-71.442772534,41.866059547],[-71.443335534,41.865862547],[-71.443436533,41.865826547],[-71.443638534,41.865761547],[-71.444366534,41.865525546],[-71.444420534,41.865509547],[-71.445129534,41.865261547],[-71.445961534,41.865017546],[-71.446770535,41.864807546],[-71.447792535,41.864563547],[-71.448055535,41.864503547],[-71.448311535,41.864445547],[-71.449051536,41.864273546],[-71.449219536,41.864235546],[-71.449425535,41.864182546],[-71.450142536,41.864014546],[-71.451344536,41.863730546],[-71.451385536,41.863720546],[-71.452286537,41.863514546],[-71.452927537,41.863362546],[-71.453072536,41.863324546],[-71.453003537,41.863274546],[-71.451614536,41.863583546],[-71.451314537,41.863658546],[-71.451292536,41.863604546],[-71.451245536,41.863481546],[-71.451188536,41.863377546],[-71.451130536,41.863186546],[-71.451101536,41.863124546],[-71.451090536,41.863064546],[-71.451098536,41.863006546],[-71.451159536,41.862819546],[-71.451166536,41.862761546],[-71.451151536,41.862666546],[-71.451091536,41.862481546],[-71.451053536,41.862426546],[-71.451001536,41.862379546],[-71.450934536,41.862332546],[-71.450851536,41.862290546],[-71.450767536,41.862257546],[-71.450579536,41.862198546],[-71.450529536,41.862180546],[-71.450363535,41.862202546],[-71.449219535,41.862481546],[-71.448494535,41.862664546],[-71.447746534,41.862854546],[-71.447350535,41.862954546],[-71.446976535,41.863041546],[-71.446587535,41.863133546],[-71.446236535,41.863205546],[-71.446045535,41.862625546],[-71.446001534,41.862510546],[-71.445862534,41.862149546],[-71.445694534,41.861664546],[-71.445335534,41.860577546],[-71.445152533,41.860096546],[-71.445061534,41.859841546],[-71.444786533,41.859059546],[-71.444687533,41.858796545],[-71.444649533,41.858628545],[-71.444649533,41.858605545],[-71.444664534,41.858525545],[-71.444878534,41.858353545],[-71.445229534,41.858048546],[-71.444885534,41.857815546],[-71.442986533,41.856564545],[-71.442812532,41.856452545],[-71.442069533,41.856957545],[-71.438428531,41.859401545],[-71.437268532,41.860196545],[-71.436311531,41.861009546],[-71.436276531,41.861051546],[-71.436171531,41.861082546],[-71.435213531,41.861579547],[-71.43474353,41.861567546],[-71.43362053,41.861444546],[-71.429851529,41.860896547],[-71.429718529,41.860890546],[-71.429718529,41.860924546],[-71.429764529,41.861222546],[-71.429779529,41.861359546],[-71.429840529,41.861821546],[-71.429901529,41.862225546],[-71.430161529,41.864216547],[-71.43022953,41.864682547],[-71.430259529,41.864903547],[-71.43054253,41.866982547],[-71.43069553,41.868142548],[-71.43071753,41.868340548]]]]}}"}, +{"type": "precinct", "typeId": 2413, "areaId": 25840, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":179,\"NAME\":\"2413\",\"SHAPE_Length\":0.040757910894027,\"SHAPE_Area\":-7.3272892285032e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.418839526,41.864878547],[-71.419083525,41.864903547],[-71.419540526,41.864949548],[-71.419724525,41.864972548],[-71.420494526,41.864807547],[-71.421082526,41.864674547],[-71.421600526,41.864544548],[-71.422015527,41.864449547],[-71.422661527,41.864300547],[-71.423553527,41.864056547],[-71.423744527,41.864579547],[-71.423759527,41.864617547],[-71.423950528,41.865136547],[-71.423988527,41.865231547],[-71.424232527,41.865872547],[-71.424385527,41.866288547],[-71.424477528,41.866524547],[-71.424487527,41.866541547],[-71.424728528,41.867196548],[-71.424730528,41.867214548],[-71.424965528,41.867867548],[-71.425209528,41.868515548],[-71.426018528,41.868317548],[-71.426155528,41.868279548],[-71.426445528,41.868218548],[-71.426704528,41.868180548],[-71.426842528,41.868164548],[-71.427015529,41.868153547],[-71.427246529,41.868138547],[-71.427582528,41.868138547],[-71.427631529,41.868141548],[-71.428169528,41.868172547],[-71.428871529,41.868222548],[-71.429009529,41.868230548],[-71.429282529,41.868246548],[-71.429642529,41.868267548],[-71.43001653,41.868290547],[-71.43071753,41.868340548],[-71.43069553,41.868142548],[-71.43054253,41.866982547],[-71.430259529,41.864903547],[-71.43022953,41.864682547],[-71.430161529,41.864216547],[-71.429901529,41.862225546],[-71.429840529,41.861821546],[-71.429779529,41.861359546],[-71.429764529,41.861222546],[-71.429718529,41.860924546],[-71.429718529,41.860890546],[-71.429549529,41.860857547],[-71.429298528,41.860838547],[-71.429155529,41.860826546],[-71.428896529,41.860803546],[-71.428714528,41.860787546],[-71.428668529,41.860779547],[-71.427754529,41.860865546],[-71.427567528,41.860858547],[-71.427339528,41.860856547],[-71.426446528,41.860741547],[-71.425964527,41.860760547],[-71.425486528,41.860585547],[-71.424556528,41.860334546],[-71.423775527,41.860390547],[-71.423217526,41.860377546],[-71.422106526,41.860141546],[-71.421631527,41.860088546],[-71.420957526,41.859949546],[-71.420414526,41.859807546],[-71.419920525,41.859751546],[-71.417707525,41.859504546],[-71.417508525,41.859457546],[-71.417586525,41.859906546],[-71.417656525,41.860551546],[-71.417759525,41.861100547],[-71.417862525,41.861512547],[-71.417840525,41.861584546],[-71.417953525,41.862164547],[-71.417992525,41.862419546],[-71.418037525,41.862809547],[-71.418305525,41.863479547],[-71.418221525,41.863972547],[-71.418839526,41.864878547]]]]}}"}, +{"type": "precinct", "typeId": 2414, "areaId": 25839, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":178,\"NAME\":\"2414\",\"SHAPE_Length\":0.041815880007222,\"SHAPE_Area\":-7.5379462751359e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.442812532,41.856452545],[-71.442986533,41.856564545],[-71.444885534,41.857815546],[-71.445229534,41.858048546],[-71.444878534,41.858353545],[-71.444664534,41.858525545],[-71.444649533,41.858605545],[-71.444649533,41.858628545],[-71.444687533,41.858796545],[-71.444786533,41.859059546],[-71.445061534,41.859841546],[-71.445152533,41.860096546],[-71.445335534,41.860577546],[-71.445694534,41.861664546],[-71.445862534,41.862149546],[-71.446001534,41.862510546],[-71.446045535,41.862625546],[-71.446236535,41.863205546],[-71.446587535,41.863133546],[-71.446976535,41.863041546],[-71.447350535,41.862954546],[-71.447746534,41.862854546],[-71.448494535,41.862664546],[-71.449219535,41.862481546],[-71.450363535,41.862202546],[-71.450529536,41.862180546],[-71.450579536,41.862198546],[-71.450767536,41.862257546],[-71.450851536,41.862290546],[-71.450934536,41.862332546],[-71.451001536,41.862379546],[-71.451053536,41.862426546],[-71.451091536,41.862481546],[-71.451151536,41.862666546],[-71.451166536,41.862761546],[-71.451159536,41.862819546],[-71.451098536,41.863006546],[-71.451090536,41.863064546],[-71.451101536,41.863124546],[-71.451130536,41.863186546],[-71.451188536,41.863377546],[-71.451245536,41.863481546],[-71.451292536,41.863604546],[-71.451314537,41.863658546],[-71.451614536,41.863583546],[-71.453003537,41.863274546],[-71.453072536,41.863324546],[-71.453415537,41.863228546],[-71.453752536,41.863148546],[-71.453735537,41.863095546],[-71.454292537,41.862950546],[-71.454521537,41.862899546],[-71.454666537,41.862866546],[-71.454944537,41.862235546],[-71.454964537,41.862191546],[-71.455223537,41.861565545],[-71.455605537,41.860672545],[-71.455627537,41.860627545],[-71.455711537,41.860421545],[-71.455867537,41.860059545],[-71.456192537,41.859307545],[-71.456360538,41.858914545],[-71.456665537,41.858216545],[-71.455994538,41.858010545],[-71.455887537,41.857979545],[-71.455750537,41.857933545],[-71.455574537,41.857884545],[-71.455132537,41.857746545],[-71.455017537,41.857705545],[-71.454880537,41.857651545],[-71.454750537,41.857594545],[-71.454552536,41.857499545],[-71.454483537,41.857457545],[-71.454414537,41.857415545],[-71.453781537,41.856934545],[-71.453606536,41.856812545],[-71.453430536,41.856697545],[-71.453300537,41.856629544],[-71.453171536,41.856575545],[-71.452927536,41.856491544],[-71.452751536,41.856449545],[-71.452667536,41.856434544],[-71.452324536,41.856388545],[-71.450493536,41.856209545],[-71.450348535,41.856198544],[-71.449348535,41.856083544],[-71.449219535,41.856072545],[-71.448776535,41.856003544],[-71.448708535,41.855984544],[-71.448631535,41.855965544],[-71.448509534,41.855923545],[-71.448387535,41.855873545],[-71.448273534,41.855820545],[-71.448181534,41.855770544],[-71.448006534,41.855664545],[-71.447754534,41.855481544],[-71.447685535,41.855416545],[-71.447609534,41.855355545],[-71.447487535,41.855210544],[-71.447144534,41.854741544],[-71.446960534,41.854473545],[-71.446838534,41.854283545],[-71.446785534,41.854214544],[-71.446976534,41.854000544],[-71.447235535,41.853691544],[-71.447578534,41.853279544],[-71.447667535,41.853176544],[-71.446803534,41.853752544],[-71.446729534,41.853777545],[-71.446653534,41.853820544],[-71.446561534,41.853882544],[-71.446504534,41.853933545],[-71.446418534,41.854015544],[-71.446317534,41.854079544],[-71.445878534,41.854364545],[-71.445599534,41.854557545],[-71.444962533,41.854992544],[-71.443839533,41.855771544],[-71.442943533,41.856365545],[-71.442812532,41.856452545]]]]}}"}, +{"type": "precinct", "typeId": 2415, "areaId": 25837, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":176,\"NAME\":\"2415\",\"SHAPE_Length\":0.036238621793644,\"SHAPE_Area\":-5.5437912059082e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.419824526,41.868361548],[-71.419829526,41.869063548],[-71.419876527,41.869782548],[-71.419868526,41.869827549],[-71.420205527,41.870643549],[-71.420381527,41.871059548],[-71.420772527,41.872587549],[-71.420999527,41.873406549],[-71.421086527,41.874035549],[-71.421201527,41.874738549],[-71.421267527,41.87507255],[-71.421394527,41.874787549],[-71.421677527,41.874150549],[-71.422310527,41.874245549],[-71.422699527,41.874295549],[-71.423560528,41.874080549],[-71.423279527,41.873410549],[-71.423676528,41.873318549],[-71.424057528,41.873246549],[-71.424850528,41.873070548],[-71.425064528,41.873536548],[-71.425117528,41.873623549],[-71.425163528,41.873650549],[-71.425224528,41.873635549],[-71.425278528,41.873585549],[-71.425789528,41.872658548],[-71.426292529,41.871849549],[-71.426460528,41.871914549],[-71.427063529,41.872113548],[-71.427094528,41.872067549],[-71.427315529,41.871724548],[-71.427589529,41.871403548],[-71.427498529,41.871346549],[-71.427299529,41.871205548],[-71.427200529,41.871117548],[-71.427277529,41.870804549],[-71.427391528,41.870385548],[-71.427460529,41.870091548],[-71.427559529,41.869717548],[-71.427612529,41.869442548],[-71.427635529,41.869358548],[-71.427673529,41.869187547],[-71.427711529,41.869084548],[-71.427742528,41.868973547],[-71.427795529,41.868847548],[-71.427826529,41.868748548],[-71.427872529,41.868626548],[-71.427902529,41.868500548],[-71.427940529,41.868233547],[-71.427895528,41.868233547],[-71.427635529,41.868214547],[-71.427609529,41.868213547],[-71.427631529,41.868141548],[-71.427582528,41.868138547],[-71.427246529,41.868138547],[-71.427015529,41.868153547],[-71.426842528,41.868164548],[-71.426704528,41.868180548],[-71.426445528,41.868218548],[-71.426155528,41.868279548],[-71.426018528,41.868317548],[-71.425209528,41.868515548],[-71.424965528,41.867867548],[-71.424730528,41.867214548],[-71.424728528,41.867196548],[-71.424487527,41.866541547],[-71.424477528,41.866524547],[-71.424385527,41.866288547],[-71.424232527,41.865872547],[-71.423988527,41.865231547],[-71.423950528,41.865136547],[-71.423759527,41.864617547],[-71.423744527,41.864579547],[-71.423553527,41.864056547],[-71.422661527,41.864300547],[-71.422015527,41.864449547],[-71.421600526,41.864544548],[-71.421082526,41.864674547],[-71.420494526,41.864807547],[-71.419724525,41.864972548],[-71.419540526,41.864949548],[-71.419083525,41.864903547],[-71.418839526,41.864878547],[-71.419054526,41.865512548],[-71.419251526,41.866203547],[-71.419418526,41.866818548],[-71.419824526,41.868361548]]]]}}"}, +{"type": "precinct", "typeId": 2416, "areaId": 25838, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":177,\"NAME\":\"2416\",\"SHAPE_Length\":0.072601295240018,\"SHAPE_Area\":-0.00020135893443997},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.421267527,41.87507255],[-71.421343527,41.875449549],[-71.421429527,41.876168549],[-71.421485527,41.87631855],[-71.421605527,41.876625549],[-71.421628527,41.87668555],[-71.421632527,41.876721549],[-71.421683527,41.87722055],[-71.422153528,41.87857755],[-71.423784528,41.878372549],[-71.425148528,41.87818955],[-71.425300528,41.878176549],[-71.42812453,41.87780355],[-71.43006753,41.877533549],[-71.43180253,41.877308549],[-71.432025531,41.877243549],[-71.43224953,41.87717955],[-71.43242053,41.877130549],[-71.433200531,41.87690655],[-71.433240531,41.87690655],[-71.433306531,41.87690655],[-71.433462531,41.87690655],[-71.433728531,41.87690755],[-71.434386532,41.876909549],[-71.434821531,41.876911549],[-71.434997531,41.876911549],[-71.436914532,41.876548549],[-71.438102532,41.876308549],[-71.438219533,41.876300549],[-71.440047533,41.876192549],[-71.441396533,41.876112549],[-71.441856533,41.876019549],[-71.442806534,41.875838548],[-71.443586534,41.875682548],[-71.444002534,41.875606548],[-71.444134535,41.875603548],[-71.444219534,41.875594549],[-71.444233535,41.875593549],[-71.445366535,41.875553549],[-71.446700535,41.875505548],[-71.447302535,41.875060548],[-71.447402535,41.875007548],[-71.447768535,41.875341549],[-71.448990536,41.874940548],[-71.448822536,41.874607549],[-71.448555536,41.874115548],[-71.448524536,41.874070548],[-71.448326536,41.873677548],[-71.448265536,41.873532548],[-71.448158535,41.873284548],[-71.448120535,41.873078548],[-71.448074536,41.872746548],[-71.447861536,41.871613548],[-71.447777535,41.871361548],[-71.447662536,41.871136547],[-71.447510536,41.870903547],[-71.447380535,41.870724548],[-71.447350535,41.870640548],[-71.447189535,41.870499547],[-71.447075535,41.870434547],[-71.446938535,41.870388548],[-71.446793535,41.870366548],[-71.446548535,41.870369548],[-71.446465535,41.870350548],[-71.445386534,41.870181547],[-71.444588534,41.869484547],[-71.444496534,41.869488547],[-71.444438534,41.869460547],[-71.444359534,41.869423547],[-71.444244534,41.869339548],[-71.444305534,41.869275547],[-71.444328534,41.869210547],[-71.444321534,41.869038547],[-71.443985534,41.867501547],[-71.443817534,41.867524547],[-71.443214534,41.867592547],[-71.443039534,41.867035547],[-71.442856533,41.866566547],[-71.442688534,41.866085546],[-71.442484533,41.866153547],[-71.441948533,41.866333547],[-71.441284533,41.866555547],[-71.441185533,41.866585547],[-71.441130533,41.866603547],[-71.440758533,41.866726547],[-71.440331533,41.866860547],[-71.440277532,41.866795547],[-71.440010532,41.866871547],[-71.439774532,41.866928547],[-71.439438532,41.867016547],[-71.438499532,41.867245547],[-71.436836532,41.867661548],[-71.434883531,41.868161547],[-71.434517531,41.868245548],[-71.433723531,41.868428547],[-71.433655531,41.868439548],[-71.433586531,41.868451547],[-71.433449531,41.868466547],[-71.43320553,41.868485547],[-71.432846531,41.868481548],[-71.432648531,41.868470547],[-71.43194653,41.868420548],[-71.43134353,41.868382548],[-71.43096953,41.868355548],[-71.43085553,41.868348547],[-71.43071753,41.868340548],[-71.43001653,41.868290547],[-71.429642529,41.868267548],[-71.429282529,41.868246548],[-71.429009529,41.868230548],[-71.428871529,41.868222548],[-71.428169528,41.868172547],[-71.427631529,41.868141548],[-71.427609529,41.868213547],[-71.427635529,41.868214547],[-71.427895528,41.868233547],[-71.427940529,41.868233547],[-71.427902529,41.868500548],[-71.427872529,41.868626548],[-71.427826529,41.868748548],[-71.427795529,41.868847548],[-71.427742528,41.868973547],[-71.427711529,41.869084548],[-71.427673529,41.869187547],[-71.427635529,41.869358548],[-71.427612529,41.869442548],[-71.427559529,41.869717548],[-71.427460529,41.870091548],[-71.427391528,41.870385548],[-71.427277529,41.870804549],[-71.427200529,41.871117548],[-71.427299529,41.871205548],[-71.427498529,41.871346549],[-71.427589529,41.871403548],[-71.427315529,41.871724548],[-71.427094528,41.872067549],[-71.427063529,41.872113548],[-71.426460528,41.871914549],[-71.426292529,41.871849549],[-71.425789528,41.872658548],[-71.425278528,41.873585549],[-71.425224528,41.873635549],[-71.425163528,41.873650549],[-71.425117528,41.873623549],[-71.425064528,41.873536548],[-71.424850528,41.873070548],[-71.424057528,41.873246549],[-71.423676528,41.873318549],[-71.423279527,41.873410549],[-71.423560528,41.874080549],[-71.422699527,41.874295549],[-71.422310527,41.874245549],[-71.421677527,41.874150549],[-71.421394527,41.874787549],[-71.421267527,41.87507255]]]]}}"}, +{"type": "precinct", "typeId": 2501, "areaId": 26076, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":415,\"NAME\":\"2501\",\"SHAPE_Length\":0.32779735155395,\"SHAPE_Area\":-0.0031862946260022},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.488020554,41.978364567],[-71.488020554,41.978422567],[-71.488007554,41.978440567],[-71.487859554,41.978638567],[-71.487833554,41.978665567],[-71.487774554,41.978705567],[-71.487713554,41.978737567],[-71.487651554,41.978778567],[-71.487364554,41.979093567],[-71.487929554,41.979162567],[-71.488045554,41.979175567],[-71.488152554,41.979188567],[-71.488283555,41.979204567],[-71.488727555,41.979259567],[-71.489029555,41.979295567],[-71.489547555,41.979358567],[-71.489687555,41.979372567],[-71.491746555,41.979620567],[-71.493721556,41.979859567],[-71.499427558,41.980549567],[-71.499464558,41.980520567],[-71.499505558,41.980489567],[-71.502271559,41.978582567],[-71.50419956,41.978576567],[-71.508772561,41.978563567],[-71.509309561,41.978561567],[-71.511650562,41.978554566],[-71.512118562,41.978553566],[-71.512558562,41.978552566],[-71.512421562,41.978309566],[-71.512574562,41.978272567],[-71.512735563,41.978551566],[-71.513498563,41.978549566],[-71.517781564,41.978536566],[-71.518654564,41.978533566],[-71.518909564,41.978533566],[-71.520031565,41.978865566],[-71.521421565,41.979276566],[-71.521689566,41.979355566],[-71.521657565,41.979409566],[-71.522088565,41.979536566],[-71.522480565,41.979652566],[-71.522509566,41.979598567],[-71.523547566,41.979903566],[-71.524594567,41.980210566],[-71.524602566,41.980192566],[-71.524633567,41.980076566],[-71.524671567,41.979932566],[-71.524708566,41.979794567],[-71.524770567,41.979562566],[-71.524780566,41.979523566],[-71.524821566,41.979392566],[-71.524879566,41.979206566],[-71.524913566,41.979086566],[-71.524940566,41.978989566],[-71.525002567,41.978756566],[-71.525101567,41.978424566],[-71.525192566,41.978100566],[-71.525299566,41.977776566],[-71.525375567,41.977623566],[-71.525414567,41.977562566],[-71.525475566,41.977505566],[-71.525551567,41.977414566],[-71.525681567,41.977299566],[-71.526108567,41.976963566],[-71.526726567,41.976494566],[-71.527122567,41.976193565],[-71.527405567,41.975998565],[-71.527832567,41.975678566],[-71.527946567,41.975598565],[-71.528137567,41.975445566],[-71.528206567,41.975396565],[-71.528282568,41.975335565],[-71.528305567,41.975323565],[-71.528914567,41.974853565],[-71.529068567,41.974732565],[-71.529976568,41.974038565],[-71.530708568,41.973488565],[-71.531166568,41.973141565],[-71.531433568,41.972939565],[-71.531761568,41.972680564],[-71.532040568,41.972443564],[-71.532140569,41.972353564],[-71.532188568,41.972317565],[-71.532240569,41.972274564],[-71.532295569,41.972230564],[-71.532486568,41.972073564],[-71.532814568,41.971794565],[-71.533379568,41.971230564],[-71.533691569,41.970925564],[-71.534241569,41.970372564],[-71.534470569,41.970124564],[-71.534637569,41.969895564],[-71.534813569,41.969670564],[-71.534966569,41.969410564],[-71.535035569,41.969312564],[-71.535161569,41.969131563],[-71.53522557,41.969040564],[-71.535624569,41.968436564],[-71.535706569,41.968312563],[-71.535957569,41.967961563],[-71.53619457,41.967648563],[-71.536400569,41.967385564],[-71.536560569,41.967141563],[-71.53668257,41.966931563],[-71.53675857,41.966748564],[-71.53681957,41.966545563],[-71.536865569,41.966339563],[-71.536949569,41.965653563],[-71.53701057,41.965351563],[-71.53710957,41.965042563],[-71.53727057,41.964650563],[-71.53744557,41.964291562],[-71.537628569,41.963986563],[-71.53779657,41.963684563],[-71.537956569,41.963345563],[-71.538094569,41.963021563],[-71.53823957,41.962777562],[-71.538483569,41.962471563],[-71.53916257,41.961666562],[-71.53951357,41.961296562],[-71.53971957,41.961113562],[-71.53992757,41.960938562],[-71.539963571,41.960907562],[-71.54023057,41.960705562],[-71.54074957,41.960255561],[-71.541046571,41.959961562],[-71.54138957,41.959649562],[-71.54160357,41.959460561],[-71.541710571,41.959366562],[-71.541939571,41.959134562],[-71.542084571,41.958958562],[-71.542183571,41.958813561],[-71.542274571,41.958645561],[-71.542351571,41.958435562],[-71.542419571,41.958100561],[-71.542557571,41.957066561],[-71.542625571,41.956730561],[-71.542717571,41.956490562],[-71.54287057,41.956204561],[-71.543037571,41.955967561],[-71.543205571,41.955788561],[-71.543434571,41.955586561],[-71.543701571,41.955391561],[-71.543892571,41.95526256],[-71.544197571,41.955098561],[-71.544479571,41.954975561],[-71.544853572,41.95485756],[-71.545158571,41.954789561],[-71.545540572,41.954724561],[-71.546028572,41.954651561],[-71.546471572,41.954590561],[-71.546982573,41.954552561],[-71.547394573,41.954552561],[-71.547798573,41.95458356],[-71.548515573,41.954674561],[-71.548935572,41.954705561],[-71.549316573,41.954708561],[-71.549652573,41.95469756],[-71.550072573,41.95466356],[-71.550545573,41.954617561],[-71.550949573,41.95460556],[-71.551239573,41.95460256],[-71.551605574,41.95462856],[-71.551879574,41.95466156],[-71.552048574,41.95468256],[-71.552444574,41.95472456],[-71.552802469,41.954979602],[-71.552872575,41.95502956],[-71.552935982,41.955065711],[-71.553093574,41.955155561],[-71.553291574,41.955319561],[-71.553368574,41.955388561],[-71.553513575,41.95551756],[-71.553764575,41.955807561],[-71.554001575,41.956059561],[-71.554298574,41.956314561],[-71.554550575,41.956540561],[-71.554749575,41.956711561],[-71.554893575,41.956917561],[-71.554993575,41.957112561],[-71.555199575,41.957638561],[-71.555344575,41.957917561],[-71.555588575,41.958226561],[-71.555786575,41.958401561],[-71.556061575,41.958584561],[-71.556084575,41.958599561],[-71.556366575,41.958748561],[-71.556396576,41.958767561],[-71.556740575,41.958912561],[-71.557114576,41.959099561],[-71.557419575,41.959244561],[-71.557701576,41.959389561],[-71.557989576,41.959529561],[-71.559105576,41.960007561],[-71.559486576,41.960160561],[-71.560852577,41.960648561],[-71.561234577,41.960778562],[-71.561531578,41.960904561],[-71.561729577,41.961033562],[-71.561852577,41.961155561],[-71.562035578,41.961300562],[-71.562294577,41.961415561],[-71.562322578,41.961417562],[-71.562592578,41.961441562],[-71.562943578,41.961434561],[-71.563240578,41.961392561],[-71.563515578,41.961399562],[-71.563843578,41.961457562],[-71.564835578,41.961758561],[-71.565247579,41.961865562],[-71.565651578,41.961937561],[-71.565994579,41.961964562],[-71.566330579,41.961979561],[-71.566445579,41.961991561],[-71.566597579,41.962006562],[-71.566788579,41.962052561],[-71.566963579,41.962140562],[-71.567482579,41.962437562],[-71.56777258,41.962571562],[-71.568069579,41.962670562],[-71.56842858,41.962738561],[-71.56876458,41.962819562],[-71.56897758,41.962895561],[-71.56913858,41.962975562],[-71.56931358,41.963093562],[-71.56946658,41.963211562],[-71.56974058,41.963448562],[-71.57003858,41.963646562],[-71.57029758,41.963826561],[-71.57048758,41.963900562],[-71.570518581,41.963906561],[-71.570679581,41.963925561],[-71.570908581,41.963913562],[-71.571983581,41.963734562],[-71.572212581,41.963692561],[-71.572380581,41.963604562],[-71.572708581,41.963356561],[-71.572823582,41.963284561],[-71.573029581,41.963177562],[-71.573265581,41.963078562],[-71.573586581,41.962933561],[-71.573845581,41.962784562],[-71.574074581,41.962723561],[-71.574432582,41.962674561],[-71.574760582,41.962651562],[-71.575020582,41.962620561],[-71.575241582,41.962571562],[-71.575300582,41.962548561],[-71.575569582,41.962445561],[-71.575806582,41.962349561],[-71.575920582,41.962273561],[-71.576050582,41.962159561],[-71.576218582,41.961960561],[-71.576424582,41.961804561],[-71.576820583,41.961518561],[-71.576996583,41.961380561],[-71.577309583,41.961182561],[-71.577927583,41.960717561],[-71.578117583,41.960553561],[-71.578316583,41.960331561],[-71.578392583,41.96014156],[-71.578476583,41.959957561],[-71.578552583,41.959740561],[-71.578606583,41.959568561],[-71.578598582,41.95942056],[-71.578575583,41.95922956],[-71.578575583,41.95906956],[-71.578636582,41.95873356],[-71.578697582,41.95850856],[-71.578812582,41.95814256],[-71.578865583,41.95805456],[-71.578903583,41.95797856],[-71.579193583,41.95759256],[-71.580399583,41.958496561],[-71.581192583,41.959099561],[-71.582024584,41.959721561],[-71.582204584,41.959859561],[-71.582497585,41.96008356],[-71.582916584,41.96039256],[-71.583282584,41.960675561],[-71.584427585,41.961514561],[-71.584442585,41.961529561],[-71.584526584,41.961590561],[-71.584961585,41.961934561],[-71.585579585,41.962395561],[-71.586113585,41.962803561],[-71.586510586,41.963116561],[-71.587143586,41.963604561],[-71.587379586,41.963795561],[-71.587692586,41.964020561],[-71.587776586,41.964085561],[-71.587982586,41.964230562],[-71.588211586,41.964371561],[-71.588501587,41.964531561],[-71.588737587,41.964650561],[-71.588910587,41.964726561],[-71.588989587,41.964760561],[-71.589279587,41.964856562],[-71.589546587,41.964936561],[-71.589844587,41.965016561],[-71.590446587,41.965168562],[-71.590942587,41.965283562],[-71.592354588,41.965630561],[-71.592743588,41.965718561],[-71.593102588,41.965821561],[-71.593758588,41.965966562],[-71.594139589,41.966057561],[-71.594490589,41.966153561],[-71.594711588,41.966206561],[-71.594963588,41.966275562],[-71.595131589,41.966320561],[-71.595390588,41.966412562],[-71.595627589,41.966492562],[-71.596581589,41.966942562],[-71.596710589,41.967016562],[-71.596542589,41.966187561],[-71.596374589,41.965152561],[-71.596039589,41.963150561],[-71.595988589,41.962917561],[-71.595813589,41.962129561],[-71.595097588,41.95863756],[-71.594719588,41.956791559],[-71.593482587,41.950769559],[-71.592116586,41.944115557],[-71.591962586,41.943366557],[-71.590108585,41.934106556],[-71.585808584,41.934406556],[-71.585707584,41.934414556],[-71.57436958,41.935323557],[-71.564698577,41.936089557],[-71.563119576,41.936225557],[-71.562107576,41.936306557],[-71.559964576,41.936461557],[-71.555305574,41.936798557],[-71.554457573,41.936866557],[-71.554154574,41.936903557],[-71.554061574,41.936905557],[-71.552908573,41.937005557],[-71.551971573,41.937065557],[-71.551308573,41.937106557],[-71.551197573,41.937115558],[-71.54239557,41.937807558],[-71.538510568,41.938223558],[-71.528402565,41.939306558],[-71.526979565,41.939492559],[-71.526738565,41.939523559],[-71.521506563,41.940206559],[-71.51207656,41.941275559],[-71.51180556,41.941306559],[-71.508805559,41.94150656],[-71.505138558,41.94194956],[-71.504496557,41.94204656],[-71.504104557,41.94210656],[-71.503104557,41.94220656],[-71.501905557,41.94240656],[-71.500740557,41.94252456],[-71.496301555,41.94297256],[-71.491992553,41.94340856],[-71.491333553,41.94352456],[-71.490148553,41.94369256],[-71.489800553,41.94378556],[-71.489488553,41.94385756],[-71.489037553,41.94393556],[-71.488953552,41.94395356],[-71.488870553,41.94397956],[-71.488792553,41.94401856],[-71.488656553,41.94409856],[-71.488624552,41.94414956],[-71.488574553,41.944208561],[-71.488510553,41.94425156],[-71.488301553,41.944353561],[-71.488294552,41.94437156],[-71.488229553,41.94440056],[-71.488175552,41.944413561],[-71.488137552,41.944413561],[-71.488100552,41.94440656],[-71.488061552,41.944339561],[-71.487983552,41.94422856],[-71.487947552,41.944161561],[-71.487901552,41.94411456],[-71.487855553,41.94409056],[-71.487810552,41.94407056],[-71.487747552,41.94405056],[-71.487676552,41.94403556],[-71.487607552,41.94401456],[-71.487534552,41.94398156],[-71.487402552,41.943908561],[-71.487107552,41.943770561],[-71.487022552,41.94373956],[-71.486969552,41.943694561],[-71.486940552,41.94364156],[-71.486911552,41.94343956],[-71.486882552,41.94337156],[-71.486831552,41.94331456],[-71.486753552,41.94327056],[-71.486602552,41.94319856],[-71.486509552,41.94315956],[-71.486421552,41.943129561],[-71.486347552,41.94308856],[-71.486286552,41.94304356],[-71.486224551,41.943013561],[-71.486050552,41.94298556],[-71.485912551,41.94294256],[-71.485836551,41.94291456],[-71.485708552,41.94284756],[-71.485503551,41.94272456],[-71.485454552,41.942683561],[-71.485368551,41.942566561],[-71.485304551,41.94251556],[-71.485232551,41.94248456],[-71.485143552,41.94245856],[-71.485040551,41.94244356],[-71.484940551,41.94244456],[-71.484859551,41.942468561],[-71.484788551,41.94251056],[-71.484675551,41.94260156],[-71.484627551,41.94264556],[-71.484583551,41.942700561],[-71.484520551,41.94272756],[-71.484562551,41.94278556],[-71.484619551,41.94294056],[-71.484748551,41.94317656],[-71.484775551,41.943247561],[-71.484749551,41.94331756],[-71.484731551,41.94338756],[-71.484725551,41.94344456],[-71.484723551,41.943502561],[-71.484734552,41.94356356],[-71.484754552,41.943623561],[-71.484787551,41.94368756],[-71.484841551,41.94374456],[-71.484840551,41.94376456],[-71.484656552,41.94379556],[-71.484586551,41.94382456],[-71.484534551,41.94386456],[-71.484478551,41.94392156],[-71.484427551,41.943928561],[-71.484375551,41.94388056],[-71.484360551,41.94391856],[-71.484295551,41.943945561],[-71.484226551,41.943985561],[-71.484122551,41.94407556],[-71.484066551,41.944130561],[-71.484017551,41.94419256],[-71.483979551,41.944256561],[-71.483963551,41.94433056],[-71.483960551,41.944401561],[-71.483970551,41.94446356],[-71.484086551,41.94463856],[-71.484126551,41.944691561],[-71.484170551,41.944762561],[-71.484197551,41.94481556],[-71.484249551,41.944985561],[-71.484244551,41.945062561],[-71.484189552,41.945188561],[-71.484168551,41.945252561],[-71.484166551,41.945316561],[-71.484214551,41.945381561],[-71.484296551,41.945473561],[-71.484341551,41.945539561],[-71.484332551,41.945606561],[-71.484258551,41.945735561],[-71.484239551,41.945792561],[-71.484242551,41.945849561],[-71.484273551,41.945898561],[-71.484352551,41.945938561],[-71.484549551,41.945912561],[-71.484800551,41.945916561],[-71.484978551,41.945916561],[-71.485057551,41.945929561],[-71.485149552,41.945933561],[-71.485256552,41.945905561],[-71.485366551,41.945891561],[-71.485462551,41.945898561],[-71.485561551,41.945919561],[-71.485648552,41.945956561],[-71.485717551,41.946021561],[-71.485799552,41.946078561],[-71.485871552,41.946140561],[-71.485911552,41.946181561],[-71.485942552,41.946211561],[-71.486032552,41.946259561],[-71.486144552,41.946272561],[-71.486573552,41.946273561],[-71.486677552,41.946279561],[-71.486754552,41.946290561],[-71.486854552,41.946313561],[-71.486940552,41.946347561],[-71.487014552,41.946402561],[-71.487055553,41.946450561],[-71.487077552,41.946524561],[-71.487082552,41.946642561],[-71.487111552,41.946701561],[-71.487269553,41.946942561],[-71.487389552,41.947057561],[-71.487440552,41.947122561],[-71.487447552,41.947198561],[-71.487409552,41.947365561],[-71.487338552,41.947540561],[-71.487248553,41.947721561],[-71.487244552,41.947849561],[-71.487211553,41.947913561],[-71.487156552,41.947978561],[-71.487027552,41.948102561],[-71.486908552,41.948197561],[-71.486857552,41.948245561],[-71.486858552,41.948315561],[-71.486896552,41.948362561],[-71.486948552,41.948416562],[-71.486978553,41.948473562],[-71.487024552,41.948590562],[-71.487029552,41.948657561],[-71.487025552,41.948720561],[-71.486993552,41.948777561],[-71.486946552,41.948831561],[-71.486943552,41.948895561],[-71.486966552,41.948952561],[-71.487000552,41.949007561],[-71.487005552,41.949067561],[-71.486975553,41.949131561],[-71.486869552,41.949230562],[-71.486843552,41.949292562],[-71.486842552,41.949432561],[-71.486826552,41.949621562],[-71.486786552,41.949681562],[-71.486729552,41.949741562],[-71.486701552,41.949803562],[-71.486701552,41.949866561],[-71.486717552,41.949934562],[-71.486763553,41.950010562],[-71.486873552,41.950166562],[-71.486937553,41.950281562],[-71.486974553,41.950337562],[-71.487023552,41.950384562],[-71.487116552,41.950463562],[-71.487143552,41.950475562],[-71.487190553,41.950512562],[-71.487255553,41.950557562],[-71.487324553,41.950599562],[-71.487437552,41.950693562],[-71.487478553,41.950757562],[-71.487482553,41.950822562],[-71.487456552,41.950882562],[-71.487427552,41.950910562],[-71.487411553,41.950925562],[-71.487282553,41.950992562],[-71.487248553,41.951007562],[-71.487188553,41.951026562],[-71.487129553,41.951051562],[-71.487129553,41.951117562],[-71.487179552,41.951181562],[-71.487229553,41.951233562],[-71.487264553,41.951293562],[-71.487293553,41.951359562],[-71.487338552,41.951423562],[-71.487377552,41.951489562],[-71.487432552,41.951637562],[-71.487444553,41.951699562],[-71.487442553,41.951756562],[-71.487393552,41.951943562],[-71.487387553,41.952002562],[-71.487401553,41.952064562],[-71.487410553,41.952107562],[-71.487410553,41.952291562],[-71.487416553,41.952352562],[-71.487435552,41.952409562],[-71.487471552,41.952457562],[-71.487689553,41.952503562],[-71.487835553,41.952559562],[-71.487887553,41.952608562],[-71.487901553,41.952676562],[-71.487882553,41.952730562],[-71.487854553,41.952786562],[-71.487751553,41.952880562],[-71.487747553,41.952948562],[-71.487621553,41.953124562],[-71.487615553,41.953181562],[-71.487724552,41.953472562],[-71.487754553,41.953530562],[-71.487769553,41.953591562],[-71.487846553,41.953797563],[-71.487935553,41.954027562],[-71.487954553,41.954079562],[-71.488071553,41.954385562],[-71.488072553,41.954443562],[-71.488088553,41.954501563],[-71.488141553,41.954621563],[-71.488150553,41.954693563],[-71.488149553,41.954814562],[-71.488129553,41.954879562],[-71.488072553,41.954949563],[-71.488021553,41.954990563],[-71.487941553,41.955042563],[-71.487891553,41.955069563],[-71.487830553,41.955111562],[-71.487766553,41.955164563],[-71.487692553,41.955214563],[-71.487635553,41.955262563],[-71.487624553,41.955331563],[-71.487629553,41.955463562],[-71.487684553,41.955603563],[-71.487691553,41.955675563],[-71.487690553,41.955795562],[-71.487664553,41.955861563],[-71.487597553,41.955968562],[-71.487547553,41.956008562],[-71.487491553,41.956021563],[-71.487466553,41.956023563],[-71.487419553,41.956063563],[-71.487367553,41.956104563],[-71.487256552,41.956205563],[-71.487128553,41.956301563],[-71.487049553,41.956333563],[-71.486970553,41.956323563],[-71.486891553,41.956288563],[-71.486811553,41.956240563],[-71.486683553,41.956137563],[-71.486553553,41.956068563],[-71.486478552,41.956018563],[-71.486373553,41.955907563],[-71.486303552,41.955869563],[-71.486224552,41.955847563],[-71.486145552,41.955844563],[-71.486062552,41.955847563],[-71.485986552,41.955860563],[-71.485909552,41.955848563],[-71.485852552,41.955803563],[-71.485758552,41.955801563],[-71.485671553,41.955819563],[-71.485594552,41.955842563],[-71.485509552,41.955862563],[-71.485231552,41.955901563],[-71.485142552,41.955925563],[-71.485077552,41.955964563],[-71.484960552,41.956086563],[-71.484973552,41.956146563],[-71.485084552,41.956238563],[-71.485200552,41.956320563],[-71.485243552,41.956366563],[-71.485272552,41.956420563],[-71.485315552,41.956474563],[-71.485362552,41.956523563],[-71.485420552,41.956562563],[-71.485476553,41.956610563],[-71.485484552,41.956666563],[-71.485408552,41.956681563],[-71.485360552,41.956702563],[-71.485311552,41.956750563],[-71.485314552,41.956819563],[-71.485354552,41.956881563],[-71.485442552,41.956982563],[-71.485470552,41.957041563],[-71.485513553,41.957100563],[-71.485570552,41.957148563],[-71.485633552,41.957172563],[-71.485781552,41.957133563],[-71.485865553,41.957143563],[-71.485909552,41.957173563],[-71.485993552,41.957238563],[-71.485980553,41.957292563],[-71.485985552,41.957358563],[-71.486017553,41.957414563],[-71.486135553,41.957529563],[-71.486233553,41.957635563],[-71.486306553,41.957663563],[-71.486362552,41.957690563],[-71.486368553,41.957810563],[-71.486420552,41.957863563],[-71.486452553,41.957913563],[-71.486456553,41.958085563],[-71.486476552,41.958147564],[-71.486501553,41.958203563],[-71.486538553,41.958249563],[-71.486613552,41.958283564],[-71.486782553,41.958346563],[-71.486970553,41.958388563],[-71.487153553,41.958415563],[-71.487292553,41.958464563],[-71.487313553,41.958488563],[-71.487313553,41.958552563],[-71.487287553,41.958615564],[-71.487152553,41.958683563],[-71.487087553,41.958731564],[-71.487052553,41.958762563],[-71.486978553,41.958822563],[-71.486869553,41.958939563],[-71.486747553,41.959104563],[-71.486716553,41.959166563],[-71.486688553,41.959290563],[-71.486689553,41.959410564],[-71.486701553,41.959474563],[-71.486726553,41.959538563],[-71.486738553,41.959600563],[-71.486717553,41.959661563],[-71.486667553,41.959713563],[-71.486644553,41.959777563],[-71.486638553,41.959844564],[-71.486614553,41.959902564],[-71.486613553,41.960022564],[-71.486583553,41.960080564],[-71.486520553,41.960113564],[-71.486375553,41.960169564],[-71.486338553,41.960227564],[-71.486250553,41.960237564],[-71.486163553,41.960260563],[-71.486095553,41.960284564],[-71.486063553,41.960320563],[-71.486064553,41.960450564],[-71.486075553,41.960510564],[-71.486100553,41.960578564],[-71.486162553,41.960629563],[-71.486308553,41.960687564],[-71.486456553,41.960732564],[-71.486545553,41.960747563],[-71.486647553,41.960747563],[-71.486747553,41.960752564],[-71.486829553,41.960779564],[-71.486886553,41.960819564],[-71.486980553,41.960913564],[-71.487015553,41.960964564],[-71.487039553,41.961035564],[-71.487045553,41.961094564],[-71.487041553,41.961163564],[-71.487012553,41.961222564],[-71.486991553,41.961240564],[-71.486952553,41.961274564],[-71.486911553,41.961322564],[-71.486929553,41.961389564],[-71.486993553,41.961434564],[-71.487165553,41.961494564],[-71.487221553,41.961544564],[-71.487284553,41.961648564],[-71.487289553,41.961711564],[-71.487303553,41.961770564],[-71.487341553,41.961818564],[-71.487370553,41.961874564],[-71.487421553,41.961929564],[-71.487437553,41.961986564],[-71.487437553,41.962126564],[-71.487431553,41.962203564],[-71.487409553,41.962276564],[-71.487372553,41.962328564],[-71.487319553,41.962367564],[-71.487290554,41.962435564],[-71.487292553,41.962495564],[-71.487314553,41.962557564],[-71.487373553,41.962611564],[-71.487446554,41.962660564],[-71.487497553,41.962714564],[-71.487523554,41.962772564],[-71.487555553,41.962826564],[-71.487576553,41.962880564],[-71.487578553,41.962998564],[-71.487588553,41.963036564],[-71.487625554,41.963147564],[-71.487654553,41.963259564],[-71.487642553,41.963319564],[-71.487594553,41.963371564],[-71.487527553,41.963408564],[-71.487462553,41.963451564],[-71.487316553,41.963516564],[-71.487118553,41.963619564],[-71.487072553,41.963662564],[-71.487033553,41.963715564],[-71.487027553,41.963777564],[-71.487027553,41.963994564],[-71.487015553,41.964062564],[-71.486986553,41.964121564],[-71.486973553,41.964246564],[-71.486968553,41.964358564],[-71.486960553,41.964423565],[-71.486943553,41.964481565],[-71.486911553,41.964537564],[-71.486816553,41.964630564],[-71.486808553,41.964663564],[-71.486781553,41.964721564],[-71.486781553,41.964831565],[-71.486827553,41.964895565],[-71.486887553,41.964937565],[-71.486919553,41.964987565],[-71.486924553,41.965106565],[-71.486908553,41.965424565],[-71.486890553,41.965479565],[-71.486850553,41.965543565],[-71.486799553,41.965600565],[-71.486746553,41.965640565],[-71.486676553,41.965681564],[-71.486629553,41.965722564],[-71.486591553,41.965779564],[-71.486535553,41.965829565],[-71.486476553,41.965872565],[-71.486439553,41.965919565],[-71.486440553,41.966251565],[-71.486461553,41.966314565],[-71.486492553,41.966366565],[-71.486540553,41.966418565],[-71.486668553,41.966502565],[-71.486729553,41.966555565],[-71.486780553,41.966610565],[-71.486854553,41.966806565],[-71.486973553,41.967048565],[-71.486999553,41.967113565],[-71.487043553,41.967143565],[-71.487087553,41.967119565],[-71.487116553,41.967011565],[-71.487169554,41.966956565],[-71.487249554,41.966942565],[-71.487335553,41.966953565],[-71.487493553,41.967002565],[-71.487582554,41.967025565],[-71.487657554,41.967037565],[-71.487820554,41.967037565],[-71.487894554,41.967048565],[-71.487960553,41.967092565],[-71.487995554,41.967151565],[-71.487995554,41.967214565],[-71.487988554,41.967275565],[-71.487937554,41.967327565],[-71.487835554,41.967385565],[-71.487755554,41.967379565],[-71.487664554,41.967386565],[-71.487599554,41.967422565],[-71.487456553,41.967517565],[-71.487405554,41.967559565],[-71.487360553,41.967623565],[-71.487338553,41.967687565],[-71.487335553,41.967757565],[-71.487344554,41.967815565],[-71.487381554,41.967862565],[-71.487441554,41.967903565],[-71.487537554,41.967927565],[-71.487616554,41.967934565],[-71.487938554,41.967935565],[-71.488039554,41.967941565],[-71.488115553,41.967977565],[-71.488188554,41.968021565],[-71.488246554,41.968076565],[-71.488274554,41.968128565],[-71.488280554,41.968190565],[-71.488280554,41.968310565],[-71.488260554,41.968362565],[-71.488193553,41.968416565],[-71.488124554,41.968471565],[-71.488012554,41.968578565],[-71.487938554,41.968632565],[-71.487820554,41.968703565],[-71.487719554,41.968779565],[-71.487651554,41.968837565],[-71.487547554,41.968936565],[-71.487483554,41.968975565],[-71.487345554,41.969039565],[-71.487290554,41.969082565],[-71.487172554,41.969144566],[-71.487169554,41.969198565],[-71.487103553,41.969226565],[-71.487025553,41.969248565],[-71.486961553,41.969277565],[-71.486902553,41.969320566],[-71.486848553,41.969369565],[-71.486786553,41.969416566],[-71.486730553,41.969450565],[-71.486681553,41.969497566],[-71.486677553,41.969716566],[-71.486706553,41.969768566],[-71.486737553,41.969962566],[-71.486839554,41.969992565],[-71.486910553,41.970006565],[-71.487012554,41.970016565],[-71.487065553,41.970546566],[-71.487058554,41.970567566],[-71.487086553,41.970628566],[-71.487120553,41.970686566],[-71.487126554,41.970759566],[-71.487203554,41.971007565],[-71.487225554,41.971146566],[-71.487245554,41.971352566],[-71.487282554,41.971592566],[-71.487294554,41.972115566],[-71.487297553,41.972269566],[-71.487307554,41.972367566],[-71.487538554,41.972968566],[-71.487740554,41.973232566],[-71.487912554,41.973391566],[-71.488276554,41.973640566],[-71.488560554,41.974131566],[-71.488792554,41.974441566],[-71.489096554,41.974751566],[-71.489063555,41.975486566],[-71.488971555,41.975865566],[-71.488968554,41.976504566],[-71.488951555,41.976531567],[-71.488950554,41.976705567],[-71.488880554,41.976882567],[-71.488845555,41.976999567],[-71.488796555,41.977055567],[-71.488724554,41.977094567],[-71.488642554,41.977119567],[-71.488552554,41.977137567],[-71.488471554,41.977140567],[-71.488392554,41.977120567],[-71.488309554,41.977119567],[-71.488227554,41.977129567],[-71.488149554,41.977154567],[-71.488079554,41.977184567],[-71.488019554,41.977228567],[-71.487980554,41.977287567],[-71.487931554,41.977341567],[-71.487928554,41.977399567],[-71.487936554,41.977475567],[-71.487954554,41.977518567],[-71.487959554,41.977544567],[-71.487961554,41.977642567],[-71.487969554,41.977914567],[-71.487969554,41.977970567],[-71.487959554,41.978040567],[-71.487959554,41.978108567],[-71.487967554,41.978178567],[-71.488020554,41.978364567]]]]}}"}, +{"type": "precinct", "typeId": 2502, "areaId": 26075, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":414,\"NAME\":\"2502\",\"SHAPE_Length\":0.20159336942871,\"SHAPE_Area\":-0.0020275395051415},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.568985582,41.999245568],[-71.569359582,41.999440568],[-71.569654582,41.999563569],[-71.569980582,41.999687569],[-71.570326583,41.999776569],[-71.570691583,41.999830568],[-71.572080583,41.999943569],[-71.572692583,42.000047569],[-71.573112583,42.000111569],[-71.573540584,42.000222569],[-71.573891584,42.000298568],[-71.574570584,42.000473568],[-71.574919584,42.000581569],[-71.575331584,42.000695569],[-71.575870584,42.000818569],[-71.576269584,42.000917569],[-71.576594584,42.000971569],[-71.576866584,42.001000568],[-71.577133585,42.001011569],[-71.577515585,42.000969569],[-71.577950585,42.000912569],[-71.578415585,42.000843568],[-71.578552585,42.000748568],[-71.578781585,42.000569568],[-71.579109585,42.000332569],[-71.579147585,42.000218568],[-71.579323585,42.000119569],[-71.579605586,42.000046568],[-71.579956586,41.999977569],[-71.580048585,41.999955569],[-71.580322586,41.999890568],[-71.580132586,41.999874568],[-71.579903586,41.999840569],[-71.579795585,41.999822569],[-71.579590586,41.999787568],[-71.579391586,41.999741569],[-71.579193585,41.999661568],[-71.579094585,41.999569569],[-71.579048585,41.999489569],[-71.578998585,41.999312569],[-71.578976585,41.999230568],[-71.578953585,41.999149568],[-71.579021585,41.999148568],[-71.579076585,41.999138569],[-71.579368585,41.999194568],[-71.579781586,41.999296569],[-71.580633586,41.998998568],[-71.580732586,41.998924568],[-71.581379586,41.998434568],[-71.581816586,41.997857568],[-71.582351586,41.997516568],[-71.582868586,41.996812568],[-71.583248586,41.996263567],[-71.583856587,41.995638567],[-71.584418587,41.995202567],[-71.584981587,41.994880567],[-71.585331587,41.994814567],[-71.586123588,41.994727567],[-71.586975588,41.994710567],[-71.588162588,41.994703567],[-71.589335588,41.994732567],[-71.590538589,41.994860567],[-71.591427589,41.994708567],[-71.59201359,41.994494567],[-71.592763589,41.994350567],[-71.59351359,41.994835567],[-71.59362859,41.995201567],[-71.59411459,41.995140567],[-71.59451059,41.995026567],[-71.59475359,41.994834567],[-71.59483959,41.994671567],[-71.59478559,41.994631567],[-71.59484259,41.994459567],[-71.59507159,41.994407567],[-71.59516559,41.994292567],[-71.59539459,41.993858567],[-71.595776591,41.993270567],[-71.596008591,41.993006566],[-71.596417591,41.990554566],[-71.59781359,41.986149565],[-71.59765759,41.986204565],[-71.59765559,41.986181565],[-71.597592591,41.986165565],[-71.597613591,41.985824565],[-71.597612591,41.985765565],[-71.597650591,41.985700565],[-71.59764059,41.985569565],[-71.597633591,41.985473565],[-71.597634591,41.985396565],[-71.597654591,41.985343565],[-71.597703591,41.985296565],[-71.59773559,41.985266565],[-71.59777259,41.985205565],[-71.59775659,41.985148565],[-71.597749591,41.985091565],[-71.597748591,41.985033565],[-71.597779591,41.984954565],[-71.597821591,41.984878565],[-71.597823591,41.984800565],[-71.597841591,41.984759565],[-71.597954591,41.984673565],[-71.598077591,41.984500565],[-71.598235591,41.984209565],[-71.598258591,41.984153565],[-71.598262591,41.984096565],[-71.598250591,41.984035565],[-71.598257591,41.983989565],[-71.59831859,41.983953564],[-71.598408591,41.983884565],[-71.598450591,41.983837564],[-71.598478591,41.983784565],[-71.598527591,41.983712565],[-71.598567591,41.983663564],[-71.598607591,41.983602564],[-71.598668591,41.983495565],[-71.598839591,41.983282565],[-71.598904591,41.983220565],[-71.599003591,41.983141565],[-71.599111591,41.982985565],[-71.599124591,41.982930565],[-71.599155591,41.982860565],[-71.599208591,41.982805564],[-71.599399591,41.982662564],[-71.599430591,41.982611564],[-71.599432591,41.982532564],[-71.599444591,41.982473564],[-71.599515591,41.982437564],[-71.599572591,41.982403565],[-71.599643591,41.982341564],[-71.599689591,41.982281564],[-71.599421591,41.980911564],[-71.599370591,41.980644564],[-71.599318591,41.980378564],[-71.59851559,41.976265563],[-71.596710589,41.967016562],[-71.596581094,41.966942766],[-71.596222513,41.966774918],[-71.595902078,41.966622331],[-71.595627589,41.966492562],[-71.595390588,41.966412562],[-71.595131589,41.966320561],[-71.594963588,41.966275562],[-71.594711588,41.966206561],[-71.594490589,41.966153561],[-71.594139589,41.966057561],[-71.593758588,41.965966562],[-71.593102588,41.965821561],[-71.592743588,41.965718561],[-71.592354588,41.965630561],[-71.590942587,41.965283562],[-71.590446587,41.965168562],[-71.589844587,41.965016561],[-71.589546587,41.964936561],[-71.589279587,41.964856562],[-71.588989587,41.964760561],[-71.588910587,41.964726561],[-71.588737587,41.964650561],[-71.588501587,41.964531561],[-71.588211586,41.964371561],[-71.587982586,41.964230562],[-71.587776586,41.964085561],[-71.587692586,41.964020561],[-71.587379586,41.963795561],[-71.587143586,41.963604561],[-71.586510586,41.963116561],[-71.586113585,41.962803561],[-71.585579585,41.962395561],[-71.584961585,41.961934561],[-71.584526584,41.961590561],[-71.584442585,41.961529561],[-71.584427585,41.961514561],[-71.583282584,41.960675561],[-71.582916584,41.96039256],[-71.582497585,41.96008356],[-71.582204584,41.959859561],[-71.582024584,41.959721561],[-71.581192583,41.959099561],[-71.580399583,41.958496561],[-71.579193583,41.95759256],[-71.578903583,41.95797856],[-71.578865583,41.95805456],[-71.578812582,41.95814256],[-71.578697582,41.95850856],[-71.578636582,41.95873356],[-71.578575583,41.95906956],[-71.578575583,41.95922956],[-71.578598582,41.95942056],[-71.578606583,41.959568561],[-71.578552583,41.959740561],[-71.578476583,41.959957561],[-71.578392583,41.96014156],[-71.578316583,41.960331561],[-71.578117583,41.960553561],[-71.577927583,41.960717561],[-71.577309583,41.961182561],[-71.576996583,41.961380561],[-71.576820583,41.961518561],[-71.576424582,41.961804561],[-71.576218582,41.961960561],[-71.576050582,41.962159561],[-71.575920582,41.962273561],[-71.575806582,41.962349561],[-71.575569582,41.962445561],[-71.575300582,41.962548561],[-71.575241582,41.962571562],[-71.575020582,41.962620561],[-71.574760582,41.962651562],[-71.574432582,41.962674561],[-71.574074581,41.962723561],[-71.573845581,41.962784562],[-71.573586581,41.962933561],[-71.573265581,41.963078562],[-71.573029581,41.963177562],[-71.572823582,41.963284561],[-71.572708581,41.963356561],[-71.572380581,41.963604562],[-71.572212581,41.963692561],[-71.571983581,41.963734562],[-71.570908581,41.963913562],[-71.570679581,41.963925561],[-71.570518581,41.963906561],[-71.57048758,41.963900562],[-71.57029758,41.963826561],[-71.57003858,41.963646562],[-71.56974058,41.963448562],[-71.56946658,41.963211562],[-71.56931358,41.963093562],[-71.56913858,41.962975562],[-71.56897758,41.962895561],[-71.56876458,41.962819562],[-71.56842858,41.962738561],[-71.568069579,41.962670562],[-71.56777258,41.962571562],[-71.567482579,41.962437562],[-71.566963579,41.962140562],[-71.566788579,41.962052561],[-71.566597579,41.962006562],[-71.566445579,41.961991561],[-71.566330579,41.961979561],[-71.565994579,41.961964562],[-71.565651578,41.961937561],[-71.565247579,41.961865562],[-71.564835578,41.961758561],[-71.563843578,41.961457562],[-71.563515578,41.961399562],[-71.563240578,41.961392561],[-71.562943578,41.961434561],[-71.562592578,41.961441562],[-71.562322578,41.961417562],[-71.562294577,41.961415561],[-71.562035578,41.961300562],[-71.561852577,41.961155561],[-71.561729577,41.961033562],[-71.561531578,41.960904561],[-71.561234577,41.960778562],[-71.560852577,41.960648561],[-71.559486576,41.960160561],[-71.559105576,41.960007561],[-71.557989576,41.959529561],[-71.557701576,41.959389561],[-71.557419575,41.959244561],[-71.557114576,41.959099561],[-71.556740575,41.958912561],[-71.556396576,41.958767561],[-71.556366575,41.958748561],[-71.556084575,41.958599561],[-71.556061575,41.958584561],[-71.555786575,41.958401561],[-71.555588575,41.958226561],[-71.555344575,41.957917561],[-71.555199575,41.957638561],[-71.554993575,41.957112561],[-71.554893575,41.956917561],[-71.554749575,41.956711561],[-71.554550575,41.956540561],[-71.554298574,41.956314561],[-71.554001575,41.956059561],[-71.553764575,41.955807561],[-71.553513575,41.95551756],[-71.553368574,41.955388561],[-71.553291574,41.955319561],[-71.553093531,41.955155351],[-71.552935982,41.955065711],[-71.552872278,41.955029466],[-71.552802469,41.954979602],[-71.55260525,41.95483873],[-71.552444574,41.95472456],[-71.552048574,41.95468256],[-71.551879574,41.95466156],[-71.551605574,41.95462856],[-71.551239573,41.95460256],[-71.550949573,41.95460556],[-71.550545573,41.954617561],[-71.550072573,41.95466356],[-71.549652573,41.95469756],[-71.549316573,41.954708561],[-71.548935572,41.954705561],[-71.548515573,41.954674561],[-71.547798573,41.95458356],[-71.547394573,41.954552561],[-71.546982573,41.954552561],[-71.546471572,41.954590561],[-71.546028572,41.954651561],[-71.545540572,41.954724561],[-71.545158571,41.954789561],[-71.544853572,41.95485756],[-71.544479571,41.954975561],[-71.544197571,41.955098561],[-71.543892571,41.95526256],[-71.543701571,41.955391561],[-71.543434571,41.955586561],[-71.543205571,41.955788561],[-71.543037571,41.955967561],[-71.54287057,41.956204561],[-71.542717571,41.956490562],[-71.542625571,41.956730561],[-71.542557571,41.957066561],[-71.542419571,41.958100561],[-71.542351571,41.958435562],[-71.542274571,41.958645561],[-71.542183571,41.958813561],[-71.542084571,41.958958562],[-71.541939571,41.959134562],[-71.541710571,41.959366562],[-71.54160357,41.959460561],[-71.54138957,41.959649562],[-71.541046571,41.959961562],[-71.54074957,41.960255561],[-71.54023057,41.960705562],[-71.539963571,41.960907562],[-71.53992757,41.960938562],[-71.53971957,41.961113562],[-71.53951357,41.961296562],[-71.53916257,41.961666562],[-71.538483569,41.962471563],[-71.53823957,41.962777562],[-71.538094569,41.963021563],[-71.537956569,41.963345563],[-71.53779657,41.963684563],[-71.537628569,41.963986563],[-71.53744557,41.964291562],[-71.53727057,41.964650563],[-71.53710957,41.965042563],[-71.53701057,41.965351563],[-71.536949569,41.965653563],[-71.536865569,41.966339563],[-71.53681957,41.966545563],[-71.53675857,41.966748564],[-71.53668257,41.966931563],[-71.536560569,41.967141563],[-71.536400569,41.967385564],[-71.53619457,41.967648563],[-71.535957569,41.967961563],[-71.535706569,41.968312563],[-71.535624569,41.968436564],[-71.53522557,41.969040564],[-71.535161569,41.969131563],[-71.535035569,41.969312564],[-71.534966569,41.969410564],[-71.534813569,41.969670564],[-71.534637569,41.969895564],[-71.534470569,41.970124564],[-71.534241569,41.970372564],[-71.533691569,41.970925564],[-71.533379568,41.971230564],[-71.532814568,41.971794565],[-71.532486568,41.972073564],[-71.532295569,41.972230564],[-71.532240569,41.972274564],[-71.532188568,41.972317565],[-71.532140569,41.972353564],[-71.532040568,41.972443564],[-71.531761568,41.972680564],[-71.531433568,41.972939565],[-71.531166568,41.973141565],[-71.530708568,41.973488565],[-71.529976568,41.974038565],[-71.529068567,41.974732565],[-71.528914567,41.974853565],[-71.529152568,41.974907565],[-71.529663568,41.975006565],[-71.529724568,41.975026565],[-71.529892568,41.975052565],[-71.530525568,41.975186565],[-71.531059568,41.975315565],[-71.531532568,41.975438565],[-71.531975568,41.975563565],[-71.532356569,41.975678565],[-71.532936569,41.975861565],[-71.533516569,41.976063565],[-71.533852569,41.976204565],[-71.53432557,41.976391565],[-71.53438657,41.976410565],[-71.534505569,41.976459566],[-71.53477757,41.976570565],[-71.53487457,41.976609565],[-71.535446569,41.976872566],[-71.53611857,41.977196565],[-71.53685857,41.977597565],[-71.53743757,41.977929565],[-71.537854571,41.978174566],[-71.538246571,41.978428566],[-71.538643571,41.978699566],[-71.539246572,41.979123566],[-71.540291572,41.979897565],[-71.540756572,41.980263566],[-71.541466572,41.980805566],[-71.542961573,41.981945566],[-71.543633573,41.982464566],[-71.544640573,41.983223566],[-71.544805573,41.983344566],[-71.545082573,41.983548566],[-71.545990573,41.984253566],[-71.546432574,41.984585567],[-71.546867574,41.984925567],[-71.547723574,41.985581567],[-71.548897575,41.986481567],[-71.550146575,41.987419567],[-71.550705575,41.987847567],[-71.551125575,41.988186567],[-71.551506576,41.988514567],[-71.551865575,41.988835567],[-71.552010576,41.988976567],[-71.552048576,41.989003567],[-71.552254576,41.989197568],[-71.552841576,41.989807567],[-71.553192576,41.990178567],[-71.553467576,41.990490567],[-71.553841577,41.990948568],[-71.553986577,41.991120568],[-71.554245576,41.991494568],[-71.554520577,41.991852567],[-71.554970577,41.992562568],[-71.555367577,41.993256568],[-71.555504577,41.993512568],[-71.555561577,41.993632568],[-71.555702578,41.993931568],[-71.556109578,41.994877568],[-71.556709578,41.996365569],[-71.556763578,41.996510569],[-71.556808578,41.996620569],[-71.556832578,41.996678569],[-71.556858578,41.996742568],[-71.557083578,41.997288569],[-71.557236578,41.997601569],[-71.557297578,41.997734569],[-71.557518578,41.998166569],[-71.557732578,41.998558569],[-71.558281578,41.999466569],[-71.558640579,41.999966569],[-71.558807579,42.000178569],[-71.558937579,42.000050569],[-71.559036579,41.999947569],[-71.559105579,41.999882569],[-71.559410579,41.999569569],[-71.559532579,41.999432569],[-71.559799579,41.999070569],[-71.559959579,41.998875569],[-71.560410579,41.998272569],[-71.560616579,41.998055568],[-71.560799579,41.997898568],[-71.561073579,41.997746568],[-71.561539579,41.997544569],[-71.56190558,41.997391568],[-71.562202579,41.997273568],[-71.56262258,41.997128569],[-71.56271958,41.997109569],[-71.56292758,41.997067568],[-71.56326358,41.997010569],[-71.56416358,41.996930568],[-71.56454558,41.996914569],[-71.564827581,41.996930568],[-71.56497258,41.996956569],[-71.56520858,41.997029568],[-71.56546058,41.997124568],[-71.565971581,41.997353568],[-71.565984581,41.997359568],[-71.566284581,41.997513568],[-71.567039581,41.997967569],[-71.567528581,41.998307568],[-71.568001582,41.998612569],[-71.568131581,41.998700568],[-71.568260582,41.998787569],[-71.568477582,41.998924569],[-71.568985582,41.999245568]]]]}}"}, +{"type": "precinct", "typeId": 2503, "areaId": 26030, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":369,\"NAME\":\"2503\",\"SHAPE_Length\":0.14296966215582,\"SHAPE_Area\":-0.00065689149904297},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.558807579,42.000178569],[-71.558521579,42.000465569],[-71.558426579,42.000561569],[-71.558380578,42.000608569],[-71.558119579,42.00087557],[-71.558037579,42.00095857],[-71.557755578,42.001274569],[-71.558105579,42.00141957],[-71.558609579,42.001641569],[-71.558815579,42.001723569],[-71.559288579,42.00191257],[-71.559341579,42.001934569],[-71.559456579,42.00196957],[-71.559497579,42.002020569],[-71.55991858,42.00255357],[-71.560076579,42.002467569],[-71.56184858,42.00383357],[-71.56234258,42.00369357],[-71.56259258,42.00388057],[-71.56288958,42.00409457],[-71.563095581,42.004235569],[-71.563507581,42.00450657],[-71.564140581,42.00490657],[-71.564688581,42.00522957],[-71.564735581,42.00525757],[-71.564919581,42.00536057],[-71.565506581,42.00566957],[-71.565933581,42.00587957],[-71.566452581,42.00611957],[-71.566536581,42.00616157],[-71.566711582,42.00623757],[-71.566940581,42.00634457],[-71.567413582,42.00655057],[-71.569138583,42.00720657],[-71.570183583,42.007588571],[-71.571251583,42.00798557],[-71.572594584,42.00847357],[-71.573501584,42.00880957],[-71.574573584,42.009205571],[-71.576538585,42.009926571],[-71.576815585,42.01003057],[-71.577858586,42.01042257],[-71.579376586,42.010971571],[-71.580666587,42.011460571],[-71.581764587,42.011868571],[-71.581940587,42.011929571],[-71.583799588,42.012615571],[-71.585487588,42.013226571],[-71.586812927,42.013728563],[-71.590983582,42.013644592],[-71.59127657,42.013637928],[-71.60521378,42.013313166],[-71.605499521,42.013306644],[-71.606237046,42.013284356],[-71.604883594,42.006769569],[-71.604677594,42.005665569],[-71.604219594,42.003202568],[-71.604074593,42.002419569],[-71.603642593,42.000104568],[-71.603363594,41.998617568],[-71.603330593,41.998437568],[-71.603308594,41.998281568],[-71.603280593,41.998132567],[-71.602901593,41.996142567],[-71.602632593,41.994702567],[-71.602554593,41.994446566],[-71.602226593,41.992543566],[-71.601358593,41.990631566],[-71.600937592,41.988121566],[-71.600723592,41.987528565],[-71.600656592,41.987256565],[-71.600525591,41.986722565],[-71.600475592,41.986515565],[-71.600422592,41.986226565],[-71.600252591,41.985296565],[-71.600204592,41.985033565],[-71.600057591,41.984244565],[-71.599908591,41.983406565],[-71.599689591,41.982281564],[-71.599643591,41.982341564],[-71.599572591,41.982403565],[-71.599515591,41.982437564],[-71.599444591,41.982473564],[-71.599432591,41.982532564],[-71.599430591,41.982611564],[-71.599399591,41.982662564],[-71.599208591,41.982805564],[-71.599155591,41.982860565],[-71.599124591,41.982930565],[-71.599111591,41.982985565],[-71.599003591,41.983141565],[-71.598904591,41.983220565],[-71.598839591,41.983282565],[-71.598668591,41.983495565],[-71.598607591,41.983602564],[-71.598567591,41.983663564],[-71.598527591,41.983712565],[-71.598478591,41.983784565],[-71.598450591,41.983837564],[-71.598408591,41.983884565],[-71.59831859,41.983953564],[-71.598257591,41.983989565],[-71.598250591,41.984035565],[-71.598262591,41.984096565],[-71.598258591,41.984153565],[-71.598235591,41.984209565],[-71.598077591,41.984500565],[-71.597954591,41.984673565],[-71.597841591,41.984759565],[-71.597823591,41.984800565],[-71.597821591,41.984878565],[-71.597779591,41.984954565],[-71.597748591,41.985033565],[-71.597749591,41.985091565],[-71.59775659,41.985148565],[-71.59777259,41.985205565],[-71.59773559,41.985266565],[-71.597703591,41.985296565],[-71.597654591,41.985343565],[-71.597634591,41.985396565],[-71.597633591,41.985473565],[-71.59764059,41.985569565],[-71.597650591,41.985700565],[-71.597612591,41.985765565],[-71.597613591,41.985824565],[-71.597592591,41.986165565],[-71.59765559,41.986181565],[-71.59765759,41.986204565],[-71.59781359,41.986149565],[-71.596417591,41.990554566],[-71.596008591,41.993006566],[-71.595776591,41.993270567],[-71.59539459,41.993858567],[-71.59516559,41.994292567],[-71.59507159,41.994407567],[-71.59484259,41.994459567],[-71.59478559,41.994631567],[-71.59483959,41.994671567],[-71.59475359,41.994834567],[-71.59451059,41.995026567],[-71.59411459,41.995140567],[-71.59362859,41.995201567],[-71.59351359,41.994835567],[-71.592763589,41.994350567],[-71.59201359,41.994494567],[-71.591427589,41.994708567],[-71.590538589,41.994860567],[-71.589335588,41.994732567],[-71.588162588,41.994703567],[-71.586975588,41.994710567],[-71.586123588,41.994727567],[-71.585331587,41.994814567],[-71.584981587,41.994880567],[-71.584418587,41.995202567],[-71.583856587,41.995638567],[-71.583248586,41.996263567],[-71.582868586,41.996812568],[-71.582351586,41.997516568],[-71.581816586,41.997857568],[-71.581379586,41.998434568],[-71.580732586,41.998924568],[-71.580633586,41.998998568],[-71.579781586,41.999296569],[-71.579368585,41.999194568],[-71.579076585,41.999138569],[-71.579021585,41.999148568],[-71.578953585,41.999149568],[-71.578976585,41.999230568],[-71.578998585,41.999312569],[-71.579048585,41.999489569],[-71.579094585,41.999569569],[-71.579193585,41.999661568],[-71.579391586,41.999741569],[-71.579590586,41.999787568],[-71.579795585,41.999822569],[-71.579903586,41.999840569],[-71.580132586,41.999874568],[-71.580322586,41.999890568],[-71.580048585,41.999955569],[-71.579956586,41.999977569],[-71.579605586,42.000046568],[-71.579323585,42.000119569],[-71.579147585,42.000218568],[-71.579109585,42.000332569],[-71.578781585,42.000569568],[-71.578552585,42.000748568],[-71.578415585,42.000843568],[-71.577950585,42.000912569],[-71.577515585,42.000969569],[-71.577133585,42.001011569],[-71.576866584,42.001000568],[-71.576594584,42.000971569],[-71.576269584,42.000917569],[-71.575870584,42.000818569],[-71.575331584,42.000695569],[-71.574919584,42.000581569],[-71.574570584,42.000473568],[-71.573891584,42.000298568],[-71.573540584,42.000222569],[-71.573112583,42.000111569],[-71.572692583,42.000047569],[-71.572080583,41.999943569],[-71.570691583,41.999830568],[-71.570326583,41.999776569],[-71.569980582,41.999687569],[-71.569654582,41.999563569],[-71.569359582,41.999440568],[-71.568985582,41.999245568],[-71.568477582,41.998924569],[-71.568260582,41.998787569],[-71.568131581,41.998700568],[-71.568001582,41.998612569],[-71.567528581,41.998307568],[-71.567039581,41.997967569],[-71.566284581,41.997513568],[-71.565984581,41.997359568],[-71.565971581,41.997353568],[-71.56546058,41.997124568],[-71.56520858,41.997029568],[-71.56497258,41.996956569],[-71.564827581,41.996930568],[-71.56454558,41.996914569],[-71.56416358,41.996930568],[-71.56326358,41.997010569],[-71.56292758,41.997067568],[-71.56271958,41.997109569],[-71.56262258,41.997128569],[-71.562202579,41.997273568],[-71.56190558,41.997391568],[-71.561539579,41.997544569],[-71.561073579,41.997746568],[-71.560799579,41.997898568],[-71.560616579,41.998055568],[-71.560410579,41.998272569],[-71.559959579,41.998875569],[-71.559799579,41.999070569],[-71.559532579,41.999432569],[-71.559410579,41.999569569],[-71.559105579,41.999882569],[-71.559036579,41.999947569],[-71.558937579,42.000050569],[-71.558807579,42.000178569]]]]}}"}, +{"type": "precinct", "typeId": 2504, "areaId": 26031, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":370,\"NAME\":\"2504\",\"SHAPE_Length\":0.17583440724264,\"SHAPE_Area\":-0.0007252964705945},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.52996657,42.010156572],[-71.52999857,42.010192572],[-71.53009957,42.010320572],[-71.53014257,42.010383572],[-71.53027257,42.010620572],[-71.53034657,42.010789572],[-71.53037857,42.010898572],[-71.53040457,42.011051572],[-71.53044157,42.011189572],[-71.53046757,42.011324572],[-71.53046957,42.011413572],[-71.53046157,42.011637572],[-71.53046157,42.011792572],[-71.53047657,42.012130573],[-71.53044357,42.012222572],[-71.53039757,42.012418573],[-71.530315571,42.012696573],[-71.53022257,42.012969573],[-71.53008057,42.013269572],[-71.52981057,42.013641573],[-71.52930957,42.014348573],[-71.52919657,42.014530573],[-71.52913657,42.014716573],[-71.52911557,42.014947573],[-71.529117308,42.0149806],[-71.532054522,42.01491576],[-71.539936527,42.014732431],[-71.55144325,42.014495027],[-71.559744647,42.014319068],[-71.563095348,42.014253217],[-71.566731897,42.014171923],[-71.576716382,42.013929944],[-71.583577189,42.013793606],[-71.586812927,42.013728563],[-71.585487588,42.013226571],[-71.583799588,42.012615571],[-71.581940587,42.011929571],[-71.581764587,42.011868571],[-71.580666587,42.011460571],[-71.579376586,42.010971571],[-71.577858586,42.01042257],[-71.576815585,42.01003057],[-71.576538585,42.009926571],[-71.574573584,42.009205571],[-71.573501584,42.00880957],[-71.572594584,42.00847357],[-71.571251583,42.00798557],[-71.570183583,42.007588571],[-71.569138583,42.00720657],[-71.567413582,42.00655057],[-71.566940581,42.00634457],[-71.566711582,42.00623757],[-71.566536581,42.00616157],[-71.566452581,42.00611957],[-71.565933581,42.00587957],[-71.565506581,42.00566957],[-71.564919581,42.00536057],[-71.564735581,42.00525757],[-71.564688581,42.00522957],[-71.564140581,42.00490657],[-71.563507581,42.00450657],[-71.563095581,42.004235569],[-71.56288958,42.00409457],[-71.56259258,42.00388057],[-71.56234258,42.00369357],[-71.56184858,42.00383357],[-71.560076579,42.002467569],[-71.55991858,42.00255357],[-71.559497579,42.002020569],[-71.559456579,42.00196957],[-71.559341579,42.001934569],[-71.559288579,42.00191257],[-71.558815579,42.001723569],[-71.558609579,42.001641569],[-71.558105579,42.00141957],[-71.557755578,42.001274569],[-71.558037579,42.00095857],[-71.558119579,42.00087557],[-71.558380578,42.000608569],[-71.558426579,42.000561569],[-71.558521579,42.000465569],[-71.558807579,42.000178569],[-71.558640579,41.999966569],[-71.558281578,41.999466569],[-71.557732578,41.998558569],[-71.557518578,41.998166569],[-71.557297578,41.997734569],[-71.557236578,41.997601569],[-71.557083578,41.997288569],[-71.556858578,41.996742568],[-71.556832578,41.996678569],[-71.556808578,41.996620569],[-71.556763578,41.996510569],[-71.556709578,41.996365569],[-71.556109578,41.994877568],[-71.555702578,41.993931568],[-71.555561577,41.993632568],[-71.555504577,41.993512568],[-71.555367577,41.993256568],[-71.554970577,41.992562568],[-71.554520577,41.991852567],[-71.554245576,41.991494568],[-71.553986577,41.991120568],[-71.553841577,41.990948568],[-71.553467576,41.990490567],[-71.553192576,41.990178567],[-71.552841576,41.989807567],[-71.552254576,41.989197568],[-71.552048576,41.989003567],[-71.552010576,41.988976567],[-71.551865575,41.988835567],[-71.551506576,41.988514567],[-71.551125575,41.988186567],[-71.550705575,41.987847567],[-71.550146575,41.987419567],[-71.548897575,41.986481567],[-71.547723574,41.985581567],[-71.546867574,41.984925567],[-71.546432574,41.984585567],[-71.545990573,41.984253566],[-71.545082573,41.983548566],[-71.544805573,41.983344566],[-71.544640573,41.983223566],[-71.543633573,41.982464566],[-71.542961573,41.981945566],[-71.541466572,41.980805566],[-71.541000572,41.981156566],[-71.540779572,41.981347566],[-71.540512572,41.981629566],[-71.540306572,41.981888566],[-71.540115572,41.982201566],[-71.539925572,41.982464567],[-71.539703571,41.982804566],[-71.539536572,41.982998566],[-71.539124572,41.983616567],[-71.538933572,41.983887567],[-71.538795572,41.984047567],[-71.538490571,41.984269567],[-71.538221571,41.984408567],[-71.538112571,41.984464567],[-71.538063571,41.984489567],[-71.537913571,41.984571567],[-71.537767571,41.984650567],[-71.536926571,41.985108567],[-71.536621571,41.985264567],[-71.536263571,41.985363567],[-71.53585857,41.985482567],[-71.535675571,41.985619567],[-71.535400571,41.985913567],[-71.53515657,41.986142567],[-71.53500457,41.986344567],[-71.534859571,41.986588567],[-71.53466857,41.987423568],[-71.534546571,41.987877567],[-71.534487571,41.988369568],[-71.53448557,41.988388568],[-71.53442457,41.988678568],[-71.53436357,41.988854568],[-71.53427957,41.989052568],[-71.53412657,41.989239567],[-71.53383657,41.989544568],[-71.53380657,41.989563568],[-71.53359257,41.989926568],[-71.53390557,41.990040568],[-71.53393157,41.990054568],[-71.53404257,41.990113568],[-71.53453857,41.990376568],[-71.53465357,41.990445568],[-71.535072571,41.990696568],[-71.535362571,41.990902568],[-71.535744571,41.991169568],[-71.536507571,41.991810569],[-71.536743571,41.991978568],[-71.537109571,41.992203568],[-71.537605572,41.992493569],[-71.537971572,41.992695568],[-71.538322572,41.992901569],[-71.538712572,41.993138569],[-71.538963572,41.993313569],[-71.539124572,41.993443569],[-71.539307572,41.993618569],[-71.539467572,41.993809568],[-71.539604572,41.993985569],[-71.539724572,41.994098568],[-71.539810573,41.994179569],[-71.539909573,41.994263569],[-71.540230572,41.994458569],[-71.540520572,41.994622568],[-71.540878573,41.994812569],[-71.541230573,41.994999569],[-71.541611573,41.995209569],[-71.542023573,41.995446569],[-71.542374573,41.995636568],[-71.542755574,41.995858569],[-71.543274573,41.996174569],[-71.543556574,41.996323569],[-71.543922574,41.996548569],[-71.544159574,41.996674569],[-71.544380574,41.996815569],[-71.544533574,41.997105569],[-71.544601574,41.997280569],[-71.544609574,41.997433569],[-71.544556574,41.997628569],[-71.544426574,41.997967569],[-71.544365574,41.998196569],[-71.544342574,41.998448569],[-71.544296574,41.998814569],[-71.544228574,41.999184569],[-71.544144574,41.99961157],[-71.544090574,41.99998157],[-71.543999574,42.00069857],[-71.543999574,42.000843569],[-71.543961574,42.00103057],[-71.543900574,42.00118757],[-71.543709574,42.00142357],[-71.543579574,42.00154557],[-71.543121574,42.00188957],[-71.542809574,42.00211057],[-71.542709574,42.00219057],[-71.542191574,42.00254957],[-71.541946573,42.002732571],[-71.541428574,42.00310957],[-71.541138574,42.00330857],[-71.540901573,42.003510571],[-71.540573573,42.003781571],[-71.540260573,42.00405957],[-71.540222573,42.00410157],[-71.540070573,42.004227571],[-71.538727572,42.004506571],[-71.538185572,42.004612571],[-71.537849572,42.00468557],[-71.538811573,42.007182571],[-71.539183573,42.008150572],[-71.539269572,42.008370571],[-71.539679573,42.009406571],[-71.539854573,42.009881572],[-71.539105573,42.009900572],[-71.536583572,42.010075572],[-71.535952571,42.010072572],[-71.535490572,42.010079572],[-71.533908571,42.010105571],[-71.533709571,42.010094572],[-71.533188571,42.010076572],[-71.53157557,42.010021572],[-71.53113557,42.010059572],[-71.53070257,42.010091572],[-71.53053357,42.010111572],[-71.52996657,42.010156572]]]]}}"}, +{"type": "precinct", "typeId": 2505, "areaId": 25844, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":183,\"NAME\":\"2505\",\"SHAPE_Length\":0.13563394819323,\"SHAPE_Area\":-0.00035944596479319},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.53307157,41.993439569],[-71.53340657,41.993607568],[-71.535583571,41.999048569],[-71.536006572,42.00010657],[-71.537849572,42.00468557],[-71.538185572,42.004612571],[-71.538727572,42.004506571],[-71.540070573,42.004227571],[-71.540222573,42.00410157],[-71.540260573,42.00405957],[-71.540573573,42.003781571],[-71.540901573,42.003510571],[-71.541138574,42.00330857],[-71.541428574,42.00310957],[-71.541946573,42.002732571],[-71.542191574,42.00254957],[-71.542709574,42.00219057],[-71.542809574,42.00211057],[-71.543121574,42.00188957],[-71.543579574,42.00154557],[-71.543709574,42.00142357],[-71.543900574,42.00118757],[-71.543961574,42.00103057],[-71.543999574,42.000843569],[-71.543999574,42.00069857],[-71.544090574,41.99998157],[-71.544144574,41.99961157],[-71.544228574,41.999184569],[-71.544296574,41.998814569],[-71.544342574,41.998448569],[-71.544365574,41.998196569],[-71.544426574,41.997967569],[-71.544556574,41.997628569],[-71.544609574,41.997433569],[-71.544601574,41.997280569],[-71.544533574,41.997105569],[-71.544380574,41.996815569],[-71.544159574,41.996674569],[-71.543922574,41.996548569],[-71.543556574,41.996323569],[-71.543274573,41.996174569],[-71.542755574,41.995858569],[-71.542374573,41.995636568],[-71.542023573,41.995446569],[-71.541611573,41.995209569],[-71.541230573,41.994999569],[-71.540878573,41.994812569],[-71.540520572,41.994622568],[-71.540230572,41.994458569],[-71.539909573,41.994263569],[-71.539810573,41.994179569],[-71.539724572,41.994098568],[-71.539604572,41.993985569],[-71.539467572,41.993809568],[-71.539307572,41.993618569],[-71.539124572,41.993443569],[-71.538963572,41.993313569],[-71.538712572,41.993138569],[-71.538322572,41.992901569],[-71.537971572,41.992695568],[-71.537605572,41.992493569],[-71.537109571,41.992203568],[-71.536743571,41.991978568],[-71.536507571,41.991810569],[-71.535744571,41.991169568],[-71.535362571,41.990902568],[-71.535072571,41.990696568],[-71.53465357,41.990445568],[-71.53453857,41.990376568],[-71.53404257,41.990113568],[-71.53393157,41.990054568],[-71.53390557,41.990040568],[-71.53359257,41.989926568],[-71.53380657,41.989563568],[-71.53383657,41.989544568],[-71.53412657,41.989239567],[-71.53427957,41.989052568],[-71.53436357,41.988854568],[-71.53442457,41.988678568],[-71.53448557,41.988388568],[-71.534487571,41.988369568],[-71.534546571,41.987877567],[-71.53466857,41.987423568],[-71.534859571,41.986588567],[-71.53500457,41.986344567],[-71.53515657,41.986142567],[-71.535400571,41.985913567],[-71.535675571,41.985619567],[-71.53585857,41.985482567],[-71.536263571,41.985363567],[-71.536621571,41.985264567],[-71.536926571,41.985108567],[-71.537767571,41.984650567],[-71.537913571,41.984571567],[-71.538063571,41.984489567],[-71.538112571,41.984464567],[-71.538221571,41.984408567],[-71.538490571,41.984269567],[-71.538795572,41.984047567],[-71.538933572,41.983887567],[-71.539124572,41.983616567],[-71.539536572,41.982998566],[-71.539703571,41.982804566],[-71.539925572,41.982464567],[-71.540115572,41.982201566],[-71.540306572,41.981888566],[-71.540512572,41.981629566],[-71.540779572,41.981347566],[-71.541000572,41.981156566],[-71.541466572,41.980805566],[-71.540756572,41.980263566],[-71.540291572,41.979897565],[-71.539246572,41.979123566],[-71.538643571,41.978699566],[-71.538246571,41.978428566],[-71.537854571,41.978174566],[-71.53743757,41.977929565],[-71.53685857,41.977597565],[-71.53611857,41.977196565],[-71.535446569,41.976872566],[-71.53487457,41.976609565],[-71.53477757,41.976570565],[-71.534505569,41.976459566],[-71.53438657,41.976410565],[-71.53432557,41.976391565],[-71.533852569,41.976204565],[-71.533516569,41.976063565],[-71.532936569,41.975861565],[-71.532356569,41.975678565],[-71.531975568,41.975563565],[-71.531532568,41.975438565],[-71.531059568,41.975315565],[-71.530525568,41.975186565],[-71.529892568,41.975052565],[-71.529724568,41.975026565],[-71.529663568,41.975006565],[-71.529152568,41.974907565],[-71.528914567,41.974853565],[-71.528305567,41.975323565],[-71.528282568,41.975335565],[-71.528206567,41.975396565],[-71.528137567,41.975445566],[-71.527946567,41.975598565],[-71.527832567,41.975678566],[-71.527405567,41.975998565],[-71.527122567,41.976193565],[-71.526726567,41.976494566],[-71.526108567,41.976963566],[-71.525681567,41.977299566],[-71.525551567,41.977414566],[-71.525475566,41.977505566],[-71.525414567,41.977562566],[-71.525375567,41.977623566],[-71.525299566,41.977776566],[-71.525192566,41.978100566],[-71.525101567,41.978424566],[-71.525002567,41.978756566],[-71.524940566,41.978989566],[-71.524913566,41.979086566],[-71.524879566,41.979206566],[-71.524821566,41.979392566],[-71.524780566,41.979523566],[-71.524770567,41.979562566],[-71.524708566,41.979794567],[-71.524671567,41.979932566],[-71.524633567,41.980076566],[-71.524602566,41.980192566],[-71.524594567,41.980210566],[-71.523547566,41.979903566],[-71.522509566,41.979598567],[-71.522480565,41.979652566],[-71.522088565,41.979536566],[-71.521657565,41.979409566],[-71.521689566,41.979355566],[-71.521421565,41.979276566],[-71.520031565,41.978865566],[-71.518909564,41.978533566],[-71.518654564,41.978533566],[-71.517781564,41.978536566],[-71.513498563,41.978549566],[-71.512735563,41.978551566],[-71.512574562,41.978272567],[-71.512421562,41.978309566],[-71.512558562,41.978552566],[-71.512118562,41.978553566],[-71.511650562,41.978554566],[-71.509309561,41.978561567],[-71.508772561,41.978563567],[-71.50419956,41.978576567],[-71.502271559,41.978582567],[-71.499505558,41.980489567],[-71.499464558,41.980520567],[-71.499427558,41.980549567],[-71.500579558,41.980692567],[-71.50463656,41.981319568],[-71.505352561,41.981445567],[-71.50584956,41.981532568],[-71.507070877,41.981746807],[-71.512992563,41.982785567],[-71.515079564,41.982933567],[-71.515160564,41.983014568],[-71.515274564,41.983071567],[-71.515419563,41.983147567],[-71.515694563,41.983261567],[-71.515816564,41.983288568],[-71.516129564,41.983349567],[-71.516762564,41.983418567],[-71.517235564,41.983445568],[-71.517624564,41.983548567],[-71.517754565,41.983578568],[-71.517799564,41.983597567],[-71.518066565,41.983704567],[-71.518547565,41.983971568],[-71.518806565,41.984131567],[-71.519150565,41.984337568],[-71.519501565,41.984593568],[-71.519569565,41.984642567],[-71.519997566,41.984898567],[-71.520203565,41.985012567],[-71.520241565,41.985035567],[-71.520424566,41.985127567],[-71.520630565,41.985215568],[-71.521141566,41.985356568],[-71.521545566,41.985455567],[-71.521645566,41.985478567],[-71.522072566,41.985592567],[-71.522354566,41.985661568],[-71.522758566,41.985806567],[-71.523270567,41.986000568],[-71.523773567,41.986172568],[-71.523796567,41.986184568],[-71.523857567,41.986203567],[-71.524452567,41.986416567],[-71.524811567,41.986554568],[-71.525093567,41.986664567],[-71.525494567,41.986853568],[-71.525658567,41.986931568],[-71.525986567,41.987114567],[-71.526382567,41.987374568],[-71.527084568,41.987851568],[-71.527664568,41.988232568],[-71.528008568,41.988415568],[-71.528313568,41.988541568],[-71.530106569,41.989174568],[-71.530739569,41.989365568],[-71.531120569,41.989464568],[-71.53175457,41.989582568],[-71.53223557,41.991083568],[-71.53235557,41.991438569],[-71.53252857,41.992163568],[-71.53281657,41.992918569],[-71.53300657,41.993406569],[-71.53307157,41.993439569]]]]}}"}, +{"type": "precinct", "typeId": 2601, "areaId": 25846, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":185,\"NAME\":\"2601\",\"SHAPE_Length\":0.036514841882963,\"SHAPE_Area\":-4.9411652994524e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.405365522,41.87717155],[-71.405243522,41.878113551],[-71.405185522,41.878813551],[-71.405167522,41.879029551],[-71.405159522,41.879181551],[-71.405029522,41.880600551],[-71.405021522,41.880698551],[-71.406266522,41.880432551],[-71.406337522,41.880417551],[-71.406442522,41.88040155],[-71.408134523,41.88014855],[-71.408943523,41.880062551],[-71.409835523,41.879908551],[-71.410716523,41.87962055],[-71.411597524,41.87960755],[-71.412186524,41.87986455],[-71.412920524,41.879887551],[-71.413030525,41.879870551],[-71.413887525,41.87978055],[-71.415148525,41.87990155],[-71.415642526,41.879948551],[-71.415611525,41.87983455],[-71.415580525,41.87968655],[-71.415550525,41.879540551],[-71.415489526,41.87926955],[-71.415352526,41.87863655],[-71.415108525,41.87865555],[-71.414955525,41.87865555],[-71.414787525,41.878643551],[-71.414604525,41.87862155],[-71.414268525,41.87855255],[-71.413551525,41.87837655],[-71.412689524,41.87816355],[-71.411476524,41.87786955],[-71.411751524,41.877240549],[-71.412025524,41.87661455],[-71.412399524,41.875759549],[-71.412659524,41.875142549],[-71.411613523,41.874863549],[-71.411064523,41.87470355],[-71.410248523,41.87448555],[-71.410233523,41.874005549],[-71.410217523,41.873837549],[-71.410179523,41.873127549],[-71.410164523,41.872860549],[-71.410133523,41.872162549],[-71.409370523,41.872361549],[-71.408615523,41.872544549],[-71.408393522,41.872596549],[-71.407288522,41.872891549],[-71.406303522,41.873139549],[-71.405922522,41.873230549],[-71.405551522,41.873303549],[-71.405633522,41.873428549],[-71.405752522,41.873682549],[-71.405804522,41.873810549],[-71.405868522,41.87402255],[-71.405912522,41.874238549],[-71.405936521,41.874454549],[-71.405941522,41.874631549],[-71.405933522,41.874808549],[-71.405913522,41.87498455],[-71.405881522,41.87514755],[-71.405838521,41.87530955],[-71.405787522,41.875469549],[-71.405766522,41.87552255],[-71.405630522,41.87586655],[-71.405557522,41.87609955],[-71.405534522,41.87621755],[-71.405527521,41.87633355],[-71.405540522,41.87656755],[-71.405573522,41.87682255],[-71.405648522,41.87720655],[-71.405509522,41.87718955],[-71.405365522,41.87717155]]]]}}"}, +{"type": "precinct", "typeId": 2602, "areaId": 25848, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":187,\"NAME\":\"2602\",\"SHAPE_Length\":0.074819665558644,\"SHAPE_Area\":-0.00011971663961953},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.40242852,41.871075549],[-71.402500521,41.870589549],[-71.401993521,41.869187548],[-71.40224152,41.868907549],[-71.402248521,41.868835548],[-71.402283521,41.868678549],[-71.402439521,41.868223549],[-71.40264052,41.867745548],[-71.40301852,41.867132548],[-71.403471521,41.866412548],[-71.404286521,41.865075548],[-71.404504521,41.864702547],[-71.404404521,41.864621548],[-71.404365521,41.864589548],[-71.40425852,41.864503548],[-71.405140521,41.862881548],[-71.405385521,41.862409547],[-71.405510521,41.862187547],[-71.405649521,41.861873547],[-71.405711521,41.861693547],[-71.405840521,41.861348547],[-71.406195521,41.860323547],[-71.406449521,41.859419546],[-71.406564521,41.859021547],[-71.406693522,41.858645546],[-71.406843521,41.858245547],[-71.406987521,41.857906546],[-71.407225521,41.857446546],[-71.407514521,41.857063546],[-71.407713521,41.856811546],[-71.407929521,41.856563546],[-71.407690521,41.856595546],[-71.407536521,41.856594546],[-71.407472522,41.856599546],[-71.406996521,41.856636546],[-71.406952521,41.856633546],[-71.405639521,41.856550546],[-71.405418521,41.856552546],[-71.40516752,41.856556546],[-71.40444952,41.856564546],[-71.40379752,41.856505546],[-71.40256552,41.856591546],[-71.402017519,41.856542546],[-71.400800519,41.856407546],[-71.399596518,41.856790546],[-71.399567519,41.856858547],[-71.399422518,41.857205547],[-71.399307518,41.857495547],[-71.399101519,41.858036546],[-71.398964519,41.858391547],[-71.398949519,41.858548547],[-71.398926519,41.858704547],[-71.398903519,41.858876547],[-71.398872519,41.859448547],[-71.398941519,41.859967547],[-71.398987519,41.860356547],[-71.399040519,41.860917547],[-71.399055519,41.861138547],[-71.399086519,41.861451547],[-71.399088519,41.861491547],[-71.399124519,41.861809548],[-71.399155519,41.862133547],[-71.399162519,41.862152547],[-71.399193519,41.862454548],[-71.399246519,41.862980548],[-71.399338519,41.863591547],[-71.399361519,41.863789547],[-71.399384519,41.864071548],[-71.399376519,41.864144548],[-71.399323519,41.864560548],[-71.399307519,41.864682547],[-71.399239519,41.865231548],[-71.399223519,41.865322548],[-71.399178519,41.865792549],[-71.399170519,41.865872548],[-71.399117519,41.866440548],[-71.396706519,41.866661548],[-71.396682518,41.866664549],[-71.395660518,41.866799548],[-71.395195518,41.866860549],[-71.394302518,41.866986548],[-71.394099517,41.867011548],[-71.393944517,41.867031548],[-71.392876517,41.867184548],[-71.393059518,41.867844548],[-71.393318517,41.868779549],[-71.393501517,41.869481549],[-71.393593517,41.869465549],[-71.394318518,41.869686549],[-71.394669518,41.869797549],[-71.394455518,41.870209549],[-71.394463518,41.87047255],[-71.394547518,41.87099955],[-71.394585518,41.87140755],[-71.395409518,41.87136555],[-71.394928518,41.872021549],[-71.394875518,41.872097549],[-71.394730518,41.87228455],[-71.394694518,41.872328549],[-71.394628518,41.872412549],[-71.395082518,41.872410549],[-71.396216519,41.87224155],[-71.397118519,41.872094549],[-71.397484519,41.872002549],[-71.397896519,41.871880549],[-71.398216519,41.871766549],[-71.398285519,41.871727549],[-71.398379519,41.871682549],[-71.398422519,41.87201355],[-71.398438519,41.872097549],[-71.398582519,41.872757549],[-71.398605519,41.872876549],[-71.398628519,41.872956549],[-71.398680519,41.87323755],[-71.39869652,41.873326549],[-71.398701519,41.87335255],[-71.39873552,41.873539549],[-71.398933519,41.873459549],[-71.399017519,41.873326549],[-71.39923952,41.872914549],[-71.39933852,41.87273155],[-71.399658519,41.87220455],[-71.39966652,41.87218555],[-71.40016952,41.871434549],[-71.40057452,41.871373549],[-71.401428521,41.871235549],[-71.401680521,41.871189549],[-71.40242852,41.871075549]]],[[[-71.40242852,41.871075549],[-71.402611521,41.871724549],[-71.402794521,41.872372549],[-71.402969521,41.873032549],[-71.403152521,41.873673549],[-71.403625521,41.87360855],[-71.403870521,41.873574549],[-71.404068521,41.87421555],[-71.404243521,41.87486755],[-71.404411522,41.87551255],[-71.404602522,41.87615255],[-71.404884521,41.87711455],[-71.405365522,41.87717155],[-71.405509522,41.87718955],[-71.405648522,41.87720655],[-71.405573522,41.87682255],[-71.405540522,41.87656755],[-71.405527521,41.87633355],[-71.405534522,41.87621755],[-71.405557522,41.87609955],[-71.405630522,41.87586655],[-71.405766522,41.87552255],[-71.405787522,41.875469549],[-71.405838521,41.87530955],[-71.405881522,41.87514755],[-71.405913522,41.87498455],[-71.405933522,41.874808549],[-71.405941522,41.874631549],[-71.405936521,41.874454549],[-71.405912522,41.874238549],[-71.405868522,41.87402255],[-71.405804522,41.873810549],[-71.405752522,41.873682549],[-71.405633522,41.873428549],[-71.405551522,41.873303549],[-71.405433521,41.87312155],[-71.405179521,41.872819549],[-71.404815521,41.872455549],[-71.404394521,41.872098549],[-71.403854521,41.871698549],[-71.403719521,41.871611549],[-71.403560521,41.871488549],[-71.403412521,41.871353549],[-71.40320552,41.871138549],[-71.403124521,41.871034549],[-71.403084521,41.870982549],[-71.403047521,41.870990549],[-71.402962521,41.871006549],[-71.40242852,41.871075549]]]]}}"}, +{"type": "precinct", "typeId": 2603, "areaId": 25845, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":184,\"NAME\":\"2603\",\"SHAPE_Length\":0.056770028804393,\"SHAPE_Area\":-0.00011752225783036},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.405551522,41.873303549],[-71.405922522,41.873230549],[-71.406303522,41.873139549],[-71.407288522,41.872891549],[-71.408393522,41.872596549],[-71.408615523,41.872544549],[-71.409370523,41.872361549],[-71.410133523,41.872162549],[-71.410164523,41.872860549],[-71.410179523,41.873127549],[-71.410217523,41.873837549],[-71.410233523,41.874005549],[-71.410248523,41.87448555],[-71.411064523,41.87470355],[-71.411613523,41.874863549],[-71.412659524,41.875142549],[-71.412399524,41.875759549],[-71.412025524,41.87661455],[-71.411751524,41.877240549],[-71.411476524,41.87786955],[-71.412689524,41.87816355],[-71.413551525,41.87837655],[-71.414268525,41.87855255],[-71.414604525,41.87862155],[-71.414787525,41.878643551],[-71.414955525,41.87865555],[-71.415108525,41.87865555],[-71.415352526,41.87863655],[-71.415489526,41.87926955],[-71.415550525,41.879540551],[-71.415580525,41.87968655],[-71.415611525,41.87983455],[-71.415642526,41.879948551],[-71.415787525,41.87992555],[-71.416555526,41.87979655],[-71.418060526,41.87921255],[-71.418564526,41.87914755],[-71.422153528,41.87857755],[-71.421683527,41.87722055],[-71.421632527,41.876721549],[-71.421628527,41.87668555],[-71.421605527,41.876625549],[-71.421485527,41.87631855],[-71.421429527,41.876168549],[-71.421343527,41.875449549],[-71.421267527,41.87507255],[-71.421201527,41.874738549],[-71.421086527,41.874035549],[-71.420999527,41.873406549],[-71.420772527,41.872587549],[-71.420381527,41.871059548],[-71.420205527,41.870643549],[-71.419868526,41.869827549],[-71.419876527,41.869782548],[-71.419829526,41.869063548],[-71.419824526,41.868361548],[-71.419664526,41.868398548],[-71.419557526,41.868422548],[-71.419319526,41.868473548],[-71.419258526,41.868340548],[-71.419098525,41.867958547],[-71.418988526,41.867715548],[-71.417885526,41.868145548],[-71.417099525,41.868466548],[-71.416580525,41.868672548],[-71.416443525,41.868477548],[-71.414734524,41.868882548],[-71.413338524,41.869202549],[-71.412498524,41.869412548],[-71.412025523,41.869526548],[-71.410851523,41.869831548],[-71.410789524,41.869690549],[-71.410561523,41.869217549],[-71.409546522,41.869469549],[-71.407280522,41.870049548],[-71.405899521,41.870396548],[-71.405556522,41.870484549],[-71.405350521,41.870526549],[-71.404953521,41.870636549],[-71.404495521,41.870739549],[-71.403992521,41.870827549],[-71.403236521,41.870953549],[-71.403084521,41.870982549],[-71.403124521,41.871034549],[-71.40320552,41.871138549],[-71.403412521,41.871353549],[-71.403560521,41.871488549],[-71.403719521,41.871611549],[-71.403854521,41.871698549],[-71.404394521,41.872098549],[-71.404815521,41.872455549],[-71.405179521,41.872819549],[-71.405433521,41.87312155],[-71.405551522,41.873303549]]]]}}"}, +{"type": "precinct", "typeId": 2604, "areaId": 25847, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":186,\"NAME\":\"2604\",\"SHAPE_Length\":0.05536882619071,\"SHAPE_Area\":-0.00015593672615895},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.407929521,41.856563546],[-71.407713521,41.856811546],[-71.407514521,41.857063546],[-71.407225521,41.857446546],[-71.406987521,41.857906546],[-71.406843521,41.858245547],[-71.406693522,41.858645546],[-71.406564521,41.859021547],[-71.406449521,41.859419546],[-71.406195521,41.860323547],[-71.405840521,41.861348547],[-71.405711521,41.861693547],[-71.405649521,41.861873547],[-71.405510521,41.862187547],[-71.405385521,41.862409547],[-71.405140521,41.862881548],[-71.40425852,41.864503548],[-71.404365521,41.864589548],[-71.404404521,41.864621548],[-71.404504521,41.864702547],[-71.404286521,41.865075548],[-71.403471521,41.866412548],[-71.40301852,41.867132548],[-71.40264052,41.867745548],[-71.402439521,41.868223549],[-71.402283521,41.868678549],[-71.402248521,41.868835548],[-71.40224152,41.868907549],[-71.401993521,41.869187548],[-71.402500521,41.870589549],[-71.40242852,41.871075549],[-71.402962521,41.871006549],[-71.403047521,41.870990549],[-71.403084521,41.870982549],[-71.403236521,41.870953549],[-71.403992521,41.870827549],[-71.404495521,41.870739549],[-71.404953521,41.870636549],[-71.405350521,41.870526549],[-71.405556522,41.870484549],[-71.405899521,41.870396548],[-71.407280522,41.870049548],[-71.409546522,41.869469549],[-71.410561523,41.869217549],[-71.410789524,41.869690549],[-71.410851523,41.869831548],[-71.412025523,41.869526548],[-71.412498524,41.869412548],[-71.413338524,41.869202549],[-71.414734524,41.868882548],[-71.416443525,41.868477548],[-71.416580525,41.868672548],[-71.417099525,41.868466548],[-71.417885526,41.868145548],[-71.418988526,41.867715548],[-71.419098525,41.867958547],[-71.419258526,41.868340548],[-71.419319526,41.868473548],[-71.419557526,41.868422548],[-71.419664526,41.868398548],[-71.419824526,41.868361548],[-71.419418526,41.866818548],[-71.419251526,41.866203547],[-71.419054526,41.865512548],[-71.418839526,41.864878547],[-71.418221525,41.863972547],[-71.418305525,41.863479547],[-71.418037525,41.862809547],[-71.417992525,41.862419546],[-71.417953525,41.862164547],[-71.417840525,41.861584546],[-71.417862525,41.861512547],[-71.417759525,41.861100547],[-71.417656525,41.860551546],[-71.417586525,41.859906546],[-71.417508525,41.859457546],[-71.415904524,41.859341546],[-71.415413524,41.859297547],[-71.413284524,41.859085546],[-71.412975523,41.859053546],[-71.411380523,41.858857546],[-71.410952522,41.858299547],[-71.410790522,41.858087547],[-71.410262523,41.857398546],[-71.410190522,41.857303546],[-71.409818522,41.856798546],[-71.409748522,41.856704546],[-71.409605522,41.856510546],[-71.409324522,41.856557546],[-71.408845522,41.856568546],[-71.407956522,41.856563546],[-71.407929521,41.856563546]]]]}}"}, +{"type": "precinct", "typeId": 2605, "areaId": 25849, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":188,\"NAME\":\"2605\",\"SHAPE_Length\":0.032479697631904,\"SHAPE_Area\":-3.3791315978048e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.395660518,41.87486355],[-71.396538518,41.87472255],[-71.396881519,41.87466555],[-71.397545519,41.87456255],[-71.397880519,41.87450755],[-71.39793852,41.87449855],[-71.398277519,41.87444355],[-71.39892652,41.87432155],[-71.399109519,41.87498555],[-71.399284519,41.87564155],[-71.399460519,41.87627455],[-71.39959052,41.87675555],[-71.39965852,41.87703055],[-71.40108552,41.87696955],[-71.40148952,41.87695355],[-71.401848521,41.87693855],[-71.401955521,41.87693855],[-71.402351521,41.87693855],[-71.402573521,41.87693455],[-71.403381521,41.87696555],[-71.403716521,41.87699155],[-71.403931521,41.87700755],[-71.404152521,41.87702655],[-71.404671521,41.87708755],[-71.404755522,41.87709855],[-71.404884521,41.87711455],[-71.404602522,41.87615255],[-71.404411522,41.87551255],[-71.404243521,41.87486755],[-71.404068521,41.87421555],[-71.403870521,41.873574549],[-71.403625521,41.87360855],[-71.403152521,41.873673549],[-71.402969521,41.873032549],[-71.402794521,41.872372549],[-71.402611521,41.871724549],[-71.40242852,41.871075549],[-71.401680521,41.871189549],[-71.401428521,41.871235549],[-71.40057452,41.871373549],[-71.40016952,41.871434549],[-71.39966652,41.87218555],[-71.399658519,41.87220455],[-71.39933852,41.87273155],[-71.39923952,41.872914549],[-71.399017519,41.873326549],[-71.398933519,41.873459549],[-71.39873552,41.873539549],[-71.398701519,41.87335255],[-71.39869652,41.873326549],[-71.398680519,41.87323755],[-71.398628519,41.872956549],[-71.398605519,41.872876549],[-71.398582519,41.872757549],[-71.398438519,41.872097549],[-71.398422519,41.87201355],[-71.398379519,41.871682549],[-71.398285519,41.871727549],[-71.398216519,41.871766549],[-71.397896519,41.871880549],[-71.397484519,41.872002549],[-71.397118519,41.872094549],[-71.396216519,41.87224155],[-71.395082518,41.872410549],[-71.394875518,41.87244155],[-71.394568518,41.872487549],[-71.394547518,41.872509549],[-71.394510518,41.87255755],[-71.394470518,41.87260955],[-71.394409518,41.87268955],[-71.394363518,41.872742549],[-71.395065518,41.87263555],[-71.395248518,41.87329555],[-71.395432518,41.87395555],[-71.395660518,41.87486355]]]]}}"}, +{"type": "precinct", "typeId": 2606, "areaId": 25850, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":189,\"NAME\":\"2606\",\"SHAPE_Length\":0.037901157075734,\"SHAPE_Area\":-6.1612783681466e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.393120518,41.87526055],[-71.393738518,41.87584055],[-71.394367518,41.87644755],[-71.394675518,41.876746551],[-71.394762518,41.87685755],[-71.394900518,41.87703555],[-71.395210518,41.87724055],[-71.395321519,41.87734555],[-71.395477519,41.877491551],[-71.395729519,41.877785551],[-71.395790519,41.87792655],[-71.395836518,41.877972551],[-71.395737518,41.878094551],[-71.394920518,41.87903655],[-71.394821518,41.879170551],[-71.394127518,41.880055551],[-71.393486518,41.880864551],[-71.393661518,41.880944552],[-71.393845518,41.881104551],[-71.394241518,41.881554551],[-71.394447519,41.881779552],[-71.394859518,41.882252551],[-71.394905519,41.882306552],[-71.40022352,41.881745551],[-71.40141352,41.881707551],[-71.402000521,41.881699551],[-71.402859521,41.881393551],[-71.404507522,41.880759551],[-71.404534521,41.880756551],[-71.405021522,41.880698551],[-71.405029522,41.880600551],[-71.405159522,41.879181551],[-71.405167522,41.879029551],[-71.405185522,41.878813551],[-71.405243522,41.878113551],[-71.405365522,41.87717155],[-71.404884521,41.87711455],[-71.404755522,41.87709855],[-71.404671521,41.87708755],[-71.404152521,41.87702655],[-71.403931521,41.87700755],[-71.403716521,41.87699155],[-71.403381521,41.87696555],[-71.402573521,41.87693455],[-71.402351521,41.87693855],[-71.401955521,41.87693855],[-71.401848521,41.87693855],[-71.40148952,41.87695355],[-71.40108552,41.87696955],[-71.39965852,41.87703055],[-71.39959052,41.87675555],[-71.399460519,41.87627455],[-71.399284519,41.87564155],[-71.399109519,41.87498555],[-71.39892652,41.87432155],[-71.398277519,41.87444355],[-71.39793852,41.87449855],[-71.397880519,41.87450755],[-71.397545519,41.87456255],[-71.396881519,41.87466555],[-71.396538518,41.87472255],[-71.395660518,41.87486355],[-71.394844518,41.87499755],[-71.393120518,41.87526055]]]]}}"}, +{"type": "precinct", "typeId": 2607, "areaId": 25852, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":191,\"NAME\":\"2607\",\"SHAPE_Length\":0.09297074682622,\"SHAPE_Area\":-0.00016123740181172},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.378353611,41.865247157],[-71.378329175,41.865227391],[-71.378297265,41.865211921],[-71.378258585,41.865200628],[-71.378223905,41.865190931],[-71.378353611,41.865247157]]],[[[-71.378370512,41.865270548],[-71.378377513,41.865292548],[-71.378376666,41.865300169],[-71.378377726,41.865292183],[-71.37837073,41.865270771],[-71.37836813,41.865267124],[-71.378370512,41.865270548]]],[[[-71.378272307,41.865382926],[-71.37829069,41.865371879],[-71.378316878,41.865355235],[-71.378342086,41.865339986],[-71.378353591,41.865332124],[-71.378272307,41.865382926]]],[[[-71.378234512,41.865411549],[-71.378234317,41.865411917],[-71.378235223,41.865410993],[-71.378234512,41.865411549]]],[[[-71.378224512,41.865446548],[-71.378225452,41.86544919],[-71.378224774,41.865445491],[-71.378224993,41.865437888],[-71.378224512,41.865446548]]],[[[-71.378245512,41.865505548],[-71.378247609,41.865508871],[-71.378245861,41.865505589],[-71.378244134,41.865501678],[-71.378245512,41.865505548]]],[[[-71.378416513,41.865776548],[-71.378418601,41.865778689],[-71.378416885,41.865776602],[-71.378400506,41.865750721],[-71.37838419,41.865723421],[-71.378366928,41.865694703],[-71.378348718,41.865665961],[-71.378328642,41.865637148],[-71.378327877,41.86563608],[-71.378416513,41.865776548]]],[[[-71.378547513,41.865873548],[-71.378606513,41.865925549],[-71.378628513,41.865958549],[-71.378606681,41.86592554],[-71.378578986,41.865897336],[-71.378547306,41.865873337],[-71.378544846,41.865871907],[-71.378547513,41.865873548]]],[[[-71.378656512,41.866034549],[-71.378675158,41.866168333],[-71.378673442,41.866149287],[-71.378669813,41.866110841],[-71.378664287,41.866072302],[-71.378656833,41.866034515],[-71.378644638,41.865995878],[-71.378628544,41.865958633],[-71.378656512,41.866034549]]],[[[-71.378696512,41.866321548],[-71.37869855,41.8663297],[-71.378696948,41.866321832],[-71.378695158,41.866311832],[-71.378696512,41.866321548]]],[[[-71.378821207,41.866683738],[-71.378810072,41.866652333],[-71.378794149,41.866611519],[-71.378778161,41.866572168],[-71.378762744,41.866536973],[-71.378821207,41.866683738]]],[[[-71.378868747,41.866848483],[-71.378863951,41.866828957],[-71.378851921,41.866783917],[-71.378838974,41.866738166],[-71.378828954,41.866706799],[-71.378868747,41.866848483]]],[[[-71.378916513,41.867018549],[-71.378917048,41.867019798],[-71.378916448,41.86701832],[-71.378916513,41.867018549]]],[[[-71.379073964,41.867320202],[-71.379053389,41.86728376],[-71.37904289,41.867266358],[-71.379073964,41.867320202]]],[[[-71.379119513,41.867431549],[-71.379141338,41.867538193],[-71.379140392,41.867531357],[-71.379132316,41.867482136],[-71.379119531,41.8674314],[-71.379101942,41.8673813],[-71.379081412,41.867333853],[-71.379119513,41.867431549]]],[[[-71.379163512,41.867646549],[-71.379163559,41.867646612],[-71.379163456,41.867646273],[-71.379163512,41.867646549]]],[[[-71.380266737,41.869157892],[-71.379166482,41.867649135],[-71.379164029,41.867647256],[-71.380266737,41.869157892]]],[[[-71.380420513,41.869402892],[-71.380422474,41.869390468],[-71.380422867,41.869376953],[-71.380420513,41.869369254],[-71.380420513,41.869402892]]],[[[-71.38037248,41.869442459],[-71.380379216,41.869438149],[-71.380396676,41.869427076],[-71.380410311,41.869415908],[-71.380418565,41.869407046],[-71.38037248,41.869442459]]],[[[-71.380325513,41.86947855],[-71.380324768,41.869479606],[-71.38032569,41.869478525],[-71.380326396,41.869477872],[-71.380325513,41.86947855]]],[[[-71.380301513,41.86951255],[-71.380300062,41.86952634],[-71.380301855,41.8695123],[-71.380302549,41.869511083],[-71.380301513,41.86951255]]],[[[-71.380453513,41.86966655],[-71.380518513,41.869713549],[-71.380579904,41.869781761],[-71.380562129,41.869759139],[-71.38054094,41.869735311],[-71.380518707,41.869713608],[-71.380496407,41.869694741],[-71.380474988,41.869679489],[-71.380453474,41.86966634],[-71.380438651,41.869657632],[-71.380453513,41.86966655]]],[[[-71.380612125,41.869838911],[-71.38059679,41.869810217],[-71.380585301,41.869790398],[-71.380612125,41.869838911]]],[[[-71.380726513,41.87002355],[-71.380727302,41.8700242],[-71.3807267,41.870023624],[-71.380725661,41.87002238],[-71.380726513,41.87002355]]],[[[-71.380760513,41.870051549],[-71.380763599,41.870053092],[-71.380760151,41.870051192],[-71.380759697,41.870050878],[-71.380760513,41.870051549]]],[[[-71.380806513,41.87007455],[-71.380864544,41.87010827],[-71.380855728,41.870102562],[-71.380834213,41.870089368],[-71.380814594,41.870076976],[-71.380791117,41.870065906],[-71.38078213,41.870062358],[-71.380806513,41.87007455]]],[[[-71.380880513,41.87011755],[-71.380885905,41.870119465],[-71.380880055,41.870117155],[-71.380874199,41.870113881],[-71.380880513,41.87011755]]],[[[-71.381149114,41.870217069],[-71.381126827,41.870206552],[-71.381101415,41.870196522],[-71.381149114,41.870217069]]],[[[-71.381283596,41.870317859],[-71.381279759,41.870314329],[-71.381251933,41.870288962],[-71.381222209,41.870264279],[-71.381194096,41.870243689],[-71.381283596,41.870317859]]],[[[-71.381476514,41.87049055],[-71.381476409,41.870490391],[-71.381454304,41.870465121],[-71.381432102,41.87044271],[-71.381408004,41.870420274],[-71.381381975,41.870399208],[-71.381379609,41.870397425],[-71.381407513,41.870420549],[-71.381476514,41.87049055]]],[[[-71.381476514,41.87049055],[-71.381514833,41.870549502],[-71.381496552,41.87051774],[-71.381476514,41.87049055]]],[[[-71.381548206,41.870625842],[-71.381532586,41.870588098],[-71.381516464,41.870552738],[-71.381548206,41.870625842]]],[[[-71.381579513,41.87073655],[-71.381581173,41.870739698],[-71.381579645,41.870736105],[-71.381571109,41.870702525],[-71.381560774,41.870666062],[-71.381548567,41.87062674],[-71.381579513,41.87073655]]],[[[-71.381631514,41.87081555],[-71.381647817,41.870826723],[-71.381631604,41.870815192],[-71.381620962,41.870804539],[-71.381631514,41.87081555]]],[[[-71.381735187,41.870886607],[-71.381699748,41.870861114],[-71.381672419,41.870843586],[-71.381735187,41.870886607]]],[[[-71.381809514,41.87093755],[-71.381817974,41.870942323],[-71.381809844,41.870937631],[-71.381805629,41.870934887],[-71.381809514,41.87093755]]],[[[-71.382027513,41.871060549],[-71.382029634,41.871061361],[-71.382028013,41.871060659],[-71.382025509,41.871059418],[-71.382027513,41.871060549]]],[[[-71.382321045,41.871151148],[-71.382273285,41.871136514],[-71.382241157,41.871129288],[-71.382321045,41.871151148]]],[[[-71.382494514,41.87124155],[-71.382507622,41.871246846],[-71.382494854,41.871241112],[-71.382453653,41.871217699],[-71.382412484,41.871193553],[-71.382374552,41.871173952],[-71.382494514,41.87124155]]],[[[-71.382593514,41.87128155],[-71.382605015,41.871285419],[-71.382593637,41.871281165],[-71.38258177,41.871276805],[-71.382593514,41.87128155]]],[[[-71.382988467,41.871383084],[-71.382945085,41.871370825],[-71.382896854,41.871360073],[-71.382848591,41.871350739],[-71.382832294,41.871347541],[-71.382988467,41.871383084]]],[[[-71.383062434,41.871423397],[-71.383029841,41.871402058],[-71.382992042,41.871384397],[-71.383062434,41.871423397]]],[[[-71.383156515,41.871511549],[-71.383182066,41.871536428],[-71.383161687,41.871515917],[-71.383128334,41.871484073],[-71.383096876,41.871452963],[-71.383067628,41.871427495],[-71.383156515,41.871511549]]],[[[-71.383317514,41.87168955],[-71.383381233,41.871781161],[-71.383372313,41.871767616],[-71.383345858,41.87172805],[-71.383317505,41.87168919],[-71.383286244,41.871650968],[-71.383254917,41.871614895],[-71.383224505,41.871580973],[-71.383199997,41.871554834],[-71.383317514,41.87168955]]],[[[-71.383653514,41.872133549],[-71.383657239,41.872135765],[-71.383653871,41.872133569],[-71.383651088,41.872131396],[-71.383653514,41.872133549]]],[[[-71.383844156,41.872246957],[-71.383813937,41.872226554],[-71.38377836,41.872206028],[-71.383744615,41.872187722],[-71.383743516,41.872187089],[-71.383844156,41.872246957]]],[[[-71.383912839,41.872306193],[-71.383883819,41.87227817],[-71.383852961,41.872253465],[-71.383912839,41.872306193]]],[[[-71.384052469,41.872495656],[-71.384033494,41.872466277],[-71.384010669,41.872432478],[-71.383987777,41.872401536],[-71.383964854,41.872371281],[-71.383941961,41.872341003],[-71.383917429,41.872311164],[-71.384052469,41.872495656]]],[[[-71.384098514,41.87258355],[-71.384124515,41.87264955],[-71.384127033,41.872649356],[-71.384117378,41.872625572],[-71.384107048,41.872602351],[-71.384098607,41.872583315],[-71.384078886,41.872541721],[-71.384062793,41.872512978],[-71.384098514,41.87258355]]],[[[-71.383370515,41.87653855],[-71.383397514,41.876564551],[-71.383469514,41.876633551],[-71.383633515,41.876748551],[-71.383736515,41.876820551],[-71.383980515,41.876999551],[-71.384132514,41.877076551],[-71.384300515,41.87714455],[-71.384346514,41.87716355],[-71.384651515,41.877228551],[-71.384972515,41.877324551],[-71.385330515,41.877499551],[-71.385704516,41.87774755],[-71.385956516,41.877880551],[-71.386101515,41.877716551],[-71.386307516,41.877518551],[-71.386597516,41.877255551],[-71.386711515,41.877232551],[-71.387192516,41.87712555],[-71.387245516,41.87660355],[-71.387299516,41.876179551],[-71.387337516,41.87572155],[-71.387360516,41.87555455],[-71.387383516,41.87537455],[-71.387421516,41.87495155],[-71.387428515,41.87492855],[-71.387428515,41.87490555],[-71.387512516,41.87423055],[-71.389755516,41.87430655],[-71.389709516,41.873516549],[-71.389702517,41.87334555],[-71.389687517,41.87315055],[-71.389753516,41.87314855],[-71.390297516,41.87312055],[-71.390503517,41.87310155],[-71.390572517,41.87309355],[-71.390793517,41.87307455],[-71.391022517,41.87304355],[-71.391456517,41.872974549],[-71.392356518,41.87283155],[-71.393898518,41.872586549],[-71.394568518,41.872487549],[-71.394875518,41.87244155],[-71.395082518,41.872410549],[-71.394628518,41.872412549],[-71.394694518,41.872328549],[-71.394730518,41.87228455],[-71.394875518,41.872097549],[-71.394928518,41.872021549],[-71.394661518,41.87207155],[-71.393997518,41.871899549],[-71.393150517,41.871647549],[-71.393135518,41.871514549],[-71.392273517,41.871552549],[-71.392197517,41.870758549],[-71.392120517,41.869713549],[-71.391258517,41.869854549],[-71.390373516,41.869999549],[-71.389847516,41.870087549],[-71.389465516,41.870144549],[-71.389328516,41.870171549],[-71.389236516,41.87017955],[-71.389137516,41.870182549],[-71.389053516,41.870175549],[-71.388947516,41.87014055],[-71.388550516,41.869923549],[-71.388229515,41.869706549],[-71.388809516,41.869072549],[-71.389183516,41.868653549],[-71.389229516,41.868607549],[-71.389350516,41.868474549],[-71.389381516,41.868454549],[-71.389580516,41.868210549],[-71.389603516,41.868191549],[-71.389898516,41.867903549],[-71.390171516,41.867637549],[-71.390213517,41.867596549],[-71.390221516,41.867516549],[-71.390587516,41.867112549],[-71.390724516,41.866967548],[-71.391228517,41.866410549],[-71.390770516,41.866181549],[-71.390541516,41.866074548],[-71.390373516,41.866051548],[-71.390320516,41.866055548],[-71.389824516,41.866074548],[-71.389534516,41.866078549],[-71.387848516,41.866124548],[-71.387291515,41.866150548],[-71.387329516,41.865517549],[-71.387383515,41.864910549],[-71.387398515,41.864663548],[-71.387413515,41.864602549],[-71.387436515,41.864521548],[-71.387543516,41.864220548],[-71.387596515,41.864117548],[-71.387764515,41.863789548],[-71.388039515,41.863224548],[-71.388222516,41.862835548],[-71.388237515,41.862812548],[-71.388466515,41.862343547],[-71.388550516,41.862183548],[-71.388786516,41.861725548],[-71.388817515,41.861653548],[-71.388839515,41.861608548],[-71.388885516,41.861515548],[-71.389076516,41.861115547],[-71.389343515,41.860573547],[-71.389618516,41.859990547],[-71.389664516,41.859898547],[-71.389999516,41.859230547],[-71.390338516,41.858543547],[-71.390343516,41.858525547],[-71.390678516,41.857823547],[-71.390709516,41.857773547],[-71.390999516,41.857167547],[-71.391029516,41.857113547],[-71.391212516,41.856713547],[-71.391124516,41.856712546],[-71.387566515,41.856991547],[-71.383698514,41.856907547],[-71.379238821,41.857185528],[-71.379230997,41.857199568],[-71.379209189,41.857230715],[-71.379184633,41.857259778],[-71.379157261,41.857288861],[-71.379129913,41.85731729],[-71.379102553,41.857344992],[-71.379076995,41.857369937],[-71.379053274,41.857393512],[-71.379031391,41.857415672],[-71.379014097,41.857437813],[-71.379005121,41.85746129],[-71.379003544,41.857486123],[-71.379007478,41.857508836],[-71.379015057,41.857528785],[-71.379026229,41.857541786],[-71.379042862,41.857545829],[-71.379066816,41.857544322],[-71.379095335,41.857539321],[-71.379126581,41.857532287],[-71.379156938,41.85752587],[-71.379186398,41.857524346],[-71.379211379,41.857530387],[-71.379231814,41.857546119],[-71.379247708,41.857568776],[-71.37926182,41.857596233],[-71.379274981,41.857624421],[-71.379290041,41.857651879],[-71.37930966,41.857678656],[-71.379332952,41.857704018],[-71.379359947,41.857728653],[-71.379390613,41.857753269],[-71.379424034,41.857776516],[-71.379459291,41.857799742],[-71.379494548,41.857822967],[-71.37952886,41.85784482],[-71.379562257,41.85786459],[-71.37959379,41.857883742],[-71.37962254,41.857902204],[-71.379651293,41.857919248],[-71.379678182,41.857935604],[-71.379703264,41.857952713],[-71.379726451,41.857969089],[-71.379748724,41.857983428],[-71.379768216,41.857996415],[-71.379785846,41.858007341],[-71.379810872,41.85802166],[-71.379977578,41.858108209],[-71.379990623,41.858117668],[-71.380008439,41.858127222],[-71.380021418,41.858138785],[-71.380033383,41.858152518],[-71.380047179,41.858169089],[-71.380061956,41.858184267],[-71.380074838,41.85819871],[-71.380092491,41.858213959],[-71.380094192,41.858220387],[-71.3801005,41.858233268],[-71.380112237,41.8582548],[-71.380129466,41.858283564],[-71.380148525,41.858315851],[-71.380165623,41.858349577],[-71.380181806,41.858381862],[-71.380196288,41.858407718],[-71.380208123,41.858425682],[-71.380219401,41.858430862],[-71.380222148,41.858434433],[-71.380229374,41.858447361],[-71.380240064,41.858472436],[-71.380251344,41.858509609],[-71.380263438,41.8585525],[-71.380274423,41.858600353],[-71.38028531,41.858651018],[-71.380295216,41.858703123],[-71.380302312,41.858753029],[-71.380306628,41.858800783],[-71.380308197,41.858844921],[-71.380308949,41.858884736],[-71.38031163,41.858923227],[-71.380315357,41.858958837],[-71.38032098,41.858994495],[-71.38033226,41.859031668],[-71.380348312,41.859068937],[-71.380366325,41.859104082],[-71.380388197,41.85913715],[-71.380410102,41.859168846],[-71.380432985,41.859200543],[-71.380456852,41.859230068],[-71.380479868,41.859256779],[-71.380500073,41.859281293],[-71.380518543,41.859301505],[-71.380534268,41.859316683],[-71.380547313,41.859326187],[-71.380560456,41.859332055],[-71.380563072,41.859339924],[-71.380566046,41.859369131],[-71.380571506,41.859410483],[-71.380579746,41.859454033],[-71.380590012,41.859493332],[-71.38060335,41.859526253],[-71.380615872,41.859553503],[-71.380623752,41.85957638],[-71.380628885,41.859596395],[-71.380631141,41.859617047],[-71.380632416,41.859638431],[-71.380633691,41.8596605],[-71.380635978,41.859680444],[-71.380639249,41.859698308],[-71.380642617,41.859713313],[-71.380649679,41.859731912],[-71.380653438,41.859734112],[-71.380658179,41.859734162],[-71.380662069,41.859731377],[-71.380668705,41.859732916],[-71.380674199,41.859739416],[-71.380682307,41.859755181],[-71.380694924,41.859780326],[-71.380710161,41.859811832],[-71.380726278,41.859846975],[-71.380740435,41.859883488],[-71.380751682,41.859922079],[-71.380758189,41.859959887],[-71.380759954,41.859997622],[-71.380755966,41.860036677],[-71.380744426,41.860073507],[-71.380728178,41.860108799],[-71.380707159,41.860143308],[-71.380683294,41.860178501],[-71.380659396,41.860215112],[-71.380635465,41.860252408],[-71.380611534,41.860290437],[-71.380587635,41.860327024],[-71.380561841,41.860362901],[-71.380537093,41.860395943],[-71.380514306,41.860426884],[-71.380497275,41.860455749],[-71.38048884,41.860484074],[-71.3804909,41.86051113],[-71.380504371,41.86053838],[-71.380524574,41.860564311],[-71.380548603,41.860588897],[-71.38057646,41.860611406],[-71.38060533,41.860632521],[-71.380635209,41.860653659],[-71.38066215,41.860675412],[-71.380685229,41.860700683],[-71.380703439,41.860729448],[-71.380717697,41.860760953],[-71.380731035,41.860793943],[-71.380742444,41.860827526],[-71.380751926,41.86086113],[-71.380759543,41.860894],[-71.380762455,41.860923915],[-71.38075873,41.860953045],[-71.380745522,41.860981983],[-71.380724697,41.861010822],[-71.380700995,41.861040297],[-71.38067448,41.861069038],[-71.380647869,41.861099929],[-71.380621289,41.861130774],[-71.380596542,41.861163084],[-71.380574637,41.861196907],[-71.380553681,41.861229999],[-71.380533706,41.861262383],[-71.380511866,41.861294033],[-71.380489015,41.861326391],[-71.38046335,41.861358677],[-71.380435789,41.861390253],[-71.380408263,41.861419702],[-71.380382698,41.861447758],[-71.380358143,41.861475083],[-71.380335422,41.861503165],[-71.380313617,41.861532665],[-71.380291811,41.861562212],[-71.380273829,41.861591785],[-71.380261569,41.861620746],[-71.380253951,41.861654058],[-71.380248132,41.861690276],[-71.380242247,41.861729306],[-71.380234433,41.86176902],[-71.380225706,41.861806561],[-71.380214166,41.861842682],[-71.380201838,41.861875165],[-71.380190496,41.86190415],[-71.380178333,41.861930277],[-71.380163327,41.861954936],[-71.380141717,41.861978056],[-71.380114417,41.862001102],[-71.380083259,41.862025493],[-71.38005194,41.862054847],[-71.380019607,41.862086326],[-71.37998822,41.86211856],[-71.379953042,41.862149991],[-71.379914986,41.862182813],[-71.37987595,41.862215634],[-71.379835018,41.862248362],[-71.379794118,41.862280427],[-71.379752272,41.86231105],[-71.37970856,41.86234167],[-71.379664848,41.862372223],[-71.379621104,41.86240353],[-71.379580203,41.862435594],[-71.379540251,41.862467683],[-71.379504059,41.862501238],[-71.379470776,41.862533425],[-71.379441351,41.862563535],[-71.379414771,41.862593671],[-71.379393913,41.862623241],[-71.379376878,41.862652838],[-71.379362688,41.862683169],[-71.379349415,41.86271357],[-71.379336206,41.862742485],[-71.379321134,41.862770003],[-71.379302366,41.862793904],[-71.379277913,41.862815558],[-71.379251594,41.862837163],[-71.379221482,41.862858011],[-71.379191435,41.86287744],[-71.37916613,41.862896234],[-71.379147527,41.862914418],[-71.379139386,41.862932087],[-71.37913981,41.862950588],[-71.37914782,41.86296992],[-71.37915861,41.862990719],[-71.379171328,41.863011566],[-71.379185973,41.86303246],[-71.379202485,41.863052625],[-71.379218112,41.863072079],[-71.379232823,41.863090138],[-71.379242698,41.863110181],[-71.379246719,41.863135158],[-71.379245868,41.863165023],[-71.379244854,41.863199851],[-71.379243679,41.863238955],[-71.379242533,41.863278814],[-71.379242336,41.863318605],[-71.379244101,41.863356362],[-71.379247796,41.863391996],[-71.37925247,41.863428384],[-71.379254269,41.86346397],[-71.3792561,41.863498846],[-71.37925986,41.863533084],[-71.379271172,41.863569548],[-71.379288139,41.863608237],[-71.379308866,41.863648393],[-71.37933146,41.86368862],[-71.379357909,41.863728141],[-71.379387267,41.86376634],[-71.379417577,41.863803121],[-71.379447,41.863839147],[-71.379475446,41.863874509],[-71.379500065,41.863911879],[-71.379522721,41.863951374],[-71.379543319,41.863995097],[-71.37956395,41.864038112],[-71.379582716,41.864080392],[-71.379598735,41.86411908],[-71.379612959,41.864152757],[-71.3796245,41.864181401],[-71.379634244,41.864205766],[-71.379643168,41.864226517],[-71.379652193,41.864243037],[-71.379662355,41.864256769],[-71.379675209,41.864270412],[-71.379690969,41.864284196],[-71.379706727,41.864298688],[-71.379723466,41.864312472],[-71.379742037,41.864328431],[-71.379761523,41.864345809],[-71.379779932,41.864366066],[-71.379794513,41.864389042],[-71.379803242,41.864416219],[-71.379804223,41.864447527],[-71.379799451,41.864480178],[-71.379790917,41.864512048],[-71.37978902,41.864544748],[-71.379796671,41.864576177],[-71.379809978,41.864609099],[-71.379826161,41.864642092],[-71.379842314,41.864675108],[-71.379856503,41.864710935],[-71.379871608,41.864748135],[-71.3798857,41.864786798],[-71.379898844,41.864825414],[-71.379909208,41.864861877],[-71.379917678,41.864896874],[-71.379919575,41.864929647],[-71.379913981,41.864959416],[-71.37990264,41.864987692],[-71.379892406,41.865012403],[-71.379885113,41.865035058],[-71.379873145,41.865054781],[-71.379857356,41.865072304],[-71.379836889,41.865089046],[-71.379813576,41.865105738],[-71.379792096,41.865123896],[-71.379775357,41.865142837],[-71.379772021,41.86515987],[-71.379779246,41.865173507],[-71.379793241,41.865182258],[-71.379810274,41.865186072],[-71.379828388,41.865184947],[-71.37984565,41.865180963],[-71.379874489,41.865170062],[-71.379885964,41.865168839],[-71.379897243,41.865173974],[-71.379911108,41.865187],[-71.379928567,41.865208652],[-71.379947824,41.865233873],[-71.379971823,41.865259168],[-71.380002557,41.865282412],[-71.380038129,41.865302894],[-71.38007465,41.865323422],[-71.380110157,41.86534603],[-71.380145631,41.865370102],[-71.380179079,41.865397693],[-71.380208637,41.865428048],[-71.380237213,41.865459796],[-71.380265789,41.865491591],[-71.380294365,41.865523339],[-71.380318165,41.865557163],[-71.380337098,41.865592332],[-71.380353185,41.865628184],[-71.380364529,41.865663939],[-71.380371103,41.865698866],[-71.380367278,41.865732273],[-71.380353938,41.865765464],[-71.380336839,41.865797211],[-71.380319739,41.865828957],[-71.38031127,41.865858677],[-71.380317974,41.865889397],[-71.380337984,41.865920999],[-71.380357962,41.865954065],[-71.380370321,41.865987008],[-71.380367443,41.866021102],[-71.380353123,41.866055002],[-71.380335011,41.866088165],[-71.380315065,41.866120549],[-71.38029316,41.866152908],[-71.380272267,41.866184582],[-71.380256115,41.866216329],[-71.38024853,41.866248223],[-71.380247485,41.866283759],[-71.380248301,41.866321493],[-71.380249022,41.866361354],[-71.380250723,41.866401215],[-71.380256248,41.866440464],[-71.380266483,41.866480471],[-71.380276718,41.866521165],[-71.380283157,41.866562541],[-71.380288554,41.866605288],[-71.380294929,41.866648104],[-71.380301176,41.866694442],[-71.38030451,41.866743567],[-71.380303956,41.866794769],[-71.380304381,41.866846018],[-71.380309612,41.866895168],[-71.380317787,41.866940845],[-71.380328152,41.866977308],[-71.380339791,41.867003116],[-71.380346037,41.867016706],[-71.38069031,41.868038921],[-71.380704403,41.86807756],[-71.380710453,41.868098285],[-71.380918648,41.868791737],[-71.380932086,41.868821114],[-71.380939149,41.868839713],[-71.380944448,41.868853349],[-71.380953602,41.868866279],[-71.380967402,41.868882164],[-71.380985941,41.86889954],[-71.38100726,41.868919092],[-71.381032403,41.868938693],[-71.381062258,41.868958414],[-71.381095968,41.868978185],[-71.381132492,41.868997958],[-71.38117091,41.869019929],[-71.381208315,41.869043293],[-71.381244612,41.869070224],[-71.38127999,41.86909784],[-71.381315273,41.869127583],[-71.381350617,41.869156639],[-71.381383087,41.869185579],[-71.381416503,41.869215296],[-71.381447958,41.869246407],[-71.381478371,41.869278935],[-71.381509795,41.869310731],[-71.381541281,41.869341819],[-71.381574633,41.869373687],[-71.381608902,41.869405532],[-71.381645097,41.869438134],[-71.38168316,41.869470052],[-71.381722203,41.869501308],[-71.381764186,41.869531126],[-71.381806171,41.869560258],[-71.381846228,41.869589388],[-71.381885367,41.869618494],[-71.381923589,41.869646821],[-71.38196273,41.869675219],[-71.382002849,41.86970364],[-71.382045784,41.869732063],[-71.382088717,41.869761196],[-71.382130701,41.869790374],[-71.382172718,41.869818774],[-71.382211827,41.86984788],[-71.382249039,41.869876915],[-71.382283404,41.869906634],[-71.382315809,41.869937768],[-71.38234537,41.869968122],[-71.382374928,41.869999894],[-71.382403509,41.870030956],[-71.382433102,41.870060601],[-71.382464623,41.870089607],[-71.382497093,41.870118592],[-71.382530415,41.870150436],[-71.382565598,41.870185141],[-71.382601665,41.87022131],[-71.382637699,41.870258874],[-71.382672787,41.870295019],[-71.382708855,41.870331188],[-71.382745935,41.870365917],[-71.382782035,41.870400669],[-71.382818625,41.870435672],[-71.382855151,41.870472276],[-71.382892167,41.870508469],[-71.38292915,41.870546034],[-71.382966068,41.870585794],[-71.383002954,41.870626194],[-71.383037945,41.870665907],[-71.383071069,41.870705572],[-71.383104161,41.870745945],[-71.383136307,41.870785609],[-71.383167502,41.870825935],[-71.383199678,41.870865576],[-71.383228913,41.870907318],[-71.383258998,41.870952628],[-71.383289019,41.871000088],[-71.383320968,41.871046818],[-71.383353864,41.871094326],[-71.383385813,41.871141079],[-71.38341495,41.871186365],[-71.383443172,41.871230233],[-71.383469496,41.871274762],[-71.383493827,41.871321392],[-71.38352002,41.871370197],[-71.383547162,41.871419026],[-71.383574371,41.871464997],[-71.383599846,41.871505248],[-71.383623554,41.871541198],[-71.383643601,41.871571405],[-71.383659037,41.871596553],[-71.383674634,41.871617471],[-71.383690135,41.871640469],[-71.383707499,41.871665665],[-71.383729508,41.871693747],[-71.383757172,41.871724785],[-71.38379141,41.87175807],[-71.383831337,41.871792871],[-71.383872212,41.871827672],[-71.383914985,41.871861812],[-71.383958802,41.871893827],[-71.384002718,41.871922297],[-71.38404667,41.871947908],[-71.384087903,41.871970612],[-71.384126358,41.871990432],[-71.384161085,41.872007367],[-71.384191986,41.872024961],[-71.384220991,41.872042485],[-71.384248919,41.872062843],[-71.384275929,41.872083932],[-71.384300979,41.87210566],[-71.384325078,41.872128827],[-71.384348166,41.872152679],[-71.384370305,41.872176507],[-71.384390612,41.872198893],[-71.384407094,41.872221207],[-71.384422628,41.872242833],[-71.384436264,41.872265807],[-71.384448855,41.872290929],[-71.384461349,41.872318841],[-71.384472861,41.872348925],[-71.384484308,41.872380403],[-71.384494774,41.872413299],[-71.384504227,41.872448297],[-71.384513615,41.872485468],[-71.384522969,41.872524033],[-71.384534187,41.872564087],[-71.384536561,41.872571339],[-71.384547302,41.87260412],[-71.384551856,41.872616601],[-71.384552515,41.87261655],[-71.384569926,41.872662547],[-71.38457316,41.872670053],[-71.384577457,41.872680005],[-71.38459345,41.872718692],[-71.384607611,41.872755913],[-71.384619844,41.87279311],[-71.384631096,41.8728317],[-71.384642283,41.872871708],[-71.384653467,41.872913889],[-71.384662692,41.872956708],[-71.38466809,41.873000209],[-71.38467153,41.873044349],[-71.38467601,41.873087827],[-71.384680461,41.873131281],[-71.38468488,41.873174781],[-71.384688078,41.873216885],[-71.384688348,41.873220362],[-71.384692637,41.87326807],[-71.38469506,41.873315776],[-71.38469657,41.873361331],[-71.384698176,41.873404028],[-71.384699879,41.873443913],[-71.384702595,41.873481648],[-71.384701584,41.873516499],[-71.38470151,41.873519358],[-71.384701515,41.87351955],[-71.384700638,41.8735492],[-71.384699758,41.873579065],[-71.384697994,41.873607489],[-71.384694367,41.873633761],[-71.384690804,41.873657907],[-71.384689733,41.873662624],[-71.384680638,41.873721607],[-71.38468028,41.873725313],[-71.384678777,41.873744498],[-71.384677241,41.873765078],[-71.384674659,41.873788538],[-71.384671098,41.873811952],[-71.384666586,41.87383676],[-71.384661096,41.873861567],[-71.38465652,41.873887815],[-71.384650995,41.873914748],[-71.384647336,41.87394173],[-71.384642727,41.873969442],[-71.384639001,41.873999235],[-71.384635243,41.874030493],[-71.384629522,41.874063829],[-71.38462279,41.87409856],[-71.384613275,41.874131824],[-71.384602813,41.874164401],[-71.384590457,41.874195535],[-71.384578195,41.874225206],[-71.384566885,41.874253483],[-71.384555604,41.87428176],[-71.384548322,41.874299545],[-71.384512515,41.87439655],[-71.384511932,41.874398285],[-71.384503785,41.874427472],[-71.384493421,41.874456436],[-71.384484071,41.87448332],[-71.384474721,41.874510204],[-71.384466352,41.87453638],[-71.384458932,41.874561893],[-71.384450595,41.874586652],[-71.384441309,41.874612095],[-71.384433894,41.874630473],[-71.384431515,41.87463755],[-71.384411008,41.87468663],[-71.384409498,41.87469057],[-71.384398251,41.874717407],[-71.384388901,41.87474429],[-71.384378569,41.874772568],[-71.38436729,41.874800136],[-71.384355093,41.874827681],[-71.384342867,41.874854516],[-71.384330639,41.874882083],[-71.38431841,41.874910313],[-71.384310345,41.874927552],[-71.38428314,41.874992661],[-71.384281629,41.874996536],[-71.384271264,41.875026209],[-71.384260836,41.875056659],[-71.384250439,41.875087087],[-71.384240041,41.8751182],[-71.384227651,41.875150707],[-71.384216143,41.875186804],[-71.384203623,41.87522361],[-71.384190121,41.87526181],[-71.384176682,41.875299277],[-71.384163149,41.875338209],[-71.384148729,41.875376362],[-71.384132414,41.875413804],[-71.384113254,41.875450488],[-71.384091249,41.875487124],[-71.384070161,41.875524493],[-71.384068708,41.875527114],[-71.383954515,41.87574255],[-71.383927515,41.875815551],[-71.383742827,41.87614744],[-71.383725619,41.876178362],[-71.383707192,41.876223627],[-71.383692872,41.876257503],[-71.383682769,41.876277297],[-71.383682515,41.876277551],[-71.383574515,41.87638555],[-71.383550483,41.876398729],[-71.383541696,41.876404369],[-71.38353153,41.876414535],[-71.383531239,41.876414949],[-71.383531176,41.876414889],[-71.383528514,41.876417551],[-71.383474514,41.87646655],[-71.383444515,41.87650455],[-71.383270515,41.876321551],[-71.383189515,41.87636555],[-71.383245515,41.876418551],[-71.383370515,41.87653855]]]]}}"}, +{"type": "precinct", "typeId": 2608, "areaId": 25851, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":190,\"NAME\":\"2608\",\"SHAPE_Length\":0.059033235943812,\"SHAPE_Area\":-0.00011558609445346},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.391212516,41.856713547],[-71.391029516,41.857113547],[-71.390999516,41.857167547],[-71.390709516,41.857773547],[-71.390678516,41.857823547],[-71.390343516,41.858525547],[-71.390338516,41.858543547],[-71.389999516,41.859230547],[-71.389664516,41.859898547],[-71.389618516,41.859990547],[-71.389343515,41.860573547],[-71.389076516,41.861115547],[-71.388885516,41.861515548],[-71.388839515,41.861608548],[-71.388817515,41.861653548],[-71.388786516,41.861725548],[-71.388550516,41.862183548],[-71.388466515,41.862343547],[-71.388237515,41.862812548],[-71.388222516,41.862835548],[-71.388039515,41.863224548],[-71.387764515,41.863789548],[-71.387596515,41.864117548],[-71.387543516,41.864220548],[-71.387436515,41.864521548],[-71.387413515,41.864602549],[-71.387398515,41.864663548],[-71.387383515,41.864910549],[-71.387329516,41.865517549],[-71.387291515,41.866150548],[-71.387848516,41.866124548],[-71.389534516,41.866078549],[-71.389824516,41.866074548],[-71.390320516,41.866055548],[-71.390373516,41.866051548],[-71.390541516,41.866074548],[-71.390770516,41.866181549],[-71.391228517,41.866410549],[-71.390724516,41.866967548],[-71.390587516,41.867112549],[-71.390221516,41.867516549],[-71.390213517,41.867596549],[-71.390171516,41.867637549],[-71.389898516,41.867903549],[-71.389603516,41.868191549],[-71.389580516,41.868210549],[-71.389381516,41.868454549],[-71.389350516,41.868474549],[-71.389229516,41.868607549],[-71.389183516,41.868653549],[-71.388809516,41.869072549],[-71.388229515,41.869706549],[-71.388550516,41.869923549],[-71.388947516,41.87014055],[-71.389053516,41.870175549],[-71.389137516,41.870182549],[-71.389236516,41.87017955],[-71.389328516,41.870171549],[-71.389465516,41.870144549],[-71.389847516,41.870087549],[-71.390373516,41.869999549],[-71.391258517,41.869854549],[-71.392120517,41.869713549],[-71.392197517,41.870758549],[-71.392273517,41.871552549],[-71.393135518,41.871514549],[-71.393150517,41.871647549],[-71.393997518,41.871899549],[-71.394661518,41.87207155],[-71.394928518,41.872021549],[-71.395409518,41.87136555],[-71.394585518,41.87140755],[-71.394547518,41.87099955],[-71.394463518,41.87047255],[-71.394455518,41.870209549],[-71.394669518,41.869797549],[-71.394318518,41.869686549],[-71.393593517,41.869465549],[-71.393501517,41.869481549],[-71.393318517,41.868779549],[-71.393059518,41.867844548],[-71.392876517,41.867184548],[-71.393944517,41.867031548],[-71.394099517,41.867011548],[-71.394302518,41.866986548],[-71.395195518,41.866860549],[-71.395660518,41.866799548],[-71.396682518,41.866664549],[-71.396706519,41.866661548],[-71.399117519,41.866440548],[-71.399170519,41.865872548],[-71.399178519,41.865792549],[-71.399223519,41.865322548],[-71.399239519,41.865231548],[-71.399307519,41.864682547],[-71.399323519,41.864560548],[-71.399376519,41.864144548],[-71.399384519,41.864071548],[-71.399361519,41.863789547],[-71.399338519,41.863591547],[-71.399246519,41.862980548],[-71.399193519,41.862454548],[-71.399162519,41.862152547],[-71.399155519,41.862133547],[-71.399124519,41.861809548],[-71.399088519,41.861491547],[-71.399086519,41.861451547],[-71.399055519,41.861138547],[-71.399040519,41.860917547],[-71.398987519,41.860356547],[-71.398941519,41.859967547],[-71.398872519,41.859448547],[-71.398903519,41.858876547],[-71.398926519,41.858704547],[-71.398949519,41.858548547],[-71.398964519,41.858391547],[-71.399101519,41.858036546],[-71.399307518,41.857495547],[-71.399422518,41.857205547],[-71.399567519,41.856858547],[-71.399596518,41.856790546],[-71.399492519,41.856823546],[-71.399437519,41.856835547],[-71.395578518,41.857002546],[-71.394138517,41.857089547],[-71.392868516,41.857186547],[-71.392355517,41.857007547],[-71.391212516,41.856713547]]]]}}"}, +{"type": "precinct", "typeId": 2609, "areaId": 25855, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":194,\"NAME\":\"2609\",\"SHAPE_Length\":0.025621213170538,\"SHAPE_Area\":-1.9741684920539e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.387428515,41.87490555],[-71.387428515,41.87492855],[-71.387421516,41.87495155],[-71.387383516,41.87537455],[-71.387360516,41.87555455],[-71.387337516,41.87572155],[-71.388084516,41.875756551],[-71.388596517,41.87572555],[-71.389839517,41.87564755],[-71.389801517,41.87500055],[-71.389755516,41.87430655],[-71.387512516,41.87423055],[-71.387428515,41.87490555]]],[[[-71.381157514,41.878019551],[-71.381136514,41.878206551],[-71.381135514,41.878361551],[-71.381162514,41.878631551],[-71.381159514,41.878733551],[-71.381128513,41.878860551],[-71.381126514,41.878903551],[-71.381133514,41.878999551],[-71.381133514,41.879263551],[-71.381146514,41.879425551],[-71.381196514,41.879709551],[-71.381201514,41.879816551],[-71.381482514,41.879835551],[-71.381737514,41.879853552],[-71.381807514,41.879856551],[-71.382423514,41.879887552],[-71.382797515,41.879895551],[-71.383911515,41.879902551],[-71.385056515,41.879898551],[-71.385452516,41.879883551],[-71.385498515,41.879876551],[-71.385590516,41.879856551],[-71.385887515,41.879780551],[-71.385994516,41.879746551],[-71.386230516,41.879668551],[-71.386398515,41.879612551],[-71.386391516,41.879528551],[-71.386932516,41.879227551],[-71.387039516,41.879162551],[-71.387721516,41.878782551],[-71.387566516,41.878533551],[-71.387321516,41.878228551],[-71.387276516,41.878163551],[-71.387238516,41.878113551],[-71.387224516,41.878087551],[-71.387192516,41.878033551],[-71.387138516,41.877922551],[-71.387123516,41.87782755],[-71.387131516,41.877644551],[-71.387192516,41.87712555],[-71.386711515,41.877232551],[-71.386597516,41.877255551],[-71.386307516,41.877518551],[-71.386101515,41.877716551],[-71.385956516,41.877880551],[-71.385704516,41.87774755],[-71.385330515,41.877499551],[-71.384972515,41.877324551],[-71.384651515,41.877228551],[-71.384346514,41.87716355],[-71.384300515,41.87714455],[-71.384132514,41.877076551],[-71.383980515,41.876999551],[-71.383736515,41.876820551],[-71.383633515,41.876748551],[-71.383469514,41.876633551],[-71.383397514,41.876564551],[-71.383370515,41.87653855],[-71.383245515,41.876418551],[-71.383158514,41.876381551],[-71.383125514,41.876399551],[-71.382979515,41.87646155],[-71.382845514,41.876548551],[-71.382797514,41.87659855],[-71.382747514,41.87663655],[-71.382671514,41.876673551],[-71.382592514,41.87669755],[-71.382499514,41.87671555],[-71.382444514,41.87673455],[-71.382292514,41.87681455],[-71.382240514,41.87685455],[-71.382195514,41.876879551],[-71.382168514,41.876880551],[-71.382068514,41.876860551],[-71.381719514,41.877010551],[-71.381681514,41.877052551],[-71.381597514,41.877112551],[-71.381433514,41.877278551],[-71.381356514,41.877366551],[-71.381309514,41.877441551],[-71.381268514,41.877525551],[-71.381211514,41.877711551],[-71.381157514,41.878019551]]]]}}"}, +{"type": "precinct", "typeId": 2610, "areaId": 25853, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":192,\"NAME\":\"2610\",\"SHAPE_Length\":0.0168895569572,\"SHAPE_Area\":-1.0157638328467e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.389755516,41.87430655],[-71.390648517,41.87427955],[-71.391548517,41.87424955],[-71.392441517,41.87421855],[-71.393166517,41.87419955],[-71.392708518,41.87472255],[-71.392632518,41.87478755],[-71.393120518,41.87526055],[-71.394844518,41.87499755],[-71.395660518,41.87486355],[-71.395432518,41.87395555],[-71.395248518,41.87329555],[-71.395065518,41.87263555],[-71.394363518,41.872742549],[-71.394409518,41.87268955],[-71.394470518,41.87260955],[-71.394510518,41.87255755],[-71.394547518,41.872509549],[-71.394568518,41.872487549],[-71.393898518,41.872586549],[-71.392356518,41.87283155],[-71.391456517,41.872974549],[-71.391022517,41.87304355],[-71.390793517,41.87307455],[-71.390572517,41.87309355],[-71.390503517,41.87310155],[-71.390297516,41.87312055],[-71.389753516,41.87314855],[-71.389687517,41.87315055],[-71.389702517,41.87334555],[-71.389709516,41.873516549],[-71.389755516,41.87430655]]]]}}"}, +{"type": "precinct", "typeId": 2611, "areaId": 25854, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":193,\"NAME\":\"2611\",\"SHAPE_Length\":0.047131488480147,\"SHAPE_Area\":-7.8495069957454e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.381201514,41.879816551],[-71.381214514,41.880106552],[-71.381210514,41.880302551],[-71.381214514,41.880965551],[-71.381205514,41.881098552],[-71.381172514,41.881222551],[-71.381116514,41.881358551],[-71.380930514,41.881695552],[-71.380888514,41.881780552],[-71.380875514,41.881838552],[-71.381130514,41.881833552],[-71.381414514,41.881841552],[-71.381234514,41.882254551],[-71.381159514,41.882401552],[-71.381111514,41.882529552],[-71.381074514,41.882670552],[-71.381030515,41.882883552],[-71.381018514,41.883117552],[-71.380994514,41.883308552],[-71.380991515,41.883332552],[-71.380977514,41.883561552],[-71.380979514,41.883622552],[-71.382330515,41.883508552],[-71.383906515,41.883416552],[-71.385231515,41.883347552],[-71.385957516,41.883154552],[-71.386066516,41.883103552],[-71.386396516,41.883212552],[-71.386734516,41.883259552],[-71.388097516,41.882954551],[-71.389183516,41.882754552],[-71.390732517,41.883000552],[-71.391426517,41.882729552],[-71.391533518,41.882691552],[-71.391840517,41.882669551],[-71.392448518,41.882756552],[-71.394905519,41.882306552],[-71.394859518,41.882252551],[-71.394447519,41.881779552],[-71.394241518,41.881554551],[-71.393845518,41.881104551],[-71.393661518,41.880944552],[-71.393486518,41.880864551],[-71.394127518,41.880055551],[-71.394821518,41.879170551],[-71.394920518,41.87903655],[-71.395737518,41.878094551],[-71.395836518,41.877972551],[-71.395790519,41.87792655],[-71.395729519,41.877785551],[-71.395477519,41.877491551],[-71.395321519,41.87734555],[-71.395210518,41.87724055],[-71.394900518,41.87703555],[-71.394762518,41.87685755],[-71.394675518,41.876746551],[-71.394367518,41.87644755],[-71.393738518,41.87584055],[-71.393120518,41.87526055],[-71.392632518,41.87478755],[-71.392708518,41.87472255],[-71.393166517,41.87419955],[-71.392441517,41.87421855],[-71.391548517,41.87424955],[-71.390648517,41.87427955],[-71.389755516,41.87430655],[-71.389801517,41.87500055],[-71.389839517,41.87564755],[-71.388596517,41.87572555],[-71.388084516,41.875756551],[-71.387337516,41.87572155],[-71.387299516,41.876179551],[-71.387245516,41.87660355],[-71.387192516,41.87712555],[-71.387131516,41.877644551],[-71.387123516,41.87782755],[-71.387138516,41.877922551],[-71.387192516,41.878033551],[-71.387224516,41.878087551],[-71.387238516,41.878113551],[-71.387276516,41.878163551],[-71.387321516,41.878228551],[-71.387566516,41.878533551],[-71.387721516,41.878782551],[-71.387039516,41.879162551],[-71.386932516,41.879227551],[-71.386391516,41.879528551],[-71.386398515,41.879612551],[-71.386230516,41.879668551],[-71.385994516,41.879746551],[-71.385887515,41.879780551],[-71.385590516,41.879856551],[-71.385498515,41.879876551],[-71.385452516,41.879883551],[-71.385056515,41.879898551],[-71.383911515,41.879902551],[-71.382797515,41.879895551],[-71.382423514,41.879887552],[-71.381807514,41.879856551],[-71.381737514,41.879853552],[-71.381482514,41.879835551],[-71.381201514,41.879816551]]]]}}"}, +{"type": "precinct", "typeId": 2612, "areaId": 25871, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":210,\"NAME\":\"2612\",\"SHAPE_Length\":0.041552996475096,\"SHAPE_Area\":-7.1278119159563e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.356865507,41.889168554],[-71.356819507,41.889687554],[-71.356819507,41.889752554],[-71.356781507,41.890385554],[-71.356735506,41.891049554],[-71.356689507,41.891713554],[-71.356644507,41.892327555],[-71.357269507,41.892365555],[-71.356216507,41.892987555],[-71.355965507,41.893135554],[-71.354362506,41.894066555],[-71.354042506,41.894249555],[-71.354103506,41.894574555],[-71.354164506,41.894837555],[-71.354248506,41.895214555],[-71.354286506,41.895428555],[-71.354340506,41.895714555],[-71.354362506,41.895806555],[-71.354515506,41.896508555],[-71.354544506,41.896637556],[-71.354971507,41.896573555],[-71.355034507,41.896550555],[-71.355563506,41.896522556],[-71.356046507,41.896450555],[-71.356715507,41.896386556],[-71.357599507,41.896210555],[-71.358599508,41.896108555],[-71.358673508,41.896090555],[-71.358878507,41.896045555],[-71.359491508,41.895909555],[-71.361599509,41.895706555],[-71.361652508,41.895701555],[-71.362447508,41.895614555],[-71.362499509,41.895610555],[-71.364538509,41.895459555],[-71.364688509,41.895495555],[-71.365086509,41.895592554],[-71.365473509,41.895492555],[-71.365744509,41.895425555],[-71.36611951,41.895346555],[-71.36621651,41.895334555],[-71.36685051,41.895206555],[-71.36689651,41.895199555],[-71.36680151,41.894724555],[-71.36676051,41.894337555],[-71.36791251,41.894383554],[-71.367920511,41.893937554],[-71.36793551,41.893288555],[-71.367943511,41.892640554],[-71.367943511,41.891941554],[-71.36795851,41.891613554],[-71.36796651,41.891270554],[-71.36743251,41.891312554],[-71.36679151,41.891381554],[-71.366020509,41.891434554],[-71.365219509,41.891507554],[-71.365236509,41.891289554],[-71.36527351,41.890843554],[-71.365280509,41.890644554],[-71.364944509,41.890602554],[-71.363869508,41.890499554],[-71.363838509,41.890248553],[-71.363785509,41.889805554],[-71.363754508,41.889447554],[-71.363739509,41.889275553],[-71.363663509,41.888638554],[-71.363533509,41.888714553],[-71.362450508,41.889355554],[-71.362320508,41.889435554],[-71.362206509,41.889378554],[-71.361404508,41.889340554],[-71.360405508,41.889302554],[-71.358871507,41.889237554],[-71.356865507,41.889168554]]]]}}"}, +{"type": "precinct", "typeId": 2613, "areaId": 25862, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":201,\"NAME\":\"2613\",\"SHAPE_Length\":0.085844837132117,\"SHAPE_Area\":-0.00011640162904263},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.36527351,41.890843554],[-71.365236509,41.891289554],[-71.365219509,41.891507554],[-71.366020509,41.891434554],[-71.36679151,41.891381554],[-71.36743251,41.891312554],[-71.36796651,41.891270554],[-71.36795851,41.891613554],[-71.367943511,41.891941554],[-71.367943511,41.892640554],[-71.36793551,41.893288555],[-71.367920511,41.893937554],[-71.36791251,41.894383554],[-71.36676051,41.894337555],[-71.36680151,41.894724555],[-71.36689651,41.895199555],[-71.370999512,41.894607555],[-71.371185511,41.894594555],[-71.373772513,41.894471554],[-71.374910512,41.894249554],[-71.376128513,41.894002554],[-71.376288513,41.893973554],[-71.376583514,41.893920554],[-71.376781513,41.893900554],[-71.377513514,41.893797554],[-71.378426514,41.893668554],[-71.381025515,41.893303554],[-71.381349515,41.893259554],[-71.381384514,41.893254554],[-71.381462514,41.893244554],[-71.381700515,41.893207554],[-71.381638515,41.892708554],[-71.381633515,41.892665554],[-71.381805515,41.891508554],[-71.383093515,41.889878553],[-71.382605515,41.888865553],[-71.382316515,41.888910553],[-71.382083515,41.888362553],[-71.381867515,41.888373553],[-71.381824515,41.888378553],[-71.381367514,41.888522553],[-71.380219514,41.887938553],[-71.380665514,41.887075553],[-71.380878514,41.886529553],[-71.380821514,41.885899552],[-71.380900514,41.885307553],[-71.380959514,41.883722552],[-71.380979514,41.883622552],[-71.380977514,41.883561552],[-71.380991515,41.883332552],[-71.380994514,41.883308552],[-71.381018514,41.883117552],[-71.381030515,41.882883552],[-71.381074514,41.882670552],[-71.381111514,41.882529552],[-71.381159514,41.882401552],[-71.381234514,41.882254551],[-71.381414514,41.881841552],[-71.381130514,41.881833552],[-71.380875514,41.881838552],[-71.380888514,41.881780552],[-71.380930514,41.881695552],[-71.381116514,41.881358551],[-71.381172514,41.881222551],[-71.381205514,41.881098552],[-71.381214514,41.880965551],[-71.381210514,41.880302551],[-71.381214514,41.880106552],[-71.381201514,41.879816551],[-71.381196514,41.879709551],[-71.381146514,41.879425551],[-71.381133514,41.879263551],[-71.381133514,41.878999551],[-71.381126514,41.878903551],[-71.381128513,41.878860551],[-71.381159514,41.878733551],[-71.381162514,41.878631551],[-71.381135514,41.878361551],[-71.381136514,41.878206551],[-71.381157514,41.878019551],[-71.381211514,41.877711551],[-71.381268514,41.877525551],[-71.381309514,41.877441551],[-71.381356514,41.877366551],[-71.381433514,41.877278551],[-71.381597514,41.877112551],[-71.381681514,41.877052551],[-71.381719514,41.877010551],[-71.382068514,41.876860551],[-71.382168514,41.876880551],[-71.382195514,41.876879551],[-71.382240514,41.87685455],[-71.382292514,41.87681455],[-71.382444514,41.87673455],[-71.382499514,41.87671555],[-71.382592514,41.87669755],[-71.382671514,41.876673551],[-71.382747514,41.87663655],[-71.382797514,41.87659855],[-71.382845514,41.876548551],[-71.382979515,41.87646155],[-71.383125514,41.876399551],[-71.383158514,41.876381551],[-71.383245515,41.876418551],[-71.383189515,41.87636555],[-71.383171515,41.87634755],[-71.383087514,41.876313551],[-71.382957515,41.876316551],[-71.382820515,41.876332551],[-71.382225514,41.876397551],[-71.381920514,41.876488551],[-71.381828514,41.87652255],[-71.381622514,41.87646555],[-71.381592514,41.876458551],[-71.380356513,41.876515551],[-71.379906513,41.876526551],[-71.379738514,41.87656155],[-71.379623514,41.876583551],[-71.379539513,41.876603551],[-71.379364513,41.877095551],[-71.379016513,41.877935551],[-71.379110513,41.878109551],[-71.379089513,41.878163551],[-71.379082513,41.878193551],[-71.379005513,41.878407551],[-71.378792513,41.878941551],[-71.378761513,41.879155551],[-71.378761513,41.879296551],[-71.378777513,41.879395551],[-71.378860513,41.879586551],[-71.378815513,41.879662551],[-71.378799513,41.879700551],[-71.378502513,41.880276552],[-71.378204513,41.880837552],[-71.378166513,41.880898552],[-71.377853513,41.881524552],[-71.377777513,41.881695552],[-71.377686513,41.881878552],[-71.377670513,41.881920552],[-71.377647513,41.881955552],[-71.377548513,41.882164552],[-71.377419513,41.882416552],[-71.377380513,41.882500552],[-71.377098513,41.883049552],[-71.377136513,41.882904552],[-71.377129513,41.882687552],[-71.376381513,41.882492552],[-71.375221512,41.882168552],[-71.375130512,41.882115552],[-71.374817512,41.881882552],[-71.374588512,41.882050552],[-71.374229512,41.882309552],[-71.373947512,41.882519552],[-71.373711512,41.882710552],[-71.373367511,41.882958552],[-71.373192511,41.883091552],[-71.373170512,41.883100552],[-71.372704511,41.883438553],[-71.371948511,41.883995552],[-71.371582511,41.884320552],[-71.371712511,41.884346552],[-71.371849511,41.884388553],[-71.371948511,41.884400552],[-71.372192512,41.884385552],[-71.373299512,41.884285552],[-71.373718511,41.884247552],[-71.373802512,41.884243552],[-71.373940512,41.884243552],[-71.374237512,41.884262552],[-71.375061513,41.884320552],[-71.375496512,41.884350552],[-71.375656512,41.884365552],[-71.375755512,41.884385552],[-71.375786512,41.884388552],[-71.376053513,41.884476552],[-71.376328513,41.884552553],[-71.377029513,41.884755552],[-71.377876513,41.884983552],[-71.378059513,41.885041552],[-71.377747513,41.885666552],[-71.377426513,41.886307553],[-71.377083513,41.886956553],[-71.376755513,41.887608553],[-71.376434513,41.888241553],[-71.376114513,41.888874553],[-71.375847513,41.889405554],[-71.375847513,41.889607553],[-71.375092513,41.889649553],[-71.374359513,41.889672553],[-71.373680512,41.889702553],[-71.373322512,41.890412554],[-71.373179512,41.890705554],[-71.373123512,41.890503553],[-71.372940512,41.890538554],[-71.372627511,41.890526553],[-71.371155511,41.890400554],[-71.370735511,41.890370554],[-71.370602511,41.890370554],[-71.370522511,41.890370554],[-71.370422511,41.890385553],[-71.369423511,41.890480554],[-71.366173509,41.890767554],[-71.36527351,41.890843554]]]]}}"}, +{"type": "precinct", "typeId": 2614, "areaId": 25870, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":209,\"NAME\":\"2614\",\"SHAPE_Length\":0.0519043448311,\"SHAPE_Area\":-8.5677996584075e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.356865507,41.889168554],[-71.358871507,41.889237554],[-71.360405508,41.889302554],[-71.361404508,41.889340554],[-71.362206509,41.889378554],[-71.362320508,41.889435554],[-71.362450508,41.889355554],[-71.363533509,41.888714553],[-71.363663509,41.888638554],[-71.363739509,41.889275553],[-71.363754508,41.889447554],[-71.363785509,41.889805554],[-71.363838509,41.890248553],[-71.363869508,41.890499554],[-71.364944509,41.890602554],[-71.365280509,41.890644554],[-71.36527351,41.890843554],[-71.366173509,41.890767554],[-71.369423511,41.890480554],[-71.370422511,41.890385553],[-71.370522511,41.890370554],[-71.370602511,41.890370554],[-71.370735511,41.890370554],[-71.371155511,41.890400554],[-71.372627511,41.890526553],[-71.372940512,41.890538554],[-71.373123512,41.890503553],[-71.373179512,41.890705554],[-71.373322512,41.890412554],[-71.373680512,41.889702553],[-71.374359513,41.889672553],[-71.375092513,41.889649553],[-71.375847513,41.889607553],[-71.375847513,41.889405554],[-71.376114513,41.888874553],[-71.376434513,41.888241553],[-71.376755513,41.887608553],[-71.377083513,41.886956553],[-71.377426513,41.886307553],[-71.377747513,41.885666552],[-71.378059513,41.885041552],[-71.377876513,41.884983552],[-71.377029513,41.884755552],[-71.376328513,41.884552553],[-71.376053513,41.884476552],[-71.375786512,41.884388552],[-71.375755512,41.884385552],[-71.375656512,41.884365552],[-71.375496512,41.884350552],[-71.375061513,41.884320552],[-71.374237512,41.884262552],[-71.373940512,41.884243552],[-71.373802512,41.884243552],[-71.373718511,41.884247552],[-71.373299512,41.884285552],[-71.372192512,41.884385552],[-71.371948511,41.884400552],[-71.371849511,41.884388553],[-71.371712511,41.884346552],[-71.371582511,41.884320552],[-71.371529511,41.884152552],[-71.371498511,41.884209552],[-71.371353511,41.884407553],[-71.371124511,41.884541552],[-71.370834511,41.884671552],[-71.370430511,41.884850552],[-71.37030851,41.884892553],[-71.370224511,41.884915553],[-71.37007151,41.884945552],[-71.36984351,41.884972553],[-71.369270511,41.885044552],[-71.36747051,41.885205553],[-71.367382509,41.885211553],[-71.36702751,41.885235553],[-71.36670751,41.885289553],[-71.366371509,41.885319553],[-71.365494509,41.885399553],[-71.365158509,41.885430553],[-71.364632509,41.885479553],[-71.364342509,41.885510553],[-71.364288509,41.885521553],[-71.363945509,41.885594553],[-71.363205509,41.885777553],[-71.362564508,41.885929553],[-71.362167508,41.886021553],[-71.361748508,41.886124553],[-71.361313508,41.886227553],[-71.361115508,41.886277553],[-71.360977508,41.886307554],[-71.361435508,41.887387553],[-71.360909508,41.887509554],[-71.360558507,41.887597553],[-71.359726507,41.887795553],[-71.358704507,41.888047553],[-71.358910507,41.888520554],[-71.358246507,41.888493553],[-71.356918507,41.888451554],[-71.356873506,41.889134554],[-71.356865507,41.889168554]]]]}}"}, +{"type": "precinct", "typeId": 2615, "areaId": 25861, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":200,\"NAME\":\"2615\",\"SHAPE_Length\":0.032269526551578,\"SHAPE_Area\":-3.5194621780973e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.371529511,41.884152552],[-71.371582511,41.884320552],[-71.371948511,41.883995552],[-71.372704511,41.883438553],[-71.373170512,41.883100552],[-71.373192511,41.883091552],[-71.373367511,41.882958552],[-71.373711512,41.882710552],[-71.373947512,41.882519552],[-71.374229512,41.882309552],[-71.374588512,41.882050552],[-71.374817512,41.881882552],[-71.375130512,41.882115552],[-71.375221512,41.882168552],[-71.376381513,41.882492552],[-71.377129513,41.882687552],[-71.377136513,41.882904552],[-71.377098513,41.883049552],[-71.377380513,41.882500552],[-71.377419513,41.882416552],[-71.377548513,41.882164552],[-71.377647513,41.881955552],[-71.377670513,41.881920552],[-71.377686513,41.881878552],[-71.377777513,41.881695552],[-71.377853513,41.881524552],[-71.378166513,41.880898552],[-71.378204513,41.880837552],[-71.378502513,41.880276552],[-71.378799513,41.879700551],[-71.378815513,41.879662551],[-71.378860513,41.879586551],[-71.378777513,41.879395551],[-71.378761513,41.879296551],[-71.378761513,41.879155551],[-71.378792513,41.878941551],[-71.379005513,41.878407551],[-71.379082513,41.878193551],[-71.379089513,41.878163551],[-71.379110513,41.878109551],[-71.379016513,41.877935551],[-71.379364513,41.877095551],[-71.379539513,41.876603551],[-71.379349513,41.87663755],[-71.379234514,41.876660551],[-71.379044513,41.876698551],[-71.378372513,41.876801551],[-71.377266513,41.876976551],[-71.377060512,41.877011551],[-71.376106512,41.877175551],[-71.375214512,41.877335551],[-71.374290511,41.877488551],[-71.373871512,41.876088551],[-71.373711511,41.87558455],[-71.373581511,41.87519555],[-71.372269511,41.875458551],[-71.372566511,41.876072551],[-71.372658511,41.876286551],[-71.372864511,41.876957551],[-71.372955512,41.877278552],[-71.373062511,41.877655551],[-71.373024511,41.877728551],[-71.372971511,41.877835551],[-71.372917512,41.878041551],[-71.372871511,41.878525552],[-71.372841511,41.878991552],[-71.372803511,41.879704551],[-71.372688511,41.880288552],[-71.372650511,41.880505552],[-71.372612511,41.880700552],[-71.372581511,41.880841552],[-71.372482511,41.881379552],[-71.372345511,41.881855552],[-71.372334511,41.881872552],[-71.372314511,41.881939552],[-71.372116512,41.882477552],[-71.371864512,41.883229552],[-71.371574511,41.884068552],[-71.371529511,41.884152552]]]]}}"}, +{"type": "precinct", "typeId": 2616, "areaId": 25866, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":205,\"NAME\":\"2616\",\"SHAPE_Length\":0.029546466216617,\"SHAPE_Area\":-3.380495729994e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.362236508,41.879979552],[-71.362213507,41.880085552],[-71.361954508,41.881134552],[-71.361801508,41.881974553],[-71.361687507,41.882424553],[-71.361588507,41.882824552],[-71.361519508,41.883076552],[-71.361359508,41.883728553],[-71.361351508,41.883786553],[-71.361298507,41.884522553],[-71.361275508,41.885090553],[-71.361229508,41.885712553],[-71.361313508,41.886227553],[-71.361748508,41.886124553],[-71.362167508,41.886021553],[-71.362564508,41.885929553],[-71.363205509,41.885777553],[-71.363945509,41.885594553],[-71.364288509,41.885521553],[-71.364342509,41.885510553],[-71.364632509,41.885479553],[-71.365158509,41.885430553],[-71.365494509,41.885399553],[-71.366371509,41.885319553],[-71.36670751,41.885289553],[-71.36702751,41.885235553],[-71.366759509,41.884827552],[-71.366511509,41.884386553],[-71.365790509,41.883027553],[-71.365586509,41.882670552],[-71.365471509,41.882415552],[-71.365247509,41.881847552],[-71.365183509,41.881667552],[-71.365062509,41.881288552],[-71.364982508,41.880968552],[-71.364933509,41.880661552],[-71.364925508,41.880584552],[-71.365013509,41.880600552],[-71.364998509,41.880520552],[-71.364967509,41.880280552],[-71.364906508,41.879139552],[-71.364906508,41.879010552],[-71.364876509,41.878518552],[-71.364876509,41.878445552],[-71.364830508,41.877648552],[-71.364799509,41.876976551],[-71.364794508,41.876863551],[-71.364765509,41.876285551],[-71.364716508,41.875477551],[-71.364693508,41.874966551],[-71.364587509,41.874964551],[-71.364456508,41.874962551],[-71.363388508,41.874920551],[-71.363335508,41.875145551],[-71.363190508,41.875706551],[-71.363068508,41.876236551],[-71.363052508,41.876278551],[-71.362900508,41.876927552],[-71.362885508,41.876965552],[-71.362762508,41.877591551],[-71.362740507,41.877705552],[-71.362564507,41.878479552],[-71.362381508,41.879345552],[-71.362373508,41.879364552],[-71.362236508,41.879979552]]]]}}"}, +{"type": "precinct", "typeId": 2617, "areaId": 25867, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":206,\"NAME\":\"2617\",\"SHAPE_Length\":0.033076144162433,\"SHAPE_Area\":-7.2277049198508e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.364693508,41.874966551],[-71.364716508,41.875477551],[-71.364765509,41.876285551],[-71.364794508,41.876863551],[-71.364799509,41.876976551],[-71.364830508,41.877648552],[-71.364876509,41.878445552],[-71.364876509,41.878518552],[-71.364906508,41.879010552],[-71.364906508,41.879139552],[-71.364967509,41.880280552],[-71.364998509,41.880520552],[-71.365013509,41.880600552],[-71.364925508,41.880584552],[-71.364933509,41.880661552],[-71.364982508,41.880968552],[-71.365062509,41.881288552],[-71.365183509,41.881667552],[-71.365247509,41.881847552],[-71.365471509,41.882415552],[-71.365586509,41.882670552],[-71.365790509,41.883027553],[-71.366511509,41.884386553],[-71.366759509,41.884827552],[-71.36702751,41.885235553],[-71.367382509,41.885211553],[-71.36747051,41.885205553],[-71.369270511,41.885044552],[-71.36984351,41.884972553],[-71.37007151,41.884945552],[-71.370224511,41.884915553],[-71.37030851,41.884892553],[-71.370430511,41.884850552],[-71.370834511,41.884671552],[-71.371124511,41.884541552],[-71.371353511,41.884407553],[-71.371498511,41.884209552],[-71.371529511,41.884152552],[-71.371574511,41.884068552],[-71.371864512,41.883229552],[-71.372116512,41.882477552],[-71.372314511,41.881939552],[-71.372334511,41.881872552],[-71.372345511,41.881855552],[-71.372482511,41.881379552],[-71.372581511,41.880841552],[-71.372612511,41.880700552],[-71.372650511,41.880505552],[-71.372688511,41.880288552],[-71.372803511,41.879704551],[-71.372841511,41.878991552],[-71.372871511,41.878525552],[-71.372917512,41.878041551],[-71.372971511,41.877835551],[-71.373024511,41.877728551],[-71.373062511,41.877655551],[-71.372955512,41.877278552],[-71.372864511,41.876957551],[-71.372658511,41.876286551],[-71.372566511,41.876072551],[-71.372269511,41.875458551],[-71.372208511,41.875306551],[-71.372169511,41.87513855],[-71.372154511,41.874997551],[-71.372169511,41.874607551],[-71.36979751,41.87488255],[-71.369583509,41.874909551],[-71.36823351,41.875050551],[-71.36805751,41.875054551],[-71.367599509,41.875039551],[-71.366798509,41.875023551],[-71.365234509,41.874981551],[-71.364721509,41.874967551],[-71.364693508,41.874966551]]]]}}"}, +{"type": "precinct", "typeId": 2618, "areaId": 25872, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":211,\"NAME\":\"2618\",\"SHAPE_Length\":0.052578550448374,\"SHAPE_Area\":-0.0001287797352307},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.339906432,41.890154446],[-71.339347871,41.894492134],[-71.339354501,41.894541555],[-71.339347501,41.894586555],[-71.339335501,41.894649556],[-71.339323822,41.894678887],[-71.338847443,41.898377871],[-71.339275502,41.898292556],[-71.339698501,41.898207556],[-71.339708501,41.898206556],[-71.339779502,41.898201556],[-71.339857502,41.898195556],[-71.340642502,41.898137556],[-71.343798503,41.897907556],[-71.343835503,41.897901556],[-71.345698503,41.897607556],[-71.345896503,41.897582555],[-71.346498503,41.897507556],[-71.346753504,41.897484555],[-71.347598504,41.897407555],[-71.347807504,41.897355556],[-71.348398504,41.897207556],[-71.348667504,41.897133555],[-71.349012504,41.897170556],[-71.349198505,41.897207556],[-71.350199504,41.897007556],[-71.350318504,41.896999555],[-71.351333505,41.897085556],[-71.352062505,41.897005556],[-71.352543505,41.896917555],[-71.352928506,41.896869556],[-71.353304506,41.896814556],[-71.354544506,41.896637556],[-71.354515506,41.896508555],[-71.354362506,41.895806555],[-71.354340506,41.895714555],[-71.354286506,41.895428555],[-71.354248506,41.895214555],[-71.354164506,41.894837555],[-71.354103506,41.894574555],[-71.354042506,41.894249555],[-71.354362506,41.894066555],[-71.355965507,41.893135554],[-71.356216507,41.892987555],[-71.357269507,41.892365555],[-71.356644507,41.892327555],[-71.356689507,41.891713554],[-71.356735506,41.891049554],[-71.356781507,41.890385554],[-71.356819507,41.889752554],[-71.356819507,41.889687554],[-71.356865507,41.889168554],[-71.354111506,41.889054554],[-71.354118506,41.888344554],[-71.354126505,41.887944554],[-71.353157505,41.888184554],[-71.352257505,41.888401554],[-71.351616505,41.888554554],[-71.350533504,41.888825554],[-71.349609504,41.889042554],[-71.349190504,41.889138554],[-71.348351504,41.889336554],[-71.347504504,41.889538554],[-71.347452503,41.889550554],[-71.346802504,41.889710554],[-71.346375504,41.889817555],[-71.345917503,41.889923554],[-71.345459503,41.890034554],[-71.345108503,41.890118554],[-71.344238502,41.890320555],[-71.344055503,41.890366554],[-71.343063502,41.890526554],[-71.342690502,41.890572555],[-71.342461502,41.890591555],[-71.341759501,41.890606555],[-71.341667502,41.890610555],[-71.341545501,41.890610555],[-71.341331501,41.890587555],[-71.341148502,41.890557555],[-71.340828501,41.890473555],[-71.340215501,41.890259555],[-71.340149501,41.890236555],[-71.340087501,41.890213554],[-71.340018501,41.890188555],[-71.339906432,41.890154446]]]]}}"}, +{"type": "precinct", "typeId": 2619, "areaId": 25868, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":207,\"NAME\":\"2619\",\"SHAPE_Length\":0.058629995437166,\"SHAPE_Area\":-0.00012585819834227},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.339906432,41.890154446],[-71.340018501,41.890188555],[-71.340087501,41.890213554],[-71.340149501,41.890236555],[-71.340215501,41.890259555],[-71.340828501,41.890473555],[-71.341148502,41.890557555],[-71.341331501,41.890587555],[-71.341545501,41.890610555],[-71.341667502,41.890610555],[-71.341759501,41.890606555],[-71.342461502,41.890591555],[-71.342690502,41.890572555],[-71.343063502,41.890526554],[-71.344055503,41.890366554],[-71.344238502,41.890320555],[-71.345108503,41.890118554],[-71.345459503,41.890034554],[-71.345917503,41.889923554],[-71.346375504,41.889817555],[-71.346802504,41.889710554],[-71.347452503,41.889550554],[-71.347504504,41.889538554],[-71.348351504,41.889336554],[-71.349190504,41.889138554],[-71.349609504,41.889042554],[-71.350533504,41.888825554],[-71.351616505,41.888554554],[-71.352257505,41.888401554],[-71.351952505,41.887722554],[-71.351940505,41.887706554],[-71.351669505,41.887070553],[-71.351593505,41.886879553],[-71.351379505,41.886418554],[-71.348755504,41.887051553],[-71.348701503,41.886929554],[-71.348656504,41.886799553],[-71.348610504,41.886631554],[-71.348564503,41.886372553],[-71.348434504,41.885682554],[-71.348297504,41.884999554],[-71.348183504,41.884438553],[-71.348167504,41.883908554],[-71.348175503,41.883713553],[-71.348190503,41.883133553],[-71.348160503,41.882912553],[-71.348221503,41.882149553],[-71.348228504,41.882130553],[-71.348473503,41.881470553],[-71.348701503,41.880814552],[-71.348938503,41.880154552],[-71.349152503,41.879563552],[-71.349162504,41.879546552],[-71.349401503,41.878927552],[-71.349411504,41.878910552],[-71.349640503,41.878262552],[-71.349854503,41.877617552],[-71.349609504,41.877571552],[-71.348689503,41.877386552],[-71.347908503,41.877228552],[-71.347817503,41.877211552],[-71.347183503,41.877091552],[-71.347191503,41.876984552],[-71.346687503,41.876877552],[-71.346695502,41.876996552],[-71.346085502,41.876877552],[-71.345444502,41.876748552],[-71.345299502,41.876717552],[-71.344879502,41.876633552],[-71.344609502,41.876583552],[-71.344406502,41.876545552],[-71.344025502,41.876477552],[-71.343811502,41.876420552],[-71.343727501,41.876397552],[-71.343468502,41.876336552],[-71.343450502,41.876323552],[-71.343391502,41.876294552],[-71.343277501,41.876229551],[-71.343063501,41.876084552],[-71.342903502,41.875943552],[-71.342728502,41.875698552],[-71.342537501,41.875424552],[-71.342407501,41.875222552],[-71.342262501,41.875042551],[-71.342079501,41.874852552],[-71.341904501,41.874695552],[-71.341637501,41.874497551],[-71.341202501,41.874241551],[-71.341110501,41.874211552],[-71.341003501,41.874172552],[-71.3408615,41.874121551],[-71.3401955,41.873879552],[-71.3400655,41.873837551],[-71.3397375,41.873726552],[-71.3386995,41.873429551],[-71.338365499,41.873337552],[-71.337818499,41.873179552],[-71.3391595,41.875475552],[-71.3392685,41.875708552],[-71.3402175,41.877736552],[-71.3406265,41.878371552],[-71.3407015,41.878488552],[-71.340776501,41.878604553],[-71.340816501,41.878666552],[-71.3408575,41.878729552],[-71.340855501,41.879394552],[-71.340853501,41.879700552],[-71.340850501,41.880262553],[-71.340847501,41.880824553],[-71.340837501,41.880967552],[-71.340802514,41.881461816],[-71.340967365,41.881913762],[-71.339906432,41.890154446]]]]}}"}, +{"type": "precinct", "typeId": 2620, "areaId": 25869, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":208,\"NAME\":\"2620\",\"SHAPE_Length\":0.047080488738266,\"SHAPE_Area\":-0.00012041886870673},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.352257505,41.888401554],[-71.353157505,41.888184554],[-71.354126505,41.887944554],[-71.354118506,41.888344554],[-71.354111506,41.889054554],[-71.356865507,41.889168554],[-71.356873506,41.889134554],[-71.356918507,41.888451554],[-71.358246507,41.888493553],[-71.358910507,41.888520554],[-71.358704507,41.888047553],[-71.359726507,41.887795553],[-71.360558507,41.887597553],[-71.360909508,41.887509554],[-71.361435508,41.887387553],[-71.360977508,41.886307554],[-71.361115508,41.886277553],[-71.361313508,41.886227553],[-71.361229508,41.885712553],[-71.361275508,41.885090553],[-71.361298507,41.884522553],[-71.361351508,41.883786553],[-71.361359508,41.883728553],[-71.361519508,41.883076552],[-71.361588507,41.882824552],[-71.361687507,41.882424553],[-71.361801508,41.881974553],[-71.361954508,41.881134552],[-71.362213507,41.880085552],[-71.362236508,41.879979552],[-71.360832507,41.879712552],[-71.360023507,41.879547552],[-71.358742506,41.879284552],[-71.357628507,41.879071552],[-71.357353506,41.879013552],[-71.356873506,41.878918552],[-71.356018506,41.878746552],[-71.355591506,41.878659552],[-71.355156505,41.878579552],[-71.354469506,41.878449551],[-71.354263505,41.878407552],[-71.353287505,41.878201552],[-71.353287505,41.878289552],[-71.352112504,41.878064552],[-71.351423504,41.877932552],[-71.351112504,41.877873552],[-71.350510504,41.877750552],[-71.349854503,41.877617552],[-71.349640503,41.878262552],[-71.349411504,41.878910552],[-71.349401503,41.878927552],[-71.349162504,41.879546552],[-71.349152503,41.879563552],[-71.348938503,41.880154552],[-71.348701503,41.880814552],[-71.348473503,41.881470553],[-71.348228504,41.882130553],[-71.348221503,41.882149553],[-71.348160503,41.882912553],[-71.348190503,41.883133553],[-71.348175503,41.883713553],[-71.348167504,41.883908554],[-71.348183504,41.884438553],[-71.348297504,41.884999554],[-71.348434504,41.885682554],[-71.348564503,41.886372553],[-71.348610504,41.886631554],[-71.348656504,41.886799553],[-71.348701503,41.886929554],[-71.348755504,41.887051553],[-71.351379505,41.886418554],[-71.351593505,41.886879553],[-71.351669505,41.887070553],[-71.351940505,41.887706554],[-71.351952505,41.887722554],[-71.352257505,41.888401554]]]]}}"}, +{"type": "precinct", "typeId": 2621, "areaId": 25863, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":202,\"NAME\":\"2621\",\"SHAPE_Length\":0.023847334909879,\"SHAPE_Area\":-3.3434618297526e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.349854503,41.877617552],[-71.350510504,41.877750552],[-71.351112504,41.877873552],[-71.351423504,41.877932552],[-71.352112504,41.878064552],[-71.353287505,41.878289552],[-71.353287505,41.878201552],[-71.354263505,41.878407552],[-71.354294505,41.876049552],[-71.354301505,41.875378551],[-71.354309505,41.874443551],[-71.354324505,41.873284551],[-71.353493505,41.873276551],[-71.353386504,41.873272551],[-71.352707504,41.873268551],[-71.352448504,41.873268551],[-71.351524504,41.873265551],[-71.350616504,41.873257551],[-71.349701503,41.873246551],[-71.348923503,41.873242551],[-71.348778503,41.873246551],[-71.347870503,41.873246551],[-71.347245503,41.873261552],[-71.347221502,41.873265551],[-71.347198502,41.873276551],[-71.346924502,41.874142551],[-71.346748502,41.874871551],[-71.346756502,41.875321552],[-71.346741503,41.875866552],[-71.346703503,41.876675551],[-71.346687503,41.876877552],[-71.347191503,41.876984552],[-71.347183503,41.877091552],[-71.347817503,41.877211552],[-71.347908503,41.877228552],[-71.348689503,41.877386552],[-71.349609504,41.877571552],[-71.349854503,41.877617552]]]]}}"}, +{"type": "precinct", "typeId": 2622, "areaId": 25865, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":204,\"NAME\":\"2622\",\"SHAPE_Length\":0.018025861970933,\"SHAPE_Area\":-1.8371452674983e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.356873506,41.878918552],[-71.357353506,41.879013552],[-71.357628507,41.879071552],[-71.358742506,41.879284552],[-71.360023507,41.879547552],[-71.360832507,41.879712552],[-71.362236508,41.879979552],[-71.362373508,41.879364552],[-71.362381508,41.879345552],[-71.362564507,41.878479552],[-71.362740507,41.877705552],[-71.362762508,41.877591551],[-71.362885508,41.876965552],[-71.362900508,41.876927552],[-71.363052508,41.876278551],[-71.362152508,41.876278551],[-71.361404507,41.876294551],[-71.360954507,41.876286551],[-71.360497507,41.876282552],[-71.359665507,41.876267551],[-71.358841506,41.876255551],[-71.358817507,41.876252551],[-71.358315506,41.876240552],[-71.358177506,41.876236551],[-71.357933506,41.876221552],[-71.357040506,41.876171551],[-71.356995506,41.877354552],[-71.356934506,41.878350552],[-71.356873506,41.878918552]]]]}}"}, +{"type": "precinct", "typeId": 2623, "areaId": 25864, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":203,\"NAME\":\"2623\",\"SHAPE_Length\":0.028836055535486,\"SHAPE_Area\":-2.5777538140017e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.354263505,41.878407552],[-71.354469506,41.878449551],[-71.355156505,41.878579552],[-71.355591506,41.878659552],[-71.356018506,41.878746552],[-71.356873506,41.878918552],[-71.356934506,41.878350552],[-71.356995506,41.877354552],[-71.357040506,41.876171551],[-71.357933506,41.876221552],[-71.358177506,41.876236551],[-71.358315506,41.876240552],[-71.358817507,41.876252551],[-71.358841506,41.876255551],[-71.359665507,41.876267551],[-71.360497507,41.876282552],[-71.360954507,41.876286551],[-71.361404507,41.876294551],[-71.362152508,41.876278551],[-71.363052508,41.876278551],[-71.363068508,41.876236551],[-71.363190508,41.875706551],[-71.363335508,41.875145551],[-71.363388508,41.874920551],[-71.363457508,41.874508551],[-71.361023507,41.874470551],[-71.358284506,41.874424551],[-71.358276506,41.874546551],[-71.357109506,41.874527551],[-71.357109506,41.873307551],[-71.356186505,41.873299551],[-71.355278505,41.873291551],[-71.354324505,41.873284551],[-71.354309505,41.874443551],[-71.354301505,41.875378551],[-71.354294505,41.876049552],[-71.354263505,41.878407552]]]]}}"}, +{"type": "precinct", "typeId": 2624, "areaId": 26036, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":375,\"NAME\":\"2624\",\"SHAPE_Length\":0.058140365822022,\"SHAPE_Area\":-0.0001308669701906},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.337818499,41.873179552],[-71.338365499,41.873337552],[-71.3386995,41.873429551],[-71.3397375,41.873726552],[-71.3400655,41.873837551],[-71.3401955,41.873879552],[-71.3408615,41.874121551],[-71.341003501,41.874172552],[-71.341110501,41.874211552],[-71.341202501,41.874241551],[-71.341637501,41.874497551],[-71.341904501,41.874695552],[-71.342079501,41.874852552],[-71.342262501,41.875042551],[-71.342407501,41.875222552],[-71.342537501,41.875424552],[-71.342728502,41.875698552],[-71.342903502,41.875943552],[-71.343063501,41.876084552],[-71.343277501,41.876229551],[-71.343391502,41.876294552],[-71.343450502,41.876323552],[-71.343468502,41.876336552],[-71.343727501,41.876397552],[-71.343811502,41.876420552],[-71.344025502,41.876477552],[-71.344406502,41.876545552],[-71.344609502,41.876583552],[-71.344879502,41.876633552],[-71.345299502,41.876717552],[-71.345444502,41.876748552],[-71.346085502,41.876877552],[-71.346695502,41.876996552],[-71.346687503,41.876877552],[-71.346703503,41.876675551],[-71.346741503,41.875866552],[-71.346756502,41.875321552],[-71.346748502,41.874871551],[-71.346924502,41.874142551],[-71.347198502,41.873276551],[-71.347221502,41.873265551],[-71.347245503,41.873261552],[-71.347870503,41.873246551],[-71.348778503,41.873246551],[-71.348923503,41.873242551],[-71.349701503,41.873246551],[-71.350616504,41.873257551],[-71.351524504,41.873265551],[-71.352448504,41.873268551],[-71.352707504,41.873268551],[-71.353386504,41.873272551],[-71.353493505,41.873276551],[-71.354324505,41.873284551],[-71.354340505,41.87203355],[-71.354347505,41.871796551],[-71.354355504,41.87114055],[-71.354370505,41.87043855],[-71.354370505,41.87022155],[-71.354378505,41.86976355],[-71.354378504,41.86945055],[-71.354385505,41.86877955],[-71.354393504,41.86845855],[-71.354393504,41.867978549],[-71.354411504,41.866595549],[-71.354412504,41.866516549],[-71.352707504,41.866579549],[-71.351609503,41.86661155],[-71.350712503,41.866711549],[-71.348361503,41.86644355],[-71.346779502,41.866262549],[-71.346080502,41.866164549],[-71.345380502,41.86608155],[-71.345366501,41.86607955],[-71.3409095,41.86570355],[-71.3405865,41.86586855],[-71.3405355,41.86583755],[-71.3404585,41.86571955],[-71.3404395,41.86559355],[-71.3404395,41.86547855],[-71.3404145,41.86537155],[-71.3403545,41.86525255],[-71.3403005,41.86512955],[-71.3402605,41.86502155],[-71.3402525,41.86500055],[-71.3401485,41.86475155],[-71.3400455,41.86452055],[-71.340004499,41.864447549],[-71.3399105,41.864275549],[-71.3398565,41.864178549],[-71.3397575,41.864098549],[-71.3396395,41.864020549],[-71.3395085,41.863948549],[-71.3393315,41.86387855],[-71.339221499,41.863830549],[-71.3389825,41.86381655],[-71.339007499,41.86384155],[-71.339111499,41.863924549],[-71.339142499,41.86393955],[-71.3392515,41.86399155],[-71.3393945,41.86403755],[-71.339533499,41.864096549],[-71.3396675,41.86418455],[-71.339750499,41.864293549],[-71.3398365,41.86447955],[-71.3400265,41.86489355],[-71.3400695,41.86500855],[-71.3401705,41.865249549],[-71.3402575,41.86547255],[-71.3403105,41.865696549],[-71.3403525,41.86581455],[-71.3404235,41.86591555],[-71.3404525,41.86593655],[-71.3405475,41.86600255],[-71.3406395,41.86602855],[-71.3391165,41.86681755],[-71.3388085,41.86697655],[-71.337822499,41.86787155],[-71.337669499,41.86792055],[-71.337387499,41.868088551],[-71.337151499,41.868248551],[-71.337418499,41.86837455],[-71.337662499,41.86847055],[-71.337724499,41.86849355],[-71.338127499,41.86864555],[-71.338486499,41.868786551],[-71.338615499,41.86895455],[-71.3387455,41.868988551],[-71.3389975,41.869007551],[-71.3389595,41.86909555],[-71.338890499,41.86921055],[-71.3387835,41.869416551],[-71.3386695,41.86961855],[-71.3386315,41.869683551],[-71.3384705,41.869995551],[-71.338226499,41.870491551],[-71.3378685,41.871121551],[-71.3375185,41.871796551],[-71.3375985,41.872010551],[-71.337818499,41.873179552]]]]}}"}, +{"type": "precinct", "typeId": 2625, "areaId": 25860, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":199,\"NAME\":\"2625\",\"SHAPE_Length\":0.020579653631777,\"SHAPE_Area\":-2.3018460486436e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.372269511,41.875458551],[-71.373581511,41.87519555],[-71.373711511,41.87558455],[-71.373871512,41.876088551],[-71.374290511,41.877488551],[-71.375214512,41.877335551],[-71.376106512,41.877175551],[-71.377060512,41.877011551],[-71.377266513,41.876976551],[-71.378372513,41.876801551],[-71.379044513,41.876698551],[-71.379234514,41.876660551],[-71.379173513,41.87651955],[-71.379112513,41.87626755],[-71.379005513,41.875771551],[-71.378891513,41.87538955],[-71.378792513,41.874955551],[-71.378693513,41.87465755],[-71.378502513,41.87430255],[-71.378487513,41.87426055],[-71.378326513,41.87392555],[-71.378090512,41.87349755],[-71.378084513,41.87347955],[-71.377823513,41.87300555],[-71.377556513,41.87244855],[-71.376686512,41.87267055],[-71.375832512,41.87289155],[-71.374947511,41.873104551],[-71.374435512,41.87322755],[-71.374069511,41.87332255],[-71.373627511,41.873436551],[-71.373207511,41.87353955],[-71.372803511,41.87363955],[-71.372124511,41.87381455],[-71.372154511,41.874188551],[-71.372169511,41.874607551],[-71.372154511,41.874997551],[-71.372169511,41.87513855],[-71.372208511,41.875306551],[-71.372269511,41.875458551]]]]}}"}, +{"type": "precinct", "typeId": 2626, "areaId": 25857, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":196,\"NAME\":\"2626\",\"SHAPE_Length\":0.035545155380319,\"SHAPE_Area\":-3.2982961303979e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.367203509,41.860726548],[-71.366226508,41.860726548],[-71.366219508,41.861393548],[-71.366241508,41.862053548],[-71.366264508,41.862698548],[-71.366272508,41.862715548],[-71.366280508,41.863358548],[-71.366295508,41.863957549],[-71.366280508,41.863976549],[-71.366264509,41.863995549],[-71.366234508,41.864014549],[-71.364738508,41.864041549],[-71.364807507,41.864659549],[-71.364861508,41.865178549],[-71.364868508,41.865392549],[-71.364863508,41.865545549],[-71.366763508,41.865632549],[-71.368359509,41.865042549],[-71.370329509,41.864316548],[-71.37147951,41.863678549],[-71.37136951,41.863571548],[-71.37133851,41.863541549],[-71.37071251,41.862969548],[-71.37053451,41.862796548],[-71.37027751,41.862545548],[-71.370003509,41.862286548],[-71.369598509,41.861878548],[-71.369080509,41.861393548],[-71.368576509,41.860939548],[-71.368340509,41.860722548],[-71.367203509,41.860726548]]],[[[-71.366920509,41.873200551],[-71.366882509,41.873963551],[-71.367774509,41.874030551],[-71.36763051,41.87433755],[-71.367594509,41.874478551],[-71.36757251,41.874537551],[-71.367546509,41.874607551],[-71.367516509,41.874867551],[-71.367519509,41.87493955],[-71.367599509,41.875039551],[-71.36805751,41.875054551],[-71.36823351,41.875050551],[-71.369583509,41.874909551],[-71.36979751,41.87488255],[-71.372169511,41.874607551],[-71.372154511,41.874188551],[-71.372124511,41.87381455],[-71.37192851,41.87307455],[-71.37188751,41.87291855],[-71.37181151,41.872597551],[-71.371803511,41.87254855],[-71.371780511,41.87248655],[-71.371727511,41.87234555],[-71.37165851,41.87223155],[-71.37149851,41.87202555],[-71.37139951,41.87193755],[-71.37128451,41.871857551],[-71.37115551,41.87178555],[-71.37104751,41.87172055],[-71.37099551,41.87168955],[-71.37060551,41.87149855],[-71.37020151,41.87131955],[-71.36999551,41.87122855],[-71.36959851,41.871506551],[-71.36931651,41.87168555],[-71.368477509,41.87224255],[-71.368103509,41.872517551],[-71.36808051,41.872536551],[-71.367821509,41.87269655],[-71.36772951,41.87271955],[-71.367630509,41.87272755],[-71.366936509,41.87269655],[-71.366920509,41.873200551]]]]}}"}, +{"type": "precinct", "typeId": 2627, "areaId": 25858, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":197,\"NAME\":\"2627\",\"SHAPE_Length\":0.067483204054776,\"SHAPE_Area\":-0.00011394073862518},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.374526511,41.857144547],[-71.374563745,41.857151118],[-71.374529816,41.8571442],[-71.374526511,41.857144547]]],[[[-71.374667677,41.857176733],[-71.374630831,41.857166648],[-71.374598182,41.857158863],[-71.374667677,41.857176733]]],[[[-71.37477651,41.857216547],[-71.374800749,41.85723058],[-71.374800098,41.857228091],[-71.374776952,41.857216112],[-71.374731594,41.857197082],[-71.374687233,41.857182355],[-71.37477651,41.857216547]]],[[[-71.374946661,41.857349984],[-71.37498951,41.857398547],[-71.375021511,41.857457547],[-71.375052509,41.857554417],[-71.375052274,41.857553517],[-71.375043649,41.857521195],[-71.375033189,41.85748887],[-71.375021809,41.857457916],[-71.375007735,41.857427692],[-71.374989898,41.857398172],[-71.3749675,41.857370042],[-71.374949708,41.857349695],[-71.374946661,41.857349984]]],[[[-71.375118929,41.857775747],[-71.375113258,41.857748149],[-71.375103717,41.857715139],[-71.375095467,41.857689718],[-71.375118929,41.857775747]]],[[[-71.37512451,41.857882547],[-71.375119511,41.858003547],[-71.37511952,41.858004206],[-71.375119551,41.858003735],[-71.375122052,41.857976158],[-71.375123578,41.857946522],[-71.375125107,41.857915514],[-71.375124774,41.857882446],[-71.375124411,41.857848691],[-71.37512408,41.857814228],[-71.375120713,41.857786646],[-71.37512451,41.857882547]]],[[[-71.375134314,41.858641423],[-71.375132924,41.858630324],[-71.375129862,41.858626707],[-71.375134314,41.858641423]]],[[[-71.375165282,41.858743792],[-71.375164137,41.858734685],[-71.375158993,41.858723004],[-71.375165282,41.858743792]]],[[[-71.375155511,41.858761547],[-71.375155408,41.858763606],[-71.375155828,41.858761009],[-71.375155511,41.858761547]]],[[[-71.375153511,41.858801547],[-71.375132588,41.858873282],[-71.375140819,41.858848842],[-71.375149158,41.858824084],[-71.375153607,41.858801404],[-71.375153746,41.858796839],[-71.375153511,41.858801547]]],[[[-71.384551856,41.872616601],[-71.384561399,41.872642759],[-71.384569926,41.872662547],[-71.384552515,41.87261655],[-71.384551856,41.872616601]]],[[[-71.384686456,41.873677043],[-71.384682012,41.873698284],[-71.384681652,41.87371109],[-71.384680638,41.873721607],[-71.384689733,41.873662624],[-71.384686456,41.873677043]]],[[[-71.384544325,41.874309305],[-71.384533962,41.874338315],[-71.38452265,41.874367278],[-71.384512285,41.87439702],[-71.384511932,41.874398285],[-71.384512515,41.87439655],[-71.384548322,41.874299545],[-71.384544325,41.874309305]]],[[[-71.384431043,41.874637537],[-71.384419797,41.874663687],[-71.384411008,41.87468663],[-71.384431515,41.87463755],[-71.384433894,41.874630473],[-71.384431043,41.874637537]]],[[[-71.384305202,41.874938542],[-71.384292941,41.874967527],[-71.38428314,41.874992661],[-71.384310345,41.874927552],[-71.384305202,41.874938542]]],[[[-71.384049071,41.875562548],[-71.38402893,41.875600626],[-71.384008822,41.875637333],[-71.383989694,41.875673308],[-71.383971547,41.875708553],[-71.383954381,41.875742427],[-71.383941107,41.875772783],[-71.383932802,41.875796878],[-71.383927506,41.875815259],[-71.383742827,41.87614744],[-71.383927515,41.875815551],[-71.383954515,41.87574255],[-71.384068708,41.875527114],[-71.384049071,41.875562548]]],[[[-71.383583265,41.876376743],[-71.383574927,41.876385059],[-71.383555601,41.876395444],[-71.383550483,41.876398729],[-71.383574515,41.87638555],[-71.383682515,41.876277551],[-71.383583265,41.876376743]]],[[[-71.383536179,41.876407911],[-71.38353153,41.876414535],[-71.383541696,41.876404369],[-71.383536179,41.876407911]]],[[[-71.379173513,41.87651955],[-71.379234514,41.876660551],[-71.379349513,41.87663755],[-71.379539513,41.876603551],[-71.379623514,41.876583551],[-71.379738514,41.87656155],[-71.379906513,41.876526551],[-71.380356513,41.876515551],[-71.381592514,41.876458551],[-71.381622514,41.87646555],[-71.381828514,41.87652255],[-71.381920514,41.876488551],[-71.382225514,41.876397551],[-71.382820515,41.876332551],[-71.382957515,41.876316551],[-71.383087514,41.876313551],[-71.383171515,41.87634755],[-71.383189515,41.87636555],[-71.383270515,41.876321551],[-71.383444515,41.87650455],[-71.383474514,41.87646655],[-71.383528514,41.876417551],[-71.383531176,41.876414889],[-71.383356329,41.876251171],[-71.383361938,41.87624642],[-71.383370113,41.87622667],[-71.383611388,41.875818666],[-71.383625284,41.8757997],[-71.383643236,41.875770789],[-71.383662331,41.875736254],[-71.383682504,41.875697444],[-71.383702776,41.875655112],[-71.383723081,41.875611317],[-71.383743386,41.875567544],[-71.383763754,41.875522354],[-71.38378311,41.875478557],[-71.383803415,41.875434785],[-71.383822773,41.87539028],[-71.383841276,41.875344333],[-71.383859751,41.875296968],[-71.38387734,41.875248916],[-71.383896825,41.875201552],[-71.383915234,41.875157046],[-71.38393266,41.875114643],[-71.383946196,41.875074293],[-71.383958782,41.875034652],[-71.383972285,41.874995744],[-71.383986738,41.874956173],[-71.384002232,41.874915849],[-71.38401678,41.874874105],[-71.384031362,41.874830945],[-71.384044047,41.87478705],[-71.384054866,41.874743153],[-71.384063694,41.874700604],[-71.384069642,41.874660156],[-71.384074577,41.87462181],[-71.384078402,41.874587717],[-71.384081276,41.874555064],[-71.384083172,41.874521655],[-71.38408415,41.874488199],[-71.384085129,41.87445479],[-71.384088037,41.874419987],[-71.384091926,41.874384499],[-71.384097744,41.874348304],[-71.384105426,41.874312843],[-71.384115987,41.874276744],[-71.38412563,41.874239912],[-71.384136254,41.87420235],[-71.384145996,41.874161952],[-71.384156686,41.874121599],[-71.384167442,41.874079075],[-71.384179147,41.874035865],[-71.384190882,41.873992679],[-71.384201604,41.873951572],[-71.384212261,41.873912615],[-71.384222853,41.873875784],[-71.3842324,41.873841834],[-71.384238938,41.873813461],[-71.384241455,41.873792173],[-71.384241846,41.873778658],[-71.38424008,41.873773648],[-71.384242824,41.873745248],[-71.384246453,41.873718244],[-71.384251225,41.873684907],[-71.384256191,41.873645852],[-71.38426116,41.87360538],[-71.384263653,41.873580067],[-71.384265212,41.873564175],[-71.384265438,41.87352363],[-71.384259941,41.873483719],[-71.384249637,41.873445838],[-71.384243062,41.87341018],[-71.384241261,41.87337384],[-71.384246131,41.873336935],[-71.384255841,41.873297245],[-71.384257991,41.873275659],[-71.384259893,41.873256063],[-71.384254397,41.87321542],[-71.384244158,41.873175413],[-71.384233889,41.873135406],[-71.38422365,41.873095421],[-71.384213446,41.873052555],[-71.384202325,41.873009689],[-71.384193166,41.872964743],[-71.384188813,41.872918407],[-71.384187274,41.872872874],[-71.384182824,41.872829397],[-71.384175462,41.872788729],[-71.384163297,41.872747988],[-71.384149265,41.872707222],[-71.384145368,41.872696859],[-71.384134254,41.872667142],[-71.384127033,41.872649356],[-71.384124515,41.87264955],[-71.384098514,41.87258355],[-71.384062793,41.872512978],[-71.384057171,41.872502937],[-71.384052469,41.872495656],[-71.383917429,41.872311164],[-71.383915278,41.872308548],[-71.383912839,41.872306193],[-71.383852961,41.872253465],[-71.383848469,41.872249869],[-71.383844156,41.872246957],[-71.383743516,41.872187089],[-71.383712797,41.872169395],[-71.383681895,41.872151846],[-71.383657239,41.872135765],[-71.383653514,41.872133549],[-71.383651088,41.872131396],[-71.383628756,41.872113968],[-71.383604623,41.872092927],[-71.38358242,41.872070516],[-71.383561261,41.872046003],[-71.383543898,41.872020807],[-71.38352565,41.871993506],[-71.383506487,41.871965427],[-71.383486408,41.871935952],[-71.383465414,41.871905013],[-71.383443472,41.871873364],[-71.383419698,41.871840226],[-71.383396937,41.871805008],[-71.383381233,41.871781161],[-71.383317514,41.87168955],[-71.383199997,41.871554834],[-71.383194029,41.871548469],[-71.383182066,41.871536428],[-71.383156515,41.871511549],[-71.383067628,41.871427495],[-71.383064404,41.871424687],[-71.383062434,41.871423397],[-71.382992042,41.871384397],[-71.382990405,41.871383632],[-71.382988467,41.871383084],[-71.382832294,41.871347541],[-71.382816965,41.871344533],[-71.382801275,41.871341429],[-71.382751148,41.871330653],[-71.382700106,41.871317726],[-71.382647297,41.871301229],[-71.382605015,41.871285419],[-71.382593514,41.87128155],[-71.38258177,41.871276805],[-71.382540894,41.871261787],[-71.382507622,41.871246846],[-71.382494514,41.87124155],[-71.382374552,41.871173952],[-71.382368407,41.871170777],[-71.382322333,41.871151543],[-71.382321045,41.871151148],[-71.382241157,41.871129288],[-71.38222221,41.871125027],[-71.3821712,41.8711121],[-71.382121203,41.871097047],[-71.382074084,41.871080625],[-71.382029634,41.871061361],[-71.382027513,41.871060549],[-71.382025509,41.871059418],[-71.381982038,41.87103788],[-71.381939005,41.871012978],[-71.381895942,41.87098739],[-71.381852908,41.870962487],[-71.381817974,41.870942323],[-71.381809514,41.87093755],[-71.381805629,41.870934887],[-71.381770606,41.870912092],[-71.381735187,41.870886607],[-71.381672419,41.870843586],[-71.381663321,41.87083775],[-71.381647817,41.870826723],[-71.381631514,41.87081555],[-71.381620962,41.870804539],[-71.381608485,41.870792048],[-71.381592135,41.870765458],[-71.381581173,41.870739698],[-71.381579513,41.87073655],[-71.381548567,41.87062674],[-71.381548514,41.87062655],[-71.381548206,41.870625842],[-71.381516464,41.870552738],[-71.381515582,41.870550804],[-71.381514833,41.870549502],[-71.381476514,41.87049055],[-71.381407513,41.870420549],[-71.381379609,41.870397425],[-71.381354966,41.87037885],[-71.381330769,41.870359982],[-71.381305721,41.870338208],[-71.381283596,41.870317859],[-71.381194096,41.870243689],[-71.381191441,41.870241745],[-71.381159658,41.870222045],[-71.381149114,41.870217069],[-71.381101415,41.870196522],[-71.381094816,41.870193918],[-71.381064636,41.870184214],[-71.381038249,41.870175245],[-71.381014707,41.870166302],[-71.380992112,41.870158137],[-71.380970465,41.870149928],[-71.380949735,41.870142474],[-71.380930901,41.870135777],[-71.380912034,41.870129766],[-71.380895097,41.870123093],[-71.380885905,41.870119465],[-71.380880513,41.87011755],[-71.380874199,41.870113881],[-71.380866943,41.870109823],[-71.380864544,41.87010827],[-71.380806513,41.87007455],[-71.38078213,41.870062358],[-71.380776075,41.870059967],[-71.380763599,41.870053092],[-71.380760513,41.870051549],[-71.380759697,41.870050878],[-71.380743345,41.870039535],[-71.380727302,41.8700242],[-71.380726513,41.87002355],[-71.380725661,41.87002238],[-71.380709207,41.870002681],[-71.380691811,41.869979634],[-71.380675429,41.869953776],[-71.3806581,41.869927162],[-71.380641817,41.869897759],[-71.380626513,41.869868311],[-71.380612125,41.869838911],[-71.380585301,41.869790398],[-71.380581389,41.869783651],[-71.380579904,41.869781761],[-71.380518513,41.869713549],[-71.380453513,41.86966655],[-71.380438651,41.869657632],[-71.380431011,41.869653144],[-71.380407599,41.869639947],[-71.38038324,41.869626041],[-71.380358978,41.869609985],[-71.380337625,41.869591851],[-71.380319151,41.869572347],[-71.380305513,41.86955155],[-71.380305498,41.869551498],[-71.380299402,41.869531507],[-71.380300062,41.86952634],[-71.380301513,41.86951255],[-71.380302549,41.869511083],[-71.380311892,41.869494701],[-71.380324768,41.869479606],[-71.380325513,41.86947855],[-71.380326396,41.869477872],[-71.380342302,41.869463152],[-71.380360806,41.86944993],[-71.38037248,41.869442459],[-71.380418565,41.869407046],[-71.380420121,41.869405375],[-71.380420513,41.869402892],[-71.380420513,41.869369254],[-71.380420251,41.869368397],[-71.380266737,41.869157892],[-71.379164029,41.867647256],[-71.379163671,41.867646982],[-71.379163559,41.867646612],[-71.379163512,41.867646549],[-71.379163456,41.867646273],[-71.379160205,41.867635544],[-71.379154221,41.867612669],[-71.3791467,41.867576964],[-71.379141338,41.867538193],[-71.379119513,41.867431549],[-71.379081412,41.867333853],[-71.379080558,41.867331881],[-71.379073964,41.867320202],[-71.37904289,41.867266358],[-71.379024354,41.867235637],[-71.378993489,41.867184653],[-71.378964587,41.86713079],[-71.378938628,41.867074186],[-71.378917048,41.867019798],[-71.378916513,41.867018549],[-71.378916448,41.86701832],[-71.378898051,41.866965381],[-71.378886086,41.866918236],[-71.378875003,41.866873951],[-71.378868747,41.866848483],[-71.378828954,41.866706799],[-71.378825045,41.866694564],[-71.378821207,41.866683738],[-71.378762744,41.866536973],[-71.378761193,41.866533434],[-71.378744258,41.866494036],[-71.378729283,41.866453246],[-71.378716238,41.866411062],[-71.378706103,41.866366801],[-71.37869855,41.8663297],[-71.378696512,41.866321548],[-71.378695158,41.866311832],[-71.378688774,41.866276178],[-71.378681517,41.866231256],[-71.378677038,41.866189197],[-71.378675158,41.866168333],[-71.378656512,41.866034549],[-71.378628544,41.865958633],[-71.378628513,41.865958549],[-71.378606513,41.865925549],[-71.378547513,41.865873548],[-71.378544846,41.865871907],[-71.378514576,41.865854321],[-71.378482733,41.865836016],[-71.37845661,41.865817808],[-71.378435291,41.865798987],[-71.378418601,41.865778689],[-71.378416513,41.865776548],[-71.378327877,41.86563608],[-71.378308535,41.86560909],[-71.378290323,41.865581034],[-71.378273027,41.865554465],[-71.378258482,41.865529294],[-71.378247609,41.865508871],[-71.378245512,41.865505548],[-71.378244134,41.865501678],[-71.378236052,41.865483374],[-71.378228044,41.865463332],[-71.378225452,41.86544919],[-71.378224512,41.865446548],[-71.378224993,41.865437888],[-71.378225265,41.865428432],[-71.378233341,41.865412913],[-71.378234317,41.865411917],[-71.378234512,41.865411549],[-71.378235223,41.865410993],[-71.378247073,41.865398909],[-71.378266493,41.86538642],[-71.378272307,41.865382926],[-71.378353591,41.865332124],[-71.378363445,41.8653254],[-71.378375274,41.865310658],[-71.378376666,41.865300169],[-71.378377513,41.865292548],[-71.378370512,41.865270548],[-71.37836813,41.865267124],[-71.378354284,41.865247702],[-71.378353611,41.865247157],[-71.378223905,41.865190931],[-71.378220823,41.865190069],[-71.378185937,41.865178803],[-71.378156871,41.865164114],[-71.378130715,41.865147301],[-71.378107536,41.865125597],[-71.378088278,41.865101107],[-71.378071015,41.865073097],[-71.378055747,41.865042255],[-71.378040513,41.865009262],[-71.378026356,41.864972772],[-71.37800939,41.864934083],[-71.377992519,41.864893245],[-71.377974701,41.864851674],[-71.377956949,41.86480729],[-71.377940243,41.864760049],[-71.37792357,41.864712121],[-71.37790778,41.864665613],[-71.377891041,41.864619812],[-71.377875187,41.864575476],[-71.377862208,41.864531143],[-71.377852074,41.864486882],[-71.377844848,41.864441938],[-71.377838573,41.864395622],[-71.377832328,41.864349238],[-71.37782795,41.864302925],[-71.377823635,41.864255217],[-71.377819288,41.86420888],[-71.377813044,41.864161856],[-71.377805853,41.864114762],[-71.377797682,41.86406769],[-71.377787645,41.864021256],[-71.377773752,41.863974773],[-71.377758909,41.863929752],[-71.377742041,41.863887473],[-71.377725105,41.863848784],[-71.37770804,41.863813663],[-71.377689928,41.863782039],[-71.377668874,41.863753271],[-71.377647787,41.863725898],[-71.3776267,41.863698524],[-71.377605646,41.863669711],[-71.377583676,41.863640187],[-71.377561739,41.863609222],[-71.377539802,41.863578281],[-71.377519761,41.863547387],[-71.377498771,41.863517155],[-71.377477751,41.863486946],[-71.377456794,41.863455297],[-71.377436884,41.863420127],[-71.37741704,41.863382807],[-71.377397262,41.863342629],[-71.377379478,41.86329964],[-71.377363625,41.863255281],[-71.377348815,41.863208796],[-71.377336914,41.863160942],[-71.37732688,41.863113114],[-71.37731776,41.863066727],[-71.377309653,41.863018946],[-71.377302528,41.862969016],[-71.377296352,41.86291911],[-71.37729122,41.862867102],[-71.37728609,41.862814384],[-71.377279028,41.862763769],[-71.377269909,41.862717382],[-71.377261672,41.862673122],[-71.377254349,41.862631059],[-71.37725082,41.862589],[-71.377249187,41.862546989],[-71.377250401,41.862504318],[-71.377255469,41.862461719],[-71.377262435,41.862418436],[-71.377269399,41.862375863],[-71.37727437,41.8623361],[-71.377278294,41.862299903],[-71.377280192,41.862267203],[-71.377279146,41.862238022],[-71.377275159,41.862211627],[-71.377269242,41.862185916],[-71.377262314,41.862161646],[-71.377254402,41.862139455],[-71.377246426,41.862119413],[-71.377236487,41.862101451],[-71.377227433,41.86208493],[-71.377216511,41.862069116],[-71.377202682,41.86205394],[-71.377186927,41.862038029],[-71.377168423,41.862019943],[-71.377149099,41.861998998],[-71.377127851,41.861975901],[-71.377105686,41.861952757],[-71.377084437,41.861930369],[-71.37706227,41.861907934],[-71.37704004,41.86188694],[-71.377017776,41.861867409],[-71.37699741,41.861847149],[-71.376977988,41.861829039],[-71.37696318,41.861813861],[-71.376955955,41.861800933],[-71.376952553,41.861788054],[-71.376948273,41.861770944],[-71.376940264,41.861751588],[-71.376928529,41.861729348],[-71.376914078,41.861703491],[-71.376897832,41.861672647],[-71.376879784,41.86164036],[-71.376861676,41.861607295],[-71.376841665,41.861577133],[-71.376820549,41.86154976],[-71.376797467,41.861525883],[-71.376770562,41.861501957],[-71.376741759,41.861478737],[-71.376710901,41.861458328],[-71.376677193,41.861439997],[-71.376645349,41.861423109],[-71.376614359,41.861407662],[-71.376586342,41.861389406],[-71.37655937,41.861368338],[-71.376533541,41.861341577],[-71.376505887,41.861309851],[-71.376477413,41.861274512],[-71.376449035,41.861237045],[-71.376417719,41.861200239],[-71.376384569,41.861162699],[-71.376349524,41.861124425],[-71.3763117,41.861083267],[-71.376271099,41.861039201],[-71.376226801,41.86099225],[-71.376179627,41.860945936],[-71.376131503,41.86090033],[-71.376084232,41.86085692],[-71.376038791,41.860816303],[-71.37599613,41.860777197],[-71.375957262,41.860738873],[-71.375920351,41.860700551],[-71.375883347,41.860662961],[-71.375845422,41.860627474],[-71.375810248,41.860592767],[-71.375801548,41.860583085],[-71.375779845,41.86055882],[-71.375753203,41.860525678],[-71.375731237,41.860494713],[-71.375712144,41.860465238],[-71.375694852,41.860437914],[-71.37567854,41.860409905],[-71.375660332,41.860381872],[-71.37564124,41.860351687],[-71.375622216,41.860318645],[-71.375602373,41.860281325],[-71.375583608,41.860240484],[-71.375564944,41.860195344],[-71.375544449,41.860147367],[-71.375524053,41.860095799],[-71.375503656,41.86004494],[-71.375484109,41.859996963],[-71.375465477,41.859951115],[-71.375448707,41.859906732],[-71.375432824,41.859863081],[-71.375416937,41.859820849],[-71.375404811,41.859780107],[-71.375395496,41.859740831],[-71.375392817,41.859702363],[-71.375395731,41.859666852],[-71.375403382,41.859633541],[-71.375412866,41.859601672],[-71.37542333,41.859569119],[-71.375431928,41.85953654],[-71.375443374,41.85950257],[-71.375456746,41.859468648],[-71.375471035,41.859435458],[-71.375484312,41.859403662],[-71.375495658,41.859373968],[-71.375505958,41.859347086],[-71.375515277,41.859320912],[-71.375524595,41.859295469],[-71.375532967,41.859269271],[-71.375541305,41.859244513],[-71.375546831,41.859218289],[-71.375546638,41.859191967],[-71.37553984,41.859164106],[-71.37552928,41.859135486],[-71.375513035,41.859104619],[-71.375493946,41.859073726],[-71.37547201,41.859043492],[-71.375448998,41.859016071],[-71.375422093,41.858992876],[-71.375392147,41.858976012],[-71.375355369,41.858964744],[-71.37531372,41.858956969],[-71.375271059,41.858950565],[-71.375228395,41.858945602],[-71.375191454,41.858939296],[-71.37516128,41.858929567],[-71.375141731,41.858915024],[-71.375134021,41.858899877],[-71.375133891,41.858899624],[-71.37490751,41.858927548],[-71.374449511,41.858930547],[-71.374276511,41.859059548],[-71.37440551,41.860024547],[-71.374451511,41.860615548],[-71.37405451,41.860619548],[-71.373940511,41.860649548],[-71.373787511,41.860642548],[-71.37178051,41.860669548],[-71.371456509,41.860671548],[-71.37085051,41.860684548],[-71.369965509,41.860699548],[-71.36991151,41.860703548],[-71.369255509,41.860703548],[-71.369080509,41.860707548],[-71.368874509,41.860707548],[-71.368596509,41.860714548],[-71.368399509,41.860717548],[-71.368340509,41.860722548],[-71.368576509,41.860939548],[-71.369080509,41.861393548],[-71.369598509,41.861878548],[-71.370003509,41.862286548],[-71.37027751,41.862545548],[-71.37053451,41.862796548],[-71.37071251,41.862969548],[-71.37133851,41.863541549],[-71.37136951,41.863571548],[-71.37147951,41.863678549],[-71.37169651,41.863888548],[-71.37184951,41.864041548],[-71.372078511,41.864247549],[-71.372215511,41.864376549],[-71.372391511,41.864540549],[-71.372581511,41.864727549],[-71.37223851,41.864926549],[-71.37159951,41.864808549],[-71.37153051,41.865681549],[-71.37156251,41.866029549],[-71.37161251,41.866311549],[-71.37163851,41.866412549],[-71.37167651,41.866488549],[-71.37171451,41.866517549],[-71.37247551,41.866497549],[-71.373131511,41.866467549],[-71.373093511,41.867161549],[-71.373062511,41.867657549],[-71.373062511,41.867871549],[-71.37305551,41.86822555],[-71.37307751,41.868779549],[-71.373131511,41.86949655],[-71.373177511,41.87019455],[-71.373177511,41.87027455],[-71.373177511,41.87030455],[-71.373116511,41.87053755],[-71.37297851,41.87086955],[-71.372887511,41.87107955],[-71.372475511,41.87193355],[-71.37223851,41.87239555],[-71.371780511,41.87248655],[-71.371803511,41.87254855],[-71.37181151,41.872597551],[-71.37188751,41.87291855],[-71.37192851,41.87307455],[-71.372124511,41.87381455],[-71.372803511,41.87363955],[-71.373207511,41.87353955],[-71.373627511,41.873436551],[-71.374069511,41.87332255],[-71.374435512,41.87322755],[-71.374947511,41.873104551],[-71.375832512,41.87289155],[-71.376686512,41.87267055],[-71.377556513,41.87244855],[-71.377823513,41.87300555],[-71.378084513,41.87347955],[-71.378090512,41.87349755],[-71.378326513,41.87392555],[-71.378487513,41.87426055],[-71.378502513,41.87430255],[-71.378693513,41.87465755],[-71.378792513,41.874955551],[-71.378891513,41.87538955],[-71.379005513,41.875771551],[-71.379112513,41.87626755],[-71.379173513,41.87651955]]]]}}"}, +{"type": "precinct", "typeId": 2628, "areaId": 26035, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":374,\"NAME\":\"2628\",\"SHAPE_Length\":0.09230176380818,\"SHAPE_Area\":-0.00018683857517074},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.357109506,41.873307551],[-71.358231506,41.873318551],[-71.358223506,41.873101551],[-71.358200506,41.872422551],[-71.358192506,41.87207455],[-71.358192506,41.87184055],[-71.358200506,41.87182355],[-71.358139506,41.871716551],[-71.358139506,41.871151551],[-71.358116505,41.870335551],[-71.358177506,41.87033955],[-71.358131506,41.86947355],[-71.358109506,41.86888955],[-71.358116505,41.868016549],[-71.358128506,41.86662955],[-71.358129506,41.866457549],[-71.358131506,41.866246549],[-71.358162506,41.865292549],[-71.358955506,41.865300549],[-71.358963506,41.864678549],[-71.358765506,41.864685549],[-71.358742505,41.864231549],[-71.358704505,41.863507549],[-71.358658506,41.862843549],[-71.358025505,41.862858549],[-71.358025505,41.861977548],[-71.358078505,41.860836549],[-71.358574506,41.860829548],[-71.358795506,41.860825548],[-71.358749506,41.860157548],[-71.358711506,41.859520548],[-71.358681506,41.859089548],[-71.358696506,41.859009548],[-71.358735506,41.858812548],[-71.355183504,41.858976548],[-71.354505504,41.859009548],[-71.354433504,41.859015548],[-71.354140504,41.859055548],[-71.349632503,41.859671548],[-71.349492503,41.859685549],[-71.343056501,41.860345549],[-71.3429145,41.860359549],[-71.3415765,41.860513549],[-71.3409875,41.860560549],[-71.3392175,41.860744549],[-71.338830499,41.860785549],[-71.337776498,41.860925549],[-71.335140498,41.861255549],[-71.334526943,41.861299316],[-71.334438442,41.861485841],[-71.334012641,41.862384267],[-71.334097498,41.86280855],[-71.334638498,41.86422455],[-71.334664498,41.864292549],[-71.335808498,41.86728555],[-71.336112499,41.86808055],[-71.336163498,41.86821355],[-71.336180498,41.86825855],[-71.336848499,41.87002555],[-71.336892499,41.870140551],[-71.3375185,41.871796551],[-71.3378685,41.871121551],[-71.338226499,41.870491551],[-71.3384705,41.869995551],[-71.3386315,41.869683551],[-71.3386695,41.86961855],[-71.3387835,41.869416551],[-71.338890499,41.86921055],[-71.3389595,41.86909555],[-71.3389975,41.869007551],[-71.3387455,41.868988551],[-71.338615499,41.86895455],[-71.338486499,41.868786551],[-71.338127499,41.86864555],[-71.337724499,41.86849355],[-71.337662499,41.86847055],[-71.337418499,41.86837455],[-71.337151499,41.868248551],[-71.337387499,41.868088551],[-71.337669499,41.86792055],[-71.337822499,41.86787155],[-71.3388085,41.86697655],[-71.3391165,41.86681755],[-71.3406395,41.86602855],[-71.3405475,41.86600255],[-71.3404525,41.86593655],[-71.3404235,41.86591555],[-71.3403525,41.86581455],[-71.3403105,41.865696549],[-71.3402575,41.86547255],[-71.3401705,41.865249549],[-71.3400695,41.86500855],[-71.3400265,41.86489355],[-71.3398365,41.86447955],[-71.339750499,41.864293549],[-71.3396675,41.86418455],[-71.339533499,41.864096549],[-71.3393945,41.86403755],[-71.3392515,41.86399155],[-71.339142499,41.86393955],[-71.339111499,41.863924549],[-71.339007499,41.86384155],[-71.3389825,41.86381655],[-71.339221499,41.863830549],[-71.3393315,41.86387855],[-71.3395085,41.863948549],[-71.3396395,41.864020549],[-71.3397575,41.864098549],[-71.3398565,41.864178549],[-71.3399105,41.864275549],[-71.340004499,41.864447549],[-71.3400455,41.86452055],[-71.3401485,41.86475155],[-71.3402525,41.86500055],[-71.3402605,41.86502155],[-71.3403005,41.86512955],[-71.3403545,41.86525255],[-71.3404145,41.86537155],[-71.3404395,41.86547855],[-71.3404395,41.86559355],[-71.3404585,41.86571955],[-71.3405355,41.86583755],[-71.3405865,41.86586855],[-71.3409095,41.86570355],[-71.345366501,41.86607955],[-71.345380502,41.86608155],[-71.346080502,41.866164549],[-71.346779502,41.866262549],[-71.348361503,41.86644355],[-71.350712503,41.866711549],[-71.351609503,41.86661155],[-71.352707504,41.866579549],[-71.354412504,41.866516549],[-71.354411504,41.866595549],[-71.354393504,41.867978549],[-71.354393504,41.86845855],[-71.354385505,41.86877955],[-71.354378504,41.86945055],[-71.354378505,41.86976355],[-71.354370505,41.87022155],[-71.354370505,41.87043855],[-71.354355504,41.87114055],[-71.354347505,41.871796551],[-71.354340505,41.87203355],[-71.354324505,41.873284551],[-71.355278505,41.873291551],[-71.356186505,41.873299551],[-71.357109506,41.873307551]]]]}}"}, +{"type": "precinct", "typeId": 2629, "areaId": 25859, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":198,\"NAME\":\"2629\",\"SHAPE_Length\":0.078149653483068,\"SHAPE_Area\":-0.00017746554865809},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.364693508,41.874966551],[-71.364721509,41.874967551],[-71.365234509,41.874981551],[-71.366798509,41.875023551],[-71.367599509,41.875039551],[-71.367519509,41.87493955],[-71.367516509,41.874867551],[-71.367546509,41.874607551],[-71.36757251,41.874537551],[-71.367594509,41.874478551],[-71.36763051,41.87433755],[-71.367774509,41.874030551],[-71.366882509,41.873963551],[-71.366920509,41.873200551],[-71.366936509,41.87269655],[-71.367630509,41.87272755],[-71.36772951,41.87271955],[-71.367821509,41.87269655],[-71.36808051,41.872536551],[-71.368103509,41.872517551],[-71.368477509,41.87224255],[-71.36931651,41.87168555],[-71.36959851,41.871506551],[-71.36999551,41.87122855],[-71.37020151,41.87131955],[-71.37060551,41.87149855],[-71.37099551,41.87168955],[-71.37104751,41.87172055],[-71.37115551,41.87178555],[-71.37128451,41.871857551],[-71.37139951,41.87193755],[-71.37149851,41.87202555],[-71.37165851,41.87223155],[-71.371727511,41.87234555],[-71.371780511,41.87248655],[-71.37223851,41.87239555],[-71.372475511,41.87193355],[-71.372887511,41.87107955],[-71.37297851,41.87086955],[-71.373116511,41.87053755],[-71.373177511,41.87030455],[-71.373177511,41.87027455],[-71.373177511,41.87019455],[-71.373131511,41.86949655],[-71.37307751,41.868779549],[-71.37305551,41.86822555],[-71.373062511,41.867871549],[-71.373062511,41.867657549],[-71.373093511,41.867161549],[-71.373131511,41.866467549],[-71.37247551,41.866497549],[-71.37171451,41.866517549],[-71.37167651,41.866488549],[-71.37163851,41.866412549],[-71.37161251,41.866311549],[-71.37156251,41.866029549],[-71.37153051,41.865681549],[-71.37159951,41.864808549],[-71.37223851,41.864926549],[-71.372581511,41.864727549],[-71.372391511,41.864540549],[-71.372215511,41.864376549],[-71.372078511,41.864247549],[-71.37184951,41.864041548],[-71.37169651,41.863888548],[-71.37147951,41.863678549],[-71.370329509,41.864316548],[-71.368359509,41.865042549],[-71.366763508,41.865632549],[-71.364863508,41.865545549],[-71.364868508,41.865392549],[-71.364861508,41.865178549],[-71.364807507,41.864659549],[-71.364738508,41.864041549],[-71.366234508,41.864014549],[-71.366264509,41.863995549],[-71.366280508,41.863976549],[-71.366295508,41.863957549],[-71.366280508,41.863358548],[-71.366272508,41.862715548],[-71.366264508,41.862698548],[-71.366241508,41.862053548],[-71.366219508,41.861393548],[-71.366226508,41.860726548],[-71.367203509,41.860726548],[-71.368340509,41.860722548],[-71.368134509,41.860527548],[-71.367767509,41.860196548],[-71.366852509,41.859333548],[-71.366142508,41.858677547],[-71.365730508,41.858288547],[-71.364999508,41.858368547],[-71.364677507,41.858399548],[-71.364479507,41.858310548],[-71.363734507,41.858409548],[-71.359970506,41.859211548],[-71.359981506,41.859346548],[-71.358735506,41.858812548],[-71.358696506,41.859009548],[-71.358681506,41.859089548],[-71.358711506,41.859520548],[-71.358749506,41.860157548],[-71.358795506,41.860825548],[-71.358574506,41.860829548],[-71.358078505,41.860836549],[-71.358025505,41.861977548],[-71.358025505,41.862858549],[-71.358658506,41.862843549],[-71.358704505,41.863507549],[-71.358742505,41.864231549],[-71.358765506,41.864685549],[-71.358963506,41.864678549],[-71.358955506,41.865300549],[-71.358162506,41.865292549],[-71.358131506,41.866246549],[-71.358129506,41.866457549],[-71.358128506,41.86662955],[-71.358116505,41.868016549],[-71.358109506,41.86888955],[-71.358131506,41.86947355],[-71.358177506,41.87033955],[-71.358116505,41.870335551],[-71.358139506,41.871151551],[-71.358139506,41.871716551],[-71.358200506,41.87182355],[-71.358192506,41.87184055],[-71.358192506,41.87207455],[-71.358200506,41.872422551],[-71.358223506,41.873101551],[-71.358231506,41.873318551],[-71.357109506,41.873307551],[-71.357109506,41.874527551],[-71.358276506,41.874546551],[-71.358284506,41.874424551],[-71.361023507,41.874470551],[-71.363457508,41.874508551],[-71.363388508,41.874920551],[-71.364456508,41.874962551],[-71.364587509,41.874964551],[-71.364693508,41.874966551]]]]}}"}, +{"type": "precinct", "typeId": 2630, "areaId": 25856, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":195,\"NAME\":\"2630\",\"SHAPE_Length\":0.023251131852422,\"SHAPE_Area\":-2.2986421120887e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.365730508,41.858288547],[-71.366142508,41.858677547],[-71.366852509,41.859333548],[-71.367767509,41.860196548],[-71.368134509,41.860527548],[-71.368340509,41.860722548],[-71.368399509,41.860717548],[-71.368596509,41.860714548],[-71.368874509,41.860707548],[-71.369080509,41.860707548],[-71.369255509,41.860703548],[-71.36991151,41.860703548],[-71.369965509,41.860699548],[-71.37085051,41.860684548],[-71.371456509,41.860671548],[-71.37178051,41.860669548],[-71.373787511,41.860642548],[-71.373940511,41.860649548],[-71.37405451,41.860619548],[-71.374451511,41.860615548],[-71.37440551,41.860024547],[-71.374276511,41.859059548],[-71.374449511,41.858930547],[-71.37490751,41.858927548],[-71.375133891,41.858899624],[-71.375131857,41.858895667],[-71.375132481,41.858873599],[-71.375132511,41.858873547],[-71.375132588,41.858873282],[-71.375153511,41.858801547],[-71.375153746,41.858796839],[-71.375154195,41.858782195],[-71.375154588,41.85876868],[-71.375155408,41.858763606],[-71.375155511,41.858761547],[-71.375155828,41.858761009],[-71.375156879,41.858754504],[-71.375165398,41.858744739],[-71.375165282,41.858743792],[-71.375158993,41.858723004],[-71.375158777,41.858722513],[-71.375152599,41.858706041],[-71.375147402,41.858688884],[-71.37514116,41.858673852],[-71.375137728,41.858660996],[-71.375135243,41.85864885],[-71.375134314,41.858641423],[-71.375129862,41.858626707],[-71.375129262,41.858625998],[-71.37511828,41.858059556],[-71.375118154,41.858045766],[-71.375117944,41.858027859],[-71.37511952,41.858004206],[-71.375119511,41.858003547],[-71.37512451,41.857882547],[-71.375120713,41.857786646],[-71.375120046,41.857781179],[-71.375118929,41.857775747],[-71.375095467,41.857689718],[-71.375093226,41.857682815],[-71.375080931,41.857650511],[-71.375069552,41.857618871],[-71.375060927,41.857586549],[-71.375052509,41.857554417],[-71.375021511,41.857457547],[-71.37498951,41.857398547],[-71.374946661,41.857349984],[-71.37483476,41.857360602],[-71.374800749,41.85723058],[-71.37477651,41.857216547],[-71.374687233,41.857182355],[-71.374682591,41.857180815],[-71.374667677,41.857176733],[-71.374598182,41.857158863],[-71.374577263,41.857153875],[-71.374563745,41.857151118],[-71.374526511,41.857144547],[-71.373695511,41.857613547],[-71.37267351,41.857613547],[-71.37229251,41.857621548],[-71.37207851,41.857621548],[-71.371267509,41.857643547],[-71.37123851,41.857637548],[-71.370100509,41.857715548],[-71.365730508,41.858288547]]]]}}"}, + +{"type": "precinct", "typeId": 2701, "areaId": 25873, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":212,\"NAME\":\"2701\",\"SHAPE_Length\":0.54912621498748,\"SHAPE_Area\":-0.0017338571111958},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.298068442,41.580765739],[-71.29808455,41.580826029],[-71.298085243,41.580887047],[-71.298080569,41.580950204],[-71.298073214,41.581013335],[-71.298057725,41.581077251],[-71.29803494,41.58113642],[-71.298003063,41.581190908],[-71.297967512,41.581241342],[-71.297937434,41.581295147],[-71.297912828,41.581352278],[-71.297896402,41.581413448],[-71.297882708,41.581478031],[-71.297875399,41.581545895],[-71.297875331,41.581616494],[-71.297876179,41.581686339],[-71.297878873,41.581760281],[-71.297887008,41.581837572],[-71.297893348,41.581914219],[-71.297894223,41.581985437],[-71.297895021,41.582051943],[-71.29789572,41.582110925],[-71.297897335,41.582169268],[-71.297905328,41.582233683],[-71.297911644,41.582308272],[-71.297912512,41.582381525],[-71.297913459,41.582458849],[-71.297914369,41.582538231],[-71.297915316,41.582615555],[-71.297922472,41.582684725],[-71.297941308,41.582749045],[-71.297965569,41.582812665],[-71.29798983,41.582876263],[-71.298008647,41.582937197],[-71.298021128,41.58299819],[-71.298033537,41.583053076],[-71.298060652,41.583129531],[-71.298110324,41.583200468],[-71.298157866,41.583251002],[-71.29820996,41.583297496],[-71.298259285,41.583343276],[-71.298307704,41.583386356],[-71.298361496,41.583425374],[-71.298420661,41.583460926],[-71.298485197,41.583493034],[-71.29855245,41.583523111],[-71.298621398,41.583547062],[-71.298694858,41.583569648],[-71.298764746,41.583594973],[-71.298829285,41.583626394],[-71.298892068,41.583663965],[-71.298959414,41.583703555],[-71.299031346,41.58374782],[-71.299102387,41.583794186],[-71.299166185,41.583838505],[-71.299225471,41.583884233],[-71.29928296,41.583929981],[-71.299336842,41.583979839],[-71.299381835,41.58403787],[-71.299418664,41.584095977],[-71.299450964,41.584151378],[-71.299480473,41.584202772],[-71.2995057,41.584269732],[-71.299509114,41.584328056],[-71.299526997,41.584386313],[-71.299519707,41.584458248],[-71.299499906,41.5845378],[-71.299480667,41.584592836],[-71.299439076,41.584665741],[-71.299395616,41.584732536],[-71.299373646,41.584784251],[-71.299400612,41.584850529],[-71.299457214,41.584897624],[-71.299539031,41.584937126],[-71.299599918,41.5849679],[-71.299660837,41.584998011],[-71.299746227,41.585034751],[-71.299813674,41.585081797],[-71.29989019,41.585131489],[-71.299952909,41.585160917],[-71.30002191,41.585188252],[-71.300096326,41.585217608],[-71.300169914,41.585248976],[-71.300244311,41.585274948],[-71.300318639,41.585293442],[-71.300390206,41.585308568],[-71.300463574,41.585322326],[-71.300539603,41.585332658],[-71.300614722,41.585341639],[-71.300691638,41.585350623],[-71.30076853,41.585357571],[-71.300840002,41.585363892],[-71.30094305,41.585364528],[-71.301029753,41.585360539],[-71.301103573,41.585336311],[-71.301159075,41.585295882],[-71.301181925,41.585244853],[-71.301193037,41.585187104],[-71.30120941,41.585122525],[-71.301208585,41.585054029],[-71.301174605,41.585009512],[-71.301101984,41.5849808],[-71.301025588,41.584941286],[-71.300975199,41.584883979],[-71.300949946,41.584814915],[-71.30093276,41.5847377],[-71.300910148,41.584661871],[-71.300880419,41.584592181],[-71.300849871,41.584531364],[-71.300845569,41.584474388],[-71.300850238,41.584411939],[-71.300856606,41.584341992],[-71.300879248,41.58426926],[-71.300890124,41.584199275],[-71.300889376,41.584135513],[-71.300889225,41.584125359],[-71.300907548,41.584070252],[-71.300913156,41.584009817],[-71.300912302,41.583940635],[-71.300913276,41.583871456],[-71.300916177,41.583809713],[-71.300937185,41.583753262],[-71.300970023,41.583702823],[-71.301051079,41.583682563],[-71.301034381,41.583644708],[-71.301025312,41.583642062],[-71.301034492,41.583578889],[-71.301074573,41.583530429],[-71.301112755,41.583475906],[-71.301158942,41.583333782],[-71.301162794,41.583279473],[-71.30115312,41.583225942],[-71.301127056,41.583163051],[-71.301097447,41.583104225],[-71.301063275,41.583043401],[-71.301015546,41.582983354],[-71.300954267,41.582922003],[-71.3009095,41.582879571],[-71.300870987,41.582833697],[-71.30083519,41.582786432],[-71.30080025,41.582737842],[-71.300765338,41.582689892],[-71.300724045,41.582637266],[-71.300684474,41.582579178],[-71.300647668,41.582523106],[-71.300607238,41.582467074],[-71.300566826,41.582415113],[-71.300519921,41.582344867],[-71.300485753,41.58228338],[-71.300457867,41.582219091],[-71.300458819,41.582147168],[-71.30047332,41.582077189],[-71.300486169,41.58201942],[-71.300503486,41.581954843],[-71.3005189,41.581884889],[-71.300528005,41.581816296],[-71.300526315,41.581751823],[-71.300517529,41.581696989],[-71.300498622,41.581625169],[-71.300464451,41.581564345],[-71.300428455,41.581502877],[-71.300405252,41.581451449],[-71.300396439,41.581395197],[-71.300413522,41.581386925],[-71.300484409,41.581344374],[-71.300524294,41.581280339],[-71.300545326,41.581225923],[-71.300561821,41.581170859],[-71.300588059,41.581097378],[-71.300626312,41.581048961],[-71.300625804,41.581006217],[-71.300599887,41.580955539],[-71.300598272,41.580896486],[-71.300617405,41.58083532],[-71.300653716,41.580774687],[-71.300656683,41.580721063],[-71.300631153,41.580702929],[-71.300588723,41.580703221],[-71.300522184,41.580728766],[-71.300459094,41.580742081],[-71.300371214,41.580724364],[-71.300302291,41.580703113],[-71.300227006,41.580680547],[-71.300153546,41.580658671],[-71.300078188,41.580629998],[-71.300001016,41.580597275],[-71.299922877,41.580561851],[-71.299847447,41.580527072],[-71.299769339,41.580491648],[-71.299686668,41.58045425],[-71.299603086,41.580416118],[-71.299519476,41.580377345],[-71.299436751,41.580337888],[-71.299357679,41.580299055],[-71.299283141,41.580261555],[-71.299214023,41.580224729],[-71.299153038,41.580187825],[-71.299080252,41.580145595],[-71.298998687,41.580125076],[-71.298904646,41.580120292],[-71.298802475,41.580114876],[-71.298726477,41.580106601],[-71.298645995,41.580100354],[-71.29856191,41.580096845],[-71.298475163,41.580097425],[-71.298386617,41.58009871],[-71.298297189,41.580099308],[-71.298209579,41.580103271],[-71.298128354,41.580110607],[-71.298047962,41.580114582],[-71.297968464,41.580115083],[-71.297864568,41.580115792],[-71.297771492,41.580114393],[-71.297685514,41.580102762],[-71.29761309,41.580091039],[-71.297548599,41.580065014],[-71.297470636,41.580042488],[-71.297430742,41.580030525],[-71.297430882,41.580044133],[-71.297437077,41.580108499],[-71.297482015,41.580163168],[-71.297551397,41.580222385],[-71.297601587,41.580263433],[-71.297655374,41.580303092],[-71.29771278,41.58034477],[-71.297772062,41.5803905],[-71.297826834,41.580436976],[-71.297878038,41.580484794],[-71.297922974,41.580540126],[-71.297964315,41.580596138],[-71.298004741,41.580652171],[-71.29804066,41.580708265],[-71.298068442,41.580765739]]],[[[-71.364309639,41.606536787],[-71.364374942,41.606592941],[-71.364522235,41.606609169],[-71.364673371,41.606594184],[-71.36482451,41.606577667],[-71.364959344,41.606548255],[-71.365030861,41.606459628],[-71.365169723,41.606427202],[-71.365310935,41.606451083],[-71.365397252,41.606454592],[-71.365530912,41.606403109],[-71.365620245,41.606406598],[-71.3657354,41.606477079],[-71.365817814,41.606511045],[-71.365968908,41.606486911],[-71.366107747,41.606450619],[-71.36624959,41.606405205],[-71.366406938,41.606406966],[-71.366542681,41.606364564],[-71.366608379,41.606318649],[-71.366673941,41.606249888],[-71.366796399,41.606192307],[-71.366911647,41.606114204],[-71.367008695,41.606055244],[-71.367067933,41.605949907],[-71.367124173,41.605849895],[-71.367193568,41.605739172],[-71.367235556,41.605635438],[-71.367268408,41.605528676],[-71.367309345,41.605417302],[-71.367379735,41.605311155],[-71.367427776,41.60519748],[-71.367472814,41.60509144],[-71.367535049,41.60498],[-71.367590161,41.604864801],[-71.367635134,41.604745794],[-71.367644338,41.604715159],[-71.367666948,41.604639807],[-71.367626729,41.604534812],[-71.36763214,41.604422026],[-71.367672037,41.604311406],[-71.367666267,41.604197921],[-71.367671665,41.604076032],[-71.36761724,41.603974909],[-71.367547586,41.603870749],[-71.367553244,41.603845577],[-71.367565359,41.603791481],[-71.367650045,41.603696739],[-71.367750009,41.603610292],[-71.367859091,41.603520037],[-71.367987562,41.603454046],[-71.36812736,41.603407095],[-71.368223291,41.603325264],[-71.368294759,41.603226778],[-71.368369201,41.603119079],[-71.368374862,41.603047435],[-71.368370412,41.602988038],[-71.368460203,41.602898583],[-71.368556067,41.602804539],[-71.368655982,41.602711277],[-71.368746797,41.602627175],[-71.368836516,41.602527817],[-71.368919163,41.602430007],[-71.369018046,41.602333679],[-71.369114934,41.602244987],[-71.369216926,41.602163115],[-71.369337228,41.602081951],[-71.369473857,41.602017499],[-71.369585906,41.60193413],[-71.369728924,41.601904607],[-71.369831516,41.601917988],[-71.369893273,41.601934478],[-71.369904692,41.601937556],[-71.369916246,41.601934504],[-71.370008035,41.601910526],[-71.370126348,41.601833155],[-71.370236423,41.601745918],[-71.370243155,41.60168571],[-71.370198284,41.601650829],[-71.370129327,41.601654113],[-71.37007298,41.601568242],[-71.3700776,41.601498129],[-71.370181567,41.601402538],[-71.370281519,41.601318422],[-71.370383565,41.601238814],[-71.37044886,41.601131172],[-71.370538571,41.601033345],[-71.370618193,41.60093784],[-71.37072515,41.60083921],[-71.370794599,41.600741475],[-71.370898604,41.600656517],[-71.370998554,41.600572377],[-71.37109038,41.600482923],[-71.371207693,41.600415498],[-71.37129539,41.600318446],[-71.371405539,41.600238091],[-71.371517693,41.600159957],[-71.37163902,41.600081101],[-71.371741145,41.600021297],[-71.371809534,41.599918963],[-71.371879889,41.599808261],[-71.371909773,41.59971828],[-71.371880613,41.599596467],[-71.371843341,41.599478533],[-71.371816363,41.59937806],[-71.371875583,41.599274275],[-71.371889066,41.59915841],[-71.371965813,41.59909645],[-71.372053883,41.599055772],[-71.372117209,41.598955719],[-71.372188689,41.598861004],[-71.372264148,41.598757146],[-71.372353861,41.598655522],[-71.372462919,41.598569813],[-71.372551716,41.598484174],[-71.372655719,41.598396973],[-71.372757677,41.598311279],[-71.372871919,41.598238497],[-71.372949443,41.598136951],[-71.372993436,41.59802862],[-71.373030348,41.597927143],[-71.373074318,41.597814993],[-71.373141666,41.597712681],[-71.373184631,41.59760053],[-71.373134533,41.597543575],[-71.373093903,41.59753763],[-71.373017342,41.597630099],[-71.372931641,41.597722557],[-71.372842342,41.597722893],[-71.372747536,41.597657701],[-71.372673832,41.597552031],[-71.37259257,41.59754014],[-71.372470178,41.597606097],[-71.372365169,41.597694074],[-71.372271361,41.597787324],[-71.372178609,41.597885903],[-71.372081688,41.59796625],[-71.371990877,41.598053397],[-71.37190827,41.598151987],[-71.371807267,41.598231552],[-71.371683927,41.598313516],[-71.371594201,41.598405992],[-71.371519693,41.598506787],[-71.371464544,41.598615927],[-71.371428753,41.5987349],[-71.371391697,41.598815794],[-71.371266896,41.598819291],[-71.371108373,41.598790092],[-71.37096795,41.598728873],[-71.37085375,41.59864168],[-71.370772915,41.598537578],[-71.370742789,41.598427976],[-71.370768702,41.598343342],[-71.370889948,41.59825758],[-71.371013373,41.598194667],[-71.371167443,41.598164469],[-71.371297215,41.59814266],[-71.371325085,41.598054232],[-71.371418964,41.597971617],[-71.371464997,41.597865531],[-71.371446078,41.597757451],[-71.371395712,41.597652492],[-71.371377877,41.597643027],[-71.371313255,41.597613888],[-71.371160168,41.597640359],[-71.37102236,41.597675104],[-71.370899987,41.59774561],[-71.370775536,41.597803948],[-71.370627205,41.59778313],[-71.370524215,41.597865756],[-71.370375935,41.597849489],[-71.370275845,41.597913845],[-71.37023696,41.598025199],[-71.370168523,41.598120671],[-71.370087977,41.598223059],[-71.36997781,41.598298061],[-71.369822586,41.598310806],[-71.369702229,41.598377472],[-71.369586977,41.598451004],[-71.3694657,41.598535987],[-71.369361647,41.598615615],[-71.369250507,41.598689106],[-71.369142352,41.598762623],[-71.369022058,41.598843033],[-71.368902825,41.598925708],[-71.368781571,41.599012954],[-71.368672547,41.599109339],[-71.368573689,41.599210241],[-71.368488004,41.599305761],[-71.368368717,41.599383884],[-71.368274901,41.59947713],[-71.368172937,41.599562065],[-71.368036303,41.599630311],[-71.368005138,41.599673842],[-71.368047955,41.59968817],[-71.367923686,41.599799074],[-71.367788046,41.599858196],[-71.367642232,41.599915842],[-71.367527002,41.599990905],[-71.367410781,41.600073558],[-71.367296527,41.600147844],[-71.367182329,41.600224417],[-71.367051838,41.600297266],[-71.366954953,41.600385201],[-71.366883511,41.600485996],[-71.366845573,41.600592776],[-71.366809613,41.600685059],[-71.366694304,41.60075326],[-71.366585138,41.600826773],[-71.366494364,41.600920044],[-71.366377067,41.600991307],[-71.366260819,41.601070918],[-71.366143526,41.60113987],[-71.366043588,41.601229334],[-71.365948712,41.601316516],[-71.365817072,41.60136878],[-71.365702822,41.601439245],[-71.365631218,41.601514173],[-71.365634742,41.60159262],[-71.365508297,41.601666204],[-71.365364404,41.601705531],[-71.365257345,41.60178968],[-71.36515745,41.601886781],[-71.365107089,41.601928894],[-71.36505041,41.601976281],[-71.364946372,41.602058147],[-71.364850503,41.602152943],[-71.364783086,41.602249922],[-71.36469128,41.602339371],[-71.364597431,41.602428841],[-71.364513777,41.602524314],[-71.364443357,41.602629728],[-71.364372939,41.602733542],[-71.364302496,41.602834359],[-71.364254409,41.602939639],[-71.364203279,41.603042675],[-71.364133888,41.603150309],[-71.364063222,41.603212247],[-71.363942396,41.603205083],[-71.363847516,41.603291464],[-71.363824443,41.603338776],[-71.363843382,41.603446148],[-71.363924137,41.603542639],[-71.363960231,41.603635418],[-71.363892287,41.603735529],[-71.363893017,41.603765169],[-71.363815911,41.603773791],[-71.363799356,41.603720508],[-71.363616727,41.603732573],[-71.363651641,41.603966341],[-71.363829182,41.603954316],[-71.363827907,41.603908621],[-71.363884491,41.603907339],[-71.363919337,41.603927368],[-71.363995454,41.603925537],[-71.364088746,41.603913801],[-71.36413291,41.6039944],[-71.364136543,41.604092652],[-71.363987468,41.604115276],[-71.363910479,41.604140662],[-71.363913236,41.604264092],[-71.363918978,41.604373781],[-71.363958121,41.604465809],[-71.364083323,41.604523291],[-71.364194504,41.604612042],[-71.364286392,41.604703903],[-71.364288479,41.604711247],[-71.364318545,41.604816551],[-71.364310863,41.604891234],[-71.364250179,41.604928759],[-71.364253478,41.604968351],[-71.364374711,41.605044901],[-71.364456528,41.605144411],[-71.364462293,41.60525792],[-71.364466039,41.605375222],[-71.364466767,41.605493298],[-71.364461349,41.605606839],[-71.364434633,41.605720423],[-71.364395755,41.605835594],[-71.364349718,41.605950048],[-71.364258931,41.606044781],[-71.364134555,41.606115324],[-71.364091203,41.606169565],[-71.364130169,41.606230352],[-71.364225129,41.606326036],[-71.364269352,41.606422621],[-71.364309639,41.606536787]]],[[[-71.32025641,41.629024461],[-71.320240941,41.629095652],[-71.320271729,41.629160558],[-71.320360214,41.629205475],[-71.320432379,41.629222168],[-71.320508221,41.629220594],[-71.320585932,41.629204661],[-71.320661958,41.629180836],[-71.320727641,41.629149149],[-71.320785479,41.629110865],[-71.320835559,41.629067308],[-71.320873457,41.629019776],[-71.320913299,41.628952647],[-71.320950439,41.62889265],[-71.320957962,41.628828627],[-71.320944602,41.628765807],[-71.320900568,41.62871785],[-71.320921727,41.628693732],[-71.320995582,41.628716328],[-71.321042468,41.628736183],[-71.321071289,41.628730465],[-71.321131064,41.628674528],[-71.321169984,41.628610005],[-71.321201922,41.628546066],[-71.321254022,41.628477036],[-71.321293702,41.628424269],[-71.321330838,41.628365598],[-71.321365355,41.628305619],[-71.321393777,41.628245654],[-71.321410888,41.62818622],[-71.321432317,41.628130749],[-71.321435564,41.62805883],[-71.321394321,41.627993245],[-71.32133386,41.627933439],[-71.321268149,41.627876208],[-71.321216277,41.627829543],[-71.321161693,41.627793919],[-71.321150768,41.627842911],[-71.321158956,41.627901835],[-71.32116536,41.627967229],[-71.321168342,41.628024133],[-71.321206084,41.628087746],[-71.321214311,41.628144018],[-71.321152173,41.628172462],[-71.321089994,41.62820484],[-71.321045875,41.628264758],[-71.321022609,41.628333947],[-71.320986447,41.628382168],[-71.320954741,41.628417315],[-71.320948553,41.628428397],[-71.320924183,41.628423031],[-71.32086973,41.628373068],[-71.320820305,41.628345364],[-71.32077649,41.628372625],[-71.320753143,41.628448972],[-71.320737801,41.628507746],[-71.320695332,41.628576883],[-71.320650447,41.628626988],[-71.320609881,41.628680371],[-71.320592847,41.628733287],[-71.320601933,41.62878757],[-71.320573607,41.628834523],[-71.320501179,41.628847217],[-71.320412345,41.628840217],[-71.320327876,41.62883128],[-71.320260127,41.628805469],[-71.320177111,41.628734398],[-71.320129735,41.628770138],[-71.320086504,41.62882809],[-71.320052033,41.628881528],[-71.320071481,41.628947033],[-71.32011374,41.628997572],[-71.320145063,41.629001669],[-71.32021854,41.628973952],[-71.32025641,41.629024461]]],[[[-71.318835526,41.628772016],[-71.318753406,41.628795122],[-71.318713772,41.62884137],[-71.318711792,41.628862933],[-71.318750086,41.628870312],[-71.318818662,41.628905318],[-71.31889163,41.6289286],[-71.318973264,41.628959717],[-71.319045243,41.628998663],[-71.319100683,41.629033626],[-71.319107223,41.629082051],[-71.319078178,41.62911329],[-71.319001217,41.629144249],[-71.318916562,41.629158226],[-71.318895354,41.629188174],[-71.31891319,41.629241259],[-71.318934036,41.629307568],[-71.318955591,41.629371568],[-71.318963922,41.629411511],[-71.318963349,41.62947495],[-71.318956592,41.629547481],[-71.318967444,41.62960179],[-71.318935595,41.629654591],[-71.318899393,41.629705442],[-71.318912782,41.629768239],[-71.318972806,41.62977707],[-71.319047145,41.629746702],[-71.319061368,41.629718023],[-71.319058104,41.62969707],[-71.319088091,41.629656021],[-71.31913132,41.629599395],[-71.319156188,41.629546537],[-71.319152353,41.629490273],[-71.319162407,41.629437369],[-71.319212986,41.629433697],[-71.319274278,41.629403263],[-71.319317429,41.629352492],[-71.319334836,41.629308199],[-71.319341529,41.629291148],[-71.319305361,41.629242608],[-71.319246419,41.629206313],[-71.319193435,41.629187088],[-71.319168518,41.629148377],[-71.319206455,41.629098215],[-71.319228522,41.629066301],[-71.31921081,41.629001484],[-71.319160673,41.628956101],[-71.319084294,41.628921059],[-71.319010543,41.628883414],[-71.318951688,41.628837995],[-71.318917411,41.628778343],[-71.31888792,41.628762471],[-71.318835526,41.628772016]]],[[[-71.31955385,41.629612638],[-71.319598148,41.629631826],[-71.319680049,41.629632892],[-71.319751446,41.629640437],[-71.319762569,41.629663392],[-71.319673513,41.629681251],[-71.319647101,41.629708561],[-71.319683436,41.629740818],[-71.319772228,41.629752392],[-71.319874989,41.629760763],[-71.319943637,41.629781362],[-71.319988074,41.629783558],[-71.32003477,41.6297295],[-71.320065733,41.629676697],[-71.320097277,41.629656621],[-71.320132183,41.629654846],[-71.320202286,41.629612693],[-71.32026008,41.629579623],[-71.320247529,41.629522018],[-71.320177586,41.629451722],[-71.320139158,41.629459346],[-71.320130669,41.629530594],[-71.320111052,41.62958083],[-71.320074397,41.629586536],[-71.320037384,41.629534679],[-71.319972438,41.629487283],[-71.319897827,41.629451581],[-71.319846769,41.629408164],[-71.319814736,41.629385107],[-71.319742397,41.629387372],[-71.319707565,41.62938455],[-71.319653151,41.629331316],[-71.319636266,41.629308672],[-71.319606658,41.629268947],[-71.319563762,41.629195537],[-71.319520749,41.629131207],[-71.319454953,41.629082506],[-71.319394892,41.629076305],[-71.319311931,41.629094859],[-71.319322039,41.629131512],[-71.319385204,41.629183479],[-71.319437028,41.629236069],[-71.319462705,41.629286559],[-71.319452555,41.629308384],[-71.319450255,41.629313274],[-71.319410793,41.629341867],[-71.319403244,41.629403946],[-71.31942709,41.629466166],[-71.319457046,41.629523203],[-71.319492282,41.629578305],[-71.31955385,41.629612638]]],[[[-71.338238116,41.632202282],[-71.338260639,41.63221615],[-71.338296314,41.632224159],[-71.338366281,41.632196402],[-71.338375383,41.63215262],[-71.338372444,41.632121125],[-71.338369801,41.632093083],[-71.338363966,41.632061675],[-71.338336921,41.632064153],[-71.338255909,41.632059831],[-71.338186823,41.632088915],[-71.338157845,41.632120823],[-71.338145435,41.632134481],[-71.338132176,41.632158635],[-71.338135351,41.632193287],[-71.338164849,41.632209154],[-71.338206803,41.632192976],[-71.338238116,41.632202282]]],[[[-71.337815942,41.632537594],[-71.337896101,41.632541915],[-71.337978724,41.632560624],[-71.338055164,41.632589776],[-71.338118434,41.632631304],[-71.338187804,41.632671515],[-71.338240576,41.63271822],[-71.338275879,41.632765449],[-71.338288527,41.632815208],[-71.338330214,41.632833059],[-71.338412981,41.632830866],[-71.338434986,41.632808073],[-71.338369119,41.632768531],[-71.338300593,41.632732232],[-71.338245235,41.63268358],[-71.338189881,41.632633601],[-71.338126647,41.632589465],[-71.338076501,41.632541506],[-71.338017665,41.632494129],[-71.337949189,41.632449986],[-71.3378805,41.632430015],[-71.337811927,41.63240028],[-71.337732066,41.63236193],[-71.337646012,41.632338001],[-71.337594043,41.632299804],[-71.337651096,41.632255632],[-71.337657283,41.632243863],[-71.337629475,41.632234585],[-71.337552141,41.632210005],[-71.337499142,41.632193396],[-71.337480435,41.632238422],[-71.337503425,41.632296726],[-71.337501429,41.632326819],[-71.337502048,41.632359523],[-71.33752327,41.632417825],[-71.337488465,41.632512432],[-71.337469674,41.632565966],[-71.337456124,41.632620833],[-71.337456924,41.632630005],[-71.33747436,41.632630053],[-71.337531041,41.632625147],[-71.337581746,41.632608364],[-71.337588052,41.632585504],[-71.337608286,41.632564058],[-71.337666828,41.632546005],[-71.337730566,41.632534546],[-71.337815942,41.632537594]]],[[[-71.259920948,41.636189213],[-71.25987646,41.636225025],[-71.259874209,41.636281027],[-71.259870441,41.636294192],[-71.259853796,41.636302413],[-71.259860078,41.636326645],[-71.259872955,41.636331543],[-71.259955041,41.636333956],[-71.26001327,41.63631688],[-71.26002349,41.636306564],[-71.260026632,41.636248437],[-71.260026773,41.636226985],[-71.260025145,41.636197206],[-71.259999364,41.636186747],[-71.259920948,41.636189213]]],[[[-71.287856246,41.644044775],[-71.287859204,41.644100376],[-71.287866495,41.644164309],[-71.287864567,41.644231496],[-71.287857289,41.644293824],[-71.287827144,41.644356454],[-71.287791955,41.644404575],[-71.287769842,41.644537313],[-71.287766015,41.644607218],[-71.287756026,41.644668787],[-71.287736995,41.644726131],[-71.287706311,41.644776387],[-71.287678205,41.644830833],[-71.287686303,41.644899547],[-71.287693866,41.644954539],[-71.287694041,41.645012857],[-71.287691842,41.645088253],[-71.287689205,41.645148577],[-71.287668014,41.645185975],[-71.287599709,41.645207506],[-71.287529745,41.645223523],[-71.287483563,41.645239263],[-71.287501408,41.645255305],[-71.287568909,41.645292752],[-71.287637963,41.645340517],[-71.287689636,41.645388684],[-71.287723015,41.645437274],[-71.287741001,41.645447164],[-71.287816831,41.645418169],[-71.287877525,41.645374577],[-71.287917594,41.645316929],[-71.287933778,41.645262987],[-71.287945596,41.645201467],[-71.287953548,41.645147373],[-71.287973667,41.645083239],[-71.287976199,41.645027007],[-71.28796159,41.644963655],[-71.287967852,41.644904092],[-71.287990919,41.644833788],[-71.287991745,41.644814191],[-71.287998131,41.644772855],[-71.287992464,41.644715808],[-71.287983141,41.644658069],[-71.287983881,41.644599753],[-71.287992038,41.644538821],[-71.288005478,41.644484851],[-71.288025457,41.64442616],[-71.288033409,41.644372111],[-71.288010262,41.644318211],[-71.287979091,41.644256658],[-71.28796882,41.644199557],[-71.287964948,41.644143931],[-71.287949323,41.644083299],[-71.287934771,41.644048808],[-71.287886916,41.644026742],[-71.287856246,41.644044775]]],[[[-71.283865477,41.646293519],[-71.28392141,41.646288913],[-71.283949993,41.646248214],[-71.283943518,41.646187758],[-71.283964453,41.646127033],[-71.284018818,41.646080596],[-71.284059027,41.646018833],[-71.28402494,41.645964065],[-71.283990649,41.645915495],[-71.283970213,41.64586304],[-71.283936234,41.64580347],[-71.283886254,41.64576013],[-71.283812993,41.64573152],[-71.283744234,41.645705708],[-71.283681097,41.645676568],[-71.283616482,41.645633681],[-71.283556336,41.645594278],[-71.283498229,41.645547378],[-71.283464107,41.645494005],[-71.283423861,41.645494044],[-71.283414371,41.645505552],[-71.283374331,41.645562513],[-71.283354382,41.645619809],[-71.28334713,41.645682114],[-71.283368445,41.645735966],[-71.2834152,41.645795057],[-71.283452672,41.645858773],[-71.283485945,41.645910749],[-71.283521931,41.645962776],[-71.283553409,41.646013377],[-71.283569164,41.646070557],[-71.283582682,41.646140059],[-71.2836022,41.646193199],[-71.283651939,41.646244794],[-71.283722731,41.646264458],[-71.283802309,41.646264333],[-71.283865477,41.646293519]]],[[[-71.285531971,41.646192836],[-71.285529903,41.646264825],[-71.285526454,41.646321032],[-71.285459252,41.646367994],[-71.285413327,41.646407038],[-71.285439753,41.646474003],[-71.285441581,41.646538498],[-71.285405947,41.646600339],[-71.285386466,41.646673416],[-71.285366687,41.646725933],[-71.285345015,41.64677911],[-71.285322424,41.646833611],[-71.285296783,41.646897666],[-71.285276936,41.646952241],[-71.285272329,41.647017318],[-71.285303637,41.64707407],[-71.285342266,41.647129578],[-71.285376353,41.647185008],[-71.285411319,41.647241835],[-71.285483049,41.64729171],[-71.285544215,41.64732766],[-71.285604538,41.647360201],[-71.285668377,41.647398947],[-71.285723847,41.647442388],[-71.285780164,41.647487888],[-71.285848549,41.647526048],[-71.28591731,41.647551835],[-71.285990006,41.647568093],[-71.28607043,41.647570804],[-71.286141953,41.647563711],[-71.286220926,41.647553361],[-71.2862911,41.647529776],[-71.286358704,41.647499988],[-71.286430202,41.647463416],[-71.28648812,41.647421123],[-71.28653415,41.647377963],[-71.286581536,41.647321106],[-71.286629774,41.647264937],[-71.286672624,41.647205945],[-71.286706393,41.64714545],[-71.286739214,41.647085593],[-71.286765705,41.647022248],[-71.286786634,41.646962918],[-71.286804009,41.646899373],[-71.286815728,41.646840575],[-71.286812097,41.646776717],[-71.286801963,41.6467155],[-71.286791833,41.646652933],[-71.286784544,41.646589],[-71.28678095,41.646523107],[-71.286787454,41.646455265],[-71.286796667,41.646388893],[-71.286799406,41.646325801],[-71.286785574,41.646267275],[-71.286801969,41.646205124],[-71.286834654,41.646149383],[-71.286862832,41.646092216],[-71.286840567,41.646039027],[-71.286825654,41.645984593],[-71.28684106,41.645926533],[-71.286869137,41.645872133],[-71.286888102,41.645816184],[-71.286862487,41.645752651],[-71.286818024,41.645709414],[-71.286747956,41.645664346],[-71.286698178,41.645614879],[-71.286654599,41.645571643],[-71.286588483,41.645548606],[-71.28649427,41.64554914],[-71.286421697,41.645560988],[-71.28635008,41.645569454],[-71.286277829,41.645539475],[-71.286222533,41.64548986],[-71.28615869,41.64545251],[-71.286080547,41.645434069],[-71.285996705,41.645423805],[-71.28593273,41.645389839],[-71.285863023,41.645364713],[-71.285800096,41.645327342],[-71.285738623,41.645301636],[-71.285688623,41.645291938],[-71.285631691,41.645331441],[-71.285618904,41.645362794],[-71.285629951,41.645424059],[-71.285645607,41.645483983],[-71.285671253,41.64554683],[-71.285694366,41.645601371],[-71.285717133,41.645668284],[-71.285732614,41.645735068],[-71.285744719,41.645790183],[-71.285748382,41.645853332],[-71.285698057,41.645886148],[-71.285625238,41.6459076],[-71.285578058,41.645957596],[-71.285602602,41.645994348],[-71.285691055,41.646002631],[-71.285760759,41.646028466],[-71.285807894,41.646075208],[-71.285820911,41.646130964],[-71.285739504,41.646131019],[-71.285649259,41.646120673],[-71.285565778,41.64613026],[-71.285531971,41.646192836]]],[[[-71.281192759,41.648116182],[-71.28126169,41.648136484],[-71.281339408,41.64813709],[-71.281398243,41.648095488],[-71.281428361,41.648034255],[-71.281433967,41.648026307],[-71.281467422,41.647979306],[-71.281483852,41.647917132],[-71.281498217,41.647861793],[-71.281520031,41.647803838],[-71.281538964,41.647749948],[-71.281564338,41.647694103],[-71.281610851,41.647635189],[-71.281661423,41.647593479],[-71.281706951,41.647537284],[-71.281728872,41.647474527],[-71.281753293,41.647420739],[-71.28178538,41.647354021],[-71.281800753,41.64729802],[-71.281802517,41.647236322],[-71.28178124,41.647180412],[-71.281796721,41.647119586],[-71.281826838,41.64705833],[-71.281840183,41.647007105],[-71.281794068,41.646956957],[-71.281771167,41.646894869],[-71.281779403,41.646830507],[-71.281811485,41.646765184],[-71.281847728,41.646713614],[-71.281884388,41.646646997],[-71.281899697,41.646591659],[-71.281893091,41.646534633],[-71.281905862,41.646472384],[-71.281863409,41.646421648],[-71.281828507,41.646364797],[-71.281841246,41.64630328],[-71.281898287,41.646259616],[-71.281914061,41.646220105],[-71.281872764,41.646161115],[-71.281857282,41.646095702],[-71.281854404,41.646035962],[-71.281851936,41.645963209],[-71.28185085,41.645905576],[-71.281846485,41.645834833],[-71.281833785,41.64576739],[-71.281829007,41.645710414],[-71.281836429,41.645643283],[-71.281854653,41.645582531],[-71.28188575,41.645519905],[-71.281913901,41.645462739],[-71.281892829,41.645400655],[-71.281892728,41.645340279],[-71.281927178,41.64528667],[-71.281982595,41.645236097],[-71.282048814,41.645191879],[-71.282039669,41.645127941],[-71.282038824,41.645062099],[-71.282088617,41.645015585],[-71.282170296,41.645006593],[-71.282243646,41.644999573],[-71.282293401,41.644955072],[-71.282338721,41.644905737],[-71.28238791,41.644848223],[-71.282437027,41.644794115],[-71.282468763,41.644740432],[-71.282494375,41.644676401],[-71.282523544,41.644615783],[-71.282553348,41.644565504],[-71.282593627,41.64450102],[-71.282628069,41.644449401],[-71.282656049,41.644397746],[-71.282681727,41.644332274],[-71.282708148,41.644272383],[-71.282712415,41.644218236],[-71.282753403,41.644160591],[-71.282795272,41.644103657],[-71.282844074,41.644061235],[-71.282904496,41.644026519],[-71.282955027,41.643986868],[-71.28300014,41.64394437],[-71.283047321,41.643894375],[-71.28307533,41.643842675],[-71.283084547,41.643776279],[-71.283111711,41.643721833],[-71.283150663,41.643671045],[-71.283208956,41.643616405],[-71.283267896,41.643569314],[-71.283334682,41.643536805],[-71.283414673,41.643521657],[-71.283489069,41.643511185],[-71.283573492,41.643501579],[-71.283650533,41.643493217],[-71.283724775,41.643455988],[-71.283775545,41.643408103],[-71.283802073,41.643343364],[-71.28382385,41.643286095],[-71.283878643,41.64325681],[-71.283955839,41.643275205],[-71.284033773,41.643300462],[-71.284114054,41.643307954],[-71.284193476,41.643280386],[-71.28425938,41.643247189],[-71.284320716,41.643212519],[-71.284385464,41.643187485],[-71.284455773,41.643159121],[-71.284524147,41.643134848],[-71.284592518,41.64311126],[-71.284654939,41.643071104],[-71.284712146,41.643021951],[-71.284753947,41.642966365],[-71.284798622,41.642908109],[-71.284844957,41.642855322],[-71.284891122,41.642807359],[-71.284933969,41.642749054],[-71.284967667,41.642691303],[-71.285007463,41.642642574],[-71.285069036,41.642600335],[-71.285130677,41.642556061],[-71.285174099,41.642508048],[-71.285207591,41.642457158],[-71.285232926,41.642401975],[-71.285264451,41.642355838],[-71.285334829,41.64232473],[-71.28542346,41.642295989],[-71.285508831,41.642285011],[-71.285595415,41.642294663],[-71.285684066,41.642296772],[-71.285779016,41.642302438],[-71.285858346,41.64231123],[-71.285930086,41.642328882],[-71.286010771,41.642352153],[-71.286077662,41.642379309],[-71.286148987,41.642412008],[-71.286220174,41.642449486],[-71.286283978,41.642488277],[-71.286358858,41.642524458],[-71.286424595,41.642559799],[-71.286493852,41.642600041],[-71.286567821,41.642635511],[-71.286636502,41.642665437],[-71.286714304,41.642694123],[-71.2867838,41.642726818],[-71.286857804,41.642760916],[-71.286930962,41.642792291],[-71.28699792,41.642818075],[-71.28707586,41.642841958],[-71.287145529,41.642868478],[-71.287217909,41.642895712],[-71.28729388,41.64292508],[-71.287362499,41.642955669],[-71.287439208,41.642992562],[-71.287508466,41.643032803],[-71.287580606,41.643068269],[-71.287650035,41.643102999],[-71.287708386,41.643141024],[-71.287765788,41.643180328],[-71.287824811,41.643227251],[-71.287886548,41.643274201],[-71.287929294,41.643283131],[-71.287985142,41.643247695],[-71.288021719,41.643185169],[-71.288043805,41.643116212],[-71.288058502,41.643050604],[-71.288059583,41.642981335],[-71.288043998,41.642917981],[-71.288016551,41.642855085],[-71.287948312,41.642810776],[-71.287875589,41.642795205],[-71.28779924,41.642778872],[-71.287715541,41.642763144],[-71.287641021,41.642746814],[-71.287554818,41.642723488],[-71.287476033,41.642696837],[-71.287390879,41.642669397],[-71.287312032,41.642643431],[-71.287229554,41.642618076],[-71.287147961,41.642592746],[-71.287067315,41.642566732],[-71.286981146,41.642542033],[-71.286902297,41.642516731],[-71.286817216,41.642485859],[-71.286740399,41.642454454],[-71.286657218,41.642420865],[-71.28658037,41.642389437],[-71.286501727,41.642357319],[-71.286424098,41.642322437],[-71.286355693,41.642282928],[-71.286280913,41.64224398],[-71.286219918,41.642203891],[-71.286159068,41.642156941],[-71.286100047,41.642110041],[-71.286045596,41.64206388],[-71.285987595,41.642012865],[-71.285933212,41.641964647],[-71.285885201,41.641916555],[-71.285840072,41.641863711],[-71.285793925,41.64181425],[-71.285755198,41.641761464],[-71.2857247,41.641709562],[-71.285682658,41.64164506],[-71.285654908,41.641591769],[-71.285625257,41.641541927],[-71.285598452,41.64148866],[-71.285595431,41.641434408],[-71.285614703,41.641368854],[-71.285602982,41.641299378],[-71.285566395,41.641235687],[-71.285528515,41.641185007],[-71.285494259,41.641135728],[-71.28546007,41.641084437],[-71.285436182,41.641025046],[-71.285418565,41.640968526],[-71.28540579,41.640904513],[-71.285392066,41.640841848],[-71.285377499,41.640775751],[-71.285358324,41.640710972],[-71.285336408,41.640645456],[-71.28531913,41.640578646],[-71.285305511,41.640511864],[-71.28530829,41.640446051],[-71.285287319,41.640380537],[-71.285254497,41.640312805],[-71.285221635,41.640247749],[-71.285199787,41.640180198],[-71.285185181,41.640116822],[-71.285170682,41.64004869],[-71.285167937,41.639984856],[-71.285177186,41.639917066],[-71.285188161,41.639852755],[-71.285194732,41.639783587],[-71.285202999,41.639717876],[-71.285212311,41.639649422],[-71.285226977,41.639584524],[-71.285240798,41.639516833],[-71.285257263,41.639451892],[-71.285266578,41.639382752],[-71.285278535,41.639316408],[-71.285290626,41.639246656],[-71.285301636,41.63918095],[-71.285310915,41.639113182],[-71.285315519,41.63904879],[-71.285320092,41.638984376],[-71.285323643,41.638924762],[-71.285324419,41.63886576],[-71.285325126,41.63880884],[-71.285325866,41.63875121],[-71.285331143,41.638695053],[-71.285341133,41.638633507],[-71.285347669,41.638565666],[-71.285348617,41.638500513],[-71.285345196,41.638429108],[-71.285339534,41.638371398],[-71.285321377,41.638303213],[-71.28530203,41.638244608],[-71.285283874,41.638176378],[-71.285272589,41.638122705],[-71.28526991,41.638057477],[-71.285288269,41.637991213],[-71.285328337,41.637932902],[-71.285357224,41.637881888],[-71.285394685,41.63781941],[-71.285433163,41.637753458],[-71.285464224,41.637690168],[-71.285487155,41.637624004],[-71.285509169,41.637558478],[-71.285525766,41.637490153],[-71.285537375,41.637436866],[-71.285551301,41.637365059],[-71.285559422,41.637306162],[-71.285556885,41.637234828],[-71.285526634,41.637173253],[-71.285465408,41.637140024],[-71.285393669,41.637123927],[-71.285309802,41.637078672],[-71.285223907,41.637075058],[-71.285132553,41.637108551],[-71.285053625,41.637118283],[-71.284990574,41.637148124],[-71.284963311,41.637206001],[-71.284942622,41.637257785],[-71.284901571,41.637318198],[-71.284865336,41.637369746],[-71.284833603,41.637424116],[-71.284799229,41.637475005],[-71.284761939,41.637531994],[-71.28472574,41.637581507],[-71.284687671,41.637634378],[-71.284646827,41.637687245],[-71.284597047,41.63773241],[-71.2845455,41.63777684],[-71.28446764,41.637813331],[-71.284395822,41.637830005],[-71.284304726,41.637849776],[-71.284229453,41.637860224],[-71.284135185,41.637862174],[-71.284059241,41.637863677],[-71.283968697,41.637864262],[-71.283890923,41.63786574],[-71.283813115,41.637868612],[-71.283732668,41.637867272],[-71.283658655,41.637865394],[-71.283567335,41.637861174],[-71.28349241,41.637858609],[-71.28340566,41.63785513],[-71.283317759,41.637858532],[-71.283243973,41.637879958],[-71.283179863,41.637915994],[-71.283110409,41.63794573],[-71.283027543,41.637965676],[-71.282957623,41.637979609],[-71.282888941,41.638015521],[-71.282831166,41.638053032],[-71.282746231,41.638081139],[-71.282653478,41.638094753],[-71.282571805,41.638104387],[-71.282493788,41.638114782],[-71.282409371,41.638124388],[-71.282326781,41.638134751],[-71.282239586,41.638145678],[-71.282152529,41.638151825],[-71.282068351,41.638153861],[-71.281983191,41.638157976],[-71.281901553,41.638166237],[-71.28181439,41.6381765],[-71.281736269,41.638190325],[-71.281648157,41.638201958],[-71.281570107,41.638213039],[-71.281488363,41.638225416],[-71.281412037,41.638240639],[-71.281341199,41.638255301],[-71.281263116,41.638267044],[-71.281183975,41.638284983],[-71.281108809,41.638290626],[-71.281036693,41.638286715],[-71.280960215,41.638274518],[-71.280888308,41.63826306],[-71.280810154,41.638277548],[-71.280739314,41.638292849],[-71.280652018,41.638306542],[-71.280578035,41.638304662],[-71.280499454,41.638301356],[-71.280417384,41.63829315],[-71.28033355,41.638283544],[-71.280253276,41.638276073],[-71.280163958,41.638265725],[-71.280085581,41.638256222],[-71.279998089,41.638246563],[-71.279921577,41.638235714],[-71.279835175,41.63821922],[-71.27975155,41.638202068],[-71.279665961,41.638189028],[-71.279583082,41.638176703],[-71.279502057,41.638165799],[-71.279419178,41.638153473],[-71.27933992,41.638143304],[-71.279252466,41.638131565],[-71.279173313,41.638117256],[-71.279084098,41.638103455],[-71.279007689,41.63808922],[-71.278921253,41.638074098],[-71.278842063,41.638061802],[-71.278756302,41.63805425],[-71.278671453,41.638047409],[-71.278589384,41.6380392],[-71.278504674,41.638027534],[-71.278424642,41.638011806],[-71.278335427,41.637998026],[-71.27825817,41.637982349],[-71.278170892,41.637963794],[-71.278095498,41.637946793],[-71.278010078,41.637928973],[-71.277929233,41.637910476],[-71.277840903,41.637896698],[-71.27775707,41.637887137],[-71.27767595,41.63787758],[-71.277592157,41.637865229],[-71.277513036,41.63785092],[-71.277427482,41.637836506],[-71.277351106,41.637821562],[-71.277264673,41.637805706],[-71.277189179,41.637791449],[-71.277105452,41.637777748],[-71.277028162,41.637762779],[-71.276950875,41.637747101],[-71.276867997,41.637734796],[-71.276795244,41.637721276],[-71.276713381,41.637706252],[-71.276638697,41.637696113],[-71.276558527,41.637685209],[-71.276482893,41.637676417],[-71.276405222,41.637674482],[-71.276323584,41.637682762],[-71.276250101,41.637695266],[-71.27617093,41.637713179],[-71.276106959,41.637743036],[-71.276043798,41.637776966],[-71.275969834,41.637805271],[-71.275902412,41.637828192],[-71.275827812,41.637846182],[-71.275754193,41.637862824],[-71.275679868,41.637871919],[-71.27559661,41.637872625],[-71.275519887,41.637870006],[-71.275437752,41.63786319],[-71.275365846,41.637851752],[-71.275287606,41.637838129],[-71.275210352,41.637821764],[-71.275138587,41.637804814],[-71.275059574,41.637785701],[-71.274973311,41.637765064],[-71.274897644,41.637757003],[-71.27481297,41.637743962],[-71.274737512,41.637728308],[-71.274663069,41.637709959],[-71.274589438,41.637695041],[-71.274508389,41.637682761],[-71.274435567,41.637671984],[-71.274354481,41.637661739],[-71.274263338,41.637650651],[-71.274187978,41.637632963],[-71.274114422,41.637613928],[-71.274043603,41.637597026],[-71.273967264,41.637580684],[-71.273881039,41.637558011],[-71.273807443,41.637541697],[-71.273721044,41.637525221],[-71.2736274,41.637505827],[-71.273543916,41.637483914],[-71.273494303,41.637470483],[-71.273454984,41.637459817],[-71.273371573,41.63743445],[-71.273281829,41.637406945],[-71.273195736,41.63738155],[-71.273110391,41.63736025],[-71.273034259,41.637337047],[-71.272964637,41.637309169],[-71.272895046,41.637281291],[-71.272822716,41.637251967],[-71.272737543,41.637225201],[-71.272671405,41.637203551],[-71.272607202,41.637177787],[-71.27252572,41.637150411],[-71.272454873,41.637132799],[-71.272392405,41.63714276],[-71.272370653,41.637199342],[-71.272354249,41.637260805],[-71.272344001,41.637331291],[-71.272338505,41.637394354],[-71.272339684,41.637449243],[-71.272344074,41.637518592],[-71.272351656,41.637572922],[-71.272363743,41.637629365],[-71.272378162,41.63769887],[-71.272388352,41.637757345],[-71.272404664,41.637826214],[-71.272419461,41.637883394],[-71.272440413,41.637950283],[-71.272458025,41.63800477],[-71.27247472,41.638059941],[-71.272486739,41.638118419],[-71.272499706,41.638176281],[-71.272513723,41.638229983],[-71.272530037,41.638298189],[-71.272545575,41.638361546],[-71.272575645,41.638427881],[-71.272618088,41.63847798],[-71.27266816,41.638517186],[-71.272713347,41.638567313],[-71.272762432,41.63860997],[-71.272822706,41.638643867],[-71.272895919,41.63867388],[-71.272972929,41.638699142],[-71.273052617,41.638725828],[-71.273121606,41.638743391],[-71.273201706,41.638757065],[-71.273291266,41.638759185],[-71.273376465,41.638753018],[-71.273458416,41.63873445],[-71.273489941,41.638716056],[-71.273528157,41.638693765],[-71.273587336,41.638639842],[-71.273646101,41.638599639],[-71.273695961,41.63855178],[-71.273751378,41.638501187],[-71.273811267,41.638453462],[-71.273869011,41.638417351],[-71.273929325,41.638387488],[-71.273994919,41.638364518],[-71.274066675,41.638349223],[-71.274137514,41.638334588],[-71.274210996,41.638322749],[-71.274290841,41.638313072],[-71.274368046,41.638299914],[-71.274444234,41.638290206],[-71.274528341,41.638290875],[-71.27460337,41.638290038],[-71.274675556,41.638291209],[-71.274717624,41.638291909],[-71.274791465,41.638299257],[-71.274866049,41.638312165],[-71.274946993,41.638328538],[-71.275022492,41.638341424],[-71.27509457,41.638347396],[-71.275169565,41.638347269],[-71.275225147,41.63835433],[-71.275259326,41.63840567],[-71.275254919,41.6384632],[-71.275253081,41.63852698],[-71.275259717,41.638582634],[-71.275272653,41.638641159],[-71.275286536,41.638699046],[-71.275301198,41.638760982],[-71.275316911,41.638818872],[-71.27533347,41.638878822],[-71.275352843,41.638936079],[-71.275373131,41.638993338],[-71.275395144,41.6390541],[-71.275423734,41.639108722],[-71.275460448,41.639167637],[-71.275502858,41.639219107],[-71.275550895,41.639265831],[-71.275608991,41.639312736],[-71.275672714,41.63935494],[-71.275733624,41.639399128],[-71.275800093,41.639440697],[-71.275870217,41.639482982],[-71.275924552,41.639533263],[-71.275969432,41.639593657],[-71.276007911,41.63965397],[-71.276042522,41.6397218],[-71.276063481,41.639787956],[-71.276072445,41.639858091],[-71.276072508,41.63991913],[-71.27607345,41.639981588],[-71.276094583,41.640041638],[-71.276135768,41.640104015],[-71.27616629,41.640155279],[-71.276186368,41.640220793],[-71.276196531,41.640279244],[-71.276211088,41.640345342],[-71.276225077,41.640399753],[-71.276240654,41.640461759],[-71.276246273,41.640520842],[-71.276254776,41.64057451],[-71.27626307,41.640635679],[-71.276281699,41.640688109],[-71.276302127,41.640740611],[-71.27632875,41.640800009],[-71.276359906,41.640862274],[-71.276399232,41.640924647],[-71.276443427,41.640980603],[-71.276485775,41.641041906],[-71.276536513,41.641101511],[-71.276564571,41.641178087],[-71.276569962,41.641250319],[-71.276575485,41.641292844],[-71.276586011,41.641361221],[-71.276605988,41.641429479],[-71.276622207,41.641500406],[-71.276628461,41.641569781],[-71.276635133,41.641624108],[-71.276641674,41.641681089],[-71.276645184,41.641750436],[-71.276649612,41.641819121],[-71.276653474,41.641874747],[-71.27665181,41.64193306],[-71.27665177,41.641997506],[-71.276654645,41.642056561],[-71.276655659,41.642116252],[-71.276657446,41.642181456],[-71.276661946,41.642246711],[-71.2766701,41.642313391],[-71.276680929,41.642382157],[-71.276689051,41.642449501],[-71.276697554,41.642503169],[-71.276713032,41.642567919],[-71.276721463,41.642624972],[-71.276730534,41.642690991],[-71.276742661,41.642746061],[-71.276758134,41.64281216],[-71.276776212,41.642883113],[-71.276796225,41.642949977],[-71.27681156,41.643020879],[-71.276820629,41.643087583],[-71.276828612,41.643159729],[-71.276828607,41.643222848],[-71.276822088,41.643274452],[-71.276826357,41.643318255],[-71.276829368,41.64339995],[-71.276781492,41.643473405],[-71.276726253,41.64351611],[-71.276645618,41.643522882],[-71.276288617,41.643553656],[-71.276288403,41.6436243],[-71.276503867,41.643605851],[-71.276544993,41.643606503],[-71.276554739,41.643609495],[-71.276560076,41.643626772],[-71.276594585,41.643662881],[-71.276655606,41.643702975],[-71.27670755,41.643740856],[-71.27676006,41.643791088],[-71.276819076,41.643838016],[-71.276877248,41.643882176],[-71.276934644,41.643921531],[-71.276991828,41.643969096],[-71.277043356,41.644021407],[-71.277083703,41.644080351],[-71.27712032,41.644142032],[-71.277146026,41.6442028],[-71.277160414,41.644274386],[-71.277173074,41.644343179],[-71.277180558,41.644400916],[-71.277184955,41.644469624],[-71.277181565,41.644524412],[-71.277171428,41.644590805],[-71.277165901,41.644655195],[-71.277166066,41.644713512],[-71.277182835,41.644766624],[-71.277220029,41.644793682],[-71.277259401,41.644870256],[-71.277259108,41.644955239],[-71.277250711,41.645011915],[-71.277247856,41.645079809],[-71.277233351,41.645139264],[-71.277222405,41.645201493],[-71.277267426,41.645257794],[-71.277325882,41.645299621],[-71.277395908,41.645346135],[-71.277444553,41.645403837],[-71.277511942,41.645516691],[-71.277522489,41.645552754],[-71.277551925,41.64561083],[-71.277558802,41.645650087],[-71.277578955,41.645712171],[-71.277587355,41.645769932],[-71.277590299,41.645826929],[-71.277590293,41.645890711],[-71.277614382,41.645943266],[-71.277652397,41.645989124],[-71.277687391,41.646044581],[-71.277718626,41.646102707],[-71.27774979,41.646163577],[-71.277790915,41.646227348],[-71.277831258,41.646287686],[-71.27788726,41.64635208],[-71.277916765,41.646398951],[-71.277954368,41.646458553],[-71.277974658,41.646516406],[-71.278009894,41.64656363],[-71.278019176,41.646622079],[-71.278033099,41.646678548],[-71.278044137,41.646740499],[-71.278071749,41.646797177],[-71.278103158,41.646849151],[-71.278145505,41.646903365],[-71.278173289,41.646954577],[-71.278210854,41.647016214],[-71.278253413,41.647062172],[-71.278292344,41.6471081],[-71.278334902,41.647154058],[-71.278390194,41.647203654],[-71.278438946,41.647257263],[-71.278496205,41.647302128],[-71.27855811,41.647343573],[-71.278604999,41.647398527],[-71.278637422,41.647448467],[-71.278687162,41.647498647],[-71.278759408,41.647530003],[-71.278839107,41.647557348],[-71.278910954,41.64757155],[-71.278981889,41.647585065],[-71.279065418,41.647606998],[-71.279140476,41.647636323],[-71.279203397,41.64767507],[-71.279269168,41.647709752],[-71.279324774,41.647747731],[-71.279348692,41.647806391],[-71.279396843,41.64784902],[-71.279468411,41.647873514],[-71.279559781,41.647876387],[-71.279643589,41.647888028],[-71.279717264,41.647902943],[-71.27979524,41.647926145],[-71.279863117,41.647951271],[-71.279918311,41.647940514],[-71.279990011,41.647926587],[-71.280069558,41.64792715],[-71.280166551,41.647925987],[-71.280254365,41.647925354],[-71.280330219,41.64792726],[-71.28042138,41.647937657],[-71.280515006,41.647958395],[-71.280603252,41.647974206],[-71.280698175,41.647981271],[-71.280781137,41.647990852],[-71.280850103,41.648009782],[-71.280871546,41.648025237],[-71.280905643,41.648049795],[-71.280955725,41.648089706],[-71.281038207,41.648115042],[-71.281117147,41.648106045],[-71.281192759,41.648116182]]],[[[-71.357204997,41.660478756],[-71.357366688,41.660534095],[-71.357500384,41.660589444],[-71.357656913,41.660634645],[-71.357792708,41.66067831],[-71.357947161,41.660725109],[-71.358115059,41.660773456],[-71.358258137,41.660806222],[-71.358420848,41.660856163],[-71.358579462,41.6608967],[-71.358742248,41.660926401],[-71.358906051,41.660951439],[-71.359065736,41.660990467],[-71.35921297,41.66100613],[-71.35937265,41.661019475],[-71.359540643,41.661025055],[-71.359704426,41.661045403],[-71.359870323,41.66106111],[-71.360015473,41.661095408],[-71.360176185,41.661125906],[-71.360336892,41.661144694],[-71.360503858,41.661145605],[-71.360663568,41.661145708],[-71.360824315,41.661145834],[-71.360985053,41.661135874],[-71.361102284,41.661106423],[-71.361178121,41.661010852],[-71.361241535,41.66090589],[-71.361311153,41.660808734],[-71.361411884,41.660722501],[-71.361508432,41.660638572],[-71.361648491,41.660586599],[-71.361799979,41.660537726],[-71.361943117,41.66051448],[-71.362092485,41.660501395],[-71.362267751,41.660499227],[-71.362415004,41.660491536],[-71.362574729,41.660483883],[-71.362739611,41.660474681],[-71.362898255,41.66047327],[-71.363061104,41.660473395],[-71.363220782,41.660473517],[-71.363393947,41.660484517],[-71.363551536,41.66050643],[-71.363713314,41.660522882],[-71.363872963,41.660550995],[-71.364033671,41.660583774],[-71.364203709,41.66060259],[-71.364362362,41.660626058],[-71.364511643,41.660654158],[-71.364667179,41.660666759],[-71.364819613,41.660674623],[-71.364975128,41.660682535],[-71.364991737,41.660687975],[-71.365005197,41.660697321],[-71.365157638,41.660702097],[-71.365307994,41.660712313],[-71.365455225,41.660729546],[-71.365612821,41.660748323],[-71.365761126,41.660762424],[-71.365922888,41.660772675],[-71.366077405,41.660776697],[-71.366235043,41.660775257],[-71.366395765,41.660772265],[-71.36655758,41.660756833],[-71.36671214,41.660725064],[-71.36683873,41.660666071],[-71.366949813,41.660584487],[-71.367031858,41.660490452],[-71.367066216,41.660392474],[-71.367022714,41.660355101],[-71.366866122,41.660337104],[-71.366735562,41.660266241],[-71.366640247,41.66018451],[-71.366542912,41.66007714],[-71.366463207,41.659968189],[-71.366393877,41.659870937],[-71.366340086,41.659751131],[-71.366317462,41.659631338],[-71.366316184,41.65960028],[-71.36631244,41.659508455],[-71.366303279,41.659381725],[-71.366286823,41.659272848],[-71.366257956,41.659149183],[-71.366218712,41.659029371],[-71.366161808,41.658925889],[-71.366080007,41.658828645],[-71.36597852,41.658725112],[-71.365884314,41.658639493],[-71.365778631,41.658559327],[-71.365669859,41.658469026],[-71.365626375,41.658423877],[-71.365615041,41.658374878],[-71.365547654,41.658356961],[-71.365453401,41.658265122],[-71.365351899,41.658169363],[-71.365257659,41.658072104],[-71.365184184,41.657975601],[-71.365115881,41.657870573],[-71.365047603,41.657767855],[-71.364974111,41.657665177],[-71.364889208,41.65756555],[-71.3647877,41.657488475],[-71.364692408,41.657398967],[-71.364611643,41.657304033],[-71.364544379,41.657198983],[-71.364485423,41.657086945],[-71.364424388,41.656978038],[-71.364371708,41.656869118],[-71.364345935,41.656813652],[-71.364318947,41.656755532],[-71.364275542,41.656645068],[-71.364234198,41.656540072],[-71.364214696,41.656417149],[-71.364216927,41.65629894],[-71.36423055,41.656186233],[-71.36423898,41.656078117],[-71.364216342,41.655952903],[-71.364187456,41.655840901],[-71.364150307,41.655728111],[-71.364116211,41.655613747],[-71.364078034,41.655497068],[-71.364041897,41.65538197],[-71.364008894,41.655269939],[-71.363964463,41.655154831],[-71.363914824,41.655036561],[-71.363856906,41.654926102],[-71.363787582,41.65483038],[-71.363718254,41.65472224],[-71.363664459,41.654608676],[-71.36361594,41.654495072],[-71.363570439,41.654381517],[-71.363517717,41.654265576],[-71.363471209,41.654152797],[-71.363415359,41.654045405],[-71.363363685,41.653938841],[-71.363311979,41.653833032],[-71.363278946,41.653721779],[-71.363260448,41.653601235],[-71.363241922,41.653493887],[-71.363223469,41.653366346],[-71.363206022,41.653238806],[-71.363190644,41.6531136],[-71.363172151,41.652990701],[-71.363146356,41.652874815],[-71.363109209,41.652762779],[-71.363064771,41.652652336],[-71.363030726,41.652530196],[-71.363004951,41.652404978],[-71.362971978,41.652280529],[-71.362933779,41.652161495],[-71.362881057,41.652047154],[-71.362846992,41.651934367],[-71.36279842,41.65181843],[-71.362709361,41.651728173],[-71.36264212,41.651630897],[-71.362576926,41.651531315],[-71.362512782,41.651425513],[-71.362449703,41.651321245],[-71.36240217,41.651204554],[-71.362372246,41.651095637],[-71.362336096,41.651003088],[-71.362223185,41.650917489],[-71.362107165,41.650831041],[-71.36198908,41.650755499],[-71.36184709,41.650693947],[-71.361706164,41.650633952],[-71.361582897,41.650572422],[-71.361462709,41.650510896],[-71.361338408,41.650433813],[-71.361218213,41.650361378],[-71.361064803,41.650322406],[-71.360912434,41.650295831],[-71.360767353,41.650240471],[-71.36065025,41.650177393],[-71.360566427,41.650079342],[-71.360474287,41.649992166],[-71.360403768,41.649988993],[-71.360295849,41.650064354],[-71.360170309,41.650124142],[-71.360038518,41.650197918],[-71.359967856,41.650274833],[-71.359897198,41.650377431],[-71.359794418,41.650473014],[-71.359680243,41.650563917],[-71.359578506,41.650642349],[-71.359477816,41.650729382],[-71.359362586,41.650814841],[-71.359261897,41.650901049],[-71.359151834,41.650993513],[-71.359052182,41.651079768],[-71.358938011,41.651154319],[-71.358792814,41.651179846],[-71.358640377,41.651183615],[-71.358494171,41.651196722],[-71.358347887,41.651258838],[-71.358201611,41.651317821],[-71.358086421,41.651397036],[-71.357943213,41.651460687],[-71.357789701,41.651495533],[-71.357657961,41.651543647],[-71.357524118,41.651591736],[-71.357374739,41.651646048],[-71.357238804,41.651701955],[-71.357115322,41.651766385],[-71.357011519,41.651852633],[-71.356890057,41.651940415],[-71.356781053,41.652034409],[-71.356680346,41.652126882],[-71.356602436,41.652224002],[-71.356520346,41.652335914],[-71.356440366,41.652431523],[-71.356356215,41.652523993],[-71.356258617,41.652602473],[-71.356214905,41.652705833],[-71.356175368,41.652809999],[-71.356135796,41.652916521],[-71.356110727,41.653027703],[-71.356051504,41.653126402],[-71.355989135,41.653227452],[-71.355963044,41.653345631],[-71.355915156,41.653461473],[-71.355832064,41.653557054],[-71.355742827,41.653604419],[-71.355701168,41.653716404],[-71.355642925,41.653825966],[-71.355591962,41.653939494],[-71.355551347,41.65404757],[-71.355505576,41.654157148],[-71.355435916,41.654272184],[-71.355370392,41.654378673],[-71.355316331,41.654485954],[-71.355247709,41.654600214],[-71.355170839,41.654707466],[-71.355071156,41.65478903],[-71.355005671,41.654890853],[-71.35492154,41.654985655],[-71.354802175,41.655059441],[-71.354681768,41.655135535],[-71.354627752,41.655194584],[-71.35463692,41.65532136],[-71.354598339,41.655446544],[-71.354563952,41.655563934],[-71.35453581,41.65567047],[-71.354514894,41.655777747],[-71.354524037,41.65590219],[-71.354531101,41.656028964],[-71.354527807,41.656151036],[-71.354490293,41.656262248],[-71.354432062,41.656364835],[-71.354386269,41.656468993],[-71.354398639,41.656514084],[-71.354498134,41.656462118],[-71.354534537,41.656494039],[-71.354545747,41.656607531],[-71.354525893,41.656717187],[-71.354575598,41.656771679],[-71.35462295,41.656801629],[-71.3546999,41.656850301],[-71.354745377,41.656954551],[-71.354723422,41.657062627],[-71.354665189,41.657179233],[-71.354588277,41.65728964],[-71.354508288,41.657385201],[-71.354411681,41.657479987],[-71.35430474,41.657559231],[-71.354185383,41.657626773],[-71.354050486,41.657688875],[-71.353918771,41.657733097],[-71.35378079,41.657769512],[-71.353626296,41.657759276],[-71.353484258,41.657728816],[-71.353436772,41.657731134],[-71.353390944,41.657728743],[-71.353376423,41.657731057],[-71.353406363,41.657801075],[-71.353508917,41.657882026],[-71.353615581,41.657966115],[-71.353627839,41.658074257],[-71.353646431,41.658132575],[-71.353786311,41.658200355],[-71.353887839,41.65826342],[-71.354018426,41.658328078],[-71.354160415,41.65836709],[-71.354302416,41.658414655],[-71.354417437,41.658485536],[-71.354523087,41.658560292],[-71.354552073,41.658580523],[-71.354615206,41.65868555],[-71.354688621,41.658788257],[-71.354729951,41.658893303],[-71.354776469,41.658995976],[-71.354850962,41.659108039],[-71.354920264,41.659223182],[-71.354990621,41.659330573],[-71.354990456,41.659444897],[-71.354976801,41.659563869],[-71.354981599,41.659586538],[-71.355001516,41.659680534],[-71.355050031,41.659791008],[-71.355124603,41.659868057],[-71.355247924,41.659924928],[-71.355387863,41.659968602],[-71.355530904,41.660002949],[-71.355671878,41.660048156],[-71.355832569,41.660085634],[-71.355972516,41.660126197],[-71.356128015,41.660167556],[-71.356268966,41.660209652],[-71.356436888,41.660259557],[-71.35659131,41.66030558],[-71.356743704,41.660358598],[-71.356895025,41.660413947],[-71.357059859,41.660454517],[-71.357204997,41.660478756]]],[[[-71.337712075,41.65708611],[-71.337679592,41.65714916],[-71.337660631,41.657219274],[-71.337647903,41.657284685],[-71.337643498,41.657350909],[-71.337649504,41.657412481],[-71.337659672,41.657467794],[-71.337671912,41.657523932],[-71.337689351,41.657586299],[-71.337711985,41.657644053],[-71.33774399,41.657698641],[-71.33779676,41.657754083],[-71.337840209,41.657804822],[-71.337885699,41.657857143],[-71.337933298,41.657907111],[-71.337987139,41.657960998],[-71.33804095,41.658014863],[-71.338094813,41.65806022],[-71.338162194,41.65810164],[-71.33823164,41.658146973],[-71.338285501,41.658193085],[-71.33832271,41.658239928],[-71.338356824,41.658292964],[-71.338405455,41.658345289],[-71.338461382,41.658394491],[-71.338526652,41.658439063],[-71.338605468,41.658481322],[-71.338675925,41.658525124],[-71.338741211,41.658575917],[-71.338817898,41.658628281],[-71.338889416,41.658674418],[-71.33895779,41.658722127],[-71.339031359,41.658777574],[-71.33909246,41.658831471],[-71.339153559,41.658886169],[-71.339230296,41.658930734],[-71.339303905,41.65897063],[-71.339375451,41.659005857],[-71.339452249,41.659038782],[-71.339520687,41.659073181],[-71.339588076,41.65911229],[-71.339598551,41.65911848],[-71.339659575,41.659154561],[-71.339725941,41.659200644],[-71.339797429,41.659247557],[-71.339878316,41.659291373],[-71.339952945,41.659338314],[-71.34003589,41.659389107],[-71.34011676,41.659439944],[-71.340190345,41.659489993],[-71.340245268,41.659526706],[-71.340298048,41.659567075],[-71.340319872,41.659583754],[-71.340391351,41.659634555],[-71.340475333,41.659685419],[-71.340550986,41.65973778],[-71.340625639,41.659787807],[-71.340682638,41.659823768],[-71.340756149,41.65987926],[-71.340824543,41.659932388],[-71.340899157,41.659985548],[-71.340969631,41.660036324],[-71.341044272,41.660078576],[-71.341127274,41.660119261],[-71.341206077,41.660156052],[-71.341297385,41.660192129],[-71.341382486,41.660222685],[-71.341470702,41.660250936],[-71.341560982,41.660283832],[-71.341645002,41.660319876],[-71.341735277,41.66035435],[-71.34181519,41.6603865],[-71.341901292,41.66041939],[-71.341986378,41.660456212],[-71.34206829,41.660493808],[-71.342154386,41.66052903],[-71.342230103,41.66056895],[-71.342310992,41.660613519],[-71.342383544,41.660662765],[-71.342432177,41.660716643],[-71.342478722,41.660775961],[-71.342540855,41.660833768],[-71.342607146,41.66088687],[-71.342681777,41.660934586],[-71.342774111,41.660976083],[-71.342857092,41.661013657],[-71.342947352,41.661055151],[-71.343031349,41.661101301],[-71.343111134,41.661149001],[-71.343196167,41.661195931],[-71.343273937,41.661244428],[-71.343361045,41.661290583],[-71.343444006,41.661336732],[-71.343518629,41.661388312],[-71.343572513,41.661427401],[-71.343645052,41.661482889],[-71.343715486,41.661539152],[-71.343768326,41.661581303],[-71.343818062,41.661621163],[-71.343888489,41.661679782],[-71.343919501,41.661706535],[-71.343938217,41.661722729],[-71.343987911,41.661767232],[-71.344046894,41.661829699],[-71.344093383,41.661900749],[-71.34413366,41.66196781],[-71.344174972,41.662035697],[-71.3442111,41.662103599],[-71.34424202,41.662168338],[-71.344268778,41.662239269],[-71.3442914,41.662305575],[-71.344322307,41.662375757],[-71.344361561,41.662437398],[-71.344397659,41.662505277],[-71.344424421,41.662574676],[-71.344450149,41.662642518],[-71.344480018,41.662713499],[-71.34450679,41.66277901],[-71.34452937,41.662849981],[-71.344543668,41.662915476],[-71.344543403,41.662987925],[-71.344537925,41.663058858],[-71.344531404,41.663132878],[-71.344521813,41.663202182],[-71.34450387,41.663269942],[-71.344480766,41.663340828],[-71.344453498,41.66340542],[-71.344429328,41.663475482],[-71.344405172,41.663539323],[-71.344376883,41.66361018],[-71.344349617,41.663674017],[-71.344320284,41.663734741],[-71.34428058,41.663796228],[-71.344251259,41.663852241],[-71.344236474,41.663913008],[-71.344239381,41.663972266],[-71.344269284,41.664029183],[-71.344310647,41.664089294],[-71.34434055,41.66414621],[-71.344343427,41.664205446],[-71.344345259,41.66426779],[-71.344372084,41.664323947],[-71.344414448,41.664386392],[-71.344456842,41.664448814],[-71.344491923,41.664508894],[-71.344514548,41.664574399],[-71.344519525,41.664635215],[-71.344511982,41.664702967],[-71.344501365,41.664767604],[-71.344506301,41.664833085],[-71.34452578,41.664900165],[-71.344556739,41.664962548],[-71.344600131,41.665028882],[-71.344635239,41.665090517],[-71.344664049,41.665158363],[-71.344690825,41.665222319],[-71.344710349,41.665283932],[-71.344725675,41.665353316],[-71.344736873,41.665414918],[-71.344741801,41.665483464],[-71.3447447,41.665546587],[-71.344747562,41.665612066],[-71.344753561,41.665679058],[-71.344754357,41.665741401],[-71.34475514,41.665809209],[-71.344764267,41.665869231],[-71.34477338,41.665935473],[-71.344777271,41.666004086],[-71.344774945,41.66607109],[-71.344765322,41.666141194],[-71.344755746,41.666204277],[-71.344747158,41.666275161],[-71.34473548,41.666337487],[-71.344723798,41.666401368],[-71.344712118,41.666464471],[-71.3446953,41.666520524],[-71.344680505,41.666585178],[-71.344668838,41.666642816],[-71.344665533,41.666698132],[-71.344671553,41.666756594],[-71.344701449,41.666817444],[-71.344759464,41.666865891],[-71.344840455,41.666884753],[-71.344928839,41.666873232],[-71.345006847,41.666851612],[-71.345078686,41.66682056],[-71.345149457,41.666789531],[-71.34523373,41.666762453],[-71.345308671,41.666735339],[-71.345388801,41.666705877],[-71.345475152,41.666677246],[-71.345549055,41.666650108],[-71.345630194,41.666619915],[-71.345707253,41.666586561],[-71.345785321,41.666552453],[-71.345872719,41.666519159],[-71.34595077,41.666492026],[-71.346038137,41.666471949],[-71.346121346,41.666455755],[-71.346203464,41.66644969],[-71.346294939,41.666445993],[-71.346377079,41.666430575],[-71.34646756,41.666408947],[-71.346551861,41.666382646],[-71.3465906,41.666367489],[-71.346635109,41.666350099],[-71.346719403,41.666313621],[-71.346796469,41.666277179],[-71.346889083,41.666243089],[-71.346970257,41.666210517],[-71.347058713,41.666181111],[-71.347150243,41.666154018],[-71.347234552,41.666123805],[-71.347331299,41.666095942],[-71.347413489,41.666071993],[-71.347501907,41.66604565],[-71.347569585,41.666006085],[-71.347631091,41.665958644],[-71.347711306,41.66590583],[-71.347785298,41.665852986],[-71.347858216,41.665803273],[-71.34791445,41.665766757],[-71.347991556,41.665712384],[-71.348061365,41.665661889],[-71.348114518,41.665625369],[-71.348188487,41.66556946],[-71.348255184,41.665518915],[-71.348331244,41.665468429],[-71.348400018,41.665416354],[-71.348459422,41.665367378],[-71.34851679,41.665315289],[-71.348566879,41.665258547],[-71.348600308,41.665205603],[-71.348588048,41.665153377],[-71.348526915,41.66510726],[-71.348448064,41.665073584],[-71.348379583,41.665039944],[-71.348311157,41.664995373],[-71.348246922,41.664946165],[-71.348190967,41.664903211],[-71.348128736,41.664870335],[-71.348057133,41.664841356],[-71.347987588,41.664819378],[-71.347914966,41.664795864],[-71.347838173,41.664769211],[-71.347768622,41.664749589],[-71.347698042,41.664726832],[-71.347645187,41.664688524],[-71.347608976,41.664640931],[-71.347564493,41.664583172],[-71.347502343,41.664529279],[-71.347464128,41.664465308],[-71.347424875,41.664401313],[-71.347373109,41.664354454],[-71.347313015,41.664308338],[-71.347258107,41.664261475],[-71.347220914,41.664203726],[-71.347193057,41.664144458],[-71.347184957,41.664087571],[-71.347196644,41.664020579],[-71.347219723,41.663959069],[-71.347238663,41.663894419],[-71.347241051,41.663825837],[-71.347232975,41.66375882],[-71.347219731,41.663684774],[-71.34721066,41.663613044],[-71.347211978,41.663532797],[-71.347220576,41.663456448],[-71.347230161,41.663401163],[-71.34724913,41.663324027],[-71.347265968,41.663271061],[-71.347286955,41.663217346],[-71.347319432,41.663141051],[-71.347340423,41.663085758],[-71.347368754,41.663008704],[-71.347379341,41.662954975],[-71.347378614,41.66287548],[-71.347380999,41.662795212],[-71.347389604,41.662715752],[-71.34739613,41.662638646],[-71.34739632,41.66258408],[-71.347411152,41.662514783],[-71.34743008,41.662454799],[-71.347456262,41.662396425],[-71.347497048,41.662327162],[-71.347533606,41.662278888],[-71.347588936,41.662210445],[-71.347624461,41.662160637],[-71.347660986,41.662113209],[-71.347700647,41.662068071],[-71.34774136,41.662016715],[-71.347781037,41.661964603],[-71.34782278,41.661915603],[-71.347865601,41.661862695],[-71.347908388,41.661810586],[-71.347945986,41.661760804],[-71.347987735,41.661709449],[-71.348032625,41.661658121],[-71.34807954,41.661614571],[-71.348133743,41.661571054],[-71.348187949,41.661526736],[-71.348237965,41.661487124],[-71.348312994,41.661431971],[-71.348363015,41.66138998],[-71.348408891,41.661347206],[-71.348474574,41.661284997],[-71.348520489,41.661238358],[-71.34857052,41.66119248],[-71.34861743,41.661150485],[-71.348663336,41.661107734],[-71.348709215,41.661063405],[-71.348759231,41.661023815],[-71.348832178,41.660971701],[-71.348903023,41.660918874],[-71.348961345,41.660887048],[-71.349047752,41.660843595],[-71.349133119,41.660800942],[-71.349195558,41.660769098],[-71.349279901,41.660720977],[-71.349362201,41.660672808],[-71.349419461,41.660638648],[-71.349497585,41.660589718],[-71.349574634,41.660543898],[-71.349649597,41.660502762],[-71.34971,41.660467805],[-71.349778748,41.660424306],[-71.349846393,41.660396403],[-71.349914046,41.660364611],[-71.349989002,41.660326586],[-71.350068115,41.660284678],[-71.350139996,41.660244293],[-71.350225318,41.660207836],[-71.350303377,41.660172948],[-71.350381436,41.660138037],[-71.350467821,41.660103182],[-71.350544841,41.660069047],[-71.350633304,41.660031793],[-71.350719699,41.65999225],[-71.350798802,41.659954207],[-71.350876875,41.659913075],[-71.350948731,41.659870356],[-71.351032002,41.659836275],[-71.351118334,41.659810727],[-71.3511953,41.659786723],[-71.351261949,41.659753351],[-71.351273584,41.659693403],[-71.35125411,41.659621682],[-71.351227396,41.659581741],[-71.351207611,41.659552214],[-71.351164144,41.659503834],[-71.35111856,41.65946085],[-71.35105125,41.659397597],[-71.35100374,41.659330483],[-71.351012273,41.659266597],[-71.351046843,41.65919266],[-71.351084514,41.659122591],[-71.351125306,41.659047884],[-71.351164017,41.658976262],[-71.351198554,41.658903102],[-71.351233114,41.658833006],[-71.351261422,41.658762948],[-71.351285584,41.658692862],[-71.351280616,41.658625048],[-71.351235151,41.658557182],[-71.351167825,41.658500927],[-71.351102571,41.658445453],[-71.351054992,41.65838225],[-71.35101781,41.658319837],[-71.350994153,41.65825042],[-71.350977777,41.658184147],[-71.350940633,41.658118647],[-71.350880603,41.658059291],[-71.35080703,41.658001451],[-71.35074801,41.657940565],[-71.350695195,41.657899949],[-71.350622591,41.657858484],[-71.350572928,41.657799942],[-71.350550269,41.657747725],[-71.350539056,41.657690766],[-71.350529941,41.657623747],[-71.350525997,41.657562177],[-71.350518987,41.657494384],[-71.350505721,41.657428891],[-71.350485167,41.65736339],[-71.350457356,41.657297124],[-71.350417093,41.657235484],[-71.350358037,41.657177685],[-71.350302161,41.657129267],[-71.350248298,41.657080828],[-71.350178837,41.657038635],[-71.350086337,41.657043088],[-71.350014561,41.657065544],[-71.349932411,41.657077809],[-71.349860774,41.657066784],[-71.349781931,41.657033863],[-71.349704128,41.656999412],[-71.34962943,41.656967343],[-71.349544317,41.656942212],[-71.349457089,41.656921767],[-71.349363622,41.65690909],[-71.349272195,41.656911257],[-71.349182781,41.656925867],[-71.349094356,41.6569483],[-71.349013258,41.65696681],[-71.3489239,41.656970534],[-71.348837731,41.656954024],[-71.348747404,41.656928863],[-71.34865608,41.656899859],[-71.348568903,41.656870837],[-71.348482791,41.656842594],[-71.348415337,41.656816754],[-71.348353641,41.656793461],[-71.348338559,41.656787769],[-71.348273216,41.656758799],[-71.348205797,41.65671814],[-71.348133234,41.656673586],[-71.348057563,41.65662745],[-71.347981904,41.656576649],[-71.347897921,41.656525768],[-71.347813924,41.656480421],[-71.347728838,41.65644438],[-71.347636482,41.656413796],[-71.347547233,41.656384771],[-71.347454915,41.656351099],[-71.347374014,41.656311977],[-71.347293181,41.656257234],[-71.347238266,41.656216591],[-71.347183314,41.656178326],[-71.347129428,41.656140772],[-71.347070369,41.656098591],[-71.347013382,41.65605719],[-71.346957398,41.6560173],[-71.346899367,41.655978985],[-71.346840301,41.655939937],[-71.346785346,41.655903182],[-71.346730418,41.655868004],[-71.34664644,41.655815635],[-71.346615705,41.655788563],[-71.346578093,41.655755466],[-71.346518028,41.655700774],[-71.346453835,41.65565081],[-71.346391636,41.655608579],[-71.346311743,41.655582676],[-71.34624541,41.655535042],[-71.34619049,41.655496731],[-71.34611992,41.655473973],[-71.346038949,41.655452779],[-71.345960067,41.655424544],[-71.345883285,41.655398667],[-71.345801254,41.655386802],[-71.345723371,41.655374966],[-71.34564551,41.655353753],[-71.345568748,41.6553193],[-71.345508656,41.655276316],[-71.345450592,41.655239602],[-71.345382096,41.655216846],[-71.345311512,41.655200331],[-71.345228466,41.655179888],[-71.345137095,41.655171921],[-71.345052944,41.655167073],[-71.344975034,41.655166877],[-71.344901237,41.655167486],[-71.3448254,41.655167338],[-71.344742553,41.655165626],[-71.344666809,41.655151779],[-71.344559169,41.655137797],[-71.344482567,41.65512587],[-71.344390454,41.655110034],[-71.344312998,41.655098129],[-71.34427587,41.655105054],[-71.344270662,41.655115384],[-71.344237061,41.655113989],[-71.344231126,41.655096486],[-71.34418054,41.655057539],[-71.344109266,41.655023687],[-71.344036272,41.654982675],[-71.343965806,41.654955274],[-71.343935981,41.654943501],[-71.343901343,41.654929801],[-71.343850617,41.654910888],[-71.34384197,41.654917943],[-71.343796012,41.654957879],[-71.343748634,41.654953789],[-71.343748731,41.654938924],[-71.343766337,41.654884062],[-71.343705552,41.654825662],[-71.34365335,41.654773769],[-71.343591566,41.654738009],[-71.343553723,41.654725585],[-71.343529983,41.654669249],[-71.34348818,41.654604472],[-71.343438488,41.654561661],[-71.343412972,41.654508569],[-71.343368469,41.654463776],[-71.343326649,41.654406112],[-71.343284762,41.654351648],[-71.34321874,41.654302938],[-71.343178578,41.654253668],[-71.343131537,41.654199198],[-71.343098931,41.654177748],[-71.343025578,41.654196858],[-71.342946207,41.654208207],[-71.342861732,41.654211751],[-71.342775551,41.654214674],[-71.342692063,41.654201433],[-71.342762962,41.65416295],[-71.342851965,41.654127692],[-71.342921066,41.654101464],[-71.342975625,41.654060946],[-71.343023425,41.654003655],[-71.343053119,41.653943617],[-71.34306147,41.653857068],[-71.3430619,41.65379308],[-71.343057177,41.653729086],[-71.343045447,41.653674732],[-71.343015673,41.653617106],[-71.342955585,41.653586516],[-71.342872915,41.65357522],[-71.342792881,41.653558759],[-71.342724976,41.653532641],[-71.342695096,41.653493768],[-71.342675621,41.653439404],[-71.342653582,41.653386317],[-71.342625274,41.653365558],[-71.342550123,41.653397564],[-71.342498928,41.65344648],[-71.342451252,41.653490255],[-71.342376123,41.653513227],[-71.342301231,41.653501347],[-71.342240262,41.653469429],[-71.342229355,41.653428044],[-71.342245834,41.653410022],[-71.342326162,41.653381203],[-71.342414273,41.653349261],[-71.342506681,41.653317919],[-71.34259649,41.653289821],[-71.342688752,41.653281097],[-71.342766989,41.653309196],[-71.342794171,41.653366819],[-71.342822195,41.65342897],[-71.342878306,41.653414959],[-71.342959374,41.6534075],[-71.343042723,41.653440157],[-71.343117567,41.65345915],[-71.343199448,41.653456243],[-71.343264242,41.65343257],[-71.343339469,41.653394092],[-71.343414706,41.653351749],[-71.343482101,41.653324191],[-71.343548544,41.653312161],[-71.343611687,41.653277486],[-71.343655063,41.653233064],[-71.343733781,41.653188758],[-71.343802118,41.65314963],[-71.343852525,41.653085802],[-71.343894163,41.653041377],[-71.343943793,41.652995638],[-71.343998222,41.652945467],[-71.344051134,41.652892025],[-71.344102382,41.652832749],[-71.344161377,41.652772888],[-71.344224657,41.652718842],[-71.344282713,41.652669294],[-71.344338082,41.652633327],[-71.344415988,41.652583852],[-71.344478293,41.652542085],[-71.344548275,41.652515834],[-71.344600338,41.652459829],[-71.344641344,41.652386268],[-71.344666686,41.652334663],[-71.344685997,41.652279803],[-71.344720965,41.652206279],[-71.344759251,41.652148243],[-71.344795771,41.652101227],[-71.344797899,41.652040489],[-71.344763836,41.651978284],[-71.344718497,41.651926424],[-71.344642969,41.651887993],[-71.344601164,41.651824542],[-71.344621416,41.651758683],[-71.344642555,41.651692185],[-71.344684377,41.651621232],[-71.344712454,41.651547699],[-71.344714545,41.651489545],[-71.344707181,41.651432636],[-71.344690297,41.651378276],[-71.344651973,41.651312863],[-71.344597057,41.651275192],[-71.344525796,41.65123743],[-71.344444206,41.651197046],[-71.344369586,41.651148942],[-71.344298388,41.651098259],[-71.344259976,41.651044487],[-71.344239766,41.650978481],[-71.34417371,41.650932356],[-71.344097364,41.650879721],[-71.344033139,41.650820677],[-71.343989583,41.650762987],[-71.343950281,41.650711775],[-71.343946332,41.650705824],[-71.343913611,41.650656724],[-71.343892525,41.65058747],[-71.343874974,41.650506626],[-71.343871909,41.650450386],[-71.343858614,41.650374716],[-71.343846962,41.650313296],[-71.343826631,41.650260211],[-71.343794786,41.650252324],[-71.343762726,41.650283223],[-71.343763148,41.650348538],[-71.343752331,41.650420859],[-71.343710619,41.650471115],[-71.343633789,41.650492805],[-71.343559799,41.650475049],[-71.3434884,41.65045732],[-71.343443566,41.650462336],[-71.343414773,41.650516497],[-71.34335234,41.650573814],[-71.343304012,41.650585892],[-71.343235262,41.650557189],[-71.343256609,41.650455152],[-71.343298369,41.650397806],[-71.343346839,41.650365032],[-71.343432021,41.650382163],[-71.343504634,41.650351411],[-71.343543627,41.650316017],[-71.343474019,41.650289279],[-71.343431309,41.650235478],[-71.343432624,41.650170851],[-71.343446884,41.650099175],[-71.343498904,41.650048293],[-71.343575773,41.650022738],[-71.34366623,41.650026977],[-71.343739422,41.650034349],[-71.343811865,41.650023608],[-71.343826785,41.649981663],[-71.343849617,41.649920999],[-71.343886239,41.649857151],[-71.343907301,41.649797125],[-71.34389914,41.64972926],[-71.343949464,41.649685671],[-71.344019482,41.649643755],[-71.344084466,41.649589689],[-71.344163228,41.649537676],[-71.344228929,41.649503004],[-71.344300698,41.649467722],[-71.344381867,41.649441532],[-71.344469033,41.649419261],[-71.344556227,41.649398248],[-71.344637344,41.649381114],[-71.344712374,41.649371679],[-71.344790726,41.649375855],[-71.344869904,41.649391673],[-71.344945595,41.649411969],[-71.345018666,41.649431004],[-71.345118508,41.64945076],[-71.345214018,41.649471151],[-71.345284338,41.649518608],[-71.345347748,41.649574403],[-71.345410461,41.649603097],[-71.345486996,41.649627282],[-71.345562643,41.649653409],[-71.345643334,41.649699622],[-71.345714692,41.649721855],[-71.345777411,41.649747919],[-71.345829594,41.649806306],[-71.345904282,41.649851161],[-71.345979039,41.649879894],[-71.346056425,41.649906068],[-71.346131199,41.649927643],[-71.346200882,41.649948593],[-71.346270444,41.649982441],[-71.346295018,41.650047172],[-71.34627568,41.650101392],[-71.346215799,41.650163837],[-71.346168125,41.650208917],[-71.346111022,41.650244242],[-71.346041894,41.650271753],[-71.34596762,41.650296055],[-71.345886392,41.650333864],[-71.345854963,41.650394494],[-71.345846806,41.65045264],[-71.345833484,41.650515284],[-71.345817537,41.650579228],[-71.345809405,41.650639272],[-71.345802938,41.65070451],[-71.345752543,41.650765092],[-71.345704931,41.650796588],[-71.34564338,41.650855805],[-71.34562393,41.650930722],[-71.345639785,41.651007676],[-71.345686702,41.651075707],[-71.345757002,41.651132837],[-71.345844591,41.651177115],[-71.34592273,41.651220077],[-71.345994937,41.651244919],[-71.346054983,41.651280012],[-71.346101936,41.651346099],[-71.346130048,41.651397936],[-71.346173517,41.651467242],[-71.346204945,41.651535206],[-71.346247739,41.651580614],[-71.346303418,41.651631892],[-71.346358249,41.65168054],[-71.346416538,41.65172407],[-71.346475706,41.651769522],[-71.346527941,41.651820156],[-71.346575794,41.651879794],[-71.346621905,41.651941352],[-71.346624822,41.651945746],[-71.346662012,41.652001574],[-71.346699498,41.652061176],[-71.346735269,41.652124],[-71.346764987,41.652193243],[-71.346789479,41.652267692],[-71.346811419,41.652338182],[-71.346822173,41.652406736],[-71.346822553,41.652477837],[-71.346828085,41.652549585],[-71.346840574,41.652619422],[-71.346853036,41.652687978],[-71.346862982,41.652750082],[-71.346864303,41.652810161],[-71.346868086,41.652886436],[-71.346865959,41.652947837],[-71.346849244,41.653001444],[-71.346825596,41.653059523],[-71.346873422,41.653118498],[-71.346930147,41.653140666],[-71.347000889,41.653128022],[-71.347084474,41.653126395],[-71.347138691,41.653138862],[-71.347229397,41.653104313],[-71.347299385,41.653075476],[-71.347375508,41.653031165],[-71.347450399,41.653043751],[-71.347516791,41.653039471],[-71.34753167,41.65300139],[-71.347587866,41.652976377],[-71.347674929,41.652973519],[-71.347729361,41.65294656],[-71.347735777,41.652889692],[-71.347730997,41.652834754],[-71.347701192,41.652775849],[-71.347667916,41.65272787],[-71.347669237,41.652658761],[-71.34768092,41.652592204],[-71.34770296,41.652517313],[-71.347725859,41.652439885],[-71.347752233,41.652363033],[-71.347772391,41.65231014],[-71.347793435,41.652256562],[-71.347814484,41.652200423],[-71.347851152,41.652128799],[-71.347897173,41.652073401],[-71.347943137,41.652029622],[-71.347989989,41.651983945],[-71.348012796,41.651919369],[-71.348030482,41.651854215],[-71.348050779,41.651781243],[-71.348079703,41.651708945],[-71.348118881,41.651645763],[-71.348166635,41.651592289],[-71.348216045,41.651547896],[-71.34828849,41.651536557],[-71.348381633,41.65152783],[-71.348453318,41.651502265],[-71.34853368,41.651469576],[-71.348622595,41.651443416],[-71.348699381,41.651427532],[-71.348785454,41.651442739],[-71.348849217,41.651441039],[-71.348915883,41.651397332],[-71.348931608,41.651361859],[-71.348887007,41.651331933],[-71.348890641,41.651303534],[-71.348946898,41.651264936],[-71.348998046,41.651219905],[-71.3490198,41.651188305],[-71.349004569,41.651142386],[-71.34898327,41.651109975],[-71.348900746,41.651076729],[-71.34882246,41.65105641],[-71.348741482,41.651052873],[-71.348662055,41.651077124],[-71.348612118,41.651073719],[-71.348573658,41.651025734],[-71.348480648,41.65101699],[-71.348381586,41.651014664],[-71.348302297,41.651018927],[-71.348222936,41.651028291],[-71.34817451,41.651056562],[-71.348135061,41.651027351],[-71.348087201,41.650970275],[-71.348051394,41.650909418],[-71.348028504,41.650853723],[-71.347998777,41.650787729],[-71.347978576,41.650716533],[-71.34796008,41.650646688],[-71.347943278,41.650581991],[-71.347935923,41.650519937],[-71.347937159,41.650461119],[-71.347937584,41.650397131],[-71.347922468,41.650342133],[-71.347871131,41.650285715],[-71.347856652,41.650257863],[-71.347829454,41.650206051],[-71.347796769,41.650192378],[-71.347751795,41.650218046],[-71.347722199,41.650265118],[-71.347665051,41.650306939],[-71.347625267,41.650329413],[-71.347555601,41.650313609],[-71.347463547,41.650288079],[-71.347379265,41.65026384],[-71.34730875,41.65024616],[-71.347243441,41.650218744],[-71.3472006,41.650180449],[-71.347188004,41.650130006],[-71.347152991,41.650082048],[-71.347139682,41.650010929],[-71.347140114,41.649944357],[-71.347140578,41.649877145],[-71.347139256,41.649817019],[-71.347133601,41.649758855],[-71.347128843,41.64969486],[-71.34712757,41.649626959],[-71.347131434,41.649566246],[-71.347112889,41.649504131],[-71.34710204,41.649450465],[-71.347093792,41.649392275],[-71.34708731,41.649335344],[-71.347078345,41.6492584],[-71.347075333,41.649191228],[-71.347078301,41.649134997],[-71.347101943,41.649078861],[-71.347133315,41.649028544],[-71.347175887,41.648973806],[-71.347220155,41.64892417],[-71.347277293,41.648886282],[-71.347340391,41.648854852],[-71.347386354,41.648810409],[-71.347396843,41.648784627],[-71.347417642,41.648769835],[-71.347499422,41.648781127],[-71.347579596,41.648774944],[-71.347650386,41.648753243],[-71.347737494,41.648741924],[-71.347820216,41.648741576],[-71.347890104,41.648726964],[-71.347950654,41.648690361],[-71.348011282,41.648646006],[-71.348082258,41.648596542],[-71.348161871,41.648543819],[-71.348233748,41.648487221],[-71.348298763,41.648431231],[-71.348356851,41.648377793],[-71.348408007,41.648328897],[-71.348453118,41.648283172],[-71.348478226,41.648263858],[-71.348521307,41.648264669],[-71.34858992,41.64831274],[-71.348669802,41.648353118],[-71.348738555,41.648380537],[-71.348810769,41.648401466],[-71.348881314,41.648418528],[-71.348970655,41.648456334],[-71.349036619,41.648516064],[-71.349083721,41.648557588],[-71.349142983,41.648588837],[-71.349213481,41.648613651],[-71.349281398,41.648633271],[-71.349371707,41.648661427],[-71.34946807,41.648682433],[-71.349573062,41.648702856],[-71.349641864,41.648722522],[-71.349742482,41.648749411],[-71.349838921,41.64876399],[-71.349933689,41.648762421],[-71.350023348,41.648755609],[-71.35009587,41.648735876],[-71.350158963,41.648706342],[-71.350242696,41.648677567],[-71.350316021,41.648666251],[-71.350390997,41.648666509],[-71.350460042,41.648647365],[-71.35053423,41.648632139],[-71.350583538,41.648603868],[-71.350602045,41.648538029],[-71.350649836,41.648480025],[-71.350714855,41.648421473],[-71.350785881,41.648362905],[-71.350850009,41.648306913],[-71.350928673,41.648267817],[-71.350997783,41.648246729],[-71.351074558,41.64823345],[-71.351148703,41.648223392],[-71.351246152,41.648209522],[-71.351349686,41.64818793],[-71.351448972,41.648157276],[-71.351499109,41.648139389],[-71.351520684,41.648131687],[-71.351615639,41.648101667],[-71.351690754,41.64808061],[-71.351769375,41.648046636],[-71.351837791,41.6479952],[-71.351894897,41.647956647],[-71.351950287,41.647921317],[-71.351988559,41.647865199],[-71.352002799,41.647798073],[-71.352039413,41.647733582],[-71.352106096,41.647679559],[-71.352177105,41.64762744],[-71.352246371,41.647577285],[-71.352317263,41.647536188],[-71.352395061,41.647501595],[-71.352460755,41.647466941],[-71.352511903,41.647419918],[-71.352552678,41.647375513],[-71.352566401,41.647387811],[-71.352600478,41.647446103],[-71.352632895,41.64749664],[-71.352661823,41.647553622],[-71.35268211,41.647615739],[-71.352690279,41.647683625],[-71.352689813,41.647754062],[-71.352687646,41.647821913],[-71.352681191,41.64788523],[-71.352679914,41.647950498],[-71.352679446,41.648022238],[-71.352678939,41.648097226],[-71.352680273,41.648140931],[-71.352681066,41.648167667],[-71.352691824,41.648236837],[-71.352704247,41.648311202],[-71.352707253,41.648383633],[-71.35270847,41.648451488],[-71.35271149,41.648518042],[-71.352710225,41.648578118],[-71.352705589,41.648632427],[-71.352702575,41.648697006],[-71.352682382,41.648754451],[-71.352659789,41.648780882],[-71.35257871,41.648796077],[-71.35247518,41.648815749],[-71.352400107,41.648830976],[-71.352318134,41.648850698],[-71.352233487,41.648879473],[-71.352161796,41.648908928],[-71.352097858,41.648935192],[-71.352028815,41.648953695],[-71.351955453,41.648967666],[-71.351883894,41.648979649],[-71.351783093,41.648979313],[-71.351705612,41.648967367],[-71.351625618,41.648948327],[-71.35154993,41.648926046],[-71.351478542,41.648903176],[-71.351414976,41.648873867],[-71.351346448,41.648814135],[-71.351296898,41.648748688],[-71.351233522,41.648689671],[-71.351175196,41.648648705],[-71.351142781,41.64859755],[-71.351101815,41.648538563],[-71.35107869,41.648517813],[-71.351061185,41.648559093],[-71.351024604,41.648621684],[-71.35095365,41.648662757],[-71.35086129,41.648690881],[-71.350783485,41.648727394],[-71.350704856,41.648763974],[-71.350631479,41.648784393],[-71.350567775,41.648775071],[-71.350530126,41.648732279],[-71.350464429,41.648767595],[-71.350409798,41.648816488],[-71.350392338,41.648851341],[-71.350463589,41.648893605],[-71.350527161,41.64892033],[-71.350597615,41.648950998],[-71.350673246,41.648984874],[-71.350748815,41.649018773],[-71.350825299,41.649052628],[-71.350904389,41.649080723],[-71.350985189,41.649107516],[-71.351065162,41.649135612],[-71.351147699,41.649163048],[-71.351225086,41.649189219],[-71.35129897,41.649213373],[-71.351371241,41.64923693],[-71.351438331,41.649259132],[-71.351523451,41.649276874],[-71.351607112,41.649266211],[-71.35167364,41.649241255],[-71.351741835,41.649220188],[-71.351769572,41.649197652],[-71.351794825,41.649155102],[-71.351855363,41.649122385],[-71.351934832,41.64909166],[-71.352019446,41.649064188],[-71.352100607,41.649039914],[-71.352187758,41.649022783],[-71.352261045,41.64901533],[-71.352333301,41.649031729],[-71.352413474,41.649026206],[-71.352484256,41.649007063],[-71.352558519,41.648986027],[-71.352629308,41.64896366],[-71.35270881,41.648931631],[-71.352777857,41.648911228],[-71.35286157,41.648890845],[-71.352937489,41.648878844],[-71.353019513,41.648850065],[-71.353080105,41.648807011],[-71.353110586,41.648757377],[-71.353152335,41.648700646],[-71.353208714,41.648645923],[-71.353268513,41.648589237],[-71.353328337,41.648534565],[-71.353385576,41.648477258],[-71.353433379,41.648412782],[-71.353467442,41.648343097],[-71.353491978,41.648279871],[-71.353519905,41.648226964],[-71.353531551,41.648160452],[-71.353536227,41.648142025],[-71.353545702,41.648104897],[-71.353571134,41.648036505],[-71.353599924,41.647979093],[-71.353650225,41.647928845],[-71.35371416,41.647903244],[-71.353735909,41.647872329],[-71.353732692,41.647838707],[-71.353733117,41.647772158],[-71.353733614,41.647700417],[-71.353733986,41.647644182],[-71.353705993,41.647578168],[-71.35364763,41.647539811],[-71.353571092,41.647516272],[-71.353475527,41.647506888],[-71.353374778,41.647497452],[-71.35328442,41.647477715],[-71.353200225,41.647442548],[-71.353137614,41.647395746],[-71.353126849,41.647329137],[-71.353114376,41.647263189],[-71.353068193,41.647205499],[-71.352986684,41.647156065],[-71.352922229,41.647128677],[-71.352855181,41.647102588],[-71.352766774,41.647056371],[-71.352689524,41.647010853],[-71.352632895,41.646975104],[-71.352617923,41.646895568],[-71.35255881,41.646839096],[-71.352508255,41.646800131],[-71.35243361,41.646749471],[-71.352365006,41.646696875],[-71.352313747,41.646632683],[-71.352269303,41.646575041],[-71.352257633,41.646518104],[-71.352267489,41.646461286],[-71.352298061,41.646398686],[-71.352338082,41.646336784],[-71.352375587,41.646269071],[-71.352387248,41.646196109],[-71.3523809,41.646118505],[-71.35237438,41.646062902],[-71.352373915,41.645999553],[-71.352370898,41.645932336],[-71.352356682,41.645868946],[-71.352341534,41.645813332],[-71.352338556,41.645742227],[-71.352338973,41.645679542],[-71.352341139,41.645612332],[-71.352348453,41.645547072],[-71.352379872,41.64548708],[-71.352422435,41.645433598],[-71.352465038,41.645375587],[-71.352516281,41.645313128],[-71.352565779,41.645253182],[-71.352586875,41.645187345],[-71.352600225,41.645122116],[-71.352630879,41.645049843],[-71.352667549,41.644973071],[-71.352695471,41.644922108],[-71.352726805,41.644872476],[-71.352759024,41.644822182],[-71.352790358,41.644772527],[-71.35283389,41.644708091],[-71.352863568,41.644648714],[-71.352868417,41.644567969],[-71.352868799,41.644507228],[-71.352869216,41.644444498],[-71.352869632,41.644382477],[-71.352868311,41.64431979],[-71.3528644,41.644256414],[-71.35285448,41.644194356],[-71.352836778,41.644135491],[-71.352816482,41.644077925],[-71.352797893,41.644020339],[-71.352780199,41.643958226],[-71.352763435,41.643888979],[-71.352747539,41.64381397],[-71.352729891,41.643744768],[-71.352707044,41.643682602],[-71.352685896,41.643624395],[-71.352669932,41.643565509],[-71.352653947,41.643502758],[-71.352638023,41.64344003],[-71.352623737,41.643380505],[-71.352606888,41.643322258],[-71.352593522,41.643260814],[-71.352585358,41.643190983],[-71.352584984,41.643114073],[-71.35258545,41.643043635],[-71.352585909,41.642975783],[-71.35258634,41.642907266],[-71.352586802,41.642838156],[-71.35258812,41.642768337],[-71.352595432,41.64270374],[-71.352607038,41.64264107],[-71.352620385,41.642577167],[-71.352632925,41.642506105],[-71.352645476,41.642429921],[-71.352654577,41.64235627],[-71.352661077,41.642286504],[-71.352662342,41.642226405],[-71.352662716,41.642169529],[-71.352663086,41.642113957],[-71.352663521,41.642043497],[-71.352664837,41.641974364],[-71.35266798,41.64189293],[-71.3526761,41.641834807],[-71.352687708,41.641771496],[-71.35270105,41.641709514],[-71.352721298,41.641640429],[-71.352724871,41.641624288],[-71.352762243,41.641573405],[-71.352783279,41.641519804],[-71.352803564,41.641448134],[-71.352823859,41.641371982],[-71.352841632,41.641291939],[-71.352854898,41.641236383],[-71.352869933,41.641180853],[-71.352882341,41.641127286],[-71.352895603,41.641073697],[-71.352912492,41.640993584],[-71.352922375,41.640937407],[-71.35293223,41.640880566],[-71.352937758,41.640822439],[-71.352946767,41.64076235],[-71.352954924,41.640701001],[-71.352956151,41.640644127],[-71.352950517,41.640587884],[-71.35293712,41.640526416],[-71.352921175,41.640459778],[-71.352904416,41.640388632],[-71.352888504,41.640320735],[-71.352877661,41.640262542],[-71.352859208,41.64018618],[-71.352847456,41.640138963],[-71.352821122,41.640082647],[-71.352803422,41.640023118],[-71.352791859,41.639946834],[-71.352784494,41.639887319],[-71.352769398,41.639822693],[-71.352748374,41.639750879],[-71.35272992,41.63967454],[-71.352714016,41.639603373],[-71.352698913,41.639541949],[-71.352681138,41.639488847],[-71.352661021,41.63940672],[-71.352652817,41.639341394],[-71.352642944,41.639272224],[-71.352630441,41.639206916],[-71.352611936,41.639140274],[-71.352589152,41.63906457],[-71.352564749,41.638977246],[-71.352539462,41.638889875],[-71.352515016,41.638807743],[-71.352490558,41.63873135],[-71.352466956,41.638653724],[-71.352444209,41.638575436],[-71.352416315,41.638495197],[-71.352387498,41.638418204],[-71.352357863,41.638339221],[-71.352329972,41.638257679],[-71.352302885,41.638184576],[-71.352279238,41.638113399],[-71.352261592,41.638044174],[-71.352245687,41.637973692],[-71.352226298,41.637907049],[-71.35220172,41.637843623],[-71.352176347,41.637780837],[-71.352150071,41.637712881],[-71.352125622,41.637632646],[-71.352103785,41.637543405],[-71.352082778,41.637464478],[-71.352063432,41.637392643],[-71.352044084,41.637321495],[-71.352022148,41.637249016],[-71.351999389,41.637176559],[-71.351979151,41.637107971],[-71.351958024,41.637041965],[-71.351933482,41.636975955],[-71.351906388,41.636906077],[-71.351883606,41.636830373],[-71.351864251,41.636762426],[-71.351843103,41.636705477],[-71.351800531,41.636632285],[-71.351765528,41.636581745],[-71.351728011,41.636524088],[-71.351689651,41.636461925],[-71.351657335,41.636396523],[-71.351624171,41.636328558],[-71.351587598,41.636257958],[-71.351554483,41.636182264],[-71.351530877,41.636107176],[-71.35150631,41.636039245],[-71.351476574,41.635978351],[-71.351443399,41.635915554],[-71.351410266,41.635847589],[-71.351377139,41.63577704],[-71.351348271,41.635710338],[-71.351327184,41.635640468],[-71.351306127,41.635570597],[-71.351283343,41.635496173],[-71.351257996,41.63542305],[-71.351231766,41.635349285],[-71.351207227,41.635282635],[-71.351184304,41.635228908],[-71.351153773,41.635156395],[-71.3511343,41.635100751],[-71.351119154,41.635045776],[-71.351116118,41.634987593],[-71.351115277,41.634981783],[-71.351116542,41.634922324],[-71.351131673,41.634851288],[-71.351138933,41.634796365],[-71.351145348,41.634737576],[-71.351164031,41.634646557],[-71.351191966,41.634588459],[-71.351215592,41.634534907],[-71.351241785,41.634478796],[-71.351276635,41.634422697],[-71.351279468,41.634383937],[-71.3512781,41.634329003],[-71.351243132,41.634277181],[-71.35116501,41.634234222],[-71.351095425,41.634203602],[-71.351020648,41.634176816],[-71.35094162,41.634143553],[-71.35086005,41.634101894],[-71.350793952,41.634066109],[-71.350642253,41.633952456],[-71.350559021,41.633904322],[-71.350481802,41.633853612],[-71.35041843,41.6337991],[-71.350348183,41.633738748],[-71.350295205,41.633671992],[-71.35024566,41.633609745],[-71.350190046,41.633549457],[-71.350143096,41.633485956],[-71.350101252,41.633428888],[-71.350054161,41.633386724],[-71.350008814,41.633341955],[-71.349968668,41.633289463],[-71.349953282,41.633272589],[-71.349907943,41.633224595],[-71.349853125,41.633175949],[-71.349807785,41.633127932],[-71.349767636,41.633076744],[-71.349607607,41.632915854],[-71.349552727,41.632880746],[-71.349503904,41.632836636],[-71.349461167,41.632784117],[-71.349423613,41.632731011],[-71.349392945,41.632679812],[-71.349329997,41.632601287],[-71.349244946,41.632498057],[-71.34919039,41.632455289],[-71.349124568,41.632406582],[-71.349060602,41.632346786],[-71.348998345,41.632286329],[-71.348929177,41.632221906],[-71.348874655,41.632177834],[-71.348810521,41.632137636],[-71.348806655,41.632135321],[-71.348741148,41.632096106],[-71.348670848,41.632059811],[-71.348593596,41.632024147],[-71.348506784,41.631983828],[-71.348416577,41.631935661],[-71.348324636,41.631885524],[-71.348237022,41.631836696],[-71.348154613,41.631790528],[-71.348080068,41.631745057],[-71.348001981,41.631702165],[-71.347920376,41.631664505],[-71.347839649,41.631629454],[-71.347765795,41.631600975],[-71.34769537,41.631579705],[-71.347628526,41.631551922],[-71.347547689,41.631524714],[-71.347475353,41.63152503],[-71.347412375,41.631551543],[-71.347340721,41.63157274],[-71.347257968,41.631569725],[-71.347188379,41.63155566],[-71.347096914,41.631549981],[-71.347026827,41.63159215],[-71.346944672,41.631619873],[-71.346846867,41.631639685],[-71.34677081,41.631666775],[-71.346709437,41.63171026],[-71.346672686,41.631756864],[-71.346656543,41.631777357],[-71.346603884,41.631822225],[-71.34654514,41.631862488],[-71.346498584,41.631904757],[-71.346429251,41.631962593],[-71.346347789,41.632006005],[-71.346278669,41.632038387],[-71.346227633,41.632093045],[-71.346217542,41.632131887],[-71.346213204,41.632148553],[-71.346173579,41.632198721],[-71.346138244,41.632252166],[-71.346100317,41.63230627],[-71.346033572,41.632364795],[-71.345949643,41.632394458],[-71.345893528,41.632431431],[-71.345849549,41.632478964],[-71.345799393,41.63253495],[-71.345748391,41.632587664],[-71.345696591,41.632629903],[-71.345625702,41.632662236],[-71.345526271,41.632672874],[-71.345445218,41.632672468],[-71.345351971,41.632672045],[-71.345256143,41.63266764],[-71.34515334,41.632660595],[-71.345043546,41.632658114],[-71.34493024,41.632658213],[-71.344823029,41.632658983],[-71.344728011,41.632659861],[-71.344643433,41.632667271],[-71.344551852,41.632671424],[-71.344446414,41.632670229],[-71.344331417,41.632663784],[-71.344215571,41.632655371],[-71.344097142,41.632643685],[-71.343990428,41.632627668],[-71.343975314,41.632625407],[-71.343856084,41.632604571],[-71.343730748,41.632587614],[-71.343594076,41.63256927],[-71.343454824,41.632546371],[-71.343323411,41.632521539],[-71.343185938,41.632494046],[-71.343113731,41.63247867],[-71.343042406,41.632463959],[-71.34290578,41.632439074],[-71.342763051,41.63241745],[-71.342688182,41.632405958],[-71.342611579,41.632393138],[-71.342536809,41.632378422],[-71.342462836,41.632362335],[-71.34238978,41.632345014],[-71.342314984,41.632328926],[-71.342237534,41.632313497],[-71.342160082,41.632298732],[-71.342082661,41.632283989],[-71.342006097,41.632267921],[-71.3419313,41.632251855],[-71.341857358,41.632235813],[-71.341782532,41.632219107],[-71.34170597,41.632202353],[-71.341630322,41.632185668],[-71.341555497,41.632168962],[-71.341485915,41.632152263],[-71.341415479,41.632135563],[-71.341372737,41.632125304],[-71.341345898,41.632118863],[-71.341275501,41.632098893],[-71.34120511,41.632076315],[-71.341139052,41.632052462],[-71.341073906,41.632029251],[-71.34094262,41.631990695],[-71.340806959,41.631958673],[-71.34066772,41.631931151],[-71.340532015,41.631905006],[-71.340396287,41.631875522],[-71.340326739,41.631857518],[-71.340256279,41.631838873],[-71.340188472,41.631819569],[-71.340057174,41.631786248],[-71.339918849,41.631759436],[-71.339849263,41.631744679],[-71.339777944,41.631727977],[-71.339705743,41.631710633],[-71.339667267,41.63170118],[-71.339635311,41.631693268],[-71.339565736,41.631673983],[-71.339497078,41.631654014],[-71.339427503,41.631634707],[-71.339359697,41.631615424],[-71.339291889,41.631596782],[-71.339161449,41.631562159],[-71.339027571,41.631524854],[-71.338959732,41.631506235],[-71.338891042,41.631486905],[-71.338823236,41.631467623],[-71.338695482,41.631431699],[-71.338570247,41.631400329],[-71.338445894,41.631369647],[-71.338319808,41.631336949],[-71.338190224,41.631301662],[-71.338058965,41.631265709],[-71.337926755,41.631232362],[-71.33779631,41.631200367],[-71.337677217,41.63116315],[-71.337552166,41.631119362],[-71.337430528,41.631076264],[-71.33731059,41.631035775],[-71.337185438,41.63099592],[-71.337065491,41.630959364],[-71.336952529,41.630920898],[-71.336846555,41.630879834],[-71.336747523,41.63084141],[-71.336650216,41.630808271],[-71.336545885,41.630780291],[-71.33644942,41.630751658],[-71.336362529,41.630722468],[-71.336275601,41.630695221],[-71.33617733,41.630669902],[-71.336073848,41.630643889],[-71.335970444,41.630611312],[-71.335871412,41.630573574],[-71.335779323,41.630538429],[-71.335694245,41.630503363],[-71.33561346,41.630470293],[-71.335535329,41.63043654],[-71.335458937,41.630402149],[-71.335377305,41.630366447],[-71.335294038,41.630326787],[-71.33521422,41.63028521],[-71.335136136,41.63024494],[-71.335057169,41.630204645],[-71.334976461,41.630165697],[-71.334895709,41.63013194],[-71.334812334,41.630098842],[-71.334731587,41.630063141],[-71.334663059,41.630029425],[-71.334586674,41.629992426],[-71.334516331,41.62996527],[-71.334449428,41.629939446],[-71.33435728,41.629916101],[-71.334258913,41.629905142],[-71.334157037,41.629895504],[-71.334060369,41.629887818],[-71.333975815,41.629886735],[-71.333900861,41.629886352],[-71.333835469,41.62988994],[-71.333794393,41.629908496],[-71.333772436,41.629924313],[-71.333743273,41.629968615],[-71.333715587,41.630043015],[-71.333683566,41.630120015],[-71.333673572,41.63016574],[-71.333661713,41.630225824],[-71.333696967,41.630278337],[-71.333758471,41.63031719],[-71.33384214,41.630318912],[-71.333923368,41.63029776],[-71.33400815,41.630269388],[-71.334079683,41.630260595],[-71.334166862,41.630260377],[-71.33425393,41.630268004],[-71.334340226,41.630267145],[-71.334418867,41.630244618],[-71.334508856,41.630218287],[-71.334588044,41.630231757],[-71.334683735,41.6302525],[-71.334767277,41.630267965],[-71.334841094,41.630295789],[-71.334921841,41.63033149],[-71.335008644,41.630371179],[-71.335088506,41.630407519],[-71.335158803,41.630441215],[-71.335227283,41.630482112],[-71.335294877,41.630524266],[-71.335352985,41.630556618],[-71.335427594,41.630596861],[-71.335494423,41.630627921],[-71.335565738,41.630645267],[-71.335644884,41.630663333],[-71.335687202,41.630707989],[-71.335699804,41.630762985],[-71.335680129,41.630816494],[-71.33565607,41.630879808],[-71.335619793,41.630941092],[-71.33555758,41.630976771],[-71.335479735,41.631009706],[-71.335414971,41.631041447],[-71.335348441,41.631072477],[-71.335273134,41.631114632],[-71.335243971,41.631158911],[-71.335295892,41.631202987],[-71.335376818,41.631217144],[-71.335471754,41.631223501],[-71.335565043,41.631218717],[-71.335641942,41.631197536],[-71.335689399,41.631151362],[-71.33572306,41.631088084],[-71.335743718,41.631019505],[-71.335766159,41.630945097],[-71.33578948,41.630871994],[-71.335838842,41.630807481],[-71.33591486,41.630785612],[-71.335994808,41.630812187],[-71.336074753,41.630840041],[-71.336158174,41.630867901],[-71.336245101,41.630895171],[-71.33633548,41.63091977],[-71.336416363,41.630938523],[-71.33648941,41.630957815],[-71.336577269,41.630978522],[-71.336644995,41.631005033],[-71.336700472,41.631041268],[-71.33676371,41.631082774],[-71.336842896,41.631097546],[-71.336919411,41.631120181],[-71.336989634,41.631159753],[-71.337028612,41.631187389],[-71.337044899,41.631220184],[-71.337040918,41.631275728],[-71.337026354,41.631345642],[-71.336999729,41.63139976],[-71.33694173,41.631456371],[-71.336884671,41.631503172],[-71.336829265,41.631559124],[-71.336779944,41.631619658],[-71.336750656,41.631677704],[-71.336749218,41.631740479],[-71.336809825,41.631785892],[-71.336871416,41.631815618],[-71.33694776,41.631857852],[-71.337021609,41.631886338],[-71.337070917,41.631927779],[-71.337125428,41.63197316],[-71.337192134,41.632017942],[-71.337260609,41.632062131],[-71.337299253,41.632028933],[-71.33734129,41.632004317],[-71.337402362,41.631998091],[-71.337477199,41.63200954],[-71.33755456,41.632035446],[-71.337630912,41.632075073],[-71.337715948,41.632116015],[-71.337797165,41.632099389],[-71.337872975,41.632099793],[-71.337953108,41.632102147],[-71.338002971,41.632080835],[-71.338017351,41.632035116],[-71.337986972,41.632017967],[-71.337912095,41.632010406],[-71.337851531,41.631959756],[-71.3378503,41.631903541],[-71.337879593,41.631842864],[-71.337934997,41.631787575],[-71.337982412,41.631745288],[-71.338030967,41.631673615],[-71.338054621,41.631661939],[-71.338091152,41.631668669],[-71.338152486,41.631631066],[-71.338220718,41.631601935],[-71.338280564,41.631634928],[-71.338321867,41.631696597],[-71.338378127,41.631737429],[-71.338446715,41.631773065],[-71.338510765,41.631819808],[-71.33857217,41.631875719],[-71.338638155,41.631904147],[-71.338702794,41.631885484],[-71.338754722,41.63183019],[-71.338799554,41.631784606],[-71.338820458,41.631787334],[-71.338821093,41.631814138],[-71.338804845,41.631875519],[-71.338786088,41.63192839],[-71.338768053,41.631997613],[-71.338719073,41.632019614],[-71.338658595,41.632056577],[-71.338644161,41.632111444],[-71.338643831,41.632121506],[-71.33864186,41.632178791],[-71.338612568,41.632238805],[-71.338595421,41.632306086],[-71.338575697,41.63236808],[-71.338550719,41.632434],[-71.338544999,41.632490846],[-71.338576743,41.632547241],[-71.338633753,41.632605752],[-71.338710119,41.632640095],[-71.338801586,41.632645117],[-71.338810681,41.632702052],[-71.33881627,41.632758982],[-71.338840941,41.632828425],[-71.338850924,41.632883371],[-71.338850454,41.632937663],[-71.338843755,41.633008228],[-71.338793473,41.633075325],[-71.338752921,41.633128074],[-71.338709745,41.633181482],[-71.338665718,41.633234226],[-71.338606759,41.633296714],[-71.338551474,41.633340912],[-71.338463263,41.633362056],[-71.338386491,41.633368237],[-71.338301869,41.633380239],[-71.338217351,41.633375249],[-71.338157582,41.633335052],[-71.338072301,41.633318283],[-71.338045603,41.633279596],[-71.33801546,41.633240836],[-71.337938005,41.633227394],[-71.337918448,41.633173669],[-71.337926879,41.633105713],[-71.337955415,41.633031336],[-71.337979665,41.63295167],[-71.337991476,41.63289744],[-71.33801222,41.632818433],[-71.338037243,41.632746635],[-71.338018538,41.632693552],[-71.337951497,41.632684721],[-71.337861687,41.632687567],[-71.337787528,41.632696999],[-71.337713476,41.632712652],[-71.337634924,41.632735616],[-71.337570096,41.632768342],[-71.337514669,41.632808194],[-71.337473231,41.63282483],[-71.337392423,41.632799354],[-71.337315914,41.632773814],[-71.337239438,41.63274704],[-71.337169817,41.63272158],[-71.337107769,41.632727758],[-71.337045493,41.632763758],[-71.337021139,41.632799171],[-71.337093316,41.632825985],[-71.337165486,41.632855977],[-71.337195293,41.632906515],[-71.33721467,41.632971172],[-71.33722886,41.63303781],[-71.337232673,41.63310958],[-71.33721931,41.633174808],[-71.337183635,41.633226991],[-71.33714022,41.633277905],[-71.337097691,41.633328135],[-71.337048204,41.633381579],[-71.336995366,41.63342212],[-71.336945951,41.633471037],[-71.336905132,41.633519988],[-71.336864319,41.633566401],[-71.336820054,41.633615965],[-71.336783535,41.633664327],[-71.336746152,41.633716508],[-71.336719108,41.633766805],[-71.336694609,41.633823555],[-71.336680449,41.633877804],[-71.336670491,41.633946261],[-71.336659638,41.634019268],[-71.336648011,41.634084475],[-71.33663815,41.63413873],[-71.336621381,41.634200065],[-71.336595991,41.634259421],[-71.336567201,41.634312963],[-71.336554745,41.634368518],[-71.336543759,41.634397455],[-71.336536332,41.634416883],[-71.336521158,41.634414438],[-71.33649934,41.634410953],[-71.336484263,41.634345594],[-71.336494126,41.634290699],[-71.336508294,41.634233248],[-71.336519024,41.634173185],[-71.33653238,41.634111205],[-71.336546598,41.634045956],[-71.336558279,41.633983333],[-71.336574195,41.633921357],[-71.336588368,41.633861962],[-71.336606872,41.633801247],[-71.336620183,41.633745076],[-71.33663264,41.633688926],[-71.336644178,41.633634674],[-71.336653155,41.63358044],[-71.336666556,41.633512605],[-71.336689363,41.633449999],[-71.336678565,41.633392444],[-71.336656598,41.633327738],[-71.336649299,41.633260491],[-71.336651476,41.633195225],[-71.336653614,41.633133229],[-71.336654893,41.633073084],[-71.336664727,41.633017548],[-71.336686477,41.632987254],[-71.336722315,41.633039768],[-71.336739104,41.63310314],[-71.336749892,41.633164582],[-71.336775363,41.633218316],[-71.336824371,41.633234051],[-71.336912266,41.63322919],[-71.336990719,41.633221755],[-71.337036642,41.63317926],[-71.337080891,41.633136122],[-71.337105388,41.63307999],[-71.337068658,41.633030723],[-71.33700865,41.632989129],[-71.336955528,41.632948873],[-71.336909395,41.63289312],[-71.336877051,41.632832905],[-71.336876585,41.632776028],[-71.336898478,41.63272506],[-71.336936309,41.632664029],[-71.336963823,41.632608587],[-71.337007041,41.632550629],[-71.337062312,41.632512286],[-71.337128858,41.632475378],[-71.337177155,41.632434396],[-71.337255084,41.632392289],[-71.337263163,41.632367487],[-71.337222662,41.632314967],[-71.337169132,41.632255202],[-71.337118973,41.632212457],[-71.337064465,41.632165749],[-71.337021205,41.632119217],[-71.337014396,41.632111889],[-71.336973057,41.632052827],[-71.336916853,41.632002229],[-71.336822471,41.631932435],[-71.336777393,41.631906071],[-71.336719335,41.631865235],[-71.336664774,41.631827674],[-71.336619872,41.631779722],[-71.336584606,41.631730548],[-71.336564297,41.631661088],[-71.336568283,41.6316036],[-71.336596692,41.631543562],[-71.336611256,41.631473694],[-71.336630139,41.631407742],[-71.336651651,41.631338524],[-71.336663592,41.631269293],[-71.336668456,41.631214367],[-71.336669862,41.631152256],[-71.336652013,41.631098556],[-71.336598342,41.631059053],[-71.336535073,41.631018186],[-71.336461939,41.631008683],[-71.336367722,41.631019343],[-71.336273335,41.631048939],[-71.336198211,41.631066876],[-71.33612397,41.631085478],[-71.336057514,41.631111294],[-71.33599275,41.631143036],[-71.335928836,41.63117606],[-71.335861417,41.631209055],[-71.335794069,41.631238163],[-71.335703989,41.631275632],[-71.335619136,41.631307917],[-71.335535324,41.631325841],[-71.335441226,41.631325363],[-71.335339269,41.631322862],[-71.335251397,41.63130739],[-71.335180889,41.6312959],[-71.335091123,41.631294171],[-71.335014599,41.631275468],[-71.334985483,41.631217795],[-71.334986046,41.631152412],[-71.334994423,41.631094908],[-71.335012335,41.631039406],[-71.335035454,41.630986588],[-71.335078597,41.630934462],[-71.335116521,41.630884981],[-71.33516329,41.630821792],[-71.335215231,41.630761902],[-71.335250536,41.630711732],[-71.335269337,41.630654265],[-71.335248858,41.630604494],[-71.335160197,41.630575918],[-71.335067966,41.63056108],[-71.334975859,41.630533162],[-71.334889096,41.630489562],[-71.334807549,41.63044469],[-71.334715455,41.63041222],[-71.334648506,41.63039225],[-71.334544937,41.630376733],[-71.334470822,41.630382184],[-71.334393111,41.630398812],[-71.334317133,41.63041741],[-71.334245444,41.630439307],[-71.334173826,41.630457225],[-71.334097043,41.630468617],[-71.334022856,41.63047807],[-71.333926051,41.630487375],[-71.333841526,41.630486955],[-71.333765687,41.630486594],[-71.333715236,41.630475887],[-71.333665176,41.630420082],[-71.333602022,41.630370684],[-71.333558062,41.630313584],[-71.333532373,41.630263142],[-71.333528576,41.630199034],[-71.333529977,41.63014017],[-71.333546192,41.630081396],[-71.333578113,41.630019443],[-71.333573474,41.629950759],[-71.333573687,41.629926953],[-71.333564553,41.629875529],[-71.33357645,41.629812815],[-71.333607449,41.629754108],[-71.333658406,41.629709907],[-71.333680124,41.62971593],[-71.33374999,41.629703156],[-71.333812129,41.629672784],[-71.333877825,41.629633886],[-71.333925314,41.629587027],[-71.333957962,41.629538796],[-71.333964485,41.629491077],[-71.333899525,41.629444993],[-71.333825677,41.629417809],[-71.333742968,41.629410874],[-71.333655608,41.629434623],[-71.333575025,41.62947805],[-71.333498748,41.629529968],[-71.333420819,41.629572712],[-71.333316954,41.629589851],[-71.333229847,41.629586157],[-71.333138432,41.62957459],[-71.33304713,41.629554515],[-71.332957544,41.629531172],[-71.332869724,41.629508518],[-71.33278541,41.629485869],[-71.332702844,41.629458649],[-71.332621163,41.62943143],[-71.332535162,41.629400934],[-71.332447437,41.629365175],[-71.332365873,41.629328168],[-71.332291267,41.629287923],[-71.332216663,41.629246992],[-71.332140344,41.629209352],[-71.332063925,41.629174982],[-71.331989304,41.629140569],[-71.331918087,41.62911014],[-71.331845161,41.629080349],[-71.331769618,41.62904925],[-71.331692384,41.629011585],[-71.331612569,41.628970647],[-71.331533641,41.628928405],[-71.331459075,41.62888489],[-71.331382739,41.628841989],[-71.331302921,41.628802354],[-71.331223993,41.628760135],[-71.331152088,41.628713353],[-71.33108362,41.62866916],[-71.331010784,41.628628917],[-71.330937021,41.62859327],[-71.330869355,41.628557608],[-71.330805202,41.628518704],[-71.330737615,41.628475885],[-71.330667406,41.628433679],[-71.330597159,41.62839408],[-71.330529534,41.628354507],[-71.330461914,41.628312968],[-71.330391744,41.628267515],[-71.330320727,41.62821943],[-71.330254923,41.628171352],[-71.330191711,41.628122661],[-71.330125905,41.628075247],[-71.330056582,41.628032402],[-71.329990695,41.627992832],[-71.329928283,41.627953312],[-71.329865903,41.627913084],[-71.329800899,41.627873538],[-71.329736748,41.627834657],[-71.329674329,41.627797722],[-71.329615382,41.627762095],[-71.32955555,41.62772649],[-71.329496674,41.627686953],[-71.329442126,41.627647468],[-71.329360663,41.627596714],[-71.329273917,41.62754984],[-71.329191604,41.627497804],[-71.329122381,41.627440551],[-71.329068006,41.627382084],[-71.329012707,41.627326864],[-71.328946108,41.627268996],[-71.328897658,41.627228857],[-71.328849243,41.62718746],[-71.32880342,41.62714538],[-71.32873338,41.627086158],[-71.328660678,41.627030866],[-71.328598348,41.626984142],[-71.328533304,41.626949146],[-71.328483753,41.626933864],[-71.328422762,41.626933568],[-71.328326019,41.62693308],[-71.328251952,41.626932718],[-71.328175179,41.626941499],[-71.328102041,41.626935878],[-71.328021256,41.626906027],[-71.327959769,41.626863238],[-71.327914881,41.626813956],[-71.32787062,41.626792186],[-71.327848542,41.626727341],[-71.327836017,41.626669051],[-71.327834806,41.626608903],[-71.327801384,41.626545985],[-71.327752985,41.626498641],[-71.327692424,41.626451919],[-71.327632767,41.626397332],[-71.32758606,41.626355914],[-71.327534132,41.626317736],[-71.327477776,41.626282798],[-71.327424079,41.626245234],[-71.327366224,41.626189369],[-71.327323159,41.626130987],[-71.327271379,41.62607186],[-71.327205713,41.626008116],[-71.327157339,41.625963379],[-71.327106341,41.625919324],[-71.327050998,41.625870666],[-71.326989605,41.625816076],[-71.326927368,41.625758214],[-71.326864278,41.625699711],[-71.326806401,41.625641215],[-71.326753763,41.625584099],[-71.326704557,41.625531517],[-71.326656159,41.625484859],[-71.326605128,41.625442084],[-71.326551473,41.625400632],[-71.32601812,41.624818599],[-71.325967506,41.624734683],[-71.325673521,41.624376834],[-71.325415539,41.623994957],[-71.325386477,41.623932685],[-71.325350483,41.623864502],[-71.325309201,41.623801548],[-71.325275823,41.623735336],[-71.325254682,41.623663265],[-71.3252396,41.623593879],[-71.325227967,41.623533692],[-71.325226756,41.623474183],[-71.325228182,41.623408779],[-71.325247956,41.623343517],[-71.325294659,41.623283578],[-71.325343072,41.623233522],[-71.32539494,41.623179469],[-71.325445096,41.623127425],[-71.325488245,41.623074045],[-71.325517495,41.623021238],[-71.32554856,41.62296187],[-71.325584933,41.622889452],[-71.325623922,41.62281905],[-71.325669728,41.622763684],[-71.325720613,41.622723397],[-71.325773265,41.622683798],[-71.325795805,41.622598232],[-71.32578938,41.622539356],[-71.325756812,41.622477742],[-71.325768765,41.622407848],[-71.325793665,41.622351741],[-71.325822974,41.622287797],[-71.325847111,41.622220574],[-71.325859812,41.62216701],[-71.325871682,41.622104961],[-71.32588532,41.622042913],[-71.325897145,41.621986741],[-71.325909815,41.621933177],[-71.325919865,41.621879632],[-71.325931901,41.621801208],[-71.325945703,41.621723495],[-71.325969043,41.621646438],[-71.325992372,41.621573336],[-71.326021759,41.621502897],[-71.326053771,41.621431067],[-71.326072537,41.621377581],[-71.326087833,41.621322077],[-71.326103205,41.621261336],[-71.326116846,41.621197985],[-71.326123512,41.621133275],[-71.32613017,41.621071194],[-71.326138529,41.621011723],[-71.326150383,41.620955551],[-71.326160434,41.620901342],[-71.326157483,41.620842472],[-71.326149369,41.620777076],[-71.326143892,41.620705738],[-71.32614454,41.620634477],[-71.326145184,41.620565184],[-71.326145759,41.620498474],[-71.326148134,41.62043115],[-71.326164401,41.620365859],[-71.326178935,41.62029924],[-71.326184754,41.620231921],[-71.326186212,41.620165876],[-71.326196423,41.620097283],[-71.326205839,41.620018215],[-71.326215297,41.619935213],[-71.326228185,41.619856813],[-71.326231512,41.619775768],[-71.326234024,41.619691384],[-71.326241707,41.619611032],[-71.326247641,41.619534565],[-71.326257047,41.619459385],[-71.326262994,41.619378344],[-71.326267249,41.619292064],[-71.326274085,41.619209058],[-71.326286085,41.619132646],[-71.326296331,41.619062064],[-71.326306551,41.6189902],[-71.326321132,41.618917017],[-71.326334855,41.618845799],[-71.326343339,41.61877327],[-71.326344926,41.618692841],[-71.326345753,41.618600655],[-71.32634661,41.618508492],[-71.326347288,41.618426072],[-71.326349786,41.61834697],[-71.326361785,41.618270535],[-71.32637725,41.618197399],[-71.326388392,41.618122244],[-71.3263943,41.618044474],[-71.326400322,41.617958196],[-71.326410717,41.617866071],[-71.326426353,41.617774571],[-71.326445418,41.617688381],[-71.326468794,41.617608694],[-71.32649645,41.617534981],[-71.326522364,41.617463187],[-71.326547457,41.617390706],[-71.326569872,41.617316917],[-71.326593238,41.617240545],[-71.326614885,41.61715763],[-71.32663649,41.617078626],[-71.326658091,41.617001565],[-71.326681417,41.616928464],[-71.32670641,41.616859276],[-71.326728848,41.616788117],[-71.326747782,41.616716266],[-71.326762363,41.616643106],[-71.326780449,41.616569311],[-71.326805561,41.616489671],[-71.326835028,41.616410724],[-71.326862684,41.616336966],[-71.326894648,41.616270418],[-71.326927417,41.616210435],[-71.326957597,41.616149785],[-71.326979022,41.616092346],[-71.327110112,41.615858268],[-71.32714893,41.615804194],[-71.327182459,41.615755967],[-71.327246538,41.615702663],[-71.327316614,41.615663136],[-71.327347523,41.615614927],[-71.327348045,41.615556062],[-71.32735648,41.615490096],[-71.327379684,41.615428086],[-71.327412618,41.615351774],[-71.327429649,41.615296273],[-71.327448449,41.615240111],[-71.327474184,41.615189242],[-71.327509702,41.615114878],[-71.327511924,41.615058645],[-71.32752027,41.615003107],[-71.327537328,41.614948955],[-71.327557824,41.614896729],[-71.327595929,41.614823672],[-71.327637489,41.614757848],[-71.327681639,41.614692073],[-71.3277414,41.614634805],[-71.327801208,41.61457102],[-71.327865352,41.614515795],[-71.327915374,41.614476146],[-71.327962751,41.614434525],[-71.328005023,41.614386997],[-71.328041183,41.614334886],[-71.328076514,41.614284717],[-71.328114435,41.61423453],[-71.328156716,41.614183777],[-71.328199813,41.614135564],[-71.328245557,41.614088773],[-71.328290384,41.614043192],[-71.328356271,41.613985339],[-71.328426447,41.6139301],[-71.328495003,41.61386507],[-71.328534666,41.613812941],[-71.328567383,41.613760138],[-71.328603748,41.613687741],[-71.328621661,41.613632287],[-71.328663137,41.613574283],[-71.32871228,41.613532688],[-71.328787603,41.613489897],[-71.328819349,41.613446904],[-71.328823719,41.613350172],[-71.328860716,41.613303276],[-71.328924618,41.613269593],[-71.328987634,41.613236549],[-71.329049878,41.613195682],[-71.329082599,41.613140913],[-71.329090993,41.613078171],[-71.329135985,41.613015644],[-71.329186902,41.612971422],[-71.329235274,41.612921318],[-71.32927938,41.612859407],[-71.329324368,41.612798206],[-71.329377137,41.612744861],[-71.329424675,41.612687552],[-71.329459294,41.612617737],[-71.329484312,41.612548594],[-71.329515425,41.612479437],[-71.329558684,41.612414918],[-71.329610702,41.612345837],[-71.329657515,41.612274165],[-71.329665982,41.612206187],[-71.329662138,41.612149945],[-71.329683402,41.612094632],[-71.329694233,41.612066404],[-71.329747856,41.61201242],[-71.32976331,41.61194125],[-71.329764714,41.611882386],[-71.329787919,41.611819072],[-71.329829401,41.611757797],[-71.329863977,41.611692602],[-71.329887218,41.61162668],[-71.329892188,41.611556067],[-71.329884112,41.611486714],[-71.329884724,41.611416117],[-71.32988529,41.611351374],[-71.329885853,41.611287958],[-71.329888183,41.611224544],[-71.329905208,41.611170346],[-71.330009436,41.611108112],[-71.330075963,41.611071848],[-71.330138124,41.611038161],[-71.330181244,41.610991297],[-71.33018222,41.61097952],[-71.330185388,41.610921985],[-71.33017258,41.610890544],[-71.330102047,41.610886277],[-71.330033425,41.610861728],[-71.329961459,41.610822789],[-71.329906174,41.610767615],[-71.329882398,41.610700801],[-71.329855879,41.610645737],[-71.329821456,41.610595213],[-71.329778385,41.610542024],[-71.329737866,41.610492131],[-71.329699075,41.610445488],[-71.329655891,41.610400829],[-71.329599753,41.610345607],[-71.329561043,41.610291807],[-71.329527582,41.610234743],[-71.329500252,41.610175128],[-71.329475478,41.610117437],[-71.329451624,41.610057163],[-71.329434793,41.609991686],[-71.329428207,41.609958401],[-71.329421441,41.609924292],[-71.329415915,41.609858854],[-71.329411225,41.609799981],[-71.329404784,41.609642378],[-71.329405262,41.609588086],[-71.329409283,41.609530575],[-71.329415197,41.609448917],[-71.329428945,41.609377699],[-71.329445332,41.609299303],[-71.329485681,41.60919366],[-71.329494215,41.609134921],[-71.329506293,41.609072894],[-71.329520138,41.60901087],[-71.329555143,41.608944394],[-71.329580365,41.608889682],[-71.329612717,41.60882382],[-71.329650374,41.608756662],[-71.329673789,41.608705263],[-71.329712286,41.608643412],[-71.329746367,41.608580228],[-71.32977702,41.608511025],[-71.329811144,41.608443199],[-71.329856679,41.608381358],[-71.329905714,41.608320872],[-71.329952141,41.60825574],[-71.329989198,41.608208066],[-71.330004761,41.608188032],[-71.330064417,41.608120976],[-71.330105402,41.608074337],[-71.330159715,41.608011251],[-71.330209635,41.607950103],[-71.330242783,41.607894145],[-71.330273263,41.607844128],[-71.33031253,41.607790191],[-71.330362443,41.607731696],[-71.330419371,41.607670581],[-71.33047809,41.607612145],[-71.330537671,41.607550393],[-71.330589403,41.607483347],[-71.330633127,41.607426124],[-71.330685537,41.607379524],[-71.330746718,41.607334996],[-71.330810512,41.607293078],[-71.330880376,41.607260432],[-71.330949277,41.60723508],[-71.331013788,41.607210338],[-71.331055702,41.607157114],[-71.331113301,41.607119098],[-71.331183283,41.607075908],[-71.331244343,41.607042586],[-71.331315129,41.60700667],[-71.331367542,41.606958767],[-71.331417297,41.606913444],[-71.331480598,41.606920466],[-71.331531721,41.606911484],[-71.331540367,41.606844192],[-71.331581357,41.606794877],[-71.33162497,41.606744239],[-71.331673071,41.60669036],[-71.33173168,41.606638509],[-71.33179812,41.606597967],[-71.331864526,41.606558706],[-71.331927551,41.60650757],[-71.331988737,41.606460343],[-71.332055262,41.606410516],[-71.332123676,41.606348822],[-71.332199051,41.606293794],[-71.33228143,41.606240102],[-71.332335528,41.606200113],[-71.332385239,41.606159455],[-71.332455381,41.60610108],[-71.332523678,41.606049288],[-71.33259463,41.605995534],[-71.332665542,41.605945736],[-71.332737219,41.60590655],[-71.33281677,41.605873963],[-71.332893629,41.60584535],[-71.332978407,41.605818099],[-71.333051607,41.605802676],[-71.333126614,41.605783278],[-71.333200663,41.605769183],[-71.333282587,41.605761755],[-71.33335474,41.605762134],[-71.333429543,41.605762563],[-71.333494366,41.605793324],[-71.333529914,41.605845084],[-71.333549054,41.605866975],[-71.333576437,41.605859216],[-71.333627158,41.6058047],[-71.333661999,41.605752013],[-71.33370129,41.605698738],[-71.33371308,41.605663834],[-71.333696637,41.605635978],[-71.333643629,41.605655477],[-71.33358821,41.605653179],[-71.33357285,41.605606846],[-71.333571735,41.605542763],[-71.3336085,41.605476266],[-71.333667902,41.605434981],[-71.333709285,41.605433257],[-71.333803113,41.605464861],[-71.3341209,41.605543328],[-71.334162972,41.605474872],[-71.334221375,41.605358939],[-71.334143965,41.605353201],[-71.334063288,41.605326328],[-71.334000192,41.605299548],[-71.333938909,41.605266824],[-71.333872422,41.605231441],[-71.333805831,41.605201317],[-71.333735571,41.605187699],[-71.333656588,41.60516547],[-71.333598151,41.605116216],[-71.333559149,41.605057202],[-71.333537685,41.605002924],[-71.333530405,41.60494279],[-71.333526673,41.604877355],[-71.333527369,41.604807992],[-71.333528018,41.604745262],[-71.333538244,41.604690481],[-71.333545333,41.604670847],[-71.333558192,41.604635097],[-71.333582489,41.604583059],[-71.333619213,41.604520518],[-71.333661049,41.604472552],[-71.333710799,41.604427937],[-71.333782225,41.604414479],[-71.333810375,41.60441596],[-71.333812907,41.604426553],[-71.333854852,41.6044552],[-71.333930624,41.604445727],[-71.333992595,41.604411718],[-71.334047697,41.604359198],[-71.33408261,41.604301937],[-71.334119454,41.60422819],[-71.334142875,41.604172811],[-71.334167248,41.604114163],[-71.334195117,41.604058859],[-71.33421769,41.604001489],[-71.334229034,41.603926264],[-71.334237643,41.603860252],[-71.334266522,41.603791114],[-71.334293438,41.603739056],[-71.334322234,41.603678447],[-71.334351923,41.603614547],[-71.334380727,41.603550645],[-71.334410488,41.603482125],[-71.334442028,41.603408965],[-71.334476259,41.603331898],[-71.334506068,41.603256769],[-71.334531446,41.603186253],[-71.334553212,41.603122295],[-71.334577625,41.60305969],[-71.334598509,41.602995091],[-71.334616775,41.602929802],[-71.334636805,41.602865156],[-71.334655953,41.602800554],[-71.334673246,41.602745829],[-71.334684505,41.602679821],[-71.334680662,41.602621704],[-71.334643692,41.60262611],[-71.334569534,41.602648781],[-71.334499361,41.602625925],[-71.334440051,41.602573377],[-71.334421959,41.602534976],[-71.334466524,41.602479742],[-71.33447767,41.602422332],[-71.3344749,41.602349694],[-71.3344669,41.602272978],[-71.334456935,41.602214144],[-71.334445278,41.602149337],[-71.334431009,41.602081874],[-71.334417626,41.602013132],[-71.334405122,41.601946335],[-71.334400182,41.601888285],[-71.33439959,41.601881561],[-71.3344003,41.60181819],[-71.334401803,41.601754752],[-71.334409487,41.601692718],[-71.334419824,41.601630025],[-71.334431901,41.60156603],[-71.334447507,41.601504007],[-71.334469226,41.601446019],[-71.334493563,41.60138936],[-71.334514325,41.601336607],[-71.334546781,41.601262167],[-71.334567617,41.601204177],[-71.334579687,41.60114279],[-71.334589103,41.601082748],[-71.334602863,41.601027355],[-71.334615742,41.600971297],[-71.334625195,41.60090858],[-71.334633808,41.600840601],[-71.334646767,41.600777248],[-71.334669405,41.600717271],[-71.334696362,41.600660616],[-71.334728641,41.60060733],[-71.334766133,41.600553344],[-71.334802773,41.600498761],[-71.334832334,41.600448079],[-71.334879438,41.60040012],[-71.33494932,41.600368798],[-71.334989422,41.600318176],[-71.335013074,41.600243038],[-71.335027755,41.60018497],[-71.335045984,41.600121671],[-71.335064243,41.600058348],[-71.335084235,41.599996378],[-71.335102492,41.599933741],[-71.335124214,41.599874403],[-71.335154701,41.599819102],[-71.335190497,41.599760539],[-71.335222795,41.599699935],[-71.335248014,41.599643255],[-71.335287394,41.599576784],[-71.335315223,41.599524132],[-71.335336945,41.599464817],[-71.335356089,41.599400855],[-71.335374317,41.599337532],[-71.335391692,41.599274231],[-71.33541168,41.599213541],[-71.335435132,41.599156904],[-71.335460349,41.599100864],[-71.335485596,41.59904487],[-71.335507312,41.598987521],[-71.335527189,41.598934789],[-71.335550633,41.598880782],[-71.335575853,41.598823461],[-71.335599418,41.598758202],[-71.33561946,41.598688296],[-71.33563599,41.598621678],[-71.335649828,41.598559035],[-71.335666314,41.598497676],[-71.335684505,41.598437029],[-71.33570184,41.598376999],[-71.335720948,41.598315027],[-71.335739158,41.598258313],[-71.335757344,41.59819961],[-71.335778215,41.598138967],[-71.33580959,41.598081037],[-71.335844537,41.598020483],[-71.335875067,41.59795919],[-71.335905588,41.597901923],[-71.33593957,41.597849303],[-71.335970019,41.597795968],[-71.335994346,41.597741917],[-71.336019532,41.597685922],[-71.336050897,41.597631926],[-71.336080501,41.59757532],[-71.336102301,41.597508732],[-71.336118862,41.597441428],[-71.336126581,41.597376741],[-71.336135958,41.597319329],[-71.336172759,41.597248211],[-71.336221741,41.597191038],[-71.336253149,41.597131782],[-71.336245921,41.597062363],[-71.336224178,41.596949928],[-71.336226551,41.596891156],[-71.336227161,41.596830393],[-71.336227728,41.596774912],[-71.336228293,41.596720094],[-71.336242296,41.596640254],[-71.336263124,41.596584207],[-71.336289152,41.596532193],[-71.336337409,41.596460451],[-71.336378663,41.596386756],[-71.336395114,41.596326724],[-71.336404575,41.596260072],[-71.336415021,41.596188803],[-71.336429822,41.596118866],[-71.336444583,41.596052222],[-71.336455733,41.595992159],[-71.336465991,41.595935411],[-71.336482398,41.595880685],[-71.336502301,41.595828616],[-71.336535523,41.595762754],[-71.336611043,41.595691851],[-71.336658175,41.595643251],[-71.336682713,41.595565484],[-71.336691276,41.595504068],[-71.336699804,41.595444665],[-71.336713566,41.595387305],[-71.336729089,41.595332554],[-71.33674285,41.595275835],[-71.336746305,41.59519854],[-71.336760987,41.595139192],[-71.336816122,41.595081364],[-71.336878292,41.595024919],[-71.336908899,41.594956422],[-71.336927069,41.594903002],[-71.336943443,41.594848938],[-71.336953864,41.594775702],[-71.336936973,41.594708212],[-71.336929691,41.594648055],[-71.336934845,41.594573439],[-71.336945981,41.594518705],[-71.336957978,41.594460633],[-71.336974384,41.594405884],[-71.336983754,41.594350461],[-71.33698432,41.59429498],[-71.336987744,41.594217732],[-71.336999122,41.594139191],[-71.337008502,41.594079789],[-71.337012611,41.594020997],[-71.33701345,41.593941801],[-71.337015874,41.593874408],[-71.336999868,41.593806302],[-71.336992721,41.593728947],[-71.337004893,41.593661636],[-71.337033694,41.593596407],[-71.337023724,41.593538899],[-71.337004227,41.593466146],[-71.336994219,41.593411885],[-71.336986492,41.593371304],[-71.336983364,41.593355016],[-71.336972471,41.593301486],[-71.336977577,41.593233456],[-71.337006291,41.593178793],[-71.337046227,41.593143356],[-71.337046627,41.593105736],[-71.337042165,41.593026441],[-71.337033974,41.592964315],[-71.337018739,41.592904741],[-71.336986046,41.59283389],[-71.336946278,41.592766277],[-71.336915359,41.592692776],[-71.336893011,41.592639138],[-71.336851476,41.592571545],[-71.336815056,41.592517156],[-71.336771669,41.592458777],[-71.33676608,41.592403927],[-71.336784224,41.592348563],[-71.33678748,41.59228977],[-71.336788619,41.592176155],[-71.336789421,41.592099543],[-71.336785605,41.592042067],[-71.336778332,41.591978616],[-71.33676756,41.591913148],[-71.336758523,41.591848391],[-71.336748582,41.591792164],[-71.336736808,41.591737306],[-71.336729491,41.591679092],[-71.336722254,41.591613675],[-71.336714136,41.591546907],[-71.336705982,41.591482151],[-71.336699633,41.5914147],[-71.336695059,41.591344026],[-71.336692285,41.591271983],[-71.336689512,41.591199986],[-71.336684019,41.591131232],[-71.336676818,41.591063162],[-71.336671354,41.590995094],[-71.336669496,41.590922435],[-71.336670229,41.590849139],[-71.336670956,41.59077845],[-71.33667161,41.590712403],[-71.336670527,41.590646332],[-71.336668604,41.590575639],[-71.33666672,41.590501013],[-71.336662177,41.590430293],[-71.336657554,41.590366869],[-71.336649362,41.590305361],[-71.336635937,41.590241216],[-71.336625238,41.590171128],[-71.336620705,41.590096498],[-71.336618825,41.590020546],[-71.336615199,41.589948501],[-71.336612432,41.589873828],[-71.336609662,41.589800527],[-71.336607612,41.58974367],[-71.336606973,41.589719245],[-71.336607657,41.589653175],[-71.336608303,41.589590445],[-71.336608114,41.589520418],[-71.336603486,41.589458984],[-71.33659972,41.589394234],[-71.336597789,41.589326172],[-71.336592366,41.589254125],[-71.336586137,41.589175467],[-71.33657814,41.589096853],[-71.336570067,41.589024802],[-71.336561914,41.588960024],[-71.33655378,41.588899865],[-71.33654735,41.588840372],[-71.33654704,41.588782237],[-71.336547768,41.588710908],[-71.336550138,41.5886528],[-71.336575358,41.588593489],[-71.336572302,41.588549232],[-71.33653845,41.588504131],[-71.336536604,41.588426829],[-71.336530181,41.588364683],[-71.336523751,41.58830519],[-71.336516398,41.588249652],[-71.336505581,41.588190176],[-71.336492198,41.588122028],[-71.33647716,41.588045371],[-71.336465585,41.587972629],[-71.336454815,41.587907161],[-71.336440502,41.587844981],[-71.336425267,41.587786115],[-71.336410916,41.587727252],[-71.336394762,41.587670352],[-71.336367388,41.587593562],[-71.336338204,41.587522053],[-71.336316738,41.587469743],[-71.336294425,41.587415442],[-71.336272154,41.587356521],[-71.336253427,41.587293671],[-71.336237419,41.587227509],[-71.336220498,41.587160706],[-71.336201808,41.587095204],[-71.336179544,41.587033653],[-71.336159077,41.58697215],[-71.336139458,41.586912569],[-71.336120689,41.586854317],[-71.336105419,41.586797418],[-71.336091911,41.586742512],[-71.33607756,41.586683648],[-71.336059715,41.586621463],[-71.336043684,41.586552671],[-71.336030333,41.586483906],[-71.336016918,41.586416467],[-71.335999138,41.58635227],[-71.335977756,41.58629136],[-71.335956364,41.58623443],[-71.335933178,41.586176171],[-71.335909096,41.586123193],[-71.33586938,41.586048993],[-71.33584703,41.585997345],[-71.335822953,41.585942355],[-71.335793567,41.585890673],[-71.335737083,41.585822304],[-71.335693582,41.585775176],[-71.335654501,41.585726705],[-71.335612735,41.585680243],[-71.335568348,41.585634417],[-71.335523931,41.585588592],[-71.335485776,41.585535525],[-71.335450247,41.585479855],[-71.335418246,41.585426821],[-71.335387133,41.585371821],[-71.335352475,41.585321412],[-71.335311594,41.585274265],[-71.335268103,41.585223798],[-71.335217529,41.585179267],[-71.335137993,41.585132567],[-71.335075083,41.58508795],[-71.335022819,41.585037448],[-71.334974979,41.584984344],[-71.334919148,41.58493514],[-71.334859002,41.584881951],[-71.334800714,41.584816848],[-71.334744154,41.584755111],[-71.334679713,41.58469],[-71.33463175,41.584649451],[-71.334582904,41.584608856],[-71.334518411,41.584552344],[-71.334463344,41.58451437],[-71.334389808,41.584480257],[-71.334340964,41.584439021],[-71.334288623,41.584395105],[-71.334232825,41.58434526],[-71.334178838,41.584290135],[-71.33412135,41.584234319],[-71.334058606,41.584173166],[-71.333989808,41.584109352],[-71.333943626,41.5840635],[-71.333898357,41.584017673],[-71.333853092,41.583970496],[-71.333846143,41.583960583],[-71.333811491,41.583908185],[-71.333747775,41.58385826],[-71.333697168,41.583815695],[-71.33364064,41.583753934],[-71.333584123,41.583688239],[-71.333539106,41.583615951],[-71.333492342,41.583547664],[-71.333448127,41.583483313],[-71.333404884,41.583408421],[-71.333371119,41.583355383],[-71.333332931,41.583304306],[-71.333295624,41.583254556],[-71.333260051,41.583205495],[-71.333226251,41.583154423],[-71.333189825,41.583105361],[-71.333152489,41.583054948],[-71.333118758,41.583000561],[-71.333084996,41.582946219],[-71.333046803,41.582897749],[-71.332984095,41.582835292],[-71.33291877,41.582772169],[-71.332873506,41.582725014],[-71.332824747,41.582675179],[-71.332776875,41.582624041],[-71.332733378,41.58257689],[-71.332675052,41.582516452],[-71.332619383,41.582453365],[-71.332584723,41.582404945],[-71.332550957,41.58235257],[-71.332518078,41.58229887],[-71.332487781,41.582247827],[-71.332455821,41.582192184],[-71.332418523,41.582139095],[-71.332378562,41.582091308],[-71.332334143,41.582048134],[-71.33227056,41.581983046],[-71.332231491,41.581931944],[-71.332195952,41.581882173],[-71.332156876,41.581833747],[-71.332115148,41.581786597],[-71.332074234,41.581742102],[-71.33203247,41.581696942],[-71.33198809,41.581650452],[-71.331941906,41.581606612],[-71.331898407,41.581560763],[-71.331858413,41.581514279],[-71.331815768,41.581468455],[-71.331770508,41.581420637],[-71.331726131,41.58137282],[-71.331682603,41.581327017],[-71.331640878,41.581278518],[-71.331596571,41.581227408],[-71.331550466,41.581176959],[-71.331503477,41.581126485],[-71.331458214,41.581080016],[-71.331390205,41.581019472],[-71.331331885,41.58095773],[-71.331283256,41.580894013],[-71.331225775,41.580837555],[-71.331155945,41.580786293],[-71.331085192,41.5807383],[-71.331014403,41.58069296],[-71.330939273,41.58064169],[-71.330869493,41.580583132],[-71.330802366,41.580523298],[-71.330735277,41.580460811],[-71.33066461,41.580403601],[-71.330595675,41.580348384],[-71.330526731,41.58029646],[-71.330448023,41.580251062],[-71.330367591,41.580201065],[-71.330289845,41.580149127],[-71.330218221,41.580097176],[-71.330155437,41.580042631],[-71.33008392,41.579984733],[-71.330029779,41.579944814],[-71.329972981,41.579907476],[-71.329915262,41.579872789],[-71.329860196,41.579836825],[-71.329803424,41.579801476],[-71.329744813,41.57977008],[-71.329683549,41.579740008],[-71.32961968,41.579704625],[-71.329553197,41.579667226],[-71.329488475,41.579631842],[-71.329427217,41.57959978],[-71.329367767,41.579563146],[-71.32930832,41.57952578],[-71.32922523,41.579479712],[-71.329140326,41.57944025],[-71.329078172,41.579412828],[-71.328986975,41.579380561],[-71.328901951,41.579351641],[-71.328814361,41.579314188],[-71.328752217,41.579283427],[-71.328686536,41.579253964],[-71.328621696,41.579229169],[-71.328555048,41.579208281],[-71.328458644,41.579175365],[-71.328391224,41.579147226],[-71.328323777,41.579117761],[-71.328257171,41.579092916],[-71.328190527,41.579070725],[-71.328114262,41.579047169],[-71.328105459,41.579047133],[-71.32802125,41.57902153],[-71.327945037,41.578990039],[-71.327871388,41.578967814],[-71.327789827,41.578942901],[-71.327698583,41.578917288],[-71.327609139,41.57889035],[-71.327524026,41.578872682],[-71.327439654,41.578862904],[-71.327346511,41.578852473],[-71.327254329,41.578836074],[-71.327164805,41.578816409],[-71.327076933,41.578805322],[-71.326983066,41.578780985],[-71.326884708,41.578761947],[-71.326787225,41.578746157],[-71.326687129,41.578727733],[-71.326579015,41.578723774],[-71.326506862,41.578723368],[-71.326433893,41.578720285],[-71.326332795,41.578712425],[-71.32623519,41.578707909],[-71.326138429,41.578706711],[-71.326045199,41.578706158],[-71.325957208,41.578705637],[-71.325866596,41.578705751],[-71.325771597,41.578706545],[-71.325681788,41.578713933],[-71.3256034,41.578721406],[-71.32552592,41.578730848],[-71.325448337,41.57874491],[-71.325369894,41.578761646],[-71.32530102,41.578787635],[-71.325245133,41.578831575],[-71.325189207,41.578878807],[-71.325127924,41.578935933],[-71.325064841,41.578994338],[-71.325017792,41.579036347],[-71.324967248,41.579075697],[-71.324912328,41.579111016],[-71.32485652,41.579148368],[-71.324806787,41.57919163],[-71.324763235,41.579235634],[-71.324723178,41.579282318],[-71.324676903,41.579330914],[-71.324629805,41.579379509],[-71.324587041,41.57942484],[-71.324525704,41.579490543],[-71.324478615,41.579535844],[-71.324426153,41.579585734],[-71.324374669,41.579634322],[-71.324326736,41.579676329],[-71.324269764,41.579738059],[-71.324218007,41.579808441],[-71.324180533,41.579857096],[-71.324143095,41.579903784],[-71.324103006,41.579951086],[-71.324056801,41.579995748],[-71.324003559,41.580041017],[-71.323948556,41.580084271],[-71.323893595,41.580122951],[-71.323806946,41.580166019],[-71.323713427,41.580192542],[-71.323610377,41.580207157],[-71.323513498,41.58021515],[-71.323423756,41.580219243],[-71.323333988,41.580222033],[-71.323246025,41.580221509],[-71.323159799,41.580221033],[-71.323077104,41.580221203],[-71.32298633,41.580235174],[-71.322887545,41.580260384],[-71.322806534,41.58026847],[-71.322732729,41.580258774],[-71.322676619,41.580238653],[-71.322623401,41.58019672],[-71.322173434,41.579732343],[-71.32210421,41.579707514],[-71.322024302,41.579691175],[-71.321993615,41.579685708],[-71.321921457,41.579686602],[-71.321845592,41.57970661],[-71.321820372,41.579761984],[-71.32181895,41.579814148],[-71.321836794,41.579871052],[-71.321867006,41.579927381],[-71.321914789,41.579985132],[-71.321961886,41.580026348],[-71.322015944,41.580072925],[-71.32207961,41.580125464],[-71.322145084,41.580174072],[-71.322201635,41.580233186],[-71.32225468,41.580293644],[-71.322318226,41.580356771],[-71.32238977,41.580413301],[-71.322460473,41.580465896],[-71.322525944,41.580515853],[-71.322589693,41.580560455],[-71.32265175,41.580600459],[-71.322696079,41.580651595],[-71.322695744,41.580685258],[-71.322662525,41.580747847],[-71.322623315,41.580795813],[-71.322578707,41.580857675],[-71.32254561,41.580908989],[-71.322503745,41.58095894],[-71.322455736,41.581005543],[-71.322411296,41.581050208],[-71.322363317,41.58109681],[-71.322312653,41.581145399],[-71.322260256,41.581192658],[-71.322206175,41.581231956],[-71.322152134,41.581267983],[-71.322095478,41.581301994],[-71.322032709,41.581332657],[-71.321962068,41.581357361],[-71.321888898,41.58137145],[-71.321811427,41.581376293],[-71.321730382,41.581385086],[-71.321644019,41.581400389],[-71.32155766,41.581414434],[-71.3214775,41.58142252],[-71.321398222,41.581431293],[-71.321317169,41.581442739],[-71.321237002,41.581453478],[-71.321159492,41.581461636],[-71.321089009,41.581473076],[-71.320997425,41.581481784],[-71.320908575,41.581481943],[-71.320819687,41.581485349],[-71.320725357,41.581506585],[-71.32064053,41.58153911],[-71.320558304,41.581578272],[-71.320491152,41.581607601],[-71.320418742,41.581632941],[-71.32034641,41.581651673],[-71.3202767,41.581669745],[-71.320212205,41.581696448],[-71.320145612,41.581754867],[-71.320135384,41.581807634],[-71.320151653,41.581850037],[-71.320142551,41.581881034],[-71.320090958,41.581934171],[-71.320045636,41.581977507],[-71.319993312,41.582019482],[-71.319940962,41.582060131],[-71.319890376,41.582101469],[-71.319809751,41.582155818],[-71.31974602,41.582192424],[-71.319678827,41.582225045],[-71.319609872,41.582256336],[-71.319532146,41.582286928],[-71.319455276,41.582316195],[-71.3193741,41.582338823],[-71.319290345,41.58235749],[-71.319204792,41.582376795],[-71.319116615,41.582397399],[-71.319024911,41.582416031],[-71.318930632,41.58242933],[-71.318834624,41.582439996],[-71.318740387,41.582449361],[-71.318648838,41.582456077],[-71.31855722,41.582465447],[-71.318469131,41.582476148],[-71.318386381,41.582484227],[-71.318303638,41.5824897],[-71.318220904,41.582491856],[-71.318140857,41.582491386],[-71.318043202,41.582492124],[-71.317967298,41.582513478],[-71.317954284,41.582581426],[-71.317971401,41.582625134],[-71.318009105,41.582637932],[-71.318088089,41.582658846],[-71.318136647,41.582721906],[-71.318121026,41.58278523],[-71.318088721,41.582845783],[-71.318044151,41.582903024],[-71.317990784,41.582957506],[-71.317924226,41.583013249],[-71.317841917,41.583058995],[-71.317753457,41.583104045],[-71.317685462,41.583128751],[-71.317612243,41.58314812],[-71.317542571,41.583162897],[-71.317463273,41.583177636],[-71.317397931,41.583201043],[-71.31738711,41.583225427],[-71.317399325,41.583236035],[-71.317414001,41.583259935],[-71.317402847,41.583315993],[-71.317344341,41.583356608],[-71.317259533,41.583391761],[-71.317163321,41.583420241],[-71.317093671,41.583437671],[-71.317020459,41.58345441],[-71.31694816,41.58347115],[-71.31687491,41.583490541],[-71.316804339,41.583510599],[-71.316729358,41.583527998],[-71.316650911,41.583543379],[-71.316573314,41.583559424],[-71.316498368,41.583575496],[-71.316426031,41.583594911],[-71.316358928,41.583616278],[-71.316277631,41.583648189],[-71.316221848,41.583684165],[-71.316182551,41.583739424],[-71.316164234,41.583807363],[-71.316171443,41.583875435],[-71.316195417,41.583938982],[-71.316236966,41.584003312],[-71.316275769,41.584079484],[-71.316292762,41.584134421],[-71.316308907,41.584188031],[-71.316315234,41.58425546],[-71.316303027,41.584328029],[-71.316277633,41.584399845],[-71.316249543,41.584476962],[-71.316217109,41.584550093],[-71.316172451,41.584615246],[-71.316111127,41.584671681],[-71.316046379,41.584721502],[-71.315987825,41.584767399],[-71.315940722,41.584814001],[-71.315906015,41.584850788],[-71.315855329,41.584903993],[-71.315836341,41.5849508],[-71.315817975,41.585025326],[-71.315809266,41.585099249],[-71.315802529,41.585154674],[-71.315797517,41.585214081],[-71.315791627,41.585271543],[-71.315776735,41.585345411],[-71.315754919,41.585411996],[-71.315723367,41.585485151],[-71.315687398,41.585558253],[-71.315641816,41.585626674],[-71.315586596,41.585689111],[-71.315531451,41.585746243],[-71.31548781,41.585796188],[-71.315454654,41.58585475],[-71.315442482,41.585925352],[-71.315426907,41.585982089],[-71.315413088,41.586042763],[-71.315396582,41.586105422],[-71.315381923,41.586161498],[-71.315377765,41.586220243],[-71.315377507,41.586246703],[-71.315370308,41.58634638],[-71.315358307,41.586399807],[-71.315344377,41.586467067],[-71.315321589,41.586542912],[-71.315299052,41.58659495],[-71.315275555,41.586652292],[-71.315259972,41.586711636],[-71.315239121,41.586770332],[-71.315205051,41.586828892],[-71.315156979,41.58688345],[-71.315102686,41.586940583],[-71.315046691,41.586996432],[-71.314986244,41.587053486],[-71.314958759,41.587077798],[-71.314923212,41.587109255],[-71.314860115,41.587166373],[-71.314801466,41.587223475],[-71.314743676,41.587277972],[-71.314682458,41.587327821],[-71.314614173,41.587377589],[-71.314537071,41.587431963],[-71.314455548,41.587487656],[-71.314367885,41.587538606],[-71.314276755,41.587587605],[-71.314188288,41.587632012],[-71.314104314,41.587671144],[-71.314026507,41.587705688],[-71.313954934,41.587733016],[-71.313864091,41.587756242],[-71.31380241,41.587765129],[-71.313787037,41.587804006],[-71.31376703,41.58786531],[-71.31373219,41.587915315],[-71.313674563,41.587955266],[-71.313607487,41.587975992],[-71.313614223,41.588006396],[-71.313619668,41.588072521],[-71.313616465,41.588127334],[-71.313595372,41.588205789],[-71.313544601,41.588266242],[-71.313481745,41.588302229],[-71.313447752,41.588354225],[-71.313400099,41.58845299],[-71.313364299,41.588508276],[-71.313333746,41.588571507],[-71.313306583,41.588641992],[-71.313282069,41.588713191],[-71.313268122,41.588785757],[-71.313256792,41.588859013],[-71.313240161,41.588932237],[-71.313220074,41.589000173],[-71.313194752,41.589066088],[-71.313160591,41.589133909],[-71.313118505,41.589202999],[-71.313072041,41.589269451],[-71.313025605,41.58933652],[-71.31298441,41.589403004],[-71.312945908,41.589465512],[-71.312904909,41.589516788],[-71.312853466,41.589556131],[-71.312808096,41.589602094],[-71.312767857,41.589664623],[-71.31273454,41.589735098],[-71.3127136,41.589802347],[-71.312694473,41.589864315],[-71.312659508,41.589925526],[-71.312613964,41.589989349],[-71.31255608,41.590053724],[-71.312491111,41.590124674],[-71.312429596,41.590201599],[-71.312386594,41.590271349],[-71.312352587,41.590327301],[-71.312307167,41.590379873],[-71.31225556,41.590433052],[-71.312217102,41.590490278],[-71.312204178,41.590545692],[-71.312213995,41.590616444],[-71.312210875,41.590662681],[-71.312184926,41.590702798],[-71.312107908,41.590747268],[-71.312043151,41.590797086],[-71.312003925,41.590845712],[-71.311972416,41.590912256],[-71.311948701,41.590990729],[-71.31192409,41.591073156],[-71.311895031,41.591156194],[-71.311864235,41.591239206],[-71.311832672,41.591313664],[-71.311804699,41.591378911],[-71.311787302,41.591442871],[-71.311794585,41.59150502],[-71.311818522,41.591570535],[-71.311823034,41.591642558],[-71.311810706,41.591723108],[-71.311799252,41.591806906],[-71.31178345,41.591888044],[-71.311760572,41.591971824],[-71.311730617,41.592058794],[-71.311697091,41.592147793],[-71.311658328,41.592236075],[-71.311608149,41.592321639],[-71.311544773,41.592409103],[-71.311476021,41.592501201],[-71.31141084,41.592591291],[-71.311354508,41.592676159],[-71.311302649,41.592752459],[-71.311253516,41.592823503],[-71.311208727,41.592899196],[-71.311167398,41.592978897],[-71.311143569,41.593064619],[-71.31112595,41.5931517],[-71.311101222,41.593242704],[-71.311065071,41.593332956],[-71.311020073,41.593427837],[-71.310969771,41.593523303],[-71.310921309,41.593614816],[-71.310879934,41.5936998],[-71.310844716,41.593783468],[-71.31081211,41.593869815],[-71.310783922,41.593956193],[-71.31076024,41.594032653],[-71.310733109,41.594101194],[-71.310631437,41.594230034],[-71.310557668,41.594296989],[-71.310481283,41.59436259],[-71.310408495,41.594427557],[-71.310337386,41.594491177],[-71.310259266,41.594556135],[-71.310202427,41.59460496],[-71.310177566,41.594626279],[-71.310101134,41.594697163],[-71.310027475,41.594757485],[-71.309950408,41.594805933],[-71.309879503,41.594851715],[-71.309821814,41.594899623],[-71.309777201,41.594955488],[-71.309694945,41.595079831],[-71.309655554,41.595141697],[-71.309610044,41.59520218],[-71.309567226,41.595258734],[-71.309547264,41.595312787],[-71.309537868,41.595368871],[-71.309515321,41.595421571],[-71.309465428,41.59548072],[-71.309352593,41.595497914],[-71.309302113,41.595528659],[-71.309309233,41.59560398],[-71.309317316,41.59567338],[-71.309306783,41.595753246],[-71.309287402,41.595837648],[-71.309255671,41.595925986],[-71.309222986,41.596017616],[-71.309187678,41.596109882],[-71.309155015,41.596204142],[-71.309119712,41.596295104],[-71.309080095,41.596381371],[-71.309037792,41.596469646],[-71.309001685,41.596553975],[-71.308973533,41.596637013],[-71.308944496,41.596720736],[-71.308912808,41.596804455],[-71.308881206,41.596879575],[-71.308851494,41.596944109],[-71.308820994,41.596996795],[-71.308777258,41.597053965],[-71.308731916,41.597097982],[-71.308657587,41.597136485],[-71.308592989,41.597170476],[-71.308521346,41.597206994],[-71.308451447,41.597240908],[-71.308384239,41.597271578],[-71.308294107,41.597306693],[-71.308214674,41.597329338],[-71.308126773,41.59732089],[-71.308072376,41.597305362],[-71.308033404,41.597327595],[-71.308074184,41.597383968],[-71.308045073,41.59747167],[-71.308075317,41.597526013],[-71.308102166,41.597564479],[-71.30809041,41.597594121],[-71.308073041,41.597656777],[-71.308022598,41.597684228],[-71.307990658,41.597708462],[-71.30798477,41.597762585],[-71.307978617,41.59784447],[-71.307969093,41.597912423],[-71.307955982,41.597987665],[-71.307941107,41.598062217],[-71.307919235,41.598132779],[-71.307891214,41.598201959],[-71.30786669,41.598273133],[-71.307849243,41.598341736],[-71.307829267,41.598399745],[-71.307804069,41.598451777],[-71.307789398,41.598508515],[-71.3077905,41.598568618],[-71.307806592,41.598628152],[-71.307822612,41.598691641],[-71.307824509,41.598761008],[-71.307819358,41.598833656],[-71.307811479,41.598911537],[-71.307793945,41.598988738],[-71.307768415,41.599070477],[-71.307741105,41.599156192],[-71.307707684,41.599237895],[-71.307664578,41.599318232],[-71.307610089,41.599394548],[-71.307550369,41.599467471],[-71.307484511,41.599535123],[-71.307412536,41.599600066],[-71.307337993,41.599657778],[-71.307263485,41.599714118],[-71.307234357,41.599734789],[-71.307196101,41.59976194],[-71.307139387,41.599797293],[-71.307066897,41.599830538],[-71.306999095,41.599915956],[-71.30695022,41.599958594],[-71.306928384,41.600027166],[-71.306907523,41.600085197],[-71.306886578,41.600151095],[-71.306866446,41.600220356],[-71.306838501,41.600283589],[-71.306807984,41.600340872],[-71.306782744,41.600396197],[-71.306766134,41.60046942],[-71.306746074,41.600534702],[-71.306697824,41.600602452],[-71.306646291,41.600647052],[-71.306588673,41.600688989],[-71.306527488,41.600731538],[-71.306466264,41.60077674],[-71.306402378,41.600825893],[-71.306342821,41.600884362],[-71.306292847,41.600947466],[-71.306249981,41.601007953],[-71.306209865,41.601055271],[-71.306164272,41.601120418],[-71.30613906,41.601176406],[-71.306115469,41.601240309],[-71.306090093,41.601310179],[-71.306070873,41.601379418],[-71.306048192,41.601444695],[-71.306029903,41.601508653],[-71.306031426,41.601529147],[-71.306010485,41.601593101],[-71.305995687,41.601661021],[-71.305981906,41.601715107],[-71.3059573,41.601792228],[-71.305940603,41.601843267],[-71.305920034,41.60190498],[-71.305899965,41.601972892],[-71.305878058,41.602044071],[-71.30585087,41.602118557],[-71.30581926,41.602194339],[-71.305789462,41.602265481],[-71.305761477,41.60233139],[-71.305740534,41.602395984],[-71.30572046,41.602465222],[-71.305696818,41.60253578],[-71.30567225,41.602610248],[-71.305648525,41.602688078],[-71.30562299,41.602769817],[-71.305593018,41.602858134],[-71.305563935,41.602944486],[-71.305536625,41.603028874],[-71.30550939,41.603108666],[-71.305483897,41.603186425],[-71.305463745,41.603261609],[-71.305450684,41.603328914],[-71.305441986,41.603404827],[-71.305446624,41.603463632],[-71.305477504,41.603539771],[-71.305494538,41.60359009],[-71.30545774,41.603657905],[-71.305425506,41.603707889],[-71.305393221,41.603764505],[-71.305367853,41.603831058],[-71.305347704,41.603904938],[-71.305327514,41.603982112],[-71.305308247,41.604056611],[-71.305290755,41.604128506],[-71.305271535,41.604197105],[-71.305247089,41.60426103],[-71.305225294,41.604324982],[-71.305205278,41.604384957],[-71.305179857,41.604458783],[-71.305174838,41.604516909],[-71.305153887,41.604583469],[-71.305131912,41.604626198],[-71.305127835,41.604634173],[-71.305089401,41.604688766],[-71.305037779,41.604741278],[-71.304975692,41.60478849],[-71.304902154,41.604833601],[-71.30482516,41.604872806],[-71.30474651,41.60490533],[-71.304666948,41.604937213],[-71.3045892,41.604963838],[-71.304511532,41.604983831],[-71.304440094,41.604999284],[-71.3043607,41.605015935],[-71.304299215,41.605014572],[-71.30428063,41.605014152],[-71.304273045,41.605013247],[-71.304221752,41.605007191],[-71.304206195,41.60506324],[-71.304215759,41.605074509],[-71.304287782,41.605087507],[-71.304338568,41.605110257],[-71.304315884,41.605175534],[-71.304279148,41.605232119],[-71.304223215,41.605279341],[-71.304155022,41.605319887],[-71.304077137,41.605361034],[-71.30397565,41.60538819],[-71.303899798,41.605402239],[-71.303816937,41.605416254],[-71.303733199,41.605428278],[-71.303647732,41.605437691],[-71.303561342,41.605449711],[-71.303476718,41.605462441],[-71.3033939,41.605472477],[-71.303318086,41.605483919],[-71.303241343,41.605499979],[-71.303169261,41.605516665],[-71.30306554,41.605536567],[-71.30298319,41.605563183],[-71.30288717,41.605585682],[-71.302822391,41.605585297],[-71.302748646,41.605567675],[-71.302673394,41.605554419],[-71.302692358,41.605630561],[-71.302730632,41.605669757],[-71.302799002,41.60572133],[-71.302864655,41.605774912],[-71.302928675,41.605824511],[-71.302998498,41.60587977],[-71.3030807,41.605952293],[-71.303124447,41.6059853],[-71.303167636,41.606041381],[-71.303186057,41.606055797],[-71.303252341,41.606112376],[-71.303320349,41.606173554],[-71.303393593,41.606236044],[-71.30347037,41.606299296],[-71.303538346,41.606361114],[-71.303596656,41.606424882],[-71.303648752,41.606487977],[-71.303697339,41.606552986],[-71.303738889,41.606617298],[-71.303778668,41.606682933],[-71.303819409,41.606742623],[-71.303857585,41.606794396],[-71.303904401,41.606860729],[-71.303951985,41.606934999],[-71.303991079,41.606985447],[-71.304036309,41.607031949],[-71.304082404,41.607085085],[-71.304127501,41.607145469],[-71.304169895,41.607213075],[-71.304209626,41.607284656],[-71.304245785,41.60735886],[-71.304283785,41.607428471],[-71.304317369,41.607497343],[-71.304350962,41.607563607],[-71.304383691,41.607633164],[-71.304411082,41.607704655],[-71.304428794,41.607772813],[-71.3044343,41.607836262],[-71.304433623,41.607898992],[-71.304432058,41.60796307],[-71.304426076,41.608027095],[-71.304419239,41.608091141],[-71.304417675,41.608155195],[-71.304414347,41.608217944],[-71.30441109,41.608277353],[-71.304406914,41.608338088],[-71.304386971,41.608393467],[-71.304381404,41.608420512],[-71.304299264,41.608537738],[-71.304308352,41.608595934],[-71.304312913,41.608669787],[-71.304311533,41.608733156],[-71.304303058,41.608804998],[-71.304288521,41.60887612],[-71.304268737,41.608949224],[-71.304245433,41.609027512],[-71.304228376,41.609085572],[-71.304208725,41.609144953],[-71.304184717,41.609204259],[-71.304157242,41.609260974],[-71.304129764,41.609318993],[-71.304104877,41.609376376],[-71.304081796,41.609431178],[-71.304061271,41.609487264],[-71.304044204,41.609548571],[-71.304029703,41.609617773],[-71.3040177,41.609697407],[-71.304009973,41.609783635],[-71.304001345,41.609875715],[-71.303988364,41.609966462],[-71.303978099,41.610045459],[-71.303969737,41.610110097],[-71.303954404,41.610172116],[-71.303935559,41.610236713],[-71.303900211,41.610297303],[-71.303854313,41.610369606],[-71.30380938,41.610435371],[-71.303781071,41.610485567],[-71.303780508,41.610550904],[-71.30380784,41.610611807],[-71.303825687,41.610665466],[-71.30383822,41.610723004],[-71.30385074,41.610784499],[-71.303863201,41.610855759],[-71.303875573,41.610936212],[-71.303886172,41.61101856],[-71.303900274,41.611101601],[-71.303914332,41.611188598],[-71.303926624,41.611275546],[-71.303934581,41.61136507],[-71.303932936,41.611455242],[-71.303928669,41.611546027],[-71.303924418,41.61163162],[-71.303923704,41.611716533],[-71.303920319,41.611808006],[-71.303908178,41.611902665],[-71.303894244,41.612005851],[-71.303887549,41.612053065],[-71.303879422,41.612110317],[-71.303868922,41.612216756],[-71.303868412,41.612274249],[-71.303868819,41.612331081],[-71.303869171,41.612385968],[-71.303871351,41.612440859],[-71.303875167,41.612499068],[-71.303879005,41.612559816],[-71.303881956,41.612621935],[-71.303884056,41.612683343],[-71.303885277,41.612742806],[-71.30388565,41.612800964],[-71.303886022,41.612859099],[-71.303885503,41.612919862],[-71.303884978,41.612982592],[-71.303884458,41.613043356],[-71.303883945,41.613102152],[-71.303883422,41.613164242],[-71.30388286,41.613228893],[-71.30388226,41.613296197],[-71.303881691,41.613363501],[-71.303881125,41.613429456],[-71.303878829,41.613493486],[-71.303873056,41.613558129],[-71.303867245,41.613625424],[-71.303862314,41.613694024],[-71.30385828,41.613758006],[-71.303855136,41.613820068],[-71.303852839,41.613884076],[-71.303850539,41.61394941],[-71.303849971,41.614016074],[-71.303849411,41.614080108],[-71.303851505,41.61414346],[-71.303857899,41.614205561],[-71.303865206,41.614268328],[-71.303873323,41.614335006],[-71.303883168,41.614405004],[-71.303894784,41.614473632],[-71.303907292,41.6145397],[-71.303918878,41.614608329],[-71.303928717,41.614680247],[-71.303932426,41.614753436],[-71.303931814,41.614824673],[-71.303931239,41.614893921],[-71.303930637,41.614961888],[-71.303930059,41.6150318],[-71.303929415,41.615103654],[-71.303928815,41.615170958],[-71.30392828,41.615236936],[-71.303929415,41.615304883],[-71.303930535,41.615378067],[-71.303933381,41.615454548],[-71.30393797,41.615529042],[-71.303941688,41.615599623],[-71.303943741,41.615666268],[-71.303944057,41.615732934],[-71.303946082,41.615798938],[-71.303950772,41.615860351],[-71.303959826,41.61591985],[-71.303970609,41.615981982],[-71.303980498,41.61604736],[-71.303990388,41.616112738],[-71.304001169,41.616175533],[-71.30401546,41.616236367],[-71.304033232,41.616295264],[-71.304052743,41.6163535],[-71.304072284,41.616411736],[-71.304091791,41.616471298],[-71.304110443,41.6165315],[-71.30413084,41.616589097],[-71.304151206,41.616646671],[-71.304170745,41.616705571],[-71.304186772,41.616767071],[-71.304200178,41.616828567],[-71.304213589,41.616888737],[-71.304225266,41.616947623],[-71.304238718,41.617003859],[-71.304252175,41.617058792],[-71.30426825,41.617114415],[-71.304286026,41.617172007],[-71.304302096,41.617229597],[-71.304318143,41.617284557],[-71.304333371,41.617338189],[-71.304346799,41.617392481],[-71.304357665,41.617447387],[-71.304366764,41.617502335],[-71.304381576,41.617603031],[-71.304405112,41.617701159],[-71.304430385,41.617799266],[-71.304445229,41.6178993],[-71.304449634,41.617994719],[-71.304443628,41.618086186],[-71.304431487,41.618180845],[-71.304416688,41.618277489],[-71.304396751,41.618370191],[-71.304371659,41.618454331],[-71.30434404,41.618527375],[-71.30431384,41.618597144],[-71.304281071,41.618659682],[-71.304246693,41.618710485],[-71.30420266,41.618769071],[-71.304196935,41.618827858],[-71.30422508,41.618893336],[-71.304260378,41.618941879],[-71.304309511,41.619000898],[-71.304369012,41.619067846],[-71.304412984,41.619120315],[-71.304460359,41.619176083],[-71.304509458,41.619236428],[-71.304560322,41.619297438],[-71.304616406,41.619355851],[-71.304675157,41.619409076],[-71.30473043,41.619463554],[-71.304778666,41.619527167],[-71.304818111,41.619595317],[-71.304848019,41.619662741],[-71.304870957,41.619726906],[-71.304896554,41.619789086],[-71.304934314,41.619850028],[-71.304976451,41.619914912],[-71.30501767,41.619981143],[-71.305058927,41.620044699],[-71.305097568,41.62010697],[-71.305131879,41.620169827],[-71.30515917,41.620235989],[-71.305187305,41.620305354],[-71.305219788,41.620378043],[-71.305253975,41.620452061],[-71.305294226,41.620526066],[-71.305332763,41.620602698],[-71.305368682,41.620677999],[-71.305404641,41.620750694],[-71.305445814,41.620822139],[-71.305494,41.62089291],[-71.305548258,41.62096113],[-71.305607809,41.621022864],[-71.305662154,41.621082577],[-71.305708592,41.621146804],[-71.305754169,41.621213683],[-71.305804986,41.621281234],[-71.305860974,41.621352041],[-71.305922173,41.621423565],[-71.305986036,41.621490521],[-71.306052611,41.621547692],[-71.306113087,41.621606111],[-71.306161292,41.621671028],[-71.306196351,41.621739146],[-71.306229782,41.621801385],[-71.306260668,41.621858382],[-71.306298477,41.621914087],[-71.306351121,41.621972493],[-71.306408048,41.622035503],[-71.306458914,41.622097199],[-71.306507129,41.622158822],[-71.306556226,41.622221132],[-71.306587876,41.622287918],[-71.306609069,41.622355945],[-71.306629333,41.622428567],[-71.306647853,41.622503793],[-71.306666374,41.622578378],[-71.306692742,41.622648426],[-71.306725313,41.62271327],[-71.306763107,41.622774235],[-71.306800907,41.62283321],[-71.30683697,41.622892183],[-71.306870406,41.622953095],[-71.306902948,41.623017275],[-71.306934553,41.623089299],[-71.306966997,41.623165897],[-71.306997669,41.62324446],[-71.307029191,41.623323664],[-71.307065105,41.623402235],[-71.307099289,41.623478196],[-71.307133519,41.623548943],[-71.307167753,41.623618363],[-71.307205462,41.623687813],[-71.307237058,41.623763083],[-71.307259007,41.623843575],[-71.307279148,41.623927288],[-71.307302821,41.624012333],[-71.307329976,41.624094823],[-71.307358057,41.624173336],[-71.307386999,41.624249288],[-71.307418636,41.624321288],[-71.307451095,41.62439329],[-71.307476563,41.624469213],[-71.307497656,41.624550984],[-71.307522234,41.624628873],[-71.307545087,41.624702803],[-71.307564504,41.624774119],[-71.307581378,41.624839531],[-71.307594839,41.624894486],[-71.30763442,41.624949553],[-71.307678446,41.624996144],[-71.307710243,41.62504532],[-71.30774199,41.625100992],[-71.30777369,41.625161924],[-71.307806273,41.62522352],[-71.307839723,41.625280498],[-71.307873205,41.625336835],[-71.307907496,41.625397794],[-71.307945283,41.625461983],[-71.307987399,41.625526248],[-71.308031255,41.625589167],[-71.308076032,41.625650143],[-71.308121655,41.62571375],[-71.308165511,41.625776669],[-71.308203307,41.625838274],[-71.308237631,41.625898546],[-71.308272846,41.625956876],[-71.308314204,41.626009339],[-71.308364247,41.626062503],[-71.30841954,41.626113068],[-71.308479242,41.626157122],[-71.308539876,41.626195324],[-71.308604928,41.626223721],[-71.308676158,41.626244971],[-71.30875175,41.626264925],[-71.308829968,41.626283602],[-71.3089073,41.626302918],[-71.308983773,41.626324223],[-71.309060171,41.626350055],[-71.309144399,41.626377226],[-71.30923124,41.626407055],[-71.30932245,41.626433621],[-71.309407583,41.626453658],[-71.309486639,41.626477551],[-71.309559567,41.626502073],[-71.309629944,41.626523321],[-71.309701179,41.62654329],[-71.309776736,41.626565186],[-71.309858419,41.626587162],[-71.309941842,41.626608431],[-71.310033984,41.62662912],[-71.310108497,41.626643125],[-71.310137438,41.62664857],[-71.310246096,41.626670681],[-71.310346965,41.626688137],[-71.310447876,41.626701682],[-71.310548745,41.626719138],[-71.310648721,41.626739885],[-71.310747776,41.626762552],[-71.310844203,41.626787844],[-71.310941502,41.626817071],[-71.31104135,41.626850236],[-71.311145597,41.626880137],[-71.311245564,41.626904132],[-71.311335933,41.626926761],[-71.311423639,41.626953319],[-71.311510479,41.626984449],[-71.311599059,41.627014279],[-71.311685025,41.627042115],[-71.311766593,41.627072573],[-71.311847303,41.627104951],[-71.311928898,41.627136713],[-71.311964061,41.62715111],[-71.312009606,41.627169754],[-71.312096417,41.627200244],[-71.312184193,41.627224195],[-71.312272825,41.627246797],[-71.312363233,41.627266841],[-71.312458858,41.62728559],[-71.31256315,41.627310917],[-71.31266821,41.627344729],[-71.312775914,41.627381175],[-71.312892294,41.627411164],[-71.313011399,41.62743656],[-71.313117431,41.627461225],[-71.313207756,41.62748909],[-71.313289397,41.6275163],[-71.313377141,41.627540867],[-71.313472758,41.627562245],[-71.313566602,41.627585564],[-71.313653449,41.627614703],[-71.313732424,41.627646437],[-71.313814021,41.627678197],[-71.313902526,41.62771388],[-71.313980572,41.627750849],[-71.314041247,41.627787081],[-71.314112206,41.627840321],[-71.314156248,41.627883684],[-71.314207189,41.627934217],[-71.314264216,41.627988052],[-71.314319465,41.628045818],[-71.314363365,41.62810679],[-71.314400318,41.628167065],[-71.314423302,41.628230588],[-71.314437528,41.628297275],[-71.314456102,41.628367926],[-71.31448333,41.6284393],[-71.314509734,41.628511267],[-71.314531744,41.628584553],[-71.314555532,41.628654572],[-71.31458282,41.628726586],[-71.314611771,41.628803177],[-71.314637246,41.62888038],[-71.314661829,41.628960211],[-71.314686416,41.629038761],[-71.314709305,41.62911397],[-71.314733058,41.629185955],[-71.314760357,41.629254059],[-71.314783236,41.629300887],[-71.314789449,41.629313658],[-71.31482903,41.629371993],[-71.314882539,41.629431037],[-71.314938639,41.629490107],[-71.315001675,41.629553786],[-71.315065556,41.629620759],[-71.315126858,41.629683748],[-71.315186415,41.629749365],[-71.315239799,41.629820186],[-71.31528705,41.629893581],[-71.315325647,41.629965659],[-71.31535731,41.630032443],[-71.315388981,41.630096597],[-71.315424196,41.630157578],[-71.31546032,41.630209984],[-71.31550516,41.63026309],[-71.315558724,41.630314312],[-71.315626344,41.630353184],[-71.315707067,41.630382998],[-71.315793922,41.630410832],[-71.315877316,41.630434133],[-71.315956419,41.630454728],[-71.316039777,41.630479949],[-71.316124897,41.630507162],[-71.316203074,41.630531689],[-71.316280361,41.630558867],[-71.316354946,41.630592513],[-71.31642604,41.630632053],[-71.316488366,41.630678738],[-71.316542825,41.63072605],[-71.316601642,41.63077401],[-71.31666041,41.63082851],[-71.316712152,41.630888236],[-71.31675169,41.630951785],[-71.316781636,41.631012048],[-71.316813399,41.631065796],[-71.316855706,41.63110975],[-71.316913764,41.631145953],[-71.316978815,41.631177616],[-71.317051706,41.631207371],[-71.317131613,41.631235193],[-71.317208018,41.631261706],[-71.317280991,41.631284234],[-71.317356599,41.631301575],[-71.317441019,41.63130722],[-71.317534234,41.631307643],[-71.31763263,41.631308119],[-71.317733653,41.631306633],[-71.317832126,41.631301255],[-71.317931419,41.631297112],[-71.318035067,41.631294326],[-71.318138753,41.631288956],[-71.318241559,41.631282258],[-71.318346939,41.631281441],[-71.31846104,41.631279357],[-71.318579539,41.631274673],[-71.31869538,41.631271951],[-71.318803385,41.631269858],[-71.31891143,41.631264471],[-71.319016856,41.631257799],[-71.319117964,41.631247804],[-71.319212981,41.631235878],[-71.319306254,41.631225848],[-71.319408203,41.631220428],[-71.319517951,41.631216369],[-71.319632086,41.631213027],[-71.319741827,41.631211552],[-71.319853301,41.63121143],[-71.319963006,41.631211945],[-71.320066649,41.631211123],[-71.320158098,41.63121026],[-71.320241718,41.631208013],[-71.320314884,41.631205085],[-71.320402064,41.631193741],[-71.320473671,41.631170572],[-71.320550439,41.631154592],[-71.320643666,41.631150461],[-71.320724701,41.631145601],[-71.32080917,41.631144704],[-71.320897142,41.631145093],[-71.320992062,41.631145538],[-71.321091342,41.631146013],[-71.321189738,41.631146463],[-71.321285543,41.631146932],[-71.321378732,41.631145385],[-71.321468446,41.631143877],[-71.321552913,41.631143597],[-71.321640878,41.631145997],[-71.321727037,41.63115162],[-71.321805321,41.631160477],[-71.32190972,41.631172714],[-71.321990629,41.631180935],[-71.322081189,41.631182036],[-71.322152123,41.631125864],[-71.322175073,41.631093928],[-71.322177701,41.631091325],[-71.322206037,41.631040461],[-71.322241474,41.63097918],[-71.322294326,41.630914084],[-71.32236452,41.630860815],[-71.322431231,41.630810766],[-71.322494402,41.630762106],[-71.322560985,41.63072516],[-71.322606874,41.630664581],[-71.322631774,41.630610419],[-71.32264449,41.630552945],[-71.32263376,41.630486195],[-71.322592343,41.630438906],[-71.322542199,41.630394851],[-71.322468435,41.630360455],[-71.322377914,41.63034561],[-71.322285526,41.630344507],[-71.322227107,41.630350088],[-71.322244326,41.630373716],[-71.322315635,41.630391733],[-71.322383307,41.630424107],[-71.322428999,41.630479956],[-71.322445018,41.630540836],[-71.322435864,41.630588505],[-71.322358195,41.630599911],[-71.322273499,41.630617115],[-71.32220881,41.6306416],[-71.322144004,41.630675278],[-71.322073234,41.630693875],[-71.321984308,41.630697351],[-71.321904322,41.630675364],[-71.321804188,41.630664414],[-71.321696984,41.630663859],[-71.321592527,41.630650913],[-71.321522948,41.630635506],[-71.321429085,41.630605607],[-71.321360618,41.630562757],[-71.321293927,41.630517304],[-71.321230761,41.630464697],[-71.321184335,41.630399058],[-71.321157102,41.630326337],[-71.321142998,41.63024586],[-71.321151526,41.630171342],[-71.321159971,41.630104691],[-71.32115623,41.630035368],[-71.321129846,41.629964591],[-71.32109562,41.629896433],[-71.32104989,41.629843899],[-71.320941705,41.629857064],[-71.320863316,41.629853397],[-71.320786855,41.629824897],[-71.320727068,41.629785377],[-71.320660401,41.62974253],[-71.320584021,41.629706848],[-71.320513736,41.629671794],[-71.320450388,41.629641416],[-71.32038179,41.629613591],[-71.320318757,41.629645327],[-71.320260046,41.629679699],[-71.320207376,41.629722566],[-71.320171128,41.629779271],[-71.320157384,41.629855016],[-71.320160365,41.629911943],[-71.32016852,41.629972125],[-71.320183658,41.63003106],[-71.320201496,41.630083436],[-71.320219213,41.630146995],[-71.320213439,41.630206424],[-71.320193333,41.630212888],[-71.32013683,41.630198231],[-71.320066573,41.630163863],[-71.32001471,41.630113904],[-71.320009988,41.630058278],[-71.320010512,41.630001402],[-71.320010116,41.629946469],[-71.319982474,41.629922802],[-71.319915521,41.629906094],[-71.3198976,41.629861539],[-71.319874413,41.62982546],[-71.319777708,41.629820415],[-71.31970094,41.629825897],[-71.319621163,41.629784287],[-71.319550705,41.629767596],[-71.319479654,41.629723438],[-71.319422714,41.629657736],[-71.319382234,41.629603289],[-71.319344103,41.62958084],[-71.319306555,41.629589791],[-71.319251937,41.629653603],[-71.319246962,41.629721563],[-71.319260262,41.62979424],[-71.319284027,41.629863686],[-71.319316547,41.629930516],[-71.319357796,41.629993518],[-71.319408692,41.630051297],[-71.319463986,41.630105859],[-71.319513184,41.630160366],[-71.319551002,41.630218788],[-71.319565252,41.63027898],[-71.319564718,41.630339171],[-71.319572026,41.630396722],[-71.319598573,41.630452428],[-71.319634637,41.630505587],[-71.319677698,41.630563995],[-71.319719871,41.630623727],[-71.319762054,41.63068019],[-71.319801737,41.630725465],[-71.31985974,41.630770906],[-71.319893385,41.63080636],[-71.319882699,41.630834427],[-71.319827813,41.630830225],[-71.319749781,41.630785347],[-71.319695284,41.63073998],[-71.319646931,41.630688059],[-71.319603019,41.63062901],[-71.319555635,41.630568583],[-71.319504778,41.63050751],[-71.319455661,41.630445823],[-71.31941179,41.63038284],[-71.319373965,41.630327025],[-71.319336951,41.630275854],[-71.31929211,41.630221994],[-71.319247308,41.630164888],[-71.319210379,41.630105209],[-71.319179507,41.630048147],[-71.319155611,41.629993108],[-71.319128332,41.62992695],[-71.319096571,41.629871853],[-71.319051204,41.629875555],[-71.318982827,41.629921598],[-71.318934517,41.629963853],[-71.318887946,41.630005471],[-71.318832693,41.630045085],[-71.318773098,41.630078792],[-71.318696225,41.630099985],[-71.318616111,41.630091717],[-71.318530165,41.630054648],[-71.318449582,41.630007158],[-71.31838565,41.629946018],[-71.318354776,41.629890282],[-71.318314246,41.629842993],[-71.318332047,41.629799958],[-71.318350056,41.629736615],[-71.318378571,41.629666154],[-71.318420955,41.629606829],[-71.318479762,41.629560725],[-71.318554046,41.629538865],[-71.318637857,41.629521639],[-71.318718023,41.629522086],[-71.318793055,41.629515915],[-71.318821261,41.629479437],[-71.318824507,41.629408821],[-71.318799899,41.629336126],[-71.318788183,41.629307338],[-71.31877005,41.629262737],[-71.318735659,41.629210929],[-71.318692591,41.629155792],[-71.318647832,41.629094728],[-71.318610947,41.629030453],[-71.318582744,41.628968226],[-71.318560703,41.628903997],[-71.318536907,41.628835214],[-71.318514884,41.628764489],[-71.318493701,41.628699027],[-71.318469862,41.628634794],[-71.31844516,41.628573854],[-71.318424785,41.628513584],[-71.318418294,41.628458641],[-71.318418993,41.628383447],[-71.318434386,41.628318134],[-71.318482022,41.628254952],[-71.318534906,41.628189835],[-71.31858347,41.628122126],[-71.318636299,41.628065493],[-71.318688143,41.62801277],[-71.318713979,41.627951452],[-71.318713691,41.627891305],[-71.318711734,41.62781741],[-71.31870177,41.627761753],[-71.318690099,41.627706116],[-71.318669867,41.627627574],[-71.318666124,41.627560171],[-71.31868586,41.627500124],[-71.318724775,41.62743821],[-71.318762856,41.62736909],[-71.318795672,41.627307805],[-71.318843269,41.627247231],[-71.318907273,41.627205732],[-71.318976492,41.627162915],[-71.319034484,41.627112876],[-71.319095748,41.627080498],[-71.319168245,41.627064512],[-71.319247554,41.627064911],[-71.319332959,41.627065366],[-71.319427183,41.627051449],[-71.319531081,41.627032997],[-71.319605113,41.627034714],[-71.31968002,41.627039657],[-71.319761866,41.627048567],[-71.319845447,41.627058143],[-71.319930809,41.627063148],[-71.320014477,41.627063576],[-71.320089432,41.627062024],[-71.320193208,41.627054708],[-71.320266425,41.627053771],[-71.320345703,41.627054169],[-71.320428487,41.627054618],[-71.320514745,41.62705505],[-71.320595747,41.627060688],[-71.320674035,41.627077414],[-71.320758369,41.627101375],[-71.320847872,41.627129987],[-71.320928573,41.627166979],[-71.320983951,41.627213032],[-71.321035613,41.627279983],[-71.321094293,41.62734436],[-71.321137447,41.627391013],[-71.321176184,41.627447446],[-71.321207827,41.62751233],[-71.32123423,41.627575903],[-71.321265021,41.627640145],[-71.321301944,41.627702453],[-71.321354611,41.627758954],[-71.321421208,41.627815522],[-71.321486028,41.627875358],[-71.321542134,41.627933854],[-71.321589558,41.627990964],[-71.321620394,41.628049969],[-71.321634633,41.628114757],[-71.3216427,41.628184773],[-71.321651569,41.628262657],[-71.321660474,41.628338529],[-71.321659818,41.628410475],[-71.321645233,41.628482331],[-71.321625396,41.628557404],[-71.321602056,41.628631808],[-71.321577869,41.628703603],[-71.321548474,41.628774064],[-71.321513024,41.628840582],[-71.321474145,41.628901194],[-71.321412673,41.628953218],[-71.32136371,41.628968007],[-71.321359876,41.62900983],[-71.321349658,41.629078422],[-71.321327417,41.629129981],[-71.321282542,41.629176199],[-71.321242546,41.629166806],[-71.32120363,41.62913068],[-71.321125732,41.629170146],[-71.321059904,41.629220837],[-71.320991405,41.629278658],[-71.320930932,41.629310719],[-71.320910815,41.629321413],[-71.320821659,41.629353635],[-71.320748185,41.629380712],[-71.320696495,41.629411208],[-71.320751977,41.629442191],[-71.320834496,41.629473376],[-71.320904017,41.629497886],[-71.320976094,41.629524413],[-71.32104994,41.629550324],[-71.321128136,41.629579444],[-71.321202754,41.629613201],[-71.321268644,41.629650147],[-71.32132755,41.629689025],[-71.321394139,41.629748886],[-71.321439702,41.629817771],[-71.321469641,41.629881966],[-71.32149528,41.629935726],[-71.321510782,41.629962736],[-71.321543823,41.630040612],[-71.321576817,41.630113343],[-71.321614294,41.630152279],[-71.321641138,41.630200209],[-71.321644371,41.630221574],[-71.321705743,41.630272874],[-71.321789995,41.630306005],[-71.32188849,41.630303254],[-71.321980083,41.630293882],[-71.322069129,41.630279955],[-71.322144991,41.630271862],[-71.322231503,41.63024812],[-71.322308499,41.630215147],[-71.322374958,41.630189979],[-71.32244903,41.630189705],[-71.322527281,41.630210385],[-71.32259062,41.630244696],[-71.322626789,41.630293921],[-71.322684727,41.630341282],[-71.322786511,41.63036209],[-71.322874325,41.630386078],[-71.322950667,41.630425028],[-71.323006065,41.630465203],[-71.323043075,41.630519026],[-71.323038997,41.630583718],[-71.323027943,41.630601882],[-71.323012449,41.63062738],[-71.322949243,41.630678076],[-71.322904276,41.630736026],[-71.322874085,41.630796698],[-71.32283259,41.63085534],[-71.322776441,41.630900169],[-71.322715958,41.630935821],[-71.322639881,41.630966829],[-71.322562971,41.630989945],[-71.322493849,41.63101902],[-71.322434196,41.63106318],[-71.32238145,41.631111971],[-71.322330475,41.631159438],[-71.322282883,41.631218047],[-71.322245838,41.631265581],[-71.322195033,41.631317805],[-71.322131248,41.63134563],[-71.322047367,41.63137658],[-71.321982607,41.631415472],[-71.321954251,41.631473493],[-71.321983472,41.631521999],[-71.322064147,41.631559607],[-71.322140456,41.631599815],[-71.322176579,41.631654849],[-71.322226685,41.631702152],[-71.322304777,41.631737126],[-71.322404698,41.631759807],[-71.322476998,41.63176145],[-71.322583259,41.631761958],[-71.322674675,41.631762396],[-71.322760028,41.631762139],[-71.322835916,41.631744852],[-71.322894659,41.631699364],[-71.322948954,41.63166368],[-71.323044908,41.631643245],[-71.32313302,41.631626],[-71.32323417,41.631611427],[-71.323338757,41.631600153],[-71.323432876,41.631592751],[-71.323518228,41.631592539],[-71.323601796,41.631598156],[-71.323676551,41.631616155],[-71.323742548,41.631638028],[-71.323823224,41.631675611],[-71.323889085,41.631713813],[-71.323962897,41.631742284],[-71.32407344,41.631748674],[-71.324166626,41.63174845],[-71.32426503,41.631746268],[-71.324361691,41.631746073],[-71.324435733,41.631746437],[-71.324462708,41.631747188],[-71.32455149,41.631752171],[-71.324643741,41.63175979],[-71.324718627,41.631763427],[-71.3248022,41.631767053],[-71.324894492,41.631770761],[-71.324993733,41.631774503],[-71.325096446,41.631779576],[-71.325197418,41.631785904],[-71.32529577,41.631791588],[-71.325397662,41.631795974],[-71.325506474,41.631800393],[-71.325616165,41.63180614],[-71.325726703,41.631814494],[-71.325831958,41.631826752],[-71.325936324,41.631840289],[-71.326045115,41.631852551],[-71.326146896,41.63186414],[-71.326235634,41.631874337],[-71.326320894,41.631885877],[-71.326407043,41.631895407],[-71.326488833,41.631904952],[-71.326571436,41.63191841],[-71.32665839,41.631934504],[-71.326754095,41.631949948],[-71.326854096,41.631966084],[-71.326959341,41.631982251],[-71.327063731,41.63199844],[-71.327153279,41.632013851],[-71.327233289,41.632027945],[-71.327310642,41.632043978],[-71.327390606,41.632063972],[-71.32747231,41.632083282],[-71.32755492,41.632105406],[-71.327559215,41.632106556],[-71.327645235,41.632130469],[-71.32772778,41.632154377],[-71.327812069,41.632175681],[-71.327896396,41.632194354],[-71.32797729,41.632208471],[-71.328052944,41.632221895],[-71.328152893,41.632246537],[-71.328247539,41.632282241],[-71.328311762,41.632306738],[-71.328383893,41.632326651],[-71.328466489,41.632342714],[-71.328553476,41.632358784],[-71.328639512,41.632376842],[-71.328722955,41.632395513],[-71.328807281,41.632414849],[-71.328893356,41.632429614],[-71.328973406,41.632440436],[-71.32904474,41.632450582],[-71.329115187,41.63246203],[-71.329220388,41.632483409],[-71.329292526,41.632500714],[-71.329362886,41.63252195],[-71.329429764,41.63254581],[-71.32949664,41.632570265],[-71.329567885,41.632590862],[-71.329637441,41.632604893],[-71.32972867,41.632630779],[-71.329808464,41.632669706],[-71.329883904,41.632706661],[-71.329916881,41.6327205],[-71.330108081,41.632809356],[-71.330183599,41.632851661],[-71.330262565,41.632892691],[-71.330319205,41.632926485],[-71.330381807,41.632965524],[-71.330449592,41.633003907],[-71.330520856,41.633041038],[-71.330594724,41.633073621],[-71.330670304,41.633103646],[-71.330749296,41.633134979],[-71.330826637,41.633168231],[-71.330901319,41.633204062],[-71.330981225,41.63323542],[-71.331069769,41.633262879],[-71.331161719,41.633292973],[-71.331250217,41.633326286],[-71.331333564,41.633359569],[-71.331424653,41.633392864],[-71.33152603,41.63343205],[-71.331630849,41.633472523],[-71.331731418,41.633505876],[-71.33182685,41.633534008],[-71.331918812,41.633560214],[-71.332015988,41.63358581],[-71.332114026,41.633608159],[-71.332212101,41.633627947],[-71.332313584,41.633650324],[-71.332421944,41.633677217],[-71.332533737,41.633708711],[-71.332640305,41.633745274],[-71.332744284,41.633780576],[-71.332854334,41.633814628],[-71.332967792,41.633850607],[-71.333079546,41.633885919],[-71.333188681,41.633919947],[-71.333302174,41.633954645],[-71.333421632,41.633993216],[-71.333534193,41.634034384],[-71.333637299,41.634078076],[-71.333736037,41.63412501],[-71.333834808,41.63417128],[-71.333932698,41.634216223],[-71.334024505,41.634267629],[-71.334111198,41.634316466],[-71.334199529,41.634368461],[-71.334287885,41.634422469],[-71.334375419,41.63447643],[-71.334464631,41.634529798],[-71.334550442,41.634577948],[-71.334632809,41.634626092],[-71.334714361,41.634670965],[-71.334792475,41.634713317],[-71.334863659,41.634759455],[-71.33493136,41.634808836],[-71.335002503,41.634859503],[-71.33507968,41.634910864],[-71.335159454,41.634959621],[-71.33523667,41.635007758],[-71.335308707,41.635054583],[-71.335378237,41.635092349],[-71.335440926,41.635122969],[-71.335513865,41.635162683],[-71.335567866,41.635205504],[-71.335602827,41.635255409],[-71.335603227,41.635325847],[-71.335577795,41.635389091],[-71.335570554,41.63544335],[-71.335561533,41.635502111],[-71.335544723,41.635567311],[-71.335526263,41.635622171],[-71.335526977,41.635640925],[-71.335594882,41.635658654],[-71.335612231,41.635645163],[-71.3356097,41.635633519],[-71.33558227,41.635619164],[-71.335591001,41.63560239],[-71.335618051,41.635550149],[-71.335646833,41.635500541],[-71.335658873,41.635501221],[-71.335718064,41.635540847],[-71.335737423,41.635600358],[-71.335743916,41.635660514],[-71.335745264,41.635718032],[-71.335740729,41.635750981],[-71.335656234,41.63575971],[-71.335586456,41.635759428],[-71.335504651,41.635753296],[-71.335460723,41.635753119],[-71.335464816,41.635786102],[-71.3354846,41.635786176],[-71.335562955,41.635794247],[-71.335591205,41.635822165],[-71.335672968,41.635832779],[-71.335749632,41.635834375],[-71.335821068,41.63584239],[-71.335865539,41.635892995],[-71.335900406,41.635955799],[-71.335946485,41.636021248],[-71.335990814,41.636091864],[-71.336037787,41.636153472],[-71.336105479,41.636207358],[-71.33616124,41.63624181],[-71.336218701,41.636278872],[-71.336278677,41.636322409],[-71.336335263,41.636367885],[-71.336388346,41.636412648],[-71.336438878,41.636453587],[-71.336532519,41.636493353],[-71.336603852,41.636518199],[-71.336677776,41.636543026],[-71.336751705,41.636565955],[-71.336826525,41.636586232],[-71.336907393,41.63660144],[-71.336989149,41.636615324],[-71.337073453,41.636634379],[-71.337161162,41.636657327],[-71.33724631,41.636680271],[-71.337327122,41.636705794],[-71.337407944,41.636727428],[-71.337481963,41.636739333],[-71.337557707,41.636743511],[-71.337633426,41.636758026],[-71.337703905,41.636783488],[-71.337770853,41.636818641],[-71.337842084,41.636860272],[-71.337918426,41.636905799],[-71.337997384,41.636953936],[-71.338076274,41.637004657],[-71.338154337,41.637057298],[-71.338227187,41.637109909],[-71.338288889,41.637158616],[-71.338346308,41.637201508],[-71.338403798,41.637239872],[-71.33846553,41.637276916],[-71.338535956,41.637311456],[-71.338613247,41.637344062],[-71.338694011,41.637377314],[-71.338778223,41.637409335],[-71.338861543,41.63744451],[-71.338944845,41.637486844],[-71.339033255,41.637534993],[-71.339118217,41.637584465],[-71.339197103,41.637637769],[-71.339269094,41.637692962],[-71.33933938,41.637747536],[-71.339407052,41.637798812],[-71.339467853,41.63785527],[-71.339523424,41.63791817],[-71.339578152,41.637977181],[-71.339628615,41.638034905],[-71.339651317,41.638063226],[-71.339676451,41.638094546],[-71.339727693,41.638158103],[-71.339778962,41.638222895],[-71.339823304,41.638290285],[-71.339864198,41.63835895],[-71.339902495,41.638430196],[-71.339943351,41.638502062],[-71.339983326,41.638572693],[-71.340019075,41.638638721],[-71.34005742,41.638702855],[-71.340100067,41.638765713],[-71.340140962,41.638834378],[-71.340177522,41.638905576],[-71.340219261,41.63897813],[-71.340262709,41.639050023],[-71.340304461,41.639117409],[-71.340341912,41.639186046],[-71.340369883,41.639254007],[-71.340389257,41.639321956],[-71.340413791,41.639386665],[-71.340440027,41.639453366],[-71.340466291,41.639521324],[-71.340495118,41.639588623],[-71.340523088,41.639657225],[-71.340546762,41.639724539],[-71.340561011,41.639781458],[-71.340567412,41.639856456],[-71.340567034,41.639910747],[-71.340569238,41.639968907],[-71.340582493,41.640045858],[-71.340606163,41.640115117],[-71.340636729,41.640181778],[-71.340659563,41.6402439],[-71.340685072,41.640297015],[-71.340696155,41.640315143],[-71.340775549,41.640287672],[-71.340852462,41.6402524],[-71.340846312,41.640149662],[-71.340846709,41.640087618],[-71.340832557,41.640015811],[-71.340798506,41.639952988],[-71.340795496,41.639887691],[-71.34082178,41.63982383],[-71.34085915,41.639776771],[-71.340913746,41.639729164],[-71.340989757,41.639701003],[-71.341075076,41.639693574],[-71.341175045,41.639691997],[-71.341282722,41.63969242],[-71.341386101,41.639692814],[-71.341483528,41.639683481],[-71.341568033,41.639672208],[-71.341662819,41.639670578],[-71.341769566,41.639677471],[-71.341839285,41.639691335],[-71.341942534,41.639707211],[-71.342018314,41.639710722],[-71.342100131,41.639714265],[-71.342187125,41.639720399],[-71.342272377,41.639727835],[-71.342355011,41.639733963],[-71.342431674,41.639738138],[-71.342504006,41.639742949],[-71.342577226,41.639746434],[-71.342657342,41.63974739],[-71.342742609,41.639748993],[-71.342825316,41.639749952],[-71.342902843,41.639750264],[-71.343006252,41.639750634],[-71.343094113,41.639750982],[-71.343176817,41.639753222],[-71.34325944,41.6397639],[-71.343353236,41.639781043],[-71.343440041,41.639814345],[-71.343519046,41.639846332],[-71.343566973,41.639895613],[-71.34351332,41.639932245],[-71.343489916,41.639953482],[-71.343501623,41.640003948],[-71.343555404,41.640078438],[-71.343600651,41.640139355],[-71.34364763,41.640202859],[-71.343693769,41.640260575],[-71.343748549,41.640313112],[-71.343805872,41.640372787],[-71.343846821,41.640433676],[-71.343881769,41.640492658],[-71.343906398,41.640545062],[-71.343916358,41.640599413],[-71.343914225,41.640662095],[-71.343923209,41.640729321],[-71.343943388,41.640806304],[-71.343962636,41.640890421],[-71.343970189,41.640918766],[-71.343983665,41.640969349],[-71.344008063,41.64105409],[-71.344033335,41.641143361],[-71.344055987,41.641231988],[-71.344070046,41.641318636],[-71.344072104,41.641400717],[-71.34407158,41.641478952],[-71.344072754,41.641561009],[-71.344083408,41.641643788],[-71.34410782,41.641723361],[-71.344143525,41.641797186],[-71.344182687,41.641866465],[-71.344215802,41.641940264],[-71.344237694,41.642015328],[-71.344245844,41.642087057],[-71.344240225,41.642154263],[-71.344229423,41.642221484],[-71.344215211,41.642286643],[-71.344198413,41.642349945],[-71.344180713,41.642420313],[-71.344163003,41.642494569],[-71.344141817,41.642569461],[-71.344120629,41.642644992],[-71.344102881,41.642722496],[-71.34408428,41.642799952],[-71.344067425,41.642873591],[-71.344060963,41.642936222],[-71.344047577,41.643000169],[-71.344020526,41.643054379],[-71.344001986,41.643118914],[-71.343964648,41.643190422],[-71.343948752,41.643220839],[-71.343895894,41.643267787],[-71.343838615,41.643327673],[-71.343780437,41.643393366],[-71.343714502,41.643464858],[-71.343639052,41.643536954],[-71.343559345,41.643604516],[-71.343483098,41.643665633],[-71.343412031,41.643728084],[-71.343345257,41.64379308],[-71.343281074,41.643858124],[-71.343217789,41.643917338],[-71.343154518,41.643970743],[-71.343086097,41.644022838],[-71.343009075,41.644076796],[-71.342929419,41.644135301],[-71.342858355,41.644195831],[-71.342794225,41.644251133],[-71.342736172,41.644302624],[-71.342678083,41.644356036],[-71.34261571,41.644403633],[-71.342540435,41.644453134],[-71.342459977,41.644502582],[-71.342381266,41.644548167],[-71.342304262,41.644593754],[-71.342228103,41.644643231],[-71.342149374,41.644695905],[-71.342070616,41.644747985],[-71.34199276,41.644792908],[-71.341902867,41.64483523],[-71.341804292,41.644887191],[-71.341707452,41.64493984],[-71.341618368,41.644987994],[-71.341536247,41.645030967],[-71.341454098,41.645073299],[-71.341370206,41.645117573],[-71.341283751,41.645162461],[-71.341193894,41.645202198],[-71.341091936,41.645240592],[-71.340988307,41.645276399],[-71.34088386,41.645310262],[-71.340781946,41.645342824],[-71.340684358,41.645376718],[-71.340585927,41.645406746],[-71.340478053,41.645432805],[-71.340362392,41.645464021],[-71.340244944,41.64550237],[-71.340123236,41.64553742],[-71.339994647,41.645568618],[-71.33987206,41.645601768],[-71.339757245,41.645635569],[-71.339641545,41.645670055],[-71.339632239,41.645672763],[-71.339527585,41.645703216],[-71.339416212,41.645738348],[-71.339303944,41.645777961],[-71.339190833,41.64581309],[-71.339082016,41.645850147],[-71.338980928,41.645893045],[-71.338891913,41.64593667],[-71.338814945,41.645978367],[-71.338743985,41.646019478],[-71.33868257,41.646059962],[-71.33864083,41.646108913],[-71.338610295,41.646163756],[-71.338570212,41.64623272],[-71.338571523,41.646294126],[-71.338621901,41.646363491],[-71.338658573,41.646415342],[-71.338685785,41.646470358],[-71.338708701,41.646524087],[-71.338716762,41.646604896],[-71.338688815,41.646661024],[-71.338654829,41.646718401],[-71.338626843,41.646777777],[-71.338627307,41.646836574],[-71.33863811,41.646893489],[-71.338628273,41.646950328],[-71.338600234,41.647018737],[-71.338562817,41.647070255],[-71.338515241,41.647099163],[-71.338430676,41.647118255],[-71.338354796,41.647126335],[-71.338265183,41.647127947],[-71.338174681,41.647130862],[-71.338085069,41.647131787],[-71.337996304,41.647135322],[-71.337917741,41.647155702],[-71.337857187,41.647192962],[-71.337810368,41.647236096],[-71.337771102,41.647307027],[-71.337703472,41.647368794],[-71.337630842,41.647406654],[-71.337551322,41.647443842],[-71.337466662,41.647475808],[-71.337373405,41.647507121],[-71.337275813,41.647541013],[-71.337177371,41.647572936],[-71.337089282,41.647598448],[-71.337007294,41.647622711],[-71.336937312,41.647649574],[-71.336865392,41.647707492],[-71.336806403,41.647764124],[-71.336733628,41.647822658],[-71.336685051,41.647873542],[-71.336641584,41.647928938],[-71.336605001,41.647986975],[-71.336573612,41.648041107],[-71.336547407,41.648094653],[-71.336531522,41.648118849],[-71.33650125,41.648164911],[-71.336448294,41.648222878],[-71.336379097,41.64826463],[-71.336297322,41.648252691],[-71.336232071,41.648216876],[-71.336171206,41.648171439],[-71.336120685,41.648122747],[-71.336116275,41.648118258],[-71.336077895,41.64807928],[-71.336027448,41.648025465],[-71.335962343,41.647968336],[-71.33590153,41.64791446],[-71.335851858,41.647867735],[-71.335830476,41.647846985],[-71.33582983,41.647813366],[-71.335876796,41.647748919],[-71.335884125,41.647684301],[-71.335867286,41.647627378],[-71.33584271,41.647567836],[-71.335812934,41.647514714],[-71.335776235,41.647462222],[-71.335732683,41.647407113],[-71.335687408,41.647346193],[-71.335651642,41.647286613],[-71.335631362,41.647228359],[-71.335631048,41.647147584],[-71.335639176,41.647092663],[-71.335641266,41.647038443],[-71.335627873,41.646981479],[-71.335607594,41.646922607],[-71.335589015,41.646866962],[-71.3355602,41.646795751],[-71.335533028,41.64673815],[-71.335540314,41.6466787],[-71.335579682,41.646592242],[-71.335603321,41.646540636],[-71.335625225,41.646487725],[-71.335651609,41.646411585],[-71.335674516,41.646336057],[-71.335701663,41.646271513],[-71.33574684,41.646214838],[-71.335808321,41.64617303],[-71.335880902,41.646142946],[-71.335965375,41.64613616],[-71.336066962,41.646149477],[-71.336169404,41.646162796],[-71.336264963,41.646172835],[-71.336338147,41.64618092],[-71.336379491,41.646181071],[-71.336357282,41.64614996],[-71.33632585,41.646088465],[-71.336278868,41.646027497],[-71.336211107,41.645984589],[-71.336116506,41.645957765],[-71.336021754,41.645954131],[-71.335934738,41.645953801],[-71.335884062,41.645930974],[-71.335840436,41.645881033],[-71.335772725,41.645831013],[-71.335712616,41.645800419],[-71.335641283,41.645771708],[-71.3355622,41.645745546],[-71.335490867,41.645716858],[-71.335403286,41.645675133],[-71.335309612,41.645643759],[-71.335239125,41.645618273],[-71.335173863,41.645588312],[-71.335121554,41.645548033],[-71.33507191,41.645503275],[-71.33501531,41.645460405],[-71.334957888,41.645416871],[-71.334900463,41.645374663],[-71.334841306,41.645329799],[-71.334783039,41.645283062],[-71.334728219,41.645235667],[-71.334680286,41.645189607],[-71.334653974,41.64513004],[-71.334624968,41.645086616],[-71.334541632,41.645054661],[-71.334477144,41.645032408],[-71.334392077,41.644997844],[-71.334332082,41.644959475],[-71.334265051,41.644930128],[-71.334236692,41.644919704],[-71.334225658,41.644895081],[-71.334256192,41.644841565],[-71.334317646,41.644798499],[-71.334379883,41.64477094],[-71.334422366,41.644730385],[-71.334436632,41.644660013],[-71.334447351,41.64460576],[-71.334456421,41.644540526],[-71.334460357,41.64446751],[-71.334461696,41.644397051],[-71.334459588,41.644327251],[-71.334454894,41.644255526],[-71.334451934,41.644185061],[-71.334452417,41.644115264],[-71.334457159,41.644049362],[-71.334460255,41.643983479],[-71.33446063,41.643920132],[-71.334461102,41.643854863],[-71.33445898,41.643790872],[-71.334459423,41.64372494],[-71.334459861,41.643660975],[-71.334460301,41.643596346],[-71.334459038,41.643529772],[-71.334456896,41.643461252],[-71.334457331,41.643398568],[-71.33445861,41.643339749],[-71.334458965,41.643284177],[-71.33444912,41.643211759],[-71.334422849,41.643148304],[-71.334393982,41.643086812],[-71.33439518,41.643035747],[-71.334452987,41.643023046],[-71.334528254,41.642978742],[-71.334564793,41.64292528],[-71.334602272,41.642862077],[-71.334647483,41.642803437],[-71.334709904,41.642750698],[-71.33478173,41.642704422],[-71.334862098,41.642667901],[-71.33495191,41.642633977],[-71.335016702,41.642607725],[-71.335084122,41.642579555],[-71.335152359,41.642553353],[-71.335229189,41.642529062],[-71.335309485,41.642508686],[-71.335386264,41.642492193],[-71.335459597,41.642476289],[-71.335534669,41.642459793],[-71.335611479,41.642443323],[-71.335685667,41.64242678],[-71.335761625,41.642409622],[-71.335835818,41.642391158],[-71.335908341,41.642370107],[-71.33598087,41.642346495],[-71.336049951,41.642324113],[-71.33612247,41.642304366],[-71.336201845,41.642285955],[-71.336278655,41.642269416],[-71.336346809,41.642251583],[-71.336425459,41.642218923],[-71.336492952,41.64217328],[-71.336544108,41.64212567],[-71.336582228,41.642097366],[-71.336564167,41.642090183],[-71.33646692,41.642074951],[-71.336360143,41.642066794],[-71.336280913,41.642063914],[-71.336199055,41.642063592],[-71.336122333,41.642069749],[-71.336050743,41.642083711],[-71.335974792,41.642098308],[-71.335895455,41.642113517],[-71.335815159,41.642134511],[-71.335734886,41.642158112],[-71.335642544,41.642180369],[-71.335542493,41.642200694],[-71.33544241,41.642221636],[-71.335340584,41.642244497],[-71.335237943,41.642264132],[-71.335131832,41.642281795],[-71.335016271,41.642298804],[-71.334896422,41.642311279],[-71.334786948,41.642320567],[-71.334675738,41.642329166],[-71.334552493,41.642334546],[-71.334429289,41.642335992],[-71.334312979,41.642335573],[-71.334205298,41.642335121],[-71.334110511,41.642335441],[-71.334026092,41.642335091],[-71.333944191,41.642339295],[-71.333865722,41.642348695],[-71.333791591,41.642354854],[-71.333633907,41.642355518],[-71.333554589,41.642362996],[-71.333477815,41.642377567],[-71.333408778,41.642394116],[-71.333338788,41.642426123],[-71.333286731,41.642478944],[-71.333245055,41.642525972],[-71.333198152,41.642578115],[-71.333152125,41.642633529],[-71.333108617,41.642693475],[-71.333063428,41.642754699],[-71.333016433,41.642819123],[-71.332972051,41.642886798],[-71.332932785,41.642956446],[-71.332901299,41.643024208],[-71.33288358,41.643097136],[-71.332876144,41.64317854],[-71.332867825,41.643259326],[-71.332866389,41.6433433],[-71.332867496,41.643433819],[-71.332866863,41.64352557],[-71.332867119,41.643615401],[-71.332868208,41.643701346],[-71.332867616,41.643788592],[-71.332866979,41.643881669],[-71.332869832,41.64396956],[-71.332878729,41.644054259],[-71.332892807,41.644139628],[-71.332910338,41.644222417],[-71.332925246,41.644305181],[-71.332941921,41.644388609],[-71.332964605,41.64447143],[-71.332996807,41.644551679],[-71.333038508,41.644625517],[-71.33308804,41.644689074],[-71.333147109,41.644743589],[-71.333213962,41.64479425],[-71.333279908,41.644853943],[-71.333342375,41.644914958],[-71.333400533,41.644979786],[-71.33344832,41.645046542],[-71.333486612,41.645118453],[-71.333518864,41.64519159],[-71.333551975,41.645262785],[-71.333591137,41.645328248],[-71.33363207,41.645393005],[-71.333672979,41.6454552],[-71.333717328,41.645519367],[-71.333767709,41.645585464],[-71.333825816,41.64565873],[-71.333886484,41.645732],[-71.333948053,41.645798799],[-71.33400792,41.645863651],[-71.334066036,41.645933692],[-71.334120697,41.646007571],[-71.334172728,41.646084693],[-71.334222128,41.646165013],[-71.334267223,41.646247888],[-71.334306286,41.646328833],[-71.334338489,41.646409769],[-71.334370694,41.646490018],[-71.334401974,41.646574131],[-71.334435021,41.646658955],[-71.33447494,41.646739216],[-71.334520114,41.646815641],[-71.334568706,41.646890174],[-71.334620774,41.646965329],[-71.33467711,41.647040513],[-71.334733459,41.647110552],[-71.334789879,41.647176702],[-71.334849784,41.647239588],[-71.334912254,41.647300579],[-71.334977351,41.647360293],[-71.335044119,41.64742193],[-71.335107432,41.64748745],[-71.335167295,41.647554909],[-71.335226308,41.64762104],[-71.335287028,41.647687197],[-71.335350317,41.647750796],[-71.335420604,41.64780791],[-71.33549606,41.647858605],[-71.335569891,41.647900905],[-71.335639386,41.647945759],[-71.335700213,41.647994467],[-71.335751539,41.64805025],[-71.335799371,41.648113118],[-71.335802682,41.64811781],[-71.335846311,41.648179231],[-71.33589235,41.64825177],[-71.335935754,41.648329496],[-71.335968814,41.64841041],[-71.335992393,41.648490646],[-71.336022058,41.648563779],[-71.336061175,41.648636971],[-71.33610543,41.648715979],[-71.336153973,41.648799567],[-71.336205112,41.64888117],[-71.33625714,41.648961492],[-71.336308316,41.649040533],[-71.336362103,41.649112488],[-71.336422819,41.649181228],[-71.336487843,41.64924675],[-71.336551161,41.649311629],[-71.336611888,41.649376482],[-71.336676129,41.649438114],[-71.336744604,41.64950172],[-71.33681741,41.649564714],[-71.336893667,41.649625723],[-71.336972542,41.649688063],[-71.337052235,41.64975301],[-71.337131887,41.6498218],[-71.337207271,41.649890606],[-71.337281776,41.649957445],[-71.337352831,41.650026245],[-71.337420443,41.650093714],[-71.337486326,41.650157933],[-71.337553095,41.650221558],[-71.337617297,41.650287078],[-71.337684057,41.6503545],[-71.337749076,41.650422651],[-71.33780721,41.650488757],[-71.337857557,41.650559425],[-71.337906194,41.650631327],[-71.337955675,41.650707117],[-71.338006862,41.650783596],[-71.338053717,41.650860686],[-71.338097126,41.650938388],[-71.338137938,41.651018054],[-71.338177002,41.651101582],[-71.338207468,41.651185052],[-71.338232744,41.6512711],[-71.338260573,41.651360352],[-71.338286701,41.65144711],[-71.338308501,41.651533129],[-71.338326889,41.65161784],[-71.338349617,41.651698715],[-71.338377548,41.651771868],[-71.338413272,41.651837896],[-71.338455068,41.651902675],[-71.338498567,41.651968806],[-71.338538626,41.652032896],[-71.338570008,41.65210411],[-71.338590176,41.652184364],[-71.338606831,41.652267769],[-71.338622669,41.652347971],[-71.338637658,41.652426892],[-71.338654355,41.652505128],[-71.33867624,41.652582114],[-71.338703313,41.652657187],[-71.338733852,41.652723894],[-71.338758459,41.652785378],[-71.338783865,41.652844279],[-71.338804141,41.652905758],[-71.338800265,41.652968437],[-71.33879723,41.653036264],[-71.338810533,41.653106125],[-71.338841943,41.653178642],[-71.338881066,41.653251833],[-71.338921919,41.653328228],[-71.33896277,41.653405287],[-71.338996735,41.653480392],[-71.33902981,41.653558056],[-71.339057739,41.653632512],[-71.339076223,41.653703639],[-71.339077411,41.653777966],[-71.339076027,41.653856177],[-71.339079827,41.653934396],[-71.339086157,41.654012618],[-71.339091704,41.654087569],[-71.339096459,41.654149643],[-71.339100369,41.654207828],[-71.339099934,41.654272456],[-71.339102298,41.65430283],[-71.339093341,41.654299433],[-71.33909311,41.654355531],[-71.33910015,41.654418683],[-71.339106112,41.654485698],[-71.339112109,41.654551159],[-71.339116059,41.654605731],[-71.339121042,41.654661836],[-71.33912391,41.654722627],[-71.339124742,41.654780305],[-71.339127614,41.654839517],[-71.339126357,41.654903413],[-71.339116726,41.654962631],[-71.339109214,41.655028072],[-71.339101706,41.655091936],[-71.339090019,41.655156594],[-71.339076256,41.655222027],[-71.339056282,41.65528354],[-71.339031082,41.655349734],[-71.338998634,41.655411985],[-71.338957884,41.655477334],[-71.338916062,41.65554426],[-71.338876314,41.655611189],[-71.33883241,41.655682022],[-71.338785377,41.655747362],[-71.338738356,41.655820501],[-71.338695494,41.655889003],[-71.338649521,41.655957455],[-71.338598343,41.656022058],[-71.338545092,41.656086612],[-71.338490824,41.656155052],[-71.338430282,41.656220374],[-71.338385429,41.65626781],[-71.338342653,41.656313695],[-71.338285248,41.656380575],[-71.338250788,41.656429581],[-71.338198559,41.656499602],[-71.338160965,41.656546272],[-71.338122295,41.656596095],[-71.338083664,41.656642763],[-71.338024183,41.656710395],[-71.337982441,41.656757058],[-71.337963418,41.656779123],[-71.337926076,41.656822408],[-71.337871779,41.656890071],[-71.337816483,41.656954644],[-71.337760123,41.657017661],[-71.337712075,41.65708611]]]]}}"}, +{"type": "precinct", "typeId": 2702, "areaId": 25874, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":213,\"NAME\":\"2702\",\"SHAPE_Length\":0.079880120996435,\"SHAPE_Area\":-0.00022071471707793},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.258346459,41.613405503],[-71.25826246,41.613479504],[-71.257881459,41.613770504],[-71.257598459,41.613964504],[-71.257308459,41.614137504],[-71.256835459,41.614403503],[-71.256485459,41.614603504],[-71.256164459,41.614794503],[-71.256256459,41.615162503],[-71.256401459,41.615690504],[-71.256607459,41.616524504],[-71.256637459,41.616649504],[-71.256820459,41.617330504],[-71.256851459,41.617460504],[-71.256866459,41.617541504],[-71.256889459,41.617644504],[-71.256904459,41.617774504],[-71.256904459,41.618315505],[-71.256904459,41.618589505],[-71.256896459,41.618864504],[-71.25688146,41.619328505],[-71.256866459,41.619653505],[-71.25685946,41.619797505],[-71.256835459,41.620392505],[-71.25682046,41.620852504],[-71.256815459,41.621093505],[-71.256813459,41.621235505],[-71.256790459,41.621465505],[-71.256752459,41.621722505],[-71.25672146,41.621862505],[-71.256690459,41.622034505],[-71.25658446,41.622473505],[-71.256363459,41.623396505],[-71.25615646,41.624206506],[-71.25611846,41.624346505],[-71.255989459,41.624862506],[-71.255973459,41.624926506],[-71.255813459,41.625555505],[-71.255531459,41.626601506],[-71.255493459,41.626732506],[-71.25543946,41.626936506],[-71.255249459,41.627565506],[-71.255081459,41.628140506],[-71.255020459,41.628326506],[-71.254745459,41.629183506],[-71.254652459,41.629444507],[-71.254280459,41.630543507],[-71.254234459,41.630674507],[-71.254195459,41.630797507],[-71.253936459,41.631545507],[-71.253890459,41.631681507],[-71.253784459,41.631971507],[-71.253746459,41.632057507],[-71.253631459,41.632366507],[-71.253585459,41.632479507],[-71.253527459,41.632631507],[-71.253486459,41.632738507],[-71.253318459,41.633147507],[-71.253265459,41.633265507],[-71.253066459,41.633818508],[-71.253028459,41.633927507],[-71.252975459,41.634063507],[-71.252784459,41.634607507],[-71.252646459,41.635015507],[-71.252590459,41.635179508],[-71.252426459,41.635668508],[-71.252311459,41.635972508],[-71.252265458,41.636144508],[-71.252258459,41.636252508],[-71.252258459,41.636320508],[-71.252266459,41.636361508],[-71.252281458,41.636436508],[-71.252304458,41.636575508],[-71.252323458,41.636668508],[-71.252510459,41.636585508],[-71.252784459,41.636449508],[-71.253051459,41.636309508],[-71.253479459,41.636062508],[-71.253646459,41.635968507],[-71.253982459,41.635754507],[-71.254158459,41.635629508],[-71.25432546,41.635509508],[-71.25450146,41.635380508],[-71.25463246,41.635275508],[-71.254669459,41.635246507],[-71.254882459,41.635061508],[-71.25498946,41.634974507],[-71.25503046,41.634935507],[-71.25525946,41.635474508],[-71.25535346,41.635694507],[-71.255353729,41.635695085],[-71.25540116,41.635648748],[-71.25545906,41.635460679],[-71.25547603,41.635406812],[-71.255504975,41.63535432],[-71.255565231,41.635308869],[-71.255622666,41.635275876],[-71.255688435,41.635231855],[-71.25575878,41.635194773],[-71.255836468,41.635166695],[-71.255909513,41.63514135],[-71.255982415,41.63513748],[-71.255993486,41.635136154],[-71.256153061,41.635268244],[-71.256208322,41.635278149],[-71.256224168,41.635255359],[-71.256191335,41.635199213],[-71.256154852,41.635140956],[-71.256164364,41.635100155],[-71.256220882,41.635059544],[-71.256283819,41.635030748],[-71.256354947,41.635012351],[-71.256420709,41.634977981],[-71.256483707,41.634932558],[-71.256540238,41.634896773],[-71.256599519,41.634858958],[-71.25664688,41.63481348],[-71.256706177,41.63477148],[-71.256782901,41.63474827],[-71.25685776,41.634726405],[-71.256927185,41.634690738],[-71.257013197,41.634653666],[-71.257078021,41.63461728],[-71.257133624,41.634576667],[-71.257172775,41.63451729],[-71.257198099,41.634454406],[-71.257229806,41.63440471],[-71.257287332,41.634355113],[-71.257348562,41.634301385],[-71.257418112,41.63424836],[-71.257486757,41.634192566],[-71.257556276,41.634139564],[-71.257614765,41.634085167],[-71.257682441,41.634035592],[-71.257762941,41.633997135],[-71.257846175,41.633960811],[-71.257928467,41.633932054],[-71.258003325,41.633910189],[-71.25807359,41.633885569],[-71.258144112,41.63382493],[-71.258194271,41.633772528],[-71.258262802,41.633730592],[-71.25833131,41.633694923],[-71.258403484,41.633657111],[-71.258481172,41.633628345],[-71.258553325,41.633596113],[-71.258619981,41.633558313],[-71.258685661,41.633528812],[-71.258759681,41.63349448],[-71.25882076,41.633464283],[-71.258884665,41.633428558],[-71.258902352,41.633402295],[-71.258899805,41.633373932],[-71.258897485,41.633309573],[-71.258892331,41.633252823],[-71.258877992,41.633190496],[-71.2588507,41.633135713],[-71.258817505,41.633135574],[-71.258806954,41.633193686],[-71.258780213,41.633195643],[-71.258737217,41.633142198],[-71.258691443,41.633090143],[-71.258638207,41.633052548],[-71.258609737,41.633035839],[-71.258635755,41.633006895],[-71.258695925,41.632975302],[-71.258779911,41.632965896],[-71.258853736,41.632959304],[-71.258898178,41.63293527],[-71.258933638,41.632875861],[-71.258968158,41.632815124],[-71.259009178,41.632752296],[-71.259054876,41.632677769],[-71.259089365,41.632625287],[-71.259125672,41.632575622],[-71.25917869,41.632507994],[-71.259225303,41.632441084],[-71.259270027,41.632374148],[-71.259315668,41.632306481],[-71.259357669,41.632233982],[-71.259382918,41.632182212],[-71.259407276,41.632124198],[-71.259427982,41.632064735],[-71.25944777,41.632006002],[-71.259456726,41.631983083],[-71.259469344,41.631950726],[-71.259584579,41.631685476],[-71.259617363,41.631615701],[-71.259650127,41.631543182],[-71.259672632,41.631491361],[-71.259692385,41.631434023],[-71.259713054,41.631375955],[-71.259732842,41.631317222],[-71.259757189,41.631261975],[-71.259789036,41.63119014],[-71.259805094,41.631134189],[-71.259974177,41.630814439],[-71.260009785,41.630739136],[-71.260039751,41.630672831],[-71.260068818,41.630602362],[-71.260095063,41.630536713],[-71.26012133,41.630473168],[-71.26015124,41.630413793],[-71.260178365,41.630357179],[-71.260206441,41.630299172],[-71.260235436,41.630239772],[-71.260264436,41.630178977],[-71.260292486,41.630119575],[-71.260317787,41.630061562],[-71.260341211,41.630008371],[-71.260379514,41.629937945],[-71.26042145,41.629873746],[-71.260460639,41.629810891],[-71.260499753,41.629751558],[-71.260537013,41.629699127],[-71.26055766,41.629646593],[-71.260548598,41.629624414],[-71.2605545,41.629569791],[-71.260580665,41.629517314],[-71.260613352,41.62945655],[-71.260657166,41.62938753],[-71.260694527,41.629315683],[-71.260716122,41.629262511],[-71.260739556,41.629206529],[-71.260742964,41.629199996],[-71.260767585,41.629152662],[-71.260801112,41.629103699],[-71.260856897,41.629036762],[-71.260891367,41.628988465],[-71.260920333,41.628936657],[-71.26094558,41.628884865],[-71.26098385,41.628814438],[-71.261219094,41.628396027],[-71.26124894,41.628344976],[-71.261299349,41.62825589],[-71.261479127,41.627999142],[-71.261637423,41.62777352],[-71.261691244,41.627725972],[-71.261725761,41.627664502],[-71.261990088,41.627308492],[-71.262272648,41.626983667],[-71.262326508,41.626933374],[-71.262520655,41.626720975],[-71.26283787,41.626453029],[-71.262887031,41.626412377],[-71.263226604,41.626105803],[-71.263476927,41.625908131],[-71.263533519,41.625860634],[-71.263713269,41.625732591],[-71.263773485,41.625694066],[-71.263830946,41.625650686],[-71.263939397,41.625574319],[-71.26401898,41.625532425],[-71.264109751,41.625473243],[-71.264263255,41.625412267],[-71.264299241,41.62540683],[-71.264530023,41.625510124],[-71.264529525,41.625580012],[-71.26452912,41.625640912],[-71.264532563,41.626906446],[-71.264721635,41.626905781],[-71.264724805,41.626847036],[-71.264728925,41.626786806],[-71.264733124,41.626713518],[-71.264722822,41.62522927],[-71.264803953,41.625230945],[-71.264909985,41.62523274],[-71.264912326,41.625158716],[-71.264988943,41.625152744],[-71.265056435,41.625124661],[-71.265144964,41.625120131],[-71.265233547,41.625117682],[-71.265307346,41.625115225],[-71.265361074,41.625075268],[-71.265406519,41.625033258],[-71.265471377,41.624991974],[-71.265557248,41.62497223],[-71.26564121,41.624966317],[-71.265726975,41.624967361],[-71.265780279,41.624993861],[-71.265778954,41.625056795],[-71.265787882,41.625099739],[-71.265873614,41.625101446],[-71.265937509,41.625065031],[-71.265973812,41.625013946],[-71.265988038,41.624957259],[-71.266012246,41.624921357],[-71.266076544,41.624958971],[-71.266149117,41.625000764],[-71.266213596,41.625013451],[-71.266292985,41.624999227],[-71.266370548,41.624984337],[-71.266461025,41.624972194],[-71.266534719,41.62496514],[-71.26662429,41.624967265],[-71.266699685,41.624995937],[-71.266764094,41.625019692],[-71.266783624,41.624996267],[-71.266849339,41.624961913],[-71.266925162,41.624931033],[-71.267011138,41.624898847],[-71.267079531,41.624874218],[-71.267170015,41.624859994],[-71.267242852,41.624862337],[-71.267256709,41.624856876],[-71.267314159,41.624815576],[-71.267381693,41.624784015],[-71.26744735,41.624757277],[-71.267518582,41.624722956],[-71.267585191,41.624694138],[-71.267654473,41.624676394],[-71.267731129,41.624659397],[-71.267813306,41.624641016],[-71.267894654,41.624615727],[-71.267969519,41.624588297],[-71.268049859,41.624571993],[-71.26813016,41.624558502],[-71.268204991,41.624540083],[-71.268283523,41.624518241],[-71.2683621,41.624492237],[-71.268436959,41.624466248],[-71.268508119,41.624442973],[-71.268579208,41.624431475],[-71.268652961,41.624433133],[-71.268711723,41.624467944],[-71.268755965,41.624471578],[-71.268781102,41.62443984],[-71.268804382,41.62440739],[-71.268875615,41.624372382],[-71.268936727,41.624338018],[-71.268999687,41.624298123],[-71.269070058,41.624256894],[-71.269147764,41.624218423],[-71.269240213,41.624182772],[-71.269331686,41.624155444],[-71.269405598,41.624138417],[-71.269473974,41.624117949],[-71.269523766,41.624112583],[-71.269799838,41.624063098],[-71.269837679,41.624058417],[-71.269936451,41.624044275],[-71.270031437,41.62404044],[-71.270137503,41.624040858],[-71.270215889,41.624042547],[-71.270293311,41.624049723],[-71.270363304,41.624063127],[-71.270451689,41.624081462],[-71.27054295,41.624088048],[-71.270631488,41.62408907],[-71.270724603,41.624088707],[-71.270813193,41.62408351],[-71.270900806,41.624078996],[-71.271153726,41.624043252],[-71.271244269,41.624020059],[-71.271327407,41.623996852],[-71.271710979,41.623868928],[-71.27178764,41.623849801],[-71.271845868,41.62382858],[-71.271886674,41.623795523],[-71.271938625,41.623747966],[-71.272005522,41.62367144],[-71.272059421,41.623607261],[-71.272107035,41.623518873],[-71.272147978,41.623464342],[-71.272185263,41.623400839],[-71.272203188,41.62333931],[-71.272225802,41.623270243],[-71.272259402,41.623206024],[-71.272293011,41.623148025],[-71.272333018,41.623090725],[-71.272374924,41.623030661],[-71.272417751,41.622968564],[-71.272458759,41.622903696],[-71.272497949,41.622836011],[-71.272538974,41.622766249],[-71.272576337,41.622697897],[-71.272613671,41.62262886],[-71.27265287,41.622558408],[-71.272693907,41.622485238],[-71.272740455,41.622422462],[-71.272783301,41.622354784],[-71.272816957,41.622282972],[-71.272855286,41.622208379],[-71.272895408,41.622135162],[-71.272926197,41.622081319],[-71.272955127,41.62202745],[-71.272982228,41.621973577],[-71.273010281,41.621917625],[-71.273035568,41.62185961],[-71.273058084,41.621800857],[-71.2730806,41.62174215],[-71.273102203,41.621682732],[-71.273131188,41.621621933],[-71.273161993,41.621563265],[-71.273197407,41.62151149],[-71.273250351,41.621449389],[-71.273290379,41.621394193],[-71.27333308,41.62135007],[-71.27339323,41.621319132],[-71.273434036,41.621285389],[-71.273463155,41.621203162],[-71.273474669,41.621135376],[-71.273451982,41.621077861],[-71.273407084,41.621035509],[-71.273401921,41.620978051],[-71.273450209,41.620931195],[-71.273512182,41.620901701],[-71.273552322,41.62089261],[-71.273581451,41.620886035],[-71.273620112,41.620890296],[-71.273695905,41.620865678],[-71.273766157,41.620838967],[-71.273820807,41.62080317],[-71.273865424,41.620751458],[-71.273915592,41.620698363],[-71.273981343,41.620651564],[-71.274030537,41.620606768],[-71.274072348,41.620555691],[-71.274120593,41.620512265],[-71.274184507,41.620467544],[-71.274254893,41.62042009],[-71.274318852,41.620371207],[-71.27436069,41.620320816],[-71.274407097,41.620271189],[-71.27446645,41.620223645],[-71.274528571,41.620168514],[-71.274582317,41.620129261],[-71.274640665,41.62009004],[-71.274699061,41.620045971],[-71.274759304,41.619996371],[-71.274813158,41.619943305],[-71.274855934,41.619886055],[-71.274889456,41.619834298],[-71.274917509,41.619777637],[-71.274940084,41.619709919],[-71.274959933,41.619637324],[-71.274977937,41.619560587],[-71.274981169,41.619490041],[-71.274981606,41.619425664],[-71.274992147,41.619365515],[-71.275008232,41.619306063],[-71.275028874,41.619250805],[-71.275054106,41.619198986],[-71.2750739,41.619133321],[-71.275067896,41.61906342],[-71.275052635,41.618999722],[-71.275036505,41.618931836],[-71.2750148,41.618863254],[-71.274987583,41.618802299],[-71.274959344,41.618746122],[-71.274924617,41.618697548],[-71.274881598,41.618649667],[-71.274832111,41.618603808],[-71.274775193,41.618565527],[-71.274718279,41.618525897],[-71.274659556,41.618480684],[-71.274599026,41.618429246],[-71.274542271,41.618370223],[-71.274489143,41.61831123],[-71.2744342,41.618257058],[-71.274384759,41.618207037],[-71.274340799,41.618158422],[-71.274303401,41.61809811],[-71.274268799,41.618031561],[-71.274243336,41.617974726],[-71.274214241,41.617910931],[-71.274216073,41.617876478],[-71.274215465,41.617876504],[-71.274033465,41.617890503],[-71.273277465,41.617945504],[-71.272022464,41.617800504],[-71.271247464,41.617548504],[-71.271080464,41.617479503],[-71.270052463,41.617060504],[-71.269386463,41.616808504],[-71.269111463,41.616701503],[-71.269042463,41.616680503],[-71.268684463,41.616543503],[-71.268417463,41.616435504],[-71.267791463,41.616200503],[-71.267753463,41.616183504],[-71.267387463,41.616041503],[-71.267105462,41.615937504],[-71.266976463,41.615889504],[-71.266891462,41.615857504],[-71.266745463,41.615801504],[-71.266571463,41.615733503],[-71.266372462,41.615661504],[-71.266113462,41.615576503],[-71.265800462,41.615465504],[-71.265617462,41.615396503],[-71.265266462,41.615304503],[-71.264465462,41.615063503],[-71.263488461,41.614772503],[-71.262542461,41.614489504],[-71.261833461,41.614282503],[-71.26147446,41.614172503],[-71.26113846,41.614084504],[-71.26079546,41.613996503],[-71.26042146,41.613904504],[-71.26011646,41.613834503],[-71.26005546,41.613822503],[-71.25965146,41.613744503],[-71.25910146,41.613602503],[-71.258758459,41.613509503],[-71.258346459,41.613405503]]]]}}"}, +{"type": "precinct", "typeId": 2703, "areaId": 25875, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":214,\"NAME\":\"2703\",\"SHAPE_Length\":0.29259069116359,\"SHAPE_Area\":-0.00040368962840831},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.2227069,41.628328609],[-71.22263464,41.628333283],[-71.222560828,41.628358765],[-71.222495594,41.628409446],[-71.222456462,41.628472014],[-71.222417243,41.628519487],[-71.222363724,41.628560683],[-71.222323738,41.628616319],[-71.222314849,41.62867059],[-71.222303497,41.628737478],[-71.222283732,41.62879744],[-71.222256315,41.628850522],[-71.222210451,41.628904932],[-71.222184676,41.628951684],[-71.222225352,41.628998207],[-71.222304636,41.629040204],[-71.222380383,41.629054406],[-71.222471233,41.629064802],[-71.222562893,41.629071404],[-71.222647752,41.629071723],[-71.222727614,41.629071458],[-71.222804893,41.629062314],[-71.222882118,41.629044387],[-71.222959275,41.62901386],[-71.22303381,41.628976373],[-71.22311596,41.628940117],[-71.22320401,41.628907009],[-71.223290355,41.628873278],[-71.223372488,41.628833889],[-71.223452907,41.628788801],[-71.223537535,41.628743106],[-71.223617113,41.628702452],[-71.223682464,41.628666887],[-71.223739394,41.628633292],[-71.223798743,41.628582618],[-71.223821238,41.628554131],[-71.223819335,41.628514426],[-71.223768583,41.628471698],[-71.223697849,41.628447355],[-71.223622895,41.628426203],[-71.223548857,41.62841889],[-71.223458032,41.62840973],[-71.223377269,41.628399976],[-71.223297334,41.628388898],[-71.223216559,41.628374684],[-71.223123125,41.628355478],[-71.223024677,41.628340055],[-71.222940585,41.628331551],[-71.222864911,41.628329288],[-71.222792614,41.628328313],[-71.2227069,41.628328609]]],[[[-71.234931315,41.63062033],[-71.234944046,41.630637924],[-71.235008964,41.630669862],[-71.235086348,41.630679714],[-71.235158746,41.630693922],[-71.2352328,41.630705619],[-71.235320994,41.630695828],[-71.235364533,41.63067107],[-71.235297029,41.630630344],[-71.235237923,41.630593365],[-71.235158975,41.630600593],[-71.235068226,41.630601573],[-71.234986665,41.630599327],[-71.234931315,41.63062033]]],[[[-71.23573096,41.630782578],[-71.2357454,41.630807127],[-71.23581116,41.63083463],[-71.235891963,41.63085071],[-71.235963488,41.630862423],[-71.236035058,41.630877933],[-71.236102434,41.630897847],[-71.236176564,41.630920932],[-71.236249904,41.630950945],[-71.236321473,41.630974024],[-71.23638638,41.631001502],[-71.236442129,41.631039753],[-71.236508828,41.631083678],[-71.236573755,41.631113695],[-71.236599793,41.631112336],[-71.236550766,41.631070259],[-71.236501733,41.631029439],[-71.236435819,41.630979867],[-71.236380146,41.630945412],[-71.236321934,41.630913444],[-71.236249397,41.630873371],[-71.236183617,41.630843352],[-71.236099414,41.630823468],[-71.236017705,41.630797896],[-71.235936861,41.630776762],[-71.235862867,41.630772612],[-71.23578887,41.630769149],[-71.23573096,41.630782578]]],[[[-71.236925851,41.631602397],[-71.236911843,41.631644079],[-71.23693543,41.631683148],[-71.236940729,41.631691919],[-71.236975319,41.631708807],[-71.236996854,41.631660145],[-71.236975439,41.631604111],[-71.236935789,41.631594873],[-71.236925851,41.631602397]]],[[[-71.232825716,41.63165805],[-71.232823449,41.631697769],[-71.232900802,41.631700625],[-71.232987277,41.631679511],[-71.233075395,41.631658996],[-71.233163589,41.631649847],[-71.233246787,41.631647022],[-71.233328355,41.631647966],[-71.233404857,41.631650201],[-71.233475571,41.631666351],[-71.233544664,41.631691302],[-71.233623713,41.631696676],[-71.23371017,41.631679999],[-71.233789016,41.631653218],[-71.233866304,41.631649761],[-71.233957125,41.631653859],[-71.234034471,41.631651042],[-71.234111726,41.631640678],[-71.234195796,41.631640964],[-71.234278207,41.631644448],[-71.234359746,41.631644773],[-71.234433706,41.631642589],[-71.234507738,41.631652433],[-71.234590076,41.631643933],[-71.234662261,41.631628503],[-71.234727682,41.631604938],[-71.234784589,41.631568776],[-71.23483388,41.631523814],[-71.234873007,41.631467531],[-71.234897824,41.631406916],[-71.234917591,41.631343773],[-71.234934051,41.631284419],[-71.23493026,41.631220102],[-71.234878601,41.631166056],[-71.234816086,41.631120265],[-71.234798908,41.631064813],[-71.234802725,41.631003646],[-71.234814963,41.630948078],[-71.234833867,41.630887472],[-71.23485448,41.63082623],[-71.234842281,41.630760681],[-71.234808307,41.630705304],[-71.234778547,41.630655586],[-71.234762972,41.630588177],[-71.234732349,41.630533425],[-71.234717669,41.630471026],[-71.234766957,41.630426705],[-71.23480609,41.630368524],[-71.234835103,41.630310411],[-71.234841483,41.630256156],[-71.234838536,41.630194356],[-71.234843156,41.630130653],[-71.234854467,41.630063146],[-71.234874244,41.629997464],[-71.234908294,41.629937442],[-71.234933131,41.62987932],[-71.234957983,41.62982497],[-71.23499632,41.629775021],[-71.235037978,41.62971808],[-71.235077969,41.629666236],[-71.235121344,41.629614331],[-71.235168944,41.629564974],[-71.235225854,41.629527553],[-71.23528942,41.629480017],[-71.235349685,41.629441964],[-71.235413329,41.62940513],[-71.235449176,41.629360252],[-71.235382534,41.629325154],[-71.235309473,41.629339302],[-71.235234804,41.629359163],[-71.235155853,41.629367626],[-71.2350626,41.629377428],[-71.234970241,41.629392286],[-71.234889643,41.629408361],[-71.234812464,41.629430709],[-71.234742018,41.629453667],[-71.23466649,41.629474807],[-71.234594425,41.629505972],[-71.234568627,41.629545774],[-71.234600972,41.629604326],[-71.234633205,41.629652769],[-71.234668023,41.629703071],[-71.234699491,41.629759722],[-71.23472761,41.629815726],[-71.234759119,41.629877432],[-71.234757811,41.629936089],[-71.234697666,41.629989281],[-71.234647557,41.630040531],[-71.234601627,41.630091149],[-71.234558272,41.630138],[-71.234503949,41.630191183],[-71.234481682,41.63025432],[-71.234471163,41.630314305],[-71.234462316,41.630375483],[-71.234450942,41.630436106],[-71.234448021,41.630501689],[-71.234454396,41.63057484],[-71.234464107,41.630644775],[-71.234477133,41.630709068],[-71.234496066,41.630775204],[-71.234514988,41.630843879],[-71.234531355,41.630903743],[-71.234562016,41.630964166],[-71.234607832,41.631023275],[-71.234651086,41.631083041],[-71.234675823,41.631138442],[-71.234666947,41.631192074],[-71.23465807,41.631245728],[-71.234639173,41.631312005],[-71.234605111,41.631374566],[-71.234567621,41.631425776],[-71.234505699,41.631473315],[-71.234439543,41.631512681],[-71.234364894,41.631534372],[-71.234278304,41.631531542],[-71.234197581,41.631525546],[-71.23411004,41.631509472],[-71.234035142,41.631495257],[-71.233961852,41.631475374],[-71.233889444,41.631456065],[-71.233815525,41.631463303],[-71.233739056,41.631467998],[-71.233652436,41.631465144],[-71.233582538,41.631443348],[-71.233531828,41.631403163],[-71.233455234,41.631386428],[-71.233372818,41.631384201],[-71.233301517,41.631407157],[-71.23327646,41.631429328],[-71.233221256,41.631473681],[-71.233167727,41.631511085],[-71.233113317,41.63154787],[-71.23304795,41.631580284],[-71.232967457,41.631607061],[-71.232887724,41.631626886],[-71.232825716,41.63165805]]],[[[-71.232447103,41.631736412],[-71.232374923,41.631750515],[-71.232297692,41.631769728],[-71.232227303,41.631800278],[-71.232167844,41.631833895],[-71.232111736,41.631868159],[-71.232043864,41.631901848],[-71.231998848,41.631922348],[-71.23196843,41.631936182],[-71.23190481,41.631973631],[-71.231849567,41.632012289],[-71.231796006,41.632049692],[-71.231746695,41.632091497],[-71.231699928,41.632137104],[-71.231661569,41.63218392],[-71.231627455,41.632236371],[-71.231592529,41.63229328],[-71.231559267,41.63235328],[-71.231531071,41.63241208],[-71.231503685,41.6324664],[-71.231483033,41.63252133],[-71.23148425,41.63258061],[-71.231493906,41.632641122],[-71.231491756,41.632696621],[-71.231488774,41.632754016],[-71.231482451,41.632815863],[-71.231482049,41.632883327],[-71.231482463,41.632945167],[-71.231487872,41.633000615],[-71.231499988,41.633056079],[-71.231503723,41.633110929],[-71.231483081,41.633170936],[-71.231456543,41.633226515],[-71.23144687,41.633287736],[-71.231447321,41.633355202],[-71.231455321,41.633418249],[-71.231462401,41.633475005],[-71.231473699,41.633529209],[-71.231485822,41.633582751],[-71.231511205,41.633607258],[-71.231517974,41.63361418],[-71.231565608,41.63357299],[-71.231593817,41.633518649],[-71.231611932,41.633458042],[-71.231622436,41.633394924],[-71.231625385,41.633330599],[-71.231617388,41.633266912],[-71.231608578,41.6332083],[-71.231603151,41.63314965],[-71.231616997,41.633082149],[-71.231641823,41.633020254],[-71.231653206,41.632958396],[-71.231639311,41.632890944],[-71.231631356,41.632831717],[-71.231630129,41.632774952],[-71.231640693,41.632719427],[-71.231659573,41.632650634],[-71.231674318,41.632593792],[-71.231672267,41.632537071],[-71.231675269,41.632482192],[-71.231702585,41.632415225],[-71.231742623,41.63236775],[-71.231802876,41.632326566],[-71.231857177,41.632279673],[-71.231904813,41.632230294],[-71.231943988,41.632177809],[-71.231988172,41.632122774],[-71.232036625,41.632074655],[-71.232089312,41.632034757],[-71.232147898,41.631998599],[-71.232206531,41.631965575],[-71.232283371,41.631923011],[-71.232348083,41.631886868],[-71.232414295,41.631856354],[-71.232488926,41.631832081],[-71.232561067,41.631805331],[-71.232625598,41.631776071],[-71.232610185,41.631736403],[-71.232536168,41.631730399],[-71.232447103,41.631736412]]],[[[-71.223753226,41.632604486],[-71.223772915,41.632662438],[-71.22375822,41.632734396],[-71.223737706,41.632812675],[-71.223744077,41.632883905],[-71.223766412,41.632957621],[-71.223776038,41.633016236],[-71.223792398,41.633075484],[-71.223812926,41.63312962],[-71.223833432,41.633181925],[-71.223854797,41.633239836],[-71.223867782,41.633297201],[-71.223862368,41.633372886],[-71.223867828,41.633436567],[-71.223911012,41.633481815],[-71.223985102,41.633499831],[-71.224060096,41.633527318],[-71.224138497,41.633563594],[-71.224225261,41.633590399],[-71.224314484,41.633605249],[-71.224408607,41.633600467],[-71.224500131,41.633583122],[-71.224589965,41.63356893],[-71.224685677,41.633549011],[-71.22478471,41.633522148],[-71.22487866,41.63349342],[-71.224976797,41.633462164],[-71.225051468,41.63343666],[-71.225126979,41.633414337],[-71.225195818,41.633398333],[-71.225294082,41.633387248],[-71.225364642,41.633375021],[-71.225464586,41.633363276],[-71.225553642,41.633352855],[-71.225624024,41.633317918],[-71.225679079,41.633252757],[-71.225707996,41.633176328],[-71.225703327,41.633105719],[-71.22567181,41.633040237],[-71.225612546,41.632976771],[-71.225534003,41.632923457],[-71.225443804,41.632880247],[-71.225371335,41.632854049],[-71.225301371,41.632826553],[-71.225235619,41.632797763],[-71.225166516,41.632768371],[-71.225092393,41.632744066],[-71.225008214,41.632726073],[-71.224924864,41.632706823],[-71.22484321,41.632690116],[-71.224760728,41.632674642],[-71.224674867,41.632657947],[-71.224594887,41.632641793],[-71.224519993,41.632626931],[-71.224447575,41.6326102],[-71.224373467,41.632589646],[-71.22430436,41.632561511],[-71.224232762,41.632538424],[-71.224160308,41.632515998],[-71.224089539,41.632491655],[-71.224014594,41.632467325],[-71.223944656,41.632441109],[-71.223870389,41.632393454],[-71.223807901,41.632350149],[-71.223741243,41.632312529],[-71.223684653,41.632273012],[-71.223608744,41.632231664],[-71.223533642,41.632187163],[-71.223449278,41.632141427],[-71.223387704,41.632112646],[-71.223321111,41.632081361],[-71.223255351,41.632047539],[-71.22319289,41.632012444],[-71.223131332,41.63197989],[-71.223066413,41.631949203],[-71.222994755,41.631919208],[-71.222952005,41.631900901],[-71.222929002,41.631891058],[-71.222842196,41.631853548],[-71.222758724,41.631820415],[-71.222660205,41.631791774],[-71.222566755,41.631768107],[-71.222499394,41.631752576],[-71.222436409,41.631754437],[-71.222363293,41.631765718],[-71.222294518,41.631788672],[-71.222220721,41.631816692],[-71.222150356,41.63185476],[-71.222082481,41.631887802],[-71.222044941,41.631898711],[-71.222001082,41.631911458],[-71.221914648,41.63193636],[-71.221834875,41.631950483],[-71.221750757,41.631940079],[-71.221702071,41.631948446],[-71.221780505,41.631990418],[-71.221859667,41.632012222],[-71.221946376,41.632029606],[-71.222041466,41.632047537],[-71.222125624,41.632062972],[-71.222213236,41.632090421],[-71.222266574,41.632148867],[-71.222297246,41.632211191],[-71.222329629,41.632279809],[-71.222372891,41.632342119],[-71.222434576,41.632394844],[-71.222503859,41.63244569],[-71.222581525,41.632496488],[-71.222668391,41.63254159],[-71.222753569,41.632582274],[-71.222831118,41.632617955],[-71.22290526,41.632644776],[-71.222976039,41.632666581],[-71.223051799,41.632685883],[-71.223128434,41.632707039],[-71.223199119,41.632722577],[-71.223293297,41.632726028],[-71.223384984,41.632734505],[-71.223469055,41.632734821],[-71.223527651,41.632697388],[-71.223560946,41.632638625],[-71.22361522,41.632585447],[-71.22368568,41.63256062],[-71.223753226,41.632604486]]],[[[-71.220938567,41.650576426],[-71.220941195,41.650631731],[-71.22091896,41.650675723],[-71.220864717,41.650717739],[-71.22084159,41.650770374],[-71.22083177,41.650834385],[-71.220829069,41.650895028],[-71.22082283,41.650955708],[-71.220817463,41.651012388],[-71.220807663,41.651071687],[-71.220781883,41.651131679],[-71.220756071,41.651191717],[-71.220725824,41.651241019],[-71.220677811,41.65128767],[-71.220629804,41.651332994],[-71.220601353,41.651382963],[-71.220579082,41.651434983],[-71.220557739,41.651498302],[-71.220539043,41.651555635],[-71.220504341,41.651605612],[-71.220451,41.651650283],[-71.220387864,41.651689602],[-71.220330972,41.651723562],[-71.220292716,41.651770214],[-71.220332703,41.651830892],[-71.220351347,41.651884223],[-71.220374448,41.651936261],[-71.220408178,41.651984277],[-71.220426835,41.652048906],[-71.220398386,41.65211223],[-71.220353894,41.652148256],[-71.220264112,41.652158237],[-71.220191244,41.652163525],[-71.220161028,41.652184194],[-71.220199212,41.652238853],[-71.220223147,41.652295536],[-71.220205357,41.652354862],[-71.220169774,41.652410851],[-71.220151101,41.652476829],[-71.220137746,41.65254019],[-71.220111057,41.652605486],[-71.22008792,41.652660133],[-71.220065652,41.652725485],[-71.220048766,41.652787488],[-71.220034505,41.652841494],[-71.220020248,41.652894813],[-71.220012209,41.652955489],[-71.220009542,41.653022124],[-71.220009502,41.653080783],[-71.21999525,41.653146772],[-71.219972128,41.653198104],[-71.219946314,41.653251441],[-71.219912516,41.653303455],[-71.219873392,41.653360098],[-71.21983782,41.653413411],[-71.219794229,41.653473406],[-71.219752421,41.653537383],[-71.219720387,41.653597383],[-71.219680389,41.65365869],[-71.219641227,41.653724023],[-71.219598516,41.653778005],[-71.219544287,41.653816019],[-71.219459819,41.653830632],[-71.219380711,41.653853949],[-71.219333572,41.653909269],[-71.219321991,41.65397794],[-71.219322867,41.65404328],[-71.219331715,41.654105277],[-71.219346803,41.654169966],[-71.219369017,41.654236638],[-71.21938941,41.654294616],[-71.21941073,41.654356644],[-71.219432888,41.654415289],[-71.219455994,41.654473297],[-71.219480845,41.654536637],[-71.21951016,41.65460463],[-71.219544794,41.654669343],[-71.219582129,41.654729992],[-71.21962031,41.654792679],[-71.219656746,41.654856665],[-71.219689602,41.654916685],[-71.219728707,41.65497002],[-71.219776668,41.655020701],[-71.219825504,41.655073374],[-71.219874389,41.6551287],[-71.219930366,41.655180064],[-71.219988124,41.655228756],[-71.220040534,41.655280088],[-71.22007962,41.655338088],[-71.220110719,41.655395452],[-71.220138271,41.655448118],[-71.220168481,41.655499442],[-71.220177309,41.655559472],[-71.220177283,41.65561477],[-71.220161249,41.655676776],[-71.220147886,41.655734763],[-71.220163876,41.655795428],[-71.220239433,41.65580412],[-71.220297208,41.655771466],[-71.220307007,41.655712807],[-71.220323953,41.655644149],[-71.22037018,41.655588163],[-71.220441308,41.655556181],[-71.220515097,41.655529535],[-71.220582688,41.655490227],[-71.220662713,41.655452893],[-71.220732966,41.655432916],[-71.220815594,41.655406931],[-71.220894735,41.655383614],[-71.220977431,41.65536298],[-71.221050323,41.655338984],[-71.221131248,41.655304991],[-71.221196128,41.655279055],[-71.221266354,41.65525105],[-71.221335713,41.655219087],[-71.221401493,41.655182427],[-71.22145754,41.655133096],[-71.221511764,41.655089113],[-71.22156956,41.655051129],[-71.221614936,41.655008474],[-71.221638949,41.654941159],[-71.221649619,41.654885132],[-71.221679888,41.654831142],[-71.221732329,41.654790493],[-71.221781236,41.654741854],[-71.221813266,41.654682517],[-71.221840867,41.654610568],[-71.221873794,41.654533876],[-71.221903148,41.654458547],[-71.221928069,41.654385905],[-71.221939662,41.654306554],[-71.221950356,41.654251922],[-71.22197526,41.654175919],[-71.222000178,41.654103941],[-71.222019749,41.654027239],[-71.222034891,41.653959262],[-71.222038481,41.65390459],[-71.222068742,41.65383793],[-71.22209808,41.653787277],[-71.222103455,41.653735926],[-71.222056328,41.653725246],[-71.222048367,41.653661925],[-71.222048367,41.653605254],[-71.222048391,41.653549933],[-71.222052862,41.653495927],[-71.222078658,41.653439273],[-71.222124896,41.653379971],[-71.222178245,41.65331929],[-71.222220052,41.65326933],[-71.222259184,41.653217351],[-71.222305473,41.653167333],[-71.222353442,41.653116702],[-71.222399701,41.653066707],[-71.222439731,41.653011369],[-71.222483315,41.652959378],[-71.222547336,41.652912742],[-71.222614896,41.652880087],[-71.222682461,41.652846106],[-71.222718922,41.6527981],[-71.222746493,41.65273276],[-71.222763417,41.652661426],[-71.222775875,41.652593465],[-71.222785678,41.652526093],[-71.222790184,41.652449469],[-71.222790194,41.652368786],[-71.22279289,41.652294787],[-71.222795577,41.652222801],[-71.222788512,41.652149465],[-71.222773402,41.652082147],[-71.222783212,41.652020126],[-71.222811692,41.651956138],[-71.222839249,41.651886818],[-71.222849963,41.65182018],[-71.222862431,41.651756816],[-71.222878457,41.651688842],[-71.222902494,41.651615489],[-71.222930965,41.651546195],[-71.222958538,41.651480169],[-71.2229888,41.651412846],[-71.223025241,41.651348191],[-71.223071493,41.651292226],[-71.223123075,41.651237556],[-71.223176401,41.651181563],[-71.223238642,41.651122916],[-71.223298207,41.651069613],[-71.223361339,41.651023638],[-71.223426252,41.650981623],[-71.223492956,41.650941648],[-71.22356408,41.650908979],[-71.223641416,41.650878337],[-71.223721393,41.650850377],[-71.223799645,41.650833687],[-71.223879645,41.650821736],[-71.223964095,41.650803094],[-71.224052102,41.650779773],[-71.224133869,41.650753807],[-71.22420145,41.650722455],[-71.224263688,41.650685808],[-71.224321482,41.650639819],[-71.224369484,41.650587837],[-71.224418395,41.650529867],[-71.224428186,41.650471871],[-71.2244033,41.650415827],[-71.224365101,41.650357167],[-71.224349146,41.650294489],[-71.224356257,41.650235847],[-71.224357178,41.650177189],[-71.22434921,41.650115171],[-71.224327023,41.650062518],[-71.224297705,41.650001821],[-71.224290601,41.649944494],[-71.224282628,41.649876484],[-71.224273759,41.649818489],[-71.224254233,41.64976383],[-71.22421247,41.649704475],[-71.22419472,41.649641153],[-71.224167189,41.649590477],[-71.224120076,41.649548491],[-71.224056978,41.649515773],[-71.223987703,41.649479771],[-71.223934396,41.649439095],[-71.223870397,41.649403082],[-71.223808182,41.649370413],[-71.223748648,41.64933839],[-71.223661542,41.649329719],[-71.223587749,41.649352365],[-71.223543318,41.649396373],[-71.223516646,41.649451676],[-71.223488165,41.64951635],[-71.223455262,41.649574336],[-71.22343831,41.649630966],[-71.223525412,41.649654982],[-71.22360451,41.649668368],[-71.223678271,41.649689036],[-71.223744034,41.649719062],[-71.223801824,41.649759725],[-71.223847123,41.64980507],[-71.223887113,41.64985111],[-71.223927102,41.649897745],[-71.223954635,41.649947758],[-71.223971485,41.650007762],[-71.223984802,41.650073772],[-71.223984778,41.650136434],[-71.223982976,41.650194426],[-71.223973184,41.650252422],[-71.223951798,41.650312426],[-71.223925131,41.650366425],[-71.223881542,41.650420406],[-71.223832661,41.650471059],[-71.223777528,41.650515041],[-71.223717088,41.650545015],[-71.223647731,41.650563693],[-71.223575756,41.650574314],[-71.223538426,41.650554991],[-71.223533097,41.650496318],[-71.223531354,41.65044033],[-71.22352159,41.650377644],[-71.223501163,41.650312989],[-71.223465669,41.650263666],[-71.223397239,41.650229632],[-71.223322586,41.65020361],[-71.223238148,41.650169606],[-71.223176815,41.650137578],[-71.223109288,41.650092272],[-71.223062202,41.650044247],[-71.223019542,41.649994884],[-71.222974247,41.649941557],[-71.222920024,41.649894202],[-71.222869395,41.64984754],[-71.222838296,41.649790201],[-71.222805457,41.649740198],[-71.222774367,41.649680868],[-71.222757502,41.649624843],[-71.222719303,41.649573501],[-71.222680229,41.649520167],[-71.222649102,41.649469482],[-71.222627809,41.649414819],[-71.222604711,41.649354822],[-71.222586083,41.64929749],[-71.222570979,41.64923614],[-71.22256211,41.649178168],[-71.222574606,41.64911549],[-71.222574612,41.649092827],[-71.222580072,41.649021213],[-71.222579731,41.648965709],[-71.222579387,41.648910821],[-71.222578852,41.648829474],[-71.22257173,41.648769608],[-71.222563765,41.648707201],[-71.222563365,41.648644103],[-71.222562962,41.648581669],[-71.222567638,41.64852238],[-71.222592504,41.648468674],[-71.222625831,41.648418739],[-71.222679254,41.648361146],[-71.222739552,41.648321224],[-71.222788865,41.648276222],[-71.2228297,41.648217432],[-71.222875484,41.648149186],[-71.222893484,41.648068409],[-71.222903979,41.648002776],[-71.222937129,41.647930109],[-71.222961655,41.647898905],[-71.222986334,41.647867497],[-71.223026391,41.647819408],[-71.223028498,41.647754441],[-71.222962557,41.647695416],[-71.222899192,41.647647078],[-71.222843403,41.647602508],[-71.222796853,41.647557892],[-71.22276626,41.647503778],[-71.222743172,41.647448378],[-71.222726817,41.647387232],[-71.222727996,41.647311583],[-71.222738387,41.647227632],[-71.222756398,41.647151269],[-71.222797173,41.647084886],[-71.222852293,41.647022242],[-71.222930182,41.646975296],[-71.223007277,41.646935918],[-71.223059948,41.646889689],[-71.22309827,41.646833408],[-71.223138222,41.646773998],[-71.223189182,41.646721453],[-71.223242726,41.646677764],[-71.223324,41.646637733],[-71.223360367,41.646667871],[-71.223368411,41.646740363],[-71.223373981,41.646821082],[-71.223408081,41.646896633],[-71.223473314,41.646971459],[-71.223536817,41.647044359],[-71.223576793,41.64711487],[-71.223588211,41.647189886],[-71.22357945,41.647263687],[-71.223566492,41.647341961],[-71.223549377,41.647422763],[-71.223529665,41.647497818],[-71.22349814,41.647561639],[-71.223446328,41.647613542],[-71.223388613,41.647662939],[-71.223333467,41.647717395],[-71.223281745,41.647776868],[-71.22323001,41.647839497],[-71.223182402,41.647899437],[-71.223180808,41.647901469],[-71.223137372,41.647948292],[-71.223098316,41.648019093],[-71.223094509,41.648082158],[-71.223099996,41.648146479],[-71.223113784,41.648201902],[-71.223153758,41.648273031],[-71.223204607,41.648339085],[-71.223298205,41.648376588],[-71.22337312,41.64839081],[-71.223456366,41.648389249],[-71.223538704,41.648378859],[-71.223617607,41.648359015],[-71.223679574,41.648320949],[-71.223739829,41.648276568],[-71.223802655,41.648237246],[-71.223866335,41.648204879],[-71.223956105,41.648174907],[-71.224027522,41.648165839],[-71.224103415,41.648200874],[-71.224119805,41.648261357],[-71.224129389,41.648316175],[-71.224166377,41.648315418],[-71.224244159,41.648250816],[-71.224284911,41.648182557],[-71.22431807,41.64810735],[-71.224353722,41.648026501],[-71.224394386,41.647943126],[-71.224416726,41.647902426],[-71.22443842,41.647862845],[-71.224484208,41.647793295],[-71.224519083,41.647723216],[-71.224543017,41.647651829],[-71.224556909,41.647590001],[-71.224559917,41.647535121],[-71.224582978,41.64746124],[-71.224601955,41.647408206],[-71.224628552,41.647355739],[-71.224686128,41.647288686],[-71.224735484,41.647247502],[-71.224794092,41.647210068],[-71.224856105,41.647175158],[-71.224915573,41.647143421],[-71.225000177,41.647094545],[-71.225073845,41.64704322],[-71.225136514,41.646983063],[-71.225179085,41.646938158],[-71.225240065,41.646873606],[-71.22529173,41.646805282],[-71.225341727,41.646735101],[-71.225389215,41.646666812],[-71.225432478,41.64659538],[-71.225471566,41.646523367],[-71.225509022,41.646469599],[-71.225559985,41.646415794],[-71.225607544,41.646359489],[-71.225666951,41.646313275],[-71.225733965,41.646277713],[-71.225793451,41.646241561],[-71.225864673,41.646205986],[-71.225932523,41.646167247],[-71.226005469,41.646134832],[-71.22608266,41.64610803],[-71.2261708,41.646087543],[-71.22626062,41.646066397],[-71.22633949,41.646038982],[-71.226414936,41.64600655],[-71.226498763,41.645967803],[-71.226584235,41.645922062],[-71.226662162,41.645879504],[-71.226740104,41.645840766],[-71.22682392,41.645804511],[-71.226903549,41.645763215],[-71.226973865,41.64571817],[-71.2270375,41.645673794],[-71.227090165,41.645628203],[-71.227140363,41.645588919],[-71.227190479,41.645540189],[-71.227183391,41.645485971],[-71.227242793,41.645440351],[-71.22729382,41.64539981],[-71.227325464,41.64534987],[-71.227367159,41.645295471],[-71.227387275,41.645275234],[-71.227418109,41.645244204],[-71.227461759,41.64523205],[-71.227529358,41.645281631],[-71.227609429,41.645316033],[-71.227703629,41.645318841],[-71.227769036,41.645295234],[-71.227839443,41.645257141],[-71.227881069,41.64519707],[-71.227921148,41.645149665],[-71.227974563,41.645092069],[-71.228033022,41.645031306],[-71.228094897,41.644977458],[-71.228166021,41.644928046],[-71.228235485,41.644874787],[-71.22830661,41.644825329],[-71.228380305,41.64478093],[-71.228462489,41.644747827],[-71.228548956,41.644726031],[-71.228632911,41.644706836],[-71.228723573,41.644687611],[-71.22881924,41.644660142],[-71.2289082,41.644632657],[-71.228990478,41.644613434],[-71.229075998,41.644577182],[-71.229162284,41.644532699],[-71.229243699,41.644508466],[-71.229329408,41.644499932],[-71.229410015,41.6444864],[-71.229470358,41.64445592],[-71.229522196,41.644410303],[-71.229584925,41.644363409],[-71.229660383,41.644327201],[-71.229749338,41.644300379],[-71.229845024,41.644275401],[-71.229878486,41.644264228],[-71.229934786,41.644245448],[-71.230023674,41.64421293],[-71.230089955,41.644191269],[-71.230155392,41.644167066],[-71.230244245,41.64412826],[-71.230331461,41.644094526],[-71.230422056,41.644062013],[-71.230510122,41.644028899],[-71.23059313,41.643995178],[-71.230665226,41.643960837],[-71.230733942,41.643925299],[-71.230804336,41.643889719],[-71.23087812,41.643859795],[-71.230956164,41.64383935],[-71.231038435,41.643821384],[-71.231119848,41.643797082],[-71.23118607,41.64376028],[-71.231253083,41.643723457],[-71.231326044,41.643693531],[-71.231401485,41.643661073],[-71.231482024,41.643634298],[-71.231561772,41.643614451],[-71.231639841,41.643595262],[-71.231718773,41.643581085],[-71.23180016,41.64355557],[-71.231877325,41.643526271],[-71.231944348,41.643494502],[-71.232015564,41.64345133],[-71.232081663,41.643406935],[-71.232132691,41.643365134],[-71.232190348,41.643312577],[-71.232237971,41.64326823],[-71.23228892,41.643215726],[-71.232333938,41.643160053],[-71.232365475,41.643098127],[-71.232402098,41.643037449],[-71.232430291,41.642980593],[-71.232449744,41.642869516],[-71.232461083,41.642803884],[-71.232469913,41.642740168],[-71.232468678,41.642677708],[-71.232442178,41.642612858],[-71.232353584,41.642567782],[-71.232281159,41.642549752],[-71.232206291,41.642539973],[-71.232111264,41.642539065],[-71.232017134,41.642542551],[-71.231940724,41.642559227],[-71.23185932,41.642581609],[-71.23177618,41.642596395],[-71.231680428,41.642608727],[-71.231597192,41.642609676],[-71.231518112,41.642601144],[-71.231420483,41.642588246],[-71.231322954,41.642587995],[-71.231239821,41.642600882],[-71.23114723,41.642586121],[-71.231075614,41.642564296],[-71.231020737,41.642527279],[-71.230993418,41.642461786],[-71.231009814,41.642397401],[-71.231049684,41.642326005],[-71.2311175,41.642279099],[-71.231200837,41.642297726],[-71.231279209,41.642322631],[-71.231361363,41.642288268],[-71.231447767,41.642258328],[-71.231529352,41.642265585],[-71.231603578,41.642305048],[-71.2316737,41.642356507],[-71.231745483,41.642404152],[-71.231827174,41.642422775],[-71.231862108,41.642365249],[-71.231884401,41.642304651],[-71.231909239,41.642240835],[-71.231934053,41.642182736],[-71.231952207,41.6421278],[-71.231966089,41.642066566],[-71.23197578,41.642008523],[-71.231966944,41.641941083],[-71.231911905,41.641884513],[-71.231853689,41.641851331],[-71.231784529,41.641818124],[-71.231719516,41.641777356],[-71.23167127,41.641729629],[-71.231648941,41.641659094],[-71.231656054,41.64158339],[-71.231654849,41.6415285],[-71.231675523,41.641476086],[-71.231718164,41.641441859],[-71.231805882,41.641484463],[-71.231856728,41.641544797],[-71.231900902,41.641619066],[-71.231944227,41.641684459],[-71.231981644,41.641748672],[-71.232018267,41.641820407],[-71.232053187,41.641890926],[-71.232081346,41.641952625],[-71.232099416,41.642013728],[-71.232096492,41.642079356],[-71.232073365,41.64214249],[-71.232048535,41.642204386],[-71.232032986,41.642270671],[-71.232033461,41.642340057],[-71.232045622,41.642399912],[-71.232103104,41.642448278],[-71.232197384,41.642467479],[-71.232284916,41.642481656],[-71.232356596,41.642510364],[-71.23243245,41.642539767],[-71.232495647,41.64256283],[-71.232530737,41.642526137],[-71.232489035,41.642451257],[-71.232450837,41.642399026],[-71.232419344,41.642339859],[-71.232396205,41.642273095],[-71.232390737,41.642209414],[-71.232402144,41.642149454],[-71.232416851,41.642087604],[-71.232414769,41.64202329],[-71.232393363,41.641965335],[-71.232365261,41.641911847],[-71.232342176,41.641854551],[-71.23232743,41.64178584],[-71.232322775,41.641717106],[-71.232324047,41.641652778],[-71.232325261,41.641587832],[-71.23232735,41.64151781],[-71.232331958,41.641450334],[-71.232339115,41.641385973],[-71.232349594,41.641321574],[-71.232363463,41.641255994],[-71.232378203,41.641193481],[-71.232392079,41.641133504],[-71.232414397,41.641074141],[-71.232449284,41.641012841],[-71.232490954,41.640955307],[-71.232528408,41.640899662],[-71.23256755,41.640841482],[-71.232612553,41.640781394],[-71.232658442,41.640728284],[-71.232705205,41.640677645],[-71.232755344,41.64062889],[-71.232811316,41.64057761],[-71.232874026,41.640526276],[-71.232934211,41.640473725],[-71.232995264,41.640424927],[-71.233053814,41.640376785],[-71.233118225,41.640326737],[-71.233185162,41.640277906],[-71.233249566,41.640229732],[-71.233311461,41.640183451],[-71.233377644,41.640147265],[-71.233448883,41.640112326],[-71.233521756,41.640072931],[-71.233589595,41.640034233],[-71.233654096,41.639999301],[-71.233719456,41.639963135],[-71.233786442,41.63992439],[-71.233849231,41.639883187],[-71.233912823,41.639839402],[-71.233977245,41.63979379],[-71.23404508,41.639748757],[-71.234117889,41.639702409],[-71.234190781,41.639657982],[-71.234256908,41.639612968],[-71.234317098,41.639566111],[-71.234373947,41.639516067],[-71.234438357,41.639465994],[-71.234510327,41.639415916],[-71.234576413,41.639365848],[-71.234630689,41.639311384],[-71.234679936,41.63925636],[-71.234735075,41.639206929],[-71.234793655,41.639165739],[-71.23485144,41.639132712],[-71.234910086,41.639097834],[-71.234982934,41.639056563],[-71.235067542,41.639009578],[-71.235127008,41.638975319],[-71.235190654,41.638940384],[-71.235254342,41.638909886],[-71.235315507,41.638877461],[-71.235374105,41.638839427],[-71.235432664,41.638795675],[-71.235488698,41.638750683],[-71.235547278,41.63870947],[-71.235605873,41.63867203],[-71.23566451,41.63863905],[-71.235759258,41.638602128],[-71.235829739,41.638580427],[-71.235901909,41.638563098],[-71.23600349,41.63854005],[-71.236077362,41.638523982],[-71.236159665,41.638511044],[-71.23623606,41.63849688],[-71.236338507,41.638478225],[-71.236412399,41.638464696],[-71.236493874,41.638453059],[-71.236568616,41.638440172],[-71.236670251,41.638426523],[-71.236774331,41.638403435],[-71.236838089,41.638377967],[-71.236908301,41.638354824],[-71.236932875,41.638346716],[-71.237028579,41.638329348],[-71.237136991,41.638320746],[-71.23721011,41.638317277],[-71.237310973,41.638313116],[-71.237415958,41.638300138],[-71.237494928,41.638289752],[-71.237568046,41.638286306],[-71.237668072,41.63828594],[-71.237773165,41.638283641],[-71.237847092,41.638276446],[-71.23794868,41.638259022],[-71.238046929,41.63823784],[-71.23812251,41.63822875],[-71.238204043,41.638225277],[-71.238279712,41.638224375],[-71.238353674,41.638223468],[-71.238432676,41.638220034],[-71.238520072,41.638214013],[-71.238600754,41.63820992],[-71.238675549,41.638206476],[-71.238757084,41.638202385],[-71.238847849,41.638200144],[-71.23892938,41.638197311],[-71.239004182,41.638191992],[-71.239080639,41.638184779],[-71.239167176,41.638180035],[-71.239248701,41.638178459],[-71.239321797,41.638173159],[-71.239395731,41.638164042],[-71.239481427,41.638156163],[-71.239571351,41.638150764],[-71.239647846,41.638149222],[-71.239757139,41.638148784],[-71.239843719,41.638148454],[-71.2399303,41.638148169],[-71.240007666,41.638149785],[-71.240081674,41.638152628],[-71.240164939,41.638157985],[-71.240244843,41.638165278],[-71.240317172,41.638168757],[-71.240402129,41.638177914],[-71.240493898,41.638191431],[-71.240564598,41.638205678],[-71.240666478,41.638229235],[-71.240771704,41.63824715],[-71.240849924,41.638256314],[-71.240922275,41.638261715],[-71.241022377,41.638272712],[-71.241129262,41.638287429],[-71.241208307,41.638295977],[-71.241279859,41.63830325],[-71.241383316,41.638313591],[-71.241454809,41.638320247],[-71.241529648,41.638321216],[-71.241602741,41.638316555],[-71.241707812,41.638312331],[-71.24178184,41.638317758],[-71.24186427,41.638326267],[-71.241945048,41.638336054],[-71.242018259,41.638347767],[-71.2420915,41.638359458],[-71.242171471,41.638373038],[-71.24225477,41.638385323],[-71.242329665,41.638395142],[-71.242403709,41.638404341],[-71.242481132,41.63841476],[-71.242566936,41.638425793],[-71.242646036,41.638436169],[-71.242718439,41.638451677],[-71.242795069,41.638469664],[-71.24288347,41.638487013],[-71.242967611,41.638502478],[-71.243044244,41.638519847],[-71.243123357,41.638534684],[-71.243210058,41.638550108],[-71.243293404,41.638566189],[-71.243369186,41.638582915],[-71.243445794,41.638599049],[-71.243528311,41.638616385],[-71.243609998,41.638635618],[-71.243680743,41.638654254],[-71.243777628,41.638684772],[-71.24384501,41.638705985],[-71.243942715,41.638729575],[-71.244024415,41.638753244],[-71.244095993,41.638769366],[-71.244181011,41.638786684],[-71.244273587,41.638804614],[-71.244356103,41.63882259],[-71.244436959,41.638843718],[-71.244527056,41.638864204],[-71.244619655,41.638884031],[-71.244701386,41.638907677],[-71.244782259,41.638932624],[-71.244860591,41.638952466],[-71.244953092,41.638958457],[-71.245026293,41.638965114],[-71.24507859,41.638992651],[-71.245092296,41.63900126],[-71.244359456,41.637868508],[-71.243996456,41.637389509],[-71.243794456,41.637061508],[-71.243635456,41.636732508],[-71.243538456,41.636453509],[-71.243616456,41.636073508],[-71.243782456,41.635618508],[-71.243981456,41.635137508],[-71.244134456,41.634732508],[-71.244300456,41.634277508],[-71.244578456,41.633696508],[-71.245192456,41.631746507],[-71.245243456,41.631214507],[-71.245249456,41.631045507],[-71.245251456,41.630986507],[-71.245256456,41.630916507],[-71.245368456,41.630830507],[-71.245620456,41.630577507],[-71.245682456,41.630512507],[-71.245819456,41.630366507],[-71.245872456,41.630316507],[-71.245959457,41.630220507],[-71.245935456,41.630180507],[-71.245735456,41.630048507],[-71.245445456,41.629851507],[-71.245322456,41.629762507],[-71.245193456,41.629667506],[-71.244949456,41.629447507],[-71.244644456,41.629124506],[-71.244323456,41.628716506],[-71.244209455,41.628574507],[-71.244163456,41.628512507],[-71.244125456,41.628468507],[-71.244079456,41.628405506],[-71.244049456,41.628361506],[-71.243995455,41.628294507],[-71.243888456,41.628152506],[-71.243697456,41.627909507],[-71.243431455,41.627589506],[-71.243095456,41.627177506],[-71.242935455,41.626973507],[-71.242469455,41.626392506],[-71.242530455,41.626098506],[-71.242630455,41.625799506],[-71.242843455,41.625246506],[-71.243095456,41.624732506],[-71.243652455,41.623613506],[-71.243662455,41.623590506],[-71.243759455,41.623391505],[-71.244110455,41.622695506],[-71.244796455,41.621294505],[-71.244827456,41.621244505],[-71.245071455,41.620726505],[-71.245147455,41.620576505],[-71.245178456,41.620503505],[-71.244926456,41.620481505],[-71.244926456,41.620441505],[-71.244903456,41.620365505],[-71.244880455,41.620302505],[-71.244689456,41.620342505],[-71.244522455,41.620372505],[-71.244400456,41.620379505],[-71.244277455,41.620390505],[-71.244117455,41.620366505],[-71.243903455,41.620330505],[-71.243057454,41.620234505],[-71.242736455,41.620200505],[-71.242446455,41.620166505],[-71.242233455,41.620142505],[-71.241782455,41.620092505],[-71.241523454,41.620070505],[-71.241348454,41.620056505],[-71.241272454,41.620048505],[-71.240928454,41.620023505],[-71.240753454,41.620022505],[-71.240638455,41.620020505],[-71.240371454,41.620048505],[-71.240173454,41.620088505],[-71.239967454,41.620119505],[-71.239700454,41.620191505],[-71.239463454,41.620273505],[-71.239234454,41.620372505],[-71.238792453,41.620601505],[-71.238289453,41.620849506],[-71.238125453,41.620927506],[-71.238021454,41.620868506],[-71.237992977,41.62083021],[-71.237917745,41.620849209],[-71.237841656,41.620853427],[-71.23775412,41.620861941],[-71.237664117,41.620877835],[-71.237586373,41.620899269],[-71.23751269,41.620918883],[-71.237435777,41.620938421],[-71.237346569,41.620961087],[-71.23726146,41.620987444],[-71.237170631,41.621011318],[-71.237068318,41.62103393],[-71.236993862,41.621048602],[-71.23697864,41.621051952],[-71.236896491,41.621070037],[-71.236808094,41.621087787],[-71.236705808,41.621103607],[-71.236604332,41.621122585],[-71.236509401,41.621143408],[-71.236407945,41.621164809],[-71.236335107,41.621178844],[-71.236233626,41.621206398],[-71.236167336,41.621229092],[-71.236096957,41.621252944],[-71.236020018,41.621278701],[-71.235947983,41.621305019],[-71.235879245,41.621330109],[-71.235812111,41.621350331],[-71.235742542,41.62136993],[-71.235673798,41.621388914],[-71.235578875,41.621415224],[-71.23548475,41.62143973],[-71.235414366,41.621457452],[-71.235342353,41.62147828],[-71.235243327,41.621508926],[-71.235144294,41.621533991],[-71.23504937,41.621560278],[-71.234980618,41.621588501],[-71.234907755,41.621623414],[-71.23482098,41.621646678],[-71.234741637,41.621656444],[-71.234655703,41.621668046],[-71.234568966,41.621682093],[-71.234477295,41.621710286],[-71.234410184,41.621732291],[-71.234314413,41.621764133],[-71.234219498,41.621788018],[-71.234119666,41.621806974],[-71.234025559,41.621827133],[-71.233945314,41.62186331],[-71.233856131,41.621886568],[-71.233770224,41.621884036],[-71.233685138,41.621889488],[-71.233605766,41.621898635],[-71.233525576,41.621906545],[-71.233504274,41.621908213],[-71.233399773,41.621916641],[-71.233339872,41.62192178],[-71.233253963,41.62193457],[-71.233163926,41.621950461],[-71.233061663,41.621967582],[-71.232967552,41.621980993],[-71.23287671,41.621992606],[-71.232776082,41.622004767],[-71.232680323,41.622018815],[-71.232603417,41.622035948],[-71.232524007,41.622061698],[-71.232433188,41.62206773],[-71.232333367,41.622068915],[-71.232236849,41.622074957],[-71.232128022,41.622087144],[-71.232053549,41.622098108],[-71.231962699,41.622118936],[-71.231884962,41.622137897],[-71.23178596,41.622140296],[-71.23168779,41.622140181],[-71.231602716,41.622142567],[-71.231511071,41.622149259],[-71.231436615,41.622155946],[-71.231336779,41.622168154],[-71.231249221,41.622174215],[-71.231169869,41.622178467],[-71.231082308,41.622192487],[-71.230998854,41.622201005],[-71.230938451,41.622207506],[-71.230913751,41.622210182],[-71.230803294,41.622218682],[-71.230729674,41.622222283],[-71.230628207,41.622230805],[-71.230515276,41.622240534],[-71.230429365,41.622245981],[-71.230347539,41.622251438],[-71.230266602,41.622255662],[-71.230178223,41.622261103],[-71.230086581,41.622267177],[-71.229999045,41.62227509],[-71.229971299,41.622277655],[-71.229913124,41.62228303],[-71.229820651,41.622290909],[-71.229731469,41.622298818],[-71.229643113,41.622306111],[-71.229556367,41.622314643],[-71.229462304,41.622323753],[-71.229375552,41.622333497],[-71.229292093,41.622343248],[-71.229202903,41.622353032],[-71.229109604,41.622361526],[-71.229022894,41.622368823],[-71.228937804,41.622374888],[-71.228845338,41.622380959],[-71.228758604,41.622386403],[-71.228675152,41.622394325],[-71.228588436,41.622402834],[-71.228522671,41.622410192],[-71.228438356,41.622420195],[-71.228410844,41.622423546],[-71.228323305,41.622432075],[-71.228233295,41.622441216],[-71.228143308,41.622452186],[-71.228057374,41.622463166],[-71.22797063,41.622471079],[-71.22787981,41.622477131],[-71.227788987,41.622483799],[-71.227701453,41.622491093],[-71.227612266,41.622500236],[-71.2275157,41.622509978],[-71.227424923,41.622520328],[-71.227335733,41.622530088],[-71.22724572,41.622539823],[-71.227153235,41.622550169],[-71.227066511,41.622560552],[-71.226983059,41.622568449],[-71.226893884,41.622574504],[-71.226804674,41.622581793],[-71.226720391,41.622591564],[-71.226638574,41.622601912],[-71.226547765,41.622612284],[-71.22645855,41.622620808],[-71.226373457,41.62262749],[-71.226289186,41.62263415],[-71.226195925,41.622640834],[-71.226145262,41.622645354],[-71.22607217,41.622652414],[-71.226019993,41.622657864],[-71.225926713,41.622668825],[-71.225830167,41.622681036],[-71.225742604,41.622695075],[-71.225658299,41.622709762],[-71.225568298,41.622723772],[-71.225482351,41.622737814],[-71.225400538,41.62274695],[-71.225317916,41.622753018],[-71.225227073,41.622757238],[-71.22514445,41.622763307],[-71.225071604,41.622771228],[-71.22496198,41.622784024],[-71.224879347,41.622792586],[-71.224803239,41.622800477],[-71.224730395,41.62280778],[-71.224655941,41.622813823],[-71.224571665,41.622821762],[-71.224495608,41.622832123],[-71.224406414,41.622842498],[-71.224334391,41.622843011],[-71.224259958,41.622844182],[-71.22418142,41.62285026],[-71.224099576,41.622859394],[-71.224023476,41.6228655],[-71.22394658,41.622865384],[-71.223863147,41.622868386],[-71.223802529,41.622903322],[-71.223723951,41.62294009],[-71.223651918,41.622957206],[-71.223581544,41.622971262],[-71.223504621,41.622977366],[-71.223429344,41.622983428],[-71.223344256,41.622995642],[-71.223267324,41.623010916],[-71.223194486,41.623031118],[-71.223124904,41.623045152],[-71.223053728,41.623054288],[-71.222971905,41.623065869],[-71.222892498,41.623082418],[-71.222802484,41.623106237],[-71.222730475,41.623117841],[-71.222642917,41.623123324],[-71.222556997,41.623130595],[-71.222479268,41.623139738],[-71.222407251,41.623153149],[-71.222326236,41.623167841],[-71.222246028,41.623179425],[-71.222157665,41.623202081],[-71.2220823,41.623242492],[-71.222012739,41.623273129],[-71.22193662,41.623297644],[-71.221865401,41.623316614],[-71.221795823,41.623336799],[-71.2217197,41.623355139],[-71.221632953,41.623370389],[-71.221551148,41.623384438],[-71.221477479,41.623399125],[-71.221403012,41.623415022],[-71.221325264,41.623428441],[-71.221240155,41.623445546],[-71.221153415,41.623459012],[-71.221072399,41.623466911],[-71.220995453,41.623485272],[-71.220922597,41.623509085],[-71.220837463,41.623539112],[-71.220775259,41.623566678],[-71.220714642,41.623607765],[-71.220650763,41.623656184],[-71.220581984,41.623702785],[-71.220518908,41.623748782],[-71.220457473,41.623788609],[-71.220388689,41.623822334],[-71.220310107,41.62385233],[-71.220229905,41.623876194],[-71.220151329,41.623897614],[-71.220066187,41.623922106],[-71.21997288,41.623952707],[-71.219894282,41.623986385],[-71.219814062,41.624021317],[-71.219750201,41.624051349],[-71.219741176,41.624081887],[-71.219809448,41.624117506],[-71.219875447,41.624147507],[-71.219875612,41.624147659],[-71.219876027,41.624147845],[-71.219920145,41.624188954],[-71.219930447,41.624198507],[-71.219930568,41.624198666],[-71.21993073,41.624198817],[-71.219938999,41.624209769],[-71.219971447,41.624252506],[-71.219980792,41.624266004],[-71.220007479,41.624303883],[-71.220044219,41.624357327],[-71.2200752,41.62441748],[-71.220095574,41.624477654],[-71.220110214,41.624531707],[-71.220110956,41.624585726],[-71.220110853,41.624644661],[-71.220110736,41.624714023],[-71.22010815,41.624783403],[-71.220099046,41.624844785],[-71.220082574,41.624911067],[-71.220058739,41.624981652],[-71.220016921,41.625038038],[-71.219960396,41.625084051],[-71.219897343,41.625131237],[-71.21983017,41.625179694],[-71.219763838,41.62522383],[-71.219694211,41.625261807],[-71.219630352,41.62529799],[-71.219564037,41.625331081],[-71.219491982,41.625366604],[-71.219413362,41.625404627],[-71.21932495,41.625437664],[-71.219243107,41.625467057],[-71.219166169,41.625489692],[-71.219088399,41.625507432],[-71.219009014,41.625525145],[-71.218936172,41.625545343],[-71.218850212,41.625568003],[-71.218768391,41.625585092],[-71.21868733,41.625609547],[-71.218612875,41.625629147],[-71.218536764,41.625629669],[-71.21845657,41.625630228],[-71.2183833,41.625633744],[-71.218248082,41.625641575],[-71.218198038,41.625644734],[-71.218106376,41.625653863],[-71.218089853,41.625752664],[-71.218329739,41.625764389],[-71.21965402,41.625829008],[-71.219665394,41.625884265],[-71.219660386,41.62594257],[-71.219635768,41.625996551],[-71.21962257,41.626053029],[-71.219603687,41.626105788],[-71.219592137,41.626161653],[-71.219587938,41.626216278],[-71.219587827,41.626277065],[-71.219583648,41.626334137],[-71.219572094,41.626397983],[-71.219565473,41.626455666],[-71.219549029,41.626508454],[-71.219527707,41.626526241],[-71.219408121,41.626620674],[-71.219332547,41.626701036],[-71.219322882,41.626764795],[-71.219320761,41.626825325],[-71.219297535,41.626881504],[-71.219260055,41.626935247],[-71.219220028,41.626985851],[-71.219180815,41.627031403],[-71.219135008,41.627093381],[-71.219093277,41.627143341],[-71.219049032,41.627189566],[-71.219003934,41.627235744],[-71.218949639,41.627287021],[-71.218899536,41.627341442],[-71.218837668,41.627388974],[-71.21875455,41.627409422],[-71.218686617,41.627428603],[-71.21861356,41.62744146],[-71.218531981,41.627437372],[-71.21844031,41.627426971],[-71.218365395,41.627411465],[-71.218293897,41.627402279],[-71.218264536,41.627411218],[-71.218342946,41.627450036],[-71.218422168,41.62748442],[-71.218493024,41.627522031],[-71.218555473,41.627558386],[-71.218623828,41.627603515],[-71.218651904,41.627658905],[-71.218621167,41.627717695],[-71.218576127,41.627771443],[-71.218522696,41.627827136],[-71.218466687,41.627872738],[-71.21839872,41.627892559],[-71.218328025,41.627880837],[-71.218239609,41.627857797],[-71.218168828,41.627830935],[-71.218099737,41.627800898],[-71.218021382,41.627770289],[-71.217944696,41.62774156],[-71.217857151,41.627721677],[-71.217785811,41.627738952],[-71.217733266,41.627800959],[-71.217707642,41.627868521],[-71.217690417,41.627939214],[-71.217688285,41.628001665],[-71.217674334,41.628055351],[-71.217649469,41.628109651],[-71.217623847,41.628176595],[-71.217590669,41.628249879],[-71.217554977,41.628319383],[-71.217526884,41.628393891],[-71.217501276,41.628464632],[-71.217474806,41.628530293],[-71.217442447,41.628597244],[-71.217407603,41.62867496],[-71.217388595,41.628727993],[-71.217366329,41.628794306],[-71.217353248,41.628851104],[-71.21733342,41.628903518],[-71.217316972,41.628963487],[-71.217305587,41.629022828],[-71.217295843,41.629076456],[-71.217304304,41.629100283],[-71.217319811,41.629143865],[-71.217374824,41.629201059],[-71.217441467,41.629240559],[-71.217506397,41.629274382],[-71.217580592,41.629308777],[-71.217644632,41.629336927],[-71.217712076,41.6293676],[-71.21778039,41.629401431],[-71.217845346,41.62943649],[-71.217912753,41.629461468],[-71.217984326,41.629482021],[-71.218068573,41.629510791],[-71.21814098,41.629528761],[-71.218219181,41.629532292],[-71.218242381,41.629482379],[-71.218173235,41.629443537],[-71.218094818,41.629405954],[-71.218024871,41.62938289],[-71.217951606,41.629359154],[-71.217884196,41.629334816],[-71.217804157,41.629305484],[-71.217719954,41.629280533],[-71.217638195,41.6292474],[-71.217562374,41.629215516],[-71.21750246,41.629177886],[-71.217451701,41.629130765],[-71.217439304,41.629100615],[-71.217426094,41.629068451],[-71.217421467,41.629004108],[-71.217431951,41.628934702],[-71.217455972,41.628878503],[-71.217485856,41.628819733],[-71.217517437,41.628763483],[-71.217538925,41.628707895],[-71.217556256,41.62865488],[-71.21757937,41.628589828],[-71.217605893,41.628526042],[-71.217639083,41.628457195],[-71.21766642,41.628395308],[-71.217691252,41.628334651],[-71.217721169,41.628282193],[-71.217767862,41.628220241],[-71.217800304,41.628169024],[-71.217822689,41.628117234],[-71.217852751,41.628087486],[-71.218011291,41.628169542],[-71.218414514,41.628395771],[-71.218729164,41.628572476],[-71.218799135,41.628603772],[-71.218792848,41.628668752],[-71.218785651,41.628725519],[-71.218767565,41.628791179],[-71.218753699,41.62885367],[-71.218741481,41.628922477],[-71.218722575,41.628987517],[-71.218712887,41.629049309],[-71.218706189,41.629103745],[-71.218704893,41.629114308],[-71.218704455,41.629179896],[-71.218704838,41.629239175],[-71.218705298,41.629308562],[-71.218705748,41.629380441],[-71.218712002,41.629435275],[-71.218738397,41.629491941],[-71.218784898,41.629537199],[-71.218851514,41.629569128],[-71.218931592,41.629575452],[-71.219109653,41.629578289],[-71.21917503,41.6295516],[-71.21923271,41.629500285],[-71.219255787,41.62942956],[-71.219256252,41.629364589],[-71.219255821,41.629302178],[-71.219255466,41.629243517],[-71.219253368,41.62917918],[-71.219248722,41.629111749],[-71.219248325,41.629105093],[-71.219244967,41.629049924],[-71.219242908,41.628990642],[-71.219243353,41.628930107],[-71.219274921,41.628869443],[-71.21933175,41.628817531],[-71.219404604,41.628774394],[-71.219467408,41.628736333],[-71.219530979,41.628690063],[-71.219582775,41.628638824],[-71.219642151,41.628590006],[-71.219710028,41.628555707],[-71.219771043,41.628501267],[-71.219822039,41.628458808],[-71.219874694,41.62841322],[-71.219929885,41.628366381],[-71.219988406,41.628317606],[-71.220036844,41.628267571],[-71.220090279,41.628210642],[-71.220135285,41.628150559],[-71.220162665,41.628092446],[-71.220179093,41.62803625],[-71.2201964,41.627981314],[-71.220211171,41.627927653],[-71.22023342,41.627857566],[-71.220244852,41.627800786],[-71.220266365,41.627745861],[-71.220287828,41.627688351],[-71.220319372,41.627625834],[-71.220351788,41.627565789],[-71.220376646,41.627512724],[-71.220396463,41.627455255],[-71.220428854,41.627393998],[-71.220471424,41.627347174],[-71.220518198,41.627300954],[-71.220571717,41.627259759],[-71.220626056,41.627212254],[-71.220669496,41.627168587],[-71.220688675,41.62714581],[-71.221162506,41.626845839],[-71.221127103,41.62682828],[-71.221176369,41.626776372],[-71.221224813,41.626731437],[-71.221251396,41.626680891],[-71.221265326,41.626624094],[-71.221266141,41.626619019],[-71.22129571,41.62656162],[-71.221315458,41.626491642],[-71.221335999,41.626428435],[-71.221356572,41.626357841],[-71.221373835,41.626291561],[-71.22139034,41.626231432],[-71.221405979,41.626167001],[-71.221417539,41.626101302],[-71.221430716,41.626042399],[-71.221447985,41.625989018],[-71.221476709,41.62592949],[-71.221511158,41.625871211],[-71.221552176,41.625809265],[-71.221593169,41.625746062],[-71.221625979,41.625693267],[-71.221657958,41.625642369],[-71.22169163,41.625580383],[-71.221718679,41.62552762],[-71.221768692,41.625479166],[-71.221821956,41.625425803],[-71.221843332,41.625359534],[-71.22184999,41.625292611],[-71.221850915,41.625226337],[-71.221856736,41.625169864],[-71.221863375,41.625107264],[-71.221874895,41.625050781],[-71.221891359,41.624985757],[-71.221897204,41.624916363],[-71.22190629,41.624851939],[-71.221921976,41.624790549],[-71.22193763,41.624722413],[-71.22197616,41.624664738],[-71.22201471,41.624609533],[-71.222017246,41.624551222],[-71.222018962,41.624492292],[-71.22202071,41.624425997],[-71.22202573,41.624357241],[-71.222036458,41.624293393],[-71.222048031,41.624224652],[-71.222074322,41.624170652],[-71.22213737,41.62413817],[-71.222210204,41.624126591],[-71.222283833,41.624114397],[-71.222355015,41.624089915],[-71.222426253,41.624066623],[-71.222504843,41.624048906],[-71.222590725,41.624029332],[-71.22267749,41.624017146],[-71.222752754,41.624007379],[-71.222823953,41.624007413],[-71.222864793,41.624050461],[-71.223004705,41.624047505],[-71.223154348,41.624085097],[-71.223159216,41.624108412],[-71.223301568,41.624126365],[-71.223374329,41.624146047],[-71.22359278,41.624158534],[-71.223596039,41.624173269],[-71.223918355,41.624187651],[-71.22392411,41.624167403],[-71.224372405,41.624165345],[-71.224451781,41.624177679],[-71.224523716,41.624205363],[-71.224589935,41.62424408],[-71.224657794,41.624284035],[-71.224717428,41.624330169],[-71.224766455,41.624383595],[-71.224808094,41.624432749],[-71.224858755,41.624481903],[-71.224915144,41.6245243],[-71.224923292,41.624529237],[-71.224987894,41.624553839],[-71.225054102,41.624580915],[-71.225123589,41.62461104],[-71.225203726,41.624638126],[-71.225287958,41.624662752],[-71.225362385,41.624684907],[-71.225435181,41.624696653],[-71.225518632,41.624704079],[-71.225605341,41.624705384],[-71.225669142,41.624725066],[-71.225672355,41.624750848],[-71.225782006,41.624754037],[-71.225798339,41.624769375],[-71.226121508,41.624762942],[-71.226109366,41.624672053],[-71.226169993,41.624627922],[-71.226219145,41.624580082],[-71.226257683,41.624526682],[-71.226279035,41.624457964],[-71.226313495,41.624395979],[-71.226324208,41.624341987],[-71.226324272,41.624305144],[-71.22639647,41.624155429],[-71.226400626,41.624116744],[-71.226536592,41.624037688],[-71.226639652,41.624027939],[-71.226892521,41.624017105],[-71.226892497,41.624001142],[-71.226964517,41.623994453],[-71.22703403,41.624011084],[-71.227110094,41.624028348],[-71.227183694,41.624044371],[-71.22725073,41.624077599],[-71.227294034,41.624122458],[-71.227343869,41.624172797],[-71.227371605,41.624230563],[-71.227397697,41.624280891],[-71.2274026,41.624303635],[-71.227430332,41.624347839],[-71.227470385,41.624376109],[-71.227540586,41.62447562],[-71.227515201,41.624489099],[-71.227626246,41.624646338],[-71.227651574,41.624646375],[-71.227980818,41.624956647],[-71.228075398,41.625188149],[-71.228007949,41.625434271],[-71.227884779,41.62572449],[-71.227825702,41.625842334],[-71.22780598,41.625893263],[-71.227817387,41.625935004],[-71.2278787,41.625967006],[-71.228260558,41.626096253],[-71.228281629,41.626108538],[-71.228362751,41.626155863],[-71.22842078,41.626193346],[-71.228482908,41.626241907],[-71.228548293,41.626291666],[-71.228607921,41.626340244],[-71.228660212,41.626394294],[-71.228690406,41.626462447],[-71.228688684,41.626517078],[-71.228675516,41.62657541],[-71.228645884,41.62667114],[-71.228591615,41.626768939],[-71.228575989,41.62682452],[-71.228552004,41.62688198],[-71.22852129,41.626937595],[-71.228511565,41.626996301],[-71.228512785,41.6270543],[-71.228533349,41.62711477],[-71.228571595,41.627174573],[-71.228610582,41.627224886],[-71.22865626,41.627271373],[-71.228714492,41.627311532],[-71.228757694,41.627359911],[-71.228810106,41.627407009],[-71.22887516,41.627455988],[-71.228929251,41.627502449],[-71.228969948,41.627552103],[-71.229009013,41.627613165],[-71.229040443,41.627662866],[-71.229068585,41.627726464],[-71.229082394,41.627784425],[-71.229073558,41.627841852],[-71.229050405,41.627904368],[-71.229021392,41.627968814],[-71.228965391,41.628014421],[-71.228893295,41.628045582],[-71.228827055,41.628068524],[-71.228754051,41.628090878],[-71.228684436,41.628111937],[-71.228600534,41.628138107],[-71.228523368,41.628164271],[-71.228438604,41.628185362],[-71.228363086,41.628203914],[-71.228292622,41.628223758],[-71.228224692,41.628249851],[-71.228146723,41.628278505],[-71.228071271,41.628310344],[-71.227990769,41.628339632],[-71.227910265,41.628369584],[-71.227840684,41.628396954],[-71.227768547,41.62842306],[-71.227688913,41.628456146],[-71.227616819,41.628486689],[-71.227545598,41.628519727],[-71.227471839,41.628554702],[-71.22741244,41.628595932],[-71.227356437,41.628641515],[-71.227310542,41.628697185],[-71.227266333,41.628750343],[-71.227233874,41.628800282],[-71.227212374,41.628853333],[-71.227200981,41.628909519],[-71.227213968,41.628966838],[-71.227216853,41.629027358],[-71.227250852,41.629082119],[-71.227296029,41.629124695],[-71.227298185,41.629126735],[-71.227346333,41.629158707],[-71.227326391,41.6291966],[-71.227414243,41.629260637],[-71.227516235,41.629303781],[-71.227783608,41.629313517],[-71.228268609,41.62931112],[-71.228687145,41.629305156],[-71.228942695,41.629306719],[-71.229126684,41.629291579],[-71.229280231,41.629244967],[-71.229373984,41.629188494],[-71.229443646,41.629171186],[-71.229499599,41.629129947],[-71.229505561,41.62912557],[-71.229528733,41.629073116],[-71.229486588,41.629048684],[-71.229414163,41.629034472],[-71.229345933,41.629008217],[-71.229289328,41.628964929],[-71.229251207,41.628918391],[-71.229223134,41.628867418],[-71.229220183,41.628800541],[-71.229228176,41.628740619],[-71.229242114,41.628687595],[-71.229257734,41.628633294],[-71.229257672,41.628626341],[-71.229311874,41.628559301],[-71.229406293,41.628474449],[-71.229463067,41.628411806],[-71.229501511,41.628380772],[-71.229574575,41.628365987],[-71.229646584,41.628326638],[-71.229687502,41.628279806],[-71.229733367,41.628223518],[-71.229780961,41.628176656],[-71.229837852,41.628136699],[-71.229894792,41.628099922],[-71.229946842,41.628073424],[-71.229958449,41.628067505],[-71.23003741,41.628056508],[-71.23013578,41.628061861],[-71.230209753,41.628062836],[-71.230284543,41.62805814],[-71.230378577,41.628043289],[-71.230465866,41.628023415],[-71.230557356,41.628004762],[-71.230640543,41.627996267],[-71.230713597,41.627990949],[-71.230781532,41.627970526],[-71.230863739,41.627941194],[-71.23093159,41.627904396],[-71.230990999,41.627860054],[-71.231059661,41.627818798],[-71.231134264,41.627792627],[-71.231203043,41.627767151],[-71.231264948,41.627723432],[-71.231282393,41.627691844],[-71.231230904,41.627656688],[-71.231145877,41.627638697],[-71.231047554,41.627644115],[-71.230968572,41.627645669],[-71.230907792,41.627609347],[-71.230851941,41.627553415],[-71.230790191,41.627493718],[-71.230731812,41.627437163],[-71.2306827,41.627380606],[-71.230634421,41.62732149],[-71.230570176,41.627268099],[-71.230496776,41.627224887],[-71.230419976,41.627178465],[-71.230351551,41.627126368],[-71.230293233,41.627077404],[-71.230258446,41.627028337],[-71.230263107,41.626970305],[-71.230290446,41.626912189],[-71.23034135,41.626853351],[-71.230393877,41.626792642],[-71.230438888,41.626728758],[-71.230490651,41.626675571],[-71.230558559,41.626646961],[-71.230647596,41.62663841],[-71.230755173,41.626635529],[-71.230832463,41.626630153],[-71.23090638,41.626622322],[-71.231006305,41.626604946],[-71.231081042,41.626597711],[-71.231164229,41.626596191],[-71.231243235,41.626595872],[-71.231319741,41.626595571],[-71.231401277,41.626595304],[-71.231488708,41.626599373],[-71.231570304,41.62660663],[-71.231645158,41.626615175],[-71.23172004,41.626624383],[-71.231806678,41.62663602],[-71.231890813,41.626648315],[-71.231969874,41.626656869],[-71.232048928,41.626659729],[-71.232138869,41.626661288],[-71.232224611,41.626660985],[-71.232301107,41.626663221],[-71.23237343,41.62666483],[-71.232453299,41.626669613],[-71.232528199,41.626681931],[-71.232624173,41.626706167],[-71.232716806,41.626734855],[-71.23278585,41.626755369],[-71.232853221,41.626775308],[-71.232940019,41.626807138],[-71.233007502,41.626844137],[-71.233064947,41.626883652],[-71.233119119,41.626940837],[-71.233157353,41.627004388],[-71.233181223,41.627055397],[-71.233199295,41.627115242],[-71.233200496,41.62717139],[-71.233177285,41.627219362],[-71.233109426,41.6272587],[-71.23306686,41.627306787],[-71.233051245,41.627360471],[-71.233038256,41.62742802],[-71.233018511,41.627493037],[-71.232992891,41.627556189],[-71.232972194,41.627607986],[-71.232972439,41.627644578],[-71.232946643,41.627683762],[-71.232819667,41.627800284],[-71.232759341,41.627830811],[-71.23272562,41.627818292],[-71.232661119,41.627848833],[-71.232566447,41.627900206],[-71.232502833,41.627937038],[-71.232573,41.627996067],[-71.232699751,41.628104054],[-71.232783017,41.628113258],[-71.232810293,41.628166104],[-71.232835395,41.628206276],[-71.232871219,41.628226393],[-71.232942928,41.628266512],[-71.232994435,41.628304801],[-71.233044314,41.628346242],[-71.233099185,41.628381977],[-71.233181684,41.628399961],[-71.233261545,41.628399666],[-71.233343058,41.628398094],[-71.233416226,41.628402243],[-71.233489459,41.628420251],[-71.233566178,41.628450228],[-71.233633668,41.628493493],[-71.233682734,41.628539986],[-71.23371586,41.628593463],[-71.233733913,41.628650815],[-71.233742735,41.628714481],[-71.233743113,41.628770581],[-71.233741808,41.628828621],[-71.233721194,41.628889863],[-71.233671924,41.628937386],[-71.23359557,41.628959095],[-71.233516772,41.628989672],[-71.233426938,41.629005746],[-71.233358975,41.629025554],[-71.233286807,41.629044757],[-71.233209585,41.629062667],[-71.233137423,41.629080612],[-71.233068611,41.629099137],[-71.232994749,41.62911518],[-71.232914139,41.629126839],[-71.232836841,41.629133452],[-71.232784883,41.629137722],[-71.232748628,41.629140702],[-71.2326571,41.629153662],[-71.232583185,41.629167806],[-71.232511005,41.629182572],[-71.232421199,41.629199286],[-71.232330491,41.629212866],[-71.232239823,41.629231522],[-71.232155949,41.629258312],[-71.23208297,41.629281926],[-71.232009959,41.629298588],[-71.231934409,41.629317165],[-71.231847976,41.629336402],[-71.231766506,41.629349316],[-71.231690059,41.629356502],[-71.23160106,41.629369467],[-71.231529665,41.629378585],[-71.231448049,41.629368126],[-71.231388106,41.629327988],[-71.231314002,41.629306843],[-71.231242492,41.629299518],[-71.2311685,41.629295411],[-71.231081115,41.629301382],[-71.231083832,41.629329746],[-71.231126183,41.629378191],[-71.231184494,41.629429692],[-71.231240253,41.629471697],[-71.231303697,41.629527623],[-71.231354493,41.629582926],[-71.231410322,41.629637577],[-71.231456848,41.629679057],[-71.231526052,41.629727953],[-71.23159431,41.629754847],[-71.231665973,41.629784196],[-71.231725884,41.629817405],[-71.231799285,41.629861279],[-71.231858346,41.629893846],[-71.231922456,41.62992894],[-71.231985741,41.629964672],[-71.232047401,41.630009823],[-71.232111492,41.630042401],[-71.23218285,41.630027657],[-71.232255867,41.630009691],[-71.232334897,41.630011956],[-71.232415629,41.630015415],[-71.232486386,41.630035362],[-71.232554586,41.630054616],[-71.232623634,41.630075176],[-71.232686834,41.630102058],[-71.232760141,41.630124503],[-71.232835773,41.630122941],[-71.23291646,41.630122671],[-71.232989587,41.630122383],[-71.233067824,41.63013217],[-71.23312943,41.630168538],[-71.233187754,41.630217546],[-71.233255181,41.630239337],[-71.233323404,41.630260535],[-71.233384973,41.630291231],[-71.233449087,41.630325638],[-71.233501957,41.630314738],[-71.233518408,41.6302579],[-71.233491061,41.630192407],[-71.233468852,41.630137629],[-71.233463421,41.630079642],[-71.233484803,41.630009574],[-71.233535724,41.629953868],[-71.233615484,41.629941566],[-71.233705487,41.629951357],[-71.233781292,41.629974379],[-71.23385537,41.62998738],[-71.233926743,41.629976385],[-71.233987875,41.629942748],[-71.23402288,41.629895307],[-71.234014033,41.62983036],[-71.234054224,41.629804359],[-71.234108127,41.629823717],[-71.234178165,41.629863191],[-71.234229328,41.629844717],[-71.234277735,41.629792183],[-71.234268885,41.629727877],[-71.234224072,41.629684527],[-71.234142417,41.629668467],[-71.234058367,41.629671268],[-71.233980304,41.62968609],[-71.233903114,41.629710976],[-71.23383014,41.629733311],[-71.233740338,41.629756338],[-71.233651293,41.629765509],[-71.233594755,41.629727231],[-71.233541446,41.629674462],[-71.233515046,41.629623494],[-71.233511294,41.629564825],[-71.233520202,41.629511217],[-71.233541582,41.629441766],[-71.233582374,41.629380456],[-71.233641787,41.629342356],[-71.233703723,41.629298613],[-71.233750481,41.629254286],[-71.2337922,41.629204939],[-71.233824579,41.629143633],[-71.233826392,41.629140161],[-71.233857762,41.629079812],[-71.233906108,41.629019732],[-71.233986043,41.629031443],[-71.234081883,41.629029813],[-71.234160696,41.629003009],[-71.234231998,41.628979435],[-71.234310056,41.628958324],[-71.234385548,41.628938488],[-71.234476275,41.628927446],[-71.234551196,41.628942918],[-71.234623691,41.628977344],[-71.234689527,41.629015551],[-71.234747007,41.629062017],[-71.234797791,41.629113545],[-71.234830775,41.629142505],[-71.234853585,41.629162523],[-71.234911858,41.629201398],[-71.234990054,41.629206152],[-71.235062974,41.629174349],[-71.235101966,41.629143153],[-71.235122333,41.629126871],[-71.235164063,41.629081892],[-71.235206624,41.629035084],[-71.23526016,41.628995141],[-71.23532123,41.628953933],[-71.235379784,41.628909564],[-71.235420066,41.628898062],[-71.235459036,41.628946475],[-71.235509038,41.629003032],[-71.235537502,41.628989719],[-71.235546347,41.628928495],[-71.235524978,41.628876852],[-71.235475012,41.628819015],[-71.235415799,41.62876374],[-71.235357548,41.62872674],[-71.23530434,41.628686574],[-71.235282145,41.628635592],[-71.235296846,41.628573741],[-71.235326712,41.628508015],[-71.235378397,41.628443505],[-71.235429192,41.628373298],[-71.2354792,41.628308784],[-71.235530055,41.628246148],[-71.235584328,41.628189853],[-71.235630258,41.628146164],[-71.235695031,41.628153471],[-71.23572207,41.628167827],[-71.235765898,41.628191071],[-71.235777226,41.628253439],[-71.235777626,41.628312101],[-71.235763716,41.628367024],[-71.235719434,41.628410077],[-71.23565408,41.628440571],[-71.235580255,41.628462928],[-71.235505667,41.628500399],[-71.235467316,41.628546622],[-71.235483719,41.628612752],[-71.2355286,41.628661773],[-71.235568447,41.628712086],[-71.23560663,41.628766809],[-71.235653248,41.628823381],[-71.23569388,41.628868024],[-71.235711982,41.628936079],[-71.235708232,41.629003558],[-71.235681689,41.62905413],[-71.235637455,41.629107886],[-71.235616365,41.629144337],[-71.235600893,41.629171082],[-71.235620367,41.629194362],[-71.235678231,41.629169567],[-71.235708967,41.62914455],[-71.235735115,41.629123273],[-71.235775881,41.629060682],[-71.235798128,41.628994389],[-71.235806951,41.628931289],[-71.235818362,41.628876406],[-71.235878626,41.62883833],[-71.235944739,41.628793932],[-71.236018407,41.628750169],[-71.236071092,41.628709582],[-71.236113652,41.628662752],[-71.236150288,41.628610922],[-71.236196216,41.628567827],[-71.236264991,41.628542989],[-71.236355677,41.628526868],[-71.236438771,41.628511416],[-71.236512694,41.628502323],[-71.236586683,41.628507112],[-71.236678374,41.628513703],[-71.236753196,41.628515933],[-71.236830545,41.628518831],[-71.236907023,41.628518526],[-71.236948307,41.628515487],[-71.236988524,41.628512538],[-71.237078452,41.628510297],[-71.237158372,41.628518232],[-71.237241637,41.628527982],[-71.237329952,41.628532712],[-71.237414846,41.628531739],[-71.237488766,41.628530856],[-71.237562755,41.628528052],[-71.237637453,41.628515782],[-71.237708771,41.628495362],[-71.237777528,41.628467321],[-71.237806264,41.628491811],[-71.237831041,41.628552906],[-71.237854968,41.628613336],[-71.237888179,41.62867692],[-71.237925621,41.628741749],[-71.237962066,41.62878956],[-71.238002789,41.628842367],[-71.238040102,41.628893931],[-71.238054796,41.628953791],[-71.238111359,41.628993941],[-71.238152922,41.629049906],[-71.238182702,41.62910278],[-71.238236827,41.629150403],[-71.238294247,41.629190006],[-71.238360143,41.629236444],[-71.238416668,41.629270922],[-71.238466526,41.62931108],[-71.238513077,41.629355049],[-71.238556256,41.629403471],[-71.238610463,41.629461271],[-71.238659541,41.629513433],[-71.238707811,41.62956939],[-71.238728449,41.629636787],[-71.238707047,41.629705622],[-71.238665337,41.62975369],[-71.238610133,41.629791779],[-71.23857943,41.629854303],[-71.238550356,41.62990551],[-71.238544915,41.629969875],[-71.238567976,41.630025912],[-71.238587748,41.630088893],[-71.23856548,41.630153289],[-71.238538124,41.630217101],[-71.238562883,41.630268087],[-71.238636099,41.630283576],[-71.238724345,41.630283251],[-71.238798549,41.630318273],[-71.238846732,41.630358449],[-71.238889917,41.63040559],[-71.23893323,41.630466612],[-71.238949538,41.630519524],[-71.238962558,41.630578762],[-71.238973047,41.630638635],[-71.238975929,41.63069474],[-71.238976394,41.630760994],[-71.238976815,41.630830358],[-71.238977196,41.630887098],[-71.238975961,41.630951427],[-71.238972112,41.631006351],[-71.238951513,41.631065055],[-71.238924957,41.631119379],[-71.238890018,41.631173728],[-71.238845808,41.631221837],[-71.238788136,41.63127442],[-71.238730419,41.631315614],[-71.238661644,41.631339859],[-71.238595531,41.631384258],[-71.238547169,41.631441185],[-71.238498807,41.631498134],[-71.238454637,41.631558843],[-71.238423032,41.631610067],[-71.238384697,41.631660018],[-71.238354866,41.631725105],[-71.238348534,41.631783111],[-71.238352291,41.631841734],[-71.23835186,41.631902908],[-71.238387844,41.631937066],[-71.238397531,41.631946258],[-71.238432342,41.631999097],[-71.238414285,41.632062245],[-71.238399604,41.632127252],[-71.238423497,41.632181415],[-71.238414539,41.632225578],[-71.238350917,41.632264312],[-71.238291436,41.632296697],[-71.238218539,41.632329783],[-71.238138833,41.63235844],[-71.23805831,41.632385242],[-71.237987057,41.632411357],[-71.237917445,41.632438733],[-71.237894216,41.632484258],[-71.237859919,41.632507713],[-71.237788552,41.632516767],[-71.237712841,41.632514536],[-71.237639643,41.632501562],[-71.237568833,41.632470961],[-71.237505513,41.632427662],[-71.237456355,41.632372365],[-71.237413926,41.632311322],[-71.237376525,41.632250929],[-71.237334099,41.632189291],[-71.237300938,41.632135815],[-71.237255194,41.632080481],[-71.237208608,41.632030199],[-71.237173015,41.631982389],[-71.237135595,41.631934209],[-71.237084912,41.631879321],[-71.23703526,41.631870654],[-71.236987641,41.631916879],[-71.236969405,41.631933829],[-71.236934278,41.631966498],[-71.236934227,41.631978916],[-71.23693952,41.632011654],[-71.236996113,41.632052445],[-71.237055224,41.632096375],[-71.237103525,41.63215231],[-71.237144236,41.632208296],[-71.237177377,41.632259233],[-71.2371996,41.632319088],[-71.237221859,41.632377639],[-71.237244908,41.632429262],[-71.237271335,41.632482173],[-71.237311175,41.632535001],[-71.237351897,41.632588449],[-71.237368259,41.632650188],[-71.237361112,41.632713909],[-71.237340526,41.632776409],[-71.237307238,41.632828887],[-71.237281564,41.632883212],[-71.237251628,41.632936315],[-71.237209962,41.632987584],[-71.237167421,41.633036885],[-71.23712572,41.633089389],[-71.237079014,41.633143186],[-71.237014633,41.633195753],[-71.236946838,41.633240787],[-71.236929052,41.633251815],[-71.236882386,41.633280753],[-71.236817929,41.633322022],[-71.236747651,41.63337023],[-71.236678149,41.63341526],[-71.236606998,41.633460905],[-71.236534155,41.633502818],[-71.236452857,41.63353968],[-71.236363896,41.633564609],[-71.236274923,41.633585125],[-71.236185055,41.633600607],[-71.236096908,41.633612914],[-71.236024681,41.633623291],[-71.2359491,41.633633661],[-71.23585667,41.633642207],[-71.235768416,41.633643125],[-71.23568271,41.63364725],[-71.23560973,41.633670249],[-71.235551963,41.633707645],[-71.235520373,41.633762024],[-71.235533369,41.633819365],[-71.235544672,41.633880498],[-71.235527425,41.63393857],[-71.235507599,41.633993525],[-71.235559025,41.634016009],[-71.235606425,41.634061263],[-71.235620226,41.634115426],[-71.235623988,41.634172174],[-71.2355856,41.634219014],[-71.235524515,41.634262737],[-71.235451667,41.634305266],[-71.235370396,41.634342791],[-71.235290641,41.634360125],[-71.235218398,41.634366683],[-71.235137733,41.634375164],[-71.235050321,41.634378645],[-71.234978043,41.634378913],[-71.234887233,41.634378658],[-71.234807422,41.634387141],[-71.234725977,41.634400057],[-71.234636173,41.634421827],[-71.234567414,41.634448586],[-71.234504558,41.634477828],[-71.234413025,41.634490172],[-71.234318784,41.634479114],[-71.234248069,41.634462347],[-71.23418398,41.634435488],[-71.234125748,41.634400386],[-71.234065,41.634369074],[-71.23400091,41.634335262],[-71.233938521,41.634302712],[-71.233855065,41.634270844],[-71.233763317,41.634254189],[-71.233695112,41.634234889],[-71.233629373,41.634209283],[-71.23355778,41.634191233],[-71.233473694,41.63418651],[-71.23338794,41.634187455],[-71.233293834,41.634195355],[-71.233201453,41.634206438],[-71.233107365,41.634217495],[-71.233031803,41.634230401],[-71.232960415,41.634243888],[-71.232871358,41.634247386],[-71.232790666,41.634247678],[-71.232711608,41.634243561],[-71.232629206,41.63424449],[-71.23253508,41.634249897],[-71.232443513,41.634255904],[-71.232348524,41.634256232],[-71.232255108,41.634244626],[-71.232167592,41.634229168],[-71.232100197,41.634206118],[-71.232023567,41.634182407],[-71.231957803,41.634155542],[-71.231881844,41.634109764],[-71.231802537,41.634062788],[-71.231716458,41.634017054],[-71.231654889,41.633985739],[-71.231590797,41.633952589],[-71.23153088,41.633919975],[-71.231471798,41.633884252],[-71.231410192,41.633847242],[-71.231346899,41.63381279],[-71.231284482,41.633780261],[-71.231223777,41.63374641],[-71.231140222,41.63369501],[-71.231054129,41.633645502],[-71.230997575,41.633610403],[-71.230924125,41.633562754],[-71.23086086,41.633528919],[-71.230785142,41.633520989],[-71.230723976,41.633554006],[-71.230671342,41.633602778],[-71.230627952,41.633649604],[-71.230586258,41.63369895],[-71.230552982,41.633754605],[-71.23053316,41.633807638],[-71.230519217,41.633861898],[-71.230512027,41.633919352],[-71.230514943,41.633980488],[-71.230525381,41.634035948],[-71.230556871,41.634094499],[-71.230603532,41.634155464],[-71.230622366,41.634207742],[-71.230648005,41.634273277],[-71.230701277,41.634320353],[-71.230763729,41.63435924],[-71.23080824,41.63435086],[-71.230835642,41.634300314],[-71.230860504,41.634244731],[-71.230897078,41.634180279],[-71.230934501,41.634117064],[-71.230993902,41.634075855],[-71.231066767,41.634037102],[-71.23113302,41.634012283],[-71.231225469,41.634006874],[-71.231301954,41.634006618],[-71.231380966,41.634006917],[-71.231454155,41.634014841],[-71.231542604,41.634040409],[-71.231604233,41.634079294],[-71.23164666,41.634139654],[-71.231699073,41.634181101],[-71.23176147,41.63421116],[-71.231824702,41.634238637],[-71.231896367,41.634268649],[-71.231967994,41.634300535],[-71.232047271,41.634339987],[-71.232106406,41.634385178],[-71.232163041,41.634430362],[-71.232228089,41.634475544],[-71.232260419,41.63453787],[-71.232269187,41.634592045],[-71.232251946,41.634655193],[-71.232212853,41.634717169],[-71.232158566,41.634774742],[-71.232095048,41.634831105],[-71.232028171,41.63488874],[-71.231953719,41.634942607],[-71.231880921,41.634994602],[-71.231819001,41.635040242],[-71.231748598,41.635073284],[-71.231673889,41.635086191],[-71.231601559,41.635083941],[-71.231528357,41.635071581],[-71.231444882,41.635037196],[-71.231385835,41.635000215],[-71.231319167,41.634963263],[-71.231251708,41.634933238],[-71.231182601,41.634903872],[-71.231111787,41.634874479],[-71.231045157,41.634843175],[-71.230979363,41.634808717],[-71.230917764,41.634769855],[-71.230856928,41.634723425],[-71.230806132,41.634674388],[-71.230777226,41.634624694],[-71.230761693,41.634562956],[-71.230730216,41.634501249],[-71.230656929,41.634480083],[-71.230571214,41.634486057],[-71.230484778,41.634504081],[-71.23040256,41.634533985],[-71.230321248,41.634565834],[-71.230241628,41.634601461],[-71.230174556,41.634632589],[-71.23010669,41.63466376],[-71.230038772,41.634692988],[-71.229975908,41.634723508],[-71.229918654,41.634753859],[-71.229898002,41.634764788],[-71.229826784,41.634802904],[-71.229755564,41.634841614],[-71.229696144,41.634879666],[-71.229640937,41.634923423],[-71.229588261,41.634967117],[-71.229538943,41.635009561],[-71.229473696,41.635055832],[-71.229416768,41.635095765],[-71.22935985,41.63513316],[-71.229309766,41.635183812],[-71.229269761,41.635236935],[-71.229217162,41.635291378],[-71.229157713,41.635328789],[-71.229091538,41.635363738],[-71.229024511,41.635398044],[-71.22896083,41.635434233],[-71.228897971,41.635463472],[-71.228827549,41.635493379],[-71.228695957,41.635549328],[-71.228636539,41.635593691],[-71.228600798,41.635655011],[-71.228584365,41.635713724],[-71.228551971,41.635776287],[-71.228504394,41.635825001],[-71.22843815,41.635854277],[-71.228363462,41.635869034],[-71.228291302,41.635891413],[-71.228224238,41.635920001],[-71.228168136,41.635958701],[-71.228104599,41.636011287],[-71.228035093,41.636055009],[-71.227992602,41.636111945],[-71.227960967,41.636160628],[-71.227899069,41.636207524],[-71.227830436,41.636253832],[-71.227762617,41.636295042],[-71.227689646,41.636321809],[-71.227616615,41.63634103],[-71.22753187,41.63636212],[-71.227449596,41.636382599],[-71.227367319,41.636396789],[-71.227279078,41.636400902],[-71.227188382,41.636416352],[-71.227108664,41.636438072],[-71.227029789,41.636462355],[-71.226953421,41.636484677],[-71.226875437,41.636514611],[-71.226806709,41.636547036],[-71.22674892,41.636580677],[-71.226702243,41.6366395],[-71.226668074,41.636688794],[-71.226622245,41.636748878],[-71.226606692,41.636815139],[-71.226630676,41.636881906],[-71.226671352,41.636930326],[-71.226752264,41.636965348],[-71.226804235,41.636945004],[-71.22683928,41.636897564],[-71.226888522,41.636845036],[-71.226956353,41.636801265],[-71.227031822,41.636775144],[-71.227099767,41.636747794],[-71.227171006,41.636719788],[-71.227257391,41.636686032],[-71.227351395,41.636659818],[-71.227432841,41.636647524],[-71.227514353,41.636641543],[-71.227598446,41.636645058],[-71.227680051,41.636652958],[-71.227764859,41.636638752],[-71.22782681,41.636601347],[-71.227892098,41.636553155],[-71.227965815,41.636515664],[-71.228046273,41.636477525],[-71.228119998,41.636438158],[-71.228193709,41.636394995],[-71.228272464,41.63635564],[-71.228357118,41.636320027],[-71.228430863,41.636283153],[-71.228502125,41.636249474],[-71.228585116,41.636217607],[-71.228680776,41.63618888],[-71.228763789,41.636158934],[-71.22884346,41.636126488],[-71.228938263,41.636098376],[-71.22904068,41.636072158],[-71.22912794,41.636047253],[-71.229216025,41.636021687],[-71.229304975,41.635993607],[-71.229392235,41.635968679],[-71.229477053,41.63595893],[-71.229561226,41.635972484],[-71.229531991,41.636001596],[-71.229459041,41.63603088],[-71.22938525,41.636057007],[-71.229361914,41.636089906],[-71.229415958,41.636127562],[-71.2294834,41.63615441],[-71.229529096,41.636198381],[-71.229566459,41.636259416],[-71.229545013,41.636321318],[-71.229537822,41.636378727],[-71.229589451,41.636432797],[-71.229653572,41.636466589],[-71.229704298,41.636510549],[-71.229664044,41.636528361],[-71.229594492,41.636561403],[-71.22952741,41.636586882],[-71.229456082,41.63660732],[-71.229381385,41.636623999],[-71.229294084,41.636643872],[-71.229200912,41.636668169],[-71.229119512,41.636691167],[-71.22904064,41.636714788],[-71.228960968,41.636740328],[-71.228890547,41.636769595],[-71.228832859,41.63682279],[-71.228829875,41.636880208],[-71.228782312,41.636932696],[-71.228706053,41.636972743],[-71.228623904,41.637007082],[-71.228555137,41.637034477],[-71.22848634,41.637054234],[-71.228392173,41.637053943],[-71.228319001,41.637048533],[-71.228232547,41.637069689],[-71.228159613,41.637102128],[-71.228076506,41.637117551],[-71.228003331,41.637112781],[-71.227924424,41.637130112],[-71.227856512,41.637156846],[-71.227785194,41.637181696],[-71.227710548,41.637207797],[-71.227639272,41.637237106],[-71.22756289,41.637255655],[-71.227485724,41.637279257],[-71.227412689,41.637299117],[-71.227324613,41.637329073],[-71.227249158,41.637358967],[-71.227176959,41.637375628],[-71.227103084,41.637392307],[-71.227024159,41.637406459],[-71.226941046,41.637423162],[-71.226861265,41.637437975],[-71.226789049,41.637451479],[-71.226705942,41.637466901],[-71.226637094,41.637484187],[-71.226565757,41.637498974],[-71.226487598,41.637504917],[-71.226407787,41.637512137],[-71.226327194,41.637531361],[-71.226240737,41.63755311],[-71.226150889,41.637569202],[-71.226068545,41.637577101],[-71.225990402,41.63757927],[-71.225914716,41.637577009],[-71.225842296,41.637559615],[-71.225822647,41.637513007],[-71.22584244,41.637453685],[-71.225883339,41.637406237],[-71.225916553,41.637344912],[-71.225925446,41.637289406],[-71.225922527,41.637230099],[-71.225896954,41.637171561],[-71.225852928,41.637122538],[-71.225782082,41.637086213],[-71.225706249,41.637061241],[-71.225627948,41.637043239],[-71.225556458,41.637036574],[-71.225484152,41.637035578],[-71.225390805,41.637035926],[-71.225311814,41.637036835],[-71.22523538,41.637045938],[-71.22516233,41.637061977],[-71.225091808,41.637078641],[-71.225012083,41.637101617],[-71.224988003,41.637143959],[-71.224962272,41.637194507],[-71.224921441,41.637254579],[-71.224876464,41.637314641],[-71.224843144,41.637364576],[-71.224785466,41.637414637],[-71.224734558,41.637471597],[-71.224688651,41.63752786],[-71.224612355,41.63756157],[-71.22454188,41.637581389],[-71.224446092,41.637589301],[-71.224352743,41.637582673],[-71.224263548,41.637567251],[-71.224179338,41.637547999],[-71.224104604,41.637558362],[-71.224043429,41.637592017],[-71.223984908,41.637639513],[-71.223929752,41.637691431],[-71.223878789,41.637746493],[-71.223826129,41.637792105],[-71.223757381,41.637821373],[-71.223684333,41.637836771],[-71.22359445,41.637846549],[-71.223517119,41.637851234],[-71.223444028,41.637855289],[-71.223352384,41.637856258],[-71.223267509,41.637857174],[-71.223188503,41.637861284],[-71.223110354,41.637864686],[-71.223037216,41.637865607],[-71.222941385,41.637869104],[-71.222847219,41.637868145],[-71.22276818,41.637865919],[-71.222695897,41.637866202],[-71.222623393,41.637833027],[-71.222579299,41.637778926],[-71.222542857,41.637731773],[-71.222503776,41.637667598],[-71.222468913,41.637607825],[-71.222422283,41.637548046],[-71.222358979,41.637509175],[-71.222368924,41.637486444],[-71.222390467,41.637439088],[-71.222392656,41.637383567],[-71.222394778,41.637322373],[-71.2223977,41.637252354],[-71.222407442,41.637198726],[-71.222409598,41.637143845],[-71.222421047,41.637090198],[-71.222430763,41.637035289],[-71.222433776,41.63697977],[-71.22245434,41.636911623],[-71.222458934,41.636842843],[-71.222431747,41.63679187],[-71.222402822,41.636740915],[-71.222371335,41.63668298],[-71.222332345,41.636633305],[-71.222290855,41.636583624],[-71.222235017,41.636531484],[-71.222180844,41.636474888],[-71.222131766,41.63642464],[-71.222091114,41.636378757],[-71.22204626,41.636331583],[-71.221997182,41.636281312],[-71.221952311,41.636231051],[-71.221910791,41.636181347],[-71.22187011,41.636127894],[-71.221823594,41.636084558],[-71.221766987,41.636041244],[-71.221717093,41.635996665],[-71.221673916,41.635949495],[-71.221626482,41.635892939],[-71.221593295,41.635833741],[-71.221564396,41.635784022],[-71.221538847,41.635727998],[-71.221519174,41.635673819],[-71.221496962,41.635621554],[-71.221463857,41.63557187],[-71.221429884,41.635518388],[-71.221402575,41.63545351],[-71.221377768,41.63538802],[-71.221344601,41.635331384],[-71.221309771,41.63527161],[-71.221279104,41.635208005],[-71.221253469,41.635143771],[-71.221231249,41.635086452],[-71.221200637,41.635031057],[-71.221169962,41.634969395],[-71.221136845,41.634915251],[-71.221072677,41.634872604],[-71.22101776,41.634833708],[-71.220983801,41.634777092],[-71.220950655,41.634722948],[-71.220907493,41.634679597],[-71.220870157,41.634621693],[-71.220866436,41.634565585],[-71.220825729,41.634511492],[-71.220779209,41.634462461],[-71.220739342,41.634411525],[-71.220708681,41.634346708],[-71.220709985,41.634291824],[-71.220713796,41.634228097],[-71.220715954,41.634173215],[-71.220734039,41.634107555],[-71.220760539,41.634048822],[-71.220787098,41.633990684],[-71.220817018,41.633937608],[-71.220846053,41.633877601],[-71.220864178,41.633816973],[-71.220888097,41.633748788],[-71.220926366,41.633682423],[-71.220957909,41.633620523],[-71.220976891,41.633566232],[-71.220979854,41.633508196],[-71.220981137,41.633443845],[-71.220979941,41.633389001],[-71.22098876,41.633323364],[-71.220973322,41.633269812],[-71.220941872,41.633218234],[-71.220845753,41.633170021],[-71.220700905,41.633132689],[-71.220559453,41.633099756],[-71.220210996,41.633029752],[-71.2201747,41.633006542],[-71.220115628,41.632970173],[-71.220052375,41.632942027],[-71.219985769,41.632906943],[-71.219925883,41.632875627],[-71.219876851,41.632829768],[-71.219851196,41.632763636],[-71.219834828,41.632699996],[-71.219825166,41.63263635],[-71.219808729,41.632567656],[-71.219797457,41.6325097],[-71.21979285,41.632447256],[-71.219791594,41.632385459],[-71.219797947,41.632319199],[-71.219821984,41.632266155],[-71.219875224,41.632226858],[-71.220017223,41.632168338],[-71.219953666,41.631893636],[-71.219929877,41.631790871],[-71.219913473,41.631587842],[-71.219921978,41.631474934],[-71.219961047,41.631406718],[-71.220017755,41.631333971],[-71.220022636,41.631311869],[-71.220075352,41.631273851],[-71.220131357,41.631222577],[-71.220120072,41.631167731],[-71.220104571,41.631107867],[-71.220105038,41.631049208],[-71.220080338,41.630995062],[-71.220044638,41.63093277],[-71.219994617,41.630869254],[-71.219936231,41.630808897],[-71.219873671,41.63075491],[-71.219815299,41.630698349],[-71.219758673,41.630646846],[-71.219689455,41.630602928],[-71.219616196,41.630584294],[-71.219549671,41.630559295],[-71.219503138,41.63051406],[-71.219480932,41.630461178],[-71.219469637,41.630401918],[-71.219454907,41.630333228],[-71.219424434,41.630303081],[-71.219390616,41.630271027],[-71.219301281,41.630234126],[-71.219071683,41.630228877],[-71.219044871,41.630233134],[-71.218972718,41.630254844],[-71.21894181,41.630282737],[-71.218912665,41.630325706],[-71.218864231,41.630374437],[-71.218772043,41.630418921],[-71.218601006,41.630489512],[-71.218509602,41.630522037],[-71.218388068,41.63057857],[-71.218271585,41.630637013],[-71.218134356,41.63073465],[-71.218114648,41.630808492],[-71.218130051,41.630848186],[-71.218153944,41.630912439],[-71.218187895,41.630962743],[-71.218225261,41.631020008],[-71.218254172,41.631072885],[-71.218288118,41.63112447],[-71.218327994,41.631179203],[-71.218372014,41.631227588],[-71.218421916,41.631275987],[-71.218469288,41.631324381],[-71.218507469,41.631376571],[-71.218538927,41.631432586],[-71.218568678,41.631488621],[-71.218601802,41.631540227],[-71.218629014,41.631591201],[-71.218652062,41.631646624],[-71.218664214,41.631705222],[-71.218671333,41.631764471],[-71.218672619,41.63183322],[-71.218672949,41.631890509],[-71.218673314,41.631946768],[-71.21867206,41.632018004],[-71.218659872,41.632079881],[-71.218635056,41.632143649],[-71.218606792,41.632194213],[-71.218551619,41.632242995],[-71.218509892,41.632291033],[-71.218473248,41.632340982],[-71.218300114,41.632346023],[-71.218283476,41.632505657],[-71.218255033,41.632527176],[-71.218243643,41.632587798],[-71.218225507,41.632643326],[-71.21821665,41.632703314],[-71.218213651,41.632761943],[-71.218208108,41.632816839],[-71.218164765,41.632878801],[-71.218170147,41.632931116],[-71.218199083,41.632985273],[-71.218215414,41.633043219],[-71.218230076,41.633099307],[-71.218243092,41.633162322],[-71.218247714,41.6332279],[-71.218207685,41.63327784],[-71.21818948,41.633321407],[-71.218218447,41.633382494],[-71.218233916,41.633442335],[-71.218255329,41.633502191],[-71.218252386,41.633569054],[-71.218262856,41.633628929],[-71.218285932,41.63368497],[-71.218294685,41.633739832],[-71.218313622,41.633808487],[-71.218334968,41.633862671],[-71.218355533,41.633921244],[-71.218376107,41.633984849],[-71.218390787,41.634051],[-71.218393738,41.634115339],[-71.218394165,41.634185343],[-71.218387891,41.634254096],[-71.218368187,41.634326681],[-71.218388633,41.634370778],[-71.218427641,41.634422329],[-71.218464119,41.634473921],[-71.218482113,41.634528097],[-71.218470787,41.634594985],[-71.218505611,41.634655422],[-71.21854963,41.634704471],[-71.218586116,41.634754164],[-71.218615869,41.634810175],[-71.218645658,41.634864929],[-71.218669574,41.634924105],[-71.218685161,41.634992202],[-71.218699018,41.635058329],[-71.218713692,41.635118854],[-71.218729237,41.635182469],[-71.218743942,41.635249901],[-71.218753597,41.635314828],[-71.218758209,41.635375992],[-71.218766166,41.635439017],[-71.21877497,41.635503347],[-71.218781264,41.635563235],[-71.218783391,41.635635096],[-71.218785427,41.635692503],[-71.218790823,41.635748592],[-71.218796292,41.635816047],[-71.218790768,41.635873459],[-71.218790325,41.635933398],[-71.218805867,41.635997676],[-71.218814624,41.636051876],[-71.218820034,41.636111761],[-71.218820459,41.636175453],[-71.218818369,41.636242318],[-71.218809562,41.636311728],[-71.21879649,41.636373604],[-71.218780868,41.636432911],[-71.218761058,41.636487841],[-71.218732019,41.636547848],[-71.21869208,41.636611716],[-71.218661312,41.636662891],[-71.218623823,41.636717251],[-71.218588817,41.636768484],[-71.218558877,41.636818404],[-71.218518946,41.636880351],[-71.218497406,41.6369334],[-71.218491082,41.636992708],[-71.21846873,41.637050216],[-71.218438036,41.637112094],[-71.218398845,41.637165238],[-71.218295089,41.63724569],[-71.218154256,41.637306726],[-71.217991502,41.637360939],[-71.217815271,41.637408852],[-71.217646467,41.637438465],[-71.217449211,41.637483925],[-71.217293131,41.637531819],[-71.217101822,41.637590488],[-71.216985292,41.637642641],[-71.216897636,41.637735664],[-71.216816,41.63785324],[-71.216785763,41.63785902],[-71.216741484,41.637903964],[-71.216709015,41.637953259],[-71.216636799,41.637966139],[-71.216545072,41.637951345],[-71.216464164,41.637930334],[-71.216488845,41.637967924],[-71.216538693,41.638008754],[-71.216596129,41.638050175],[-71.216637654,41.63809796],[-71.21661938,41.638135878],[-71.216570916,41.63818271],[-71.216428648,41.638403277],[-71.216403636,41.638455129],[-71.216360224,41.638503848],[-71.216303398,41.638552603],[-71.21623548,41.638586259],[-71.216161701,41.638614892],[-71.21608533,41.638636635],[-71.215996287,41.638648902],[-71.21591898,41.638654863],[-71.215840821,41.638660181],[-71.215758466,41.638663019],[-71.215672727,41.638665849],[-71.215581124,41.638671202],[-71.215491195,41.638677177],[-71.215398785,41.63868573],[-71.215300469,41.638692394],[-71.21520799,41.638695846],[-71.21511555,41.638697447],[-71.215020543,41.638700345],[-71.214926412,41.638705051],[-71.214845776,41.638712284],[-71.214758404,41.638718905],[-71.214663439,41.63872617],[-71.214569297,41.63873346],[-71.214481105,41.638739416],[-71.214391159,41.63874228],[-71.214295354,41.63874641],[-71.214207088,41.638748615],[-71.214112158,41.638761552],[-71.214030698,41.638775734],[-71.213999324,41.638777832],[-71.213982446,41.63882251],[-71.213961047,41.638882816],[-71.213962475,41.638933248],[-71.213973111,41.638940959],[-71.213978868,41.638955976],[-71.213984836,41.638971382],[-71.214001709,41.638982058],[-71.214077318,41.638974219],[-71.214152861,41.638953779],[-71.214224175,41.638931429],[-71.214310763,41.638929861],[-71.214403178,41.638920074],[-71.214481374,41.638920428],[-71.214562082,41.63891761],[-71.214634352,41.638913604],[-71.214709113,41.638904482],[-71.214798187,41.638899123],[-71.214877191,41.638895728],[-71.214969604,41.638886558],[-71.215053611,41.638875537],[-71.215125974,41.638884727],[-71.215209962,41.638871191],[-71.215290568,41.638857029],[-71.215380498,41.638851031],[-71.215456969,41.638848247],[-71.215542725,41.638848551],[-71.215618483,41.638862163],[-71.215708576,41.63888139],[-71.215800341,41.638901879],[-71.215867721,41.638921187],[-71.21593761,41.638938604],[-71.216005013,41.638959833],[-71.21607322,41.638985409],[-71.216159173,41.639017296],[-71.216241795,41.639051026],[-71.216306759,41.639086131],[-71.216373356,41.63911742],[-71.216444168,41.639146799],[-71.216509091,41.639177467],[-71.216569876,41.639213202],[-71.216628134,41.639255242],[-71.216678898,41.639303027],[-71.216717908,41.639354579],[-71.216760271,41.639406163],[-71.216800107,41.6394571],[-71.216834835,41.639504914],[-71.216871414,41.639568489],[-71.216882757,41.639637788],[-71.216872265,41.639701522],[-71.216872654,41.639765878],[-71.216888159,41.639824439],[-71.216923026,41.639882361],[-71.216937642,41.639935271],[-71.216955638,41.639988853],[-71.216979566,41.640052443],[-71.216992616,41.640121769],[-71.216999721,41.640184152],[-71.217002657,41.640244694],[-71.217003016,41.640302074],[-71.217003408,41.640365766],[-71.217003775,41.640421271],[-71.217004166,41.640484986],[-71.217006291,41.640549918],[-71.217026804,41.640606593],[-71.217061641,41.640664492],[-71.217095647,41.640724288],[-71.217114579,41.640794223],[-71.217117451,41.640848477],[-71.217138067,41.640916495],[-71.217175466,41.64098133],[-71.217208682,41.641047413],[-71.217239393,41.641114816],[-71.217263252,41.641166422],[-71.217293849,41.641218022],[-71.217324396,41.641267107],[-71.21735665,41.641316172],[-71.217389761,41.641364622],[-71.217436362,41.64142374],[-71.217480434,41.641475304],[-71.217522777,41.641524989],[-71.217548333,41.641579138],[-71.217525161,41.641635317],[-71.217480925,41.64168408],[-71.217444222,41.641732107],[-71.217415986,41.641789005],[-71.217405402,41.641838857],[-71.21739822,41.64190571],[-71.21741035,41.641962433],[-71.217410709,41.642019836],[-71.217411154,41.642085403],[-71.217434062,41.6421175],[-71.21751485,41.642132357],[-71.217600661,41.642142151],[-71.217693173,41.642146197],[-71.217768844,41.642145948],[-71.217854609,41.642145015],[-71.217942925,41.642153511],[-71.21801697,41.642162703],[-71.218095244,41.642173781],[-71.218097552,41.642539559],[-71.217400659,41.642554657],[-71.21739571,41.642703547],[-71.217230134,41.642709795],[-71.217229731,41.642781032],[-71.217406299,41.642777899],[-71.217435304,41.642845298],[-71.218163309,41.642827532],[-71.218187553,41.643203952],[-71.217452149,41.643246331],[-71.217386041,41.643297624],[-71.21737512,41.643298924],[-71.217300301,41.643299197],[-71.217227115,41.643295678],[-71.217149732,41.643289679],[-71.217072305,41.643279838],[-71.217000792,41.643269988],[-71.216917492,41.643257685],[-71.21684089,41.643240298],[-71.216760096,41.643226721],[-71.216771244,41.643263888],[-71.21682534,41.643310355],[-71.216896944,41.643334064],[-71.216979399,41.643344489],[-71.21706857,41.64335301],[-71.217152677,41.64335523],[-71.217234248,41.643358724],[-71.217308355,41.643374846],[-71.217384195,41.643406135],[-71.217448377,41.643446863],[-71.217479701,41.643478957],[-71.217550662,41.643803488],[-71.217624642,41.643800056],[-71.217661875,41.643840306],[-71.217708403,41.643881722],[-71.217760789,41.643921918],[-71.217804019,41.643978535],[-71.217841333,41.644028253],[-71.217882018,41.644081044],[-71.217919316,41.644127583],[-71.217968385,41.644173442],[-71.218016964,41.644254999],[-71.21809584,41.644387423],[-71.218146709,41.644454098],[-71.21817396,41.644504454],[-71.218213811,41.644559804],[-71.218246966,41.644612668],[-71.218280978,41.644671823],[-71.218303162,41.644723471],[-71.218333809,41.644785156],[-71.218351866,41.644846284],[-71.218353875,41.644903028],[-71.218350859,41.644958524],[-71.218315064,41.645014764],[-71.218266602,41.645060361],[-71.218118474,41.645301155],[-71.218107779,41.645334633],[-71.217884369,41.64537326],[-71.21749506,41.64550458],[-71.217461956,41.645586668],[-71.217772186,41.645851709],[-71.217987749,41.646032609],[-71.218077219,41.646085222],[-71.218144661,41.645980302],[-71.218192675,41.64599588],[-71.218143173,41.646139881],[-71.218353036,41.646222977],[-71.218660969,41.646253415],[-71.218715434,41.6455639],[-71.219193872,41.645570376],[-71.219234998,41.645030393],[-71.219901754,41.645031768],[-71.220014602,41.645057886],[-71.220011355,41.645075556],[-71.220009211,41.64513421],[-71.219996899,41.645189113],[-71.219983882,41.645252223],[-71.219975862,41.645315941],[-71.219964555,41.645385367],[-71.219953186,41.645447864],[-71.219946003,41.645508405],[-71.219943088,41.645575885],[-71.21994093,41.645637719],[-71.21996152,41.645698807],[-71.219996357,41.645757964],[-71.220019406,41.645814644],[-71.220028238,41.64588021],[-71.220021981,41.645952118],[-71.220015635,41.646009528],[-71.220007606,41.646068214],[-71.219997912,41.64613131],[-71.219986532,41.646196323],[-71.219980227,41.646258169],[-71.219975575,41.646318716],[-71.219968414,41.646381177],[-71.219961214,41.646445514],[-71.219958258,41.646508626],[-71.219953608,41.646568533],[-71.219950607,41.646627848],[-71.21995017,41.646686507],[-71.219942099,41.64674078],[-71.219932405,41.646803852],[-71.219925218,41.646865056],[-71.219919709,41.646919312],[-71.219906716,41.646990633],[-71.219890263,41.647051219],[-71.219846086,41.64710689],[-71.219773075,41.647132348],[-71.219694884,41.647135794],[-71.219606662,41.647146213],[-71.219533546,41.647146469],[-71.219453628,41.647140442],[-71.21936951,41.647132553],[-71.219285322,41.647119632],[-71.219199466,41.647104809],[-71.219107703,41.647088119],[-71.219037012,41.647077655],[-71.218951179,41.647064661],[-71.218866989,41.647052357],[-71.21878363,41.647031228],[-71.218711974,41.647004364],[-71.218656211,41.646961668],[-71.218627276,41.646905658],[-71.218602565,41.646852747],[-71.218584468,41.646786633],[-71.218563937,41.646726139],[-71.218535867,41.646674546],[-71.218486726,41.64661668],[-71.218423413,41.646578425],[-71.218335805,41.646552894],[-71.218253198,41.6465204],[-71.218177268,41.646480924],[-71.218114818,41.646447748],[-71.218041444,41.646409513],[-71.217971412,41.646373825],[-71.217910636,41.646334318],[-71.21785741,41.646297276],[-71.217803398,41.646258997],[-71.217748462,41.646215708],[-71.217695172,41.646165425],[-71.217641071,41.646119576],[-71.217576858,41.646071255],[-71.217502644,41.646036815],[-71.217436054,41.646009322],[-71.217374344,41.645960344],[-71.217326127,41.645914487],[-71.217268636,41.645862981],[-71.217190271,41.645836786],[-71.217134814,41.645843258],[-71.21715616,41.645891108],[-71.217195108,41.645937034],[-71.217218145,41.645988661],[-71.217244584,41.646050359],[-71.217276037,41.646101984],[-71.217314278,41.646163025],[-71.217346538,41.646211473],[-71.217377999,41.646268106],[-71.217432106,41.646312674],[-71.217492921,41.646357259],[-71.217539464,41.646409424],[-71.217588554,41.646457822],[-71.217631735,41.646504947],[-71.21767322,41.646549576],[-71.21770632,41.646601182],[-71.217731101,41.646658485],[-71.217744924,41.646718985],[-71.217757928,41.646778226],[-71.217760793,41.646834354],[-71.217761172,41.646894227],[-71.217761504,41.64695099],[-71.217756062,41.647017252],[-71.217786717,41.647077039],[-71.21785591,41.647116521],[-71.217935867,41.64712758],[-71.218016591,41.647130454],[-71.218091457,41.647134594],[-71.218173038,41.647136853],[-71.218245408,41.647146704],[-71.218319456,41.64715649],[-71.218406129,41.647165645],[-71.218498679,41.647176688],[-71.218584502,41.6471852],[-71.218675358,41.647193084],[-71.218768759,41.647204701],[-71.218847865,41.64721514],[-71.218926109,41.647220546],[-71.219012727,41.647221512],[-71.219101957,41.647238837],[-71.21918619,41.647269436],[-71.219259573,41.647298842],[-71.219337927,41.647328169],[-71.219399481,41.647357592],[-71.219479631,41.647394539],[-71.219549581,41.647421398],[-71.219631299,41.647448217],[-71.219692881,41.647478281],[-71.219751134,41.647516523],[-71.21981951,41.647554767],[-71.219883676,41.647600548],[-71.219923539,41.647653999],[-71.219940754,41.64771325],[-71.219957946,41.647777486],[-71.219979346,41.647834803],[-71.220024229,41.64788383],[-71.220038952,41.647891733],[-71.220100156,41.647924585],[-71.220170994,41.647957735],[-71.220235152,41.647998507],[-71.220297678,41.648043049],[-71.220324902,41.648093405],[-71.220358088,41.648153838],[-71.220423139,41.648199643],[-71.220472183,41.648245501],[-71.220506149,41.64830214],[-71.220539263,41.648351206],[-71.220605118,41.648394521],[-71.220669249,41.648427677],[-71.220738393,41.648457735],[-71.220797485,41.648492823],[-71.220849046,41.648534868],[-71.220905682,41.648580721],[-71.220954766,41.648631611],[-71.221003818,41.648675593],[-71.221067185,41.648723315],[-71.221116235,41.648767892],[-71.221156901,41.648812517],[-71.221196749,41.648869765],[-71.221208911,41.648927105],[-71.221208437,41.648987662],[-71.221197035,41.649043824],[-71.221186484,41.649100629],[-71.221206684,41.649153826],[-71.221251096,41.649199169],[-71.221298187,41.649245845],[-71.221339959,41.649302525],[-71.221376385,41.649354527],[-71.22138969,41.649408554],[-71.221402984,41.649465211],[-71.221403826,41.649524536],[-71.221389595,41.649579182],[-71.221358475,41.649633192],[-71.221328221,41.649698503],[-71.221304208,41.649751844],[-71.221273075,41.649815849],[-71.221248152,41.649875157],[-71.22122768,41.649934499],[-71.221206331,41.64999249],[-71.221181436,41.650045166],[-71.221144982,41.650098478],[-71.221099603,41.650157096],[-71.221064026,41.6502191],[-71.22103731,41.650277077],[-71.221008871,41.650338413],[-71.2209813,41.650396411],[-71.220955474,41.650453064],[-71.220938566,41.650513078],[-71.220938567,41.650576426]]]]}}"}, +{"type": "precinct", "typeId": 2704, "areaId": 25876, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":215,\"NAME\":\"2704\",\"SHAPE_Length\":0.15096753654259,\"SHAPE_Area\":-0.00054628677707708},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.243199654,41.58796475],[-71.243249554,41.588017804],[-71.243251732,41.588022606],[-71.243249454,41.588017499],[-71.243199453,41.587964499],[-71.243184468,41.587950928],[-71.243199654,41.58796475]]],[[[-71.243045956,41.58915223],[-71.2431147,41.589170199],[-71.243165497,41.589219592],[-71.243165453,41.589219499],[-71.243114454,41.589169499],[-71.243045453,41.589151499],[-71.243023698,41.58913278],[-71.243045956,41.58915223]]],[[[-71.243200722,41.58929423],[-71.243203729,41.589301319],[-71.243200453,41.589293499],[-71.243181846,41.589254159],[-71.243200722,41.58929423]]],[[[-71.243244463,41.589422108],[-71.243244453,41.589421499],[-71.243241528,41.589409346],[-71.243244463,41.589422108]]],[[[-71.242923759,41.590829076],[-71.24296611,41.590873446],[-71.24300555,41.590922109],[-71.243016395,41.590940399],[-71.243005453,41.590921499],[-71.242965453,41.5908725],[-71.242923453,41.590828499],[-71.242889518,41.59079629],[-71.242923759,41.590829076]]],[[[-71.243390639,41.592178242],[-71.243390453,41.5921775],[-71.243389883,41.592175611],[-71.243390639,41.592178242]]],[[[-71.24346753,41.592588428],[-71.243467453,41.5925875],[-71.243466912,41.592584371],[-71.24346753,41.592588428]]],[[[-71.243484454,41.592779289],[-71.243484454,41.5927785],[-71.243483688,41.592770732],[-71.243484454,41.592779289]]],[[[-71.242467431,41.59561596],[-71.242506839,41.595627927],[-71.242467499,41.595615822],[-71.242467431,41.59561596]]],[[[-71.242518948,41.595631604],[-71.242601297,41.595638946],[-71.242674067,41.595649744],[-71.242768685,41.595667268],[-71.242852082,41.595671731],[-71.242900609,41.595682736],[-71.242851453,41.595671501],[-71.242768453,41.5956665],[-71.242673453,41.5956495],[-71.242600454,41.5956385],[-71.242518667,41.595631519],[-71.242518948,41.595631604]]],[[[-71.242972583,41.595742723],[-71.242972454,41.5957425],[-71.242963271,41.595732597],[-71.242972583,41.595742723]]],[[[-71.24266664,41.597396916],[-71.242665878,41.597405519],[-71.242666883,41.5973953],[-71.24266664,41.597396916]]],[[[-71.242654547,41.597910288],[-71.242689598,41.597978003],[-71.242689453,41.5979775],[-71.242654453,41.597909501],[-71.242647548,41.597892571],[-71.242654547,41.597910288]]],[[[-71.219104725,41.616014542],[-71.219170119,41.616044066],[-71.21924375,41.616043514],[-71.219326384,41.616025786],[-71.219412297,41.6160179],[-71.219485112,41.61600877],[-71.219568539,41.616011924],[-71.219657707,41.616012598],[-71.219737887,41.61601268],[-71.219823783,41.616001706],[-71.21989663,41.615991935],[-71.21997355,41.615977898],[-71.220045553,41.615958931],[-71.220133125,41.615933851],[-71.220196169,41.615886642],[-71.220257627,41.615832705],[-71.220306786,41.615775651],[-71.220357571,41.615730241],[-71.220425539,41.615692855],[-71.220416618,41.615634562],[-71.220451098,41.615575048],[-71.220494511,41.615529048],[-71.220545279,41.615487321],[-71.220564219,41.615420428],[-71.220576541,41.615375633],[-71.220651015,41.615356055],[-71.220689531,41.61530762],[-71.220696211,41.615242549],[-71.220694659,41.615185441],[-71.220672651,41.615130157],[-71.220636769,41.615076761],[-71.220583661,41.615039241],[-71.220539563,41.614990078],[-71.220560895,41.614933643],[-71.22056346,41.614875926],[-71.22048988,41.614843936],[-71.220408904,41.614845111],[-71.220329572,41.614825365],[-71.220283874,41.614779881],[-71.220244709,41.614724624],[-71.220190785,41.614678525],[-71.220119646,41.614645923],[-71.220037083,41.614619468],[-71.219963447,41.614614509],[-71.219882477,41.614614403],[-71.219808036,41.614612506],[-71.219713178,41.614603219],[-71.219633831,41.614587177],[-71.219559435,41.614560718],[-71.219512079,41.614518317],[-71.219473688,41.614467316],[-71.21943619,41.61441451],[-71.219367567,41.614364099],[-71.219302164,41.614337022],[-71.219239199,41.614309973],[-71.219182014,41.614257142],[-71.21910685,41.614218378],[-71.219016054,41.614207247],[-71.218957114,41.614236033],[-71.218931657,41.614301698],[-71.218911922,41.614361842],[-71.21890693,41.614423829],[-71.21891089,41.614494414],[-71.218915714,41.614548443],[-71.218927836,41.614620283],[-71.218926905,41.614687197],[-71.218912883,41.614758401],[-71.218925883,41.614831455],[-71.218942131,41.614893494],[-71.218948563,41.614956104],[-71.218948462,41.615028531],[-71.218947529,41.615096062],[-71.218944179,41.615158694],[-71.21893993,41.615224959],[-71.218930839,41.615297364],[-71.218919283,41.615361851],[-71.218908541,41.615421354],[-71.218889611,41.615485823],[-71.218862546,41.615549608],[-71.218837899,41.615604229],[-71.218817345,41.615670523],[-71.218818057,41.615738058],[-71.218834313,41.615798222],[-71.218866939,41.615850444],[-71.218928238,41.615882405],[-71.218992803,41.615927273],[-71.219047533,41.615970287],[-71.219104725,41.616014542]]],[[[-71.233432283,41.621913852],[-71.233399773,41.621916641],[-71.233504274,41.621908213],[-71.233432283,41.621913852]]],[[[-71.228495953,41.622413181],[-71.228438356,41.622420195],[-71.228522671,41.622410192],[-71.228495953,41.622413181]]],[[[-71.226107535,41.622648719],[-71.22607217,41.622652414],[-71.226145262,41.622645354],[-71.226107535,41.622648719]]],[[[-71.219741138,41.624082018],[-71.219809802,41.624118319],[-71.219875612,41.624147659],[-71.219875447,41.624147507],[-71.219809448,41.624117506],[-71.219741176,41.624081887],[-71.219741138,41.624082018]]],[[[-71.219930568,41.624198666],[-71.219930447,41.624198507],[-71.219920145,41.624188954],[-71.219930568,41.624198666]]],[[[-71.219971551,41.624252888],[-71.219980792,41.624266004],[-71.219971447,41.624252506],[-71.219938999,41.624209769],[-71.219971551,41.624252888]]],[[[-71.2183813,41.62563384],[-71.218370662,41.625633836],[-71.218248082,41.625641575],[-71.2183833,41.625633744],[-71.2183813,41.62563384]]],[[[-71.245969154,41.638781777],[-71.246035006,41.63882],[-71.246125949,41.638842338],[-71.246196654,41.638855941],[-71.246275801,41.638870135],[-71.246349826,41.638884363],[-71.246451696,41.638903524],[-71.246557771,41.638923288],[-71.246630116,41.638930583],[-71.2467243,41.638935273],[-71.246810097,41.638940607],[-71.246906888,41.638956669],[-71.247002,41.638973344],[-71.247092075,41.638991884],[-71.247181373,41.639014264],[-71.247275716,41.639040405],[-71.247353229,41.639067218],[-71.247418961,41.639089637],[-71.247495527,41.639101355],[-71.247568001,41.639122508],[-71.247642177,41.639153133],[-71.247707927,41.639178731],[-71.247777859,41.639203034],[-71.2478537,41.639228609],[-71.247939609,41.639252238],[-71.247956359,41.639256872],[-71.248025519,41.639275891],[-71.248105572,41.639300193],[-71.248185591,41.639325731],[-71.248269852,41.639349997],[-71.248353194,41.639367354],[-71.248429791,41.639379048],[-71.248503858,41.639390713],[-71.248584579,41.639392308],[-71.248664429,41.639390721],[-71.248741649,41.639375316],[-71.248817995,41.639349778],[-71.248885152,41.639327192],[-71.248975271,41.639295441],[-71.24904383,41.63926506],[-71.249120477,41.639240231],[-71.249187912,41.639216662],[-71.249260659,41.639199326],[-71.249340404,41.639193074],[-71.249420992,41.63918959],[-71.249505277,41.639184148],[-71.249583301,41.639173775],[-71.249667655,41.639166252],[-71.249751091,41.639159367],[-71.249832142,41.639138755],[-71.249905238,41.639109779],[-71.24997242,41.639064918],[-71.250020259,41.639023857],[-71.250068134,41.638981424],[-71.250110628,41.638934817],[-71.2501668,41.638891144],[-71.250235466,41.638856578],[-71.250295019,41.638821214],[-71.25035816,41.638788648],[-71.250424853,41.638759542],[-71.25049978,41.638729929],[-71.250572977,41.638698208],[-71.250640059,41.638655428],[-71.250700524,41.638620729],[-71.250778194,41.638591121],[-71.250851358,41.638560086],[-71.250919318,41.63851868],[-71.250971623,41.638481104],[-71.251035008,41.638440328],[-71.251089988,41.638404885],[-71.251158896,41.638362772],[-71.251225026,41.638321316],[-71.251280918,41.638286606],[-71.251335934,41.638249791],[-71.251394674,41.638211635],[-71.25144983,41.638169995],[-71.251508818,41.638122943],[-71.251553069,41.638079083],[-71.251611172,41.638032029],[-71.251658166,41.637988222],[-71.251699844,41.637939486],[-71.251744163,41.637893568],[-71.251777978,41.63786016],[-71.251843143,41.63782387],[-71.25194775,41.637749427],[-71.252006247,41.63771884],[-71.252021511,41.637697147],[-71.252036718,41.63765885],[-71.252066323,41.637634101],[-71.252143427,41.637624388],[-71.252226479,41.63762985],[-71.252302179,41.637636599],[-71.252389872,41.637640081],[-71.252468456,41.63764208],[-71.252555201,41.637646246],[-71.252637405,41.637650311],[-71.252723244,41.637652416],[-71.252806398,41.63765518],[-71.252892124,41.637662796],[-71.252967998,41.637664011],[-71.253040249,41.637663824],[-71.253114326,41.637664372],[-71.253177295,41.637668143],[-71.253255999,41.637822429],[-71.253332089,41.637910799],[-71.253378485,41.637887526],[-71.253852727,41.637492674],[-71.253696277,41.637308286],[-71.253556573,41.637393769],[-71.253526568,41.637387805],[-71.253462409,41.637424487],[-71.253348468,41.637413013],[-71.253291237,41.637399718],[-71.253203749,41.637358502],[-71.253134696,41.63731138],[-71.253074646,41.637269926],[-71.253051497,41.637216728],[-71.253015648,41.637160575],[-71.252984195,41.637110653],[-71.25294916,41.637056583],[-71.252938002,41.637000826],[-71.252937928,41.636940473],[-71.252936484,41.636927389],[-71.252985208,41.63681349],[-71.253015062,41.636763104],[-71.253042221,41.636707864],[-71.253071188,41.636650524],[-71.25309649,41.636594594],[-71.253113506,41.636537228],[-71.253157262,41.636478594],[-71.253200017,41.636426886],[-71.253258423,41.636387631],[-71.253330608,41.636348473],[-71.253401963,41.636303093],[-71.253469601,41.636256996],[-71.25353445,41.636215056],[-71.253602121,41.636168227],[-71.253671557,41.636130481],[-71.253739079,41.636098883],[-71.253806677,41.636063192],[-71.253876105,41.636027481],[-71.2539418,41.635995216],[-71.254004703,41.63596777],[-71.254088807,41.635944577],[-71.254163663,41.635924109],[-71.254236668,41.635901579],[-71.254309665,41.635881061],[-71.254395577,41.635863406],[-71.254466677,41.635852604],[-71.254545093,41.635850141],[-71.254618994,41.635832438],[-71.254700318,41.635810634],[-71.254765999,41.635781821],[-71.254849196,41.635756545],[-71.254944225,41.635754164],[-71.255023545,41.635754447],[-71.255114847,41.635754138],[-71.255196941,41.635754451],[-71.255280987,41.635738141],[-71.255347645,41.635701028],[-71.255353729,41.635695085],[-71.25535346,41.635694507],[-71.25525946,41.635474508],[-71.25503046,41.634935507],[-71.25498946,41.634974507],[-71.254882459,41.635061508],[-71.254669459,41.635246507],[-71.25463246,41.635275508],[-71.25450146,41.635380508],[-71.25432546,41.635509508],[-71.254158459,41.635629508],[-71.253982459,41.635754507],[-71.253646459,41.635968507],[-71.253479459,41.636062508],[-71.253051459,41.636309508],[-71.252784459,41.636449508],[-71.252510459,41.636585508],[-71.252323458,41.636668508],[-71.252304458,41.636575508],[-71.252281458,41.636436508],[-71.252266459,41.636361508],[-71.252258459,41.636320508],[-71.252258459,41.636252508],[-71.252265458,41.636144508],[-71.252311459,41.635972508],[-71.252426459,41.635668508],[-71.252590459,41.635179508],[-71.252646459,41.635015507],[-71.252784459,41.634607507],[-71.252975459,41.634063507],[-71.253028459,41.633927507],[-71.253066459,41.633818508],[-71.253265459,41.633265507],[-71.253318459,41.633147507],[-71.253486459,41.632738507],[-71.253527459,41.632631507],[-71.253585459,41.632479507],[-71.253631459,41.632366507],[-71.253746459,41.632057507],[-71.253784459,41.631971507],[-71.253890459,41.631681507],[-71.253936459,41.631545507],[-71.254195459,41.630797507],[-71.254234459,41.630674507],[-71.254280459,41.630543507],[-71.254652459,41.629444507],[-71.254745459,41.629183506],[-71.255020459,41.628326506],[-71.255081459,41.628140506],[-71.255249459,41.627565506],[-71.25543946,41.626936506],[-71.255493459,41.626732506],[-71.255531459,41.626601506],[-71.255813459,41.625555505],[-71.255973459,41.624926506],[-71.255989459,41.624862506],[-71.25611846,41.624346505],[-71.25615646,41.624206506],[-71.256363459,41.623396505],[-71.25658446,41.622473505],[-71.256690459,41.622034505],[-71.25672146,41.621862505],[-71.256752459,41.621722505],[-71.256790459,41.621465505],[-71.256813459,41.621235505],[-71.256815459,41.621093505],[-71.25682046,41.620852504],[-71.256835459,41.620392505],[-71.25685946,41.619797505],[-71.256866459,41.619653505],[-71.25688146,41.619328505],[-71.256896459,41.618864504],[-71.256904459,41.618589505],[-71.256904459,41.618315505],[-71.256904459,41.617774504],[-71.256889459,41.617644504],[-71.256866459,41.617541504],[-71.256851459,41.617460504],[-71.256820459,41.617330504],[-71.256637459,41.616649504],[-71.256607459,41.616524504],[-71.256401459,41.615690504],[-71.256256459,41.615162503],[-71.256164459,41.614794503],[-71.256485459,41.614603504],[-71.256835459,41.614403503],[-71.257308459,41.614137504],[-71.257598459,41.613964504],[-71.257881459,41.613770504],[-71.25826246,41.613479504],[-71.258346459,41.613405503],[-71.25846046,41.613304504],[-71.25874346,41.613028503],[-71.25898746,41.612762503],[-71.25936846,41.612358503],[-71.25962846,41.612033503],[-71.25967446,41.611969503],[-71.25983446,41.611700503],[-71.25997146,41.611364503],[-71.26006246,41.611025502],[-71.26007046,41.610998503],[-71.260101459,41.610677502],[-71.260101459,41.610502502],[-71.260101459,41.610340503],[-71.26002546,41.609949503],[-71.25991046,41.609488502],[-71.25980346,41.609049503],[-71.25950646,41.607848502],[-71.25931546,41.607050502],[-71.25920046,41.606615502],[-71.259137459,41.606357502],[-71.259078459,41.606118502],[-71.25888846,41.605379502],[-71.258834459,41.605163502],[-71.258727459,41.604742502],[-71.258712459,41.604540502],[-71.258697459,41.604405502],[-71.258758459,41.604030501],[-71.259275459,41.602768501],[-71.25978346,41.601529501],[-71.260091459,41.600925501],[-71.260398459,41.600440501],[-71.260764459,41.599848501],[-71.26114646,41.5992145],[-71.26119946,41.5991335],[-71.26163446,41.5984485],[-71.26198546,41.5978875],[-71.26218446,41.5975685],[-71.26249646,41.5970535],[-71.26190946,41.5977945],[-71.26176646,41.5979735],[-71.261314459,41.5985355],[-71.26109346,41.5988235],[-71.26087146,41.5990945],[-71.260589459,41.599374501],[-71.260360459,41.5995765],[-71.259995459,41.599824501],[-71.25992546,41.5998735],[-71.259521459,41.600120501],[-71.259403459,41.6001825],[-71.258468459,41.600672501],[-71.257553458,41.601163501],[-71.257377458,41.601288501],[-71.257232459,41.601408501],[-71.257102458,41.601518501],[-71.256988458,41.601651501],[-71.256965458,41.601679501],[-71.256912458,41.601747501],[-71.256820459,41.601889501],[-71.256744459,41.602021501],[-71.256668459,41.602211501],[-71.256530459,41.602601501],[-71.249999456,41.600613501],[-71.250190456,41.600087501],[-71.250450456,41.599429501],[-71.250732456,41.598865501],[-71.249740456,41.598745501],[-71.248481455,41.598612501],[-71.248397456,41.598627501],[-71.248352456,41.5987005],[-71.248336456,41.5988585],[-71.248283455,41.598949501],[-71.248199456,41.5990135],[-71.248115455,41.599060501],[-71.248085456,41.599074501],[-71.247970456,41.5990905],[-71.247039455,41.599131501],[-71.246421455,41.599152501],[-71.245865454,41.599217501],[-71.245536454,41.599250501],[-71.245422454,41.599252501],[-71.245315455,41.599259501],[-71.244522454,41.599247501],[-71.243888454,41.599242501],[-71.243453454,41.599232501],[-71.242675555,41.599202544],[-71.24267543,41.599203264],[-71.242661755,41.599270836],[-71.24264812,41.599336236],[-71.242630376,41.599415988],[-71.242606916,41.5994928],[-71.242587684,41.599548078],[-71.242570372,41.599603384],[-71.242552787,41.59967376],[-71.242543186,41.599728419],[-71.242545973,41.599786057],[-71.242533316,41.599850749],[-71.242509109,41.59991601],[-71.242488771,41.599981349],[-71.242467425,41.600047394],[-71.242441217,41.600117705],[-71.242416932,41.600187311],[-71.242399457,41.600252679],[-71.242398252,41.60031822],[-71.242390261,41.600389441],[-71.242374516,41.600464166],[-71.242353983,41.600540345],[-71.242326758,41.600613489],[-71.242310429,41.600666624],[-71.242294125,41.6007212],[-71.242276344,41.600802393],[-71.242270271,41.600873641],[-71.242249779,41.600946915],[-71.242224365,41.601024408],[-71.242216686,41.60107834],[-71.24220678,41.601148139],[-71.242200822,41.601213601],[-71.242178491,41.601281793],[-71.242151417,41.60134778],[-71.242134928,41.601410268],[-71.242131054,41.601464964],[-71.242149071,41.601531417],[-71.242184642,41.601581467],[-71.242217084,41.601644431],[-71.242239934,41.601705887],[-71.242241049,41.601716638],[-71.242246479,41.601768633],[-71.242245218,41.6018406],[-71.24223617,41.601916873],[-71.242226225,41.601988775],[-71.242223008,41.602062225],[-71.242219679,41.602140683],[-71.242214863,41.602194667],[-71.242204832,41.602273041],[-71.242195792,41.602347164],[-71.2421829,41.6024248],[-71.242170957,41.60250102],[-71.242156343,41.602567126],[-71.242156188,41.602629057],[-71.242151249,41.602690953],[-71.24212915,41.602746934],[-71.242097423,41.602802779],[-71.242078229,41.602855862],[-71.242086769,41.602914976],[-71.242096055,41.602985664],[-71.242097696,41.603055534],[-71.24210319,41.603121868],[-71.242107771,41.603188154],[-71.24209297,41.603262904],[-71.24207859,41.603316067],[-71.242057005,41.603395787],[-71.24203561,41.603466154],[-71.242011359,41.60353432],[-71.241980335,41.603604597],[-71.241949345,41.603674165],[-71.241909852,41.603736419],[-71.241860843,41.603793528],[-71.241809054,41.603844868],[-71.241801139,41.603911744],[-71.241795303,41.603969316],[-71.241780892,41.604022479],[-71.241775914,41.604086502],[-71.241773638,41.604160686],[-71.241769373,41.604236969],[-71.241756594,41.604308842],[-71.241738853,41.604387199],[-71.241720161,41.604466926],[-71.241708964,41.604501205],[-71.241698816,41.604532285],[-71.241667163,41.604584516],[-71.241633433,41.604645388],[-71.241619989,41.604700679],[-71.241655525,41.604752192],[-71.241670845,41.604807091],[-71.241670609,41.604874052],[-71.241668452,41.604941032],[-71.241662382,41.605011548],[-71.241638447,41.605168311],[-71.241630655,41.605227274],[-71.241624741,41.605289145],[-71.241616946,41.605348886],[-71.241599511,41.605411349],[-71.24158035,41.605463746],[-71.241562918,41.605525477],[-71.241535721,41.60559869],[-71.241500851,41.605670308],[-71.241460303,41.605736904],[-71.241423751,41.605794888],[-71.24138735,41.605845622],[-71.241356664,41.605853649],[-71.241286266,41.605894724],[-71.241242024,41.605940112],[-71.241198627,41.605995336],[-71.241153554,41.606050555],[-71.241106034,41.606100281],[-71.241054454,41.606144418],[-71.240998777,41.606184245],[-71.240947221,41.606222275],[-71.240893996,41.606273795],[-71.240842393,41.606323488],[-71.240790805,41.6063695],[-71.240741694,41.606390338],[-71.240657465,41.606384773],[-71.240618999,41.606403142],[-71.240637757,41.606451645],[-71.240708878,41.606473829],[-71.24077919,41.606492878],[-71.240851143,41.606527916],[-71.240894422,41.606586262],[-71.240907413,41.606644609],[-71.240913049,41.606713367],[-71.240928546,41.606769844],[-71.240948895,41.606824525],[-71.240970886,41.606887763],[-71.240983878,41.606953428],[-71.240987091,41.607011158],[-71.240988653,41.607070073],[-71.240985322,41.6071333],[-71.240980343,41.607189777],[-71.240971245,41.607262824],[-71.24096463,41.607316827],[-71.240955531,41.607389852],[-71.240950544,41.607463526],[-71.240952068,41.607539639],[-71.240948701,41.607612082],[-71.24094207,41.607685136],[-71.240931334,41.607741004],[-71.240923108,41.607801773],[-71.240916493,41.607855776],[-71.240905752,41.607935589],[-71.240895872,41.607990843],[-71.240890077,41.608045465],[-71.24088996,41.608120339],[-71.240886591,41.608200741],[-71.240878322,41.608264597],[-71.240865984,41.608324739],[-71.240852812,41.608379985],[-71.240839664,41.608437037],[-71.240828131,41.608501481],[-71.240817408,41.608561649],[-71.240801797,41.608640216],[-71.240791881,41.608696682],[-71.240781991,41.608761769],[-71.240772089,41.608822511],[-71.240763816,41.608879597],[-71.240757209,41.608939135],[-71.240751402,41.609004208],[-71.240745595,41.609061895],[-71.240730773,41.609141104],[-71.240720093,41.609198162],[-71.240711838,41.609258336],[-71.240714994,41.609337541],[-71.240714073,41.609415501],[-71.240711516,41.609475642],[-71.240709822,41.609533361],[-71.240709733,41.609608853],[-71.240709637,41.609686174],[-71.24070874,41.60974266],[-71.240699637,41.609816942],[-71.240686462,41.609888128],[-71.240677356,41.609970369],[-71.240677315,41.61002624],[-71.240677206,41.610099284],[-71.240679524,41.610174828],[-71.240681093,41.610247259],[-71.240684262,41.61030803],[-71.240690751,41.610369427],[-71.240701288,41.610439408],[-71.240717542,41.610512467],[-71.240737092,41.610584299],[-71.240756623,41.61066107],[-71.24076965,41.610718159],[-71.240794886,41.610793068],[-71.240815238,41.610862454],[-71.240819223,41.610940425],[-71.240819151,41.611011595],[-71.240805145,41.61107729],[-71.240796061,41.611146633],[-71.240799288,41.611200658],[-71.240808186,41.611276811],[-71.240808112,41.611348643],[-71.240807971,41.611429647],[-71.240812808,41.611484888],[-71.240820078,41.611556737],[-71.240824887,41.611626706],[-71.240834633,41.611681363],[-71.240846024,41.611736024],[-71.240860678,41.611805374],[-71.240874477,41.611875363],[-71.240883017,41.611926885],[-71.240883403,41.611929401],[-71.240893149,41.612006745],[-71.240897976,41.612072437],[-71.240901108,41.612142448],[-71.240901838,41.612219154],[-71.240896856,41.612283634],[-71.240882044,41.612345006],[-71.24086561,41.612408203],[-71.24085164,41.612464659],[-71.240858089,41.612528525],[-71.240871913,41.612599749],[-71.240880022,41.612659891],[-71.24088728,41.61271946],[-71.240883926,41.612773447],[-71.240878971,41.612831158],[-71.240867421,41.612899924],[-71.240846075,41.612964368],[-71.240814933,41.613017149],[-71.240782952,41.613066201],[-71.240747731,41.61311776],[-71.24070266,41.613171128],[-71.240648621,41.613218963],[-71.240597832,41.613261912],[-71.240540522,41.613312187],[-71.240483193,41.613367379],[-71.240429143,41.61341032],[-71.240375107,41.613449579],[-71.240379192,41.613464339],[-71.240456858,41.613482787],[-71.240524734,41.613510453],[-71.240595009,41.613540593],[-71.240653047,41.613582369],[-71.240700409,41.61364196],[-71.240730594,41.613706451],[-71.240742804,41.613762303],[-71.240743532,41.613831668],[-71.240743421,41.613912694],[-71.240733517,41.613988805],[-71.24071869,41.614061245],[-71.240721851,41.61413185],[-71.240744657,41.614197537],[-71.240767483,41.614258329],[-71.240771524,41.61432219],[-71.240758338,41.614395846],[-71.240754162,41.614464582],[-71.240760619,41.614526596],[-71.240762155,41.614599645],[-71.24075881,41.614658595],[-71.240743184,41.614732839],[-71.240725064,41.614805867],[-71.240712727,41.614865391],[-71.240699557,41.614927406],[-71.240683956,41.614980177],[-71.240674847,41.615055671],[-71.240679661,41.615124428],[-71.240662423,41.615190116],[-71.240638629,41.615241678],[-71.240609931,41.61529259],[-71.240588588,41.615348458],[-71.240558263,41.61540243],[-71.240520565,41.6154632],[-71.240509003,41.615527049],[-71.240530987,41.615592734],[-71.24053666,41.615652299],[-71.24052348,41.615709351],[-71.24050214,41.615771943],[-71.240492251,41.615836412],[-71.240496252,41.615902697],[-71.240480619,41.615963449],[-71.240474821,41.616026075],[-71.240479653,41.616097873],[-71.24047953,41.616166665],[-71.240472094,41.616227412],[-71.240458929,41.616288192],[-71.240444943,41.61634833],[-71.24042279,41.616401109],[-71.24039244,41.616453251],[-71.240371164,41.61647717],[-71.240277009,41.616549545],[-71.240236004,41.616606627],[-71.240236784,41.616647748],[-71.240293168,41.616707359],[-71.240375589,41.616847963],[-71.240430232,41.616969546],[-71.240476716,41.617081346],[-71.240540416,41.617178959],[-71.240545186,41.617288881],[-71.240545169,41.617293158],[-71.24054021,41.617336713],[-71.240515578,41.617399319],[-71.240510632,41.61744722],[-71.240514591,41.617501224],[-71.240522718,41.617564453],[-71.240525846,41.617673731],[-71.240530625,41.617766409],[-71.240537046,41.617867712],[-71.240544252,41.617993556],[-71.240556383,41.61810713],[-71.240568473,41.618215833],[-71.240570823,41.61831404],[-71.240564964,41.618414698],[-71.240553385,41.618528265],[-71.240547426,41.618699521],[-71.240533419,41.618772557],[-71.24053327,41.618878145],[-71.240524955,41.618975734],[-71.240524054,41.619056163],[-71.240505162,41.619108332],[-71.240483812,41.61917337],[-71.240455095,41.619235991],[-71.240414943,41.619300392],[-71.240375619,41.61934826],[-71.240327257,41.619407772],[-71.240288753,41.61945626],[-71.240252708,41.619507177],[-71.240214171,41.619556236],[-71.240165001,41.619612064],[-71.240106032,41.619656824],[-71.240055303,41.61969856],[-71.240008587,41.619742707],[-71.239951256,41.619789322],[-71.239903749,41.619848218],[-71.239860327,41.619891778],[-71.239797278,41.619935338],[-71.239738309,41.619987462],[-71.23958847,41.620089212],[-71.239391981,41.62019591],[-71.23885005,41.620464357],[-71.238437496,41.620663595],[-71.238350742,41.62068254],[-71.238264823,41.620705808],[-71.238191979,41.620729084],[-71.23812402,41.620757859],[-71.238047931,41.620784831],[-71.23799304,41.620830194],[-71.237992977,41.62083021],[-71.238021454,41.620868506],[-71.238125453,41.620927506],[-71.238289453,41.620849506],[-71.238792453,41.620601505],[-71.239234454,41.620372505],[-71.239463454,41.620273505],[-71.239700454,41.620191505],[-71.239967454,41.620119505],[-71.240173454,41.620088505],[-71.240371454,41.620048505],[-71.240638455,41.620020505],[-71.240753454,41.620022505],[-71.240928454,41.620023505],[-71.241272454,41.620048505],[-71.241348454,41.620056505],[-71.241523454,41.620070505],[-71.241782455,41.620092505],[-71.242233455,41.620142505],[-71.242446455,41.620166505],[-71.242736455,41.620200505],[-71.243057454,41.620234505],[-71.243903455,41.620330505],[-71.244117455,41.620366505],[-71.244277455,41.620390505],[-71.244400456,41.620379505],[-71.244522455,41.620372505],[-71.244689456,41.620342505],[-71.244880455,41.620302505],[-71.244903456,41.620365505],[-71.244926456,41.620441505],[-71.244926456,41.620481505],[-71.245178456,41.620503505],[-71.245147455,41.620576505],[-71.245071455,41.620726505],[-71.244827456,41.621244505],[-71.244796455,41.621294505],[-71.244110455,41.622695506],[-71.243759455,41.623391505],[-71.243662455,41.623590506],[-71.243652455,41.623613506],[-71.243095456,41.624732506],[-71.242843455,41.625246506],[-71.242630455,41.625799506],[-71.242530455,41.626098506],[-71.242469455,41.626392506],[-71.242935455,41.626973507],[-71.243095456,41.627177506],[-71.243431455,41.627589506],[-71.243697456,41.627909507],[-71.243888456,41.628152506],[-71.243995455,41.628294507],[-71.244049456,41.628361506],[-71.244079456,41.628405506],[-71.244125456,41.628468507],[-71.244163456,41.628512507],[-71.244209455,41.628574507],[-71.244323456,41.628716506],[-71.244644456,41.629124506],[-71.244949456,41.629447507],[-71.245193456,41.629667506],[-71.245322456,41.629762507],[-71.245445456,41.629851507],[-71.245735456,41.630048507],[-71.245935456,41.630180507],[-71.245959457,41.630220507],[-71.245872456,41.630316507],[-71.245819456,41.630366507],[-71.245682456,41.630512507],[-71.245620456,41.630577507],[-71.245368456,41.630830507],[-71.245256456,41.630916507],[-71.245251456,41.630986507],[-71.245249456,41.631045507],[-71.245243456,41.631214507],[-71.245192456,41.631746507],[-71.244578456,41.633696508],[-71.244300456,41.634277508],[-71.244134456,41.634732508],[-71.243981456,41.635137508],[-71.243782456,41.635618508],[-71.243616456,41.636073508],[-71.243538456,41.636453509],[-71.243635456,41.636732508],[-71.243794456,41.637061508],[-71.243996456,41.637389509],[-71.244359456,41.637868508],[-71.245092296,41.63900126],[-71.24514446,41.63903403],[-71.24522703,41.639061451],[-71.245312957,41.639088238],[-71.245404754,41.639110602],[-71.245478822,41.639121675],[-71.245560394,41.639123868],[-71.245643622,41.639123572],[-71.245723446,41.63912073],[-71.245799903,41.639113489],[-71.245877145,41.639100578],[-71.245950184,41.639086446],[-71.246018152,41.639067272],[-71.246069168,41.639048357],[-71.245991957,41.639045923],[-71.245895232,41.639036195],[-71.245814308,41.639008756],[-71.245766109,41.63896227],[-71.245765658,41.638898578],[-71.245768615,41.638836746],[-71.245811981,41.638786186],[-71.245884012,41.63874932],[-71.245969154,41.638781777]]]]}}"}, +{"type": "precinct", "typeId": 2705, "areaId": 25877, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":216,\"NAME\":\"2705\",\"SHAPE_Length\":0.20506518380388,\"SHAPE_Area\":-0.00084004395374342},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.258346459,41.613405503],[-71.258758459,41.613509503],[-71.25910146,41.613602503],[-71.25965146,41.613744503],[-71.26005546,41.613822503],[-71.26011646,41.613834503],[-71.26042146,41.613904504],[-71.26079546,41.613996503],[-71.26113846,41.614084504],[-71.26147446,41.614172503],[-71.261833461,41.614282503],[-71.262542461,41.614489504],[-71.263488461,41.614772503],[-71.264465462,41.615063503],[-71.265266462,41.615304503],[-71.265617462,41.615396503],[-71.265800462,41.615465504],[-71.266113462,41.615576503],[-71.266372462,41.615661504],[-71.266571463,41.615733503],[-71.266745463,41.615801504],[-71.266891462,41.615857504],[-71.266976463,41.615889504],[-71.267105462,41.615937504],[-71.267387463,41.616041503],[-71.267753463,41.616183504],[-71.267791463,41.616200503],[-71.268417463,41.616435504],[-71.268684463,41.616543503],[-71.269042463,41.616680503],[-71.269111463,41.616701503],[-71.269386463,41.616808504],[-71.270052463,41.617060504],[-71.271080464,41.617479503],[-71.271247464,41.617548504],[-71.272022464,41.617800504],[-71.273277465,41.617945504],[-71.274033465,41.617890503],[-71.274215465,41.617876504],[-71.274216073,41.617876478],[-71.274217404,41.617851454],[-71.274226846,41.617818289],[-71.274220106,41.617723482],[-71.27420472,41.617678422],[-71.274166188,41.617646466],[-71.274165353,41.617632605],[-71.274110268,41.617601966],[-71.274060699,41.617562373],[-71.274045201,41.617540823],[-71.274011638,41.6174563],[-71.273998235,41.617393268],[-71.273996764,41.617334468],[-71.273997219,41.617265265],[-71.274003183,41.617198155],[-71.274019233,41.617140098],[-71.274040817,41.617085505],[-71.274066968,41.617032362],[-71.274100532,41.616977107],[-71.274136814,41.616928787],[-71.274169431,41.616874238],[-71.274215915,41.616819077],[-71.274265064,41.616777757],[-71.274315097,41.616736415],[-71.274373302,41.616720041],[-71.274413887,41.616722247],[-71.274495902,41.616729475],[-71.274570559,41.61673184],[-71.27464434,41.616732099],[-71.274687754,41.616718416],[-71.2747137,41.61669777],[-71.274643825,41.616669847],[-71.274566483,41.616650851],[-71.274491093,41.616622894],[-71.274421242,41.616588041],[-71.274358777,41.616550458],[-71.274289772,41.616526675],[-71.274212475,41.61650354],[-71.274139797,41.616475611],[-71.274074525,41.616447696],[-71.273994572,41.616408615],[-71.273937618,41.616372415],[-71.273883479,41.61633279],[-71.273833041,41.616289696],[-71.273774415,41.616234831],[-71.273731392,41.616189008],[-71.273685605,41.616140388],[-71.273633326,41.616100767],[-71.273569249,41.616053598],[-71.273515905,41.616004827],[-71.273464664,41.615947209],[-71.273430971,41.615882719],[-71.273410095,41.615830764],[-71.27337369,41.615757305],[-71.27333631,41.615692807],[-71.273299824,41.615633824],[-71.273266109,41.615575577],[-71.273236951,41.615521502],[-71.273196824,41.615458394],[-71.273130677,41.615419409],[-71.273054376,41.615382438],[-71.272985484,41.615344133],[-71.272923979,41.615328803],[-71.272849765,41.615313426],[-71.272744512,41.615259337],[-71.272667857,41.615201532],[-71.272627511,41.615165958],[-71.272568303,41.615130142],[-71.272517004,41.615080848],[-71.272482281,41.615032273],[-71.27240915,41.61493443],[-71.272353769,41.614806914],[-71.272328304,41.614751497],[-71.272301878,41.614700857],[-71.272280141,41.61464268],[-71.272257518,41.614585164],[-71.272233979,41.614519299],[-71.27222241,41.61445563],[-71.272214463,41.61440162],[-71.272208402,41.61434002],[-71.272208782,41.614283945],[-71.272216609,41.614216175],[-71.27222718,41.614147725],[-71.272228512,41.614089616],[-71.27223716,41.614030836],[-71.272260678,41.613963829],[-71.272273027,41.613909859],[-71.272301054,41.613851848],[-71.272285666,41.613808206],[-71.272253802,41.61375273],[-71.272252386,41.613687686],[-71.272265713,41.613624067],[-71.272278991,41.613565982],[-71.272295879,41.613521077],[-71.272337475,41.61340887],[-71.272355952,41.613353859],[-71.27237264,41.613296764],[-71.272391108,41.613244498],[-71.272410532,41.613188804],[-71.272429,41.613136561],[-71.272455834,41.61307123],[-71.272474314,41.613015511],[-71.272493727,41.612963224],[-71.272518646,41.612904773],[-71.272549064,41.612851158],[-71.27257946,41.612795463],[-71.272608074,41.612734961],[-71.272636631,41.612682006],[-71.272662499,41.612622185],[-71.272686505,41.612563732],[-71.272713286,41.612495634],[-71.272740065,41.612428244],[-71.27276225,41.612358788],[-71.27277894,41.612292088],[-71.272789245,41.612221212],[-71.272793089,41.61215037],[-71.272795118,41.612093246],[-71.272795285,41.612036828],[-71.272795401,41.61199516],[-71.27279545,41.611981072],[-71.27279562,41.611923967],[-71.272791228,41.61185583],[-71.27278315,41.611786977],[-71.272774167,41.611724343],[-71.272767931,41.611660341],[-71.272760752,41.611604594],[-71.272743513,41.61154128],[-71.272711546,41.611489601],[-71.272664981,41.611437892],[-71.272614712,41.611382769],[-71.272564375,41.611337982],[-71.272515002,41.611296628],[-71.272464691,41.611253168],[-71.272394108,41.611237911],[-71.272318097,41.611215097],[-71.272317152,41.611206702],[-71.272313606,41.611175158],[-71.272340364,41.611122222],[-71.272361589,41.611065845],[-71.272370927,41.611010108],[-71.272362844,41.610951592],[-71.272351981,41.610895151],[-71.272335654,41.610832502],[-71.272334943,41.610774686],[-71.272344272,41.610712774],[-71.272354551,41.610649515],[-71.272371226,41.610586908],[-71.272389765,41.610522956],[-71.272410094,41.610461043],[-71.272428605,41.610396404],[-71.272452622,41.610334498],[-71.272482171,41.610267801],[-71.272504357,41.610206577],[-71.272532946,41.610143994],[-71.272562444,41.61009175],[-71.272587343,41.61003881],[-71.27261684,41.60997831],[-71.272642707,41.609927408],[-71.272672201,41.609867617],[-71.272698052,41.609812598],[-71.272724805,41.609752093],[-71.272752478,41.609690194],[-71.272779236,41.609628339],[-71.272800527,41.609561579],[-71.272819044,41.609494883],[-71.272835718,41.609441218],[-71.272865243,41.609372462],[-71.272886487,41.609318806],[-71.272900436,41.609251392],[-71.272911619,41.609181913],[-71.272925556,41.609117929],[-71.272940449,41.609050516],[-71.272955305,41.608985161],[-71.272970177,41.608915027],[-71.272983212,41.608847611],[-71.272998963,41.608778805],[-71.273016592,41.608713501],[-71.27303603,41.608644679],[-71.273056391,41.608582126],[-71.273075791,41.60852435],[-71.273083299,41.608468586],[-71.273060548,41.608404552],[-71.273022175,41.608354964],[-71.272964561,41.608309454],[-71.272905113,41.608265313],[-71.27286213,41.60821846],[-71.27284946,41.608155795],[-71.272876229,41.608099429],[-71.272872719,41.608040258],[-71.272819673,41.607995421],[-71.272758311,41.607967101],[-71.2727162,41.607940901],[-71.272751169,41.60790104],[-71.27280903,41.607867399],[-71.272877911,41.607828314],[-71.272952264,41.607792647],[-71.273022939,41.607763194],[-71.273100955,41.607734418],[-71.273170744,41.607705602],[-71.273217635,41.607654742],[-71.273280114,41.607607388],[-71.273333393,41.607568226],[-71.273385793,41.607527713],[-71.273445485,41.607493389],[-71.27350336,41.607455631],[-71.273565846,41.607406196],[-71.273599612,41.60737038],[-71.273618268,41.607350543],[-71.273659626,41.607304543],[-71.273675387,41.60725019],[-71.273676496,41.607194459],[-71.273673914,41.607131128],[-71.273661243,41.607068487],[-71.273641267,41.607003772],[-71.273627693,41.606938362],[-71.273630635,41.606872343],[-71.273641841,41.606804877],[-71.273658507,41.606735432],[-71.273673354,41.606681078],[-71.273690051,41.60661161],[-71.273706697,41.606556596],[-71.273727962,41.606487801],[-71.273738286,41.606419692],[-71.273732038,41.606359122],[-71.273747804,41.606294478],[-71.273775502,41.606233265],[-71.273808674,41.606166574],[-71.273831788,41.606100549],[-71.27386956,41.606033867],[-71.273921993,41.605974761],[-71.273965209,41.605928718],[-71.274009341,41.605882014],[-71.274052577,41.605838738],[-71.274090277,41.605792662],[-71.274125252,41.6057418],[-71.274169441,41.605678607],[-71.274205358,41.60562841],[-71.274236676,41.605577564],[-71.274267112,41.605508764],[-71.274292015,41.605453743],[-71.274326075,41.605402879],[-71.274359273,41.605345816],[-71.274388777,41.605290804],[-71.274414592,41.605236494],[-71.274444093,41.605182168],[-71.274471757,41.605130606],[-71.274495743,41.605076269],[-71.274520641,41.605022643],[-71.27454468,41.60495319],[-71.274563146,41.604900237],[-71.274588094,41.604832181],[-71.274609333,41.604779188],[-71.274637933,41.604712511],[-71.27465826,41.604658853],[-71.274683179,41.604607971],[-71.274706131,41.604570602],[-71.274713547,41.604558473],[-71.274752227,41.604493141],[-71.27479733,41.604438183],[-71.274851553,41.604389417],[-71.274915835,41.60434824],[-71.274971019,41.604303593],[-71.275015161,41.604253435],[-71.275011666,41.604189439],[-71.274984303,41.604137083],[-71.274970711,41.604076498],[-71.274981878,41.604019414],[-71.275006809,41.60395616],[-71.27502899,41.603894913],[-71.27505119,41.603828223],[-71.275069661,41.603773876],[-71.275099154,41.603721631],[-71.275130477,41.60366868],[-71.275164553,41.603612991],[-71.275187631,41.603556594],[-71.275210711,41.603499534],[-71.275242982,41.603437003],[-71.275268816,41.603385437],[-71.275307502,41.603318025],[-71.275339747,41.603263041],[-71.275372893,41.603211489],[-71.275401484,41.603155766],[-71.275434645,41.603100098],[-71.275467798,41.603046465],[-71.275502789,41.602990114],[-71.275537771,41.602936462],[-71.275570931,41.602880771],[-71.275606834,41.602825108],[-71.275644581,41.602773587],[-71.2756823,41.602721313],[-71.275725566,41.602659466],[-71.275759638,41.602604486],[-71.275793731,41.602552204],[-71.275827786,41.602502049],[-71.275869194,41.602449095],[-71.275904153,41.602401686],[-71.275937329,41.602350111],[-71.27596496,41.602298549],[-71.276007317,41.602235305],[-71.276041376,41.602183778],[-71.276084586,41.602138443],[-71.276126906,41.602094433],[-71.276167383,41.602037384],[-71.276200559,41.601985832],[-71.276247455,41.601931539],[-71.276294338,41.601889665],[-71.27635126,41.60185259],[-71.276414655,41.601811365],[-71.276450167,41.601789068],[-71.276478014,41.601771558],[-71.276538644,41.601728315],[-71.276593775,41.601680236],[-71.276642538,41.601623203],[-71.276693087,41.601569603],[-71.276751926,41.601515334],[-71.276810734,41.601461087],[-71.276869549,41.601413678],[-71.276931101,41.60136767],[-71.276989902,41.601324423],[-71.277043173,41.601285259],[-71.277094636,41.601240604],[-71.277115869,41.601188365],[-71.27711147,41.601120914],[-71.277105209,41.601063111],[-71.277095293,41.601005277],[-71.277084482,41.600941953],[-71.277080075,41.600885526],[-71.277075664,41.600821528],[-71.277073998,41.600756827],[-71.277074167,41.600690071],[-71.277078027,41.60062195],[-71.277078216,41.600557984],[-71.27711226,41.600510527],[-71.277177434,41.600483096],[-71.277215206,41.600423319],[-71.277221778,41.600364123],[-71.277247619,41.600300893],[-71.277290833,41.600253431],[-71.277345974,41.600201944],[-71.277402085,41.600142843],[-71.277447127,41.600095453],[-71.277498588,41.600050774],[-71.27755191,41.600005458],[-71.27760428,41.599962176],[-71.277660321,41.599923749],[-71.277717258,41.599881139],[-71.277768696,41.599834425],[-71.2778147,41.599790467],[-71.277865247,41.599745832],[-71.277913947,41.59969774],[-71.27795719,41.599650323],[-71.27799221,41.599584298],[-71.278000592,41.599529953],[-71.278006298,41.599456324],[-71.278005552,41.599398531],[-71.277999282,41.599343472],[-71.277993025,41.599284296],[-71.277985841,41.599229213],[-71.277975943,41.599156949],[-71.277969715,41.599089517],[-71.277976321,41.599020029],[-71.277996717,41.598953976],[-71.27803629,41.598892784],[-71.278080438,41.598839195],[-71.278092534,41.598776601],[-71.278109175,41.598721563],[-71.278132294,41.598652107],[-71.278159012,41.598599147],[-71.278201367,41.59853524],[-71.278234501,41.598485746],[-71.278271325,41.598435549],[-71.278307194,41.598388141],[-71.278343095,41.598340688],[-71.278390921,41.598280244],[-71.27844426,41.598220474],[-71.278481041,41.598173708],[-71.278518806,41.598115281],[-71.278549208,41.598054095],[-71.278575968,41.597997681],[-71.278605437,41.597942028],[-71.278640472,41.597880142],[-71.278677349,41.597814142],[-71.278703136,41.597757041],[-71.278729888,41.597702731],[-71.278760313,41.597643581],[-71.278784305,41.597585813],[-71.278809205,41.597529441],[-71.278836851,41.597472366],[-71.278859912,41.597419422],[-71.278880242,41.597363042],[-71.278903301,41.597310761],[-71.278931874,41.59725849],[-71.278958601,41.597202808],[-71.278985341,41.597151929],[-71.279013893,41.597096914],[-71.279044303,41.597041925],[-71.279077446,41.596989686],[-71.279106907,41.596936045],[-71.27914928,41.596874859],[-71.279198014,41.596815789],[-71.279230283,41.596760758],[-71.279263439,41.596704403],[-71.279291093,41.59664456],[-71.279317838,41.596583344],[-71.279342756,41.596530426],[-71.279373117,41.596480926],[-71.27939801,41.59642659],[-71.279407342,41.596370166],[-71.27940841,41.596315807],[-71.27940767,41.596255933],[-71.279406889,41.596198803],[-71.2794098,41.596140308],[-71.279425532,41.596083256],[-71.279449511,41.596028918],[-71.27947536,41.595971154],[-71.279501164,41.595917528],[-71.279527006,41.595861822],[-71.279550073,41.595806819],[-71.279574986,41.595755227],[-71.279599872,41.595702972],[-71.279628434,41.595644549],[-71.27965795,41.595583316],[-71.279690227,41.595516644],[-71.27971877,41.59546371],[-71.279748265,41.595408696],[-71.27977955,41.595355768],[-71.279806315,41.595297296],[-71.27983304,41.595241614],[-71.279860711,41.595185224],[-71.279886526,41.595128146],[-71.279910507,41.595073122],[-71.279934501,41.595014004],[-71.279956656,41.594958268],[-71.279969678,41.594900478],[-71.279984488,41.594845459],[-71.280002087,41.594776679],[-71.280016892,41.594723032],[-71.280045496,41.594661156],[-71.280065839,41.594600636],[-71.280084326,41.594539404],[-71.280096401,41.594482322],[-71.280105702,41.594425897],[-71.280114121,41.594368808],[-71.280119777,41.594308946],[-71.28012359,41.594253907],[-71.280129265,41.594197498],[-71.280140438,41.594127973],[-71.280151615,41.594057145],[-71.280169241,41.593997969],[-71.28018591,41.593933989],[-71.280201666,41.593869321],[-71.28022476,41.593806085],[-71.280254241,41.593745583],[-71.280275498,41.593685042],[-71.280297661,41.593626584],[-71.28032898,41.593563318],[-71.280356636,41.593511068],[-71.280398932,41.593462962],[-71.280445821,41.593416924],[-71.280509177,41.593375034],[-71.28058077,41.59333867],[-71.28065327,41.593313355],[-71.28072483,41.59328662],[-71.280802837,41.593254408],[-71.280879937,41.593220113],[-71.280957011,41.593193411],[-71.281043225,41.593175623],[-71.281117555,41.593149602],[-71.281200121,41.59312012],[-71.281275372,41.593092019],[-71.281357002,41.593078384],[-71.281437685,41.593065433],[-71.281508336,41.593046288],[-71.281582628,41.593022348],[-71.281648699,41.592996951],[-71.281724847,41.5929737],[-71.281759635,41.592965327],[-71.281804668,41.592954549],[-71.281878953,41.592941563],[-71.281964254,41.592923109],[-71.28203947,41.592905322],[-71.282126611,41.592883441],[-71.282202756,41.592860853],[-71.282281648,41.592836875],[-71.282353181,41.592817754],[-71.282423804,41.5927979],[-71.282505493,41.592775299],[-71.282592601,41.592754104],[-71.282677883,41.59274116],[-71.282754924,41.592724062],[-71.282841134,41.592707004],[-71.282920907,41.592692656],[-71.283011699,41.592681095],[-71.283102482,41.592672301],[-71.283190489,41.592664189],[-71.283262935,41.592663616],[-71.283343588,41.592659606],[-71.283427942,41.592650777],[-71.283519627,41.592645415],[-71.283600317,41.592639347],[-71.283673674,41.592630497],[-71.283754377,41.592620312],[-71.283829569,41.592609407],[-71.283913932,41.592597834],[-71.283999205,41.592587657],[-71.284079892,41.592582274],[-71.284165147,41.592577586],[-71.284241208,41.592570822],[-71.284329246,41.592562685],[-71.284404424,41.59255592],[-71.284489704,41.592552604],[-71.284564852,41.59255478],[-71.284641851,41.592559018],[-71.284718825,41.592561883],[-71.28480496,41.592576475],[-71.284878262,41.592593101],[-71.284957949,41.592613856],[-71.285037619,41.592639436],[-71.285096203,41.592676],[-71.285163944,41.592716034],[-71.285226178,41.592745034],[-71.285294813,41.59278228],[-71.285355247,41.592811986],[-71.28542392,41.592837522],[-71.285504538,41.592862417],[-71.285582406,41.592880424],[-71.285665787,41.592889521],[-71.285735509,41.592874466],[-71.285805247,41.592836038],[-71.285873176,41.592801059],[-71.285950253,41.592772959],[-71.286012694,41.59273932],[-71.286067776,41.59270155],[-71.286120149,41.592663067],[-71.286182593,41.592619159],[-71.286244135,41.59257175],[-71.2862965,41.592526429],[-71.286343375,41.592483132],[-71.286376481,41.592430205],[-71.286403234,41.592373126],[-71.286418039,41.592318107],[-71.28642278,41.592256848],[-71.286432079,41.592199051],[-71.286440515,41.592135077],[-71.286440712,41.592075228],[-71.286441734,41.592014671],[-71.286450183,41.591956186],[-71.286462248,41.59190043],[-71.286477979,41.591841318],[-71.286490048,41.591784213],[-71.286489273,41.591723652],[-71.286470168,41.591669256],[-71.286435492,41.591616248],[-71.286391599,41.59156869],[-71.286339468,41.591524546],[-71.28627635,41.59147766],[-71.286208607,41.591438336],[-71.286139061,41.591400426],[-71.286063104,41.591357633],[-71.285997235,41.591313509],[-71.285927667,41.591273472],[-71.285850748,41.591236189],[-71.285782124,41.591196176],[-71.285700628,41.591160965],[-71.28562737,41.591131259],[-71.285550439,41.591107033],[-71.285473436,41.591104191],[-71.285396445,41.591116443],[-71.285373354,41.59117147],[-71.285357615,41.591232685],[-71.285342796,41.591291844],[-71.285328903,41.591347574],[-71.285312231,41.591405334],[-71.285288268,41.591456929],[-71.285250535,41.591508475],[-71.285200942,41.591553825],[-71.285134839,41.591589538],[-71.285065083,41.591624489],[-71.28498252,41.591653951],[-71.284904533,41.591681363],[-71.284820106,41.591703251],[-71.284735761,41.591718942],[-71.284655973,41.591729175],[-71.284568871,41.591740035],[-71.284487248,41.591752323],[-71.284398295,41.591770064],[-71.284319368,41.591796101],[-71.284250587,41.591812484],[-71.284163497,41.591828901],[-71.284072696,41.591843893],[-71.283989207,41.591858213],[-71.283907659,41.591866361],[-71.283825163,41.591857264],[-71.283746394,41.591835824],[-71.283678613,41.59181715],[-71.283607158,41.591795015],[-71.283530233,41.591768753],[-71.28345698,41.591746637],[-71.283387358,41.59172311],[-71.283309512,41.591698928],[-71.283243576,41.591675408],[-71.283168486,41.591647068],[-71.283096175,41.591616675],[-71.283033922,41.591584929],[-71.282959751,41.591555287],[-71.282894763,41.591521432],[-71.282851805,41.591477304],[-71.282860134,41.591446354],[-71.282891434,41.591396878],[-71.282908061,41.591343943],[-71.282940298,41.591287539],[-71.28296793,41.591232521],[-71.282975444,41.591172],[-71.28298294,41.591116967],[-71.28301422,41.591063991],[-71.283015998,41.591060656],[-71.283477939,41.590196964],[-71.2836971,41.589774221],[-71.283694174,41.589756606],[-71.283686751,41.589726129],[-71.283715729,41.589668918],[-71.284273594,41.588617004],[-71.285279372,41.588689737],[-71.285284162,41.588788726],[-71.285393691,41.589648278],[-71.28544324,41.589643294],[-71.28544519,41.589725948],[-71.285445928,41.589788383],[-71.285455302,41.589892114],[-71.285452872,41.589991227],[-71.285458936,41.590046079],[-71.285490338,41.590102877],[-71.285543027,41.590124908],[-71.285607537,41.590155696],[-71.285636708,41.590177911],[-71.285753238,41.590249024],[-71.285805272,41.590294128],[-71.285843828,41.590343393],[-71.285886021,41.59039813],[-71.28593552,41.590454755],[-71.28597589,41.590508071],[-71.286024358,41.590553878],[-71.286099831,41.590595435],[-71.286186184,41.590635594],[-71.286265258,41.5906751],[-71.286334304,41.5907072],[-71.286407003,41.59073997],[-71.286475047,41.590761914],[-71.286547433,41.59076955],[-71.286621308,41.590750751],[-71.28666781,41.590709054],[-71.286684752,41.590689258],[-71.286677849,41.590639481],[-71.286676836,41.590632321],[-71.286661416,41.590551013],[-71.286628582,41.590142113],[-71.286629693,41.590082402],[-71.286627807,41.589924347],[-71.286664066,41.589856926],[-71.286693272,41.589803809],[-71.286728663,41.589741166],[-71.286768522,41.589672356],[-71.286990183,41.588852686],[-71.287013028,41.58879759],[-71.287065354,41.588744538],[-71.287087146,41.588722463],[-71.287145354,41.588677975],[-71.287202768,41.588643],[-71.287274584,41.588601121],[-71.287342919,41.588570808],[-71.287413239,41.588557468],[-71.287425113,41.588568925],[-71.287437183,41.588594607],[-71.287510409,41.588596137],[-71.287586394,41.588601743],[-71.287669528,41.588601188],[-71.2877427,41.588600706],[-71.287802087,41.588577237],[-71.287834962,41.588528837],[-71.287874143,41.588480403],[-71.287896935,41.588422585],[-71.287890389,41.58840295],[-71.28784262,41.588413451],[-71.2878007,41.58846124],[-71.287745302,41.588513188],[-71.287680616,41.588545475],[-71.287597575,41.588554881],[-71.287532314,41.58853969],[-71.287533902,41.588520002],[-71.287554247,41.588483906],[-71.287626535,41.588483445],[-71.2876518,41.588479855],[-71.2877008,41.588419158],[-71.287706442,41.588361446],[-71.287709409,41.588153155],[-71.287665149,41.588078129],[-71.287569346,41.588078112],[-71.287355986,41.588070034],[-71.287511666,41.585267651],[-71.287407693,41.585261535],[-71.287298177,41.585245987],[-71.287159893,41.585243536],[-71.287160834,41.585170218],[-71.287169479,41.58506094],[-71.287082508,41.585043878],[-71.287081386,41.584949607],[-71.287080671,41.584889208],[-71.287081686,41.584821378],[-71.28713134,41.583976369],[-71.287211757,41.583975809],[-71.287549955,41.583994593],[-71.287611973,41.583966372],[-71.287612355,41.58387773],[-71.28761246,41.583855089],[-71.287564024,41.583809947],[-71.287554761,41.583792411],[-71.287510668,41.583806944],[-71.287438216,41.583793843],[-71.287359482,41.583782857],[-71.287274557,41.583783409],[-71.287199397,41.583769685],[-71.287134021,41.583744316],[-71.287057949,41.583729882],[-71.286986456,41.583721562],[-71.28689412,41.583706548],[-71.286809913,41.583692853],[-71.286713038,41.5836779],[-71.286617101,41.583664961],[-71.286541031,41.583649863],[-71.286462006,41.583616464],[-71.286393616,41.583563325],[-71.286341539,41.58351415],[-71.286280363,41.583462351],[-71.286222765,41.583406396],[-71.286164282,41.583351149],[-71.286107671,41.583300639],[-71.286054558,41.583242634],[-71.286002335,41.583182618],[-71.285949119,41.583109702],[-71.285912345,41.583057011],[-71.285873772,41.583005025],[-71.285836113,41.582953064],[-71.285789236,41.58288821],[-71.285750592,41.582830117],[-71.285711927,41.582769327],[-71.285672516,41.582722119],[-71.285637374,41.582655182],[-71.285612168,41.582586138],[-71.285596083,41.582522462],[-71.285584454,41.582456095],[-71.285608141,41.582394849],[-71.285669081,41.582351693],[-71.285703077,41.582322964],[-71.285672827,41.582287208],[-71.285594046,41.582272813],[-71.285529271,41.582223065],[-71.285501429,41.582159436],[-71.285487063,41.582091692],[-71.285469129,41.582025336],[-71.285450224,41.58195763],[-71.285430392,41.581885142],[-71.285405219,41.581815457],[-71.285372744,41.581743746],[-71.285342283,41.581688962],[-71.28531079,41.581624068],[-71.285286445,41.581552966],[-71.285268507,41.58148796],[-71.285253353,41.581428356],[-71.285237357,41.581374857],[-71.285219416,41.581310537],[-71.285171481,41.581152098],[-71.285151671,41.581082355],[-71.285135629,41.581024122],[-71.285119566,41.580963167],[-71.285103473,41.580902212],[-71.285084716,41.580845346],[-71.285065987,41.580789143],[-71.285042694,41.580731651],[-71.285018497,41.580671413],[-71.284997041,41.580611203],[-71.28497553,41.580548889],[-71.284950322,41.580481216],[-71.28491967,41.580410857],[-71.284889043,41.580342534],[-71.284857529,41.580274918],[-71.284828628,41.580200447],[-71.284803277,41.580120584],[-71.284780744,41.580045415],[-71.284758154,41.579968897],[-71.284739976,41.579884908],[-71.284723582,41.579795457],[-71.284699962,41.579708097],[-71.284674539,41.579622791],[-71.284658022,41.579524535],[-71.284642268,41.579416721],[-71.284631672,41.579360511],[-71.284619306,41.579305646],[-71.284590983,41.579204029],[-71.284560074,41.57911064],[-71.284540962,41.579023219],[-71.284537306,41.578941133],[-71.284538084,41.578853613],[-71.284541472,41.578759968],[-71.284547461,41.578653452],[-71.284548622,41.578597104],[-71.284557315,41.578492583],[-71.284570663,41.578398842],[-71.284576936,41.578316706],[-71.28458426,41.578248134],[-71.284598032,41.578191717],[-71.284627932,41.578120969],[-71.284662578,41.578070538],[-71.284719001,41.578028792],[-71.284752037,41.577995327],[-71.284760531,41.577950518],[-71.28475968,41.577876533],[-71.284758945,41.577813457],[-71.284762697,41.5777476],[-71.284775391,41.577676293],[-71.284783534,41.577599558],[-71.284786227,41.577522195],[-71.284787197,41.577450272],[-71.284789048,41.577379013],[-71.28479726,41.577309093],[-71.284808973,41.577230306],[-71.284820764,41.577146466],[-71.284829691,41.57707211],[-71.284842484,41.577007573],[-71.284860852,41.576951806],[-71.284881889,41.576899451],[-71.284902019,41.576845013],[-71.284927434,41.576776337],[-71.284957446,41.576717778],[-71.284999218,41.576657801],[-71.285049958,41.576593677],[-71.285103506,41.576536992],[-71.285162568,41.576489145],[-71.285227125,41.576446659],[-71.285284338,41.576396041],[-71.285317159,41.576344257],[-71.285421375,41.576217365],[-71.285633808,41.576005897],[-71.285817883,41.575822619],[-71.286192432,41.575481552],[-71.286256888,41.575432274],[-71.286307939,41.575393261],[-71.286364267,41.575342664],[-71.286879192,41.574952549],[-71.287045959,41.574844227],[-71.287099622,41.574797718],[-71.287151586,41.574758707],[-71.2871809,41.574717138],[-71.28717253,41.574696837],[-71.287154592,41.574631831],[-71.287162872,41.574567995],[-71.287190101,41.574502684],[-71.287222852,41.57444342],[-71.287271044,41.574393585],[-71.287296806,41.574367012],[-71.287314774,41.574348521],[-71.28758841,41.574109262],[-71.287641255,41.574070892],[-71.287693122,41.574023717],[-71.287821814,41.573906839],[-71.287899605,41.573913774],[-71.287944771,41.573913492],[-71.288005797,41.573878476],[-71.288051353,41.573833416],[-71.288055503,41.573802847],[-71.288024081,41.573744723],[-71.28798998,41.573685908],[-71.287946921,41.573638031],[-71.287936826,41.573623856],[-71.287994203,41.573586821],[-71.288042467,41.573542406],[-71.288092557,41.573498657],[-71.288165647,41.573415409],[-71.288211084,41.573360125],[-71.288264839,41.573322466],[-71.288330347,41.573285424],[-71.288384104,41.573247033],[-71.288434933,41.573191096],[-71.288437608,41.573187682],[-71.288437467,41.573187495],[-71.288238467,41.573190495],[-71.287878467,41.573195494],[-71.287857467,41.573175494],[-71.287834467,41.573117494],[-71.287786467,41.573058494],[-71.287650467,41.572895495],[-71.287608467,41.572961494],[-71.287597467,41.572976494],[-71.287289467,41.573062494],[-71.287267466,41.573069495],[-71.286995466,41.572966495],[-71.286924467,41.572939494],[-71.286725466,41.572582495],[-71.286363467,41.571995495],[-71.285987466,41.571638494],[-71.285728466,41.571294494],[-71.285447466,41.571066494],[-71.285386466,41.571031494],[-71.285126466,41.570876494],[-71.284784466,41.570475494],[-71.284447466,41.570142494],[-71.284547466,41.569945494],[-71.284523466,41.569913494],[-71.284477466,41.569869494],[-71.284423465,41.569830494],[-71.284370466,41.569763494],[-71.284339466,41.569710494],[-71.284309466,41.569620494],[-71.284278466,41.569567494],[-71.284217466,41.569505494],[-71.284156466,41.569457494],[-71.284110465,41.569403494],[-71.284095465,41.569332494],[-71.284080466,41.569273494],[-71.284034465,41.569166494],[-71.283996465,41.569113494],[-71.283943466,41.569056493],[-71.283874465,41.569012494],[-71.283836465,41.568990494],[-71.283683465,41.568894494],[-71.283638466,41.568877494],[-71.283576466,41.568842493],[-71.283508465,41.568821494],[-71.283447465,41.568791494],[-71.283393465,41.568747494],[-71.283348465,41.568703494],[-71.283287466,41.568659494],[-71.283256465,41.568614494],[-71.283218465,41.568566494],[-71.283172465,41.568521494],[-71.283126465,41.568482494],[-71.283096465,41.568424494],[-71.283073466,41.568370494],[-71.283058465,41.568317493],[-71.283012465,41.568209494],[-71.283004465,41.568156494],[-71.282997465,41.568097494],[-71.282997465,41.567976494],[-71.282981465,41.567913494],[-71.282974465,41.567854494],[-71.282966465,41.567801494],[-71.282943465,41.567742494],[-71.282905465,41.567685494],[-71.282867465,41.567636493],[-71.282806465,41.567610494],[-71.282676465,41.567545494],[-71.282615465,41.567501493],[-71.282554465,41.567453494],[-71.282501465,41.567409494],[-71.282455465,41.567356494],[-71.282440465,41.567302493],[-71.282432465,41.567239494],[-71.282417465,41.567185493],[-71.282394465,41.567132493],[-71.282379465,41.567087493],[-71.282248465,41.566771494],[-71.281936465,41.566934493],[-71.281547465,41.567131493],[-71.281013464,41.567394494],[-71.280387464,41.567712493],[-71.279594464,41.568115494],[-71.279289464,41.568292494],[-71.279128464,41.568381494],[-71.278991464,41.568474494],[-71.278854464,41.568562494],[-71.278724464,41.568655494],[-71.278434463,41.568877494],[-71.278289464,41.568992494],[-71.278167464,41.569103494],[-71.278053464,41.569217494],[-71.277931463,41.569328494],[-71.277160464,41.570037494],[-71.276908464,41.570267494],[-71.276542463,41.570612495],[-71.275672463,41.571377494],[-71.275093463,41.571893495],[-71.274353463,41.572547494],[-71.274215463,41.572671495],[-71.274078463,41.572791495],[-71.273933462,41.572911495],[-71.273795462,41.573030495],[-71.273719462,41.573100495],[-71.273658462,41.573150495],[-71.273529462,41.573270495],[-71.273414462,41.573371495],[-71.273307462,41.573477495],[-71.273109462,41.573666495],[-71.273010463,41.573758495],[-71.272918462,41.573849495],[-71.272826462,41.573946495],[-71.272743462,41.574047496],[-71.272522462,41.574326495],[-71.272468462,41.574394495],[-71.272453462,41.574417496],[-71.272369462,41.574536495],[-71.272331462,41.574591496],[-71.272270462,41.574682495],[-71.272193462,41.574800495],[-71.272132462,41.574923496],[-71.272064462,41.575051495],[-71.271987462,41.575214496],[-71.271919461,41.575378495],[-71.271873462,41.575482495],[-71.271797462,41.575677496],[-71.271751462,41.575813496],[-71.271728462,41.575868495],[-71.271697462,41.575945495],[-71.271690462,41.575977496],[-71.271652462,41.576081495],[-71.271560462,41.576353495],[-71.271514462,41.576494496],[-71.271461462,41.576630496],[-71.271415462,41.576770496],[-71.271346462,41.576965496],[-71.271285462,41.577120496],[-71.271263462,41.577174496],[-71.271186462,41.577378496],[-71.271125462,41.577550496],[-71.270988462,41.577886496],[-71.270782462,41.578404496],[-71.270576461,41.578926496],[-71.270454462,41.579243496],[-71.270255462,41.579729496],[-71.269979462,41.580450496],[-71.269874461,41.580727497],[-71.269799461,41.580926497],[-71.269782461,41.580972496],[-71.269737461,41.581126497],[-71.269714462,41.581208496],[-71.269691462,41.581348497],[-71.269683461,41.581402496],[-71.269660461,41.581736496],[-71.269653462,41.581858497],[-71.269650462,41.581914497],[-71.269649462,41.581928496],[-71.269630462,41.582367497],[-71.269615462,41.582606497],[-71.269600461,41.582728497],[-71.269592462,41.582850497],[-71.269577462,41.582962497],[-71.269554462,41.583080497],[-71.269538462,41.583152497],[-71.269531462,41.583207497],[-71.269508461,41.583333497],[-71.269477462,41.583460497],[-71.269470462,41.583496497],[-71.269264462,41.584527497],[-71.269195461,41.584857497],[-71.269104462,41.585336498],[-71.268974461,41.585951497],[-71.268882461,41.586394497],[-71.268871462,41.586472497],[-71.268798462,41.586990498],[-71.268760461,41.587225498],[-71.268730462,41.587451498],[-71.268608461,41.588219498],[-71.268562462,41.588481498],[-71.268524462,41.588608498],[-71.268493461,41.588734498],[-71.268448461,41.588861498],[-71.268409461,41.588957498],[-71.268371461,41.589057498],[-71.268325462,41.589152498],[-71.268314461,41.589179499],[-71.268295461,41.589220499],[-71.268272461,41.589248498],[-71.268180461,41.589412499],[-71.268111462,41.589530499],[-71.268020461,41.589662498],[-71.267913461,41.589822499],[-71.267776461,41.590001498],[-71.267425461,41.590494498],[-71.267394462,41.590530498],[-71.267143461,41.590882498],[-71.267005461,41.591069499],[-71.266960461,41.591138499],[-71.266891461,41.591229499],[-71.266654461,41.591549499],[-71.266265461,41.592088498],[-71.265907461,41.592573499],[-71.265129461,41.593633499],[-71.265007461,41.593797499],[-71.263961461,41.5935885],[-71.26350446,41.5934895],[-71.26334346,41.593456499],[-71.26273346,41.593324499],[-71.26268046,41.593316499],[-71.26218446,41.593204499],[-71.26194746,41.593142499],[-71.261512459,41.593033499],[-71.26140646,41.593008499],[-71.260894459,41.592874499],[-71.260307459,41.5927105],[-71.260063459,41.592638499],[-71.259574459,41.592508499],[-71.259231459,41.592411499],[-71.259033458,41.592352499],[-71.258747459,41.592256499],[-71.258422459,41.592103499],[-71.258300459,41.592214499],[-71.258155458,41.592329499],[-71.257995458,41.592458499],[-71.257842458,41.592569499],[-71.257652458,41.592704499],[-71.257431458,41.592830499],[-71.257217458,41.592946499],[-71.257003458,41.593054499],[-71.256782458,41.593108499],[-71.256622458,41.593093499],[-71.256149458,41.593012499],[-71.255592458,41.592911499],[-71.254920457,41.592798499],[-71.254234457,41.592663499],[-71.253318456,41.592505499],[-71.253150457,41.593067499],[-71.252922457,41.593616499],[-71.252891456,41.5936845],[-71.252563457,41.5944925],[-71.252532457,41.5945605],[-71.252449457,41.5947695],[-71.252372457,41.5949605],[-71.252075456,41.5949395],[-71.251571456,41.5949085],[-71.251213456,41.5948885],[-71.250106456,41.5948025],[-71.249938456,41.5947915],[-71.249252456,41.5947425],[-71.248741455,41.5947025],[-71.248130455,41.5946655],[-71.247840455,41.5946525],[-71.247734455,41.5946545],[-71.247451455,41.5946735],[-71.247001455,41.5946965],[-71.246795455,41.5947315],[-71.246314454,41.5948715],[-71.246009454,41.5949365],[-71.245178454,41.5950025],[-71.244392454,41.5950575],[-71.244300454,41.5950645],[-71.244270454,41.5950195],[-71.244224454,41.5949845],[-71.244148454,41.5949455],[-71.244087454,41.5949245],[-71.243995454,41.5949305],[-71.243934453,41.5949495],[-71.243911454,41.5949865],[-71.243888454,41.5950135],[-71.243865454,41.5950725],[-71.243873454,41.5951405],[-71.243904454,41.5951985],[-71.243957454,41.5952195],[-71.243995454,41.5952365],[-71.244034454,41.5952395],[-71.243669454,41.595479501],[-71.242726217,41.595566054],[-71.24266196,41.595576191],[-71.242584243,41.595576086],[-71.242492341,41.595565108],[-71.242467499,41.595615822],[-71.242506839,41.595627927],[-71.242518667,41.595631519],[-71.242600454,41.5956385],[-71.242673453,41.5956495],[-71.242768453,41.5956665],[-71.242851453,41.595671501],[-71.242900609,41.595682736],[-71.242921847,41.595687552],[-71.242963271,41.595732597],[-71.242972454,41.5957425],[-71.242972583,41.595742723],[-71.242972658,41.595742805],[-71.243006187,41.595800053],[-71.243035649,41.595868751],[-71.243049712,41.595940959],[-71.24305704,41.596013723],[-71.243059863,41.59606992],[-71.24305877,41.59613043],[-71.243049064,41.596188657],[-71.243024661,41.59626549],[-71.243003579,41.596319278],[-71.242978513,41.596378797],[-71.242951558,41.596438312],[-71.242923709,41.596492771],[-71.242897855,41.596543644],[-71.242871967,41.596595225],[-71.242846035,41.59665042],[-71.242810109,41.5967286],[-71.242775327,41.596795187],[-71.242755071,41.596855494],[-71.242764321,41.59691864],[-71.242764453,41.596919501],[-71.242764474,41.596919687],[-71.242772713,41.596993208],[-71.242749328,41.59706643],[-71.242726058,41.597133935],[-71.242700758,41.597206397],[-71.242687318,41.59726098],[-71.242678626,41.597317082],[-71.242666883,41.5973953],[-71.242665878,41.597405519],[-71.242661856,41.5974509],[-71.242657902,41.597510604],[-71.242653945,41.597571085],[-71.242646163,41.597627898],[-71.242630453,41.597701915],[-71.242619451,41.597779555],[-71.242624263,41.59783363],[-71.242647548,41.597892571],[-71.242654453,41.597909501],[-71.242689453,41.5979775],[-71.242689598,41.597978003],[-71.24268977,41.597978335],[-71.242712411,41.598054198],[-71.242727731,41.598109073],[-71.242751237,41.598189238],[-71.242770048,41.598262897],[-71.242768675,41.598339965],[-71.242760921,41.59839751],[-71.242754109,41.598455766],[-71.24274835,41.598509726],[-71.242737381,41.59858668],[-71.242728685,41.598643491],[-71.242718937,41.598704623],[-71.242709222,41.598764999],[-71.242700214,41.598839099],[-71.242698101,41.598903175],[-71.24269881,41.598970139],[-71.242697795,41.599026327],[-71.242693877,41.599084613],[-71.242686156,41.599141426],[-71.242675555,41.599202544],[-71.243453454,41.599232501],[-71.243888454,41.599242501],[-71.244522454,41.599247501],[-71.245315455,41.599259501],[-71.245422454,41.599252501],[-71.245536454,41.599250501],[-71.245865454,41.599217501],[-71.246421455,41.599152501],[-71.247039455,41.599131501],[-71.247970456,41.5990905],[-71.248085456,41.599074501],[-71.248115455,41.599060501],[-71.248199456,41.5990135],[-71.248283455,41.598949501],[-71.248336456,41.5988585],[-71.248352456,41.5987005],[-71.248397456,41.598627501],[-71.248481455,41.598612501],[-71.249740456,41.598745501],[-71.250732456,41.598865501],[-71.250450456,41.599429501],[-71.250190456,41.600087501],[-71.249999456,41.600613501],[-71.256530459,41.602601501],[-71.256668459,41.602211501],[-71.256744459,41.602021501],[-71.256820459,41.601889501],[-71.256912458,41.601747501],[-71.256965458,41.601679501],[-71.256988458,41.601651501],[-71.257102458,41.601518501],[-71.257232459,41.601408501],[-71.257377458,41.601288501],[-71.257553458,41.601163501],[-71.258468459,41.600672501],[-71.259403459,41.6001825],[-71.259521459,41.600120501],[-71.25992546,41.5998735],[-71.259995459,41.599824501],[-71.260360459,41.5995765],[-71.260589459,41.599374501],[-71.26087146,41.5990945],[-71.26109346,41.5988235],[-71.261314459,41.5985355],[-71.26176646,41.5979735],[-71.26190946,41.5977945],[-71.26249646,41.5970535],[-71.26218446,41.5975685],[-71.26198546,41.5978875],[-71.26163446,41.5984485],[-71.26119946,41.5991335],[-71.26114646,41.5992145],[-71.260764459,41.599848501],[-71.260398459,41.600440501],[-71.260091459,41.600925501],[-71.25978346,41.601529501],[-71.259275459,41.602768501],[-71.258758459,41.604030501],[-71.258697459,41.604405502],[-71.258712459,41.604540502],[-71.258727459,41.604742502],[-71.258834459,41.605163502],[-71.25888846,41.605379502],[-71.259078459,41.606118502],[-71.259137459,41.606357502],[-71.25920046,41.606615502],[-71.25931546,41.607050502],[-71.25950646,41.607848502],[-71.25980346,41.609049503],[-71.25991046,41.609488502],[-71.26002546,41.609949503],[-71.260101459,41.610340503],[-71.260101459,41.610502502],[-71.260101459,41.610677502],[-71.26007046,41.610998503],[-71.26006246,41.611025502],[-71.25997146,41.611364503],[-71.25983446,41.611700503],[-71.25967446,41.611969503],[-71.25962846,41.612033503],[-71.25936846,41.612358503],[-71.25898746,41.612762503],[-71.25874346,41.613028503],[-71.25846046,41.613304504],[-71.258346459,41.613405503]]]]}}"}, +{"type": "precinct", "typeId": 2706, "areaId": 25878, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":217,\"NAME\":\"2706\",\"SHAPE_Length\":0.063762101734236,\"SHAPE_Area\":-0.00016649907859265},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.243484454,41.592779289],[-71.243485354,41.59283693],[-71.243484102,41.592906771],[-71.24348289,41.592974485],[-71.243482739,41.593035683],[-71.243485203,41.593113491],[-71.243470362,41.593191809],[-71.243458843,41.593246465],[-71.243468912,41.593327217],[-71.243498267,41.593399527],[-71.243514208,41.593474598],[-71.243516093,41.593529375],[-71.243515076,41.593586249],[-71.243513749,41.59365968],[-71.243512528,41.593729521],[-71.243511202,41.593802975],[-71.243508967,41.593874987],[-71.243503019,41.593938322],[-71.243491434,41.59399435],[-71.243468331,41.594051015],[-71.243447252,41.594104117],[-71.243433742,41.594161558],[-71.243432683,41.594221359],[-71.243409732,41.594270089],[-71.243385525,41.594336082],[-71.243365112,41.594405766],[-71.243360061,41.594473403],[-71.243377105,41.594539099],[-71.24338733,41.59461123],[-71.243381109,41.594689704],[-71.243356709,41.59476576],[-71.243334346,41.594835416],[-71.243303323,41.594907135],[-71.243264586,41.594980185],[-71.243219261,41.595047435],[-71.243173079,41.595108165],[-71.243121177,41.595166686],[-71.243067281,41.595228817],[-71.243008641,41.595288718],[-71.242956734,41.595348681],[-71.242910704,41.595401521],[-71.242864644,41.595454361],[-71.242809956,41.595508531],[-71.24274372,41.595563292],[-71.242726217,41.595566054],[-71.243669454,41.595479501],[-71.244034454,41.5952395],[-71.243995454,41.5952365],[-71.243957454,41.5952195],[-71.243904454,41.5951985],[-71.243873454,41.5951405],[-71.243865454,41.5950725],[-71.243888454,41.5950135],[-71.243911454,41.5949865],[-71.243934453,41.5949495],[-71.243995454,41.5949305],[-71.244087454,41.5949245],[-71.244148454,41.5949455],[-71.244224454,41.5949845],[-71.244270454,41.5950195],[-71.244300454,41.5950645],[-71.244392454,41.5950575],[-71.245178454,41.5950025],[-71.246009454,41.5949365],[-71.246314454,41.5948715],[-71.246795455,41.5947315],[-71.247001455,41.5946965],[-71.247451455,41.5946735],[-71.247734455,41.5946545],[-71.247840455,41.5946525],[-71.248130455,41.5946655],[-71.248741455,41.5947025],[-71.249252456,41.5947425],[-71.249938456,41.5947915],[-71.250106456,41.5948025],[-71.251213456,41.5948885],[-71.251571456,41.5949085],[-71.252075456,41.5949395],[-71.252372457,41.5949605],[-71.252449457,41.5947695],[-71.252532457,41.5945605],[-71.252563457,41.5944925],[-71.252891456,41.5936845],[-71.252922457,41.593616499],[-71.253150457,41.593067499],[-71.253318456,41.592505499],[-71.254234457,41.592663499],[-71.254920457,41.592798499],[-71.255592458,41.592911499],[-71.256149458,41.593012499],[-71.256622458,41.593093499],[-71.256782458,41.593108499],[-71.257003458,41.593054499],[-71.257217458,41.592946499],[-71.257431458,41.592830499],[-71.257652458,41.592704499],[-71.257842458,41.592569499],[-71.257995458,41.592458499],[-71.258155458,41.592329499],[-71.258300459,41.592214499],[-71.258422459,41.592103499],[-71.257995458,41.591850499],[-71.257965458,41.591833499],[-71.257400458,41.591520499],[-71.256858458,41.591247499],[-71.256782458,41.591212499],[-71.256405458,41.591049499],[-71.256294458,41.591001499],[-71.255790458,41.590804499],[-71.255149457,41.590600499],[-71.254547457,41.590418499],[-71.254051457,41.590280499],[-71.254104457,41.590116499],[-71.254150457,41.589989499],[-71.254363457,41.589247499],[-71.254691457,41.588038498],[-71.255073457,41.586666498],[-71.255660457,41.584443497],[-71.255775457,41.584013498],[-71.255828457,41.583796498],[-71.255866457,41.583651497],[-71.256034457,41.582990497],[-71.256133457,41.582606498],[-71.256187457,41.582407497],[-71.256210457,41.582307497],[-71.256240457,41.582189497],[-71.256263457,41.582004498],[-71.256301457,41.581724497],[-71.256378457,41.581236497],[-71.256439457,41.580898497],[-71.256461457,41.580717497],[-71.256523457,41.580373497],[-71.256568457,41.580219497],[-71.256599457,41.580138497],[-71.256622457,41.580101497],[-71.256660457,41.580051497],[-71.256691457,41.580019497],[-71.256401457,41.580025497],[-71.255592457,41.580050497],[-71.255012456,41.580061497],[-71.254562457,41.580074497],[-71.254302457,41.580084497],[-71.254150457,41.580091497],[-71.253929456,41.580105497],[-71.253425456,41.580119497],[-71.253295456,41.580122497],[-71.253127456,41.580129497],[-71.252418455,41.580161497],[-71.252433456,41.580278497],[-71.252434456,41.580301497],[-71.252197456,41.580319497],[-71.251518456,41.580409497],[-71.250594455,41.580526497],[-71.250465456,41.580564497],[-71.250404455,41.580606497],[-71.250290456,41.580694497],[-71.250137455,41.580805497],[-71.249801455,41.581086498],[-71.249557455,41.581316497],[-71.249381455,41.581455498],[-71.249336454,41.581478498],[-71.249267455,41.581502497],[-71.248908454,41.581586497],[-71.248260455,41.581733497],[-71.248184455,41.581753497],[-71.247787454,41.581846498],[-71.247161454,41.582002498],[-71.246025454,41.582277498],[-71.245994454,41.582282497],[-71.245391454,41.582438497],[-71.245071453,41.582525498],[-71.244354453,41.582751497],[-71.243537453,41.583001497],[-71.243125453,41.583113498],[-71.242652453,41.583252498],[-71.242591452,41.583299498],[-71.242454452,41.583382498],[-71.242385453,41.583438498],[-71.242279452,41.583543498],[-71.242187453,41.583662498],[-71.242164452,41.583708498],[-71.242157453,41.583739498],[-71.242193453,41.583824498],[-71.241847164,41.583877916],[-71.241608453,41.583524498],[-71.241549453,41.583455498],[-71.241461452,41.583498498],[-71.241476453,41.583537498],[-71.241476711,41.583538204],[-71.241474631,41.583601526],[-71.241484034,41.58366501],[-71.241502847,41.583697583],[-71.241517452,41.583722498],[-71.241544898,41.583759746],[-71.241559666,41.583779574],[-71.241585427,41.583811376],[-71.241603452,41.583833498],[-71.241629506,41.583864082],[-71.241649823,41.583887812],[-71.241652672,41.583890918],[-71.241745948,41.583989983],[-71.241747704,41.583991792],[-71.241763016,41.58400811],[-71.241794452,41.584041498],[-71.241851137,41.584107955],[-71.241882129,41.584143673],[-71.241925845,41.584190665],[-71.241929452,41.584194498],[-71.241929708,41.584194818],[-71.241930142,41.584195284],[-71.241978001,41.584254852],[-71.242016253,41.584306525],[-71.242021453,41.584313498],[-71.24202151,41.584313627],[-71.242022023,41.58431432],[-71.242045057,41.584366423],[-71.242065195,41.584419183],[-71.242088891,41.584488577],[-71.242103188,41.584547041],[-71.242126138,41.584604906],[-71.242141276,41.58462586],[-71.242165453,41.584658498],[-71.242232246,41.58472799],[-71.242265297,41.584761875],[-71.242308874,41.584803661],[-71.242323453,41.584817498],[-71.242387453,41.584867498],[-71.242403584,41.584881914],[-71.242435288,41.584909788],[-71.242454081,41.584931931],[-71.242476453,41.584957498],[-71.24252551,41.585006556],[-71.242535082,41.585015966],[-71.242541687,41.58502168],[-71.242589452,41.585062498],[-71.242633772,41.585103988],[-71.242637037,41.58510701],[-71.242647746,41.585118854],[-71.242721453,41.585199498],[-71.242774453,41.585251498],[-71.242820453,41.585300499],[-71.242849124,41.585338999],[-71.242856189,41.585348363],[-71.242878232,41.58540474],[-71.242884782,41.585466022],[-71.242895158,41.585530263],[-71.242894964,41.585594321],[-71.242905304,41.585660003],[-71.242925437,41.585714203],[-71.242941261,41.585753228],[-71.242946453,41.585765499],[-71.242970453,41.585817498],[-71.243000277,41.585867474],[-71.243007847,41.585879986],[-71.243043151,41.585941561],[-71.243069044,41.585995088],[-71.243089174,41.58605002],[-71.243108288,41.586107831],[-71.24312458,41.586162732],[-71.243136995,41.586219751],[-71.243149299,41.586281824],[-71.243165402,41.5863461],[-71.243178301,41.586410781],[-71.243178453,41.586411499],[-71.243178634,41.586412452],[-71.243188053,41.586472368],[-71.243196585,41.586532923],[-71.243205954,41.586597825],[-71.243205719,41.586664832],[-71.243204621,41.586726738],[-71.243209321,41.586784404],[-71.243222453,41.586843498],[-71.243222645,41.586844305],[-71.243234044,41.586904226],[-71.243239566,41.586971269],[-71.243245097,41.587036117],[-71.243244898,41.587101684],[-71.243252309,41.587168708],[-71.243252149,41.587232079],[-71.243251054,41.587293299],[-71.243250744,41.587363874],[-71.243248788,41.587419305],[-71.24324389,41.587479053],[-71.243241778,41.587543129],[-71.243233948,41.587604973],[-71.243221308,41.587666053],[-71.243204819,41.587730005],[-71.243187318,41.58779535],[-71.243165144,41.587856339],[-71.24314681,41.587916651],[-71.243184468,41.587950928],[-71.243199453,41.587964499],[-71.243249454,41.588017499],[-71.243251732,41.588022606],[-71.243279088,41.588082911],[-71.243285789,41.588137013],[-71.243291428,41.588197584],[-71.243291193,41.588264546],[-71.243290112,41.588322152],[-71.243289017,41.588383372],[-71.243287957,41.588443127],[-71.243286904,41.588501443],[-71.243289689,41.588505794],[-71.243289493,41.588570606],[-71.243279816,41.588629565],[-71.243266268,41.588689202],[-71.243251817,41.588745954],[-71.24323074,41.588799033],[-71.243201951,41.588853467],[-71.24316639,41.588910013],[-71.243122251,41.588963589],[-71.243074352,41.589012789],[-71.243033232,41.589057773],[-71.243003425,41.589115064],[-71.243023698,41.58913278],[-71.243045453,41.589151499],[-71.243114454,41.589169499],[-71.243165453,41.589219499],[-71.243165497,41.589219592],[-71.24316562,41.589219711],[-71.243181846,41.589254159],[-71.243200453,41.589293499],[-71.243203729,41.589301319],[-71.243232019,41.589368009],[-71.243241528,41.589409346],[-71.243244453,41.589421499],[-71.243244463,41.589422108],[-71.243244464,41.589422169],[-71.243246279,41.589482663],[-71.243245119,41.589544614],[-71.243244124,41.589603661],[-71.243240182,41.589660483],[-71.243229447,41.589725203],[-71.24321382,41.589794189],[-71.243195375,41.589859532],[-71.243173211,41.58991764],[-71.243151075,41.589976502],[-71.243125892,41.590043202],[-71.243099694,41.590112096],[-71.243071726,41.59017449],[-71.243045754,41.590232566],[-71.243020688,41.590292772],[-71.242993594,41.590357318],[-71.242960851,41.590417483],[-71.242921055,41.590497049],[-71.242886192,41.590569422],[-71.24284358,41.59064459],[-71.24282509,41.590713546],[-71.242865248,41.590773051],[-71.242889518,41.59079629],[-71.242923453,41.590828499],[-71.242965453,41.5908725],[-71.243005453,41.590921499],[-71.243016395,41.590940399],[-71.243039049,41.590978603],[-71.243063891,41.591036496],[-71.243087822,41.591093632],[-71.243113558,41.591156535],[-71.243138271,41.591223758],[-71.243159194,41.591286627],[-71.243182184,41.591343029],[-71.243201269,41.591400841],[-71.243219359,41.591463704],[-71.24323836,41.591527255],[-71.243256431,41.591587214],[-71.243270806,41.59164211],[-71.243281309,41.591697661],[-71.243288868,41.591758236],[-71.243296387,41.591820961],[-71.243303916,41.591881537],[-71.243319741,41.591962348],[-71.243334119,41.592016512],[-71.243355226,41.592071446],[-71.243375334,41.59212496],[-71.243389883,41.592175611],[-71.243390453,41.5921775],[-71.243390639,41.592178242],[-71.243390683,41.592178419],[-71.243410437,41.59225352],[-71.243423832,41.592309809],[-71.243433349,41.592368285],[-71.24344095,41.592425956],[-71.243449453,41.592483499],[-71.24344948,41.592483653],[-71.243460028,41.592539249],[-71.243466912,41.592584371],[-71.243467453,41.5925875],[-71.24346753,41.592588428],[-71.24346861,41.592595504],[-71.243474292,41.592653148],[-71.243478066,41.592707929],[-71.243483688,41.592770732],[-71.243484454,41.5927785],[-71.243484454,41.592779289]]]]}}"}, +{"type": "precinct", "typeId": 2707, "areaId": 25879, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":218,\"NAME\":\"2707\",\"SHAPE_Length\":0.16245199522354,\"SHAPE_Area\":-0.00085390573903886},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.233937337,41.552837521],[-71.233937448,41.552837492],[-71.233933664,41.552825636],[-71.233937337,41.552837521]]],[[[-71.233785455,41.55293704],[-71.233862187,41.552934702],[-71.233945275,41.552919388],[-71.234016131,41.5529024],[-71.234059825,41.552912798],[-71.234059448,41.552912492],[-71.234015448,41.552901492],[-71.233944449,41.552918492],[-71.233861448,41.552934492],[-71.233785448,41.552936492],[-71.233776611,41.552925446],[-71.233785455,41.55293704]]],[[[-71.234180954,41.553008485],[-71.234199424,41.55303018],[-71.234180449,41.553007492],[-71.23414467,41.552980501],[-71.234180954,41.553008485]]],[[[-71.234251463,41.553128188],[-71.2342635,41.553180521],[-71.234251448,41.553127492],[-71.234243877,41.553107807],[-71.234251463,41.553128188]]],[[[-71.234316638,41.553323921],[-71.234357486,41.553385763],[-71.234400451,41.553443769],[-71.234443499,41.553496423],[-71.234496854,41.553545327],[-71.234561552,41.553589729],[-71.234629341,41.553630342],[-71.234692083,41.55366932],[-71.234734247,41.553698299],[-71.234691448,41.553668493],[-71.234628449,41.553629493],[-71.234561448,41.553589493],[-71.234496448,41.553544492],[-71.234443448,41.553495492],[-71.234400448,41.553443492],[-71.234357449,41.553385492],[-71.234316449,41.553323492],[-71.234311707,41.553314008],[-71.234316638,41.553323921]]],[[[-71.235088271,41.553759974],[-71.235165451,41.553789883],[-71.235246705,41.553821401],[-71.235335104,41.553855269],[-71.235423389,41.553894556],[-71.23547526,41.553917487],[-71.235334448,41.553854492],[-71.235087449,41.553759492],[-71.235007448,41.553747492],[-71.234942449,41.553775492],[-71.234874449,41.553806492],[-71.234818293,41.553813389],[-71.23481842,41.553814194],[-71.234874805,41.553807051],[-71.234942825,41.553776242],[-71.235007697,41.553748422],[-71.235088271,41.553759974]]],[[[-71.236150449,41.554208493],[-71.236061449,41.554165492],[-71.235974449,41.554125492],[-71.235839449,41.554072493],[-71.235765449,41.554041492],[-71.235613449,41.553980493],[-71.235548449,41.553951492],[-71.235549172,41.553951837],[-71.235614117,41.553980871],[-71.235687248,41.55401077],[-71.235766432,41.55404226],[-71.23583953,41.554072914],[-71.235909593,41.55410125],[-71.235974615,41.554126465],[-71.236061832,41.554166481],[-71.236150449,41.554208493]]],[[[-71.236150449,41.554208493],[-71.236151111,41.554208812],[-71.236236356,41.554247269],[-71.23630823,41.554280929],[-71.23630745,41.554280492],[-71.236235449,41.554246492],[-71.236150449,41.554208493]]],[[[-71.23638283,41.554322934],[-71.236382449,41.554322492],[-71.236308339,41.55428099],[-71.23638283,41.554322934]]],[[[-71.236364744,41.554510428],[-71.236435922,41.554474251],[-71.236492761,41.554437904],[-71.236546628,41.554398531],[-71.236606704,41.554352243],[-71.236664488,41.554322851],[-71.236740784,41.554345872],[-71.236803531,41.554384094],[-71.236871359,41.554423174],[-71.236945221,41.554468419],[-71.236992981,41.554496856],[-71.23687045,41.554422493],[-71.236803449,41.554383492],[-71.236740449,41.554345493],[-71.236664449,41.554322492],[-71.236606449,41.554351493],[-71.236546449,41.554398492],[-71.236492449,41.554437492],[-71.236435449,41.554473492],[-71.23636445,41.554509492],[-71.236317033,41.554508504],[-71.236316705,41.554509174],[-71.236364744,41.554510428]]],[[[-71.237081794,41.554553464],[-71.237138128,41.554592716],[-71.23708145,41.554552492],[-71.23703399,41.554522291],[-71.237081794,41.554553464]]],[[[-71.237200789,41.554638945],[-71.23720045,41.554638493],[-71.237164038,41.554611663],[-71.237200789,41.554638945]]],[[[-71.237245794,41.554699245],[-71.237245449,41.554698493],[-71.237213453,41.55465583],[-71.237245794,41.554699245]]],[[[-71.237328642,41.554874974],[-71.237328449,41.554874493],[-71.237323471,41.554865273],[-71.237328642,41.554874974]]],[[[-71.237415522,41.555240059],[-71.23741545,41.555239493],[-71.237384849,41.555185431],[-71.237415522,41.555240059]]],[[[-71.237606476,41.556036254],[-71.237627022,41.556084657],[-71.237592071,41.555999141],[-71.237606476,41.556036254]]],[[[-71.237661674,41.556157384],[-71.237668843,41.556170586],[-71.23766145,41.556156493],[-71.237641928,41.556116798],[-71.237661674,41.556157384]]],[[[-71.241517522,41.583722991],[-71.241544898,41.583759746],[-71.241517452,41.583722498],[-71.241502847,41.583697583],[-71.241517522,41.583722991]]],[[[-71.241603799,41.583834057],[-71.241629506,41.583864082],[-71.241603452,41.583833498],[-71.241585427,41.583811376],[-71.241603799,41.583834057]]],[[[-71.241702503,41.583945219],[-71.241745948,41.583989983],[-71.241652672,41.583890918],[-71.241702503,41.583945219]]],[[[-71.241794778,41.584041959],[-71.241836101,41.584090627],[-71.241851137,41.584107955],[-71.241794452,41.584041498],[-71.241763016,41.58400811],[-71.241794778,41.584041959]]],[[[-71.241929708,41.584194818],[-71.241929452,41.584194498],[-71.241925845,41.584190665],[-71.241929708,41.584194818]]],[[[-71.24202151,41.584313627],[-71.242021453,41.584313498],[-71.242016253,41.584306525],[-71.24202151,41.584313627]]],[[[-71.242165459,41.584659333],[-71.24221066,41.584705859],[-71.242232246,41.58472799],[-71.242165453,41.584658498],[-71.242141276,41.58462586],[-71.242165459,41.584659333]]],[[[-71.242323771,41.584817945],[-71.242388087,41.584868288],[-71.242403584,41.584881914],[-71.242387453,41.584867498],[-71.242323453,41.584817498],[-71.242308874,41.584803661],[-71.242323771,41.584817945]]],[[[-71.242476612,41.584958479],[-71.24252551,41.585006556],[-71.242476453,41.584957498],[-71.242454081,41.584931931],[-71.242476612,41.584958479]]],[[[-71.242589844,41.585063338],[-71.242633772,41.585103988],[-71.242589452,41.585062498],[-71.242541687,41.58502168],[-71.242589844,41.585063338]]],[[[-71.242678434,41.585152796],[-71.242721714,41.58520005],[-71.242774511,41.585251739],[-71.242820585,41.585301172],[-71.242849124,41.585338999],[-71.242820453,41.585300499],[-71.242774453,41.585251498],[-71.242721453,41.585199498],[-71.242647746,41.585118854],[-71.242678434,41.585152796]]],[[[-71.242946553,41.585766278],[-71.242970563,41.58581836],[-71.243000277,41.585867474],[-71.242970453,41.585817498],[-71.242946453,41.585765499],[-71.242941261,41.585753228],[-71.242946553,41.585766278]]],[[[-71.256660457,41.580051497],[-71.256622457,41.580101497],[-71.256599457,41.580138497],[-71.256568457,41.580219497],[-71.256523457,41.580373497],[-71.256461457,41.580717497],[-71.256439457,41.580898497],[-71.256378457,41.581236497],[-71.256301457,41.581724497],[-71.256263457,41.582004498],[-71.256240457,41.582189497],[-71.256210457,41.582307497],[-71.256187457,41.582407497],[-71.256133457,41.582606498],[-71.256034457,41.582990497],[-71.255866457,41.583651497],[-71.255828457,41.583796498],[-71.255775457,41.584013498],[-71.255660457,41.584443497],[-71.255073457,41.586666498],[-71.254691457,41.588038498],[-71.254363457,41.589247499],[-71.254150457,41.589989499],[-71.254104457,41.590116499],[-71.254051457,41.590280499],[-71.254547457,41.590418499],[-71.255149457,41.590600499],[-71.255790458,41.590804499],[-71.256294458,41.591001499],[-71.256405458,41.591049499],[-71.256782458,41.591212499],[-71.256858458,41.591247499],[-71.257400458,41.591520499],[-71.257965458,41.591833499],[-71.257995458,41.591850499],[-71.258422459,41.592103499],[-71.258747459,41.592256499],[-71.259033458,41.592352499],[-71.259231459,41.592411499],[-71.259574459,41.592508499],[-71.260063459,41.592638499],[-71.260307459,41.5927105],[-71.260894459,41.592874499],[-71.26140646,41.593008499],[-71.261512459,41.593033499],[-71.26194746,41.593142499],[-71.26218446,41.593204499],[-71.26268046,41.593316499],[-71.26273346,41.593324499],[-71.26334346,41.593456499],[-71.26350446,41.5934895],[-71.263961461,41.5935885],[-71.265007461,41.593797499],[-71.265129461,41.593633499],[-71.265907461,41.592573499],[-71.266265461,41.592088498],[-71.266654461,41.591549499],[-71.266891461,41.591229499],[-71.266960461,41.591138499],[-71.267005461,41.591069499],[-71.267143461,41.590882498],[-71.267394462,41.590530498],[-71.267425461,41.590494498],[-71.267776461,41.590001498],[-71.267913461,41.589822499],[-71.268020461,41.589662498],[-71.268111462,41.589530499],[-71.268180461,41.589412499],[-71.268272461,41.589248498],[-71.268295461,41.589220499],[-71.268314461,41.589179499],[-71.268325462,41.589152498],[-71.268371461,41.589057498],[-71.268409461,41.588957498],[-71.268448461,41.588861498],[-71.268493461,41.588734498],[-71.268524462,41.588608498],[-71.268562462,41.588481498],[-71.268608461,41.588219498],[-71.268730462,41.587451498],[-71.268760461,41.587225498],[-71.268798462,41.586990498],[-71.268871462,41.586472497],[-71.268882461,41.586394497],[-71.268974461,41.585951497],[-71.269104462,41.585336498],[-71.269195461,41.584857497],[-71.269264462,41.584527497],[-71.269470462,41.583496497],[-71.269477462,41.583460497],[-71.269508461,41.583333497],[-71.269531462,41.583207497],[-71.269538462,41.583152497],[-71.269554462,41.583080497],[-71.269577462,41.582962497],[-71.269592462,41.582850497],[-71.269600461,41.582728497],[-71.269615462,41.582606497],[-71.269630462,41.582367497],[-71.269649462,41.581928496],[-71.269650462,41.581914497],[-71.269653462,41.581858497],[-71.269660461,41.581736496],[-71.269683461,41.581402496],[-71.269691462,41.581348497],[-71.269714462,41.581208496],[-71.269737461,41.581126497],[-71.269782461,41.580972496],[-71.269799461,41.580926497],[-71.269874461,41.580727497],[-71.269979462,41.580450496],[-71.270255462,41.579729496],[-71.270454462,41.579243496],[-71.270576461,41.578926496],[-71.270782462,41.578404496],[-71.270988462,41.577886496],[-71.271125462,41.577550496],[-71.271186462,41.577378496],[-71.271263462,41.577174496],[-71.271285462,41.577120496],[-71.271346462,41.576965496],[-71.271415462,41.576770496],[-71.271461462,41.576630496],[-71.271514462,41.576494496],[-71.271560462,41.576353495],[-71.271652462,41.576081495],[-71.271690462,41.575977496],[-71.271697462,41.575945495],[-71.271728462,41.575868495],[-71.271751462,41.575813496],[-71.271797462,41.575677496],[-71.271873462,41.575482495],[-71.271919461,41.575378495],[-71.271987462,41.575214496],[-71.272064462,41.575051495],[-71.272132462,41.574923496],[-71.272193462,41.574800495],[-71.272270462,41.574682495],[-71.272331462,41.574591496],[-71.272369462,41.574536495],[-71.272453462,41.574417496],[-71.272468462,41.574394495],[-71.272522462,41.574326495],[-71.272743462,41.574047496],[-71.272826462,41.573946495],[-71.272918462,41.573849495],[-71.273010463,41.573758495],[-71.273109462,41.573666495],[-71.273307462,41.573477495],[-71.273414462,41.573371495],[-71.273529462,41.573270495],[-71.273658462,41.573150495],[-71.273719462,41.573100495],[-71.273795462,41.573030495],[-71.273933462,41.572911495],[-71.274078463,41.572791495],[-71.274215463,41.572671495],[-71.274353463,41.572547494],[-71.275093463,41.571893495],[-71.275672463,41.571377494],[-71.276542463,41.570612495],[-71.276908464,41.570267494],[-71.275127736,41.567385848],[-71.275085462,41.567344494],[-71.275077463,41.567304493],[-71.267180742,41.56718008],[-71.260276458,41.566286494],[-71.256461267,41.566668495],[-71.256271722,41.566629888],[-71.256390212,41.565639368],[-71.256872054,41.565686958],[-71.257193281,41.563491905],[-71.256724643,41.563490934],[-71.256758311,41.563329859],[-71.255732855,41.563136899],[-71.255708271,41.563235232],[-71.254949917,41.563089701],[-71.25497761,41.562981446],[-71.253628586,41.562719317],[-71.253669455,41.562615494],[-71.253775455,41.562338493],[-71.253944455,41.561896494],[-71.254272455,41.561045493],[-71.254669455,41.560028493],[-71.255401455,41.558055493],[-71.245162453,41.557377492],[-71.244423452,41.557189493],[-71.244362452,41.557181492],[-71.244300452,41.557218493],[-71.244239452,41.557238492],[-71.244171452,41.557207493],[-71.244109452,41.557173493],[-71.244033451,41.557152493],[-71.243965452,41.557166493],[-71.243896451,41.557213493],[-71.243850452,41.557268493],[-71.243758452,41.557360493],[-71.243713452,41.557401493],[-71.243636452,41.557430493],[-71.243553452,41.557436492],[-71.243461452,41.557433492],[-71.243362452,41.557426493],[-71.243255451,41.557423493],[-71.243171452,41.557416492],[-71.243095452,41.557404493],[-71.243026451,41.557374493],[-71.242950452,41.557339493],[-71.242866451,41.557305493],[-71.242782452,41.557275493],[-71.242698452,41.557254493],[-71.242622452,41.557224493],[-71.242523451,41.557208493],[-71.242439451,41.557205493],[-71.242363451,41.557198493],[-71.242286451,41.557181492],[-71.242218451,41.557155493],[-71.242172451,41.557111493],[-71.242133451,41.557058493],[-71.242118452,41.557004492],[-71.242065451,41.556942493],[-71.242004451,41.556903493],[-71.241935451,41.556868492],[-71.241874451,41.556833492],[-71.241607451,41.556699493],[-71.241523451,41.556669493],[-71.241432451,41.556657492],[-71.241340451,41.556650493],[-71.241248451,41.556652493],[-71.241149451,41.556649493],[-71.241058451,41.556642493],[-71.240974451,41.556644493],[-71.240890451,41.556632493],[-71.240821451,41.556606493],[-71.240745451,41.556594493],[-71.240646451,41.556605493],[-71.240554451,41.556612493],[-71.24046345,41.556609493],[-71.240379451,41.556601493],[-71.240287451,41.556594493],[-71.240203451,41.556582493],[-71.24013545,41.556566493],[-71.240051451,41.556531493],[-71.239974451,41.556488493],[-71.239913451,41.556444493],[-71.23986045,41.556395493],[-71.239799451,41.556361492],[-71.23974645,41.556371493],[-71.239677451,41.556421492],[-71.23961645,41.556459492],[-71.239540451,41.556478492],[-71.23945645,41.556471493],[-71.23930345,41.556424493],[-71.23922745,41.556403492],[-71.23914345,41.556387493],[-71.23907445,41.556375493],[-71.238998451,41.556372493],[-71.23892245,41.556396493],[-71.23882245,41.556407493],[-71.23860145,41.556384492],[-71.23852545,41.556372493],[-71.23844945,41.556369493],[-71.23838045,41.556379493],[-71.23820545,41.556365493],[-71.23812045,41.556380492],[-71.23805245,41.556413493],[-71.23799145,41.556445493],[-71.23795345,41.556451493],[-71.23791445,41.556451493],[-71.237755499,41.556463489],[-71.237757292,41.556485485],[-71.237758181,41.556551558],[-71.237768492,41.556606926],[-71.237801153,41.556669481],[-71.237805075,41.556738648],[-71.23779281,41.556797647],[-71.237783611,41.556859008],[-71.237773229,41.556926496],[-71.237763877,41.556995541],[-71.237749608,41.557053026],[-71.237736268,41.557114309],[-71.23771985,41.557176363],[-71.237701464,41.557235325],[-71.237685,41.557301221],[-71.237664382,41.557370126],[-71.237645795,41.557441414],[-71.237635407,41.557510411],[-71.23762705,41.557581768],[-71.237618509,41.557660809],[-71.237610397,41.557716776],[-71.237604328,41.557772038],[-71.237599974,41.557847247],[-71.237594621,41.557920944],[-71.237588267,41.557993815],[-71.237587077,41.55806217],[-71.237586031,41.558125128],[-71.237584961,41.558186576],[-71.237576646,41.558254846],[-71.237565217,41.558325396],[-71.237555833,41.558394464],[-71.237543531,41.558454995],[-71.237523142,41.558512397],[-71.237500683,41.558569772],[-71.237485421,41.558624144],[-71.237462879,41.558686916],[-71.237455164,41.558719876],[-71.237477672,41.558778474],[-71.237550737,41.558871332],[-71.237598595,41.558910708],[-71.237691344,41.558932509],[-71.237770007,41.558996563],[-71.237834853,41.559081718],[-71.237909114,41.559165385],[-71.237979998,41.559270998],[-71.238040405,41.55937732],[-71.238095506,41.559493029],[-71.23811877,41.559560662],[-71.238132625,41.559628251],[-71.238157864,41.559704533],[-71.238197943,41.55976285],[-71.238238133,41.559808613],[-71.238261443,41.559872358],[-71.238265986,41.559931235],[-71.238263302,41.559985339],[-71.238243637,41.560150001],[-71.238245727,41.560243406],[-71.23824498,41.560307737],[-71.238244366,41.560361868],[-71.238243718,41.5604168],[-71.238243066,41.560472532],[-71.238242403,41.560531351],[-71.238241736,41.560590994],[-71.238240053,41.5606459],[-71.238232051,41.560704725],[-71.238221883,41.560772145],[-71.238204413,41.56083797],[-71.23817865,41.560898973],[-71.238155987,41.560961608],[-71.238129146,41.561025765],[-71.238095961,41.561092263],[-71.238062851,41.561155605],[-71.238032882,41.561217399],[-71.237998776,41.561278384],[-71.237957292,41.561341707],[-71.237911593,41.561408085],[-71.237870096,41.561474518],[-71.237841153,41.561538716],[-71.237823723,41.561602117],[-71.237819799,41.561668819],[-71.237815946,41.561733143],[-71.237794453,41.561784779],[-71.237746564,41.561858219],[-71.237714607,41.56191452],[-71.237679494,41.561968435],[-71.237643345,41.562022348],[-71.237611404,41.562074715],[-71.237573228,41.562125513],[-71.237533903,41.562181729],[-71.237498816,41.562236399],[-71.23746893,41.562292727],[-71.237448329,41.562356967],[-71.237443351,41.562428309],[-71.237441433,41.562503637],[-71.237433207,41.562579729],[-71.237428196,41.562651871],[-71.237427435,41.562719335],[-71.237426684,41.562784489],[-71.237429024,41.562853515],[-71.237431393,41.562922587],[-71.237430646,41.562986941],[-71.237428856,41.563052847],[-71.237425942,41.563125795],[-71.237407307,41.563201017],[-71.237367752,41.563276099],[-71.23732405,41.563352704],[-71.237284386,41.563439564],[-71.237258294,41.563528833],[-71.23723333,41.563610307],[-71.237211534,41.563653664],[-71.237199132,41.563678335],[-71.237158757,41.563737704],[-71.237115256,41.563794733],[-71.237071699,41.563858028],[-71.237029127,41.563925991],[-71.236986561,41.563992421],[-71.23694607,41.564058102],[-71.236909668,41.564136301],[-71.236878294,41.564228692],[-71.236863628,41.564323545],[-71.236862679,41.564407497],[-71.236851433,41.56447727],[-71.236829756,41.564543839],[-71.236806944,41.564619806],[-71.236786132,41.564705977],[-71.23676629,41.564792928],[-71.236750644,41.564881512],[-71.236730786,41.564972419],[-71.236714002,41.565071178],[-71.236691011,41.565161278],[-71.236656726,41.565235594],[-71.236622484,41.565306778],[-71.236594431,41.56538351],[-71.236572644,41.565461812],[-71.236549762,41.565540179],[-71.236528012,41.565616903],[-71.236497941,41.565688119],[-71.236468915,41.565757027],[-71.236465996,41.565830753],[-71.2364902,41.56590701],[-71.236493564,41.565978462],[-71.236487572,41.566044336],[-71.236472219,41.566105432],[-71.236449635,41.566162577],[-71.236428093,41.566218124],[-71.236415914,41.566277717],[-71.236414127,41.5663428],[-71.236397739,41.566403916],[-71.236369908,41.566463359],[-71.236340952,41.566529912],[-71.236310883,41.566600305],[-71.236277675,41.566671513],[-71.236246531,41.566744282],[-71.236216469,41.566813165],[-71.236185428,41.566875711],[-71.236152352,41.566936697],[-71.236123458,41.566995383],[-71.236099848,41.56705017],[-71.236090841,41.56710817],[-71.23608898,41.567176432],[-71.236093409,41.567247887],[-71.236105163,41.567315425],[-71.236114893,41.567379048],[-71.236119425,41.567440303],[-71.236121858,41.567500754],[-71.23613255,41.567567466],[-71.236134878,41.567638893],[-71.236134073,41.567709536],[-71.236133321,41.567774644],[-71.236127368,41.567838185],[-71.236113127,41.567895373],[-71.236090588,41.567948607],[-71.236066935,41.568006482],[-71.236050533,41.568070731],[-71.23605078,41.568137442],[-71.236061501,41.568204201],[-71.236086917,41.568267151],[-71.236099848,41.568322159],[-71.236104235,41.568396747],[-71.236107595,41.568468954],[-71.236105718,41.568541127],[-71.236091344,41.568608536],[-71.236067634,41.568672723],[-71.236073155,41.568737868],[-71.236100428,41.568815733],[-71.236111326,41.568869159],[-71.236122184,41.568924963],[-71.236134077,41.56898077],[-71.236139735,41.569034938],[-71.236139081,41.569090647],[-71.236138459,41.569146356],[-71.23612927,41.569219266],[-71.236104444,41.569288161],[-71.236117138,41.569364392],[-71.236137378,41.56941944],[-71.236147191,41.569477575],[-71.236146449,41.569540304],[-71.236149902,41.569604691],[-71.236160671,41.569667515],[-71.236177752,41.569728068],[-71.236186463,41.569787778],[-71.236187858,41.56984898],[-71.236196485,41.569914178],[-71.236212402,41.569984127],[-71.236220924,41.570060303],[-71.236224182,41.57014271],[-71.236223248,41.570222729],[-71.236222443,41.570293348],[-71.236218584,41.570358449],[-71.236203184,41.570423478],[-71.236187808,41.570490062],[-71.236169231,41.570557439],[-71.236143373,41.570625532],[-71.236114427,41.570688929],[-71.236083421,41.570749942],[-71.236054462,41.570816449],[-71.236028557,41.570888475],[-71.236008873,41.57096605],[-71.236004844,41.571042905],[-71.236004039,41.571113548],[-71.236003234,41.571184122],[-71.236002358,41.571257097],[-71.236004699,41.571325391],[-71.236021692,41.571392987],[-71.236041818,41.571461391],[-71.236054647,41.571526599],[-71.236054958,41.57159251],[-71.236054113,41.571665485],[-71.236053134,41.571748682],[-71.236049953,41.571842029],[-71.23603842,41.571936912],[-71.236025911,41.572024702],[-71.236022939,41.572103916],[-71.236022227,41.572166692],[-71.236018155,41.572246703],[-71.236002834,41.572307044],[-71.235979173,41.572366519],[-71.235947142,41.572424375],[-71.235914067,41.572484606],[-71.235886169,41.572544849],[-71.23586652,41.572620823],[-71.235887827,41.572675896],[-71.235923743,41.572733404],[-71.235958633,41.572788577],[-71.235994549,41.572846086],[-71.236036778,41.572901276],[-71.236069616,41.572951756],[-71.236107371,41.57302889],[-71.236125532,41.573086266],[-71.236127923,41.573149826],[-71.236127248,41.573211024],[-71.236125566,41.573265175],[-71.236092536,41.573321473],[-71.236043866,41.573374511],[-71.236074538,41.573433585],[-71.23611055,41.573482448],[-71.236137079,41.573534401],[-71.236156315,41.573589446],[-71.236162919,41.573650706],[-71.236164271,41.573715087],[-71.236163506,41.573783352],[-71.236162753,41.57384846],[-71.236162048,41.573909657],[-71.236161385,41.573967722],[-71.23615965,41.574027362],[-71.236154765,41.574090105],[-71.236139361,41.574155911],[-71.236115523,41.574228742],[-71.236105347,41.574259616],[-71.236088448,41.574310965],[-71.236059259,41.574396316],[-71.236031142,41.574480069],[-71.236008286,41.574558391],[-71.235994887,41.574632869],[-71.235982647,41.574699506],[-71.23596944,41.574756696],[-71.235956266,41.574813085],[-71.235937824,41.574869485],[-71.235915209,41.57492583],[-71.235893694,41.574981376],[-71.235869055,41.575033806],[-71.235839171,41.575087755],[-71.235806194,41.575138541],[-71.235764785,41.575195597],[-71.235717092,41.575254903],[-71.235659992,41.575313387],[-71.235599759,41.575371063],[-71.235539575,41.575424005],[-71.235478441,41.575470701],[-71.235419382,41.575516625],[-71.235364489,41.575564159],[-71.23530851,41.575616379],[-71.235250341,41.575675614],[-71.2351901,41.575734891],[-71.235123625,41.575791683],[-71.235050883,41.575846929],[-71.234984824,41.575899011],[-71.234973854,41.575907676],[-71.23490308,41.575973103],[-71.234839556,41.576045682],[-71.234781289,41.576113562],[-71.234726252,41.576173651],[-71.23467968,41.576226692],[-71.234638409,41.576271947],[-71.234588713,41.576321849],[-71.234529749,41.576359104],[-71.234472926,41.576394078],[-71.234483688,41.576458481],[-71.234517546,41.576512829],[-71.23456297,41.576561783],[-71.234604231,41.57660835],[-71.234661989,41.576672289],[-71.23471373,41.576718148],[-71.234758091,41.576766276],[-71.234784681,41.576818252],[-71.23479441,41.576881898],[-71.234801945,41.57695336],[-71.234819973,41.577020958],[-71.234829664,41.577042044],[-71.234847505,41.57708078],[-71.23489293,41.577129712],[-71.234958324,41.577166225],[-71.235037438,41.577191838],[-71.235131294,41.57720971],[-71.235236719,41.577221365],[-71.235343272,41.577225201],[-71.235454041,41.577225913],[-71.235573192,41.577225135],[-71.235697545,41.577225947],[-71.235827195,41.577219727],[-71.235961058,41.577211161],[-71.236096895,41.577211267],[-71.236228554,41.577212896],[-71.236348645,41.577220764],[-71.236460341,41.577233255],[-71.236570924,41.577249654],[-71.236678374,41.577265269],[-71.236779531,41.577285534],[-71.236879526,41.577314442],[-71.23697737,41.57734801],[-71.237076286,41.57738007],[-71.23715579,41.57740749],[-71.237178266,41.577415225],[-71.237285465,41.577455149],[-71.237386351,41.577497437],[-71.237474685,41.577540359],[-71.237544284,41.577576904],[-71.237629435,41.577623752],[-71.237686523,41.577658667],[-71.237740305,41.577705329],[-71.237788733,41.577765244],[-71.237833968,41.577831486],[-71.237872933,41.577896845],[-71.237900415,41.577962177],[-71.237916349,41.578028947],[-71.237926082,41.578092547],[-71.237934878,41.578146814],[-71.237940302,41.578221336],[-71.237937466,41.578282528],[-71.237936851,41.578336682],[-71.237948655,41.57840031],[-71.237959269,41.578479623],[-71.237972998,41.578556633],[-71.23798597,41.578610109],[-71.238005167,41.578668287],[-71.238032743,41.57872573],[-71.238064501,41.57878085],[-71.238097211,41.578841506],[-71.238129946,41.578903694],[-71.238166853,41.578965961],[-71.238201593,41.579036799],[-71.238233057,41.579119384],[-71.238268744,41.579197291],[-71.238310724,41.579270546],[-71.238354796,41.579346185],[-71.238397783,41.579426486],[-71.23843853,41.579518561],[-71.238470984,41.579605082],[-71.238501473,41.579680621],[-71.238523761,41.579742763],[-71.238556426,41.579807306],[-71.238586064,41.579867155],[-71.238590649,41.579923653],[-71.238589991,41.579980917],[-71.23860587,41.580053999],[-71.238658285,41.58013048],[-71.238707788,41.580188841],[-71.238763479,41.580253575],[-71.238829578,41.580320687],[-71.23891028,41.580391835],[-71.239000398,41.580462249],[-71.239091618,41.580531111],[-71.239177569,41.580599937],[-71.239259397,41.580664044],[-71.239330698,41.580732768],[-71.239386289,41.580807678],[-71.239425127,41.580882481],[-71.239456684,41.580958],[-71.239493455,41.581031975],[-71.239529236,41.58110206],[-71.239558713,41.581172085],[-71.239585117,41.581241302],[-71.239607324,41.581308932],[-71.239624316,41.581378106],[-71.239642317,41.581446504],[-71.239653078,41.581512484],[-71.239662819,41.581574528],[-71.239677809,41.581634298],[-71.239698084,41.581690123],[-71.239728627,41.58176015],[-71.239754061,41.581820744],[-71.239787886,41.581877468],[-71.239839586,41.581928013],[-71.239904889,41.581973945],[-71.239979496,41.5820317],[-71.240048823,41.582091798],[-71.240096132,41.582158798],[-71.240119563,41.582209942],[-71.240142933,41.582268953],[-71.240144262,41.582271746],[-71.240178813,41.582314682],[-71.240280165,41.582440694],[-71.240312,41.58248495],[-71.240361785,41.58254235],[-71.240418454,41.5825919],[-71.240471174,41.582646448],[-71.240518099,41.582703134],[-71.240568855,41.582761268],[-71.240620897,41.582802848],[-71.240676866,41.582837233],[-71.240735536,41.582881756],[-71.240790368,41.582926246],[-71.240847197,41.582966442],[-71.24091166,41.583009582],[-71.240971277,41.58305342],[-71.24104138,41.583103068],[-71.241103025,41.583142611],[-71.241149126,41.583192045],[-71.241201914,41.583245152],[-71.241253926,41.583286732],[-71.241310684,41.583329809],[-71.24136555,41.58337359],[-71.241410789,41.583417945],[-71.241452863,41.583476746],[-71.241476453,41.583537498],[-71.241461452,41.583498498],[-71.241549453,41.583455498],[-71.241608453,41.583524498],[-71.241847164,41.583877916],[-71.242193453,41.583824498],[-71.242157453,41.583739498],[-71.242164452,41.583708498],[-71.242187453,41.583662498],[-71.242279452,41.583543498],[-71.242385453,41.583438498],[-71.242454452,41.583382498],[-71.242591452,41.583299498],[-71.242652453,41.583252498],[-71.243125453,41.583113498],[-71.243537453,41.583001497],[-71.244354453,41.582751497],[-71.245071453,41.582525498],[-71.245391454,41.582438497],[-71.245994454,41.582282497],[-71.246025454,41.582277498],[-71.247161454,41.582002498],[-71.247787454,41.581846498],[-71.248184455,41.581753497],[-71.248260455,41.581733497],[-71.248908454,41.581586497],[-71.249267455,41.581502497],[-71.249336454,41.581478498],[-71.249381455,41.581455498],[-71.249557455,41.581316497],[-71.249801455,41.581086498],[-71.250137455,41.580805497],[-71.250290456,41.580694497],[-71.250404455,41.580606497],[-71.250465456,41.580564497],[-71.250594455,41.580526497],[-71.251518456,41.580409497],[-71.252197456,41.580319497],[-71.252434456,41.580301497],[-71.252433456,41.580278497],[-71.252418455,41.580161497],[-71.253127456,41.580129497],[-71.253295456,41.580122497],[-71.253425456,41.580119497],[-71.253929456,41.580105497],[-71.254150457,41.580091497],[-71.254302457,41.580084497],[-71.254562457,41.580074497],[-71.255012456,41.580061497],[-71.255592457,41.580050497],[-71.256401457,41.580025497],[-71.256691457,41.580019497],[-71.256660457,41.580051497]]]]}}"}, +{"type": "precinct", "typeId": 2708, "areaId": 25880, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":219,\"NAME\":\"2708\",\"SHAPE_Length\":0.23029045290263,\"SHAPE_Area\":-0.0017629854554326},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.276908464,41.570267494],[-71.277160464,41.570037494],[-71.277931463,41.569328494],[-71.278053464,41.569217494],[-71.278167464,41.569103494],[-71.278289464,41.568992494],[-71.278434463,41.568877494],[-71.278724464,41.568655494],[-71.278854464,41.568562494],[-71.278991464,41.568474494],[-71.279128464,41.568381494],[-71.279289464,41.568292494],[-71.279594464,41.568115494],[-71.280387464,41.567712493],[-71.281013464,41.567394494],[-71.281547465,41.567131493],[-71.281936465,41.566934493],[-71.282248465,41.566771494],[-71.282379465,41.567087493],[-71.282394465,41.567132493],[-71.282417465,41.567185493],[-71.282432465,41.567239494],[-71.282440465,41.567302493],[-71.282455465,41.567356494],[-71.282501465,41.567409494],[-71.282554465,41.567453494],[-71.282615465,41.567501493],[-71.282676465,41.567545494],[-71.282806465,41.567610494],[-71.282867465,41.567636493],[-71.282905465,41.567685494],[-71.282943465,41.567742494],[-71.282966465,41.567801494],[-71.282974465,41.567854494],[-71.282981465,41.567913494],[-71.282997465,41.567976494],[-71.282997465,41.568097494],[-71.283004465,41.568156494],[-71.283012465,41.568209494],[-71.283058465,41.568317493],[-71.283073466,41.568370494],[-71.283096465,41.568424494],[-71.283126465,41.568482494],[-71.283172465,41.568521494],[-71.283218465,41.568566494],[-71.283256465,41.568614494],[-71.283287466,41.568659494],[-71.283348465,41.568703494],[-71.283393465,41.568747494],[-71.283447465,41.568791494],[-71.283508465,41.568821494],[-71.283576466,41.568842493],[-71.283638466,41.568877494],[-71.283683465,41.568894494],[-71.283836465,41.568990494],[-71.283874465,41.569012494],[-71.283943466,41.569056493],[-71.283996465,41.569113494],[-71.284034465,41.569166494],[-71.284080466,41.569273494],[-71.284095465,41.569332494],[-71.284110465,41.569403494],[-71.284156466,41.569457494],[-71.284217466,41.569505494],[-71.284278466,41.569567494],[-71.284309466,41.569620494],[-71.284339466,41.569710494],[-71.284370466,41.569763494],[-71.284423465,41.569830494],[-71.284477466,41.569869494],[-71.284523466,41.569913494],[-71.284547466,41.569945494],[-71.284447466,41.570142494],[-71.284784466,41.570475494],[-71.285126466,41.570876494],[-71.285386466,41.571031494],[-71.285447466,41.571066494],[-71.285728466,41.571294494],[-71.285987466,41.571638494],[-71.286363467,41.571995495],[-71.286725466,41.572582495],[-71.286924467,41.572939494],[-71.286995466,41.572966495],[-71.287267466,41.573069495],[-71.287289467,41.573062494],[-71.287597467,41.572976494],[-71.287608467,41.572961494],[-71.287650467,41.572895495],[-71.287786467,41.573058494],[-71.287834467,41.573117494],[-71.287857467,41.573175494],[-71.287878467,41.573195494],[-71.288238467,41.573190495],[-71.288437467,41.573187495],[-71.288437608,41.573187682],[-71.288475027,41.573139919],[-71.288512353,41.573087433],[-71.288564066,41.573031452],[-71.288618757,41.572995807],[-71.288677067,41.572962158],[-71.288678801,41.572953311],[-71.288673046,41.572924873],[-71.288749903,41.572928422],[-71.28882924,41.572918391],[-71.288906699,41.572896167],[-71.288992258,41.572873911],[-71.289064222,41.572846303],[-71.289137064,41.572819999],[-71.289206296,41.572789686],[-71.289268252,41.57275808],[-71.289337479,41.572729116],[-71.289417498,41.572696674],[-71.289491976,41.572654135],[-71.289563744,41.572611569],[-71.289646357,41.572568268],[-71.289707451,41.572539403],[-71.289769462,41.572509786],[-71.289856579,41.572467134],[-71.289918585,41.572438911],[-71.28998604,41.572411317],[-71.290059793,41.572385723],[-71.290137227,41.572361462],[-71.290214627,41.572337888],[-71.290285748,41.572316406],[-71.290381957,41.572277725],[-71.290446649,41.57224745],[-71.290512277,41.572219874],[-71.290581576,41.57219633],[-71.290651785,41.572174183],[-71.290742625,41.57213826],[-71.290824394,41.572101062],[-71.290910818,41.572074714],[-71.290982029,41.572062722],[-71.291054828,41.572030334],[-71.291141376,41.57201279],[-71.29122873,41.571990514],[-71.291317936,41.571970207],[-71.291398192,41.571958163],[-71.291470219,41.571938695],[-71.291540357,41.571909709],[-71.291612221,41.57187462],[-71.291681204,41.571825986],[-71.291759376,41.571789491],[-71.291852201,41.571770586],[-71.291926179,41.571759902],[-71.292010942,41.571747797],[-71.292099383,41.571737712],[-71.292180548,41.571726972],[-71.292256273,41.571712884],[-71.29233648,41.571696746],[-71.292417632,41.571680609],[-71.292492416,41.571665193],[-71.292561784,41.57164844],[-71.292632977,41.571632354],[-71.292711364,41.5716142],[-71.292788787,41.571592659],[-71.292869864,41.571571079],[-71.29296089,41.57155281],[-71.293051943,41.571535227],[-71.293139375,41.57151702],[-71.29322769,41.571498746],[-71.293312378,41.571481242],[-71.293394384,41.571464421],[-71.293476417,41.571448925],[-71.293564759,41.571431405],[-71.29365039,41.571414521],[-71.29372786,41.571397028],[-71.293802676,41.571380924],[-71.293881058,41.571364096],[-71.29396309,41.571348646],[-71.294043376,41.571336554],[-71.294136173,41.571316252],[-71.29419909,41.571288029],[-71.294280901,41.571255586],[-71.294365406,41.571219077],[-71.294424624,41.571185428],[-71.294471995,41.571142357],[-71.29451116,41.571093943],[-71.294547619,41.571044153],[-71.294574889,41.570982202],[-71.294604963,41.570929106],[-71.294621606,41.570808887],[-71.294639615,41.570728738],[-71.294657599,41.570646531],[-71.294688083,41.570550647],[-71.294749793,41.570345319],[-71.294766791,41.570257004],[-71.294783984,41.570184286],[-71.294804014,41.570119692],[-71.294821377,41.570060582],[-71.294836913,41.570001446],[-71.29485068,41.569943016],[-71.294862622,41.569883896],[-71.294875499,41.5698275],[-71.294896316,41.569754765],[-71.294927181,41.569692157],[-71.294961739,41.569636257],[-71.294990929,41.569583137],[-71.295030832,41.569522512],[-71.295064505,41.569467319],[-71.295100056,41.569415537],[-71.295129272,41.569363766],[-71.295142457,41.56933518],[-71.295189261,41.569287717],[-71.295226065,41.569234542],[-71.295260014,41.569178572],[-71.295284607,41.569124803],[-71.295302551,41.569064733],[-71.295327932,41.569002482],[-71.29535429,41.5689395],[-71.295378682,41.568872352],[-71.295405982,41.568810081],[-71.295433205,41.568742915],[-71.295454001,41.568686327],[-71.295475612,41.568621987],[-71.295500157,41.568563965],[-71.295536758,41.56849741],[-71.295570835,41.568449193],[-71.295604831,41.568397453],[-71.295635079,41.568346439],[-71.295667196,41.568291906],[-71.295697349,41.568232453],[-71.295728496,41.568176501],[-71.295767231,41.568128246],[-71.295814333,41.56807287],[-71.295856895,41.568028121],[-71.295918116,41.567976156],[-71.295978497,41.567929883],[-71.296038925,41.567887796],[-71.296090843,41.567840845],[-71.296143528,41.567781912],[-71.296193186,41.567727112],[-71.29624048,41.56766833],[-71.296286692,41.567615102],[-71.296332033,41.567567499],[-71.296374563,41.567522727],[-71.296430252,41.567477155],[-71.296487975,41.567442838],[-71.296547511,41.567403585],[-71.296602379,41.567367205],[-71.296656259,41.567325197],[-71.296723262,41.567283784],[-71.296775276,41.567244563],[-71.296824435,41.56720257],[-71.296885783,41.56715838],[-71.296901667,41.567152599],[-71.29699802,41.567064423],[-71.297042162,41.567019905],[-71.297079779,41.566968766],[-71.297124246,41.566908126],[-71.297156994,41.566845681],[-71.297193142,41.566777135],[-71.297231059,41.566707839],[-71.297272564,41.566639852],[-71.297305819,41.566590832],[-71.297350915,41.566523446],[-71.297397264,41.566464775],[-71.297450653,41.566403967],[-71.297505728,41.566339709],[-71.297546435,41.566273779],[-71.297583717,41.566212553],[-71.297632324,41.566142406],[-71.297664609,41.566091395],[-71.297695927,41.566038392],[-71.29772644,41.565989413],[-71.297772369,41.565918644],[-71.297798381,41.565867736],[-71.29782347,41.565790686],[-71.297824439,41.565714052],[-71.297815769,41.56564298],[-71.297806436,41.565579363],[-71.297804565,41.56552493],[-71.297793689,41.565468034],[-71.297798092,41.565413543],[-71.297803799,41.565370398],[-71.297823275,41.565364669],[-71.297879957,41.565399851],[-71.297912063,41.565396546],[-71.297970021,41.565364516],[-71.298026842,41.565325806],[-71.298032047,41.565267931],[-71.297972053,41.565240154],[-71.297900741,41.565248239],[-71.297822355,41.56525917],[-71.297763479,41.565263686],[-71.29768636,41.565259091],[-71.297639405,41.565219672],[-71.297680679,41.565196029],[-71.297753893,41.565193276],[-71.297830789,41.565191124],[-71.297907319,41.565179573],[-71.29794688,41.565158693],[-71.297987595,41.565118926],[-71.298045079,41.565072807],[-71.298107119,41.565029944],[-71.298171788,41.564984364],[-71.29823999,41.564938012],[-71.298285897,41.564893451],[-71.298340392,41.56483866],[-71.298394478,41.564797978],[-71.298457517,41.564757129],[-71.298514834,41.564705635],[-71.298575293,41.564642643],[-71.298632933,41.564575004],[-71.298676905,41.564525774],[-71.298727174,41.564478453],[-71.298778333,41.564429076],[-71.298831197,41.564379678],[-71.298883403,41.56433634],[-71.298935776,41.564297736],[-71.299016493,41.564251177],[-71.299110312,41.564221793],[-71.299205873,41.5641904],[-71.299286266,41.564159964],[-71.299358786,41.564135048],[-71.299436005,41.564116773],[-71.299506068,41.564098599],[-71.299577228,41.564060279],[-71.299632886,41.564012853],[-71.299694285,41.563950525],[-71.299738336,41.56390468],[-71.299778714,41.563855489],[-71.299815416,41.563803044],[-71.29984938,41.563749977],[-71.299889646,41.563697469],[-71.299931791,41.563647595],[-71.299972111,41.5635971],[-71.300007928,41.563545363],[-71.300047341,41.563492854],[-71.300086693,41.563440368],[-71.300120685,41.563387964],[-71.300150314,41.563338342],[-71.300180797,41.563288036],[-71.300214931,41.563238994],[-71.300249891,41.563188582],[-71.300288333,41.563134767],[-71.300327573,41.563078896],[-71.300365018,41.563022404],[-71.300403346,41.562965937],[-71.300445351,41.56291206],[-71.300490118,41.562860773],[-71.300534059,41.562810856],[-71.300574406,41.562761047],[-71.300617209,41.562705136],[-71.300623147,41.562694923],[-71.300656142,41.562639865],[-71.300706327,41.562589158],[-71.30075599,41.562549908],[-71.300806554,41.562485137],[-71.30083419,41.562429497],[-71.300865279,41.56237041],[-71.300905514,41.562317216],[-71.300926088,41.562290916],[-71.300925471,41.562290492],[-71.300499471,41.562007492],[-71.300363471,41.561912492],[-71.29987247,41.561480492],[-71.299630471,41.561267492],[-71.295590469,41.558418491],[-71.295550469,41.558390491],[-71.293964468,41.557109491],[-71.293845468,41.557013491],[-71.293716468,41.556909491],[-71.292517467,41.555939491],[-71.291998468,41.555519491],[-71.291502467,41.555117491],[-71.291062467,41.55476249],[-71.290636467,41.554418491],[-71.290060467,41.553999491],[-71.280483463,41.547041489],[-71.276493462,41.544613489],[-71.265786458,41.538097488],[-71.261990457,41.535193488],[-71.260870456,41.534457488],[-71.259915456,41.533931488],[-71.258462456,41.532961487],[-71.257402455,41.532185487],[-71.257263455,41.532129487],[-71.255386454,41.530543487],[-71.249750452,41.525930487],[-71.248341452,41.524668487],[-71.246841451,41.523778486],[-71.246430451,41.523490486],[-71.24381645,41.521801486],[-71.24271545,41.521098486],[-71.24252345,41.520973486],[-71.238615448,41.518428486],[-71.237873448,41.517922486],[-71.235543447,41.516386485],[-71.233335074,41.514949893],[-71.233327589,41.514978567],[-71.233257732,41.514992127],[-71.23321114,41.515001213],[-71.233215035,41.515060523],[-71.233252438,41.515073509],[-71.233289845,41.515078147],[-71.23329169,41.515132947],[-71.233307734,41.515189999],[-71.233231807,41.515199726],[-71.233183087,41.515252899],[-71.233208201,41.515316833],[-71.233258682,41.515361066],[-71.233251391,41.515424925],[-71.23320671,41.515487233],[-71.233148893,41.515525178],[-71.233114451,41.515539574],[-71.233079847,41.515607966],[-71.23307667,41.515662709],[-71.23309376,41.515702314],[-71.233169574,41.515713056],[-71.233195969,41.515687274],[-71.233217167,41.515704819],[-71.233183611,41.515762533],[-71.233166264,41.515815002],[-71.233170147,41.515869762],[-71.233145719,41.51592752],[-71.233172895,41.515978537],[-71.233160578,41.516036324],[-71.233144157,41.5161078],[-71.233147048,41.516167154],[-71.233159963,41.516237897],[-71.233169925,41.516294203],[-71.233176813,41.516365688],[-71.233160473,41.516417427],[-71.233072423,41.516422574],[-71.233024691,41.516471931],[-71.232963831,41.516524322],[-71.232902972,41.516576713],[-71.232852202,41.516632169],[-71.232823691,41.51668388],[-71.232787137,41.516737768],[-71.232778838,41.516802402],[-71.232830372,41.51682761],[-71.23281711,41.51687094],[-71.232760285,41.516918789],[-71.232707538,41.516966602],[-71.232636587,41.517001473],[-71.232562709,41.517000593],[-71.232470602,41.517000447],[-71.232388533,41.517030719],[-71.232335785,41.517078554],[-71.232296123,41.517140874],[-71.232257524,41.517196358],[-71.232193644,41.517235797],[-71.232143927,41.517279065],[-71.232103276,41.517337563],[-71.232098045,41.517396098],[-71.232103918,41.51746232],[-71.23212295,41.517525462],[-71.232143007,41.517583301],[-71.23218946,41.517630544],[-71.23219327,41.517702799],[-71.232193089,41.517768984],[-71.23219088,41.517839715],[-71.232181547,41.517918823],[-71.2321651,41.517996382],[-71.232142607,41.518071618],[-71.232136367,41.518130973],[-71.232137181,41.518199425],[-71.232152219,41.518249636],[-71.232227117,41.5182467],[-71.232262504,41.518262014],[-71.232259353,41.518303081],[-71.232183366,41.518326529],[-71.232158982,41.518358444],[-71.232161837,41.518426122],[-71.232176828,41.518487792],[-71.232214125,41.518541829],[-71.232244298,41.518596649],[-71.232257274,41.5186598],[-71.232282401,41.518720716],[-71.232271162,41.518760231],[-71.23225283,41.518800485],[-71.232216162,41.518881817],[-71.23217853,41.518953266],[-71.232122567,41.519049784],[-71.232093011,41.519125803],[-71.232083717,41.519180555],[-71.232082591,41.519210237],[-71.232110939,41.519213299],[-71.232151269,41.519269676],[-71.232109646,41.519305325],[-71.232072161,41.519318936],[-71.232036656,41.519347029],[-71.232031016,41.519364283],[-71.232015237,41.51941241],[-71.231973368,41.519537113],[-71.231952974,41.519590307],[-71.231748404,41.519639412],[-71.231574175,41.519687832],[-71.23136045,41.519742976],[-71.231186331,41.519757183],[-71.231063952,41.519732586],[-71.231034672,41.519712003],[-71.231029858,41.519625292],[-71.23102996,41.519593366],[-71.23096044,41.519487499],[-71.230948328,41.51947304],[-71.230893665,41.519468384],[-71.230872387,41.519477482],[-71.230819535,41.519557243],[-71.230765579,41.519668195],[-71.230760253,41.519756438],[-71.230801518,41.519844011],[-71.230801153,41.519954289],[-71.230800982,41.520017432],[-71.230800926,41.520031108],[-71.230890969,41.520045727],[-71.230858092,41.520217563],[-71.230843533,41.520352918],[-71.230839323,41.520406904],[-71.23082178,41.520513391],[-71.230787884,41.520681451],[-71.230739128,41.520749055],[-71.23066837,41.520721514],[-71.230641019,41.52071994],[-71.230606547,41.520748035],[-71.230588949,41.520875059],[-71.230581492,41.521007389],[-71.230493878,41.521206518],[-71.230396502,41.521330496],[-71.230381084,41.521350105],[-71.230250217,41.521448779],[-71.230196484,41.521483666],[-71.23014081,41.521487378],[-71.23011552,41.521480503],[-71.230039609,41.521491783],[-71.229944208,41.521579837],[-71.229907659,41.521609482],[-71.229882072,41.521710575],[-71.229751052,41.521867795],[-71.229740837,41.521902007],[-71.229762901,41.521967466],[-71.229798286,41.52198349],[-71.229810132,41.522083939],[-71.229804007,41.522100643],[-71.229824402,41.522143],[-71.229835204,41.522165346],[-71.22986343,41.522190501],[-71.229879384,41.522276483],[-71.229847711,41.522377608],[-71.229814126,41.522440673],[-71.22976319,41.522556183],[-71.229615433,41.522888386],[-71.229587918,41.522955239],[-71.229517566,41.523129319],[-71.229415757,41.523337561],[-71.229399394,41.523393805],[-71.229345228,41.523561039],[-71.229327901,41.52361504],[-71.2292463,41.523822552],[-71.229167786,41.524019436],[-71.229111488,41.524230804],[-71.229100219,41.524269565],[-71.228955061,41.524414629],[-71.228921507,41.524462485],[-71.228851339,41.524577195],[-71.22883581,41.52469583],[-71.228836784,41.524710309],[-71.228913612,41.52473551],[-71.228992684,41.524696863],[-71.229011914,41.52469764],[-71.229012695,41.524772975],[-71.228922224,41.524910484],[-71.228915666,41.525067173],[-71.228990033,41.525252114],[-71.228989497,41.525431618],[-71.228880771,41.52556762],[-71.228924065,41.525650603],[-71.228912574,41.525771511],[-71.228902164,41.525874172],[-71.228832036,41.525971432],[-71.228703282,41.526035119],[-71.228687088,41.526043428],[-71.228730293,41.526147748],[-71.228743398,41.526157635],[-71.228750215,41.526245129],[-71.228766388,41.526256556],[-71.228679881,41.526420695],[-71.228614549,41.526600869],[-71.228574331,41.526844955],[-71.228496097,41.52694446],[-71.228420924,41.527047014],[-71.228383278,41.527112402],[-71.228310011,41.527239293],[-71.22827846,41.527295524],[-71.228171682,41.527474068],[-71.228121456,41.527665713],[-71.22812031,41.527721239],[-71.228077415,41.527848156],[-71.228059047,41.527902886],[-71.228016153,41.528022257],[-71.227985407,41.528162147],[-71.227952464,41.528332495],[-71.227952372,41.528368995],[-71.22797955,41.528412375],[-71.2280472,41.528471814],[-71.228192965,41.528475154],[-71.228386585,41.528381113],[-71.228497045,41.528340986],[-71.228686282,41.528363365],[-71.228849981,41.528445053],[-71.229044011,41.528558716],[-71.229178157,41.528706474],[-71.229296005,41.528916628],[-71.229308036,41.528950869],[-71.229349011,41.529123587],[-71.229349528,41.529291682],[-71.229349185,41.529410375],[-71.229248269,41.529657384],[-71.229157508,41.529870225],[-71.229122052,41.529884618],[-71.228988403,41.529894297],[-71.228939796,41.529894983],[-71.228866814,41.529931357],[-71.228797704,41.530031616],[-71.228695388,41.530052003],[-71.228648738,41.53008693],[-71.228685081,41.530115122],[-71.228760926,41.530136524],[-71.228820638,41.530144235],[-71.22884377,41.530202082],[-71.228829523,41.530224895],[-71.228754689,41.530194325],[-71.228683966,41.530156194],[-71.228617166,41.530147712],[-71.228562367,41.530187948],[-71.228537936,41.530244172],[-71.228499296,41.530299609],[-71.228497193,41.530329312],[-71.228573988,41.530371277],[-71.228650898,41.53037825],[-71.228746078,41.530376119],[-71.228816866,41.530391449],[-71.228775262,41.530427897],[-71.228698266,41.530455914],[-71.22862731,41.530487718],[-71.228564438,41.530522607],[-71.228582548,41.530565988],[-71.228645152,41.53060259],[-71.228736217,41.530616458],[-71.228813156,41.530616594],[-71.2288962,41.530605332],[-71.228959079,41.530568934],[-71.229010755,41.530547695],[-71.229093776,41.530541762],[-71.229157678,41.530500792],[-71.229214506,41.530448417],[-71.229266289,41.530401313],[-71.22933723,41.530365711],[-71.229423356,41.530337716],[-71.229514485,41.530328736],[-71.229613709,41.530327346],[-71.229687626,41.530322145],[-71.229762556,41.530307845],[-71.229827426,41.53028284],[-71.229893399,41.530226667],[-71.229948221,41.530165916],[-71.230006105,41.530108191],[-71.230078121,41.530055097],[-71.230153159,41.530007292],[-71.230248442,41.529965572],[-71.230326446,41.529943663],[-71.23036033,41.529933771],[-71.230406495,41.529920249],[-71.230466313,41.529887617],[-71.230542325,41.529854268],[-71.23064052,41.529851387],[-71.230722511,41.529851511],[-71.23081564,41.529851706],[-71.230889502,41.529852542],[-71.230962374,41.529857241],[-71.231046331,41.529874887],[-71.231125222,41.529903178],[-71.231187899,41.529929877],[-71.231267763,41.529965763],[-71.231341524,41.530013047],[-71.231402144,41.530058791],[-71.231467843,41.530083255],[-71.231539686,41.530094012],[-71.231606382,41.53012758],[-71.231668028,41.530167998],[-71.231736694,41.530218312],[-71.231800329,41.530278516],[-71.231868976,41.530333381],[-71.231957976,41.530360918],[-71.232047997,41.530377045],[-71.232104574,41.530414386],[-71.232156035,41.530474562],[-71.232210527,41.530537787],[-71.232269051,41.530604817],[-71.232311423,41.530655092],[-71.232358828,41.530702337],[-71.232413372,41.530745802],[-71.232465876,41.530789217],[-71.232531502,41.530853977],[-71.232591034,41.530920278],[-71.232630375,41.530967504],[-71.232676777,41.531014747],[-71.232726253,41.531061951],[-71.232778748,41.531107675],[-71.232836326,41.531153434],[-71.232895913,41.531199152],[-71.232956535,41.531244895],[-71.233019166,41.53129062],[-71.233080737,41.531334833],[-71.233138341,41.531374486],[-71.233188856,41.531413368],[-71.233240345,41.531452274],[-71.233306064,41.531487349],[-71.233381884,41.531515609],[-71.23345877,41.531543871],[-71.233529529,41.531574406],[-71.233595214,41.531610281],[-71.233655831,41.531649941],[-71.23372049,41.531691119],[-71.233792244,41.531731559],[-71.233865011,41.531769714],[-71.233943888,41.531802532],[-71.234025814,41.53183387],[-71.234108687,41.53186441],[-71.234186559,41.531897271],[-71.234251256,41.531929301],[-71.23433919,41.531972796],[-71.234428164,41.532014785],[-71.234510019,41.532063595],[-71.234586789,41.532113171],[-71.2346474,41.532161932],[-71.2346958,41.532219813],[-71.234739172,41.532279238],[-71.234763334,41.532332511],[-71.234777295,41.53240177],[-71.234787218,41.532468688],[-71.23481437,41.532534913],[-71.234856695,41.532597353],[-71.234914214,41.532658297],[-71.234982885,41.532716224],[-71.235060699,41.532763515],[-71.235139509,41.532813073],[-71.235198051,41.53287706],[-71.235240327,41.53295169],[-71.235271534,41.533023985],[-71.235293576,41.533097082],[-71.235300505,41.533151825],[-71.235308429,41.533216496],[-71.235323392,41.533294105],[-71.235343407,41.533371703],[-71.235366466,41.53344933],[-71.235392556,41.533522414],[-71.235415677,41.53358481],[-71.235434744,41.533641136],[-71.235461891,41.533716463],[-71.235504208,41.533781191],[-71.23555773,41.533837574],[-71.23561217,41.533900042],[-71.235675781,41.533960221],[-71.235740421,41.534014366],[-71.235772625,41.534081311],[-71.235778544,41.53413763],[-71.235779377,41.534194692],[-71.235790342,41.534252486],[-71.23581344,41.534313396],[-71.235832513,41.534375783],[-71.235844507,41.534435135],[-71.235862547,41.534489926],[-71.235895757,41.534563781],[-71.235927983,41.53462542],[-71.23597035,41.534677958],[-71.235987354,41.534740386],[-71.235995283,41.534796664],[-71.236042727,41.534850745],[-71.236112502,41.534877503],[-71.236153884,41.534925465],[-71.236156739,41.53497949],[-71.236157612,41.535034265],[-71.236195919,41.53509745],[-71.236234206,41.535150756],[-71.236279593,41.535209407],[-71.236282377,41.535213484],[-71.236324949,41.535275651],[-71.236366273,41.535345681],[-71.236409599,41.535417272],[-71.236453982,41.535483513],[-71.236506403,41.535541402],[-71.236571067,41.535597787],[-71.236624567,41.535652637],[-71.236673997,41.535712806],[-71.236723411,41.535776795],[-71.236769819,41.535839244],[-71.236799978,41.535915355],[-71.236812935,41.535970158],[-71.236825954,41.536024938],[-71.236838969,41.536080496],[-71.236857046,41.536133755],[-71.236861941,41.536187762],[-71.236861804,41.536244044],[-71.236861612,41.536306433],[-71.236861444,41.53637033],[-71.236861283,41.536425058],[-71.236858063,41.536491235],[-71.236843656,41.536561207],[-71.236828244,41.536638769],[-71.236821015,41.536695035],[-71.236814773,41.536755877],[-71.236806518,41.536817469],[-71.236795207,41.536874481],[-71.236778837,41.536933059],[-71.236754393,41.536993859],[-71.236752899,41.537069532],[-71.236724182,41.537132999],[-71.236702568,41.53720117],[-71.236693386,41.537258666],[-71.236685196,41.537319275],[-71.236669733,41.537386729],[-71.236649158,41.537454079],[-71.236628619,41.537519943],[-71.236600015,41.537578035],[-71.236570369,41.537637657],[-71.236541755,41.537698059],[-71.236511994,41.53776381],[-71.236488619,41.537815854],[-71.236455774,41.537883862],[-71.236430296,41.537936587],[-71.2364038,41.537992398],[-71.236373199,41.538047421],[-71.236343676,41.538099359],[-71.236307833,41.538163541],[-71.23627107,41.538221569],[-71.236237505,41.53827192],[-71.236238427,41.538337238],[-71.236261885,41.538399658],[-71.236256851,41.538454877],[-71.236223169,41.538511402],[-71.236184463,41.538560941],[-71.236166152,41.538617616],[-71.236140511,41.538680335],[-71.236118094,41.538736223],[-71.236101792,41.53879288],[-71.236098684,41.538853523],[-71.236092646,41.538908786],[-71.236084412,41.538972459],[-71.236081261,41.539036144],[-71.236079228,41.53909448],[-71.236076187,41.539153592],[-71.236072032,41.539217297],[-71.236071001,41.539238793],[-71.236068805,41.539284847],[-71.236067644,41.539353225],[-71.236066569,41.539415429],[-71.236065452,41.539480697],[-71.236064257,41.539549806],[-71.236058942,41.539621948],[-71.236050708,41.539685622],[-71.236041558,41.539742341],[-71.236032369,41.539801392],[-71.236014922,41.539862666],[-71.236007577,41.539887143],[-71.235995419,41.539927777],[-71.235971927,41.53998595],[-71.235945357,41.540044801],[-71.235913594,41.540108261],[-71.235879865,41.540168605],[-71.235847097,41.540232039],[-71.235818338,41.540297816],[-71.235796799,41.540362099],[-71.235773224,41.540425623],[-71.235750687,41.540488371],[-71.235727074,41.540553473],[-71.23570661,41.540615472],[-71.235687202,41.540672098],[-71.235673976,41.540728053],[-71.235676098,41.540782603],[-71.235664872,41.540840895],[-71.23564844,41.540906768],[-71.235637018,41.540975762],[-71.235628624,41.541048629],[-71.235620154,41.541125361],[-71.235608649,41.541199752],[-71.235592113,41.541268735],[-71.235574573,41.54133767],[-71.235554996,41.541405846],[-71.235534292,41.54148168],[-71.235511678,41.541548271],[-71.235488025,41.541615636],[-71.235461292,41.541684504],[-71.235433484,41.541755657],[-71.235403756,41.541819898],[-71.235372989,41.541884892],[-71.23534222,41.54195064],[-71.235314617,41.542008735],[-71.235299388,41.542063107],[-71.23528716,41.542120596],[-71.235255913,41.542154074],[-71.235225031,41.542165301],[-71.235210044,41.542205128],[-71.235226947,41.542232908],[-71.235297353,41.542241281],[-71.235338269,41.542300036],[-71.235378386,41.542345753],[-71.235413316,41.542394478],[-71.23547082,41.542438817],[-71.235528241,41.542488554],[-71.23557448,41.542533508],[-71.235614591,41.54258078],[-71.235649485,41.542631014],[-71.235671939,41.542693454],[-71.235693362,41.542755092],[-71.235717979,41.542809876],[-71.235745704,41.542863912],[-71.235772293,41.542920233],[-71.235805101,41.542974327],[-71.235862759,41.543010959],[-71.235925614,41.543042321],[-71.235984277,41.543078956],[-71.236039739,41.543124045],[-71.236087969,41.543173692],[-71.236126933,41.543226267],[-71.23617117,41.543269707],[-71.236207938,41.543330739],[-71.236211019,41.543389156],[-71.236198715,41.543450487],[-71.236179135,41.543519418],[-71.236158517,41.5435891],[-71.236149208,41.543655081],[-71.236147248,41.54371033],[-71.236142134,41.543770214],[-71.236144134,41.543832424],[-71.236165441,41.543900236],[-71.236192138,41.543952738],[-71.236230979,41.544012998],[-71.236261673,41.544070883],[-71.236289444,41.544121077],[-71.236324171,41.544182859],[-71.236342547,41.544245244],[-71.236360866,41.544306875],[-71.236366896,41.54437376],[-71.2363649,41.544430586],[-71.236358748,41.5444912],[-71.236348517,41.544551804],[-71.236332011,41.544620765],[-71.236314394,41.544693542],[-71.236295929,41.544757878],[-71.236280467,41.54482453],[-71.236267162,41.544885105],[-71.236253869,41.544942546],[-71.236242682,41.544998506],[-71.236227334,41.545059807],[-71.236217026,41.54512423],[-71.236216071,41.545179527],[-71.236249919,41.545232846],[-71.236244918,41.545287356],[-71.236242769,41.545351798],[-71.236231337,41.545423125],[-71.236221152,41.545479888],[-71.236207962,41.545534265],[-71.236189552,41.545592472],[-71.236168091,41.545652181],[-71.236149714,41.545709611],[-71.236138518,41.545767857],[-71.236123016,41.545836842],[-71.236104554,41.545900401],[-71.236085255,41.545952431],[-71.236059767,41.546006711],[-71.236036306,41.546064083],[-71.236022038,41.546121568],[-71.236003734,41.54617591],[-71.235987351,41.546237209],[-71.235966787,41.546300763],[-71.235947319,41.546364319],[-71.235930905,41.546425618],[-71.235913553,41.546485314],[-71.235893017,41.546549645],[-71.23586532,41.546615424],[-71.235832476,41.546681922],[-71.235799665,41.546747666],[-71.235764821,41.546811873],[-71.235762673,41.546815939],[-71.23572994,41.546877566],[-71.235692174,41.546934059],[-71.235656362,41.546996708],[-71.235624607,41.547057034],[-71.235599155,41.547109782],[-71.235566341,41.547176281],[-71.235540926,41.547227519],[-71.235520548,41.547282611],[-71.235501168,41.547339283],[-71.23547771,41.547395855],[-71.235455166,41.547459404],[-71.235429518,41.547522923],[-71.235399858,41.547584832],[-71.235369135,41.54764596],[-71.235340482,41.547707117],[-71.235311783,41.547772115],[-71.235277903,41.547838611],[-71.235239897,41.547908917],[-71.235208126,41.54797313],[-71.235181396,41.548040466],[-71.235148467,41.548112316],[-71.235111499,41.548181846],[-71.235077572,41.548252184],[-71.2350468,41.548317932],[-71.235013917,41.548386008],[-71.23498006,41.548454013],[-71.234941058,41.548521984],[-71.234902176,41.548583071],[-71.234866415,41.5486403],[-71.234837887,41.54869304],[-71.234815538,41.548745795],[-71.23480216,41.548808656],[-71.234794047,41.548864668],[-71.234790928,41.548927599],[-71.234805274,41.548985355],[-71.234822775,41.549038499],[-71.234850511,41.549090249],[-71.234877605,41.549120453],[-71.234897704,41.549081507],[-71.234907257,41.549060855],[-71.234943222,41.549110359],[-71.234976005,41.549163675],[-71.235001496,41.54922841],[-71.23500453,41.549290668],[-71.234997185,41.549359718],[-71.234980517,41.549437894],[-71.234949624,41.549510526],[-71.234909504,41.549583914],[-71.234902564,41.54959858],[-71.234874495,41.549658045],[-71.23484871,41.54973229],[-71.234824021,41.549798898],[-71.234795248,41.549866961],[-71.234764314,41.549941948],[-71.234745013,41.549993978],[-71.234714046,41.550069697],[-71.234678198,41.5501331],[-71.234640313,41.550195722],[-71.234598345,41.550259066],[-71.234552347,41.550317758],[-71.234518574,41.550379634],[-71.234505226,41.550442518],[-71.234478455,41.550512163],[-71.234446596,41.550582459],[-71.234408643,41.550646613],[-71.234371789,41.550710014],[-71.234339018,41.550772693],[-71.234304093,41.550840718],[-71.234274234,41.550913375],[-71.234245379,41.550986057],[-71.234220717,41.55105342],[-71.234209249,41.551125479],[-71.234215044,41.551204667],[-71.234222236,41.551262316],[-71.23423216,41.551336917],[-71.234238032,41.551412241],[-71.234247897,41.551493748],[-71.234245862,41.551552107],[-71.23424179,41.551609684],[-71.234231271,41.55168792],[-71.234222121,41.551743884],[-71.234208852,41.551802125],[-71.234191507,41.551859557],[-71.234175239,41.551913926],[-71.234153505,41.551987448],[-71.234125568,41.552066284],[-71.234105181,41.552122931],[-71.234083726,41.55218033],[-71.234062384,41.552232355],[-71.234034483,41.552309659],[-71.23401718,41.552364049],[-71.233998827,41.552422233],[-71.233981442,41.552481928],[-71.233966182,41.552535545],[-71.233944557,41.55260447],[-71.233928019,41.552672675],[-71.233917818,41.552732502],[-71.233922937,41.552790923],[-71.233933664,41.552825636],[-71.233937448,41.552837492],[-71.233937337,41.552837521],[-71.23393745,41.552837885],[-71.233864545,41.552857156],[-71.233793646,41.552877232],[-71.23376244,41.552906867],[-71.233776611,41.552925446],[-71.233785448,41.552936492],[-71.233861448,41.552934492],[-71.233944449,41.552918492],[-71.234015448,41.552901492],[-71.234059448,41.552912492],[-71.234059825,41.552912798],[-71.234059899,41.552912815],[-71.234124443,41.552964902],[-71.23414467,41.552980501],[-71.234180449,41.553007492],[-71.234199424,41.55303018],[-71.234227071,41.553062656],[-71.234243877,41.553107807],[-71.234251448,41.553127492],[-71.2342635,41.553180521],[-71.234266686,41.553194386],[-71.234283995,41.553258301],[-71.234311707,41.553314008],[-71.234316449,41.553323492],[-71.234357449,41.553385492],[-71.234400448,41.553443492],[-71.234443448,41.553495492],[-71.234496448,41.553544492],[-71.234561448,41.553589493],[-71.234628449,41.553629493],[-71.234691448,41.553668493],[-71.234734247,41.553698299],[-71.234747673,41.553707526],[-71.234792928,41.553749101],[-71.234794448,41.553750492],[-71.234794991,41.553750996],[-71.23481382,41.553784956],[-71.234818293,41.553813389],[-71.234874449,41.553806492],[-71.234942449,41.553775492],[-71.235007448,41.553747492],[-71.235087449,41.553759492],[-71.235334448,41.553854492],[-71.23547526,41.553917487],[-71.235487302,41.55392281],[-71.235544242,41.553949524],[-71.235548449,41.553951492],[-71.235613449,41.553980493],[-71.235765449,41.554041492],[-71.235839449,41.554072493],[-71.235974449,41.554125492],[-71.236061449,41.554165492],[-71.236150449,41.554208493],[-71.236235449,41.554246492],[-71.23630745,41.554280492],[-71.23630823,41.554280929],[-71.236308339,41.55428099],[-71.236382449,41.554322492],[-71.23638283,41.554322934],[-71.236383285,41.55432319],[-71.236427411,41.554373536],[-71.236387684,41.554424627],[-71.23633577,41.554470202],[-71.236317033,41.554508504],[-71.23636445,41.554509492],[-71.236435449,41.554473492],[-71.236492449,41.554437492],[-71.236546449,41.554398492],[-71.236606449,41.554351493],[-71.236664449,41.554322492],[-71.236740449,41.554345493],[-71.236803449,41.554383492],[-71.23687045,41.554422493],[-71.236992981,41.554496856],[-71.237016051,41.554510593],[-71.23703399,41.554522291],[-71.23708145,41.554552492],[-71.237138128,41.554592716],[-71.237144428,41.554597105],[-71.237164038,41.554611663],[-71.23720045,41.554638493],[-71.237200789,41.554638945],[-71.237200979,41.554639086],[-71.237213453,41.55465583],[-71.237245449,41.554698493],[-71.237245794,41.554699245],[-71.237245947,41.55469945],[-71.237247788,41.554703457],[-71.237273562,41.554759615],[-71.237302099,41.554825179],[-71.237323471,41.554865273],[-71.237328449,41.554874493],[-71.237328642,41.554874974],[-71.237328841,41.554875348],[-71.237355341,41.55494013],[-71.237348997,41.555010737],[-71.237338811,41.555067476],[-71.237356077,41.555134456],[-71.237384849,41.555185431],[-71.23741545,41.555239493],[-71.237415522,41.555240059],[-71.237415629,41.55524025],[-71.23742378,41.55530252],[-71.237421671,41.55536472],[-71.237413366,41.555430704],[-71.237412329,41.555491375],[-71.237415325,41.55555592],[-71.2374234,41.555622032],[-71.237438752,41.555680568],[-71.237461179,41.555743785],[-71.237486642,41.555809319],[-71.237507185,41.555864025],[-71.237546158,41.555916622],[-71.237584931,41.555980746],[-71.237592071,41.555999141],[-71.237627022,41.556084657],[-71.237632022,41.556096437],[-71.237641928,41.556116798],[-71.23766145,41.556156493],[-71.237668843,41.556170586],[-71.237694375,41.556217606],[-71.237726229,41.556268587],[-71.237768433,41.556312799],[-71.237761362,41.556367258],[-71.237752248,41.556422468],[-71.237755319,41.556461285],[-71.237755499,41.556463489],[-71.23791445,41.556451493],[-71.23795345,41.556451493],[-71.23799145,41.556445493],[-71.23805245,41.556413493],[-71.23812045,41.556380492],[-71.23820545,41.556365493],[-71.23838045,41.556379493],[-71.23844945,41.556369493],[-71.23852545,41.556372493],[-71.23860145,41.556384492],[-71.23882245,41.556407493],[-71.23892245,41.556396493],[-71.238998451,41.556372493],[-71.23907445,41.556375493],[-71.23914345,41.556387493],[-71.23922745,41.556403492],[-71.23930345,41.556424493],[-71.23945645,41.556471493],[-71.239540451,41.556478492],[-71.23961645,41.556459492],[-71.239677451,41.556421492],[-71.23974645,41.556371493],[-71.239799451,41.556361492],[-71.23986045,41.556395493],[-71.239913451,41.556444493],[-71.239974451,41.556488493],[-71.240051451,41.556531493],[-71.24013545,41.556566493],[-71.240203451,41.556582493],[-71.240287451,41.556594493],[-71.240379451,41.556601493],[-71.24046345,41.556609493],[-71.240554451,41.556612493],[-71.240646451,41.556605493],[-71.240745451,41.556594493],[-71.240821451,41.556606493],[-71.240890451,41.556632493],[-71.240974451,41.556644493],[-71.241058451,41.556642493],[-71.241149451,41.556649493],[-71.241248451,41.556652493],[-71.241340451,41.556650493],[-71.241432451,41.556657492],[-71.241523451,41.556669493],[-71.241607451,41.556699493],[-71.241874451,41.556833492],[-71.241935451,41.556868492],[-71.242004451,41.556903493],[-71.242065451,41.556942493],[-71.242118452,41.557004492],[-71.242133451,41.557058493],[-71.242172451,41.557111493],[-71.242218451,41.557155493],[-71.242286451,41.557181492],[-71.242363451,41.557198493],[-71.242439451,41.557205493],[-71.242523451,41.557208493],[-71.242622452,41.557224493],[-71.242698452,41.557254493],[-71.242782452,41.557275493],[-71.242866451,41.557305493],[-71.242950452,41.557339493],[-71.243026451,41.557374493],[-71.243095452,41.557404493],[-71.243171452,41.557416492],[-71.243255451,41.557423493],[-71.243362452,41.557426493],[-71.243461452,41.557433492],[-71.243553452,41.557436492],[-71.243636452,41.557430493],[-71.243713452,41.557401493],[-71.243758452,41.557360493],[-71.243850452,41.557268493],[-71.243896451,41.557213493],[-71.243965452,41.557166493],[-71.244033451,41.557152493],[-71.244109452,41.557173493],[-71.244171452,41.557207493],[-71.244239452,41.557238492],[-71.244300452,41.557218493],[-71.244362452,41.557181492],[-71.244423452,41.557189493],[-71.245162453,41.557377492],[-71.255401455,41.558055493],[-71.254669455,41.560028493],[-71.254272455,41.561045493],[-71.253944455,41.561896494],[-71.253775455,41.562338493],[-71.253669455,41.562615494],[-71.253628586,41.562719317],[-71.25497761,41.562981446],[-71.254949917,41.563089701],[-71.255708271,41.563235232],[-71.255732855,41.563136899],[-71.256758311,41.563329859],[-71.256724643,41.563490934],[-71.257193281,41.563491905],[-71.256872054,41.565686958],[-71.256390212,41.565639368],[-71.256271722,41.566629888],[-71.256461267,41.566668495],[-71.260276458,41.566286494],[-71.267180742,41.56718008],[-71.275077463,41.567304493],[-71.275085462,41.567344494],[-71.275127736,41.567385848],[-71.276908464,41.570267494]]]]}}"}, +{"type": "precinct", "typeId": 2801, "areaId": 25881, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":220,\"NAME\":\"2801\",\"SHAPE_Length\":0.028905072519038,\"SHAPE_Area\":-3.2074405930452e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.414928522,41.836487542],[-71.415021523,41.836624542],[-71.415047523,41.836599542],[-71.415112523,41.836535542],[-71.415268523,41.836384541],[-71.415443523,41.836190541],[-71.415512523,41.836113541],[-71.415703523,41.835850542],[-71.415863523,41.835598542],[-71.416008523,41.835328542],[-71.416168523,41.834961541],[-71.416220523,41.834864541],[-71.416283523,41.834744542],[-71.416319523,41.834753541],[-71.416367524,41.834771541],[-71.416413523,41.834646542],[-71.416679524,41.834587542],[-71.416718524,41.834584542],[-71.417099523,41.834526542],[-71.417732524,41.834427542],[-71.418000524,41.834387542],[-71.419098524,41.834221541],[-71.419662525,41.834134541],[-71.419815524,41.834107541],[-71.420204525,41.834050541],[-71.420586524,41.833996541],[-71.421890525,41.833790542],[-71.421974525,41.833775541],[-71.421661525,41.833653542],[-71.421150524,41.833443541],[-71.420685524,41.833268541],[-71.420555525,41.833210541],[-71.419991524,41.832981541],[-71.419197524,41.832672541],[-71.419136524,41.832650541],[-71.418282523,41.832310541],[-71.418152524,41.832264541],[-71.418015523,41.832215541],[-71.417450523,41.832020541],[-71.417224524,41.831962541],[-71.417196523,41.831957541],[-71.416878523,41.831902541],[-71.417183523,41.831341541],[-71.417244524,41.831196541],[-71.417267523,41.831097541],[-71.417274523,41.830971541],[-71.417351523,41.830239541],[-71.417397523,41.829823541],[-71.417427523,41.829335541],[-71.416412523,41.829262541],[-71.415794523,41.829243541],[-71.415718523,41.829258541],[-71.415588522,41.82931254],[-71.415489523,41.82925554],[-71.415291523,41.829182541],[-71.415054522,41.82917454],[-71.414658522,41.82915554],[-71.414459522,41.82915254],[-71.414337522,41.829163541],[-71.414185522,41.82919354],[-71.414047522,41.82925154],[-71.413902522,41.82934654],[-71.413628522,41.82956054],[-71.413338522,41.829804541],[-71.413101522,41.830014541],[-71.412979522,41.830155541],[-71.412880521,41.830315541],[-71.412796522,41.830487541],[-71.412750522,41.830628541],[-71.412712522,41.83080754],[-71.412704521,41.830964541],[-71.412720522,41.831150541],[-71.412758522,41.831375541],[-71.412804522,41.831528541],[-71.412470521,41.831495541],[-71.412418522,41.831490541],[-71.412391521,41.831487541],[-71.412346522,41.831482541],[-71.412290522,41.831476541],[-71.412331521,41.831608541],[-71.412458522,41.832084541],[-71.412650522,41.832618542],[-71.412733522,41.832827541],[-71.412890522,41.833153541],[-71.412998522,41.833393542],[-71.413196522,41.833766542],[-71.413393522,41.834105541],[-71.413537522,41.834329542],[-71.413766522,41.834704542],[-71.413841522,41.834819542],[-71.414867522,41.836398542],[-71.414928522,41.836487542]]]]}}"}, +{"type": "precinct", "typeId": 2802, "areaId": 25886, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":225,\"NAME\":\"2802\",\"SHAPE_Length\":0.02370741036319,\"SHAPE_Area\":-3.2957128984061e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.395309515,41.82340754],[-71.395409515,41.82394454],[-71.395424515,41.82429954],[-71.394058515,41.82431454],[-71.393951515,41.82511654],[-71.393890515,41.825573541],[-71.393860516,41.825867541],[-71.393858515,41.825886541],[-71.393814515,41.826275541],[-71.393837515,41.826741541],[-71.393852515,41.827000541],[-71.393883515,41.827633541],[-71.393936516,41.829022541],[-71.394821515,41.828869541],[-71.395477516,41.828759541],[-71.395638516,41.828732541],[-71.397507517,41.82840854],[-71.398773517,41.828286541],[-71.399445517,41.828225541],[-71.399467517,41.828217541],[-71.400650517,41.828106541],[-71.400589518,41.827694541],[-71.400581518,41.827637541],[-71.400536517,41.827290541],[-71.400500517,41.826901541],[-71.400452518,41.826374541],[-71.400368517,41.82554354],[-71.400315518,41.82512054],[-71.400269517,41.82476854],[-71.400146517,41.82391854],[-71.400121518,41.823689539],[-71.400059517,41.82314154],[-71.400040517,41.82296454],[-71.398697517,41.82306354],[-71.397018516,41.82319354],[-71.396173516,41.82330254],[-71.395309515,41.82340754]]]]}}"}, +{"type": "precinct", "typeId": 2803, "areaId": 25889, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":228,\"NAME\":\"2803\",\"SHAPE_Length\":0.048902802041281,\"SHAPE_Area\":-0.00012850122997142},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.390968515,41.829590541],[-71.391182515,41.830227541],[-71.391251514,41.830414542],[-71.391289514,41.830536541],[-71.391495515,41.831139541],[-71.391655515,41.831631541],[-71.391808515,41.832043542],[-71.392021515,41.832627542],[-71.392031515,41.832644542],[-71.392235515,41.833252542],[-71.392448515,41.833863542],[-71.392807516,41.834916543],[-71.393044515,41.835534542],[-71.393219515,41.836110543],[-71.393379515,41.836415543],[-71.394142516,41.836155542],[-71.395081516,41.835820542],[-71.395561516,41.835637543],[-71.395805517,41.836041542],[-71.396843517,41.835987543],[-71.398009517,41.835924542],[-71.398033517,41.835919542],[-71.398941517,41.835865542],[-71.399895518,41.835804542],[-71.401566518,41.835717542],[-71.402138518,41.835701542],[-71.404106519,41.835671542],[-71.405441519,41.835614542],[-71.40623052,41.835513542],[-71.40648752,41.835480542],[-71.40747652,41.835354542],[-71.40750852,41.835350542],[-71.40775252,41.835319542],[-71.40845552,41.835232542],[-71.408989521,41.835171542],[-71.40935552,41.835137541],[-71.409599521,41.835114542],[-71.409813521,41.835099541],[-71.409828521,41.834961541],[-71.409828521,41.834801542],[-71.409821521,41.834626542],[-71.409836521,41.833920542],[-71.409828521,41.833630542],[-71.409821521,41.833153541],[-71.409798521,41.833004542],[-71.409668521,41.832631541],[-71.409470521,41.832070542],[-71.40928952,41.831581541],[-71.409073521,41.830998541],[-71.408954521,41.830681541],[-71.408859521,41.830429541],[-71.408836521,41.830349541],[-71.40867652,41.829869541],[-71.40849352,41.829323541],[-71.40847752,41.829284541],[-71.40837952,41.829049541],[-71.40819552,41.828614541],[-71.40807352,41.828320541],[-71.40791552,41.828028541],[-71.40775352,41.82772954],[-71.40764652,41.827523541],[-71.40668552,41.827603541],[-71.405876519,41.82766854],[-71.405663519,41.827679541],[-71.405585519,41.827684541],[-71.404808519,41.82772954],[-71.404236519,41.827782541],[-71.403183519,41.82786654],[-71.402374518,41.82796154],[-71.400650517,41.828106541],[-71.399467517,41.828217541],[-71.399445517,41.828225541],[-71.398773517,41.828286541],[-71.397507517,41.82840854],[-71.395638516,41.828732541],[-71.395477516,41.828759541],[-71.394821515,41.828869541],[-71.393936516,41.829022541],[-71.393127515,41.829182541],[-71.392166514,41.829377541],[-71.391663514,41.829464541],[-71.390968515,41.829590541]]]]}}"}, +{"type": "precinct", "typeId": 2804, "areaId": 25888, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":227,\"NAME\":\"2804\",\"SHAPE_Length\":0.025198619447438,\"SHAPE_Area\":-3.5613898463517e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.400040517,41.82296454],[-71.400059517,41.82314154],[-71.400121518,41.823689539],[-71.400146517,41.82391854],[-71.400269517,41.82476854],[-71.400315518,41.82512054],[-71.400368517,41.82554354],[-71.400452518,41.826374541],[-71.400500517,41.826901541],[-71.400536517,41.827290541],[-71.400581518,41.827637541],[-71.400589518,41.827694541],[-71.400650517,41.828106541],[-71.402374518,41.82796154],[-71.403183519,41.82786654],[-71.404236519,41.827782541],[-71.404808519,41.82772954],[-71.405585519,41.827684541],[-71.405663519,41.827679541],[-71.405876519,41.82766854],[-71.40668552,41.827603541],[-71.40764652,41.827523541],[-71.40775352,41.82772954],[-71.40808952,41.82767154],[-71.40851652,41.82762954],[-71.40905852,41.82749654],[-71.40873052,41.826943541],[-71.40827852,41.82621554],[-71.40819752,41.82608454],[-71.40815052,41.826008541],[-71.40783752,41.82565054],[-71.40781452,41.82561554],[-71.40731852,41.82497454],[-71.40712052,41.82471954],[-71.40686852,41.82431854],[-71.406860519,41.824295539],[-71.40673152,41.82408654],[-71.40665452,41.82399054],[-71.406433519,41.82378054],[-71.406166519,41.82350654],[-71.405869519,41.823201539],[-71.405609519,41.822933539],[-71.405357519,41.82267454],[-71.403908518,41.822831539],[-71.403030518,41.822850539],[-71.402634518,41.822850539],[-71.402023518,41.822850539],[-71.401512517,41.82285754],[-71.401350518,41.82286854],[-71.400444517,41.822930539],[-71.400040517,41.82296454]]]]}}"}, +{"type": "precinct", "typeId": 2805, "areaId": 25887, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":226,\"NAME\":\"2805\",\"SHAPE_Length\":0.052161058292029,\"SHAPE_Area\":-0.00011346333607062},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.373587509,41.832494542],[-71.373589335,41.832495977],[-71.373588678,41.832493566],[-71.373587509,41.832494542]]],[[[-71.383812513,41.839135543],[-71.383987513,41.839814544],[-71.385259513,41.839646543],[-71.385284513,41.839646543],[-71.385750513,41.839581544],[-71.386688513,41.839451543],[-71.388496514,41.839196543],[-71.389313515,41.839089543],[-71.389694514,41.839032543],[-71.390526515,41.838910543],[-71.390839515,41.838990543],[-71.391182515,41.839028543],[-71.391266515,41.839032543],[-71.391647515,41.839043543],[-71.391747515,41.839051543],[-71.391968516,41.839051543],[-71.392334516,41.839009543],[-71.392159515,41.838372543],[-71.393158516,41.838349543],[-71.393936516,41.838246543],[-71.393822516,41.838005543],[-71.393692516,41.837471543],[-71.393654516,41.837155543],[-71.393593515,41.836945543],[-71.393517516,41.836731543],[-71.393379515,41.836415543],[-71.393219515,41.836110543],[-71.393044515,41.835534542],[-71.392807516,41.834916543],[-71.392448515,41.833863542],[-71.392235515,41.833252542],[-71.392031515,41.832644542],[-71.392021515,41.832627542],[-71.391808515,41.832043542],[-71.391655515,41.831631541],[-71.391495515,41.831139541],[-71.391289514,41.830536541],[-71.391251514,41.830414542],[-71.391182515,41.830227541],[-71.390968515,41.829590541],[-71.390928515,41.829602541],[-71.390152514,41.829747542],[-71.389320514,41.829903542],[-71.388245514,41.830094541],[-71.387901513,41.830162542],[-71.385674512,41.830605542],[-71.385582513,41.830620542],[-71.384590512,41.830807541],[-71.383278512,41.831078542],[-71.382408512,41.831242542],[-71.380943511,41.831524542],[-71.380211512,41.831673542],[-71.380104511,41.831688542],[-71.380005511,41.831707542],[-71.37960851,41.831765542],[-71.378960511,41.831833542],[-71.37879251,41.831845542],[-71.37865451,41.831841542],[-71.378860511,41.831566542],[-71.379280511,41.830983542],[-71.379494511,41.830674542],[-71.379616511,41.830468542],[-71.379684511,41.830319541],[-71.379738511,41.830132542],[-71.379807511,41.829483541],[-71.379817511,41.829402542],[-71.379730511,41.829403541],[-71.37960851,41.829403541],[-71.379607051,41.829403494],[-71.379605073,41.829417426],[-71.379601484,41.829456048],[-71.379599786,41.82948111],[-71.379598842,41.82949531],[-71.379597058,41.829533911],[-71.379595304,41.829572534],[-71.379595383,41.829611754],[-71.379595403,41.829650333],[-71.379594566,41.829688912],[-71.379593669,41.829726804],[-71.379590999,41.829764763],[-71.379589216,41.829802655],[-71.379587433,41.829840592],[-71.379586508,41.829877135],[-71.379585557,41.829911666],[-71.379585464,41.829944848],[-71.37958354,41.829975993],[-71.379579781,41.830007823],[-71.379575164,41.830040383],[-71.379571463,41.830073584],[-71.379567761,41.830107494],[-71.379566752,41.830139967],[-71.379566633,41.830171091],[-71.379566453,41.830201552],[-71.37956536,41.830229976],[-71.379561517,41.830257781],[-71.37955498,41.830286954],[-71.379546668,41.830316858],[-71.37953747,41.830346783],[-71.379526436,41.830376684],[-71.379512711,41.830407313],[-71.379497211,41.83043865],[-71.379479018,41.830471402],[-71.379460824,41.830504153],[-71.379441743,41.830537544],[-71.379421716,41.830569631],[-71.379402577,41.830601032],[-71.379382522,41.830631747],[-71.379362441,41.830660449],[-71.379341382,41.830688464],[-71.379321243,41.830715153],[-71.379301103,41.83074182],[-71.379281851,41.830768487],[-71.379263515,41.830795773],[-71.37924432,41.830824453],[-71.379226011,41.830853157],[-71.379207702,41.830882501],[-71.379189455,41.830911182],[-71.379171147,41.830939154],[-71.379151952,41.830967857],[-71.379131839,41.830997222],[-71.379110838,41.831026631],[-71.379088033,41.831056039],[-71.379064341,41.83108611],[-71.379038873,41.831116933],[-71.379013376,41.831147047],[-71.37898699,41.831178532],[-71.378962409,41.831209333],[-71.378936942,41.831240133],[-71.37891239,41.831271574],[-71.378887809,41.831302375],[-71.378863258,41.831333862],[-71.378837759,41.83136464],[-71.378813178,41.831395418],[-71.378788628,41.831426242],[-71.378765823,41.83145565],[-71.378743933,41.831486408],[-71.378722074,41.831516457],[-71.378699297,41.831547214],[-71.378675606,41.831576667],[-71.378651913,41.831606737],[-71.378629136,41.831637517],[-71.378608193,41.831668276],[-71.37858722,41.831699012],[-71.378567164,41.831729726],[-71.378546166,41.831757741],[-71.378524192,41.831784428],[-71.37850133,41.831811138],[-71.378479356,41.831837848],[-71.378456493,41.831865243],[-71.378434549,41.831891908],[-71.378412575,41.831918595],[-71.378390572,41.831943933],[-71.378366766,41.831969338],[-71.378343847,41.831993989],[-71.37832093,41.832017976],[-71.37829887,41.832041302],[-71.37827684,41.832064605],[-71.378255668,41.832087245],[-71.378233581,41.832108512],[-71.378211465,41.832129116],[-71.378189351,41.832149057],[-71.37816898,41.832168291],[-71.378149587,41.832188166],[-71.378132855,41.832207335],[-71.378118015,41.832228542],[-71.378104062,41.832249703],[-71.378090108,41.832271551],[-71.378076154,41.832293376],[-71.378062201,41.832314583],[-71.378048248,41.832335722],[-71.378033408,41.832356905],[-71.378019395,41.832377403],[-71.37800719,41.832395822],[-71.377998508,41.832410861],[-71.377991516,41.832421762],[-71.377986331,41.832430629],[-71.377981976,41.832437462],[-71.377977535,41.832441574],[-71.377974041,41.832445687],[-71.377971377,41.832447742],[-71.377967766,41.832449156],[-71.377958688,41.832447271],[-71.377909796,41.832446579],[-71.377904525,41.832452725],[-71.377894068,41.832468447],[-71.377752135,41.832768813],[-71.377758553,41.832770741],[-71.377807557,41.832777517],[-71.377804062,41.832782315],[-71.377798818,41.832789856],[-71.377791855,41.832801443],[-71.377785008,41.832816438],[-71.377778157,41.832833468],[-71.377770506,41.832852509],[-71.377762854,41.8328729],[-71.37775523,41.832893954],[-71.377748523,41.832915718],[-71.377740929,41.832937503],[-71.377734193,41.832957872],[-71.377728346,41.832977602],[-71.377723387,41.8329966],[-71.377719286,41.83301425],[-71.377715215,41.833032564],[-71.37771206,41.833051564],[-71.377709821,41.833071206],[-71.377707611,41.833091534],[-71.3777054,41.833112548],[-71.377704165,41.833134912],[-71.377702928,41.833158603],[-71.377701749,41.833183643],[-71.377700568,41.833209391],[-71.377699387,41.833235781],[-71.377700068,41.833263544],[-71.377700807,41.833292611],[-71.377701516,41.8333217],[-71.377705862,41.83335212],[-71.377709351,41.833382516],[-71.377713754,41.833414926],[-71.377717268,41.833448043],[-71.37772173,41.833481802],[-71.377725301,41.833516955],[-71.377728845,41.833550713],[-71.377732361,41.833583144],[-71.377735848,41.833614913],[-71.377740224,41.833645287],[-71.377746434,41.833676326],[-71.377754474,41.83370938],[-71.37776346,41.833743784],[-71.377773391,41.833779493],[-71.377784238,41.833815911],[-71.377796891,41.833851577],[-71.377811318,41.833886581],[-71.377825718,41.833920213],[-71.377841034,41.83395451],[-71.377856379,41.833989492],[-71.377873528,41.834024454],[-71.377889758,41.834060077],[-71.37790602,41.834095724],[-71.377922281,41.834131348],[-71.377937626,41.834166353],[-71.377952943,41.834199986],[-71.377968202,41.834232224],[-71.377985236,41.834263115],[-71.37800316,41.834292657],[-71.378021085,41.8343222],[-71.378038979,41.834351056],[-71.378055071,41.834379225],[-71.37807205,41.834407417],[-71.378089859,41.834433552],[-71.378107699,41.834459023],[-71.378127314,41.834483788],[-71.378145982,41.834507911],[-71.37816554,41.834530664],[-71.378184183,41.834552066],[-71.378201879,41.834572758],[-71.378218658,41.83459354],[-71.378234552,41.834613613],[-71.378248582,41.834632357],[-71.378263503,41.83464973],[-71.378277448,41.834665113],[-71.378323959,41.834680735],[-71.378367288,41.834730017],[-71.37838588,41.834745748],[-71.378397053,41.834756028],[-71.378410087,41.834768345],[-71.378424955,41.834780687],[-71.378442573,41.834794335],[-71.378461167,41.834809402],[-71.378480648,41.834824448],[-71.378501105,41.834840866],[-71.37852153,41.834857971],[-71.378541097,41.834875806],[-71.378560603,41.834893573],[-71.378580139,41.834912094],[-71.378600593,41.834929862],[-71.378621049,41.834946989],[-71.378641476,41.834962721],[-71.378660069,41.834978452],[-71.378676797,41.83499418],[-71.378691691,41.835009266],[-71.378705639,41.835022957],[-71.378717756,41.835035295],[-71.378728008,41.835046969],[-71.378738264,41.835057225],[-71.378753155,41.835073661],[-71.378764348,41.835089475],[-71.378773736,41.835105241],[-71.378781235,41.835117621],[-71.37878874,41.835127234],[-71.378793427,41.835138925],[-71.378801818,41.835148515],[-71.378814927,41.835169774],[-71.378822483,41.835184212],[-71.378829085,41.83520208],[-71.378836662,41.835222029],[-71.378841004,41.835238019],[-71.378842401,41.835243371],[-71.37884728,41.835266748],[-71.378853014,41.835290812],[-71.378858836,41.83531698],[-71.378865576,41.835342417],[-71.378872254,41.835368586],[-71.378878962,41.835395395],[-71.378886616,41.835422937],[-71.378894271,41.835449747],[-71.378902844,41.835476558],[-71.378911417,41.835503392],[-71.378918124,41.835530224],[-71.37892578,41.835557057],[-71.37893249,41.835582517],[-71.378940118,41.835607246],[-71.378947719,41.835630648],[-71.378956239,41.835653343],[-71.378963841,41.835676014],[-71.378969608,41.835698729],[-71.378976294,41.835720735],[-71.37898298,41.835742765],[-71.378990582,41.835765436],[-71.379000017,41.835788817],[-71.379010401,41.835812177],[-71.379022619,41.835835562],[-71.379034808,41.835858192],[-71.379047945,41.835880845],[-71.379062918,41.835902815],[-71.379076972,41.835926156],[-71.379091943,41.835948834],[-71.379106943,41.835972862],[-71.37912286,41.835996891],[-71.379126606,41.836002701],[-71.379128511,41.836002543],[-71.379333511,41.835999543],[-71.379570511,41.836323543],[-71.379807511,41.836743543],[-71.379852511,41.836888543],[-71.379868511,41.837006543],[-71.379852511,41.837189543],[-71.379799512,41.837563543],[-71.379761512,41.837723543],[-71.379692511,41.837883544],[-71.379669511,41.838005543],[-71.379692511,41.838124543],[-71.379776511,41.838242543],[-71.379906511,41.838326543],[-71.380119511,41.838402543],[-71.380402512,41.838410544],[-71.380707512,41.838436543],[-71.380959512,41.838463543],[-71.381134512,41.838429544],[-71.381279512,41.838337543],[-71.381439512,41.838078544],[-71.381577511,41.837841543],[-71.381584512,41.837784543],[-71.381805512,41.837769543],[-71.381966512,41.837777543],[-71.382423512,41.837883544],[-71.382607513,41.837891543],[-71.382812512,41.837883544],[-71.383011512,41.837860543],[-71.383469512,41.837788544],[-71.383499513,41.837906543],[-71.383636513,41.838471543],[-71.383812513,41.839135543]]]]}}"}, +{"type": "precinct", "typeId": 2806, "areaId": 25890, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":229,\"NAME\":\"2806\",\"SHAPE_Length\":0.017926825121273,\"SHAPE_Area\":-8.4163951455011e-6},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.409813521,41.835099541],[-71.409904521,41.835099541],[-71.409935521,41.835106542],[-71.409958521,41.835122542],[-71.409988521,41.835160542],[-71.409996521,41.835186542],[-71.410065521,41.835335542],[-71.410095521,41.834851542],[-71.410149521,41.834431542],[-71.410172521,41.834362542],[-71.410545521,41.833577541],[-71.410660521,41.833321542],[-71.410690521,41.833214541],[-71.410713521,41.833077541],[-71.410744521,41.832543541],[-71.410759521,41.832451541],[-71.410789522,41.832386542],[-71.410835521,41.832356541],[-71.410950521,41.832306542],[-71.410812521,41.831936542],[-71.410759521,41.831822541],[-71.410663521,41.831611541],[-71.410629521,41.831536541],[-71.410408521,41.830864541],[-71.410393521,41.830834541],[-71.410248521,41.830418541],[-71.410156521,41.830147541],[-71.409988521,41.82967854],[-71.409813521,41.82917254],[-71.409729521,41.82891554],[-71.409637521,41.82866354],[-71.40958452,41.828499541],[-71.409538521,41.828362541],[-71.40944752,41.82814454],[-71.40935152,41.82798054],[-71.409286521,41.82787054],[-71.40918452,41.827703541],[-71.40905852,41.82749654],[-71.40851652,41.82762954],[-71.40808952,41.82767154],[-71.40775352,41.82772954],[-71.40791552,41.828028541],[-71.40807352,41.828320541],[-71.40819552,41.828614541],[-71.40837952,41.829049541],[-71.40847752,41.829284541],[-71.40849352,41.829323541],[-71.40867652,41.829869541],[-71.408836521,41.830349541],[-71.408859521,41.830429541],[-71.408954521,41.830681541],[-71.409073521,41.830998541],[-71.40928952,41.831581541],[-71.409470521,41.832070542],[-71.409668521,41.832631541],[-71.409798521,41.833004542],[-71.409821521,41.833153541],[-71.409828521,41.833630542],[-71.409836521,41.833920542],[-71.409821521,41.834626542],[-71.409828521,41.834801542],[-71.409828521,41.834961541],[-71.409813521,41.835099541]]]]}}"}, +{"type": "precinct", "typeId": 2807, "areaId": 25891, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":230,\"NAME\":\"2807\",\"SHAPE_Length\":0.010814148269671,\"SHAPE_Area\":-4.7262759895223e-6},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.40905852,41.82749654],[-71.40918452,41.827703541],[-71.409286521,41.82787054],[-71.40935152,41.82798054],[-71.40944752,41.82814454],[-71.409538521,41.828362541],[-71.40958452,41.828499541],[-71.409637521,41.82866354],[-71.409729521,41.82891554],[-71.409813521,41.82917254],[-71.409988521,41.82967854],[-71.410156521,41.830147541],[-71.410248521,41.830418541],[-71.410393521,41.830834541],[-71.410408521,41.830864541],[-71.410629521,41.831536541],[-71.411331521,41.831425541],[-71.411447521,41.831410541],[-71.411436521,41.831229541],[-71.411351521,41.830778541],[-71.411274521,41.830402541],[-71.411194521,41.830013541],[-71.410998521,41.829008541],[-71.410953521,41.82877954],[-71.410833521,41.82845554],[-71.410813521,41.828403541],[-71.410786521,41.82833054],[-71.410715521,41.82817454],[-71.410584521,41.82794454],[-71.41036552,41.82759854],[-71.410043521,41.827118541],[-71.409912521,41.82718754],[-71.40954652,41.82730954],[-71.40905852,41.82749654]]]]}}"}, +{"type": "precinct", "typeId": 2808, "areaId": 25892, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":231,\"NAME\":\"2808\",\"SHAPE_Length\":0.057021285804882,\"SHAPE_Area\":-8.4186763206188e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.381809512,41.823506541],[-71.381673512,41.823680541],[-71.381376511,41.82412354],[-71.381183511,41.82439154],[-71.381057428,41.824606783],[-71.381507944,41.824023518],[-71.381518529,41.82401475],[-71.381545138,41.823992755],[-71.381572632,41.823971401],[-71.381601075,41.823950002],[-71.381630404,41.823928627],[-71.381659674,41.82390588],[-71.381686227,41.823881186],[-71.381710916,41.823855782],[-71.38173469,41.823829096],[-71.381755714,41.823801721],[-71.381775881,41.823775054],[-71.381796016,41.823748364],[-71.381818963,41.823723049],[-71.38184551,41.823701008],[-71.381876729,41.823682974],[-71.38191164,41.823668282],[-71.381950334,41.823658283],[-71.381994494,41.823651582],[-71.382041461,41.823648246],[-71.382090262,41.823645529],[-71.382138173,41.823644206],[-71.382187001,41.823642838],[-71.382233995,41.823641514],[-71.38228185,41.823637492],[-71.382329618,41.823630704],[-71.382375526,41.823621283],[-71.382420489,41.823610512],[-71.382464536,41.823599077],[-71.382508583,41.823587642],[-71.382554434,41.8235755],[-71.382600228,41.823562008],[-71.382645163,41.823549225],[-71.382690927,41.82353507],[-71.382738553,41.823522221],[-71.382787097,41.823509373],[-71.382835698,41.823498537],[-71.38288341,41.823489095],[-71.382904267,41.8234858],[-71.382930262,41.823481665],[-71.382977172,41.823475606],[-71.383024051,41.823470234],[-71.383071018,41.823466875],[-71.38311896,41.823465551],[-71.383165981,41.823465576],[-71.383213062,41.823466951],[-71.383259253,41.823469719],[-71.383305505,41.823473128],[-71.383349863,41.823475231],[-71.383393307,41.823475984],[-71.383435835,41.823475387],[-71.383475612,41.823474878],[-71.383513586,41.823474322],[-71.383547951,41.823473877],[-71.383580512,41.823473407],[-71.383610354,41.823472316],[-71.38363922,41.823469876],[-71.383665367,41.823466129],[-71.383690542,41.823459042],[-71.383714742,41.823449919],[-71.383726798,41.8234441],[-71.383737967,41.82343876],[-71.383759391,41.823426273],[-71.383778035,41.823412502],[-71.383791907,41.823400098],[-71.383795735,41.823396671],[-71.383809799,41.823379557],[-71.383820102,41.823362828],[-71.383830567,41.823341365],[-71.383840907,41.82332093],[-71.383849415,41.823299168],[-71.383855203,41.823276763],[-71.383855239,41.82327379],[-71.383855551,41.823253734],[-71.383853149,41.823229422],[-71.383847108,41.823205153],[-71.383839236,41.823179532],[-71.383829531,41.823153291],[-71.383817135,41.823127071],[-71.383802018,41.823100871],[-71.383785096,41.823075379],[-71.383768175,41.8230492],[-71.38374942,41.82302311],[-71.38372889,41.82299766],[-71.383708419,41.822973604],[-71.383686084,41.822948838],[-71.383663749,41.822924117],[-71.383639613,41.822898045],[-71.383613612,41.822872017],[-71.383587671,41.822846675],[-71.383563561,41.822822638],[-71.383543145,41.822801944],[-71.383528228,41.822783886],[-71.383516173,41.822771868],[-71.383506895,41.822763191],[-71.38350134,41.822757857],[-71.383498535,41.822753829],[-71.383497696,41.822751544],[-71.383497512,41.822751541],[-71.383186512,41.82270454],[-71.383100511,41.82271454],[-71.382872511,41.82270454],[-71.382405511,41.82270354],[-71.382269511,41.822886541],[-71.381809512,41.823506541]]],[[[-71.380890511,41.82482254],[-71.380873391,41.824845045],[-71.380897547,41.824813771],[-71.380890511,41.82482254]]],[[[-71.380445511,41.825374541],[-71.38021451,41.825674541],[-71.380080511,41.825831541],[-71.379971511,41.825980541],[-71.379871511,41.826134541],[-71.379509511,41.826565541],[-71.379473788,41.826628055],[-71.379516373,41.826601832],[-71.380701985,41.825066952],[-71.380445511,41.825374541]]],[[[-71.379807511,41.829483541],[-71.379738511,41.830132542],[-71.379684511,41.830319541],[-71.379616511,41.830468542],[-71.379494511,41.830674542],[-71.379280511,41.830983542],[-71.378860511,41.831566542],[-71.37865451,41.831841542],[-71.37879251,41.831845542],[-71.378960511,41.831833542],[-71.37960851,41.831765542],[-71.380005511,41.831707542],[-71.380104511,41.831688542],[-71.380211512,41.831673542],[-71.380943511,41.831524542],[-71.382408512,41.831242542],[-71.383278512,41.831078542],[-71.384590512,41.830807541],[-71.385582513,41.830620542],[-71.385674512,41.830605542],[-71.387901513,41.830162542],[-71.388245514,41.830094541],[-71.389320514,41.829903542],[-71.390152514,41.829747542],[-71.390928515,41.829602541],[-71.390968515,41.829590541],[-71.391663514,41.829464541],[-71.392166514,41.829377541],[-71.393127515,41.829182541],[-71.393936516,41.829022541],[-71.393883515,41.827633541],[-71.393852515,41.827000541],[-71.393837515,41.826741541],[-71.393814515,41.826275541],[-71.393858515,41.825886541],[-71.393860516,41.825867541],[-71.393890515,41.825573541],[-71.393951515,41.82511654],[-71.394058515,41.82431454],[-71.395424515,41.82429954],[-71.395409515,41.82394454],[-71.395309515,41.82340754],[-71.394142515,41.82354054],[-71.394104515,41.82354854],[-71.392311515,41.82368554],[-71.391525514,41.82375054],[-71.391022514,41.82379654],[-71.390823514,41.82381554],[-71.390099513,41.82386854],[-71.390060513,41.823628541],[-71.389999514,41.82318954],[-71.388057028,41.822834],[-71.388049428,41.82284322],[-71.388024826,41.822872651],[-71.388000225,41.822902105],[-71.387975594,41.822930872],[-71.387950963,41.82295964],[-71.387927279,41.822989049],[-71.387904479,41.823019808],[-71.387883602,41.823051895],[-71.387866302,41.823084603],[-71.387849977,41.823118685],[-71.387834509,41.823152721],[-71.387819959,41.823186072],[-71.38780538,41.82321876],[-71.387788051,41.823250165],[-71.387769836,41.823281523],[-71.387748871,41.823311575],[-71.387727906,41.823341672],[-71.387706024,41.823371723],[-71.387683285,41.823402482],[-71.387661402,41.823433242],[-71.387639579,41.823464688],[-71.38761681,41.823494761],[-71.387593095,41.82352417],[-71.387567578,41.823552273],[-71.387541113,41.823580421],[-71.387515538,41.82360713],[-71.387489018,41.823631871],[-71.387465131,41.823654533],[-71.387443967,41.823675803],[-71.387424636,41.823698401],[-71.387404387,41.823720999],[-71.387381445,41.823745034],[-71.387355785,41.823767694],[-71.387330095,41.823789692],[-71.387302544,41.823809698],[-71.387272214,41.823827711],[-71.387235498,41.823843112],[-71.387194259,41.82385789],[-71.387151129,41.823869991],[-71.387107082,41.823882114],[-71.387063066,41.823893574],[-71.38701902,41.823904987],[-71.386975861,41.823916402],[-71.386933648,41.823928504],[-71.386892351,41.82394127],[-71.38685197,41.823954654],[-71.3868107,41.823969432],[-71.386771295,41.823984212],[-71.386733661,41.824000275],[-71.38669881,41.82401634],[-71.386664872,41.824034395],[-71.386632767,41.824053116],[-71.386602436,41.82407113],[-71.386573911,41.824088459],[-71.386545387,41.824105056],[-71.386516834,41.824121059],[-71.386490026,41.824134959],[-71.386463191,41.824147511],[-71.386437302,41.824160703],[-71.38641227,41.824173896],[-71.386390018,41.824187756],[-71.386368653,41.82420157],[-71.386349063,41.8242147],[-71.386330361,41.824226482],[-71.386312518,41.824236892],[-71.386305939,41.824240042],[-71.386293761,41.82424593],[-71.386274943,41.824254281],[-71.386253464,41.824263384],[-71.386231068,41.824272487],[-71.386217238,41.824278533],[-71.386207508,41.824282915],[-71.386188166,41.824293392],[-71.386169463,41.8243065],[-71.386153539,41.82432096],[-71.386143972,41.824336662],[-71.386141678,41.824354268],[-71.38615024,41.824371062],[-71.386167852,41.824387042],[-71.38619268,41.824403624],[-71.38622292,41.824419456],[-71.386253189,41.824435951],[-71.386282571,41.824453132],[-71.386311034,41.824471043],[-71.386336808,41.824488243],[-71.386358914,41.824504868],[-71.386370169,41.824520292],[-71.386365957,41.824533209],[-71.386348087,41.824541584],[-71.386317357,41.824543315],[-71.386277522,41.824541857],[-71.386233104,41.824538406],[-71.386190518,41.824536306],[-71.386149824,41.82453686],[-71.386114656,41.824541399],[-71.386083153,41.824547931],[-71.386055287,41.824555107],[-71.386031059,41.824562858],[-71.386010496,41.824572625],[-71.385994485,41.824584341],[-71.385982169,41.824598736],[-71.385970798,41.824614436],[-71.385957623,41.824630202],[-71.385941727,41.824645988],[-71.385923054,41.824659074],[-71.385898911,41.824670255],[-71.385869242,41.82467743],[-71.385833156,41.824682013],[-71.385791658,41.8246873],[-71.385748386,41.824692631],[-71.385703308,41.824699333],[-71.385657342,41.824706742],[-71.385609602,41.824714859],[-71.385559169,41.824723659],[-71.385508706,41.824732504],[-71.385458274,41.824741304],[-71.385408758,41.824750768],[-71.385360158,41.824760942],[-71.385314276,41.824772376],[-71.385270288,41.824785162],[-71.385227185,41.824798611],[-71.385185028,41.824813411],[-71.385143758,41.824827548],[-71.38510432,41.824842968],[-71.385064943,41.824859074],[-71.385024647,41.824875865],[-71.38498435,41.824892656],[-71.384944998,41.824911506],[-71.384904759,41.824930973],[-71.384863661,41.82495117],[-71.384820728,41.824972052],[-71.384776022,41.824992978],[-71.384729481,41.825013925],[-71.384682054,41.825034893],[-71.384631934,41.825056568],[-71.384581815,41.825078243],[-71.384531666,41.825099209],[-71.384482405,41.825119513],[-71.384435865,41.825139796],[-71.3843911,41.825159372],[-71.384345477,41.825179588],[-71.384298937,41.825199894],[-71.384253343,41.825221482],[-71.384208663,41.82524442],[-71.384163065,41.825268089],[-71.384117526,41.825292375],[-71.384072965,41.825317326],[-71.384030175,41.825343627],[-71.383988242,41.825369244],[-71.383945482,41.825395545],[-71.383902693,41.825421206],[-71.383858958,41.825445471],[-71.383814306,41.825469759],[-71.383768769,41.825493404],[-71.383722313,41.825517735],[-71.38367497,41.825542088],[-71.383625822,41.825567103],[-71.383576733,41.825593489],[-71.383527641,41.825621248],[-71.383478579,41.825649669],[-71.383429518,41.825677405],[-71.383381343,41.825705142],[-71.383335862,41.825731509],[-71.383293044,41.825755775],[-71.383251972,41.825778007],[-71.38321176,41.825798845],[-71.383175187,41.825818955],[-71.383142191,41.825839046],[-71.383113721,41.82585841],[-71.38309075,41.825880363],[-71.383071414,41.82590431],[-71.383056663,41.825928879],[-71.383045517,41.825954732],[-71.38303532,41.825980586],[-71.383019594,41.826003141],[-71.382993843,41.826023788],[-71.382959933,41.826041889],[-71.38291872,41.826057992],[-71.38289957,41.826063644],[-71.382872894,41.826071483],[-71.382827986,41.826084953],[-71.3827858,41.826097739],[-71.382749025,41.82611108],[-71.382713167,41.826124467],[-71.382679171,41.8261398],[-71.382649728,41.826156464],[-71.382622087,41.826173748],[-71.382590784,41.826187734],[-71.382553924,41.826197004],[-71.382510622,41.826201671],[-71.382463566,41.826202309],[-71.382415654,41.826202968],[-71.382366765,41.826202964],[-71.382317936,41.826203646],[-71.382269136,41.826204991],[-71.38222128,41.826209035],[-71.382174309,41.826213104],[-71.382129232,41.826218431],[-71.382086846,41.826223762],[-71.382044486,41.826231128],[-71.382001268,41.826239819],[-71.381958108,41.826250569],[-71.381916808,41.82626331],[-71.381878257,41.826278044],[-71.381838848,41.826293485],[-71.381800325,41.826309614],[-71.381763579,41.82632364],[-71.381727749,41.826338331],[-71.381697332,41.826352272],[-71.38167058,41.826368207],[-71.381644803,41.826386178],[-71.381618166,41.826406184],[-71.381589723,41.826427514],[-71.381561338,41.826450262],[-71.381532036,41.826473009],[-71.381502735,41.826495047],[-71.381469797,41.826516486],[-71.381435884,41.82653589],[-71.381401915,41.826552594],[-71.381370638,41.826568593],[-71.381343914,41.826585877],[-71.381322662,41.826603784],[-71.381308682,41.82662426],[-71.381297424,41.826644716],[-71.381286194,41.826665835],[-71.38127399,41.826684963],[-71.381259067,41.826702763],[-71.38124228,41.826719897],[-71.381222804,41.826736411],[-71.38120238,41.826752946],[-71.381181987,41.826769482],[-71.38116248,41.826785973],[-71.38114389,41.826802465],[-71.381126245,41.826820971],[-71.381109517,41.826839477],[-71.381094592,41.826857962],[-71.381083279,41.826875033],[-71.381074568,41.826890026],[-71.38106858,41.82690365],[-71.381062565,41.826915924],[-71.381055604,41.826926848],[-71.381048585,41.8269364],[-71.381043342,41.826943941],[-71.381037155,41.826950109],[-71.381032744,41.826954221],[-71.381029222,41.826957648],[-71.381026586,41.826961075],[-71.381025755,41.826963819],[-71.381024093,41.826969923],[-71.381020455,41.826969965],[-71.380861171,41.826930191],[-71.380854982,41.826937045],[-71.380676806,41.827159418],[-71.380686801,41.827160641],[-71.380712602,41.8271799],[-71.380703694,41.827185448],[-71.380609387,41.827324117],[-71.380613942,41.827324716],[-71.380621215,41.827326668],[-71.380662482,41.827348413],[-71.380665286,41.827353104],[-71.380664569,41.827360558],[-71.380661216,41.82737144],[-71.380658866,41.827385708],[-71.380657488,41.827403292],[-71.380654363,41.827422956],[-71.380648485,41.827443372],[-71.380637284,41.82746584],[-71.380621614,41.827490431],[-71.380601475,41.827517783],[-71.380578672,41.827547192],[-71.380557731,41.827578591],[-71.380538623,41.827610656],[-71.380521375,41.827645422],[-71.380505044,41.827680119],[-71.38048688,41.82771422],[-71.380466884,41.827746993],[-71.380445943,41.827778393],[-71.380424085,41.827809129],[-71.380401282,41.827838583],[-71.380380313,41.82786861],[-71.380359343,41.827898706],[-71.380340177,41.827928713],[-71.380321929,41.827958766],[-71.380306342,41.827988045],[-71.38029259,41.828017325],[-71.380281558,41.828046585],[-71.380271414,41.828075847],[-71.380263991,41.828105019],[-71.38025926,41.828133509],[-71.380258166,41.82816262],[-71.380258876,41.828191709],[-71.380263254,41.82822142],[-71.380267004,41.828243538],[-71.380268517,41.828252481],[-71.380272951,41.828284891],[-71.380276468,41.828317322],[-71.380279985,41.828349777],[-71.380282555,41.828381521],[-71.380283294,41.82841132],[-71.380283089,41.828439745],[-71.380281051,41.828466842],[-71.380278039,41.82849124],[-71.380272279,41.828514354],[-71.380264657,41.828535431],[-71.380254257,41.82855383],[-71.380241079,41.828570258],[-71.380224235,41.828584671],[-71.380201923,41.828596517],[-71.380174169,41.828608379],[-71.380143664,41.828619622],[-71.380111413,41.828632257],[-71.380076469,41.828646262],[-71.380040696,41.828662324],[-71.38000492,41.828679736],[-71.379970091,41.828697834],[-71.379937981,41.828717193],[-71.379906816,41.828737948],[-71.37987568,41.828759344],[-71.379846406,41.828782753],[-71.379818935,41.828806119],[-71.379794214,41.828830837],[-71.379770439,41.828856883],[-71.379748466,41.828883593],[-71.379728354,41.828912272],[-71.379711021,41.828942967],[-71.379695519,41.828975653],[-71.379683713,41.829010309],[-71.379672823,41.829045653],[-71.379664682,41.829082303],[-71.379657459,41.829118954],[-71.37965184,41.829147739],[-71.379650234,41.829156268],[-71.379643867,41.829192919],[-71.379636613,41.829229547],[-71.379629389,41.829266175],[-71.379622165,41.82930349],[-71.379615827,41.829340805],[-71.379610465,41.829379447],[-71.379607051,41.829403494],[-71.37960851,41.829403541],[-71.379730511,41.829403541],[-71.379817511,41.829402542],[-71.379807511,41.829483541]]]]}}"}, +{"type": "precinct", "typeId": 2809, "areaId": 25893, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":232,\"NAME\":\"2809\",\"SHAPE_Length\":0.0723198262971,\"SHAPE_Area\":-9.9674701540938e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.394079771,41.811410378],[-71.394132569,41.81146099],[-71.394371268,41.811389676],[-71.394318838,41.811300074],[-71.394449117,41.811258176],[-71.394587639,41.811213626],[-71.394573606,41.811159162],[-71.394645995,41.811118911],[-71.394735493,41.811084164],[-71.394824991,41.811048777],[-71.394887821,41.811002891],[-71.394892577,41.810936233],[-71.394858948,41.810901762],[-71.394781246,41.810900959],[-71.394677344,41.810921629],[-71.39460368,41.810938507],[-71.394525278,41.81095474],[-71.394489183,41.810962596],[-71.394099514,41.811108538],[-71.394001691,41.811402011],[-71.394074512,41.811373578],[-71.394079771,41.811410378]]],[[[-71.388998513,41.815809539],[-71.388732826,41.815862306],[-71.388790166,41.815866666],[-71.389063656,41.815854719],[-71.389380415,41.815809076],[-71.389637165,41.815726139],[-71.389721149,41.81572426],[-71.389778755,41.815705856],[-71.38975291,41.815634604],[-71.389810225,41.815570468],[-71.388998513,41.815809539]]],[[[-71.391098005,41.815586166],[-71.391103098,41.81569414],[-71.391124149,41.815743875],[-71.39116521,41.815837488],[-71.391315193,41.815906249],[-71.391515168,41.815933816],[-71.391624906,41.815926982],[-71.391704629,41.815905095],[-71.391783775,41.815883366],[-71.391906057,41.815818926],[-71.391942118,41.815658406],[-71.391939414,41.815612635],[-71.391934331,41.815526599],[-71.391811556,41.815377471],[-71.391805392,41.815363839],[-71.391762094,41.815315979],[-71.391712135,41.815266742],[-71.391685271,41.815208218],[-71.391678386,41.815194353],[-71.391658715,41.815166892],[-71.391639902,41.815138037],[-71.391623781,41.815108521],[-71.391609465,41.815077589],[-71.391596006,41.815046658],[-71.391582578,41.815015018],[-71.39156909,41.814982714],[-71.391556579,41.814951098],[-71.391552254,41.814936895],[-71.391099514,41.815208538],[-71.390699514,41.815308538],[-71.389941731,41.815531734],[-71.390014052,41.815531666],[-71.390133234,41.815570012],[-71.390231897,41.815589493],[-71.390532043,41.815564122],[-71.391098005,41.815586166]]],[[[-71.387083512,41.816380539],[-71.386998512,41.816408539],[-71.386781513,41.816733539],[-71.385877623,41.818085709],[-71.385905604,41.818092702],[-71.385931089,41.81809913],[-71.385953854,41.818104916],[-71.385972953,41.818109371],[-71.385991108,41.818111173],[-71.386006398,41.818108901],[-71.386018912,41.818102648],[-71.386030483,41.818094358],[-71.386041079,41.818084077],[-71.386052506,41.818070367],[-71.386064763,41.81805396],[-71.386077851,41.818034832],[-71.386092657,41.818012321],[-71.386106548,41.817988437],[-71.38612044,41.81796389],[-71.386133442,41.817941354],[-71.386146501,41.817920876],[-71.386156897,41.817902477],[-71.386163714,41.81788547],[-71.386164231,41.81786992],[-71.386155757,41.817855801],[-71.38614187,41.817843118],[-71.386126207,41.817831851],[-71.386115042,41.817818462],[-71.386111891,41.817802268],[-71.386114127,41.817782626],[-71.386120887,41.817762897],[-71.386130396,41.81774516],[-71.386142681,41.817730102],[-71.386161468,41.817721065],[-71.386185809,41.817717338],[-71.386215617,41.817716247],[-71.386251783,41.817715757],[-71.38629067,41.817715201],[-71.386333195,41.817714626],[-71.386374742,41.817713363],[-71.386414518,41.817711482],[-71.386451544,41.817708934],[-71.38648644,41.817703955],[-71.386521239,41.817386235],[-71.386657783,41.817172945],[-71.386698184,41.817109834],[-71.386806568,41.816967011],[-71.386773714,41.816913074],[-71.387019765,41.816634559],[-71.387108788,41.816497347],[-71.387224659,41.816349891],[-71.387233756,41.816330529],[-71.387083512,41.816380539]]],[[[-71.385802512,41.818901539],[-71.385733003,41.818934363],[-71.38574625,41.818928646],[-71.385764119,41.818920271],[-71.385783793,41.818910502],[-71.385806158,41.818900737],[-71.385827608,41.818889621],[-71.385848084,41.818876469],[-71.385865782,41.818860639],[-71.385880731,41.818843525],[-71.385890182,41.818823799],[-71.385896027,41.818803383],[-71.385896231,41.818791994],[-71.385896401,41.818782412],[-71.385893197,41.818761461],[-71.385886325,41.818740598],[-71.385876763,41.818719733],[-71.385863621,41.818700304],[-71.385850481,41.818680189],[-71.385838198,41.81865939],[-71.385825916,41.818637904],[-71.385816296,41.818615025],[-71.385808481,41.81859144],[-71.385800607,41.818566528],[-71.385799078,41.818561536],[-71.385802512,41.818901539]]],[[[-71.385679065,41.818947958],[-71.385686971,41.818946356],[-71.385701405,41.818944129],[-71.38571578,41.818940553],[-71.385729859,41.818935697],[-71.385679065,41.818947958]]],[[[-71.385572512,41.81900454],[-71.385549125,41.819042283],[-71.385575759,41.819001834],[-71.385572512,41.81900454]]],[[[-71.385471512,41.819167539],[-71.385469959,41.819171422],[-71.385471691,41.819167899],[-71.385474901,41.81916207],[-71.385471512,41.819167539]]],[[[-71.3854187,41.819302444],[-71.385427552,41.819284897],[-71.385436059,41.819263134],[-71.385442764,41.819240021],[-71.38544333,41.819238228],[-71.3854187,41.819302444]]],[[[-71.385380029,41.819347955],[-71.38539132,41.819338602],[-71.385404983,41.819323111],[-71.385415634,41.819307665],[-71.385380029,41.819347955]]],[[[-71.385305245,41.819386755],[-71.385321359,41.819380428],[-71.385336537,41.819372759],[-71.385351744,41.819365113],[-71.385366005,41.819356826],[-71.385378319,41.819349154],[-71.385305245,41.819386755]]],[[[-71.385276512,41.819401539],[-71.385272836,41.819405216],[-71.385276656,41.819402017],[-71.385284949,41.819397198],[-71.385276512,41.819401539]]],[[[-71.385231021,41.819470781],[-71.385234783,41.819464841],[-71.38523908,41.819455332],[-71.385240097,41.819452903],[-71.385231021,41.819470781]]],[[[-71.385222512,41.81948754],[-71.385222806,41.819492243],[-71.385222697,41.819488018],[-71.385223541,41.819485514],[-71.385222512,41.81948754]]],[[[-71.385184513,41.819808539],[-71.385195519,41.819778698],[-71.385205629,41.819749459],[-71.385214911,41.819722277],[-71.385223304,41.819695758],[-71.385229005,41.819670654],[-71.38523193,41.819641499],[-71.385231444,41.819622563],[-71.385229458,41.819603353],[-71.385228512,41.81967054],[-71.385184513,41.819808539]]],[[[-71.385184513,41.819808539],[-71.385147943,41.819890238],[-71.385158855,41.819869198],[-71.385172544,41.819838568],[-71.38518449,41.819808645],[-71.385184513,41.819808539]]],[[[-71.385052512,41.82015354],[-71.385032198,41.820201905],[-71.385039204,41.820190269],[-71.38504605,41.820173925],[-71.385052782,41.820153533],[-71.385059458,41.820130419],[-71.38506106,41.82012317],[-71.385052512,41.82015354]]],[[[-71.385007901,41.820220976],[-71.38500922,41.820220472],[-71.385014575,41.820217687],[-71.385023481,41.820212116],[-71.385030361,41.820204389],[-71.385007901,41.820220976]]],[[[-71.384938028,41.820272577],[-71.384943465,41.820268727],[-71.384947776,41.820265378],[-71.384938028,41.820272577]]],[[[-71.384464511,41.820610539],[-71.384384512,41.82063454],[-71.384384441,41.82063459],[-71.384398815,41.820632182],[-71.384432062,41.820623616],[-71.384464338,41.82061098],[-71.384494695,41.820595002],[-71.384524076,41.820576988],[-71.384550478,41.82055838],[-71.384464511,41.820610539]]],[[[-71.384735354,41.82104725],[-71.384718252,41.821068085],[-71.384729247,41.82110117],[-71.384773448,41.821109483],[-71.384795323,41.821104449],[-71.384812795,41.821079503],[-71.384806702,41.821057837],[-71.384779093,41.82104334],[-71.384735354,41.82104725]]],[[[-71.385484927,41.821947378],[-71.385498716,41.821963929],[-71.385553912,41.822005326],[-71.385603577,41.822048785],[-71.385636655,41.822096363],[-71.385669758,41.82212947],[-71.385727721,41.822168802],[-71.385802311,41.822183346],[-71.385860329,41.822191673],[-71.385910123,41.822162783],[-71.385926753,41.822135926],[-71.385937862,41.82210493],[-71.385932397,41.822069783],[-71.385802722,41.821951829],[-71.385764055,41.821939388],[-71.385711549,41.821939336],[-71.385670085,41.821945495],[-71.385623106,41.821945449],[-71.385570614,41.821937128],[-71.385518122,41.821928807],[-71.385484927,41.821947378]]],[[[-71.383497512,41.822751541],[-71.383497696,41.822751544],[-71.383497561,41.822751175],[-71.383495642,41.822747103],[-71.383491977,41.822745132],[-71.383484618,41.822740528],[-71.383472678,41.822732558],[-71.383458818,41.822721224],[-71.383442181,41.82270728],[-71.383422768,41.822689949],[-71.383401435,41.822669254],[-71.383377355,41.82264588],[-71.383350527,41.822621224],[-71.383322694,41.822593867],[-71.383294862,41.822565825],[-71.383267919,41.822536434],[-71.383240917,41.822506334],[-71.383215808,41.822477609],[-71.38318978,41.822449545],[-71.383164639,41.822421483],[-71.383139528,41.822393374],[-71.38311439,41.822363962],[-71.383090166,41.822335901],[-71.383069579,41.822308437],[-71.38304991,41.822280929],[-71.3830311,41.822251455],[-71.383011373,41.822221934],[-71.382989813,41.822191772],[-71.382970087,41.822161588],[-71.382959676,41.8221442],[-71.38295122,41.822130078],[-71.382935046,41.822097108],[-71.382921506,41.822061442],[-71.382907937,41.82202509],[-71.382906933,41.822022345],[-71.382895313,41.821990065],[-71.382882689,41.821955063],[-71.382869205,41.821922095],[-71.382857555,41.82188977],[-71.382847708,41.821857424],[-71.382838779,41.821825056],[-71.382832512,41.821791318],[-71.382827161,41.821758244],[-71.382825397,41.821741633],[-71.382805511,41.82183254],[-71.382733511,41.82192154],[-71.382705512,41.82193054],[-71.382463511,41.82251954],[-71.382405511,41.82270354],[-71.382872511,41.82270454],[-71.383100511,41.82271454],[-71.383186512,41.82270454],[-71.383497512,41.822751541]]],[[[-71.38854151,41.820282566],[-71.388548638,41.820314955],[-71.388555797,41.820347321],[-71.388563812,41.820379711],[-71.388571027,41.820414775],[-71.388580103,41.820452586],[-71.388589236,41.820492341],[-71.388600173,41.82053212],[-71.388611052,41.820569864],[-71.388621902,41.820606945],[-71.388632755,41.820642653],[-71.388642689,41.820679047],[-71.388650849,41.820715508],[-71.388659008,41.820753295],[-71.388665363,41.820791057],[-71.388670832,41.820828224],[-71.388675353,41.820865367],[-71.388679877,41.820901161],[-71.388686146,41.820935584],[-71.388693332,41.820970009],[-71.388701378,41.821002376],[-71.388709366,41.821032707],[-71.388718213,41.821061004],[-71.388727861,41.821085918],[-71.388737453,41.821108132],[-71.388747875,41.821127604],[-71.388757354,41.821144376],[-71.38876583,41.821157785],[-71.388773332,41.821168541],[-71.388779889,41.8211779],[-71.388785531,41.821185955],[-71.388791114,41.821192661],[-71.388794865,41.821197993],[-71.388797671,41.821202021],[-71.388798645,41.82120472],[-71.388799618,41.821207397],[-71.388801565,41.821213459],[-71.388805346,41.821218837],[-71.388812703,41.821225499],[-71.388822841,41.821232118],[-71.388834752,41.821239401],[-71.388847609,41.821247349],[-71.388862331,41.821255276],[-71.388877909,41.821263181],[-71.388895261,41.821271065],[-71.388911728,41.821277575],[-71.388928137,41.821282782],[-71.388944517,41.821286617],[-71.388959064,41.82128981],[-71.388970891,41.821292337],[-71.388980025,41.821296279],[-71.38898561,41.821302299],[-71.388987613,41.821310374],[-71.38898787,41.821321214],[-71.388986381,41.821333424],[-71.388983973,41.821346983],[-71.388981594,41.821361251],[-71.388978419,41.821376821],[-71.388975182,41.821392437],[-71.388971856,41.821406041],[-71.388967618,41.821416922],[-71.388959657,41.821424461],[-71.388944422,41.821430072],[-71.388923774,41.821436478],[-71.388902297,41.821445582],[-71.388879987,41.82145871],[-71.388860483,41.821475225],[-71.388843759,41.821493756],[-71.388841644,41.821496795],[-71.388828956,41.821514918],[-71.388815865,41.821536059],[-71.388801919,41.821556558],[-71.388787883,41.821575732],[-71.388772963,41.821594172],[-71.388758959,41.821612637],[-71.388746787,41.821632429],[-71.388737365,41.821653551],[-71.388732495,41.82167662],[-71.388733096,41.82170029],[-71.38873278,41.821723982],[-71.388728826,41.821747052],[-71.388718486,41.821768859],[-71.388700901,41.821789378],[-71.388679682,41.82180795],[-71.388655682,41.821825878],[-71.388631713,41.821843807],[-71.388612267,41.821862335],[-71.388596516,41.821883542],[-71.38858715,41.821907385],[-71.388579646,41.821933196],[-71.388573087,41.821960335],[-71.388566526,41.82198816],[-71.388559994,41.822017357],[-71.388553465,41.822045182],[-71.388546904,41.822073052],[-71.388539429,41.822099504],[-71.388531009,41.822124697],[-71.388523475,41.8221498],[-71.388514138,41.822174306],[-71.388503884,41.822198834],[-71.388491827,41.822223337],[-71.388478881,41.822248549],[-71.388465048,41.822274469],[-71.388449439,41.822301759],[-71.388431137,41.822330418],[-71.38841112,41.822361134],[-71.388387405,41.822390566],[-71.38836458,41.82241865],[-71.388342642,41.822446002],[-71.388320676,41.822472005],[-71.388297822,41.822498717],[-71.388274937,41.822525451],[-71.388251197,41.822552161],[-71.38822923,41.82257885],[-71.388209097,41.822605518],[-71.388190796,41.822633538],[-71.38817341,41.822662861],[-71.388156083,41.822693557],[-71.388138756,41.82272423],[-71.38811779,41.822754968],[-71.388096826,41.822785043],[-71.388073142,41.822814452],[-71.388057028,41.822834],[-71.389999514,41.82318954],[-71.390060513,41.823628541],[-71.390099513,41.82386854],[-71.390823514,41.82381554],[-71.391022514,41.82379654],[-71.391525514,41.82375054],[-71.392311515,41.82368554],[-71.394104515,41.82354854],[-71.394142515,41.82354054],[-71.395309515,41.82340754],[-71.396173516,41.82330254],[-71.397018516,41.82319354],[-71.398697517,41.82306354],[-71.400040517,41.82296454],[-71.400444517,41.822930539],[-71.401350518,41.82286854],[-71.401512517,41.82285754],[-71.402023518,41.822850539],[-71.402634518,41.822850539],[-71.403030518,41.822850539],[-71.403908518,41.822831539],[-71.405357519,41.82267454],[-71.404363518,41.82155954],[-71.404320518,41.821511539],[-71.403709519,41.820835539],[-71.403763518,41.820805539],[-71.404007518,41.820694539],[-71.404326518,41.82049054],[-71.404419518,41.82043154],[-71.404381518,41.820370539],[-71.404366518,41.820331539],[-71.404335518,41.820282539],[-71.404507469,41.820306394],[-71.404414181,41.820051009],[-71.404408609,41.820035979],[-71.404389885,41.819983686],[-71.404331382,41.81993527],[-71.404261898,41.819911017],[-71.404150139,41.819862442],[-71.403529063,41.81927893],[-71.402943256,41.818588991],[-71.402899055,41.818545435],[-71.402857643,41.818496827],[-71.402807691,41.818435542],[-71.402728077,41.818278687],[-71.402726613,41.81827601],[-71.402691724,41.818220295],[-71.402643649,41.818171796],[-71.402594626,41.818122541],[-71.402549258,41.818062678],[-71.402500043,41.817999999],[-71.402447261,41.8179501],[-71.401681462,41.816990837],[-71.401503497,41.816801583],[-71.401448681,41.816743907],[-71.40112569,41.816357171],[-71.401104635,41.816331975],[-71.401071808,41.816288999],[-71.40107156,41.816271275],[-71.401070982,41.816229494],[-71.401276192,41.816134308],[-71.40120973,41.816056863],[-71.400954267,41.816149604],[-71.400710841,41.815851369],[-71.400404745,41.815476377],[-71.40039012,41.815445309],[-71.39960209,41.814588258],[-71.398428189,41.815795632],[-71.398359081,41.815866715],[-71.398302812,41.815840915],[-71.398116348,41.815987659],[-71.398142428,41.816024318],[-71.398138106,41.81603138],[-71.398124835,41.816052796],[-71.397552034,41.816483271],[-71.397509126,41.816532537],[-71.397448325,41.81658826],[-71.397387443,41.816636939],[-71.397321546,41.816667958],[-71.397245304,41.81668694],[-71.397242246,41.816687715],[-71.397159153,41.816708222],[-71.397078068,41.816735752],[-71.397013312,41.816778802],[-71.396961901,41.816830942],[-71.396901991,41.816883143],[-71.396844062,41.816939623],[-71.396798475,41.817000893],[-71.396755568,41.817049427],[-71.396741313,41.817111937],[-71.396713761,41.817174504],[-71.396642258,41.817211236],[-71.396601082,41.817229242],[-71.396563147,41.817245856],[-71.396500121,41.817277564],[-71.396430518,41.817312102],[-71.39634759,41.817343952],[-71.396246654,41.817376631],[-71.39617025,41.81740062],[-71.396084371,41.81742396],[-71.395992749,41.817443842],[-71.395903887,41.817458694],[-71.395816002,41.81747428],[-71.395735781,41.817495475],[-71.395669799,41.817520776],[-71.3956029,41.817546123],[-71.395591217,41.817549405],[-71.395525521,41.817568006],[-71.395440475,41.817585652],[-71.395357328,41.817601219],[-71.39527892,41.817616698],[-71.395202432,41.817635701],[-71.395128788,41.81765402],[-71.395040091,41.817679529],[-71.394960816,41.817701388],[-71.394955801,41.817702092],[-71.394906908,41.817708908],[-71.394076313,41.817665129],[-71.394081715,41.81757789],[-71.393676062,41.817566172],[-71.393656579,41.817664147],[-71.392648346,41.817653581],[-71.392640801,41.817723118],[-71.392495048,41.81782804],[-71.39239028,41.817829246],[-71.392311596,41.817826336],[-71.39223283,41.817817001],[-71.392156825,41.817802728],[-71.392055262,41.817788614],[-71.391967073,41.817784346],[-71.391893074,41.817776432],[-71.391828032,41.817733012],[-71.391799841,41.817681485],[-71.39179894,41.817616995],[-71.391759075,41.817545012],[-71.391681357,41.81751338],[-71.391649702,41.817503631],[-71.391617803,41.817493928],[-71.391586818,41.817485551],[-71.391558585,41.817477177],[-71.391533042,41.817468738],[-71.391512053,41.81746156],[-71.391492008,41.817455732],[-71.391471964,41.817449928],[-71.391453723,41.817444102],[-71.391437259,41.817436196],[-71.391422539,41.817426966],[-71.391406934,41.817417004],[-71.391389466,41.817406422],[-71.39137117,41.817397189],[-71.391352842,41.817388641],[-71.391333657,41.817380802],[-71.391314471,41.817373626],[-71.391292624,41.817367156],[-71.391271692,41.81736206],[-71.391251674,41.817358267],[-71.391235295,41.81735441],[-71.391220749,41.817351263],[-71.391208923,41.817348027],[-71.391196181,41.817344837],[-71.391182523,41.817340936],[-71.391169779,41.817338431],[-71.391157066,41.817335881],[-71.391146155,41.817333995],[-71.391135245,41.817332155],[-71.391123418,41.817329606],[-71.391111593,41.81732637],[-71.391098849,41.81732382],[-71.391086166,41.817322001],[-71.391074339,41.817319451],[-71.391062512,41.817317565],[-71.391050715,41.817315701],[-71.391038918,41.817313838],[-71.391026205,41.81731131],[-71.391012573,41.817309468],[-71.390998972,41.817307648],[-71.390984424,41.817305805],[-71.39096902,41.817304006],[-71.390953585,41.817302185],[-71.390938151,41.817299678],[-71.3909218,41.817297192],[-71.390904562,41.817294729],[-71.390886378,41.817291602],[-71.390867308,41.817287787],[-71.390849125,41.817283997],[-71.390829997,41.817278856],[-71.390811756,41.817273007],[-71.390795321,41.817266497],[-71.390778827,41.817257928],[-71.390763221,41.817248629],[-71.390747557,41.817238026],[-71.390733728,41.817226715],[-71.390721643,41.817214035],[-71.390710475,41.817201995],[-71.390700253,41.817190642],[-71.390690977,41.81718064],[-71.390683502,41.817171943],[-71.390677948,41.817165923],[-71.390674196,41.817161231],[-71.390671389,41.81715789],[-71.390669558,41.817155876],[-71.39066678,41.817153883],[-71.390661253,41.817149899],[-71.390653867,41.817143214],[-71.390644588,41.817134561],[-71.390634365,41.817123872],[-71.390624086,41.817110461],[-71.390612834,41.81709371],[-71.390600606,41.817075655],[-71.390587463,41.817056181],[-71.390572515,41.817037438],[-71.390558486,41.817018009],[-71.390542652,41.816999264],[-71.390524984,41.816980564],[-71.39050557,41.816963256],[-71.390485268,41.816947298],[-71.39046408,41.816931338],[-71.390442919,41.81691675],[-71.390424479,41.816902806],[-71.390410534,41.816887425],[-71.390399251,41.81687136],[-71.390388915,41.816855251],[-71.390376716,41.816837813],[-71.39036366,41.81682177],[-71.390348799,41.816805724],[-71.390332133,41.816791095],[-71.390316442,41.816777771],[-71.39030075,41.816765818],[-71.390285145,41.816755856],[-71.39026954,41.816746602],[-71.390252159,41.816738718],[-71.390230253,41.816730899],[-71.390201991,41.816721816],[-71.390169177,41.816711448],[-71.390133612,41.816700437],[-71.390096215,41.816688121],[-71.390057902,41.816675095],[-71.390017814,41.816663485],[-71.389975922,41.816651896],[-71.389933141,41.816641633],[-71.389892194,41.816632057],[-71.389853079,41.816623147],[-71.389817601,41.816614811],[-71.389785759,41.816607829],[-71.389757554,41.816601444],[-71.389731183,41.816595038],[-71.389706613,41.816589961],[-71.389684795,41.816584863],[-71.389665695,41.816581071],[-71.389647512,41.816577281],[-71.389632079,41.816574773],[-71.389618447,41.816572931],[-71.389607538,41.816570382],[-71.389598432,41.816568475],[-71.389589384,41.816567917],[-71.389579448,41.816568045],[-71.389564987,41.816568923],[-71.389544255,41.816571944],[-71.389517166,41.81657432],[-71.389484725,41.816578153],[-71.389451365,41.816582695],[-71.389417117,41.816587899],[-71.389383757,41.816592418],[-71.389350398,41.816596959],[-71.389319729,41.816600772],[-71.389290006,41.816605911],[-71.389262144,41.816613042],[-71.389233423,41.816622231],[-71.389202926,41.816632812],[-71.389168821,41.816644122],[-71.389134745,41.816656118],[-71.389099723,41.816667405],[-71.389064732,41.816678028],[-71.389028796,41.816687346],[-71.388990998,41.816695291],[-71.388952282,41.81670328],[-71.38891537,41.816711249],[-71.388879376,41.816718486],[-71.388845157,41.816725062],[-71.388811856,41.81673093],[-71.388779411,41.816736799],[-71.388749689,41.816741275],[-71.38872174,41.816745753],[-71.388697429,41.816750143],[-71.388676725,41.816754468],[-71.38865963,41.816758088],[-71.388646144,41.816761002],[-71.388636235,41.816763165],[-71.38862905,41.816763913],[-71.388625412,41.816764001],[-71.388620887,41.816764065],[-71.388615476,41.816764105],[-71.388604624,41.816764255],[-71.388590192,41.816765819],[-71.388570348,41.816768132],[-71.388549615,41.816771794],[-71.388528025,41.816776141],[-71.38850735,41.816781198],[-71.388489338,41.816784816],[-71.388475852,41.816787685],[-71.388467775,41.816791199],[-71.38846159,41.816796704],[-71.388454603,41.816806942],[-71.388443206,41.816821316],[-71.388429174,41.816839094],[-71.388413424,41.816860301],[-71.388396813,41.816884205],[-71.388381121,41.816907448],[-71.388364511,41.816930666],[-71.388348731,41.816951873],[-71.388333868,41.816972372],[-71.388319864,41.816991545],[-71.38830675,41.817009301],[-71.388292688,41.817026393],[-71.388280374,41.817040788],[-71.388269864,41.817054454],[-71.388262906,41.817065378],[-71.388258639,41.817075619],[-71.388255201,41.817083757],[-71.388250849,41.817089927],[-71.388244635,41.817094747],[-71.388237505,41.817098902],[-71.388230375,41.81710308],[-71.388224132,41.81710655],[-71.388219692,41.817110639],[-71.388216228,41.817116101],[-71.388212762,41.817122913],[-71.388208466,41.817132445],[-71.388202454,41.817144033],[-71.38819555,41.817158343],[-71.388189651,41.817175374],[-71.388184725,41.817195722],[-71.388178996,41.817220163],[-71.38817152,41.817247324],[-71.388163215,41.817276565],[-71.388153992,41.817306446],[-71.388143911,41.817337697],[-71.388133829,41.817368972],[-71.388123748,41.817400269],[-71.388112721,41.817430171],[-71.388102612,41.81745941],[-71.388091556,41.817488648],[-71.38808053,41.81751791],[-71.388070391,41.817547149],[-71.388060281,41.817577051],[-71.388051087,41.817607663],[-71.388040977,41.817637543],[-71.38803267,41.817668133],[-71.38802531,41.817698679],[-71.388019694,41.81772854],[-71.388014969,41.81775632],[-71.388010126,41.817780785],[-71.388005258,41.817802506],[-71.388001191,41.817820797],[-71.387997066,41.817837098],[-71.387993772,41.817850679],[-71.387992283,41.817862889],[-71.387991651,41.817874392],[-71.387990992,41.817884568],[-71.387991249,41.817894699],[-71.387991479,41.817903481],[-71.387992565,41.8179116],[-71.387997261,41.817918328],[-71.38800734,41.817923598],[-71.388022861,41.817928781],[-71.388043736,41.817931866],[-71.388068218,41.817934908],[-71.388093646,41.817938615],[-71.388119075,41.817942322],[-71.388143585,41.817946713],[-71.388167209,41.817950464],[-71.388189888,41.817953528],[-71.388211679,41.817956613],[-71.388232555,41.817959035],[-71.38825068,41.817960836],[-71.388267948,41.817963277],[-71.388281549,41.81796512],[-71.388292488,41.817968378],[-71.388301622,41.817972274],[-71.388308122,41.817978981],[-71.388312905,41.817988385],[-71.388314076,41.818000529],[-71.38831442,41.818014045],[-71.388314791,41.818028956],[-71.388315133,41.818043135],[-71.388316422,41.818058046],[-71.388317624,41.818070168],[-71.388318798,41.818080323],[-71.388319885,41.818088419],[-71.388320971,41.818096516],[-71.388322088,41.818104635],[-71.388323205,41.818112732],[-71.388323376,41.818120187],[-71.388323548,41.818126934],[-71.388414616,41.818480252],[-71.388418224,41.81848021],[-71.388425469,41.818480126],[-71.388434517,41.818480683],[-71.388465615,41.818494435],[-71.38846759,41.818501183],[-71.38846779,41.818509301],[-71.388468907,41.818517398],[-71.388495852,41.818546124],[-71.388507677,41.81854936],[-71.388557818,41.818564228],[-71.388565177,41.818569518],[-71.388564059,41.818597302],[-71.388556098,41.818604155],[-71.388551114,41.818622491],[-71.388552288,41.818633332],[-71.388555293,41.818645455],[-71.388558328,41.818658287],[-71.38856228,41.818671075],[-71.388566202,41.818683885],[-71.388569208,41.818695345],[-71.388573103,41.81870612],[-71.388576966,41.818716895],[-71.388582664,41.818728312],[-71.388586587,41.81873975],[-71.388588677,41.818751232],[-71.388588933,41.818762072],[-71.388588303,41.818772911],[-71.38858859,41.818783729],[-71.388587841,41.818792509],[-71.388587154,41.818800673],[-71.388586438,41.818808105],[-71.388586638,41.818816246],[-71.388587755,41.818824343],[-71.388589787,41.818833766],[-71.388590455,41.818836351],[-71.388592794,41.818845272],[-71.388597661,41.818859364],[-71.388606163,41.818874809],[-71.388616559,41.818891604],[-71.388629644,41.818909043],[-71.388642729,41.818926436],[-71.38865762,41.818942481],[-71.388674283,41.818959192],[-71.388690978,41.81897517],[-71.388707701,41.818992544],[-71.388720814,41.819011309],[-71.388728573,41.819032173],[-71.388729116,41.819054493],[-71.388728255,41.819057442],[-71.388722443,41.819076921],[-71.388713966,41.819099392],[-71.388704515,41.819119805],[-71.388694119,41.819138204],[-71.388687274,41.819154549],[-71.388684037,41.819170142],[-71.388684408,41.819185053],[-71.388684523,41.819189398],[-71.388684809,41.819200581],[-71.388685209,41.819216818],[-71.388683834,41.819234449],[-71.388680653,41.819252763],[-71.388673008,41.819271806],[-71.388662669,41.819292926],[-71.388650496,41.819313405],[-71.388637437,41.819333882],[-71.388622604,41.819355067],[-71.388608628,41.819375567],[-71.388597072,41.819393028],[-71.38859554,41.819395381],[-71.388586032,41.819413073],[-71.388582824,41.819429375],[-71.388583195,41.819444926],[-71.388588148,41.819461785],[-71.38859585,41.819480636],[-71.388604498,41.819500792],[-71.388615864,41.819522322],[-71.38862729,41.819544493],[-71.388638685,41.819566641],[-71.38865011,41.819589521],[-71.388661505,41.819611692],[-71.388672014,41.819633839],[-71.388679802,41.819656098],[-71.388686672,41.819678333],[-71.388693544,41.819699882],[-71.388703137,41.81972141],[-71.388713615,41.819743557],[-71.388725957,41.819766392],[-71.388740072,41.819789252],[-71.388754218,41.819812043],[-71.388769222,41.819833485],[-71.388781506,41.819854971],[-71.388792874,41.819875106],[-71.388803296,41.819894578],[-71.388810024,41.81991073],[-71.388813117,41.819925597],[-71.388808877,41.819937805],[-71.388798311,41.819948795],[-71.388781112,41.819958589],[-71.388759851,41.819966915],[-71.388734738,41.819974735],[-71.38870779,41.81998253],[-71.38869109,41.819987476],[-71.388679038,41.819991032],[-71.388652119,41.820000222],[-71.388626145,41.820010716],[-71.388601147,41.82002327],[-71.388577949,41.820037129],[-71.388558476,41.820054307],[-71.388544501,41.820074121],[-71.388534219,41.820097254],[-71.388526715,41.820123088],[-71.388523821,41.82015222],[-71.388524591,41.820184031],[-71.388529029,41.820216417],[-71.388534383,41.820249514],[-71.38854151,41.820282566]]]]}}"}, +{"type": "precinct", "typeId": 2810, "areaId": 25894, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":233,\"NAME\":\"2810\",\"SHAPE_Length\":0.055966859718638,\"SHAPE_Area\":-6.5678253878692e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.405357519,41.82267454],[-71.405609519,41.822933539],[-71.405869519,41.823201539],[-71.406166519,41.82350654],[-71.406433519,41.82378054],[-71.40665452,41.82399054],[-71.40673152,41.82408654],[-71.406860519,41.824295539],[-71.40686852,41.82431854],[-71.40712052,41.82471954],[-71.40731852,41.82497454],[-71.40781452,41.82561554],[-71.40783752,41.82565054],[-71.40815052,41.826008541],[-71.40819752,41.82608454],[-71.40827852,41.82621554],[-71.40873052,41.826943541],[-71.40905852,41.82749654],[-71.40954652,41.82730954],[-71.409912521,41.82718754],[-71.410043521,41.827118541],[-71.40995752,41.82699054],[-71.409811521,41.82680054],[-71.409654521,41.82662554],[-71.40935752,41.82629254],[-71.40937752,41.82622154],[-71.409267521,41.82613754],[-71.409226521,41.826106541],[-71.40902852,41.82594554],[-71.408780521,41.82577354],[-71.40859752,41.82561554],[-71.40848152,41.82548254],[-71.40844952,41.82543754],[-71.40863652,41.82535954],[-71.40873052,41.82532554],[-71.40881352,41.82531454],[-71.40894352,41.82529954],[-71.40892052,41.82524554],[-71.40886452,41.82514654],[-71.40881352,41.82505854],[-71.40864652,41.824742539],[-71.40850852,41.82447554],[-71.40844752,41.82429954],[-71.40843252,41.824238539],[-71.40843252,41.82421154],[-71.40839452,41.823986539],[-71.40838652,41.82386154],[-71.40845152,41.82386054],[-71.40859252,41.82385754],[-71.40871452,41.82383454],[-71.40875252,41.82381954],[-71.40892052,41.82366254],[-71.40905552,41.823519539],[-71.40911952,41.82345254],[-71.40915752,41.82341054],[-71.40944752,41.82309854],[-71.40969852,41.822819539],[-71.410126521,41.822422539],[-71.41034752,41.822178539],[-71.410980521,41.821499539],[-71.411285521,41.821152539],[-71.41180452,41.820607539],[-71.412537521,41.819867538],[-71.412933521,41.819447539],[-71.413361522,41.819024539],[-71.413712522,41.818642538],[-71.414108521,41.818207539],[-71.414146521,41.818173538],[-71.414719522,41.817578538],[-71.414818522,41.817479538],[-71.414992522,41.817288538],[-71.415291522,41.816979539],[-71.414833521,41.816738538],[-71.414391522,41.816498538],[-71.413535521,41.816038538],[-71.41264352,41.815560538],[-71.41190352,41.815190538],[-71.41178952,41.815129538],[-71.41155252,41.815014538],[-71.41145352,41.814972537],[-71.41109552,41.814843538],[-71.41066052,41.814705538],[-71.41039352,41.814629538],[-71.40986652,41.814495538],[-71.40967652,41.814427537],[-71.40896652,41.814221538],[-71.40856252,41.814064538],[-71.40844752,41.814026538],[-71.408340519,41.813980537],[-71.40823452,41.813927538],[-71.40813452,41.813866538],[-71.407852519,41.813710538],[-71.407700519,41.813599538],[-71.407379519,41.813328538],[-71.407295519,41.813248538],[-71.407204519,41.813145538],[-71.407127519,41.813038538],[-71.407043519,41.812929537],[-71.406960519,41.812821538],[-71.406937519,41.813084537],[-71.406921519,41.813298537],[-71.406860519,41.813912538],[-71.406853519,41.813931538],[-71.406845519,41.814011538],[-71.406837519,41.814042538],[-71.406792518,41.814518538],[-71.406772519,41.814579538],[-71.406738519,41.815026538],[-71.406654519,41.815693538],[-71.406654519,41.815739538],[-71.406517519,41.816830538],[-71.406517519,41.816868538],[-71.406387519,41.816780539],[-71.406311519,41.816841539],[-71.406189518,41.816903538],[-71.405106518,41.817322539],[-71.404556518,41.817555539],[-71.404480518,41.817677539],[-71.404480455,41.81767756],[-71.404517449,41.817768844],[-71.404528451,41.817791882],[-71.404566074,41.817839755],[-71.40458249,41.81786019],[-71.404548649,41.817880332],[-71.404695928,41.81817681],[-71.40475552,41.818170662],[-71.405684117,41.819646002],[-71.406008266,41.819521519],[-71.406272436,41.819709372],[-71.406564137,41.819634783],[-71.406826738,41.819578122],[-71.406830857,41.819583751],[-71.406884708,41.819657729],[-71.406615225,41.819696022],[-71.406559923,41.819736889],[-71.406498178,41.819792638],[-71.406450484,41.819836233],[-71.406394121,41.819870719],[-71.406323458,41.819899613],[-71.406234737,41.819922318],[-71.406143029,41.819937908],[-71.406067518,41.819958359],[-71.405997804,41.819985859],[-71.405923379,41.820016213],[-71.405887278,41.820076031],[-71.405872974,41.820135684],[-71.405872075,41.820207285],[-71.405876556,41.820216139],[-71.406057872,41.820575532],[-71.406116767,41.82069221],[-71.406177792,41.820815591],[-71.406262335,41.820954679],[-71.406426771,41.821257388],[-71.406577916,41.821512703],[-71.406667244,41.821663549],[-71.406851361,41.821973935],[-71.407064541,41.822314348],[-71.407404403,41.82281412],[-71.407633469,41.823146106],[-71.407673762,41.823169167],[-71.408062684,41.82383258],[-71.40802346,41.823852192],[-71.408109892,41.8240018],[-71.408109088,41.824050761],[-71.408070792,41.824085011],[-71.407704646,41.824209328],[-71.407678175,41.824162632],[-71.407580471,41.824006749],[-71.407536531,41.824011036],[-71.407511259,41.824001937],[-71.407467158,41.823948137],[-71.407429506,41.823853065],[-71.407358065,41.823718814],[-71.407207986,41.823544845],[-71.407206957,41.823516853],[-71.407087764,41.82335958],[-71.406977012,41.823200896],[-71.406930966,41.82311844],[-71.406843771,41.823033892],[-71.406752761,41.822924163],[-71.406687963,41.822828405],[-71.406627874,41.822731942],[-71.406564968,41.822638289],[-71.406470241,41.82254118],[-71.406379215,41.822422372],[-71.406303196,41.822328045],[-71.406294657,41.82227137],[-71.406238369,41.822210584],[-71.406135258,41.822119071],[-71.406080819,41.822048477],[-71.406002099,41.821982825],[-71.405853848,41.821797627],[-71.405804144,41.821750843],[-71.405560587,41.821511848],[-71.405558481,41.821509765],[-71.405496605,41.821445522],[-71.405505,41.821432906],[-71.405416817,41.821337173],[-71.405428026,41.821323873],[-71.405224535,41.821117041],[-71.405196473,41.821114982],[-71.405086837,41.821034691],[-71.405051222,41.821013051],[-71.404993079,41.82094737],[-71.40491335,41.820862141],[-71.40482709,41.820769886],[-71.404769591,41.820702924],[-71.404704565,41.820660883],[-71.404654563,41.820610256],[-71.404621569,41.820553126],[-71.404594174,41.820493119],[-71.404556382,41.820434589],[-71.404545991,41.820411849],[-71.404507469,41.820306394],[-71.404335518,41.820282539],[-71.404366518,41.820331539],[-71.404381518,41.820370539],[-71.404419518,41.82043154],[-71.404326518,41.82049054],[-71.404007518,41.820694539],[-71.403763518,41.820805539],[-71.403709519,41.820835539],[-71.404320518,41.821511539],[-71.404363518,41.82155954],[-71.405357519,41.82267454]]]]}}"}, +{"type": "precinct", "typeId": 2811, "areaId": 25882, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":221,\"NAME\":\"2811\",\"SHAPE_Length\":0.051146037857913,\"SHAPE_Area\":-8.3185137501907e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.424400527,41.849743544],[-71.424454527,41.849800545],[-71.424690527,41.849682545],[-71.424744527,41.849644545],[-71.424850527,41.849572544],[-71.425011526,41.849430545],[-71.425095527,41.849339544],[-71.425514526,41.848908544],[-71.425995527,41.849194544],[-71.427013528,41.848308544],[-71.427238527,41.848072544],[-71.427696528,41.848355544],[-71.427811528,41.848374544],[-71.427879527,41.848381544],[-71.428238528,41.847996544],[-71.428569528,41.847665544],[-71.428688528,41.847546544],[-71.428711528,41.847493544],[-71.428650528,41.847420544],[-71.428589528,41.847332544],[-71.429123528,41.846985544],[-71.429672528,41.846623543],[-71.429565528,41.846524544],[-71.429337528,41.846344544],[-71.428993528,41.846062543],[-71.428902528,41.845936544],[-71.428726528,41.845551543],[-71.428658527,41.845398543],[-71.428169527,41.844342543],[-71.427887528,41.843743543],[-71.427864527,41.843693543],[-71.427849528,41.843647543],[-71.427780527,41.843483542],[-71.427757527,41.843266543],[-71.427742527,41.843182543],[-71.427704527,41.842961543],[-71.427582527,41.842297542],[-71.427513527,41.841893543],[-71.427498527,41.841763543],[-71.427467527,41.841622543],[-71.427406527,41.841305542],[-71.427361527,41.841137543],[-71.427315527,41.841027542],[-71.427261527,41.840927543],[-71.427231527,41.840859542],[-71.427155527,41.840729543],[-71.427032527,41.840577542],[-71.426880526,41.840413542],[-71.426399527,41.839898542],[-71.425827526,41.839264542],[-71.425814526,41.839248542],[-71.425079526,41.838589542],[-71.425049526,41.838566542],[-71.424934526,41.838471542],[-71.424774526,41.838368542],[-71.424194526,41.838021542],[-71.423904526,41.837868542],[-71.423703525,41.837785542],[-71.423004525,41.838265542],[-71.422401525,41.838387542],[-71.421901525,41.838608542],[-71.421401525,41.838442542],[-71.421249525,41.838654542],[-71.421013525,41.839035543],[-71.420273524,41.840172542],[-71.419861524,41.840821543],[-71.419609524,41.840733542],[-71.419578525,41.840727543],[-71.419556524,41.840718542],[-71.419449524,41.840695542],[-71.419327525,41.840683543],[-71.419128524,41.840672543],[-71.418968524,41.840691543],[-71.418861525,41.840641542],[-71.418104524,41.840641542],[-71.417953524,41.840641542],[-71.418009524,41.840743543],[-71.418030524,41.840783543],[-71.418266524,41.841214543],[-71.418968524,41.842461543],[-71.419472524,41.843338543],[-71.419563525,41.843502544],[-71.420311525,41.844773543],[-71.420647525,41.845292544],[-71.420914525,41.845673543],[-71.421509526,41.846436544],[-71.421959526,41.846966544],[-71.422676526,41.847779544],[-71.423584526,41.848820544],[-71.424400527,41.849743544]]],[[[-71.437439531,41.853344545],[-71.436600531,41.853444545],[-71.436485531,41.853470544],[-71.436317531,41.853531544],[-71.436096531,41.853562545],[-71.43572253,41.853592545],[-71.43507453,41.853657545],[-71.43506053,41.853699545],[-71.43492153,41.854100545],[-71.434677531,41.854729545],[-71.43626453,41.854889545],[-71.436325531,41.854893544],[-71.437721532,41.855042545],[-71.439362531,41.855202545],[-71.439941532,41.855263544],[-71.441116532,41.855385545],[-71.440437532,41.854939545],[-71.439781532,41.854512545],[-71.439636531,41.854412545],[-71.439316532,41.854206545],[-71.439163532,41.854103545],[-71.438789532,41.853856545],[-71.438220531,41.853478545],[-71.437920531,41.853279544],[-71.437439531,41.853344545]]]]}}"}, +{"type": "precinct", "typeId": 2812, "areaId": 25883, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":222,\"NAME\":\"2812\",\"SHAPE_Length\":0.058223947687639,\"SHAPE_Area\":-0.00014271523016554},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.411186522,41.845993544],[-71.411301522,41.846089544],[-71.411331522,41.846123544],[-71.411415522,41.846203544],[-71.411568523,41.846299544],[-71.411751522,41.846413544],[-71.411934522,41.846535544],[-71.412125522,41.846634544],[-71.412187522,41.846664544],[-71.412689522,41.846905544],[-71.412971523,41.847040544],[-71.413107523,41.847105544],[-71.413146523,41.847124544],[-71.413226523,41.847162544],[-71.413414523,41.847252544],[-71.413933523,41.847496544],[-71.414711523,41.847851544],[-71.414413523,41.848320544],[-71.414124524,41.848809544],[-71.414024523,41.848961545],[-71.413773523,41.849366545],[-71.413574523,41.849720545],[-71.413528523,41.849812545],[-71.413437523,41.850113545],[-71.413033522,41.851658545],[-71.413025523,41.851712545],[-71.413010523,41.851780545],[-71.412857522,41.852394545],[-71.412628523,41.853199545],[-71.412865523,41.853245545],[-71.413063523,41.853283545],[-71.413368523,41.853333545],[-71.413574523,41.853371545],[-71.414085524,41.853466546],[-71.414291523,41.853501545],[-71.415024523,41.853627545],[-71.415348524,41.853686545],[-71.415718524,41.853753545],[-71.416023524,41.853802545],[-71.416473524,41.853878545],[-71.416916524,41.853959545],[-71.417152524,41.854000545],[-71.417282525,41.854023545],[-71.417366524,41.854027545],[-71.417442524,41.854016545],[-71.417793524,41.853913546],[-71.417839525,41.854039545],[-71.417969524,41.854451545],[-71.418205525,41.855225545],[-71.418640525,41.855168545],[-71.418861525,41.855149545],[-71.419289525,41.855091545],[-71.420036525,41.855011545],[-71.420647526,41.854935545],[-71.420708526,41.854939545],[-71.420692526,41.854855545],[-71.421425526,41.854786545],[-71.422150526,41.854718545],[-71.422531526,41.854679545],[-71.422554526,41.854672545],[-71.422570526,41.854651545],[-71.422600526,41.854580545],[-71.422676526,41.854248545],[-71.422791526,41.853779545],[-71.423035527,41.852883544],[-71.422638526,41.852707544],[-71.422844526,41.852452545],[-71.422997527,41.852238545],[-71.423338526,41.851752544],[-71.423355526,41.851738544],[-71.423874527,41.851967544],[-71.424469527,41.852223544],[-71.425117527,41.852497544],[-71.425446527,41.852635545],[-71.425659527,41.852734545],[-71.425804528,41.852795545],[-71.425914527,41.852844544],[-71.426018528,41.852890545],[-71.426338527,41.853016545],[-71.426376527,41.853020544],[-71.426483528,41.853049545],[-71.426628527,41.853089545],[-71.426590527,41.852978545],[-71.426376527,41.852490545],[-71.426262527,41.852246545],[-71.426140527,41.852009544],[-71.425995527,41.851754544],[-71.425880527,41.851563544],[-71.425779527,41.851409544],[-71.425735527,41.851342544],[-71.425537527,41.851071544],[-71.425247527,41.850701544],[-71.424507526,41.849865544],[-71.424454527,41.849800545],[-71.424400527,41.849743544],[-71.423584526,41.848820544],[-71.422676526,41.847779544],[-71.421959526,41.846966544],[-71.421509526,41.846436544],[-71.420914525,41.845673543],[-71.420647525,41.845292544],[-71.420311525,41.844773543],[-71.419563525,41.843502544],[-71.419472524,41.843338543],[-71.418968524,41.842461543],[-71.418266524,41.841214543],[-71.418030524,41.840783543],[-71.418009524,41.840743543],[-71.417953524,41.840641542],[-71.417801524,41.840639542],[-71.417710524,41.840638542],[-71.417686524,41.840641542],[-71.417618523,41.840630543],[-71.417556524,41.840607543],[-71.417511524,41.840577542],[-71.417465524,41.840516543],[-71.417442523,41.840428543],[-71.417351524,41.840321543],[-71.417290524,41.840275543],[-71.417198524,41.840214542],[-71.417053523,41.840096542],[-71.416959523,41.840032542],[-71.416864524,41.839967543],[-71.416798523,41.839920542],[-71.416382524,41.839615543],[-71.416221523,41.839478543],[-71.416161523,41.839428542],[-71.415642523,41.838982542],[-71.415619523,41.838967542],[-71.414513523,41.838074542],[-71.414276523,41.837868542],[-71.414062523,41.837685542],[-71.413887523,41.837544542],[-71.413812523,41.837489542],[-71.413727522,41.837544542],[-71.412643522,41.838189542],[-71.412590522,41.838231543],[-71.412376522,41.838379542],[-71.412071522,41.838627542],[-71.411880522,41.838810542],[-71.411652522,41.839096543],[-71.411545522,41.839253542],[-71.411430522,41.839444543],[-71.411331521,41.839646542],[-71.411232521,41.839913543],[-71.411179522,41.840134543],[-71.411148522,41.840332543],[-71.411148522,41.840451543],[-71.411140522,41.840569543],[-71.411140522,41.840847543],[-71.411133522,41.840935543],[-71.411146522,41.841773543],[-71.411171521,41.843377543],[-71.411179522,41.843567543],[-71.411156522,41.844063544],[-71.411158522,41.844181543],[-71.411186522,41.845993544]]]]}}"}, +{"type": "precinct", "typeId": 2813, "areaId": 25884, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":223,\"NAME\":\"2813\",\"SHAPE_Length\":0.042418024277051,\"SHAPE_Area\":-7.0184118802089e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.427261527,41.840927543],[-71.427444527,41.840916542],[-71.427605527,41.840931542],[-71.428505527,41.841027542],[-71.428833527,41.840226542],[-71.428848528,41.840176542],[-71.429092528,41.839573542],[-71.429169527,41.839394542],[-71.429359527,41.838906542],[-71.429611527,41.838337542],[-71.429626528,41.838292542],[-71.429878528,41.837658542],[-71.429924527,41.837536541],[-71.430069528,41.837197542],[-71.430420528,41.836338542],[-71.430450527,41.836239541],[-71.430328528,41.836190541],[-71.430130528,41.836140541],[-71.429962527,41.836106542],[-71.429825527,41.836090542],[-71.429688527,41.836087542],[-71.429535527,41.836087542],[-71.428963528,41.836125542],[-71.428421527,41.836167542],[-71.428246527,41.836171541],[-71.428200527,41.836174541],[-71.428024527,41.836151541],[-71.427879527,41.836121541],[-71.427353527,41.835915542],[-71.427185527,41.835850542],[-71.426521527,41.835579542],[-71.426117527,41.835419541],[-71.425644526,41.835221541],[-71.425339526,41.835106541],[-71.424850526,41.834912541],[-71.424042526,41.834587542],[-71.423737526,41.834469542],[-71.423027525,41.834179542],[-71.421974525,41.833775541],[-71.421890525,41.833790542],[-71.420586524,41.833996541],[-71.420204525,41.834050541],[-71.419815524,41.834107541],[-71.419662525,41.834134541],[-71.419098524,41.834221541],[-71.418000524,41.834387542],[-71.417732524,41.834427542],[-71.417099523,41.834526542],[-71.416718524,41.834584542],[-71.416679524,41.834587542],[-71.416413523,41.834646542],[-71.416367524,41.834771541],[-71.416319523,41.834753541],[-71.416283523,41.834744542],[-71.416220523,41.834864541],[-71.416168523,41.834961541],[-71.416008523,41.835328542],[-71.415863523,41.835598542],[-71.415703523,41.835850542],[-71.415512523,41.836113541],[-71.415443523,41.836190541],[-71.415268523,41.836384541],[-71.415112523,41.836535542],[-71.415047523,41.836599542],[-71.415021523,41.836624542],[-71.414970523,41.836674542],[-71.414841523,41.836781542],[-71.414566523,41.836998542],[-71.414513523,41.837033542],[-71.413812523,41.837489542],[-71.413887523,41.837544542],[-71.414062523,41.837685542],[-71.414276523,41.837868542],[-71.414513523,41.838074542],[-71.415619523,41.838967542],[-71.415642523,41.838982542],[-71.416161523,41.839428542],[-71.416221523,41.839478543],[-71.416382524,41.839615543],[-71.416798523,41.839920542],[-71.416864524,41.839967543],[-71.416959523,41.840032542],[-71.417053523,41.840096542],[-71.417198524,41.840214542],[-71.417290524,41.840275543],[-71.417351524,41.840321543],[-71.417442523,41.840428543],[-71.417465524,41.840516543],[-71.417511524,41.840577542],[-71.417556524,41.840607543],[-71.417618523,41.840630543],[-71.417686524,41.840641542],[-71.417710524,41.840638542],[-71.417801524,41.840639542],[-71.417953524,41.840641542],[-71.418104524,41.840641542],[-71.418861525,41.840641542],[-71.418968524,41.840691543],[-71.419128524,41.840672543],[-71.419327525,41.840683543],[-71.419449524,41.840695542],[-71.419556524,41.840718542],[-71.419578525,41.840727543],[-71.419609524,41.840733542],[-71.419861524,41.840821543],[-71.420273524,41.840172542],[-71.421013525,41.839035543],[-71.421249525,41.838654542],[-71.421401525,41.838442542],[-71.421901525,41.838608542],[-71.422401525,41.838387542],[-71.423004525,41.838265542],[-71.423703525,41.837785542],[-71.423904526,41.837868542],[-71.424194526,41.838021542],[-71.424774526,41.838368542],[-71.424934526,41.838471542],[-71.425049526,41.838566542],[-71.425079526,41.838589542],[-71.425814526,41.839248542],[-71.425827526,41.839264542],[-71.426399527,41.839898542],[-71.426880526,41.840413542],[-71.427032527,41.840577542],[-71.427155527,41.840729543],[-71.427231527,41.840859542],[-71.427261527,41.840927543]]]]}}"}, +{"type": "precinct", "typeId": 2814, "areaId": 25885, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":224,\"NAME\":\"2814\",\"SHAPE_Length\":0.034588665783126,\"SHAPE_Area\":-5.7662795665946e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.428055528,41.853482545],[-71.428360528,41.853566544],[-71.428786528,41.853674545],[-71.428825528,41.853684544],[-71.430069529,41.853993545],[-71.430687529,41.854149545],[-71.430992529,41.854222545],[-71.431618529,41.854382545],[-71.431679529,41.854399545],[-71.431702529,41.854409545],[-71.431931529,41.854451545],[-71.43258753,41.854519545],[-71.43360153,41.854622545],[-71.434677531,41.854729545],[-71.43492153,41.854100545],[-71.43506053,41.853699545],[-71.43507453,41.853657545],[-71.43572253,41.853592545],[-71.436096531,41.853562545],[-71.436317531,41.853531544],[-71.436485531,41.853470544],[-71.436600531,41.853444545],[-71.437439531,41.853344545],[-71.437920531,41.853279544],[-71.437622531,41.853085544],[-71.437279531,41.852848544],[-71.437141531,41.852761545],[-71.435921531,41.851960544],[-71.43586053,41.851918544],[-71.435669531,41.851788545],[-71.435516531,41.851658544],[-71.43503653,41.851273544],[-71.43454053,41.850846544],[-71.43415853,41.850529544],[-71.43409953,41.850478544],[-71.43413153,41.850462544],[-71.43400653,41.850155544],[-71.433685529,41.849549544],[-71.433403529,41.848923544],[-71.433090529,41.848339543],[-71.433022529,41.848263543],[-71.432938529,41.848164543],[-71.432793529,41.848042544],[-71.432739529,41.847996544],[-71.432228529,41.847714544],[-71.430931529,41.847119543],[-71.430565528,41.846947544],[-71.429565528,41.846524544],[-71.429672528,41.846623543],[-71.429123528,41.846985544],[-71.428589528,41.847332544],[-71.428650528,41.847420544],[-71.428711528,41.847493544],[-71.428688528,41.847546544],[-71.428569528,41.847665544],[-71.428238528,41.847996544],[-71.427879527,41.848381544],[-71.427811528,41.848374544],[-71.427696528,41.848355544],[-71.427238527,41.848072544],[-71.427013528,41.848308544],[-71.425995527,41.849194544],[-71.425514526,41.848908544],[-71.425095527,41.849339544],[-71.425011526,41.849430545],[-71.424850527,41.849572544],[-71.424744527,41.849644545],[-71.424690527,41.849682545],[-71.424454527,41.849800545],[-71.424507526,41.849865544],[-71.425247527,41.850701544],[-71.425537527,41.851071544],[-71.425735527,41.851342544],[-71.425779527,41.851409544],[-71.425880527,41.851563544],[-71.425995527,41.851754544],[-71.426140527,41.852009544],[-71.426262527,41.852246545],[-71.426376527,41.852490545],[-71.426590527,41.852978545],[-71.426628527,41.853089545],[-71.426773528,41.853127545],[-71.427612528,41.853360545],[-71.427704528,41.853386545],[-71.428055528,41.853482545]]]]}}"}, +{"type": "precinct", "typeId": 2815, "areaId": 25895, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":234,\"NAME\":\"2815\",\"SHAPE_Length\":0.078334013053305,\"SHAPE_Area\":-0.0002250872150153},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.372635509,41.839108544],[-71.372638634,41.839110304],[-71.37263565,41.839107687],[-71.372635509,41.839108544]]],[[[-71.374526511,41.857144547],[-71.374529816,41.8571442],[-71.374526146,41.857143451],[-71.374526511,41.857144547]]],[[[-71.379298283,41.856929081],[-71.379298617,41.856962881],[-71.379296229,41.85699661],[-71.379291942,41.857031091],[-71.379284015,41.857066278],[-71.37927514,41.857100777],[-71.379263515,41.857133924],[-71.379249106,41.857167068],[-71.379238821,41.857185528],[-71.383698514,41.856907547],[-71.387566515,41.856991547],[-71.391124516,41.856712546],[-71.391212516,41.856713547],[-71.391243516,41.856659547],[-71.391266516,41.856602547],[-71.391449516,41.856228547],[-71.391373516,41.856175547],[-71.390999516,41.855442546],[-71.390785516,41.855011546],[-71.390610515,41.854706546],[-71.390442516,41.854458546],[-71.390297515,41.854233546],[-71.390244516,41.854168546],[-71.390152516,41.854039546],[-71.389809515,41.853638546],[-71.389679515,41.853489546],[-71.389305515,41.853123546],[-71.389000515,41.852875546],[-71.388893515,41.852795546],[-71.388474515,41.852463546],[-71.388191515,41.852242545],[-71.388031515,41.852063546],[-71.387947515,41.851960546],[-71.387733515,41.851662546],[-71.387634515,41.851448546],[-71.387711515,41.851307545],[-71.387840514,41.851132545],[-71.387985515,41.851017545],[-71.388130514,41.850937545],[-71.388313515,41.850876545],[-71.388496515,41.850838545],[-71.389244515,41.850815546],[-71.389435516,41.850811546],[-71.389679515,41.850785545],[-71.389847515,41.850747545],[-71.389999516,41.850693546],[-71.390236515,41.850556546],[-71.390358515,41.850472545],[-71.390457515,41.850373545],[-71.390526516,41.850293545],[-71.390602516,41.850182545],[-71.390625516,41.850136545],[-71.390732515,41.849930545],[-71.390778516,41.849785545],[-71.390808515,41.849636545],[-71.390823515,41.849495545],[-71.390823515,41.849362545],[-71.390823515,41.848713545],[-71.390816516,41.848660545],[-71.390785515,41.848027544],[-71.390808515,41.847943545],[-71.390846515,41.847771545],[-71.391052516,41.847203545],[-71.391235515,41.846623544],[-71.391258515,41.846577545],[-71.391518516,41.845955545],[-71.391632516,41.845703545],[-71.391785516,41.845345544],[-71.392067516,41.844693544],[-71.392128515,41.844563544],[-71.392319516,41.844071544],[-71.392632516,41.843300544],[-71.392715515,41.843045544],[-71.392586516,41.841317544],[-71.392548516,41.840855543],[-71.392494516,41.840290543],[-71.392456516,41.839718544],[-71.392441515,41.839516543],[-71.392441515,41.839405544],[-71.392334516,41.839009543],[-71.391968516,41.839051543],[-71.391747515,41.839051543],[-71.391647515,41.839043543],[-71.391266515,41.839032543],[-71.391182515,41.839028543],[-71.390839515,41.838990543],[-71.390526515,41.838910543],[-71.389694514,41.839032543],[-71.389313515,41.839089543],[-71.388496514,41.839196543],[-71.386688513,41.839451543],[-71.385750513,41.839581544],[-71.385284513,41.839646543],[-71.385259513,41.839646543],[-71.383987513,41.839814544],[-71.383812513,41.839135543],[-71.383636513,41.838471543],[-71.383499513,41.837906543],[-71.383469512,41.837788544],[-71.383011512,41.837860543],[-71.382812512,41.837883544],[-71.382607513,41.837891543],[-71.382423512,41.837883544],[-71.381966512,41.837777543],[-71.381805512,41.837769543],[-71.381584512,41.837784543],[-71.381577511,41.837841543],[-71.381439512,41.838078544],[-71.381279512,41.838337543],[-71.381134512,41.838429544],[-71.380959512,41.838463543],[-71.380707512,41.838436543],[-71.380402512,41.838410544],[-71.380119511,41.838402543],[-71.379906511,41.838326543],[-71.379776511,41.838242543],[-71.379692511,41.838124543],[-71.379669511,41.838005543],[-71.379692511,41.837883544],[-71.379761512,41.837723543],[-71.379799512,41.837563543],[-71.379852511,41.837189543],[-71.379868511,41.837006543],[-71.379852511,41.836888543],[-71.379807511,41.836743543],[-71.379570511,41.836323543],[-71.379333511,41.835999543],[-71.379128511,41.836002543],[-71.379126606,41.836002701],[-71.379138776,41.836021583],[-71.379154691,41.836047007],[-71.379171525,41.836071677],[-71.379189275,41.836096394],[-71.379207057,41.836121088],[-71.379225697,41.836144433],[-71.379242533,41.836167754],[-71.379258422,41.836190411],[-71.379276177,41.836213046],[-71.379295737,41.836234975],[-71.379317161,41.836257592],[-71.379339502,41.836280918],[-71.379360982,41.836306257],[-71.379383348,41.836332327],[-71.379404826,41.836359061],[-71.379426302,41.836386503],[-71.37944775,41.836413236],[-71.379468309,41.8364407],[-71.379489785,41.836468119],[-71.379511234,41.836494189],[-71.379531764,41.836520944],[-71.37955049,41.836547719],[-71.379569213,41.836575822],[-71.379586987,41.836604678],[-71.3796039,41.836635568],[-71.37961895,41.836665816],[-71.379633081,41.836696749],[-71.379647215,41.836726265],[-71.379659484,41.836755138],[-71.379672673,41.836783303],[-71.379684944,41.83681149],[-71.379697216,41.836838968],[-71.379709457,41.836866492],[-71.379719867,41.836892619],[-71.379729328,41.836918722],[-71.379737931,41.836946242],[-71.379743748,41.836975131],[-71.379746812,41.837004749],[-71.379747122,41.837035073],[-71.379745597,41.837065395],[-71.379743154,41.837096425],[-71.379740712,41.837126747],[-71.379738269,41.837157754],[-71.379734879,41.837188097],[-71.379730573,41.83721773],[-71.379726296,41.837248095],[-71.379721988,41.837278415],[-71.379716763,41.837308779],[-71.379709732,41.83734049],[-71.3797027,41.837372247],[-71.379694719,41.837404667],[-71.379686797,41.837438458],[-71.379679762,41.837471564],[-71.379673644,41.837505404],[-71.379667558,41.837538511],[-71.379661414,41.837569514],[-71.379654357,41.837598504],[-71.379648187,41.837627472],[-71.379642049,41.837655755],[-71.379636797,41.837684038],[-71.379630656,41.837713715],[-71.379623597,41.837743391],[-71.379616535,41.837775102],[-71.379609474,41.83780615],[-71.379600581,41.837835824],[-71.379590743,41.837863462],[-71.37957996,41.837889704],[-71.379568231,41.837915236],[-71.379558365,41.837941479],[-71.379550337,41.837966329],[-71.379546895,41.837991869],[-71.379546266,41.838017344],[-71.379546524,41.838042866],[-71.379546749,41.838069691],[-71.379549818,41.838096565],[-71.379554719,41.83812479],[-71.37955962,41.838153038],[-71.379567271,41.838182569],[-71.379576788,41.838211462],[-71.379588139,41.838241066],[-71.379600411,41.83826923],[-71.379613571,41.838296023],[-71.379625817,41.838321443],[-71.379638955,41.838344097],[-71.379652066,41.838364692],[-71.379667013,41.838384581],[-71.379681963,41.838403097],[-71.37969688,41.838422345],[-71.379711829,41.838441548],[-71.379726748,41.838460064],[-71.379742614,41.838479267],[-71.379759396,41.838499112],[-71.379775288,41.838521083],[-71.379792096,41.838543054],[-71.379807069,41.838565687],[-71.379822043,41.838587633],[-71.379835182,41.838609624],[-71.379846429,41.838629554],[-71.379857678,41.838648776],[-71.37986801,41.83866731],[-71.379878313,41.838685181],[-71.379888619,41.838700948],[-71.379897064,41.838714678],[-71.379904535,41.838726372],[-71.37991109,41.83873667],[-71.379924179,41.838753126],[-71.379941774,41.838763344],[-71.379966742,41.838772174],[-71.379981589,41.838780331],[-71.379995512,41.838791986],[-71.380009491,41.838806362],[-71.380023467,41.838822796],[-71.380034718,41.838840645],[-71.380042297,41.838859246],[-71.380046175,41.838879191],[-71.380046382,41.838899178],[-71.38004289,41.838918476],[-71.380035703,41.838935048],[-71.380024763,41.838947523],[-71.380009181,41.838955877],[-71.379991716,41.838958031],[-71.379971412,41.838956775],[-71.379948333,41.838952108],[-71.379924308,41.838946023],[-71.379901201,41.838939253],[-71.379878124,41.838933191],[-71.379855016,41.83892713],[-71.379831965,41.838923812],[-71.379807963,41.838921203],[-71.379784937,41.83892063],[-71.379761908,41.838921452],[-71.379739852,41.838925751],[-71.379718708,41.838932041],[-71.379700374,41.838941124],[-71.379682984,41.838951556],[-71.37966651,41.838963362],[-71.379650036,41.838974482],[-71.379633563,41.838985602],[-71.379617094,41.83899464],[-71.379598733,41.839000933],[-71.379578485,41.83900313],[-71.379557292,41.839003268],[-71.379536071,41.839001988],[-71.379515796,41.839002126],[-71.379493712,41.839004299],[-71.379470766,41.839009946],[-71.379448732,41.839018361],[-71.379428559,41.839029477],[-71.37940844,41.839044069],[-71.379388375,41.839062091],[-71.379370141,41.839082883],[-71.379353798,41.839105711],[-71.379342099,41.839131266],[-71.379332232,41.839158195],[-71.379322393,41.839186519],[-71.379311606,41.839214796],[-71.379300877,41.839244514],[-71.379290118,41.839274186],[-71.379279358,41.83930459],[-71.379268628,41.839334925],[-71.379259759,41.839367367],[-71.379250891,41.839399808],[-71.379241991,41.839432935],[-71.379232203,41.839466748],[-71.379221498,41.839499873],[-71.379210794,41.839533021],[-71.379200058,41.839566169],[-71.379190271,41.839599273],[-71.379181402,41.839632423],[-71.379173451,41.839664819],[-71.37916917,41.839697243],[-71.379165805,41.83973033],[-71.379166143,41.839762003],[-71.379166451,41.839793014],[-71.379167709,41.839823339],[-71.379169855,41.839852933],[-71.379172003,41.839881864],[-71.379175982,41.839912192],[-71.379180909,41.839943138],[-71.379186781,41.839975481],[-71.379193538,41.84000851],[-71.379200357,41.84004154],[-71.379208063,41.84007457],[-71.379214823,41.840106227],[-71.379221585,41.840136512],[-71.379229236,41.84016609],[-71.379236,41.840195689],[-71.379244601,41.840224581],[-71.379252255,41.840252077],[-71.379258962,41.840279595],[-71.379262002,41.840305805],[-71.379262289,41.840331945],[-71.379258873,41.840359521],[-71.379251789,41.840386429],[-71.379243756,41.84041336],[-71.379236673,41.840439583],[-71.379231395,41.840465785],[-71.379227953,41.840490662],[-71.379224543,41.840515448],[-71.379221101,41.840540257],[-71.379214909,41.840564469],[-71.379205963,41.840589317],[-71.379195152,41.840614141],[-71.379182507,41.840638369],[-71.379168915,41.840661863],[-71.379153516,41.840686751],[-71.379136253,41.840710951],[-71.379116236,41.840735879],[-71.379095305,41.840759435],[-71.379072506,41.840783674],[-71.379049708,41.840807914],[-71.379026941,41.84083149],[-71.379004144,41.840855021],[-71.378981348,41.840877889],[-71.378958523,41.84090007],[-71.378936647,41.840921543],[-71.378914742,41.840942354],[-71.378892837,41.840963141],[-71.378870013,41.840984636],[-71.37884722,41.841006154],[-71.378825316,41.841026256],[-71.378805219,41.841044941],[-71.37878607,41.841063696],[-71.378768729,41.841080303],[-71.378751392,41.841094898],[-71.378731222,41.841103932],[-71.378709136,41.841106836],[-71.378685161,41.841106262],[-71.378660271,41.841104384],[-71.378635405,41.841105867],[-71.378609675,41.841111534],[-71.378583939,41.841120631],[-71.378558287,41.841133182],[-71.378532631,41.841148499],[-71.378505169,41.841164524],[-71.378475869,41.841181896],[-71.378446568,41.841199977],[-71.378418183,41.841218768],[-71.378389826,41.841238885],[-71.378359635,41.841258337],[-71.378327582,41.841276438],[-71.37829272,41.841291792],[-71.378257831,41.84130511],[-71.378223892,41.841317697],[-71.378194539,41.841330953],[-71.378170746,41.841346936],[-71.378153432,41.841365647],[-71.378140707,41.841383608],[-71.378128873,41.841398849],[-71.378113348,41.84140926],[-71.378093147,41.841418341],[-71.378069305,41.841428126],[-71.378044539,41.841441364],[-71.378019828,41.841458031],[-71.377997007,41.841477491],[-71.377976048,41.841498943],[-71.377956923,41.841521105],[-71.37793963,41.841544618],[-71.377924201,41.841568843],[-71.377908804,41.841592335],[-71.377893377,41.841615851],[-71.377877004,41.841637993],[-71.377858799,41.841658761],[-71.377839648,41.841678179],[-71.37781958,41.841697573],[-71.377797677,41.841717011],[-71.377775743,41.841736426],[-71.377753838,41.841756527],[-71.377731933,41.841777314],[-71.377712809,41.84179879],[-71.377700136,41.841820914],[-71.377695777,41.841845721],[-71.377697897,41.841872594],[-71.37770558,41.841900799],[-71.377716931,41.841930358],[-71.377730118,41.841959209],[-71.377745142,41.841987399],[-71.377762004,41.842013464],[-71.377779784,41.842039576],[-71.377800318,41.842064914],[-71.377819904,41.842089633],[-71.377837684,41.842115722],[-71.37785179,41.842143865],[-71.377862253,41.842174109],[-71.377870876,41.84220714],[-71.377878608,41.842242229],[-71.377887257,41.842277341],[-71.377896824,41.842312409],[-71.377906393,41.842346105],[-71.377915044,41.842380531],[-71.377923694,41.842414935],[-71.377932341,41.842451396],[-71.377940127,41.842489938],[-71.377948801,41.842528458],[-71.377957502,41.842568396],[-71.377968066,41.842609639],[-71.377978657,41.842652987],[-71.377991997,41.842698395],[-71.378005371,41.842741722],[-71.378019577,41.842781597],[-71.378033791,41.842817356],[-71.378049755,41.842849641],[-71.378065754,41.842879844],[-71.378082641,41.842909385],[-71.378101361,41.842939615],[-71.378121028,41.842970508],[-71.378138888,41.843002772],[-71.378156719,41.843034349],[-71.378172687,41.843064576],[-71.378188629,41.843092744],[-71.378203654,41.843120202],[-71.378217735,41.843145624],[-71.378228121,41.843168298],[-71.378236613,41.84318962],[-71.378239601,41.843210297],[-71.378237054,41.843230967],[-71.378229888,41.843252388],[-71.378217214,41.843275197],[-71.37820087,41.843298003],[-71.378181772,41.843321537],[-71.378159921,41.843345777],[-71.378136205,41.843369353],[-71.378112461,41.843391556],[-71.378088719,41.843413027],[-71.378065896,41.843433127],[-71.378044883,41.843450508],[-71.378026598,41.843465056],[-71.37801107,41.843476862],[-71.377999158,41.843484511],[-71.377987248,41.843491473],[-71.37797534,41.843497749],[-71.377960675,41.843506103],[-71.377943284,41.843516513],[-71.377924974,41.843527676],[-71.377903908,41.843540849],[-71.377880088,41.843554774],[-71.377853483,41.843569404],[-71.377825105,41.843584056],[-71.377795806,41.843600078],[-71.377767394,41.843616765],[-71.377739957,41.843634825],[-71.377714294,41.843652886],[-71.377688692,41.843670948],[-71.377662171,41.843689718],[-71.377636566,41.843709815],[-71.37761377,41.843731996],[-71.377595588,41.843756218],[-71.377582937,41.843782503],[-71.377577688,41.843808682],[-71.377579807,41.843836241],[-71.377589297,41.843863739],[-71.377604322,41.84389122],[-71.377623965,41.843918661],[-71.377646361,41.843946081],[-71.377668757,41.843973547],[-71.377689288,41.84400028],[-71.377706178,41.844028426],[-71.377718448,41.844057322],[-71.377727044,41.84408825],[-71.377736588,41.844119201],[-71.37774705,41.844150176],[-71.377760238,41.844179005],[-71.377778019,41.844204408],[-71.377799416,41.844226339],[-71.377822682,41.844246854],[-71.377844052,41.844266749],[-71.377862728,41.844288654],[-71.377880483,41.844311999],[-71.377901908,41.844335279],[-71.377927003,41.844358563],[-71.377952133,41.844379789],[-71.377979958,41.844398914],[-71.378012376,41.844415254],[-71.378047521,41.844428852],[-71.378081753,41.844440368],[-71.378111365,41.844452589],[-71.378133605,41.844465579],[-71.378153091,41.844479229],[-71.378173495,41.844492881],[-71.3781976,41.844506513],[-71.378223539,41.84452017],[-71.378252234,41.844532412],[-71.378281818,41.844543238],[-71.378312352,41.844553401],[-71.378342827,41.844562192],[-71.378374251,41.844570275],[-71.3784047,41.844576985],[-71.378437045,41.844583033],[-71.378468415,41.84458764],[-71.378499788,41.844590921],[-71.378529267,41.844592804],[-71.378557885,41.844596814],[-71.378585581,41.844603521],[-71.378613361,41.84461439],[-71.378642056,41.844626609],[-71.378671666,41.844640247],[-71.378697603,41.844655231],[-71.378719898,41.844671628],[-71.3787376,41.844690833],[-71.378748878,41.844710764],[-71.378753701,41.844732105],[-71.378753908,41.844752047],[-71.378748551,41.844770679],[-71.378737693,41.844787316],[-71.378723078,41.844801182],[-71.37870663,41.844814337],[-71.37869388,41.844828891],[-71.378691277,41.844846794],[-71.378696127,41.844869531],[-71.378707455,41.844895636],[-71.378723428,41.844923781],[-71.378740314,41.844954054],[-71.378759037,41.844983551],[-71.378779626,41.845012342],[-71.378801102,41.845041865],[-71.378821689,41.845072073],[-71.378842274,41.845102945],[-71.378861971,41.845135233],[-71.378880745,41.845169556],[-71.378899519,41.845204587],[-71.378916485,41.845241035],[-71.378932506,41.845276063],[-71.378948529,41.845310429],[-71.378965441,41.8453434],[-71.378981464,41.84537708],[-71.378998407,41.845410051],[-71.379015319,41.845443023],[-71.379031313,41.845475993],[-71.37904639,41.845508986],[-71.379061498,41.845541955],[-71.379074737,41.845576341],[-71.379086141,41.845610747],[-71.379096657,41.845645793],[-71.379104389,41.845681567],[-71.37911212,41.845717365],[-71.379121719,41.845752478],[-71.379131288,41.845786837],[-71.379142664,41.845819848],[-71.379151288,41.84585288],[-71.379158106,41.845886595],[-71.379162141,41.845920353],[-71.379166174,41.845954752],[-71.379168343,41.845988508],[-71.379170544,41.846021579],[-71.379171801,41.846052567],[-71.379174865,41.846082185],[-71.379180684,41.846110388],[-71.37918834,41.84613793],[-71.379196914,41.846164741],[-71.379203624,41.846190887],[-71.379205745,41.846217714],[-71.379204164,41.846245292],[-71.379196189,41.846273617],[-71.379184511,41.846303288],[-71.379170079,41.846333689],[-71.379152894,41.846364795],[-71.379133842,41.846395899],[-71.37911296,41.846424966],[-71.379089266,41.846452657],[-71.379063739,41.846478975],[-71.379035462,41.846504627],[-71.379007155,41.846529592],[-71.378976985,41.846553229],[-71.378947733,41.846576113],[-71.3789157,41.846598353],[-71.378882749,41.846620592],[-71.378847963,41.84664283],[-71.37881226,41.846665066],[-71.378773775,41.846686659],[-71.37873529,41.846707543],[-71.378695855,41.846729821],[-71.378655563,41.846752785],[-71.378615269,41.846776457],[-71.378574056,41.846800814],[-71.378531895,41.846825147],[-71.378489794,41.846850213],[-71.378449499,41.846874571],[-71.378410121,41.846898884],[-71.37837074,41.846924638],[-71.378332308,41.846950325],[-71.37829115,41.846978112],[-71.378249962,41.847005213],[-71.378208774,41.84703236],[-71.378167557,41.847058753],[-71.378127288,41.847085169],[-71.378087939,41.847110191],[-71.378050398,41.84713382],[-71.37801283,41.847154705],[-71.37797429,41.847172845],[-71.377934865,41.847189611],[-71.377886201,41.847207809],[-71.377854093,41.847220398],[-71.37781372,41.847237164],[-71.377775181,41.847254617],[-71.377740369,41.847274087],[-71.377708336,41.847295664],[-71.377680029,41.847319943],[-71.377654501,41.847346923],[-71.377632669,41.847375989],[-71.377610893,41.847407822],[-71.377590062,41.847441691],[-71.377570118,41.847474898],[-71.377550204,41.847508768],[-71.377532126,41.847541953],[-71.377513099,41.847575824],[-71.37749502,41.847609696],[-71.377476969,41.84764494],[-71.37746164,41.847680142],[-71.377447285,41.847717425],[-71.37743293,41.847755417],[-71.377418602,41.847794782],[-71.377406076,41.847835474],[-71.377393582,41.847875527],[-71.377381121,41.847914184],[-71.377367658,41.84794941],[-71.377353222,41.847981182],[-71.377334145,41.848008856],[-71.377312261,41.848033096],[-71.377288547,41.84805459],[-71.377266666,41.848077435],[-71.377250343,41.848104403],[-71.377238664,41.848134119],[-71.377230711,41.848166539],[-71.377223701,41.848201726],[-71.377216689,41.848237576],[-71.377207843,41.848273448],[-71.377196216,41.848307967],[-71.377183672,41.848341822],[-71.377169264,41.848374966],[-71.37715394,41.848407423],[-71.377136753,41.848438528],[-71.377117701,41.848468946],[-71.377097734,41.848498036],[-71.377076822,41.848525708],[-71.377054964,41.848552029],[-71.377031274,41.848576953],[-71.377005694,41.848598445],[-71.376977306,41.848617213],[-71.376948002,41.848634607],[-71.376917752,41.848651315],[-71.376885697,41.848668043],[-71.376853612,41.848684062],[-71.376821498,41.848700082],[-71.37679036,41.848716811],[-71.376761026,41.848734205],[-71.376733586,41.848752288],[-71.376707064,41.848771012],[-71.376682373,41.848791155],[-71.376662301,41.848811235],[-71.37664593,41.848831319],[-71.376636902,41.84884997],[-71.376638028,41.848868563],[-71.37665384,41.848885],[-71.376680726,41.848900031],[-71.376713146,41.848916371],[-71.376730009,41.848926977],[-71.376744673,41.848936163],[-71.376772582,41.848960136],[-71.376798652,41.848986166],[-71.376821965,41.849014274],[-71.376843444,41.849042402],[-71.376863087,41.849070552],[-71.376881812,41.8490987],[-71.376900538,41.849126825],[-71.376920153,41.84915358],[-71.376942524,41.849178965],[-71.376965812,41.849204306],[-71.376990968,41.849228985],[-71.377018845,41.849253621],[-71.377049507,41.849277529],[-71.377082924,41.849300776],[-71.377118176,41.849323294],[-71.377156157,41.849343093],[-71.377195975,41.849361453],[-71.3772376,41.849378443],[-71.377281065,41.849393354],[-71.37732453,41.849407556],[-71.377370722,41.849419703],[-71.377416914,41.849431827],[-71.377464056,41.849443266],[-71.377514864,41.849456767],[-71.377569371,41.849470912],[-71.377625743,41.849485745],[-71.377683033,41.849500579],[-71.377742128,41.849514729],[-71.377801282,41.849530251],[-71.377857653,41.84954577],[-71.377912187,41.849562019],[-71.377963969,41.849578242],[-71.378014802,41.849594465],[-71.378064721,41.849609336],[-71.378112803,41.849624938],[-71.378159049,41.849640492],[-71.378205294,41.849657487],[-71.378250619,41.849675098],[-71.378298724,41.849694839],[-71.378347806,41.849715221],[-71.378397773,41.849736953],[-71.378447769,41.849759417],[-71.378495929,41.849782588],[-71.378544087,41.8498064],[-71.378591328,41.849830233],[-71.378639485,41.849854776],[-71.378685836,41.849880026],[-71.378732159,41.849904545],[-71.378777592,41.849929794],[-71.37882024,41.849956389],[-71.378860134,41.849983713],[-71.378897303,41.850012453],[-71.378932633,41.850043248],[-71.378967072,41.850076146],[-71.379000594,41.850108998],[-71.379033167,41.850141895],[-71.379063905,41.850174789],[-71.37909281,41.850206996],[-71.379120769,41.850237852],[-71.379145975,41.850268728],[-71.379167479,41.850300264],[-71.379186256,41.850333946],[-71.379203227,41.850368976],[-71.379218359,41.850406084],[-71.379230704,41.850444585],[-71.379242189,41.850485166],[-71.379253647,41.850524421],[-71.379264189,41.850562233],[-71.379271976,41.850601484],[-71.379277897,41.85064071],[-71.37928201,41.850682038],[-71.379284285,41.850724736],[-71.37928567,41.850768828],[-71.379286107,41.850812942],[-71.379285629,41.850855637],[-71.379285123,41.850897005],[-71.379283701,41.850937664],[-71.379279526,41.850978297],[-71.379274404,41.851018289],[-71.379266529,41.851058301],[-71.379257737,41.851098312],[-71.379247078,41.851138366],[-71.379235505,41.851177002],[-71.379222985,41.851214973],[-71.379207684,41.851251593],[-71.379191467,41.851287479],[-71.379172468,41.851322037],[-71.379154388,41.851356595],[-71.379135392,41.85138978],[-71.379117314,41.851422966],[-71.379099208,41.851454757],[-71.379081101,41.851487257],[-71.379063913,41.85151834],[-71.379048563,41.851548762],[-71.379035021,41.851577082],[-71.379022372,41.851601973],[-71.37901248,41.851624739],[-71.379005314,41.851645451],[-71.379001794,41.851663376],[-71.379001946,41.85167991],[-71.379002104,41.8516937],[-71.379002261,41.851707467],[-71.379002311,41.851713505],[-71.379002391,41.851719885],[-71.379002491,41.851731617],[-71.379002652,41.851743303],[-71.379002798,41.85176329],[-71.37900296,41.851775022],[-71.379003089,41.851787394],[-71.379004107,41.851799126],[-71.379005238,41.851815639],[-71.379007249,41.851836314],[-71.379010322,41.851861084],[-71.379012382,41.851887934],[-71.379015475,41.851918261],[-71.379017619,41.851949227],[-71.379020738,41.851982298],[-71.379022935,41.852017404],[-71.379023324,41.852054634],[-71.37902371,41.852093214],[-71.379024123,41.852133829],[-71.379025482,41.8521752],[-71.37902776,41.852216503],[-71.379030924,41.852257829],[-71.379031368,41.852298467],[-71.379028999,41.852337776],[-71.379023851,41.852375664],[-71.379017785,41.85241291],[-71.379011695,41.852447389],[-71.379006492,41.852481207],[-71.379001321,41.852514978],[-71.37899523,41.852549457],[-71.378986384,41.852585352],[-71.378976646,41.852623326],[-71.378964126,41.852661252],[-71.378951635,41.852699932],[-71.378939087,41.852735846],[-71.378926569,41.852772445],[-71.378913104,41.852808334],[-71.378897804,41.852844245],[-71.378881586,41.852880177],[-71.378866288,41.852914715],[-71.378855579,41.852949213],[-71.378852241,41.852983672],[-71.378854469,41.853018801],[-71.378861282,41.853055306],[-71.378870879,41.853091746],[-71.378881364,41.853127546],[-71.378893715,41.85316328],[-71.378906987,41.853197642],[-71.378918392,41.853232049],[-71.378930744,41.853267096],[-71.378941228,41.85330356],[-71.378953609,41.853340003],[-71.378969628,41.853377112],[-71.378988463,41.853413516],[-71.379007237,41.853449234],[-71.379026962,41.853484266],[-71.379046658,41.853517904],[-71.379067272,41.853551542],[-71.379086968,41.853585202],[-71.379107609,41.853620922],[-71.379125525,41.853658011],[-71.379140654,41.853696515],[-71.379152111,41.853736409],[-71.379159925,41.853777718],[-71.379165874,41.853818316],[-71.379169042,41.853857585],[-71.379172182,41.853896144],[-71.379176242,41.853932647],[-71.379183088,41.853968443],[-71.379189901,41.854004903],[-71.379198578,41.854042737],[-71.379207285,41.854081279],[-71.379218744,41.854119825],[-71.379230203,41.854158302],[-71.37924347,41.854195454],[-71.37925582,41.854231874],[-71.379265416,41.854269046],[-71.379272287,41.854307609],[-71.379274538,41.854346854],[-71.379273087,41.854386164],[-71.379267019,41.854424782],[-71.379258197,41.854464107],[-71.379247541,41.854502721],[-71.379235019,41.854541378],[-71.379220665,41.854577976],[-71.3792035,41.854613244],[-71.379183585,41.854647091],[-71.379162721,41.854680983],[-71.379142805,41.854714854],[-71.379124752,41.854750784],[-71.379108559,41.854789483],[-71.379095147,41.854829489],[-71.379084516,41.854870893],[-71.379078473,41.854912302],[-71.379076135,41.85495225],[-71.379077468,41.85499154],[-71.379080633,41.855032158],[-71.379086582,41.855073442],[-71.379094394,41.85511546],[-71.379105906,41.855158808],[-71.379120172,41.855201427],[-71.379134437,41.855244046],[-71.379149591,41.85528598],[-71.379162913,41.855326563],[-71.379174372,41.855365085],[-71.379184885,41.855402944],[-71.379193594,41.855440092],[-71.379203161,41.855476531],[-71.379211839,41.855513702],[-71.379220545,41.855552222],[-71.379228302,41.855591449],[-71.37923609,41.8556307],[-71.379244795,41.855669929],[-71.379249798,41.85570984],[-71.379250241,41.855750477],[-71.379249734,41.855792532],[-71.3792502,41.855837286],[-71.379253417,41.855883461],[-71.379258529,41.855930256],[-71.379264528,41.855977074],[-71.379271449,41.856021835],[-71.379274642,41.856064557],[-71.379276003,41.856105173],[-71.379276391,41.856143044],[-71.379275831,41.856180296],[-71.379270685,41.856216834],[-71.3792637,41.856254766],[-71.379257636,41.856291349],[-71.379257079,41.856327161],[-71.379262975,41.856363642],[-71.379272572,41.856400791],[-71.379283086,41.856437941],[-71.379290875,41.856476482],[-71.379295879,41.856515707],[-71.379297211,41.85655566],[-71.379297624,41.856596343],[-71.379298063,41.856639017],[-71.37929853,41.856683839],[-71.379298077,41.856729279],[-71.379298544,41.856774079],[-71.379298034,41.856817483],[-71.37929753,41.856857456],[-71.379297889,41.856894641],[-71.379298283,41.856929081]]]]}}"}, +{"type": "precinct", "typeId": 2816, "areaId": 25897, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":236,\"NAME\":\"2816\",\"SHAPE_Length\":0.050967151266061,\"SHAPE_Area\":-0.00010672241122512},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.391212516,41.856713547],[-71.392355517,41.857007547],[-71.392868516,41.857186547],[-71.394138517,41.857089547],[-71.395578518,41.857002546],[-71.399437519,41.856835547],[-71.399492519,41.856823546],[-71.399596518,41.856790546],[-71.399666518,41.856625547],[-71.400146519,41.855488546],[-71.400154519,41.855458546],[-71.400757519,41.854004546],[-71.401138519,41.853371546],[-71.401451519,41.852852545],[-71.40238252,41.851330545],[-71.402550519,41.851059545],[-71.40314552,41.850045545],[-71.40352652,41.849427545],[-71.403763519,41.849053545],[-71.40399252,41.848679545],[-71.40468652,41.847607544],[-71.40520552,41.846791544],[-71.40505252,41.846768544],[-71.40475552,41.847271544],[-71.40467152,41.847405544],[-71.40428952,41.847988544],[-71.403870519,41.848587545],[-71.402153519,41.848431545],[-71.401871519,41.848400544],[-71.401207519,41.848332545],[-71.400787518,41.848378544],[-71.400185518,41.848473545],[-71.399567518,41.848549545],[-71.398819518,41.848656545],[-71.398006518,41.848763545],[-71.397896518,41.848778545],[-71.397888518,41.848912545],[-71.397049517,41.848633544],[-71.396248517,41.848332545],[-71.395493517,41.848042545],[-71.395515517,41.847992545],[-71.395813517,41.847401545],[-71.396057517,41.846920544],[-71.394905517,41.846974544],[-71.394760516,41.846978544],[-71.394653517,41.846985545],[-71.394447517,41.846978544],[-71.394157516,41.846947545],[-71.393692516,41.846886545],[-71.393288516,41.846840544],[-71.392334516,41.846733545],[-71.391762515,41.846680545],[-71.391632516,41.846661545],[-71.391258515,41.846577545],[-71.391235515,41.846623544],[-71.391052516,41.847203545],[-71.390846515,41.847771545],[-71.390808515,41.847943545],[-71.390785515,41.848027544],[-71.390816516,41.848660545],[-71.390823515,41.848713545],[-71.390823515,41.849362545],[-71.390823515,41.849495545],[-71.390808515,41.849636545],[-71.390778516,41.849785545],[-71.390732515,41.849930545],[-71.390625516,41.850136545],[-71.390602516,41.850182545],[-71.390526516,41.850293545],[-71.390457515,41.850373545],[-71.390358515,41.850472545],[-71.390236515,41.850556546],[-71.389999516,41.850693546],[-71.389847515,41.850747545],[-71.389679515,41.850785545],[-71.389435516,41.850811546],[-71.389244515,41.850815546],[-71.388496515,41.850838545],[-71.388313515,41.850876545],[-71.388130514,41.850937545],[-71.387985515,41.851017545],[-71.387840514,41.851132545],[-71.387711515,41.851307545],[-71.387634515,41.851448546],[-71.387733515,41.851662546],[-71.387947515,41.851960546],[-71.388031515,41.852063546],[-71.388191515,41.852242545],[-71.388474515,41.852463546],[-71.388893515,41.852795546],[-71.389000515,41.852875546],[-71.389305515,41.853123546],[-71.389679515,41.853489546],[-71.389809515,41.853638546],[-71.390152516,41.854039546],[-71.390244516,41.854168546],[-71.390297515,41.854233546],[-71.390442516,41.854458546],[-71.390610515,41.854706546],[-71.390785516,41.855011546],[-71.390999516,41.855442546],[-71.391373516,41.856175547],[-71.391449516,41.856228547],[-71.391266516,41.856602547],[-71.391243516,41.856659547],[-71.391212516,41.856713547]]]]}}"}, +{"type": "precinct", "typeId": 2817, "areaId": 25896, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":235,\"NAME\":\"2817\",\"SHAPE_Length\":0.057127190006154,\"SHAPE_Area\":-9.9992844462897e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.391258515,41.846577545],[-71.391632516,41.846661545],[-71.391762515,41.846680545],[-71.392334516,41.846733545],[-71.393288516,41.846840544],[-71.393692516,41.846886545],[-71.394157516,41.846947545],[-71.394447517,41.846978544],[-71.394653517,41.846985545],[-71.394760516,41.846978544],[-71.394905517,41.846974544],[-71.396057517,41.846920544],[-71.395813517,41.847401545],[-71.395515517,41.847992545],[-71.395493517,41.848042545],[-71.396248517,41.848332545],[-71.397049517,41.848633544],[-71.397888518,41.848912545],[-71.397896518,41.848778545],[-71.398006518,41.848763545],[-71.398819518,41.848656545],[-71.399567518,41.848549545],[-71.400185518,41.848473545],[-71.400787518,41.848378544],[-71.401207519,41.848332545],[-71.401871519,41.848400544],[-71.402153519,41.848431545],[-71.403870519,41.848587545],[-71.40428952,41.847988544],[-71.40467152,41.847405544],[-71.40475552,41.847271544],[-71.40505252,41.846768544],[-71.40460252,41.846730544],[-71.40367152,41.846661545],[-71.401375519,41.846516544],[-71.400734519,41.846463544],[-71.400772518,41.846405545],[-71.401077519,41.845986545],[-71.401413518,41.845520544],[-71.401489518,41.845410544],[-71.400673518,41.845181544],[-71.399277518,41.844780544],[-71.399536518,41.844265544],[-71.399590518,41.844155544],[-71.399734518,41.843842544],[-71.399956518,41.843354544],[-71.400429518,41.842472543],[-71.400856518,41.841565543],[-71.400230518,41.841389543],[-71.398987518,41.841027543],[-71.399307518,41.840374543],[-71.399643518,41.839703543],[-71.399826518,41.839325543],[-71.400101518,41.838776543],[-71.400337518,41.838287543],[-71.400505518,41.837941543],[-71.400520518,41.837910542],[-71.400581518,41.837792542],[-71.400818518,41.837326542],[-71.401176518,41.836586542],[-71.401543519,41.835854543],[-71.401566518,41.835717542],[-71.399895518,41.835804542],[-71.398941517,41.835865542],[-71.398033517,41.835919542],[-71.398009517,41.835924542],[-71.396843517,41.835987543],[-71.395805517,41.836041542],[-71.395561516,41.835637543],[-71.395081516,41.835820542],[-71.394142516,41.836155542],[-71.393379515,41.836415543],[-71.393517516,41.836731543],[-71.393593515,41.836945543],[-71.393654516,41.837155543],[-71.393692516,41.837471543],[-71.393822516,41.838005543],[-71.393936516,41.838246543],[-71.393158516,41.838349543],[-71.392159515,41.838372543],[-71.392334516,41.839009543],[-71.392441515,41.839405544],[-71.392441515,41.839516543],[-71.392456516,41.839718544],[-71.392494516,41.840290543],[-71.392548516,41.840855543],[-71.392586516,41.841317544],[-71.392715515,41.843045544],[-71.392632516,41.843300544],[-71.392319516,41.844071544],[-71.392128515,41.844563544],[-71.392067516,41.844693544],[-71.391785516,41.845345544],[-71.391632516,41.845703545],[-71.391518516,41.845955545],[-71.391258515,41.846577545]]]]}}"}, +{"type": "precinct", "typeId": 2818, "areaId": 26066, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":405,\"NAME\":\"2818\",\"SHAPE_Length\":0.045452832424084,\"SHAPE_Area\":-8.2606615885163e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.400856518,41.841565543],[-71.402894632,41.842151913],[-71.403466837,41.842331205],[-71.40481724,41.842228207],[-71.407014506,41.842037472],[-71.407838482,41.841984066],[-71.407968181,41.842041287],[-71.408128398,41.842220578],[-71.408197063,41.842331205],[-71.408387798,41.842747006],[-71.408471721,41.842975888],[-71.408692974,41.843555723],[-71.408731121,41.843666348],[-71.408761638,41.84370831],[-71.408792156,41.843750271],[-71.408845562,41.843803677],[-71.408975261,41.843925748],[-71.409120221,41.844017301],[-71.409455913,41.844387326],[-71.409898419,41.844806943],[-71.410043377,41.844944272],[-71.410272259,41.84516934],[-71.410707134,41.845588956],[-71.410936017,41.845806393],[-71.411186962,41.846014891],[-71.411186522,41.845993544],[-71.411158522,41.844181543],[-71.411156522,41.844063544],[-71.411179522,41.843567543],[-71.411171521,41.843377543],[-71.411146522,41.841773543],[-71.411133522,41.840935543],[-71.411140522,41.840847543],[-71.411140522,41.840569543],[-71.411148522,41.840451543],[-71.411148522,41.840332543],[-71.411179522,41.840134543],[-71.411232521,41.839913543],[-71.411331521,41.839646542],[-71.411430522,41.839444543],[-71.411545522,41.839253542],[-71.411652522,41.839096543],[-71.411880522,41.838810542],[-71.412071522,41.838627542],[-71.412376522,41.838379542],[-71.412590522,41.838231543],[-71.412643522,41.838189542],[-71.413727522,41.837544542],[-71.413812523,41.837489542],[-71.413666522,41.837380543],[-71.413422523,41.837185542],[-71.413063521,41.836911542],[-71.412720522,41.836659542],[-71.412476522,41.836476542],[-71.412399522,41.836434542],[-71.412354522,41.836415542],[-71.412277522,41.836399541],[-71.412239522,41.836396542],[-71.412209522,41.836388542],[-71.412102522,41.836373542],[-71.411888522,41.836369542],[-71.411880522,41.836327542],[-71.411880522,41.836289542],[-71.411873522,41.836251542],[-71.411873522,41.836197542],[-71.411865521,41.836167542],[-71.411865522,41.836136542],[-71.411858522,41.836110542],[-71.411858521,41.836079542],[-71.411819521,41.835961542],[-71.411636521,41.835932542],[-71.410820521,41.835801542],[-71.410713521,41.835797542],[-71.410667521,41.835808542],[-71.410591522,41.835843542],[-71.410538521,41.835884542],[-71.410530521,41.835904542],[-71.410515522,41.835923542],[-71.410484521,41.836026542],[-71.410484521,41.836045542],[-71.410323521,41.836595542],[-71.410309522,41.836644542],[-71.410248521,41.836708542],[-71.410194521,41.836743542],[-71.410149521,41.836762542],[-71.410049521,41.836781542],[-71.409904521,41.836781542],[-71.409950521,41.836426542],[-71.410049521,41.835629542],[-71.410065521,41.835335542],[-71.409996521,41.835186542],[-71.409988521,41.835160542],[-71.409958521,41.835122542],[-71.409935521,41.835106542],[-71.409904521,41.835099541],[-71.409813521,41.835099541],[-71.409599521,41.835114542],[-71.40935552,41.835137541],[-71.408989521,41.835171542],[-71.40845552,41.835232542],[-71.40775252,41.835319542],[-71.40750852,41.835350542],[-71.40747652,41.835354542],[-71.40648752,41.835480542],[-71.40623052,41.835513542],[-71.405441519,41.835614542],[-71.404106519,41.835671542],[-71.402138518,41.835701542],[-71.401566518,41.835717542],[-71.401543519,41.835854543],[-71.401176518,41.836586542],[-71.400818518,41.837326542],[-71.400581518,41.837792542],[-71.400520518,41.837910542],[-71.400505518,41.837941543],[-71.400337518,41.838287543],[-71.400101518,41.838776543],[-71.399826518,41.839325543],[-71.399643518,41.839703543],[-71.399307518,41.840374543],[-71.398987518,41.841027543],[-71.400230518,41.841389543],[-71.400856518,41.841565543]]]]}}"}, +{"type": "precinct", "typeId": 2819, "areaId": 25898, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":237,\"NAME\":\"2819\",\"SHAPE_Length\":0.083639249193862,\"SHAPE_Area\":-0.00015881383346351},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.429718529,41.860890546],[-71.429851529,41.860896547],[-71.43362053,41.861444546],[-71.43474353,41.861567546],[-71.43468553,41.861496546],[-71.434479531,41.861157546],[-71.43417453,41.860611546],[-71.43386853,41.860009546],[-71.43367053,41.859650545],[-71.43360953,41.859585546],[-71.43359453,41.859566546],[-71.43344153,41.859436545],[-71.43319553,41.859256546],[-71.43304453,41.859146545],[-71.43285453,41.859002546],[-71.43260253,41.858803546],[-71.431648529,41.858017545],[-71.431259529,41.857697546],[-71.430656529,41.857193545],[-71.430611529,41.857151546],[-71.430077528,41.856717546],[-71.429825528,41.856511545],[-71.429504529,41.856240545],[-71.428925529,41.855759545],[-71.428673528,41.855545545],[-71.428360529,41.855324545],[-71.428085528,41.855141545],[-71.428024528,41.855053545],[-71.427956528,41.854844545],[-71.427864528,41.854435545],[-71.427826528,41.854142545],[-71.427879528,41.853886545],[-71.428055528,41.853482545],[-71.427704528,41.853386545],[-71.427612528,41.853360545],[-71.426773528,41.853127545],[-71.426628527,41.853089545],[-71.426483528,41.853049545],[-71.426376527,41.853020544],[-71.426338527,41.853016545],[-71.426018528,41.852890545],[-71.425914527,41.852844544],[-71.425804528,41.852795545],[-71.425659527,41.852734545],[-71.425446527,41.852635545],[-71.425117527,41.852497544],[-71.424469527,41.852223544],[-71.423874527,41.851967544],[-71.423355526,41.851738544],[-71.423338526,41.851752544],[-71.422997527,41.852238545],[-71.422844526,41.852452545],[-71.422638526,41.852707544],[-71.423035527,41.852883544],[-71.422791526,41.853779545],[-71.422676526,41.854248545],[-71.422600526,41.854580545],[-71.422570526,41.854651545],[-71.422554526,41.854672545],[-71.422531526,41.854679545],[-71.422150526,41.854718545],[-71.421425526,41.854786545],[-71.420692526,41.854855545],[-71.420708526,41.854939545],[-71.420647526,41.854935545],[-71.420036525,41.855011545],[-71.419289525,41.855091545],[-71.418861525,41.855149545],[-71.418640525,41.855168545],[-71.418205525,41.855225545],[-71.417969524,41.854451545],[-71.417839525,41.854039545],[-71.417793524,41.853913546],[-71.417442524,41.854016545],[-71.417366524,41.854027545],[-71.417282525,41.854023545],[-71.417152524,41.854000545],[-71.416916524,41.853959545],[-71.416473524,41.853878545],[-71.416023524,41.853802545],[-71.415718524,41.853753545],[-71.415348524,41.853686545],[-71.415024523,41.853627545],[-71.414291523,41.853501545],[-71.414085524,41.853466546],[-71.413574523,41.853371545],[-71.413368523,41.853333545],[-71.413063523,41.853283545],[-71.412865523,41.853245545],[-71.412628523,41.853199545],[-71.412857522,41.852394545],[-71.413010523,41.851780545],[-71.413025523,41.851712545],[-71.413033522,41.851658545],[-71.413437523,41.850113545],[-71.413528523,41.849812545],[-71.413574523,41.849720545],[-71.413773523,41.849366545],[-71.414024523,41.848961545],[-71.414124524,41.848809544],[-71.414413523,41.848320544],[-71.414711523,41.847851544],[-71.413933523,41.847496544],[-71.413414523,41.847252544],[-71.413226523,41.847162544],[-71.413146523,41.847124544],[-71.413107523,41.847105544],[-71.412971523,41.847040544],[-71.412689522,41.846905544],[-71.412187522,41.846664544],[-71.412125522,41.846634544],[-71.411934522,41.846535544],[-71.411751522,41.846413544],[-71.411568523,41.846299544],[-71.411415522,41.846203544],[-71.411331522,41.846123544],[-71.411301522,41.846089544],[-71.411186522,41.845993544],[-71.411186962,41.846014891],[-71.411224522,41.847836544],[-71.411224522,41.848240545],[-71.411217522,41.848454545],[-71.411171523,41.848957545],[-71.411156522,41.849038545],[-71.411133522,41.849221544],[-71.411018522,41.849755545],[-71.410873522,41.850274545],[-71.410660522,41.850785545],[-71.410539522,41.851047545],[-71.410507522,41.851117545],[-71.410286522,41.851513545],[-71.410149522,41.851738545],[-71.410027522,41.851918545],[-71.409966522,41.851994545],[-71.409882522,41.852116545],[-71.409729522,41.852322545],[-71.409538522,41.852555545],[-71.408966522,41.853150546],[-71.408686522,41.853430545],[-71.408463521,41.853653545],[-71.408058522,41.854042546],[-71.407120521,41.854966546],[-71.406654521,41.855435546],[-71.406593521,41.855492546],[-71.406527521,41.855559546],[-71.406219521,41.855858546],[-71.406059521,41.856034546],[-71.405792521,41.856347546],[-71.405639521,41.856550546],[-71.406952521,41.856633546],[-71.406996521,41.856636546],[-71.407472522,41.856599546],[-71.407536521,41.856594546],[-71.407690521,41.856595546],[-71.407929521,41.856563546],[-71.407956522,41.856563546],[-71.408845522,41.856568546],[-71.409324522,41.856557546],[-71.409605522,41.856510546],[-71.409748522,41.856704546],[-71.409818522,41.856798546],[-71.410190522,41.857303546],[-71.410262523,41.857398546],[-71.410790522,41.858087547],[-71.410952522,41.858299547],[-71.411380523,41.858857546],[-71.412975523,41.859053546],[-71.413284524,41.859085546],[-71.415413524,41.859297547],[-71.415904524,41.859341546],[-71.417508525,41.859457546],[-71.417707525,41.859504546],[-71.419920525,41.859751546],[-71.420414526,41.859807546],[-71.420957526,41.859949546],[-71.421631527,41.860088546],[-71.422106526,41.860141546],[-71.423217526,41.860377546],[-71.423775527,41.860390547],[-71.424556528,41.860334546],[-71.425486528,41.860585547],[-71.425964527,41.860760547],[-71.426446528,41.860741547],[-71.427339528,41.860856547],[-71.427567528,41.860858547],[-71.427754529,41.860865546],[-71.428668529,41.860779547],[-71.428714528,41.860787546],[-71.428896529,41.860803546],[-71.429155529,41.860826546],[-71.429298528,41.860838547],[-71.429549529,41.860857547],[-71.429718529,41.860890546]]]]}}"}, +{"type": "precinct", "typeId": 2820, "areaId": 25899, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":238,\"NAME\":\"2820\",\"SHAPE_Length\":0.036017582576629,\"SHAPE_Area\":-5.6499227214863e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.43474353,41.861567546],[-71.435213531,41.861579547],[-71.436171531,41.861082546],[-71.436276531,41.861051546],[-71.436311531,41.861009546],[-71.437268532,41.860196545],[-71.438428531,41.859401545],[-71.442069533,41.856957545],[-71.442812532,41.856452545],[-71.442650533,41.856347545],[-71.442527533,41.856270545],[-71.442245533,41.856095545],[-71.441933533,41.855904545],[-71.441696533,41.855744545],[-71.441566532,41.855660545],[-71.441429532,41.855572545],[-71.441116532,41.855385545],[-71.439941532,41.855263544],[-71.439362531,41.855202545],[-71.437721532,41.855042545],[-71.436325531,41.854893544],[-71.43626453,41.854889545],[-71.434677531,41.854729545],[-71.43360153,41.854622545],[-71.43258753,41.854519545],[-71.431931529,41.854451545],[-71.431702529,41.854409545],[-71.431679529,41.854399545],[-71.431618529,41.854382545],[-71.430992529,41.854222545],[-71.430687529,41.854149545],[-71.430069529,41.853993545],[-71.428825528,41.853684544],[-71.428786528,41.853674545],[-71.428360528,41.853566544],[-71.428055528,41.853482545],[-71.427879528,41.853886545],[-71.427826528,41.854142545],[-71.427864528,41.854435545],[-71.427956528,41.854844545],[-71.428024528,41.855053545],[-71.428085528,41.855141545],[-71.428360529,41.855324545],[-71.428673528,41.855545545],[-71.428925529,41.855759545],[-71.429504529,41.856240545],[-71.429825528,41.856511545],[-71.430077528,41.856717546],[-71.430611529,41.857151546],[-71.430656529,41.857193545],[-71.431259529,41.857697546],[-71.431648529,41.858017545],[-71.43260253,41.858803546],[-71.43285453,41.859002546],[-71.43304453,41.859146545],[-71.43319553,41.859256546],[-71.43344153,41.859436545],[-71.43359453,41.859566546],[-71.43360953,41.859585546],[-71.43367053,41.859650545],[-71.43386853,41.860009546],[-71.43417453,41.860611546],[-71.434479531,41.861157546],[-71.43468553,41.861496546],[-71.43474353,41.861567546]]]]}}"}, +{"type": "precinct", "typeId": 2821, "areaId": 25900, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":239,\"NAME\":\"2821\",\"SHAPE_Length\":0.041966734366636,\"SHAPE_Area\":-5.8182825800935e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.441116532,41.855385545],[-71.441429532,41.855572545],[-71.441566532,41.855660545],[-71.441696533,41.855744545],[-71.441933533,41.855904545],[-71.442245533,41.856095545],[-71.442527533,41.856270545],[-71.442650533,41.856347545],[-71.442812532,41.856452545],[-71.442943533,41.856365545],[-71.443839533,41.855771544],[-71.444962533,41.854992544],[-71.445599534,41.854557545],[-71.445878534,41.854364545],[-71.446317534,41.854079544],[-71.446418534,41.854015544],[-71.446504534,41.853933545],[-71.446561534,41.853882544],[-71.446480534,41.853760544],[-71.446159534,41.853302544],[-71.446075534,41.853176544],[-71.446007534,41.853077545],[-71.445808534,41.852806544],[-71.445496534,41.852379544],[-71.445419534,41.852288544],[-71.445137533,41.851956544],[-71.445068534,41.851883544],[-71.444992534,41.851815544],[-71.444931534,41.851769544],[-71.444824533,41.851685544],[-71.444649533,41.851567544],[-71.444572533,41.851525544],[-71.444374533,41.851399544],[-71.444138533,41.851246544],[-71.443985533,41.851155544],[-71.443909533,41.851109544],[-71.443832533,41.851071544],[-71.443764533,41.851029544],[-71.443687533,41.850991543],[-71.443596533,41.850953543],[-71.443497533,41.850911544],[-71.443214533,41.850811544],[-71.443024533,41.850743544],[-71.442207532,41.850460544],[-71.441986532,41.850380544],[-71.441422532,41.850163544],[-71.441254532,41.850102544],[-71.440598532,41.849865544],[-71.440559532,41.849854544],[-71.440208532,41.849717544],[-71.439865532,41.849583544],[-71.439522531,41.849450544],[-71.438942531,41.849209544],[-71.438370531,41.848973544],[-71.438004531,41.848820544],[-71.437714531,41.848702544],[-71.437172531,41.848481543],[-71.43706553,41.848431544],[-71.43637853,41.848149543],[-71.43576053,41.847886544],[-71.43555553,41.847794543],[-71.43511253,41.847603543],[-71.43473153,41.847439544],[-71.43431953,41.847210543],[-71.43421953,41.847168544],[-71.434059529,41.847092543],[-71.43383853,41.847035543],[-71.43352553,41.846947544],[-71.433334529,41.846905543],[-71.433212529,41.846878543],[-71.432648529,41.846768543],[-71.431831529,41.846608543],[-71.431061528,41.846451543],[-71.430145528,41.846264543],[-71.429771528,41.846199543],[-71.428993528,41.846062543],[-71.429337528,41.846344544],[-71.429565528,41.846524544],[-71.430565528,41.846947544],[-71.430931529,41.847119543],[-71.432228529,41.847714544],[-71.432739529,41.847996544],[-71.432793529,41.848042544],[-71.432938529,41.848164543],[-71.433022529,41.848263543],[-71.433090529,41.848339543],[-71.433403529,41.848923544],[-71.433685529,41.849549544],[-71.43400653,41.850155544],[-71.43413153,41.850462544],[-71.43409953,41.850478544],[-71.43415853,41.850529544],[-71.43454053,41.850846544],[-71.43503653,41.851273544],[-71.435516531,41.851658544],[-71.435669531,41.851788545],[-71.43586053,41.851918544],[-71.435921531,41.851960544],[-71.437141531,41.852761545],[-71.437279531,41.852848544],[-71.437622531,41.853085544],[-71.437920531,41.853279544],[-71.438220531,41.853478545],[-71.438789532,41.853856545],[-71.439163532,41.854103545],[-71.439316532,41.854206545],[-71.439636531,41.854412545],[-71.439781532,41.854512545],[-71.440437532,41.854939545],[-71.441116532,41.855385545]]]]}}"}, +{"type": "precinct", "typeId": 2822, "areaId": 25901, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":240,\"NAME\":\"2822\",\"SHAPE_Length\":0.025021060698136,\"SHAPE_Area\":-1.4872825027994e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.425895525,41.812839537],[-71.425926525,41.812851537],[-71.426041525,41.812924537],[-71.426109525,41.812977537],[-71.426147525,41.813004537],[-71.426468526,41.813351537],[-71.426552525,41.813458537],[-71.427216525,41.813130537],[-71.427826526,41.812832537],[-71.428398526,41.812535537],[-71.428902526,41.812394537],[-71.429428526,41.812260537],[-71.429588527,41.812611537],[-71.430344527,41.812222536],[-71.431061527,41.811867537],[-71.431168527,41.811898537],[-71.432487527,41.811894536],[-71.433621528,41.811880537],[-71.434395528,41.811871536],[-71.435684528,41.811779536],[-71.435570528,41.811425536],[-71.435463528,41.811077536],[-71.434624527,41.810994536],[-71.434441528,41.811005537],[-71.434280528,41.811009537],[-71.434036527,41.810913537],[-71.432617527,41.810433536],[-71.430992527,41.809994537],[-71.430305526,41.809815536],[-71.430244526,41.809803537],[-71.429207526,41.809521536],[-71.429131526,41.809521536],[-71.428757526,41.809620536],[-71.428322525,41.809750536],[-71.428612526,41.810421537],[-71.428802526,41.810833537],[-71.429062526,41.811428536],[-71.428520526,41.811554537],[-71.427994525,41.811654537],[-71.427322526,41.811592537],[-71.426544525,41.811520536],[-71.426460525,41.812043537],[-71.426453525,41.812233537],[-71.426460525,41.812287537],[-71.426498525,41.812340537],[-71.426603526,41.812454537],[-71.425895525,41.812839537]]]]}}"}, +{"type": "precinct", "typeId": 2823, "areaId": 25902, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":241,\"NAME\":\"2823\",\"SHAPE_Length\":0.045046709053904,\"SHAPE_Area\":-8.8537132374003e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.428009526,41.809060537],[-71.428162526,41.808651537],[-71.428406525,41.808091536],[-71.430229526,41.808567536],[-71.431190526,41.808838536],[-71.433556527,41.809475536],[-71.434059527,41.808903536],[-71.434540528,41.808331536],[-71.435074528,41.807740535],[-71.435478528,41.807946536],[-71.436104528,41.808236536],[-71.436752528,41.808575535],[-71.437897529,41.809132536],[-71.438265529,41.809332536],[-71.438692529,41.809217536],[-71.43933853,41.809031536],[-71.439575529,41.808949536],[-71.439835529,41.808884536],[-71.440186529,41.808812536],[-71.440300529,41.808785536],[-71.44056753,41.808712535],[-71.44080953,41.808649536],[-71.44081953,41.808575535],[-71.44094853,41.807389535],[-71.440979529,41.807022535],[-71.44099453,41.806775536],[-71.44098753,41.806530535],[-71.44097153,41.806229535],[-71.440944529,41.805982535],[-71.44085753,41.805443535],[-71.440842529,41.805355535],[-71.440750529,41.804974535],[-71.44065953,41.804512535],[-71.440651529,41.804495535],[-71.440600529,41.804244535],[-71.440453529,41.804173535],[-71.440338529,41.804139535],[-71.440285529,41.804127535],[-71.44021653,41.804108535],[-71.440010529,41.804074535],[-71.439781529,41.804016535],[-71.439674529,41.803982535],[-71.439560529,41.803929535],[-71.439522529,41.803913535],[-71.439255529,41.803738535],[-71.439163529,41.803810535],[-71.438942529,41.803673535],[-71.438576529,41.803517535],[-71.438240529,41.803334535],[-71.438095528,41.803265535],[-71.437820528,41.803147535],[-71.437408529,41.803006535],[-71.436760528,41.802784534],[-71.436096528,41.802552534],[-71.435417528,41.802307535],[-71.434799527,41.802105534],[-71.434189527,41.801873535],[-71.433510526,41.801640535],[-71.432854527,41.801407535],[-71.432198527,41.801155535],[-71.431519527,41.800930534],[-71.431313526,41.801274535],[-71.430794526,41.802117535],[-71.430611526,41.802403535],[-71.430588526,41.802498535],[-71.430481526,41.802876535],[-71.430328526,41.803494535],[-71.430214526,41.803872535],[-71.430161526,41.804051535],[-71.427719525,41.804097535],[-71.427269525,41.804112535],[-71.426369525,41.804127536],[-71.425914525,41.804138535],[-71.425560524,41.804146536],[-71.425392525,41.804749536],[-71.425224524,41.805359535],[-71.425064525,41.805973536],[-71.425011524,41.806149536],[-71.424980524,41.806282536],[-71.424965525,41.806420536],[-71.424942525,41.806557536],[-71.424866525,41.807110536],[-71.424858524,41.807183536],[-71.424797524,41.807637536],[-71.424774524,41.807801536],[-71.424721524,41.808190536],[-71.427269525,41.808411536],[-71.427910526,41.808499536],[-71.427948526,41.808846537],[-71.427986526,41.808968536],[-71.428009526,41.809060537]]]]}}"}, +{"type": "precinct", "typeId": 2824, "areaId": 25904, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":243,\"NAME\":\"2824\",\"SHAPE_Length\":0.071735535333478,\"SHAPE_Area\":-0.00023664535304841},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.425560524,41.804146536],[-71.425914525,41.804138535],[-71.426369525,41.804127536],[-71.427269525,41.804112535],[-71.427719525,41.804097535],[-71.430161526,41.804051535],[-71.430214526,41.803872535],[-71.430328526,41.803494535],[-71.430481526,41.802876535],[-71.430588526,41.802498535],[-71.430611526,41.802403535],[-71.430794526,41.802117535],[-71.431313526,41.801274535],[-71.431519527,41.800930534],[-71.432198527,41.801155535],[-71.432854527,41.801407535],[-71.433510526,41.801640535],[-71.434189527,41.801873535],[-71.434799527,41.802105534],[-71.435417528,41.802307535],[-71.436096528,41.802552534],[-71.436760528,41.802784534],[-71.437408529,41.803006535],[-71.437820528,41.803147535],[-71.438095528,41.803265535],[-71.438240529,41.803334535],[-71.438576529,41.803517535],[-71.438942529,41.803673535],[-71.439163529,41.803810535],[-71.439255529,41.803738535],[-71.439522529,41.803913535],[-71.439560529,41.803929535],[-71.439674529,41.803982535],[-71.439781529,41.804016535],[-71.440010529,41.804074535],[-71.44021653,41.804108535],[-71.440285529,41.804127535],[-71.440338529,41.804139535],[-71.440453529,41.804173535],[-71.440600529,41.804244535],[-71.440555529,41.804020535],[-71.440541529,41.803954534],[-71.440296529,41.803749535],[-71.440252529,41.803713535],[-71.440193529,41.803668535],[-71.440040529,41.803556535],[-71.439965529,41.803514535],[-71.439857529,41.803452535],[-71.439934529,41.803425535],[-71.44000253,41.803395535],[-71.439938529,41.803297535],[-71.439553529,41.802614534],[-71.439368529,41.802293535],[-71.439308529,41.802159534],[-71.439266529,41.802035535],[-71.439246529,41.801916535],[-71.439232529,41.801613534],[-71.439245528,41.800897534],[-71.439240529,41.800724534],[-71.439234529,41.800671534],[-71.439228529,41.800630534],[-71.439229529,41.800452534],[-71.439241529,41.800298534],[-71.439242529,41.800037534],[-71.439288528,41.798894534],[-71.439335529,41.797955534],[-71.439353529,41.797688534],[-71.439358529,41.797606534],[-71.439359529,41.797385533],[-71.439340529,41.797249533],[-71.439058528,41.796174533],[-71.438875528,41.795492533],[-71.438541528,41.794237533],[-71.438448528,41.794016533],[-71.438345528,41.793892533],[-71.437941528,41.793544533],[-71.437769528,41.793407533],[-71.437642528,41.793247532],[-71.437538528,41.793040533],[-71.437483528,41.792828533],[-71.437461528,41.792741532],[-71.437427528,41.792253532],[-71.437421528,41.792164533],[-71.437408528,41.791959533],[-71.437376527,41.791688532],[-71.437362528,41.791581533],[-71.437302528,41.791028532],[-71.437263528,41.790738532],[-71.437184527,41.790500532],[-71.437160527,41.790441532],[-71.437111528,41.789891533],[-71.437103527,41.789598533],[-71.437088527,41.789090532],[-71.436673527,41.788829532],[-71.436354527,41.788590532],[-71.436280527,41.788551532],[-71.435810527,41.788128532],[-71.435163527,41.787572531],[-71.434541527,41.787037532],[-71.434156526,41.786710532],[-71.434042526,41.786689532],[-71.433949526,41.786672532],[-71.433696526,41.786624532],[-71.433572526,41.786601531],[-71.433502526,41.786534532],[-71.433340526,41.786369532],[-71.433090526,41.786091531],[-71.432976526,41.786091531],[-71.431564525,41.786091531],[-71.429008524,41.786095532],[-71.426398524,41.786090531],[-71.426262524,41.786091531],[-71.425204523,41.786143532],[-71.424518524,41.786171532],[-71.424190523,41.786185532],[-71.423740522,41.786152532],[-71.423110523,41.786208532],[-71.422890523,41.786175532],[-71.422089522,41.785920532],[-71.421967522,41.785912532],[-71.421701522,41.785924532],[-71.421647522,41.785926532],[-71.421602522,41.785928532],[-71.421472522,41.785930532],[-71.420766522,41.785944532],[-71.420527522,41.786325532],[-71.420510522,41.786352532],[-71.420286522,41.786739532],[-71.420131522,41.786948532],[-71.420063522,41.787041532],[-71.420135521,41.787167532],[-71.420273522,41.787426532],[-71.420333522,41.787534532],[-71.420433522,41.787716532],[-71.420509522,41.787850532],[-71.420692522,41.788185532],[-71.420906522,41.788544533],[-71.421021522,41.788742532],[-71.421257522,41.789166533],[-71.421608523,41.789788533],[-71.421893522,41.790311533],[-71.422043522,41.790585533],[-71.422173523,41.790814533],[-71.422516523,41.791439533],[-71.422874523,41.792088533],[-71.423218523,41.792702533],[-71.423569523,41.793339534],[-71.423927523,41.793984534],[-71.424438524,41.794903534],[-71.424637523,41.795246534],[-71.424840524,41.795615534],[-71.424995524,41.795895534],[-71.425346524,41.796540534],[-71.425713524,41.797192534],[-71.425789524,41.797341534],[-71.425934524,41.797623534],[-71.426018525,41.797776534],[-71.426033524,41.797844534],[-71.426105524,41.798105534],[-71.426216524,41.798504534],[-71.426254525,41.798623534],[-71.426285524,41.798756534],[-71.426407525,41.799210535],[-71.426445525,41.799397534],[-71.426498524,41.799656535],[-71.426514524,41.799916534],[-71.426520525,41.800208535],[-71.426521525,41.800244535],[-71.426514524,41.800496535],[-71.426481525,41.800717534],[-71.426468525,41.800808535],[-71.426468525,41.801110534],[-71.426338524,41.801514535],[-71.426186525,41.802010535],[-71.426071525,41.802376535],[-71.425880525,41.802971535],[-71.425705525,41.803582536],[-71.425560524,41.804146536]]]]}}"}, +{"type": "precinct", "typeId": 2825, "areaId": 25903, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":242,\"NAME\":\"2825\",\"SHAPE_Length\":0.025346763177612,\"SHAPE_Area\":-1.4810386426134e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.428322525,41.809750536],[-71.428757526,41.809620536],[-71.429131526,41.809521536],[-71.429207526,41.809521536],[-71.430244526,41.809803537],[-71.430305526,41.809815536],[-71.430992527,41.809994537],[-71.432617527,41.810433536],[-71.434036527,41.810913537],[-71.434280528,41.811009537],[-71.434441528,41.811005537],[-71.434624527,41.810994536],[-71.435463528,41.811077536],[-71.435318528,41.810681536],[-71.435204528,41.810376536],[-71.435127528,41.810135536],[-71.435501528,41.810044536],[-71.437157528,41.809597536],[-71.437447529,41.809746536],[-71.437614529,41.809815536],[-71.437950529,41.809826536],[-71.438324529,41.809849536],[-71.438354529,41.809605536],[-71.438373529,41.809336536],[-71.438265529,41.809332536],[-71.437897529,41.809132536],[-71.436752528,41.808575535],[-71.436104528,41.808236536],[-71.435478528,41.807946536],[-71.435074528,41.807740535],[-71.434540528,41.808331536],[-71.434059527,41.808903536],[-71.433556527,41.809475536],[-71.431190526,41.808838536],[-71.430229526,41.808567536],[-71.428406525,41.808091536],[-71.428162526,41.808651537],[-71.428009526,41.809060537],[-71.428322525,41.809750536]]]]}}"}, +{"type": "precinct", "typeId": 2826, "areaId": 25905, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":244,\"NAME\":\"2826\",\"SHAPE_Length\":0.034240416706409,\"SHAPE_Area\":-5.8561500242091e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.419090522,41.803578536],[-71.419121522,41.803688535],[-71.419258522,41.804119536],[-71.419350523,41.804425535],[-71.419762522,41.804272535],[-71.420578523,41.803971536],[-71.421539523,41.803627535],[-71.422356523,41.803349535],[-71.423233523,41.803025535],[-71.424904524,41.802437535],[-71.425026525,41.802388535],[-71.425056524,41.802380535],[-71.425385524,41.802258535],[-71.425987524,41.802048535],[-71.426186525,41.802010535],[-71.426338524,41.801514535],[-71.426468525,41.801110534],[-71.426468525,41.800808535],[-71.426481525,41.800717534],[-71.426514524,41.800496535],[-71.426521525,41.800244535],[-71.426520525,41.800208535],[-71.426514524,41.799916534],[-71.426498524,41.799656535],[-71.426445525,41.799397534],[-71.426407525,41.799210535],[-71.426285524,41.798756534],[-71.426254525,41.798623534],[-71.426216524,41.798504534],[-71.426105524,41.798105534],[-71.426033524,41.797844534],[-71.426018525,41.797776534],[-71.425934524,41.797623534],[-71.425789524,41.797341534],[-71.425713524,41.797192534],[-71.425346524,41.796540534],[-71.424995524,41.795895534],[-71.424840524,41.795615534],[-71.424637523,41.795246534],[-71.424438524,41.794903534],[-71.423927523,41.793984534],[-71.423088523,41.794239534],[-71.422287523,41.794495533],[-71.420944523,41.794907533],[-71.420036522,41.795189534],[-71.419083522,41.795491533],[-71.419449522,41.796132534],[-71.419777522,41.796757534],[-71.420135522,41.797402534],[-71.420494523,41.798046534],[-71.420853522,41.798687535],[-71.419960522,41.798951535],[-71.418999522,41.799267535],[-71.418037522,41.799549534],[-71.416786522,41.799923535],[-71.416801521,41.799939535],[-71.417419521,41.800442535],[-71.417435522,41.800457535],[-71.417603522,41.800591535],[-71.417747522,41.800721535],[-71.417877522,41.800866535],[-71.417999522,41.800991535],[-71.418037522,41.801037535],[-71.418129522,41.801152535],[-71.418266522,41.801354535],[-71.418404522,41.801587535],[-71.418442522,41.801663535],[-71.418541522,41.801861535],[-71.418617522,41.802082535],[-71.418648522,41.802155535],[-71.418701522,41.802300535],[-71.418808522,41.802639535],[-71.418907522,41.802983535],[-71.419090522,41.803578536]]]]}}"}, +{"type": "precinct", "typeId": 2827, "areaId": 25906, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":245,\"NAME\":\"2827\",\"SHAPE_Length\":0.050412295410418,\"SHAPE_Area\":-0.00011138787984036},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.410851519,41.790680533],[-71.410370519,41.791062534],[-71.410217519,41.791245533],[-71.409996518,41.791489534],[-71.409721518,41.791737534],[-71.409325519,41.792061533],[-71.408943518,41.792302534],[-71.408699519,41.792435533],[-71.408333518,41.792679534],[-71.408226518,41.792782533],[-71.408127518,41.792946534],[-71.408340518,41.793118534],[-71.408653518,41.793373534],[-71.408974519,41.793625534],[-71.409241519,41.793843534],[-71.409447519,41.794008533],[-71.409607519,41.794136534],[-71.409767518,41.794266534],[-71.40988548,41.794362917],[-71.409931519,41.794400534],[-71.410000869,41.794456566],[-71.410097335,41.794534505],[-71.410233519,41.794644534],[-71.410454519,41.794815534],[-71.410736519,41.795037534],[-71.411270519,41.795479534],[-71.41211752,41.796166534],[-71.41276652,41.796681534],[-71.41307152,41.796925534],[-71.41343752,41.797219535],[-71.41346752,41.797238535],[-71.41372752,41.797448534],[-71.41402452,41.797680534],[-71.414116521,41.797753535],[-71.414665521,41.798207534],[-71.414772521,41.798294535],[-71.415466521,41.798859534],[-71.415497521,41.798886534],[-71.416023521,41.799302535],[-71.416138521,41.799397535],[-71.416595521,41.799767535],[-71.416786522,41.799923535],[-71.418037522,41.799549534],[-71.418999522,41.799267535],[-71.419960522,41.798951535],[-71.420853522,41.798687535],[-71.420494523,41.798046534],[-71.420135522,41.797402534],[-71.419777522,41.796757534],[-71.419449522,41.796132534],[-71.419083522,41.795491533],[-71.420036522,41.795189534],[-71.420944523,41.794907533],[-71.422287523,41.794495533],[-71.423088523,41.794239534],[-71.423927523,41.793984534],[-71.423569523,41.793339534],[-71.423218523,41.792702533],[-71.422874523,41.792088533],[-71.422516523,41.791439533],[-71.422173523,41.790814533],[-71.422043522,41.790585533],[-71.421893522,41.790311533],[-71.421608523,41.789788533],[-71.421257522,41.789166533],[-71.421021522,41.788742532],[-71.420906522,41.788544533],[-71.420692522,41.788185532],[-71.420509522,41.787850532],[-71.420433522,41.787716532],[-71.420333522,41.787534532],[-71.420273522,41.787426532],[-71.420135521,41.787167532],[-71.420063522,41.787041532],[-71.419792522,41.786568532],[-71.419669521,41.786334532],[-71.419556522,41.786118532],[-71.419296521,41.786194532],[-71.419182521,41.786217532],[-71.419113522,41.786217532],[-71.419044521,41.786221532],[-71.418907521,41.786183532],[-71.418800521,41.786126532],[-71.418694521,41.786045532],[-71.418617521,41.785977532],[-71.418228521,41.786255532],[-71.418137521,41.786316532],[-71.418030521,41.786370532],[-71.417915521,41.786412532],[-71.417778521,41.786435532],[-71.417679521,41.786431532],[-71.417572521,41.786404532],[-71.417475521,41.786333532],[-71.417216521,41.786530532],[-71.417107521,41.786680532],[-71.41722852,41.786858532],[-71.417351521,41.786972532],[-71.417473521,41.787109532],[-71.417489521,41.787302532],[-71.417434521,41.787516532],[-71.417190521,41.787798533],[-71.417290521,41.787823533],[-71.417358521,41.787896533],[-71.417366521,41.787949532],[-71.417442521,41.788037533],[-71.417603521,41.788098532],[-71.417648521,41.788159532],[-71.417648521,41.788227533],[-71.417671521,41.788342533],[-71.417648521,41.788453532],[-71.417572521,41.788659533],[-71.417488521,41.788826532],[-71.417412521,41.788926533],[-71.417274521,41.788979532],[-71.417099521,41.788987533],[-71.416840521,41.789070533],[-71.41670252,41.789151533],[-71.416649521,41.789238533],[-71.416626521,41.789360533],[-71.416588521,41.789463533],[-71.416496521,41.789563532],[-71.416435521,41.789597533],[-71.416298521,41.789605533],[-71.416084521,41.789624533],[-71.415909521,41.789654533],[-71.415871521,41.789540533],[-71.41578752,41.789360533],[-71.415703521,41.789200533],[-71.41527652,41.788899532],[-71.41505452,41.788796533],[-71.41478052,41.788647532],[-71.41426852,41.788426533],[-71.41420052,41.788514533],[-71.41407852,41.788643533],[-71.41394852,41.788746532],[-71.41380352,41.788830533],[-71.41362852,41.788906533],[-71.41345252,41.788964533],[-71.413330519,41.788998532],[-71.413116519,41.789059533],[-71.412956519,41.789139533],[-71.412865519,41.789173532],[-71.412605519,41.789360533],[-71.410851519,41.790680533]]]]}}"}, +{"type": "precinct", "typeId": 2828, "areaId": 25907, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":246,\"NAME\":\"2828\",\"SHAPE_Length\":0.041210533588814,\"SHAPE_Area\":-4.9662231002365e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.422035524,41.812733537],[-71.422173524,41.812775537],[-71.422791524,41.812783537],[-71.423531524,41.812779537],[-71.423882524,41.812775537],[-71.425117525,41.812752537],[-71.425461525,41.812748537],[-71.425652525,41.812764537],[-71.425789525,41.812794537],[-71.425895525,41.812839537],[-71.426603526,41.812454537],[-71.426498525,41.812340537],[-71.426460525,41.812287537],[-71.426453525,41.812233537],[-71.426460525,41.812043537],[-71.426544525,41.811520536],[-71.427322526,41.811592537],[-71.427994525,41.811654537],[-71.428520526,41.811554537],[-71.429062526,41.811428536],[-71.428802526,41.810833537],[-71.428612526,41.810421537],[-71.428322525,41.809750536],[-71.428009526,41.809060537],[-71.427986526,41.808968536],[-71.427948526,41.808846537],[-71.427910526,41.808499536],[-71.427269525,41.808411536],[-71.424721524,41.808190536],[-71.424774524,41.807801536],[-71.424797524,41.807637536],[-71.424858524,41.807183536],[-71.424866525,41.807110536],[-71.424942525,41.806557536],[-71.424965525,41.806420536],[-71.424980524,41.806282536],[-71.425011524,41.806149536],[-71.425064525,41.805973536],[-71.425224524,41.805359535],[-71.425392525,41.804749536],[-71.425560524,41.804146536],[-71.425705525,41.803582536],[-71.425880525,41.802971535],[-71.426071525,41.802376535],[-71.426186525,41.802010535],[-71.425987524,41.802048535],[-71.425385524,41.802258535],[-71.425056524,41.802380535],[-71.425026525,41.802388535],[-71.424904524,41.802437535],[-71.423233523,41.803025535],[-71.422356523,41.803349535],[-71.421539523,41.803627535],[-71.420578523,41.803971536],[-71.419762522,41.804272535],[-71.419350523,41.804425535],[-71.419395522,41.804562535],[-71.419510522,41.804879536],[-71.419571522,41.805088535],[-71.419693523,41.805485536],[-71.419777523,41.805733536],[-71.419891523,41.806084536],[-71.420013523,41.806485536],[-71.420052523,41.806626536],[-71.420197523,41.807103536],[-71.420242523,41.807255536],[-71.420433523,41.807843536],[-71.420456523,41.807896536],[-71.420639523,41.808495537],[-71.420677524,41.808602536],[-71.420845523,41.809155537],[-71.421623523,41.809155537],[-71.424507524,41.809136537],[-71.424377525,41.809414536],[-71.424049525,41.809899537],[-71.423965524,41.810021536],[-71.423569524,41.810612537],[-71.423157524,41.811222537],[-71.422569523,41.812081537],[-71.422203524,41.812546537],[-71.422035524,41.812733537]]]]}}"}, +{"type": "precinct", "typeId": 2829, "areaId": 25908, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":247,\"NAME\":\"2829\",\"SHAPE_Length\":0.032003907179167,\"SHAPE_Area\":-4.3502720688477e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.401657516,41.785897532],[-71.401878515,41.786286532],[-71.401932516,41.786354533],[-71.402222516,41.786721533],[-71.402390516,41.786927533],[-71.402443516,41.786984533],[-71.402756516,41.787362533],[-71.402832516,41.787449533],[-71.402924516,41.787552532],[-71.403236516,41.787922533],[-71.403641516,41.788395533],[-71.404022517,41.788849533],[-71.404366517,41.789265533],[-71.404404517,41.789311533],[-71.404823516,41.789799533],[-71.404861517,41.789849533],[-71.405205517,41.790249533],[-71.405334517,41.790398534],[-71.405617517,41.790726534],[-71.405884517,41.791039534],[-71.406013517,41.791195534],[-71.406250517,41.791432534],[-71.406328517,41.791495533],[-71.406670518,41.791771533],[-71.407166517,41.792179533],[-71.407310518,41.792294533],[-71.407890518,41.792755534],[-71.407982518,41.792832534],[-71.408127518,41.792946534],[-71.408226518,41.792782533],[-71.408333518,41.792679534],[-71.408699519,41.792435533],[-71.408943518,41.792302534],[-71.409325519,41.792061533],[-71.409721518,41.791737534],[-71.409996518,41.791489534],[-71.410217519,41.791245533],[-71.410370519,41.791062534],[-71.410851519,41.790680533],[-71.412605519,41.789360533],[-71.412865519,41.789173532],[-71.412956519,41.789139533],[-71.413116519,41.789059533],[-71.413330519,41.788998532],[-71.41345252,41.788964533],[-71.41362852,41.788906533],[-71.41380352,41.788830533],[-71.41394852,41.788746532],[-71.41379052,41.788779533],[-71.413658519,41.788807533],[-71.41353652,41.788811533],[-71.41342252,41.788788533],[-71.413368519,41.788765532],[-71.41330552,41.788731533],[-71.413254519,41.788689533],[-71.41320052,41.788613533],[-71.413170519,41.788529532],[-71.41314752,41.788445533],[-71.41316752,41.788347533],[-71.412962519,41.788276532],[-71.41308352,41.788213533],[-71.41291052,41.787476532],[-71.412354519,41.787686533],[-71.412403519,41.787583533],[-71.412439519,41.787507533],[-71.41248352,41.787415533],[-71.412514519,41.787201532],[-71.41248352,41.787026532],[-71.412361519,41.786908533],[-71.412178519,41.786785533],[-71.411919519,41.786698532],[-71.411720519,41.786621532],[-71.411682519,41.786644532],[-71.411377519,41.786770533],[-71.410988518,41.786961533],[-71.410645519,41.787091532],[-71.410439518,41.787136533],[-71.410255519,41.787140533],[-71.410118519,41.787136533],[-71.409920518,41.787083533],[-71.409515518,41.786957532],[-71.409363519,41.786915532],[-71.409187518,41.786900533],[-71.408684518,41.786900533],[-71.408440518,41.786873532],[-71.408211518,41.786797532],[-71.407990518,41.786717532],[-71.407806518,41.786686533],[-71.407654517,41.786671533],[-71.407295518,41.786751533],[-71.407173518,41.786789533],[-71.407059518,41.786801533],[-71.406960518,41.786797532],[-71.406853517,41.786763533],[-71.406769518,41.786721532],[-71.406700517,41.786637532],[-71.406639517,41.786549533],[-71.406609517,41.786347532],[-71.406586517,41.786229532],[-71.406525517,41.786118532],[-71.406509517,41.786099532],[-71.406441517,41.786038532],[-71.406342518,41.785977532],[-71.406235517,41.785927533],[-71.406158517,41.785916532],[-71.406075517,41.785889533],[-71.406036517,41.785870533],[-71.405869517,41.785847532],[-71.405777517,41.785847532],[-71.404541517,41.785855533],[-71.403896516,41.785860532],[-71.403656516,41.785862532],[-71.403419516,41.785862532],[-71.401657516,41.785897532]]]]}}"}, +{"type": "precinct", "typeId": 2830, "areaId": 25909, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":248,\"NAME\":\"2830\",\"SHAPE_Length\":0.01197857147481,\"SHAPE_Area\":-7.2358249410504e-6},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.421082524,41.810040536],[-71.421272523,41.810761536],[-71.421547524,41.811829537],[-71.421547524,41.811848537],[-71.421631524,41.812191537],[-71.421643524,41.812220537],[-71.421837524,41.812695537],[-71.421928523,41.812798537],[-71.422035524,41.812733537],[-71.422203524,41.812546537],[-71.422569523,41.812081537],[-71.423157524,41.811222537],[-71.423569524,41.810612537],[-71.423965524,41.810021536],[-71.424049525,41.809899537],[-71.424377525,41.809414536],[-71.424507524,41.809136537],[-71.421623523,41.809155537],[-71.420845523,41.809155537],[-71.420846523,41.809173537],[-71.420929524,41.809491537],[-71.421005524,41.809780537],[-71.421051523,41.809933537],[-71.421082524,41.810040536]]]]}}"}, +{"type": "precinct", "typeId": 2831, "areaId": 26063, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":402,\"NAME\":\"2831\",\"SHAPE_Length\":0.055117448409886,\"SHAPE_Area\":-0.00010374118489206},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.398823117,41.802043865],[-71.398823077,41.802107669],[-71.398787791,41.802156851],[-71.398735393,41.802204029],[-71.398681075,41.802246997],[-71.398599196,41.802285893],[-71.398533204,41.802308407],[-71.398476909,41.802345702],[-71.398411275,41.802393714],[-71.39835238,41.802450879],[-71.398311682,41.802520639],[-71.398299488,41.802597261],[-71.398294876,41.802672427],[-71.398293914,41.802739774],[-71.398295741,41.802802162],[-71.398316409,41.80285583],[-71.398373076,41.802912115],[-71.398447719,41.802966128],[-71.398527018,41.803013651],[-71.398600574,41.803059179],[-71.398667583,41.803108955],[-71.398726314,41.803175097],[-71.398761109,41.803225142],[-71.398794929,41.803273082],[-71.398837606,41.803344333],[-71.398862256,41.80341216],[-71.398857534,41.803480259],[-71.398829098,41.803545685],[-71.398786419,41.803611212],[-71.398740983,41.803681036],[-71.398707811,41.803745794],[-71.398711534,41.803807451],[-71.398749198,41.803860288],[-71.398808793,41.803921469],[-71.398852116,41.803971453],[-71.398888862,41.804024312],[-71.398918085,41.804080778],[-71.398941648,41.804140143],[-71.398963288,41.804198088],[-71.398987747,41.80425176],[-71.399013122,41.804306118],[-71.399037633,41.804365484],[-71.399060251,41.804423431],[-71.399067957,41.804499202],[-71.399068807,41.804560857],[-71.399065872,41.804620381],[-71.399066722,41.804682059],[-71.399079975,41.80474855],[-71.399080387,41.804749159],[-71.401857031,41.804058339],[-71.403192176,41.803783681],[-71.403894081,41.803665424],[-71.404138221,41.803615834],[-71.404336586,41.803573873],[-71.406030312,41.803253438],[-71.40668644,41.803135182],[-71.407418863,41.80296352],[-71.408097879,41.802803303],[-71.408784525,41.802639271],[-71.409486429,41.802471424],[-71.409799234,41.802376058],[-71.410234109,41.802246357],[-71.411019937,41.802070882],[-71.411683695,41.801948811],[-71.412400859,41.801780964],[-71.413125652,41.801613117],[-71.413850443,41.801449086],[-71.414689678,41.801273609],[-71.415033001,41.801174427],[-71.415528911,41.801033283],[-71.415757793,41.800960804],[-71.416421549,41.800754811],[-71.417419521,41.800442535],[-71.416801521,41.799939535],[-71.416786522,41.799923535],[-71.416595521,41.799767535],[-71.416138521,41.799397535],[-71.416023521,41.799302535],[-71.415497521,41.798886534],[-71.415466521,41.798859534],[-71.414772521,41.798294535],[-71.414665521,41.798207534],[-71.414116521,41.797753535],[-71.41402452,41.797680534],[-71.41372752,41.797448534],[-71.41346752,41.797238535],[-71.41343752,41.797219535],[-71.41307152,41.796925534],[-71.41276652,41.796681534],[-71.41211752,41.796166534],[-71.411270519,41.795479534],[-71.410736519,41.795037534],[-71.410454519,41.794815534],[-71.410233519,41.794644534],[-71.410355519,41.795041534],[-71.409355518,41.795548534],[-71.408592518,41.795922534],[-71.407921519,41.796273534],[-71.406921518,41.796795534],[-71.406113517,41.797230534],[-71.405930518,41.797326535],[-71.405212798,41.797680396],[-71.405212517,41.797680535],[-71.405151517,41.797474535],[-71.405006518,41.796952534],[-71.404960517,41.796781534],[-71.404907517,41.796574535],[-71.404854517,41.796410534],[-71.404569517,41.796560534],[-71.403529517,41.797127535],[-71.403380517,41.797211534],[-71.403091517,41.797358535],[-71.402969517,41.797424534],[-71.402752517,41.797540535],[-71.402366516,41.797713534],[-71.402091517,41.797873535],[-71.401523517,41.798181535],[-71.400705516,41.798606535],[-71.399845516,41.799059535],[-71.399691516,41.799150535],[-71.397465072,41.800433555],[-71.39652867,41.801076759],[-71.396379746,41.80112824],[-71.395748291,41.801559865],[-71.395695773,41.801529105],[-71.395344267,41.801792668],[-71.395406728,41.801855271],[-71.395513611,41.801777889],[-71.395540822,41.801827996],[-71.395678375,41.80191054],[-71.396541406,41.801309826],[-71.396534472,41.801288621],[-71.397086072,41.800905836],[-71.397086067,41.800909289],[-71.39708763,41.801555745],[-71.397088478,41.801618108],[-71.397093148,41.801679035],[-71.397111215,41.801753306],[-71.397117697,41.801808517],[-71.39712412,41.801863065],[-71.397124145,41.801866587],[-71.397141159,41.801930246],[-71.397180044,41.802000808],[-71.397225341,41.802057174],[-71.397279247,41.802119105],[-71.39732931,41.802176139],[-71.397372686,41.802229668],[-71.39741219,41.802276836],[-71.39749157,41.802330053],[-71.397572595,41.802367699],[-71.397649723,41.802395439],[-71.397740842,41.802408921],[-71.397843027,41.802401717],[-71.397912918,41.802386983],[-71.397991006,41.802349525],[-71.398064386,41.802312817],[-71.398135843,41.802273958],[-71.398206463,41.802242942],[-71.398293296,41.802222391],[-71.398388577,41.802193295],[-71.39847795,41.802150769],[-71.398560666,41.802104762],[-71.398629223,41.802063841],[-71.398699816,41.802029966],[-71.39877252,41.802014503],[-71.398823117,41.802043865]]]]}}"}, +{"type": "precinct", "typeId": 2832, "areaId": 25910, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":249,\"NAME\":\"2832\",\"SHAPE_Length\":0.051572289802842,\"SHAPE_Area\":-0.00011516389918541},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.398582515,41.796624534],[-71.399093515,41.797788535],[-71.399691516,41.799150535],[-71.399845516,41.799059535],[-71.400705516,41.798606535],[-71.401523517,41.798181535],[-71.402091517,41.797873535],[-71.402366516,41.797713534],[-71.402752517,41.797540535],[-71.402969517,41.797424534],[-71.403091517,41.797358535],[-71.403380517,41.797211534],[-71.403529517,41.797127535],[-71.404569517,41.796560534],[-71.404854517,41.796410534],[-71.404907745,41.796574544],[-71.404960517,41.796781534],[-71.405006926,41.796952199],[-71.405151885,41.797474813],[-71.405212798,41.797680396],[-71.40521292,41.797680806],[-71.405930518,41.797326535],[-71.406113517,41.797230534],[-71.406921518,41.796795534],[-71.407921519,41.796273534],[-71.408592518,41.795922534],[-71.409355518,41.795548534],[-71.410355519,41.795041534],[-71.410233519,41.794644534],[-71.410097335,41.794534505],[-71.410000869,41.794456566],[-71.409931519,41.794400534],[-71.40988548,41.794362917],[-71.409767518,41.794266534],[-71.409607519,41.794136534],[-71.409447519,41.794008533],[-71.409241519,41.793843534],[-71.408974519,41.793625534],[-71.408653518,41.793373534],[-71.408340518,41.793118534],[-71.408127518,41.792946534],[-71.407982518,41.792832534],[-71.407890518,41.792755534],[-71.407310518,41.792294533],[-71.407166517,41.792179533],[-71.406670518,41.791771533],[-71.406328517,41.791495533],[-71.406250517,41.791432534],[-71.406013517,41.791195534],[-71.405884517,41.791039534],[-71.405617517,41.790726534],[-71.405334517,41.790398534],[-71.405205517,41.790249533],[-71.404861517,41.789849533],[-71.404823516,41.789799533],[-71.404404517,41.789311533],[-71.404366517,41.789265533],[-71.404022517,41.788849533],[-71.403641516,41.788395533],[-71.403236516,41.787922533],[-71.402924516,41.787552532],[-71.402832516,41.787449533],[-71.402756516,41.787362533],[-71.402443516,41.786984533],[-71.402390516,41.786927533],[-71.402222516,41.786721533],[-71.401932516,41.786354533],[-71.401878515,41.786286532],[-71.401657516,41.785897532],[-71.401123515,41.785916532],[-71.398293514,41.786015532],[-71.398247515,41.786019533],[-71.397728514,41.786038533],[-71.395042513,41.786156533],[-71.395325514,41.787007533],[-71.395508514,41.787571533],[-71.395714514,41.788178533],[-71.395902514,41.788748533],[-71.395912514,41.788765533],[-71.395914514,41.788783533],[-71.396095514,41.789338533],[-71.396278514,41.789883533],[-71.396469514,41.790448534],[-71.393982513,41.790917534],[-71.393784514,41.790951534],[-71.393936514,41.791382534],[-71.393967513,41.791504534],[-71.394585513,41.791397534],[-71.394783513,41.791985534],[-71.394867514,41.792244534],[-71.394974514,41.792542534],[-71.395142514,41.793087534],[-71.395294514,41.793579534],[-71.395309514,41.793625534],[-71.395935514,41.793503534],[-71.397392515,41.793244534],[-71.397552514,41.793732535],[-71.397583515,41.793812534],[-71.397774515,41.794365534],[-71.397926515,41.794819534],[-71.398193515,41.795643535],[-71.398268515,41.795866534],[-71.398384515,41.796181535],[-71.398582515,41.796624534]]]]}}"}, +{"type": "precinct", "typeId": 2833, "areaId": 25911, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":250,\"NAME\":\"2833\",\"SHAPE_Length\":0.062995997617141,\"SHAPE_Area\":-8.3897894830604e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.401760795,41.80871617],[-71.401761554,41.808770126],[-71.401796383,41.808820878],[-71.40186697,41.808855036],[-71.40197039,41.808866307],[-71.402047923,41.808855739],[-71.402122555,41.808843088],[-71.402216306,41.80884024],[-71.402292111,41.808840374],[-71.402340684,41.80885839],[-71.402383147,41.808914751],[-71.4024284,41.80896613],[-71.402462365,41.809022553],[-71.402478326,41.80907983],[-71.402478574,41.809097554],[-71.402014729,41.809255731],[-71.402042006,41.809308695],[-71.402450109,41.809968874],[-71.402372851,41.809999247],[-71.40239539,41.810052207],[-71.402539024,41.810294189],[-71.401490359,41.810632049],[-71.401444859,41.810562214],[-71.401174343,41.810658625],[-71.401212205,41.81072564],[-71.40078316,41.81086509],[-71.400835844,41.810973876],[-71.402654921,41.810383978],[-71.402657202,41.810412314],[-71.402773396,41.810588571],[-71.402715898,41.810609584],[-71.402883169,41.810868302],[-71.402887316,41.810874709],[-71.402888119,41.810929984],[-71.402835745,41.810978581],[-71.402764391,41.811025219],[-71.402697613,41.811057659],[-71.402624199,41.811092242],[-71.402596545,41.811146326],[-71.402597427,41.811209399],[-71.40260751,41.811252561],[-71.40269385,41.811261827],[-71.402767733,41.811261204],[-71.402839637,41.811254999],[-71.402911432,41.81124024],[-71.402997413,41.811223962],[-71.403068757,41.81124465],[-71.40311128,41.811303138],[-71.403119828,41.81137182],[-71.403102513,41.811420859],[-71.403037877,41.811472419],[-71.402982632,41.81151891],[-71.402964151,41.811550957],[-71.402912586,41.81158963],[-71.402842906,41.81162065],[-71.402757174,41.811653942],[-71.402685767,41.811694908],[-71.402623835,41.811735791],[-71.402572462,41.811788643],[-71.402566631,41.811844689],[-71.402544164,41.811864703],[-71.402467298,41.811856085],[-71.402385531,41.811834793],[-71.402290938,41.811845438],[-71.402224048,41.811870057],[-71.402155232,41.811895405],[-71.402075129,41.811925112],[-71.402008154,41.811945477],[-71.40199305,41.811947751],[-71.401920142,41.811950433],[-71.401856368,41.811996299],[-71.401801148,41.812045671],[-71.401744869,41.81208793],[-71.401653903,41.812085085],[-71.401581777,41.812075716],[-71.401495683,41.812084927],[-71.401420291,41.812112464],[-71.401401962,41.812124592],[-71.40136304,41.812150446],[-71.401356341,41.812212895],[-71.401357111,41.812268855],[-71.401983204,41.813333427],[-71.402134765,41.81333223],[-71.402325159,41.813665955],[-71.402236225,41.813672351],[-71.402225708,41.813733356],[-71.402254156,41.813801186],[-71.402288093,41.813858341],[-71.40245505,41.814207116],[-71.402480403,41.814260079],[-71.402794392,41.81475655],[-71.402816903,41.814808802],[-71.402865116,41.81486654],[-71.402897996,41.814915187],[-71.40290306,41.814924929],[-71.403610719,41.814526142],[-71.403894149,41.814453833],[-71.40446957,41.814329782],[-71.405054433,41.814233565],[-71.405646334,41.814165581],[-71.40624284,41.814126105],[-71.406219519,41.814057538],[-71.406349518,41.814053538],[-71.406410519,41.814110538],[-71.406487519,41.814167538],[-71.406639518,41.814297538],[-71.406662519,41.814316538],[-71.406723519,41.814389538],[-71.406746519,41.814438538],[-71.406761519,41.814503538],[-71.406761519,41.814537538],[-71.406772519,41.814579538],[-71.406792518,41.814518538],[-71.406837519,41.814042538],[-71.406845519,41.814011538],[-71.406853519,41.813931538],[-71.406860519,41.813912538],[-71.406921519,41.813298537],[-71.406937519,41.813084537],[-71.406960519,41.812821538],[-71.406982519,41.812499537],[-71.406998519,41.812294538],[-71.407005519,41.812195538],[-71.407013519,41.812172537],[-71.407074519,41.811692538],[-71.407181519,41.810826537],[-71.407188519,41.810685537],[-71.407211519,41.810139537],[-71.408493519,41.809937537],[-71.40965352,41.809761537],[-71.41095752,41.809578537],[-71.41120152,41.809544537],[-71.41186552,41.809472536],[-71.412758521,41.809372537],[-71.41344552,41.809288537],[-71.413902521,41.809224536],[-71.414040521,41.809216537],[-71.414223521,41.809216537],[-71.414787522,41.809246537],[-71.415802521,41.809307537],[-71.416191522,41.809330537],[-71.416435522,41.809365537],[-71.417046522,41.809468537],[-71.417862522,41.809582537],[-71.418869522,41.809731536],[-71.419693523,41.809864536],[-71.420395523,41.809967537],[-71.420860523,41.810025537],[-71.420774524,41.810116536],[-71.421082524,41.810040536],[-71.421051523,41.809933537],[-71.421005524,41.809780537],[-71.420929524,41.809491537],[-71.420846523,41.809173537],[-71.420845523,41.809155537],[-71.420677524,41.808602536],[-71.420639523,41.808495537],[-71.420456523,41.807896536],[-71.420433523,41.807843536],[-71.420242523,41.807255536],[-71.420197523,41.807103536],[-71.420052523,41.806626536],[-71.420013523,41.806485536],[-71.419891523,41.806084536],[-71.419777523,41.805733536],[-71.419693523,41.805485536],[-71.419571522,41.805088535],[-71.419510522,41.804879536],[-71.419395522,41.804562535],[-71.419350523,41.804425535],[-71.419258522,41.804119536],[-71.419121522,41.803688535],[-71.419090522,41.803578536],[-71.418754522,41.803657536],[-71.417953522,41.803849536],[-71.416847522,41.804100536],[-71.416885522,41.804211536],[-71.416031521,41.804406536],[-71.416199521,41.804821536],[-71.415329521,41.805012536],[-71.414642521,41.805169536],[-71.414810521,41.805565536],[-71.41395652,41.805752536],[-71.413109521,41.805947536],[-71.412735521,41.806034536],[-71.41192652,41.806225536],[-71.41143352,41.806342536],[-71.41088152,41.806473536],[-71.40998152,41.806687536],[-71.408783519,41.806958536],[-71.407249519,41.807320537],[-71.405548518,41.807724537],[-71.405319518,41.807782537],[-71.405173518,41.807820536],[-71.404917518,41.807887537],[-71.404762518,41.807927537],[-71.404579518,41.807972536],[-71.403709517,41.808216537],[-71.401760795,41.80871617]]]]}}"}, +{"type": "precinct", "typeId": 2834, "areaId": 25912, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":251,\"NAME\":\"2834\",\"SHAPE_Length\":0.093831974150191,\"SHAPE_Area\":-0.00018238529042885},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.370225981,41.785742083],[-71.370264825,41.785660476],[-71.370356156,41.785569241],[-71.370490198,41.785510642],[-71.370596019,41.78552199],[-71.370651678,41.785497857],[-71.370645051,41.78543535],[-71.370656949,41.785323146],[-71.370695042,41.785282025],[-71.370845058,41.785287407],[-71.370907962,41.785215601],[-71.370965779,41.78510585],[-71.370992783,41.78498742],[-71.371043888,41.784887449],[-71.371132478,41.784790585],[-71.371233115,41.784704345],[-71.371315101,41.784609531],[-71.371404601,41.784515457],[-71.371506332,41.784416572],[-71.371604371,41.784315578],[-71.371689163,41.784222208],[-71.371790891,41.784124741],[-71.371890574,41.784025578],[-71.371992634,41.784052586],[-71.372074087,41.783994269],[-71.372175737,41.783904531],[-71.371938023,41.783430337],[-71.371798506,41.783408533],[-71.370498506,41.783208533],[-71.369948505,41.783106533],[-71.369694505,41.783066533],[-71.369931505,41.783725533],[-71.370198505,41.785508533],[-71.370225981,41.785742083]]],[[[-71.370426848,41.786273864],[-71.370290197,41.786287921],[-71.370398506,41.787208534],[-71.370573023,41.787437595],[-71.370574922,41.787412898],[-71.370542438,41.787322781],[-71.370529705,41.787227221],[-71.370566129,41.787105394],[-71.370632362,41.787065883],[-71.370778075,41.787040365],[-71.370919325,41.787000046],[-71.370960239,41.786893706],[-71.370981485,41.786782267],[-71.370984,41.78667067],[-71.370930606,41.786600746],[-71.370860746,41.786499107],[-71.370759857,41.786404248],[-71.370669155,41.78631928],[-71.370564996,41.786255999],[-71.370426848,41.786273864]]],[[[-71.373234506,41.790282535],[-71.373482445,41.790964364],[-71.373515001,41.790965595],[-71.373574101,41.790965317],[-71.373636117,41.79095809],[-71.373688091,41.790929745],[-71.373729943,41.790889359],[-71.373759569,41.790850285],[-71.373783574,41.790810429],[-71.373802941,41.790767068],[-71.373815775,41.790720841],[-71.373829695,41.790665514],[-71.373838068,41.790603091],[-71.373840605,41.790556099],[-71.373842966,41.790520998],[-71.373834217,41.790478818],[-71.373822704,41.790428174],[-71.373820393,41.790391673],[-71.373833216,41.790350363],[-71.373850684,41.790309081],[-71.373844758,41.790261301],[-71.373809624,41.790226639],[-71.373782997,41.790185698],[-71.373729765,41.790170546],[-71.373655626,41.790173483],[-71.373615084,41.790185079],[-71.373607146,41.79019719],[-71.373603279,41.790205762],[-71.373601152,41.790215044],[-71.373573191,41.790231068],[-71.373504364,41.790251917],[-71.373498813,41.79024704],[-71.373495151,41.790244497],[-71.373477187,41.790242145],[-71.373460508,41.790239336],[-71.373395891,41.790233205],[-71.373329415,41.790224236],[-71.373266138,41.790189337],[-71.373217098,41.790140526],[-71.37318481,41.790103763],[-71.373167568,41.790060842],[-71.373182156,41.79002372],[-71.373217152,41.790004365],[-71.373247552,41.789975813],[-71.373285539,41.789942444],[-71.373293484,41.789911579],[-71.373300623,41.789870927],[-71.373317071,41.789835955],[-71.37328749,41.789805576],[-71.373225902,41.789781907],[-71.37318395,41.789764709],[-71.373141196,41.789735619],[-71.37308456,41.789695856],[-71.373050379,41.789658382],[-71.373022807,41.78961673],[-71.373001798,41.789578676],[-71.372978233,41.789519511],[-71.372967951,41.78944927],[-71.372961283,41.789390947],[-71.372952089,41.789311514],[-71.372951044,41.789252557],[-71.37295018,41.789179558],[-71.372943406,41.789128256],[-71.372940289,41.789081875],[-71.37294995,41.789063728],[-71.372962641,41.789027998],[-71.372948944,41.78900054],[-71.372958015,41.788956367],[-71.372973552,41.788918582],[-71.372994744,41.788879454],[-71.373021381,41.788852979],[-71.373057046,41.788850457],[-71.373108449,41.788862794],[-71.373146257,41.788842734],[-71.373160845,41.788805634],[-71.373152176,41.78875433],[-71.373152707,41.788717146],[-71.373160828,41.788674367],[-71.373149347,41.788623769],[-71.373118715,41.788599631],[-71.373083192,41.788592343],[-71.373079017,41.788555794],[-71.373099299,41.788513143],[-71.373121509,41.788469122],[-71.373099664,41.788421188],[-71.373074022,41.788376794],[-71.373057371,41.788360493],[-71.373033201,41.788344847],[-71.373005411,41.788320758],[-71.372958858,41.788297243],[-71.372913952,41.788291271],[-71.372877483,41.788283272],[-71.372835432,41.788270304],[-71.372790248,41.788281186],[-71.372759923,41.788302695],[-71.37274242,41.788346103],[-71.372737104,41.788392384],[-71.372722378,41.788437167],[-71.372708739,41.788473559],[-71.372715652,41.788516446],[-71.372711432,41.788548709],[-71.372677133,41.788587022],[-71.372646664,41.788619782],[-71.372611064,41.788681992],[-71.37259137,41.788725235],[-71.372742747,41.789078448],[-71.372799213,41.78910955],[-71.372819304,41.789148312],[-71.372823337,41.78919538],[-71.372826491,41.789238217],[-71.37282857,41.789278698],[-71.373098506,41.789908534],[-71.373234506,41.790282535]]],[[[-71.374567812,41.790935991],[-71.37453056,41.790984112],[-71.374499034,41.791025996],[-71.374466457,41.791074122],[-71.374430957,41.79113217],[-71.374405058,41.791171957],[-71.37439525,41.79120275],[-71.374388218,41.791235674],[-71.374368115,41.791265015],[-71.37434805,41.791290103],[-71.374337363,41.791317397],[-71.374346392,41.79134135],[-71.374362867,41.791370252],[-71.374372735,41.791402645],[-71.374360926,41.79144112],[-71.374340857,41.791468335],[-71.374329186,41.79149844],[-71.374333436,41.7915287],[-71.374341369,41.791565939],[-71.374348178,41.791615824],[-71.3743552,41.791650295],[-71.374364933,41.791689662],[-71.374373009,41.791716382],[-71.374375181,41.791762053],[-71.374363402,41.791800575],[-71.374347938,41.791832734],[-71.374333125,41.791850076],[-71.374405178,41.791936542],[-71.374440027,41.791886805],[-71.374495269,41.791828276],[-71.374516677,41.791772316],[-71.374554285,41.79169888],[-71.374602045,41.791637483],[-71.374688206,41.791581297],[-71.374733083,41.791525501],[-71.374737979,41.79144343],[-71.374740765,41.791378165],[-71.374766216,41.791301834],[-71.37477736,41.791243668],[-71.374780002,41.791189632],[-71.374791886,41.791144113],[-71.374786829,41.791104773],[-71.374798502,41.791073273],[-71.374830939,41.791034225],[-71.374841835,41.790993576],[-71.374826451,41.790953425],[-71.374811978,41.790916133],[-71.374796594,41.790876004],[-71.374766137,41.790839953],[-71.374730579,41.790834059],[-71.374701021,41.790869634],[-71.374673294,41.790906605],[-71.374644833,41.790928117],[-71.374602773,41.790918672],[-71.374567812,41.790935991]]],[[[-71.374982771,41.792046244],[-71.374948119,41.792108409],[-71.374935502,41.792137828],[-71.37492861,41.792162313],[-71.374918799,41.792192551],[-71.374913783,41.792205676],[-71.374899778,41.792223583],[-71.374883745,41.792257918],[-71.374874832,41.792285059],[-71.374865548,41.79231359],[-71.374859809,41.792342078],[-71.374858535,41.792368673],[-71.374859069,41.792392571],[-71.374861442,41.792413865],[-71.374862929,41.792434494],[-71.374863534,41.79245375],[-71.374863284,41.792472342],[-71.374862373,41.79248518],[-71.375106417,41.792778031],[-71.375115717,41.79276209],[-71.37512755,41.792742916],[-71.375140273,41.792721754],[-71.375151257,41.792698599],[-71.375162277,41.79267341],[-71.375171527,41.792646915],[-71.375176381,41.79261774],[-71.375176839,41.792586479],[-71.375175529,41.792552608],[-71.375173364,41.792518692],[-71.375171168,41.792485438],[-71.375168082,41.792453533],[-71.375163225,41.792420939],[-71.375156597,41.792387681],[-71.375149082,41.792355062],[-71.375141536,41.79232242],[-71.375133168,41.792288474],[-71.375123851,41.792255166],[-71.375113949,41.792224077],[-71.375101624,41.792198062],[-71.37507415,41.79215154],[-71.375058836,41.792106471],[-71.375057755,41.792049618],[-71.375038716,41.792003128],[-71.374982771,41.792046244]]],[[[-71.377299508,41.794708535],[-71.377309553,41.794710768],[-71.377287437,41.794687147],[-71.377257703,41.794654345],[-71.377227116,41.794620878],[-71.37719561,41.794588073],[-71.37716502,41.794555956],[-71.37713348,41.794525118],[-71.377103742,41.794494968],[-71.377075747,41.794464202],[-71.37705225,41.794430811],[-71.377030556,41.794396736],[-71.377008832,41.794362662],[-71.376987994,41.794329274],[-71.376967152,41.794297235],[-71.376945393,41.794265836],[-71.376919233,41.794234386],[-71.376887693,41.794203548],[-71.37685172,41.794174031],[-71.37681217,41.794145129],[-71.376768187,41.794117547],[-71.376723252,41.794091932],[-71.376678315,41.794067643],[-71.376633599,41.794044618],[-71.376594605,41.794023805],[-71.376554028,41.794004872],[-71.376513414,41.793989254],[-71.376476313,41.793974327],[-71.376445478,41.793958812],[-71.376419961,41.793942662],[-71.376397991,41.793925898],[-71.376378678,41.793909778],[-71.376358476,41.793894983],[-71.376338206,41.793883526],[-71.376320909,41.793877158],[-71.377299508,41.794708535]]],[[[-71.390450504,41.798793257],[-71.390490027,41.798824808],[-71.390528666,41.798855672],[-71.390568191,41.798886582],[-71.390605943,41.7989174],[-71.390643696,41.798948263],[-71.390680531,41.798979148],[-71.390716512,41.799009323],[-71.390752492,41.799040161],[-71.390787587,41.799070336],[-71.390824422,41.799101884],[-71.390861286,41.79913405],[-71.390896349,41.799164887],[-71.390930557,41.799195724],[-71.390962993,41.799225873],[-71.39099543,41.799255382],[-71.39102787,41.799283541],[-71.391059455,41.799311013],[-71.391090152,41.799339834],[-71.391120818,41.799368655],[-71.391153255,41.799398164],[-71.391187463,41.799428978],[-71.3912243,41.799459176],[-71.391262972,41.799488714],[-71.391302532,41.799517612],[-71.391343865,41.799545848],[-71.391383425,41.799574723],[-71.391421149,41.799604922],[-71.391458935,41.799634459],[-71.391496689,41.799664681],[-71.391534476,41.799693554],[-71.391569573,41.799723065],[-71.391604702,41.79975125],[-71.3916398,41.799780098],[-71.391675816,41.799808283],[-71.391711345,41.799835416],[-71.392112035,41.800206313],[-71.392191644,41.800209955],[-71.392285436,41.800212033],[-71.392334609,41.800213039],[-71.392385861,41.800214071],[-71.392465498,41.800219131],[-71.392548898,41.800222022],[-71.392602473,41.800259165],[-71.392653393,41.800311925],[-71.392700637,41.800370376],[-71.392743005,41.800420384],[-71.392806919,41.80045246],[-71.392897168,41.800471594],[-71.392983191,41.800459576],[-71.393063311,41.800432025],[-71.393142457,41.800401638],[-71.393201651,41.80036787],[-71.393264553,41.800328388],[-71.393331218,41.80028676],[-71.393401673,41.800244404],[-71.393471209,41.800203465],[-71.393535002,41.800161125],[-71.393586511,41.800117494],[-71.393653907,41.800058143],[-71.393719377,41.799999523],[-71.39379259,41.799952183],[-71.393871598,41.799912556],[-71.393960245,41.799884235],[-71.394057525,41.799865046],[-71.394126304,41.799838307],[-71.394160646,41.799788417],[-71.394193904,41.7997286],[-71.39423477,41.799670162],[-71.394277556,41.79961527],[-71.394334663,41.799567321],[-71.394418299,41.799519168],[-71.394484098,41.799482524],[-71.394552709,41.799445837],[-71.394624219,41.799411256],[-71.394693835,41.79937672],[-71.394756733,41.799338655],[-71.394812027,41.799296376],[-71.394860719,41.799254913],[-71.394934795,41.799202612],[-71.395013664,41.799153081],[-71.395063947,41.799091725],[-71.395111306,41.799024054],[-71.395163813,41.798985362],[-71.395224927,41.798953653],[-71.39529078,41.798921262],[-71.395355657,41.798886744],[-71.395415825,41.798854348],[-71.395503357,41.798814704],[-71.395572997,41.798783003],[-71.395634633,41.79878745],[-71.395694029,41.798835185],[-71.3957384,41.798894364],[-71.395765832,41.798958673],[-71.395785821,41.799032923],[-71.395785942,41.799109442],[-71.395766005,41.799172702],[-71.395715557,41.799223402],[-71.395646216,41.799277103],[-71.395568296,41.799325903],[-71.395493271,41.799379668],[-71.395442715,41.799421175],[-71.39538447,41.799454922],[-71.39532522,41.799486564],[-71.395269843,41.799523149],[-71.395200586,41.799581104],[-71.395144618,41.799643233],[-71.395095228,41.799700314],[-71.395083759,41.799761363],[-71.395101661,41.799822165],[-71.395152694,41.799881991],[-71.395226411,41.799938109],[-71.395281881,41.799975962],[-71.395343007,41.80001231],[-71.395400318,41.800045888],[-71.395477467,41.800077174],[-71.395555237,41.80008438],[-71.395644266,41.80008366],[-71.395736056,41.800076586],[-71.395816229,41.800052555],[-71.395880915,41.800005252],[-71.395957779,41.799948676],[-71.396034811,41.799901293],[-71.396093756,41.799850509],[-71.396151563,41.799784837],[-71.396185686,41.799718662],[-71.396210386,41.79965822],[-71.396271256,41.799607414],[-71.396356465,41.799606051],[-71.396433315,41.799614673],[-71.396516688,41.799614702],[-71.396534776,41.799617851],[-71.396544217,41.799619461],[-71.397502457,41.800407875],[-71.397465072,41.800433555],[-71.399691516,41.799150535],[-71.399093515,41.797788535],[-71.398582515,41.796624534],[-71.398384515,41.796181535],[-71.398268515,41.795866534],[-71.398193515,41.795643535],[-71.397926515,41.794819534],[-71.397774515,41.794365534],[-71.397583515,41.793812534],[-71.397552514,41.793732535],[-71.397392515,41.793244534],[-71.395935514,41.793503534],[-71.395309514,41.793625534],[-71.395294514,41.793579534],[-71.395142514,41.793087534],[-71.394974514,41.792542534],[-71.394867514,41.792244534],[-71.394783513,41.791985534],[-71.394585513,41.791397534],[-71.393967513,41.791504534],[-71.393936514,41.791382534],[-71.393784514,41.790951534],[-71.393982513,41.790917534],[-71.396469514,41.790448534],[-71.396278514,41.789883533],[-71.396095514,41.789338533],[-71.395914514,41.788783533],[-71.395912514,41.788765533],[-71.395902514,41.788748533],[-71.395714514,41.788178533],[-71.395508514,41.787571533],[-71.395325514,41.787007533],[-71.395042513,41.786156533],[-71.391777512,41.786251533],[-71.391380512,41.786404533],[-71.390380512,41.786379533],[-71.389517511,41.786357533],[-71.389485512,41.786356533],[-71.384752163,41.785499221],[-71.384722844,41.785506526],[-71.384606274,41.785524567],[-71.384480773,41.785513052],[-71.3843889,41.785508866],[-71.384326608,41.785537138],[-71.384207929,41.785572031],[-71.384110118,41.785590913],[-71.383996385,41.78561106],[-71.383863761,41.785635327],[-71.383748171,41.785651264],[-71.38362727,41.785647506],[-71.383488496,41.785642906],[-71.383370406,41.785639195],[-71.383222421,41.785624729],[-71.383102687,41.785601304],[-71.382977367,41.785574328],[-71.382973275,41.785572586],[-71.382885069,41.785534991],[-71.382794811,41.785483079],[-71.382683789,41.785440772],[-71.382569812,41.7854104],[-71.382468803,41.785389967],[-71.382364915,41.785373006],[-71.382240367,41.7853587],[-71.382128991,41.785343081],[-71.382040139,41.785324854],[-71.381956273,41.785286989],[-71.38189409,41.785238763],[-71.381805446,41.785207228],[-71.381687363,41.785199948],[-71.381556314,41.78518209],[-71.38143377,41.785158683],[-71.381317794,41.785135991],[-71.38122729,41.785102304],[-71.381131342,41.785055255],[-71.381024084,41.785010892],[-71.380949247,41.784998351],[-71.380869841,41.785044053],[-71.380832072,41.785127988],[-71.380823636,41.785195305],[-71.380860771,41.785288991],[-71.380911254,41.785368696],[-71.380940411,41.785430678],[-71.380930012,41.7855022],[-71.380870945,41.785569831],[-71.380789366,41.785633756],[-71.380709888,41.785685106],[-71.380605853,41.785747452],[-71.380489591,41.785812553],[-71.380374352,41.785869194],[-71.380265822,41.785916785],[-71.380152547,41.78596922],[-71.380042044,41.786025911],[-71.380002712,41.78605502],[-71.379943457,41.786098873],[-71.379867704,41.786150889],[-71.379827576,41.786204635],[-71.379764863,41.786260324],[-71.379685283,41.786316543],[-71.379626324,41.786374363],[-71.379569509,41.786413226],[-71.379517223,41.78646474],[-71.379555203,41.786498031],[-71.379638541,41.786507815],[-71.37975076,41.786531167],[-71.379841088,41.786577502],[-71.379926565,41.786636433],[-71.37999996,41.786686135],[-71.380063727,41.786753322],[-71.380103005,41.786828075],[-71.380103841,41.786903864],[-71.380064136,41.78699269],[-71.380020915,41.787066054],[-71.379964696,41.787129525],[-71.379892526,41.787192819],[-71.379819583,41.787244907],[-71.379751563,41.78727875],[-71.379601076,41.7873099],[-71.379489806,41.787285108],[-71.379415146,41.787258593],[-71.379319091,41.787218494],[-71.379246858,41.787152648],[-71.379214013,41.787085699],[-71.379175611,41.787017304],[-71.379126392,41.786981119],[-71.379074073,41.787033365],[-71.379063494,41.78711822],[-71.379088218,41.787230052],[-71.379138454,41.787326588],[-71.379201869,41.787418359],[-71.379276311,41.787529122],[-71.379354478,41.78764069],[-71.379425379,41.787733177],[-71.379489736,41.787828471],[-71.379553959,41.78793003],[-71.379627916,41.788006444],[-71.379706333,41.788099693],[-71.379794869,41.788207086],[-71.379845242,41.788296648],[-71.379851392,41.788390736],[-71.379851635,41.788505858],[-71.379853599,41.788566966],[-71.379872111,41.788586035],[-71.379887745,41.788608623],[-71.379891994,41.788640255],[-71.37988525,41.788652117],[-71.379860619,41.788669494],[-71.379848918,41.788700995],[-71.380363201,41.789352904],[-71.381904578,41.791278498],[-71.381997721,41.791394333],[-71.38265735,41.792232098],[-71.382960472,41.792612509],[-71.38308441,41.792768052],[-71.383087848,41.792776723],[-71.3831705,41.792832515],[-71.383199455,41.792857357],[-71.383228377,41.792883457],[-71.383258152,41.792911616],[-71.383289728,41.79294044],[-71.383321274,41.792969264],[-71.383354593,41.792997426],[-71.383388859,41.793025635],[-71.383423952,41.793053137],[-71.383461735,41.793080663],[-71.383500433,41.793108236],[-71.383540873,41.793136475],[-71.383581313,41.79316469],[-71.383622637,41.793193569],[-71.383663929,41.793223798],[-71.383704335,41.793254026],[-71.383742967,41.793284915],[-71.383780712,41.793315757],[-71.383818425,41.793347949],[-71.383857055,41.793380187],[-71.383897424,41.793413708],[-71.383939567,41.793446613],[-71.38398348,41.793480846],[-71.38402828,41.793514417],[-71.384072193,41.79354865],[-71.38411522,41.793582928],[-71.38415733,41.793617114],[-71.384199471,41.793651368],[-71.38423892,41.7936869],[-71.384278369,41.793722432],[-71.384316964,41.793757278],[-71.384354645,41.793790773],[-71.384391471,41.793823626],[-71.384426557,41.793855129],[-71.384460727,41.793886631],[-71.384495818,41.793916144],[-71.384530941,41.793944331],[-71.384564326,41.793970526],[-71.384599452,41.793997387],[-71.384633692,41.79402356],[-71.384668208,41.794049963],[-71.384706568,41.794079319],[-71.384743462,41.794108811],[-71.384779437,41.794139011],[-71.384816296,41.794171179],[-71.384854864,41.794204057],[-71.384894379,41.794237599],[-71.384933863,41.794271119],[-71.38497512,41.794304022],[-71.385017263,41.794337567],[-71.385059377,41.794370472],[-71.385099748,41.794403329],[-71.385138378,41.794436207],[-71.385175237,41.794468421],[-71.385213808,41.794499927],[-71.385251554,41.794531455],[-71.3852893,41.794562983],[-71.385327014,41.794595197],[-71.385364729,41.794627365],[-71.38540159,41.794658252],[-71.385437567,41.794687743],[-71.385473576,41.794716639],[-71.385511326,41.794746132],[-71.385549961,41.79477638],[-71.385588595,41.794807245],[-71.385627195,41.794840101],[-71.385665794,41.794872956],[-71.38570528,41.794905812],[-71.385746571,41.794938052],[-71.385788747,41.79497027],[-71.385831811,41.795001872],[-71.385873069,41.795035439],[-71.385912555,41.795068295],[-71.385954667,41.795102502],[-71.38599681,41.795136733],[-71.386039838,41.795170988],[-71.386082902,41.795203184],[-71.386124162,41.795235401],[-71.386163649,41.795267617],[-71.386202281,41.795299808],[-71.386239997,41.795332022],[-71.386278598,41.795364214],[-71.386316313,41.795396428],[-71.386354947,41.795427933],[-71.38639358,41.795459485],[-71.386432182,41.795491699],[-71.386469928,41.79552389],[-71.386507642,41.795556744],[-71.386544472,41.795588911],[-71.386582186,41.795621788],[-71.386621673,41.795654644],[-71.38666116,41.795687499],[-71.386701535,41.795719738],[-71.386742793,41.795753259],[-71.386784968,41.795786849],[-71.386826196,41.79582037],[-71.386866566,41.795855238],[-71.386907791,41.795890794],[-71.386949048,41.795925001],[-71.386991161,41.795959254],[-71.387033339,41.795991472],[-71.387075485,41.796024376],[-71.387115004,41.796056545],[-71.387155411,41.796088098],[-71.387194013,41.796120335],[-71.387230843,41.796152502],[-71.387267673,41.796184692],[-71.38730542,41.796216859],[-71.387343136,41.796249713],[-71.387381738,41.79628195],[-71.387422113,41.79631412],[-71.387461632,41.796346999],[-71.387502005,41.796380541],[-71.387542344,41.796416096],[-71.387583568,41.796452292],[-71.387624758,41.7964905],[-71.387668608,41.796528071],[-71.387712457,41.796566259],[-71.387758111,41.796603213],[-71.387803766,41.796639414],[-71.387849421,41.796676368],[-71.38789596,41.796713919],[-71.387941615,41.796750828],[-71.387985499,41.796786386],[-71.388028532,41.796819976],[-71.388049251,41.796837857],[-71.388068872,41.796854822],[-71.388108356,41.796890352],[-71.388149581,41.796926548],[-71.38819166,41.796963431],[-71.388232852,41.797000998],[-71.388274076,41.797037834],[-71.38831622,41.797072727],[-71.388358366,41.797106271],[-71.388402285,41.797139862],[-71.388445318,41.797173407],[-71.388490089,41.797208988],[-71.388534004,41.797244546],[-71.388580547,41.797280793],[-71.388627123,41.797315736],[-71.388672783,41.797349969],[-71.388718505,41.797383539],[-71.388762391,41.797418433],[-71.388807195,41.797453374],[-71.388852884,41.797488271],[-71.388898543,41.797523167],[-71.388943347,41.797558085],[-71.388985493,41.797592292],[-71.389026752,41.797626543],[-71.389067096,41.797660085],[-71.389108357,41.797693628],[-71.389148731,41.79772781],[-71.389188185,41.797763363],[-71.389228557,41.797798208],[-71.389269818,41.797831751],[-71.389311967,41.797864654],[-71.389353229,41.797897533],[-71.389395377,41.797931099],[-71.389437491,41.797965992],[-71.389479636,41.798000884],[-71.389524442,41.798035093],[-71.389570133,41.798069372],[-71.389613166,41.798103579],[-71.389654428,41.798136481],[-71.389693065,41.798168009],[-71.389731671,41.798199559],[-71.389771194,41.798231087],[-71.389810719,41.798261335],[-71.38985113,41.798292201],[-71.389888882,41.798323064],[-71.389926602,41.798354568],[-71.389964352,41.798386117],[-71.390002103,41.798417621],[-71.390038937,41.798449169],[-71.390075801,41.798480695],[-71.390111749,41.798512196],[-71.390147727,41.798543698],[-71.390184562,41.798574561],[-71.390220541,41.798606062],[-71.390257375,41.798637611],[-71.390295126,41.798669114],[-71.390334651,41.798699979],[-71.390373258,41.798730866],[-71.390411865,41.798762393],[-71.390450504,41.798793257]]]]}}"}, +{"type": "precinct", "typeId": 2835, "areaId": 25913, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":252,\"NAME\":\"2835\",\"SHAPE_Length\":0.017603542714447,\"SHAPE_Area\":-1.2197726926938e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.412290522,41.831476541],[-71.412346522,41.831482541],[-71.412391521,41.831487541],[-71.412418522,41.831490541],[-71.412470521,41.831495541],[-71.412804522,41.831528541],[-71.412758522,41.831375541],[-71.412720522,41.831150541],[-71.412704521,41.830964541],[-71.412712522,41.83080754],[-71.412750522,41.830628541],[-71.412796522,41.830487541],[-71.412880521,41.830315541],[-71.412979522,41.830155541],[-71.413101522,41.830014541],[-71.413338522,41.829804541],[-71.413628522,41.82956054],[-71.413902522,41.82934654],[-71.414047522,41.82925154],[-71.414185522,41.82919354],[-71.414337522,41.829163541],[-71.414459522,41.82915254],[-71.414658522,41.82915554],[-71.415054522,41.82917454],[-71.415291523,41.829182541],[-71.415298522,41.82899954],[-71.415337522,41.82878954],[-71.415337522,41.82835854],[-71.415314523,41.82811854],[-71.415347523,41.82786454],[-71.415358522,41.82778654],[-71.415376522,41.827647541],[-71.415382522,41.82760254],[-71.415392523,41.82752454],[-71.415398522,41.82748054],[-71.415405523,41.82746254],[-71.415424522,41.82731054],[-71.415443522,41.82716054],[-71.415462522,41.827062541],[-71.414380522,41.82695654],[-71.414354522,41.82694754],[-71.414354522,41.82692454],[-71.414365522,41.82688454],[-71.414391522,41.82688354],[-71.414393522,41.82685254],[-71.414414522,41.82683954],[-71.414414522,41.82680354],[-71.414395522,41.82673154],[-71.414351522,41.82666154],[-71.414295522,41.82661054],[-71.414210522,41.82655754],[-71.414112522,41.82652454],[-71.413996522,41.82651154],[-71.413882522,41.82651454],[-71.413891521,41.82655454],[-71.413856522,41.82657554],[-71.413739522,41.82660654],[-71.413717521,41.82656754],[-71.413493522,41.82664854],[-71.412840521,41.82687054],[-71.412654522,41.82692854],[-71.412557522,41.82695354],[-71.412390521,41.82698854],[-71.412206521,41.82701754],[-71.412335521,41.82720054],[-71.412560522,41.82751954],[-71.412590521,41.82757254],[-71.412758522,41.82779354],[-71.412552521,41.82795054],[-71.412071522,41.828305541],[-71.411659521,41.828602541],[-71.411591521,41.828560541],[-71.411446521,41.82848854],[-71.411293521,41.828442541],[-71.411148521,41.828423541],[-71.410993521,41.82843254],[-71.410833521,41.82845554],[-71.410953521,41.82877954],[-71.410998521,41.829008541],[-71.411194521,41.830013541],[-71.411274521,41.830402541],[-71.411351521,41.830778541],[-71.411436521,41.831229541],[-71.411447521,41.831410541],[-71.411507522,41.831402541],[-71.411562521,41.831402541],[-71.411621521,41.831402541],[-71.412290522,41.831476541]]]]}}"}, +{"type": "precinct", "typeId": 2836, "areaId": 25914, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":253,\"NAME\":\"2836\",\"SHAPE_Length\":0.019416375237989,\"SHAPE_Area\":-1.4416223225042e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.411888522,41.836369542],[-71.412125522,41.836182542],[-71.412285522,41.836079542],[-71.412376522,41.836148542],[-71.412498522,41.836220542],[-71.412590522,41.836266542],[-71.412636522,41.836285542],[-71.412781522,41.836331542],[-71.412964522,41.836377542],[-71.413109522,41.836403542],[-71.413307522,41.836430542],[-71.413498523,41.836434542],[-71.413673523,41.836457542],[-71.413750523,41.836476542],[-71.413834522,41.836506542],[-71.413948523,41.836567542],[-71.414047522,41.836644542],[-71.414131522,41.836720542],[-71.414299523,41.836857542],[-71.414375523,41.836922542],[-71.414513523,41.836827542],[-71.414825523,41.836586542],[-71.414928522,41.836487542],[-71.414867522,41.836398542],[-71.413841522,41.834819542],[-71.413766522,41.834704542],[-71.413537522,41.834329542],[-71.413393522,41.834105541],[-71.413196522,41.833766542],[-71.412998522,41.833393542],[-71.412890522,41.833153541],[-71.412733522,41.832827541],[-71.412650522,41.832618542],[-71.412458522,41.832084541],[-71.412331521,41.831608541],[-71.412290522,41.831476541],[-71.411621521,41.831402541],[-71.411562521,41.831402541],[-71.411507522,41.831402541],[-71.411447521,41.831410541],[-71.411331521,41.831425541],[-71.410629521,41.831536541],[-71.410663521,41.831611541],[-71.410759521,41.831822541],[-71.410812521,41.831936542],[-71.410950521,41.832306542],[-71.410835521,41.832356541],[-71.410789522,41.832386542],[-71.410759521,41.832451541],[-71.410744521,41.832543541],[-71.410713521,41.833077541],[-71.410690521,41.833214541],[-71.410660521,41.833321542],[-71.410545521,41.833577541],[-71.410172521,41.834362542],[-71.410149521,41.834431542],[-71.410095521,41.834851542],[-71.410065521,41.835335542],[-71.410049521,41.835629542],[-71.409950521,41.836426542],[-71.409904521,41.836781542],[-71.410049521,41.836781542],[-71.410149521,41.836762542],[-71.410194521,41.836743542],[-71.410248521,41.836708542],[-71.410309522,41.836644542],[-71.410323521,41.836595542],[-71.410484521,41.836045542],[-71.410484521,41.836026542],[-71.410515522,41.835923542],[-71.410530521,41.835904542],[-71.410538521,41.835884542],[-71.410591522,41.835843542],[-71.410667521,41.835808542],[-71.410713521,41.835797542],[-71.410820521,41.835801542],[-71.411636521,41.835932542],[-71.411819521,41.835961542],[-71.411858521,41.836079542],[-71.411858522,41.836110542],[-71.411865522,41.836136542],[-71.411865521,41.836167542],[-71.411873522,41.836197542],[-71.411873522,41.836251542],[-71.411880522,41.836289542],[-71.411880522,41.836327542],[-71.411888522,41.836369542]]]]}}"}, +{"type": "precinct", "typeId": 2837, "areaId": 25915, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":254,\"NAME\":\"2837\",\"SHAPE_Length\":0.037740753773757,\"SHAPE_Area\":-7.0057937428434e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.415291523,41.829182541],[-71.415489523,41.82925554],[-71.415588522,41.82931254],[-71.415718523,41.829258541],[-71.415794523,41.829243541],[-71.416412523,41.829262541],[-71.417427523,41.829335541],[-71.417397523,41.829823541],[-71.417351523,41.830239541],[-71.417274523,41.830971541],[-71.417267523,41.831097541],[-71.417244524,41.831196541],[-71.417183523,41.831341541],[-71.416878523,41.831902541],[-71.417196523,41.831957541],[-71.417224524,41.831962541],[-71.417450523,41.832020541],[-71.418015523,41.832215541],[-71.418152524,41.832264541],[-71.418282523,41.832310541],[-71.419136524,41.832650541],[-71.419197524,41.832672541],[-71.419991524,41.832981541],[-71.420555525,41.833210541],[-71.420685524,41.833268541],[-71.421150524,41.833443541],[-71.421661525,41.833653542],[-71.421974525,41.833775541],[-71.423264525,41.833577541],[-71.424156525,41.833447541],[-71.424812525,41.833340541],[-71.425491526,41.833229541],[-71.425720526,41.833195541],[-71.426262526,41.833104541],[-71.426712526,41.833035541],[-71.426895527,41.832993541],[-71.426987527,41.832947541],[-71.427010527,41.832928541],[-71.427109527,41.832837541],[-71.427277526,41.83266154],[-71.427521527,41.83239054],[-71.427689527,41.83221554],[-71.427727527,41.832177541],[-71.428169526,41.831696541],[-71.428360527,41.831498541],[-71.428314527,41.831440541],[-71.428207526,41.831307541],[-71.427917526,41.830857541],[-71.427765527,41.830628541],[-71.427467526,41.83030754],[-71.427330526,41.830162541],[-71.427162526,41.82999554],[-71.427048526,41.829888541],[-71.426926526,41.829770541],[-71.426788526,41.82962854],[-71.426704526,41.82948754],[-71.426605527,41.82926654],[-71.426720527,41.82924354],[-71.426697526,41.829186541],[-71.426685526,41.82914554],[-71.426674526,41.82911054],[-71.426608526,41.82894854],[-71.426559526,41.82882754],[-71.426453526,41.82885054],[-71.426285526,41.82837054],[-71.426247526,41.82828254],[-71.426155526,41.82802254],[-71.426048526,41.827687539],[-71.425957526,41.82705354],[-71.425949526,41.826870539],[-71.425931526,41.82668354],[-71.425926525,41.82663054],[-71.425934526,41.82646654],[-71.425930526,41.826424539],[-71.425925525,41.82635554],[-71.425921526,41.82630954],[-71.425918526,41.82627354],[-71.425915526,41.82623754],[-71.425896526,41.82600854],[-71.425880526,41.82589054],[-71.425651525,41.82590854],[-71.425385525,41.82592854],[-71.425247525,41.82592854],[-71.425194526,41.82592454],[-71.424713526,41.82592454],[-71.424110525,41.825955539],[-71.423523525,41.825993539],[-71.421516524,41.82617654],[-71.421021524,41.826226539],[-71.420654524,41.82623754],[-71.420364524,41.82623754],[-71.420174524,41.82622954],[-71.420090524,41.826226539],[-71.419815524,41.82619154],[-71.419258523,41.826107539],[-71.419014524,41.82606254],[-71.418839524,41.826031539],[-71.418829523,41.82604854],[-71.418732523,41.82631054],[-71.418630523,41.82658454],[-71.418557523,41.82678254],[-71.418488524,41.82696754],[-71.418474523,41.82700554],[-71.418442523,41.82709354],[-71.418274524,41.82759154],[-71.418030523,41.82752354],[-71.417986523,41.827510541],[-71.417961523,41.82750754],[-71.417824523,41.82750454],[-71.417786523,41.82750754],[-71.417709523,41.82752654],[-71.417679523,41.827549541],[-71.417670523,41.82759154],[-71.416663522,41.82730854],[-71.416564522,41.82728054],[-71.416451523,41.82724754],[-71.416373522,41.82722554],[-71.416251522,41.82719054],[-71.416163523,41.82716554],[-71.415843522,41.82710054],[-71.415462522,41.827062541],[-71.415443522,41.82716054],[-71.415424522,41.82731054],[-71.415405523,41.82746254],[-71.415398522,41.82748054],[-71.415392523,41.82752454],[-71.415382522,41.82760254],[-71.415376522,41.827647541],[-71.415358522,41.82778654],[-71.415347523,41.82786454],[-71.415314523,41.82811854],[-71.415337522,41.82835854],[-71.415337522,41.82878954],[-71.415298522,41.82899954],[-71.415291523,41.829182541]]]]}}"}, +{"type": "precinct", "typeId": 2838, "areaId": 25916, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":255,\"NAME\":\"2838\",\"SHAPE_Length\":0.014288003541255,\"SHAPE_Area\":-1.0706907597563e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.418335523,41.819016538],[-71.418243523,41.819058539],[-71.417816523,41.819237539],[-71.417213522,41.818596539],[-71.416687522,41.818833538],[-71.416661522,41.818818538],[-71.416466522,41.818653539],[-71.415894522,41.818352538],[-71.415436522,41.818848539],[-71.414932522,41.819386539],[-71.415188522,41.819612539],[-71.415459522,41.819851538],[-71.416130523,41.820431539],[-71.416428522,41.820649539],[-71.416508522,41.820713539],[-71.417198523,41.821270539],[-71.417514523,41.821507539],[-71.417877523,41.821736539],[-71.418205523,41.821942539],[-71.418449523,41.822087539],[-71.418564523,41.822201539],[-71.418663523,41.822327539],[-71.418999524,41.822224539],[-71.419342523,41.822144539],[-71.419594523,41.822091539],[-71.419769523,41.822049539],[-71.419851524,41.822028539],[-71.419930524,41.822007539],[-71.420021523,41.821988539],[-71.420052524,41.821976539],[-71.420158524,41.821949539],[-71.420158524,41.821888539],[-71.420166524,41.821850539],[-71.420143524,41.821522539],[-71.420143524,41.821446538],[-71.420105524,41.821305539],[-71.419997523,41.820858539],[-71.419371523,41.819933539],[-71.419351524,41.819903539],[-71.419258523,41.819802539],[-71.419067523,41.819615538],[-71.418335523,41.819016538]]]]}}"}, +{"type": "precinct", "typeId": 2839, "areaId": 25917, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":256,\"NAME\":\"2839\",\"SHAPE_Length\":0.042036942908869,\"SHAPE_Area\":-6.2719416575982e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.415291522,41.816979539],[-71.414992522,41.817288538],[-71.414818522,41.817479538],[-71.414719522,41.817578538],[-71.414146521,41.818173538],[-71.414108521,41.818207539],[-71.413712522,41.818642538],[-71.413361522,41.819024539],[-71.412933521,41.819447539],[-71.412537521,41.819867538],[-71.41180452,41.820607539],[-71.411285521,41.821152539],[-71.410980521,41.821499539],[-71.41034752,41.822178539],[-71.410126521,41.822422539],[-71.40969852,41.822819539],[-71.40944752,41.82309854],[-71.40915752,41.82341054],[-71.40911952,41.82345254],[-71.40905552,41.823519539],[-71.40892052,41.82366254],[-71.40875252,41.82381954],[-71.40871452,41.82383454],[-71.40859252,41.82385754],[-71.40845152,41.82386054],[-71.40838652,41.82386154],[-71.40839452,41.823986539],[-71.40843252,41.82421154],[-71.40843252,41.824238539],[-71.40844752,41.82429954],[-71.40850852,41.82447554],[-71.40864652,41.824742539],[-71.40881352,41.82505854],[-71.40886452,41.82514654],[-71.40892052,41.82524554],[-71.40894352,41.82529954],[-71.40881352,41.82531454],[-71.40873052,41.82532554],[-71.40863652,41.82535954],[-71.40844952,41.82543754],[-71.40848152,41.82548254],[-71.40859752,41.82561554],[-71.408780521,41.82577354],[-71.40902852,41.82594554],[-71.409226521,41.826106541],[-71.409267521,41.82613754],[-71.40937752,41.82622154],[-71.40935752,41.82629254],[-71.409654521,41.82662554],[-71.409811521,41.82680054],[-71.40995752,41.82699054],[-71.410043521,41.827118541],[-71.410177521,41.82704754],[-71.410317521,41.82697254],[-71.410408521,41.826924541],[-71.410544521,41.82683554],[-71.410629521,41.82677954],[-71.410820521,41.82684454],[-71.411179521,41.82690854],[-71.411575521,41.82693954],[-71.411934521,41.826924541],[-71.412132522,41.82691254],[-71.412384522,41.82687454],[-71.412560522,41.826828541],[-71.412689521,41.82679854],[-71.413101522,41.82666154],[-71.413635522,41.82647754],[-71.414383522,41.82621054],[-71.414879522,41.82604354],[-71.415344522,41.82590554],[-71.415771522,41.82583354],[-71.416008523,41.82579154],[-71.416328523,41.825756539],[-71.416672523,41.82574554],[-71.416931523,41.82575354],[-71.417244523,41.82576854],[-71.417633523,41.825817539],[-71.417771523,41.82584454],[-71.418093523,41.82589954],[-71.418839524,41.826031539],[-71.418877524,41.825913539],[-71.418982523,41.82563154],[-71.419060523,41.82543654],[-71.419113524,41.82528054],[-71.419189524,41.82508554],[-71.419235523,41.82495354],[-71.419342524,41.824646539],[-71.419472523,41.82430754],[-71.419533523,41.824128539],[-71.419594524,41.82397554],[-71.419708523,41.823655539],[-71.419818524,41.823318539],[-71.419868524,41.823166539],[-71.419876524,41.82314254],[-71.419899523,41.823071539],[-71.419922523,41.823017539],[-71.420067524,41.822552539],[-71.420120524,41.822346539],[-71.420151523,41.822148539],[-71.420151523,41.822091539],[-71.420158524,41.822026539],[-71.420158524,41.821949539],[-71.420052524,41.821976539],[-71.420021523,41.821988539],[-71.419930524,41.822007539],[-71.419851524,41.822028539],[-71.419769523,41.822049539],[-71.419594523,41.822091539],[-71.419342523,41.822144539],[-71.418999524,41.822224539],[-71.418663523,41.822327539],[-71.418564523,41.822201539],[-71.418449523,41.822087539],[-71.418205523,41.821942539],[-71.417877523,41.821736539],[-71.417514523,41.821507539],[-71.417198523,41.821270539],[-71.416508522,41.820713539],[-71.416428522,41.820649539],[-71.416130523,41.820431539],[-71.415459522,41.819851538],[-71.415188522,41.819612539],[-71.414932522,41.819386539],[-71.415436522,41.818848539],[-71.415894522,41.818352538],[-71.416466522,41.818653539],[-71.416661522,41.818818538],[-71.416687522,41.818833538],[-71.417213522,41.818596539],[-71.417816523,41.819237539],[-71.418243523,41.819058539],[-71.418335523,41.819016538],[-71.417246522,41.818142538],[-71.417099522,41.818024538],[-71.416612522,41.817699539],[-71.416573522,41.817673538],[-71.416541523,41.817652538],[-71.416500522,41.817624538],[-71.416466522,41.817601539],[-71.415291522,41.816979539]]]]}}"}, +{"type": "precinct", "typeId": 2840, "areaId": 25954, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":293,\"NAME\":\"2840\",\"SHAPE_Length\":0.040401649309734,\"SHAPE_Area\":-5.1512346004584e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.415291522,41.816979539],[-71.416466522,41.817601539],[-71.416500522,41.817624538],[-71.416541523,41.817652538],[-71.416573522,41.817673538],[-71.416612522,41.817699539],[-71.417099522,41.818024538],[-71.417246522,41.818142538],[-71.418335523,41.819016538],[-71.418544523,41.818931538],[-71.418724523,41.818863538],[-71.418831523,41.818818538],[-71.419228523,41.818646538],[-71.419281523,41.818623538],[-71.420174523,41.818230538],[-71.420029524,41.818097538],[-71.419876524,41.817994538],[-71.419769523,41.817952539],[-71.419685523,41.817940538],[-71.419380523,41.817921538],[-71.419029523,41.817902538],[-71.418816523,41.817875539],[-71.418709523,41.817849538],[-71.418594523,41.817799538],[-71.418495523,41.817734538],[-71.418411523,41.817662539],[-71.418343523,41.817566538],[-71.417946523,41.816925538],[-71.417496523,41.816265538],[-71.417145523,41.815792537],[-71.417076522,41.815705538],[-71.417023522,41.815663538],[-71.416702522,41.815503538],[-71.416000522,41.815121538],[-71.416779522,41.814309537],[-71.417030523,41.814045538],[-71.417374522,41.813694537],[-71.416687522,41.813328538],[-71.415985522,41.812947537],[-71.415337521,41.812619537],[-71.415161521,41.812558537],[-71.415169522,41.812455538],[-71.415192522,41.812291537],[-71.415268522,41.811856537],[-71.415497521,41.810814537],[-71.415665522,41.809964537],[-71.415802521,41.809307537],[-71.414787522,41.809246537],[-71.414223521,41.809216537],[-71.414040521,41.809216537],[-71.413902521,41.809224536],[-71.41344552,41.809288537],[-71.412758521,41.809372537],[-71.41186552,41.809472536],[-71.41120152,41.809544537],[-71.41095752,41.809578537],[-71.40965352,41.809761537],[-71.408493519,41.809937537],[-71.407211519,41.810139537],[-71.407188519,41.810685537],[-71.407181519,41.810826537],[-71.407074519,41.811692538],[-71.407013519,41.812172537],[-71.407005519,41.812195538],[-71.406998519,41.812294538],[-71.406982519,41.812499537],[-71.407056519,41.812594537],[-71.407295519,41.812901538],[-71.407639519,41.813237537],[-71.407669519,41.813259537],[-71.407784519,41.813366538],[-71.407906519,41.813462538],[-71.407990519,41.813519538],[-71.408165519,41.813622538],[-71.408241519,41.813660538],[-71.40831052,41.813702538],[-71.40862352,41.813866538],[-71.40883652,41.813954538],[-71.40913052,41.814055537],[-71.409271519,41.814103538],[-71.40939352,41.814133537],[-71.41008052,41.814282538],[-71.41024852,41.814312538],[-71.41027852,41.814320538],[-71.41078252,41.814366538],[-71.41111052,41.814415538],[-71.411667521,41.814511538],[-71.41186552,41.814553538],[-71.412018521,41.814595538],[-71.412766521,41.814827538],[-71.413155521,41.814980538],[-71.413239521,41.815014538],[-71.413460521,41.815117538],[-71.414169521,41.815483538],[-71.414398521,41.815621538],[-71.414658521,41.815804538],[-71.415009521,41.816059538],[-71.415306522,41.816285538],[-71.415672522,41.816578538],[-71.415451521,41.816807538],[-71.415428522,41.816826538],[-71.415291522,41.816979539]]]]}}"}, +{"type": "precinct", "typeId": 2841, "areaId": 25918, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":257,\"NAME\":\"2841\",\"SHAPE_Length\":0.021426792325469,\"SHAPE_Area\":-1.8921715865082e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.421974525,41.833775541],[-71.423027525,41.834179542],[-71.423737526,41.834469542],[-71.424042526,41.834587542],[-71.424850526,41.834912541],[-71.425339526,41.835106541],[-71.425644526,41.835221541],[-71.426117527,41.835419541],[-71.426521527,41.835579542],[-71.427185527,41.835850542],[-71.427353527,41.835915542],[-71.427879527,41.836121541],[-71.428024527,41.836151541],[-71.428200527,41.836174541],[-71.428246527,41.836171541],[-71.428421527,41.836167542],[-71.428963528,41.836125542],[-71.429535527,41.836087542],[-71.429688527,41.836087542],[-71.429825527,41.836090542],[-71.429962527,41.836106542],[-71.430130528,41.836140541],[-71.430328528,41.836190541],[-71.430450527,41.836239541],[-71.430458528,41.836106542],[-71.430458528,41.835926541],[-71.430443528,41.835682541],[-71.430389527,41.835350542],[-71.430351527,41.835228541],[-71.430313527,41.835022541],[-71.430267528,41.834385541],[-71.430237527,41.834202541],[-71.430161527,41.833969541],[-71.430054528,41.833680541],[-71.429916528,41.833332541],[-71.429840528,41.83322654],[-71.429649527,41.832978541],[-71.429382527,41.832669541],[-71.429131527,41.832344541],[-71.429016527,41.832230541],[-71.428864527,41.832062541],[-71.428713527,41.83190254],[-71.428658527,41.83184554],[-71.428604527,41.831780541],[-71.428474527,41.831623541],[-71.428360527,41.831498541],[-71.428169526,41.831696541],[-71.427727527,41.832177541],[-71.427689527,41.83221554],[-71.427521527,41.83239054],[-71.427277526,41.83266154],[-71.427109527,41.832837541],[-71.427010527,41.832928541],[-71.426987527,41.832947541],[-71.426895527,41.832993541],[-71.426712526,41.833035541],[-71.426262526,41.833104541],[-71.425720526,41.833195541],[-71.425491526,41.833229541],[-71.424812525,41.833340541],[-71.424156525,41.833447541],[-71.423264525,41.833577541],[-71.421974525,41.833775541]]]]}}"}, +{"type": "precinct", "typeId": 2842, "areaId": 25920, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":259,\"NAME\":\"2842\",\"SHAPE_Length\":0.016352973252833,\"SHAPE_Area\":-1.6405731636591e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.428505527,41.841027542],[-71.428825528,41.841061543],[-71.429420528,41.841107542],[-71.429871528,41.841145542],[-71.430367528,41.841183542],[-71.431320529,41.841263542],[-71.432205528,41.841336543],[-71.432281528,41.841042543],[-71.432411529,41.840725542],[-71.432434529,41.840683542],[-71.432861529,41.840050543],[-71.432953529,41.839886542],[-71.433014529,41.839741542],[-71.433044528,41.839684542],[-71.433128529,41.839474542],[-71.433296528,41.839001542],[-71.433434529,41.838421542],[-71.433632529,41.837647542],[-71.433464529,41.837571542],[-71.432838529,41.837284541],[-71.432083529,41.836949542],[-71.431252528,41.836583541],[-71.430862528,41.836415542],[-71.430595528,41.836293541],[-71.430450527,41.836239541],[-71.430420528,41.836338542],[-71.430069528,41.837197542],[-71.429924527,41.837536541],[-71.429878528,41.837658542],[-71.429626528,41.838292542],[-71.429611527,41.838337542],[-71.429359527,41.838906542],[-71.429169527,41.839394542],[-71.429092528,41.839573542],[-71.428848528,41.840176542],[-71.428833527,41.840226542],[-71.428505527,41.841027542]]]]}}"}, +{"type": "precinct", "typeId": 2843, "areaId": 25919, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":258,\"NAME\":\"2843\",\"SHAPE_Length\":0.022594318877913,\"SHAPE_Area\":-2.1844796529471e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.432205528,41.841336543],[-71.432465529,41.841359542],[-71.432755529,41.841401542],[-71.433594529,41.841504542],[-71.433853529,41.841545542],[-71.43422753,41.841591542],[-71.434456529,41.841629543],[-71.43502053,41.841664543],[-71.435173529,41.841671542],[-71.43548653,41.841694542],[-71.43586053,41.841721542],[-71.43678353,41.841782543],[-71.437210531,41.841813542],[-71.43741653,41.841843543],[-71.43769153,41.841900543],[-71.437737531,41.841908542],[-71.438377531,41.842072542],[-71.438576531,41.842129542],[-71.438858531,41.842224542],[-71.439148531,41.842331543],[-71.439438531,41.842453542],[-71.439629531,41.842556542],[-71.439796531,41.842659543],[-71.439873531,41.842701543],[-71.440498531,41.843102542],[-71.440521531,41.842881542],[-71.440521531,41.842457542],[-71.440544532,41.841881543],[-71.440552531,41.841324542],[-71.440567532,41.840817542],[-71.440552531,41.840641542],[-71.440094531,41.840451542],[-71.439949531,41.840386542],[-71.439804531,41.840329542],[-71.439095531,41.840035542],[-71.438240531,41.839684542],[-71.438007531,41.839586542],[-71.43738653,41.839325542],[-71.43711953,41.839215541],[-71.43676053,41.839051542],[-71.43654653,41.838959541],[-71.435753529,41.838612541],[-71.43534153,41.838417541],[-71.43450253,41.838040542],[-71.434349529,41.837967541],[-71.433800529,41.837727542],[-71.433632529,41.837647542],[-71.433434529,41.838421542],[-71.433296528,41.839001542],[-71.433128529,41.839474542],[-71.433044528,41.839684542],[-71.433014529,41.839741542],[-71.432953529,41.839886542],[-71.432861529,41.840050543],[-71.432434529,41.840683542],[-71.432411529,41.840725542],[-71.432281528,41.841042543],[-71.432205528,41.841336543]]]]}}"}, +{"type": "precinct", "typeId": 2844, "areaId": 25921, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":260,\"NAME\":\"2844\",\"SHAPE_Length\":0.050680138958608,\"SHAPE_Area\":-0.00010178219982988},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.428993528,41.846062543],[-71.429771528,41.846199543],[-71.430145528,41.846264543],[-71.431061528,41.846451543],[-71.431831529,41.846608543],[-71.432648529,41.846768543],[-71.433212529,41.846878543],[-71.433334529,41.846905543],[-71.43352553,41.846947544],[-71.43383853,41.847035543],[-71.434059529,41.847092543],[-71.43421953,41.847168544],[-71.43431953,41.847210543],[-71.43473153,41.847439544],[-71.43511253,41.847603543],[-71.43555553,41.847794543],[-71.43576053,41.847886544],[-71.43637853,41.848149543],[-71.43706553,41.848431544],[-71.437172531,41.848481543],[-71.437714531,41.848702544],[-71.438004531,41.848820544],[-71.438370531,41.848973544],[-71.438942531,41.849209544],[-71.439522531,41.849450544],[-71.439865532,41.849583544],[-71.440208532,41.849717544],[-71.440559532,41.849854544],[-71.440598532,41.849865544],[-71.441254532,41.850102544],[-71.441422532,41.850163544],[-71.441986532,41.850380544],[-71.442207532,41.850460544],[-71.443024533,41.850743544],[-71.443214533,41.850811544],[-71.443176533,41.850266544],[-71.443169533,41.850190544],[-71.443130533,41.849633544],[-71.443123533,41.849476543],[-71.443108532,41.849316543],[-71.443085532,41.849080543],[-71.443054533,41.848671543],[-71.443047532,41.848519543],[-71.443016533,41.848099544],[-71.443001533,41.847935543],[-71.442963533,41.847508543],[-71.442947533,41.847313543],[-71.442909532,41.846848543],[-71.443672532,41.846749543],[-71.443565533,41.845414542],[-71.443535532,41.845097543],[-71.444405533,41.845063542],[-71.444298532,41.843460543],[-71.444214533,41.842198542],[-71.443314533,41.841809542],[-71.443192532,41.841755542],[-71.442467532,41.841458542],[-71.442093532,41.841298542],[-71.441643531,41.841099542],[-71.441147532,41.840889542],[-71.440628531,41.840676542],[-71.440552531,41.840641542],[-71.440567532,41.840817542],[-71.440552531,41.841324542],[-71.440544532,41.841881543],[-71.440521531,41.842457542],[-71.440521531,41.842881542],[-71.440498531,41.843102542],[-71.439873531,41.842701543],[-71.439796531,41.842659543],[-71.439629531,41.842556542],[-71.439438531,41.842453542],[-71.439148531,41.842331543],[-71.438858531,41.842224542],[-71.438576531,41.842129542],[-71.438377531,41.842072542],[-71.437737531,41.841908542],[-71.43769153,41.841900543],[-71.43741653,41.841843543],[-71.437210531,41.841813542],[-71.43678353,41.841782543],[-71.43586053,41.841721542],[-71.43548653,41.841694542],[-71.435173529,41.841671542],[-71.43502053,41.841664543],[-71.434456529,41.841629543],[-71.43422753,41.841591542],[-71.433853529,41.841545542],[-71.433594529,41.841504542],[-71.432755529,41.841401542],[-71.432465529,41.841359542],[-71.432205528,41.841336543],[-71.431320529,41.841263542],[-71.430367528,41.841183542],[-71.429871528,41.841145542],[-71.429420528,41.841107542],[-71.428825528,41.841061543],[-71.428505527,41.841027542],[-71.427605527,41.840931542],[-71.427444527,41.840916542],[-71.427261527,41.840927543],[-71.427315527,41.841027542],[-71.427361527,41.841137543],[-71.427406527,41.841305542],[-71.427467527,41.841622543],[-71.427498527,41.841763543],[-71.427513527,41.841893543],[-71.427582527,41.842297542],[-71.427704527,41.842961543],[-71.427742527,41.843182543],[-71.427757527,41.843266543],[-71.427780527,41.843483542],[-71.427849528,41.843647543],[-71.427864527,41.843693543],[-71.427887528,41.843743543],[-71.428169527,41.844342543],[-71.428658527,41.845398543],[-71.428726528,41.845551543],[-71.428902528,41.845936544],[-71.428993528,41.846062543]]]]}}"}, +{"type": "precinct", "typeId": 2845, "areaId": 25922, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":261,\"NAME\":\"2845\",\"SHAPE_Length\":0.032689621756252,\"SHAPE_Area\":-3.3825107537531e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.446953533,41.843384543],[-71.446960534,41.843655543],[-71.446960534,41.844220543],[-71.446991534,41.845265543],[-71.447365534,41.846321543],[-71.447601534,41.847123543],[-71.447609534,41.847140543],[-71.447876534,41.848137543],[-71.448044534,41.848782544],[-71.448264534,41.849607543],[-71.448265534,41.849625544],[-71.449226535,41.849507544],[-71.449303535,41.849495543],[-71.449722535,41.849442543],[-71.450188535,41.849392543],[-71.450035535,41.849793544],[-71.450020535,41.849823543],[-71.449860535,41.850197543],[-71.449834535,41.850250543],[-71.449760535,41.850407543],[-71.449654535,41.850609544],[-71.449356535,41.851109543],[-71.449303535,41.851193544],[-71.449059535,41.851521544],[-71.448929535,41.851685544],[-71.448799534,41.851838544],[-71.448776535,41.851872544],[-71.448418535,41.852272544],[-71.448334534,41.852379544],[-71.448250535,41.852471544],[-71.447792534,41.853032544],[-71.447892534,41.853028544],[-71.448224535,41.852802544],[-71.448934535,41.852274544],[-71.449305535,41.852004544],[-71.450109535,41.851621544],[-71.450233535,41.851574544],[-71.450455536,41.851505544],[-71.450562535,41.851456544],[-71.450935535,41.851179544],[-71.451702536,41.850651544],[-71.452393536,41.850186544],[-71.453568536,41.849266543],[-71.454410537,41.848621543],[-71.454529537,41.848553543],[-71.454606537,41.848504543],[-71.455377536,41.848208543],[-71.456025537,41.847958543],[-71.455956536,41.847931543],[-71.455833537,41.847882543],[-71.455391536,41.847710543],[-71.455070537,41.847584543],[-71.454857537,41.847485543],[-71.454079536,41.847130542],[-71.453278536,41.846772543],[-71.452583535,41.846451542],[-71.452110536,41.846241543],[-71.452057535,41.846218542],[-71.451668535,41.846009543],[-71.450943535,41.845551542],[-71.450813535,41.845467543],[-71.450233535,41.845105542],[-71.449684534,41.844761543],[-71.449623534,41.844723543],[-71.449234534,41.844483542],[-71.449135534,41.844418543],[-71.448975534,41.844319543],[-71.448372534,41.844029542],[-71.448158534,41.843926543],[-71.447853534,41.843777542],[-71.447586534,41.843663542],[-71.447334534,41.843556543],[-71.446953533,41.843384543]]]]}}"}, +{"type": "precinct", "typeId": 2846, "areaId": 25923, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":262,\"NAME\":\"2846\",\"SHAPE_Length\":0.032222275886022,\"SHAPE_Area\":-4.3391443032009e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.443214533,41.850811544],[-71.443497533,41.850911544],[-71.443596533,41.850953543],[-71.443687533,41.850991543],[-71.443764533,41.851029544],[-71.443832533,41.851071544],[-71.443909533,41.851109544],[-71.443985533,41.851155544],[-71.444138533,41.851246544],[-71.444374533,41.851399544],[-71.444572533,41.851525544],[-71.444649533,41.851567544],[-71.444824533,41.851685544],[-71.444931534,41.851769544],[-71.444992534,41.851815544],[-71.445068534,41.851883544],[-71.445137533,41.851956544],[-71.445419534,41.852288544],[-71.445496534,41.852379544],[-71.445808534,41.852806544],[-71.446007534,41.853077545],[-71.446075534,41.853176544],[-71.446159534,41.853302544],[-71.446480534,41.853760544],[-71.446561534,41.853882544],[-71.446653534,41.853820544],[-71.446729534,41.853777545],[-71.446803534,41.853752544],[-71.447667535,41.853176544],[-71.447892534,41.853028544],[-71.447792534,41.853032544],[-71.448250535,41.852471544],[-71.448334534,41.852379544],[-71.448418535,41.852272544],[-71.448776535,41.851872544],[-71.448799534,41.851838544],[-71.448929535,41.851685544],[-71.449059535,41.851521544],[-71.449303535,41.851193544],[-71.449356535,41.851109543],[-71.449654535,41.850609544],[-71.449760535,41.850407543],[-71.449834535,41.850250543],[-71.449860535,41.850197543],[-71.450020535,41.849823543],[-71.450035535,41.849793544],[-71.450188535,41.849392543],[-71.449722535,41.849442543],[-71.449303535,41.849495543],[-71.449226535,41.849507544],[-71.448265534,41.849625544],[-71.448264534,41.849607543],[-71.448044534,41.848782544],[-71.447876534,41.848137543],[-71.447609534,41.847140543],[-71.447601534,41.847123543],[-71.447365534,41.846321543],[-71.446991534,41.845265543],[-71.446960534,41.844220543],[-71.446960534,41.843655543],[-71.446953533,41.843384543],[-71.446083533,41.842991543],[-71.445816533,41.842873542],[-71.445152533,41.842595542],[-71.444214533,41.842198542],[-71.444298532,41.843460543],[-71.444405533,41.845063542],[-71.443535532,41.845097543],[-71.443565533,41.845414542],[-71.443672532,41.846749543],[-71.442909532,41.846848543],[-71.442947533,41.847313543],[-71.442963533,41.847508543],[-71.443001533,41.847935543],[-71.443016533,41.848099544],[-71.443047532,41.848519543],[-71.443054533,41.848671543],[-71.443085532,41.849080543],[-71.443108532,41.849316543],[-71.443123533,41.849476543],[-71.443130533,41.849633544],[-71.443169533,41.850190544],[-71.443176533,41.850266544],[-71.443214533,41.850811544]]]]}}"}, +{"type": "precinct", "typeId": 2847, "areaId": 25924, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":263,\"NAME\":\"2847\",\"SHAPE_Length\":0.03577483456146,\"SHAPE_Area\":-2.2312836125406e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.448631533,41.825074538],[-71.449249533,41.825100539],[-71.449341534,41.825108539],[-71.450096534,41.825142539],[-71.450829534,41.825177539],[-71.451172534,41.825196538],[-71.451530534,41.825211538],[-71.452202534,41.825245539],[-71.452698535,41.825276539],[-71.453018534,41.825291538],[-71.453484535,41.825310538],[-71.453972535,41.825344539],[-71.454659535,41.825383539],[-71.454834535,41.825394539],[-71.455391535,41.825489538],[-71.455254535,41.825966539],[-71.455185535,41.826214539],[-71.455170536,41.826329539],[-71.455154536,41.826363538],[-71.455147535,41.826405539],[-71.455177535,41.826630539],[-71.455231536,41.827153539],[-71.455292536,41.827664539],[-71.455299535,41.827786539],[-71.455338535,41.828186539],[-71.455353535,41.828297539],[-71.455391535,41.828705539],[-71.456131536,41.828671539],[-71.456276536,41.82865954],[-71.456894536,41.82862154],[-71.456902536,41.828297539],[-71.456917536,41.828087539],[-71.456940536,41.827576539],[-71.456963536,41.827046539],[-71.456985536,41.826516539],[-71.456995536,41.826188538],[-71.457008536,41.825768539],[-71.456444535,41.825669539],[-71.456932535,41.825051539],[-71.457909536,41.823777538],[-71.458168536,41.823456538],[-71.458214536,41.823419538],[-71.458237537,41.823407538],[-71.458305536,41.823399538],[-71.458969536,41.823685538],[-71.459511536,41.823914538],[-71.459763536,41.824025538],[-71.460047537,41.823652538],[-71.460175537,41.823476538],[-71.460108537,41.823447538],[-71.459956536,41.823348538],[-71.459886537,41.823296538],[-71.459828537,41.823231538],[-71.459613537,41.823031538],[-71.459506536,41.822941538],[-71.459372536,41.822807538],[-71.459279536,41.822694537],[-71.459223537,41.822608538],[-71.457782536,41.822358538],[-71.456587535,41.822150538],[-71.455566535,41.823544538],[-71.455490535,41.823559538],[-71.455177535,41.823628539],[-71.455078536,41.823670538],[-71.455002535,41.823754538],[-71.454735535,41.824086538],[-71.454643535,41.824204538],[-71.454346535,41.824582539],[-71.453934535,41.825100538],[-71.453133534,41.824734539],[-71.452789535,41.824578539],[-71.452339534,41.824257538],[-71.451885534,41.823932538],[-71.451706534,41.823803539],[-71.451500534,41.823651538],[-71.451210534,41.823445538],[-71.451012534,41.823422538],[-71.450249533,41.823334539],[-71.449554534,41.823258539],[-71.448822533,41.823162538],[-71.448784533,41.823422538],[-71.448692533,41.824376538],[-71.448631533,41.825074538]]]]}}"}, +{"type": "precinct", "typeId": 2848, "areaId": 25925, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":264,\"NAME\":\"2848\",\"SHAPE_Length\":0.020362203767446,\"SHAPE_Area\":-1.7018383652446e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.448822533,41.823162538],[-71.449554534,41.823258539],[-71.450249533,41.823334539],[-71.451012534,41.823422538],[-71.451210534,41.823445538],[-71.451500534,41.823651538],[-71.451706534,41.823803539],[-71.451885534,41.823932538],[-71.452339534,41.824257538],[-71.452789535,41.824578539],[-71.453133534,41.824734539],[-71.453934535,41.825100538],[-71.454346535,41.824582539],[-71.454643535,41.824204538],[-71.454735535,41.824086538],[-71.455002535,41.823754538],[-71.455078536,41.823670538],[-71.455177535,41.823628539],[-71.455490535,41.823559538],[-71.455566535,41.823544538],[-71.456587535,41.822150538],[-71.454651535,41.821812538],[-71.454339534,41.821745538],[-71.454185535,41.821712538],[-71.454057535,41.821769538],[-71.453884535,41.821823538],[-71.453700534,41.821847538],[-71.453532535,41.821814538],[-71.453143535,41.821673538],[-71.452509534,41.821504538],[-71.452286534,41.821377538],[-71.452155534,41.821270538],[-71.451971534,41.821174537],[-71.451681534,41.820973538],[-71.451546534,41.820861537],[-71.451384534,41.820738538],[-71.451057534,41.820522538],[-71.451012534,41.820498538],[-71.450886533,41.820547538],[-71.450761534,41.820597538],[-71.450134533,41.820889538],[-71.450119534,41.820950538],[-71.449776533,41.821217538],[-71.449511533,41.821400538],[-71.449936533,41.821820538],[-71.449463533,41.822174538],[-71.449684533,41.822335538],[-71.448669533,41.823140539],[-71.448822533,41.823162538]]]]}}"}, +{"type": "precinct", "typeId": 2849, "areaId": 25926, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":265,\"NAME\":\"2849\",\"SHAPE_Length\":0.077137773211374,\"SHAPE_Area\":-0.00021489456236418},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.449135534,41.844418543],[-71.449234534,41.844483542],[-71.449623534,41.844723543],[-71.449684534,41.844761543],[-71.450233535,41.845105542],[-71.450813535,41.845467543],[-71.450943535,41.845551542],[-71.451668535,41.846009543],[-71.452057535,41.846218542],[-71.452110536,41.846241543],[-71.452583535,41.846451542],[-71.453278536,41.846772543],[-71.454079536,41.847130542],[-71.454857537,41.847485543],[-71.455070537,41.847584543],[-71.455391536,41.847710543],[-71.455833537,41.847882543],[-71.455956536,41.847931543],[-71.456025537,41.847958543],[-71.456071537,41.847930543],[-71.457565537,41.846794543],[-71.458066537,41.846364543],[-71.458468538,41.846079542],[-71.458522538,41.846048543],[-71.459358538,41.845432543],[-71.459566537,41.845247542],[-71.460968538,41.844119542],[-71.462150539,41.843256542],[-71.463409539,41.842354541],[-71.464503539,41.841557541],[-71.465375539,41.840940541],[-71.46543354,41.840899541],[-71.46566254,41.840786541],[-71.46688654,41.840183541],[-71.468742541,41.839268541],[-71.46914454,41.839013541],[-71.470535541,41.83845654],[-71.470979541,41.83822054],[-71.471016541,41.83820054],[-71.471252541,41.838036541],[-71.472667542,41.83711954],[-71.472645542,41.837086541],[-71.472589542,41.83704854],[-71.472525542,41.83701654],[-71.472459541,41.83698954],[-71.472381541,41.83694454],[-71.472357541,41.83691654],[-71.472329542,41.83688254],[-71.472313542,41.83682554],[-71.472303541,41.83676354],[-71.472262541,41.83670454],[-71.472046541,41.83652354],[-71.471797541,41.836284541],[-71.471753541,41.83623054],[-71.471733541,41.83619754],[-71.471721541,41.83617754],[-71.471702541,41.83611654],[-71.471695541,41.836052541],[-71.471703541,41.83598254],[-71.471744541,41.83585054],[-71.471749542,41.83579454],[-71.471674541,41.83566354],[-71.471667541,41.83560754],[-71.471673542,41.83556554],[-71.471676541,41.83554254],[-71.471791541,41.83523954],[-71.471852541,41.83511554],[-71.471889541,41.83505154],[-71.471932541,41.83499754],[-71.471963542,41.83494554],[-71.471987541,41.83491554],[-71.472008541,41.83492454],[-71.472176542,41.834941539],[-71.472194542,41.83489954],[-71.472232541,41.83484354],[-71.472334542,41.83471454],[-71.472381541,41.83464354],[-71.472416541,41.834573539],[-71.472476541,41.83437254],[-71.472477541,41.83431654],[-71.472462541,41.834242539],[-71.472432542,41.83418954],[-71.472383541,41.83413054],[-71.472235542,41.834008539],[-71.472064541,41.83388254],[-71.471994541,41.833815539],[-71.471827542,41.83362954],[-71.471745541,41.83354654],[-71.471673542,41.83349554],[-71.471590541,41.833446539],[-71.471063541,41.83321554],[-71.47097254,41.83316554],[-71.470902541,41.83311854],[-71.470834541,41.83308154],[-71.470608541,41.83299054],[-71.47058654,41.832976539],[-71.470444541,41.832920539],[-71.470360541,41.83297054],[-71.470238541,41.833035539],[-71.470009541,41.83314254],[-71.46978854,41.83323354],[-71.469353541,41.83343954],[-71.46900954,41.833596539],[-71.46863654,41.83370254],[-71.46852954,41.83372954],[-71.46822454,41.83380254],[-71.46782754,41.833889539],[-71.46776654,41.83389354],[-71.467484539,41.83391654],[-71.46690454,41.83393154],[-71.466255539,41.83393554],[-71.466026539,41.83393554],[-71.465546539,41.83392454],[-71.464996539,41.83389354],[-71.464851539,41.83386654],[-71.464767539,41.83384054],[-71.464691539,41.83380254],[-71.464485539,41.83371454],[-71.464233539,41.833596539],[-71.463860538,41.83341354],[-71.463005538,41.83294354],[-71.462517538,41.83266954],[-71.462410538,41.832623539],[-71.462349538,41.83260854],[-71.462296538,41.83259254],[-71.462242538,41.83258154],[-71.462181538,41.83257754],[-71.462067538,41.83258954],[-71.462006538,41.832604539],[-71.461899538,41.83265354],[-71.461815538,41.832718539],[-71.461693538,41.83260854],[-71.461647538,41.83255454],[-71.461624538,41.83250854],[-71.461609538,41.83238354],[-71.461639538,41.831826539],[-71.461647538,41.83178054],[-71.461647538,41.83173454],[-71.461655538,41.83168454],[-71.461655538,41.831646539],[-71.461632537,41.83154354],[-71.461617538,41.831517539],[-71.461582538,41.83148054],[-71.461563538,41.83145954],[-71.461517537,41.831437539],[-71.461342537,41.83130754],[-71.461319537,41.831280539],[-71.461288538,41.83125354],[-71.461266537,41.83122754],[-71.461243537,41.83117754],[-71.461227537,41.831124539],[-71.461212538,41.831025539],[-71.461212538,41.83097554],[-71.461205537,41.830925539],[-71.461212538,41.830895539],[-71.461220538,41.83085754],[-71.461281537,41.83081954],[-71.461685538,41.83062454],[-71.461784538,41.830574539],[-71.462112538,41.830422539],[-71.462639538,41.83018154],[-71.462692538,41.83014354],[-71.462715538,41.830132539],[-71.462723538,41.830098539],[-71.462616538,41.829880539],[-71.462494538,41.829670539],[-71.462486538,41.829632539],[-71.462502538,41.829602539],[-71.462776538,41.829369539],[-71.462593538,41.829213539],[-71.462540538,41.829159539],[-71.462479538,41.829106539],[-71.462418538,41.829045539],[-71.462280538,41.828919539],[-71.462135538,41.828774539],[-71.461960538,41.828530539],[-71.461845538,41.828396539],[-71.461708538,41.828209539],[-71.461647538,41.828114539],[-71.461586538,41.828041539],[-71.461540537,41.827976539],[-71.461395538,41.827782539],[-71.461311538,41.827679539],[-71.461235538,41.827572538],[-71.461113537,41.827427539],[-71.460854537,41.827652539],[-71.460114537,41.828297539],[-71.459702537,41.828648539],[-71.459595537,41.828755539],[-71.459526537,41.828812539],[-71.459404537,41.828923539],[-71.459167537,41.829113539],[-71.459084537,41.829155539],[-71.459061537,41.829476539],[-71.459053537,41.829687539],[-71.459045537,41.82992654],[-71.459015537,41.830437539],[-71.459005537,41.830670539],[-71.458961537,41.83168454],[-71.458954537,41.83211254],[-71.458939537,41.83237954],[-71.458923537,41.83246354],[-71.458885537,41.832543539],[-71.458580537,41.83289854],[-71.458397536,41.83278754],[-71.457932536,41.83247854],[-71.457718536,41.83234454],[-71.457581536,41.83228054],[-71.457504536,41.83224954],[-71.457458536,41.83223854],[-71.457321536,41.83219654],[-71.457100536,41.832154539],[-71.456970536,41.832135539],[-71.456764536,41.83211954],[-71.456497536,41.83211654],[-71.456200536,41.83272654],[-71.455902536,41.83328754],[-71.455399536,41.83448054],[-71.455399536,41.83456154],[-71.455368536,41.83467154],[-71.455154536,41.835011541],[-71.455101536,41.835072541],[-71.455032536,41.83512254],[-71.454796536,41.83524054],[-71.453629536,41.835827541],[-71.453568535,41.83584354],[-71.453201535,41.83587754],[-71.452911535,41.835915541],[-71.453079535,41.836480541],[-71.453087536,41.836571541],[-71.452347535,41.836575541],[-71.452019535,41.836583541],[-71.451645535,41.836602541],[-71.451599535,41.836609541],[-71.451447535,41.836628541],[-71.450912534,41.836739541],[-71.451157535,41.837426541],[-71.451225535,41.837635541],[-71.451607534,41.838669541],[-71.451658535,41.838798542],[-71.451706535,41.838921541],[-71.452026535,41.839821541],[-71.452301535,41.840611542],[-71.452469535,41.841057542],[-71.452118535,41.841122542],[-71.451973535,41.841153542],[-71.451767535,41.841370542],[-71.451447535,41.841748541],[-71.451019535,41.842240542],[-71.450981535,41.842289542],[-71.450851535,41.842427542],[-71.450272535,41.843083542],[-71.449417535,41.844071542],[-71.449135534,41.844418543]]]]}}"}, +{"type": "precinct", "typeId": 2850, "areaId": 25927, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":266,\"NAME\":\"2850\",\"SHAPE_Length\":0.057914952500347,\"SHAPE_Area\":-5.8265343103426e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.456497536,41.83211654],[-71.456764536,41.83211954],[-71.456970536,41.832135539],[-71.457100536,41.832154539],[-71.457321536,41.83219654],[-71.457458536,41.83223854],[-71.457504536,41.83224954],[-71.457581536,41.83228054],[-71.457718536,41.83234454],[-71.457932536,41.83247854],[-71.458397536,41.83278754],[-71.458580537,41.83289854],[-71.458885537,41.832543539],[-71.458923537,41.83246354],[-71.458939537,41.83237954],[-71.458954537,41.83211254],[-71.458961537,41.83168454],[-71.459005537,41.830670539],[-71.459015537,41.830437539],[-71.459045537,41.82992654],[-71.459053537,41.829687539],[-71.459061537,41.829476539],[-71.459084537,41.829155539],[-71.459167537,41.829113539],[-71.459404537,41.828923539],[-71.459526537,41.828812539],[-71.459595537,41.828755539],[-71.459702537,41.828648539],[-71.460114537,41.828297539],[-71.460854537,41.827652539],[-71.461113537,41.827427539],[-71.461235538,41.827572538],[-71.461311538,41.827679539],[-71.461395538,41.827782539],[-71.461540537,41.827976539],[-71.461586538,41.828041539],[-71.461647538,41.828114539],[-71.461708538,41.828209539],[-71.461845538,41.828396539],[-71.461960538,41.828530539],[-71.462135538,41.828774539],[-71.462280538,41.828919539],[-71.462418538,41.829045539],[-71.462479538,41.829106539],[-71.462540538,41.829159539],[-71.462593538,41.829213539],[-71.462776538,41.829369539],[-71.462502538,41.829602539],[-71.462486538,41.829632539],[-71.462494538,41.829670539],[-71.462616538,41.829880539],[-71.462723538,41.830098539],[-71.462715538,41.830132539],[-71.462692538,41.83014354],[-71.462639538,41.83018154],[-71.462112538,41.830422539],[-71.461784538,41.830574539],[-71.461685538,41.83062454],[-71.461281537,41.83081954],[-71.461220538,41.83085754],[-71.461212538,41.830895539],[-71.461205537,41.830925539],[-71.461212538,41.83097554],[-71.461212538,41.831025539],[-71.461227537,41.831124539],[-71.461243537,41.83117754],[-71.461266537,41.83122754],[-71.461288538,41.83125354],[-71.461319537,41.831280539],[-71.461342537,41.83130754],[-71.461517537,41.831437539],[-71.461563538,41.83145954],[-71.461582538,41.83148054],[-71.461617538,41.831517539],[-71.461632537,41.83154354],[-71.461655538,41.831646539],[-71.461655538,41.83168454],[-71.461647538,41.83173454],[-71.461647538,41.83178054],[-71.461639538,41.831826539],[-71.461609538,41.83238354],[-71.461624538,41.83250854],[-71.461647538,41.83255454],[-71.461693538,41.83260854],[-71.461815538,41.832718539],[-71.461899538,41.83265354],[-71.462006538,41.832604539],[-71.462067538,41.83258954],[-71.462181538,41.83257754],[-71.462242538,41.83258154],[-71.462296538,41.83259254],[-71.462349538,41.83260854],[-71.462410538,41.832623539],[-71.462517538,41.83266954],[-71.463005538,41.83294354],[-71.463860538,41.83341354],[-71.464233539,41.833596539],[-71.464485539,41.83371454],[-71.464691539,41.83380254],[-71.464767539,41.83384054],[-71.464851539,41.83386654],[-71.464996539,41.83389354],[-71.465546539,41.83392454],[-71.466026539,41.83393554],[-71.466255539,41.83393554],[-71.46690454,41.83393154],[-71.467484539,41.83391654],[-71.46776654,41.83389354],[-71.46782754,41.833889539],[-71.46822454,41.83380254],[-71.46852954,41.83372954],[-71.46863654,41.83370254],[-71.46900954,41.833596539],[-71.469353541,41.83343954],[-71.46978854,41.83323354],[-71.470009541,41.83314254],[-71.470238541,41.833035539],[-71.470360541,41.83297054],[-71.470444541,41.832920539],[-71.470367541,41.83288854],[-71.470258541,41.832839539],[-71.469987541,41.83273154],[-71.46979154,41.832664539],[-71.46969554,41.83263954],[-71.46940454,41.832583539],[-71.46930454,41.83257954],[-71.46911354,41.83254054],[-71.46902554,41.832511539],[-71.46895054,41.83247654],[-71.46888854,41.83243754],[-71.46881954,41.83237854],[-71.46875854,41.832316539],[-71.46848754,41.832121539],[-71.46835654,41.832041539],[-71.46828654,41.83199154],[-71.46822154,41.83193754],[-71.46803854,41.83173754],[-71.46798254,41.831692539],[-71.46791454,41.831648539],[-71.467756539,41.83156454],[-71.46767354,41.83152854],[-71.46759054,41.831499539],[-71.46743754,41.831460539],[-71.46726254,41.83142654],[-71.467191539,41.831417539],[-71.46702454,41.831412539],[-71.466861539,41.831418539],[-71.46646254,41.831460539],[-71.466293539,41.831491539],[-71.466177539,41.831517539],[-71.466091539,41.831519539],[-71.465693539,41.831456539],[-71.465615539,41.83142654],[-71.465416539,41.831322539],[-71.465319539,41.83128854],[-71.465246539,41.831275539],[-71.465100539,41.83127354],[-71.464992539,41.83125154],[-71.464922539,41.831223539],[-71.464860539,41.831189539],[-71.464803539,41.831127539],[-71.464769539,41.83105654],[-71.464758539,41.83099954],[-71.464758539,41.83093954],[-71.464737539,41.830886539],[-71.464726539,41.830830539],[-71.464722539,41.830773539],[-71.464693538,41.83066754],[-71.464742539,41.830596539],[-71.464750539,41.830324539],[-71.464744539,41.830255539],[-71.464686539,41.830134539],[-71.464646539,41.830079539],[-71.464569539,41.829885539],[-71.464422538,41.829605539],[-71.464304538,41.829405539],[-71.464180539,41.829236539],[-71.464125539,41.829144539],[-71.464021538,41.828947539],[-71.463948539,41.828849539],[-71.463793539,41.828689539],[-71.463744538,41.828624539],[-71.463676539,41.828483539],[-71.463635538,41.828413539],[-71.463461538,41.828222539],[-71.463348538,41.828082539],[-71.463249539,41.827973539],[-71.463200538,41.827927539],[-71.463145538,41.827889539],[-71.463065538,41.827844538],[-71.462983538,41.827840539],[-71.462930538,41.827855539],[-71.462873538,41.827810539],[-71.462804538,41.827775539],[-71.462748538,41.827775539],[-71.462660538,41.827753539],[-71.462594538,41.827699539],[-71.462556538,41.827649538],[-71.462495538,41.827537539],[-71.462454538,41.827489539],[-71.462432537,41.827421539],[-71.462412537,41.827311539],[-71.462387538,41.827256539],[-71.462355537,41.827200538],[-71.462332538,41.827146539],[-71.462306538,41.827055539],[-71.462297537,41.826984539],[-71.462309538,41.826797539],[-71.462333537,41.826744539],[-71.462366538,41.826693538],[-71.462523538,41.826478538],[-71.462542538,41.826461538],[-71.462504538,41.826138539],[-71.462303538,41.825801538],[-71.462080537,41.825548538],[-71.461936538,41.825123538],[-71.462225538,41.824789538],[-71.462166537,41.824589538],[-71.462126537,41.824474538],[-71.462122537,41.824451538],[-71.462206538,41.824380538],[-71.462171538,41.824359538],[-71.462002537,41.824302538],[-71.461825538,41.824229538],[-71.461450537,41.824016538],[-71.461248537,41.823926538],[-71.461078537,41.823841538],[-71.460888537,41.823737538],[-71.460704537,41.823618538],[-71.460684537,41.823606538],[-71.460429537,41.823450538],[-71.460251537,41.823371538],[-71.460342537,41.823246538],[-71.460434537,41.823075538],[-71.460487537,41.822827538],[-71.459468536,41.822650538],[-71.459223537,41.822608538],[-71.459279536,41.822694537],[-71.459372536,41.822807538],[-71.459506536,41.822941538],[-71.459613537,41.823031538],[-71.459828537,41.823231538],[-71.459886537,41.823296538],[-71.459956536,41.823348538],[-71.460108537,41.823447538],[-71.460175537,41.823476538],[-71.460047537,41.823652538],[-71.459763536,41.824025538],[-71.459511536,41.823914538],[-71.458969536,41.823685538],[-71.458305536,41.823399538],[-71.458237537,41.823407538],[-71.458214536,41.823419538],[-71.458168536,41.823456538],[-71.457909536,41.823777538],[-71.456932535,41.825051539],[-71.456444535,41.825669539],[-71.457008536,41.825768539],[-71.456995536,41.826188538],[-71.456985536,41.826516539],[-71.456963536,41.827046539],[-71.456940536,41.827576539],[-71.456917536,41.828087539],[-71.456902536,41.828297539],[-71.456894536,41.82862154],[-71.456276536,41.82865954],[-71.456131536,41.828671539],[-71.456184536,41.829277539],[-71.456284536,41.83009854],[-71.456291536,41.83019754],[-71.456314536,41.83055254],[-71.456360536,41.83087654],[-71.456451536,41.83167354],[-71.456497536,41.83211654]]]]}}"}, +{"type": "precinct", "typeId": 2851, "areaId": 25928, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":267,\"NAME\":\"2851\",\"SHAPE_Length\":0.046538328639098,\"SHAPE_Area\":-5.2793154774001e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.444382532,41.83359954],[-71.444389533,41.83394754],[-71.444412532,41.83426354],[-71.445297532,41.834290541],[-71.446007533,41.834275541],[-71.446770533,41.834233541],[-71.447502533,41.834195541],[-71.447449533,41.833767541],[-71.447365533,41.83284054],[-71.446632533,41.83274154],[-71.445862533,41.83263154],[-71.445580533,41.83258954],[-71.445107533,41.83253154],[-71.444527533,41.83245554],[-71.444382532,41.83359954]]],[[[-71.433960529,41.835781541],[-71.433823528,41.835808541],[-71.433708529,41.835846541],[-71.433601529,41.835888541],[-71.433182528,41.836201541],[-71.433014529,41.836335541],[-71.432831528,41.836503541],[-71.433342529,41.836720541],[-71.433899529,41.836968542],[-71.433914529,41.837006542],[-71.433899529,41.837056541],[-71.433701529,41.837296542],[-71.433464529,41.837571542],[-71.433632529,41.837647542],[-71.433800529,41.837727542],[-71.434349529,41.837967541],[-71.43450253,41.838040542],[-71.43534153,41.838417541],[-71.435753529,41.838612541],[-71.43654653,41.838959541],[-71.43676053,41.839051542],[-71.43711953,41.839215541],[-71.43738653,41.839325542],[-71.438007531,41.839586542],[-71.438240531,41.839684542],[-71.439095531,41.840035542],[-71.439804531,41.840329542],[-71.439949531,41.840386542],[-71.440094531,41.840451542],[-71.440552531,41.840641542],[-71.440536531,41.840481542],[-71.440308531,41.839653542],[-71.440201531,41.839287542],[-71.441124531,41.839142542],[-71.442017532,41.839001541],[-71.442924532,41.838978541],[-71.443863533,41.838978541],[-71.444870533,41.838978541],[-71.444702533,41.837319542],[-71.444660533,41.836913541],[-71.444649532,41.836800541],[-71.444611532,41.836522541],[-71.444458532,41.83486654],[-71.443306532,41.834935541],[-71.443169532,41.83494254],[-71.443146532,41.834948541],[-71.443039532,41.834954541],[-71.442520531,41.83476754],[-71.442490532,41.834771541],[-71.442169531,41.83480554],[-71.441788531,41.834851541],[-71.441742531,41.83469054],[-71.441719532,41.834546541],[-71.441734532,41.833275541],[-71.441750531,41.83255454],[-71.441727531,41.832287541],[-71.441360531,41.83227654],[-71.441010531,41.83227254],[-71.440933531,41.83227654],[-71.440842531,41.83228054],[-71.44027753,41.832325541],[-71.44023953,41.832325541],[-71.440132531,41.83233754],[-71.43983153,41.832361541],[-71.43953753,41.832402541],[-71.439545531,41.83248954],[-71.439552531,41.83270754],[-71.439545531,41.833214541],[-71.43952253,41.833954541],[-71.439507531,41.83466854],[-71.439514531,41.835221541],[-71.439117531,41.835289541],[-71.439138531,41.835398541],[-71.439145531,41.835426541],[-71.43917153,41.835514541],[-71.43841653,41.835568541],[-71.43827153,41.835575541],[-71.43761453,41.835629541],[-71.43741653,41.835644541],[-71.436943529,41.835671541],[-71.43681853,41.835681542],[-71.43660053,41.835698541],[-71.435852529,41.835759542],[-71.435524529,41.835781541],[-71.43499053,41.835774541],[-71.434616529,41.835774541],[-71.433960529,41.835781541]]]]}}"}, +{"type": "precinct", "typeId": 2852, "areaId": 25929, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":268,\"NAME\":\"2852\",\"SHAPE_Length\":0.022611346180626,\"SHAPE_Area\":-1.6696467184019e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.447365533,41.83284054],[-71.447922533,41.83290554],[-71.448112534,41.83288254],[-71.447983533,41.83209654],[-71.447868533,41.83139554],[-71.447189533,41.83144454],[-71.446808533,41.83149054],[-71.445923533,41.83157454],[-71.445770533,41.83158954],[-71.444420532,41.83168854],[-71.444382532,41.83142954],[-71.444290532,41.83089154],[-71.444214532,41.83041054],[-71.444160532,41.83005254],[-71.444031532,41.82929654],[-71.442787532,41.82938854],[-71.442337531,41.829422539],[-71.441986531,41.82945354],[-71.441948531,41.82945354],[-71.441185531,41.82952554],[-71.44039953,41.82959054],[-71.43981253,41.82964454],[-71.43958353,41.82965954],[-71.43969753,41.83017454],[-71.43981253,41.83062454],[-71.439842531,41.83078854],[-71.439934531,41.83131854],[-71.440132531,41.83233754],[-71.44023953,41.832325541],[-71.44027753,41.832325541],[-71.440842531,41.83228054],[-71.440933531,41.83227654],[-71.441010531,41.83227254],[-71.441360531,41.83227654],[-71.441727531,41.832287541],[-71.442291531,41.83230254],[-71.442497532,41.83231454],[-71.442522531,41.83231854],[-71.443056532,41.83233554],[-71.443344532,41.832344541],[-71.443661532,41.83235554],[-71.443893532,41.832363541],[-71.444527533,41.83245554],[-71.445107533,41.83253154],[-71.445580533,41.83258954],[-71.445862533,41.83263154],[-71.446632533,41.83274154],[-71.447365533,41.83284054]]]]}}"}, +{"type": "precinct", "typeId": 2853, "areaId": 25930, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":269,\"NAME\":\"2853\",\"SHAPE_Length\":0.026921848026395,\"SHAPE_Area\":-2.345074067951e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.430450527,41.836239541],[-71.430595528,41.836293541],[-71.430862528,41.836415542],[-71.431252528,41.836583541],[-71.432083529,41.836949542],[-71.432838529,41.837284541],[-71.433464529,41.837571542],[-71.433701529,41.837296542],[-71.433899529,41.837056541],[-71.433914529,41.837006542],[-71.433899529,41.836968542],[-71.433342529,41.836720541],[-71.432831528,41.836503541],[-71.433014529,41.836335541],[-71.433182528,41.836201541],[-71.433601529,41.835888541],[-71.433708529,41.835846541],[-71.433823528,41.835808541],[-71.433960529,41.835781541],[-71.434616529,41.835774541],[-71.43499053,41.835774541],[-71.435524529,41.835781541],[-71.435852529,41.835759542],[-71.43660053,41.835698541],[-71.43681853,41.835681542],[-71.436943529,41.835671541],[-71.43741653,41.835644541],[-71.43761453,41.835629541],[-71.43827153,41.835575541],[-71.43841653,41.835568541],[-71.43917153,41.835514541],[-71.439145531,41.835426541],[-71.439138531,41.835398541],[-71.439117531,41.835289541],[-71.439514531,41.835221541],[-71.439507531,41.83466854],[-71.43952253,41.833954541],[-71.439545531,41.833214541],[-71.439552531,41.83270754],[-71.439545531,41.83248954],[-71.43953753,41.832402541],[-71.439339531,41.832425541],[-71.43895753,41.832501541],[-71.438538531,41.832592541],[-71.43782853,41.832848541],[-71.43714153,41.833096541],[-71.43652353,41.83332554],[-71.43621153,41.833439541],[-71.435463529,41.833722541],[-71.435318529,41.83377154],[-71.435135529,41.833836541],[-71.434746529,41.833939541],[-71.434464529,41.833989541],[-71.434311529,41.834000541],[-71.434143529,41.834000541],[-71.433929529,41.833989541],[-71.433693529,41.833958541],[-71.433426529,41.833916541],[-71.433350529,41.83390854],[-71.433121528,41.833874541],[-71.432808528,41.833836541],[-71.432663528,41.833828541],[-71.432526528,41.833828541],[-71.432449528,41.833832541],[-71.432076528,41.833870541],[-71.431656528,41.833931541],[-71.431419528,41.833958541],[-71.430534528,41.834134541],[-71.430237527,41.834202541],[-71.430267528,41.834385541],[-71.430313527,41.835022541],[-71.430351527,41.835228541],[-71.430389527,41.835350542],[-71.430443528,41.835682541],[-71.430458528,41.835926541],[-71.430458528,41.836106542],[-71.430450527,41.836239541]]]]}}"}, +{"type": "precinct", "typeId": 2854, "areaId": 25931, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":270,\"NAME\":\"2854\",\"SHAPE_Length\":0.069229947005621,\"SHAPE_Area\":-0.00011672750453541},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.446953533,41.843384543],[-71.447334534,41.843556543],[-71.447586534,41.843663542],[-71.447853534,41.843777542],[-71.448158534,41.843926543],[-71.448372534,41.844029542],[-71.448975534,41.844319543],[-71.449135534,41.844418543],[-71.449417535,41.844071542],[-71.450272535,41.843083542],[-71.450851535,41.842427542],[-71.450981535,41.842289542],[-71.451019535,41.842240542],[-71.451447535,41.841748541],[-71.451767535,41.841370542],[-71.451973535,41.841153542],[-71.452118535,41.841122542],[-71.452469535,41.841057542],[-71.452301535,41.840611542],[-71.452026535,41.839821541],[-71.451706535,41.838921541],[-71.451658535,41.838798542],[-71.451607534,41.838669541],[-71.451225535,41.837635541],[-71.451157535,41.837426541],[-71.450912534,41.836739541],[-71.451447535,41.836628541],[-71.451599535,41.836609541],[-71.451645535,41.836602541],[-71.452019535,41.836583541],[-71.452347535,41.836575541],[-71.453087536,41.836571541],[-71.453079535,41.836480541],[-71.452911535,41.835915541],[-71.453201535,41.83587754],[-71.453568535,41.83584354],[-71.453629536,41.835827541],[-71.454796536,41.83524054],[-71.455032536,41.83512254],[-71.455101536,41.835072541],[-71.455154536,41.835011541],[-71.455368536,41.83467154],[-71.455399536,41.83456154],[-71.455399536,41.83448054],[-71.455902536,41.83328754],[-71.456200536,41.83272654],[-71.456497536,41.83211654],[-71.456177536,41.83212354],[-71.455875536,41.83214454],[-71.455635536,41.83216154],[-71.455285536,41.83218754],[-71.455261536,41.832192539],[-71.454689535,41.83223854],[-71.454552535,41.83224954],[-71.453796535,41.83231854],[-71.453735535,41.83137954],[-71.453697535,41.83054454],[-71.453697535,41.830361539],[-71.453735535,41.83035354],[-71.453972535,41.830342539],[-71.453850535,41.829022539],[-71.453979535,41.829026539],[-71.453957535,41.828831539],[-71.453835535,41.828827539],[-71.453331535,41.828808539],[-71.453217535,41.828808539],[-71.453064535,41.828804539],[-71.452850535,41.82879754],[-71.452255534,41.828804539],[-71.452263535,41.82904554],[-71.452278535,41.83017454],[-71.451553534,41.830243539],[-71.450050534,41.830380539],[-71.449387533,41.830437539],[-71.448654534,41.830498539],[-71.447746533,41.83058254],[-71.447759533,41.83066254],[-71.447807533,41.83096754],[-71.447868533,41.83139554],[-71.447983533,41.83209654],[-71.448112534,41.83288254],[-71.447922533,41.83290554],[-71.447365533,41.83284054],[-71.447449533,41.833767541],[-71.447502533,41.834195541],[-71.446770533,41.834233541],[-71.446007533,41.834275541],[-71.445297532,41.834290541],[-71.444412532,41.83426354],[-71.444389533,41.83394754],[-71.444382532,41.83359954],[-71.444527533,41.83245554],[-71.443893532,41.832363541],[-71.443661532,41.83235554],[-71.443344532,41.832344541],[-71.443056532,41.83233554],[-71.442522531,41.83231854],[-71.442497532,41.83231454],[-71.442291531,41.83230254],[-71.441727531,41.832287541],[-71.441750531,41.83255454],[-71.441734532,41.833275541],[-71.441719532,41.834546541],[-71.441742531,41.83469054],[-71.441788531,41.834851541],[-71.442169531,41.83480554],[-71.442490532,41.834771541],[-71.442520531,41.83476754],[-71.443039532,41.834954541],[-71.443146532,41.834948541],[-71.443169532,41.83494254],[-71.443306532,41.834935541],[-71.444458532,41.83486654],[-71.444611532,41.836522541],[-71.444649532,41.836800541],[-71.444660533,41.836913541],[-71.444702533,41.837319542],[-71.444870533,41.838978541],[-71.443863533,41.838978541],[-71.442924532,41.838978541],[-71.442017532,41.839001541],[-71.441124531,41.839142542],[-71.440201531,41.839287542],[-71.440308531,41.839653542],[-71.440536531,41.840481542],[-71.440552531,41.840641542],[-71.440628531,41.840676542],[-71.441147532,41.840889542],[-71.441643531,41.841099542],[-71.442093532,41.841298542],[-71.442467532,41.841458542],[-71.443192532,41.841755542],[-71.443314533,41.841809542],[-71.444214533,41.842198542],[-71.445152533,41.842595542],[-71.445816533,41.842873542],[-71.446083533,41.842991543],[-71.446953533,41.843384543]]]]}}"}, +{"type": "precinct", "typeId": 2855, "areaId": 25932, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":271,\"NAME\":\"2855\",\"SHAPE_Length\":0.052338271112977,\"SHAPE_Area\":-7.6461179440052e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.447868533,41.83139554],[-71.447807533,41.83096754],[-71.447759533,41.83066254],[-71.447746533,41.83058254],[-71.448654534,41.830498539],[-71.449387533,41.830437539],[-71.450050534,41.830380539],[-71.451553534,41.830243539],[-71.452278535,41.83017454],[-71.452263535,41.82904554],[-71.452255534,41.828804539],[-71.452850535,41.82879754],[-71.453064535,41.828804539],[-71.453217535,41.828808539],[-71.453331535,41.828808539],[-71.453835535,41.828827539],[-71.453957535,41.828831539],[-71.453979535,41.829026539],[-71.453850535,41.829022539],[-71.453972535,41.830342539],[-71.453735535,41.83035354],[-71.453697535,41.830361539],[-71.453697535,41.83054454],[-71.453735535,41.83137954],[-71.453796535,41.83231854],[-71.454552535,41.83224954],[-71.454689535,41.83223854],[-71.455261536,41.832192539],[-71.455285536,41.83218754],[-71.455635536,41.83216154],[-71.455875536,41.83214454],[-71.456177536,41.83212354],[-71.456497536,41.83211654],[-71.456451536,41.83167354],[-71.456360536,41.83087654],[-71.456314536,41.83055254],[-71.456291536,41.83019754],[-71.456284536,41.83009854],[-71.456184536,41.829277539],[-71.456131536,41.828671539],[-71.455391535,41.828705539],[-71.455353535,41.828297539],[-71.455338535,41.828186539],[-71.455299535,41.827786539],[-71.455292536,41.827664539],[-71.455231536,41.827153539],[-71.455177535,41.826630539],[-71.455147535,41.826405539],[-71.455154536,41.826363538],[-71.455170536,41.826329539],[-71.455185535,41.826214539],[-71.455254535,41.825966539],[-71.455391535,41.825489538],[-71.454834535,41.825394539],[-71.454659535,41.825383539],[-71.453972535,41.825344539],[-71.453484535,41.825310538],[-71.453018534,41.825291538],[-71.452698535,41.825276539],[-71.452202534,41.825245539],[-71.451530534,41.825211538],[-71.451172534,41.825196538],[-71.450829534,41.825177539],[-71.450096534,41.825142539],[-71.449341534,41.825108539],[-71.449249533,41.825100539],[-71.448631533,41.825074538],[-71.448296533,41.825051539],[-71.447853533,41.825032539],[-71.447418532,41.825013539],[-71.446655532,41.824974539],[-71.445763532,41.824929539],[-71.445491532,41.824912539],[-71.444626531,41.824860538],[-71.443718531,41.824810539],[-71.443398531,41.824788539],[-71.443375532,41.825123539],[-71.443398531,41.825451539],[-71.443413532,41.825512539],[-71.443542531,41.826214539],[-71.443581532,41.826432539],[-71.443642532,41.826844539],[-71.442780531,41.826908539],[-71.441811531,41.826973539],[-71.440758531,41.82706154],[-71.440758531,41.827084539],[-71.44080453,41.82741254],[-71.440910531,41.82803054],[-71.441002531,41.828629539],[-71.44020153,41.82869454],[-71.440247531,41.82902954],[-71.44039953,41.82959054],[-71.441185531,41.82952554],[-71.441948531,41.82945354],[-71.441986531,41.82945354],[-71.442337531,41.829422539],[-71.442787532,41.82938854],[-71.444031532,41.82929654],[-71.444160532,41.83005254],[-71.444214532,41.83041054],[-71.444290532,41.83089154],[-71.444382532,41.83142954],[-71.444420532,41.83168854],[-71.445770533,41.83158954],[-71.445923533,41.83157454],[-71.446808533,41.83149054],[-71.447189533,41.83144454],[-71.447868533,41.83139554]]]]}}"}, +{"type": "precinct", "typeId": 2856, "areaId": 25933, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":272,\"NAME\":\"2856\",\"SHAPE_Length\":0.016116188302938,\"SHAPE_Area\":-5.5576197445256e-6},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.443542531,41.826214539],[-71.442978531,41.826252539],[-71.441994531,41.826332539],[-71.441289531,41.826176539],[-71.44100253,41.826208539],[-71.440117531,41.82651654],[-71.44014053,41.826523539],[-71.440155531,41.82661154],[-71.440132531,41.826764539],[-71.440094531,41.826916539],[-71.440055531,41.82698154],[-71.440041531,41.826996539],[-71.44006353,41.82758754],[-71.439827531,41.82811054],[-71.43931453,41.82869154],[-71.43929353,41.828705539],[-71.43927053,41.828743539],[-71.43916953,41.828819539],[-71.43895553,41.82890854],[-71.43853853,41.82899154],[-71.43864453,41.82943854],[-71.43869853,41.82972854],[-71.43958353,41.82965954],[-71.43981253,41.82964454],[-71.44039953,41.82959054],[-71.440247531,41.82902954],[-71.44020153,41.82869454],[-71.441002531,41.828629539],[-71.440910531,41.82803054],[-71.44080453,41.82741254],[-71.440758531,41.827084539],[-71.440758531,41.82706154],[-71.441811531,41.826973539],[-71.442780531,41.826908539],[-71.443642532,41.826844539],[-71.443581532,41.826432539],[-71.443542531,41.826214539]]]]}}"}, +{"type": "precinct", "typeId": 2857, "areaId": 25934, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":273,\"NAME\":\"2857\",\"SHAPE_Length\":0.0098636144051696,\"SHAPE_Area\":-5.986424524472e-6},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.43869853,41.82972854],[-71.43857653,41.82973554],[-71.43848453,41.829754539],[-71.43795053,41.82996854],[-71.43776753,41.83004854],[-71.43761453,41.83011354],[-71.43713453,41.83030054],[-71.436928529,41.83039154],[-71.43718753,41.83073854],[-71.437355529,41.83097154],[-71.437508529,41.83118554],[-71.43777553,41.831543541],[-71.43840853,41.832402541],[-71.438538531,41.832592541],[-71.43895753,41.832501541],[-71.439339531,41.832425541],[-71.43953753,41.832402541],[-71.43983153,41.832361541],[-71.440132531,41.83233754],[-71.439934531,41.83131854],[-71.439842531,41.83078854],[-71.43981253,41.83062454],[-71.43969753,41.83017454],[-71.43958353,41.82965954],[-71.43869853,41.82972854]]]]}}"}, +{"type": "precinct", "typeId": 2858, "areaId": 25935, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":274,\"NAME\":\"2858\",\"SHAPE_Length\":0.052541690324006,\"SHAPE_Area\":-6.1237917461906e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.428360527,41.831498541],[-71.428474527,41.831623541],[-71.428604527,41.831780541],[-71.428658527,41.83184554],[-71.428713527,41.83190254],[-71.428864527,41.832062541],[-71.429016527,41.832230541],[-71.429131527,41.832344541],[-71.429382527,41.832669541],[-71.429649527,41.832978541],[-71.429840528,41.83322654],[-71.429916528,41.833332541],[-71.430054528,41.833680541],[-71.430161527,41.833969541],[-71.430237527,41.834202541],[-71.430534528,41.834134541],[-71.431419528,41.833958541],[-71.431656528,41.833931541],[-71.432076528,41.833870541],[-71.432449528,41.833832541],[-71.432526528,41.833828541],[-71.432663528,41.833828541],[-71.432808528,41.833836541],[-71.433121528,41.833874541],[-71.433350529,41.83390854],[-71.433426529,41.833916541],[-71.433693529,41.833958541],[-71.433929529,41.833989541],[-71.434143529,41.834000541],[-71.434311529,41.834000541],[-71.434464529,41.833989541],[-71.434746529,41.833939541],[-71.435135529,41.833836541],[-71.435318529,41.83377154],[-71.435463529,41.833722541],[-71.43621153,41.833439541],[-71.43652353,41.83332554],[-71.43714153,41.833096541],[-71.43782853,41.832848541],[-71.438538531,41.832592541],[-71.43840853,41.832402541],[-71.43777553,41.831543541],[-71.437508529,41.83118554],[-71.437355529,41.83097154],[-71.43718753,41.83073854],[-71.436928529,41.83039154],[-71.43713453,41.83030054],[-71.43761453,41.83011354],[-71.43776753,41.83004854],[-71.43795053,41.82996854],[-71.43848453,41.829754539],[-71.43857653,41.82973554],[-71.43869853,41.82972854],[-71.43864453,41.82943854],[-71.43853853,41.82899154],[-71.43895553,41.82890854],[-71.43916953,41.828819539],[-71.43927053,41.828743539],[-71.43929353,41.828705539],[-71.43931453,41.82869154],[-71.439827531,41.82811054],[-71.44006353,41.82758754],[-71.440041531,41.826996539],[-71.440055531,41.82698154],[-71.440094531,41.826916539],[-71.440132531,41.826764539],[-71.440155531,41.82661154],[-71.44014053,41.826523539],[-71.440117531,41.82651654],[-71.44100253,41.826208539],[-71.441289531,41.826176539],[-71.441994531,41.826332539],[-71.442978531,41.826252539],[-71.443542531,41.826214539],[-71.443413532,41.825512539],[-71.443398531,41.825451539],[-71.441757531,41.825364539],[-71.441490531,41.825344539],[-71.441452531,41.825562539],[-71.441399531,41.825764539],[-71.441315531,41.825982539],[-71.44129253,41.826023539],[-71.441223531,41.826077539],[-71.441147531,41.826088539],[-71.441048531,41.826092539],[-71.440971531,41.826065539],[-71.44090353,41.826001539],[-71.44088753,41.82597054],[-71.43999553,41.825905539],[-71.43936253,41.825867539],[-71.43899553,41.825840539],[-71.43891153,41.825966539],[-71.43875953,41.826138539],[-71.43865253,41.82624154],[-71.43857653,41.82631754],[-71.43831653,41.82651654],[-71.43814853,41.826622539],[-71.43808753,41.826661539],[-71.43802653,41.82668754],[-71.43785153,41.826775539],[-71.437553529,41.82690554],[-71.43728653,41.82702354],[-71.43670753,41.82729054],[-71.436401529,41.827420539],[-71.436150529,41.82752654],[-71.435440529,41.82783954],[-71.435158529,41.82797354],[-71.434456529,41.82835854],[-71.433304528,41.82900754],[-71.431966528,41.82976554],[-71.431770528,41.82988054],[-71.431412528,41.83004854],[-71.430504528,41.830452541],[-71.430374527,41.83030754],[-71.430153528,41.82999154],[-71.429782528,41.82947654],[-71.429298527,41.82880454],[-71.429253527,41.82877054],[-71.429222527,41.82875954],[-71.429176527,41.82875554],[-71.429115527,41.82876254],[-71.428970527,41.82879754],[-71.428703527,41.82885454],[-71.428649527,41.82870854],[-71.428596526,41.82856654],[-71.428543527,41.82842354],[-71.428482526,41.82828254],[-71.428421526,41.82812554],[-71.427963527,41.82703854],[-71.427956526,41.82701154],[-71.427666526,41.82633254],[-71.427132527,41.826458539],[-71.426804526,41.82655054],[-71.426645526,41.82658454],[-71.426580526,41.82658854],[-71.426125526,41.826653539],[-71.426056526,41.82666454],[-71.425931526,41.82668354],[-71.425949526,41.826870539],[-71.425957526,41.82705354],[-71.426048526,41.827687539],[-71.426155526,41.82802254],[-71.426247526,41.82828254],[-71.426285526,41.82837054],[-71.426453526,41.82885054],[-71.426559526,41.82882754],[-71.426608526,41.82894854],[-71.426674526,41.82911054],[-71.426685526,41.82914554],[-71.426697526,41.829186541],[-71.426720527,41.82924354],[-71.426605527,41.82926654],[-71.426704526,41.82948754],[-71.426788526,41.82962854],[-71.426926526,41.829770541],[-71.427048526,41.829888541],[-71.427162526,41.82999554],[-71.427330526,41.830162541],[-71.427467526,41.83030754],[-71.427765527,41.830628541],[-71.427917526,41.830857541],[-71.428207526,41.831307541],[-71.428314527,41.831440541],[-71.428360527,41.831498541]]]]}}"}, +{"type": "precinct", "typeId": 2859, "areaId": 25936, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":275,\"NAME\":\"2859\",\"SHAPE_Length\":0.041090486703759,\"SHAPE_Area\":-4.6483777746122e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.425931526,41.82668354],[-71.426056526,41.82666454],[-71.426125526,41.826653539],[-71.426580526,41.82658854],[-71.426645526,41.82658454],[-71.426804526,41.82655054],[-71.427132527,41.826458539],[-71.427666526,41.82633254],[-71.427956526,41.82701154],[-71.427963527,41.82703854],[-71.428421526,41.82812554],[-71.428482526,41.82828254],[-71.428543527,41.82842354],[-71.428596526,41.82856654],[-71.428649527,41.82870854],[-71.428703527,41.82885454],[-71.428970527,41.82879754],[-71.429115527,41.82876254],[-71.429176527,41.82875554],[-71.429222527,41.82875954],[-71.429253527,41.82877054],[-71.429298527,41.82880454],[-71.429782528,41.82947654],[-71.430153528,41.82999154],[-71.430374527,41.83030754],[-71.430504528,41.830452541],[-71.431412528,41.83004854],[-71.431770528,41.82988054],[-71.431966528,41.82976554],[-71.433304528,41.82900754],[-71.434456529,41.82835854],[-71.435158529,41.82797354],[-71.435440529,41.82783954],[-71.436150529,41.82752654],[-71.436401529,41.827420539],[-71.43670753,41.82729054],[-71.43728653,41.82702354],[-71.437553529,41.82690554],[-71.43785153,41.826775539],[-71.43802653,41.82668754],[-71.43808753,41.826661539],[-71.43814853,41.826622539],[-71.43831653,41.82651654],[-71.43857653,41.82631754],[-71.43865253,41.82624154],[-71.43875953,41.826138539],[-71.43891153,41.825966539],[-71.43899553,41.825840539],[-71.43936253,41.825867539],[-71.43999553,41.825905539],[-71.44088753,41.82597054],[-71.44090353,41.826001539],[-71.440971531,41.826065539],[-71.441048531,41.826092539],[-71.441147531,41.826088539],[-71.441223531,41.826077539],[-71.44129253,41.826023539],[-71.441315531,41.825982539],[-71.441399531,41.825764539],[-71.441452531,41.825562539],[-71.441490531,41.825344539],[-71.441757531,41.825364539],[-71.443398531,41.825451539],[-71.443375532,41.825123539],[-71.443398531,41.824788539],[-71.442917531,41.824765539],[-71.442429531,41.824742538],[-71.441956531,41.824707539],[-71.44156653,41.824688539],[-71.439476531,41.824570539],[-71.43862253,41.824532539],[-71.43831253,41.824522539],[-71.43820953,41.824519539],[-71.43777553,41.824505539],[-71.436516529,41.824482539],[-71.435806529,41.824471539],[-71.435493529,41.824471539],[-71.434593529,41.824387539],[-71.434242528,41.824334539],[-71.434050529,41.824300539],[-71.433959528,41.824285539],[-71.433895529,41.824275539],[-71.433640528,41.824227539],[-71.433540528,41.824274539],[-71.433510528,41.824288539],[-71.433411529,41.824341539],[-71.433144528,41.824459539],[-71.432838528,41.824570539],[-71.432495528,41.824688539],[-71.431688528,41.824882539],[-71.431465527,41.82493654],[-71.429848527,41.825299539],[-71.429153527,41.825451539],[-71.428596526,41.825562539],[-71.428017526,41.825665539],[-71.427322526,41.825760539],[-71.426674526,41.82582954],[-71.425980526,41.82588254],[-71.425880526,41.82589054],[-71.425896526,41.82600854],[-71.425915526,41.82623754],[-71.425918526,41.82627354],[-71.425921526,41.82630954],[-71.425925525,41.82635554],[-71.425930526,41.826424539],[-71.425934526,41.82646654],[-71.425926525,41.82663054],[-71.425931526,41.82668354]]]]}}"}, +{"type": "precinct", "typeId": 2860, "areaId": 25937, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":276,\"NAME\":\"2860\",\"SHAPE_Length\":0.013173042805757,\"SHAPE_Area\":-8.3255963040404e-6},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.443718531,41.824810539],[-71.444626531,41.824860538],[-71.445491532,41.824912539],[-71.445763532,41.824929539],[-71.446655532,41.824974539],[-71.447418532,41.825013539],[-71.447853533,41.825032539],[-71.448296533,41.825051539],[-71.448631533,41.825074538],[-71.448692533,41.824376538],[-71.448784533,41.823422538],[-71.448822533,41.823162538],[-71.448669533,41.823140539],[-71.448395533,41.823117539],[-71.448257533,41.823117539],[-71.448097532,41.823128538],[-71.447502533,41.823162538],[-71.447197533,41.823182538],[-71.446617532,41.823223538],[-71.446480532,41.823231538],[-71.445702532,41.823281538],[-71.444817532,41.823334539],[-71.443939532,41.823391539],[-71.443871531,41.823956539],[-71.443810531,41.824322539],[-71.443718531,41.824810539]]]]}}"}, +{"type": "precinct", "typeId": 2861, "areaId": 25938, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":277,\"NAME\":\"2861\",\"SHAPE_Length\":0.037738357089611,\"SHAPE_Area\":-6.290893039851e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.431129527,41.816082538],[-71.431335527,41.816597537],[-71.431717527,41.816555537],[-71.431831528,41.817131538],[-71.431915527,41.817524538],[-71.431984528,41.817852538],[-71.432030527,41.818112537],[-71.432137528,41.818684538],[-71.432228527,41.819134538],[-71.432022528,41.819184538],[-71.431221527,41.819371538],[-71.430367527,41.819569538],[-71.429359526,41.819806539],[-71.428185527,41.820084538],[-71.428101526,41.820103538],[-71.427868526,41.820156539],[-71.427361526,41.820275539],[-71.426537526,41.820473538],[-71.426674526,41.820778539],[-71.427063526,41.821441539],[-71.427391526,41.822064539],[-71.427765526,41.822693539],[-71.428238527,41.823536539],[-71.428322526,41.823704539],[-71.428719526,41.823731539],[-71.429291527,41.823769539],[-71.429886527,41.823811539],[-71.430267527,41.823841539],[-71.430489527,41.823857539],[-71.430557527,41.823861539],[-71.431023527,41.823895539],[-71.431061527,41.823899539],[-71.431610528,41.823937539],[-71.431648528,41.823937539],[-71.431755527,41.823944539],[-71.432335528,41.823998539],[-71.432465528,41.824017539],[-71.432732528,41.824055539],[-71.433090528,41.824128539],[-71.433167528,41.824139539],[-71.433380528,41.824181539],[-71.433594528,41.824215539],[-71.433640528,41.824227539],[-71.434067528,41.823998539],[-71.434669528,41.823594539],[-71.434944529,41.823380539],[-71.435173528,41.823193539],[-71.435333529,41.823040539],[-71.435585529,41.822789539],[-71.435852528,41.822495539],[-71.436089529,41.822201539],[-71.436272529,41.821946539],[-71.436534529,41.821552538],[-71.436546529,41.821534538],[-71.436722529,41.821286539],[-71.436974529,41.820916539],[-71.437126529,41.820683539],[-71.437553529,41.820031538],[-71.43762353,41.819922538],[-71.437846529,41.819573538],[-71.437881529,41.819519538],[-71.438019529,41.819283538],[-71.43809253,41.819145537],[-71.438133529,41.819069538],[-71.438278529,41.818825538],[-71.43844053,41.818567538],[-71.43849953,41.818455538],[-71.43882853,41.817852538],[-71.43894253,41.817624537],[-71.43901853,41.817456537],[-71.439384529,41.816582537],[-71.439537529,41.816162537],[-71.43955253,41.815976537],[-71.43948453,41.815953537],[-71.439423529,41.815930537],[-71.43939253,41.815918537],[-71.43935453,41.815911537],[-71.439171529,41.815856537],[-71.439011529,41.815808538],[-71.438858529,41.815777537],[-71.43875153,41.815773537],[-71.43865253,41.815773537],[-71.43811053,41.815796537],[-71.437424529,41.815834537],[-71.437042529,41.815865538],[-71.436531529,41.815930537],[-71.435387528,41.816090537],[-71.435204529,41.816113537],[-71.434662528,41.816189537],[-71.433960528,41.816292538],[-71.433540528,41.816349538],[-71.433281527,41.816014537],[-71.433090528,41.815781537],[-71.432030527,41.815907538],[-71.431091527,41.815991537],[-71.431129527,41.816082538]]]]}}"}, +{"type": "precinct", "typeId": 2862, "areaId": 25939, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":278,\"NAME\":\"2862\",\"SHAPE_Length\":0.055359808419022,\"SHAPE_Area\":-8.9075426635116e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.418839524,41.826031539],[-71.419014524,41.82606254],[-71.419258523,41.826107539],[-71.419815524,41.82619154],[-71.420090524,41.826226539],[-71.420174524,41.82622954],[-71.420364524,41.82623754],[-71.420654524,41.82623754],[-71.421021524,41.826226539],[-71.421516524,41.82617654],[-71.423523525,41.825993539],[-71.424110525,41.825955539],[-71.424713526,41.82592454],[-71.425194526,41.82592454],[-71.425247525,41.82592854],[-71.425385525,41.82592854],[-71.425651525,41.82590854],[-71.425880526,41.82589054],[-71.425980526,41.82588254],[-71.426674526,41.82582954],[-71.427322526,41.825760539],[-71.428017526,41.825665539],[-71.428596526,41.825562539],[-71.429153527,41.825451539],[-71.429848527,41.825299539],[-71.431465527,41.82493654],[-71.431688528,41.824882539],[-71.432495528,41.824688539],[-71.432838528,41.824570539],[-71.433144528,41.824459539],[-71.433411529,41.824341539],[-71.433510528,41.824288539],[-71.433540528,41.824274539],[-71.433640528,41.824227539],[-71.433594528,41.824215539],[-71.433380528,41.824181539],[-71.433167528,41.824139539],[-71.433090528,41.824128539],[-71.432732528,41.824055539],[-71.432465528,41.824017539],[-71.432335528,41.823998539],[-71.431755527,41.823944539],[-71.431648528,41.823937539],[-71.431610528,41.823937539],[-71.431061527,41.823899539],[-71.431023527,41.823895539],[-71.430557527,41.823861539],[-71.430489527,41.823857539],[-71.430267527,41.823841539],[-71.429886527,41.823811539],[-71.429291527,41.823769539],[-71.428719526,41.823731539],[-71.428322526,41.823704539],[-71.428238527,41.823536539],[-71.427765526,41.822693539],[-71.427391526,41.822064539],[-71.427063526,41.821441539],[-71.426674526,41.820778539],[-71.426537526,41.820473538],[-71.427361526,41.820275539],[-71.427868526,41.820156539],[-71.428101526,41.820103538],[-71.428185527,41.820084538],[-71.429359526,41.819806539],[-71.430367527,41.819569538],[-71.431221527,41.819371538],[-71.432022528,41.819184538],[-71.432228527,41.819134538],[-71.432137528,41.818684538],[-71.432030527,41.818112537],[-71.431984528,41.817852538],[-71.431915527,41.817524538],[-71.431831528,41.817131538],[-71.431717527,41.816555537],[-71.431335527,41.816597537],[-71.431129527,41.816082538],[-71.430588526,41.816143537],[-71.430077526,41.816204537],[-71.430305527,41.816716538],[-71.429054526,41.816853538],[-71.428482526,41.816914538],[-71.428406526,41.816925537],[-71.427185526,41.817059537],[-71.426254526,41.817139538],[-71.426132526,41.817147538],[-71.425537525,41.817185538],[-71.425148525,41.817208538],[-71.425034525,41.817215537],[-71.424637524,41.817246538],[-71.423584524,41.817318538],[-71.422333524,41.817421538],[-71.421997524,41.817459538],[-71.421898524,41.817486538],[-71.421789523,41.817525538],[-71.421577524,41.817601538],[-71.421459523,41.817642538],[-71.421349524,41.817688538],[-71.421135524,41.817784538],[-71.420935523,41.817877538],[-71.420569524,41.818046538],[-71.420174523,41.818230538],[-71.419281523,41.818623538],[-71.419228523,41.818646538],[-71.418831523,41.818818538],[-71.418724523,41.818863538],[-71.418544523,41.818931538],[-71.418335523,41.819016538],[-71.419067523,41.819615538],[-71.419258523,41.819802539],[-71.419351524,41.819903539],[-71.419371523,41.819933539],[-71.419997523,41.820858539],[-71.420105524,41.821305539],[-71.420143524,41.821446538],[-71.420143524,41.821522539],[-71.420166524,41.821850539],[-71.420158524,41.821888539],[-71.420158524,41.821949539],[-71.420158524,41.822026539],[-71.420151523,41.822091539],[-71.420151523,41.822148539],[-71.420120524,41.822346539],[-71.420067524,41.822552539],[-71.419922523,41.823017539],[-71.419899523,41.823071539],[-71.419876524,41.82314254],[-71.419868524,41.823166539],[-71.419818524,41.823318539],[-71.419708523,41.823655539],[-71.419594524,41.82397554],[-71.419533523,41.824128539],[-71.419472523,41.82430754],[-71.419342524,41.824646539],[-71.419235523,41.82495354],[-71.419189524,41.82508554],[-71.419113524,41.82528054],[-71.419060523,41.82543654],[-71.418982523,41.82563154],[-71.418877524,41.825913539],[-71.418839524,41.826031539]]]]}}"}, +{"type": "precinct", "typeId": 2863, "areaId": 25940, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":279,\"NAME\":\"2863\",\"SHAPE_Length\":0.040239023629195,\"SHAPE_Area\":-7.3974302983591e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.443398531,41.824788539],[-71.443718531,41.824810539],[-71.443810531,41.824322539],[-71.443871531,41.823956539],[-71.443939532,41.823391539],[-71.444817532,41.823334539],[-71.445702532,41.823281538],[-71.446480532,41.823231538],[-71.446617532,41.823223538],[-71.447197533,41.823182538],[-71.447502533,41.823162538],[-71.448097532,41.823128538],[-71.448257533,41.823117539],[-71.448395533,41.823117539],[-71.448669533,41.823140539],[-71.449684533,41.822335538],[-71.449463533,41.822174538],[-71.449081533,41.821888538],[-71.448631533,41.821553538],[-71.448425533,41.821404538],[-71.447800533,41.820942538],[-71.447754533,41.820908538],[-71.446999533,41.820244538],[-71.446907532,41.820164538],[-71.446869532,41.820130538],[-71.446533532,41.819779538],[-71.446457533,41.819703538],[-71.446213532,41.819352538],[-71.446152532,41.819268538],[-71.445953532,41.818997538],[-71.445808532,41.818871538],[-71.445656532,41.818749538],[-71.445374532,41.818520538],[-71.444649531,41.817959537],[-71.444107531,41.817547537],[-71.443701531,41.817235537],[-71.443642531,41.817189538],[-71.443633531,41.817171538],[-71.443619531,41.817143537],[-71.443558531,41.817089537],[-71.443504531,41.817040537],[-71.443466531,41.816944537],[-71.443405531,41.816876537],[-71.443329531,41.816826537],[-71.443199531,41.816769537],[-71.442932531,41.816750537],[-71.442818531,41.816738537],[-71.44275753,41.816735537],[-71.442245531,41.816670537],[-71.442047531,41.816636537],[-71.44186453,41.816605538],[-71.44162853,41.816574537],[-71.44127753,41.816521537],[-71.44093353,41.816414538],[-71.44059053,41.816330537],[-71.43992253,41.816103537],[-71.43987553,41.816087537],[-71.439713529,41.816033537],[-71.43960653,41.815995537],[-71.439537529,41.816162537],[-71.439384529,41.816582537],[-71.43901853,41.817456537],[-71.43894253,41.817624537],[-71.43882853,41.817852538],[-71.43849953,41.818455538],[-71.43844053,41.818567538],[-71.438278529,41.818825538],[-71.438133529,41.819069538],[-71.43809253,41.819145537],[-71.438019529,41.819283538],[-71.437881529,41.819519538],[-71.437846529,41.819573538],[-71.43762353,41.819922538],[-71.437553529,41.820031538],[-71.437126529,41.820683539],[-71.436974529,41.820916539],[-71.436722529,41.821286539],[-71.436546529,41.821534538],[-71.436534529,41.821552538],[-71.436272529,41.821946539],[-71.436089529,41.822201539],[-71.435852528,41.822495539],[-71.435585529,41.822789539],[-71.435333529,41.823040539],[-71.435173528,41.823193539],[-71.434944529,41.823380539],[-71.434669528,41.823594539],[-71.434067528,41.823998539],[-71.433640528,41.824227539],[-71.433895529,41.824275539],[-71.433959528,41.824285539],[-71.434050529,41.824300539],[-71.434242528,41.824334539],[-71.434593529,41.824387539],[-71.435493529,41.824471539],[-71.435806529,41.824471539],[-71.436516529,41.824482539],[-71.43777553,41.824505539],[-71.43820953,41.824519539],[-71.43831253,41.824522539],[-71.43862253,41.824532539],[-71.439476531,41.824570539],[-71.44156653,41.824688539],[-71.441956531,41.824707539],[-71.442429531,41.824742538],[-71.442917531,41.824765539],[-71.443398531,41.824788539]]]]}}"}, +{"type": "precinct", "typeId": 2864, "areaId": 25941, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":280,\"NAME\":\"2864\",\"SHAPE_Length\":0.023120590161661,\"SHAPE_Area\":-1.9229304818459e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.437042529,41.815865538],[-71.437424529,41.815834537],[-71.43811053,41.815796537],[-71.43865253,41.815773537],[-71.43875153,41.815773537],[-71.438858529,41.815777537],[-71.439011529,41.815808538],[-71.439171529,41.815856537],[-71.43935453,41.815911537],[-71.43939253,41.815918537],[-71.439423529,41.815930537],[-71.43948453,41.815953537],[-71.43955253,41.815976537],[-71.43956853,41.815850537],[-71.43961353,41.815590537],[-71.43983853,41.814609537],[-71.43986553,41.814492537],[-71.43987353,41.814475537],[-71.43994153,41.814175537],[-71.44001053,41.813824536],[-71.44007953,41.813515537],[-71.44022453,41.812886536],[-71.44036953,41.812149536],[-71.440453529,41.811684536],[-71.44056753,41.811222536],[-71.44058253,41.811085536],[-71.440590529,41.810791536],[-71.440628529,41.810299536],[-71.44080953,41.808649536],[-71.44056753,41.808712535],[-71.440300529,41.808785536],[-71.440186529,41.808812536],[-71.439891529,41.808895536],[-71.44000253,41.808918536],[-71.44005653,41.808957536],[-71.44017053,41.809101536],[-71.440086529,41.809178536],[-71.44005653,41.809323536],[-71.440048529,41.809384536],[-71.440033529,41.809536536],[-71.439987529,41.809845536],[-71.439987529,41.809925536],[-71.439987529,41.810048536],[-71.44000253,41.810379536],[-71.44001853,41.810601537],[-71.44003353,41.810959536],[-71.44000253,41.811283537],[-71.439148529,41.811257536],[-71.438225529,41.811215536],[-71.437286529,41.811169536],[-71.435898528,41.811089537],[-71.435463528,41.811077536],[-71.435570528,41.811425536],[-71.435684528,41.811779536],[-71.435928528,41.812477536],[-71.435930528,41.812495536],[-71.436142528,41.813141536],[-71.436264528,41.813492537],[-71.436371529,41.813790537],[-71.436417528,41.813935537],[-71.436485529,41.814129537],[-71.436745529,41.814896537],[-71.436768528,41.814965537],[-71.437042529,41.815865538]]]]}}"}, +{"type": "precinct", "typeId": 2865, "areaId": 25942, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":281,\"NAME\":\"2865\",\"SHAPE_Length\":0.038751940897419,\"SHAPE_Area\":-2.9133494053442e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.446106532,41.815224537],[-71.446365532,41.815422537],[-71.447411533,41.816235537],[-71.448273532,41.816914537],[-71.448555533,41.817143537],[-71.448792533,41.817364537],[-71.448860532,41.817437537],[-71.449120533,41.817688537],[-71.449257533,41.817830537],[-71.449492533,41.818093537],[-71.449638533,41.818257537],[-71.450592534,41.819306537],[-71.451218533,41.819970537],[-71.451584534,41.820309538],[-71.451653534,41.820378537],[-71.451889534,41.820568538],[-71.452110534,41.820721538],[-71.452339534,41.820866538],[-71.452583534,41.821003538],[-71.452858534,41.821141538],[-71.453140535,41.821267538],[-71.453430534,41.821377538],[-71.453712535,41.821465538],[-71.454002535,41.821537538],[-71.454300534,41.821602537],[-71.454360535,41.821614538],[-71.454548535,41.821652538],[-71.454605535,41.821663538],[-71.457750536,41.822204538],[-71.459113537,41.822439538],[-71.459347537,41.822480537],[-71.459278536,41.822384538],[-71.459072537,41.822134538],[-71.458925536,41.822020538],[-71.458831536,41.821978538],[-71.459197536,41.821361538],[-71.459801536,41.821434538],[-71.459132537,41.821201538],[-71.458974537,41.821417538],[-71.458427536,41.821608538],[-71.457769536,41.821343538],[-71.457335536,41.821142538],[-71.457191536,41.820988538],[-71.457253536,41.821034538],[-71.457390536,41.821114538],[-71.457726536,41.821282538],[-71.457916536,41.821354538],[-71.458092536,41.821415538],[-71.458351536,41.821480538],[-71.458580536,41.821476538],[-71.458679536,41.821427537],[-71.458740536,41.821301538],[-71.458748536,41.821179537],[-71.458725536,41.821045538],[-71.458717536,41.820916538],[-71.458687536,41.820782538],[-71.458633536,41.820656538],[-71.458572536,41.820534537],[-71.458481536,41.820374537],[-71.458405536,41.820355537],[-71.458313536,41.820275538],[-71.458313536,41.820134538],[-71.458382536,41.819889537],[-71.458397536,41.819798537],[-71.458252536,41.819786538],[-71.457947536,41.819733537],[-71.457596535,41.819683537],[-71.457481535,41.819668538],[-71.456726535,41.819489538],[-71.456673536,41.819451538],[-71.456635536,41.819420537],[-71.456637536,41.819397538],[-71.456627535,41.819363537],[-71.456688535,41.819138537],[-71.456749536,41.818943537],[-71.456764535,41.818882537],[-71.456993535,41.818283537],[-71.456726535,41.818230537],[-71.455826535,41.818047537],[-71.455315535,41.817955537],[-71.454720535,41.817852537],[-71.454102535,41.817711537],[-71.453949534,41.817685537],[-71.453804535,41.817658537],[-71.452171534,41.817486538],[-71.452072534,41.817479537],[-71.450752533,41.817360537],[-71.449898533,41.817276537],[-71.449631533,41.817250537],[-71.449471533,41.817231537],[-71.449293533,41.817216537],[-71.449214533,41.817142537],[-71.449114533,41.817048537],[-71.447408532,41.816009537],[-71.446288532,41.815208537],[-71.446205531,41.815138537],[-71.446159532,41.815182537],[-71.446106532,41.815224537]]]]}}"}, +{"type": "precinct", "typeId": 2866, "areaId": 25943, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":282,\"NAME\":\"2866\",\"SHAPE_Length\":0.027944477540229,\"SHAPE_Area\":-3.7509769479418e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.426552525,41.813458537],[-71.426933526,41.813965537],[-71.427167526,41.814378537],[-71.427216525,41.814465537],[-71.427605525,41.815300538],[-71.427940526,41.815953537],[-71.428062526,41.816201537],[-71.428406526,41.816925537],[-71.428482526,41.816914538],[-71.429054526,41.816853538],[-71.430305527,41.816716538],[-71.430077526,41.816204537],[-71.430588526,41.816143537],[-71.431129527,41.816082538],[-71.431091527,41.815991537],[-71.432030527,41.815907538],[-71.433090528,41.815781537],[-71.433281527,41.816014537],[-71.433540528,41.816349538],[-71.433960528,41.816292538],[-71.434662528,41.816189537],[-71.435204529,41.816113537],[-71.435387528,41.816090537],[-71.436531529,41.815930537],[-71.437042529,41.815865538],[-71.436768528,41.814965537],[-71.436745529,41.814896537],[-71.436485529,41.814129537],[-71.436417528,41.813935537],[-71.436371529,41.813790537],[-71.436264528,41.813492537],[-71.436142528,41.813141536],[-71.435930528,41.812495536],[-71.435928528,41.812477536],[-71.435684528,41.811779536],[-71.434395528,41.811871536],[-71.433621528,41.811880537],[-71.432487527,41.811894536],[-71.431168527,41.811898537],[-71.431061527,41.811867537],[-71.430344527,41.812222536],[-71.429588527,41.812611537],[-71.429428526,41.812260537],[-71.428902526,41.812394537],[-71.428398526,41.812535537],[-71.427826526,41.812832537],[-71.427216525,41.813130537],[-71.426552525,41.813458537]]]]}}"}, +{"type": "precinct", "typeId": 2867, "areaId": 25944, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":283,\"NAME\":\"2867\",\"SHAPE_Length\":0.048546293172005,\"SHAPE_Area\":-3.9601197112076e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.459223537,41.822608538],[-71.459468536,41.822650538],[-71.459347537,41.822480537],[-71.459113537,41.822439538],[-71.457750536,41.822204538],[-71.454605535,41.821663538],[-71.454548535,41.821652538],[-71.454360535,41.821614538],[-71.454300534,41.821602537],[-71.454002535,41.821537538],[-71.453712535,41.821465538],[-71.453430534,41.821377538],[-71.453140535,41.821267538],[-71.452858534,41.821141538],[-71.452583534,41.821003538],[-71.452339534,41.820866538],[-71.452110534,41.820721538],[-71.451889534,41.820568538],[-71.451653534,41.820378537],[-71.451584534,41.820309538],[-71.451218533,41.819970537],[-71.450592534,41.819306537],[-71.449638533,41.818257537],[-71.449492533,41.818093537],[-71.449257533,41.817830537],[-71.449120533,41.817688537],[-71.448860532,41.817437537],[-71.448792533,41.817364537],[-71.448555533,41.817143537],[-71.448273532,41.816914537],[-71.447411533,41.816235537],[-71.446365532,41.815422537],[-71.446106532,41.815224537],[-71.445244532,41.814556537],[-71.445122531,41.814469537],[-71.444916532,41.814331536],[-71.444804531,41.814265537],[-71.444648531,41.814174536],[-71.444611531,41.814152537],[-71.444504531,41.814103537],[-71.444275531,41.814015537],[-71.444153531,41.813980536],[-71.444038531,41.813954537],[-71.443794531,41.813923536],[-71.443520531,41.813927537],[-71.443138531,41.813950537],[-71.44285653,41.813958536],[-71.442535531,41.813961536],[-71.442421531,41.813950537],[-71.44184153,41.813874537],[-71.44146753,41.813832537],[-71.44142253,41.813820537],[-71.44118153,41.813807537],[-71.44107153,41.813801537],[-71.44076553,41.813771537],[-71.44059053,41.813763536],[-71.440434529,41.813766536],[-71.44038453,41.813768537],[-71.44032353,41.813771537],[-71.44017053,41.813790537],[-71.44001053,41.813824536],[-71.43994153,41.814175537],[-71.43987353,41.814475537],[-71.43986553,41.814492537],[-71.43983853,41.814609537],[-71.43961353,41.815590537],[-71.43956853,41.815850537],[-71.43955253,41.815976537],[-71.43960653,41.815995537],[-71.439713529,41.816033537],[-71.43987553,41.816087537],[-71.43992253,41.816103537],[-71.44059053,41.816330537],[-71.44093353,41.816414538],[-71.44127753,41.816521537],[-71.44162853,41.816574537],[-71.44186453,41.816605538],[-71.442047531,41.816636537],[-71.442245531,41.816670537],[-71.44275753,41.816735537],[-71.442818531,41.816738537],[-71.442932531,41.816750537],[-71.443199531,41.816769537],[-71.443329531,41.816826537],[-71.443405531,41.816876537],[-71.443466531,41.816944537],[-71.443504531,41.817040537],[-71.443558531,41.817089537],[-71.443619531,41.817143537],[-71.443633531,41.817171538],[-71.443642531,41.817189538],[-71.443701531,41.817235537],[-71.444107531,41.817547537],[-71.444649531,41.817959537],[-71.445374532,41.818520538],[-71.445656532,41.818749538],[-71.445808532,41.818871538],[-71.445953532,41.818997538],[-71.446152532,41.819268538],[-71.446213532,41.819352538],[-71.446457533,41.819703538],[-71.446533532,41.819779538],[-71.446869532,41.820130538],[-71.446907532,41.820164538],[-71.446999533,41.820244538],[-71.447754533,41.820908538],[-71.447800533,41.820942538],[-71.448425533,41.821404538],[-71.448631533,41.821553538],[-71.449081533,41.821888538],[-71.449463533,41.822174538],[-71.449936533,41.821820538],[-71.449511533,41.821400538],[-71.449776533,41.821217538],[-71.450119534,41.820950538],[-71.450134533,41.820889538],[-71.450761534,41.820597538],[-71.450886533,41.820547538],[-71.451012534,41.820498538],[-71.451057534,41.820522538],[-71.451384534,41.820738538],[-71.451546534,41.820861537],[-71.451681534,41.820973538],[-71.451971534,41.821174537],[-71.452155534,41.821270538],[-71.452286534,41.821377538],[-71.452509534,41.821504538],[-71.453143535,41.821673538],[-71.453532535,41.821814538],[-71.453700534,41.821847538],[-71.453884535,41.821823538],[-71.454057535,41.821769538],[-71.454185535,41.821712538],[-71.454339534,41.821745538],[-71.454651535,41.821812538],[-71.456587535,41.822150538],[-71.457782536,41.822358538],[-71.459223537,41.822608538]]]]}}"}, +{"type": "precinct", "typeId": 2868, "areaId": 25945, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":284,\"NAME\":\"2868\",\"SHAPE_Length\":0.039025972050178,\"SHAPE_Area\":-6.7295109844488e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.415802521,41.809307537],[-71.415665522,41.809964537],[-71.415497521,41.810814537],[-71.415268522,41.811856537],[-71.415192522,41.812291537],[-71.415169522,41.812455538],[-71.415161521,41.812558537],[-71.415337521,41.812619537],[-71.415985522,41.812947537],[-71.416687522,41.813328538],[-71.417374522,41.813694537],[-71.417030523,41.814045538],[-71.416779522,41.814309537],[-71.416000522,41.815121538],[-71.416702522,41.815503538],[-71.417023522,41.815663538],[-71.417076522,41.815705538],[-71.417145523,41.815792537],[-71.417496523,41.816265538],[-71.417946523,41.816925538],[-71.418343523,41.817566538],[-71.418411523,41.817662539],[-71.418495523,41.817734538],[-71.418594523,41.817799538],[-71.418709523,41.817849538],[-71.418816523,41.817875539],[-71.419029523,41.817902538],[-71.419380523,41.817921538],[-71.419685523,41.817940538],[-71.419769523,41.817952539],[-71.419876524,41.817994538],[-71.420029524,41.818097538],[-71.420174523,41.818230538],[-71.420569524,41.818046538],[-71.420935523,41.817877538],[-71.421135524,41.817784538],[-71.421349524,41.817688538],[-71.421459523,41.817642538],[-71.421577524,41.817601538],[-71.421789523,41.817525538],[-71.421898524,41.817486538],[-71.421997524,41.817459538],[-71.422333524,41.817421538],[-71.423584524,41.817318538],[-71.424637524,41.817246538],[-71.425034525,41.817215537],[-71.425148525,41.817208538],[-71.425537525,41.817185538],[-71.426132526,41.817147538],[-71.426254526,41.817139538],[-71.427185526,41.817059537],[-71.428406526,41.816925537],[-71.428062526,41.816201537],[-71.427940526,41.815953537],[-71.427605525,41.815300538],[-71.427216525,41.814465537],[-71.427167526,41.814378537],[-71.426933526,41.813965537],[-71.426552525,41.813458537],[-71.426468526,41.813351537],[-71.426147525,41.813004537],[-71.426109525,41.812977537],[-71.426041525,41.812924537],[-71.425926525,41.812851537],[-71.425895525,41.812839537],[-71.425789525,41.812794537],[-71.425652525,41.812764537],[-71.425461525,41.812748537],[-71.425117525,41.812752537],[-71.423882524,41.812775537],[-71.423531524,41.812779537],[-71.422791524,41.812783537],[-71.422173524,41.812775537],[-71.422035524,41.812733537],[-71.421928523,41.812798537],[-71.421837524,41.812695537],[-71.421643524,41.812220537],[-71.421631524,41.812191537],[-71.421547524,41.811848537],[-71.421547524,41.811829537],[-71.421272523,41.810761536],[-71.421082524,41.810040536],[-71.420774524,41.810116536],[-71.420860523,41.810025537],[-71.420395523,41.809967537],[-71.419693523,41.809864536],[-71.418869522,41.809731536],[-71.417862522,41.809582537],[-71.417046522,41.809468537],[-71.416435522,41.809365537],[-71.416191522,41.809330537],[-71.415802521,41.809307537]]]]}}"}, +{"type": "precinct", "typeId": 2869, "areaId": 25946, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":285,\"NAME\":\"2869\",\"SHAPE_Length\":0.022921593582044,\"SHAPE_Area\":-1.5915204821025e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.446205531,41.815138537],[-71.446288532,41.815208537],[-71.447408532,41.816009537],[-71.449114533,41.817048537],[-71.449214533,41.817142537],[-71.449293533,41.817216537],[-71.449471533,41.817231537],[-71.449631533,41.817250537],[-71.449898533,41.817276537],[-71.450752533,41.817360537],[-71.452072534,41.817479537],[-71.452171534,41.817486538],[-71.453804535,41.817658537],[-71.453949534,41.817685537],[-71.454102535,41.817711537],[-71.454720535,41.817852537],[-71.455315535,41.817955537],[-71.455505535,41.817398537],[-71.455536535,41.817292537],[-71.455750535,41.816563537],[-71.455811535,41.816410537],[-71.455902535,41.816151537],[-71.455910535,41.816117537],[-71.455910535,41.816075537],[-71.455879535,41.815880537],[-71.455780535,41.815266536],[-71.453888535,41.815438537],[-71.452644534,41.815567537],[-71.451195534,41.815716537],[-71.450668534,41.815766537],[-71.450104534,41.815834537],[-71.450104534,41.815766537],[-71.449997533,41.815236537],[-71.449982533,41.815140537],[-71.448761532,41.815274537],[-71.447403532,41.815403537],[-71.447327532,41.815403537],[-71.447243532,41.815396537],[-71.447159533,41.815380537],[-71.446991532,41.815335537],[-71.446831532,41.815270537],[-71.446671532,41.815182537],[-71.446411532,41.815060537],[-71.446327532,41.815022537],[-71.446205531,41.815138537]]]]}}"}, +{"type": "precinct", "typeId": 2870, "areaId": 25947, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":286,\"NAME\":\"2870\",\"SHAPE_Length\":0.042637895138574,\"SHAPE_Area\":-6.5078184678929e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.446205531,41.815138537],[-71.446327532,41.815022537],[-71.446411532,41.815060537],[-71.446671532,41.815182537],[-71.446831532,41.815270537],[-71.446991532,41.815335537],[-71.447159533,41.815380537],[-71.447243532,41.815396537],[-71.447327532,41.815403537],[-71.447403532,41.815403537],[-71.448761532,41.815274537],[-71.449982533,41.815140537],[-71.449928533,41.814827537],[-71.449860533,41.814473537],[-71.448631532,41.814591537],[-71.448502533,41.813790536],[-71.448383533,41.813793537],[-71.448242532,41.813790536],[-71.448105532,41.813771536],[-71.448044532,41.813744536],[-71.447937533,41.813706536],[-71.448364533,41.813351537],[-71.448074533,41.813084536],[-71.447502532,41.812561536],[-71.448410532,41.812313536],[-71.449020532,41.812142537],[-71.449944533,41.811928537],[-71.449638532,41.811272536],[-71.449348532,41.810639536],[-71.449059532,41.809998536],[-71.449043532,41.809971536],[-71.448761532,41.809369536],[-71.448456532,41.808735535],[-71.448151532,41.808106536],[-71.447845532,41.807465535],[-71.447548532,41.806836536],[-71.447533531,41.806664535],[-71.447533531,41.806595535],[-71.445007531,41.806790535],[-71.444681531,41.806822535],[-71.44367753,41.806918535],[-71.44290253,41.807003535],[-71.44266553,41.807028536],[-71.44225653,41.806008535],[-71.44218253,41.805825535],[-71.44131853,41.804758535],[-71.441295529,41.804722535],[-71.44110653,41.804480535],[-71.44087553,41.804234535],[-71.440541529,41.803954534],[-71.440555529,41.804020535],[-71.440600529,41.804244535],[-71.440651529,41.804495535],[-71.44065953,41.804512535],[-71.440750529,41.804974535],[-71.440842529,41.805355535],[-71.44085753,41.805443535],[-71.440944529,41.805982535],[-71.44097153,41.806229535],[-71.44098753,41.806530535],[-71.44099453,41.806775536],[-71.440979529,41.807022535],[-71.44094853,41.807389535],[-71.44081953,41.808575535],[-71.44080953,41.808649536],[-71.440628529,41.810299536],[-71.440590529,41.810791536],[-71.44058253,41.811085536],[-71.44056753,41.811222536],[-71.440453529,41.811684536],[-71.44036953,41.812149536],[-71.44022453,41.812886536],[-71.44007953,41.813515537],[-71.44001053,41.813824536],[-71.44017053,41.813790537],[-71.44032353,41.813771537],[-71.44038453,41.813768537],[-71.440434529,41.813766536],[-71.44059053,41.813763536],[-71.44076553,41.813771537],[-71.44107153,41.813801537],[-71.44118153,41.813807537],[-71.44142253,41.813820537],[-71.44146753,41.813832537],[-71.44184153,41.813874537],[-71.442421531,41.813950537],[-71.442535531,41.813961536],[-71.44285653,41.813958536],[-71.443138531,41.813950537],[-71.443520531,41.813927537],[-71.443794531,41.813923536],[-71.444038531,41.813954537],[-71.444153531,41.813980536],[-71.444275531,41.814015537],[-71.444504531,41.814103537],[-71.444611531,41.814152537],[-71.444648531,41.814174536],[-71.444804531,41.814265537],[-71.444916532,41.814331536],[-71.445122531,41.814469537],[-71.445244532,41.814556537],[-71.446106532,41.815224537],[-71.446159532,41.815182537],[-71.446205531,41.815138537]]]]}}"}, +{"type": "precinct", "typeId": 2871, "areaId": 25955, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":294,\"NAME\":\"2871\",\"SHAPE_Length\":0.030683972907654,\"SHAPE_Area\":-4.3584280820927e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.419556522,41.786118532],[-71.419669521,41.786334532],[-71.419792522,41.786568532],[-71.420063522,41.787041532],[-71.420131522,41.786948532],[-71.420286522,41.786739532],[-71.420510522,41.786352532],[-71.420527522,41.786325532],[-71.420766522,41.785944532],[-71.420801522,41.785827532],[-71.421223522,41.784424532],[-71.421604522,41.783707532],[-71.421979522,41.783003532],[-71.422291522,41.782415531],[-71.422337522,41.782284532],[-71.422348522,41.782255531],[-71.422361522,41.782221531],[-71.422481522,41.781890531],[-71.422523522,41.781776531],[-71.422553522,41.781693531],[-71.422643523,41.781445531],[-71.422661522,41.781414531],[-71.422664523,41.781390531],[-71.422957523,41.78059153],[-71.423064522,41.78029953],[-71.423152523,41.780019531],[-71.423269523,41.779606531],[-71.423402523,41.77907053],[-71.423521523,41.77856653],[-71.423767522,41.77765453],[-71.423887523,41.77729053],[-71.423846522,41.77728253],[-71.423653522,41.77724553],[-71.423050522,41.77712753],[-71.422600522,41.777039531],[-71.421898522,41.77688653],[-71.421394522,41.77679553],[-71.421356522,41.77677653],[-71.420250521,41.776551531],[-71.420221521,41.77654453],[-71.419346521,41.77613153],[-71.41909852,41.77603653],[-71.41880752,41.77581753],[-71.418762521,41.77580353],[-71.41855552,41.77571253],[-71.41844252,41.77566253],[-71.41828252,41.77557053],[-71.41819052,41.77557053],[-71.41816652,41.77557353],[-71.418083521,41.77560153],[-71.418037521,41.77565053],[-71.41801552,41.77568553],[-71.417709521,41.776299531],[-71.41768652,41.776356531],[-71.417496521,41.77676053],[-71.417282521,41.77716153],[-71.41707652,41.77757353],[-71.41685552,41.77798553],[-71.41672652,41.778241531],[-71.41667252,41.778347531],[-71.416581521,41.77860453],[-71.41655052,41.778691531],[-71.41651952,41.77903453],[-71.41652752,41.779389531],[-71.41662652,41.779801531],[-71.41681752,41.780182531],[-71.416908521,41.780308531],[-71.41695452,41.780358531],[-71.416985521,41.780407531],[-71.41709952,41.780546531],[-71.41732352,41.780775531],[-71.41735152,41.780804531],[-71.417664521,41.781029531],[-71.418022521,41.781231531],[-71.418192521,41.781309531],[-71.418373521,41.781392531],[-71.418475521,41.781426531],[-71.418732521,41.781510531],[-71.419121521,41.781605531],[-71.419541521,41.781685531],[-71.419533521,41.781713531],[-71.419518521,41.781762531],[-71.419342521,41.782219531],[-71.419174522,41.782666531],[-71.419083521,41.782917531],[-71.418884521,41.783471532],[-71.418800521,41.783795531],[-71.418770521,41.784092532],[-71.418770521,41.784291532],[-71.418770521,41.784371532],[-71.418816521,41.784653532],[-71.418945521,41.785042532],[-71.419227521,41.785538532],[-71.419556522,41.786118532]]]]}}"}, +{"type": "precinct", "typeId": 2872, "areaId": 25956, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":295,\"NAME\":\"2872\",\"SHAPE_Length\":0.061741580247705,\"SHAPE_Area\":-0.00017021149793856},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.41394852,41.788746532],[-71.41407852,41.788643533],[-71.41420052,41.788514533],[-71.41426852,41.788426533],[-71.41478052,41.788647532],[-71.41505452,41.788796533],[-71.41527652,41.788899532],[-71.415703521,41.789200533],[-71.41578752,41.789360533],[-71.415871521,41.789540533],[-71.415909521,41.789654533],[-71.416084521,41.789624533],[-71.416298521,41.789605533],[-71.416435521,41.789597533],[-71.416496521,41.789563532],[-71.416588521,41.789463533],[-71.416626521,41.789360533],[-71.416649521,41.789238533],[-71.41670252,41.789151533],[-71.416840521,41.789070533],[-71.417099521,41.788987533],[-71.417274521,41.788979532],[-71.417412521,41.788926533],[-71.417488521,41.788826532],[-71.417572521,41.788659533],[-71.417648521,41.788453532],[-71.417671521,41.788342533],[-71.417648521,41.788227533],[-71.417648521,41.788159532],[-71.417603521,41.788098532],[-71.417442521,41.788037533],[-71.417366521,41.787949532],[-71.417358521,41.787896533],[-71.417290521,41.787823533],[-71.417190521,41.787798533],[-71.417434521,41.787516532],[-71.417489521,41.787302532],[-71.417473521,41.787109532],[-71.417351521,41.786972532],[-71.41722852,41.786858532],[-71.417107521,41.786680532],[-71.417216521,41.786530532],[-71.417475521,41.786333532],[-71.417572521,41.786404532],[-71.417679521,41.786431532],[-71.417778521,41.786435532],[-71.417915521,41.786412532],[-71.418030521,41.786370532],[-71.418137521,41.786316532],[-71.418228521,41.786255532],[-71.418617521,41.785977532],[-71.418694521,41.786045532],[-71.418800521,41.786126532],[-71.418907521,41.786183532],[-71.419044521,41.786221532],[-71.419113522,41.786217532],[-71.419182521,41.786217532],[-71.419296521,41.786194532],[-71.419556522,41.786118532],[-71.419227521,41.785538532],[-71.418945521,41.785042532],[-71.418816521,41.784653532],[-71.418770521,41.784371532],[-71.418770521,41.784291532],[-71.418770521,41.784092532],[-71.418800521,41.783795531],[-71.418884521,41.783471532],[-71.419083521,41.782917531],[-71.419174522,41.782666531],[-71.419342521,41.782219531],[-71.419518521,41.781762531],[-71.419533521,41.781713531],[-71.419541521,41.781685531],[-71.419121521,41.781605531],[-71.418732521,41.781510531],[-71.418475521,41.781426531],[-71.418373521,41.781392531],[-71.418192521,41.781309531],[-71.418022521,41.781231531],[-71.417664521,41.781029531],[-71.41735152,41.780804531],[-71.41732352,41.780775531],[-71.41709952,41.780546531],[-71.416985521,41.780407531],[-71.41695452,41.780358531],[-71.416908521,41.780308531],[-71.41681752,41.780182531],[-71.41662652,41.779801531],[-71.41652752,41.779389531],[-71.41651952,41.77903453],[-71.41655052,41.778691531],[-71.416581521,41.77860453],[-71.41667252,41.778347531],[-71.41672652,41.778241531],[-71.41685552,41.77798553],[-71.41707652,41.77757353],[-71.417282521,41.77716153],[-71.417496521,41.77676053],[-71.41768652,41.776356531],[-71.417709521,41.776299531],[-71.41801552,41.77568553],[-71.418037521,41.77565053],[-71.418083521,41.77560153],[-71.41816652,41.77557353],[-71.41819052,41.77557053],[-71.41828252,41.77557053],[-71.41799252,41.77539953],[-71.41780152,41.77525753],[-71.41748852,41.77501753],[-71.41742752,41.77497953],[-71.41711452,41.77476253],[-71.41701452,41.77468953],[-71.41697752,41.774662529],[-71.41691652,41.77462453],[-71.41675252,41.774507529],[-71.416504519,41.774331529],[-71.41647352,41.774311529],[-71.41610752,41.774079529],[-71.41597052,41.77399153],[-71.41555852,41.773709529],[-71.415161519,41.773453529],[-71.41496352,41.773339529],[-71.414841519,41.77326653],[-71.414795519,41.773240529],[-71.414520519,41.77311753],[-71.414391519,41.773087529],[-71.414162519,41.77303053],[-71.414093519,41.77301753],[-71.413651519,41.77293853],[-71.413285519,41.77286253],[-71.413246519,41.772854529],[-71.413211518,41.77284253],[-71.412958518,41.772752529],[-71.412804518,41.772698529],[-71.412666518,41.77265253],[-71.412046518,41.772422529],[-71.411083518,41.773044529],[-71.410630518,41.77332153],[-71.410352518,41.77360253],[-71.410000518,41.77390853],[-71.409904518,41.77415153],[-71.409480518,41.77493753],[-71.409371517,41.77511353],[-71.409222518,41.775516531],[-71.409187518,41.77570053],[-71.409175517,41.77574453],[-71.409104518,41.776390531],[-71.408590517,41.77795953],[-71.408211518,41.777913531],[-71.406708517,41.778324531],[-71.406036516,41.778855531],[-71.405797517,41.779381531],[-71.405447516,41.779239531],[-71.405021516,41.779504531],[-71.404060516,41.780102532],[-71.403625516,41.780575531],[-71.403069515,41.781350532],[-71.403053516,41.782368532],[-71.403127516,41.783738532],[-71.403441516,41.784338532],[-71.403802516,41.785024532],[-71.403900517,41.785208533],[-71.403896516,41.785860532],[-71.404541517,41.785855533],[-71.405777517,41.785847532],[-71.405869517,41.785847532],[-71.406036517,41.785870533],[-71.406075517,41.785889533],[-71.406158517,41.785916532],[-71.406235517,41.785927533],[-71.406342518,41.785977532],[-71.406441517,41.786038532],[-71.406509517,41.786099532],[-71.406525517,41.786118532],[-71.406586517,41.786229532],[-71.406609517,41.786347532],[-71.406639517,41.786549533],[-71.406700517,41.786637532],[-71.406769518,41.786721532],[-71.406853517,41.786763533],[-71.406960518,41.786797532],[-71.407059518,41.786801533],[-71.407173518,41.786789533],[-71.407295518,41.786751533],[-71.407654517,41.786671533],[-71.407806518,41.786686533],[-71.407990518,41.786717532],[-71.408211518,41.786797532],[-71.408440518,41.786873532],[-71.408684518,41.786900533],[-71.409187518,41.786900533],[-71.409363519,41.786915532],[-71.409515518,41.786957532],[-71.409920518,41.787083533],[-71.410118519,41.787136533],[-71.410255519,41.787140533],[-71.410439518,41.787136533],[-71.410645519,41.787091532],[-71.410988518,41.786961533],[-71.411377519,41.786770533],[-71.411682519,41.786644532],[-71.411720519,41.786621532],[-71.411919519,41.786698532],[-71.412178519,41.786785533],[-71.412361519,41.786908533],[-71.41248352,41.787026532],[-71.412514519,41.787201532],[-71.41248352,41.787415533],[-71.412439519,41.787507533],[-71.412403519,41.787583533],[-71.412354519,41.787686533],[-71.41291052,41.787476532],[-71.41308352,41.788213533],[-71.412962519,41.788276532],[-71.41316752,41.788347533],[-71.41314752,41.788445533],[-71.413170519,41.788529532],[-71.41320052,41.788613533],[-71.413254519,41.788689533],[-71.41330552,41.788731533],[-71.413368519,41.788765532],[-71.41342252,41.788788533],[-71.41353652,41.788811533],[-71.413658519,41.788807533],[-71.41379052,41.788779533],[-71.41394852,41.788746532]]]]}}"}, +{"type": "precinct", "typeId": 2873, "areaId": 25948, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":287,\"NAME\":\"2873\",\"SHAPE_Length\":0.014376690728912,\"SHAPE_Area\":-7.6954235544299e-6},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.435463528,41.811077536],[-71.435898528,41.811089537],[-71.437286529,41.811169536],[-71.438225529,41.811215536],[-71.439148529,41.811257536],[-71.44000253,41.811283537],[-71.44003353,41.810959536],[-71.44001853,41.810601537],[-71.44000253,41.810379536],[-71.439987529,41.810048536],[-71.439987529,41.809925536],[-71.439987529,41.809845536],[-71.440033529,41.809536536],[-71.440048529,41.809384536],[-71.44005653,41.809323536],[-71.440086529,41.809178536],[-71.44017053,41.809101536],[-71.44005653,41.808957536],[-71.44000253,41.808918536],[-71.439891529,41.808895536],[-71.440186529,41.808812536],[-71.439835529,41.808884536],[-71.439575529,41.808949536],[-71.43933853,41.809031536],[-71.438692529,41.809217536],[-71.438265529,41.809332536],[-71.438373529,41.809336536],[-71.438354529,41.809605536],[-71.438324529,41.809849536],[-71.437950529,41.809826536],[-71.437614529,41.809815536],[-71.437447529,41.809746536],[-71.437157528,41.809597536],[-71.435501528,41.810044536],[-71.435127528,41.810135536],[-71.435204528,41.810376536],[-71.435318528,41.810681536],[-71.435463528,41.811077536]]]]}}"}, +{"type": "precinct", "typeId": 2874, "areaId": 25949, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":288,\"NAME\":\"2874\",\"SHAPE_Length\":0.075171428648671,\"SHAPE_Area\":-0.00014890499996163},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.459468536,41.822650538],[-71.460487537,41.822827538],[-71.460434537,41.823075538],[-71.460342537,41.823246538],[-71.460251537,41.823371538],[-71.460429537,41.823450538],[-71.460684537,41.823606538],[-71.460704537,41.823618538],[-71.460888537,41.823737538],[-71.461078537,41.823841538],[-71.461248537,41.823926538],[-71.461450537,41.824016538],[-71.461825538,41.824229538],[-71.462002537,41.824302538],[-71.462171538,41.824359538],[-71.462206538,41.824380538],[-71.462591537,41.824336538],[-71.462909538,41.824299538],[-71.463886538,41.824228538],[-71.464057538,41.824216538],[-71.464602538,41.824161538],[-71.464765539,41.824145538],[-71.465076539,41.824109538],[-71.465271539,41.824105538],[-71.466314539,41.824052538],[-71.466483539,41.824044538],[-71.467623539,41.823977538],[-71.47030954,41.823819538],[-71.47117654,41.823769537],[-71.472013541,41.823719538],[-71.471862541,41.823467538],[-71.471180541,41.822327537],[-71.47104154,41.821983537],[-71.47105254,41.821982537],[-71.47101854,41.821927538],[-71.47097454,41.821790538],[-71.47094354,41.821694538],[-71.47055854,41.820870537],[-71.47054254,41.820831537],[-71.47052054,41.820782538],[-71.46989454,41.819855537],[-71.46982054,41.819602537],[-71.46955954,41.818913537],[-71.46946354,41.818299537],[-71.469397539,41.818007537],[-71.46927054,41.817824536],[-71.468849539,41.817337536],[-71.46868954,41.816834537],[-71.468502539,41.816328536],[-71.468327539,41.815998536],[-71.46830054,41.815738536],[-71.468208539,41.815594537],[-71.468193539,41.815453536],[-71.468178539,41.815312536],[-71.468163539,41.815239536],[-71.468155539,41.815178536],[-71.468140539,41.815113536],[-71.468132539,41.815049537],[-71.468109539,41.814946536],[-71.468094539,41.814846536],[-71.468056539,41.814743536],[-71.468025539,41.814679536],[-71.467949539,41.814553536],[-71.467834538,41.814309536],[-71.468097539,41.813955536],[-71.468049539,41.813744536],[-71.467867539,41.813314535],[-71.467627539,41.813339536],[-71.467407538,41.813324536],[-71.467113538,41.812915536],[-71.466842538,41.812314536],[-71.466372538,41.810899535],[-71.466603539,41.810708535],[-71.468703539,41.810608535],[-71.467782538,41.808884535],[-71.467082538,41.807936535],[-71.466945538,41.807964535],[-71.466803538,41.807808535],[-71.467703538,41.807308534],[-71.467903539,41.806308535],[-71.469103539,41.806108534],[-71.468716538,41.805138534],[-71.467862538,41.805466534],[-71.466727538,41.804856534],[-71.466644538,41.804707534],[-71.466507537,41.804783534],[-71.466385538,41.804856534],[-71.466278538,41.804913534],[-71.466179538,41.804974534],[-71.465935538,41.805138535],[-71.465759538,41.805264534],[-71.465057538,41.805748534],[-71.464920538,41.805882535],[-71.464836537,41.805958535],[-71.464745538,41.806050535],[-71.464661537,41.806168535],[-71.464172537,41.807026535],[-71.463638538,41.807949535],[-71.463509537,41.808178535],[-71.463242537,41.808632535],[-71.463127537,41.808838535],[-71.462784537,41.809418535],[-71.462624537,41.809693535],[-71.462555537,41.809834535],[-71.462494537,41.809986535],[-71.462440537,41.810105535],[-71.462195537,41.810699536],[-71.461655536,41.812008535],[-71.461586537,41.812161536],[-71.461472537,41.812195536],[-71.461288537,41.812264536],[-71.461113536,41.812298536],[-71.460945537,41.812333536],[-71.460602536,41.812390536],[-71.460381537,41.812424536],[-71.460321537,41.812433536],[-71.460228536,41.812447536],[-71.460115536,41.812466536],[-71.458969536,41.812664536],[-71.458946536,41.812840536],[-71.459251536,41.813767536],[-71.460381537,41.817036537],[-71.461029537,41.818913537],[-71.460716536,41.818867537],[-71.460587537,41.818852537],[-71.460075536,41.818779537],[-71.459732537,41.818734538],[-71.459122536,41.818642537],[-71.458740536,41.818585537],[-71.457932536,41.818463537],[-71.457397536,41.818360537],[-71.456993535,41.818283537],[-71.456764535,41.818882537],[-71.456749536,41.818943537],[-71.456688535,41.819138537],[-71.456627535,41.819363537],[-71.456637536,41.819397538],[-71.456635536,41.819420537],[-71.456673536,41.819451538],[-71.456726535,41.819489538],[-71.457481535,41.819668538],[-71.457596535,41.819683537],[-71.457947536,41.819733537],[-71.458252536,41.819786538],[-71.458397536,41.819798537],[-71.458382536,41.819889537],[-71.458313536,41.820134538],[-71.458313536,41.820275538],[-71.458405536,41.820355537],[-71.458481536,41.820374537],[-71.458572536,41.820534537],[-71.458633536,41.820656538],[-71.458687536,41.820782538],[-71.458717536,41.820916538],[-71.458725536,41.821045538],[-71.458748536,41.821179537],[-71.458740536,41.821301538],[-71.458679536,41.821427537],[-71.458580536,41.821476538],[-71.458351536,41.821480538],[-71.458092536,41.821415538],[-71.457916536,41.821354538],[-71.457726536,41.821282538],[-71.457390536,41.821114538],[-71.457253536,41.821034538],[-71.457191536,41.820988538],[-71.457335536,41.821142538],[-71.457769536,41.821343538],[-71.458427536,41.821608538],[-71.458974537,41.821417538],[-71.459132537,41.821201538],[-71.459801536,41.821434538],[-71.459197536,41.821361538],[-71.458831536,41.821978538],[-71.458925536,41.822020538],[-71.459072537,41.822134538],[-71.459278536,41.822384538],[-71.459347537,41.822480537],[-71.459468536,41.822650538]]]]}}"}, +{"type": "precinct", "typeId": 2875, "areaId": 25951, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":290,\"NAME\":\"2875\",\"SHAPE_Length\":0.047513220393636,\"SHAPE_Area\":-7.3617886656469e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.456993535,41.818283537],[-71.457397536,41.818360537],[-71.457932536,41.818463537],[-71.458740536,41.818585537],[-71.459122536,41.818642537],[-71.459732537,41.818734538],[-71.460075536,41.818779537],[-71.460587537,41.818852537],[-71.460716536,41.818867537],[-71.461029537,41.818913537],[-71.460381537,41.817036537],[-71.459251536,41.813767536],[-71.458946536,41.812840536],[-71.458969536,41.812664536],[-71.460115536,41.812466536],[-71.460228536,41.812447536],[-71.460321537,41.812433536],[-71.460381537,41.812424536],[-71.460602536,41.812390536],[-71.460945537,41.812333536],[-71.461113536,41.812298536],[-71.461288537,41.812264536],[-71.461472537,41.812195536],[-71.461586537,41.812161536],[-71.461655536,41.812008535],[-71.462195537,41.810699536],[-71.462440537,41.810105535],[-71.462494537,41.809986535],[-71.461327536,41.809506536],[-71.460640536,41.809227535],[-71.459465536,41.808743535],[-71.458710535,41.808430535],[-71.459076535,41.807900535],[-71.459274535,41.807606535],[-71.459480536,41.807335535],[-71.457870535,41.806679535],[-71.457138535,41.806397535],[-71.457123535,41.806416535],[-71.456764535,41.806908535],[-71.456741535,41.806939535],[-71.456398535,41.807431535],[-71.455200534,41.807389535],[-71.454124534,41.807358535],[-71.452713534,41.807309535],[-71.452728534,41.807358535],[-71.453026534,41.808251535],[-71.453194534,41.808773535],[-71.453362533,41.809292536],[-71.453537534,41.809784535],[-71.453773534,41.810189536],[-71.453972534,41.810528535],[-71.454094534,41.810734536],[-71.454445534,41.811417536],[-71.453598534,41.811642536],[-71.452759533,41.811867536],[-71.453522534,41.813458536],[-71.452866534,41.813534536],[-71.452637534,41.813553536],[-71.452385534,41.813580537],[-71.452293533,41.813584537],[-71.452408533,41.814206537],[-71.452522534,41.814888537],[-71.452644534,41.815567537],[-71.453888535,41.815438537],[-71.455780535,41.815266536],[-71.455879535,41.815880537],[-71.455910535,41.816075537],[-71.455910535,41.816117537],[-71.455902535,41.816151537],[-71.455811535,41.816410537],[-71.455750535,41.816563537],[-71.455536535,41.817292537],[-71.455505535,41.817398537],[-71.455315535,41.817955537],[-71.455826535,41.818047537],[-71.456726535,41.818230537],[-71.456993535,41.818283537]]]]}}"}, +{"type": "precinct", "typeId": 2876, "areaId": 25950, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":289,\"NAME\":\"2876\",\"SHAPE_Length\":0.032147816707946,\"SHAPE_Area\":-3.6795375744111e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.449982533,41.815140537],[-71.449997533,41.815236537],[-71.450104534,41.815766537],[-71.450104534,41.815834537],[-71.450668534,41.815766537],[-71.451195534,41.815716537],[-71.452644534,41.815567537],[-71.452522534,41.814888537],[-71.452408533,41.814206537],[-71.452293533,41.813584537],[-71.452385534,41.813580537],[-71.452637534,41.813553536],[-71.452866534,41.813534536],[-71.453522534,41.813458536],[-71.452759533,41.811867536],[-71.453598534,41.811642536],[-71.454445534,41.811417536],[-71.454094534,41.810734536],[-71.453972534,41.810528535],[-71.453773534,41.810189536],[-71.453537534,41.809784535],[-71.453362533,41.809292536],[-71.453194534,41.808773535],[-71.453026534,41.808251535],[-71.452728534,41.807358535],[-71.451775533,41.807331535],[-71.451180533,41.807320535],[-71.450592533,41.806736535],[-71.447845532,41.807465535],[-71.448151532,41.808106536],[-71.448456532,41.808735535],[-71.448761532,41.809369536],[-71.449043532,41.809971536],[-71.449059532,41.809998536],[-71.449348532,41.810639536],[-71.449638532,41.811272536],[-71.449944533,41.811928537],[-71.449020532,41.812142537],[-71.448410532,41.812313536],[-71.447502532,41.812561536],[-71.448074533,41.813084536],[-71.448364533,41.813351537],[-71.447937533,41.813706536],[-71.448044532,41.813744536],[-71.448105532,41.813771536],[-71.448242532,41.813790536],[-71.448383533,41.813793537],[-71.448502533,41.813790536],[-71.448631532,41.814591537],[-71.449860533,41.814473537],[-71.449928533,41.814827537],[-71.449982533,41.815140537]]]]}}"}, +{"type": "precinct", "typeId": 2877, "areaId": 25952, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":291,\"NAME\":\"2877\",\"SHAPE_Length\":0.032718027561659,\"SHAPE_Area\":-2.9089987841949e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.452713534,41.807309535],[-71.454124534,41.807358535],[-71.455200534,41.807389535],[-71.456398535,41.807431535],[-71.456741535,41.806939535],[-71.456764535,41.806908535],[-71.457123535,41.806416535],[-71.457138535,41.806397535],[-71.457870535,41.806679535],[-71.459480536,41.807335535],[-71.459274535,41.807606535],[-71.459076535,41.807900535],[-71.458710535,41.808430535],[-71.459465536,41.808743535],[-71.460640536,41.809227535],[-71.461327536,41.809506536],[-71.462494537,41.809986535],[-71.462555537,41.809834535],[-71.462624537,41.809693535],[-71.462784537,41.809418535],[-71.463127537,41.808838535],[-71.463242537,41.808632535],[-71.463509537,41.808178535],[-71.463638538,41.807949535],[-71.464172537,41.807026535],[-71.464661537,41.806168535],[-71.464745538,41.806050535],[-71.464836537,41.805958535],[-71.464920538,41.805882535],[-71.464405537,41.805129534],[-71.464725537,41.804972534],[-71.464583537,41.804999534],[-71.464340538,41.805001535],[-71.464085537,41.804987534],[-71.463966537,41.805003535],[-71.463843537,41.805031534],[-71.463716537,41.805049534],[-71.463665537,41.805054534],[-71.463353537,41.805086534],[-71.463246537,41.805102535],[-71.463151537,41.805123534],[-71.463081537,41.805147534],[-71.463008537,41.805183534],[-71.462878537,41.805171534],[-71.462797537,41.805140535],[-71.462627536,41.805059535],[-71.462448537,41.804993534],[-71.462361536,41.804974534],[-71.462306537,41.804973534],[-71.462282536,41.804990534],[-71.462069536,41.805070534],[-71.461334536,41.805329535],[-71.459473535,41.805378534],[-71.457873535,41.805490535],[-71.457770535,41.805477534],[-71.457214535,41.805626535],[-71.454941535,41.805890535],[-71.452332533,41.806195535],[-71.452354533,41.806267535],[-71.452522534,41.806748535],[-71.452545533,41.806797535],[-71.452713534,41.807309535]]]]}}"}, +{"type": "precinct", "typeId": 2878, "areaId": 25953, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":292,\"NAME\":\"2878\",\"SHAPE_Length\":0.012201607659958,\"SHAPE_Area\":-3.852143571448e-6},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.447533531,41.806595535],[-71.447533531,41.806664535],[-71.447548532,41.806836536],[-71.447845532,41.807465535],[-71.450592533,41.806736535],[-71.451180533,41.807320535],[-71.451775533,41.807331535],[-71.452728534,41.807358535],[-71.452713534,41.807309535],[-71.452545533,41.806797535],[-71.452522534,41.806748535],[-71.452354533,41.806267535],[-71.452332533,41.806195535],[-71.452205533,41.806207535],[-71.451736533,41.806256535],[-71.450211533,41.806359535],[-71.448891532,41.806485535],[-71.448161532,41.806544535],[-71.447533531,41.806595535]]]]}}"}, +{"type": "precinct", "typeId": 2879, "areaId": 26064, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":403,\"NAME\":\"2879\",\"SHAPE_Length\":0.053358469757562,\"SHAPE_Area\":-7.7394752404965e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.40988548,41.794362917],[-71.409767518,41.794266534],[-71.409607519,41.794136534],[-71.409447519,41.794008533],[-71.40988548,41.794362917]]],[[[-71.40988548,41.794362917],[-71.409931519,41.794400534],[-71.410000869,41.794456566],[-71.410097335,41.794534505],[-71.410233519,41.794644534],[-71.40988548,41.794362917]]],[[[-71.401614052,41.808722387],[-71.401686848,41.808711175],[-71.401746492,41.808704983],[-71.401760616,41.808703508],[-71.401760795,41.80871617],[-71.403709517,41.808216537],[-71.404579518,41.807972536],[-71.404762518,41.807927537],[-71.404917518,41.807887537],[-71.405173518,41.807820536],[-71.405319518,41.807782537],[-71.405548518,41.807724537],[-71.407249519,41.807320537],[-71.408783519,41.806958536],[-71.40998152,41.806687536],[-71.41088152,41.806473536],[-71.41143352,41.806342536],[-71.41192652,41.806225536],[-71.412735521,41.806034536],[-71.413109521,41.805947536],[-71.41395652,41.805752536],[-71.414810521,41.805565536],[-71.414642521,41.805169536],[-71.415329521,41.805012536],[-71.416199521,41.804821536],[-71.416031521,41.804406536],[-71.416885522,41.804211536],[-71.416847522,41.804100536],[-71.417953522,41.803849536],[-71.418754522,41.803657536],[-71.419090522,41.803578536],[-71.418907522,41.802983535],[-71.418808522,41.802639535],[-71.418701522,41.802300535],[-71.418648522,41.802155535],[-71.418617522,41.802082535],[-71.418541522,41.801861535],[-71.418442522,41.801663535],[-71.418404522,41.801587535],[-71.418266522,41.801354535],[-71.418129522,41.801152535],[-71.418037522,41.801037535],[-71.417999522,41.800991535],[-71.417877522,41.800866535],[-71.417747522,41.800721535],[-71.417603522,41.800591535],[-71.417435522,41.800457535],[-71.417419521,41.800442535],[-71.416421549,41.800754811],[-71.415757793,41.800960804],[-71.415528911,41.801033283],[-71.415033001,41.801174427],[-71.414689678,41.801273609],[-71.413850443,41.801449086],[-71.413125652,41.801613117],[-71.412400859,41.801780964],[-71.411683695,41.801948811],[-71.411019937,41.802070882],[-71.410234109,41.802246357],[-71.409799234,41.802376058],[-71.409486429,41.802471424],[-71.408784525,41.802639271],[-71.408097879,41.802803303],[-71.407418863,41.80296352],[-71.40668644,41.803135182],[-71.406030312,41.803253438],[-71.404336586,41.803573873],[-71.404138221,41.803615834],[-71.403894081,41.803665424],[-71.403192176,41.803783681],[-71.401857031,41.804058339],[-71.399080387,41.804749159],[-71.399127362,41.804818365],[-71.399174396,41.80486053],[-71.399224215,41.804900526],[-71.399303543,41.804950929],[-71.399385494,41.804985007],[-71.399465716,41.805031158],[-71.399525009,41.805071779],[-71.399585332,41.805118118],[-71.399641894,41.805165849],[-71.399693691,41.805211517],[-71.39974443,41.805250118],[-71.399798931,41.805286527],[-71.3998553,41.80532081],[-71.399929922,41.805371255],[-71.39998846,41.805426077],[-71.400041398,41.805485193],[-71.400082992,41.805547226],[-71.400120854,41.805611429],[-71.400153002,41.805674964],[-71.400171076,41.805747107],[-71.400178865,41.805829281],[-71.40018914,41.805885182],[-71.400199656,41.80596235],[-71.400200676,41.80603393],[-71.400201639,41.806102651],[-71.400199761,41.806170707],[-71.400191195,41.806234572],[-71.400170281,41.806298541],[-71.400157843,41.806356045],[-71.40015867,41.806414132],[-71.400160387,41.806470139],[-71.400194238,41.806519451],[-71.400257516,41.806573522],[-71.40032751,41.806633247],[-71.400390899,41.806694407],[-71.400450361,41.806745662],[-71.400514313,41.806779883],[-71.400574475,41.806813415],[-71.400630174,41.806866839],[-71.400650926,41.806927642],[-71.400649727,41.806971618],[-71.400568534,41.806998441],[-71.400661672,41.80715364],[-71.399357412,41.80750059],[-71.399308689,41.80740315],[-71.398903745,41.807506275],[-71.398930482,41.807589015],[-71.398611619,41.807685766],[-71.39876662,41.807995683],[-71.400844324,41.807476796],[-71.400897099,41.80752386],[-71.401070755,41.807814511],[-71.401088323,41.807839545],[-71.401225975,41.808109011],[-71.401230366,41.808115922],[-71.40127684,41.808187106],[-71.401317571,41.808255542],[-71.401355518,41.808326124],[-71.401387698,41.808389635],[-71.401418875,41.808450356],[-71.401460361,41.808505299],[-71.401505806,41.808569462],[-71.40153974,41.808625863],[-71.401614052,41.808722387]]]]}}"}, +{"type": "precinct", "typeId": 2880, "areaId": 26065, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":404,\"NAME\":\"2880\",\"SHAPE_Length\":0.054276818590516,\"SHAPE_Area\":-0.00011376478508805},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.40505252,41.846768544],[-71.40520552,41.846791544],[-71.40468652,41.847607544],[-71.40399252,41.848679545],[-71.403763519,41.849053545],[-71.40352652,41.849427545],[-71.40314552,41.850045545],[-71.402550519,41.851059545],[-71.40238252,41.851330545],[-71.401451519,41.852852545],[-71.401138519,41.853371546],[-71.400757519,41.854004546],[-71.400154519,41.855458546],[-71.400146519,41.855488546],[-71.399666518,41.856625547],[-71.399596518,41.856790546],[-71.400800519,41.856407546],[-71.402017519,41.856542546],[-71.40256552,41.856591546],[-71.40379752,41.856505546],[-71.40444952,41.856564546],[-71.40516752,41.856556546],[-71.405418521,41.856552546],[-71.405639521,41.856550546],[-71.405792521,41.856347546],[-71.406059521,41.856034546],[-71.406219521,41.855858546],[-71.406527521,41.855559546],[-71.406593521,41.855492546],[-71.406654521,41.855435546],[-71.407120521,41.854966546],[-71.408058522,41.854042546],[-71.408463521,41.853653545],[-71.408686522,41.853430545],[-71.408966522,41.853150546],[-71.409538522,41.852555545],[-71.409729522,41.852322545],[-71.409882522,41.852116545],[-71.409966522,41.851994545],[-71.410027522,41.851918545],[-71.410149522,41.851738545],[-71.410286522,41.851513545],[-71.410507522,41.851117545],[-71.410539522,41.851047545],[-71.410660522,41.850785545],[-71.410873522,41.850274545],[-71.411018522,41.849755545],[-71.411133522,41.849221544],[-71.411156522,41.849038545],[-71.411171523,41.848957545],[-71.411217522,41.848454545],[-71.411224522,41.848240545],[-71.411224522,41.847836544],[-71.411186962,41.846014891],[-71.410936017,41.845806393],[-71.410707134,41.845588956],[-71.410272259,41.84516934],[-71.410043377,41.844944272],[-71.409898419,41.844806943],[-71.409455913,41.844387326],[-71.409120221,41.844017301],[-71.408975261,41.843925748],[-71.408845562,41.843803677],[-71.408792156,41.843750271],[-71.408761638,41.84370831],[-71.408731121,41.843666348],[-71.408692974,41.843555723],[-71.408471721,41.842975888],[-71.408387798,41.842747006],[-71.408197063,41.842331205],[-71.408128398,41.842220578],[-71.407968181,41.842041287],[-71.407838482,41.841984066],[-71.407014506,41.842037472],[-71.40481724,41.842228207],[-71.403466837,41.842331205],[-71.402894632,41.842151913],[-71.400856518,41.841565543],[-71.400429518,41.842472543],[-71.399956518,41.843354544],[-71.399734518,41.843842544],[-71.399590518,41.844155544],[-71.399536518,41.844265544],[-71.399277518,41.844780544],[-71.400673518,41.845181544],[-71.401489518,41.845410544],[-71.401413518,41.845520544],[-71.401077519,41.845986545],[-71.400772518,41.846405545],[-71.400734519,41.846463544],[-71.401375519,41.846516544],[-71.40367152,41.846661545],[-71.40460252,41.846730544],[-71.40505252,41.846768544]]]]}}"}, +{"type": "precinct", "typeId": 2901, "areaId": 25957, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":296,\"NAME\":\"2901\",\"SHAPE_Length\":0.3799266148574,\"SHAPE_Area\":-0.0055090123992052},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.613076571,41.525296475],[-71.61319857,41.525901475],[-71.613434571,41.526988476],[-71.613628571,41.528068476],[-71.613843571,41.529177476],[-71.614036571,41.530207477],[-71.614193571,41.531006477],[-71.614404572,41.532027476],[-71.614776572,41.533934477],[-71.614876571,41.534434477],[-71.615131572,41.535499477],[-71.615423572,41.536893478],[-71.615623572,41.538123478],[-71.615662572,41.538359478],[-71.615929572,41.539813478],[-71.616006572,41.540127478],[-71.616120573,41.540435478],[-71.616152573,41.540554478],[-71.616173573,41.540676479],[-71.616194573,41.540910479],[-71.616204572,41.541081478],[-71.616201572,41.541333478],[-71.616208573,41.541496479],[-71.616227573,41.541625478],[-71.616253573,41.541710479],[-71.616327573,41.541875478],[-71.616370573,41.541957478],[-71.616388573,41.542001479],[-71.616397572,41.542051478],[-71.616413573,41.542282478],[-71.616423573,41.542340478],[-71.616470573,41.542482479],[-71.616714573,41.543690479],[-71.616761573,41.543873479],[-71.616938573,41.544703479],[-71.617307573,41.54668248],[-71.617373573,41.547196479],[-71.617424574,41.547412479],[-71.618477574,41.552431481],[-71.619166574,41.555596481],[-71.620823575,41.564148483],[-71.63372858,41.562836482],[-71.63378958,41.562664482],[-71.63407958,41.561982482],[-71.63459858,41.560479481],[-71.63485058,41.559777481],[-71.63507858,41.559201482],[-71.63524658,41.558728481],[-71.635490579,41.558079481],[-71.63569658,41.557515481],[-71.63588058,41.557034481],[-71.63603258,41.55659548],[-71.63604758,41.556523481],[-71.63606358,41.556481481],[-71.63607858,41.556412481],[-71.63617758,41.556473481],[-71.63626958,41.55653848],[-71.63693258,41.556931481],[-71.637024581,41.556977481],[-71.63715458,41.557030481],[-71.637276581,41.55706448],[-71.638405581,41.557282481],[-71.638557581,41.557293481],[-71.638710581,41.55729748],[-71.638863581,41.557293481],[-71.639023581,41.557270481],[-71.639244581,41.557217481],[-71.639755581,41.557072481],[-71.639977581,41.557030481],[-71.640060581,41.557019481],[-71.640236581,41.557011481],[-71.640388581,41.557022481],[-71.640533582,41.55704548],[-71.640671582,41.557080481],[-71.640823582,41.557125481],[-71.640953581,41.557179481],[-71.641510582,41.557442481],[-71.641800582,41.557564481],[-71.642044582,41.55764848],[-71.642212582,41.557698481],[-71.642273582,41.557709481],[-71.642387582,41.557740481],[-71.642799583,41.557866481],[-71.643112583,41.557969481],[-71.643402583,41.558064481],[-71.643608582,41.55813648],[-71.643776582,41.558216481],[-71.643906583,41.558312481],[-71.644165583,41.558533481],[-71.644547583,41.558976481],[-71.644577582,41.559018481],[-71.644768583,41.559224481],[-71.644798583,41.559266481],[-71.644913583,41.559380481],[-71.644958583,41.559418481],[-71.645599583,41.559872481],[-71.645782584,41.559986482],[-71.646106583,41.559791482],[-71.646294583,41.559666481],[-71.646332583,41.559636482],[-71.646378583,41.559605481],[-71.646462584,41.559510481],[-71.646469583,41.559502481],[-71.647281584,41.558758481],[-71.647362584,41.558686481],[-71.647781584,41.558285481],[-71.648239584,41.557839481],[-71.648743584,41.55730148],[-71.649239584,41.55680948],[-71.649681585,41.55634348],[-71.650276584,41.55574848],[-71.650779584,41.55521948],[-71.651077585,41.55490548],[-71.651924585,41.55404348],[-71.653435585,41.552525479],[-71.653961585,41.55198748],[-71.654266586,41.551686479],[-71.654320586,41.551628479],[-71.654831586,41.551213479],[-71.655005586,41.55109448],[-71.655273586,41.550911479],[-71.656075586,41.550351479],[-71.656494586,41.550049479],[-71.656830586,41.549797479],[-71.657318586,41.549420478],[-71.657791587,41.549065479],[-71.658859587,41.548279479],[-71.658913587,41.548230478],[-71.659607587,41.547661479],[-71.660385588,41.547009478],[-71.660995588,41.546505478],[-71.662224588,41.545468478],[-71.663322588,41.544503478],[-71.663841589,41.544068478],[-71.663975589,41.543962477],[-71.664265589,41.543740478],[-71.664471588,41.543590477],[-71.664966589,41.543233478],[-71.665614589,41.542759477],[-71.666069589,41.542431477],[-71.666130589,41.541859477],[-71.666267589,41.540810477],[-71.666267589,41.540757477],[-71.666275589,41.540699477],[-71.666275589,41.540554477],[-71.666267589,41.540516477],[-71.666267589,41.540421477],[-71.666252589,41.540219477],[-71.666252589,41.540013477],[-71.666283589,41.539826476],[-71.666306589,41.539750476],[-71.666351589,41.539547477],[-71.666359588,41.539479476],[-71.666374589,41.539414476],[-71.666389589,41.539280476],[-71.666450589,41.538956476],[-71.666481589,41.538475477],[-71.666542589,41.537667476],[-71.666580589,41.537358476],[-71.666626589,41.537220476],[-71.666687589,41.537087476],[-71.666702589,41.537033476],[-71.666725589,41.536984476],[-71.666740589,41.536930476],[-71.666748589,41.536877476],[-71.666748589,41.536827476],[-71.666779589,41.536587476],[-71.666763589,41.536103476],[-71.666763589,41.535675476],[-71.666771589,41.535656476],[-71.666771588,41.535431476],[-71.666786589,41.535275476],[-71.666801589,41.535202475],[-71.666809588,41.535134476],[-71.666840589,41.534970475],[-71.666855589,41.534890475],[-71.666870589,41.534752476],[-71.666885589,41.534130475],[-71.666929589,41.533466475],[-71.666977589,41.533059475],[-71.667038589,41.532582475],[-71.667053589,41.532513475],[-71.667068589,41.532383475],[-71.667068589,41.532326475],[-71.667030589,41.532067475],[-71.666939589,41.531548475],[-71.666908588,41.531433475],[-71.666893589,41.531342475],[-71.666893589,41.531281475],[-71.666885589,41.531250475],[-71.666885589,41.531220475],[-71.666878589,41.531193475],[-71.666878589,41.531147475],[-71.666718588,41.530285475],[-71.666618588,41.529698475],[-71.666512589,41.528824474],[-71.666405588,41.528073474],[-71.666298589,41.527367474],[-71.666145588,41.526673474],[-71.666145588,41.526623474],[-71.666130588,41.526520474],[-71.666130588,41.526421474],[-71.666191588,41.525967474],[-71.666206588,41.525811474],[-71.666206588,41.525734474],[-71.665961588,41.525897474],[-71.665946588,41.525848474],[-71.665935588,41.525734474],[-71.665939588,41.525620474],[-71.665926588,41.525511473],[-71.665901588,41.525462474],[-71.665908588,41.525398474],[-71.665866588,41.525253474],[-71.665794588,41.525153474],[-71.665744588,41.525067474],[-71.665722588,41.524950474],[-71.665720588,41.524840474],[-71.665621588,41.524762474],[-71.665614588,41.524645474],[-71.665613588,41.524397473],[-71.665621588,41.524246473],[-71.665608588,41.524138474],[-71.665581587,41.524015473],[-71.665463587,41.523943474],[-71.665366587,41.523857473],[-71.665290587,41.523760473],[-71.665211587,41.523641473],[-71.665196588,41.523550474],[-71.665212587,41.523320474],[-71.665194587,41.522657474],[-71.665217588,41.522600474],[-71.665016587,41.522427474],[-71.664955587,41.522385474],[-71.664909588,41.522343473],[-71.664864587,41.522290474],[-71.664764587,41.522152474],[-71.664726587,41.522107473],[-71.664703587,41.522061473],[-71.664691587,41.522030473],[-71.664673587,41.521984473],[-71.664627587,41.521717473],[-71.664619588,41.521641473],[-71.664604587,41.521569474],[-71.664604587,41.521500473],[-71.664597587,41.521431473],[-71.664597587,41.521199473],[-71.664520587,41.520874473],[-71.664482588,41.520764473],[-71.664436587,41.520665473],[-71.664413587,41.520596473],[-71.664337587,41.520466473],[-71.664261587,41.520367473],[-71.664215587,41.520317473],[-71.663971587,41.519993473],[-71.663834587,41.519833473],[-71.663765587,41.519734473],[-71.663715587,41.519610473],[-71.663704587,41.519566473],[-71.663696587,41.519505472],[-71.663612587,41.519287473],[-71.663589587,41.519165473],[-71.663574587,41.519112473],[-71.663567587,41.519055472],[-71.663551586,41.519005473],[-71.663513586,41.518933473],[-71.663383587,41.518734473],[-71.663345587,41.518669472],[-71.663284587,41.518547472],[-71.663261586,41.518486473],[-71.663231587,41.518425473],[-71.663200586,41.518345473],[-71.663124586,41.518189473],[-71.663078587,41.518113473],[-71.663040587,41.518032473],[-71.662987586,41.517956473],[-71.662949586,41.517891472],[-71.662781587,41.517681473],[-71.662712586,41.517601472],[-71.662567587,41.517453473],[-71.662506586,41.517384472],[-71.662209586,41.517079473],[-71.661835586,41.516636472],[-71.661789586,41.516575473],[-71.661613586,41.516373472],[-71.661446586,41.516144472],[-71.661407586,41.516083472],[-71.661377586,41.516018472],[-71.661064586,41.515507472],[-71.660774586,41.515006472],[-71.660524586,41.514616472],[-71.660430586,41.514471471],[-71.660324586,41.514305472],[-71.660088585,41.513981472],[-71.659950585,41.513832472],[-71.659920586,41.513787472],[-71.659843586,41.513695471],[-71.659790585,41.513649472],[-71.659668586,41.513558471],[-71.659561585,41.513497471],[-71.659409585,41.513386472],[-71.659378585,41.513340471],[-71.659363585,41.513306471],[-71.659363585,41.513230472],[-71.659386585,41.513161472],[-71.659683585,41.512837471],[-71.659752585,41.512749472],[-71.659821586,41.512604471],[-71.659836585,41.512555472],[-71.659843586,41.512501471],[-71.659859586,41.512448471],[-71.659874585,41.512341472],[-71.659897585,41.512223472],[-71.659927585,41.511803471],[-71.659943585,41.511452471],[-71.659948585,41.511223471],[-71.659950585,41.511128471],[-71.659966585,41.510846471],[-71.659966585,41.510609472],[-71.659958586,41.510559471],[-71.659958586,41.510510471],[-71.659927585,41.510250471],[-71.659897585,41.510109471],[-71.659874585,41.510041471],[-71.659813585,41.509713471],[-71.659721585,41.509358471],[-71.659676585,41.50912947],[-71.659515585,41.50817547],[-71.659431585,41.507641471],[-71.659309585,41.50676847],[-71.659142585,41.505772471],[-71.659119585,41.50558947],[-71.659073585,41.50537547],[-71.659004585,41.50521947],[-71.658920585,41.50507047],[-71.658791585,41.50489547],[-71.658630585,41.50465047],[-71.658600584,41.50458647],[-71.658554585,41.50440647],[-71.658554585,41.50426947],[-71.658615585,41.50387947],[-71.658666584,41.503629469],[-71.658724584,41.50334547],[-71.658739584,41.50325147],[-71.658779584,41.50301447],[-71.658791585,41.50297647],[-71.658920585,41.50247647],[-71.659050584,41.502072469],[-71.659279585,41.501454469],[-71.659416585,41.500920469],[-71.659484585,41.500570469],[-71.659549585,41.500400469],[-71.659614584,41.50025347],[-71.659866584,41.499367469],[-71.659935585,41.499150469],[-71.659966584,41.498982469],[-71.659973585,41.498906469],[-71.659981585,41.498791469],[-71.660012585,41.498528469],[-71.660151585,41.497344469],[-71.660210585,41.496937469],[-71.660278584,41.496342468],[-71.660286585,41.496235469],[-71.660347585,41.495743468],[-71.660393584,41.494904468],[-71.660408585,41.494751468],[-71.660408585,41.494713468],[-71.660431584,41.494477468],[-71.660492584,41.493954468],[-71.660576585,41.493561468],[-71.660697585,41.492871468],[-71.660774585,41.492436467],[-71.660805584,41.492176468],[-71.660812585,41.492123467],[-71.660805584,41.491909467],[-71.660789584,41.491722467],[-71.660759585,41.491475468],[-71.660728584,41.491276467],[-71.660713584,41.490845467],[-71.660728584,41.490048467],[-71.660744584,41.489769467],[-71.660736585,41.489598467],[-71.660713584,41.489205467],[-71.660690584,41.488980467],[-71.660652584,41.488678467],[-71.660637584,41.488453467],[-71.660637584,41.488205466],[-71.660622585,41.488007466],[-71.660622585,41.487847467],[-71.660614584,41.487656466],[-71.660637584,41.487156466],[-71.660660584,41.486912467],[-71.660675584,41.486805466],[-71.660675584,41.486534466],[-71.660660584,41.486446467],[-71.660583584,41.485993466],[-71.660553584,41.484761466],[-71.660553584,41.484329466],[-71.660553584,41.484108466],[-71.660561584,41.483982466],[-71.660576584,41.483857466],[-71.660606584,41.483719465],[-71.660759584,41.483307466],[-71.660896584,41.482979465],[-71.661186584,41.482384466],[-71.661537584,41.481667466],[-71.661762584,41.481147465],[-71.661842584,41.480961465],[-71.662102585,41.480336465],[-71.662277585,41.479882465],[-71.662315584,41.479797465],[-71.662941585,41.478402465],[-71.663261584,41.477642465],[-71.663338584,41.477429465],[-71.663376584,41.477307464],[-71.663467585,41.476914464],[-71.663559585,41.476311464],[-71.663574584,41.476155464],[-71.663712584,41.475182464],[-71.663729584,41.475088464],[-71.663788584,41.474783464],[-71.663895585,41.474225464],[-71.663940585,41.473988464],[-71.664040584,41.473259464],[-71.664101584,41.472710464],[-71.664157584,41.472275463],[-71.664215584,41.471825463],[-71.664360585,41.471211463],[-71.664383585,41.471016463],[-71.664383585,41.470932463],[-71.664383585,41.470890463],[-71.664375584,41.470829463],[-71.664345585,41.470700463],[-71.664291585,41.470528463],[-71.664223584,41.470349463],[-71.663826584,41.469395463],[-71.658974583,41.470250463],[-71.658966583,41.470284463],[-71.64940758,41.469174463],[-71.64938658,41.468942463],[-71.649374252,41.468907841],[-71.649339579,41.468810463],[-71.64933158,41.468694463],[-71.649334265,41.468587944],[-71.649334579,41.468575463],[-71.649331039,41.468562142],[-71.649296579,41.468432463],[-71.64929059,41.468238542],[-71.64928858,41.468173464],[-71.649192145,41.468055598],[-71.64918958,41.468052463],[-71.649148579,41.467991463],[-71.649145662,41.467969218],[-71.64913258,41.467869463],[-71.649103579,41.467758463],[-71.64901758,41.467531463],[-71.648968356,41.467484612],[-71.648934579,41.467452463],[-71.648888579,41.467386463],[-71.648883808,41.467243339],[-71.64888058,41.467146463],[-71.648845347,41.467047432],[-71.64884358,41.467042463],[-71.64882258,41.466931463],[-71.648759579,41.466831463],[-71.64874387,41.466817239],[-71.648685579,41.466764463],[-71.64868117,41.46672625],[-71.648673579,41.466660463],[-71.648636579,41.466561463],[-71.648616735,41.466539945],[-71.648385672,41.466319462],[-71.648363579,41.466299463],[-71.648350175,41.466285591],[-71.648277579,41.466210463],[-71.648214671,41.466156292],[-71.648169579,41.466117463],[-71.648121579,41.466067463],[-71.647980354,41.46578277],[-71.647966579,41.465751463],[-71.647964266,41.465748988],[-71.647909579,41.465690463],[-71.647859579,41.465564462],[-71.647842579,41.465493463],[-71.647914112,41.464436259],[-71.647916579,41.464429463],[-71.647912578,41.464185462],[-71.647884514,41.463885006],[-71.647878579,41.463821463],[-71.647856579,41.463712462],[-71.647853578,41.463587463],[-71.647862579,41.463476462],[-71.647945655,41.463346468],[-71.648014579,41.463288462],[-71.648055579,41.463174462],[-71.648153921,41.462954173],[-71.648141579,41.462914462],[-71.647967579,41.462706462],[-71.647820579,41.462607462],[-71.647552579,41.462316462],[-71.647508378,41.462302135],[-71.647407578,41.462269462],[-71.647369578,41.462265462],[-71.647262579,41.462210462],[-71.647250354,41.462201294],[-71.647222579,41.462180462],[-71.647190134,41.462177758],[-71.647107811,41.462191375],[-71.647014578,41.462218462],[-71.646883578,41.462228462],[-71.646814579,41.462192462],[-71.646741578,41.462121462],[-71.646797579,41.462014462],[-71.646850578,41.461894462],[-71.646603579,41.461890462],[-71.646196297,41.461933438],[-71.646137578,41.461866462],[-71.645959578,41.461717462],[-71.644936578,41.460534462],[-71.645004578,41.460072462],[-71.645020578,41.459782462],[-71.645065577,41.459458461],[-71.645103577,41.459137462],[-71.645241577,41.458245462],[-71.645264577,41.458149462],[-71.645294578,41.457959461],[-71.645340577,41.457741461],[-71.645416577,41.457306461],[-71.645439577,41.457230461],[-71.645454577,41.457123461],[-71.645470578,41.457066461],[-71.645485578,41.456978461],[-71.645485578,41.456932461],[-71.645500578,41.456833461],[-71.645500578,41.456784461],[-71.645477577,41.456639461],[-71.645477577,41.456524461],[-71.645462578,41.456417461],[-71.645447578,41.456372461],[-71.645432578,41.456269461],[-71.645432578,41.456219461],[-71.645401577,41.455979461],[-71.645386578,41.455918461],[-71.645378577,41.455857461],[-71.645363577,41.45579246],[-71.645332578,41.455552461],[-71.645332578,41.455468461],[-71.645325577,41.455433461],[-71.645325577,41.455296461],[-71.645348578,41.455159461],[-71.645363577,41.455105461],[-71.645386578,41.455056461],[-71.645432578,41.45489946],[-71.645432578,41.454869461],[-71.645439577,41.454842461],[-71.645439577,41.454651461],[-71.645493577,41.454285461],[-71.645508578,41.454228461],[-71.645515577,41.45417446],[-71.645531577,41.45411746],[-71.645546578,41.45401846],[-71.645569578,41.453930461],[-71.645645578,41.45371346],[-71.645645578,41.453682461],[-71.645653577,41.45365646],[-71.645653577,41.45355346],[-71.645622578,41.453469461],[-71.645584578,41.453389461],[-71.645538577,41.453308461],[-71.645462577,41.45319846],[-71.645325577,41.45303446],[-71.645271578,41.452977461],[-71.645164577,41.45288546],[-71.645065577,41.45280946],[-71.644981578,41.45275246],[-71.644958577,41.45272946],[-71.644897577,41.45268346],[-71.644783577,41.45254646],[-71.644768578,41.45251946],[-71.644745577,41.452435461],[-71.644745577,41.452298461],[-71.644760577,41.45223346],[-71.645073577,41.45163446],[-71.645103577,41.45158846],[-71.645149577,41.45146246],[-71.645172577,41.45133246],[-71.645172577,41.45128746],[-71.645164577,41.45125646],[-71.645164577,41.45122946],[-71.645096577,41.450974459],[-71.645004578,41.45073446],[-71.644951577,41.45062746],[-71.644920577,41.45058146],[-71.644897577,41.45053546],[-71.644867578,41.45050146],[-71.644859577,41.45048246],[-71.644844577,41.450467459],[-71.644783577,41.45038346],[-71.644737577,41.45033746],[-71.644699577,41.450291459],[-71.644646577,41.45023846],[-71.644386577,41.45001646],[-71.644218577,41.44991346],[-71.644035577,41.44982246],[-71.642525577,41.44915446],[-71.642403576,41.44909346],[-71.642357576,41.449063459],[-71.642265576,41.44901346],[-71.642220576,41.44897546],[-71.642189576,41.448933459],[-71.642143576,41.44885746],[-71.642128576,41.448815459],[-71.642128576,41.448796459],[-71.642120576,41.448777459],[-71.642120576,41.448738459],[-71.642113576,41.448716459],[-71.642113576,41.448693459],[-71.642120576,41.44867046],[-71.642120576,41.44865146],[-71.642136576,41.44861346],[-71.642227576,41.448483459],[-71.642303576,41.44839946],[-71.642471576,41.44818246],[-71.642105576,41.448040459],[-71.641678576,41.44794546],[-71.641296576,41.447876459],[-71.641083576,41.447823459],[-71.640472576,41.44755646],[-71.640198575,41.447445459],[-71.640091575,41.447426459],[-71.639877575,41.447270459],[-71.639771575,41.447216459],[-71.639671575,41.447182459],[-71.639481575,41.447132459],[-71.639313575,41.447113459],[-71.639000575,41.44711046],[-71.637829574,41.447119459],[-71.637752574,41.44718946],[-71.637737574,41.44720346],[-71.637637574,41.44724246],[-71.637591575,41.44726646],[-71.637516574,41.447298459],[-71.637298575,41.44746046],[-71.637258575,41.44753846],[-71.637200575,41.447604459],[-71.637055574,41.44759846],[-71.636986575,41.447609459],[-71.636938574,41.447639459],[-71.636816574,41.447640459],[-71.636692575,41.44765646],[-71.636555574,41.44767446],[-71.636462575,41.44767546],[-71.636434574,41.44769146],[-71.636442575,41.447740459],[-71.636439574,41.447781459],[-71.636420574,41.44781246],[-71.636391574,41.447821459],[-71.636258574,41.44783246],[-71.636079574,41.447878459],[-71.635915574,41.447938459],[-71.635821574,41.447952459],[-71.635597574,41.447952459],[-71.635293573,41.44798746],[-71.635166574,41.448014459],[-71.635042573,41.448073459],[-71.634936574,41.44816246],[-71.634816574,41.44823646],[-71.634758574,41.448246459],[-71.634439573,41.44841246],[-71.634277574,41.44848646],[-71.634148573,41.44853546],[-71.634009573,41.448595459],[-71.633872573,41.44862146],[-71.633743573,41.44867146],[-71.633585573,41.44872346],[-71.633454573,41.448771459],[-71.633212573,41.44888646],[-71.633159573,41.44889846],[-71.633005573,41.44891546],[-71.632862573,41.44892346],[-71.632835574,41.44898246],[-71.632774573,41.448985459],[-71.632726573,41.448946459],[-71.632726573,41.44892046],[-71.632518573,41.44880746],[-71.632378573,41.44843646],[-71.632213572,41.447720459],[-71.631973573,41.447214459],[-71.631818573,41.44710946],[-71.631386573,41.44703046],[-71.630608573,41.446839459],[-71.630022572,41.446962459],[-71.629548572,41.44733746],[-71.629500572,41.447367459],[-71.629368572,41.44743846],[-71.629287571,41.44749246],[-71.629255572,41.44752746],[-71.629131571,41.44778046],[-71.629026572,41.447876459],[-71.628905572,41.44796646],[-71.628831572,41.44800746],[-71.628710572,41.44803946],[-71.628558572,41.448029459],[-71.628440572,41.44801546],[-71.628348572,41.44796746],[-71.628222571,41.44789146],[-71.628097571,41.44782246],[-71.627873571,41.44766846],[-71.627788571,41.44757846],[-71.627696571,41.44752146],[-71.627634571,41.44746246],[-71.627419571,41.44722646],[-71.627247571,41.44707946],[-71.627168571,41.44698346],[-71.627106571,41.44688646],[-71.627057571,41.446781459],[-71.627012571,41.44670246],[-71.626996571,41.44667246],[-71.626958571,41.44657746],[-71.626940571,41.44646846],[-71.626947571,41.44638046],[-71.626982571,41.44630446],[-71.627056571,41.44619346],[-71.627166571,41.445991459],[-71.627171571,41.445911459],[-71.627215571,41.445808459],[-71.627320571,41.445594459],[-71.627393572,41.445485459],[-71.627398571,41.445464459],[-71.627354571,41.44539046],[-71.627114571,41.44525946],[-71.626973571,41.44523446],[-71.626870571,41.445233459],[-71.626803571,41.44523746],[-71.626761571,41.445291459],[-71.626754571,41.445308459],[-71.626737571,41.445326459],[-71.626589571,41.44533146],[-71.626540571,41.445358459],[-71.626329571,41.445423459],[-71.626269571,41.44543346],[-71.626199571,41.445474459],[-71.626097571,41.445485459],[-71.62603057,41.445480459],[-71.62589357,41.445513459],[-71.62577857,41.445580459],[-71.625714571,41.44562546],[-71.62562857,41.445714459],[-71.625559571,41.44581746],[-71.625459571,41.44589846],[-71.625397571,41.445928459],[-71.625285571,41.44601846],[-71.62517357,41.446082459],[-71.625070571,41.44610746],[-71.62500757,41.446141459],[-71.62488057,41.446201459],[-71.62480757,41.44622946],[-71.62472357,41.44626346],[-71.62460757,41.446293459],[-71.62432257,41.44666246],[-71.62428857,41.446416459],[-71.624234571,41.44642446],[-71.624156571,41.44642046],[-71.62408257,41.44640346],[-71.62392857,41.44634546],[-71.62340457,41.44618346],[-71.62331257,41.44615046],[-71.62301657,41.446026459],[-71.62282657,41.44596146],[-71.62266557,41.44591246],[-71.622564569,41.44590046],[-71.622464569,41.44592246],[-71.62239657,41.445947459],[-71.622333569,41.445982459],[-71.622214569,41.446081459],[-71.622080569,41.446176459],[-71.622013569,41.44621346],[-71.621945569,41.44624146],[-71.62187357,41.446256459],[-71.621841569,41.44626246],[-71.621768569,41.446254459],[-71.621702569,41.44622946],[-71.62163957,41.446200459],[-71.621558569,41.44615246],[-71.621497569,41.446104459],[-71.621430569,41.44606746],[-71.621363569,41.44605046],[-71.621284569,41.44600046],[-71.621187569,41.44593946],[-71.621167569,41.445909459],[-71.621080569,41.44589546],[-71.621006569,41.44591246],[-71.620946569,41.445942459],[-71.620894569,41.445987459],[-71.620798569,41.44608746],[-71.620745569,41.44612946],[-71.620675569,41.446161459],[-71.620591569,41.44618646],[-71.620409569,41.44622946],[-71.620095569,41.44627946],[-71.619681569,41.44636346],[-71.619495569,41.44641546],[-71.619207568,41.44651346],[-71.619115568,41.44654046],[-71.618937568,41.44658146],[-71.618376568,41.446683459],[-71.618273568,41.44671046],[-71.618183568,41.44674346],[-71.618024568,41.44681346],[-71.617954568,41.44685346],[-71.617901568,41.44690346],[-71.617876568,41.44696646],[-71.617878568,41.44719046],[-71.617890568,41.44725546],[-71.617943568,41.44737546],[-71.617945568,41.44745346],[-71.617896569,41.44752246],[-71.617818569,41.44757646],[-71.617749568,41.44759146],[-71.617669568,41.44759646],[-71.617493568,41.447599461],[-71.617406568,41.44761546],[-71.617245568,41.44766346],[-71.617169568,41.44769046],[-71.617111568,41.44772946],[-71.617016568,41.44784246],[-71.616794568,41.44823446],[-71.616659568,41.44840546],[-71.616583568,41.44848846],[-71.616506568,41.44856346],[-71.616439567,41.44864046],[-71.616340567,41.44880246],[-71.616234568,41.448963461],[-71.616188568,41.44904446],[-71.616116568,41.449191461],[-71.616010567,41.449389461],[-71.615969567,41.449446461],[-71.615921568,41.44949846],[-71.615911567,41.44951946],[-71.615794567,41.449600461],[-71.615768568,41.449660461],[-71.615723568,41.449681461],[-71.615606568,41.44972946],[-71.615434568,41.449744461],[-71.615358568,41.44974546],[-71.615074567,41.449734461],[-71.614993567,41.44974746],[-71.614936567,41.449792461],[-71.614913568,41.449853461],[-71.614917567,41.449919461],[-71.614929568,41.44998246],[-71.614920567,41.45004146],[-71.614857567,41.45010146],[-71.614796568,41.450133461],[-71.614727567,41.450151461],[-71.614655567,41.45015946],[-71.614578567,41.45015646],[-71.614504567,41.45013646],[-71.614442567,41.450104461],[-71.614365567,41.450056461],[-71.614290567,41.45003846],[-71.614206567,41.450065461],[-71.614010567,41.450167461],[-71.613938567,41.450211461],[-71.613805567,41.450307461],[-71.613749567,41.450355461],[-71.613644567,41.450459461],[-71.613597567,41.450534461],[-71.613587567,41.450595461],[-71.613591567,41.45066346],[-71.613632567,41.450709461],[-71.613719567,41.450732461],[-71.613812567,41.450737461],[-71.614058567,41.450733461],[-71.614133568,41.45072246],[-71.614200567,41.450698461],[-71.614350567,41.450627461],[-71.614430567,41.45062646],[-71.614497567,41.450671461],[-71.614540568,41.450725461],[-71.614544567,41.450784461],[-71.614526567,41.450803461],[-71.614488567,41.450840461],[-71.614430567,41.45087646],[-71.614280567,41.45095546],[-71.614200567,41.450982461],[-71.614040567,41.451021461],[-71.613971567,41.451050461],[-71.613915567,41.451085461],[-71.613853567,41.451131461],[-71.613807567,41.451192461],[-71.613772567,41.451260461],[-71.613724567,41.451314461],[-71.613631567,41.451348461],[-71.613526567,41.451356461],[-71.613428567,41.451338461],[-71.613215567,41.451285461],[-71.613059567,41.451236461],[-71.612971567,41.451219461],[-71.612880567,41.451210461],[-71.612800567,41.451221461],[-71.612738567,41.451255461],[-71.612634566,41.451352461],[-71.612569567,41.451400461],[-71.612492567,41.451442461],[-71.612349567,41.451508461],[-71.612271567,41.451558461],[-71.612235567,41.451620461],[-71.612232567,41.451696461],[-71.612251567,41.451773461],[-71.612326566,41.451921461],[-71.612335567,41.451993461],[-71.612286566,41.452049461],[-71.612207566,41.452074461],[-71.612132566,41.452072461],[-71.611959566,41.452044461],[-71.611872566,41.452021461],[-71.611789567,41.451985461],[-71.611709567,41.451941461],[-71.611565566,41.451843461],[-71.611423566,41.451699461],[-71.611386566,41.451645461],[-71.611360566,41.451583461],[-71.611350566,41.451518461],[-71.611348566,41.451456461],[-71.611334566,41.451400461],[-71.611274566,41.451334461],[-71.611196566,41.451292461],[-71.611102566,41.451277461],[-71.611027566,41.451282461],[-71.610945566,41.451301461],[-71.610868566,41.451330461],[-71.610801566,41.451362461],[-71.610734566,41.451418461],[-71.610728566,41.451485461],[-71.610775566,41.451534461],[-71.610924566,41.451592461],[-71.610981566,41.451651461],[-71.610985566,41.451718461],[-71.610915567,41.451757461],[-71.610829566,41.451755461],[-71.610750566,41.451727461],[-71.610658566,41.451706461],[-71.610481566,41.451699461],[-71.610400566,41.451682461],[-71.610323566,41.451657461],[-71.610221566,41.451630461],[-71.610128566,41.451652461],[-71.610076566,41.451692461],[-71.610035566,41.451740461],[-71.610011566,41.451793461],[-71.610005566,41.451849462],[-71.610007566,41.451906461],[-71.610028566,41.452024462],[-71.610046566,41.452096461],[-71.610074566,41.452175461],[-71.610141566,41.452297462],[-71.610164566,41.452354462],[-71.610175565,41.452413462],[-71.610177566,41.452470461],[-71.610158566,41.452547461],[-71.610080566,41.452595461],[-71.609982565,41.452610462],[-71.609912566,41.452596461],[-71.609852566,41.452565461],[-71.609802566,41.452525461],[-71.609750566,41.452462461],[-71.609732566,41.452388461],[-71.609728565,41.452277462],[-71.609691565,41.452212461],[-71.609617566,41.452186461],[-71.609553565,41.452203461],[-71.609523566,41.452258462],[-71.609518566,41.452322461],[-71.609462566,41.452384461],[-71.609404566,41.452417461],[-71.609311566,41.452432462],[-71.609224565,41.452402461],[-71.609162565,41.452366461],[-71.608912565,41.452235461],[-71.608873565,41.452265461],[-71.608867566,41.452280461],[-71.608620565,41.452412462],[-71.608552566,41.452465461],[-71.608498565,41.452526461],[-71.608452565,41.452588462],[-71.608402565,41.452642461],[-71.608325565,41.452674461],[-71.608228565,41.452679461],[-71.608141565,41.452695461],[-71.608077565,41.452730461],[-71.608011565,41.452773461],[-71.607948565,41.452804462],[-71.607817565,41.452859462],[-71.607730565,41.452891461],[-71.607653565,41.452901462],[-71.607574565,41.452872461],[-71.607544565,41.452815461],[-71.607536565,41.452671461],[-71.607523565,41.452612461],[-71.607483565,41.452562461],[-71.607418565,41.452537461],[-71.607325565,41.452523461],[-71.607263565,41.452550462],[-71.607221565,41.452602461],[-71.607160565,41.452625462],[-71.607097565,41.452670461],[-71.607069565,41.452727462],[-71.607121565,41.452773461],[-71.607146565,41.452838462],[-71.607128565,41.452885461],[-71.607083565,41.452931461],[-71.607037565,41.452987461],[-71.606991565,41.453053462],[-71.606911565,41.453185461],[-71.606850565,41.453223461],[-71.606790565,41.453219461],[-71.606748565,41.453160461],[-71.606725564,41.453106461],[-71.606674565,41.453054462],[-71.606622565,41.453060462],[-71.606582565,41.453106461],[-71.606547565,41.453166461],[-71.606528564,41.453230462],[-71.606547565,41.453286462],[-71.606606564,41.453337461],[-71.606651565,41.453396461],[-71.606642565,41.453434461],[-71.606577565,41.453488462],[-71.606499565,41.453531461],[-71.606414564,41.453555461],[-71.606310565,41.453552461],[-71.606238564,41.453537462],[-71.606137565,41.453523462],[-71.606052565,41.453537462],[-71.605871564,41.453586462],[-71.605803565,41.453619462],[-71.605755564,41.453679462],[-71.605705565,41.453729461],[-71.605629565,41.453733462],[-71.605545565,41.453693462],[-71.605484564,41.453658462],[-71.605414565,41.453637462],[-71.605318565,41.453654462],[-71.605247564,41.453704461],[-71.605182565,41.453763461],[-71.605142565,41.453812462],[-71.605109564,41.453865461],[-71.605033564,41.454046462],[-71.604941564,41.454191462],[-71.604834564,41.454318462],[-71.604788564,41.454384462],[-71.604741564,41.454514462],[-71.604729564,41.454645462],[-71.604692565,41.454706462],[-71.604635565,41.454770462],[-71.604588564,41.454840462],[-71.604521564,41.454980462],[-71.604481564,41.455033462],[-71.604415564,41.455074462],[-71.604048564,41.455265462],[-71.603882564,41.455336462],[-71.603713564,41.455386462],[-71.603630564,41.455415462],[-71.603570564,41.455450462],[-71.603477564,41.455458462],[-71.603410564,41.455491462],[-71.603358564,41.455534462],[-71.603245564,41.455651462],[-71.603158564,41.455689462],[-71.603065564,41.455718462],[-71.602994564,41.455719462],[-71.602887564,41.455628462],[-71.602813564,41.455607462],[-71.602733564,41.455624462],[-71.602682564,41.455673463],[-71.602657564,41.455728462],[-71.602668563,41.455805462],[-71.602718564,41.455857462],[-71.602765563,41.455921462],[-71.602784563,41.455988462],[-71.602782564,41.456053462],[-71.602760564,41.456122462],[-71.602718564,41.456200462],[-71.602665564,41.456270462],[-71.602605564,41.456324462],[-71.602547564,41.456368462],[-71.602462564,41.456413463],[-71.602368564,41.456406462],[-71.602294564,41.456378462],[-71.602260563,41.456332463],[-71.602255564,41.456259462],[-71.602242563,41.456198463],[-71.602209564,41.456138463],[-71.602149563,41.456077462],[-71.602106563,41.456082463],[-71.601762563,41.456313463],[-71.601670564,41.456305462],[-71.601617563,41.456253462],[-71.601563563,41.456211462],[-71.601481563,41.456195462],[-71.601415564,41.456226462],[-71.601364563,41.456274463],[-71.601257563,41.456261462],[-71.601198563,41.456293463],[-71.601178563,41.456365462],[-71.601204563,41.456416462],[-71.601197563,41.456523462],[-71.601103563,41.456576462],[-71.600986563,41.456576462],[-71.600933563,41.456617462],[-71.600880563,41.456682463],[-71.600849563,41.456747462],[-71.600868563,41.456799463],[-71.600894563,41.456850462],[-71.600881563,41.456922462],[-71.600806563,41.456973463],[-71.600706563,41.456987462],[-71.600534563,41.456983462],[-71.600441563,41.456997463],[-71.600363563,41.457020462],[-71.600294563,41.457050463],[-71.600148563,41.457144462],[-71.600076563,41.457205463],[-71.600015562,41.457271463],[-71.599956562,41.457325463],[-71.599911563,41.457374462],[-71.599828563,41.457499463],[-71.599762562,41.457556463],[-71.599694563,41.457590462],[-71.599597563,41.457601463],[-71.599444563,41.457562463],[-71.599364563,41.457590462],[-71.599215562,41.457738463],[-71.599152563,41.457786462],[-71.599075563,41.457826463],[-71.598990563,41.457862462],[-71.598918563,41.457900462],[-71.598847562,41.457953463],[-71.598777563,41.457984463],[-71.598688562,41.458003463],[-71.598628563,41.458050463],[-71.598627563,41.458101463],[-71.598656562,41.458155463],[-71.598647563,41.458225463],[-71.598626563,41.458278463],[-71.598586563,41.458351463],[-71.598453563,41.458498463],[-71.598416562,41.458619462],[-71.598393563,41.458836463],[-71.598384562,41.459020463],[-71.598390563,41.459085463],[-71.598416562,41.459155463],[-71.598487563,41.459274463],[-71.598510563,41.459336463],[-71.598499562,41.459405463],[-71.598452563,41.459459463],[-71.598402562,41.459506463],[-71.598388563,41.459568463],[-71.598528563,41.459644463],[-71.598555562,41.459696463],[-71.598568563,41.459752463],[-71.598548563,41.459828463],[-71.598500562,41.459875463],[-71.598435562,41.459922463],[-71.598290562,41.460005463],[-71.598212562,41.460037463],[-71.598139563,41.460056463],[-71.598109562,41.460088463],[-71.598078563,41.460201463],[-71.598027562,41.460269463],[-71.597979562,41.460319463],[-71.597997562,41.460383463],[-71.597998562,41.460441463],[-71.597976562,41.460499463],[-71.597929562,41.460544463],[-71.597806563,41.460615463],[-71.597737562,41.460650463],[-71.597583562,41.460710463],[-71.597509562,41.460747463],[-71.597439563,41.460792463],[-71.597314562,41.460885463],[-71.597252562,41.460940463],[-71.597190562,41.461006463],[-71.596984562,41.461266464],[-71.596941562,41.461336463],[-71.596917562,41.461397463],[-71.596892562,41.461534463],[-71.596873562,41.461603463],[-71.596820562,41.461739463],[-71.596814562,41.461807464],[-71.596835562,41.461867464],[-71.596870562,41.461922463],[-71.596897562,41.461988464],[-71.596952563,41.462025464],[-71.596993562,41.462053463],[-71.597029562,41.462077463],[-71.597037562,41.462081464],[-71.597152562,41.462133463],[-71.597236562,41.462129463],[-71.597308562,41.462117463],[-71.597378563,41.462128464],[-71.597417563,41.462177464],[-71.597485562,41.462281464],[-71.597490562,41.462396464],[-71.597517563,41.462534464],[-71.597551562,41.462600463],[-71.597642562,41.462730464],[-71.597711563,41.462752464],[-71.597797562,41.462767464],[-71.597843563,41.462812463],[-71.597832562,41.462882464],[-71.597799562,41.462933463],[-71.597744562,41.462972463],[-71.597668563,41.462992464],[-71.597591563,41.463006463],[-71.597525562,41.463049463],[-71.597520562,41.463107463],[-71.597573563,41.463146463],[-71.597631563,41.463179464],[-71.597658562,41.463245464],[-71.597689563,41.463301463],[-71.597757562,41.463329464],[-71.597840562,41.463307464],[-71.597913562,41.463298464],[-71.597946563,41.463328464],[-71.597946563,41.463395464],[-71.597937562,41.463454464],[-71.597934562,41.463521464],[-71.597921563,41.463598464],[-71.597860563,41.463642464],[-71.597787563,41.463652463],[-71.597696562,41.463644464],[-71.597618562,41.463642464],[-71.597546562,41.463661464],[-71.597537563,41.463711464],[-71.597577562,41.463765464],[-71.597640562,41.463812464],[-71.597673563,41.463864463],[-71.597661562,41.464044464],[-71.597639562,41.464106464],[-71.597604562,41.464159464],[-71.597593563,41.464225464],[-71.597658562,41.464271464],[-71.597742562,41.464302464],[-71.597836562,41.464301464],[-71.597910562,41.464260464],[-71.597991562,41.464240464],[-71.598009562,41.464277464],[-71.598006562,41.464337464],[-71.597987562,41.464394464],[-71.597887563,41.464518464],[-71.597888563,41.464589464],[-71.597943563,41.464643464],[-71.598033562,41.464656464],[-71.598122563,41.464656464],[-71.598197563,41.464671464],[-71.598212563,41.464726464],[-71.598221562,41.464849464],[-71.598232563,41.464927464],[-71.598273563,41.465121464],[-71.598296563,41.465180464],[-71.598404563,41.465305464],[-71.598440563,41.465379464],[-71.598483563,41.465483464],[-71.598513562,41.465628464],[-71.598550563,41.465694465],[-71.598606563,41.465736465],[-71.598746563,41.465793465],[-71.598798563,41.465845464],[-71.598803563,41.465907464],[-71.598782563,41.465969465],[-71.598775563,41.466048465],[-71.598799563,41.466116464],[-71.598868563,41.466167464],[-71.598939563,41.466207464],[-71.599008563,41.466264464],[-71.599059563,41.466336465],[-71.599098563,41.466411464],[-71.599129563,41.466488464],[-71.599168563,41.466683464],[-71.599174563,41.466763465],[-71.599224563,41.466816464],[-71.599403563,41.466861465],[-71.599489563,41.466894464],[-71.599619563,41.466986464],[-71.599708563,41.467079465],[-71.599745563,41.467130464],[-71.599791563,41.467177465],[-71.599851563,41.467208464],[-71.599984563,41.467255465],[-71.600042563,41.467287464],[-71.600108564,41.467351465],[-71.600144564,41.467403464],[-71.600229563,41.467605465],[-71.600228564,41.467677465],[-71.600180563,41.467740465],[-71.600169564,41.467809464],[-71.600189564,41.467875465],[-71.600230563,41.467936465],[-71.600226564,41.468007465],[-71.600193563,41.468072465],[-71.600208564,41.468136464],[-71.600263564,41.468197464],[-71.600328563,41.468229465],[-71.600442564,41.468250465],[-71.600518564,41.468267465],[-71.600569564,41.468283465],[-71.600629564,41.468334464],[-71.600627564,41.468395465],[-71.600637564,41.468451464],[-71.600689564,41.468502465],[-71.600768564,41.468539465],[-71.600860564,41.468565464],[-71.600931563,41.468604464],[-71.600990563,41.468655465],[-71.601074564,41.468693465],[-71.601161564,41.468703464],[-71.601260564,41.468700465],[-71.601360563,41.468710465],[-71.601454564,41.468728465],[-71.601497564,41.468776465],[-71.601483564,41.468846465],[-71.601416564,41.468896464],[-71.601384564,41.468956464],[-71.601435564,41.469010465],[-71.601512564,41.469053464],[-71.601577564,41.469101465],[-71.601625564,41.469160465],[-71.601689564,41.469217465],[-71.601794564,41.469301465],[-71.601851564,41.469361465],[-71.601906564,41.469411465],[-71.601990564,41.469408465],[-71.602046564,41.469435465],[-71.602084564,41.469507465],[-71.602101564,41.469580464],[-71.602115564,41.469841465],[-71.602145564,41.469903465],[-71.602197565,41.469960465],[-71.602229564,41.470024465],[-71.602202564,41.470082465],[-71.602150564,41.470132465],[-71.602131564,41.470188465],[-71.602161564,41.470237465],[-71.602231564,41.470291465],[-71.602295565,41.470354465],[-71.602315565,41.470421465],[-71.602270564,41.470489465],[-71.602137565,41.470549465],[-71.602089564,41.470615465],[-71.602100565,41.470677465],[-71.602163564,41.470710465],[-71.602357564,41.470725465],[-71.602432565,41.470738465],[-71.602503564,41.470766465],[-71.602543565,41.470811465],[-71.602563565,41.470868465],[-71.602549565,41.470945465],[-71.602479564,41.470997465],[-71.602394564,41.471041465],[-71.602385564,41.471098466],[-71.602462564,41.471206465],[-71.602561564,41.471315465],[-71.602623565,41.471373465],[-71.602684565,41.471423465],[-71.602772564,41.471463465],[-71.602846564,41.471446465],[-71.602912565,41.471410466],[-71.603003564,41.471404465],[-71.603071565,41.471424465],[-71.603145565,41.471460465],[-71.603211565,41.471528466],[-71.603170565,41.471594465],[-71.603047565,41.471700466],[-71.603001564,41.471775465],[-71.603053565,41.471836466],[-71.603115564,41.471869465],[-71.603208565,41.471903465],[-71.603274564,41.471953466],[-71.603377565,41.472067465],[-71.603418565,41.472139465],[-71.603428564,41.472209466],[-71.603419565,41.472345466],[-71.603458565,41.472417465],[-71.603514565,41.472470465],[-71.603572565,41.472517466],[-71.603672565,41.472545465],[-71.603734565,41.472530465],[-71.603792565,41.472477466],[-71.603900565,41.472367465],[-71.603982565,41.472323466],[-71.604083565,41.472328465],[-71.604145565,41.472355465],[-71.604210565,41.472391465],[-71.604268565,41.472442466],[-71.604417565,41.472655466],[-71.604496565,41.472793466],[-71.604542565,41.472853466],[-71.604601565,41.472893466],[-71.604674566,41.472920465],[-71.604748565,41.472941465],[-71.604819565,41.472970466],[-71.604964566,41.473043466],[-71.605019565,41.473080466],[-71.605054565,41.473150465],[-71.605068565,41.473345465],[-71.605095565,41.473545465],[-71.605109565,41.473609466],[-71.605136566,41.473663466],[-71.605207565,41.473713465],[-71.605267565,41.473749466],[-71.605369566,41.473843466],[-71.605407566,41.473918466],[-71.605393566,41.474000466],[-71.605408566,41.474071466],[-71.605521565,41.474181465],[-71.605560565,41.474249466],[-71.605505566,41.474307466],[-71.605435566,41.474340465],[-71.605351566,41.474360465],[-71.605254566,41.474374466],[-71.605171565,41.474394466],[-71.605109565,41.474431466],[-71.605064566,41.474484466],[-71.604996565,41.474594465],[-71.604985566,41.474654466],[-71.605027565,41.474681466],[-71.605273566,41.474733466],[-71.605416566,41.474775466],[-71.605442565,41.474831466],[-71.605447566,41.475022466],[-71.605470566,41.475168466],[-71.605508566,41.475301466],[-71.605544566,41.475362466],[-71.605602566,41.475415466],[-71.605636565,41.475464466],[-71.605680566,41.475515466],[-71.605733565,41.475565465],[-71.605845566,41.475636466],[-71.605898566,41.475677466],[-71.605933566,41.475725466],[-71.605942566,41.475782466],[-71.605941566,41.475847466],[-71.605897566,41.475920466],[-71.605744566,41.475983466],[-71.605710565,41.476050466],[-71.605696566,41.476104466],[-71.605631565,41.476243466],[-71.605617565,41.476296466],[-71.605602566,41.476415466],[-71.605588566,41.476473466],[-71.605543566,41.476496466],[-71.605468566,41.476499466],[-71.605283565,41.476521466],[-71.605135566,41.476529466],[-71.605047565,41.476542466],[-71.604982566,41.476567466],[-71.604922566,41.476611466],[-71.604877565,41.476708466],[-71.604826566,41.476819466],[-71.604803565,41.476853466],[-71.604726566,41.476878466],[-71.604644565,41.476895466],[-71.604545565,41.476905466],[-71.604462565,41.476909467],[-71.604363565,41.476922466],[-71.604338565,41.476967467],[-71.604406565,41.477080466],[-71.604402565,41.477151466],[-71.604359566,41.477202467],[-71.604303566,41.477252466],[-71.604275565,41.477315467],[-71.604276565,41.477375467],[-71.604230565,41.477410466],[-71.604166566,41.477441466],[-71.604200565,41.477492467],[-71.604201565,41.477559466],[-71.604171565,41.477632467],[-71.604109566,41.477683466],[-71.604018565,41.477678466],[-71.603944565,41.477640466],[-71.603914566,41.477579466],[-71.603910565,41.477504466],[-71.603887565,41.477438466],[-71.603808565,41.477391466],[-71.603719566,41.477379466],[-71.603618565,41.477384466],[-71.603544565,41.477377467],[-71.603457565,41.477388466],[-71.603380565,41.477430466],[-71.603264565,41.477508466],[-71.603201565,41.477539466],[-71.603111565,41.477551467],[-71.603033565,41.477529467],[-71.602944565,41.477495467],[-71.602860565,41.477485466],[-71.602499565,41.477469467],[-71.602414564,41.477470467],[-71.602240564,41.477483466],[-71.602140564,41.477484466],[-71.602058565,41.477490467],[-71.601984564,41.477489467],[-71.601906564,41.477483466],[-71.601820565,41.477486466],[-71.601746565,41.477508467],[-71.601683565,41.477544466],[-71.601632565,41.477583466],[-71.601555564,41.477630467],[-71.601485564,41.477654466],[-71.601411564,41.477666467],[-71.601318565,41.477699466],[-71.601239565,41.477747467],[-71.601182565,41.477794466],[-71.601146564,41.477910466],[-71.601109564,41.477962467],[-71.601053564,41.478081466],[-71.601010564,41.478138467],[-71.600912564,41.478222466],[-71.600780564,41.478296466],[-71.600706564,41.478352467],[-71.600721564,41.478407467],[-71.600808564,41.478449467],[-71.600904564,41.478469467],[-71.600985565,41.478502467],[-71.600979564,41.478549466],[-71.600906564,41.478584467],[-71.600831565,41.478605467],[-71.600746564,41.478620467],[-71.600671564,41.478639467],[-71.600638565,41.478670466],[-71.600650564,41.478735467],[-71.600723564,41.478785466],[-71.600905564,41.478850467],[-71.600980564,41.478898467],[-71.601027565,41.478940466],[-71.601082565,41.479003467],[-71.601115564,41.479073467],[-71.601131564,41.479145467],[-71.601124565,41.479207467],[-71.601082565,41.479256467],[-71.601018564,41.479291466],[-71.600938564,41.479314467],[-71.600854564,41.479317467],[-71.600757564,41.479307467],[-71.600673564,41.479324467],[-71.600670564,41.479374467],[-71.600722564,41.479427466],[-71.600803564,41.479459467],[-71.600891565,41.479467466],[-71.601050564,41.479461467],[-71.601132564,41.479478467],[-71.601183565,41.479517467],[-71.601253564,41.479562467],[-71.601405564,41.479620467],[-71.601474565,41.479678467],[-71.601487565,41.479748467],[-71.601450565,41.479815467],[-71.601365564,41.479856466],[-71.601286564,41.479870467],[-71.601120565,41.479880467],[-71.600941564,41.479866467],[-71.600840564,41.479875466],[-71.600788564,41.479910467],[-71.600799564,41.479964467],[-71.600855564,41.480026467],[-71.600921564,41.480061467],[-71.601010564,41.480083467],[-71.601095564,41.480092467],[-71.601246564,41.480101467],[-71.601330564,41.480110467],[-71.601419564,41.480153467],[-71.601438564,41.480228467],[-71.601392565,41.480291467],[-71.601323564,41.480319467],[-71.601244564,41.480338467],[-71.601162565,41.480351467],[-71.600878564,41.480376467],[-71.600789565,41.480406467],[-71.600779564,41.480474467],[-71.600813565,41.480550467],[-71.600857564,41.480598467],[-71.600918564,41.480636467],[-71.600990564,41.480667467],[-71.601064565,41.480692467],[-71.601129564,41.480726467],[-71.601234565,41.480810467],[-71.601357565,41.480894467],[-71.601421564,41.480933467],[-71.601494565,41.480941467],[-71.601557564,41.480899467],[-71.601634564,41.480860467],[-71.601705565,41.480857467],[-71.601749565,41.480895467],[-71.601772564,41.480947468],[-71.601777565,41.481020467],[-71.601772564,41.481079467],[-71.601812564,41.481126467],[-71.601875565,41.481172467],[-71.601874565,41.481238467],[-71.601834565,41.481287467],[-71.601768565,41.481348467],[-71.601789564,41.481411467],[-71.601851564,41.481475467],[-71.601904565,41.481512468],[-71.602043564,41.481586467],[-71.602182565,41.481683467],[-71.602302565,41.481780467],[-71.602345565,41.481831467],[-71.602382565,41.481889467],[-71.602434565,41.481950467],[-71.602502565,41.481985467],[-71.602574565,41.482004467],[-71.602640565,41.482058468],[-71.602665565,41.482130467],[-71.602635565,41.482187467],[-71.602571565,41.482234468],[-71.602441565,41.482290468],[-71.602377565,41.482326468],[-71.602327565,41.482367468],[-71.602278565,41.482434467],[-71.602260565,41.482503468],[-71.602262565,41.482577467],[-71.602277565,41.482654467],[-71.602331565,41.482696468],[-71.602388565,41.482731467],[-71.602428565,41.482797468],[-71.602429565,41.482864467],[-71.602424565,41.482918467],[-71.602375565,41.482971468],[-71.602321565,41.483011468],[-71.602089565,41.483135467],[-71.602026565,41.483185468],[-71.601988565,41.483243468],[-71.601968565,41.483303468],[-71.601965564,41.483370467],[-71.602006565,41.483393467],[-71.602078565,41.483408467],[-71.602175565,41.483417468],[-71.602386565,41.483427467],[-71.602599565,41.483422468],[-71.602692565,41.483434468],[-71.602759565,41.483464467],[-71.602808565,41.483523467],[-71.602796565,41.483586467],[-71.602624565,41.483721467],[-71.602560565,41.483756467],[-71.602550565,41.483803468],[-71.602588566,41.483857467],[-71.602651565,41.483921468],[-71.602685566,41.483971467],[-71.602652565,41.484058468],[-71.602620565,41.484118468],[-71.602597565,41.484175468],[-71.602591565,41.484233468],[-71.602600565,41.484313468],[-71.602654565,41.484380467],[-71.602754565,41.484476468],[-71.602819565,41.484523468],[-71.602826565,41.484547468],[-71.602884565,41.484595467],[-71.602952565,41.484636467],[-71.603040565,41.484678468],[-71.603137565,41.484717468],[-71.603318565,41.484777468],[-71.603580566,41.484846468],[-71.603656566,41.484877468],[-71.603721565,41.484915468],[-71.603778565,41.484959468],[-71.604002566,41.485172468],[-71.604050566,41.485226468],[-71.604093565,41.485289468],[-71.604129565,41.485358468],[-71.604192565,41.485501468],[-71.604237566,41.485583468],[-71.604300566,41.485664468],[-71.604368566,41.485734468],[-71.604505566,41.485858468],[-71.604559565,41.485912468],[-71.604585566,41.485965468],[-71.604569566,41.486015468],[-71.604509566,41.486059468],[-71.604436566,41.486094468],[-71.604263566,41.486165468],[-71.604231566,41.486215468],[-71.604213566,41.486277468],[-71.604222566,41.486336468],[-71.604241566,41.486397468],[-71.604273566,41.486459468],[-71.604318566,41.486519468],[-71.604372566,41.486572468],[-71.604493566,41.486668468],[-71.604961566,41.486976468],[-71.605045566,41.487036468],[-71.605271566,41.487223468],[-71.605336567,41.487271468],[-71.605412566,41.487314468],[-71.605777566,41.487473468],[-71.605876566,41.487501468],[-71.605981567,41.487514468],[-71.606087566,41.487516469],[-71.606264566,41.487512468],[-71.606346567,41.487501468],[-71.606663567,41.487433468],[-71.606909567,41.487405468],[-71.607321567,41.487329468],[-71.607413567,41.487320468],[-71.607996567,41.487311468],[-71.608167567,41.487322468],[-71.608256567,41.487338468],[-71.608332567,41.487369468],[-71.608412567,41.487412468],[-71.608493567,41.487463468],[-71.608634567,41.487569468],[-71.608704567,41.487612468],[-71.608844568,41.487687468],[-71.608914567,41.487745468],[-71.608921568,41.487808468],[-71.608871567,41.487875468],[-71.608830567,41.487945469],[-71.608822567,41.488006469],[-71.608826568,41.488129468],[-71.608812567,41.488184468],[-71.608768568,41.488232468],[-71.608629568,41.488326468],[-71.608608567,41.488380468],[-71.608611568,41.488444468],[-71.608649568,41.488513469],[-71.608676567,41.488584468],[-71.608679567,41.488657468],[-71.608649568,41.488725469],[-71.608605567,41.488770468],[-71.608552568,41.488813468],[-71.608486567,41.488875468],[-71.608393567,41.488986468],[-71.608361567,41.489039469],[-71.608356567,41.489173469],[-71.608320568,41.489234469],[-71.608258567,41.489294469],[-71.608205567,41.489336468],[-71.608065567,41.489428469],[-71.608014567,41.489484469],[-71.608003567,41.489545469],[-71.608006567,41.489611468],[-71.608026567,41.489680469],[-71.608055567,41.489752469],[-71.608066568,41.489829469],[-71.608068568,41.489908469],[-71.608058567,41.489981468],[-71.607966567,41.490110469],[-71.607936567,41.490176468],[-71.607932567,41.490243469],[-71.607938567,41.490302469],[-71.607979567,41.490347469],[-71.608048568,41.490373469],[-71.608137567,41.490380469],[-71.608224568,41.490367468],[-71.608315567,41.490344469],[-71.608392567,41.490349468],[-71.608429567,41.490388468],[-71.608441567,41.490448468],[-71.608444567,41.490518469],[-71.608411567,41.490675469],[-71.608372567,41.490817468],[-71.608367567,41.490882469],[-71.608370567,41.490943469],[-71.608387567,41.490999469],[-71.608437568,41.491120469],[-71.608453568,41.491187468],[-71.608458568,41.491309469],[-71.608444567,41.491363469],[-71.608408567,41.491418469],[-71.608384567,41.491483469],[-71.608380568,41.491550469],[-71.608384567,41.491617469],[-71.608434568,41.491742469],[-71.608447567,41.491811469],[-71.608424567,41.491876469],[-71.608363567,41.491929469],[-71.608288567,41.491975469],[-71.608222568,41.492026469],[-71.608181568,41.492078469],[-71.608175567,41.492154469],[-71.608202568,41.492217469],[-71.608254567,41.492260469],[-71.608322567,41.492298469],[-71.608399568,41.492350469],[-71.608439567,41.492396469],[-71.608473568,41.492450469],[-71.608589568,41.492672469],[-71.608623567,41.492752469],[-71.608640567,41.49282147],[-71.608645568,41.49288247],[-71.608617567,41.492952469],[-71.608541567,41.492988469],[-71.608366567,41.493014469],[-71.608136567,41.493092469],[-71.608063568,41.493126469],[-71.608002567,41.493165469],[-71.607958567,41.49321047],[-71.607922567,41.49326747],[-71.607773568,41.493577469],[-71.607717568,41.493749469],[-71.607690567,41.49381247],[-71.607625567,41.49387447],[-71.607558568,41.49389647],[-71.607510567,41.493863469],[-71.607470567,41.493799469],[-71.607409567,41.49373847],[-71.607326568,41.49371947],[-71.607251567,41.49375547],[-71.607203567,41.493824469],[-71.607195567,41.493881469],[-71.607197567,41.49394847],[-71.607201567,41.494093469],[-71.607216567,41.49416947],[-71.607247568,41.494233469],[-71.607282567,41.494289469],[-71.607336567,41.494350469],[-71.607400567,41.494365469],[-71.607446567,41.494307469],[-71.607449567,41.494177469],[-71.607501568,41.49410747],[-71.607579568,41.494098469],[-71.607657568,41.494198469],[-71.607702567,41.494248469],[-71.607786567,41.49428647],[-71.607884567,41.49425847],[-71.607970568,41.49421947],[-71.608057567,41.494214469],[-71.608139568,41.49422447],[-71.608166567,41.49425947],[-71.608169567,41.49442047],[-71.608147567,41.49447547],[-71.608098567,41.494522469],[-71.608028568,41.49455547],[-71.607874567,41.494603469],[-71.607808568,41.49463747],[-71.607768567,41.49470947],[-71.607769568,41.49476447],[-71.607791568,41.494818469],[-71.607880567,41.49490947],[-71.607945568,41.49494047],[-71.608034567,41.49494747],[-71.608108567,41.49498247],[-71.608157568,41.49504447],[-71.608172567,41.49511347],[-71.608154567,41.49517747],[-71.608126568,41.49523747],[-71.608113567,41.49529947],[-71.608113567,41.49535947],[-71.608162568,41.49542747],[-71.608229567,41.495457469],[-71.608329567,41.49546647],[-71.608413568,41.49542647],[-71.608466568,41.49537147],[-71.608472568,41.49530847],[-71.608504567,41.49525647],[-71.608581567,41.49523647],[-71.608655567,41.49523547],[-71.608739568,41.495243469],[-71.608820568,41.49527447],[-71.608881568,41.495321469],[-71.608930567,41.49537447],[-71.608966567,41.495441469],[-71.609027568,41.49558947],[-71.609047568,41.495655469],[-71.609035568,41.49572847],[-71.608989568,41.49579947],[-71.608925568,41.49586547],[-71.608850567,41.49591847],[-71.608771567,41.49595847],[-71.608690568,41.49598047],[-71.608608568,41.49599447],[-71.608533568,41.49601947],[-71.608468568,41.49606147],[-71.608416568,41.49611247],[-71.608382567,41.49616747],[-71.608377568,41.49622247],[-71.608421567,41.49626647],[-71.608440567,41.49628547],[-71.608533568,41.49630547],[-71.608584568,41.496276469],[-71.608632568,41.49622747],[-71.608717568,41.49618147],[-71.608808568,41.49620147],[-71.608854568,41.49624847],[-71.608891568,41.49630647],[-71.608924568,41.49637547],[-71.608973568,41.49652247],[-71.608997568,41.49666547],[-71.608989568,41.49672147],[-71.608971568,41.49674147],[-71.608888567,41.49681847],[-71.608818568,41.49687747],[-71.608768568,41.49693447],[-71.608745568,41.49699047],[-71.608760568,41.49703947],[-71.608815568,41.49707947],[-71.608878568,41.49711847],[-71.608940568,41.49716747],[-71.609002568,41.49723047],[-71.609075568,41.49729047],[-71.609154568,41.49734347],[-71.609239568,41.49739147],[-71.609313568,41.49744547],[-71.609369568,41.49750847],[-71.609414568,41.49758647],[-71.609503568,41.49778247],[-71.609535568,41.49787647],[-71.609543568,41.49795747],[-71.609517568,41.49803147],[-71.609468568,41.49809547],[-71.609416568,41.49815147],[-71.609376568,41.49820947],[-71.609359568,41.49829047],[-71.609413569,41.498400471],[-71.609420568,41.49846347],[-71.609387568,41.498516471],[-71.609304568,41.498537471],[-71.609205568,41.498516471],[-71.609115568,41.49848047],[-71.609031568,41.49846647],[-71.608946568,41.49848547],[-71.608774568,41.49855047],[-71.608721568,41.49860047],[-71.608607568,41.49893747],[-71.608594568,41.499024471],[-71.608656568,41.49907447],[-71.608735568,41.49909147],[-71.608912568,41.499119471],[-71.608992568,41.49916247],[-71.609025568,41.499215471],[-71.609026568,41.499271471],[-71.608965568,41.499315471],[-71.608887568,41.49933847],[-71.608715568,41.49937947],[-71.608640568,41.49940247],[-71.608579568,41.499433471],[-71.608539568,41.499493471],[-71.608553568,41.499567471],[-71.608588568,41.49961847],[-71.608617568,41.499688471],[-71.608577568,41.499739471],[-71.608500568,41.499766471],[-71.608404568,41.499777471],[-71.608304567,41.499762471],[-71.608234568,41.49974747],[-71.608128567,41.499737471],[-71.608056568,41.49978747],[-71.608023568,41.499863471],[-71.608036568,41.499937471],[-71.608108567,41.499991471],[-71.608170568,41.50002047],[-71.608226567,41.50005947],[-71.608259568,41.500132471],[-71.608226567,41.50017747],[-71.608158568,41.500222471],[-71.608092568,41.500269471],[-71.608077568,41.500281471],[-71.608016568,41.500342471],[-71.607973567,41.500418471],[-71.607857567,41.500702471],[-71.607649568,41.501000471],[-71.607544567,41.501146471],[-71.607553568,41.501399471],[-71.607646568,41.501723471],[-71.607676568,41.501929471],[-71.607524567,41.502117471],[-71.607568568,41.502199471],[-71.607724568,41.502488471],[-71.608261568,41.503456471],[-71.608424568,41.503743472],[-71.608437568,41.503766471],[-71.608635568,41.504162471],[-71.608650568,41.504273471],[-71.608681568,41.504357471],[-71.608688568,41.504395471],[-71.608772568,41.504559472],[-71.609332569,41.506665472],[-71.609772569,41.508994472],[-71.609907569,41.509708473],[-71.609923569,41.509737472],[-71.610041569,41.510366473],[-71.610049569,41.510403473],[-71.610220569,41.511237472],[-71.61168457,41.518429475],[-71.61171157,41.518458474],[-71.61174757,41.518627474],[-71.61229557,41.521482475],[-71.61242957,41.522156474],[-71.61248457,41.522433475],[-71.612760571,41.523731475],[-71.613076571,41.525296475]]]]}}"}, +{"type": "precinct", "typeId": 2902, "areaId": 25958, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":297,\"NAME\":\"2902\",\"SHAPE_Length\":0.65661173632217,\"SHAPE_Area\":-0.0058648840770912},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.637829574,41.447119459],[-71.639000575,41.44711046],[-71.639313575,41.447113459],[-71.639481575,41.447132459],[-71.639671575,41.447182459],[-71.639771575,41.447216459],[-71.639877575,41.447270459],[-71.640091575,41.447426459],[-71.640198575,41.447445459],[-71.640472576,41.44755646],[-71.641083576,41.447823459],[-71.641296576,41.447876459],[-71.641678576,41.44794546],[-71.642105576,41.448040459],[-71.642471576,41.44818246],[-71.642303576,41.44839946],[-71.642227576,41.448483459],[-71.642136576,41.44861346],[-71.642120576,41.44865146],[-71.642120576,41.44867046],[-71.642113576,41.448693459],[-71.642113576,41.448716459],[-71.642120576,41.448738459],[-71.642120576,41.448777459],[-71.642128576,41.448796459],[-71.642128576,41.448815459],[-71.642143576,41.44885746],[-71.642189576,41.448933459],[-71.642220576,41.44897546],[-71.642265576,41.44901346],[-71.642357576,41.449063459],[-71.642403576,41.44909346],[-71.642525577,41.44915446],[-71.644035577,41.44982246],[-71.644218577,41.44991346],[-71.644386577,41.45001646],[-71.644646577,41.45023846],[-71.644699577,41.450291459],[-71.644737577,41.45033746],[-71.644783577,41.45038346],[-71.644844577,41.450467459],[-71.644859577,41.45048246],[-71.644867578,41.45050146],[-71.644897577,41.45053546],[-71.644920577,41.45058146],[-71.644951577,41.45062746],[-71.645004578,41.45073446],[-71.645096577,41.450974459],[-71.645164577,41.45122946],[-71.645164577,41.45125646],[-71.645172577,41.45128746],[-71.645172577,41.45133246],[-71.645149577,41.45146246],[-71.645103577,41.45158846],[-71.645073577,41.45163446],[-71.644760577,41.45223346],[-71.644745577,41.452298461],[-71.644745577,41.452435461],[-71.644768578,41.45251946],[-71.644783577,41.45254646],[-71.644897577,41.45268346],[-71.644958577,41.45272946],[-71.644981578,41.45275246],[-71.645065577,41.45280946],[-71.645164577,41.45288546],[-71.645271578,41.452977461],[-71.645325577,41.45303446],[-71.645462577,41.45319846],[-71.645538577,41.453308461],[-71.645584578,41.453389461],[-71.645622578,41.453469461],[-71.645653577,41.45355346],[-71.645653577,41.45365646],[-71.645645578,41.453682461],[-71.645645578,41.45371346],[-71.645569578,41.453930461],[-71.645546578,41.45401846],[-71.645531577,41.45411746],[-71.645515577,41.45417446],[-71.645508578,41.454228461],[-71.645493577,41.454285461],[-71.645439577,41.454651461],[-71.645439577,41.454842461],[-71.645432578,41.454869461],[-71.645432578,41.45489946],[-71.645386578,41.455056461],[-71.645363577,41.455105461],[-71.645348578,41.455159461],[-71.645325577,41.455296461],[-71.645325577,41.455433461],[-71.645332578,41.455468461],[-71.645332578,41.455552461],[-71.645363577,41.45579246],[-71.645378577,41.455857461],[-71.645386578,41.455918461],[-71.645401577,41.455979461],[-71.645432578,41.456219461],[-71.645432578,41.456269461],[-71.645447578,41.456372461],[-71.645462578,41.456417461],[-71.645477577,41.456524461],[-71.645477577,41.456639461],[-71.645500578,41.456784461],[-71.645500578,41.456833461],[-71.645485578,41.456932461],[-71.645485578,41.456978461],[-71.645470578,41.457066461],[-71.645454577,41.457123461],[-71.645439577,41.457230461],[-71.645416577,41.457306461],[-71.645340577,41.457741461],[-71.645294578,41.457959461],[-71.645264577,41.458149462],[-71.645241577,41.458245462],[-71.645103577,41.459137462],[-71.645065577,41.459458461],[-71.645020578,41.459782462],[-71.645004578,41.460072462],[-71.644936578,41.460534462],[-71.645959578,41.461717462],[-71.646137578,41.461866462],[-71.646196297,41.461933438],[-71.646603579,41.461890462],[-71.646850578,41.461894462],[-71.646797579,41.462014462],[-71.646741578,41.462121462],[-71.646814579,41.462192462],[-71.646883578,41.462228462],[-71.647014578,41.462218462],[-71.647107811,41.462191375],[-71.647190134,41.462177758],[-71.647222579,41.462180462],[-71.647250354,41.462201294],[-71.647262579,41.462210462],[-71.647369578,41.462265462],[-71.647407578,41.462269462],[-71.647508378,41.462302135],[-71.647552579,41.462316462],[-71.647820579,41.462607462],[-71.647967579,41.462706462],[-71.648141579,41.462914462],[-71.648153921,41.462954173],[-71.648055579,41.463174462],[-71.648014579,41.463288462],[-71.647945655,41.463346468],[-71.647862579,41.463476462],[-71.647853578,41.463587463],[-71.647856579,41.463712462],[-71.647878579,41.463821463],[-71.647884514,41.463885006],[-71.647912578,41.464185462],[-71.647916579,41.464429463],[-71.647914112,41.464436259],[-71.647842579,41.465493463],[-71.647859579,41.465564462],[-71.647909579,41.465690463],[-71.647964266,41.465748988],[-71.647966579,41.465751463],[-71.647980354,41.46578277],[-71.648121579,41.466067463],[-71.648169579,41.466117463],[-71.648214671,41.466156292],[-71.648277579,41.466210463],[-71.648350175,41.466285591],[-71.648363579,41.466299463],[-71.648385672,41.466319462],[-71.648616735,41.466539945],[-71.648636579,41.466561463],[-71.648673579,41.466660463],[-71.64868117,41.46672625],[-71.648685579,41.466764463],[-71.64874387,41.466817239],[-71.648759579,41.466831463],[-71.64882258,41.466931463],[-71.64884358,41.467042463],[-71.648845347,41.467047432],[-71.64888058,41.467146463],[-71.648883808,41.467243339],[-71.648888579,41.467386463],[-71.648934579,41.467452463],[-71.648968356,41.467484612],[-71.64901758,41.467531463],[-71.649103579,41.467758463],[-71.64913258,41.467869463],[-71.649145662,41.467969218],[-71.649148579,41.467991463],[-71.64918958,41.468052463],[-71.649192145,41.468055598],[-71.64928858,41.468173464],[-71.64929059,41.468238542],[-71.649296579,41.468432463],[-71.649331039,41.468562142],[-71.649334579,41.468575463],[-71.649334265,41.468587944],[-71.64933158,41.468694463],[-71.649339579,41.468810463],[-71.649374252,41.468907841],[-71.64938658,41.468942463],[-71.64940758,41.469174463],[-71.658966583,41.470284463],[-71.658974583,41.470250463],[-71.663826584,41.469395463],[-71.664223584,41.470349463],[-71.664291585,41.470528463],[-71.664345585,41.470700463],[-71.664375584,41.470829463],[-71.664383585,41.470890463],[-71.664383585,41.470932463],[-71.664383585,41.471016463],[-71.664360585,41.471211463],[-71.664215584,41.471825463],[-71.664157584,41.472275463],[-71.664101584,41.472710464],[-71.664040584,41.473259464],[-71.663940585,41.473988464],[-71.663895585,41.474225464],[-71.663788584,41.474783464],[-71.663729584,41.475088464],[-71.663712584,41.475182464],[-71.663574584,41.476155464],[-71.663559585,41.476311464],[-71.663467585,41.476914464],[-71.663376584,41.477307464],[-71.663338584,41.477429465],[-71.663261584,41.477642465],[-71.662941585,41.478402465],[-71.662315584,41.479797465],[-71.662277585,41.479882465],[-71.662102585,41.480336465],[-71.661842584,41.480961465],[-71.661762584,41.481147465],[-71.661537584,41.481667466],[-71.661186584,41.482384466],[-71.660896584,41.482979465],[-71.660759584,41.483307466],[-71.660606584,41.483719465],[-71.660576584,41.483857466],[-71.660561584,41.483982466],[-71.660553584,41.484108466],[-71.660553584,41.484329466],[-71.660553584,41.484761466],[-71.660583584,41.485993466],[-71.660660584,41.486446467],[-71.660675584,41.486534466],[-71.660675584,41.486805466],[-71.660660584,41.486912467],[-71.660637584,41.487156466],[-71.660614584,41.487656466],[-71.660622585,41.487847467],[-71.660622585,41.488007466],[-71.660637584,41.488205466],[-71.660637584,41.488453467],[-71.660652584,41.488678467],[-71.660690584,41.488980467],[-71.660713584,41.489205467],[-71.660736585,41.489598467],[-71.660744584,41.489769467],[-71.660728584,41.490048467],[-71.660713584,41.490845467],[-71.660728584,41.491276467],[-71.660759585,41.491475468],[-71.660789584,41.491722467],[-71.660805584,41.491909467],[-71.660812585,41.492123467],[-71.660805584,41.492176468],[-71.660774585,41.492436467],[-71.660697585,41.492871468],[-71.660576585,41.493561468],[-71.660492584,41.493954468],[-71.660431584,41.494477468],[-71.660408585,41.494713468],[-71.660408585,41.494751468],[-71.660393584,41.494904468],[-71.660347585,41.495743468],[-71.660286585,41.496235469],[-71.660278584,41.496342468],[-71.660210585,41.496937469],[-71.660151585,41.497344469],[-71.660012585,41.498528469],[-71.659981585,41.498791469],[-71.659973585,41.498906469],[-71.659966584,41.498982469],[-71.659935585,41.499150469],[-71.659866584,41.499367469],[-71.659614584,41.50025347],[-71.659549585,41.500400469],[-71.659484585,41.500570469],[-71.659416585,41.500920469],[-71.659279585,41.501454469],[-71.659050584,41.502072469],[-71.658920585,41.50247647],[-71.658791585,41.50297647],[-71.658779584,41.50301447],[-71.658739584,41.50325147],[-71.658724584,41.50334547],[-71.658666584,41.503629469],[-71.658615585,41.50387947],[-71.658554585,41.50426947],[-71.658554585,41.50440647],[-71.658600584,41.50458647],[-71.658630585,41.50465047],[-71.658791585,41.50489547],[-71.658920585,41.50507047],[-71.659004585,41.50521947],[-71.659073585,41.50537547],[-71.659119585,41.50558947],[-71.659142585,41.505772471],[-71.659309585,41.50676847],[-71.659431585,41.507641471],[-71.659515585,41.50817547],[-71.659676585,41.50912947],[-71.659721585,41.509358471],[-71.659813585,41.509713471],[-71.659874585,41.510041471],[-71.659897585,41.510109471],[-71.659927585,41.510250471],[-71.659958586,41.510510471],[-71.659958586,41.510559471],[-71.659966585,41.510609472],[-71.659966585,41.510846471],[-71.659950585,41.511128471],[-71.659948585,41.511223471],[-71.659943585,41.511452471],[-71.659927585,41.511803471],[-71.659897585,41.512223472],[-71.659874585,41.512341472],[-71.659859586,41.512448471],[-71.659843586,41.512501471],[-71.659836585,41.512555472],[-71.659821586,41.512604471],[-71.659752585,41.512749472],[-71.659683585,41.512837471],[-71.659386585,41.513161472],[-71.659363585,41.513230472],[-71.659363585,41.513306471],[-71.659378585,41.513340471],[-71.659409585,41.513386472],[-71.659561585,41.513497471],[-71.659668586,41.513558471],[-71.659790585,41.513649472],[-71.659843586,41.513695471],[-71.659920586,41.513787472],[-71.659950585,41.513832472],[-71.660088585,41.513981472],[-71.660324586,41.514305472],[-71.660430586,41.514471471],[-71.660524586,41.514616472],[-71.660774586,41.515006472],[-71.661064586,41.515507472],[-71.661377586,41.516018472],[-71.661407586,41.516083472],[-71.661446586,41.516144472],[-71.661613586,41.516373472],[-71.661789586,41.516575473],[-71.661835586,41.516636472],[-71.662209586,41.517079473],[-71.662506586,41.517384472],[-71.662567587,41.517453473],[-71.662712586,41.517601472],[-71.662781587,41.517681473],[-71.662949586,41.517891472],[-71.662987586,41.517956473],[-71.663040587,41.518032473],[-71.663078587,41.518113473],[-71.663124586,41.518189473],[-71.663200586,41.518345473],[-71.663231587,41.518425473],[-71.663261586,41.518486473],[-71.663284587,41.518547472],[-71.663345587,41.518669472],[-71.663383587,41.518734473],[-71.663513586,41.518933473],[-71.663551586,41.519005473],[-71.663567587,41.519055472],[-71.663574587,41.519112473],[-71.663589587,41.519165473],[-71.663612587,41.519287473],[-71.663696587,41.519505472],[-71.663704587,41.519566473],[-71.663715587,41.519610473],[-71.663765587,41.519734473],[-71.663834587,41.519833473],[-71.663971587,41.519993473],[-71.664215587,41.520317473],[-71.664261587,41.520367473],[-71.664337587,41.520466473],[-71.664413587,41.520596473],[-71.664436587,41.520665473],[-71.664482588,41.520764473],[-71.664520587,41.520874473],[-71.664597587,41.521199473],[-71.664597587,41.521431473],[-71.664604587,41.521500473],[-71.664604587,41.521569474],[-71.664619588,41.521641473],[-71.664627587,41.521717473],[-71.664673587,41.521984473],[-71.664691587,41.522030473],[-71.664703587,41.522061473],[-71.664726587,41.522107473],[-71.664764587,41.522152474],[-71.664864587,41.522290474],[-71.664909588,41.522343473],[-71.664955587,41.522385474],[-71.665016587,41.522427474],[-71.665217588,41.522600474],[-71.665194587,41.522657474],[-71.665212587,41.523320474],[-71.665196588,41.523550474],[-71.665211587,41.523641473],[-71.665290587,41.523760473],[-71.665366587,41.523857473],[-71.665463587,41.523943474],[-71.665581587,41.524015473],[-71.665608588,41.524138474],[-71.665621588,41.524246473],[-71.665613588,41.524397473],[-71.665614588,41.524645474],[-71.665621588,41.524762474],[-71.665720588,41.524840474],[-71.665722588,41.524950474],[-71.665744588,41.525067474],[-71.665794588,41.525153474],[-71.665866588,41.525253474],[-71.665908588,41.525398474],[-71.665901588,41.525462474],[-71.665926588,41.525511473],[-71.665939588,41.525620474],[-71.665935588,41.525734474],[-71.665946588,41.525848474],[-71.665961588,41.525897474],[-71.666206588,41.525734474],[-71.666206588,41.525811474],[-71.666191588,41.525967474],[-71.666130588,41.526421474],[-71.666130588,41.526520474],[-71.666145588,41.526623474],[-71.666145588,41.526673474],[-71.666298589,41.527367474],[-71.666405588,41.528073474],[-71.666512589,41.528824474],[-71.666618588,41.529698475],[-71.666718588,41.530285475],[-71.666878589,41.531147475],[-71.666878589,41.531193475],[-71.666885589,41.531220475],[-71.666885589,41.531250475],[-71.666893589,41.531281475],[-71.666893589,41.531342475],[-71.666908588,41.531433475],[-71.666939589,41.531548475],[-71.667030589,41.532067475],[-71.667068589,41.532326475],[-71.667068589,41.532383475],[-71.667053589,41.532513475],[-71.667038589,41.532582475],[-71.666977589,41.533059475],[-71.666929589,41.533466475],[-71.666885589,41.534130475],[-71.666870589,41.534752476],[-71.666855589,41.534890475],[-71.666840589,41.534970475],[-71.666809588,41.535134476],[-71.666801589,41.535202475],[-71.666786589,41.535275476],[-71.666771588,41.535431476],[-71.666771589,41.535656476],[-71.666763589,41.535675476],[-71.666763589,41.536103476],[-71.666779589,41.536587476],[-71.666748589,41.536827476],[-71.666748589,41.536877476],[-71.666740589,41.536930476],[-71.666725589,41.536984476],[-71.666702589,41.537033476],[-71.666687589,41.537087476],[-71.666626589,41.537220476],[-71.666580589,41.537358476],[-71.666542589,41.537667476],[-71.666481589,41.538475477],[-71.666450589,41.538956476],[-71.666389589,41.539280476],[-71.666374589,41.539414476],[-71.666359588,41.539479476],[-71.666351589,41.539547477],[-71.666306589,41.539750476],[-71.666283589,41.539826476],[-71.666252589,41.540013477],[-71.666252589,41.540219477],[-71.666267589,41.540421477],[-71.666267589,41.540516477],[-71.666275589,41.540554477],[-71.666275589,41.540699477],[-71.666267589,41.540757477],[-71.666267589,41.540810477],[-71.666130589,41.541859477],[-71.666069589,41.542431477],[-71.665614589,41.542759477],[-71.664966589,41.543233478],[-71.664471588,41.543590477],[-71.664265589,41.543740478],[-71.663975589,41.543962477],[-71.663841589,41.544068478],[-71.663322588,41.544503478],[-71.662224588,41.545468478],[-71.660995588,41.546505478],[-71.660385588,41.547009478],[-71.659607587,41.547661479],[-71.658913587,41.548230478],[-71.658859587,41.548279479],[-71.657791587,41.549065479],[-71.657318586,41.549420478],[-71.656830586,41.549797479],[-71.656494586,41.550049479],[-71.656075586,41.550351479],[-71.655273586,41.550911479],[-71.655005586,41.55109448],[-71.654831586,41.551213479],[-71.654320586,41.551628479],[-71.654266586,41.551686479],[-71.653961585,41.55198748],[-71.653435585,41.552525479],[-71.651924585,41.55404348],[-71.651077585,41.55490548],[-71.650779584,41.55521948],[-71.650276584,41.55574848],[-71.649681585,41.55634348],[-71.649239584,41.55680948],[-71.648743584,41.55730148],[-71.648239584,41.557839481],[-71.647781584,41.558285481],[-71.647362584,41.558686481],[-71.647281584,41.558758481],[-71.646469583,41.559502481],[-71.646462584,41.559510481],[-71.646378583,41.559605481],[-71.646332583,41.559636482],[-71.646294583,41.559666481],[-71.646106583,41.559791482],[-71.645782584,41.559986482],[-71.645599583,41.559872481],[-71.644958583,41.559418481],[-71.644913583,41.559380481],[-71.644798583,41.559266481],[-71.644768583,41.559224481],[-71.644577582,41.559018481],[-71.644547583,41.558976481],[-71.644165583,41.558533481],[-71.643906583,41.558312481],[-71.643776582,41.558216481],[-71.643608582,41.55813648],[-71.643402583,41.558064481],[-71.643112583,41.557969481],[-71.642799583,41.557866481],[-71.642387582,41.557740481],[-71.642273582,41.557709481],[-71.642212582,41.557698481],[-71.642044582,41.55764848],[-71.641800582,41.557564481],[-71.641510582,41.557442481],[-71.640953581,41.557179481],[-71.640823582,41.557125481],[-71.640671582,41.557080481],[-71.640533582,41.55704548],[-71.640388581,41.557022481],[-71.640236581,41.557011481],[-71.640060581,41.557019481],[-71.639977581,41.557030481],[-71.639755581,41.557072481],[-71.639244581,41.557217481],[-71.639023581,41.557270481],[-71.638863581,41.557293481],[-71.638710581,41.55729748],[-71.638557581,41.557293481],[-71.638405581,41.557282481],[-71.637276581,41.55706448],[-71.63715458,41.557030481],[-71.637024581,41.556977481],[-71.63693258,41.556931481],[-71.63626958,41.55653848],[-71.63617758,41.556473481],[-71.63607858,41.556412481],[-71.63606358,41.556481481],[-71.63604758,41.556523481],[-71.63603258,41.55659548],[-71.63588058,41.557034481],[-71.63569658,41.557515481],[-71.635490579,41.558079481],[-71.63524658,41.558728481],[-71.63507858,41.559201482],[-71.63485058,41.559777481],[-71.63459858,41.560479481],[-71.63407958,41.561982482],[-71.63378958,41.562664482],[-71.63372858,41.562836482],[-71.635585581,41.562639482],[-71.638852581,41.562289481],[-71.642483582,41.561920481],[-71.643974582,41.561768481],[-71.644898583,41.561688481],[-71.646448583,41.561493481],[-71.646990584,41.561435481],[-71.647063584,41.561428482],[-71.650297585,41.561108481],[-71.650406585,41.561087481],[-71.652246585,41.560859481],[-71.652672585,41.560806482],[-71.653980586,41.560640481],[-71.656311587,41.560394481],[-71.657419587,41.560283481],[-71.660508589,41.559962481],[-71.661430588,41.559862481],[-71.663254589,41.559693481],[-71.663399589,41.55967748],[-71.66615659,41.55938348],[-71.66684259,41.55929748],[-71.66704659,41.55927748],[-71.66728959,41.55924748],[-71.66776359,41.55919748],[-71.667839591,41.55917848],[-71.66823459,41.55913548],[-71.66868059,41.559088481],[-71.670995592,41.55882248],[-71.678500594,41.55797648],[-71.682997595,41.55752848],[-71.684288596,41.557381479],[-71.685739596,41.557189479],[-71.691574598,41.556568479],[-71.692622599,41.556423479],[-71.692762599,41.556405479],[-71.692835599,41.556402479],[-71.695011599,41.556192479],[-71.6964786,41.556068478],[-71.6972866,41.556035479],[-71.6983866,41.555866479],[-71.698496601,41.555840479],[-71.6995766,41.555729479],[-71.701683601,41.555473479],[-71.704144602,41.555223479],[-71.709732604,41.554651478],[-71.713222605,41.554281478],[-71.714753606,41.554127478],[-71.714963605,41.554103478],[-71.714933606,41.554069478],[-71.714891606,41.554020477],[-71.714787605,41.553918478],[-71.714611605,41.553703478],[-71.714527606,41.553611477],[-71.714458605,41.553512478],[-71.714347606,41.553397477],[-71.714249605,41.553314478],[-71.714225605,41.553293478],[-71.714126605,41.553195478],[-71.714068605,41.553089478],[-71.714016605,41.552963478],[-71.714007605,41.552879478],[-71.714061605,41.552764478],[-71.714131605,41.552631478],[-71.714162605,41.552582477],[-71.714194606,41.552527478],[-71.714269605,41.552417478],[-71.714360605,41.552311477],[-71.714454605,41.552210477],[-71.714540605,41.552085478],[-71.714639606,41.551986478],[-71.714751605,41.551902477],[-71.714798606,41.551821477],[-71.714776606,41.551729477],[-71.714689605,41.551661477],[-71.714409606,41.551576478],[-71.714278605,41.551529477],[-71.714195606,41.551463478],[-71.714130605,41.551358477],[-71.714031605,41.551247478],[-71.713922605,41.551162477],[-71.713806605,41.551084477],[-71.713755605,41.551002477],[-71.713675605,41.550752477],[-71.713615605,41.550618477],[-71.713544605,41.550518477],[-71.713443605,41.550407477],[-71.713367605,41.550284477],[-71.713277605,41.550157478],[-71.713205604,41.550028477],[-71.713111605,41.549952477],[-71.712983605,41.549943478],[-71.712855604,41.549977477],[-71.712811605,41.550064477],[-71.712814604,41.550195478],[-71.712803605,41.550307477],[-71.712736604,41.550363477],[-71.712586605,41.550400477],[-71.712411604,41.550390478],[-71.712262605,41.550346477],[-71.712140604,41.550270477],[-71.712022604,41.550175478],[-71.711882604,41.550106477],[-71.711734605,41.550089477],[-71.711561605,41.550093477],[-71.711412604,41.550120477],[-71.711271604,41.550159477],[-71.711128604,41.550209477],[-71.711031604,41.550209477],[-71.710941604,41.550153477],[-71.710913604,41.550088477],[-71.710969604,41.550015477],[-71.711270605,41.549919477],[-71.711359604,41.549845478],[-71.711388604,41.549785477],[-71.711364604,41.549725477],[-71.711222604,41.549640477],[-71.711059604,41.549567477],[-71.710905604,41.549491477],[-71.710728604,41.549445477],[-71.710432604,41.549421477],[-71.710261604,41.549386477],[-71.710109604,41.549342477],[-71.710068604,41.549313477],[-71.710134604,41.549209477],[-71.710152604,41.549075477],[-71.710145603,41.548934477],[-71.710089604,41.548826477],[-71.710001604,41.548741477],[-71.709884604,41.548671477],[-71.709755603,41.548615477],[-71.709603603,41.548538477],[-71.709387603,41.548157477],[-71.709351603,41.548065477],[-71.709382603,41.548043477],[-71.709526603,41.548047477],[-71.709557603,41.548010477],[-71.709515604,41.547891477],[-71.709448603,41.547753477],[-71.709372603,41.547649477],[-71.709243603,41.547569477],[-71.709100603,41.547560477],[-71.708954603,41.547602477],[-71.708777603,41.547638477],[-71.708612603,41.547606476],[-71.708505603,41.547544477],[-71.708422603,41.547432477],[-71.708377603,41.547314476],[-71.708267603,41.547259477],[-71.707949603,41.547173477],[-71.707772603,41.547139476],[-71.707452602,41.547106477],[-71.707300603,41.547086477],[-71.707154603,41.547080476],[-71.707008602,41.547090477],[-71.706887602,41.547129477],[-71.706785603,41.547211477],[-71.706581602,41.547430476],[-71.706457602,41.547519477],[-71.706213602,41.547681477],[-71.706078603,41.547750477],[-71.705788603,41.547827477],[-71.705552602,41.547867477],[-71.705455602,41.547885477],[-71.705294602,41.547932477],[-71.705145602,41.547994477],[-71.705038602,41.548091477],[-71.704850602,41.548291477],[-71.704784602,41.548398477],[-71.704720602,41.548516477],[-71.704654602,41.548673477],[-71.704622601,41.548751477],[-71.704555602,41.548866477],[-71.704477602,41.548987478],[-71.704440602,41.549098477],[-71.704404602,41.549147477],[-71.704331601,41.549128477],[-71.704203602,41.549054477],[-71.704048602,41.549001477],[-71.703967602,41.549008477],[-71.703704602,41.549127477],[-71.703410602,41.549275478],[-71.703243601,41.549335478],[-71.702949601,41.549376478],[-71.702540601,41.549331477],[-71.702273601,41.549208477],[-71.701975601,41.549008477],[-71.701806601,41.548838477],[-71.701693601,41.548755477],[-71.7016576,41.548738477],[-71.7015796,41.548708477],[-71.701507601,41.548684477],[-71.701282601,41.548646477],[-71.7011126,41.548619477],[-71.7009766,41.548626477],[-71.700981601,41.548742477],[-71.700931601,41.548811478],[-71.700835601,41.548859477],[-71.700717601,41.548868478],[-71.7005336,41.548825477],[-71.7003896,41.548749478],[-71.7003516,41.548675478],[-71.700344601,41.548531477],[-71.7003136,41.548375477],[-71.7002416,41.548253477],[-71.6999126,41.547873477],[-71.699897601,41.547843477],[-71.6998446,41.547794477],[-71.699724601,41.547718477],[-71.699686601,41.547670477],[-71.6997216,41.547607477],[-71.6997346,41.547539477],[-71.6997296,41.547472477],[-71.6997686,41.547403477],[-71.6997396,41.547335477],[-71.6996816,41.547283477],[-71.6996346,41.547217477],[-71.6995846,41.547087477],[-71.6995906,41.547024477],[-71.699588601,41.546952477],[-71.6995626,41.546885477],[-71.6995216,41.546746477],[-71.6993766,41.546440477],[-71.6993586,41.546379477],[-71.6993046,41.546058477],[-71.6992826,41.545991477],[-71.6992306,41.545980477],[-71.6991676,41.546007476],[-71.6991116,41.546041477],[-71.6990826,41.546086477],[-71.6990816,41.546157477],[-71.6990566,41.546220476],[-71.6990116,41.546209477],[-71.6989376,41.546146477],[-71.6988906,41.546106477],[-71.6988586,41.546056477],[-71.6988466,41.546001477],[-71.6988426,41.545946477],[-71.6988626,41.545887477],[-71.6988986,41.545828477],[-71.6989536,41.545780477],[-71.6990826,41.545721477],[-71.6991386,41.545687477],[-71.6991816,41.545643477],[-71.6992076,41.545586477],[-71.6992156,41.545520476],[-71.6992006,41.545447477],[-71.6991696,41.545371477],[-71.6990586,41.545158477],[-71.6989786,41.544942477],[-71.698948599,41.544877476],[-71.698908599,41.544818476],[-71.698888599,41.544750477],[-71.6988926,41.544680476],[-71.6988876,41.544611477],[-71.6988596,41.544549476],[-71.6988266,41.544493477],[-71.698774599,41.544450476],[-71.6987476,41.544490476],[-71.6987506,41.544647476],[-71.6987216,41.544771477],[-71.6987446,41.544833477],[-71.6988416,41.544953476],[-71.698870599,41.545015476],[-71.698868599,41.545086477],[-71.6988186,41.545101477],[-71.698751599,41.545078477],[-71.6986786,41.545067477],[-71.698673599,41.545093476],[-71.698733599,41.545142477],[-71.6987966,41.545205477],[-71.6988426,41.545270477],[-71.698868599,41.545327476],[-71.6988566,41.545377477],[-71.6987626,41.545416477],[-71.698657599,41.545412477],[-71.6985426,41.545381476],[-71.6984296,41.545332477],[-71.6983006,41.545282477],[-71.698226599,41.545258477],[-71.697624599,41.545095477],[-71.6974976,41.545056477],[-71.697386599,41.545017477],[-71.6971876,41.544927477],[-71.697101599,41.544880477],[-71.697040599,41.544823477],[-71.696990599,41.544757476],[-71.696947599,41.544687477],[-71.696920599,41.544613477],[-71.696913599,41.544538477],[-71.6969366,41.544466476],[-71.696988599,41.544397477],[-71.697068599,41.544337477],[-71.697175599,41.544292476],[-71.697314599,41.544258476],[-71.697389599,41.544244477],[-71.6976006,41.544214476],[-71.6977326,41.544209477],[-71.697955599,41.544218476],[-71.698050599,41.544206477],[-71.698131599,41.544185477],[-71.698210599,41.544146477],[-71.698288599,41.544021476],[-71.6982636,41.543967476],[-71.6982046,41.543897477],[-71.6980986,41.543799477],[-71.6979666,41.543700477],[-71.6978906,41.543652476],[-71.6978116,41.543608476],[-71.6977326,41.543572476],[-71.697651599,41.543544477],[-71.697582599,41.543510476],[-71.697472599,41.543422476],[-71.697415599,41.543385477],[-71.697372599,41.543363476],[-71.697353599,41.543353476],[-71.6972876,41.543329477],[-71.697184599,41.543320476],[-71.697116599,41.543292477],[-71.697091599,41.543240476],[-71.697077599,41.543170476],[-71.697041599,41.543116477],[-71.6969956,41.543065476],[-71.696926599,41.543007476],[-71.696852599,41.542958477],[-71.696862599,41.542885476],[-71.696893599,41.542826476],[-71.696910599,41.542765477],[-71.696896599,41.542710476],[-71.696810599,41.542616476],[-71.696808599,41.542537476],[-71.696818599,41.542476476],[-71.696806599,41.542419476],[-71.696790599,41.542383476],[-71.696775599,41.542350476],[-71.696773599,41.542280476],[-71.696750599,41.542207476],[-71.696778599,41.542150476],[-71.696802599,41.542087476],[-71.696802599,41.542025477],[-71.696780599,41.541969476],[-71.696733599,41.541915476],[-71.696662599,41.541945476],[-71.696616599,41.541891476],[-71.696592599,41.541784476],[-71.696556599,41.541730476],[-71.696402599,41.541568476],[-71.696298599,41.541480476],[-71.696220598,41.541386476],[-71.696149599,41.541269476],[-71.696112599,41.541255476],[-71.696041598,41.541251476],[-71.696027599,41.541233476],[-71.695985598,41.541181476],[-71.695962599,41.541120476],[-71.695952599,41.541062476],[-71.695952599,41.540927476],[-71.695942599,41.540851476],[-71.695899599,41.540729476],[-71.695920599,41.540676476],[-71.695922599,41.540656476],[-71.695963598,41.540621476],[-71.695994599,41.540487475],[-71.696018599,41.540369475],[-71.696039599,41.540086476],[-71.696039599,41.540031476],[-71.696057599,41.539962475],[-71.696103598,41.539902475],[-71.696196599,41.539805475],[-71.696332599,41.539721476],[-71.696409599,41.539686476],[-71.696483599,41.539664476],[-71.696559599,41.539688475],[-71.696682599,41.539761476],[-71.696746599,41.539787475],[-71.696815599,41.539802476],[-71.696907599,41.539812476],[-71.696984599,41.539812476],[-71.697065599,41.539806475],[-71.697229599,41.539782476],[-71.697393599,41.539745475],[-71.697464599,41.539722476],[-71.697530599,41.539676476],[-71.697569599,41.539617476],[-71.697609599,41.539569476],[-71.697666599,41.539533475],[-71.697732599,41.539509476],[-71.697925599,41.539464476],[-71.6979886,41.539416475],[-71.6980676,41.539378475],[-71.6982046,41.539322475],[-71.698265599,41.539287476],[-71.698366599,41.539171476],[-71.698423599,41.539113476],[-71.6984736,41.539047475],[-71.698517599,41.538978476],[-71.698537599,41.538922476],[-71.698544599,41.538866476],[-71.698542599,41.538812475],[-71.698526599,41.538735475],[-71.698508599,41.538683475],[-71.698482599,41.538629476],[-71.6983796,41.538464475],[-71.698332599,41.538407475],[-71.698180599,41.538260476],[-71.698065599,41.538188475],[-71.698011599,41.538147475],[-71.697720599,41.537845475],[-71.697628599,41.537725475],[-71.697545599,41.537598476],[-71.697485599,41.537472475],[-71.697451599,41.537343475],[-71.697403599,41.537208476],[-71.697368599,41.537072476],[-71.697345599,41.536932475],[-71.697319599,41.536671475],[-71.697314599,41.536544475],[-71.697301599,41.536470475],[-71.697288599,41.536324475],[-71.697291598,41.536214475],[-71.697295599,41.536099475],[-71.697313599,41.536028475],[-71.697316599,41.535900475],[-71.697298599,41.535837475],[-71.697246599,41.535826474],[-71.697263599,41.535752475],[-71.697266599,41.535680475],[-71.697255599,41.535602475],[-71.697300599,41.535488475],[-71.697316599,41.535432475],[-71.697320599,41.535374475],[-71.697307599,41.535317475],[-71.697259599,41.535183474],[-71.697229599,41.535132475],[-71.697189599,41.535082475],[-71.697095598,41.534983475],[-71.696950599,41.534903475],[-71.696683599,41.534738474],[-71.696618599,41.534694474],[-71.696407599,41.534494475],[-71.696272599,41.534375475],[-71.696180598,41.534284475],[-71.696007598,41.534146475],[-71.695889598,41.534090474],[-71.695827598,41.534044475],[-71.695597598,41.533948475],[-71.695485598,41.533889475],[-71.695374598,41.533800474],[-71.695275598,41.533708474],[-71.695158598,41.533591474],[-71.695121598,41.533538475],[-71.695098598,41.533515475],[-71.695007597,41.533355474],[-71.694971598,41.533281475],[-71.694943598,41.533207475],[-71.694934598,41.533132475],[-71.694962598,41.533054475],[-71.695077598,41.532905474],[-71.695106598,41.532833474],[-71.695081598,41.532777475],[-71.695001598,41.532791474],[-71.694880598,41.532863474],[-71.694812597,41.532885474],[-71.694733598,41.532890474],[-71.694659597,41.532881474],[-71.694611598,41.532865474],[-71.694656597,41.532785474],[-71.694689598,41.532705474],[-71.694741598,41.532544475],[-71.694770598,41.532470475],[-71.694883598,41.532264474],[-71.695000598,41.532079475],[-71.695031598,41.532022475],[-71.695083598,41.531904475],[-71.695149598,41.531790474],[-71.695227598,41.531685474],[-71.695271598,41.531637474],[-71.695326598,41.531596474],[-71.695390598,41.531558474],[-71.695465598,41.531525474],[-71.695544598,41.531497474],[-71.695695598,41.531451474],[-71.695841598,41.531427474],[-71.696032598,41.531385474],[-71.696099598,41.531355474],[-71.696140598,41.531308474],[-71.696161598,41.531246474],[-71.696167598,41.531050474],[-71.696160598,41.531023474],[-71.696110598,41.531057474],[-71.696068598,41.531104474],[-71.696014598,41.531142474],[-71.695934598,41.531164474],[-71.695921598,41.531147474],[-71.696076598,41.530862474],[-71.696120598,41.530749474],[-71.696164598,41.530691474],[-71.696242598,41.530635474],[-71.696367598,41.530569474],[-71.696561598,41.530474474],[-71.696625599,41.530420474],[-71.696646598,41.530354474],[-71.696643599,41.530280474],[-71.696576598,41.530112473],[-71.696549598,41.530060474],[-71.696494598,41.530018474],[-71.696419598,41.530058474],[-71.696348598,41.530076474],[-71.696271598,41.530050474],[-71.696237598,41.529991474],[-71.696251598,41.529936473],[-71.696310598,41.529824474],[-71.696308598,41.529768474],[-71.696276598,41.529708474],[-71.696187598,41.529579474],[-71.696091598,41.529469473],[-71.695819598,41.529139473],[-71.695722598,41.529006473],[-71.695644598,41.528874474],[-71.695558598,41.528750473],[-71.695470598,41.528649473],[-71.695420598,41.528605474],[-71.695362598,41.528568474],[-71.695295598,41.528548474],[-71.695192598,41.528569474],[-71.695113598,41.528606474],[-71.694959598,41.528661474],[-71.694873597,41.528682474],[-71.694771598,41.528696474],[-71.694585597,41.528706474],[-71.694013597,41.528699474],[-71.693936597,41.528690473],[-71.693872598,41.528656474],[-71.693819597,41.528607474],[-71.693719598,41.528590473],[-71.693633597,41.528586474],[-71.693547597,41.528573473],[-71.693052597,41.528528474],[-71.692950597,41.528534473],[-71.692472596,41.528634473],[-71.692309597,41.528659474],[-71.692247597,41.528694474],[-71.692149597,41.528720474],[-71.691921597,41.528756474],[-71.691814596,41.528764474],[-71.691621596,41.528754474],[-71.691234596,41.528690473],[-71.691020596,41.528661474],[-71.690703596,41.528612473],[-71.690295596,41.528578474],[-71.690188596,41.528581474],[-71.690079596,41.528593473],[-71.689864596,41.528625474],[-71.689670596,41.528648474],[-71.689582596,41.528662474],[-71.689503596,41.528682474],[-71.689418596,41.528723474],[-71.689350596,41.528765474],[-71.689271596,41.528781474],[-71.689054596,41.528772474],[-71.688710595,41.528771474],[-71.688606596,41.528776474],[-71.688507596,41.528788473],[-71.688422595,41.528806473],[-71.688339595,41.528836474],[-71.688270596,41.528881474],[-71.688194596,41.528892474],[-71.688120596,41.528880474],[-71.687867596,41.528823474],[-71.687777595,41.528796474],[-71.687688595,41.528762474],[-71.687517596,41.528677474],[-71.687440595,41.528630473],[-71.687316595,41.528526474],[-71.687267595,41.528473473],[-71.687225596,41.528418473],[-71.687163595,41.528302474],[-71.687122595,41.528186474],[-71.687109595,41.528115474],[-71.687109595,41.528040474],[-71.687160595,41.527770474],[-71.687183595,41.527585474],[-71.687197595,41.527525473],[-71.687219595,41.527466473],[-71.687316595,41.527282474],[-71.687403595,41.527161474],[-71.687597595,41.526940473],[-71.687648595,41.526890474],[-71.687768595,41.526802473],[-71.688024596,41.526597474],[-71.688092595,41.526538474],[-71.688263595,41.526356473],[-71.688318595,41.526303474],[-71.688364595,41.526250473],[-71.688401595,41.526193473],[-71.688541595,41.525918474],[-71.688572595,41.525850473],[-71.688646596,41.525722474],[-71.688694595,41.525654473],[-71.688819596,41.525444473],[-71.689054596,41.525101473],[-71.689094596,41.525028473],[-71.689220595,41.524760473],[-71.689241595,41.524702473],[-71.689247596,41.524640473],[-71.689215595,41.524619473],[-71.689169596,41.524662473],[-71.689132596,41.524716473],[-71.689057596,41.524853473],[-71.689009595,41.524911473],[-71.688907595,41.525020473],[-71.688832595,41.525129473],[-71.688772595,41.525171473],[-71.688714595,41.525218473],[-71.688611595,41.525331473],[-71.688537595,41.525432473],[-71.688476595,41.525484473],[-71.688394596,41.525472473],[-71.688406595,41.525392473],[-71.688530596,41.525161473],[-71.688633595,41.524990473],[-71.688828595,41.524612473],[-71.688888595,41.524521473],[-71.689007595,41.524360473],[-71.689201595,41.524071473],[-71.689287596,41.523966473],[-71.689332595,41.523919473],[-71.689391595,41.523875473],[-71.689542596,41.523783473],[-71.689703595,41.523678472],[-71.689844596,41.523576473],[-71.690101596,41.523356473],[-71.690193596,41.523257473],[-71.690333596,41.523174472],[-71.690400596,41.523126473],[-71.690608596,41.522990473],[-71.690778596,41.522864472],[-71.690989596,41.522758473],[-71.691368596,41.522534472],[-71.691432596,41.522502473],[-71.691509596,41.522474472],[-71.691609596,41.522409472],[-71.691762596,41.522309473],[-71.691983597,41.522141472],[-71.693330596,41.521296473],[-71.695120598,41.520396472],[-71.697011598,41.519507471],[-71.698725598,41.518562472],[-71.700516599,41.517379471],[-71.7025496,41.516317471],[-71.7031486,41.516277471],[-71.7032066,41.516260471],[-71.703279599,41.516228471],[-71.703337599,41.516192471],[-71.7033836,41.51614847],[-71.7034076,41.516101471],[-71.7034826,41.516094471],[-71.7035586,41.516063471],[-71.7036356,41.516043471],[-71.7036826,41.516026471],[-71.7039346,41.516144471],[-71.7039386,41.515756471],[-71.7039576,41.51574047],[-71.7040226,41.51570347],[-71.7040986,41.515675471],[-71.7041836,41.515660471],[-71.7042636,41.51566447],[-71.7043506,41.515658471],[-71.7044286,41.515647471],[-71.7044896,41.515617471],[-71.7046046,41.515539471],[-71.7046686,41.51550547],[-71.7048276,41.515456471],[-71.7049786,41.515403471],[-71.705124601,41.515358471],[-71.7052536,41.515302471],[-71.7053286,41.515262471],[-71.705340601,41.51525447],[-71.7053936,41.51521847],[-71.705455601,41.515165471],[-71.705496601,41.515114471],[-71.7055236,41.515051471],[-71.7055686,41.514914471],[-71.705572601,41.51484947],[-71.7055486,41.514719471],[-71.7055186,41.514659471],[-71.7054736,41.514605471],[-71.7053166,41.514484471],[-71.7052396,41.514444471],[-71.7050936,41.51437747],[-71.7050216,41.514348471],[-71.7049546,41.514327471],[-71.7049026,41.51430247],[-71.7047606,41.51420647],[-71.7046976,41.514156471],[-71.7046736,41.51413047],[-71.7046476,41.51410347],[-71.7046126,41.51404447],[-71.7045936,41.513979471],[-71.7045936,41.51390947],[-71.7046156,41.51383647],[-71.7047376,41.513568471],[-71.7047786,41.513456471],[-71.7048056,41.513398471],[-71.7051776,41.51274947],[-71.7052946,41.51259647],[-71.7054496,41.51238147],[-71.7055626,41.51226047],[-71.7056756,41.51215447],[-71.705748601,41.51209847],[-71.7058206,41.51205147],[-71.7059796,41.51196147],[-71.7061346,41.51189147],[-71.7062036,41.51186647],[-71.706275601,41.51184547],[-71.706350601,41.51182847],[-71.7067486,41.51176247],[-71.7068496,41.51173947],[-71.7069466,41.51170547],[-71.707011601,41.51167747],[-71.7071386,41.51161047],[-71.707452601,41.51140747],[-71.707561601,41.51132347],[-71.707707601,41.51119347],[-71.707764601,41.51112947],[-71.707846601,41.51101047],[-71.707883601,41.510941469],[-71.707910601,41.51087247],[-71.707947601,41.51072147],[-71.707949601,41.51064447],[-71.707938601,41.51056647],[-71.707921601,41.51049247],[-71.707862601,41.51037447],[-71.707870601,41.51031047],[-71.707980601,41.51001747],[-71.707996601,41.50996047],[-71.708005601,41.50990447],[-71.708011601,41.509791469],[-71.708021601,41.509737469],[-71.708043601,41.509682469],[-71.708109601,41.50957247],[-71.708229601,41.50941347],[-71.708300601,41.509310469],[-71.708382601,41.509214469],[-71.708482601,41.509129469],[-71.708652601,41.50900747],[-71.708779601,41.508940469],[-71.708850601,41.508913469],[-71.709152601,41.508825469],[-71.709235601,41.508810469],[-71.709478601,41.508784469],[-71.709552602,41.508780469],[-71.709629602,41.508786469],[-71.709712601,41.508798469],[-71.709868601,41.508829469],[-71.710033602,41.508868469],[-71.710351602,41.50897147],[-71.710487602,41.509003469],[-71.710599602,41.50902947],[-71.710676602,41.509042469],[-71.710753602,41.509044469],[-71.710831602,41.509036469],[-71.710931602,41.50901047],[-71.711020601,41.508966469],[-71.711076601,41.50892947],[-71.711129602,41.508887469],[-71.711325602,41.50867847],[-71.711449602,41.508515469],[-71.711548602,41.508346469],[-71.711573602,41.508285469],[-71.711658602,41.508035469],[-71.711706602,41.507976469],[-71.711870602,41.507846469],[-71.711938602,41.507824469],[-71.712020602,41.507822469],[-71.712098602,41.507841469],[-71.712178602,41.507877469],[-71.712245603,41.507918469],[-71.712289602,41.507938469],[-71.712321603,41.507951469],[-71.712389602,41.507947469],[-71.712445602,41.507901469],[-71.712467602,41.507828469],[-71.712460603,41.507774469],[-71.712431602,41.507657469],[-71.712395602,41.507480469],[-71.712332602,41.507237468],[-71.712248602,41.507138469],[-71.712190602,41.507094469],[-71.712119602,41.507074469],[-71.712041602,41.507082468],[-71.712007602,41.507098469],[-71.712070602,41.507140468],[-71.712110602,41.507197468],[-71.712129602,41.507268469],[-71.712126602,41.507339469],[-71.712080602,41.507406469],[-71.712018602,41.507440469],[-71.711946602,41.507448469],[-71.711867602,41.507432469],[-71.711787602,41.507400469],[-71.711707602,41.507354469],[-71.711640602,41.507292469],[-71.711589602,41.507226469],[-71.711562602,41.507164469],[-71.711557602,41.507093469],[-71.711571602,41.507017469],[-71.711596602,41.506946469],[-71.711659602,41.506805469],[-71.711760602,41.506498468],[-71.711786602,41.506360468],[-71.711786602,41.506303468],[-71.711768602,41.506228469],[-71.711740602,41.506176469],[-71.711695602,41.506126468],[-71.711671602,41.506061469],[-71.711665602,41.505981469],[-71.711648602,41.505922469],[-71.711616602,41.505870469],[-71.711562602,41.505830469],[-71.711523602,41.505878469],[-71.711504602,41.505938469],[-71.711487601,41.506072469],[-71.711472602,41.506141469],[-71.711444602,41.506209469],[-71.711404602,41.506266469],[-71.711353602,41.506283468],[-71.711304602,41.506250469],[-71.711275601,41.506172469],[-71.711264602,41.506090468],[-71.711254601,41.505934468],[-71.711256601,41.505859469],[-71.711268602,41.505795468],[-71.711302602,41.505735468],[-71.711360602,41.505675469],[-71.711426602,41.505623468],[-71.711666602,41.505455469],[-71.711708602,41.505407468],[-71.711809602,41.505256468],[-71.711911602,41.505120468],[-71.711938602,41.505054468],[-71.711939602,41.504977468],[-71.711889602,41.504848468],[-71.711887602,41.504790468],[-71.711901602,41.504775469],[-71.712194602,41.504882468],[-71.712943602,41.504653468],[-71.713906602,41.504382468],[-71.714270603,41.504527468],[-71.714357602,41.504858468],[-71.715461603,41.504802468],[-71.715645603,41.504337468],[-71.715992603,41.504063468],[-71.716494604,41.503131468],[-71.716460603,41.503063468],[-71.716422603,41.503016468],[-71.716364603,41.502899468],[-71.716325603,41.502787468],[-71.716212603,41.502525468],[-71.716179603,41.502411468],[-71.716169603,41.502356468],[-71.716110603,41.502128467],[-71.716067603,41.502019468],[-71.715967603,41.501862468],[-71.715928603,41.501812468],[-71.715755603,41.501621467],[-71.715578603,41.501479468],[-71.715524603,41.501410467],[-71.715427603,41.501253467],[-71.715403603,41.501200468],[-71.715376603,41.501120467],[-71.715361603,41.501057467],[-71.715360603,41.500994468],[-71.715385603,41.500814468],[-71.715398603,41.500750467],[-71.715446602,41.500640468],[-71.715489603,41.500568467],[-71.715525603,41.500520468],[-71.715592603,41.500461468],[-71.715659602,41.500411467],[-71.715708603,41.500346468],[-71.715783603,41.500182467],[-71.715801603,41.500104467],[-71.715793603,41.500023467],[-71.715780603,41.499963467],[-71.715758603,41.499900468],[-71.715725603,41.499840468],[-71.715435603,41.499406467],[-71.715388602,41.499355468],[-71.715199603,41.499226467],[-71.715151603,41.499180468],[-71.715115602,41.499132467],[-71.715088603,41.499078467],[-71.715006603,41.498956467],[-71.714926602,41.498823467],[-71.714932603,41.498810468],[-71.714933603,41.498754467],[-71.714927603,41.498698467],[-71.714949603,41.498631467],[-71.715013603,41.498589467],[-71.715083603,41.498572467],[-71.715402603,41.498574467],[-71.715510603,41.498584467],[-71.715687603,41.498612467],[-71.715916603,41.498673467],[-71.716017603,41.498677467],[-71.716102603,41.498635467],[-71.716190603,41.498601467],[-71.716255603,41.498565467],[-71.716298603,41.498503467],[-71.716353603,41.498391467],[-71.716388603,41.498273467],[-71.716406603,41.498144467],[-71.716469603,41.497858467],[-71.716553603,41.497647467],[-71.716594603,41.497518467],[-71.716605603,41.497456467],[-71.716664603,41.497375467],[-71.716653603,41.497225467],[-71.716609603,41.497054467],[-71.716523603,41.496782467],[-71.716514603,41.496747466],[-71.716481603,41.496695467],[-71.716422603,41.496643467],[-71.716377603,41.496583467],[-71.716347603,41.496522467],[-71.716303602,41.496387467],[-71.716274603,41.496251467],[-71.716265602,41.496178467],[-71.716254603,41.495865467],[-71.716232603,41.495609467],[-71.716189602,41.495331466],[-71.716156603,41.495209466],[-71.716135603,41.495131466],[-71.716119603,41.495074466],[-71.716099603,41.494998466],[-71.716076603,41.494915466],[-71.716030602,41.494813466],[-71.715998603,41.494722466],[-71.715993602,41.494668466],[-71.715984603,41.494576467],[-71.715967603,41.494499467],[-71.715912603,41.494329466],[-71.715845603,41.494173466],[-71.715832603,41.494105466],[-71.715814603,41.493899466],[-71.715798602,41.493828466],[-71.715758602,41.493693466],[-71.715758602,41.493631466],[-71.715769603,41.493574466],[-71.715753603,41.493519466],[-71.715743602,41.493455466],[-71.715658603,41.493334466],[-71.715625602,41.493185466],[-71.715553603,41.493014466],[-71.715511602,41.492932466],[-71.715474602,41.492841466],[-71.715445602,41.492741466],[-71.715403603,41.492546466],[-71.715369602,41.492350466],[-71.715360603,41.492182465],[-71.715333602,41.491948465],[-71.715338602,41.491774465],[-71.715348602,41.491716465],[-71.715381603,41.491596465],[-71.715439603,41.491420465],[-71.715502603,41.491235466],[-71.715580603,41.491082466],[-71.715717603,41.490844466],[-71.715862602,41.490606465],[-71.715958602,41.490458466],[-71.716030602,41.490319465],[-71.716086603,41.490181465],[-71.716150602,41.490001465],[-71.716207602,41.489857466],[-71.716209602,41.489796466],[-71.716251602,41.489651465],[-71.716274603,41.489529465],[-71.716313603,41.489230465],[-71.716318603,41.488949465],[-71.716340603,41.488877465],[-71.716446602,41.488758465],[-71.716489603,41.488701465],[-71.716517602,41.488641465],[-71.716531603,41.488580465],[-71.716538602,41.488519465],[-71.716541602,41.488393465],[-71.716548603,41.488329465],[-71.716572603,41.488272465],[-71.716748603,41.488044465],[-71.716790602,41.487979465],[-71.716854602,41.487848465],[-71.716900603,41.487798465],[-71.716959603,41.487759465],[-71.717038603,41.487733465],[-71.717104602,41.487683465],[-71.717187603,41.487573465],[-71.717239602,41.487428465],[-71.717283603,41.487379465],[-71.717352603,41.487335465],[-71.717417602,41.487367465],[-71.717488603,41.487344464],[-71.717543603,41.487291465],[-71.717720603,41.487069465],[-71.717768603,41.486992465],[-71.717808603,41.486913465],[-71.717841603,41.486835465],[-71.717860603,41.486757465],[-71.717891603,41.486520465],[-71.717893603,41.486439465],[-71.717889603,41.486362465],[-71.717863602,41.486211465],[-71.717849603,41.486044464],[-71.717838603,41.485969465],[-71.717758603,41.485649464],[-71.717704603,41.485483465],[-71.717494602,41.484935464],[-71.717458602,41.484861464],[-71.717415602,41.484794464],[-71.717270603,41.484607464],[-71.717205602,41.484560464],[-71.717124602,41.484521464],[-71.717037603,41.484487464],[-71.716861603,41.484433464],[-71.716770603,41.484424464],[-71.716670603,41.484438465],[-71.716572603,41.484465464],[-71.716476603,41.484499464],[-71.716289602,41.484588464],[-71.715997602,41.484702464],[-71.715894602,41.484737464],[-71.715788602,41.484766465],[-71.715680602,41.484786465],[-71.715575602,41.484798464],[-71.715363602,41.484812464],[-71.715044602,41.484850464],[-71.714595602,41.484915464],[-71.714490601,41.484924465],[-71.714387602,41.484921465],[-71.713922602,41.484864465],[-71.713541601,41.484805465],[-71.713090601,41.484741464],[-71.712922601,41.484723465],[-71.712588601,41.484694464],[-71.712472601,41.484674464],[-71.712388601,41.484649465],[-71.712362601,41.484637464],[-71.712325601,41.484620464],[-71.712260601,41.484570465],[-71.712218601,41.484518464],[-71.712163601,41.484416465],[-71.712158601,41.484352464],[-71.712173601,41.484280465],[-71.712211601,41.484202465],[-71.712250601,41.484148464],[-71.712298601,41.484099464],[-71.712354601,41.484057464],[-71.712418601,41.484022464],[-71.712488601,41.483993464],[-71.712568601,41.483970465],[-71.712660601,41.483962464],[-71.712846601,41.483988465],[-71.712950601,41.483984464],[-71.713075601,41.483969465],[-71.713195601,41.483945464],[-71.713290601,41.483905464],[-71.713373602,41.483863464],[-71.713457601,41.483830465],[-71.713553601,41.483809464],[-71.713652601,41.483799464],[-71.713932601,41.483789464],[-71.714252602,41.483791465],[-71.714338601,41.483784464],[-71.714418601,41.483753465],[-71.714503602,41.483708464],[-71.714583602,41.483658465],[-71.714650601,41.483604464],[-71.714702602,41.483549464],[-71.714744601,41.483492464],[-71.714777602,41.483432464],[-71.714867602,41.483174464],[-71.714881601,41.483110464],[-71.714886602,41.483045464],[-71.714914602,41.482981464],[-71.714950602,41.482921464],[-71.714975602,41.482864464],[-71.714992602,41.482802464],[-71.715000601,41.482662464],[-71.714999601,41.482590464],[-71.714965602,41.482525464],[-71.714941601,41.482451464],[-71.714959601,41.482277464],[-71.714962601,41.482197464],[-71.714978601,41.482044464],[-71.714977601,41.481958464],[-71.714954602,41.481680464],[-71.714922601,41.481466464],[-71.714868602,41.481288464],[-71.714832602,41.481188464],[-71.714782601,41.481091464],[-71.714563602,41.480728464],[-71.714499601,41.480640463],[-71.714408602,41.480492464],[-71.714299601,41.480296464],[-71.714199601,41.480142464],[-71.714168601,41.480078463],[-71.714155602,41.480014463],[-71.714129601,41.479940463],[-71.714117602,41.479877463],[-71.714131601,41.479821463],[-71.714181601,41.479765463],[-71.714268601,41.479720463],[-71.714346601,41.479665463],[-71.714379601,41.479613463],[-71.714398601,41.479545463],[-71.714413601,41.479460464],[-71.714419601,41.479274463],[-71.714409602,41.479192464],[-71.714383601,41.479115463],[-71.714309602,41.478964463],[-71.714266601,41.478907463],[-71.714209601,41.478857464],[-71.714116602,41.478765463],[-71.714002601,41.478669463],[-71.713941602,41.478629463],[-71.713879601,41.478580463],[-71.713817601,41.478520463],[-71.713758601,41.478450464],[-71.713702601,41.478374463],[-71.713581601,41.478159463],[-71.713565601,41.478098463],[-71.713568601,41.478040463],[-71.713592601,41.477911463],[-71.713638601,41.477854463],[-71.713721601,41.477807463],[-71.713825601,41.477790463],[-71.714051601,41.477798463],[-71.714168601,41.477787463],[-71.714287601,41.477770463],[-71.714396601,41.477774463],[-71.714490601,41.477799463],[-71.714578601,41.477838463],[-71.714653601,41.477884463],[-71.714761602,41.477975463],[-71.714879601,41.478052463],[-71.714944601,41.478078463],[-71.715019601,41.478087463],[-71.715107602,41.478086463],[-71.715204602,41.478077463],[-71.715307602,41.478053463],[-71.715406601,41.478019463],[-71.715501602,41.477976463],[-71.715791602,41.477833463],[-71.715876601,41.477784463],[-71.715948602,41.477731463],[-71.716011601,41.477678463],[-71.716135602,41.477585463],[-71.716189602,41.477539463],[-71.716312602,41.477400463],[-71.716371602,41.477362463],[-71.716434602,41.477332463],[-71.716515602,41.477304463],[-71.716545602,41.477300463],[-71.716489602,41.477445463],[-71.716463602,41.477543463],[-71.716435602,41.477723463],[-71.716399602,41.477881463],[-71.716391602,41.477944463],[-71.716420602,41.478010463],[-71.716488602,41.478046463],[-71.716576602,41.478032463],[-71.716650602,41.477978463],[-71.716739602,41.477936463],[-71.716790602,41.477886463],[-71.716822602,41.477823463],[-71.716827602,41.477756463],[-71.716802602,41.477621463],[-71.716800602,41.477550463],[-71.716816602,41.477477462],[-71.716839602,41.477403463],[-71.716856602,41.477327463],[-71.716869602,41.476978463],[-71.716860602,41.476901463],[-71.716821602,41.476748463],[-71.716793602,41.476670463],[-71.716755602,41.476597463],[-71.716708602,41.476526463],[-71.716650602,41.476455463],[-71.716529602,41.476325463],[-71.716479601,41.476256463],[-71.716433602,41.476182463],[-71.716377602,41.476109463],[-71.716244601,41.475963463],[-71.716121602,41.475810463],[-71.716101602,41.475779463],[-71.716075602,41.475738463],[-71.715977601,41.475548462],[-71.715956601,41.475494462],[-71.715872602,41.475226463],[-71.715860601,41.475169463],[-71.715865602,41.475113463],[-71.715881601,41.475053463],[-71.715925602,41.474997463],[-71.715973601,41.474950462],[-71.716061602,41.474914463],[-71.716134602,41.474894463],[-71.716211602,41.474888462],[-71.716287601,41.474898463],[-71.716358602,41.474917463],[-71.716420601,41.474945462],[-71.716599602,41.475072463],[-71.716724602,41.475152463],[-71.716792602,41.475181462],[-71.716877602,41.475197462],[-71.716971602,41.475204462],[-71.717163602,41.475202462],[-71.717246602,41.475191463],[-71.717318602,41.475169463],[-71.717385602,41.475136462],[-71.717511603,41.475056463],[-71.717566602,41.475008462],[-71.717605602,41.474954463],[-71.717632602,41.474898463],[-71.717647603,41.474830462],[-71.717653602,41.474756462],[-71.717652602,41.474681462],[-71.717642602,41.474603462],[-71.717619602,41.474520462],[-71.717589603,41.474439462],[-71.717483602,41.474211462],[-71.717425602,41.473990462],[-71.717405602,41.473876462],[-71.717407602,41.473660462],[-71.717426602,41.473431462],[-71.717444602,41.473350462],[-71.717476602,41.473264462],[-71.717519602,41.473178462],[-71.717576602,41.473098462],[-71.717643602,41.473028462],[-71.717799602,41.472914462],[-71.717871602,41.472856462],[-71.717939603,41.472794462],[-71.718121602,41.472591462],[-71.718267602,41.472368461],[-71.718320602,41.472299462],[-71.718428602,41.472173461],[-71.718531602,41.472062462],[-71.718585602,41.472015462],[-71.718647602,41.471976462],[-71.718713602,41.471949462],[-71.718774603,41.471942462],[-71.718825602,41.471971462],[-71.718836603,41.472036461],[-71.718800602,41.472115461],[-71.718755603,41.472191462],[-71.718738603,41.472268462],[-71.718727602,41.472346462],[-71.718710602,41.472423462],[-71.718676603,41.472484461],[-71.718599603,41.472536462],[-71.718559603,41.472584462],[-71.718561603,41.472645462],[-71.718571602,41.472715462],[-71.718570602,41.472784462],[-71.718596602,41.472832462],[-71.718624602,41.472838462],[-71.718697603,41.472801462],[-71.718776603,41.472745462],[-71.718839602,41.472690462],[-71.718871603,41.472621461],[-71.718878602,41.472539462],[-71.718854603,41.472366462],[-71.718861602,41.472287462],[-71.718875603,41.472218462],[-71.718898602,41.472155461],[-71.718966603,41.472046462],[-71.718967603,41.471991462],[-71.718942602,41.471931462],[-71.718926602,41.471862461],[-71.718937602,41.471707461],[-71.718929603,41.471628461],[-71.718902602,41.471554462],[-71.718834603,41.471434461],[-71.718792602,41.471387462],[-71.718738603,41.471348462],[-71.718679603,41.471313462],[-71.718612602,41.471284462],[-71.718538602,41.471265462],[-71.718458602,41.471258461],[-71.718374602,41.471260461],[-71.718186602,41.471256461],[-71.718000602,41.471259461],[-71.717923602,41.471252462],[-71.717831602,41.471263462],[-71.717745602,41.471306462],[-71.717659602,41.471336461],[-71.717577602,41.471336461],[-71.717499602,41.471310462],[-71.717483602,41.471262462],[-71.717541602,41.471218461],[-71.717566602,41.471189462],[-71.717480602,41.471054462],[-71.717422602,41.471002461],[-71.717344602,41.470963461],[-71.717257602,41.470928461],[-71.717160602,41.470910461],[-71.717065601,41.470922462],[-71.716986601,41.470954462],[-71.716934602,41.470995462],[-71.716879602,41.471055462],[-71.716820602,41.471090462],[-71.716746602,41.471111462],[-71.716670602,41.471115462],[-71.716604602,41.471101461],[-71.716555602,41.471051462],[-71.716533602,41.470971462],[-71.716527602,41.470883462],[-71.716535602,41.470712461],[-71.716531602,41.470628462],[-71.716492602,41.470319461],[-71.716492602,41.470256462],[-71.716508602,41.470200462],[-71.716551602,41.470129461],[-71.716613602,41.470090461],[-71.716692602,41.470104462],[-71.716793601,41.470063462],[-71.716970601,41.469937461],[-71.717058602,41.469885462],[-71.717193602,41.469826462],[-71.717294602,41.469806462],[-71.717365602,41.469827462],[-71.717390602,41.469899461],[-71.717446602,41.469952461],[-71.717536602,41.469958461],[-71.717585602,41.470009461],[-71.717631602,41.470082462],[-71.717685602,41.470114461],[-71.717750602,41.470106461],[-71.717808602,41.470062462],[-71.717839602,41.470002462],[-71.717848602,41.469935461],[-71.717914602,41.469628461],[-71.717939602,41.469545461],[-71.717970602,41.469473461],[-71.717985602,41.469411461],[-71.717991602,41.469353461],[-71.718014602,41.469277461],[-71.718120602,41.469092461],[-71.718130602,41.469027461],[-71.718122602,41.468957461],[-71.718075602,41.468764461],[-71.718033602,41.468647461],[-71.717953602,41.468490461],[-71.717914602,41.468443461],[-71.717861602,41.468400461],[-71.717796602,41.468357461],[-71.717633602,41.468288461],[-71.717468602,41.468232462],[-71.717396601,41.468200461],[-71.717347602,41.468155461],[-71.717325602,41.468100461],[-71.717322601,41.468041461],[-71.717330602,41.467985461],[-71.717389602,41.467927461],[-71.717476601,41.467907461],[-71.717537602,41.467877461],[-71.717602602,41.467852461],[-71.717641602,41.467869461],[-71.717632601,41.467923461],[-71.717632601,41.467990461],[-71.717676602,41.468041461],[-71.717739602,41.468040461],[-71.717789602,41.467989461],[-71.717839602,41.467871461],[-71.717892602,41.467818461],[-71.717954602,41.467768461],[-71.718006602,41.467712461],[-71.718043602,41.467655461],[-71.718068602,41.467598461],[-71.718082602,41.467543461],[-71.718083602,41.467488461],[-71.718069602,41.467435461],[-71.718020601,41.467366461],[-71.717959602,41.467301461],[-71.717955602,41.467257461],[-71.718002602,41.467226461],[-71.718061602,41.467227461],[-71.718114602,41.467280461],[-71.718163602,41.467338461],[-71.718210602,41.467383461],[-71.718241602,41.467443461],[-71.718258602,41.467516461],[-71.718253602,41.467590461],[-71.718223602,41.467666461],[-71.718208602,41.467739461],[-71.718224602,41.467806461],[-71.718262602,41.467865461],[-71.718353602,41.467965461],[-71.718389602,41.468032461],[-71.718427602,41.468042461],[-71.718479602,41.467972461],[-71.718505602,41.467905461],[-71.718536602,41.467846461],[-71.718577602,41.467794461],[-71.718627602,41.467760461],[-71.718676602,41.467769461],[-71.718683602,41.467841461],[-71.718668602,41.467907461],[-71.718678602,41.467970461],[-71.718725602,41.467998461],[-71.718794602,41.467969461],[-71.718920602,41.467856461],[-71.718989602,41.467826461],[-71.719049603,41.467844461],[-71.719068603,41.467897461],[-71.719045602,41.467970461],[-71.718977602,41.468110461],[-71.718975602,41.468178461],[-71.718989602,41.468237461],[-71.719024602,41.468251461],[-71.719073602,41.468204461],[-71.719122602,41.468129461],[-71.719164602,41.468053461],[-71.719185603,41.467978461],[-71.719170602,41.467835461],[-71.719179602,41.467770461],[-71.719210602,41.46770646],[-71.719265603,41.467644461],[-71.719415602,41.467522461],[-71.719502602,41.467461461],[-71.719595603,41.467405461],[-71.719780602,41.467321461],[-71.719847603,41.46727846],[-71.719892602,41.467223461],[-71.720182603,41.466689461],[-71.720227602,41.466627461],[-71.720289603,41.46657546],[-71.720453603,41.466484461],[-71.720711602,41.466320461],[-71.720774603,41.46626746],[-71.720824603,41.46621046],[-71.720864603,41.46615046],[-71.720890603,41.466086461],[-71.720897603,41.466020461],[-71.720896603,41.46589746],[-71.720866602,41.465847461],[-71.720798603,41.46580146],[-71.720706603,41.46575646],[-71.720524603,41.465675461],[-71.720447603,41.465655461],[-71.720376603,41.465654461],[-71.720317603,41.465618461],[-71.720278603,41.46556546],[-71.720236603,41.465457461],[-71.720175603,41.46540646],[-71.720097603,41.46535346],[-71.719939602,41.46527046],[-71.719870603,41.465225461],[-71.719832603,41.465168461],[-71.719837602,41.465092461],[-71.719875602,41.46500346],[-71.720044603,41.46455246],[-71.720069602,41.46445646],[-71.720116602,41.46420846],[-71.720156602,41.46408046],[-71.720177603,41.46398446],[-71.720183603,41.46395746],[-71.720271602,41.46375246],[-71.720264602,41.463707461],[-71.720248602,41.46360646],[-71.720202603,41.46355946],[-71.720157603,41.46350346],[-71.720141603,41.46344346],[-71.720150602,41.46332446],[-71.720120603,41.46322446],[-71.720103603,41.46316846],[-71.720106602,41.46311246],[-71.720145602,41.46312646],[-71.720193602,41.46318246],[-71.720284602,41.46332746],[-71.720328602,41.46338146],[-71.720387602,41.46340946],[-71.720463602,41.46340646],[-71.720543602,41.46338746],[-71.720615602,41.46335946],[-71.720664603,41.46331846],[-71.720673602,41.46323846],[-71.720641602,41.46317546],[-71.720587603,41.46311246],[-71.720519602,41.46304746],[-71.720431603,41.46299246],[-71.720331602,41.46295546],[-71.720244602,41.46292946],[-71.720189602,41.46289246],[-71.720162603,41.46284246],[-71.720157602,41.46278646],[-71.720164602,41.46271346],[-71.720156602,41.46265046],[-71.720112602,41.462597459],[-71.719989602,41.462519459],[-71.719932602,41.46247846],[-71.719920602,41.46241746],[-71.719924602,41.46241446],[-71.719964602,41.46237546],[-71.720031602,41.46240146],[-71.720166602,41.46247546],[-71.720241603,41.46249346],[-71.720307602,41.46244446],[-71.720397603,41.46233246],[-71.720531603,41.46222446],[-71.720687603,41.462130459],[-71.720748603,41.46206846],[-71.720780603,41.46200346],[-71.720799603,41.46193146],[-71.720847602,41.46185046],[-71.720914602,41.46176946],[-71.721044602,41.461642459],[-71.721061602,41.46158246],[-71.721063602,41.46151646],[-71.721077603,41.461449459],[-71.721171603,41.46124246],[-71.721187603,41.461173459],[-71.721189603,41.46110946],[-71.721197603,41.461061459],[-71.721336602,41.460985459],[-71.721391603,41.460939459],[-71.721409603,41.46089846],[-71.721476602,41.46087646],[-71.721572602,41.46086046],[-71.721656603,41.460823459],[-71.721680603,41.46079946],[-71.721660603,41.460744459],[-71.721582603,41.46068346],[-71.721468603,41.460630459],[-71.721332603,41.460597459],[-71.721212603,41.460609459],[-71.721122602,41.46064646],[-71.721042602,41.460654459],[-71.720968602,41.46063846],[-71.720903603,41.46060346],[-71.720875602,41.460549459],[-71.720851602,41.460478459],[-71.720782603,41.460364459],[-71.720725603,41.460298459],[-71.720683602,41.460239459],[-71.720648603,41.46017846],[-71.720592603,41.460122459],[-71.720509602,41.46007446],[-71.720391602,41.460026459],[-71.720140602,41.459932459],[-71.720034602,41.459886459],[-71.719863602,41.459798459],[-71.719774602,41.45976546],[-71.719667602,41.45974746],[-71.719443602,41.459721459],[-71.719334602,41.459716459],[-71.719240602,41.45972746],[-71.719165602,41.459741459],[-71.719089602,41.459760459],[-71.718951602,41.45980646],[-71.718908602,41.459831459],[-71.719105602,41.460044459],[-71.719053601,41.460042459],[-71.718991602,41.460081459],[-71.718992602,41.46013946],[-71.719000602,41.46019446],[-71.718956601,41.46025446],[-71.718935601,41.46030746],[-71.718903602,41.460358459],[-71.718851602,41.46038546],[-71.718784602,41.46038446],[-71.718737602,41.460277459],[-71.718713602,41.460266459],[-71.718623601,41.46027446],[-71.718550601,41.46028846],[-71.718469601,41.46032746],[-71.718414601,41.460363459],[-71.718349602,41.460398459],[-71.718272601,41.46042846],[-71.718190602,41.460453459],[-71.718110602,41.46048346],[-71.717947601,41.460554459],[-71.717677601,41.46066046],[-71.717586602,41.460690459],[-71.717380601,41.46073846],[-71.717194601,41.46077146],[-71.717124601,41.460788459],[-71.717038601,41.46079846],[-71.716968601,41.460784459],[-71.716889601,41.46077646],[-71.716794601,41.46077946],[-71.716579601,41.46079946],[-71.716217601,41.46083946],[-71.715998601,41.46084846],[-71.715890601,41.46085646],[-71.715785601,41.46085946],[-71.7155656,41.46084746],[-71.715454601,41.46083046],[-71.715246601,41.460783459],[-71.715151601,41.46075246],[-71.714859601,41.46064146],[-71.7147646,41.46059546],[-71.714387601,41.460360459],[-71.7141196,41.46017046],[-71.714018601,41.46010946],[-71.7135896,41.45987846],[-71.7134086,41.459791459],[-71.7132866,41.45970946],[-71.7132126,41.459672459],[-71.7131386,41.459641459],[-71.7130396,41.45962646],[-71.712968599,41.459641459],[-71.7127996,41.45969046],[-71.712715599,41.45972646],[-71.7126426,41.45976346],[-71.7125866,41.45979946],[-71.7124206,41.45995446],[-71.7123596,41.45997246],[-71.712290599,41.45994246],[-71.712287599,41.45987646],[-71.712331599,41.45981746],[-71.712407599,41.45976046],[-71.7126476,41.45960346],[-71.712675599,41.45956846],[-71.7125776,41.459460459],[-71.7125566,41.459403459],[-71.7124796,41.45927846],[-71.7123606,41.45903946],[-71.7123526,41.458979459],[-71.7123526,41.458917459],[-71.7123426,41.45878946],[-71.7123586,41.458724459],[-71.712404599,41.458588459],[-71.712461599,41.458353459],[-71.712484599,41.458279459],[-71.7125136,41.458209459],[-71.7125506,41.458144459],[-71.7125916,41.458084459],[-71.7126466,41.45803246],[-71.7127106,41.457989459],[-71.712792599,41.457968459],[-71.7128846,41.457962459],[-71.7137626,41.458476459],[-71.714254601,41.458544459],[-71.7142106,41.458492459],[-71.7142236,41.458436459],[-71.714253601,41.458375459],[-71.7142566,41.458306459],[-71.7142176,41.458234459],[-71.7141496,41.458165459],[-71.7140596,41.458104459],[-71.7138576,41.457995459],[-71.7137576,41.45793546],[-71.7136616,41.457868459],[-71.7132736,41.457581459],[-71.7128616,41.457309459],[-71.712695599,41.457207459],[-71.7125706,41.457141459],[-71.712325599,41.457033459],[-71.7122236,41.456982459],[-71.712118599,41.456938459],[-71.712005599,41.456901459],[-71.711886599,41.456874459],[-71.711520599,41.456781459],[-71.711414599,41.456744459],[-71.711326599,41.456703459],[-71.711261599,41.456657459],[-71.711210599,41.456604459],[-71.711108599,41.456509459],[-71.711070599,41.456458459],[-71.711046599,41.456397459],[-71.711037599,41.456328459],[-71.711045599,41.456260459],[-71.711073599,41.456202459],[-71.711129599,41.456174459],[-71.711227599,41.456194459],[-71.711360599,41.456254459],[-71.711444599,41.456301459],[-71.711514599,41.456327459],[-71.711599599,41.456337459],[-71.711688599,41.456322459],[-71.711773599,41.456296459],[-71.711839599,41.456261459],[-71.711890599,41.456219459],[-71.7119496,41.456189459],[-71.712035599,41.456177459],[-71.712121599,41.456184459],[-71.712168599,41.456211459],[-71.7121096,41.456268459],[-71.712037599,41.456302459],[-71.712014599,41.456319459],[-71.7120476,41.456376459],[-71.712022599,41.456435459],[-71.712071599,41.456493459],[-71.7121446,41.456545459],[-71.7121616,41.456599459],[-71.712189599,41.456653459],[-71.712236599,41.456682459],[-71.7122826,41.456666459],[-71.712313599,41.456612459],[-71.712327599,41.456530459],[-71.712325599,41.456203459],[-71.712288599,41.456094459],[-71.712308599,41.456036459],[-71.712369599,41.455975459],[-71.7125506,41.455832458],[-71.7126146,41.455754458],[-71.712660599,41.455674458],[-71.7126906,41.455594459],[-71.712698599,41.455506459],[-71.712684599,41.455423458],[-71.7126496,41.455346458],[-71.712604599,41.455277459],[-71.712544599,41.455218459],[-71.712487599,41.455174459],[-71.7124376,41.455126459],[-71.7124176,41.455080459],[-71.712270599,41.455030458],[-71.712194599,41.454998459],[-71.712123599,41.454958458],[-71.7120666,41.454904459],[-71.7120316,41.454841458],[-71.712026599,41.454771459],[-71.712043599,41.454699458],[-71.712063599,41.454572459],[-71.7120896,41.454521459],[-71.712136599,41.454496459],[-71.7123016,41.454540459],[-71.712373599,41.454548458],[-71.712412599,41.454570458],[-71.7123786,41.454614459],[-71.712311599,41.454636459],[-71.712253599,41.454666458],[-71.712254599,41.454711459],[-71.712313599,41.454746459],[-71.7123966,41.454784459],[-71.7124556,41.454826459],[-71.712490599,41.454887459],[-71.7125126,41.454913458],[-71.712560599,41.454904459],[-71.712621599,41.454854459],[-71.7126676,41.454778458],[-71.712699599,41.454687459],[-71.7127136,41.454601458],[-71.7127076,41.454523458],[-71.7126876,41.454449458],[-71.7126316,41.454384459],[-71.712525599,41.454343459],[-71.7123816,41.454332458],[-71.7120316,41.454330458],[-71.7119136,41.454323459],[-71.711813599,41.454302459],[-71.711726599,41.454271458],[-71.711661599,41.454228459],[-71.711627599,41.454170459],[-71.711625599,41.454108459],[-71.711677599,41.454062458],[-71.711771599,41.454059458],[-71.711883599,41.454093459],[-71.712034599,41.454133458],[-71.712188599,41.454162458],[-71.712345599,41.454177458],[-71.7124196,41.454178458],[-71.7125546,41.454166459],[-71.712679599,41.454128459],[-71.7127916,41.454072459],[-71.712968599,41.453969459],[-71.713030599,41.453948458],[-71.713089599,41.453972459],[-71.7131186,41.454028459],[-71.7131346,41.454094458],[-71.713189599,41.454167459],[-71.713266599,41.454249459],[-71.713323599,41.454336458],[-71.7133386,41.454416459],[-71.713320599,41.454548458],[-71.713342599,41.454576459],[-71.7134476,41.454549458],[-71.713534599,41.454517459],[-71.7135826,41.454471458],[-71.713595599,41.454407458],[-71.713592599,41.454328458],[-71.713573599,41.454167459],[-71.7135896,41.454104458],[-71.7136436,41.454090459],[-71.713712599,41.454122458],[-71.7137776,41.454169459],[-71.7138516,41.454204459],[-71.7139396,41.454207459],[-71.7140326,41.454189459],[-71.7141276,41.454177458],[-71.7142066,41.454192458],[-71.7142536,41.454240458],[-71.7143446,41.454386459],[-71.7143936,41.454456459],[-71.7144516,41.454504458],[-71.7145276,41.454515459],[-71.7146086,41.454484458],[-71.7146746,41.454421459],[-71.7147176,41.454337458],[-71.7147476,41.454238458],[-71.7147586,41.454133458],[-71.7147406,41.454033459],[-71.7146976,41.453942458],[-71.7146346,41.453859459],[-71.7145486,41.453789458],[-71.7144346,41.453737459],[-71.7143166,41.453692458],[-71.7142256,41.453637458],[-71.7141656,41.453567459],[-71.714139599,41.453494458],[-71.714159599,41.453423458],[-71.7142226,41.453368459],[-71.7143926,41.453267458],[-71.7144636,41.453212458],[-71.7146136,41.453050458],[-71.7146906,41.453002458],[-71.7147776,41.453001459],[-71.7148066,41.452993458],[-71.7147686,41.452944458],[-71.7147096,41.452900458],[-71.7146556,41.452851458],[-71.7146536,41.452792458],[-71.7147236,41.452639458],[-71.7147736,41.452461458],[-71.7148016,41.452380458],[-71.7148476,41.452325458],[-71.7148806,41.452271458],[-71.7148716,41.452203458],[-71.7148296,41.452130458],[-71.7147726,41.452056458],[-71.7147256,41.451975458],[-71.7146836,41.451887458],[-71.7146146,41.451713458],[-71.7145386,41.451557458],[-71.7145076,41.451482458],[-71.7144596,41.451266457],[-71.7144576,41.451202458],[-71.7144876,41.451128458],[-71.7145306,41.451075458],[-71.7145996,41.451034457],[-71.7146916,41.451024458],[-71.7147916,41.451034457],[-71.7148796,41.451037458],[-71.7149646,41.451053457],[-71.7150166,41.451175458],[-71.7150726,41.451204458],[-71.7151166,41.451174458],[-71.7151046,41.451038458],[-71.7151306,41.450982458],[-71.7151956,41.450957457],[-71.7152806,41.450957457],[-71.7153536,41.450977457],[-71.7154076,41.451016457],[-71.715483601,41.451035457],[-71.7158206,41.450977457],[-71.715907601,41.450945458],[-71.715911601,41.450898457],[-71.715831601,41.450847458],[-71.7158246,41.450802457],[-71.715889601,41.450757458],[-71.7160996,41.450710458],[-71.716179601,41.450665457],[-71.716397601,41.450470457],[-71.7164596,41.450405458],[-71.7165196,41.450330457],[-71.716591601,41.450260458],[-71.7168556,41.450072458],[-71.7169666,41.449965457],[-71.717014601,41.449904457],[-71.717055601,41.449838458],[-71.717092601,41.449766457],[-71.717121601,41.449689457],[-71.717138601,41.449538457],[-71.717226601,41.449360457],[-71.717265601,41.449293458],[-71.717274601,41.449227457],[-71.717267601,41.449080458],[-71.717249601,41.449007457],[-71.7171836,41.448812457],[-71.7171236,41.448719457],[-71.717056601,41.448527457],[-71.7170256,41.448461457],[-71.7170066,41.448404457],[-71.716995601,41.448324457],[-71.7170256,41.448245457],[-71.7170696,41.448187457],[-71.717152601,41.447895457],[-71.7171676,41.447815457],[-71.7171806,41.447745457],[-71.7171806,41.447690457],[-71.717238601,41.447546457],[-71.717252601,41.447476457],[-71.717249601,41.447404457],[-71.717235601,41.447334457],[-71.717215601,41.447268457],[-71.717194601,41.447222457],[-71.7167766,41.446978457],[-71.716629601,41.446320457],[-71.7162696,41.445155457],[-71.7157896,41.444071456],[-71.715777599,41.443666456],[-71.7162106,41.443370456],[-71.7168006,41.443181456],[-71.7170866,41.443362456],[-71.7174396,41.443661456],[-71.7180396,41.443535456],[-71.719082601,41.442371456],[-71.720196601,41.441066456],[-71.720334601,41.440741455],[-71.720462601,41.439615455],[-71.720656601,41.438973455],[-71.720951601,41.438603455],[-71.721218601,41.438425455],[-71.721901601,41.438261455],[-71.722091602,41.438245455],[-71.722154601,41.438158455],[-71.722305602,41.438054455],[-71.722426601,41.438016455],[-71.722494602,41.437975455],[-71.722508601,41.437951455],[-71.722533602,41.437861455],[-71.722534602,41.437767455],[-71.722554602,41.437635455],[-71.722538602,41.437579455],[-71.722512602,41.437527455],[-71.722471602,41.437481455],[-71.722417602,41.437430455],[-71.722360602,41.437368455],[-71.722331601,41.437302455],[-71.722341602,41.437230455],[-71.722367602,41.437167454],[-71.722402602,41.437059455],[-71.722412601,41.437029455],[-71.722414602,41.436974454],[-71.722332601,41.436849455],[-71.722272601,41.436799454],[-71.722096601,41.436712455],[-71.721998601,41.436657455],[-71.721807601,41.436600455],[-71.721659602,41.436548455],[-71.721485602,41.436506454],[-71.721414601,41.436478455],[-71.721291602,41.436405455],[-71.721237601,41.436368454],[-71.721151601,41.436286455],[-71.721120601,41.436236455],[-71.721066601,41.436124455],[-71.721008601,41.436020454],[-71.720986601,41.435965455],[-71.720952601,41.435750455],[-71.720900601,41.435576455],[-71.720816601,41.435383455],[-71.720781601,41.435272455],[-71.720751601,41.435096455],[-71.720731601,41.434914454],[-71.720727601,41.434787454],[-71.720732601,41.434671454],[-71.720729601,41.434613454],[-71.720679601,41.434381454],[-71.720598601,41.434098454],[-71.720577601,41.434042455],[-71.720524601,41.433935454],[-71.720485601,41.433826454],[-71.720465601,41.433719454],[-71.720461601,41.433396454],[-71.720503601,41.433097454],[-71.720518601,41.432891454],[-71.720562601,41.432610454],[-71.720582601,41.432515454],[-71.7206326,41.432337454],[-71.720649601,41.432245454],[-71.720678601,41.431970454],[-71.720675601,41.431782454],[-71.720661601,41.431684454],[-71.720631601,41.431594454],[-71.720506601,41.431344454],[-71.720369601,41.431110454],[-71.7202836,41.430926453],[-71.720198601,41.430726454],[-71.720139601,41.430564454],[-71.720114601,41.430513454],[-71.719961601,41.430248453],[-71.719883601,41.430083454],[-71.7197836,41.429911454],[-71.719653601,41.429808454],[-71.719598601,41.429757453],[-71.719573601,41.429695454],[-71.719556601,41.429632454],[-71.7195016,41.429558454],[-71.719459601,41.429596454],[-71.7193976,41.429603453],[-71.7192306,41.429526453],[-71.7191376,41.429463454],[-71.7190596,41.429390453],[-71.7190076,41.429320454],[-71.7189806,41.429232453],[-71.7189676,41.429143453],[-71.7189766,41.429072454],[-71.7190116,41.429016453],[-71.7190606,41.428973454],[-71.7191256,41.428949453],[-71.7192096,41.428902453],[-71.7192996,41.428812453],[-71.7193176,41.428744453],[-71.7193176,41.428689453],[-71.719305601,41.428634453],[-71.7192696,41.428581454],[-71.7191656,41.428468454],[-71.7190226,41.428353453],[-71.7190066,41.428332453],[-71.7188246,41.428415453],[-71.7188166,41.428419453],[-71.7186046,41.428519453],[-71.7183366,41.428675453],[-71.7182506,41.428730453],[-71.7180926,41.428861453],[-71.7180326,41.428931454],[-71.7179706,41.428984453],[-71.7178116,41.429082453],[-71.717688599,41.429176453],[-71.7176416,41.429226454],[-71.7175446,41.429307454],[-71.7175656,41.429322454],[-71.7175846,41.429393453],[-71.7176226,41.429481454],[-71.7177156,41.429584453],[-71.7177456,41.429649454],[-71.7177596,41.429705453],[-71.7177636,41.429763453],[-71.7177606,41.429827454],[-71.7177226,41.429959454],[-71.7177176,41.430018454],[-71.7176926,41.430079454],[-71.717671599,41.430191453],[-71.7176446,41.430252454],[-71.717630599,41.430331454],[-71.7175766,41.430547454],[-71.7174726,41.430881454],[-71.717436599,41.430923454],[-71.7173556,41.430869453],[-71.717298599,41.430818454],[-71.7172506,41.430760454],[-71.7172166,41.430693453],[-71.717204599,41.430612454],[-71.7172486,41.430531454],[-71.717317599,41.430433454],[-71.7174106,41.430248453],[-71.717492599,41.430115454],[-71.7174646,41.430087454],[-71.717381599,41.430108453],[-71.7171966,41.430225453],[-71.717024599,41.430328454],[-71.7168846,41.430431454],[-71.716837599,41.430484454],[-71.716811599,41.430554454],[-71.716816599,41.430627454],[-71.7168606,41.430704454],[-71.716890599,41.430777454],[-71.7169186,41.430825454],[-71.7170356,41.430931454],[-71.717125599,41.430991454],[-71.7172306,41.431043453],[-71.7173236,41.431096454],[-71.7174586,41.431207454],[-71.7175026,41.431253454],[-71.7175356,41.431318454],[-71.7175436,41.431380454],[-71.717515599,41.431451454],[-71.7174616,41.431530454],[-71.7173806,41.431687454],[-71.7173526,41.431767454],[-71.7173486,41.431980454],[-71.7173336,41.432076454],[-71.7172846,41.432267454],[-71.7172456,41.432341454],[-71.717181599,41.432391454],[-71.7169196,41.432513454],[-71.7168256,41.432550454],[-71.716738599,41.432591454],[-71.716577599,41.432681454],[-71.716518599,41.432738455],[-71.716422599,41.432851454],[-71.716383599,41.432913455],[-71.7163576,41.432986454],[-71.716366599,41.433062454],[-71.716502599,41.433394454],[-71.716621599,41.433599454],[-71.716716599,41.433730455],[-71.716794599,41.433859454],[-71.7168446,41.433990454],[-71.7168416,41.434072454],[-71.7168236,41.434133454],[-71.716775599,41.434180455],[-71.7166996,41.434215455],[-71.716619599,41.434240455],[-71.7165346,41.434255455],[-71.716445599,41.434252455],[-71.7163526,41.434232455],[-71.7161606,41.434183454],[-71.7158876,41.434090454],[-71.715776599,41.434060455],[-71.715660599,41.434034454],[-71.715301599,41.433969454],[-71.715191599,41.433942455],[-71.715107599,41.433907455],[-71.714969599,41.433824455],[-71.714897599,41.433799454],[-71.714806599,41.433779454],[-71.714683599,41.433761454],[-71.714559599,41.433751455],[-71.714438599,41.433769455],[-71.714179598,41.433836454],[-71.714051599,41.433873454],[-71.713840599,41.433914454],[-71.713622599,41.433939455],[-71.713383598,41.433950454],[-71.713305598,41.433958454],[-71.713096599,41.433990454],[-71.712953598,41.434008454],[-71.712728599,41.434049454],[-71.712408598,41.434098455],[-71.712214598,41.434136455],[-71.712030599,41.434177455],[-71.711960598,41.434189454],[-71.711786598,41.434267454],[-71.711617598,41.434309455],[-71.711564598,41.434327455],[-71.711450598,41.434372455],[-71.711285598,41.434455455],[-71.711120598,41.434553454],[-71.710750598,41.434728455],[-71.710670597,41.434754455],[-71.710412598,41.434787454],[-71.710138598,41.434827454],[-71.710031597,41.434831455],[-71.709866598,41.434830455],[-71.709785598,41.434818455],[-71.709713597,41.434795455],[-71.709528597,41.434758455],[-71.709465597,41.434728455],[-71.709409597,41.434684455],[-71.709260598,41.434595454],[-71.709206597,41.434529455],[-71.709183598,41.434475454],[-71.709142598,41.434413455],[-71.709075597,41.434364455],[-71.709002597,41.434321454],[-71.708923597,41.434281454],[-71.708833598,41.434257455],[-71.708747597,41.434265454],[-71.708681597,41.434306455],[-71.708644597,41.434378454],[-71.708636597,41.434451455],[-71.708675597,41.434512455],[-71.708747597,41.434578455],[-71.708791597,41.434629455],[-71.708894597,41.434724455],[-71.709004597,41.434810455],[-71.709118597,41.434912455],[-71.709172597,41.434973455],[-71.709202598,41.435032455],[-71.709187597,41.435101454],[-71.709133597,41.435243455],[-71.709085598,41.435295454],[-71.709020597,41.435351455],[-71.708848597,41.435433455],[-71.708775597,41.435458455],[-71.708627597,41.435494455],[-71.708586597,41.435500455],[-71.708386597,41.435508455],[-71.708281597,41.435507455],[-71.708175597,41.435500455],[-71.707872597,41.435469455],[-71.707776597,41.435454455],[-71.707683596,41.435432455],[-71.707506597,41.435400455],[-71.707420597,41.435377455],[-71.707151597,41.435289455],[-71.707077597,41.435256455],[-71.706933597,41.435180455],[-71.706806596,41.435077455],[-71.706746597,41.435017455],[-71.706693596,41.434956455],[-71.706526597,41.434786455],[-71.706421596,41.434648455],[-71.706301596,41.434513455],[-71.706079596,41.434251455],[-71.706030596,41.434184454],[-71.705946597,41.434037455],[-71.705799596,41.433763455],[-71.705759596,41.433706455],[-71.705713596,41.433656454],[-71.705633596,41.433544454],[-71.705554596,41.433477455],[-71.705525596,41.433450455],[-71.705392596,41.433326454],[-71.705291596,41.433218455],[-71.705232596,41.433162455],[-71.705169595,41.433110454],[-71.705023596,41.433011455],[-71.704937595,41.432968455],[-71.704762595,41.432893455],[-71.704321596,41.432755455],[-71.704158595,41.432696455],[-71.703990596,41.432622455],[-71.703950596,41.432614455],[-71.703757596,41.432543455],[-71.703661596,41.432493454],[-71.703562595,41.432464455],[-71.703487596,41.432433454],[-71.703420595,41.432385455],[-71.703311595,41.432324455],[-71.703209595,41.432256454],[-71.703120595,41.432184454],[-71.703045595,41.432130455],[-71.703003595,41.432085454],[-71.703005595,41.432016455],[-71.703078595,41.432004454],[-71.703208595,41.432033455],[-71.703325595,41.432065454],[-71.703420595,41.432073455],[-71.703492595,41.431997455],[-71.703424595,41.431925454],[-71.703310595,41.431827454],[-71.703245595,41.431787454],[-71.703173595,41.431759455],[-71.703095595,41.431746454],[-71.703012595,41.431754454],[-71.702936595,41.431782455],[-71.702873595,41.431827454],[-71.702750595,41.431927454],[-71.702686595,41.431961454],[-71.702527595,41.432016455],[-71.702414595,41.432073455],[-71.702297595,41.432214454],[-71.702295595,41.432274454],[-71.702281594,41.432331454],[-71.702230595,41.432363455],[-71.702141595,41.432363455],[-71.702055595,41.432338454],[-71.701988595,41.432292454],[-71.701839595,41.432153455],[-71.701762595,41.432018454],[-71.701713595,41.431954455],[-71.701655595,41.431890454],[-71.701532595,41.431770454],[-71.701429594,41.431620455],[-71.701392594,41.431544455],[-71.701318595,41.431414454],[-71.701305595,41.431346454],[-71.701342595,41.431323454],[-71.701424594,41.431341454],[-71.701507594,41.431351455],[-71.701556595,41.431299454],[-71.701593595,41.431212454],[-71.701618594,41.431127454],[-71.701636595,41.430965454],[-71.701671595,41.430910454],[-71.701731595,41.430872454],[-71.701765595,41.430866455],[-71.701795594,41.430879454],[-71.701818594,41.430953454],[-71.701789595,41.431044454],[-71.701750595,41.431134454],[-71.701728595,41.431223454],[-71.701726595,41.431474454],[-71.701754595,41.431636454],[-71.701788595,41.431698455],[-71.701841595,41.431731454],[-71.701868595,41.431691454],[-71.701880595,41.431419454],[-71.701903595,41.431321454],[-71.701930594,41.431247454],[-71.701960595,41.431181454],[-71.702005595,41.431137455],[-71.702073595,41.431081455],[-71.702109594,41.431020455],[-71.702133595,41.430937454],[-71.702116595,41.430833454],[-71.702093595,41.430779454],[-71.702006595,41.430637454],[-71.701946595,41.430558454],[-71.701881595,41.430491454],[-71.701802595,41.430444454],[-71.701716594,41.430406454],[-71.701628595,41.430394454],[-71.701618594,41.430396454],[-71.701477595,41.430429454],[-71.701438595,41.430511454],[-71.701428594,41.430582454],[-71.701384594,41.430654454],[-71.701321595,41.430681454],[-71.701262595,41.430701454],[-71.701182595,41.430743454],[-71.700941594,41.430824455],[-71.700738595,41.430880454],[-71.700613594,41.430892454],[-71.700371594,41.430884455],[-71.700281594,41.430857454],[-71.700236594,41.430801454],[-71.700238594,41.430768455],[-71.700254594,41.430742454],[-71.700205594,41.430680454],[-71.700121594,41.430621454],[-71.700060594,41.430556454],[-71.700019594,41.430484454],[-71.699969594,41.430424454],[-71.699916594,41.430370454],[-71.699849594,41.430351454],[-71.699778594,41.430376454],[-71.699735594,41.430439454],[-71.699728594,41.430449454],[-71.699726593,41.430469454],[-71.699718594,41.430544454],[-71.699737594,41.430600454],[-71.699819594,41.430741454],[-71.699860594,41.430833454],[-71.699871594,41.430931454],[-71.699848594,41.431029454],[-71.699755594,41.431352455],[-71.699711594,41.431440454],[-71.699655594,41.431529455],[-71.699593594,41.431616454],[-71.699459594,41.431783455],[-71.699380594,41.431854455],[-71.699289594,41.431915455],[-71.699080594,41.432037455],[-71.698975594,41.432104455],[-71.698873594,41.432172455],[-71.698669594,41.432285455],[-71.698558593,41.432353454],[-71.698386593,41.432473455],[-71.698209593,41.432559455],[-71.698083594,41.432604454],[-71.697882593,41.432667455],[-71.697681593,41.432743454],[-71.697259593,41.432884455],[-71.697060593,41.432961455],[-71.696988593,41.432982455],[-71.696913593,41.432995454],[-71.696840593,41.433000455],[-71.696698593,41.433000455],[-71.696624593,41.432996455],[-71.696387593,41.432971455],[-71.696257593,41.432941455],[-71.696155593,41.432924455],[-71.696094593,41.432934455],[-71.696078593,41.432987455],[-71.696050593,41.433020455],[-71.696007593,41.433039455],[-71.695895593,41.433030455],[-71.695777593,41.432997455],[-71.695667593,41.432974454],[-71.695588593,41.432968455],[-71.695414593,41.432940455],[-71.695159593,41.432921455],[-71.695049592,41.432908455],[-71.695032592,41.432884455],[-71.695047592,41.432858454],[-71.695141593,41.432837454],[-71.695461592,41.432847455],[-71.695577592,41.432862455],[-71.695672592,41.432882455],[-71.695762593,41.432875455],[-71.695838593,41.432854455],[-71.695858593,41.432830455],[-71.695754593,41.432787455],[-71.695649593,41.432751455],[-71.695529593,41.432727455],[-71.695314593,41.432696455],[-71.695235593,41.432691455],[-71.695069592,41.432690455],[-71.694992592,41.432693455],[-71.694919592,41.432701454],[-71.694797592,41.432729455],[-71.694719592,41.432754455],[-71.694671593,41.432799454],[-71.694675592,41.432858454],[-71.694664592,41.432924455],[-71.694575593,41.432970455],[-71.694512592,41.432957455],[-71.694445592,41.432920455],[-71.694374592,41.432889455],[-71.694296592,41.432895455],[-71.694202592,41.432918455],[-71.694152592,41.432948455],[-71.694031593,41.433020455],[-71.693972593,41.433074455],[-71.693946592,41.433133455],[-71.693882592,41.433449455],[-71.693909592,41.433535455],[-71.693930592,41.433629455],[-71.693772592,41.433727455],[-71.693622592,41.433707455],[-71.693617592,41.433706455],[-71.693480592,41.433656455],[-71.693293592,41.433676455],[-71.693239592,41.433684455],[-71.693154592,41.433699455],[-71.692873592,41.433849455],[-71.692731592,41.433888455],[-71.692616592,41.433921455],[-71.692540592,41.433938455],[-71.692256592,41.433951455],[-71.692045591,41.433967456],[-71.691971591,41.433969455],[-71.691805592,41.433966456],[-71.691614591,41.433937455],[-71.691500591,41.433912455],[-71.691401591,41.433880455],[-71.691314591,41.433846455],[-71.691251591,41.433816455],[-71.691250591,41.433809455],[-71.691456592,41.433838455],[-71.691597591,41.433872455],[-71.691761592,41.433888456],[-71.691885592,41.433879455],[-71.691976592,41.433849455],[-71.692084591,41.433838455],[-71.692223591,41.433840455],[-71.692299591,41.433834455],[-71.692373592,41.433821455],[-71.692642592,41.433744455],[-71.692689591,41.433695455],[-71.692700592,41.433629455],[-71.692649591,41.433589455],[-71.692427592,41.433498455],[-71.692321591,41.433450455],[-71.692220591,41.433412455],[-71.692143591,41.433360455],[-71.692083591,41.433302455],[-71.692058592,41.433244455],[-71.692088591,41.433188455],[-71.692150592,41.433127455],[-71.692219591,41.433097455],[-71.692307592,41.433135455],[-71.692386592,41.433190455],[-71.692473591,41.433238455],[-71.692552591,41.433266455],[-71.692628591,41.433271455],[-71.692660592,41.433244455],[-71.692623592,41.433183455],[-71.692576592,41.433118455],[-71.692529592,41.433006455],[-71.692511591,41.432941455],[-71.692475591,41.432888455],[-71.692143591,41.432778455],[-71.692056592,41.432796455],[-71.691959592,41.432826455],[-71.691852591,41.432865455],[-71.691690592,41.432958455],[-71.691477591,41.433051455],[-71.691269591,41.433148455],[-71.691076591,41.433254455],[-71.691008592,41.433286455],[-71.690856591,41.433346455],[-71.690710591,41.433412455],[-71.690406591,41.433532455],[-71.690220591,41.433597456],[-71.690127591,41.433635456],[-71.689950591,41.433722455],[-71.689693591,41.433828455],[-71.689398591,41.433962455],[-71.689330591,41.433999455],[-71.689150591,41.434117455],[-71.68904459,41.434204455],[-71.688839591,41.434333456],[-71.688563591,41.434536455],[-71.688368591,41.434660455],[-71.688315591,41.434700455],[-71.68813259,41.434864456],[-71.688081591,41.434904455],[-71.687926591,41.435012456],[-71.68784159,41.435083455],[-71.68775759,41.435120455],[-71.68774359,41.435104455],[-71.687906591,41.434896456],[-71.68795259,41.434845456],[-71.68801759,41.434784456],[-71.688020591,41.434748455],[-71.687964591,41.434675455],[-71.68791759,41.434604456],[-71.68783259,41.434544455],[-71.68789259,41.434503455],[-71.68796959,41.434464455],[-71.688022591,41.434485455],[-71.68807559,41.434546456],[-71.688137591,41.434581455],[-71.688159591,41.434579455],[-71.68826559,41.434462455],[-71.688374591,41.434373456],[-71.68846259,41.434308455],[-71.688529591,41.434251455],[-71.688546591,41.434193455],[-71.68851959,41.434124455],[-71.688506591,41.434070455],[-71.688508591,41.434009455],[-71.68860059,41.433991455],[-71.68867559,41.433951455],[-71.688684591,41.433908456],[-71.688626591,41.433871455],[-71.68849459,41.433846455],[-71.688487591,41.433815455],[-71.688511591,41.433773455],[-71.68855959,41.433741455],[-71.68869259,41.433722455],[-71.688842591,41.433716455],[-71.688955591,41.433704455],[-71.689036591,41.433701455],[-71.689129591,41.433684455],[-71.689380591,41.433682455],[-71.689475591,41.433665455],[-71.689479591,41.433642455],[-71.689396591,41.433604455],[-71.689155591,41.433584455],[-71.689029591,41.433579455],[-71.688912591,41.433596456],[-71.68881059,41.433596456],[-71.68872759,41.433591455],[-71.68865959,41.433565455],[-71.68849359,41.433540455],[-71.68840559,41.433562455],[-71.688314591,41.433609455],[-71.68822859,41.433679455],[-71.68815159,41.433769456],[-71.687984591,41.433937455],[-71.68779259,41.434194455],[-71.68763259,41.434355456],[-71.68753159,41.434429456],[-71.68731259,41.434527456],[-71.68711359,41.434628456],[-71.68700759,41.434638455],[-71.68692059,41.434639455],[-71.68686559,41.434629456],[-71.68679259,41.434575455],[-71.68671359,41.434534455],[-71.68661359,41.434489456],[-71.68650159,41.434448456],[-71.68639559,41.434415456],[-71.68627959,41.434407455],[-71.68614759,41.434413456],[-71.68601559,41.434437455],[-71.68576059,41.434526456],[-71.685550589,41.434628456],[-71.685479589,41.434672455],[-71.68540959,41.434706456],[-71.685342589,41.434745456],[-71.685298589,41.434807455],[-71.685285589,41.434870455],[-71.685295589,41.434992456],[-71.68534959,41.435130456],[-71.685401589,41.435326456],[-71.685438589,41.435394455],[-71.68555959,41.435578456],[-71.685710589,41.435750456],[-71.68581359,41.435846456],[-71.68595259,41.436020455],[-71.686057589,41.436131456],[-71.68610259,41.436187456],[-71.68617759,41.436301456],[-71.68626059,41.436392456],[-71.68631759,41.436484455],[-71.68636959,41.436558456],[-71.68640659,41.436638456],[-71.68640959,41.436732456],[-71.68643159,41.436828456],[-71.68646159,41.436910456],[-71.68647059,41.436979456],[-71.68644259,41.437056456],[-71.68639359,41.437128456],[-71.68636559,41.437148456],[-71.68632359,41.437132456],[-71.68619959,41.437081456],[-71.686077589,41.437089456],[-71.685961589,41.437137456],[-71.685901589,41.437170456],[-71.685783589,41.437248456],[-71.68571659,41.437283456],[-71.68548459,41.437391456],[-71.68541959,41.437429456],[-71.68536659,41.437468456],[-71.68529159,41.437560456],[-71.68526659,41.437614456],[-71.68525259,41.437668456],[-71.68525059,41.437889456],[-71.68530559,41.438053456],[-71.68533159,41.438226456],[-71.68533359,41.438351456],[-71.685339589,41.438409456],[-71.68537059,41.438510457],[-71.68537159,41.438525456],[-71.68537259,41.438544456],[-71.685374589,41.438564456],[-71.68538159,41.438725457],[-71.68539059,41.438781457],[-71.68542059,41.438891456],[-71.68542159,41.438946456],[-71.68541159,41.439000456],[-71.685394589,41.439054457],[-71.68532859,41.439202456],[-71.685280589,41.439289457],[-71.68509259,41.439571456],[-71.68489659,41.439808456],[-71.68484259,41.439850457],[-71.684793589,41.439837457],[-71.68475959,41.439785456],[-71.684738589,41.439709456],[-71.684735589,41.439658457],[-71.684814589,41.439594456],[-71.68497859,41.439427457],[-71.68497359,41.439404457],[-71.684892589,41.439379456],[-71.68476659,41.439395456],[-71.684634589,41.439425457],[-71.684515589,41.439457456],[-71.68441059,41.439508456],[-71.684306589,41.439568456],[-71.68421759,41.439625456],[-71.68414259,41.439696457],[-71.684090589,41.439790457],[-71.683969589,41.439969457],[-71.683900589,41.440050457],[-71.68380959,41.440197457],[-71.683702589,41.440348456],[-71.683444589,41.440652457],[-71.683409589,41.440714457],[-71.683289589,41.440855456],[-71.683105589,41.441056457],[-71.682983589,41.441156457],[-71.682873589,41.441199457],[-71.682754589,41.441280457],[-71.682435589,41.441580457],[-71.682241589,41.441832457],[-71.682128589,41.441938457],[-71.682065589,41.442040457],[-71.681997589,41.442181457],[-71.681940589,41.442283457],[-71.681670588,41.442575457],[-71.681546589,41.442716457],[-71.681287589,41.442990457],[-71.681202588,41.443101457],[-71.681103588,41.443350457],[-71.681094589,41.443519458],[-71.681077589,41.443646457],[-71.681011588,41.443823457],[-71.680983589,41.443947458],[-71.680979589,41.444114457],[-71.681007588,41.444435458],[-71.681013589,41.444566458],[-71.681050588,41.444816457],[-71.681078589,41.444954457],[-71.681117589,41.445073458],[-71.681181588,41.445531458],[-71.681190589,41.445712458],[-71.681179589,41.445872458],[-71.681129589,41.446054458],[-71.680992589,41.446190458],[-71.680886589,41.446283458],[-71.680758588,41.446405458],[-71.680604589,41.446512458],[-71.680461588,41.446565458],[-71.680309588,41.446605458],[-71.680134588,41.446626458],[-71.679911589,41.446691458],[-71.679692588,41.446778458],[-71.679549588,41.446862458],[-71.679475588,41.446951458],[-71.679397588,41.447083458],[-71.679310588,41.447195458],[-71.678909588,41.447510458],[-71.678791588,41.447583458],[-71.678481588,41.447718458],[-71.678366588,41.447791459],[-71.678196588,41.447868459],[-71.677860588,41.448007459],[-71.677586588,41.448178459],[-71.677488588,41.448266458],[-71.677384587,41.448342458],[-71.677243587,41.448399459],[-71.677198588,41.448437459],[-71.677147587,41.448544458],[-71.677085587,41.448651459],[-71.676977587,41.448771458],[-71.676942588,41.448847459],[-71.676877587,41.448991458],[-71.676803587,41.449109458],[-71.676785588,41.449194459],[-71.676779587,41.449334459],[-71.676764588,41.449467459],[-71.676695587,41.449534458],[-71.676664587,41.449587459],[-71.676655588,41.449722459],[-71.676654588,41.449839459],[-71.676680587,41.449939459],[-71.676726588,41.450060458],[-71.676731588,41.450464459],[-71.676730588,41.450579459],[-71.676719587,41.450693459],[-71.676693588,41.450806459],[-71.676629588,41.450973459],[-71.676599587,41.451094459],[-71.676586587,41.451265459],[-71.676552588,41.451380459],[-71.676531588,41.451553459],[-71.676530588,41.451662459],[-71.676562587,41.451783459],[-71.676582587,41.451895459],[-71.676579587,41.452062459],[-71.676440588,41.452349459],[-71.676403587,41.452461459],[-71.676329587,41.45253246],[-71.676265588,41.452658459],[-71.676107588,41.45280546],[-71.675976587,41.452907459],[-71.675826587,41.45297846],[-71.675729587,41.453063459],[-71.675481587,41.453225459],[-71.675386588,41.45331046],[-71.675213587,41.453549459],[-71.675170587,41.45365946],[-71.675112587,41.453770459],[-71.675085587,41.45388846],[-71.675035587,41.454037459],[-71.674959587,41.45415246],[-71.674866587,41.45432746],[-71.674798587,41.454427459],[-71.674712587,41.454528459],[-71.674640587,41.454622459],[-71.674597587,41.45475246],[-71.674538587,41.45499746],[-71.674518587,41.45540746],[-71.674469587,41.45556246],[-71.674433587,41.45572146],[-71.674400587,41.45596546],[-71.674296587,41.45628446],[-71.674279587,41.45643546],[-71.674275587,41.45675646],[-71.674284587,41.456939461],[-71.674323587,41.45704246],[-71.674400587,41.45714146],[-71.674509588,41.457444461],[-71.674527587,41.45755746],[-71.674525587,41.45769146],[-71.674494587,41.457833461],[-71.674437587,41.45797546],[-71.674343587,41.458086461],[-71.674228587,41.458181461],[-71.674119587,41.458264461],[-71.674007587,41.458398461],[-71.673862587,41.458551461],[-71.673634587,41.458713461],[-71.673507587,41.458847461],[-71.673293587,41.45903446],[-71.673193587,41.45912846],[-71.673085587,41.459242461],[-71.673038587,41.459298461],[-71.672994587,41.459317461],[-71.672908587,41.459355461],[-71.672769587,41.45938146],[-71.672745587,41.459414461],[-71.672675587,41.45957746],[-71.672595587,41.459685461],[-71.672531587,41.45979046],[-71.672516587,41.45988746],[-71.672519587,41.460183461],[-71.672500587,41.460291461],[-71.672465586,41.460407461],[-71.672305587,41.460649461],[-71.672168587,41.460749461],[-71.672046587,41.460815461],[-71.671882586,41.460897461],[-71.671716587,41.461096461],[-71.671683586,41.461127461],[-71.671528586,41.461136461],[-71.671350587,41.461161461],[-71.671361586,41.461251461],[-71.670819586,41.461254461],[-71.670701586,41.461249462],[-71.670653586,41.461141461],[-71.670651586,41.461014461],[-71.670531586,41.460991461],[-71.670376586,41.460986461],[-71.670216586,41.460971461],[-71.670047586,41.460923461],[-71.669896586,41.460887461],[-71.669747586,41.460868461],[-71.669568586,41.460828461],[-71.669478586,41.460791461],[-71.669317586,41.460716461],[-71.669160586,41.460672461],[-71.669002586,41.460619461],[-71.668828586,41.460550461],[-71.668668585,41.460511461],[-71.668527585,41.460485461],[-71.668539586,41.460444461],[-71.668492585,41.460357461],[-71.668353585,41.460280461],[-71.668283585,41.460289461],[-71.668264585,41.460366461],[-71.668124585,41.460403461],[-71.668097585,41.460390461],[-71.668008585,41.460367461],[-71.667891585,41.460315461],[-71.667776585,41.460244461],[-71.667502585,41.460124461],[-71.667398585,41.460048461],[-71.667278585,41.459950461],[-71.667152585,41.459926461],[-71.667147585,41.459928461],[-71.666992585,41.459810461],[-71.666883585,41.459736461],[-71.666773585,41.459652461],[-71.666526585,41.459498461],[-71.666277585,41.459371461],[-71.666141585,41.45932146],[-71.665988585,41.459276461],[-71.665829585,41.459211461],[-71.665683584,41.459144461],[-71.665368584,41.458966461],[-71.664997584,41.458769461],[-71.664873584,41.458689461],[-71.664726584,41.458602461],[-71.664608584,41.458526461],[-71.664470584,41.458455461],[-71.664340584,41.45842646],[-71.664152584,41.458421461],[-71.664003584,41.458408461],[-71.663841584,41.458401461],[-71.663687583,41.458414461],[-71.663612583,41.458432461],[-71.663545584,41.458447461],[-71.663374584,41.45852346],[-71.662469583,41.458814461],[-71.662053583,41.459508461],[-71.661304583,41.459591461],[-71.660703583,41.459461461],[-71.660428583,41.459127461],[-71.659540582,41.458667461],[-71.658664582,41.458614461],[-71.657703581,41.458783461],[-71.656375581,41.459029461],[-71.655813581,41.459173461],[-71.655483581,41.459192461],[-71.655227581,41.459145461],[-71.65502958,41.459039461],[-71.655011581,41.458657461],[-71.654769581,41.458094461],[-71.65367458,41.457400461],[-71.65313258,41.456842461],[-71.65272958,41.456057461],[-71.65164558,41.455338461],[-71.651324579,41.45526546],[-71.651075579,41.455104461],[-71.650946579,41.45503446],[-71.650855579,41.45495746],[-71.650721579,41.45482246],[-71.650573579,41.45466246],[-71.650496579,41.454535461],[-71.650427579,41.45439246],[-71.650377579,41.45428946],[-71.650301579,41.454091461],[-71.650156579,41.45390246],[-71.650093579,41.45373346],[-71.650089579,41.45365846],[-71.650113579,41.45353046],[-71.650199579,41.45343246],[-71.650279579,41.45331046],[-71.650321579,41.453194461],[-71.650377579,41.45309246],[-71.650446579,41.45298246],[-71.650525579,41.45288746],[-71.650616579,41.45280246],[-71.650693579,41.45271446],[-71.65091358,41.45238646],[-71.650980579,41.45225146],[-71.651001579,41.45210746],[-71.650987579,41.45197646],[-71.650918579,41.45174446],[-71.650846579,41.45161346],[-71.650827579,41.451443459],[-71.650729579,41.45134946],[-71.650588579,41.45132146],[-71.650436579,41.45131046],[-71.650285579,41.45126146],[-71.650124579,41.45124446],[-71.649897579,41.45118346],[-71.649765578,41.45112146],[-71.649668578,41.451054459],[-71.649569578,41.45093346],[-71.649474578,41.45080546],[-71.649376578,41.45065046],[-71.649240578,41.450410459],[-71.649161578,41.45019246],[-71.649158579,41.450137459],[-71.649156579,41.45009446],[-71.649155579,41.45006746],[-71.649083578,41.44991046],[-71.649072579,41.44979946],[-71.649062578,41.44975546],[-71.649101578,41.449518459],[-71.649139578,41.44944546],[-71.649179578,41.449322459],[-71.649304578,41.44917646],[-71.649397578,41.449048459],[-71.649408579,41.44896446],[-71.649385579,41.448888459],[-71.649307579,41.44882746],[-71.649175579,41.448800459],[-71.649017579,41.448819459],[-71.648902579,41.44884246],[-71.648842579,41.44884246],[-71.648822579,41.44884246],[-71.648674578,41.44888546],[-71.648419578,41.448935459],[-71.648200578,41.44896246],[-71.647896578,41.44896446],[-71.647665578,41.448930459],[-71.647487578,41.448875459],[-71.647321578,41.448817459],[-71.647178578,41.448775459],[-71.646970578,41.44869046],[-71.646808578,41.44863146],[-71.646432577,41.448543459],[-71.646173578,41.448488459],[-71.646022577,41.448484459],[-71.645898578,41.448539459],[-71.645807577,41.44857446],[-71.645683578,41.448639459],[-71.645648577,41.448692459],[-71.645526577,41.448694459],[-71.645485577,41.448673459],[-71.645451578,41.448623459],[-71.645368577,41.448583459],[-71.645140577,41.44856746],[-71.644912577,41.448502459],[-71.644848577,41.44843346],[-71.644782577,41.448342459],[-71.644723577,41.44824046],[-71.644701577,41.448214459],[-71.644662577,41.448171459],[-71.644623577,41.448135459],[-71.644542577,41.448116459],[-71.644397577,41.448111459],[-71.644297577,41.448030459],[-71.644258577,41.44798946],[-71.644143577,41.447971459],[-71.644061577,41.447922459],[-71.643924577,41.44788746],[-71.643818576,41.44785046],[-71.643810577,41.44780946],[-71.643804577,41.447709459],[-71.643780576,41.447643459],[-71.643752577,41.44763446],[-71.643750577,41.447613459],[-71.643707577,41.447583459],[-71.643534577,41.447534459],[-71.643439577,41.44752046],[-71.643307577,41.447516459],[-71.643244577,41.447484459],[-71.643185577,41.447341459],[-71.643100576,41.447220459],[-71.642954577,41.447119459],[-71.642857577,41.447075459],[-71.642705576,41.446981459],[-71.642660576,41.446977459],[-71.642567576,41.446991459],[-71.642442576,41.446988459],[-71.641991576,41.446988459],[-71.641847576,41.446968459],[-71.641647576,41.44689646],[-71.641535575,41.446845459],[-71.641430576,41.446767459],[-71.641235576,41.446728459],[-71.641148575,41.446696459],[-71.640894575,41.446543459],[-71.640811576,41.446543459],[-71.640644575,41.446532459],[-71.640544575,41.446440459],[-71.640504575,41.446392459],[-71.640503575,41.446239459],[-71.640508575,41.446216459],[-71.640486575,41.446148459],[-71.640364575,41.446066459],[-71.640293575,41.446025459],[-71.640183576,41.445984459],[-71.640095575,41.445969459],[-71.639991576,41.445962459],[-71.639959575,41.445960459],[-71.639781575,41.445958459],[-71.639681575,41.445969459],[-71.639615575,41.445969459],[-71.639474575,41.445984459],[-71.639333575,41.446051459],[-71.639210575,41.446065459],[-71.639062575,41.446091459],[-71.638720575,41.446172459],[-71.638631575,41.446224459],[-71.638533575,41.44631046],[-71.638457575,41.446444459],[-71.638372575,41.44646746],[-71.638303575,41.446533459],[-71.638255575,41.446612459],[-71.638229575,41.446649459],[-71.638153575,41.446733459],[-71.638069575,41.446842459],[-71.638014575,41.446943459],[-71.637921575,41.447023459],[-71.637829574,41.447119459]]]]}}"}, +{"type": "precinct", "typeId": 3001, "areaId": 26051, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":390,\"NAME\":\"3001\",\"SHAPE_Length\":0.47687191512512,\"SHAPE_Area\":-0.0071699153889113},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.569888573,41.835108537],[-71.569950573,41.835113537],[-71.570816574,41.835183537],[-71.572353376,41.83529352],[-71.572762499,41.834405677],[-71.573933194,41.834591275],[-71.573266574,41.835373537],[-71.573471575,41.835396537],[-71.574303575,41.835385537],[-71.574890575,41.835431537],[-71.575249575,41.835431537],[-71.575806575,41.835339537],[-71.576309575,41.835202537],[-71.576416576,41.835152537],[-71.576656804,41.835039274],[-71.576310277,41.834534168],[-71.578357764,41.833555495],[-71.578580283,41.833449133],[-71.579062128,41.833855499],[-71.579300577,41.833725537],[-71.579773576,41.833474537],[-71.580170577,41.833241537],[-71.581589577,41.832455536],[-71.582207578,41.832154536],[-71.582413577,41.832070536],[-71.582268577,41.831734536],[-71.583155988,41.831514631],[-71.583382577,41.831864536],[-71.583565578,41.831829536],[-71.584050693,41.831734862],[-71.584012594,41.831250511],[-71.585091578,41.831032536],[-71.587364579,41.831429536],[-71.588469326,41.831718075],[-71.590378845,41.832042871],[-71.590603703,41.8322713],[-71.590859389,41.832293434],[-71.592713096,41.83231413],[-71.592873581,41.832837535],[-71.593413581,41.832765536],[-71.593448581,41.832761536],[-71.593493581,41.832755536],[-71.593567581,41.832745536],[-71.594704582,41.832581536],[-71.595734582,41.832505535],[-71.596016582,41.832493536],[-71.596634582,41.832478536],[-71.596809582,41.832482536],[-71.597160582,41.832497536],[-71.597946583,41.832566535],[-71.599396583,41.832726536],[-71.599678583,41.832745536],[-71.600099583,41.832752536],[-71.600151583,41.832753536],[-71.600464583,41.832737536],[-71.600769584,41.832711536],[-71.600449123,41.83136869],[-71.602666781,41.830826173],[-71.603043584,41.832127536],[-71.605598585,41.831349535],[-71.605904585,41.831269535],[-71.606064585,41.831234535],[-71.606453585,41.831181535],[-71.606758586,41.831166535],[-71.607040585,41.831169535],[-71.607178585,41.831177536],[-71.607468585,41.831211535],[-71.607726586,41.831256535],[-71.607780585,41.831265535],[-71.608406586,41.831391535],[-71.608838586,41.831482535],[-71.609406586,41.831601535],[-71.610268587,41.831765535],[-71.610596587,41.831826535],[-71.610847587,41.831852535],[-71.611086587,41.831866535],[-71.611122587,41.831868535],[-71.611404586,41.831868535],[-71.611671587,41.831856535],[-71.612160587,41.831822535],[-71.614952588,41.831631535],[-71.615723588,41.831578535],[-71.617134589,41.831471534],[-71.617348589,41.831459535],[-71.617760589,41.831429535],[-71.61881359,41.831311535],[-71.619678589,41.831191535],[-71.62071259,41.831047534],[-71.62165159,41.830922535],[-71.62266559,41.830780535],[-71.622973949,41.830744874],[-71.62296313,41.830478209],[-71.622936227,41.829815139],[-71.6244686,41.829681889],[-71.624528822,41.83065018],[-71.625107591,41.830632534],[-71.626137592,41.830609535],[-71.626561591,41.830597534],[-71.626553592,41.830501534],[-71.626577591,41.830417534],[-71.626614592,41.830177534],[-71.626631592,41.830033534],[-71.626622592,41.829965535],[-71.626597591,41.829914534],[-71.626601591,41.829822534],[-71.626611592,41.829766534],[-71.626611592,41.829707534],[-71.626647592,41.829439534],[-71.626636591,41.829373534],[-71.626633592,41.829315534],[-71.626664592,41.829191534],[-71.626661592,41.829121534],[-71.626635591,41.829061534],[-71.626580591,41.829014534],[-71.626501591,41.828930534],[-71.626509592,41.828810534],[-71.626464591,41.828700534],[-71.626476592,41.828660534],[-71.626545592,41.828638534],[-71.626615591,41.828622534],[-71.626611592,41.828568534],[-71.626580591,41.828453534],[-71.626535592,41.828338534],[-71.626357592,41.828235534],[-71.626290591,41.828187534],[-71.626252591,41.828139534],[-71.626151591,41.828132534],[-71.626068592,41.828119534],[-71.626016591,41.828087534],[-71.625947592,41.828024534],[-71.625892592,41.827967534],[-71.625836591,41.827848534],[-71.625718591,41.827657534],[-71.625711591,41.827585534],[-71.625692591,41.827507534],[-71.625662591,41.827456534],[-71.625600592,41.827299533],[-71.625585591,41.827245534],[-71.625568591,41.827105533],[-71.625579592,41.826950533],[-71.625566591,41.826884534],[-71.625555591,41.826759534],[-71.625520591,41.826659533],[-71.625520591,41.826583534],[-71.625576591,41.826535534],[-71.625615591,41.826473534],[-71.625608591,41.826405533],[-71.625581591,41.826358534],[-71.625529591,41.826308533],[-71.625454591,41.826266533],[-71.625381591,41.826250533],[-71.625346591,41.826202534],[-71.625337591,41.826145534],[-71.625358591,41.826023534],[-71.625392591,41.825965534],[-71.625388591,41.825909534],[-71.625362591,41.825858533],[-71.625292591,41.825819533],[-71.625273591,41.825774534],[-71.625317591,41.825753534],[-71.625353591,41.825706533],[-71.625353591,41.825647533],[-71.625334591,41.825583533],[-71.625384591,41.825539534],[-71.625412591,41.825489533],[-71.625417591,41.825435533],[-71.625494591,41.825420534],[-71.625523591,41.825393533],[-71.625524591,41.825334533],[-71.625481591,41.825278533],[-71.625433591,41.825234533],[-71.625449591,41.825219533],[-71.625525591,41.825196533],[-71.625537591,41.825167534],[-71.625501591,41.825117533],[-71.625442591,41.825096533],[-71.625396591,41.825051534],[-71.625375591,41.824999533],[-71.625370591,41.824937533],[-71.625245591,41.824874534],[-71.625083591,41.824726533],[-71.625068591,41.824664533],[-71.625066591,41.824593533],[-71.625091591,41.824550533],[-71.625072591,41.824507534],[-71.625006591,41.824474533],[-71.624949591,41.824439533],[-71.62486259,41.824324533],[-71.624760591,41.824221533],[-71.624769591,41.824156534],[-71.62480459,41.824106533],[-71.62486059,41.824062533],[-71.624877591,41.824033533],[-71.624858591,41.823980534],[-71.624779591,41.823867533],[-71.624719591,41.823836533],[-71.624678591,41.823781533],[-71.624671591,41.823726533],[-71.62472459,41.823596533],[-71.624733591,41.823524533],[-71.624751591,41.823455533],[-71.62478559,41.823406533],[-71.624856591,41.823370533],[-71.62490159,41.823323533],[-71.624898591,41.823280533],[-71.624924591,41.823223533],[-71.624963591,41.823169533],[-71.62501659,41.823121533],[-71.62507659,41.823115533],[-71.625157591,41.823083533],[-71.625241591,41.823029533],[-71.62528959,41.823027533],[-71.625331591,41.823017533],[-71.625391591,41.822962533],[-71.625461591,41.822912533],[-71.625498591,41.822863533],[-71.625511591,41.822721533],[-71.625575591,41.822679533],[-71.625724591,41.822639533],[-71.625805591,41.822599533],[-71.625878591,41.822496533],[-71.625933591,41.822449533],[-71.625941591,41.822424532],[-71.625898591,41.822377533],[-71.625888591,41.822333533],[-71.625940591,41.822289533],[-71.626011591,41.822238533],[-71.626120591,41.822218533],[-71.626209591,41.822215533],[-71.626282592,41.822232533],[-71.626418592,41.822251533],[-71.626506591,41.822268532],[-71.626635591,41.822268532],[-71.626825592,41.822260533],[-71.626904592,41.822241533],[-71.626994591,41.822202533],[-71.627061592,41.822150532],[-71.627121592,41.822089533],[-71.627170591,41.822018533],[-71.627390592,41.821838532],[-71.627426592,41.821788533],[-71.627438591,41.821710533],[-71.627461591,41.821626532],[-71.627505592,41.821575533],[-71.627599592,41.821504533],[-71.627624592,41.821479533],[-71.627707591,41.821405533],[-71.627816592,41.821326533],[-71.627857592,41.821269533],[-71.627889591,41.821177532],[-71.627962591,41.821012533],[-71.627982591,41.820955533],[-71.628126592,41.820787532],[-71.628201592,41.820740533],[-71.628273591,41.820673532],[-71.628330592,41.820636532],[-71.628404592,41.820595532],[-71.628466592,41.820543533],[-71.628574592,41.820418532],[-71.628625591,41.820370533],[-71.628645591,41.820336532],[-71.628651592,41.820271533],[-71.628626591,41.820169532],[-71.628566591,41.820059533],[-71.628507591,41.819970532],[-71.628423592,41.819871532],[-71.628354591,41.819816532],[-71.628302592,41.819760532],[-71.628162591,41.819641532],[-71.628115592,41.819582532],[-71.628072592,41.819507532],[-71.628017592,41.819336532],[-71.627961591,41.819252532],[-71.627917592,41.819166532],[-71.627904591,41.819083532],[-71.627848591,41.819050532],[-71.627819592,41.819023532],[-71.627782592,41.818966532],[-71.627773591,41.818825532],[-71.627754591,41.818771532],[-71.627642592,41.818666532],[-71.627507592,41.818508532],[-71.627432592,41.818488532],[-71.627255592,41.818484532],[-71.627170591,41.818466532],[-71.627125591,41.818432532],[-71.627097591,41.818359532],[-71.627080592,41.818276532],[-71.627077591,41.818197532],[-71.627092591,41.818129532],[-71.627119592,41.818070532],[-71.627039591,41.817960532],[-71.627235592,41.817955531],[-71.627640591,41.817940532],[-71.628036592,41.817910532],[-71.628716592,41.817849532],[-71.628899591,41.817829532],[-71.630165592,41.817692532],[-71.630859593,41.817624531],[-71.630997593,41.817608531],[-71.632797593,41.817437532],[-71.633133593,41.817414531],[-71.635231594,41.817215531],[-71.636490594,41.817105531],[-71.637024595,41.817044531],[-71.637329594,41.816990531],[-71.638855595,41.816735531],[-71.639702595,41.816586532],[-71.641403596,41.816273531],[-71.642342596,41.816117531],[-71.644162597,41.815793531],[-71.644547597,41.815724531],[-71.645378597,41.815567531],[-71.645935597,41.81548053],[-71.646652597,41.815350531],[-71.647529598,41.815195531],[-71.649788598,41.81479753],[-71.650795599,41.814614531],[-71.652000599,41.81440853],[-71.6527406,41.81427653],[-71.6550376,41.81386653],[-71.655846601,41.81371353],[-71.658089601,41.81331353],[-71.658958601,41.81316853],[-71.659874602,41.81300053],[-71.661095602,41.81279053],[-71.662804603,41.812477529],[-71.663704603,41.81232953],[-71.667686604,41.811627529],[-71.668251604,41.811539529],[-71.670212605,41.81118453],[-71.670362605,41.811158529],[-71.671349606,41.81099053],[-71.671463606,41.810969529],[-71.672028606,41.810864529],[-71.673141606,41.810669529],[-71.674263606,41.810463529],[-71.675255606,41.810288529],[-71.675880606,41.810166529],[-71.676369607,41.810078528],[-71.676399607,41.810070529],[-71.676981607,41.809974529],[-71.677322607,41.809918529],[-71.677940608,41.809800529],[-71.678787607,41.809647529],[-71.678871608,41.809636529],[-71.679213607,41.809574528],[-71.679382608,41.809544529],[-71.680519608,41.809349529],[-71.680801608,41.809296529],[-71.681290609,41.809212529],[-71.682663608,41.808957529],[-71.681110608,41.800648527],[-71.681002608,41.799997526],[-71.680138607,41.795163526],[-71.680137607,41.795070526],[-71.679978607,41.793866526],[-71.679969608,41.793845526],[-71.679916607,41.793574526],[-71.679749607,41.792604525],[-71.679542606,41.791399525],[-71.679504606,41.791211525],[-71.678209606,41.783573524],[-71.678029606,41.782560523],[-71.677531606,41.779911523],[-71.677397605,41.779154523],[-71.677296606,41.778413523],[-71.677106605,41.777589522],[-71.677002606,41.777017523],[-71.676912605,41.776393523],[-71.676866605,41.776184522],[-71.676788605,41.775824522],[-71.676725605,41.775415522],[-71.676680605,41.775122522],[-71.676499605,41.774041522],[-71.676197605,41.772218522],[-71.675898604,41.770394521],[-71.675894605,41.770370522],[-71.673630603,41.757656518],[-71.673698603,41.757550519],[-71.673752603,41.757420519],[-71.673782603,41.757275519],[-71.673767603,41.757027519],[-71.673729603,41.756768519],[-71.673470603,41.755803519],[-71.673456603,41.755681519],[-71.673424603,41.755402518],[-71.673355603,41.754963519],[-71.673347603,41.754905519],[-71.673197603,41.754892518],[-71.673039603,41.754851518],[-71.672873602,41.754822518],[-71.672696603,41.754761518],[-71.672607603,41.754723518],[-71.672422603,41.754620518],[-71.672283603,41.754532518],[-71.672202603,41.754493518],[-71.672039602,41.754430518],[-71.671964602,41.754392518],[-71.671634602,41.754252518],[-71.671542602,41.754237518],[-71.671358602,41.754241519],[-71.671269602,41.754249518],[-71.671172602,41.754251518],[-71.671074602,41.754260519],[-71.671686929,41.75679416],[-71.6643016,41.76143752],[-71.656622598,41.766266521],[-71.649999596,41.770429522],[-71.649673596,41.770481522],[-71.649048596,41.770584522],[-71.648259596,41.770702523],[-71.648224595,41.770707522],[-71.647652596,41.770798522],[-71.646896595,41.770886522],[-71.646793595,41.770899522],[-71.646072595,41.770993523],[-71.645081595,41.771111523],[-71.644882595,41.771115522],[-71.644508594,41.771092523],[-71.643761594,41.771016522],[-71.642578594,41.770932523],[-71.641273593,41.770813522],[-71.641174593,41.770813522],[-71.640694593,41.770863522],[-71.639915592,41.770974523],[-71.639694593,41.770989523],[-71.639610593,41.770989523],[-71.639481593,41.770996522],[-71.639282593,41.770993523],[-71.639046592,41.770977522],[-71.638702593,41.770947522],[-71.638626593,41.770947522],[-71.638451593,41.770920522],[-71.638184592,41.770871523],[-71.637390592,41.770760523],[-71.637032592,41.770718523],[-71.636795591,41.770680523],[-71.636559592,41.770630522],[-71.635941591,41.770424523],[-71.635529591,41.770275522],[-71.634567591,41.769947522],[-71.634308591,41.769875522],[-71.634171591,41.769841523],[-71.634033591,41.769822523],[-71.633904591,41.769818522],[-71.63373659,41.769833522],[-71.633629591,41.769856522],[-71.633507591,41.769905522],[-71.63317159,41.769997523],[-71.63303459,41.770047522],[-71.632965591,41.770047522],[-71.632835591,41.770035523],[-71.632874591,41.769886522],[-71.63297359,41.769596522],[-71.633064591,41.769371522],[-71.63330859,41.768814522],[-71.63336959,41.768654523],[-71.633469591,41.768425522],[-71.633507591,41.768246522],[-71.633514591,41.768162522],[-71.633514591,41.768143522],[-71.63324559,41.768122522],[-71.633142591,41.768148522],[-71.633066591,41.768184522],[-71.63297759,41.768215522],[-71.63292559,41.768253522],[-71.632791591,41.768321522],[-71.632657591,41.768436522],[-71.632578591,41.768474522],[-71.632502591,41.768508522],[-71.63243459,41.768533522],[-71.632367591,41.768568522],[-71.63223959,41.768663522],[-71.632094591,41.768722522],[-71.63203159,41.768752523],[-71.63195859,41.768801522],[-71.63190059,41.768846522],[-71.63176559,41.769007522],[-71.63160259,41.769150522],[-71.63153559,41.769192522],[-71.63138259,41.769240522],[-71.63127859,41.769264522],[-71.63116359,41.769264522],[-71.63107559,41.769294523],[-71.63096759,41.769375523],[-71.63075759,41.769498522],[-71.630637589,41.769638522],[-71.63054359,41.769696522],[-71.630325589,41.769789522],[-71.63023959,41.769843523],[-71.63018259,41.769889522],[-71.630093589,41.769930522],[-71.629978589,41.769965522],[-71.62986659,41.770018523],[-71.62969359,41.770124522],[-71.629525589,41.770172523],[-71.629409589,41.770177522],[-71.629194589,41.770176522],[-71.628904589,41.770193523],[-71.628722589,41.770203522],[-71.628651589,41.770214523],[-71.628483589,41.770224523],[-71.628166589,41.770269523],[-71.628044589,41.770271523],[-71.627368589,41.770255522],[-71.627290589,41.770240522],[-71.627204588,41.770204523],[-71.627150589,41.770167523],[-71.627115589,41.770122522],[-71.627104588,41.770046522],[-71.627076589,41.769989523],[-71.627028588,41.769958523],[-71.626907588,41.769989523],[-71.626810588,41.770027522],[-71.626730589,41.770032523],[-71.626652589,41.770023522],[-71.626556588,41.770002522],[-71.626522588,41.769978523],[-71.626488588,41.769921523],[-71.626481588,41.769852522],[-71.626511589,41.769814523],[-71.626524588,41.769736523],[-71.626504588,41.769672522],[-71.626519588,41.769454523],[-71.626496589,41.769393523],[-71.626444588,41.769378522],[-71.626375588,41.769416522],[-71.626265588,41.769522522],[-71.626185589,41.769590523],[-71.626127588,41.769630522],[-71.626074588,41.769649523],[-71.625989589,41.769644523],[-71.625854588,41.769569523],[-71.625782588,41.769557522],[-71.625481588,41.769648523],[-71.625404588,41.769656522],[-71.625256588,41.769648523],[-71.625128588,41.769672522],[-71.625057588,41.769690522],[-71.624977587,41.769720523],[-71.624863588,41.769735523],[-71.624716588,41.769763523],[-71.624561588,41.769731522],[-71.624494587,41.769694522],[-71.624488588,41.769625523],[-71.624492587,41.769527523],[-71.624485588,41.769464523],[-71.624445588,41.769409523],[-71.624396587,41.769366523],[-71.624281587,41.769342522],[-71.624062587,41.769276523],[-71.623682588,41.769145522],[-71.623406587,41.769037523],[-71.623322587,41.768988522],[-71.623262587,41.768945523],[-71.623035587,41.768806523],[-71.622982587,41.768764523],[-71.622935587,41.768700522],[-71.622888587,41.768620522],[-71.622849587,41.768483522],[-71.622788587,41.768319523],[-71.622748587,41.768243523],[-71.622722587,41.768135522],[-71.622698587,41.768062522],[-71.622671587,41.768006523],[-71.622620587,41.767924522],[-71.622572587,41.767882522],[-71.622492587,41.767854523],[-71.622481587,41.767774523],[-71.622481587,41.767711522],[-71.622496587,41.767626522],[-71.622501587,41.767486522],[-71.622492587,41.767411522],[-71.622468587,41.767344522],[-71.622395587,41.767282522],[-71.622255587,41.767177522],[-71.622196587,41.767114523],[-71.622178587,41.766969522],[-71.622146587,41.766898523],[-71.622098587,41.766814522],[-71.622055586,41.766771522],[-71.621971587,41.766728522],[-71.621853587,41.766699522],[-71.621682586,41.766694522],[-71.621371586,41.766688522],[-71.621290587,41.766699522],[-71.620954587,41.766758522],[-71.620863586,41.766795522],[-71.620809586,41.766835522],[-71.620710586,41.766927522],[-71.620673586,41.766976523],[-71.620726586,41.767055523],[-71.620786586,41.767131523],[-71.620797587,41.767205522],[-71.620752586,41.767265522],[-71.620590586,41.767386523],[-71.620310586,41.767537522],[-71.620239586,41.767582523],[-71.620061587,41.767654523],[-71.619958586,41.767675523],[-71.619792586,41.767679523],[-71.619420586,41.767671522],[-71.619347586,41.767686522],[-71.619197586,41.767890523],[-71.619119586,41.767973522],[-71.619071586,41.768015522],[-71.618913585,41.768101523],[-71.618749586,41.768203523],[-71.618660585,41.768247522],[-71.618506585,41.768299523],[-71.618440586,41.768338523],[-71.618369585,41.768368522],[-71.618246586,41.768412523],[-71.618155585,41.768467522],[-71.618052586,41.768498523],[-71.617857586,41.768534523],[-71.617683585,41.768578522],[-71.617599586,41.768606523],[-71.617494585,41.768663523],[-71.617288586,41.768801523],[-71.617220585,41.768837523],[-71.617143585,41.768887523],[-71.617097586,41.768934523],[-71.616884585,41.769076523],[-71.616761585,41.769195523],[-71.616668586,41.769278523],[-71.616607585,41.769321522],[-71.616563585,41.769383523],[-71.616539585,41.770004523],[-71.616517585,41.770096523],[-71.616440585,41.770181523],[-71.616384585,41.770221523],[-71.616334585,41.770263523],[-71.616272585,41.770331523],[-71.616219585,41.770377523],[-71.616084585,41.770474523],[-71.616038585,41.770493523],[-71.615763585,41.770489523],[-71.615590585,41.770585523],[-71.615511585,41.770637523],[-71.615487585,41.770693523],[-71.615437585,41.771164523],[-71.615421584,41.771220523],[-71.615365584,41.771351523],[-71.615302585,41.771409523],[-71.615160585,41.771481524],[-71.615095585,41.771518524],[-71.615049585,41.771578524],[-71.614988585,41.771765523],[-71.614966585,41.771817523],[-71.614887585,41.771869524],[-71.614547584,41.772031523],[-71.614387584,41.772094523],[-71.614316584,41.772135523],[-71.614284585,41.772200524],[-71.614208585,41.772249523],[-71.614048585,41.772324523],[-71.613886584,41.772383523],[-71.613845584,41.772407523],[-71.613830584,41.772464523],[-71.613785584,41.772550524],[-71.613746584,41.772599523],[-71.613672584,41.772645524],[-71.613566585,41.772660523],[-71.613484584,41.772662524],[-71.613412584,41.772649524],[-71.613328584,41.772540523],[-71.613248584,41.772548524],[-71.613165584,41.772668524],[-71.612967584,41.772666524],[-71.612944584,41.772660523],[-71.612918584,41.772587524],[-71.612885584,41.772531524],[-71.612841584,41.772482523],[-71.612780584,41.772439523],[-71.612687584,41.772404523],[-71.612640584,41.772372524],[-71.612542584,41.772224523],[-71.612482584,41.772176524],[-71.612337584,41.772110523],[-71.612228584,41.772024524],[-71.612189584,41.771973523],[-71.612117584,41.771860523],[-71.612089583,41.771808524],[-71.612030583,41.771646523],[-71.611999584,41.771589523],[-71.611956584,41.771533523],[-71.611878584,41.771483523],[-71.611799583,41.771459524],[-71.611703583,41.771445523],[-71.611627584,41.771438524],[-71.611556584,41.771469523],[-71.611485583,41.771517524],[-71.611417584,41.771547523],[-71.611338584,41.771555524],[-71.611280584,41.771522523],[-71.611188584,41.771454523],[-71.611201584,41.771295523],[-71.611222584,41.771228524],[-71.611249583,41.771175523],[-71.611277583,41.771104523],[-71.611298584,41.771029523],[-71.611304584,41.770817524],[-71.611360584,41.770668523],[-71.611362584,41.770541523],[-71.611325584,41.770489523],[-71.611260584,41.770443523],[-71.611201584,41.770408524],[-71.611120583,41.770389524],[-71.611038583,41.770363523],[-71.610987583,41.770309523],[-71.610983583,41.770253524],[-71.611002583,41.770134523],[-71.611025583,41.770064523],[-71.611080583,41.770017523],[-71.611155583,41.769986523],[-71.611241584,41.769928523],[-71.611290583,41.769868523],[-71.611324584,41.769807523],[-71.611319584,41.769722523],[-71.611286584,41.769678523],[-71.611217583,41.769651523],[-71.611112583,41.769639523],[-71.611025583,41.769609523],[-71.610966583,41.769575523],[-71.610918583,41.769529523],[-71.610874584,41.769477523],[-71.610854584,41.769396523],[-71.610824583,41.769329523],[-71.610782583,41.769270523],[-71.610705583,41.769179523],[-71.610660583,41.769118523],[-71.610541583,41.768975523],[-71.610476583,41.768856523],[-71.610469583,41.768800523],[-71.610467583,41.768718523],[-71.610441583,41.768579522],[-71.610441583,41.768515523],[-71.610416583,41.768465523],[-71.610342583,41.768395523],[-71.610278583,41.768354523],[-71.610201583,41.768316523],[-71.610153583,41.768280523],[-71.610154583,41.768211523],[-71.610143583,41.767975522],[-71.610152583,41.767710523],[-71.610137583,41.767674523],[-71.610076583,41.767628523],[-71.610041583,41.767576523],[-71.609906583,41.767398523],[-71.609786582,41.767215522],[-71.609765582,41.767117522],[-71.609762583,41.767059522],[-71.609774583,41.767004522],[-71.609823583,41.766957523],[-71.609861583,41.766909523],[-71.609888583,41.766856523],[-71.609872583,41.766801523],[-71.609819583,41.766751522],[-71.609765582,41.766686522],[-71.609758583,41.766617522],[-71.609759583,41.766559522],[-71.609770582,41.766502523],[-71.609721583,41.766478522],[-71.609645583,41.766477522],[-71.609549583,41.766465523],[-71.609497582,41.766422522],[-71.609505583,41.766168522],[-71.609567583,41.765978523],[-71.609649582,41.765841523],[-71.609699583,41.765721522],[-71.609637583,41.765477522],[-71.609622583,41.765348522],[-71.609581583,41.765209522],[-71.609550583,41.764982522],[-71.609522583,41.764930522],[-71.609467583,41.764889522],[-71.609396582,41.764879522],[-71.609317582,41.764924522],[-71.609270583,41.764951522],[-71.609192583,41.764958522],[-71.609160583,41.764971522],[-71.609109582,41.765017522],[-71.609038583,41.765054522],[-71.609006582,41.765065523],[-71.608935582,41.765090522],[-71.608852582,41.765104523],[-71.608770583,41.765110522],[-71.608693582,41.765123523],[-71.608632583,41.765154522],[-71.608588582,41.765223522],[-71.608601582,41.765302522],[-71.608645582,41.765405522],[-71.608690583,41.765467522],[-71.608703582,41.765495523],[-71.608655582,41.765552523],[-71.608593583,41.765590523],[-71.608500582,41.765629523],[-71.608562582,41.765753522],[-71.608600582,41.765804523],[-71.608598582,41.765872522],[-71.608584582,41.765932522],[-71.608525582,41.766042522],[-71.608569582,41.766100523],[-71.608560582,41.766157523],[-71.608533583,41.766208522],[-71.608468582,41.766193523],[-71.608403582,41.766155523],[-71.608359583,41.766140522],[-71.608337582,41.766195523],[-71.608341583,41.766398522],[-71.608368582,41.766460522],[-71.608419583,41.766515522],[-71.608382582,41.766663523],[-71.608376583,41.766745522],[-71.608393582,41.766861522],[-71.608390582,41.766944522],[-71.608323582,41.767254522],[-71.608321583,41.767313522],[-71.608328582,41.767374522],[-71.608349582,41.767460523],[-71.608358583,41.767523523],[-71.608420582,41.767813523],[-71.608416583,41.767872523],[-71.608398583,41.767995522],[-71.608396583,41.768052522],[-71.608420582,41.768197523],[-71.608442582,41.768257523],[-71.608452583,41.768339523],[-71.608441582,41.768557523],[-71.608426582,41.768637523],[-71.608400582,41.768688523],[-71.608342582,41.768747523],[-71.608281583,41.768822523],[-71.608253582,41.768889523],[-71.608182583,41.769019523],[-71.608098582,41.769150523],[-71.608039582,41.769193523],[-71.607948583,41.769225523],[-71.607834583,41.769242523],[-71.607799582,41.769242523],[-71.607783582,41.769159523],[-71.607779582,41.769101523],[-71.607766582,41.769042523],[-71.607683582,41.768997523],[-71.607290582,41.768915523],[-71.607137582,41.768846523],[-71.607069582,41.768825523],[-71.606731582,41.768788523],[-71.606642582,41.768784523],[-71.606427582,41.768783523],[-71.606238581,41.768812523],[-71.606102581,41.768843523],[-71.605946581,41.768905523],[-71.605867581,41.768926523],[-71.605759582,41.768967523],[-71.605520581,41.769089523],[-71.605278582,41.769169523],[-71.605180582,41.769208523],[-71.605088581,41.769238523],[-71.605003582,41.769257523],[-71.604770582,41.769275523],[-71.604658581,41.769289523],[-71.604453581,41.769331523],[-71.604363581,41.769346523],[-71.604288581,41.769353523],[-71.604204581,41.769355524],[-71.604101581,41.769368523],[-71.604016581,41.769402523],[-71.603938581,41.769440523],[-71.603830581,41.769505523],[-71.603765581,41.769539523],[-71.603748581,41.769608524],[-71.603742581,41.769847523],[-71.603754581,41.769923523],[-71.603757581,41.770044523],[-71.603715581,41.770121523],[-71.603705581,41.770243523],[-71.603685581,41.770350524],[-71.603666581,41.770411523],[-71.603636581,41.770484524],[-71.603606581,41.770539524],[-71.603551581,41.770623524],[-71.60348658,41.770688523],[-71.603420581,41.770743523],[-71.603373581,41.770797524],[-71.603323581,41.770840523],[-71.603202581,41.770874524],[-71.603095581,41.770880523],[-71.603045581,41.770845523],[-71.603014581,41.770789523],[-71.602994581,41.770706523],[-71.602988581,41.770650523],[-71.60300158,41.770181523],[-71.602927581,41.770151524],[-71.602837581,41.770131524],[-71.60267058,41.770046523],[-71.60263558,41.769992523],[-71.60257158,41.769836523],[-71.602545581,41.769691523],[-71.602540581,41.769506523],[-71.60256058,41.768682523],[-71.602546581,41.768613523],[-71.60251258,41.768538523],[-71.602468581,41.768464523],[-71.60244358,41.768399523],[-71.602348581,41.768245523],[-71.60226158,41.768123523],[-71.602198581,41.767977523],[-71.60219058,41.767901523],[-71.602195581,41.767801523],[-71.60220858,41.767740523],[-71.60224558,41.767643523],[-71.60228458,41.767582523],[-71.602331581,41.767534523],[-71.60234758,41.767463523],[-71.60234758,41.767408522],[-71.60230658,41.767223523],[-71.60228758,41.767169523],[-71.60226158,41.766957523],[-71.60230058,41.766897523],[-71.60238758,41.766858523],[-71.602430581,41.766827523],[-71.60243758,41.766763523],[-71.602411581,41.766706522],[-71.60234458,41.766661523],[-71.602235581,41.766630522],[-71.602156581,41.766612522],[-71.60206758,41.766580523],[-71.60198058,41.766529523],[-71.601905581,41.766500523],[-71.60172158,41.766416522],[-71.60166558,41.766369523],[-71.60163258,41.766172523],[-71.60159558,41.765764523],[-71.60159458,41.765672522],[-71.60158458,41.765602522],[-71.60155658,41.765516522],[-71.60154558,41.765385522],[-71.60150058,41.765317523],[-71.60142758,41.765254523],[-71.60132958,41.765228522],[-71.60116858,41.765227522],[-71.60107758,41.765212522],[-71.600954579,41.765169522],[-71.60091958,41.765106522],[-71.60089058,41.764962523],[-71.60082758,41.764807523],[-71.60079358,41.764756522],[-71.60066658,41.764600522],[-71.60063658,41.764531522],[-71.600660579,41.764080522],[-71.60070658,41.763845522],[-71.60070758,41.763742522],[-71.60069358,41.763606522],[-71.60067758,41.763553522],[-71.600643579,41.763504522],[-71.60057858,41.763453522],[-71.600509579,41.763434522],[-71.60032658,41.763405522],[-71.600251579,41.763403522],[-71.600177579,41.763385522],[-71.600114579,41.763351522],[-71.60001358,41.763305522],[-71.599997579,41.763281522],[-71.600019579,41.763123522],[-71.600023579,41.762929522],[-71.599995579,41.762876522],[-71.599931579,41.762860522],[-71.599232579,41.762854522],[-71.599146579,41.762846522],[-71.599134579,41.762828522],[-71.599117579,41.762804522],[-71.599112579,41.762737522],[-71.599113579,41.762653522],[-71.599176579,41.762537522],[-71.599184579,41.762492522],[-71.599025579,41.762368522],[-71.598976579,41.762325522],[-71.598916579,41.762244522],[-71.598899579,41.762181522],[-71.598893579,41.762044521],[-71.598895579,41.761982522],[-71.598901579,41.761734522],[-71.598899579,41.761524522],[-71.598944579,41.761433522],[-71.598989579,41.761383521],[-71.599081579,41.761371522],[-71.599146579,41.761351522],[-71.599211579,41.761301522],[-71.599291579,41.761290522],[-71.599341579,41.761313522],[-71.599419579,41.761380522],[-71.599478579,41.761384521],[-71.599548579,41.761351522],[-71.599619579,41.761288522],[-71.59968258,41.761249522],[-71.599715579,41.761199522],[-71.599764579,41.761139522],[-71.599775579,41.761040522],[-71.599776579,41.760967522],[-71.599763579,41.760912522],[-71.599724579,41.760859521],[-71.599680579,41.760812522],[-71.599610579,41.760756522],[-71.599546579,41.760722521],[-71.599505579,41.760686522],[-71.599539579,41.760611522],[-71.599620579,41.760524521],[-71.599601579,41.760449521],[-71.599542579,41.760383522],[-71.599469579,41.760323522],[-71.599418579,41.760244522],[-71.599406579,41.760173521],[-71.599406579,41.760112522],[-71.599422579,41.759899521],[-71.599413579,41.759839522],[-71.599366579,41.759734522],[-71.599381579,41.759663522],[-71.599429579,41.759584522],[-71.599538579,41.759440521],[-71.599802579,41.759168521],[-71.599858579,41.759129521],[-71.600009579,41.759069521],[-71.600065579,41.759031521],[-71.600162579,41.758903522],[-71.60018958,41.758836521],[-71.600231579,41.758784522],[-71.600311579,41.758712521],[-71.600350579,41.758666521],[-71.60036458,41.758601521],[-71.600458579,41.758489521],[-71.600517579,41.758452521],[-71.600586579,41.758418521],[-71.60065358,41.758368521],[-71.600682579,41.758294521],[-71.600665579,41.758240522],[-71.600628579,41.758153521],[-71.60061758,41.758062521],[-71.600619579,41.758004521],[-71.600632579,41.757940521],[-71.600663579,41.757871521],[-71.60075258,41.757828521],[-71.600853579,41.757795521],[-71.600975579,41.757620521],[-71.601040579,41.757567521],[-71.601097579,41.757531521],[-71.601135579,41.757472521],[-71.601155579,41.757405521],[-71.601187579,41.757345521],[-71.601246579,41.757279521],[-71.60131758,41.757215521],[-71.601381579,41.757178521],[-71.60150958,41.757116521],[-71.601738579,41.757116521],[-71.601810579,41.757099521],[-71.601970579,41.75703352],[-71.602025579,41.75699552],[-71.60207358,41.756924521],[-71.602123579,41.756873521],[-71.60219558,41.756787521],[-71.60227658,41.756649521],[-71.60234158,41.75662552],[-71.602530579,41.756577521],[-71.60259658,41.756550521],[-71.602745579,41.756477521],[-71.60285158,41.756442521],[-71.60311458,41.756323521],[-71.60321758,41.756260521],[-71.60329958,41.75619752],[-71.60346758,41.756033521],[-71.60350958,41.75598052],[-71.60362558,41.75581152],[-71.60366358,41.755744521],[-71.60376058,41.755658521],[-71.60382058,41.75561552],[-71.60385658,41.75553252],[-71.60385758,41.755329521],[-71.60382558,41.75526052],[-71.60377358,41.755217521],[-71.60370558,41.75518252],[-71.60363058,41.755159521],[-71.60357858,41.75513152],[-71.60361958,41.755100521],[-71.60373558,41.75508352],[-71.60386958,41.755074521],[-71.60382558,41.75501252],[-71.60377958,41.754963521],[-71.60360058,41.75485652],[-71.60357958,41.75483352],[-71.60370758,41.75481752],[-71.60385158,41.75481652],[-71.60389958,41.754805521],[-71.60393458,41.754750521],[-71.60402558,41.754727521],[-71.60412458,41.754710521],[-71.60420958,41.754688521],[-71.60422058,41.75462152],[-71.60427958,41.75438052],[-71.60436558,41.75427252],[-71.60434758,41.75417952],[-71.60433958,41.75403452],[-71.60432458,41.75396452],[-71.60427158,41.75390952],[-71.604205581,41.75386352],[-71.604166581,41.75381652],[-71.60417458,41.75356452],[-71.60423058,41.75343152],[-71.60430158,41.75338252],[-71.60436758,41.75334552],[-71.60442458,41.75330252],[-71.604457581,41.75322252],[-71.60454558,41.75304752],[-71.604537581,41.75299052],[-71.604538581,41.75287752],[-71.60454958,41.75282352],[-71.60454758,41.75267052],[-71.60456758,41.75259552],[-71.60470458,41.75256552],[-71.60474558,41.752508519],[-71.604749581,41.75243652],[-71.60472758,41.752371519],[-71.60468858,41.75236252],[-71.604614581,41.75235852],[-71.60455158,41.75233152],[-71.604537581,41.752274519],[-71.60458558,41.75222752],[-71.604654581,41.75220752],[-71.604830581,41.75221852],[-71.60487258,41.75218552],[-71.60489358,41.75212952],[-71.60490258,41.75207252],[-71.60494158,41.75195152],[-71.60493058,41.75172152],[-71.60496958,41.751652519],[-71.605041581,41.75159952],[-71.60516858,41.75148152],[-71.60525158,41.75145352],[-71.60532958,41.75145352],[-71.60540658,41.751476519],[-71.60548358,41.75150852],[-71.60551658,41.75150252],[-71.60554258,41.751436519],[-71.60555458,41.751322519],[-71.60558058,41.751263519],[-71.605660581,41.75115852],[-71.605708581,41.751084519],[-71.605786581,41.75094352],[-71.60588558,41.75084752],[-71.605897581,41.75078952],[-71.605898581,41.75072752],[-71.605921581,41.750655519],[-71.605962581,41.750603519],[-71.60602258,41.750544519],[-71.60610358,41.750541519],[-71.60617758,41.750526519],[-71.60623958,41.750487519],[-71.606272581,41.75043752],[-71.606332581,41.750403519],[-71.606405581,41.75037652],[-71.606463581,41.750344519],[-71.60652858,41.75031952],[-71.606582581,41.750274519],[-71.606641581,41.750148519],[-71.60668458,41.750074519],[-71.60676358,41.75002952],[-71.606911581,41.750004519],[-71.607064581,41.74998852],[-71.607273581,41.749985519],[-71.607358581,41.749953519],[-71.607404581,41.749882519],[-71.607407581,41.74981552],[-71.607399581,41.749739519],[-71.607405581,41.749662519],[-71.607439581,41.749614519],[-71.607540581,41.74950352],[-71.607600581,41.749458519],[-71.607674581,41.749422519],[-71.607739581,41.749379519],[-71.607763581,41.749315519],[-71.607767581,41.749252519],[-71.607789581,41.749198519],[-71.607847581,41.749158519],[-71.607931582,41.749042519],[-71.608062581,41.748826519],[-71.608125582,41.748691519],[-71.608198581,41.748556519],[-71.608210581,41.748499519],[-71.608193581,41.748435519],[-71.608141581,41.748375519],[-71.608104581,41.748308519],[-71.608104581,41.748000519],[-71.608135581,41.747922519],[-71.608183582,41.747852519],[-71.608222582,41.747805519],[-71.608332581,41.747709519],[-71.608339582,41.747657519],[-71.608320582,41.747596519],[-71.608315581,41.747527519],[-71.608317581,41.747457518],[-71.608352581,41.747396519],[-71.608392581,41.747341518],[-71.608444581,41.747281519],[-71.608559581,41.747206518],[-71.608670582,41.747105519],[-71.608686581,41.747057519],[-71.608632582,41.747041519],[-71.608546581,41.747054519],[-71.608483581,41.747082519],[-71.608358582,41.747154519],[-71.608302582,41.747196519],[-71.608189581,41.747298519],[-71.608117581,41.747349519],[-71.607974581,41.747427519],[-71.607904581,41.747454519],[-71.607692581,41.747517518],[-71.607630581,41.747549519],[-71.607571581,41.747586519],[-71.607435581,41.747655519],[-71.607380581,41.747696519],[-71.607312581,41.747758519],[-71.60723058,41.747805519],[-71.607151581,41.747842519],[-71.607086581,41.747879519],[-71.607043581,41.747929519],[-71.60699958,41.747992519],[-71.606976581,41.748044519],[-71.606912581,41.748157519],[-71.606886581,41.748214519],[-71.606874581,41.748289519],[-71.606873581,41.748352519],[-71.606829581,41.748408519],[-71.60668858,41.748520519],[-71.606604581,41.748566519],[-71.60647558,41.748621519],[-71.605896581,41.748813519],[-71.605702581,41.748856519],[-71.60561258,41.748869519],[-71.605528581,41.748875519],[-71.605295581,41.74888052],[-71.605220581,41.748888519],[-71.605062581,41.748921519],[-71.60495858,41.748934519],[-71.60485858,41.748931519],[-71.60478858,41.748914519],[-71.60472058,41.748886519],[-71.60465958,41.748848519],[-71.60458758,41.748796519],[-71.60452558,41.748760519],[-71.60446858,41.748770519],[-71.60444458,41.748834519],[-71.60444858,41.748903519],[-71.60448458,41.749017519],[-71.60449458,41.749079519],[-71.60450058,41.749415519],[-71.60448658,41.749493519],[-71.60443758,41.74955952],[-71.60429058,41.749647519],[-71.60423658,41.749704519],[-71.60416658,41.749844519],[-71.60410258,41.749945519],[-71.60405758,41.749992519],[-71.60398758,41.750054519],[-71.60382158,41.750148519],[-71.60365158,41.750266519],[-71.60358758,41.75030352],[-71.60351858,41.75033552],[-71.603430579,41.750382519],[-71.60338558,41.750428519],[-71.60339858,41.750541519],[-71.60337458,41.75059552],[-71.603252579,41.75069252],[-71.60319258,41.75074952],[-71.60312558,41.75080252],[-71.60300858,41.75088552],[-71.60265758,41.75109252],[-71.60258158,41.75115252],[-71.60250958,41.75126852],[-71.602459579,41.751318519],[-71.602395579,41.75135652],[-71.602325579,41.751377519],[-71.60221758,41.75138452],[-71.60211558,41.75138652],[-71.60201758,41.75141152],[-71.601880579,41.75146952],[-71.601635579,41.75156852],[-71.601350579,41.75166352],[-71.601172579,41.75173152],[-71.601099579,41.751768519],[-71.601046579,41.751806519],[-71.600922579,41.75192552],[-71.600852579,41.75196152],[-71.600773579,41.75198552],[-71.600693579,41.75199652],[-71.600618579,41.752001519],[-71.600544579,41.75199452],[-71.600468579,41.75197152],[-71.600390579,41.75195352],[-71.600232578,41.75194952],[-71.600071579,41.75198252],[-71.599977578,41.75199052],[-71.599799579,41.75199352],[-71.599695579,41.75198552],[-71.599602579,41.75195552],[-71.599504579,41.75193652],[-71.599405579,41.75193652],[-71.599311579,41.751942519],[-71.599232579,41.75196552],[-71.599149579,41.75197352],[-71.599081578,41.75193752],[-71.599044578,41.75187152],[-71.599041578,41.75173252],[-71.599059578,41.75169552],[-71.599129579,41.75167552],[-71.599143578,41.75164452],[-71.599027578,41.75129152],[-71.598980579,41.75122452],[-71.598899579,41.75120852],[-71.598821579,41.75120752],[-71.598743579,41.75122852],[-71.598576578,41.751319519],[-71.598557578,41.75136752],[-71.598601578,41.75142552],[-71.598674578,41.75145052],[-71.598741578,41.75148052],[-71.598762579,41.75154052],[-71.598762579,41.75160752],[-71.598744579,41.75167552],[-71.598686579,41.75172952],[-71.598619578,41.75178152],[-71.598587579,41.75183452],[-71.598562578,41.75189852],[-71.598532578,41.75195052],[-71.598392578,41.75211052],[-71.598282578,41.75229452],[-71.598240578,41.75243352],[-71.598212578,41.752507521],[-71.598122579,41.75262352],[-71.598028578,41.75270652],[-71.597863578,41.75286752],[-71.597831578,41.75292052],[-71.597782578,41.75297252],[-71.597743578,41.75302252],[-71.597658578,41.753148521],[-71.597597578,41.753208521],[-71.597542578,41.753248521],[-71.597488578,41.753304521],[-71.597361578,41.75348652],[-71.597334578,41.75354652],[-71.597289578,41.753618521],[-71.597246578,41.75366352],[-71.597217578,41.753714521],[-71.597123578,41.75374552],[-71.597044578,41.75377852],[-71.596972577,41.753853521],[-71.596948578,41.753908521],[-71.596944578,41.753963521],[-71.596933577,41.75401652],[-71.596901578,41.754065521],[-71.596658578,41.754163521],[-71.596591578,41.75422752],[-71.596595578,41.75428552],[-71.596608578,41.75436152],[-71.596614578,41.75444352],[-71.596567577,41.75448452],[-71.596413578,41.75454452],[-71.596337578,41.754648521],[-71.596338578,41.754705521],[-71.596321578,41.75475852],[-71.596290577,41.75481552],[-71.596249578,41.754846521],[-71.596142578,41.754867521],[-71.596087578,41.75484952],[-71.596031578,41.75479652],[-71.595969578,41.754750521],[-71.595900577,41.754744521],[-71.595617577,41.75475552],[-71.595410578,41.754807521],[-71.595332578,41.75481552],[-71.595206577,41.75481352],[-71.595170577,41.754857521],[-71.595150577,41.754915521],[-71.595154578,41.754978521],[-71.595211578,41.755110521],[-71.595089577,41.75518252],[-71.595014577,41.755208521],[-71.594937577,41.755216521],[-71.594709578,41.755211521],[-71.594621577,41.755190521],[-71.594560577,41.75516152],[-71.594499577,41.75512152],[-71.594471577,41.755080521],[-71.594468577,41.755012521],[-71.594485577,41.75493052],[-71.594446577,41.754875521],[-71.594342577,41.754822521],[-71.594261577,41.754787521],[-71.594219577,41.754739521],[-71.594193577,41.754661521],[-71.594227577,41.754591521],[-71.594290577,41.754566521],[-71.594450577,41.754530521],[-71.594455577,41.75446552],[-71.594452577,41.75440252],[-71.594328577,41.754376521],[-71.594251577,41.75436852],[-71.594142577,41.75436552],[-71.593766577,41.754370521],[-71.593740577,41.75442552],[-71.593709577,41.754429521],[-71.593496577,41.75442252],[-71.593342577,41.754374521],[-71.593179577,41.75434352],[-71.593137576,41.754354521],[-71.593085577,41.75440152],[-71.593041577,41.754451521],[-71.593019576,41.754526521],[-71.592934577,41.75463552],[-71.592880576,41.75469252],[-71.592821576,41.754738521],[-71.592743576,41.75477052],[-71.592459576,41.75477352],[-71.592378576,41.754781521],[-71.592373576,41.754924521],[-71.592350576,41.75498852],[-71.592309577,41.755019521],[-71.592231577,41.75504452],[-71.592166576,41.755089521],[-71.592091576,41.75510252],[-71.592014577,41.755096521],[-71.591981576,41.755056521],[-71.591966576,41.754979521],[-71.591966576,41.75477052],[-71.591959577,41.75471252],[-71.591946576,41.75465752],[-71.591856576,41.754492521],[-71.591807576,41.754431521],[-71.591750576,41.754376521],[-71.591674576,41.754371521],[-71.591622576,41.754358521],[-71.591574576,41.75430252],[-71.591568576,41.754243521],[-71.591581576,41.75418552],[-71.591634576,41.754134521],[-71.591686577,41.754095521],[-71.591714576,41.754026521],[-71.591780576,41.75397452],[-71.591764577,41.753909521],[-71.591718576,41.753863521],[-71.591658576,41.753829521],[-71.591579576,41.75381752],[-71.591477576,41.753809521],[-71.591390576,41.75378452],[-71.591177576,41.753714521],[-71.591121576,41.753676521],[-71.590971576,41.75360152],[-71.590914576,41.753556521],[-71.590853576,41.753498521],[-71.590820576,41.753440521],[-71.590813575,41.75337552],[-71.590814576,41.75331052],[-71.590828576,41.75319552],[-71.590855576,41.75312052],[-71.590885576,41.75299952],[-71.590905576,41.752873521],[-71.590924576,41.75280652],[-71.590950576,41.75267552],[-71.590952576,41.75261652],[-71.590965576,41.75255952],[-71.590974576,41.75248952],[-71.590927575,41.752446521],[-71.590853576,41.752427521],[-71.590795576,41.75238052],[-71.590822576,41.75234152],[-71.590897576,41.752328521],[-71.590898576,41.75228852],[-71.590847576,41.752233521],[-71.590818576,41.75216152],[-71.590830575,41.75208352],[-71.590877576,41.75201452],[-71.590922576,41.75196352],[-71.590949575,41.75190352],[-71.590951576,41.75176752],[-71.590943576,41.75170352],[-71.590947575,41.75158152],[-71.590963576,41.751512521],[-71.590972576,41.75144452],[-71.590962576,41.75138252],[-71.590926576,41.75132752],[-71.590880576,41.75127952],[-71.590813575,41.75123952],[-71.590725576,41.75120252],[-71.590520575,41.75113052],[-71.590339576,41.75107252],[-71.590054575,41.75101152],[-71.589864575,41.75096152],[-71.589758575,41.75083752],[-71.589677576,41.75064852],[-71.589588575,41.75055452],[-71.589563575,41.75054552],[-71.589432575,41.75046752],[-71.589415575,41.75043652],[-71.589188575,41.75057652],[-71.588899575,41.75074852],[-71.588791575,41.75081352],[-71.588669575,41.75088552],[-71.588352575,41.75109852],[-71.587547575,41.75156152],[-71.586533575,41.752171521],[-71.585640574,41.752716521],[-71.583519573,41.753998521],[-71.582664573,41.754521521],[-71.580383572,41.755894521],[-71.578949572,41.756764521],[-71.578644572,41.756958521],[-71.578033572,41.757328521],[-71.577721572,41.757523521],[-71.577362572,41.757729522],[-71.576057571,41.758522522],[-71.575432571,41.758862522],[-71.575400571,41.758877522],[-71.575073571,41.759030522],[-71.57476057,41.759159522],[-71.574387571,41.759282522],[-71.573898571,41.759430523],[-71.57345657,41.759556522],[-71.57301057,41.759671522],[-71.57243357,41.759835523],[-71.57192257,41.759972523],[-71.57144257,41.760109523],[-71.57089257,41.760254522],[-71.570473569,41.760373522],[-71.570297569,41.760041522],[-71.569748569,41.758912522],[-71.569641569,41.758614522],[-71.56028101,41.75895339],[-71.556729664,41.759786201],[-71.556343475,41.760131378],[-71.556057466,41.760387015],[-71.555924569,41.761065738],[-71.555890364,41.761238055],[-71.55568865,41.761380441],[-71.555670804,41.762344123],[-71.555183448,41.762359471],[-71.555186262,41.762353718],[-71.55506999,41.76235602],[-71.555064041,41.762790271],[-71.555315249,41.763904326],[-71.555428565,41.765232524],[-71.554871564,41.765271524],[-71.554619564,41.765290524],[-71.554756564,41.765858524],[-71.554993565,41.767056524],[-71.555092565,41.767609524],[-71.555252565,41.768425524],[-71.555313565,41.768799524],[-71.555336565,41.768990524],[-71.555351565,41.769066524],[-71.555367565,41.769230525],[-71.555382565,41.769322524],[-71.555397565,41.769539525],[-71.555450565,41.770047525],[-71.555466565,41.770142525],[-71.555473565,41.770237524],[-71.555496565,41.770398525],[-71.555550566,41.770623525],[-71.555580565,41.770710525],[-71.555626566,41.770962525],[-71.555634565,41.771046525],[-71.555649565,41.771115525],[-71.555687565,41.771458525],[-71.555710565,41.771557525],[-71.555725566,41.771595525],[-71.555733565,41.771634525],[-71.555756565,41.771664525],[-71.556206566,41.775207526],[-71.557136566,41.779381526],[-71.557993566,41.783193527],[-71.559290568,41.789352528],[-71.559560568,41.789643528],[-71.559806567,41.789907529],[-71.559853568,41.790102529],[-71.559934568,41.790443528],[-71.561623569,41.79723453],[-71.562317569,41.80052353],[-71.562423569,41.801023531],[-71.562580569,41.801819531],[-71.56330157,41.805241531],[-71.56421057,41.809564532],[-71.56432157,41.810091533],[-71.565346571,41.814968534],[-71.565416571,41.815301534],[-71.565800571,41.817129534],[-71.566615571,41.821009534],[-71.568192572,41.828522536],[-71.569267573,41.834031537],[-71.569711573,41.834800537],[-71.569769573,41.834900537],[-71.569826573,41.835001537],[-71.569888573,41.835108537]]]]}}"}, +{"type": "precinct", "typeId": 3002, "areaId": 26050, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":389,\"NAME\":\"3002\",\"SHAPE_Length\":0.39644365640604,\"SHAPE_Area\":-0.0041679028654471},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.554619564,41.765290524],[-71.554871564,41.765271524],[-71.555428565,41.765232524],[-71.555315249,41.763904326],[-71.555064041,41.762790271],[-71.55506999,41.76235602],[-71.555186262,41.762353718],[-71.555183448,41.762359471],[-71.555670804,41.762344123],[-71.55568865,41.761380441],[-71.555890364,41.761238055],[-71.555924569,41.761065738],[-71.556057466,41.760387015],[-71.556343475,41.760131378],[-71.556729664,41.759786201],[-71.56028101,41.75895339],[-71.569641569,41.758614522],[-71.569748569,41.758912522],[-71.570297569,41.760041522],[-71.570473569,41.760373522],[-71.57089257,41.760254522],[-71.57144257,41.760109523],[-71.57192257,41.759972523],[-71.57243357,41.759835523],[-71.57301057,41.759671522],[-71.57345657,41.759556522],[-71.573898571,41.759430523],[-71.574387571,41.759282522],[-71.57476057,41.759159522],[-71.575073571,41.759030522],[-71.575400571,41.758877522],[-71.575432571,41.758862522],[-71.576057571,41.758522522],[-71.577362572,41.757729522],[-71.577721572,41.757523521],[-71.578033572,41.757328521],[-71.578644572,41.756958521],[-71.578949572,41.756764521],[-71.580383572,41.755894521],[-71.582664573,41.754521521],[-71.583519573,41.753998521],[-71.585640574,41.752716521],[-71.586533575,41.752171521],[-71.587547575,41.75156152],[-71.588352575,41.75109852],[-71.588669575,41.75088552],[-71.588791575,41.75081352],[-71.588899575,41.75074852],[-71.589188575,41.75057652],[-71.589415575,41.75043652],[-71.589432575,41.75046752],[-71.589563575,41.75054552],[-71.589588575,41.75055452],[-71.589677576,41.75064852],[-71.589758575,41.75083752],[-71.589864575,41.75096152],[-71.590054575,41.75101152],[-71.590339576,41.75107252],[-71.590520575,41.75113052],[-71.590725576,41.75120252],[-71.590813575,41.75123952],[-71.590880576,41.75127952],[-71.590926576,41.75132752],[-71.590962576,41.75138252],[-71.590972576,41.75144452],[-71.590963576,41.751512521],[-71.590947575,41.75158152],[-71.590943576,41.75170352],[-71.590951576,41.75176752],[-71.590949575,41.75190352],[-71.590922576,41.75196352],[-71.590877576,41.75201452],[-71.590830575,41.75208352],[-71.590818576,41.75216152],[-71.590847576,41.752233521],[-71.590898576,41.75228852],[-71.590897576,41.752328521],[-71.590822576,41.75234152],[-71.590795576,41.75238052],[-71.590853576,41.752427521],[-71.590927575,41.752446521],[-71.590974576,41.75248952],[-71.590965576,41.75255952],[-71.590952576,41.75261652],[-71.590950576,41.75267552],[-71.590924576,41.75280652],[-71.590905576,41.752873521],[-71.590885576,41.75299952],[-71.590855576,41.75312052],[-71.590828576,41.75319552],[-71.590814576,41.75331052],[-71.590813575,41.75337552],[-71.590820576,41.753440521],[-71.590853576,41.753498521],[-71.590914576,41.753556521],[-71.590971576,41.75360152],[-71.591121576,41.753676521],[-71.591177576,41.753714521],[-71.591390576,41.75378452],[-71.591477576,41.753809521],[-71.591579576,41.75381752],[-71.591658576,41.753829521],[-71.591718576,41.753863521],[-71.591764577,41.753909521],[-71.591780576,41.75397452],[-71.591714576,41.754026521],[-71.591686577,41.754095521],[-71.591634576,41.754134521],[-71.591581576,41.75418552],[-71.591568576,41.754243521],[-71.591574576,41.75430252],[-71.591622576,41.754358521],[-71.591674576,41.754371521],[-71.591750576,41.754376521],[-71.591807576,41.754431521],[-71.591856576,41.754492521],[-71.591946576,41.75465752],[-71.591959577,41.75471252],[-71.591966576,41.75477052],[-71.591966576,41.754979521],[-71.591981576,41.755056521],[-71.592014577,41.755096521],[-71.592091576,41.75510252],[-71.592166576,41.755089521],[-71.592231577,41.75504452],[-71.592309577,41.755019521],[-71.592350576,41.75498852],[-71.592373576,41.754924521],[-71.592378576,41.754781521],[-71.592459576,41.75477352],[-71.592743576,41.75477052],[-71.592821576,41.754738521],[-71.592880576,41.75469252],[-71.592934577,41.75463552],[-71.593019576,41.754526521],[-71.593041577,41.754451521],[-71.593085577,41.75440152],[-71.593137576,41.754354521],[-71.593179577,41.75434352],[-71.593342577,41.754374521],[-71.593496577,41.75442252],[-71.593709577,41.754429521],[-71.593740577,41.75442552],[-71.593766577,41.754370521],[-71.594142577,41.75436552],[-71.594251577,41.75436852],[-71.594328577,41.754376521],[-71.594452577,41.75440252],[-71.594455577,41.75446552],[-71.594450577,41.754530521],[-71.594290577,41.754566521],[-71.594227577,41.754591521],[-71.594193577,41.754661521],[-71.594219577,41.754739521],[-71.594261577,41.754787521],[-71.594342577,41.754822521],[-71.594446577,41.754875521],[-71.594485577,41.75493052],[-71.594468577,41.755012521],[-71.594471577,41.755080521],[-71.594499577,41.75512152],[-71.594560577,41.75516152],[-71.594621577,41.755190521],[-71.594709578,41.755211521],[-71.594937577,41.755216521],[-71.595014577,41.755208521],[-71.595089577,41.75518252],[-71.595211578,41.755110521],[-71.595154578,41.754978521],[-71.595150577,41.754915521],[-71.595170577,41.754857521],[-71.595206577,41.75481352],[-71.595332578,41.75481552],[-71.595410578,41.754807521],[-71.595617577,41.75475552],[-71.595900577,41.754744521],[-71.595969578,41.754750521],[-71.596031578,41.75479652],[-71.596087578,41.75484952],[-71.596142578,41.754867521],[-71.596249578,41.754846521],[-71.596290577,41.75481552],[-71.596321578,41.75475852],[-71.596338578,41.754705521],[-71.596337578,41.754648521],[-71.596413578,41.75454452],[-71.596567577,41.75448452],[-71.596614578,41.75444352],[-71.596608578,41.75436152],[-71.596595578,41.75428552],[-71.596591578,41.75422752],[-71.596658578,41.754163521],[-71.596901578,41.754065521],[-71.596933577,41.75401652],[-71.596944578,41.753963521],[-71.596948578,41.753908521],[-71.596972577,41.753853521],[-71.597044578,41.75377852],[-71.597123578,41.75374552],[-71.597217578,41.753714521],[-71.597246578,41.75366352],[-71.597289578,41.753618521],[-71.597334578,41.75354652],[-71.597361578,41.75348652],[-71.597488578,41.753304521],[-71.597542578,41.753248521],[-71.597597578,41.753208521],[-71.597658578,41.753148521],[-71.597743578,41.75302252],[-71.597782578,41.75297252],[-71.597831578,41.75292052],[-71.597863578,41.75286752],[-71.598028578,41.75270652],[-71.598122579,41.75262352],[-71.598212578,41.752507521],[-71.598240578,41.75243352],[-71.598282578,41.75229452],[-71.598392578,41.75211052],[-71.598532578,41.75195052],[-71.598562578,41.75189852],[-71.598587579,41.75183452],[-71.598619578,41.75178152],[-71.598686579,41.75172952],[-71.598744579,41.75167552],[-71.598762579,41.75160752],[-71.598762579,41.75154052],[-71.598741578,41.75148052],[-71.598674578,41.75145052],[-71.598601578,41.75142552],[-71.598557578,41.75136752],[-71.598576578,41.751319519],[-71.598743579,41.75122852],[-71.598821579,41.75120752],[-71.598899579,41.75120852],[-71.598980579,41.75122452],[-71.599027578,41.75129152],[-71.599143578,41.75164452],[-71.599129579,41.75167552],[-71.599059578,41.75169552],[-71.599041578,41.75173252],[-71.599044578,41.75187152],[-71.599081578,41.75193752],[-71.599149579,41.75197352],[-71.599232579,41.75196552],[-71.599311579,41.751942519],[-71.599405579,41.75193652],[-71.599504579,41.75193652],[-71.599602579,41.75195552],[-71.599695579,41.75198552],[-71.599799579,41.75199352],[-71.599977578,41.75199052],[-71.600071579,41.75198252],[-71.600232578,41.75194952],[-71.600390579,41.75195352],[-71.600468579,41.75197152],[-71.600544579,41.75199452],[-71.600618579,41.752001519],[-71.600693579,41.75199652],[-71.600773579,41.75198552],[-71.600852579,41.75196152],[-71.600922579,41.75192552],[-71.601046579,41.751806519],[-71.601099579,41.751768519],[-71.601172579,41.75173152],[-71.601350579,41.75166352],[-71.601635579,41.75156852],[-71.601880579,41.75146952],[-71.60201758,41.75141152],[-71.60211558,41.75138652],[-71.60221758,41.75138452],[-71.602325579,41.751377519],[-71.602395579,41.75135652],[-71.602459579,41.751318519],[-71.60250958,41.75126852],[-71.60258158,41.75115252],[-71.60265758,41.75109252],[-71.60300858,41.75088552],[-71.60312558,41.75080252],[-71.60319258,41.75074952],[-71.603252579,41.75069252],[-71.60337458,41.75059552],[-71.60339858,41.750541519],[-71.60338558,41.750428519],[-71.603430579,41.750382519],[-71.60351858,41.75033552],[-71.60358758,41.75030352],[-71.60365158,41.750266519],[-71.60382158,41.750148519],[-71.60398758,41.750054519],[-71.60405758,41.749992519],[-71.60410258,41.749945519],[-71.60416658,41.749844519],[-71.60423658,41.749704519],[-71.60429058,41.749647519],[-71.60443758,41.74955952],[-71.60448658,41.749493519],[-71.60450058,41.749415519],[-71.60449458,41.749079519],[-71.60448458,41.749017519],[-71.60444858,41.748903519],[-71.60444458,41.748834519],[-71.60446858,41.748770519],[-71.60452558,41.748760519],[-71.60458758,41.748796519],[-71.60465958,41.748848519],[-71.60472058,41.748886519],[-71.60478858,41.748914519],[-71.60485858,41.748931519],[-71.60495858,41.748934519],[-71.605062581,41.748921519],[-71.605220581,41.748888519],[-71.605295581,41.74888052],[-71.605528581,41.748875519],[-71.60561258,41.748869519],[-71.605702581,41.748856519],[-71.605896581,41.748813519],[-71.60647558,41.748621519],[-71.606604581,41.748566519],[-71.60668858,41.748520519],[-71.606829581,41.748408519],[-71.606873581,41.748352519],[-71.606874581,41.748289519],[-71.606886581,41.748214519],[-71.606912581,41.748157519],[-71.606976581,41.748044519],[-71.60699958,41.747992519],[-71.607043581,41.747929519],[-71.607086581,41.747879519],[-71.607151581,41.747842519],[-71.60723058,41.747805519],[-71.607312581,41.747758519],[-71.607380581,41.747696519],[-71.607435581,41.747655519],[-71.607571581,41.747586519],[-71.607630581,41.747549519],[-71.607692581,41.747517518],[-71.607904581,41.747454519],[-71.607974581,41.747427519],[-71.608117581,41.747349519],[-71.608189581,41.747298519],[-71.608302582,41.747196519],[-71.608358582,41.747154519],[-71.608483581,41.747082519],[-71.608546581,41.747054519],[-71.608632582,41.747041519],[-71.608686581,41.747057519],[-71.608670582,41.747105519],[-71.608559581,41.747206518],[-71.608444581,41.747281519],[-71.608392581,41.747341518],[-71.608352581,41.747396519],[-71.608317581,41.747457518],[-71.608315581,41.747527519],[-71.608320582,41.747596519],[-71.608339582,41.747657519],[-71.608332581,41.747709519],[-71.608222582,41.747805519],[-71.608183582,41.747852519],[-71.608135581,41.747922519],[-71.608104581,41.748000519],[-71.608104581,41.748308519],[-71.608141581,41.748375519],[-71.608193581,41.748435519],[-71.608210581,41.748499519],[-71.608198581,41.748556519],[-71.608125582,41.748691519],[-71.608062581,41.748826519],[-71.607931582,41.749042519],[-71.607847581,41.749158519],[-71.607789581,41.749198519],[-71.607767581,41.749252519],[-71.607763581,41.749315519],[-71.607739581,41.749379519],[-71.607674581,41.749422519],[-71.607600581,41.749458519],[-71.607540581,41.74950352],[-71.607439581,41.749614519],[-71.607405581,41.749662519],[-71.607399581,41.749739519],[-71.607407581,41.74981552],[-71.607404581,41.749882519],[-71.607358581,41.749953519],[-71.607273581,41.749985519],[-71.607064581,41.74998852],[-71.606911581,41.750004519],[-71.60676358,41.75002952],[-71.60668458,41.750074519],[-71.606641581,41.750148519],[-71.606582581,41.750274519],[-71.60652858,41.75031952],[-71.606463581,41.750344519],[-71.606405581,41.75037652],[-71.606332581,41.750403519],[-71.606272581,41.75043752],[-71.60623958,41.750487519],[-71.60617758,41.750526519],[-71.60610358,41.750541519],[-71.60602258,41.750544519],[-71.605962581,41.750603519],[-71.605921581,41.750655519],[-71.605898581,41.75072752],[-71.605897581,41.75078952],[-71.60588558,41.75084752],[-71.605786581,41.75094352],[-71.605708581,41.751084519],[-71.605660581,41.75115852],[-71.60558058,41.751263519],[-71.60555458,41.751322519],[-71.60554258,41.751436519],[-71.60551658,41.75150252],[-71.60548358,41.75150852],[-71.60540658,41.751476519],[-71.60532958,41.75145352],[-71.60525158,41.75145352],[-71.60516858,41.75148152],[-71.605041581,41.75159952],[-71.60496958,41.751652519],[-71.60493058,41.75172152],[-71.60494158,41.75195152],[-71.60490258,41.75207252],[-71.60489358,41.75212952],[-71.60487258,41.75218552],[-71.604830581,41.75221852],[-71.604654581,41.75220752],[-71.60458558,41.75222752],[-71.604537581,41.752274519],[-71.60455158,41.75233152],[-71.604614581,41.75235852],[-71.60468858,41.75236252],[-71.60472758,41.752371519],[-71.604749581,41.75243652],[-71.60474558,41.752508519],[-71.60470458,41.75256552],[-71.60456758,41.75259552],[-71.60454758,41.75267052],[-71.60454958,41.75282352],[-71.604538581,41.75287752],[-71.604537581,41.75299052],[-71.60454558,41.75304752],[-71.604457581,41.75322252],[-71.60442458,41.75330252],[-71.60436758,41.75334552],[-71.60430158,41.75338252],[-71.60423058,41.75343152],[-71.60417458,41.75356452],[-71.604166581,41.75381652],[-71.604205581,41.75386352],[-71.60427158,41.75390952],[-71.60432458,41.75396452],[-71.60433958,41.75403452],[-71.60434758,41.75417952],[-71.60436558,41.75427252],[-71.60427958,41.75438052],[-71.60422058,41.75462152],[-71.60420958,41.754688521],[-71.60412458,41.754710521],[-71.60402558,41.754727521],[-71.60393458,41.754750521],[-71.60389958,41.754805521],[-71.60385158,41.75481652],[-71.60370758,41.75481752],[-71.60357958,41.75483352],[-71.60360058,41.75485652],[-71.60377958,41.754963521],[-71.60382558,41.75501252],[-71.60386958,41.755074521],[-71.60373558,41.75508352],[-71.60361958,41.755100521],[-71.60357858,41.75513152],[-71.60363058,41.755159521],[-71.60370558,41.75518252],[-71.60377358,41.755217521],[-71.60382558,41.75526052],[-71.60385758,41.755329521],[-71.60385658,41.75553252],[-71.60382058,41.75561552],[-71.60376058,41.755658521],[-71.60366358,41.755744521],[-71.60362558,41.75581152],[-71.60350958,41.75598052],[-71.60346758,41.756033521],[-71.60329958,41.75619752],[-71.60321758,41.756260521],[-71.60311458,41.756323521],[-71.60285158,41.756442521],[-71.602745579,41.756477521],[-71.60259658,41.756550521],[-71.602530579,41.756577521],[-71.60234158,41.75662552],[-71.60227658,41.756649521],[-71.60219558,41.756787521],[-71.602123579,41.756873521],[-71.60207358,41.756924521],[-71.602025579,41.75699552],[-71.601970579,41.75703352],[-71.601810579,41.757099521],[-71.601738579,41.757116521],[-71.60150958,41.757116521],[-71.601381579,41.757178521],[-71.60131758,41.757215521],[-71.601246579,41.757279521],[-71.601187579,41.757345521],[-71.601155579,41.757405521],[-71.601135579,41.757472521],[-71.601097579,41.757531521],[-71.601040579,41.757567521],[-71.600975579,41.757620521],[-71.600853579,41.757795521],[-71.60075258,41.757828521],[-71.600663579,41.757871521],[-71.600632579,41.757940521],[-71.600619579,41.758004521],[-71.60061758,41.758062521],[-71.600628579,41.758153521],[-71.600665579,41.758240522],[-71.600682579,41.758294521],[-71.60065358,41.758368521],[-71.600586579,41.758418521],[-71.600517579,41.758452521],[-71.600458579,41.758489521],[-71.60036458,41.758601521],[-71.600350579,41.758666521],[-71.600311579,41.758712521],[-71.600231579,41.758784522],[-71.60018958,41.758836521],[-71.600162579,41.758903522],[-71.600065579,41.759031521],[-71.600009579,41.759069521],[-71.599858579,41.759129521],[-71.599802579,41.759168521],[-71.599538579,41.759440521],[-71.599429579,41.759584522],[-71.599381579,41.759663522],[-71.599366579,41.759734522],[-71.599413579,41.759839522],[-71.599422579,41.759899521],[-71.599406579,41.760112522],[-71.599406579,41.760173521],[-71.599418579,41.760244522],[-71.599469579,41.760323522],[-71.599542579,41.760383522],[-71.599601579,41.760449521],[-71.599620579,41.760524521],[-71.599539579,41.760611522],[-71.599505579,41.760686522],[-71.599546579,41.760722521],[-71.599610579,41.760756522],[-71.599680579,41.760812522],[-71.599724579,41.760859521],[-71.599763579,41.760912522],[-71.599776579,41.760967522],[-71.599775579,41.761040522],[-71.599764579,41.761139522],[-71.599715579,41.761199522],[-71.59968258,41.761249522],[-71.599619579,41.761288522],[-71.599548579,41.761351522],[-71.599478579,41.761384521],[-71.599419579,41.761380522],[-71.599341579,41.761313522],[-71.599291579,41.761290522],[-71.599211579,41.761301522],[-71.599146579,41.761351522],[-71.599081579,41.761371522],[-71.598989579,41.761383521],[-71.598944579,41.761433522],[-71.598899579,41.761524522],[-71.598901579,41.761734522],[-71.598895579,41.761982522],[-71.598893579,41.762044521],[-71.598899579,41.762181522],[-71.598916579,41.762244522],[-71.598976579,41.762325522],[-71.599025579,41.762368522],[-71.599184579,41.762492522],[-71.599176579,41.762537522],[-71.599113579,41.762653522],[-71.599112579,41.762737522],[-71.599117579,41.762804522],[-71.599134579,41.762828522],[-71.599146579,41.762846522],[-71.599232579,41.762854522],[-71.599931579,41.762860522],[-71.599995579,41.762876522],[-71.600023579,41.762929522],[-71.600019579,41.763123522],[-71.599997579,41.763281522],[-71.60001358,41.763305522],[-71.600114579,41.763351522],[-71.600177579,41.763385522],[-71.600251579,41.763403522],[-71.60032658,41.763405522],[-71.600509579,41.763434522],[-71.60057858,41.763453522],[-71.600643579,41.763504522],[-71.60067758,41.763553522],[-71.60069358,41.763606522],[-71.60070758,41.763742522],[-71.60070658,41.763845522],[-71.600660579,41.764080522],[-71.60063658,41.764531522],[-71.60066658,41.764600522],[-71.60079358,41.764756522],[-71.60082758,41.764807523],[-71.60089058,41.764962523],[-71.60091958,41.765106522],[-71.600954579,41.765169522],[-71.60107758,41.765212522],[-71.60116858,41.765227522],[-71.60132958,41.765228522],[-71.60142758,41.765254523],[-71.60150058,41.765317523],[-71.60154558,41.765385522],[-71.60155658,41.765516522],[-71.60158458,41.765602522],[-71.60159458,41.765672522],[-71.60159558,41.765764523],[-71.60163258,41.766172523],[-71.60166558,41.766369523],[-71.60172158,41.766416522],[-71.601905581,41.766500523],[-71.60198058,41.766529523],[-71.60206758,41.766580523],[-71.602156581,41.766612522],[-71.602235581,41.766630522],[-71.60234458,41.766661523],[-71.602411581,41.766706522],[-71.60243758,41.766763523],[-71.602430581,41.766827523],[-71.60238758,41.766858523],[-71.60230058,41.766897523],[-71.60226158,41.766957523],[-71.60228758,41.767169523],[-71.60230658,41.767223523],[-71.60234758,41.767408522],[-71.60234758,41.767463523],[-71.602331581,41.767534523],[-71.60228458,41.767582523],[-71.60224558,41.767643523],[-71.60220858,41.767740523],[-71.602195581,41.767801523],[-71.60219058,41.767901523],[-71.602198581,41.767977523],[-71.60226158,41.768123523],[-71.602348581,41.768245523],[-71.60244358,41.768399523],[-71.602468581,41.768464523],[-71.60251258,41.768538523],[-71.602546581,41.768613523],[-71.60256058,41.768682523],[-71.602540581,41.769506523],[-71.602545581,41.769691523],[-71.60257158,41.769836523],[-71.60263558,41.769992523],[-71.60267058,41.770046523],[-71.602837581,41.770131524],[-71.602927581,41.770151524],[-71.60300158,41.770181523],[-71.602988581,41.770650523],[-71.602994581,41.770706523],[-71.603014581,41.770789523],[-71.603045581,41.770845523],[-71.603095581,41.770880523],[-71.603202581,41.770874524],[-71.603323581,41.770840523],[-71.603373581,41.770797524],[-71.603420581,41.770743523],[-71.60348658,41.770688523],[-71.603551581,41.770623524],[-71.603606581,41.770539524],[-71.603636581,41.770484524],[-71.603666581,41.770411523],[-71.603685581,41.770350524],[-71.603705581,41.770243523],[-71.603715581,41.770121523],[-71.603757581,41.770044523],[-71.603754581,41.769923523],[-71.603742581,41.769847523],[-71.603748581,41.769608524],[-71.603765581,41.769539523],[-71.603830581,41.769505523],[-71.603938581,41.769440523],[-71.604016581,41.769402523],[-71.604101581,41.769368523],[-71.604204581,41.769355524],[-71.604288581,41.769353523],[-71.604363581,41.769346523],[-71.604453581,41.769331523],[-71.604658581,41.769289523],[-71.604770582,41.769275523],[-71.605003582,41.769257523],[-71.605088581,41.769238523],[-71.605180582,41.769208523],[-71.605278582,41.769169523],[-71.605520581,41.769089523],[-71.605759582,41.768967523],[-71.605867581,41.768926523],[-71.605946581,41.768905523],[-71.606102581,41.768843523],[-71.606238581,41.768812523],[-71.606427582,41.768783523],[-71.606642582,41.768784523],[-71.606731582,41.768788523],[-71.607069582,41.768825523],[-71.607137582,41.768846523],[-71.607290582,41.768915523],[-71.607683582,41.768997523],[-71.607766582,41.769042523],[-71.607779582,41.769101523],[-71.607783582,41.769159523],[-71.607799582,41.769242523],[-71.607834583,41.769242523],[-71.607948583,41.769225523],[-71.608039582,41.769193523],[-71.608098582,41.769150523],[-71.608182583,41.769019523],[-71.608253582,41.768889523],[-71.608281583,41.768822523],[-71.608342582,41.768747523],[-71.608400582,41.768688523],[-71.608426582,41.768637523],[-71.608441582,41.768557523],[-71.608452583,41.768339523],[-71.608442582,41.768257523],[-71.608420582,41.768197523],[-71.608396583,41.768052522],[-71.608398583,41.767995522],[-71.608416583,41.767872523],[-71.608420582,41.767813523],[-71.608358583,41.767523523],[-71.608349582,41.767460523],[-71.608328582,41.767374522],[-71.608321583,41.767313522],[-71.608323582,41.767254522],[-71.608390582,41.766944522],[-71.608393582,41.766861522],[-71.608376583,41.766745522],[-71.608382582,41.766663523],[-71.608419583,41.766515522],[-71.608368582,41.766460522],[-71.608341583,41.766398522],[-71.608337582,41.766195523],[-71.608359583,41.766140522],[-71.608403582,41.766155523],[-71.608468582,41.766193523],[-71.608533583,41.766208522],[-71.608560582,41.766157523],[-71.608569582,41.766100523],[-71.608525582,41.766042522],[-71.608584582,41.765932522],[-71.608598582,41.765872522],[-71.608600582,41.765804523],[-71.608562582,41.765753522],[-71.608500582,41.765629523],[-71.608593583,41.765590523],[-71.608655582,41.765552523],[-71.608703582,41.765495523],[-71.608690583,41.765467522],[-71.608645582,41.765405522],[-71.608601582,41.765302522],[-71.608588582,41.765223522],[-71.608632583,41.765154522],[-71.608693582,41.765123523],[-71.608770583,41.765110522],[-71.608852582,41.765104523],[-71.608935582,41.765090522],[-71.609006582,41.765065523],[-71.609038583,41.765054522],[-71.609109582,41.765017522],[-71.609160583,41.764971522],[-71.609192583,41.764958522],[-71.609270583,41.764951522],[-71.609317582,41.764924522],[-71.609396582,41.764879522],[-71.609467583,41.764889522],[-71.609522583,41.764930522],[-71.609550583,41.764982522],[-71.609581583,41.765209522],[-71.609622583,41.765348522],[-71.609637583,41.765477522],[-71.609699583,41.765721522],[-71.609649582,41.765841523],[-71.609567583,41.765978523],[-71.609505583,41.766168522],[-71.609497582,41.766422522],[-71.609549583,41.766465523],[-71.609645583,41.766477522],[-71.609721583,41.766478522],[-71.609770582,41.766502523],[-71.609759583,41.766559522],[-71.609758583,41.766617522],[-71.609765582,41.766686522],[-71.609819583,41.766751522],[-71.609872583,41.766801523],[-71.609888583,41.766856523],[-71.609861583,41.766909523],[-71.609823583,41.766957523],[-71.609774583,41.767004522],[-71.609762583,41.767059522],[-71.609765582,41.767117522],[-71.609786582,41.767215522],[-71.609906583,41.767398523],[-71.610041583,41.767576523],[-71.610076583,41.767628523],[-71.610137583,41.767674523],[-71.610152583,41.767710523],[-71.610143583,41.767975522],[-71.610154583,41.768211523],[-71.610153583,41.768280523],[-71.610201583,41.768316523],[-71.610278583,41.768354523],[-71.610342583,41.768395523],[-71.610416583,41.768465523],[-71.610441583,41.768515523],[-71.610441583,41.768579522],[-71.610467583,41.768718523],[-71.610469583,41.768800523],[-71.610476583,41.768856523],[-71.610541583,41.768975523],[-71.610660583,41.769118523],[-71.610705583,41.769179523],[-71.610782583,41.769270523],[-71.610824583,41.769329523],[-71.610854584,41.769396523],[-71.610874584,41.769477523],[-71.610918583,41.769529523],[-71.610966583,41.769575523],[-71.611025583,41.769609523],[-71.611112583,41.769639523],[-71.611217583,41.769651523],[-71.611286584,41.769678523],[-71.611319584,41.769722523],[-71.611324584,41.769807523],[-71.611290583,41.769868523],[-71.611241584,41.769928523],[-71.611155583,41.769986523],[-71.611080583,41.770017523],[-71.611025583,41.770064523],[-71.611002583,41.770134523],[-71.610983583,41.770253524],[-71.610987583,41.770309523],[-71.611038583,41.770363523],[-71.611120583,41.770389524],[-71.611201584,41.770408524],[-71.611260584,41.770443523],[-71.611325584,41.770489523],[-71.611362584,41.770541523],[-71.611360584,41.770668523],[-71.611304584,41.770817524],[-71.611298584,41.771029523],[-71.611277583,41.771104523],[-71.611249583,41.771175523],[-71.611222584,41.771228524],[-71.611201584,41.771295523],[-71.611188584,41.771454523],[-71.611280584,41.771522523],[-71.611338584,41.771555524],[-71.611417584,41.771547523],[-71.611485583,41.771517524],[-71.611556584,41.771469523],[-71.611627584,41.771438524],[-71.611703583,41.771445523],[-71.611799583,41.771459524],[-71.611878584,41.771483523],[-71.611956584,41.771533523],[-71.611999584,41.771589523],[-71.612030583,41.771646523],[-71.612089583,41.771808524],[-71.612117584,41.771860523],[-71.612189584,41.771973523],[-71.612228584,41.772024524],[-71.612337584,41.772110523],[-71.612482584,41.772176524],[-71.612542584,41.772224523],[-71.612640584,41.772372524],[-71.612687584,41.772404523],[-71.612780584,41.772439523],[-71.612841584,41.772482523],[-71.612885584,41.772531524],[-71.612918584,41.772587524],[-71.612944584,41.772660523],[-71.612967584,41.772666524],[-71.613165584,41.772668524],[-71.613248584,41.772548524],[-71.613328584,41.772540523],[-71.613412584,41.772649524],[-71.613484584,41.772662524],[-71.613566585,41.772660523],[-71.613672584,41.772645524],[-71.613746584,41.772599523],[-71.613785584,41.772550524],[-71.613830584,41.772464523],[-71.613845584,41.772407523],[-71.613886584,41.772383523],[-71.614048585,41.772324523],[-71.614208585,41.772249523],[-71.614284585,41.772200524],[-71.614316584,41.772135523],[-71.614387584,41.772094523],[-71.614547584,41.772031523],[-71.614887585,41.771869524],[-71.614966585,41.771817523],[-71.614988585,41.771765523],[-71.615049585,41.771578524],[-71.615095585,41.771518524],[-71.615160585,41.771481524],[-71.615302585,41.771409523],[-71.615365584,41.771351523],[-71.615421584,41.771220523],[-71.615437585,41.771164523],[-71.615487585,41.770693523],[-71.615511585,41.770637523],[-71.615590585,41.770585523],[-71.615763585,41.770489523],[-71.616038585,41.770493523],[-71.616084585,41.770474523],[-71.616219585,41.770377523],[-71.616272585,41.770331523],[-71.616334585,41.770263523],[-71.616384585,41.770221523],[-71.616440585,41.770181523],[-71.616517585,41.770096523],[-71.616539585,41.770004523],[-71.616563585,41.769383523],[-71.616607585,41.769321522],[-71.616668586,41.769278523],[-71.616761585,41.769195523],[-71.616884585,41.769076523],[-71.617097586,41.768934523],[-71.617143585,41.768887523],[-71.617220585,41.768837523],[-71.617288586,41.768801523],[-71.617494585,41.768663523],[-71.617599586,41.768606523],[-71.617683585,41.768578522],[-71.617857586,41.768534523],[-71.618052586,41.768498523],[-71.618155585,41.768467522],[-71.618246586,41.768412523],[-71.618369585,41.768368522],[-71.618440586,41.768338523],[-71.618506585,41.768299523],[-71.618660585,41.768247522],[-71.618749586,41.768203523],[-71.618913585,41.768101523],[-71.619071586,41.768015522],[-71.619119586,41.767973522],[-71.619197586,41.767890523],[-71.619347586,41.767686522],[-71.619420586,41.767671522],[-71.619792586,41.767679523],[-71.619958586,41.767675523],[-71.620061587,41.767654523],[-71.620239586,41.767582523],[-71.620310586,41.767537522],[-71.620590586,41.767386523],[-71.620752586,41.767265522],[-71.620797587,41.767205522],[-71.620786586,41.767131523],[-71.620726586,41.767055523],[-71.620673586,41.766976523],[-71.620710586,41.766927522],[-71.620809586,41.766835522],[-71.620863586,41.766795522],[-71.620954587,41.766758522],[-71.621290587,41.766699522],[-71.621371586,41.766688522],[-71.621682586,41.766694522],[-71.621853587,41.766699522],[-71.621971587,41.766728522],[-71.622055586,41.766771522],[-71.622098587,41.766814522],[-71.622146587,41.766898523],[-71.622178587,41.766969522],[-71.622196587,41.767114523],[-71.622255587,41.767177522],[-71.622395587,41.767282522],[-71.622468587,41.767344522],[-71.622492587,41.767411522],[-71.622501587,41.767486522],[-71.622496587,41.767626522],[-71.622481587,41.767711522],[-71.622481587,41.767774523],[-71.622492587,41.767854523],[-71.622572587,41.767882522],[-71.622620587,41.767924522],[-71.622671587,41.768006523],[-71.622698587,41.768062522],[-71.622722587,41.768135522],[-71.622748587,41.768243523],[-71.622788587,41.768319523],[-71.622849587,41.768483522],[-71.622888587,41.768620522],[-71.622935587,41.768700522],[-71.622982587,41.768764523],[-71.623035587,41.768806523],[-71.623262587,41.768945523],[-71.623322587,41.768988522],[-71.623406587,41.769037523],[-71.623682588,41.769145522],[-71.624062587,41.769276523],[-71.624281587,41.769342522],[-71.624396587,41.769366523],[-71.624445588,41.769409523],[-71.624485588,41.769464523],[-71.624492587,41.769527523],[-71.624488588,41.769625523],[-71.624494587,41.769694522],[-71.624561588,41.769731522],[-71.624716588,41.769763523],[-71.624863588,41.769735523],[-71.624977587,41.769720523],[-71.625057588,41.769690522],[-71.625128588,41.769672522],[-71.625256588,41.769648523],[-71.625404588,41.769656522],[-71.625481588,41.769648523],[-71.625782588,41.769557522],[-71.625854588,41.769569523],[-71.625989589,41.769644523],[-71.626074588,41.769649523],[-71.626127588,41.769630522],[-71.626185589,41.769590523],[-71.626265588,41.769522522],[-71.626375588,41.769416522],[-71.626444588,41.769378522],[-71.626496589,41.769393523],[-71.626519588,41.769454523],[-71.626504588,41.769672522],[-71.626524588,41.769736523],[-71.626511589,41.769814523],[-71.626481588,41.769852522],[-71.626488588,41.769921523],[-71.626522588,41.769978523],[-71.626556588,41.770002522],[-71.626652589,41.770023522],[-71.626730589,41.770032523],[-71.626810588,41.770027522],[-71.626907588,41.769989523],[-71.627028588,41.769958523],[-71.627076589,41.769989523],[-71.627104588,41.770046522],[-71.627115589,41.770122522],[-71.627150589,41.770167523],[-71.627204588,41.770204523],[-71.627290589,41.770240522],[-71.627368589,41.770255522],[-71.628044589,41.770271523],[-71.628166589,41.770269523],[-71.628483589,41.770224523],[-71.628651589,41.770214523],[-71.628722589,41.770203522],[-71.628904589,41.770193523],[-71.629194589,41.770176522],[-71.629409589,41.770177522],[-71.629525589,41.770172523],[-71.62969359,41.770124522],[-71.62986659,41.770018523],[-71.629978589,41.769965522],[-71.630093589,41.769930522],[-71.63018259,41.769889522],[-71.63023959,41.769843523],[-71.630325589,41.769789522],[-71.63054359,41.769696522],[-71.630637589,41.769638522],[-71.63075759,41.769498522],[-71.63096759,41.769375523],[-71.63107559,41.769294523],[-71.63116359,41.769264522],[-71.63127859,41.769264522],[-71.63138259,41.769240522],[-71.63153559,41.769192522],[-71.63160259,41.769150522],[-71.63176559,41.769007522],[-71.63190059,41.768846522],[-71.63195859,41.768801522],[-71.63203159,41.768752523],[-71.632094591,41.768722522],[-71.63223959,41.768663522],[-71.632367591,41.768568522],[-71.63243459,41.768533522],[-71.632502591,41.768508522],[-71.632578591,41.768474522],[-71.632657591,41.768436522],[-71.632791591,41.768321522],[-71.63292559,41.768253522],[-71.63297759,41.768215522],[-71.633066591,41.768184522],[-71.633142591,41.768148522],[-71.63324559,41.768122522],[-71.633514591,41.768143522],[-71.633514591,41.768162522],[-71.633507591,41.768246522],[-71.633469591,41.768425522],[-71.63336959,41.768654523],[-71.63330859,41.768814522],[-71.633064591,41.769371522],[-71.63297359,41.769596522],[-71.632874591,41.769886522],[-71.632835591,41.770035523],[-71.632965591,41.770047522],[-71.63303459,41.770047522],[-71.63317159,41.769997523],[-71.633507591,41.769905522],[-71.633629591,41.769856522],[-71.63373659,41.769833522],[-71.633904591,41.769818522],[-71.634033591,41.769822523],[-71.634171591,41.769841523],[-71.634308591,41.769875522],[-71.634567591,41.769947522],[-71.635529591,41.770275522],[-71.635941591,41.770424523],[-71.636559592,41.770630522],[-71.636795591,41.770680523],[-71.637032592,41.770718523],[-71.637390592,41.770760523],[-71.638184592,41.770871523],[-71.638451593,41.770920522],[-71.638626593,41.770947522],[-71.638702593,41.770947522],[-71.639046592,41.770977522],[-71.639282593,41.770993523],[-71.639481593,41.770996522],[-71.639610593,41.770989523],[-71.639694593,41.770989523],[-71.639915592,41.770974523],[-71.640694593,41.770863522],[-71.641174593,41.770813522],[-71.641273593,41.770813522],[-71.642578594,41.770932523],[-71.643761594,41.771016522],[-71.644508594,41.771092523],[-71.644882595,41.771115522],[-71.645081595,41.771111523],[-71.646072595,41.770993523],[-71.646793595,41.770899522],[-71.646896595,41.770886522],[-71.647652596,41.770798522],[-71.648224595,41.770707522],[-71.648259596,41.770702523],[-71.649048596,41.770584522],[-71.649673596,41.770481522],[-71.649999596,41.770429522],[-71.656622598,41.766266521],[-71.6643016,41.76143752],[-71.671686929,41.75679416],[-71.671074602,41.754260519],[-71.671172602,41.754251518],[-71.671269602,41.754249518],[-71.671358602,41.754241519],[-71.671542602,41.754237518],[-71.671634602,41.754252518],[-71.671964602,41.754392518],[-71.672039602,41.754430518],[-71.672202603,41.754493518],[-71.672283603,41.754532518],[-71.672422603,41.754620518],[-71.672607603,41.754723518],[-71.672696603,41.754761518],[-71.672873602,41.754822518],[-71.673039603,41.754851518],[-71.673197603,41.754892518],[-71.673347603,41.754905519],[-71.673225602,41.753975518],[-71.673065603,41.752808518],[-71.672951602,41.752030518],[-71.672562602,41.749977517],[-71.672523602,41.749813518],[-71.672302602,41.748749517],[-71.672218602,41.748310517],[-71.672195602,41.747918517],[-71.672195602,41.747769516],[-71.672279602,41.747475517],[-71.670802602,41.739703515],[-71.6693846,41.733929514],[-71.667802599,41.727490513],[-71.665967599,41.727506514],[-71.665013599,41.727515513],[-71.663045598,41.727532513],[-71.662193598,41.727539513],[-71.661649598,41.727547513],[-71.661185598,41.727550513],[-71.658965597,41.727571513],[-71.648881594,41.727683513],[-71.644155592,41.727729514],[-71.642631591,41.727743514],[-71.64126159,41.727756514],[-71.640686591,41.727761514],[-71.63754759,41.727821514],[-71.637498589,41.727841514],[-71.63743059,41.727885514],[-71.637364589,41.727921514],[-71.637321589,41.727968514],[-71.633400589,41.727900514],[-71.633271588,41.727897514],[-71.628486587,41.727919514],[-71.628024586,41.727919514],[-71.627635586,41.727921514],[-71.625488586,41.727933515],[-71.625313585,41.727937514],[-71.625090586,41.727941514],[-71.624806585,41.727945514],[-71.624573585,41.727950515],[-71.624004585,41.727965515],[-71.621750585,41.728023515],[-71.617919583,41.728145515],[-71.612358582,41.728323515],[-71.602257578,41.728602515],[-71.598583577,41.728733516],[-71.597397577,41.728829516],[-71.597374577,41.728775515],[-71.595786576,41.728833515],[-71.593880575,41.728902516],[-71.591011574,41.729004516],[-71.586189573,41.729144516],[-71.581098571,41.729291516],[-71.580543571,41.729308516],[-71.579851571,41.729325516],[-71.57653057,41.729409516],[-71.572428568,41.729507516],[-71.569748567,41.729576516],[-71.569450568,41.729581516],[-71.569183567,41.729587517],[-71.568290567,41.729609517],[-71.563214566,41.729715516],[-71.562935566,41.729721517],[-71.562645566,41.729727517],[-71.562416565,41.729732516],[-71.560295564,41.729776517],[-71.560134564,41.729780517],[-71.557480564,41.729835517],[-71.556168563,41.729863517],[-71.552247562,41.729942517],[-71.552216561,41.729943517],[-71.550911561,41.729961517],[-71.550400562,41.729967517],[-71.550016561,41.729976517],[-71.549698561,41.729979517],[-71.549619561,41.729969517],[-71.549471561,41.729938517],[-71.549399561,41.729927517],[-71.549168561,41.729920517],[-71.549017561,41.729924518],[-71.548833561,41.730004517],[-71.54851556,41.730009517],[-71.54757856,41.730030517],[-71.54731056,41.730036517],[-71.54712756,41.730067517],[-71.54673056,41.730078518],[-71.54649856,41.730085517],[-71.54629656,41.730090517],[-71.54580756,41.730105517],[-71.54557856,41.730092517],[-71.54549856,41.730085517],[-71.54550456,41.730193518],[-71.545664559,41.730352518],[-71.54610056,41.730651517],[-71.54617256,41.730680518],[-71.54624956,41.730638517],[-71.54634756,41.730659518],[-71.54642056,41.730675517],[-71.54647956,41.730714517],[-71.54652256,41.730776518],[-71.54658156,41.730915518],[-71.54677256,41.731014518],[-71.54682456,41.731047518],[-71.54696256,41.731119517],[-71.54703756,41.731170518],[-71.547183561,41.731243518],[-71.54726756,41.731271517],[-71.54736956,41.731282518],[-71.547455561,41.731663517],[-71.547470561,41.731678518],[-71.54756256,41.731812518],[-71.547607561,41.731938517],[-71.547630561,41.731991518],[-71.54769956,41.732285517],[-71.54773756,41.732575518],[-71.54781356,41.733036518],[-71.54783356,41.733162517],[-71.547874561,41.733418518],[-71.547974561,41.733883518],[-71.548012561,41.734139518],[-71.548019561,41.734208518],[-71.548088561,41.734482518],[-71.54818056,41.734761518],[-71.548294561,41.735180518],[-71.548454561,41.735661518],[-71.548584561,41.736000518],[-71.548676561,41.736326518],[-71.548683561,41.736351518],[-71.548775561,41.736615518],[-71.548904561,41.737206518],[-71.549042561,41.737873519],[-71.549118561,41.738335519],[-71.549171562,41.738583519],[-71.549316561,41.739426519],[-71.549385562,41.73979252],[-71.549469561,41.740158519],[-71.549500562,41.740353519],[-71.549805562,41.74189452],[-71.549835562,41.741997519],[-71.549942562,41.74244352],[-71.550041562,41.74286352],[-71.550285562,41.74400052],[-71.550438562,41.74469852],[-71.550465562,41.74481052],[-71.550613562,41.74541152],[-71.550766562,41.746205521],[-71.550926563,41.74697952],[-71.551003563,41.747273521],[-71.551086562,41.747647521],[-71.551292563,41.748734521],[-71.551376563,41.74915452],[-71.551514562,41.749791521],[-71.551582563,41.750168521],[-71.551819563,41.751244521],[-71.551895563,41.751604521],[-71.551971563,41.751969521],[-71.552078563,41.752442522],[-71.552170563,41.752919521],[-71.552467564,41.754357522],[-71.552574563,41.754918522],[-71.552696564,41.755463522],[-71.552843563,41.756282522],[-71.552895564,41.756409522],[-71.552994564,41.756699523],[-71.553093564,41.756871523],[-71.553902564,41.761652524],[-71.553909564,41.761814523],[-71.553932564,41.761994523],[-71.554123565,41.762871523],[-71.554314564,41.763852524],[-71.554436565,41.764378524],[-71.554527565,41.764862524],[-71.554619564,41.765290524]]]]}}"}, +{"type": "precinct", "typeId": 3003, "areaId": 26052, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":391,\"NAME\":\"3003\",\"SHAPE_Length\":0.33000686097329,\"SHAPE_Area\":-0.0040286210861672},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.569888573,41.835108537],[-71.569899574,41.835235537],[-71.570114574,41.837654537],[-71.570639574,41.838574537],[-71.571606574,41.843029539],[-71.571838574,41.844062539],[-71.571859574,41.844105539],[-71.572742575,41.847933539],[-71.573712575,41.85152854],[-71.573978576,41.85230854],[-71.573969576,41.85236654],[-71.574083576,41.85304254],[-71.574095576,41.853092541],[-71.574343576,41.855086541],[-71.574379576,41.855376541],[-71.575107577,41.858607541],[-71.577835577,41.858503541],[-71.578521578,41.858503541],[-71.584687579,41.858372541],[-71.590173581,41.85820854],[-71.591794582,41.858126541],[-71.597344583,41.858003541],[-71.604627586,41.857816541],[-71.604949586,41.85780754],[-71.605364586,41.85780554],[-71.609331588,41.85770954],[-71.609686588,41.857699541],[-71.610745588,41.85766854],[-71.611174588,41.85766454],[-71.611368588,41.85766454],[-71.613108589,41.85760754],[-71.613846589,41.85757954],[-71.618303591,41.85738154],[-71.621092592,41.857253539],[-71.622309592,41.85720654],[-71.623267592,41.857271539],[-71.624508593,41.857354539],[-71.625756593,41.85747954],[-71.626662593,41.857566539],[-71.628327594,41.85754054],[-71.631813595,41.85751854],[-71.638451597,41.857435539],[-71.645788599,41.857350539],[-71.648920601,41.857297539],[-71.649189601,41.857302539],[-71.649752601,41.857258539],[-71.649918601,41.857271538],[-71.650001601,41.857273538],[-71.650229601,41.857261539],[-71.658738603,41.857037538],[-71.659245604,41.857024538],[-71.669983608,41.856728538],[-71.671936608,41.856732538],[-71.675355609,41.856702538],[-71.67680461,41.856685538],[-71.67879761,41.856668537],[-71.680137611,41.856658538],[-71.680817611,41.856651538],[-71.683496612,41.856628537],[-71.688090613,41.856587538],[-71.689585614,41.856573537],[-71.689926614,41.856570537],[-71.691032614,41.856561538],[-71.690336614,41.852286537],[-71.690294614,41.852033537],[-71.690017613,41.850326537],[-71.689875614,41.849554536],[-71.689797614,41.849069536],[-71.689708613,41.848509536],[-71.689621614,41.847969535],[-71.689573613,41.847698535],[-71.689076613,41.844887535],[-71.688924612,41.844317535],[-71.688705613,41.843373535],[-71.688183612,41.840328534],[-71.686527611,41.830724533],[-71.686452611,41.830298533],[-71.686315611,41.829425532],[-71.686268612,41.829150532],[-71.685942611,41.827753532],[-71.685806611,41.826990532],[-71.68563061,41.826168531],[-71.685578611,41.825666532],[-71.685500611,41.825388531],[-71.685479611,41.825312531],[-71.685311611,41.823625531],[-71.68482061,41.820914531],[-71.683376609,41.812932529],[-71.682663608,41.808957529],[-71.681290609,41.809212529],[-71.680801608,41.809296529],[-71.680519608,41.809349529],[-71.679382608,41.809544529],[-71.679213607,41.809574528],[-71.678871608,41.809636529],[-71.678787607,41.809647529],[-71.677940608,41.809800529],[-71.677322607,41.809918529],[-71.676981607,41.809974529],[-71.676399607,41.810070529],[-71.676369607,41.810078528],[-71.675880606,41.810166529],[-71.675255606,41.810288529],[-71.674263606,41.810463529],[-71.673141606,41.810669529],[-71.672028606,41.810864529],[-71.671463606,41.810969529],[-71.671349606,41.81099053],[-71.670362605,41.811158529],[-71.670212605,41.81118453],[-71.668251604,41.811539529],[-71.667686604,41.811627529],[-71.663704603,41.81232953],[-71.662804603,41.812477529],[-71.661095602,41.81279053],[-71.659874602,41.81300053],[-71.658958601,41.81316853],[-71.658089601,41.81331353],[-71.655846601,41.81371353],[-71.6550376,41.81386653],[-71.6527406,41.81427653],[-71.652000599,41.81440853],[-71.650795599,41.814614531],[-71.649788598,41.81479753],[-71.647529598,41.815195531],[-71.646652597,41.815350531],[-71.645935597,41.81548053],[-71.645378597,41.815567531],[-71.644547597,41.815724531],[-71.644162597,41.815793531],[-71.642342596,41.816117531],[-71.641403596,41.816273531],[-71.639702595,41.816586532],[-71.638855595,41.816735531],[-71.637329594,41.816990531],[-71.637024595,41.817044531],[-71.636490594,41.817105531],[-71.635231594,41.817215531],[-71.633133593,41.817414531],[-71.632797593,41.817437532],[-71.630997593,41.817608531],[-71.630859593,41.817624531],[-71.630165592,41.817692532],[-71.628899591,41.817829532],[-71.628716592,41.817849532],[-71.628036592,41.817910532],[-71.627640591,41.817940532],[-71.627235592,41.817955531],[-71.627039591,41.817960532],[-71.627119592,41.818070532],[-71.627092591,41.818129532],[-71.627077591,41.818197532],[-71.627080592,41.818276532],[-71.627097591,41.818359532],[-71.627125591,41.818432532],[-71.627170591,41.818466532],[-71.627255592,41.818484532],[-71.627432592,41.818488532],[-71.627507592,41.818508532],[-71.627642592,41.818666532],[-71.627754591,41.818771532],[-71.627773591,41.818825532],[-71.627782592,41.818966532],[-71.627819592,41.819023532],[-71.627848591,41.819050532],[-71.627904591,41.819083532],[-71.627917592,41.819166532],[-71.627961591,41.819252532],[-71.628017592,41.819336532],[-71.628072592,41.819507532],[-71.628115592,41.819582532],[-71.628162591,41.819641532],[-71.628302592,41.819760532],[-71.628354591,41.819816532],[-71.628423592,41.819871532],[-71.628507591,41.819970532],[-71.628566591,41.820059533],[-71.628626591,41.820169532],[-71.628651592,41.820271533],[-71.628645591,41.820336532],[-71.628625591,41.820370533],[-71.628574592,41.820418532],[-71.628466592,41.820543533],[-71.628404592,41.820595532],[-71.628330592,41.820636532],[-71.628273591,41.820673532],[-71.628201592,41.820740533],[-71.628126592,41.820787532],[-71.627982591,41.820955533],[-71.627962591,41.821012533],[-71.627889591,41.821177532],[-71.627857592,41.821269533],[-71.627816592,41.821326533],[-71.627707591,41.821405533],[-71.627624592,41.821479533],[-71.627599592,41.821504533],[-71.627505592,41.821575533],[-71.627461591,41.821626532],[-71.627438591,41.821710533],[-71.627426592,41.821788533],[-71.627390592,41.821838532],[-71.627170591,41.822018533],[-71.627121592,41.822089533],[-71.627061592,41.822150532],[-71.626994591,41.822202533],[-71.626904592,41.822241533],[-71.626825592,41.822260533],[-71.626635591,41.822268532],[-71.626506591,41.822268532],[-71.626418592,41.822251533],[-71.626282592,41.822232533],[-71.626209591,41.822215533],[-71.626120591,41.822218533],[-71.626011591,41.822238533],[-71.625940591,41.822289533],[-71.625888591,41.822333533],[-71.625898591,41.822377533],[-71.625941591,41.822424532],[-71.625933591,41.822449533],[-71.625878591,41.822496533],[-71.625805591,41.822599533],[-71.625724591,41.822639533],[-71.625575591,41.822679533],[-71.625511591,41.822721533],[-71.625498591,41.822863533],[-71.625461591,41.822912533],[-71.625391591,41.822962533],[-71.625331591,41.823017533],[-71.62528959,41.823027533],[-71.625241591,41.823029533],[-71.625157591,41.823083533],[-71.62507659,41.823115533],[-71.62501659,41.823121533],[-71.624963591,41.823169533],[-71.624924591,41.823223533],[-71.624898591,41.823280533],[-71.62490159,41.823323533],[-71.624856591,41.823370533],[-71.62478559,41.823406533],[-71.624751591,41.823455533],[-71.624733591,41.823524533],[-71.62472459,41.823596533],[-71.624671591,41.823726533],[-71.624678591,41.823781533],[-71.624719591,41.823836533],[-71.624779591,41.823867533],[-71.624858591,41.823980534],[-71.624877591,41.824033533],[-71.62486059,41.824062533],[-71.62480459,41.824106533],[-71.624769591,41.824156534],[-71.624760591,41.824221533],[-71.62486259,41.824324533],[-71.624949591,41.824439533],[-71.625006591,41.824474533],[-71.625072591,41.824507534],[-71.625091591,41.824550533],[-71.625066591,41.824593533],[-71.625068591,41.824664533],[-71.625083591,41.824726533],[-71.625245591,41.824874534],[-71.625370591,41.824937533],[-71.625375591,41.824999533],[-71.625396591,41.825051534],[-71.625442591,41.825096533],[-71.625501591,41.825117533],[-71.625537591,41.825167534],[-71.625525591,41.825196533],[-71.625449591,41.825219533],[-71.625433591,41.825234533],[-71.625481591,41.825278533],[-71.625524591,41.825334533],[-71.625523591,41.825393533],[-71.625494591,41.825420534],[-71.625417591,41.825435533],[-71.625412591,41.825489533],[-71.625384591,41.825539534],[-71.625334591,41.825583533],[-71.625353591,41.825647533],[-71.625353591,41.825706533],[-71.625317591,41.825753534],[-71.625273591,41.825774534],[-71.625292591,41.825819533],[-71.625362591,41.825858533],[-71.625388591,41.825909534],[-71.625392591,41.825965534],[-71.625358591,41.826023534],[-71.625337591,41.826145534],[-71.625346591,41.826202534],[-71.625381591,41.826250533],[-71.625454591,41.826266533],[-71.625529591,41.826308533],[-71.625581591,41.826358534],[-71.625608591,41.826405533],[-71.625615591,41.826473534],[-71.625576591,41.826535534],[-71.625520591,41.826583534],[-71.625520591,41.826659533],[-71.625555591,41.826759534],[-71.625566591,41.826884534],[-71.625579592,41.826950533],[-71.625568591,41.827105533],[-71.625585591,41.827245534],[-71.625600592,41.827299533],[-71.625662591,41.827456534],[-71.625692591,41.827507534],[-71.625711591,41.827585534],[-71.625718591,41.827657534],[-71.625836591,41.827848534],[-71.625892592,41.827967534],[-71.625947592,41.828024534],[-71.626016591,41.828087534],[-71.626068592,41.828119534],[-71.626151591,41.828132534],[-71.626252591,41.828139534],[-71.626290591,41.828187534],[-71.626357592,41.828235534],[-71.626535592,41.828338534],[-71.626580591,41.828453534],[-71.626611592,41.828568534],[-71.626615591,41.828622534],[-71.626545592,41.828638534],[-71.626476592,41.828660534],[-71.626464591,41.828700534],[-71.626509592,41.828810534],[-71.626501591,41.828930534],[-71.626580591,41.829014534],[-71.626635591,41.829061534],[-71.626661592,41.829121534],[-71.626664592,41.829191534],[-71.626633592,41.829315534],[-71.626636591,41.829373534],[-71.626647592,41.829439534],[-71.626611592,41.829707534],[-71.626611592,41.829766534],[-71.626601591,41.829822534],[-71.626597591,41.829914534],[-71.626622592,41.829965535],[-71.626631592,41.830033534],[-71.626614592,41.830177534],[-71.626577591,41.830417534],[-71.626553592,41.830501534],[-71.626561591,41.830597534],[-71.626137592,41.830609535],[-71.625107591,41.830632534],[-71.624528822,41.83065018],[-71.6244686,41.829681889],[-71.622936227,41.829815139],[-71.62296313,41.830478209],[-71.622973949,41.830744874],[-71.62266559,41.830780535],[-71.62165159,41.830922535],[-71.62071259,41.831047534],[-71.619678589,41.831191535],[-71.61881359,41.831311535],[-71.617760589,41.831429535],[-71.617348589,41.831459535],[-71.617134589,41.831471534],[-71.615723588,41.831578535],[-71.614952588,41.831631535],[-71.612160587,41.831822535],[-71.611671587,41.831856535],[-71.611404586,41.831868535],[-71.611122587,41.831868535],[-71.611086587,41.831866535],[-71.610847587,41.831852535],[-71.610596587,41.831826535],[-71.610268587,41.831765535],[-71.609406586,41.831601535],[-71.608838586,41.831482535],[-71.608406586,41.831391535],[-71.607780585,41.831265535],[-71.607726586,41.831256535],[-71.607468585,41.831211535],[-71.607178585,41.831177536],[-71.607040585,41.831169535],[-71.606758586,41.831166535],[-71.606453585,41.831181535],[-71.606064585,41.831234535],[-71.605904585,41.831269535],[-71.605598585,41.831349535],[-71.603043584,41.832127536],[-71.602666781,41.830826173],[-71.600449123,41.83136869],[-71.600769584,41.832711536],[-71.600464583,41.832737536],[-71.600151583,41.832753536],[-71.600099583,41.832752536],[-71.599678583,41.832745536],[-71.599396583,41.832726536],[-71.597946583,41.832566535],[-71.597160582,41.832497536],[-71.596809582,41.832482536],[-71.596634582,41.832478536],[-71.596016582,41.832493536],[-71.595734582,41.832505535],[-71.594704582,41.832581536],[-71.593567581,41.832745536],[-71.593493581,41.832755536],[-71.593448581,41.832761536],[-71.593413581,41.832765536],[-71.592873581,41.832837535],[-71.592713096,41.83231413],[-71.590859389,41.832293434],[-71.590603703,41.8322713],[-71.590378845,41.832042871],[-71.588469326,41.831718075],[-71.587364579,41.831429536],[-71.585091578,41.831032536],[-71.584012594,41.831250511],[-71.584050693,41.831734862],[-71.583565578,41.831829536],[-71.583382577,41.831864536],[-71.583155988,41.831514631],[-71.582268577,41.831734536],[-71.582413577,41.832070536],[-71.582207578,41.832154536],[-71.581589577,41.832455536],[-71.580170577,41.833241537],[-71.579773576,41.833474537],[-71.579300577,41.833725537],[-71.579062128,41.833855499],[-71.578580283,41.833449133],[-71.578357764,41.833555495],[-71.576310277,41.834534168],[-71.576656804,41.835039274],[-71.576416576,41.835152537],[-71.576309575,41.835202537],[-71.575806575,41.835339537],[-71.575249575,41.835431537],[-71.574890575,41.835431537],[-71.574303575,41.835385537],[-71.573471575,41.835396537],[-71.573266574,41.835373537],[-71.573933194,41.834591275],[-71.572762499,41.834405677],[-71.572353376,41.83529352],[-71.570816574,41.835183537],[-71.569950573,41.835113537],[-71.569888573,41.835108537]]]]}}"}, +{"type": "precinct", "typeId": 3101, "areaId": 25960, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":299,\"NAME\":\"3101\",\"SHAPE_Length\":0.16997470959821,\"SHAPE_Area\":-0.0011043540192289},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.476766546,41.902189553],[-71.476789546,41.902156553],[-71.476850546,41.902130553],[-71.477007547,41.902144553],[-71.477078546,41.902126553],[-71.477114547,41.902075553],[-71.477123547,41.902013553],[-71.477123547,41.901958553],[-71.477136546,41.901891553],[-71.481029548,41.902541553],[-71.482106548,41.902640553],[-71.482877549,41.902393553],[-71.483208549,41.902150553],[-71.483353549,41.902268553],[-71.483589549,41.902478553],[-71.483826549,41.902756553],[-71.484116549,41.903042553],[-71.484398549,41.903283553],[-71.484894549,41.903614553],[-71.48500855,41.903706553],[-71.485123549,41.903786553],[-71.485176549,41.903817553],[-71.485329549,41.903878553],[-71.48616055,41.904045553],[-71.48632855,41.904110553],[-71.48646555,41.904171553],[-71.48651155,41.904187553],[-71.48661055,41.904210553],[-71.48671755,41.904225553],[-71.48680155,41.904225553],[-71.48690055,41.904206553],[-71.48700755,41.904175553],[-71.48708355,41.904164553],[-71.48716055,41.904148553],[-71.48723655,41.904141553],[-71.48732855,41.904126553],[-71.48744255,41.904118553],[-71.48751155,41.904118553],[-71.48758755,41.904129553],[-71.48765655,41.904164553],[-71.48769455,41.904206553],[-71.48774755,41.904320553],[-71.48786955,41.904690553],[-71.488091551,41.905259553],[-71.48813655,41.905331553],[-71.48815955,41.905354553],[-71.48822055,41.905392553],[-71.488281551,41.905423553],[-71.48854855,41.905510553],[-71.488747551,41.905568553],[-71.488907551,41.905625553],[-71.488991551,41.905651553],[-71.489212551,41.905690553],[-71.489433551,41.905693553],[-71.489487551,41.905697553],[-71.489777551,41.905686553],[-71.490273551,41.905655553],[-71.491928552,41.905590553],[-71.492078552,41.905591553],[-71.492584552,41.905594553],[-71.492836552,41.905587553],[-71.492958552,41.905571553],[-71.493080552,41.905548553],[-71.493385552,41.905503553],[-71.493889552,41.905407553],[-71.494781552,41.905285553],[-71.495316553,41.905203553],[-71.495499553,41.905175553],[-71.496147553,41.905095553],[-71.496437553,41.905072553],[-71.496429553,41.904999553],[-71.496399553,41.904858553],[-71.496330553,41.904599553],[-71.496315553,41.904503553],[-71.496292553,41.904412553],[-71.496277553,41.904320553],[-71.496208553,41.904095553],[-71.496140553,41.903923553],[-71.496056553,41.903775553],[-71.495906553,41.903584553],[-71.495804553,41.903454553],[-71.495766553,41.903397553],[-71.495720552,41.903340553],[-71.495570553,41.903178552],[-71.495297553,41.902920553],[-71.495430552,41.902848552],[-71.495728553,41.902665553],[-71.495941553,41.902523553],[-71.496033552,41.902451552],[-71.496307553,41.902256552],[-71.496422553,41.902195552],[-71.496483553,41.902169552],[-71.496567553,41.902150552],[-71.496872553,41.902108552],[-71.497391553,41.902054553],[-71.497749553,41.902031552],[-71.497978554,41.902005552],[-71.498184553,41.901963552],[-71.498238553,41.901947552],[-71.498291553,41.901936552],[-71.497802554,41.900170552],[-71.497194553,41.899488552],[-71.497139553,41.899426552],[-71.496853553,41.899863552],[-71.496377553,41.900279552],[-71.496406553,41.900220552],[-71.496464553,41.900169552],[-71.496580553,41.900055552],[-71.496618553,41.899998552],[-71.496604553,41.899938552],[-71.496625553,41.899876552],[-71.496782553,41.899714552],[-71.496857553,41.899599552],[-71.496883553,41.899532552],[-71.496948553,41.899400552],[-71.496965553,41.899380552],[-71.496989553,41.899339552],[-71.497044553,41.899265552],[-71.497109553,41.899192552],[-71.497206553,41.899048552],[-71.497286553,41.898964552],[-71.497418553,41.898856552],[-71.497580553,41.898750552],[-71.498282553,41.899710552],[-71.499178554,41.900118552],[-71.499130554,41.900227552],[-71.499125554,41.900352552],[-71.499146554,41.900410552],[-71.499176554,41.900471552],[-71.499222554,41.900532552],[-71.499268554,41.900605552],[-71.499435554,41.900803552],[-71.499489554,41.900860552],[-71.499535554,41.900917552],[-71.499710554,41.901158552],[-71.499817554,41.901314552],[-71.499908554,41.901493552],[-71.499931554,41.901562552],[-71.499962554,41.901627552],[-71.499985554,41.901696552],[-71.500046554,41.901825552],[-71.500084554,41.901890552],[-71.500114554,41.901959552],[-71.500183554,41.902077552],[-71.500206554,41.902130552],[-71.500267554,41.902233552],[-71.500305554,41.902283552],[-71.500366554,41.902386552],[-71.500404554,41.902439552],[-71.500572555,41.902703552],[-71.500603554,41.902737553],[-71.500687555,41.902863553],[-71.500732554,41.902970553],[-71.500778554,41.903119552],[-71.500801555,41.903225553],[-71.500824555,41.903286552],[-71.500854554,41.903454552],[-71.500877554,41.903542553],[-71.500908554,41.903611553],[-71.500931554,41.903637552],[-71.500946554,41.903664553],[-71.500977555,41.903691553],[-71.501022554,41.903717553],[-71.501076555,41.903740553],[-71.501137555,41.903756553],[-71.501244554,41.903771553],[-71.501366555,41.903775552],[-71.501503555,41.903767553],[-71.501709554,41.903744552],[-71.501747554,41.903740553],[-71.501785554,41.903717552],[-71.502014555,41.904007552],[-71.502197555,41.903889552],[-71.502708555,41.903580552],[-71.503082555,41.903340553],[-71.503738555,41.902928552],[-71.503771555,41.902900552],[-71.503860555,41.902825552],[-71.503960556,41.902729552],[-71.504036555,41.902645552],[-71.504150555,41.902485552],[-71.504219556,41.902348552],[-71.504364555,41.902115552],[-71.504425556,41.902043552],[-71.504462555,41.901945552],[-71.506256556,41.903538552],[-71.506989556,41.904187553],[-71.507073556,41.904254552],[-71.507225557,41.904374553],[-71.507627557,41.904696553],[-71.508011557,41.905003552],[-71.509024557,41.905914553],[-71.509186557,41.906060553],[-71.509454557,41.906298553],[-71.509865557,41.906662553],[-71.511070558,41.907708553],[-71.511330558,41.907933553],[-71.511368558,41.907959553],[-71.511421558,41.907921553],[-71.513145559,41.906659553],[-71.513390558,41.906475553],[-71.515419559,41.904988552],[-71.515892559,41.904637552],[-71.51693056,41.903878552],[-71.51805956,41.903042552],[-71.51796056,41.902985552],[-71.51716456,41.902561552],[-71.51657156,41.902245552],[-71.51637356,41.902150552],[-71.51627356,41.902092552],[-71.51622856,41.902058552],[-71.51615156,41.901989552],[-71.51611356,41.901940552],[-71.51608356,41.901886552],[-71.51597656,41.901608552],[-71.51588456,41.901211552],[-71.51588456,41.901146552],[-71.515869559,41.901013551],[-71.515839559,41.900921552],[-71.515816559,41.900879551],[-71.515800559,41.900834552],[-71.515778559,41.900792552],[-71.51574756,41.900753551],[-71.515678559,41.900692551],[-71.515556559,41.900624551],[-71.515488559,41.900593551],[-71.515045559,41.900360551],[-71.514961559,41.900296551],[-71.514702559,41.900067551],[-71.514664559,41.900025551],[-71.514618559,41.899983551],[-71.514511559,41.899899552],[-71.514305559,41.899769551],[-71.514160559,41.899693551],[-71.514099559,41.899655551],[-71.514069559,41.899643551],[-71.514030559,41.899620551],[-71.513847559,41.899548552],[-71.513733559,41.899510552],[-71.513405559,41.899411551],[-71.513184558,41.899361551],[-71.512962558,41.899323551],[-71.511650558,41.899144551],[-71.511391558,41.899117551],[-71.510742558,41.899086551],[-71.510582558,41.899086551],[-71.510437558,41.899079551],[-71.510376557,41.899067551],[-71.510315557,41.899060552],[-71.510239557,41.899041552],[-71.510170558,41.899014551],[-71.509894558,41.898925552],[-71.509910557,41.898878551],[-71.509912557,41.898706551],[-71.509920557,41.898638551],[-71.509957557,41.898502551],[-71.509982558,41.898441551],[-71.510095557,41.898232551],[-71.510127558,41.898156551],[-71.510174557,41.898083551],[-71.510227558,41.898017551],[-71.510284558,41.897957551],[-71.510465557,41.897792551],[-71.510508558,41.897740551],[-71.510517558,41.897675551],[-71.510506558,41.897614551],[-71.510482558,41.897555551],[-71.510469558,41.897481551],[-71.510470557,41.897423551],[-71.510461558,41.897349551],[-71.510460558,41.897294551],[-71.510497558,41.897177551],[-71.510532557,41.897114551],[-71.510611557,41.897004551],[-71.510654558,41.896952551],[-71.510713558,41.896901551],[-71.510838558,41.896825551],[-71.510904558,41.896800551],[-71.510985558,41.896783551],[-71.511062558,41.896773551],[-71.511154557,41.896771551],[-71.511240558,41.896748551],[-71.511388558,41.896666551],[-71.511448558,41.896626551],[-71.511481558,41.896610551],[-71.511575558,41.896534551],[-71.511489558,41.896493551],[-71.511317558,41.896391551],[-71.511038557,41.896217551],[-71.510991558,41.896174551],[-71.510956558,41.896124551],[-71.510928558,41.896070551],[-71.510929558,41.896015551],[-71.510965558,41.895956551],[-71.511017557,41.895900551],[-71.511065558,41.895826551],[-71.511085558,41.895796551],[-71.511109558,41.895743551],[-71.511093558,41.895685551],[-71.510974558,41.89558055],[-71.510926558,41.895530551],[-71.510858558,41.89548455],[-71.510765557,41.895478551],[-71.510667557,41.895506551],[-71.510234557,41.895671551],[-71.510151557,41.895687551],[-71.510105557,41.895686551],[-71.510074557,41.895685551],[-71.509995557,41.89565855],[-71.509910557,41.895611551],[-71.509805557,41.895535551],[-71.509727557,41.89548455],[-71.509641557,41.895442551],[-71.509374557,41.895356551],[-71.509300557,41.895313551],[-71.509247557,41.895274551],[-71.509183557,41.895216551],[-71.509137557,41.895161551],[-71.509127557,41.895049551],[-71.509118557,41.895020551],[-71.509109557,41.894990551],[-71.509077557,41.894931551],[-71.509031557,41.89487755],[-71.508967557,41.89483155],[-71.508877557,41.894787551],[-71.508807557,41.894759551],[-71.508736557,41.89474155],[-71.508540556,41.89471555],[-71.508375557,41.894674551],[-71.508291557,41.89464455],[-71.508072556,41.89452055],[-71.507998556,41.89446955],[-71.507875557,41.89436355],[-71.507805556,41.894321551],[-71.507734556,41.89428855],[-71.507654557,41.89427655],[-71.507577556,41.894280551],[-71.507490556,41.894263551],[-71.507380557,41.89417155],[-71.507325556,41.89411755],[-71.507302556,41.89406155],[-71.507304556,41.89400055],[-71.507321556,41.89393855],[-71.507360556,41.89387655],[-71.507377556,41.89380555],[-71.507374556,41.89374755],[-71.507357556,41.89368955],[-71.507326556,41.89363755],[-71.507238556,41.89352855],[-71.507207556,41.89345855],[-71.507123556,41.893327551],[-71.507067556,41.89328455],[-71.506984556,41.89326555],[-71.506889556,41.89327155],[-71.506797556,41.89328355],[-71.506633556,41.89327955],[-71.506572556,41.89324355],[-71.506492556,41.893133551],[-71.506423556,41.89314055],[-71.506353556,41.89313955],[-71.506285556,41.89312455],[-71.506225556,41.89307055],[-71.506159556,41.89303255],[-71.506102556,41.89298455],[-71.506072556,41.89292755],[-71.506073556,41.89286855],[-71.506082556,41.89281355],[-71.506127556,41.89276555],[-71.506196556,41.89265155],[-71.506219556,41.89260055],[-71.506199556,41.89256855],[-71.506297556,41.89246955],[-71.506321556,41.89234255],[-71.506325556,41.89227955],[-71.506374556,41.89216455],[-71.506421556,41.89210755],[-71.506471556,41.89206555],[-71.506536556,41.89203655],[-71.506617556,41.89201755],[-71.506677556,41.89196455],[-71.506731556,41.89192755],[-71.506800556,41.89189655],[-71.506850556,41.89184755],[-71.506897556,41.89178955],[-71.507043556,41.89163455],[-71.507198556,41.89150855],[-71.507248556,41.89145955],[-71.507325556,41.89146255],[-71.507381556,41.89141355],[-71.507432556,41.89141755],[-71.507507556,41.89143155],[-71.507588556,41.89142555],[-71.507610556,41.89140555],[-71.507607556,41.89134355],[-71.507586556,41.89126355],[-71.507584556,41.89119155],[-71.507572556,41.89113655],[-71.507530556,41.89107955],[-71.507488556,41.89103255],[-71.507441556,41.89093555],[-71.507357556,41.89089655],[-71.507300556,41.89085355],[-71.507179556,41.89075055],[-71.507024556,41.89058255],[-71.506989556,41.89053255],[-71.506944556,41.89048155],[-71.506813556,41.89039155],[-71.506728556,41.89027055],[-71.506621556,41.89016355],[-71.506573556,41.89010455],[-71.506472556,41.890002549],[-71.506358556,41.889904549],[-71.506152556,41.88971355],[-71.506079556,41.889692549],[-71.506001556,41.88966255],[-71.505951556,41.88960355],[-71.505870555,41.88948655],[-71.505718556,41.88933655],[-71.505600555,41.889378549],[-71.505586556,41.889361549],[-71.505562555,41.88929855],[-71.505527556,41.88923355],[-71.505488556,41.889177549],[-71.505455555,41.889109549],[-71.505385555,41.88890755],[-71.505355555,41.888776549],[-71.505302555,41.88863555],[-71.505246555,41.888441549],[-71.505202555,41.888325549],[-71.505131555,41.888089549],[-71.505107555,41.887954549],[-71.505111555,41.887588549],[-71.505104555,41.887532549],[-71.505080555,41.887461549],[-71.505079555,41.887323549],[-71.505088555,41.887269549],[-71.505119555,41.887155549],[-71.505127555,41.887027549],[-71.505146555,41.886964549],[-71.505208555,41.886849549],[-71.505355555,41.886829549],[-71.505373555,41.886597549],[-71.505390555,41.886543549],[-71.505392555,41.886517549],[-71.505394555,41.886489549],[-71.505417555,41.886457549],[-71.505412555,41.886401549],[-71.505357555,41.886351549],[-71.505337555,41.886152549],[-71.505338555,41.886018549],[-71.505352555,41.885898549],[-71.505350555,41.885834549],[-71.505329555,41.885776549],[-71.505313555,41.885643549],[-71.505333555,41.885584549],[-71.505302555,41.885438549],[-71.505297555,41.885361549],[-71.505302555,41.885295549],[-71.505312555,41.885238549],[-71.505259555,41.885154549],[-71.505262555,41.885003549],[-71.505270555,41.884926549],[-71.505270555,41.884906549],[-71.505272555,41.884503548],[-71.505237555,41.884384549],[-71.505146555,41.884204549],[-71.505053555,41.884083549],[-71.504886555,41.883904549],[-71.504449555,41.883576549],[-71.504208555,41.883435548],[-71.504020555,41.883294548],[-71.503967555,41.883246549],[-71.503926555,41.883183549],[-71.503898554,41.883140548],[-71.503848555,41.883100548],[-71.503725554,41.882910548],[-71.503668554,41.882806548],[-71.503642555,41.882747548],[-71.503573554,41.882621549],[-71.503551554,41.882567548],[-71.503476554,41.882337548],[-71.503456554,41.882278548],[-71.503329554,41.881959548],[-71.503294554,41.881899548],[-71.503250554,41.881837548],[-71.503204554,41.881793548],[-71.503146554,41.881746548],[-71.503028554,41.881669548],[-71.502948554,41.881634548],[-71.502865554,41.881607548],[-71.502781554,41.881574548],[-71.502621554,41.881492548],[-71.502552554,41.881437548],[-71.502467554,41.881321548],[-71.502429554,41.881259548],[-71.502417554,41.881198548],[-71.502441554,41.881085548],[-71.502444554,41.881041548],[-71.502489554,41.880994548],[-71.502518554,41.880936548],[-71.502537554,41.880869548],[-71.502562554,41.880816548],[-71.502620554,41.880753548],[-71.502547554,41.880668548],[-71.502518554,41.880635548],[-71.502396554,41.880486548],[-71.502266554,41.880318548],[-71.502136554,41.880127548],[-71.502037554,41.879971548],[-71.501770554,41.879517548],[-71.501663554,41.879326548],[-71.501610553,41.879219548],[-71.501511554,41.879048548],[-71.501465553,41.878933548],[-71.501282553,41.878651548],[-71.501152553,41.878502548],[-71.500786553,41.878167547],[-71.500465553,41.877858548],[-71.500053553,41.877472548],[-71.499619553,41.877056547],[-71.499222553,41.876683547],[-71.498917553,41.876389547],[-71.498795553,41.876282547],[-71.498558552,41.876053547],[-71.498364552,41.875895547],[-71.498161552,41.875729547],[-71.497391552,41.875138547],[-71.497086552,41.874897547],[-71.496819552,41.874695547],[-71.495934551,41.874009547],[-71.495598551,41.873730547],[-71.495361551,41.873516547],[-71.495148551,41.873310547],[-71.494919551,41.873070547],[-71.494804551,41.872933547],[-71.494690551,41.872788547],[-71.494293551,41.872261547],[-71.494110551,41.871937546],[-71.494093551,41.871906546],[-71.493942551,41.871632546],[-71.493530551,41.870919547],[-71.49330955,41.870621546],[-71.49307355,41.870289546],[-71.49274455,41.869843546],[-71.49268455,41.869761546],[-71.49260755,41.869656546],[-71.49247755,41.869473546],[-71.49232555,41.869248546],[-71.49229955,41.869211546],[-71.49167855,41.869364546],[-71.491104549,41.869506546],[-71.491004549,41.869498546],[-71.487399548,41.869996546],[-71.486676548,41.870097546],[-71.485943548,41.870200546],[-71.482750547,41.870636546],[-71.475571545,41.871638547],[-71.473356544,41.871927547],[-71.470664543,41.872279547],[-71.469204542,41.872472547],[-71.469007542,41.872502547],[-71.468713542,41.872534547],[-71.468500542,41.872564547],[-71.468421542,41.872577548],[-71.468394542,41.872589547],[-71.468198542,41.872607547],[-71.467504542,41.872607547],[-71.467503542,41.873107547],[-71.467516542,41.873162548],[-71.467555542,41.873326547],[-71.467588542,41.873466547],[-71.467906542,41.874178548],[-71.468225542,41.874889548],[-71.468318543,41.875052548],[-71.468360542,41.875180548],[-71.468792542,41.876085548],[-71.468803543,41.876106548],[-71.468706543,41.876604548],[-71.468723543,41.876650548],[-71.469957544,41.880754549],[-71.470630543,41.883026549],[-71.470801543,41.883609549],[-71.471025544,41.884302549],[-71.471782544,41.88669455],[-71.472302544,41.888335551],[-71.472646545,41.889422551],[-71.472704545,41.88960655],[-71.472804545,41.88980755],[-71.473523545,41.891990551],[-71.473581545,41.892164551],[-71.473704545,41.892407551],[-71.474795545,41.896255551],[-71.474801545,41.896296551],[-71.474815545,41.896313551],[-71.474876545,41.896412551],[-71.474998546,41.896691552],[-71.475021546,41.896767552],[-71.475052545,41.896840551],[-71.475090545,41.896965552],[-71.475151546,41.897221552],[-71.475288546,41.897587552],[-71.475334546,41.897728552],[-71.475372546,41.897873552],[-71.475464546,41.898152552],[-71.475517546,41.898285552],[-71.475548546,41.898423552],[-71.475555545,41.898484552],[-71.475555546,41.898545552],[-71.475586546,41.898732552],[-71.475700546,41.899109552],[-71.475792546,41.899361552],[-71.475830546,41.899506553],[-71.475876546,41.899651552],[-71.475914546,41.899792552],[-71.476166546,41.900521553],[-71.476242546,41.900727552],[-71.476273547,41.900830553],[-71.476372547,41.900986553],[-71.476410547,41.901204553],[-71.476486547,41.901368552],[-71.476471547,41.901524552],[-71.476531546,41.901569553],[-71.476599546,41.901718552],[-71.476604547,41.901755552],[-71.476766546,41.902189553]]]]}}"}, +{"type": "precinct", "typeId": 3102, "areaId": 26077, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":416,\"NAME\":\"3102\",\"SHAPE_Length\":0.11758212344961,\"SHAPE_Area\":-0.00042097418150922},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.510858558,41.89548455],[-71.510926558,41.895530551],[-71.510974558,41.89558055],[-71.511093558,41.895685551],[-71.511109558,41.895743551],[-71.511085558,41.895796551],[-71.511065558,41.895826551],[-71.511017557,41.895900551],[-71.510965558,41.895956551],[-71.510929558,41.896015551],[-71.510928558,41.896070551],[-71.510956558,41.896124551],[-71.510991558,41.896174551],[-71.511038557,41.896217551],[-71.511317558,41.896391551],[-71.511489558,41.896493551],[-71.511575558,41.896534551],[-71.511481558,41.896610551],[-71.511448558,41.896626551],[-71.511388558,41.896666551],[-71.511240558,41.896748551],[-71.511154557,41.896771551],[-71.511062558,41.896773551],[-71.510985558,41.896783551],[-71.510904558,41.896800551],[-71.510838558,41.896825551],[-71.510713558,41.896901551],[-71.510654558,41.896952551],[-71.510611557,41.897004551],[-71.510532557,41.897114551],[-71.510497558,41.897177551],[-71.510460558,41.897294551],[-71.510461558,41.897349551],[-71.510470557,41.897423551],[-71.510469558,41.897481551],[-71.510482558,41.897555551],[-71.510506558,41.897614551],[-71.510517558,41.897675551],[-71.510508558,41.897740551],[-71.510465557,41.897792551],[-71.510284558,41.897957551],[-71.510227558,41.898017551],[-71.510174557,41.898083551],[-71.510127558,41.898156551],[-71.510095557,41.898232551],[-71.509982558,41.898441551],[-71.509957557,41.898502551],[-71.509920557,41.898638551],[-71.509912557,41.898706551],[-71.509910557,41.898878551],[-71.509894558,41.898925552],[-71.510170558,41.899014551],[-71.510239557,41.899041552],[-71.510315557,41.899060552],[-71.510376557,41.899067551],[-71.510437558,41.899079551],[-71.510582558,41.899086551],[-71.510742558,41.899086551],[-71.511391558,41.899117551],[-71.511650558,41.899144551],[-71.512962558,41.899323551],[-71.513184558,41.899361551],[-71.513405559,41.899411551],[-71.513733559,41.899510552],[-71.513847559,41.899548552],[-71.514030559,41.899620551],[-71.514069559,41.899643551],[-71.514099559,41.899655551],[-71.514160559,41.899693551],[-71.514305559,41.899769551],[-71.514511559,41.899899552],[-71.514618559,41.899983551],[-71.514664559,41.900025551],[-71.514702559,41.900067551],[-71.514961559,41.900296551],[-71.515045559,41.900360551],[-71.515488559,41.900593551],[-71.515556559,41.900624551],[-71.515678559,41.900692551],[-71.51574756,41.900753551],[-71.515778559,41.900792552],[-71.515800559,41.900834552],[-71.515816559,41.900879551],[-71.515839559,41.900921552],[-71.515869559,41.901013551],[-71.51588456,41.901146552],[-71.51588456,41.901211552],[-71.51597656,41.901608552],[-71.51608356,41.901886552],[-71.51611356,41.901940552],[-71.51615156,41.901989552],[-71.51622856,41.902058552],[-71.51627356,41.902092552],[-71.51637356,41.902150552],[-71.51657156,41.902245552],[-71.51716456,41.902561552],[-71.51796056,41.902985552],[-71.51805956,41.903042552],[-71.519615561,41.901875552],[-71.519760561,41.901772552],[-71.520035561,41.901562552],[-71.520095561,41.901512551],[-71.520401561,41.901257551],[-71.520599561,41.901071552],[-71.520981561,41.900669551],[-71.521194561,41.900414552],[-71.521255561,41.900330552],[-71.521515561,41.899998551],[-71.521629561,41.899842551],[-71.521736561,41.899685551],[-71.521950561,41.899346551],[-71.522049561,41.899174551],[-71.522247561,41.898808551],[-71.522339561,41.898625551],[-71.522357561,41.898582551],[-71.522423562,41.898419551],[-71.522499561,41.898213551],[-71.522705562,41.897572551],[-71.522797561,41.897110551],[-71.522835561,41.896862551],[-71.522903561,41.89630555],[-71.522911562,41.895985551],[-71.522919562,41.89587855],[-71.522926561,41.89560455],[-71.522896561,41.89515355],[-71.522850561,41.89469655],[-71.522797561,41.89432255],[-71.522789561,41.89426555],[-71.522771561,41.89416255],[-71.522751561,41.89404755],[-71.522659561,41.89358255],[-71.522537561,41.89311655],[-71.522469561,41.89288455],[-71.522392561,41.89265155],[-71.522316561,41.89245355],[-71.522057561,41.89183555],[-71.521843561,41.891388549],[-71.521721561,41.89115255],[-71.521584561,41.89091555],[-71.521126561,41.89009155],[-71.52018756,41.888443549],[-71.52013656,41.888352549],[-71.51936356,41.886971549],[-71.518936559,41.886238549],[-71.518700559,41.885834549],[-71.51787656,41.884365548],[-71.517342559,41.883458548],[-71.517075559,41.882977548],[-71.516411559,41.881802548],[-71.516174559,41.881340548],[-71.515907559,41.880768548],[-71.515671559,41.880173547],[-71.515536559,41.879780547],[-71.515004558,41.879675548],[-71.514928558,41.879668547],[-71.514860558,41.879623547],[-71.514830558,41.879583547],[-71.514823558,41.879518548],[-71.514804558,41.879442548],[-71.514770558,41.879372548],[-71.514728558,41.879309547],[-71.514650463,41.879125956],[-71.514474843,41.879000104],[-71.514241408,41.878868474],[-71.514076205,41.878785059],[-71.514018095,41.878761462],[-71.513608951,41.878569304],[-71.513114885,41.878397911],[-71.512262176,41.878104469],[-71.51191114,41.877657157],[-71.511765938,41.877579292],[-71.511482917,41.877427537],[-71.511028404,41.877181564],[-71.510579513,41.876938605],[-71.510408023,41.876849138],[-71.510056697,41.876926685],[-71.509705879,41.875195372],[-71.50934284,41.875236454],[-71.509199367,41.87525992],[-71.508472884,41.875343092],[-71.508328251,41.875359795],[-71.508372895,41.875576821],[-71.507677389,41.875656485],[-71.50748401,41.875678768],[-71.507162783,41.874794044],[-71.507282773,41.874764235],[-71.507223362,41.874748816],[-71.506688151,41.874585265],[-71.506224912,41.874445775],[-71.50548578,41.874299436],[-71.505393918,41.874341263],[-71.505287554,41.874333547],[-71.505173555,41.874211547],[-71.504898554,41.874089546],[-71.504967555,41.873913546],[-71.505287554,41.872803546],[-71.505336555,41.872644546],[-71.505363554,41.872559547],[-71.505440554,41.872280546],[-71.505516555,41.872044546],[-71.505577554,41.871884546],[-71.505669555,41.871697546],[-71.505844555,41.871384546],[-71.505997555,41.871148546],[-71.506106555,41.870972546],[-71.506187555,41.870842546],[-71.506653555,41.870125546],[-71.506691555,41.870060546],[-71.506874555,41.869782546],[-71.507088555,41.869435546],[-71.507216555,41.869240546],[-71.507446556,41.868889546],[-71.507614555,41.868615546],[-71.507301555,41.868508546],[-71.507736555,41.867852545],[-71.507941555,41.867516545],[-71.508064555,41.867314546],[-71.508090555,41.867280545],[-71.507980555,41.867291545],[-71.505927554,41.867567546],[-71.504997554,41.867695545],[-71.504247554,41.867758546],[-71.503142553,41.867931545],[-71.502739554,41.867994546],[-71.500498552,41.868348546],[-71.499657553,41.868481546],[-71.498533552,41.868701546],[-71.497632552,41.868879546],[-71.497297552,41.868978546],[-71.497201552,41.868969546],[-71.497014551,41.868968546],[-71.496933552,41.868950546],[-71.496918551,41.868927546],[-71.496942552,41.868871546],[-71.496920551,41.868823546],[-71.496837552,41.868784546],[-71.496749552,41.868754546],[-71.496653552,41.868731546],[-71.496580551,41.868727546],[-71.496487551,41.868716546],[-71.496400552,41.868723546],[-71.496320551,41.868703546],[-71.496246551,41.868690546],[-71.496165551,41.868681546],[-71.496062551,41.868664546],[-71.495952551,41.868651546],[-71.495872551,41.868649546],[-71.495690551,41.868659546],[-71.495594551,41.868653546],[-71.495512551,41.868665546],[-71.495487551,41.868677546],[-71.495466551,41.868699546],[-71.495205551,41.868857546],[-71.494921551,41.868892546],[-71.49229955,41.869211546],[-71.49232555,41.869248546],[-71.49247755,41.869473546],[-71.49260755,41.869656546],[-71.49268455,41.869761546],[-71.49274455,41.869843546],[-71.49307355,41.870289546],[-71.49330955,41.870621546],[-71.493530551,41.870919547],[-71.493942551,41.871632546],[-71.494093551,41.871906546],[-71.494110551,41.871937546],[-71.494293551,41.872261547],[-71.494690551,41.872788547],[-71.494804551,41.872933547],[-71.494919551,41.873070547],[-71.495148551,41.873310547],[-71.495361551,41.873516547],[-71.495598551,41.873730547],[-71.495934551,41.874009547],[-71.496819552,41.874695547],[-71.497086552,41.874897547],[-71.497391552,41.875138547],[-71.498161552,41.875729547],[-71.498364552,41.875895547],[-71.498558552,41.876053547],[-71.498795553,41.876282547],[-71.498917553,41.876389547],[-71.499222553,41.876683547],[-71.499619553,41.877056547],[-71.500053553,41.877472548],[-71.500465553,41.877858548],[-71.500786553,41.878167547],[-71.501152553,41.878502548],[-71.501282553,41.878651548],[-71.501465553,41.878933548],[-71.501511554,41.879048548],[-71.501610553,41.879219548],[-71.501663554,41.879326548],[-71.501770554,41.879517548],[-71.502037554,41.879971548],[-71.502136554,41.880127548],[-71.502266554,41.880318548],[-71.502396554,41.880486548],[-71.502518554,41.880635548],[-71.502547554,41.880668548],[-71.502620554,41.880753548],[-71.502562554,41.880816548],[-71.502537554,41.880869548],[-71.502518554,41.880936548],[-71.502489554,41.880994548],[-71.502444554,41.881041548],[-71.502441554,41.881085548],[-71.502417554,41.881198548],[-71.502429554,41.881259548],[-71.502467554,41.881321548],[-71.502552554,41.881437548],[-71.502621554,41.881492548],[-71.502781554,41.881574548],[-71.502865554,41.881607548],[-71.502948554,41.881634548],[-71.503028554,41.881669548],[-71.503146554,41.881746548],[-71.503204554,41.881793548],[-71.503250554,41.881837548],[-71.503294554,41.881899548],[-71.503329554,41.881959548],[-71.503456554,41.882278548],[-71.503476554,41.882337548],[-71.503551554,41.882567548],[-71.503573554,41.882621549],[-71.503642555,41.882747548],[-71.503668554,41.882806548],[-71.503725554,41.882910548],[-71.503848555,41.883100548],[-71.503898554,41.883140548],[-71.503926555,41.883183549],[-71.503967555,41.883246549],[-71.504020555,41.883294548],[-71.504208555,41.883435548],[-71.504449555,41.883576549],[-71.504886555,41.883904549],[-71.505053555,41.884083549],[-71.505146555,41.884204549],[-71.505237555,41.884384549],[-71.505272555,41.884503548],[-71.505270555,41.884906549],[-71.505270555,41.884926549],[-71.505262555,41.885003549],[-71.505259555,41.885154549],[-71.505312555,41.885238549],[-71.505302555,41.885295549],[-71.505297555,41.885361549],[-71.505302555,41.885438549],[-71.505333555,41.885584549],[-71.505313555,41.885643549],[-71.505329555,41.885776549],[-71.505350555,41.885834549],[-71.505352555,41.885898549],[-71.505338555,41.886018549],[-71.505337555,41.886152549],[-71.505357555,41.886351549],[-71.505412555,41.886401549],[-71.505417555,41.886457549],[-71.505394555,41.886489549],[-71.505392555,41.886517549],[-71.505390555,41.886543549],[-71.505373555,41.886597549],[-71.505355555,41.886829549],[-71.505208555,41.886849549],[-71.505146555,41.886964549],[-71.505127555,41.887027549],[-71.505119555,41.887155549],[-71.505088555,41.887269549],[-71.505079555,41.887323549],[-71.505080555,41.887461549],[-71.505104555,41.887532549],[-71.505111555,41.887588549],[-71.505107555,41.887954549],[-71.505131555,41.888089549],[-71.505202555,41.888325549],[-71.505246555,41.888441549],[-71.505302555,41.88863555],[-71.505355555,41.888776549],[-71.505385555,41.88890755],[-71.505455555,41.889109549],[-71.505488556,41.889177549],[-71.505527556,41.88923355],[-71.505562555,41.88929855],[-71.505586556,41.889361549],[-71.505600555,41.889378549],[-71.505718556,41.88933655],[-71.505870555,41.88948655],[-71.505951556,41.88960355],[-71.506001556,41.88966255],[-71.506079556,41.889692549],[-71.506152556,41.88971355],[-71.506358556,41.889904549],[-71.506472556,41.890002549],[-71.506573556,41.89010455],[-71.506621556,41.89016355],[-71.506728556,41.89027055],[-71.506813556,41.89039155],[-71.506944556,41.89048155],[-71.506989556,41.89053255],[-71.507024556,41.89058255],[-71.507179556,41.89075055],[-71.507300556,41.89085355],[-71.507357556,41.89089655],[-71.507441556,41.89093555],[-71.507488556,41.89103255],[-71.507530556,41.89107955],[-71.507572556,41.89113655],[-71.507584556,41.89119155],[-71.507586556,41.89126355],[-71.507607556,41.89134355],[-71.507610556,41.89140555],[-71.507588556,41.89142555],[-71.507507556,41.89143155],[-71.507432556,41.89141755],[-71.507381556,41.89141355],[-71.507325556,41.89146255],[-71.507248556,41.89145955],[-71.507198556,41.89150855],[-71.507043556,41.89163455],[-71.506897556,41.89178955],[-71.506850556,41.89184755],[-71.506800556,41.89189655],[-71.506731556,41.89192755],[-71.506677556,41.89196455],[-71.506617556,41.89201755],[-71.506536556,41.89203655],[-71.506471556,41.89206555],[-71.506421556,41.89210755],[-71.506374556,41.89216455],[-71.506325556,41.89227955],[-71.506321556,41.89234255],[-71.506297556,41.89246955],[-71.506199556,41.89256855],[-71.506219556,41.89260055],[-71.506196556,41.89265155],[-71.506127556,41.89276555],[-71.506082556,41.89281355],[-71.506073556,41.89286855],[-71.506072556,41.89292755],[-71.506102556,41.89298455],[-71.506159556,41.89303255],[-71.506225556,41.89307055],[-71.506285556,41.89312455],[-71.506353556,41.89313955],[-71.506423556,41.89314055],[-71.506492556,41.893133551],[-71.506572556,41.89324355],[-71.506633556,41.89327955],[-71.506797556,41.89328355],[-71.506889556,41.89327155],[-71.506984556,41.89326555],[-71.507067556,41.89328455],[-71.507123556,41.893327551],[-71.507207556,41.89345855],[-71.507238556,41.89352855],[-71.507326556,41.89363755],[-71.507357556,41.89368955],[-71.507374556,41.89374755],[-71.507377556,41.89380555],[-71.507360556,41.89387655],[-71.507321556,41.89393855],[-71.507304556,41.89400055],[-71.507302556,41.89406155],[-71.507325556,41.89411755],[-71.507380557,41.89417155],[-71.507490556,41.894263551],[-71.507577556,41.894280551],[-71.507654557,41.89427655],[-71.507734556,41.89428855],[-71.507805556,41.894321551],[-71.507875557,41.89436355],[-71.507998556,41.89446955],[-71.508072556,41.89452055],[-71.508291557,41.89464455],[-71.508375557,41.894674551],[-71.508540556,41.89471555],[-71.508736557,41.89474155],[-71.508807557,41.894759551],[-71.508877557,41.894787551],[-71.508967557,41.89483155],[-71.509031557,41.89487755],[-71.509077557,41.894931551],[-71.509109557,41.894990551],[-71.509118557,41.895020551],[-71.509127557,41.895049551],[-71.509137557,41.895161551],[-71.509183557,41.895216551],[-71.509247557,41.895274551],[-71.509300557,41.895313551],[-71.509374557,41.895356551],[-71.509641557,41.895442551],[-71.509727557,41.89548455],[-71.509805557,41.895535551],[-71.509910557,41.895611551],[-71.509995557,41.89565855],[-71.510074557,41.895685551],[-71.510105557,41.895686551],[-71.510151557,41.895687551],[-71.510234557,41.895671551],[-71.510667557,41.895506551],[-71.510765557,41.895478551],[-71.510858558,41.89548455]]]]}}"}, +{"type": "precinct", "typeId": 3103, "areaId": 26078, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":417,\"NAME\":\"3103\",\"SHAPE_Length\":0.17843192519494,\"SHAPE_Area\":-0.00070346298606997},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.518700559,41.885834549],[-71.518936559,41.886238549],[-71.51943856,41.886223549],[-71.51995156,41.886158549],[-71.52031856,41.886120549],[-71.52036456,41.886115548],[-71.52089856,41.886016549],[-71.521798561,41.885741549],[-71.52231756,41.885535548],[-71.522576561,41.885512548],[-71.522943561,41.885512548],[-71.523232561,41.885406548],[-71.524347561,41.884567548],[-71.524607561,41.884293548],[-71.525003561,41.884323548],[-71.525507561,41.884323548],[-71.525858562,41.884216548],[-71.526041562,41.884049548],[-71.526087562,41.883843548],[-71.526041562,41.883721548],[-71.526102562,41.883644548],[-71.526581562,41.883374548],[-71.526906562,41.883192548],[-71.527251562,41.883105548],[-71.527384562,41.883072548],[-71.527555562,41.882709548],[-71.527613562,41.882584548],[-71.527693562,41.882113548],[-71.527704562,41.882050547],[-71.527720562,41.881790548],[-71.527905562,41.881611547],[-71.528502562,41.881024548],[-71.528648562,41.881024548],[-71.528923563,41.881035547],[-71.529167563,41.881050547],[-71.529495563,41.881092547],[-71.529701563,41.881134547],[-71.529900563,41.881195547],[-71.530144563,41.881298547],[-71.530418563,41.881379547],[-71.530624563,41.881436547],[-71.531006563,41.881489547],[-71.531158563,41.881524547],[-71.531357563,41.881592547],[-71.531662563,41.881703547],[-71.531990563,41.881817547],[-71.532036564,41.881836547],[-71.532227564,41.881768547],[-71.532372564,41.881703547],[-71.532516564,41.881626547],[-71.532608564,41.881546547],[-71.532669564,41.881474547],[-71.532738564,41.881375548],[-71.532806564,41.881222547],[-71.532822564,41.881119547],[-71.532814564,41.881047547],[-71.532799564,41.880970547],[-71.532738564,41.880894547],[-71.532631564,41.880791547],[-71.532303563,41.880444547],[-71.532234563,41.880352547],[-71.532173564,41.880211547],[-71.532143564,41.880036547],[-71.532135564,41.879952547],[-71.532150564,41.879868547],[-71.532181564,41.879765547],[-71.532242564,41.879654547],[-71.532318564,41.879532547],[-71.532417564,41.879410547],[-71.532600564,41.879246547],[-71.532646564,41.879216547],[-71.532784564,41.879097547],[-71.532967564,41.878968547],[-71.533226564,41.878838547],[-71.533409564,41.878754547],[-71.533722564,41.878666547],[-71.534172564,41.878586547],[-71.534622565,41.878533547],[-71.535027564,41.878453547],[-71.535347564,41.878376547],[-71.535388565,41.878360547],[-71.535606565,41.878277547],[-71.535812564,41.878193547],[-71.535965565,41.878060546],[-71.536102565,41.877896546],[-71.536568565,41.877602546],[-71.536720565,41.877491547],[-71.536804565,41.877339546],[-71.536888565,41.877213546],[-71.536522565,41.877007546],[-71.536140565,41.876751546],[-71.535469565,41.876255546],[-71.534607565,41.875634546],[-71.533707564,41.874970546],[-71.533514564,41.874832546],[-71.532669563,41.874207546],[-71.532448564,41.874039546],[-71.532188564,41.873822546],[-71.532013564,41.873658545],[-71.531988563,41.873632546],[-71.531891563,41.873532546],[-71.531715563,41.873303545],[-71.531639563,41.873188545],[-71.531509564,41.872967546],[-71.531387563,41.872746545],[-71.531311563,41.872567545],[-71.531189563,41.872197545],[-71.531052563,41.871674545],[-71.530899563,41.871170545],[-71.530792562,41.870724545],[-71.530724563,41.870186545],[-71.531441563,41.870205545],[-71.532112563,41.870217545],[-71.532883563,41.870224545],[-71.533691564,41.870224545],[-71.533951563,41.870213545],[-71.534201564,41.870213545],[-71.534554564,41.870213545],[-71.535042564,41.870201544],[-71.535454564,41.870199545],[-71.535667564,41.870198545],[-71.537781565,41.870156545],[-71.538033565,41.870160545],[-71.538551565,41.870152545],[-71.539185566,41.870156545],[-71.539963566,41.870201544],[-71.540489566,41.870221544],[-71.541046567,41.870232545],[-71.541351566,41.870259545],[-71.541679566,41.870259545],[-71.542046566,41.870278545],[-71.542229567,41.870289545],[-71.542671566,41.870297545],[-71.543175566,41.870320544],[-71.543907567,41.870354545],[-71.544975567,41.870392545],[-71.546120567,41.870434545],[-71.546669568,41.870446545],[-71.547340568,41.870480544],[-71.547722568,41.870514544],[-71.547966569,41.870552544],[-71.548485568,41.870640545],[-71.548958569,41.870724545],[-71.549767569,41.870858545],[-71.550278569,41.870945544],[-71.550995569,41.871067544],[-71.55139257,41.871128545],[-71.55180457,41.871199544],[-71.55226157,41.871277544],[-71.55244457,41.871132545],[-71.55278057,41.870854544],[-71.55326157,41.870488545],[-71.55368857,41.870156544],[-71.554108571,41.869839544],[-71.554244571,41.869738544],[-71.554596571,41.869477544],[-71.555038571,41.869137544],[-71.55569557,41.868653544],[-71.556030571,41.868390544],[-71.556259571,41.868168544],[-71.556587571,41.867813544],[-71.556770571,41.867638544],[-71.557091571,41.867424544],[-71.557549571,41.867196544],[-71.557747571,41.867123543],[-71.557823571,41.867099544],[-71.558067572,41.867024543],[-71.558472572,41.866948543],[-71.558583571,41.866929543],[-71.558876572,41.866879544],[-71.559158572,41.866825544],[-71.559624572,41.866719543],[-71.559975572,41.866623543],[-71.560501572,41.866471544],[-71.560555572,41.866452544],[-71.561150573,41.866269543],[-71.561516573,41.866158543],[-71.563942573,41.865441543],[-71.565094573,41.865106543],[-71.565163574,41.865086543],[-71.565697574,41.864972543],[-71.566261574,41.864861543],[-71.566345574,41.864849543],[-71.566673574,41.864800542],[-71.567139575,41.864750543],[-71.568451575,41.864701543],[-71.569344575,41.864674543],[-71.569725575,41.864663542],[-71.570221576,41.864632543],[-71.570534575,41.864602543],[-71.570862576,41.864548542],[-71.571304576,41.864464543],[-71.571815576,41.864361543],[-71.571999576,41.864319543],[-71.572174576,41.864014543],[-71.572296576,41.863644543],[-71.572403576,41.863289542],[-71.572548576,41.862919542],[-71.572891576,41.861916542],[-71.573029577,41.861534542],[-71.573311576,41.860630542],[-71.573456577,41.860218541],[-71.573586576,41.859795542],[-71.573723576,41.859307541],[-71.573730577,41.859219542],[-71.573700576,41.859078542],[-71.573608576,41.858815541],[-71.572473576,41.858936541],[-71.569886575,41.859220542],[-71.568644574,41.859362541],[-71.565942574,41.859669542],[-71.563122573,41.859979542],[-71.562897573,41.860017542],[-71.562896573,41.860006542],[-71.561807572,41.860106542],[-71.561743572,41.860117542],[-71.560706572,41.860307542],[-71.559752571,41.860453542],[-71.559406572,41.860507543],[-71.558472571,41.860684542],[-71.557994571,41.860740543],[-71.556816571,41.860798543],[-71.556706571,41.860807542],[-71.55550057,41.861011543],[-71.55504057,41.861061542],[-71.55283957,41.861274542],[-71.550188568,41.861581543],[-71.549088568,41.861695543],[-71.548601568,41.861762543],[-71.548524568,41.861763543],[-71.547901568,41.861840543],[-71.547226568,41.861937543],[-71.546284567,41.861997543],[-71.545431567,41.862111543],[-71.545333567,41.862086543],[-71.542953566,41.862336543],[-71.540035565,41.862807544],[-71.538501565,41.863012543],[-71.537822565,41.863158544],[-71.535954564,41.863315544],[-71.535296564,41.863398543],[-71.534883564,41.863451544],[-71.534691563,41.863476543],[-71.533216563,41.863655544],[-71.531483563,41.863871544],[-71.530768562,41.863962543],[-71.530594562,41.863982543],[-71.529984562,41.864075544],[-71.529617562,41.864112544],[-71.529601562,41.864113544],[-71.529126562,41.864177544],[-71.527790561,41.864393544],[-71.527679561,41.864411544],[-71.52325956,41.865081544],[-71.52302356,41.865116544],[-71.52300856,41.865118544],[-71.520349559,41.865517545],[-71.517105558,41.866006545],[-71.516605558,41.866106544],[-71.515281557,41.866280545],[-71.515110557,41.866313545],[-71.514582557,41.866385545],[-71.513775557,41.866495545],[-71.513321557,41.866558545],[-71.513176557,41.866562545],[-71.513046556,41.866581545],[-71.512924557,41.866608545],[-71.512550556,41.866642545],[-71.508976555,41.867150545],[-71.508090555,41.867280545],[-71.508064555,41.867314546],[-71.507941555,41.867516545],[-71.507736555,41.867852545],[-71.507301555,41.868508546],[-71.507614555,41.868615546],[-71.507446556,41.868889546],[-71.507216555,41.869240546],[-71.507088555,41.869435546],[-71.506874555,41.869782546],[-71.506691555,41.870060546],[-71.506653555,41.870125546],[-71.506187555,41.870842546],[-71.506106555,41.870972546],[-71.505997555,41.871148546],[-71.505844555,41.871384546],[-71.505669555,41.871697546],[-71.505577554,41.871884546],[-71.505516555,41.872044546],[-71.505440554,41.872280546],[-71.505363554,41.872559547],[-71.505336555,41.872644546],[-71.505287554,41.872803546],[-71.504967555,41.873913546],[-71.504898554,41.874089546],[-71.505173555,41.874211547],[-71.505287554,41.874333547],[-71.505393918,41.874341263],[-71.50548578,41.874299436],[-71.506224912,41.874445775],[-71.506688151,41.874585265],[-71.507223362,41.874748816],[-71.507282773,41.874764235],[-71.507162783,41.874794044],[-71.50748401,41.875678768],[-71.507677389,41.875656485],[-71.508372895,41.875576821],[-71.508328251,41.875359795],[-71.508472884,41.875343092],[-71.509199367,41.87525992],[-71.50934284,41.875236454],[-71.509705879,41.875195372],[-71.510056697,41.876926685],[-71.510408023,41.876849138],[-71.510579513,41.876938605],[-71.510969184,41.877156642],[-71.511482917,41.877427537],[-71.511765938,41.877579292],[-71.51191114,41.877657157],[-71.512262176,41.878104469],[-71.513104289,41.878394234],[-71.513114885,41.878397911],[-71.513608951,41.878569304],[-71.514018095,41.878761462],[-71.514076205,41.878785059],[-71.514241408,41.878868474],[-71.514474843,41.879000104],[-71.514650463,41.879125956],[-71.514728558,41.879309547],[-71.514770558,41.879372548],[-71.514804558,41.879442548],[-71.514823558,41.879518548],[-71.514830558,41.879583547],[-71.514860558,41.879623547],[-71.514928558,41.879668547],[-71.515004558,41.879675548],[-71.515536559,41.879780547],[-71.515671559,41.880173547],[-71.515907559,41.880768548],[-71.516174559,41.881340548],[-71.516411559,41.881802548],[-71.517075559,41.882977548],[-71.517342559,41.883458548],[-71.51787656,41.884365548],[-71.518700559,41.885834549]]]]}}"}, +{"type": "precinct", "typeId": 3104, "areaId": 25959, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":298,\"NAME\":\"3104\",\"SHAPE_Length\":0.19432426334609,\"SHAPE_Area\":-0.0016848393860044},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.541270567,41.884969548],[-71.541367567,41.885106548],[-71.541512567,41.885296548],[-71.541916567,41.885891548],[-71.542038567,41.886082548],[-71.542122567,41.886280548],[-71.542175567,41.886456548],[-71.542191567,41.886662548],[-71.542175567,41.886868548],[-71.542007567,41.887448548],[-71.541885567,41.887814548],[-71.541786567,41.888127548],[-71.541588567,41.888569549],[-71.541557567,41.888615548],[-71.541351567,41.888966549],[-71.541168567,41.889294548],[-71.541100566,41.889466549],[-71.541077567,41.889660549],[-71.541084567,41.889874549],[-71.541115567,41.890137549],[-71.541176567,41.890442549],[-71.541229567,41.890789549],[-71.541473567,41.892235549],[-71.541519567,41.892434549],[-71.541573567,41.892628549],[-71.541641568,41.892815549],[-71.541801567,41.893118549],[-71.541870567,41.893250549],[-71.542046567,41.893517549],[-71.542236567,41.893845549],[-71.542488567,41.894257549],[-71.542648568,41.894532549],[-71.543106568,41.895279549],[-71.543602568,41.89606555],[-71.543861568,41.89651955],[-71.544090568,41.89685555],[-71.544189568,41.89706155],[-71.544281568,41.89729355],[-71.544304568,41.89753855],[-71.544266568,41.89774055],[-71.544403568,41.89774455],[-71.544586569,41.89779355],[-71.544762569,41.89791955],[-71.544899569,41.89809155],[-71.544986568,41.89819355],[-71.545097569,41.89832355],[-71.545235568,41.89852255],[-71.545350569,41.89862955],[-71.545351569,41.89888155],[-71.545278569,41.89903655],[-71.545192569,41.89914655],[-71.545118568,41.89926555],[-71.544996569,41.899374551],[-71.544934569,41.89951155],[-71.544899569,41.899617551],[-71.544990569,41.899702551],[-71.545364569,41.899675551],[-71.545649569,41.89952755],[-71.545725569,41.89941955],[-71.545852569,41.89928355],[-71.545901569,41.89916455],[-71.546158569,41.89902555],[-71.546273569,41.89907855],[-71.546244569,41.89912455],[-71.546302569,41.89916655],[-71.546342569,41.89922555],[-71.546354569,41.89928155],[-71.546354569,41.89934055],[-71.546279569,41.89962255],[-71.546252569,41.89968355],[-71.546250569,41.899744551],[-71.546259569,41.89980655],[-71.546285569,41.899860551],[-71.546340569,41.89990255],[-71.546412569,41.89992255],[-71.546512569,41.899919551],[-71.546580569,41.899900551],[-71.54665357,41.89991155],[-71.546727569,41.89994055],[-71.546780569,41.89998255],[-71.546931569,41.90003255],[-71.547058569,41.900094551],[-71.54713757,41.90011655],[-71.547205569,41.90014555],[-71.547210569,41.90016755],[-71.54719557,41.90023655],[-71.547116569,41.90033455],[-71.54706357,41.90037855],[-71.547026569,41.900434551],[-71.546991569,41.900552551],[-71.546932569,41.90058655],[-71.546794569,41.90063355],[-71.546740569,41.900660551],[-71.546705569,41.90072255],[-71.546681569,41.900787551],[-71.546686569,41.900841551],[-71.546664569,41.900870551],[-71.546588569,41.900855551],[-71.54651757,41.900835551],[-71.546466569,41.900794551],[-71.546429569,41.90074155],[-71.546364569,41.90071255],[-71.546294569,41.900738551],[-71.546215569,41.90075055],[-71.546151569,41.900784551],[-71.546131569,41.90081955],[-71.546121569,41.901008551],[-71.546096569,41.901128551],[-71.546071569,41.901322551],[-71.545987569,41.901494551],[-71.545856569,41.901556551],[-71.545793569,41.901744551],[-71.545995569,41.901844551],[-71.546022569,41.901898551],[-71.546122569,41.901928551],[-71.546223569,41.901932551],[-71.546286569,41.901943551],[-71.54630257,41.902015551],[-71.546307569,41.902069551],[-71.546425569,41.902378551],[-71.546454569,41.902510551],[-71.546493569,41.902638551],[-71.54651857,41.902719551],[-71.546588569,41.903044551],[-71.546655569,41.903328551],[-71.546801569,41.903519551],[-71.547088569,41.903781551],[-71.54727957,41.903931551],[-71.54730957,41.903983551],[-71.54746757,41.904098551],[-71.547517569,41.904150551],[-71.547594569,41.904244551],[-71.54765957,41.904341551],[-71.54767957,41.904378551],[-71.54769657,41.904434551],[-71.54770957,41.904592551],[-71.54769857,41.904638551],[-71.54756657,41.904618551],[-71.54742357,41.904621551],[-71.54723057,41.904610551],[-71.54706557,41.904507551],[-71.546877569,41.904370551],[-71.546835569,41.904351551],[-71.54663557,41.904318551],[-71.546390569,41.904233551],[-71.545975569,41.904166551],[-71.545606569,41.904072551],[-71.545587569,41.904111551],[-71.545761569,41.904261551],[-71.546004569,41.904407551],[-71.54632157,41.904547551],[-71.546564569,41.904688551],[-71.54686057,41.904869551],[-71.54690457,41.905104551],[-71.546933569,41.905195551],[-71.54699557,41.905328552],[-71.54722357,41.905518551],[-71.54796957,41.905985552],[-71.54799457,41.906025551],[-71.54814057,41.906126552],[-71.54830557,41.906162551],[-71.54840657,41.906221551],[-71.54847057,41.906252552],[-71.54850457,41.906297552],[-71.54851957,41.906413552],[-71.54853457,41.906482551],[-71.54853857,41.906541551],[-71.54855657,41.906602552],[-71.548584571,41.906669552],[-71.548681571,41.906763552],[-71.54881157,41.906867552],[-71.548854571,41.906911551],[-71.548894571,41.906963552],[-71.548995571,41.907071552],[-71.549088571,41.907157552],[-71.54915357,41.907194552],[-71.54921857,41.907222552],[-71.549422571,41.907344552],[-71.549473571,41.907394552],[-71.54970057,41.907528552],[-71.549754571,41.907571552],[-71.549811571,41.907607552],[-71.549880571,41.907644552],[-71.54993757,41.907668552],[-71.549957571,41.907722552],[-71.550003571,41.907785552],[-71.550026571,41.907856552],[-71.550094571,41.907984552],[-71.550097571,41.908057552],[-71.550138571,41.908252552],[-71.550189571,41.908370552],[-71.550220571,41.908422552],[-71.550276571,41.908489552],[-71.550327571,41.908540552],[-71.550358571,41.908590552],[-71.550343571,41.908726552],[-71.550303571,41.908837552],[-71.550296571,41.908909552],[-71.550272571,41.908962552],[-71.550288571,41.909029552],[-71.550386571,41.909205552],[-71.550398571,41.909265552],[-71.550409571,41.909519552],[-71.550443571,41.909587552],[-71.550612571,41.909783552],[-71.550631571,41.909840552],[-71.550634571,41.909902552],[-71.550619571,41.909956552],[-71.550584571,41.910014552],[-71.550584571,41.910085552],[-71.550597571,41.910143552],[-71.550635571,41.910193552],[-71.550666571,41.910247552],[-71.550718571,41.910300552],[-71.550702571,41.910366552],[-71.550683571,41.910405552],[-71.550607571,41.910402552],[-71.550433571,41.910341552],[-71.550356571,41.910310552],[-71.550200571,41.910268552],[-71.550128571,41.910262552],[-71.550097571,41.910290552],[-71.550070571,41.910351552],[-71.550001571,41.910393552],[-71.549914571,41.910386552],[-71.549829571,41.910351552],[-71.549791571,41.910323553],[-71.549774571,41.910310552],[-71.549727571,41.910310552],[-71.549634571,41.910338552],[-71.54954457,41.910385552],[-71.54948857,41.910419552],[-71.549461571,41.910472552],[-71.549395571,41.910574552],[-71.549302571,41.910604553],[-71.54923557,41.910641552],[-71.549222571,41.910665553],[-71.549244571,41.910723553],[-71.549295571,41.910786552],[-71.54935157,41.910841553],[-71.54941057,41.910890552],[-71.549462571,41.910942552],[-71.549484571,41.910964553],[-71.549533571,41.911021552],[-71.549573571,41.911080553],[-71.549645571,41.911134552],[-71.549805571,41.911204552],[-71.549867571,41.911242552],[-71.550035571,41.911315553],[-71.550158571,41.911381552],[-71.550244571,41.911398552],[-71.550328571,41.911408552],[-71.550517571,41.911413553],[-71.550605571,41.911429552],[-71.550649571,41.911456552],[-71.550663571,41.911531553],[-71.550665571,41.911591553],[-71.550687571,41.911721552],[-71.550620571,41.911756553],[-71.550583571,41.911815553],[-71.550557571,41.911873553],[-71.550538571,41.912014553],[-71.550534571,41.912078553],[-71.550542571,41.912155553],[-71.550567571,41.912279553],[-71.550605571,41.912350553],[-71.550649571,41.912401553],[-71.550708571,41.912441553],[-71.550759571,41.912494553],[-71.550814571,41.912530553],[-71.550887571,41.912556553],[-71.551084571,41.912594553],[-71.551183571,41.912594553],[-71.551266571,41.912600553],[-71.551351572,41.912627553],[-71.551423571,41.912644553],[-71.551588572,41.912691553],[-71.551737572,41.912699553],[-71.551807571,41.912720553],[-71.551926571,41.912736553],[-71.552000572,41.912735553],[-71.552152572,41.912668553],[-71.552299572,41.912634553],[-71.552354572,41.912602553],[-71.552374572,41.912591553],[-71.552528571,41.912570553],[-71.552595572,41.912539553],[-71.552659572,41.912490553],[-71.552713572,41.912406553],[-71.552794572,41.912388553],[-71.552868572,41.912401553],[-71.553031572,41.912405553],[-71.553138572,41.912429553],[-71.553182572,41.912449553],[-71.553269572,41.912556553],[-71.553377572,41.912730553],[-71.553497572,41.912839553],[-71.553542572,41.912887553],[-71.553597573,41.913060553],[-71.553606572,41.913127553],[-71.553632572,41.913177553],[-71.553639572,41.913359553],[-71.553699572,41.913424553],[-71.553790573,41.913583553],[-71.553812572,41.913643553],[-71.553840572,41.913696553],[-71.553850573,41.913755553],[-71.553850573,41.913817553],[-71.553812572,41.913964553],[-71.553789573,41.914026553],[-71.553786572,41.914086553],[-71.553821572,41.914114553],[-71.553896572,41.914088553],[-71.553950572,41.914052553],[-71.554033572,41.913939553],[-71.554104573,41.913859553],[-71.554174572,41.913872553],[-71.554248572,41.913892553],[-71.554318573,41.913917553],[-71.554402572,41.913917553],[-71.554547573,41.913932553],[-71.554561572,41.914032553],[-71.554569573,41.914158553],[-71.554574573,41.914123553],[-71.554603573,41.914052553],[-71.554626573,41.913982553],[-71.554626573,41.914063553],[-71.554697572,41.914241553],[-71.554764573,41.914410553],[-71.554993573,41.914620553],[-71.555176573,41.914845553],[-71.555435573,41.915116553],[-71.555779573,41.915425553],[-71.556107573,41.915734553],[-71.556274573,41.915951553],[-71.556305574,41.916115553],[-71.556259573,41.916382553],[-71.556213573,41.916546553],[-71.556160573,41.916729554],[-71.556129573,41.916954554],[-71.556091574,41.917492553],[-71.556107573,41.917763554],[-71.556381574,41.918534553],[-71.556419574,41.918755554],[-71.556419574,41.918930554],[-71.556404574,41.919373554],[-71.556511573,41.919545554],[-71.556717574,41.919735554],[-71.556969574,41.919987554],[-71.557083574,41.920193554],[-71.557205574,41.920460554],[-71.557320574,41.920605554],[-71.557541574,41.920697554],[-71.557861574,41.920819554],[-71.558311574,41.921048554],[-71.558430574,41.921099554],[-71.558838575,41.921276554],[-71.559593575,41.921662554],[-71.559883575,41.921799554],[-71.560226575,41.921971554],[-71.560562575,41.922131554],[-71.560814575,41.922211554],[-71.561035575,41.922226554],[-71.561124576,41.922229554],[-71.561455576,41.922238554],[-71.561737575,41.922284554],[-71.561882576,41.922352554],[-71.561981576,41.922474554],[-71.562119576,41.922707555],[-71.562294576,41.923054554],[-71.562386576,41.923203555],[-71.562500576,41.923233555],[-71.562668576,41.923222555],[-71.562843576,41.923237554],[-71.563019576,41.923283555],[-71.563201576,41.923352554],[-71.563354576,41.923409555],[-71.563698576,41.923466555],[-71.563751576,41.923478555],[-71.563850576,41.923535555],[-71.563904576,41.923642555],[-71.563901576,41.923797555],[-71.563896576,41.924042555],[-71.563904576,41.924225555],[-71.563980576,41.924374555],[-71.564140576,41.924504555],[-71.564301577,41.924572555],[-71.564468576,41.924637555],[-71.564659576,41.924752555],[-71.564835576,41.924904555],[-71.565231577,41.925259555],[-71.565308577,41.925385555],[-71.565361576,41.925564555],[-71.565414577,41.925705555],[-71.565514577,41.925793555],[-71.565674577,41.925862555],[-71.565903577,41.925892555],[-71.566246577,41.925877555],[-71.566597577,41.925869555],[-71.566841577,41.925854555],[-71.566940577,41.925862555],[-71.567039577,41.925888555],[-71.567307578,41.926041555],[-71.567635578,41.926251555],[-71.567924578,41.926419555],[-71.568199578,41.926575555],[-71.568359578,41.926686555],[-71.568443578,41.926815555],[-71.568535578,41.927029555],[-71.568619578,41.927113555],[-71.568756578,41.927182555],[-71.569008578,41.927224555],[-71.569305578,41.927258555],[-71.569565578,41.927300555],[-71.569916579,41.927391555],[-71.570175578,41.927468555],[-71.570351579,41.927571555],[-71.570564579,41.927723555],[-71.570786579,41.927899555],[-71.571251579,41.928303555],[-71.571564579,41.928532555],[-71.571831579,41.928700555],[-71.572227579,41.928883555],[-71.572617579,41.929032555],[-71.57302158,41.929146555],[-71.573280579,41.929207555],[-71.573570579,41.929245555],[-71.573883579,41.929245555],[-71.57411258,41.929230555],[-71.57432658,41.929207555],[-71.57456058,41.929190555],[-71.57458558,41.929188555],[-71.57478358,41.929215555],[-71.57495158,41.929280555],[-71.57506658,41.929421555],[-71.57515758,41.929795555],[-71.57521858,41.929909555],[-71.57533358,41.930054555],[-71.57550058,41.930191555],[-71.57569958,41.930313555],[-71.57597458,41.930428556],[-71.576317581,41.930527556],[-71.576729581,41.930607555],[-71.577103581,41.930687555],[-71.577176581,41.930709555],[-71.577766581,41.930886556],[-71.578125581,41.930973556],[-71.578392581,41.931042556],[-71.578621581,41.931042556],[-71.578926582,41.931034556],[-71.579102582,41.931080556],[-71.579239582,41.931157555],[-71.579361582,41.931252555],[-71.579514582,41.931359555],[-71.579681582,41.931439555],[-71.579933582,41.931492556],[-71.580223582,41.931546555],[-71.580460582,41.931584555],[-71.580734582,41.931641555],[-71.581047582,41.931698555],[-71.581741583,41.931794556],[-71.582108583,41.931839556],[-71.582397583,41.931889556],[-71.582558583,41.931950556],[-71.582703583,41.932053556],[-71.582840583,41.932209556],[-71.583076583,41.932526556],[-71.583237583,41.932732555],[-71.583405583,41.932892556],[-71.583611583,41.933064556],[-71.583847583,41.933197556],[-71.584030583,41.933312556],[-71.584290584,41.933442556],[-71.584915584,41.933773556],[-71.585175583,41.933949556],[-71.585373584,41.934101556],[-71.585564584,41.934273556],[-71.585707584,41.934414556],[-71.585808584,41.934406556],[-71.590108585,41.934106556],[-71.588871585,41.927439554],[-71.588205584,41.924516553],[-71.588113584,41.924052554],[-71.587544584,41.921219553],[-71.587542584,41.921179553],[-71.587508584,41.921006553],[-71.587708584,41.920406553],[-71.587566584,41.919700553],[-71.586610583,41.914969552],[-71.584613582,41.90508155],[-71.584505582,41.90454555],[-71.583601581,41.900069549],[-71.583572582,41.899940549],[-71.583255581,41.898538548],[-71.583301582,41.898474549],[-71.583078581,41.897478549],[-71.582500581,41.894968548],[-71.582167581,41.893391548],[-71.58074558,41.886741546],[-71.58072258,41.886636547],[-71.58070058,41.886530546],[-71.58029458,41.884634546],[-71.579994579,41.884709546],[-71.57975058,41.884762546],[-71.57949858,41.884838546],[-71.579193579,41.884922547],[-71.578857579,41.885025546],[-71.578560579,41.885079547],[-71.578419579,41.885085546],[-71.578293579,41.885090546],[-71.578087579,41.885056547],[-71.577827579,41.884968546],[-71.577606579,41.884865546],[-71.577255579,41.884655546],[-71.577057579,41.884476546],[-71.576912578,41.884289546],[-71.576790578,41.884114546],[-71.576630579,41.883976546],[-71.576447578,41.883919546],[-71.576218578,41.883915546],[-71.575920578,41.883934546],[-71.575600578,41.883976546],[-71.575310578,41.884045547],[-71.575027578,41.884152546],[-71.574654578,41.884274547],[-71.574356577,41.884365546],[-71.574150578,41.884423546],[-71.573730578,41.884510547],[-71.572792577,41.884678546],[-71.572335577,41.884775546],[-71.571831577,41.884877547],[-71.571037577,41.885025546],[-71.570763576,41.885060547],[-71.570549576,41.885067546],[-71.570236576,41.885079547],[-71.569870576,41.885079547],[-71.569527576,41.885090547],[-71.568672576,41.885109547],[-71.567780576,41.885113547],[-71.567650575,41.885109547],[-71.567459575,41.885064546],[-71.567238575,41.884987546],[-71.567032575,41.884873547],[-71.566750575,41.884682547],[-71.566406575,41.884480546],[-71.565796575,41.884091546],[-71.565422575,41.883862547],[-71.565071575,41.883625546],[-71.564720575,41.883408546],[-71.564415574,41.883210546],[-71.564178574,41.883088547],[-71.563916574,41.882965546],[-71.563599574,41.882817546],[-71.563240574,41.882664546],[-71.562965574,41.882534546],[-71.562698574,41.882401546],[-71.562309574,41.882199546],[-71.561951574,41.882004546],[-71.561600573,41.881791546],[-71.561310573,41.881604546],[-71.560989573,41.881382546],[-71.560677573,41.881142546],[-71.560349573,41.880856546],[-71.560104573,41.880631546],[-71.559471572,41.879940546],[-71.559212573,41.879647546],[-71.558937572,41.879349546],[-71.558693572,41.879074545],[-71.558479572,41.878830546],[-71.558151572,41.878472545],[-71.557953572,41.878250546],[-71.557701572,41.877953546],[-71.557449571,41.877678546],[-71.557053572,41.877259545],[-71.556709571,41.876873545],[-71.556320571,41.876469545],[-71.555763571,41.875847545],[-71.555435571,41.875431545],[-71.554955571,41.874802545],[-71.554749571,41.874554545],[-71.554722571,41.874527545],[-71.55450557,41.874528545],[-71.55438857,41.874530545],[-71.55430957,41.874547545],[-71.55417357,41.874592545],[-71.55398457,41.874637545],[-71.55387457,41.874654545],[-71.55376857,41.874690545],[-71.55368757,41.874732545],[-71.55361157,41.874784545],[-71.55355057,41.874832545],[-71.55348957,41.874873545],[-71.55341557,41.874988545],[-71.55336457,41.875033545],[-71.55325157,41.875093546],[-71.55314857,41.875158545],[-71.55310457,41.875202545],[-71.55305257,41.875245545],[-71.55291157,41.875331545],[-71.55277457,41.875392545],[-71.55268957,41.875421546],[-71.55262357,41.875450545],[-71.55246957,41.875529545],[-71.55239657,41.875571545],[-71.55227357,41.875623545],[-71.55219757,41.875650545],[-71.55196257,41.875751546],[-71.55172857,41.875852546],[-71.551559569,41.875919545],[-71.55146857,41.875948546],[-71.55137857,41.875984546],[-71.551188569,41.876039545],[-71.550998569,41.876107546],[-71.550700569,41.876247545],[-71.550643569,41.876286545],[-71.550541569,41.876342546],[-71.550347569,41.876424545],[-71.55028457,41.876453546],[-71.550142569,41.876496546],[-71.549913569,41.876584545],[-71.549888569,41.876615546],[-71.549307569,41.877544546],[-71.548659569,41.878595546],[-71.548043569,41.879360546],[-71.547861569,41.879366546],[-71.547803569,41.879409546],[-71.547765569,41.879460547],[-71.547742569,41.879516546],[-71.547692569,41.879578547],[-71.547658568,41.879645546],[-71.547603568,41.879704546],[-71.547527569,41.879753547],[-71.547447568,41.879791547],[-71.547364569,41.879819546],[-71.547228569,41.879831547],[-71.547148569,41.879849547],[-71.547064569,41.879888547],[-71.546830569,41.879972546],[-71.546792569,41.880021546],[-71.546741568,41.880065547],[-71.546684568,41.880126546],[-71.546532568,41.880335547],[-71.546451568,41.880403546],[-71.546373568,41.880442546],[-71.546324568,41.880485546],[-71.546222568,41.880602546],[-71.546194568,41.880655546],[-71.546200568,41.880796546],[-71.546265568,41.880837546],[-71.546350568,41.880875546],[-71.546343568,41.880959547],[-71.546330568,41.881024546],[-71.546325569,41.881079547],[-71.546313568,41.881124546],[-71.546336568,41.881182546],[-71.546359568,41.881297546],[-71.546361568,41.881354547],[-71.546338568,41.881401547],[-71.546374568,41.881457546],[-71.546383569,41.881544547],[-71.546383569,41.881619547],[-71.546378568,41.881686547],[-71.546344569,41.881745546],[-71.546277568,41.881808546],[-71.546215568,41.881841547],[-71.546112568,41.881868547],[-71.546011568,41.881881547],[-71.545058568,41.881885546],[-71.544825568,41.881877547],[-71.544739568,41.881878547],[-71.544680568,41.881831547],[-71.544621568,41.881796547],[-71.544551568,41.881737547],[-71.544492568,41.881705547],[-71.544397568,41.881697547],[-71.544314568,41.881680547],[-71.544262568,41.881679547],[-71.544013567,41.881756547],[-71.543948567,41.881784546],[-71.543880567,41.881824546],[-71.543802567,41.881848547],[-71.543588567,41.881881547],[-71.543467567,41.881911547],[-71.543428567,41.881931547],[-71.543399568,41.881987547],[-71.543389567,41.882044547],[-71.543389567,41.882113547],[-71.543379568,41.882170547],[-71.543337567,41.882233546],[-71.543248567,41.882279547],[-71.543195567,41.882317547],[-71.543090567,41.882354547],[-71.542999567,41.882380547],[-71.542942567,41.882426547],[-71.542821567,41.882494547],[-71.542758567,41.882541547],[-71.542659567,41.882606547],[-71.542613567,41.882653547],[-71.542360567,41.882731547],[-71.542286567,41.882740547],[-71.541979567,41.882741547],[-71.541820567,41.882777547],[-71.541801567,41.882831547],[-71.541765567,41.882879547],[-71.541702567,41.882907547],[-71.541558567,41.882941547],[-71.541465567,41.882950547],[-71.541392567,41.882981547],[-71.541316567,41.883027547],[-71.541278567,41.883088547],[-71.541263567,41.883155547],[-71.541277567,41.883225548],[-71.541305567,41.883275547],[-71.541310567,41.883323548],[-71.541242566,41.883519547],[-71.541241567,41.883580547],[-71.541208567,41.883649547],[-71.541195567,41.883710547],[-71.541197567,41.883973547],[-71.541212567,41.884211547],[-71.541221567,41.884271547],[-71.541282567,41.884380547],[-71.541310567,41.884524547],[-71.541350567,41.884664548],[-71.541385567,41.884836547],[-71.541391567,41.884889547],[-71.541329567,41.884923548],[-71.541270567,41.884969548]]]]}}"}, +{"type": "precinct", "typeId": 3105, "areaId": 26079, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":418,\"NAME\":\"3105\",\"SHAPE_Length\":0.14678039097088,\"SHAPE_Area\":-0.00059924901558004},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.541270567,41.884969548],[-71.541329567,41.884923548],[-71.541391567,41.884889547],[-71.541385567,41.884836547],[-71.541350567,41.884664548],[-71.541310567,41.884524547],[-71.541282567,41.884380547],[-71.541221567,41.884271547],[-71.541212567,41.884211547],[-71.541197567,41.883973547],[-71.541195567,41.883710547],[-71.541208567,41.883649547],[-71.541241567,41.883580547],[-71.541242566,41.883519547],[-71.541310567,41.883323548],[-71.541305567,41.883275547],[-71.541277567,41.883225548],[-71.541263567,41.883155547],[-71.541278567,41.883088547],[-71.541316567,41.883027547],[-71.541392567,41.882981547],[-71.541465567,41.882950547],[-71.541558567,41.882941547],[-71.541702567,41.882907547],[-71.541765567,41.882879547],[-71.541801567,41.882831547],[-71.541820567,41.882777547],[-71.541979567,41.882741547],[-71.542286567,41.882740547],[-71.542360567,41.882731547],[-71.542613567,41.882653547],[-71.542659567,41.882606547],[-71.542758567,41.882541547],[-71.542821567,41.882494547],[-71.542942567,41.882426547],[-71.542999567,41.882380547],[-71.543090567,41.882354547],[-71.543195567,41.882317547],[-71.543248567,41.882279547],[-71.543337567,41.882233546],[-71.543379568,41.882170547],[-71.543389567,41.882113547],[-71.543389567,41.882044547],[-71.543399568,41.881987547],[-71.543428567,41.881931547],[-71.543467567,41.881911547],[-71.543588567,41.881881547],[-71.543802567,41.881848547],[-71.543880567,41.881824546],[-71.543948567,41.881784546],[-71.544013567,41.881756547],[-71.544262568,41.881679547],[-71.544314568,41.881680547],[-71.544397568,41.881697547],[-71.544492568,41.881705547],[-71.544551568,41.881737547],[-71.544621568,41.881796547],[-71.544680568,41.881831547],[-71.544739568,41.881878547],[-71.544825568,41.881877547],[-71.545058568,41.881885546],[-71.546011568,41.881881547],[-71.546112568,41.881868547],[-71.546215568,41.881841547],[-71.546277568,41.881808546],[-71.546344569,41.881745546],[-71.546378568,41.881686547],[-71.546383569,41.881619547],[-71.546383569,41.881544547],[-71.546374568,41.881457546],[-71.546338568,41.881401547],[-71.546361568,41.881354547],[-71.546359568,41.881297546],[-71.546336568,41.881182546],[-71.546313568,41.881124546],[-71.546325569,41.881079547],[-71.546330568,41.881024546],[-71.546343568,41.880959547],[-71.546350568,41.880875546],[-71.546265568,41.880837546],[-71.546200568,41.880796546],[-71.546194568,41.880655546],[-71.546222568,41.880602546],[-71.546324568,41.880485546],[-71.546373568,41.880442546],[-71.546451568,41.880403546],[-71.546532568,41.880335547],[-71.546684568,41.880126546],[-71.546741568,41.880065547],[-71.546792569,41.880021546],[-71.546830569,41.879972546],[-71.547064569,41.879888547],[-71.547148569,41.879849547],[-71.547228569,41.879831547],[-71.547364569,41.879819546],[-71.547447568,41.879791547],[-71.547527569,41.879753547],[-71.547603568,41.879704546],[-71.547658568,41.879645546],[-71.547692569,41.879578547],[-71.547742569,41.879516546],[-71.547765569,41.879460547],[-71.547803569,41.879409546],[-71.547861569,41.879366546],[-71.548043569,41.879360546],[-71.548659569,41.878595546],[-71.549307569,41.877544546],[-71.549888569,41.876615546],[-71.549913569,41.876584545],[-71.550142569,41.876496546],[-71.55028457,41.876453546],[-71.550347569,41.876424545],[-71.550541569,41.876342546],[-71.550643569,41.876286545],[-71.550700569,41.876247545],[-71.550998569,41.876107546],[-71.551188569,41.876039545],[-71.55137857,41.875984546],[-71.55146857,41.875948546],[-71.551559569,41.875919545],[-71.55172857,41.875852546],[-71.55196257,41.875751546],[-71.55219757,41.875650545],[-71.55227357,41.875623545],[-71.55239657,41.875571545],[-71.55246957,41.875529545],[-71.55262357,41.875450545],[-71.55268957,41.875421546],[-71.55277457,41.875392545],[-71.55291157,41.875331545],[-71.55305257,41.875245545],[-71.55310457,41.875202545],[-71.55314857,41.875158545],[-71.55325157,41.875093546],[-71.55336457,41.875033545],[-71.55341557,41.874988545],[-71.55348957,41.874873545],[-71.55355057,41.874832545],[-71.55361157,41.874784545],[-71.55368757,41.874732545],[-71.55376857,41.874690545],[-71.55387457,41.874654545],[-71.55398457,41.874637545],[-71.55417357,41.874592545],[-71.55430957,41.874547545],[-71.55438857,41.874530545],[-71.55450557,41.874528545],[-71.554722571,41.874527545],[-71.554749571,41.874554545],[-71.554955571,41.874802545],[-71.555435571,41.875431545],[-71.555763571,41.875847545],[-71.556320571,41.876469545],[-71.556709571,41.876873545],[-71.557053572,41.877259545],[-71.557449571,41.877678546],[-71.557701572,41.877953546],[-71.557953572,41.878250546],[-71.558151572,41.878472545],[-71.558479572,41.878830546],[-71.558693572,41.879074545],[-71.558937572,41.879349546],[-71.559212573,41.879647546],[-71.559471572,41.879940546],[-71.560104573,41.880631546],[-71.560349573,41.880856546],[-71.560677573,41.881142546],[-71.560989573,41.881382546],[-71.561310573,41.881604546],[-71.561600573,41.881791546],[-71.561951574,41.882004546],[-71.562309574,41.882199546],[-71.562698574,41.882401546],[-71.562965574,41.882534546],[-71.563240574,41.882664546],[-71.563599574,41.882817546],[-71.563916574,41.882965546],[-71.564178574,41.883088547],[-71.564415574,41.883210546],[-71.564720575,41.883408546],[-71.565071575,41.883625546],[-71.565422575,41.883862547],[-71.565796575,41.884091546],[-71.566406575,41.884480546],[-71.566750575,41.884682547],[-71.567032575,41.884873547],[-71.567238575,41.884987546],[-71.567459575,41.885064546],[-71.567650575,41.885109547],[-71.567780576,41.885113547],[-71.568672576,41.885109547],[-71.569527576,41.885090547],[-71.569870576,41.885079547],[-71.570236576,41.885079547],[-71.570549576,41.885067546],[-71.570763576,41.885060547],[-71.571037577,41.885025546],[-71.571831577,41.884877547],[-71.572335577,41.884775546],[-71.572792577,41.884678546],[-71.573730578,41.884510547],[-71.574150578,41.884423546],[-71.574356577,41.884365546],[-71.574654578,41.884274547],[-71.575027578,41.884152546],[-71.575310578,41.884045547],[-71.575600578,41.883976546],[-71.575920578,41.883934546],[-71.576218578,41.883915546],[-71.576447578,41.883919546],[-71.576630579,41.883976546],[-71.576790578,41.884114546],[-71.576912578,41.884289546],[-71.577057579,41.884476546],[-71.577255579,41.884655546],[-71.577606579,41.884865546],[-71.577827579,41.884968546],[-71.578087579,41.885056547],[-71.578293579,41.885090546],[-71.578419579,41.885085546],[-71.578560579,41.885079547],[-71.578857579,41.885025546],[-71.579193579,41.884922547],[-71.57949858,41.884838546],[-71.57975058,41.884762546],[-71.579994579,41.884709546],[-71.58029458,41.884634546],[-71.579850579,41.882141546],[-71.579815579,41.881962545],[-71.579726579,41.881522546],[-71.579247579,41.879315545],[-71.578716579,41.876778545],[-71.578407578,41.875307545],[-71.578390578,41.875202544],[-71.578349578,41.874945544],[-71.578258578,41.874656544],[-71.577934578,41.873320544],[-71.577907578,41.873207544],[-71.577783578,41.872773544],[-71.577534578,41.871899544],[-71.577568578,41.871640544],[-71.577575578,41.871395544],[-71.577576578,41.871369544],[-71.577560578,41.871155544],[-71.577321578,41.870078544],[-71.577286578,41.869923544],[-71.577209578,41.869545543],[-71.577190578,41.869473544],[-71.577281577,41.869209543],[-71.576963578,41.867682543],[-71.576945578,41.867595543],[-71.576590578,41.865892542],[-71.576529577,41.865596543],[-71.576096577,41.863517542],[-71.575888577,41.862839542],[-71.575250577,41.859131541],[-71.575107577,41.858607541],[-71.575000576,41.858643541],[-71.573608576,41.858815541],[-71.573700576,41.859078542],[-71.573730577,41.859219542],[-71.573723576,41.859307541],[-71.573586576,41.859795542],[-71.573456577,41.860218541],[-71.573311576,41.860630542],[-71.573029577,41.861534542],[-71.572891576,41.861916542],[-71.572548576,41.862919542],[-71.572403576,41.863289542],[-71.572296576,41.863644543],[-71.572174576,41.864014543],[-71.571999576,41.864319543],[-71.571815576,41.864361543],[-71.571304576,41.864464543],[-71.570862576,41.864548542],[-71.570534575,41.864602543],[-71.570221576,41.864632543],[-71.569725575,41.864663542],[-71.569344575,41.864674543],[-71.568451575,41.864701543],[-71.567139575,41.864750543],[-71.566673574,41.864800542],[-71.566345574,41.864849543],[-71.566261574,41.864861543],[-71.565697574,41.864972543],[-71.565163574,41.865086543],[-71.565094573,41.865106543],[-71.563942573,41.865441543],[-71.561516573,41.866158543],[-71.561150573,41.866269543],[-71.560555572,41.866452544],[-71.560501572,41.866471544],[-71.559975572,41.866623543],[-71.559624572,41.866719543],[-71.559158572,41.866825544],[-71.558876572,41.866879544],[-71.558583571,41.866929543],[-71.558472572,41.866948543],[-71.558067572,41.867024543],[-71.557823571,41.867099544],[-71.557747571,41.867123543],[-71.557549571,41.867196544],[-71.557091571,41.867424544],[-71.556770571,41.867638544],[-71.556587571,41.867813544],[-71.556259571,41.868168544],[-71.556030571,41.868390544],[-71.55569557,41.868653544],[-71.555038571,41.869137544],[-71.554596571,41.869477544],[-71.554244571,41.869738544],[-71.554108571,41.869839544],[-71.55368857,41.870156544],[-71.55326157,41.870488545],[-71.55278057,41.870854544],[-71.55244457,41.871132545],[-71.55226157,41.871277544],[-71.55180457,41.871199544],[-71.55139257,41.871128545],[-71.550995569,41.871067544],[-71.550278569,41.870945544],[-71.549767569,41.870858545],[-71.548958569,41.870724545],[-71.548485568,41.870640545],[-71.547966569,41.870552544],[-71.547722568,41.870514544],[-71.547340568,41.870480544],[-71.546669568,41.870446545],[-71.546120567,41.870434545],[-71.544975567,41.870392545],[-71.543907567,41.870354545],[-71.543175566,41.870320544],[-71.542671566,41.870297545],[-71.542229567,41.870289545],[-71.542046566,41.870278545],[-71.541679566,41.870259545],[-71.541351566,41.870259545],[-71.541046567,41.870232545],[-71.540489566,41.870221544],[-71.539963566,41.870201544],[-71.539185566,41.870156545],[-71.538551565,41.870152545],[-71.538033565,41.870160545],[-71.537781565,41.870156545],[-71.535667564,41.870198545],[-71.535454564,41.870199545],[-71.535042564,41.870201544],[-71.534554564,41.870213545],[-71.534201564,41.870213545],[-71.533951563,41.870213545],[-71.533691564,41.870224545],[-71.532883563,41.870224545],[-71.532112563,41.870217545],[-71.531441563,41.870205545],[-71.530724563,41.870186545],[-71.530792562,41.870724545],[-71.530899563,41.871170545],[-71.531052563,41.871674545],[-71.531189563,41.872197545],[-71.531311563,41.872567545],[-71.531387563,41.872746545],[-71.531509564,41.872967546],[-71.531639563,41.873188545],[-71.531715563,41.873303545],[-71.531891563,41.873532546],[-71.531988563,41.873632546],[-71.532013564,41.873658545],[-71.532188564,41.873822546],[-71.532448564,41.874039546],[-71.532669563,41.874207546],[-71.533514564,41.874832546],[-71.533707564,41.874970546],[-71.534607565,41.875634546],[-71.535469565,41.876255546],[-71.536140565,41.876751546],[-71.536522565,41.877007546],[-71.536888565,41.877213546],[-71.537083565,41.877289546],[-71.537201565,41.877335546],[-71.537521565,41.877438546],[-71.537888565,41.877541547],[-71.538216565,41.877652546],[-71.538467565,41.877777546],[-71.538734566,41.877957546],[-71.538925566,41.878136547],[-71.539108566,41.878353546],[-71.539238566,41.878567546],[-71.539337566,41.878830546],[-71.539421566,41.879212547],[-71.539551566,41.880055547],[-71.539612566,41.880364547],[-71.539688566,41.880593547],[-71.539803566,41.880795547],[-71.540009566,41.881085547],[-71.540253566,41.881379547],[-71.540489566,41.881493547],[-71.540482566,41.881810547],[-71.540489566,41.881863547],[-71.540497566,41.882023547],[-71.540604566,41.882405547],[-71.540764567,41.883057547],[-71.540817566,41.883385547],[-71.540833566,41.883671547],[-71.540855566,41.883950547],[-71.540886567,41.884194547],[-71.540939567,41.884388547],[-71.541061567,41.884636548],[-71.541168567,41.884827548],[-71.541270567,41.884969548]]]]}}"}, +{"type": "precinct", "typeId": 3106, "areaId": 26080, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":419,\"NAME\":\"3106\",\"SHAPE_Length\":0.34435784387391,\"SHAPE_Area\":-0.0032884890811034},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.489225553,41.93897156],[-71.490605554,41.94290656],[-71.490744553,41.943259561],[-71.490719553,41.94330156],[-71.490712553,41.943428561],[-71.490655553,41.94348956],[-71.490602553,41.94353556],[-71.490519553,41.943573561],[-71.490294553,41.94365356],[-71.490148553,41.94369256],[-71.491333553,41.94352456],[-71.491992553,41.94340856],[-71.496301555,41.94297256],[-71.500740557,41.94252456],[-71.501905557,41.94240656],[-71.503104557,41.94220656],[-71.504104557,41.94210656],[-71.504496557,41.94204656],[-71.505138558,41.94194956],[-71.508805559,41.94150656],[-71.51180556,41.941306559],[-71.51207656,41.941275559],[-71.521506563,41.940206559],[-71.526738565,41.939523559],[-71.526979565,41.939492559],[-71.528402565,41.939306558],[-71.538510568,41.938223558],[-71.54239557,41.937807558],[-71.551197573,41.937115558],[-71.551308573,41.937106557],[-71.551971573,41.937065557],[-71.552908573,41.937005557],[-71.554061574,41.936905557],[-71.554154574,41.936903557],[-71.554457573,41.936866557],[-71.555305574,41.936798557],[-71.559964576,41.936461557],[-71.562107576,41.936306557],[-71.563119576,41.936225557],[-71.564698577,41.936089557],[-71.57436958,41.935323557],[-71.585707584,41.934414556],[-71.585564584,41.934273556],[-71.585373584,41.934101556],[-71.585175583,41.933949556],[-71.584915584,41.933773556],[-71.584290584,41.933442556],[-71.584030583,41.933312556],[-71.583847583,41.933197556],[-71.583611583,41.933064556],[-71.583405583,41.932892556],[-71.583237583,41.932732555],[-71.583076583,41.932526556],[-71.582840583,41.932209556],[-71.582703583,41.932053556],[-71.582558583,41.931950556],[-71.582397583,41.931889556],[-71.582108583,41.931839556],[-71.581741583,41.931794556],[-71.581047582,41.931698555],[-71.580734582,41.931641555],[-71.580460582,41.931584555],[-71.580223582,41.931546555],[-71.579933582,41.931492556],[-71.579681582,41.931439555],[-71.579514582,41.931359555],[-71.579361582,41.931252555],[-71.579239582,41.931157555],[-71.579102582,41.931080556],[-71.578926582,41.931034556],[-71.578621581,41.931042556],[-71.578392581,41.931042556],[-71.578125581,41.930973556],[-71.577766581,41.930886556],[-71.577176581,41.930709555],[-71.577103581,41.930687555],[-71.576729581,41.930607555],[-71.576317581,41.930527556],[-71.57597458,41.930428556],[-71.57569958,41.930313555],[-71.57550058,41.930191555],[-71.57533358,41.930054555],[-71.57521858,41.929909555],[-71.57515758,41.929795555],[-71.57506658,41.929421555],[-71.57495158,41.929280555],[-71.57478358,41.929215555],[-71.57458558,41.929188555],[-71.57456058,41.929190555],[-71.57432658,41.929207555],[-71.57411258,41.929230555],[-71.573883579,41.929245555],[-71.573570579,41.929245555],[-71.573280579,41.929207555],[-71.57302158,41.929146555],[-71.572617579,41.929032555],[-71.572227579,41.928883555],[-71.571831579,41.928700555],[-71.571564579,41.928532555],[-71.571251579,41.928303555],[-71.570786579,41.927899555],[-71.570564579,41.927723555],[-71.570351579,41.927571555],[-71.570175578,41.927468555],[-71.569916579,41.927391555],[-71.569565578,41.927300555],[-71.569305578,41.927258555],[-71.569008578,41.927224555],[-71.568756578,41.927182555],[-71.568619578,41.927113555],[-71.568535578,41.927029555],[-71.568443578,41.926815555],[-71.568359578,41.926686555],[-71.568199578,41.926575555],[-71.567924578,41.926419555],[-71.567635578,41.926251555],[-71.567307578,41.926041555],[-71.567039577,41.925888555],[-71.566940577,41.925862555],[-71.566841577,41.925854555],[-71.566597577,41.925869555],[-71.566246577,41.925877555],[-71.565903577,41.925892555],[-71.565674577,41.925862555],[-71.565514577,41.925793555],[-71.565414577,41.925705555],[-71.565361576,41.925564555],[-71.565308577,41.925385555],[-71.565231577,41.925259555],[-71.564835576,41.924904555],[-71.564659576,41.924752555],[-71.564468576,41.924637555],[-71.564301577,41.924572555],[-71.564140576,41.924504555],[-71.563980576,41.924374555],[-71.563904576,41.924225555],[-71.563896576,41.924042555],[-71.563901576,41.923797555],[-71.563904576,41.923642555],[-71.563850576,41.923535555],[-71.563751576,41.923478555],[-71.563698576,41.923466555],[-71.563354576,41.923409555],[-71.563201576,41.923352554],[-71.563019576,41.923283555],[-71.562843576,41.923237554],[-71.562668576,41.923222555],[-71.562500576,41.923233555],[-71.562386576,41.923203555],[-71.562294576,41.923054554],[-71.562119576,41.922707555],[-71.561981576,41.922474554],[-71.561882576,41.922352554],[-71.561737575,41.922284554],[-71.561455576,41.922238554],[-71.561124576,41.922229554],[-71.561035575,41.922226554],[-71.560814575,41.922211554],[-71.560562575,41.922131554],[-71.560226575,41.921971554],[-71.559883575,41.921799554],[-71.559593575,41.921662554],[-71.558838575,41.921276554],[-71.558430574,41.921099554],[-71.558311574,41.921048554],[-71.557861574,41.920819554],[-71.557541574,41.920697554],[-71.557320574,41.920605554],[-71.557205574,41.920460554],[-71.557083574,41.920193554],[-71.556969574,41.919987554],[-71.556717574,41.919735554],[-71.556511573,41.919545554],[-71.556404574,41.919373554],[-71.556419574,41.918930554],[-71.556419574,41.918755554],[-71.556381574,41.918534553],[-71.556107573,41.917763554],[-71.556091574,41.917492553],[-71.556129573,41.916954554],[-71.556160573,41.916729554],[-71.556213573,41.916546553],[-71.556259573,41.916382553],[-71.556305574,41.916115553],[-71.556274573,41.915951553],[-71.556107573,41.915734553],[-71.555779573,41.915425553],[-71.555435573,41.915116553],[-71.555176573,41.914845553],[-71.554993573,41.914620553],[-71.554764573,41.914410553],[-71.554697572,41.914241553],[-71.554626573,41.914063553],[-71.554626573,41.913982553],[-71.554603573,41.914052553],[-71.554574573,41.914123553],[-71.554569573,41.914158553],[-71.554561572,41.914032553],[-71.554547573,41.913932553],[-71.554402572,41.913917553],[-71.554318573,41.913917553],[-71.554248572,41.913892553],[-71.554174572,41.913872553],[-71.554104573,41.913859553],[-71.554033572,41.913939553],[-71.553950572,41.914052553],[-71.553896572,41.914088553],[-71.553821572,41.914114553],[-71.553786572,41.914086553],[-71.553789573,41.914026553],[-71.553812572,41.913964553],[-71.553850573,41.913817553],[-71.553850573,41.913755553],[-71.553840572,41.913696553],[-71.553812572,41.913643553],[-71.553790573,41.913583553],[-71.553699572,41.913424553],[-71.553639572,41.913359553],[-71.553632572,41.913177553],[-71.553606572,41.913127553],[-71.553597573,41.913060553],[-71.553542572,41.912887553],[-71.553497572,41.912839553],[-71.553377572,41.912730553],[-71.553269572,41.912556553],[-71.553182572,41.912449553],[-71.553138572,41.912429553],[-71.553031572,41.912405553],[-71.552868572,41.912401553],[-71.552794572,41.912388553],[-71.552713572,41.912406553],[-71.552659572,41.912490553],[-71.552595572,41.912539553],[-71.552528571,41.912570553],[-71.552374572,41.912591553],[-71.552354572,41.912602553],[-71.552299572,41.912634553],[-71.552152572,41.912668553],[-71.552000572,41.912735553],[-71.551926571,41.912736553],[-71.551807571,41.912720553],[-71.551737572,41.912699553],[-71.551588572,41.912691553],[-71.551423571,41.912644553],[-71.551351572,41.912627553],[-71.551266571,41.912600553],[-71.551183571,41.912594553],[-71.551084571,41.912594553],[-71.550887571,41.912556553],[-71.550814571,41.912530553],[-71.550759571,41.912494553],[-71.550708571,41.912441553],[-71.550649571,41.912401553],[-71.550605571,41.912350553],[-71.550567571,41.912279553],[-71.550542571,41.912155553],[-71.550534571,41.912078553],[-71.550538571,41.912014553],[-71.550557571,41.911873553],[-71.550583571,41.911815553],[-71.550620571,41.911756553],[-71.550687571,41.911721552],[-71.550665571,41.911591553],[-71.550663571,41.911531553],[-71.550649571,41.911456552],[-71.550605571,41.911429552],[-71.550517571,41.911413553],[-71.550328571,41.911408552],[-71.550244571,41.911398552],[-71.550158571,41.911381552],[-71.550035571,41.911315553],[-71.549867571,41.911242552],[-71.549805571,41.911204552],[-71.549645571,41.911134552],[-71.549573571,41.911080553],[-71.549533571,41.911021552],[-71.549484571,41.910964553],[-71.549462571,41.910942552],[-71.54941057,41.910890552],[-71.54935157,41.910841553],[-71.549295571,41.910786552],[-71.549244571,41.910723553],[-71.549222571,41.910665553],[-71.54923557,41.910641552],[-71.549302571,41.910604553],[-71.549395571,41.910574552],[-71.549461571,41.910472552],[-71.54948857,41.910419552],[-71.54954457,41.910385552],[-71.549634571,41.910338552],[-71.549727571,41.910310552],[-71.549774571,41.910310552],[-71.549791571,41.910323553],[-71.549829571,41.910351552],[-71.549914571,41.910386552],[-71.550001571,41.910393552],[-71.550070571,41.910351552],[-71.550097571,41.910290552],[-71.550128571,41.910262552],[-71.550200571,41.910268552],[-71.550356571,41.910310552],[-71.550433571,41.910341552],[-71.550607571,41.910402552],[-71.550683571,41.910405552],[-71.550702571,41.910366552],[-71.550718571,41.910300552],[-71.550666571,41.910247552],[-71.550635571,41.910193552],[-71.550597571,41.910143552],[-71.550584571,41.910085552],[-71.550584571,41.910014552],[-71.550619571,41.909956552],[-71.550634571,41.909902552],[-71.550631571,41.909840552],[-71.550612571,41.909783552],[-71.550443571,41.909587552],[-71.550409571,41.909519552],[-71.550398571,41.909265552],[-71.550386571,41.909205552],[-71.550288571,41.909029552],[-71.550272571,41.908962552],[-71.550296571,41.908909552],[-71.550303571,41.908837552],[-71.550343571,41.908726552],[-71.550358571,41.908590552],[-71.550327571,41.908540552],[-71.550276571,41.908489552],[-71.550220571,41.908422552],[-71.550189571,41.908370552],[-71.550138571,41.908252552],[-71.550097571,41.908057552],[-71.550094571,41.907984552],[-71.550026571,41.907856552],[-71.550003571,41.907785552],[-71.549957571,41.907722552],[-71.54993757,41.907668552],[-71.549880571,41.907644552],[-71.549811571,41.907607552],[-71.549754571,41.907571552],[-71.54970057,41.907528552],[-71.549473571,41.907394552],[-71.549422571,41.907344552],[-71.54921857,41.907222552],[-71.54915357,41.907194552],[-71.549088571,41.907157552],[-71.548995571,41.907071552],[-71.548894571,41.906963552],[-71.548854571,41.906911551],[-71.54881157,41.906867552],[-71.548681571,41.906763552],[-71.548584571,41.906669552],[-71.54855657,41.906602552],[-71.54853857,41.906541551],[-71.54853457,41.906482551],[-71.54851957,41.906413552],[-71.54850457,41.906297552],[-71.54847057,41.906252552],[-71.54840657,41.906221551],[-71.54830557,41.906162551],[-71.54814057,41.906126552],[-71.54799457,41.906025551],[-71.54796957,41.905985552],[-71.54722357,41.905518551],[-71.54699557,41.905328552],[-71.546933569,41.905195551],[-71.54690457,41.905104551],[-71.54686057,41.904869551],[-71.546564569,41.904688551],[-71.54632157,41.904547551],[-71.546004569,41.904407551],[-71.545761569,41.904261551],[-71.545587569,41.904111551],[-71.545606569,41.904072551],[-71.545975569,41.904166551],[-71.546390569,41.904233551],[-71.54663557,41.904318551],[-71.546835569,41.904351551],[-71.546877569,41.904370551],[-71.54706557,41.904507551],[-71.54723057,41.904610551],[-71.54742357,41.904621551],[-71.54756657,41.904618551],[-71.54769857,41.904638551],[-71.54770957,41.904592551],[-71.54769657,41.904434551],[-71.54767957,41.904378551],[-71.54765957,41.904341551],[-71.547594569,41.904244551],[-71.547517569,41.904150551],[-71.54746757,41.904098551],[-71.54730957,41.903983551],[-71.54727957,41.903931551],[-71.547088569,41.903781551],[-71.546801569,41.903519551],[-71.546655569,41.903328551],[-71.546588569,41.903044551],[-71.54651857,41.902719551],[-71.546493569,41.902638551],[-71.546454569,41.902510551],[-71.546425569,41.902378551],[-71.546307569,41.902069551],[-71.54630257,41.902015551],[-71.546286569,41.901943551],[-71.546223569,41.901932551],[-71.546122569,41.901928551],[-71.546022569,41.901898551],[-71.545995569,41.901844551],[-71.545793569,41.901744551],[-71.545856569,41.901556551],[-71.545987569,41.901494551],[-71.546071569,41.901322551],[-71.546096569,41.901128551],[-71.546121569,41.901008551],[-71.546131569,41.90081955],[-71.546151569,41.900784551],[-71.546215569,41.90075055],[-71.546294569,41.900738551],[-71.546364569,41.90071255],[-71.546429569,41.90074155],[-71.546466569,41.900794551],[-71.54651757,41.900835551],[-71.546588569,41.900855551],[-71.546664569,41.900870551],[-71.546686569,41.900841551],[-71.546681569,41.900787551],[-71.546705569,41.90072255],[-71.546740569,41.900660551],[-71.546794569,41.90063355],[-71.546932569,41.90058655],[-71.546991569,41.900552551],[-71.547026569,41.900434551],[-71.54706357,41.90037855],[-71.547116569,41.90033455],[-71.54719557,41.90023655],[-71.547210569,41.90016755],[-71.547205569,41.90014555],[-71.54713757,41.90011655],[-71.547058569,41.900094551],[-71.546931569,41.90003255],[-71.546780569,41.89998255],[-71.546727569,41.89994055],[-71.54665357,41.89991155],[-71.546580569,41.899900551],[-71.546512569,41.899919551],[-71.546412569,41.89992255],[-71.546340569,41.89990255],[-71.546285569,41.899860551],[-71.546259569,41.89980655],[-71.546250569,41.899744551],[-71.546252569,41.89968355],[-71.546279569,41.89962255],[-71.546354569,41.89934055],[-71.546354569,41.89928155],[-71.546342569,41.89922555],[-71.546302569,41.89916655],[-71.546244569,41.89912455],[-71.546273569,41.89907855],[-71.546158569,41.89902555],[-71.545901569,41.89916455],[-71.545852569,41.89928355],[-71.545725569,41.89941955],[-71.545649569,41.89952755],[-71.545364569,41.899675551],[-71.544990569,41.899702551],[-71.544899569,41.899617551],[-71.544934569,41.89951155],[-71.544996569,41.899374551],[-71.545118568,41.89926555],[-71.545192569,41.89914655],[-71.545278569,41.89903655],[-71.545351569,41.89888155],[-71.545350569,41.89862955],[-71.545235568,41.89852255],[-71.545097569,41.89832355],[-71.544986568,41.89819355],[-71.544899569,41.89809155],[-71.544762569,41.89791955],[-71.544586569,41.89779355],[-71.544403568,41.89774455],[-71.544266568,41.89774055],[-71.544304568,41.89753855],[-71.544281568,41.89729355],[-71.544189568,41.89706155],[-71.544090568,41.89685555],[-71.543861568,41.89651955],[-71.543602568,41.89606555],[-71.543106568,41.895279549],[-71.542648568,41.894532549],[-71.542488567,41.894257549],[-71.542236567,41.893845549],[-71.542046567,41.893517549],[-71.541870567,41.893250549],[-71.541801567,41.893118549],[-71.541641568,41.892815549],[-71.541573567,41.892628549],[-71.541519567,41.892434549],[-71.541473567,41.892235549],[-71.541229567,41.890789549],[-71.541176567,41.890442549],[-71.541115567,41.890137549],[-71.541084567,41.889874549],[-71.541077567,41.889660549],[-71.541100566,41.889466549],[-71.541168567,41.889294548],[-71.541351567,41.888966549],[-71.541557567,41.888615548],[-71.541588567,41.888569549],[-71.541786567,41.888127548],[-71.541885567,41.887814548],[-71.542007567,41.887448548],[-71.542175567,41.886868548],[-71.542191567,41.886662548],[-71.542175567,41.886456548],[-71.542122567,41.886280548],[-71.542038567,41.886082548],[-71.541916567,41.885891548],[-71.541512567,41.885296548],[-71.541367567,41.885106548],[-71.541270567,41.884969548],[-71.541168567,41.884827548],[-71.541061567,41.884636548],[-71.540939567,41.884388547],[-71.540886567,41.884194547],[-71.540855566,41.883950547],[-71.540833566,41.883671547],[-71.540817566,41.883385547],[-71.540764567,41.883057547],[-71.540604566,41.882405547],[-71.540497566,41.882023547],[-71.540489566,41.881863547],[-71.540482566,41.881810547],[-71.540489566,41.881493547],[-71.540253566,41.881379547],[-71.540009566,41.881085547],[-71.539803566,41.880795547],[-71.539688566,41.880593547],[-71.539612566,41.880364547],[-71.539551566,41.880055547],[-71.539421566,41.879212547],[-71.539337566,41.878830546],[-71.539238566,41.878567546],[-71.539108566,41.878353546],[-71.538925566,41.878136547],[-71.538734566,41.877957546],[-71.538467565,41.877777546],[-71.538216565,41.877652546],[-71.537888565,41.877541547],[-71.537521565,41.877438546],[-71.537201565,41.877335546],[-71.537083565,41.877289546],[-71.536888565,41.877213546],[-71.536804565,41.877339546],[-71.536720565,41.877491547],[-71.536568565,41.877602546],[-71.536102565,41.877896546],[-71.535965565,41.878060546],[-71.535812564,41.878193547],[-71.535606565,41.878277547],[-71.535388565,41.878360547],[-71.535347564,41.878376547],[-71.535027564,41.878453547],[-71.534622565,41.878533547],[-71.534172564,41.878586547],[-71.533722564,41.878666547],[-71.533409564,41.878754547],[-71.533226564,41.878838547],[-71.532967564,41.878968547],[-71.532784564,41.879097547],[-71.532646564,41.879216547],[-71.532600564,41.879246547],[-71.532417564,41.879410547],[-71.532318564,41.879532547],[-71.532242564,41.879654547],[-71.532181564,41.879765547],[-71.532150564,41.879868547],[-71.532135564,41.879952547],[-71.532143564,41.880036547],[-71.532173564,41.880211547],[-71.532234563,41.880352547],[-71.532303563,41.880444547],[-71.532631564,41.880791547],[-71.532738564,41.880894547],[-71.532799564,41.880970547],[-71.532814564,41.881047547],[-71.532822564,41.881119547],[-71.532806564,41.881222547],[-71.532738564,41.881375548],[-71.532669564,41.881474547],[-71.532608564,41.881546547],[-71.532516564,41.881626547],[-71.532372564,41.881703547],[-71.532227564,41.881768547],[-71.532036564,41.881836547],[-71.531990563,41.881817547],[-71.531662563,41.881703547],[-71.531357563,41.881592547],[-71.531158563,41.881524547],[-71.531006563,41.881489547],[-71.530624563,41.881436547],[-71.530418563,41.881379547],[-71.530144563,41.881298547],[-71.529900563,41.881195547],[-71.529701563,41.881134547],[-71.529495563,41.881092547],[-71.529167563,41.881050547],[-71.528923563,41.881035547],[-71.528648562,41.881024548],[-71.528502562,41.881024548],[-71.527905562,41.881611547],[-71.527720562,41.881790548],[-71.527704562,41.882050547],[-71.527693562,41.882113548],[-71.527613562,41.882584548],[-71.527555562,41.882709548],[-71.527384562,41.883072548],[-71.527251562,41.883105548],[-71.526906562,41.883192548],[-71.526581562,41.883374548],[-71.526102562,41.883644548],[-71.526041562,41.883721548],[-71.526087562,41.883843548],[-71.526041562,41.884049548],[-71.525858562,41.884216548],[-71.525507561,41.884323548],[-71.525003561,41.884323548],[-71.524607561,41.884293548],[-71.524347561,41.884567548],[-71.523232561,41.885406548],[-71.522943561,41.885512548],[-71.522576561,41.885512548],[-71.52231756,41.885535548],[-71.521798561,41.885741549],[-71.52089856,41.886016549],[-71.52036456,41.886115548],[-71.52031856,41.886120549],[-71.51995156,41.886158549],[-71.51943856,41.886223549],[-71.518936559,41.886238549],[-71.51936356,41.886971549],[-71.52013656,41.888352549],[-71.52018756,41.888443549],[-71.521126561,41.89009155],[-71.521584561,41.89091555],[-71.521721561,41.89115255],[-71.521843561,41.891388549],[-71.522057561,41.89183555],[-71.522316561,41.89245355],[-71.522392561,41.89265155],[-71.522469561,41.89288455],[-71.522537561,41.89311655],[-71.522659561,41.89358255],[-71.522751561,41.89404755],[-71.522771561,41.89416255],[-71.522789561,41.89426555],[-71.522797561,41.89432255],[-71.522850561,41.89469655],[-71.522896561,41.89515355],[-71.522926561,41.89560455],[-71.522919562,41.89587855],[-71.522911562,41.895985551],[-71.522903561,41.89630555],[-71.522835561,41.896862551],[-71.522797561,41.897110551],[-71.522705562,41.897572551],[-71.522499561,41.898213551],[-71.522423562,41.898419551],[-71.522357561,41.898582551],[-71.522339561,41.898625551],[-71.522247561,41.898808551],[-71.522049561,41.899174551],[-71.521950561,41.899346551],[-71.521736561,41.899685551],[-71.521629561,41.899842551],[-71.521515561,41.899998551],[-71.521255561,41.900330552],[-71.521194561,41.900414552],[-71.520981561,41.900669551],[-71.520599561,41.901071552],[-71.520401561,41.901257551],[-71.520095561,41.901512551],[-71.520035561,41.901562552],[-71.519760561,41.901772552],[-71.519615561,41.901875552],[-71.51805956,41.903042552],[-71.51693056,41.903878552],[-71.515892559,41.904637552],[-71.515419559,41.904988552],[-71.513390558,41.906475553],[-71.513145559,41.906659553],[-71.511421558,41.907921553],[-71.511368558,41.907959553],[-71.511330558,41.907933553],[-71.511070558,41.907708553],[-71.509865557,41.906662553],[-71.509454557,41.906298553],[-71.509186557,41.906060553],[-71.509024557,41.905914553],[-71.508011557,41.905003552],[-71.507627557,41.904696553],[-71.507225557,41.904374553],[-71.507073556,41.904254552],[-71.506989556,41.904187553],[-71.506256556,41.903538552],[-71.504462555,41.901945552],[-71.504425556,41.902043552],[-71.504364555,41.902115552],[-71.504219556,41.902348552],[-71.504150555,41.902485552],[-71.504036555,41.902645552],[-71.503960556,41.902729552],[-71.503860555,41.902825552],[-71.503771555,41.902900552],[-71.503738555,41.902928552],[-71.503082555,41.903340553],[-71.502708555,41.903580552],[-71.502197555,41.903889552],[-71.502014555,41.904007552],[-71.501785554,41.903717552],[-71.501747554,41.903740553],[-71.501709554,41.903744552],[-71.501503555,41.903767553],[-71.501366555,41.903775552],[-71.501244554,41.903771553],[-71.501137555,41.903756553],[-71.501076555,41.903740553],[-71.501022554,41.903717553],[-71.500977555,41.903691553],[-71.500946554,41.903664553],[-71.500931554,41.903637552],[-71.500908554,41.903611553],[-71.500877554,41.903542553],[-71.500854554,41.903454552],[-71.500824555,41.903286552],[-71.500801555,41.903225553],[-71.500778554,41.903119552],[-71.500732554,41.902970553],[-71.500687555,41.902863553],[-71.500603554,41.902737553],[-71.500572555,41.902703552],[-71.500404554,41.902439552],[-71.500366554,41.902386552],[-71.500305554,41.902283552],[-71.500267554,41.902233552],[-71.500206554,41.902130552],[-71.500183554,41.902077552],[-71.500114554,41.901959552],[-71.500084554,41.901890552],[-71.500046554,41.901825552],[-71.499985554,41.901696552],[-71.499962554,41.901627552],[-71.499931554,41.901562552],[-71.499908554,41.901493552],[-71.499817554,41.901314552],[-71.499710554,41.901158552],[-71.499535554,41.900917552],[-71.499489554,41.900860552],[-71.499435554,41.900803552],[-71.499268554,41.900605552],[-71.499222554,41.900532552],[-71.499176554,41.900471552],[-71.499146554,41.900410552],[-71.499125554,41.900352552],[-71.499130554,41.900227552],[-71.499178554,41.900118552],[-71.498282553,41.899710552],[-71.497580553,41.898750552],[-71.497418553,41.898856552],[-71.497286553,41.898964552],[-71.497206553,41.899048552],[-71.497109553,41.899192552],[-71.497044553,41.899265552],[-71.496989553,41.899339552],[-71.496965553,41.899380552],[-71.496948553,41.899400552],[-71.496883553,41.899532552],[-71.496857553,41.899599552],[-71.496782553,41.899714552],[-71.496625553,41.899876552],[-71.496604553,41.899938552],[-71.496618553,41.899998552],[-71.496580553,41.900055552],[-71.496464553,41.900169552],[-71.496406553,41.900220552],[-71.496377553,41.900279552],[-71.496853553,41.899863552],[-71.497139553,41.899426552],[-71.497194553,41.899488552],[-71.497802554,41.900170552],[-71.498291553,41.901936552],[-71.498238553,41.901947552],[-71.498184553,41.901963552],[-71.497978554,41.902005552],[-71.497749553,41.902031552],[-71.497391553,41.902054553],[-71.496872553,41.902108552],[-71.496567553,41.902150552],[-71.496483553,41.902169552],[-71.496422553,41.902195552],[-71.496307553,41.902256552],[-71.496033552,41.902451552],[-71.495941553,41.902523553],[-71.495728553,41.902665553],[-71.495430552,41.902848552],[-71.495297553,41.902920553],[-71.495570553,41.903178552],[-71.495720552,41.903340553],[-71.495766553,41.903397553],[-71.495804553,41.903454553],[-71.495906553,41.903584553],[-71.496056553,41.903775553],[-71.496140553,41.903923553],[-71.496208553,41.904095553],[-71.496277553,41.904320553],[-71.496292553,41.904412553],[-71.496315553,41.904503553],[-71.496330553,41.904599553],[-71.496399553,41.904858553],[-71.496429553,41.904999553],[-71.496437553,41.905072553],[-71.496147553,41.905095553],[-71.495499553,41.905175553],[-71.495316553,41.905203553],[-71.494781552,41.905285553],[-71.493889552,41.905407553],[-71.493385552,41.905503553],[-71.493080552,41.905548553],[-71.492958552,41.905571553],[-71.492836552,41.905587553],[-71.492584552,41.905594553],[-71.492078552,41.905591553],[-71.491928552,41.905590553],[-71.490273551,41.905655553],[-71.489777551,41.905686553],[-71.489487551,41.905697553],[-71.489433551,41.905693553],[-71.489212551,41.905690553],[-71.488991551,41.905651553],[-71.488907551,41.905625553],[-71.488747551,41.905568553],[-71.48854855,41.905510553],[-71.488281551,41.905423553],[-71.48822055,41.905392553],[-71.48815955,41.905354553],[-71.48813655,41.905331553],[-71.488091551,41.905259553],[-71.48786955,41.904690553],[-71.48774755,41.904320553],[-71.48769455,41.904206553],[-71.48765655,41.904164553],[-71.48758755,41.904129553],[-71.48751155,41.904118553],[-71.48744255,41.904118553],[-71.48732855,41.904126553],[-71.48723655,41.904141553],[-71.48716055,41.904148553],[-71.48708355,41.904164553],[-71.48700755,41.904175553],[-71.48690055,41.904206553],[-71.48680155,41.904225553],[-71.48671755,41.904225553],[-71.48661055,41.904210553],[-71.48651155,41.904187553],[-71.48646555,41.904171553],[-71.48632855,41.904110553],[-71.48616055,41.904045553],[-71.485329549,41.903878553],[-71.485176549,41.903817553],[-71.485123549,41.903786553],[-71.48500855,41.903706553],[-71.484894549,41.903614553],[-71.484398549,41.903283553],[-71.484116549,41.903042553],[-71.483826549,41.902756553],[-71.483589549,41.902478553],[-71.483353549,41.902268553],[-71.483208549,41.902150553],[-71.482877549,41.902393553],[-71.482106548,41.902640553],[-71.481029548,41.902541553],[-71.477136546,41.901891553],[-71.477123547,41.901958553],[-71.477123547,41.902013553],[-71.477114547,41.902075553],[-71.477078546,41.902126553],[-71.477007547,41.902144553],[-71.476850546,41.902130553],[-71.476789546,41.902156553],[-71.476766546,41.902189553],[-71.476818547,41.902327553],[-71.476861547,41.902438553],[-71.477047547,41.902967553],[-71.477501547,41.904298553],[-71.480514548,41.913529555],[-71.480931549,41.914806555],[-71.481006549,41.915006555],[-71.481305549,41.915683556],[-71.481423549,41.915991555],[-71.482147549,41.917697556],[-71.48270555,41.919010556],[-71.482868549,41.919808556],[-71.482963549,41.920082556],[-71.483204549,41.921066557],[-71.48416455,41.923987557],[-71.48450055,41.924997557],[-71.485182551,41.927100558],[-71.485605551,41.928406558],[-71.486304551,41.930306558],[-71.487152552,41.932756559],[-71.487204551,41.932906559],[-71.487462552,41.934027559],[-71.487504552,41.934207559],[-71.488882552,41.938009559],[-71.489073552,41.93853656],[-71.489225553,41.93897156]]]]}}"}, +{"type": "precinct", "typeId": 3201, "areaId": 25966, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":305,\"NAME\":\"3201\",\"SHAPE_Length\":0.18360540456047,\"SHAPE_Area\":-0.00070209934205543},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.447058515,41.488401473],[-71.447058515,41.488417926],[-71.447058657,41.488401205],[-71.447054632,41.48837616],[-71.447050247,41.488344781],[-71.447047623,41.488339096],[-71.447058515,41.488401473]]],[[[-71.447013514,41.488508473],[-71.44700997,41.488510424],[-71.447013615,41.488508559],[-71.447050796,41.488462079],[-71.447013514,41.488508473]]],[[[-71.446864515,41.488590474],[-71.446803782,41.48863245],[-71.446864938,41.488590731],[-71.446875361,41.488584505],[-71.446864515,41.488590474]]],[[[-71.446718514,41.488820473],[-71.446724515,41.488947473],[-71.446676899,41.489045546],[-71.446694966,41.489011461],[-71.446724948,41.48894737],[-71.446721807,41.488882349],[-71.446718695,41.488820164],[-71.446721077,41.488808757],[-71.446718514,41.488820473]]],[[[-71.45196592,41.499088108],[-71.451978978,41.499159536],[-71.452011414,41.499230836],[-71.452055897,41.499302689],[-71.452094901,41.499378085],[-71.452129251,41.499453524],[-71.452159007,41.499529693],[-71.452193388,41.499605773],[-71.452230478,41.499677715],[-71.452263828,41.499748282],[-71.452293469,41.49981679],[-71.452320282,41.499881889],[-71.452332312,41.499946365],[-71.452333268,41.500012345],[-71.452334166,41.500072768],[-71.452336007,41.500135227],[-71.452352691,41.50020039],[-71.45239426,41.500263254],[-71.452454209,41.500319745],[-71.45248109,41.500344747],[-71.452481517,41.500344475],[-71.453453517,41.499882476],[-71.454417517,41.499462475],[-71.455362518,41.499280475],[-71.456481519,41.499143475],[-71.456491518,41.499143475],[-71.457894519,41.499061475],[-71.457966518,41.499066475],[-71.457825519,41.498730475],[-71.457726519,41.498478475],[-71.457658518,41.498321475],[-71.457420518,41.497765475],[-71.457397519,41.497700474],[-71.457153518,41.497097474],[-71.457127518,41.497050475],[-71.456825518,41.496342474],[-71.456657518,41.495686475],[-71.456505518,41.495007475],[-71.456467518,41.494762474],[-71.456421518,41.494508474],[-71.456377518,41.494186474],[-71.456358518,41.493747474],[-71.456359518,41.493723474],[-71.456398518,41.493096474],[-71.456398518,41.493039473],[-71.456459518,41.492546474],[-71.456505518,41.492348474],[-71.456581517,41.491970473],[-71.456642518,41.491730474],[-71.456703518,41.491490474],[-71.457100518,41.489861473],[-71.457199518,41.489479473],[-71.457428518,41.488514472],[-71.457520518,41.488148473],[-71.457756518,41.487164473],[-71.457817518,41.486924473],[-71.458061518,41.485806472],[-71.458237518,41.485047472],[-71.458314518,41.484662472],[-71.458382518,41.484318472],[-71.458488518,41.483860472],[-71.458694518,41.482895472],[-71.458839518,41.482254471],[-71.459023518,41.481587472],[-71.459038518,41.481552471],[-71.459192519,41.480986472],[-71.459213518,41.480908472],[-71.459358518,41.480336471],[-71.459389518,41.480202471],[-71.459450518,41.480000471],[-71.459770518,41.478802471],[-71.460114518,41.477486471],[-71.460258518,41.476910471],[-71.460297518,41.47677647],[-71.460693519,41.47491147],[-71.460823518,41.47422447],[-71.460861518,41.47389647],[-71.460870518,41.473654469],[-71.460884518,41.47338547],[-71.460907519,41.473050469],[-71.460953518,41.472153469],[-71.460973518,41.471880469],[-71.460999518,41.47155847],[-71.461098518,41.471142469],[-71.461220519,41.470768469],[-71.461380518,41.47043347],[-71.461769518,41.469746469],[-71.461838519,41.469635469],[-71.462110519,41.469149469],[-71.462173519,41.469040469],[-71.462563519,41.468293468],[-71.462624519,41.468159469],[-71.462784518,41.467835469],[-71.462890519,41.467602469],[-71.462929519,41.467518469],[-71.463381519,41.466399469],[-71.463470519,41.466179469],[-71.463601518,41.465857468],[-71.463722519,41.465561468],[-71.463749519,41.465498468],[-71.464005519,41.464894468],[-71.464226519,41.464489468],[-71.464577519,41.463963468],[-71.464661519,41.463826467],[-71.464867519,41.463471468],[-71.465271519,41.462674468],[-71.465660519,41.461888468],[-71.466141519,41.460961467],[-71.466630519,41.460029467],[-71.46698852,41.459347467],[-71.46710252,41.459130467],[-71.467369519,41.458599466],[-71.46761352,41.458126467],[-71.467794519,41.457731467],[-71.46803352,41.457207467],[-71.46873552,41.455609466],[-71.46885752,41.455147466],[-71.46891852,41.454811466],[-71.46894852,41.454426465],[-71.46895752,41.454249466],[-71.46897952,41.453785465],[-71.46911652,41.453141465],[-71.469139519,41.453080465],[-71.46925452,41.452778466],[-71.46932252,41.452599465],[-71.46962052,41.452065466],[-71.46993352,41.451649465],[-71.47057352,41.450993465],[-71.47081752,41.450756465],[-71.47140552,41.450184465],[-71.472099521,41.449532464],[-71.472565521,41.449101465],[-71.472626521,41.449036465],[-71.473648521,41.448014464],[-71.474905522,41.446808464],[-71.474945522,41.446770464],[-71.475266521,41.446465464],[-71.476359522,41.445399464],[-71.477814523,41.443978463],[-71.477936522,41.443844463],[-71.478134522,41.443638464],[-71.478279523,41.443474463],[-71.478404522,41.443338463],[-71.478737522,41.442952464],[-71.479027522,41.442597463],[-71.479317523,41.442212463],[-71.479355523,41.442158464],[-71.479561523,41.441872463],[-71.479782523,41.441552463],[-71.479988523,41.441227463],[-71.480179523,41.440903463],[-71.480362523,41.440575463],[-71.480506523,41.440285463],[-71.480690523,41.439915463],[-71.481201523,41.438805462],[-71.481581523,41.437982463],[-71.481606523,41.437928462],[-71.481723523,41.437674462],[-71.482239524,41.436608462],[-71.482628524,41.435765462],[-71.482338524,41.435883462],[-71.482040523,41.436005462],[-71.478309522,41.437528462],[-71.477510522,41.437854462],[-71.476335521,41.438371463],[-71.475691522,41.438653462],[-71.475075521,41.438885462],[-71.474835521,41.438899463],[-71.474518521,41.439053463],[-71.47306852,41.439757463],[-71.472993438,41.439815751],[-71.472992853,41.439816224],[-71.472953016,41.439870486],[-71.47291317,41.439909085],[-71.472898521,41.439923463],[-71.472898155,41.43992363],[-71.472898044,41.439923738],[-71.472817852,41.43996134],[-71.472725593,41.440002828],[-71.472655786,41.440061451],[-71.472619015,41.440124907],[-71.47261573,41.440130578],[-71.472572395,41.440190602],[-71.47251602,41.440253824],[-71.472456487,41.440310048],[-71.472407649,41.440373044],[-71.472366409,41.440436544],[-71.472323375,41.440502949],[-71.4723014,41.440575877],[-71.472285078,41.440648669],[-71.472263594,41.440712357],[-71.4722257,41.440767969],[-71.47216775,41.440817743],[-71.472099616,41.440871334],[-71.472045614,41.440925272],[-71.471992856,41.440984836],[-71.471934023,41.441036074],[-71.471874549,41.441093692],[-71.47180888,41.441139417],[-71.471727133,41.441184176],[-71.471644633,41.441213316],[-71.471560558,41.441229052],[-71.471474087,41.441233514],[-71.471403504,41.441255977],[-71.471321726,41.441300005],[-71.47123263,41.441328662],[-71.471159251,41.441351171],[-71.471090148,41.441324693],[-71.471004185,41.441280898],[-71.470907638,41.441252308],[-71.470814248,41.441230672],[-71.470714707,41.4412376],[-71.470606655,41.441244776],[-71.470501461,41.441252571],[-71.470404496,41.441274318],[-71.470314587,41.441286668],[-71.470222673,41.441295518],[-71.470140232,41.441325411],[-71.470064447,41.441357203],[-71.470007777,41.441394193],[-71.469967563,41.441400975],[-71.469897979,41.441364524],[-71.469820978,41.441330427],[-71.469721535,41.441320361],[-71.469646951,41.441318078],[-71.469544652,41.441306661],[-71.469447305,41.441300758],[-71.469361715,41.441304454],[-71.469351581,41.441306425],[-71.469285519,41.441319464],[-71.46912496,41.441395517],[-71.469114663,41.441400452],[-71.469028263,41.441446741],[-71.4689728,41.441465036],[-71.468929519,41.441479463],[-71.468916274,41.441483315],[-71.468832347,41.441508734],[-71.46874954,41.441531804],[-71.468733519,41.441536463],[-71.468711529,41.441544526],[-71.468643939,41.441569838],[-71.468597835,41.441615949],[-71.468586519,41.441627464],[-71.468583678,41.441631023],[-71.468542064,41.441686746],[-71.468529565,41.441701608],[-71.468495657,41.441741873],[-71.46845848,41.441741464],[-71.468421519,41.441741464],[-71.468317519,41.441721463],[-71.468241519,41.441720463],[-71.46822356,41.441721645],[-71.468165986,41.441725888],[-71.468111557,41.441739541],[-71.468096519,41.441743464],[-71.468010519,41.441785464],[-71.46799769,41.441793556],[-71.467945552,41.441826867],[-71.467893672,41.441885675],[-71.467831698,41.44194974],[-71.467749426,41.442003759],[-71.467699417,41.442032945],[-71.467687519,41.442040464],[-71.467623519,41.442072464],[-71.467620797,41.442074109],[-71.467547614,41.442120478],[-71.467491534,41.442152245],[-71.467489519,41.442153464],[-71.467441949,41.44216932],[-71.467411907,41.442179421],[-71.467411648,41.44217942],[-71.467411519,41.442179463],[-71.467404192,41.442179379],[-71.467324221,41.442178939],[-71.467254311,41.442164422],[-71.467239519,41.442161463],[-71.467220382,41.442160477],[-71.467142234,41.442156909],[-71.467032326,41.442164791],[-71.466980205,41.442173396],[-71.466950519,41.442178464],[-71.46691966,41.442188889],[-71.466876812,41.442203717],[-71.466810536,41.442236699],[-71.466743288,41.442269705],[-71.466729749,41.442281632],[-71.466700519,41.442307464],[-71.466700353,41.442307528],[-71.466692629,41.442314333],[-71.466653578,41.442365025],[-71.466614545,41.442437009],[-71.466624479,41.442506903],[-71.466618214,41.442573751],[-71.466562954,41.44264047],[-71.466520925,41.442688394],[-71.46648069,41.442734168],[-71.466427223,41.442799424],[-71.46637939,41.442843938],[-71.466326907,41.44288932],[-71.466269681,41.442934838],[-71.466195556,41.442981494],[-71.466111558,41.443019206],[-71.466035428,41.443063094],[-71.465960059,41.443103415],[-71.465885914,41.443130219],[-71.465807057,41.443156428],[-71.465726187,41.443140189],[-71.465652444,41.443095364],[-71.46557432,41.443057742],[-71.465494943,41.443033659],[-71.465405533,41.443016182],[-71.465373888,41.443024818],[-71.465423303,41.443093009],[-71.4654567,41.443160898],[-71.465459496,41.443220361],[-71.465401237,41.443263774],[-71.465324224,41.443309125],[-71.465233138,41.443356233],[-71.465164856,41.443386424],[-71.465099551,41.443420115],[-71.465031659,41.443459523],[-71.464960179,41.443502543],[-71.464899303,41.443550254],[-71.464840132,41.443594421],[-71.464778014,41.443635774],[-71.464725377,41.443679029],[-71.464687025,41.443724735],[-71.46463454,41.443770116],[-71.464582695,41.443809802],[-71.464507656,41.443857166],[-71.464420157,41.443899952],[-71.464335424,41.443941939],[-71.464243124,41.443982711],[-71.464161649,41.444013972],[-71.464079994,41.44404027],[-71.464004533,41.444079171],[-71.46395395,41.444145067],[-71.463911025,41.444214259],[-71.463866407,41.444266526],[-71.463829277,41.444298739],[-71.463771077,41.444343546],[-71.463716333,41.444401756],[-71.463712772,41.4444657],[-71.463740875,41.444541524],[-71.463767015,41.4445961],[-71.463787502,41.444650172],[-71.463795517,41.444720157],[-71.463764481,41.444781302],[-71.463699853,41.444849664],[-71.463654322,41.444903372],[-71.463601042,41.44495232],[-71.463539072,41.44499724],[-71.463479016,41.445042779],[-71.463422819,41.44508969],[-71.463364738,41.445137333],[-71.463301886,41.445182276],[-71.463236938,41.445224451],[-71.463171078,41.445266648],[-71.463105308,41.445310241],[-71.46304051,41.445355228],[-71.462979632,41.445402939],[-71.462923434,41.445450559],[-71.462866997,41.445492485],[-71.462810258,41.445528762],[-71.462739075,41.445577475],[-71.462688321,41.445619974],[-71.462625107,41.445658536],[-71.462543137,41.445699012],[-71.46247484,41.445749785],[-71.46242648,41.445802874],[-71.462378823,41.44585164],[-71.462292723,41.445884453],[-71.462219317,41.445887128],[-71.462149691,41.445869152],[-71.46209192,41.445902592],[-71.462069692,41.445970555],[-71.462053398,41.446024889],[-71.462029868,41.446085076],[-71.462000473,41.446141167],[-71.461964302,41.44619323],[-71.461920172,41.446236966],[-71.461883821,41.446285416],[-71.46184753,41.44633533],[-71.461795088,41.446402002],[-71.461744111,41.446460075],[-71.461714446,41.446509785],[-71.461665082,41.446562873],[-71.461605054,41.446608479],[-71.461528856,41.446651633],[-71.461444581,41.446682273],[-71.461352976,41.446718743],[-71.461283255,41.446758926],[-71.461239274,41.446805475],[-71.461273864,41.44685914],[-71.461288616,41.446892101],[-71.46135334,41.446925101],[-71.461391368,41.446972318],[-71.461450548,41.447026403],[-71.461475709,41.447089259],[-71.46147255,41.447135638],[-71.461442858,41.447179036],[-71.461411146,41.447245235],[-71.461389928,41.447300093],[-71.461373452,41.447352803],[-71.46136821,41.447426992],[-71.461374404,41.447489819],[-71.461404307,41.447553408],[-71.461418101,41.447614064],[-71.461411076,41.447671832],[-71.461383166,41.447733778],[-71.461332453,41.447803515],[-71.461291324,41.447860425],[-71.461245357,41.447923737],[-71.461200361,41.447989954],[-71.461163,41.44804682],[-71.461117231,41.44808518],[-71.460966231,41.448118131],[-71.460895943,41.448137112],[-71.460790613,41.448147414],[-71.46069402,41.448134208],[-71.460618384,41.448100402],[-71.460554247,41.448050203],[-71.460490075,41.448007185],[-71.460442721,41.448001268],[-71.460388443,41.448035304],[-71.460393794,41.448083836],[-71.460456014,41.448136161],[-71.460542952,41.448180011],[-71.460635609,41.448216726],[-71.460699913,41.448241951],[-71.46078971,41.448282988],[-71.4608748,41.44831826],[-71.460946604,41.448356363],[-71.460980404,41.448408518],[-71.460963055,41.44844698],[-71.460889577,41.448513782],[-71.460823829,41.448564165],[-71.460756197,41.448612421],[-71.460694251,41.44865782],[-71.460644647,41.448702583],[-71.460594942,41.448763744],[-71.460585966,41.448827892],[-71.460567707,41.448862076],[-71.460496509,41.44887678],[-71.460396926,41.44888068],[-71.460310729,41.448867523],[-71.460246625,41.448812338],[-71.46021185,41.448764413],[-71.460156087,41.448738504],[-71.460119026,41.448749766],[-71.460061785,41.448806625],[-71.460030139,41.448860747],[-71.460001321,41.448912698],[-71.459958207,41.448980311],[-71.459919837,41.449044357],[-71.459898618,41.449096333],[-71.459879249,41.449155469],[-71.459862738,41.449213919],[-71.459839601,41.449271635],[-71.459806073,41.449320703],[-71.459735518,41.449375407],[-71.45966701,41.449412226],[-71.459635398,41.449459877],[-71.459542473,41.449460256],[-71.459468553,41.449452134],[-71.459388099,41.449438932],[-71.459305736,41.449417954],[-71.459223405,41.449394117],[-71.459146758,41.449370968],[-71.459077679,41.449349308],[-71.45899629,41.449325449],[-71.458917555,41.449335849],[-71.458832871,41.449379753],[-71.45875569,41.449432212],[-71.458668181,41.449473987],[-71.458579732,41.449510754],[-71.458502782,41.449533299],[-71.458413455,41.449564301],[-71.458335332,41.44961612],[-71.458283904,41.449655872],[-71.458225624,41.449716251],[-71.458212878,41.449779689],[-71.458204838,41.449849577],[-71.458145548,41.449921391],[-71.458092076,41.449973264],[-71.45804146,41.450025869],[-71.457997502,41.450079209],[-71.457974363,41.450135439],[-71.457960678,41.450193204],[-71.457951764,41.45025168],[-71.457937068,41.450319393],[-71.457882654,41.450371242],[-71.457785019,41.450367296],[-71.457694042,41.450361957],[-71.457600175,41.450361579],[-71.457533649,41.450385614],[-71.457504726,41.450455403],[-71.457484412,41.450514515],[-71.457455521,41.450580759],[-71.457423741,41.450649106],[-71.457389133,41.450719602],[-71.457350691,41.450795059],[-71.457314101,41.450874108],[-71.457281341,41.450953867],[-71.457245693,41.451033648],[-71.457215794,41.451106295],[-71.457196419,41.451170439],[-71.457191139,41.451248173],[-71.457212498,41.451311005],[-71.457274716,41.451368341],[-71.45734178,41.451404958],[-71.457413685,41.451431628],[-71.457486539,41.451447619],[-71.457556629,41.451460017],[-71.457651304,41.451482488],[-71.457718435,41.451511992],[-71.457747696,41.451530688],[-71.457746553,41.451558475],[-71.45766671,41.451586004],[-71.457568839,41.451615585],[-71.457474801,41.451640181],[-71.457376289,41.451626971],[-71.457280769,41.451593774],[-71.457193563,41.451584891],[-71.45713487,41.451574669],[-71.457101037,41.45152887],[-71.457058827,41.451462371],[-71.457020252,41.451416571],[-71.45697041,41.451354299],[-71.45694717,41.451286435],[-71.456938185,41.451220817],[-71.456935865,41.451143012],[-71.456922984,41.451085191],[-71.456898738,41.451023021],[-71.456861205,41.450964391],[-71.456818928,41.45090784],[-71.456783277,41.450854196],[-71.456739086,41.450796272],[-71.456684233,41.45077393],[-71.456634859,41.450786604],[-71.456550137,41.450836201],[-71.456531617,41.450848201],[-71.456492022,41.450873777],[-71.456429194,41.45091277],[-71.456366399,41.450948195],[-71.456286556,41.450974282],[-71.456211693,41.450964717],[-71.456046793,41.450951252],[-71.455955782,41.450951583],[-71.455885758,41.450932071],[-71.455823405,41.450898291],[-71.455750487,41.45088804],[-71.455729571,41.450891531],[-71.455706496,41.450940647],[-71.455727919,41.450995681],[-71.455767369,41.451050036],[-71.455818288,41.451092319],[-71.45589282,41.451142571],[-71.455918982,41.451202547],[-71.455882425,41.451275191],[-71.45584418,41.451326383],[-71.455817271,41.451381215],[-71.455808225,41.451452521],[-71.455808155,41.451466083],[-71.45577385,41.45148878],[-71.455673154,41.451514081],[-71.455597142,41.451539483],[-71.455528699,41.451563471],[-71.455437488,41.451588066],[-71.455354953,41.451592746],[-71.455229937,41.451575819],[-71.455155809,41.451601222],[-71.455123083,41.451671009],[-71.45512836,41.451732417],[-71.455149749,41.4517931],[-71.455183448,41.451855297],[-71.455228518,41.451916126],[-71.455279301,41.451979108],[-71.455329111,41.452041334],[-71.45537135,41.452107834],[-71.455388873,41.452177137],[-71.45538843,41.45224561],[-71.455381301,41.452314058],[-71.455357149,41.452380304],[-71.455318773,41.452443639],[-71.45526526,41.452505505],[-71.455203239,41.452560186],[-71.455137517,41.452604895],[-71.455069001,41.452645279],[-71.45500049,41.452677843],[-71.454933964,41.452698263],[-71.454832489,41.452704306],[-71.454738588,41.452702485],[-71.454584781,41.452731836],[-71.454520103,41.452760146],[-71.454452597,41.452789851],[-71.454372783,41.452815228],[-71.454278777,41.452833373],[-71.454183863,41.452845868],[-71.454097561,41.452846245],[-71.454021784,41.452835237],[-71.453944091,41.452827087],[-71.453860677,41.452826047],[-71.453772491,41.452825692],[-71.453685247,41.452825359],[-71.453609371,41.452825809],[-71.453527844,41.452821888],[-71.453440596,41.452826541],[-71.45338991,41.452885572],[-71.45332896,41.452928863],[-71.453224627,41.452934149],[-71.45315363,41.452914612],[-71.453097665,41.452915138],[-71.453038531,41.452969088],[-71.452990735,41.45302311],[-71.452931536,41.4530828],[-71.452880813,41.453148943],[-71.452831973,41.453217991],[-71.452774622,41.453285503],[-71.452716362,41.453348783],[-71.452653395,41.45340559],[-71.452586698,41.453449565],[-71.452520942,41.453494271],[-71.452462749,41.453548244],[-71.452416768,41.453614411],[-71.452377345,41.453691307],[-71.452341718,41.453772459],[-71.452306029,41.453856514],[-71.452271343,41.453939839],[-71.452242313,41.454021794],[-71.452225693,41.454092341],[-71.452240385,41.454162993],[-71.452313132,41.454203229],[-71.452383222,41.454217781],[-71.452458163,41.45420951],[-71.452535083,41.454196254],[-71.452639284,41.454207389],[-71.452725285,41.454248362],[-71.452756326,41.454285584],[-71.452748246,41.454359772],[-71.452712759,41.454416681],[-71.452659276,41.454472828],[-71.452600111,41.454524673],[-71.452569364,41.454585198],[-71.452626035,41.454618223],[-71.452730235,41.454632194],[-71.452799318,41.454653148],[-71.452888175,41.454695563],[-71.452940879,41.454750725],[-71.452937523,41.454767784],[-71.452928125,41.454815579],[-71.452909622,41.45488544],[-71.452971337,41.455006974],[-71.452995618,41.455060546],[-71.453017039,41.455117684],[-71.453024233,41.455174794],[-71.453007716,41.455230362],[-71.452983629,41.455287367],[-71.452961427,41.455342933],[-71.45296011,41.455398575],[-71.452984223,41.455474949],[-71.453011363,41.455526418],[-71.45303756,41.455580059],[-71.453081617,41.455653696],[-71.453112423,41.455723737],[-71.453100579,41.455791473],[-71.453045111,41.455859009],[-71.452997378,41.455907314],[-71.452950556,41.455956352],[-71.452910392,41.456006855],[-71.452884421,41.456061687],[-71.452861244,41.456119379],[-71.452831441,41.456177068],[-71.452800694,41.456234688],[-71.452772806,41.456291669],[-71.452751578,41.456345794],[-71.45273398,41.456424918],[-71.452733573,41.456482688],[-71.452728422,41.456542628],[-71.45271567,41.456604624],[-71.452700968,41.456670918],[-71.452695965,41.456694999],[-71.45268724,41.456737191],[-71.452667826,41.456804192],[-71.452657867,41.456870489],[-71.452657358,41.456943261],[-71.452654932,41.457018869],[-71.452645911,41.457091592],[-71.452627439,41.457158594],[-71.452606111,41.457224817],[-71.452580036,41.457295361],[-71.45255208,41.457361581],[-71.45252601,41.457425698],[-71.452497113,41.457489792],[-71.452466394,41.457551025],[-71.45242808,41.457603633],[-71.452358515,41.457655451],[-71.452243343,41.457714935],[-71.452184274,41.457755367],[-71.45214125,41.457805847],[-71.452114305,41.457860678],[-71.452082512,41.457934032],[-71.452028016,41.457998709],[-71.451962256,41.458042684],[-71.451877793,41.458054518],[-71.451802954,41.4580428],[-71.451723471,41.458020354],[-71.45164019,41.457996488],[-71.451550216,41.457977583],[-71.451458358,41.457958676],[-71.451362731,41.457938327],[-71.451275583,41.457922304],[-71.451198924,41.457906285],[-71.451118401,41.457893146],[-71.451053855,41.457898608],[-71.451022903,41.457944564],[-71.451019372,41.457949845],[-71.45101328,41.458006172],[-71.451016132,41.45801372],[-71.451027267,41.458043319],[-71.451108595,41.458077155],[-71.451208024,41.458094693],[-71.451310312,41.458110769],[-71.451406913,41.458130432],[-71.451493087,41.458148582],[-71.451573476,41.45817885],[-71.451608317,41.458217538],[-71.451608989,41.458254633],[-71.451644908,41.458275438],[-71.451730948,41.458310739],[-71.451805621,41.458341691],[-71.451877466,41.458373374],[-71.451944601,41.458402904],[-71.452007935,41.458433805],[-71.452073119,41.458469716],[-71.452140186,41.458509217],[-71.452209139,41.458546593],[-71.452277184,41.458579669],[-71.452361239,41.458627799],[-71.45243675,41.45867874],[-71.452502773,41.45873178],[-71.452554604,41.458779119],[-71.4526065,41.458819209],[-71.452609088,41.458855643],[-71.452587191,41.458866954],[-71.452542417,41.458898154],[-71.452522131,41.458951593],[-71.45250457,41.459019304],[-71.452514654,41.459073556],[-71.452571365,41.459098737],[-71.452591106,41.459127355],[-71.452569813,41.459185094],[-71.45254562,41.459259137],[-71.452521534,41.459311111],[-71.452487019,41.459365916],[-71.452443995,41.459414978],[-71.452401003,41.459460472],[-71.452367395,41.459522436],[-71.452388815,41.459581015],[-71.452431162,41.459627528],[-71.4524651,41.459655466],[-71.452538897,41.45968214],[-71.452618383,41.459702436],[-71.45270355,41.459729183],[-71.452766886,41.459758666],[-71.4528205,41.459822359],[-71.45278158,41.45983005],[-71.452699136,41.459821165],[-71.452626177,41.45981233],[-71.452550358,41.459807062],[-71.452461288,41.459796733],[-71.452414801,41.459800076],[-71.45247598,41.459868803],[-71.452544866,41.459917591],[-71.452613791,41.459954966],[-71.452678172,41.459970201],[-71.45264833,41.460035026],[-71.452643177,41.460098443],[-71.452627566,41.460160483],[-71.452575964,41.46021519],[-71.452522443,41.460274905],[-71.452515272,41.460352637],[-71.452543218,41.460426977],[-71.452614022,41.460473592],[-71.452689602,41.460514538],[-71.452714792,41.460575978],[-71.452742807,41.460638859],[-71.45281267,41.460684102],[-71.452876915,41.460719303],[-71.452963907,41.460772871],[-71.45303019,41.460837051],[-71.453103013,41.460937759],[-71.453127231,41.460997757],[-71.453131531,41.461063419],[-71.453091465,41.461099652],[-71.453070237,41.46115165],[-71.453048807,41.461230749],[-71.453040831,41.461286366],[-71.453027975,41.461364782],[-71.453025651,41.46142541],[-71.453077447,41.461481966],[-71.453082897,41.461514078],[-71.453075557,41.461531571],[-71.453060725,41.461566785],[-71.4530252,41.461629457],[-71.453042753,41.461699447],[-71.453098219,41.46176744],[-71.453140565,41.461818229],[-71.45318002,41.461870434],[-71.453211938,41.46192051],[-71.453211398,41.461994723],[-71.453183574,41.462044523],[-71.453137722,41.462092852],[-71.453080501,41.462138294],[-71.453015745,41.462176575],[-71.452946348,41.462200561],[-71.452858047,41.462213766],[-71.452806509,41.462262756],[-71.452788006,41.462329049],[-71.452772428,41.462387498],[-71.452768216,41.46245167],[-71.452768886,41.462491625],[-71.452800737,41.462550254],[-71.452829075,41.462589122],[-71.452842986,41.462608201],[-71.45287376,41.462683205],[-71.452905544,41.462751119],[-71.452912569,41.462832471],[-71.452889385,41.462897299],[-71.452868961,41.46297068],[-71.452843794,41.463045501],[-71.452808169,41.463118831],[-71.452767863,41.463190009],[-71.452720898,41.463261871],[-71.45266919,41.46333373],[-71.452613748,41.463397012],[-71.452549867,41.463442406],[-71.452478515,41.46347707],[-71.452403363,41.463509629],[-71.452336788,41.463538578],[-71.452247337,41.463584624],[-71.452185406,41.463623638],[-71.452121657,41.463655446],[-71.452052087,41.463703719],[-71.452025944,41.463780643],[-71.452005623,41.463836941],[-71.451988966,41.463913892],[-71.451985629,41.463985931],[-71.451985153,41.464055136],[-71.451984675,41.464125782],[-71.451961289,41.46421556],[-71.451903929,41.464280968],[-71.451855216,41.464329295],[-71.451807441,41.464383294],[-71.451765323,41.464435923],[-71.451731779,41.464488579],[-71.451700086,41.464544826],[-71.451679729,41.464608236],[-71.451669797,41.464675996],[-71.451663605,41.464744444],[-71.451663336,41.464789082],[-71.451602531,41.464937511],[-71.451559401,41.465000111],[-71.451506006,41.465047704],[-71.451440305,41.465084566],[-71.451364242,41.465112801],[-71.451292958,41.465134612],[-71.451210097,41.465186355],[-71.451154757,41.465232506],[-71.451088046,41.465276503],[-71.451012856,41.465316859],[-71.450935784,41.465352229],[-71.450861603,41.465384742],[-71.450795936,41.465414468],[-71.450730197,41.465460546],[-71.450688109,41.465511048],[-71.450685679,41.465588096],[-71.450664346,41.465654365],[-71.450607993,41.465711905],[-71.450557425,41.465757372],[-71.450577874,41.465815951],[-71.450609621,41.465889537],[-71.450609076,41.465967296],[-71.4506087,41.466022229],[-71.450608222,41.466089993],[-71.450604013,41.466147761],[-71.450574166,41.466214026],[-71.450532041,41.466272327],[-71.450488069,41.466321364],[-71.450460175,41.466376904],[-71.450450246,41.466438923],[-71.450410983,41.466492994],[-71.450387798,41.466554253],[-71.450376016,41.466613413],[-71.450364167,41.466681149],[-71.450346701,41.466738843],[-71.45033391,41.46680587],[-71.450311635,41.466869256],[-71.45026295,41.466916873],[-71.450178241,41.466956494],[-71.450134333,41.467000545],[-71.450112998,41.467066814],[-71.450094523,41.467130933],[-71.450086679,41.46716942],[-71.450059727,41.467226378],[-71.450023323,41.467276905],[-71.44996135,41.467325157],[-71.449902307,41.467358476],[-71.449894432,41.467398381],[-71.449905527,41.467441221],[-71.449876657,41.467500328],[-71.449829789,41.467556522],[-71.449829512,41.467561416],[-71.449825541,41.467624239],[-71.449865803,41.467696457],[-71.449875755,41.467764294],[-71.449882002,41.467824217],[-71.44986457,41.467876948],[-71.449825204,41.467943162],[-71.449795288,41.468017203],[-71.449770285,41.468069198],[-71.449733882,41.468118262],[-71.449691042,41.468154881],[-71.449663293,41.468178631],[-71.449587996,41.468233989],[-71.449531625,41.4682709],[-71.449478417,41.468306325],[-71.44942785,41.468348224],[-71.449384883,41.46839223],[-71.449327554,41.468447664],[-71.449275132,41.468489539],[-71.449222854,41.468502895],[-71.449163671,41.468558306],[-71.449130092,41.468610252],[-71.449135398,41.468668779],[-71.449136031,41.468714428],[-71.44914891,41.4687701],[-71.449179853,41.468822303],[-71.449218331,41.468883109],[-71.449258628,41.468949633],[-71.449293233,41.46902393],[-71.44930137,41.46907889],[-71.44930082,41.46915953],[-71.449300443,41.469214441],[-71.449292292,41.469295009],[-71.449283339,41.469351334],[-71.449273506,41.469405532],[-71.449245474,41.469479596],[-71.449217613,41.469530149],[-71.449177337,41.469591332],[-71.449153273,41.469646209],[-71.449157506,41.469716102],[-71.449192184,41.469774734],[-71.449223128,41.469826937],[-71.449231569,41.469841966],[-71.449267225,41.469896321],[-71.449302915,41.469944227],[-71.449345232,41.469995795],[-71.449390303,41.47006303],[-71.449428853,41.470109542],[-71.449471236,41.47015466],[-71.449524855,41.470217645],[-71.449530079,41.470225698],[-71.449557716,41.470268385],[-71.449582839,41.470337693],[-71.449583335,41.470404062],[-71.449556312,41.470471014],[-71.449529867,41.470498195],[-71.449511395,41.470517192],[-71.44949177,41.470612002],[-71.449479011,41.470675416],[-71.449487145,41.470733235],[-71.449520916,41.470787589],[-71.449529636,41.47079594],[-71.44957178,41.470836302],[-71.449633,41.470901485],[-71.449687702,41.470941623],[-71.449760468,41.470978316],[-71.449827616,41.471006384],[-71.449898529,41.471041658],[-71.449985561,41.471072639],[-71.450069797,41.471102933],[-71.45014539,41.47114173],[-71.450232354,41.471182774],[-71.450292839,41.471215824],[-71.450370216,41.471268894],[-71.45041253,41.471326133],[-71.450435771,41.47139258],[-71.45045807,41.471459714],[-71.450479392,41.471531169],[-71.450485507,41.471606071],[-71.450484997,41.471678112],[-71.450480849,41.471733753],[-71.450496556,41.471791575],[-71.450525618,41.47184165],[-71.450525211,41.471898002],[-71.450521941,41.471958629],[-71.450516852,41.472012829],[-71.450516786,41.472020674],[-71.450511666,41.472075582],[-71.450515058,41.472132645],[-71.45051374,41.472186869],[-71.450497216,41.472243877],[-71.450477129,41.472266647],[-71.450442003,41.472273607],[-71.450426621,41.472347128],[-71.450408699,41.472402352],[-71.450355738,41.472469796],[-71.450318341,41.472542872],[-71.450329791,41.472600967],[-71.45034404,41.472657005],[-71.450344253,41.472737165],[-71.450319717,41.472812397],[-71.450285319,41.472859929],[-71.450226853,41.472928765],[-71.450141819,41.47298428],[-71.450077139,41.473026813],[-71.450006011,41.473070693],[-71.449949568,41.473117415],[-71.449859943,41.473171601],[-71.44979705,41.473222413],[-71.449735946,41.473280179],[-71.449686731,41.473337333],[-71.44965868,41.473395914],[-71.449637958,41.473453149],[-71.449613555,41.4735118],[-71.449581791,41.473574518],[-71.449548204,41.473634492],[-71.449527374,41.473673591],[-71.449515497,41.473695838],[-71.4494838,41.473750255],[-71.449453048,41.473801242],[-71.449401262,41.473840395],[-71.449345765,41.473881606],[-71.449294858,41.473923504],[-71.44925678,41.473971697],[-71.449215902,41.474021262],[-71.449162125,41.474078345],[-71.44915693,41.474150177],[-71.449141744,41.474204716],[-71.449138473,41.474265503],[-71.449153534,41.474331947],[-71.449181461,41.474394944],[-71.449201146,41.474459309],[-71.44920237,41.474527759],[-71.44919444,41.47459751],[-71.449175406,41.474672744],[-71.449159139,41.474747979],[-71.44914564,41.474821889],[-71.449130352,41.474890904],[-71.449117832,41.474957176],[-71.449108991,41.475024182],[-71.449103829,41.475092584],[-71.449086719,41.475157413],[-71.449053098,41.475220176],[-71.449014007,41.475278706],[-71.448982278,41.475333146],[-71.44895696,41.475393146],[-71.448930666,41.475458017],[-71.448907138,41.475524238],[-71.448879965,41.4755849],[-71.448856472,41.475645587],[-71.448834801,41.475709064],[-71.448811208,41.475780157],[-71.448786703,41.475851203],[-71.448764966,41.475920902],[-71.448745115,41.475989915],[-71.448733541,41.476052025],[-71.448730271,41.47611144],[-71.44871596,41.476172908],[-71.448697024,41.476238445],[-71.44868268,41.47630403],[-71.448678432,41.476368979],[-71.448667802,41.47642974],[-71.448652579,41.476490476],[-71.448637323,41.476555352],[-71.448622946,41.476623704],[-71.448610391,41.476695511],[-71.448607931,41.476768076],[-71.448606415,41.476839933],[-71.448601156,41.476914556],[-71.448590424,41.476987758],[-71.448574222,41.477056773],[-71.448554374,41.477120274],[-71.44853912,41.477183069],[-71.448530279,41.477248702],[-71.448514077,41.47731703],[-71.448494231,41.4773798],[-71.448481841,41.477433653],[-71.448493125,41.477509038],[-71.448511966,41.477564415],[-71.448529831,41.477623245],[-71.44854675,41.477686236],[-71.448564614,41.477746461],[-71.44856948,41.477823147],[-71.448550445,41.477897717],[-71.44856466,41.477957186],[-71.448589786,41.478026425],[-71.448623247,41.478090865],[-71.448661336,41.478149109],[-71.44868653,41.478208674],[-71.448693322,41.478272256],[-71.448692819,41.478332381],[-71.448689549,41.478390423],[-71.448668889,41.478443519],[-71.44863631,41.478493155],[-71.448608258,41.478548991],[-71.448587533,41.478606912],[-71.448573219,41.478671124],[-71.448557898,41.478740162],[-71.448546252,41.478815422],[-71.448542851,41.47888657],[-71.448535864,41.478953576],[-71.448527024,41.4790185],[-71.448519126,41.479084133],[-71.448513932,41.479153176],[-71.448517043,41.479218151],[-71.4485239,41.47927693],[-71.448532614,41.479333652],[-71.448551426,41.479387656],[-71.448570267,41.479443056],[-71.448589012,41.479505317],[-71.448604141,41.479564168],[-71.448606408,41.479620818],[-71.448613265,41.479678889],[-71.448618044,41.479711526],[-71.44862367,41.479750111],[-71.448610269,41.479814324],[-71.44854636,41.479871379],[-71.448453275,41.47990411],[-71.448389633,41.479931434],[-71.448332339,41.479967794],[-71.448288753,41.480014567],[-71.448268062,41.480066953],[-71.448284201,41.480116817],[-71.448337991,41.480164754],[-71.448406467,41.480217637],[-71.44848139,41.480269128],[-71.448541597,41.480318486],[-71.448580696,41.480369801],[-71.448590289,41.48042929],[-71.448589819,41.480485962],[-71.448580946,41.480553608],[-71.448519736,41.480619698],[-71.448467879,41.480663654],[-71.448415141,41.480706946],[-71.448366052,41.480751612],[-71.448316051,41.480794219],[-71.448255821,41.480851276],[-71.448203894,41.480906324],[-71.448149235,41.48095579],[-71.447954687,41.481035701],[-71.447900129,41.481072772],[-71.447854617,41.481129904],[-71.447820113,41.481188481],[-71.447795706,41.481247818],[-71.447778558,41.481318204],[-71.447761543,41.481374113],[-71.447746286,41.481437594],[-71.447741124,41.481502542],[-71.447744265,41.481567518],[-71.447769391,41.481637443],[-71.447796507,41.481689393],[-71.447823587,41.481748273],[-71.447843313,41.481801592],[-71.447820593,41.481879545],[-71.44779804,41.481939569],[-71.447770896,41.481997509],[-71.447730888,41.482054666],[-71.447689023,41.482114567],[-71.447659112,41.482171088],[-71.447646689,41.482227709],[-71.447674517,41.482301774],[-71.447706325,41.482344098],[-71.447689957,41.482427658],[-71.447688474,41.48249469],[-71.447687904,41.482560303],[-71.44768561,41.482614893],[-71.447704286,41.482686851],[-71.447742445,41.482736107],[-71.447788941,41.482779879],[-71.44785019,41.482820936],[-71.447931633,41.48286143],[-71.448017636,41.482904693],[-71.448106406,41.48294933],[-71.448139268,41.482967526],[-71.44818964,41.482995359],[-71.448273788,41.483038621],[-71.448349695,41.483081834],[-71.448420974,41.483131242],[-71.448475611,41.483188876],[-71.448521875,41.483258216],[-71.448553482,41.483324713],[-71.448575908,41.483387685],[-71.44860022,41.483448621],[-71.448598809,41.483503234],[-71.448585542,41.483549449],[-71.448553194,41.483573471],[-71.448530067,41.483590659],[-71.448450586,41.483643476],[-71.448360066,41.483694184],[-71.448282509,41.483736664],[-71.448254521,41.483785571],[-71.448282516,41.483842392],[-71.448314159,41.483903332],[-71.448328277,41.483971126],[-71.448310316,41.484031174],[-71.448263016,41.48407934],[-71.448217538,41.484129542],[-71.448198664,41.484189591],[-71.448172365,41.48425581],[-71.448134991,41.484326805],[-71.448072866,41.484390058],[-71.447988826,41.484438047],[-71.447905766,41.484477049],[-71.447830979,41.484515368],[-71.447771819,41.484560006],[-71.447712596,41.484606726],[-71.447668907,41.484663126],[-71.447645374,41.484730079],[-71.447638357,41.484795667],[-71.447639674,41.484859292],[-71.447642787,41.484921477],[-71.4476515,41.484978908],[-71.447653766,41.485035558],[-71.447652348,41.485096392],[-71.447645296,41.485166851],[-71.447632771,41.485235867],[-71.447617349,41.485313915],[-71.447603812,41.485392628],[-71.447589396,41.485467887],[-71.447575963,41.485532077],[-71.447569951,41.485594235],[-71.44756844,41.48565779],[-71.447567933,41.485720682],[-71.447567335,41.485784261],[-71.447567708,41.485849235],[-71.447583784,41.485903238],[-71.447645104,41.485934598],[-71.447722128,41.485953661],[-71.447760324,41.48595951],[-71.447801074,41.485965772],[-71.447879986,41.485982046],[-71.447966193,41.486003239],[-71.448060674,41.486023042],[-71.448145973,41.486040027],[-71.448222084,41.486060438],[-71.448287087,41.486089078],[-71.448343715,41.486131505],[-71.448401154,41.486186373],[-71.448439247,41.48624528],[-71.448460794,41.486305529],[-71.448463905,41.486371213],[-71.44846239,41.486440303],[-71.448454427,41.486510076],[-71.448440045,41.486581173],[-71.448433027,41.486648865],[-71.448431578,41.486711734],[-71.448411796,41.486765538],[-71.448369085,41.486815787],[-71.448328196,41.486868118],[-71.448307467,41.486927457],[-71.4482968,41.486993043],[-71.448274279,41.487048905],[-71.448226774,41.48712193],[-71.448161911,41.487183833],[-71.448100019,41.487219436],[-71.448031644,41.487260572],[-71.44796053,41.487303101],[-71.447890267,41.487347665],[-71.447824625,41.48739365],[-71.447770936,41.487439686],[-71.447723634,41.48748577],[-71.447680984,41.487533229],[-71.447638338,41.487577257],[-71.447602851,41.487643404],[-71.447618014,41.487698093],[-71.447657055,41.487750804],[-71.447686031,41.487801382],[-71.447694576,41.487878138],[-71.447686549,41.487951364],[-71.447625496,41.488000164],[-71.447539659,41.488045316],[-71.447479656,41.488075454],[-71.447393823,41.488114408],[-71.447317945,41.488144625],[-71.447261793,41.48818632],[-71.447239134,41.488223359],[-71.4472326,41.488254025],[-71.447244633,41.488294156],[-71.447247949,41.488305215],[-71.447262976,41.488340442],[-71.44727227,41.488355723],[-71.447314075,41.48841326],[-71.447330965,41.488476892],[-71.44731756,41.488542477],[-71.447289302,41.488619079],[-71.447265868,41.488674254],[-71.447241491,41.488729405],[-71.447215256,41.488788032],[-71.44718622,41.488849401],[-71.447159037,41.488912853],[-71.447131858,41.48897212],[-71.447105622,41.489032119],[-71.447081211,41.489091432],[-71.447066962,41.489146657],[-71.447047244,41.489194263],[-71.44699707,41.48925416],[-71.446969987,41.489307205],[-71.446960265,41.489368698],[-71.446949663,41.489425983],[-71.446924376,41.489478367],[-71.446905535,41.489532171],[-71.446903173,41.489593667],[-71.446906281,41.489660724],[-71.446918575,41.489728516],[-71.446940024,41.489795649],[-71.446972578,41.489860089],[-71.447013406,41.489922475],[-71.447053357,41.489978639],[-71.447072201,41.49003333],[-71.447074469,41.490087922],[-71.447085005,41.490147434],[-71.447129517,41.490205682],[-71.44718595,41.490268166],[-71.447239645,41.490329939],[-71.44729155,41.490386178],[-71.447353688,41.490427212],[-71.447423319,41.490455214],[-71.447503183,41.49046664],[-71.447594187,41.490468465],[-71.44769526,41.490468991],[-71.447804574,41.490472952],[-71.447912058,41.490481096],[-71.448020389,41.490496811],[-71.448130511,41.490516003],[-71.448229524,41.490545527],[-71.448319284,41.490581176],[-71.448409012,41.490621033],[-71.448502387,41.490662927],[-71.448603124,41.490704893],[-71.448703923,41.490744069],[-71.448803747,41.49078672],[-71.448899858,41.4908328],[-71.448994081,41.49088096],[-71.449089246,41.49093047],[-71.449185355,41.490978608],[-71.449267655,41.491026009],[-71.449334319,41.491078159],[-71.449384369,41.491136453],[-71.449418783,41.491198126],[-71.44942004,41.491263809],[-71.449402014,41.491328684],[-71.449379392,41.4913963],[-71.449358564,41.491463895],[-71.449335975,41.491528767],[-71.449313389,41.491588768],[-71.449286243,41.491646],[-71.449257272,41.491703208],[-71.44923283,41.491763917],[-71.449212066,41.491828058],[-71.449196872,41.491888131],[-71.449200964,41.491944827],[-71.449261112,41.492005254],[-71.449305234,41.492022792],[-71.449329773,41.492032545],[-71.449404944,41.492058444],[-71.449481031,41.492079586],[-71.449512872,41.492086713],[-71.44955995,41.492097208],[-71.449644343,41.492115587],[-71.449733327,41.492136049],[-71.449825079,41.49215793],[-71.449912112,41.49218532],[-71.449999172,41.492216827],[-71.450019696,41.492226876],[-71.450073301,41.492253108],[-71.450129936,41.492294893],[-71.45016979,41.49236551],[-71.450132448,41.492431017],[-71.450089601,41.492496452],[-71.450077889,41.492576561],[-71.450079277,41.492631152],[-71.450082322,41.492705824],[-71.450058723,41.492778243],[-71.450025942,41.492846519],[-71.450016088,41.492923883],[-71.450053239,41.492988302],[-71.450102315,41.493051444],[-71.450123019,41.493104077],[-71.450121507,41.49317248],[-71.450098952,41.493231795],[-71.450071741,41.493295225],[-71.450050976,41.493360098],[-71.450041258,41.49341951],[-71.450061762,41.49349563],[-71.450091655,41.493545523],[-71.450111415,41.493599528],[-71.450114561,41.493661758],[-71.450109401,41.493726638],[-71.450098734,41.493793643],[-71.450095397,41.49386065],[-71.450094828,41.493929054],[-71.450096995,41.493998191],[-71.45010099,41.494064562],[-71.450100489,41.494122605],[-71.45010647,41.494177222],[-71.450120726,41.494230515],[-71.450113608,41.494309253],[-71.450083592,41.494380274],[-71.450079412,41.494435572],[-71.450066076,41.494492833],[-71.450057168,41.494566059],[-71.450045624,41.494625424],[-71.450031311,41.494686184],[-71.450016997,41.494748978],[-71.450022911,41.49481121],[-71.450034332,41.494872072],[-71.450025557,41.494930776],[-71.450006651,41.494990824],[-71.450000617,41.49500555],[-71.44998224,41.495050161],[-71.449959651,41.495113616],[-71.44994068,41.495179862],[-71.449907116,41.49523565],[-71.449858861,41.495288641],[-71.449810702,41.495336785],[-71.449761569,41.49538495],[-71.449723415,41.495436574],[-71.449691674,41.495494467],[-71.449659898,41.495557917],[-71.449640925,41.495624872],[-71.449622896,41.495692468],[-71.44960399,41.49575183],[-71.449596158,41.495809116],[-71.449615821,41.495871423],[-71.449656656,41.495933807],[-71.449711273,41.495993522],[-71.449768689,41.496051842],[-71.449822459,41.496104627],[-71.449879064,41.496151215],[-71.449932899,41.496199174],[-71.449985757,41.496251935],[-71.450035848,41.496303986],[-71.450078638,41.496355325],[-71.450117719,41.496405313],[-71.450147612,41.496455891],[-71.450163724,41.496509162],[-71.450170453,41.496580382],[-71.45017272,41.49663845],[-71.450172219,41.496697889],[-71.450160707,41.496755174],[-71.450130791,41.496812381],[-71.450084458,41.496857072],[-71.450026206,41.4968962],[-71.449960657,41.496929059],[-71.449886768,41.496969461],[-71.44983402,41.497009986],[-71.449808016,41.497043045],[-71.449857227,41.497092351],[-71.449924134,41.497113398],[-71.450003903,41.497140762],[-71.45009003,41.497168106],[-71.450163551,41.497171912],[-71.450237106,41.497170205],[-71.450331772,41.497170658],[-71.450405295,41.49717101],[-71.450543853,41.497175232],[-71.450631844,41.497191873],[-71.450697774,41.497217036],[-71.45076291,41.497247046],[-71.450824275,41.497275728],[-71.45089686,41.497310545],[-71.450918788,41.49735618],[-71.450938063,41.497411579],[-71.451007053,41.497454787],[-71.451067623,41.497489026],[-71.451133728,41.497524571],[-71.451207256,41.497560783],[-71.451284463,41.497599054],[-71.451351685,41.49764711],[-71.451403211,41.49769461],[-71.451472432,41.497753803],[-71.451519277,41.497796476],[-71.451578426,41.497861246],[-71.451590309,41.497917419],[-71.451585669,41.497979258],[-71.451565304,41.498039168],[-71.45154591,41.498101847],[-71.451547807,41.498168514],[-71.451558126,41.498242045],[-71.451579546,41.49831828],[-71.451609243,41.498389555],[-71.451649014,41.498455209],[-71.451697975,41.498517321],[-71.451748761,41.498579435],[-71.451801431,41.498644293],[-71.451855045,41.49870842],[-71.451904034,41.498774009],[-71.451941891,41.498836185],[-71.451963995,41.49889369],[-71.451964864,41.498952717],[-71.451963964,41.499017302],[-71.45196592,41.499088108]]]]}}"}, +{"type": "precinct", "typeId": 3202, "areaId": 25964, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":303,\"NAME\":\"3202\",\"SHAPE_Length\":0.18373884401315,\"SHAPE_Area\":-0.001325216217943},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.457966518,41.499066475],[-71.458115519,41.499077475],[-71.466376521,41.498572475],[-71.469565523,41.498380475],[-71.470946523,41.498361475],[-71.473739524,41.498126475],[-71.476001525,41.498003474],[-71.478687525,41.497893474],[-71.478728526,41.497885474],[-71.482973527,41.497600474],[-71.487180528,41.497413474],[-71.489210529,41.497205474],[-71.491527529,41.497134473],[-71.49138553,41.497000473],[-71.491333529,41.496922473],[-71.49118853,41.496663474],[-71.490685529,41.495629474],[-71.490524529,41.495358474],[-71.490410529,41.495125474],[-71.490372529,41.495015473],[-71.490364529,41.494858473],[-71.490387529,41.494713473],[-71.490473529,41.494484473],[-71.490578529,41.494225473],[-71.490715529,41.493908473],[-71.49074653,41.493790473],[-71.490761529,41.493725473],[-71.490776529,41.493546472],[-71.490753529,41.493302473],[-71.490707529,41.493115473],[-71.490631529,41.492882473],[-71.490471529,41.492508473],[-71.490387529,41.492333473],[-71.490318528,41.492203472],[-71.490250529,41.492104472],[-71.490166529,41.492016473],[-71.490067528,41.491928472],[-71.489899529,41.491848473],[-71.489456529,41.491688473],[-71.489174528,41.491547473],[-71.488777528,41.491314473],[-71.488289529,41.491051472],[-71.488052528,41.490899472],[-71.487976528,41.490826472],[-71.487816528,41.490658473],[-71.488075528,41.490570472],[-71.488113528,41.490551472],[-71.487671528,41.490181472],[-71.486938528,41.489552472],[-71.486588528,41.489273473],[-71.486084528,41.488861472],[-71.485886527,41.488724472],[-71.485855527,41.488709472],[-71.485809528,41.488678472],[-71.485329527,41.488476472],[-71.484834527,41.488290472],[-71.484550527,41.488179472],[-71.484222527,41.488045472],[-71.483940527,41.487923472],[-71.483658526,41.487786472],[-71.483528527,41.487702472],[-71.483429527,41.487622472],[-71.483337526,41.487530472],[-71.483261526,41.487435472],[-71.483192526,41.487309472],[-71.483147526,41.487172472],[-71.483093526,41.487038472],[-71.482803526,41.486142472],[-71.482698526,41.485791472],[-71.482399526,41.484803472],[-71.482353526,41.484627472],[-71.482300526,41.484455472],[-71.482231526,41.484162472],[-71.482185526,41.483914471],[-71.482178526,41.483776471],[-71.482178526,41.483406471],[-71.482185526,41.483311471],[-71.482185526,41.483216471],[-71.482285525,41.482170471],[-71.482338526,41.48155247],[-71.482384525,41.480938471],[-71.482506526,41.47964147],[-71.482544526,41.47915447],[-71.482574526,41.47876847],[-71.482658525,41.47801647],[-71.482948525,41.47642247],[-71.483192526,41.47501847],[-71.483208526,41.474968469],[-71.483383526,41.474018469],[-71.483704526,41.472088469],[-71.483780526,41.471688469],[-71.484016526,41.470337469],[-71.484093526,41.469929468],[-71.484245526,41.469010469],[-71.484467525,41.467827468],[-71.484772526,41.466079468],[-71.484833526,41.465714468],[-71.484871526,41.465611468],[-71.484947526,41.465481468],[-71.485069526,41.465344468],[-71.485985526,41.464520467],[-71.486146526,41.464382467],[-71.486373526,41.464178467],[-71.486538526,41.464017468],[-71.486715526,41.463822468],[-71.486777526,41.463713467],[-71.486801526,41.463602467],[-71.486794526,41.463448467],[-71.486735526,41.463081467],[-71.486649526,41.462697467],[-71.486526526,41.462262467],[-71.486343526,41.461586467],[-71.486267526,41.461207467],[-71.486198526,41.460865466],[-71.486015526,41.460266467],[-71.485985526,41.460148466],[-71.485939526,41.459896466],[-71.485947526,41.459717466],[-71.485970525,41.459538466],[-71.485985526,41.459385466],[-71.486015526,41.459202467],[-71.486183526,41.458332466],[-71.486328526,41.457516466],[-71.486336526,41.457329466],[-71.486320525,41.457135466],[-71.486259526,41.456704466],[-71.486221526,41.456250466],[-71.486481526,41.456227466],[-71.486580526,41.456215466],[-71.486832526,41.456196466],[-71.486938526,41.456196466],[-71.487000526,41.456200465],[-71.487175526,41.456223465],[-71.487251526,41.456269466],[-71.487320526,41.456330466],[-71.487373526,41.456398465],[-71.487419526,41.456478466],[-71.487442526,41.456532465],[-71.487457526,41.456589466],[-71.487480526,41.456643466],[-71.487572526,41.456978466],[-71.487579526,41.457032466],[-71.487595526,41.457089466],[-71.487602526,41.457142466],[-71.487617526,41.457188466],[-71.487625527,41.457234465],[-71.487663527,41.457314466],[-71.487686526,41.457348466],[-71.487740526,41.457409465],[-71.487900526,41.457528466],[-71.487984526,41.457554466],[-71.488029526,41.457562466],[-71.488174526,41.457611466],[-71.488251526,41.457627466],[-71.488335526,41.457631466],[-71.488503527,41.457623466],[-71.488899526,41.457638466],[-71.489609527,41.457657466],[-71.489746527,41.457657466],[-71.489769527,41.457661466],[-71.489815527,41.457661466],[-71.489891527,41.457646466],[-71.489929527,41.457631466],[-71.489967527,41.457608466],[-71.490028527,41.457554466],[-71.490067527,41.457528466],[-71.490120527,41.457474466],[-71.490540527,41.457089466],[-71.490898527,41.456768465],[-71.490990527,41.456707465],[-71.491066527,41.456620466],[-71.491127527,41.456517465],[-71.491165527,41.456410466],[-71.491211528,41.456231466],[-71.491222527,41.456183465],[-71.491318527,41.455754465],[-71.491364527,41.455494466],[-71.491409528,41.455304465],[-71.491447528,41.455185466],[-71.491486528,41.455101465],[-71.491516527,41.455017465],[-71.491646527,41.454815466],[-71.492012528,41.454293465],[-71.492020527,41.454293465],[-71.492043527,41.454255465],[-71.492058527,41.454216465],[-71.492104528,41.454132466],[-71.492111528,41.454102465],[-71.492126528,41.454068465],[-71.492157527,41.453923465],[-71.492157527,41.453888465],[-71.492165528,41.453854465],[-71.492165528,41.453736465],[-71.492157527,41.453701465],[-71.492157527,41.453671465],[-71.492149528,41.453640465],[-71.492134527,41.453610465],[-71.492111528,41.453579465],[-71.492050528,41.453434465],[-71.492035527,41.453377465],[-71.492004527,41.453331465],[-71.491928527,41.453194465],[-71.491867527,41.453106465],[-71.491844527,41.453057465],[-71.491783527,41.452954465],[-71.491737528,41.452893465],[-71.491714527,41.452828465],[-71.491714527,41.452702465],[-71.491714527,41.452671464],[-71.491722527,41.452622465],[-71.491737527,41.452576465],[-71.491745527,41.452530465],[-71.491821527,41.452301464],[-71.491844527,41.452198465],[-71.491920527,41.451683465],[-71.491951527,41.451584464],[-71.491974528,41.451481464],[-71.491997527,41.451432465],[-71.492012528,41.451386464],[-71.492058527,41.451298465],[-71.492149528,41.451149464],[-71.492210527,41.451065465],[-71.492287528,41.450985465],[-71.492462528,41.450840464],[-71.492569527,41.450737465],[-71.492607527,41.450688464],[-71.492638528,41.450661465],[-71.492661527,41.450631464],[-71.492706527,41.450535464],[-71.492737527,41.450394464],[-71.492737527,41.450360464],[-71.492744527,41.450322464],[-71.492744527,41.450146464],[-71.492729528,41.450096464],[-71.492722527,41.450047464],[-71.492706527,41.450001464],[-71.492638528,41.449955465],[-71.491631527,41.449341464],[-71.491066527,41.448994464],[-71.491013527,41.448956464],[-71.490952527,41.448922464],[-71.490761527,41.448777464],[-71.490677527,41.448697464],[-71.490662527,41.448677464],[-71.490593526,41.448613465],[-71.490555526,41.448571464],[-71.490524527,41.448525464],[-71.490494526,41.448460464],[-71.490463527,41.448315464],[-71.490395527,41.448094464],[-71.490334527,41.447827464],[-71.490326526,41.447812464],[-71.490082527,41.446415463],[-71.489858526,41.445049463],[-71.489807526,41.444771464],[-71.489761526,41.444523463],[-71.489738526,41.444359464],[-71.489662526,41.444050464],[-71.489594526,41.443882463],[-71.489326526,41.443344463],[-71.488945526,41.442608463],[-71.488815526,41.442322463],[-71.488686526,41.442028463],[-71.488457526,41.441521463],[-71.488052526,41.440903463],[-71.487823525,41.440556463],[-71.487444525,41.439995462],[-71.487319525,41.439811463],[-71.487259525,41.439721462],[-71.486679525,41.438816462],[-71.486567525,41.438634462],[-71.486547525,41.438602462],[-71.486465525,41.438469463],[-71.486000525,41.437851462],[-71.485802524,41.437615462],[-71.485558525,41.437352462],[-71.485260524,41.437065462],[-71.484978524,41.436814462],[-71.484825524,41.436684462],[-71.484314524,41.436283462],[-71.484124524,41.436139462],[-71.483765523,41.435856462],[-71.483597524,41.435727462],[-71.483513523,41.435643462],[-71.483452524,41.435585462],[-71.483360523,41.435467462],[-71.483257524,41.435500462],[-71.482811523,41.435688462],[-71.482628524,41.435765462],[-71.482239524,41.436608462],[-71.481723523,41.437674462],[-71.481606523,41.437928462],[-71.481581523,41.437982463],[-71.481201523,41.438805462],[-71.480690523,41.439915463],[-71.480506523,41.440285463],[-71.480362523,41.440575463],[-71.480179523,41.440903463],[-71.479988523,41.441227463],[-71.479782523,41.441552463],[-71.479561523,41.441872463],[-71.479355523,41.442158464],[-71.479317523,41.442212463],[-71.479027522,41.442597463],[-71.478737522,41.442952464],[-71.478404522,41.443338463],[-71.478279523,41.443474463],[-71.478134522,41.443638464],[-71.477936522,41.443844463],[-71.477814523,41.443978463],[-71.476359522,41.445399464],[-71.475266521,41.446465464],[-71.474945522,41.446770464],[-71.474905522,41.446808464],[-71.473648521,41.448014464],[-71.472626521,41.449036465],[-71.472565521,41.449101465],[-71.472099521,41.449532464],[-71.47140552,41.450184465],[-71.47081752,41.450756465],[-71.47057352,41.450993465],[-71.46993352,41.451649465],[-71.46962052,41.452065466],[-71.46932252,41.452599465],[-71.46925452,41.452778466],[-71.469139519,41.453080465],[-71.46911652,41.453141465],[-71.46897952,41.453785465],[-71.46895752,41.454249466],[-71.46894852,41.454426465],[-71.46891852,41.454811466],[-71.46885752,41.455147466],[-71.46873552,41.455609466],[-71.46803352,41.457207467],[-71.467794519,41.457731467],[-71.46761352,41.458126467],[-71.467369519,41.458599466],[-71.46710252,41.459130467],[-71.46698852,41.459347467],[-71.466630519,41.460029467],[-71.466141519,41.460961467],[-71.465660519,41.461888468],[-71.465271519,41.462674468],[-71.464867519,41.463471468],[-71.464661519,41.463826467],[-71.464577519,41.463963468],[-71.464226519,41.464489468],[-71.464005519,41.464894468],[-71.463749519,41.465498468],[-71.463722519,41.465561468],[-71.463601518,41.465857468],[-71.463470519,41.466179469],[-71.463381519,41.466399469],[-71.462929519,41.467518469],[-71.462890519,41.467602469],[-71.462784518,41.467835469],[-71.462624519,41.468159469],[-71.462563519,41.468293468],[-71.462173519,41.469040469],[-71.462110519,41.469149469],[-71.461838519,41.469635469],[-71.461769518,41.469746469],[-71.461380518,41.47043347],[-71.461220519,41.470768469],[-71.461098518,41.471142469],[-71.460999518,41.47155847],[-71.460973518,41.471880469],[-71.460953518,41.472153469],[-71.460907519,41.473050469],[-71.460884518,41.47338547],[-71.460870518,41.473654469],[-71.460861518,41.47389647],[-71.460823518,41.47422447],[-71.460693519,41.47491147],[-71.460297518,41.47677647],[-71.460258518,41.476910471],[-71.460114518,41.477486471],[-71.459770518,41.478802471],[-71.459450518,41.480000471],[-71.459389518,41.480202471],[-71.459358518,41.480336471],[-71.459213518,41.480908472],[-71.459192519,41.480986472],[-71.459038518,41.481552471],[-71.459023518,41.481587472],[-71.458839518,41.482254471],[-71.458694518,41.482895472],[-71.458488518,41.483860472],[-71.458382518,41.484318472],[-71.458314518,41.484662472],[-71.458237518,41.485047472],[-71.458061518,41.485806472],[-71.457817518,41.486924473],[-71.457756518,41.487164473],[-71.457520518,41.488148473],[-71.457428518,41.488514472],[-71.457199518,41.489479473],[-71.457100518,41.489861473],[-71.456703518,41.491490474],[-71.456642518,41.491730474],[-71.456581517,41.491970473],[-71.456505518,41.492348474],[-71.456459518,41.492546474],[-71.456398518,41.493039473],[-71.456398518,41.493096474],[-71.456359518,41.493723474],[-71.456358518,41.493747474],[-71.456377518,41.494186474],[-71.456421518,41.494508474],[-71.456467518,41.494762474],[-71.456505518,41.495007475],[-71.456657518,41.495686475],[-71.456825518,41.496342474],[-71.457127518,41.497050475],[-71.457153518,41.497097474],[-71.457397519,41.497700474],[-71.457420518,41.497765475],[-71.457658518,41.498321475],[-71.457726519,41.498478475],[-71.457825519,41.498730475],[-71.457966518,41.499066475]]]]}}"}, +{"type": "precinct", "typeId": 3203, "areaId": 25965, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":304,\"NAME\":\"3203\",\"SHAPE_Length\":0.14891452306001,\"SHAPE_Area\":-0.0013643525000672},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.507886535,41.500068474],[-71.510114535,41.500452473],[-71.512130536,41.500820473],[-71.512328537,41.500857474],[-71.512801537,41.500949474],[-71.513495537,41.501071474],[-71.514335537,41.501235474],[-71.514896537,41.501349473],[-71.515007537,41.501110474],[-71.515209537,41.500553473],[-71.515236538,41.500481474],[-71.515704538,41.499216473],[-71.516030538,41.498336473],[-71.516060537,41.498257473],[-71.516960537,41.495804473],[-71.517601537,41.494107472],[-71.518242538,41.492237472],[-71.518335538,41.491941472],[-71.518356538,41.491875472],[-71.518707538,41.490887472],[-71.518944538,41.490239471],[-71.519424538,41.488961472],[-71.519661538,41.488305471],[-71.519905538,41.487603471],[-71.520218538,41.486756471],[-71.520241538,41.486710471],[-71.520393538,41.48631347],[-71.520470538,41.486111471],[-71.520607538,41.48572647],[-71.520622539,41.48567247],[-71.521004539,41.48457047],[-71.521049539,41.48445247],[-71.521118538,41.48423447],[-71.521202539,41.48396747],[-71.521286539,41.48372747],[-71.521400539,41.48342247],[-71.521614539,41.48281547],[-71.521629539,41.48275047],[-71.521647539,41.48269147],[-71.521782539,41.482258469],[-71.521988539,41.48167847],[-71.522285538,41.48077047],[-71.522438538,41.48033947],[-71.522598539,41.479947469],[-71.523048539,41.479977469],[-71.523064539,41.479981469],[-71.523125539,41.479782469],[-71.523270539,41.479401469],[-71.523460539,41.478848469],[-71.523796539,41.477658469],[-71.523880539,41.477364469],[-71.524170539,41.476441469],[-71.524277539,41.476082468],[-71.524422539,41.475430468],[-71.524490539,41.475163468],[-71.524567539,41.474865468],[-71.524750539,41.474198468],[-71.52479654,41.474053468],[-71.524933539,41.473545468],[-71.525093539,41.473080468],[-71.525337539,41.472435468],[-71.525741539,41.471184467],[-71.525801539,41.470959468],[-71.525891539,41.470624467],[-71.526037539,41.470137467],[-71.526131539,41.469796467],[-71.526154539,41.469654468],[-71.526192539,41.469258467],[-71.526230539,41.468758467],[-71.52627454,41.468262467],[-71.52629754,41.467993467],[-71.526321539,41.467736467],[-71.526398539,41.466507467],[-71.526443539,41.466015466],[-71.526456539,41.465765466],[-71.526459539,41.465725466],[-71.526474539,41.465584466],[-71.526474539,41.465527466],[-71.526505539,41.464833466],[-71.52651254,41.464791466],[-71.526520539,41.464520466],[-71.526558539,41.463982466],[-71.526581539,41.463581466],[-71.526611539,41.463185466],[-71.526627539,41.462613466],[-71.526642539,41.462410466],[-71.526649539,41.462361466],[-71.526649539,41.462292466],[-71.526649539,41.462090465],[-71.526695539,41.461579466],[-71.526711539,41.461480466],[-71.52672654,41.461377465],[-71.526779539,41.461121465],[-71.526833539,41.460923465],[-71.526848539,41.460812465],[-71.526865539,41.460760466],[-71.526878539,41.460724466],[-71.526947539,41.460602466],[-71.52707754,41.460427466],[-71.527237539,41.460247465],[-71.527296539,41.460166465],[-71.52732854,41.460122465],[-71.527181539,41.460128465],[-71.526471539,41.459953465],[-71.526232539,41.459895465],[-71.525243539,41.459668466],[-71.524017538,41.459408465],[-71.522563538,41.459099465],[-71.521341538,41.458849465],[-71.520364537,41.458637466],[-71.520231537,41.458620465],[-71.520116536,41.458599465],[-71.520023537,41.458656466],[-71.519547537,41.458954465],[-71.518982537,41.459305465],[-71.518982537,41.459309465],[-71.518479536,41.459618465],[-71.518318537,41.459717465],[-71.518082536,41.459809465],[-71.517967536,41.459847465],[-71.517761536,41.459904466],[-71.517433536,41.459969465],[-71.517143536,41.460034466],[-71.516777536,41.460087465],[-71.516502536,41.460133466],[-71.516014536,41.460232466],[-71.515678535,41.460320465],[-71.515587536,41.460347466],[-71.515020535,41.460488466],[-71.514946536,41.460507466],[-71.513885535,41.460865466],[-71.512939535,41.461174466],[-71.512321534,41.461380466],[-71.511673534,41.461586466],[-71.510483533,41.461945466],[-71.510307533,41.462002466],[-71.509422534,41.462265466],[-71.508987533,41.462399467],[-71.508453534,41.462529466],[-71.508057533,41.462597466],[-71.507324532,41.462693467],[-71.506294532,41.462822466],[-71.505836533,41.462895466],[-71.505226532,41.462971466],[-71.504570532,41.463063467],[-71.502617532,41.463322466],[-71.502014531,41.463406467],[-71.500816531,41.463566467],[-71.500679531,41.463581467],[-71.499908531,41.463681467],[-71.499168531,41.463776467],[-71.49821553,41.463906467],[-71.49739153,41.464001466],[-71.495583529,41.464260467],[-71.495155529,41.464314467],[-71.495033529,41.464329467],[-71.494553529,41.464409467],[-71.493652529,41.464550467],[-71.493423528,41.464585468],[-71.492470528,41.464711467],[-71.492111528,41.464749467],[-71.491737528,41.464779468],[-71.491203528,41.464768467],[-71.490921528,41.464733467],[-71.490775528,41.464720468],[-71.490540527,41.464699468],[-71.490341527,41.464646467],[-71.490120528,41.464550467],[-71.489861527,41.464367467],[-71.489578527,41.464142467],[-71.489090527,41.463772467],[-71.488968527,41.463700467],[-71.488800527,41.463627467],[-71.488640527,41.463593467],[-71.488441527,41.463589467],[-71.488029527,41.463612467],[-71.487312527,41.463665467],[-71.486954526,41.463700467],[-71.486777526,41.463713467],[-71.486715526,41.463822468],[-71.486538526,41.464017468],[-71.486373526,41.464178467],[-71.486146526,41.464382467],[-71.485985526,41.464520467],[-71.485069526,41.465344468],[-71.484947526,41.465481468],[-71.484871526,41.465611468],[-71.484833526,41.465714468],[-71.484772526,41.466079468],[-71.484467525,41.467827468],[-71.484245526,41.469010469],[-71.484093526,41.469929468],[-71.484016526,41.470337469],[-71.483780526,41.471688469],[-71.483704526,41.472088469],[-71.483383526,41.474018469],[-71.483208526,41.474968469],[-71.483192526,41.47501847],[-71.482948525,41.47642247],[-71.482658525,41.47801647],[-71.482574526,41.47876847],[-71.482544526,41.47915447],[-71.482506526,41.47964147],[-71.482384525,41.480938471],[-71.482338526,41.48155247],[-71.482285525,41.482170471],[-71.482185526,41.483216471],[-71.482185526,41.483311471],[-71.482178526,41.483406471],[-71.482178526,41.483776471],[-71.482185526,41.483914471],[-71.482231526,41.484162472],[-71.482300526,41.484455472],[-71.482353526,41.484627472],[-71.482399526,41.484803472],[-71.482698526,41.485791472],[-71.482803526,41.486142472],[-71.483093526,41.487038472],[-71.483147526,41.487172472],[-71.483192526,41.487309472],[-71.483261526,41.487435472],[-71.483337526,41.487530472],[-71.483429527,41.487622472],[-71.483528527,41.487702472],[-71.483658526,41.487786472],[-71.483940527,41.487923472],[-71.484222527,41.488045472],[-71.484550527,41.488179472],[-71.484834527,41.488290472],[-71.485329527,41.488476472],[-71.485809528,41.488678472],[-71.485855527,41.488709472],[-71.485886527,41.488724472],[-71.486084528,41.488861472],[-71.486588528,41.489273473],[-71.486938528,41.489552472],[-71.487671528,41.490181472],[-71.488113528,41.490551472],[-71.488075528,41.490570472],[-71.487816528,41.490658473],[-71.487976528,41.490826472],[-71.488052528,41.490899472],[-71.488289529,41.491051472],[-71.488777528,41.491314473],[-71.489174528,41.491547473],[-71.489456529,41.491688473],[-71.489899529,41.491848473],[-71.490067528,41.491928472],[-71.490166529,41.492016473],[-71.490250529,41.492104472],[-71.490318528,41.492203472],[-71.490387529,41.492333473],[-71.490471529,41.492508473],[-71.490631529,41.492882473],[-71.490707529,41.493115473],[-71.490753529,41.493302473],[-71.490776529,41.493546472],[-71.490761529,41.493725473],[-71.49074653,41.493790473],[-71.490715529,41.493908473],[-71.490578529,41.494225473],[-71.490473529,41.494484473],[-71.490387529,41.494713473],[-71.490364529,41.494858473],[-71.490372529,41.495015473],[-71.490410529,41.495125474],[-71.490524529,41.495358474],[-71.490685529,41.495629474],[-71.49118853,41.496663474],[-71.491333529,41.496922473],[-71.49138553,41.497000473],[-71.491527529,41.497134473],[-71.491568529,41.497163474],[-71.49171253,41.497199473],[-71.49231553,41.497310473],[-71.49389453,41.497581474],[-71.495397531,41.497814474],[-71.496068531,41.497924474],[-71.496946532,41.498088474],[-71.497304531,41.498164474],[-71.498265532,41.498412474],[-71.499120532,41.498622473],[-71.499234532,41.498653474],[-71.499666532,41.498757473],[-71.499707532,41.498767474],[-71.500295533,41.498931473],[-71.500997533,41.499111474],[-71.501561533,41.499229474],[-71.502088533,41.499328474],[-71.502385533,41.499400473],[-71.502698534,41.499488474],[-71.502927533,41.499576473],[-71.503225534,41.499675474],[-71.503438534,41.499709473],[-71.503835533,41.499725474],[-71.504369534,41.499729473],[-71.504956534,41.499725474],[-71.505355534,41.499728473],[-71.505727534,41.499736474],[-71.506047534,41.499755474],[-71.506398535,41.499805474],[-71.506810535,41.499885473],[-71.507322535,41.499969474],[-71.507886535,41.500068474]]]]}}"}, +{"type": "precinct", "typeId": 3204, "areaId": 25963, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":302,\"NAME\":\"3204\",\"SHAPE_Length\":0.12099483845848,\"SHAPE_Area\":-0.00046623170920565},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.486777526,41.463713467],[-71.486954526,41.463700467],[-71.487312527,41.463665467],[-71.488029527,41.463612467],[-71.488441527,41.463589467],[-71.488640527,41.463593467],[-71.488800527,41.463627467],[-71.488968527,41.463700467],[-71.489090527,41.463772467],[-71.489578527,41.464142467],[-71.489861527,41.464367467],[-71.490120528,41.464550467],[-71.490341527,41.464646467],[-71.490540527,41.464699468],[-71.490775528,41.464720468],[-71.490921528,41.464733467],[-71.491203528,41.464768467],[-71.491737528,41.464779468],[-71.492111528,41.464749467],[-71.492470528,41.464711467],[-71.493423528,41.464585468],[-71.493652529,41.464550467],[-71.494553529,41.464409467],[-71.495033529,41.464329467],[-71.495155529,41.464314467],[-71.495583529,41.464260467],[-71.49739153,41.464001466],[-71.49821553,41.463906467],[-71.499168531,41.463776467],[-71.499908531,41.463681467],[-71.500679531,41.463581467],[-71.500816531,41.463566467],[-71.502014531,41.463406467],[-71.502617532,41.463322466],[-71.504570532,41.463063467],[-71.505226532,41.462971466],[-71.505836533,41.462895466],[-71.506294532,41.462822466],[-71.507324532,41.462693467],[-71.508057533,41.462597466],[-71.508453534,41.462529466],[-71.508987533,41.462399467],[-71.509422534,41.462265466],[-71.510307533,41.462002466],[-71.510483533,41.461945466],[-71.511673534,41.461586466],[-71.512321534,41.461380466],[-71.512939535,41.461174466],[-71.513885535,41.460865466],[-71.514946536,41.460507466],[-71.515020535,41.460488466],[-71.515587536,41.460347466],[-71.515678535,41.460320465],[-71.516014536,41.460232466],[-71.516502536,41.460133466],[-71.516777536,41.460087465],[-71.517143536,41.460034466],[-71.517433536,41.459969465],[-71.517761536,41.459904466],[-71.517967536,41.459847465],[-71.518082536,41.459809465],[-71.518318537,41.459717465],[-71.518479536,41.459618465],[-71.518982537,41.459309465],[-71.518982537,41.459305465],[-71.519547537,41.458954465],[-71.520023537,41.458656466],[-71.520116536,41.458599465],[-71.519987537,41.458560465],[-71.518918536,41.458181465],[-71.518719536,41.458143465],[-71.517588536,41.457723465],[-71.515958536,41.457150465],[-71.515228535,41.456853465],[-71.515165535,41.456817465],[-71.514967535,41.456558465],[-71.511691534,41.453497464],[-71.510888534,41.453079465],[-71.510500534,41.452992464],[-71.510357533,41.452938465],[-71.510228534,41.452864465],[-71.510006533,41.452837464],[-71.509917533,41.452807464],[-71.509808533,41.452766465],[-71.509700533,41.452718464],[-71.509626533,41.452693464],[-71.509586533,41.452681464],[-71.509439533,41.452647465],[-71.509138533,41.452585464],[-71.509009533,41.452565464],[-71.508882533,41.452539464],[-71.508752533,41.452523464],[-71.508477532,41.452486464],[-71.508119533,41.452517464],[-71.507861533,41.452529465],[-71.507727533,41.452540464],[-71.507594533,41.452555464],[-71.507113532,41.452631464],[-71.506967532,41.452646465],[-71.506404532,41.452690464],[-71.506267532,41.452696464],[-71.505915532,41.452647465],[-71.505714532,41.452661464],[-71.505821532,41.452435465],[-71.505981532,41.452092464],[-71.506256532,41.451516465],[-71.506264532,41.451493464],[-71.506493532,41.451031465],[-71.506554532,41.450890464],[-71.506676532,41.450425464],[-71.506714532,41.450241464],[-71.506775532,41.449986464],[-71.506836532,41.449398464],[-71.506844532,41.449322464],[-71.506866532,41.448601463],[-71.506874532,41.448151463],[-71.506882532,41.447956463],[-71.506866532,41.447770464],[-71.506851532,41.447491463],[-71.506859532,41.447380464],[-71.506859532,41.447293463],[-71.506889532,41.446965463],[-71.506902532,41.446885463],[-71.506912532,41.446823463],[-71.507133532,41.445771463],[-71.505775532,41.445507463],[-71.505280531,41.445397463],[-71.504608531,41.445248463],[-71.503975531,41.445126463],[-71.503654531,41.445076463],[-71.50323553,41.445065463],[-71.502907531,41.445042463],[-71.50289953,41.444893463],[-71.50169453,41.445023463],[-71.50139653,41.445050463],[-71.50119853,41.445088463],[-71.49986553,41.445255463],[-71.498534529,41.445378463],[-71.498915529,41.444641463],[-71.499276529,41.443991463],[-71.49946353,41.443665463],[-71.500349529,41.441890462],[-71.500389529,41.441810462],[-71.500423529,41.441675462],[-71.500442529,41.441429462],[-71.50045253,41.441175462],[-71.500448529,41.441106462],[-71.500427529,41.441009462],[-71.50037653,41.440867463],[-71.500291529,41.440656463],[-71.500253529,41.440578463],[-71.500178529,41.440441463],[-71.500130529,41.440377462],[-71.500072529,41.440313462],[-71.49971553,41.439979462],[-71.499538529,41.439831462],[-71.499440529,41.439749462],[-71.499067529,41.439440462],[-71.498697529,41.439182462],[-71.498541529,41.439124462],[-71.498229529,41.439010462],[-71.498068529,41.438955462],[-71.497889528,41.438900462],[-71.497623529,41.438839462],[-71.497535528,41.438823462],[-71.497350528,41.438782462],[-71.497185528,41.438754462],[-71.497041528,41.438740462],[-71.496851528,41.438734462],[-71.496753528,41.438736462],[-71.496703528,41.438734462],[-71.496597528,41.438736462],[-71.496482528,41.438747462],[-71.496420528,41.438758462],[-71.496359528,41.438764462],[-71.496291528,41.438774462],[-71.495341528,41.438886462],[-71.495183528,41.438901462],[-71.493807528,41.439029462],[-71.492999527,41.439112462],[-71.492669527,41.439142462],[-71.492504526,41.439162462],[-71.491503527,41.439250463],[-71.490733526,41.439334462],[-71.489824526,41.439351462],[-71.489593526,41.439350463],[-71.489485526,41.439339462],[-71.489474526,41.439363462],[-71.489093525,41.439314462],[-71.488718526,41.439246462],[-71.488144525,41.439118462],[-71.487695525,41.438993462],[-71.486567525,41.438634462],[-71.486679525,41.438816462],[-71.487259525,41.439721462],[-71.487319525,41.439811463],[-71.487444525,41.439995462],[-71.487823525,41.440556463],[-71.488052526,41.440903463],[-71.488457526,41.441521463],[-71.488686526,41.442028463],[-71.488815526,41.442322463],[-71.488945526,41.442608463],[-71.489326526,41.443344463],[-71.489594526,41.443882463],[-71.489662526,41.444050464],[-71.489738526,41.444359464],[-71.489761526,41.444523463],[-71.489807526,41.444771464],[-71.489858526,41.445049463],[-71.490082527,41.446415463],[-71.490326526,41.447812464],[-71.490334527,41.447827464],[-71.490395527,41.448094464],[-71.490463527,41.448315464],[-71.490494526,41.448460464],[-71.490524527,41.448525464],[-71.490555526,41.448571464],[-71.490593526,41.448613465],[-71.490662527,41.448677464],[-71.490677527,41.448697464],[-71.490761527,41.448777464],[-71.490952527,41.448922464],[-71.491013527,41.448956464],[-71.491066527,41.448994464],[-71.491631527,41.449341464],[-71.492638528,41.449955465],[-71.492706527,41.450001464],[-71.492722527,41.450047464],[-71.492729528,41.450096464],[-71.492744527,41.450146464],[-71.492744527,41.450322464],[-71.492737527,41.450360464],[-71.492737527,41.450394464],[-71.492706527,41.450535464],[-71.492661527,41.450631464],[-71.492638528,41.450661465],[-71.492607527,41.450688464],[-71.492569527,41.450737465],[-71.492462528,41.450840464],[-71.492287528,41.450985465],[-71.492210527,41.451065465],[-71.492149528,41.451149464],[-71.492058527,41.451298465],[-71.492012528,41.451386464],[-71.491997527,41.451432465],[-71.491974528,41.451481464],[-71.491951527,41.451584464],[-71.491920527,41.451683465],[-71.491844527,41.452198465],[-71.491821527,41.452301464],[-71.491745527,41.452530465],[-71.491737527,41.452576465],[-71.491722527,41.452622465],[-71.491714527,41.452671464],[-71.491714527,41.452702465],[-71.491714527,41.452828465],[-71.491737528,41.452893465],[-71.491783527,41.452954465],[-71.491844527,41.453057465],[-71.491867527,41.453106465],[-71.491928527,41.453194465],[-71.492004527,41.453331465],[-71.492035527,41.453377465],[-71.492050528,41.453434465],[-71.492111528,41.453579465],[-71.492134527,41.453610465],[-71.492149528,41.453640465],[-71.492157527,41.453671465],[-71.492157527,41.453701465],[-71.492165528,41.453736465],[-71.492165528,41.453854465],[-71.492157527,41.453888465],[-71.492157527,41.453923465],[-71.492126528,41.454068465],[-71.492111528,41.454102465],[-71.492104528,41.454132466],[-71.492058527,41.454216465],[-71.492043527,41.454255465],[-71.492020527,41.454293465],[-71.492012528,41.454293465],[-71.491646527,41.454815466],[-71.491516527,41.455017465],[-71.491486528,41.455101465],[-71.491447528,41.455185466],[-71.491409528,41.455304465],[-71.491364527,41.455494466],[-71.491318527,41.455754465],[-71.491222527,41.456183465],[-71.491211528,41.456231466],[-71.491165527,41.456410466],[-71.491127527,41.456517465],[-71.491066527,41.456620466],[-71.490990527,41.456707465],[-71.490898527,41.456768465],[-71.490540527,41.457089466],[-71.490120527,41.457474466],[-71.490067527,41.457528466],[-71.490028527,41.457554466],[-71.489967527,41.457608466],[-71.489929527,41.457631466],[-71.489891527,41.457646466],[-71.489815527,41.457661466],[-71.489769527,41.457661466],[-71.489746527,41.457657466],[-71.489609527,41.457657466],[-71.488899526,41.457638466],[-71.488503527,41.457623466],[-71.488335526,41.457631466],[-71.488251526,41.457627466],[-71.488174526,41.457611466],[-71.488029526,41.457562466],[-71.487984526,41.457554466],[-71.487900526,41.457528466],[-71.487740526,41.457409465],[-71.487686526,41.457348466],[-71.487663527,41.457314466],[-71.487625527,41.457234465],[-71.487617526,41.457188466],[-71.487602526,41.457142466],[-71.487595526,41.457089466],[-71.487579526,41.457032466],[-71.487572526,41.456978466],[-71.487480526,41.456643466],[-71.487457526,41.456589466],[-71.487442526,41.456532465],[-71.487419526,41.456478466],[-71.487373526,41.456398465],[-71.487320526,41.456330466],[-71.487251526,41.456269466],[-71.487175526,41.456223465],[-71.487000526,41.456200465],[-71.486938526,41.456196466],[-71.486832526,41.456196466],[-71.486580526,41.456215466],[-71.486481526,41.456227466],[-71.486221526,41.456250466],[-71.486259526,41.456704466],[-71.486320525,41.457135466],[-71.486336526,41.457329466],[-71.486328526,41.457516466],[-71.486183526,41.458332466],[-71.486015526,41.459202467],[-71.485985526,41.459385466],[-71.485970525,41.459538466],[-71.485947526,41.459717466],[-71.485939526,41.459896466],[-71.485985526,41.460148466],[-71.486015526,41.460266467],[-71.486198526,41.460865466],[-71.486267526,41.461207467],[-71.486343526,41.461586467],[-71.486526526,41.462262467],[-71.486649526,41.462697467],[-71.486735526,41.463081467],[-71.486794526,41.463448467],[-71.486801526,41.463602467],[-71.486777526,41.463713467]]]]}}"}, +{"type": "precinct", "typeId": 3205, "areaId": 25961, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":300,\"NAME\":\"3205\",\"SHAPE_Length\":0.13828626044623,\"SHAPE_Area\":-0.0004994321084465},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.507133532,41.445771463],[-71.507874532,41.445889463],[-71.508171532,41.445923463],[-71.508438532,41.445931463],[-71.508629533,41.445935463],[-71.509483533,41.445912463],[-71.510498533,41.445877463],[-71.510704533,41.445881463],[-71.511560533,41.445847463],[-71.511848533,41.445832463],[-71.512001534,41.445832463],[-71.512108533,41.445843463],[-71.512230534,41.445866463],[-71.512299533,41.445885463],[-71.512360533,41.445908463],[-71.512466534,41.445965463],[-71.512581534,41.446041463],[-71.512657534,41.446083463],[-71.513306534,41.446526463],[-71.513489534,41.446671463],[-71.513588534,41.446728463],[-71.513763534,41.446789463],[-71.513885534,41.446820463],[-71.513947534,41.446831463],[-71.514053534,41.446835463],[-71.514183535,41.446846463],[-71.514270534,41.446863463],[-71.515106534,41.446965463],[-71.515404535,41.446976463],[-71.515953535,41.446965463],[-71.516548535,41.446938463],[-71.516708535,41.446942463],[-71.517334535,41.446938463],[-71.517807536,41.446926463],[-71.518730536,41.446877463],[-71.519165536,41.446862463],[-71.519493536,41.446865463],[-71.519760536,41.446885463],[-71.520935536,41.447029463],[-71.521095536,41.447041463],[-71.521339537,41.447041463],[-71.522331537,41.446915463],[-71.522491537,41.446888463],[-71.523125537,41.446797463],[-71.524147538,41.446640463],[-71.523972538,41.446316462],[-71.523026537,41.444409462],[-71.522598537,41.443596462],[-71.522461537,41.443306462],[-71.522308537,41.443024462],[-71.521904537,41.442231462],[-71.521652537,41.441769461],[-71.521339536,41.441132462],[-71.521271536,41.440972461],[-71.521111536,41.440602461],[-71.521049536,41.440514462],[-71.520813536,41.440285462],[-71.520615536,41.440125462],[-71.520348536,41.439900461],[-71.520119536,41.439698462],[-71.519783536,41.439381461],[-71.519539536,41.439068461],[-71.519440535,41.438904461],[-71.519234536,41.438527462],[-71.519211536,41.438477461],[-71.519073535,41.438168461],[-71.518929535,41.437867462],[-71.518799535,41.437619461],[-71.518356535,41.436669461],[-71.518112535,41.436131461],[-71.518044535,41.436001461],[-71.517479535,41.43580346],[-71.516876535,41.43555146],[-71.514809534,41.434700461],[-71.515221534,41.434060461],[-71.515541534,41.433514461],[-71.515770534,41.433148461],[-71.515855534,41.43288146],[-71.515961534,41.43278046],[-71.516037534,41.432679461],[-71.516167534,41.43248046],[-71.516403534,41.43215246],[-71.516602535,41.43183946],[-71.516899534,41.43140846],[-71.517326535,41.43074546],[-71.517349534,41.43071846],[-71.518600535,41.428769459],[-71.519157535,41.427887459],[-71.519180534,41.427864459],[-71.519104534,41.427666459],[-71.519030535,41.427592459],[-71.518999535,41.427572459],[-71.518906535,41.427528459],[-71.518840535,41.427503459],[-71.518825535,41.427439459],[-71.518776535,41.427231459],[-71.518623535,41.427235459],[-71.516975535,41.427197459],[-71.514641533,41.427132459],[-71.514030534,41.427117459],[-71.513459533,41.427099459],[-71.511139532,41.427029459],[-71.509163531,41.42698346],[-71.508499531,41.426968459],[-71.50623353,41.426934459],[-71.505684531,41.42694546],[-71.50507453,41.426987459],[-71.50455553,41.42703746],[-71.50364753,41.42715946],[-71.503444529,41.42719546],[-71.502937529,41.427299459],[-71.502590529,41.42737546],[-71.502319529,41.42744346],[-71.501312529,41.42772746],[-71.500717529,41.42789246],[-71.499540529,41.42821846],[-71.499972179,41.427831565],[-71.499840024,41.427865165],[-71.499690094,41.427907932],[-71.499545511,41.427957011],[-71.499388105,41.428005221],[-71.49924176,41.428050114],[-71.499098606,41.428080508],[-71.498944329,41.428114217],[-71.498895496,41.428154331],[-71.498892425,41.428274583],[-71.498928008,41.428335281],[-71.498961098,41.428391771],[-71.498980029,41.428432572],[-71.499009838,41.42849686],[-71.499018103,41.428512435],[-71.499072951,41.428616038],[-71.499078451,41.428623471],[-71.499129775,41.428692905],[-71.499236981,41.428739424],[-71.49938269,41.428717309],[-71.499541039,41.428705784],[-71.499686413,41.428696133],[-71.49978736,41.428700364],[-71.499909974,41.428756785],[-71.500054345,41.428823864],[-71.500176716,41.428922457],[-71.500270067,41.42900957],[-71.500373112,41.429111296],[-71.500488282,41.429206322],[-71.500596768,41.42931093],[-71.500668302,41.429422582],[-71.500721269,41.42954368],[-71.500768493,41.429672302],[-71.500818362,41.429805772],[-71.500883059,41.429933937],[-71.50096362,41.430054051],[-71.501042024,41.430185188],[-71.501092713,41.430286869],[-71.501174186,41.430405587],[-71.501243777,41.430522065],[-71.50129076,41.430624386],[-71.501363816,41.43074992],[-71.501436022,41.430871955],[-71.501508471,41.430985024],[-71.501580342,41.431084943],[-71.501663671,41.431202335],[-71.501685796,41.431307058],[-71.501649424,41.431436527],[-71.501608858,41.431550032],[-71.501634933,41.431607802],[-71.501724369,41.431666463],[-71.501743334,41.431751792],[-71.501740207,41.43187417],[-71.50170827,41.431937293],[-71.501687728,41.431986075],[-71.501701042,41.432111427],[-71.501715022,41.43215209],[-71.501745505,41.432240689],[-71.501778388,41.432335188],[-71.501788326,41.43236373],[-71.501843547,41.432466828],[-71.5019239,41.432594557],[-71.501975535,41.432731526],[-71.502009575,41.432837804],[-71.502061636,41.432957483],[-71.502111295,41.433063325],[-71.502151322,41.433185566],[-71.50221244,41.433310254],[-71.502278875,41.43340665],[-71.502370929,41.433508924],[-71.502378923,41.433527723],[-71.502078307,41.433517781],[-71.502022964,41.433427101],[-71.501929999,41.433325513],[-71.501827735,41.433227927],[-71.501733069,41.433122131],[-71.501650922,41.43299303],[-71.501594882,41.432885037],[-71.501550267,41.432761996],[-71.501517595,41.432638451],[-71.501479636,41.432505805],[-71.501437969,41.432375216],[-71.501391896,41.432236257],[-71.501371291,41.432152095],[-71.501353633,41.432080145],[-71.501333756,41.431924262],[-71.501323663,41.431779585],[-71.50131029,41.431655628],[-71.501288438,41.431539859],[-71.50126616,41.431406068],[-71.50126169,41.43125732],[-71.501249411,41.431127166],[-71.501217652,41.431003621],[-71.50116441,41.430894988],[-71.501096459,41.430785463],[-71.501008422,41.430672165],[-71.500905829,41.43055244],[-71.500806518,41.430447969],[-71.50079105,41.430431937],[-71.500712526,41.430350474],[-71.500623427,41.430242024],[-71.500549886,41.43013721],[-71.500489018,41.430038159],[-71.500433255,41.429919806],[-71.500370624,41.429781967],[-71.500323917,41.429668622],[-71.500290034,41.429556786],[-71.50022786,41.429436283],[-71.500170822,41.429333093],[-71.500060332,41.429234705],[-71.499917783,41.429168335],[-71.499824553,41.429149673],[-71.499751896,41.429188026],[-71.499753962,41.429322206],[-71.499742536,41.429446483],[-71.499689144,41.429557061],[-71.499595609,41.429621395],[-71.499615209,41.429718479],[-71.499672247,41.429821624],[-71.499662552,41.429949423],[-71.499644076,41.430025924],[-71.499574426,41.430080332],[-71.4995372,41.4301094],[-71.499372739,41.430180983],[-71.49920764,41.430206276],[-71.499031874,41.430182261],[-71.498859544,41.430130664],[-71.498698123,41.43008339],[-71.498555087,41.430036367],[-71.498410046,41.429960253],[-71.498252182,41.429881234],[-71.498133337,41.429786824],[-71.498054697,41.429666067],[-71.498008389,41.429536804],[-71.49794236,41.429424487],[-71.497812242,41.429339636],[-71.497746911,41.429271618],[-71.497760954,41.429153585],[-71.497903322,41.429083742],[-71.498077658,41.42902195],[-71.498832339,41.428826877],[-71.498841701,41.428712228],[-71.49883535,41.428686225],[-71.498812592,41.428592868],[-71.498804266,41.428570912],[-71.498774731,41.428493107],[-71.498769565,41.428479545],[-71.498701925,41.428394947],[-71.498686762,41.428376011],[-71.498593718,41.428279246],[-71.498517417,41.428174407],[-71.498491986,41.42805443],[-71.498352651,41.427254472],[-71.498318782,41.426747803],[-71.49824759,41.426623022],[-71.498169773,41.426503661],[-71.497901687,41.426068252],[-71.497927912,41.426013318],[-71.498037335,41.425973457],[-71.498181244,41.425949949],[-71.498180881,41.425892567],[-71.498111846,41.425827249],[-71.497983708,41.425808081],[-71.497820321,41.425838221],[-71.497670456,41.425843639],[-71.497519405,41.425858044],[-71.497378988,41.42592377],[-71.497253004,41.425999353],[-71.49717123,41.426107436],[-71.497133485,41.426218928],[-71.497157303,41.426327814],[-71.497234511,41.426434025],[-71.497306157,41.426541563],[-71.497480749,41.42679163],[-71.497568045,41.426898002],[-71.497558773,41.427008511],[-71.497466546,41.427093609],[-71.497331657,41.427158695],[-71.497176348,41.427195878],[-71.497029366,41.427232444],[-71.496387402,41.427438166],[-71.49624938,41.427517751],[-71.496122025,41.427576065],[-71.495992877,41.427632939],[-71.495759559,41.427738797],[-71.495360154,41.428122271],[-71.493988837,41.428467388],[-71.493976251,41.428527399],[-71.49389293,41.428516463],[-71.493894577,41.428451511],[-71.493324759,41.42838925],[-71.49329589,41.428404045],[-71.493193471,41.428527035],[-71.493495656,41.428709809],[-71.493418969,41.428905803],[-71.493496722,41.428990587],[-71.493484563,41.429033948],[-71.493379466,41.429190764],[-71.493278908,41.42924185],[-71.493102414,41.429256705],[-71.493011341,41.429264339],[-71.492534978,41.429304286],[-71.492477517,41.429288227],[-71.492467064,41.429267598],[-71.492439054,41.429212318],[-71.492430283,41.429123695],[-71.492273392,41.429115177],[-71.492192303,41.429082535],[-71.492000526,41.42940846],[-71.491899526,41.429559461],[-71.491758526,41.429773461],[-71.491614526,41.429988461],[-71.491601526,41.430008461],[-71.491536526,41.43007746],[-71.491373526,41.430253461],[-71.489991525,41.431722461],[-71.489610526,41.432021461],[-71.489500525,41.432109461],[-71.487813525,41.432229461],[-71.487599525,41.433192461],[-71.487466525,41.433280461],[-71.487290525,41.433315461],[-71.487139524,41.433293461],[-71.487044524,41.433271461],[-71.486890524,41.433228461],[-71.486735524,41.433192461],[-71.486594524,41.433179461],[-71.486374525,41.433171461],[-71.486210524,41.433196461],[-71.486121525,41.433252461],[-71.486042525,41.433361462],[-71.485936524,41.433468461],[-71.485829525,41.433551461],[-71.485731525,41.433637461],[-71.485655525,41.433749462],[-71.485576525,41.433715461],[-71.485315524,41.433709462],[-71.485146524,41.433733462],[-71.485012524,41.433791462],[-71.484606524,41.433989461],[-71.484467523,41.434043462],[-71.484335524,41.434109461],[-71.484215523,41.434177462],[-71.484128524,41.434283461],[-71.484073524,41.434394462],[-71.484034524,41.434521461],[-71.484009524,41.434639461],[-71.483970524,41.434748461],[-71.483936524,41.434870461],[-71.483930524,41.434980462],[-71.483880524,41.435092462],[-71.483872524,41.435174462],[-71.483535523,41.435370462],[-71.483360523,41.435467462],[-71.483452524,41.435585462],[-71.483513523,41.435643462],[-71.483597524,41.435727462],[-71.483765523,41.435856462],[-71.484124524,41.436139462],[-71.484314524,41.436283462],[-71.484825524,41.436684462],[-71.484978524,41.436814462],[-71.485260524,41.437065462],[-71.485558525,41.437352462],[-71.485802524,41.437615462],[-71.486000525,41.437851462],[-71.486465525,41.438469463],[-71.486547525,41.438602462],[-71.486567525,41.438634462],[-71.487695525,41.438993462],[-71.488144525,41.439118462],[-71.488718526,41.439246462],[-71.489093525,41.439314462],[-71.489474526,41.439363462],[-71.489485526,41.439339462],[-71.489593526,41.439350463],[-71.489824526,41.439351462],[-71.490733526,41.439334462],[-71.491503527,41.439250463],[-71.492504526,41.439162462],[-71.492669527,41.439142462],[-71.492999527,41.439112462],[-71.493807528,41.439029462],[-71.495183528,41.438901462],[-71.495341528,41.438886462],[-71.496291528,41.438774462],[-71.496359528,41.438764462],[-71.496420528,41.438758462],[-71.496482528,41.438747462],[-71.496597528,41.438736462],[-71.496703528,41.438734462],[-71.496753528,41.438736462],[-71.496851528,41.438734462],[-71.497041528,41.438740462],[-71.497185528,41.438754462],[-71.497350528,41.438782462],[-71.497535528,41.438823462],[-71.497623529,41.438839462],[-71.497889528,41.438900462],[-71.498068529,41.438955462],[-71.498229529,41.439010462],[-71.498541529,41.439124462],[-71.498697529,41.439182462],[-71.499067529,41.439440462],[-71.499440529,41.439749462],[-71.499538529,41.439831462],[-71.49971553,41.439979462],[-71.500072529,41.440313462],[-71.500130529,41.440377462],[-71.500178529,41.440441463],[-71.500253529,41.440578463],[-71.500291529,41.440656463],[-71.50037653,41.440867463],[-71.500427529,41.441009462],[-71.500448529,41.441106462],[-71.50045253,41.441175462],[-71.500442529,41.441429462],[-71.500423529,41.441675462],[-71.500389529,41.441810462],[-71.500349529,41.441890462],[-71.49946353,41.443665463],[-71.499276529,41.443991463],[-71.498915529,41.444641463],[-71.498534529,41.445378463],[-71.49986553,41.445255463],[-71.50119853,41.445088463],[-71.50139653,41.445050463],[-71.50169453,41.445023463],[-71.50289953,41.444893463],[-71.502907531,41.445042463],[-71.50323553,41.445065463],[-71.503654531,41.445076463],[-71.503975531,41.445126463],[-71.504608531,41.445248463],[-71.505280531,41.445397463],[-71.505775532,41.445507463],[-71.507133532,41.445771463]]]]}}"}, +{"type": "precinct", "typeId": 3206, "areaId": 25967, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":306,\"NAME\":\"3206\",\"SHAPE_Length\":0.3026447810874,\"SHAPE_Area\":-0.0031725930112848},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.597275565,41.521138475],[-71.597723566,41.521313475],[-71.598276566,41.521440475],[-71.603376567,41.522714475],[-71.605347568,41.523218475],[-71.61145557,41.524745476],[-71.611988571,41.524915475],[-71.613076571,41.525296475],[-71.612760571,41.523731475],[-71.61248457,41.522433475],[-71.61242957,41.522156474],[-71.61229557,41.521482475],[-71.61174757,41.518627474],[-71.61171157,41.518458474],[-71.61168457,41.518429475],[-71.610220569,41.511237472],[-71.610049569,41.510403473],[-71.610041569,41.510366473],[-71.609923569,41.509737472],[-71.609907569,41.509708473],[-71.609772569,41.508994472],[-71.609332569,41.506665472],[-71.608772568,41.504559472],[-71.608688568,41.504395471],[-71.608681568,41.504357471],[-71.608650568,41.504273471],[-71.608635568,41.504162471],[-71.608437568,41.503766471],[-71.608424568,41.503743472],[-71.608261568,41.503456471],[-71.607724568,41.502488471],[-71.607568568,41.502199471],[-71.607524567,41.502117471],[-71.607676568,41.501929471],[-71.607646568,41.501723471],[-71.607553568,41.501399471],[-71.607544567,41.501146471],[-71.607649568,41.501000471],[-71.607857567,41.500702471],[-71.607973567,41.500418471],[-71.608016568,41.500342471],[-71.608077568,41.500281471],[-71.608092568,41.500269471],[-71.608158568,41.500222471],[-71.608226567,41.50017747],[-71.608259568,41.500132471],[-71.608226567,41.50005947],[-71.608170568,41.50002047],[-71.608108567,41.499991471],[-71.608036568,41.499937471],[-71.608023568,41.499863471],[-71.608056568,41.49978747],[-71.608128567,41.499737471],[-71.608234568,41.49974747],[-71.608304567,41.499762471],[-71.608404568,41.499777471],[-71.608500568,41.499766471],[-71.608577568,41.499739471],[-71.608617568,41.499688471],[-71.608588568,41.49961847],[-71.608553568,41.499567471],[-71.608539568,41.499493471],[-71.608579568,41.499433471],[-71.608640568,41.49940247],[-71.608715568,41.49937947],[-71.608887568,41.49933847],[-71.608965568,41.499315471],[-71.609026568,41.499271471],[-71.609025568,41.499215471],[-71.608992568,41.49916247],[-71.608912568,41.499119471],[-71.608735568,41.49909147],[-71.608656568,41.49907447],[-71.608594568,41.499024471],[-71.608607568,41.49893747],[-71.608721568,41.49860047],[-71.608774568,41.49855047],[-71.608946568,41.49848547],[-71.609031568,41.49846647],[-71.609115568,41.49848047],[-71.609205568,41.498516471],[-71.609304568,41.498537471],[-71.609387568,41.498516471],[-71.609420568,41.49846347],[-71.609413569,41.498400471],[-71.609359568,41.49829047],[-71.609376568,41.49820947],[-71.609416568,41.49815147],[-71.609468568,41.49809547],[-71.609517568,41.49803147],[-71.609543568,41.49795747],[-71.609535568,41.49787647],[-71.609503568,41.49778247],[-71.609414568,41.49758647],[-71.609369568,41.49750847],[-71.609313568,41.49744547],[-71.609239568,41.49739147],[-71.609154568,41.49734347],[-71.609075568,41.49729047],[-71.609002568,41.49723047],[-71.608940568,41.49716747],[-71.608878568,41.49711847],[-71.608815568,41.49707947],[-71.608760568,41.49703947],[-71.608745568,41.49699047],[-71.608768568,41.49693447],[-71.608818568,41.49687747],[-71.608888567,41.49681847],[-71.608971568,41.49674147],[-71.608989568,41.49672147],[-71.608997568,41.49666547],[-71.608973568,41.49652247],[-71.608924568,41.49637547],[-71.608891568,41.49630647],[-71.608854568,41.49624847],[-71.608808568,41.49620147],[-71.608717568,41.49618147],[-71.608632568,41.49622747],[-71.608584568,41.496276469],[-71.608533568,41.49630547],[-71.608440567,41.49628547],[-71.608421567,41.49626647],[-71.608377568,41.49622247],[-71.608382567,41.49616747],[-71.608416568,41.49611247],[-71.608468568,41.49606147],[-71.608533568,41.49601947],[-71.608608568,41.49599447],[-71.608690568,41.49598047],[-71.608771567,41.49595847],[-71.608850567,41.49591847],[-71.608925568,41.49586547],[-71.608989568,41.49579947],[-71.609035568,41.49572847],[-71.609047568,41.495655469],[-71.609027568,41.49558947],[-71.608966567,41.495441469],[-71.608930567,41.49537447],[-71.608881568,41.495321469],[-71.608820568,41.49527447],[-71.608739568,41.495243469],[-71.608655567,41.49523547],[-71.608581567,41.49523647],[-71.608504567,41.49525647],[-71.608472568,41.49530847],[-71.608466568,41.49537147],[-71.608413568,41.49542647],[-71.608329567,41.49546647],[-71.608229567,41.495457469],[-71.608162568,41.49542747],[-71.608113567,41.49535947],[-71.608113567,41.49529947],[-71.608126568,41.49523747],[-71.608154567,41.49517747],[-71.608172567,41.49511347],[-71.608157568,41.49504447],[-71.608108567,41.49498247],[-71.608034567,41.49494747],[-71.607945568,41.49494047],[-71.607880567,41.49490947],[-71.607791568,41.494818469],[-71.607769568,41.49476447],[-71.607768567,41.49470947],[-71.607808568,41.49463747],[-71.607874567,41.494603469],[-71.608028568,41.49455547],[-71.608098567,41.494522469],[-71.608147567,41.49447547],[-71.608169567,41.49442047],[-71.608166567,41.49425947],[-71.608139568,41.49422447],[-71.608057567,41.494214469],[-71.607970568,41.49421947],[-71.607884567,41.49425847],[-71.607786567,41.49428647],[-71.607702567,41.494248469],[-71.607657568,41.494198469],[-71.607579568,41.494098469],[-71.607501568,41.49410747],[-71.607449567,41.494177469],[-71.607446567,41.494307469],[-71.607400567,41.494365469],[-71.607336567,41.494350469],[-71.607282567,41.494289469],[-71.607247568,41.494233469],[-71.607216567,41.49416947],[-71.607201567,41.494093469],[-71.607197567,41.49394847],[-71.607195567,41.493881469],[-71.607203567,41.493824469],[-71.607251567,41.49375547],[-71.607326568,41.49371947],[-71.607409567,41.49373847],[-71.607470567,41.493799469],[-71.607510567,41.493863469],[-71.607558568,41.49389647],[-71.607625567,41.49387447],[-71.607690567,41.49381247],[-71.607717568,41.493749469],[-71.607773568,41.493577469],[-71.607922567,41.49326747],[-71.607958567,41.49321047],[-71.608002567,41.493165469],[-71.608063568,41.493126469],[-71.608136567,41.493092469],[-71.608366567,41.493014469],[-71.608541567,41.492988469],[-71.608617567,41.492952469],[-71.608645568,41.49288247],[-71.608640567,41.49282147],[-71.608623567,41.492752469],[-71.608589568,41.492672469],[-71.608473568,41.492450469],[-71.608439567,41.492396469],[-71.608399568,41.492350469],[-71.608322567,41.492298469],[-71.608254567,41.492260469],[-71.608202568,41.492217469],[-71.608175567,41.492154469],[-71.608181568,41.492078469],[-71.608222568,41.492026469],[-71.608288567,41.491975469],[-71.608363567,41.491929469],[-71.608424567,41.491876469],[-71.608447567,41.491811469],[-71.608434568,41.491742469],[-71.608384567,41.491617469],[-71.608380568,41.491550469],[-71.608384567,41.491483469],[-71.608408567,41.491418469],[-71.608444567,41.491363469],[-71.608458568,41.491309469],[-71.608453568,41.491187468],[-71.608437568,41.491120469],[-71.608387567,41.490999469],[-71.608370567,41.490943469],[-71.608367567,41.490882469],[-71.608372567,41.490817468],[-71.608411567,41.490675469],[-71.608444567,41.490518469],[-71.608441567,41.490448468],[-71.608429567,41.490388468],[-71.608392567,41.490349468],[-71.608315567,41.490344469],[-71.608224568,41.490367468],[-71.608137567,41.490380469],[-71.608048568,41.490373469],[-71.607979567,41.490347469],[-71.607938567,41.490302469],[-71.607932567,41.490243469],[-71.607936567,41.490176468],[-71.607966567,41.490110469],[-71.608058567,41.489981468],[-71.608068568,41.489908469],[-71.608066568,41.489829469],[-71.608055567,41.489752469],[-71.608026567,41.489680469],[-71.608006567,41.489611468],[-71.608003567,41.489545469],[-71.608014567,41.489484469],[-71.608065567,41.489428469],[-71.608205567,41.489336468],[-71.608258567,41.489294469],[-71.608320568,41.489234469],[-71.608356567,41.489173469],[-71.608361567,41.489039469],[-71.608393567,41.488986468],[-71.608486567,41.488875468],[-71.608552568,41.488813468],[-71.608605567,41.488770468],[-71.608649568,41.488725469],[-71.608679567,41.488657468],[-71.608676567,41.488584468],[-71.608649568,41.488513469],[-71.608611568,41.488444468],[-71.608608567,41.488380468],[-71.608629568,41.488326468],[-71.608768568,41.488232468],[-71.608812567,41.488184468],[-71.608826568,41.488129468],[-71.608822567,41.488006469],[-71.608830567,41.487945469],[-71.608871567,41.487875468],[-71.608921568,41.487808468],[-71.608914567,41.487745468],[-71.608844568,41.487687468],[-71.608704567,41.487612468],[-71.608634567,41.487569468],[-71.608493567,41.487463468],[-71.608412567,41.487412468],[-71.608332567,41.487369468],[-71.608256567,41.487338468],[-71.608167567,41.487322468],[-71.607996567,41.487311468],[-71.607413567,41.487320468],[-71.607321567,41.487329468],[-71.606909567,41.487405468],[-71.606663567,41.487433468],[-71.606346567,41.487501468],[-71.606264566,41.487512468],[-71.606087566,41.487516469],[-71.605981567,41.487514468],[-71.605876566,41.487501468],[-71.605777566,41.487473468],[-71.605412566,41.487314468],[-71.605336567,41.487271468],[-71.605271566,41.487223468],[-71.605045566,41.487036468],[-71.604961566,41.486976468],[-71.604493566,41.486668468],[-71.604372566,41.486572468],[-71.604318566,41.486519468],[-71.604273566,41.486459468],[-71.604241566,41.486397468],[-71.604222566,41.486336468],[-71.604213566,41.486277468],[-71.604231566,41.486215468],[-71.604263566,41.486165468],[-71.604436566,41.486094468],[-71.604509566,41.486059468],[-71.604569566,41.486015468],[-71.604585566,41.485965468],[-71.604559565,41.485912468],[-71.604505566,41.485858468],[-71.604368566,41.485734468],[-71.604300566,41.485664468],[-71.604237566,41.485583468],[-71.604192565,41.485501468],[-71.604129565,41.485358468],[-71.604093565,41.485289468],[-71.604050566,41.485226468],[-71.604002566,41.485172468],[-71.603778565,41.484959468],[-71.603721565,41.484915468],[-71.603656566,41.484877468],[-71.603580566,41.484846468],[-71.603318565,41.484777468],[-71.603137565,41.484717468],[-71.603040565,41.484678468],[-71.602952565,41.484636467],[-71.602884565,41.484595467],[-71.602826565,41.484547468],[-71.602819565,41.484523468],[-71.602754565,41.484476468],[-71.602654565,41.484380467],[-71.602600565,41.484313468],[-71.602591565,41.484233468],[-71.602597565,41.484175468],[-71.602620565,41.484118468],[-71.602652565,41.484058468],[-71.602685566,41.483971467],[-71.602651565,41.483921468],[-71.602588566,41.483857467],[-71.602550565,41.483803468],[-71.602560565,41.483756467],[-71.602624565,41.483721467],[-71.602796565,41.483586467],[-71.602808565,41.483523467],[-71.602759565,41.483464467],[-71.602692565,41.483434468],[-71.602599565,41.483422468],[-71.602386565,41.483427467],[-71.602175565,41.483417468],[-71.602078565,41.483408467],[-71.602006565,41.483393467],[-71.601965564,41.483370467],[-71.601968565,41.483303468],[-71.601988565,41.483243468],[-71.602026565,41.483185468],[-71.602089565,41.483135467],[-71.602321565,41.483011468],[-71.602375565,41.482971468],[-71.602424565,41.482918467],[-71.602429565,41.482864467],[-71.602428565,41.482797468],[-71.602388565,41.482731467],[-71.602331565,41.482696468],[-71.602277565,41.482654467],[-71.602262565,41.482577467],[-71.602260565,41.482503468],[-71.602278565,41.482434467],[-71.602327565,41.482367468],[-71.602377565,41.482326468],[-71.602441565,41.482290468],[-71.602571565,41.482234468],[-71.602635565,41.482187467],[-71.602665565,41.482130467],[-71.602640565,41.482058468],[-71.602574565,41.482004467],[-71.602502565,41.481985467],[-71.602434565,41.481950467],[-71.602382565,41.481889467],[-71.602345565,41.481831467],[-71.602302565,41.481780467],[-71.602182565,41.481683467],[-71.602043564,41.481586467],[-71.601904565,41.481512468],[-71.601851564,41.481475467],[-71.601789564,41.481411467],[-71.601768565,41.481348467],[-71.601834565,41.481287467],[-71.601874565,41.481238467],[-71.601875565,41.481172467],[-71.601812564,41.481126467],[-71.601772564,41.481079467],[-71.601777565,41.481020467],[-71.601772564,41.480947468],[-71.601749565,41.480895467],[-71.601705565,41.480857467],[-71.601634564,41.480860467],[-71.601557564,41.480899467],[-71.601494565,41.480941467],[-71.601421564,41.480933467],[-71.601357565,41.480894467],[-71.601234565,41.480810467],[-71.601129564,41.480726467],[-71.601064565,41.480692467],[-71.600990564,41.480667467],[-71.600918564,41.480636467],[-71.600857564,41.480598467],[-71.600813565,41.480550467],[-71.600779564,41.480474467],[-71.600789565,41.480406467],[-71.600878564,41.480376467],[-71.601162565,41.480351467],[-71.601244564,41.480338467],[-71.601323564,41.480319467],[-71.601392565,41.480291467],[-71.601438564,41.480228467],[-71.601419564,41.480153467],[-71.601330564,41.480110467],[-71.601246564,41.480101467],[-71.601095564,41.480092467],[-71.601010564,41.480083467],[-71.600921564,41.480061467],[-71.600855564,41.480026467],[-71.600799564,41.479964467],[-71.600788564,41.479910467],[-71.600840564,41.479875466],[-71.600941564,41.479866467],[-71.601120565,41.479880467],[-71.601286564,41.479870467],[-71.601365564,41.479856466],[-71.601450565,41.479815467],[-71.601487565,41.479748467],[-71.601474565,41.479678467],[-71.601405564,41.479620467],[-71.601253564,41.479562467],[-71.601183565,41.479517467],[-71.601132564,41.479478467],[-71.601050564,41.479461467],[-71.600891565,41.479467466],[-71.600803564,41.479459467],[-71.600722564,41.479427466],[-71.600670564,41.479374467],[-71.600673564,41.479324467],[-71.600757564,41.479307467],[-71.600854564,41.479317467],[-71.600938564,41.479314467],[-71.601018564,41.479291466],[-71.601082565,41.479256467],[-71.601124565,41.479207467],[-71.601131564,41.479145467],[-71.601115564,41.479073467],[-71.601082565,41.479003467],[-71.601027565,41.478940466],[-71.600980564,41.478898467],[-71.600905564,41.478850467],[-71.600723564,41.478785466],[-71.600650564,41.478735467],[-71.600638565,41.478670466],[-71.600671564,41.478639467],[-71.600746564,41.478620467],[-71.600831565,41.478605467],[-71.600906564,41.478584467],[-71.600979564,41.478549466],[-71.600985565,41.478502467],[-71.600904564,41.478469467],[-71.600808564,41.478449467],[-71.600721564,41.478407467],[-71.600706564,41.478352467],[-71.600780564,41.478296466],[-71.600912564,41.478222466],[-71.601010564,41.478138467],[-71.601053564,41.478081466],[-71.601109564,41.477962467],[-71.601146564,41.477910466],[-71.601182565,41.477794466],[-71.601239565,41.477747467],[-71.601318565,41.477699466],[-71.601411564,41.477666467],[-71.601485564,41.477654466],[-71.601555564,41.477630467],[-71.601632565,41.477583466],[-71.601683565,41.477544466],[-71.601746565,41.477508467],[-71.601820565,41.477486466],[-71.601906564,41.477483466],[-71.601984564,41.477489467],[-71.602058565,41.477490467],[-71.602140564,41.477484466],[-71.602240564,41.477483466],[-71.602414564,41.477470467],[-71.602499565,41.477469467],[-71.602860565,41.477485466],[-71.602944565,41.477495467],[-71.603033565,41.477529467],[-71.603111565,41.477551467],[-71.603201565,41.477539466],[-71.603264565,41.477508466],[-71.603380565,41.477430466],[-71.603457565,41.477388466],[-71.603544565,41.477377467],[-71.603618565,41.477384466],[-71.603719566,41.477379466],[-71.603808565,41.477391466],[-71.603887565,41.477438466],[-71.603910565,41.477504466],[-71.603914566,41.477579466],[-71.603944565,41.477640466],[-71.604018565,41.477678466],[-71.604109566,41.477683466],[-71.604171565,41.477632467],[-71.604201565,41.477559466],[-71.604200565,41.477492467],[-71.604166566,41.477441466],[-71.604230565,41.477410466],[-71.604276565,41.477375467],[-71.604275565,41.477315467],[-71.604303566,41.477252466],[-71.604359566,41.477202467],[-71.604402565,41.477151466],[-71.604406565,41.477080466],[-71.604338565,41.476967467],[-71.604363565,41.476922466],[-71.604462565,41.476909467],[-71.604545565,41.476905466],[-71.604644565,41.476895466],[-71.604726566,41.476878466],[-71.604803565,41.476853466],[-71.604826566,41.476819466],[-71.604877565,41.476708466],[-71.604922566,41.476611466],[-71.604982566,41.476567466],[-71.605047565,41.476542466],[-71.605135566,41.476529466],[-71.605283565,41.476521466],[-71.605468566,41.476499466],[-71.605543566,41.476496466],[-71.605588566,41.476473466],[-71.605602566,41.476415466],[-71.605617565,41.476296466],[-71.605631565,41.476243466],[-71.605696566,41.476104466],[-71.605710565,41.476050466],[-71.605744566,41.475983466],[-71.605897566,41.475920466],[-71.605941566,41.475847466],[-71.605942566,41.475782466],[-71.605933566,41.475725466],[-71.605898566,41.475677466],[-71.605845566,41.475636466],[-71.605733565,41.475565465],[-71.605680566,41.475515466],[-71.605636565,41.475464466],[-71.605602566,41.475415466],[-71.605544566,41.475362466],[-71.605508566,41.475301466],[-71.605470566,41.475168466],[-71.605447566,41.475022466],[-71.605442565,41.474831466],[-71.605416566,41.474775466],[-71.605273566,41.474733466],[-71.605027565,41.474681466],[-71.604985566,41.474654466],[-71.604996565,41.474594465],[-71.605064566,41.474484466],[-71.605109565,41.474431466],[-71.605171565,41.474394466],[-71.605254566,41.474374466],[-71.605351566,41.474360465],[-71.605435566,41.474340465],[-71.605505566,41.474307466],[-71.605560565,41.474249466],[-71.605521565,41.474181465],[-71.605408566,41.474071466],[-71.605393566,41.474000466],[-71.605407566,41.473918466],[-71.605369566,41.473843466],[-71.605267565,41.473749466],[-71.605207565,41.473713465],[-71.605136566,41.473663466],[-71.605109565,41.473609466],[-71.605095565,41.473545465],[-71.605068565,41.473345465],[-71.605054565,41.473150465],[-71.605019565,41.473080466],[-71.604964566,41.473043466],[-71.604819565,41.472970466],[-71.604748565,41.472941465],[-71.604674566,41.472920465],[-71.604601565,41.472893466],[-71.604542565,41.472853466],[-71.604496565,41.472793466],[-71.604417565,41.472655466],[-71.604268565,41.472442466],[-71.604210565,41.472391465],[-71.604145565,41.472355465],[-71.604083565,41.472328465],[-71.603982565,41.472323466],[-71.603900565,41.472367465],[-71.603792565,41.472477466],[-71.603734565,41.472530465],[-71.603672565,41.472545465],[-71.603572565,41.472517466],[-71.603514565,41.472470465],[-71.603458565,41.472417465],[-71.603419565,41.472345466],[-71.603428564,41.472209466],[-71.603418565,41.472139465],[-71.603377565,41.472067465],[-71.603274564,41.471953466],[-71.603208565,41.471903465],[-71.603115564,41.471869465],[-71.603053565,41.471836466],[-71.603001564,41.471775465],[-71.603047565,41.471700466],[-71.603170565,41.471594465],[-71.603211565,41.471528466],[-71.603145565,41.471460465],[-71.603071565,41.471424465],[-71.603003564,41.471404465],[-71.602912565,41.471410466],[-71.602846564,41.471446465],[-71.602772564,41.471463465],[-71.602684565,41.471423465],[-71.602623565,41.471373465],[-71.602561564,41.471315465],[-71.602462564,41.471206465],[-71.602385564,41.471098466],[-71.602394564,41.471041465],[-71.602479564,41.470997465],[-71.602549565,41.470945465],[-71.602563565,41.470868465],[-71.602543565,41.470811465],[-71.602503564,41.470766465],[-71.602432565,41.470738465],[-71.602357564,41.470725465],[-71.602163564,41.470710465],[-71.602100565,41.470677465],[-71.602089564,41.470615465],[-71.602137565,41.470549465],[-71.602270564,41.470489465],[-71.602315565,41.470421465],[-71.602295565,41.470354465],[-71.602231564,41.470291465],[-71.602161564,41.470237465],[-71.602131564,41.470188465],[-71.602150564,41.470132465],[-71.602202564,41.470082465],[-71.602229564,41.470024465],[-71.602197565,41.469960465],[-71.602145564,41.469903465],[-71.602115564,41.469841465],[-71.602101564,41.469580464],[-71.602084564,41.469507465],[-71.602046564,41.469435465],[-71.601990564,41.469408465],[-71.601906564,41.469411465],[-71.601851564,41.469361465],[-71.601794564,41.469301465],[-71.601689564,41.469217465],[-71.601625564,41.469160465],[-71.601577564,41.469101465],[-71.601512564,41.469053464],[-71.601435564,41.469010465],[-71.601384564,41.468956464],[-71.601416564,41.468896464],[-71.601483564,41.468846465],[-71.601497564,41.468776465],[-71.601454564,41.468728465],[-71.601360563,41.468710465],[-71.601260564,41.468700465],[-71.601161564,41.468703464],[-71.601074564,41.468693465],[-71.600990563,41.468655465],[-71.600931563,41.468604464],[-71.600860564,41.468565464],[-71.600768564,41.468539465],[-71.600689564,41.468502465],[-71.600637564,41.468451464],[-71.600627564,41.468395465],[-71.600629564,41.468334464],[-71.600569564,41.468283465],[-71.600518564,41.468267465],[-71.600442564,41.468250465],[-71.600328563,41.468229465],[-71.600263564,41.468197464],[-71.600208564,41.468136464],[-71.600193563,41.468072465],[-71.600226564,41.468007465],[-71.600230563,41.467936465],[-71.600189564,41.467875465],[-71.600169564,41.467809464],[-71.600180563,41.467740465],[-71.600228564,41.467677465],[-71.600229563,41.467605465],[-71.600144564,41.467403464],[-71.600108564,41.467351465],[-71.600042563,41.467287464],[-71.599984563,41.467255465],[-71.599851563,41.467208464],[-71.599791563,41.467177465],[-71.599745563,41.467130464],[-71.599708563,41.467079465],[-71.599619563,41.466986464],[-71.599489563,41.466894464],[-71.599403563,41.466861465],[-71.599224563,41.466816464],[-71.599174563,41.466763465],[-71.599168563,41.466683464],[-71.599129563,41.466488464],[-71.599098563,41.466411464],[-71.599059563,41.466336465],[-71.599008563,41.466264464],[-71.598939563,41.466207464],[-71.598868563,41.466167464],[-71.598799563,41.466116464],[-71.598775563,41.466048465],[-71.598782563,41.465969465],[-71.598803563,41.465907464],[-71.598798563,41.465845464],[-71.598746563,41.465793465],[-71.598606563,41.465736465],[-71.598550563,41.465694465],[-71.598513562,41.465628464],[-71.598483563,41.465483464],[-71.598440563,41.465379464],[-71.598404563,41.465305464],[-71.598296563,41.465180464],[-71.598273563,41.465121464],[-71.598232563,41.464927464],[-71.598221562,41.464849464],[-71.598212563,41.464726464],[-71.598197563,41.464671464],[-71.598122563,41.464656464],[-71.598033562,41.464656464],[-71.597943563,41.464643464],[-71.597888563,41.464589464],[-71.597887563,41.464518464],[-71.597987562,41.464394464],[-71.598006562,41.464337464],[-71.598009562,41.464277464],[-71.597991562,41.464240464],[-71.597910562,41.464260464],[-71.597836562,41.464301464],[-71.597742562,41.464302464],[-71.597658562,41.464271464],[-71.597593563,41.464225464],[-71.597604562,41.464159464],[-71.597639562,41.464106464],[-71.597661562,41.464044464],[-71.597673563,41.463864463],[-71.597640562,41.463812464],[-71.597577562,41.463765464],[-71.597537563,41.463711464],[-71.597546562,41.463661464],[-71.597618562,41.463642464],[-71.597696562,41.463644464],[-71.597787563,41.463652463],[-71.597860563,41.463642464],[-71.597921563,41.463598464],[-71.597934562,41.463521464],[-71.597937562,41.463454464],[-71.597946563,41.463395464],[-71.597946563,41.463328464],[-71.597913562,41.463298464],[-71.597840562,41.463307464],[-71.597757562,41.463329464],[-71.597689563,41.463301463],[-71.597658562,41.463245464],[-71.597631563,41.463179464],[-71.597573563,41.463146463],[-71.597520562,41.463107463],[-71.597525562,41.463049463],[-71.597591563,41.463006463],[-71.597668563,41.462992464],[-71.597744562,41.462972463],[-71.597799562,41.462933463],[-71.597832562,41.462882464],[-71.597843563,41.462812463],[-71.597797562,41.462767464],[-71.597711563,41.462752464],[-71.597642562,41.462730464],[-71.597551562,41.462600463],[-71.597517563,41.462534464],[-71.597490562,41.462396464],[-71.597485562,41.462281464],[-71.597417563,41.462177464],[-71.597378563,41.462128464],[-71.597308562,41.462117463],[-71.597236562,41.462129463],[-71.597152562,41.462133463],[-71.597037562,41.462081464],[-71.597029562,41.462077463],[-71.596993562,41.462053463],[-71.595340561,41.463067463],[-71.594215561,41.463757464],[-71.592285561,41.464940464],[-71.58850856,41.467232465],[-71.586478559,41.468471465],[-71.583796558,41.470116466],[-71.582828558,41.470714465],[-71.580992557,41.471827466],[-71.573570555,41.476362467],[-71.568460554,41.479507467],[-71.567707553,41.479966468],[-71.564463552,41.481942468],[-71.562296552,41.483255469],[-71.562194552,41.483317469],[-71.560140551,41.484542469],[-71.559959551,41.484656469],[-71.559907551,41.484640469],[-71.559761552,41.484593469],[-71.559502551,41.484509469],[-71.559006551,41.484372469],[-71.558746551,41.484295469],[-71.558495551,41.484242469],[-71.557968551,41.484150469],[-71.55638155,41.483864469],[-71.55555755,41.483735469],[-71.554604549,41.483582469],[-71.552750549,41.483261469],[-71.552490548,41.483208469],[-71.552177548,41.483132469],[-71.552094549,41.483105469],[-71.551895549,41.483025469],[-71.551697548,41.482933469],[-71.551460548,41.482819469],[-71.551083549,41.482632469],[-71.550095548,41.482144469],[-71.549812548,41.482006469],[-71.549644547,41.481934469],[-71.549492548,41.481881469],[-71.549171548,41.481797469],[-71.548897548,41.481739469],[-71.548752547,41.481720469],[-71.548599547,41.481705469],[-71.548439547,41.481694469],[-71.548096547,41.481678469],[-71.547729547,41.481671469],[-71.547310547,41.481678469],[-71.547104547,41.481690469],[-71.546852547,41.481713469],[-71.546555547,41.481755469],[-71.546272546,41.481820469],[-71.546013547,41.481900469],[-71.545769546,41.481987469],[-71.545502547,41.482113469],[-71.545135547,41.482273469],[-71.545013546,41.482331469],[-71.544762546,41.482434469],[-71.544495546,41.482518469],[-71.544235546,41.482586469],[-71.543861546,41.48266347],[-71.543747546,41.48268247],[-71.543495546,41.482712469],[-71.543007546,41.48273947],[-71.542809546,41.482743469],[-71.542206546,41.482766469],[-71.541527545,41.482781469],[-71.541130545,41.482769469],[-71.540756545,41.482746469],[-71.540573545,41.482731469],[-71.540339545,41.482705469],[-71.539886545,41.482644469],[-71.537750544,41.482342469],[-71.536743544,41.482205469],[-71.536469543,41.482167469],[-71.536411543,41.482158469],[-71.535919543,41.482087469],[-71.535690543,41.482041469],[-71.534188543,41.481739469],[-71.533546543,41.48161047],[-71.532822542,41.481480469],[-71.532402542,41.481400469],[-71.531708542,41.481270469],[-71.531545541,41.481242469],[-71.531136541,41.481175469],[-71.529999541,41.481007469],[-71.529358541,41.480919469],[-71.528923541,41.480862469],[-71.52822954,41.480763469],[-71.527153541,41.480584469],[-71.52643654,41.480465469],[-71.52620754,41.480433469],[-71.525520539,41.480336469],[-71.52531454,41.480313469],[-71.524254539,41.480149469],[-71.523613539,41.48004647],[-71.523064539,41.479981469],[-71.523048539,41.479977469],[-71.522598539,41.479947469],[-71.522438538,41.48033947],[-71.522285538,41.48077047],[-71.521988539,41.48167847],[-71.521782539,41.482258469],[-71.521647539,41.48269147],[-71.521629539,41.48275047],[-71.521614539,41.48281547],[-71.521400539,41.48342247],[-71.521286539,41.48372747],[-71.521202539,41.48396747],[-71.521118538,41.48423447],[-71.521049539,41.48445247],[-71.521004539,41.48457047],[-71.520622539,41.48567247],[-71.520607538,41.48572647],[-71.520470538,41.486111471],[-71.520393538,41.48631347],[-71.520241538,41.486710471],[-71.520218538,41.486756471],[-71.519905538,41.487603471],[-71.519661538,41.488305471],[-71.519424538,41.488961472],[-71.518944538,41.490239471],[-71.518707538,41.490887472],[-71.518356538,41.491875472],[-71.518335538,41.491941472],[-71.518242538,41.492237472],[-71.517601537,41.494107472],[-71.516960537,41.495804473],[-71.516060537,41.498257473],[-71.516030538,41.498336473],[-71.515704538,41.499216473],[-71.515236538,41.500481474],[-71.515209537,41.500553473],[-71.515007537,41.501110474],[-71.514896537,41.501349473],[-71.515350538,41.501471474],[-71.515800538,41.501559474],[-71.515975538,41.501586474],[-71.516309538,41.501641473],[-71.516897538,41.501748474],[-71.517408538,41.501809474],[-71.517797538,41.501839474],[-71.518011538,41.501866474],[-71.518582538,41.501953473],[-71.518812538,41.501988474],[-71.519506539,41.502129473],[-71.520238539,41.502251474],[-71.52133754,41.502415474],[-71.52206154,41.502502473],[-71.52250654,41.502555474],[-71.523254541,41.502651474],[-71.524093541,41.502765474],[-71.525413541,41.502975474],[-71.525955541,41.503078474],[-71.526413542,41.503127474],[-71.526848541,41.503143473],[-71.527137541,41.503188474],[-71.527784541,41.503255474],[-71.528313542,41.503385474],[-71.529442542,41.503682474],[-71.529634542,41.503684474],[-71.529793542,41.503696474],[-71.530086542,41.503729473],[-71.530330543,41.503746473],[-71.530461543,41.503755474],[-71.530528543,41.503760474],[-71.530619543,41.503815474],[-71.530748542,41.503892474],[-71.530873543,41.503941473],[-71.530958543,41.503982473],[-71.531013543,41.504053474],[-71.533654543,41.504545473],[-71.535954544,41.505155474],[-71.542739546,41.507002474],[-71.556735552,41.510703475],[-71.557045552,41.510785474],[-71.557734552,41.510997475],[-71.558041552,41.511076475],[-71.558634552,41.511227474],[-71.558766553,41.511242474],[-71.569699556,41.514140474],[-71.571193556,41.514536474],[-71.576059558,41.515777475],[-71.576506558,41.515808475],[-71.57910656,41.516508475],[-71.57924356,41.516512475],[-71.57986556,41.516652475],[-71.590407563,41.519408475],[-71.594252564,41.520360475],[-71.597275565,41.521138475]]]]}}"}, +{"type": "precinct", "typeId": 3207, "areaId": 25962, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":301,\"NAME\":\"3207\",\"SHAPE_Length\":0.29546131215442,\"SHAPE_Area\":-0.0027066040332815},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.523064539,41.479981469],[-71.523613539,41.48004647],[-71.524254539,41.480149469],[-71.52531454,41.480313469],[-71.525520539,41.480336469],[-71.52620754,41.480433469],[-71.52643654,41.480465469],[-71.527153541,41.480584469],[-71.52822954,41.480763469],[-71.528923541,41.480862469],[-71.529358541,41.480919469],[-71.529999541,41.481007469],[-71.531136541,41.481175469],[-71.531545541,41.481242469],[-71.531708542,41.481270469],[-71.532402542,41.481400469],[-71.532822542,41.481480469],[-71.533546543,41.48161047],[-71.534188543,41.481739469],[-71.535690543,41.482041469],[-71.535919543,41.482087469],[-71.536411543,41.482158469],[-71.536469543,41.482167469],[-71.536743544,41.482205469],[-71.537750544,41.482342469],[-71.539886545,41.482644469],[-71.540339545,41.482705469],[-71.540573545,41.482731469],[-71.540756545,41.482746469],[-71.541130545,41.482769469],[-71.541527545,41.482781469],[-71.542206546,41.482766469],[-71.542809546,41.482743469],[-71.543007546,41.48273947],[-71.543495546,41.482712469],[-71.543747546,41.48268247],[-71.543861546,41.48266347],[-71.544235546,41.482586469],[-71.544495546,41.482518469],[-71.544762546,41.482434469],[-71.545013546,41.482331469],[-71.545135547,41.482273469],[-71.545502547,41.482113469],[-71.545769546,41.481987469],[-71.546013547,41.481900469],[-71.546272546,41.481820469],[-71.546555547,41.481755469],[-71.546852547,41.481713469],[-71.547104547,41.481690469],[-71.547310547,41.481678469],[-71.547729547,41.481671469],[-71.548096547,41.481678469],[-71.548439547,41.481694469],[-71.548599547,41.481705469],[-71.548752547,41.481720469],[-71.548897548,41.481739469],[-71.549171548,41.481797469],[-71.549492548,41.481881469],[-71.549644547,41.481934469],[-71.549812548,41.482006469],[-71.550095548,41.482144469],[-71.551083549,41.482632469],[-71.551460548,41.482819469],[-71.551697548,41.482933469],[-71.551895549,41.483025469],[-71.552094549,41.483105469],[-71.552177548,41.483132469],[-71.552490548,41.483208469],[-71.552750549,41.483261469],[-71.554604549,41.483582469],[-71.55555755,41.483735469],[-71.55638155,41.483864469],[-71.557968551,41.484150469],[-71.558495551,41.484242469],[-71.558746551,41.484295469],[-71.559006551,41.484372469],[-71.559502551,41.484509469],[-71.559761552,41.484593469],[-71.559907551,41.484640469],[-71.559959551,41.484656469],[-71.560140551,41.484542469],[-71.562194552,41.483317469],[-71.562296552,41.483255469],[-71.564463552,41.481942468],[-71.567707553,41.479966468],[-71.568460554,41.479507467],[-71.573570555,41.476362467],[-71.580992557,41.471827466],[-71.582828558,41.470714465],[-71.583796558,41.470116466],[-71.586478559,41.468471465],[-71.58850856,41.467232465],[-71.592285561,41.464940464],[-71.594215561,41.463757464],[-71.595340561,41.463067463],[-71.596993562,41.462053463],[-71.596952563,41.462025464],[-71.596897562,41.461988464],[-71.596870562,41.461922463],[-71.596835562,41.461867464],[-71.596814562,41.461807464],[-71.596820562,41.461739463],[-71.596873562,41.461603463],[-71.596892562,41.461534463],[-71.596917562,41.461397463],[-71.596941562,41.461336463],[-71.596984562,41.461266464],[-71.597190562,41.461006463],[-71.597252562,41.460940463],[-71.597314562,41.460885463],[-71.597439563,41.460792463],[-71.597509562,41.460747463],[-71.597583562,41.460710463],[-71.597737562,41.460650463],[-71.597806563,41.460615463],[-71.597929562,41.460544463],[-71.597976562,41.460499463],[-71.597998562,41.460441463],[-71.597997562,41.460383463],[-71.597979562,41.460319463],[-71.598027562,41.460269463],[-71.598078563,41.460201463],[-71.598109562,41.460088463],[-71.598139563,41.460056463],[-71.598212562,41.460037463],[-71.598290562,41.460005463],[-71.598435562,41.459922463],[-71.598500562,41.459875463],[-71.598548563,41.459828463],[-71.598568563,41.459752463],[-71.598555562,41.459696463],[-71.598528563,41.459644463],[-71.598388563,41.459568463],[-71.598402562,41.459506463],[-71.598452563,41.459459463],[-71.598499562,41.459405463],[-71.598510563,41.459336463],[-71.598487563,41.459274463],[-71.598416562,41.459155463],[-71.598390563,41.459085463],[-71.598384562,41.459020463],[-71.598393563,41.458836463],[-71.598416562,41.458619462],[-71.598453563,41.458498463],[-71.598586563,41.458351463],[-71.598626563,41.458278463],[-71.598647563,41.458225463],[-71.598656562,41.458155463],[-71.598627563,41.458101463],[-71.598628563,41.458050463],[-71.598688562,41.458003463],[-71.598777563,41.457984463],[-71.598847562,41.457953463],[-71.598918563,41.457900462],[-71.598990563,41.457862462],[-71.599075563,41.457826463],[-71.599152563,41.457786462],[-71.599215562,41.457738463],[-71.599364563,41.457590462],[-71.599444563,41.457562463],[-71.599597563,41.457601463],[-71.599694563,41.457590462],[-71.599762562,41.457556463],[-71.599828563,41.457499463],[-71.599911563,41.457374462],[-71.599956562,41.457325463],[-71.600015562,41.457271463],[-71.600076563,41.457205463],[-71.600148563,41.457144462],[-71.600294563,41.457050463],[-71.600363563,41.457020462],[-71.600441563,41.456997463],[-71.600534563,41.456983462],[-71.600706563,41.456987462],[-71.600806563,41.456973463],[-71.600881563,41.456922462],[-71.600894563,41.456850462],[-71.600868563,41.456799463],[-71.600849563,41.456747462],[-71.600880563,41.456682463],[-71.600933563,41.456617462],[-71.600986563,41.456576462],[-71.601103563,41.456576462],[-71.601197563,41.456523462],[-71.601204563,41.456416462],[-71.601178563,41.456365462],[-71.601198563,41.456293463],[-71.601257563,41.456261462],[-71.601364563,41.456274463],[-71.601415564,41.456226462],[-71.601481563,41.456195462],[-71.601563563,41.456211462],[-71.601617563,41.456253462],[-71.601670564,41.456305462],[-71.601762563,41.456313463],[-71.602106563,41.456082463],[-71.602149563,41.456077462],[-71.602209564,41.456138463],[-71.602242563,41.456198463],[-71.602255564,41.456259462],[-71.602260563,41.456332463],[-71.602294564,41.456378462],[-71.602368564,41.456406462],[-71.602462564,41.456413463],[-71.602547564,41.456368462],[-71.602605564,41.456324462],[-71.602665564,41.456270462],[-71.602718564,41.456200462],[-71.602760564,41.456122462],[-71.602782564,41.456053462],[-71.602784563,41.455988462],[-71.602765563,41.455921462],[-71.602718564,41.455857462],[-71.602668563,41.455805462],[-71.602657564,41.455728462],[-71.602682564,41.455673463],[-71.602733564,41.455624462],[-71.602813564,41.455607462],[-71.602887564,41.455628462],[-71.602994564,41.455719462],[-71.603065564,41.455718462],[-71.603158564,41.455689462],[-71.603245564,41.455651462],[-71.603358564,41.455534462],[-71.603410564,41.455491462],[-71.603477564,41.455458462],[-71.603570564,41.455450462],[-71.603630564,41.455415462],[-71.603713564,41.455386462],[-71.603882564,41.455336462],[-71.604048564,41.455265462],[-71.604415564,41.455074462],[-71.604481564,41.455033462],[-71.604521564,41.454980462],[-71.604588564,41.454840462],[-71.604635565,41.454770462],[-71.604692565,41.454706462],[-71.604729564,41.454645462],[-71.604741564,41.454514462],[-71.604788564,41.454384462],[-71.604834564,41.454318462],[-71.604941564,41.454191462],[-71.605033564,41.454046462],[-71.605109564,41.453865461],[-71.605142565,41.453812462],[-71.605182565,41.453763461],[-71.605247564,41.453704461],[-71.605318565,41.453654462],[-71.605414565,41.453637462],[-71.605484564,41.453658462],[-71.605545565,41.453693462],[-71.605629565,41.453733462],[-71.605705565,41.453729461],[-71.605755564,41.453679462],[-71.605803565,41.453619462],[-71.605871564,41.453586462],[-71.606052565,41.453537462],[-71.606137565,41.453523462],[-71.606238564,41.453537462],[-71.606310565,41.453552461],[-71.606414564,41.453555461],[-71.606499565,41.453531461],[-71.606577565,41.453488462],[-71.606642565,41.453434461],[-71.606651565,41.453396461],[-71.606606564,41.453337461],[-71.606547565,41.453286462],[-71.606528564,41.453230462],[-71.606547565,41.453166461],[-71.606582565,41.453106461],[-71.606622565,41.453060462],[-71.606674565,41.453054462],[-71.606725564,41.453106461],[-71.606748565,41.453160461],[-71.606790565,41.453219461],[-71.606850565,41.453223461],[-71.606911565,41.453185461],[-71.606991565,41.453053462],[-71.607037565,41.452987461],[-71.607083565,41.452931461],[-71.607128565,41.452885461],[-71.607146565,41.452838462],[-71.607121565,41.452773461],[-71.607069565,41.452727462],[-71.607097565,41.452670461],[-71.607160565,41.452625462],[-71.607221565,41.452602461],[-71.607263565,41.452550462],[-71.607325565,41.452523461],[-71.607418565,41.452537461],[-71.607483565,41.452562461],[-71.607523565,41.452612461],[-71.607536565,41.452671461],[-71.607544565,41.452815461],[-71.607574565,41.452872461],[-71.607653565,41.452901462],[-71.607730565,41.452891461],[-71.607817565,41.452859462],[-71.607948565,41.452804462],[-71.608011565,41.452773461],[-71.608077565,41.452730461],[-71.608141565,41.452695461],[-71.608228565,41.452679461],[-71.608325565,41.452674461],[-71.608402565,41.452642461],[-71.608452565,41.452588462],[-71.608498565,41.452526461],[-71.608552566,41.452465461],[-71.608620565,41.452412462],[-71.608867566,41.452280461],[-71.608873565,41.452265461],[-71.608912565,41.452235461],[-71.608821566,41.452181462],[-71.608671566,41.452105461],[-71.608609566,41.452066461],[-71.608545565,41.452001461],[-71.608493566,41.451932461],[-71.608433565,41.451878461],[-71.608363565,41.451854461],[-71.608280566,41.451871461],[-71.608191565,41.451873461],[-71.608138565,41.451833461],[-71.608135565,41.451777461],[-71.608162565,41.451718461],[-71.608170565,41.451655462],[-71.608090565,41.451549461],[-71.608097565,41.451496461],[-71.608212565,41.451384461],[-71.608238565,41.451312461],[-71.608200565,41.451249461],[-71.608115565,41.451206461],[-71.608026565,41.451202461],[-71.607960565,41.451251461],[-71.607865565,41.451370461],[-71.607794565,41.451417461],[-71.607725565,41.451404461],[-71.607692565,41.451343462],[-71.607673565,41.451276461],[-71.607639565,41.451214461],[-71.607576565,41.451166461],[-71.607501565,41.451197461],[-71.607444565,41.451232461],[-71.607360565,41.451236461],[-71.607344565,41.451192461],[-71.607342565,41.451122461],[-71.607298565,41.451068461],[-71.607217565,41.451022461],[-71.607136565,41.451013461],[-71.607079565,41.451046461],[-71.607040565,41.451104461],[-71.607022565,41.451173461],[-71.606990565,41.451235461],[-71.606936565,41.451261461],[-71.606874565,41.451243461],[-71.606794565,41.451214461],[-71.606680565,41.451276461],[-71.606592564,41.451278461],[-71.606547565,41.451225461],[-71.606562565,41.451173461],[-71.606607564,41.451127461],[-71.606645564,41.451074461],[-71.606651565,41.451017461],[-71.606605565,41.450982461],[-71.606548564,41.450986461],[-71.606500565,41.451027461],[-71.606456564,41.451073461],[-71.606371565,41.451179461],[-71.606298564,41.451212461],[-71.606232565,41.451189461],[-71.606098565,41.451122461],[-71.606047564,41.451079461],[-71.606041564,41.451024461],[-71.606055565,41.450898461],[-71.606023564,41.450843461],[-71.605954564,41.450810461],[-71.605875564,41.450807461],[-71.605805565,41.450841461],[-71.605736564,41.450892461],[-71.605657564,41.450928461],[-71.605586564,41.450926461],[-71.605533565,41.450868461],[-71.605531565,41.450809461],[-71.605564564,41.450749461],[-71.605618564,41.450692461],[-71.605665565,41.450629461],[-71.605673564,41.450563461],[-71.605646565,41.450520461],[-71.605566564,41.450539461],[-71.605444564,41.450613461],[-71.605374565,41.450625461],[-71.605341564,41.450591461],[-71.605337565,41.450470461],[-71.605315564,41.450411461],[-71.605257564,41.450378461],[-71.605182565,41.450381461],[-71.605102564,41.450403461],[-71.605017564,41.450438461],[-71.604946564,41.450484461],[-71.604887564,41.450515461],[-71.604838564,41.450519461],[-71.604801564,41.450460461],[-71.604769564,41.450397461],[-71.604757564,41.450326461],[-71.604748564,41.450175461],[-71.604691564,41.450138461],[-71.604601564,41.450114461],[-71.604404564,41.450144461],[-71.604310564,41.450123461],[-71.604252564,41.450080461],[-71.604251564,41.450032461],[-71.604298564,41.449982461],[-71.604366564,41.449932461],[-71.604419564,41.449877461],[-71.604418564,41.449821461],[-71.604357564,41.449770461],[-71.604279564,41.449749461],[-71.604198564,41.44978446],[-71.604186564,41.449844461],[-71.604200564,41.449905461],[-71.604181564,41.449951461],[-71.604119564,41.449970461],[-71.603930564,41.449981461],[-71.603832564,41.449993461],[-71.603749564,41.450010461],[-71.603694564,41.449988461],[-71.603684563,41.449931461],[-71.603701563,41.449865461],[-71.603784563,41.449733461],[-71.603791564,41.449675461],[-71.603742563,41.449639461],[-71.603667563,41.449626461],[-71.603606563,41.449649461],[-71.603538564,41.449696461],[-71.603459564,41.449731461],[-71.603381564,41.449758461],[-71.603303564,41.449760461],[-71.603236563,41.449719461],[-71.603203563,41.449646461],[-71.603187564,41.449585461],[-71.603157563,41.449528461],[-71.603106563,41.449477461],[-71.603045563,41.449435461],[-71.602981563,41.449400461],[-71.602892563,41.449361461],[-71.602799564,41.449340461],[-71.602696563,41.44935546],[-71.602634563,41.449385461],[-71.602572563,41.449447461],[-71.602557563,41.44951146],[-71.602582563,41.449569461],[-71.602611563,41.449620461],[-71.602588564,41.449642461],[-71.602419563,41.449667461],[-71.602270563,41.449710461],[-71.602113563,41.449771461],[-71.602045563,41.449806461],[-71.601986563,41.449848461],[-71.601936563,41.449896461],[-71.601805563,41.450066461],[-71.601759563,41.450116461],[-71.601693563,41.450157461],[-71.601604563,41.450169461],[-71.601518563,41.450205461],[-71.601425563,41.450301461],[-71.601346563,41.450328461],[-71.601283562,41.450286461],[-71.601191563,41.450166461],[-71.601148562,41.450094461],[-71.601128562,41.450042461],[-71.601095563,41.449926461],[-71.601072563,41.449868461],[-71.601038563,41.449813461],[-71.600979563,41.449743461],[-71.600907563,41.449702461],[-71.600807563,41.449691461],[-71.600717562,41.449712461],[-71.600651563,41.449772461],[-71.600637563,41.449849461],[-71.600659562,41.449912461],[-71.600723563,41.449968461],[-71.600759562,41.450028461],[-71.600701562,41.450078461],[-71.600633563,41.450101461],[-71.600479563,41.450140461],[-71.600336563,41.450187461],[-71.600239563,41.450190461],[-71.600173562,41.450161461],[-71.600157562,41.450096461],[-71.600201563,41.450035461],[-71.600218562,41.449969461],[-71.600176562,41.449923461],[-71.600099562,41.449912461],[-71.600018562,41.449935461],[-71.599931563,41.449971461],[-71.599836563,41.449996461],[-71.599733562,41.449999461],[-71.599660563,41.449991461],[-71.599566562,41.449960461],[-71.599519562,41.449917461],[-71.599517562,41.449849461],[-71.599575562,41.449736461],[-71.599548562,41.449700461],[-71.599468563,41.449687461],[-71.599399562,41.449704461],[-71.599303562,41.449712461],[-71.599210562,41.449684461],[-71.599145562,41.449635461],[-71.599025562,41.449527461],[-71.598946562,41.449506461],[-71.598857562,41.449516461],[-71.598769562,41.449537461],[-71.598680562,41.449549461],[-71.598590562,41.449577461],[-71.598534562,41.449614461],[-71.598474561,41.449645461],[-71.598403562,41.449659461],[-71.598324562,41.449649461],[-71.598242562,41.449628461],[-71.598171562,41.449604461],[-71.598104561,41.449550461],[-71.598088562,41.449489461],[-71.598131562,41.449452461],[-71.598228562,41.449439461],[-71.598304562,41.449423461],[-71.598368562,41.449393461],[-71.598434562,41.449335461],[-71.598474561,41.449271461],[-71.598467562,41.449213461],[-71.598391562,41.449167461],[-71.598262562,41.449114461],[-71.598193562,41.449096461],[-71.598119562,41.449084461],[-71.598017562,41.449058461],[-71.597951561,41.449008461],[-71.597932561,41.448933461],[-71.597936562,41.448878461],[-71.598039562,41.448703461],[-71.598051562,41.448631461],[-71.597992562,41.448578461],[-71.597916562,41.448559461],[-71.597824562,41.448583461],[-71.597753561,41.448608461],[-71.597683562,41.448626461],[-71.597582561,41.448626461],[-71.597500561,41.448587461],[-71.597368561,41.44849846],[-71.597295562,41.448482461],[-71.597217562,41.448460461],[-71.597189561,41.448425461],[-71.597192561,41.448359461],[-71.597217561,41.448298461],[-71.597254561,41.448230461],[-71.597272561,41.448174461],[-71.597275561,41.448048461],[-71.597261562,41.447983461],[-71.597215561,41.44791446],[-71.597151561,41.44785746],[-71.597090561,41.44783846],[-71.596982561,41.447926461],[-71.596904561,41.44793246],[-71.596732561,41.447884461],[-71.596646561,41.447852461],[-71.596582561,41.447810461],[-71.596565561,41.447760461],[-71.596567561,41.447704461],[-71.596589561,41.447649461],[-71.596578561,41.447587461],[-71.596515561,41.44752446],[-71.596437561,41.44748746],[-71.596366562,41.447495461],[-71.596287561,41.447528461],[-71.596202561,41.44752546],[-71.596128561,41.447481461],[-71.596070561,41.447419461],[-71.596042561,41.447355461],[-71.596053561,41.447280461],[-71.596112561,41.44724946],[-71.596174561,41.447203461],[-71.596210561,41.44713646],[-71.596233561,41.447061461],[-71.596237561,41.446889461],[-71.596220561,41.44680746],[-71.596179561,41.446757461],[-71.596106561,41.44674546],[-71.596012561,41.44674446],[-71.59591956,41.44672346],[-71.59584156,41.446682461],[-71.595811561,41.44663146],[-71.595813561,41.446558461],[-71.595790561,41.44648846],[-71.595719561,41.44645746],[-71.595558561,41.446503461],[-71.595465561,41.44649546],[-71.595370561,41.44645846],[-71.595305561,41.446404461],[-71.595267561,41.44633446],[-71.595232561,41.44629646],[-71.595216561,41.44627846],[-71.59514156,41.446233461],[-71.594994561,41.446156461],[-71.594919561,41.44612146],[-71.59471656,41.446016461],[-71.594509561,41.445916461],[-71.59442656,41.44586546],[-71.594375561,41.445805461],[-71.59432856,41.445740461],[-71.59426256,41.445686461],[-71.59417056,41.445666461],[-71.59409656,41.44565546],[-71.594023561,41.44563646],[-71.59393756,41.44559446],[-71.593908561,41.44553346],[-71.59391256,41.44546446],[-71.59395856,41.445409461],[-71.593986561,41.445355461],[-71.593949561,41.44530146],[-71.59388156,41.44524746],[-71.59384156,41.44519146],[-71.59383656,41.445118461],[-71.59383856,41.445061461],[-71.59388156,41.44488446],[-71.59389756,41.444750461],[-71.59388456,41.444690461],[-71.59384156,41.44463946],[-71.59379156,41.444595461],[-71.59372156,41.44454546],[-71.59364156,41.44454946],[-71.59355956,41.444594461],[-71.59348756,41.44464946],[-71.59341156,41.44468646],[-71.59332456,41.44468146],[-71.59324056,41.44464346],[-71.59316856,41.44458546],[-71.59311356,41.44452446],[-71.59309356,41.44446746],[-71.59313456,41.44441546],[-71.59320956,41.44436546],[-71.59326456,41.44431546],[-71.59325156,41.44429146],[-71.59317156,41.44427946],[-71.59308056,41.44428046],[-71.59300256,41.44426846],[-71.59296056,41.44422946],[-71.592936559,41.444167461],[-71.592898559,41.44409746],[-71.59285456,41.44404446],[-71.59278856,41.44403346],[-71.59271756,41.44404846],[-71.592645559,41.44408246],[-71.59247556,41.44412246],[-71.59238156,41.444128461],[-71.59230956,41.44412146],[-71.592235559,41.44410246],[-71.59216656,41.44407446],[-71.592105559,41.44404246],[-71.59203356,41.44398446],[-71.592003559,41.44392046],[-71.592007559,41.44386646],[-71.59202956,41.44379746],[-71.592024559,41.44372346],[-71.592006559,41.44364946],[-71.592004559,41.44353946],[-71.591989559,41.44348646],[-71.591960559,41.44342846],[-71.591944559,41.44336146],[-71.59193956,41.44328946],[-71.591926559,41.44322246],[-71.59189756,41.44314546],[-71.59180356,41.44301246],[-71.591637559,41.44281646],[-71.59160856,41.44276246],[-71.591599559,41.44268246],[-71.59158556,41.44262846],[-71.59154856,41.44255546],[-71.59148856,41.44249546],[-71.59141156,41.44244346],[-71.591341559,41.44240246],[-71.591268559,41.44236846],[-71.591234559,41.44233046],[-71.591255559,41.44230646],[-71.591219559,41.44226146],[-71.591148559,41.44222346],[-71.591012559,41.44213546],[-71.591003559,41.44207546],[-71.591014559,41.44202046],[-71.591042559,41.44196146],[-71.591059559,41.44194346],[-71.568591551,41.429626458],[-71.568565551,41.429628458],[-71.568467551,41.429622458],[-71.568378551,41.429594458],[-71.568291551,41.429549458],[-71.568225551,41.429507458],[-71.568153551,41.429494458],[-71.568059551,41.429495458],[-71.567960551,41.429503458],[-71.567861551,41.429524458],[-71.56775955,41.429540458],[-71.56768155,41.429547458],[-71.567607551,41.429543458],[-71.567514551,41.429514458],[-71.567438551,41.429504458],[-71.567367551,41.429523458],[-71.567290551,41.429563458],[-71.567143551,41.429652458],[-71.56707655,41.429681458],[-71.566930551,41.429731458],[-71.566835551,41.429770458],[-71.56675255,41.429820458],[-71.566488551,41.430044458],[-71.566411551,41.430090458],[-71.56632255,41.430096458],[-71.56627755,41.430064458],[-71.566217551,41.430050458],[-71.566134551,41.430050458],[-71.56605055,41.430066459],[-71.56598755,41.430120458],[-71.565942551,41.430186458],[-71.56591455,41.430242459],[-71.56591055,41.430369458],[-71.565863551,41.430397459],[-71.56570755,41.430443458],[-71.56555855,41.430496459],[-71.56548155,41.430499458],[-71.56539355,41.430487458],[-71.56531155,41.430495459],[-71.56518555,41.430580458],[-71.56505455,41.430636458],[-71.56500055,41.430674458],[-71.56494555,41.430732458],[-71.56492455,41.430793458],[-71.56492855,41.430863459],[-71.56495155,41.430930458],[-71.56496255,41.430991458],[-71.56495955,41.431052458],[-71.56485555,41.431217459],[-71.56479855,41.431257459],[-71.56462955,41.431307459],[-71.56455455,41.431348459],[-71.56450155,41.431405459],[-71.56447355,41.431470459],[-71.564464549,41.431530459],[-71.56444755,41.431586459],[-71.56440455,41.431633458],[-71.564346549,41.431679459],[-71.56429655,41.431730458],[-71.564269549,41.431789458],[-71.564269549,41.431848458],[-71.564289549,41.431977459],[-71.56425455,41.432048459],[-71.564191549,41.432101458],[-71.56412255,41.432146459],[-71.56406955,41.432197458],[-71.56398555,41.432325459],[-71.563957549,41.432382459],[-71.563957549,41.432446459],[-71.56397255,41.432506458],[-71.56393555,41.432566458],[-71.563918549,41.432631459],[-71.56387655,41.432689459],[-71.563801549,41.432742458],[-71.56365555,41.432821459],[-71.56364155,41.432869459],[-71.56364255,41.432936458],[-71.56367755,41.433079459],[-71.56366055,41.433137459],[-71.563608549,41.433199459],[-71.563511549,41.433302459],[-71.56348755,41.433360459],[-71.56346755,41.433426459],[-71.56343755,41.433482459],[-71.56340155,41.433537459],[-71.56338555,41.433591459],[-71.563353549,41.433647459],[-71.56330855,41.433771459],[-71.56329055,41.433851459],[-71.56329155,41.433924459],[-71.56330455,41.433990459],[-71.56330055,41.434059459],[-71.563279549,41.434127459],[-71.563275549,41.434190459],[-71.56328555,41.434401459],[-71.56328455,41.434483459],[-71.56324755,41.43476546],[-71.56324255,41.434850459],[-71.56324355,41.434997459],[-71.56328355,41.435341459],[-71.56332655,41.43552246],[-71.56333955,41.435598459],[-71.56334555,41.435667459],[-71.56334355,41.435803459],[-71.56331055,41.436094459],[-71.56330455,41.436235459],[-71.563293549,41.436294459],[-71.56324255,41.43647546],[-71.56323455,41.43654246],[-71.563236549,41.43667546],[-71.56324555,41.43673246],[-71.563274549,41.43684346],[-71.56326955,41.436914459],[-71.56324755,41.43698946],[-71.563238549,41.43704646],[-71.563237549,41.437249459],[-71.56326155,41.43737346],[-71.56331955,41.43742546],[-71.56337055,41.437482459],[-71.56338855,41.43753546],[-71.56340155,41.437597459],[-71.56340555,41.43765946],[-71.56347355,41.437753459],[-71.56362055,41.43789746],[-71.56368855,41.43795046],[-71.56382155,41.438065459],[-71.56411755,41.43838046],[-71.56423255,41.43847446],[-71.56435555,41.43858646],[-71.56440955,41.43864546],[-71.56447455,41.43870446],[-71.56455055,41.43874146],[-71.56462655,41.43875646],[-71.564694551,41.43877746],[-71.564754551,41.43881246],[-71.564830551,41.43882946],[-71.56489555,41.43886446],[-71.56495455,41.43891046],[-71.565085551,41.43898246],[-71.565198551,41.43906746],[-71.565513551,41.43924346],[-71.56557555,41.43927146],[-71.565665551,41.43930246],[-71.565725551,41.43933546],[-71.565719551,41.43939346],[-71.56567455,41.43944046],[-71.565526551,41.43953746],[-71.56534155,41.43969946],[-71.565220551,41.43978446],[-71.565083551,41.43986846],[-71.56501055,41.43990646],[-71.56486055,41.439974461],[-71.56486055,41.44003446],[-71.564850551,41.44010346],[-71.564831551,41.44018146],[-71.564787551,41.44024846],[-71.564734551,41.440286461],[-71.56439255,41.44045446],[-71.56431955,41.440481461],[-71.56422355,41.44050146],[-71.56415255,41.44052646],[-71.56409855,41.44056846],[-71.56402155,41.44061146],[-71.56396655,41.44059946],[-71.56389155,41.440558461],[-71.56376355,41.44050146],[-71.56361355,41.44042746],[-71.56339955,41.44034846],[-71.56331155,41.440321461],[-71.56323555,41.440305461],[-71.56315855,41.44029746],[-71.56307155,41.44030846],[-71.562982549,41.44028746],[-71.56291355,41.44025846],[-71.56282455,41.44024146],[-71.56262255,41.440223461],[-71.56252155,41.44022846],[-71.56237155,41.44024846],[-71.562264549,41.44025746],[-71.562188549,41.44025846],[-71.56210155,41.44023646],[-71.562009549,41.44024046],[-71.561913549,41.44026946],[-71.561839549,41.44031046],[-71.56171155,41.44039346],[-71.561583549,41.440538461],[-71.56153655,41.44060546],[-71.561501549,41.440671461],[-71.56147855,41.44073746],[-71.561429549,41.440929461],[-71.561389549,41.440987461],[-71.561336549,41.44104846],[-71.561211549,41.44132446],[-71.56114555,41.44144546],[-71.561118549,41.44151746],[-71.561063549,41.44173446],[-71.561054549,41.441803461],[-71.561044549,41.441957461],[-71.56102955,41.44208446],[-71.561020549,41.442358461],[-71.56102755,41.442426461],[-71.561056549,41.442496461],[-71.561218549,41.442735461],[-71.56126155,41.44278446],[-71.561332549,41.442832461],[-71.561488549,41.442885461],[-71.561620549,41.442942461],[-71.561791549,41.442955461],[-71.561836549,41.443000461],[-71.56180955,41.443039461],[-71.561735549,41.443078461],[-71.561566549,41.443119461],[-71.561486549,41.443148461],[-71.561429549,41.443190461],[-71.56135655,41.443312461],[-71.56128155,41.443315461],[-71.561206549,41.443313461],[-71.561120549,41.443328461],[-71.56104555,41.443351461],[-71.56096755,41.443368461],[-71.560884549,41.443397461],[-71.56081455,41.443444461],[-71.560765549,41.443497461],[-71.56073455,41.443547461],[-71.56071755,41.443771461],[-71.560692549,41.443877461],[-71.560687549,41.443898461],[-71.560660549,41.443979461],[-71.560593549,41.444123461],[-71.560553549,41.444193461],[-71.560441549,41.444314461],[-71.56030855,41.444433461],[-71.560194549,41.444520461],[-71.56011355,41.444574462],[-71.560069549,41.444640461],[-71.560018549,41.444690462],[-71.559731549,41.444932461],[-71.559683549,41.444977461],[-71.559624549,41.445046461],[-71.559556549,41.445104461],[-71.559501549,41.445169461],[-71.559443549,41.445226461],[-71.559370549,41.445268461],[-71.559329549,41.445316462],[-71.559317549,41.445384461],[-71.559272549,41.445432462],[-71.559206549,41.445570462],[-71.558240549,41.445629462],[-71.555435547,41.445877462],[-71.554459547,41.446347462],[-71.553436547,41.446999462],[-71.553284547,41.447117462],[-71.553200547,41.447174462],[-71.553123547,41.447220462],[-71.553040547,41.447262462],[-71.552939547,41.447308462],[-71.552856547,41.447346462],[-71.552551547,41.447464462],[-71.552444547,41.447510462],[-71.552231547,41.447590462],[-71.552025546,41.447659462],[-71.551659547,41.447789462],[-71.551476546,41.447846462],[-71.551254547,41.447903462],[-71.551025547,41.447945462],[-71.550789547,41.447995462],[-71.550591546,41.448037462],[-71.550377546,41.448086463],[-71.550163546,41.448120462],[-71.549980546,41.448140462],[-71.549789546,41.448151462],[-71.549599546,41.448155462],[-71.549080545,41.448151462],[-71.548882545,41.448140462],[-71.548607546,41.448075462],[-71.548416545,41.448021462],[-71.548225545,41.447983462],[-71.548019546,41.447956462],[-71.547867545,41.447941462],[-71.547783545,41.447941462],[-71.547638545,41.447960462],[-71.547569545,41.447976462],[-71.547478545,41.447991462],[-71.547386545,41.448014462],[-71.547322545,41.448024463],[-71.547142545,41.448056462],[-71.546837545,41.448094462],[-71.546547545,41.448151462],[-71.546265545,41.448166462],[-71.545944545,41.448243463],[-71.545845545,41.448273462],[-71.545601545,41.448380462],[-71.545418544,41.448479462],[-71.543633544,41.449540463],[-71.542908544,41.449990463],[-71.542419544,41.450302463],[-71.540947543,41.451226464],[-71.540108543,41.451775463],[-71.539642543,41.452031463],[-71.539544543,41.452080464],[-71.539391543,41.452156463],[-71.539116542,41.452286463],[-71.538956542,41.452355464],[-71.538803542,41.452427463],[-71.538483543,41.452561463],[-71.538330543,41.452629464],[-71.538033543,41.452740464],[-71.537962542,41.452758464],[-71.537864542,41.452781464],[-71.537773542,41.452797464],[-71.537575542,41.452843464],[-71.537453542,41.452862464],[-71.537056542,41.452904463],[-71.536743542,41.452927463],[-71.535904542,41.452961464],[-71.535515542,41.452954464],[-71.535263542,41.452954464],[-71.535049542,41.452965463],[-71.534874542,41.452996464],[-71.534790541,41.453015464],[-71.534538541,41.453045463],[-71.534271541,41.453091464],[-71.533913541,41.453198463],[-71.533836541,41.453225464],[-71.533585541,41.453316463],[-71.533401541,41.453366464],[-71.533081541,41.453427464],[-71.53160954,41.453610464],[-71.528687539,41.453820464],[-71.52861854,41.453831464],[-71.528476539,41.453854464],[-71.528352539,41.453896464],[-71.528256539,41.453954464],[-71.528191539,41.454033464],[-71.528128539,41.453586464],[-71.528076539,41.453312464],[-71.527954539,41.452736464],[-71.527946539,41.452668464],[-71.527946539,41.452603464],[-71.527939539,41.452572464],[-71.527924539,41.452492464],[-71.527832539,41.452214464],[-71.527786539,41.452118464],[-71.527692539,41.451946464],[-71.527672539,41.451908464],[-71.527664539,41.451908464],[-71.527336539,41.451310463],[-71.527030539,41.450862463],[-71.526587539,41.450212464],[-71.525787538,41.449025463],[-71.525459538,41.448532463],[-71.525322538,41.448346463],[-71.524727538,41.447510463],[-71.524147538,41.446640463],[-71.523125537,41.446797463],[-71.522491537,41.446888463],[-71.522331537,41.446915463],[-71.521339537,41.447041463],[-71.521095536,41.447041463],[-71.520935536,41.447029463],[-71.519760536,41.446885463],[-71.519493536,41.446865463],[-71.519165536,41.446862463],[-71.518730536,41.446877463],[-71.517807536,41.446926463],[-71.517334535,41.446938463],[-71.516708535,41.446942463],[-71.516548535,41.446938463],[-71.515953535,41.446965463],[-71.515404535,41.446976463],[-71.515106534,41.446965463],[-71.514270534,41.446863463],[-71.514183535,41.446846463],[-71.514053534,41.446835463],[-71.513947534,41.446831463],[-71.513885534,41.446820463],[-71.513763534,41.446789463],[-71.513588534,41.446728463],[-71.513489534,41.446671463],[-71.513306534,41.446526463],[-71.512657534,41.446083463],[-71.512581534,41.446041463],[-71.512466534,41.445965463],[-71.512360533,41.445908463],[-71.512299533,41.445885463],[-71.512230534,41.445866463],[-71.512108533,41.445843463],[-71.512001534,41.445832463],[-71.511848533,41.445832463],[-71.511560533,41.445847463],[-71.510704533,41.445881463],[-71.510498533,41.445877463],[-71.509483533,41.445912463],[-71.508629533,41.445935463],[-71.508438532,41.445931463],[-71.508171532,41.445923463],[-71.507874532,41.445889463],[-71.507133532,41.445771463],[-71.506912532,41.446823463],[-71.506902532,41.446885463],[-71.506889532,41.446965463],[-71.506859532,41.447293463],[-71.506859532,41.447380464],[-71.506851532,41.447491463],[-71.506866532,41.447770464],[-71.506882532,41.447956463],[-71.506874532,41.448151463],[-71.506866532,41.448601463],[-71.506844532,41.449322464],[-71.506836532,41.449398464],[-71.506775532,41.449986464],[-71.506714532,41.450241464],[-71.506676532,41.450425464],[-71.506554532,41.450890464],[-71.506493532,41.451031465],[-71.506264532,41.451493464],[-71.506256532,41.451516465],[-71.505981532,41.452092464],[-71.505821532,41.452435465],[-71.505714532,41.452661464],[-71.505915532,41.452647465],[-71.506267532,41.452696464],[-71.506404532,41.452690464],[-71.506967532,41.452646465],[-71.507113532,41.452631464],[-71.507594533,41.452555464],[-71.507727533,41.452540464],[-71.507861533,41.452529465],[-71.508119533,41.452517464],[-71.508477532,41.452486464],[-71.508752533,41.452523464],[-71.508882533,41.452539464],[-71.509009533,41.452565464],[-71.509138533,41.452585464],[-71.509439533,41.452647465],[-71.509586533,41.452681464],[-71.509626533,41.452693464],[-71.509700533,41.452718464],[-71.509808533,41.452766465],[-71.509917533,41.452807464],[-71.510006533,41.452837464],[-71.510228534,41.452864465],[-71.510357533,41.452938465],[-71.510500534,41.452992464],[-71.510888534,41.453079465],[-71.511691534,41.453497464],[-71.514967535,41.456558465],[-71.515165535,41.456817465],[-71.515228535,41.456853465],[-71.515958536,41.457150465],[-71.517588536,41.457723465],[-71.518719536,41.458143465],[-71.518918536,41.458181465],[-71.519987537,41.458560465],[-71.520116536,41.458599465],[-71.520231537,41.458620465],[-71.520364537,41.458637466],[-71.521341538,41.458849465],[-71.522563538,41.459099465],[-71.524017538,41.459408465],[-71.525243539,41.459668466],[-71.526232539,41.459895465],[-71.526471539,41.459953465],[-71.527181539,41.460128465],[-71.52732854,41.460122465],[-71.527296539,41.460166465],[-71.527237539,41.460247465],[-71.52707754,41.460427466],[-71.526947539,41.460602466],[-71.526878539,41.460724466],[-71.526865539,41.460760466],[-71.526848539,41.460812465],[-71.526833539,41.460923465],[-71.526779539,41.461121465],[-71.52672654,41.461377465],[-71.526711539,41.461480466],[-71.526695539,41.461579466],[-71.526649539,41.462090465],[-71.526649539,41.462292466],[-71.526649539,41.462361466],[-71.526642539,41.462410466],[-71.526627539,41.462613466],[-71.526611539,41.463185466],[-71.526581539,41.463581466],[-71.526558539,41.463982466],[-71.526520539,41.464520466],[-71.52651254,41.464791466],[-71.526505539,41.464833466],[-71.526474539,41.465527466],[-71.526474539,41.465584466],[-71.526459539,41.465725466],[-71.526456539,41.465765466],[-71.526443539,41.466015466],[-71.526398539,41.466507467],[-71.526321539,41.467736467],[-71.52629754,41.467993467],[-71.52627454,41.468262467],[-71.526230539,41.468758467],[-71.526192539,41.469258467],[-71.526154539,41.469654468],[-71.526131539,41.469796467],[-71.526037539,41.470137467],[-71.525891539,41.470624467],[-71.525801539,41.470959468],[-71.525741539,41.471184467],[-71.525337539,41.472435468],[-71.525093539,41.473080468],[-71.524933539,41.473545468],[-71.52479654,41.474053468],[-71.524750539,41.474198468],[-71.524567539,41.474865468],[-71.524490539,41.475163468],[-71.524422539,41.475430468],[-71.524277539,41.476082468],[-71.524170539,41.476441469],[-71.523880539,41.477364469],[-71.523796539,41.477658469],[-71.523460539,41.478848469],[-71.523270539,41.479401469],[-71.523125539,41.479782469],[-71.523064539,41.479981469]]]]}}"}, +{"type": "precinct", "typeId": 3208, "areaId": 26027, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":366,\"NAME\":\"3208\",\"SHAPE_Length\":0.52463827518149,\"SHAPE_Area\":-0.0029533603254267},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.51731224,41.38214474],[-71.517318125,41.382155637],[-71.517312532,41.38214445],[-71.51731224,41.38214474]]],[[[-71.517356799,41.382208362],[-71.517385635,41.382245788],[-71.51733096,41.38217412],[-71.517356799,41.382208362]]],[[[-71.517523303,41.382465904],[-71.517531051,41.382481912],[-71.517551593,41.382534442],[-71.517573136,41.382587636],[-71.51760133,41.382640897],[-71.517629524,41.382691253],[-71.517646684,41.382722204],[-71.517573532,41.38258745],[-71.517531532,41.382481451],[-71.517510282,41.382438951],[-71.517523303,41.382465904]]],[[[-71.517802105,41.383063168],[-71.517807558,41.38308433],[-71.517802532,41.383063451],[-71.517799723,41.383056568],[-71.517802105,41.383063168]]],[[[-71.517504421,41.383145],[-71.517562532,41.38309345],[-71.517652532,41.38309745],[-71.517683602,41.383109626],[-71.517652195,41.383096971],[-71.517562614,41.383092982],[-71.517504421,41.383145]]],[[[-71.517500226,41.38314875],[-71.517485395,41.383216861],[-71.517487269,41.383247967],[-71.517485532,41.383216451],[-71.517500525,41.383148483],[-71.517500226,41.38314875]]],[[[-71.517492079,41.383343242],[-71.517500219,41.383380114],[-71.517492532,41.38334345],[-71.517490399,41.383304764],[-71.517492079,41.383343242]]],[[[-71.517529192,41.383475519],[-71.517547909,41.383523914],[-71.517509254,41.383415856],[-71.517529192,41.383475519]]],[[[-71.517758544,41.383901491],[-71.517785631,41.383953649],[-71.517737853,41.383858092],[-71.517758544,41.383901491]]],[[[-71.51787924,41.384078604],[-71.51788919,41.384094019],[-71.517879532,41.384078451],[-71.51786397,41.384058221],[-71.51787924,41.384078604]]],[[[-71.517946076,41.384186588],[-71.517960981,41.384236219],[-71.517946532,41.38418645],[-71.517936331,41.384170006],[-71.517946076,41.384186588]]],[[[-71.517992814,41.384308846],[-71.518059091,41.384369419],[-71.518114046,41.384425929],[-71.518059532,41.384369451],[-71.517992702,41.384308606],[-71.517992814,41.384308846]]],[[[-71.518210334,41.384536647],[-71.518223256,41.384594164],[-71.51824945,41.384656688],[-71.518286152,41.384720765],[-71.518296054,41.384754619],[-71.518286532,41.384720451],[-71.518249532,41.384656451],[-71.518223533,41.38459445],[-71.518210532,41.38453645],[-71.518193376,41.384514148],[-71.518210334,41.384536647]]],[[[-71.518232478,41.384883496],[-71.518207376,41.384927206],[-71.518210485,41.384933583],[-71.518207532,41.384927451],[-71.518232532,41.38488345],[-71.518232478,41.384883496]]],[[[-71.518281866,41.385032329],[-71.51832175,41.385071546],[-71.518244688,41.384992844],[-71.518281866,41.385032329]]],[[[-71.518690515,41.385449741],[-71.518744579,41.385485867],[-71.51877729,41.385502717],[-71.518800229,41.385514546],[-71.518744533,41.385485451],[-71.518690533,41.38544945],[-71.518655217,41.385418129],[-71.518690515,41.385449741]]],[[[-71.518812005,41.385520619],[-71.518887139,41.385538903],[-71.518935724,41.385544158],[-71.518887533,41.385538451],[-71.518811804,41.385520515],[-71.518812005,41.385520619]]],[[[-71.51289688,41.396982002],[-71.512946121,41.397020373],[-71.512975303,41.396987414],[-71.512944311,41.396927131],[-71.512918423,41.396875995],[-71.512898159,41.396846312],[-71.512863828,41.396798242],[-71.512855707,41.396738117],[-71.512805493,41.396698351],[-71.512774654,41.396643008],[-71.512710013,41.39659995],[-71.512700802,41.396559974],[-71.512706803,41.396495227],[-71.512676972,41.396465019],[-71.512646665,41.396493701],[-71.512621407,41.396553876],[-71.51260195,41.39661604],[-71.51259601,41.396682227],[-71.512598665,41.396748986],[-71.512597977,41.396803532],[-71.512616791,41.396868459],[-71.512639492,41.396935467],[-71.512672911,41.396984223],[-71.512731773,41.396977858],[-71.512797189,41.396944757],[-71.512851312,41.396939262],[-71.51289688,41.396982002]]],[[[-71.512925453,41.397100536],[-71.512855818,41.397147382],[-71.512799211,41.39718668],[-71.512805632,41.397251883],[-71.51279784,41.397319534],[-71.512835697,41.397384025],[-71.512814418,41.397447675],[-71.512778223,41.397496599],[-71.512739173,41.397545615],[-71.512699059,41.397591726],[-71.512662864,41.397640649],[-71.512636572,41.397698697],[-71.512633182,41.397756926],[-71.512657156,41.397808084],[-71.512697986,41.397851671],[-71.512771459,41.397852897],[-71.512848968,41.397836056],[-71.512914446,41.397804419],[-71.512966346,41.397766609],[-71.512996892,41.397720681],[-71.51297474,41.397666618],[-71.512907761,41.397636551],[-71.512884575,41.39758107],[-71.512881314,41.397523026],[-71.512889504,41.3974661],[-71.512890553,41.397396414],[-71.51290202,41.397325789],[-71.512913914,41.397265204],[-71.512928755,41.397206746],[-71.51295696,41.397149407],[-71.512957586,41.397093374],[-71.512925453,41.397100536]]],[[[-71.507734012,41.404242505],[-71.507747627,41.404297507],[-71.507818955,41.404340384],[-71.507881444,41.40437775],[-71.507905691,41.404435381],[-71.507937715,41.404497083],[-71.507982041,41.404556406],[-71.508088825,41.404651631],[-71.508141837,41.404689935],[-71.508203384,41.404726592],[-71.508263017,41.404763317],[-71.508339691,41.40479748],[-71.508432706,41.404810486],[-71.508511473,41.404824477],[-71.508590485,41.404844918],[-71.508670225,41.404859663],[-71.508758623,41.404876306],[-71.508846201,41.40489734],[-71.508923996,41.404910622],[-71.509012513,41.404905766],[-71.509088361,41.404894737],[-71.509171194,41.404867697],[-71.509243516,41.404840224],[-71.50932729,41.40481323],[-71.509404503,41.404787769],[-71.509474698,41.404754602],[-71.509539152,41.40472084],[-71.509603575,41.404686346],[-71.509664262,41.404653385],[-71.509715106,41.40461418],[-71.509770109,41.404558395],[-71.509792518,41.40449829],[-71.509817447,41.404430248],[-71.509838246,41.404378102],[-71.509865211,41.404312851],[-71.509891355,41.404250504],[-71.509934117,41.404199294],[-71.509959716,41.404146987],[-71.509948924,41.404091985],[-71.509877503,41.404046936],[-71.509805144,41.404025604],[-71.509725649,41.404017332],[-71.509652413,41.404021157],[-71.509567576,41.404046025],[-71.509500116,41.404076265],[-71.509443439,41.404114189],[-71.509377682,41.404163045],[-71.509306516,41.404195527],[-71.509235498,41.404207905],[-71.509148321,41.404222046],[-71.509071044,41.404220932],[-71.508991609,41.4042141],[-71.508905431,41.404205301],[-71.508830553,41.404193323],[-71.508760108,41.404172653],[-71.508687596,41.404147044],[-71.508613141,41.404121412],[-71.508536773,41.404095163],[-71.508471551,41.404062166],[-71.508409913,41.404022627],[-71.508343445,41.403982495],[-71.508276584,41.403954575],[-71.508202617,41.403941155],[-71.508120906,41.403948754],[-71.508049983,41.403987684],[-71.507989601,41.404028535],[-71.50792305,41.404057333],[-71.507858444,41.404087504],[-71.507797577,41.404139172],[-71.507757547,41.404187431],[-71.507734012,41.404242505]]],[[[-71.507060289,41.406386506],[-71.506970344,41.406402178],[-71.506903487,41.406423794],[-71.506836357,41.406462632],[-71.506769956,41.406495043],[-71.506691283,41.406531252],[-71.506622938,41.406562977],[-71.506542988,41.406591295],[-71.506476952,41.406632282],[-71.506399372,41.406672104],[-71.506324739,41.406713984],[-71.506247068,41.406751656],[-71.506164719,41.406790837],[-71.506085347,41.406833563],[-71.506011564,41.406871829],[-71.505939726,41.406912199],[-71.505858072,41.40692126],[-71.505789693,41.406928536],[-71.505836418,41.406976287],[-71.50589988,41.407012922],[-71.505978895,41.407057789],[-71.506037466,41.407090971],[-71.506120371,41.407137897],[-71.50618763,41.407175149],[-71.506235327,41.407222922],[-71.50621744,41.40727644],[-71.506174673,41.407328358],[-71.506161921,41.407391138],[-71.506156062,41.407435758],[-71.506213996,41.407477539],[-71.506293589,41.407512366],[-71.506363793,41.40752732],[-71.506462702,41.407520041],[-71.506551554,41.407500802],[-71.506640133,41.407474405],[-71.50673345,41.407446452],[-71.506818746,41.407409351],[-71.50687977,41.407361274],[-71.506910749,41.407301009],[-71.506928605,41.407246005],[-71.506937712,41.407186976],[-71.506959365,41.407132635],[-71.507007327,41.407091305],[-71.507048179,41.407040119],[-71.507099663,41.406992316],[-71.507167037,41.406959905],[-71.507239271,41.406929551],[-71.507309835,41.406905007],[-71.507379518,41.406882636],[-71.507447226,41.406858823],[-71.50750831,41.406812918],[-71.507548341,41.406764636],[-71.507586429,41.406714937],[-71.507584811,41.406650351],[-71.507571165,41.406595371],[-71.507556578,41.406540438],[-71.507527896,41.406490125],[-71.507461122,41.406442102],[-71.507391251,41.406411345],[-71.507312298,41.4063923],[-71.507233651,41.406381167],[-71.507146863,41.406380966],[-71.507060289,41.406386506]]],[[[-71.51080673,41.413359495],[-71.510715723,41.413433534],[-71.510726189,41.413527713],[-71.510815271,41.413565647],[-71.510883202,41.413566601],[-71.51094797,41.413548184],[-71.511039526,41.413486609],[-71.511040449,41.413378752],[-71.510944867,41.413343472],[-71.51080673,41.413359495]]],[[[-71.505223721,41.418909342],[-71.505323993,41.419011727],[-71.50542803,41.419074067],[-71.505592705,41.419064019],[-71.505708642,41.419020743],[-71.505818166,41.418941423],[-71.505857785,41.418936481],[-71.505917,41.418918685],[-71.506049526,41.418873555],[-71.506186428,41.418836841],[-71.506296415,41.418846029],[-71.506372952,41.418871342],[-71.506463185,41.418825642],[-71.506546364,41.418734156],[-71.506508289,41.4186776],[-71.506361656,41.418629146],[-71.506179055,41.418621677],[-71.506024771,41.418619421],[-71.505861463,41.418612912],[-71.505729475,41.418564685],[-71.505603654,41.418491643],[-71.505476861,41.41842066],[-71.505357511,41.418347023],[-71.505240957,41.418271351],[-71.505140747,41.418165535],[-71.505062474,41.418064794],[-71.504993316,41.417966981],[-71.504943148,41.417881906],[-71.504905292,41.41788966],[-71.504875617,41.418008839],[-71.50483081,41.418108464],[-71.504877148,41.418165157],[-71.504960251,41.418255583],[-71.504994896,41.418372906],[-71.504986913,41.418470265],[-71.50496787,41.418567511],[-71.505045751,41.4186841],[-71.50512916,41.418799408],[-71.505223721,41.418909342]]],[[[-71.503869755,41.420777395],[-71.503933562,41.42079697],[-71.503953155,41.420712258],[-71.504063017,41.420618394],[-71.504097499,41.420563573],[-71.504071939,41.420449794],[-71.503977106,41.420350975],[-71.503955833,41.420284949],[-71.504043969,41.420178348],[-71.504050101,41.420082361],[-71.503999086,41.420065004],[-71.503899399,41.420084287],[-71.503819587,41.420188235],[-71.503707416,41.420264054],[-71.503574034,41.420306391],[-71.503420263,41.420321467],[-71.503250358,41.420318979],[-71.503116093,41.420325318],[-71.503091393,41.420356811],[-71.503100572,41.420428852],[-71.50317605,41.420530166],[-71.503234969,41.420633378],[-71.503339372,41.420718544],[-71.503458419,41.420769404],[-71.503599823,41.420734774],[-71.503642178,41.420730564],[-71.503757301,41.420720475],[-71.503869755,41.420777395]]],[[[-71.503195461,41.421064278],[-71.503085476,41.421162257],[-71.503038599,41.421271487],[-71.503041643,41.421404295],[-71.50313018,41.421355144],[-71.503168884,41.421241569],[-71.503236605,41.4211451],[-71.503274825,41.421086849],[-71.503252583,41.421058879],[-71.503195461,41.421064278]]],[[[-71.52861854,41.453831464],[-71.528687539,41.453820464],[-71.53160954,41.453610464],[-71.533081541,41.453427464],[-71.533401541,41.453366464],[-71.533585541,41.453316463],[-71.533836541,41.453225464],[-71.533913541,41.453198463],[-71.534271541,41.453091464],[-71.534538541,41.453045463],[-71.534790541,41.453015464],[-71.534874542,41.452996464],[-71.535049542,41.452965463],[-71.535263542,41.452954464],[-71.535515542,41.452954464],[-71.535904542,41.452961464],[-71.536743542,41.452927463],[-71.537056542,41.452904463],[-71.537453542,41.452862464],[-71.537575542,41.452843464],[-71.537773542,41.452797464],[-71.537864542,41.452781464],[-71.537962542,41.452758464],[-71.538033543,41.452740464],[-71.538330543,41.452629464],[-71.538483543,41.452561463],[-71.538803542,41.452427463],[-71.538956542,41.452355464],[-71.539116542,41.452286463],[-71.539391543,41.452156463],[-71.539544543,41.452080464],[-71.539642543,41.452031463],[-71.540108543,41.451775463],[-71.540947543,41.451226464],[-71.542419544,41.450302463],[-71.542908544,41.449990463],[-71.543633544,41.449540463],[-71.545418544,41.448479462],[-71.545601545,41.448380462],[-71.545845545,41.448273462],[-71.545944545,41.448243463],[-71.546265545,41.448166462],[-71.546547545,41.448151462],[-71.546837545,41.448094462],[-71.547142545,41.448056462],[-71.547322545,41.448024463],[-71.547386545,41.448014462],[-71.547478545,41.447991462],[-71.547569545,41.447976462],[-71.547638545,41.447960462],[-71.547783545,41.447941462],[-71.547867545,41.447941462],[-71.548019546,41.447956462],[-71.548225545,41.447983462],[-71.548416545,41.448021462],[-71.548607546,41.448075462],[-71.548882545,41.448140462],[-71.549080545,41.448151462],[-71.549599546,41.448155462],[-71.549789546,41.448151462],[-71.549980546,41.448140462],[-71.550163546,41.448120462],[-71.550377546,41.448086463],[-71.550591546,41.448037462],[-71.550789547,41.447995462],[-71.551025547,41.447945462],[-71.551254547,41.447903462],[-71.551476546,41.447846462],[-71.551659547,41.447789462],[-71.552025546,41.447659462],[-71.552231547,41.447590462],[-71.552444547,41.447510462],[-71.552551547,41.447464462],[-71.552856547,41.447346462],[-71.552939547,41.447308462],[-71.553040547,41.447262462],[-71.553123547,41.447220462],[-71.553200547,41.447174462],[-71.553284547,41.447117462],[-71.553436547,41.446999462],[-71.554459547,41.446347462],[-71.555435547,41.445877462],[-71.558240549,41.445629462],[-71.559206549,41.445570462],[-71.559272549,41.445432462],[-71.559317549,41.445384461],[-71.559329549,41.445316462],[-71.559370549,41.445268461],[-71.559443549,41.445226461],[-71.559501549,41.445169461],[-71.559556549,41.445104461],[-71.559624549,41.445046461],[-71.559683549,41.444977461],[-71.559731549,41.444932461],[-71.560018549,41.444690462],[-71.560069549,41.444640461],[-71.56011355,41.444574462],[-71.560194549,41.444520461],[-71.56030855,41.444433461],[-71.560441549,41.444314461],[-71.560553549,41.444193461],[-71.560593549,41.444123461],[-71.560660549,41.443979461],[-71.560687549,41.443898461],[-71.560692549,41.443877461],[-71.56071755,41.443771461],[-71.56073455,41.443547461],[-71.560765549,41.443497461],[-71.56081455,41.443444461],[-71.560884549,41.443397461],[-71.56096755,41.443368461],[-71.56104555,41.443351461],[-71.561120549,41.443328461],[-71.561206549,41.443313461],[-71.56128155,41.443315461],[-71.56135655,41.443312461],[-71.561429549,41.443190461],[-71.561486549,41.443148461],[-71.561566549,41.443119461],[-71.561735549,41.443078461],[-71.56180955,41.443039461],[-71.561836549,41.443000461],[-71.561791549,41.442955461],[-71.561620549,41.442942461],[-71.561488549,41.442885461],[-71.561332549,41.442832461],[-71.56126155,41.44278446],[-71.561218549,41.442735461],[-71.561056549,41.442496461],[-71.56102755,41.442426461],[-71.561020549,41.442358461],[-71.56102955,41.44208446],[-71.561044549,41.441957461],[-71.561054549,41.441803461],[-71.561063549,41.44173446],[-71.561118549,41.44151746],[-71.56114555,41.44144546],[-71.561211549,41.44132446],[-71.561336549,41.44104846],[-71.561389549,41.440987461],[-71.561429549,41.440929461],[-71.56147855,41.44073746],[-71.561501549,41.440671461],[-71.56153655,41.44060546],[-71.561583549,41.440538461],[-71.56171155,41.44039346],[-71.561839549,41.44031046],[-71.561913549,41.44026946],[-71.562009549,41.44024046],[-71.56210155,41.44023646],[-71.562188549,41.44025846],[-71.562264549,41.44025746],[-71.56237155,41.44024846],[-71.56252155,41.44022846],[-71.56262255,41.440223461],[-71.56282455,41.44024146],[-71.56291355,41.44025846],[-71.562982549,41.44028746],[-71.56307155,41.44030846],[-71.56315855,41.44029746],[-71.56323555,41.440305461],[-71.56331155,41.440321461],[-71.56339955,41.44034846],[-71.56361355,41.44042746],[-71.56376355,41.44050146],[-71.56389155,41.440558461],[-71.56396655,41.44059946],[-71.56402155,41.44061146],[-71.56409855,41.44056846],[-71.56415255,41.44052646],[-71.56422355,41.44050146],[-71.56431955,41.440481461],[-71.56439255,41.44045446],[-71.564734551,41.440286461],[-71.564787551,41.44024846],[-71.564831551,41.44018146],[-71.564850551,41.44010346],[-71.56486055,41.44003446],[-71.56486055,41.439974461],[-71.56501055,41.43990646],[-71.565083551,41.43986846],[-71.565220551,41.43978446],[-71.56534155,41.43969946],[-71.565526551,41.43953746],[-71.56567455,41.43944046],[-71.565719551,41.43939346],[-71.565725551,41.43933546],[-71.565665551,41.43930246],[-71.56557555,41.43927146],[-71.565513551,41.43924346],[-71.565198551,41.43906746],[-71.565085551,41.43898246],[-71.56495455,41.43891046],[-71.56489555,41.43886446],[-71.564830551,41.43882946],[-71.564754551,41.43881246],[-71.564694551,41.43877746],[-71.56462655,41.43875646],[-71.56455055,41.43874146],[-71.56447455,41.43870446],[-71.56440955,41.43864546],[-71.56435555,41.43858646],[-71.56423255,41.43847446],[-71.56411755,41.43838046],[-71.56382155,41.438065459],[-71.56368855,41.43795046],[-71.56362055,41.43789746],[-71.56347355,41.437753459],[-71.56340555,41.43765946],[-71.56340155,41.437597459],[-71.56338855,41.43753546],[-71.56337055,41.437482459],[-71.56331955,41.43742546],[-71.56326155,41.43737346],[-71.563237549,41.437249459],[-71.563238549,41.43704646],[-71.56324755,41.43698946],[-71.56326955,41.436914459],[-71.563274549,41.43684346],[-71.56324555,41.43673246],[-71.563236549,41.43667546],[-71.56323455,41.43654246],[-71.56324255,41.43647546],[-71.563293549,41.436294459],[-71.56330455,41.436235459],[-71.56331055,41.436094459],[-71.56334355,41.435803459],[-71.56334555,41.435667459],[-71.56333955,41.435598459],[-71.56332655,41.43552246],[-71.56328355,41.435341459],[-71.56324355,41.434997459],[-71.56324255,41.434850459],[-71.56324755,41.43476546],[-71.56328455,41.434483459],[-71.56328555,41.434401459],[-71.563275549,41.434190459],[-71.563279549,41.434127459],[-71.56330055,41.434059459],[-71.56330455,41.433990459],[-71.56329155,41.433924459],[-71.56329055,41.433851459],[-71.56330855,41.433771459],[-71.563353549,41.433647459],[-71.56338555,41.433591459],[-71.56340155,41.433537459],[-71.56343755,41.433482459],[-71.56346755,41.433426459],[-71.56348755,41.433360459],[-71.563511549,41.433302459],[-71.563608549,41.433199459],[-71.56366055,41.433137459],[-71.56367755,41.433079459],[-71.56364255,41.432936458],[-71.56364155,41.432869459],[-71.56365555,41.432821459],[-71.563801549,41.432742458],[-71.56387655,41.432689459],[-71.563918549,41.432631459],[-71.56393555,41.432566458],[-71.56397255,41.432506458],[-71.563957549,41.432446459],[-71.563957549,41.432382459],[-71.56398555,41.432325459],[-71.56406955,41.432197458],[-71.56412255,41.432146459],[-71.564191549,41.432101458],[-71.56425455,41.432048459],[-71.564289549,41.431977459],[-71.564269549,41.431848458],[-71.564269549,41.431789458],[-71.56429655,41.431730458],[-71.564346549,41.431679459],[-71.56440455,41.431633458],[-71.56444755,41.431586459],[-71.564464549,41.431530459],[-71.56447355,41.431470459],[-71.56450155,41.431405459],[-71.56455455,41.431348459],[-71.56462955,41.431307459],[-71.56479855,41.431257459],[-71.56485555,41.431217459],[-71.56495955,41.431052458],[-71.56496255,41.430991458],[-71.56495155,41.430930458],[-71.56492855,41.430863459],[-71.56492455,41.430793458],[-71.56494555,41.430732458],[-71.56500055,41.430674458],[-71.56505455,41.430636458],[-71.56518555,41.430580458],[-71.56531155,41.430495459],[-71.56539355,41.430487458],[-71.56548155,41.430499458],[-71.56555855,41.430496459],[-71.56570755,41.430443458],[-71.565863551,41.430397459],[-71.56591055,41.430369458],[-71.56591455,41.430242459],[-71.565942551,41.430186458],[-71.56598755,41.430120458],[-71.56605055,41.430066459],[-71.566134551,41.430050458],[-71.566217551,41.430050458],[-71.56627755,41.430064458],[-71.56632255,41.430096458],[-71.566411551,41.430090458],[-71.566488551,41.430044458],[-71.56675255,41.429820458],[-71.566835551,41.429770458],[-71.566930551,41.429731458],[-71.56707655,41.429681458],[-71.567143551,41.429652458],[-71.567290551,41.429563458],[-71.567367551,41.429523458],[-71.567438551,41.429504458],[-71.567514551,41.429514458],[-71.567607551,41.429543458],[-71.56768155,41.429547458],[-71.56775955,41.429540458],[-71.567861551,41.429524458],[-71.567960551,41.429503458],[-71.568059551,41.429495458],[-71.568153551,41.429494458],[-71.568225551,41.429507458],[-71.568291551,41.429549458],[-71.568378551,41.429594458],[-71.568467551,41.429622458],[-71.568565551,41.429628458],[-71.568591551,41.429626458],[-71.591059559,41.44194346],[-71.591042559,41.44196146],[-71.591014559,41.44202046],[-71.591003559,41.44207546],[-71.591012559,41.44213546],[-71.591148559,41.44222346],[-71.591219559,41.44226146],[-71.591255559,41.44230646],[-71.591234559,41.44233046],[-71.591268559,41.44236846],[-71.591341559,41.44240246],[-71.59141156,41.44244346],[-71.59148856,41.44249546],[-71.59154856,41.44255546],[-71.59158556,41.44262846],[-71.591599559,41.44268246],[-71.59160856,41.44276246],[-71.591637559,41.44281646],[-71.59180356,41.44301246],[-71.59189756,41.44314546],[-71.591926559,41.44322246],[-71.59193956,41.44328946],[-71.591944559,41.44336146],[-71.591960559,41.44342846],[-71.591989559,41.44348646],[-71.592004559,41.44353946],[-71.592006559,41.44364946],[-71.592024559,41.44372346],[-71.59202956,41.44379746],[-71.592007559,41.44386646],[-71.592003559,41.44392046],[-71.59203356,41.44398446],[-71.592105559,41.44404246],[-71.59216656,41.44407446],[-71.592235559,41.44410246],[-71.59230956,41.44412146],[-71.59238156,41.444128461],[-71.59247556,41.44412246],[-71.592645559,41.44408246],[-71.59271756,41.44404846],[-71.59278856,41.44403346],[-71.59285456,41.44404446],[-71.592898559,41.44409746],[-71.592936559,41.444167461],[-71.59296056,41.44422946],[-71.59300256,41.44426846],[-71.59308056,41.44428046],[-71.59317156,41.44427946],[-71.59325156,41.44429146],[-71.59326456,41.44431546],[-71.59320956,41.44436546],[-71.59313456,41.44441546],[-71.59309356,41.44446746],[-71.59311356,41.44452446],[-71.59316856,41.44458546],[-71.59324056,41.44464346],[-71.59332456,41.44468146],[-71.59341156,41.44468646],[-71.59348756,41.44464946],[-71.59355956,41.444594461],[-71.59364156,41.44454946],[-71.59372156,41.44454546],[-71.59379156,41.444595461],[-71.59384156,41.44463946],[-71.59388456,41.444690461],[-71.59389756,41.444750461],[-71.59388156,41.44488446],[-71.59383856,41.445061461],[-71.59383656,41.445118461],[-71.59384156,41.44519146],[-71.59388156,41.44524746],[-71.593949561,41.44530146],[-71.593986561,41.445355461],[-71.59395856,41.445409461],[-71.59391256,41.44546446],[-71.593908561,41.44553346],[-71.59393756,41.44559446],[-71.594023561,41.44563646],[-71.59409656,41.44565546],[-71.59417056,41.445666461],[-71.59426256,41.445686461],[-71.59432856,41.445740461],[-71.594375561,41.445805461],[-71.59442656,41.44586546],[-71.594509561,41.445916461],[-71.59471656,41.446016461],[-71.594919561,41.44612146],[-71.594994561,41.446156461],[-71.59514156,41.446233461],[-71.595216561,41.44627846],[-71.595232561,41.44629646],[-71.597200561,41.441051459],[-71.597268561,41.440858459],[-71.597416561,41.44048146],[-71.598194561,41.438480459],[-71.599477561,41.434859458],[-71.599835562,41.433843458],[-71.599981561,41.433430458],[-71.600211561,41.432733458],[-71.600331561,41.432485458],[-71.600324562,41.432472457],[-71.600630562,41.431806457],[-71.603800562,41.422819455],[-71.604298562,41.421399455],[-71.606314562,41.415869455],[-71.606558563,41.415196454],[-71.606612563,41.415049454],[-71.607106563,41.413685454],[-71.607170563,41.413500454],[-71.606949563,41.413407454],[-71.606430563,41.413205454],[-71.606008562,41.413001454],[-71.605591563,41.412743454],[-71.605347562,41.412602454],[-71.605202562,41.412548454],[-71.605095562,41.412533454],[-71.604965562,41.412537453],[-71.604843562,41.412556453],[-71.604401562,41.412648454],[-71.603951562,41.412732453],[-71.603607561,41.412785454],[-71.603271561,41.412827454],[-71.602921561,41.412842454],[-71.602310561,41.412800454],[-71.601456561,41.412705454],[-71.600868561,41.412625454],[-71.60042656,41.412510454],[-71.59998356,41.412365453],[-71.599640561,41.412262454],[-71.59933556,41.412129453],[-71.59896956,41.411908454],[-71.59861856,41.411679453],[-71.59841956,41.411538454],[-71.59790056,41.411122454],[-71.59754956,41.410870454],[-71.597206559,41.410664453],[-71.596588559,41.410363454],[-71.596489559,41.410305454],[-71.596489559,41.410504454],[-71.596611559,41.410714454],[-71.596840559,41.410965454],[-71.59720556,41.411272453],[-71.59748856,41.411496454],[-71.597656559,41.411702453],[-71.59777156,41.411812454],[-71.597832559,41.411908454],[-71.59784756,41.411995454],[-71.59783956,41.412079454],[-71.59778656,41.412182454],[-71.597557559,41.412568454],[-71.597343559,41.412754454],[-71.59688656,41.413002454],[-71.596413559,41.413235454],[-71.596001559,41.413399454],[-71.595833559,41.413487454],[-71.595757559,41.413563454],[-71.595512559,41.413868454],[-71.595413559,41.413945454],[-71.595055559,41.414132455],[-71.594276559,41.414444455],[-71.594002559,41.414528454],[-71.593361559,41.414791455],[-71.592934559,41.414978454],[-71.592537558,41.415173454],[-71.592094558,41.415337455],[-71.591843557,41.415440455],[-71.591766558,41.415486454],[-71.591637558,41.415589455],[-71.591530558,41.415696454],[-71.591431558,41.415776454],[-71.591301558,41.415837454],[-71.591194558,41.415871454],[-71.591103557,41.415890454],[-71.590721558,41.415951454],[-71.589615557,41.416092455],[-71.589211557,41.416115455],[-71.588570557,41.416119455],[-71.587555556,41.416096455],[-71.587143557,41.416111455],[-71.586967557,41.416127455],[-71.586746556,41.416165455],[-71.586411556,41.416249455],[-71.586037556,41.416356455],[-71.585892556,41.416386455],[-71.585793556,41.416390455],[-71.585678556,41.416382455],[-71.585304556,41.416336455],[-71.585175555,41.416336455],[-71.585014556,41.416348455],[-71.584793556,41.416371455],[-71.584435555,41.416417455],[-71.584190556,41.416443455],[-71.584007555,41.416447455],[-71.583908555,41.416455455],[-71.583725556,41.416481455],[-71.583611556,41.416508455],[-71.583389555,41.416550455],[-71.583168555,41.416584455],[-71.583061555,41.416596455],[-71.582909555,41.416603455],[-71.582710555,41.416592455],[-71.582474555,41.416573455],[-71.582176555,41.416558455],[-71.582008555,41.416512455],[-71.581635555,41.416436455],[-71.581467555,41.416413455],[-71.581306555,41.416401455],[-71.581177554,41.416405455],[-71.580856554,41.416443455],[-71.580605555,41.416439455],[-71.580494554,41.416428455],[-71.580452555,41.416424455],[-71.580231554,41.416386455],[-71.580040554,41.416363455],[-71.579773554,41.416352455],[-71.579483554,41.416348455],[-71.578903554,41.416310455],[-71.578064553,41.416283455],[-71.577003553,41.416279456],[-71.576859553,41.416272455],[-71.576691553,41.416253455],[-71.576546553,41.416222455],[-71.576385553,41.416176455],[-71.576241553,41.416153455],[-71.576057553,41.416157455],[-71.575821553,41.416172455],[-71.575531553,41.416165455],[-71.574814553,41.416108455],[-71.574654552,41.416085455],[-71.574539552,41.416043456],[-71.574219552,41.415894455],[-71.574081552,41.415856455],[-71.573959553,41.415829456],[-71.573807552,41.415810456],[-71.573433552,41.415810456],[-71.573235552,41.415806455],[-71.572899552,41.415810456],[-71.572571552,41.415825455],[-71.572342551,41.415825455],[-71.572075551,41.415833455],[-71.571815551,41.415829456],[-71.571548551,41.415818455],[-71.571327552,41.415787455],[-71.571106551,41.415738455],[-71.570587551,41.415635456],[-71.570358551,41.415562455],[-71.56998455,41.415409455],[-71.569719551,41.415308455],[-71.569618551,41.415364455],[-71.569489551,41.415429455],[-71.56885555,41.415776455],[-71.56800155,41.416291456],[-71.56745155,41.416459455],[-71.56696355,41.416623456],[-71.56673455,41.416726456],[-71.56657455,41.416882456],[-71.56620855,41.417076456],[-71.565887549,41.417313456],[-71.565735549,41.417443456],[-71.56555255,41.417546456],[-71.564941549,41.417931456],[-71.56473555,41.417988456],[-71.564575549,41.418042456],[-71.564247549,41.418114456],[-71.564026549,41.418217456],[-71.563843549,41.418282456],[-71.563202549,41.418751456],[-71.562614548,41.419075456],[-71.562225548,41.419190456],[-71.562225548,41.419239456],[-71.562096549,41.420880457],[-71.562004549,41.421952457],[-71.561928548,41.423001457],[-71.561851548,41.423939457],[-71.561836548,41.424027457],[-71.561826549,41.424125457],[-71.561732549,41.424109457],[-71.561482548,41.424111457],[-71.561405548,41.424105457],[-71.561237548,41.424107457],[-71.561069549,41.424120457],[-71.560887548,41.424121457],[-71.560807548,41.424110457],[-71.560744548,41.424083457],[-71.560667548,41.424063457],[-71.560594548,41.424050457],[-71.560453548,41.424011457],[-71.560365548,41.424003457],[-71.560265548,41.424003457],[-71.560082548,41.423976457],[-71.559899548,41.423970457],[-71.559810548,41.423951457],[-71.559737548,41.423943458],[-71.559578548,41.423937457],[-71.559339548,41.423878457],[-71.559260547,41.423866458],[-71.559083547,41.423896457],[-71.558903548,41.423894457],[-71.558751547,41.423876457],[-71.558674547,41.423875457],[-71.558594547,41.423869457],[-71.558430548,41.423865458],[-71.558356548,41.423847457],[-71.558300548,41.423824458],[-71.558124548,41.423860457],[-71.558040547,41.423886457],[-71.557963548,41.423903458],[-71.557872547,41.423889457],[-71.557783547,41.423883458],[-71.557701547,41.423897457],[-71.557551547,41.423938457],[-71.557513547,41.423967457],[-71.557502547,41.424014457],[-71.557447547,41.424051457],[-71.557379547,41.424046457],[-71.557302547,41.424018458],[-71.557227548,41.424018458],[-71.557145547,41.424033457],[-71.557066547,41.424039458],[-71.557002547,41.424020458],[-71.556962547,41.423971457],[-71.556929547,41.423921458],[-71.556902547,41.423865458],[-71.556834547,41.423827458],[-71.556741547,41.423836457],[-71.556656547,41.423850457],[-71.556574547,41.423871457],[-71.556302547,41.423975457],[-71.556221547,41.423984457],[-71.556134547,41.424002458],[-71.556071547,41.424051457],[-71.556042546,41.424106457],[-71.555995547,41.424152457],[-71.555920547,41.424177458],[-71.555843546,41.424192458],[-71.555770546,41.424183457],[-71.555696547,41.424183457],[-71.555620547,41.424199457],[-71.555547547,41.424224457],[-71.555383546,41.424223457],[-71.555305546,41.424233458],[-71.555261546,41.424287457],[-71.555187546,41.424323457],[-71.555098547,41.424320457],[-71.555015546,41.424279457],[-71.554904547,41.424175458],[-71.554844547,41.424137458],[-71.554762546,41.424127457],[-71.554671547,41.424137458],[-71.554508546,41.424136458],[-71.554439546,41.424167457],[-71.554387546,41.424213458],[-71.554325546,41.424232458],[-71.554250546,41.424203457],[-71.554173546,41.424166457],[-71.554083546,41.424160457],[-71.553999546,41.424148457],[-71.553959546,41.424093458],[-71.553958546,41.424027457],[-71.553943546,41.423998458],[-71.553863546,41.423992457],[-71.553690546,41.423993457],[-71.553695546,41.424083457],[-71.553666546,41.424112458],[-71.553594546,41.424114458],[-71.553501546,41.424094458],[-71.553401546,41.424064457],[-71.553253546,41.424026457],[-71.553151546,41.424027457],[-71.553055545,41.424058458],[-71.552993546,41.424089457],[-71.552933546,41.424127457],[-71.552880545,41.424172458],[-71.552851546,41.424226457],[-71.552850546,41.424394457],[-71.552856546,41.424469458],[-71.552896546,41.424528458],[-71.552952546,41.424576457],[-71.553010546,41.424611457],[-71.553079546,41.424610457],[-71.553157546,41.424572457],[-71.553233546,41.424559458],[-71.553307546,41.424586458],[-71.553368545,41.424630457],[-71.553480546,41.424732457],[-71.553499546,41.424796458],[-71.553504546,41.425189458],[-71.553499546,41.425296457],[-71.553475546,41.425459458],[-71.553472546,41.425573458],[-71.553466546,41.425630458],[-71.553448546,41.425688458],[-71.553413546,41.425745458],[-71.553360546,41.425793458],[-71.553136546,41.425919458],[-71.553040546,41.425960458],[-71.552836546,41.426033457],[-71.552520546,41.426159458],[-71.552252546,41.426283458],[-71.552151546,41.426324457],[-71.552038546,41.426359458],[-71.551814545,41.426411458],[-71.551706546,41.426426458],[-71.551599545,41.426429458],[-71.551391546,41.426422458],[-71.551296546,41.426410458],[-71.551218546,41.426390458],[-71.550914545,41.426298458],[-71.550616545,41.426184458],[-71.550455545,41.426129457],[-71.550301545,41.426071458],[-71.550122545,41.426014458],[-71.550020545,41.425987458],[-71.549749545,41.425938458],[-71.549674545,41.425921458],[-71.549578545,41.425905458],[-71.549482545,41.425922458],[-71.549395545,41.425965458],[-71.549305545,41.425991458],[-71.549207545,41.425991458],[-71.549078544,41.425985458],[-71.549005544,41.425976458],[-71.548831544,41.425943458],[-71.548661545,41.425925458],[-71.548349544,41.425863458],[-71.548252544,41.425837458],[-71.548176545,41.425795458],[-71.548036544,41.425739457],[-71.547980544,41.425706458],[-71.547965544,41.425657458],[-71.547960544,41.425642457],[-71.547960544,41.425519458],[-71.547980544,41.425472458],[-71.548064544,41.425434458],[-71.548150544,41.425408457],[-71.548243544,41.425374458],[-71.548311545,41.425342458],[-71.548376544,41.425304458],[-71.548425544,41.425261458],[-71.548528545,41.425152458],[-71.548554544,41.425088458],[-71.548540544,41.425018457],[-71.548474544,41.424959457],[-71.548399544,41.424932458],[-71.548324544,41.424910458],[-71.548253544,41.424871458],[-71.548217545,41.424824457],[-71.548197545,41.424764457],[-71.548195544,41.424692458],[-71.548174544,41.424611457],[-71.548155544,41.424487458],[-71.548093544,41.424318457],[-71.548081545,41.424258457],[-71.548080545,41.424127457],[-71.548113544,41.424064457],[-71.548224544,41.423970457],[-71.548277544,41.423913457],[-71.548432545,41.423679457],[-71.548471545,41.423631458],[-71.548506544,41.423564457],[-71.548533544,41.423491458],[-71.548564544,41.423425457],[-71.548669544,41.423314458],[-71.548682545,41.423237458],[-71.548681544,41.423173457],[-71.548670544,41.423107457],[-71.548646545,41.423043458],[-71.548574544,41.422927458],[-71.548519544,41.422889458],[-71.548445544,41.422880457],[-71.548359544,41.422898457],[-71.548282544,41.422932457],[-71.548217545,41.422971457],[-71.548112544,41.423058457],[-71.547895544,41.423197458],[-71.547831544,41.423224457],[-71.547758544,41.423233457],[-71.547741544,41.423233457],[-71.547197544,41.423836458],[-71.546737543,41.423647458],[-71.546673544,41.423569458],[-71.546561543,41.423405457],[-71.546496544,41.423281458],[-71.546391543,41.423137458],[-71.546045543,41.423117458],[-71.545938543,41.423144458],[-71.545830543,41.423134457],[-71.545626543,41.423149457],[-71.545464543,41.423237458],[-71.545486544,41.423195458],[-71.545494543,41.423142458],[-71.545494543,41.422840457],[-71.545502543,41.422749458],[-71.545517543,41.422657457],[-71.545532543,41.422459458],[-71.545532543,41.422329457],[-71.545517543,41.422184458],[-71.545502543,41.422093457],[-71.545479543,41.422005457],[-71.545441543,41.421795457],[-71.545395543,41.421456457],[-71.545380543,41.421242457],[-71.545364543,41.421173457],[-71.545357543,41.421105457],[-71.545341543,41.421036457],[-71.545341543,41.420990457],[-71.545334543,41.420941457],[-71.545341543,41.420891457],[-71.545357543,41.420838457],[-71.545411543,41.420735457],[-71.545425543,41.420708457],[-71.545471543,41.420651457],[-71.545509543,41.420586457],[-71.545540543,41.420521457],[-71.545609543,41.420407457],[-71.545685543,41.420319457],[-71.545769543,41.420250457],[-71.545822543,41.420224457],[-71.545883543,41.420205457],[-71.545952543,41.420189457],[-71.546013544,41.420170457],[-71.546097543,41.420132457],[-71.546211543,41.420060457],[-71.546242543,41.420033457],[-71.546259543,41.420015457],[-71.546280543,41.419991457],[-71.546341544,41.419896457],[-71.546356543,41.419842457],[-71.546394543,41.419609457],[-71.546466543,41.419377457],[-71.546486543,41.419312457],[-71.546539544,41.419102457],[-71.546547543,41.419045457],[-71.546562543,41.418984457],[-71.546570543,41.418927457],[-71.546570543,41.418774457],[-71.546539544,41.418656457],[-71.546516544,41.418595457],[-71.546486543,41.418465456],[-71.546432543,41.418328456],[-71.546394543,41.418263457],[-71.546242543,41.418370456],[-71.546158543,41.418423457],[-71.546021543,41.418522457],[-71.545906543,41.418591457],[-71.545799543,41.418648457],[-71.545708543,41.418682456],[-71.545654543,41.418690457],[-71.545540543,41.418686456],[-71.545479543,41.418671457],[-71.545425543,41.418652457],[-71.545364543,41.418637457],[-71.545303543,41.418633457],[-71.545189543,41.418637457],[-71.545135543,41.418648457],[-71.544998543,41.418702456],[-71.544983542,41.418705456],[-71.544807542,41.418782456],[-71.544662543,41.418839456],[-71.544472543,41.418896456],[-71.544418542,41.418908457],[-71.544312543,41.418919457],[-71.544250543,41.418919457],[-71.544189542,41.418911457],[-71.544136543,41.418896456],[-71.544090542,41.418869457],[-71.543976542,41.418774457],[-71.543900543,41.418717457],[-71.543663542,41.418572457],[-71.543243543,41.418305457],[-71.543190542,41.418248457],[-71.543182542,41.418202457],[-71.543159542,41.418156456],[-71.543098542,41.418118456],[-71.543030543,41.418084457],[-71.542946542,41.418049457],[-71.542770542,41.418023456],[-71.542496542,41.418015457],[-71.542366542,41.417992457],[-71.542297542,41.417958456],[-71.542252542,41.417931457],[-71.541588541,41.417261456],[-71.540321541,41.416054456],[-71.539604541,41.415554456],[-71.53948254,41.415398456],[-71.53946254,41.415329456],[-71.539452541,41.415249456],[-71.539471541,41.415196456],[-71.539518541,41.415128456],[-71.539593541,41.415067456],[-71.539605541,41.415008456],[-71.539583541,41.414968456],[-71.539518541,41.414952456],[-71.539449541,41.414982456],[-71.539356541,41.415043456],[-71.539247541,41.415097456],[-71.539148541,41.415125456],[-71.538971541,41.415139456],[-71.53872754,41.415108456],[-71.53845254,41.414952456],[-71.53808654,41.414841456],[-71.537956541,41.414750456],[-71.53791054,41.414685456],[-71.53780454,41.414612456],[-71.53759054,41.414559456],[-71.53733154,41.414544456],[-71.53720954,41.414494456],[-71.53710254,41.414410456],[-71.53701854,41.414307456],[-71.53688054,41.414231456],[-71.536674539,41.414173456],[-71.536499539,41.414166456],[-71.53641554,41.414128456],[-71.536324539,41.414036456],[-71.53624054,41.413926456],[-71.53609554,41.413792456],[-71.535973539,41.413712456],[-71.53592754,41.413651456],[-71.535667539,41.413479456],[-71.53540054,41.413315456],[-71.53507254,41.413235456],[-71.534912539,41.413205456],[-71.534729539,41.413151456],[-71.534637539,41.413063455],[-71.534477539,41.412972456],[-71.534355539,41.412735456],[-71.534355539,41.412609456],[-71.534363539,41.412503456],[-71.534477539,41.412362455],[-71.534523539,41.412289456],[-71.534424539,41.412167455],[-71.534339539,41.412133456],[-71.534187539,41.412072455],[-71.534081539,41.411991455],[-71.534042539,41.411915455],[-71.534035539,41.411843456],[-71.533936539,41.411744456],[-71.533859539,41.411564455],[-71.533745539,41.411446455],[-71.533600539,41.411148456],[-71.533501539,41.411053456],[-71.533546539,41.410977455],[-71.533379538,41.411011456],[-71.533279539,41.411011456],[-71.533165538,41.411019455],[-71.533020539,41.411023455],[-71.532913538,41.411015455],[-71.532845539,41.410988456],[-71.532410538,41.410721456],[-71.532242538,41.410653455],[-71.532135538,41.410618456],[-71.532112538,41.410679456],[-71.532021538,41.410817456],[-71.531883538,41.410962455],[-71.531715538,41.411122456],[-71.531616538,41.411232455],[-71.531563538,41.411354456],[-71.531456538,41.411679455],[-71.531326538,41.412045456],[-71.531235538,41.412335456],[-71.531167538,41.412293456],[-71.531041538,41.412214456],[-71.531023538,41.412203456],[-71.530789538,41.412058456],[-71.530881537,41.411790456],[-71.530812538,41.411739455],[-71.530922537,41.411534456],[-71.531044538,41.411316456],[-71.531303538,41.410561456],[-71.531532538,41.409905455],[-71.532033538,41.408366455],[-71.532066538,41.408265455],[-71.532303538,41.407494455],[-71.532364538,41.407318455],[-71.532608538,41.406575454],[-71.532631538,41.406521455],[-71.532761538,41.406132455],[-71.532921538,41.405732454],[-71.533066538,41.405342454],[-71.533089538,41.405275455],[-71.533144538,41.405117454],[-71.533371538,41.404461455],[-71.533386538,41.404408454],[-71.533531539,41.403962454],[-71.533531539,41.403942454],[-71.533607539,41.403702454],[-71.533699538,41.403485454],[-71.533852538,41.403210454],[-71.534073539,41.402863453],[-71.534363539,41.402542454],[-71.534409539,41.402493453],[-71.534737539,41.402184453],[-71.535149539,41.401863454],[-71.535208539,41.401828454],[-71.535461539,41.401680453],[-71.535713539,41.401539453],[-71.535873539,41.401451454],[-71.536064539,41.401360454],[-71.536446539,41.401207453],[-71.536515539,41.401183454],[-71.53696454,41.401028454],[-71.53762854,41.400814454],[-71.53813254,41.400662453],[-71.538490539,41.400559454],[-71.53915454,41.400349453],[-71.53952054,41.400238453],[-71.540237541,41.399998453],[-71.54081754,41.399784453],[-71.541502541,41.399504453],[-71.541580541,41.399472453],[-71.542885541,41.398838453],[-71.543762541,41.398426453],[-71.543945542,41.398350453],[-71.543900541,41.398216453],[-71.543877541,41.398095453],[-71.543869541,41.397946453],[-71.543900541,41.397633453],[-71.543907542,41.397465452],[-71.543900541,41.397297453],[-71.543884542,41.397149452],[-71.543846542,41.397026453],[-71.543738541,41.396855453],[-71.543695541,41.396812453],[-71.543640541,41.396771452],[-71.543457541,41.396687452],[-71.542694541,41.396515452],[-71.542526541,41.396458452],[-71.542343541,41.396355452],[-71.542236541,41.396241452],[-71.542160541,41.396122452],[-71.54211454,41.396061452],[-71.54155754,41.395642452],[-71.54151254,41.395584452],[-71.54095354,41.396936452],[-71.541059646,41.396976118],[-71.541060541,41.396976452],[-71.541060628,41.396976473],[-71.541138929,41.397025548],[-71.541159458,41.397067942],[-71.541170541,41.397090453],[-71.541174541,41.397162453],[-71.541173541,41.397185773],[-71.541171863,41.397232902],[-71.541153018,41.397307672],[-71.541133997,41.397371549],[-71.541113067,41.397449093],[-71.541110555,41.397458586],[-71.541114677,41.397496863],[-71.541117568,41.397523484],[-71.541151541,41.397563452],[-71.541186192,41.397566241],[-71.541238319,41.397569987],[-71.541311518,41.397569755],[-71.541391489,41.397568034],[-71.541466633,41.397569265],[-71.541545776,41.397603107],[-71.54161054,41.397664453],[-71.541610661,41.39766456],[-71.541646593,41.397713009],[-71.541676861,41.397785451],[-71.541665733,41.397863123],[-71.541640982,41.397915437],[-71.541612343,41.397967775],[-71.541585708,41.398018602],[-71.54154275,41.398089106],[-71.541538854,41.398125262],[-71.54153554,41.398157453],[-71.541538685,41.398167316],[-71.541557957,41.398226161],[-71.541551628,41.398303076],[-71.541551551,41.398303318],[-71.54155154,41.398303452],[-71.541551211,41.398304378],[-71.541527014,41.398379998],[-71.541497569,41.39845555],[-71.54147845,41.398486845],[-71.54145254,41.398529453],[-71.541447338,41.398535776],[-71.541415395,41.398576221],[-71.541378095,41.398622775],[-71.541336939,41.398670063],[-71.541336601,41.398670379],[-71.54133654,41.398670452],[-71.541287541,41.398716453],[-71.541235541,41.398755453],[-71.541200444,41.39877642],[-71.541158486,41.398801906],[-71.541112546,41.398837513],[-71.541116117,41.398880362],[-71.541117589,41.398897605],[-71.541137541,41.398960453],[-71.54114254,41.398993453],[-71.541127114,41.399025493],[-71.541116525,41.399047913],[-71.541116524,41.399047938],[-71.54111491,41.399105983],[-71.541109233,41.399119723],[-71.541092541,41.399161453],[-71.541041506,41.399187821],[-71.54103256,41.399192531],[-71.540936286,41.399208827],[-71.540918944,41.399208877],[-71.54077054,41.399212453],[-71.540753338,41.399219621],[-71.54069183,41.399245849],[-71.540626483,41.399272882],[-71.540598233,41.39922077],[-71.540540262,41.399192637],[-71.540480393,41.399159478],[-71.540382107,41.399176279],[-71.540363935,41.399179435],[-71.540363859,41.399179398],[-71.54036354,41.399179453],[-71.540348877,41.399172121],[-71.540280838,41.399139075],[-71.54021129,41.399103741],[-71.540191591,41.399088197],[-71.54016054,41.399064453],[-71.54011354,41.399011453],[-71.540113573,41.399011321],[-71.54011346,41.399011196],[-71.540126605,41.39894951],[-71.540142321,41.39889633],[-71.540142541,41.398895453],[-71.540143112,41.398892146],[-71.540151046,41.39883627],[-71.540160368,41.39878115],[-71.540175356,41.398704894],[-71.540180819,41.398649043],[-71.540189167,41.398592459],[-71.5401951,41.398573517],[-71.54022654,41.398466453],[-71.540248738,41.39840874],[-71.54025644,41.398388409],[-71.540261694,41.398378857],[-71.54028554,41.398334453],[-71.54035954,41.398239453],[-71.540397541,41.398173453],[-71.540411517,41.398128345],[-71.540419511,41.398102209],[-71.540413867,41.398054547],[-71.540410493,41.398026325],[-71.54038554,41.397958453],[-71.54038954,41.397920453],[-71.54045154,41.397871452],[-71.540482425,41.397817811],[-71.540489194,41.39780591],[-71.540509078,41.397740585],[-71.540493218,41.39771042],[-71.54048454,41.397694453],[-71.54042154,41.397676452],[-71.54034954,41.397686453],[-71.540311016,41.397682231],[-71.540276534,41.397678917],[-71.540187799,41.397653836],[-71.540104769,41.397620703],[-71.540027644,41.397607899],[-71.539940094,41.397632836],[-71.539874783,41.397667141],[-71.539801789,41.397705817],[-71.53975642,41.397736018],[-71.53973954,41.397747453],[-71.539695837,41.397804535],[-71.539690658,41.397811334],[-71.53969045,41.397814125],[-71.53968654,41.397929452],[-71.539686477,41.397929524],[-71.539686477,41.397929575],[-71.539658736,41.397961603],[-71.539604029,41.398003841],[-71.539619867,41.398076335],[-71.539638795,41.398137106],[-71.539639509,41.398139356],[-71.53963954,41.398139453],[-71.53967454,41.398195453],[-71.539674476,41.398195815],[-71.53966354,41.398257453],[-71.539663259,41.398257522],[-71.539622869,41.398267804],[-71.539619361,41.398265466],[-71.53951054,41.398197453],[-71.53947954,41.398147452],[-71.539479573,41.39814712],[-71.53948554,41.398086452],[-71.53953954,41.398061453],[-71.539528211,41.398046584],[-71.539523319,41.39804037],[-71.539502049,41.398025191],[-71.539525829,41.39797146],[-71.53955343,41.39790826],[-71.539548327,41.39785749],[-71.539493141,41.397811242],[-71.539481225,41.397744533],[-71.53952916,41.397704493],[-71.539564232,41.39768319],[-71.53959154,41.397666453],[-71.53966454,41.397641452],[-71.539688887,41.397630801],[-71.539728078,41.397613195],[-71.539787553,41.397570933],[-71.539843203,41.397532308],[-71.539880501,41.397482186],[-71.539883023,41.397477773],[-71.53996047,41.397331814],[-71.539975822,41.397301226],[-71.540010165,41.397237291],[-71.54002331,41.397177755],[-71.540026792,41.397110309],[-71.540030275,41.397044281],[-71.540029919,41.396981182],[-71.540028692,41.396855944],[-71.540028176,41.396840461],[-71.540025438,41.396828891],[-71.53999554,41.396717453],[-71.539988318,41.396699397],[-71.539973244,41.396662914],[-71.539931712,41.396642734],[-71.539826749,41.396648877],[-71.539759209,41.396660781],[-71.53975554,41.396661453],[-71.539669612,41.396687431],[-71.53961836,41.396740804],[-71.53959154,41.396793453],[-71.539591049,41.396795221],[-71.539574573,41.396861453],[-71.539556597,41.396919549],[-71.539550803,41.396923875],[-71.539478238,41.396979819],[-71.539440537,41.397011322],[-71.539387327,41.397049907],[-71.53937754,41.397057452],[-71.539355101,41.397076224],[-71.53931871,41.397107465],[-71.539273659,41.3971446],[-71.539269579,41.397141944],[-71.53924354,41.397125453],[-71.539225512,41.397092401],[-71.539213507,41.397070817],[-71.539187659,41.397054389],[-71.53915554,41.397034452],[-71.539118863,41.397034452],[-71.539082335,41.397034933],[-71.539011482,41.397049587],[-71.53900254,41.397070453],[-71.53895154,41.397107453],[-71.53890754,41.397169452],[-71.538840539,41.397222453],[-71.538674683,41.397334332],[-71.538671692,41.397336526],[-71.538625737,41.397385278],[-71.538622474,41.397390115],[-71.53855454,41.397493453],[-71.538535547,41.397528516],[-71.538515923,41.397565534],[-71.538512979,41.397575243],[-71.53846454,41.397760453],[-71.53846009,41.397773029],[-71.538447003,41.397815987],[-71.538418527,41.397890806],[-71.538364957,41.397957674],[-71.538354646,41.397966912],[-71.53827707,41.398041078],[-71.538273919,41.398044268],[-71.538259838,41.398076931],[-71.53824654,41.398108453],[-71.538251535,41.398125817],[-71.538267925,41.398181401],[-71.538291342,41.39823089],[-71.538293539,41.398235453],[-71.53830554,41.398290453],[-71.538302734,41.398342825],[-71.538302556,41.398346674],[-71.538299637,41.398359514],[-71.53829054,41.398400453],[-71.53826854,41.398455453],[-71.538268474,41.398455569],[-71.538237957,41.398510813],[-71.538204549,41.398567497],[-71.538163423,41.398619106],[-71.538123206,41.398665661],[-71.538115006,41.398675312],[-71.53803354,41.398773453],[-71.538015581,41.398804088],[-71.537999864,41.398831443],[-71.537959709,41.398881634],[-71.537916707,41.398945594],[-71.537871759,41.399007382],[-71.537803595,41.399049669],[-71.537716945,41.399060812],[-71.537641731,41.399045811],[-71.537581812,41.399006859],[-71.537581539,41.399006453],[-71.537539071,41.398945329],[-71.537525263,41.3989169],[-71.537504539,41.398875453],[-71.537484761,41.398813421],[-71.537482405,41.398806227],[-71.537486706,41.398775204],[-71.53749054,41.398746453],[-71.537491464,41.398714563],[-71.537492294,41.398677784],[-71.537461581,41.398630155],[-71.537456539,41.398622453],[-71.537414497,41.398597083],[-71.537398433,41.398587498],[-71.53739402,41.39858938],[-71.537335895,41.398615193],[-71.53727993,41.398638023],[-71.537269539,41.398642453],[-71.537181539,41.398646453],[-71.537152713,41.398632269],[-71.537118209,41.398615881],[-71.537062083,41.398569632],[-71.53699831,41.398535736],[-71.536916255,41.3985077],[-71.5368768,41.398490268],[-71.536842539,41.398475452],[-71.536801066,41.398442275],[-71.536792534,41.398435538],[-71.536787303,41.398428433],[-71.536748539,41.398376453],[-71.536716539,41.398312453],[-71.536706879,41.398281718],[-71.536694197,41.398242177],[-71.536653467,41.398188628],[-71.536595397,41.398141671],[-71.536533228,41.398111896],[-71.536517539,41.398104453],[-71.536499418,41.398097824],[-71.53643508,41.398074711],[-71.536372508,41.398056444],[-71.536358539,41.398052453],[-71.53633009,41.39804218],[-71.536286468,41.398026593],[-71.536267741,41.398016751],[-71.536224539,41.397994453],[-71.536208205,41.397977739],[-71.536181061,41.397950743],[-71.536172823,41.397935927],[-71.536115828,41.397840935],[-71.536109131,41.397830558],[-71.536065422,41.397770492],[-71.536040092,41.397718378],[-71.536018592,41.39766123],[-71.536016539,41.397656452],[-71.536008539,41.397595453],[-71.536006539,41.397483452],[-71.535994538,41.397367452],[-71.535989207,41.397347268],[-71.535980065,41.397314506],[-71.535971805,41.397314453],[-71.535901539,41.397314453],[-71.53588763,41.397322401],[-71.535887211,41.39733326],[-71.535885539,41.397388453],[-71.535863539,41.397457453],[-71.535860648,41.39746335],[-71.535841458,41.397508627],[-71.535813786,41.397559454],[-71.535799312,41.397570631],[-71.535757538,41.397603453],[-71.535688961,41.397627306],[-71.535688539,41.397627453],[-71.535683057,41.397628765],[-71.535617775,41.397644935],[-71.535545151,41.397647134],[-71.535536539,41.397647453],[-71.535463539,41.397628453],[-71.535441476,41.397605958],[-71.535412204,41.397576685],[-71.535400005,41.397553547],[-71.535383539,41.397523452],[-71.535372652,41.397492246],[-71.535368293,41.397480346],[-71.535365137,41.397429597],[-71.535346131,41.397376521],[-71.535343539,41.397369453],[-71.535334135,41.397352996],[-71.535311527,41.397313684],[-71.535298217,41.397297467],[-71.535271538,41.397265453],[-71.535251644,41.397224867],[-71.535246475,41.397214492],[-71.535237738,41.397201788],[-71.535205539,41.397155453],[-71.535147539,41.397100453],[-71.535093539,41.397058453],[-71.535093393,41.397058317],[-71.535091043,41.397056142],[-71.535039161,41.397008447],[-71.535022288,41.396956702],[-71.535018538,41.396945453],[-71.53501877,41.396944958],[-71.535045228,41.396881469],[-71.535067195,41.396841531],[-71.535099538,41.396772453],[-71.535139162,41.396663718],[-71.535142238,41.396654863],[-71.53514249,41.396654585],[-71.535142538,41.396654453],[-71.535149686,41.39664667],[-71.535187223,41.39660538],[-71.535227226,41.396571435],[-71.535236538,41.396563453],[-71.535245241,41.396558964],[-71.535302384,41.396528135],[-71.535362799,41.396498267],[-71.535365954,41.396496013],[-71.535425292,41.396453059],[-71.535440352,41.396389886],[-71.53543042,41.39633189],[-71.535422367,41.396268816],[-71.535407607,41.396215167],[-71.535394583,41.396156632],[-71.535392538,41.396148453],[-71.535409538,41.396089453],[-71.535412636,41.396068803],[-71.535418137,41.396029456],[-71.535417929,41.395989808],[-71.535417539,41.395964452],[-71.53541311,41.395947015],[-71.535401089,41.395901112],[-71.535402902,41.39587283],[-71.535403539,41.395859453],[-71.535396538,41.395794452],[-71.535411538,41.395740453],[-71.535448827,41.395737994],[-71.535502259,41.395733967],[-71.535570491,41.395708377],[-71.535606742,41.395687546],[-71.535641538,41.395667452],[-71.535712539,41.395647453],[-71.535785539,41.395648452],[-71.535862539,41.395661453],[-71.535935538,41.395685453],[-71.536015538,41.395717452],[-71.536067115,41.395721555],[-71.536103288,41.395724129],[-71.536132932,41.395718122],[-71.536168538,41.395710452],[-71.536182178,41.395685241],[-71.536201136,41.395649106],[-71.536202251,41.395603904],[-71.536202539,41.395585453],[-71.536185539,41.395529453],[-71.536137539,41.395480452],[-71.535997539,41.395377452],[-71.535962619,41.395357176],[-71.535935484,41.395341674],[-71.535911379,41.39534264],[-71.535752539,41.395350453],[-71.535568538,41.395341452],[-71.535481856,41.395355401],[-71.53547177,41.395359133],[-71.535412538,41.395381452],[-71.535395957,41.395395802],[-71.535360893,41.395426862],[-71.535322585,41.395466874],[-71.535294815,41.395479867],[-71.535260538,41.395496452],[-71.535237538,41.395487453],[-71.535239538,41.395432453],[-71.535239529,41.395432319],[-71.53524125,41.395419901],[-71.535251538,41.395344452],[-71.535250335,41.395341747],[-71.535231105,41.395299628],[-71.535213827,41.395292494],[-71.535203538,41.395288452],[-71.535203347,41.395288167],[-71.535203096,41.395288064],[-71.53516632,41.395233259],[-71.535113925,41.395186796],[-71.535047242,41.395145675],[-71.534983474,41.395113241],[-71.534918763,41.395077903],[-71.534865661,41.395055575],[-71.534865571,41.395055466],[-71.534865538,41.395055452],[-71.534864569,41.395054255],[-71.534848064,41.39503431],[-71.534834555,41.39502736],[-71.534779539,41.394999453],[-71.534732872,41.394986386],[-71.53470471,41.394978687],[-71.534704538,41.394978452],[-71.534652527,41.39491382],[-71.534625884,41.394844096],[-71.534607542,41.394791385],[-71.534588043,41.394732934],[-71.534573611,41.394689986],[-71.534569538,41.394678452],[-71.534552964,41.394641436],[-71.534539262,41.394611278],[-71.534512466,41.394587826],[-71.534484804,41.394563684],[-71.534453893,41.394558185],[-71.534420538,41.394552453],[-71.534415436,41.394555144],[-71.534356261,41.394588165],[-71.534293621,41.394619745],[-71.534275641,41.394624821],[-71.534143538,41.394664452],[-71.534118493,41.394674919],[-71.53407632,41.394692949],[-71.534020792,41.394734384],[-71.534013884,41.394737376],[-71.533954538,41.394763452],[-71.533877538,41.394788453],[-71.533647538,41.394910452],[-71.533569538,41.394936452],[-71.533414563,41.394965878],[-71.533411321,41.39496656],[-71.533340919,41.394966452],[-71.533323538,41.394966452],[-71.533295875,41.394952621],[-71.53325744,41.394933488],[-71.533243745,41.394924257],[-71.533197538,41.394893452],[-71.533150752,41.394875407],[-71.533127962,41.394866767],[-71.533098117,41.394864862],[-71.533053538,41.394862453],[-71.533018538,41.394849452],[-71.532975538,41.394896452],[-71.53291371,41.394895108],[-71.532883058,41.394894625],[-71.532802291,41.394877792],[-71.532748639,41.394857595],[-71.532726538,41.394849452],[-71.532691807,41.394833052],[-71.532654897,41.394815833],[-71.532592489,41.394801133],[-71.532576538,41.394797452],[-71.532487265,41.394796669],[-71.532430587,41.394786461],[-71.532430537,41.394786453],[-71.532383537,41.394768453],[-71.532328537,41.394801452],[-71.532303531,41.394806859],[-71.532291344,41.39480976],[-71.532250919,41.39478055],[-71.532239538,41.394772452],[-71.532191537,41.394726453],[-71.532182538,41.394665452],[-71.532177382,41.394648375],[-71.532166146,41.394612287],[-71.532117336,41.394560298],[-71.532016537,41.394483452],[-71.532000979,41.394471555],[-71.531999305,41.394470331],[-71.531992549,41.39445834],[-71.531984537,41.394444452],[-71.532024537,41.394397453],[-71.532030033,41.394366673],[-71.532034169,41.394341744],[-71.53205068,41.394286227],[-71.532053537,41.394276452],[-71.532072847,41.394258786],[-71.532100387,41.394233274],[-71.532187546,41.39421907],[-71.532278156,41.39424427],[-71.532278348,41.3942444],[-71.532278537,41.394244452],[-71.532339538,41.394285452],[-71.53233989,41.394285945],[-71.532374266,41.394333987],[-71.532374363,41.394334209],[-71.532374537,41.394334452],[-71.532395538,41.394381452],[-71.532404051,41.394387637],[-71.532449143,41.394418449],[-71.532501986,41.394458787],[-71.532512538,41.394466452],[-71.532567183,41.394499098],[-71.532589294,41.394512178],[-71.532672128,41.394533973],[-71.532755177,41.394560067],[-71.532832762,41.394592064],[-71.532898173,41.394610062],[-71.532914537,41.394614452],[-71.532924542,41.394619767],[-71.532979,41.394648329],[-71.533006657,41.394649096],[-71.533024538,41.394595452],[-71.533048248,41.394575421],[-71.533082637,41.39454616],[-71.533143566,41.394503297],[-71.533153538,41.394448452],[-71.533110537,41.394396453],[-71.533071465,41.394368638],[-71.533051105,41.394354446],[-71.533028832,41.394341802],[-71.532981538,41.394315452],[-71.532914537,41.394290452],[-71.532914203,41.394290156],[-71.532914067,41.394290106],[-71.532870555,41.394251604],[-71.532865729,41.394244241],[-71.532832537,41.394194452],[-71.532794786,41.394184843],[-71.53277726,41.394180514],[-71.532741537,41.394188452],[-71.532741505,41.394188428],[-71.532741202,41.394188496],[-71.532681287,41.394144648],[-71.532605431,41.394107573],[-71.532558177,41.394083563],[-71.532525537,41.394067453],[-71.532490368,41.394045123],[-71.532462069,41.394027545],[-71.532415079,41.393984989],[-71.532405537,41.393976452],[-71.532401538,41.393955452],[-71.532447537,41.393911453],[-71.532480949,41.393803993],[-71.532484062,41.393792271],[-71.532516229,41.393738425],[-71.53253167,41.393721428],[-71.532540537,41.393711452],[-71.532543537,41.393661452],[-71.532543596,41.393661334],[-71.532543616,41.393660978],[-71.532550208,41.393648111],[-71.532571538,41.393605452],[-71.532599537,41.393567452],[-71.532638405,41.393562437],[-71.532661525,41.393559221],[-71.532660996,41.393549532],[-71.532658401,41.393504695],[-71.532658543,41.393504551],[-71.532658537,41.393504452],[-71.532706538,41.393455452],[-71.532793537,41.393342452],[-71.532835537,41.393296452],[-71.532865284,41.393254146],[-71.532880125,41.393232565],[-71.532909344,41.393176639],[-71.53293397,41.393134644],[-71.532939538,41.393124452],[-71.53294568,41.393107672],[-71.532959341,41.393068493],[-71.532972203,41.393035221],[-71.532980538,41.393012452],[-71.532981913,41.392972575],[-71.532982365,41.392954546],[-71.533039375,41.392902271],[-71.533044026,41.39287863],[-71.533052537,41.392833452],[-71.533053347,41.392823692],[-71.533055981,41.392769755],[-71.533062965,41.392706425],[-71.533064377,41.392690638],[-71.533068537,41.392640452],[-71.533062674,41.392438134],[-71.533062493,41.392433627],[-71.533050513,41.392412893],[-71.533031537,41.392380452],[-71.533028523,41.392351601],[-71.533024287,41.392313866],[-71.533028717,41.392302107],[-71.533045538,41.392256451],[-71.533044959,41.392221124],[-71.533044301,41.392194957],[-71.533037226,41.392136936],[-71.533009411,41.392085898],[-71.532958697,41.392033905],[-71.532942603,41.392022505],[-71.532843538,41.391954452],[-71.532747474,41.391877601],[-71.532733659,41.391866718],[-71.532689196,41.391804546],[-71.532663049,41.391746988],[-71.532644616,41.391702929],[-71.532639537,41.391691451],[-71.532632538,41.391635451],[-71.532658537,41.391571452],[-71.532719807,41.391468363],[-71.53272134,41.391465643],[-71.532727092,41.391454128],[-71.532747538,41.391412452],[-71.532749652,41.391387501],[-71.53275211,41.391353684],[-71.532742358,41.391300213],[-71.532700537,41.391244451],[-71.532647537,41.391202451],[-71.532637725,41.391194602],[-71.532566149,41.391162608],[-71.532561311,41.391162384],[-71.532410537,41.391160452],[-71.532403838,41.391161357],[-71.532336677,41.391170723],[-71.532304343,41.391178973],[-71.532268537,41.391188451],[-71.532192537,41.391230452],[-71.532147417,41.391283419],[-71.532146762,41.391284188],[-71.532145947,41.391285361],[-71.532079766,41.391387391],[-71.532074968,41.391395681],[-71.532072783,41.391445434],[-71.532072537,41.391452452],[-71.5320758,41.391457297],[-71.532105906,41.39150122],[-71.532137888,41.39152852],[-71.532154537,41.391542452],[-71.532160874,41.391547031],[-71.532214095,41.3915835],[-71.532273096,41.391628081],[-71.532273235,41.391628234],[-71.532273537,41.391628452],[-71.532278735,41.391634287],[-71.532322961,41.391682956],[-71.532325728,41.391751818],[-71.53230092,41.391822014],[-71.532281883,41.39186045],[-71.532273537,41.391877452],[-71.532216537,41.391923451],[-71.532139537,41.391932452],[-71.532089589,41.391948107],[-71.5320726,41.391953606],[-71.531992421,41.391951821],[-71.531935081,41.391970863],[-71.531918537,41.391976452],[-71.531880733,41.392018793],[-71.531868883,41.392032199],[-71.531856823,41.392056331],[-71.531842537,41.392085452],[-71.531811624,41.392129839],[-71.531803671,41.392141378],[-71.531763697,41.392191109],[-71.531724017,41.392238012],[-71.531719538,41.392243452],[-71.531719248,41.39224365],[-71.531719108,41.392243815],[-71.531659723,41.392284655],[-71.531641953,41.392340349],[-71.531593599,41.392394588],[-71.531566093,41.392439361],[-71.531560537,41.392448452],[-71.531540537,41.392517452],[-71.531536264,41.392542735],[-71.531528943,41.392588501],[-71.531525631,41.392648148],[-71.53152306,41.392675183],[-71.531522537,41.392683451],[-71.53150715,41.392714776],[-71.53149497,41.392740027],[-71.53149235,41.392750025],[-71.531472997,41.392834751],[-71.531466788,41.392869207],[-71.53144954,41.392937777],[-71.531446877,41.392943634],[-71.531376061,41.393108259],[-71.531372818,41.393116873],[-71.531357994,41.393174648],[-71.531354591,41.3932329],[-71.531349155,41.393279696],[-71.531348537,41.393287452],[-71.531322537,41.393354452],[-71.531256537,41.393394452],[-71.531200621,41.39341147],[-71.531187537,41.393415452],[-71.531187487,41.393415475],[-71.531124537,41.393444452],[-71.531119537,41.393373452],[-71.531088537,41.393311452],[-71.531031537,41.393274452],[-71.531020072,41.39326528],[-71.530971063,41.393226554],[-71.530996826,41.393191493],[-71.531005405,41.393179634],[-71.53100277,41.393151388],[-71.530998536,41.393108452],[-71.531014537,41.393049452],[-71.531051537,41.392984452],[-71.531047537,41.392923452],[-71.53104658,41.392918332],[-71.531033267,41.392852515],[-71.531020872,41.392781002],[-71.531019539,41.392773626],[-71.531010537,41.392725452],[-71.531008537,41.392713452],[-71.530989537,41.392646452],[-71.530948531,41.392594514],[-71.530945115,41.392592463],[-71.530849742,41.392537033],[-71.53083139,41.392526826],[-71.53076978,41.39248874],[-71.530704282,41.392448597],[-71.530647533,41.392411837],[-71.530620341,41.392391541],[-71.530591536,41.392370452],[-71.530576537,41.392308452],[-71.530575386,41.392276804],[-71.530574448,41.392253387],[-71.530607096,41.392188038],[-71.530662537,41.392127452],[-71.530662767,41.392127188],[-71.530682407,41.3921082],[-71.530720596,41.3920713],[-71.530778825,41.392025452],[-71.530839903,41.391980933],[-71.530840537,41.391980452],[-71.530840586,41.391980435],[-71.530840881,41.391980221],[-71.530874664,41.391968603],[-71.530912537,41.391955452],[-71.530989537,41.391958452],[-71.53100839,41.391952978],[-71.531067734,41.391934167],[-71.531112537,41.391869452],[-71.531107537,41.391808451],[-71.531098068,41.391788939],[-71.531074376,41.391740888],[-71.531071437,41.391729461],[-71.531046741,41.391641903],[-71.531041065,41.391623891],[-71.531040408,41.391583685],[-71.531043481,41.391574617],[-71.531045537,41.391568452],[-71.531046537,41.391501452],[-71.531034537,41.391443452],[-71.531033539,41.391440556],[-71.531012587,41.391388311],[-71.530996386,41.391332814],[-71.530994537,41.391327452],[-71.531014385,41.391266915],[-71.531019665,41.391230855],[-71.531031537,41.391148451],[-71.531048492,41.391133616],[-71.531071101,41.391113416],[-71.531076357,41.391054455],[-71.531090477,41.391035125],[-71.531120537,41.390993451],[-71.531169537,41.390937452],[-71.531200418,41.390917498],[-71.531234903,41.390895028],[-71.531262865,41.390869847],[-71.531286537,41.390848452],[-71.531372019,41.390754785],[-71.531380485,41.390745233],[-71.531422188,41.390692574],[-71.531461373,41.390647165],[-71.531479112,41.390590053],[-71.531479446,41.390527571],[-71.531481365,41.390476218],[-71.531481537,41.390465451],[-71.531481247,41.390465004],[-71.531448233,41.390414874],[-71.531446636,41.390385939],[-71.531445537,41.390369451],[-71.531444537,41.390351451],[-71.53143315,41.390326845],[-71.531412455,41.390283562],[-71.531383209,41.39022031],[-71.531369133,41.390188511],[-71.531357537,41.390163452],[-71.531337537,41.390106452],[-71.531305537,41.390051451],[-71.531238537,41.390013451],[-71.531218953,41.390008762],[-71.531167357,41.389996925],[-71.531094476,41.390010072],[-71.531024389,41.390021732],[-71.530952193,41.39000469],[-71.530895537,41.389970812],[-71.530856599,41.389942733],[-71.530836537,41.389928452],[-71.530819274,41.389904613],[-71.530794269,41.389870438],[-71.530752275,41.389821872],[-71.530708123,41.38976759],[-71.530678213,41.389710856],[-71.530678537,41.389710451],[-71.530718537,41.389658452],[-71.530691536,41.389625451],[-71.530609536,41.389611451],[-71.530537116,41.389531159],[-71.530517586,41.389509868],[-71.530517613,41.389509536],[-71.530517536,41.389509451],[-71.530522537,41.389446451],[-71.530521912,41.389428023],[-71.530520293,41.389387739],[-71.530534052,41.389326397],[-71.530547115,41.38927155],[-71.530547266,41.389204769],[-71.530575175,41.389139512],[-71.530586347,41.389130406],[-71.530624537,41.389098451],[-71.530685537,41.389065451],[-71.530735697,41.38904996],[-71.530753458,41.389044301],[-71.530829131,41.389030352],[-71.53083904,41.389025881],[-71.530954036,41.388970577],[-71.530961024,41.388967034],[-71.530973581,41.388959753],[-71.531021536,41.388931451],[-71.531057647,41.388900499],[-71.531084218,41.388877349],[-71.531130349,41.388815266],[-71.531139364,41.388792984],[-71.531152537,41.388759451],[-71.531137211,41.388713474],[-71.531133454,41.388702469],[-71.531114475,41.388666788],[-71.531102537,41.388644451],[-71.531095282,41.388635237],[-71.531065378,41.388597763],[-71.531032737,41.388545376],[-71.531013139,41.388511273],[-71.531000536,41.388490452],[-71.530957537,41.388441451],[-71.530914278,41.388409408],[-71.530903996,41.388401853],[-71.530833205,41.388368377],[-71.530753537,41.388350451],[-71.530694174,41.3883497],[-71.530674991,41.38834961],[-71.530666665,41.388347535],[-71.530563375,41.388322392],[-71.530522888,41.388312897],[-71.530451246,41.388309486],[-71.530388577,41.388268541],[-71.530342512,41.388213596],[-71.53033456,41.388157794],[-71.530334315,41.388152077],[-71.530350121,41.388117927],[-71.530388272,41.388071124],[-71.530444043,41.388035409],[-71.530511592,41.388037419],[-71.530528659,41.388027593],[-71.53057704,41.387999329],[-71.530639184,41.387956294],[-71.530676118,41.387903728],[-71.53064915,41.387860521],[-71.530639537,41.387845451],[-71.530617747,41.387827852],[-71.530587304,41.387803808],[-71.530524543,41.387760713],[-71.530452645,41.387727182],[-71.530400767,41.387701513],[-71.530348204,41.387676483],[-71.53031459,41.387660688],[-71.530238028,41.387653801],[-71.530192456,41.387652639],[-71.530126536,41.387651451],[-71.530058537,41.387650451],[-71.52991309,41.387666612],[-71.52989639,41.387668756],[-71.529815951,41.387684238],[-71.529786216,41.387689374],[-71.529664536,41.387712451],[-71.529521536,41.387752451],[-71.52944431,41.387787386],[-71.529437943,41.387790522],[-71.529380081,41.387825123],[-71.529379537,41.387825451],[-71.529379287,41.387825598],[-71.529365793,41.387826978],[-71.529307536,41.387833451],[-71.529236536,41.387868451],[-71.529213607,41.387890963],[-71.529182026,41.38792271],[-71.529132875,41.387956868],[-71.529107141,41.387939691],[-71.529082536,41.387923451],[-71.529072364,41.387888485],[-71.529066389,41.387868628],[-71.5290227,41.387825093],[-71.52899825,41.387799217],[-71.528994651,41.387795567],[-71.528911749,41.387791708],[-71.528878808,41.387798889],[-71.528845536,41.387806451],[-71.528825508,41.387794322],[-71.528776264,41.387765349],[-71.528752878,41.387743093],[-71.528724536,41.387716451],[-71.528700653,41.387663711],[-71.528700536,41.387663451],[-71.528700536,41.387596451],[-71.528719536,41.387541451],[-71.528762536,41.387505451],[-71.528802753,41.387513585],[-71.52885138,41.387523133],[-71.528925783,41.387524303],[-71.528993709,41.387506973],[-71.529066545,41.387467961],[-71.529099823,41.387423797],[-71.529107536,41.387413451],[-71.529116343,41.387408652],[-71.529174341,41.387375034],[-71.529235913,41.387341353],[-71.52930875,41.387303804],[-71.529319385,41.387299984],[-71.529322536,41.387298451],[-71.529370809,41.387281514],[-71.529379223,41.387278491],[-71.529397584,41.387274441],[-71.529469536,41.387258451],[-71.529469954,41.387258476],[-71.529614516,41.387266924],[-71.529623654,41.387267172],[-71.529651537,41.387201451],[-71.529651537,41.387180099],[-71.529651292,41.387144492],[-71.529606477,41.387096705],[-71.529528391,41.387075501],[-71.529457597,41.387063078],[-71.529448699,41.387061502],[-71.529372752,41.387069686],[-71.529339511,41.387078887],[-71.529316536,41.387085451],[-71.529236536,41.387092451],[-71.529090219,41.387058281],[-71.529069914,41.387053639],[-71.529057415,41.387052289],[-71.528902536,41.387037451],[-71.528819536,41.387006451],[-71.528757535,41.386975451],[-71.528718279,41.386933885],[-71.528706136,41.386921197],[-71.528695573,41.386906904],[-71.528583083,41.386757639],[-71.528550045,41.386714372],[-71.528496772,41.386669647],[-71.528411626,41.386638545],[-71.528342216,41.386594903],[-71.528293423,41.386542885],[-71.528273877,41.386516559],[-71.528211535,41.386434451],[-71.528167536,41.38638645],[-71.528134746,41.386318885],[-71.528110456,41.386287711],[-71.528087536,41.386258451],[-71.528037886,41.386209794],[-71.528029088,41.386202757],[-71.527984535,41.386167451],[-71.527952814,41.386162483],[-71.527901238,41.386154778],[-71.527826324,41.386163647],[-71.527780458,41.386161512],[-71.527733536,41.386162451],[-71.527594535,41.386197451],[-71.527514392,41.386228726],[-71.527491382,41.386244382],[-71.527478535,41.386253451],[-71.527462628,41.386268681],[-71.527460774,41.386272483],[-71.527401913,41.386325534],[-71.527340044,41.386375772],[-71.527281726,41.386419446],[-71.527265628,41.386422544],[-71.527263535,41.38642345],[-71.527166629,41.386441939],[-71.527129444,41.386449465],[-71.527087782,41.386456885],[-71.527043739,41.386462997],[-71.527021535,41.386466451],[-71.526979536,41.386481451],[-71.526973182,41.38648408],[-71.526951052,41.386494493],[-71.526940331,41.386480773],[-71.526917535,41.386452451],[-71.526892417,41.38643796],[-71.526838447,41.38642019],[-71.52682535,41.38641447],[-71.526819535,41.386412451],[-71.526739535,41.386379451],[-71.526692535,41.38636645],[-71.526667054,41.386367361],[-71.526663528,41.386367585],[-71.526620118,41.386373373],[-71.526573141,41.386388919],[-71.526520788,41.386391516],[-71.526520573,41.386391448],[-71.526520535,41.386391451],[-71.526490535,41.386382451],[-71.526488839,41.386331555],[-71.526488479,41.386322615],[-71.526488869,41.386317951],[-71.526492535,41.38626845],[-71.526489535,41.38620645],[-71.526440535,41.386156451],[-71.526390537,41.386138444],[-71.526361535,41.386128451],[-71.526347765,41.386124508],[-71.526282499,41.386107611],[-71.526239521,41.386093511],[-71.526146538,41.386066884],[-71.526141637,41.386065562],[-71.525989174,41.386063451],[-71.525959535,41.386063451],[-71.525936303,41.386061817],[-71.52590498,41.386060172],[-71.525864969,41.386056801],[-71.525831534,41.38605445],[-71.525682535,41.38607345],[-71.525608535,41.386069451],[-71.525533535,41.386059451],[-71.525449535,41.386040451],[-71.525372535,41.38601645],[-71.525165535,41.385927451],[-71.525091534,41.385891451],[-71.525056534,41.385867451],[-71.525028535,41.385848451],[-71.524973534,41.385804451],[-71.524903534,41.385779451],[-71.524816534,41.385758451],[-71.524738534,41.385746451],[-71.524582534,41.385732451],[-71.524537777,41.385730345],[-71.524497923,41.385728905],[-71.524419848,41.38573066],[-71.52434867,41.385738748],[-71.524325412,41.385762933],[-71.524314872,41.385774093],[-71.524335042,41.385804134],[-71.524352534,41.385829451],[-71.524355944,41.385840166],[-71.524359826,41.385851199],[-71.52435616,41.385854955],[-71.524333534,41.38587845],[-71.524304832,41.385892462],[-71.524267835,41.385910774],[-71.524206139,41.385940861],[-71.524132658,41.385962672],[-71.524110601,41.385957577],[-71.524078534,41.385950451],[-71.523923534,41.385962451],[-71.523919314,41.385962005],[-71.523847352,41.385956214],[-71.523763017,41.385945939],[-71.523748011,41.385946575],[-71.523594534,41.385958451],[-71.52355429,41.385965729],[-71.523500166,41.385975588],[-71.523423799,41.385997422],[-71.523411076,41.386007602],[-71.523369534,41.386041451],[-71.523371599,41.386068704],[-71.523374825,41.386107644],[-71.523341017,41.386168006],[-71.523339872,41.386169121],[-71.523260081,41.386249873],[-71.523257658,41.386252483],[-71.523214656,41.386250594],[-71.523187966,41.38626221],[-71.523153534,41.386277451],[-71.523094069,41.386280991],[-71.523069146,41.386282619],[-71.523065237,41.386283289],[-71.522915411,41.3863125],[-71.522900798,41.386315906],[-71.522822969,41.386324818],[-71.52273718,41.386324629],[-71.522656304,41.386304908],[-71.522587176,41.38628108],[-71.522564534,41.386273451],[-71.522483829,41.386235589],[-71.522483534,41.386235451],[-71.522480995,41.386234025],[-71.522473434,41.386229815],[-71.522410682,41.386194904],[-71.522343037,41.386147598],[-71.522283741,41.386095808],[-71.522237111,41.386049504],[-71.522210224,41.38602685],[-71.522179534,41.386001451],[-71.522106533,41.38599445],[-71.522032533,41.386016451],[-71.521979534,41.386057451],[-71.521979244,41.386057385],[-71.52197905,41.386057536],[-71.521953425,41.386051567],[-71.521908534,41.386041451],[-71.521881457,41.386049574],[-71.521838176,41.386062868],[-71.521822415,41.386078936],[-71.521794533,41.386107451],[-71.521773509,41.386136284],[-71.521759889,41.386155097],[-71.521759734,41.386155175],[-71.521759533,41.386155451],[-71.521734865,41.386167785],[-71.521691664,41.38618969],[-71.521609281,41.386203748],[-71.521533387,41.38618972],[-71.521450866,41.386152067],[-71.521413699,41.386134495],[-71.521376533,41.386117451],[-71.521299534,41.386108451],[-71.521225534,41.386127451],[-71.521155533,41.386153451],[-71.521063533,41.386158451],[-71.521054084,41.386154754],[-71.520991548,41.386132369],[-71.520906265,41.38609769],[-71.520867434,41.386081742],[-71.520723533,41.386025451],[-71.520682147,41.386011655],[-71.520630403,41.385994823],[-71.520617513,41.385991196],[-71.520377508,41.385931195],[-71.520370436,41.385929643],[-71.520293999,41.385925608],[-71.520246015,41.385920614],[-71.520215533,41.385918451],[-71.520153842,41.385901535],[-71.520153533,41.385901451],[-71.520085533,41.385875451],[-71.51995335,41.385789204],[-71.519944182,41.385783507],[-71.519859933,41.385751663],[-71.519859674,41.385751504],[-71.519859533,41.385751451],[-71.519785532,41.385706451],[-71.519730069,41.385680452],[-71.519721586,41.385676557],[-71.519700516,41.385673195],[-71.519650532,41.385665451],[-71.519577533,41.385674451],[-71.519530759,41.385683546],[-71.519505646,41.385688624],[-71.519470091,41.385719539],[-71.519452533,41.385735451],[-71.519413335,41.385758211],[-71.519390761,41.38577164],[-71.519369746,41.385781509],[-71.519328533,41.385801451],[-71.51919182,41.385882236],[-71.519174458,41.385892867],[-71.519109423,41.385935966],[-71.519037432,41.385971381],[-71.518948246,41.385981985],[-71.51885912,41.385994052],[-71.518771211,41.386012592],[-71.518700062,41.386021363],[-71.518618345,41.386028969],[-71.518546286,41.386038494],[-71.518463749,41.386048982],[-71.518391451,41.386075752],[-71.518354754,41.386135473],[-71.518324492,41.386189315],[-71.51827252,41.386249335],[-71.518234422,41.386297598],[-71.518177528,41.386352724],[-71.518116135,41.386391477],[-71.518042895,41.386418956],[-71.517968225,41.386435022],[-71.51789974,41.386415021],[-71.51781669,41.386436281],[-71.51775059,41.386475857],[-71.517664081,41.386506517],[-71.517599343,41.386531684],[-71.517530174,41.386566297],[-71.517453658,41.386608231],[-71.51739166,41.38665485],[-71.517363701,41.386694969],[-71.517390499,41.386745371],[-71.517428777,41.386796184],[-71.517397542,41.386850025],[-71.517358594,41.386901192],[-71.517306063,41.386922424],[-71.517236667,41.386903932],[-71.517159495,41.386880547],[-71.517084452,41.386863589],[-71.517004701,41.386848163],[-71.516982171,41.386857291],[-71.516955098,41.386918954],[-71.516976181,41.386945732],[-71.51705414,41.38696404],[-71.517108689,41.386992963],[-71.517092852,41.387050073],[-71.517120591,41.387099675],[-71.517190445,41.387129693],[-71.517282073,41.387157055],[-71.517368842,41.387180942],[-71.517443886,41.387197923],[-71.517510611,41.387221538],[-71.517579189,41.387244375],[-71.517639997,41.387286059],[-71.517638892,41.387354304],[-71.517618104,41.387406498],[-71.517563788,41.387455083],[-71.517479948,41.38748071],[-71.517388387,41.387479878],[-71.517354866,41.387500032],[-71.517319988,41.387557556],[-71.517289939,41.387615652],[-71.517261742,41.387673724],[-71.517230085,41.38774051],[-71.517208416,41.387794145],[-71.517192396,41.387846909],[-71.517175042,41.387913373],[-71.517179004,41.387964968],[-71.51725551,41.387994803],[-71.517256458,41.388018474],[-71.517213865,41.388074009],[-71.517172184,41.388128081],[-71.517126553,41.388179409],[-71.517084688,41.388229891],[-71.517043067,41.388285357],[-71.517005273,41.38834151],[-71.51697191,41.38838968],[-71.516934965,41.388442928],[-71.516902666,41.388493179],[-71.516860195,41.388551596],[-71.516829173,41.388610423],[-71.516792045,41.388659394],[-71.516740307,41.388700775],[-71.51666141,41.388706892],[-71.516586706,41.388722181],[-71.516519356,41.388754598],[-71.516454739,41.388783355],[-71.516373341,41.388869908],[-71.516335307,41.388943991],[-71.516316614,41.389001147],[-71.516298771,41.389055398],[-71.516284088,41.38911747],[-71.516272229,41.389178811],[-71.516259306,41.389237201],[-71.516241555,41.389294333],[-71.516209529,41.389351788],[-71.516187132,41.389411895],[-71.516171446,41.38947255],[-71.516152086,41.389536887],[-71.516129658,41.389594821],[-71.516101184,41.389647175],[-71.51606038,41.389698365],[-71.515999833,41.389734211],[-71.515944328,41.389777124],[-71.515901275,41.389821178],[-71.515838997,41.389861324],[-71.515822113,41.389868188],[-71.515774012,41.389881505],[-71.515687551,41.389888446],[-71.515609442,41.389890241],[-71.515524681,41.389892151],[-71.515450306,41.389892389],[-71.51537268,41.389881971],[-71.515308716,41.389856113],[-71.515259966,41.389828492],[-71.515177394,41.389838291],[-71.515100776,41.38985367],[-71.515023491,41.389876208],[-71.514960662,41.38990206],[-71.514964017,41.389962277],[-71.514943617,41.390000793],[-71.514883435,41.390045238],[-71.514852461,41.390058164],[-71.514804928,41.390036947],[-71.514781002,41.390058334],[-71.514849703,41.390084077],[-71.514901338,41.390111606],[-71.514927072,41.390159127],[-71.514956119,41.390218061],[-71.514990178,41.390283351],[-71.515031371,41.390335559],[-71.515074478,41.390388407],[-71.515121045,41.390432587],[-71.515179819,41.390472167],[-71.515265344,41.390489652],[-71.515340178,41.390500871],[-71.515425667,41.390492467],[-71.51549934,41.390475007],[-71.515580391,41.390451622],[-71.5156427,41.390412139],[-71.515652677,41.3903516],[-71.515629492,41.390296142],[-71.515594979,41.390243774],[-71.515588781,41.39023179],[-71.515585774,41.390228223],[-71.515582968,41.390181614],[-71.51562365,41.390126102],[-71.515668947,41.390066953],[-71.5157137,41.39001853],[-71.51575594,41.390001783],[-71.515838818,41.389999896],[-71.515929624,41.390005761],[-71.516010772,41.390008197],[-71.516094261,41.390021405],[-71.516189169,41.390035754],[-71.516258721,41.390057883],[-71.516329581,41.390089297],[-71.516404512,41.390127114],[-71.51646833,41.39017376],[-71.516521763,41.390222078],[-71.516569333,41.390267651],[-71.516611744,41.39032704],[-71.516644405,41.390380826],[-71.516649668,41.390417327],[-71.516636342,41.390441343],[-71.516652383,41.390461786],[-71.516617496,41.390494885],[-71.516618841,41.390528619],[-71.516558226,41.390537867],[-71.516612202,41.390576853],[-71.516632687,41.390636702],[-71.516669199,41.390667458],[-71.516710755,41.390705302],[-71.516665305,41.390760907],[-71.516695962,41.390811903],[-71.516676235,41.390867618],[-71.516660605,41.390905311],[-71.51665344,41.390916953],[-71.516612667,41.390970293],[-71.516573807,41.391023609],[-71.516536041,41.391080448],[-71.516508937,41.391142087],[-71.516489149,41.391195676],[-71.516462588,41.39124652],[-71.516436229,41.391255032],[-71.516363338,41.391244453],[-71.516289506,41.391233921],[-71.516266821,41.391238749],[-71.516268196,41.391273169],[-71.516340298,41.39128807],[-71.516408726,41.391306609],[-71.516417847,41.391343749],[-71.516368075,41.39136283],[-71.516317851,41.391394833],[-71.516293661,41.391457135],[-71.516279827,41.391516303],[-71.51627781,41.391586012],[-71.516291399,41.391639527],[-71.516309817,41.391694413],[-71.516358757,41.391750027],[-71.516406176,41.391791302],[-71.516432217,41.391846713],[-71.516407722,41.391901834],[-71.516406964,41.391906866],[-71.516403822,41.391971566],[-71.516405478,41.392036175],[-71.516407257,41.392105038],[-71.516406908,41.39216752],[-71.516393196,41.392230278],[-71.516359257,41.392287779],[-71.516324742,41.392354611],[-71.516291261,41.39242357],[-71.516263488,41.392490973],[-71.516242581,41.392564665],[-71.516231418,41.392619509],[-71.516223294,41.392678585],[-71.516214136,41.392735488],[-71.51620595,41.392793099],[-71.516201561,41.392849956],[-71.516203125,41.392913078],[-71.516205753,41.392979059],[-71.516208168,41.393040031],[-71.516189296,41.393116581],[-71.516155722,41.393182658],[-71.516139522,41.39325413],[-71.516116243,41.393316387],[-71.516062257,41.393372884],[-71.516031415,41.393436057],[-71.516001027,41.393487725],[-71.515966872,41.393539486],[-71.515931715,41.393590537],[-71.51588699,41.393638914],[-71.515851135,41.393696461],[-71.515849331,41.393770447],[-71.515845852,41.393826503],[-71.5158356,41.393880593],[-71.515810015,41.393955863],[-71.515770119,41.394007738],[-71.515702489,41.394033683],[-71.515629631,41.394047529],[-71.515620711,41.394086547],[-71.515681647,41.394132508],[-71.515754577,41.39416749],[-71.515806643,41.394205791],[-71.515849117,41.394266552],[-71.51587975,41.394341265],[-71.515903609,41.394413235],[-71.515912949,41.394479809],[-71.515934773,41.394548944],[-71.51597339,41.394609087],[-71.516008272,41.394670764],[-71.516021073,41.39472867],[-71.51599849,41.394783722],[-71.515938915,41.394843925],[-71.515898842,41.394914509],[-71.515852025,41.394983744],[-71.51580785,41.395047238],[-71.515771511,41.395116289],[-71.515745681,41.395185773],[-71.51576204,41.395261495],[-71.515789879,41.395337718],[-71.515807265,41.395391163],[-71.515818971,41.395445456],[-71.515851579,41.395521541],[-71.515904654,41.395584931],[-71.515960915,41.395632494],[-71.515995675,41.395691311],[-71.516026578,41.395749466],[-71.516045541,41.395794313],[-71.516027909,41.395854258],[-71.516011617,41.395923558],[-71.516005435,41.395983296],[-71.516011677,41.396044176],[-71.516042005,41.396110999],[-71.51605905,41.396137115],[-71.516078526,41.396166867],[-71.516117657,41.396215529],[-71.516184336,41.396261421],[-71.516265534,41.396312708],[-71.516336407,41.396368524],[-71.51637129,41.396430201],[-71.516380509,41.396493894],[-71.516383107,41.396558433],[-71.516378717,41.396615267],[-71.516364944,41.396676607],[-71.51634722,41.396734449],[-71.516343283,41.396779047],[-71.516252046,41.396786859],[-71.516177461,41.396829477],[-71.516110011,41.396858989],[-71.51600827,41.396890038],[-71.515934804,41.39691253],[-71.515863857,41.39692704],[-71.515762935,41.396954452],[-71.515693174,41.396974702],[-71.515623504,41.396997102],[-71.515539015,41.397029909],[-71.515470867,41.397065916],[-71.515401808,41.397104073],[-71.515327223,41.397146691],[-71.515248962,41.397191527],[-71.515188591,41.397231696],[-71.515120381,41.397266994],[-71.515046945,41.397290171],[-71.514976608,41.397319774],[-71.514889222,41.397304508],[-71.51482121,41.397273025],[-71.514774119,41.397215923],[-71.51474996,41.39715978],[-71.514725923,41.397107181],[-71.514702681,41.397073953],[-71.514671112,41.397023711],[-71.514619711,41.396978183],[-71.514561689,41.396934256],[-71.514494105,41.396913544],[-71.514423127,41.396926635],[-71.514349422,41.396967788],[-71.514291544,41.397022958],[-71.514249823,41.397075588],[-71.514247609,41.397091438],[-71.514219161,41.397143082],[-71.514225157,41.397198222],[-71.514233371,41.397260474],[-71.514237575,41.397318565],[-71.514223493,41.397371283],[-71.514171594,41.397409071],[-71.514133579,41.397460191],[-71.51408712,41.397514377],[-71.514033098,41.397570164],[-71.513972303,41.397623963],[-71.513897685,41.397665138],[-71.513809367,41.397698014],[-71.513737752,41.397719726],[-71.513668931,41.397739243],[-71.513587295,41.397771957],[-71.513550734,41.397812282],[-71.513575106,41.397872748],[-71.513602241,41.397931705],[-71.513615829,41.397985243],[-71.513622857,41.398042555],[-71.513614852,41.398104466],[-71.513639132,41.398162783],[-71.513677627,41.398220069],[-71.513705704,41.398278293],[-71.513742713,41.398344956],[-71.513784124,41.398403614],[-71.513817276,41.398469637],[-71.513844442,41.398528616],[-71.513855511,41.398590845],[-71.513857349,41.398661148],[-71.513829877,41.39873715],[-71.513787793,41.398805629],[-71.513736748,41.398864915],[-71.513678867,41.398920062],[-71.513654968,41.398942135],[-71.513634723,41.399007936],[-71.513630239,41.399063328],[-71.513631923,41.399129355],[-71.513645181,41.399198696],[-71.513656036,41.399255871],[-71.513681075,41.399309156],[-71.513686149,41.399316954],[-71.513705753,41.399378244],[-71.513728879,41.399432284],[-71.513754132,41.39949131],[-71.513776714,41.399555413],[-71.513795621,41.399623175],[-71.513803896,41.399686914],[-71.513796862,41.399749557],[-71.513775583,41.399813208],[-71.513750203,41.399870501],[-71.513726675,41.399926307],[-71.513706032,41.399982045],[-71.513687364,41.400039909],[-71.513661133,41.400099375],[-71.513626245,41.400157607],[-71.513591296,41.40021369],[-71.5135551,41.400261882],[-71.513494272,41.400314216],[-71.513443464,41.400355595],[-71.513400677,41.400406807],[-71.513363025,41.400466571],[-71.513312797,41.400522267],[-71.513259684,41.400577299],[-71.513205659,41.400633086],[-71.513159502,41.400695138],[-71.513125983,41.400763433],[-71.513101242,41.400835752],[-71.513089683,41.40090425],[-71.513089545,41.400972427],[-71.51308789,41.401050758],[-71.513075695,41.401127833],[-71.513058639,41.401202186],[-71.513039761,41.401278712],[-71.513025678,41.401332139],[-71.512999115,41.401406722],[-71.512966781,41.401480666],[-71.51294404,41.401532173],[-71.512900132,41.401602824],[-71.512856983,41.40166913],[-71.512815716,41.401733927],[-71.512764061,41.401800439],[-71.512719237,41.401848129],[-71.512670677,41.40189806],[-71.512625914,41.401947168],[-71.512581089,41.401994858],[-71.512539059,41.402041037],[-71.512484579,41.402109746],[-71.512428883,41.402172028],[-71.512382999,41.402240575],[-71.512342734,41.402306812],[-71.512302286,41.402368041],[-71.512262383,41.402419915],[-71.512195749,41.402470969],[-71.512139926,41.402505257],[-71.51207742,41.402540438],[-71.512045288,41.402571317],[-71.512056052,41.402626365],[-71.512063959,41.402680704],[-71.512123959,41.402726758],[-71.512182651,41.402763459],[-71.512240463,41.402802378],[-71.512277168,41.402861883],[-71.512273262,41.402930883],[-71.512251707,41.402988816],[-71.512209405,41.403051486],[-71.512166162,41.403115642],[-71.512125683,41.403176161],[-71.512077762,41.403241872],[-71.512023312,41.403311335],[-71.511985291,41.403362455],[-71.511944353,41.403412156],[-71.511904327,41.403460485],[-71.511861354,41.403505933],[-71.511790346,41.403567142],[-71.511735677,41.403606438],[-71.511679155,41.403647954],[-71.511628435,41.403691458],[-71.511562135,41.403750356],[-71.511502971,41.403796949],[-71.511493323,41.403866064],[-71.511520673,41.403930099],[-71.511578211,41.403962523],[-71.511642554,41.403997691],[-71.511697816,41.40404457],[-71.511702868,41.404098978],[-71.511703121,41.404153547],[-71.511701006,41.404219665],[-71.511683613,41.404286128],[-71.511635229,41.40431591],[-71.511562085,41.404323305],[-71.51148727,41.404335754],[-71.511441075,41.404372717],[-71.511394548,41.404425437],[-71.511355401,41.404472303],[-71.511324184,41.404526829],[-71.51130369,41.404586888],[-71.511300267,41.40464443],[-71.511309452,41.404707414],[-71.511332883,41.40476859],[-71.511376572,41.404812108],[-71.511459259,41.40482891],[-71.51153587,41.404836541],[-71.511614181,41.404840512],[-71.511691881,41.404827972],[-71.511761377,41.404800543],[-71.511833908,41.404754406],[-71.511876032,41.404710399],[-71.511918095,41.404664906],[-71.511964683,41.404613625],[-71.512003554,41.40456102],[-71.512038812,41.404512851],[-71.512072157,41.404463973],[-71.512097724,41.404411712],[-71.512178854,41.404389062],[-71.512272383,41.404391225],[-71.512352703,41.404420284],[-71.512428559,41.404458058],[-71.512486831,41.404507726],[-71.512529578,41.404552021],[-71.512602697,41.40456832],[-71.51268046,41.40456687],[-71.51268283,41.404568631],[-71.512681555,41.404571742],[-71.512639913,41.404592581],[-71.512574183,41.404617791],[-71.512556694,41.404657634],[-71.512587965,41.404724412],[-71.512570236,41.404782253],[-71.512505544,41.40483397],[-71.512482105,41.404891239],[-71.512499826,41.404953285],[-71.51252566,41.405027405],[-71.512543259,41.40508586],[-71.512565689,41.405145663],[-71.512586902,41.405199726],[-71.512603316,41.405252509],[-71.512617876,41.405306756],[-71.512628762,41.405364663],[-71.512633938,41.405421952],[-71.512634985,41.405496601],[-71.512619628,41.405565877],[-71.51259692,41.405641786],[-71.512564553,41.405715043],[-71.512522795,41.40576765],[-71.512483042,41.405822406],[-71.512438307,41.405872268],[-71.512370056,41.405906832],[-71.512295088,41.4059164],[-71.512208306,41.40593992],[-71.512162659,41.405991223],[-71.512170872,41.406053521],[-71.512199588,41.40610381],[-71.51225388,41.406149957],[-71.512303403,41.406196241],[-71.512311103,41.406269311],[-71.512309656,41.406328934],[-71.512320816,41.406394022],[-71.512348652,41.406445797],[-71.512383903,41.406516783],[-71.512425653,41.406583354],[-71.512468132,41.406644116],[-71.512478229,41.406705659],[-71.512450051,41.406764439],[-71.512407808,41.406828549],[-71.512365169,41.406883374],[-71.512306063,41.406932117],[-71.512238815,41.406967367],[-71.512161295,41.40698494],[-71.5120753,41.407004092],[-71.511986088,41.407038406],[-71.511928347,41.407073473],[-71.511853172,41.407125465],[-71.511800322,41.407163275],[-71.511759923,41.407178511],[-71.511726935,41.407188577],[-71.511682137,41.407236975],[-71.511611932,41.407222071],[-71.511576419,41.407215671],[-71.511540554,41.407273216],[-71.511469476,41.407308558],[-71.511396516,41.407343968],[-71.511326868,41.4073915],[-71.511258315,41.407441867],[-71.511183593,41.4074816],[-71.511110087,41.407527074],[-71.51105809,41.407586381],[-71.51103389,41.407648683],[-71.511006437,41.407701721],[-71.510969293,41.40775069],[-71.510946946,41.407812191],[-71.510931159,41.407870695],[-71.510891251,41.40792186],[-71.510825914,41.407957795],[-71.510748728,41.407982525],[-71.510676068,41.408002109],[-71.510604894,41.408011607],[-71.510528676,41.408013352],[-71.510455192,41.408012123],[-71.510403149,41.407974529],[-71.510366839,41.407925087],[-71.51035207,41.407889525],[-71.510376637,41.407835892],[-71.510398802,41.407769291],[-71.510419298,41.407709964],[-71.510439126,41.407657109],[-71.510438783,41.40760039],[-71.510422855,41.407535417],[-71.510431932,41.407500059],[-71.510457745,41.407454224],[-71.510466636,41.407390141],[-71.510476407,41.407323861],[-71.510473208,41.407267898],[-71.510448988,41.407210313],[-71.510410186,41.407146554],[-71.510358928,41.407080234],[-71.510313565,41.407019518],[-71.510271332,41.406963741],[-71.510229888,41.406905791],[-71.510186957,41.406857218],[-71.510127138,41.406816262],[-71.510052069,41.406774851],[-71.509962361,41.40674961],[-71.509868036,41.406727342],[-71.509775931,41.406714314],[-71.509680454,41.406710754],[-71.509602446,41.406715358],[-71.509530606,41.40673135],[-71.509473501,41.406758502],[-71.50943405,41.406821147],[-71.509398335,41.40688226],[-71.509376017,41.406944469],[-71.509352482,41.407000297],[-71.509320564,41.407060609],[-71.509282481,41.407133271],[-71.509251993,41.407205772],[-71.509216155,41.407264003],[-71.509168652,41.407316769],[-71.509129262,41.407380855],[-71.509086741,41.407438537],[-71.509033862,41.40750004],[-71.508981711,41.40755507],[-71.508930228,41.407603582],[-71.508888679,41.407661973],[-71.508856306,41.407733811],[-71.508826637,41.407803385],[-71.508798606,41.407865778],[-71.508774465,41.407930228],[-71.508751204,41.407992483],[-71.508729613,41.408048974],[-71.508719504,41.408106631],[-71.508727441,41.408162457],[-71.508743032,41.408218122],[-71.50877369,41.40826983],[-71.50879022,41.408301801],[-71.508827379,41.408348294],[-71.508869916,41.408410521],[-71.508899816,41.408467306],[-71.508917413,41.408526515],[-71.508900652,41.40858431],[-71.508863659,41.408636823],[-71.508813936,41.408681035],[-71.508768921,41.408724401],[-71.508762031,41.40876694],[-71.508796456,41.408817115],[-71.508830031,41.408869509],[-71.508873481,41.408930981],[-71.508910034,41.408987582],[-71.508888838,41.409052673],[-71.508871258,41.409114813],[-71.508833688,41.409176703],[-71.508788219,41.409232304],[-71.508742445,41.409280724],[-71.508726626,41.409338496],[-71.508667485,41.409385796],[-71.508596404,41.409421159],[-71.508600509,41.409452651],[-71.508638245,41.409489835],[-71.508597453,41.409543172],[-71.508555629,41.409594382],[-71.508512527,41.409637747],[-71.508463836,41.409684063],[-71.508414932,41.409724639],[-71.508375234,41.409782275],[-71.508363486,41.409845695],[-71.508357994,41.40989967],[-71.508352375,41.40990955],[-71.508255866,41.409941461],[-71.508122604,41.410016234],[-71.507953425,41.410024159],[-71.50780323,41.410007497],[-71.507657891,41.409943858],[-71.507554665,41.409958273],[-71.50750151,41.41002595],[-71.507497333,41.410154505],[-71.507459736,41.410259756],[-71.507352963,41.410340495],[-71.507342452,41.41034507],[-71.507202473,41.410406074],[-71.507034904,41.410423009],[-71.506868152,41.410406781],[-71.506702066,41.410364275],[-71.506567025,41.410294551],[-71.506429067,41.410228944],[-71.506378636,41.410202394],[-71.506288588,41.410155012],[-71.506240735,41.41008654],[-71.50624282,41.409968346],[-71.506244333,41.409909684],[-71.506237767,41.409869227],[-71.506231049,41.409816968],[-71.50620507,41.409769079],[-71.506162751,41.409748795],[-71.506107979,41.409754585],[-71.506079153,41.409797422],[-71.506076154,41.409883689],[-71.506076825,41.409909693],[-71.506075611,41.409921974],[-71.506064958,41.410029374],[-71.50606181,41.410152394],[-71.506058662,41.410275436],[-71.506054905,41.410386037],[-71.506006063,41.410464851],[-71.505959198,41.410574105],[-71.505985568,41.410584144],[-71.506039095,41.410573872],[-71.506134812,41.410495033],[-71.506148361,41.410495513],[-71.506210972,41.410497522],[-71.506349475,41.410540328],[-71.506517233,41.410589764],[-71.506654279,41.410654685],[-71.506776108,41.410738726],[-71.506825145,41.4107881],[-71.506857594,41.41082078],[-71.506862589,41.410948099],[-71.506838874,41.411050125],[-71.506744556,41.411147604],[-71.506622654,41.411244055],[-71.506523321,41.411322826],[-71.50641934,41.411402238],[-71.506396774,41.411458614],[-71.506422051,41.411475537],[-71.506503405,41.411455292],[-71.506610242,41.411372496],[-71.506761313,41.411317941],[-71.506909502,41.411306268],[-71.506941644,41.411306747],[-71.507067449,41.411343812],[-71.507197085,41.411409304],[-71.507301237,41.411504141],[-71.507450925,41.411577522],[-71.507582657,41.411634781],[-71.507717521,41.411712074],[-71.50785448,41.411779738],[-71.507969233,41.41185399],[-71.508064423,41.411939724],[-71.508157791,41.412024063],[-71.508260182,41.412114737],[-71.508351576,41.412204542],[-71.508481734,41.412288055],[-71.50861444,41.412341813],[-71.508789038,41.412375442],[-71.508951455,41.4124179],[-71.509107124,41.412435383],[-71.509275065,41.412441248],[-71.509443097,41.412443658],[-71.50959369,41.412445155],[-71.509745648,41.412429362],[-71.509880983,41.412380843],[-71.509988577,41.412302868],[-71.510084805,41.412203305],[-71.51018201,41.412137636],[-71.510362343,41.412126391],[-71.510518495,41.41212521],[-71.510678323,41.412124738],[-71.510826543,41.412110979],[-71.510984331,41.412082834],[-71.511133071,41.412084969],[-71.511165884,41.412101501],[-71.511181136,41.412109161],[-71.511189176,41.412226874],[-71.51118631,41.412339511],[-71.511199909,41.412453815],[-71.511250208,41.412570678],[-71.511266663,41.41268329],[-71.511267382,41.412799128],[-71.511297599,41.412910892],[-71.511349963,41.413018812],[-71.511397274,41.413073421],[-71.511543922,41.413084545],[-71.511712625,41.413097358],[-71.511781051,41.413151531],[-71.511821356,41.413263477],[-71.511831341,41.41337769],[-71.511829206,41.413496593],[-71.511839801,41.413621921],[-71.51185814,41.413731446],[-71.51190176,41.413858577],[-71.511957861,41.413962425],[-71.512045158,41.414034206],[-71.51218343,41.414086679],[-71.512293394,41.414169847],[-71.512321361,41.414261508],[-71.512336297,41.414361335],[-71.512391301,41.414438151],[-71.512325092,41.414549216],[-71.512242626,41.414649008],[-71.512171648,41.414766889],[-71.512089883,41.414875669],[-71.512003529,41.414985021],[-71.511867467,41.415062588],[-71.51173905,41.415090481],[-71.511585716,41.415088278],[-71.511436698,41.415097189],[-71.51128701,41.415096403],[-71.511125497,41.415053972],[-71.510997521,41.414993332],[-71.510836708,41.41496062],[-71.510670125,41.414936759],[-71.510508805,41.414960033],[-71.510353491,41.414925993],[-71.510194496,41.414857328],[-71.510033679,41.414789326],[-71.509872711,41.41472544],[-71.509700684,41.41466279],[-71.509565907,41.414617289],[-71.5094105,41.414552831],[-71.50925488,41.414495965],[-71.50910543,41.414448155],[-71.5089383,41.414411873],[-71.50876838,41.414410788],[-71.508593021,41.414408263],[-71.508445188,41.414405415],[-71.508292913,41.414361766],[-71.508173508,41.414288796],[-71.508076435,41.414242467],[-71.508017316,41.414256125],[-71.507954927,41.41436099],[-71.507894541,41.414459702],[-71.507791106,41.414553661],[-71.507697303,41.414666349],[-71.507598333,41.414765201],[-71.507461108,41.414815776],[-71.507317835,41.414849656],[-71.507217487,41.414860641],[-71.507211577,41.414983637],[-71.507258368,41.415020959],[-71.507397973,41.415057543],[-71.507483659,41.415155582],[-71.507622086,41.415238501],[-71.507763424,41.415278606],[-71.507934988,41.415286599],[-71.508047194,41.415353898],[-71.508139534,41.415442331],[-71.508242661,41.415540643],[-71.508347611,41.415638955],[-71.508375079,41.415668776],[-71.508447731,41.415747605],[-71.508466941,41.415812349],[-71.508485786,41.415876042],[-71.508478447,41.415984516],[-71.508393814,41.416060726],[-71.508248842,41.416128044],[-71.508245075,41.416129782],[-71.508095998,41.416178118],[-71.507944584,41.416244407],[-71.507827231,41.416342963],[-71.507732877,41.416441838],[-71.507659033,41.416563169],[-71.507581085,41.41666648],[-71.507492381,41.416758516],[-71.507388332,41.416839987],[-71.507298685,41.416933417],[-71.507249114,41.417041254],[-71.507247912,41.417160866],[-71.507294012,41.417260395],[-71.507380825,41.417350864],[-71.507422213,41.41741993],[-71.507349733,41.417525366],[-71.507225357,41.417612762],[-71.507113712,41.417703815],[-71.507083554,41.417805018],[-71.507080347,41.417930805],[-71.50707717,41.418055906],[-71.507080798,41.418165912],[-71.507117568,41.418236945],[-71.507236677,41.418320277],[-71.507348555,41.418399332],[-71.507490937,41.41847125],[-71.507646201,41.418543327],[-71.507796848,41.418615336],[-71.507951473,41.418674948],[-71.508108134,41.418728385],[-71.508261818,41.418789369],[-71.508416107,41.418825516],[-71.508562188,41.418824819],[-71.508702765,41.418788856],[-71.508734998,41.418771495],[-71.508844278,41.418712756],[-71.508963799,41.418673661],[-71.509131907,41.418674014],[-71.509279387,41.418689279],[-71.509422195,41.418744591],[-71.50955969,41.418829543],[-71.509664465,41.418935469],[-71.509758213,41.419041923],[-71.509819422,41.419161735],[-71.509846483,41.419290058],[-71.509834316,41.419406057],[-71.509795021,41.419543099],[-71.509730354,41.419665232],[-71.509663616,41.41976175],[-71.509632358,41.419808294],[-71.509590104,41.419871328],[-71.509499882,41.41998619],[-71.509381065,41.420070203],[-71.50928288,41.420175277],[-71.509218785,41.420276003],[-71.509194919,41.420382809],[-71.50919372,41.420502443],[-71.509280237,41.420604621],[-71.509383132,41.420711234],[-71.509490429,41.420790882],[-71.509570898,41.420876411],[-71.509607678,41.420983463],[-71.509653634,41.421091293],[-71.509687589,41.421200313],[-71.509712857,41.421327241],[-71.509744688,41.421447993],[-71.509768374,41.421563829],[-71.509772817,41.421605361],[-71.509825275,41.421709828],[-71.509850327,41.421808397],[-71.509931753,41.421784674],[-71.510044923,41.421706081],[-71.510164473,41.421628975],[-71.510232219,41.42156635],[-71.510238221,41.421474457],[-71.51036461,41.421416835],[-71.510424774,41.421435698],[-71.510518465,41.421544209],[-71.510627316,41.421634994],[-71.510763261,41.421672214],[-71.510890845,41.421674741],[-71.51097142,41.421648935],[-71.511030099,41.42168989],[-71.511088337,41.421820017],[-71.511127674,41.421935371],[-71.511190984,41.42204624],[-71.511304002,41.422154336],[-71.511417956,41.422223737],[-71.511551657,41.422276828],[-71.511719992,41.42230485],[-71.511870639,41.422303554],[-71.512024841,41.422309232],[-71.512179888,41.42228104],[-71.51229884,41.422262708],[-71.512351199,41.422298723],[-71.512381688,41.422364884],[-71.51236606,41.422473885],[-71.512310172,41.422577471],[-71.51221846,41.422679208],[-71.512089161,41.422778295],[-71.511974169,41.422856112],[-71.511851884,41.422932534],[-71.511740538,41.423013186],[-71.511638459,41.423089858],[-71.511520145,41.423117886],[-71.511435035,41.423104904],[-71.511303421,41.423006872],[-71.511175514,41.422906873],[-71.511089172,41.422797744],[-71.510955736,41.422698317],[-71.510824739,41.42264941],[-71.510653481,41.42259161],[-71.510513128,41.422547414],[-71.51037642,41.422503996],[-71.510249584,41.422435099],[-71.510135414,41.422337316],[-71.510131129,41.422330799],[-71.510080557,41.422254233],[-71.510076164,41.422138716],[-71.510022526,41.422080539],[-71.509924439,41.422036247],[-71.509779202,41.422040399],[-71.50962707,41.422061727],[-71.509479823,41.422035393],[-71.509373195,41.421966745],[-71.509300103,41.421843297],[-71.509278451,41.421719914],[-71.509292472,41.421602588],[-71.509356478,41.421504606],[-71.509389677,41.421427691],[-71.509344143,41.421303257],[-71.509328722,41.421187558],[-71.509288513,41.421108133],[-71.509186932,41.421056888],[-71.509118962,41.421052663],[-71.509071381,41.421049693],[-71.508892942,41.421092726],[-71.508753483,41.4211232],[-71.508600412,41.421145899],[-71.508437525,41.421157369],[-71.508278435,41.421164059],[-71.508108497,41.421162996],[-71.507954328,41.421157335],[-71.507769529,41.421128348],[-71.50761317,41.421098444],[-71.507447725,41.421066345],[-71.507288204,41.421019083],[-71.50711981,41.420957183],[-71.506952358,41.420895284],[-71.506797667,41.420837728],[-71.50664322,41.420771185],[-71.506507215,41.420700798],[-71.5063809,41.420611131],[-71.506323806,41.420572803],[-71.506259874,41.420529879],[-71.506105458,41.420461276],[-71.505966447,41.420400472],[-71.505862959,41.420389293],[-71.505697006,41.420412492],[-71.505540595,41.42045792],[-71.505415206,41.42051142],[-71.50532321,41.420588954],[-71.505312099,41.420700791],[-71.505309191,41.420814868],[-71.505324176,41.420875885],[-71.505361579,41.420884734],[-71.505430269,41.420785451],[-71.505501211,41.420740187],[-71.505581302,41.42073442],[-71.505717824,41.420820749],[-71.505847811,41.420873778],[-71.505988007,41.420923514],[-71.50604504,41.420954134],[-71.506123039,41.420996029],[-71.506284474,41.421041212],[-71.506442719,41.421103662],[-71.506545092,41.421196395],[-71.506649046,41.421298208],[-71.506674573,41.421342117],[-71.506630584,41.42140993],[-71.50649988,41.421491035],[-71.506397343,41.421586319],[-71.50632349,41.421708336],[-71.506305266,41.421774455],[-71.506355527,41.421821519],[-71.506524524,41.42182119],[-71.506597235,41.421831568],[-71.506643541,41.42183813],[-71.506660743,41.421883297],[-71.506624318,41.421942968],[-71.506493764,41.422019202],[-71.506338659,41.422086129],[-71.506158241,41.422136065],[-71.506019448,41.422174837],[-71.505860907,41.422232685],[-71.505699843,41.42227944],[-71.505562721,41.422324501],[-71.505463828,41.422421933],[-71.505369307,41.422489725],[-71.505346306,41.422484557],[-71.505251473,41.422463109],[-71.505275865,41.422370804],[-71.505390467,41.422272205],[-71.505492825,41.422184515],[-71.505559814,41.422079697],[-71.505535256,41.421997022],[-71.505461175,41.421949616],[-71.505311926,41.421930206],[-71.505158237,41.421868509],[-71.505034505,41.421785129],[-71.504912658,41.42170175],[-71.504797101,41.42162196],[-71.504675408,41.421566276],[-71.504662674,41.421525293],[-71.504714322,41.421445816],[-71.504693258,41.42133556],[-71.504752563,41.421279022],[-71.504875828,41.421237256],[-71.505039352,41.421199513],[-71.505139495,41.421163625],[-71.505127763,41.42111992],[-71.505051254,41.42109392],[-71.504908178,41.421121576],[-71.504803263,41.421129745],[-71.504787037,41.421115955],[-71.504740304,41.4210763],[-71.504779674,41.420973131],[-71.504815034,41.420883729],[-71.504791329,41.420805239],[-71.504697774,41.420763139],[-71.504537225,41.420754592],[-71.504384943,41.420782797],[-71.504238434,41.42080071],[-71.504069166,41.420809315],[-71.503917553,41.420847217],[-71.503892123,41.420872443],[-71.503945391,41.420945123],[-71.504015338,41.421010461],[-71.503993986,41.421127695],[-71.503974395,41.421247033],[-71.503976134,41.421359097],[-71.504066833,41.421403943],[-71.504199491,41.421411783],[-71.504221854,41.421413108],[-71.504334006,41.421481806],[-71.504405475,41.421561644],[-71.504398917,41.421637642],[-71.504256602,41.421706807],[-71.504152539,41.421752986],[-71.503992018,41.421744438],[-71.503865251,41.421672104],[-71.503770203,41.4215801],[-71.5037359,41.421592748],[-71.503747848,41.421700787],[-71.50376809,41.421806196],[-71.503726803,41.421912086],[-71.503752359,41.421955333],[-71.503906441,41.422001114],[-71.504060584,41.422043465],[-71.504156935,41.422084285],[-71.504198808,41.422134644],[-71.504159679,41.422228825],[-71.50406598,41.422335999],[-71.50404532,41.422357337],[-71.503973526,41.422431508],[-71.503897267,41.422539641],[-71.503829877,41.42258774],[-71.503808546,41.422576923],[-71.503786364,41.422565671],[-71.503785356,41.422461246],[-71.503867177,41.422387761],[-71.503874679,41.422344993],[-71.503914816,41.422319995],[-71.503952789,41.422200244],[-71.503924681,41.422150045],[-71.503770752,41.422133286],[-71.50373809,41.42215426],[-71.503734266,41.422231676],[-71.503257601,41.422371313],[-71.503132025,41.422432426],[-71.503025649,41.422461314],[-71.502920184,41.42245425],[-71.502858592,41.422383514],[-71.502805353,41.422274172],[-71.502757736,41.422160096],[-71.502702737,41.42208394],[-71.502575669,41.42209524],[-71.502426362,41.422150475],[-71.502345877,41.422244039],[-71.502310754,41.422288454],[-71.502154487,41.422291728],[-71.501991018,41.42229141],[-71.50182527,41.422269664],[-71.50168386,41.422230969],[-71.501559677,41.422166934],[-71.501461776,41.422079091],[-71.501401977,41.421975169],[-71.501379065,41.42186562],[-71.501382162,41.42174395],[-71.501400997,41.421619056],[-71.501387109,41.421515156],[-71.501313457,41.421449794],[-71.501168615,41.421402065],[-71.50099427,41.421359413],[-71.500850978,41.4213244],[-71.500831745,41.421319735],[-71.500703615,41.421264595],[-71.500585025,41.421197906],[-71.500460663,41.421139427],[-71.500336727,41.421064299],[-71.500258123,41.421012681],[-71.500213398,41.420965705],[-71.500189273,41.420867157],[-71.500258548,41.420781051],[-71.500279087,41.420661027],[-71.50028018,41.420617482],[-71.500281152,41.420579472],[-71.500191125,41.42047237],[-71.500113312,41.420355069],[-71.500055279,41.420253296],[-71.499949575,41.420148733],[-71.499868968,41.420032072],[-71.499809325,41.419921265],[-71.499804373,41.419791888],[-71.499810207,41.419671681],[-71.499843477,41.419555981],[-71.499896344,41.419428822],[-71.49994277,41.419302303],[-71.499991474,41.419194447],[-71.500043095,41.419079707],[-71.500125979,41.418963388],[-71.500160525,41.418869826],[-71.500159977,41.41874811],[-71.500135155,41.418712478],[-71.500049779,41.41871193],[-71.49993326,41.418777316],[-71.499797115,41.418820975],[-71.499618342,41.418807321],[-71.499455338,41.418787675],[-71.499306492,41.418752339],[-71.49915233,41.418711355],[-71.499003911,41.418660124],[-71.49890228,41.418646195],[-71.498753829,41.418668218],[-71.498577883,41.418651818],[-71.498419255,41.418604634],[-71.49826157,41.41855601],[-71.498111024,41.418517837],[-71.497971934,41.418460499],[-71.497844207,41.41839017],[-71.49773152,41.418307652],[-71.497653106,41.418213173],[-71.497603403,41.418146048],[-71.497584534,41.418164481],[-71.497584317,41.418280593],[-71.497621836,41.418393871],[-71.497657653,41.418500904],[-71.497703242,41.418944772],[-71.497714662,41.419071474],[-71.497734315,41.419200348],[-71.497762659,41.419312779],[-71.497784986,41.41944449],[-71.497819862,41.419554268],[-71.497877495,41.419670564],[-71.497955577,41.419778879],[-71.498063922,41.419852364],[-71.498223159,41.419910685],[-71.498366052,41.419926605],[-71.498502685,41.419972851],[-71.498644271,41.420039176],[-71.49875447,41.420111311],[-71.49883143,41.420227927],[-71.498878887,41.42034683],[-71.498923579,41.420466396],[-71.498972799,41.420589508],[-71.498987897,41.42071765],[-71.498984098,41.420830286],[-71.49895277,41.420941161],[-71.498907648,41.421052539],[-71.498856145,41.42116243],[-71.498817981,41.421289772],[-71.498739072,41.421393076],[-71.498636462,41.421490434],[-71.498529022,41.421596047],[-71.498437593,41.421686681],[-71.498326901,41.421775668],[-71.49817118,41.42183012],[-71.498008229,41.421843633],[-71.497842453,41.421824625],[-71.497703989,41.421885549],[-71.497658685,41.42193401],[-71.49765865,41.422042529],[-71.497683804,41.422171541],[-71.497751527,41.422288661],[-71.49784447,41.422390253],[-71.497937291,41.422496053],[-71.497996234,41.422597872],[-71.497994863,41.42272295],[-71.497932085,41.422843063],[-71.497876994,41.422948746],[-71.497829984,41.42306145],[-71.4978205,41.42318097],[-71.497837634,41.423301519],[-71.497863517,41.423438787],[-71.497859472,41.423559725],[-71.497846524,41.423670188],[-71.497818657,41.423790074],[-71.497801576,41.423919153],[-71.4977762,41.424048804],[-71.497774099,41.42416558],[-71.497869203,41.424254822],[-71.497976126,41.42434834],[-71.498060868,41.424447736],[-71.49811325,41.424554266],[-71.498157245,41.42466624],[-71.49822628,41.424730873],[-71.498393552,41.424764426],[-71.498544081,41.424806738],[-71.498677443,41.424870868],[-71.498796675,41.424950046],[-71.498906002,41.425021471],[-71.499024445,41.425096486],[-71.499157625,41.425168963],[-71.499284849,41.425259325],[-71.499371053,41.425373288],[-71.499416418,41.425502551],[-71.499489253,41.42560039],[-71.499566584,41.425701774],[-71.499615475,41.425801397],[-71.499634375,41.425922656],[-71.499725837,41.426011095],[-71.4998685,41.426072639],[-71.499988435,41.426124852],[-71.500003628,41.426212903],[-71.500020553,41.426306511],[-71.500096003,41.426408512],[-71.500078287,41.426454596],[-71.500010708,41.426475042],[-71.499923165,41.426449587],[-71.499791136,41.426366774],[-71.499643883,41.426340427],[-71.499468615,41.426333062],[-71.499276208,41.426348201],[-71.499272864,41.426479568],[-71.499368368,41.426480941],[-71.499426855,41.427281126],[-71.499330924,41.427296334],[-71.499352739,41.427555934],[-71.499767643,41.427498326],[-71.499762873,41.427397331],[-71.499822796,41.427389898],[-71.499853091,41.427498189],[-71.500292547,41.427414689],[-71.500347061,41.427438291],[-71.500404949,41.427545644],[-71.500383618,41.427625507],[-71.500267327,41.427717171],[-71.500130494,41.427786423],[-71.499991686,41.427826606],[-71.499972179,41.427831565],[-71.499540529,41.42821846],[-71.500717529,41.42789246],[-71.501312529,41.42772746],[-71.502319529,41.42744346],[-71.502590529,41.42737546],[-71.502937529,41.427299459],[-71.503444529,41.42719546],[-71.50364753,41.42715946],[-71.50455553,41.42703746],[-71.50507453,41.426987459],[-71.505684531,41.42694546],[-71.50623353,41.426934459],[-71.508499531,41.426968459],[-71.509163531,41.42698346],[-71.511139532,41.427029459],[-71.513459533,41.427099459],[-71.514030534,41.427117459],[-71.514641533,41.427132459],[-71.516975535,41.427197459],[-71.518623535,41.427235459],[-71.518776535,41.427231459],[-71.518825535,41.427439459],[-71.518840535,41.427503459],[-71.518906535,41.427528459],[-71.518999535,41.427572459],[-71.519030535,41.427592459],[-71.519104534,41.427666459],[-71.519180534,41.427864459],[-71.519157535,41.427887459],[-71.518600535,41.428769459],[-71.517349534,41.43071846],[-71.517326535,41.43074546],[-71.516899534,41.43140846],[-71.516602535,41.43183946],[-71.516403534,41.43215246],[-71.516167534,41.43248046],[-71.516037534,41.432679461],[-71.515961534,41.43278046],[-71.515855534,41.43288146],[-71.515770534,41.433148461],[-71.515541534,41.433514461],[-71.515221534,41.434060461],[-71.514809534,41.434700461],[-71.516876535,41.43555146],[-71.517479535,41.43580346],[-71.518044535,41.436001461],[-71.518112535,41.436131461],[-71.518356535,41.436669461],[-71.518799535,41.437619461],[-71.518929535,41.437867462],[-71.519073535,41.438168461],[-71.519211536,41.438477461],[-71.519234536,41.438527462],[-71.519440535,41.438904461],[-71.519539536,41.439068461],[-71.519783536,41.439381461],[-71.520119536,41.439698462],[-71.520348536,41.439900461],[-71.520615536,41.440125462],[-71.520813536,41.440285462],[-71.521049536,41.440514462],[-71.521111536,41.440602461],[-71.521271536,41.440972461],[-71.521339536,41.441132462],[-71.521652537,41.441769461],[-71.521904537,41.442231462],[-71.522308537,41.443024462],[-71.522461537,41.443306462],[-71.522598537,41.443596462],[-71.523026537,41.444409462],[-71.523972538,41.446316462],[-71.524147538,41.446640463],[-71.524727538,41.447510463],[-71.525322538,41.448346463],[-71.525459538,41.448532463],[-71.525787538,41.449025463],[-71.526587539,41.450212464],[-71.527030539,41.450862463],[-71.527336539,41.451310463],[-71.527664539,41.451908464],[-71.527672539,41.451908464],[-71.527692539,41.451946464],[-71.527786539,41.452118464],[-71.527832539,41.452214464],[-71.527924539,41.452492464],[-71.527939539,41.452572464],[-71.527946539,41.452603464],[-71.527946539,41.452668464],[-71.527954539,41.452736464],[-71.528076539,41.453312464],[-71.528128539,41.453586464],[-71.52863654,41.453576464],[-71.52861854,41.453831464]]]]}}"}, +{"type": "precinct", "typeId": 3209, "areaId": 26026, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":365,\"NAME\":\"3209\",\"SHAPE_Length\":0.50447548017221,\"SHAPE_Area\":0.0017953286455653},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.614218563,41.393435448],[-71.614135563,41.393675447],[-71.613769561,41.394731447],[-71.60907355,41.407940447],[-71.608918577,41.40823245],[-71.60760656,41.412009448],[-71.60722056,41.413359448],[-71.607170552,41.413500458],[-71.606949568,41.41340746],[-71.60643056,41.41320546],[-71.606008559,41.413001448],[-71.605591565,41.412743449],[-71.605347574,41.412602454],[-71.605202556,41.412548453],[-71.605095565,41.412533447],[-71.604965568,41.412537456],[-71.604843557,41.412556455],[-71.604401559,41.412648454],[-71.603951573,41.412732452],[-71.603607565,41.412785456],[-71.603271574,41.412827447],[-71.602921575,41.412842453],[-71.602310568,41.412800461],[-71.601456553,41.412705451],[-71.600868553,41.412625447],[-71.600426555,41.412510455],[-71.599983573,41.412365451],[-71.599640548,41.412262455],[-71.599335551,41.412129447],[-71.598969549,41.411908448],[-71.598618567,41.411679447],[-71.598419547,41.411538452],[-71.597900569,41.411122456],[-71.597549558,41.410870448],[-71.597206563,41.410664454],[-71.596588552,41.410363451],[-71.596489549,41.410305455],[-71.596489549,41.41050446],[-71.596611559,41.410714447],[-71.59684056,41.410965458],[-71.597205549,41.411272451],[-71.597488552,41.41149646],[-71.597656548,41.411702454],[-71.597771555,41.411812454],[-71.597832561,41.411908448],[-71.597847551,41.411995456],[-71.597839564,41.412079453],[-71.597786546,41.41218245],[-71.597557545,41.41256845],[-71.597343564,41.412754461],[-71.596886545,41.413002461],[-71.596413553,41.413235456],[-71.596001565,41.413399458],[-71.59583357,41.413487449],[-71.595757574,41.41356346],[-71.595512569,41.413868457],[-71.595413566,41.413945451],[-71.59505555,41.414132461],[-71.594276547,41.414444461],[-71.594002545,41.414528459],[-71.593361557,41.41479145],[-71.592934549,41.414978459],[-71.592537552,41.415173456],[-71.59209457,41.415337458],[-71.591843545,41.415440455],[-71.591766566,41.415486455],[-71.591637552,41.415589452],[-71.591530561,41.415696457],[-71.591431558,41.415776461],[-71.59130156,41.415837452],[-71.59119457,41.415871456],[-71.591103554,41.415890455],[-71.590721548,41.415951461],[-71.589615554,41.416092455],[-71.589211553,41.416115448],[-71.588570565,41.416119456],[-71.587555557,41.416096449],[-71.58714357,41.416111454],[-71.586967558,41.416127458],[-71.586746544,41.416165456],[-71.586411566,41.416249454],[-71.586037546,41.416356459],[-71.585892558,41.416386455],[-71.585793555,41.416390449],[-71.585678548,41.416382462],[-71.585304558,41.416336462],[-71.585175544,41.416336462],[-71.585014552,41.416348457],[-71.584793568,41.41637145],[-71.584435552,41.41641745],[-71.584190547,41.416443452],[-71.584007561,41.416447461],[-71.583908558,41.416455448],[-71.583725542,41.41648145],[-71.583611548,41.416508451],[-71.58338955,41.416550457],[-71.583168566,41.416584462],[-71.583061546,41.416596457],[-71.582909554,41.416603461],[-71.582710564,41.416592449],[-71.58247456,41.41657345],[-71.582176566,41.416558459],[-71.582008541,41.41651246],[-71.581635565,41.416436449],[-71.581467569,41.416413456],[-71.581306547,41.416401461],[-71.581177562,41.416405454],[-71.580856562,41.416443452],[-71.580605567,41.416439459],[-71.580494553,41.416428462],[-71.580452561,41.416424453],[-71.580231547,41.416386455],[-71.580040544,41.416363448],[-71.579773545,41.416352451],[-71.579483569,41.416348457],[-71.578903556,41.416310459],[-71.578064561,41.416283458],[-71.577003539,41.41627945],[-71.576859564,41.416272461],[-71.576691568,41.416253462],[-71.57654655,41.416222453],[-71.576385558,41.416176453],[-71.576241553,41.416153461],[-71.576057553,41.416157454],[-71.575821549,41.41617246],[-71.575531542,41.416165456],[-71.574814558,41.416108459],[-71.574654549,41.416085452],[-71.574539542,41.41604346],[-71.574219555,41.415894449],[-71.57408154,41.415856451],[-71.573959559,41.41582945],[-71.573807538,41.415810451],[-71.573433548,41.415810451],[-71.573235542,41.415806457],[-71.57289955,41.415810451],[-71.572571546,41.415825456],[-71.572342545,41.415825456],[-71.572075546,41.415833458],[-71.57181555,41.41582945],[-71.571548551,41.415818453],[-71.571327537,41.415787458],[-71.571106553,41.415738449],[-71.570587546,41.415635452],[-71.570358545,41.415562451],[-71.569984555,41.415409461],[-71.569719553,41.415308461],[-71.569618553,41.415364459],[-71.569489539,41.415429458],[-71.568855554,41.415776461],[-71.568001539,41.41629146],[-71.567451537,41.416459456],[-71.566963553,41.416623458],[-71.566734552,41.416726455],[-71.566574544,41.416882455],[-71.566208541,41.417076454],[-71.565887541,41.417313457],[-71.565735549,41.417443454],[-71.565552562,41.417546451],[-71.564941555,41.417931452],[-71.564735562,41.417988449],[-71.564575553,41.418042451],[-71.564247549,41.418114454],[-71.564026535,41.41821745],[-71.563843548,41.418282449],[-71.56320256,41.418751463],[-71.56261456,41.419075459],[-71.56222555,41.419190452],[-71.56222555,41.419239461],[-71.562096536,41.420880452],[-71.562004536,41.421952456],[-71.56192854,41.423001453],[-71.561851561,41.423939452],[-71.561836541,41.424027458],[-71.561826557,41.424125463],[-71.56173256,41.424109459],[-71.561482549,41.424111456],[-71.56140554,41.424105451],[-71.561237544,41.424107462],[-71.561069548,41.424120456],[-71.560887545,41.424121454],[-71.560807556,41.424110457],[-71.560744554,41.424083456],[-71.560667545,41.424063459],[-71.560594559,41.42405045],[-71.560453534,41.424011454],[-71.560365558,41.424003452],[-71.560265541,41.424003452],[-71.560082555,41.423976451],[-71.559899539,41.423970461],[-71.559810549,41.423951462],[-71.559737533,41.42394346],[-71.559578538,41.423937455],[-71.559339553,41.423878461],[-71.559260547,41.423866451],[-71.559083551,41.423896462],[-71.558903545,41.42389445],[-71.558751553,41.423876464],[-71.558674544,41.423875451],[-71.558594555,41.423869461],[-71.558430552,41.423865452],[-71.558356553,41.423847452],[-71.558300555,41.423824459],[-71.558124542,41.423860461],[-71.558040559,41.423886463],[-71.55796355,41.423903465],[-71.557872534,41.423889458],[-71.557783544,41.423883453],[-71.557701558,41.42389746],[-71.557551533,41.423938453],[-71.557513535,41.423967451],[-71.557502538,41.424014464],[-71.557447553,41.424051464],[-71.557379544,41.424046457],[-71.557302535,41.424018458],[-71.557227552,41.424018458],[-71.557145536,41.424033463],[-71.55706656,41.424039453],[-71.557002544,41.424020454],[-71.55696255,41.423971459],[-71.556929559,41.423921451],[-71.556902558,41.423865452],[-71.556834549,41.423827454],[-71.556741536,41.423836455],[-71.556656539,41.423850462],[-71.556574553,41.423871458],[-71.556302547,41.423975453],[-71.556221545,41.423984453],[-71.556134552,41.424002454],[-71.55607155,41.424051464],[-71.556042552,41.424106464],[-71.555995554,41.424152464],[-71.555920541,41.424177453],[-71.555843532,41.424192458],[-71.555770546,41.424183458],[-71.555696547,41.424183458],[-71.555620551,41.424199462],[-71.555547535,41.424224451],[-71.555383533,41.424223453],[-71.555305541,41.424233451],[-71.555261552,41.424287453],[-71.555187553,41.424323454],[-71.555098534,41.424320459],[-71.555015534,41.424279451],[-71.55490455,41.424175456],[-71.554844558,41.424137458],[-71.554762542,41.42412746],[-71.554671556,41.424137458],[-71.554508537,41.42413646],[-71.554439545,41.424167454],[-71.55438754,41.424213454],[-71.554325551,41.424232453],[-71.554250538,41.424203455],[-71.554173559,41.424166456],[-71.554083556,41.424160451],[-71.553999543,41.424148455],[-71.553959548,41.424093455],[-71.553958535,41.424027458],[-71.553943545,41.42399846],[-71.553863555,41.423992455],[-71.553690553,41.423993453],[-71.55369556,41.424083456],[-71.553666532,41.424112454],[-71.553594559,41.424114451],[-71.553501546,41.424094453],[-71.55340156,41.424064457],[-71.553253531,41.424026459],[-71.553151548,41.424027458],[-71.553055555,41.424058452],[-71.552993536,41.424089462],[-71.552933544,41.42412746],[-71.552880555,41.424172461],[-71.552851558,41.424226463],[-71.552850544,41.424394459],[-71.552856535,41.424469456],[-71.552896559,41.424528465],[-71.552952558,41.424576461],[-71.553010553,41.424611464],[-71.553079545,41.424610451],[-71.553157538,41.424572453],[-71.553233534,41.424559459],[-71.553307533,41.42458646],[-71.553368539,41.424630463],[-71.553480536,41.424732462],[-71.55349955,41.424796462],[-71.553504556,41.425189465],[-71.55349955,41.425296456],[-71.553475559,41.425459459],[-71.553472549,41.425573453],[-71.553466558,41.425630465],[-71.553448558,41.42568846],[-71.55341354,41.425745457],[-71.553360552,41.425793454],[-71.553136557,41.425919458],[-71.553040534,41.425960451],[-71.552836537,41.426033452],[-71.552520543,41.426159456],[-71.552252561,41.426283464],[-71.552151561,41.426324457],[-71.55203855,41.42635946],[-71.551814556,41.426411465],[-71.551706553,41.426426455],[-71.551599532,41.426429465],[-71.551391542,41.426422462],[-71.551296532,41.426410452],[-71.551218539,41.426390454],[-71.550914556,41.426298454],[-71.550616533,41.426184461],[-71.55045554,41.42612946],[-71.550301552,41.426071465],[-71.550122559,41.426014453],[-71.550020546,41.425987452],[-71.549749553,41.425938457],[-71.549674541,41.425921455],[-71.549578547,41.425905451],[-71.549482554,41.425922453],[-71.549395531,41.425965458],[-71.549305558,41.425991461],[-71.549207538,41.425991461],[-71.549078554,41.425985456],[-71.549005538,41.425976455],[-71.548831552,41.425943464],[-71.54866156,41.425925463],[-71.54834953,41.42586346],[-71.548252553,41.425837457],[-71.548176557,41.425795451],[-71.548036546,41.425739452],[-71.547980547,41.425706461],[-71.547965556,41.425657451],[-71.54796055,41.425642461],[-71.54796055,41.425519451],[-71.547980547,41.425472453],[-71.54806453,41.425434455],[-71.548150539,41.425408453],[-71.548243552,41.425374463],[-71.548311532,41.425342456],[-71.54837653,41.425304458],[-71.548425555,41.425261453],[-71.548528552,41.425152451],[-71.54855454,41.425088465],[-71.548540533,41.42501846],[-71.54847455,41.424959451],[-71.548399538,41.424932465],[-71.548324555,41.424910456],[-71.548253536,41.42487146],[-71.548217535,41.424824461],[-71.548197538,41.424764454],[-71.548195541,41.424692452],[-71.54817453,41.424611464],[-71.548155546,41.424487457],[-71.548093557,41.424318463],[-71.548081547,41.424258456],[-71.548080534,41.42412746],[-71.548113555,41.424064457],[-71.548224539,41.423970461],[-71.548277557,41.423913464],[-71.548432559,41.423679456],[-71.54847154,41.423631459],[-71.548506558,41.423564464],[-71.548533559,41.423491463],[-71.548564553,41.423425451],[-71.548669547,41.423314452],[-71.548682541,41.423237458],[-71.548681557,41.423173457],[-71.54867053,41.42310746],[-71.548646539,41.42304346],[-71.548574537,41.422927454],[-71.548519552,41.422889456],[-71.548445553,41.422880456],[-71.548359543,41.422898456],[-71.548282534,41.422932461],[-71.548217535,41.422971457],[-71.548112541,41.42305845],[-71.547895551,41.423197463],[-71.547831535,41.423224464],[-71.547758549,41.423233464],[-71.547741532,41.423233464],[-71.547197551,41.423836455],[-71.546737552,41.423647463],[-71.546673536,41.423569456],[-71.546561539,41.423405454],[-71.54649654,41.423281461],[-71.546391547,41.423137456],[-71.546045542,41.423117459],[-71.545938551,41.42314446],[-71.545830548,41.423134461],[-71.545626551,41.423149452],[-71.545464545,41.423237458],[-71.54548654,41.423195451],[-71.545494556,41.423142463],[-71.545494556,41.422840461],[-71.545502543,41.42274946],[-71.545517534,41.42265746],[-71.545532554,41.422459453],[-71.545532554,41.422329456],[-71.545517534,41.422184452],[-71.545502543,41.422093451],[-71.545479536,41.42200546],[-71.545441538,41.421795458],[-71.545395553,41.421456456],[-71.545380533,41.421242461],[-71.545364529,41.421173453],[-71.545357555,41.421105459],[-71.545341551,41.421036452],[-71.545341551,41.420990452],[-71.545334548,41.420941457],[-71.545341551,41.420891464],[-71.545357555,41.42083846],[-71.545411557,41.420735464],[-71.545425534,41.420708463],[-71.545471549,41.420651451],[-71.545509547,41.420586452],[-71.545540541,41.420521453],[-71.545609534,41.420407459],[-71.54568553,41.420319453],[-71.545769542,41.420250461],[-71.545822531,41.420224458],[-71.545883536,41.420205459],[-71.545952529,41.420189455],[-71.546013534,41.420170456],[-71.546097547,41.420132458],[-71.546211541,41.420060456],[-71.546242535,41.420033455],[-71.546259552,41.420015454],[-71.546280533,41.419991463],[-71.546341538,41.419896454],[-71.546356529,41.419842452],[-71.546394557,41.419609457],[-71.546466529,41.419377461],[-71.546486557,41.419312462],[-71.546539545,41.41910246],[-71.546547532,41.419045463],[-71.546562552,41.418984458],[-71.546570539,41.418927461],[-71.546570539,41.418774456],[-71.546539545,41.418656453],[-71.546516538,41.418595463],[-71.546486557,41.41846545],[-71.546432555,41.418328449],[-71.546394557,41.41826345],[-71.546242535,41.418370456],[-71.546158552,41.418423459],[-71.546021551,41.418522462],[-71.545906544,41.418591455],[-71.545799553,41.418648452],[-71.545708537,41.418682456],[-71.545654535,41.418690458],[-71.545540541,41.41868645],[-71.545479536,41.418671459],[-71.545425534,41.41865246],[-71.545364529,41.418637455],[-71.545303553,41.418633461],[-71.54518953,41.418637455],[-71.545135558,41.418648452],[-71.544998556,41.418702453],[-71.544983536,41.418705463],[-71.544807553,41.418782458],[-71.544662535,41.418839455],[-71.544472545,41.418896452],[-71.544418544,41.418908462],[-71.544312537,41.418919459],[-71.544250548,41.418919459],[-71.544189543,41.418911457],[-71.544136554,41.418896452],[-71.544090539,41.418869451],[-71.543976545,41.418774456],[-71.543900549,41.418717459],[-71.543663532,41.418572456],[-71.543243557,41.418305457],[-71.543190539,41.41824846],[-71.543182552,41.41820246],[-71.543159544,41.41815646],[-71.543098539,41.418118462],[-71.54303053,41.418084458],[-71.542946547,41.418049455],[-71.542770535,41.418023452],[-71.542496532,41.41801545],[-71.542366534,41.417992458],[-71.542297542,41.417958453],[-71.542252541,41.417931452],[-71.541588545,41.417261451],[-71.540321529,41.416054457],[-71.539604545,41.415554449],[-71.539482534,41.415398449],[-71.539462537,41.415329456],[-71.539452553,41.415249452],[-71.539471537,41.415196449],[-71.539518535,41.415128455],[-71.539593548,41.415067449],[-71.539605528,41.415008456],[-71.539583534,41.414968461],[-71.539518535,41.414952457],[-71.539449543,41.414982453],[-71.53935653,41.415043458],[-71.539247543,41.41509746],[-71.539148539,41.415125459],[-71.538971543,41.415139452],[-71.538727552,41.415108457],[-71.538452536,41.414952457],[-71.538086534,41.414841458],[-71.537956536,41.414750457],[-71.537910551,41.414685458],[-71.537804544,41.414612457],[-71.537590533,41.414559454],[-71.537331551,41.414544463],[-71.537209541,41.414494455],[-71.53710255,41.414410457],[-71.537018538,41.41430746],[-71.536880553,41.414231449],[-71.536674529,41.414173454],[-71.53649953,41.414166451],[-71.536415547,41.414128453],[-71.536324531,41.414036453],[-71.536240548,41.413926452],[-71.53609553,41.413792461],[-71.535973549,41.413712457],[-71.535927534,41.413651451],[-71.535667539,41.413479462],[-71.53540054,41.41331546],[-71.535072535,41.413235456],[-71.534912527,41.41320546],[-71.53472954,41.413151458],[-71.534637541,41.413063452],[-71.534477532,41.41297245],[-71.534355551,41.412735462],[-71.534355551,41.412609458],[-71.534363538,41.412503451],[-71.534477532,41.412362456],[-71.534523547,41.412289456],[-71.534424543,41.41216746],[-71.534339547,41.412133455],[-71.534187526,41.41207245],[-71.534081548,41.411991462],[-71.534042537,41.411915451],[-71.534035534,41.411843449],[-71.53393653,41.41174446],[-71.533859551,41.411564454],[-71.533745527,41.411446452],[-71.533600539,41.411148459],[-71.533501536,41.411053449],[-71.533546537,41.410977453],[-71.533379525,41.411011457],[-71.533279538,41.411011457],[-71.533165544,41.411019459],[-71.533020526,41.411023453],[-71.532913536,41.411015451],[-71.532845527,41.41098845],[-71.532410532,41.410721451],[-71.532242537,41.410653457],[-71.532135546,41.410618454],[-71.532112539,41.41067946],[-71.532021552,41.410817459],[-71.531883538,41.410962462],[-71.531715542,41.411122456],[-71.531616539,41.411232457],[-71.53156355,41.411354452],[-71.53145653,41.411679462],[-71.531326532,41.412045449],[-71.531235546,41.412335455],[-71.531167537,41.412293449],[-71.531041533,41.412214458],[-71.531023532,41.412203461],[-71.530789524,41.412058458],[-71.530881524,41.41179046],[-71.530812532,41.411739454],[-71.530922532,41.411534458],[-71.531044543,41.411316454],[-71.531303525,41.410561457],[-71.531532526,41.409905449],[-71.532033533,41.408366457],[-71.532066524,41.408265457],[-71.532303542,41.407494456],[-71.532364547,41.407318458],[-71.532608539,41.406575456],[-71.532631546,41.406521454],[-71.532761544,41.40613246],[-71.532921553,41.405732453],[-71.533066541,41.40534246],[-71.533089548,41.405275449],[-71.533144534,41.405117452],[-71.533371538,41.404461458],[-71.533386528,41.404408455],[-71.533531547,41.403962448],[-71.533531547,41.403942451],[-71.533607543,41.403702453],[-71.533699542,41.403485447],[-71.533852547,41.403210461],[-71.534073532,41.402863458],[-71.534363538,41.402542457],[-71.534409553,41.402493447],[-71.534737527,41.402184457],[-71.535149544,41.401863456],[-71.535208553,41.401828453],[-71.535461545,41.401680455],[-71.535713553,41.40153946],[-71.535873532,41.401451454],[-71.536064535,41.401360452],[-71.536446542,41.401207447],[-71.536515534,41.401183456],[-71.536964536,41.401028454],[-71.537628531,41.400814459],[-71.538132548,41.400662452],[-71.538490534,41.400559455],[-71.53915453,41.400349453],[-71.539520532,41.400238454],[-71.540237546,41.399998456],[-71.540817529,41.399784446],[-71.541502535,41.399504453],[-71.541580528,41.39947246],[-71.542885542,41.39883846],[-71.543762535,41.398426458],[-71.543945551,41.398350447],[-71.544060528,41.398297459],[-71.544357538,41.398194447],[-71.545090556,41.397950456],[-71.545540541,41.397816449],[-71.545906544,41.397713453],[-71.546440542,41.397591457],[-71.546753556,41.397530451],[-71.546837538,41.397519454],[-71.54708153,41.397477448],[-71.547440529,41.397423446],[-71.547951549,41.397362456],[-71.548317552,41.397324458],[-71.548767537,41.397297457],[-71.549202532,41.397293448],[-71.549637556,41.397282451],[-71.549706548,41.397282451],[-71.550148547,41.397282451],[-71.551414549,41.397271454],[-71.551783532,41.397274449],[-71.552125543,41.397269458],[-71.552246541,41.397267446],[-71.552772552,41.397238448],[-71.553070545,41.397221446],[-71.553387552,41.397194445],[-71.553474545,41.397187456],[-71.554293543,41.397098452],[-71.554420531,41.397084445],[-71.555046558,41.397011459],[-71.555336535,41.396965459],[-71.555763543,41.396885455],[-71.555923551,41.39685145],[-71.556206554,41.396798447],[-71.556633532,41.396702453],[-71.556938559,41.396645457],[-71.557365537,41.396580458],[-71.557816535,41.396523446],[-71.558258533,41.396473452],[-71.558922559,41.396424457],[-71.55934155,41.39640145],[-71.559372544,41.396397457],[-71.559792548,41.396370456],[-71.560573548,41.396341458],[-71.560913533,41.396328449],[-71.561409533,41.396317452],[-71.561436534,41.396315455],[-71.562119544,41.39626345],[-71.562279552,41.396252453],[-71.562782556,41.39619945],[-71.563324541,41.396134451],[-71.564575553,41.395955458],[-71.56518656,41.395871446],[-71.565857559,41.395787448],[-71.566513538,41.395699456],[-71.568321556,41.395459458],[-71.568900555,41.395382449],[-71.570396543,41.395184457],[-71.571037561,41.395104453],[-71.571068555,41.395096451],[-71.571457565,41.395046458],[-71.572769552,41.394883454],[-71.573463559,41.394814447],[-71.573807538,41.394791454],[-71.574471563,41.394772455],[-71.574570537,41.394768447],[-71.575008541,41.394777447],[-71.575530559,41.394787446],[-71.576141566,41.394799456],[-71.576279551,41.394806445],[-71.576622546,41.394825444],[-71.576937556,41.394851446],[-71.57783556,41.394925445],[-71.57910955,41.395008445],[-71.57972756,41.395054445],[-71.580666542,41.39511545],[-71.581245542,41.395150453],[-71.581841558,41.395199448],[-71.58287856,41.395272449],[-71.583840549,41.395335451],[-71.585151553,41.395427451],[-71.585770547,41.395470455],[-71.586051553,41.395488456],[-71.586662561,41.395527452],[-71.587402552,41.395562455],[-71.587738544,41.395577446],[-71.588211566,41.395581454],[-71.58841756,41.395577446],[-71.588562548,41.395573452],[-71.589035571,41.395550445],[-71.589714557,41.395504445],[-71.590302557,41.39545545],[-71.591198564,41.395355448],[-71.592087567,41.395256445],[-71.593224555,41.395127445],[-71.59386456,41.395058453],[-71.594365567,41.39502345],[-71.594681561,41.395001456],[-71.595085561,41.394982457],[-71.595604569,41.394966453],[-71.596146554,41.394966453],[-71.596662551,41.39497745],[-71.597004563,41.394988447],[-71.59721756,41.395001456],[-71.597402573,41.395013452],[-71.597604573,41.395024449],[-71.597778559,41.395039454],[-71.59851855,41.395119458],[-71.599968553,41.395283446],[-71.600838572,41.39536345],[-71.601028562,41.395377457],[-71.601175547,41.395389453],[-71.601547569,41.395417452],[-71.602356553,41.395459443],[-71.602982551,41.395462453],[-71.603622556,41.395447448],[-71.604415566,41.395403445],[-71.604904562,41.39536345],[-71.60543856,41.395310447],[-71.60591957,41.395256445],[-71.606400549,41.395180449],[-71.607368559,41.39500545],[-71.608017564,41.394879445],[-71.60858956,41.394753456],[-71.60880357,41.39471145],[-71.609810561,41.394524455],[-71.610603571,41.394368455],[-71.611290574,41.394242451],[-71.61166355,41.394164443],[-71.61186257,41.39412345],[-71.612297565,41.394020453],[-71.613388568,41.393715456],[-71.613892555,41.393555447],[-71.614067554,41.393490449],[-71.614218563,41.393435448]]],[[[-71.523065239,41.386283293],[-71.522915423,41.3863125],[-71.522972584,41.386299178],[-71.523065239,41.386283293]]],[[[-71.523187965,41.386262208],[-71.523153543,41.386277452],[-71.523094058,41.386280984],[-71.523153782,41.386277094],[-71.523187965,41.386262208]]],[[[-71.522483826,41.386235595],[-71.522564471,41.38627325],[-71.52258718,41.386281073],[-71.52256453,41.386273444],[-71.522483826,41.386235595]]],[[[-71.523339868,41.386169121],[-71.523260087,41.38624987],[-71.523289651,41.386218011],[-71.523339868,41.386169121]]],[[[-71.521759748,41.386155173],[-71.52175954,41.386155456],[-71.521734864,41.38616778],[-71.521759748,41.386155173]]],[[[-71.526347756,41.386124507],[-71.526361495,41.386128068],[-71.526390523,41.386138439],[-71.526361525,41.386128455],[-71.526347756,41.386124507]]],[[[-71.521299481,41.38610816],[-71.521377027,41.38611716],[-71.521413714,41.38613449],[-71.52137652,41.386117458],[-71.521299541,41.386108458],[-71.521225542,41.386127457],[-71.521155536,41.386153445],[-71.521063536,41.386158451],[-71.521054089,41.386154756],[-71.521063119,41.38615799],[-71.521155387,41.386153042],[-71.52122584,41.38612707],[-71.521299481,41.38610816]]],[[[-71.521822423,41.386078939],[-71.521794528,41.386107445],[-71.521773517,41.386136279],[-71.52179423,41.386107683],[-71.521822423,41.386078939]]],[[[-71.526146531,41.386066884],[-71.52621299,41.386084795],[-71.526239514,41.386093512],[-71.526146531,41.386066884]]],[[[-71.525936306,41.386061817],[-71.525959611,41.386063039],[-71.525989175,41.386063457],[-71.525959522,41.386063457],[-71.525936306,41.386061817]]],[[[-71.52190879,41.386041179],[-71.521953434,41.386051565],[-71.521908522,41.386041448],[-71.521881461,41.386049569],[-71.52190879,41.386041179]]],[[[-71.520682156,41.38601166],[-71.520723164,41.386024997],[-71.520815164,41.386060268],[-71.520867437,41.38608174],[-71.520723522,41.386025444],[-71.520682156,41.38601166]]],[[[-71.523411065,41.386007607],[-71.523369521,41.386041448],[-71.523371607,41.386068702],[-71.523369312,41.38604103],[-71.523411065,41.386007607]]],[[[-71.522106171,41.385994345],[-71.522179842,41.386001259],[-71.522210211,41.386026844],[-71.522179544,41.386001453],[-71.522106528,41.385994449],[-71.522032529,41.386016458],[-71.521979541,41.386057451],[-71.521979243,41.386057392],[-71.522032708,41.38601613],[-71.522106171,41.385994345]]],[[[-71.524078757,41.385950223],[-71.524110615,41.385957584],[-71.524078548,41.385950446],[-71.523923546,41.385962456],[-71.523919314,41.385962009],[-71.523923874,41.385962367],[-71.524000853,41.385956302],[-71.524078757,41.385950223]]],[[[-71.52374801,41.385946572],[-71.523594528,41.385958448],[-71.523554295,41.385965735],[-71.523594826,41.385958344],[-71.523689747,41.385949045],[-71.52374801,41.385946572]]],[[[-71.520377517,41.385931194],[-71.520447403,41.385946527],[-71.520535946,41.385968238],[-71.520617515,41.385991201],[-71.520377517,41.385931194]]],[[[-71.52015385,41.385901541],[-71.520215511,41.385918081],[-71.520220309,41.385917932],[-71.520246029,41.385920614],[-71.520215541,41.385918453],[-71.52015385,41.385901541]]],[[[-71.524356157,41.385854959],[-71.524333537,41.385878444],[-71.524304837,41.385892466],[-71.524333298,41.385878369],[-71.524356157,41.385854959]]],[[[-71.524335057,41.385804132],[-71.524352521,41.385829449],[-71.524355948,41.385840163],[-71.524352312,41.385829866],[-71.524335057,41.385804132]]],[[[-71.51995334,41.385789201],[-71.520015538,41.385827839],[-71.520085126,41.385875061],[-71.52015385,41.385901541],[-71.520153522,41.385901451],[-71.520085543,41.385875449],[-71.51995334,41.385789201]]],[[[-71.519369751,41.385781512],[-71.519328535,41.385801449],[-71.519191831,41.385882229],[-71.519253552,41.385844439],[-71.519328058,41.385801092],[-71.519369751,41.385781512]]],[[[-71.524325401,41.38576293],[-71.52431488,41.385774091],[-71.524314791,41.385773972],[-71.524325401,41.38576293]]],[[[-71.524537772,41.385730341],[-71.524582893,41.38573198],[-71.52465561,41.385738939],[-71.524738908,41.385746375],[-71.524816573,41.385758266],[-71.524903208,41.385779276],[-71.52497381,41.385804236],[-71.525028944,41.385848224],[-71.525091708,41.385891318],[-71.525165588,41.385926962],[-71.525240213,41.385957539],[-71.525311023,41.385987535],[-71.525372237,41.386016294],[-71.525449455,41.386040375],[-71.52553317,41.386059299],[-71.525608867,41.386069059],[-71.525682449,41.386073142],[-71.525756359,41.386062831],[-71.525831342,41.386053964],[-71.525864959,41.386056796],[-71.525831521,41.386054456],[-71.525682539,41.386073455],[-71.52560854,41.386069447],[-71.525533527,41.386059448],[-71.525449544,41.386040449],[-71.525372535,41.386016443],[-71.525165528,41.385927454],[-71.525091529,41.385891452],[-71.525056541,41.385867447],[-71.525028527,41.385848448],[-71.524973541,41.385804445],[-71.524903536,41.385779455],[-71.524816543,41.385758445],[-71.52473852,41.385746449],[-71.524582535,41.385732457],[-71.524537772,41.385730341]]],[[[-71.519470096,41.385719538],[-71.519452542,41.385735452],[-71.519413322,41.385758206],[-71.519452214,41.38573508],[-71.519470096,41.385719538]]],[[[-71.519730061,41.385680452],[-71.519785672,41.385705978],[-71.519859672,41.385751501],[-71.519859523,41.385751456],[-71.519785523,41.385706455],[-71.519730061,41.385680452]]],[[[-71.519650578,41.385665223],[-71.519700527,41.385673195],[-71.519650519,41.385665447],[-71.519577533,41.385674447],[-71.519530773,41.385683551],[-71.519577533,41.385674089],[-71.519650578,41.385665223]]],[[[-71.518628776,41.38091208],[-71.518632382,41.380918041],[-71.518676668,41.380986437],[-71.518721998,41.381044775],[-71.518781722,41.381088108],[-71.518833816,41.381131396],[-71.51883927,41.381166592],[-71.518866509,41.381216988],[-71.518903196,41.381284609],[-71.518923551,41.38136296],[-71.518943101,41.381429076],[-71.518956035,41.381482244],[-71.518959314,41.381550476],[-71.518973172,41.38161011],[-71.518995434,41.381691352],[-71.51902163,41.381758943],[-71.519060165,41.381825864],[-71.519105375,41.381894261],[-71.519155502,41.381950483],[-71.519210279,41.382016063],[-71.519250929,41.382064298],[-71.519287676,41.382116869],[-71.519313961,41.382173702],[-71.519342124,41.382228374],[-71.519395024,41.382295385],[-71.51946044,41.382339463],[-71.519506633,41.382405683],[-71.519523501,41.382465586],[-71.519534349,41.382520676],[-71.519538552,41.382597521],[-71.519542843,41.382660016],[-71.519528031,41.382730991],[-71.519508541,41.382786199],[-71.519520491,41.382846564],[-71.519502282,41.382860839],[-71.519425213,41.38283971],[-71.519345313,41.38281779],[-71.519274622,41.382836178],[-71.519267678,41.38287206],[-71.519316912,41.382915348],[-71.519381523,41.382943615],[-71.519418627,41.382954523],[-71.519489795,41.383000046],[-71.519556165,41.383042008],[-71.519597709,41.383093864],[-71.519598126,41.383167103],[-71.519590855,41.383246049],[-71.519569367,41.383309841],[-71.519543171,41.383372158],[-71.519547403,41.383446127],[-71.519540161,41.383521482],[-71.519523442,41.383588195],[-71.519517273,41.38364774],[-71.519525468,41.383701637],[-71.519543082,41.383761987],[-71.51955983,41.383818775],[-71.519580305,41.383885637],[-71.519597918,41.383951738],[-71.519628823,41.384018645],[-71.519663662,41.384076238],[-71.519715697,41.384128869],[-71.519762039,41.384176463],[-71.519804597,41.384221867],[-71.519843221,41.384285897],[-71.519879997,41.384337783],[-71.519940645,41.384383261],[-71.519944042,41.38444072],[-71.520024031,41.384451821],[-71.520107895,41.384450018],[-71.520164013,41.384468213],[-71.520183593,41.384526461],[-71.520180225,41.384593219],[-71.520162582,41.384659156],[-71.520130575,41.384726524],[-71.520094842,41.384794563],[-71.520052433,41.38485685],[-71.520005256,41.384916201],[-71.519966662,41.384977803],[-71.519927114,41.385040104],[-71.519873291,41.385100171],[-71.519820511,41.385144487],[-71.519751638,41.385171458],[-71.519673407,41.385188326],[-71.519591272,41.38520664],[-71.519514829,41.385227874],[-71.519481927,41.385237738],[-71.519439369,41.385250479],[-71.519374281,41.385285392],[-71.519327223,41.385328978],[-71.519284934,41.385379776],[-71.519242734,41.385404259],[-71.519219816,41.385417566],[-71.519156605,41.385458201],[-71.519096226,41.385499582],[-71.519034088,41.385526583],[-71.519034058,41.385526597],[-71.518963367,41.385547146],[-71.51893571,41.385544151],[-71.51888752,41.385538444],[-71.518811792,41.385520518],[-71.518800229,41.385514542],[-71.518744528,41.385485455],[-71.518690526,41.385449454],[-71.518655211,41.385418132],[-71.518636525,41.385401398],[-71.518582582,41.385351628],[-71.518522918,41.385300398],[-71.518484294,41.385239944],[-71.518482864,41.385237902],[-71.51844275,41.385181606],[-71.51838696,41.38512823],[-71.518327296,41.385077015],[-71.518321753,41.385071546],[-71.518244684,41.384992838],[-71.518233657,41.384981126],[-71.518210471,41.384933576],[-71.51820752,41.384927452],[-71.518232524,41.384883448],[-71.518297672,41.384837821],[-71.518303812,41.384781137],[-71.518296063,41.384754613],[-71.518286526,41.384720445],[-71.518249542,41.384656444],[-71.518223524,41.384594455],[-71.51821053,41.384536445],[-71.518193364,41.384514153],[-71.518170685,41.384484053],[-71.51811868,41.384430707],[-71.51811406,41.384425923],[-71.518059522,41.384369448],[-71.517992705,41.384308606],[-71.517964661,41.384248421],[-71.517960995,41.384236217],[-71.517946541,41.384186447],[-71.517936319,41.384170011],[-71.517916918,41.38413696],[-71.517889202,41.384094015],[-71.517879546,41.384078458],[-71.517863959,41.384058222],[-71.517833948,41.384018138],[-71.517789572,41.383961231],[-71.517785639,41.383953646],[-71.517737865,41.383858085],[-71.51772663,41.383834571],[-71.517690033,41.383761197],[-71.517650515,41.383696422],[-71.517612785,41.38364026],[-71.517576993,41.383583397],[-71.517549753,41.383528709],[-71.517547905,41.383523911],[-71.517509252,41.383415863],[-71.517505884,41.38340576],[-71.517500222,41.383380115],[-71.517492533,41.383343443],[-71.517490387,41.38330476],[-71.517489642,41.383287251],[-71.517487258,41.383247972],[-71.517485529,41.383216456],[-71.51750052,41.383148476],[-71.517504424,41.383145005],[-71.517562538,41.383093446],[-71.517652541,41.383097455],[-71.517683595,41.383109629],[-71.51772061,41.383124545],[-71.51780045,41.383155748],[-71.517816007,41.383117065],[-71.517807543,41.383084327],[-71.517802536,41.38306345],[-71.517799735,41.383056566],[-71.517778754,41.382998466],[-71.51775533,41.38294594],[-71.517731935,41.382889837],[-71.517706603,41.38283731],[-71.517669022,41.382762492],[-71.51764667,41.382722199],[-71.517573535,41.382587448],[-71.517531544,41.382481456],[-71.517510295,41.382438958],[-71.517505676,41.382429421],[-71.517469883,41.382371828],[-71.517431289,41.382312074],[-71.517394543,41.382257372],[-71.517385632,41.382245794],[-71.517330974,41.382174119],[-71.517320931,41.382160813],[-71.51731813,41.382155642],[-71.517312527,41.382144451],[-71.517632544,41.381752446],[-71.518628776,41.38091208]]],[[[-71.523847759,41.379451409],[-71.523863852,41.379462928],[-71.523924589,41.379498363],[-71.523966134,41.379550949],[-71.524015278,41.379606456],[-71.524095118,41.379635498],[-71.52417776,41.37967892],[-71.524260312,41.379725948],[-71.524340987,41.379775092],[-71.524410069,41.379833534],[-71.524445981,41.379876807],[-71.524559468,41.379995733],[-71.524615467,41.38003327],[-71.524675071,41.380088806],[-71.524712861,41.380137101],[-71.524743885,41.380192488],[-71.524766296,41.380257189],[-71.52478677,41.38032335],[-71.524812013,41.380383015],[-71.524837434,41.380434826],[-71.524874985,41.380503908],[-71.524919301,41.380567282],[-71.524983704,41.380622834],[-71.525060505,41.380676985],[-71.525120348,41.380708829],[-71.525210679,41.380742237],[-71.525301069,41.380756259],[-71.525370508,41.380774498],[-71.525391221,41.3808112],[-71.525347114,41.380844757],[-71.52525562,41.380848721],[-71.525171787,41.38083972],[-71.525086015,41.380835757],[-71.525012583,41.380841196],[-71.52492851,41.380868107],[-71.524852186,41.380876392],[-71.524782389,41.380906239],[-71.52472207,41.380943358],[-71.524675906,41.380996242],[-71.524628758,41.381052762],[-71.524542838,41.381069645],[-71.524481148,41.381043538],[-71.52440685,41.381033868],[-71.5243918,41.3810094],[-71.524433106,41.380965099],[-71.52449733,41.380912945],[-71.524548262,41.38085717],[-71.524583966,41.380798459],[-71.524649084,41.380756363],[-71.524672449,41.380694717],[-71.524670124,41.380622908],[-71.524666905,41.380546823],[-71.524648339,41.380476385],[-71.524575055,41.380462423],[-71.524492055,41.380469963],[-71.524406403,41.380458117],[-71.524353325,41.380413383],[-71.524378359,41.380381912],[-71.524386287,41.380341709],[-71.524331361,41.380296245],[-71.52426073,41.380307451],[-71.524225682,41.380277127],[-71.524177223,41.380256876],[-71.52413401,41.380296841],[-71.524098963,41.380268693],[-71.524065048,41.380217612],[-71.524030149,41.380167186],[-71.523985654,41.380123928],[-71.523913682,41.380064771],[-71.523875028,41.380010009],[-71.523840219,41.37995103],[-71.523785442,41.379880413],[-71.523726612,41.379845709],[-71.523701698,41.379857823],[-71.523678392,41.379918024],[-71.523663551,41.379989743],[-71.523664892,41.380065829],[-71.52364248,41.380131111],[-71.523583114,41.380163133],[-71.5236018,41.380216375],[-71.523625195,41.380274594],[-71.523652285,41.380347922],[-71.52366519,41.380405441],[-71.523675263,41.380461469],[-71.523683429,41.380516782],[-71.523683965,41.380573526],[-71.523675829,41.380639076],[-71.52364558,41.380607769],[-71.523622125,41.380553856],[-71.523602635,41.380485579],[-71.523587942,41.380412996],[-71.52357319,41.380341858],[-71.523561299,41.380280077],[-71.523541808,41.380211055],[-71.52351743,41.380155697],[-71.523485482,41.380096674],[-71.523440033,41.380053386],[-71.523388982,41.379999354],[-71.523347467,41.379941031],[-71.523333609,41.379884988],[-71.52336067,41.379832655],[-71.523427635,41.379802093],[-71.523528814,41.379786],[-71.523626179,41.379759118],[-71.523707509,41.379720002],[-71.52377367,41.379670009],[-71.523815036,41.379619971],[-71.523813576,41.379561067],[-71.523771942,41.379519254],[-71.523793101,41.379497081],[-71.523847759,41.379451409]]],[[[-71.562593937,41.372284278],[-71.562746555,41.372995451],[-71.562815547,41.373212442],[-71.562859535,41.37335144],[-71.562851548,41.373734444],[-71.562851548,41.373944446],[-71.562859535,41.374024451],[-71.562859535,41.374100447],[-71.562889546,41.374421448],[-71.562889546,41.374485448],[-71.562874556,41.374615446],[-71.562889546,41.374806449],[-71.562904537,41.374905452],[-71.562958539,41.37553145],[-71.562973559,41.375622451],[-71.563004553,41.375950441],[-71.563004553,41.376053452],[-71.562996536,41.376107454],[-71.562981546,41.376156449],[-71.562943548,41.376213446],[-71.562859535,41.376286447],[-71.562828541,41.376301453],[-71.562851548,41.376358449],[-71.562904537,41.37655744],[-71.562920541,41.37663345],[-71.562935561,41.376671448],[-71.562935561,41.376706451],[-71.562927544,41.376721442],[-71.562927544,41.376736447],[-71.562912554,41.376751453],[-71.562904537,41.376767442],[-71.562881559,41.376778454],[-71.562851548,41.376801446],[-71.562805533,41.376816452],[-71.562805533,41.376820445],[-71.56279856,41.376820445],[-71.56279856,41.376824453],[-71.562752545,41.376843452],[-71.562660545,41.376870453],[-71.562660545,41.376915455],[-71.562668532,41.376961455],[-71.562668532,41.377003446],[-71.56269154,41.377140447],[-71.562714547,41.377232447],[-71.562729537,41.377331451],[-71.562729537,41.377385452],[-71.562637538,41.377385452],[-71.562309533,41.377396449],[-71.561851531,41.377411455],[-71.559486538,41.377507448],[-71.558273554,41.377564445],[-71.557885557,41.377579451],[-71.557203531,41.377609447],[-71.557070553,41.37761645],[-71.556493551,41.377638444],[-71.556054533,41.377656445],[-71.55550155,41.377681449],[-71.555017531,41.377702445],[-71.554698557,41.377714455],[-71.554145545,41.377732441],[-71.553604543,41.377757445],[-71.552548558,41.377798453],[-71.551987529,41.377823442],[-71.55134654,41.377849445],[-71.550808549,41.377874449],[-71.54995054,41.37791045],[-71.549591541,41.377922446],[-71.549576551,41.377388448],[-71.54934755,41.377392456],[-71.549171537,41.377400443],[-71.548828542,41.377430454],[-71.548561543,41.377446443],[-71.548424542,41.377446443],[-71.548294544,41.377472445],[-71.548248529,41.377499446],[-71.548203528,41.377541453],[-71.54818055,41.377667442],[-71.548172534,41.377686456],[-71.548141539,41.377701446],[-71.548096538,41.377713442],[-71.548042536,41.377720445],[-71.54768455,41.377739444],[-71.547417551,41.377747446],[-71.54717353,41.377762452],[-71.546593547,41.377781451],[-71.546257555,41.37780045],[-71.545692533,41.377819449],[-71.545547545,41.377831444],[-71.545479536,41.377854452],[-71.545433551,41.377854452],[-71.545502543,41.378491446],[-71.545280546,41.378502443],[-71.544968545,41.378525451],[-71.544609547,41.378540456],[-71.544373542,41.378556445],[-71.543671548,41.378594443],[-71.543472528,41.378609449],[-71.54322654,41.378619447],[-71.542382538,41.378668442],[-71.542206526,41.378671452],[-71.54206264,41.378674448],[-71.542096794,41.378649294],[-71.542149991,41.378610745],[-71.542168796,41.378555119],[-71.542169809,41.378553718],[-71.542249531,41.378444448],[-71.542278528,41.378391445],[-71.542257726,41.378385872],[-71.542237401,41.37838009],[-71.542221218,41.378371134],[-71.542126477,41.378316984],[-71.542118192,41.378312111],[-71.542087346,41.378307566],[-71.54203555,41.378299445],[-71.542009294,41.378307939],[-71.54196769,41.378320977],[-71.54188484,41.378334969],[-71.541809589,41.378340125],[-71.541760087,41.378349021],[-71.541734546,41.378353447],[-71.54169324,41.378367767],[-71.541659236,41.37837936],[-71.541588247,41.378396288],[-71.541562527,41.378398508],[-71.541512549,41.378402442],[-71.541460156,41.378417522],[-71.54144001,41.378423139],[-71.541404575,41.378422961],[-71.541367531,41.378422454],[-71.541225553,41.378394455],[-71.541083544,41.378322452],[-71.541030526,41.378271446],[-71.541030288,41.378271028],[-71.540998548,41.378216445],[-71.540973574,41.378182903],[-71.54096356,41.378169179],[-71.540920705,41.378125057],[-71.540889621,41.378103748],[-71.540863544,41.378085449],[-71.540789545,41.378067449],[-71.540709525,41.378087446],[-71.540665269,41.378105164],[-71.540644258,41.378113464],[-71.540632486,41.378119662],[-71.540443867,41.378216743],[-71.540440947,41.378218189],[-71.540440559,41.378218442],[-71.540384531,41.378254443],[-71.540369391,41.378266007],[-71.540323406,41.378299326],[-71.540270627,41.378341332],[-71.540266544,41.378344446],[-71.540265828,41.378345355],[-71.540220976,41.378399312],[-71.540192246,41.378439084],[-71.540182531,41.378451452],[-71.540154546,41.378513455],[-71.540154546,41.37854214],[-71.540154189,41.378575042],[-71.540147245,41.378632203],[-71.540141165,41.378690094],[-71.54015696,41.378716156],[-71.540171534,41.378740445],[-71.540171802,41.378740668],[-71.540171951,41.378740922],[-71.540214598,41.378774881],[-71.540221363,41.37878032],[-71.540246516,41.378835872],[-71.540277183,41.378890842],[-71.540332675,41.378940582],[-71.540332735,41.378940657],[-71.540410727,41.379026815],[-71.540418297,41.379035741],[-71.540465295,41.37907134],[-71.540474534,41.379078448],[-71.540505797,41.37910971],[-71.540528566,41.379132614],[-71.540546626,41.37914601],[-71.540580541,41.379171446],[-71.540625393,41.379198223],[-71.540642947,41.379208803],[-71.540719599,41.379221603],[-71.540796727,41.379215807],[-71.540836424,41.379224926],[-71.540876538,41.379234448],[-71.540889204,41.37925835],[-71.540903121,41.379285693],[-71.54088518,41.379342705],[-71.540871978,41.379354879],[-71.540837526,41.379386455],[-71.540799528,41.379403904],[-71.54076311,41.379420325],[-71.540754944,41.37942341],[-71.540622652,41.379469067],[-71.540621698,41.379469365],[-71.540621579,41.379469439],[-71.540621549,41.379469454],[-71.540563941,41.379505128],[-71.540499985,41.379531771],[-71.540493548,41.379534453],[-71.540419549,41.379552454],[-71.540334553,41.379555449],[-71.540334493,41.379555643],[-71.540311545,41.379659444],[-71.540296763,41.379669771],[-71.540258557,41.379696026],[-71.540258378,41.379697353],[-71.540238529,41.379815444],[-71.540237576,41.379872307],[-71.540237516,41.379874498],[-71.54023838,41.379878908],[-71.540248543,41.379933447],[-71.540318549,41.380034447],[-71.540312588,41.380092993],[-71.540248454,41.380127966],[-71.54016456,41.380148143],[-71.540143371,41.380152136],[-71.540003538,41.380176455],[-71.539978564,41.380177617],[-71.539925486,41.380179197],[-71.539870262,41.380182669],[-71.539853543,41.380183443],[-71.539771527,41.380175456],[-71.539753824,41.380171657],[-71.539687812,41.380157113],[-71.539654672,41.380155742],[-71.539610535,41.380153447],[-71.539557666,41.380157664],[-71.539529234,41.380159661],[-71.539491683,41.380162925],[-71.539447546,41.380166456],[-71.539364547,41.380169451],[-71.539225549,41.380228445],[-71.539161533,41.380264446],[-71.539130211,41.380290955],[-71.539109409,41.380308181],[-71.539075792,41.380327582],[-71.539049536,41.380342454],[-71.539014548,41.380397454],[-71.538993537,41.380454451],[-71.538977325,41.380554959],[-71.538973331,41.380578175],[-71.538960129,41.380610123],[-71.538948536,41.380637452],[-71.538910538,41.380689442],[-71.5388574,41.380739361],[-71.538791537,41.380771577],[-71.538765192,41.380786285],[-71.538678259,41.380830392],[-71.538650453,41.380843356],[-71.538581282,41.380879566],[-71.538579553,41.380880445],[-71.538556635,41.380896911],[-71.538515449,41.380926341],[-71.538510621,41.380928829],[-71.538407534,41.38097845],[-71.538360536,41.381026447],[-71.538326204,41.381037727],[-71.538293332,41.381048024],[-71.538247973,41.381070867],[-71.538232535,41.381078452],[-71.538198531,41.38110131],[-71.53817147,41.381119415],[-71.538160801,41.381124556],[-71.538110524,41.381148443],[-71.538037539,41.381167442],[-71.537957549,41.381181449],[-71.537915707,41.381186098],[-71.537885606,41.381189153],[-71.537851632,41.381187797],[-71.537803531,41.381185442],[-71.537761271,41.381173611],[-71.537728637,41.381164089],[-71.537697613,41.381127775],[-71.537685543,41.381113455],[-71.537685215,41.381106317],[-71.537685841,41.381081343],[-71.537683576,41.381026104],[-71.537678838,41.380959764],[-71.537680656,41.3808887],[-71.537681043,41.380873799],[-71.53768453,41.380754456],[-71.537737906,41.380646765],[-71.537742019,41.380639046],[-71.537763655,41.380581394],[-71.53779161,41.380526587],[-71.537846744,41.380485952],[-71.537878543,41.380467206],[-71.538067549,41.380359456],[-71.538124532,41.380315453],[-71.538138926,41.380299866],[-71.538178772,41.380258158],[-71.538230509,41.380203694],[-71.538264632,41.380163833],[-71.538270533,41.380157456],[-71.538277358,41.380146533],[-71.538308293,41.380099893],[-71.538345635,41.38003765],[-71.538382858,41.379978865],[-71.538397849,41.379962191],[-71.538478553,41.37987645],[-71.538478583,41.379876405],[-71.538478971,41.379875988],[-71.538503587,41.379842237],[-71.538519531,41.379820451],[-71.53851983,41.379819989],[-71.538593471,41.379699573],[-71.538593531,41.379699454],[-71.538631529,41.379647449],[-71.538634986,41.379641056],[-71.538661063,41.379597723],[-71.538690984,41.379538834],[-71.538701713,41.379498303],[-71.538707525,41.379477456],[-71.538711548,41.379417449],[-71.538713157,41.379410967],[-71.538726777,41.379357114],[-71.538754821,41.379299536],[-71.538791001,41.379246205],[-71.538793504,41.379244238],[-71.538917542,41.379151449],[-71.538983554,41.379116446],[-71.53906554,41.379096448],[-71.539117217,41.379103392],[-71.539132714,41.379105508],[-71.539148659,41.379104659],[-71.539213538,41.379101455],[-71.539293528,41.37910445],[-71.539307266,41.379104078],[-71.539366424,41.379102692],[-71.539439529,41.379075468],[-71.539439529,41.379075453],[-71.539439738,41.379075065],[-71.539496213,41.378973082],[-71.539501965,41.378963172],[-71.539506018,41.378957987],[-71.539575636,41.378872976],[-71.539588004,41.37885879],[-71.539642513,41.378826454],[-71.539654553,41.378819451],[-71.539660275,41.378817275],[-71.53972432,41.378795892],[-71.539802074,41.378763869],[-71.53982228,41.378752813],[-71.53986755,41.378728449],[-71.539895535,41.378720745],[-71.539936334,41.378709912],[-71.539968848,41.378657237],[-71.539974093,41.378595904],[-71.539975703,41.378531054],[-71.539968878,41.378500327],[-71.539963543,41.378475443],[-71.539979547,41.378421456],[-71.539993465,41.378398523],[-71.540010989,41.378370032],[-71.540020019,41.37835981],[-71.540059537,41.378315449],[-71.54013896,41.378244251],[-71.540165961,41.378220439],[-71.540184051,41.37820597],[-71.540220529,41.378177449],[-71.540255904,41.378154993],[-71.540283501,41.378137916],[-71.540309221,41.378124133],[-71.540472537,41.378039449],[-71.540486783,41.378034234],[-71.540546924,41.378012657],[-71.540617228,41.377986774],[-71.540617198,41.377986565],[-71.540617526,41.377986446],[-71.540608585,41.377938092],[-71.540607631,41.377932802],[-71.54063189,41.377878651],[-71.540663481,41.377850428],[-71.540688545,41.377828449],[-71.540744543,41.377786443],[-71.540781528,41.377737448],[-71.540803969,41.37770009],[-71.540811807,41.377687261],[-71.540863544,41.377651453],[-71.540879548,41.377615452],[-71.540879518,41.377615288],[-71.540879607,41.377615124],[-71.540870994,41.37755768],[-71.540867925,41.377534851],[-71.54084602,41.377494514],[-71.540829271,41.37747407],[-71.54075855,41.377385452],[-71.540691525,41.377342448],[-71.540678591,41.377337709],[-71.540620595,41.377315953],[-71.540604025,41.377303332],[-71.540586531,41.377289444],[-71.540585548,41.377223551],[-71.540595055,41.377218783],[-71.540640533,41.377196446],[-71.54064554,41.377138451],[-71.54068312,41.377123311],[-71.540712804,41.377111599],[-71.540792197,41.377088577],[-71.540792257,41.377088532],[-71.540792525,41.377088442],[-71.540907532,41.376995444],[-71.540930837,41.376963526],[-71.540953785,41.376932874],[-71.540987492,41.376867816],[-71.541000694,41.37682426],[-71.541008532,41.376798451],[-71.541008562,41.376797915],[-71.541011959,41.376735613],[-71.541010737,41.37667419],[-71.540991992,41.376620084],[-71.540961295,41.376566499],[-71.540924817,41.376504689],[-71.540923536,41.376502454],[-71.540883541,41.376452446],[-71.540832967,41.376442194],[-71.540809691,41.376437292],[-71.540799081,41.37642698],[-71.540787548,41.376415446],[-71.540787548,41.376394272],[-71.540787905,41.376357615],[-71.540804029,41.37634629],[-71.540818542,41.376336455],[-71.540895551,41.376314446],[-71.540920466,41.376294404],[-71.540946752,41.376273632],[-71.540982962,41.37621893],[-71.541014135,41.376168311],[-71.541018546,41.376161456],[-71.541019678,41.376127973],[-71.541020691,41.376102835],[-71.541059732,41.376045406],[-71.541105866,41.375996411],[-71.541109771,41.375993922],[-71.541228622,41.375923187],[-71.541231483,41.375921592],[-71.541275769,41.375873938],[-71.541306764,41.375808105],[-71.541322827,41.375753805],[-71.541337132,41.375694707],[-71.541350961,41.375641853],[-71.541354537,41.375628442],[-71.541382343,41.375573844],[-71.541382551,41.375573441],[-71.541384667,41.375566989],[-71.541400194,41.375520959],[-71.541411906,41.375483707],[-71.541418552,41.375463456],[-71.541468531,41.375352442],[-71.541506529,41.375298455],[-71.541570544,41.375253454],[-71.54163453,41.375217453],[-71.541692525,41.37517345],[-71.54170832,41.375152737],[-71.541734785,41.375119254],[-71.54176873,41.375073448],[-71.541772544,41.375068441],[-71.541787148,41.375051573],[-71.541818023,41.375016272],[-71.5418607,41.374995485],[-71.54191494,41.374916196],[-71.541921377,41.374892548],[-71.541932553,41.374853447],[-71.541932166,41.37485294],[-71.541864455,41.374764904],[-71.541855901,41.374752447],[-71.541809738,41.374693125],[-71.541791648,41.37470454],[-71.541759551,41.374724448],[-71.541685551,41.374714449],[-71.54163453,41.374670446],[-71.541599542,41.374619454],[-71.54154855,41.374570444],[-71.54143253,41.374495447],[-71.541383833,41.374476776],[-71.541359156,41.374467149],[-71.541338295,41.3744625],[-71.541286528,41.374450445],[-71.541233212,41.374444976],[-71.541208655,41.374442235],[-71.541185856,41.374442056],[-71.541032553,41.374439448],[-71.541002363,41.374434352],[-71.540955245,41.374426126],[-71.540899694,41.374403641],[-71.540884554,41.374397442],[-71.540727526,41.374375448],[-71.540694028,41.374372125],[-71.540650696,41.374367207],[-71.540563881,41.374358341],[-71.540485233,41.37435101],[-71.540416688,41.374332666],[-71.540408552,41.374330446],[-71.540259212,41.374316782],[-71.540244281,41.374315098],[-71.540222436,41.374324113],[-71.540137529,41.374357447],[-71.540095389,41.374369025],[-71.54008615,41.374371484],[-71.540055007,41.374394059],[-71.540026546,41.374414444],[-71.540014029,41.37442641],[-71.539979458,41.374458969],[-71.539939612,41.374514282],[-71.539938182,41.374515504],[-71.539843291,41.374589115],[-71.539832115,41.374596953],[-71.539799482,41.374636009],[-71.539784551,41.374653444],[-71.539749533,41.374713451],[-71.539749473,41.374713704],[-71.539749414,41.374713778],[-71.539732456,41.374768078],[-71.53971526,41.374830633],[-71.539703757,41.374880388],[-71.539701551,41.37488845],[-71.539694965,41.374921843],[-71.539689362,41.374948964],[-71.539685845,41.37501514],[-71.539684325,41.375074491],[-71.539684713,41.375093371],[-71.539686531,41.375311777],[-71.539686501,41.375312641],[-71.539688498,41.375324875],[-71.539696544,41.37537545],[-71.539707839,41.375403687],[-71.53971833,41.375430435],[-71.53972131,41.375492603],[-71.539731562,41.375517935],[-71.539743543,41.375548452],[-71.539743543,41.3755707],[-71.539743245,41.375603348],[-71.539758265,41.375662223],[-71.539752096,41.375723556],[-71.539763361,41.375784457],[-71.539762676,41.375842154],[-71.539762527,41.375852451],[-71.539748579,41.375971973],[-71.539748549,41.37597245],[-71.539747536,41.376032442],[-71.539720535,41.376086444],[-71.539715558,41.37609452],[-71.53968665,41.37613605],[-71.539658368,41.376187131],[-71.539657533,41.376188442],[-71.539622724,41.376235187],[-71.539622545,41.376235455],[-71.539621949,41.376236632],[-71.539591938,41.376292035],[-71.539568633,41.376344159],[-71.539567202,41.376346156],[-71.539488524,41.376447454],[-71.539482534,41.376507446],[-71.539467543,41.376565456],[-71.539436549,41.376625448],[-71.53943792,41.376650348],[-71.539439142,41.376679793],[-71.539437115,41.376716822],[-71.539435536,41.376741454],[-71.539435863,41.376747221],[-71.539436966,41.376800522],[-71.539442211,41.376857951],[-71.539442539,41.37686345],[-71.539441824,41.376885995],[-71.539440215,41.376925528],[-71.539412946,41.376977071],[-71.539409548,41.376983449],[-71.539409518,41.376983553],[-71.539409429,41.376983717],[-71.53940627,41.377000377],[-71.539397538,41.377045453],[-71.539342105,41.377149835],[-71.539337158,41.377158687],[-71.539295435,41.377213284],[-71.539272606,41.3772282],[-71.539239526,41.377249449],[-71.539117247,41.377314091],[-71.539099276,41.377322972],[-71.539091378,41.377338842],[-71.53904292,41.377430096],[-71.539039642,41.377436027],[-71.539036423,41.377440721],[-71.538959533,41.377546445],[-71.538899541,41.377583444],[-71.538899511,41.377583638],[-71.538899302,41.377583742],[-71.538886011,41.377638072],[-71.538876384,41.377692461],[-71.538868934,41.3777055],[-71.538844526,41.377747446],[-71.538840175,41.377770483],[-71.538833201,41.377805039],[-71.538826913,41.377816126],[-71.538773209,41.377902523],[-71.538763493,41.377916515],[-71.538730055,41.377969861],[-71.538700402,41.378019124],[-71.53864035,41.378073484],[-71.538594186,41.378116205],[-71.538589537,41.378120452],[-71.538568079,41.378155261],[-71.538552403,41.378180549],[-71.538493514,41.378225952],[-71.538452893,41.378235012],[-71.538417548,41.378242448],[-71.538359255,41.378278017],[-71.538358539,41.378278449],[-71.538348258,41.378271118],[-71.538317025,41.378248259],[-71.53826353,41.378261968],[-71.538195699,41.378298268],[-71.53814128,41.378328636],[-71.538130552,41.378334448],[-71.538068533,41.378362447],[-71.538064271,41.37836571],[-71.53801626,41.378399894],[-71.537964851,41.378439873],[-71.537899375,41.378491342],[-71.537874579,41.378515393],[-71.537849545,41.378539443],[-71.537805259,41.378566265],[-71.537778854,41.37858212],[-71.537778735,41.378582329],[-71.537778527,41.378582448],[-71.537745535,41.378634453],[-71.537741333,41.37863937],[-71.537699223,41.378686562],[-71.537663609,41.378730342],[-71.537657529,41.37873745],[-71.537656724,41.37875247],[-71.53765434,41.378793567],[-71.537619531,41.378815442],[-71.537569165,41.378817394],[-71.537541956,41.378818199],[-71.537504405,41.378802851],[-71.53749153,41.378797442],[-71.537482291,41.37878114],[-71.537463129,41.378745988],[-71.537450761,41.378725544],[-71.537377238,41.378595978],[-71.537373662,41.378589362],[-71.537341028,41.378539905],[-71.537329704,41.378523067],[-71.537303537,41.378483444],[-71.537286401,41.378470197],[-71.537250966,41.378442004],[-71.537211835,41.37839517],[-71.537171781,41.378349721],[-71.53713578,41.378288463],[-71.53713575,41.378282651],[-71.537140548,41.378155455],[-71.537167639,41.378102988],[-71.537171811,41.378095061],[-71.53718704,41.378037289],[-71.537217706,41.377983257],[-71.537222028,41.377978653],[-71.537262022,41.377936199],[-71.537271231,41.377929866],[-71.537317544,41.377898455],[-71.537330538,41.377844453],[-71.5373303,41.377844259],[-71.537330359,41.377844051],[-71.53728193,41.37780191],[-71.537237942,41.377766088],[-71.537148237,41.377726123],[-71.537064761,41.377693191],[-71.536984086,41.377665475],[-71.536970526,41.377660453],[-71.536926955,41.377647534],[-71.536889404,41.37763609],[-71.536874622,41.377629176],[-71.536755443,41.377571121],[-71.536733747,41.377560034],[-71.536677837,41.377523318],[-71.536641032,41.377492905],[-71.536628544,41.377482444],[-71.536578536,41.377426445],[-71.536568552,41.377411872],[-71.536541522,41.37737225],[-71.53653565,41.377356485],[-71.536517531,41.377307445],[-71.53650853,41.377242446],[-71.536513537,41.377212912],[-71.536518842,41.377183512],[-71.536500394,41.37715359],[-71.53648454,41.377127454],[-71.536467791,41.377104595],[-71.53644383,41.377071291],[-71.536432505,41.377069071],[-71.536425054,41.377047494],[-71.536402196,41.37700133],[-71.536373287,41.376936376],[-71.536371529,41.376932442],[-71.536371529,41.376932397],[-71.536358625,41.376873508],[-71.536354542,41.376868695],[-71.53631255,41.376818448],[-71.536312133,41.376791686],[-71.536311865,41.376750499],[-71.536325634,41.376691729],[-71.536323696,41.376674473],[-71.536319524,41.376636446],[-71.536317557,41.376633644],[-71.536286384,41.37658529],[-71.536249548,41.37653707],[-71.536248863,41.376525506],[-71.536245525,41.376467451],[-71.536256552,41.376402453],[-71.536290586,41.376347259],[-71.536293685,41.376342297],[-71.536339551,41.376291454],[-71.53634429,41.376262978],[-71.536350995,41.376225889],[-71.536368847,41.37616691],[-71.536370546,41.376161456],[-71.536415547,41.376050442],[-71.536437452,41.376018599],[-71.536448866,41.376002327],[-71.536475897,41.375952199],[-71.536466569,41.375936285],[-71.536455542,41.375916451],[-71.536393434,41.375904858],[-71.53638044,41.375902325],[-71.536341548,41.37584345],[-71.536316097,41.375816137],[-71.536300719,41.375799239],[-71.536235273,41.375755176],[-71.536206514,41.375741735],[-71.536163539,41.375721455],[-71.536100447,41.37569955],[-71.536093682,41.375697166],[-71.536086857,41.375694826],[-71.536019534,41.375671446],[-71.535985768,41.375663012],[-71.535932034,41.375649109],[-71.53586179,41.375638798],[-71.535856783,41.375638023],[-71.535783768,41.375628874],[-71.535773635,41.375627458],[-71.535733134,41.37560305],[-71.535675913,41.375604957],[-71.535600692,41.375595331],[-71.535565436,41.375599504],[-71.53549099,41.375614256],[-71.535473704,41.375619233],[-71.53540954,41.375637442],[-71.5353688,41.375646606],[-71.53532961,41.375655219],[-71.535298407,41.375666633],[-71.535265535,41.37567845],[-71.53520155,41.375682443],[-71.535170645,41.375697434],[-71.535135686,41.375714034],[-71.535078734,41.375749826],[-71.535074532,41.375752449],[-71.535074472,41.375752509],[-71.535074413,41.375752553],[-71.535022557,41.375806153],[-71.534961313,41.375841096],[-71.534941614,41.375867844],[-71.534921527,41.375894442],[-71.534897476,41.375899509],[-71.534864545,41.375905976],[-71.534787178,41.375927225],[-71.534734666,41.375943184],[-71.534712523,41.375949442],[-71.534661531,41.375988454],[-71.534677058,41.376040518],[-71.534678519,41.37604548],[-71.534650534,41.376074448],[-71.534623295,41.376084596],[-71.53458482,41.376098678],[-71.534516454,41.376124382],[-71.534505546,41.37612845],[-71.534486175,41.376126066],[-71.534440756,41.376120329],[-71.534375191,41.376097098],[-71.534333974,41.376093239],[-71.534286529,41.376088455],[-71.534141541,41.376134455],[-71.534099549,41.376152292],[-71.534061074,41.376168296],[-71.534021229,41.3761902],[-71.533998549,41.376202449],[-71.533929527,41.376268446],[-71.533868343,41.376306474],[-71.53385517,41.376314536],[-71.533773929,41.376334354],[-71.533773541,41.376334444],[-71.533732533,41.376380444],[-71.533709496,41.376398876],[-71.533672184,41.376428008],[-71.533663124,41.37649399],[-71.533664405,41.376544312],[-71.533664525,41.376552448],[-71.533686489,41.3766772],[-71.533627123,41.376726463],[-71.533591479,41.376779422],[-71.533588409,41.376789764],[-71.533574551,41.376835451],[-71.533576041,41.376870438],[-71.533577204,41.376905739],[-71.533583969,41.376926601],[-71.533587992,41.376939014],[-71.533596545,41.376966447],[-71.533602536,41.377022445],[-71.533598155,41.37705259],[-71.533593059,41.377084583],[-71.533609629,41.377110615],[-71.533625543,41.377136454],[-71.533625543,41.377197444],[-71.533600539,41.377251446],[-71.533562541,41.377307445],[-71.533547044,41.377354592],[-71.533540398,41.377374381],[-71.533497036,41.377434492],[-71.533426136,41.377484441],[-71.53337875,41.377500176],[-71.533344537,41.377511442],[-71.533279806,41.37754631],[-71.533207595,41.377524465],[-71.533202797,41.377521783],[-71.533141524,41.377487451],[-71.533109576,41.377459884],[-71.533090979,41.377443552],[-71.53309074,41.377443641],[-71.533090532,41.377443448],[-71.533031523,41.377464443],[-71.53294754,41.37746045],[-71.53294003,41.377476797],[-71.532936215,41.37748456],[-71.532946259,41.377514735],[-71.532954544,41.377540454],[-71.53299135,41.377583802],[-71.532999277,41.377593204],[-71.532999337,41.377593234],[-71.532999545,41.377593443],[-71.533071548,41.377622455],[-71.533093691,41.377649263],[-71.533109307,41.377668321],[-71.533136547,41.377725884],[-71.533167541,41.377780452],[-71.533167601,41.377780572],[-71.533219784,41.377813816],[-71.533243299,41.377820611],[-71.533292532,41.377835453],[-71.533326536,41.377893448],[-71.533315867,41.377912059],[-71.533291191,41.377954125],[-71.533257544,41.377993092],[-71.53324753,41.378004447],[-71.533240676,41.378032938],[-71.533234179,41.378058687],[-71.533207208,41.37809734],[-71.533190429,41.378098786],[-71.53314355,41.378102452],[-71.533079803,41.378076956],[-71.533073932,41.378074557],[-71.533073902,41.378074601],[-71.533073545,41.378074452],[-71.533052921,41.378104478],[-71.533038259,41.37812537],[-71.533021957,41.378140017],[-71.533005536,41.378154442],[-71.532980531,41.378136456],[-71.532980531,41.378081456],[-71.532997549,41.378028452],[-71.532987297,41.378006384],[-71.532984853,41.378000915],[-71.532984734,41.378000855],[-71.532984525,41.378000453],[-71.532935172,41.377977878],[-71.532914609,41.377968356],[-71.532847077,41.377947241],[-71.532793015,41.377955884],[-71.532763541,41.377960443],[-71.532621533,41.377999455],[-71.532609344,41.378006414],[-71.53255856,41.378035069],[-71.532532901,41.378047392],[-71.532485545,41.378069445],[-71.532372206,41.378135145],[-71.532347083,41.378149047],[-71.532279223,41.378174618],[-71.532214224,41.378198743],[-71.532147437,41.378226176],[-71.532141536,41.378228456],[-71.532113701,41.378233239],[-71.532049,41.378243998],[-71.532007396,41.378242195],[-71.531975538,41.378240451],[-71.531946093,41.378237158],[-71.531897545,41.378231168],[-71.53179279,41.378219947],[-71.531715691,41.378211021],[-71.531685174,41.378216237],[-71.53165853,41.378220454],[-71.531624079,41.378240794],[-71.531597137,41.378256455],[-71.531605542,41.378281623],[-71.531643331,41.378328428],[-71.531715572,41.378353134],[-71.531756997,41.378366008],[-71.531785548,41.378375456],[-71.531939477,41.378397435],[-71.531960189,41.378400847],[-71.532016635,41.378395244],[-71.532057524,41.378391445],[-71.53214553,41.37838845],[-71.53225562,41.378415003],[-71.532316417,41.378431052],[-71.532402068,41.378450811],[-71.532468438,41.378495574],[-71.532510906,41.378513709],[-71.532533526,41.378523454],[-71.532571644,41.378533617],[-71.532608181,41.378543511],[-71.53269878,41.378541768],[-71.532770485,41.378512636],[-71.532780111,41.378495812],[-71.532789528,41.378479451],[-71.532789528,41.378479406],[-71.532789767,41.378478974],[-71.532754928,41.378419966],[-71.532743752,41.378386334],[-71.532736719,41.378363997],[-71.532801926,41.378382817],[-71.532826394,41.378397584],[-71.532870531,41.378424451],[-71.532941103,41.378363177],[-71.532946914,41.378358334],[-71.533018529,41.378337443],[-71.533076823,41.378368482],[-71.533080339,41.37837036],[-71.533080369,41.37837036],[-71.533080548,41.378370449],[-71.533106118,41.378366843],[-71.533151895,41.378360599],[-71.533179939,41.378351569],[-71.533231527,41.378335446],[-71.533269942,41.378317446],[-71.533295274,41.378305927],[-71.533353001,41.378268763],[-71.53342554,41.378222451],[-71.533437967,41.378208309],[-71.533469707,41.378172383],[-71.533537745,41.378121704],[-71.533617824,41.378119886],[-71.533669323,41.378096893],[-71.533679545,41.378092453],[-71.533701301,41.378086388],[-71.533740163,41.378075898],[-71.533792347,41.378051475],[-71.533807546,41.378044456],[-71.533826083,41.378020361],[-71.533847481,41.377993047],[-71.533885032,41.377944395],[-71.533926576,41.377898663],[-71.533929378,41.377895623],[-71.533938676,41.377887547],[-71.533981413,41.377850562],[-71.533990771,41.377846614],[-71.534058541,41.37781845],[-71.534099877,41.377805218],[-71.534134001,41.377794653],[-71.534159988,41.377780214],[-71.534198523,41.377759442],[-71.534265548,41.377734452],[-71.534265816,41.377734229],[-71.534265935,41.377734199],[-71.534280032,41.377723292],[-71.534317523,41.377694443],[-71.534375548,41.377638444],[-71.534433544,41.377638444],[-71.534473747,41.377629831],[-71.534503132,41.377623916],[-71.534545958,41.377634838],[-71.534614742,41.377608553],[-71.53464517,41.377580643],[-71.534668535,41.377559453],[-71.534703463,41.377542794],[-71.534733504,41.377528638],[-71.534812838,41.377501696],[-71.534907401,41.377475515],[-71.53490746,41.37747547],[-71.53490755,41.377475455],[-71.534913898,41.377469733],[-71.53494674,41.377440512],[-71.534922749,41.377397105],[-71.534918547,41.377389446],[-71.534916759,41.377387553],[-71.534875929,41.377343312],[-71.534806639,41.377307132],[-71.534766018,41.377258137],[-71.534733474,41.377248943],[-71.53471154,41.377242446],[-71.534672529,41.377196446],[-71.534634173,41.377164587],[-71.534613371,41.377146959],[-71.534572393,41.377129823],[-71.534544408,41.377117828],[-71.534618795,41.377096862],[-71.534677356,41.377127826],[-71.534732372,41.377163962],[-71.534743518,41.377171248],[-71.534799546,41.377208456],[-71.534810573,41.377216563],[-71.534855664,41.377252072],[-71.534920126,41.377297536],[-71.534966826,41.377295613],[-71.535046548,41.377292454],[-71.535099536,41.377311453],[-71.535113811,41.377309293],[-71.535157412,41.377303556],[-71.535206437,41.377295256],[-71.535231531,41.377291456],[-71.535238385,41.377306148],[-71.535238534,41.377321035],[-71.535238534,41.377364025],[-71.535212338,41.37735118],[-71.535163671,41.377357304],[-71.535162717,41.377357423],[-71.535162538,41.377357453],[-71.535134524,41.377392456],[-71.535148054,41.377438575],[-71.535151541,41.377450705],[-71.535166919,41.377465844],[-71.535196543,41.377495453],[-71.535256535,41.377499446],[-71.535332531,41.377470449],[-71.535426527,41.377473444],[-71.535518527,41.377490446],[-71.5355151,41.377466917],[-71.535510987,41.377435684],[-71.535488814,41.377400607],[-71.535472542,41.377374455],[-71.535453141,41.377352968],[-71.535426021,41.377322614],[-71.535425663,41.377322584],[-71.535425544,41.37732245],[-71.535409987,41.377321407],[-71.535365075,41.377318054],[-71.535294414,41.377347186],[-71.535289437,41.377337828],[-71.535268039,41.377296835],[-71.535325348,41.377279878],[-71.535411179,41.377268702],[-71.535492212,41.377266899],[-71.535533309,41.377270058],[-71.535571545,41.377273455],[-71.535655528,41.377287447],[-71.535713524,41.377327442],[-71.535763532,41.37737745],[-71.535748959,41.377396122],[-71.535738051,41.377409324],[-71.535740256,41.377441511],[-71.535740525,41.377446443],[-71.535740614,41.377446637],[-71.535740644,41.377446681],[-71.535761207,41.377499178],[-71.535790324,41.377556011],[-71.535777628,41.377583101],[-71.535774529,41.377589449],[-71.535778284,41.377612934],[-71.535781205,41.377633512],[-71.535809398,41.377687499],[-71.53581214,41.377719194],[-71.535814524,41.377748445],[-71.535825223,41.37776041],[-71.535856247,41.377795354],[-71.535862982,41.377805889],[-71.535869002,41.377815336],[-71.53589353,41.377854452],[-71.535963356,41.377868414],[-71.535935402,41.377921313],[-71.53590709,41.377943203],[-71.535884529,41.377960443],[-71.535814524,41.377997443],[-71.535765529,41.378043443],[-71.535762429,41.378045201],[-71.535702646,41.378077567],[-71.535631835,41.378117472],[-71.535581708,41.378146797],[-71.535564542,41.378156453],[-71.535496533,41.378172442],[-71.535434544,41.378139451],[-71.535425127,41.378137648],[-71.535360128,41.378123537],[-71.535297811,41.378113225],[-71.535288632,41.378111467],[-71.535283953,41.378099889],[-71.535267532,41.378058448],[-71.535267532,41.377934456],[-71.535267144,41.377934352],[-71.535267144,41.377934337],[-71.535223395,41.377921969],[-71.535176784,41.377911001],[-71.535134792,41.37791802],[-71.535099059,41.377899036],[-71.535081536,41.377889454],[-71.535063595,41.37785691],[-71.535049647,41.377831474],[-71.535049528,41.377831444],[-71.534972668,41.377803162],[-71.534889936,41.377779126],[-71.534846008,41.377791181],[-71.534845799,41.377791375],[-71.534845531,41.377791449],[-71.534798533,41.377840444],[-71.534669906,41.377884433],[-71.534643143,41.377892971],[-71.534582555,41.377895102],[-71.534569532,41.377895445],[-71.534488529,41.377908453],[-71.534427792,41.377924204],[-71.534407467,41.37792933],[-71.534329444,41.377908885],[-71.534260541,41.377892211],[-71.534257531,41.377891451],[-71.534257382,41.377891451],[-71.534257144,41.377891392],[-71.534245133,41.377891451],[-71.534181535,41.377891451],[-71.534129322,41.377910152],[-71.534114987,41.377915174],[-71.534114867,41.377915338],[-71.53411454,41.377915442],[-71.534073532,41.377966449],[-71.53404054,41.378017455],[-71.534040123,41.378017828],[-71.534032226,41.378021076],[-71.533986121,41.378067568],[-71.533932477,41.378104001],[-71.53386277,41.37812236],[-71.53386277,41.378122389],[-71.533862531,41.378122449],[-71.533855587,41.3781562],[-71.533798426,41.378190264],[-71.533793718,41.378194124],[-71.533673823,41.378285229],[-71.533673525,41.378285453],[-71.533643544,41.378341451],[-71.533601522,41.378395453],[-71.533598542,41.378398612],[-71.533552527,41.378446981],[-71.533493012,41.378501981],[-71.533430845,41.378529012],[-71.533366948,41.378559798],[-71.533365548,41.378560454],[-71.533360124,41.37856327],[-71.533292174,41.378598064],[-71.533243179,41.378648132],[-71.533164829,41.378672212],[-71.53316468,41.378672406],[-71.533164531,41.378672451],[-71.533163339,41.378674299],[-71.533134967,41.378713727],[-71.533100277,41.378770322],[-71.533055961,41.378829673],[-71.533019513,41.378879964],[-71.533009529,41.37889345],[-71.532953531,41.378931448],[-71.532917529,41.378890455],[-71.532886207,41.378889009],[-71.53285256,41.378886998],[-71.532793164,41.378921211],[-71.532758385,41.378927231],[-71.532708526,41.378935456],[-71.532623529,41.378934443],[-71.532602638,41.378919527],[-71.53260693,41.378906876],[-71.532623529,41.378859445],[-71.532567531,41.378814444],[-71.532520533,41.378813446],[-71.532521039,41.378811315],[-71.532530546,41.378770456],[-71.532498538,41.378720447],[-71.532471687,41.378704235],[-71.532450795,41.37869148],[-71.532450646,41.378691524],[-71.532450527,41.37869145],[-71.532414228,41.378699824],[-71.532398313,41.37870346],[-71.532337934,41.378745586],[-71.532305896,41.37876831],[-71.532278538,41.378787443],[-71.532278568,41.378787681],[-71.532278538,41.378787696],[-71.532278717,41.378790066],[-71.532281548,41.378830448],[-71.532300413,41.378882155],[-71.532304406,41.378893331],[-71.532236665,41.378905252],[-71.532155871,41.378879085],[-71.532110989,41.378853038],[-71.532096535,41.378844455],[-71.53204155,41.378804445],[-71.531957537,41.37879245],[-71.531797707,41.378791541],[-71.531782836,41.378791362],[-71.531769782,41.378789678],[-71.531650215,41.378773138],[-71.53162384,41.378769159],[-71.531536371,41.378740087],[-71.531513512,41.378727019],[-71.531464547,41.378698453],[-71.531408548,41.378660455],[-71.53131631,41.3785806],[-71.531311721,41.378576189],[-71.531274945,41.378523678],[-71.531268537,41.378514454],[-71.531268328,41.37851426],[-71.531220019,41.378470227],[-71.5311611,41.378427416],[-71.531142652,41.378413811],[-71.531093955,41.378377825],[-71.531083226,41.378370032],[-71.531033546,41.378333449],[-71.530974358,41.378309786],[-71.530963868,41.378305495],[-71.530963659,41.378305495],[-71.53096354,41.37830545],[-71.530880541,41.378303453],[-71.530847073,41.378290772],[-71.530814469,41.3782783],[-71.530803233,41.378270462],[-71.530756533,41.378237456],[-71.530691534,41.37821345],[-71.530620784,41.378207877],[-71.530602425,41.378206342],[-71.530568898,41.378201202],[-71.530525535,41.378194451],[-71.530437529,41.37819545],[-71.530421525,41.37825045],[-71.530382842,41.378285363],[-71.530370146,41.378296554],[-71.530355066,41.378342047],[-71.530351549,41.378352448],[-71.530362248,41.378387153],[-71.530368388,41.378407106],[-71.530368477,41.378407285],[-71.530368537,41.378407449],[-71.530372113,41.378413275],[-71.530401349,41.378461778],[-71.530434281,41.378504291],[-71.530440539,41.378512442],[-71.530440986,41.378512904],[-71.530441016,41.378512934],[-71.530491114,41.378565565],[-71.530534476,41.37863034],[-71.530552149,41.378686398],[-71.53058514,41.378736064],[-71.530595183,41.378796414],[-71.530603945,41.378822118],[-71.530614525,41.378854454],[-71.530644506,41.378903344],[-71.530652463,41.378916562],[-71.530690253,41.37896271],[-71.530697495,41.378988504],[-71.530706525,41.379022449],[-71.530705601,41.379084796],[-71.530705512,41.379089475],[-71.530665278,41.37911275],[-71.530648291,41.379122451],[-71.530625045,41.379123226],[-71.530557513,41.379125103],[-71.530518293,41.37911962],[-71.530483544,41.379114449],[-71.530424088,41.379082754],[-71.530408263,41.379074186],[-71.530336142,41.379027247],[-71.5302715,41.378988102],[-71.53026253,41.378982455],[-71.530198634,41.378951311],[-71.530182332,41.378943309],[-71.530095786,41.378921404],[-71.53008005,41.378921047],[-71.530019522,41.378919452],[-71.529956639,41.378900483],[-71.529927611,41.378850341],[-71.529955715,41.378786594],[-71.52997309,41.378736049],[-71.52997455,41.378732443],[-71.529973894,41.378695056],[-71.529973716,41.378673956],[-71.529962718,41.378614306],[-71.529911578,41.378571004],[-71.529860854,41.378541768],[-71.529841542,41.378530443],[-71.529808372,41.378526866],[-71.529767036,41.378522307],[-71.529729515,41.378548875],[-71.529708534,41.378563449],[-71.529690325,41.378566056],[-71.529659957,41.378569975],[-71.529640198,41.378562108],[-71.529506534,41.378504455],[-71.529458523,41.378503457],[-71.529458791,41.378503799],[-71.529458374,41.378503785],[-71.529468626,41.378517985],[-71.529483527,41.378539443],[-71.529503703,41.378553122],[-71.529537916,41.378577322],[-71.529607117,41.378623575],[-71.529572397,41.378681585],[-71.52956143,41.378746882],[-71.529598176,41.378799424],[-71.529632032,41.378863454],[-71.529681206,41.3789168],[-71.529689401,41.378972113],[-71.529622406,41.379006311],[-71.529637337,41.379051566],[-71.529693276,41.379088432],[-71.529750079,41.379138187],[-71.529817402,41.379185855],[-71.52984947,41.379221186],[-71.529859543,41.379232451],[-71.529859722,41.379232496],[-71.52985993,41.379232734],[-71.529934198,41.379249543],[-71.530016154,41.379249886],[-71.530091107,41.379246786],[-71.530110538,41.379246444],[-71.530154973,41.379265502],[-71.530173242,41.379273519],[-71.530195266,41.379292905],[-71.530221522,41.379316449],[-71.530231118,41.379321396],[-71.53028512,41.379351526],[-71.530349731,41.37938267],[-71.530383438,41.379394561],[-71.530517548,41.379442453],[-71.530553311,41.379436418],[-71.530600041,41.379428953],[-71.530673593,41.37940985],[-71.530741483,41.379377812],[-71.530799925,41.379338607],[-71.53080371,41.379339516],[-71.530838549,41.379348442],[-71.530871838,41.379383743],[-71.53088814,41.37940143],[-71.530890167,41.379408494],[-71.530919224,41.379534051],[-71.530919522,41.379535809],[-71.530960113,41.379592687],[-71.530959725,41.379641265],[-71.530959547,41.379653454],[-71.530932546,41.379714444],[-71.530818522,41.379803449],[-71.530743539,41.379810452],[-71.530673534,41.379832447],[-71.530601531,41.379844457],[-71.530544281,41.379839301],[-71.530512214,41.379836336],[-71.530440658,41.379848957],[-71.530377358,41.379852295],[-71.530351609,41.379853442],[-71.53034544,41.379850313],[-71.53028354,41.379818454],[-71.530265361,41.379811481],[-71.530236989,41.379800022],[-71.530152529,41.379815385],[-71.530145466,41.37978898],[-71.530140966,41.379770905],[-71.530149966,41.379716367],[-71.530084223,41.379713207],[-71.530030817,41.379751056],[-71.530024529,41.379755452],[-71.530018538,41.379822448],[-71.530006558,41.379877314],[-71.529944748,41.379884213],[-71.529930592,41.379873961],[-71.529835522,41.379802451],[-71.529830843,41.379813179],[-71.529821157,41.37983419],[-71.529817849,41.379837498],[-71.529758602,41.379886284],[-71.529753119,41.379890576],[-71.5297212,41.379930139],[-71.529709548,41.379944444],[-71.529686451,41.379967526],[-71.529658914,41.379994988],[-71.529603332,41.380034953],[-71.529547632,41.380090043],[-71.529538482,41.380103648],[-71.529512525,41.380141452],[-71.52946955,41.380185455],[-71.529398531,41.380221456],[-71.529369861,41.380228668],[-71.529324472,41.380239859],[-71.529231846,41.380263165],[-71.529178113,41.380309597],[-71.529167444,41.380335823],[-71.529154539,41.380366445],[-71.529110759,41.38036944],[-71.52905789,41.380321294],[-71.529041171,41.380324066],[-71.529007524,41.380329445],[-71.528951526,41.380375445],[-71.528949827,41.380410224],[-71.528948396,41.380436376],[-71.528982282,41.38049899],[-71.528995156,41.380559355],[-71.528994858,41.380559281],[-71.528958052,41.380548447],[-71.528894693,41.380534664],[-71.528877527,41.380530447],[-71.528846085,41.380544052],[-71.528810233,41.380559295],[-71.528766662,41.380573705],[-71.528730541,41.380585447],[-71.528699428,41.380634844],[-71.528696179,41.380639941],[-71.528726399,41.380679578],[-71.528733045,41.380692482],[-71.528750479,41.380727351],[-71.528714389,41.380759194],[-71.528704524,41.380808443],[-71.528690696,41.380816519],[-71.528668076,41.380829349],[-71.528664172,41.38083519],[-71.528607547,41.380909443],[-71.528607488,41.380909532],[-71.528572708,41.380971119],[-71.52857253,41.380971447],[-71.528566539,41.381105453],[-71.528552711,41.381146193],[-71.528547466,41.381161273],[-71.528493136,41.381182209],[-71.528471529,41.381190449],[-71.528446525,41.381240457],[-71.528445452,41.381251231],[-71.528439671,41.381298617],[-71.528434455,41.381361753],[-71.528451174,41.381417826],[-71.52848506,41.381476849],[-71.528545797,41.381513745],[-71.528574288,41.381535441],[-71.52859655,41.381552443],[-71.528609931,41.381589562],[-71.528618455,41.381613836],[-71.52864176,41.381636694],[-71.528664529,41.381659448],[-71.528684497,41.381655619],[-71.528737366,41.381645888],[-71.528756857,41.381660759],[-71.528766543,41.381668448],[-71.528776526,41.381733447],[-71.528827548,41.381773457],[-71.528861135,41.381793723],[-71.52889052,41.381811708],[-71.528890818,41.3818174],[-71.52889353,41.381876454],[-71.528886169,41.381909594],[-71.528877139,41.381948754],[-71.528840482,41.382005304],[-71.528814405,41.38206245],[-71.528796434,41.382062763],[-71.528757125,41.382063091],[-71.528682858,41.382053465],[-71.528604746,41.382043093],[-71.528529674,41.382014051],[-71.528474659,41.38197507],[-71.528423578,41.381926045],[-71.52839157,41.381889179],[-71.528381526,41.381877452],[-71.528377205,41.38187331],[-71.528335601,41.381833032],[-71.528318018,41.38181144],[-71.528292537,41.381779447],[-71.528223544,41.381657451],[-71.528223515,41.381657362],[-71.528183043,41.381530315],[-71.528180659,41.381522238],[-71.528176427,41.381506011],[-71.528163522,41.381454453],[-71.528139532,41.381392449],[-71.528138727,41.381390944],[-71.528110594,41.381333128],[-71.528084934,41.381288871],[-71.528081536,41.381282449],[-71.528073847,41.38116394],[-71.528072894,41.381143436],[-71.528081864,41.381089643],[-71.528092712,41.381056488],[-71.52810052,41.38103345],[-71.528123885,41.381027892],[-71.528142422,41.381023854],[-71.528162599,41.381005347],[-71.528192312,41.380978122],[-71.528246075,41.380925938],[-71.52829504,41.380877346],[-71.528289527,41.380851462],[-71.528305531,41.380803451],[-71.528335273,41.380758032],[-71.52834174,41.380748287],[-71.528333873,41.380725443],[-71.528322548,41.380691454],[-71.528235078,41.380566776],[-71.52822879,41.380557567],[-71.528198808,41.380494982],[-71.528206885,41.380429685],[-71.528232157,41.380358756],[-71.528258473,41.380286321],[-71.528284729,41.380211771],[-71.528303176,41.380152136],[-71.528306544,41.38014245],[-71.528359532,41.380081445],[-71.52838245,41.38006717],[-71.528429002,41.380038679],[-71.528442562,41.380009934],[-71.528458536,41.37997745],[-71.528458536,41.379921451],[-71.528494537,41.379863456],[-71.528526366,41.379824638],[-71.528535545,41.379813671],[-71.528603554,41.379766598],[-71.528655291,41.379728734],[-71.528655529,41.379728451],[-71.52869761,41.379680827],[-71.528722614,41.379642069],[-71.528731525,41.37962845],[-71.528834909,41.379548356],[-71.528842568,41.379542857],[-71.528862983,41.379487664],[-71.528870106,41.379472509],[-71.528926283,41.379361928],[-71.528928757,41.379357308],[-71.52896741,41.379284233],[-71.52899155,41.37923339],[-71.528992534,41.379231453],[-71.528994232,41.379227176],[-71.529014945,41.379176751],[-71.52903533,41.379124418],[-71.529037297,41.379119307],[-71.52907753,41.379018456],[-71.529157549,41.378873453],[-71.52916801,41.378859118],[-71.529201567,41.37881355],[-71.52924493,41.378754169],[-71.529259622,41.378696799],[-71.529259503,41.378696516],[-71.529259533,41.378696457],[-71.529237539,41.378631443],[-71.529174685,41.37858656],[-71.529174536,41.378586456],[-71.529166698,41.37858361],[-71.529091954,41.378556073],[-71.529008299,41.3785263],[-71.528974921,41.378516704],[-71.528939545,41.378506452],[-71.528902739,41.378515765],[-71.528856754,41.37852709],[-71.528784364,41.378525347],[-71.528743982,41.378517032],[-71.528702527,41.378508449],[-71.528554529,41.378463447],[-71.52855441,41.378463447],[-71.528554142,41.378463358],[-71.528503627,41.378462404],[-71.528503597,41.378462449],[-71.528503537,41.378462449],[-71.528499961,41.378467128],[-71.528464168,41.378513217],[-71.528449357,41.378579929],[-71.528462291,41.378639579],[-71.528506696,41.378690749],[-71.528561622,41.378737658],[-71.528624415,41.378775656],[-71.528640538,41.378785446],[-71.52877754,41.378896445],[-71.528840542,41.378913447],[-71.528851032,41.37889576],[-71.528859854,41.378881037],[-71.528856695,41.378822014],[-71.528856546,41.378818452],[-71.528854847,41.37881124],[-71.52884081,41.37875028],[-71.528839856,41.378707007],[-71.528839529,41.378687456],[-71.528878331,41.378686845],[-71.528903216,41.378686666],[-71.528959811,41.378707036],[-71.52898553,41.378716454],[-71.529044539,41.378760442],[-71.529045165,41.378780067],[-71.529046148,41.378822938],[-71.529031396,41.378884628],[-71.529024452,41.378902733],[-71.528993547,41.37898244],[-71.528974056,41.379031554],[-71.528952628,41.379080474],[-71.528912961,41.379169181],[-71.528892666,41.379211411],[-71.528866708,41.379272729],[-71.528837532,41.379338011],[-71.528835505,41.379342496],[-71.528743744,41.379451618],[-71.528740257,41.379455566],[-71.52869308,41.379519269],[-71.528671145,41.379545584],[-71.528645545,41.379575446],[-71.528612971,41.379624784],[-71.528612524,41.379625455],[-71.528571546,41.379675448],[-71.528532624,41.379707783],[-71.528512388,41.379724532],[-71.528512359,41.379724562],[-71.528448224,41.379763752],[-71.528379261,41.379807994],[-71.528371304,41.379818991],[-71.528297544,41.379913449],[-71.528237522,41.379918382],[-71.528224975,41.37991932],[-71.528185338,41.379917264],[-71.528134525,41.379914448],[-71.528122574,41.379916057],[-71.528036177,41.379926458],[-71.527934104,41.379941076],[-71.527843416,41.379957199],[-71.527767926,41.379982039],[-71.527726799,41.380000547],[-71.527695537,41.380014449],[-71.527543992,41.380051106],[-71.527542472,41.380051434],[-71.527535021,41.380052164],[-71.527457535,41.380059451],[-71.527358532,41.380058452],[-71.527259529,41.380048454],[-71.527166545,41.380026445],[-71.527080536,41.37999545],[-71.527054667,41.379990458],[-71.526995867,41.379978746],[-71.526953638,41.379970938],[-71.526904523,41.379961446],[-71.526859283,41.379956216],[-71.526809305,41.379949972],[-71.526765674,41.379949406],[-71.526725531,41.379948452],[-71.526637524,41.379963443],[-71.526568532,41.379981443],[-71.52651149,41.379991993],[-71.526476294,41.379998088],[-71.526455104,41.380028173],[-71.526462138,41.380061507],[-71.526468545,41.380093455],[-71.526468903,41.3800935],[-71.526468903,41.38009356],[-71.526531756,41.380101711],[-71.52654323,41.380098879],[-71.526577532,41.380090445],[-71.526577592,41.380090445],[-71.526659578,41.380086496],[-71.526681662,41.380083546],[-71.526743531,41.380075455],[-71.52689001,41.380078077],[-71.526910365,41.380078927],[-71.5270046,41.380088657],[-71.527050495,41.380097494],[-71.527100712,41.380107388],[-71.527173072,41.380123079],[-71.527258754,41.380138516],[-71.527301341,41.380144164],[-71.527367532,41.380152985],[-71.52743879,41.380162641],[-71.527475536,41.380159929],[-71.527526528,41.380156457],[-71.527627528,41.380136445],[-71.527894527,41.380054444],[-71.528056353,41.380016878],[-71.528062224,41.380015552],[-71.528072625,41.380014464],[-71.528134525,41.380008444],[-71.528194845,41.380015597],[-71.5282107,41.380017608],[-71.528248459,41.380053386],[-71.528247118,41.380055308],[-71.52816987,41.38015601],[-71.528169543,41.380156457],[-71.528168231,41.380159929],[-71.528146565,41.380212605],[-71.528126091,41.380272806],[-71.528125703,41.380278453],[-71.528117537,41.380338445],[-71.528117836,41.380357385],[-71.528117537,41.3804041],[-71.528119296,41.380449504],[-71.528119534,41.380465448],[-71.528133541,41.38053745],[-71.528208464,41.380729228],[-71.528204173,41.380794406],[-71.528191447,41.380822673],[-71.528178543,41.380850449],[-71.528117597,41.38090241],[-71.528117537,41.380902454],[-71.528060138,41.380937368],[-71.528036535,41.380954951],[-71.528001547,41.380980447],[-71.527971208,41.381020099],[-71.527962208,41.381031692],[-71.527955264,41.381047681],[-71.527936548,41.381089449],[-71.527933538,41.381152451],[-71.527938545,41.381221443],[-71.527955532,41.381290451],[-71.52798155,41.381349444],[-71.527982891,41.381366923],[-71.527984083,41.381384864],[-71.527985156,41.381401509],[-71.528002083,41.381438911],[-71.528018892,41.381469488],[-71.528055251,41.381543681],[-71.528059363,41.381552607],[-71.528051585,41.381574139],[-71.527981728,41.381609008],[-71.527962238,41.381612271],[-71.527940542,41.381615445],[-71.52789554,41.381569445],[-71.527839035,41.381500378],[-71.527815044,41.381470427],[-71.527774483,41.381412119],[-71.527742654,41.381408721],[-71.527697533,41.381403446],[-71.527655333,41.381409138],[-71.527608573,41.381414995],[-71.52760604,41.38142328],[-71.52759555,41.38145645],[-71.527598411,41.381485254],[-71.527601153,41.381516218],[-71.527610362,41.381546244],[-71.527617544,41.381570444],[-71.527617902,41.381570786],[-71.527617902,41.381570861],[-71.527631372,41.381583542],[-71.527673542,41.381623447],[-71.527695328,41.381663099],[-71.52765891,41.381698102],[-71.527598619,41.381729394],[-71.52759859,41.381729409],[-71.52759853,41.381729454],[-71.527590543,41.381775454],[-71.527628452,41.381822348],[-71.527632773,41.381878898],[-71.527640641,41.381928563],[-71.527641535,41.381936446],[-71.527636528,41.381995454],[-71.527625531,41.382051453],[-71.527644366,41.382105157],[-71.52764535,41.382107958],[-71.527645528,41.38210845],[-71.52770853,41.382138446],[-71.527764976,41.382142022],[-71.527803332,41.382144511],[-71.527809769,41.382143855],[-71.527876526,41.382137448],[-71.527906537,41.382101446],[-71.527911454,41.382089421],[-71.527931809,41.382040247],[-71.527930975,41.382011473],[-71.527930528,41.381988451],[-71.527921706,41.38197048],[-71.527904987,41.381935313],[-71.527918607,41.381894439],[-71.527911425,41.381877452],[-71.527905524,41.381863445],[-71.527935266,41.381756634],[-71.5279378,41.381748796],[-71.52793628,41.381709963],[-71.527935535,41.381687582],[-71.527940184,41.381681398],[-71.527948081,41.381670862],[-71.527963489,41.381650493],[-71.528035015,41.381620735],[-71.528040916,41.381624386],[-71.528060585,41.38163659],[-71.52808553,41.381694451],[-71.528106779,41.381727993],[-71.528122693,41.381753877],[-71.528161317,41.381814346],[-71.528200984,41.381862611],[-71.528251082,41.381918862],[-71.528301179,41.381976455],[-71.528348416,41.382039845],[-71.528382242,41.38210243],[-71.528417051,41.382160738],[-71.52848053,41.382182449],[-71.528480768,41.382182539],[-71.528556079,41.382182866],[-71.528636068,41.382191807],[-71.528625458,41.382211193],[-71.528625548,41.382211417],[-71.528625548,41.382211447],[-71.528628498,41.382218063],[-71.528642327,41.382249266],[-71.528642476,41.382249296],[-71.528642535,41.382249445],[-71.528720528,41.38226445],[-71.528781533,41.382313445],[-71.528796762,41.382348016],[-71.528807223,41.382372722],[-71.528808177,41.382376999],[-71.528820187,41.382431686],[-71.528814733,41.382463604],[-71.528810203,41.382490501],[-71.528775483,41.38254416],[-71.528765023,41.382546827],[-71.528744549,41.382551447],[-71.528612018,41.382497862],[-71.528608084,41.382496119],[-71.528575748,41.382496446],[-71.528554529,41.382496446],[-71.528554857,41.38249667],[-71.52855432,41.38249667],[-71.528560042,41.382500216],[-71.528643548,41.382557452],[-71.528661966,41.38257587],[-71.528690219,41.382604837],[-71.528722465,41.382655367],[-71.528727531,41.382663444],[-71.528735995,41.38268356],[-71.528751284,41.382720694],[-71.528737575,41.382775187],[-71.528737605,41.382775202],[-71.528737545,41.382775456],[-71.528771549,41.38278845],[-71.528787404,41.382800177],[-71.528794438,41.382805541],[-71.528792292,41.382807478],[-71.528764784,41.382830575],[-71.528732181,41.382861316],[-71.528717548,41.382874444],[-71.528715551,41.38289845],[-71.528713703,41.382927746],[-71.528713524,41.382930145],[-71.528713554,41.382930309],[-71.528713524,41.382930443],[-71.528721541,41.382987455],[-71.528685808,41.383037075],[-71.52861625,41.383061126],[-71.528586477,41.383042425],[-71.528556526,41.383023456],[-71.528555542,41.383023322],[-71.528553635,41.383022815],[-71.528515816,41.383017972],[-71.52848953,41.383014455],[-71.528468251,41.383007258],[-71.52841568,41.382989228],[-71.528332889,41.382968023],[-71.528300196,41.382947072],[-71.528273523,41.382929444],[-71.528250068,41.382908374],[-71.528224856,41.382885024],[-71.528181404,41.382832453],[-71.528140515,41.38278538],[-71.528135538,41.382779449],[-71.528113544,41.382723451],[-71.528014004,41.382625744],[-71.528004736,41.382616326],[-71.527933508,41.382584453],[-71.527845025,41.382566124],[-71.527795136,41.382556602],[-71.527764529,41.382550448],[-71.527617544,41.382505447],[-71.527567536,41.382463455],[-71.527554601,41.382458895],[-71.527516097,41.382444099],[-71.527460009,41.382425547],[-71.527445525,41.38242045],[-71.527323544,41.382353455],[-71.527269542,41.382295445],[-71.527261406,41.382278532],[-71.527239352,41.382230431],[-71.527210444,41.38217248],[-71.527207524,41.382166445],[-71.527183443,41.382147849],[-71.527150542,41.382122368],[-71.527138352,41.382116675],[-71.527074546,41.382086456],[-71.52690053,41.382020444],[-71.526863158,41.382008329],[-71.526826441,41.381996095],[-71.526791841,41.381974921],[-71.526768535,41.381960452],[-71.526736051,41.381934673],[-71.526710749,41.381914467],[-71.526637495,41.381903395],[-71.526620835,41.381903321],[-71.526355177,41.381901339],[-71.526326716,41.381900683],[-71.526235253,41.381900266],[-71.52616179,41.381909266],[-71.526156038,41.38191314],[-71.526046544,41.381986454],[-71.526020527,41.382037446],[-71.52602011,41.382061824],[-71.526019305,41.382096052],[-71.52600649,41.382151976],[-71.525998354,41.382221624],[-71.525993019,41.382239252],[-71.525980532,41.382279456],[-71.525975525,41.382322446],[-71.525975704,41.382322446],[-71.525975674,41.382322744],[-71.526014745,41.382322893],[-71.526041865,41.382267743],[-71.526044279,41.382260382],[-71.526087373,41.382149875],[-71.526087523,41.382149488],[-71.526089579,41.382146135],[-71.526120543,41.382095456],[-71.526177526,41.382058457],[-71.526215345,41.382041171],[-71.52624768,41.382026687],[-71.526332587,41.382009819],[-71.526347905,41.382009447],[-71.526498526,41.382009447],[-71.526559919,41.382020161],[-71.526584148,41.382024527],[-71.526609868,41.382031903],[-71.526652545,41.382044449],[-71.526798546,41.382136449],[-71.526852787,41.38215214],[-71.526881456,41.382160723],[-71.526957512,41.382189766],[-71.527018785,41.382224962],[-71.527026534,41.382229447],[-71.527084529,41.382271454],[-71.527090013,41.382284909],[-71.527106136,41.382325366],[-71.527116179,41.38238427],[-71.527157605,41.382439598],[-71.527184546,41.382493451],[-71.527184933,41.38249369],[-71.527248532,41.382532731],[-71.527312189,41.382561699],[-71.527338296,41.382570952],[-71.527377546,41.382585451],[-71.527446538,41.382603452],[-71.527513534,41.382634446],[-71.527644336,41.382712185],[-71.527656049,41.382719651],[-71.527729154,41.382758722],[-71.527737916,41.382774308],[-71.527748525,41.382794455],[-71.527719617,41.382844329],[-71.527658701,41.382876173],[-71.527576536,41.382900253],[-71.527504146,41.382897094],[-71.527429909,41.382880256],[-71.527380854,41.382883191],[-71.527340531,41.382885456],[-71.527340531,41.38288559],[-71.527340293,41.382885605],[-71.527341336,41.382897303],[-71.527342528,41.382915452],[-71.527370214,41.382956237],[-71.527380526,41.382971779],[-71.527378887,41.382996723],[-71.527377427,41.383017838],[-71.527393192,41.383073911],[-71.527408004,41.383117795],[-71.52741152,41.383129448],[-71.527447015,41.383143395],[-71.527467668,41.38315168],[-71.527475744,41.383165419],[-71.527494252,41.383197784],[-71.527483702,41.383210227],[-71.52744928,41.383250535],[-71.527374536,41.383273453],[-71.527357876,41.383335814],[-71.527348101,41.383388236],[-71.527345538,41.383399457],[-71.527322322,41.383438334],[-71.527308345,41.383461222],[-71.527262866,41.38346982],[-71.527237535,41.383474454],[-71.527224511,41.383471161],[-71.527158737,41.383454144],[-71.52710861,41.383427143],[-71.527094543,41.383419454],[-71.526983529,41.383326456],[-71.5269835,41.383326441],[-71.526983351,41.383326307],[-71.526913017,41.383296594],[-71.526912928,41.383296624],[-71.52691254,41.383296445],[-71.526861817,41.383311033],[-71.526832789,41.383319214],[-71.526819825,41.383325145],[-71.526765525,41.383349448],[-71.526708543,41.383384451],[-71.526699871,41.38338609],[-71.526641577,41.383395225],[-71.526596129,41.383405641],[-71.526586533,41.383407444],[-71.526586175,41.383407906],[-71.526549548,41.383456454],[-71.526543468,41.383475542],[-71.526529133,41.383519679],[-71.526529014,41.383534282],[-71.526528537,41.383548453],[-71.526543617,41.383583188],[-71.526551396,41.383601606],[-71.526584387,41.383651286],[-71.526584446,41.383651316],[-71.526584536,41.38365145],[-71.526593179,41.383656263],[-71.526647031,41.383686721],[-71.526684225,41.383697778],[-71.526715547,41.383707449],[-71.526859522,41.383737445],[-71.52699253,41.383874446],[-71.527066827,41.383916467],[-71.527116001,41.383945704],[-71.527183414,41.383982599],[-71.527248979,41.384005889],[-71.527263999,41.384016603],[-71.527309537,41.384049445],[-71.527330905,41.384076864],[-71.527348369,41.384099618],[-71.527382284,41.38415578],[-71.527380198,41.384180158],[-71.527356088,41.384217411],[-71.527282655,41.38422212],[-71.527197659,41.384243295],[-71.527196616,41.384244293],[-71.527172536,41.384266451],[-71.527166665,41.384288549],[-71.527155101,41.38432996],[-71.527150422,41.384342298],[-71.527114123,41.384426519],[-71.527101725,41.384451106],[-71.527077466,41.384511277],[-71.527072191,41.384581655],[-71.527081251,41.384639814],[-71.527106375,41.384674475],[-71.527125537,41.384701446],[-71.527169526,41.38471745],[-71.527212203,41.384724155],[-71.52723968,41.38472876],[-71.527241945,41.384733722],[-71.527263254,41.384782746],[-71.527271718,41.384798527],[-71.527318388,41.384900108],[-71.527318537,41.384900451],[-71.527318627,41.384900704],[-71.527335316,41.384912431],[-71.527367532,41.384935454],[-71.527421534,41.384956613],[-71.527441084,41.384964362],[-71.52744782,41.384965852],[-71.527517378,41.384981409],[-71.527547389,41.385025069],[-71.527556539,41.38503845],[-71.52758655,41.385094449],[-71.52759847,41.38510935],[-71.527630359,41.385151148],[-71.527666211,41.385193825],[-71.527675539,41.385205448],[-71.527728528,41.385254443],[-71.52775526,41.385269433],[-71.527794182,41.385291815],[-71.527798504,41.385349914],[-71.527798533,41.385350451],[-71.527786314,41.385363236],[-71.52775532,41.385395035],[-71.527699888,41.385413483],[-71.527646661,41.385432929],[-71.527633548,41.385437444],[-71.527582794,41.385474443],[-71.527574509,41.385480404],[-71.527534127,41.385525465],[-71.527534544,41.385573208],[-71.527534544,41.385585457],[-71.527534634,41.38558571],[-71.527534634,41.385585785],[-71.527557075,41.385644734],[-71.527580678,41.385698378],[-71.527581543,41.385700449],[-71.527640522,41.385805458],[-71.52769053,41.385845453],[-71.527690828,41.385845482],[-71.527690977,41.385845602],[-71.527773798,41.385856718],[-71.527839273,41.385901496],[-71.527889162,41.385923594],[-71.52790454,41.385930449],[-71.52790764,41.385936648],[-71.52791512,41.385952786],[-71.527903378,41.385983735],[-71.527894527,41.386006445],[-71.527864546,41.38601467],[-71.527821153,41.386026338],[-71.527800918,41.386026457],[-71.527762532,41.386026457],[-71.527673423,41.386026457],[-71.527599066,41.386026114],[-71.527586251,41.386025593],[-71.527457535,41.386017293],[-71.52744469,41.38601613],[-71.527362853,41.386000007],[-71.527315795,41.385977075],[-71.527294546,41.38596645],[-71.527261525,41.38595745],[-71.527231455,41.385950133],[-71.527225018,41.385948449],[-71.52722472,41.385948494],[-71.527224541,41.385948449],[-71.527212918,41.385950431],[-71.527148634,41.385961041],[-71.527058005,41.385969982],[-71.527000219,41.38598837],[-71.526977539,41.385995448],[-71.526902527,41.385995448],[-71.526893109,41.385973066],[-71.526886553,41.385957047],[-71.526806533,41.385948136],[-71.526775688,41.385946855],[-71.526729524,41.385944456],[-71.526675344,41.385935828],[-71.526641726,41.385930166],[-71.526553184,41.385922626],[-71.526466459,41.385917947],[-71.526377052,41.385893181],[-71.52628842,41.385887772],[-71.526265293,41.385919958],[-71.526206166,41.385920435],[-71.526133776,41.385918707],[-71.526075572,41.3859137],[-71.525889874,41.385897562],[-71.525818348,41.385903731],[-71.525741071,41.385910615],[-71.525655419,41.385893732],[-71.525580257,41.385876179],[-71.525501102,41.38587442],[-71.525415421,41.385862559],[-71.525333613,41.385837063],[-71.52526325,41.385816649],[-71.525213063,41.38577266],[-71.525157094,41.385738671],[-71.525119334,41.3856861],[-71.525165349,41.385654733],[-71.525242716,41.385630637],[-71.525315195,41.385625899],[-71.525386751,41.38561976],[-71.5255889,41.385610536],[-71.525570422,41.385401562],[-71.525334805,41.385424986],[-71.52532503,41.38532874],[-71.525404334,41.385308236],[-71.525419921,41.385263115],[-71.525315046,41.385259792],[-71.525313497,41.385236606],[-71.525299609,41.385032833],[-71.52547726,41.384984761],[-71.525426954,41.384832367],[-71.524772823,41.384984687],[-71.524383187,41.38507849],[-71.524357855,41.38503173],[-71.524408519,41.3850061],[-71.524401307,41.384952247],[-71.524450064,41.384930894],[-71.52452445,41.384930491],[-71.524608374,41.384923652],[-71.524698973,41.384917632],[-71.524776459,41.384881318],[-71.52485472,41.384866595],[-71.524949282,41.384844735],[-71.52502647,41.384849355],[-71.525118947,41.384849012],[-71.525194407,41.384822056],[-71.52524817,41.384772032],[-71.52526772,41.384707481],[-71.525264412,41.384641483],[-71.525236249,41.384578869],[-71.525186658,41.384592295],[-71.525108218,41.384624273],[-71.525077343,41.3846737],[-71.525035083,41.384718716],[-71.524987012,41.384767324],[-71.524949849,41.38476862],[-71.524890095,41.384724587],[-71.524842799,41.384678409],[-71.52477932,41.384627178],[-71.524718672,41.384579554],[-71.524709672,41.384511307],[-71.524714947,41.384438097],[-71.52473256,41.384382889],[-71.524758667,41.38432844],[-71.524778217,41.384267494],[-71.524774879,41.384202152],[-71.524738491,41.384222105],[-71.524703771,41.38427867],[-71.524669349,41.384292886],[-71.524647743,41.384249732],[-71.524586916,41.384228632],[-71.524535269,41.38424781],[-71.524508208,41.384297952],[-71.524474442,41.384351671],[-71.524402797,41.384373605],[-71.524338573,41.384414986],[-71.524306267,41.384405479],[-71.524263769,41.384353623],[-71.52423656,41.384295344],[-71.524240911,41.384225726],[-71.524257571,41.384165481],[-71.524282485,41.384147659],[-71.524356872,41.384138644],[-71.52437824,41.384087041],[-71.524382472,41.384031788],[-71.524399102,41.383975878],[-71.524374515,41.383949175],[-71.524348557,41.38397491],[-71.52433759,41.384040937],[-71.524310529,41.384091765],[-71.5242351,41.384110838],[-71.524188936,41.384162351],[-71.524158895,41.384228244],[-71.524151772,41.384287089],[-71.524157017,41.384349585],[-71.524093002,41.38437444],[-71.524007171,41.384374782],[-71.523914784,41.384364352],[-71.523840249,41.384392753],[-71.523786485,41.384442776],[-71.523803174,41.384506002],[-71.523753464,41.384527355],[-71.523680836,41.384544984],[-71.523605436,41.384561896],[-71.523554116,41.38453798],[-71.523512572,41.384486839],[-71.523472667,41.384473011],[-71.523444742,41.384510219],[-71.523457646,41.384567007],[-71.523429751,41.384597778],[-71.523354471,41.38459745],[-71.523300499,41.384548381],[-71.523297101,41.384492397],[-71.523281306,41.384439215],[-71.523276061,41.384373099],[-71.523306966,41.384321541],[-71.523336977,41.384264246],[-71.523335487,41.384206817],[-71.52334547,41.384148687],[-71.523379296,41.384083524],[-71.523434967,41.384029895],[-71.523449689,41.383971095],[-71.523430109,41.383917883],[-71.523366511,41.383885309],[-71.523295283,41.383846939],[-71.523317337,41.383827657],[-71.523402333,41.383809343],[-71.523486406,41.383782431],[-71.523553401,41.383749709],[-71.523612827,41.383702606],[-71.523676157,41.383650452],[-71.523743182,41.383609816],[-71.523800373,41.383612186],[-71.523824275,41.383597225],[-71.523860812,41.383553609],[-71.523922116,41.38351725],[-71.523985296,41.38347657],[-71.52404663,41.383434474],[-71.52412039,41.383390307],[-71.524191022,41.383380547],[-71.52426517,41.383400977],[-71.524320066,41.383452162],[-71.524323434,41.383512482],[-71.524306804,41.383570552],[-71.524332136,41.383620933],[-71.524408251,41.383644208],[-71.524491191,41.383645296],[-71.52456665,41.383624807],[-71.524619371,41.383584827],[-71.524665475,41.383534744],[-71.524705052,41.383473173],[-71.52474454,41.383414477],[-71.524795055,41.383413985],[-71.524795711,41.383454874],[-71.524797142,41.383516625],[-71.524845421,41.383562788],[-71.524916917,41.383563831],[-71.52496627,41.383590579],[-71.525038719,41.383595914],[-71.525058359,41.383641258],[-71.525058895,41.383701548],[-71.525054514,41.383776173],[-71.525078207,41.383793503],[-71.52510801,41.383761346],[-71.525122732,41.383698925],[-71.525128901,41.383638665],[-71.525157928,41.38358207],[-71.525212407,41.383562192],[-71.525252253,41.383591086],[-71.525276631,41.383644342],[-71.525299013,41.383711174],[-71.525338918,41.383725002],[-71.525386781,41.383702919],[-71.525450915,41.38366732],[-71.525534928,41.383646145],[-71.52561146,41.383609116],[-71.52567181,41.383568451],[-71.52568844,41.383513987],[-71.525682241,41.383448601],[-71.52561751,41.383434683],[-71.525550991,41.383411422],[-71.525534958,41.383384064],[-71.525565863,41.383333251],[-71.525578678,41.383277327],[-71.525565803,41.38321121],[-71.52554664,41.38322261],[-71.525508076,41.38328205],[-71.525468677,41.383330002],[-71.525417835,41.383372828],[-71.525429964,41.383407325],[-71.525474668,41.383420423],[-71.525488824,41.383440599],[-71.525457323,41.383449107],[-71.525385857,41.383442312],[-71.525325596,41.383472219],[-71.525270879,41.383520097],[-71.52519083,41.383516178],[-71.525111824,41.383505762],[-71.525059223,41.383529946],[-71.5249933,41.383547649],[-71.524924934,41.383514315],[-71.524883956,41.383510575],[-71.524830729,41.383489519],[-71.524855942,41.383435041],[-71.524891555,41.383386403],[-71.524934858,41.383332744],[-71.524948657,41.383271784],[-71.525014669,41.383239761],[-71.525067419,41.383194],[-71.525112659,41.383137509],[-71.525105447,41.383079305],[-71.525147706,41.383034259],[-71.525093406,41.383035466],[-71.52502647,41.383065373],[-71.525024205,41.383114859],[-71.52500096,41.383163556],[-71.524947256,41.383205697],[-71.524901181,41.383250028],[-71.524866462,41.383303732],[-71.52482605,41.383351654],[-71.524748772,41.383359924],[-71.52467531,41.383371115],[-71.524629176,41.383422598],[-71.52460292,41.383489951],[-71.52457577,41.383547306],[-71.524504006,41.38358435],[-71.524430513,41.383596212],[-71.524401218,41.383567378],[-71.524400741,41.383502737],[-71.52439639,41.383443162],[-71.524344355,41.383391261],[-71.524272233,41.383348599],[-71.524195194,41.383325994],[-71.524116009,41.383337155],[-71.524049073,41.383367747],[-71.523986787,41.383409858],[-71.52392447,41.3834555],[-71.523859352,41.38349542],[-71.523775309,41.383519471],[-71.52370733,41.383559391],[-71.52365458,41.383602247],[-71.523590386,41.383644313],[-71.52350527,41.383682758],[-71.523418278,41.383718982],[-71.523338884,41.383752391],[-71.523278922,41.383738488],[-71.523293495,41.383705556],[-71.523246169,41.383660093],[-71.523295015,41.383627996],[-71.523332626,41.383574292],[-71.523370236,41.383515581],[-71.523366779,41.383466035],[-71.523360461,41.383416504],[-71.523385733,41.383349836],[-71.523379505,41.383294508],[-71.523342669,41.383247733],[-71.523310691,41.383192301],[-71.523364425,41.383142292],[-71.523414463,41.383080736],[-71.523387134,41.383036822],[-71.523315936,41.383002058],[-71.523248672,41.382946521],[-71.523264021,41.382935792],[-71.523343205,41.38292177],[-71.523413926,41.382894069],[-71.52348727,41.38290301],[-71.523564577,41.382889688],[-71.52363345,41.382860541],[-71.523676962,41.382903114],[-71.52374059,41.38294141],[-71.523811311,41.382910833],[-71.523890465,41.382904723],[-71.523961693,41.382938042],[-71.524046421,41.382957056],[-71.524087012,41.383007497],[-71.524167061,41.383013591],[-71.52423498,41.382977277],[-71.524300963,41.382950261],[-71.524360329,41.382913888],[-71.524380744,41.382860869],[-71.524401218,41.382801369],[-71.524336338,41.382808954],[-71.524304479,41.382862702],[-71.524240404,41.382888973],[-71.52417165,41.382910922],[-71.524099112,41.382923558],[-71.524025947,41.382889524],[-71.523957461,41.38287124],[-71.523881257,41.382861614],[-71.523804069,41.382857665],[-71.523737162,41.382888287],[-71.52367726,41.382865742],[-71.523635656,41.382819638],[-71.523555547,41.382824332],[-71.523539722,41.382774755],[-71.523483843,41.382726386],[-71.523406535,41.382740423],[-71.523375601,41.382791981],[-71.523333341,41.382841319],[-71.523289561,41.382830352],[-71.523222834,41.382832974],[-71.523179531,41.382886618],[-71.523194283,41.382950604],[-71.52324158,41.383000314],[-71.523272634,41.383055031],[-71.523256183,41.383086532],[-71.523205251,41.383140177],[-71.523200035,41.383203298],[-71.523252994,41.383255199],[-71.523293555,41.383314997],[-71.523278803,41.383374512],[-71.52327165,41.383439809],[-71.52327016,41.383510128],[-71.523249865,41.383549541],[-71.523187578,41.383593082],[-71.523127168,41.383638769],[-71.523041993,41.383682191],[-71.522954941,41.383724928],[-71.522862285,41.383751065],[-71.522781342,41.383740678],[-71.522717834,41.383690879],[-71.522727609,41.383660749],[-71.522780389,41.383615017],[-71.52281034,41.383560583],[-71.522813708,41.383489519],[-71.522787154,41.383473635],[-71.52275911,41.383525908],[-71.522713035,41.383571655],[-71.522661179,41.383620262],[-71.522598892,41.383661643],[-71.522548527,41.383643478],[-71.522510767,41.383597374],[-71.5225178,41.383547857],[-71.522553533,41.383485556],[-71.522584528,41.383420363],[-71.522613585,41.383358032],[-71.52266252,41.383312285],[-71.522736043,41.383298248],[-71.522750527,41.383276775],[-71.522748142,41.383210704],[-71.522728652,41.38313812],[-71.522697806,41.38306047],[-71.522662014,41.383002877],[-71.522616416,41.382983997],[-71.522611231,41.383034945],[-71.522641301,41.383091107],[-71.522652298,41.383152172],[-71.522632688,41.383223146],[-71.522587478,41.383278221],[-71.522540301,41.383342639],[-71.522505432,41.383417174],[-71.522477418,41.383467287],[-71.522472471,41.383466214],[-71.522453636,41.383462176],[-71.522449255,41.383407578],[-71.522472441,41.383353055],[-71.522475481,41.383345947],[-71.522519678,41.3833002],[-71.522546738,41.383245021],[-71.522524297,41.383184657],[-71.522489518,41.383127049],[-71.522472352,41.383077443],[-71.522470862,41.383073151],[-71.522457004,41.383015633],[-71.522409737,41.382963717],[-71.52233848,41.382931828],[-71.522270024,41.382904992],[-71.522268444,41.382860512],[-71.522319376,41.382805407],[-71.522389293,41.382766247],[-71.522465765,41.382735699],[-71.522472233,41.382733792],[-71.522542149,41.382713035],[-71.522614628,41.382711902],[-71.522697687,41.382693589],[-71.5227741,41.382673815],[-71.522846341,41.382704988],[-71.522920638,41.382705331],[-71.522974163,41.382685438],[-71.522974551,41.382635906],[-71.522919625,41.382586122],[-71.522943676,41.382560387],[-71.522985071,41.382506743],[-71.523002535,41.382464945],[-71.52300933,41.382448673],[-71.523014545,41.382387683],[-71.523009241,41.382332385],[-71.522996396,41.382268444],[-71.523019463,41.382240504],[-71.523092955,41.382230774],[-71.523169458,41.382196665],[-71.523195207,41.38216354],[-71.523135245,41.382185757],[-71.523062676,41.382200524],[-71.522985488,41.382191569],[-71.522962451,41.382216617],[-71.522951484,41.382278278],[-71.522942424,41.382344291],[-71.52294004,41.382408217],[-71.522922307,41.38246496],[-71.522869706,41.382509843],[-71.522842616,41.382565737],[-71.522857398,41.382628947],[-71.52282685,41.382635266],[-71.522749662,41.382624894],[-71.522679865,41.382656202],[-71.522624373,41.382681802],[-71.52255109,41.382667109],[-71.522472203,41.382659078],[-71.52239278,41.382683694],[-71.522327691,41.382716417],[-71.522273064,41.382753521],[-71.522222251,41.382792071],[-71.52218467,41.382847935],[-71.522181332,41.382912517],[-71.522193253,41.382972136],[-71.522269279,41.383001193],[-71.522332937,41.383030176],[-71.522370696,41.383082747],[-71.522402585,41.383148924],[-71.522427946,41.383204341],[-71.522402793,41.383249447],[-71.522369981,41.383305296],[-71.522346616,41.383368388],[-71.522332847,41.383422881],[-71.522341043,41.38347818],[-71.522302449,41.383534729],[-71.52224502,41.383569658],[-71.522173196,41.383606702],[-71.522091925,41.383647978],[-71.522002041,41.383686364],[-71.521934181,41.383705482],[-71.521856844,41.383720219],[-71.521776676,41.383735657],[-71.521700323,41.383751124],[-71.521623939,41.383766606],[-71.521520793,41.383792013],[-71.521448165,41.383815393],[-71.521369815,41.383837327],[-71.521345168,41.383819252],[-71.521325678,41.383754581],[-71.52131474,41.383687019],[-71.521311343,41.383628845],[-71.521339357,41.383578002],[-71.521393836,41.383563146],[-71.521477938,41.383534104],[-71.521567762,41.383505747],[-71.521648139,41.383467361],[-71.52172941,41.383428931],[-71.521730483,41.383411676],[-71.521669745,41.383381292],[-71.521574616,41.38335073],[-71.521481514,41.383310825],[-71.521417946,41.383272499],[-71.52136451,41.383280173],[-71.521339327,41.383333191],[-71.521371275,41.38339293],[-71.521363407,41.383428782],[-71.521302432,41.383423492],[-71.521224111,41.383444712],[-71.521164685,41.383483961],[-71.521129072,41.383532599],[-71.521150827,41.383552074],[-71.52122125,41.383572459],[-71.521239847,41.383633569],[-71.521243215,41.383694634],[-71.521262795,41.383747831],[-71.521274716,41.383808181],[-71.521254301,41.383863419],[-71.521204442,41.38390553],[-71.521136582,41.38392821],[-71.521064878,41.383955911],[-71.520996064,41.383976415],[-71.520915896,41.383991137],[-71.520822346,41.384007961],[-71.520723134,41.384022638],[-71.520644069,41.384010792],[-71.52057007,41.383965969],[-71.520515054,41.383929878],[-71.520450532,41.383892238],[-71.520395577,41.38384895],[-71.520373136,41.383791387],[-71.52037257,41.383736849],[-71.520351022,41.383687198],[-71.520302832,41.383633852],[-71.520263255,41.383571967],[-71.520228475,41.383506507],[-71.5201841,41.38345246],[-71.520150125,41.38340348],[-71.520106673,41.38335374],[-71.520124286,41.383294255],[-71.520174176,41.383252114],[-71.520260036,41.383242428],[-71.520344824,41.383249253],[-71.52043432,41.383261859],[-71.520507604,41.383277953],[-71.52058655,41.383298412],[-71.520632893,41.383345231],[-71.520671576,41.383401424],[-71.520711184,41.38345544],[-71.520756543,41.383507341],[-71.520811528,41.383551389],[-71.520859778,41.383595347],[-71.520920843,41.383584842],[-71.520988762,41.383555695],[-71.521032035,41.383505628],[-71.521077245,41.383449122],[-71.52112627,41.383396909],[-71.521168619,41.38334468],[-71.52121377,41.383299649],[-71.521196693,41.383289516],[-71.521122485,41.383269787],[-71.521078467,41.383292601],[-71.521014452,41.383312419],[-71.520944983,41.38329491],[-71.520902246,41.383275315],[-71.520858854,41.383212686],[-71.520875514,41.383155316],[-71.520943224,41.383147717],[-71.520972997,41.383117676],[-71.520928472,41.383084476],[-71.520880133,41.383044809],[-71.52092427,41.38300693],[-71.520960927,41.382952511],[-71.52097562,41.382898033],[-71.520983666,41.382841364],[-71.52099371,41.382775337],[-71.520993263,41.382704958],[-71.520995677,41.382641077],[-71.521030456,41.38257882],[-71.521095544,41.382542476],[-71.521123648,41.38248229],[-71.521139324,41.382465303],[-71.521178454,41.382422909],[-71.521236807,41.382390857],[-71.521255344,41.382330641],[-71.521302432,41.382281318],[-71.521373183,41.382256493],[-71.521376282,41.382227764],[-71.521390855,41.382185504],[-71.521454006,41.382154152],[-71.521525711,41.382128641],[-71.521582633,41.382162631],[-71.521623224,41.382212356],[-71.521671444,41.382266387],[-71.521727324,41.382314727],[-71.521788329,41.382360905],[-71.521785468,41.382317841],[-71.521756381,41.38225311],[-71.521714807,41.382206276],[-71.521662712,41.382160798],[-71.521622151,41.382100329],[-71.521644324,41.382071689],[-71.521726459,41.382049054],[-71.521772563,41.382004753],[-71.521783501,41.381941646],[-71.521794438,41.381884247],[-71.521842211,41.381870106],[-71.521914721,41.381861076],[-71.521981627,41.381835535],[-71.522008777,41.381777465],[-71.521993071,41.381710634],[-71.52201736,41.381646857],[-71.522059679,41.381593913],[-71.522082031,41.381539464],[-71.522104412,41.381480679],[-71.522103757,41.3814383],[-71.52211377,41.381375149],[-71.522125751,41.38130343],[-71.522117674,41.381233767],[-71.522087693,41.38116686],[-71.52205193,41.381106436],[-71.522005647,41.381050915],[-71.521957487,41.380988255],[-71.521917939,41.380929247],[-71.521873504,41.380878091],[-71.521814644,41.380845502],[-71.521744251,41.380826533],[-71.521663398,41.380803958],[-71.521590829,41.38082087],[-71.521520108,41.38084282],[-71.521455079,41.380876288],[-71.521395028,41.380877495],[-71.521321744,41.380862772],[-71.521240801,41.380852401],[-71.521146476,41.380843371],[-71.521057934,41.380836517],[-71.520973146,41.380828992],[-71.520891249,41.380817875],[-71.520817965,41.380802467],[-71.520743787,41.380777732],[-71.520703226,41.380723029],[-71.520755887,41.380690932],[-71.520819932,41.380666807],[-71.520881176,41.380635485],[-71.520939708,41.38058117],[-71.520968705,41.380530298],[-71.5209921,41.38046436],[-71.521009803,41.380389065],[-71.521018952,41.380315885],[-71.521032721,41.380256355],[-71.521048456,41.380188927],[-71.521052897,41.380113572],[-71.521059036,41.380051881],[-71.521105051,41.380016178],[-71.521181464,41.380000696],[-71.521273971,41.37999177],[-71.521377921,41.379989341],[-71.521482766,41.379983336],[-71.521580964,41.379983023],[-71.521653175,41.380013496],[-71.52169475,41.3800589],[-71.521745831,41.380115822],[-71.521806508,41.380158439],[-71.521900773,41.380166724],[-71.521982729,41.380167097],[-71.522081792,41.380176842],[-71.522167593,41.380174324],[-71.522250772,41.380145997],[-71.522336572,41.380140603],[-71.522404075,41.380160972],[-71.522366613,41.380201027],[-71.522286355,41.380230859],[-71.522221357,41.380254254],[-71.522148669,41.380284816],[-71.522094041,41.380323365],[-71.522069722,41.380387843],[-71.522046566,41.380425796],[-71.521988094,41.380470052],[-71.521957159,41.380528092],[-71.521970183,41.380570531],[-71.522028059,41.380606651],[-71.522043675,41.380558625],[-71.522070765,41.380502015],[-71.522124529,41.380454153],[-71.522148818,41.380392492],[-71.522193104,41.380335286],[-71.522259146,41.380301088],[-71.522343218,41.38026987],[-71.522412032,41.380247191],[-71.522438556,41.380266681],[-71.522462964,41.380320624],[-71.522471368,41.380333498],[-71.522500634,41.380378231],[-71.522546858,41.380441561],[-71.5225963,41.380460471],[-71.522662222,41.380438507],[-71.522740692,41.380394295],[-71.522831529,41.38035737],[-71.522903293,41.380323216],[-71.522915065,41.38027662],[-71.522862941,41.380233288],[-71.522810906,41.380187124],[-71.522768348,41.380141035],[-71.522727758,41.380087703],[-71.522691965,41.380035833],[-71.522657067,41.379986897],[-71.522620231,41.379940078],[-71.522577733,41.379888922],[-71.522532314,41.379840642],[-71.522484034,41.379796609],[-71.522471189,41.379784375],[-71.522438616,41.379753351],[-71.522379041,41.379689932],[-71.522340417,41.379629448],[-71.522350341,41.379573509],[-71.522335559,41.379518151],[-71.522288352,41.379458368],[-71.522236347,41.379405022],[-71.522170782,41.379375353],[-71.52208513,41.37935631],[-71.521986187,41.379330739],[-71.521901548,41.379303083],[-71.521846682,41.379248321],[-71.52180329,41.379190668],[-71.521767408,41.379143834],[-71.521697164,41.379106238],[-71.521631598,41.379078656],[-71.521564156,41.379049674],[-71.521472901,41.379014134],[-71.521392018,41.378997952],[-71.52130717,41.379001901],[-71.521237284,41.379043952],[-71.521194994,41.379088283],[-71.521227032,41.379137948],[-71.521272391,41.379188418],[-71.52131775,41.379243895],[-71.521344006,41.379298553],[-71.521397024,41.379344761],[-71.521428049,41.379399434],[-71.521440029,41.379456192],[-71.521466315,41.379506558],[-71.521504104,41.379554808],[-71.521510273,41.37962231],[-71.521506876,41.379694104],[-71.521492124,41.379751489],[-71.521466881,41.379815266],[-71.521460682,41.379876256],[-71.521391064,41.379886016],[-71.521305293,41.379882053],[-71.521232843,41.379881009],[-71.521131784,41.379887745],[-71.521065265,41.379859477],[-71.521025568,41.379813358],[-71.521053493,41.379776895],[-71.521095783,41.379729673],[-71.521116257,41.379670173],[-71.521136761,41.379607111],[-71.521121949,41.379546717],[-71.521072805,41.379494101],[-71.521005392,41.379453629],[-71.520925611,41.379419535],[-71.520838052,41.379402652],[-71.520753205,41.379402995],[-71.520680755,41.379404128],[-71.520605385,41.379410982],[-71.520515621,41.379437894],[-71.520447612,41.37948209],[-71.520419508,41.379541561],[-71.520438135,41.379597634],[-71.520502657,41.379642427],[-71.520566314,41.379669964],[-71.520630866,41.379697531],[-71.520684928,41.379736528],[-71.520667583,41.379761621],[-71.520591974,41.379798591],[-71.520517379,41.379837051],[-71.520439148,41.379845321],[-71.5203619,41.37985],[-71.5202865,41.379861906],[-71.520217717,41.37988025],[-71.520143241,41.379900753],[-71.520063072,41.379919797],[-71.519980937,41.379937425],[-71.5199036,41.379953563],[-71.519802392,41.379973963],[-71.51969856,41.379973516],[-71.519594729,41.37996231],[-71.519545794,41.379947722],[-71.519546539,41.379946455],[-71.520140529,41.379043445],[-71.520140618,41.3790434],[-71.520177543,41.379020751],[-71.520200551,41.378996447],[-71.520224541,41.378971443],[-71.520301759,41.378941104],[-71.520308733,41.378938779],[-71.520373881,41.378893808],[-71.520429701,41.37884897],[-71.520434529,41.378845453],[-71.520467728,41.378814712],[-71.520489037,41.378795236],[-71.520505309,41.378775969],[-71.520538539,41.37873745],[-71.520556211,41.378710344],[-71.520579517,41.378675744],[-71.520598531,41.378645793],[-71.520608485,41.378630131],[-71.520611525,41.378625453],[-71.520664215,41.378562734],[-71.520672977,41.37855272],[-71.520695001,41.378527582],[-71.520730883,41.37848337],[-71.520737529,41.378475443],[-71.520738572,41.378457531],[-71.520738602,41.378456995],[-71.520739734,41.378440246],[-71.521591544,41.377537444],[-71.522704601,41.376824692],[-71.522708446,41.376824737],[-71.52280283,41.376824409],[-71.522907704,41.376817688],[-71.523008764,41.376813099],[-71.523099303,41.376815617],[-71.523200303,41.376820356],[-71.523306012,41.376829416],[-71.52340126,41.376838431],[-71.523488939,41.376839504],[-71.523566991,41.376853496],[-71.523646951,41.376869619],[-71.523729771,41.376878589],[-71.523814619,41.376877546],[-71.523892671,41.376891509],[-71.523984998,41.376911968],[-71.524060279,41.376915187],[-71.524132639,41.376919076],[-71.524226934,41.376929551],[-71.524304122,41.376934156],[-71.524379373,41.37693879],[-71.524451762,41.37694557],[-71.524527967,41.376947314],[-71.524602205,41.376959845],[-71.524675697,41.376951531],[-71.524750024,41.376954004],[-71.524835795,41.376956522],[-71.524914891,41.37695758],[-71.524993926,41.376962259],[-71.525086284,41.376973376],[-71.52517584,41.376983806],[-71.525259703,41.376984179],[-71.52533409,41.376980186],[-71.525422573,41.376994938],[-71.525494158,41.376986623],[-71.525574267,41.376980498],[-71.525661886,41.376992345],[-71.525731623,41.376973286],[-71.525810748,41.376964986],[-71.525881439,41.376942322],[-71.525967121,41.376956299],[-71.526038736,41.376943678],[-71.526118815,41.376936853],[-71.526199818,41.37693505],[-71.526270509,41.376916662],[-71.526351571,41.376911297],[-71.526429623,41.376927376],[-71.526484013,41.376914695],[-71.526560217,41.376923651],[-71.526653558,41.37693049],[-71.526740283,41.376933008],[-71.526816547,41.376931176],[-71.526904345,41.376918629],[-71.526976794,41.376916066],[-71.52705875,41.376913533],[-71.52713123,41.376910985],[-71.527218848,41.376916379],[-71.527305573,41.376923189],[-71.527385771,41.376904145],[-71.527471572,41.376895919],[-71.527524084,41.376886785],[-71.527600318,41.376889274],[-71.527674705,41.376882404],[-71.527749121,41.376873389],[-71.527827322,41.376869395],[-71.527908355,41.376864731],[-71.527982742,41.376858562],[-71.528054267,41.376852408],[-71.528149664,41.376842037],[-71.52823928,41.376843169],[-71.528323114,41.376845643],[-71.528403163,41.37684457],[-71.528447956,41.376845464],[-71.528528064,41.37684004],[-71.528603315,41.376845419],[-71.528681517,41.376838535],[-71.52877295,41.376849011],[-71.528851181,41.376837105],[-71.528933167,41.376839593],[-71.529016048,41.376842141],[-71.529089391,41.3768453],[-71.529161841,41.376847044],[-71.529237121,41.376846626],[-71.529322952,41.376843378],[-71.529431671,41.376836672],[-71.52945298,41.376837403],[-71.529527873,41.376839966],[-71.529603243,41.37682882],[-71.529678643,41.376819044],[-71.529765308,41.376828775],[-71.529837847,41.376815394],[-71.5299142,41.376794934],[-71.52998668,41.376790196],[-71.530057311,41.376780435],[-71.530135602,41.376760662],[-71.530220538,41.37674737],[-71.530323565,41.376733467],[-71.530397981,41.376724437],[-71.530482888,41.376716182],[-71.530564904,41.376707211],[-71.530640274,41.376698896],[-71.53071177,41.376692012],[-71.530814797,41.376683131],[-71.530902594,41.376666248],[-71.530988604,41.376640067],[-71.531058311,41.376622394],[-71.531153589,41.376619935],[-71.531237602,41.376604453],[-71.531308293,41.376581788],[-71.531394213,41.37656635],[-71.531466872,41.376537219],[-71.531546205,41.376501665],[-71.531621546,41.376496956],[-71.531696081,41.376473561],[-71.531768709,41.376449481],[-71.531848848,41.376435429],[-71.531923324,41.376417071],[-71.532012075,41.376401708],[-71.532088488,41.376382604],[-71.532162994,41.37636067],[-71.532232732,41.376333669],[-71.532303482,41.376307413],[-71.532385588,41.376283333],[-71.532464892,41.376259282],[-71.532562375,41.376225233],[-71.532589346,41.376216829],[-71.532639742,41.376201108],[-71.53270483,41.376164794],[-71.532779336,41.376139224],[-71.532869041,41.376124561],[-71.532937855,41.37609756],[-71.533016264,41.376064852],[-71.5330832,41.376036406],[-71.533155829,41.376007304],[-71.533250511,41.375965327],[-71.533339411,41.375929117],[-71.533405393,41.375902086],[-71.533423156,41.375887915],[-71.533459067,41.375859231],[-71.533514678,41.375816405],[-71.533582538,41.375790134],[-71.533642799,41.375756606],[-71.533709854,41.375713095],[-71.533772111,41.37567246],[-71.533831477,41.375635341],[-71.533888906,41.375601858],[-71.53397122,41.375551939],[-71.534032464,41.375519171],[-71.534093678,41.37549001],[-71.534172148,41.375447243],[-71.534239143,41.375410914],[-71.534278363,41.375393838],[-71.534337699,41.375358179],[-71.53439042,41.375317499],[-71.534439325,41.375273943],[-71.534504473,41.375230387],[-71.534570545,41.375189036],[-71.534646988,41.375161365],[-71.534731925,41.375142306],[-71.534809232,41.375131145],[-71.534903705,41.375115752],[-71.535006762,41.375101835],[-71.535084039,41.375087053],[-71.535153002,41.375039235],[-71.535215378,41.374982059],[-71.535269707,41.374978706],[-71.535372734,41.374972656],[-71.535442442,41.374952123],[-71.535518736,41.374943137],[-71.535625458,41.374947175],[-71.535705537,41.374948919],[-71.535778165,41.374919087],[-71.535861373,41.374875978],[-71.53594172,41.374841511],[-71.536023021,41.374802351],[-71.53610903,41.374768272],[-71.536189258,41.374747038],[-71.536261708,41.374747336],[-71.536347359,41.374759182],[-71.536418319,41.374766394],[-71.536491543,41.374732926],[-71.536550373,41.374689609],[-71.536594808,41.374636412],[-71.536614656,41.374577373],[-71.536661536,41.374535248],[-71.536712885,41.374495983],[-71.536764324,41.374455288],[-71.536811203,41.374413848],[-71.536864609,41.374367699],[-71.536897928,41.374319166],[-71.536899388,41.374261901],[-71.536892712,41.374200374],[-71.536909491,41.374153718],[-71.536910862,41.374099195],[-71.536900133,41.374052793],[-71.53686288,41.374005318],[-71.536839604,41.373947695],[-71.536847562,41.373887092],[-71.536880195,41.373828888],[-71.536923468,41.373785332],[-71.536932319,41.373724729],[-71.5369412,41.373665482],[-71.536970168,41.373605877],[-71.537011832,41.37355262],[-71.537060618,41.373509169],[-71.537125528,41.373477682],[-71.537162483,41.373467177],[-71.537184864,41.373379856],[-71.537237257,41.373337135],[-71.537325472,41.37332736],[-71.537404239,41.373327136],[-71.537485123,41.373317227],[-71.537576228,41.373302013],[-71.537660658,41.373297676],[-71.537745148,41.373289242],[-71.537827134,41.373271808],[-71.537906557,41.373248771],[-71.537988663,41.373225808],[-71.538082689,41.37320441],[-71.538170278,41.373181492],[-71.538244069,41.373163268],[-71.538320482,41.373148501],[-71.538392365,41.373132974],[-71.538466096,41.373116761],[-71.538549423,41.373117968],[-71.538632751,41.373119861],[-71.538712263,41.373127222],[-71.538785547,41.373128295],[-71.53886342,41.373129442],[-71.538941264,41.37313053],[-71.53901732,41.373129547],[-71.539090633,41.373129219],[-71.539167494,41.373133793],[-71.539240003,41.373129308],[-71.539328098,41.37312369],[-71.539423645,41.373113319],[-71.539504558,41.373102799],[-71.539591044,41.373088151],[-71.539670378,41.3730672],[-71.539738923,41.37303783],[-71.539813459,41.373025805],[-71.539886415,41.373003393],[-71.539961964,41.372987255],[-71.54004705,41.37299192],[-71.540136874,41.37299113],[-71.540229648,41.372980744],[-71.540304959,41.372974262],[-71.540381998,41.372971222],[-71.540462673,41.372970298],[-71.540552348,41.372975737],[-71.540651977,41.372983366],[-71.540746272,41.372987509],[-71.540820301,41.372995466],[-71.540901214,41.373019427],[-71.54096365,41.373049989],[-71.541043371,41.373085663],[-71.541112989,41.373121858],[-71.541165084,41.373164058],[-71.541234314,41.373179525],[-71.541309983,41.373194456],[-71.541360021,41.37320964],[-71.541430265,41.37322101],[-71.541511536,41.373231843],[-71.541584641,41.373239771],[-71.541667849,41.373246491],[-71.541765869,41.373247921],[-71.541860193,41.373249307],[-71.541945457,41.373247057],[-71.542038918,41.373247012],[-71.54212594,41.373248309],[-71.542200297,41.373243824],[-71.542288423,41.373235449],[-71.542368144,41.373235211],[-71.54244417,41.373236299],[-71.54251653,41.373238042],[-71.542592585,41.373237759],[-71.542672604,41.373225793],[-71.542751998,41.373238683],[-71.54283002,41.373232886],[-71.542900831,41.373223573],[-71.542972922,41.373234272],[-71.54304117,41.373253182],[-71.54310444,41.373287246],[-71.543170512,41.373318568],[-71.543254256,41.373340473],[-71.543315768,41.373372421],[-71.543385237,41.373414129],[-71.543458402,41.373455912],[-71.543548316,41.373488262],[-71.543637216,41.373521984],[-71.543715894,41.373563856],[-71.543797433,41.373599529],[-71.54388383,41.373626336],[-71.543967366,41.373655841],[-71.54404819,41.373683885],[-71.544130862,41.373711988],[-71.544222683,41.373740241],[-71.544317216,41.37377058],[-71.544404328,41.373802915],[-71.54448238,41.373833016],[-71.544554174,41.373856843],[-71.544638962,41.373873234],[-71.544712812,41.373888806],[-71.544784874,41.373900175],[-71.544853002,41.373922557],[-71.544920981,41.373952508],[-71.544992566,41.373948708],[-71.545071065,41.373960212],[-71.54514721,41.373993754],[-71.545218647,41.374029994],[-71.545289665,41.374047548],[-71.545373708,41.37405774],[-71.545463264,41.374067336],[-71.54552868,41.374089658],[-71.545613468,41.37410675],[-71.545679331,41.374144942],[-71.545751661,41.374148086],[-71.545830101,41.374162331],[-71.545877099,41.374188527],[-71.545967907,41.374184296],[-71.546057731,41.374183536],[-71.546087921,41.374184161],[-71.546159357,41.374185711],[-71.546248108,41.37419109],[-71.546334893,41.374201357],[-71.54644379,41.37420772],[-71.54652071,41.374210194],[-71.546616822,41.37421228],[-71.546708435,41.374214277],[-71.546781659,41.374217436],[-71.546862125,41.374223411],[-71.54693979,41.374231428],[-71.547041178,41.37424393],[-71.547144443,41.374254376],[-71.547247946,41.374256551],[-71.547336757,41.374257848],[-71.547417283,41.374263138],[-71.547499657,41.374266386],[-71.547581673,41.374285504],[-71.547663867,41.374296367],[-71.54775095,41.374294177],[-71.547829658,41.374296665],[-71.547915578,41.374306887],[-71.547994256,41.374310777],[-71.548072159,41.374311194],[-71.548164666,41.374312505],[-71.548244417,41.374309525],[-71.548328668,41.374310747],[-71.548402011,41.374311104],[-71.548491061,41.374304801],[-71.548564345,41.374304473],[-71.548648387,41.374313951],[-71.548730046,41.374346182],[-71.548790634,41.374378115],[-71.548826903,41.374429718],[-71.548829377,41.374432072],[-71.548885077,41.374484375],[-71.548953265,41.374506041],[-71.549040228,41.374509379],[-71.549103498,41.374541342],[-71.549176425,41.374521017],[-71.549266428,41.374514014],[-71.549357146,41.374513924],[-71.549430996,41.37452881],[-71.549504727,41.374509841],[-71.549591273,41.374493152],[-71.549669921,41.374500483],[-71.549736619,41.374507651],[-71.549822241,41.374492347],[-71.549899966,41.374496877],[-71.549982727,41.374521524],[-71.550051957,41.374537706],[-71.550130904,41.37453264],[-71.550222397,41.374538779],[-71.550305247,41.374558613],[-71.550396949,41.374555096],[-71.550481319,41.374552175],[-71.550571144,41.374551356],[-71.550651044,41.374544948],[-71.550731987,41.374532282],[-71.55082193,41.374525324],[-71.550923854,41.374517798],[-71.551013887,41.374508724],[-71.551100194,41.37450099],[-71.551201135,41.374494851],[-71.551301301,41.374483868],[-71.551390529,41.374469951],[-71.551476121,41.374453947],[-71.551566511,41.374431744],[-71.551665902,41.374414548],[-71.551756918,41.374402046],[-71.551845282,41.374387428],[-71.551939994,41.374372929],[-71.552025616,41.374356881],[-71.552098185,41.374350339],[-71.552179635,41.374353588],[-71.552255094,41.374342233],[-71.552341759,41.374320015],[-71.552431166,41.374298513],[-71.552517891,41.37427558],[-71.552606523,41.37424925],[-71.552709788,41.374223813],[-71.552791536,41.374214649],[-71.552866846,41.374208137],[-71.552935988,41.37419188],[-71.553019822,41.374173746],[-71.553121001,41.374157965],[-71.553213,41.374143392],[-71.553293079,41.37412934],[-71.553382337,41.374114737],[-71.553479761,41.374101654],[-71.553566158,41.374091133],[-71.553638905,41.374077722],[-71.553717136,41.374064326],[-71.55381003,41.374051154],[-71.553890944,41.374038488],[-71.553962648,41.374029204],[-71.554053724,41.374015301],[-71.554107755,41.373979509],[-71.554176122,41.373957694],[-71.554256737,41.373959556],[-71.554347426,41.373958752],[-71.554417551,41.373940483],[-71.554520726,41.373918444],[-71.554602593,41.373905152],[-71.554678917,41.373893127],[-71.554751635,41.373881057],[-71.554857194,41.373874262],[-71.55494678,41.373881087],[-71.55502212,41.373874545],[-71.555114269,41.373852432],[-71.555199921,41.373834297],[-71.555304736,41.373820618],[-71.555376321,41.373816818],[-71.555459201,41.373800769],[-71.555555046,41.373777956],[-71.555627733,41.373765901],[-71.555705011,41.373754561],[-71.555805236,41.373740181],[-71.555885971,41.3737351],[-71.555967808,41.373723149],[-71.556034684,41.373688221],[-71.556091428,41.373654529],[-71.556171596,41.373637721],[-71.55627051,41.37363705],[-71.556348473,41.373634726],[-71.556435704,41.373627692],[-71.556511164,41.373614267],[-71.556586117,41.373585671],[-71.556666464,41.373561293],[-71.556767642,41.373544782],[-71.556847632,41.373534173],[-71.556926191,41.373507723],[-71.556999713,41.373499081],[-71.557094932,41.373500481],[-71.557166576,41.37349388],[-71.557262599,41.373466253],[-71.557329267,41.373437539],[-71.557401299,41.373415768],[-71.55749771,41.373406798],[-71.557590783,41.373385355],[-71.557660043,41.373363569],[-71.557754129,41.3733401],[-71.557846248,41.373320684],[-71.557938129,41.373309568],[-71.558011621,41.373303041],[-71.558098108,41.373287693],[-71.55818373,41.373272374],[-71.558282435,41.373245463],[-71.558380067,41.373224109],[-71.558474153,41.37319988],[-71.558546036,41.373184338],[-71.558625072,41.373173758],[-71.558701396,41.373162404],[-71.558772266,41.373151705],[-71.558843017,41.373142332],[-71.558900118,41.37313275],[-71.558941513,41.373125821],[-71.559026629,41.373128399],[-71.559104115,41.373106733],[-71.559179872,41.373082981],[-71.559277534,41.373060897],[-71.559363157,41.373045549],[-71.5594441,41.373031542],[-71.559518307,41.372996718],[-71.559592158,41.372974306],[-71.559685826,41.372967362],[-71.559777617,41.372959688],[-71.559865355,41.372932658],[-71.559934974,41.372897059],[-71.560020596,41.372879639],[-71.560104966,41.372877389],[-71.560184032,41.372867495],[-71.560266912,41.37284863],[-71.560346991,41.372834593],[-71.560440809,41.372821435],[-71.560522795,41.372803971],[-71.560611129,41.372788668],[-71.560706824,41.372772768],[-71.560777605,41.37276274],[-71.560848475,41.37275067],[-71.56091848,41.372736454],[-71.561009735,41.37271294],[-71.561107606,41.372684643],[-71.561187774,41.372666463],[-71.561267912,41.37265031],[-71.561360329,41.372618526],[-71.561431259,41.372602299],[-71.561527014,41.372584328],[-71.561622828,41.3725629],[-71.561702281,41.372537792],[-71.56177333,41.372518808],[-71.561864495,41.372499391],[-71.56193915,41.372481152],[-71.562021405,41.372453317],[-71.562090188,41.372415662],[-71.562185138,41.372393534],[-71.562280804,41.372376263],[-71.562356293,41.372362152],[-71.562431246,41.372333556],[-71.562519968,41.372302383],[-71.562593937,41.372284278]],[[-71.52464202,41.378012478],[-71.524634182,41.378041893],[-71.524611831,41.378097042],[-71.524621874,41.378151655],[-71.524641484,41.378206298],[-71.524666816,41.378266007],[-71.524693996,41.378323555],[-71.524719298,41.378379643],[-71.524762839,41.378424346],[-71.524834216,41.378439724],[-71.524867266,41.378480077],[-71.524860144,41.378540352],[-71.524824739,41.378558859],[-71.524809271,41.378588989],[-71.524742365,41.378611639],[-71.524782121,41.378649145],[-71.524857163,41.37868391],[-71.524927437,41.378717244],[-71.524979502,41.378766999],[-71.525058419,41.37879391],[-71.525132477,41.37883012],[-71.525202662,41.378874913],[-71.525258601,41.37891607],[-71.525304884,41.378975838],[-71.525312066,41.379034728],[-71.5253115,41.379106522],[-71.525295764,41.379171088],[-71.525272459,41.379229873],[-71.525241524,41.379286438],[-71.525194407,41.379342228],[-71.525151104,41.379403785],[-71.525111645,41.379454583],[-71.525076866,41.379511878],[-71.525083095,41.379570782],[-71.525095016,41.379638314],[-71.52508688,41.379702896],[-71.525039852,41.379747212],[-71.524974674,41.379792869],[-71.524917334,41.379812002],[-71.524839342,41.379790887],[-71.524762303,41.379766837],[-71.524687231,41.37973924],[-71.524644524,41.379716799],[-71.524631709,41.379647106],[-71.524599791,41.379578814],[-71.524565935,41.379516885],[-71.52453202,41.379465774],[-71.524486661,41.379411012],[-71.524427086,41.379346877],[-71.524362743,41.379283428],[-71.524297386,41.379228592],[-71.52422902,41.379198164],[-71.524169266,41.379153401],[-71.524109602,41.379103586],[-71.524039388,41.379063815],[-71.523974776,41.379032657],[-71.523926646,41.378970012],[-71.523878336,41.378929585],[-71.523804367,41.378883332],[-71.523753196,41.378839314],[-71.523711622,41.37879391],[-71.523671985,41.378741309],[-71.523629427,41.378695235],[-71.52357924,41.378649801],[-71.523562521,41.378592968],[-71.523533374,41.378537565],[-71.52350527,41.378472865],[-71.523509383,41.378434077],[-71.523488879,41.378370866],[-71.523475021,41.378312618],[-71.523449749,41.378251523],[-71.523381412,41.378211007],[-71.523299515,41.378204897],[-71.523247421,41.378160879],[-71.523181945,41.378122583],[-71.523099929,41.378125072],[-71.52307868,41.378162324],[-71.523099244,41.378220558],[-71.523168564,41.378252462],[-71.523198694,41.378304258],[-71.523218244,41.378361091],[-71.523191392,41.37838392],[-71.523177862,41.378410429],[-71.523201287,41.378464371],[-71.523215175,41.378516838],[-71.523254842,41.378570125],[-71.523278266,41.378622651],[-71.523296863,41.378683776],[-71.523257434,41.378733099],[-71.523280948,41.378771961],[-71.523333937,41.378826782],[-71.523382217,41.378869325],[-71.523455143,41.378931403],[-71.523513824,41.378984749],[-71.52356866,41.379044577],[-71.523600668,41.379098564],[-71.523631662,41.379159689],[-71.523654044,41.379225135],[-71.523671687,41.37928839],[-71.523680747,41.379350141],[-71.52368027,41.379415482],[-71.523679793,41.379476503],[-71.523681283,41.379535392],[-71.523657858,41.37960422],[-71.523587912,41.379651323],[-71.523516357,41.37966533],[-71.523421019,41.379669949],[-71.523330271,41.379696861],[-71.523252726,41.379738867],[-71.523202777,41.379791096],[-71.523183197,41.379857033],[-71.523189425,41.379919529],[-71.523237556,41.379978597],[-71.523290634,41.38002117],[-71.523334056,41.380075231],[-71.523363113,41.380142093],[-71.523378789,41.380214691],[-71.523394555,41.38027291],[-71.523416996,41.380330399],[-71.523441404,41.380382925],[-71.523461014,41.380436853],[-71.523475856,41.38049005],[-71.523495346,41.380558342],[-71.523495793,41.38063015],[-71.523495346,41.380688265],[-71.523501515,41.380755067],[-71.523524791,41.380828425],[-71.523557574,41.38090609],[-71.523597091,41.380977303],[-71.523632824,41.381042093],[-71.523671478,41.381091803],[-71.523718774,41.381138667],[-71.52376321,41.381191269],[-71.523809522,41.38124384],[-71.523850143,41.38129425],[-71.523885995,41.38134326],[-71.523922771,41.381392226],[-71.523977548,41.381462812],[-71.524050504,41.381522],[-71.524113148,41.381555319],[-71.524200559,41.38159655],[-71.524276644,41.381615564],[-71.524295479,41.381646529],[-71.524262816,41.381682992],[-71.524255604,41.381753296],[-71.524310857,41.381756425],[-71.524397492,41.381771132],[-71.524499506,41.381771594],[-71.524604261,41.381779909],[-71.524676532,41.381806791],[-71.524688661,41.381842718],[-71.524647236,41.381894231],[-71.524599224,41.381941408],[-71.524554938,41.381999388],[-71.524559408,41.382047504],[-71.524603784,41.382100835],[-71.524653971,41.382142648],[-71.524731755,41.382195398],[-71.524790555,41.38223657],[-71.524862677,41.382276371],[-71.524960667,41.382304072],[-71.525039971,41.382279262],[-71.525111496,41.382272393],[-71.525193512,41.382266283],[-71.52525714,41.382300302],[-71.52533409,41.382334366],[-71.525367528,41.382324472],[-71.525437385,41.382283837],[-71.525522232,41.382282764],[-71.525594831,41.382264405],[-71.525650442,41.382220119],[-71.525692821,41.382165745],[-71.52575326,41.382111445],[-71.525783449,41.38202256],[-71.525793552,41.381946489],[-71.525725216,41.381912455],[-71.525652915,41.381888449],[-71.525591195,41.381860912],[-71.52549994,41.381821066],[-71.525405824,41.381786942],[-71.525309861,41.381752044],[-71.525231838,41.381729454],[-71.525183141,41.381740019],[-71.525126636,41.381777123],[-71.525038809,41.381794691],[-71.524950206,41.381792873],[-71.524865448,41.381781027],[-71.52479136,41.381743371],[-71.52472195,41.381721571],[-71.524661243,41.381678924],[-71.524631143,41.381627113],[-71.524602979,41.381569549],[-71.524571031,41.381507665],[-71.524531573,41.381432161],[-71.524459481,41.381386593],[-71.524370968,41.38136971],[-71.524290204,41.381333485],[-71.524234414,41.381273642],[-71.524253815,41.381227046],[-71.524319768,41.381204396],[-71.52441144,41.381183967],[-71.524507731,41.381178617],[-71.524589628,41.381190449],[-71.524667501,41.38123028],[-71.524744511,41.381254271],[-71.524823666,41.381248146],[-71.524846733,41.381225988],[-71.524853885,41.381162152],[-71.524908483,41.381125048],[-71.524972647,41.381084412],[-71.525045246,41.381062463],[-71.525129169,41.381059214],[-71.525176257,41.381009147],[-71.525250643,41.381003007],[-71.525287896,41.380993828],[-71.525339693,41.38094379],[-71.525405645,41.38091965],[-71.525474459,41.380899847],[-71.525548935,41.380881488],[-71.525627315,41.380850986],[-71.525656313,41.380796522],[-71.525629103,41.38074258],[-71.525597095,41.380685717],[-71.525621176,41.380654231],[-71.525682509,41.380605698],[-71.525758177,41.380557194],[-71.525835603,41.380527347],[-71.525915533,41.380544186],[-71.525947601,41.380594581],[-71.52594614,41.380662069],[-71.525920153,41.38069573],[-71.525865465,41.380745023],[-71.525812685,41.380792886],[-71.525783539,41.380860955],[-71.525782019,41.38093777],[-71.52581197,41.381011844],[-71.525881171,41.381063834],[-71.525962114,41.38107422],[-71.525973976,41.381020442],[-71.525988728,41.38095662],[-71.526000589,41.380899921],[-71.526011556,41.380836084],[-71.5260216,41.380769387],[-71.526040286,41.380691916],[-71.526057005,41.380620882],[-71.526061237,41.380565628],[-71.52606833,41.380511805],[-71.526085913,41.380449459],[-71.526105434,41.380387798],[-71.526109785,41.380315304],[-71.526127547,41.380237103],[-71.526146054,41.380183354],[-71.526146472,41.380126685],[-71.526134551,41.380062684],[-71.526139826,41.379997417],[-71.526143074,41.379942134],[-71.526150197,41.379886851],[-71.526169688,41.37982522],[-71.526190192,41.379763559],[-71.526195407,41.379701123],[-71.526197761,41.379642248],[-71.526203871,41.37958701],[-71.526214778,41.379532486],[-71.52621901,41.379475087],[-71.526221365,41.379417658],[-71.526223809,41.379342303],[-71.526195645,41.379286885],[-71.526134908,41.379249305],[-71.526061594,41.379238933],[-71.525968254,41.379233509],[-71.525882453,41.379237473],[-71.525807232,41.379224956],[-71.525776237,41.379163072],[-71.525791973,41.37909852],[-71.525791436,41.379041076],[-71.525755614,41.378989965],[-71.52571398,41.378943115],[-71.525648594,41.378893316],[-71.525576472,41.378852069],[-71.525535882,41.378798813],[-71.525475323,41.378741816],[-71.525466233,41.378682196],[-71.525481999,41.378615499],[-71.52550146,41.378558874],[-71.525490493,41.378494933],[-71.525425076,41.378448695],[-71.525344312,41.378418177],[-71.525262326,41.378417864],[-71.525189936,41.378411815],[-71.525123417,41.378382787],[-71.525068581,41.378328726],[-71.525021285,41.378280461],[-71.524965286,41.378245726],[-71.524911016,41.378240511],[-71.524853051,41.378210783],[-71.524797291,41.378148824],[-71.524743497,41.378078237],[-71.524702877,41.378031373],[-71.52464202,41.378012478]],[[-71.525347441,41.381112829],[-71.52526626,41.381131902],[-71.525207847,41.381166115],[-71.525148481,41.381200343],[-71.525068074,41.381238788],[-71.525010526,41.381287426],[-71.525063604,41.381328553],[-71.525122523,41.381361842],[-71.525159359,41.381409407],[-71.525191396,41.381465539],[-71.525214821,41.381520927],[-71.525245875,41.381576359],[-71.525295168,41.381618232],[-71.5253416,41.381660089],[-71.525414824,41.381686971],[-71.525488049,41.381713852],[-71.525562257,41.381737143],[-71.525627881,41.381761774],[-71.525693536,41.381784335],[-71.525768667,41.381809771],[-71.525818288,41.381804943],[-71.525844425,41.381750479],[-71.525854349,41.381694511],[-71.525862455,41.381627753],[-71.52587834,41.381544486],[-71.525878876,41.381470531],[-71.525882244,41.381401613],[-71.525895059,41.381342739],[-71.525917381,41.381288245],[-71.525890082,41.381241441],[-71.525818735,41.381215289],[-71.525732934,41.381207034],[-71.525660515,41.381206051],[-71.52557379,41.38119635],[-71.525489986,41.381182343],[-71.525418729,41.381146148],[-71.525347441,41.381112829]]],[[[-71.562942207,41.372172147],[-71.562888533,41.372188449],[-71.562869966,41.372194931],[-71.562888414,41.37218821],[-71.562942207,41.372172147]]],[[[-71.563518792,41.372075737],[-71.563500553,41.372082442],[-71.563422561,41.372093454],[-71.563227534,41.372105449],[-71.562987894,41.372159824],[-71.563051671,41.372145012],[-71.563126355,41.372126028],[-71.563227683,41.37210539],[-71.563326776,41.37209782],[-71.563422203,41.372092962],[-71.563500375,41.372082353],[-71.563518792,41.372075737]]],[[[-71.563738465,41.372030333],[-71.563654542,41.372039452],[-71.563607603,41.372049272],[-71.563654482,41.37203899],[-71.563738465,41.372030333]]],[[[-71.564010561,41.371988192],[-71.563930541,41.372005448],[-71.563829541,41.372020453],[-71.563771516,41.372026742],[-71.563829958,41.372020096],[-71.563930213,41.372004956],[-71.564010561,41.371988192]]],[[[-71.564384192,41.371898398],[-71.564190954,41.37194024],[-71.564241827,41.371927932],[-71.564310938,41.37191236],[-71.564384192,41.371898398]]],[[[-71.564566821,41.371843278],[-71.564551532,41.371846452],[-71.564462543,41.371877447],[-71.564403951,41.371893287],[-71.564462066,41.371877238],[-71.564551741,41.371846065],[-71.564566821,41.371843278]]],[[[-71.564771175,41.371800795],[-71.564709991,41.371813521],[-71.56473133,41.371808589],[-71.564771175,41.371800795]]],[[[-71.565016925,41.371787965],[-71.56496954,41.371796444],[-71.564931333,41.371791437],[-71.564969838,41.371796116],[-71.565016925,41.371787965]]],[[[-71.565080613,41.371753395],[-71.565036535,41.371784449],[-71.565036356,41.371784478],[-71.565080613,41.371753395]]],[[[-71.565580547,41.371623978],[-71.565564543,41.37162745],[-71.565159917,41.371706381],[-71.565159976,41.371706352],[-71.565230906,41.371690795],[-71.565310985,41.371676072],[-71.565380961,41.371661901],[-71.565482199,41.371642604],[-71.565564185,41.371627197],[-71.565580547,41.371623978]]],[[[-71.565882444,41.371550739],[-71.56574586,41.371587336],[-71.565800101,41.371571913],[-71.565871149,41.371552899],[-71.565882444,41.371550739]]],[[[-71.565988332,41.37153089],[-71.565905541,41.371546343],[-71.565952152,41.371537462],[-71.565988332,41.37153089]]],[[[-71.566326976,41.371460319],[-71.566200703,41.371480778],[-71.566267222,41.371468097],[-71.566326976,41.371460319]]],[[[-71.566594988,41.371396914],[-71.566513538,41.371426448],[-71.566431552,41.371451452],[-71.566385776,41.371454895],[-71.566431671,41.371451095],[-71.566513807,41.371426046],[-71.566594988,41.371396914]]],[[[-71.567140967,41.371329322],[-71.566932559,41.371351451],[-71.566750556,41.371365443],[-71.566606015,41.371393159],[-71.566676319,41.371377259],[-71.566750824,41.371365234],[-71.566843569,41.37135759],[-71.566932589,41.371351227],[-71.567009747,41.371342674],[-71.567097038,41.371333569],[-71.567140967,41.371329322]]],[[[-71.56734401,41.371291935],[-71.56727156,41.371309444],[-71.567232937,41.371316016],[-71.567271709,41.371309161],[-71.56734401,41.371291935]]],[[[-71.56746912,41.3712807],[-71.567462534,41.371281445],[-71.567453325,41.371281996],[-71.567462087,41.37128146],[-71.56746912,41.3712807]]],[[[-71.567882568,41.371183991],[-71.567861557,41.371188447],[-71.567723602,41.371210411],[-71.567782968,41.371199742],[-71.56786117,41.371188447],[-71.567882568,41.371183991]]],[[[-71.568610519,41.371106744],[-71.568417937,41.371127754],[-71.56848225,41.371119231],[-71.568559408,41.371111363],[-71.568610519,41.371106744]]],[[[-71.569118142,41.371068627],[-71.568962544,41.371081442],[-71.568823904,41.371086225],[-71.568875253,41.371084124],[-71.568962395,41.371081188],[-71.569044113,41.37107338],[-71.569118142,41.371068627]]],[[[-71.569358975,41.371029258],[-71.569248289,41.371047929],[-71.569296032,41.371039018],[-71.569358975,41.371029258]]],[[[-71.569463283,41.371017709],[-71.569459766,41.371017933],[-71.569460571,41.371017858],[-71.569463283,41.371017709]]],[[[-71.570092976,41.37097162],[-71.570134073,41.370972201],[-71.569919556,41.37097545],[-71.569913447,41.370975763],[-71.569919735,41.370975405],[-71.569992155,41.370974332],[-71.570092976,41.37097162]]],[[[-71.570649445,41.370919824],[-71.570249557,41.370970443],[-71.570247144,41.370970488],[-71.570249707,41.370970398],[-71.570331514,41.370959833],[-71.570436239,41.370946795],[-71.570533752,41.370932326],[-71.570626557,41.37092258],[-71.570649445,41.370919824]]],[[[-71.570967078,41.37086311],[-71.570892543,41.37088044],[-71.570867896,41.370884821],[-71.570892364,41.370880097],[-71.570967078,41.37086311]]],[[[-71.571104884,41.370841518],[-71.570992529,41.370858356],[-71.571079254,41.370844796],[-71.571104884,41.370841518]]],[[[-71.572306037,41.370778427],[-71.572267562,41.370783448],[-71.57219556,41.370783448],[-71.572190434,41.370783076],[-71.572268248,41.370782986],[-71.572306037,41.370778427]]],[[[-71.571422219,41.370775685],[-71.571487695,41.370779499],[-71.571565121,41.370788679],[-71.571422219,41.370775685]]],[[[-71.572048813,41.370769873],[-71.572098017,41.370774329],[-71.572157949,41.370780706],[-71.572140545,41.37077944],[-71.572048813,41.370769873]]],[[[-71.571849018,41.370765299],[-71.57192415,41.370766342],[-71.571972817,41.370767042],[-71.571773261,41.370765492],[-71.571849018,41.370765299]]],[[[-71.572539926,41.370726079],[-71.572485536,41.370739445],[-71.5724608,41.370745257],[-71.572495699,41.370735794],[-71.572539926,41.370726079]]],[[[-71.572875679,41.370652094],[-71.572776556,41.370670453],[-71.57268557,41.370690838],[-71.572728038,41.370679736],[-71.572806299,41.370663583],[-71.572875679,41.370652094]]],[[[-71.57323584,41.370585427],[-71.572960734,41.370636359],[-71.572994024,41.370629668],[-71.573069572,41.370613486],[-71.573144108,41.37060006],[-71.573225081,41.370586678],[-71.57323584,41.370585427]]]]}}"}, +{"type": "precinct", "typeId": 3210, "areaId": 26025, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":364,\"NAME\":\"3210\",\"SHAPE_Length\":0.63747519061858,\"SHAPE_Area\":-0.0018298006643031},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.623454211,41.364691628],[-71.623437086,41.364754106],[-71.623421688,41.364814547],[-71.623415934,41.364870128],[-71.623500043,41.364895744],[-71.623542391,41.364846985],[-71.623566884,41.364795797],[-71.62358137,41.364734717],[-71.6235765,41.364679902],[-71.623515166,41.364641271],[-71.623467102,41.364637251],[-71.623454211,41.364691628]]],[[[-71.620827787,41.364791593],[-71.620855855,41.364850089],[-71.620892686,41.364903087],[-71.620948745,41.364945819],[-71.621029203,41.364967438],[-71.621082972,41.364986799],[-71.62113865,41.364938506],[-71.621132025,41.364885728],[-71.621083918,41.364842233],[-71.621061237,41.364823801],[-71.621024117,41.364794909],[-71.620957605,41.364763028],[-71.620872263,41.364759527],[-71.620827787,41.364791593]]],[[[-71.623823515,41.365013065],[-71.6237723,41.3650606],[-71.623723694,41.365106759],[-71.623659318,41.365161832],[-71.623600156,41.365212828],[-71.623545227,41.365255083],[-71.623490813,41.365280596],[-71.623419193,41.365293641],[-71.623355854,41.365319278],[-71.623309788,41.365360723],[-71.623312048,41.365416227],[-71.623320591,41.365438883],[-71.623344584,41.365475999],[-71.623367375,41.365536558],[-71.623388275,41.365591814],[-71.623444298,41.365630519],[-71.623508332,41.365635002],[-71.623584119,41.365609854],[-71.623651047,41.365587506],[-71.623735665,41.365560909],[-71.623823185,41.365543639],[-71.623910805,41.365531034],[-71.623986076,41.365521965],[-71.623997233,41.365518444],[-71.623998566,41.365514444],[-71.624097566,41.365299444],[-71.624097598,41.36529933],[-71.624093293,41.365294334],[-71.624056394,41.365238661],[-71.624035621,41.365186744],[-71.624044798,41.365127065],[-71.624029986,41.365065034],[-71.624026878,41.36501088],[-71.624093778,41.365022037],[-71.624171552,41.365033362],[-71.624171595,41.365033349],[-71.624250566,41.364774444],[-71.62432641,41.364556891],[-71.624301589,41.364549445],[-71.624235513,41.364572433],[-71.624160803,41.364604235],[-71.62408629,41.364644087],[-71.624026148,41.364690396],[-71.62398468,41.364738514],[-71.623962144,41.364796996],[-71.623937883,41.364858223],[-71.623913459,41.364913436],[-71.623873848,41.364964846],[-71.623823515,41.365013065]]],[[[-71.610803946,41.366500205],[-71.610751877,41.366551119],[-71.610697167,41.366602721],[-71.610649397,41.366646862],[-71.61063894,41.366692521],[-71.610684398,41.366699247],[-71.610708576,41.366706954],[-71.610768176,41.366674672],[-71.61080845,41.366613912],[-71.610825749,41.366556788],[-71.610848819,41.36651967],[-71.610898512,41.36648152],[-71.610863448,41.366463943],[-71.610803946,41.366500205]]],[[[-71.611900653,41.36678626],[-71.611842262,41.366832538],[-71.611777776,41.366883624],[-71.611728672,41.366946497],[-71.611706908,41.367001659],[-71.611707433,41.367059864],[-71.611732822,41.367118411],[-71.611746805,41.36718248],[-71.611749186,41.367243314],[-71.611771155,41.367307879],[-71.611818115,41.367375507],[-71.611871951,41.367434323],[-71.611922107,41.367489141],[-71.611959911,41.367546166],[-71.611998366,41.367593813],[-71.612037701,41.367640774],[-71.612047935,41.367695516],[-71.612077529,41.367745299],[-71.612105426,41.36779641],[-71.612149907,41.367799134],[-71.612164636,41.367784208],[-71.612178483,41.367768643],[-71.612202756,41.367707441],[-71.612225368,41.367650929],[-71.612254987,41.367591619],[-71.61227672,41.367535817],[-71.612290466,41.367479382],[-71.612296262,41.367424441],[-71.612275241,41.367364518],[-71.61225249,41.36730462],[-71.612244764,41.367242488],[-71.612218462,41.367183302],[-71.612166028,41.367145205],[-71.61210284,41.367103277],[-71.612073803,41.367042126],[-71.612040528,41.366988367],[-71.612016184,41.366937207],[-71.611991414,41.366867933],[-71.61196697,41.366812085],[-71.611940344,41.366775655],[-71.611900653,41.36678626]]],[[[-71.609716198,41.366950766],[-71.609693584,41.367007278],[-71.60967309,41.367042358],[-71.609600748,41.367062073],[-71.609533848,41.367086402],[-71.609496862,41.367099611],[-71.609432829,41.367131942],[-71.609384083,41.367174093],[-71.609334683,41.367224958],[-71.609315555,41.367278081],[-71.609300205,41.367339869],[-71.609292844,41.367403525],[-71.609281928,41.36746588],[-71.60927023,41.367532993],[-71.609258598,41.367602714],[-71.609247781,41.36766978],[-71.609234976,41.367728158],[-71.60922028,41.367781209],[-71.60918095,41.367845306],[-71.60914338,41.367908076],[-71.609100235,41.36796017],[-71.609087947,41.368001165],[-71.609153549,41.368034403],[-71.60922651,41.368039411],[-71.609298723,41.368014322],[-71.60937165,41.367980541],[-71.609440734,41.367936107],[-71.609496488,41.367890496],[-71.609559348,41.367846136],[-71.60960875,41.367795957],[-71.609645669,41.367743251],[-71.609675484,41.367690643],[-71.609693731,41.367636857],[-71.609715335,41.367575727],[-71.609733548,41.367519928],[-71.609737363,41.367459661],[-71.609735958,41.367400793],[-71.609734458,41.367339227],[-71.609728592,41.367280456],[-71.609733281,41.367216826],[-71.60974149,41.36715182],[-71.609748789,41.367086792],[-71.609747386,41.367028634],[-71.609750448,41.366972369],[-71.609771365,41.366917895],[-71.609756831,41.366904689],[-71.609716198,41.366950766]]],[[[-71.612438956,41.368327778],[-71.61244137,41.368389961],[-71.612453334,41.368443992],[-71.612456794,41.368514201],[-71.612443989,41.368571253],[-71.612377615,41.368619002],[-71.612317234,41.368656615],[-71.61228126,41.36871131],[-71.612299676,41.368774621],[-71.612293196,41.368837612],[-71.61231699,41.368903525],[-71.612363626,41.368958437],[-71.612381225,41.369023098],[-71.612410267,41.369086924],[-71.612471141,41.369106144],[-71.612565513,41.369114217],[-71.612637336,41.369109206],[-71.61270528,41.369090912],[-71.612775831,41.369070511],[-71.612833999,41.36905234],[-71.612871963,41.369043086],[-71.612955905,41.369023861],[-71.613034537,41.369006746],[-71.613090814,41.368983225],[-71.613065391,41.368923993],[-71.613025923,41.368871018],[-71.613005814,41.368811734],[-71.612998931,41.368746972],[-71.613015252,41.368687195],[-71.613057256,41.368626364],[-71.613099681,41.36858097],[-71.61308071,41.368531017],[-71.613014038,41.368529253],[-71.612957135,41.368488554],[-71.612873515,41.368483032],[-71.612827043,41.368434844],[-71.612782166,41.368379244],[-71.612728853,41.368342498],[-71.612651814,41.368315449],[-71.612584425,41.368320409],[-71.612542286,41.368267459],[-71.612470786,41.368247723],[-71.612435692,41.36826626],[-71.612438956,41.368327778]]],[[[-71.620653626,41.368686759],[-71.620726786,41.36869981],[-71.620800892,41.368715513],[-71.620871579,41.36873728],[-71.620934479,41.368767197],[-71.621007516,41.368811672],[-71.621059988,41.368850405],[-71.621107349,41.368899275],[-71.621154675,41.368946133],[-71.621201186,41.368995027],[-71.621239781,41.369048],[-71.621280949,41.369097608],[-71.621324856,41.369149844],[-71.621365989,41.369196799],[-71.621408786,41.369240391],[-71.621455203,41.369287227],[-71.621488552,41.369343613],[-71.621521083,41.369401395],[-71.621564926,41.369451664],[-71.621611307,41.369495824],[-71.621661174,41.369537327],[-71.621715738,41.369590077],[-71.621756256,41.369648377],[-71.621788924,41.369713523],[-71.621800279,41.369778943],[-71.621805442,41.369845079],[-71.621844166,41.369902077],[-71.62188462,41.36995841],[-71.621931982,41.370007257],[-71.621981849,41.370048051],[-71.622054125,41.370025653],[-71.622070544,41.370006013],[-71.622016244,41.369965269],[-71.621983774,41.369908196],[-71.621960135,41.369849627],[-71.621923169,41.369791255],[-71.621899398,41.369726694],[-71.621877291,41.369658746],[-71.621872422,41.369603954],[-71.621867194,41.369535805],[-71.62187526,41.369465447],[-71.621899329,41.369396833],[-71.621913654,41.369329075],[-71.621926186,41.369260611],[-71.621946797,41.369194127],[-71.62196738,41.369128261],[-71.621997219,41.369076977],[-71.622034193,41.369026279],[-71.622063153,41.368975705],[-71.622108731,41.368914844],[-71.622153821,41.368869398],[-71.622197903,41.368820637],[-71.622246183,41.368760436],[-71.622301765,41.368708118],[-71.622369927,41.368662328],[-71.622429291,41.36861936],[-71.622482336,41.368574454],[-71.622469353,41.368515782],[-71.622470513,41.368454214],[-71.622523717,41.36841331],[-71.622576891,41.368372453],[-71.622644665,41.368346766],[-71.622715766,41.368313642],[-71.622787224,41.368293234],[-71.622863244,41.368277464],[-71.622885382,41.36827696],[-71.622885566,41.368276444],[-71.622970565,41.368274444],[-71.623032565,41.368268444],[-71.623166565,41.367769444],[-71.623424566,41.366994444],[-71.623729824,41.366163462],[-71.62366579,41.366190837],[-71.623604338,41.366219789],[-71.623518445,41.366231019],[-71.623434991,41.366231474],[-71.623353297,41.366231951],[-71.62327353,41.366239744],[-71.623189987,41.366273681],[-71.623130725,41.366320675],[-71.623077714,41.366366244],[-71.623040677,41.366414952],[-71.623033425,41.366481284],[-71.623047452,41.366546633],[-71.623043883,41.36661829],[-71.623024869,41.366677431],[-71.622998846,41.366738683],[-71.622978884,41.366794508],[-71.622963352,41.366849551],[-71.6229443,41.36690469],[-71.622888093,41.36693025],[-71.622824004,41.366961217],[-71.622815906,41.367030271],[-71.622796856,41.367086736],[-71.622776046,41.367143889],[-71.622757063,41.367203693],[-71.62272286,41.367258367],[-71.622682395,41.367308451],[-71.622644574,41.367360498],[-71.622609459,41.36741451],[-71.622581678,41.367477822],[-71.622558325,41.367539003],[-71.622538397,41.367596818],[-71.622519511,41.367659984],[-71.622499745,41.367723836],[-71.62248519,41.367781554],[-71.622481323,41.367840495],[-71.622476646,41.367904103],[-71.62247995,41.367966284],[-71.622487624,41.368027066],[-71.622496956,41.368081808],[-71.622503682,41.368139274],[-71.622489711,41.368184939],[-71.622440938,41.368225128],[-71.622375185,41.368260122],[-71.622307868,41.368303213],[-71.622251858,41.368337486],[-71.622168601,41.368347295],[-71.622098309,41.368342269],[-71.622048344,41.368296764],[-71.62198444,41.368298341],[-71.62190754,41.368314775],[-71.621835684,41.368317139],[-71.621753077,41.368317615],[-71.6217012,41.36833775],[-71.621711866,41.368375704],[-71.621791126,41.368420126],[-71.621868298,41.368451834],[-71.621941106,41.368487618],[-71.621978003,41.368509214],[-71.621998155,41.368570486],[-71.621983662,41.368629553],[-71.621914095,41.368654601],[-71.621825296,41.368656479],[-71.621749076,41.368662918],[-71.62166243,41.368679476],[-71.621588848,41.36868454],[-71.621520669,41.36865671],[-71.621458453,41.368618765],[-71.621377177,41.368600485],[-71.62129955,41.368585495],[-71.621217657,41.368578583],[-71.621125271,41.368577194],[-71.621039464,41.368554963],[-71.62097132,41.368529168],[-71.620956421,41.368500618],[-71.620981566,41.368438704],[-71.620931569,41.368392558],[-71.620862675,41.368371407],[-71.620832492,41.368335692],[-71.620831794,41.368270146],[-71.620791475,41.36821985],[-71.620746559,41.368162927],[-71.620704578,41.368116681],[-71.620703527,41.368073869],[-71.620736756,41.368016521],[-71.620769037,41.367955857],[-71.620798578,41.36789124],[-71.620833501,41.367830528],[-71.620871097,41.367771139],[-71.620894547,41.367712589],[-71.620922396,41.367651999],[-71.62095836,41.367596614],[-71.620988103,41.367542677],[-71.621019346,41.367512158],[-71.621074049,41.36746055],[-71.621094893,41.367404702],[-71.621095274,41.367348508],[-71.621110683,41.367324867],[-71.621169528,41.367297269],[-71.621197509,41.367242716],[-71.621225423,41.367184779],[-71.621249721,41.367125564],[-71.621307162,41.367077247],[-71.621371152,41.36704157],[-71.621422436,41.366996713],[-71.621495005,41.366986344],[-71.621584352,41.366971041],[-71.62166663,41.366957849],[-71.621737075,41.366932137],[-71.621798695,41.366911214],[-71.621871072,41.366928267],[-71.621950883,41.36695995],[-71.622037666,41.366985519],[-71.622127927,41.366971563],[-71.622204303,41.36693569],[-71.622274488,41.366900601],[-71.622364427,41.366909402],[-71.62243876,41.366933771],[-71.622514922,41.366961523],[-71.622591568,41.366972488],[-71.622627433,41.36691381],[-71.622670762,41.366869029],[-71.622665543,41.36683832],[-71.622605184,41.366803026],[-71.622554439,41.366762234],[-71.622486263,41.366735067],[-71.622405996,41.366719486],[-71.622321534,41.366717289],[-71.622243359,41.366716343],[-71.62222217,41.36668453],[-71.622255527,41.366631915],[-71.622238112,41.366573271],[-71.622202126,41.366518214],[-71.622142452,41.366475532],[-71.622062322,41.366467956],[-71.621977792,41.366461779],[-71.621901926,41.366445461],[-71.621822412,41.366426471],[-71.621731501,41.366449827],[-71.621659328,41.36647625],[-71.621591687,41.366507951],[-71.621526813,41.36654164],[-71.6214564,41.366567992],[-71.621378654,41.366585822],[-71.621293087,41.366609766],[-71.621214038,41.366644955],[-71.621148615,41.366694036],[-71.621092803,41.366736313],[-71.621036078,41.366777243],[-71.620998191,41.366826614],[-71.620972004,41.366882514],[-71.62094135,41.366936452],[-71.620901865,41.366991863],[-71.620858698,41.367042635],[-71.620822538,41.367090679],[-71.620771287,41.367136862],[-71.620703225,41.36718734],[-71.620637086,41.367243762],[-71.620576255,41.36729748],[-71.620521422,41.367344399],[-71.620463068,41.367391368],[-71.620401097,41.367436373],[-71.62034059,41.367468661],[-71.62028419,41.367521642],[-71.620241838,41.367570401],[-71.620194107,41.367616558],[-71.620132982,41.367659549],[-71.620063808,41.367699988],[-71.619994664,41.36774109],[-71.619938755,41.367780691],[-71.619882224,41.367828961],[-71.619860566,41.36788879],[-71.619865793,41.367957648],[-71.619879618,41.368013666],[-71.619904167,41.368073538],[-71.619938296,41.368125945],[-71.619975944,41.368176929],[-71.620015382,41.368227226],[-71.620046906,41.368282334],[-71.620079438,41.368341466],[-71.620108286,41.368394564],[-71.620143656,41.368460989],[-71.620160971,41.368516272],[-71.620179262,41.368573566],[-71.620189572,41.368632973],[-71.620221841,41.368680716],[-71.620313446,41.368686132],[-71.620398693,41.368684945],[-71.620480293,41.368681131],[-71.620569059,41.368678568],[-71.620653626,41.368686759]]],[[[-71.604385237,41.370107737],[-71.604433562,41.370159243],[-71.604487884,41.370201985],[-71.604554722,41.370211118],[-71.604573823,41.370157332],[-71.604601851,41.370103424],[-71.604630237,41.370103055],[-71.604703785,41.370132125],[-71.604782454,41.370116341],[-71.604864412,41.370088433],[-71.604906679,41.370073163],[-71.604844308,41.370028485],[-71.604785783,41.36999652],[-71.604720805,41.369953903],[-71.604652536,41.369922747],[-71.604579439,41.369948474],[-71.604499987,41.369967643],[-71.604429336,41.369984654],[-71.604367841,41.370012932],[-71.604352946,41.370058],[-71.604385237,41.370107737]]],[[[-71.605241156,41.370241871],[-71.60527899,41.370301551],[-71.605350681,41.370326666],[-71.605413901,41.37036997],[-71.605440915,41.370422433],[-71.605471415,41.370471531],[-71.605497259,41.370475898],[-71.60553099,41.370438611],[-71.605558591,41.370403434],[-71.605509646,41.370363273],[-71.605465035,41.370318419],[-71.605407321,41.370281056],[-71.605347881,41.370247102],[-71.605272083,41.370235438],[-71.605241156,41.370241871]]],[[[-71.620705603,41.371036578],[-71.620627654,41.371045694],[-71.620558115,41.371071428],[-71.620494898,41.37110102],[-71.62044889,41.371144476],[-71.620399299,41.371187341],[-71.62034518,41.371227559],[-71.620318133,41.371246661],[-71.620265739,41.3712842],[-71.620190103,41.371313371],[-71.620121544,41.371343768],[-71.620070322,41.371391964],[-71.620054854,41.371449705],[-71.6200563,41.371509922],[-71.620063123,41.371571345],[-71.620103576,41.371627678],[-71.620179154,41.371666113],[-71.62025255,41.371689868],[-71.620322556,41.371719023],[-71.620399567,41.371744031],[-71.620478991,41.371760324],[-71.620556357,41.371763948],[-71.620628996,41.37175557],[-71.620697589,41.371727184],[-71.620777267,41.371716694],[-71.62086845,41.371704752],[-71.620943234,41.371674941],[-71.620986504,41.371628835],[-71.621026054,41.37157411],[-71.621083533,41.371527805],[-71.621147529,41.371492792],[-71.621195429,41.371454685],[-71.62114722,41.371407851],[-71.621099924,41.37136232],[-71.621080749,41.371303678],[-71.621079142,41.371239505],[-71.621077695,41.371179288],[-71.621065659,41.371123245],[-71.621005948,41.371078596],[-71.62094223,41.371050716],[-71.620871803,41.371039606],[-71.620789973,41.371035392],[-71.620705603,41.371036578]]],[[[-71.58273331,41.371411668],[-71.582701799,41.371462303],[-71.582703855,41.371527231],[-71.582717784,41.371593683],[-71.582756716,41.371649436],[-71.582782633,41.371712585],[-71.582814162,41.371771706],[-71.582865749,41.37179797],[-71.582903261,41.371763294],[-71.582924805,41.371705599],[-71.582937183,41.371650609],[-71.582937484,41.371600889],[-71.582937959,41.371544307],[-71.582921153,41.371483323],[-71.582894064,41.371430489],[-71.582861509,41.371375509],[-71.582797502,41.371370478],[-71.58273331,41.371411668]]],[[[-71.616367911,41.373572168],[-71.616310235,41.373612433],[-71.616256532,41.373668017],[-71.616208142,41.373722909],[-71.616158578,41.37376639],[-71.616114523,41.37381787],[-71.616070535,41.373872666],[-71.616049,41.37393652],[-71.616050377,41.373993374],[-71.616083783,41.374015022],[-71.616111837,41.373963786],[-71.616142333,41.373902463],[-71.616173025,41.373849166],[-71.616204468,41.373791181],[-71.616257648,41.373748977],[-71.616316112,41.373707339],[-71.616367402,41.373661135],[-71.616408686,41.373605701],[-71.616477965,41.373567986],[-71.616565859,41.37356609],[-71.616627949,41.37359999],[-71.616615961,41.373653725],[-71.616660094,41.373680507],[-71.616751218,41.373702027],[-71.616821842,41.373719795],[-71.616861184,41.373766753],[-71.616924381,41.373808679],[-71.61699605,41.373833787],[-71.617069705,41.373866234],[-71.617146753,41.373893943],[-71.61721572,41.373919099],[-71.617230054,41.373886768],[-71.617217954,41.373827409],[-71.617189722,41.373762234],[-71.617148193,41.373697873],[-71.61712117,41.373646762],[-71.617113469,41.373585271],[-71.617137904,41.373530746],[-71.617202882,41.373499096],[-71.617288137,41.373498552],[-71.617352503,41.373515067],[-71.617422144,41.373577593],[-71.617468282,41.373621434],[-71.617489564,41.373637627],[-71.61755204,41.373649479],[-71.617620636,41.373620432],[-71.617689692,41.373610779],[-71.617757421,41.373656679],[-71.617831467,41.373669685],[-71.617908869,41.373675324],[-71.617983304,41.373668272],[-71.618062039,41.373655132],[-71.618144003,41.373664722],[-71.618191653,41.373688184],[-71.618194074,41.37375103],[-71.618217053,41.373782155],[-71.618266195,41.373757382],[-71.61829216,41.373693455],[-71.618281818,41.373632722],[-71.618261604,41.373569414],[-71.618215773,41.373511165],[-71.618152377,41.373460549],[-71.61809042,41.373433282],[-71.618014354,41.373410924],[-71.617931345,41.373393994],[-71.617839408,41.373376546],[-71.61774496,41.373363813],[-71.617641748,41.373356508],[-71.617544762,41.373350478],[-71.617447806,41.373344493],[-71.617347397,41.373343178],[-71.617256145,41.373351801],[-71.617169492,41.373368402],[-71.617083753,41.373386306],[-71.6169927,41.373404283],[-71.616906792,41.373413518],[-71.616820724,41.373417379],[-71.616732832,41.373420602],[-71.616649468,41.373425741],[-71.616559161,41.373436353],[-71.616490631,41.373468761],[-71.616429695,41.373519801],[-71.616367911,41.373572168]]],[[[-71.540327403,41.374324554],[-71.540408807,41.374330563],[-71.540416684,41.37433267],[-71.540408539,41.374330448],[-71.540259202,41.374316789],[-71.540327403,41.374324554]]],[[[-71.540137539,41.374357448],[-71.540095388,41.374369018],[-71.540137811,41.374357737],[-71.540194271,41.374335761],[-71.54022245,41.374324118],[-71.540137539,41.374357448]]],[[[-71.540727456,41.374375917],[-71.540798632,41.374385887],[-71.540884473,41.374397474],[-71.540899702,41.374403641],[-71.54088454,41.374397448],[-71.540727539,41.374375448],[-71.540694024,41.374372124],[-71.540727456,41.374375917]]],[[[-71.540026539,41.374414448],[-71.54001404,41.374426415],[-71.540026417,41.374414769],[-71.540054993,41.374394055],[-71.540026539,41.374414448]]],[[[-71.541032788,41.374439663],[-71.541111549,41.374441511],[-71.541185852,41.374442061],[-71.541032539,41.374439448],[-71.541002374,41.374434355],[-71.541032788,41.374439663]]],[[[-71.54128629,41.374450916],[-71.541338301,41.374462502],[-71.541286539,41.374450448],[-71.541233222,41.37444498],[-71.54128629,41.374450916]]],[[[-71.539843278,41.374589118],[-71.539890875,41.374555698],[-71.539938175,41.374515506],[-71.539843278,41.374589118]]],[[[-71.539784539,41.374653448],[-71.539749539,41.374713448],[-71.53974947,41.374713701],[-71.539784849,41.374653529],[-71.539799485,41.374636011],[-71.539784539,41.374653448]]],[[[-71.541759448,41.374724848],[-71.541791644,41.374704543],[-71.54175954,41.374724448],[-71.541685539,41.374714448],[-71.541634539,41.374670448],[-71.541599539,41.374619448],[-71.54154854,41.374570448],[-71.541432539,41.374495448],[-71.54138384,41.374476769],[-71.541432664,41.374495804],[-71.541491228,41.374535326],[-71.541548058,41.374570663],[-71.541599067,41.374619016],[-71.541634412,41.374670576],[-71.541685479,41.374714835],[-71.541759448,41.374724848]]],[[[-71.541932153,41.374852946],[-71.541864467,41.374764899],[-71.541889479,41.374801257],[-71.541932153,41.374852946]]],[[[-71.541932153,41.374852946],[-71.541921369,41.374892546],[-71.54193254,41.374853448],[-71.541932153,41.374852946]]],[[[-71.539701539,41.374888448],[-71.539694968,41.374921847],[-71.53970189,41.374888414],[-71.539703748,41.374880395],[-71.539701539,41.374888448]]],[[[-71.541772724,41.375068061],[-71.541768731,41.375073446],[-71.541772539,41.375068448],[-71.54178714,41.375051576],[-71.541772724,41.375068061]]],[[[-71.539686533,41.375311778],[-71.539687935,41.375257434],[-71.539687565,41.375198794],[-71.539685523,41.375135947],[-71.539684698,41.375093376],[-71.539686533,41.375311778]]],[[[-71.539696538,41.375375448],[-71.539707833,41.375403684],[-71.539696812,41.375375626],[-71.539688511,41.375324872],[-71.539696538,41.375375448]]],[[[-71.541692148,41.375173203],[-71.541634244,41.375217226],[-71.541570111,41.375253545],[-71.541506651,41.375298188],[-71.541468641,41.375352176],[-71.541440532,41.375411123],[-71.541418128,41.375463939],[-71.54141191,41.375483705],[-71.541418539,41.375463449],[-71.54146854,41.375352448],[-71.54150654,41.375298448],[-71.541570539,41.375253448],[-71.541634539,41.375217448],[-71.541692539,41.375173448],[-71.541708319,41.375152738],[-71.541692148,41.375173203]]],[[[-71.583831086,41.375068526],[-71.583830583,41.375125794],[-71.583893873,41.375160511],[-71.583954992,41.375207603],[-71.583995864,41.375257888],[-71.584037822,41.375302661],[-71.584075963,41.375354251],[-71.584110372,41.375407171],[-71.584140254,41.375458677],[-71.584178511,41.375505442],[-71.584219121,41.375493611],[-71.584259035,41.3754362],[-71.584271498,41.375377025],[-71.584301158,41.375326345],[-71.584346583,41.375304928],[-71.584349933,41.375242146],[-71.584344001,41.375186849],[-71.584376481,41.375133492],[-71.58438429,41.375114252],[-71.584381972,41.375059684],[-71.584367752,41.37500428],[-71.584381951,41.374949289],[-71.584417338,41.374889708],[-71.5844706,41.374847656],[-71.584451622,41.374799802],[-71.58438868,41.374751957],[-71.584333735,41.374713918],[-71.58427056,41.37467369],[-71.584203539,41.37464172],[-71.584146532,41.374651916],[-71.584119213,41.374681233],[-71.584117656,41.3747447],[-71.584116211,41.374801992],[-71.584116476,41.374866166],[-71.58411415,41.374922726],[-71.584081642,41.374977502],[-71.584030172,41.375020239],[-71.583953348,41.375015012],[-71.583904751,41.374978432],[-71.583857361,41.375006757],[-71.583831086,41.375068526]]],[[[-71.539743539,41.375548448],[-71.539743539,41.375570693],[-71.539743736,41.375548122],[-71.539731553,41.375517939],[-71.539743539,41.375548448]]],[[[-71.541382341,41.375573839],[-71.541382539,41.375573448],[-71.541384653,41.375566989],[-71.541382341,41.375573839]]],[[[-71.53577394,41.375627641],[-71.53578376,41.375628872],[-71.535773645,41.375627463],[-71.53577394,41.375627641]]],[[[-71.54135441,41.375628675],[-71.541350966,41.375641849],[-71.541354539,41.375628448],[-71.54135441,41.375628675]]],[[[-71.535409537,41.375637449],[-71.535368805,41.375646613],[-71.535409805,41.375637611],[-71.535473713,41.375619226],[-71.535409537,41.375637449]]],[[[-71.536019508,41.375671727],[-71.536086862,41.375694825],[-71.536019538,41.375671449],[-71.535985782,41.37566301],[-71.536019508,41.375671727]]],[[[-71.535265538,41.375678448],[-71.535201537,41.375682448],[-71.535170637,41.37569743],[-71.535201661,41.375682684],[-71.535265543,41.375678662],[-71.535298412,41.375666634],[-71.535265538,41.375678448]]],[[[-71.536164002,41.375721883],[-71.53620651,41.375741741],[-71.536163538,41.375721448],[-71.536100458,41.375699546],[-71.536164002,41.375721883]]],[[[-71.535074537,41.375752449],[-71.535074481,41.375752507],[-71.535078735,41.375749833],[-71.535074537,41.375752449]]],[[[-71.534921537,41.375894448],[-71.534897484,41.375899512],[-71.53492183,41.375894733],[-71.53494162,41.375867839],[-71.534921537,41.375894448]]],[[[-71.536341359,41.375843909],[-71.536380043,41.37590224],[-71.536380453,41.37590232],[-71.536341538,41.375843448],[-71.536316092,41.375816141],[-71.536341359,41.375843909]]],[[[-71.5364552,41.375916922],[-71.536466561,41.37593629],[-71.536455538,41.375916448],[-71.53639343,41.375904855],[-71.5364552,41.375916922]]],[[[-71.539748594,41.375971979],[-71.539755467,41.3759148],[-71.539762564,41.375852795],[-71.53976269,41.375842155],[-71.539762539,41.375852449],[-71.539748594,41.375971979]]],[[[-71.541167339,41.375957277],[-71.541109774,41.375993927],[-71.541228615,41.375923189],[-71.541167339,41.375957277]]],[[[-71.534712537,41.375949449],[-71.534661537,41.375988449],[-71.534677068,41.376040521],[-71.534661912,41.37598842],[-71.534712689,41.375949868],[-71.534734671,41.375943187],[-71.534712537,41.375949449]]],[[[-71.534650537,41.376074448],[-71.534623281,41.376084599],[-71.534650784,41.376074531],[-71.534678642,41.376045934],[-71.53467851,41.376045478],[-71.534650537,41.376074448]]],[[[-71.539748594,41.375971979],[-71.539748539,41.375972448],[-71.539747539,41.376032448],[-71.539720539,41.376086449],[-71.539715552,41.376094522],[-71.539720897,41.376086843],[-71.539747947,41.376032013],[-71.539748594,41.375971979]]],[[[-71.534505495,41.376128503],[-71.534516468,41.376124378],[-71.534505537,41.376128448],[-71.534486186,41.376126067],[-71.534505495,41.376128503]]],[[[-71.534141537,41.376134449],[-71.534099547,41.376152294],[-71.534141385,41.376134901],[-71.534212059,41.376112924],[-71.534286588,41.37608882],[-71.53433398,41.376093246],[-71.534286537,41.376088448],[-71.534141537,41.376134449]]],[[[-71.536415165,41.376050292],[-71.536391877,41.37610544],[-71.536370502,41.376161388],[-71.536368832,41.376166906],[-71.536370538,41.376161449],[-71.536415538,41.376050448],[-71.536437439,41.376018592],[-71.536415165,41.376050292]]],[[[-71.541018325,41.376161495],[-71.541014125,41.376168316],[-71.54101854,41.376161449],[-71.541019674,41.376127975],[-71.541018325,41.376161495]]],[[[-71.539657538,41.376188448],[-71.539657834,41.376188067],[-71.539658354,41.376187128],[-71.539657538,41.376188448]]],[[[-71.539622539,41.376235449],[-71.53962195,41.376236637],[-71.53962273,41.376235191],[-71.539622539,41.376235449]]],[[[-71.533998537,41.376202449],[-71.533929537,41.376268448],[-71.533868357,41.37630648],[-71.533929764,41.376268939],[-71.533998866,41.376202503],[-71.534021236,41.376190199],[-71.533998537,41.376202449]]],[[[-71.533773917,41.376334356],[-71.533855094,41.376314587],[-71.533855178,41.376314536],[-71.533773917,41.376334356]]],[[[-71.536339058,41.376291897],[-71.536293875,41.376341975],[-71.536293672,41.376342299],[-71.536339538,41.376291449],[-71.536344284,41.376262973],[-71.536339058,41.376291897]]],[[[-71.540895298,41.376314313],[-71.540818675,41.376335976],[-71.540804014,41.376346288],[-71.540818539,41.376336449],[-71.540895539,41.376314449],[-71.540920473,41.376294403],[-71.540895298,41.376314313]]],[[[-71.533773917,41.376334356],[-71.533773537,41.376334449],[-71.533732537,41.376380448],[-71.533709504,41.376398874],[-71.533715718,41.376394023],[-71.533732583,41.376380856],[-71.533773917,41.376334356]]],[[[-71.54078733,41.376415576],[-71.540799071,41.376426981],[-71.54078754,41.376415449],[-71.54078754,41.37639427],[-71.54078733,41.376415576]]],[[[-71.540883513,41.376452844],[-71.540923502,41.376502436],[-71.54092483,41.376504688],[-71.54092354,41.376502448],[-71.54088354,41.376452449],[-71.540832952,41.376442195],[-71.540883513,41.376452844]]],[[[-71.581700321,41.376489354],[-71.581772676,41.37648896],[-71.581852583,41.376481836],[-71.581924853,41.376486267],[-71.58198794,41.376455439],[-71.582028203,41.376384214],[-71.582065154,41.376335016],[-71.582091141,41.37628434],[-71.582095148,41.376234662],[-71.582043644,41.376204258],[-71.5819874,41.37621937],[-71.581940282,41.376271823],[-71.581875373,41.376301989],[-71.58181035,41.376337645],[-71.581737964,41.376337994],[-71.581670712,41.376315674],[-71.581645562,41.376331884],[-71.581643293,41.376387072],[-71.581654632,41.376446573],[-71.581700321,41.376489354]]],[[[-71.536256288,41.37640209],[-71.536245303,41.376467389],[-71.536248855,41.376525509],[-71.536245537,41.376467449],[-71.536256538,41.376402448],[-71.536290575,41.376347253],[-71.536256288,41.37640209]]],[[[-71.539488539,41.376447448],[-71.539482538,41.376507449],[-71.539467539,41.376565449],[-71.539436539,41.376625449],[-71.539437923,41.376650355],[-71.539436873,41.37662522],[-71.539467686,41.376565632],[-71.539482923,41.37650717],[-71.53948902,41.376447911],[-71.539529677,41.376398817],[-71.539567208,41.376346161],[-71.539488539,41.376447448]]],[[[-71.536319362,41.376636447],[-71.536323686,41.376674471],[-71.536319538,41.376636448],[-71.536317552,41.37663364],[-71.536319362,41.376636447]]],[[[-71.533664537,41.376552449],[-71.533686494,41.376677206],[-71.533686554,41.376677157],[-71.53367562,41.376612482],[-71.533664597,41.376552153],[-71.533664397,41.376544305],[-71.533664537,41.376552449]]],[[[-71.539435539,41.376741449],[-71.53943587,41.376747227],[-71.539435759,41.37674186],[-71.539437128,41.376716826],[-71.539435539,41.376741449]]],[[[-71.541008523,41.376798372],[-71.541000684,41.37682426],[-71.541008539,41.376798448],[-71.541008548,41.376797916],[-71.541008523,41.376798372]]],[[[-71.536312328,41.376818727],[-71.536354556,41.376868688],[-71.536312538,41.376818449],[-71.536312144,41.376791686],[-71.536312328,41.376818727]]],[[[-71.533574537,41.376835449],[-71.533576036,41.376870441],[-71.533574868,41.376835361],[-71.533588406,41.376789764],[-71.533574537,41.376835449]]],[[[-71.539442539,41.376863449],[-71.539441812,41.376885989],[-71.539442725,41.376863437],[-71.539442224,41.376857952],[-71.539442539,41.376863449]]],[[[-71.539409539,41.376983449],[-71.539409518,41.376983554],[-71.539412949,41.376977068],[-71.539409539,41.376983449]]],[[[-71.536398718,41.376994276],[-71.536402205,41.377001324],[-71.536373287,41.376936377],[-71.536398718,41.376994276]]],[[[-71.533596537,41.376966448],[-71.533602537,41.377022449],[-71.533598162,41.377052585],[-71.53360302,41.377022113],[-71.533596766,41.376966105],[-71.533587991,41.376939012],[-71.533596537,41.376966448]]],[[[-71.540907293,41.376995026],[-71.540844654,41.377043785],[-71.540792242,41.377088534],[-71.540792539,41.377088448],[-71.540907539,41.376995449],[-71.54093085,41.376963523],[-71.540907293,41.376995026]]],[[[-71.534544003,41.377117936],[-71.534570678,41.377129098],[-71.534572395,41.377129817],[-71.534544408,41.377117822],[-71.534544003,41.377117936]]],[[[-71.539397539,41.377045448],[-71.539342113,41.377149834],[-71.539367872,41.377103923],[-71.539397775,41.377045021],[-71.539406262,41.377000377],[-71.539397539,41.377045448]]],[[[-71.536484509,41.377127789],[-71.536500406,41.377153585],[-71.536484538,41.377127449],[-71.536467802,41.37710459],[-71.536484509,41.377127789]]],[[[-71.533625537,41.377197449],[-71.533625579,41.377197386],[-71.533626033,41.377136368],[-71.533609638,41.377110613],[-71.533625537,41.377136449],[-71.533625537,41.377197449]]],[[[-71.534799538,41.377208449],[-71.534810577,41.377216568],[-71.534799742,41.377208038],[-71.534743507,41.377171248],[-71.534799538,41.377208449]]],[[[-71.540645255,41.377138242],[-71.540640129,41.377196152],[-71.540595056,41.377218777],[-71.540640539,41.377196449],[-71.540645539,41.377138449],[-71.540683121,41.377123304],[-71.540645255,41.377138242]]],[[[-71.534672088,41.37719671],[-71.534711797,41.377242827],[-71.534733473,41.377248948],[-71.534711537,41.377242449],[-71.534672537,41.377196449],[-71.534634174,41.377164588],[-71.534672088,41.37719671]]],[[[-71.54058537,41.377223638],[-71.540586414,41.377289917],[-71.540604028,41.377303337],[-71.540586539,41.377289449],[-71.540585541,41.377223553],[-71.54058537,41.377223638]]],[[[-71.535238397,41.377306148],[-71.535238396,41.377306041],[-71.53523186,41.377290949],[-71.535206448,41.37729525],[-71.535231537,41.377291449],[-71.535238397,41.377306148]]],[[[-71.535099537,41.377311449],[-71.535113807,41.377309287],[-71.535099212,41.377311207],[-71.535046916,41.377292332],[-71.534966819,41.377295612],[-71.535046537,41.377292449],[-71.535099537,41.377311449]]],[[[-71.539239539,41.377249449],[-71.539117256,41.377314084],[-71.539167038,41.377289448],[-71.539239522,41.377249789],[-71.5392726,41.377228195],[-71.539239539,41.377249449]]],[[[-71.613752079,41.377087504],[-71.613695275,41.377125731],[-71.613640561,41.377178685],[-71.613604651,41.377236743],[-71.613617885,41.37726932],[-71.613684598,41.37727177],[-71.613735213,41.377271079],[-71.613750921,41.377259469],[-71.613740976,41.37721543],[-71.613756031,41.377177747],[-71.613795529,41.377157148],[-71.61383982,41.377117058],[-71.613784018,41.377085712],[-71.613752079,41.377087504]]],[[[-71.535425659,41.377322583],[-71.535425537,41.377322449],[-71.535409978,41.377321411],[-71.535425659,41.377322583]]],[[[-71.535294348,41.377347214],[-71.535294401,41.377347192],[-71.535289441,41.377337822],[-71.535294348,41.377347214]]],[[[-71.533625537,41.377197449],[-71.533600537,41.377251449],[-71.533562537,41.377307449],[-71.533547056,41.377354594],[-71.533562814,41.377307686],[-71.533600405,41.377251825],[-71.533625537,41.377197449]]],[[[-71.536508165,41.377242706],[-71.536517493,41.377307747],[-71.536535643,41.377356485],[-71.536517537,41.377307449],[-71.536508538,41.377242448],[-71.536513544,41.377212908],[-71.536508165,41.377242706]]],[[[-71.535238537,41.377364024],[-71.535238944,41.377364224],[-71.535238537,41.37732104],[-71.535238537,41.377364024]]],[[[-71.535571538,41.377273449],[-71.535655538,41.377287449],[-71.535713538,41.377327449],[-71.535763537,41.377377448],[-71.535748945,41.377396127],[-71.535763999,41.377377875],[-71.535713871,41.377327439],[-71.535655065,41.377286953],[-71.535571284,41.377272983],[-71.535533306,41.377270061],[-71.535571538,41.377273449]]],[[[-71.5349185,41.377389433],[-71.534922742,41.377397107],[-71.534918537,41.377389449],[-71.534916768,41.377387556],[-71.5349185,41.377389433]]],[[[-71.535472354,41.377374512],[-71.535488828,41.3774006],[-71.535472537,41.377374449],[-71.535453127,41.377352974],[-71.535472354,41.377374512]]],[[[-71.539042913,41.377430092],[-71.539072265,41.377377097],[-71.539091366,41.37733884],[-71.539042913,41.377430092]]],[[[-71.535162537,41.377357448],[-71.535134537,41.377392449],[-71.535148057,41.377438574],[-71.535134812,41.3773925],[-71.535162726,41.377357426],[-71.535162537,41.377357448]]],[[[-71.535740537,41.377446449],[-71.535740623,41.377446638],[-71.53574027,41.377441512],[-71.535740537,41.377446449]]],[[[-71.53490746,41.37747547],[-71.534907537,41.377475449],[-71.534913908,41.377469731],[-71.53490746,41.37747547]]],[[[-71.540691383,41.377342505],[-71.540758119,41.377385569],[-71.540804247,41.377443529],[-71.540829274,41.377474069],[-71.540758539,41.377385449],[-71.540691539,41.377342449],[-71.540678585,41.377337705],[-71.540691383,41.377342505]]],[[[-71.532940042,41.377476802],[-71.532947846,41.377460913],[-71.533031713,41.377464845],[-71.533090754,41.377443637],[-71.533090537,41.377443449],[-71.533031537,41.377464449],[-71.532947537,41.377460449],[-71.532940042,41.377476802]]],[[[-71.536578621,41.377426631],[-71.536628509,41.377482556],[-71.536641029,41.377492901],[-71.536628538,41.377482449],[-71.536578538,41.377426449],[-71.536568552,41.377411875],[-71.536578621,41.377426631]]],[[[-71.535256537,41.377499449],[-71.535332537,41.377470449],[-71.535426537,41.377473448],[-71.535518538,41.377490449],[-71.535515114,41.377466911],[-71.535518206,41.377490268],[-71.535426832,41.377473372],[-71.535332521,41.377470108],[-71.535256051,41.377499223],[-71.535196991,41.377495421],[-71.535166925,41.377465837],[-71.535196537,41.377495449],[-71.535256537,41.377499449]]],[[[-71.533141155,41.37748757],[-71.533202793,41.37752179],[-71.533141537,41.377487449],[-71.533109588,41.377459886],[-71.533141155,41.37748757]]],[[[-71.533344537,41.377511448],[-71.533279805,41.377546305],[-71.533279886,41.37754633],[-71.533344937,41.377511411],[-71.533378761,41.37750018],[-71.533344537,41.377511448]]],[[[-71.534668485,41.377559276],[-71.534645178,41.377580645],[-71.534668537,41.377559449],[-71.534703467,41.37754279],[-71.534668485,41.377559276]]],[[[-71.532954537,41.377540449],[-71.532991351,41.377583808],[-71.532954901,41.37754066],[-71.53294627,41.377514732],[-71.532954537,41.377540449]]],[[[-71.538959538,41.377546449],[-71.538899538,41.377583449],[-71.5388995,41.377583632],[-71.538959839,41.377546651],[-71.539000585,41.377493395],[-71.539036436,41.377440715],[-71.538959538,41.377546449]]],[[[-71.535774538,41.377589448],[-71.535778274,41.377612934],[-71.535774863,41.377588966],[-71.535777614,41.377583103],[-71.535774538,41.377589448]]],[[[-71.536808813,41.377598383],[-71.536874624,41.377629183],[-71.53675545,41.377571124],[-71.536808813,41.377598383]]],[[[-71.532999537,41.377593449],[-71.533071537,41.377622449],[-71.533093682,41.377649256],[-71.533071538,41.377622228],[-71.53299935,41.377593228],[-71.532999537,41.377593449]]],[[[-71.536970323,41.377660745],[-71.5369841,41.377665478],[-71.536970538,41.377660449],[-71.536926945,41.377647533],[-71.536970323,41.377660745]]],[[[-71.5408631,41.377651424],[-71.540811811,41.37768726],[-71.54086354,41.377651448],[-71.540879539,41.377615449],[-71.540879517,41.377615295],[-71.5408631,41.377651424]]],[[[-71.534317703,41.377694203],[-71.534280037,41.377723295],[-71.534317537,41.377694449],[-71.534375537,41.377638449],[-71.534433537,41.377638449],[-71.534473757,41.377629831],[-71.534433451,41.377637952],[-71.534375304,41.377638427],[-71.534317703,41.377694203]]],[[[-71.535814538,41.377748449],[-71.535825226,41.37776041],[-71.535814666,41.377748521],[-71.53581214,41.377719189],[-71.535814538,41.377748449]]],[[[-71.538844538,41.377747448],[-71.53884017,41.377770481],[-71.538844728,41.377747904],[-71.538868946,41.377705499],[-71.538844538,41.377747448]]],[[[-71.534198074,41.37775903],[-71.534159983,41.377780209],[-71.534198537,41.377759449],[-71.534265537,41.377734449],[-71.534265814,41.377734236],[-71.534198074,41.37775903]]],[[[-71.534058492,41.377818032],[-71.533990764,41.377846615],[-71.534058537,41.377818449],[-71.534099885,41.377805218],[-71.534058492,41.377818032]]],[[[-71.540781232,41.377737217],[-71.54074425,41.377786401],[-71.540688194,41.377828343],[-71.540663475,41.377850435],[-71.54068854,41.377828449],[-71.540744539,41.377786448],[-71.540781539,41.377737449],[-71.540803957,41.377700085],[-71.540781232,41.377737217]]],[[[-71.612193584,41.37703538],[-71.612167479,41.377057133],[-71.61211993,41.377110627],[-71.612118629,41.377130709],[-71.612163933,41.377166892],[-71.612209629,41.377184343],[-71.61225601,41.377228552],[-71.612298971,41.377314915],[-71.612354121,41.377391111],[-71.612422111,41.377447718],[-71.612449423,41.377474106],[-71.612452099,41.377511543],[-71.612464719,41.377592995],[-71.612487829,41.377630137],[-71.612497546,41.377700934],[-71.612528901,41.377747994],[-71.612554586,41.377781131],[-71.612580206,41.377812187],[-71.612632058,41.377789403],[-71.61263593,41.377728449],[-71.612609333,41.37765856],[-71.612579113,41.377583392],[-71.612552447,41.3775095],[-71.612526664,41.377436226],[-71.612490449,41.377371149],[-71.61244019,41.377313656],[-71.612394524,41.377261419],[-71.612393966,41.377201865],[-71.612383727,41.377109661],[-71.612336139,41.37705212],[-71.612307263,41.377034469],[-71.612249477,41.377031941],[-71.612193584,41.37703538]]],[[[-71.535893537,41.377854449],[-71.535963371,41.377868415],[-71.535963424,41.377868316],[-71.535893944,41.377854387],[-71.535869005,41.37781533],[-71.535893537,41.377854449]]],[[[-71.534845537,41.377791449],[-71.534798538,41.377840449],[-71.534669919,41.377884428],[-71.534732016,41.377864623],[-71.534798895,41.377840521],[-71.5348458,41.377791377],[-71.534845537,41.377791449]]],[[[-71.533981051,41.377850714],[-71.533938662,41.377887552],[-71.533981403,41.377850565],[-71.533981051,41.377850714]]],[[[-71.534260537,41.377892209],[-71.534257537,41.377891449],[-71.534257396,41.377891449],[-71.534260537,41.377892209]]],[[[-71.533929243,41.377895738],[-71.53392658,41.377898669],[-71.533929384,41.377895616],[-71.533929243,41.377895738]]],[[[-71.535081609,41.377889766],[-71.535099056,41.377899035],[-71.535081537,41.377889449],[-71.535063587,41.377856913],[-71.535081609,41.377889766]]],[[[-71.53877321,41.377902519],[-71.538798646,41.377865931],[-71.538826906,41.377816121],[-71.53877321,41.377902519]]],[[[-71.534129335,41.377910149],[-71.534181838,41.377891775],[-71.534245122,41.377891449],[-71.534181537,41.377891449],[-71.534129335,41.377910149]]],[[[-71.533292537,41.377835449],[-71.533326537,41.377893449],[-71.533315862,41.377912054],[-71.533326914,41.377893215],[-71.533293029,41.377834974],[-71.533243308,41.377820613],[-71.533292537,41.377835449]]],[[[-71.534569537,41.377895449],[-71.534488538,41.377908449],[-71.534427795,41.377924197],[-71.534488643,41.377908837],[-71.534569768,41.377895547],[-71.534582552,41.377895097],[-71.534569537,41.377895449]]],[[[-71.537317061,41.377898371],[-71.537271245,41.377929862],[-71.537317538,41.377898449],[-71.537330538,41.377844448],[-71.537330309,41.377844256],[-71.537317061,41.377898371]]],[[[-71.537217759,41.377983184],[-71.537217716,41.377983259],[-71.537222026,41.377978655],[-71.537217759,41.377983184]]],[[[-71.540617206,41.37798657],[-71.540617539,41.377986449],[-71.540608586,41.377938099],[-71.540617206,41.37798657]]],[[[-71.532984727,41.378000858],[-71.532984537,41.378000449],[-71.532935173,41.377977882],[-71.532984727,41.378000858]]],[[[-71.532763537,41.377960449],[-71.532621536,41.377999449],[-71.53260934,41.378006418],[-71.532621737,41.377999422],[-71.532697181,41.37798035],[-71.532764033,41.377960525],[-71.532793029,41.377955884],[-71.532763537,41.377960449]]],[[[-71.534114537,41.377915449],[-71.534073537,41.377966449],[-71.534040538,41.378017449],[-71.534040133,41.378017824],[-71.534040833,41.378017536],[-71.5340736,41.377966731],[-71.534114855,41.377915335],[-71.534114537,41.377915449]]],[[[-71.533247537,41.378004449],[-71.533240679,41.378032934],[-71.533247934,41.378004206],[-71.533257533,41.377993089],[-71.533247537,41.378004449]]],[[[-71.535884538,41.377960448],[-71.535814538,41.377997449],[-71.535765538,41.378043449],[-71.535762425,41.378045199],[-71.535765821,41.37804336],[-71.535814773,41.377997672],[-71.535863068,41.377972042],[-71.535884589,41.3779606],[-71.535907087,41.377943205],[-71.535884538,41.377960448]]],[[[-71.533807106,41.378044569],[-71.533792337,41.378051482],[-71.533807537,41.378044449],[-71.533826081,41.378020366],[-71.533807106,41.378044569]]],[[[-71.533679997,41.378092131],[-71.533669321,41.378096898],[-71.533679537,41.378092449],[-71.533701292,41.378086387],[-71.533679997,41.378092131]]],[[[-71.535265705,41.378001821],[-71.535267223,41.378058539],[-71.535283956,41.378099886],[-71.535267538,41.378058449],[-71.535267538,41.377934449],[-71.535267155,41.377934352],[-71.535265705,41.378001821]]],[[[-71.533143289,41.37810283],[-71.533190437,41.378098785],[-71.533143537,41.378102449],[-71.53307979,41.378076951],[-71.533143289,41.37810283]]],[[[-71.533052931,41.378104474],[-71.533073899,41.378074594],[-71.533073537,41.378074449],[-71.533052931,41.378104474]]],[[[-71.54070954,41.378087449],[-71.540665262,41.37810516],[-71.540710005,41.37808748],[-71.540789303,41.378067921],[-71.540863068,41.378085551],[-71.540889622,41.378103752],[-71.54086354,41.378085449],[-71.540789539,41.378067449],[-71.54070954,41.378087449]]],[[[-71.535288749,41.378111729],[-71.535297806,41.378113227],[-71.535288644,41.37811147],[-71.535288749,41.378111729]]],[[[-71.540472984,41.378039193],[-71.540407996,41.378072081],[-71.540344859,41.378105013],[-71.540309216,41.378124134],[-71.540472539,41.378039448],[-71.540486795,41.378034238],[-71.540472984,41.378039193]]],[[[-71.532485536,41.378069449],[-71.532372213,41.378135144],[-71.532417928,41.378109852],[-71.532485893,41.378069947],[-71.532532892,41.378047393],[-71.532485536,41.378069449]]],[[[-71.533005645,41.378154672],[-71.533021956,41.378140021],[-71.533005537,41.378154449],[-71.532980537,41.378136449],[-71.532980537,41.378081449],[-71.532997537,41.378028449],[-71.532987294,41.378006386],[-71.532997049,41.378028292],[-71.532980467,41.37808131],[-71.5329801,41.378136634],[-71.533005645,41.378154672]]],[[[-71.533862537,41.378122449],[-71.533855589,41.378156196],[-71.533855837,41.378156048],[-71.533862766,41.37812239],[-71.533862537,41.378122449]]],[[[-71.538589538,41.378120449],[-71.538568075,41.378155254],[-71.53858968,41.37812039],[-71.538594197,41.37811621],[-71.538589538,41.378120449]]],[[[-71.535496077,41.378172913],[-71.535564813,41.378156676],[-71.535581695,41.378146803],[-71.535564537,41.378156449],[-71.535496538,41.378172449],[-71.535434538,41.378139449],[-71.535425138,41.378137646],[-71.53543439,41.378139655],[-71.535496077,41.378172913]]],[[[-71.540220229,41.378177053],[-71.540184058,41.37820597],[-71.540220539,41.378177449],[-71.54025591,41.378154991],[-71.540220229,41.378177053]]],[[[-71.540443863,41.378216738],[-71.54051795,41.378179968],[-71.540582968,41.378145708],[-71.540632473,41.37811966],[-71.540443863,41.378216738]]],[[[-71.532141537,41.378228449],[-71.532113708,41.378233237],[-71.532141553,41.378228605],[-71.53214745,41.378226181],[-71.532141537,41.378228449]]],[[[-71.531658537,41.378220449],[-71.53162407,41.37824079],[-71.531658397,41.378220826],[-71.531685178,41.378216243],[-71.531658537,41.378220449]]],[[[-71.53197565,41.378240818],[-71.5320074,41.378242195],[-71.531975536,41.378240449],[-71.531946085,41.378237164],[-71.53197565,41.378240818]]],[[[-71.540384539,41.378254448],[-71.540369382,41.378266009],[-71.540385032,41.378254664],[-71.540440545,41.378218445],[-71.540384539,41.378254448]]],[[[-71.533425492,41.378222453],[-71.53335847,41.37826524],[-71.533353007,41.378268757],[-71.533425537,41.378222449],[-71.533437982,41.378208307],[-71.533425492,41.378222453]]],[[[-71.530691969,41.378213883],[-71.530756595,41.37823788],[-71.530803235,41.37827046],[-71.530756536,41.378237449],[-71.530691536,41.378213449],[-71.530620784,41.378207884],[-71.530691969,41.378213883]]],[[[-71.540998088,41.378216596],[-71.541030299,41.378271035],[-71.54099854,41.378216449],[-71.54097356,41.378182905],[-71.540998088,41.378216596]]],[[[-71.538417538,41.378242449],[-71.538359249,41.378278015],[-71.538417923,41.378242804],[-71.538452886,41.378235007],[-71.538417538,41.378242449]]],[[[-71.5383584,41.378278525],[-71.538358538,41.378278449],[-71.538348266,41.378271112],[-71.5383584,41.378278525]]],[[[-71.537140064,41.378155333],[-71.537135638,41.378221521],[-71.537135756,41.378282649],[-71.537140539,41.378155448],[-71.53716764,41.378102993],[-71.537140064,41.378155333]]],[[[-71.530437536,41.378195449],[-71.530421536,41.378250449],[-71.530382828,41.378285362],[-71.530421959,41.378250822],[-71.530437631,41.378195609],[-71.530525292,41.378194533],[-71.530568883,41.378201204],[-71.530525536,41.378194449],[-71.530437536,41.378195449]]],[[[-71.533673819,41.378285235],[-71.533738978,41.378238828],[-71.533793705,41.378194122],[-71.533673819,41.378285235]]],[[[-71.530880966,41.378303736],[-71.530963646,41.378305493],[-71.530963536,41.378305449],[-71.530880536,41.378303449],[-71.530847074,41.378290774],[-71.530880966,41.378303736]]],[[[-71.542009295,41.37830794],[-71.542035102,41.378299859],[-71.542087352,41.378307564],[-71.54203554,41.378299449],[-71.542009295,41.37830794]]],[[[-71.540266539,41.378344449],[-71.540265826,41.378345357],[-71.540266334,41.378344746],[-71.540270616,41.378341339],[-71.540266539,41.378344449]]],[[[-71.533231189,41.378335077],[-71.533179937,41.378351574],[-71.533231537,41.378335449],[-71.533269955,41.378317441],[-71.533231189,41.378335077]]],[[[-71.540114404,41.378265942],[-71.540059112,41.378315521],[-71.540020016,41.37835981],[-71.540059539,41.378315449],[-71.540138973,41.378244258],[-71.540114404,41.378265942]]],[[[-71.538130539,41.378334449],[-71.538068538,41.378362449],[-71.53806426,41.378365715],[-71.538068503,41.378362693],[-71.538130611,41.378334587],[-71.538141279,41.378328634],[-71.538130539,41.378334449]]],[[[-71.533076832,41.378368477],[-71.533018642,41.37833706],[-71.532946994,41.378358281],[-71.532946929,41.378358335],[-71.533018537,41.378337449],[-71.533076832,41.378368477]]],[[[-71.531033256,41.378333793],[-71.531083213,41.378370039],[-71.531033536,41.378333449],[-71.530974367,41.378309782],[-71.531033256,41.378333793]]],[[[-71.533080368,41.378370359],[-71.533080537,41.378370449],[-71.533106131,41.378366844],[-71.533080368,41.378370359]]],[[[-71.54173454,41.378353449],[-71.541693251,41.378367762],[-71.541734988,41.378353531],[-71.541760092,41.37834902],[-71.54173454,41.378353449]]],[[[-71.542175961,41.378346075],[-71.542221228,41.378371128],[-71.542126473,41.378316982],[-71.542175961,41.378346075]]],[[[-71.532743762,41.378386329],[-71.532736708,41.378363994],[-71.5327363,41.378363876],[-71.532743762,41.378386329]]],[[[-71.530351536,41.378352449],[-71.530362263,41.378387154],[-71.530351622,41.378352431],[-71.530355066,41.378342045],[-71.530351536,41.378352449]]],[[[-71.533673819,41.378285235],[-71.533673537,41.378285449],[-71.533643537,41.378341449],[-71.533601537,41.378395449],[-71.53364387,41.378341087],[-71.533673819,41.378285235]]],[[[-71.531785536,41.378375449],[-71.531939469,41.37839744],[-71.531870662,41.37838612],[-71.53178591,41.378374983],[-71.531756997,41.378366003],[-71.531785536,41.378375449]]],[[[-71.533601537,41.378395449],[-71.533598552,41.378398617],[-71.53360151,41.378395508],[-71.533601537,41.378395449]]],[[[-71.530368536,41.37840745],[-71.530372099,41.37841328],[-71.530368487,41.378407289],[-71.530368536,41.37840745]]],[[[-71.532255617,41.378415006],[-71.532227936,41.378407702],[-71.532145184,41.378387965],[-71.532057464,41.378391192],[-71.532016635,41.378395244],[-71.532057536,41.378391449],[-71.532145537,41.37838845],[-71.532255617,41.378415006]]],[[[-71.541512539,41.378402449],[-71.541460158,41.378417518],[-71.541512937,41.378402783],[-71.541562541,41.378398501],[-71.541512539,41.378402449]]],[[[-71.532870536,41.378424449],[-71.532941089,41.37836318],[-71.532904805,41.378393285],[-71.532870236,41.378424033],[-71.5328264,41.378397584],[-71.532870536,41.378424449]]],[[[-71.541030612,41.378271565],[-71.541083356,41.378322708],[-71.541151182,41.37835891],[-71.541225414,41.378394493],[-71.541297417,41.378410019],[-71.541367627,41.378422778],[-71.541404581,41.378422964],[-71.54136754,41.378422449],[-71.541225539,41.378394449],[-71.541083539,41.378322449],[-71.541030539,41.378271449],[-71.541030612,41.378271565]]],[[[-71.531157458,41.378424761],[-71.531161114,41.378427418],[-71.531142648,41.378413816],[-71.531157458,41.378424761]]],[[[-71.528499961,41.378467123],[-71.528503589,41.378462451],[-71.528503535,41.378462449],[-71.528499961,41.378467123]]],[[[-71.532780115,41.378495814],[-71.532789537,41.378479449],[-71.532789514,41.378479411],[-71.532780115,41.378495814]]],[[[-71.53997944,41.378421348],[-71.539963381,41.378475671],[-71.53996887,41.378500325],[-71.539963539,41.378475449],[-71.539979539,41.378421449],[-71.539993471,41.378398528],[-71.53997944,41.378421348]]],[[[-71.530440536,41.378512449],[-71.530440974,41.378512904],[-71.530434293,41.378504286],[-71.530440536,41.378512449]]],[[[-71.528974925,41.378516707],[-71.528939535,41.378506449],[-71.528902726,41.378515762],[-71.528939823,41.378506622],[-71.528974925,41.378516707]]],[[[-71.52862925,41.378488792],[-71.528702497,41.378508511],[-71.528743972,41.378517039],[-71.528702535,41.378508449],[-71.528554535,41.37846345],[-71.528554419,41.378463447],[-71.52862925,41.378488792]]],[[[-71.531274937,41.378523678],[-71.531268537,41.378514449],[-71.531268318,41.378514253],[-71.531274937,41.378523678]]],[[[-71.537303063,41.378483448],[-71.537329702,41.378523069],[-71.537303538,41.378483449],[-71.537286409,41.378470198],[-71.537303063,41.378483448]]],[[[-71.532533537,41.378523449],[-71.532571641,41.378533611],[-71.532533062,41.378523158],[-71.532510909,41.378513702],[-71.532533537,41.378523449]]],[[[-71.529841314,41.378530497],[-71.529860852,41.378541763],[-71.529841536,41.378530449],[-71.529808376,41.378526864],[-71.529841314,41.378530497]]],[[[-71.54018254,41.378451449],[-71.540154539,41.378513449],[-71.540154539,41.378542143],[-71.540154849,41.378512952],[-71.54018299,41.378451901],[-71.540192245,41.378439085],[-71.54018254,41.378451449]]],[[[-71.529483535,41.378539449],[-71.529503717,41.378553121],[-71.529483841,41.378539051],[-71.529468633,41.378517991],[-71.529483535,41.378539449]]],[[[-71.542278348,41.378391732],[-71.542248565,41.378445123],[-71.54220682,41.378501788],[-71.542169799,41.378553723],[-71.54224954,41.378444449],[-71.54227854,41.378391448],[-71.542257727,41.378385865],[-71.542278348,41.378391732]]],[[[-71.529458778,41.378503799],[-71.529506963,41.378504694],[-71.529590573,41.378542363],[-71.529640185,41.378562102],[-71.529506536,41.37850445],[-71.529458535,41.37850345],[-71.529458778,41.378503799]]],[[[-71.533365537,41.378560449],[-71.533360131,41.378563264],[-71.533365848,41.378560335],[-71.533366952,41.378559803],[-71.533365537,41.378560449]]],[[[-71.529708536,41.37856345],[-71.529690313,41.378566053],[-71.529708577,41.378563693],[-71.529729511,41.378548873],[-71.529708536,41.37856345]]],[[[-71.537849538,41.378539449],[-71.537805266,41.378566262],[-71.537849589,41.378539645],[-71.537874591,41.378515398],[-71.537849538,41.378539449]]],[[[-71.529174695,41.378586563],[-71.529174536,41.378586449],[-71.529166685,41.378583611],[-71.529174695,41.378586563]]],[[[-71.537778538,41.378582449],[-71.537745539,41.378634449],[-71.537741335,41.37863937],[-71.537745435,41.378634775],[-71.537778726,41.378582336],[-71.537778538,41.378582449]]],[[[-71.533164536,41.378672449],[-71.533163325,41.378674304],[-71.533164693,41.378672402],[-71.533164536,41.378672449]]],[[[-71.529174695,41.378586563],[-71.529237265,41.378631351],[-71.529259517,41.378696522],[-71.529259536,41.37869645],[-71.529237536,41.378631449],[-71.529174695,41.378586563]]],[[[-71.532414238,41.378699826],[-71.532450651,41.378691518],[-71.532450537,41.378691449],[-71.532414238,41.378699826]]],[[[-71.528839397,41.378687118],[-71.528839846,41.378707007],[-71.528839535,41.378687449],[-71.52887833,41.378686843],[-71.528839397,41.378687118]]],[[[-71.531356163,41.378618717],[-71.531408288,41.378660556],[-71.531464238,41.378698849],[-71.531513515,41.37872702],[-71.531464537,41.37869845],[-71.531408536,41.37866045],[-71.531316324,41.378580596],[-71.531356163,41.378618717]]],[[[-71.537400773,41.378639439],[-71.537431472,41.378693746],[-71.537450747,41.378725545],[-71.537377239,41.378595972],[-71.537400773,41.378639439]]],[[[-71.52997422,41.378732797],[-71.529973101,41.378736051],[-71.529974536,41.378732449],[-71.529973891,41.378695059],[-71.52997422,41.378732797]]],[[[-71.540171539,41.378740449],[-71.54017181,41.378740665],[-71.540156963,41.378716154],[-71.540171539,41.378740449]]],[[[-71.537657538,41.378737449],[-71.537656734,41.378752463],[-71.53765759,41.378737744],[-71.537663614,41.378730338],[-71.537657538,41.378737449]]],[[[-71.539867159,41.378728263],[-71.539822281,41.378752819],[-71.539867539,41.378728449],[-71.539895543,41.378720738],[-71.539867159,41.378728263]]],[[[-71.528985536,41.37871645],[-71.529044536,41.378760449],[-71.529045169,41.378780064],[-71.529044722,41.378760503],[-71.528985948,41.378716447],[-71.5289598,41.378707034],[-71.528985536,41.37871645]]],[[[-71.540221375,41.378780317],[-71.54022136,41.378780284],[-71.540214586,41.378774886],[-71.540221375,41.378780317]]],[[[-71.528640535,41.378785449],[-71.528640403,41.378785327],[-71.528624428,41.378775663],[-71.528640535,41.378785449]]],[[[-71.532278537,41.378787449],[-71.532278553,41.378787686],[-71.532305887,41.378768304],[-71.532278537,41.378787449]]],[[[-71.531701938,41.378780957],[-71.531769772,41.378789683],[-71.531650213,41.37877314],[-71.531701938,41.378780957]]],[[[-71.537491167,41.378797444],[-71.537504409,41.378802855],[-71.537491539,41.378797449],[-71.537482285,41.378781138],[-71.537491167,41.378797444]]],[[[-71.532498241,41.378720425],[-71.532530301,41.378770823],[-71.532521033,41.378811315],[-71.532530537,41.378770449],[-71.532498537,41.378720449],[-71.532471693,41.378704231],[-71.532498241,41.378720425]]],[[[-71.537619538,41.378815449],[-71.537569159,41.378817387],[-71.537619892,41.378815881],[-71.537654343,41.378793594],[-71.537654344,41.378793571],[-71.537619538,41.378815449]]],[[[-71.52885652,41.37881855],[-71.528856705,41.378822009],[-71.528856535,41.378818449],[-71.528854838,41.378811235],[-71.52885652,41.37881855]]],[[[-71.539654999,41.37881904],[-71.539642503,41.378826454],[-71.539654539,41.378819449],[-71.539660278,41.378817277],[-71.539654999,41.37881904]]],[[[-71.531877206,41.378792458],[-71.531957277,41.378792825],[-71.532041058,41.378804648],[-71.532096067,41.378844359],[-71.532111003,41.378853031],[-71.532096536,41.378844449],[-71.532041536,41.378804449],[-71.531957536,41.378792449],[-71.53179771,41.378791536],[-71.531877206,41.378792458]]],[[[-71.532281537,41.378830449],[-71.532300413,41.378882154],[-71.532282011,41.378830813],[-71.532278719,41.378790059],[-71.532281537,41.378830449]]],[[[-71.530614536,41.37885445],[-71.530644504,41.378903345],[-71.53061478,41.378853956],[-71.530603945,41.37882212],[-71.530614536,41.37885445]]],[[[-71.532520454,41.378813845],[-71.532567154,41.378814769],[-71.532623047,41.378859488],[-71.532606937,41.378906876],[-71.532623537,41.378859449],[-71.532567537,41.378814449],[-71.532520536,41.378813449],[-71.532520454,41.378813845]]],[[[-71.528640535,41.378785449],[-71.528777535,41.378896449],[-71.528840535,41.37891345],[-71.528851041,41.378895756],[-71.52884056,41.378913261],[-71.528777789,41.378896489],[-71.528713363,41.37884308],[-71.528640535,41.378785449]]],[[[-71.529956777,41.378900717],[-71.530019549,41.37891966],[-71.530080065,41.378921042],[-71.530019536,41.378919449],[-71.52995664,41.37890048],[-71.529956777,41.378900717]]],[[[-71.532953265,41.378931939],[-71.533009784,41.378893386],[-71.533019517,41.37887996],[-71.533009536,41.37889345],[-71.532953537,41.378931449],[-71.532917537,41.378890449],[-71.532886213,41.378889004],[-71.532917323,41.378890851],[-71.532953265,41.378931939]]],[[[-71.532708257,41.37893592],[-71.532758386,41.378927238],[-71.532708537,41.378935449],[-71.532623537,41.37893445],[-71.532602638,41.378919522],[-71.532602581,41.378919689],[-71.532623449,41.378934846],[-71.532708257,41.37893592]]],[[[-71.539544588,41.378908593],[-71.539506012,41.378957987],[-71.539575638,41.378872979],[-71.539544588,41.378908593]]],[[[-71.528993539,41.378982439],[-71.529004182,41.378955598],[-71.529024445,41.378902736],[-71.528993539,41.378982439]]],[[[-71.530262128,41.378982422],[-71.530271495,41.378988095],[-71.530262536,41.378982449],[-71.530198648,41.378951304],[-71.530262128,41.378982422]]],[[[-71.540410717,41.379026808],[-71.540379141,41.378989631],[-71.540332734,41.378940664],[-71.540410717,41.379026808]]],[[[-71.539469382,41.379019266],[-71.539439752,41.379075064],[-71.539496207,41.37897308],[-71.539469382,41.379019266]]],[[[-71.530706536,41.379022449],[-71.530705606,41.3790848],[-71.530706954,41.379022304],[-71.530697482,41.378988497],[-71.530706536,41.379022449]]],[[[-71.539148653,41.379104653],[-71.539213539,41.379101449],[-71.539293539,41.379104449],[-71.539307265,41.379104073],[-71.539293107,41.379104405],[-71.53921349,41.379101161],[-71.539148653,41.379104653]]],[[[-71.54047454,41.379078449],[-71.540505798,41.379109707],[-71.540474935,41.379078655],[-71.540465284,41.379071342],[-71.54047454,41.379078449]]],[[[-71.530665281,41.379112755],[-71.530705498,41.379089795],[-71.530705505,41.379089468],[-71.530665281,41.379112755]]],[[[-71.529157303,41.378873661],[-71.529116737,41.378943883],[-71.529077114,41.379018359],[-71.529055731,41.379071378],[-71.529037289,41.379119301],[-71.529077536,41.379018449],[-71.529157536,41.37887345],[-71.529168011,41.378859122],[-71.529157303,41.378873661]]],[[[-71.530483242,41.379114715],[-71.530518298,41.379119617],[-71.530483536,41.379114449],[-71.530424101,41.37908275],[-71.530483242,41.379114715]]],[[[-71.530625041,41.379123224],[-71.530648064,41.379122584],[-71.530648285,41.379122458],[-71.530625041,41.379123224]]],[[[-71.528912974,41.379169188],[-71.528917824,41.379159099],[-71.528941091,41.379106788],[-71.528952622,41.379080478],[-71.528912974,41.379169188]]],[[[-71.540580539,41.379171449],[-71.540625402,41.379198222],[-71.540580721,41.379171311],[-71.540546623,41.379146011],[-71.540580539,41.379171449]]],[[[-71.529859536,41.379232449],[-71.529859731,41.379232493],[-71.529849467,41.379221182],[-71.529859536,41.379232449]]],[[[-71.528992583,41.379231213],[-71.52899155,41.37923339],[-71.528992535,41.379231449],[-71.528994238,41.379227182],[-71.528992583,41.379231213]]],[[[-71.538983063,41.379116494],[-71.538917132,41.379151417],[-71.538853667,41.379196745],[-71.538793492,41.37924424],[-71.538917538,41.379151449],[-71.538983539,41.379116449],[-71.539065539,41.379096449],[-71.53911722,41.379103391],[-71.539065156,41.379096272],[-71.538983063,41.379116494]]],[[[-71.540876539,41.379234449],[-71.540889196,41.379258355],[-71.540876905,41.379234215],[-71.540836436,41.379224924],[-71.540876539,41.379234449]]],[[[-71.530154984,41.379265498],[-71.530110549,41.379245975],[-71.530091098,41.379246781],[-71.530110536,41.37924645],[-71.530154984,41.379265498]]],[[[-71.530221536,41.379316449],[-71.53023112,41.379321391],[-71.530221533,41.379316044],[-71.530195258,41.379292909],[-71.530221536,41.379316449]]],[[[-71.528837522,41.379338005],[-71.528862616,41.379282361],[-71.528866695,41.379272732],[-71.528837522,41.379338005]]],[[[-71.530838536,41.379348449],[-71.530871832,41.379383743],[-71.53083895,41.379348081],[-71.530803715,41.379339521],[-71.530838536,41.379348449]]],[[[-71.540837539,41.379386449],[-71.540799543,41.379403907],[-71.540837284,41.379386889],[-71.540871981,41.379354878],[-71.540837539,41.379386449]]],[[[-71.531731233,41.379203938],[-71.531672742,41.379247477],[-71.531638202,41.379278956],[-71.531677853,41.379331501],[-71.531721272,41.379389123],[-71.531758382,41.379398604],[-71.531802201,41.379404561],[-71.531876416,41.379413483],[-71.531947211,41.379382199],[-71.531996109,41.379341453],[-71.532044152,41.379292817],[-71.532071241,41.379238378],[-71.532072667,41.379175255],[-71.532060561,41.379133543],[-71.531982346,41.379139671],[-71.531940043,41.37919121],[-71.531865681,41.379191596],[-71.531823119,41.379147628],[-71.531768768,41.379150982],[-71.531731233,41.379203938]]],[[[-71.530517536,41.379442449],[-71.5305533,41.379436417],[-71.530517039,41.379442211],[-71.530436225,41.379413164],[-71.530383437,41.379394557],[-71.530517536,41.379442449]]],[[[-71.528743755,41.379451619],[-71.52879216,41.379396914],[-71.528835466,41.379342563],[-71.528835496,41.379342496],[-71.528743755,41.379451619]]],[[[-71.528893012,41.379423922],[-71.528870119,41.379472516],[-71.528926277,41.379361928],[-71.528893012,41.379423922]]],[[[-71.54062265,41.379469066],[-71.540689113,41.379448257],[-71.540754951,41.379423413],[-71.54062265,41.379469066]]],[[[-71.53871148,41.379417607],[-71.538707204,41.37947762],[-71.538701726,41.379498306],[-71.538707539,41.379477449],[-71.538711539,41.379417449],[-71.538713158,41.379410971],[-71.53871148,41.379417607]]],[[[-71.530919214,41.379534054],[-71.530906719,41.379466121],[-71.530890164,41.379408487],[-71.530919214,41.379534054]]],[[[-71.540334496,41.379555645],[-71.540419813,41.379552733],[-71.540493544,41.379534447],[-71.540419539,41.379552449],[-71.540334539,41.379555449],[-71.540334496,41.379555645]]],[[[-71.528645535,41.37957545],[-71.528612973,41.379624786],[-71.528645942,41.379575798],[-71.528671134,41.379545585],[-71.528645535,41.37957545]]],[[[-71.528789842,41.379580702],[-71.528731351,41.379628561],[-71.528722626,41.379642076],[-71.528731536,41.37962845],[-71.528834906,41.37954836],[-71.528789842,41.379580702]]],[[[-71.540334496,41.379555645],[-71.540311539,41.379659449],[-71.540296763,41.379669764],[-71.54031169,41.379659507],[-71.540326868,41.379603126],[-71.540334496,41.379555645]]],[[[-71.538631423,41.379647002],[-71.538593539,41.379699449],[-71.538631539,41.379647449],[-71.538634997,41.37964106],[-71.538631423,41.379647002]]],[[[-71.528571535,41.37967545],[-71.528532611,41.379707777],[-71.528571805,41.37967528],[-71.528612229,41.379625892],[-71.528612536,41.379625449],[-71.528571535,41.37967545]]],[[[-71.530152078,41.379815461],[-71.530152518,41.379815381],[-71.530145478,41.379788983],[-71.530152078,41.379815461]]],[[[-71.538519821,41.379819988],[-71.538593465,41.37969957],[-71.538559037,41.379754974],[-71.538519821,41.379819988]]],[[[-71.538519821,41.379819988],[-71.538503584,41.379842241],[-71.538519539,41.379820449],[-71.538519821,41.379819988]]],[[[-71.530601763,41.379844617],[-71.530673357,41.379832705],[-71.530743064,41.379810776],[-71.530818426,41.379803895],[-71.530876888,41.379760334],[-71.530932495,41.379714624],[-71.530959642,41.379653713],[-71.530959736,41.379641263],[-71.530959536,41.37965345],[-71.530932536,41.37971445],[-71.530818536,41.379803449],[-71.530743536,41.37981045],[-71.530673536,41.379832449],[-71.530601536,41.37984445],[-71.530544269,41.379839302],[-71.530601763,41.379844617]]],[[[-71.530283589,41.379818857],[-71.53034545,41.379850316],[-71.530283536,41.379818449],[-71.53026536,41.379811488],[-71.530283589,41.379818857]]],[[[-71.530351604,41.379853446],[-71.530351956,41.379853625],[-71.530377355,41.379852289],[-71.530351604,41.379853446]]],[[[-71.529885943,41.379841603],[-71.529930587,41.379873956],[-71.529835536,41.379802449],[-71.529830839,41.379813186],[-71.529835701,41.379802622],[-71.529885943,41.379841603]]],[[[-71.540238539,41.379815449],[-71.540237576,41.379872309],[-71.540239032,41.379815166],[-71.540251566,41.379755287],[-71.540258388,41.379697349],[-71.540238539,41.379815449]]],[[[-71.530024535,41.379755449],[-71.530018536,41.379822449],[-71.530006565,41.379877316],[-71.53000675,41.379877295],[-71.530018598,41.379822769],[-71.530024791,41.379755322],[-71.530030808,41.379751059],[-71.530024535,41.379755449]]],[[[-71.529758593,41.379886284],[-71.529806785,41.379848462],[-71.529817836,41.379837496],[-71.529758593,41.379886284]]],[[[-71.52818533,41.379917271],[-71.528134535,41.379914449],[-71.528122585,41.379916063],[-71.528134444,41.379914635],[-71.52818533,41.379917271]]],[[[-71.528297535,41.379913449],[-71.528237508,41.379918383],[-71.528297442,41.379913886],[-71.528337836,41.379865231],[-71.528371306,41.379818988],[-71.528297535,41.379913449]]],[[[-71.538428176,41.379928399],[-71.538397843,41.379962188],[-71.538478539,41.379876449],[-71.538428176,41.379928399]]],[[[-71.529709536,41.37994445],[-71.529686457,41.379967529],[-71.529709813,41.379944245],[-71.529721195,41.379930141],[-71.529709536,41.37994445]]],[[[-71.526904507,41.37996186],[-71.526953652,41.379970938],[-71.526904534,41.37996145],[-71.526859294,41.379956211],[-71.526904507,41.37996186]]],[[[-71.526637535,41.37996345],[-71.526568535,41.37998145],[-71.526511504,41.379991988],[-71.526561212,41.379983369],[-71.52656897,41.379981361],[-71.526637632,41.379963591],[-71.526725441,41.379948888],[-71.526765678,41.379949405],[-71.526725535,41.37994845],[-71.526637535,41.37996345]]],[[[-71.528494183,41.37986302],[-71.5284585,41.379921028],[-71.528458069,41.379977038],[-71.528442556,41.38000994],[-71.528458536,41.379977449],[-71.528458536,41.37992145],[-71.528494535,41.37986345],[-71.528526366,41.379824631],[-71.528494183,41.37986302]]],[[[-71.528194853,41.380015592],[-71.528134727,41.38000797],[-71.528072622,41.380014469],[-71.528134535,41.380008449],[-71.528194853,41.380015592]]],[[[-71.527695535,41.380014449],[-71.527543979,41.3800511],[-71.527622666,41.380033823],[-71.52769526,41.380014754],[-71.527726805,41.380000552],[-71.527695535,41.380014449]]],[[[-71.528248465,41.380053382],[-71.528248736,41.380052996],[-71.528210886,41.380017625],[-71.528210695,41.380017601],[-71.528248465,41.380053382]]],[[[-71.527457583,41.380059706],[-71.52753502,41.380052157],[-71.527457535,41.38005945],[-71.527358535,41.38005845],[-71.527259535,41.380048449],[-71.527166535,41.38002645],[-71.527080535,41.379995449],[-71.527054668,41.379990453],[-71.527080607,41.379995621],[-71.527166158,41.380026865],[-71.527259417,41.380048798],[-71.527358441,41.38005854],[-71.527457583,41.380059706]]],[[[-71.526681672,41.38008355],[-71.526743535,41.38007545],[-71.526890001,41.380078081],[-71.526833136,41.380075703],[-71.52674356,41.380075312],[-71.526681672,41.38008355]]],[[[-71.526468535,41.38009345],[-71.526468904,41.380093496],[-71.526462145,41.380061501],[-71.526468535,41.38009345]]],[[[-71.540248539,41.379933449],[-71.54031854,41.380034449],[-71.540312586,41.380092993],[-71.540318632,41.38003442],[-71.540283376,41.379980733],[-71.540248852,41.379933311],[-71.540238372,41.379878913],[-71.540248539,41.379933449]]],[[[-71.527100704,41.380107381],[-71.527092191,41.380105534],[-71.527050495,41.380097497],[-71.527100704,41.380107381]]],[[[-71.528359125,41.380081443],[-71.528306225,41.380142223],[-71.528303163,41.380152129],[-71.528306536,41.38014245],[-71.528359536,41.38008145],[-71.528382444,41.380067174],[-71.528359125,41.380081443]]],[[[-71.527367519,41.380152981],[-71.527348247,41.380150368],[-71.527301354,41.380144159],[-71.527367519,41.380152981]]],[[[-71.528169875,41.380156007],[-71.528215022,41.380100918],[-71.528247106,41.380055313],[-71.528169875,41.380156007]]],[[[-71.527981062,41.380033919],[-71.527894166,41.380054341],[-71.527810097,41.380079862],[-71.527719348,41.380108151],[-71.527627187,41.380136352],[-71.527599762,41.38014018],[-71.52752643,41.380156157],[-71.527475523,41.380159928],[-71.527526535,41.38015645],[-71.527627535,41.38013645],[-71.527894535,41.380054449],[-71.528056355,41.380016884],[-71.527981062,41.380033919]]],[[[-71.528169875,41.380156007],[-71.528169536,41.38015645],[-71.528168244,41.380159934],[-71.528169875,41.380156007]]],[[[-71.539557675,41.380157665],[-71.53961093,41.380153935],[-71.53965466,41.380155741],[-71.539610539,41.380153449],[-71.539557675,41.380157665]]],[[[-71.538270201,41.380157339],[-71.538264636,41.380163838],[-71.538270539,41.380157449],[-71.538277369,41.380146533],[-71.538270201,41.380157339]]],[[[-71.540003539,41.380176449],[-71.539978553,41.380177615],[-71.540003472,41.380176876],[-71.540086298,41.380162873],[-71.540143371,41.38015213],[-71.540003539,41.380176449]]],[[[-71.539853929,41.380183697],[-71.539870272,41.380182668],[-71.539853539,41.380183449],[-71.539771539,41.380175449],[-71.539753818,41.380171652],[-71.539771665,41.380175584],[-71.539853929,41.380183697]]],[[[-71.529512536,41.38014145],[-71.529469536,41.380185449],[-71.529398536,41.38022145],[-71.529369848,41.380228665],[-71.529398942,41.380221492],[-71.529454497,41.380193553],[-71.529469706,41.380185911],[-71.529512956,41.380141554],[-71.529538475,41.380103652],[-71.529512536,41.38014145]]],[[[-71.539447539,41.380166449],[-71.539364539,41.380169449],[-71.539225539,41.380228449],[-71.539161539,41.380264449],[-71.539130209,41.380290959],[-71.539161839,41.380264782],[-71.539225979,41.380228442],[-71.539297318,41.380198412],[-71.539364954,41.380169732],[-71.539447514,41.380166776],[-71.53949168,41.380162929],[-71.539447539,41.380166449]]],[[[-71.528117535,41.38033845],[-71.528117833,41.380357391],[-71.528117956,41.380338863],[-71.528125223,41.380286025],[-71.528125717,41.380278448],[-71.528117535,41.38033845]]],[[[-71.529154536,41.38036645],[-71.529110748,41.380369435],[-71.529110936,41.380369606],[-71.529154781,41.380366896],[-71.529167432,41.380335822],[-71.529154536,41.38036645]]],[[[-71.529007536,41.38032945],[-71.528951535,41.38037545],[-71.528949825,41.380410226],[-71.528951734,41.380375409],[-71.529007343,41.380329677],[-71.529041168,41.380324068],[-71.529007536,41.38032945]]],[[[-71.538124147,41.380315354],[-71.538067117,41.380359399],[-71.538001154,41.380395007],[-71.537941598,41.380430041],[-71.537878535,41.380467207],[-71.538067539,41.380359449],[-71.538124538,41.38031545],[-71.538138938,41.380299867],[-71.538124147,41.380315354]]],[[[-71.528846099,41.380544056],[-71.528877166,41.380530856],[-71.528894694,41.380534667],[-71.528877535,41.38053045],[-71.528846099,41.380544056]]],[[[-71.539049539,41.380342449],[-71.539014538,41.380397449],[-71.538993539,41.38045445],[-71.538977329,41.380554954],[-71.53898517,41.380509327],[-71.538993883,41.380454915],[-71.539014588,41.380397915],[-71.5390499,41.380342511],[-71.53907578,41.380327579],[-71.539049539,41.380342449]]],[[[-71.528995147,41.380559368],[-71.528995144,41.380559353],[-71.528994852,41.380559281],[-71.528995147,41.380559368]]],[[[-71.528730536,41.38058545],[-71.528699432,41.38063485],[-71.528730922,41.38058553],[-71.528766667,41.380573707],[-71.528730536,41.38058545]]],[[[-71.538948539,41.380637449],[-71.538910541,41.380689447],[-71.538910944,41.380689068],[-71.53894893,41.380637162],[-71.538960119,41.380610121],[-71.538948539,41.380637449]]],[[[-71.528275007,41.380625254],[-71.528322162,41.380691499],[-71.528333865,41.380725438],[-71.528322536,41.380691449],[-71.528235082,41.380566781],[-71.528275007,41.380625254]]],[[[-71.52875049,41.380727358],[-71.528750843,41.380727047],[-71.528733049,41.380692476],[-71.52875049,41.380727358]]],[[[-71.528119535,41.38046545],[-71.528133535,41.380537449],[-71.52820845,41.380729229],[-71.528208461,41.380729057],[-71.528186998,41.380671566],[-71.528162708,41.380604676],[-71.528133649,41.380537055],[-71.528119893,41.380465222],[-71.528119284,41.380449509],[-71.528119535,41.38046545]]],[[[-71.528690703,41.380816518],[-71.528704481,41.380808706],[-71.528704535,41.380808449],[-71.528690703,41.380816518]]],[[[-71.538678244,41.380830387],[-71.538726485,41.380807897],[-71.53876519,41.380786288],[-71.538678244,41.380830387]]],[[[-71.528305115,41.380803408],[-71.528289536,41.380851456],[-71.528305536,41.38080345],[-71.528335266,41.380758028],[-71.528305115,41.380803408]]],[[[-71.537712192,41.380695208],[-71.537684078,41.38075484],[-71.537682415,41.380820388],[-71.537681045,41.380873797],[-71.537684539,41.380754449],[-71.537737911,41.380646769],[-71.537712192,41.380695208]]],[[[-71.538579539,41.38088045],[-71.538556627,41.380896917],[-71.538579864,41.380880308],[-71.538581283,41.380879565],[-71.538579539,41.38088045]]],[[[-71.528178535,41.380850449],[-71.528117584,41.380902409],[-71.528164347,41.3808627],[-71.528178998,41.380850255],[-71.528191433,41.38082267],[-71.528178535,41.380850449]]],[[[-71.528607535,41.380909449],[-71.52864596,41.380862306],[-71.528664162,41.380835186],[-71.528607535,41.380909449]]],[[[-71.528001535,41.38098045],[-71.527971218,41.381020096],[-71.528001661,41.380980911],[-71.52803652,41.380954953],[-71.528001535,41.38098045]]],[[[-71.538407539,41.38097845],[-71.538360539,41.381026449],[-71.53832619,41.381037728],[-71.538360774,41.381026889],[-71.538407812,41.380978594],[-71.538470863,41.380949139],[-71.53851061,41.380928822],[-71.538407539,41.38097845]]],[[[-71.528100401,41.381033009],[-71.528092718,41.381056489],[-71.528100535,41.38103345],[-71.528123871,41.381027893],[-71.528100401,41.381033009]]],[[[-71.538232539,41.38107845],[-71.538198524,41.381101312],[-71.538232056,41.381078871],[-71.53824797,41.38107086],[-71.538232539,41.38107845]]],[[[-71.537685044,41.38111306],[-71.537697616,41.381127774],[-71.537685539,41.38111345],[-71.537685214,41.381106312],[-71.537685044,41.38111306]]],[[[-71.528572536,41.38097145],[-71.528566535,41.38110545],[-71.528552709,41.3811462],[-71.528566935,41.381105325],[-71.528570334,41.381032824],[-71.52857272,41.380971124],[-71.528572536,41.38097145]]],[[[-71.538110539,41.381148449],[-71.538037539,41.381167449],[-71.537957539,41.381181449],[-71.537915698,41.381186098],[-71.537957248,41.381181879],[-71.538037344,41.381167879],[-71.53811024,41.381148895],[-71.538160794,41.381124558],[-71.538110539,41.381148449]]],[[[-71.537803238,41.381185863],[-71.537851641,41.381187796],[-71.537803539,41.381185449],[-71.537761275,41.381173616],[-71.537803238,41.381185863]]],[[[-71.528471535,41.38119045],[-71.528446535,41.38124045],[-71.528445466,41.38125123],[-71.528446777,41.381240519],[-71.528471928,41.38119038],[-71.528493134,41.381182208],[-71.528471535,41.38119045]]],[[[-71.528075235,41.381193397],[-71.528076186,41.381213806],[-71.528081378,41.381282759],[-71.528084919,41.381288868],[-71.528081535,41.38128245],[-71.528073862,41.381163942],[-71.528075235,41.381193397]]],[[[-71.527936536,41.38108945],[-71.527933536,41.38115245],[-71.527938535,41.38122145],[-71.527955536,41.38129045],[-71.527981535,41.38134945],[-71.52798288,41.38136693],[-71.527981747,41.381349839],[-71.527955516,41.381290131],[-71.527938877,41.381221844],[-71.527933655,41.38115289],[-71.527936968,41.381089767],[-71.527955259,41.381047681],[-71.527936536,41.38108945]]],[[[-71.527655343,41.381409139],[-71.527697307,41.381403882],[-71.527742665,41.381408725],[-71.527697535,41.38140345],[-71.527655343,41.381409139]]],[[[-71.527595535,41.38145645],[-71.527598416,41.381485258],[-71.527595878,41.381456577],[-71.527606053,41.381423276],[-71.527595535,41.38145645]]],[[[-71.528139666,41.381392843],[-71.528163044,41.381454679],[-71.528176424,41.381506004],[-71.528163535,41.38145445],[-71.528139535,41.381392449],[-71.528138739,41.38139094],[-71.528139666,41.381392843]]],[[[-71.528055238,41.381543682],[-71.528032155,41.381493636],[-71.528018877,41.381469485],[-71.528055238,41.381543682]]],[[[-71.527617535,41.38157045],[-71.527617889,41.381570784],[-71.527610365,41.38154625],[-71.527617535,41.38157045]]],[[[-71.528596536,41.38155245],[-71.528609921,41.381589564],[-71.52859698,41.381552709],[-71.528574296,41.381535443],[-71.528596536,41.38155245]]],[[[-71.527940575,41.381615902],[-71.527962226,41.381612275],[-71.527940535,41.38161545],[-71.527895536,41.381569449],[-71.527839026,41.381500382],[-71.527856594,41.381522313],[-71.527895269,41.381569851],[-71.527940575,41.381615902]]],[[[-71.528035004,41.381620739],[-71.528040923,41.381624381],[-71.528035034,41.381620727],[-71.528035004,41.381620739]]],[[[-71.528200178,41.38158837],[-71.528223508,41.381657363],[-71.528183039,41.381530309],[-71.528200178,41.38158837]]],[[[-71.528664535,41.38165945],[-71.528684503,41.381655621],[-71.528664802,41.381659245],[-71.528641773,41.381636688],[-71.528664535,41.38165945]]],[[[-71.527673535,41.38162345],[-71.527695339,41.381663092],[-71.527695382,41.381663051],[-71.527673745,41.38162349],[-71.527631368,41.381583542],[-71.527673535,41.38162345]]],[[[-71.527963323,41.381650567],[-71.527948085,41.381670867],[-71.527963503,41.381650492],[-71.527963323,41.381650567]]],[[[-71.527935402,41.381687761],[-71.527936274,41.38170997],[-71.52793554,41.381687578],[-71.527935402,41.381687761]]],[[[-71.528085535,41.38169445],[-71.528106781,41.381727995],[-71.528085958,41.381694128],[-71.528060639,41.381636615],[-71.528060595,41.381636588],[-71.528085535,41.38169445]]],[[[-71.528766536,41.38166845],[-71.528776535,41.38173345],[-71.528827536,41.38177345],[-71.528861147,41.381793723],[-71.528827886,41.381773351],[-71.528776732,41.381732952],[-71.528766713,41.381668299],[-71.528756845,41.381660764],[-71.528766536,41.38166845]]],[[[-71.528256411,41.38171929],[-71.528292178,41.381779728],[-71.528318004,41.381811435],[-71.528292535,41.38177945],[-71.528223536,41.38165745],[-71.528256411,41.38171929]]],[[[-71.527598535,41.38172945],[-71.527590535,41.38177545],[-71.527628447,41.381822341],[-71.527628433,41.381822153],[-71.527590638,41.381775324],[-71.527598602,41.381729415],[-71.527598535,41.38172945]]],[[[-71.527905535,41.38186345],[-71.527935259,41.381756628],[-71.527918267,41.381809025],[-71.527905535,41.38186345]]],[[[-71.527905535,41.38186345],[-71.527905507,41.381863528],[-71.52791141,41.381877459],[-71.527905535,41.38186345]]],[[[-71.528381039,41.381877019],[-71.528391584,41.381889173],[-71.528381536,41.38187745],[-71.52837721,41.381873313],[-71.528381039,41.381877019]]],[[[-71.526399171,41.381902374],[-71.526478274,41.381902722],[-71.526559321,41.381903069],[-71.526620823,41.381903325],[-71.526355163,41.381901343],[-71.526399171,41.381902374]]],[[[-71.528893535,41.38187645],[-71.528886169,41.381909599],[-71.528893855,41.38187632],[-71.52889081,41.381817397],[-71.528893535,41.38187645]]],[[[-71.526768564,41.381960677],[-71.526791838,41.381974914],[-71.526768535,41.38196045],[-71.526736039,41.381934677],[-71.526768564,41.381960677]]],[[[-71.527930308,41.381988532],[-71.527930978,41.382011471],[-71.527930535,41.38198845],[-71.527921719,41.381970479],[-71.527930308,41.381988532]]],[[[-71.526347903,41.38200945],[-71.526498535,41.38200945],[-71.526559918,41.382020156],[-71.52649845,41.382009065],[-71.526410753,41.382007964],[-71.526347903,41.38200945]]],[[[-71.526046534,41.38198645],[-71.526020535,41.38203745],[-71.526020122,41.382061829],[-71.526020687,41.382037922],[-71.526046811,41.381986321],[-71.526102396,41.381949258],[-71.526156024,41.38191314],[-71.526046534,41.38198645]]],[[[-71.528796438,41.382062767],[-71.528814318,41.38206262],[-71.528814395,41.382062452],[-71.528796438,41.382062767]]],[[[-71.527641536,41.38193645],[-71.527636535,41.38199545],[-71.527625535,41.38205145],[-71.52764438,41.382105159],[-71.527625766,41.382051156],[-71.527636675,41.381995898],[-71.527641872,41.381936365],[-71.527640635,41.381928556],[-71.527641536,41.38193645]]],[[[-71.526900619,41.382020819],[-71.526985202,41.382054899],[-71.527074551,41.382086873],[-71.527138344,41.382116675],[-71.527074535,41.38208645],[-71.526900535,41.38202045],[-71.526863157,41.382008328],[-71.526900619,41.382020819]]],[[[-71.527645535,41.38210845],[-71.527708535,41.38213845],[-71.527764977,41.382142015],[-71.527709006,41.382138364],[-71.527645362,41.382107958],[-71.527645535,41.38210845]]],[[[-71.52790661,41.382101152],[-71.527876776,41.382136951],[-71.527809776,41.382143852],[-71.527876536,41.38213745],[-71.527906535,41.38210145],[-71.527911462,41.382089428],[-71.52790661,41.382101152]]],[[[-71.526177837,41.382057967],[-71.52612037,41.382095053],[-71.526089564,41.382146129],[-71.526120535,41.38209545],[-71.526177535,41.38205845],[-71.526215342,41.382041167],[-71.526177837,41.382057967]]],[[[-71.526652535,41.38204445],[-71.526798535,41.38213645],[-71.526852798,41.38215214],[-71.526798728,41.382135949],[-71.526727562,41.38208899],[-71.526652631,41.382044158],[-71.526609853,41.382031896],[-71.526652535,41.38204445]]],[[[-71.527207404,41.382166408],[-71.527210436,41.382172486],[-71.527207535,41.38216645],[-71.527183444,41.382147854],[-71.527207404,41.382166408]]],[[[-71.528625535,41.38221145],[-71.528628491,41.382218057],[-71.528625551,41.382211421],[-71.528625535,41.38221145]]],[[[-71.526060383,41.382211797],[-71.526044289,41.382260387],[-71.526087369,41.382149875],[-71.526060383,41.382211797]]],[[[-71.527026535,41.38222945],[-71.527084535,41.38227145],[-71.527090018,41.382284908],[-71.527084648,41.382271435],[-71.527026784,41.38222955],[-71.527018781,41.382224955],[-71.527026535,41.38222945]]],[[[-71.525980535,41.38227945],[-71.525975535,41.38232245],[-71.52597571,41.38232245],[-71.525980761,41.382279695],[-71.525993012,41.382239246],[-71.525980535,41.38227945]]],[[[-71.528642535,41.38224945],[-71.528720535,41.38226445],[-71.528781535,41.38231345],[-71.528796765,41.38234801],[-71.528781968,41.382313059],[-71.528720364,41.382263972],[-71.528642464,41.38224929],[-71.528642535,41.38224945]]],[[[-71.527269374,41.382295909],[-71.527323268,41.382353575],[-71.527384014,41.382387546],[-71.527445731,41.382420831],[-71.527460012,41.382425553],[-71.527445535,41.38242045],[-71.527323535,41.38235345],[-71.527269535,41.38229545],[-71.527261404,41.382278531],[-71.527269374,41.382295909]]],[[[-71.527184535,41.38249345],[-71.52718494,41.382493697],[-71.527169966,41.382464007],[-71.527157718,41.382439745],[-71.527157609,41.382439599],[-71.527184535,41.38249345]]],[[[-71.528554855,41.382496669],[-71.528575752,41.38249645],[-71.528554536,41.38249645],[-71.528554855,41.382496669]]],[[[-71.528744936,41.382551927],[-71.52876503,41.382546822],[-71.528744536,41.38255145],[-71.52861201,41.382497855],[-71.528671741,41.382524364],[-71.528744936,41.382551927]]],[[[-71.527567669,41.382463913],[-71.527617608,41.382505571],[-71.527693685,41.382530298],[-71.527764082,41.382550682],[-71.527795142,41.382556608],[-71.527764535,41.38255045],[-71.527617535,41.38250545],[-71.527567535,41.38246345],[-71.527554615,41.382458897],[-71.527567669,41.382463913]]],[[[-71.528643535,41.38255745],[-71.52866196,41.382575875],[-71.528643849,41.382557304],[-71.528587898,41.382517547],[-71.528560035,41.382500219],[-71.528643535,41.38255745]]],[[[-71.528727536,41.38266345],[-71.528736006,41.382683567],[-71.528727889,41.38266386],[-71.528722469,41.382655371],[-71.528727536,41.38266345]]],[[[-71.527377535,41.38258545],[-71.527446536,41.38260345],[-71.527513535,41.38263445],[-71.527644322,41.38271219],[-71.527581087,41.382671962],[-71.52751375,41.382634356],[-71.527446294,41.3826032],[-71.52737778,41.382584966],[-71.527338285,41.382570958],[-71.527377535,41.38258545]]],[[[-71.528055829,41.382668211],[-71.528113579,41.382723749],[-71.528135071,41.382779113],[-71.528140515,41.382785381],[-71.528135535,41.38277945],[-71.528113535,41.38272345],[-71.528014,41.382625741],[-71.528055829,41.382668211]]],[[[-71.528737535,41.38277545],[-71.528771536,41.38278845],[-71.528787406,41.38280018],[-71.528771762,41.382788264],[-71.528737598,41.382775204],[-71.528737535,41.38277545]]],[[[-71.528792278,41.382807473],[-71.528794514,41.382805594],[-71.528794439,41.382805537],[-71.528792278,41.382807473]]],[[[-71.527748535,41.38279445],[-71.527719605,41.382844331],[-71.527719964,41.382844143],[-71.527748942,41.382793981],[-71.527737907,41.382774312],[-71.527748535,41.38279445]]],[[[-71.527340535,41.38288545],[-71.527340544,41.382885591],[-71.527380846,41.382883185],[-71.527340535,41.38288545]]],[[[-71.528717535,41.38287445],[-71.528715536,41.38289845],[-71.528713705,41.382927741],[-71.528717748,41.382874934],[-71.52873219,41.382861318],[-71.528717535,41.38287445]]],[[[-71.528273151,41.38292975],[-71.528300187,41.382947068],[-71.528273535,41.38292945],[-71.528250072,41.382908381],[-71.528273151,41.38292975]]],[[[-71.527342535,41.38291545],[-71.527370208,41.382956232],[-71.527342907,41.38291504],[-71.527341325,41.382897299],[-71.527342535,41.38291545]]],[[[-71.527378887,41.382996728],[-71.527380615,41.382971933],[-71.527380514,41.38297178],[-71.527378887,41.382996728]]],[[[-71.52848982,41.38301466],[-71.528515808,41.383017979],[-71.528489535,41.38301445],[-71.528468241,41.383007256],[-71.52848982,41.38301466]]],[[[-71.528713536,41.38293045],[-71.528721535,41.38298745],[-71.528685803,41.383037079],[-71.528686026,41.383037001],[-71.528721685,41.382987615],[-71.528713545,41.382930309],[-71.528713536,41.38293045]]],[[[-71.528556478,41.383023563],[-71.528586485,41.383042418],[-71.528556536,41.38302345],[-71.52855555,41.383023318],[-71.528556478,41.383023563]]],[[[-71.527411535,41.38312945],[-71.527447028,41.383143393],[-71.527411867,41.383129274],[-71.527407999,41.383117802],[-71.527411535,41.38312945]]],[[[-71.527475732,41.383165414],[-71.527467933,41.383151788],[-71.527467673,41.383151684],[-71.527475732,41.383165414]]],[[[-71.527483691,41.383210222],[-71.52749428,41.38319782],[-71.527494256,41.383197779],[-71.527483691,41.383210222]]],[[[-71.527374543,41.383273448],[-71.527449086,41.383250753],[-71.527449278,41.383250529],[-71.527374543,41.383273448]]],[[[-71.526861823,41.38331103],[-71.526912937,41.38329662],[-71.526912535,41.38329645],[-71.526861823,41.38331103]]],[[[-71.526765535,41.38334945],[-71.526708535,41.38338445],[-71.52669987,41.383386084],[-71.526708415,41.383384742],[-71.526765854,41.383349806],[-71.526819823,41.383325142],[-71.526765535,41.38334945]]],[[[-71.526586188,41.38340791],[-71.526596132,41.383405641],[-71.526586535,41.38340745],[-71.526586188,41.38340791]]],[[[-71.527036398,41.383372476],[-71.527094204,41.383419392],[-71.527108608,41.383427146],[-71.527094535,41.383419451],[-71.526983535,41.38332645],[-71.527036398,41.383372476]]],[[[-71.527345535,41.383399451],[-71.527322331,41.383438333],[-71.527345994,41.383399641],[-71.527348116,41.383388237],[-71.527345535,41.383399451]]],[[[-71.527237709,41.383474568],[-71.527262862,41.383469813],[-71.527237535,41.383474451],[-71.52722452,41.383471156],[-71.527237709,41.383474568]]],[[[-71.526586188,41.38340791],[-71.526549535,41.383456451],[-71.526543474,41.383475543],[-71.526549628,41.383456615],[-71.526586188,41.38340791]]],[[[-71.526528535,41.38354845],[-71.526543607,41.383583181],[-71.526528925,41.383548399],[-71.526529024,41.383534278],[-71.526528535,41.38354845]]],[[[-71.526584535,41.383651451],[-71.526593187,41.383656257],[-71.526584444,41.383651313],[-71.526584535,41.383651451]]],[[[-71.526859535,41.38373745],[-71.526859238,41.383737163],[-71.526786929,41.383721788],[-71.526715531,41.383707099],[-71.526684211,41.383697777],[-71.526715535,41.383707451],[-71.526859535,41.38373745]]],[[[-71.526859535,41.38373745],[-71.526992535,41.38387445],[-71.527066836,41.383916464],[-71.527055265,41.383909583],[-71.526992604,41.383874126],[-71.526951955,41.383828738],[-71.526905596,41.383781178],[-71.526859535,41.38373745]]],[[[-71.527309536,41.38404945],[-71.527330913,41.384076857],[-71.527309675,41.384049193],[-71.527263999,41.384016604],[-71.527309536,41.38404945]]],[[[-71.527172535,41.38426645],[-71.527166666,41.384288546],[-71.52717272,41.384266861],[-71.527196614,41.384244298],[-71.527172535,41.38426645]]],[[[-71.527114134,41.384426525],[-71.527131747,41.384391606],[-71.52715043,41.384342298],[-71.527114134,41.384426525]]],[[[-71.527125535,41.384701451],[-71.527169535,41.384717451],[-71.527212209,41.384724156],[-71.527169355,41.384716974],[-71.52712562,41.384700998],[-71.527106387,41.384674469],[-71.527125535,41.384701451]]],[[[-71.527241958,41.384733725],[-71.527239811,41.384728782],[-71.527239677,41.384728759],[-71.527241958,41.384733725]]],[[[-71.52731838,41.384900112],[-71.527291449,41.384835254],[-71.527271722,41.38479853],[-71.52731838,41.384900112]]],[[[-71.527367536,41.384935451],[-71.527421532,41.384956611],[-71.527367895,41.38493534],[-71.52733531,41.384912433],[-71.527367536,41.384935451]]],[[[-71.527517372,41.384981414],[-71.527517229,41.384981205],[-71.527447816,41.384965855],[-71.527517372,41.384981414]]],[[[-71.527556535,41.385038451],[-71.527586535,41.385094451],[-71.527598485,41.385109355],[-71.527586939,41.385094214],[-71.527556822,41.385038807],[-71.52754738,41.38502507],[-71.527556535,41.385038451]]],[[[-71.527675535,41.385205451],[-71.527728535,41.38525445],[-71.527755269,41.385269437],[-71.527728731,41.385254182],[-71.527709106,41.38523605],[-71.527675719,41.385205138],[-71.527666211,41.385193822],[-71.527675535,41.385205451]]],[[[-71.527786318,41.385363237],[-71.527798556,41.385350678],[-71.527798536,41.385350451],[-71.527786318,41.385363237]]],[[[-71.527633535,41.385437451],[-71.527582787,41.385474436],[-71.527633941,41.38543758],[-71.527646658,41.385432933],[-71.527633535,41.385437451]]],[[[-71.527534535,41.38558545],[-71.527534641,41.38558571],[-71.527534535,41.385573209],[-71.527534535,41.38558545]]],[[[-71.527581536,41.385700451],[-71.527640536,41.385805451],[-71.527690535,41.385845451],[-71.527690828,41.385845489],[-71.527640747,41.385805175],[-71.527612544,41.38575123],[-71.527581456,41.385700122],[-71.527580689,41.38569838],[-71.527581536,41.385700451]]],[[[-71.527904535,41.385930451],[-71.527907636,41.385936651],[-71.527904786,41.385930509],[-71.527889177,41.385923599],[-71.527904535,41.385930451]]],[[[-71.526729323,41.385944922],[-71.526775699,41.385946849],[-71.526729535,41.385944451],[-71.52667534,41.385935829],[-71.526729323,41.385944922]]],[[[-71.527212916,41.385950438],[-71.527224709,41.385948493],[-71.527224535,41.385948451],[-71.527212916,41.385950438]]],[[[-71.527294443,41.385966677],[-71.527315787,41.385977077],[-71.527294535,41.385966451],[-71.527261535,41.38595745],[-71.527231452,41.385950133],[-71.527294443,41.385966677]]],[[[-71.52690247,41.385995883],[-71.526977782,41.3859955],[-71.527000215,41.385988363],[-71.526977535,41.38599545],[-71.526902536,41.38599545],[-71.526893108,41.385973061],[-71.52690247,41.385995883]]],[[[-71.527894536,41.386006451],[-71.52786455,41.386014666],[-71.527894706,41.386006556],[-71.527903371,41.385983733],[-71.527894536,41.386006451]]],[[[-71.527519946,41.386022907],[-71.527586266,41.386025595],[-71.527457547,41.38601729],[-71.527519946,41.386022907]]],[[[-71.527746794,41.386026764],[-71.527800927,41.386026451],[-71.527762535,41.386026451],[-71.527673426,41.386026451],[-71.527746794,41.386026764]]],[[[-71.527984535,41.386167451],[-71.528029088,41.386202757],[-71.527984693,41.386167245],[-71.527952814,41.386162483],[-71.527984535,41.386167451]]],[[[-71.526489535,41.38620645],[-71.526489525,41.386206295],[-71.526440826,41.386156403],[-71.526390537,41.386138444],[-71.526440535,41.386156451],[-71.526489535,41.38620645]]],[[[-71.52766195,41.386178163],[-71.527590321,41.386198444],[-71.527521731,41.386223732],[-71.527514392,41.386228726],[-71.527594535,41.386197451],[-71.527733536,41.386162451],[-71.527780458,41.386161512],[-71.527743206,41.386159779],[-71.52766195,41.386178163]]],[[[-71.527466083,41.386261596],[-71.527462628,41.386268681],[-71.527478535,41.386253451],[-71.527491382,41.386244382],[-71.527466083,41.386261596]]],[[[-71.528087536,41.386258451],[-71.528110456,41.386287711],[-71.528087497,41.386258244],[-71.528037886,41.386209794],[-71.528087536,41.386258451]]],[[[-71.526489535,41.38620645],[-71.526492535,41.38626845],[-71.526488869,41.386317951],[-71.526492982,41.386268662],[-71.526489535,41.38620645]]],[[[-71.52663144,41.386369626],[-71.526620118,41.386373373],[-71.526663528,41.386367585],[-71.52663144,41.386369626]]],[[[-71.526490535,41.386382451],[-71.526520535,41.386391451],[-71.526520573,41.386391448],[-71.526490872,41.386382146],[-71.526488839,41.386331555],[-71.526490535,41.386382451]]],[[[-71.526739535,41.386379451],[-71.526819535,41.386412451],[-71.52682535,41.38641447],[-71.526766645,41.386388829],[-71.5267018,41.38636515],[-71.526667054,41.386367361],[-71.526692535,41.38636645],[-71.526739535,41.386379451]]],[[[-71.527201288,41.386434925],[-71.527166629,41.386441939],[-71.527263535,41.38642345],[-71.527265628,41.386422544],[-71.527201288,41.386434925]]],[[[-71.526917535,41.386452451],[-71.526940331,41.386480773],[-71.526911887,41.38644437],[-71.526892417,41.38643796],[-71.526917535,41.386452451]]],[[[-71.527007221,41.386468064],[-71.526973182,41.38648408],[-71.526979536,41.386481451],[-71.527021535,41.386466451],[-71.527043739,41.386462997],[-71.527007221,41.386468064]]],[[[-71.528167536,41.38638645],[-71.528211535,41.386434451],[-71.528273877,41.386516559],[-71.528254104,41.386489926],[-71.528211838,41.386434156],[-71.528167966,41.386386344],[-71.528134746,41.386318885],[-71.528167536,41.38638645]]],[[[-71.528695573,41.386906904],[-71.528661773,41.386861173],[-71.528627436,41.38681313],[-71.528588301,41.386764472],[-71.528583083,41.386757639],[-71.528695573,41.386906904]]],[[[-71.528757535,41.386975451],[-71.528819536,41.387006451],[-71.528902536,41.387037451],[-71.529057415,41.387052289],[-71.528981811,41.387044125],[-71.528902426,41.387037352],[-71.528819204,41.3870062],[-71.528757907,41.386975295],[-71.528718279,41.386933885],[-71.528757535,41.386975451]]],[[[-71.529236536,41.387092451],[-71.529316536,41.387085451],[-71.529339511,41.387078887],[-71.529316183,41.387085344],[-71.529236409,41.38709218],[-71.52915556,41.387073218],[-71.529090219,41.387058281],[-71.529236536,41.387092451]]],[[[-71.529469954,41.387258476],[-71.529552225,41.387265228],[-71.529614516,41.387266924],[-71.529469954,41.387258476]]],[[[-71.529651537,41.387201451],[-71.529623654,41.387267172],[-71.529623803,41.387267176],[-71.529651682,41.387201211],[-71.529651537,41.387180099],[-71.529651537,41.387201451]]],[[[-71.529469954,41.387258476],[-71.529469536,41.387258451],[-71.529397584,41.387274441],[-71.529457687,41.387261181],[-71.529469954,41.387258476]]],[[[-71.529322536,41.387298451],[-71.529319385,41.387299984],[-71.529370809,41.387281514],[-71.529322536,41.387298451]]],[[[-71.529107536,41.387413451],[-71.529099823,41.387423797],[-71.529107275,41.387413908],[-71.529116343,41.387408652],[-71.529107536,41.387413451]]],[[[-71.528700653,41.387663711],[-71.528700815,41.387596196],[-71.52871962,41.387541942],[-71.52876297,41.387505773],[-71.528802753,41.387513585],[-71.528762536,41.387505451],[-71.528719536,41.387541451],[-71.528700536,41.387596451],[-71.528700536,41.387663451],[-71.528700653,41.387663711]]],[[[-71.529977955,41.387658283],[-71.52991309,41.387666612],[-71.530058537,41.387650451],[-71.530126536,41.387651451],[-71.530192456,41.387652639],[-71.53014929,41.387651537],[-71.53005867,41.387649983],[-71.529977955,41.387658283]]],[[[-71.530400767,41.387701513],[-71.530387459,41.387694929],[-71.530348204,41.387676483],[-71.530400767,41.387701513]]],[[[-71.528700653,41.387663711],[-71.528724536,41.387716451],[-71.528752878,41.387743093],[-71.528724707,41.387716282],[-71.528700653,41.387663711]]],[[[-71.529739308,41.387697477],[-71.529664578,41.38771211],[-71.529591945,41.387731706],[-71.529521257,41.387751987],[-71.529488404,41.387765649],[-71.529457921,41.387780683],[-71.52944431,41.387787386],[-71.529521536,41.387752451],[-71.529664536,41.387712451],[-71.529786216,41.387689374],[-71.529739308,41.387697477]]],[[[-71.52899825,41.387799217],[-71.528994809,41.387795575],[-71.528994651,41.387795567],[-71.52899825,41.387799217]]],[[[-71.528845536,41.387806451],[-71.528878808,41.387798889],[-71.528845583,41.387806133],[-71.528825508,41.387794322],[-71.528845536,41.387806451]]],[[[-71.530639537,41.387845451],[-71.53064915,41.387860521],[-71.530639466,41.387845006],[-71.530617747,41.387827852],[-71.530639537,41.387845451]]],[[[-71.529307135,41.38783298],[-71.529236119,41.387868333],[-71.529213607,41.387890963],[-71.529236536,41.387868451],[-71.529307536,41.387833451],[-71.529365793,41.387826978],[-71.529307135,41.38783298]]],[[[-71.529082536,41.387923451],[-71.529107141,41.387939691],[-71.529082904,41.387923513],[-71.529072364,41.387888485],[-71.529082536,41.387923451]]],[[[-71.530511592,41.388037419],[-71.530511826,41.388037426],[-71.530528659,41.388027593],[-71.530511592,41.388037419]]],[[[-71.530666665,41.388347535],[-71.530603738,41.388331858],[-71.530563375,41.388322392],[-71.530666665,41.388347535]]],[[[-71.530753537,41.388350451],[-71.530833205,41.388368377],[-71.530833039,41.388368298],[-71.530753161,41.388349978],[-71.530694174,41.3883497],[-71.530753537,41.388350451]]],[[[-71.530957537,41.388441451],[-71.531000536,41.388490452],[-71.531013139,41.388511273],[-71.531000975,41.388490107],[-71.530958011,41.388441542],[-71.530914278,41.388409408],[-71.530957537,41.388441451]]],[[[-71.531102537,41.388644451],[-71.531114475,41.388666788],[-71.531102511,41.388644295],[-71.531095282,41.388635237],[-71.531102537,41.388644451]]],[[[-71.531152537,41.388759451],[-71.531139364,41.388792984],[-71.531152917,41.388759479],[-71.531137211,41.388713474],[-71.531152537,41.388759451]]],[[[-71.531021536,41.388931451],[-71.530973581,41.388959753],[-71.531021593,41.388931912],[-71.531057647,41.388900499],[-71.531021536,41.388931451]]],[[[-71.53083904,41.389025881],[-71.530892831,41.38900161],[-71.530954036,41.388970577],[-71.53083904,41.389025881]]],[[[-71.530685537,41.389065451],[-71.530624537,41.389098451],[-71.530586347,41.389130406],[-71.530625022,41.389098881],[-71.530685654,41.389065908],[-71.530735697,41.38904996],[-71.530685537,41.389065451]]],[[[-71.530522537,41.389446451],[-71.530517536,41.389509451],[-71.530517613,41.389509536],[-71.530522659,41.389446607],[-71.530521912,41.389428023],[-71.530522537,41.389446451]]],[[[-71.530609536,41.389611451],[-71.530691536,41.389625451],[-71.530718537,41.389658452],[-71.530678537,41.389710451],[-71.530719004,41.389658197],[-71.53069193,41.389625088],[-71.530609349,41.389611159],[-71.530561462,41.389557701],[-71.530537116,41.389531159],[-71.530609536,41.389611451]]],[[[-71.530836537,41.389928452],[-71.530856599,41.389942733],[-71.530836631,41.389928334],[-71.530819274,41.389904613],[-71.530836537,41.389928452]]],[[[-71.531238537,41.390013451],[-71.531305537,41.390051451],[-71.531337537,41.390106452],[-71.531357537,41.390163452],[-71.531369133,41.390188511],[-71.531358035,41.390163438],[-71.53133763,41.390106519],[-71.531305898,41.390051227],[-71.53123855,41.390013258],[-71.531218953,41.390008762],[-71.531238537,41.390013451]]],[[[-71.531444537,41.390351451],[-71.531445537,41.390369451],[-71.531446636,41.390385939],[-71.531444709,41.390351021],[-71.53143315,41.390326845],[-71.531444537,41.390351451]]],[[[-71.531481365,41.390476218],[-71.531481755,41.390465774],[-71.531481537,41.390465451],[-71.531481365,41.390476218]]],[[[-71.531286537,41.390848452],[-71.531262865,41.390869847],[-71.531286449,41.39084861],[-71.531337626,41.390793592],[-71.531372019,41.390754785],[-71.531286537,41.390848452]]],[[[-71.531169537,41.390937452],[-71.531120537,41.390993451],[-71.531090477,41.391035125],[-71.531120638,41.390993836],[-71.531169871,41.390937401],[-71.531200418,41.390917498],[-71.531169537,41.390937452]]],[[[-71.532561311,41.391162384],[-71.532493533,41.391159244],[-71.532410623,41.391160411],[-71.532403838,41.391161357],[-71.532410537,41.391160452],[-71.532561311,41.391162384]]],[[[-71.531031537,41.391148451],[-71.531019665,41.391230855],[-71.531022616,41.39121072],[-71.531031515,41.391148784],[-71.531048492,41.391133616],[-71.531031537,41.391148451]]],[[[-71.532268748,41.391188055],[-71.532192236,41.391230044],[-71.532147417,41.391283419],[-71.532192537,41.391230452],[-71.532268537,41.391188451],[-71.532304343,41.391178973],[-71.532268748,41.391188055]]],[[[-71.532647537,41.391202451],[-71.532700537,41.391244451],[-71.532742358,41.391300213],[-71.532742334,41.391300078],[-71.532701003,41.391244263],[-71.53263799,41.391194721],[-71.532637725,41.391194602],[-71.532647537,41.391202451]]],[[[-71.530994537,41.391327452],[-71.530996386,41.391332814],[-71.530994883,41.391327664],[-71.531014385,41.391266915],[-71.530994537,41.391327452]]],[[[-71.532105282,41.3913433],[-71.532079766,41.391387391],[-71.532145947,41.391285361],[-71.532105282,41.3913433]]],[[[-71.532747538,41.391412452],[-71.532727092,41.391454128],[-71.532747827,41.391412622],[-71.532749652,41.391387501],[-71.532747538,41.391412452]]],[[[-71.532072475,41.391452446],[-71.5320758,41.391457297],[-71.532072537,41.391452452],[-71.532072783,41.391445434],[-71.532072475,41.391452446]]],[[[-71.532154276,41.39154251],[-71.532160874,41.391547031],[-71.532154537,41.391542452],[-71.532137888,41.39152852],[-71.532154276,41.39154251]]],[[[-71.531034537,41.391443452],[-71.531046537,41.391501452],[-71.531045537,41.391568452],[-71.531043481,41.391574617],[-71.531045563,41.391568475],[-71.531046655,41.391501693],[-71.531034844,41.391443812],[-71.531033539,41.391440556],[-71.531034537,41.391443452]]],[[[-71.532278735,41.391634287],[-71.532273537,41.391628452],[-71.532273235,41.391628234],[-71.532278735,41.391634287]]],[[[-71.532658537,41.391571452],[-71.532632538,41.391635451],[-71.532639537,41.391691451],[-71.532644616,41.391702929],[-71.532639848,41.391691534],[-71.532632835,41.391635687],[-71.532658861,41.391571894],[-71.532690178,41.39152093],[-71.532719807,41.391468363],[-71.532658537,41.391571452]]],[[[-71.531071437,41.391729461],[-71.531058584,41.391679485],[-71.531046741,41.391641903],[-71.531071437,41.391729461]]],[[[-71.531107537,41.391808451],[-71.531112537,41.391869452],[-71.531067734,41.391934167],[-71.531067877,41.391934121],[-71.531112947,41.391869912],[-71.531107603,41.391808278],[-71.531098068,41.391788939],[-71.531107537,41.391808451]]],[[[-71.532273584,41.391877208],[-71.532216298,41.391923034],[-71.532139435,41.391931974],[-71.532089589,41.391948107],[-71.532139537,41.391932452],[-71.532216537,41.391923451],[-71.532273537,41.391877452],[-71.532281883,41.39186045],[-71.532273584,41.391877208]]],[[[-71.530874664,41.391968603],[-71.530912361,41.391955639],[-71.530989746,41.391958888],[-71.53100839,41.391952978],[-71.530989537,41.391958452],[-71.530912537,41.391955452],[-71.530874664,41.391968603]]],[[[-71.530840537,41.391980452],[-71.530839903,41.391980933],[-71.530840586,41.391980435],[-71.530840537,41.391980452]]],[[[-71.531918117,41.391976496],[-71.531880733,41.392018793],[-71.531918537,41.391976452],[-71.531935081,41.391970863],[-71.531918117,41.391976496]]],[[[-71.532843538,41.391954452],[-71.532942603,41.392022505],[-71.532901762,41.391993578],[-71.532843948,41.391954669],[-71.532786828,41.391908601],[-71.532747474,41.391877601],[-71.532843538,41.391954452]]],[[[-71.531842396,41.392085197],[-71.531811624,41.392129839],[-71.531842537,41.392085452],[-71.531856823,41.392056331],[-71.531842396,41.392085197]]],[[[-71.531719248,41.39224365],[-71.531719538,41.392243452],[-71.531724017,41.392238012],[-71.531719248,41.39224365]]],[[[-71.533045538,41.392256451],[-71.533028717,41.392302107],[-71.533045851,41.392256638],[-71.533044959,41.392221124],[-71.533045538,41.392256451]]],[[[-71.530576537,41.392308452],[-71.530591536,41.392370452],[-71.530620341,41.392391541],[-71.53059151,41.392370022],[-71.53057666,41.392308619],[-71.530575386,41.392276804],[-71.530576537,41.392308452]]],[[[-71.533031537,41.392380452],[-71.533050513,41.392412893],[-71.533031761,41.392380439],[-71.533028523,41.392351601],[-71.533031537,41.392380452]]],[[[-71.531560491,41.39244848],[-71.531540358,41.392517142],[-71.531536264,41.392542735],[-71.531540537,41.392517452],[-71.531560537,41.392448452],[-71.531566093,41.392439361],[-71.531560491,41.39244848]]],[[[-71.530945115,41.392592463],[-71.530890902,41.392559926],[-71.530849742,41.392537033],[-71.530945115,41.392592463]]],[[[-71.533068537,41.392640452],[-71.533064377,41.392690638],[-71.533068884,41.392640236],[-71.533067906,41.392567737],[-71.533065169,41.392500316],[-71.533062674,41.392438134],[-71.533068537,41.392640452]]],[[[-71.531522277,41.392683415],[-71.53150715,41.392714776],[-71.531522537,41.392683451],[-71.53152306,41.392675183],[-71.531522277,41.392683415]]],[[[-71.531008537,41.392713452],[-71.531010537,41.392725452],[-71.531019539,41.392773626],[-71.5310086,41.39271308],[-71.530989739,41.392646716],[-71.530989537,41.392646452],[-71.531008537,41.392713452]]],[[[-71.531479267,41.392799952],[-71.531472997,41.392834751],[-71.53149235,41.392750025],[-71.531479267,41.392799952]]],[[[-71.533052537,41.392833452],[-71.533044026,41.39287863],[-71.533052855,41.392833747],[-71.533053347,41.392823692],[-71.533052537,41.392833452]]],[[[-71.532980538,41.393012452],[-71.532972203,41.393035221],[-71.532980906,41.393012706],[-71.532981913,41.392972575],[-71.532980538,41.393012452]]],[[[-71.531421507,41.392999443],[-71.531394354,41.393059668],[-71.531376061,41.393108259],[-71.531446877,41.392943634],[-71.531421507,41.392999443]]],[[[-71.532939538,41.393124452],[-71.53293397,41.393134644],[-71.532939658,41.393124943],[-71.53294568,41.393107672],[-71.532939538,41.393124452]]],[[[-71.531047537,41.392923452],[-71.531051537,41.392984452],[-71.531014537,41.393049452],[-71.530998536,41.393108452],[-71.53100277,41.393151388],[-71.530998735,41.393108146],[-71.5310145,41.393049663],[-71.531051916,41.392984174],[-71.531047575,41.392923249],[-71.53104658,41.392918332],[-71.531047537,41.392923452]]],[[[-71.530996826,41.393191493],[-71.53100542,41.393179798],[-71.531005405,41.393179634],[-71.530996826,41.393191493]]],[[[-71.531348239,41.393287584],[-71.531322304,41.393354236],[-71.531256205,41.393394529],[-71.531200621,41.39341147],[-71.531256537,41.393394452],[-71.531322537,41.393354452],[-71.531348537,41.393287452],[-71.531349155,41.393279696],[-71.531348239,41.393287584]]],[[[-71.531124537,41.393444452],[-71.531187487,41.393415475],[-71.531124753,41.393444216],[-71.531119981,41.393373227],[-71.531088912,41.39331144],[-71.531031129,41.393274017],[-71.531020072,41.39326528],[-71.531031537,41.393274452],[-71.531088537,41.393311452],[-71.531119537,41.393373452],[-71.531124537,41.393444452]]],[[[-71.532835537,41.393296452],[-71.532793537,41.393342452],[-71.532706538,41.393455452],[-71.532658537,41.393504452],[-71.532658543,41.393504551],[-71.53270697,41.393455487],[-71.532746883,41.393405023],[-71.532793926,41.39334223],[-71.532835967,41.393296775],[-71.532865284,41.393254146],[-71.532835537,41.393296452]]],[[[-71.532661525,41.393559221],[-71.532661557,41.393559217],[-71.532660996,41.393549532],[-71.532661525,41.393559221]]],[[[-71.532599537,41.393567452],[-71.532571538,41.393605452],[-71.532550208,41.393648111],[-71.532571894,41.393605783],[-71.532599938,41.393567788],[-71.532638405,41.393562437],[-71.532599537,41.393567452]]],[[[-71.532543537,41.393661452],[-71.532540537,41.393711452],[-71.53253167,41.393721428],[-71.532540877,41.393711293],[-71.532543596,41.393661334],[-71.532543537,41.393661452]]],[[[-71.532447537,41.393911453],[-71.532401538,41.393955452],[-71.532405537,41.393976452],[-71.532415079,41.393984989],[-71.532405644,41.393976445],[-71.532401959,41.393955726],[-71.532447858,41.393911573],[-71.532468329,41.393851509],[-71.532480949,41.393803993],[-71.532447537,41.393911453]]],[[[-71.532525537,41.394067453],[-71.532558177,41.394083563],[-71.532525626,41.394067024],[-71.532490368,41.394045123],[-71.532525537,41.394067453]]],[[[-71.532741505,41.394188428],[-71.532741537,41.394188452],[-71.53277726,41.394180514],[-71.532777127,41.394180481],[-71.532741505,41.394188428]]],[[[-71.532832537,41.394194452],[-71.532865729,41.394244241],[-71.532832987,41.394194279],[-71.532794786,41.394184843],[-71.532832537,41.394194452]]],[[[-71.53233989,41.394285945],[-71.532339538,41.394285452],[-71.532278537,41.394244452],[-71.532278348,41.3942444],[-71.53233989,41.394285945]]],[[[-71.532053537,41.394276452],[-71.53205068,41.394286227],[-71.532053515,41.394276695],[-71.532072847,41.394258786],[-71.532053537,41.394276452]]],[[[-71.532914537,41.394290452],[-71.532981538,41.394315452],[-71.533028832,41.394341802],[-71.532981808,41.394315106],[-71.532914203,41.394290156],[-71.532914537,41.394290452]]],[[[-71.532395246,41.39438162],[-71.532404051,41.394387637],[-71.532395538,41.394381452],[-71.532374537,41.394334452],[-71.532374363,41.394334209],[-71.532395246,41.39438162]]],[[[-71.532024537,41.394397453],[-71.531984537,41.394444452],[-71.531992549,41.39445834],[-71.531984927,41.394444811],[-71.532024964,41.39439723],[-71.532030033,41.394366673],[-71.532024537,41.394397453]]],[[[-71.532512127,41.394466528],[-71.532567183,41.394499098],[-71.532512538,41.394466452],[-71.532501986,41.394458787],[-71.532512127,41.394466528]]],[[[-71.533110537,41.394396453],[-71.533153538,41.394448452],[-71.533143566,41.394503297],[-71.533143813,41.394503123],[-71.533154021,41.3944483],[-71.533110928,41.394396145],[-71.533071465,41.394368638],[-71.533110537,41.394396453]]],[[[-71.534453893,41.394558185],[-71.5344206,41.394552263],[-71.534415436,41.394555144],[-71.534420538,41.394552453],[-71.534453893,41.394558185]]],[[[-71.532016537,41.394483452],[-71.532117336,41.394560298],[-71.532060222,41.394514888],[-71.532000979,41.394471555],[-71.532016537,41.394483452]]],[[[-71.534512466,41.394587826],[-71.534484902,41.394563701],[-71.534484804,41.394563684],[-71.534512466,41.394587826]]],[[[-71.532914716,41.394614613],[-71.532924542,41.394619767],[-71.532914537,41.394614452],[-71.532898173,41.394610062],[-71.532914716,41.394614613]]],[[[-71.533024538,41.394595452],[-71.533006657,41.394649096],[-71.533024561,41.394595577],[-71.533048248,41.394575421],[-71.533024538,41.394595452]]],[[[-71.534210658,41.394643166],[-71.534143821,41.39466409],[-71.534118493,41.394674919],[-71.534143538,41.394664452],[-71.534275641,41.394624821],[-71.534210658,41.394643166]]],[[[-71.534569538,41.394678452],[-71.534573611,41.394689986],[-71.534569609,41.394678074],[-71.534552964,41.394641436],[-71.534569538,41.394678452]]],[[[-71.532182538,41.394665452],[-71.532191537,41.394726453],[-71.532239538,41.394772452],[-71.532250919,41.39478055],[-71.532239329,41.394772176],[-71.532191744,41.394726563],[-71.532182572,41.394665044],[-71.532177382,41.394648375],[-71.532182538,41.394665452]]],[[[-71.532592489,41.394801133],[-71.532576923,41.394797467],[-71.532576538,41.394797452],[-71.532592489,41.394801133]]],[[[-71.532328181,41.39480099],[-71.532303531,41.394806859],[-71.532328537,41.394801452],[-71.532383537,41.394768453],[-71.532430537,41.394786453],[-71.532383137,41.394768156],[-71.532328181,41.39480099]]],[[[-71.532726538,41.394849452],[-71.532748639,41.394857595],[-71.532726773,41.394849363],[-71.532691807,41.394833052],[-71.532726538,41.394849452]]],[[[-71.532975538,41.394896452],[-71.533018538,41.394849452],[-71.533053538,41.394862453],[-71.533098117,41.394864862],[-71.533053397,41.394862008],[-71.533018554,41.394849165],[-71.532975632,41.394896085],[-71.53291371,41.394895108],[-71.532975538,41.394896452]]],[[[-71.533197538,41.394893452],[-71.533243745,41.394924257],[-71.533197648,41.394893185],[-71.533150752,41.394875407],[-71.533197538,41.394893452]]],[[[-71.533954262,41.394763198],[-71.53387707,41.394787966],[-71.533800463,41.394827737],[-71.533725769,41.394867485],[-71.533647432,41.394910207],[-71.53356936,41.394936394],[-71.533484114,41.394951239],[-71.533414563,41.394965878],[-71.533569538,41.394936452],[-71.533647538,41.394910452],[-71.533877538,41.394788453],[-71.533954538,41.394763452],[-71.534013884,41.394737376],[-71.533954262,41.394763198]]],[[[-71.533323538,41.394966452],[-71.533340919,41.394966452],[-71.533323607,41.394966425],[-71.533295875,41.394952621],[-71.533323538,41.394966452]]],[[[-71.534779539,41.394999453],[-71.534834555,41.39502736],[-71.534779921,41.394999248],[-71.534732872,41.394986386],[-71.534779539,41.394999453]]],[[[-71.534865538,41.395055452],[-71.534865571,41.395055466],[-71.534864569,41.395054255],[-71.534865538,41.395055452]]],[[[-71.53516632,41.395233259],[-71.535166195,41.395233072],[-71.535113925,41.395186796],[-71.53516632,41.395233259]]],[[[-71.535203538,41.395288452],[-71.535213827,41.395292494],[-71.535203347,41.395288167],[-71.535203538,41.395288452]]],[[[-71.535481856,41.395355401],[-71.535568538,41.395341452],[-71.535752539,41.395350453],[-71.535911379,41.39534264],[-71.535872798,41.395344187],[-71.53585749,41.395344786],[-71.535752528,41.395350193],[-71.535658098,41.395343956],[-71.535568469,41.395341377],[-71.535481856,41.395355401]]],[[[-71.535412652,41.395381013],[-71.535395957,41.395395802],[-71.535412538,41.395381452],[-71.53547177,41.395359133],[-71.535412652,41.395381013]]],[[[-71.535251538,41.395344452],[-71.53524125,41.395419901],[-71.53524325,41.395405468],[-71.5352516,41.395344516],[-71.535250335,41.395341747],[-71.535251538,41.395344452]]],[[[-71.535260538,41.395496452],[-71.535294815,41.395479867],[-71.535260125,41.395496098],[-71.535237919,41.39548746],[-71.535239538,41.395432453],[-71.535237538,41.395487453],[-71.535260538,41.395496452]]],[[[-71.535997539,41.395377452],[-71.536137539,41.395480452],[-71.536185539,41.395529453],[-71.536202539,41.395585453],[-71.536202251,41.395603904],[-71.53620271,41.395585275],[-71.536186035,41.395529453],[-71.536137595,41.395480297],[-71.536066009,41.395427557],[-71.535997341,41.395377013],[-71.535962619,41.395357176],[-71.535997539,41.395377452]]],[[[-71.536168538,41.395710452],[-71.536132932,41.395718122],[-71.536168733,41.395710867],[-71.536182178,41.395685241],[-71.536168538,41.395710452]]],[[[-71.535785949,41.395648939],[-71.535862129,41.395661768],[-71.535872974,41.395665264],[-71.535935461,41.395685485],[-71.5360156,41.39571789],[-71.536067115,41.395721555],[-71.536015538,41.395717452],[-71.535935538,41.395685453],[-71.535862539,41.395661453],[-71.535785539,41.395648452],[-71.535712539,41.395647453],[-71.535641538,41.395667452],[-71.535606742,41.395687546],[-71.53564157,41.395667532],[-71.535712721,41.395647727],[-71.535785949,41.395648939]]],[[[-71.535411538,41.395740453],[-71.535396538,41.395794452],[-71.535403539,41.395859453],[-71.535402902,41.39587283],[-71.535403739,41.395859762],[-71.535396627,41.395794515],[-71.535411754,41.395740788],[-71.535448827,41.395737994],[-71.535411538,41.395740453]]],[[[-71.535417539,41.395964452],[-71.535417929,41.395989808],[-71.535417798,41.395964916],[-71.53541311,41.395947015],[-71.535417539,41.395964452]]],[[[-71.535409538,41.396089453],[-71.535392538,41.396148453],[-71.535394583,41.396156632],[-71.53539278,41.396148527],[-71.535397297,41.396132722],[-71.535409817,41.396088967],[-71.535412636,41.396068803],[-71.535409538,41.396089453]]],[[[-71.535362799,41.396498267],[-71.535362931,41.396498201],[-71.535365954,41.396496013],[-71.535362799,41.396498267]]],[[[-71.535236538,41.396563453],[-71.535227226,41.396571435],[-71.535236131,41.396563878],[-71.535245241,41.396558964],[-71.535236538,41.396563453]]],[[[-71.535142538,41.396654453],[-71.53514249,41.396654585],[-71.535149686,41.39664667],[-71.535142538,41.396654453]]],[[[-71.539755502,41.396661434],[-71.539669928,41.396687102],[-71.539669612,41.396687431],[-71.53975554,41.396661453],[-71.539759209,41.396660781],[-71.539755502,41.396661434]]],[[[-71.535099538,41.396772453],[-71.535122314,41.396712228],[-71.535139162,41.396663718],[-71.535099538,41.396772453]]],[[[-71.539618236,41.396740933],[-71.53959154,41.396793247],[-71.539591049,41.396795221],[-71.53959154,41.396793453],[-71.53961836,41.396740804],[-71.539618236,41.396740933]]],[[[-71.53999554,41.396717453],[-71.540025438,41.396828891],[-71.540012402,41.396773799],[-71.539995692,41.396717246],[-71.539988318,41.396699397],[-71.53999554,41.396717453]]],[[[-71.535099538,41.396772453],[-71.535067195,41.396841531],[-71.535074782,41.396827738],[-71.535099536,41.396772498],[-71.535099538,41.396772453]]],[[[-71.535018538,41.396945453],[-71.535022288,41.396956702],[-71.535018595,41.396945377],[-71.53501877,41.396944958],[-71.535018538,41.396945453]]],[[[-71.539498065,41.396963252],[-71.539478238,41.396979819],[-71.539550803,41.396923875],[-71.539498065,41.396963252]]],[[[-71.540029919,41.396981182],[-71.540030496,41.3969101],[-71.540028692,41.396855944],[-71.540029919,41.396981182]]],[[[-71.539118863,41.397034452],[-71.53915554,41.397034452],[-71.539187659,41.397054389],[-71.539155533,41.39703397],[-71.539118863,41.397034452]]],[[[-71.539377208,41.397057245],[-71.539355101,41.397076224],[-71.53937754,41.397057452],[-71.539387327,41.397049907],[-71.539377208,41.397057245]]],[[[-71.53924354,41.397125453],[-71.539269579,41.397141944],[-71.539243699,41.397125101],[-71.539225512,41.397092401],[-71.53924354,41.397125453]]],[[[-71.541170133,41.397089985],[-71.54117437,41.397162506],[-71.541173541,41.397185773],[-71.541174541,41.397162453],[-71.541170541,41.397090453],[-71.541159458,41.397067942],[-71.541170133,41.397089985]]],[[[-71.535093539,41.397058453],[-71.535147539,41.397100453],[-71.535205539,41.397155453],[-71.535237738,41.397201788],[-71.535205683,41.397155179],[-71.53514758,41.397100216],[-71.535093393,41.397058317],[-71.535093539,41.397058453]]],[[[-71.535271538,41.397265453],[-71.535298217,41.397297467],[-71.535271742,41.397265211],[-71.535251644,41.397224867],[-71.535271538,41.397265453]]],[[[-71.535887644,41.397322036],[-71.53588763,41.397322401],[-71.535901539,41.397314453],[-71.535971805,41.397314453],[-71.535902036,41.397314004],[-71.535887644,41.397322036]]],[[[-71.53901112,41.397049662],[-71.539002567,41.397069997],[-71.538951715,41.397107156],[-71.538907742,41.397168966],[-71.538840589,41.397222117],[-71.538785908,41.397257104],[-71.538728313,41.397294997],[-71.538674683,41.397334332],[-71.538840539,41.397222453],[-71.53890754,41.397169452],[-71.53895154,41.397107453],[-71.53900254,41.397070453],[-71.539011482,41.397049587],[-71.53901112,41.397049662]]],[[[-71.535343539,41.397369453],[-71.535346131,41.397376521],[-71.5353436,41.397369455],[-71.535334135,41.397352996],[-71.535343539,41.397369453]]],[[[-71.541130317,41.397383907],[-71.541113067,41.397449093],[-71.541133997,41.397371549],[-71.541130317,41.397383907]]],[[[-71.535885099,41.397388064],[-71.535873941,41.397423471],[-71.535863329,41.397457025],[-71.535860648,41.39746335],[-71.535863539,41.397457453],[-71.535885539,41.397388453],[-71.535887211,41.39733326],[-71.535885099,41.397388064]]],[[[-71.539883023,41.397477773],[-71.539915817,41.397420378],[-71.539941543,41.397369529],[-71.53996047,41.397331814],[-71.539883023,41.397477773]]],[[[-71.541110531,41.397458677],[-71.541114677,41.397496863],[-71.541110555,41.397458586],[-71.541110531,41.397458677]]],[[[-71.5385875,41.397441964],[-71.53855406,41.397493593],[-71.538535547,41.397528516],[-71.53855454,41.397493453],[-71.538622474,41.397390115],[-71.5385875,41.397441964]]],[[[-71.535383539,41.397523452],[-71.535400005,41.397553547],[-71.535383958,41.397523108],[-71.535372652,41.397492246],[-71.535383539,41.397523452]]],[[[-71.541117618,41.397523947],[-71.54115157,41.397563752],[-71.541186192,41.397566241],[-71.541151541,41.397563452],[-71.541117568,41.397523484],[-71.541117618,41.397523947]]],[[[-71.535688961,41.397627306],[-71.535757538,41.397603453],[-71.535799312,41.397570631],[-71.535757195,41.397603154],[-71.535688961,41.397627306]]],[[[-71.535688961,41.397627306],[-71.535683057,41.397628765],[-71.535688539,41.397627453],[-71.535688961,41.397627306]]],[[[-71.535536539,41.397647453],[-71.535545151,41.397647134],[-71.535536863,41.397647385],[-71.535463532,41.397628013],[-71.535441476,41.397605958],[-71.535463539,41.397628453],[-71.535536539,41.397647453]]],[[[-71.535994538,41.397367452],[-71.536006539,41.397483452],[-71.536008539,41.397595453],[-71.536016539,41.397656452],[-71.536018592,41.39766123],[-71.53601664,41.397656041],[-71.536008588,41.397595139],[-71.536008284,41.397539999],[-71.536007007,41.397483418],[-71.536001872,41.397423248],[-71.535994825,41.3973674],[-71.535989207,41.397347268],[-71.535994538,41.397367452]]],[[[-71.53966454,41.397641452],[-71.53959154,41.397666453],[-71.539564232,41.39768319],[-71.539591584,41.397666576],[-71.539664646,41.39764169],[-71.539688887,41.397630801],[-71.53966454,41.397641452]]],[[[-71.54048454,41.397694453],[-71.540493218,41.39771042],[-71.540484721,41.397694258],[-71.540421047,41.397676282],[-71.540349798,41.397685958],[-71.540311016,41.397682231],[-71.54034954,41.397686453],[-71.54042154,41.397676452],[-71.54048454,41.397694453]]],[[[-71.538493249,41.397640304],[-71.538480071,41.397698377],[-71.53846404,41.397760063],[-71.53846009,41.397773029],[-71.53846454,41.397760453],[-71.538512979,41.397575243],[-71.538493249,41.397640304]]],[[[-71.539739398,41.397747349],[-71.539695837,41.397804535],[-71.53973954,41.397747453],[-71.53975642,41.397736018],[-71.539739398,41.397747349]]],[[[-71.539686169,41.39787153],[-71.539686477,41.397929524],[-71.53968654,41.397929452],[-71.53969045,41.397814125],[-71.539686169,41.39787153]]],[[[-71.536172823,41.397935927],[-71.536146036,41.397887746],[-71.536115828,41.397840935],[-71.536172823,41.397935927]]],[[[-71.536224539,41.397994453],[-71.536267741,41.398016751],[-71.53622467,41.397994114],[-71.536208205,41.397977739],[-71.536224539,41.397994453]]],[[[-71.54045154,41.397871452],[-71.54038954,41.397920453],[-71.54038554,41.397958453],[-71.540410493,41.398026325],[-71.540410451,41.398025973],[-71.54038599,41.39795856],[-71.540389641,41.397920823],[-71.540451997,41.397871309],[-71.540482425,41.397817811],[-71.54045154,41.397871452]]],[[[-71.538317023,41.398000617],[-71.53827707,41.398041078],[-71.538354646,41.397966912],[-71.538317023,41.398000617]]],[[[-71.536358539,41.398052453],[-71.536372508,41.398056444],[-71.536358861,41.39805246],[-71.53633009,41.39804218],[-71.536358539,41.398052453]]],[[[-71.540419511,41.398102209],[-71.54041955,41.398102083],[-71.540413867,41.398054547],[-71.540419511,41.398102209]]],[[[-71.536517539,41.398104453],[-71.536533228,41.398111896],[-71.536517135,41.398104188],[-71.536499418,41.398097824],[-71.536517539,41.398104453]]],[[[-71.538246347,41.398108223],[-71.538251535,41.398125817],[-71.53824654,41.398108453],[-71.538259838,41.398076931],[-71.538246347,41.398108223]]],[[[-71.539479573,41.39814712],[-71.539486019,41.398086901],[-71.539539825,41.398061336],[-71.539528211,41.398046584],[-71.53953954,41.398061453],[-71.53948554,41.398086452],[-71.539479573,41.39814712]]],[[[-71.541535407,41.398157306],[-71.541538685,41.398167316],[-71.54153554,41.398157453],[-71.541538854,41.398125262],[-71.541535407,41.398157306]]],[[[-71.539674476,41.398195815],[-71.53967454,41.398195453],[-71.53963954,41.398139453],[-71.539674476,41.398195815]]],[[[-71.54035954,41.398239453],[-71.540359617,41.398239372],[-71.540397786,41.39817324],[-71.540411517,41.398128345],[-71.540397541,41.398173453],[-71.54035954,41.398239453]]],[[[-71.539674476,41.398195815],[-71.539663259,41.398257522],[-71.53966354,41.398257453],[-71.539674476,41.398195815]]],[[[-71.539479573,41.39814712],[-71.53947954,41.398147452],[-71.53951054,41.398197453],[-71.539619361,41.398265466],[-71.539568691,41.398231688],[-71.539510718,41.398197059],[-71.539479573,41.39814712]]],[[[-71.541551211,41.398304378],[-71.54155154,41.398303452],[-71.541551551,41.398303318],[-71.541551211,41.398304378]]],[[[-71.538293287,41.398235001],[-71.538305135,41.398290824],[-71.538302734,41.398342825],[-71.53830554,41.398290453],[-71.538293539,41.398235453],[-71.538291342,41.39823089],[-71.538293287,41.398235001]]],[[[-71.543900541,41.397297453],[-71.543907542,41.397465452],[-71.543900541,41.397633453],[-71.543869541,41.397946453],[-71.543877541,41.398095453],[-71.543900541,41.398216453],[-71.543945542,41.398350453],[-71.544060542,41.398297453],[-71.544357541,41.398194453],[-71.545090542,41.397950452],[-71.545540542,41.397816452],[-71.545906542,41.397713453],[-71.546440542,41.397591453],[-71.546753543,41.397530452],[-71.546837542,41.397519453],[-71.547081543,41.397477453],[-71.547440542,41.397423452],[-71.547951542,41.397362453],[-71.548317542,41.397324453],[-71.548767543,41.397297452],[-71.549202543,41.397293452],[-71.549637543,41.397282453],[-71.549706543,41.397282453],[-71.550148544,41.397282453],[-71.551414544,41.397271452],[-71.551783544,41.397274452],[-71.552125544,41.397269452],[-71.552246544,41.397267452],[-71.552772544,41.397238452],[-71.553070545,41.397221452],[-71.553387544,41.397194452],[-71.553474544,41.397187453],[-71.554293545,41.397098452],[-71.554420544,41.397084452],[-71.555046545,41.397011452],[-71.555336545,41.396965452],[-71.555763546,41.396885452],[-71.555923545,41.396851452],[-71.556206545,41.396798452],[-71.556633545,41.396702452],[-71.556938545,41.396645452],[-71.557365545,41.396580452],[-71.557816546,41.396523452],[-71.558258546,41.396473452],[-71.558922547,41.396424452],[-71.559341546,41.396401452],[-71.559372547,41.396397452],[-71.559792546,41.396370451],[-71.560573547,41.396341452],[-71.560913547,41.396328452],[-71.561409547,41.396317452],[-71.561436547,41.396315452],[-71.562119547,41.396263452],[-71.562279547,41.396252451],[-71.562782548,41.396199451],[-71.563324548,41.396134452],[-71.564575548,41.395955452],[-71.565186548,41.395871452],[-71.565857548,41.395787451],[-71.566513548,41.395699452],[-71.56832155,41.395459451],[-71.568900549,41.395382451],[-71.57039655,41.395184451],[-71.57103755,41.395104451],[-71.57106855,41.395096451],[-71.57145755,41.395046451],[-71.572769551,41.394883451],[-71.573463551,41.394814451],[-71.573807551,41.394791451],[-71.574471551,41.394772451],[-71.574570551,41.394768451],[-71.575008552,41.394777451],[-71.575530552,41.394787451],[-71.576141552,41.394799451],[-71.576279552,41.394806451],[-71.576622552,41.394825451],[-71.576937552,41.394851451],[-71.577835552,41.394925451],[-71.579109552,41.395008451],[-71.579727553,41.395054451],[-71.580666554,41.395115451],[-71.581245553,41.395150451],[-71.581841553,41.39519945],[-71.582878554,41.395272451],[-71.583840554,41.395335451],[-71.585151555,41.395427451],[-71.585770555,41.395470451],[-71.586051555,41.395488451],[-71.586662555,41.395527451],[-71.587402555,41.395562451],[-71.587738556,41.395577451],[-71.588211556,41.395581451],[-71.588417556,41.395577451],[-71.588562556,41.39557345],[-71.589035556,41.39555045],[-71.589714556,41.395504451],[-71.590302557,41.39545545],[-71.591198557,41.39535545],[-71.592087557,41.395256451],[-71.593224558,41.39512745],[-71.593864558,41.395058451],[-71.594365558,41.395023451],[-71.594681558,41.395001451],[-71.595085558,41.394982451],[-71.595604558,41.39496645],[-71.596146558,41.39496645],[-71.596662558,41.394977451],[-71.597004559,41.39498845],[-71.597217559,41.395001451],[-71.597402558,41.39501345],[-71.597604559,41.39502445],[-71.597778559,41.395039451],[-71.598518559,41.395119451],[-71.59996856,41.39528345],[-71.60083856,41.39536345],[-71.60102856,41.39537745],[-71.60117556,41.395389451],[-71.60154756,41.39541745],[-71.60235656,41.39545945],[-71.60298256,41.39546245],[-71.60362256,41.395447451],[-71.604415561,41.39540345],[-71.604904561,41.39536345],[-71.605438561,41.39531045],[-71.605919562,41.395256451],[-71.606400562,41.39518045],[-71.607368562,41.39500545],[-71.608017562,41.39487945],[-71.608589562,41.39475345],[-71.608803563,41.39471145],[-71.609810563,41.39452445],[-71.610603563,41.39436845],[-71.611290563,41.39424245],[-71.611663563,41.39416445],[-71.611862563,41.39412345],[-71.612297564,41.39402045],[-71.613388564,41.39371545],[-71.613892564,41.39355545],[-71.614067564,41.393490449],[-71.614218564,41.39343545],[-71.614807564,41.391426449],[-71.615588564,41.389374449],[-71.615601564,41.389321449],[-71.615936564,41.388325449],[-71.616089564,41.387890448],[-71.616287564,41.387364448],[-71.616470565,41.386814448],[-71.617322565,41.384452448],[-71.618317565,41.381630447],[-71.619350565,41.378755447],[-71.620227565,41.376637446],[-71.620421565,41.376125446],[-71.620805565,41.375109446],[-71.620811565,41.375059446],[-71.621041565,41.374393445],[-71.621800565,41.371992445],[-71.622134565,41.370834445],[-71.622271437,41.370160078],[-71.622262292,41.370148567],[-71.622204519,41.370182133],[-71.622157568,41.370223602],[-71.622114531,41.370279726],[-71.622047183,41.370323503],[-71.621985177,41.370367159],[-71.621935133,41.370426744],[-71.621920447,41.370479819],[-71.621911369,41.370544827],[-71.621904247,41.370616511],[-71.621893246,41.370676214],[-71.621885047,41.370739894],[-71.621885451,41.370794097],[-71.621890481,41.370853578],[-71.621896359,41.370912349],[-71.621905792,41.370972442],[-71.621918709,41.371028507],[-71.621923609,41.371083986],[-71.621911726,41.371142341],[-71.621890229,41.371206858],[-71.621863424,41.371273463],[-71.62183554,41.371332064],[-71.621797683,41.371382099],[-71.621746397,41.371427642],[-71.621734814,41.371500703],[-71.621736456,41.371566957],[-71.621744095,41.371625726],[-71.621747431,41.371689257],[-71.621750771,41.371754091],[-71.621755768,41.371812886],[-71.621767969,41.371875652],[-71.621774729,41.371935085],[-71.621771187,41.371997318],[-71.621703707,41.372045167],[-71.621635245,41.372078859],[-71.621555533,41.372088023],[-71.621475593,41.372088428],[-71.621427983,41.372102498],[-71.621437412,41.372160533],[-71.621488945,41.372198627],[-71.621502808,41.372257321],[-71.621490177,41.372322446],[-71.621475003,41.372391554],[-71.621460611,41.372455972],[-71.621436314,41.372517199],[-71.621410353,41.37258115],[-71.621387065,41.372646355],[-71.621363745,41.372710234],[-71.621338598,41.372771439],[-71.621312602,41.3728334],[-71.621288304,41.372893941],[-71.621259473,41.372949867],[-71.621215293,41.37299666],[-71.621168471,41.37304348],[-71.621120802,41.373091649],[-71.621058859,41.373138004],[-71.621030943,41.373195896],[-71.621020914,41.373256262],[-71.620993844,41.373312209],[-71.620968764,41.373377439],[-71.620940097,41.373440065],[-71.620907583,41.373490689],[-71.620848509,41.373545686],[-71.620804327,41.373591793],[-71.620749551,41.373639399],[-71.620691324,41.373692405],[-71.620637528,41.373744675],[-71.620582656,41.373789581],[-71.620521559,41.373833945],[-71.620464113,41.373882902],[-71.62039604,41.373931345],[-71.620320669,41.373973871],[-71.620245035,41.374005671],[-71.620171159,41.374036121],[-71.620093596,41.374059301],[-71.620013365,41.374084496],[-71.619934046,41.374110331],[-71.619858183,41.374132823],[-71.619782218,41.374149918],[-71.619713454,41.374170276],[-71.619641141,41.374192009],[-71.619563482,41.37421249],[-71.619489312,41.374231573],[-71.619412468,41.374249354],[-71.61933018,41.374262544],[-71.6192504,41.374269008],[-71.619159602,41.374260891],[-71.619071381,41.374250051],[-71.618984885,41.374236578],[-71.618908615,41.374203495],[-71.618847472,41.374173575],[-71.618785514,41.374146308],[-71.618711008,41.374113863],[-71.618626791,41.374084951],[-71.618536579,41.374064757],[-71.618466052,41.374050353],[-71.618396372,41.374033912],[-71.618305344,41.374015801],[-71.618231298,41.374002749],[-71.618138875,41.374002044],[-71.618066068,41.374003011],[-71.617990917,41.374016764],[-71.617961623,41.374053295],[-71.617964045,41.374116873],[-71.617965685,41.374184408],[-71.617968987,41.37424723],[-71.617949404,41.374281624],[-71.617870374,41.374282711],[-71.61780017,41.37424555],[-71.617726517,41.374248576],[-71.617659546,41.374269571],[-71.617693642,41.374319942],[-71.617693522,41.374388211],[-71.617677402,41.374456679],[-71.617708433,41.374491044],[-71.617747771,41.374501204],[-71.617742986,41.374558797],[-71.617717641,41.374613346],[-71.617682813,41.374679408],[-71.617671804,41.374737099],[-71.617674195,41.374799968],[-71.617703404,41.374867817],[-71.617732289,41.374923637],[-71.61776743,41.374980686],[-71.61781127,41.375029607],[-71.6178615,41.375085794],[-71.617892046,41.375136878],[-71.617879148,41.375190568],[-71.617835095,41.375242712],[-71.617867563,41.375299123],[-71.617850976,41.375310713],[-71.617770118,41.375309812],[-71.617720122,41.37529916],[-71.617679608,41.375276285],[-71.61760491,41.37527332],[-71.617526266,41.37525364],[-71.617497383,41.375198529],[-71.617444514,41.375143739],[-71.617381184,41.375096416],[-71.617368007,41.375029008],[-71.617364904,41.374974854],[-71.617332403,41.374917093],[-71.61729717,41.374892841],[-71.617237696,41.374930477],[-71.617214207,41.374987655],[-71.61719613,41.375048783],[-71.617161068,41.375103456],[-71.617111569,41.375149659],[-71.617043363,41.375194074],[-71.616979231,41.375224397],[-71.61693846,41.375227641],[-71.616907439,41.375266895],[-71.616835736,41.375240438],[-71.61679626,41.375186778],[-71.616733062,41.375145515],[-71.616655688,41.375105754],[-71.61658721,41.375065891],[-71.616528114,41.375009164],[-71.616471858,41.374961101],[-71.616408661,41.374919792],[-71.61635185,41.374884469],[-71.616292041,41.37483577],[-71.616236013,41.374796398],[-71.61618764,41.374742198],[-71.616156217,41.374692441],[-71.616087582,41.374683362],[-71.616014223,41.374698416],[-71.615978607,41.374731705],[-71.615958636,41.374787507],[-71.615901737,41.374821778],[-71.615824726,41.37483217],[-71.615758533,41.374813026],[-71.615686372,41.374767837],[-71.615624022,41.374724583],[-71.615588753,41.374662823],[-71.615558176,41.374609703],[-71.615547707,41.374544944],[-71.615554054,41.374476601],[-71.615562391,41.374418295],[-71.615570725,41.374357955],[-71.615559841,41.374350075],[-71.615482182,41.374371217],[-71.615449884,41.374358305],[-71.615436026,41.374299587],[-71.615453391,41.374246488],[-71.615511785,41.374199544],[-71.615578658,41.374173862],[-71.615635599,41.374215224],[-71.615710037,41.374243645],[-71.615781345,41.374254025],[-71.615803277,41.374242339],[-71.615769213,41.37419263],[-71.615714816,41.374147882],[-71.615636792,41.374117497],[-71.615560856,41.374099803],[-71.615540125,41.374086078],[-71.615561626,41.37402019],[-71.615590366,41.37396159],[-71.615626306,41.373905567],[-71.615650511,41.373840316],[-71.615656078,41.373778011],[-71.615686218,41.373738163],[-71.615763779,41.373713637],[-71.615802198,41.373685696],[-71.615813013,41.373620619],[-71.615807138,41.373560498],[-71.615804818,41.373502295],[-71.61578842,41.373449664],[-71.615756735,41.3733879],[-71.615733751,41.373319311],[-71.615716308,41.373259317],[-71.615732726,41.373203565],[-71.615786623,41.373155277],[-71.615838832,41.373147883],[-71.615911215,41.373165603],[-71.615974986,41.373120576],[-71.616010763,41.373058515],[-71.616016426,41.372998909],[-71.616004034,41.37292816],[-71.615991122,41.372872117],[-71.615969411,41.37281956],[-71.615942027,41.372752394],[-71.615903337,41.372695371],[-71.615858585,41.372644484],[-71.615799919,41.372605777],[-71.615722776,41.372574728],[-71.615649416,41.37255367],[-71.615558326,41.372532858],[-71.615482325,41.372512488],[-71.615408314,41.372500784],[-71.615334304,41.372489766],[-71.615241618,41.372476342],[-71.615146424,41.372470285],[-71.615070036,41.372470659],[-71.614991886,41.372471057],[-71.614919051,41.372472091],[-71.614828712,41.372481352],[-71.614759821,41.372497704],[-71.614676102,41.372524935],[-71.614596067,41.372558177],[-71.614527796,41.372599252],[-71.614481816,41.372644055],[-71.614488634,41.372705501],[-71.614536254,41.372765077],[-71.614589606,41.372803789],[-71.614649182,41.37284245],[-71.614713942,41.372876348],[-71.614772543,41.372912356],[-71.614832218,41.372955682],[-71.61489033,41.373007083],[-71.614940523,41.373061899],[-71.614988046,41.373117449],[-71.615036479,41.373172999],[-71.615081362,41.373229261],[-71.615124417,41.373282186],[-71.615165682,41.373335799],[-71.615206945,41.373388108],[-71.61525502,41.373429616],[-71.615310982,41.373466999],[-71.615357362,41.373511161],[-71.615413715,41.373563889],[-71.615461921,41.373610726],[-71.615489206,41.373673249],[-71.61550062,41.373740683],[-71.615504017,41.373807552],[-71.615495911,41.373876561],[-71.615474178,41.373931723],[-71.615442637,41.373985706],[-71.615397735,41.374039177],[-71.615343902,41.37409014],[-71.615291894,41.374143023],[-71.615242624,41.374199243],[-71.615193386,41.374256102],[-71.615138804,41.374313058],[-71.615076009,41.374361424],[-71.615010509,41.374407825],[-71.61494403,41.374450247],[-71.61487556,41.374483318],[-71.614809145,41.374527707],[-71.61474361,41.374572095],[-71.61467423,41.374605189],[-71.61460827,41.37463286],[-71.614524352,41.374652063],[-71.614440335,41.374666601],[-71.614353123,41.374660444],[-71.614279565,41.374631357],[-71.61421298,41.374596157],[-71.61413789,41.374576426],[-71.614049179,41.374580996],[-71.61396816,41.374608864],[-71.6139009,41.374656638],[-71.613854985,41.374704781],[-71.613827191,41.374767382],[-71.613824981,41.374822959],[-71.613834633,41.374891058],[-71.613879515,41.37494668],[-71.613932053,41.374988092],[-71.613991436,41.375019412],[-71.614070112,41.375040375],[-71.614153544,41.37503789],[-71.614234592,41.375009336],[-71.614299183,41.374962959],[-71.614365861,41.374929251],[-71.614439417,41.374922225],[-71.614513888,41.37495266],[-71.61456822,41.374994688],[-71.614626104,41.375036712],[-71.614680438,41.375080134],[-71.614725225,41.375133058],[-71.614764663,41.375183356],[-71.614787289,41.375238566],[-71.614807305,41.375294487],[-71.614824616,41.375348467],[-71.61482436,41.375410035],[-71.614825341,41.375450148],[-71.614826782,41.375509702],[-71.614826363,41.375565209],[-71.614823438,41.375628151],[-71.614810635,41.375685866],[-71.614782809,41.375747141],[-71.614760979,41.37579965],[-71.614758119,41.375865291],[-71.614764936,41.375926029],[-71.614792969,41.375982536],[-71.614807088,41.376051911],[-71.61481029,41.37611144],[-71.614818934,41.376174874],[-71.614830151,41.376234257],[-71.614840488,41.376293665],[-71.614848968,41.376350421],[-71.614864617,41.376409113],[-71.614895488,41.376473577],[-71.614938481,41.37652449],[-71.614981343,41.376570074],[-71.615035875,41.3766215],[-71.615096139,41.376652132],[-71.615156792,41.376661997],[-71.615180656,41.376729922],[-71.615186596,41.376792078],[-71.615179138,41.376850359],[-71.61513495,41.376896487],[-71.615066807,41.376944286],[-71.615025287,41.37698833],[-71.614979273,41.377032448],[-71.614934238,41.377080566],[-71.614895427,41.37712861],[-71.614853193,41.377181392],[-71.614804768,41.377236238],[-71.614758105,41.377291082],[-71.614713163,41.37734055],[-71.614670834,41.377391341],[-71.614633847,41.377440664],[-71.614577371,41.377492979],[-71.614506746,41.377510683],[-71.614431555,41.377487636],[-71.614352159,41.377472689],[-71.614263315,41.377473211],[-71.614188876,41.377480261],[-71.614119295,41.377504618],[-71.614059886,41.377546942],[-71.614006795,41.377589831],[-71.613959867,41.377633285],[-71.613913886,41.377679415],[-71.613861677,41.377723606],[-71.613812924,41.377765119],[-71.61375485,41.377824136],[-71.61371079,41.377874906],[-71.61366145,41.377928449],[-71.613612111,41.377981992],[-71.613552764,41.378024956],[-71.613484163,41.378054663],[-71.613409886,41.37806839],[-71.613337107,41.378070109],[-71.613245589,41.378069352],[-71.613161666,41.378088555],[-71.613090684,41.378129014],[-71.613027851,41.378176051],[-71.612956964,41.378218523],[-71.612873302,41.378248428],[-71.612788535,41.378270993],[-71.612703829,41.378294244],[-71.612615991,41.378297463],[-71.612527082,41.378295377],[-71.612435367,41.378286547],[-71.612359786,41.378283602],[-71.61228515,41.378282623],[-71.61220934,41.378270278],[-71.612162698,41.378215389],[-71.612139912,41.378154804],[-71.612068338,41.378133696],[-71.611993277,41.378115336],[-71.611917434,41.378100978],[-71.61184179,41.378096706],[-71.611763308,41.378084387],[-71.611701707,41.378070518],[-71.611652393,41.378051126],[-71.611566776,41.3780744],[-71.611501203,41.37811746],[-71.6114355,41.378155809],[-71.611354934,41.378167619],[-71.61126338,41.378163546],[-71.611176848,41.378149312],[-71.611096542,41.378135027],[-71.611022882,41.378101273],[-71.610970146,41.378051123],[-71.610913108,41.37800713],[-71.610871062,41.377958159],[-71.610890061,41.37789902],[-71.61092066,41.37784106],[-71.610939758,41.37778661],[-71.610909933,41.377728776],[-71.610885552,41.37767558],[-71.610892199,41.377620662],[-71.610850056,41.377567689],[-71.610851258,41.377506784],[-71.610874721,41.377448258],[-71.610842388,41.377397174],[-71.610810967,41.377346775],[-71.610771529,41.377295789],[-71.610717916,41.377247012],[-71.610652471,41.377222466],[-71.61058015,41.377207418],[-71.610529404,41.377202756],[-71.610481658,41.377247582],[-71.610432056,41.377290443],[-71.610378183,41.377339987],[-71.610321768,41.377394289],[-71.610263628,41.377451979],[-71.610210767,41.377506896],[-71.610158718,41.377557786],[-71.610110353,41.377614003],[-71.61006903,41.377669434],[-71.61002663,41.377716199],[-71.609979145,41.377772369],[-71.609944307,41.377838406],[-71.60992071,41.37788959],[-71.609881928,41.377939622],[-71.60983151,41.377985136],[-71.609791748,41.378030526],[-71.60972712,41.378076238],[-71.609638894,41.378101571],[-71.609566769,41.378131302],[-71.609502791,41.378166973],[-71.609444973,41.378199892],[-71.609379172,41.378234924],[-71.609320443,41.378267844],[-71.609251837,41.378296246],[-71.609171363,41.37827256],[-71.609102497,41.378254123],[-71.609028677,41.378251106],[-71.60895655,41.378243421],[-71.608884163,41.37822565],[-71.608808159,41.378205939],[-71.608757637,41.378171864],[-71.608764941,41.378144985],[-71.608839543,41.378143954],[-71.608908801,41.378106198],[-71.608929495,41.378043056],[-71.608966322,41.377985662],[-71.608996795,41.377923677],[-71.609041805,41.37787556],[-71.609088378,41.377818043],[-71.609129019,41.377772012],[-71.609165066,41.377720679],[-71.609210106,41.377672563],[-71.609229268,41.377619439],[-71.609251788,41.377559566],[-71.609263519,41.377493139],[-71.609264592,41.377426882],[-71.609266611,41.377363323],[-71.609280268,41.377304899],[-71.609311914,41.377254303],[-71.609308653,41.377192761],[-71.609260287,41.377140594],[-71.609207585,41.377091106],[-71.609167041,41.377031476],[-71.609128223,41.376969099],[-71.609078323,41.376924961],[-71.609029337,41.376882788],[-71.608971291,41.37683342],[-71.608918754,41.376792029],[-71.608870617,41.376748483],[-71.608818112,41.376708395],[-71.608769127,41.376666246],[-71.608722781,41.376622721],[-71.608676404,41.376579197],[-71.608633546,41.376532947],[-71.60858958,41.376478694],[-71.608581073,41.376420589],[-71.608524884,41.376373849],[-71.608476713,41.376327696],[-71.608428477,41.376279507],[-71.608375712,41.376228716],[-71.608330151,41.376181829],[-71.608284621,41.376135605],[-71.608242546,41.376086015],[-71.608207641,41.37603834],[-71.608172703,41.375989293],[-71.608122383,41.3759291],[-71.608088293,41.375878702],[-71.608050682,41.375829063],[-71.608000395,41.375770219],[-71.607949617,41.375726721],[-71.607888902,41.375678041],[-71.607816549,41.375660316],[-71.607737549,41.375662722],[-71.607675332,41.375697727],[-71.607625827,41.375744566],[-71.607616604,41.375804221],[-71.607603079,41.375869963],[-71.607616179,41.375933348],[-71.607678429,41.375973999],[-71.607745043,41.376009203],[-71.607809966,41.376049806],[-71.607815833,41.376109263],[-71.607781772,41.376168598],[-71.60772083,41.376221624],[-71.607650757,41.376261392],[-71.607577199,41.376268436],[-71.607511593,41.376310831],[-71.607460588,41.376369061],[-71.607439762,41.376426234],[-71.607419,41.376485396],[-71.607393906,41.376550623],[-71.607370342,41.376605146],[-71.607340974,41.376674471],[-71.607307829,41.376737144],[-71.607262982,41.376792669],[-71.607197475,41.376839706],[-71.607122807,41.376874196],[-71.607048629,41.376892607],[-71.607033702,41.376825885],[-71.607051073,41.376772123],[-71.607099539,41.376719933],[-71.607142593,41.376663815],[-71.607150089,41.376606151],[-71.607128905,41.376538223],[-71.60707878,41.376485393],[-71.607010535,41.376455519],[-71.606987038,41.37643912],[-71.607054729,41.376409417],[-71.607123496,41.376387077],[-71.607189494,41.376362087],[-71.60723659,41.37632664],[-71.607188581,41.376286478],[-71.607110559,41.37625611],[-71.607032732,41.376233769],[-71.606953243,41.376216119],[-71.606873786,41.376199794],[-71.606794395,41.376186169],[-71.606714156,41.376173893],[-71.60662427,41.376167092],[-71.60653347,41.376158326],[-71.606449712,41.376148066],[-71.606364195,41.376139202],[-71.606280467,41.376128325],[-71.606203716,41.37611401],[-71.606133125,41.376096922],[-71.606061555,41.376075788],[-71.606008955,41.37603101],[-71.605936996,41.375994506],[-71.605872336,41.375965292],[-71.605807544,41.375929376],[-71.605742754,41.375894832],[-71.605687612,41.375855432],[-71.60566402,41.375798872],[-71.605624129,41.375765289],[-71.605667867,41.375737255],[-71.605752801,41.375724049],[-71.605802211,41.375673895],[-71.605827274,41.375607296],[-71.605826561,41.37554175],[-71.605822553,41.375485606],[-71.605743325,41.375478635],[-71.605691538,41.375467293],[-71.605690172,41.375411102],[-71.605688544,41.375342881],[-71.605646309,41.375286612],[-71.605642955,41.375221755],[-71.605654917,41.375164705],[-71.605710322,41.375141875],[-71.605785704,41.37513682],[-71.605846063,41.375097862],[-71.605897361,41.375051662],[-71.605941459,41.375002862],[-71.605981188,41.374955483],[-71.606028966,41.374910682],[-71.6060714,41.374865267],[-71.606106535,41.37481261],[-71.606146753,41.374749176],[-71.606191502,41.374690312],[-71.606248437,41.374656091],[-71.606319451,41.374616963],[-71.60639366,41.374600564],[-71.606469757,41.374587481],[-71.60655609,41.374594994],[-71.60664099,41.374617946],[-71.606695282,41.374657987],[-71.606715226,41.374711257],[-71.606791717,41.374678756],[-71.60684044,41.374636606],[-71.606871205,41.374586011],[-71.606886783,41.37453161],[-71.606889784,41.374472648],[-71.60692844,41.374419964],[-71.606969992,41.37437455],[-71.607011282,41.37431777],[-71.607033707,41.374253918],[-71.60708207,41.374196354],[-71.607123233,41.374135594],[-71.607163644,41.374079478],[-71.607196788,41.374017491],[-71.60724597,41.373959263],[-71.607292638,41.373904422],[-71.607356546,41.373865437],[-71.607435057,41.373843591],[-71.607506687,41.373829253],[-71.607596215,41.373823337],[-71.607670291,41.373837699],[-71.607720512,41.37389389],[-71.607755545,41.373946277],[-71.607801431,41.374007184],[-71.607861787,41.374041799],[-71.607956917,41.374045186],[-71.608050876,41.374037893],[-71.608139358,41.374023974],[-71.608213174,41.373990833],[-71.608266425,41.373951949],[-71.608318535,41.373902386],[-71.60838743,41.37388606],[-71.608445735,41.373837085],[-71.608479988,41.373785114],[-71.60850345,41.373725903],[-71.608524143,41.373662715],[-71.608537831,41.373604977],[-71.608513227,41.373543113],[-71.608459843,41.37350234],[-71.608415065,41.373450786],[-71.608413532,41.373386567],[-71.608425525,41.373332216],[-71.608422102,41.373263356],[-71.608388794,41.373208246],[-71.608349459,41.373161285],[-71.608293178,41.373111915],[-71.608270917,41.373072049],[-71.608289886,41.373012911],[-71.608355618,41.372975868],[-71.608439111,41.372974737],[-71.608494517,41.372990694],[-71.608515535,41.373050641],[-71.608529384,41.373107964],[-71.60857511,41.373163565],[-71.608643222,41.373188018],[-71.60872336,41.37319629],[-71.608806854,41.373195822],[-71.608885492,41.373178686],[-71.608958232,41.373138205],[-71.608996035,41.373085499],[-71.609028395,41.373027537],[-71.60904306,41.372973114],[-71.609024906,41.372919843],[-71.608994402,41.372870747],[-71.60892854,41.372829505],[-71.608862218,41.372804296],[-71.608848953,41.372769728],[-71.60892818,41.372741179],[-71.609012325,41.372731357],[-71.609091026,41.37271557],[-71.609163471,41.372699172],[-71.609231357,41.372679485],[-71.609318663,41.372653535],[-71.609396354,41.372633084],[-71.60947496,41.372615239],[-71.609549067,41.372594173],[-71.609632073,41.372611087],[-71.609695949,41.372644325],[-71.609758326,41.372688955],[-71.609811675,41.372727715],[-71.609821846,41.372781771],[-71.609803044,41.372848937],[-71.609802622,41.37290513],[-71.609812238,41.372971926],[-71.609803211,41.373038945],[-71.609778054,41.373100193],[-71.609727084,41.37315911],[-71.609686708,41.373215867],[-71.609649069,41.373275938],[-71.609608692,41.373332673],[-71.609570825,41.373383367],[-71.609530414,41.373438134],[-71.609489188,41.373495601],[-71.609456698,41.373548234],[-71.609446466,41.373602562],[-71.609429164,41.373658977],[-71.609385036,41.373706429],[-71.60933912,41.373755255],[-71.609289553,41.373800106],[-71.60924484,41.373824116],[-71.609172552,41.373808382],[-71.609081496,41.373826353],[-71.609023782,41.373865287],[-71.608976919,41.373910752],[-71.608919692,41.373969103],[-71.608894467,41.374026944],[-71.608874619,41.374086792],[-71.608875924,41.374140993],[-71.60889965,41.374203567],[-71.608931947,41.374253303],[-71.608968678,41.374303629],[-71.60901962,41.374354445],[-71.609091839,41.374365491],[-71.609164287,41.374349116],[-71.609225619,41.374313471],[-71.609288484,41.374267762],[-71.609360217,41.374224011],[-71.60939538,41.374171971],[-71.609393943,41.374111777],[-71.609399612,41.374052148],[-71.60943181,41.373988126],[-71.609481117,41.373933281],[-71.609530424,41.373878368],[-71.609563664,41.373820428],[-71.609564086,41.37376419],[-71.60956516,41.373698596],[-71.609591428,41.373647387],[-71.609637215,41.373593895],[-71.609689161,41.373537653],[-71.609741173,41.373484772],[-71.609798562,41.373433808],[-71.609850638,41.373382894],[-71.609889419,41.373334166],[-71.609906559,41.373271713],[-71.609927317,41.373211887],[-71.609941949,41.373156138],[-71.609975938,41.3730928],[-71.610029676,41.373037196],[-71.610069336,41.372987781],[-71.610118772,41.372938265],[-71.610174792,41.372904065],[-71.610242447,41.372873674],[-71.610309253,41.37284397],[-71.610303482,41.372789178],[-71.610274737,41.372739417],[-71.610222201,41.372697317],[-71.610175698,41.372685263],[-71.610098787,41.372700339],[-71.610018745,41.372658632],[-71.609965166,41.372609854],[-71.609921235,41.372556905],[-71.609886983,41.372499853],[-71.609859867,41.37244403],[-71.609840833,41.372391423],[-71.609829752,41.37233739],[-71.609835484,41.372279751],[-71.609849043,41.372218034],[-71.609883226,41.372162014],[-71.60988166,41.372097132],[-71.609874685,41.372029648],[-71.609860962,41.371975641],[-71.609840853,41.371915717],[-71.609824458,41.371861735],[-71.609789131,41.37179732],[-71.609758397,41.371738183],[-71.609748978,41.371679438],[-71.609818522,41.371653711],[-71.609892171,41.371650027],[-71.609965921,41.371651695],[-71.610031425,41.371678917],[-71.61008826,41.371678771],[-71.610058633,41.371627684],[-71.61000965,41.371585534],[-71.60993701,41.371557084],[-71.609857983,41.37152274],[-71.609785016,41.371480888],[-71.609727854,41.371430833],[-71.609694548,41.37137641],[-71.609664662,41.371315946],[-71.609630312,41.371254206],[-71.60960046,41.371195709],[-71.609570639,41.371137234],[-71.609537266,41.371079472],[-71.609514519,41.371020923],[-71.609493563,41.370962349],[-71.609464624,41.370904514],[-71.609440931,41.370843289],[-71.609433238,41.370781843],[-71.609426426,41.37072106],[-71.609400126,41.370661851],[-71.609368447,41.370600085],[-71.609342148,41.370541538],[-71.609321878,41.370474936],[-71.609302615,41.370412289],[-71.609286027,41.370350989],[-71.609281952,41.370292833],[-71.609279376,41.370222578],[-71.609269696,41.370153152],[-71.609263014,41.370097034],[-71.609249196,41.370040328],[-71.609209504,41.369978662],[-71.609149085,41.369941348],[-71.609124642,41.369884836],[-71.609061813,41.369858251],[-71.608996245,41.36982769],[-71.608959454,41.369776701],[-71.608950687,41.369707869],[-71.608942831,41.369639745],[-71.608913665,41.369572579],[-71.608912003,41.369504335],[-71.608925363,41.369432555],[-71.608955242,41.369381297],[-71.608959772,41.369312338],[-71.608937154,41.369257767],[-71.608945462,41.369196787],[-71.608969936,41.36914423],[-71.608995321,41.369092381],[-71.60900617,41.369026001],[-71.608983424,41.368967428],[-71.608942331,41.368921177],[-71.608863633,41.368899479],[-71.6087879,41.368889808],[-71.608708517,41.368876184],[-71.608632586,41.368857181],[-71.608566597,41.368809879],[-71.608514881,41.368765101],[-71.608455277,41.368723762],[-71.608426796,41.368721479],[-71.60845153,41.368789404],[-71.608491679,41.368834329],[-71.608534694,41.36888593],[-71.608571583,41.368942294],[-71.608614729,41.368999933],[-71.608649859,41.369056984],[-71.60866912,41.369119609],[-71.60868499,41.369187633],[-71.608692943,41.369259782],[-71.608704415,41.369329915],[-71.608713932,41.369393326],[-71.608716474,41.369461523],[-71.608715594,41.369534481],[-71.60869865,41.369605647],[-71.608677241,41.369675514],[-71.608672713,41.369745845],[-71.608686694,41.369809869],[-71.60869168,41.369868687],[-71.608667469,41.369933251],[-71.608639867,41.370003855],[-71.608606985,41.370075242],[-71.608569476,41.370140001],[-71.608537899,41.370193296],[-71.608487648,41.370245511],[-71.608411199,41.370280666],[-71.608342471,41.370303693],[-71.608332431,41.370327922],[-71.608332007,41.370383498],[-71.608299616,41.370440133],[-71.608270972,41.370504746],[-71.60824679,41.37056931],[-71.608220036,41.370638587],[-71.608193934,41.370698509],[-71.608147268,41.370751978],[-71.608084925,41.370780945],[-71.608025125,41.370805861],[-71.608098774,41.370838954],[-71.608170471,41.370866743],[-71.608230044,41.370906756],[-71.608288801,41.370948783],[-71.608351239,41.370995426],[-71.608417754,41.371028617],[-71.608465984,41.371076142],[-71.60847801,41.371132849],[-71.608451385,41.371170016],[-71.608427335,41.371203796],[-71.608452819,41.371265682],[-71.608466703,41.371325704],[-71.608427337,41.371387789],[-71.608393021,41.371437793],[-71.608329929,41.371473439],[-71.60825931,41.371491802],[-71.608179044,41.371514999],[-71.608094184,41.371532232],[-71.608013819,41.371550718],[-71.607928239,41.371573966],[-71.607871374,41.371610887],[-71.607816267,41.371646456],[-71.60773675,41.371664278],[-71.607653909,41.371654018],[-71.607600365,41.371606589],[-71.60751521,41.371574284],[-71.607443417,41.371543796],[-71.607403922,41.371490842],[-71.607387137,41.371420142],[-71.60735569,41.371369056],[-71.607271157,41.371363532],[-71.607187697,41.371364661],[-71.607113134,41.371329556],[-71.607099969,41.371262809],[-71.60710121,41.371204626],[-71.607113104,41.3711449],[-71.607142108,41.371094992],[-71.607077291,41.371059763],[-71.606981317,41.371057703],[-71.606908318,41.371050018],[-71.606858783,41.371021247],[-71.606831279,41.370986166],[-71.606766266,41.371016484],[-71.606685545,41.371020973],[-71.606609614,41.37100325],[-71.606524886,41.370989698],[-71.606436861,41.370984222],[-71.606352392,41.370980709],[-71.606264307,41.37097521],[-71.606176742,41.370953655],[-71.606094488,41.370930038],[-71.606026509,41.370910866],[-71.605940901,41.370897337],[-71.605852097,41.370897899],[-71.605765933,41.37089775],[-71.605690685,41.37090747],[-71.605616775,41.370937247],[-71.60554837,41.370972987],[-71.605488243,41.371021299],[-71.605478204,41.371084339],[-71.605520502,41.37114397],[-71.605571435,41.37119282],[-71.605559603,41.371254513],[-71.605509025,41.371293988],[-71.605438013,41.371333116],[-71.605364328,41.371370919],[-71.605292924,41.371392643],[-71.605226118,41.371384883],[-71.605175803,41.371361463],[-71.605095178,41.371369908],[-71.605012795,41.37134231],[-71.604944262,41.371299101],[-71.604859208,41.371272146],[-71.604767698,41.371270034],[-71.604696068,41.37128373],[-71.604622908,41.371308153],[-71.604554337,41.371335866],[-71.604487335,41.371357517],[-71.604430564,41.37136029],[-71.604430046,41.371302108],[-71.604411408,41.371266218],[-71.604333293,41.371267981],[-71.604289102,41.371277284],[-71.604262996,41.371336519],[-71.604212774,41.371390722],[-71.604161345,41.37143022],[-71.604130088,41.37149623],[-71.604084494,41.371558433],[-71.604009962,41.371598889],[-71.603937223,41.371640717],[-71.603877647,41.371674299],[-71.603792033,41.371695554],[-71.603714834,41.37166317],[-71.603677326,41.371616869],[-71.603632878,41.37157931],[-71.603536709,41.371569264],[-71.603453316,41.371574417],[-71.603370082,41.371584234],[-71.603286751,41.371590073],[-71.603208799,41.37159984],[-71.60315105,41.371636759],[-71.603102587,41.37168961],[-71.603046887,41.371735904],[-71.602985519,41.371769487],[-71.602913007,41.371782542],[-71.602834861,41.371784282],[-71.60275919,41.371777282],[-71.602680684,41.371762304],[-71.602602146,41.371746639],[-71.602521002,41.371734384],[-71.602443505,41.37172471],[-71.602371257,41.37171231],[-71.602316973,41.371693444],[-71.602287932,41.371683339],[-71.602230285,41.371649999],[-71.602178277,41.371591863],[-71.602144943,41.371535425],[-71.602112392,41.371474321],[-71.602076257,41.37141258],[-71.602036634,41.3713529],[-71.601994373,41.371295281],[-71.601959965,41.371231526],[-71.601922006,41.371167819],[-71.601881437,41.371104801],[-71.601830378,41.371051307],[-71.601783716,41.370994401],[-71.601769775,41.370932365],[-71.601767432,41.370870823],[-71.601750981,41.370814851],[-71.601730033,41.370756961],[-71.601730332,41.37069537],[-71.601729881,41.370639864],[-71.601731223,41.370585637],[-71.601754465,41.370517714],[-71.601779823,41.3704639],[-71.601834641,41.370416967],[-71.601900277,41.370375902],[-71.601954021,41.370321652],[-71.601998866,41.370264825],[-71.602032991,41.370206818],[-71.602058187,41.370146897],[-71.6020505,41.370084834],[-71.602028577,41.370024201],[-71.602004076,41.369965697],[-71.601971492,41.369902535],[-71.601944126,41.369836669],[-71.601911414,41.36976955],[-71.601879776,41.369709086],[-71.601848985,41.369647294],[-71.601829667,41.369582679],[-71.601812827,41.369511292],[-71.601794354,41.369443978],[-71.60177582,41.369375977],[-71.60175826,41.369309966],[-71.601745166,41.369245894],[-71.601725979,41.369187317],[-71.601709591,41.369133334],[-71.601696335,41.369062585],[-71.601693245,41.36900843],[-71.60168833,41.368951647],[-71.601684947,41.368884777],[-71.601676288,41.368821982],[-71.601672937,41.368756461],[-71.601666229,41.368699039],[-71.601667505,41.368640787],[-71.601674127,41.368584497],[-71.601687067,41.368530785],[-71.601699066,41.368476434],[-71.601695063,41.368420954],[-71.601678416,41.368356291],[-71.601686829,41.368299977],[-71.601702999,41.368234164],[-71.601699254,41.36818806],[-71.601669833,41.368146965],[-71.601669187,41.368083409],[-71.601663164,41.368017272],[-71.601667082,41.367959681],[-71.601665751,41.367904153],[-71.601695539,41.367849534],[-71.601711383,41.36780785],[-71.601675799,41.367766829],[-71.601677861,41.367707273],[-71.601643907,41.367660235],[-71.601605197,41.367639343],[-71.601593048,41.367577283],[-71.601570437,41.367522711],[-71.601571487,41.367455791],[-71.601584237,41.367396751],[-71.601560617,41.367338201],[-71.601503561,41.367291458],[-71.601467131,41.367253159],[-71.601464889,41.367196968],[-71.601472455,41.36714269],[-71.601485987,41.367078938],[-71.601540672,41.367026013],[-71.601603762,41.366989662],[-71.601647922,41.366942898],[-71.601704397,41.366889926],[-71.601760842,41.366836291],[-71.601801386,41.366787563],[-71.601832707,41.36672359],[-71.601878594,41.366674789],[-71.601894466,41.366632419],[-71.601837153,41.366576346],[-71.601789972,41.366534809],[-71.601748005,41.366488556],[-71.601715621,41.366435479],[-71.601694542,41.366370866],[-71.601705266,41.366336596],[-71.601770279,41.366307608],[-71.601848812,41.366285148],[-71.601914543,41.366249435],[-71.601998551,41.36623422],[-71.602082621,41.366258503],[-71.602138992,41.366313273],[-71.602176656,41.36636495],[-71.602243031,41.366391444],[-71.602303576,41.366398022],[-71.602302563,41.366429447],[-71.602235985,41.366467174],[-71.602212617,41.366530386],[-71.60215777,41.366576656],[-71.602091224,41.366615023],[-71.602115657,41.366670211],[-71.602162092,41.366719113],[-71.602204972,41.366766668],[-71.602269227,41.366815988],[-71.602309356,41.366831665],[-71.602345444,41.366845744],[-71.602413903,41.366884929],[-71.602483146,41.36692011],[-71.602516348,41.366971174],[-71.602550429,41.36702155],[-71.60261599,41.367051429],[-71.602706028,41.367066923],[-71.602791176,41.36706177],[-71.602863259,41.367030007],[-71.60295512,41.367007992],[-71.603044313,41.366988038],[-71.603124933,41.366979572],[-71.603211578,41.366999803],[-71.603288644,41.367028894],[-71.603366751,41.367063244],[-71.603448802,41.36707687],[-71.603526163,41.367081123],[-71.603598731,41.367106901],[-71.603674201,41.367143335],[-71.603746769,41.367169113],[-71.603842768,41.367171816],[-71.603934467,41.367181271],[-71.604015996,41.367210288],[-71.604079114,41.367249546],[-71.604151878,41.367284014],[-71.604220404,41.367325211],[-71.604286193,41.367364465],[-71.604356157,41.36739363],[-71.604421916,41.367432885],[-71.604482459,41.367475529],[-71.604539385,41.367514884],[-71.604598073,41.367555563],[-71.604655781,41.36759025],[-71.604727308,41.367609991],[-71.604815944,41.367602112],[-71.604890928,41.367581689],[-71.604962719,41.367538535],[-71.605016555,41.367488308],[-71.605068695,41.367440072],[-71.605121877,41.367397828],[-71.605191288,41.367366775],[-71.605235348,41.367316008],[-71.605268786,41.367267377],[-71.605287068,41.367214278],[-71.60530799,41.367161108],[-71.605329467,41.367093918],[-71.605331425,41.367027637],[-71.605341335,41.36696064],[-71.605364506,41.366890041],[-71.605388069,41.366836182],[-71.605418444,41.366770882],[-71.605438356,41.366712384],[-71.60544217,41.366649464],[-71.605474238,41.366580091],[-71.605504774,41.366520782],[-71.605538892,41.366461425],[-71.605574771,41.366402043],[-71.605611531,41.366342683],[-71.605634932,41.366283473],[-71.605655691,41.366222984],[-71.605677428,41.36616716],[-71.605713177,41.366102427],[-71.605735859,41.366049232],[-71.605720316,41.365993259],[-71.605740262,41.36593746],[-71.605754048,41.365883061],[-71.605716509,41.365835411],[-71.605728471,41.365779687],[-71.605749034,41.365711194],[-71.605746591,41.365646313],[-71.605729128,41.365585676],[-71.605721668,41.365534247],[-71.605761296,41.365484879],[-71.605774754,41.365415752],[-71.605810731,41.365361081],[-71.605867171,41.365307444],[-71.605933125,41.365280442],[-71.605996276,41.365246787],[-71.606061061,41.365209768],[-71.606124961,41.365170784],[-71.606194011,41.365124293],[-71.606233699,41.365074902],[-71.606301218,41.365039184],[-71.606370821,41.365016181],[-71.606445022,41.365001086],[-71.606516676,41.364988739],[-71.606604396,41.364979532],[-71.606699318,41.364975556],[-71.606772928,41.364970525],[-71.606858238,41.36497335],[-71.60693869,41.364994339],[-71.606938886,41.365039829],[-71.606939569,41.365067913],[-71.606994084,41.365118726],[-71.60703527,41.365168294],[-71.607094281,41.365221024],[-71.607173334,41.365258092],[-71.607241698,41.365293935],[-71.607312603,41.365324447],[-71.607382534,41.365352901],[-71.607441351,41.365397581],[-71.607505511,41.365442874],[-71.607568663,41.365484142],[-71.607627348,41.365522852],[-71.607681572,41.36556223],[-71.607734914,41.365601014],[-71.607799041,41.365644271],[-71.607851505,41.365683696],[-71.607910096,41.365720349],[-71.607974713,41.365747573],[-71.608042753,41.365770722],[-71.60812601,41.365797677],[-71.608200206,41.365816704],[-71.608289264,41.365826866],[-71.60836379,41.365824509],[-71.60844144,41.365802709],[-71.60849537,41.36575646],[-71.608531507,41.365707826],[-71.608569306,41.365655097],[-71.608613491,41.365608308],[-71.608664033,41.365569494],[-71.608734744,41.365555134],[-71.608817511,41.365562031],[-71.608891284,41.365563699],[-71.608970338,41.365564608],[-71.609049033,41.365550148],[-71.609082335,41.365495501],[-71.609088884,41.365435872],[-71.60909012,41.36537627],[-71.609124465,41.36532766],[-71.609200128,41.365297811],[-71.609272629,41.365283471],[-71.609355856,41.365274313],[-71.609427445,41.365259242],[-71.609499655,41.365234198],[-71.609583073,41.365231031],[-71.609635472,41.365267757],[-71.609688879,41.36530853],[-71.609762949,41.365324217],[-71.609845848,41.365337129],[-71.609917926,41.36534216],[-71.609992025,41.365321071],[-71.610045985,41.365275507],[-71.610085543,41.36522209],[-71.610125232,41.36517471],[-71.610161302,41.365123377],[-71.610201805,41.365072634],[-71.610242306,41.365021228],[-71.610292517,41.364966359],[-71.610342012,41.364919496],[-71.610394247,41.364877318],[-71.610453844,41.364844351],[-71.610534948,41.364819161],[-71.610612957,41.364812728],[-71.610702663,41.364812184],[-71.610796806,41.364814221],[-71.61088938,41.364822296],[-71.610980228,41.364832432],[-71.611052371,41.364840138],[-71.611126276,41.364848483],[-71.611197671,41.364862205],[-71.611268318,41.364882652],[-71.611334632,41.364907837],[-71.611399184,41.364932406],[-71.611463737,41.364957592],[-71.61152842,41.36498749],[-71.611595676,41.365013314],[-71.6116602,41.365038546],[-71.611740134,41.365075542],[-71.611808565,41.365113417],[-71.611845358,41.365165778],[-71.611923402,41.365197515],[-71.61200128,41.365185707],[-71.612063484,41.365150746],[-71.612122656,41.365100419],[-71.612157716,41.365045061],[-71.61219815,41.364990978],[-71.612237835,41.364942271],[-71.612316594,41.364930485],[-71.612374304,41.364965786],[-71.612446975,41.364997574],[-71.612493997,41.365031742],[-71.612484028,41.365095446],[-71.612476476,41.365152424],[-71.612472633,41.365212669],[-71.612486484,41.365270037],[-71.612501967,41.365323333],[-71.612468506,41.365371989],[-71.612425628,41.365435473],[-71.612403049,41.365492672],[-71.612386728,41.365552448],[-71.612363401,41.365616326],[-71.612332156,41.365682978],[-71.612299215,41.365752376],[-71.612268101,41.36582438],[-71.61223604,41.365893709],[-71.612210986,41.365959646],[-71.61218339,41.366030274],[-71.612166352,41.366096775],[-71.612163325,41.366155007],[-71.6121676,41.366222516],[-71.612154276,41.36629496],[-71.612148608,41.366353263],[-71.612149981,41.366410117],[-71.612147769,41.366465695],[-71.612132392,41.366527437],[-71.612114439,41.366591927],[-71.612092579,41.366643773],[-71.612052176,41.366699181],[-71.61202816,41.366733625],[-71.612034097,41.366796444],[-71.612078709,41.366840632],[-71.612159396,41.366872321],[-71.612243079,41.366880541],[-71.61231558,41.36686549],[-71.612373258,41.366827881],[-71.612422952,41.366826529],[-71.612502301,41.366838824],[-71.612591553,41.366819526],[-71.612661253,41.366799857],[-71.612730923,41.366780807],[-71.612808247,41.366745625],[-71.612874982,41.366714615],[-71.612942431,41.366674846],[-71.613008287,41.366644501],[-71.613095682,41.366622574],[-71.613183436,41.366615329],[-71.613272267,41.366616111],[-71.613347053,41.36662379],[-71.613421902,41.366632155],[-71.613493824,41.366633823],[-71.61358503,41.3666212],[-71.613662354,41.366586657],[-71.613716543,41.366551132],[-71.613772456,41.36651222],[-71.613828305,41.366471295],[-71.613877702,41.366421114],[-71.613933322,41.366370835],[-71.613984544,41.366322619],[-71.614025987,41.366272537],[-71.614062609,41.366208487],[-71.614086749,41.366141887],[-71.614127054,41.366083778],[-71.614172898,41.366033029],[-71.614222356,41.365983465],[-71.614275271,41.365931885],[-71.614321864,41.365875692],[-71.614356855,41.365816995],[-71.614371383,41.365757288],[-71.614391223,41.365696776],[-71.614419143,41.365639526],[-71.614447975,41.365582916],[-71.614495709,41.365537425],[-71.614556934,41.365498438],[-71.614622752,41.365464776],[-71.61469307,41.36543502],[-71.614762638,41.365410639],[-71.614843123,41.365396837],[-71.614931658,41.365385564],[-71.615004223,41.365373851],[-71.615068318,41.365344856],[-71.615094511,41.36528962],[-71.615133119,41.365233572],[-71.615221291,41.36520629],[-71.615306273,41.365195067],[-71.615388552,41.365182566],[-71.615461086,41.365170852],[-71.615554831,41.365153514],[-71.6156346,41.365147007],[-71.615714499,41.36514528],[-71.615788308,41.36515026],[-71.615875901,41.365173157],[-71.615952121,41.365202194],[-71.615995856,41.365247777],[-71.616019685,41.365315015],[-71.616053874,41.365369389],[-71.616126051,41.365378442],[-71.616212796,41.36536788],[-71.616300514,41.365358643],[-71.616373244,41.365354293],[-71.616442942,41.365335285],[-71.61646014,41.365275461],[-71.616487506,41.3652323],[-71.616444583,41.365182692],[-71.616443078,41.365121835],[-71.616461251,41.365064686],[-71.61648813,41.365003434],[-71.616528365,41.364941346],[-71.616576094,41.364893841],[-71.616624805,41.36485235],[-71.616701927,41.364809138],[-71.616775532,41.364767965],[-71.616815965,41.364715254],[-71.616812633,41.364651037],[-71.616827124,41.364589272],[-71.616888215,41.364544932],[-71.616954032,41.364511932],[-71.616992736,41.364459885],[-71.617058653,41.364431527],[-71.617101073,41.364386795],[-71.61713792,41.364332074],[-71.617210841,41.364299615],[-71.617284284,41.364287236],[-71.61736138,41.364280136],[-71.617399017,41.364293706],[-71.617436595,41.364342016],[-71.617482224,41.364393565],[-71.617533943,41.364438338],[-71.617590842,41.364477023],[-71.617668955,41.364512095],[-71.617750742,41.364514298],[-71.617816722,41.364487976],[-71.617888767,41.36445753],[-71.617947967,41.364408526],[-71.617989275,41.364353755],[-71.61804877,41.364316804],[-71.618108164,41.364274524],[-71.618163944,41.364231584],[-71.618209851,41.36418479],[-71.61824422,41.364136795],[-71.618304365,41.364090489],[-71.61836311,41.36405889],[-71.618418506,41.364072167],[-71.618496782,41.364113253],[-71.618572676,41.364130282],[-71.618648859,41.364122542],[-71.618724193,41.364115466],[-71.618815331,41.364101489],[-71.618910611,41.364111522],[-71.618982723,41.364118561],[-71.619055388,41.364112905],[-71.61913522,41.364108431],[-71.61921326,41.364103342],[-71.619294072,41.364103555],[-71.619376058,41.364115157],[-71.61945371,41.364130789],[-71.619526669,41.364135836],[-71.619600869,41.364156205],[-71.619677643,41.364172523],[-71.619751251,41.36416817],[-71.619835746,41.364173685],[-71.619926793,41.364192482],[-71.620001443,41.364193479],[-71.620074172,41.364189103],[-71.62015287,41.36421212],[-71.620217204,41.36426477],[-71.620282936,41.36430198],[-71.620356191,41.364319719],[-71.620427979,41.364348827],[-71.62049381,41.364390085],[-71.620579447,41.364405616],[-71.620644914,41.364430796],[-71.620680053,41.364488531],[-71.620688338,41.364536573],[-71.620727341,41.36453269],[-71.62073033,41.364474458],[-71.620725268,41.364412965],[-71.620716752,41.364355546],[-71.620700252,41.364297563],[-71.62072879,41.364265721],[-71.620804126,41.364259329],[-71.620897903,41.364244617],[-71.620963978,41.364220968],[-71.621039375,41.364182466],[-71.621107435,41.364132674],[-71.621159726,41.364091795],[-71.621223584,41.364051453],[-71.621282978,41.364010475],[-71.621349805,41.363983463],[-71.621428462,41.363967645],[-71.621508943,41.363953152],[-71.621585676,41.363931344],[-71.621656579,41.363925002],[-71.621617065,41.36397975],[-71.621564743,41.364019966],[-71.62149896,41.364053655],[-71.621448462,41.364095173],[-71.621381051,41.364134924],[-71.62131175,41.364169989],[-71.621240592,41.364203066],[-71.621203618,41.364252437],[-71.621197016,41.3643101],[-71.621202857,41.364366196],[-71.621183127,41.364432724],[-71.621139081,41.36448352],[-71.621089559,41.364527666],[-71.621042159,41.364587225],[-71.621020206,41.364633676],[-71.621085222,41.36467761],[-71.621167537,41.364701903],[-71.621242909,41.364698874],[-71.62132528,41.364688358],[-71.621392273,41.364668024],[-71.621470084,41.364654242],[-71.621541931,41.364649249],[-71.621615289,41.36467298],[-71.621667306,41.364729095],[-71.621714563,41.364772636],[-71.621782369,41.364749603],[-71.621808481,41.364800782],[-71.621870267,41.3648213],[-71.621944722,41.364814269],[-71.622028731,41.364835838],[-71.622104267,41.364838822],[-71.622168904,41.364793081],[-71.622228233,41.36474945],[-71.622291477,41.364721801],[-71.622371144,41.36471003],[-71.622447074,41.364729023],[-71.622509444,41.364737533],[-71.6225078,41.364669975],[-71.62249749,41.364611232],[-71.622490664,41.364549077],[-71.622487294,41.364484266],[-71.622469034,41.364427612],[-71.622437545,41.36437454],[-71.622394291,41.364312904],[-71.622392877,41.364254723],[-71.622432751,41.364213994],[-71.622519267,41.364228859],[-71.622550329,41.364264573],[-71.622552624,41.364322753],[-71.622553356,41.364388985],[-71.622561191,41.364455118],[-71.622574436,41.36452518],[-71.622590286,41.36459119],[-71.622606656,41.364643866],[-71.622637037,41.364688271],[-71.622712437,41.364683868],[-71.622785454,41.364655408],[-71.622843674,41.36460375],[-71.622879536,41.364544386],[-71.622963012,41.364507749],[-71.623051411,41.364490502],[-71.623136455,41.364481263],[-71.623204294,41.3644596],[-71.623266392,41.364419922],[-71.623351997,41.364434147],[-71.623424248,41.364482647],[-71.623482846,41.364518628],[-71.62356933,41.36453212],[-71.623646888,41.364545096],[-71.623730239,41.364539266],[-71.62381381,41.364505328],[-71.623882494,41.364481629],[-71.623963365,41.364448402],[-71.624035435,41.364417266],[-71.624090462,41.364379059],[-71.624090902,41.364323506],[-71.62407671,41.364251456],[-71.624065552,41.364194727],[-71.624053449,41.364136008],[-71.624035937,41.364074025],[-71.624006888,41.364011551],[-71.623987483,41.363944219],[-71.623973389,41.363876194],[-71.623957438,41.363804809],[-71.623945137,41.3637374],[-71.623939973,41.363671882],[-71.623922491,41.363609899],[-71.623904001,41.363544578],[-71.623912457,41.363489611],[-71.623916258,41.36342868],[-71.623925596,41.363374352],[-71.623953309,41.363309073],[-71.624000056,41.363259553],[-71.624068098,41.363281367],[-71.624076584,41.363338123],[-71.624077055,41.363394361],[-71.624088311,41.36345507],[-71.624151889,41.363476271],[-71.624214085,41.36344128],[-71.62425288,41.36339257],[-71.624287772,41.363366643],[-71.624340443,41.363415437],[-71.624379916,41.363467745],[-71.624384002,41.363525215],[-71.624350525,41.363608682],[-71.624326033,41.36365987],[-71.6242992,41.363725126],[-71.624284519,41.363778865],[-71.624268925,41.363831918],[-71.624252549,41.363889021],[-71.624246992,41.363952012],[-71.624265385,41.364013971],[-71.624272113,41.364071415],[-71.624280565,41.36412618],[-71.624317597,41.364187868],[-71.624368343,41.364229323],[-71.624395958,41.364255445],[-71.625526566,41.361378443],[-71.625724508,41.360801612],[-71.62568441,41.360810764],[-71.625611981,41.360826463],[-71.625543135,41.360842799],[-71.625464517,41.360860633],[-71.625383063,41.360871791],[-71.625285773,41.36088786],[-71.625189723,41.360917994],[-71.625112213,41.36094383],[-71.625031287,41.360977035],[-71.624960198,41.361010823],[-71.624887185,41.361039262],[-71.624809642,41.361063749],[-71.624716982,41.361088458],[-71.624640187,41.361107592],[-71.624568341,41.361111284],[-71.624500111,41.361116229],[-71.624406867,41.361153654],[-71.62433014,41.361176128],[-71.624229464,41.361200296],[-71.62415889,41.361217983],[-71.624082226,41.361242445],[-71.623998591,41.361272381],[-71.62392734,41.361301481],[-71.623842173,41.361340132],[-71.623774604,41.361373847],[-71.623697611,41.361384954],[-71.623591943,41.361385753],[-71.62351671,41.361396172],[-71.623439783,41.361409931],[-71.623358555,41.361429161],[-71.623272801,41.361446405],[-71.623200174,41.361454076],[-71.623129308,41.361462408],[-71.623057753,41.361476116],[-71.622970205,41.361491418],[-71.622883471,41.361504638],[-71.622808435,41.361523061],[-71.622739816,41.361548108],[-71.622667684,41.361577208],[-71.622583071,41.361604491],[-71.62250999,41.361629589],[-71.622420331,41.361668954],[-71.622324244,41.361696409],[-71.622250871,41.361711444],[-71.622154819,41.361741575],[-71.622066819,41.361775585],[-71.62197181,41.361811684],[-71.621906844,41.361842674],[-71.621822657,41.361886675],[-71.621757594,41.361914325],[-71.621688716,41.361930705],[-71.621599659,41.361919204],[-71.62149741,41.3619146],[-71.621395555,41.361926029],[-71.621324786,41.361937745],[-71.621242742,41.361959604],[-71.621150014,41.361981634],[-71.621074911,41.36199738],[-71.620975178,41.362023534],[-71.620900205,41.36204399],[-71.620812852,41.36206725],[-71.620739574,41.362084983],[-71.620647954,41.362115703],[-71.620558059,41.362143699],[-71.620483834,41.362158116],[-71.62038762,41.362183535],[-71.620310043,41.362208042],[-71.620212651,41.362220082],[-71.620130475,41.362235948],[-71.620051039,41.362256455],[-71.619954758,41.362278511],[-71.619855835,41.362299952],[-71.619776201,41.362311767],[-71.619699957,41.362318159],[-71.619603346,41.362325532],[-71.619507976,41.36234825],[-71.619415672,41.36238702],[-71.61933875,41.362437575],[-71.61925169,41.362472909],[-71.61914195,41.362489146],[-71.619050681,41.362496422],[-71.618971864,41.362506887],[-71.618875514,41.36252494],[-71.618765807,41.362542526],[-71.618680927,41.362557731],[-71.618609438,41.362575461],[-71.618520522,41.362608143],[-71.618422679,41.362639622],[-71.618353894,41.362658607],[-71.618281659,41.362683038],[-71.618206816,41.362708821],[-71.618122619,41.362715998],[-71.618052763,41.3627297],[-71.617981241,41.362746057],[-71.617897436,41.362768625],[-71.617815979,41.362779778],[-71.617709757,41.362794638],[-71.617625721,41.362807188],[-71.617552342,41.362820254],[-71.617482551,41.362836586],[-71.617412106,41.362860969],[-71.617330162,41.362888863],[-71.61725004,41.362916733],[-71.617180411,41.362939125],[-71.617108953,41.362957494],[-71.617027464,41.362968006],[-71.616930852,41.362976017],[-71.616848478,41.362983854],[-71.61677135,41.362988918],[-71.616690542,41.362990029],[-71.616592007,41.362992073],[-71.616506895,41.36299726],[-71.616419442,41.3630172],[-71.616329901,41.363023808],[-71.616249808,41.363017531],[-71.616170824,41.363019944],[-71.616095651,41.363031707],[-71.616020481,41.363045436],[-71.615934557,41.363054671],[-71.615844169,41.36306327],[-71.61574782,41.363082669],[-71.615670008,41.363095807],[-71.615571992,41.363082412],[-71.615479095,41.363097096],[-71.615390111,41.363127077],[-71.615294606,41.363143091],[-71.615212104,41.363147587],[-71.615125983,41.363148771],[-71.615054037,41.363148455],[-71.614951071,41.363151188],[-71.614868533,41.363153008],[-71.614782312,41.36314884],[-71.614679184,41.363145581],[-71.614577879,41.363143624],[-71.614489897,41.36313948],[-71.614402995,41.363145376],[-71.614328836,41.363164455],[-71.614253795,41.363182231],[-71.614166206,41.363194805],[-71.614069758,41.363210179],[-71.613994687,41.363228618],[-71.613893091,41.363250743],[-71.61380824,41.363266653],[-71.613718145,41.363286617],[-71.613653924,41.363312272],[-71.613573901,41.363346177],[-71.613483904,41.363370828],[-71.613379206,41.363372921],[-71.613284677,41.363356845],[-71.613199341,41.363355328],[-71.613091356,41.363370186],[-71.613012435,41.363374609],[-71.612921848,41.363373851],[-71.612826443,41.363395901],[-71.612743322,41.363411122],[-71.612651172,41.363419766],[-71.612574076,41.363426154],[-71.612498708,41.363431191],[-71.612413631,41.36343905],[-71.612313434,41.363445803],[-71.612233568,41.363448282],[-71.612129852,41.363456365],[-71.612029297,41.363484502],[-71.611937344,41.363501813],[-71.611845095,41.363505768],[-71.611745974,41.363520547],[-71.611666109,41.363522957],[-71.611585331,41.363524751],[-71.611479726,41.363528879],[-71.611379428,41.363530257],[-71.611290702,41.363534825],[-71.611216409,41.363547224],[-71.611137554,41.363554985],[-71.611048531,41.363545511],[-71.6109672,41.363561347],[-71.610884958,41.363576521],[-71.610807049,41.363586956],[-71.610724119,41.363608168],[-71.610662634,41.363637113],[-71.610581563,41.363662989],[-71.61049199,41.36366957],[-71.610417729,41.363683318],[-71.610356503,41.363721616],[-71.610263702,41.363740299],[-71.610171487,41.363746905],[-71.610071484,41.363761021],[-71.610000842,41.363778698],[-71.609928566,41.363799763],[-71.609853657,41.363824877],[-71.609755577,41.363845646],[-71.609655313,41.363849721],[-71.609575415,41.36385078],[-71.609486653,41.363852672],[-71.609414738,41.363853678],[-71.609316301,41.363860381],[-71.609204695,41.363871282],[-71.60911952,41.363875777],[-71.609028966,41.363877052],[-71.608954152,41.363868683],[-71.608855516,41.363866032],[-71.608780082,41.363868413],[-71.608691549,41.363879658],[-71.608603797,41.363886236],[-71.608500897,41.363892988],[-71.608426437,41.363897358],[-71.608329792,41.363904699],[-71.60824393,41.363916581],[-71.608155364,41.363926499],[-71.608056632,41.363920508],[-71.607968229,41.363900305],[-71.607887255,41.363894068],[-71.607790705,41.363904062],[-71.607718889,41.363909732],[-71.607629313,41.363914985],[-71.607549479,41.363918742],[-71.60746264,41.363926645],[-71.607374531,41.363919157],[-71.607287205,41.363908306],[-71.60719398,41.363909582],[-71.607084916,41.363915767],[-71.606996383,41.363927696],[-71.606915832,41.363938155],[-71.60683512,41.363943307],[-71.606748182,41.363946475],[-71.606647854,41.363948512],[-71.606565284,41.363949663],[-71.606488058,41.363951382],[-71.60641275,41.3639571],[-71.606331258,41.363967582],[-71.606237251,41.363973546],[-71.606151323,41.363982088],[-71.60604617,41.364003614],[-71.605953107,41.36401159],[-71.605870731,41.36402006],[-71.605795395,41.364027104],[-71.605720026,41.364032159],[-71.60563485,41.364036697],[-71.605556775,41.364039102],[-71.60546987,41.364044282],[-71.605388962,41.364040742],[-71.605308934,41.364037133],[-71.605224179,41.36405768],[-71.605151385,41.364059347],[-71.605073408,41.36406644],[-71.604989273,41.364076305],[-71.604906767,41.364080108],[-71.604833516,41.364061719],[-71.60476059,41.364057394],[-71.604660262,41.364059429],[-71.604572348,41.364059944],[-71.604482835,41.36406652],[-71.604407563,41.364075577],[-71.604333141,41.364084632],[-71.60424995,41.364096463],[-71.604154344,41.364109151],[-71.604073828,41.364122969],[-71.603996892,41.364135389],[-71.603916341,41.364146531],[-71.603822495,41.364158508],[-71.603736632,41.36417041],[-71.603655233,41.364182902],[-71.603571196,41.364196746],[-71.603473017,41.364214147],[-71.603388133,41.364230713],[-71.60330856,41.364245856],[-71.603229927,41.364260998],[-71.603135266,41.364276315],[-71.603048557,41.364290206],[-71.60297423,41.364301937],[-71.602874484,41.364326726],[-71.602785525,41.364358047],[-71.602694319,41.364369998],[-71.602588024,41.364380842],[-71.602516497,41.364397212],[-71.602439531,41.364410317],[-71.602365203,41.364422001],[-71.602305603,41.364435845],[-71.602273344,41.36444333],[-71.602188813,41.364471924],[-71.602103405,41.364503196],[-71.602015589,41.364508419],[-71.601925131,41.364513691],[-71.601823237,41.364524462],[-71.601739132,41.364534279],[-71.601651476,41.36454554],[-71.60157966,41.36455187],[-71.601475028,41.364558641],[-71.601397048,41.364564381],[-71.601319853,41.364567468],[-71.601242369,41.364559829],[-71.601152956,41.364534247],[-71.60105497,41.36455901],[-71.600978131,41.364576116],[-71.600893932,41.364584652],[-71.600807354,41.364566409],[-71.600711521,41.364570403],[-71.600627481,41.364583605],[-71.600550383,41.36459067],[-71.600477653,41.364595011],[-71.600403226,41.364601388],[-71.600327857,41.364607103],[-71.600234793,41.364615737],[-71.600154498,41.364636231],[-71.600073752,41.364639343],[-71.599998254,41.364640369],[-71.599906036,41.364646327],[-71.59982884,41.364648704],[-71.599756043,41.364649018],[-71.599676015,41.364645428],[-71.599578227,41.364642082],[-71.599492008,41.364639916],[-71.599415627,41.364638953],[-71.599341822,41.364635288],[-71.599253776,41.364629807],[-71.599168307,41.364621579],[-71.599096228,41.364615191],[-71.598990263,41.364603984],[-71.598914601,41.364596959],[-71.598841675,41.364592585],[-71.598758911,41.36458639],[-71.598676307,41.36458614],[-71.598576008,41.364587507],[-71.598480013,41.364584799],[-71.598405133,41.364573131],[-71.59832152,41.364567576],[-71.598244947,41.364560574],[-71.598261134,41.364605181],[-71.59816911,41.364618479],[-71.598071583,41.364626521],[-71.597998197,41.364639551],[-71.597924846,41.36465528],[-71.597846118,41.364668383],[-71.597771853,41.364682145],[-71.59767921,41.364708136],[-71.59761221,41.364727793],[-71.597537165,41.364747548],[-71.597449733,41.364766811],[-71.597369471,41.364789978],[-71.597295403,41.364813734],[-71.597221331,41.364834815],[-71.597136575,41.364856751],[-71.597061591,41.364877146],[-71.596984784,41.364896262],[-71.596917881,41.364920584],[-71.596833416,41.364955189],[-71.596757618,41.364979679],[-71.596681753,41.364999434],[-71.596596964,41.365019951],[-71.596525434,41.365036341],[-71.596424483,41.365049119],[-71.596347546,41.36506286],[-71.596278688,41.365079155],[-71.596206152,41.365092184],[-71.596129087,41.365101282],[-71.596040452,41.365108514],[-71.59596505,41.3651129],[-71.595872764,41.365114806],[-71.595768882,41.365116242],[-71.595689798,41.365115279],[-71.595598072,41.365105155],[-71.595524168,41.36509616],[-71.595446553,41.365082502],[-71.595372326,41.365060722],[-71.595319414,41.365061475],[-71.595286203,41.365061891],[-71.595203857,41.365072411],[-71.595128712,41.36508679],[-71.595059822,41.365102467],[-71.594981255,41.365122247],[-71.59491155,41.365141264],[-71.594825719,41.365155812],[-71.594756828,41.365170826],[-71.594665943,41.365196127],[-71.594598096,41.365219145],[-71.594537215,41.365272826],[-71.594498589,41.36532825],[-71.594441624,41.365361116],[-71.594375597,41.365383446],[-71.594316937,41.365419675],[-71.594250324,41.365456734],[-71.594181822,41.365489106],[-71.59411977,41.365530736],[-71.594053843,41.36555908],[-71.593980973,41.3655942],[-71.593922569,41.365639806],[-71.593844979,41.365664958],[-71.593761163,41.365688195],[-71.593679428,41.36572275],[-71.593608094,41.365749132],[-71.593539462,41.365776175],[-71.593457083,41.365785344],[-71.593395715,41.365818282],[-71.593319421,41.365858116],[-71.593219735,41.365886236],[-71.593123279,41.365902277],[-71.593052468,41.365912603],[-71.59297438,41.365950472],[-71.592900672,41.365952155],[-71.592820344,41.365973306],[-71.592758289,41.366014317],[-71.592679462,41.366024055],[-71.592601611,41.366036491],[-71.592539201,41.366062773],[-71.592463013,41.36607116],[-71.592400992,41.366114823],[-71.59231825,41.366146703],[-71.592236225,41.3661706],[-71.592163126,41.366195015],[-71.592086188,41.366209439],[-71.59201381,41.36622848],[-71.591945371,41.366263549],[-71.591862722,41.366297418],[-71.591793017,41.366317783],[-71.591700626,41.366353831],[-71.591616091,41.366384431],[-71.591534129,41.366410957],[-71.59145148,41.366444871],[-71.591359188,41.366486272],[-71.591291305,41.366507252],[-71.591221727,41.366531619],[-71.591145957,41.366557431],[-71.591064939,41.366585283],[-71.590992755,41.366613036],[-71.590920601,41.366641429],[-71.590847601,41.366671859],[-71.590763158,41.366704448],[-71.590683934,41.366734974],[-71.590613476,41.366760004],[-71.590542888,41.366779019],[-71.590465263,41.366802156],[-71.590378835,41.366826741],[-71.590303913,41.36685118],[-71.590231694,41.36687628],[-71.59015863,41.366904674],[-71.590073306,41.366937308],[-71.589988738,41.366967861],[-71.589912967,41.366993009],[-71.589835276,41.367012784],[-71.58974784,41.367033367],[-71.58965418,41.367053383],[-71.589575577,41.367072496],[-71.589497886,41.367092293],[-71.589414034,41.367113491],[-71.589316918,41.36713758],[-71.589235836,41.367164104],[-71.589164561,41.367192496],[-71.589096805,41.367218163],[-71.589020875,41.367238623],[-71.588950445,41.367262989],[-71.588856818,41.367284994],[-71.588756967,41.367307095],[-71.588678428,41.36732886],[-71.588591087,41.367352163],[-71.588511602,41.367371321],[-71.588433877,41.367389083],[-71.588353513,41.367408905],[-71.588261647,41.367430862],[-71.58818144,41.367454732],[-71.588112677,41.367477061],[-71.588043815,41.36749406],[-71.587948363,41.367514076],[-71.587875007,41.367530485],[-71.587777008,41.367553201],[-71.587677158,41.367575988],[-71.587598584,41.367595099],[-71.58751558,41.367616294],[-71.587442349,41.367635333],[-71.587369121,41.367656406],[-71.587289796,41.367681578],[-71.587200729,41.367708862],[-71.587124988,41.367735998],[-71.587040673,41.367775261],[-71.586962293,41.367803795],[-71.586857095,41.367823954],[-71.586784746,41.367844318],[-71.5867151,41.367866029],[-71.586645487,41.36788902],[-71.586578642,41.367916698],[-71.58651111,41.367952404],[-71.586434202,41.36796886],[-71.586374587,41.367999734],[-71.586296141,41.368024905],[-71.58623019,41.368016446],[-71.586175491,41.368069341],[-71.586094471,41.368098516],[-71.585822365,41.368171607],[-71.58580021,41.368177067],[-71.585724523,41.368199468],[-71.585657716,41.368233069],[-71.585598199,41.368269477],[-71.585520892,41.3682836],[-71.585464135,41.368317994],[-71.585392887,41.368345994],[-71.585322016,41.368359472],[-71.585233459,41.368383757],[-71.585155327,41.368394404],[-71.585054985,41.368414376],[-71.584959138,41.368435808],[-71.584867877,41.3684587],[-71.584771034,41.368484935],[-71.58467328,41.368511194],[-71.584584837,41.368529944],[-71.584493661,41.368548673],[-71.584421648,41.368571825],[-71.584333063,41.368598191],[-71.584253078,41.368608107],[-71.584166603,41.368622785],[-71.584077193,41.368645675],[-71.58398969,41.36866376],[-71.583907682,41.368681934],[-71.583839963,41.368716197],[-71.583756754,41.368745395],[-71.583680619,41.368750528],[-71.583664655,41.368754061],[-71.583589414,41.368770674],[-71.58350356,41.368796351],[-71.583435956,41.368825766],[-71.583356999,41.368832227],[-71.583285302,41.368842273],[-71.583195124,41.368858257],[-71.58311235,41.368870895],[-71.583039682,41.368881628],[-71.582937487,41.368901599],[-71.582862118,41.368912929],[-71.582787455,41.368929838],[-71.582700661,41.368957619],[-71.582607807,41.368970105],[-71.582536992,41.368981545],[-71.582462416,41.368995664],[-71.582371269,41.369014391],[-71.582283794,41.369031127],[-71.582188886,41.369052533],[-71.582092071,41.369078788],[-71.581999925,41.369099598],[-71.581902428,41.369114076],[-71.581801997,41.369137521],[-71.581710502,41.369169353],[-71.581618356,41.369190139],[-71.581515306,41.369207342],[-71.581438937,41.369220752],[-71.581353429,41.369233346],[-71.581282643,41.36924339],[-71.581182615,41.369249613],[-71.581110945,41.369257554],[-71.581026348,41.369270169],[-71.580939018,41.369282718],[-71.580863617,41.36929272],[-71.580791947,41.369300706],[-71.580705469,41.369314649],[-71.58062187,41.369324496],[-71.580536449,41.369333659],[-71.580454642,41.369344259],[-71.580369451,41.369343038],[-71.580280471,41.369347308],[-71.580189409,41.369361895],[-71.580123799,41.369384445],[-71.580084653,41.369448761],[-71.580063141,41.3694845],[-71.580055021,41.369498045],[-71.580120039,41.369536948],[-71.580172041,41.369582515],[-71.580217492,41.369633554],[-71.580265821,41.369679764],[-71.580315972,41.369726065],[-71.580370505,41.369779978],[-71.580432586,41.369825698],[-71.580502247,41.369861877],[-71.580574366,41.369873239],[-71.580624366,41.36987039],[-71.580651415,41.369868793],[-71.580742363,41.369860428],[-71.580825282,41.369840198],[-71.580896418,41.369817735],[-71.580986424,41.369807951],[-71.58107111,41.369793277],[-71.581144659,41.369782568],[-71.581220117,41.369768449],[-71.581310211,41.369756607],[-71.581403747,41.369753797],[-71.581484527,41.369747336],[-71.581579145,41.369736245],[-71.581669124,41.369729229],[-71.581742413,41.369729566],[-71.581838624,41.36972952],[-71.5819237,41.369734857],[-71.582008947,41.369731915],[-71.582107211,41.369722948],[-71.582183436,41.369715735],[-71.58226157,41.369705822],[-71.58233421,41.369696462],[-71.582429913,41.369678509],[-71.582516824,41.369647274],[-71.58258654,41.369606857],[-71.582649186,41.369593227],[-71.58272048,41.36959974],[-71.582806667,41.369596156],[-71.582911337,41.369587275],[-71.583013361,41.369574875],[-71.583104583,41.369590658],[-71.583192015,41.369611201],[-71.58326493,41.369627432],[-71.583335906,41.369646386],[-71.583422037,41.36964621],[-71.58345524,41.369637701],[-71.583531277,41.369602196],[-71.583593615,41.36956167],[-71.583661653,41.369515674],[-71.583665628,41.36951375],[-71.583724732,41.369484821],[-71.583794752,41.369469241],[-71.583885641,41.369462222],[-71.5839589,41.369462558],[-71.58403216,41.369463579],[-71.584109123,41.369464689],[-71.584205275,41.36946606],[-71.584307777,41.369470925],[-71.584411245,41.369472381],[-71.584508454,41.369469588],[-71.584579298,41.369457484],[-71.584656274,41.369420606],[-71.584709819,41.369366821],[-71.584735122,41.369306447],[-71.584782175,41.369256028],[-71.584861594,41.369230904],[-71.584952627,41.369218418],[-71.58502188,41.369197257],[-71.585094919,41.369168661],[-71.585176507,41.369130475],[-71.585257777,41.369104663],[-71.585352338,41.369097709],[-71.585426277,41.369107717],[-71.585505147,41.369104022],[-71.585568196,41.369074541],[-71.585632039,41.36904849],[-71.58564864,41.369044589],[-71.585807275,41.368978924],[-71.585897451,41.368961681],[-71.585976379,41.368956568],[-71.586066489,41.3689353],[-71.586153144,41.368918722],[-71.586230251,41.368913656],[-71.586323033,41.368893003],[-71.58638122,41.368837338],[-71.58642008,41.368791317],[-71.586456235,41.368742644],[-71.586500996,41.368682484],[-71.586573187,41.368656769],[-71.586644625,41.368635057],[-71.586706749,41.368595421],[-71.586794617,41.368556086],[-71.586854134,41.368519151],[-71.586921506,41.368476767],[-71.586988028,41.368435069],[-71.587057642,41.368412032],[-71.587130121,41.368396974],[-71.587200582,41.368371946],[-71.587296756,41.368345892],[-71.587375748,41.368343477],[-71.587472532,41.368342168],[-71.587579157,41.368344077],[-71.587679462,41.36834272],[-71.587761524,41.368320175],[-71.587833165,41.368269691],[-71.587896361,41.368238082],[-71.58799748,41.368232035],[-71.588086377,41.368235489],[-71.588175209,41.36823629],[-71.588250232,41.368217227],[-71.588320369,41.368177448],[-71.588393866,41.368130964],[-71.588464822,41.36809052],[-71.588536947,41.368061442],[-71.588606462,41.368033738],[-71.588678489,41.367999972],[-71.588760421,41.367972121],[-71.588836225,41.367947637],[-71.588920893,41.367922436],[-71.588991686,41.367874651],[-71.589069539,41.367860869],[-71.589140869,41.367872614],[-71.589218102,41.367872212],[-71.589309444,41.367865623],[-71.589411088,41.367844869],[-71.589517034,41.367817342],[-71.589615848,41.367791238],[-71.589704948,41.367765966],[-71.589781567,41.367738804],[-71.589846649,41.367711172],[-71.589910401,41.367665472],[-71.589948016,41.36764287],[-71.590040033,41.367664365],[-71.590145454,41.367652915],[-71.590220345,41.367627127],[-71.590294293,41.367600037],[-71.590372834,41.367579552],[-71.590467276,41.367554183],[-71.590544774,41.367526403],[-71.590620416,41.367495239],[-71.590697819,41.367464074],[-71.590770629,41.36742699],[-71.590841806,41.367394572],[-71.590929176,41.367370626],[-71.591006117,41.367357506],[-71.591092825,41.367381108],[-71.591172921,41.36738738],[-71.591234473,41.36739792],[-71.591293636,41.367458],[-71.591326014,41.367512406],[-71.591329321,41.367575938],[-71.591253057,41.367617805],[-71.591192988,41.367670158],[-71.591159305,41.367746206],[-71.591134034,41.367802762],[-71.591109676,41.367861307],[-71.591080039,41.367921891],[-71.591043331,41.367984631],[-71.591000366,41.368044769],[-71.590956617,41.368109596],[-71.590918246,41.368177048],[-71.590900112,41.368235451],[-71.590875592,41.368286677],[-71.590796161,41.368344602],[-71.59073873,41.368394894],[-71.590689252,41.368443739],[-71.590640223,41.368510651],[-71.590640461,41.368594928],[-71.590640312,41.368662534],[-71.590640067,41.368726114],[-71.590622286,41.368799268],[-71.590576025,41.368870157],[-71.590563139,41.36892588],[-71.59056358,41.368981409],[-71.590592407,41.369035864],[-71.590611155,41.36911322],[-71.590633168,41.369180487],[-71.590675772,41.369252862],[-71.590702806,41.369306678],[-71.590698128,41.36937033],[-71.590703132,41.369431825],[-71.590708489,41.369507316],[-71.590719683,41.369566084],[-71.590722797,41.369622892],[-71.590721083,41.369699876],[-71.590673095,41.369773442],[-71.59061579,41.369828399],[-71.590558388,41.369878028],[-71.590510667,41.369925544],[-71.590472786,41.369975546],[-71.590438587,41.37003156],[-71.590407124,41.370090202],[-71.590388828,41.370142612],[-71.590327584,41.370180923],[-71.590304245,41.370208683],[-71.590294286,41.370274375],[-71.590234212,41.370324691],[-71.59022976,41.370398361],[-71.590232058,41.370457182],[-71.590233347,41.370511407],[-71.590214268,41.370568506],[-71.590157778,41.370620147],[-71.590117718,41.370653455],[-71.590035892,41.370649882],[-71.589960939,41.370633497],[-71.589883974,41.370610458],[-71.589830844,41.370654708],[-71.589775426,41.370713643],[-71.589704278,41.370748073],[-71.589625798,41.370771873],[-71.589544184,41.370812486],[-71.589484173,41.370865501],[-71.589481224,41.37092906],[-71.589472993,41.370993401],[-71.589451659,41.371066626],[-71.589474422,41.371127879],[-71.58954379,41.371167116],[-71.589585246,41.371155146],[-71.589626746,41.371108435],[-71.589677729,41.371047537],[-71.589720796,41.370992728],[-71.589753666,41.370918671],[-71.589796923,41.3708699],[-71.589869738,41.370832816],[-71.589929939,41.370786502],[-71.589998118,41.370778238],[-71.590068755,41.37083545],[-71.590109868,41.37088308],[-71.590150948,41.370928698],[-71.590194241,41.370993685],[-71.590189832,41.371032545],[-71.590128404,41.371026692],[-71.590057757,41.371006233],[-71.589993035,41.371011109],[-71.589943874,41.371072006],[-71.589934045,41.371144376],[-71.589961927,41.371196202],[-71.589964192,41.371253696],[-71.589935754,41.371327041],[-71.589900085,41.371396435],[-71.589863996,41.371447785],[-71.589817151,41.371493219],[-71.589764769,41.371530745],[-71.589712453,41.37157161],[-71.589649052,41.371632677],[-71.589612017,41.371680711],[-71.589577849,41.371738715],[-71.589549153,41.371801311],[-71.589530137,41.371860446],[-71.589504735,41.371912313],[-71.589493112,41.37198274],[-71.589524289,41.372024454],[-71.589486341,41.37207114],[-71.589396689,41.372074366],[-71.589317982,41.372088812],[-71.589258432,41.372124399],[-71.589225174,41.372181738],[-71.589226464,41.372237267],[-71.589262135,41.372278909],[-71.589353872,41.372290388],[-71.589440958,41.372253727],[-71.589505918,41.372221406],[-71.589555938,41.372232757],[-71.589627466,41.372252576],[-71.589713934,41.372229958],[-71.589781908,41.37224843],[-71.589843521,41.372299795],[-71.589890527,41.372371411],[-71.589895432,41.372427555],[-71.589888446,41.372469825],[-71.589807421,41.372498339],[-71.589742302,41.372524668],[-71.589694608,41.372572116],[-71.589721675,41.372626618],[-71.589764871,41.372686916],[-71.589762963,41.372756536],[-71.589758155,41.372815499],[-71.589738162,41.37287061],[-71.589703446,41.372905217],[-71.589622334,41.372893616],[-71.589557266,41.372846966],[-71.589507352,41.372802819],[-71.589486295,41.372813127],[-71.589459457,41.37288041],[-71.589419286,41.372945187],[-71.589386318,41.373015242],[-71.589375352,41.373077619],[-71.589363535,41.373139309],[-71.589364824,41.373194152],[-71.589364707,41.373263747],[-71.589330795,41.37333179],[-71.589295616,41.373383802],[-71.589256197,41.373443204],[-71.589213163,41.373501992],[-71.589170909,41.373553437],[-71.589096859,41.373577166],[-71.589014438,41.373585646],[-71.588917389,41.373576252],[-71.588812278,41.373599753],[-71.588725778,41.373623033],[-71.588641919,41.37364558],[-71.588571421,41.373669945],[-71.588498346,41.373696348],[-71.588425699,41.373703357],[-71.5883543,41.373689598],[-71.588331001,41.373681222],[-71.588321793,41.37363048],[-71.588277759,41.373645814],[-71.588278232,41.373703378],[-71.588206231,41.373739111],[-71.588142149,41.373770768],[-71.588068495,41.373773111],[-71.588003222,41.373754567],[-71.58799571,41.373700507],[-71.588005478,41.373626742],[-71.588004094,41.373568584],[-71.588000102,41.373512417],[-71.587969131,41.373443258],[-71.587966772,41.373382401],[-71.587965357,41.373323556],[-71.587963061,41.373264689],[-71.58793651,41.373230953],[-71.587892186,41.373234189],[-71.587845307,41.373279005],[-71.587786045,41.37332733],[-71.587748354,41.373386021],[-71.587714312,41.373448735],[-71.587664986,41.373502907],[-71.587591783,41.373524644],[-71.587530405,41.373557601],[-71.587469715,41.373583171],[-71.587432936,41.373642548],[-71.587459282,41.373704438],[-71.587456566,41.373739912],[-71.587387954,41.373766952],[-71.587290218,41.373766248],[-71.58720797,41.373745293],[-71.587135334,41.373714816],[-71.587057903,41.373708516],[-71.586972853,41.373680884],[-71.586931353,41.373616535],[-71.586930595,41.373548313],[-71.586946715,41.373478523],[-71.586952469,41.373422235],[-71.586953791,41.373366041],[-71.586952087,41.373294435],[-71.586950382,41.373222851],[-71.586965,41.373165161],[-71.586995623,41.373110523],[-71.587023603,41.373054629],[-71.587057645,41.372991252],[-71.587114364,41.372949014],[-71.587158633,41.372904886],[-71.587209032,41.372858055],[-71.587275945,41.372832389],[-71.587343482,41.372796705],[-71.58735031,41.37274913],[-71.587287883,41.372701103],[-71.587217042,41.372672615],[-71.58717185,41.372639098],[-71.587199572,41.372572478],[-71.587238273,41.372519755],[-71.587278703,41.372465704],[-71.587320955,41.37241227],[-71.587377706,41.372370717],[-71.587446346,41.372343014],[-71.587532737,41.372353194],[-71.587623851,41.372375401],[-71.587701893,41.372407818],[-71.587756494,41.372461888],[-71.58779327,41.372513593],[-71.587834512,41.372566552],[-71.587899256,41.372599802],[-71.587959956,41.372650528],[-71.58801574,41.372679874],[-71.588066716,41.372657102],[-71.588117113,41.372609584],[-71.588133556,41.37255514],[-71.588118875,41.372498501],[-71.588084274,41.3724615],[-71.587997273,41.372427192],[-71.587913791,41.372390206],[-71.587843477,41.372347652],[-71.5877963,41.372305469],[-71.587773507,41.372244239],[-71.58777222,41.372190037],[-71.587770804,41.372130529],[-71.587772974,41.37207294],[-71.587762533,41.372008201],[-71.587730049,41.371987208],[-71.587653102,41.372000966],[-71.587573257,41.372004069],[-71.587500163,41.371992986],[-71.587419675,41.371970017],[-71.587379476,41.371923689],[-71.587338331,41.371874091],[-71.587295459,41.371827171],[-71.58725014,41.371788966],[-71.587217343,41.371829563],[-71.587216247,41.371895179],[-71.587190285,41.371961066],[-71.587149858,41.372017129],[-71.587084241,41.372057499],[-71.587006383,41.37207128],[-71.586925928,41.372049614],[-71.586869522,41.372030972],[-71.586826421,41.372085756],[-71.586790491,41.372144469],[-71.586747452,41.372199939],[-71.586704417,41.372258703],[-71.586660469,41.372315501],[-71.586632457,41.372370091],[-71.586646449,41.372435444],[-71.586691016,41.372478339],[-71.586747153,41.3725231],[-71.58678468,41.372569407],[-71.586818098,41.372630492],[-71.58683033,41.372695915],[-71.586800729,41.372720409],[-71.586713557,41.372716906],[-71.586649648,41.372718441],[-71.586642597,41.372758676],[-71.586661869,41.372821303],[-71.586666245,41.372892839],[-71.586681182,41.372960867],[-71.58667738,41.373024519],[-71.586664457,41.373078869],[-71.586679523,41.373152295],[-71.586687128,41.373209008],[-71.586700434,41.373283121],[-71.586714779,41.373362539],[-71.5867205,41.373417996],[-71.586722329,41.373492255],[-71.586703247,41.37355004],[-71.586696999,41.37362307],[-71.58668678,41.373678767],[-71.586666386,41.373753958],[-71.586669754,41.373821515],[-71.586686676,41.373897524],[-71.586677852,41.373974581],[-71.586656129,41.374032437],[-71.586593056,41.374070083],[-71.586527213,41.374102426],[-71.586458459,41.374160248],[-71.586404013,41.37422451],[-71.586378083,41.374292454],[-71.586367209,41.374358169],[-71.586368032,41.374429113],[-71.586367031,41.374498686],[-71.586349868,41.374561798],[-71.586310986,41.374570358],[-71.586240079,41.374539239],[-71.586158182,41.374531638],[-71.586083216,41.374553376],[-71.586013757,41.374584463],[-71.585934746,41.374624317],[-71.585861999,41.374717454],[-71.585845931,41.374735854],[-71.585825155,41.37479906],[-71.585792764,41.374848988],[-71.585770136,41.374912173],[-71.585766785,41.374973514],[-71.585743273,41.375033932],[-71.58571256,41.375090788],[-71.585648191,41.375136829],[-71.585570166,41.375141941],[-71.585485459,41.37512213],[-71.585402009,41.375088503],[-71.585326903,41.375050183],[-71.585246012,41.375023507],[-71.58517782,41.375001853],[-71.585130457,41.375026749],[-71.585166153,41.375065876],[-71.585224714,41.375105353],[-71.585269435,41.375150146],[-71.58530723,41.375214865],[-71.585340412,41.375280913],[-71.585376645,41.375335226],[-71.585388103,41.37539061],[-71.585369264,41.375449035],[-71.585352983,41.375513679],[-71.585377342,41.375566469],[-71.585420921,41.375619542],[-71.585486685,41.375664616],[-71.585534227,41.375705999],[-71.585531886,41.375726676],[-71.585502256,41.375776647],[-71.585492411,41.375840715],[-71.585474424,41.375900534],[-71.585452792,41.375960219],[-71.585427258,41.376030268],[-71.585441391,41.376087777],[-71.585438951,41.376149186],[-71.585423786,41.376207608],[-71.585395863,41.376262426],[-71.585333142,41.376316081],[-71.585267411,41.376343437],[-71.585189835,41.376367875],[-71.585095942,41.376383816],[-71.585010861,41.376380563],[-71.584956883,41.376339802],[-71.584911422,41.37628808],[-71.584828275,41.376277941],[-71.584765075,41.376313642],[-71.584718,41.376327468],[-71.584644474,41.376338157],[-71.584573218,41.376366157],[-71.584492648,41.376400247],[-71.584416415,41.37640673],[-71.584332154,41.376404893],[-71.584257181,41.376399688],[-71.584188889,41.376419429],[-71.584135737,41.376382784],[-71.584095773,41.376331126],[-71.584069853,41.376267954],[-71.58402775,41.376228716],[-71.583956015,41.376238763],[-71.583902751,41.376280815],[-71.583876475,41.376342538],[-71.583875972,41.376399829],[-71.583893749,41.376458754],[-71.583934595,41.37651176],[-71.583984812,41.376555978],[-71.584047221,41.376589255],[-71.584111393,41.376623994],[-71.58418183,41.376666413],[-71.584212451,41.376725511],[-71.584229087,41.376793355],[-71.584231029,41.376863086],[-71.584220474,41.376918852],[-71.584192377,41.376981263],[-71.584128207,41.377019023],[-71.584093961,41.377069615],[-71.584064952,41.377130609],[-71.584072767,41.377186658],[-71.584075677,41.377253621],[-71.584072123,41.377323287],[-71.584068944,41.377377767],[-71.584060269,41.377431519],[-71.584053272,41.377492108],[-71.584048951,41.377555553],[-71.584039336,41.377610655],[-71.584013885,41.377676541],[-71.583979696,41.377724365],[-71.58394263,41.377778366],[-71.583881672,41.377834787],[-71.58380139,41.377858516],[-71.583730131,41.377885807],[-71.583676579,41.37791743],[-71.583665049,41.377924231],[-71.58360902,41.377965552],[-71.583573603,41.378026482],[-71.583550972,41.37808969],[-71.583579032,41.378140419],[-71.583626489,41.378185965],[-71.583625131,41.378240467],[-71.583600544,41.37827049],[-71.583571573,41.378219693],[-71.583529048,41.378160421],[-71.583509536,41.378098754],[-71.583517271,41.378045025],[-71.583527001,41.377984412],[-71.583552425,41.377920584],[-71.583599282,41.37787776],[-71.58367083,41.377838759],[-71.583676468,41.377831254],[-71.583706841,41.377790934],[-71.583727506,41.37773324],[-71.583709238,41.377694373],[-71.583676285,41.377688336],[-71.583635345,41.377680865],[-71.583589814,41.377668502],[-71.583546062,41.377622358],[-71.583508181,41.377561779],[-71.583474595,41.377510917],[-71.583425375,41.377463313],[-71.583361998,41.377432736],[-71.583332345,41.377371556],[-71.583318271,41.377311302],[-71.583316243,41.377245025],[-71.583318829,41.377177441],[-71.583314097,41.377109725],[-71.583345016,41.377045299],[-71.583379348,41.376991232],[-71.583425555,41.376938756],[-71.583483521,41.376892607],[-71.583541572,41.376842387],[-71.583593504,41.376779593],[-71.583604942,41.376725245],[-71.583560047,41.376687358],[-71.583473735,41.376695768],[-71.583411561,41.376727375],[-71.583348071,41.376774762],[-71.583282614,41.376827],[-71.583227642,41.376863496],[-71.58316985,41.376903401],[-71.583115589,41.376949569],[-71.583043841,41.376997558],[-71.582957947,41.377024653],[-71.582875103,41.377039349],[-71.582791235,41.377059582],[-71.582711575,41.377094333],[-71.582682651,41.377151942],[-71.582705388,41.377195722],[-71.582782664,41.377220962],[-71.582843958,41.377260506],[-71.582866436,41.377315334],[-71.582876896,41.377374812],[-71.582885532,41.37743292],[-71.582881382,41.377488772],[-71.582888877,41.377556509],[-71.582915911,41.377612111],[-71.582886162,41.377666198],[-71.582866494,41.377720438],[-71.582829064,41.377750997],[-71.582768596,41.377787427],[-71.582719827,41.377832266],[-71.582688373,41.377882214],[-71.582651333,41.377933494],[-71.582574161,41.377943406],[-71.582515282,41.377988824],[-71.58246825,41.378037869],[-71.582394373,41.378060952],[-71.58231863,41.378048862],[-71.582248612,41.378025813],[-71.582201216,41.377978917],[-71.582145707,41.377927727],[-71.582086147,41.377890307],[-71.582021091,41.3778528],[-71.581951392,41.377817995],[-71.581882374,41.377792864],[-71.581819083,41.377758169],[-71.581765959,41.37772015],[-71.581727995,41.377736896],[-71.581689872,41.377723246],[-71.581654076,41.37772549],[-71.581607475,41.377683441],[-71.581632091,41.377651314],[-71.581694381,41.377614242],[-71.581757352,41.377587508],[-71.581835235,41.377587224],[-71.5819012,41.377550881],[-71.581941768,41.377504517],[-71.581966137,41.377445517],[-71.581974164,41.377381451],[-71.581958238,41.377321198],[-71.581918333,41.377266772],[-71.581873729,41.377218524],[-71.58184029,41.377162836],[-71.581898648,41.37713814],[-71.581923725,41.377087418],[-71.58192517,41.377028754],[-71.581900551,41.376985615],[-71.58181635,41.376982359],[-71.581802265,41.377033919],[-71.581780686,41.377090219],[-71.581743141,41.377126289],[-71.581690756,41.377095177],[-71.581638095,41.377038518],[-71.581576006,41.376992799],[-71.581518372,41.376989203],[-71.581496057,41.377039991],[-71.581494699,41.377095179],[-71.581489405,41.377159974],[-71.58151359,41.377220381],[-71.581529456,41.377282692],[-71.581516107,41.377339786],[-71.581453902,41.377372077],[-71.58147191,41.377422723],[-71.581437561,41.377440838],[-71.581360733,41.377434237],[-71.581267215,41.377436361],[-71.581196015,41.377462987],[-71.581115934,41.377477063],[-71.581037573,41.377459371],[-71.580971376,41.377430829],[-71.580892306,41.377404195],[-71.580846112,41.37741939],[-71.580803954,41.37745814],[-71.58073145,41.377461987],[-71.580671835,41.377501846],[-71.580605782,41.377540933],[-71.580585968,41.377527544],[-71.580530082,41.377489504],[-71.580464146,41.377451288],[-71.58038434,41.37741841],[-71.580296869,41.377399237],[-71.580217164,41.377398126],[-71.580227663,41.377343756],[-71.580233753,41.377283785],[-71.5802352,41.377225145],[-71.580195977,41.377181101],[-71.580136244,41.377150587],[-71.580136347,41.377110541],[-71.580205812,41.377080509],[-71.580278039,41.377049058],[-71.580334574,41.377022946],[-71.580413368,41.377024057],[-71.580485841,41.377020233],[-71.580524355,41.376982127],[-71.580553397,41.376919762],[-71.580587847,41.376860869],[-71.580652163,41.376816227],[-71.580713746,41.376772226],[-71.580767273,41.376720502],[-71.580799308,41.376721668],[-71.580851403,41.376763828],[-71.580925685,41.376799339],[-71.580991967,41.376823055],[-71.581068446,41.376842098],[-71.581149655,41.376856358],[-71.581228941,41.376837456],[-71.58129664,41.376804589],[-71.581352814,41.376757048],[-71.581394582,41.376698287],[-71.581442697,41.376641008],[-71.58148691,41.376596036],[-71.581491942,41.376540229],[-71.581464,41.376485337],[-71.581420537,41.376426727],[-71.58141922,41.376368729],[-71.581423602,41.376303202],[-71.581447971,41.376244202],[-71.5814831,41.376195005],[-71.581540155,41.376148218],[-71.581616879,41.376121656],[-71.581692055,41.37611927],[-71.581761431,41.376092646],[-71.581765003,41.376059549],[-71.581788172,41.37601226],[-71.581844084,41.375975078],[-71.581908428,41.375930435],[-71.581972453,41.375898188],[-71.582043361,41.375882631],[-71.582115182,41.375868492],[-71.582178238,41.375838281],[-71.582187913,41.375781166],[-71.58220427,41.375750325],[-71.582262798,41.375717327],[-71.582331755,41.375671377],[-71.582377789,41.375626449],[-71.582418498,41.375572514],[-71.582450156,41.375515658],[-71.582470907,41.375454534],[-71.582476112,41.375392482],[-71.582476819,41.375326935],[-71.58246756,41.375256386],[-71.582452777,41.375187191],[-71.582437084,41.375118636],[-71.582421535,41.375043861],[-71.582402311,41.374968356],[-71.582376365,41.374906556],[-71.582344835,41.374847481],[-71.582327116,41.374785812],[-71.582308691,41.374717214],[-71.582299086,41.374660479],[-71.582304493,41.374590835],[-71.582316104,41.374528207],[-71.582317462,41.374473706],[-71.582308118,41.37440732],[-71.582272973,41.374346761],[-71.582223135,41.374287379],[-71.582156911,41.374260279],[-71.582086032,41.374273069],[-71.582044728,41.374312504],[-71.582029705,41.374365414],[-71.582044719,41.374425713],[-71.582084503,41.374482152],[-71.582134689,41.374527719],[-71.582154258,41.374588701],[-71.582145495,41.37464657],[-71.582107635,41.374695722],[-71.582062312,41.374750347],[-71.582020574,41.374807026],[-71.581978808,41.374865788],[-71.581939805,41.374923906],[-71.581916202,41.374987778],[-71.581899066,41.375051004],[-71.581891127,41.375112348],[-71.581887542,41.3751827],[-71.581900703,41.375242909],[-71.581952915,41.375281614],[-71.582027888,41.37528817],[-71.582102095,41.375288529],[-71.582172109,41.375310915],[-71.582210277,41.375360448],[-71.582215036,41.375426769],[-71.5821606,41.375478472],[-71.582092671,41.375520305],[-71.58202195,41.375564152],[-71.581943999,41.375604483],[-71.581864108,41.375648199],[-71.581776249,41.375680784],[-71.581688505,41.375708542],[-71.581619042,41.375738643],[-71.581569046,41.375796587],[-71.581558432,41.375855806],[-71.581539472,41.375917638],[-71.581499816,41.375964711],[-71.581427402,41.375965814],[-71.58138906,41.375922479],[-71.581368754,41.375855208],[-71.581365731,41.375792362],[-71.581366323,41.375731618],[-71.581374088,41.375676518],[-71.581389143,41.37562363],[-71.581410692,41.375567994],[-71.581447962,41.375507109],[-71.581496755,41.375458795],[-71.581541907,41.375411787],[-71.581564656,41.37534515],[-71.581546766,41.375291074],[-71.581477098,41.375254233],[-71.581403471,41.37523178],[-71.581323464,41.375205788],[-71.58125348,41.375182715],[-71.581171853,41.375148444],[-71.581138387,41.375094836],[-71.581115117,41.375035847],[-71.581101782,41.374981813],[-71.581087651,41.374923641],[-71.581066174,41.374866045],[-71.58101881,41.374817753],[-71.580956664,41.374773406],[-71.580884323,41.374735125],[-71.580800762,41.374707053],[-71.580703241,41.37468496],[-71.580606836,41.374656669],[-71.580525889,41.374631385],[-71.580436859,41.374600435],[-71.580365994,41.374576653],[-71.580285049,41.374552078],[-71.580222529,41.374524266],[-71.580158736,41.374473698],[-71.580115898,41.374426843],[-71.580080466,41.374377307],[-71.580037861,41.374322196],[-71.579983974,41.374277957],[-71.57989742,41.374259492],[-71.579810906,41.374274852],[-71.579736657,41.374313143],[-71.579666759,41.374359756],[-71.579591685,41.374393907],[-71.579519635,41.374418429],[-71.579460786,41.374463135],[-71.579414694,41.374510806],[-71.579364639,41.374571539],[-71.579319312,41.374624744],[-71.579282245,41.374678744],[-71.579244006,41.374743059],[-71.579201355,41.374800448],[-71.579158881,41.374827922],[-71.579132456,41.374845047],[-71.579094855,41.37480928],[-71.579069677,41.374753036],[-71.579012768,41.374719799],[-71.578935583,41.374691813],[-71.57887597,41.37465645],[-71.578822142,41.374610129],[-71.578774865,41.374557696],[-71.578744454,41.374491713],[-71.57876236,41.374434684],[-71.578821945,41.374396884],[-71.578877857,41.374359018],[-71.578920683,41.374296095],[-71.578946138,41.374230234],[-71.578962568,41.374158661],[-71.578960632,41.374088953],[-71.578940213,41.374025821],[-71.57891683,41.373971657],[-71.578867441,41.373930227],[-71.578785471,41.37391114],[-71.578696484,41.373914723],[-71.578633573,41.373938666],[-71.578603738,41.37399831],[-71.578568463,41.374053017],[-71.578502442,41.374092148],[-71.578432444,41.37410633],[-71.578362214,41.374129499],[-71.578296904,41.374103037],[-71.578233055,41.374054504],[-71.578175845,41.373997778],[-71.578132302,41.373943353],[-71.57813187,41.373886749],[-71.578153682,41.373820798],[-71.578201943,41.373757986],[-71.578274777,41.373703779],[-71.578355665,41.373656611],[-71.578421858,41.373609933],[-71.578461948,41.373544245],[-71.578441359,41.373490101],[-71.578401575,41.37343158],[-71.5783637,41.373369627],[-71.578318509,41.373308273],[-71.578271147,41.373259271],[-71.578206778,41.373232122],[-71.578120223,41.373211574],[-71.578045211,41.373170481],[-71.57799529,41.373114597],[-71.57795101,41.373053242],[-71.577912428,41.372982965],[-71.577880196,41.37291696],[-71.577854137,41.372858612],[-71.577795901,41.372805317],[-71.577723664,41.372799488],[-71.577652177,41.372837113],[-71.577616787,41.372897355],[-71.577605286,41.372953784],[-71.577626789,41.373010671],[-71.577621521,41.373074803],[-71.577643993,41.373128945],[-71.57768301,41.373181933],[-71.577736922,41.373224802],[-71.577802997,41.373256821],[-71.577876913,41.373269602],[-71.577969484,41.373268121],[-71.577988341,41.373320848],[-71.577980602,41.373374553],[-71.577960959,41.373426734],[-71.577920189,41.373482062],[-71.577850524,41.37352044],[-71.577780033,41.373553947],[-71.577711278,41.373591661],[-71.577629741,41.373629819],[-71.577579688,41.373615307],[-71.577580254,41.373555271],[-71.577599189,41.373494789],[-71.577645193,41.373449223],[-71.577695812,41.373403013],[-71.577709106,41.373347978],[-71.577648874,41.373301569],[-71.577571113,41.37329771],[-71.577499741,41.373330509],[-71.577422815,41.373365324],[-71.577349186,41.373414659],[-71.577289455,41.373457993],[-71.577234223,41.373506241],[-71.577183401,41.373560707],[-71.577102354,41.373576816],[-71.577013427,41.373579003],[-71.576924905,41.373564654],[-71.576853625,41.373520859],[-71.576787723,41.373481291],[-71.576734838,41.373433595],[-71.576687507,41.373384616],[-71.57665578,41.373333773],[-71.576665719,41.373265589],[-71.576664523,41.373203474],[-71.576699886,41.373144605],[-71.576757893,41.373132307],[-71.57682796,41.373151952],[-71.576882958,41.3731886],[-71.576947848,41.373195074],[-71.577001909,41.373157851],[-71.57703545,41.373099646],[-71.577034991,41.37304446],[-71.577027328,41.372983606],[-71.577030542,41.372928418],[-71.577065963,41.372867513],[-71.577082899,41.372811126],[-71.577061717,41.372742528],[-71.577022312,41.372668775],[-71.576990167,41.372598607],[-71.57697069,41.372534171],[-71.576951301,41.372466944],[-71.57694646,41.372403391],[-71.576969009,41.372343661],[-71.577022534,41.372291274],[-71.577029624,41.372227187],[-71.577010973,41.372167553],[-71.577001692,41.372098399],[-71.57706048,41.372055065],[-71.577141886,41.372061072],[-71.577209898,41.372089614],[-71.577275915,41.372125065],[-71.577289159,41.372181843],[-71.577283979,41.372243185],[-71.577314591,41.372301576],[-71.577374258,41.3723328],[-71.57746019,41.372340907],[-71.577525096,41.372310079],[-71.577577363,41.372271508],[-71.577644468,41.372226179],[-71.577719005,41.37217547],[-71.57777762,41.37213973],[-71.577839909,41.372104033],[-71.577895819,41.372066167],[-71.577964066,41.372011232],[-71.578026732,41.371961034],[-71.578078405,41.371908603],[-71.57811741,41.371850485],[-71.578160118,41.371791085],[-71.57821211,41.37172692],[-71.578238332,41.37166792],[-71.578235485,41.37159748],[-71.57822817,41.371523545],[-71.578213364,41.371455699],[-71.578189186,41.371395977],[-71.57815866,41.371334133],[-71.578168539,41.371268008],[-71.578184623,41.371210958],[-71.578151998,41.371196709],[-71.57810734,41.371223658],[-71.578071241,41.371274935],[-71.578005557,41.371263636],[-71.577955407,41.37121738],[-71.577888595,41.371176419],[-71.577817649,41.371156775],[-71.577745355,41.371152982],[-71.57767416,41.371178919],[-71.577642878,41.371221251],[-71.577641458,41.37127781],[-71.57765288,41.37133459],[-71.577690073,41.371386207],[-71.577711373,41.371451373],[-71.577671124,41.371485317],[-71.577616658,41.371537704],[-71.57757521,41.371584068],[-71.577516538,41.37162253],[-71.577446572,41.371636048],[-71.577366902,41.371634226],[-71.577290054,41.371629681],[-71.57721173,41.371610659],[-71.577149155,41.37158424],[-71.577082259,41.371548767],[-71.577031285,41.371499035],[-71.576988538,41.371448771],[-71.576947701,41.371395716],[-71.576910712,41.371335843],[-71.576886623,41.3712734],[-71.576871586,41.371214519],[-71.576861957,41.371159156],[-71.576857854,41.37110388],[-71.576861719,41.371085833],[-71.576870264,41.371046124],[-71.576921116,41.370992299],[-71.57698852,41.370969772],[-71.577069302,41.370963314],[-71.57715775,41.370943861],[-71.577217536,41.370897782],[-71.577278234,41.370852389],[-71.577291759,41.37078768],[-71.577292268,41.370730412],[-71.577294571,41.370675246],[-71.577339559,41.370670368],[-71.577405834,41.370694086],[-71.577473729,41.370727477],[-71.577545182,41.370765027],[-71.577622896,41.370808932],[-71.577703373,41.370852172],[-71.577781261,41.370888506],[-71.577852352,41.370903255],[-71.577922462,41.370883585],[-71.577910722,41.370840596],[-71.57784861,41.370794852],[-71.577780947,41.370752495],[-71.577714138,41.370713592],[-71.577659142,41.370677608],[-71.577645232,41.370647749],[-71.577720128,41.37061911],[-71.577800736,41.370620268],[-71.577880405,41.370622752],[-71.577963746,41.370623931],[-71.578056431,41.37061902],[-71.57814288,41.37060437],[-71.578225037,41.370580689],[-71.578289202,41.370541582],[-71.578360919,41.370494969],[-71.578439837,41.370453977],[-71.578522136,41.370422017],[-71.578599766,41.370395502],[-71.578681343,41.370394578],[-71.578763396,41.37041092],[-71.578834343,41.370431935],[-71.578906909,41.370460542],[-71.578984061,41.370490632],[-71.579071407,41.370515318],[-71.57915093,41.370522673],[-71.57923686,41.370530779],[-71.579312652,41.370541499],[-71.579397351,41.370560652],[-71.579486044,41.370568801],[-71.579566565,41.370573388],[-71.579644468,41.37057171],[-71.579730948,41.370557745],[-71.57980658,41.370536743],[-71.579877659,41.370515653],[-71.579945382,41.370482078],[-71.579995115,41.370435159],[-71.580017574,41.370378882],[-71.580016317,41.370319534],[-71.580005008,41.370257952],[-71.580005572,41.370197893],[-71.580038413,41.37016592],[-71.580106194,41.370129601],[-71.580166658,41.37009388],[-71.580209275,41.370037864],[-71.580198791,41.369980443],[-71.580148582,41.369936293],[-71.580083362,41.369906355],[-71.580006269,41.369874207],[-71.579928324,41.369840664],[-71.579856958,41.369799638],[-71.57980445,41.369737467],[-71.579770424,41.369669359],[-71.579728905,41.369605945],[-71.579684597,41.369545964],[-71.579649573,41.369480601],[-71.579592191,41.369429388],[-71.579505556,41.369413713],[-71.57942398,41.369414639],[-71.579330388,41.369420924],[-71.579249492,41.369432186],[-71.579169449,41.369445552],[-71.579076534,41.369459407],[-71.578977332,41.369471139],[-71.578895525,41.369481715],[-71.578826385,41.369498001],[-71.578755307,41.369519113],[-71.578679559,41.369544231],[-71.578579748,41.369580092],[-71.57849671,41.369602424],[-71.578411346,41.369608795],[-71.57832504,41.369615166],[-71.578233154,41.369626961],[-71.578163869,41.369649467],[-71.578101381,41.369694152],[-71.578035206,41.369702156],[-71.577948134,41.369703016],[-71.577862093,41.369701793],[-71.577786981,41.369700746],[-71.577712779,41.369699698],[-71.577622353,41.369688073],[-71.577548599,41.369705664],[-71.577476697,41.3697233],[-71.57739116,41.369737949],[-71.577294659,41.3697497],[-71.577213821,41.369758217],[-71.577143003,41.369768304],[-71.577068571,41.369778257],[-71.576986027,41.369781926],[-71.576908211,41.369779462],[-71.576814053,41.369769828],[-71.576737061,41.369770817],[-71.576654373,41.369781416],[-71.576571653,41.369791259],[-71.576491522,41.369808077],[-71.576404927,41.369826865],[-71.576332403,41.369832745],[-71.576264088,41.369854563],[-71.576180789,41.369887918],[-71.576103925,41.369920628],[-71.57602171,41.369947075],[-71.575927651,41.369970602],[-71.575826364,41.369991938],[-71.575735068,41.370015486],[-71.575654026,41.370032281],[-71.575564668,41.370051734],[-71.575494558,41.370071425],[-71.57542439,41.370092535],[-71.575329421,41.370116726],[-71.575254494,41.370144654],[-71.575174129,41.370170436],[-71.575081836,41.37019881],[-71.57499307,41.370231389],[-71.574919315,41.370249002],[-71.57484053,41.370249236],[-71.574737739,41.370256759],[-71.574640239,41.370271939],[-71.57455905,41.370293582],[-71.574487797,41.370322925],[-71.574395385,41.37035338],[-71.574322687,41.370366875],[-71.574220603,41.370382652],[-71.574131923,41.370411092],[-71.574064371,41.370437734],[-71.573983153,41.370461434],[-71.573903875,41.370481703],[-71.573833851,41.370497299],[-71.573763032,41.370508003],[-71.573679372,41.370519263],[-71.573590216,41.370531121],[-71.573480726,41.370548893],[-71.573387753,41.370566905],[-71.57331511,41.370576237],[-71.573235839,41.370585429],[-71.572960737,41.370636352],[-71.572913914,41.370645767],[-71.572875679,41.370652097],[-71.572776549,41.370670446],[-71.572685569,41.370690839],[-71.572657912,41.370698073],[-71.572584156,41.37071637],[-71.572539932,41.370726084],[-71.572485549,41.370739447],[-71.572460815,41.370745257],[-71.572418251,41.370756796],[-71.572345434,41.370773674],[-71.572306043,41.370778425],[-71.572267549,41.370783446],[-71.572195549,41.370783446],[-71.57219044,41.370783074],[-71.572180253,41.370783086],[-71.572157956,41.370780712],[-71.572140549,41.370779447],[-71.572048822,41.370769875],[-71.572025823,41.370767791],[-71.571972828,41.370767037],[-71.571773263,41.37076549],[-71.571767482,41.370765505],[-71.571667423,41.370773755],[-71.571573596,41.370789686],[-71.571565118,41.37078868],[-71.571422206,41.370775688],[-71.571409026,41.370774922],[-71.571323397,41.370791671],[-71.571245676,41.370820925],[-71.5711666,41.370833644],[-71.571104884,41.37084152],[-71.570992531,41.370858352],[-71.570978091,41.37086061],[-71.570967075,41.370863115],[-71.570892549,41.370880447],[-71.570867887,41.370884825],[-71.570812299,41.370895544],[-71.570723966,41.370910876],[-71.570649431,41.370919829],[-71.570249549,41.370970447],[-71.570247136,41.370970483],[-71.570175417,41.370972779],[-71.570134079,41.370972196],[-71.569919549,41.370975447],[-71.569913448,41.370975768],[-71.569824305,41.370980929],[-71.569732268,41.370996902],[-71.569644081,41.371006653],[-71.569544961,41.371013528],[-71.569463297,41.371017716],[-71.569459774,41.371017935],[-71.569381573,41.371025748],[-71.569358983,41.371029253],[-71.569248289,41.371047924],[-71.569206727,41.371055677],[-71.569132235,41.371067728],[-71.569118154,41.371068632],[-71.568962548,41.371081446],[-71.568823893,41.371086228],[-71.568788148,41.371087695],[-71.568717183,41.371104638],[-71.56863193,41.371104804],[-71.568610524,41.37110674],[-71.568417941,41.371127749],[-71.568411476,41.371128606],[-71.568321494,41.371135589],[-71.568221433,41.37114315],[-71.56814065,41.371149601],[-71.568061717,41.37115468],[-71.56796063,41.371167753],[-71.567882566,41.371183988],[-71.567861548,41.371188447],[-71.567723615,41.37121041],[-71.567704737,41.371213805],[-71.567609675,41.371241442],[-71.567541093,41.371272907],[-71.567469128,41.371280697],[-71.567462548,41.371281447],[-71.567453321,41.371282],[-71.56736207,41.371287626],[-71.567344015,41.371291928],[-71.567271547,41.371309447],[-71.567232924,41.371316021],[-71.56717788,41.371325767],[-71.567140977,41.371329328],[-71.566932548,41.371351446],[-71.566750547,41.371365447],[-71.566606015,41.371393165],[-71.566604434,41.371393523],[-71.566594989,41.371396913],[-71.566513547,41.371426447],[-71.566431548,41.371451447],[-71.566385788,41.371454891],[-71.566338934,41.371458765],[-71.56632698,41.37146032],[-71.566200717,41.371480772],[-71.566196353,41.371481604],[-71.566102259,41.371506472],[-71.566033144,41.37152275],[-71.56598832,41.371530889],[-71.565905534,41.371546343],[-71.565883675,41.371550509],[-71.565882433,41.371550745],[-71.565745874,41.37158734],[-71.565730879,41.371591603],[-71.565652567,41.37160983],[-71.565580545,41.371623977],[-71.565564547,41.371627447],[-71.565159922,41.371706374],[-71.56509769,41.371741366],[-71.565080603,41.371753391],[-71.565036547,41.371784447],[-71.565036363,41.37178448],[-71.565036141,41.371784636],[-71.565016933,41.37178796],[-71.564969547,41.371796447],[-71.564931336,41.371791443],[-71.564885855,41.371785933],[-71.564806833,41.371793822],[-71.564771176,41.371800799],[-71.564709998,41.371813514],[-71.564638274,41.371830052],[-71.564566816,41.371843273],[-71.564551547,41.371846447],[-71.564462547,41.371877447],[-71.564403945,41.371893285],[-71.564388257,41.371897615],[-71.564384179,41.371898392],[-71.564190961,41.371940242],[-71.564171738,41.371944894],[-71.564102535,41.371965311],[-71.564032449,41.371983623],[-71.564010564,41.371988188],[-71.563930547,41.372005447],[-71.563829546,41.372020447],[-71.563771519,41.372026747],[-71.563754598,41.372028672],[-71.563738462,41.372030336],[-71.563654546,41.372039447],[-71.563607589,41.372049275],[-71.563568816,41.372057775],[-71.563518791,41.372075739],[-71.563500546,41.372082447],[-71.563422546,41.372093447],[-71.563227546,41.372105447],[-71.562987894,41.37215983],[-71.562967799,41.372164499],[-71.562942212,41.372172144],[-71.562888546,41.372188447],[-71.562869976,41.372194929],[-71.562819076,41.372213454],[-71.562750636,41.372238718],[-71.562676729,41.372262497],[-71.562594623,41.372284109],[-71.562593938,41.372284277],[-71.562746547,41.372995447],[-71.562815546,41.373212447],[-71.562859546,41.373351447],[-71.562851546,41.373734447],[-71.562851546,41.373944447],[-71.562859547,41.374024447],[-71.562859547,41.374100447],[-71.562889546,41.374421447],[-71.562889546,41.374485448],[-71.562874546,41.374615447],[-71.562889546,41.374806447],[-71.562904546,41.374905447],[-71.562958547,41.375531448],[-71.562973546,41.375622447],[-71.563004546,41.375950448],[-71.563004546,41.376053447],[-71.562996547,41.376107447],[-71.562981546,41.376156448],[-71.562943546,41.376213448],[-71.562859547,41.376286447],[-71.562828546,41.376301448],[-71.562851546,41.376358448],[-71.562904546,41.376557447],[-71.562920547,41.376633448],[-71.562935547,41.376671448],[-71.562935547,41.376706448],[-71.562927546,41.376721448],[-71.562927546,41.376736448],[-71.562912546,41.376751447],[-71.562904546,41.376767448],[-71.562881547,41.376778448],[-71.562851546,41.376801448],[-71.562805546,41.376816448],[-71.562805546,41.376820448],[-71.562798547,41.376820448],[-71.562798547,41.376824448],[-71.562752546,41.376843448],[-71.562660546,41.376870448],[-71.562660546,41.376915448],[-71.562668547,41.376961448],[-71.562668547,41.377003448],[-71.562691546,41.377140448],[-71.562714546,41.377232448],[-71.562729546,41.377331448],[-71.562729546,41.377385448],[-71.562637546,41.377385448],[-71.562309546,41.377396448],[-71.561851546,41.377411448],[-71.559486546,41.377507448],[-71.558273545,41.377564448],[-71.557885545,41.377579448],[-71.557203545,41.377609448],[-71.557070545,41.377616448],[-71.556493544,41.377638448],[-71.556054545,41.377656448],[-71.555501544,41.377681448],[-71.555017544,41.377702449],[-71.554698544,41.377714448],[-71.554145544,41.377732448],[-71.553604543,41.377757448],[-71.552548543,41.377798449],[-71.551987543,41.377823448],[-71.551346543,41.377849448],[-71.550808543,41.377874449],[-71.549950543,41.377910448],[-71.549591542,41.377922448],[-71.549576542,41.377388449],[-71.549347542,41.377392449],[-71.549171542,41.377400448],[-71.548828542,41.377430449],[-71.548561542,41.377446449],[-71.548424542,41.377446449],[-71.548294542,41.377472448],[-71.548248542,41.377499448],[-71.548203541,41.377541449],[-71.548180541,41.377667448],[-71.548172542,41.377686449],[-71.548141541,41.377701449],[-71.548096542,41.377713448],[-71.548042542,41.377720449],[-71.547684542,41.377739449],[-71.547417542,41.377747448],[-71.547173541,41.377762449],[-71.546593541,41.377781449],[-71.546257541,41.377800449],[-71.545692541,41.377819449],[-71.54554754,41.377831449],[-71.545479541,41.377854449],[-71.545433541,41.377854449],[-71.545502541,41.378491449],[-71.545280541,41.378502449],[-71.544968541,41.378525448],[-71.544609541,41.378540449],[-71.544373541,41.378556449],[-71.543671541,41.378594449],[-71.54347254,41.378609449],[-71.54322654,41.378619449],[-71.54238254,41.378668449],[-71.54220654,41.378671449],[-71.542062634,41.378674447],[-71.542037936,41.378692636],[-71.541986258,41.378742969],[-71.541956476,41.378797069],[-71.54194304,41.378821019],[-71.54192613,41.378873925],[-71.541921975,41.378929067],[-71.54192605,41.378985029],[-71.541899733,41.379046766],[-71.541894489,41.37910813],[-71.541941006,41.379152939],[-71.541997544,41.379200031],[-71.542060845,41.379233376],[-71.542133087,41.379239959],[-71.542208001,41.379248623],[-71.542280124,41.379260031],[-71.542359772,41.379261832],[-71.542447708,41.379263103],[-71.542524593,41.379266276],[-71.542594124,41.379307349],[-71.54264073,41.37934875],[-71.542669434,41.379409186],[-71.542665043,41.379473316],[-71.542627883,41.379530049],[-71.542573619,41.379573431],[-71.542495757,41.379608223],[-71.542433323,41.379649413],[-71.54236666,41.379676745],[-71.542293419,41.379674325],[-71.542224763,41.379671263],[-71.542165181,41.37970838],[-71.542092199,41.379730774],[-71.542023564,41.379762201],[-71.541988344,41.379814152],[-71.541954212,41.379858533],[-71.54193363,41.379912744],[-71.541872106,41.379953316],[-71.541811376,41.379999353],[-71.54178074,41.380051349],[-71.54171575,41.380083551],[-71.541696751,41.380146063],[-71.541676234,41.380160959],[-71.541646961,41.380158477],[-71.541599895,41.380206819],[-71.54153235,41.380233442],[-71.54145922,41.380263451],[-71.541412599,41.380294503],[-71.541452591,41.380343409],[-71.541466131,41.380387795],[-71.541439169,41.380438463],[-71.541445947,41.38049582],[-71.541439732,41.380560614],[-71.541429814,41.38062605],[-71.54143474,41.380684116],[-71.541463473,41.380743843],[-71.541456584,41.380798278],[-71.541476881,41.380865532],[-71.541503702,41.380927341],[-71.541496725,41.380985915],[-71.541481488,41.381044378],[-71.541454526,41.381095731],[-71.541391238,41.381133468],[-71.541342854,41.381162439],[-71.541356128,41.381217163],[-71.541368402,41.381275341],[-71.541411098,41.381326327],[-71.54147543,41.381354869],[-71.541546911,41.381355209],[-71.541598991,41.381360816],[-71.541650917,41.381409169],[-71.54165925,41.381477617],[-71.541652095,41.381542411],[-71.541621199,41.381568838],[-71.541538252,41.381586981],[-71.541521489,41.38163298],[-71.541519156,41.381688876],[-71.541486727,41.381738768],[-71.541437957,41.381782262],[-71.541378462,41.38181659],[-71.541327811,41.381862783],[-71.541312574,41.381921223],[-71.541268005,41.381980633],[-71.541221582,41.382039313],[-71.541185212,41.382100893],[-71.541167301,41.382156566],[-71.54115756,41.382214386],[-71.541155019,41.382278538],[-71.541167353,41.382333949],[-71.541191382,41.382397772],[-71.541216017,41.382459765],[-71.541219819,41.3824693],[-71.541254871,41.382532593],[-71.541282575,41.382596483],[-71.541293879,41.38265672],[-71.541291456,41.382715315],[-71.541287301,41.38277048],[-71.541253841,41.382824558],[-71.541221352,41.382876531],[-71.541189248,41.382914027],[-71.541150381,41.382964539],[-71.541108751,41.383017087],[-71.541076321,41.383066979],[-71.541047181,41.383132857],[-71.541028883,41.383202275],[-71.541026461,41.383262288],[-71.541024683,41.383331266],[-71.541039542,41.383396372],[-71.541050024,41.383453133],[-71.54106512,41.383507171],[-71.541093765,41.383570397],[-71.541126232,41.38362747],[-71.541154965,41.383685848],[-71.541186492,41.383744271],[-71.541208996,41.383796362],[-71.54122107,41.38382554],[-71.54115884,41.383858473],[-71.541170232,41.383914524],[-71.541172306,41.383976685],[-71.541136083,41.384032045],[-71.54106577,41.384058622],[-71.540986383,41.384045066],[-71.54091604,41.384070957],[-71.540843151,41.384056803],[-71.540789505,41.384075347],[-71.540751518,41.384127963],[-71.540688168,41.38416778],[-71.540632017,41.384213198],[-71.540582305,41.384258041],[-71.540550852,41.384270013],[-71.540515339,41.384296418],[-71.540502953,41.38435074],[-71.540473286,41.384402072],[-71.540431595,41.384455329],[-71.540382911,41.384495346],[-71.540332286,41.384539481],[-71.540312463,41.38459854],[-71.540260779,41.384649559],[-71.540216473,41.384697213],[-71.540175811,41.38474633],[-71.540150432,41.384808089],[-71.540121585,41.384860153],[-71.540108051,41.384925498],[-71.540084552,41.384983872],[-71.540055736,41.385035866],[-71.540030238,41.385102451],[-71.540000361,41.385159294],[-71.539977655,41.385223156],[-71.539976749,41.385232442],[-71.539971439,41.385287973],[-71.539978216,41.38534533],[-71.539998808,41.385400852],[-71.539992214,41.385443554],[-71.540027126,41.385475789],[-71.540095988,41.385507166],[-71.540150034,41.385543831],[-71.540193792,41.385590014],[-71.54023637,41.385643768],[-71.540283742,41.385690704],[-71.540337285,41.385748067],[-71.540378249,41.385794228],[-71.540418332,41.385840344],[-71.540465882,41.38588106],[-71.540516136,41.385921843],[-71.540575887,41.385950959],[-71.54061503,41.38599847],[-71.540645801,41.386013416],[-71.540721457,41.386028301],[-71.540772592,41.386071851],[-71.54080415,41.386128901],[-71.540823535,41.386194738],[-71.540834839,41.386254266],[-71.540840003,41.386304716],[-71.540884057,41.38633848],[-71.540844491,41.386344121],[-71.54080334,41.386340087],[-71.540798184,41.38639866],[-71.540850528,41.3864305],[-71.540825949,41.386460515],[-71.540752937,41.386449128],[-71.540749226,41.386487026],[-71.5407727,41.386536326],[-71.540758374,41.386596183],[-71.54073852,41.386655951],[-71.540693272,41.386704978],[-71.540671655,41.38676127],[-71.540646423,41.386816831],[-71.540606643,41.386868006],[-71.540546141,41.386903705],[-71.540462743,41.386940442],[-71.540385871,41.386972464],[-71.540310236,41.386990696],[-71.540232223,41.3869958],[-71.540151299,41.387006349],[-71.540077278,41.387033591],[-71.540008081,41.387052597],[-71.539918777,41.387067883],[-71.53984641,41.387066833],[-71.539770367,41.387065762],[-71.539684034,41.387072104],[-71.539607607,41.387086881],[-71.539521712,41.387113921],[-71.53945095,41.387157056],[-71.539383833,41.387201676],[-71.539327619,41.387249174],[-71.539283142,41.387268538],[-71.539217041,41.387236519],[-71.539173691,41.387211033],[-71.539180582,41.387156622],[-71.539189385,41.387100838],[-71.539201891,41.387040296],[-71.539220657,41.386986727],[-71.539243275,41.386927005],[-71.539272242,41.386868767],[-71.539302298,41.386804308],[-71.539315012,41.386737544],[-71.539347683,41.386677956],[-71.539361922,41.386622261],[-71.539346886,41.386565456],[-71.539361333,41.386502169],[-71.539362816,41.386443506],[-71.53934978,41.38637913],[-71.539335803,41.386316127],[-71.539292017,41.386272025],[-71.539226978,41.386235866],[-71.539165671,41.386195658],[-71.539106217,41.386154763],[-71.53904503,41.386110392],[-71.538970346,41.386092738],[-71.538879964,41.38607971],[-71.538790196,41.386077705],[-71.538715857,41.386080795],[-71.538644966,41.386057719],[-71.538575897,41.386035993],[-71.538502034,41.386021792],[-71.538429667,41.386020078],[-71.538352745,41.386017565],[-71.538259332,41.386014852],[-71.53817618,41.386004656],[-71.538102436,41.385986339],[-71.538031515,41.385964612],[-71.537966536,41.385924359],[-71.537920899,41.385881561],[-71.537888344,41.385828626],[-71.537887214,41.385764475],[-71.537887698,41.385709929],[-71.537910347,41.385648126],[-71.537966203,41.385613733],[-71.538035401,41.385596809],[-71.538110094,41.385578556],[-71.538174298,41.385539449],[-71.538232125,41.385500253],[-71.538288278,41.385454837],[-71.53832806,41.385403639],[-71.538371486,41.385354591],[-71.538418438,41.385309703],[-71.538454724,41.38525295],[-71.538463306,41.385232958],[-71.538477104,41.385200798],[-71.538498693,41.385144529],[-71.538499177,41.385090006],[-71.538484933,41.385036677],[-71.538468958,41.384981198],[-71.5384439,41.384921492],[-71.538403998,41.384869841],[-71.538353102,41.384817348],[-71.538301939,41.384774505],[-71.538250836,41.384730268],[-71.538202435,41.384686785],[-71.538144747,41.384649365],[-71.538100318,41.384594879],[-71.538072379,41.38454064],[-71.538050818,41.384486513],[-71.538000567,41.384445065],[-71.537944632,41.384447691],[-71.537882518,41.38447511],[-71.53784528,41.384461446],[-71.537791444,41.3844165],[-71.537725139,41.38439276],[-71.537659043,41.384361426],[-71.537593738,41.384334254],[-71.537569623,41.384274548],[-71.537549122,41.384215594],[-71.53751742,41.384164764],[-71.537463615,41.384119818],[-71.537396756,41.384082263],[-71.537348327,41.384040152],[-71.537335057,41.383986113],[-71.537316527,41.383922357],[-71.537280477,41.383861807],[-71.537261007,41.383799377],[-71.537283418,41.383747248],[-71.537324021,41.383699527],[-71.537343759,41.383645272],[-71.537345392,41.38358112],[-71.537333002,41.383527104],[-71.537307154,41.383462572],[-71.537284653,41.383411144],[-71.537289901,41.383348432],[-71.537313342,41.38329214],[-71.537361353,41.3832411],[-71.537393201,41.383178082],[-71.537391834,41.383123513],[-71.53736772,41.383064493],[-71.537338901,41.383008858],[-71.537310993,41.382953246],[-71.537282322,41.382891414],[-71.537263703,41.382831111],[-71.537273448,41.38277185],[-71.537283251,41.382709891],[-71.537282944,41.382650542],[-71.537266147,41.382590238],[-71.537238418,41.382529115],[-71.537204163,41.382470646],[-71.537198843,41.382461156],[-71.537169085,41.382407992],[-71.537143178,41.382346182],[-71.537113478,41.382289175],[-71.537097414,41.382235824],[-71.537094314,41.38217778],[-71.537090363,41.3821177],[-71.537094611,41.382059082],[-71.537107148,41.38199854],[-71.537137025,41.381940302],[-71.537143066,41.381883078],[-71.537145433,41.381827205],[-71.537140541,41.381767789],[-71.5371385,41.381702861],[-71.537131667,41.381648248],[-71.537086023,41.381640693],[-71.537007986,41.381645772],[-71.536920423,41.381665904],[-71.536853815,41.381690488],[-71.53679402,41.38173515],[-71.536747981,41.381780745],[-71.53670823,41.38183057],[-71.536648553,41.381870406],[-71.536582034,41.38189156],[-71.536499847,41.381915211],[-71.536426653,41.38194659],[-71.536372592,41.381983748],[-71.536301695,41.381996555],[-71.536244782,41.382036459],[-71.536170538,41.382036734],[-71.536121368,41.382023599],[-71.536069179,41.381986291],[-71.53600264,41.381972178],[-71.535942171,41.382008584],[-71.535915115,41.382062727],[-71.535918214,41.382120748],[-71.535935979,41.382178971],[-71.535956627,41.382231017],[-71.535971599,41.38229059],[-71.535972055,41.382345136],[-71.535954931,41.382405634],[-71.535949192,41.382461554],[-71.53594883,41.382464916],[-71.535932737,41.382521251],[-71.535924546,41.382590871],[-71.535916325,41.382661818],[-71.535913987,41.382717005],[-71.535921731,41.382773012],[-71.535924889,41.382828952],[-71.535931722,41.382884274],[-71.535947606,41.382943869],[-71.535967253,41.383000055],[-71.536004331,41.383055825],[-71.536052668,41.383100704],[-71.536080664,41.383151468],[-71.53613838,41.383188889],[-71.53619889,41.383224273],[-71.536264865,41.383260434],[-71.536325404,41.383293737],[-71.536394876,41.383336162],[-71.536460733,41.383377148],[-71.536543555,41.383400427],[-71.536615532,41.383415956],[-71.536688481,41.383430821],[-71.536763221,41.383446395],[-71.536838408,41.383444724],[-71.536909692,41.383417463],[-71.536978856,41.383398458],[-71.537020678,41.383411458],[-71.536996831,41.383448401],[-71.536960229,41.383483748],[-71.536984195,41.383548303],[-71.537020273,41.383607503],[-71.537055381,41.38366803],[-71.537076733,41.383729087],[-71.537090886,41.38378587],[-71.537081319,41.383837515],[-71.537043359,41.383888048],[-71.537012748,41.383939356],[-71.536985515,41.384001755],[-71.536957577,41.384054503],[-71.536927668,41.384113427],[-71.536893442,41.384161969],[-71.53684546,41.384210264],[-71.536802973,41.384258649],[-71.536766806,41.384311948],[-71.536741601,41.384365405],[-71.536698937,41.384420696],[-71.536647894,41.384482806],[-71.536605467,41.384529109],[-71.536557987,41.384553801],[-71.536543544,41.384573131],[-71.53648885,41.384623166],[-71.536424564,41.384678167],[-71.536366958,41.384733944],[-71.536313206,41.384784687],[-71.536254745,41.384829692],[-71.536194341,41.384878951],[-71.536124403,41.384928213],[-71.536078329,41.3849704],[-71.536013297,41.384996653],[-71.53594073,41.385015018],[-71.535867026,41.38501129],[-71.535863564,41.385011131],[-71.535785652,41.384974197],[-71.535701806,41.384968803],[-71.535633976,41.384987943],[-71.535573658,41.385026407],[-71.535504603,41.385082118],[-71.535439347,41.385145055],[-71.535388308,41.3852159],[-71.535371191,41.38523395],[-71.535330674,41.385276685],[-71.535265414,41.385332417],[-71.53519636,41.385391009],[-71.535136869,41.385445322],[-71.535076379,41.385504643],[-71.535007607,41.385523029],[-71.534910257,41.385538405],[-71.534822443,41.385554555],[-71.534737512,41.385567114],[-71.534655493,41.385573954],[-71.534565879,41.385573615],[-71.534483889,41.385576841],[-71.534388479,41.385586498],[-71.534300779,41.385588286],[-71.534221757,41.385576462],[-71.534148669,41.385531635],[-71.534074641,41.385486854],[-71.534010063,41.385455701],[-71.533948367,41.385416679],[-71.533882989,41.385364028],[-71.533845216,41.385312878],[-71.533789401,41.385254483],[-71.533766281,41.385234432],[-71.533734503,41.38520686],[-71.533683371,41.385160699],[-71.533640943,41.385093061],[-71.53361382,41.385024046],[-71.533597145,41.384958619],[-71.533577616,41.384893215],[-71.533564822,41.384816328],[-71.533531989,41.384745119],[-71.533487594,41.384688253],[-71.533441257,41.384636328],[-71.533402687,41.38456798],[-71.533373537,41.384514014],[-71.533344359,41.384463639],[-71.5333067,41.38439529],[-71.533286174,41.384339218],[-71.533267585,41.384270909],[-71.533250938,41.384201227],[-71.533237091,41.384141563],[-71.533213881,41.384062529],[-71.53320874,41.383984222],[-71.533211074,41.383917463],[-71.533251582,41.383855907],[-71.533293946,41.38380009],[-71.533316381,41.383729117],[-71.533320774,41.383650144],[-71.533306956,41.38358762],[-71.533264473,41.383527186],[-71.533206634,41.38348599],[-71.533168007,41.383425509],[-71.533146481,41.383373005],[-71.533122129,41.38331547],[-71.533099718,41.383254366],[-71.533081101,41.383190426],[-71.533064456,41.383122849],[-71.533048724,41.383058175],[-71.533031964,41.383002811],[-71.5330039,41.382930914],[-71.532967129,41.382875487],[-71.532932213,41.382825799],[-71.532909887,41.382752483],[-71.532886589,41.382677703],[-71.532860467,41.382602947],[-71.532837029,41.382551153],[-71.532809764,41.38249865],[-71.532782477,41.382462522],[-71.532763486,41.382437416],[-71.532698056,41.382394072],[-71.532660745,41.382410412],[-71.532622263,41.38245621],[-71.532618532,41.382462569],[-71.53258273,41.38252282],[-71.532554698,41.38257655],[-71.532525694,41.382628109],[-71.532485189,41.38269616],[-71.532436088,41.382758381],[-71.532386132,41.382812026],[-71.532353361,41.382861459],[-71.532311855,41.382930928],[-71.532268522,41.382993193],[-71.532214711,41.383050362],[-71.532159931,41.383113316],[-71.53212793,41.383185687],[-71.532107435,41.383250256],[-71.532086938,41.383313316],[-71.532052197,41.383370616],[-71.532009749,41.383442235],[-71.531958764,41.38350448],[-71.53189065,41.383561629],[-71.531838866,41.383605189],[-71.531788937,41.383654511],[-71.531744746,41.383700973],[-71.531688051,41.383763196],[-71.531634295,41.383811079],[-71.531583367,41.383866874],[-71.53153635,41.383909746],[-71.531487363,41.383961264],[-71.531444087,41.384016348],[-71.531383508,41.384084998],[-71.531356387,41.384140901],[-71.53137403,41.384204888],[-71.531405918,41.384274634],[-71.531414056,41.384336405],[-71.531376516,41.384386501],[-71.531310484,41.384419247],[-71.531241684,41.38444193],[-71.531168859,41.384494758],[-71.531122812,41.384536211],[-71.531065174,41.384596262],[-71.531028575,41.384646358],[-71.531043478,41.384695228],[-71.531028861,41.38473752],[-71.531031288,41.384794969],[-71.531046133,41.384851044],[-71.531072284,41.384924405],[-71.531093723,41.384988391],[-71.531108456,41.385060909],[-71.531115649,41.385117671],[-71.531126699,41.385172283],[-71.531149777,41.38523517],[-71.531150994,41.38523844],[-71.531174318,41.385306725],[-71.531179598,41.385362756],[-71.531183025,41.385417347],[-71.531194902,41.385487007],[-71.531224964,41.385546005],[-71.531274154,41.385599348],[-71.531332906,41.38564409],[-71.531377243,41.385708161],[-71.531420638,41.385770082],[-71.531474593,41.385817729],[-71.531528524,41.385876834],[-71.531591959,41.385932346],[-71.531645917,41.385984979],[-71.531716263,41.386014691],[-71.531777897,41.386053005],[-71.531796569,41.386106929],[-71.531804678,41.386169431],[-71.531844248,41.386234921],[-71.531883961,41.386280308],[-71.531943572,41.386340898],[-71.532011805,41.386395722],[-71.532088689,41.386441991],[-71.532144673,41.386475983],[-71.532212078,41.386512855],[-71.532266036,41.386562628],[-71.53230278,41.386622379],[-71.532333785,41.386681353],[-71.532358139,41.386741083],[-71.532398624,41.38681085],[-71.532452525,41.386868514],[-71.532514192,41.386907536],[-71.532574918,41.386948731],[-71.532627051,41.386990592],[-71.532666679,41.387046751],[-71.532685237,41.387113573],[-71.532698,41.387191901],[-71.532723239,41.387258035],[-71.532767637,41.387317805],[-71.532783366,41.387376029],[-71.53279536,41.387432813],[-71.532812063,41.387493895],[-71.532827796,41.387558568],[-71.532841588,41.38762825],[-71.532856264,41.387704405],[-71.53287194,41.387776259],[-71.532881991,41.387835879],[-71.532889104,41.387908445],[-71.532896299,41.387964453],[-71.532882615,41.387988699],[-71.532888091,41.388008275],[-71.532932666,41.388056747],[-71.53293783,41.388119091],[-71.532965097,41.388171959],[-71.533005818,41.38822551],[-71.533047641,41.388295047],[-71.533088392,41.388348575],[-71.533139744,41.388404295],[-71.533194953,41.388460655],[-71.533240534,41.388516377],[-71.533284173,41.388573563],[-71.533331666,41.388626358],[-71.533376212,41.388675562],[-71.533435313,41.388740634],[-71.533494411,41.388800674],[-71.533532246,41.38884988],[-71.533562398,41.388899844],[-71.533592519,41.388950538],[-71.533593793,41.389006365],[-71.533592251,41.389078178],[-71.533588795,41.389148552],[-71.533587184,41.389204425],[-71.533570114,41.389259616],[-71.533521241,41.389301094],[-71.533471401,41.389351332],[-71.533415883,41.389405162],[-71.533363189,41.389457528],[-71.533316297,41.389513528],[-71.533284869,41.389581806],[-71.533280442,41.389653643],[-71.533280809,41.389719624],[-71.533281112,41.389776937],[-71.53328812,41.389821921],[-71.5333595,41.389844885],[-71.533430908,41.38986355],[-71.53349652,41.389892324],[-71.533548745,41.389929885],[-71.533604893,41.389979772],[-71.533640784,41.390027538],[-71.533647861,41.390086999],[-71.533695355,41.390139084],[-71.533761905,41.390158436],[-71.533790952,41.39018594],[-71.533855418,41.390169752],[-71.533856024,41.390108116],[-71.533840292,41.390047217],[-71.533840022,41.389995004],[-71.533889833,41.389946961],[-71.533962923,41.389929329],[-71.534060227,41.389929049],[-71.534149786,41.389928771],[-71.534224986,41.389937988],[-71.534324271,41.389952184],[-71.534413967,41.389980173],[-71.534496042,41.390013265],[-71.534558835,41.390049336],[-71.534612064,41.390090532],[-71.534621726,41.390098488],[-71.534678884,41.390159947],[-71.534712893,41.390207713],[-71.534725741,41.39026859],[-71.534726044,41.390323753],[-71.534747412,41.39035851],[-71.534829489,41.39039231],[-71.534916368,41.390433405],[-71.534972485,41.390477482],[-71.534976614,41.390531867],[-71.534941261,41.39058345],[-71.534943508,41.390640031],[-71.534999692,41.390696435],[-71.535070302,41.390752812],[-71.535114041,41.39082157],[-71.535155836,41.390888888],[-71.535199443,41.39093736],[-71.535244959,41.39097929],[-71.535249089,41.391033698],[-71.53528119,41.391089469],[-71.535278609,41.391148201],[-71.535315505,41.391195966],[-71.535320672,41.391259773],[-71.535304607,41.391317845],[-71.53524715,41.391379682],[-71.535199251,41.391426261],[-71.535144578,41.391471424],[-71.535094735,41.391517271],[-71.535047775,41.391559458],[-71.534980587,41.391598107],[-71.534905517,41.391609245],[-71.534808212,41.39161099],[-71.53473019,41.391609046],[-71.53464922,41.391603513],[-71.534567342,41.391603744],[-71.534489351,41.391604019],[-71.534391105,41.391606472],[-71.534323849,41.391633525],[-71.534267197,41.391669243],[-71.534256968,41.391737468],[-71.534257369,41.391807863],[-71.534289538,41.39187882],[-71.534302453,41.391950584],[-71.534297088,41.39202894],[-71.534282025,41.392087767],[-71.534249623,41.392151676],[-71.534234566,41.392222122],[-71.534234967,41.392291739],[-71.534235338,41.392362797],[-71.534235773,41.392438956],[-71.534236211,41.392520946],[-71.534236648,41.392602181],[-71.534237116,41.392683417],[-71.53424624,41.392765336],[-71.534276533,41.392848667],[-71.534326078,41.392926137],[-71.534381391,41.39299775],[-71.534429929,41.393065066],[-71.53447166,41.393125157],[-71.534512413,41.393175071],[-71.534585908,41.393227079],[-71.534641021,41.393263907],[-71.534698081,41.393307984],[-71.534757117,41.39335421],[-71.534823771,41.393392429],[-71.534916386,41.393417536],[-71.535004036,41.393416548],[-71.535064582,41.39338952],[-71.535118487,41.393382826],[-71.535183798,41.393352182],[-71.535228881,41.393318663],[-71.535265646,41.393348269],[-71.535279466,41.393406264],[-71.535338403,41.39343799],[-71.535413577,41.393447916],[-71.535455974,41.393447056],[-71.53556969,41.393459028],[-71.535670894,41.393473199],[-71.535742242,41.393483858],[-71.535826137,41.393501739],[-71.535871756,41.393505453],[-71.535920595,41.393509417],[-71.535993888,41.393522979],[-71.536081644,41.393548086],[-71.53615782,41.393558011],[-71.536248423,41.393568617],[-71.53633604,41.39356182],[-71.536407284,41.393549242],[-71.536487187,41.393542492],[-71.53656615,41.393540066],[-71.536644174,41.393539812],[-71.536722165,41.393536654],[-71.53681555,41.393526218],[-71.536900245,41.393507804],[-71.536982029,41.393498126],[-71.537056998,41.393468873],[-71.53713012,41.393448358],[-71.537175137,41.393406125],[-71.537235578,41.393357345],[-71.537286328,41.393305688],[-71.537317821,41.393249005],[-71.537324258,41.393193153],[-71.537345056,41.393129223],[-71.53740258,41.393078272],[-71.537465841,41.393022219],[-71.537526317,41.392982908],[-71.537612993,41.392979701],[-71.537696785,41.39297654],[-71.5377902,41.392967567],[-71.537869166,41.392969485],[-71.537953932,41.392970692],[-71.538038796,41.392984158],[-71.538126548,41.393002768],[-71.538210408,41.393012643],[-71.538284543,41.39301239],[-71.53835495,41.393025265],[-71.538433108,41.393048956],[-71.538523779,41.393071865],[-71.538619277,41.393092599],[-71.53871374,41.393108279],[-71.538797567,41.393113786],[-71.538890046,41.393112771],[-71.538991281,41.393126985],[-71.539063604,41.393143427],[-71.539137903,41.393163528],[-71.539220826,41.393180652],[-71.539300866,41.393199973],[-71.539360777,41.393232429],[-71.53943994,41.393260464],[-71.539518102,41.393288522],[-71.539596296,41.39332017],[-71.539674491,41.393352597],[-71.539751811,41.3933944],[-71.539816557,41.393437031],[-71.539863992,41.393478181],[-71.539927761,41.393510612],[-71.539916561,41.393573052],[-71.539963094,41.39362948],[-71.540001074,41.39370407],[-71.540034254,41.393778685],[-71.540064417,41.393835187],[-71.540067401,41.393847467],[-71.540083142,41.393910538],[-71.540090222,41.393966386],[-71.540103077,41.394028726],[-71.540109257,41.394101268],[-71.540109733,41.394183899],[-71.540110077,41.394249217],[-71.540109478,41.394313048],[-71.540106936,41.39437688],[-71.540103451,41.394439272],[-71.540102822,41.394503104],[-71.540103196,41.394566935],[-71.540106357,41.394621319],[-71.540121156,41.39468295],[-71.540137934,41.394753271],[-71.540169135,41.394818417],[-71.540212785,41.39487631],[-71.540266058,41.394927635],[-71.54033953,41.394980395],[-71.540398505,41.395017904],[-71.540468079,41.395055433],[-71.54053863,41.395098679],[-71.540613069,41.395144165],[-71.540682679,41.395189629],[-71.540746519,41.395235142],[-71.540811268,41.395277726],[-71.54087125,41.395321067],[-71.540916777,41.395369513],[-71.540949822,41.395418719],[-71.540990655,41.395487521],[-71.54102766,41.39555413],[-71.541042495,41.395623719],[-71.541033244,41.395691967],[-71.540998901,41.395752975],[-71.540947249,41.395819135],[-71.540907036,41.395867154],[-71.54086494,41.395915151],[-71.540823784,41.395961707],[-71.54077599,41.396028597],[-71.540724369,41.39609622],[-71.540703585,41.396130922],[-71.540685229,41.39616162],[-71.540653804,41.396226263],[-71.540584708,41.396276579],[-71.540507895,41.396324657],[-71.540434935,41.396364088],[-71.540363892,41.396409991],[-71.540322803,41.396468142],[-71.540329923,41.396537025],[-71.540360189,41.3966102],[-71.540388508,41.396678298],[-71.540374392,41.396739275],[-71.540324582,41.396790911],[-71.540267054,41.396836787],[-71.540264545,41.396904255],[-71.540235031,41.396968188],[-71.540179453,41.397023508],[-71.540185597,41.397087314],[-71.540211904,41.397142377],[-71.540276717,41.397187844],[-71.540365516,41.397219511],[-71.540451362,41.397238783],[-71.540542907,41.397241427],[-71.540623686,41.397220861],[-71.540673464,41.397167006],[-71.540709685,41.39709653],[-71.540738326,41.397046434],[-71.540795749,41.396979495],[-71.540843681,41.396936527],[-71.540911979,41.396920379],[-71.540993064,41.396952026],[-71.541059646,41.396976118],[-71.54095354,41.396936452],[-71.54151254,41.395584452],[-71.54155754,41.395642452],[-71.54211454,41.396061452],[-71.542160541,41.396122452],[-71.542236541,41.396241452],[-71.542343541,41.396355452],[-71.542526541,41.396458452],[-71.542694541,41.396515452],[-71.543457541,41.396687452],[-71.543640541,41.396771452],[-71.543695541,41.396812453],[-71.543738541,41.396855453],[-71.543846542,41.397026453],[-71.543884542,41.397149452],[-71.543900541,41.397297453]]],[[[-71.54035954,41.398239453],[-71.54028554,41.398334453],[-71.540261694,41.398378857],[-71.540286021,41.39833463],[-71.540323289,41.398286635],[-71.54035954,41.398239453]]],[[[-71.536716539,41.398312453],[-71.536748539,41.398376453],[-71.536787303,41.398428433],[-71.536748854,41.398376203],[-71.536716744,41.398312474],[-71.536706879,41.398281718],[-71.536716539,41.398312453]]],[[[-71.538290347,41.398400378],[-71.53826854,41.398455453],[-71.53829054,41.398400453],[-71.538299637,41.398359514],[-71.538290347,41.398400378]]],[[[-71.536842539,41.398475452],[-71.5368768,41.398490268],[-71.536842855,41.398475271],[-71.536801066,41.398442275],[-71.536842539,41.398475452]]],[[[-71.541452724,41.398528957],[-71.541447338,41.398535776],[-71.54145254,41.398529453],[-71.54147845,41.398486845],[-71.541452724,41.398528957]]],[[[-71.54022654,41.398466453],[-71.5401951,41.398573517],[-71.540206234,41.398537976],[-71.540226995,41.398466133],[-71.540248738,41.39840874],[-71.54022654,41.398466453]]],[[[-71.53739402,41.39858938],[-71.537398433,41.398587498],[-71.537398358,41.398587454],[-71.53739402,41.39858938]]],[[[-71.537456539,41.398622453],[-71.537461581,41.398630155],[-71.53745636,41.39862206],[-71.537414497,41.398597083],[-71.537456539,41.398622453]]],[[[-71.537181539,41.398646453],[-71.537269539,41.398642453],[-71.53727993,41.398638023],[-71.537269575,41.398642247],[-71.537181919,41.39864614],[-71.537152713,41.398632269],[-71.537181539,41.398646453]]],[[[-71.53749054,41.398746453],[-71.537486706,41.398775204],[-71.537490754,41.398746007],[-71.537491464,41.398714563],[-71.53749054,41.398746453]]],[[[-71.541287095,41.398716622],[-71.541235302,41.398755246],[-71.541200444,41.39877642],[-71.541235541,41.398755453],[-71.541287541,41.398716453],[-71.54133654,41.398670452],[-71.541287095,41.398716622]]],[[[-71.538072517,41.398725324],[-71.538033272,41.398773296],[-71.538015581,41.398804088],[-71.53803354,41.398773453],[-71.538115006,41.398675312],[-71.538072517,41.398725324]]],[[[-71.541112463,41.398837578],[-71.541116117,41.398880362],[-71.541112546,41.398837513],[-71.541112463,41.398837578]]],[[[-71.540142541,41.398895453],[-71.540142321,41.39889633],[-71.540142699,41.39889505],[-71.540143112,41.398892146],[-71.540142541,41.398895453]]],[[[-71.537504539,41.398875453],[-71.537525263,41.3989169],[-71.537504952,41.398875082],[-71.537484761,41.398813421],[-71.537504539,41.398875453]]],[[[-71.541117603,41.398897771],[-71.541137234,41.398960817],[-71.541142236,41.398993474],[-71.541127114,41.399025493],[-71.54114254,41.398993453],[-71.541137541,41.398960453],[-71.541117589,41.398897605],[-71.541117603,41.398897771]]],[[[-71.54011354,41.399011453],[-71.54016054,41.399064453],[-71.540191591,41.399088197],[-71.540160967,41.399064033],[-71.540113573,41.399011321],[-71.54011354,41.399011453]]],[[[-71.540423582,41.399169076],[-71.540382107,41.399176279],[-71.540480393,41.399159478],[-71.540480345,41.399159451],[-71.540423582,41.399169076]]],[[[-71.54036354,41.399179453],[-71.540363859,41.399179398],[-71.540348877,41.399172121],[-71.54036354,41.399179453]]],[[[-71.541092104,41.399161178],[-71.541041506,41.399187821],[-71.541092541,41.399161453],[-71.541109233,41.399119723],[-71.541092104,41.399161178]]],[[[-71.540846744,41.399209087],[-71.540770629,41.399212247],[-71.540753338,41.399219621],[-71.54077054,41.399212453],[-71.540918944,41.399208877],[-71.540846744,41.399209087]]]]}}"}, +{"type": "precinct", "typeId": 3301, "areaId": 25974, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":313,\"NAME\":\"3301\",\"SHAPE_Length\":0.11447435951833,\"SHAPE_Area\":-0.00034763361939233},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.184328438,41.673071517],[-71.185073439,41.673210517],[-71.185374439,41.673270517],[-71.185908439,41.673376517],[-71.185927439,41.673379517],[-71.185988439,41.673390517],[-71.186085439,41.673408518],[-71.186091439,41.673409517],[-71.186164439,41.673422517],[-71.186175439,41.673425517],[-71.186183439,41.673426517],[-71.186222439,41.673433517],[-71.186253439,41.673438517],[-71.186853439,41.673546517],[-71.187478439,41.673656517],[-71.18751044,41.673662518],[-71.18754944,41.673670517],[-71.187620439,41.673684517],[-71.18762644,41.673685517],[-71.18771044,41.673701518],[-71.187718439,41.673703517],[-71.187750439,41.673709517],[-71.187770439,41.673713517],[-71.18779844,41.673718517],[-71.18781744,41.673722517],[-71.18825644,41.673807517],[-71.18838844,41.673833517],[-71.18839944,41.673835517],[-71.18852944,41.673853517],[-71.18857644,41.673854517],[-71.18863744,41.673859517],[-71.18876144,41.673884517],[-71.18878744,41.673889517],[-71.18881044,41.673894517],[-71.18899744,41.673931517],[-71.190108441,41.674152517],[-71.190381441,41.674207518],[-71.190571441,41.674237517],[-71.190903441,41.674274517],[-71.190921441,41.674276517],[-71.191770441,41.674390517],[-71.192035441,41.674444517],[-71.192282441,41.674494517],[-71.192460441,41.674530517],[-71.192474441,41.674534517],[-71.192634441,41.674579517],[-71.192763441,41.674615517],[-71.193690442,41.674800517],[-71.194026442,41.674867517],[-71.194069441,41.674876517],[-71.194134442,41.674885517],[-71.194213442,41.674897517],[-71.194270442,41.674906517],[-71.194289442,41.674908517],[-71.194495442,41.674920517],[-71.194511442,41.674922517],[-71.194542442,41.674939517],[-71.194572442,41.674952517],[-71.194603442,41.674970517],[-71.194616819,41.674986762],[-71.195558953,41.675159443],[-71.195532678,41.675139898],[-71.195460575,41.675125551],[-71.195444181,41.675115651],[-71.195516868,41.675090093],[-71.195593825,41.675071155],[-71.195660586,41.675034444],[-71.195691106,41.674972663],[-71.195716403,41.674912104],[-71.195740685,41.674860049],[-71.195761498,41.674805996],[-71.195779756,41.674750632],[-71.195804934,41.674695949],[-71.195842261,41.674645987],[-71.195877001,41.674594669],[-71.195906492,41.674543932],[-71.195933421,41.674493211],[-71.195961213,41.674440548],[-71.19601609,41.674381576],[-71.196063802,41.674334911],[-71.196106381,41.674283683],[-71.196149949,41.674223286],[-71.196190923,41.674162882],[-71.19623083,41.674115511],[-71.196272561,41.674062931],[-71.19632134,41.674003234],[-71.196359642,41.673946733],[-71.196388106,41.673848311],[-71.196400315,41.673788334],[-71.196402982,41.673726937],[-71.196398543,41.673672039],[-71.196387143,41.673618381],[-71.196376781,41.673551667],[-71.196355002,41.673493315],[-71.196321791,41.673440171],[-71.196288537,41.673389565],[-71.196299356,41.673365489],[-71.196332495,41.673304356],[-71.196354219,41.673250968],[-71.196368074,41.673197513],[-71.196383714,41.673140816],[-71.196399445,41.673077578],[-71.196417851,41.67300982],[-71.196431082,41.672940012],[-71.196439767,41.672883251],[-71.196448455,41.672825849],[-71.196458937,41.672763261],[-71.196471947,41.672707791],[-71.196484146,41.672649781],[-71.196495552,41.672585183],[-71.196508687,41.672522579],[-71.196511288,41.672462531],[-71.196512091,41.67240831],[-71.196513831,41.672349564],[-71.196517445,41.672281629],[-71.196522851,41.672208507],[-71.196525745,41.672131445],[-71.19652776,41.672053101],[-71.196534853,41.671984557],[-71.196545356,41.67192389],[-71.196565406,41.671863294],[-71.196585446,41.671804664],[-71.19660032,41.67174211],[-71.196615209,41.67167624],[-71.196631827,41.671612342],[-71.196650315,41.671540009],[-71.196663633,41.671464324],[-71.196672557,41.671389268],[-71.196683233,41.67131751],[-71.19669897,41.671252969],[-71.196716521,41.671185162],[-71.196735765,41.671120653],[-71.196756702,41.671059418],[-71.196775812,41.671004057],[-71.196791493,41.670944752],[-71.196825429,41.670888835],[-71.196867959,41.670840853],[-71.196901818,41.670788252],[-71.196903561,41.670728796],[-71.196919407,41.670660344],[-71.196949023,41.670601786],[-71.196989918,41.670544652],[-71.197034281,41.670489494],[-71.197053473,41.670429581],[-71.197068218,41.670374802],[-71.197082068,41.670322011],[-71.197143483,41.670292466],[-71.197199832,41.670250489],[-71.197245124,41.670192086],[-71.197273804,41.670138076],[-71.197298119,41.670084694],[-71.197313718,41.670029963],[-71.197338203,41.669966177],[-71.197354863,41.669899648],[-71.197350637,41.66983167],[-71.197338359,41.669776705],[-71.197315604,41.669724915],[-71.197319392,41.669704068],[-71.197361217,41.669643667],[-71.197389055,41.669587024],[-71.197479196,41.669499581],[-71.197650427,41.66934946],[-71.198389721,41.669494038],[-71.198434265,41.669367047],[-71.198340489,41.669344687],[-71.19765474,41.669235857],[-71.197640684,41.669182832],[-71.197641575,41.669122711],[-71.197642426,41.669064602],[-71.197643327,41.66900256],[-71.197656427,41.668940596],[-71.197674678,41.668885872],[-71.197704253,41.668829303],[-71.19773718,41.668779923],[-71.197772035,41.668722705],[-71.197805983,41.668663562],[-71.197849445,41.668611672],[-71.197886044,41.668553154],[-71.197927815,41.668497303],[-71.197973121,41.668435629],[-71.198007988,41.668375803],[-71.198051595,41.668312181],[-71.198097734,41.668255038],[-71.198148148,41.668203234],[-71.198199304,41.668162501],[-71.19825124,41.6681244],[-71.198310285,41.66807916],[-71.19836657,41.668043677],[-71.198411192,41.668030347],[-71.198444314,41.668030594],[-71.198516428,41.668040983],[-71.19852702,41.668032572],[-71.198528755,41.667974488],[-71.198530411,41.667920247],[-71.198532985,41.66786539],[-71.198533756,41.667811192],[-71.198532072,41.667747154],[-71.198560036,41.667682713],[-71.198606076,41.667633482],[-71.198664151,41.66759343],[-71.198716974,41.667554668],[-71.198756923,41.667503385],[-71.198794378,41.667444275],[-71.198826535,41.667389679],[-71.198874221,41.667346947],[-71.198929877,41.667295797],[-71.198974193,41.667243245],[-71.199035021,41.667194784],[-71.199078389,41.66714941],[-71.199136689,41.667093693],[-71.199178455,41.667038505],[-71.199210615,41.666983245],[-71.199249673,41.666933264],[-71.199279203,41.666879301],[-71.199314107,41.666817531],[-71.199347114,41.666763577],[-71.199380106,41.666712894],[-71.19940884,41.666653029],[-71.199438568,41.666589278],[-71.199469032,41.666531384],[-71.199502841,41.666482029],[-71.199534063,41.666431341],[-71.199560156,41.666375357],[-71.199594944,41.6663188],[-71.199627224,41.666257023],[-71.199652393,41.666203003],[-71.199680136,41.666152946],[-71.199707918,41.666100923],[-71.199747118,41.666039827],[-71.199788121,41.665978096],[-71.199822052,41.665954926],[-71.199851454,41.665934855],[-71.199909722,41.665885678],[-71.199952301,41.665832458],[-71.19999478,41.665787768],[-71.200029475,41.665737729],[-71.200041365,41.665699317],[-71.200097128,41.665637716],[-71.200144822,41.665593039],[-71.200174077,41.665558651],[-71.200170862,41.665541651],[-71.20016298,41.665485395],[-71.200170834,41.665422777],[-71.200200228,41.66535843],[-71.200202354,41.665353771],[-71.20023277,41.665299147],[-71.200251869,41.665245065],[-71.20027191,41.665185154],[-71.200297962,41.665131136],[-71.200325795,41.665074538],[-71.200357992,41.665017335],[-71.200390235,41.664956861],[-71.200422471,41.664897645],[-71.200452,41.664843682],[-71.200484069,41.664794299],[-71.20053002,41.664750258],[-71.200560484,41.664691724],[-71.200590177,41.664628636],[-71.200617952,41.66457787],[-71.200651981,41.664513467],[-71.200690356,41.664452392],[-71.200724215,41.664398486],[-71.200742605,41.664332624],[-71.20075743,41.664272654],[-71.200777431,41.664214687],[-71.200801868,41.664153506],[-71.20082877,41.664100131],[-71.20085308,41.664046794],[-71.200884301,41.66399606],[-71.200915481,41.663947338],[-71.200939029,41.663887436],[-71.200957239,41.663834038],[-71.20103765,41.663698129],[-71.201073243,41.663644868],[-71.201131528,41.663591139],[-71.201174941,41.663541854],[-71.201221872,41.663489995],[-71.201271354,41.663440748],[-71.201305281,41.663384875],[-71.201333024,41.663334132],[-71.201368866,41.663266509],[-71.201400974,41.663215137],[-71.201431415,41.663161153],[-71.201462723,41.663104587],[-71.20149572,41.663051959],[-71.201537531,41.662992859],[-71.201579302,41.662935703],[-71.201614125,41.662877225],[-71.201646271,41.662823886],[-71.20168008,41.66277389],[-71.201721042,41.662713484],[-71.201775804,41.66266297],[-71.201824306,41.662620879],[-71.201861575,41.662574186],[-71.201900735,41.662520933],[-71.201940688,41.662467705],[-71.201997066,41.662423737],[-71.202061449,41.662370047],[-71.202115275,41.662324104],[-71.202157716,41.662280031],[-71.202190664,41.662231336],[-71.202214972,41.662177954],[-71.202250506,41.662130569],[-71.202290455,41.662077982],[-71.202345261,41.662024221],[-71.202393078,41.661971699],[-71.20245908,41.66192389],[-71.202515358,41.661888429],[-71.202575115,41.661852335],[-71.202648042,41.661810467],[-71.202714755,41.661773798],[-71.202711086,41.66172933],[-71.202692205,41.661710231],[-71.202617669,41.66168415],[-71.20256918,41.661664174],[-71.202642339,41.661664775],[-71.202693988,41.661647551],[-71.202746976,41.661597673],[-71.202809225,41.661570094],[-71.202885361,41.661546575],[-71.202968226,41.661538739],[-71.203033188,41.661504649],[-71.203099183,41.661458143],[-71.20314428,41.661413459],[-71.203170334,41.661358136],[-71.203179145,41.661292273],[-71.203190415,41.661235517],[-71.203198256,41.661174842],[-71.203209566,41.661116143],[-71.203224467,41.661052239],[-71.20326102,41.660995069],[-71.203289645,41.660944327],[-71.203323576,41.660887127],[-71.203356567,41.660835139],[-71.203404346,41.660783944],[-71.20342301,41.660757303],[-71.203472878,41.660702729],[-71.203519138,41.660656721],[-71.203572513,41.660602086],[-71.203619658,41.660549448],[-71.203662375,41.660491448],[-71.203696177,41.660442114],[-71.203735353,41.660378158],[-71.203766499,41.660316148],[-71.203802122,41.660248844],[-71.203834155,41.660192897],[-71.203875078,41.660133542],[-71.203919587,41.660076895],[-71.20396227,41.660019581],[-71.204004107,41.659960274],[-71.204040593,41.659897614],[-71.204070854,41.659835648],[-71.204102012,41.659777663],[-71.204126061,41.659720323],[-71.204142965,41.659664977],[-71.204165261,41.659610994],[-71.204199074,41.659559008],[-71.204243574,41.659511028],[-71.204296926,41.659461036],[-71.204352092,41.659407732],[-71.204402776,41.659347762],[-71.204437098,41.659298018],[-71.204444619,41.659287129],[-71.204481094,41.659226459],[-71.204514042,41.659163813],[-71.204544278,41.659100497],[-71.204580793,41.659037838],[-71.204624361,41.658979884],[-71.204668884,41.658919898],[-71.20471069,41.658853891],[-71.204750769,41.658785225],[-71.204791685,41.658720588],[-71.20482106,41.658651918],[-71.204852207,41.658582635],[-71.204890475,41.658516618],[-71.20493586,41.658454668],[-71.204982133,41.65839201],[-71.205027503,41.65832672],[-71.205064929,41.658258071],[-71.205107591,41.65819808],[-71.205158331,41.65813875],[-71.205207265,41.658074087],[-71.205257078,41.658010775],[-71.20530779,41.657950805],[-71.205359386,41.657890813],[-71.205407433,41.657826857],[-71.205455464,41.657759515],[-71.205500842,41.657692213],[-71.205540899,41.657628259],[-71.205576516,41.657561594],[-71.205612995,41.657492943],[-71.205653055,41.657428279],[-71.205693081,41.657370957],[-71.205710013,41.657308979],[-71.205729608,41.657244972],[-71.20575631,41.657186975],[-71.205783013,41.657135656],[-71.205808838,41.657083009],[-71.205839971,41.657023033],[-71.205879134,41.656961043],[-71.205922715,41.656906383],[-71.205966303,41.656857051],[-71.206003696,41.656801757],[-71.206037513,41.656741743],[-71.20607577,41.656684439],[-71.206120271,41.656628477],[-71.206159397,41.656574491],[-71.206190253,41.656515064],[-71.206217281,41.656445839],[-71.206242204,41.65637654],[-71.206269791,41.656311868],[-71.206301847,41.656243205],[-71.206334781,41.656175916],[-71.206365063,41.656115229],[-71.206399764,41.656061895],[-71.206447784,41.656009944],[-71.206489608,41.655952626],[-71.206507417,41.655891977],[-71.206517231,41.655832633],[-71.20653505,41.655776626],[-71.206555534,41.655717973],[-71.206562679,41.655661984],[-71.206575149,41.655608661],[-71.206600967,41.65555734],[-71.206625024,41.655504024],[-71.206640141,41.65544538],[-71.20664908,41.655384022],[-71.206668673,41.655326693],[-71.206676727,41.655265401],[-71.206676773,41.655201367],[-71.206678555,41.655144701],[-71.206688387,41.655081378],[-71.206687516,41.655024706],[-71.206676002,41.654961397],[-71.20665914,41.654907359],[-71.206636963,41.654842057],[-71.206614828,41.65478071],[-71.206606846,41.654725346],[-71.206596211,41.654670044],[-71.206594474,41.654609344],[-71.206606056,41.65454335],[-71.206641661,41.654492031],[-71.206690586,41.654442049],[-71.206735043,41.654382085],[-71.206789312,41.654323426],[-71.206842677,41.654282786],[-71.206896907,41.654239473],[-71.206951171,41.654195473],[-71.207001855,41.654147531],[-71.207048157,41.654097543],[-71.207095285,41.654053571],[-71.207153991,41.654004894],[-71.20721088,41.653966916],[-71.207269605,41.653920961],[-71.207315851,41.653876301],[-71.207356764,41.653824331],[-71.207408347,41.653773007],[-71.207453703,41.65372967],[-71.207499943,41.653686382],[-71.207548852,41.653639693],[-71.207598666,41.653595064],[-71.207642253,41.653551724],[-71.207694707,41.6535031],[-71.207744524,41.65345113],[-71.207800578,41.653395151],[-71.207840576,41.653349811],[-71.207881535,41.653301181],[-71.207924243,41.653256511],[-71.20796869,41.653211869],[-71.208023839,41.653153898],[-71.208060311,41.653105897],[-71.208094127,41.653051919],[-71.208125254,41.652999262],[-71.208161735,41.652935938],[-71.208199124,41.652873942],[-71.208224027,41.652821955],[-71.208240072,41.652766675],[-71.208256973,41.652703987],[-71.208258848,41.652646659],[-71.208252627,41.652592648],[-71.208233112,41.65253865],[-71.208203769,41.652540634],[-71.2081673,41.652594604],[-71.208141495,41.652650614],[-71.208109506,41.652657943],[-71.208076636,41.652617243],[-71.208084675,41.652545248],[-71.208094487,41.652485904],[-71.208106964,41.652430592],[-71.208117645,41.652374635],[-71.208118575,41.652317281],[-71.208116846,41.652254638],[-71.208110637,41.652191274],[-71.208102681,41.652129941],[-71.208102769,41.652069955],[-71.208103664,41.652006609],[-71.208109024,41.651940645],[-71.208110874,41.651875289],[-71.208110907,41.651813976],[-71.208105601,41.651753314],[-71.208102981,41.651691948],[-71.208103886,41.651633291],[-71.208115482,41.65157729],[-71.208128848,41.651507321],[-71.208137782,41.651453304],[-71.208159175,41.651388638],[-71.208174301,41.651327318],[-71.20818858,41.651271324],[-71.208205496,41.651218676],[-71.208241068,41.651160656],[-71.208281993,41.651105347],[-71.208315793,41.651048031],[-71.20834161,41.650996046],[-71.20833185,41.6509627],[-71.208250969,41.65096668],[-71.208180761,41.65094999],[-71.208112315,41.650927953],[-71.208035899,41.650915273],[-71.207954108,41.650917901],[-71.207951433,41.650949911],[-71.207971835,41.650996593],[-71.20790961,41.651041899],[-71.20783314,41.651047857],[-71.207754928,41.651034508],[-71.207682073,41.65100983],[-71.207615411,41.650977781],[-71.207563026,41.65092379],[-71.207507962,41.650875762],[-71.207449312,41.650825048],[-71.207404923,41.650776384],[-71.207368499,41.650726367],[-71.207337407,41.65067705],[-71.207307233,41.650627027],[-71.207273478,41.650600344],[-71.207248568,41.650627015],[-71.207248531,41.650682335],[-71.207264495,41.650739023],[-71.207314233,41.650798359],[-71.2073551,41.650843698],[-71.207388844,41.650893045],[-71.207419018,41.650943045],[-71.207456297,41.650999719],[-71.207481153,41.651052428],[-71.207492673,41.651107755],[-71.207494411,41.651175064],[-71.207494387,41.651241065],[-71.20749436,41.651307729],[-71.207489877,41.651361735],[-71.207485401,41.651421069],[-71.207480022,41.651477726],[-71.207447105,41.651521711],[-71.207355575,41.651520358],[-71.207268453,41.65151499],[-71.207194669,41.651513636],[-71.207119136,41.651487624],[-71.207088967,41.651422941],[-71.207085431,41.651368938],[-71.207085474,41.65131229],[-71.207086413,41.651239614],[-71.207096205,41.651178281],[-71.207114905,41.651115643],[-71.207138074,41.651056288],[-71.207143419,41.651000317],[-71.207155049,41.650943631],[-71.207182623,41.650887626],[-71.207185338,41.650833638],[-71.207159597,41.650780973],[-71.207142736,41.650713649],[-71.207138357,41.650643611],[-71.207139248,41.650581615],[-71.207165062,41.650530293],[-71.207234426,41.65050433],[-71.207279786,41.650453036],[-71.207283375,41.650394339],[-71.207282512,41.650328999],[-71.207280817,41.65027237],[-71.207283518,41.650201002],[-71.20729777,41.650144345],[-71.207318233,41.650083016],[-71.207344044,41.650025725],[-71.207371639,41.649971733],[-71.207392111,41.649901736],[-71.207405503,41.649846403],[-71.207426853,41.649784413],[-71.207458887,41.649726429],[-71.207500694,41.649678442],[-71.207543375,41.649625791],[-71.207587877,41.649568479],[-71.207633239,41.649523176],[-71.207666157,41.649471849],[-71.207691075,41.649416523],[-71.207716907,41.649361176],[-71.207752489,41.649300549],[-71.207764073,41.649247201],[-71.207784538,41.649191886],[-71.20781565,41.649175911],[-71.207886762,41.649194616],[-71.207976539,41.649198618],[-71.208065399,41.649196671],[-71.20813831,41.649181351],[-71.208209417,41.649160697],[-71.208283206,41.649146751],[-71.208361415,41.649146744],[-71.208442318,41.64911747],[-71.208512537,41.649104133],[-71.20859431,41.649104843],[-71.208674338,41.649086865],[-71.208740121,41.649036262],[-71.208780145,41.648970934],[-71.20879352,41.648912262],[-71.208803322,41.648854931],[-71.208812242,41.648790256],[-71.208828339,41.648722924],[-71.20884304,41.648667937],[-71.20886403,41.648610908],[-71.208891384,41.64854907],[-71.208929804,41.648507957],[-71.20900873,41.648497614],[-71.209092752,41.648499839],[-71.209170878,41.648497704],[-71.209223606,41.64846159],[-71.209225801,41.648407395],[-71.209205246,41.648340679],[-71.209148665,41.648291069],[-71.209075346,41.648254773],[-71.209036392,41.648204476],[-71.209061262,41.648145811],[-71.209095313,41.64807953],[-71.209125206,41.648015754],[-71.209134947,41.6479584],[-71.209135419,41.647894115],[-71.209146407,41.647864413],[-71.209155265,41.647840468],[-71.209188539,41.647784271],[-71.209219315,41.647727473],[-71.209245814,41.647665633],[-71.209290857,41.647609374],[-71.209320809,41.647559503],[-71.209356616,41.647502648],[-71.209357966,41.647446576],[-71.209332434,41.647388058],[-71.209321186,41.64733328],[-71.209340231,41.647281529],[-71.20940558,41.647252307],[-71.20948106,41.647228096],[-71.209549758,41.647193211],[-71.209611747,41.647165284],[-71.209683016,41.647141772],[-71.209756803,41.6471144],[-71.209817104,41.647082055],[-71.20983523,41.647017724],[-71.209843213,41.646950897],[-71.2098555,41.646896659],[-71.209877835,41.646838604],[-71.209906924,41.646783677],[-71.209941879,41.646726249],[-71.209954106,41.646665081],[-71.20995298,41.646610238],[-71.209973637,41.646552201],[-71.21001033,41.646501638],[-71.210041071,41.646445457],[-71.210057521,41.646387434],[-71.210076494,41.646324339],[-71.210069387,41.646263855],[-71.210008646,41.64621746],[-71.209932941,41.646203844],[-71.20984724,41.646202873],[-71.209769984,41.646208761],[-71.209702053,41.646229172],[-71.209634155,41.646255849],[-71.209582915,41.646259837],[-71.209580834,41.646193647],[-71.209604847,41.646128645],[-71.209616219,41.646067475],[-71.20963603,41.64600125],[-71.209654106,41.64593438],[-71.209675555,41.645863104],[-71.209694511,41.645803829],[-71.209708483,41.645747674],[-71.209729086,41.645681428],[-71.209748012,41.6456152],[-71.209768676,41.645555884],[-71.209797726,41.645495948],[-71.209820083,41.645439769],[-71.209835748,41.645386774],[-71.209848872,41.645329382],[-71.209861955,41.645267599],[-71.209871653,41.645205808],[-71.209880585,41.645151584],[-71.209889409,41.645080963],[-71.209896577,41.645012259],[-71.209903778,41.644949844],[-71.209910967,41.644889967],[-71.209918152,41.644824396],[-71.20992871,41.644761326],[-71.209939289,41.6447002],[-71.209947351,41.644642795],[-71.20995955,41.644574081],[-71.209970876,41.644502825],[-71.209978892,41.644435358],[-71.209982698,41.644368543],[-71.209991513,41.64429982],[-71.209998694,41.644234912],[-71.210006737,41.644174992],[-71.210014877,41.644120766],[-71.210033816,41.644058312],[-71.210064567,41.643999616],[-71.210079354,41.643945361],[-71.210100853,41.64388289],[-71.210131613,41.643829248],[-71.210167422,41.643778088],[-71.21020243,41.643728801],[-71.210230648,41.643670738],[-71.210259694,41.643611397],[-71.210292981,41.643558378],[-71.21031958,41.643507858],[-71.21034449,41.643452966],[-71.21036939,41.643400543],[-71.210403473,41.643339934],[-71.210431707,41.64328505],[-71.210467466,41.643224422],[-71.210492319,41.643161937],[-71.21050792,41.64310263],[-71.210515946,41.643039577],[-71.210521447,41.642975305],[-71.210525239,41.642904694],[-71.210526585,41.642849239],[-71.210528773,41.642789395],[-71.210530144,41.642735198],[-71.21052975,41.642666475],[-71.210529335,41.642595876],[-71.210528998,41.642541743],[-71.210531126,41.642474901],[-71.210536613,41.642406833],[-71.210541324,41.642348848],[-71.210550173,41.642285774],[-71.210558243,41.642226517],[-71.210568827,41.642171017],[-71.210580193,41.642104175],[-71.210583349,41.642086985],[-71.210591631,41.642041771],[-71.210606348,41.641975532],[-71.210615249,41.641921308],[-71.21062418,41.641867085],[-71.21064232,41.641805886],[-71.210676426,41.641753487],[-71.21070978,41.641705454],[-71.210712039,41.641663883],[-71.210725897,41.641591971],[-71.210766213,41.641589328],[-71.210821422,41.641262755],[-71.210840888,41.64114354],[-71.210925893,41.641169116],[-71.210975829,41.641087644],[-71.210970442,41.64103096],[-71.211071749,41.640833348],[-71.211083375,41.640810646],[-71.211021121,41.640790067],[-71.211046216,41.640768518],[-71.211116004,41.640781546],[-71.21120609,41.640672846],[-71.211451099,41.640334239],[-71.211498155,41.640194191],[-71.21129965,41.640154518],[-71.211324098,41.640025253],[-71.211382858,41.640015612],[-71.211382009,41.639871281],[-71.211375126,41.639842334],[-71.211329462,41.639793325],[-71.211313148,41.639732886],[-71.211365845,41.639694895],[-71.21139637,41.639679466],[-71.211426161,41.639664424],[-71.211454535,41.639632227],[-71.211457513,41.63957298],[-71.211465554,41.639513082],[-71.211475289,41.639449369],[-71.211488185,41.639394607],[-71.211489242,41.639390081],[-71.211544466,41.639352714],[-71.211626643,41.639328496],[-71.211700414,41.63930245],[-71.211775022,41.639273204],[-71.21184879,41.639247752],[-71.211929315,41.639224787],[-71.212015693,41.639201814],[-71.212102922,41.639179461],[-71.21218767,41.639159639],[-71.212276628,41.639146117],[-71.212368138,41.639134477],[-71.212455435,41.639124107],[-71.212536879,41.639113768],[-71.212617497,41.639110974],[-71.2126449,41.639104799],[-71.212646146,41.639071436],[-71.212650019,41.639071148],[-71.212649686,41.639063806],[-71.212647299,41.639010972],[-71.212646999,41.639004463],[-71.212646446,41.63900451],[-71.212593718,41.638897062],[-71.212532037,41.638865509],[-71.212445476,41.638861359],[-71.212372416,41.638864766],[-71.212282591,41.638874513],[-71.212197004,41.638891153],[-71.212102961,41.63890345],[-71.21202752,41.63892828],[-71.2119706,41.638963128],[-71.211911171,41.638999867],[-71.211826439,41.639022867],[-71.211740882,41.639039507],[-71.211670413,41.63905678],[-71.211594054,41.639075318],[-71.21152504,41.639053465],[-71.211524552,41.639052543],[-71.211524445,41.639052509],[-71.211507445,41.63902051],[-71.211542298,41.638991631],[-71.211490022,41.638955268],[-71.211419353,41.638935308],[-71.211343747,41.638935576],[-71.211343613,41.638935507],[-71.211343446,41.638935509],[-71.211337862,41.638932553],[-71.211275462,41.638900506],[-71.211229874,41.638855293],[-71.211220081,41.638843775],[-71.211188446,41.63880751],[-71.211158132,41.638766545],[-71.211152018,41.638758497],[-71.211151803,41.638757992],[-71.211151446,41.638757509],[-71.211099445,41.638640509],[-71.211057445,41.63853351],[-71.211052446,41.638521509],[-71.211017445,41.63843251],[-71.210876446,41.63843451],[-71.210659445,41.638444509],[-71.210571445,41.638449509],[-71.210243445,41.63846051],[-71.209930445,41.63847551],[-71.209914445,41.638565509],[-71.209633445,41.63859351],[-71.209274445,41.63863651],[-71.208839445,41.638739509],[-71.208465444,41.63884951],[-71.208152444,41.63897751],[-71.208099444,41.63900151],[-71.207725444,41.63918351],[-71.207527444,41.63929551],[-71.207450444,41.63934251],[-71.207275444,41.63944451],[-71.206924444,41.63965851],[-71.206703444,41.63979351],[-71.206451444,41.63993751],[-71.206259444,41.64004551],[-71.206103443,41.64013251],[-71.205932444,41.64022751],[-71.205535444,41.64045551],[-71.205291444,41.64058151],[-71.204963444,41.64074551],[-71.204559444,41.64092851],[-71.204406443,41.640994511],[-71.204345444,41.64102751],[-71.204284444,41.64132151],[-71.204200443,41.641809511],[-71.204177443,41.641872511],[-71.204052444,41.64230551],[-71.204048443,41.642321511],[-71.203872443,41.642824511],[-71.203849443,41.642883511],[-71.203788443,41.643064511],[-71.203704443,41.64334151],[-71.203544444,41.643812511],[-71.203521443,41.64388451],[-71.203414443,41.644188511],[-71.203300443,41.644488511],[-71.203186443,41.644724511],[-71.203002443,41.645047511],[-71.202949443,41.645111512],[-71.202850443,41.645235511],[-71.202606443,41.645546511],[-71.202369443,41.645856511],[-71.202178443,41.646108511],[-71.202064442,41.646331511],[-71.202033443,41.646498511],[-71.202034443,41.646682511],[-71.202049443,41.646912511],[-71.202125443,41.647221511],[-71.202186443,41.647535511],[-71.202308443,41.647925511],[-71.202392443,41.648157511],[-71.202423443,41.648296512],[-71.202438443,41.648336512],[-71.202453443,41.648539512],[-71.202446443,41.648696512],[-71.202430443,41.648827512],[-71.202392443,41.648963512],[-71.202331443,41.649126512],[-71.202285443,41.649222512],[-71.202049443,41.649582512],[-71.201805443,41.649961512],[-71.201725443,41.650056512],[-71.201499442,41.650331512],[-71.201202443,41.650751512],[-71.200561443,41.651633512],[-71.200530442,41.651674512],[-71.200264443,41.652048513],[-71.200225443,41.652094512],[-71.200004442,41.652400513],[-71.199867442,41.652565512],[-71.199844442,41.652592513],[-71.199699443,41.652725513],[-71.199630442,41.652776513],[-71.199585443,41.652804513],[-71.199447443,41.652897512],[-71.199264442,41.652990513],[-71.199195443,41.653023513],[-71.199150442,41.653047513],[-71.198768443,41.653230513],[-71.197822442,41.653707513],[-71.197555442,41.653865513],[-71.197181442,41.654084513],[-71.197082442,41.654144513],[-71.196388442,41.654577513],[-71.196228442,41.654688513],[-71.196121441,41.654757513],[-71.195518441,41.655237513],[-71.195228441,41.655472513],[-71.194755441,41.655851514],[-71.194198441,41.656289513],[-71.19399244,41.656482513],[-71.193229441,41.657190514],[-71.19297744,41.657429514],[-71.19268844,41.657718514],[-71.19252044,41.657929514],[-71.19243644,41.658052514],[-71.19242044,41.658084514],[-71.19231444,41.658266514],[-71.19218444,41.658507514],[-71.19209244,41.658675514],[-71.19202444,41.658794514],[-71.19174144,41.659263514],[-71.191688441,41.659336514],[-71.19138344,41.659770514],[-71.19135244,41.659815515],[-71.19093344,41.660400515],[-71.19083344,41.660546514],[-71.19075044,41.660651515],[-71.190696439,41.660738514],[-71.19063544,41.660833514],[-71.190482439,41.661097515],[-71.19035344,41.661357514],[-71.19026144,41.661525515],[-71.18988844,41.662262515],[-71.189803439,41.662425515],[-71.189567439,41.662889515],[-71.18941744,41.663168515],[-71.189353439,41.663289515],[-71.189196439,41.663594515],[-71.18907144,41.663822515],[-71.189018439,41.663917515],[-71.18897244,41.663995515],[-71.18893444,41.664072515],[-71.188881439,41.664151515],[-71.188842439,41.664209515],[-71.188789439,41.664264515],[-71.188735439,41.664323515],[-71.18865944,41.664410515],[-71.188575439,41.664498515],[-71.188491439,41.664580515],[-71.18836944,41.664718515],[-71.188125439,41.664993515],[-71.18794244,41.665190516],[-71.187675439,41.665505516],[-71.187599439,41.665601516],[-71.187477439,41.665766515],[-71.187431439,41.665839516],[-71.187263439,41.666103516],[-71.187141439,41.666304516],[-71.187101425,41.666376471],[-71.18534638,41.666037812],[-71.185168773,41.66659546],[-71.185989439,41.666731516],[-71.186279439,41.666779515],[-71.186813439,41.666891516],[-71.186798439,41.666923516],[-71.186683439,41.667132516],[-71.186630439,41.667241516],[-71.186569439,41.667346516],[-71.186454439,41.667600516],[-71.186347438,41.667859516],[-71.186317439,41.667936516],[-71.186248439,41.668117516],[-71.186157439,41.668331516],[-71.185989439,41.668757516],[-71.185920438,41.668916516],[-71.185813439,41.669193517],[-71.185722438,41.669415516],[-71.185607438,41.669692516],[-71.185531438,41.669892517],[-71.185501439,41.669974517],[-71.185394438,41.670259517],[-71.185310439,41.670504516],[-71.185218438,41.670753517],[-71.185134439,41.671003517],[-71.184982438,41.671465517],[-71.184974439,41.671497517],[-71.184921439,41.671637516],[-71.184905438,41.671697517],[-71.184844438,41.671857517],[-71.184789438,41.672022517],[-71.184728438,41.672186517],[-71.184674438,41.672316517],[-71.184643439,41.672392517],[-71.184567439,41.672603517],[-71.184467439,41.672805517],[-71.184328438,41.673071517]]]]}}"}, +{"type": "precinct", "typeId": 3302, "areaId": 25970, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":309,\"NAME\":\"3302\",\"SHAPE_Length\":0.12284005926121,\"SHAPE_Area\":-0.00068028302362207},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.162120506,41.665743421],[-71.162161963,41.665750985],[-71.162348431,41.665784516],[-71.165180432,41.666301516],[-71.167375196,41.666701976],[-71.169743954,41.667133995],[-71.170725433,41.667312516],[-71.171036434,41.667369516],[-71.173817435,41.667876516],[-71.176017435,41.668277517],[-71.176017296,41.668277875],[-71.17615729,41.668303397],[-71.175881282,41.671550673],[-71.176086436,41.671588517],[-71.176129435,41.671596517],[-71.176942713,41.671745726],[-71.177544436,41.671855517],[-71.177642436,41.671873517],[-71.177738436,41.671891517],[-71.17778605,41.671900445],[-71.17782793,41.671908128],[-71.177896436,41.671920517],[-71.177990436,41.671937517],[-71.178360436,41.671909517],[-71.178944437,41.672071517],[-71.179146437,41.672149517],[-71.181260437,41.672537517],[-71.181391438,41.672546517],[-71.181823437,41.672592517],[-71.181859438,41.672599517],[-71.181960437,41.672620517],[-71.182211438,41.672671517],[-71.182445438,41.672718517],[-71.182779438,41.672777517],[-71.182838438,41.672788517],[-71.183184438,41.672850517],[-71.183272438,41.672865517],[-71.183652439,41.672933517],[-71.184123438,41.673039517],[-71.184328438,41.673071517],[-71.184467439,41.672805517],[-71.184567439,41.672603517],[-71.184643439,41.672392517],[-71.184674438,41.672316517],[-71.184728438,41.672186517],[-71.184789438,41.672022517],[-71.184844438,41.671857517],[-71.184905438,41.671697517],[-71.184921439,41.671637516],[-71.184974439,41.671497517],[-71.184982438,41.671465517],[-71.185134439,41.671003517],[-71.185218438,41.670753517],[-71.185310439,41.670504516],[-71.185394438,41.670259517],[-71.185501439,41.669974517],[-71.185531438,41.669892517],[-71.185607438,41.669692516],[-71.185722438,41.669415516],[-71.185813439,41.669193517],[-71.185920438,41.668916516],[-71.185989439,41.668757516],[-71.186157439,41.668331516],[-71.186248439,41.668117516],[-71.186317439,41.667936516],[-71.186347438,41.667859516],[-71.186454439,41.667600516],[-71.186569439,41.667346516],[-71.186630439,41.667241516],[-71.186683439,41.667132516],[-71.186798439,41.666923516],[-71.186813439,41.666891516],[-71.186279439,41.666779515],[-71.185989439,41.666731516],[-71.185168773,41.66659546],[-71.18534638,41.666037812],[-71.187101425,41.666376471],[-71.187141439,41.666304516],[-71.187263439,41.666103516],[-71.187431439,41.665839516],[-71.187477439,41.665766515],[-71.187599439,41.665601516],[-71.187675439,41.665505516],[-71.18794244,41.665190516],[-71.188125439,41.664993515],[-71.18836944,41.664718515],[-71.188491439,41.664580515],[-71.188575439,41.664498515],[-71.18865944,41.664410515],[-71.188735439,41.664323515],[-71.188789439,41.664264515],[-71.188842439,41.664209515],[-71.188881439,41.664151515],[-71.18893444,41.664072515],[-71.18897244,41.663995515],[-71.189018439,41.663917515],[-71.18907144,41.663822515],[-71.189196439,41.663594515],[-71.189353439,41.663289515],[-71.18941744,41.663168515],[-71.189567439,41.662889515],[-71.189803439,41.662425515],[-71.18988844,41.662262515],[-71.19026144,41.661525515],[-71.19035344,41.661357514],[-71.190482439,41.661097515],[-71.19063544,41.660833514],[-71.190696439,41.660738514],[-71.19075044,41.660651515],[-71.19083344,41.660546514],[-71.19093344,41.660400515],[-71.19135244,41.659815515],[-71.19138344,41.659770514],[-71.191688441,41.659336514],[-71.19174144,41.659263514],[-71.19202444,41.658794514],[-71.19209244,41.658675514],[-71.19218444,41.658507514],[-71.19231444,41.658266514],[-71.19242044,41.658084514],[-71.19243644,41.658052514],[-71.19252044,41.657929514],[-71.19268844,41.657718514],[-71.19297744,41.657429514],[-71.193229441,41.657190514],[-71.19399244,41.656482513],[-71.194198441,41.656289513],[-71.194755441,41.655851514],[-71.195228441,41.655472513],[-71.195518441,41.655237513],[-71.196121441,41.654757513],[-71.196228442,41.654688513],[-71.196388442,41.654577513],[-71.197082442,41.654144513],[-71.197181442,41.654084513],[-71.197555442,41.653865513],[-71.197822442,41.653707513],[-71.198768443,41.653230513],[-71.199150442,41.653047513],[-71.199195443,41.653023513],[-71.199264442,41.652990513],[-71.199447443,41.652897512],[-71.199585443,41.652804513],[-71.199630442,41.652776513],[-71.199699443,41.652725513],[-71.199844442,41.652592513],[-71.199867442,41.652565512],[-71.200004442,41.652400513],[-71.200225443,41.652094512],[-71.200264443,41.652048513],[-71.200530442,41.651674512],[-71.200561443,41.651633512],[-71.201202443,41.650751512],[-71.201499442,41.650331512],[-71.201725443,41.650056512],[-71.201805443,41.649961512],[-71.202049443,41.649582512],[-71.202285443,41.649222512],[-71.202331443,41.649126512],[-71.202392443,41.648963512],[-71.202430443,41.648827512],[-71.202446443,41.648696512],[-71.202453443,41.648539512],[-71.202438443,41.648336512],[-71.202423443,41.648296512],[-71.202392443,41.648157511],[-71.202308443,41.647925511],[-71.202186443,41.647535511],[-71.202125443,41.647221511],[-71.202049443,41.646912511],[-71.202034443,41.646682511],[-71.202033443,41.646498511],[-71.202064442,41.646331511],[-71.202178443,41.646108511],[-71.202369443,41.645856511],[-71.202606443,41.645546511],[-71.202850443,41.645235511],[-71.202949443,41.645111512],[-71.203002443,41.645047511],[-71.203186443,41.644724511],[-71.203300443,41.644488511],[-71.203414443,41.644188511],[-71.203521443,41.64388451],[-71.203544444,41.643812511],[-71.203704443,41.64334151],[-71.203788443,41.643064511],[-71.203849443,41.642883511],[-71.203872443,41.642824511],[-71.204048443,41.642321511],[-71.204052444,41.64230551],[-71.204177443,41.641872511],[-71.204200443,41.641809511],[-71.204284444,41.64132151],[-71.204345444,41.64102751],[-71.204239443,41.64107051],[-71.204170444,41.64110351],[-71.204109444,41.641131511],[-71.203750443,41.641268511],[-71.203323443,41.641443511],[-71.202690442,41.641653511],[-71.202102443,41.64184051],[-71.201675442,41.641952511],[-71.201011442,41.642118511],[-71.200477442,41.642241511],[-71.200309442,41.64227151],[-71.199928442,41.642341511],[-71.199760442,41.642371511],[-71.198974442,41.64248151],[-71.198143442,41.64256051],[-71.197486441,41.64261851],[-71.196838441,41.642652511],[-71.196327441,41.642671511],[-71.195877441,41.642666511],[-71.195472441,41.64265651],[-71.19496844,41.642630511],[-71.19431344,41.642575511],[-71.19351944,41.642482511],[-71.19318344,41.642425511],[-71.19270344,41.642349511],[-71.191505439,41.642151511],[-71.190788439,41.642034511],[-71.190536439,41.641985511],[-71.189621439,41.641840511],[-71.188667438,41.641678511],[-71.188227438,41.641610511],[-71.187790438,41.641542511],[-71.187522438,41.641493511],[-71.187423438,41.641477511],[-71.187316438,41.641461511],[-71.187187437,41.641436511],[-71.186813438,41.64138951],[-71.186363438,41.641344511],[-71.185989438,41.641328511],[-71.185554437,41.641314511],[-71.185165437,41.641321511],[-71.184791437,41.641356511],[-71.184188437,41.641430511],[-71.183746437,41.641520511],[-71.183695436,41.641529511],[-71.183456437,41.641575511],[-71.182846436,41.641748511],[-71.182273436,41.641957511],[-71.181800436,41.642164511],[-71.181373435,41.642393511],[-71.180984435,41.642626511],[-71.180633435,41.642885512],[-71.180313436,41.643129511],[-71.180015435,41.643396511],[-71.179855435,41.643570512],[-71.179672436,41.643772511],[-71.179122435,41.644449511],[-71.178290435,41.645500512],[-71.177970435,41.645903512],[-71.177726434,41.646200512],[-71.177032435,41.647064512],[-71.176467434,41.647773512],[-71.176109434,41.648226513],[-71.175026434,41.649584513],[-71.174026434,41.650836513],[-71.172904434,41.652231513],[-71.172042433,41.653324513],[-71.171935433,41.653452514],[-71.171836434,41.653580513],[-71.171119433,41.654471514],[-71.169860433,41.656040514],[-71.169563433,41.656415514],[-71.168243433,41.658070515],[-71.167767432,41.658664515],[-71.167343432,41.659195515],[-71.166732432,41.659967515],[-71.166053432,41.660818515],[-71.165664612,41.661304446],[-71.165020432,41.662109516],[-71.164272431,41.663039516],[-71.163612431,41.663858516],[-71.163528432,41.663959516],[-71.163327431,41.664217516],[-71.162772431,41.664926516],[-71.162368431,41.665426516],[-71.162120506,41.665743421]]]]}}"}, +{"type": "precinct", "typeId": 3303, "areaId": 25968, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":307,\"NAME\":\"3303\",\"SHAPE_Length\":0.12910442605154,\"SHAPE_Area\":-0.00059995553053951},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.134806813,41.638902863],[-71.134572562,41.642408283],[-71.13456942,41.642467513],[-71.134567745,41.642480357],[-71.134464799,41.644020755],[-71.133338662,41.653991379],[-71.133338421,41.653994515],[-71.133305113,41.654288373],[-71.132721946,41.659450324],[-71.132721421,41.659464516],[-71.132716265,41.65950061],[-71.132619517,41.660356897],[-71.136145488,41.661001142],[-71.136232422,41.661014516],[-71.137413423,41.661231516],[-71.137431423,41.661234516],[-71.137773422,41.661294516],[-71.137893423,41.661315517],[-71.138086423,41.661349516],[-71.138372422,41.661401516],[-71.138542423,41.661431516],[-71.139069423,41.661531517],[-71.139949424,41.661680516],[-71.140311423,41.661754516],[-71.140387423,41.661769516],[-71.140485423,41.661787516],[-71.140963424,41.661872516],[-71.141073424,41.661892516],[-71.141881424,41.662042516],[-71.142272424,41.662115517],[-71.143054424,41.662246516],[-71.143211424,41.662275516],[-71.144213425,41.662462516],[-71.144635425,41.662536516],[-71.144724425,41.662552516],[-71.144852425,41.662576516],[-71.145139425,41.662631516],[-71.145869425,41.662761516],[-71.146950426,41.662947516],[-71.147117426,41.662976516],[-71.148065426,41.663149517],[-71.148799426,41.663290516],[-71.149351427,41.663384517],[-71.149887427,41.663484516],[-71.150324427,41.663571516],[-71.150552427,41.663612516],[-71.150997427,41.663703516],[-71.151049427,41.663714517],[-71.151935427,41.663880516],[-71.153406428,41.664125517],[-71.153608428,41.664159516],[-71.153632428,41.664164517],[-71.155220429,41.664483516],[-71.15856893,41.665095395],[-71.159193289,41.665209325],[-71.15931043,41.665230516],[-71.161708431,41.665667516],[-71.161771431,41.665679516],[-71.161827431,41.665689516],[-71.162061777,41.665732707],[-71.162120506,41.665743421],[-71.162368431,41.665426516],[-71.162772431,41.664926516],[-71.163327431,41.664217516],[-71.163528432,41.663959516],[-71.163612431,41.663858516],[-71.164272431,41.663039516],[-71.165020432,41.662109516],[-71.165664612,41.661304446],[-71.166053432,41.660818515],[-71.166732432,41.659967515],[-71.167343432,41.659195515],[-71.167767432,41.658664515],[-71.168243433,41.658070515],[-71.169563433,41.656415514],[-71.169860433,41.656040514],[-71.171119433,41.654471514],[-71.171836434,41.653580513],[-71.171935433,41.653452514],[-71.171867433,41.653449514],[-71.171714433,41.653433514],[-71.171630433,41.653431514],[-71.171562434,41.653423513],[-71.171180433,41.653394514],[-71.171066433,41.653387514],[-71.170990433,41.653380514],[-71.170806433,41.653365513],[-71.170646433,41.653350514],[-71.170326433,41.653329514],[-71.170173433,41.653318514],[-71.170021433,41.653312514],[-71.169868432,41.653311514],[-71.169547433,41.653303513],[-71.169433433,41.653305513],[-71.169204432,41.653301514],[-71.169082433,41.653303513],[-71.168960432,41.653301514],[-71.168846432,41.653303513],[-71.168762432,41.653309514],[-71.168670432,41.653311514],[-71.168586432,41.653321514],[-71.168502432,41.653323513],[-71.168327432,41.653344513],[-71.168243432,41.653350514],[-71.168159432,41.653361514],[-71.168075432,41.653376514],[-71.167976432,41.653396514],[-71.167793432,41.653444514],[-71.167724432,41.653468514],[-71.167663432,41.653496514],[-71.167602432,41.653520513],[-71.167556432,41.653548514],[-71.167503432,41.653572514],[-71.167465432,41.653604514],[-71.167358432,41.653687514],[-71.167312432,41.653728514],[-71.167136432,41.653876514],[-71.167022431,41.653986513],[-71.166961431,41.654046514],[-71.166900432,41.654110514],[-71.166831432,41.654179514],[-71.166763432,41.654243514],[-71.166702432,41.654285514],[-71.166641432,41.654331514],[-71.166580432,41.654372514],[-71.166526432,41.654419514],[-71.166404432,41.654511514],[-71.166359431,41.654539514],[-71.166313432,41.654571514],[-71.166168431,41.654659514],[-71.166130431,41.654692514],[-71.166023432,41.654757514],[-71.165969431,41.654798514],[-71.165870431,41.654863514],[-71.165771432,41.654937514],[-71.165679431,41.655011514],[-71.165572432,41.655089514],[-71.165481431,41.655172514],[-71.165313431,41.655306514],[-71.165191431,41.655416514],[-71.165145432,41.655462514],[-71.165092431,41.655508514],[-71.165046431,41.655559514],[-71.164886431,41.655710514],[-71.164726431,41.655848514],[-71.164634431,41.655931515],[-71.164581431,41.655968515],[-71.164535431,41.655996514],[-71.164443431,41.656061514],[-71.164352431,41.656099514],[-71.164299431,41.656118514],[-71.164268431,41.656123515],[-71.164238431,41.656132514],[-71.164199431,41.656142514],[-71.164146431,41.656157514],[-71.164085431,41.656171514],[-71.164024431,41.656181515],[-71.163681431,41.656255514],[-71.163650431,41.656265515],[-71.163574431,41.656280515],[-71.163467431,41.656309514],[-71.163360431,41.656329514],[-71.16326143,41.656349514],[-71.163170431,41.656369514],[-71.163070431,41.656389514],[-71.16294843,41.656409514],[-71.162879431,41.656424514],[-71.16269643,41.656454515],[-71.162628431,41.656464514],[-71.162566431,41.656470514],[-71.16249843,41.656480515],[-71.16242243,41.656482514],[-71.16234643,41.656488514],[-71.16226943,41.656485514],[-71.162178431,41.656491515],[-71.16208643,41.656493515],[-71.16199443,41.656499515],[-71.16193843,41.656500515],[-71.161910431,41.656437515],[-71.16189543,41.656393514],[-71.16188043,41.656357515],[-71.161849431,41.656326514],[-71.16175843,41.656328514],[-71.16162143,41.656267514],[-71.16149943,41.656152514],[-71.16143743,41.656118514],[-71.16132343,41.656012515],[-71.16129343,41.655963514],[-71.16126243,41.655936514],[-71.16118643,41.655906514],[-71.16114043,41.655862514],[-71.16113243,41.655831515],[-71.16114843,41.655767514],[-71.16107943,41.655728514],[-71.16102643,41.655688514],[-71.16094943,41.655645514],[-71.16090443,41.655596514],[-71.160858429,41.655516514],[-71.16081243,41.655463515],[-71.16076643,41.655423515],[-71.160682429,41.655317514],[-71.16062943,41.655277514],[-71.16058343,41.655219514],[-71.160545429,41.655157514],[-71.16037743,41.654962514],[-71.16030143,41.654950514],[-71.160278429,41.654914514],[-71.16027043,41.654852514],[-71.16024743,41.654802515],[-71.160194429,41.654776514],[-71.16008743,41.654783515],[-71.15999543,41.654767514],[-71.159927429,41.654750514],[-71.159767429,41.654726515],[-71.159691429,41.654718514],[-71.15960643,41.654684515],[-71.15954543,41.654627515],[-71.159492429,41.654564514],[-71.159446429,41.654498514],[-71.15939343,41.654458514],[-71.15935543,41.654400514],[-71.159324429,41.654342514],[-71.159301429,41.654275515],[-71.159286429,41.654213514],[-71.159263429,41.654150514],[-71.159248429,41.654092514],[-71.159240429,41.654029514],[-71.159225429,41.653971514],[-71.15921743,41.653903514],[-71.159195429,41.653845514],[-71.15917943,41.653791514],[-71.15917943,41.653719514],[-71.159202429,41.653656514],[-71.159202429,41.653521514],[-71.159225429,41.653457514],[-71.159240429,41.653389514],[-71.159263429,41.653326514],[-71.159286429,41.653258514],[-71.159309429,41.653194514],[-71.159339429,41.653135514],[-71.159408429,41.652954514],[-71.15943143,41.652881514],[-71.159461429,41.652813514],[-71.159507429,41.652664514],[-71.159522429,41.652596514],[-71.159522429,41.652528514],[-71.159515429,41.652470514],[-71.159515429,41.652407513],[-71.15953043,41.652344514],[-71.159538429,41.652280514],[-71.15956843,41.652140514],[-71.159591429,41.652072514],[-71.15960743,41.652013514],[-71.159629429,41.651955514],[-71.159637429,41.651900513],[-71.159637429,41.651837514],[-71.159652429,41.651720514],[-71.15964543,41.651648513],[-71.159583429,41.651514513],[-71.159545429,41.651438514],[-71.159515429,41.651380514],[-71.159477429,41.651327514],[-71.159439429,41.651265514],[-71.159362429,41.651149514],[-71.15931643,41.651087513],[-71.159271429,41.651029513],[-71.159194429,41.650904513],[-71.159164429,41.650842514],[-71.159141429,41.650779514],[-71.159118429,41.650721514],[-71.159095429,41.650659513],[-71.159057429,41.650605514],[-71.158950429,41.650526514],[-71.158935429,41.650491514],[-71.158981429,41.650476513],[-71.159027429,41.650439513],[-71.159034429,41.650372514],[-71.159011429,41.650318514],[-71.158950429,41.650265513],[-71.158882429,41.650208513],[-71.158843429,41.650136513],[-71.158828429,41.650087513],[-71.158790428,41.650011513],[-71.158744429,41.649945514],[-71.158714428,41.649891513],[-71.158676429,41.649833513],[-71.158645429,41.649775513],[-71.158607429,41.649727513],[-71.158561429,41.649664513],[-71.158531429,41.649606513],[-71.158554429,41.649566513],[-71.158577428,41.649556514],[-71.158576428,41.649538514],[-71.158554429,41.649484513],[-71.158500428,41.649431513],[-71.158485429,41.649373513],[-71.158500428,41.649323514],[-71.158531429,41.649269513],[-71.158531429,41.649210513],[-71.158515429,41.649138513],[-71.158477429,41.649076513],[-71.158454429,41.649027513],[-71.158439428,41.648973514],[-71.158363428,41.648898513],[-71.158287428,41.648895514],[-71.158249428,41.648891513],[-71.158249428,41.648869513],[-71.158294429,41.648800513],[-71.158226428,41.648766513],[-71.158157429,41.648740513],[-71.158126429,41.648731513],[-71.158066429,41.648782513],[-71.157989429,41.648721513],[-71.157913428,41.648690513],[-71.157874428,41.648642513],[-71.157806429,41.648589513],[-71.157737428,41.648550513],[-71.157661428,41.648520513],[-71.157585428,41.648485514],[-71.157508428,41.648455513],[-71.157432428,41.648429513],[-71.157348428,41.648413513],[-71.157272428,41.648414513],[-71.157203428,41.648411513],[-71.157119428,41.648372513],[-71.157035428,41.648369513],[-71.156952428,41.648393513],[-71.156875428,41.648413513],[-71.156814428,41.648441513],[-71.156791428,41.648450513],[-71.156753428,41.648442513],[-71.156707428,41.648452513],[-71.156715428,41.648510513],[-71.156654428,41.648565513],[-71.156669428,41.648588513],[-71.156623428,41.648634513],[-71.156577428,41.648684513],[-71.156512428,41.648768513],[-71.154350427,41.648486513],[-71.154876427,41.646658513],[-71.154937427,41.646634512],[-71.154983428,41.646579513],[-71.155021428,41.646525513],[-71.155059428,41.646456513],[-71.155090427,41.646406513],[-71.155097428,41.646343512],[-71.155097428,41.646284512],[-71.155059428,41.646227512],[-71.155067427,41.646177513],[-71.155075427,41.646109512],[-71.155036427,41.646065513],[-71.154983428,41.646030512],[-71.155014427,41.645980513],[-71.154998427,41.645958513],[-71.154922428,41.645941513],[-71.154823427,41.645934512],[-71.154731428,41.645918513],[-71.154655428,41.645892513],[-71.154586427,41.645880513],[-71.154510427,41.645872513],[-71.154426427,41.645892513],[-71.154380428,41.645947513],[-71.154350427,41.646001513],[-71.154197427,41.646036513],[-71.154121427,41.646055513],[-71.154068427,41.646088512],[-71.154029427,41.646097513],[-71.154007427,41.646138513],[-71.153945427,41.646171513],[-71.153854427,41.646182513],[-71.153770427,41.646188512],[-71.153694427,41.646162513],[-71.153595427,41.646151513],[-71.153434427,41.646118513],[-71.153343427,41.646101513],[-71.153251427,41.646094513],[-71.153167427,41.646082513],[-71.153099427,41.646052512],[-71.153022427,41.646022513],[-71.152938427,41.646001513],[-71.152755427,41.645946513],[-71.152679427,41.645920513],[-71.152618427,41.645917513],[-71.152587427,41.645895512],[-71.152450427,41.645834512],[-71.152381426,41.645809513],[-71.152305426,41.645774513],[-71.152244426,41.645739512],[-71.152183426,41.645700512],[-71.152114427,41.645660512],[-71.152046426,41.645653513],[-71.151962427,41.645663513],[-71.151901427,41.645705513],[-71.151809426,41.645725513],[-71.151741426,41.645744513],[-71.151657426,41.645750513],[-71.151558426,41.645761513],[-71.151473427,41.645780513],[-71.151412426,41.645809513],[-71.151367426,41.645810513],[-71.151336426,41.645797512],[-71.151275426,41.645762513],[-71.151214426,41.645722513],[-71.151168426,41.645660512],[-71.151138426,41.645607513],[-71.151100426,41.645549513],[-71.151069426,41.645491513],[-71.151046426,41.645437513],[-71.151046426,41.645410513],[-71.151077426,41.645360513],[-71.151054426,41.645316513],[-71.151130426,41.645292512],[-71.151268426,41.645235512],[-71.151199426,41.645200513],[-71.151145427,41.645156512],[-71.151100426,41.645108513],[-71.151046426,41.645054512],[-71.150995426,41.645028513],[-71.150978426,41.645020512],[-71.150924426,41.644976512],[-71.150878426,41.644945513],[-71.150825426,41.644937512],[-71.150825426,41.644878512],[-71.150833426,41.644820512],[-71.150779426,41.644852513],[-71.150703426,41.644876513],[-71.150657426,41.644864512],[-71.150650426,41.644801512],[-71.150627426,41.644765512],[-71.150581426,41.644748512],[-71.150535426,41.644690512],[-71.150520426,41.644632512],[-71.150512426,41.644578513],[-71.150466426,41.644529512],[-71.150467426,41.644466513],[-71.150489426,41.644403513],[-71.150497426,41.644340512],[-71.150512426,41.644285513],[-71.150550426,41.644226513],[-71.150573426,41.644167513],[-71.150596426,41.644113513],[-71.150619425,41.644054513],[-71.150657426,41.643999513],[-71.150688426,41.643944512],[-71.150726426,41.643881513],[-71.150764426,41.643835512],[-71.150810426,41.643789512],[-71.150817426,41.643726513],[-71.150855426,41.643671512],[-71.150916426,41.643620512],[-71.150985426,41.643588513],[-71.151062426,41.643568513],[-71.151130426,41.643549513],[-71.151153426,41.643490513],[-71.151183426,41.643426512],[-71.151222426,41.643349512],[-71.151237426,41.643295513],[-71.151245426,41.643236513],[-71.151244426,41.643114512],[-71.151229426,41.643079512],[-71.151184426,41.643043513],[-71.151145426,41.642995512],[-71.151184426,41.642949512],[-71.151145426,41.642900512],[-71.151039426,41.642794512],[-71.150985426,41.642750513],[-71.150947426,41.642697512],[-71.150878426,41.642648512],[-71.150817426,41.642609512],[-71.150733426,41.642597512],[-71.150649426,41.642612512],[-71.150527426,41.642628512],[-71.150474426,41.642602512],[-71.150443426,41.642539512],[-71.150367425,41.642527512],[-71.150298426,41.642493512],[-71.150161426,41.642378512],[-71.150123426,41.642316512],[-71.150100426,41.642235512],[-71.150100426,41.642159512],[-71.150108426,41.642073512],[-71.150116425,41.642014512],[-71.150108426,41.641951512],[-71.150108426,41.641893512],[-71.150116425,41.641834512],[-71.150131426,41.641775512],[-71.150154425,41.641707512],[-71.150207426,41.641657512],[-71.150253425,41.641620512],[-71.150268425,41.641561512],[-71.150321426,41.641510512],[-71.150344426,41.641452512],[-71.150390425,41.641397512],[-71.150444425,41.641342512],[-71.150482426,41.641291512],[-71.150504425,41.641228512],[-71.150535426,41.641160512],[-71.150558426,41.641101512],[-71.150634426,41.641068512],[-71.150726426,41.641057511],[-71.150779426,41.641016512],[-71.150817425,41.640970512],[-71.150863426,41.640919512],[-71.150924426,41.640882511],[-71.150985426,41.640836512],[-71.151031426,41.640795512],[-71.151054426,41.640754512],[-71.151016426,41.640718512],[-71.151000426,41.640687511],[-71.151031426,41.640624512],[-71.151054426,41.640565512],[-71.151054426,41.640511511],[-71.151107425,41.640451512],[-71.151138426,41.640405512],[-71.151130426,41.640347512],[-71.151130426,41.640293512],[-71.151138426,41.640230512],[-71.151229426,41.640228512],[-71.151275426,41.640209512],[-71.151244425,41.640129512],[-71.151252426,41.640066511],[-71.151374426,41.639982512],[-71.151405426,41.639914512],[-71.151428426,41.639855512],[-71.151458426,41.639800512],[-71.151512426,41.639759512],[-71.151596426,41.639721512],[-71.151687426,41.639688512],[-71.151763426,41.639646512],[-71.151824426,41.639604512],[-71.151863426,41.639545512],[-71.151886426,41.639495512],[-71.151863426,41.639446511],[-71.151832426,41.639411512],[-71.151916426,41.639396512],[-71.151931426,41.639368511],[-71.151863426,41.639248511],[-71.151817426,41.639181512],[-71.151778426,41.639128511],[-71.151748426,41.639079512],[-71.151718426,41.639012511],[-71.151703426,41.638954511],[-71.151634426,41.638843511],[-71.151542426,41.638736511],[-71.151489426,41.638697511],[-71.151443426,41.638643511],[-71.151413426,41.638595512],[-71.150894425,41.640329512],[-71.150795425,41.640457512],[-71.150665426,41.640558512],[-71.150512426,41.640647511],[-71.150398426,41.640707511],[-71.150222426,41.640805512],[-71.150115425,41.640816512],[-71.150001425,41.640787512],[-71.149879425,41.640749512],[-71.149726425,41.640711512],[-71.149627425,41.640735512],[-71.149490425,41.640774512],[-71.149398425,41.640807512],[-71.149192426,41.640946512],[-71.149116426,41.640979512],[-71.149032425,41.641003512],[-71.148956425,41.641014512],[-71.148818425,41.640953512],[-71.148658425,41.640925512],[-71.148437425,41.640915512],[-71.148254425,41.640905512],[-71.148017425,41.640905512],[-71.147834425,41.640904512],[-71.147613425,41.640908512],[-71.147361425,41.640895512],[-71.147163425,41.640876512],[-71.147003425,41.640852512],[-71.146858424,41.640810512],[-71.146682424,41.640786512],[-71.146507424,41.640771512],[-71.146301424,41.640762512],[-71.146049424,41.640757512],[-71.146026424,41.640708512],[-71.145866424,41.640387512],[-71.145843424,41.640329512],[-71.145187424,41.640382512],[-71.144790423,41.640389512],[-71.144546424,41.640376512],[-71.144416424,41.640346512],[-71.144279424,41.640286512],[-71.144187423,41.640391512],[-71.144065424,41.640484512],[-71.143966424,41.640521512],[-71.143859423,41.640528512],[-71.143508423,41.640507512],[-71.143379424,41.640492512],[-71.143325424,41.640470512],[-71.143310423,41.640421512],[-71.143280423,41.640341512],[-71.143302424,41.640106512],[-71.143318423,41.639989512],[-71.142677423,41.639983512],[-71.142082423,41.639980512],[-71.141372423,41.639993512],[-71.140899423,41.639998512],[-71.140678422,41.639979512],[-71.140357423,41.639927512],[-71.140068423,41.639851512],[-71.139808422,41.639757512],[-71.139663422,41.639687512],[-71.139320422,41.639464512],[-71.138969422,41.639183512],[-71.138771422,41.638975512],[-71.138603422,41.638739512],[-71.138526422,41.638628512],[-71.138244422,41.638741512],[-71.137840422,41.638839512],[-71.137352421,41.638897512],[-71.136779421,41.638953512],[-71.136360421,41.638997512],[-71.136176421,41.639000512],[-71.135871421,41.638979512],[-71.135344421,41.638934512],[-71.135010421,41.638904512],[-71.134806813,41.638902863]]]]}}"}, +{"type": "precinct", "typeId": 3304, "areaId": 25969, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":308,\"NAME\":\"3304\",\"SHAPE_Length\":0.21717522390361,\"SHAPE_Area\":-0.0012824958096949},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.211188446,41.63880751],[-71.211220081,41.638843775],[-71.211189267,41.638807531],[-71.211158132,41.638766545],[-71.211188446,41.63880751]]],[[[-71.213958151,41.638780585],[-71.213961047,41.638882816],[-71.213982446,41.63882251],[-71.213999324,41.638777832],[-71.213958151,41.638780585]]],[[[-71.211343446,41.638935509],[-71.211343613,41.638935507],[-71.211337862,41.638932553],[-71.211343446,41.638935509]]],[[[-71.212646446,41.63900451],[-71.212646999,41.639004463],[-71.212646298,41.638989243],[-71.21264341,41.638925545],[-71.212643272,41.638922457],[-71.212641598,41.638914952],[-71.212641059,41.638912618],[-71.212641657,41.63890848],[-71.212594392,41.638897407],[-71.212593718,41.638897062],[-71.212646446,41.63900451]]],[[[-71.211507445,41.63902051],[-71.211524445,41.639052509],[-71.211524552,41.639052543],[-71.21150805,41.639021382],[-71.211543178,41.638992244],[-71.211542298,41.638991631],[-71.211507445,41.63902051]]],[[[-71.16193843,41.656500515],[-71.16199443,41.656499515],[-71.16208643,41.656493515],[-71.162178431,41.656491515],[-71.16226943,41.656485514],[-71.16234643,41.656488514],[-71.16242243,41.656482514],[-71.16249843,41.656480515],[-71.162566431,41.656470514],[-71.162628431,41.656464514],[-71.16269643,41.656454515],[-71.162879431,41.656424514],[-71.16294843,41.656409514],[-71.163070431,41.656389514],[-71.163170431,41.656369514],[-71.16326143,41.656349514],[-71.163360431,41.656329514],[-71.163467431,41.656309514],[-71.163574431,41.656280515],[-71.163650431,41.656265515],[-71.163681431,41.656255514],[-71.164024431,41.656181515],[-71.164085431,41.656171514],[-71.164146431,41.656157514],[-71.164199431,41.656142514],[-71.164238431,41.656132514],[-71.164268431,41.656123515],[-71.164299431,41.656118514],[-71.164352431,41.656099514],[-71.164443431,41.656061514],[-71.164535431,41.655996514],[-71.164581431,41.655968515],[-71.164634431,41.655931515],[-71.164726431,41.655848514],[-71.164886431,41.655710514],[-71.165046431,41.655559514],[-71.165092431,41.655508514],[-71.165145432,41.655462514],[-71.165191431,41.655416514],[-71.165313431,41.655306514],[-71.165481431,41.655172514],[-71.165572432,41.655089514],[-71.165679431,41.655011514],[-71.165771432,41.654937514],[-71.165870431,41.654863514],[-71.165969431,41.654798514],[-71.166023432,41.654757514],[-71.166130431,41.654692514],[-71.166168431,41.654659514],[-71.166313432,41.654571514],[-71.166359431,41.654539514],[-71.166404432,41.654511514],[-71.166526432,41.654419514],[-71.166580432,41.654372514],[-71.166641432,41.654331514],[-71.166702432,41.654285514],[-71.166763432,41.654243514],[-71.166831432,41.654179514],[-71.166900432,41.654110514],[-71.166961431,41.654046514],[-71.167022431,41.653986513],[-71.167136432,41.653876514],[-71.167312432,41.653728514],[-71.167358432,41.653687514],[-71.167465432,41.653604514],[-71.167503432,41.653572514],[-71.167556432,41.653548514],[-71.167602432,41.653520513],[-71.167663432,41.653496514],[-71.167724432,41.653468514],[-71.167793432,41.653444514],[-71.167976432,41.653396514],[-71.168075432,41.653376514],[-71.168159432,41.653361514],[-71.168243432,41.653350514],[-71.168327432,41.653344513],[-71.168502432,41.653323513],[-71.168586432,41.653321514],[-71.168670432,41.653311514],[-71.168762432,41.653309514],[-71.168846432,41.653303513],[-71.168960432,41.653301514],[-71.169082433,41.653303513],[-71.169204432,41.653301514],[-71.169433433,41.653305513],[-71.169547433,41.653303513],[-71.169868432,41.653311514],[-71.170021433,41.653312514],[-71.170173433,41.653318514],[-71.170326433,41.653329514],[-71.170646433,41.653350514],[-71.170806433,41.653365513],[-71.170990433,41.653380514],[-71.171066433,41.653387514],[-71.171180433,41.653394514],[-71.171562434,41.653423513],[-71.171630433,41.653431514],[-71.171714433,41.653433514],[-71.171867433,41.653449514],[-71.171935433,41.653452514],[-71.172042433,41.653324513],[-71.172904434,41.652231513],[-71.174026434,41.650836513],[-71.175026434,41.649584513],[-71.176109434,41.648226513],[-71.176467434,41.647773512],[-71.177032435,41.647064512],[-71.177726434,41.646200512],[-71.177970435,41.645903512],[-71.178290435,41.645500512],[-71.179122435,41.644449511],[-71.179672436,41.643772511],[-71.179855435,41.643570512],[-71.180015435,41.643396511],[-71.180313436,41.643129511],[-71.180633435,41.642885512],[-71.180984435,41.642626511],[-71.181373435,41.642393511],[-71.181800436,41.642164511],[-71.182273436,41.641957511],[-71.182846436,41.641748511],[-71.183456437,41.641575511],[-71.183695436,41.641529511],[-71.183746437,41.641520511],[-71.184188437,41.641430511],[-71.184791437,41.641356511],[-71.185165437,41.641321511],[-71.185554437,41.641314511],[-71.185989438,41.641328511],[-71.186363438,41.641344511],[-71.186813438,41.64138951],[-71.187187437,41.641436511],[-71.187316438,41.641461511],[-71.187423438,41.641477511],[-71.187522438,41.641493511],[-71.187790438,41.641542511],[-71.188227438,41.641610511],[-71.188667438,41.641678511],[-71.189621439,41.641840511],[-71.190536439,41.641985511],[-71.190788439,41.642034511],[-71.191505439,41.642151511],[-71.19270344,41.642349511],[-71.19318344,41.642425511],[-71.19351944,41.642482511],[-71.19431344,41.642575511],[-71.19496844,41.642630511],[-71.195472441,41.64265651],[-71.195877441,41.642666511],[-71.196327441,41.642671511],[-71.196838441,41.642652511],[-71.197486441,41.64261851],[-71.198143442,41.64256051],[-71.198974442,41.64248151],[-71.199760442,41.642371511],[-71.199928442,41.642341511],[-71.200309442,41.64227151],[-71.200477442,41.642241511],[-71.201011442,41.642118511],[-71.201675442,41.641952511],[-71.202102443,41.64184051],[-71.202690442,41.641653511],[-71.203323443,41.641443511],[-71.203750443,41.641268511],[-71.204109444,41.641131511],[-71.204170444,41.64110351],[-71.204239443,41.64107051],[-71.204345444,41.64102751],[-71.204406443,41.640994511],[-71.204559444,41.64092851],[-71.204963444,41.64074551],[-71.205291444,41.64058151],[-71.205535444,41.64045551],[-71.205932444,41.64022751],[-71.206103443,41.64013251],[-71.206259444,41.64004551],[-71.206451444,41.63993751],[-71.206703444,41.63979351],[-71.206924444,41.63965851],[-71.207275444,41.63944451],[-71.207450444,41.63934251],[-71.207527444,41.63929551],[-71.207725444,41.63918351],[-71.208099444,41.63900151],[-71.208152444,41.63897751],[-71.208465444,41.63884951],[-71.208839445,41.638739509],[-71.209274445,41.63863651],[-71.209633445,41.63859351],[-71.209914445,41.638565509],[-71.209930445,41.63847551],[-71.210243445,41.63846051],[-71.210571445,41.638449509],[-71.210659445,41.638444509],[-71.210876446,41.63843451],[-71.211017445,41.63843251],[-71.211052446,41.638521509],[-71.211057445,41.63853351],[-71.211099445,41.638640509],[-71.211151446,41.638757509],[-71.211151803,41.638757992],[-71.211127309,41.638700621],[-71.211100075,41.638641481],[-71.21099545,41.638374698],[-71.210990807,41.638349416],[-71.210995548,41.638291408],[-71.211043118,41.638240826],[-71.211106789,41.638209746],[-71.211179047,41.638208236],[-71.211253854,41.638216176],[-71.211341257,41.638222845],[-71.211425229,41.638226349],[-71.211495876,41.638237458],[-71.211568183,41.638245438],[-71.211620188,41.638232647],[-71.211635029,41.638179033],[-71.21164976,41.638122903],[-71.211656177,41.638064899],[-71.211656089,41.638050377],[-71.211673644,41.638037751],[-71.211769478,41.637903794],[-71.2112241,41.63787473],[-71.211223661,41.637802256],[-71.211111003,41.637784981],[-71.211118237,41.63772826],[-71.211279576,41.637739689],[-71.211321244,41.637535981],[-71.211149711,41.637506941],[-71.211201919,41.637387053],[-71.211321242,41.637392933],[-71.211350044,41.637292014],[-71.211297091,41.637285272],[-71.211370981,41.636999544],[-71.211405409,41.636846932],[-71.211334751,41.636832027],[-71.211357174,41.63678719],[-71.211415218,41.636800875],[-71.21145325,41.636701191],[-71.211379263,41.636687558],[-71.211400622,41.636608118],[-71.211455243,41.63660981],[-71.211450416,41.6365027],[-71.211455924,41.63644346],[-71.211469893,41.636387305],[-71.21147795,41.636330563],[-71.211471765,41.636275112],[-71.211467251,41.636220923],[-71.211478653,41.636159136],[-71.211504345,41.636099191],[-71.211536779,41.636044889],[-71.211569235,41.635992462],[-71.211610107,41.635946323],[-71.211655131,41.635892007],[-71.211712911,41.63585524],[-71.211727927,41.635837531],[-71.212337672,41.635818499],[-71.212594431,41.635196934],[-71.212584041,41.634715484],[-71.212458813,41.634708333],[-71.212445724,41.634765748],[-71.212417202,41.634770228],[-71.212333275,41.63478502],[-71.212295033,41.634850056],[-71.212219436,41.63485595],[-71.212149586,41.634831008],[-71.212147522,41.634767334],[-71.212147928,41.63469676],[-71.212109839,41.634645209],[-71.211961111,41.634637541],[-71.211871717,41.634620439],[-71.211807894,41.634583825],[-71.211753889,41.634539895],[-71.21175016,41.634480654],[-71.21173218,41.634417718],[-71.211703257,41.634354778],[-71.21169115,41.634294326],[-71.211705998,41.634252695],[-71.211766312,41.63422163],[-71.211713128,41.634178296],[-71.211660811,41.634138784],[-71.211605069,41.63408792],[-71.211558584,41.634039526],[-71.211516251,41.633982955],[-71.211476475,41.633933937],[-71.211434188,41.633887452],[-71.211417941,41.633832502],[-71.211340804,41.633575828],[-71.211486816,41.633549483],[-71.211439563,41.633372584],[-71.211493199,41.633348454],[-71.211460808,41.633270388],[-71.211495991,41.633248842],[-71.211467691,41.63314874],[-71.211375297,41.633155369],[-71.211321418,41.632987898],[-71.211347339,41.632972046],[-71.211334297,41.632895835],[-71.211288114,41.632896017],[-71.211210532,41.632705297],[-71.211131513,41.632549906],[-71.211070012,41.632376173],[-71.211048185,41.632376278],[-71.211033022,41.632372512],[-71.211004997,41.6323203],[-71.211005514,41.6322661],[-71.211005956,41.632201221],[-71.211005597,41.632138169],[-71.211003625,41.632081494],[-71.210999919,41.632024128],[-71.210995375,41.631969985],[-71.210989932,41.631898756],[-71.210985634,41.631871439],[-71.21097858,41.631826345],[-71.210978186,41.631757645],[-71.210985285,41.631683291],[-71.211001652,41.631608847],[-71.211002928,41.631541408],[-71.211013538,41.631479619],[-71.211029947,41.631415923],[-71.211031205,41.631345946],[-71.211031636,41.631276629],[-71.211031157,41.631192812],[-71.211030774,41.631128525],[-71.211030406,41.631067417],[-71.211031732,41.631009446],[-71.211034765,41.630951434],[-71.211036925,41.630890927],[-71.211039127,41.630834834],[-71.211044703,41.630780625],[-71.211055982,41.630698643],[-71.211066547,41.63064001],[-71.211076305,41.63058453],[-71.211095154,41.630506959],[-71.21111417,41.630453309],[-71.211134835,41.630399069],[-71.211157065,41.630322101],[-71.211167542,41.630248991],[-71.211173149,41.630194758],[-71.211182879,41.630138638],[-71.211196838,41.630084404],[-71.211206486,41.63001255],[-71.211215311,41.629940648],[-71.21123419,41.629870029],[-71.211250646,41.629809443],[-71.211285623,41.629758281],[-71.211317135,41.629691375],[-71.21133785,41.629639651],[-71.211361906,41.629583475],[-71.211390144,41.629532982],[-71.211566673,41.629551309],[-71.211588295,41.629514681],[-71.211816974,41.629554269],[-71.211845056,41.629470363],[-71.21163064,41.629431336],[-71.211714886,41.62919286],[-71.211781566,41.629086409],[-71.211795596,41.62906401],[-71.211859287,41.629039859],[-71.211936597,41.629044627],[-71.212013067,41.629053212],[-71.212082096,41.6290763],[-71.21210814,41.629087251],[-71.212165459,41.629111338],[-71.21224632,41.629146989],[-71.212312872,41.629178898],[-71.212394514,41.629210159],[-71.212460931,41.629217483],[-71.212461515,41.629175268],[-71.212415035,41.629126279],[-71.212351226,41.629087859],[-71.212344203,41.629083657],[-71.21227178,41.629049217],[-71.212207753,41.629018549],[-71.212146232,41.628986606],[-71.212082987,41.628944597],[-71.212028136,41.628900024],[-71.211996713,41.628837786],[-71.211998905,41.628783523],[-71.211997694,41.628719897],[-71.211999019,41.628661926],[-71.212032289,41.628603853],[-71.212053751,41.628541404],[-71.212070217,41.628485232],[-71.212089973,41.628415827],[-71.212116541,41.628363454],[-71.212144973,41.628344452],[-71.212233195,41.628349201],[-71.212327263,41.628348248],[-71.212410249,41.628317078],[-71.212449442,41.628270317],[-71.212481855,41.628212881],[-71.212511705,41.628149105],[-71.212527342,41.628087328],[-71.212548878,41.628035582],[-71.212598936,41.627978717],[-71.212649881,41.62792812],[-71.212699986,41.627881317],[-71.212761047,41.627838269],[-71.212816195,41.6277883],[-71.212858743,41.627740861],[-71.212901258,41.627687178],[-71.212949728,41.627644762],[-71.213004,41.627592915],[-71.213040657,41.627540499],[-71.213068846,41.627479919],[-71.213109632,41.627417404],[-71.21315545,41.627354239],[-71.213206333,41.627296689],[-71.213256415,41.627234129],[-71.213262307,41.627225202],[-71.21328971,41.627183602],[-71.213320443,41.627126803],[-71.213319281,41.627072599],[-71.213271172,41.627033693],[-71.213196281,41.627013129],[-71.213135595,41.626978673],[-71.213132688,41.626912551],[-71.213137049,41.626884478],[-71.213187634,41.62661909],[-71.213285324,41.626433176],[-71.213527104,41.626175606],[-71.213744232,41.625992254],[-71.213893307,41.625882509],[-71.213909744,41.62585984],[-71.21413565,41.625786374],[-71.2151434,41.625635124],[-71.215318194,41.625608868],[-71.215913775,41.625635224],[-71.215915793,41.625598958],[-71.215917975,41.625560314],[-71.216001417,41.625562853],[-71.216073407,41.625563534],[-71.216106177,41.625555587],[-71.216021952,41.625522973],[-71.215933604,41.625506312],[-71.21585018,41.625492727],[-71.21575775,41.625482207],[-71.215654679,41.625472896],[-71.21556062,41.62545869],[-71.215468176,41.625437742],[-71.215369266,41.625410648],[-71.215302207,41.625390906],[-71.215208174,41.625363824],[-71.215119038,41.62533241],[-71.215023386,41.625299195],[-71.214932593,41.625270246],[-71.214850024,41.625242575],[-71.214767425,41.625214881],[-71.214677485,41.625185911],[-71.214594886,41.625158216],[-71.214518859,41.625132986],[-71.214446928,41.625105272],[-71.214403659,41.62505428],[-71.214378347,41.625022955],[-71.214285918,41.625005687],[-71.214209851,41.62498965],[-71.214129724,41.624961321],[-71.214034057,41.624925018],[-71.213967019,41.624900404],[-71.213872982,41.624867764],[-71.213777314,41.624838825],[-71.213676722,41.624813555],[-71.213588399,41.624784611],[-71.213504996,41.624752637],[-71.21342736,41.624719397],[-71.213372637,41.624667187],[-71.213333459,41.624614947],[-71.213303277,41.624554771],[-71.213267373,41.624499475],[-71.213224097,41.624450358],[-71.21316853,41.624402994],[-71.213106445,41.624347678],[-71.213037006,41.624287472],[-71.212962675,41.62423089],[-71.212890763,41.62417866],[-71.212815606,41.624122716],[-71.212756756,41.624080307],[-71.212693847,41.624039145],[-71.212634984,41.623999776],[-71.212581084,41.623961655],[-71.212501812,41.623905724],[-71.212443775,41.623865763],[-71.21238333,41.623825819],[-71.212322852,41.623786493],[-71.212266491,41.623746536],[-71.212189654,41.6236918],[-71.212133274,41.623656165],[-71.21206057,41.623597163],[-71.212016445,41.62355415],[-71.211976446,41.623508653],[-71.211919284,41.623443538],[-71.21186377,41.623377809],[-71.211814013,41.62330592],[-71.21178873,41.62325495],[-71.211752866,41.623184307],[-71.211725151,41.623111239],[-71.211696658,41.623035103],[-71.211667317,41.622964478],[-71.211633078,41.622898734],[-71.211600495,41.622830547],[-71.211578505,41.622765496],[-71.211583531,41.622711469],[-71.211626973,41.62265445],[-71.211622977,41.62259363],[-71.211599358,41.622531617],[-71.21157899,41.622478829],[-71.211560276,41.622424147],[-71.21153584,41.622360897],[-71.211516339,41.622291531],[-71.211492742,41.622224602],[-71.211462577,41.622161338],[-71.211429984,41.622095598],[-71.211407166,41.622031735],[-71.211391727,41.621974019],[-71.211368093,41.621915665],[-71.211341208,41.62185488],[-71.211317598,41.621791037],[-71.211293983,41.621728361],[-71.21127364,41.621670062],[-71.211252463,41.621614139],[-71.211231314,41.621558879],[-71.211227308,41.621500551],[-71.211219242,41.621443449],[-71.211198046,41.621385147],[-71.21117772,41.621323097],[-71.21115572,41.621260494],[-71.211131296,41.621201521],[-71.21110196,41.62114377],[-71.211078345,41.621081163],[-71.211051455,41.621014797],[-71.21102947,41.620955853],[-71.211010743,41.620897511],[-71.210994479,41.620840434],[-71.210984765,41.620783922],[-71.210984889,41.620721923],[-71.210984155,41.620667904],[-71.210948281,41.620613842],[-71.210895991,41.62057083],[-71.210847823,41.62051246],[-71.210817657,41.620463307],[-71.210786645,41.620405598],[-71.210749931,41.620348469],[-71.210705034,41.620295001],[-71.210652741,41.62024586],[-71.21059803,41.620199138],[-71.210541679,41.620151199],[-71.210475508,41.620104515],[-71.210404412,41.620062074],[-71.210348025,41.620022093],[-71.210275267,41.619990098],[-71.210202509,41.619958149],[-71.210141216,41.619918156],[-71.210081577,41.619869568],[-71.210031775,41.619815516],[-71.209980312,41.619765119],[-71.209929678,41.619720282],[-71.209876627,41.619677222],[-71.209821865,41.619635439],[-71.209759763,41.619599148],[-71.209705017,41.619560429],[-71.209639632,41.619522301],[-71.209575885,41.619486029],[-71.209516225,41.619449127],[-71.209452464,41.619415919],[-71.209384633,41.619386406],[-71.20930536,41.619346436],[-71.209241621,41.619315058],[-71.209172957,41.61928799],[-71.209103453,41.619264556],[-71.209016752,41.619256515],[-71.208930046,41.619249663],[-71.208857219,41.619260616],[-71.208781936,41.619275291],[-71.208727062,41.619299165],[-71.208501376,41.619246153],[-71.20843842,41.619224016],[-71.208483571,41.619139307],[-71.20835683,41.619102989],[-71.208313346,41.619182739],[-71.208026312,41.619116146],[-71.207953545,41.61910686],[-71.207782073,41.618920083],[-71.207757651,41.618841465],[-71.207745563,41.618744445],[-71.207727659,41.618693492],[-71.207682785,41.618635746],[-71.207623226,41.61855649],[-71.207548066,41.618496861],[-71.207471263,41.618436656],[-71.207276802,41.618293387],[-71.207218672,41.618322809],[-71.207196641,41.618295172],[-71.207270363,41.618234481],[-71.206823516,41.617905623],[-71.206821238,41.617829897],[-71.206820706,41.617812926],[-71.206815116,41.617809001],[-71.206731787,41.617749968],[-71.206721889,41.617748502],[-71.206706303,41.617744666],[-71.206683898,41.617745821],[-71.206553826,41.617752464],[-71.206417037,41.61784931],[-71.206354712,41.617923546],[-71.206282574,41.618017972],[-71.206230092,41.61809221],[-71.206201341,41.618148647],[-71.205798795,41.618178926],[-71.205775978,41.618136559],[-71.205728623,41.618088617],[-71.205649303,41.61805969],[-71.205568342,41.618049809],[-71.20552839,41.618037546],[-71.205160443,41.618051506],[-71.204911443,41.618000506],[-71.204811443,41.617971506],[-71.203750442,41.617680506],[-71.202659442,41.617372506],[-71.201980441,41.617169505],[-71.201759441,41.617101506],[-71.201675441,41.617072505],[-71.201148441,41.616861506],[-71.20066044,41.616636506],[-71.200424441,41.616515506],[-71.200073441,41.616341506],[-71.19950144,41.616046506],[-71.199371441,41.615981505],[-71.19918844,41.615881505],[-71.19881444,41.615685505],[-71.19846344,41.615480505],[-71.19815844,41.615270506],[-71.196884439,41.616159506],[-71.19547244,41.617118506],[-71.195312439,41.617229506],[-71.194343438,41.617887506],[-71.194069438,41.618077506],[-71.193733439,41.618300506],[-71.193451438,41.618490507],[-71.193412438,41.618509507],[-71.192970439,41.618756506],[-71.192848438,41.618821507],[-71.192657438,41.618910506],[-71.192581438,41.618948506],[-71.192237438,41.619089506],[-71.191749438,41.619261506],[-71.190872437,41.619561507],[-71.189872438,41.619886507],[-71.189079437,41.620149507],[-71.189041437,41.620159507],[-71.188766437,41.620255507],[-71.188476437,41.620359507],[-71.187271437,41.620756506],[-71.186676437,41.620947507],[-71.185653436,41.621291507],[-71.185600436,41.621310507],[-71.184860436,41.621558507],[-71.184608436,41.621644507],[-71.183913435,41.621927507],[-71.182952436,41.622369508],[-71.181266435,41.623148508],[-71.179802434,41.623807508],[-71.178489434,41.624412508],[-71.177413434,41.624888508],[-71.176689434,41.625230508],[-71.176101433,41.625439508],[-71.175620433,41.625579508],[-71.175193433,41.625673508],[-71.174835433,41.625725508],[-71.174445433,41.625768508],[-71.174041432,41.625789508],[-71.173690432,41.625796508],[-71.172683432,41.625779508],[-71.170776432,41.625725509],[-71.170417431,41.625714508],[-71.169662431,41.625696508],[-71.168846431,41.625667509],[-71.167831431,41.625632508],[-71.167772431,41.625631508],[-71.167058431,41.625617508],[-71.16688543,41.625614508],[-71.16619843,41.625586509],[-71.16611443,41.625583508],[-71.164588429,41.625549509],[-71.163463429,41.625512509],[-71.163017429,41.625497508],[-71.161308428,41.625453509],[-71.160888428,41.625443508],[-71.160354428,41.625426509],[-71.160232428,41.625428509],[-71.158882428,41.625386509],[-71.157853428,41.625351509],[-71.157699427,41.625345508],[-71.157386427,41.625337509],[-71.157127427,41.625315509],[-71.156890427,41.625288509],[-71.156807427,41.625276509],[-71.156539427,41.625232509],[-71.156463427,41.625215509],[-71.156280427,41.625174509],[-71.155952427,41.625072508],[-71.155441426,41.624847509],[-71.154777426,41.624549509],[-71.154418426,41.624429508],[-71.154228426,41.624370508],[-71.153801426,41.624274508],[-71.153739425,41.624271508],[-71.153404426,41.624228508],[-71.153007426,41.624226508],[-71.152679426,41.624250508],[-71.152336425,41.624288508],[-71.152015425,41.624353509],[-71.151962426,41.624367508],[-71.151366425,41.624545509],[-71.151001425,41.624674509],[-71.150764425,41.624768509],[-71.150535425,41.624849509],[-71.150093424,41.625010508],[-71.149497425,41.625215509],[-71.148819425,41.625453509],[-71.148094424,41.625714509],[-71.147544424,41.625914509],[-71.146583423,41.626242509],[-71.146530423,41.626833509],[-71.146446423,41.62747951],[-71.146385424,41.628092509],[-71.146362424,41.628426509],[-71.146362424,41.62875951],[-71.146370423,41.62890351],[-71.146385424,41.629083509],[-71.146400424,41.62923651],[-71.146415424,41.62936251],[-71.146453424,41.62960051],[-71.146469424,41.62972151],[-71.146507423,41.63008551],[-71.146507423,41.63014451],[-71.146575424,41.63077751],[-71.146598424,41.63152451],[-71.146606424,41.63165951],[-71.147064424,41.63152051],[-71.147315424,41.63140751],[-71.147514424,41.63126051],[-71.147751425,41.63111151],[-71.148002425,41.63104851],[-71.148262424,41.63101151],[-71.148605425,41.63099151],[-71.148887424,41.63100451],[-71.148985424,41.63102151],[-71.149310425,41.63091251],[-71.149844425,41.63070351],[-71.149757425,41.63061951],[-71.149703424,41.63057951],[-71.149642425,41.63052251],[-71.149589425,41.63046451],[-71.149528424,41.63041651],[-71.149490424,41.63036251],[-71.149459425,41.63031451],[-71.149436425,41.63025151],[-71.149452424,41.63013451],[-71.149452424,41.630080509],[-71.149505425,41.62996651],[-71.149551425,41.62989851],[-71.149566424,41.62983951],[-71.149574425,41.629767509],[-71.149574425,41.62969451],[-71.149551425,41.62963651],[-71.149520425,41.62958751],[-71.149505425,41.62952551],[-71.149513425,41.62946151],[-71.149498425,41.62940851],[-71.149467425,41.62935451],[-71.149490424,41.62929151],[-71.149520425,41.62923651],[-71.149559425,41.62919051],[-71.149513425,41.62913751],[-71.149482425,41.629084509],[-71.149498425,41.62903451],[-71.149536425,41.62897951],[-71.149543425,41.628947509],[-71.149581425,41.62885751],[-71.149596425,41.628771509],[-71.149642425,41.62870751],[-71.149772425,41.62859251],[-71.149849425,41.628545509],[-71.149925425,41.62851351],[-71.149993425,41.628502509],[-71.150078425,41.62851451],[-71.150161425,41.628544509],[-71.150253425,41.62858751],[-71.150299425,41.62863251],[-71.150360425,41.628676509],[-71.150428425,41.628733509],[-71.150497425,41.62878651],[-71.150558425,41.62882051],[-71.150611425,41.628855509],[-71.150680425,41.62888651],[-71.150726425,41.62886251],[-71.150771425,41.62880751],[-71.150833426,41.62876651],[-71.150901425,41.628715509],[-71.150947425,41.62866551],[-71.151001425,41.628614509],[-71.151084426,41.62849551],[-71.151084426,41.628468509],[-71.151008426,41.628425509],[-71.150932425,41.628390509],[-71.150863425,41.628346509],[-71.150817425,41.62829851],[-71.150779425,41.628244509],[-71.150764425,41.628191509],[-71.150794426,41.62812251],[-71.150848425,41.628076509],[-71.150894425,41.628031509],[-71.150947425,41.62798551],[-71.150985425,41.627939509],[-71.151069425,41.62789251],[-71.151122425,41.627855509],[-71.151207425,41.627800509],[-71.151252425,41.62775451],[-71.151313425,41.627712509],[-71.151367425,41.627666509],[-71.151435426,41.627633509],[-71.151504425,41.627605509],[-71.151611426,41.627589509],[-71.151718425,41.627592509],[-71.151794425,41.627586509],[-71.151870425,41.627584509],[-71.151969425,41.627569509],[-71.152000426,41.62756051],[-71.152053426,41.62754151],[-71.152122425,41.627499509],[-71.152168425,41.627439509],[-71.152175426,41.627367509],[-71.152175426,41.627291509],[-71.152153426,41.627237509],[-71.152122425,41.627188509],[-71.152107425,41.627134509],[-71.152130425,41.627080509],[-71.152221425,41.627069509],[-71.152313426,41.627081509],[-71.152404426,41.627111509],[-71.152481426,41.627154509],[-71.152503426,41.627203509],[-71.152504426,41.627266509],[-71.152503426,41.62732551],[-71.152504426,41.627379509],[-71.152511425,41.627437509],[-71.152526426,41.627496509],[-71.152557426,41.62755851],[-71.152587426,41.627607509],[-71.152618426,41.627661509],[-71.152656426,41.627718509],[-71.152755426,41.62785251],[-71.152793426,41.627900509],[-71.152847426,41.62794951],[-71.152892426,41.627993509],[-71.152953426,41.628060509],[-71.153022426,41.628108509],[-71.153045426,41.628157509],[-71.153091426,41.628215509],[-71.153152426,41.628254509],[-71.153236426,41.628266509],[-71.153312426,41.628251509],[-71.153381426,41.62820051],[-71.153465426,41.628149509],[-71.153541426,41.628107509],[-71.153625426,41.628092509],[-71.153701426,41.628095509],[-71.153785426,41.628089509],[-71.153861426,41.628097509],[-71.153915426,41.62814551],[-71.153945426,41.628208509],[-71.153953427,41.628270509],[-71.153953427,41.628334509],[-71.153999426,41.628400509],[-71.154044426,41.628444509],[-71.154098426,41.628488509],[-71.154159426,41.628546509],[-71.154220426,41.628576509],[-71.154304427,41.628579509],[-71.154380427,41.628578509],[-71.154480426,41.628580509],[-71.154564426,41.62861051],[-71.154632427,41.628645509],[-71.154708427,41.62868951],[-71.154792426,41.628732509],[-71.154876426,41.628771509],[-71.154998427,41.628859509],[-71.155075427,41.628907509],[-71.155128426,41.628946509],[-71.155182427,41.62899951],[-71.155258427,41.629106509],[-71.155296427,41.629150509],[-71.155357427,41.62921751],[-71.155395427,41.629266509],[-71.155441426,41.62931451],[-71.155479426,41.629363509],[-71.155570427,41.62948851],[-71.155616427,41.629559509],[-71.155662427,41.62960351],[-71.155700427,41.629652509],[-71.155738427,41.62969651],[-71.155776427,41.629749509],[-71.155807426,41.62979851],[-71.155861427,41.62984251],[-71.155906427,41.629887509],[-71.155975427,41.62993951],[-71.156051427,41.62999251],[-71.156135427,41.630044509],[-71.156211427,41.630083509],[-71.156265427,41.630136509],[-71.156318427,41.63019051],[-71.156387427,41.63024251],[-71.156433427,41.630295509],[-71.156455427,41.630354509],[-71.156486427,41.630412509],[-71.156524427,41.630487509],[-71.156555427,41.63054151],[-71.156593427,41.63059451],[-71.156646427,41.630647509],[-71.156700427,41.630705509],[-71.156753427,41.63075351],[-71.156776427,41.63077151],[-71.156806427,41.63079351],[-71.156860427,41.630841509],[-71.156921427,41.63088551],[-71.156990427,41.63092951],[-71.157051428,41.63097351],[-71.157104427,41.63103051],[-71.157150428,41.631093509],[-71.157226428,41.63121751],[-71.157257427,41.63127551],[-71.157295427,41.63132951],[-71.157341428,41.63137751],[-71.157455428,41.63149251],[-71.157486427,41.63155051],[-71.157516428,41.63159551],[-71.157539428,41.63165351],[-71.157554428,41.63172451],[-71.157562427,41.63181451],[-71.157562427,41.63189551],[-71.157569427,41.63195851],[-71.157615428,41.63201251],[-71.157676428,41.63207351],[-71.157737427,41.632144509],[-71.157783427,41.63222951],[-71.157920428,41.63245651],[-71.157974427,41.63253651],[-71.158035428,41.63262151],[-71.158172428,41.63278051],[-71.158233428,41.63286551],[-71.158302428,41.63294451],[-71.158363427,41.63302451],[-71.158409428,41.63310051],[-71.158447428,41.63317151],[-71.158493428,41.63324251],[-71.158538428,41.63330051],[-71.158576428,41.63335851],[-71.158599428,41.63341251],[-71.158622428,41.63347451],[-71.158645428,41.63354151],[-71.158653428,41.63362251],[-71.158637428,41.63375851],[-71.158668428,41.633879511],[-71.158714428,41.633995511],[-71.158737428,41.63404451],[-71.158775428,41.63412051],[-71.158821428,41.63418651],[-71.158866428,41.63424451],[-71.158905428,41.63429751],[-71.158958428,41.63435051],[-71.159019428,41.63440851],[-71.159072428,41.63445651],[-71.159126428,41.63450951],[-71.159217429,41.63464351],[-71.159256429,41.63471051],[-71.159286428,41.63476851],[-71.159317428,41.63481751],[-71.159362428,41.634870511],[-71.159416428,41.63493651],[-71.159484428,41.63502151],[-71.159545429,41.635105511],[-71.159584429,41.63519451],[-71.159614428,41.635279511],[-71.159652428,41.635360511],[-71.159713428,41.635435511],[-71.159767428,41.635497511],[-71.159805428,41.63555951],[-71.159843428,41.635626511],[-71.159881429,41.635702511],[-71.159919429,41.635751511],[-71.159957429,41.635809511],[-71.160018429,41.635925511],[-71.160049429,41.63598751],[-71.160072429,41.63604551],[-71.160102428,41.636112511],[-71.160125429,41.63616651],[-71.160133429,41.63622051],[-71.160148429,41.63627851],[-71.160171429,41.636332511],[-71.160201428,41.636453511],[-71.160232429,41.63651551],[-71.160255428,41.63657351],[-71.160286429,41.636636511],[-71.160316428,41.636694511],[-71.160354428,41.636751511],[-71.160392428,41.636814511],[-71.160423429,41.636858511],[-71.160453429,41.636876511],[-71.160492429,41.636938511],[-71.160522429,41.636996511],[-71.160545428,41.63705951],[-71.160568428,41.63711751],[-71.160598429,41.637170511],[-71.160644428,41.637286511],[-71.160659429,41.637345511],[-71.160652429,41.637426511],[-71.160652429,41.637493511],[-71.160675429,41.637556511],[-71.160705429,41.637623511],[-71.160720429,41.637681511],[-71.160720429,41.637861511],[-71.160728429,41.637920511],[-71.160728429,41.637996511],[-71.160720429,41.638078511],[-71.160728429,41.638131511],[-71.160774429,41.638239511],[-71.160827429,41.638305511],[-71.160896428,41.638358511],[-71.160949429,41.638397511],[-71.161010429,41.638450511],[-71.161026429,41.638504511],[-71.161033429,41.638567511],[-71.161094429,41.638620511],[-71.161170429,41.638659511],[-71.161239429,41.638721511],[-71.161269429,41.638774511],[-71.161300429,41.638832512],[-71.161315429,41.638890512],[-71.161338429,41.638962511],[-71.161384429,41.639024511],[-71.16142243,41.639069511],[-71.161430429,41.639091511],[-71.161437429,41.639113511],[-71.16142243,41.639208511],[-71.16142243,41.639280512],[-71.161407429,41.639357512],[-71.161384429,41.639425511],[-71.161346429,41.639480511],[-71.161293429,41.639521511],[-71.161270429,41.639589512],[-71.161293429,41.639665511],[-71.161315429,41.639719511],[-71.161354429,41.639772511],[-71.161399429,41.639839511],[-71.161430429,41.639902512],[-71.161476429,41.640031511],[-71.16149843,41.640089511],[-71.161529429,41.640152512],[-71.161567429,41.640210511],[-71.161620429,41.640249512],[-71.16167443,41.640302511],[-71.161720429,41.640360511],[-71.161766429,41.640413511],[-71.16181143,41.640457511],[-71.16184943,41.640506512],[-71.161880429,41.640560512],[-71.16190343,41.640618511],[-71.16192643,41.640694511],[-71.161979429,41.640760512],[-71.162018429,41.640814512],[-71.162055429,41.640871512],[-71.162094429,41.640938512],[-71.16212443,41.641001511],[-71.16215543,41.641050512],[-71.16221643,41.641107512],[-71.162262429,41.641165512],[-71.162246429,41.641323512],[-71.162231429,41.641382512],[-71.162208429,41.641432511],[-71.162147429,41.641487511],[-71.16207843,41.641529511],[-71.162017429,41.641579512],[-71.161956429,41.641688512],[-71.161934429,41.641747512],[-71.161911429,41.641802511],[-71.161895429,41.641856511],[-71.161857429,41.641920512],[-71.16181143,41.641984512],[-71.161804429,41.642056512],[-71.16182743,41.642132511],[-71.16184943,41.642195512],[-71.161918429,41.642239512],[-71.16196443,41.642265511],[-71.16201743,41.642340512],[-71.162048429,41.642394512],[-71.162086429,41.642411512],[-71.16215543,41.642405512],[-71.162307429,41.642492512],[-71.16239143,41.642536512],[-71.16245243,41.642571512],[-71.16260543,41.642626512],[-71.162673429,41.642666512],[-71.16272743,41.642710512],[-71.16276543,41.642763512],[-71.16279543,41.642825512],[-71.162788429,41.642893512],[-71.16276543,41.642966512],[-71.16275843,41.643038512],[-71.16274243,41.643088512],[-71.162712429,41.643156512],[-71.162673429,41.643224512],[-71.16265843,41.643283512],[-71.16265843,41.643350512],[-71.16260543,41.643428512],[-71.16254443,41.643483512],[-71.162498429,41.643529512],[-71.162498429,41.643588512],[-71.16250543,41.643646512],[-71.16250643,41.643709512],[-71.16249043,41.643795512],[-71.16247543,41.643912512],[-71.162460429,41.643976512],[-71.16244543,41.644034512],[-71.16242943,41.644152512],[-71.16243043,41.644224512],[-71.16241443,41.644278512],[-71.16235343,41.644405512],[-71.16231543,41.644465512],[-71.16217043,41.644571512],[-71.16212443,41.644608512],[-71.16205643,41.644668512],[-71.16202543,41.644727512],[-71.16197943,41.644786512],[-71.16192643,41.644837513],[-71.161857429,41.644879512],[-71.16178843,41.644925512],[-71.16176643,41.644993513],[-71.16174343,41.645052513],[-71.161697429,41.645111513],[-71.16167443,41.645170513],[-71.161644429,41.645229513],[-71.16159043,41.645280512],[-71.16155243,41.645330512],[-71.16155243,41.645380513],[-71.161529429,41.645448512],[-71.16149143,41.645462513],[-71.16146043,41.645458513],[-71.16145343,41.645503512],[-71.16145343,41.645562512],[-71.161407429,41.645621512],[-71.16137643,41.645685512],[-71.161354429,41.645735513],[-71.161331429,41.645794513],[-71.161331429,41.645857512],[-71.16132343,41.645929513],[-71.16132343,41.646073512],[-71.161354429,41.646126513],[-71.161407429,41.646175513],[-71.161445429,41.646224512],[-71.161506429,41.646272513],[-71.16157543,41.646311513],[-71.16163643,41.646351513],[-71.161697429,41.646395513],[-71.16174343,41.646452513],[-71.16178843,41.646461512],[-71.161857429,41.646414513],[-71.16194143,41.646386512],[-71.16202543,41.646398513],[-71.16209443,41.646423512],[-71.16217043,41.646417513],[-71.16225443,41.646407512],[-71.16235343,41.646405512],[-71.16244443,41.646399513],[-71.16251343,41.646384512],[-71.16258943,41.646364512],[-71.16268143,41.646417513],[-71.16283343,41.646396513],[-71.16290243,41.646390513],[-71.16307043,41.646315513],[-71.16314743,41.646286512],[-71.16323843,41.646276513],[-71.16341443,41.646281513],[-71.16349043,41.646280513],[-71.16357443,41.646292513],[-71.163703431,41.646330512],[-71.16377243,41.646347512],[-71.163856431,41.646381512],[-71.16392543,41.646425512],[-71.164009431,41.646437513],[-71.16406243,41.646436513],[-71.16410043,41.646408512],[-71.164108431,41.646372513],[-71.16419943,41.646357513],[-71.164283431,41.646364512],[-71.164367431,41.646362512],[-71.164535431,41.646350512],[-71.16462643,41.646353513],[-71.16470343,41.646379513],[-71.164772431,41.646409512],[-71.164848431,41.646452513],[-71.164893431,41.646506512],[-71.16489443,41.646569513],[-71.164871431,41.646632513],[-71.164825431,41.646696512],[-71.164772431,41.646765513],[-71.16474143,41.646810512],[-71.164711431,41.646860513],[-71.164672431,41.646933512],[-71.164657431,41.647001513],[-71.164657431,41.647073513],[-71.16466543,41.647140513],[-71.164688431,41.647194513],[-71.164718431,41.647301512],[-71.16468043,41.647338512],[-71.16462643,41.647384513],[-71.16460443,41.647434512],[-71.164558431,41.647552512],[-71.16450443,41.647607513],[-71.16442843,41.647649512],[-71.164360431,41.647678513],[-71.164337431,41.647709512],[-71.164306431,41.647737513],[-71.164245431,41.647788513],[-71.164169431,41.647825512],[-71.164085431,41.647872513],[-71.164016431,41.647918513],[-71.163932431,41.647951513],[-71.16387143,41.647984513],[-71.16382643,41.648034513],[-71.163757431,41.648072513],[-71.16368843,41.648104513],[-71.16361943,41.648160513],[-71.16355143,41.648283513],[-71.163505431,41.648347513],[-71.16345243,41.648384513],[-71.16339843,41.648425513],[-71.16334543,41.648471513],[-71.16326143,41.648518513],[-71.16319243,41.648551513],[-71.163078431,41.648602513],[-71.16300943,41.648635513],[-71.16293343,41.648664513],[-71.16284943,41.648692513],[-71.16266643,41.648750513],[-71.16258243,41.648769513],[-71.16249843,41.648775513],[-71.16241443,41.648799513],[-71.16232343,41.648806513],[-71.16223943,41.648794513],[-71.16216243,41.648791513],[-71.162086429,41.648810513],[-71.16200243,41.648825513],[-71.16193343,41.648863513],[-71.16184243,41.648878513],[-71.16178143,41.648865513],[-71.161697429,41.648889513],[-71.16163643,41.648927513],[-71.16159043,41.648977513],[-71.16152943,41.649019513],[-71.16147643,41.649065513],[-71.16143843,41.649124513],[-71.161407429,41.649201513],[-71.16139943,41.649255513],[-71.16139943,41.649314513],[-71.161407429,41.649372513],[-71.16145343,41.649488513],[-71.16146843,41.649551513],[-71.16149143,41.649614514],[-71.16150643,41.649668513],[-71.16152943,41.649726513],[-71.16154443,41.649784513],[-71.16154443,41.649915513],[-71.161560429,41.650045514],[-71.161560429,41.650112513],[-71.16157543,41.650247513],[-71.16157543,41.650549514],[-71.16159043,41.650684514],[-71.16158343,41.650742514],[-71.16158343,41.650864514],[-71.16159043,41.650922514],[-71.16159043,41.650981514],[-71.16158243,41.651058514],[-71.16158343,41.651112514],[-71.16160543,41.651188514],[-71.16162843,41.651241513],[-71.16164443,41.651309514],[-71.16165143,41.651381514],[-71.16165143,41.651498514],[-71.16166743,41.651569513],[-71.16168943,41.651641514],[-71.16169743,41.651713514],[-71.16169743,41.651776514],[-71.16170543,41.651843513],[-71.16175043,41.651883513],[-71.16182743,41.651877514],[-71.16209443,41.651886514],[-71.16217043,41.651884513],[-71.162261431,41.651873514],[-71.16235343,41.651872514],[-71.16239943,41.651907514],[-71.16242943,41.651969514],[-71.16244543,41.652023514],[-71.16242243,41.652087514],[-71.162376431,41.652151514],[-71.16234543,41.652210514],[-71.162338431,41.652286514],[-71.16231543,41.652341514],[-71.162300431,41.652395514],[-71.16227743,41.652450514],[-71.16225443,41.652509514],[-71.16223943,41.652563513],[-71.16221643,41.652640513],[-71.16217043,41.652699513],[-71.162124431,41.652750514],[-71.16208643,41.652818514],[-71.16205643,41.652891514],[-71.16204043,41.652963514],[-71.16201743,41.653022514],[-71.16199443,41.653076514],[-71.16198743,41.653140514],[-71.16198743,41.653234514],[-71.16199443,41.653311514],[-71.16201043,41.653387514],[-71.16200243,41.653450514],[-71.16197243,41.653509514],[-71.16191843,41.653564514],[-71.16187243,41.653619514],[-71.16185743,41.653646514],[-71.16181943,41.653661514],[-71.16178143,41.653661514],[-71.16169743,41.653645514],[-71.16161343,41.653619514],[-71.16154443,41.653576514],[-71.16148343,41.653532514],[-71.16142243,41.653497514],[-71.16136143,41.653458514],[-71.16128543,41.653445514],[-71.16128543,41.653418514],[-71.16127043,41.653383514],[-71.16117843,41.653447514],[-71.16111743,41.653494514],[-71.16107143,41.653549514],[-71.16102543,41.653608514],[-71.16098743,41.653667514],[-71.160957429,41.653722514],[-71.16092643,41.653840514],[-71.16090343,41.653907515],[-71.16082743,41.653990514],[-71.16077443,41.654059514],[-71.16073543,41.654104514],[-71.160705429,41.654159514],[-71.160667429,41.654214514],[-71.16063743,41.654268514],[-71.160606429,41.654314514],[-71.16057543,41.654386514],[-71.16055343,41.654450514],[-71.16052243,41.654514514],[-71.16047643,41.654577514],[-71.16044643,41.654637514],[-71.16046143,41.654695514],[-71.16046143,41.654753514],[-71.160430429,41.654844514],[-71.16041543,41.654912514],[-71.16037743,41.654962514],[-71.160545429,41.655157514],[-71.16058343,41.655219514],[-71.16062943,41.655277514],[-71.160682429,41.655317514],[-71.16076643,41.655423515],[-71.16081243,41.655463515],[-71.160858429,41.655516514],[-71.16090443,41.655596514],[-71.16094943,41.655645514],[-71.16102643,41.655688514],[-71.16107943,41.655728514],[-71.16114843,41.655767514],[-71.16113243,41.655831515],[-71.16114043,41.655862514],[-71.16118643,41.655906514],[-71.16126243,41.655936514],[-71.16129343,41.655963514],[-71.16132343,41.656012515],[-71.16143743,41.656118514],[-71.16149943,41.656152514],[-71.16162143,41.656267514],[-71.16175843,41.656328514],[-71.161849431,41.656326514],[-71.16188043,41.656357515],[-71.16189543,41.656393514],[-71.161910431,41.656437515],[-71.16193843,41.656500515]]]]}}"}, +{"type": "precinct", "typeId": 3305, "areaId": 25973, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":312,\"NAME\":\"3305\",\"SHAPE_Length\":0.12752919202267,\"SHAPE_Area\":-0.00037966640614711},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.134806813,41.638902863],[-71.135010421,41.638904512],[-71.135344421,41.638934512],[-71.135871421,41.638979512],[-71.136176421,41.639000512],[-71.136360421,41.638997512],[-71.136779421,41.638953512],[-71.137352421,41.638897512],[-71.137840422,41.638839512],[-71.138244422,41.638741512],[-71.138526422,41.638628512],[-71.138603422,41.638739512],[-71.138771422,41.638975512],[-71.138969422,41.639183512],[-71.139320422,41.639464512],[-71.139663422,41.639687512],[-71.139808422,41.639757512],[-71.140068423,41.639851512],[-71.140357423,41.639927512],[-71.140678422,41.639979512],[-71.140899423,41.639998512],[-71.141372423,41.639993512],[-71.142082423,41.639980512],[-71.142677423,41.639983512],[-71.143318423,41.639989512],[-71.143302424,41.640106512],[-71.143280423,41.640341512],[-71.143310423,41.640421512],[-71.143325424,41.640470512],[-71.143379424,41.640492512],[-71.143508423,41.640507512],[-71.143859423,41.640528512],[-71.143966424,41.640521512],[-71.144065424,41.640484512],[-71.144187423,41.640391512],[-71.144279424,41.640286512],[-71.144416424,41.640346512],[-71.144546424,41.640376512],[-71.144790423,41.640389512],[-71.145187424,41.640382512],[-71.145843424,41.640329512],[-71.145866424,41.640387512],[-71.146026424,41.640708512],[-71.146049424,41.640757512],[-71.146301424,41.640762512],[-71.146507424,41.640771512],[-71.146682424,41.640786512],[-71.146858424,41.640810512],[-71.147003425,41.640852512],[-71.147163425,41.640876512],[-71.147361425,41.640895512],[-71.147613425,41.640908512],[-71.147834425,41.640904512],[-71.148017425,41.640905512],[-71.148254425,41.640905512],[-71.148437425,41.640915512],[-71.148658425,41.640925512],[-71.148818425,41.640953512],[-71.148956425,41.641014512],[-71.149032425,41.641003512],[-71.149116426,41.640979512],[-71.149192426,41.640946512],[-71.149398425,41.640807512],[-71.149490425,41.640774512],[-71.149627425,41.640735512],[-71.149726425,41.640711512],[-71.149879425,41.640749512],[-71.150001425,41.640787512],[-71.150115425,41.640816512],[-71.150222426,41.640805512],[-71.150398426,41.640707511],[-71.150512426,41.640647511],[-71.150665426,41.640558512],[-71.150795425,41.640457512],[-71.150894425,41.640329512],[-71.151413426,41.638595512],[-71.151443426,41.638643511],[-71.151489426,41.638697511],[-71.151542426,41.638736511],[-71.151634426,41.638843511],[-71.151703426,41.638954511],[-71.151718426,41.639012511],[-71.151748426,41.639079512],[-71.151778426,41.639128511],[-71.151817426,41.639181512],[-71.151863426,41.639248511],[-71.151931426,41.639368511],[-71.151916426,41.639396512],[-71.151832426,41.639411512],[-71.151863426,41.639446511],[-71.151886426,41.639495512],[-71.151863426,41.639545512],[-71.151824426,41.639604512],[-71.151763426,41.639646512],[-71.151687426,41.639688512],[-71.151596426,41.639721512],[-71.151512426,41.639759512],[-71.151458426,41.639800512],[-71.151428426,41.639855512],[-71.151405426,41.639914512],[-71.151374426,41.639982512],[-71.151252426,41.640066511],[-71.151244425,41.640129512],[-71.151275426,41.640209512],[-71.151229426,41.640228512],[-71.151138426,41.640230512],[-71.151130426,41.640293512],[-71.151130426,41.640347512],[-71.151138426,41.640405512],[-71.151107425,41.640451512],[-71.151054426,41.640511511],[-71.151054426,41.640565512],[-71.151031426,41.640624512],[-71.151000426,41.640687511],[-71.151016426,41.640718512],[-71.151054426,41.640754512],[-71.151031426,41.640795512],[-71.150985426,41.640836512],[-71.150924426,41.640882511],[-71.150863426,41.640919512],[-71.150817425,41.640970512],[-71.150779426,41.641016512],[-71.150726426,41.641057511],[-71.150634426,41.641068512],[-71.150558426,41.641101512],[-71.150535426,41.641160512],[-71.150504425,41.641228512],[-71.150482426,41.641291512],[-71.150444425,41.641342512],[-71.150390425,41.641397512],[-71.150344426,41.641452512],[-71.150321426,41.641510512],[-71.150268425,41.641561512],[-71.150253425,41.641620512],[-71.150207426,41.641657512],[-71.150154425,41.641707512],[-71.150131426,41.641775512],[-71.150116425,41.641834512],[-71.150108426,41.641893512],[-71.150108426,41.641951512],[-71.150116425,41.642014512],[-71.150108426,41.642073512],[-71.150100426,41.642159512],[-71.150100426,41.642235512],[-71.150123426,41.642316512],[-71.150161426,41.642378512],[-71.150298426,41.642493512],[-71.150367425,41.642527512],[-71.150443426,41.642539512],[-71.150474426,41.642602512],[-71.150527426,41.642628512],[-71.150649426,41.642612512],[-71.150733426,41.642597512],[-71.150817426,41.642609512],[-71.150878426,41.642648512],[-71.150947426,41.642697512],[-71.150985426,41.642750513],[-71.151039426,41.642794512],[-71.151145426,41.642900512],[-71.151184426,41.642949512],[-71.151145426,41.642995512],[-71.151184426,41.643043513],[-71.151229426,41.643079512],[-71.151244426,41.643114512],[-71.151245426,41.643236513],[-71.151237426,41.643295513],[-71.151222426,41.643349512],[-71.151183426,41.643426512],[-71.151153426,41.643490513],[-71.151130426,41.643549513],[-71.151062426,41.643568513],[-71.150985426,41.643588513],[-71.150916426,41.643620512],[-71.150855426,41.643671512],[-71.150817426,41.643726513],[-71.150810426,41.643789512],[-71.150764426,41.643835512],[-71.150726426,41.643881513],[-71.150688426,41.643944512],[-71.150657426,41.643999513],[-71.150619425,41.644054513],[-71.150596426,41.644113513],[-71.150573426,41.644167513],[-71.150550426,41.644226513],[-71.150512426,41.644285513],[-71.150497426,41.644340512],[-71.150489426,41.644403513],[-71.150467426,41.644466513],[-71.150466426,41.644529512],[-71.150512426,41.644578513],[-71.150520426,41.644632512],[-71.150535426,41.644690512],[-71.150581426,41.644748512],[-71.150627426,41.644765512],[-71.150650426,41.644801512],[-71.150657426,41.644864512],[-71.150703426,41.644876513],[-71.150779426,41.644852513],[-71.150833426,41.644820512],[-71.150825426,41.644878512],[-71.150825426,41.644937512],[-71.150878426,41.644945513],[-71.150924426,41.644976512],[-71.150978426,41.645020512],[-71.150995426,41.645028513],[-71.151046426,41.645054512],[-71.151100426,41.645108513],[-71.151145427,41.645156512],[-71.151199426,41.645200513],[-71.151268426,41.645235512],[-71.151130426,41.645292512],[-71.151054426,41.645316513],[-71.151077426,41.645360513],[-71.151046426,41.645410513],[-71.151046426,41.645437513],[-71.151069426,41.645491513],[-71.151100426,41.645549513],[-71.151138426,41.645607513],[-71.151168426,41.645660512],[-71.151214426,41.645722513],[-71.151275426,41.645762513],[-71.151336426,41.645797512],[-71.151367426,41.645810513],[-71.151412426,41.645809513],[-71.151473427,41.645780513],[-71.151558426,41.645761513],[-71.151657426,41.645750513],[-71.151741426,41.645744513],[-71.151809426,41.645725513],[-71.151901427,41.645705513],[-71.151962427,41.645663513],[-71.152046426,41.645653513],[-71.152114427,41.645660512],[-71.152183426,41.645700512],[-71.152244426,41.645739512],[-71.152305426,41.645774513],[-71.152381426,41.645809513],[-71.152450427,41.645834512],[-71.152587427,41.645895512],[-71.152618427,41.645917513],[-71.152679427,41.645920513],[-71.152755427,41.645946513],[-71.152938427,41.646001513],[-71.153022427,41.646022513],[-71.153099427,41.646052512],[-71.153167427,41.646082513],[-71.153251427,41.646094513],[-71.153343427,41.646101513],[-71.153434427,41.646118513],[-71.153595427,41.646151513],[-71.153694427,41.646162513],[-71.153770427,41.646188512],[-71.153854427,41.646182513],[-71.153945427,41.646171513],[-71.154007427,41.646138513],[-71.154029427,41.646097513],[-71.154068427,41.646088512],[-71.154121427,41.646055513],[-71.154197427,41.646036513],[-71.154350427,41.646001513],[-71.154380428,41.645947513],[-71.154426427,41.645892513],[-71.154510427,41.645872513],[-71.154586427,41.645880513],[-71.154655428,41.645892513],[-71.154731428,41.645918513],[-71.154823427,41.645934512],[-71.154922428,41.645941513],[-71.154998427,41.645958513],[-71.155014427,41.645980513],[-71.154983428,41.646030512],[-71.155036427,41.646065513],[-71.155075427,41.646109512],[-71.155067427,41.646177513],[-71.155059428,41.646227512],[-71.155097428,41.646284512],[-71.155097428,41.646343512],[-71.155090427,41.646406513],[-71.155059428,41.646456513],[-71.155021428,41.646525513],[-71.154983428,41.646579513],[-71.154937427,41.646634512],[-71.154876427,41.646658513],[-71.154350427,41.648486513],[-71.156512428,41.648768513],[-71.156577428,41.648684513],[-71.156623428,41.648634513],[-71.156669428,41.648588513],[-71.156654428,41.648565513],[-71.156715428,41.648510513],[-71.156707428,41.648452513],[-71.156753428,41.648442513],[-71.156791428,41.648450513],[-71.156814428,41.648441513],[-71.156875428,41.648413513],[-71.156952428,41.648393513],[-71.157035428,41.648369513],[-71.157119428,41.648372513],[-71.157203428,41.648411513],[-71.157272428,41.648414513],[-71.157348428,41.648413513],[-71.157432428,41.648429513],[-71.157508428,41.648455513],[-71.157585428,41.648485514],[-71.157661428,41.648520513],[-71.157737428,41.648550513],[-71.157806429,41.648589513],[-71.157874428,41.648642513],[-71.157913428,41.648690513],[-71.157989429,41.648721513],[-71.158066429,41.648782513],[-71.158126429,41.648731513],[-71.158157429,41.648740513],[-71.158226428,41.648766513],[-71.158294429,41.648800513],[-71.158249428,41.648869513],[-71.158249428,41.648891513],[-71.158287428,41.648895514],[-71.158363428,41.648898513],[-71.158439428,41.648973514],[-71.158454429,41.649027513],[-71.158477429,41.649076513],[-71.158515429,41.649138513],[-71.158531429,41.649210513],[-71.158531429,41.649269513],[-71.158500428,41.649323514],[-71.158485429,41.649373513],[-71.158500428,41.649431513],[-71.158554429,41.649484513],[-71.158576428,41.649538514],[-71.158577428,41.649556514],[-71.158554429,41.649566513],[-71.158531429,41.649606513],[-71.158561429,41.649664513],[-71.158607429,41.649727513],[-71.158645429,41.649775513],[-71.158676429,41.649833513],[-71.158714428,41.649891513],[-71.158744429,41.649945514],[-71.158790428,41.650011513],[-71.158828429,41.650087513],[-71.158843429,41.650136513],[-71.158882429,41.650208513],[-71.158950429,41.650265513],[-71.159011429,41.650318514],[-71.159034429,41.650372514],[-71.159027429,41.650439513],[-71.158981429,41.650476513],[-71.158935429,41.650491514],[-71.158950429,41.650526514],[-71.159057429,41.650605514],[-71.159095429,41.650659513],[-71.159118429,41.650721514],[-71.159141429,41.650779514],[-71.159164429,41.650842514],[-71.159194429,41.650904513],[-71.159271429,41.651029513],[-71.15931643,41.651087513],[-71.159362429,41.651149514],[-71.159439429,41.651265514],[-71.159477429,41.651327514],[-71.159515429,41.651380514],[-71.159545429,41.651438514],[-71.159583429,41.651514513],[-71.15964543,41.651648513],[-71.159652429,41.651720514],[-71.159637429,41.651837514],[-71.159637429,41.651900513],[-71.159629429,41.651955514],[-71.15960743,41.652013514],[-71.159591429,41.652072514],[-71.15956843,41.652140514],[-71.159538429,41.652280514],[-71.15953043,41.652344514],[-71.159515429,41.652407513],[-71.159515429,41.652470514],[-71.159522429,41.652528514],[-71.159522429,41.652596514],[-71.159507429,41.652664514],[-71.159461429,41.652813514],[-71.15943143,41.652881514],[-71.159408429,41.652954514],[-71.159339429,41.653135514],[-71.159309429,41.653194514],[-71.159286429,41.653258514],[-71.159263429,41.653326514],[-71.159240429,41.653389514],[-71.159225429,41.653457514],[-71.159202429,41.653521514],[-71.159202429,41.653656514],[-71.15917943,41.653719514],[-71.15917943,41.653791514],[-71.159195429,41.653845514],[-71.15921743,41.653903514],[-71.159225429,41.653971514],[-71.159240429,41.654029514],[-71.159248429,41.654092514],[-71.159263429,41.654150514],[-71.159286429,41.654213514],[-71.159301429,41.654275515],[-71.159324429,41.654342514],[-71.15935543,41.654400514],[-71.15939343,41.654458514],[-71.159446429,41.654498514],[-71.159492429,41.654564514],[-71.15954543,41.654627515],[-71.15960643,41.654684515],[-71.159691429,41.654718514],[-71.159767429,41.654726515],[-71.159927429,41.654750514],[-71.15999543,41.654767514],[-71.16008743,41.654783515],[-71.160194429,41.654776514],[-71.16024743,41.654802515],[-71.16027043,41.654852514],[-71.160278429,41.654914514],[-71.16030143,41.654950514],[-71.16037743,41.654962514],[-71.16041543,41.654912514],[-71.160430429,41.654844514],[-71.16046143,41.654753514],[-71.16046143,41.654695514],[-71.16044643,41.654637514],[-71.16047643,41.654577514],[-71.16052243,41.654514514],[-71.16055343,41.654450514],[-71.16057543,41.654386514],[-71.160606429,41.654314514],[-71.16063743,41.654268514],[-71.160667429,41.654214514],[-71.160705429,41.654159514],[-71.16073543,41.654104514],[-71.16077443,41.654059514],[-71.16082743,41.653990514],[-71.16090343,41.653907515],[-71.16092643,41.653840514],[-71.160957429,41.653722514],[-71.16098743,41.653667514],[-71.16102543,41.653608514],[-71.16107143,41.653549514],[-71.16111743,41.653494514],[-71.16117843,41.653447514],[-71.16127043,41.653383514],[-71.16128543,41.653418514],[-71.16128543,41.653445514],[-71.16136143,41.653458514],[-71.16142243,41.653497514],[-71.16148343,41.653532514],[-71.16154443,41.653576514],[-71.16161343,41.653619514],[-71.16169743,41.653645514],[-71.16178143,41.653661514],[-71.16181943,41.653661514],[-71.16185743,41.653646514],[-71.16187243,41.653619514],[-71.16191843,41.653564514],[-71.16197243,41.653509514],[-71.16200243,41.653450514],[-71.16201043,41.653387514],[-71.16199443,41.653311514],[-71.16198743,41.653234514],[-71.16198743,41.653140514],[-71.16199443,41.653076514],[-71.16201743,41.653022514],[-71.16204043,41.652963514],[-71.16205643,41.652891514],[-71.16208643,41.652818514],[-71.162124431,41.652750514],[-71.16217043,41.652699513],[-71.16221643,41.652640513],[-71.16223943,41.652563513],[-71.16225443,41.652509514],[-71.16227743,41.652450514],[-71.162300431,41.652395514],[-71.16231543,41.652341514],[-71.162338431,41.652286514],[-71.16234543,41.652210514],[-71.162376431,41.652151514],[-71.16242243,41.652087514],[-71.16244543,41.652023514],[-71.16242943,41.651969514],[-71.16239943,41.651907514],[-71.16235343,41.651872514],[-71.162261431,41.651873514],[-71.16217043,41.651884513],[-71.16209443,41.651886514],[-71.16182743,41.651877514],[-71.16175043,41.651883513],[-71.16170543,41.651843513],[-71.16169743,41.651776514],[-71.16169743,41.651713514],[-71.16168943,41.651641514],[-71.16166743,41.651569513],[-71.16165143,41.651498514],[-71.16165143,41.651381514],[-71.16164443,41.651309514],[-71.16162843,41.651241513],[-71.16160543,41.651188514],[-71.16158343,41.651112514],[-71.16158243,41.651058514],[-71.16159043,41.650981514],[-71.16159043,41.650922514],[-71.16158343,41.650864514],[-71.16158343,41.650742514],[-71.16159043,41.650684514],[-71.16157543,41.650549514],[-71.16157543,41.650247513],[-71.161560429,41.650112513],[-71.161560429,41.650045514],[-71.16154443,41.649915513],[-71.16154443,41.649784513],[-71.16152943,41.649726513],[-71.16150643,41.649668513],[-71.16149143,41.649614514],[-71.16146843,41.649551513],[-71.16145343,41.649488513],[-71.161407429,41.649372513],[-71.16139943,41.649314513],[-71.16139943,41.649255513],[-71.161407429,41.649201513],[-71.16143843,41.649124513],[-71.16147643,41.649065513],[-71.16152943,41.649019513],[-71.16159043,41.648977513],[-71.16163643,41.648927513],[-71.161697429,41.648889513],[-71.16178143,41.648865513],[-71.16184243,41.648878513],[-71.16193343,41.648863513],[-71.16200243,41.648825513],[-71.162086429,41.648810513],[-71.16216243,41.648791513],[-71.16223943,41.648794513],[-71.16232343,41.648806513],[-71.16241443,41.648799513],[-71.16249843,41.648775513],[-71.16258243,41.648769513],[-71.16266643,41.648750513],[-71.16284943,41.648692513],[-71.16293343,41.648664513],[-71.16300943,41.648635513],[-71.163078431,41.648602513],[-71.16319243,41.648551513],[-71.16326143,41.648518513],[-71.16334543,41.648471513],[-71.16339843,41.648425513],[-71.16345243,41.648384513],[-71.163505431,41.648347513],[-71.16355143,41.648283513],[-71.16361943,41.648160513],[-71.16368843,41.648104513],[-71.163757431,41.648072513],[-71.16382643,41.648034513],[-71.16387143,41.647984513],[-71.163932431,41.647951513],[-71.164016431,41.647918513],[-71.164085431,41.647872513],[-71.164169431,41.647825512],[-71.164245431,41.647788513],[-71.164306431,41.647737513],[-71.164337431,41.647709512],[-71.164360431,41.647678513],[-71.16442843,41.647649512],[-71.16450443,41.647607513],[-71.164558431,41.647552512],[-71.16460443,41.647434512],[-71.16462643,41.647384513],[-71.16468043,41.647338512],[-71.164718431,41.647301512],[-71.164688431,41.647194513],[-71.16466543,41.647140513],[-71.164657431,41.647073513],[-71.164657431,41.647001513],[-71.164672431,41.646933512],[-71.164711431,41.646860513],[-71.16474143,41.646810512],[-71.164772431,41.646765513],[-71.164825431,41.646696512],[-71.164871431,41.646632513],[-71.16489443,41.646569513],[-71.164893431,41.646506512],[-71.164848431,41.646452513],[-71.164772431,41.646409512],[-71.16470343,41.646379513],[-71.16462643,41.646353513],[-71.164535431,41.646350512],[-71.164367431,41.646362512],[-71.164283431,41.646364512],[-71.16419943,41.646357513],[-71.164108431,41.646372513],[-71.16410043,41.646408512],[-71.16406243,41.646436513],[-71.164009431,41.646437513],[-71.16392543,41.646425512],[-71.163856431,41.646381512],[-71.16377243,41.646347512],[-71.163703431,41.646330512],[-71.16357443,41.646292513],[-71.16349043,41.646280513],[-71.16341443,41.646281513],[-71.16323843,41.646276513],[-71.16314743,41.646286512],[-71.16307043,41.646315513],[-71.16290243,41.646390513],[-71.16283343,41.646396513],[-71.16268143,41.646417513],[-71.16258943,41.646364512],[-71.16251343,41.646384512],[-71.16244443,41.646399513],[-71.16235343,41.646405512],[-71.16225443,41.646407512],[-71.16217043,41.646417513],[-71.16209443,41.646423512],[-71.16202543,41.646398513],[-71.16194143,41.646386512],[-71.161857429,41.646414513],[-71.16178843,41.646461512],[-71.16174343,41.646452513],[-71.161697429,41.646395513],[-71.16163643,41.646351513],[-71.16157543,41.646311513],[-71.161506429,41.646272513],[-71.161445429,41.646224512],[-71.161407429,41.646175513],[-71.161354429,41.646126513],[-71.16132343,41.646073512],[-71.16132343,41.645929513],[-71.161331429,41.645857512],[-71.161331429,41.645794513],[-71.161354429,41.645735513],[-71.16137643,41.645685512],[-71.161407429,41.645621512],[-71.16145343,41.645562512],[-71.16145343,41.645503512],[-71.16146043,41.645458513],[-71.16149143,41.645462513],[-71.161529429,41.645448512],[-71.16155243,41.645380513],[-71.16155243,41.645330512],[-71.16159043,41.645280512],[-71.161644429,41.645229513],[-71.16167443,41.645170513],[-71.161697429,41.645111513],[-71.16174343,41.645052513],[-71.16176643,41.644993513],[-71.16178843,41.644925512],[-71.161857429,41.644879512],[-71.16192643,41.644837513],[-71.16197943,41.644786512],[-71.16202543,41.644727512],[-71.16205643,41.644668512],[-71.16212443,41.644608512],[-71.16217043,41.644571512],[-71.16231543,41.644465512],[-71.16235343,41.644405512],[-71.16241443,41.644278512],[-71.16243043,41.644224512],[-71.16242943,41.644152512],[-71.16244543,41.644034512],[-71.162460429,41.643976512],[-71.16247543,41.643912512],[-71.16249043,41.643795512],[-71.16250643,41.643709512],[-71.16250543,41.643646512],[-71.162498429,41.643588512],[-71.162498429,41.643529512],[-71.16254443,41.643483512],[-71.16260543,41.643428512],[-71.16265843,41.643350512],[-71.16265843,41.643283512],[-71.162673429,41.643224512],[-71.162712429,41.643156512],[-71.16274243,41.643088512],[-71.16275843,41.643038512],[-71.16276543,41.642966512],[-71.162788429,41.642893512],[-71.16279543,41.642825512],[-71.16276543,41.642763512],[-71.16272743,41.642710512],[-71.162673429,41.642666512],[-71.16260543,41.642626512],[-71.16245243,41.642571512],[-71.16239143,41.642536512],[-71.162307429,41.642492512],[-71.16215543,41.642405512],[-71.162086429,41.642411512],[-71.162048429,41.642394512],[-71.16201743,41.642340512],[-71.16196443,41.642265511],[-71.161918429,41.642239512],[-71.16184943,41.642195512],[-71.16182743,41.642132511],[-71.161804429,41.642056512],[-71.16181143,41.641984512],[-71.161857429,41.641920512],[-71.161895429,41.641856511],[-71.161911429,41.641802511],[-71.161934429,41.641747512],[-71.161956429,41.641688512],[-71.162017429,41.641579512],[-71.16207843,41.641529511],[-71.162147429,41.641487511],[-71.162208429,41.641432511],[-71.162231429,41.641382512],[-71.162246429,41.641323512],[-71.162262429,41.641165512],[-71.16221643,41.641107512],[-71.16215543,41.641050512],[-71.16212443,41.641001511],[-71.162094429,41.640938512],[-71.162055429,41.640871512],[-71.162018429,41.640814512],[-71.161979429,41.640760512],[-71.16192643,41.640694511],[-71.16190343,41.640618511],[-71.161880429,41.640560512],[-71.16184943,41.640506512],[-71.16181143,41.640457511],[-71.161766429,41.640413511],[-71.161720429,41.640360511],[-71.16167443,41.640302511],[-71.161620429,41.640249512],[-71.161567429,41.640210511],[-71.161529429,41.640152512],[-71.16149843,41.640089511],[-71.161476429,41.640031511],[-71.161430429,41.639902512],[-71.161399429,41.639839511],[-71.161354429,41.639772511],[-71.161315429,41.639719511],[-71.161293429,41.639665511],[-71.161270429,41.639589512],[-71.161293429,41.639521511],[-71.161346429,41.639480511],[-71.161384429,41.639425511],[-71.161407429,41.639357512],[-71.16142243,41.639280512],[-71.16142243,41.639208511],[-71.161437429,41.639113511],[-71.161430429,41.639091511],[-71.16142243,41.639069511],[-71.161384429,41.639024511],[-71.161338429,41.638962511],[-71.161315429,41.638890512],[-71.161300429,41.638832512],[-71.161269429,41.638774511],[-71.161239429,41.638721511],[-71.161170429,41.638659511],[-71.161094429,41.638620511],[-71.161033429,41.638567511],[-71.161026429,41.638504511],[-71.161010429,41.638450511],[-71.160949429,41.638397511],[-71.160896428,41.638358511],[-71.160827429,41.638305511],[-71.160774429,41.638239511],[-71.160728429,41.638131511],[-71.160720429,41.638078511],[-71.160728429,41.637996511],[-71.160728429,41.637920511],[-71.160720429,41.637861511],[-71.160720429,41.637681511],[-71.160705429,41.637623511],[-71.160675429,41.637556511],[-71.160652429,41.637493511],[-71.160652429,41.637426511],[-71.160659429,41.637345511],[-71.160644428,41.637286511],[-71.160598429,41.637170511],[-71.160568428,41.63711751],[-71.160545428,41.63705951],[-71.160522429,41.636996511],[-71.160492429,41.636938511],[-71.160453429,41.636876511],[-71.160423429,41.636858511],[-71.160392428,41.636814511],[-71.160354428,41.636751511],[-71.160316428,41.636694511],[-71.160286429,41.636636511],[-71.160255428,41.63657351],[-71.160232429,41.63651551],[-71.160201428,41.636453511],[-71.160171429,41.636332511],[-71.160148429,41.63627851],[-71.160133429,41.63622051],[-71.160125429,41.63616651],[-71.160102428,41.636112511],[-71.160072429,41.63604551],[-71.160049429,41.63598751],[-71.160018429,41.635925511],[-71.159957429,41.635809511],[-71.159919429,41.635751511],[-71.159881429,41.635702511],[-71.159843428,41.635626511],[-71.159805428,41.63555951],[-71.159767428,41.635497511],[-71.159713428,41.635435511],[-71.159652428,41.635360511],[-71.159614428,41.635279511],[-71.159584429,41.63519451],[-71.159545429,41.635105511],[-71.159484428,41.63502151],[-71.159416428,41.63493651],[-71.159362428,41.634870511],[-71.159317428,41.63481751],[-71.159286428,41.63476851],[-71.159256429,41.63471051],[-71.159217429,41.63464351],[-71.159126428,41.63450951],[-71.159072428,41.63445651],[-71.159019428,41.63440851],[-71.158958428,41.63435051],[-71.158905428,41.63429751],[-71.158866428,41.63424451],[-71.158821428,41.63418651],[-71.158775428,41.63412051],[-71.158737428,41.63404451],[-71.158714428,41.633995511],[-71.158668428,41.633879511],[-71.158637428,41.63375851],[-71.158653428,41.63362251],[-71.158645428,41.63354151],[-71.158622428,41.63347451],[-71.158599428,41.63341251],[-71.158576428,41.63335851],[-71.158538428,41.63330051],[-71.158493428,41.63324251],[-71.158447428,41.63317151],[-71.158409428,41.63310051],[-71.158363427,41.63302451],[-71.158302428,41.63294451],[-71.158233428,41.63286551],[-71.158172428,41.63278051],[-71.158035428,41.63262151],[-71.157974427,41.63253651],[-71.157920428,41.63245651],[-71.157783427,41.63222951],[-71.157737427,41.632144509],[-71.157676428,41.63207351],[-71.157615428,41.63201251],[-71.157569427,41.63195851],[-71.157562427,41.63189551],[-71.157562427,41.63181451],[-71.157554428,41.63172451],[-71.157539428,41.63165351],[-71.157516428,41.63159551],[-71.157486427,41.63155051],[-71.157455428,41.63149251],[-71.157341428,41.63137751],[-71.157295427,41.63132951],[-71.157257427,41.63127551],[-71.157226428,41.63121751],[-71.157150428,41.631093509],[-71.157104427,41.63103051],[-71.157051428,41.63097351],[-71.156990427,41.63092951],[-71.156921427,41.63088551],[-71.156860427,41.630841509],[-71.156806427,41.63079351],[-71.156776427,41.63077151],[-71.156753427,41.63075351],[-71.156700427,41.630705509],[-71.156646427,41.630647509],[-71.156593427,41.63059451],[-71.156555427,41.63054151],[-71.156524427,41.630487509],[-71.156486427,41.630412509],[-71.156455427,41.630354509],[-71.156433427,41.630295509],[-71.156387427,41.63024251],[-71.156318427,41.63019051],[-71.156265427,41.630136509],[-71.156211427,41.630083509],[-71.156135427,41.630044509],[-71.156051427,41.62999251],[-71.155975427,41.62993951],[-71.155906427,41.629887509],[-71.155861427,41.62984251],[-71.155807426,41.62979851],[-71.155776427,41.629749509],[-71.155738427,41.62969651],[-71.155700427,41.629652509],[-71.155662427,41.62960351],[-71.155616427,41.629559509],[-71.155570427,41.62948851],[-71.155479426,41.629363509],[-71.155441426,41.62931451],[-71.155395427,41.629266509],[-71.155357427,41.62921751],[-71.155296427,41.629150509],[-71.155258427,41.629106509],[-71.155182427,41.62899951],[-71.155128426,41.628946509],[-71.155075427,41.628907509],[-71.154998427,41.628859509],[-71.154876426,41.628771509],[-71.154792426,41.628732509],[-71.154708427,41.62868951],[-71.154632427,41.628645509],[-71.154564426,41.62861051],[-71.154480426,41.628580509],[-71.154380427,41.628578509],[-71.154304427,41.628579509],[-71.154220426,41.628576509],[-71.154159426,41.628546509],[-71.154098426,41.628488509],[-71.154044426,41.628444509],[-71.153999426,41.628400509],[-71.153953427,41.628334509],[-71.153953427,41.628270509],[-71.153945426,41.628208509],[-71.153915426,41.62814551],[-71.153861426,41.628097509],[-71.153785426,41.628089509],[-71.153701426,41.628095509],[-71.153625426,41.628092509],[-71.153541426,41.628107509],[-71.153465426,41.628149509],[-71.153381426,41.62820051],[-71.153312426,41.628251509],[-71.153236426,41.628266509],[-71.153152426,41.628254509],[-71.153091426,41.628215509],[-71.153045426,41.628157509],[-71.153022426,41.628108509],[-71.152953426,41.628060509],[-71.152892426,41.627993509],[-71.152847426,41.62794951],[-71.152793426,41.627900509],[-71.152755426,41.62785251],[-71.152656426,41.627718509],[-71.152618426,41.627661509],[-71.152587426,41.627607509],[-71.152557426,41.62755851],[-71.152526426,41.627496509],[-71.152511425,41.627437509],[-71.152504426,41.627379509],[-71.152503426,41.62732551],[-71.152504426,41.627266509],[-71.152503426,41.627203509],[-71.152481426,41.627154509],[-71.152404426,41.627111509],[-71.152313426,41.627081509],[-71.152221425,41.627069509],[-71.152130425,41.627080509],[-71.152107425,41.627134509],[-71.152122425,41.627188509],[-71.152153426,41.627237509],[-71.152175426,41.627291509],[-71.152175426,41.627367509],[-71.152168425,41.627439509],[-71.152122425,41.627499509],[-71.152053426,41.62754151],[-71.152000426,41.62756051],[-71.151969425,41.627569509],[-71.151870425,41.627584509],[-71.151794425,41.627586509],[-71.151718425,41.627592509],[-71.151611426,41.627589509],[-71.151504425,41.627605509],[-71.151435426,41.627633509],[-71.151367425,41.627666509],[-71.151313425,41.627712509],[-71.151252425,41.62775451],[-71.151207425,41.627800509],[-71.151122425,41.627855509],[-71.151069425,41.62789251],[-71.150985425,41.627939509],[-71.150947425,41.62798551],[-71.150894425,41.628031509],[-71.150848425,41.628076509],[-71.150794426,41.62812251],[-71.150764425,41.628191509],[-71.150779425,41.628244509],[-71.150817425,41.62829851],[-71.150863425,41.628346509],[-71.150932425,41.628390509],[-71.151008426,41.628425509],[-71.151084426,41.628468509],[-71.151084426,41.62849551],[-71.151001425,41.628614509],[-71.150947425,41.62866551],[-71.150901425,41.628715509],[-71.150833426,41.62876651],[-71.150771425,41.62880751],[-71.150726425,41.62886251],[-71.150680425,41.62888651],[-71.150611425,41.628855509],[-71.150558425,41.62882051],[-71.150497425,41.62878651],[-71.150428425,41.628733509],[-71.150360425,41.628676509],[-71.150299425,41.62863251],[-71.150253425,41.62858751],[-71.150161425,41.628544509],[-71.150078425,41.62851451],[-71.149993425,41.628502509],[-71.149925425,41.62851351],[-71.149849425,41.628545509],[-71.149772425,41.62859251],[-71.149642425,41.62870751],[-71.149596425,41.628771509],[-71.149581425,41.62885751],[-71.149543425,41.628947509],[-71.149536425,41.62897951],[-71.149498425,41.62903451],[-71.149482425,41.629084509],[-71.149513425,41.62913751],[-71.149559425,41.62919051],[-71.149520425,41.62923651],[-71.149490424,41.62929151],[-71.149467425,41.62935451],[-71.149498425,41.62940851],[-71.149513425,41.62946151],[-71.149505425,41.62952551],[-71.149520425,41.62958751],[-71.149551425,41.62963651],[-71.149574425,41.62969451],[-71.149574425,41.629767509],[-71.149566424,41.62983951],[-71.149551425,41.62989851],[-71.149505425,41.62996651],[-71.149452424,41.630080509],[-71.149452424,41.63013451],[-71.149436425,41.63025151],[-71.149459425,41.63031451],[-71.149490424,41.63036251],[-71.149528424,41.63041651],[-71.149589425,41.63046451],[-71.149642425,41.63052251],[-71.149703424,41.63057951],[-71.149757425,41.63061951],[-71.149844425,41.63070351],[-71.149310425,41.63091251],[-71.148985424,41.63102151],[-71.148887424,41.63100451],[-71.148605425,41.63099151],[-71.148262424,41.63101151],[-71.148002425,41.63104851],[-71.147751425,41.63111151],[-71.147514424,41.63126051],[-71.147315424,41.63140751],[-71.147064424,41.63152051],[-71.146606424,41.63165951],[-71.146598424,41.63152451],[-71.146575424,41.63077751],[-71.146507423,41.63014451],[-71.146507423,41.63008551],[-71.146469424,41.62972151],[-71.146453424,41.62960051],[-71.146415424,41.62936251],[-71.146400424,41.62923651],[-71.146385424,41.629083509],[-71.146370423,41.62890351],[-71.146362424,41.62875951],[-71.146362424,41.628426509],[-71.146385424,41.628092509],[-71.146446423,41.62747951],[-71.146530423,41.626833509],[-71.146583423,41.626242509],[-71.146331423,41.626337509],[-71.145652423,41.62658451],[-71.144836423,41.62685651],[-71.143905423,41.62720651],[-71.143386422,41.627374509],[-71.142929423,41.627549509],[-71.142463423,41.62767551],[-71.142387423,41.627699509],[-71.142097422,41.62777251],[-71.142059422,41.62778651],[-71.141860422,41.627835509],[-71.141616422,41.627880509],[-71.141372422,41.62792051],[-71.141098422,41.62796151],[-71.140785422,41.627990509],[-71.140457422,41.62802751],[-71.140326421,41.62804451],[-71.139845422,41.628091509],[-71.139143421,41.628169509],[-71.137732421,41.62831851],[-71.137015421,41.62839251],[-71.136282421,41.62848051],[-71.13552742,41.62855551],[-71.135498122,41.62855551],[-71.134806813,41.638902863]]]]}}"}, +{"type": "precinct", "typeId": 3306, "areaId": 25971, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":310,\"NAME\":\"3306\",\"SHAPE_Length\":0.30215306362996,\"SHAPE_Area\":-0.0024909651962962},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.197768526,41.601973237],[-71.197773766,41.602036188],[-71.197784323,41.601961328],[-71.197768526,41.601973237]]],[[[-71.197840737,41.60224738],[-71.197899906,41.602286963],[-71.197983248,41.602304357],[-71.198071031,41.602317006],[-71.198163323,41.602349197],[-71.198255642,41.602388706],[-71.198336303,41.602432324],[-71.198419695,41.602471879],[-71.198449541,41.602492099],[-71.198419439,41.602471503],[-71.19833544,41.602431503],[-71.198255439,41.602388503],[-71.19816244,41.602348503],[-71.198070439,41.602316503],[-71.197982439,41.602303503],[-71.197899439,41.602286503],[-71.197840439,41.602246503],[-71.1978137,41.602200765],[-71.197840737,41.60224738]]],[[[-71.198577576,41.602598052],[-71.198620079,41.602652683],[-71.198577439,41.602597503],[-71.198550897,41.602573172],[-71.198577576,41.602598052]]],[[[-71.198658367,41.602726175],[-71.198658439,41.602725503],[-71.198637161,41.602681526],[-71.198658367,41.602726175]]],[[[-71.198272305,41.603069599],[-71.198282486,41.603089257],[-71.198286356,41.60306894],[-71.198272305,41.603069599]]],[[[-71.198445629,41.603301973],[-71.198507534,41.603349613],[-71.198575634,41.603369024],[-71.198647527,41.603397568],[-71.19864744,41.603397503],[-71.198575439,41.603368503],[-71.198507439,41.603349503],[-71.198445439,41.603301503],[-71.198431502,41.603283732],[-71.198445629,41.603301973]]],[[[-71.198764822,41.603492467],[-71.198838329,41.603521955],[-71.198920795,41.603551421],[-71.198990724,41.603590368],[-71.199039351,41.603619461],[-71.198990439,41.603589503],[-71.19892044,41.603550503],[-71.19883744,41.603521503],[-71.19876444,41.603491503],[-71.198714175,41.603448535],[-71.198764822,41.603492467]]],[[[-71.199197892,41.603733251],[-71.199245746,41.603784322],[-71.19919744,41.603732503],[-71.199163797,41.603705494],[-71.199197892,41.603733251]]],[[[-71.199402512,41.603939383],[-71.199459026,41.603980307],[-71.199485241,41.604005779],[-71.19945844,41.603979503],[-71.19940244,41.603938503],[-71.199252636,41.603791695],[-71.199402512,41.603939383]]],[[[-71.199551476,41.604077675],[-71.199560441,41.604087092],[-71.199551439,41.604077503],[-71.199539942,41.604064363],[-71.199551476,41.604077675]]],[[[-71.199653789,41.604177036],[-71.199706699,41.604219986],[-71.199749329,41.604247841],[-71.199706439,41.604219503],[-71.19965344,41.604176504],[-71.199635134,41.604160159],[-71.199653789,41.604177036]]],[[[-71.199848494,41.604360295],[-71.199860585,41.604393177],[-71.19984844,41.604359503],[-71.199825812,41.604324371],[-71.199848494,41.604360295]]],[[[-71.200041512,41.60457918],[-71.200109809,41.604589238],[-71.200119447,41.604590647],[-71.20010944,41.604588503],[-71.20004144,41.604578503],[-71.199971453,41.604546917],[-71.200041512,41.60457918]]],[[[-71.200265462,41.604625983],[-71.200326442,41.604656833],[-71.200373589,41.604706705],[-71.20037344,41.604706503],[-71.20032644,41.604656503],[-71.20026544,41.604625504],[-71.200199689,41.604608153],[-71.200265462,41.604625983]]],[[[-71.200463819,41.604817278],[-71.200480574,41.604831341],[-71.200515941,41.604860995],[-71.20046344,41.604816504],[-71.200439614,41.604790142],[-71.200463819,41.604817278]]],[[[-71.200523037,41.604866945],[-71.200598352,41.604907894],[-71.200676346,41.604949468],[-71.200748057,41.604992398],[-71.200809936,41.605026612],[-71.200870904,41.605060137],[-71.200915296,41.605089847],[-71.200870441,41.605059503],[-71.20074744,41.604991504],[-71.20067544,41.604948503],[-71.200522633,41.604866606],[-71.200523037,41.604866945]]],[[[-71.200979482,41.605156129],[-71.201009234,41.605214174],[-71.20097944,41.605155503],[-71.200958131,41.605129517],[-71.200979482,41.605156129]]],[[[-71.201093621,41.605334785],[-71.201159104,41.60538712],[-71.20121292,41.605432107],[-71.201264469,41.60545341],[-71.20121244,41.605431503],[-71.20115844,41.605386504],[-71.20109344,41.605334503],[-71.201085708,41.605326455],[-71.201093621,41.605334785]]],[[[-71.201403957,41.605562247],[-71.20140344,41.605561504],[-71.201389838,41.605548856],[-71.201403957,41.605562247]]],[[[-71.201610641,41.606300055],[-71.201621889,41.606335641],[-71.201607228,41.606288959],[-71.201610641,41.606300055]]],[[[-71.201604629,41.606421042],[-71.201670732,41.606457767],[-71.201670441,41.606457504],[-71.201604619,41.606420604],[-71.201604629,41.606421042]]],[[[-71.201788523,41.606566009],[-71.201841513,41.606631805],[-71.201865665,41.606666552],[-71.201841441,41.606631504],[-71.201788441,41.606565504],[-71.201753804,41.606533341],[-71.201788523,41.606566009]]],[[[-71.202009687,41.606968377],[-71.202024196,41.607018025],[-71.201995845,41.606917703],[-71.202009687,41.606968377]]],[[[-71.202055763,41.607146444],[-71.202075219,41.607183897],[-71.202055494,41.607145607],[-71.202055763,41.607146444]]],[[[-71.20230962,41.607927912],[-71.202323994,41.607945463],[-71.202309441,41.607927504],[-71.202269658,41.607870814],[-71.20230962,41.607927912]]],[[[-71.202404555,41.608328877],[-71.202435496,41.608405639],[-71.202447454,41.608433648],[-71.2024045,41.608328649],[-71.202404555,41.608328877]]],[[[-71.202525868,41.608626106],[-71.202547836,41.608679563],[-71.202550263,41.60868529],[-71.202512508,41.608593185],[-71.202525868,41.608626106]]],[[[-71.20270331,41.609076271],[-71.202713082,41.609097141],[-71.202680513,41.609024664],[-71.20270331,41.609076271]]],[[[-71.20285005,41.609351428],[-71.202855852,41.609358961],[-71.202849441,41.609350504],[-71.202845292,41.609344787],[-71.20285005,41.609351428]]],[[[-71.202989516,41.609551713],[-71.20300619,41.609578412],[-71.20296776,41.60951544],[-71.202989516,41.609551713]]],[[[-71.203337441,41.610124505],[-71.203257441,41.610016504],[-71.203218441,41.609955504],[-71.203152442,41.609842504],[-71.203136151,41.609812732],[-71.203152576,41.609843469],[-71.203183568,41.609896286],[-71.203218582,41.609955883],[-71.203257732,41.610017297],[-71.203296888,41.610070752],[-71.203337441,41.610124505]]],[[[-71.203337441,41.610124505],[-71.203337686,41.61012483],[-71.203386671,41.610181352],[-71.203435636,41.610242174],[-71.203480518,41.610296262],[-71.203518871,41.610345416],[-71.203553797,41.610396139],[-71.203553441,41.610395505],[-71.203518441,41.610344504],[-71.203480441,41.610295504],[-71.203435441,41.610241505],[-71.203386442,41.610180505],[-71.203337441,41.610124505]]],[[[-71.203613427,41.610511853],[-71.203638691,41.610564655],[-71.203662197,41.610612818],[-71.20359078,41.610463653],[-71.203613427,41.610511853]]],[[[-71.204088591,41.611417817],[-71.20409584,41.611430059],[-71.204088442,41.611417504],[-71.204083277,41.611410245],[-71.204088591,41.611417817]]],[[[-71.204245728,41.611640976],[-71.204245442,41.611640505],[-71.204221182,41.611609236],[-71.204245728,41.611640976]]],[[[-71.204313749,41.611753205],[-71.204337687,41.611781723],[-71.204313442,41.611752504],[-71.204307084,41.611742034],[-71.204313749,41.611753205]]],[[[-71.204387839,41.61183783],[-71.204395389,41.611846037],[-71.204439493,41.61189086],[-71.204501505,41.611951121],[-71.204543456,41.612004656],[-71.204501442,41.611950505],[-71.204439442,41.611890505],[-71.204356151,41.611803385],[-71.204387839,41.61183783]]],[[[-71.204779491,41.612457205],[-71.204831756,41.612510053],[-71.204890548,41.612554937],[-71.204955097,41.612600453],[-71.20502781,41.612653285],[-71.205095617,41.612712919],[-71.205153567,41.612768847],[-71.205166667,41.612792453],[-71.205153442,41.612768505],[-71.205095442,41.612712505],[-71.205027442,41.612652505],[-71.204954442,41.612599505],[-71.204890442,41.612554505],[-71.204831442,41.612509504],[-71.204779442,41.612456505],[-71.204759866,41.612428898],[-71.204779491,41.612457205]]],[[[-71.205214692,41.612890463],[-71.205215463,41.612893141],[-71.205214442,41.612889505],[-71.205204012,41.612866038],[-71.205214692,41.612890463]]],[[[-71.205307557,41.61308882],[-71.205345924,41.613135503],[-71.205354516,41.613148604],[-71.205345442,41.613134505],[-71.205307442,41.613088505],[-71.205299318,41.613077165],[-71.205307557,41.61308882]]],[[[-71.205746708,41.613600003],[-71.205818442,41.613659505],[-71.205746443,41.613599504],[-71.20571653,41.613578566],[-71.205746708,41.613600003]]],[[[-71.205888013,41.613714941],[-71.20590017,41.613722991],[-71.205887591,41.613714604],[-71.205888013,41.613714941]]],[[[-71.206010809,41.613796962],[-71.206010442,41.613796505],[-71.205985501,41.613779877],[-71.206010809,41.613796962]]],[[[-71.206240465,41.614227889],[-71.206258066,41.614245488],[-71.206240442,41.614227505],[-71.206225433,41.614208307],[-71.206240465,41.614227889]]],[[[-71.206471612,41.61443675],[-71.206471443,41.614436505],[-71.206458513,41.614424037],[-71.206471612,41.61443675]]],[[[-71.206506442,41.614487552],[-71.206506443,41.614487505],[-71.206502509,41.614481773],[-71.206506442,41.614487552]]],[[[-71.206505692,41.614555349],[-71.206537449,41.61458512],[-71.206505701,41.614554751],[-71.206505692,41.614555349]]],[[[-71.206922431,41.615235361],[-71.206926436,41.615240838],[-71.206910524,41.615218259],[-71.206922431,41.615235361]]],[[[-71.206992622,41.615334885],[-71.20699941,41.615345484],[-71.206992443,41.615334505],[-71.206990163,41.61533127],[-71.206992622,41.615334885]]],[[[-71.207062795,41.615438091],[-71.207116649,41.615504435],[-71.207129888,41.615525615],[-71.207116442,41.615503505],[-71.207062443,41.615437505],[-71.207052796,41.615424209],[-71.207062795,41.615438091]]],[[[-71.207402918,41.615979271],[-71.207450505,41.61604363],[-71.207450443,41.616043505],[-71.207402443,41.615978505],[-71.207379094,41.615950311],[-71.207402918,41.615979271]]],[[[-71.207316294,41.617487557],[-71.207316443,41.617487506],[-71.207300786,41.617474388],[-71.207316294,41.617487557]]],[[[-71.138898747,41.62510548],[-71.135515006,41.628302751],[-71.135498122,41.62855551],[-71.13552742,41.62855551],[-71.136282421,41.62848051],[-71.137015421,41.62839251],[-71.137732421,41.62831851],[-71.139143421,41.628169509],[-71.139845422,41.628091509],[-71.140326421,41.62804451],[-71.140457422,41.62802751],[-71.140785422,41.627990509],[-71.141098422,41.62796151],[-71.141372422,41.62792051],[-71.141616422,41.627880509],[-71.141860422,41.627835509],[-71.142059422,41.62778651],[-71.142097422,41.62777251],[-71.142387423,41.627699509],[-71.142463423,41.62767551],[-71.142929423,41.627549509],[-71.143386422,41.627374509],[-71.143905423,41.62720651],[-71.144836423,41.62685651],[-71.145652423,41.62658451],[-71.146331423,41.626337509],[-71.146583423,41.626242509],[-71.147544424,41.625914509],[-71.148094424,41.625714509],[-71.148819425,41.625453509],[-71.149497425,41.625215509],[-71.150093424,41.625010508],[-71.150535425,41.624849509],[-71.150764425,41.624768509],[-71.151001425,41.624674509],[-71.151366425,41.624545509],[-71.151962426,41.624367508],[-71.152015425,41.624353509],[-71.152336425,41.624288508],[-71.152679426,41.624250508],[-71.153007426,41.624226508],[-71.153404426,41.624228508],[-71.153739425,41.624271508],[-71.153801426,41.624274508],[-71.154228426,41.624370508],[-71.154418426,41.624429508],[-71.154777426,41.624549509],[-71.155441426,41.624847509],[-71.155952427,41.625072508],[-71.156280427,41.625174509],[-71.156463427,41.625215509],[-71.156539427,41.625232509],[-71.156807427,41.625276509],[-71.156890427,41.625288509],[-71.157127427,41.625315509],[-71.157386427,41.625337509],[-71.157699427,41.625345508],[-71.157853428,41.625351509],[-71.158882428,41.625386509],[-71.160232428,41.625428509],[-71.160354428,41.625426509],[-71.160888428,41.625443508],[-71.161308428,41.625453509],[-71.163017429,41.625497508],[-71.163463429,41.625512509],[-71.164588429,41.625549509],[-71.16611443,41.625583508],[-71.16619843,41.625586509],[-71.16688543,41.625614508],[-71.167058431,41.625617508],[-71.167772431,41.625631508],[-71.167831431,41.625632508],[-71.168846431,41.625667509],[-71.169662431,41.625696508],[-71.170417431,41.625714508],[-71.170776432,41.625725509],[-71.172683432,41.625779508],[-71.173690432,41.625796508],[-71.174041432,41.625789508],[-71.174445433,41.625768508],[-71.174835433,41.625725508],[-71.175193433,41.625673508],[-71.175620433,41.625579508],[-71.176101433,41.625439508],[-71.176689434,41.625230508],[-71.177413434,41.624888508],[-71.178489434,41.624412508],[-71.179802434,41.623807508],[-71.181266435,41.623148508],[-71.182952436,41.622369508],[-71.183913435,41.621927507],[-71.184608436,41.621644507],[-71.184860436,41.621558507],[-71.185600436,41.621310507],[-71.185653436,41.621291507],[-71.186676437,41.620947507],[-71.187271437,41.620756506],[-71.188476437,41.620359507],[-71.188766437,41.620255507],[-71.189041437,41.620159507],[-71.189079437,41.620149507],[-71.189872438,41.619886507],[-71.190872437,41.619561507],[-71.191749438,41.619261506],[-71.192237438,41.619089506],[-71.192581438,41.618948506],[-71.192657438,41.618910506],[-71.192848438,41.618821507],[-71.192970439,41.618756506],[-71.193412438,41.618509507],[-71.193451438,41.618490507],[-71.193733439,41.618300506],[-71.194069438,41.618077506],[-71.194343438,41.617887506],[-71.195312439,41.617229506],[-71.19547244,41.617118506],[-71.196884439,41.616159506],[-71.19815844,41.615270506],[-71.19846344,41.615480505],[-71.19881444,41.615685505],[-71.19918844,41.615881505],[-71.199371441,41.615981505],[-71.19950144,41.616046506],[-71.200073441,41.616341506],[-71.200424441,41.616515506],[-71.20066044,41.616636506],[-71.201148441,41.616861506],[-71.201675441,41.617072505],[-71.201759441,41.617101506],[-71.201980441,41.617169505],[-71.202659442,41.617372506],[-71.203750442,41.617680506],[-71.204811443,41.617971506],[-71.204911443,41.618000506],[-71.205160443,41.618051506],[-71.20552839,41.618037546],[-71.205493962,41.618026978],[-71.205427716,41.618004853],[-71.205344317,41.618001667],[-71.205265826,41.617978253],[-71.205184886,41.617950556],[-71.205098224,41.61792097],[-71.2050279,41.617904323],[-71.204942868,41.617878468],[-71.204856187,41.617853227],[-71.204767057,41.617830426],[-71.20469595,41.617805155],[-71.204618254,41.617781126],[-71.204573286,41.617778014],[-71.204549494,41.617789113],[-71.204503682,41.617810516],[-71.204410475,41.617786446],[-71.204401121,41.617772472],[-71.204373455,41.617731075],[-71.204299389,41.617706506],[-71.204231526,41.617684971],[-71.204151417,41.61766217],[-71.204078653,41.617632641],[-71.203992816,41.617603056],[-71.203905285,41.617590687],[-71.203835798,41.617570977],[-71.203754044,41.617548195],[-71.203674725,41.617532759],[-71.203601099,41.617518573],[-71.203514436,41.617489649],[-71.203445776,41.617462531],[-71.203362379,41.617445873],[-71.203281442,41.61743105],[-71.203198841,41.61740703],[-71.203112212,41.617370718],[-71.203032116,41.6173387],[-71.202946248,41.617315906],[-71.20287017,41.617304778],[-71.20279741,41.617288124],[-71.202723837,41.61726902],[-71.202609658,41.617232912],[-71.202537965,41.617209491],[-71.202457272,41.617181358],[-71.202370355,41.61717473],[-71.202293362,41.617164056],[-71.202221578,41.617133888],[-71.202157053,41.61710239],[-71.202086241,41.617072888],[-71.202006451,41.617047456],[-71.201912355,41.617031455],[-71.201825454,41.617021465],[-71.201742988,41.616994676],[-71.201661413,41.61695984],[-71.20158159,41.616921601],[-71.201509838,41.616884709],[-71.201423786,41.616855922],[-71.20133774,41.616825808],[-71.201290257,41.616806337],[-71.201213129,41.616765429],[-71.201149465,41.616732583],[-71.20107774,41.6166964],[-71.201014079,41.616669592],[-71.200934275,41.616640751],[-71.200861678,41.616608591],[-71.200799794,41.616579752],[-71.200709251,41.616540226],[-71.200628537,41.616497319],[-71.200565771,41.61645503],[-71.200548718,41.616438908],[-71.200543255,41.616394573],[-71.200527891,41.616336101],[-71.200503565,41.616271592],[-71.200476531,41.616206435],[-71.2004585,41.616151341],[-71.200428402,41.616109457],[-71.200419862,41.616097611],[-71.200386619,41.616043873],[-71.200363213,41.615984786],[-71.200328168,41.615931706],[-71.200284162,41.615872611],[-71.200235657,41.615810805],[-71.200187191,41.615760435],[-71.200129744,41.615714798],[-71.200075923,41.61566917],[-71.200080324,41.615633528],[-71.200108848,41.615581094],[-71.200089928,41.615527324],[-71.200058643,41.615504716],[-71.200036987,41.615489085],[-71.199972463,41.615451525],[-71.199899811,41.615411932],[-71.199855851,41.61538243],[-71.199840556,41.615342117],[-71.199809079,41.615282322],[-71.199780318,41.615241379],[-71.19977571,41.615183553],[-71.199771097,41.615113675],[-71.199767361,41.615051826],[-71.199777095,41.61498999],[-71.199788615,41.614930811],[-71.199802813,41.614865601],[-71.199834023,41.614799018],[-71.19987152,41.614737162],[-71.199901827,41.614681303],[-71.19992589,41.614618086],[-71.199957084,41.614548164],[-71.199988268,41.614474171],[-71.199995313,41.614420377],[-71.199978209,41.614376035],[-71.199936929,41.614327055],[-71.199888441,41.614275335],[-71.199841743,41.614224991],[-71.199789701,41.614177333],[-71.199720617,41.614131024],[-71.19966502,41.614094128],[-71.199607595,41.614050526],[-71.199551091,41.614012255],[-71.199493669,41.613974667],[-71.199436274,41.613937812],[-71.19937621,41.613904906],[-71.199296409,41.613856625],[-71.199227335,41.613808281],[-71.199160949,41.613758641],[-71.199107071,41.613699543],[-71.199071121,41.613645156],[-71.199044148,41.613593424],[-71.199049364,41.613526864],[-71.199008938,41.613458356],[-71.19897387,41.613391165],[-71.198931639,41.613337448],[-71.198881388,41.613285083],[-71.198836431,41.61321455],[-71.198781668,41.613149434],[-71.198724225,41.613097072],[-71.198676666,41.61305544],[-71.198633562,41.612993007],[-71.198562712,41.612953417],[-71.198503524,41.612909147],[-71.198441636,41.612875618],[-71.198388783,41.612871615],[-71.198376163,41.612826597],[-71.198366169,41.612767453],[-71.19830159,41.612729229],[-71.198211955,41.61269908],[-71.198109822,41.612676377],[-71.198006759,41.612656988],[-71.19790103,41.612640976],[-71.197829373,41.612624253],[-71.19776304,41.61260281],[-71.197670728,41.61256529],[-71.197585532,41.612524381],[-71.197525443,41.612484156],[-71.197459987,41.61245128],[-71.197424069,41.612403594],[-71.197430208,41.612348472],[-71.197401439,41.612296757],[-71.197344913,41.612250435],[-71.197296535,41.612221583],[-71.197296575,41.612258586],[-71.197300296,41.612323088],[-71.197297777,41.612399054],[-71.19727464,41.612472335],[-71.197237182,41.612538924],[-71.197208625,41.612598126],[-71.197189029,41.61265056],[-71.197138062,41.612692963],[-71.19709074,41.612750813],[-71.197091764,41.612811991],[-71.197082029,41.612886612],[-71.197046314,41.612945132],[-71.197001665,41.612998277],[-71.196953358,41.613038675],[-71.196905089,41.613070999],[-71.196893395,41.613056218],[-71.196870866,41.612993061],[-71.196894057,41.61292783],[-71.196910076,41.612871362],[-71.196953002,41.612847805],[-71.19696191,41.612826263],[-71.196914326,41.612777242],[-71.196891838,41.612724835],[-71.196901541,41.612663662],[-71.196945322,41.612607152],[-71.196948796,41.612561422],[-71.196911982,41.612509732],[-71.196888686,41.612506377],[-71.196827876,41.612561584],[-71.196757229,41.612602677],[-71.196678468,41.612632337],[-71.196588914,41.612637154],[-71.196533299,41.612598221],[-71.196510856,41.61257543],[-71.196494699,41.612570035],[-71.19649649,41.612558628],[-71.196551064,41.612526961],[-71.196631635,41.612520816],[-71.196672819,41.612504619],[-71.196668292,41.612475722],[-71.196687857,41.612410527],[-71.196721794,41.612360716],[-71.196771865,41.612321009],[-71.196847024,41.612285965],[-71.196893508,41.612231453],[-71.196920245,41.612170279],[-71.196950531,41.612099669],[-71.196988017,41.612033744],[-71.197042547,41.61198529],[-71.19710786,41.611950952],[-71.197179428,41.611921296],[-71.19725015,41.611903049],[-71.197331661,41.611897546],[-71.197405102,41.611904189],[-71.197495629,41.611925581],[-71.197560187,41.611967854],[-71.19757644,41.612024316],[-71.197607872,41.612060555],[-71.197643641,41.612042399],[-71.197683834,41.611983868],[-71.19773662,41.611962966],[-71.197759902,41.611962936],[-71.197819854,41.611927898],[-71.197868115,41.611884161],[-71.197916392,41.611830339],[-71.197922378,41.611820818],[-71.197949395,41.611777871],[-71.197979754,41.61172407],[-71.198001111,41.611666244],[-71.198018873,41.611601661],[-71.198033966,41.611534442],[-71.198049071,41.611471224],[-71.198071313,41.611399976],[-71.198103486,41.61136228],[-71.198059516,41.611315968],[-71.19800205,41.61126228],[-71.197959857,41.611213914],[-71.197912285,41.611168965],[-71.197848598,41.611116586],[-71.197781366,41.611085719],[-71.19772045,41.611085787],[-71.197670234,41.61106569],[-71.197692557,41.611029364],[-71.197684477,41.611017267],[-71.197606548,41.611019395],[-71.197525098,41.611031599],[-71.197464149,41.611012846],[-71.197442609,41.610979285],[-71.197404946,41.610965853],[-71.197335048,41.610938386],[-71.197257926,41.610904862],[-71.197194274,41.610877411],[-71.19711268,41.610835825],[-71.197051852,41.610862765],[-71.196977576,41.610891774],[-71.196887099,41.610892519],[-71.19681098,41.610891952],[-71.196725825,41.610862477],[-71.196669343,41.610826926],[-71.196615498,41.610781297],[-71.196570642,41.610742346],[-71.196543681,41.6106886],[-71.196470149,41.610656412],[-71.196416419,41.610657825],[-71.196381392,41.610608815],[-71.196350915,41.61059675],[-71.196297147,41.610586729],[-71.196257615,41.610530297],[-71.196230628,41.610469164],[-71.196201843,41.61041475],[-71.196173945,41.610359675],[-71.196148756,41.610305271],[-71.196106616,41.610258963],[-71.196056365,41.61021396],[-71.196009674,41.610163615],[-71.195960327,41.610120627],[-71.19590384,41.610086425],[-71.195850906,41.610048185],[-71.19580245,41.610003872],[-71.195758462,41.609955501],[-71.195700168,41.609916606],[-71.195633837,41.609889102],[-71.195566607,41.609845517],[-71.195505558,41.609789783],[-71.195460672,41.60973807],[-71.195430094,41.609676264],[-71.195404877,41.609615136],[-71.195392205,41.609549284],[-71.195396552,41.609486747],[-71.19540178,41.609405437],[-71.195408834,41.609350318],[-71.195409582,41.609275674],[-71.195409421,41.609199724],[-71.195394039,41.609127164],[-71.195369701,41.609053963],[-71.195343583,41.608983364],[-71.195329975,41.608909459],[-71.195302979,41.608844301],[-71.195277812,41.608791909],[-71.195266931,41.608734112],[-71.195242639,41.608676988],[-71.195238906,41.608609101],[-71.195230701,41.608533153],[-71.19523145,41.608464615],[-71.195244729,41.608401393],[-71.195252686,41.608342228],[-71.195252602,41.608282401],[-71.195258713,41.608220578],[-71.195275603,41.608154004],[-71.195298763,41.608088773],[-71.195321044,41.608035638],[-71.195337941,41.607980498],[-71.195373733,41.607963647],[-71.195386258,41.607956911],[-71.195369129,41.607905866],[-71.195384313,41.607891041],[-71.195387625,41.60787344],[-71.195396719,41.607825187],[-71.195389391,41.607757268],[-71.195373179,41.607692779],[-71.195359623,41.607633671],[-71.195357715,41.607579214],[-71.195356717,41.607538892],[-71.195379978,41.607523402],[-71.195434515,41.607472914],[-71.195489084,41.607447993],[-71.195580438,41.607447869],[-71.195783753,41.607458379],[-71.195851008,41.607502672],[-71.195900385,41.607551675],[-71.195947028,41.607605404],[-71.195991952,41.607661828],[-71.196038617,41.607710823],[-71.196079911,41.607755139],[-71.196131982,41.607808174],[-71.196195654,41.607856483],[-71.196255781,41.607906863],[-71.196311396,41.607957872],[-71.196363422,41.608007544],[-71.196406548,41.608063963],[-71.196444252,41.608113689],[-71.196483767,41.608160676],[-71.196534015,41.608199595],[-71.196519732,41.608223799],[-71.196532331,41.60825338],[-71.196559207,41.608253337],[-71.196591423,41.608245234],[-71.19668824,41.608288805],[-71.196662331,41.608323109],[-71.196717941,41.608349259],[-71.196785063,41.608337772],[-71.196840693,41.608372658],[-71.19689811,41.608422985],[-71.196935766,41.608469989],[-71.196986917,41.608504886],[-71.196990565,41.608545878],[-71.19708012,41.608533032],[-71.197080071,41.608517572],[-71.197098881,41.608515495],[-71.1972135,41.608499239],[-71.197271622,41.608457541],[-71.197353917,41.608413711],[-71.197337683,41.608359971],[-71.197282058,41.608310975],[-71.197249714,41.608255203],[-71.197225409,41.608194077],[-71.197208256,41.60813496],[-71.197157102,41.608081242],[-71.197132799,41.608026177],[-71.197110283,41.607967023],[-71.197079698,41.60791329],[-71.197037494,41.607854862],[-71.196972931,41.607814602],[-71.196918243,41.607773635],[-71.196911031,41.607752142],[-71.196936043,41.607727234],[-71.196917178,41.607701731],[-71.196877647,41.607645299],[-71.196827401,41.607592955],[-71.196769077,41.607541277],[-71.196708088,41.607505691],[-71.196690172,41.607498989],[-71.196653331,41.607447275],[-71.196617415,41.607399612],[-71.196587841,41.607370741],[-71.196541282,41.607383562],[-71.196515203,41.607337205],[-71.196526822,41.607315693],[-71.196526804,41.607312994],[-71.196505174,41.607259949],[-71.196463852,41.607202163],[-71.196530962,41.607160443],[-71.196487928,41.60713627],[-71.196456583,41.60713429],[-71.196454735,41.607125548],[-71.196422421,41.607076522],[-71.196386429,41.607012713],[-71.196356735,41.606938148],[-71.196340458,41.6068743],[-71.196332328,41.606814474],[-71.196322334,41.606756039],[-71.196318631,41.606700914],[-71.196314921,41.606634377],[-71.196305847,41.606574595],[-71.196291363,41.60650533],[-71.196280476,41.606442182],[-71.196272305,41.606378331],[-71.196266815,41.606314488],[-71.196260401,41.606252655],[-71.19625669,41.606192841],[-71.196250273,41.606131671],[-71.196242979,41.606069172],[-71.196237646,41.606056329],[-71.196234905,41.606049689],[-71.196167672,41.606026916],[-71.196133531,41.605977885],[-71.196114612,41.605918763],[-71.196105543,41.605864333],[-71.196154734,41.605816528],[-71.196125054,41.605764833],[-71.19611151,41.605709705],[-71.196089892,41.6056479],[-71.19606733,41.605579369],[-71.196047511,41.605510823],[-71.196033034,41.605453062],[-71.196040976,41.605390535],[-71.19600775,41.605341483],[-71.195950327,41.605293168],[-71.195896495,41.605239465],[-71.195848886,41.605177683],[-71.195799541,41.605128658],[-71.195760006,41.605073597],[-71.195750034,41.605010428],[-71.19572932,41.604957339],[-71.195691631,41.604904982],[-71.195738995,41.604863234],[-71.195805135,41.604813393],[-71.195858796,41.604760912],[-71.195907914,41.604702359],[-71.195955243,41.60462905],[-71.195983771,41.604575245],[-71.196011434,41.604524159],[-71.196047988,41.60445487],[-71.196090865,41.604394996],[-71.19609607,41.604389681],[-71.196148944,41.604335758],[-71.19620167,41.604274538],[-71.196231086,41.604213325],[-71.196246181,41.604152166],[-71.196289077,41.60410773],[-71.196351676,41.604059275],[-71.196424149,41.604029644],[-71.196507399,41.604008687],[-71.196570866,41.603956849],[-71.196596714,41.603896336],[-71.196609113,41.603831785],[-71.196621514,41.603766571],[-71.196670656,41.603722128],[-71.19673061,41.603691824],[-71.196789629,41.603652781],[-71.196798396,41.603563362],[-71.19681438,41.603507534],[-71.196888614,41.603459726],[-71.196970042,41.603424036],[-71.197057724,41.60338022],[-71.197125655,41.603325055],[-71.19719005,41.603276558],[-71.197243651,41.60321669],[-71.197280285,41.603168897],[-71.197324962,41.603121126],[-71.197368741,41.603076715],[-71.197433981,41.603016831],[-71.197496542,41.602956254],[-71.197562687,41.602898362],[-71.197623489,41.602849216],[-71.197685168,41.602801443],[-71.197750433,41.60275567],[-71.197812154,41.602711877],[-71.197862188,41.602658722],[-71.197888065,41.602617694],[-71.1978271,41.602590868],[-71.197749138,41.60256944],[-71.197689999,41.602536604],[-71.197636181,41.602499688],[-71.197606483,41.602432488],[-71.197592021,41.602371343],[-71.197566828,41.602311564],[-71.197549671,41.60224705],[-71.197532529,41.602179174],[-71.197520749,41.602118035],[-71.197509872,41.602052828],[-71.197496334,41.601989673],[-71.1974935,41.601924487],[-71.197509538,41.601889539],[-71.197589204,41.601871956],[-71.19766175,41.60187185],[-71.197732532,41.601890583],[-71.197780897,41.601901299],[-71.197821531,41.601897129],[-71.197832194,41.60189734],[-71.197842205,41.601900111],[-71.197844244,41.601901447],[-71.197843439,41.601900503],[-71.197883439,41.601831503],[-71.197723439,41.601778503],[-71.197570439,41.601736503],[-71.197418439,41.601684502],[-71.197250439,41.601638503],[-71.197120439,41.601605502],[-71.197082439,41.601592503],[-71.196914439,41.601545503],[-71.196769439,41.601503503],[-71.196617439,41.601457503],[-71.196472438,41.601410502],[-71.196334438,41.601367503],[-71.196075439,41.601282503],[-71.195968438,41.601235502],[-71.195770438,41.601130503],[-71.195602438,41.601026503],[-71.195518438,41.600964502],[-71.195434438,41.600898503],[-71.195358438,41.600828502],[-71.195228438,41.600686503],[-71.195167438,41.600611502],[-71.195121439,41.600535502],[-71.195075438,41.600477502],[-71.195045438,41.600415502],[-71.195007438,41.600348503],[-71.194984438,41.600285502],[-71.194953438,41.600142502],[-71.194930438,41.600070502],[-71.194900438,41.599918503],[-71.194877438,41.599693502],[-71.194923438,41.599512503],[-71.194999438,41.599200503],[-71.195083438,41.598838502],[-71.195114438,41.598698503],[-71.195136438,41.598405503],[-71.195136438,41.598281502],[-71.195137438,41.597945502],[-71.195129438,41.597585502],[-71.195121438,41.597076502],[-71.195114438,41.596739502],[-71.195114438,41.596586502],[-71.195076438,41.595893501],[-71.195053438,41.595650502],[-71.195014438,41.595367501],[-71.194923438,41.594833502],[-71.194854438,41.594393501],[-71.194793437,41.594025501],[-71.194740438,41.593742502],[-71.194709438,41.593518501],[-71.194679437,41.593320501],[-71.194663438,41.593158502],[-71.193534437,41.593563501],[-71.193405438,41.593610501],[-71.192443437,41.593989501],[-71.191650437,41.594274501],[-71.191162437,41.594441502],[-71.191069436,41.594475502],[-71.190543436,41.594664501],[-71.189277436,41.595143502],[-71.188751436,41.595334502],[-71.188583436,41.595386502],[-71.188552435,41.595400502],[-71.184429435,41.596248502],[-71.179735432,41.596869502],[-71.175700431,41.597179502],[-71.175470431,41.597133503],[-71.175225432,41.597133503],[-71.174120431,41.597270503],[-71.173752431,41.597307503],[-71.173108431,41.597307503],[-71.172280431,41.597397503],[-71.17168143,41.597535503],[-71.170121429,41.597751503],[-71.16811143,41.598028503],[-71.167259429,41.598092503],[-71.166648429,41.598135503],[-71.166046428,41.598173503],[-71.165748429,41.598183503],[-71.165473428,41.598193503],[-71.165153428,41.598199503],[-71.165176428,41.598162503],[-71.165191428,41.598140503],[-71.165206428,41.598112503],[-71.165214428,41.598090503],[-71.165214428,41.598000503],[-71.165207428,41.597959503],[-71.165191428,41.597914503],[-71.165054428,41.597224503],[-71.165023428,41.597080502],[-71.164909428,41.596506503],[-71.164794428,41.595945503],[-71.164711428,41.595573503],[-71.164649428,41.595281503],[-71.164588428,41.595053502],[-71.164520428,41.594793503],[-71.164436428,41.594497502],[-71.164337428,41.594197502],[-71.164291427,41.594053503],[-71.164230428,41.593857502],[-71.164093428,41.593297502],[-71.164039427,41.593059502],[-71.163978427,41.592835502],[-71.163925427,41.592633502],[-71.163856428,41.592320502],[-71.163795428,41.591996502],[-71.163734427,41.591682502],[-71.163673427,41.591386501],[-71.163650427,41.591229502],[-71.163627427,41.591099502],[-71.163436427,41.590278501],[-71.163223427,41.589616501],[-71.162948427,41.588693502],[-71.162758427,41.587905501],[-71.162742427,41.587855502],[-71.162407427,41.586421501],[-71.162269427,41.5858475],[-71.162109426,41.585116501],[-71.161872426,41.584008501],[-71.161682426,41.5831705],[-71.161636427,41.5829635],[-71.161483426,41.5822545],[-71.161323426,41.581537499],[-71.160919426,41.579788499],[-71.160552426,41.5782955],[-71.160262425,41.577063499],[-71.160217425,41.576843499],[-71.160080425,41.576233499],[-71.159957426,41.575699499],[-71.159927425,41.575565499],[-71.159576425,41.574099499],[-71.159324425,41.572734498],[-71.159217425,41.572282498],[-71.159202425,41.572223498],[-71.159080425,41.571874498],[-71.158973425,41.571521498],[-71.158874425,41.571014498],[-71.158531425,41.569354497],[-71.157547424,41.569516498],[-71.157104424,41.569597498],[-71.156730424,41.569667498],[-71.156631424,41.569687498],[-71.156341424,41.569751498],[-71.154846424,41.570063498],[-71.153572423,41.570330498],[-71.152412423,41.570572498],[-71.152313423,41.570592498],[-71.151878422,41.570686498],[-71.151832422,41.570695498],[-71.151016422,41.570882498],[-71.150260422,41.571040498],[-71.149635422,41.571182498],[-71.149101421,41.571296499],[-71.148475421,41.571434499],[-71.148002421,41.571528499],[-71.147956421,41.571542498],[-71.147376421,41.571661499],[-71.146453421,41.571854498],[-71.145774421,41.571993499],[-71.14527942,41.572101498],[-71.14431242,41.572301499],[-71.14421042,41.572171499],[-71.14416442,41.572127499],[-71.14411942,41.572064498],[-71.14402742,41.571913499],[-71.143989419,41.571846498],[-71.14394342,41.571775498],[-71.14388242,41.571722499],[-71.143814419,41.571660499],[-71.14374542,41.571590499],[-71.14370742,41.571505499],[-71.14370742,41.571338498],[-71.14368442,41.571257499],[-71.14366142,41.571181499],[-71.14366142,41.571096499],[-71.14366842,41.571006498],[-71.14366942,41.570920498],[-71.14367642,41.570830499],[-71.14364642,41.570740498],[-71.14357742,41.570652499],[-71.143524419,41.570562498],[-71.143524419,41.570472498],[-71.14353142,41.570382498],[-71.14349342,41.570284499],[-71.14344042,41.570181498],[-71.143409419,41.570069499],[-71.14340242,41.570011499],[-71.143424419,41.569857498],[-71.143424419,41.569767498],[-71.14339442,41.569678499],[-71.14335642,41.569588498],[-71.14331842,41.569490498],[-71.14327942,41.569396498],[-71.14324142,41.569298498],[-71.14320342,41.569163498],[-71.14318842,41.569105498],[-71.143157419,41.569056498],[-71.143119419,41.569007498],[-71.14310442,41.568981498],[-71.143058419,41.568918498],[-71.143058419,41.568716498],[-71.143074419,41.568589498],[-71.143074419,41.568522498],[-71.14305142,41.568441498],[-71.14302842,41.568374497],[-71.142997419,41.568298498],[-71.142944419,41.568232498],[-71.142883419,41.568165498],[-71.142807419,41.568086498],[-71.142730419,41.568001498],[-71.142646419,41.567913498],[-71.142555419,41.567825498],[-71.142463419,41.567741498],[-71.14238742,41.567666498],[-71.142318419,41.567590498],[-71.142257419,41.567515498],[-71.142189419,41.567449498],[-71.142120419,41.567373498],[-71.142028419,41.567312498],[-71.141830419,41.567226497],[-71.141739419,41.567191498],[-71.141670419,41.567152498],[-71.141616419,41.567112498],[-71.141601419,41.567054498],[-71.141601419,41.566987498],[-71.141609418,41.566923498],[-71.141670419,41.566787498],[-71.141670419,41.566733498],[-71.141609418,41.566694498],[-71.141509419,41.566655498],[-71.141410419,41.566607498],[-71.141326419,41.566541497],[-71.141258418,41.566462497],[-71.141235419,41.566408497],[-71.141220418,41.566354498],[-71.141212419,41.566300498],[-71.141212419,41.566197497],[-71.141227419,41.566102498],[-71.141242418,41.565935498],[-71.141258418,41.565863497],[-71.141303419,41.565794498],[-71.141357418,41.565730497],[-71.141395418,41.565653497],[-71.141403419,41.565558498],[-71.141380419,41.565469497],[-71.141319418,41.565389498],[-71.141235419,41.565309498],[-71.141151419,41.565225497],[-71.141090419,41.565118497],[-71.141067418,41.565065497],[-71.141006418,41.565003497],[-71.140945419,41.564932497],[-71.140892418,41.564879498],[-71.140846419,41.564821498],[-71.140792418,41.564773497],[-71.140701418,41.564680497],[-71.139572418,41.565120497],[-71.139541419,41.565048497],[-71.139114418,41.564115497],[-71.139014418,41.564108497],[-71.138794418,41.564112497],[-71.138534418,41.564108497],[-71.138420418,41.564101498],[-71.138305418,41.564085497],[-71.138206418,41.564073497],[-71.138107418,41.564053497],[-71.138023417,41.564014497],[-71.137939418,41.563966497],[-71.137870417,41.563904497],[-71.137786418,41.563833497],[-71.137649418,41.563714497],[-71.137542417,41.563635497],[-71.137481417,41.563614498],[-71.137428417,41.563610497],[-71.137336418,41.563666497],[-71.137252417,41.563744497],[-71.137214417,41.563781497],[-71.137153417,41.563809498],[-71.137107417,41.563787497],[-71.137092417,41.563725497],[-71.137069417,41.563671498],[-71.137069417,41.563608497],[-71.137077417,41.563576497],[-71.137084418,41.563509497],[-71.137084418,41.563455497],[-71.137123418,41.563391497],[-71.137107417,41.563346497],[-71.137039417,41.563302498],[-71.137000417,41.563253497],[-71.136985418,41.563195497],[-71.137000417,41.563127498],[-71.137023417,41.563055497],[-71.137016417,41.562988497],[-71.136970417,41.562930497],[-71.136909417,41.562881497],[-71.136772417,41.562794497],[-71.136703417,41.562759497],[-71.136627417,41.562711497],[-71.136535417,41.562695497],[-71.136474417,41.562669497],[-71.136413417,41.562607497],[-71.136451417,41.562534497],[-71.136505417,41.562488497],[-71.136520417,41.562443497],[-71.136474417,41.562385497],[-71.136405417,41.562346497],[-71.136329417,41.562293497],[-71.136283417,41.562254497],[-71.136192417,41.562224497],[-71.136093417,41.562208497],[-71.136024417,41.562146497],[-71.135986417,41.562092497],[-71.135925417,41.562058497],[-71.135871417,41.562014497],[-71.135871417,41.561942497],[-71.135887417,41.561865497],[-71.135856416,41.561798497],[-71.135810417,41.561731497],[-71.135772417,41.561696497],[-71.135696417,41.561724496],[-71.135612417,41.561748497],[-71.135536417,41.561777497],[-71.135459417,41.561796497],[-71.135406417,41.561784497],[-71.135353416,41.561739497],[-71.135302417,41.561701497],[-71.133396416,41.562117497],[-71.132843416,41.562208497],[-71.132721415,41.562228497],[-71.132708416,41.562230497],[-71.132561415,41.562254497],[-71.131291416,41.562457497],[-71.130109415,41.562659498],[-71.129447415,41.562765497],[-71.129224415,41.562771497],[-71.128969415,41.562778497],[-71.128744414,41.562784497],[-71.128715415,41.562785497],[-71.127862442,41.562789497],[-71.127912813,41.563190827],[-71.129933416,41.5793055],[-71.131606417,41.592240503],[-71.131692325,41.593326793],[-71.131744473,41.593742403],[-71.135791727,41.599706074],[-71.135819418,41.599746504],[-71.135855419,41.599799504],[-71.136276419,41.600419504],[-71.136585545,41.600875627],[-71.136970648,41.601442994],[-71.137013419,41.601505505],[-71.137621419,41.602401505],[-71.13830642,41.603410505],[-71.13846442,41.603643505],[-71.138471703,41.603652312],[-71.139796103,41.604493283],[-71.13979842,41.604494505],[-71.139856044,41.604531343],[-71.140343368,41.604840775],[-71.141982956,41.612501825],[-71.14027083,41.623800993],[-71.138898747,41.62510548]]]]}}"}, +{"type": "precinct", "typeId": 3307, "areaId": 25972, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":311,\"NAME\":\"3307\",\"SHAPE_Length\":0.56294311435974,\"SHAPE_Area\":-0.0025911977203775},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.207711172,41.546561169],[-71.207688769,41.546614718],[-71.207727463,41.546621243],[-71.207785379,41.546584204],[-71.207836461,41.546530155],[-71.207828343,41.546467083],[-71.207821271,41.546446842],[-71.207818439,41.546447492],[-71.20759744,41.546497491],[-71.20758801,41.546499653],[-71.207595968,41.546543152],[-71.207631695,41.546545781],[-71.207691617,41.546509502],[-71.207726466,41.54650449],[-71.207711172,41.546561169]]],[[[-71.20693645,41.547010463],[-71.207003418,41.547038786],[-71.207068404,41.547007186],[-71.207074604,41.547002627],[-71.207177967,41.546939907],[-71.207242881,41.546910593],[-71.207319222,41.546872161],[-71.207395525,41.546835306],[-71.207470709,41.546803777],[-71.207532739,41.546766017],[-71.20754141,41.546746759],[-71.207559306,41.546707126],[-71.207542022,41.546644739],[-71.207470852,41.546623335],[-71.207398536,41.546606479],[-71.207329325,41.546589608],[-71.207245823,41.546578093],[-71.20724534,41.546578203],[-71.207178788,41.546602718],[-71.207156135,41.546670881],[-71.207155077,41.546729996],[-71.207142372,41.546745721],[-71.207131045,41.546759711],[-71.207061351,41.546769025],[-71.207025756,41.546817807],[-71.206981635,41.546826591],[-71.206926449,41.546825261],[-71.206861129,41.546876849],[-71.206784951,41.546906019],[-71.206737344,41.546938602],[-71.206748502,41.547002437],[-71.206804438,41.547019914],[-71.20687526,41.547003697],[-71.20693645,41.547010463]]],[[[-71.205861013,41.547121151],[-71.205928982,41.547150209],[-71.20600342,41.547162475],[-71.206062932,41.547150003],[-71.206046323,41.547106828],[-71.205985763,41.547061688],[-71.205935555,41.547009737],[-71.205889412,41.546960884],[-71.205828066,41.546961802],[-71.205759041,41.546991081],[-71.205697208,41.54701887],[-71.205620899,41.547056524],[-71.205576329,41.547090623],[-71.205599893,41.547143878],[-71.205668468,41.547139937],[-71.205675667,41.547136937],[-71.205793174,41.547083585],[-71.205861013,41.547121151]]],[[[-71.200640702,41.577642808],[-71.200606147,41.57765955],[-71.20056393,41.577679977],[-71.200499726,41.57771958],[-71.200458202,41.577781265],[-71.20044392,41.577840049],[-71.200430708,41.577898035],[-71.200443298,41.57798129],[-71.200466607,41.578038731],[-71.200491954,41.578103266],[-71.200498479,41.578167638],[-71.200461285,41.578221514],[-71.200397929,41.578275229],[-71.200321292,41.578302953],[-71.200246995,41.578311862],[-71.20023279,41.578320904],[-71.200177469,41.578356139],[-71.200130979,41.57839819],[-71.200087619,41.578441826],[-71.2000169,41.578500211],[-71.199956882,41.578536691],[-71.199900974,41.578580226],[-71.199863839,41.578627835],[-71.199834761,41.578698267],[-71.199829706,41.578770453],[-71.199845742,41.578826274],[-71.199892083,41.578882288],[-71.199961498,41.578934566],[-71.200049802,41.578979095],[-71.200143513,41.579007195],[-71.200229519,41.579021827],[-71.200304148,41.57903341],[-71.200396969,41.57904973],[-71.200508339,41.579085811],[-71.200516684,41.579085878],[-71.200590682,41.57910208],[-71.200599484,41.579102148],[-71.20066384,41.579102567],[-71.200740534,41.579069309],[-71.200757015,41.579002732],[-71.200757747,41.57894309],[-71.200771983,41.578887486],[-71.200830973,41.578849447],[-71.200889087,41.578796472],[-71.20091816,41.578726841],[-71.200930285,41.578673586],[-71.200937302,41.578611605],[-71.200947459,41.5785489],[-71.200960705,41.578490137],[-71.200980229,41.578430635],[-71.201001948,41.578364072],[-71.201024743,41.578295179],[-71.201049572,41.57822787],[-71.201074348,41.578165249],[-71.201095977,41.578104998],[-71.201118675,41.578043926],[-71.201137222,41.577978133],[-71.201146358,41.577912292],[-71.201148122,41.577853476],[-71.201148767,41.5777993],[-71.201149593,41.577732614],[-71.201146066,41.577678427],[-71.201053146,41.577670775],[-71.2009665,41.577663095],[-71.200883148,41.577641357],[-71.200795511,41.577630541],[-71.200719222,41.577629244],[-71.200640702,41.577642808]]],[[[-71.204320556,41.580496647],[-71.204266664,41.580545724],[-71.204235463,41.580621662],[-71.204230617,41.580675737],[-71.204218205,41.580752547],[-71.204203919,41.580812886],[-71.204189547,41.580878713],[-71.204186627,41.580944593],[-71.204188983,41.581008954],[-71.204207021,41.581074202],[-71.204235496,41.581141878],[-71.204270267,41.581204904],[-71.204316609,41.581261717],[-71.204367301,41.581306786],[-71.204452526,41.581346616],[-71.204514904,41.581373694],[-71.204590487,41.581430696],[-71.204651432,41.581491526],[-71.204700864,41.581552303],[-71.204718821,41.581622284],[-71.204687862,41.581678555],[-71.204651678,41.581731657],[-71.204656129,41.581797624],[-71.204713911,41.581857646],[-71.204780396,41.581892624],[-71.204836408,41.581926729],[-71.204881868,41.581970206],[-71.204933648,41.58201059],[-71.205024559,41.582012767],[-71.205095035,41.581973978],[-71.205137645,41.581907582],[-71.205141676,41.581831506],[-71.205143637,41.581755401],[-71.205154801,41.581698209],[-71.205178447,41.581642628],[-71.20521248,41.581593454],[-71.205290352,41.581549218],[-71.205387885,41.581521613],[-71.205480172,41.581495595],[-71.205547362,41.58146933],[-71.205569775,41.58143028],[-71.205511914,41.581374193],[-71.205427568,41.581348477],[-71.205339929,41.581336887],[-71.205264806,41.581326174],[-71.205186834,41.581291921],[-71.205150907,41.581235181],[-71.20513928,41.58115975],[-71.205140892,41.581113466],[-71.205141664,41.581050714],[-71.205142407,41.580987939],[-71.205142014,41.580933806],[-71.205128236,41.580862303],[-71.205080782,41.580808597],[-71.20501761,41.580761919],[-71.20495319,41.580728478],[-71.204872165,41.580689483],[-71.204782667,41.580658311],[-71.204693084,41.580632581],[-71.204613989,41.580604591],[-71.204547632,41.580561746],[-71.204468797,41.580510201],[-71.204391755,41.58048615],[-71.204320556,41.580496647]]],[[[-71.21032857,41.618526107],[-71.210477369,41.618571031],[-71.210677692,41.618645518],[-71.210815032,41.618697206],[-71.210978568,41.618745254],[-71.211131434,41.618787169],[-71.211267199,41.618816143],[-71.211368609,41.618826689],[-71.211460291,41.618797303],[-71.211528257,41.618755622],[-71.211614204,41.618720711],[-71.211729616,41.618687062],[-71.211819658,41.618663206],[-71.211942374,41.618645538],[-71.2120504,41.61862111],[-71.212119209,41.618574491],[-71.212165959,41.618513158],[-71.212216013,41.618441999],[-71.212319977,41.618384994],[-71.212297137,41.618360421],[-71.212193199,41.618384265],[-71.21218667,41.618365221],[-71.212125369,41.618333897],[-71.212072284,41.618277962],[-71.212035568,41.618221451],[-71.211997225,41.618167406],[-71.211957218,41.618110864],[-71.211921333,41.618052526],[-71.211902622,41.617997249],[-71.211885552,41.617929696],[-71.211888966,41.617860981],[-71.211897257,41.617798957],[-71.211915367,41.617728999],[-71.211939206,41.617665779],[-71.211952409,41.617595809],[-71.211960683,41.617537512],[-71.211968163,41.617479809],[-71.211974821,41.617401269],[-71.211978203,41.617346596],[-71.211983236,41.617284015],[-71.211992344,41.617223251],[-71.212000607,41.617167401],[-71.212007272,41.617107866],[-71.212013089,41.617040347],[-71.212019762,41.616978959],[-71.212025551,41.616924339],[-71.212028119,41.616867857],[-71.212029857,41.61680584],[-71.212029942,41.616745716],[-71.212030099,41.616689823],[-71.21203019,41.616635188],[-71.212031095,41.616575639],[-71.212036111,41.616516739],[-71.212046837,41.616462085],[-71.212058424,41.616385387],[-71.21205032,41.616330114],[-71.212049618,41.616275477],[-71.21204727,41.616207343],[-71.212045714,41.616152727],[-71.212036853,41.616082701],[-71.212024722,41.616014566],[-71.212012555,41.615947665],[-71.211997945,41.615875201],[-71.211993992,41.615797846],[-71.21199412,41.615727866],[-71.21199423,41.615668932],[-71.21199106,41.615607542],[-71.21198542,41.615546169],[-71.211983923,41.615478632],[-71.21199707,41.615448546],[-71.212075629,41.615429006],[-71.212101877,41.615392824],[-71.21207497,41.615337526],[-71.212040707,41.615277934],[-71.212008901,41.615220818],[-71.211968111,41.615162467],[-71.211933853,41.615094894],[-71.211913528,41.615026143],[-71.211909546,41.614962281],[-71.211909707,41.614884937],[-71.211909817,41.614826025],[-71.211905848,41.61475233],[-71.21189615,41.614685435],[-71.211893799,41.614624665],[-71.211894759,41.614546042],[-71.211896496,41.614470555],[-71.211898259,41.614396279],[-71.211903349,41.614320754],[-71.211910005,41.614249578],[-71.21192486,41.614177782],[-71.211943783,41.614102909],[-71.211962714,41.61403293],[-71.211977529,41.613970328],[-71.211994,41.613912029],[-71.212012935,41.613854948],[-71.212038369,41.613802801],[-71.212066268,41.613744508],[-71.212036155,41.613676967],[-71.212032175,41.613605742],[-71.212034753,41.613533321],[-71.212045519,41.61346275],[-71.212052982,41.613408728],[-71.212059605,41.613351616],[-71.212070333,41.613296413],[-71.212087649,41.613219661],[-71.212097554,41.613164456],[-71.212109117,41.613106739],[-71.212119056,41.613050894],[-71.212133093,41.612971138],[-71.21214463,41.612912209],[-71.212154569,41.612849594],[-71.212161203,41.612790036],[-71.212162944,41.61273417],[-71.212166303,41.612677737],[-71.212180301,41.612620621],[-71.212197573,41.612567241],[-71.212223861,41.612494239],[-71.212250985,41.612418128],[-71.212271605,41.612345112],[-71.212290528,41.612283709],[-71.212314335,41.612227281],[-71.212317705,41.612168332],[-71.212285914,41.612101382],[-71.212261494,41.612035091],[-71.212238687,41.611962606],[-71.212225756,41.611882805],[-71.21222288,41.611857938],[-71.212216924,41.611806078],[-71.212222764,41.611733048],[-71.212211448,41.611653205],[-71.212195177,41.611597934],[-71.212173234,41.611523027],[-71.212169273,41.611447525],[-71.212175899,41.611389819],[-71.212179288,41.611333363],[-71.21217126,41.611254146],[-71.212168888,41.611198293],[-71.212169823,41.611138743],[-71.212169899,41.611080426],[-71.212166727,41.611026423],[-71.212157825,41.61097236],[-71.212148125,41.610912829],[-71.21214165,41.610854496],[-71.212137654,41.610800491],[-71.212124748,41.610721902],[-71.212117467,41.610666608],[-71.212115163,41.61058864],[-71.212116088,41.61051745],[-71.212131758,41.610447485],[-71.212176006,41.610399044],[-71.21223907,41.610354309],[-71.212231765,41.610311296],[-71.212185255,41.610258466],[-71.21213709,41.610200737],[-71.212094619,41.610144234],[-71.21205878,41.61009015],[-71.212027764,41.610034248],[-71.212002526,41.609967314],[-71.211978938,41.609892426],[-71.211958623,41.609821777],[-71.211947277,41.609755473],[-71.211942491,41.609687332],[-71.21194421,41.609622867],[-71.211965615,41.609565221],[-71.212036823,41.609538894],[-71.212111301,41.609517446],[-71.212183313,41.609488651],[-71.212203805,41.609464735],[-71.212176879,41.609421124],[-71.212091022,41.609417981],[-71.212033036,41.609362698],[-71.21200368,41.609310459],[-71.211971869,41.609248426],[-71.211940098,41.609177222],[-71.211920595,41.609109045],[-71.211914148,41.60904456],[-71.211915085,41.608970922],[-71.211916891,41.608893559],[-71.211937459,41.608832183],[-71.21197349,41.608794767],[-71.21194417,41.608734593],[-71.211938551,41.608668898],[-71.211982795,41.608621074],[-71.211928896,41.608571884],[-71.211891338,41.608520928],[-71.211863646,41.608450901],[-71.211838461,41.608379073],[-71.211808312,41.608313362],[-71.211779803,41.608242121],[-71.211752934,41.608165372],[-71.211733411,41.60809477],[-71.211699174,41.608030261],[-71.211664133,41.607961473],[-71.211639741,41.607889625],[-71.211611232,41.607825153],[-71.211569613,41.607755731],[-71.21153621,41.60768203],[-71.211502798,41.607616928],[-71.211477542,41.607554317],[-71.211478453,41.607493509],[-71.211484273,41.607445635],[-71.211419768,41.607390335],[-71.211360976,41.607345454],[-71.211306234,41.607301224],[-71.211240883,41.607264949],[-71.211218068,41.607201703],[-71.211195278,41.607139647],[-71.21115449,41.607075167],[-71.211116953,41.607019888],[-71.21107864,41.606960926],[-71.211046022,41.60690255],[-71.211011776,41.606847256],[-71.210973446,41.606785229],[-71.210935102,41.606719498],[-71.210898385,41.606658069],[-71.210857601,41.606599718],[-71.210825801,41.606535832],[-71.210800587,41.606470751],[-71.210781876,41.606416709],[-71.210758247,41.606358401],[-71.210745284,41.606300051],[-71.210738039,41.606230075],[-71.210721807,41.606160053],[-71.210695751,41.606092499],[-71.210659895,41.606015751],[-71.210633802,41.60596352],[-71.210593861,41.605894124],[-71.21056618,41.605829014],[-71.21053605,41.60575962],[-71.210496056,41.605695119],[-71.210471625,41.605639233],[-71.210506899,41.605573595],[-71.210529081,41.605518993],[-71.210494803,41.605471086],[-71.210440069,41.605432322],[-71.210382903,41.605392362],[-71.210324922,41.605343824],[-71.210271855,41.605293446],[-71.210240059,41.605242458],[-71.210215617,41.605189042],[-71.210200984,41.605129453],[-71.210171617,41.605073577],[-71.210134074,41.605040413],[-71.210078633,41.604996135],[-71.210037281,41.604949606],[-71.209997107,41.604891576],[-71.20995897,41.604827834],[-71.209936902,41.604774995],[-71.209923568,41.604717971],[-71.209900844,41.604648573],[-71.209874113,41.604589274],[-71.209861844,41.604525734],[-71.209857216,41.604463746],[-71.209851386,41.604425219],[-71.209848693,41.604407488],[-71.209837241,41.604351932],[-71.209827987,41.604281951],[-71.209821597,41.604212046],[-71.209813164,41.604149293],[-71.209801991,41.604079307],[-71.20979552,41.604013724],[-71.209765899,41.603953617],[-71.209718095,41.603891908],[-71.209683513,41.603844001],[-71.209647923,41.603796823],[-71.209613314,41.603748206],[-71.209571272,41.603685826],[-71.209520437,41.603634173],[-71.209467541,41.603586813],[-71.209418468,41.603543077],[-71.209370297,41.603502248],[-71.209317512,41.603450566],[-71.209283922,41.603399071],[-71.209252252,41.603347626],[-71.209188922,41.603296558],[-71.209130142,41.603257028],[-71.209071432,41.603215371],[-71.20902049,41.603167308],[-71.208979183,41.603117896],[-71.208929296,41.603065559],[-71.208870831,41.603010181],[-71.208824616,41.602967938],[-71.208793851,41.602918645],[-71.208789255,41.602856657],[-71.208786671,41.602787493],[-71.208755243,41.602723059],[-71.208704502,41.602664224],[-71.20865869,41.602600325],[-71.208607129,41.602534261],[-71.208550698,41.602473903],[-71.208486439,41.602419928],[-71.208412498,41.602370914],[-71.208338561,41.602321191],[-71.208259958,41.602265579],[-71.208202117,41.60222756],[-71.208141372,41.602191615],[-71.208079649,41.602156399],[-71.208016003,41.602121888],[-71.207958146,41.602087436],[-71.207902147,41.602053035],[-71.207839433,41.602021385],[-71.20778249,41.601986936],[-71.207724727,41.601945281],[-71.207663091,41.601904325],[-71.207592867,41.601862524],[-71.207524606,41.601817892],[-71.207461121,41.601774735],[-71.207405234,41.601736012],[-71.207352288,41.601693683],[-71.207296603,41.601644097],[-71.207283769,41.601631967],[-71.207241902,41.60159241],[-71.207191043,41.601540001],[-71.207139196,41.601490494],[-71.207093078,41.601441047],[-71.207057568,41.601390254],[-71.207032677,41.60133599],[-71.20701739,41.601280355],[-71.207004455,41.601203161],[-71.207005829,41.601128266],[-71.207006839,41.601073565],[-71.207008792,41.601018843],[-71.207012696,41.600964126],[-71.207024646,41.600888664],[-71.207030915,41.600809483],[-71.207034868,41.600750467],[-71.207054566,41.600672875],[-71.207096003,41.600612125],[-71.20715371,41.600551485],[-71.207205846,41.600482872],[-71.207269303,41.600423778],[-71.207307886,41.600360825],[-71.207298511,41.600298047],[-71.207270116,41.600223603],[-71.207248053,41.600170764],[-71.207225078,41.600117237],[-71.207198225,41.600065826],[-71.207156425,41.599991188],[-71.207127659,41.599938332],[-71.207092117,41.599888248],[-71.207045878,41.599845296],[-71.206961239,41.599804807],[-71.206861122,41.599771345],[-71.206792545,41.599743269],[-71.206716791,41.599692054],[-71.206654455,41.599638106],[-71.20658628,41.599588397],[-71.20650055,41.599553668],[-71.206428003,41.599534203],[-71.206351508,41.599518983],[-71.2062759,41.59950955],[-71.206201156,41.599504442],[-71.206128415,41.599494354],[-71.20605686,41.599471256],[-71.205990314,41.599438862],[-71.205924264,41.599377678],[-71.205877153,41.599332527],[-71.205820328,41.599293069],[-71.205756689,41.599257847],[-71.205690153,41.599223281],[-71.20562267,41.599189421],[-71.205556948,41.599163548],[-71.205491148,41.599141218],[-71.205389036,41.599111364],[-71.205312776,41.599084662],[-71.205235622,41.599053591],[-71.205167083,41.599024073],[-71.205101429,41.598996736],[-71.205033794,41.598969393],[-71.204961451,41.598939089],[-71.204890096,41.598905928],[-71.204831234,41.598872204],[-71.204768904,41.598817523],[-71.204714449,41.598752868],[-71.204663911,41.598684633],[-71.204612431,41.598615686],[-71.204559893,41.598551745],[-71.204522918,41.598475746],[-71.20450089,41.598422198],[-71.204478826,41.598370135],[-71.204454839,41.598318732],[-71.204416768,41.598249202],[-71.204371159,41.598175971],[-71.204345259,41.598123144],[-71.204327111,41.598067501],[-71.204308889,41.598014717],[-71.204279595,41.597938075],[-71.20425859,41.597880984],[-71.204238529,41.597823873],[-71.204211188,41.597746526],[-71.204195246,41.597675018],[-71.20418901,41.597599372],[-71.204197743,41.597541809],[-71.20419704,41.597475555],[-71.204138221,41.597439635],[-71.204078461,41.597403004],[-71.204029483,41.597353549],[-71.203983652,41.597288939],[-71.203922329,41.597234305],[-71.203863054,41.597171719],[-71.203824856,41.597110147],[-71.203799318,41.597038545],[-71.203754499,41.596972566],[-71.203721085,41.596910983],[-71.203701227,41.596843055],[-71.203680502,41.596771535],[-71.203662721,41.596695745],[-71.203639015,41.596629957],[-71.2036123,41.596569192],[-71.20357978,41.596511934],[-71.20353394,41.596449519],[-71.203487088,41.596388543],[-71.203441091,41.59633404],[-71.203408491,41.596281105],[-71.203389325,41.596228341],[-71.203363458,41.596175491],[-71.203332942,41.59611323],[-71.203292625,41.596062401],[-71.20326096,41.596011664],[-71.203242823,41.595953848],[-71.203213444,41.595882968],[-71.203169682,41.595812646],[-71.203107427,41.595755814],[-71.203026688,41.595710324],[-71.202948669,41.595676367],[-71.202866575,41.595653903],[-71.202795237,41.595671145],[-71.202755631,41.59573773],[-71.202754618,41.595792455],[-71.202773695,41.595850981],[-71.202801411,41.595906008],[-71.202833146,41.595954597],[-71.202876,41.596023453],[-71.202911174,41.596092953],[-71.202924299,41.596160796],[-71.20290192,41.596177844],[-71.20282309,41.596134531],[-71.202758717,41.59608778],[-71.202674695,41.596014151],[-71.202634213,41.595972675],[-71.202584005,41.595959624],[-71.20255537,41.595952278],[-71.202481903,41.595928829],[-71.20240928,41.595893971],[-71.20235367,41.595849689],[-71.202285527,41.595808096],[-71.20221289,41.595763152],[-71.202151023,41.595721552],[-71.202079278,41.595674621],[-71.202018313,41.595642377],[-71.201958264,41.595609518],[-71.201892838,41.595573306],[-71.201877581,41.595565284],[-71.201822892,41.595526333],[-71.201761905,41.595485444],[-71.201698237,41.595451226],[-71.201626547,41.595425746],[-71.201540607,41.595425203],[-71.20145727,41.595401774],[-71.201412397,41.595354775],[-71.201346954,41.595315887],[-71.201337964,41.595303102],[-71.201411387,41.595296318],[-71.201442635,41.595265365],[-71.201511542,41.595233664],[-71.201578668,41.59521138],[-71.201663647,41.595189097],[-71.201753133,41.595160788],[-71.201830948,41.595119687],[-71.201901601,41.59506583],[-71.201951656,41.595026098],[-71.202014214,41.59497023],[-71.202067804,41.594910336],[-71.20211782,41.594852468],[-71.202179523,41.594823492],[-71.202261902,41.594816685],[-71.202350529,41.594815908],[-71.202456214,41.59481577],[-71.202512631,41.594836544],[-71.202575415,41.594884184],[-71.202646159,41.594883429],[-71.202717703,41.594847709],[-71.202767727,41.594794552],[-71.202762252,41.594739445],[-71.202705706,41.594673641],[-71.202667076,41.594620575],[-71.202638287,41.594554087],[-71.202620207,41.594477473],[-71.202612015,41.594423709],[-71.202602949,41.594367906],[-71.202592085,41.594312145],[-71.202564165,41.594235551],[-71.20253091,41.594173077],[-71.202459162,41.594120772],[-71.202375862,41.594109419],[-71.202291705,41.59411892],[-71.202195918,41.594133171],[-71.202123408,41.594133921],[-71.202039233,41.594134023],[-71.201943409,41.594130139],[-71.201856538,41.594120148],[-71.201779478,41.59409669],[-71.201681737,41.594012802],[-71.201627078,41.594000768],[-71.20155186,41.59400087],[-71.201474874,41.594014392],[-71.201389868,41.594036012],[-71.201301289,41.594059681],[-71.201227013,41.594086634],[-71.201183167,41.594094776],[-71.201169671,41.594061831],[-71.201149828,41.59400472],[-71.201122858,41.59394695],[-71.201085974,41.593879092],[-71.201029427,41.593813972],[-71.200966632,41.593749523],[-71.200906511,41.59369313],[-71.200873258,41.593630655],[-71.200892011,41.593607103],[-71.200961855,41.593602985],[-71.201037042,41.593602906],[-71.201117646,41.593604145],[-71.201198226,41.593604057],[-71.201281474,41.593599905],[-71.20138627,41.593600475],[-71.201461469,41.593611099],[-71.2015358,41.593611703],[-71.201611901,41.593611626],[-71.201686211,41.593610173],[-71.201758718,41.593603363],[-71.201833037,41.593599919],[-71.201907341,41.593599814],[-71.20200673,41.593597008],[-71.202096269,41.593596233],[-71.202183118,41.593597465],[-71.202271755,41.593594012],[-71.202357716,41.593583143],[-71.202439147,41.593556825],[-71.202516036,41.59351778],[-71.202588469,41.593473966],[-71.202651948,41.593422788],[-71.202715397,41.593371633],[-71.202782476,41.593332585],[-71.202855792,41.593295497],[-71.202926525,41.593283353],[-71.203002626,41.593283253],[-71.20307643,41.593292385],[-71.203161788,41.593293269],[-71.203237899,41.593277502],[-71.203293317,41.593237029],[-71.203301394,41.59316293],[-71.20330244,41.593107474],[-71.203303651,41.593042664],[-71.203311684,41.592971446],[-71.20333487,41.592911199],[-71.20336675,41.592848161],[-71.203406269,41.592786653],[-71.203442075,41.592717862],[-71.203467458,41.592643235],[-71.203452378,41.592576829],[-71.203404507,41.592519417],[-71.203341041,41.592474818],[-71.203324213,41.592450876],[-71.20338211,41.592434193],[-71.203480941,41.592433099],[-71.203564533,41.592426728],[-71.203639719,41.592406637],[-71.203716041,41.592377926],[-71.203798651,41.592373016],[-71.203872661,41.592417002],[-71.203906896,41.592485059],[-71.203929613,41.592553726],[-71.203968621,41.592624013],[-71.204030754,41.592687316],[-71.204079892,41.592727418],[-71.204158517,41.592781547],[-71.20423617,41.592834941],[-71.204313078,41.592878248],[-71.204392066,41.592912916],[-71.204468308,41.59294179],[-71.204550278,41.592970748],[-71.204633064,41.593007598],[-71.20472342,41.593048149],[-71.204808038,41.593090812],[-71.204873354,41.593137588],[-71.204929965,41.593189327],[-71.204978779,41.593247472],[-71.205015019,41.593310502],[-71.205043492,41.593379939],[-71.20505173,41.593450604],[-71.205049416,41.593524032],[-71.205053017,41.593589609],[-71.205070018,41.593656043],[-71.205094707,41.593720392],[-71.205118447,41.593785471],[-71.205136544,41.593845436],[-71.205151832,41.593900316],[-71.205149026,41.593947832],[-71.205055789,41.593957679],[-71.204952214,41.59395659],[-71.204851471,41.59395553],[-71.204757293,41.593964665],[-71.204659856,41.593993848],[-71.204572181,41.594013108],[-71.204494426,41.594015172],[-71.204412828,41.594017912],[-71.204330054,41.594031467],[-71.204245106,41.594060819],[-71.204157314,41.594085841],[-71.204080654,41.594081436],[-71.203995181,41.594085561],[-71.203921553,41.59412441],[-71.203892607,41.594185328],[-71.203880076,41.59424064],[-71.203808249,41.59428528],[-71.203745043,41.594329987],[-71.20373337,41.594391087],[-71.203750612,41.594444555],[-71.203814718,41.594502854],[-71.203884805,41.59455257],[-71.203955869,41.59460158],[-71.204024003,41.594651977],[-71.204096751,41.594712494],[-71.204146822,41.594755503],[-71.204193062,41.594797039],[-71.204251445,41.594854546],[-71.204311041,41.594899844],[-71.204358212,41.594944264],[-71.204350996,41.594970111],[-71.204288845,41.595010521],[-71.204221831,41.595055196],[-71.204207586,41.595098978],[-71.204250845,41.595146246],[-71.204311702,41.595175675],[-71.204304809,41.595237543],[-71.204284447,41.595299993],[-71.204305401,41.595361429],[-71.204356299,41.595356917],[-71.204406313,41.595299117],[-71.204446075,41.595224642],[-71.204471421,41.595151433],[-71.204500531,41.595081138],[-71.204554625,41.595010404],[-71.204598605,41.594966219],[-71.204642613,41.594922765],[-71.20470125,41.594864301],[-71.20475965,41.594818095],[-71.204819831,41.594782001],[-71.204880105,41.594738704],[-71.204951818,41.594699117],[-71.205021443,41.594669589],[-71.205108134,41.594652476],[-71.205191534,41.594655503],[-71.205269817,41.594624692],[-71.205326283,41.594581339],[-71.205388635,41.594530134],[-71.205435518,41.594483783],[-71.205482348,41.594442486],[-71.205540662,41.594401356],[-71.205599004,41.594360889],[-71.205656411,41.59431827],[-71.205720358,41.594284381],[-71.205798722,41.594249202],[-71.205871367,41.594211813],[-71.205943156,41.594168591],[-71.206018653,41.59413409],[-71.206100575,41.594113351],[-71.206189813,41.594112139],[-71.206280922,41.594114521],[-71.206359428,41.594121811],[-71.206448259,41.594142918],[-71.20653897,41.594166179],[-71.20660578,41.594186315],[-71.206683796,41.594220978],[-71.206737673,41.594264797],[-71.206748999,41.594326825],[-71.206777184,41.594359532],[-71.206863716,41.594350353],[-71.20694176,41.594331707],[-71.207032136,41.594321143],[-71.207124268,41.594319937],[-71.207213502,41.59431941],[-71.207309556,41.594313228],[-71.207402719,41.594306307],[-71.207485378,41.594297804],[-71.207576284,41.594311711],[-71.207664262,41.594326297],[-71.207743157,41.594314857],[-71.207825773,41.594309258],[-71.207897735,41.594308549],[-71.207988888,41.594308072],[-71.208080122,41.594303272],[-71.20813538,41.594324727],[-71.208187423,41.59436344],[-71.208269262,41.59434773],[-71.208338765,41.594324694],[-71.208429094,41.594317719],[-71.208528863,41.594318727],[-71.208620921,41.594320401],[-71.208705174,41.594329923],[-71.20879327,41.59433879],[-71.208876626,41.594344696],[-71.208948343,41.594357685],[-71.209016845,41.594387931],[-71.209063902,41.594438135],[-71.209100344,41.594491079],[-71.209178522,41.594517096],[-71.209268112,41.59449857],[-71.209344595,41.594461211],[-71.209401145,41.594412093],[-71.209429107,41.594351902],[-71.209469681,41.59428534],[-71.209516098,41.594213075],[-71.20955154,41.594163058],[-71.209588058,41.594110847],[-71.209626393,41.594060837],[-71.209665593,41.594015128],[-71.209718699,41.59394583],[-71.209752219,41.593896494],[-71.209785775,41.593845694],[-71.209811694,41.593792679],[-71.209842788,41.593720261],[-71.20987569,41.59365217],[-71.209911128,41.593602884],[-71.209947815,41.593539879],[-71.209963481,41.593470166],[-71.209977932,41.593413418],[-71.209993461,41.593353813],[-71.209995526,41.59329406],[-71.20999175,41.593239255],[-71.209954293,41.593188459],[-71.209874237,41.593160264],[-71.209788269,41.593139213],[-71.209729494,41.593100415],[-71.209694228,41.593036657],[-71.209647249,41.592982887],[-71.209593713,41.592971523],[-71.209554714,41.593006414],[-71.209556367,41.593072695],[-71.209559815,41.593146183],[-71.209537533,41.59321007],[-71.209479973,41.593260581],[-71.209418601,41.593311791],[-71.209362986,41.593363084],[-71.209313879,41.59342377],[-71.209253327,41.593482232],[-71.20917849,41.59353327],[-71.209099926,41.59358],[-71.209020661,41.593613006],[-71.208937768,41.593633036],[-71.208851274,41.593640775],[-71.208756561,41.593626859],[-71.208663858,41.593606408],[-71.20857805,41.593576734],[-71.20848464,41.593544046],[-71.208390329,41.593508496],[-71.208320937,41.593473238],[-71.208242724,41.593448638],[-71.208176963,41.593425601],[-71.208110341,41.593397554],[-71.208037115,41.593361486],[-71.207960984,41.59332756],[-71.207900127,41.593298132],[-71.207840291,41.593265094],[-71.207786331,41.593226353],[-71.207723832,41.59318249],[-71.207655503,41.593141448],[-71.20758501,41.593114077],[-71.207500557,41.593115349],[-71.207461152,41.593172583],[-71.20744565,41.593232164],[-71.207433009,41.593292531],[-71.20741457,41.593355009],[-71.207383749,41.593413728],[-71.207336754,41.593465111],[-71.20727547,41.593509848],[-71.207199098,41.593542883],[-71.207120087,41.593560063],[-71.207048906,41.593570127],[-71.206974983,41.593573712],[-71.20690045,41.593557079],[-71.206841751,41.593515398],[-71.206787063,41.59346227],[-71.20673522,41.593413471],[-71.206678477,41.593370354],[-71.206628486,41.593323024],[-71.20658527,41.593272898],[-71.20655197,41.593206262],[-71.206568497,41.593142384],[-71.206625125,41.593089677],[-71.206685357,41.593048528],[-71.206754236,41.593008179],[-71.206823039,41.59297142],[-71.206894658,41.592938328],[-71.206968862,41.592919649],[-71.207048208,41.592882323],[-71.207087486,41.592833047],[-71.20712867,41.592786658],[-71.207170731,41.592741735],[-71.207184388,41.592679222],[-71.207212462,41.59261471],[-71.207287969,41.592577304],[-71.207370463,41.592578155],[-71.20745317,41.592565352],[-71.207533319,41.592538822],[-71.207610735,41.59250364],[-71.207692234,41.592454769],[-71.207765124,41.592402949],[-71.207814078,41.592349444],[-71.207826631,41.592294863],[-71.207813231,41.592239965],[-71.207783567,41.592184179],[-71.207743249,41.592133352],[-71.207685451,41.592094579],[-71.207757734,41.592075895],[-71.207849367,41.592049462],[-71.207929606,41.592016459],[-71.207983057,41.59197886],[-71.208050839,41.591945002],[-71.208134825,41.591918527],[-71.208234838,41.591905127],[-71.208325452,41.591881619],[-71.208415989,41.591861632],[-71.208518577,41.591864865],[-71.208619932,41.591884652],[-71.208701209,41.591898489],[-71.208777126,41.59189134],[-71.20886006,41.591868452],[-71.208933932,41.59186921],[-71.209001082,41.591921752],[-71.209027806,41.59198112],[-71.209049681,41.592041826],[-71.209097442,41.592104266],[-71.209160631,41.592163978],[-71.209204909,41.592208389],[-71.209249187,41.592252753],[-71.209305724,41.59230808],[-71.209342209,41.592358166],[-71.209357335,41.592422444],[-71.209314227,41.592470224],[-71.209244519,41.592505519],[-71.209223232,41.592565063],[-71.209243539,41.592608498],[-71.209328692,41.592620903],[-71.209400149,41.592596453],[-71.209456691,41.592548775],[-71.209505763,41.592488798],[-71.209547317,41.592420798],[-71.20957833,41.592352702],[-71.209597757,41.592286635],[-71.209589446,41.592217411],[-71.209559201,41.592141499],[-71.209539495,41.592065636],[-71.20952257,41.591994881],[-71.20948939,41.591921111],[-71.209453974,41.591863848],[-71.209425354,41.591805915],[-71.209410974,41.59175177],[-71.209411405,41.591676141],[-71.209429148,41.591598544],[-71.209456081,41.591543359],[-71.209483916,41.591491058],[-71.209525438,41.59142308],[-71.209574583,41.591360221],[-71.209626595,41.591296661],[-71.209674402,41.591253924],[-71.209755174,41.591243997],[-71.209825498,41.591227434],[-71.209776708,41.591170045],[-71.2097633,41.591116611],[-71.209793217,41.591054984],[-71.209835747,41.590986254],[-71.209856889,41.590931741],[-71.20986116,41.590855482],[-71.209873102,41.59078066],[-71.209891377,41.590726848],[-71.209916762,41.590650047],[-71.209929249,41.590596152],[-71.209961189,41.590531695],[-71.209979545,41.590473515],[-71.210002726,41.590412558],[-71.210038359,41.590353164],[-71.210082456,41.590301773],[-71.210132301,41.590252592],[-71.210185045,41.590202],[-71.210247278,41.590155114],[-71.210314276,41.590111899],[-71.210375632,41.590063524],[-71.210436883,41.590018077],[-71.210501055,41.589973391],[-71.210565246,41.58992436],[-71.210629461,41.58987677],[-71.210682912,41.589838438],[-71.210759268,41.589807528],[-71.21078952,41.589779771],[-71.210722,41.589748819],[-71.210645919,41.589711282],[-71.210619221,41.589652668],[-71.210600336,41.589584058],[-71.210584268,41.589519068],[-71.210530596,41.589463771],[-71.210464965,41.589432869],[-71.210397335,41.589406216],[-71.210331738,41.589374559],[-71.210274808,41.589339425],[-71.210234473,41.589292189],[-71.210272883,41.589238543],[-71.210339239,41.589229905],[-71.210401865,41.589265099],[-71.210468196,41.589309725],[-71.210540367,41.589349379],[-71.210610774,41.58938178],[-71.210687105,41.589404201],[-71.210769912,41.589388492],[-71.210852528,41.58938145],[-71.210922278,41.589397268],[-71.21100526,41.589424097],[-71.211072857,41.589451413],[-71.211154788,41.589481807],[-71.211242359,41.589518024],[-71.211328983,41.589554924],[-71.211404988,41.589596029],[-71.211475281,41.589633505],[-71.211528297,41.589672219],[-71.211562816,41.589725866],[-71.211566557,41.589782089],[-71.211630269,41.589812986],[-71.211685268,41.589796292],[-71.211696927,41.589736631],[-71.211686698,41.589666648],[-71.211634864,41.589615701],[-71.211548397,41.589570889],[-71.211488519,41.589540711],[-71.211401044,41.589496605],[-71.211318369,41.589455415],[-71.211234682,41.58941564],[-71.21117113,41.589376099],[-71.211126112,41.589320161],[-71.211136756,41.589262671],[-71.211167519,41.589208959],[-71.21119724,41.589156708],[-71.211237608,41.589100939],[-71.21128546,41.589053925],[-71.21129214,41.589004269],[-71.211267179,41.588952155],[-71.21133707,41.588908993],[-71.211418941,41.588891109],[-71.211513151,41.588879819],[-71.211591261,41.588858334],[-71.211663771,41.588828832],[-71.211714514,41.588782534],[-71.21174826,41.588722403],[-71.211792475,41.588664493],[-71.211854852,41.588611844],[-71.211925689,41.588567951],[-71.212011839,41.588526362],[-71.212075697,41.588496768],[-71.212136692,41.588467145],[-71.212219087,41.588420468],[-71.212295847,41.588366528],[-71.21238207,41.588322034],[-71.212470104,41.588281203],[-71.212550413,41.588244584],[-71.212622187,41.588202112],[-71.21268747,41.588146633],[-71.212757642,41.588087553],[-71.212821907,41.588034931],[-71.212881265,41.587989454],[-71.212958833,41.587945601],[-71.213020077,41.587900884],[-71.213088176,41.587849025],[-71.213158231,41.587795731],[-71.213204119,41.587751547],[-71.213264292,41.587714717],[-71.21332059,41.587679295],[-71.213376077,41.587634495],[-71.213430659,41.58758752],[-71.213487273,41.587535564],[-71.213548744,41.587480738],[-71.213615747,41.587435326],[-71.213683649,41.58739353],[-71.213750756,41.587345259],[-71.213818884,41.587293377],[-71.213889842,41.587242257],[-71.213960833,41.587190452],[-71.21403077,41.587142942],[-71.214099678,41.587100439],[-71.214167739,41.587049975],[-71.214233099,41.586990173],[-71.214278039,41.586946719],[-71.21434437,41.586887605],[-71.214403973,41.586827721],[-71.214437519,41.586777651],[-71.214469235,41.586721105],[-71.214496245,41.58666091],[-71.214518397,41.586604203],[-71.214534717,41.586550386],[-71.214553932,41.586496553],[-71.214573177,41.58644272],[-71.214590912,41.586365121],[-71.214626573,41.586305017],[-71.214680258,41.586253694],[-71.214736053,41.586193777],[-71.214786216,41.58612591],[-71.214832376,41.58606805],[-71.214874501,41.58602022],[-71.214903313,41.58596577],[-71.214919667,41.585911221],[-71.21492769,41.58583927],[-71.214929119,41.585763667],[-71.214925622,41.585693037],[-71.214914455,41.585620901],[-71.214902538,41.585539387],[-71.214896809,41.5854846],[-71.214884772,41.585409581],[-71.214849671,41.585335762],[-71.214818946,41.58528503],[-71.214775219,41.585212539],[-71.214731301,41.585148716],[-71.214692086,41.585089272],[-71.214664341,41.585032784],[-71.21461462,41.58497249],[-71.214556711,41.584938751],[-71.214476466,41.584920645],[-71.21437201,41.58491524],[-71.214287611,41.584913658],[-71.214213778,41.58491288],[-71.214123576,41.584914828],[-71.214048478,41.584931359],[-71.214013251,41.584969144],[-71.214062944,41.585028705],[-71.214137069,41.585066945],[-71.214227683,41.585095963],[-71.214328876,41.585122972],[-71.214417382,41.585160583],[-71.214464599,41.585201408],[-71.214502024,41.585252203],[-71.214535516,41.585310901],[-71.214564089,41.585373132],[-71.214586003,41.585432441],[-71.214604076,41.585492404],[-71.214623081,41.585555229],[-71.214639116,41.585621659],[-71.214656202,41.585684501],[-71.214671452,41.585742262],[-71.214682868,41.585799304],[-71.214684645,41.58585909],[-71.21467585,41.585919512],[-71.214662313,41.585977682],[-71.21464694,41.586030793],[-71.214611968,41.586107502],[-71.214567527,41.586176183],[-71.214514629,41.586235421],[-71.214464708,41.586289659],[-71.2144225,41.586342497],[-71.214385978,41.58639759],[-71.214353327,41.586451985],[-71.214303526,41.58649975],[-71.214230032,41.586532065],[-71.214163196,41.586567392],[-71.2141009,41.586616453],[-71.21405008,41.586667051],[-71.213988774,41.586712524],[-71.21391241,41.586746295],[-71.213822746,41.586770588],[-71.213735361,41.586775425],[-71.213650095,41.586769518],[-71.213575652,41.586747812],[-71.213550685,41.58669714],[-71.213511546,41.586634105],[-71.213449211,41.586581601],[-71.213400354,41.586525609],[-71.21337571,41.586456939],[-71.213380088,41.586376334],[-71.213399663,41.586303086],[-71.213407638,41.58623548],[-71.21339929,41.586166965],[-71.213352554,41.586100207],[-71.213273926,41.586046816],[-71.213207282,41.58601804],[-71.213141687,41.585986385],[-71.213072732,41.585929473],[-71.213028972,41.585857782],[-71.213006408,41.585780472],[-71.212994259,41.585710484],[-71.212990684,41.585644199],[-71.213051388,41.585576382],[-71.213110785,41.585528756],[-71.2131721,41.585481134],[-71.213217119,41.585433334],[-71.213251613,41.585382559],[-71.213279448,41.585328816],[-71.213294979,41.58526777],[-71.213300955,41.585204436],[-71.2132944,41.585143907],[-71.213279144,41.585087541],[-71.213260999,41.585030504],[-71.213261148,41.58496926],[-71.213277616,41.58490968],[-71.213292022,41.58485508],[-71.213314367,41.584789066],[-71.213332734,41.584727295],[-71.213345556,41.584658993],[-71.213345785,41.584593449],[-71.213333466,41.5845343],[-71.213303927,41.584470581],[-71.213273167,41.584421289],[-71.213230847,41.58437549],[-71.213174971,41.584336723],[-71.21311118,41.584310859],[-71.213011434,41.584308392],[-71.212908254,41.584338299],[-71.212840442,41.584374332],[-71.212782064,41.584419079],[-71.212730425,41.584462471],[-71.212651833,41.584511353],[-71.212564952,41.584540683],[-71.212467535,41.58456921],[-71.212397143,41.584589365],[-71.212308302,41.584620863],[-71.21224637,41.584649752],[-71.212182592,41.584675732],[-71.212107661,41.584682131],[-71.212031595,41.584697195],[-71.211957565,41.584706523],[-71.211885017,41.584738885],[-71.211871434,41.584799981],[-71.211879006,41.584857677],[-71.211873926,41.584924581],[-71.211846637,41.584999228],[-71.211805047,41.585070111],[-71.211749165,41.585135744],[-71.211698545,41.585175547],[-71.211639462,41.585207348],[-71.21155066,41.585236672],[-71.21146266,41.585222798],[-71.211400874,41.585191198],[-71.211339282,41.585150221],[-71.211283607,41.58510066],[-71.211244466,41.585039042],[-71.211219901,41.584966758],[-71.211204775,41.584902503],[-71.211201158,41.584839099],[-71.211207924,41.584783726],[-71.211241637,41.584723549],[-71.211281802,41.584678597],[-71.211332465,41.584635912],[-71.211392676,41.584596911],[-71.211454658,41.584563768],[-71.211553995,41.584535247],[-71.211627278,41.584515832],[-71.211705552,41.584483508],[-71.211770672,41.584436651],[-71.21182259,41.584378852],[-71.211862056,41.58431949],[-71.21188797,41.584266452],[-71.211914327,41.58418899],[-71.21192409,41.584130743],[-71.211927998,41.584073876],[-71.211929123,41.584012657],[-71.211930164,41.583956492],[-71.21192361,41.583895939],[-71.211899746,41.583837356],[-71.211862373,41.583782215],[-71.211821356,41.583717689],[-71.211774586,41.583652393],[-71.211740051,41.583603046],[-71.211700762,41.583547191],[-71.211664401,41.583490635],[-71.211654293,41.583414225],[-71.211686617,41.583378515],[-71.211737255,41.583389139],[-71.211784272,41.583440028],[-71.211830218,41.583498849],[-71.211876998,41.583561972],[-71.2119161,41.583625785],[-71.211950459,41.583687344],[-71.211984855,41.583747486],[-71.212018277,41.583807602],[-71.212057659,41.583856276],[-71.212105811,41.583898568],[-71.212163678,41.583934458],[-71.212255041,41.583972834],[-71.212347544,41.584001149],[-71.212415253,41.584022747],[-71.212488594,41.584051632],[-71.212559944,41.584083302],[-71.212624552,41.58411715],[-71.212681482,41.584151597],[-71.212762297,41.584192026],[-71.212855078,41.584205934],[-71.212948253,41.584199695],[-71.213024521,41.584173128],[-71.21307331,41.584126824],[-71.213114952,41.584105636],[-71.21318223,41.584148822],[-71.213243032,41.584182592],[-71.213308742,41.584208484],[-71.213337572,41.584205194],[-71.213332855,41.584148946],[-71.213322382,41.584092684],[-71.213330554,41.584015016],[-71.213371747,41.583964279],[-71.213453485,41.583954329],[-71.21353841,41.583926411],[-71.213637624,41.583904383],[-71.213741058,41.583913377],[-71.21382858,41.58395245],[-71.213900388,41.584011518],[-71.213942705,41.584058072],[-71.213972447,41.584110243],[-71.213989579,41.584169449],[-71.214001855,41.584231525],[-71.214015182,41.58428999],[-71.214027531,41.584349184],[-71.214036941,41.584411939],[-71.214035717,41.584475307],[-71.214023194,41.584531375],[-71.213971152,41.584597065],[-71.213920537,41.58463616],[-71.213841946,41.584685043],[-71.213759767,41.584718754],[-71.213679458,41.584756815],[-71.213608662,41.58479929],[-71.213568456,41.584847125],[-71.21358219,41.584882561],[-71.213677411,41.584868413],[-71.213757271,41.584856285],[-71.213838036,41.584846309],[-71.213919664,41.584840704],[-71.21399581,41.584821317],[-71.2140617,41.58478601],[-71.214124739,41.584747746],[-71.21418307,41.584706588],[-71.21424137,41.584665408],[-71.214303381,41.584632195],[-71.214362939,41.584575192],[-71.214342376,41.584492879],[-71.214311894,41.584428494],[-71.214288102,41.584367053],[-71.21427378,41.584312862],[-71.214265275,41.584252282],[-71.214259777,41.584186701],[-71.214246806,41.584109507],[-71.2142204,41.584032874],[-71.214187139,41.583963382],[-71.214155401,41.583914797],[-71.21411602,41.583865415],[-71.214071891,41.583815289],[-71.214012305,41.583768556],[-71.213935361,41.58372745],[-71.213863074,41.58369427],[-71.213798502,41.583659027],[-71.213735941,41.583616608],[-71.213669725,41.58356764],[-71.213597684,41.583520074],[-71.213533282,41.58347406],[-71.213475555,41.583433849],[-71.213414745,41.583402229],[-71.213351004,41.583372042],[-71.213278754,41.583337443],[-71.213209484,41.583297111],[-71.213149898,41.583250423],[-71.213099012,41.58319948],[-71.213050035,41.583150691],[-71.213000071,41.583104827],[-71.212940479,41.583059534],[-71.212865456,41.583018433],[-71.212783545,41.582985159],[-71.212704475,41.582956969],[-71.212621453,41.5829338],[-71.21253448,41.58291563],[-71.212434029,41.58290088],[-71.212342077,41.582892714],[-71.212259673,41.582888231],[-71.212178167,41.582887387],[-71.212087066,41.58288645],[-71.211998788,41.582887715],[-71.21192104,41.582891225],[-71.211817414,41.582891583],[-71.211708347,41.582876056],[-71.211628022,41.582862956],[-71.211528712,41.582838145],[-71.211445777,41.582809212],[-71.211373326,41.582786115],[-71.211302645,41.582768831],[-71.211228284,41.582743579],[-71.211155058,41.582709686],[-71.211087752,41.582666476],[-71.210999412,41.582620195],[-71.210933791,41.582588561],[-71.210872943,41.582559112],[-71.210789222,41.582522219],[-71.210713063,41.582490444],[-71.210637881,41.582458009],[-71.210570256,41.582432064],[-71.21055686,41.582430476],[-71.210494498,41.582385426],[-71.210436437,41.582345806],[-71.210362785,41.582298258],[-71.210302855,41.582240544],[-71.210252389,41.582178212],[-71.210197719,41.582115869],[-71.210110381,41.582077616],[-71.210035148,41.582077129],[-71.209960979,41.582077422],[-71.209864798,41.582075167],[-71.209765658,41.582067461],[-71.209690447,41.58206224],[-71.209612181,41.582052277],[-71.209538139,41.58203766],[-71.209467316,41.582018384],[-71.209399604,41.581998294],[-71.209313147,41.581974154],[-71.209230797,41.581957937],[-71.209156663,41.581950362],[-71.209066822,41.581947391],[-71.209021968,41.581953507],[-71.208967134,41.581980094],[-71.208948048,41.582004699],[-71.208957774,41.58206359],[-71.208957021,41.582129475],[-71.208946888,41.582188293],[-71.20887843,41.582232555],[-71.208801822,41.582260308],[-71.208723308,41.582271521],[-71.208638634,41.582270964],[-71.208528933,41.582267873],[-71.208447523,41.582259502],[-71.208366215,41.582241663],[-71.208291241,41.582217643],[-71.208201788,41.582182494],[-71.208103952,41.582148879],[-71.208027895,41.58212872],[-71.207951871,41.58210783],[-71.207881011,41.582090087],[-71.207805989,41.582069976],[-71.207725715,41.582052963],[-71.207650682,41.582035186],[-71.207554766,41.582014931],[-71.207468365,41.581985301],[-71.207408146,41.581951941],[-71.207352181,41.581913904],[-71.207305684,41.581870424],[-71.207247917,41.581806494],[-71.20721325,41.581733269],[-71.207183837,41.581656946],[-71.207147099,41.581583716],[-71.207092511,41.581517438],[-71.207046059,41.581470826],[-71.207000618,41.581422661],[-71.206957355,41.581371368],[-71.206912936,41.581326362],[-71.206831768,41.5812983],[-71.206731243,41.581314098],[-71.206630574,41.581341674],[-71.206534018,41.581375549],[-71.206439574,41.581407119],[-71.206356458,41.581452852],[-71.206281565,41.581511962],[-71.206234,41.581556367],[-71.206188533,41.581601602],[-71.206141896,41.581656209],[-71.206094138,41.581716303],[-71.206046287,41.581783463],[-71.205995374,41.581847459],[-71.205933092,41.581899626],[-71.205861502,41.5819423],[-71.205785902,41.581969253],[-71.205709472,41.581984403],[-71.205636211,41.58199254],[-71.205540934,41.582006041],[-71.205468442,41.58203929],[-71.205433291,41.582093195],[-71.205464005,41.58214441],[-71.205512503,41.58219654],[-71.205522253,41.582256232],[-71.205520437,41.582320605],[-71.205451928,41.582368799],[-71.205351302,41.582393172],[-71.205274903,41.582401301],[-71.20519643,41.582410179],[-71.205117884,41.582421435],[-71.20503725,41.582436574],[-71.204960717,41.582454101],[-71.204887341,41.582474038],[-71.204814918,41.582498666],[-71.204739355,41.58252404],[-71.20466707,41.582538468],[-71.204573159,41.582526037],[-71.204515294,41.582470704],[-71.204480512,41.582410056],[-71.2044739,41.582350395],[-71.204474045,41.582338618],[-71.204455906,41.582281991],[-71.204379597,41.582283831],[-71.204323789,41.582318746],[-71.204268967,41.582357621],[-71.204202759,41.582388576],[-71.204117617,41.582430369],[-71.204055541,41.58246369],[-71.203994476,41.582502502],[-71.203875257,41.582562503],[-71.203817175,41.582594919],[-71.203734785,41.582640881],[-71.203670811,41.582676233],[-71.20360675,41.582717324],[-71.20355984,41.58276436],[-71.203534501,41.58283686],[-71.203597561,41.582901607],[-71.203653228,41.582951171],[-71.203693413,41.583009204],[-71.203724833,41.583072199],[-71.203748646,41.583133688],[-71.203767764,41.58318931],[-71.203781126,41.583244918],[-71.203780074,41.583301792],[-71.203754248,41.583347602],[-71.203648602,41.583356592],[-71.203561308,41.583355681],[-71.203471763,41.58337418],[-71.203466715,41.583438957],[-71.203485799,41.583495334],[-71.203508631,41.583558215],[-71.203524616,41.583626088],[-71.203528222,41.583690223],[-71.2034972,41.583759759],[-71.203424568,41.583796437],[-71.203343215,41.583788406],[-71.203290827,41.583767688],[-71.203249146,41.583790313],[-71.203202071,41.583846679],[-71.203145928,41.583874206],[-71.203073125,41.583868415],[-71.20300836,41.583843229],[-71.202932216,41.583861877],[-71.202847445,41.583881897],[-71.20276823,41.58385944],[-71.202764544,41.58379965],[-71.202746163,41.583756241],[-71.202688567,41.583708775],[-71.202615304,41.583677071],[-71.202519353,41.583677486],[-71.202443323,41.583691103],[-71.202344388,41.583697982],[-71.202253492,41.583685534],[-71.202168396,41.58367022],[-71.202071662,41.583662011],[-71.201972197,41.58364515],[-71.201877422,41.583634773],[-71.201808321,41.583585767],[-71.201776203,41.583509116],[-71.201759373,41.583433306],[-71.201714649,41.583362248],[-71.201631958,41.583321028],[-71.20155723,41.583316649],[-71.201479446,41.583320884],[-71.201396719,41.583333728],[-71.201300523,41.583347817],[-71.201202404,41.583362656],[-71.201119596,41.583379799],[-71.201041617,41.583393364],[-71.200963706,41.583405511],[-71.200888698,41.583415515],[-71.200837984,41.583408523],[-71.200851952,41.583378394],[-71.200927401,41.583345338],[-71.201024744,41.58332048],[-71.201117341,41.583294078],[-71.201206149,41.583264006],[-71.201295077,41.583227486],[-71.20137727,41.583191611],[-71.201459376,41.583161499],[-71.201537206,41.583153697],[-71.201612012,41.583154486],[-71.201684116,41.583146623],[-71.201769408,41.58309923],[-71.201814441,41.583050017],[-71.201867142,41.583002287],[-71.201932764,41.582979931],[-71.202001567,41.582994334],[-71.202060083,41.583046834],[-71.202107669,41.583117899],[-71.202147651,41.583186749],[-71.202184659,41.583259867],[-71.202222762,41.583326516],[-71.202246469,41.583390864],[-71.202262642,41.583450802],[-71.202282706,41.583505786],[-71.202307694,41.583556439],[-71.202351925,41.583602269],[-71.202431876,41.583583655],[-71.202504925,41.583575771],[-71.202578592,41.583585933],[-71.202665162,41.583625035],[-71.20273042,41.583675379],[-71.202804628,41.583707131],[-71.202902097,41.5837276],[-71.203005724,41.58372725],[-71.203080282,41.583689136],[-71.203163329,41.583659734],[-71.203262553,41.583636321],[-71.203330652,41.583585177],[-71.203301362,41.583509266],[-71.20327644,41.58345715],[-71.203261151,41.583403664],[-71.20325935,41.583344588],[-71.203281426,41.583292959],[-71.203336868,41.583251777],[-71.203402648,41.583221484],[-71.203488718,41.583183491],[-71.203545179,41.583139453],[-71.203491316,41.58309497],[-71.203432507,41.583059759],[-71.203385343,41.583016048],[-71.203355686,41.582960284],[-71.203344722,41.582880212],[-71.203349605,41.582824834],[-71.203357402,41.582765142],[-71.203372864,41.582707665],[-71.203403597,41.582654709],[-71.203455527,41.582595497],[-71.20345462,41.582540744],[-71.203455034,41.582536789],[-71.203445989,41.582483114],[-71.203470509,41.582443247],[-71.203540789,41.58242097],[-71.203620381,41.582407385],[-71.203687562,41.582383499],[-71.203759064,41.582347138],[-71.203832564,41.582320135],[-71.203907069,41.582293203],[-71.203982529,41.582277229],[-71.204069627,41.582247197],[-71.204153733,41.582205402],[-71.204233719,41.582158862],[-71.204312661,41.582113875],[-71.204372642,41.58207897],[-71.20444512,41.582048854],[-71.204536183,41.582037722],[-71.204592927,41.582011407],[-71.204614632,41.581947222],[-71.204564071,41.581893509],[-71.204494297,41.581871855],[-71.20440545,41.581871261],[-71.204311443,41.581866697],[-71.204235481,41.581839492],[-71.204187975,41.581790543],[-71.204152016,41.581740824],[-71.204092886,41.581702754],[-71.204055858,41.581653878],[-71.204050268,41.58159733],[-71.204080237,41.5815379],[-71.204147516,41.581505438],[-71.204236381,41.581502076],[-71.204281876,41.581457666],[-71.204286584,41.581413769],[-71.204223278,41.581376443],[-71.204124323,41.58134831],[-71.204031246,41.581353948],[-71.203964707,41.581410791],[-71.203922324,41.581460697],[-71.203855727,41.581523852],[-71.2038193,41.581596552],[-71.203833977,41.58167748],[-71.203864658,41.581735762],[-71.203885892,41.581794751],[-71.203892518,41.581851325],[-71.203896033,41.5819086],[-71.203898527,41.581962761],[-71.203886173,41.582033328],[-71.203832428,41.582069827],[-71.203765825,41.58204738],[-71.203739445,41.58198131],[-71.20372783,41.581903547],[-71.203714896,41.581847757],[-71.203692633,41.581787187],[-71.203663202,41.581715598],[-71.2036431,41.581648744],[-71.203614705,41.581577134],[-71.203610306,41.581506479],[-71.203611282,41.581426438],[-71.203611977,41.581367596],[-71.203610557,41.581311859],[-71.203606252,41.58123416],[-71.203605003,41.581167469],[-71.203654481,41.58113798],[-71.203728975,41.581113336],[-71.203779733,41.581063497],[-71.203794061,41.581000802],[-71.20378959,41.580939569],[-71.203805091,41.580866723],[-71.203865373,41.580805885],[-71.20391501,41.580761509],[-71.203958448,41.580713937],[-71.203994542,41.580667102],[-71.204037159,41.580599106],[-71.204067225,41.580531809],[-71.204068982,41.580473748],[-71.204043493,41.580419436],[-71.203963615,41.580369466],[-71.203889808,41.580337578],[-71.203822289,41.580302597],[-71.203738239,41.580252593],[-71.203667784,41.580200315],[-71.203632973,41.580139666],[-71.203679611,41.580085059],[-71.203770026,41.580041703],[-71.203864272,41.580026692],[-71.203944792,41.580022508],[-71.204014035,41.580000228],[-71.204013511,41.579954694],[-71.203942048,41.579903236],[-71.203885066,41.579862015],[-71.203831218,41.579821626],[-71.203753353,41.57977795],[-71.203678383,41.579753904],[-71.203598061,41.579741599],[-71.203543327,41.579774962],[-71.203486063,41.579842074],[-71.203424754,41.579901285],[-71.203362718,41.579933028],[-71.203264303,41.579947274],[-71.203188838,41.579964803],[-71.203114544,41.579972936],[-71.203029903,41.579972351],[-71.202933753,41.579970914],[-71.202832391,41.57997024],[-71.202722684,41.579969499],[-71.202605595,41.579971049],[-71.202475932,41.579978031],[-71.202342,41.579992824],[-71.202213173,41.58001703],[-71.2020926,41.580047615],[-71.201980306,41.580086088],[-71.201881637,41.580122332],[-71.201792543,41.580142889],[-71.201710097,41.580135265],[-71.201633109,41.580106502],[-71.201564571,41.580068337],[-71.20149715,41.580025533],[-71.201421441,41.579977128],[-71.201344647,41.579932675],[-71.201265554,41.579904683],[-71.201181,41.579898609],[-71.201100487,41.579901213],[-71.201018837,41.579912435],[-71.200938216,41.579925215],[-71.200854618,41.579923077],[-71.200765909,41.579913058],[-71.200670978,41.579898289],[-71.200595911,41.579875841],[-71.200582467,41.579871804],[-71.20051393,41.579833662],[-71.200459048,41.579793268],[-71.200385497,41.579739402],[-71.200327683,41.579680933],[-71.200278305,41.579616267],[-71.20022695,41.579570691],[-71.200220398,41.579564865],[-71.200153865,41.579534595],[-71.200057073,41.579500976],[-71.1999894,41.579480125],[-71.199921776,41.579455341],[-71.199842935,41.579406148],[-71.199800871,41.579340723],[-71.19973158,41.579281378],[-71.199664113,41.579242507],[-71.199593562,41.579198824],[-71.199523093,41.5791505],[-71.199454602,41.579109224],[-71.199389195,41.57907269],[-71.199338484,41.57903313],[-71.199305925,41.578960709],[-71.199281753,41.578885976],[-71.199246955,41.578823748],[-71.199185767,41.578784092],[-71.199110845,41.57875691],[-71.199047499,41.578722737],[-71.198981141,41.578681467],[-71.198921044,41.578636348],[-71.19885272,41.57858565],[-71.198780064,41.578542808],[-71.198710737,41.57848504],[-71.198673868,41.578422807],[-71.198649652,41.578351207],[-71.198636967,41.578275796],[-71.198635817,41.578202015],[-71.198636615,41.578135353],[-71.198637277,41.578078043],[-71.198638213,41.578001135],[-71.198638864,41.577946227],[-71.198639554,41.577889718],[-71.198640288,41.577830098],[-71.198647422,41.577756385],[-71.198665864,41.577700792],[-71.198689558,41.577642125],[-71.198729069,41.5775749],[-71.198772568,41.577521042],[-71.198816019,41.577471117],[-71.198870794,41.577435424],[-71.198948227,41.577426524],[-71.199040174,41.577427131],[-71.199138485,41.577421511],[-71.199238919,41.577411231],[-71.1993155,41.577388996],[-71.199401652,41.577351921],[-71.199455399,41.577314624],[-71.199481362,41.57723945],[-71.199467431,41.577182857],[-71.199453459,41.57712862],[-71.199457549,41.577047809],[-71.199473888,41.57699221],[-71.199497999,41.576955133],[-71.199506895,41.576941434],[-71.199556619,41.576891571],[-71.199604196,41.576844813],[-71.199642389,41.576798762],[-71.199678491,41.57675035],[-71.199719952,41.576695708],[-71.199750958,41.576636282],[-71.199773713,41.576569722],[-71.19979339,41.576496888],[-71.199815221,41.576419349],[-71.199839112,41.57634417],[-71.199858827,41.576269781],[-71.199874377,41.576193757],[-71.199887848,41.576119306],[-71.199910628,41.57604728],[-71.199947983,41.575984738],[-71.19998835,41.575929293],[-71.200020332,41.575876181],[-71.200043965,41.575823734],[-71.200046973,41.575812124],[-71.200058198,41.575768907],[-71.200062023,41.575712429],[-71.200062961,41.575634789],[-71.200063854,41.575560236],[-71.200057468,41.575485642],[-71.200031064,41.575419571],[-71.200019294,41.575356672],[-71.199952665,41.575335046],[-71.199863038,41.575314024],[-71.199782763,41.575299338],[-71.199705643,41.575280795],[-71.199626362,41.575268467],[-71.199548098,41.575260098],[-71.199473917,41.575258006],[-71.199396629,41.575255929],[-71.199315173,41.575253017],[-71.199247404,41.575240788],[-71.199200928,41.57519495],[-71.199167017,41.575145302],[-71.199148933,41.575084742],[-71.199141871,41.575064301],[-71.199064493,41.575068466],[-71.198992076,41.575093068],[-71.198913323,41.575124719],[-71.198839915,41.575146207],[-71.198763416,41.575164508],[-71.198687081,41.575167121],[-71.198620546,41.575138428],[-71.198558473,41.575086992],[-71.198508658,41.575058434],[-71.198432357,41.57506027],[-71.198359843,41.575092714],[-71.198292499,41.57513304],[-71.198225339,41.575153766],[-71.198156048,41.575180776],[-71.198096115,41.575212522],[-71.198018673,41.575223777],[-71.197940323,41.575220895],[-71.197923847,41.575201161],[-71.197930787,41.575143159],[-71.198002023,41.575130288],[-71.198082489,41.575130041],[-71.198147803,41.575087332],[-71.198190287,41.57502876],[-71.198264966,41.574989255],[-71.198354002,41.574973411],[-71.198454324,41.574973285],[-71.198537972,41.574969937],[-71.198624868,41.57495562],[-71.19867789,41.57497561],[-71.198704308,41.57503857],[-71.198757151,41.575077381],[-71.198805453,41.575058069],[-71.198863572,41.57500354],[-71.198947463,41.574980569],[-71.199042693,41.574968675],[-71.199127331,41.574968462],[-71.199201501,41.574972887],[-71.199271326,41.574988278],[-71.199328241,41.575035744],[-71.199354775,41.575086927],[-71.199401348,41.575124898],[-71.199499548,41.575129523],[-71.199594482,41.575141915],[-71.199693402,41.575168496],[-71.199795569,41.575191152],[-71.199869573,41.575205021],[-71.199940472,41.575218837],[-71.200028872,41.575254767],[-71.200098242,41.575309355],[-71.200159192,41.575367077],[-71.20019062,41.575446539],[-71.200190763,41.575521071],[-71.200174373,41.575581382],[-71.200157986,41.575640914],[-71.200170826,41.575702993],[-71.200198482,41.57574869],[-71.200196786,41.575812515],[-71.200196564,41.575820862],[-71.200174783,41.575894491],[-71.200146977,41.575946859],[-71.200118122,41.576002379],[-71.200082793,41.57606806],[-71.200065378,41.576126035],[-71.200049081,41.576179279],[-71.200025254,41.576247391],[-71.200005577,41.576320202],[-71.199995429,41.576380597],[-71.19997471,41.576454984],[-71.199935142,41.576528475],[-71.199905175,41.576587103],[-71.199877362,41.576641049],[-71.199851578,41.576697401],[-71.199833037,41.576761593],[-71.199817637,41.576825062],[-71.199790807,41.576883767],[-71.199746079,41.576953265],[-71.199744758,41.576955778],[-71.199718269,41.577006456],[-71.199696629,41.577069085],[-71.199671862,41.577129328],[-71.199647978,41.577202906],[-71.199634604,41.577269536],[-71.199620328,41.577326741],[-71.199583197,41.577373573],[-71.199541905,41.577417992],[-71.199488016,41.577466266],[-71.199411368,41.577496368],[-71.199333741,41.577520978],[-71.199250725,41.577558039],[-71.199172844,41.577604603],[-71.199096199,41.577633882],[-71.199014511,41.577647458],[-71.198925412,41.577669637],[-71.198849594,41.577717762],[-71.198832136,41.57777807],[-71.198831418,41.577840822],[-71.198830478,41.577918508],[-71.198834997,41.577975053],[-71.198838504,41.578033105],[-71.198858521,41.578103871],[-71.198926883,41.578153037],[-71.198995467,41.5781872],[-71.199066035,41.578226927],[-71.199141879,41.578265112],[-71.199226163,41.578296298],[-71.199309369,41.578329836],[-71.199391447,41.578370393],[-71.19947026,41.578418785],[-71.199546957,41.578470351],[-71.199602847,41.578516213],[-71.199660745,41.57856917],[-71.19972224,41.578582161],[-71.199756032,41.578552587],[-71.199788005,41.578501763],[-71.19981685,41.578448621],[-71.199854318,41.578375124],[-71.199890508,41.578321223],[-71.199928719,41.578271261],[-71.1999931,41.578219927],[-71.200074707,41.578211038],[-71.200181304,41.578211773],[-71.200233311,41.578208227],[-71.200254517,41.57820675],[-71.200341701,41.578170477],[-71.200379902,41.578122871],[-71.200402421,41.5780744],[-71.200407021,41.578054287],[-71.200347588,41.577944541],[-71.200348234,41.57789041],[-71.200348992,41.577825279],[-71.20034968,41.57776877],[-71.20035767,41.577713881],[-71.200387648,41.577652874],[-71.200440601,41.577595975],[-71.200527758,41.577558879],[-71.200606639,41.57755291],[-71.200632385,41.577550941],[-71.200704474,41.577551472],[-71.200783904,41.577551999],[-71.20086644,41.577552557],[-71.200950043,41.57755314],[-71.201035746,41.577553706],[-71.201123521,41.577554323],[-71.201214433,41.577554902],[-71.201307446,41.577555533],[-71.201400429,41.577556186],[-71.201491378,41.577555256],[-71.201573959,41.577552657],[-71.201651321,41.577552401],[-71.201752649,41.577553098],[-71.201837429,41.577542661],[-71.201904713,41.577508599],[-71.201959393,41.577479948],[-71.201953847,41.577421067],[-71.201881902,41.577408806],[-71.201805402,41.577427109],[-71.201729016,41.577433634],[-71.201667917,41.577387714],[-71.201652967,41.577327185],[-71.2015928,41.577290689],[-71.201507484,41.577258724],[-71.201437958,41.577217447],[-71.201372736,41.577167559],[-71.201330433,41.577121001],[-71.201313416,41.577059666],[-71.201302639,41.576999171],[-71.201303094,41.576959836],[-71.201303381,41.576937173],[-71.201339457,41.576894249],[-71.201430576,41.576876053],[-71.201513049,41.576883677],[-71.201581557,41.576920995],[-71.201651821,41.576960742],[-71.201717382,41.577009807],[-71.201775243,41.577064341],[-71.201815105,41.577138382],[-71.201843728,41.577192726],[-71.201882899,41.577238521],[-71.201962823,41.577283804],[-71.202042893,41.577317287],[-71.202109137,41.577370333],[-71.202128111,41.577443428],[-71.202127335,41.57750618],[-71.202126534,41.577574444],[-71.202125751,41.577638774],[-71.202121966,41.577693675],[-71.202074162,41.577756922],[-71.201991338,41.57777912],[-71.201893258,41.5777675],[-71.201820244,41.57775599],[-71.201746198,41.577743745],[-71.201672167,41.577728345],[-71.201601306,41.577712152],[-71.201506389,41.577695028],[-71.201418711,41.577686568],[-71.201390329,41.577698912],[-71.201383295,41.577764804],[-71.201372117,41.57782435],[-71.201353618,41.577886233],[-71.201333957,41.577955935],[-71.201307947,41.578035019],[-71.201277652,41.57811878],[-71.201245317,41.578202513],[-71.201215025,41.578285474],[-71.201179462,41.578375465],[-71.201145974,41.57846473],[-71.201121037,41.578542216],[-71.201098283,41.578608776],[-71.201082929,41.578669112],[-71.20107808,41.578723232],[-71.201075322,41.57877969],[-71.201054662,41.57884781],[-71.201020332,41.578921361],[-71.200989168,41.578988631],[-71.20095615,41.57904174],[-71.200924366,41.579078409],[-71.200895337,41.57914493],[-71.200890983,41.579223979],[-71.200953568,41.579258309],[-71.201029522,41.579286293],[-71.201117053,41.579307286],[-71.201192025,41.579330579],[-71.201271101,41.579355438],[-71.201354508,41.579372464],[-71.20143904,41.579383272],[-71.201522495,41.579396364],[-71.201603741,41.579419696],[-71.201680729,41.579448437],[-71.201786161,41.579457813],[-71.201858586,41.579432387],[-71.201929058,41.5793944],[-71.202002666,41.579356467],[-71.202080295,41.579331878],[-71.202163903,41.579331683],[-71.202249467,41.579343225],[-71.202337036,41.579362662],[-71.202422649,41.579370293],[-71.202510575,41.579358331],[-71.20259653,41.579337742],[-71.202688577,41.579330525],[-71.20278775,41.579336682],[-71.202887006,41.57933815],[-71.20298738,41.579334888],[-71.203081584,41.579322187],[-71.203172826,41.579297678],[-71.203257902,41.579262975],[-71.203335689,41.579223474],[-71.203409342,41.579182408],[-71.20348501,41.579146812],[-71.203565861,41.579116741],[-71.203661245,41.579092265],[-71.203763928,41.579070208],[-71.203868715,41.57904738],[-71.203969237,41.579031584],[-71.20405815,41.57902358],[-71.20413684,41.57899977],[-71.20408846,41.578935862],[-71.204030343,41.578903329],[-71.203955519,41.578867482],[-71.203876513,41.578834027],[-71.203804823,41.578798989],[-71.203739325,41.578768723],[-71.20364036,41.578743723],[-71.203572687,41.578722852],[-71.203500081,41.578675279],[-71.20347061,41.578606045],[-71.20349341,41.578535551],[-71.203582709,41.578496148],[-71.203682213,41.578476417],[-71.2037586,41.57846989],[-71.203852549,41.578479143],[-71.203931358,41.57852911],[-71.20398612,41.578582834],[-71.204041816,41.578645229],[-71.204100671,41.578702875],[-71.204159791,41.578742523],[-71.204232724,41.578758719],[-71.204319428,41.578760863],[-71.204411276,41.57877011],[-71.204506162,41.578788032],[-71.204606141,41.578817745],[-71.204702879,41.578856849],[-71.204788053,41.578900589],[-71.20485018,41.578948866],[-71.204872543,41.579000814],[-71.204865527,41.579063551],[-71.204841707,41.579130863],[-71.204810611,41.579197357],[-71.2047701,41.579264581],[-71.204740044,41.579330254],[-71.204748623,41.579399365],[-71.204782298,41.579468655],[-71.204821186,41.579537181],[-71.204862223,41.579601824],[-71.204901225,41.579658595],[-71.204939233,41.579712985],[-71.204985751,41.579758044],[-71.205059503,41.579795419],[-71.205132271,41.579828057],[-71.205214368,41.579865545],[-71.205296396,41.579911586],[-71.205383543,41.579963975],[-71.205478976,41.580022675],[-71.205574339,41.580090041],[-71.20565809,41.580165931],[-71.205733462,41.580242531],[-71.205804716,41.580313655],[-71.205874994,41.580378465],[-71.205933845,41.580437733],[-71.20598753,41.580494564],[-71.206038146,41.580542811],[-71.206092268,41.580563578],[-71.20618971,41.580542238],[-71.206261989,41.58052861],[-71.206337216,41.5805299],[-71.206412394,41.580535146],[-71.206486337,41.580557587],[-71.206559018,41.580596513],[-71.206624192,41.58065191],[-71.206689312,41.580712749],[-71.206761792,41.580768964],[-71.206845886,41.58081661],[-71.206934246,41.580857246],[-71.207021536,41.580898634],[-71.207109918,41.580934513],[-71.207200442,41.580968087],[-71.207297251,41.580999322],[-71.207398297,41.581029859],[-71.20749417,41.581052492],[-71.207583777,41.581073463],[-71.207673365,41.58109839],[-71.20776281,41.581135094],[-71.207854204,41.581185136],[-71.207947547,41.581242273],[-71.208040858,41.581306454],[-71.208129914,41.581375334],[-71.20821476,41.581445736],[-71.208292334,41.581514542],[-71.208366778,41.581581716],[-71.208443379,41.581643452],[-71.208525226,41.581703624],[-71.208598735,41.581762219],[-71.208657675,41.581815952],[-71.208711484,41.581859472],[-71.208789492,41.581892945],[-71.208868927,41.581893535],[-71.208890659,41.581887298],[-71.208943346,41.581864588],[-71.208965826,41.581830592],[-71.208955154,41.58175832],[-71.208931748,41.581707192],[-71.2089042,41.58164892],[-71.20886937,41.581591383],[-71.208828279,41.581530697],[-71.208775805,41.581461315],[-71.208714051,41.581383196],[-71.208650208,41.581301939],[-71.208586397,41.581220681],[-71.208523642,41.581134716],[-71.208467292,41.581040167],[-71.20844282,41.580989037],[-71.208403288,41.580886732],[-71.208363711,41.580787584],[-71.208329332,41.58069085],[-71.208300151,41.580596507],[-71.208279353,41.580500608],[-71.208271052,41.58040952],[-71.208272128,41.580319279],[-71.208270074,41.580227475],[-71.208262867,41.580130124],[-71.208257717,41.580035911],[-71.208258753,41.579948025],[-71.208257692,41.579865646],[-71.208257595,41.579785602],[-71.208250189,41.579705494],[-71.208243777,41.579627767],[-71.208240443,41.579556359],[-71.208241265,41.57948885],[-71.208242145,41.579415098],[-71.208243166,41.579330346],[-71.208244335,41.579233061],[-71.208245418,41.579141243],[-71.20824837,41.579067541],[-71.208257392,41.579011877],[-71.208286354,41.578951643],[-71.208336031,41.578904132],[-71.208390965,41.5788527],[-71.208391769,41.578789124],[-71.208390547,41.57871539],[-71.208391228,41.578658858],[-71.208396095,41.578599272],[-71.208414628,41.578535032],[-71.208439479,41.578467721],[-71.20846645,41.578396505],[-71.208498659,41.578325302],[-71.208527598,41.578263536],[-71.208562662,41.578214318],[-71.208635374,41.578164578],[-71.208718337,41.578131376],[-71.208796891,41.578117007],[-71.208877326,41.578117553],[-71.208968266,41.578118927],[-71.209047556,41.578130448],[-71.209063299,41.57812429],[-71.209050217,41.578080256],[-71.208979317,41.578065646],[-71.208927425,41.578037042],[-71.208929185,41.577977425],[-71.208929961,41.577913072],[-71.208925392,41.577858928],[-71.208902059,41.577798356],[-71.208875734,41.577725976],[-71.208864925,41.577670992],[-71.20886562,41.577611327],[-71.208865367,41.577545416],[-71.208859935,41.577473203],[-71.208853539,41.577398609],[-71.208853301,41.577329542],[-71.208854133,41.577259701],[-71.208855009,41.577186726],[-71.208854822,41.577112994],[-71.208845245,41.577041479],[-71.208830144,41.576979144],[-71.20882829,41.576971569],[-71.208803065,41.576898391],[-71.208772609,41.576823645],[-71.208733781,41.576748054],[-71.208687688,41.576669288],[-71.208631153,41.576589627],[-71.208578821,41.576510023],[-71.20854217,41.576431327],[-71.208516967,41.576353438],[-71.208494908,41.57627407],[-71.208472839,41.576196989],[-71.20845284,41.576119959],[-71.208437037,41.576044541],[-71.208418067,41.575969068],[-71.20839294,41.575888069],[-71.208384077,41.575833845],[-71.208378328,41.57579852],[-71.208378338,41.575708277],[-71.208379355,41.575624325],[-71.208386612,41.575541212],[-71.208391753,41.575461181],[-71.208392722,41.57538114],[-71.208393654,41.575302677],[-71.208394593,41.575222635],[-71.208400814,41.575139497],[-71.20841645,41.575055674],[-71.208435181,41.574974191],[-71.208447601,41.574894225],[-71.208458025,41.57481112],[-71.208465323,41.574725629],[-71.208478943,41.574636266],[-71.208491514,41.574542967],[-71.208504105,41.574452023],[-71.208519806,41.574360333],[-71.208535675,41.574258443],[-71.20854052,41.574203522],[-71.208541089,41.574192249],[-71.208543261,41.57414942],[-71.208545524,41.574045826],[-71.208546699,41.573946986],[-71.208547878,41.573847301],[-71.208553259,41.573747694],[-71.208561726,41.573652784],[-71.208569172,41.573554738],[-71.208579823,41.5734481],[-71.208588848,41.573391658],[-71.208600008,41.573334467],[-71.208612169,41.573278078],[-71.208625325,41.573224025],[-71.208638508,41.573170726],[-71.208657506,41.573070399],[-71.208668043,41.57297554],[-71.208680562,41.572886929],[-71.208692871,41.572817962],[-71.208702924,41.572763101],[-71.208706934,41.572690957],[-71.20871831,41.572612543],[-71.208734708,41.572555365],[-71.208755444,41.572481754],[-71.208742748,41.572406343],[-71.208724615,41.57234814],[-71.208705535,41.572283668],[-71.208685393,41.572218415],[-71.208671562,41.572151601],[-71.208649291,41.572092609],[-71.208621789,41.572032004],[-71.208598575,41.571965943],[-71.20858157,41.571900676],[-71.208571863,41.571837851],[-71.208568468,41.571773464],[-71.208565086,41.571705968],[-71.20855127,41.571636043],[-71.208527097,41.571559734],[-71.208509221,41.571485088],[-71.208505798,41.571419924],[-71.208506486,41.571361882],[-71.20850717,41.571304573],[-71.208508892,41.571246534],[-71.208516974,41.571183045],[-71.208533496,41.571111757],[-71.208561591,41.571033476],[-71.208589725,41.570953595],[-71.208611581,41.570874499],[-71.208634472,41.570795405],[-71.208668748,41.570724207],[-71.208710229,41.570662473],[-71.208741203,41.570607756],[-71.208776555,41.570534273],[-71.208808619,41.570474047],[-71.208872948,41.570424286],[-71.208904909,41.570373459],[-71.208893228,41.570302762],[-71.208876308,41.570232006],[-71.208871998,41.57015433],[-71.208872681,41.57009702],[-71.208873472,41.570029534],[-71.2088847,41.569963698],[-71.208905335,41.569898709],[-71.20893842,41.569841664],[-71.208988186,41.569786285],[-71.209045267,41.56972937],[-71.209093017,41.56966852],[-71.20913981,41.569603666],[-71.209180324,41.569533307],[-71.209210424,41.569462899],[-71.209237335,41.569397148],[-71.209263169,41.569333796],[-71.209279535,41.569276617],[-71.209281449,41.56920289],[-71.209282132,41.569145603],[-71.209250318,41.569095919],[-71.209179613,41.569067199],[-71.209174198,41.568998118],[-71.209172828,41.568936916],[-71.209173467,41.568882762],[-71.209174116,41.568826253],[-71.209189587,41.568758094],[-71.209220533,41.568702577],[-71.209258879,41.568640056],[-71.20929824,41.56858225],[-71.209336435,41.568533085],[-71.209383114,41.56847301],[-71.209432944,41.568416808],[-71.209479393,41.568373976],[-71.209524492,41.568360917],[-71.209601768,41.568363811],[-71.20967997,41.568377662],[-71.20976429,41.568405707],[-71.209836108,41.568430496],[-71.209916326,41.568449886],[-71.209994734,41.568444892],[-71.210019432,41.568390136],[-71.210025411,41.568326642],[-71.210017232,41.568310087],[-71.209942156,41.568298623],[-71.209870187,41.568287121],[-71.209769076,41.56826841],[-71.209690741,41.568263981],[-71.209618713,41.568258768],[-71.209589038,41.568207556],[-71.209589879,41.568135359],[-71.209590709,41.568065563],[-71.209591348,41.568011409],[-71.209591989,41.567956455],[-71.209611694,41.567881263],[-71.209643811,41.567815594],[-71.2096353,41.567744128],[-71.209623478,41.567684385],[-71.209617898,41.56762475],[-71.209618584,41.567566686],[-71.209631865,41.567504742],[-71.209661907,41.567439823],[-71.209706615,41.567371075],[-71.209754421,41.56730389],[-71.209797963,41.567243761],[-71.209842471,41.56719228],[-71.209895226,41.567148709],[-71.209976221,41.567102945],[-71.210063138,41.567087819],[-71.210156136,41.567088442],[-71.21022733,41.567075586],[-71.210305811,41.567067482],[-71.210394607,41.567068071],[-71.210468739,41.567072512],[-71.21052002,41.56706578],[-71.210520852,41.566995183],[-71.210521586,41.566933186],[-71.210516677,41.566907262],[-71.210445864,41.566889543],[-71.210364452,41.566878795],[-71.210277802,41.566875054],[-71.210174459,41.566865715],[-71.210082575,41.566861161],[-71.210008461,41.566852855],[-71.209997705,41.566793115],[-71.20997324,41.566741162],[-71.209942544,41.566686838],[-71.209922293,41.56663254],[-71.209919017,41.566554821],[-71.209943999,41.566477332],[-71.209972827,41.566424965],[-71.210014438,41.566353831],[-71.210036106,41.566288821],[-71.210045272,41.566220624],[-71.210041948,41.566146838],[-71.210016733,41.566072105],[-71.210012418,41.565995184],[-71.210015449,41.565916725],[-71.210047746,41.565837701],[-71.21007559,41.565780574],[-71.21010231,41.565729756],[-71.210143677,41.565679044],[-71.210203746,41.565633936],[-71.210269241,41.565573954],[-71.210284508,41.5655307],[-71.21029302,41.56550664],[-71.210257275,41.565437323],[-71.210206729,41.565382057],[-71.210155233,41.5653213],[-71.210116294,41.565258241],[-71.210089818,41.565200017],[-71.210085307,41.565139538],[-71.210102769,41.565075319],[-71.210126582,41.565007204],[-71.210151437,41.56493756],[-71.210181488,41.564870239],[-71.210189581,41.56480364],[-71.210189417,41.564731417],[-71.210175723,41.564654449],[-71.210149453,41.56457738],[-71.210123173,41.564502645],[-71.210112575,41.564427994],[-71.210127044,41.564351989],[-71.210156118,41.564278445],[-71.210188386,41.56420564],[-71.210210163,41.564129676],[-71.210219528,41.564044213],[-71.210221622,41.563957108],[-71.210222654,41.563869268],[-71.210214308,41.563781313],[-71.210197502,41.563698825],[-71.210175417,41.563625678],[-71.210179335,41.563559778],[-71.21019149,41.563504166],[-71.210192128,41.563450012],[-71.21015648,41.563372875],[-71.210117456,41.56331535],[-71.210077493,41.563249934],[-71.210049088,41.563180681],[-71.210023707,41.563116148],[-71.210010908,41.563050182],[-71.210011742,41.56297954],[-71.210015759,41.562905018],[-71.210035451,41.562832204],[-71.21006349,41.562758612],[-71.210084179,41.562687356],[-71.210076608,41.562623714],[-71.210069009,41.562559316],[-71.210070826,41.562493433],[-71.2100821,41.562423664],[-71.210106995,41.562351664],[-71.210150625,41.562284468],[-71.210197337,41.562222747],[-71.210235528,41.562173604],[-71.210282106,41.56212135],[-71.210334909,41.562073022],[-71.210316852,41.562011709],[-71.210286435,41.561936162],[-71.210268533,41.561860716],[-71.210245455,41.561778167],[-71.210228481,41.561712922],[-71.210210439,41.56164843],[-71.210199663,41.56158638],[-71.210200464,41.56152285],[-71.210209548,41.561459341],[-71.210221736,41.561402907],[-71.210230946,41.561331554],[-71.21022124,41.561268729],[-71.210193782,41.561205745],[-71.210160164,41.561130991],[-71.210144178,41.561069706],[-71.210124051,41.561008341],[-71.210098664,41.560945408],[-71.210073317,41.560880097],[-71.210053212,41.560814045],[-71.210035166,41.560750353],[-71.210020171,41.56069218],[-71.210009374,41.560634841],[-71.210009241,41.560555575],[-71.21000992,41.560499065],[-71.210010684,41.560437113],[-71.210011408,41.560377448],[-71.210012056,41.560320984],[-71.210012732,41.560265253],[-71.210013377,41.560209521],[-71.210014052,41.560153858],[-71.21001469,41.560099681],[-71.210015574,41.560024396],[-71.210016356,41.559958465],[-71.210003644,41.559886965],[-71.210001382,41.559814005],[-71.210009612,41.559737115],[-71.21002276,41.559683862],[-71.210042211,41.559630647],[-71.210063774,41.559575037],[-71.210074955,41.559512333],[-71.210083044,41.559446489],[-71.210090084,41.559383775],[-71.210102234,41.559328918],[-71.210137517,41.559262457],[-71.21017066,41.559197567],[-71.210185111,41.559125473],[-71.21018699,41.559052477],[-71.210187764,41.558988147],[-71.210188402,41.558933993],[-71.210195349,41.558878323],[-71.210223327,41.558811042],[-71.210253184,41.558759432],[-71.210309353,41.558693159],[-71.210363088,41.558653479],[-71.210426266,41.558613113],[-71.21049258,41.558572755],[-71.210559895,41.558533154],[-71.21062616,41.558496729],[-71.210695483,41.558464222],[-71.210768998,41.558434105],[-71.210846561,41.558411087],[-71.210929298,41.558395195],[-71.211018274,41.558380073],[-71.211112487,41.55836501],[-71.211201421,41.558352266],[-71.211283045,41.558340259],[-71.211355302,41.558325826],[-71.21144119,41.558306786],[-71.211530394,41.558274466],[-71.211620589,41.558245213],[-71.211697017,41.558230837],[-71.211776765,41.558202312],[-71.211827555,41.558146935],[-71.211836564,41.558092871],[-71.211922458,41.558072229],[-71.211964649,41.558040362],[-71.211918216,41.55799222],[-71.21184111,41.557974417],[-71.211773466,41.557951218],[-71.211685957,41.557930987],[-71.211582665,41.557920117],[-71.211488744,41.557910825],[-71.211412368,41.557920536],[-71.211365324,41.557921012],[-71.211403542,41.557871801],[-71.211415797,41.55780679],[-71.211415402,41.557751856],[-71.211391383,41.557750904],[-71.211309466,41.557788022],[-71.211238197,41.557806367],[-71.211164916,41.557818441],[-71.211075142,41.557814694],[-71.211021259,41.557778219],[-71.210962301,41.557726019],[-71.210893753,41.557694195],[-71.21081018,41.557692841],[-71.210750924,41.557666552],[-71.210781701,41.557626745],[-71.210791459,41.557596193],[-71.210737779,41.557541673],[-71.21072057,41.557495273],[-71.210765259,41.557428903],[-71.210830594,41.557382276],[-71.210881285,41.557335521],[-71.210900878,41.557270506],[-71.210894215,41.557214733],[-71.210870973,41.557148672],[-71.210835034,41.557096622],[-71.210769698,41.557054606],[-71.210689505,41.557032907],[-71.210604904,41.557029972],[-71.210540583,41.556992647],[-71.210491191,41.556932673],[-71.210455512,41.556856358],[-71.210434232,41.55680128],[-71.210430756,41.556740804],[-71.210431486,41.556679606],[-71.210436384,41.55661922],[-71.210455848,41.556562849],[-71.210504426,41.556518467],[-71.210583374,41.556471097],[-71.210639445,41.556412668],[-71.210654984,41.556335065],[-71.210655751,41.556272312],[-71.21065959,41.556210322],[-71.210671828,41.556149176],[-71.210676729,41.556088012],[-71.210677458,41.556026815],[-71.21067193,41.555962423],[-71.210654981,41.555898733],[-71.210629547,41.555839711],[-71.210606204,41.555783073],[-71.210603712,41.555727333],[-71.210613798,41.555670893],[-71.210632185,41.555616875],[-71.210693513,41.555553772],[-71.210772274,41.555520558],[-71.210865352,41.55551329],[-71.210960401,41.555514719],[-71.211065796,41.555524063],[-71.211162658,41.555549028],[-71.211232359,41.555574612],[-71.211305124,41.555602581],[-71.211293314,41.555629172],[-71.211224831,41.555678947],[-71.211209539,41.555735328],[-71.211230621,41.55580765],[-71.21123309,41.555861834],[-71.211230297,41.555921449],[-71.211218134,41.555979438],[-71.211196578,41.556034226],[-71.211165407,41.556107765],[-71.211159513,41.556166594],[-71.21115875,41.556228546],[-71.211159145,41.55628348],[-71.21118484,41.556318193],[-71.211230375,41.556355379],[-71.211197381,41.556407759],[-71.21119352,41.556468125],[-71.211231755,41.556503715],[-71.211316013,41.556535647],[-71.211359253,41.556589294],[-71.211386772,41.556645188],[-71.211409133,41.556697158],[-71.211378548,41.556721254],[-71.211304192,41.556735682],[-71.211262077,41.556764415],[-71.211278111,41.556821812],[-71.211261249,41.556834257],[-71.211187283,41.556815729],[-71.211119926,41.556858418],[-71.211144487,41.556901749],[-71.211200381,41.556944496],[-71.211199696,41.55700256],[-71.211256652,41.55704611],[-71.211306558,41.557066063],[-71.211307992,41.557120245],[-71.211324248,41.557161909],[-71.21139172,41.557196109],[-71.211470903,41.557212339],[-71.211553351,41.557219956],[-71.211608255,41.557259566],[-71.211686533,41.557267127],[-71.211764319,41.557227643],[-71.211849375,41.557189755],[-71.211943299,41.557198223],[-71.212018043,41.557240331],[-71.2120684,41.557309752],[-71.212071874,41.557370914],[-71.212094239,41.557422107],[-71.212151224,41.557459344],[-71.212212352,41.557502904],[-71.212268145,41.557555072],[-71.212310299,41.557613427],[-71.212347255,41.557670191],[-71.212384235,41.557721443],[-71.212421235,41.55777505],[-71.212459155,41.557834149],[-71.212490829,41.557893987],[-71.212520478,41.557950686],[-71.212550007,41.558013675],[-71.212525246,41.558077076],[-71.212470454,41.558115154],[-71.212403055,41.558160245],[-71.212346096,41.558206139],[-71.212268781,41.558207981],[-71.21219222,41.558231803],[-71.212128149,41.558261167],[-71.212053737,41.558281061],[-71.211990147,41.55827045],[-71.212010649,41.558213327],[-71.212010144,41.558169347],[-71.211952557,41.558178374],[-71.211903937,41.558225135],[-71.211852163,41.558275822],[-71.211829468,41.558340006],[-71.211828702,41.558402758],[-71.211849343,41.558424125],[-71.211941249,41.558427877],[-71.212029005,41.558426862],[-71.212126203,41.558425161],[-71.212215274,41.558402217],[-71.212296898,41.558390232],[-71.212368868,41.558399331],[-71.212459712,41.558402303],[-71.212555974,41.558391955],[-71.212642933,41.558371338],[-71.212743336,41.558361023],[-71.212845727,41.558362513],[-71.212950003,41.558378096],[-71.213018731,41.55839741],[-71.21308741,41.558420611],[-71.213158205,41.558440707],[-71.213236378,41.558458512],[-71.213322904,41.558473982],[-71.213408365,41.558489472],[-71.213489698,41.558501772],[-71.213572149,41.558509388],[-71.213660926,41.55851153],[-71.213745536,41.558512884],[-71.213827043,41.558513453],[-71.213911612,41.558517185],[-71.213995186,41.558518491],[-71.214074562,41.558519031],[-71.214148814,41.558514802],[-71.21422411,41.558508242],[-71.214296278,41.558500097],[-71.214371513,41.558500627],[-71.214451935,41.558498769],[-71.214534484,41.558497762],[-71.214610762,41.558496716],[-71.214714232,41.558495052],[-71.214809289,41.558495676],[-71.214892682,41.558510359],[-71.214968656,41.558536757],[-71.215024643,41.558573235],[-71.21508259,41.558620696],[-71.215120686,41.558668039],[-71.215184042,41.558697515],[-71.215256894,41.558720726],[-71.215337979,41.558755025],[-71.215405383,41.558798644],[-71.215465388,41.558849243],[-71.215523193,41.558908505],[-71.215592603,41.55895995],[-71.215659882,41.559011413],[-71.215729309,41.559058948],[-71.215778976,41.559099322],[-71.215821282,41.559145074],[-71.215859283,41.559200307],[-71.215908852,41.559249279],[-71.215996394,41.559269506],[-71.216066993,41.559306821],[-71.216087217,41.559361118],[-71.216094869,41.559421581],[-71.216096157,41.55948905],[-71.216107827,41.55956368],[-71.216127847,41.559636821],[-71.216155195,41.559712313],[-71.216202473,41.559776968],[-71.216256118,41.559833817],[-71.216318335,41.559873467],[-71.21639128,41.559889655],[-71.216405266,41.559943113],[-71.21640874,41.560005122],[-71.216420469,41.560073462],[-71.216444881,41.560130903],[-71.216468194,41.560189141],[-71.216490543,41.560245021],[-71.216516992,41.560303244],[-71.216533079,41.56035673],[-71.216552071,41.560428267],[-71.216572323,41.560483319],[-71.216594679,41.560537621],[-71.216623223,41.56059745],[-71.216664297,41.560660488],[-71.216682397,41.560720246],[-71.216681683,41.560779111],[-71.216683118,41.560834047],[-71.216714754,41.560897017],[-71.216776024,41.56093042],[-71.216825701,41.560969169],[-71.216828004,41.561041375],[-71.216843861,41.561112905],[-71.216852538,41.561175726],[-71.21686846,41.561239412],[-71.21688027,41.561303064],[-71.216914303,41.561340151],[-71.217002042,41.561343889],[-71.217093784,41.561358591],[-71.217163632,41.561373217],[-71.217252169,41.561396556],[-71.21732811,41.561424529],[-71.217391448,41.561458692],[-71.217429151,41.561450277],[-71.217420605,41.561378034],[-71.217370253,41.561305505],[-71.217321669,41.561260446],[-71.217273123,41.561213833],[-71.217232967,41.561163375],[-71.217205369,41.561109815],[-71.217176812,41.561053119],[-71.217147236,41.560992488],[-71.217112419,41.560932643],[-71.217071235,41.560880582],[-71.217012398,41.560819741],[-71.216955482,41.560772306],[-71.216917625,41.560704565],[-71.21693811,41.560650528],[-71.217010225,41.56064787],[-71.217106353,41.560647763],[-71.217202537,41.5606421],[-71.217280222,41.560612011],[-71.217334094,41.560561373],[-71.217362951,41.560507403],[-71.21729644,41.560474787],[-71.217233164,41.560440624],[-71.217216194,41.560373048],[-71.217182959,41.56035554],[-71.217101537,41.560348753],[-71.217007962,41.560308112],[-71.216955197,41.560265376],[-71.21690166,41.560197527],[-71.216898447,41.560117475],[-71.216910615,41.560057129],[-71.216932196,41.560003118],[-71.216997533,41.559955687],[-71.217103897,41.559968184],[-71.217182969,41.55999692],[-71.217260864,41.560037477],[-71.217345081,41.56007336],[-71.217435636,41.560101415],[-71.21752001,41.560122388],[-71.217600253,41.560140996],[-71.217683545,41.560165854],[-71.21776572,41.56019542],[-71.21784372,41.560225754],[-71.217910299,41.560249747],[-71.217965212,41.560288555],[-71.217921686,41.560347909],[-71.217844287,41.560354466],[-71.217770994,41.560368877],[-71.217756735,41.560426862],[-71.217713606,41.560450907],[-71.217637526,41.560433934],[-71.217586608,41.560498713],[-71.21754636,41.560546297],[-71.217480917,41.560603951],[-71.217421961,41.560640444],[-71.217360869,41.560684752],[-71.217345405,41.560753712],[-71.217404133,41.560825507],[-71.217480858,41.560876215],[-71.217560647,41.560929354],[-71.217634185,41.560984765],[-71.217700378,41.56104169],[-71.217771808,41.561098651],[-71.217840013,41.561161893],[-71.217896689,41.561229749],[-71.217944985,41.56129914],[-71.217975458,41.561370751],[-71.217977732,41.561442956],[-71.217976849,41.561519865],[-71.217975848,41.56160304],[-71.217974922,41.561683081],[-71.217971002,41.561751269],[-71.217963029,41.561806183],[-71.217926779,41.561865555],[-71.217878401,41.561891942],[-71.217810779,41.561869501],[-71.217765324,41.561826029],[-71.217726158,41.561778707],[-71.217660844,41.561736672],[-71.217596476,41.561700929],[-71.217561078,41.561690504],[-71.217556184,41.561751669],[-71.217568043,41.561811388],[-71.217562418,41.561844329],[-71.217491337,41.561846991],[-71.217413793,41.561865302],[-71.217340539,41.56187738],[-71.217310446,41.56185837],[-71.217310087,41.561801057],[-71.217299209,41.561746829],[-71.217229449,41.561725961],[-71.217141827,41.56171598],[-71.217065516,41.561717004],[-71.216991553,41.561703192],[-71.216935709,41.561654182],[-71.216901785,41.561606072],[-71.216877375,41.561547831],[-71.216864559,41.561484176],[-71.216841314,41.56141734],[-71.216813907,41.561348114],[-71.216788543,41.561285137],[-71.21677474,41.561217592],[-71.216773557,41.561139923],[-71.216756638,41.561067591],[-71.216729089,41.56101012],[-71.216693091,41.560962805],[-71.216615871,41.560956028],[-71.216578957,41.560895333],[-71.216534287,41.56087464],[-71.21648816,41.560887699],[-71.216464356,41.560955769],[-71.216474021,41.561022527],[-71.216499269,41.561098059],[-71.216501732,41.561154553],[-71.216500997,41.561218129],[-71.216504397,41.561283271],[-71.216514055,41.561351606],[-71.216521497,41.561425402],[-71.216531064,41.561500804],[-71.216557211,41.561586516],[-71.216591684,41.561676204],[-71.216617865,41.561761138],[-71.216649355,41.561836686],[-71.216691442,41.561898149],[-71.216744095,41.561952663],[-71.216804056,41.562007195],[-71.216868196,41.562060204],[-71.216935601,41.562104577],[-71.217005076,41.562149001],[-71.217077655,41.56219421],[-71.217154472,41.562237897],[-71.217235458,41.562282349],[-71.217318521,41.562325274],[-71.217399517,41.562367416],[-71.217478548,41.562399331],[-71.217564931,41.56242813],[-71.217658605,41.562460927],[-71.217754325,41.562492173],[-71.217845953,41.562519476],[-71.217928134,41.56254831],[-71.218000886,41.562581718],[-71.218070448,41.56262063],[-71.218133645,41.56266657],[-71.218183174,41.562718674],[-71.218219167,41.562767589],[-71.2182613,41.562825919],[-71.218327638,41.562871089],[-71.218389957,41.562902093],[-71.218481721,41.562919195],[-71.21856115,41.562915799],[-71.218659529,41.562903096],[-71.218731704,41.562894147],[-71.218803903,41.562886777],[-71.218877137,41.562879432],[-71.218949299,41.562873662],[-71.219046514,41.562869577],[-71.219145748,41.562870231],[-71.219228293,41.562871576],[-71.219294699,41.562908101],[-71.219384948,41.562874177],[-71.219479508,41.562829309],[-71.2195551,41.562797613],[-71.219626562,41.562763574],[-71.219688669,41.562723955],[-71.219745575,41.562682745],[-71.219803521,41.562640761],[-71.21986154,41.56259562],[-71.21991957,41.562548169],[-71.219973395,41.562501418],[-71.220025159,41.562452305],[-71.220069658,41.562400042],[-71.220103765,41.562342997],[-71.220134746,41.562283565],[-71.220160458,41.562231142],[-71.220183143,41.562167756],[-71.220215108,41.562113038],[-71.220264855,41.562058409],[-71.220295777,41.56200529],[-71.220333017,41.561949006],[-71.220385913,41.561891298],[-71.22046595,41.561838457],[-71.22051868,41.561798038],[-71.220568295,41.56175283],[-71.220613816,41.56170368],[-71.220651051,41.56164822],[-71.220685211,41.561585663],[-71.220722507,41.561523159],[-71.220761866,41.561462192],[-71.220795972,41.561405169],[-71.220822722,41.561351994],[-71.220865302,41.561285569],[-71.220929481,41.561245154],[-71.22099373,41.561202452],[-71.221027701,41.56115556],[-71.221028562,41.561082585],[-71.221029279,41.561022165],[-71.221012173,41.560964012],[-71.220959355,41.560925966],[-71.220898437,41.560866745],[-71.22086878,41.560810048],[-71.220845473,41.560749432],[-71.220822122,41.560692018],[-71.220806041,41.5606362],[-71.220806775,41.56057187],[-71.220810679,41.560506746],[-71.220822952,41.560442489],[-71.220842489,41.560381406],[-71.220857787,41.560321867],[-71.220859526,41.560264606],[-71.220860155,41.560210452],[-71.220825386,41.560145875],[-71.22076112,41.560100734],[-71.220697967,41.560051663],[-71.220630788,41.559990003],[-71.220590708,41.55993559],[-71.220564323,41.559868723],[-71.220543141,41.559802693],[-71.220528181,41.559741366],[-71.220526787,41.559683273],[-71.22052746,41.559626009],[-71.22052814,41.559567144],[-71.220528812,41.55950988],[-71.220528643,41.559436125],[-71.220504214,41.559381819],[-71.220435632,41.559349177],[-71.220331217,41.559343754],[-71.220252881,41.559341711],[-71.22017773,41.559335697],[-71.220100511,41.559328899],[-71.220027416,41.559326091],[-71.219948008,41.559325555],[-71.219874961,41.559318791],[-71.219798835,41.559305752],[-71.219709065,41.559300457],[-71.219615076,41.559299038],[-71.21951689,41.559296786],[-71.219441748,41.559288438],[-71.219354201,41.559269037],[-71.219266688,41.559248835],[-71.219178059,41.559233365],[-71.219084135,41.559224079],[-71.218981861,41.559216374],[-71.218877453,41.559209372],[-71.218775149,41.55920162],[-71.21867296,41.559188403],[-71.218571783,41.559173588],[-71.218469615,41.559155659],[-71.218362169,41.559140028],[-71.218251621,41.559123634],[-71.218144253,41.559104069],[-71.218041023,41.559085337],[-71.217936754,41.55906738],[-71.21782624,41.55905014],[-71.217706332,41.55902972],[-71.21759274,41.559006228],[-71.217487538,41.558978846],[-71.217381267,41.558952239],[-71.217270818,41.558927177],[-71.21715723,41.558902885],[-71.217047816,41.558877825],[-71.216942635,41.558852798],[-71.216838425,41.558828574],[-71.216734252,41.558802772],[-71.216624886,41.558773778],[-71.216511383,41.558743996],[-71.216398892,41.558712662],[-71.216290722,41.558675049],[-71.216174209,41.558630325],[-71.216054669,41.558581661],[-71.215940302,41.558533809],[-71.215834271,41.558487602],[-71.215736575,41.558443016],[-71.215644181,41.558397689],[-71.215551784,41.558346049],[-71.2154584,41.558290496],[-71.21536712,41.558234171],[-71.215281026,41.558182615],[-71.215198065,41.558131845],[-71.215102611,41.558076264],[-71.214998828,41.558017506],[-71.214895056,41.557956392],[-71.214794458,41.557893709],[-71.214698098,41.557829503],[-71.214603779,41.557765325],[-71.214515695,41.557702718],[-71.214435974,41.557642556],[-71.214366699,41.557581665],[-71.214299543,41.557516868],[-71.214233544,41.55744503],[-71.214168731,41.55735984],[-71.21410608,41.55726761],[-71.214038227,41.557174568],[-71.213954628,41.557089285],[-71.213869903,41.557010997],[-71.213795625,41.556932048],[-71.213740139,41.55685166],[-71.213705563,41.556772925],[-71.213679377,41.556690369],[-71.213655296,41.556607041],[-71.213636509,41.556517482],[-71.213618751,41.556429481],[-71.213609233,41.556350945],[-71.213609981,41.556284991],[-71.213610752,41.556220683],[-71.213590695,41.556149897],[-71.213571598,41.556089359],[-71.213551607,41.556010752],[-71.213532759,41.555928214],[-71.213517031,41.555842573],[-71.213500352,41.555751442],[-71.213486888,41.555656407],[-71.213480704,41.555560613],[-71.213479764,41.555463346],[-71.213480832,41.555373105],[-71.21348172,41.555296196],[-71.21348245,41.555234221],[-71.213483222,41.555169868],[-71.213484055,41.55509847],[-71.213498428,41.555035775],[-71.213554406,41.554983565],[-71.213625736,41.554957374],[-71.213668118,41.554909019],[-71.213679342,41.554842404],[-71.21369371,41.55477422],[-71.213751983,41.55470555],[-71.21379639,41.554660333],[-71.213863979,41.554598798],[-71.213935629,41.554548251],[-71.21400416,41.554493786],[-71.214089347,41.55444572],[-71.214151354,41.554413948],[-71.214214433,41.554380624],[-71.214286076,41.5543317],[-71.214549726,41.554161953],[-71.214618845,41.554125761],[-71.214685915,41.554091875],[-71.214748594,41.554073277],[-71.214830115,41.554090197],[-71.214901535,41.554098584],[-71.214979146,41.554104723],[-71.215017161,41.554093588],[-71.215008863,41.554042065],[-71.214944837,41.55402066],[-71.21493867,41.553962236],[-71.214946158,41.553886258],[-71.214967959,41.553809676],[-71.214990802,41.553731609],[-71.215005086,41.553674882],[-71.215021495,41.553612832],[-71.215038858,41.553555426],[-71.215052098,41.553500983],[-71.215064268,41.553447361],[-71.215078508,41.553393744],[-71.215096876,41.553336318],[-71.215120354,41.553279704],[-71.215143793,41.553225378],[-71.215169294,41.553172658],[-71.215194731,41.553120693],[-71.21521916,41.553069479],[-71.215245602,41.553017493],[-71.215275112,41.552967093],[-71.215307693,41.5529175],[-71.215341279,41.55286791],[-71.215373833,41.55281754],[-71.215406414,41.552767948],[-71.215442046,41.552716831],[-71.215483862,41.55266502],[-71.21552768,41.552614746],[-71.215568417,41.55256602],[-71.215607117,41.552516466],[-71.215643821,41.552463842],[-71.215680532,41.55240964],[-71.215715224,41.552357766],[-71.215748809,41.552308153],[-71.215779323,41.552257823],[-71.215802719,41.552205807],[-71.215825152,41.552151478],[-71.215846552,41.552096415],[-71.215870429,41.552018305],[-71.215886004,41.551944703],[-71.215889381,41.551868692],[-71.215884241,41.551811825],[-71.215867228,41.551734072],[-71.215829679,41.551659973],[-71.215786944,41.551588148],[-71.21575655,41.551514089],[-71.215735272,41.551443986],[-71.215709755,41.551382289],[-71.215671872,41.551328932],[-71.215658466,41.551275795],[-71.215666711,41.551214433],[-71.215652506,41.551149014],[-71.215638297,41.551084371],[-71.215632285,41.551018263],[-71.215623313,41.55094675],[-71.215628727,41.550871499],[-71.215629148,41.550789329],[-71.215625044,41.550732442],[-71.215625313,41.550657201],[-71.215626694,41.550578075],[-71.215627877,41.550509744],[-71.215642157,41.550453817],[-71.215665549,41.5504026],[-71.215702178,41.550353041],[-71.215740954,41.550299667],[-71.215777701,41.550243956],[-71.215811366,41.550189746],[-71.215803264,41.55012823],[-71.215757368,41.55006248],[-71.21568681,41.550004194],[-71.215624482,41.549943686],[-71.215568307,41.549882439],[-71.215523368,41.549820534],[-71.21549996,41.549757333],[-71.215492862,41.549695819],[-71.215456117,41.549633247],[-71.215421367,41.549573746],[-71.215412786,41.549551998],[-71.215398845,41.549516699],[-71.215377284,41.549462719],[-71.215345568,41.549405603],[-71.21536181,41.5493535],[-71.215399224,41.549319311],[-71.215403555,41.549247968],[-71.215416925,41.549184332],[-71.215447593,41.54912625],[-71.215483416,41.54906594],[-71.215523274,41.549008727],[-71.215582443,41.548956295],[-71.215645633,41.548910072],[-71.215708709,41.548869245],[-71.215778776,41.548837675],[-71.215841642,41.548809861],[-71.215885373,41.548764984],[-71.215937727,41.548753198],[-71.216017584,41.548745528],[-71.216069503,41.548700763],[-71.216062368,41.548640781],[-71.215998439,41.548612471],[-71.21597451,41.548577672],[-71.216021481,41.548522832],[-71.216034684,41.548469213],[-71.216056188,41.548411085],[-71.216064278,41.548357384],[-71.216059263,41.54829281],[-71.216061281,41.548235252],[-71.216097106,41.548174141],[-71.216125699,41.548116832],[-71.216155324,41.548060279],[-71.216176801,41.548001328],[-71.216191083,41.547944669],[-71.216207493,41.547881818],[-71.216213742,41.547817386],[-71.216212874,41.547751314],[-71.216205779,41.547689045],[-71.216239365,41.547638677],[-71.216257473,41.547598173],[-71.216208335,41.547543119],[-71.216203357,41.547477036],[-71.216233909,41.547424328],[-71.216257347,41.547369247],[-71.216226545,41.54731904],[-71.216163939,41.547273855],[-71.216143488,41.547216836],[-71.216116806,41.547164353],[-71.216069583,41.54711701],[-71.215993475,41.547082472],[-71.215918108,41.547066369],[-71.215829597,41.547041725],[-71.215758677,41.547004158],[-71.215697181,41.546955911],[-71.215604956,41.546910469],[-71.215530722,41.546885929],[-71.215442134,41.546865081],[-71.215357655,41.546844267],[-71.215275227,41.546821147],[-71.215189872,41.546791891],[-71.215113483,41.546765996],[-71.215094333,41.546759477],[-71.214998784,41.546729349],[-71.214913321,41.546703912],[-71.214819697,41.546679209],[-71.214722034,41.546652118],[-71.21462338,41.546621982],[-71.214541111,41.546590424],[-71.214458801,41.546561198],[-71.214369293,41.546534973],[-71.214273704,41.546507154],[-71.214184278,41.546476309],[-71.214110198,41.546444839],[-71.214043241,41.546413456],[-71.213983505,41.546380603],[-71.213927013,41.546337033],[-71.21389526,41.546282181],[-71.213905099,41.546246209],[-71.213955899,41.546206747],[-71.213975341,41.546147037],[-71.213965292,41.546078609],[-71.213958115,41.546021691],[-71.213943954,41.545953961],[-71.213871082,41.54591099],[-71.213784653,41.545884041],[-71.213688156,41.54584849],[-71.213619183,41.545818633],[-71.213548141,41.545788771],[-71.213475023,41.54576039],[-71.213396753,41.545733506],[-71.213319477,41.545708912],[-71.213236083,41.545684279],[-71.21314858,41.545659613],[-71.213047831,41.545635577],[-71.212952136,41.545611622],[-71.212866628,41.545590025],[-71.212779114,41.545567623],[-71.21268138,41.545543617],[-71.212574415,41.545521075],[-71.212480715,41.545500166],[-71.212383897,41.545482315],[-71.212282997,41.545465207],[-71.212208999,41.545452586],[-71.211727441,41.545555492],[-71.20899044,41.546179492],[-71.208988463,41.546179821],[-71.208988667,41.546180608],[-71.209001954,41.546238365],[-71.209009117,41.546297547],[-71.208972088,41.546367847],[-71.20890581,41.546416346],[-71.208898839,41.54646392],[-71.208937786,41.54651575],[-71.208931775,41.546566391],[-71.208898187,41.546616002],[-71.208917427,41.546683768],[-71.208919557,41.546738318],[-71.208922426,41.546750309],[-71.208932886,41.546793742],[-71.208958472,41.546851622],[-71.208979793,41.546917083],[-71.209000143,41.546981811],[-71.209009226,41.547047172],[-71.208931299,41.547059462],[-71.208836311,41.547053939],[-71.208760112,41.547027034],[-71.208709816,41.546980458],[-71.208646485,41.546975998],[-71.208573335,41.547009065],[-71.208497684,41.547009079],[-71.208416252,41.546988336],[-71.208322348,41.546978904],[-71.208224371,41.546967953],[-71.208136094,41.546932532],[-71.208066277,41.546948707],[-71.208007648,41.546968134],[-71.207951112,41.54692838],[-71.207889939,41.546917819],[-71.207845322,41.546955738],[-71.207869123,41.546997445],[-71.207929647,41.547044161],[-71.207988185,41.54708543],[-71.208075399,41.547127022],[-71.208154595,41.547157732],[-71.208234823,41.547189267],[-71.208309902,41.547221521],[-71.208382983,41.547251391],[-71.208456138,41.547278243],[-71.208542658,41.54729829],[-71.208637568,41.547307678],[-71.208719364,41.547308526],[-71.208794054,41.547305445],[-71.208872902,41.547298532],[-71.208973215,41.547291056],[-71.209072523,41.5472836],[-71.209158483,41.547279083],[-71.209241407,41.547272981],[-71.209333527,41.547266239],[-71.20943487,41.547259565],[-71.209515714,41.547255744],[-71.209613894,41.547255192],[-71.209704267,41.547230721],[-71.20975619,41.547185913],[-71.209810485,41.547121168],[-71.209865822,41.547054917],[-71.209904557,41.54700461],[-71.209945624,41.546936653],[-71.209988692,41.546870256],[-71.210032596,41.546814634],[-71.210076492,41.54676052],[-71.210082157,41.546753262],[-71.210121471,41.54670259],[-71.210168768,41.546630098],[-71.210216998,41.546559941],[-71.210261016,41.546498921],[-71.210302921,41.54644096],[-71.210340854,41.546379124],[-71.210373816,41.546305727],[-71.210426311,41.546227896],[-71.210492336,41.546194741],[-71.210512593,41.546205701],[-71.210488953,41.546270751],[-71.210455085,41.546335708],[-71.210439804,41.546390099],[-71.210422487,41.546443685],[-71.210399084,41.546496455],[-71.210370531,41.546550699],[-71.210335699,41.546613366],[-71.21029767,41.54668284],[-71.210264834,41.546748554],[-71.210261827,41.546753715],[-71.210229004,41.546809663],[-71.210187025,41.546870711],[-71.21014812,41.546931743],[-71.210114411,41.546988261],[-71.21008078,41.547040914],[-71.210048117,41.547095124],[-71.210004888,41.54716996],[-71.209993801,41.547218987],[-71.210044213,41.547260234],[-71.210112978,41.547302374],[-71.21018069,41.547348375],[-71.21025461,41.547388286],[-71.210289538,41.547379386],[-71.210332484,41.547319896],[-71.210392725,41.547266738],[-71.210459545,41.547246667],[-71.210542305,41.547249803],[-71.21062678,41.547271353],[-71.210653861,41.547301563],[-71.21058683,41.547334739],[-71.210602614,41.547365584],[-71.210674491,41.547406244],[-71.210654496,41.547439058],[-71.210623872,41.547493319],[-71.210580169,41.547538171],[-71.210503235,41.547552774],[-71.210423145,41.547571966],[-71.210339098,41.547584196],[-71.210259463,41.547576494],[-71.210205284,41.547519892],[-71.210189924,41.547462153],[-71.210158085,41.547413428],[-71.210096366,41.547375149],[-71.210023406,41.547338328],[-71.209950406,41.547303816],[-71.209889022,41.547306291],[-71.209814847,41.547337047],[-71.20973359,41.547365429],[-71.209650211,41.547398425],[-71.209568007,41.54742063],[-71.209479046,41.547422052],[-71.209384103,41.547413396],[-71.209303205,41.547422591],[-71.209225274,41.547435658],[-71.209149415,41.547447954],[-71.209072492,41.547460269],[-71.20898029,41.54747163],[-71.208880025,41.547475242],[-71.208793144,41.547474381],[-71.208711429,41.547468937],[-71.208625672,41.54746195],[-71.20853176,41.54745412],[-71.208445046,41.547443265],[-71.208367608,41.547427906],[-71.208291278,41.547409508],[-71.208209964,41.54738259],[-71.208124742,41.547344845],[-71.20804368,41.547302582],[-71.207966731,41.547259574],[-71.207894893,41.54721738],[-71.207828227,41.54716907],[-71.207758623,41.547117687],[-71.207687871,41.547070922],[-71.207624185,41.547030349],[-71.207542286,41.546978066],[-71.207459978,41.546948835],[-71.207383208,41.546954243],[-71.207298831,41.546985657],[-71.207222415,41.547027131],[-71.207170314,41.547084219],[-71.207193728,41.547130521],[-71.207229319,41.547217677],[-71.207315545,41.547255426],[-71.207387658,41.547283785],[-71.207449946,41.547344296],[-71.207494782,41.547352415],[-71.207516563,41.54733573],[-71.207514679,41.547267367],[-71.207478623,41.547168684],[-71.207572758,41.547106672],[-71.207611319,41.54712239],[-71.207641109,41.547172619],[-71.207659592,41.547225815],[-71.207697582,41.547273778],[-71.20776022,41.547317413],[-71.207844485,41.547351268],[-71.207930998,41.547372871],[-71.208014219,41.547409034],[-71.208013359,41.547458179],[-71.207950086,41.54750824],[-71.207901085,41.54750544],[-71.207883409,41.547462286],[-71.207847459,41.547414282],[-71.207775016,41.547405133],[-71.20769724,41.547410516],[-71.207624633,41.547410537],[-71.207559759,41.547437564],[-71.207527172,41.547487932],[-71.207567602,41.547514449],[-71.207651071,41.547535999],[-71.207722238,41.547558203],[-71.207785125,41.547587248],[-71.207846694,41.547631634],[-71.207899986,41.547682083],[-71.207954312,41.54773258],[-71.207999331,41.547788291],[-71.20798404,41.547844214],[-71.207942129,41.547902975],[-71.207916372,41.547971084],[-71.20790416,41.548026238],[-71.207915234,41.54809547],[-71.207987124,41.548133044],[-71.208062647,41.548141492],[-71.20814184,41.548172979],[-71.208224075,41.548205297],[-71.208315696,41.54822849],[-71.208413556,41.548245594],[-71.208484887,41.548258559],[-71.208562286,41.548276227],[-71.208635494,41.548298459],[-71.208702624,41.54831832],[-71.208790174,41.548339925],[-71.208890243,41.548346308],[-71.208996829,41.548332009],[-71.209081366,41.548292155],[-71.209166735,41.548263784],[-71.209252408,41.548276167],[-71.209316259,41.548307523],[-71.209384343,41.548332006],[-71.209488444,41.54834224],[-71.209547993,41.548328257],[-71.209540415,41.548293636],[-71.209483053,41.548240845],[-71.20943263,41.54820193],[-71.209363386,41.548185083],[-71.209279827,41.548169664],[-71.209248827,41.548130958],[-71.209215674,41.548096844],[-71.209149216,41.548096951],[-71.209128812,41.548152816],[-71.20908369,41.548160843],[-71.208987622,41.548158336],[-71.208903812,41.548158261],[-71.208837468,41.54820756],[-71.208788055,41.548228567],[-71.208733272,41.548204941],[-71.208718626,41.548164882],[-71.208780704,41.548123256],[-71.208836704,41.548079259],[-71.208784004,41.54805262],[-71.208699299,41.548041816],[-71.208600105,41.548043898],[-71.20851095,41.548054535],[-71.208496046,41.54803133],[-71.208467381,41.54797422],[-71.208419117,41.547929228],[-71.208377218,41.547870392],[-71.208350831,41.54780103],[-71.20835718,41.547729646],[-71.208405154,41.54767639],[-71.208494475,41.547655736],[-71.208568209,41.547648811],[-71.208660123,41.547654304],[-71.208728917,41.54769649],[-71.208782013,41.547756932],[-71.208841499,41.547804354],[-71.208876352,41.547798542],[-71.208896749,41.547744209],[-71.208910292,41.547670603],[-71.208936986,41.547664747],[-71.208994589,41.547704503],[-71.209057646,41.547722799],[-71.209082047,41.547671564],[-71.209101368,41.547619515],[-71.209150692,41.54760466],[-71.209223051,41.547619205],[-71.209288982,41.547648257],[-71.209332077,41.547698633],[-71.209349557,41.547751781],[-71.209322967,41.54780914],[-71.209282055,41.54786939],[-71.209267645,41.547933],[-71.209289533,41.547967017],[-71.209365511,41.547948593],[-71.20943973,41.547914773],[-71.209470288,41.547862044],[-71.209464075,41.547808216],[-71.209496502,41.547766309],[-71.209559818,41.547713182],[-71.209605833,41.547655232],[-71.209677025,41.547617562],[-71.20973786,41.547588214],[-71.209789742,41.547545739],[-71.209842677,41.547499378],[-71.209906746,41.547461622],[-71.209992995,41.547440204],[-71.210015125,41.54746114],[-71.210020263,41.547517253],[-71.2100192,41.547577946],[-71.210013817,41.547651619],[-71.210036833,41.547678755],[-71.210120469,41.547690309],[-71.210208348,41.547692726],[-71.210311365,41.547706799],[-71.210397988,41.547724558],[-71.210415801,41.547757741],[-71.210403431,41.54782138],[-71.210388099,41.547880368],[-71.210351278,41.547938387],[-71.210371829,41.547992343],[-71.210341375,41.54803581],[-71.210289367,41.548085993],[-71.210262849,41.548141019],[-71.210233334,41.548192196],[-71.210159904,41.548239877],[-71.210091804,41.548273736],[-71.210021693,41.548307589],[-71.2099527,41.548336871],[-71.209888834,41.548363125],[-71.209809659,41.54838847],[-71.209717829,41.548377559],[-71.209639604,41.548408281],[-71.209561549,41.548428255],[-71.209482785,41.548429748],[-71.209380632,41.548426449],[-71.209307817,41.548438797],[-71.209324462,41.548481194],[-71.209402459,41.548521916],[-71.20946739,41.54855021],[-71.209539353,41.548585451],[-71.209613304,41.548625363],[-71.209681937,41.548676741],[-71.209628585,41.548686967],[-71.209530439,41.54868601],[-71.209440686,41.548673571],[-71.20937376,41.548642207],[-71.209299805,41.54860305],[-71.209242051,41.548630897],[-71.209196191,41.54868114],[-71.209121417,41.548688864],[-71.209034149,41.548651869],[-71.208973409,41.548619011],[-71.208887353,41.548569761],[-71.208809241,41.548534458],[-71.208737442,41.548489977],[-71.208660573,41.548442351],[-71.208564542,41.548438334],[-71.208479169,41.548467413],[-71.208395921,41.54849117],[-71.208320392,41.5484843],[-71.208226686,41.548464166],[-71.208149242,41.548449539],[-71.208059524,41.548436367],[-71.20797078,41.54842322],[-71.207871163,41.548390721],[-71.207801526,41.548339338],[-71.207722584,41.548292483],[-71.207649333,41.548273315],[-71.207567491,41.548275577],[-71.207501547,41.548303333],[-71.207428272,41.548343306],[-71.207368403,41.548374188],[-71.207281433,41.548379478],[-71.207203778,41.548377954],[-71.207149996,41.54835513],[-71.207076881,41.548325991],[-71.207028711,41.548274046],[-71.206992801,41.548223755],[-71.206954904,41.548168863],[-71.206925202,41.548112504],[-71.206901833,41.548049301],[-71.206882527,41.547983044],[-71.206867201,41.547925305],[-71.206851882,41.54786601],[-71.206826293,41.547808908],[-71.206768007,41.547752248],[-71.206701338,41.547704738],[-71.206630529,41.547664101],[-71.20655358,41.547621092],[-71.206472645,41.547571121],[-71.206411918,41.547535975],[-71.206353183,41.547504654],[-71.206304972,41.547455041],[-71.20630117,41.547380475],[-71.206265098,41.547339446],[-71.206176338,41.547330118],[-71.206098569,41.547333921],[-71.20604568,41.547376415],[-71.20599055,41.547429629],[-71.205902226,41.54745177],[-71.205823456,41.547454839],[-71.205761606,41.547425796],[-71.205679381,41.547391967],[-71.205609276,41.547424309],[-71.205540694,41.547429759],[-71.205485249,41.547384655],[-71.205476125,41.547322357],[-71.205429706,41.547287339],[-71.205359674,41.547256674],[-71.20530205,41.547222314],[-71.205232763,41.547208574],[-71.205162495,41.547250108],[-71.205107317,41.547307141],[-71.20507664,41.54736522],[-71.205014847,41.547390745],[-71.204933296,41.547376105],[-71.204851942,41.547351494],[-71.204766142,41.547347546],[-71.204663874,41.547349616],[-71.204632355,41.547338558],[-71.204656753,41.547288856],[-71.204731026,41.547250419],[-71.204776718,41.547210949],[-71.204745639,41.547176816],[-71.204716196,41.547157888],[-71.204266439,41.547258492],[-71.204265439,41.547258492],[-71.201527252,41.547868311],[-71.201466164,41.547908346],[-71.201407242,41.547944601],[-71.201346277,41.547981629],[-71.201285359,41.548014815],[-71.201222522,41.548041844],[-71.201148249,41.5480795],[-71.201145382,41.548127085],[-71.201185376,41.548175101],[-71.201260771,41.548191214],[-71.201322534,41.548225634],[-71.20134393,41.548286523],[-71.201343935,41.548344909],[-71.201359174,41.548407292],[-71.201400022,41.548468346],[-71.201448035,41.5485272],[-71.201499197,41.54858302],[-71.201542085,41.548644125],[-71.201562562,41.548699615],[-71.201592218,41.548758284],[-71.201645297,41.548821039],[-71.201691428,41.548872204],[-71.201724207,41.548927039],[-71.201732334,41.548987025],[-71.201731065,41.549057689],[-71.201722718,41.549125156],[-71.20171337,41.549191888],[-71.201725438,41.549261901],[-71.201745584,41.5493366],[-71.201743269,41.549409572],[-71.201712719,41.549459165],[-71.201661817,41.549505527],[-71.201651352,41.549517118],[-71.201611725,41.549561085],[-71.201571929,41.549615252],[-71.201539209,41.549673256],[-71.201493141,41.549734245],[-71.201428942,41.549778925],[-71.201373553,41.549847505],[-71.201350145,41.549899496],[-71.201319584,41.549951422],[-71.201282918,41.5500002],[-71.201226777,41.550053432],[-71.201151632,41.550081824],[-71.201080271,41.550127972],[-71.20102592,41.550195777],[-71.200979694,41.550264449],[-71.200926467,41.550326127],[-71.200875454,41.550376331],[-71.200817431,41.550421828],[-71.200738085,41.550456361],[-71.20073169,41.550456824],[-71.200662345,41.550461744],[-71.200588256,41.550485564],[-71.200537471,41.550525797],[-71.200530168,41.55059098],[-71.200534959,41.550667834],[-71.200534642,41.550743121],[-71.200492774,41.550797236],[-71.200448781,41.550856674],[-71.200406866,41.550914631],[-71.20036412,41.55096106],[-71.200360797,41.55096208],[-71.200310675,41.550977432],[-71.200220599,41.550981909],[-71.200192909,41.551044614],[-71.200153156,41.551095693],[-71.200110246,41.551151314],[-71.200061343,41.55119919],[-71.19999746,41.551227748],[-71.199934499,41.551260905],[-71.199850154,41.551290027],[-71.199792951,41.551315812],[-71.199723131,41.551344217],[-71.199639888,41.55135891],[-71.199557528,41.551373583],[-71.199485796,41.551394093],[-71.199406127,41.55141273],[-71.199336289,41.551438481],[-71.19926561,41.551468233],[-71.199199416,41.55150257],[-71.199150025,41.551543995],[-71.199093677,41.551588787],[-71.199031178,41.551633677],[-71.198972139,41.551674482],[-71.198897218,41.551712867],[-71.198825017,41.551755833],[-71.198768762,41.551806571],[-71.198722044,41.551849329],[-71.198678881,41.551893309],[-71.19862615,41.551945954],[-71.19858296,41.551989316],[-71.198523228,41.552041394],[-71.198479182,41.552085417],[-71.198413773,41.552114473],[-71.198361568,41.55214537],[-71.198380172,41.552203943],[-71.1983583,41.552258956],[-71.198316942,41.552307583],[-71.1982801,41.552360773],[-71.198236983,41.552408023],[-71.198172623,41.552446961],[-71.198114486,41.552489826],[-71.198073962,41.552535757],[-71.198028296,41.552587711],[-71.197987851,41.552636317],[-71.197954531,41.55269146],[-71.197898084,41.552730968],[-71.197886006,41.552794491],[-71.197857856,41.552844228],[-71.197807631,41.552887685],[-71.197742169,41.552914705],[-71.197669822,41.552949117],[-71.197623248,41.552999765],[-71.197576698,41.55305174],[-71.197522111,41.553097153],[-71.19746292,41.55313073],[-71.19738235,41.55314607],[-71.19730124,41.553133644],[-71.197228932,41.553120509],[-71.19714902,41.553125261],[-71.197118994,41.553165822],[-71.197102385,41.553221443],[-71.197098199,41.553278479],[-71.197110033,41.553298488],[-71.197130695,41.553333419],[-71.19718694,41.553383034],[-71.197237065,41.553432748],[-71.197291472,41.553478402],[-71.197347645,41.553524083],[-71.197395088,41.55357443],[-71.197445208,41.553625447],[-71.19748837,41.553679854],[-71.197517584,41.553741587],[-71.19753616,41.553799519],[-71.197550355,41.553856822],[-71.197560999,41.553911532],[-71.197599741,41.553967276],[-71.197682463,41.553973714],[-71.197763878,41.55395378],[-71.197845978,41.553923876],[-71.19792903,41.55389864],[-71.198004172,41.553872126],[-71.198085632,41.553855508],[-71.198173479,41.553853314],[-71.198260327,41.553843205],[-71.198335731,41.553832562],[-71.198418977,41.55381787],[-71.198504018,41.553803822],[-71.198591673,41.553790421],[-71.198681067,41.553776339],[-71.198760833,41.55376365],[-71.198833521,41.55374774],[-71.19891691,41.553741669],[-71.198943517,41.553755278],[-71.198954276,41.55381854],[-71.198942896,41.55386951],[-71.198865078,41.553895332],[-71.19878269,41.553908724],[-71.198699407,41.553918088],[-71.198625405,41.553908929],[-71.198541153,41.55391701],[-71.198457166,41.553940323],[-71.198388915,41.553958142],[-71.198298662,41.553973594],[-71.198225042,41.553986848],[-71.198141134,41.554012768],[-71.198069521,41.554039864],[-71.198011358,41.55408138],[-71.197938003,41.554109843],[-71.197848727,41.554131197],[-71.19777707,41.554154336],[-71.197740787,41.554191678],[-71.19777441,41.55425475],[-71.197817479,41.554303187],[-71.197864754,41.554344294],[-71.197912987,41.554388742],[-71.197955956,41.554432513],[-71.1979963,41.554477672],[-71.198033212,41.554527488],[-71.19807444,41.55457265],[-71.198132383,41.554617627],[-71.198185028,41.554662681],[-71.198234358,41.554720282],[-71.198262784,41.554788005],[-71.198279747,41.554852542],[-71.198294158,41.554922424],[-71.19831725,41.554984919],[-71.198341074,41.555040784],[-71.198370122,41.55509266],[-71.198401783,41.555145823],[-71.198434361,41.555198326],[-71.198467175,41.555265375],[-71.198481347,41.555321328],[-71.198485168,41.555389948],[-71.198481796,41.55544741],[-71.198483879,41.555516711],[-71.198501576,41.555574],[-71.198527066,41.555625227],[-71.198554397,41.555679774],[-71.198580873,41.555734982],[-71.19860906,41.555788823],[-71.198635609,41.555847988],[-71.198662941,41.555902512],[-71.198689484,41.555963026],[-71.198708923,41.556018925],[-71.198724045,41.55608021],[-71.19874434,41.556135448],[-71.198765543,41.556192037],[-71.198785061,41.556250589],[-71.19880712,41.556306495],[-71.198824869,41.556365751],[-71.198833774,41.556421782],[-71.198842742,41.55648376],[-71.198849019,41.556541797],[-71.198856254,41.556603129],[-71.198864322,41.556662452],[-71.198874106,41.556719148],[-71.198883011,41.556775202],[-71.198893894,41.556844412],[-71.198901078,41.556903755],[-71.198904949,41.556975027],[-71.198902457,41.557033155],[-71.198877292,41.557102064],[-71.198843138,41.557159195],[-71.198802761,41.557212444],[-71.19876422,41.557270272],[-71.198727418,41.557327396],[-71.198693264,41.557384503],[-71.198659135,41.557442937],[-71.198627552,41.557497399],[-71.198593419,41.557556519],[-71.198557429,41.557609025],[-71.198514424,41.557664234],[-71.198466985,41.55771687],[-71.198429232,41.557768777],[-71.198404758,41.557826436],[-71.198390987,41.557893888],[-71.198371683,41.557946255],[-71.198328832,41.558007433],[-71.198284846,41.55805738],[-71.198241798,41.558108632],[-71.198201371,41.558159205],[-71.198165502,41.558218344],[-71.198138306,41.558272085],[-71.198112089,41.558331111],[-71.19808756,41.558387489],[-71.198063868,41.558440508],[-71.198041945,41.55849289],[-71.198021858,41.558549875],[-71.197990246,41.558603673],[-71.197968493,41.558665318],[-71.197953838,41.558732791],[-71.197944508,41.558800895],[-71.19794721,41.558854989],[-71.197963257,41.55892021],[-71.197985516,41.558985355],[-71.19801642,41.559044486],[-71.198058706,41.559098204],[-71.198110618,41.559151169],[-71.198172974,41.559197438],[-71.198226576,41.559247092],[-71.198271332,41.559293543],[-71.198321354,41.559340557],[-71.198372341,41.559389564],[-71.198417024,41.559432036],[-71.198464433,41.559477808],[-71.198515463,41.559530771],[-71.198541937,41.559586642],[-71.198548484,41.559658539],[-71.198546131,41.559725907],[-71.198525965,41.559780261],[-71.198496984,41.55983139],[-71.198475916,41.559883066],[-71.1984585,41.559942024],[-71.198443921,41.560012791],[-71.198439662,41.560070937],[-71.19843824,41.560140937],[-71.198438417,41.560201017],[-71.198443129,41.560268334],[-71.198461677,41.560326243],[-71.198499744,41.560390584],[-71.198527001,41.560441815],[-71.198565902,41.560503482],[-71.198589685,41.560555436],[-71.198609099,41.560610717],[-71.198625205,41.560676556],[-71.198599801,41.560730965],[-71.198564607,41.560782146],[-71.198529621,41.560841241],[-71.198515608,41.560894857],[-71.198520122,41.560952272],[-71.198529073,41.561011573],[-71.198539744,41.561067609],[-71.198550481,41.561128905],[-71.198555857,41.56118431],[-71.198556914,41.561245054],[-71.198557229,41.561315014],[-71.198551231,41.561373865],[-71.198547194,41.561443218],[-71.198553522,41.561503244],[-71.198556249,41.561558688],[-71.198558141,41.561616759],[-71.198560943,41.561675518],[-71.19855957,41.561748103],[-71.198544032,41.561815642],[-71.198526684,41.561879197],[-71.198513774,41.561944685],[-71.198499121,41.562011518],[-71.198484466,41.562078991],[-71.198477782,41.562147742],[-71.198468395,41.562215183],[-71.198442323,41.562282123],[-71.198408045,41.562332667],[-71.198371997,41.562383869],[-71.198347518,41.562442214],[-71.198321185,41.562493259],[-71.198285238,41.562549081],[-71.198253649,41.562604228],[-71.198231752,41.562657228],[-71.198230163,41.562717326],[-71.198252518,41.562788417],[-71.198268527,41.562849018],[-71.198272421,41.562921594],[-71.198277054,41.562986259],[-71.198278305,41.56305757],[-71.198282036,41.563119579],[-71.198288271,41.563173683],[-71.198296359,41.563234995],[-71.198301116,41.56330556],[-71.198305654,41.563364324],[-71.198311203,41.563428282],[-71.198319413,41.563496204],[-71.198325903,41.56356746],[-71.19833319,41.563630782],[-71.198342065,41.563686814],[-71.198352827,41.563749413],[-71.198365262,41.563806117],[-71.198379535,41.563866713],[-71.198396327,41.563922674],[-71.198413982,41.563976624],[-71.198432583,41.564036523],[-71.198448471,41.564090491],[-71.198462738,41.564152414],[-71.198470145,41.564222986],[-71.198470273,41.564280458],[-71.198481063,41.564343721],[-71.198503318,41.564410193],[-71.198521088,41.564472079],[-71.198561749,41.56453574],[-71.1986059,41.564595363],[-71.198623816,41.564665185],[-71.198615317,41.564731257],[-71.198573928,41.564778557],[-71.198543181,41.564829041],[-71.198540048,41.564900386],[-71.198541985,41.564961774],[-71.198547644,41.565034994],[-71.198549588,41.565095055],[-71.198549049,41.565165058],[-71.198546556,41.565223186],[-71.198534503,41.565287372],[-71.198516961,41.565340361],[-71.198479225,41.565394189],[-71.198402595,41.565436549],[-71.198336577,41.565482115],[-71.198275115,41.565536841],[-71.198248128,41.565603801],[-71.198287888,41.565664807],[-71.198326595,41.565716571],[-71.198369696,41.565766334],[-71.198418845,41.565812065],[-71.198479536,41.565864299],[-71.198528762,41.565913323],[-71.198566586,41.565965108],[-71.198596562,41.566021629],[-71.198622083,41.566073518],[-71.198641604,41.56613207],[-71.19866474,41.566199208],[-71.198679822,41.566256513],[-71.198685365,41.566321797],[-71.198673142,41.566376721],[-71.198648543,41.566427816],[-71.19862247,41.566494756],[-71.198616608,41.566563487],[-71.198596635,41.566628361],[-71.198562379,41.566680232],[-71.198522757,41.566726805],[-71.198483205,41.566778066],[-71.198443611,41.566825326],[-71.198395307,41.566879308],[-71.19835235,41.566935821],[-71.198328658,41.566988222],[-71.198316532,41.567048429],[-71.198278819,41.567103606],[-71.198261425,41.567163845],[-71.198261617,41.56722724],[-71.198261722,41.567283339],[-71.198261853,41.567340125],[-71.198267275,41.567398846],[-71.198275391,41.567460844],[-71.198290612,41.567527366],[-71.19829878,41.567591331],[-71.198302439,41.567649407],[-71.198292953,41.567711564],[-71.198276314,41.567766522],[-71.198265046,41.567825405],[-71.198242259,41.567879752],[-71.198190481,41.567933749],[-71.198137596,41.567977177],[-71.198081188,41.568018674],[-71.198031835,41.568062089],[-71.197983438,41.568109439],[-71.197937612,41.568154143],[-71.197895704,41.568220561],[-71.197869383,41.568274967],[-71.197831032,41.568342698],[-71.197800344,41.568399768],[-71.197767859,41.568450271],[-71.197740672,41.568507328],[-71.197715216,41.568559083],[-71.197685347,41.56861021],[-71.197659029,41.568663953],[-71.197625011,41.56872966],[-71.197600511,41.568785352],[-71.197557591,41.568846529],[-71.197523291,41.56889442],[-71.197468811,41.568946442],[-71.197401002,41.568990013],[-71.197325842,41.569016527],[-71.197234584,41.569027333],[-71.197152987,41.569036701],[-71.197085818,41.5690671],[-71.197062124,41.569119501],[-71.197031517,41.569178561],[-71.197006102,41.569234251],[-71.197015049,41.569294238],[-71.197013362,41.569349052],[-71.196970214,41.569393718],[-71.196906592,41.569427397],[-71.196861678,41.569472034],[-71.196815923,41.569520695],[-71.196756222,41.569575425],[-71.196696351,41.569620937],[-71.196632659,41.569649951],[-71.196558408,41.569677084],[-71.196484944,41.569698914],[-71.196400052,41.5697222],[-71.196330023,41.569738778],[-71.196248495,41.569752788],[-71.1961616,41.569761546],[-71.196084387,41.569770902],[-71.196001002,41.569778297],[-71.19592818,41.569786269],[-71.19590407,41.569797388],[-71.195828356,41.569818182],[-71.195759151,41.569853882],[-71.195703554,41.569896935],[-71.195667083,41.569952778],[-71.195642429,41.57001469],[-71.19562219,41.570070438],[-71.195590232,41.57012492],[-71.195552781,41.570175317],[-71.195521685,41.570227767],[-71.1954961,41.570286954],[-71.195492141,41.570345353],[-71.195493633,41.570403674],[-71.195515899,41.570461228],[-71.195542681,41.570516735],[-71.195555908,41.570572983],[-71.195570989,41.570636669],[-71.195556252,41.570694445],[-71.195509692,41.570738826],[-71.195465958,41.570791333],[-71.195446715,41.570855226],[-71.1954365,41.570916352],[-71.195419043,41.570976156],[-71.195393397,41.571035343],[-71.19537048,41.571090467],[-71.195344867,41.571148968],[-71.195322031,41.571212874],[-71.195296415,41.571272062],[-71.195270802,41.571330586],[-71.195240679,41.571389784],[-71.195172396,41.571429533],[-71.195103998,41.571455035],[-71.195030151,41.571479858],[-71.194948,41.57148984],[-71.194874879,41.57149637],[-71.194789912,41.57149619],[-71.19470852,41.571487146],[-71.194627073,41.571476776],[-71.194539355,41.571472495],[-71.194451624,41.571464212],[-71.19437202,41.571457162],[-71.194299708,41.571453494],[-71.194217438,41.57144989],[-71.194138761,41.571446273],[-71.19405919,41.571438583],[-71.193977809,41.571433656],[-71.193902718,41.571425223],[-71.193823165,41.571420277],[-71.193733635,41.571412629],[-71.193648582,41.571404992],[-71.193641519,41.571404425],[-71.193569918,41.571398631],[-71.193483095,41.571391653],[-71.19340616,41.571380562],[-71.19332563,41.571369484],[-71.193251422,41.571361099],[-71.193173562,41.571345934],[-71.193112687,41.571313045],[-71.193052674,41.571271971],[-71.192967627,41.571262985],[-71.192907636,41.571230053],[-71.192829696,41.57120606],[-71.192754893,41.571226855],[-71.192679083,41.571235411],[-71.192593061,41.571220316],[-71.192523308,41.571203732],[-71.192439968,41.571181806],[-71.192375844,41.571185568],[-71.192332927,41.571231947],[-71.192305247,41.571263341],[-71.192231435,41.571293583],[-71.192149328,41.571306948],[-71.19207242,41.571296542],[-71.191995488,41.571284764],[-71.191915759,41.571265546],[-71.191846033,41.571249648],[-71.191769066,41.571232449],[-71.19170023,41.571215204],[-71.191619532,41.571188504],[-71.191545923,41.571150252],[-71.191490412,41.571110538],[-71.191431196,41.57106201],[-71.191380189,41.571022949],[-71.191319229,41.570982558],[-71.191276322,41.570937344],[-71.191254929,41.570876384],[-71.191286835,41.57081447],[-71.191304358,41.570760774],[-71.191292959,41.57070517],[-71.191260797,41.57065445],[-71.191230401,41.570597652],[-71.191206366,41.570541465],[-71.191185018,41.570483868],[-71.191162735,41.570424301],[-71.191144064,41.570367397],[-71.191122716,41.570309845],[-71.191095976,41.570259071],[-71.191070059,41.570195447],[-71.191045011,41.570134524],[-71.191032708,41.570076928],[-71.191030351,41.570021943],[-71.191021628,41.569960949],[-71.190971428,41.569912353],[-71.190902359,41.569874066],[-71.190851267,41.569827527],[-71.190831782,41.5697754],[-71.190804966,41.569715135],[-71.190782743,41.569662361],[-71.190764099,41.56960612],[-71.190762662,41.569549811],[-71.190752126,41.569492197],[-71.190748194,41.569461015],[-71.190731666,41.56940821],[-71.190704315,41.569351671],[-71.190667993,41.569286006],[-71.19063194,41.569234201],[-71.190600245,41.569181698],[-71.190567628,41.569124574],[-71.190542106,41.569073963],[-71.19052162,41.569008158],[-71.190503999,41.568954847],[-71.190459262,41.568910405],[-71.190372651,41.568885518],[-71.190291864,41.568890904],[-71.190207737,41.568906915],[-71.19012273,41.568922283],[-71.190030467,41.568926494],[-71.189945291,41.568932599],[-71.189865245,41.568929433],[-71.189842115,41.568913796],[-71.189832201,41.568847219],[-71.189787393,41.568798797],[-71.18972661,41.568792115],[-71.189658533,41.568820541],[-71.189620881,41.568880335],[-71.189595505,41.568939339],[-71.18956947,41.568958068],[-71.189481954,41.568931211],[-71.189413067,41.568912729],[-71.189339666,41.568889021],[-71.189268826,41.568858688],[-71.189204917,41.568824325],[-71.189157608,41.568783192],[-71.189165761,41.568746805],[-71.189262116,41.568727352],[-71.189344383,41.568705413],[-71.189408102,41.568677707],[-71.189469119,41.568648096],[-71.189524702,41.568608567],[-71.189574781,41.568554616],[-71.189635647,41.568518371],[-71.189696502,41.568478148],[-71.189762634,41.568435926],[-71.189834313,41.568412106],[-71.189918644,41.568410596],[-71.189995259,41.568417755],[-71.190061024,41.568407892],[-71.190108405,41.56835128],[-71.190154881,41.568292745],[-71.190210294,41.568243999],[-71.190243605,41.568187555],[-71.190285835,41.56813827],[-71.190334117,41.568084313],[-71.190346256,41.568022804],[-71.190288162,41.567969887],[-71.190222159,41.567915096],[-71.190180738,41.567858725],[-71.190165567,41.567796136],[-71.19018124,41.567734544],[-71.190234055,41.567687827],[-71.190290447,41.567644343],[-71.190306252,41.567593364],[-71.19029981,41.567526727],[-71.190323394,41.567466437],[-71.190369173,41.567419792],[-71.190442134,41.567420355],[-71.190522668,41.567448632],[-71.190605355,41.567453109],[-71.190667878,41.567407583],[-71.190742374,41.567443826],[-71.190797478,41.567478965],[-71.190877884,41.567501914],[-71.190957618,41.567487286],[-71.190971405,41.567418508],[-71.190987875,41.567355592],[-71.191022065,41.567299813],[-71.191060643,41.567243292],[-71.191129528,41.567210956],[-71.191213849,41.567204825],[-71.191290267,41.567202103],[-71.191324081,41.567174041],[-71.191271378,41.567127016],[-71.19122903,41.567067327],[-71.1911955,41.5670102],[-71.19114535,41.566957877],[-71.191086382,41.566903014],[-71.191032755,41.566852031],[-71.190976479,41.566801086],[-71.190911402,41.566750232],[-71.190845448,41.566698049],[-71.190800661,41.566651618],[-71.190752369,41.566605886],[-71.190708499,41.566558748],[-71.190675953,41.566506289],[-71.190647526,41.566439204],[-71.190623726,41.566385282],[-71.190594706,41.566334067],[-71.190566494,41.566279539],[-71.190552354,41.566224225],[-71.190564294,41.566153452],[-71.190559648,41.56608682],[-71.190545288,41.566020254],[-71.190565294,41.565956684],[-71.190599435,41.565898275],[-71.190595666,41.565832927],[-71.190571794,41.565775094],[-71.190587529,41.565719448],[-71.190584043,41.565671275],[-71.190530403,41.565616999],[-71.190530227,41.565558269],[-71.190530057,41.565498167],[-71.190514871,41.565432284],[-71.190513722,41.56536692],[-71.190534486,41.565297406],[-71.190573823,41.56523494],[-71.190618793,41.565191586],[-71.190686506,41.565142713],[-71.190762306,41.565103055],[-71.190842536,41.565066588],[-71.190928162,41.565035372],[-71.190993636,41.565008973],[-71.191060562,41.564965404],[-71.191106128,41.564905562],[-71.191135027,41.564847802],[-71.191171723,41.564783454],[-71.191203168,41.564721699],[-71.191237218,41.564656657],[-71.191276553,41.564594214],[-71.191314394,41.564544986],[-71.191364363,41.564487717],[-71.191374021,41.56443544],[-71.191343229,41.56438557],[-71.191304459,41.564329184],[-71.191251817,41.564282823],[-71.191218406,41.564232969],[-71.191231376,41.564169449],[-71.191267396,41.564118935],[-71.191336236,41.564082574],[-71.191408622,41.564049538],[-71.19147591,41.564025797],[-71.191552781,41.563997279],[-71.191633348,41.563979337],[-71.19171148,41.563973943],[-71.19179596,41.563978378],[-71.191879722,41.563992736],[-71.191967759,41.563998506],[-71.192017178,41.563960377],[-71.192022351,41.563903537],[-71.192072588,41.563860128],[-71.192089152,41.563802518],[-71.192110039,41.563738927],[-71.192144371,41.563691039],[-71.192206047,41.563649535],[-71.192269542,41.563609935],[-71.192316222,41.563565235],[-71.192354893,41.563514019],[-71.192399553,41.563452208],[-71.192440964,41.563407562],[-71.192486664,41.563357577],[-71.192528819,41.563303694],[-71.19256749,41.563252433],[-71.192604377,41.563198604],[-71.19264567,41.563146686],[-71.192695761,41.563095363],[-71.192746804,41.563048663],[-71.192812726,41.562997817],[-71.192863775,41.562949789],[-71.192913934,41.562903086],[-71.192987057,41.56286207],[-71.193051599,41.562832375],[-71.193127419,41.562794019],[-71.193213942,41.562765434],[-71.193288878,41.562727053],[-71.193347218,41.562695488],[-71.193409921,41.562661854],[-71.19348491,41.562625417],[-71.193551263,41.562599042],[-71.193631589,41.562567215],[-71.19368389,41.562543845],[-71.193693503,41.562539548],[-71.193761601,41.562511142],[-71.193821679,41.562478873],[-71.193887815,41.562440559],[-71.193950355,41.562396381],[-71.194004115,41.562354238],[-71.19406758,41.562314019],[-71.194128422,41.56227448],[-71.194184049,41.562236938],[-71.194253547,41.562189394],[-71.194311477,41.562134661],[-71.1943624,41.562080664],[-71.194412373,41.562021427],[-71.194442266,41.561971605],[-71.194475455,41.561907269],[-71.194505299,41.561854794],[-71.194546635,41.561806191],[-71.19459584,41.561754865],[-71.194645931,41.561702878],[-71.194690772,41.561653553],[-71.194729346,41.561596412],[-71.194753877,41.561540698],[-71.194762521,41.561483158],[-71.194767664,41.561425677],[-71.194742813,41.561361874],[-71.194704214,41.561314042],[-71.194698745,41.561253354],[-71.194700361,41.561194606],[-71.194706411,41.561138431],[-71.19471766,41.561077559],[-71.194732455,41.561019967],[-71.194756958,41.560963613],[-71.194776244,41.56090928],[-71.194796123,41.560839077],[-71.19482502,41.560780721],[-71.194857434,41.560725577],[-71.194894196,41.560665161],[-71.194916933,41.560608825],[-71.194922913,41.560548007],[-71.194921879,41.560489275],[-71.194911194,41.560430586],[-71.194879454,41.560374769],[-71.19485131,41.560324907],[-71.194847562,41.560260861],[-71.194897621,41.560208874],[-71.194950387,41.560157535],[-71.194945825,41.56009813],[-71.194943815,41.560033472],[-71.194942806,41.559975998],[-71.194942758,41.559973368],[-71.194973511,41.559921581],[-71.194989978,41.559858001],[-71.195009025,41.559789831],[-71.195052004,41.5597346],[-71.195123407,41.559695614],[-71.195183361,41.559656734],[-71.195217664,41.559607541],[-71.195223671,41.55954741],[-71.19522705,41.559489238],[-71.195225233,41.559435146],[-71.195208445,41.559379163],[-71.195154005,41.559333485],[-71.195077108,41.55931048],[-71.195003578,41.559277512],[-71.194936074,41.559238592],[-71.194864382,41.559209563],[-71.194796345,41.559238633],[-71.194741054,41.559244455],[-71.194665162,41.559228039],[-71.194589921,41.559247942],[-71.194532835,41.559201616],[-71.194496885,41.559154409],[-71.194443446,41.559115983],[-71.194369352,41.559151051],[-71.194284207,41.559159813],[-71.194204647,41.55913353],[-71.194156313,41.559084506],[-71.194141999,41.559020593],[-71.194135706,41.558960566],[-71.194130316,41.558902531],[-71.194102938,41.55884533],[-71.194065929,41.55879023],[-71.194031594,41.55873644],[-71.194011199,41.558677199],[-71.194006544,41.558611894],[-71.194020508,41.558556289],[-71.194046904,41.558505177],[-71.194075891,41.558453454],[-71.194103091,41.558399691],[-71.194132719,41.55833466],[-71.194164228,41.558277592],[-71.194211619,41.558222968],[-71.194276347,41.558204502],[-71.194359078,41.558210302],[-71.194389786,41.558206701],[-71.194385183,41.55814334],[-71.194445949,41.558099843],[-71.194507622,41.558057675],[-71.194552509,41.55801098],[-71.194593918,41.557965694],[-71.194631723,41.557916464],[-71.194683649,41.557868393],[-71.1947427,41.557826881],[-71.194792949,41.557786101],[-71.194852952,41.557749234],[-71.194916581,41.557718231],[-71.194996997,41.557691664],[-71.19506888,41.557679757],[-71.195140589,41.557659204],[-71.195213808,41.557622166],[-71.195290664,41.557594995],[-71.195361329,41.557563302],[-71.195400016,41.557514051],[-71.195438682,41.557462834],[-71.195492252,41.557408157],[-71.195551421,41.557373895],[-71.195630379,41.557365848],[-71.195696128,41.557356623],[-71.195682516,41.557330996],[-71.195621222,41.557292664],[-71.19560884,41.557238636],[-71.195623661,41.557181729],[-71.195634908,41.557120857],[-71.195639048,41.557056101],[-71.195630076,41.556995472],[-71.195627255,41.556934769],[-71.195631493,41.556875296],[-71.195648793,41.556809088],[-71.195672344,41.556747448],[-71.195687044,41.556683909],[-71.195667464,41.556619433],[-71.195633125,41.556566285],[-71.195602173,41.556505163],[-71.195601922,41.556441768],[-71.195578956,41.556385219],[-71.195534256,41.556340756],[-71.19548693,41.556297659],[-71.195435047,41.556245996],[-71.195374385,41.556196414],[-71.195316664,41.556162688],[-71.195275989,41.556149202],[-71.195210813,41.556192093],[-71.195148927,41.556221773],[-71.195087176,41.556209855],[-71.195030975,41.556163532],[-71.194963626,41.556131152],[-71.194897039,41.556092166],[-71.194843321,41.556035924],[-71.194806289,41.555979498],[-71.194788421,41.555913677],[-71.194782,41.555848344],[-71.19477553,41.555780427],[-71.19477531,41.555717077],[-71.194775901,41.555649681],[-71.19478098,41.555586277],[-71.194790361,41.555520803],[-71.19479899,41.55545997],[-71.194820796,41.555400315],[-71.194863794,41.555347074],[-71.194916671,41.555303625],[-71.194976408,41.555251571],[-71.195037077,41.555202128],[-71.195096074,41.555158603],[-71.195171101,41.555124841],[-71.195247881,41.555093713],[-71.195326479,41.555064579],[-71.195404391,41.5550453],[-71.195493201,41.555045764],[-71.195555756,41.555055055],[-71.195582902,41.554999325],[-71.195645382,41.554953133],[-71.195719907,41.55494185],[-71.195806353,41.554959482],[-71.195889007,41.554961302],[-71.195960647,41.554935489],[-71.196027037,41.554912383],[-71.196101416,41.554893163],[-71.196170552,41.554875347],[-71.196241524,41.55486211],[-71.196316953,41.554852773],[-71.196387998,41.554843469],[-71.196460587,41.554822964],[-71.19651532,41.554786105],[-71.196574321,41.554741276],[-71.196622827,41.554701176],[-71.196688097,41.554663568],[-71.196731038,41.554654579],[-71.196797331,41.554626189],[-71.196861815,41.554593861],[-71.196917333,41.554551699],[-71.196971874,41.554503656],[-71.196999801,41.554443262],[-71.197001488,41.554388448],[-71.196995207,41.554331737],[-71.196980087,41.554270498],[-71.196952636,41.554209364],[-71.196925383,41.554158109],[-71.196881292,41.55410043],[-71.196842503,41.554042079],[-71.196821299,41.553986175],[-71.196793014,41.553927691],[-71.196758585,41.553867933],[-71.196716315,41.553811585],[-71.19668293,41.553763036],[-71.196675724,41.553702366],[-71.196705535,41.55364925],[-71.19674863,41.553600628],[-71.196782001,41.553548162],[-71.196788928,41.553492607],[-71.196787921,41.553434515],[-71.196810844,41.553389385],[-71.196883313,41.553361606],[-71.196930107,41.553322828],[-71.196945211,41.553289432],[-71.196953794,41.553270473],[-71.196944244,41.553235754],[-71.196937837,41.553212548],[-71.196935981,41.55315379],[-71.196918258,41.55309586],[-71.196916361,41.55303907],[-71.196934712,41.552982104],[-71.196948651,41.552924532],[-71.196967833,41.552865602],[-71.196980034,41.552808665],[-71.19701864,41.552756121],[-71.197061759,41.552708848],[-71.197100447,41.552658271],[-71.197132934,41.552605802],[-71.197167065,41.552546728],[-71.197204773,41.552490888],[-71.197255759,41.552440823],[-71.197311223,41.552396716],[-71.197363162,41.552351296],[-71.197419491,41.552304516],[-71.19747057,41.552260443],[-71.197525109,41.5522124],[-71.197575405,41.552172922],[-71.197636118,41.55212613],[-71.19768443,41.5520748],[-71.197731811,41.552020838],[-71.19778809,41.551971427],[-71.197834685,41.551922768],[-71.19788303,41.551870798],[-71.19793842,41.551822711],[-71.197990261,41.551772008],[-71.198038624,41.551722668],[-71.198088871,41.551680582],[-71.198146291,41.551647663],[-71.19817979,41.551599793],[-71.198148098,41.551547293],[-71.198123436,41.551495382],[-71.198118898,41.551436641],[-71.198096815,41.551380072],[-71.198049294,41.551327095],[-71.198007161,41.551280605],[-71.197962407,41.551234839],[-71.197900165,41.551191864],[-71.197825975,41.551171475],[-71.197753739,41.551162937],[-71.197672018,41.551164415],[-71.197592088,41.551167178],[-71.197519285,41.551175837],[-71.19743964,41.551195776],[-71.197361117,41.551229576],[-71.197309059,41.551268341],[-71.197254384,41.551306526],[-71.197194291,41.55133818],[-71.197139559,41.551375679],[-71.197088598,41.551427025],[-71.197039257,41.551470416],[-71.196994301,41.551513773],[-71.196939714,41.551559231],[-71.196865439,41.551583049],[-71.196781927,41.55158324],[-71.196699163,41.551573463],[-71.19662337,41.55156368],[-71.196537171,41.551559222],[-71.196463366,41.551560605],[-71.196383384,41.5515614],[-71.196302306,41.551548997],[-71.196244516,41.551511269],[-71.196204032,41.551457532],[-71.196230535,41.551415019],[-71.196304219,41.551407026],[-71.196373063,41.551424841],[-71.196444018,41.55145979],[-71.1965112,41.551481556],[-71.196535536,41.551466138],[-71.196487206,41.551417092],[-71.196438072,41.551370697],[-71.196482522,41.551351123],[-71.196564582,41.551368126],[-71.196637225,41.551400427],[-71.196716873,41.551431991],[-71.196783269,41.551459061],[-71.196863518,41.551472789],[-71.196934456,41.551459574],[-71.196984606,41.551412206],[-71.197017906,41.551355074],[-71.197054846,41.551307167],[-71.19706988,41.551262794],[-71.196995435,41.551277417],[-71.196927237,41.551297226],[-71.196845729,41.551311876],[-71.196773593,41.551308004],[-71.196703572,41.551274978],[-71.196682358,41.551215118],[-71.196696197,41.551152926],[-71.196726774,41.551091876],[-71.196773278,41.551036631],[-71.19683396,41.550989817],[-71.196899445,41.550964055],[-71.196964978,41.550940946],[-71.1970455,41.550922359],[-71.197120924,41.550913044],[-71.197205196,41.550906245],[-71.197288655,41.550904132],[-71.197377405,41.550903222],[-71.197464389,41.550902354],[-71.197551377,41.550900844],[-71.197636626,41.550899994],[-71.197724444,41.550896474],[-71.197808834,41.550897016],[-71.19789239,41.550900117],[-71.197968127,41.550908618],[-71.198011163,41.550904911],[-71.197974152,41.550850476],[-71.197959147,41.550797127],[-71.198000456,41.55074587],[-71.198074879,41.550729279],[-71.198161914,41.550730399],[-71.198246325,41.550732862],[-71.198329951,41.550740629],[-71.198409241,41.550751105],[-71.198488391,41.550752273],[-71.198568842,41.550729043],[-71.198634104,41.550692096],[-71.198676316,41.550642785],[-71.198738004,41.550601919],[-71.198811209,41.550565519],[-71.198864765,41.55051219],[-71.198907856,41.550463567],[-71.198957859,41.550408284],[-71.199001906,41.550363598],[-71.199052983,41.550319502],[-71.199115574,41.550280627],[-71.199176427,41.550242365],[-71.199231991,41.550202237],[-71.19929461,41.550163956],[-71.199355557,41.550131663],[-71.199413642,41.55008619],[-71.199448823,41.550036312],[-71.199489219,41.549984412],[-71.199496185,41.549979055],[-71.199548976,41.549932974],[-71.199604466,41.549888843],[-71.199656401,41.549843445],[-71.199710102,41.549798028],[-71.199773481,41.549753186],[-71.199836238,41.549724168],[-71.199900814,41.549697099],[-71.199966174,41.549664749],[-71.200034914,41.549625798],[-71.200098366,41.549584867],[-71.200174045,41.549539896],[-71.200204885,41.549513356],[-71.2002338,41.549488481],[-71.200277724,41.549437184],[-71.200295182,41.549381565],[-71.200279247,41.54932492],[-71.200259638,41.549259759],[-71.200248903,41.5491978],[-71.200237259,41.549135198],[-71.200223114,41.549079862],[-71.200197526,41.549023993],[-71.200131229,41.549002208],[-71.200105189,41.548971426],[-71.200168689,41.548933171],[-71.200144005,41.548879294],[-71.200082631,41.548839615],[-71.200029206,41.548799202],[-71.200008788,41.548737995],[-71.200012241,41.548682522],[-71.200016446,41.548622386],[-71.200012647,41.54855507],[-71.200003499,41.548485842],[-71.200003415,41.54843171],[-71.199997805,41.548361096],[-71.19999069,41.548306373],[-71.199980635,41.548235816],[-71.199978437,41.548207493],[-71.199135437,41.548417493],[-71.197753437,41.548720492],[-71.196739436,41.548685492],[-71.195119436,41.549247492],[-71.192161434,41.549919493],[-71.17777043,41.552320494],[-71.172862428,41.553139494],[-71.159843424,41.556310495],[-71.159805424,41.556351495],[-71.159515424,41.556424495],[-71.158828424,41.556559495],[-71.158165424,41.556711496],[-71.157348423,41.556925496],[-71.156456423,41.557121495],[-71.156211423,41.557189495],[-71.156120423,41.557254496],[-71.153096422,41.557873496],[-71.152458422,41.558004495],[-71.149179421,41.558675496],[-71.143855419,41.559750496],[-71.141391419,41.560258497],[-71.140346418,41.560600496],[-71.135302417,41.561701497],[-71.135353416,41.561739497],[-71.135406417,41.561784497],[-71.135459417,41.561796497],[-71.135536417,41.561777497],[-71.135612417,41.561748497],[-71.135696417,41.561724496],[-71.135772417,41.561696497],[-71.135810417,41.561731497],[-71.135856416,41.561798497],[-71.135887417,41.561865497],[-71.135871417,41.561942497],[-71.135871417,41.562014497],[-71.135925417,41.562058497],[-71.135986417,41.562092497],[-71.136024417,41.562146497],[-71.136093417,41.562208497],[-71.136192417,41.562224497],[-71.136283417,41.562254497],[-71.136329417,41.562293497],[-71.136405417,41.562346497],[-71.136474417,41.562385497],[-71.136520417,41.562443497],[-71.136505417,41.562488497],[-71.136451417,41.562534497],[-71.136413417,41.562607497],[-71.136474417,41.562669497],[-71.136535417,41.562695497],[-71.136627417,41.562711497],[-71.136703417,41.562759497],[-71.136772417,41.562794497],[-71.136909417,41.562881497],[-71.136970417,41.562930497],[-71.137016417,41.562988497],[-71.137023417,41.563055497],[-71.137000417,41.563127498],[-71.136985418,41.563195497],[-71.137000417,41.563253497],[-71.137039417,41.563302498],[-71.137107417,41.563346497],[-71.137123418,41.563391497],[-71.137084418,41.563455497],[-71.137084418,41.563509497],[-71.137077417,41.563576497],[-71.137069417,41.563608497],[-71.137069417,41.563671498],[-71.137092417,41.563725497],[-71.137107417,41.563787497],[-71.137153417,41.563809498],[-71.137214417,41.563781497],[-71.137252417,41.563744497],[-71.137336418,41.563666497],[-71.137428417,41.563610497],[-71.137481417,41.563614498],[-71.137542417,41.563635497],[-71.137649418,41.563714497],[-71.137786418,41.563833497],[-71.137870417,41.563904497],[-71.137939418,41.563966497],[-71.138023417,41.564014497],[-71.138107418,41.564053497],[-71.138206418,41.564073497],[-71.138305418,41.564085497],[-71.138420418,41.564101498],[-71.138534418,41.564108497],[-71.138794418,41.564112497],[-71.139014418,41.564108497],[-71.139114418,41.564115497],[-71.139541419,41.565048497],[-71.139572418,41.565120497],[-71.140701418,41.564680497],[-71.140792418,41.564773497],[-71.140846419,41.564821498],[-71.140892418,41.564879498],[-71.140945419,41.564932497],[-71.141006418,41.565003497],[-71.141067418,41.565065497],[-71.141090419,41.565118497],[-71.141151419,41.565225497],[-71.141235419,41.565309498],[-71.141319418,41.565389498],[-71.141380419,41.565469497],[-71.141403419,41.565558498],[-71.141395418,41.565653497],[-71.141357418,41.565730497],[-71.141303419,41.565794498],[-71.141258418,41.565863497],[-71.141242418,41.565935498],[-71.141227419,41.566102498],[-71.141212419,41.566197497],[-71.141212419,41.566300498],[-71.141220418,41.566354498],[-71.141235419,41.566408497],[-71.141258418,41.566462497],[-71.141326419,41.566541497],[-71.141410419,41.566607498],[-71.141509419,41.566655498],[-71.141609418,41.566694498],[-71.141670419,41.566733498],[-71.141670419,41.566787498],[-71.141609418,41.566923498],[-71.141601419,41.566987498],[-71.141601419,41.567054498],[-71.141616419,41.567112498],[-71.141670419,41.567152498],[-71.141739419,41.567191498],[-71.141830419,41.567226497],[-71.142028419,41.567312498],[-71.142120419,41.567373498],[-71.142189419,41.567449498],[-71.142257419,41.567515498],[-71.142318419,41.567590498],[-71.14238742,41.567666498],[-71.142463419,41.567741498],[-71.142555419,41.567825498],[-71.142646419,41.567913498],[-71.142730419,41.568001498],[-71.142807419,41.568086498],[-71.142883419,41.568165498],[-71.142944419,41.568232498],[-71.142997419,41.568298498],[-71.14302842,41.568374497],[-71.14305142,41.568441498],[-71.143074419,41.568522498],[-71.143074419,41.568589498],[-71.143058419,41.568716498],[-71.143058419,41.568918498],[-71.14310442,41.568981498],[-71.143119419,41.569007498],[-71.143157419,41.569056498],[-71.14318842,41.569105498],[-71.14320342,41.569163498],[-71.14324142,41.569298498],[-71.14327942,41.569396498],[-71.14331842,41.569490498],[-71.14335642,41.569588498],[-71.14339442,41.569678499],[-71.143424419,41.569767498],[-71.143424419,41.569857498],[-71.14340242,41.570011499],[-71.143409419,41.570069499],[-71.14344042,41.570181498],[-71.14349342,41.570284499],[-71.14353142,41.570382498],[-71.143524419,41.570472498],[-71.143524419,41.570562498],[-71.14357742,41.570652499],[-71.14364642,41.570740498],[-71.14367642,41.570830499],[-71.14366942,41.570920498],[-71.14366842,41.571006498],[-71.14366142,41.571096499],[-71.14366142,41.571181499],[-71.14368442,41.571257499],[-71.14370742,41.571338498],[-71.14370742,41.571505499],[-71.14374542,41.571590499],[-71.143814419,41.571660499],[-71.14388242,41.571722499],[-71.14394342,41.571775498],[-71.143989419,41.571846498],[-71.14402742,41.571913499],[-71.14411942,41.572064498],[-71.14416442,41.572127499],[-71.14421042,41.572171499],[-71.14431242,41.572301499],[-71.14527942,41.572101498],[-71.145774421,41.571993499],[-71.146453421,41.571854498],[-71.147376421,41.571661499],[-71.147956421,41.571542498],[-71.148002421,41.571528499],[-71.148475421,41.571434499],[-71.149101421,41.571296499],[-71.149635422,41.571182498],[-71.150260422,41.571040498],[-71.151016422,41.570882498],[-71.151832422,41.570695498],[-71.151878422,41.570686498],[-71.152313423,41.570592498],[-71.152412423,41.570572498],[-71.153572423,41.570330498],[-71.154846424,41.570063498],[-71.156341424,41.569751498],[-71.156631424,41.569687498],[-71.156730424,41.569667498],[-71.157104424,41.569597498],[-71.157547424,41.569516498],[-71.158531425,41.569354497],[-71.158874425,41.571014498],[-71.158973425,41.571521498],[-71.159080425,41.571874498],[-71.159202425,41.572223498],[-71.159217425,41.572282498],[-71.159324425,41.572734498],[-71.159576425,41.574099499],[-71.159927425,41.575565499],[-71.159957426,41.575699499],[-71.160080425,41.576233499],[-71.160217425,41.576843499],[-71.160262425,41.577063499],[-71.160552426,41.5782955],[-71.160919426,41.579788499],[-71.161323426,41.581537499],[-71.161483426,41.5822545],[-71.161636427,41.5829635],[-71.161682426,41.5831705],[-71.161872426,41.584008501],[-71.162109426,41.585116501],[-71.162269427,41.5858475],[-71.162407427,41.586421501],[-71.162742427,41.587855502],[-71.162758427,41.587905501],[-71.162948427,41.588693502],[-71.163223427,41.589616501],[-71.163436427,41.590278501],[-71.163627427,41.591099502],[-71.163650427,41.591229502],[-71.163673427,41.591386501],[-71.163734427,41.591682502],[-71.163795428,41.591996502],[-71.163856428,41.592320502],[-71.163925427,41.592633502],[-71.163978427,41.592835502],[-71.164039427,41.593059502],[-71.164093428,41.593297502],[-71.164230428,41.593857502],[-71.164291427,41.594053503],[-71.164337428,41.594197502],[-71.164436428,41.594497502],[-71.164520428,41.594793503],[-71.164588428,41.595053502],[-71.164649428,41.595281503],[-71.164711428,41.595573503],[-71.164794428,41.595945503],[-71.164909428,41.596506503],[-71.165023428,41.597080502],[-71.165054428,41.597224503],[-71.165191428,41.597914503],[-71.165207428,41.597959503],[-71.165214428,41.598000503],[-71.165214428,41.598090503],[-71.165206428,41.598112503],[-71.165191428,41.598140503],[-71.165176428,41.598162503],[-71.165153428,41.598199503],[-71.165473428,41.598193503],[-71.165748429,41.598183503],[-71.166046428,41.598173503],[-71.166648429,41.598135503],[-71.167259429,41.598092503],[-71.16811143,41.598028503],[-71.170121429,41.597751503],[-71.17168143,41.597535503],[-71.172280431,41.597397503],[-71.173108431,41.597307503],[-71.173752431,41.597307503],[-71.174120431,41.597270503],[-71.175225432,41.597133503],[-71.175470431,41.597133503],[-71.175700431,41.597179502],[-71.179735432,41.596869502],[-71.184429435,41.596248502],[-71.188552435,41.595400502],[-71.188583436,41.595386502],[-71.188751436,41.595334502],[-71.189277436,41.595143502],[-71.190543436,41.594664501],[-71.191069436,41.594475502],[-71.191162437,41.594441502],[-71.191650437,41.594274501],[-71.192443437,41.593989501],[-71.193405438,41.593610501],[-71.193534437,41.593563501],[-71.194663438,41.593158502],[-71.194679437,41.593320501],[-71.194709438,41.593518501],[-71.194740438,41.593742502],[-71.194793437,41.594025501],[-71.194854438,41.594393501],[-71.194923438,41.594833502],[-71.195014438,41.595367501],[-71.195053438,41.595650502],[-71.195076438,41.595893501],[-71.195114438,41.596586502],[-71.195114438,41.596739502],[-71.195121438,41.597076502],[-71.195129438,41.597585502],[-71.195137438,41.597945502],[-71.195136438,41.598281502],[-71.195136438,41.598405503],[-71.195114438,41.598698503],[-71.195083438,41.598838502],[-71.194999438,41.599200503],[-71.194923438,41.599512503],[-71.194877438,41.599693502],[-71.194900438,41.599918503],[-71.194930438,41.600070502],[-71.194953438,41.600142502],[-71.194984438,41.600285502],[-71.195007438,41.600348503],[-71.195045438,41.600415502],[-71.195075438,41.600477502],[-71.195121439,41.600535502],[-71.195167438,41.600611502],[-71.195228438,41.600686503],[-71.195358438,41.600828502],[-71.195434438,41.600898503],[-71.195518438,41.600964502],[-71.195602438,41.601026503],[-71.195770438,41.601130503],[-71.195968438,41.601235502],[-71.196075439,41.601282503],[-71.196334438,41.601367503],[-71.196472438,41.601410502],[-71.196617439,41.601457503],[-71.196769439,41.601503503],[-71.196914439,41.601545503],[-71.197082439,41.601592503],[-71.197120439,41.601605502],[-71.197250439,41.601638503],[-71.197418439,41.601684502],[-71.197570439,41.601736503],[-71.197723439,41.601778503],[-71.197883439,41.601831503],[-71.197843439,41.601900503],[-71.197844244,41.601901447],[-71.197848584,41.60190429],[-71.197856765,41.601914053],[-71.197873213,41.601934794],[-71.197859823,41.601950927],[-71.197784609,41.601961112],[-71.197784323,41.601961328],[-71.197773766,41.602036188],[-71.197774008,41.602039092],[-71.197778633,41.602105632],[-71.197802955,41.60218224],[-71.1978137,41.602200765],[-71.197840439,41.602246503],[-71.197899439,41.602286503],[-71.197982439,41.602303503],[-71.198070439,41.602316503],[-71.19816244,41.602348503],[-71.198255439,41.602388503],[-71.19833544,41.602431503],[-71.198419439,41.602471503],[-71.198449541,41.602492099],[-71.1984771,41.60251077],[-71.198530038,41.602553721],[-71.198550897,41.602573172],[-71.198577439,41.602597503],[-71.198620079,41.602652683],[-71.198628763,41.602663845],[-71.198637161,41.602681526],[-71.198658439,41.602725503],[-71.198658367,41.602726175],[-71.198658453,41.602726356],[-71.198653197,41.602782121],[-71.198629133,41.602852725],[-71.198591705,41.602927387],[-71.198554217,41.602988602],[-71.198497874,41.603029002],[-71.198434346,41.603055296],[-71.198360944,41.603068825],[-71.198286629,41.603068927],[-71.198286356,41.60306894],[-71.198282486,41.603089257],[-71.198283086,41.603090415],[-71.198319925,41.603148898],[-71.198359438,41.603195861],[-71.198406104,41.603250939],[-71.198431502,41.603283732],[-71.198445439,41.603301503],[-71.198507439,41.603349503],[-71.198575439,41.603368503],[-71.19864744,41.603397503],[-71.198647527,41.603397568],[-71.19864823,41.603397847],[-71.198702914,41.603438767],[-71.198714175,41.603448535],[-71.19876444,41.603491503],[-71.19883744,41.603521503],[-71.19892044,41.603550503],[-71.198990439,41.603589503],[-71.199039351,41.603619461],[-71.199071426,41.603638651],[-71.199127014,41.603675548],[-71.199163797,41.603705494],[-71.19919744,41.603732503],[-71.199245746,41.603784322],[-71.199252446,41.6037915],[-71.199252636,41.603791695],[-71.19940244,41.603938503],[-71.19945844,41.603979503],[-71.199485241,41.604005779],[-71.199510167,41.604029999],[-71.199539942,41.604064363],[-71.199551439,41.604077503],[-71.199560441,41.604087092],[-71.199598142,41.604126692],[-71.199635134,41.604160159],[-71.19965344,41.604176504],[-71.199706439,41.604219503],[-71.199749329,41.604247841],[-71.199763171,41.604256885],[-71.199810745,41.604300507],[-71.199825812,41.604324371],[-71.19984844,41.604359503],[-71.199860585,41.604393177],[-71.199862938,41.604399577],[-71.199871002,41.604421461],[-71.199883666,41.604476541],[-71.199929439,41.604527568],[-71.199971453,41.604546917],[-71.20004144,41.604578503],[-71.20010944,41.604588503],[-71.200119447,41.604590647],[-71.200123024,41.60459117],[-71.200193826,41.604606563],[-71.200199689,41.604608153],[-71.20026544,41.604625504],[-71.20032644,41.604656503],[-71.20037344,41.604706503],[-71.200373589,41.604706705],[-71.200374016,41.604707156],[-71.200417138,41.604764945],[-71.200439614,41.604790142],[-71.20046344,41.604816504],[-71.200515941,41.604860995],[-71.200522633,41.604866606],[-71.20067544,41.604948503],[-71.20074744,41.604991504],[-71.200870441,41.605059503],[-71.200915296,41.605089847],[-71.200939068,41.605105756],[-71.200958131,41.605129517],[-71.20097944,41.605155503],[-71.201009234,41.605214174],[-71.201011855,41.605219287],[-71.201045135,41.605283751],[-71.201085708,41.605326455],[-71.20109344,41.605334503],[-71.20115844,41.605386504],[-71.20121244,41.605431503],[-71.201264469,41.60545341],[-71.201289103,41.605463591],[-71.201347399,41.605508566],[-71.201389838,41.605548856],[-71.20140344,41.605561504],[-71.201403957,41.605562247],[-71.201445267,41.605621384],[-71.2014732,41.605695966],[-71.201503808,41.605771881],[-71.201513801,41.605831665],[-71.201513863,41.605857873],[-71.201513959,41.605916374],[-71.201522142,41.605972128],[-71.2015402,41.606033968],[-71.201560044,41.60610519],[-71.201577218,41.606173729],[-71.201590797,41.606235534],[-71.201607228,41.606288959],[-71.201621889,41.606335641],[-71.201628691,41.606357161],[-71.201603639,41.606378022],[-71.201604619,41.606420604],[-71.201670441,41.606457504],[-71.201670732,41.606457767],[-71.201671007,41.60645792],[-71.201732881,41.606513653],[-71.201753804,41.606533341],[-71.201788441,41.606565504],[-71.201841441,41.606631504],[-71.201865665,41.606666552],[-71.201889129,41.606700308],[-71.201933151,41.606768139],[-71.201970915,41.606838675],[-71.20198895,41.606892465],[-71.201995845,41.606917703],[-71.202024196,41.607018025],[-71.202027746,41.607030171],[-71.202035936,41.607084645],[-71.202055494,41.607145607],[-71.202075219,41.607183897],[-71.202089953,41.607212259],[-71.202116039,41.607271376],[-71.202141268,41.607331199],[-71.202148538,41.607386951],[-71.202146864,41.60744611],[-71.202155074,41.607515998],[-71.202173994,41.607563021],[-71.202207783,41.607716243],[-71.20221832,41.60776393],[-71.20224113,41.607819836],[-71.202269658,41.607870814],[-71.202309441,41.607927504],[-71.202323994,41.607945463],[-71.202356921,41.607985666],[-71.202391182,41.608042814],[-71.2023878,41.608102357],[-71.202386047,41.608172333],[-71.202385899,41.60825089],[-71.2024045,41.608328649],[-71.202447454,41.608433648],[-71.202459102,41.60846093],[-71.202481075,41.608519853],[-71.202504686,41.608573909],[-71.202512508,41.608593185],[-71.202550263,41.60868529],[-71.202572284,41.608737258],[-71.202595873,41.608796231],[-71.202612957,41.608851505],[-71.202633297,41.608907999],[-71.202656916,41.608966972],[-71.202680441,41.609024504],[-71.202680513,41.609024664],[-71.202713082,41.609097141],[-71.202727753,41.609128477],[-71.202752187,41.609182535],[-71.202778264,41.609237192],[-71.202805147,41.609288763],[-71.202845292,41.609344787],[-71.202849441,41.609350504],[-71.202855852,41.609358961],[-71.202897365,41.609412863],[-71.202947149,41.609481074],[-71.20296776,41.60951544],[-71.20300619,41.609578412],[-71.203035163,41.609624808],[-71.203066161,41.60967639],[-71.203095515,41.609734142],[-71.203124025,41.609790041],[-71.203136151,41.609812732],[-71.203152442,41.609842504],[-71.203218441,41.609955504],[-71.203257441,41.610016504],[-71.203337441,41.610124505],[-71.203386442,41.610180505],[-71.203435441,41.610241505],[-71.203480441,41.610295504],[-71.203518441,41.610344504],[-71.203553441,41.610395505],[-71.203553797,41.610396139],[-71.203553955,41.610396368],[-71.203585723,41.610452892],[-71.20359078,41.610463653],[-71.203662197,41.610612818],[-71.203664775,41.610618099],[-71.203694127,41.610676492],[-71.203724253,41.610739095],[-71.203751165,41.610791284],[-71.203787841,41.610860742],[-71.203826967,41.610920944],[-71.203843214,41.610979852],[-71.203873393,41.611030837],[-71.203914979,41.611092897],[-71.20395329,41.61116476],[-71.203970382,41.611218799],[-71.203998075,41.6112937],[-71.204051927,41.61136558],[-71.204083277,41.611410245],[-71.204088442,41.611417504],[-71.20409584,41.611430059],[-71.204122036,41.611474299],[-71.204156302,41.611524677],[-71.204208526,41.611592871],[-71.204221182,41.611609236],[-71.204245442,41.611640505],[-71.204245728,41.611640976],[-71.20424606,41.611641405],[-71.204281148,41.611698555],[-71.204307084,41.611742034],[-71.204313442,41.611752504],[-71.204337687,41.611781723],[-71.204352937,41.611799891],[-71.204356151,41.611803385],[-71.204439442,41.611890505],[-71.204501442,41.611950505],[-71.204543456,41.612004656],[-71.204547223,41.612009464],[-71.204587165,41.612071497],[-71.204627957,41.612140919],[-71.204667081,41.612215231],[-71.204694786,41.612280938],[-71.204715929,41.612342351],[-71.204741164,41.612401922],[-71.204759866,41.612428898],[-71.204779442,41.612456505],[-71.204831442,41.612509504],[-71.204890442,41.612554505],[-71.204954442,41.612599505],[-71.205027442,41.612652505],[-71.205095442,41.612712505],[-71.205153442,41.612768505],[-71.205166667,41.612792453],[-71.205191047,41.612836385],[-71.205204012,41.612866038],[-71.205214442,41.612889505],[-71.205215463,41.612893141],[-71.205230952,41.612946947],[-71.205260231,41.613021874],[-71.205299318,41.613077165],[-71.205307442,41.613088505],[-71.205345442,41.613134505],[-71.205354516,41.613148604],[-71.205379366,41.613186496],[-71.205411201,41.613235656],[-71.20545851,41.613306284],[-71.205504972,41.613375697],[-71.205553116,41.61344388],[-71.205607005,41.613501649],[-71.205673168,41.613547764],[-71.20571653,41.613578566],[-71.205746443,41.613599504],[-71.205818442,41.613659505],[-71.205818611,41.613659639],[-71.205887591,41.613714604],[-71.20590017,41.613722991],[-71.205955796,41.613759824],[-71.205985501,41.613779877],[-71.206010442,41.613796505],[-71.206010809,41.613796962],[-71.206011394,41.613797358],[-71.206050543,41.613846513],[-71.206079068,41.613906664],[-71.206109208,41.613973611],[-71.206134436,41.614041781],[-71.206161302,41.614111785],[-71.206198021,41.614172597],[-71.206225433,41.614208307],[-71.206240442,41.614227505],[-71.206258066,41.614245488],[-71.206290248,41.614277666],[-71.206349037,41.614330531],[-71.206416026,41.614382798],[-71.206458513,41.614424037],[-71.206471443,41.614436505],[-71.206471612,41.61443675],[-71.20647237,41.614437486],[-71.206502509,41.614481773],[-71.206506443,41.614487505],[-71.206506442,41.614487552],[-71.206506638,41.614487841],[-71.206505701,41.614554751],[-71.206537449,41.61458512],[-71.206552243,41.614598988],[-71.206611888,41.614637744],[-71.206664148,41.614685698],[-71.206697584,41.61473852],[-71.206713836,41.614803602],[-71.206735782,41.614876658],[-71.20677163,41.614948536],[-71.206807506,41.61502101],[-71.206832783,41.615071982],[-71.206858029,41.6151297],[-71.206888217,41.615186219],[-71.206910524,41.615218259],[-71.206926436,41.615240838],[-71.206958382,41.615284531],[-71.206990163,41.61533127],[-71.206992443,41.615334505],[-71.20699941,41.615345484],[-71.20702606,41.61538709],[-71.207052796,41.615424209],[-71.207062443,41.615437505],[-71.207116442,41.615503505],[-71.207129888,41.615525615],[-71.207162336,41.615577528],[-71.207197417,41.615630377],[-71.207228421,41.615681958],[-71.207269994,41.615755041],[-71.207296886,41.61580604],[-71.207321318,41.615861926],[-71.207349848,41.615914759],[-71.207379094,41.615950311],[-71.207402443,41.615978505],[-71.207450443,41.616043505],[-71.207450505,41.61604363],[-71.207451049,41.616044366],[-71.207477147,41.616095957],[-71.207503231,41.616150613],[-71.207520266,41.616224914],[-71.207517664,41.61630168],[-71.207511848,41.616361217],[-71.207505191,41.61641826],[-71.207509972,41.616493146],[-71.20752209,41.616569904],[-71.207524464,41.616624523],[-71.207524333,41.616693931],[-71.207524228,41.61675099],[-71.207528223,41.616811147],[-71.207533791,41.616873778],[-71.207534492,41.616941313],[-71.207522116,41.617002686],[-71.207510587,41.617058527],[-71.207483461,41.617126632],[-71.207451458,41.617181254],[-71.20742928,41.617233409],[-71.207317816,41.617337684],[-71.207289961,41.617371415],[-71.207279975,41.617456715],[-71.207300786,41.617474388],[-71.207316443,41.617487506],[-71.207316294,41.617487557],[-71.207355418,41.617520782],[-71.207362462,41.617526769],[-71.207536656,41.617548435],[-71.207629069,41.617579841],[-71.207657642,41.61761671],[-71.207716266,41.617767775],[-71.207782274,41.61790349],[-71.20785162,41.618001777],[-71.207920978,41.618111132],[-71.207963346,41.618197732],[-71.208063011,41.618283768],[-71.208197021,41.618363694],[-71.208397303,41.618426545],[-71.20860911,41.618474627],[-71.2088397,41.618527674],[-71.209017328,41.618463975],[-71.209251218,41.618515177],[-71.209467074,41.618578042],[-71.209614163,41.618657336],[-71.209761368,41.618683893],[-71.209778417,41.618762493],[-71.209904384,41.618760775],[-71.209919344,41.618632493],[-71.209981625,41.618574218],[-71.210077397,41.618536885],[-71.210191959,41.618516134],[-71.21032857,41.618526107]]]]}}"}, +{"type": "precinct", "typeId": 3401, "areaId": 26033, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":372,\"NAME\":\"3401\",\"SHAPE_Length\":0.094052703424875,\"SHAPE_Area\":-0.0001858214693202},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.288859835,41.732886143],[-71.288825916,41.732895342],[-71.288789991,41.732911125],[-71.288750457,41.732928798],[-71.28870912,41.732947109],[-71.288670371,41.732967483],[-71.288636801,41.732991228],[-71.288604937,41.733016348],[-71.288577401,41.733043534],[-71.288554324,41.73307018],[-71.288541945,41.733093072],[-71.288537933,41.733106237],[-71.2885378,41.73310953],[-71.288441939,41.733284782],[-71.288441039,41.733307924],[-71.288439968,41.733336348],[-71.288440438,41.733370103],[-71.288443463,41.733406562],[-71.288449964,41.733444399],[-71.288460957,41.73348101],[-71.288473723,41.733517029],[-71.288491705,41.733554453],[-71.288513125,41.733595291],[-71.288533528,41.733639352],[-71.288554748,41.733685472],[-71.288575051,41.733732208],[-71.288593515,41.733780907],[-71.288610208,41.733829557],[-71.288626967,41.733876904],[-71.288645532,41.733922928],[-71.28866682,41.733967058],[-71.288689811,41.734013182],[-71.288716248,41.734060729],[-71.288742682,41.73410894],[-71.288769182,41.734155825],[-71.288796705,41.734198069],[-71.288826262,41.734234416],[-71.288859533,41.734264916],[-71.288895725,41.734288812],[-71.288933071,41.734305529],[-71.288971536,41.734316234],[-71.289009383,41.734319688],[-71.289047363,41.734319849],[-71.289083773,41.734314656],[-71.289113399,41.734302064],[-71.289138899,41.734281437],[-71.289161941,41.734256118],[-71.289188625,41.734228243],[-71.289216296,41.734197101],[-71.289239639,41.734163846],[-71.289252456,41.734128377],[-71.289254742,41.734092043],[-71.289251717,41.734055584],[-71.289246921,41.734019099],[-71.289244715,41.733983991],[-71.289246971,41.733947656],[-71.289255426,41.733910784],[-71.28927185,41.733874109],[-71.289292702,41.733836825],[-71.289312704,41.733798213],[-71.289328377,41.733757535],[-71.28933434,41.733717319],[-71.289334105,41.733676955],[-71.289332002,41.733638508],[-71.289333438,41.733600846],[-71.28933838,41.733564562],[-71.289343295,41.733527614],[-71.289344763,41.733489289],[-71.289344561,41.733448238],[-71.289340921,41.733403843],[-71.289336558,41.73335613],[-71.289333244,41.733305126],[-71.289331607,41.733254811],[-71.289328983,41.733207742],[-71.289322749,41.733162633],[-71.289312942,41.733118112],[-71.289300409,41.733076147],[-71.289282461,41.73303742],[-71.289259854,41.733004515],[-71.289230845,41.732978071],[-71.289197143,41.732958159],[-71.289160651,41.732942175],[-71.289122318,41.732928795],[-71.289083104,41.732914064],[-71.289044771,41.732900661],[-71.289006307,41.732889957],[-71.288969446,41.732883851],[-71.288931532,41.73288241],[-71.288895293,41.732882274],[-71.288859835,41.732886143]]],[[[-71.285526156,41.737906625],[-71.285570836,41.737939983],[-71.285616573,41.737968105],[-71.285661555,41.737993551],[-71.285702079,41.738018874],[-71.285736499,41.738043454],[-71.285761246,41.738066437],[-71.285772025,41.738084547],[-71.285773362,41.738095824],[-71.285772341,41.738099755],[-71.285777186,41.738111794],[-71.285779275,41.738126365],[-71.285778472,41.73814754],[-71.285777436,41.738174638],[-71.285782531,41.738203188],[-71.285797368,41.738231299],[-71.285823788,41.738256344],[-71.285859982,41.738280264],[-71.285897848,41.738306245],[-71.28592495,41.738337237],[-71.285942999,41.738372672],[-71.285953006,41.738411911],[-71.285953173,41.738453601],[-71.285946119,41.738499784],[-71.2859328,41.738547784],[-71.285916822,41.738596419],[-71.28590878,41.738645847],[-71.285911337,41.738694197],[-71.285922783,41.73874142],[-71.285939609,41.738786778],[-71.285961747,41.738832214],[-71.285986511,41.738877746],[-71.286011242,41.738923942],[-71.28603161,41.738969329],[-71.286048569,41.739011394],[-71.286052717,41.739021899],[-71.28606386,41.739050071],[-71.28606954,41.739086581],[-71.286061968,41.739123477],[-71.286050036,41.739158284],[-71.286042631,41.739190539],[-71.286044938,41.739222354],[-71.286054295,41.73925496],[-71.286064435,41.739290929],[-71.286073558,41.73932948],[-71.286083535,41.739368719],[-71.286097186,41.73940474],[-71.286117236,41.739435605],[-71.286146281,41.7394607],[-71.286180808,41.739481278],[-71.286218021,41.739501929],[-71.286257792,41.739524621],[-71.286298348,41.739549944],[-71.286339689,41.739577966],[-71.28638185,41.739607317],[-71.286424831,41.739637996],[-71.28646699,41.739668032],[-71.2865084,41.73969402],[-71.286549157,41.739714083],[-71.28659366,41.739727636],[-71.286642003,41.739734586],[-71.286693139,41.739737014],[-71.286747849,41.739738876],[-71.286806005,41.739742071],[-71.286864091,41.739747942],[-71.286922897,41.739757793],[-71.28698167,41.739768308],[-71.287041494,41.739774914],[-71.287099716,41.739776782],[-71.287155514,41.739772701],[-71.287205346,41.739763165],[-71.287250097,41.739748246],[-71.287292226,41.739731973],[-71.28733432,41.739716957],[-71.287375564,41.739700636],[-71.287408869,41.739684164],[-71.287436073,41.739666193],[-71.287463279,41.739647628],[-71.287491372,41.739628356],[-71.287520414,41.739608468],[-71.28754854,41.739588578],[-71.287574793,41.739571909],[-71.287600978,41.739557253],[-71.287627885,41.739545914],[-71.287657411,41.739536638],[-71.287686974,41.739525349],[-71.287710668,41.739506686],[-71.287723084,41.739482445],[-71.28772061,41.739454609],[-71.287711152,41.739424633],[-71.287704483,41.739391415],[-71.287707593,41.739355745],[-71.287716903,41.739319561],[-71.287722767,41.739281998],[-71.287724173,41.739244289],[-71.287718557,41.739206477],[-71.2877094,41.739168589],[-71.287697687,41.739127952],[-71.287690433,41.739086774],[-71.287692891,41.739045157],[-71.287696957,41.739024971],[-71.287701614,41.739001676],[-71.287714832,41.738956306],[-71.287735857,41.73891374],[-71.287762944,41.738875301],[-71.28779341,41.738840208],[-71.287823904,41.7388058],[-71.287855254,41.738770732],[-71.287886671,41.738734359],[-71.287917267,41.738696659],[-71.287946062,41.738658887],[-71.287973934,41.738623102],[-71.288004297,41.738591325],[-71.288036199,41.738564879],[-71.288067214,41.738539094],[-71.288094816,41.738511222],[-71.288119834,41.738480006],[-71.288143211,41.738446134],[-71.288165706,41.738411529],[-71.288188163,41.738378914],[-71.288211408,41.738348312],[-71.288234552,41.738320363],[-71.28826199,41.738295784],[-71.288291886,41.738275943],[-71.288325121,41.738262122],[-71.288363472,41.738252314],[-71.288406152,41.73824464],[-71.288448011,41.738235615],[-71.288485645,41.738221208],[-71.288514688,41.738200634],[-71.288536879,41.738174672],[-71.288552118,41.738145863],[-71.28856385,41.738115697],[-71.288572038,41.738086097],[-71.288574912,41.738057058],[-71.288576015,41.738027971],[-71.288577083,41.738000187],[-71.288578086,41.73797373],[-71.288579021,41.737949284],[-71.288579856,41.737927469],[-71.288583148,41.737910323],[-71.288587979,41.737899195],[-71.288596115,41.737894728],[-71.288620816,41.737894613],[-71.288644693,41.737894474],[-71.28866234,41.737894849],[-71.288699405,41.737895604],[-71.288729416,41.737896253],[-71.288763004,41.737895675],[-71.288795772,41.7378937],[-71.288829395,41.737891772],[-71.28886036,41.737890434],[-71.288887781,41.737889707],[-71.288910807,41.737888217],[-71.288928554,41.737885939],[-71.288940167,41.737882873],[-71.288954706,41.737871969],[-71.288965249,41.737850331],[-71.28897113,41.737835248],[-71.288978032,41.737816234],[-71.28898106,41.737805125],[-71.288984151,41.737793834],[-71.288986922,41.737768088],[-71.288987837,41.737740396],[-71.288987123,41.737715833],[-71.288981926,41.737689913],[-71.288970496,41.737665193],[-71.288951126,41.737640985],[-71.288929889,41.737618031],[-71.288918425,41.737594638],[-71.28891936,41.73757017],[-71.288924789,41.737543835],[-71.288926471,41.737533707],[-71.288929734,41.737413582],[-71.288921929,41.737410115],[-71.288887456,41.737410692],[-71.288860921,41.737411466],[-71.288829071,41.737412757],[-71.288797189,41.737414757],[-71.28876714,41.737416074],[-71.288738802,41.737417462],[-71.288711411,41.737418212],[-71.288685764,41.737418325],[-71.288659294,41.737417773],[-71.288632824,41.737417176],[-71.288607209,41.737416671],[-71.288582543,41.73741546],[-71.288560602,41.737411669],[-71.288542371,41.737403379],[-71.28852972,41.737387851],[-71.288520028,41.737363866],[-71.288512376,41.73733259],[-71.288502333,41.737294678],[-71.288489802,41.73725205],[-71.288474743,41.737207428],[-71.288457883,41.737162711],[-71.288440103,41.737119318],[-71.28842321,41.73707531],[-71.28840461,41.737030613],[-71.288382503,41.736984468],[-71.288358657,41.736938297],[-71.288333039,41.736892123],[-71.2883109,41.736846619],[-71.288294005,41.736803297],[-71.288282292,41.73676266],[-71.288270511,41.736724058],[-71.288257712,41.736688702],[-71.288243105,41.736655355],[-71.288226597,41.73662452],[-71.288209988,41.736596429],[-71.288196919,41.736568962],[-71.288189166,41.736540407],[-71.28818427,41.736506552],[-71.288178656,41.736468053],[-71.288174029,41.736426903],[-71.288169497,41.736384496],[-71.288162278,41.736341969],[-71.288150698,41.736298062],[-71.28813738,41.736253443],[-71.288124095,41.736208183],[-71.288108153,41.73616285],[-71.288088538,41.736120758],[-71.288067046,41.736082573],[-71.288045392,41.736047704],[-71.288025473,41.736014209],[-71.288007294,41.735980764],[-71.287988294,41.735946609],[-71.287971099,41.735911153],[-71.287954791,41.735875081],[-71.287939435,41.735837708],[-71.287925851,41.73579972],[-71.287912265,41.735762373],[-71.287897761,41.73572571],[-71.287880566,41.735690254],[-71.28786065,41.735656074],[-71.28783814,41.735621203],[-71.28781383,41.735586283],[-71.287791356,41.735550085],[-71.287769734,41.735514552],[-71.287749916,41.735478406],[-71.287731018,41.73544098],[-71.287709462,41.735404098],[-71.287684397,41.735366524],[-71.28765841,41.735330892],[-71.287633214,41.73529597],[-71.287612411,41.735262428],[-71.287597839,41.735227709],[-71.287587762,41.735191146],[-71.287584805,41.735152697],[-71.28758631,41.735113022],[-71.287587814,41.73507337],[-71.287589319,41.735033695],[-71.287589903,41.734995322],[-71.287586094,41.734956232],[-71.287576052,41.734918297],[-71.287564272,41.734879672],[-71.287554265,41.734840433],[-71.287546944,41.734801245],[-71.287542317,41.734760118],[-71.287541333,41.734715773],[-71.287541266,41.73467143],[-71.287542936,41.734627799],[-71.287544541,41.734585517],[-71.287547886,41.734543238],[-71.287554868,41.734499731],[-71.28756356,41.734456251],[-71.28757143,41.734412082],[-71.287577495,41.734369214],[-71.287582641,41.734326962],[-71.28758949,41.734286771],[-71.28760149,41.73424931],[-71.287617062,41.734211925],[-71.287633489,41.734174588],[-71.287648277,41.734133885],[-71.287658805,41.734089127],[-71.287666776,41.734042306],[-71.287673008,41.733994796],[-71.287677439,41.73394726],[-71.287679174,41.733902325],[-71.287680779,41.73386002],[-71.287686778,41.733818433],[-71.287693629,41.733777578],[-71.287700481,41.733736701],[-71.287703856,41.733694423],[-71.287705496,41.733650814],[-71.287707201,41.733605834],[-71.287708871,41.733562226],[-71.287710508,41.733519235],[-71.287712148,41.733475627],[-71.287713818,41.733432019],[-71.287714638,41.733387037],[-71.287714636,41.733341391],[-71.287713818,41.733293067],[-71.28771126,41.733244694],[-71.287708639,41.733197007],[-71.287706835,41.733151312],[-71.287706702,41.733108318],[-71.287707352,41.733068641],[-71.287708723,41.733032305],[-71.287709859,41.733002531],[-71.287708758,41.732984646],[-71.287699283,41.732978499],[-71.287679867,41.732978075],[-71.287652546,41.732976835],[-71.287620967,41.732970854],[-71.28758703,41.732957573],[-71.287552511,41.732935669],[-71.287516554,41.732905781],[-71.287481714,41.732869972],[-71.287449699,41.732829595],[-71.287418671,41.732785926],[-71.2873904,41.732739679],[-71.287363082,41.732691466],[-71.287334944,41.732641902],[-71.287304969,41.732593662],[-71.287274108,41.732545992],[-71.287244099,41.732499054],[-71.287214842,41.732455435],[-71.287188108,41.732415159],[-71.287166453,41.732380975],[-71.287150832,41.73235021],[-71.287137733,41.732322766],[-71.287127188,41.732298734],[-71.287116645,41.732274039],[-71.287103512,41.732247967],[-71.287090444,41.732220545],[-71.287077378,41.732192484],[-71.287067788,41.732165823],[-71.287059903,41.732140516],[-71.287053689,41.73211791],[-71.287049175,41.732097959],[-71.287045383,41.732081304],[-71.287042309,41.732069338],[-71.287035828,41.73205334],[-71.287027706,41.732035281],[-71.287022828,41.732023952],[-71.287017749,41.732017905],[-71.287009261,41.732009108],[-71.287000054,41.731995667],[-71.286991967,41.731976304],[-71.286985286,41.731965566],[-71.286978666,41.731954852],[-71.286970214,41.731944087],[-71.286960907,41.731933299],[-71.286952484,41.731923198],[-71.286944882,41.731913785],[-71.286938232,41.731903047],[-71.286928958,41.731891618],[-71.286919686,41.731879526],[-71.286908675,41.731867316],[-71.286895895,41.731854509],[-71.286884098,41.731839668],[-71.286870596,41.73182352],[-71.286858049,41.731804721],[-71.286846453,41.731784621],[-71.286837581,41.731762604],[-71.286831334,41.731740639],[-71.286830397,41.731719437],[-71.286831166,41.731698971],[-71.286831901,41.731679785],[-71.286834344,41.731661334],[-71.286840358,41.731642913],[-71.286849782,41.731627265],[-71.286864451,41.73161364],[-71.286881647,41.731602123],[-71.286900577,41.731592598],[-71.286920195,41.731587101],[-71.286940596,41.731584897],[-71.286961782,41.731585325],[-71.286985627,41.731585164],[-71.287010354,41.73158569],[-71.287035936,41.731586263],[-71.287061616,41.731584824],[-71.287084776,41.731579356],[-71.28710374,41.731568505],[-71.287115823,41.731552222],[-71.287118429,41.731530433],[-71.287116807,41.731503947],[-71.287116107,41.731475474],[-71.287117145,41.731447713],[-71.28711559,41.731419238],[-71.287106918,41.731391916],[-71.2870929,41.73136582],[-71.287077043,41.731341686],[-71.287059248,41.731322123],[-71.287039451,41.731307816],[-71.287018596,41.731299408],[-71.286996593,41.731296943],[-71.286972781,41.731296441],[-71.286947168,41.731295913],[-71.28691719,41.731295263],[-71.286884496,41.731294539],[-71.28684832,41.731293763],[-71.286808665,41.731292912],[-71.286766262,41.731292033],[-71.286723036,41.731291084],[-71.286680663,41.731290182],[-71.286640062,41.731289352],[-71.286603032,41.731288528],[-71.286569515,41.73128714],[-71.286541344,41.731284595],[-71.286521209,41.731280189],[-71.286510782,41.731275985],[-71.286507407,41.731271954],[-71.286507876,41.731259377],[-71.286508279,41.731248149],[-71.286508746,41.731236258],[-71.286509799,41.73123164],[-71.28651167,41.731229014],[-71.286535981,41.731216961],[-71.286559342,41.731206233],[-71.286585491,41.731192217],[-71.286610888,41.731174907],[-71.28663104,41.731155483],[-71.286635384,41.731134428],[-71.286622971,41.731112337],[-71.286597239,41.731092599],[-71.286564391,41.731073351],[-71.286533313,41.731054838],[-71.286508435,41.731035101],[-71.286489003,41.731012219],[-71.286475837,41.730986787],[-71.286465495,41.730956786],[-71.286460601,41.730922931],[-71.286461905,41.730888561],[-71.286465865,41.730854265],[-71.286471531,41.730821276],[-71.286473588,41.730790246],[-71.286469443,41.730760372],[-71.286457331,41.730730345],[-71.286439907,41.730700194],[-71.286424284,41.730670092],[-71.286411384,41.730638097],[-71.28640949,41.730633522],[-71.285568475,41.730580525],[-71.285233475,41.730546526],[-71.284866475,41.730513525],[-71.284332474,41.730488526],[-71.283989475,41.730467526],[-71.283757474,41.730449526],[-71.283066474,41.730396525],[-71.282585474,41.730419525],[-71.282570473,41.730365525],[-71.281692473,41.730292526],[-71.281113473,41.730245525],[-71.281036473,41.730242525],[-71.280785473,41.730220525],[-71.280618473,41.730205525],[-71.280511473,41.729654525],[-71.280448473,41.729214525],[-71.280411473,41.728976525],[-71.280403472,41.728791525],[-71.280355473,41.728715525],[-71.280049473,41.728236525],[-71.279689473,41.727689525],[-71.279478473,41.727472525],[-71.279332472,41.727351524],[-71.279159472,41.727208525],[-71.278877473,41.727020524],[-71.278801473,41.726144524],[-71.278732472,41.725524524],[-71.278008472,41.725570525],[-71.277306471,41.725606525],[-71.276004471,41.725674524],[-71.275436471,41.725702525],[-71.275215471,41.725702525],[-71.274712471,41.725680525],[-71.273903471,41.725628525],[-71.273186471,41.725589525],[-71.27305647,41.725587525],[-71.27230847,41.725543525],[-71.27162247,41.725498524],[-71.27097347,41.725470525],[-71.270906469,41.725465525],[-71.270340469,41.725424524],[-71.270088469,41.725429525],[-71.270078469,41.725300525],[-71.27004647,41.725098525],[-71.269886469,41.724304525],[-71.269707469,41.723401524],[-71.269631469,41.723047524],[-71.269558469,41.722693524],[-71.269432469,41.722074524],[-71.269257469,41.721249524],[-71.269150468,41.720665524],[-71.267693468,41.720672524],[-71.266853468,41.720688524],[-71.265106468,41.720700524],[-71.264656467,41.720691524],[-71.264211467,41.720703524],[-71.263385467,41.720708524],[-71.262837467,41.720722524],[-71.262703467,41.720725524],[-71.26203565,41.720873484],[-71.262066918,41.720899506],[-71.262127467,41.720949524],[-71.262150466,41.721049524],[-71.262150348,41.72104971],[-71.262150362,41.721049771],[-71.262127481,41.721085699],[-71.262089467,41.721145524],[-71.262164467,41.721216524],[-71.262192924,41.721256365],[-71.262214722,41.721286073],[-71.262214941,41.72136735],[-71.262168192,41.721437887],[-71.262141467,41.721478525],[-71.262032466,41.721587524],[-71.261964466,41.721701524],[-71.261877466,41.721764524],[-71.261737711,41.721844932],[-71.261731423,41.721848568],[-71.261607466,41.721974524],[-71.261670714,41.721992857],[-71.261676331,41.721994448],[-71.261787066,41.721956188],[-71.261866522,41.721936195],[-71.261892467,41.721929524],[-71.262036466,41.721931524],[-71.262036581,41.721931538],[-71.262161129,41.721946078],[-71.262199165,41.721947504],[-71.262238467,41.721948525],[-71.262396467,41.721911524],[-71.262412208,41.721920151],[-71.262500579,41.721968345],[-71.262522949,41.721986608],[-71.262546467,41.722005525],[-71.262667813,41.722103048],[-71.262743426,41.722162296],[-71.262872833,41.722267555],[-71.262959401,41.722359393],[-71.262959401,41.722359455],[-71.262959467,41.722359524],[-71.262959467,41.722488525],[-71.262959475,41.722488764],[-71.262952788,41.722514286],[-71.262931466,41.722596524],[-71.263009707,41.722628459],[-71.263029721,41.722636505],[-71.263039476,41.722658082],[-71.263055467,41.722692524],[-71.263080442,41.722796421],[-71.26317032,41.72288632],[-71.263251917,41.722977438],[-71.263239889,41.723010542],[-71.263224467,41.723054525],[-71.263240467,41.723089524],[-71.263281473,41.723097726],[-71.26335518,41.723112121],[-71.263417311,41.723167226],[-71.263429418,41.723182973],[-71.263458467,41.723220524],[-71.263498467,41.723272525],[-71.263553909,41.723360107],[-71.263567533,41.723381557],[-71.263708468,41.723450525],[-71.263755697,41.723501512],[-71.263796584,41.723545277],[-71.263855835,41.723653386],[-71.26388649,41.723768412],[-71.263885842,41.723895243],[-71.263951117,41.723976036],[-71.264070218,41.724046077],[-71.26418744,41.724012357],[-71.264319579,41.723981435],[-71.264407273,41.724000184],[-71.264409734,41.724003006],[-71.264428468,41.724023525],[-71.264440467,41.724037524],[-71.264376467,41.724100524],[-71.264277555,41.724184451],[-71.264217647,41.724291696],[-71.264160575,41.724388566],[-71.264095254,41.724459287],[-71.264066589,41.724490392],[-71.26405859,41.724527132],[-71.264049467,41.724569525],[-71.264072467,41.724817524],[-71.264116468,41.725035525],[-71.264122921,41.725067206],[-71.264127942,41.725089642],[-71.264156879,41.725165996],[-71.264167467,41.725193525],[-71.264188275,41.725237221],[-71.264227628,41.725319223],[-71.264313635,41.725382312],[-71.264381818,41.72545314],[-71.264378846,41.725531186],[-71.264334203,41.725597289],[-71.264308468,41.725635525],[-71.264308246,41.725635723],[-71.26430813,41.725635896],[-71.26424485,41.725692602],[-71.264201467,41.725731525],[-71.264172917,41.725751881],[-71.264089436,41.725811738],[-71.264002356,41.725881129],[-71.263965587,41.725911016],[-71.263844303,41.725985892],[-71.26369545,41.72598997],[-71.263678467,41.725990525],[-71.263498467,41.726002525],[-71.263372447,41.726037577],[-71.263347398,41.726044597],[-71.263295467,41.726099525],[-71.263295743,41.726100308],[-71.263326337,41.7261787],[-71.263329467,41.726186525],[-71.263405467,41.726229525],[-71.263567467,41.726234525],[-71.263689088,41.726246607],[-71.263718298,41.726249405],[-71.263905623,41.726280297],[-71.264045947,41.726341417],[-71.26407805,41.726384534],[-71.264095468,41.726407525],[-71.264118216,41.726471467],[-71.264132845,41.726512015],[-71.264105196,41.726588528],[-71.264098468,41.726607525],[-71.264092168,41.72661466],[-71.264001427,41.726719808],[-71.263917807,41.726812942],[-71.263859868,41.726883471],[-71.263835467,41.726913525],[-71.263708468,41.727126525],[-71.263591397,41.727292618],[-71.263548486,41.727353699],[-71.263483577,41.72748042],[-71.263483467,41.727480525],[-71.263382722,41.727586348],[-71.263278566,41.727692886],[-71.263190504,41.727814711],[-71.263127369,41.727894358],[-71.263004467,41.728058525],[-71.263013467,41.728137525],[-71.263017467,41.728175525],[-71.262969467,41.728297526],[-71.262885467,41.728418526],[-71.262705467,41.728654526],[-71.262682467,41.728689526],[-71.262639467,41.728754526],[-71.262577467,41.728891525],[-71.262561104,41.728965159],[-71.262549748,41.729017626],[-71.262550532,41.729128246],[-71.262569318,41.729181309],[-71.262590467,41.729240526],[-71.262590395,41.729240841],[-71.262590445,41.729240981],[-71.262586396,41.729258406],[-71.262567467,41.729341525],[-71.262665467,41.729408526],[-71.262738467,41.729394526],[-71.263115467,41.729322525],[-71.263763468,41.729247525],[-71.264237467,41.729215526],[-71.265076468,41.729185525],[-71.265663468,41.729178526],[-71.265701468,41.730474526],[-71.265694468,41.730834526],[-71.266655468,41.730896526],[-71.267090469,41.730928526],[-71.267464469,41.730948526],[-71.267838469,41.730972526],[-71.268570469,41.731021526],[-71.268753469,41.731035526],[-71.269035469,41.731052526],[-71.26955447,41.731100526],[-71.27002747,41.731343526],[-71.27018047,41.731439526],[-71.27037847,41.731530526],[-71.27052347,41.731572526],[-71.27104247,41.731805526],[-71.27191247,41.732188526],[-71.27262947,41.732512526],[-71.273224471,41.732757526],[-71.273811471,41.732979526],[-71.2743304,41.733221427],[-71.274461471,41.733282526],[-71.274511277,41.733190577],[-71.274524858,41.733165011],[-71.274544766,41.733129695],[-71.274566411,41.73309509],[-71.274592419,41.73306125],[-71.274602428,41.733050257],[-71.274608472,41.733042526],[-71.27461165,41.733040128],[-71.274621933,41.733028833],[-71.27465663,41.73299844],[-71.274694798,41.73297082],[-71.274736444,41.73294394],[-71.274757462,41.732930094],[-71.274824472,41.732879526],[-71.274867095,41.732839512],[-71.27487318,41.732833087],[-71.274880627,41.732822677],[-71.274907676,41.732781668],[-71.274914432,41.732770438],[-71.274935025,41.732739788],[-71.274957353,41.732710514],[-71.274981386,41.732682569],[-71.275008078,41.732654035],[-71.275026655,41.732635669],[-71.275035472,41.732626526],[-71.275043243,41.73262094],[-71.275066569,41.732602992],[-71.275099223,41.732580598],[-71.275134401,41.732560839],[-71.275170461,41.732542409],[-71.275208195,41.732525354],[-71.275229347,41.732517477],[-71.275301235,41.732489761],[-71.275330113,41.732478345],[-71.275374044,41.732461439],[-71.275420532,41.732446551],[-71.275466988,41.732432326],[-71.275485279,41.732426872],[-71.275532702,41.732412041],[-71.2755555,41.732404461],[-71.275595754,41.732391413],[-71.275621917,41.73238414],[-71.275633471,41.732380526],[-71.275666393,41.732376967],[-71.275670513,41.732376465],[-71.275681771,41.732377091],[-71.275710471,41.732378526],[-71.275753472,41.732387526],[-71.275758495,41.732389157],[-71.27580027,41.73240176],[-71.275852601,41.732418762],[-71.275907552,41.732437119],[-71.275959815,41.732456111],[-71.276008534,41.73247569],[-71.276053811,41.732493182],[-71.276069244,41.732498536],[-71.276125256,41.732516328],[-71.276138439,41.732520149],[-71.276177565,41.732527529],[-71.276183749,41.732527716],[-71.276210554,41.732528294],[-71.276218639,41.732525385],[-71.276236472,41.732518526],[-71.276261472,41.732502526],[-71.276326318,41.732447561],[-71.276346817,41.73242933],[-71.276362902,41.732416551],[-71.276366471,41.732413526],[-71.276375472,41.732406526],[-71.27637572,41.732406368],[-71.276375963,41.732406175],[-71.27640855,41.732385062],[-71.27642528,41.732376587],[-71.276443691,41.732367224],[-71.276468118,41.732355938],[-71.276523443,41.732328493],[-71.276535499,41.732322259],[-71.276557257,41.732307505],[-71.276571146,41.732290586],[-71.276578147,41.732270223],[-71.276578632,41.732264047],[-71.276580385,41.732193031],[-71.276580349,41.732189568],[-71.276580047,41.73218768],[-71.27656993,41.732143638],[-71.27656741,41.732135046],[-71.27656466,41.732120699],[-71.276563471,41.732115526],[-71.276563534,41.732111803],[-71.276562755,41.732095268],[-71.276563561,41.732074093],[-71.276564267,41.73205557],[-71.276568246,41.732043778],[-71.276568397,41.73204375],[-71.276568472,41.732043526],[-71.276578472,41.732041526],[-71.276585472,41.732045526],[-71.27658557,41.732045906],[-71.276592741,41.732049588],[-71.276610801,41.732062522],[-71.276630464,41.732079506],[-71.276654353,41.732101827],[-71.276680733,41.73212756],[-71.276706978,41.732157249],[-71.276732237,41.732189521],[-71.276754802,41.732223754],[-71.276773665,41.732260541],[-71.276790752,41.732298605],[-71.276804258,41.732339247],[-71.276813309,41.732379148],[-71.276816227,41.732418237],[-71.276814716,41.732457912],[-71.276815008,41.732496972],[-71.276821502,41.73253481],[-71.276835934,41.732572824],[-71.276853937,41.732610913],[-71.2768746,41.732647772],[-71.276897887,41.732685277],[-71.276920219,41.732725478],[-71.276937137,41.732768162],[-71.276948744,41.732810789],[-71.276958578,41.732853962],[-71.276969264,41.732897892],[-71.276981888,41.732937823],[-71.277000779,41.732975273],[-71.277024066,41.733012823],[-71.277052564,41.733053151],[-71.277085459,41.733093533],[-71.277120257,41.733130694],[-71.277159618,41.73316393],[-71.277205247,41.733194686],[-71.277254484,41.733223528],[-71.277300146,41.733253644],[-71.277343971,41.73328499],[-71.277385236,41.733315006],[-71.277427422,41.733343674],[-71.277468791,41.733370351],[-71.277512883,41.733395112],[-71.277561369,41.733420659],[-71.277612512,41.733446211],[-71.277664441,41.733473777],[-71.277719026,41.733501463],[-71.277774527,41.733529082],[-71.277829998,41.733556769],[-71.277881175,41.733581018],[-71.277930716,41.733601901],[-71.277979671,41.733615511],[-71.278029848,41.733619931],[-71.278081965,41.733619688],[-71.278134082,41.733619492],[-71.278186133,41.733620598],[-71.278239034,41.733623079],[-71.2782919,41.733626863],[-71.278344734,41.733631287],[-71.278400191,41.733636425],[-71.278454729,41.733642225],[-71.278510155,41.733647408],[-71.278563907,41.733651194],[-71.27861507,41.733652939],[-71.278655877,41.733647849],[-71.278685638,41.733631944],[-71.278703337,41.733607874],[-71.278711497,41.733578915],[-71.278715295,41.733548575],[-71.278716468,41.733518161],[-71.278717709,41.733485758],[-71.278718952,41.733452715],[-71.278720223,41.733420335],[-71.278722284,41.73338926],[-71.278726082,41.73335892],[-71.278731616,41.733329956],[-71.278739707,41.733302986],[-71.278754715,41.733280146],[-71.278777492,41.7332621],[-71.278807152,41.73324887],[-71.27884281,41.73324034],[-71.278883584,41.733235936],[-71.27892514,41.733234827],[-71.278964789,41.733237716],[-71.278990068,41.733246821],[-71.278994813,41.733260826],[-71.278982595,41.733280401],[-71.278961324,41.733304441],[-71.278937325,41.733331724],[-71.278920243,41.73336309],[-71.278916278,41.733397386],[-71.278922839,41.733433943],[-71.27893819,41.733471318],[-71.278958855,41.733508154],[-71.278979619,41.733543],[-71.278998813,41.733572516],[-71.279024508,41.733593605],[-71.279059498,41.733602271],[-71.279101838,41.733603838],[-71.279152149,41.733604896],[-71.279205053,41.733606712],[-71.279258805,41.733610498],[-71.279310821,41.73361293],[-71.279359361,41.733613984],[-71.279405278,41.733614301],[-71.279446085,41.733609211],[-71.279480239,41.733594068],[-71.27950417,41.733568775],[-71.279519482,41.733537337],[-71.279533154,41.733503243],[-71.279546792,41.733470452],[-71.279565476,41.733443731],[-71.279591014,41.73342178],[-71.279621693,41.733405236],[-71.279656601,41.73339277],[-71.279693998,41.733384952],[-71.279731125,41.733384406],[-71.279767165,41.733389163],[-71.279799365,41.733401094],[-71.279827785,41.733420221],[-71.279851509,41.733446543],[-71.279873291,41.733478098],[-71.279897566,41.733513043],[-71.279924497,41.733547993],[-71.27995681,41.733580437],[-71.279994603,41.733608387],[-71.280037057,41.733630445],[-71.280082336,41.733647981],[-71.280127584,41.733665471],[-71.280172696,41.73368694],[-71.280211475,41.733712261],[-71.280242119,41.733742027],[-71.280266525,41.733774319],[-71.280288142,41.73380983],[-71.280307037,41.73384664],[-71.28031888,41.733883298],[-71.280322751,41.73392104],[-71.28032216,41.733960122],[-71.280320553,41.734001717],[-71.280318943,41.734044045],[-71.280317268,41.734087676],[-71.280315555,41.734133296],[-71.28031378,41.734179534],[-71.280311969,41.734227144],[-71.280308319,41.734276671],[-71.280303789,41.734324893],[-71.280296732,41.734371052],[-71.280287119,41.734414531],[-71.280275016,41.734453957],[-71.280259504,41.734490678],[-71.280243075,41.734527374],[-71.280226679,41.73456343],[-71.280215663,41.734597575],[-71.280210059,41.734629192],[-71.280209772,41.734659653],[-71.280209516,41.734690046],[-71.280213658,41.734719966],[-71.280224918,41.734748597],[-71.2802452,41.734772854],[-71.280272702,41.734792665],[-71.28030565,41.73480924],[-71.280339417,41.734827165],[-71.280369475,41.734849634],[-71.280390509,41.734877209],[-71.280405994,41.734911267],[-71.280417772,41.734949252],[-71.280425119,41.734988441],[-71.280426334,41.735026177],[-71.280425094,41.735058557],[-71.280425826,41.735085704],[-71.28043391,41.735105707],[-71.280451186,41.735116008],[-71.280478472,41.735118599],[-71.28051475,41.735116724],[-71.280557429,41.735109053],[-71.280603915,41.735094826],[-71.280650538,41.73507662],[-71.28069706,41.735061066],[-71.280745286,41.735046888],[-71.280794195,41.735038657],[-71.280842804,41.735037721],[-71.280892032,41.735043395],[-71.280942108,41.735051083],[-71.280993892,41.735059483],[-71.281041998,41.735071764],[-71.281082816,41.73509048],[-71.281113694,41.735114299],[-71.281143687,41.735138117],[-71.281177319,41.735159999],[-71.281213746,41.735177311],[-71.28125395,41.73518809],[-71.281298913,41.735191035],[-71.281345718,41.735190712],[-71.281396916,41.735191839],[-71.281446076,41.735199502],[-71.281489686,41.735214312],[-71.281527748,41.735235653],[-71.281558493,41.735262742],[-71.281587362,41.735293808],[-71.281617906,41.735326225],[-71.281650223,41.735358006],[-71.281678209,41.735388384],[-71.281698255,41.735419249],[-71.281704068,41.73545178],[-71.28169925,41.735486097],[-71.281688136,41.735522232],[-71.281672594,41.735558953],[-71.281660557,41.735597076],[-71.281656425,41.735636037],[-71.281661937,41.735676502],[-71.281674498,41.735717782],[-71.281693224,41.735759874],[-71.281711852,41.735803932],[-71.281726904,41.735849241],[-71.281734791,41.735882165],[-71.281737591,41.73589381],[-71.281746445,41.73593897],[-71.281753524,41.735985431],[-71.281762444,41.736029288],[-71.281775038,41.736069927],[-71.281790356,41.736108628],[-71.281807482,41.736145365],[-71.281826445,41.736180825],[-71.28185082,41.736213803],[-71.281878874,41.736242191],[-71.281911823,41.736258742],[-71.281949807,41.736258242],[-71.281994524,41.736243988],[-71.282040362,41.736223104],[-71.282087052,41.736202954],[-71.282133371,41.736193345],[-71.282177285,41.736199603],[-71.282216336,41.736217606],[-71.282250654,41.736244817],[-71.282277622,41.736278485],[-71.282299075,41.736317952],[-71.282316818,41.736362031],[-71.282331835,41.736408644],[-71.282349477,41.736455353],[-71.282374306,41.736498851],[-71.282402842,41.736538492],[-71.282431447,41.736575502],[-71.28246025,41.736608557],[-71.282494572,41.736634418],[-71.282536378,41.736650551],[-71.282585406,41.736661484],[-71.282640632,41.736672588],[-71.282702023,41.736684482],[-71.282766924,41.736696474],[-71.282829954,41.736711092],[-71.282891931,41.736730259],[-71.282952888,41.73675338],[-71.28301289,41.736778489],[-71.283071975,41.736804237],[-71.283128371,41.736830574],[-71.283179385,41.736859462],[-71.283226655,41.736894198],[-71.283271955,41.736933527],[-71.283315514,41.736972852],[-71.283363671,41.737006972],[-71.283416557,41.737033211],[-71.283470563,41.737052912],[-71.283526374,41.737071952],[-71.283583102,41.7370904],[-71.283641704,41.737105535],[-71.283701595,41.737109444],[-71.283762905,41.737100183],[-71.283825334,41.737084956],[-71.283886746,41.737072379],[-71.283943328,41.73707093],[-71.283994127,41.737081934],[-71.284042852,41.73710151],[-71.284094885,41.73712713],[-71.284150395,41.737154128],[-71.284209648,41.737175233],[-71.284267431,41.737189017],[-71.284319968,41.737200733],[-71.284368827,41.737216994],[-71.284416534,41.737239838],[-71.28446322,41.737266636],[-71.284508138,41.737292768],[-71.284554172,41.737313574],[-71.284602181,41.737328483],[-71.284652782,41.737344152],[-71.284702257,41.737367708],[-71.284748058,41.737394482],[-71.284797635,41.737415363],[-71.284850273,41.737424449],[-71.284904133,41.737424252],[-71.284959829,41.737422824],[-71.285020572,41.737428061],[-71.285082683,41.737443934],[-71.285142655,41.737469705],[-71.285196158,41.737503262],[-71.285240474,41.737545241],[-71.285276716,41.737591001],[-71.285306626,41.737640591],[-71.285334797,41.737689492],[-71.285363919,41.737737091],[-71.285396653,41.73778209],[-71.285436505,41.737825959],[-71.285481707,41.737867962],[-71.285526156,41.737906625]]]]}}"}, +{"type": "precinct", "typeId": 3402, "areaId": 26034, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":373,\"NAME\":\"3402\",\"SHAPE_Length\":0.32631105090924,\"SHAPE_Area\":-0.0012031851637858},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.258350677,41.71429361],[-71.258351186,41.714293979],[-71.258355914,41.714299563],[-71.258351465,41.714293523],[-71.258350677,41.71429361]]],[[[-71.258519028,41.714578388],[-71.258546121,41.714638179],[-71.258605617,41.714684912],[-71.258663846,41.714719109],[-71.258682799,41.714768569],[-71.258662314,41.714826751],[-71.258644738,41.714882651],[-71.258658221,41.714909185],[-71.258717375,41.71494112],[-71.258786475,41.71497438],[-71.258855521,41.715005421],[-71.258908988,41.715047639],[-71.258902465,41.715041523],[-71.258524818,41.714528858],[-71.258519028,41.714578388]]],[[[-71.258962847,41.715108763],[-71.258982037,41.715127487],[-71.259015742,41.715163626],[-71.258918465,41.715056523],[-71.25891405,41.715052384],[-71.258962847,41.715108763]]],[[[-71.259049573,41.715219745],[-71.259081244,41.715256262],[-71.259080465,41.715254523],[-71.259051465,41.715221523],[-71.259031465,41.715187523],[-71.259029488,41.715184417],[-71.259049573,41.715219745]]],[[[-71.259138016,41.715321078],[-71.25916869,41.71532071],[-71.259172515,41.715320648],[-71.259172465,41.715320523],[-71.259138016,41.715321078]]],[[[-71.259110268,41.715321411],[-71.259110414,41.71532141],[-71.259109949,41.715320371],[-71.259110268,41.715321411]]],[[[-71.259185708,41.715356902],[-71.259207661,41.715379589],[-71.259209597,41.715381506],[-71.259187465,41.715358523],[-71.259179796,41.715339096],[-71.259185708,41.715356902]]],[[[-71.259265489,41.715439741],[-71.25926896,41.715442251],[-71.259265465,41.715439523],[-71.259262876,41.715436834],[-71.259265489,41.715439741]]],[[[-71.259293729,41.715462372],[-71.259300717,41.715467037],[-71.259290631,41.715459165],[-71.259293729,41.715462372]]],[[[-71.259352285,41.715523637],[-71.259352465,41.715523523],[-71.259339506,41.715508874],[-71.259352285,41.715523637]]],[[[-71.259442654,41.715656155],[-71.259453527,41.715654605],[-71.259453466,41.715654523],[-71.259442654,41.715656155]]],[[[-71.259322272,41.715542931],[-71.259385216,41.715639204],[-71.259400256,41.715662202],[-71.259322598,41.715542728],[-71.259322272,41.715542931]]],[[[-71.259466967,41.71567695],[-71.259484338,41.715700472],[-71.259502661,41.715722511],[-71.259518042,41.715741454],[-71.25945452,41.715655942],[-71.259466967,41.71567695]]],[[[-71.259531214,41.715759275],[-71.259537038,41.715773854],[-71.259531466,41.715759523],[-71.259527967,41.715754814],[-71.259531214,41.715759275]]],[[[-71.259585198,41.715868474],[-71.259573902,41.715914779],[-71.259585465,41.715868523],[-71.2595603,41.715827214],[-71.259585198,41.715868474]]],[[[-71.259641259,41.716026594],[-71.259688579,41.716021665],[-71.259688466,41.716021523],[-71.259641465,41.716026523],[-71.25962402,41.716003595],[-71.259641259,41.716026594]]],[[[-71.259765103,41.716071791],[-71.259767737,41.716076491],[-71.259765466,41.716071523],[-71.259762073,41.71606833],[-71.259765103,41.716071791]]],[[[-71.259781548,41.716122823],[-71.259782364,41.716133184],[-71.259782463,41.716133444],[-71.259781669,41.71611201],[-71.259781548,41.716122823]]],[[[-71.259820445,41.716242578],[-71.259850293,41.716292701],[-71.259873342,41.716348824],[-71.259873118,41.716369368],[-71.259873465,41.716348524],[-71.259850465,41.716292524],[-71.259820466,41.716242523],[-71.259820027,41.716241267],[-71.259820445,41.716242578]]],[[[-71.25983719,41.716459138],[-71.259807591,41.716483423],[-71.259837465,41.716459523],[-71.259872465,41.716408521],[-71.25983719,41.716459138]]],[[[-71.259760229,41.716561042],[-71.259772353,41.716616547],[-71.259776092,41.71662559],[-71.259772465,41.716616523],[-71.259760465,41.716561524],[-71.259777516,41.71652237],[-71.259760229,41.716561042]]],[[[-71.259815466,41.716727347],[-71.259838491,41.716781983],[-71.259841097,41.716795875],[-71.259838466,41.716781523],[-71.259800862,41.716687515],[-71.259815466,41.716727347]]],[[[-71.259829301,41.717036726],[-71.259824648,41.717047506],[-71.259829465,41.717036523],[-71.259830507,41.717012897],[-71.259829301,41.717036726]]],[[[-71.259791244,41.717150031],[-71.259785708,41.717175252],[-71.259797042,41.717125869],[-71.259791244,41.717150031]]],[[[-71.259738292,41.717263511],[-71.259726562,41.717281862],[-71.259738465,41.717263524],[-71.259750397,41.717248452],[-71.259738292,41.717263511]]],[[[-71.259696108,41.717370222],[-71.259700249,41.717422097],[-71.259652474,41.717467692],[-71.259700465,41.717422524],[-71.259696465,41.717370523],[-71.259698771,41.717347462],[-71.259696108,41.717370222]]],[[[-71.259438313,41.717713427],[-71.2594309,41.717730298],[-71.259438465,41.717713524],[-71.259450067,41.717704823],[-71.259438313,41.717713427]]],[[[-71.259385553,41.717791278],[-71.259385592,41.71779141],[-71.259392112,41.717785542],[-71.259385553,41.717791278]]],[[[-71.259220819,41.718002345],[-71.259234318,41.717975813],[-71.25923414,41.717975789],[-71.259220819,41.718002345]]],[[[-71.259206458,41.718155024],[-71.259199525,41.718198938],[-71.259213465,41.718120524],[-71.259214228,41.718116455],[-71.259206458,41.718155024]]],[[[-71.259272928,41.718247737],[-71.25930535,41.718262621],[-71.259305465,41.718262524],[-71.259228062,41.718225255],[-71.259272928,41.718247737]]],[[[-71.259213466,41.718418521],[-71.259224465,41.718361523],[-71.259256466,41.718303523],[-71.259256328,41.718303618],[-71.259223969,41.718361912],[-71.25921335,41.718418467],[-71.259213466,41.718418521]]],[[[-71.259213466,41.718418521],[-71.259263386,41.718440847],[-71.259282412,41.718462552],[-71.259282465,41.718462523],[-71.259263465,41.718440523],[-71.259213466,41.718418521]]],[[[-71.25915535,41.718615889],[-71.259177379,41.718671305],[-71.259155465,41.718615523],[-71.259156048,41.718602896],[-71.25915535,41.718615889]]],[[[-71.259243456,41.718743242],[-71.259270465,41.718695523],[-71.259270018,41.718695514],[-71.259243456,41.718743242]]],[[[-71.259244912,41.718810738],[-71.259252247,41.718873735],[-71.259248781,41.718905106],[-71.259252465,41.718873524],[-71.259240856,41.718752588],[-71.259244912,41.718810738]]],[[[-71.259273684,41.718944743],[-71.259344142,41.718950516],[-71.25933821,41.718994389],[-71.25933847,41.718994491],[-71.259344465,41.718950524],[-71.259273465,41.718944524],[-71.259266746,41.718941884],[-71.259273684,41.718944743]]],[[[-71.259406179,41.719020991],[-71.259484703,41.719032636],[-71.259568018,41.71903679],[-71.259603469,41.719043354],[-71.259568466,41.719036524],[-71.259484465,41.719032524],[-71.259406465,41.719020524],[-71.259342238,41.718995966],[-71.259406179,41.719020991]]],[[[-71.260044913,41.719096834],[-71.260119466,41.719108524],[-71.259986154,41.719084783],[-71.260044913,41.719096834]]],[[[-71.260233295,41.719190236],[-71.260282239,41.719224354],[-71.26018111,41.719148507],[-71.260233295,41.719190236]]],[[[-71.260361119,41.71932447],[-71.260358937,41.719356765],[-71.260361466,41.719324524],[-71.260342466,41.719269524],[-71.260342097,41.719269247],[-71.260361119,41.71932447]]],[[[-71.260357405,41.719379439],[-71.260391381,41.719436203],[-71.260426228,41.71948844],[-71.260446318,41.719544602],[-71.260442209,41.719582533],[-71.260464147,41.719634217],[-71.260468105,41.719639189],[-71.260464466,41.719634524],[-71.260442466,41.719582524],[-71.260446466,41.719544524],[-71.260426466,41.719488524],[-71.260357649,41.719375824],[-71.260357405,41.719379439]]],[[[-71.260546547,41.719728907],[-71.260615519,41.719756997],[-71.260651166,41.719799585],[-71.260647486,41.719812246],[-71.26064481,41.719814326],[-71.260647465,41.719812524],[-71.260651466,41.719799524],[-71.260615466,41.719756524],[-71.260546466,41.719728524],[-71.260534983,41.719716773],[-71.260546547,41.719728907]]],[[[-71.260573102,41.719852547],[-71.26059545,41.71987592],[-71.260603715,41.719877972],[-71.260627292,41.719898591],[-71.260603466,41.719877524],[-71.260595466,41.719875524],[-71.260573466,41.719852524],[-71.26058242,41.719842193],[-71.260573102,41.719852547]]],[[[-71.26093336,41.720113135],[-71.261046283,41.720191811],[-71.26108019,41.720308765],[-71.26109526,41.720317657],[-71.261080466,41.720308524],[-71.261046466,41.720191524],[-71.261018466,41.720171524],[-71.260831133,41.72003799],[-71.26093336,41.720113135]]],[[[-71.261467198,41.720526391],[-71.261468663,41.720526678],[-71.26138966,41.720489594],[-71.261467198,41.720526391]]],[[[-71.261588282,41.720550071],[-71.261562467,41.720544524],[-71.261516246,41.720535983],[-71.261588282,41.720550071]]],[[[-71.261775767,41.720593649],[-71.261903631,41.720622222],[-71.261683466,41.720570524],[-71.261666672,41.720566915],[-71.261775767,41.720593649]]],[[[-71.261872511,41.720681346],[-71.261841013,41.720763175],[-71.261899262,41.720810635],[-71.261907692,41.720814335],[-71.261899466,41.720810524],[-71.261841466,41.720763524],[-71.261872467,41.720681524],[-71.261930467,41.720628524],[-71.261930136,41.720628446],[-71.261872511,41.720681346]]],[[[-71.26212747,41.7209499],[-71.262150348,41.72104971],[-71.262150466,41.721049524],[-71.262127467,41.720949524],[-71.262066918,41.720899506],[-71.26212747,41.7209499]]],[[[-71.262089141,41.7211459],[-71.26216397,41.721216903],[-71.262192924,41.721256365],[-71.262164467,41.721216524],[-71.262089467,41.721145524],[-71.262127481,41.721085699],[-71.262089141,41.7211459]]],[[[-71.262141456,41.721478227],[-71.262032169,41.72158775],[-71.261964473,41.721701269],[-71.261876969,41.721764389],[-71.261737711,41.721844932],[-71.261877466,41.721764524],[-71.261964466,41.721701524],[-71.262032466,41.721587524],[-71.262141467,41.721478525],[-71.262168192,41.721437887],[-71.262141456,41.721478227]]],[[[-71.261866522,41.721936195],[-71.261892353,41.721929696],[-71.262036466,41.721931524],[-71.261892467,41.721929524],[-71.261866522,41.721936195]]],[[[-71.262238591,41.721948982],[-71.262396818,41.721911758],[-71.262412208,41.721920151],[-71.262396467,41.721911524],[-71.262238467,41.721948525],[-71.262199165,41.721947504],[-71.262238591,41.721948982]]],[[[-71.261731113,41.721848748],[-71.261599634,41.721949648],[-71.26160702,41.721974819],[-71.261670714,41.721992857],[-71.261607466,41.721974524],[-71.261731423,41.721848568],[-71.261731113,41.721848748]]],[[[-71.26261221,41.72205948],[-71.262667813,41.722103048],[-71.262546467,41.722005525],[-71.262522949,41.721986608],[-71.26261221,41.72205948]]],[[[-71.262959467,41.722488525],[-71.262959467,41.722359524],[-71.262959401,41.722359455],[-71.262959467,41.722488525]]],[[[-71.262931147,41.722596876],[-71.263009707,41.722628459],[-71.262931466,41.722596524],[-71.262952788,41.722514286],[-71.262931147,41.722596876]]],[[[-71.263055095,41.722692633],[-71.263080326,41.722796304],[-71.263080442,41.722796421],[-71.263055467,41.722692524],[-71.263039476,41.722658082],[-71.263055095,41.722692633]]],[[[-71.263223978,41.723054335],[-71.263240149,41.723089655],[-71.263281473,41.723097726],[-71.263240467,41.723089524],[-71.263224467,41.723054525],[-71.263239889,41.723010542],[-71.263223978,41.723054335]]],[[[-71.263498367,41.723272659],[-71.263553909,41.723360107],[-71.263498467,41.723272525],[-71.263458467,41.723220524],[-71.263429418,41.723182973],[-71.263498367,41.723272659]]],[[[-71.263567597,41.723381658],[-71.263708434,41.723450921],[-71.263755697,41.723501512],[-71.263708468,41.723450525],[-71.263567533,41.723381557],[-71.263567597,41.723381658]]],[[[-71.264427428,41.7240233],[-71.264440043,41.724037757],[-71.264376779,41.724100151],[-71.264277658,41.724184266],[-71.264277555,41.724184451],[-71.264376467,41.724100524],[-71.264440467,41.724037524],[-71.264428468,41.724023525],[-71.264409734,41.724003006],[-71.264427428,41.7240233]]],[[[-71.264066609,41.724490301],[-71.264066589,41.724490392],[-71.264095254,41.724459287],[-71.264066609,41.724490301]]],[[[-71.264049408,41.724569301],[-71.264058358,41.724684465],[-71.264072462,41.724817866],[-71.264097306,41.724952753],[-71.264122921,41.725067206],[-71.264116468,41.725035525],[-71.264072467,41.724817524],[-71.264049467,41.724569525],[-71.26405859,41.724527132],[-71.264049408,41.724569301]]],[[[-71.264167339,41.725193594],[-71.264188275,41.725237221],[-71.264167467,41.725193525],[-71.264156879,41.725165996],[-71.264167339,41.725193594]]],[[[-71.264308246,41.725635723],[-71.264308468,41.725635525],[-71.264334203,41.725597289],[-71.264308246,41.725635723]]],[[[-71.264201853,41.725731133],[-71.264172917,41.725751881],[-71.264201467,41.725731525],[-71.26424485,41.725692602],[-71.264201853,41.725731133]]],[[[-71.264074924,41.725822143],[-71.264002356,41.725881129],[-71.264089436,41.725811738],[-71.264074924,41.725822143]]],[[[-71.263678127,41.725990444],[-71.26349834,41.726002241],[-71.263372447,41.726037577],[-71.263498467,41.726002525],[-71.263678467,41.725990525],[-71.26369545,41.72598997],[-71.263678127,41.725990444]]],[[[-71.263295284,41.726099131],[-71.263295743,41.726100308],[-71.263295467,41.726099525],[-71.263347398,41.726044597],[-71.263295284,41.726099131]]],[[[-71.263329458,41.726186698],[-71.263405406,41.726229574],[-71.263567028,41.726234915],[-71.263689088,41.726246607],[-71.263567467,41.726234525],[-71.263405467,41.726229525],[-71.263329467,41.726186525],[-71.263326337,41.7261787],[-71.263329458,41.726186698]]],[[[-71.264095129,41.726407472],[-71.264118216,41.726471467],[-71.264095468,41.726407525],[-71.26407805,41.726384534],[-71.264095129,41.726407472]]],[[[-71.264098335,41.726607514],[-71.264092168,41.72661466],[-71.264098468,41.726607525],[-71.264105196,41.726588528],[-71.264098335,41.726607514]]],[[[-71.263835566,41.726913054],[-71.263770679,41.727017272],[-71.263708124,41.727126526],[-71.263637573,41.72722689],[-71.263591397,41.727292618],[-71.263708468,41.727126525],[-71.263835467,41.726913525],[-71.263859868,41.726883471],[-71.263835566,41.726913054]]],[[[-71.263094077,41.727936358],[-71.263004334,41.72805818],[-71.263017397,41.728175296],[-71.262969355,41.728297386],[-71.262885478,41.728418076],[-71.262796039,41.728531779],[-71.262705438,41.72865417],[-71.262639036,41.728754565],[-71.262577078,41.728891354],[-71.262561104,41.728965159],[-71.262577467,41.728891525],[-71.262639467,41.728754526],[-71.262682467,41.728689526],[-71.262705467,41.728654526],[-71.262885467,41.728418526],[-71.262969467,41.728297526],[-71.263017467,41.728175525],[-71.263013467,41.728137525],[-71.263004467,41.728058525],[-71.263127369,41.727894358],[-71.263094077,41.727936358]]],[[[-71.262590395,41.729240841],[-71.262590467,41.729240526],[-71.262569318,41.729181309],[-71.262590395,41.729240841]]],[[[-71.276585275,41.732045755],[-71.27658557,41.732045906],[-71.276585472,41.732045526],[-71.276578472,41.732041526],[-71.276568472,41.732043526],[-71.276568397,41.73204375],[-71.276578021,41.732042013],[-71.276585275,41.732045755]]],[[[-71.276563471,41.732115526],[-71.27656466,41.732120699],[-71.276563722,41.732115806],[-71.276563534,41.732111803],[-71.276563471,41.732115526]]],[[[-71.276580047,41.73218768],[-71.276577481,41.732171633],[-71.276572872,41.732153672],[-71.27656993,41.732143638],[-71.276580047,41.73218768]]],[[[-71.276578632,41.732264047],[-71.276579807,41.732249095],[-71.276580613,41.732227943],[-71.276580532,41.732207429],[-71.276580385,41.732193031],[-71.276578632,41.732264047]]],[[[-71.276468118,41.732355938],[-71.276477848,41.732351442],[-71.276508492,41.732336225],[-71.276523443,41.732328493],[-71.276468118,41.732355938]]],[[[-71.275633471,41.732380526],[-71.275621917,41.73238414],[-71.275633251,41.732380989],[-71.275652584,41.732378649],[-71.275666393,41.732376967],[-71.275633471,41.732380526]]],[[[-71.275710164,41.732378669],[-71.27575312,41.732387535],[-71.275758495,41.732389157],[-71.275753472,41.732387526],[-71.275710471,41.732378526],[-71.275681771,41.732377091],[-71.275710164,41.732378669]]],[[[-71.276375472,41.732406526],[-71.276366471,41.732413526],[-71.276362902,41.732416551],[-71.27637572,41.732406368],[-71.276375472,41.732406526]]],[[[-71.275485279,41.732426872],[-71.275512556,41.732418739],[-71.275532702,41.732412041],[-71.275485279,41.732426872]]],[[[-71.276261472,41.732502526],[-71.276261874,41.732502277],[-71.276289246,41.73247969],[-71.27631849,41.732454523],[-71.276326318,41.732447561],[-71.276261472,41.732502526]]],[[[-71.276096502,41.732507993],[-71.276125256,41.732516328],[-71.276069244,41.732498536],[-71.276096502,41.732507993]]],[[[-71.275229347,41.732517477],[-71.275248516,41.732510339],[-71.27528884,41.732494661],[-71.275301235,41.732489761],[-71.275229347,41.732517477]]],[[[-71.276261472,41.732502526],[-71.276236472,41.732518526],[-71.276218639,41.732525385],[-71.276236537,41.732518945],[-71.276261472,41.732502526]]],[[[-71.276177889,41.73252759],[-71.276183749,41.732527716],[-71.276177565,41.732527529],[-71.276177889,41.73252759]]],[[[-71.275035472,41.732626526],[-71.275026655,41.732635669],[-71.27503562,41.732626806],[-71.275043243,41.73262094],[-71.275035472,41.732626526]]],[[[-71.274880627,41.732822677],[-71.274895577,41.732801777],[-71.274907676,41.732781668],[-71.274880627,41.732822677]]],[[[-71.274824472,41.732879526],[-71.274757462,41.732930094],[-71.274776317,41.732917673],[-71.274812682,41.732890644],[-71.274845571,41.732862237],[-71.274867095,41.732839512],[-71.274824472,41.732879526]]],[[[-71.274608472,41.733042526],[-71.274602428,41.733050257],[-71.27461165,41.733040128],[-71.274608472,41.733042526]]],[[[-71.277314474,41.758995531],[-71.277352474,41.759011531],[-71.277597253,41.75911554],[-71.280159475,41.760202531],[-71.283427555,41.761588868],[-71.283501478,41.761621818],[-71.283526366,41.761632485],[-71.283615947,41.761464636],[-71.283679917,41.761334266],[-71.283641966,41.761275261],[-71.283539487,41.761194753],[-71.283510812,41.761102057],[-71.283512525,41.760992243],[-71.283509689,41.760854522],[-71.283495294,41.760738983],[-71.283490111,41.760618203],[-71.283497499,41.760501037],[-71.28354339,41.760396772],[-71.283554788,41.760295279],[-71.283592655,41.760188163],[-71.283503091,41.760100452],[-71.283368118,41.760046502],[-71.28320226,41.759994688],[-71.283087784,41.759922092],[-71.283079431,41.75987181],[-71.283042468,41.759810086],[-71.282937511,41.75972278],[-71.282849141,41.75959848],[-71.282817044,41.759470422],[-71.282825659,41.759343104],[-71.282785947,41.759254252],[-71.282682521,41.75917509],[-71.282562611,41.759102392],[-71.282436449,41.759026891],[-71.282322725,41.75893129],[-71.282232246,41.758844216],[-71.282204695,41.758772562],[-71.282199652,41.758647024],[-71.282188114,41.75852749],[-71.282100696,41.758429628],[-71.282006006,41.75833301],[-71.281838489,41.758276412],[-71.281694382,41.758224363],[-71.281541471,41.758220207],[-71.281356848,41.758245401],[-71.281175157,41.758207504],[-71.281043661,41.758156987],[-71.280914822,41.758052299],[-71.280899166,41.758003856],[-71.280955459,41.757886234],[-71.281011104,41.75776111],[-71.280984717,41.757679967],[-71.280870658,41.757567394],[-71.28078783,41.757468282],[-71.280690562,41.757366833],[-71.280688639,41.757348831],[-71.2806871,41.757334261],[-71.280722749,41.757323352],[-71.280802531,41.757348523],[-71.280934464,41.757413951],[-71.281086004,41.757488541],[-71.281203632,41.757575415],[-71.281290641,41.757684803],[-71.281427193,41.757775441],[-71.281568301,41.757864738],[-71.281701597,41.757943089],[-71.281870885,41.757972568],[-71.282008366,41.758005577],[-71.282175983,41.758059431],[-71.28222886,41.758048166],[-71.282344439,41.757973649],[-71.282388896,41.757914091],[-71.282439031,41.757792272],[-71.282407843,41.75774835],[-71.282297554,41.757658198],[-71.282230698,41.757540364],[-71.282249029,41.757421366],[-71.282214348,41.757344804],[-71.28206267,41.757274309],[-71.282023948,41.757182714],[-71.282032528,41.757056768],[-71.282112088,41.756976169],[-71.282269936,41.756910537],[-71.282377116,41.756844672],[-71.282468674,41.756729014],[-71.282520611,41.756606558],[-71.282509825,41.756490409],[-71.282459346,41.756370846],[-71.282347975,41.756258326],[-71.282194025,41.756174174],[-71.282022434,41.756131769],[-71.281906159,41.756069757],[-71.281873752,41.756052475],[-71.281847958,41.756066262],[-71.281847275,41.756069645],[-71.281822146,41.756193913],[-71.2817856,41.75631665],[-71.281720849,41.756443655],[-71.281662196,41.756465635],[-71.281542387,41.756445832],[-71.281378097,41.756430014],[-71.281334168,41.756387874],[-71.28127958,41.756283122],[-71.28124144,41.756146156],[-71.281286814,41.756068557],[-71.281291268,41.75606095],[-71.281381366,41.75596155],[-71.281364077,41.75590837],[-71.281254578,41.755793817],[-71.281195389,41.755775843],[-71.281080024,41.755815095],[-71.281037452,41.755787206],[-71.280966791,41.755676088],[-71.280880502,41.755571481],[-71.280830264,41.755445149],[-71.280760212,41.755370645],[-71.280730929,41.755324005],[-71.280671338,41.755262626],[-71.280561771,41.755177893],[-71.28045496,41.755064122],[-71.280360891,41.754948477],[-71.280350615,41.754845272],[-71.280313967,41.754746271],[-71.280296111,41.754653732],[-71.280355258,41.754531405],[-71.280433624,41.75443315],[-71.280564085,41.754345994],[-71.280694271,41.754267688],[-71.28079035,41.754151468],[-71.280878736,41.754106242],[-71.280926246,41.754064414],[-71.280920449,41.753963939],[-71.280936612,41.75382726],[-71.281005598,41.753765485],[-71.281114516,41.753672524],[-71.281189965,41.753551165],[-71.281274685,41.753478764],[-71.281395998,41.7533955],[-71.28148905,41.753288696],[-71.28148328,41.753243176],[-71.28139814,41.753187397],[-71.281330601,41.753119736],[-71.281295994,41.753013352],[-71.281247151,41.752899258],[-71.281245234,41.752789346],[-71.281224999,41.752686626],[-71.28113022,41.752564897],[-71.281141245,41.752474929],[-71.281237444,41.752412268],[-71.281387496,41.752364094],[-71.281543225,41.752307904],[-71.281690465,41.752206166],[-71.281687277,41.752164744],[-71.281579306,41.752114639],[-71.281542205,41.752086211],[-71.281577381,41.75203393],[-71.28154406,41.751971618],[-71.28148922,41.751959782],[-71.281389285,41.751998675],[-71.281257307,41.752075629],[-71.281073686,41.752098743],[-71.280957009,41.752094587],[-71.280975131,41.752010189],[-71.281060398,41.75192018],[-71.28113343,41.751817752],[-71.281228581,41.751730665],[-71.281264413,41.751628943],[-71.281323688,41.751503231],[-71.281386561,41.751379607],[-71.281389809,41.751250152],[-71.281421252,41.751172755],[-71.281533799,41.751079869],[-71.281676917,41.7510221],[-71.28182037,41.751009749],[-71.28200194,41.75105032],[-71.28217903,41.751033824],[-71.282339202,41.751008263],[-71.282336042,41.750994627],[-71.282205852,41.750931948],[-71.282106212,41.750820982],[-71.282086253,41.750708749],[-71.282032776,41.750682691],[-71.28199438,41.750694213],[-71.281927436,41.750749269],[-71.281813668,41.750851643],[-71.281637084,41.750881037],[-71.28148435,41.750928428],[-71.281401582,41.75093982],[-71.28131841,41.750907805],[-71.281143065,41.750842249],[-71.281005704,41.750805237],[-71.280812273,41.750795629],[-71.280632905,41.750826274],[-71.280472019,41.750846435],[-71.280359703,41.750790854],[-71.280203385,41.750725013],[-71.280108504,41.750634453],[-71.280088245,41.750503878],[-71.280004543,41.750404078],[-71.280027279,41.750372631],[-71.280104828,41.750270967],[-71.2801834,41.750164571],[-71.280288916,41.750064767],[-71.280392083,41.749981881],[-71.280511074,41.749941996],[-71.280597372,41.749961188],[-71.280712917,41.75002766],[-71.280798892,41.750141757],[-71.280850093,41.750154227],[-71.28087208,41.750118708],[-71.280831732,41.750021689],[-71.280810445,41.749923655],[-71.280864377,41.749851401],[-71.281006756,41.749759053],[-71.281107065,41.749680849],[-71.281172386,41.749564067],[-71.281166624,41.749489389],[-71.281081457,41.749434273],[-71.281015614,41.749372058],[-71.281030201,41.749311986],[-71.281003093,41.749282342],[-71.280867022,41.749262255],[-71.280757048,41.749218938],[-71.280606061,41.749212109],[-71.280431497,41.749178455],[-71.280260904,41.74916251],[-71.28022786,41.74909137],[-71.280179835,41.748980661],[-71.280203403,41.748866521],[-71.28017936,41.748797617],[-71.280082714,41.748706345],[-71.280067001,41.748603679],[-71.280078204,41.748479819],[-71.280110605,41.74834548],[-71.280153501,41.748222847],[-71.28022647,41.748093297],[-71.280235898,41.747997197],[-71.280211323,41.747860485],[-71.280225105,41.747741387],[-71.280272044,41.747633101],[-71.280347757,41.747531387],[-71.280397516,41.747419721],[-71.280485226,41.747310141],[-71.280572657,41.747210691],[-71.280580038,41.747150468],[-71.280492874,41.747072936],[-71.280381992,41.747001784],[-71.280389711,41.74695924],[-71.280461987,41.746906962],[-71.280527589,41.746922387],[-71.280667861,41.746980513],[-71.280790063,41.747009836],[-71.280870358,41.746934018],[-71.280951474,41.746832383],[-71.281069552,41.746736238],[-71.281139251,41.746624222],[-71.281158969,41.746545933],[-71.28110034,41.746482497],[-71.281060224,41.746407891],[-71.281067038,41.746280546],[-71.281116494,41.746149921],[-71.281185279,41.746037217],[-71.281201199,41.745907992],[-71.281203291,41.745786676],[-71.281150407,41.745686066],[-71.281050883,41.745571028],[-71.281015563,41.745487009],[-71.281034133,41.745359893],[-71.28106673,41.745247897],[-71.281090294,41.745133734],[-71.281016544,41.745090394],[-71.280870968,41.745057254],[-71.280810164,41.745005294],[-71.280742599,41.744966128],[-71.280613353,41.745015964],[-71.280478161,41.74508134],[-71.280338384,41.745120842],[-71.280239867,41.745087219],[-71.280074146,41.745060489],[-71.279893542,41.745046376],[-71.279743755,41.745030812],[-71.279608343,41.744990394],[-71.279475452,41.744900516],[-71.279393594,41.744799392],[-71.279314523,41.744696239],[-71.279220129,41.7445915],[-71.279152814,41.744488552],[-71.2791438,41.744374487],[-71.279164243,41.744245362],[-71.279211866,41.744115352],[-71.279191689,41.744068889],[-71.279061956,41.744020455],[-71.279046411,41.74401217],[-71.279009414,41.744008737],[-71.278979598,41.744003465],[-71.278948148,41.743994188],[-71.278915095,41.743980243],[-71.278877746,41.743963569],[-71.278838659,41.743946205],[-71.27879603,41.743928765],[-71.278751626,41.74391258],[-71.278708863,41.743898433],[-71.278670528,41.743884386],[-71.278641116,41.74386855],[-71.278617974,41.743849524],[-71.278600346,41.743825318],[-71.278585544,41.743796566],[-71.278573534,41.743763863],[-71.2785651,41.743729955],[-71.278560241,41.743695436],[-71.278559679,41.74366367],[-71.278560786,41.743634583],[-71.278568844,41.743608962],[-71.278589237,41.743583594],[-71.278621144,41.743557813],[-71.278658333,41.743532135],[-71.27869647,41.74350584],[-71.278734544,41.743480209],[-71.278768189,41.743455118],[-71.278794815,41.743428572],[-71.278815276,41.743401192],[-71.278829635,41.743372404],[-71.27884219,41.743344208],[-71.278852972,41.743316672],[-71.278865527,41.743288499],[-71.278878902,41.74326163],[-71.278895716,41.743238199],[-71.278918595,41.743218164],[-71.278946592,41.743201569],[-71.278979803,41.743187066],[-71.279016485,41.743175267],[-71.279058382,41.743165583],[-71.279105395,41.743159979],[-71.279154964,41.743157078],[-71.279205348,41.743156809],[-71.279255667,41.743157912],[-71.279305985,41.743158992],[-71.279354598,41.743158697],[-71.279396296,41.743153654],[-71.279425928,41.743141042],[-71.279441723,41.743120879],[-71.2794445,41.743094447],[-71.279443085,41.743062016],[-71.279440917,41.743026222],[-71.279439637,41.742989812],[-71.279440058,41.742956081],[-71.279442151,41.742924366],[-71.279450445,41.74289216],[-71.279465039,41.742856741],[-71.279482356,41.742820069],[-71.279496134,41.742782613],[-71.27950817,41.7427452],[-71.279519287,41.74270902],[-71.279534734,41.742674311],[-71.279554508,41.742642287],[-71.279571558,41.742612247],[-71.279581592,41.742580044],[-71.279587295,41.742546392],[-71.27959831,41.74251291],[-71.279618119,41.742479559],[-71.279641603,41.742443037],[-71.279668599,41.742406567],[-71.279693854,41.742370093],[-71.279719863,41.742336228],[-71.279747475,41.742307055],[-71.279780985,41.742285256],[-71.279818721,41.742268863],[-71.279859833,41.742256524],[-71.27989914,41.742244799],[-71.279933265,41.74223096],[-71.279960471,41.742213014],[-71.279981683,41.742189019],[-71.279998733,41.742158933],[-71.280015984,41.742123565],[-71.280032449,41.742085566],[-71.280044619,41.742044813],[-71.280051479,41.742003274],[-71.280056595,41.741962371],[-71.280063354,41.741923461],[-71.280073685,41.741884649],[-71.280086609,41.741846551],[-71.280104813,41.741809218],[-71.280112734,41.741796655],[-71.280128329,41.741772009],[-71.280158013,41.74173495],[-71.280188585,41.741697229],[-71.280219122,41.741660834],[-71.280246967,41.741625692],[-71.280271235,41.741591801],[-71.280291929,41.74155852],[-71.280309997,41.741525166],[-71.280328032,41.741492475],[-71.280349511,41.741461826],[-71.280375316,41.741433952],[-71.280405485,41.741406796],[-71.280436605,41.741378337],[-71.280466907,41.741347888],[-71.280497307,41.741315472],[-71.280526921,41.741281065],[-71.280554702,41.741246563],[-71.280581561,41.741214095],[-71.280608385,41.741182884],[-71.280638685,41.741153098],[-71.280669804,41.74112464],[-71.280703515,41.741097604],[-71.280738996,41.741070549],[-71.280770048,41.741044126],[-71.280792212,41.741018098],[-71.280804764,41.74099061],[-71.280817285,41.740963054],[-71.28083328,41.740937609],[-71.280853704,41.7409116],[-71.28087239,41.740884856],[-71.2808876,41.740856733],[-71.280895792,41.740827156],[-71.280895093,41.740799324],[-71.280887142,41.740776005],[-71.280865771,41.740757051],[-71.280832617,41.740746377],[-71.280790372,41.740742203],[-71.280741826,41.740741173],[-71.28068977,41.740740021],[-71.280635979,41.740736923],[-71.280580546,41.740731763],[-71.28052331,41.740727217],[-71.280465943,41.740725324],[-71.280410345,41.740724143],[-71.280357405,41.740722349],[-71.280306437,41.740715299],[-71.280253897,41.740703582],[-71.28020405,41.740689971],[-71.280165883,41.740671945],[-71.280141957,41.740650243],[-71.280128823,41.740624833],[-71.280115758,41.740596748],[-71.280095643,41.740567871],[-71.280064831,41.740542108],[-71.280027584,41.740522758],[-71.27998581,41.740505984],[-71.279944986,41.74048793],[-71.279901505,41.740470421],[-71.279856053,41.740457573],[-71.279810199,41.740455244],[-71.279768334,41.740464952],[-71.279730566,41.740481985],[-71.279695556,41.74049644],[-71.279660127,41.740499002],[-71.279627859,41.740488397],[-71.279597733,41.740467254],[-71.279567806,41.740441447],[-71.279536141,41.740414972],[-71.279505362,41.740388522],[-71.279478946,41.740362835],[-71.279458762,41.740336589],[-71.279445599,41.740310516],[-71.279444765,41.740286685],[-71.27945712,41.740263108],[-71.279475769,41.740238376],[-71.279486487,41.740211457],[-71.279484837,41.740184995],[-71.279472556,41.740160227],[-71.279449478,41.740140538],[-71.279417179,41.740129933],[-71.279383006,41.740122572],[-71.279348934,41.740112605],[-71.27931772,41.740097383],[-71.279288311,41.740080861],[-71.279261355,41.740070381],[-71.279237442,41.740071821],[-71.279216603,41.740085297],[-71.279195693,41.740101379],[-71.279172464,41.740108149],[-71.279144527,41.740098948],[-71.279113413,41.740081119],[-71.279079741,41.740061181],[-71.279046006,41.740041929],[-71.279011416,41.740022676],[-71.278975941,41.740003397],[-71.278941351,41.739984121],[-71.278913882,41.739963029],[-71.278902322,41.739941601],[-71.278905884,41.73991787],[-71.278919191,41.739893037],[-71.278934235,41.739868847],[-71.278947507,41.739845318],[-71.278951003,41.73982289],[-71.278947379,41.739802301],[-71.278936637,41.739782888],[-71.278917038,41.73976396],[-71.27888766,41.739747461],[-71.278850283,41.739730763],[-71.27880854,41.739713988],[-71.278765061,41.739695861],[-71.278726045,41.739676507],[-71.278689818,41.739653912],[-71.278660845,41.739626161],[-71.278637354,41.739593871],[-71.27862013,41.7395591],[-71.278614423,41.73952259],[-71.278621078,41.739487659],[-71.278637342,41.739454965],[-71.278658788,41.739425002],[-71.27868282,41.73939772],[-71.278706723,41.73937245],[-71.27872718,41.739345732],[-71.27874062,41.739317561],[-71.278745236,41.739289235],[-71.278746377,41.739259462],[-71.278747517,41.739229734],[-71.278748692,41.73919868],[-71.278755243,41.739167065],[-71.278771475,41.739134988],[-71.278799154,41.739103802],[-71.278833882,41.739073454],[-71.278870417,41.739041805],[-71.278907172,41.739008258],[-71.278934762,41.738976363],[-71.278946599,41.738943569],[-71.278939869,41.738911676],[-71.278916312,41.738880712],[-71.278878584,41.738850818],[-71.2788337,41.738824021],[-71.278786917,41.73879921],[-71.278743738,41.738773833],[-71.278712044,41.738747336],[-71.278698093,41.738719889],[-71.278700154,41.73868886],[-71.278706777,41.738653929],[-71.278717076,41.73861578],[-71.278725671,41.738575593],[-71.278732529,41.738534739],[-71.278742043,41.738493936],[-71.278756705,41.738456528],[-71.278775658,41.738423199],[-71.27880143,41.738395965],[-71.278835791,41.738374855],[-71.278876249,41.738356523],[-71.278918513,41.738336914],[-71.278957366,41.738314623],[-71.278989204,41.738290169],[-71.279011366,41.738264827],[-71.27902215,41.738236604],[-71.279024239,41.738206193],[-71.279025383,41.738175139],[-71.279031868,41.73814485],[-71.279046261,41.738114713],[-71.279069376,41.738087452],[-71.279099575,41.738060273],[-71.279133251,41.738033878],[-71.279163452,41.738006082],[-71.279183157,41.737976093],[-71.279192333,41.737944506],[-71.279193476,41.737914115],[-71.279194515,41.737887017],[-71.279195353,41.737865202],[-71.279196025,41.737847319],[-71.279199287,41.73783086],[-71.279206124,41.737813813],[-71.279219259,41.737794262],[-71.279237776,41.737772138],[-71.279258987,41.737748143],[-71.27928125,41.737720149],[-71.279307122,41.737690263],[-71.279339191,41.737660503],[-71.279375624,41.737631529],[-71.279416454,41.737602633],[-71.279458199,41.737573738],[-71.279494698,41.737543461],[-71.279523296,41.737510973],[-71.27953966,41.73747558],[-71.279541067,41.737439221],[-71.279531816,41.737403299],[-71.27951374,41.737367863],[-71.279490382,41.73733228],[-71.27947047,41.737298121],[-71.279458493,41.737264801],[-71.279457963,41.737232349],[-71.27946189,41.73720002],[-71.279469297,41.737167766],[-71.279479363,41.737134922],[-71.279492184,41.737100117],[-71.279507663,41.7370647],[-71.279523174,41.737028665],[-71.279536095,41.736991254],[-71.279541934,41.736953645],[-71.279543343,41.736916623],[-71.279544751,41.736879601],[-71.279544355,41.736843856],[-71.27953156,41.736808544],[-71.279510725,41.736776328],[-71.279486248,41.736746711],[-71.279465383,41.736714494],[-71.279449148,41.736676432],[-71.279436585,41.736635815],[-71.279423107,41.736595151],[-71.279408673,41.736557138],[-71.279392368,41.736521729],[-71.279375014,41.73648961],[-71.279353024,41.736464663],[-71.279324503,41.736448166],[-71.279289648,41.736435498],[-71.279251216,41.736424104],[-71.2792119,41.736412685],[-71.279170979,41.736397239],[-71.279128453,41.736377833],[-71.279084259,41.736355039],[-71.279042888,41.73632834],[-71.279006867,41.736299776],[-71.278978062,41.73626807],[-71.278954637,41.736234476],[-71.278928558,41.736200214],[-71.278902479,41.736165906],[-71.278883485,41.736131108],[-71.278876004,41.736095853],[-71.278876493,41.736060155],[-71.278876984,41.736023771],[-71.278871341,41.735986621],[-71.278857662,41.735951239],[-71.278836762,41.735920349],[-71.278811166,41.735896653],[-71.278781825,41.735878827],[-71.278752285,41.735865598],[-71.278723761,41.735849763],[-71.278691867,41.735828571],[-71.278653052,41.735804621],[-71.278608857,41.735782467],[-71.278565416,41.735763036],[-71.278524528,41.735746949],[-71.278487802,41.735736885],[-71.278453431,41.735734829],[-71.278417836,41.73574201],[-71.278380205,41.73575575],[-71.278339748,41.735774082],[-71.278295881,41.735789662],[-71.278252417,41.735794701],[-71.278212115,41.73578591],[-71.27817579,41.735765921],[-71.278146786,41.735738857],[-71.278127657,41.735707992],[-71.278113058,41.735673958],[-71.278104591,41.735641376],[-71.278107572,41.735609022],[-71.27812026,41.735577533],[-71.27814167,41.735548851],[-71.278167372,41.73552363],[-71.278189466,41.735500255],[-71.278199195,41.73547665],[-71.278193904,41.735452742],[-71.278177949,41.735431237],[-71.27815668,41.735410248],[-71.278134593,41.735387291],[-71.278111723,41.735360993],[-71.278082783,41.735333243],[-71.278045744,41.735307969],[-71.277999844,41.735284486],[-71.277951157,41.735263604],[-71.277904239,41.735243411],[-71.277858339,41.735219928],[-71.277811688,41.735193126],[-71.277762448,41.735164285],[-71.277714982,41.735134829],[-71.277672795,41.735106161],[-71.277635069,41.735076244],[-71.277600068,41.735044343],[-71.277568608,41.735012631],[-71.277546892,41.734979726],[-71.277536722,41.734945083],[-71.277533802,41.734906657],[-71.277531738,41.734867593],[-71.277523473,41.734829706],[-71.277505333,41.734795573],[-71.277485251,41.734766674],[-71.277473009,41.734739939],[-71.277470573,41.734711439],[-71.277465449,41.734683552],[-71.277448876,41.734655414],[-71.277424234,41.73462973],[-71.277394796,41.734613893],[-71.277359638,41.734609846],[-71.277320739,41.73461032],[-71.277279384,41.734606123],[-71.277240134,41.734593377],[-71.277201873,41.734577341],[-71.277163577,41.73456263],[-71.27712324,41.734555142],[-71.27708618,41.734553698],[-71.277054364,41.734554369],[-71.277025207,41.734554381],[-71.276993558,41.734551072],[-71.276960039,41.73454968],[-71.276928943,41.734554285],[-71.27690112,41.73456562],[-71.276875818,41.734580939],[-71.276852455,41.734591711],[-71.276827726,41.734591182],[-71.276799138,41.734576651],[-71.276767379,41.734552188],[-71.27673057,41.734522249],[-71.276691209,41.73448899],[-71.276651062,41.734453076],[-71.276610916,41.734417185],[-71.276573328,41.734383266],[-71.276536622,41.73435008],[-71.276505231,41.73431631],[-71.276480171,41.734279397],[-71.276461383,41.73423863],[-71.276447153,41.734195334],[-71.276437385,41.734150789],[-71.276430242,41.734106318],[-71.27642395,41.734063152],[-71.276414901,41.734022588],[-71.276405751,41.733984699],[-71.276399189,41.733948805],[-71.27639522,41.73391367],[-71.276392101,41.733879886],[-71.276388031,41.733847382],[-71.276381169,41.733818759],[-71.276369742,41.733794724],[-71.276350078,41.733777786],[-71.276322212,41.733766572],[-71.276289881,41.733757292],[-71.276254007,41.733748555],[-71.276216428,41.733738488],[-71.276178135,41.733723114],[-71.276139186,41.733703097],[-71.276100375,41.733678437],[-71.276059042,41.733650433],[-71.27601243,41.733621642],[-71.275962272,41.733594101],[-71.275911983,41.733569213],[-71.275862511,41.733546339],[-71.275815559,41.733527449],[-71.275772905,41.733510671],[-71.275735596,41.73349331],[-71.275705541,41.733470839],[-71.275680968,41.733443189],[-71.275660103,41.733411657],[-71.275641997,41.733376861],[-71.275625662,41.733342091],[-71.275611032,41.733308696],[-71.27559361,41.73327923],[-71.27557074,41.733253595],[-71.27554242,41.7332325],[-71.275511177,41.733217917],[-71.275477894,41.73321058],[-71.275440866,41.733209135],[-71.275399375,41.733208894],[-71.275355095,41.733211918],[-71.275307925,41.733220859],[-71.275259832,41.733231742],[-71.275210856,41.733241937],[-71.275157423,41.733252032],[-71.275100575,41.733260726],[-71.275043762,41.733268093],[-71.274988819,41.733273519],[-71.274937353,41.733279685],[-71.274892738,41.733291306],[-71.274855004,41.733308384],[-71.274820611,41.733330111],[-71.274787891,41.733353899],[-71.274757691,41.733381694],[-71.274730867,41.733412904],[-71.274706597,41.733447411],[-71.274683179,41.733482652],[-71.274658946,41.733515193],[-71.274633172,41.733543111],[-71.274606684,41.733565723],[-71.274577671,41.733585607],[-71.274547808,41.733604141],[-71.27451529,41.733622624],[-71.274480211,41.733639753],[-71.274440776,41.733654106],[-71.274398716,41.733668431],[-71.274356653,41.733683396],[-71.274317082,41.733701728],[-71.274279281,41.733720109],[-71.274242434,41.733736525],[-71.274204835,41.733749624],[-71.274167403,41.733758721],[-71.274131845,41.733764574],[-71.274113979,41.733766185],[-71.274096387,41.733767775],[-71.27406011,41.733769647],[-71.274025604,41.733771569],[-71.27399369,41.733774182],[-71.273964429,41.733777555],[-71.273938682,41.733780294],[-71.273917392,41.733783133],[-71.273897911,41.733784033],[-71.273882036,41.733783704],[-71.273871543,41.733780848],[-71.273866564,41.733772788],[-71.273866085,41.733761513],[-71.273867472,41.733748983],[-71.273873223,41.733737194],[-71.273884187,41.733727519],[-71.273902987,41.733720627],[-71.27392887,41.733713909],[-71.273960101,41.733705966],[-71.273995797,41.733695494],[-71.274028967,41.733682981],[-71.274052563,41.73366695],[-71.27406475,41.733648039],[-71.274067393,41.733625587],[-71.274069153,41.733602469],[-71.274076979,41.733582108],[-71.274093626,41.733562634],[-71.274117188,41.733547267],[-71.274147636,41.733536006],[-71.274183295,41.7335275],[-71.274223351,41.733519095],[-71.274264357,41.733509387],[-71.274303759,41.733495675],[-71.27433536,41.733477853],[-71.274357388,41.733455805],[-71.274375124,41.733430387],[-71.274393024,41.733401698],[-71.274413685,41.733369036],[-71.274433557,41.733335069],[-71.274454287,41.73330044],[-71.274473273,41.733266425],[-71.274490457,41.733233093],[-71.274506788,41.733199028],[-71.274511277,41.733190577],[-71.274461471,41.733282526],[-71.2743304,41.733221427],[-71.273811471,41.732979526],[-71.273224471,41.732757526],[-71.27262947,41.732512526],[-71.27191247,41.732188526],[-71.27104247,41.731805526],[-71.27052347,41.731572526],[-71.27037847,41.731530526],[-71.27018047,41.731439526],[-71.27002747,41.731343526],[-71.26955447,41.731100526],[-71.269035469,41.731052526],[-71.268753469,41.731035526],[-71.268570469,41.731021526],[-71.267838469,41.730972526],[-71.267464469,41.730948526],[-71.267090469,41.730928526],[-71.266655468,41.730896526],[-71.265694468,41.730834526],[-71.265701468,41.730474526],[-71.265663468,41.729178526],[-71.265076468,41.729185525],[-71.264237467,41.729215526],[-71.263763468,41.729247525],[-71.263115467,41.729322525],[-71.262738467,41.729394526],[-71.262665467,41.729408526],[-71.262567467,41.729341525],[-71.262586396,41.729258406],[-71.262567025,41.729341762],[-71.262711458,41.729490641],[-71.262714079,41.729508415],[-71.262757941,41.729502331],[-71.262764845,41.729500905],[-71.262851507,41.729503393],[-71.26294567,41.729483554],[-71.263053737,41.729559611],[-71.263130324,41.729612345],[-71.263143538,41.729597027],[-71.263157328,41.729582785],[-71.263171152,41.729567857],[-71.263184057,41.729553591],[-71.263196107,41.729539277],[-71.263207209,41.729525624],[-71.263218275,41.729513297],[-71.263231994,41.729501685],[-71.263250079,41.729490196],[-71.263271703,41.729479401],[-71.263292443,41.729467918],[-71.263312329,41.729456433],[-71.26333133,41.729444946],[-71.263348527,41.729434073],[-71.263367464,41.729423226],[-71.263387281,41.729413731],[-71.263405232,41.729405512],[-71.26342321,41.729397956],[-71.263440238,41.729391702],[-71.263456413,41.729384783],[-71.26347167,41.729378503],[-71.263488697,41.729372272],[-71.263505692,41.729366681],[-71.2635217,41.729363695],[-71.26353682,41.729361394],[-71.263552762,41.729359734],[-71.263569622,41.729357436],[-71.263590057,41.729354574],[-71.263614067,41.729350461],[-71.263639752,41.729347724],[-71.263666383,41.729344989],[-71.263692065,41.729342915],[-71.263718598,41.729342123],[-71.263746015,41.729341425],[-71.263773405,41.729339995],[-71.263802724,41.72933667],[-71.263832016,41.72933266],[-71.263863931,41.729329387],[-71.263896634,41.729327464],[-71.263931131,41.729327535],[-71.263965504,41.729328292],[-71.263999083,41.729329001],[-71.264029978,41.729329019],[-71.264058184,41.729329626],[-71.264086451,41.729330232],[-71.264114688,41.729330839],[-71.26414381,41.729331448],[-71.264173754,41.729332767],[-71.264203693,41.72933539],[-71.264234351,41.729342016],[-71.264264052,41.729351271],[-71.264291848,41.729363791],[-71.264317742,41.729378869],[-71.264340877,41.729397235],[-71.264361288,41.729417539],[-71.26438163,41.729439809],[-71.264399281,41.729463355],[-71.264411454,41.729490708],[-71.264421818,41.72952007],[-71.264431229,41.729551374],[-71.26443877,41.729584596],[-71.264446274,41.729619807],[-71.264452796,41.729656342],[-71.264460198,41.729694205],[-71.264467537,41.729732755],[-71.264476745,41.729769318],[-71.264486021,41.729803938],[-71.264495369,41.729835882],[-71.264504881,41.729864534],[-71.264514496,41.729889915],[-71.264522509,41.729911246],[-71.264526295,41.729927856],[-71.264525854,41.729939747],[-71.264525416,41.729950998],[-71.264532576,41.729971663],[-71.26454069,41.729990364],[-71.264551325,41.730012432],[-71.264560872,41.73003978],[-71.264569398,41.730071036],[-71.264576939,41.730104258],[-71.26458533,41.730138876],[-71.264592837,41.730173446],[-71.264601195,41.730208659],[-71.264610439,41.730243919],[-71.26462139,41.730279891],[-71.264633188,41.730317855],[-71.26464577,41.730358496],[-71.264657437,41.73039909],[-71.264668249,41.730439682],[-71.264679094,41.73047961],[-71.264689938,41.730519539],[-71.264701772,41.730556177],[-71.26471459,41.730590849],[-71.264725607,41.730625496],[-71.264734851,41.730660756],[-71.264743275,41.730694688],[-71.264751803,41.730725304],[-71.264762987,41.730755972],[-71.264775023,41.73078735],[-71.264787907,41.730820696],[-71.264798924,41.73085532],[-71.264807283,41.730890578],[-71.264812915,41.730928438],[-71.264821038,41.730969618],[-71.26483352,41.731012889],[-71.264849545,41.73105555],[-71.264868258,41.731097644],[-71.264886975,41.731139053],[-71.264903958,41.731178491],[-71.264921099,41.731216557],[-71.264940872,41.731252708],[-71.264960742,41.731287532],[-71.264979795,41.731320343],[-71.264997045,41.731353835],[-71.265012521,41.731387873],[-71.26502708,41.731422595],[-71.265041635,41.731457981],[-71.265057931,41.731493438],[-71.265075996,41.731529494],[-71.265093177,41.73156493],[-71.265112129,41.731600439],[-71.265129409,41.731633886],[-71.265145874,41.731664655],[-71.265161589,41.73169213],[-71.265178287,41.731717617],[-71.265193251,41.731741798],[-71.265209031,41.731767924],[-71.265225631,41.7317954],[-71.265239572,41.731823512],[-71.265249937,41.731852828],[-71.265257712,41.731880767],[-71.265260175,41.731908627],[-71.265259097,41.731936411],[-71.26525805,41.731964148],[-71.265256939,41.731992572],[-71.265253235,41.732020282],[-71.265243302,41.732048505],[-71.265230745,41.732076059],[-71.265214711,41.732102806],[-71.26519956,41.732130287],[-71.265189695,41.73215652],[-71.265186912,41.732182951],[-71.265186785,41.73220941],[-71.265187543,41.732235894],[-71.265187419,41.732261667],[-71.265186442,41.732286799],[-71.265184679,41.732309915],[-71.265182098,41.732331041],[-71.265176076,41.732350079],[-71.26516661,41.732367097],[-71.265152688,41.732383946],[-71.265137026,41.73240086],[-71.265123918,41.732420386],[-71.265120483,41.73244151],[-71.265124886,41.732464777],[-71.265130109,41.732489349],[-71.265136181,41.732515295],[-71.265137825,41.73254178],[-71.265136747,41.732569541],[-71.265134748,41.732598581],[-71.265131831,41.73262835],[-71.265125335,41.732659942],[-71.265115298,41.732691503],[-71.265105195,41.732724346],[-71.26509424,41.7327565],[-71.265084235,41.732787398],[-71.265075151,41.732816972],[-71.265066166,41.73284458],[-71.265058072,41.732870863],[-71.265051712,41.732898498],[-71.265045317,41.732927506],[-71.265037938,41.73295841],[-71.265027835,41.732991275],[-71.265016877,41.733024115],[-71.265006677,41.733058329],[-71.264998343,41.733091861],[-71.264989942,41.733126765],[-71.264982428,41.733160984],[-71.264974027,41.733195888],[-71.264967364,41.733231436],[-71.264963392,41.733265754],[-71.264961156,41.733301425],[-71.264959774,41.733337167],[-71.264956687,41.733371464],[-71.264952748,41.733405119],[-71.264948842,41.733438134],[-71.264944119,41.733469135],[-71.264938612,41.733497458],[-71.264933203,41.733523792],[-71.264927797,41.733549486],[-71.264922391,41.73357518],[-71.264914329,41.733600822],[-71.264900986,41.73362634],[-71.264882361,41.733651709],[-71.264861933,41.733677738],[-71.264843242,41.733704479],[-71.264827141,41.733732552],[-71.264813628,41.733762735],[-71.264805295,41.733795626],[-71.264801258,41.733831248],[-71.264799838,41.73386891],[-71.26479842,41.733905932],[-71.264797038,41.733941628],[-71.264797397,41.733977373],[-71.264803949,41.734013931],[-71.264818405,41.734051923],[-71.264836338,41.7340907],[-71.264854303,41.734128814],[-71.264873155,41.734166906],[-71.264891187,41.734203671],[-71.264910106,41.734239797],[-71.264928206,41.734274618],[-71.264945353,41.73431138],[-71.264961614,41.734348118],[-71.264976039,41.734386133],[-71.264992232,41.734424884],[-71.265010064,41.73446629],[-71.265028711,41.734510305],[-71.265047294,41.734555052],[-71.265064172,41.734598447],[-71.265075835,41.734640344],[-71.265083073,41.734681523],[-71.265086834,41.734721986],[-71.265088007,41.734760362],[-71.265087543,41.734795419],[-71.265088099,41.734827186],[-71.265089644,41.734855684],[-71.26509385,41.734882883],[-71.265102645,41.734907554],[-71.265119412,41.734931075],[-71.265139623,41.734956638],[-71.265162423,41.734983602],[-71.265184368,41.73501054],[-71.265204543,41.73503743],[-71.265221144,41.735064907],[-71.265234135,41.73509432],[-71.265243514,41.735126287],[-71.265246693,41.735158767],[-71.265245377,41.73519316],[-71.26524311,41.735228808],[-71.265241726,41.73526519],[-71.265240342,41.735301526],[-71.265238894,41.735338571],[-71.265236589,41.735376208],[-71.265229007,41.735412417],[-71.265217948,41.73544791],[-71.265203382,41.735482001],[-71.265185341,41.735514713],[-71.265162087,41.735545287],[-71.265136242,41.735574506],[-71.265111217,41.735605054],[-71.265086976,41.735638279],[-71.265065358,41.735672218],[-71.265044592,41.735706868],[-71.265022122,41.735740096],[-71.264997913,41.735772658],[-71.264972825,41.735803868],[-71.264948718,41.735833778],[-71.264925463,41.735864374],[-71.264903058,41.735896322],[-71.264879669,41.735930212],[-71.264856247,41.735964765],[-71.264832823,41.735999981],[-71.264807729,41.736032564],[-71.264780865,41.736065006],[-71.264754033,41.736096876],[-71.264727237,41.736127374],[-71.264702211,41.736157922],[-71.264676298,41.73618913],[-71.264652125,41.736220366],[-71.264629755,41.736250987],[-71.2646065,41.736281607],[-71.264581507,41.736311491],[-71.264558356,41.736338749],[-71.264538878,41.7363635],[-71.264521175,41.736386927],[-71.264506228,41.736408439],[-71.264489509,41.736429924],[-71.264469216,41.736451951],[-71.264448,41.736475989],[-71.26442321,41.736500591],[-71.264394777,41.73652777],[-71.264363718,41.736554874],[-71.26432912,41.736581263],[-71.264293668,41.736607649],[-71.264260021,41.736632736],[-71.264229035,41.736656525],[-71.264200835,41.736678399],[-71.264175392,41.736697694],[-71.264151692,41.736716375],[-71.26412717,41.736734391],[-71.26409901,41.736753612],[-71.264067303,41.736774129],[-71.26403546,41.736798579],[-71.264001748,41.736824969],[-71.263968,41.736852686],[-71.263933397,41.7368804],[-71.263897913,41.736906741],[-71.263858132,41.736931038],[-71.263816547,41.736955971],[-71.26377493,41.736981499],[-71.263731506,41.737008349],[-71.263688016,41.737036549],[-71.263641936,41.737063348],[-71.263594085,41.737090098],[-71.263543642,41.73711611],[-71.263490545,41.737141431],[-71.263438366,41.737166114],[-71.263387106,41.737190135],[-71.26333847,41.73721423],[-71.263291639,41.737237712],[-71.263247499,41.737259895],[-71.263211328,41.737282278],[-71.263187422,41.737306905],[-71.263174863,41.737334459],[-71.263172861,41.737364184],[-71.263170897,41.73739192],[-71.263164637,41.737416903],[-71.263152345,41.737438466],[-71.263132186,41.737457223],[-71.263104941,41.737476491],[-71.263073267,41.737496322],[-71.263038018,41.73751674],[-71.263004604,41.737536544],[-71.262972047,41.737555664],[-71.262943031,41.737574906],[-71.262919295,41.73759489],[-71.262903461,41.737616377],[-71.262896417,41.737638705],[-71.262896391,41.737662558],[-71.262897184,41.737687692],[-71.262901485,41.737713612],[-71.262909328,41.737739562],[-71.262918125,41.737763569],[-71.262922462,41.73778814],[-71.262920629,41.737813246],[-71.262913451,41.73783889],[-71.262899256,41.737863056],[-71.262877255,41.737884439],[-71.262850076,41.737902381],[-71.262819457,41.737917571],[-71.262786214,41.737932093],[-71.262752122,41.737945241],[-71.26271724,41.737957061],[-71.262681542,41.737966867],[-71.262643324,41.737972665],[-71.262602617,41.737974456],[-71.2625585,41.737973519],[-71.262510911,41.737970493],[-71.262460665,41.737967416],[-71.262408745,41.73796301],[-71.262358634,41.737956617],[-71.262309542,41.737946956],[-71.262256977,41.73793523],[-71.262202741,41.737921465],[-71.262148502,41.737908386],[-71.262097741,41.737896046],[-71.262050389,41.737886435],[-71.262007293,41.737882229],[-71.261969313,41.737881396],[-71.261938378,41.737882704],[-71.261912627,41.737886104],[-71.261890282,41.737892895],[-71.26186944,41.737906345],[-71.261847539,41.737925098],[-71.261823737,41.737946385],[-71.261796489,41.737966316],[-71.261765702,41.737985485],[-71.261732358,41.738002659],[-71.261694686,41.738017697],[-71.261654324,41.73803337],[-71.261613994,41.738049043],[-71.261577108,41.738066119],[-71.261545501,41.73808396],[-71.261521863,41.738102],[-71.261504461,41.738118132],[-71.261488799,41.738134337],[-71.261475004,41.738149287],[-71.261467312,41.738164982],[-71.261463193,41.738180776],[-71.261455534,41.738195831],[-71.261441777,41.738208746],[-71.261421919,41.738220231],[-71.261398588,41.73822965],[-71.261374472,41.738236438],[-71.261349504,41.738242492],[-71.261325455,41.738247931],[-71.261299736,41.73825069],[-71.261271429,41.738251386],[-71.261240532,41.738250727],[-71.26120875,41.738250044],[-71.26117526,41.738248648],[-71.261141806,41.738245948],[-71.261109275,41.738241307],[-71.261077625,41.738237948],[-71.26104499,41.738236577],[-71.261011437,41.738235867],[-71.2609788,41.738235135],[-71.260947903,41.738234499],[-71.260919561,41.738236499],[-71.260897148,41.738245302],[-71.260884208,41.738260255],[-71.26088258,41.73827937],[-71.260887083,41.738299984],[-71.260896833,41.738322027],[-71.260914554,41.738343584],[-71.260941164,41.738364038],[-71.26097132,41.738383174],[-71.260999704,41.738402992],[-71.261023592,41.738424653],[-71.261042162,41.738447583],[-71.261053617,41.738470956],[-71.261057099,41.738495525],[-71.261055199,41.73852198],[-71.261053231,41.738550334],[-71.261051198,41.738580082],[-71.261048278,41.738609806],[-71.261044507,41.738638818],[-71.261039028,41.738667142],[-71.261031748,41.738695438],[-71.26102358,41.738724396],[-71.261013676,41.738751956],[-71.261002954,41.73877821],[-71.260989709,41.738801029],[-71.260972103,41.738822535],[-71.260950137,41.738842522],[-71.260927186,41.738864566],[-71.260905935,41.738889266],[-71.260889047,41.738914684],[-71.260875666,41.738941504],[-71.260863205,41.738967023],[-71.260860745,41.738971775],[-71.26085078,41.738991238],[-71.260838387,41.739014791],[-71.26082511,41.739038318],[-71.260811862,41.739061845],[-71.260795893,41.739086648],[-71.260779959,41.739110124],[-71.260763137,41.739134239],[-71.260744578,41.739157664],[-71.260723296,41.739182341],[-71.260701976,41.739209007],[-71.260679609,41.739238279],[-71.260657236,41.7392689],[-71.260634864,41.73929952],[-71.260611707,41.739327464],[-71.260587802,41.739351426],[-71.260563963,41.739374063],[-71.260538419,41.739395346],[-71.260513829,41.739414665],[-71.260489307,41.739431994],[-71.260467543,41.739446745],[-71.260449356,41.739460246],[-71.260432087,41.739473108],[-71.260415739,41.739484668],[-71.26040208,41.739495617],[-71.260387572,41.739505237],[-71.260371358,41.739513482],[-71.260355178,41.739521064],[-71.260339033,41.739527342],[-71.260323806,41.739532959],[-71.260310353,41.739537962],[-71.260298703,41.739542351],[-71.260281807,41.739545289],[-71.260266786,41.739544961],[-71.260249139,41.739544581],[-71.260172183,41.739547553],[-71.260147519,41.739545695],[-71.260130793,41.739544014],[-71.260113212,41.739542307],[-71.260096519,41.739539986],[-71.260081632,41.739536341],[-71.260058058,41.739528562],[-71.260031174,41.739516065],[-71.260014651,41.739509102],[-71.259997276,41.73950145],[-71.259979012,41.739494437],[-71.259961639,41.739486122],[-71.259944362,41.739476481],[-71.259927088,41.739466199],[-71.259908896,41.739456534],[-71.259890667,41.739448217],[-71.259874276,41.739438601],[-71.259859727,41.739426381],[-71.259845213,41.739412835],[-71.259830729,41.739399289],[-71.259815327,41.739386382],[-71.259797236,41.739374063],[-71.259777372,41.739362404],[-71.259757574,41.739349396],[-71.25973778,41.739335085],[-71.259717198,41.739319422],[-71.259695733,41.739303094],[-71.259690769,41.739299471],[-71.259674265,41.739287407],[-71.259652765,41.73927236],[-71.259631165,41.739259325],[-71.25960953,41.739247617],[-71.259589663,41.739236598],[-71.259572422,41.739225631],[-71.259557873,41.739213411],[-71.259546013,41.73920058],[-71.259535008,41.739187773],[-71.259524951,41.739174328],[-71.259518408,41.739160295],[-71.259514588,41.739144988],[-71.259513459,41.739128428],[-71.259513215,41.739111894],[-71.259513859,41.739094698],[-71.25951719,41.739077576],[-71.259528396,41.739061271],[-71.259546649,41.739046444],[-71.259568347,41.73903302],[-71.259592699,41.73902031],[-71.25961702,41.7390076],[-71.259640555,41.738992898],[-71.259663238,41.738977509],[-71.259674902,41.738969278],[-71.259684117,41.738962779],[-71.25970414,41.738947979],[-71.259723182,41.738934504],[-71.259741336,41.738921666],[-71.259756931,41.738907451],[-71.259772497,41.738892551],[-71.259788094,41.738877673],[-71.259803691,41.738862795],[-71.259819222,41.738849243],[-71.259833834,41.738836352],[-71.25984572,41.738825995],[-71.259851336,41.738818185],[-71.259852729,41.73880497],[-71.259861207,41.738791266],[-71.259871256,41.738782208],[-71.259883108,41.738772559],[-71.259895879,41.738762226],[-71.259907764,41.738751937],[-71.259919652,41.738740917],[-71.259930685,41.738729917],[-71.2599408,41.738719555],[-71.259949176,41.738708481],[-71.259954045,41.738696691],[-71.259955503,41.738682149],[-71.259956112,41.73866628],[-71.259956789,41.738648443],[-71.259957466,41.738630584],[-71.259958209,41.738611421],[-71.259959838,41.73859226],[-71.259964158,41.738571847],[-71.259971989,41.73855151],[-71.259981622,41.7385312],[-71.259991256,41.738510249],[-71.260000074,41.738487284],[-71.260007221,41.738462303],[-71.260014435,41.738435333],[-71.26002083,41.738407035],[-71.260028999,41.738378077],[-71.260039823,41.738349216],[-71.260053269,41.73832171],[-71.260066679,41.73829553],[-71.260076483,41.738269937],[-71.260084515,41.738244958],[-71.260094287,41.738220028],[-71.260106747,41.738194532],[-71.260124553,41.73816843],[-71.26014928,41.738145155],[-71.260180103,41.738124638],[-71.260214402,41.738105522],[-71.260248664,41.738087756],[-71.260282009,41.738070582],[-71.260312665,41.738054043],[-71.260340727,41.73803679],[-71.260366205,41.738016856],[-71.26038909,41.737996161],[-71.260412895,41.737974188],[-71.260436734,41.737951529],[-71.260461491,41.737928254],[-71.260485297,41.737906281],[-71.260509034,41.737886297],[-71.260531,41.737866264],[-71.260547721,41.737844756],[-71.260561851,41.737821916],[-71.260576899,41.737798416],[-71.26059372,41.737774324],[-71.260611463,41.737748885],[-71.260627564,41.737721453],[-71.26064459,41.737691392],[-71.260660727,41.737662611],[-71.26067765,41.737635844],[-71.260694471,41.737611752],[-71.26071303,41.737588327],[-71.26073503,41.737567631],[-71.260757813,41.737549589],[-71.260782301,41.737532945],[-71.260806654,41.737519549],[-71.260831789,41.737509493],[-71.260858563,41.73750214],[-71.260885304,41.737495472],[-71.260911155,41.73749006],[-71.260937792,41.737486639],[-71.260962656,41.737483901],[-71.260986573,41.737481115],[-71.261009765,41.737476292],[-71.261032962,41.737470188],[-71.261056227,41.737462095],[-71.261081296,41.737453366],[-71.261108892,41.7374467],[-71.261140872,41.737443405],[-71.261177118,41.737442222],[-71.261217789,41.737441758],[-71.261259384,41.737439351],[-71.261301896,41.737436307],[-71.261343592,41.737431271],[-71.261384402,41.737426164],[-71.261426194,41.737419779],[-71.261467071,41.737413392],[-71.261506242,41.737405652],[-71.261544495,41.737398528],[-71.261580977,41.737391377],[-71.261620116,41.737384277],[-71.261659221,41.737377841],[-71.26169921,41.737372069],[-71.261736478,41.737366955],[-71.261769348,41.737362358],[-71.261800415,41.737358397],[-71.261829708,41.737355051],[-71.261855462,41.737350965],[-71.261876852,41.737346138],[-71.261896538,41.737339958],[-71.261913603,41.737332378],[-71.26192893,41.737324109],[-71.261945209,41.737314537],[-71.261961457,41.737304966],[-71.261980326,41.737296772],[-71.262000867,41.737290594],[-71.262024979,41.737284493],[-71.262052539,41.73727913],[-71.262081015,41.737273792],[-71.262107822,41.737265797],[-71.262132104,41.737255076],[-71.262152881,41.73724293],[-71.262166673,41.737228665],[-71.262172593,41.737212944],[-71.262171433,41.737196339],[-71.262166825,41.73717904],[-71.26215776,41.737161664],[-71.262147841,41.73714424],[-71.26214235,41.737126276],[-71.262143062,41.737107091],[-71.262145641,41.737086628],[-71.262151769,41.737064298],[-71.262159698,41.737041948],[-71.262170352,41.737017707],[-71.262184547,41.736993518],[-71.262202255,41.736968764],[-71.26222265,41.736944085],[-71.262243898,41.736920094],[-71.262266033,41.736895372],[-71.262285578,41.736869342],[-71.26230335,41.736843926],[-71.262321125,41.736817823],[-71.26234067,41.736791793],[-71.26236195,41.736767138],[-71.262384872,41.736744477],[-71.262409559,41.736723168],[-71.262434181,41.736703186],[-71.262456999,41.73668384],[-71.262478046,41.736664445],[-71.262500009,41.736645052],[-71.262521906,41.736627008],[-71.26254547,41.736612329],[-71.262570644,41.736599643],[-71.262594043,41.736588211],[-71.262617438,41.736578128],[-71.262642506,41.736569398],[-71.262669246,41.73656273],[-71.262697654,41.736559358],[-71.262726814,41.736558664],[-71.262753284,41.736559222],[-71.26277798,41.736560416],[-71.262800872,41.736562247],[-71.2628255,41.736565431],[-71.262850062,41.736569895],[-71.262876296,41.736576421],[-71.262904265,41.7365843],[-71.262932168,41.736593528],[-71.262961025,41.736600746],[-71.262990932,41.736604695],[-71.263020912,41.736605352],[-71.263049284,41.736603329],[-71.263074251,41.736597252],[-71.263096696,41.736587807],[-71.263114816,41.73657561],[-71.26312687,41.736560678],[-71.263130169,41.736543533],[-71.263130909,41.736525011],[-71.263131618,41.736506512],[-71.263132363,41.736486663],[-71.263133138,41.736466837],[-71.263133948,41.736445708],[-71.263134794,41.736423229],[-71.263135706,41.736399402],[-71.263136651,41.736374957],[-71.263134087,41.73634975],[-71.263126209,41.736325126],[-71.263112985,41.736300995],[-71.263096216,41.736278137],[-71.263081052,41.736258622],[-71.26307202,41.736240582],[-71.263071808,41.736223361],[-71.263074255,41.736205551],[-71.263076768,41.736186438],[-71.263083644,41.736168043],[-71.263094062,41.736149769],[-71.263109693,41.736133541],[-71.263130603,41.736118125],[-71.263153215,41.736104702],[-71.263176647,41.736092652],[-71.263198275,41.736081217],[-71.263219835,41.736071771],[-71.26323867,41.73606424],[-71.263257437,41.736058675],[-71.263276103,41.736055764],[-71.263294667,41.736055505],[-71.263310542,41.736055835],[-71.263326418,41.736056188],[-71.263355543,41.736056796],[-71.263370563,41.736057125],[-71.263385553,41.736057453],[-71.263400609,41.736056478],[-71.263429049,41.736052443],[-71.263440665,41.736048716],[-71.263449724,41.736042949],[-71.263456194,41.736035164],[-71.26345919,41.736025977],[-71.263460033,41.736004138],[-71.263459619,41.735992223],[-71.263455663,41.735980231],[-71.26344997,41.73596755],[-71.263442541,41.73595347],[-71.263437015,41.735936833],[-71.263430672,41.735918182],[-71.263421675,41.735898793],[-71.263412676,41.735880068],[-71.263405414,41.735862055],[-71.263402645,41.735842794],[-71.263404275,41.735823015],[-71.263405869,41.735804495],[-71.263411858,41.735786761],[-71.263421357,41.735769125],[-71.263433512,41.735751496],[-71.263448354,41.735733986],[-71.263466742,41.735715179],[-71.263485982,41.735697061],[-71.263507059,41.735677666],[-71.263529912,41.735656993],[-71.263553647,41.735636986],[-71.263575645,41.735616312],[-71.263595938,41.73559424],[-71.2636162,41.73557219],[-71.263637378,41.735550165],[-71.263659411,41.735528164],[-71.263681477,41.735505478],[-71.263703543,41.735482769],[-71.263723871,41.735459393],[-71.263743314,41.735435992],[-71.263761904,41.735411926],[-71.263779642,41.735387173],[-71.263800003,41.73536311],[-71.263820298,41.73534042],[-71.263840558,41.735319011],[-71.263858979,41.735299541],[-71.26387553,41.735282058],[-71.263891161,41.735265853],[-71.263906687,41.735252941],[-71.26392208,41.735243345],[-71.263939111,41.73523645],[-71.263958012,41.735227593],[-71.26397882,41.735214806],[-71.264000618,41.735198729],[-71.264023366,41.735181349],[-71.264045262,41.735163305],[-71.264067191,41.735144597],[-71.264088169,41.735127191],[-71.264109114,41.735110425],[-71.264125594,41.735095594],[-71.264132333,41.735081155],[-71.264129364,41.735066558],[-71.264120195,41.735052475],[-71.264106668,41.735036279],[-71.264090548,41.735019414],[-71.264075316,41.735001888],[-71.264066316,41.734983163],[-71.264065255,41.734964614],[-71.264066029,41.734944788],[-71.264066807,41.734924276],[-71.264068535,41.734902486],[-71.264071971,41.734881407],[-71.264079798,41.734861687],[-71.264095525,41.734844179],[-71.264117286,41.734829451],[-71.264137211,41.734815953],[-71.264153623,41.734803089],[-71.264158559,41.734789309],[-71.264154737,41.734774001],[-71.264146623,41.734755324],[-71.264136837,41.734734584],[-71.264124431,41.73471249],[-71.264110254,41.734690347],[-71.264094271,41.73466948],[-71.264074645,41.73465119],[-71.26405144,41.734634814],[-71.264026432,41.734619075],[-71.264000538,41.734603288],[-71.263975631,41.734584896],[-71.263952596,41.734563877],[-71.26393232,41.734539663],[-71.263912963,41.734514742],[-71.263893641,41.73448854],[-71.26387527,41.734460991],[-71.263857752,41.734434175],[-71.263842005,41.734407386],[-71.263829733,41.734381954],[-71.263821887,41.734356644],[-71.263816703,41.734330083],[-71.26381683,41.734303624],[-71.263818794,41.734275865],[-71.263821646,41.734247467],[-71.263828042,41.734218505],[-71.263840667,41.73418903],[-71.263854998,41.734160885],[-71.263865719,41.734134653],[-71.263870273,41.734108272],[-71.263871253,41.734082478],[-71.263871312,41.734058008],[-71.26386868,41.73403479],[-71.263864211,41.73401285],[-71.263858788,41.733992897],[-71.263852311,41.733977539],[-71.263845763,41.733964833],[-71.263842693,41.733952843],[-71.263844054,41.733939673],[-71.263849022,41.733925207],[-71.263858452,41.733909562],[-71.26387408,41.733893997],[-71.263894987,41.733879221],[-71.263917702,41.733862504],[-71.263936125,41.733842418],[-71.263948581,41.733817539],[-71.263955009,41.733787914],[-71.26395888,41.733756202],[-71.263965377,41.733724611],[-71.263975479,41.733692409],[-71.263986437,41.733659569],[-71.26399385,41.733627956],[-71.263996805,41.733596266],[-71.263996214,41.733565826],[-71.263992014,41.733537277],[-71.263982499,41.733509288],[-71.263971115,41.73348324],[-71.263960581,41.73345852],[-71.263954405,41.733435913],[-71.263954365,41.733413409],[-71.263958851,41.733389017],[-71.26396862,41.733364087],[-71.263982915,41.733337291],[-71.263999019,41.733308509],[-71.264012532,41.733278396],[-71.264023453,41.733247545],[-71.264031717,41.733216597],[-71.264040771,41.733187023],[-71.264051558,41.733159466],[-71.264062243,41.733134583],[-71.264072829,41.733111621],[-71.26408253,41.733088681],[-71.264090494,41.733065028],[-71.26409675,41.733040685],[-71.26410117,41.733017619],[-71.264102043,41.732995804],[-71.264100129,41.732976613],[-71.264091031,41.732959877],[-71.264074877,41.732944293],[-71.264055117,41.732929296],[-71.264036307,41.732913684],[-71.264019304,41.732896108],[-71.264004993,41.732877281],[-71.263990781,41.732856463],[-71.263976605,41.73283432],[-71.263964298,41.732810236],[-71.263956455,41.732784264],[-71.26395573,41.732757163],[-71.263956844,41.732728076],[-71.263958876,41.73269835],[-71.26396619,41.732668704],[-71.263979703,41.73263859],[-71.263995938,41.732607156],[-71.26401391,41.732576434],[-71.26403359,41.73254647],[-71.264055923,41.732517152],[-71.264081734,41.732488619],[-71.264107543,41.732460703],[-71.264134171,41.732434138],[-71.26416073,41.732409586],[-71.264187257,41.732385673],[-71.264212898,41.732361759],[-71.264238504,41.732339149],[-71.264264929,41.732317866],[-71.264286925,41.732297169],[-71.264304528,41.732275731],[-71.264318721,41.732251542],[-71.264331999,41.732227351],[-71.264347012,41.732204535],[-71.264364546,41.732185064],[-71.264380208,41.732168173],[-71.264393081,41.73215457],[-71.264398899,41.732141455],[-71.264400354,41.732127622],[-71.26440086,41.732114405],[-71.264401402,41.732099838],[-71.264402014,41.732082642],[-71.264401046,41.732063453],[-71.264400055,41.732042251],[-71.264398341,41.732018395],[-71.26439581,41.731992548],[-71.264391511,41.731965988],[-71.264389933,41.731938154],[-71.264391045,41.731909752],[-71.264393896,41.731881355],[-71.264399439,41.731851705],[-71.264408555,41.731821468],[-71.264417606,41.731792535],[-71.264423966,41.731764899],[-71.264423173,41.731739741],[-71.264417917,41.73171581],[-71.26440735,41.731691753],[-71.264391502,41.731667593],[-71.264374735,41.731644095],[-71.264359775,41.731619297],[-71.264347503,41.731593911],[-71.264339726,41.731566612],[-71.264331066,41.731538602],[-71.264318041,41.731510538],[-71.264302398,41.731480433],[-71.264285017,41.731449639],[-71.264264158,41.731418105],[-71.264242447,41.731385884],[-71.264218017,41.731354229],[-71.264194503,41.731322644],[-71.264171907,41.731290398],[-71.264149313,41.731257489],[-71.264127638,41.731223942],[-71.264105143,41.731189066],[-71.264081765,41.731153479],[-71.264057563,41.731117891],[-71.264033265,41.731083629],[-71.264009819,41.731050055],[-71.263986307,41.731017784],[-71.263966367,41.730985612],[-71.263947315,41.730952779],[-71.26392823,41.730920609],[-71.263906554,41.730887061],[-71.263884027,41.730852826],[-71.263859764,41.730817237],[-71.263836387,41.730781651],[-71.263813007,41.730746751],[-71.263788742,41.730711825],[-71.26376625,41.730676286],[-71.263743788,41.730640747],[-71.263721296,41.730605208],[-71.263696933,41.73057225],[-71.263671681,41.73053993],[-71.263648132,41.730509648],[-71.263627309,41.730476789],[-71.26360826,41.730443292],[-71.263589276,41.730408515],[-71.26356944,41.730373004],[-71.263547763,41.73034012],[-71.263524148,41.730311165],[-71.263501319,41.730284224],[-71.263479472,41.730255935],[-71.263460352,41.730225091],[-71.263443038,41.730192993],[-71.263425658,41.730162176],[-71.263406436,41.730133985],[-71.263388067,41.730106435],[-71.263369597,41.730081561],[-71.263351027,41.730058677],[-71.263332489,41.730035793],[-71.263313884,41.730014189],[-71.263295247,41.729993317],[-71.263275688,41.729973678],[-71.263255144,41.729956689],[-71.26323361,41.729942992],[-71.263211127,41.729929956],[-71.263188708,41.729916234],[-71.263166292,41.729901872],[-71.263144728,41.729888152],[-71.263124901,41.72987519],[-71.263105924,41.729863511],[-71.263088685,41.729852544],[-71.263075806,41.729843027],[-71.263065617,41.729832875],[-71.263059822,41.729822823],[-71.263057572,41.729812184],[-71.263058382,41.729791032],[-71.263058619,41.729784675],[-71.263023831,41.729730815],[-71.262978013,41.729729212],[-71.262851535,41.729786489],[-71.262748874,41.729809261],[-71.262589678,41.729805845],[-71.262431994,41.729806228],[-71.262399274,41.729787773],[-71.262392816,41.729784124],[-71.26249383,41.729694434],[-71.262575707,41.729603699],[-71.26265997,41.729528062],[-71.262679843,41.729495241],[-71.262543339,41.729357173],[-71.262534306,41.729347755],[-71.262457179,41.729326144],[-71.262359639,41.729276614],[-71.262245435,41.729275417],[-71.262105639,41.729309935],[-71.261981881,41.729316653],[-71.261865692,41.729257914],[-71.261773084,41.729170934],[-71.261711091,41.729068992],[-71.261727833,41.728958158],[-71.261805377,41.728850445],[-71.261902996,41.728762533],[-71.262017249,41.728675662],[-71.26214652,41.72858905],[-71.262173016,41.728507119],[-71.262142057,41.728400257],[-71.262090504,41.728265383],[-71.262112375,41.728129632],[-71.262175687,41.728022896],[-71.262245721,41.727914413],[-71.262324155,41.727804849],[-71.262415792,41.727699338],[-71.262511245,41.727602045],[-71.262642144,41.727495471],[-71.262754136,41.727424762],[-71.262851773,41.727314415],[-71.26287584,41.727186833],[-71.262862326,41.727059653],[-71.262807178,41.726930992],[-71.262740144,41.726830184],[-71.262661587,41.726724779],[-71.262625893,41.726610908],[-71.262648143,41.726487644],[-71.262669236,41.726371879],[-71.262628174,41.72628974],[-71.262513265,41.726241066],[-71.262410044,41.72623509],[-71.262334869,41.72628097],[-71.2622851,41.726383023],[-71.262243123,41.726499591],[-71.262198657,41.726636759],[-71.262138233,41.726755416],[-71.262074751,41.726800954],[-71.261978902,41.72679888],[-71.261817437,41.726767284],[-71.261720707,41.726722717],[-71.261678315,41.726653725],[-71.261725376,41.726557841],[-71.261643937,41.726506079],[-71.261571925,41.726447728],[-71.261588124,41.726351803],[-71.261644231,41.726236797],[-71.261762168,41.726184328],[-71.261929844,41.72616231],[-71.262094894,41.726165236],[-71.262268356,41.726188304],[-71.262422975,41.726180368],[-71.262602945,41.726185474],[-71.262709935,41.726245886],[-71.262817217,41.726210089],[-71.262963859,41.726171377],[-71.263118318,41.726124059],[-71.263146372,41.726065915],[-71.263086886,41.726029637],[-71.262945966,41.726006637],[-71.262764488,41.725996475],[-71.262591239,41.725990262],[-71.262438944,41.725980754],[-71.262262775,41.725963238],[-71.262097432,41.725924064],[-71.262100994,41.725852286],[-71.26215073,41.725817102],[-71.262301502,41.725800948],[-71.262433161,41.725760651],[-71.262521296,41.725660072],[-71.262556316,41.725550853],[-71.262548914,41.725438825],[-71.262529095,41.72532469],[-71.262498238,41.72521529],[-71.262460074,41.725100728],[-71.262431539,41.724974501],[-71.262410245,41.724854691],[-71.262436543,41.724734637],[-71.26242101,41.72461747],[-71.26240294,41.724500846],[-71.262381329,41.724367909],[-71.262395803,41.724250735],[-71.262401084,41.724134617],[-71.262370263,41.724023959],[-71.26234616,41.723912834],[-71.262244266,41.723829448],[-71.262113724,41.723774773],[-71.261964996,41.723759714],[-71.261786208,41.723767142],[-71.261627513,41.723772462],[-71.261461308,41.723778269],[-71.261347702,41.723717087],[-71.261267284,41.72370409],[-71.261112613,41.723735762],[-71.260955227,41.723750529],[-71.26084645,41.723803199],[-71.260690203,41.723831711],[-71.260534712,41.7238621],[-71.260438709,41.723820667],[-71.260339908,41.723809187],[-71.260171076,41.723839914],[-71.260021178,41.723876671],[-71.259915478,41.723848779],[-71.259791028,41.723765504],[-71.259639603,41.723712269],[-71.259514927,41.723657099],[-71.259424969,41.723566441],[-71.259402801,41.72346975],[-71.259455549,41.723420898],[-71.259531784,41.723368756],[-71.259499917,41.723286223],[-71.259450654,41.723243904],[-71.259327321,41.723262535],[-71.25919225,41.723326446],[-71.259061113,41.723309271],[-71.258935783,41.723380314],[-71.258902136,41.723431493],[-71.25897483,41.723493643],[-71.259080089,41.723598376],[-71.259139502,41.723702165],[-71.259179235,41.723819864],[-71.25922611,41.723945834],[-71.259232246,41.724068448],[-71.259218908,41.724198773],[-71.259203673,41.72431407],[-71.25915504,41.724364257],[-71.259070315,41.724376155],[-71.258969596,41.724305895],[-71.258810764,41.724314984],[-71.258650672,41.724334658],[-71.258505054,41.724369045],[-71.258370893,41.724409287],[-71.258250702,41.724476681],[-71.258215283,41.724552143],[-71.258164868,41.72467043],[-71.258094493,41.724722057],[-71.257968371,41.7247268],[-71.257881725,41.72474617],[-71.257809277,41.724829627],[-71.257727334,41.724921617],[-71.257666487,41.725029019],[-71.257626151,41.725145634],[-71.257595002,41.725262452],[-71.257571075,41.725276947],[-71.257533258,41.725218619],[-71.257505801,41.725108676],[-71.257473375,41.724996755],[-71.257491351,41.72487593],[-71.257564126,41.724762493],[-71.257623195,41.724656916],[-71.257598818,41.724531382],[-71.257651141,41.724450056],[-71.257712531,41.72432763],[-71.257675682,41.72422311],[-71.257658985,41.724157737],[-71.257718659,41.72403716],[-71.257686335,41.723922747],[-71.257724571,41.723861081],[-71.257748126,41.723790969],[-71.25768099,41.723736444],[-71.257597384,41.723654031],[-71.257491475,41.723544242],[-71.257417824,41.723420182],[-71.257403643,41.723311181],[-71.257425183,41.72318412],[-71.257359817,41.723105861],[-71.257259478,41.723024967],[-71.257159038,41.722946589],[-71.257087325,41.722859443],[-71.257018483,41.72273983],[-71.256928773,41.722730447],[-71.25676904,41.722785086],[-71.256695627,41.72278477],[-71.256608786,41.722678543],[-71.25655938,41.722553138],[-71.256517587,41.722424754],[-71.256402954,41.722346665],[-71.256361766,41.722268274],[-71.256327627,41.722158179],[-71.256356845,41.722091966],[-71.25637039,41.722021627],[-71.25629733,41.721903856],[-71.256184363,41.721869564],[-71.256158892,41.7218165],[-71.256086455,41.721703739],[-71.256030818,41.721588155],[-71.255969924,41.721458106],[-71.255924601,41.721335272],[-71.255883948,41.72122068],[-71.25579241,41.721106232],[-71.255765265,41.720987552],[-71.255790763,41.720888126],[-71.25586313,41.7208497],[-71.255951578,41.720804698],[-71.255917573,41.720756464],[-71.255841094,41.720727966],[-71.255678867,41.720716988],[-71.255649734,41.720671988],[-71.255652694,41.720551428],[-71.255660184,41.720443479],[-71.255603654,41.720394763],[-71.25556511,41.720312077],[-71.255606755,41.720204864],[-71.255615946,41.720139455],[-71.25552733,41.72003567],[-71.255499132,41.720001947],[-71.255450756,41.719944054],[-71.25538206,41.719843855],[-71.255346788,41.719719372],[-71.255328795,41.719666804],[-71.255295958,41.719616719],[-71.255269834,41.719510894],[-71.255260281,41.719438265],[-71.25525699,41.719380422],[-71.255261453,41.719314317],[-71.255264115,41.719256395],[-71.255263735,41.719195494],[-71.255250582,41.719138499],[-71.255231346,41.719075659],[-71.255205312,41.71901882],[-71.255170333,41.718962122],[-71.255137294,41.718900945],[-71.255103323,41.718844203],[-71.255073245,41.718782941],[-71.255069958,41.718724344],[-71.255055667,41.718661446],[-71.255032439,41.718597135],[-71.255017193,41.718536476],[-71.254997983,41.7184751],[-71.255004641,41.718417873],[-71.255010134,41.718353966],[-71.25499788,41.718293268],[-71.254976766,41.718234861],[-71.254971336,41.718169627],[-71.254988892,41.71811224],[-71.25502525,41.718054642],[-71.255074645,41.718004252],[-71.255129967,41.717952366],[-71.255164292,41.71789179],[-71.255199828,41.717841645],[-71.255239225,41.71778769],[-71.255271803,41.717736784],[-71.255269807,41.717691545],[-71.255193291,41.717682097],[-71.255099394,41.717692188],[-71.255021314,41.71770062],[-71.254926307,41.717705495],[-71.254846938,41.717699837],[-71.254777248,41.717685097],[-71.254710392,41.717663664],[-71.254635575,41.717640886],[-71.254570651,41.71761717],[-71.254484676,41.717582637],[-71.254417638,41.717553061],[-71.254344307,41.717508653],[-71.254269103,41.717467305],[-71.254211548,41.7174643],[-71.254134199,41.717505345],[-71.25406566,41.717541102],[-71.253998018,41.717573866],[-71.25392837,41.71760443],[-71.253849725,41.717632917],[-71.253780954,41.717657491],[-71.253707306,41.717688138],[-71.253666005,41.717745039],[-71.25361949,41.717792416],[-71.253558856,41.717828053],[-71.253480269,41.717857248],[-71.253400623,41.717884223],[-71.253317007,41.71791128],[-71.25322842,41.717937573],[-71.253145447,41.71794828],[-71.253059485,41.717958249],[-71.252989676,41.717982889],[-71.252892842,41.717994504],[-71.252818964,41.718013235],[-71.252749105,41.718034879],[-71.252674375,41.718061064],[-71.252603508,41.718082728],[-71.252526667,41.718102253],[-71.252443848,41.71812037],[-71.252370898,41.71813613],[-71.252291943,41.718149727],[-71.252221156,41.718174387],[-71.252156346,41.71820041],[-71.252087571,41.71822576],[-71.252026961,41.718262883],[-71.252030861,41.718304445],[-71.252080462,41.718352051],[-71.252102605,41.718411924],[-71.252119832,41.718472541],[-71.25205301,41.718497873],[-71.25199351,41.71854019],[-71.251966936,41.71859248],[-71.251965501,41.718616284],[-71.251997538,41.718675241],[-71.252020662,41.718734339],[-71.252014079,41.71879527],[-71.252066097,41.718817634],[-71.252112697,41.718820022],[-71.252118977,41.718877871],[-71.252131144,41.718936351],[-71.252114486,41.718990034],[-71.252089924,41.719043015],[-71.252050626,41.719102138],[-71.252017173,41.7191575],[-71.251998693,41.719216348],[-71.251943525,41.719274934],[-71.251898995,41.719321514],[-71.251876698,41.719388609],[-71.251868263,41.719454774],[-71.25187066,41.719561647],[-71.251910502,41.719615315],[-71.251931456,41.719667044],[-71.251896976,41.719719431],[-71.251858162,41.719819217],[-71.251848945,41.719842752],[-71.25180648,41.719971185],[-71.251800562,41.719993949],[-71.251770259,41.720111019],[-71.2517752,41.720199259],[-71.251844354,41.720266323],[-71.251903684,41.720371969],[-71.251889326,41.720486032],[-71.251915539,41.72060718],[-71.251919211,41.72068412],[-71.25183945,41.720763646],[-71.251745335,41.720868481],[-71.251695005,41.720962387],[-71.251728523,41.721088719],[-71.251612318,41.721183077],[-71.251479814,41.721245201],[-71.251327041,41.721291889],[-71.251284756,41.721285989],[-71.251284781,41.721263486],[-71.251387595,41.721214471],[-71.251512322,41.721158414],[-71.251580658,41.721073649],[-71.251568403,41.720958431],[-71.251601172,41.720843516],[-71.251580519,41.720729332],[-71.251526298,41.720620678],[-71.251473575,41.720495813],[-71.251415095,41.720367689],[-71.251335913,41.720257243],[-71.251263211,41.720152574],[-71.251251902,41.720077379],[-71.251288674,41.719992843],[-71.251300377,41.719965928],[-71.251294275,41.719885782],[-71.25124674,41.71977728],[-71.251232186,41.719657025],[-71.251188954,41.719604333],[-71.251157077,41.719551276],[-71.251119218,41.719498298],[-71.251093267,41.719444454],[-71.251075092,41.719384543],[-71.251051969,41.719325422],[-71.251033662,41.719260343],[-71.251036253,41.719197985],[-71.25101985,41.719129891],[-71.250990703,41.719065657],[-71.25096835,41.71899691],[-71.25097084,41.718929314],[-71.250984196,41.718861605],[-71.250972845,41.718797158],[-71.250941894,41.718741908],[-71.250918852,41.718685783],[-71.250912681,41.718631639],[-71.250932222,41.718574988],[-71.250917162,41.718522471],[-71.25085494,41.718486889],[-71.250775021,41.718457466],[-71.250694255,41.718433965],[-71.250603701,41.718415793],[-71.250520335,41.718409438],[-71.25044022,41.718414889],[-71.250358013,41.718416655],[-71.250285208,41.718394542],[-71.250225765,41.718350779],[-71.250153678,41.718316776],[-71.250085308,41.71831617],[-71.250018591,41.718345915],[-71.249950816,41.718372753],[-71.249916394,41.718339015],[-71.249922924,41.718276596],[-71.249903928,41.718224116],[-71.249855463,41.718183166],[-71.24979131,41.718149821],[-71.249722212,41.718116533],[-71.249680467,41.718066588],[-71.249642489,41.718005444],[-71.249594868,41.717959305],[-71.249539474,41.717918386],[-71.249490033,41.717877457],[-71.24946019,41.717828109],[-71.249434983,41.717763815],[-71.24941673,41.717700954],[-71.249384804,41.717645678],[-71.249328354,41.717601875],[-71.249258585,41.717584159],[-71.249201183,41.717541841],[-71.249149808,41.71750388],[-71.24908259,41.717466114],[-71.249032114,41.717424473],[-71.248976719,41.717384308],[-71.248909815,41.717359921],[-71.24883619,41.717345238],[-71.24875867,41.717335075],[-71.248683649,41.717302597],[-71.248599971,41.717282861],[-71.248518566,41.717274953],[-71.248474715,41.717217616],[-71.248433821,41.717160994],[-71.248388007,41.717105871],[-71.248341423,41.717060419],[-71.248303543,41.717005954],[-71.248264689,41.716950777],[-71.248202418,41.716912952],[-71.248164667,41.716864456],[-71.248144514,41.716803854],[-71.248121528,41.716749924],[-71.248064254,41.716714283],[-71.247981531,41.716692284],[-71.247918074,41.716645607],[-71.247873801,41.716571185],[-71.247835053,41.716520422],[-71.247813538,41.71647267],[-71.247732078,41.716377836],[-71.247695586,41.716296433],[-71.247652701,41.716257485],[-71.24759975,41.716209343],[-71.247538615,41.716123038],[-71.247419871,41.716071368],[-71.247327401,41.715982501],[-71.247250785,41.715890262],[-71.247122916,41.715838433],[-71.246947811,41.715830181],[-71.246796087,41.715837325],[-71.246708004,41.715805],[-71.246596347,41.715721258],[-71.246527137,41.715608727],[-71.246521652,41.715497617],[-71.246457835,41.71545773],[-71.246365441,41.715450711],[-71.246299691,41.715397761],[-71.246154481,41.715386463],[-71.246028881,41.715340287],[-71.245983566,41.715314437],[-71.245916923,41.715263383],[-71.245846752,41.715217146],[-71.245710533,41.71514714],[-71.245599189,41.715116158],[-71.245522862,41.715121866],[-71.24538957,41.715060602],[-71.245260823,41.715031067],[-71.245131656,41.715053604],[-71.244980895,41.71505702],[-71.244832071,41.715095247],[-71.244681676,41.71515268],[-71.244551087,41.7152105],[-71.244441754,41.715296108],[-71.244308452,41.715360691],[-71.244159244,41.715387733],[-71.243995865,41.715416962],[-71.243905004,41.715454608],[-71.243931665,41.715512274],[-71.244020056,41.715620253],[-71.244035288,41.715735296],[-71.244025115,41.715845433],[-71.243983268,41.715961081],[-71.243910038,41.716054932],[-71.243844453,41.716122296],[-71.243864114,41.71625171],[-71.243832873,41.716371291],[-71.243777543,41.716430833],[-71.243638938,41.716461832],[-71.243618295,41.716456823],[-71.243579934,41.716447499],[-71.243625244,41.716390221],[-71.243691857,41.716317898],[-71.243653367,41.716202963],[-71.243630726,41.716085915],[-71.243627718,41.715974856],[-71.243665693,41.7159354],[-71.243741243,41.715887452],[-71.24375806,41.715818402],[-71.243719563,41.715705297],[-71.243655128,41.715598469],[-71.243573596,41.715485016],[-71.24352752,41.715374227],[-71.243500966,41.715251498],[-71.243498116,41.71517767],[-71.243515623,41.715111686],[-71.243457571,41.715073182],[-71.24331123,41.715069951],[-71.24328492,41.715024063],[-71.243295166,41.714995797],[-71.243380882,41.714962348],[-71.243429485,41.714844383],[-71.243436398,41.714732957],[-71.243409023,41.714609563],[-71.243339034,41.714518091],[-71.243235286,41.71444262],[-71.243199361,41.714389094],[-71.243233685,41.714277318],[-71.24323452,41.714274553],[-71.243204062,41.714166588],[-71.243136916,41.714066478],[-71.24308063,41.713983383],[-71.243028883,41.713833269],[-71.243003183,41.713711021],[-71.242969339,41.713602661],[-71.24291012,41.713482008],[-71.242847019,41.713378361],[-71.242788709,41.713259563],[-71.242744543,41.713137503],[-71.242703084,41.713025466],[-71.242659049,41.712909055],[-71.242640185,41.712794874],[-71.242644521,41.712710016],[-71.242542441,41.712630637],[-71.242511507,41.712542979],[-71.24250698,41.712430568],[-71.242536916,41.712324728],[-71.242622364,41.712227726],[-71.242683135,41.712203849],[-71.242805076,41.71222395],[-71.242876574,41.71218864],[-71.242902073,41.712116156],[-71.242859314,41.712070071],[-71.242706557,41.712062845],[-71.242557086,41.712096425],[-71.242472416,41.712097928],[-71.242356764,41.712008616],[-71.24228111,41.711907594],[-71.242267834,41.711869396],[-71.242291083,41.711810102],[-71.242298721,41.711769824],[-71.242389713,41.711698516],[-71.242297655,41.711662383],[-71.242273158,41.711606093],[-71.24231421,41.711559806],[-71.242256823,41.711493151],[-71.24225614,41.711488324],[-71.242243373,41.71139906],[-71.242204797,41.711307086],[-71.24220791,41.711246101],[-71.242174063,41.711184873],[-71.242150771,41.711056342],[-71.242147692,41.710933208],[-71.242228886,41.710877063],[-71.242108851,41.710823646],[-71.242065339,41.710737378],[-71.242128016,41.710678951],[-71.24209981,41.710649707],[-71.242046506,41.710623242],[-71.24204866,41.710511988],[-71.242084933,41.710477675],[-71.242049036,41.710440981],[-71.242033107,41.710348782],[-71.242121862,41.710294462],[-71.242024846,41.710262158],[-71.24203261,41.710228764],[-71.242066453,41.710198904],[-71.242040748,41.71017026],[-71.241960372,41.710128984],[-71.241965687,41.71005163],[-71.242002836,41.710019216],[-71.242113329,41.710008693],[-71.242082692,41.709984474],[-71.241928991,41.709970362],[-71.241910358,41.709959229],[-71.241943745,41.70990611],[-71.24183258,41.709833091],[-71.241804,41.709783103],[-71.241842329,41.709723067],[-71.241908908,41.709695979],[-71.241854151,41.709682066],[-71.241770989,41.709673509],[-71.241744884,41.709622841],[-71.241870589,41.709570685],[-71.241846364,41.709530701],[-71.241829031,41.709499514],[-71.241814151,41.709465726],[-71.241744919,41.709438745],[-71.24176468,41.709419716],[-71.241846594,41.709404418],[-71.241781064,41.709352335],[-71.241832071,41.709296512],[-71.241764868,41.70924319],[-71.241774389,41.709167057],[-71.241721159,41.709099703],[-71.241765972,41.709028246],[-71.241696164,41.70896991],[-71.24161343,41.708938713],[-71.24154986,41.708854549],[-71.241577313,41.708797095],[-71.241634349,41.708752514],[-71.241591618,41.708707732],[-71.241616418,41.708642108],[-71.241599712,41.708599556],[-71.241602995,41.708549275],[-71.241581574,41.708525603],[-71.241602473,41.708473851],[-71.241575598,41.708425125],[-71.24165433,41.708373435],[-71.241540808,41.708310496],[-71.241529839,41.708260342],[-71.241621922,41.708220231],[-71.241552384,41.708209211],[-71.241493546,41.708201052],[-71.241497754,41.7081105],[-71.241559705,41.70805772],[-71.241407735,41.708046744],[-71.24136936,41.708011919],[-71.241287881,41.707911592],[-71.241224739,41.707804811],[-71.241224495,41.707743865],[-71.241220116,41.707686728],[-71.241170171,41.707569137],[-71.241145476,41.707456268],[-71.241199838,41.707355171],[-71.241279165,41.707246287],[-71.241371445,41.707156756],[-71.241483938,41.707072051],[-71.241588845,41.706984263],[-71.241580436,41.706889498],[-71.241647217,41.706780745],[-71.241725494,41.706659303],[-71.241803872,41.706542915],[-71.241839916,41.706450811],[-71.241802397,41.70632426],[-71.241729919,41.706209386],[-71.241689193,41.706091084],[-71.241766145,41.705987888],[-71.241871519,41.705881875],[-71.241964447,41.70578226],[-71.242071205,41.705703898],[-71.242166786,41.705612431],[-71.242194191,41.70550535],[-71.242217385,41.705398283],[-71.242206173,41.705286588],[-71.242141073,41.705165967],[-71.242044347,41.705055727],[-71.241969403,41.704947182],[-71.241898325,41.704818475],[-71.241849358,41.704708387],[-71.241807814,41.704588803],[-71.241742065,41.704524141],[-71.2416007,41.704496037],[-71.241433161,41.704458178],[-71.241290446,41.704401805],[-71.241173277,41.704367191],[-71.241019186,41.70437757],[-71.240870734,41.704328821],[-71.240720583,41.704277576],[-71.240587261,41.704230531],[-71.240442112,41.704225766],[-71.240286994,41.704271291],[-71.240147606,41.704305989],[-71.240012549,41.704348837],[-71.239849946,41.70439638],[-71.239698055,41.704436263],[-71.239542489,41.704456699],[-71.239387846,41.70443755],[-71.239227849,41.704398927],[-71.239075293,41.704353986],[-71.238938465,41.704298835],[-71.238777314,41.704243926],[-71.238633927,41.704195735],[-71.238491359,41.704148826],[-71.238335896,41.704129033],[-71.238179254,41.704091034],[-71.238116027,41.703977322],[-71.238053042,41.703879321],[-71.237934399,41.703810146],[-71.237805493,41.703728529],[-71.237720182,41.703740066],[-71.237576111,41.703793091],[-71.237412432,41.703782815],[-71.237282608,41.703791643],[-71.237151832,41.703884719],[-71.237034579,41.703983931],[-71.236930376,41.704063529],[-71.236806228,41.70415463],[-71.236781896,41.704157204],[-71.236746817,41.704160874],[-71.236720954,41.704119673],[-71.236779147,41.704045573],[-71.236865442,41.703949835],[-71.236930745,41.703853042],[-71.237012935,41.703761091],[-71.237085851,41.703713232],[-71.237226741,41.703669669],[-71.23737665,41.703614142],[-71.237445963,41.703551868],[-71.237507232,41.703463893],[-71.23761995,41.703391129],[-71.237712529,41.70331793],[-71.23775019,41.703219519],[-71.237712875,41.703150163],[-71.237568284,41.703083787],[-71.237462749,41.702996277],[-71.237383085,41.702902835],[-71.237272862,41.702834822],[-71.237284894,41.70271282],[-71.237233658,41.702615326],[-71.237320881,41.702523317],[-71.237391248,41.702426467],[-71.237479219,41.702330709],[-71.237562076,41.70227647],[-71.237627721,41.702290249],[-71.237750162,41.702385116],[-71.237863316,41.702475089],[-71.237967094,41.702559485],[-71.238064789,41.702676591],[-71.23818245,41.702784116],[-71.238303469,41.702891579],[-71.238422705,41.70299467],[-71.238539864,41.703075802],[-71.23865888,41.703165674],[-71.238757002,41.70326085],[-71.238877694,41.70335132],[-71.239014892,41.703427832],[-71.239171934,41.703487168],[-71.239321662,41.703513944],[-71.239478704,41.70352809],[-71.239614152,41.703554331],[-71.239737228,41.703591383],[-71.239897134,41.703576583],[-71.240077092,41.703560936],[-71.240248586,41.703540353],[-71.240392405,41.703518792],[-71.240567307,41.703500663],[-71.240713027,41.703492233],[-71.240884326,41.703504946],[-71.241062406,41.703523848],[-71.241236029,41.703527761],[-71.241381975,41.703531291],[-71.241544053,41.703545355],[-71.241628459,41.703576555],[-71.241729221,41.703676674],[-71.241859387,41.703734391],[-71.241902888,41.703776682],[-71.241765532,41.70383023],[-71.241716334,41.703892301],[-71.241721119,41.703970158],[-71.241814137,41.704060952],[-71.241859422,41.704152873],[-71.242003913,41.704215493],[-71.242163539,41.704278558],[-71.242298044,41.704343145],[-71.242428911,41.704393956],[-71.242589364,41.704410576],[-71.242711992,41.704377256],[-71.242846221,41.704335042],[-71.243002987,41.704288854],[-71.243144982,41.704212011],[-71.243283491,41.704129512],[-71.243403964,41.704069864],[-71.24356001,41.704028064],[-71.243734183,41.704016858],[-71.243887142,41.703991448],[-71.244042085,41.70393517],[-71.244191312,41.703889032],[-71.244332148,41.703842349],[-71.244481428,41.703798132],[-71.2446135,41.703729544],[-71.244734922,41.703630287],[-71.244835564,41.703538142],[-71.244860335,41.703470665],[-71.244795361,41.703402233],[-71.244630979,41.703353637],[-71.244474264,41.703310615],[-71.244331691,41.703264308],[-71.244187253,41.703250082],[-71.244033663,41.703288709],[-71.243909185,41.70335848],[-71.24375783,41.703425995],[-71.243595099,41.703468535],[-71.243435027,41.70347202],[-71.24328194,41.70344531],[-71.243203693,41.703384532],[-71.243227617,41.703269919],[-71.243294466,41.703165579],[-71.243246402,41.703150356],[-71.243153178,41.703141891],[-71.243050211,41.703058738],[-71.242929261,41.702955053],[-71.242797549,41.70285649],[-71.242669539,41.702778631],[-71.242561464,41.702737019],[-71.242408428,41.702713464],[-71.242318337,41.702738235],[-71.242211162,41.702792103],[-71.242052946,41.702759182],[-71.241892977,41.702721844],[-71.241767019,41.702665325],[-71.241688146,41.702662358],[-71.241568799,41.702692483],[-71.241403619,41.702691654],[-71.241332063,41.702675416],[-71.241248434,41.702595231],[-71.241138309,41.702578083],[-71.241018986,41.70256423],[-71.240880035,41.702529224],[-71.240802237,41.702494196],[-71.240828691,41.702426723],[-71.240919212,41.702332775],[-71.241046853,41.702251077],[-71.241204815,41.702270849],[-71.24130926,41.702250913],[-71.241443741,41.702175382],[-71.241527921,41.702148174],[-71.241625051,41.702186767],[-71.241740433,41.702171132],[-71.241803425,41.702222638],[-71.241907589,41.702234741],[-71.241990539,41.702324368],[-71.242065352,41.702334919],[-71.242088343,41.702400651],[-71.242072912,41.702520199],[-71.24214417,41.702611195],[-71.242229876,41.70262225],[-71.242373693,41.702554834],[-71.242456197,41.702481106],[-71.242443473,41.702381345],[-71.242406131,41.702264217],[-71.242393132,41.702149408],[-71.242409271,41.702020393],[-71.242463999,41.701894804],[-71.24244965,41.701796938],[-71.242382326,41.701691452],[-71.242346411,41.701561154],[-71.242363675,41.701463702],[-71.242407238,41.701436448],[-71.242444829,41.701422033],[-71.242499086,41.701406672],[-71.242578218,41.701397908],[-71.242581849,41.70127536],[-71.242564522,41.70124351],[-71.242393532,41.701246489],[-71.242309031,41.701209023],[-71.242266852,41.70110389],[-71.242229034,41.701006886],[-71.242259444,41.700972033],[-71.242285689,41.700940967],[-71.242157959,41.700878179],[-71.242087234,41.700814833],[-71.24209066,41.700728693],[-71.242149652,41.700604966],[-71.242239018,41.70049345],[-71.242344735,41.700406304],[-71.242430917,41.700304913],[-71.242522035,41.700197769],[-71.242588107,41.700096561],[-71.242649064,41.699992254],[-71.242694979,41.699887502],[-71.242702743,41.699761762],[-71.242683114,41.699648882],[-71.242657971,41.699510879],[-71.242649956,41.699393473],[-71.242658623,41.699270891],[-71.242680234,41.699169492],[-71.242627041,41.699102183],[-71.242482531,41.69908544],[-71.242337253,41.699024076],[-71.242227705,41.698947951],[-71.242200961,41.698905491],[-71.242225805,41.698843],[-71.242296536,41.698812743],[-71.242463505,41.698821716],[-71.242609491,41.698827806],[-71.242718136,41.698854943],[-71.242771757,41.69889904],[-71.242740575,41.69898226],[-71.242801551,41.699110487],[-71.242868051,41.699169501],[-71.243032141,41.69920424],[-71.243193633,41.69923273],[-71.243340498,41.699240674],[-71.243505345,41.699223272],[-71.243605676,41.699161955],[-71.243682683,41.699065002],[-71.243730771,41.698942645],[-71.243713698,41.698877475],[-71.243576476,41.698800306],[-71.243448874,41.698744449],[-71.243307268,41.698657322],[-71.243178212,41.698568141],[-71.243029871,41.698479214],[-71.242888218,41.698388907],[-71.242776321,41.698320278],[-71.242652024,41.698262484],[-71.242550201,41.698239021],[-71.242389383,41.69824886],[-71.242218584,41.698259386],[-71.242053489,41.698262972],[-71.241883084,41.698251497],[-71.24172007,41.698230549],[-71.24155142,41.698222806],[-71.241389928,41.69824083],[-71.241232648,41.698258771],[-71.241035322,41.698287164],[-71.240861709,41.698329767],[-71.240696513,41.698373555],[-71.240540457,41.698413452],[-71.240368743,41.698469231],[-71.240188872,41.698535145],[-71.240009722,41.698596052],[-71.239838163,41.69865876],[-71.239668378,41.698727715],[-71.239491913,41.698796082],[-71.239307027,41.698863951],[-71.239121287,41.698931793],[-71.238939834,41.699003396],[-71.238812502,41.699054974],[-71.238675126,41.699107856],[-71.238536948,41.699162702],[-71.238397069,41.699215623],[-71.238264778,41.699271008],[-71.238087747,41.699357622],[-71.237909951,41.699444897],[-71.237777778,41.699508446],[-71.237643876,41.699569475],[-71.237510856,41.699631147],[-71.23738297,41.699698433],[-71.237228786,41.699794246],[-71.237097715,41.699871587],[-71.236916628,41.699964547],[-71.236782004,41.700029988],[-71.236656837,41.700088703],[-71.236646503,41.700093551],[-71.236513557,41.700159018],[-71.236385666,41.700226897],[-71.236264309,41.700286605],[-71.236133644,41.700338789],[-71.235995383,41.700390453],[-71.235852943,41.700441582],[-71.23570635,41.700493272],[-71.235566539,41.700550626],[-71.235434291,41.700609141],[-71.235301117,41.700662669],[-71.235159551,41.700716245],[-71.235018989,41.700777988],[-71.234880176,41.700844743],[-71.234736253,41.700907164],[-71.234599851,41.700966332],[-71.234470955,41.701025448],[-71.23433297,41.701090924],[-71.234190076,41.701162768],[-71.234050427,41.701232013],[-71.233907408,41.701296928],[-71.233770025,41.701349208],[-71.233588458,41.701415749],[-71.233417757,41.701481559],[-71.23327977,41.701547056],[-71.233186762,41.70164225],[-71.233054525,41.701748513],[-71.232920167,41.701829066],[-71.232793071,41.701895023],[-71.232663474,41.701960447],[-71.232524673,41.701934808],[-71.232395042,41.701905348],[-71.232355091,41.701921447],[-71.232367404,41.701954636],[-71.232487735,41.702026313],[-71.232587279,41.702106976],[-71.232575888,41.702219557],[-71.232568731,41.702334],[-71.232567494,41.702404389],[-71.232595179,41.702498331],[-71.23252781,41.702620913],[-71.232426233,41.702706756],[-71.232350244,41.702818112],[-71.232327029,41.702926411],[-71.23226427,41.703026318],[-71.232216064,41.703141809],[-71.232112478,41.703255319],[-71.232017686,41.703345476],[-71.231911897,41.703430737],[-71.231793462,41.703511738],[-71.23165148,41.703589848],[-71.231492765,41.703669976],[-71.231344003,41.703741849],[-71.231193939,41.703789226],[-71.231047459,41.703803909],[-71.230894174,41.703811097],[-71.230768604,41.703868295],[-71.230652069,41.703961191],[-71.230641382,41.703999426],[-71.23061505,41.704093517],[-71.23056777,41.70416876],[-71.230428464,41.704255656],[-71.230308004,41.704316525],[-71.230171486,41.704371319],[-71.230062213,41.704449687],[-71.229965809,41.704544916],[-71.22983908,41.7046304],[-71.229687578,41.704692271],[-71.229623014,41.704719059],[-71.229597702,41.704729588],[-71.229504784,41.70482981],[-71.229397163,41.704906923],[-71.229275916,41.704972867],[-71.229125369,41.705039701],[-71.228993035,41.705093178],[-71.22884657,41.70515435],[-71.228690011,41.705213738],[-71.228550836,41.705261023],[-71.228417866,41.705327715],[-71.228253294,41.705362041],[-71.22813416,41.70540409],[-71.228073106,41.705459335],[-71.227917975,41.705505529],[-71.227869149,41.705541181],[-71.227819935,41.705647246],[-71.227758068,41.705750285],[-71.227673171,41.705879957],[-71.227605641,41.705994349],[-71.227541311,41.706102436],[-71.227479567,41.706212404],[-71.227426092,41.706315348],[-71.227356832,41.706427266],[-71.227296665,41.706532161],[-71.227252976,41.706666436],[-71.227226936,41.706805533],[-71.227205814,41.706936431],[-71.227165226,41.70705873],[-71.227128878,41.707181634],[-71.227071967,41.707281483],[-71.226975561,41.707374811],[-71.226842061,41.707457212],[-71.226728365,41.707525595],[-71.226602324,41.707604765],[-71.22648979,41.707686963],[-71.226375401,41.707760352],[-71.226246806,41.707837046],[-71.226111774,41.707927629],[-71.225973404,41.708020743],[-71.225848967,41.708095502],[-71.225694584,41.708136024],[-71.225563055,41.708141747],[-71.225604453,41.708253173],[-71.225691008,41.708359744],[-71.2256918,41.708496709],[-71.225649362,41.708608346],[-71.225522348,41.708678731],[-71.225483416,41.708704892],[-71.225488224,41.708787141],[-71.225434917,41.70889953],[-71.225364118,41.709020247],[-71.225315133,41.709142616],[-71.225279607,41.709264858],[-71.225251718,41.709392676],[-71.225244421,41.709500829],[-71.225250875,41.709626442],[-71.225293311,41.709702034],[-71.22541042,41.709779383],[-71.225512294,41.709851275],[-71.22556933,41.709945564],[-71.225547944,41.710015515],[-71.225502098,41.710031071],[-71.225508749,41.710167958],[-71.225475728,41.710289566],[-71.225377826,41.710396085],[-71.225364734,41.710460339],[-71.22541581,41.71054965],[-71.225502888,41.710591503],[-71.225679211,41.710603564],[-71.225769703,41.710646637],[-71.225794431,41.710716744],[-71.225828578,41.710796822],[-71.225955659,41.710869688],[-71.226067231,41.710965318],[-71.226084494,41.711039936],[-71.226054837,41.711116888],[-71.225974873,41.711145947],[-71.226009831,41.711178893],[-71.226145761,41.711230947],[-71.22625566,41.711325338],[-71.226287825,41.711390981],[-71.226248901,41.711450942],[-71.226218457,41.711497866],[-71.22621625,41.711607838],[-71.226217371,41.711717795],[-71.226192088,41.711849987],[-71.226160741,41.711972811],[-71.226111685,41.712090173],[-71.226031492,41.712201583],[-71.225998878,41.712250669],[-71.226218247,41.712520114],[-71.237389096,41.725031594],[-71.243444461,41.731810527],[-71.245076485,41.733638106],[-71.246386443,41.735104404],[-71.248225462,41.737162527],[-71.248539828,41.737514615],[-71.249492892,41.738581276],[-71.253998086,41.743930527],[-71.254692465,41.744754529],[-71.254944968,41.745054674],[-71.255025606,41.745150405],[-71.255093465,41.745230529],[-71.256090893,41.746415063],[-71.259201837,41.750107886],[-71.259853958,41.750847233],[-71.260982271,41.752126308],[-71.261709452,41.752430341],[-71.262069469,41.75258053],[-71.263054468,41.752992531],[-71.263076962,41.753002073],[-71.264539462,41.753613491],[-71.264544469,41.753615531],[-71.264688464,41.753675781],[-71.270651469,41.756168368],[-71.275310045,41.758145129],[-71.277314474,41.758995531]]]]}}"}, +{"type": "precinct", "typeId": 3403, "areaId": 26032, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":371,\"NAME\":\"3403\",\"SHAPE_Length\":0.11015866048436,\"SHAPE_Area\":-0.00033940800966286},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.26203565,41.720873484],[-71.262703467,41.720725524],[-71.262837467,41.720722524],[-71.263385467,41.720708524],[-71.264211467,41.720703524],[-71.264656467,41.720691524],[-71.265106468,41.720700524],[-71.266853468,41.720688524],[-71.267693468,41.720672524],[-71.269150468,41.720665524],[-71.269257469,41.721249524],[-71.269432469,41.722074524],[-71.269558469,41.722693524],[-71.269631469,41.723047524],[-71.269707469,41.723401524],[-71.269886469,41.724304525],[-71.27004647,41.725098525],[-71.270078469,41.725300525],[-71.270088469,41.725429525],[-71.270340469,41.725424524],[-71.270906469,41.725465525],[-71.27097347,41.725470525],[-71.27162247,41.725498524],[-71.27230847,41.725543525],[-71.27305647,41.725587525],[-71.273186471,41.725589525],[-71.273903471,41.725628525],[-71.274712471,41.725680525],[-71.275215471,41.725702525],[-71.275436471,41.725702525],[-71.276004471,41.725674524],[-71.277306471,41.725606525],[-71.278008472,41.725570525],[-71.278732472,41.725524524],[-71.278801473,41.726144524],[-71.278877473,41.727020524],[-71.279159472,41.727208525],[-71.279332472,41.727351524],[-71.279478473,41.727472525],[-71.279689473,41.727689525],[-71.280049473,41.728236525],[-71.280355473,41.728715525],[-71.280403472,41.728791525],[-71.280411473,41.728976525],[-71.280448473,41.729214525],[-71.280511473,41.729654525],[-71.280618473,41.730205525],[-71.280785473,41.730220525],[-71.281036473,41.730242525],[-71.281113473,41.730245525],[-71.281692473,41.730292526],[-71.282570473,41.730365525],[-71.282585474,41.730419525],[-71.283066474,41.730396525],[-71.283757474,41.730449526],[-71.283989475,41.730467526],[-71.284332474,41.730488526],[-71.284866475,41.730513525],[-71.285233475,41.730546526],[-71.285568475,41.730580525],[-71.28640949,41.730633522],[-71.286397635,41.730604683],[-71.286381229,41.730571286],[-71.286364854,41.730537844],[-71.286350219,41.730504451],[-71.286342601,41.730472512],[-71.286343772,41.730441458],[-71.286350155,41.730413158],[-71.286360866,41.730386901],[-71.286372427,41.730362018],[-71.286385629,41.730339814],[-71.286398692,41.730322229],[-71.286411492,41.730310567],[-71.286423138,41.730306221],[-71.286433733,41.730305783],[-71.286463641,41.73030904],[-71.286489188,41.730310917],[-71.286521852,41.730311595],[-71.286560682,41.730312445],[-71.286604791,41.730314059],[-71.286647985,41.730315626],[-71.286685076,41.730316404],[-71.286706331,41.730314248],[-71.286713032,41.730300493],[-71.286711312,41.730275974],[-71.286707167,41.7302461],[-71.286698463,41.730219441],[-71.286685129,41.730198674],[-71.286660836,41.730186897],[-71.286623945,41.7301815],[-71.286578163,41.730177848],[-71.286528875,41.730172816],[-71.286480603,41.73016518],[-71.286435842,41.730157596],[-71.286399936,41.73014957],[-71.286375641,41.730138457],[-71.28636483,41.730121056],[-71.286364881,41.730096563],[-71.286366905,41.730066174],[-71.286368242,41.730031141],[-71.286368661,41.729996747],[-71.286364552,41.729965546],[-71.286354962,41.729938886],[-71.286338938,41.729919372],[-71.286316384,41.729908284],[-71.286287396,41.729903702],[-71.286257454,41.729901725],[-71.286226661,41.729898443],[-71.286195934,41.729893813],[-71.286165208,41.729888518],[-71.286139793,41.729884012],[-71.286120546,41.729878967],[-71.286107563,41.729872083],[-71.286097337,41.729862596],[-71.286090724,41.729849868],[-71.286084407,41.729830555],[-71.286078226,41.729807263],[-71.286075619,41.729783406],[-71.286076424,41.72976159],[-71.286081585,41.729742504],[-71.286090157,41.729726146],[-71.28610486,41.729711262],[-71.286125798,41.729694516],[-71.286155588,41.729677922],[-71.286187805,41.729666045],[-71.28622162,41.729660139],[-71.286254288,41.729659536],[-71.286287802,41.729661588],[-71.286324728,41.729665659],[-71.28636349,41.729668498],[-71.286402321,41.729669302],[-71.286434954,41.729670026],[-71.286459748,41.72966854],[-71.286479497,41.729660367],[-71.286491712,41.729640768],[-71.286493633,41.729613694],[-71.286487686,41.729584457],[-71.286474522,41.729558384],[-71.286452334,41.729538058],[-71.286426502,41.72952095],[-71.286405199,41.729500648],[-71.286393739,41.729476615],[-71.286389396,41.729451359],[-71.286384201,41.729425439],[-71.286377199,41.729400819],[-71.286366559,41.729378113],[-71.286350535,41.729358599],[-71.286328212,41.729342206],[-71.286300442,41.729329713],[-71.286277854,41.729319335],[-71.286265075,41.729306481],[-71.286257805,41.729289133],[-71.286255098,41.729267883],[-71.286254197,41.729244715],[-71.286250604,41.729223485],[-71.286241567,41.729205425],[-71.286227012,41.729193849],[-71.286205175,41.729187428],[-71.286177039,41.729184174],[-71.286143555,41.729182168],[-71.286108302,41.729180067],[-71.286075804,41.729175387],[-71.28604695,41.729167512],[-71.286019114,41.729156346],[-71.285988724,41.72914243],[-71.285956562,41.729128535],[-71.285921708,41.729116532],[-71.285886755,41.729106519],[-71.285854425,41.729097265],[-71.28582485,41.729086027],[-71.28579974,41.729072259],[-71.28577919,41.729055275],[-71.2857694,41.72903392],[-71.285770402,41.729008125],[-71.285775014,41.728979776],[-71.285783137,41.72895148],[-71.285797321,41.728927333],[-71.285819179,41.728909262],[-71.285847883,41.728897949],[-71.285881566,41.728894719],[-71.285918593,41.728896183],[-71.285955584,41.728898928],[-71.285990903,41.728899702],[-71.286022683,41.728899716],[-71.286045774,41.728896237],[-71.286057621,41.728886585],[-71.286058221,41.728871356],[-71.286052726,41.72885273],[-71.286040146,41.728835258],[-71.286016804,41.728822179],[-71.285985325,41.72881423],[-71.285948469,41.728807484],[-71.285912529,41.728800762],[-71.285881905,41.728792838],[-71.285862104,41.728779835],[-71.285853099,41.728761134],[-71.285853117,41.728737327],[-71.285856845,41.728708931],[-71.285862377,41.72867928],[-71.285871418,41.728650367],[-71.285885635,41.728625558],[-71.28590664,41.728606776],[-71.285931767,41.72859676],[-71.28596099,41.728594734],[-71.28599536,41.728596101],[-71.286034187,41.728597614],[-71.286077412,41.728598541],[-71.286121523,41.728599469],[-71.286167434,41.728600447],[-71.286213283,41.728602087],[-71.286256473,41.72860434],[-71.286295202,41.728607797],[-71.286332128,41.72861189],[-71.286362953,41.728614532],[-71.286385908,41.728615032],[-71.286400277,41.728608724],[-71.286405175,41.728595583],[-71.286405877,41.728577083],[-71.286406778,41.728553942],[-71.286407749,41.72852817],[-71.286408687,41.728503039],[-71.286409623,41.728478593],[-71.286410524,41.728455474],[-71.28640939,41.728438229],[-71.286400902,41.728429454],[-71.28638254,41.728424435],[-71.28635706,41.728421232],[-71.286325382,41.728417925],[-71.286292883,41.728413908],[-71.286262126,41.728409277],[-71.286235008,41.728402755],[-71.286210681,41.728392304],[-71.286187307,41.728379889],[-71.286168361,41.728366932],[-71.28615486,41.728350785],[-71.286145858,41.728331375],[-71.286138887,41.728306755],[-71.286131137,41.728278131],[-71.286125257,41.728246927],[-71.286121182,41.728214422],[-71.286119794,41.728181992],[-71.286120933,41.728151578],[-71.286122036,41.728122491],[-71.286122972,41.728098],[-71.286123642,41.728080186],[-71.286124144,41.728066946],[-71.286128051,41.728057759],[-71.286140585,41.728052729],[-71.286162755,41.728050575],[-71.286190992,41.728051176],[-71.286221034,41.728050477],[-71.286249368,41.728049112],[-71.286274197,41.728046345],[-71.286293847,41.728040139],[-71.286309302,41.728028573],[-71.28632138,41.728013593],[-71.286329953,41.727996594],[-71.286333379,41.727976133],[-71.286334248,41.727953654],[-71.286335153,41.727929209],[-71.286334316,41.727905355],[-71.286333381,41.727883513],[-71.286328702,41.727867542],[-71.286316708,41.727857366],[-71.286299332,41.727849695],[-71.286279233,41.727843986],[-71.286257228,41.727842185],[-71.286234238,41.727843011],[-71.286209344,41.727847127],[-71.286184448,41.727851906],[-71.286159587,41.727855336],[-71.286137449,41.727856827],[-71.286118034,41.727856447],[-71.286102161,41.727856075],[-71.286088948,41.727854472],[-71.286078588,41.727848324],[-71.286070201,41.727836874],[-71.286062868,41.727820166],[-71.286053929,41.727800139],[-71.286045025,41.727778785],[-71.286040514,41.727758172],[-71.286041251,41.727738346],[-71.286045527,41.727719258],[-71.286056657,41.727704917],[-71.286075685,41.727692763],[-71.286099897,41.7276827],[-71.286125809,41.727675316],[-71.286151656,41.727669235],[-71.286172191,41.727663099],[-71.286189249,41.727656179],[-71.286205491,41.727646581],[-71.28621914,41.727636292],[-71.28622397,41.727625141],[-71.286222734,41.727611212],[-71.286217238,41.727593249],[-71.286211057,41.727569957],[-71.286205076,41.727541405],[-71.286197494,41.72750814],[-71.286187384,41.727472857],[-71.286175573,41.727434918],[-71.286163728,41.72739826],[-71.286154442,41.727362978],[-71.286145152,41.727329046],[-71.28613845,41.727297177],[-71.286133456,41.727265952],[-71.286131904,41.727236814],[-71.286132022,41.727210331],[-71.286132892,41.727187212],[-71.28613448,41.727168714],[-71.286140228,41.727156947],[-71.286157285,41.727150004],[-71.286182181,41.727145248],[-71.286211604,41.727137939],[-71.286240239,41.727128639],[-71.286263565,41.727118551],[-71.286276395,41.727106935],[-71.286279622,41.727091092],[-71.28628039,41.727071289],[-71.286281293,41.727047461],[-71.286282362,41.7270197],[-71.286283468,41.72698995],[-71.286284471,41.726963515],[-71.286285274,41.726942385],[-71.286285741,41.726930471],[-71.286280628,41.726925728],[-71.286252191,41.726930409],[-71.286228117,41.726935853],[-71.286198795,41.726940532],[-71.286165898,41.72694644],[-71.286129424,41.726953599],[-71.28609203,41.726962059],[-71.286053755,41.726969192],[-71.286018167,41.726976352],[-71.285981728,41.726982184],[-71.28594542,41.72698541],[-71.285911873,41.726984661],[-71.285883702,41.726982756],[-71.285863638,41.726975698],[-71.285846463,41.726962791],[-71.285826867,41.726943819],[-71.285810159,41.726919021],[-71.285797162,41.726888946],[-71.28578784,41.726855655],[-71.285778618,41.726819733],[-71.285769365,41.726783811],[-71.285760108,41.726749216],[-71.285751608,41.726716612],[-71.285743037,41.726686683],[-71.285734332,41.726660665],[-71.285727233,41.726638034],[-71.285721737,41.726620072],[-71.285715972,41.726609335],[-71.285709941,41.72660523],[-71.285685249,41.726604041],[-71.28566672,41.726603663],[-71.285645535,41.726603189],[-71.285622646,41.726601386],[-71.285598018,41.72659887],[-71.285576049,41.726595787],[-71.285555065,41.726590031],[-71.285536903,41.726580369],[-71.285524089,41.726568865],[-71.285517542,41.726554811],[-71.285516372,41.726539578],[-71.285516974,41.726523708],[-71.285518396,41.726509189],[-71.285519781,41.726496659],[-71.28552284,41.726485459],[-71.28552852,41.726475682],[-71.285538563,41.726466622],[-71.285551194,41.726459624],[-71.285567301,41.726454029],[-71.285585143,41.72644974],[-71.285603873,41.726444858],[-71.285625258,41.726440026],[-71.285648449,41.726433895],[-71.285670787,41.726427122],[-71.285693192,41.726418313],[-71.285713858,41.726409501],[-71.285733641,41.726400002],[-71.285749096,41.726388436],[-71.2857576,41.726374045],[-71.285760893,41.726356899],[-71.285761593,41.726339062],[-71.285762199,41.726321866],[-71.285762799,41.726306682],[-71.285763301,41.726293465],[-71.285763766,41.726282214],[-71.28576417,41.726270963],[-71.285764639,41.726258409],[-71.285766024,41.726245856],[-71.285771706,41.726235416],[-71.285782665,41.72622638],[-71.285796183,41.726218721],[-71.285811505,41.726210448],[-71.28582948,41.726202889],[-71.285848277,41.726196041],[-71.285867107,41.726188506],[-71.285885969,41.726180286],[-71.285904012,41.726170737],[-71.285918584,41.726158484],[-71.285928825,41.726144827],[-71.285932083,41.72612903],[-71.28593282,41.726109182],[-71.285933689,41.72608668],[-71.285932889,41.726060905],[-71.285928647,41.726032997],[-71.285921814,41.726003735],[-71.285913244,41.725973783],[-71.285904706,41.725943191],[-71.285897024,41.725912601],[-71.285892027,41.725882062],[-71.285889658,41.725850887],[-71.285887319,41.725819757],[-71.28588321,41.725788579],[-71.285877297,41.725757992],[-71.285872238,41.725728116],[-71.285868881,41.725700255],[-71.285863683,41.725675021],[-71.285858287,41.725654406],[-71.285850135,41.725636347],[-71.28583916,41.725622879],[-71.28582185,41.725613905],[-71.285799094,41.725608809],[-71.285776142,41.725607668],[-71.285755873,41.725607219],[-71.285732033,41.725606694],[-71.28572764,41.725605977],[-71.285728207,41.725591411],[-71.285726254,41.72557286],[-71.285719356,41.725544924],[-71.285708329,41.725510257],[-71.28569662,41.725469688],[-71.285686814,41.725425784],[-71.285679731,41.725379987],[-71.285675269,41.725335567],[-71.285673234,41.725295817],[-71.285673719,41.725260119],[-71.285674925,41.725227739],[-71.285676095,41.725197302],[-71.285677232,41.725167552],[-71.285678368,41.725137824],[-71.285679407,41.72511004],[-71.285680443,41.725082942],[-71.28568148,41.725055845],[-71.285682448,41.725030736],[-71.285683352,41.725006931],[-71.285684157,41.724985138],[-71.285685743,41.724967281],[-71.285691492,41.724954828],[-71.285706879,41.724945229],[-71.285731872,41.724938483],[-71.285764769,41.724932598],[-71.285801207,41.724926743],[-71.285838499,41.724920913],[-71.285873132,41.724916358],[-71.285905961,41.724912439],[-71.285936954,41.724909799],[-71.285964435,41.724907723],[-71.285987494,41.724904244],[-71.286005403,41.724898011],[-71.286020858,41.724886446],[-71.28603638,41.72487289],[-71.2860519,41.724859998],[-71.286070829,41.724849788],[-71.286090544,41.724842278],[-71.286113767,41.724835506],[-71.286137842,41.724829399],[-71.28616369,41.724822678],[-71.286190519,41.724814655],[-71.286217284,41.724807273],[-71.286244903,41.7248006],[-71.286275144,41.724794642],[-71.286307971,41.724791341],[-71.286344242,41.724789488],[-71.286381334,41.724788939],[-71.286418421,41.72478974],[-71.286456398,41.724789216],[-71.286495293,41.724788053],[-71.286535105,41.724786275],[-71.286574131,41.72478246],[-71.28660962,41.724777266],[-71.286639041,41.724769957],[-71.2866641,41.72476193],[-71.286687423,41.724752483],[-71.286706284,41.724744308],[-71.286717145,41.724737239],[-71.286718266,41.724730654],[-71.286712902,41.724709376],[-71.286708291,41.724691416],[-71.286703913,41.724667486],[-71.286700593,41.724637659],[-71.286698354,41.724603854],[-71.28669356,41.724567392],[-71.286687911,41.724530883],[-71.286682202,41.72449435],[-71.286675602,41.724459142],[-71.286669822,41.724425308],[-71.286663975,41.724393395],[-71.286657208,41.72436283],[-71.286649392,41.724335532],[-71.286642424,41.724310249],[-71.286637126,41.724287644],[-71.286633403,41.724269045],[-71.286629611,41.724252435],[-71.286624797,41.724240397],[-71.286615293,41.72423425],[-71.286598503,41.724234517],[-71.286574528,41.724237994],[-71.28654439,41.724240659],[-71.286510739,41.72424389],[-71.28647437,41.724247756],[-71.286436227,41.724252236],[-71.2863972,41.724256691],[-71.286358238,41.724259821],[-71.286319313,41.724260983],[-71.286281372,41.724260204],[-71.286242545,41.724259377],[-71.286203718,41.724258527],[-71.286169317,41.7242578],[-71.286144623,41.724257274],[-71.286129605,41.724256948],[-71.286119966,41.724254735],[-71.286120167,41.724249476],[-71.286120634,41.724237584],[-71.286121304,41.724219702],[-71.286122139,41.724197887],[-71.286122975,41.724176094],[-71.28612463,41.724155606],[-71.286127988,41.72413718],[-71.286134821,41.724120087],[-71.28614605,41.724103139],[-71.286159834,41.724088871],[-71.286173583,41.72407593],[-71.286181169,41.7240622],[-71.286179933,41.724048293],[-71.286170728,41.724034852],[-71.286155359,41.724020645],[-71.286135661,41.724004988],[-71.28611777,41.723987414],[-71.28610611,41.72396864],[-71.286100714,41.723948048],[-71.286100763,41.723924196],[-71.286101733,41.723898447],[-71.286102772,41.723870663],[-71.286103908,41.723840912],[-71.286105045,41.723811185],[-71.286106081,41.723784087],[-71.286106132,41.723759594],[-71.286106115,41.723737091],[-71.286106,41.723716577],[-71.286106702,41.723698054],[-71.286107337,41.723681544],[-71.286107873,41.723667023],[-71.28610834,41.723655087],[-71.286111297,41.723647248],[-71.286131964,41.723637727],[-71.286146299,41.723632082],[-71.286163258,41.723627151],[-71.286183755,41.723622959],[-71.286207664,41.723620831],[-71.286236031,41.723618139],[-71.286266104,41.723616777],[-71.286297914,41.723616127],[-71.286330609,41.723615525],[-71.286363305,41.7236149],[-71.286396918,41.723613613],[-71.286431517,41.723609744],[-71.286466118,41.723605188],[-71.286500785,41.723599284],[-71.286532828,41.723592689],[-71.286559626,41.723584689],[-71.286575933,41.72357381],[-71.286582731,41.723558066],[-71.286584286,41.723540254],[-71.286584955,41.723522372],[-71.286582902,41.723506451],[-71.286575465,41.723493722],[-71.2865615,41.723488802],[-71.286538446,41.723490932],[-71.286503843,41.72349615],[-71.28646039,41.723500529],[-71.286409984,41.723502745],[-71.286351612,41.723504809],[-71.286287076,41.723506084],[-71.286220898,41.723505344],[-71.286157347,41.72350399],[-71.286100979,41.723500112],[-71.286048218,41.723494388],[-71.285995558,41.723485989],[-71.285942966,41.7234756],[-71.285891261,41.723464572],[-71.285841392,41.723452244],[-71.285795197,41.723436698],[-71.28575445,41.723416635],[-71.28572266,41.723392815],[-71.285697263,41.723365164],[-71.285674561,41.723334889],[-71.285651074,41.723301959],[-71.285632111,41.723267163],[-71.285623777,41.723230603],[-71.285621606,41.723194854],[-71.285622124,41.723158471],[-71.285619953,41.723122677],[-71.285614242,41.72308683],[-71.28560407,41.72305221],[-71.285589467,41.723018817],[-71.285572898,41.722989354],[-71.285553534,41.722965145],[-71.285532035,41.722949439],[-71.285504919,41.72294294],[-71.285476753,41.722940349],[-71.285449404,41.722939749],[-71.28542468,41.722939222],[-71.285403529,41.722938085],[-71.285387722,41.722936432],[-71.285379889,41.722932964],[-71.285376581,41.722926943],[-71.285373089,41.722903061],[-71.285364053,41.722885001],[-71.285348101,41.722862834],[-71.28532431,41.722838525],[-71.285294422,41.722812079],[-71.285258405,41.722783516],[-71.285216289,41.722753456],[-71.285170699,41.7227214],[-71.285123371,41.722688632],[-71.285077062,41.722652595],[-71.285032593,41.722613909],[-71.284990058,41.722572002],[-71.284952906,41.722526857],[-71.284922838,41.722481246],[-71.284900734,41.722436427],[-71.2848847,41.722393083],[-71.28487571,41.722351902],[-71.284872791,41.722312127],[-71.284874329,41.722271812],[-71.284875835,41.722232137],[-71.284877341,41.722192484],[-71.28487888,41.722152146],[-71.284880421,41.722111191],[-71.284881924,41.722072156],[-71.284883395,41.72203383],[-71.284884836,41.721995504],[-71.284886374,41.721955143],[-71.284887946,41.721914165],[-71.284889554,41.72187122],[-71.284893029,41.721826975],[-71.284899131,41.721782094],[-71.284910509,41.721738664],[-71.28492802,41.721696046],[-71.284948974,41.72165547],[-71.284969792,41.721618872],[-71.28499231,41.721584977],[-71.285014733,41.721552362],[-71.285036135,41.721523678],[-71.285054813,41.721496956],[-71.285071622,41.721472838],[-71.285085671,41.721451985],[-71.285098703,41.721434377],[-71.285110682,41.721421433],[-71.285122492,41.721413108],[-71.285135055,41.721408054],[-71.285163389,41.721406026],[-71.285181031,41.721406402],[-71.285199558,41.72140678],[-71.285218971,41.721407205],[-71.285236645,41.721406941],[-71.285251733,41.721404591],[-71.285265145,41.721400934],[-71.285284107,41.721390083],[-71.285297624,41.721382425],[-71.285301333,41.721377858],[-71.285302853,41.721361349],[-71.285303288,41.721350121],[-71.285302906,41.721336216],[-71.285298161,41.721322211],[-71.285289057,41.72130614],[-71.285272937,41.721288592],[-71.285252457,41.721269664],[-71.285230239,41.721249978],[-71.285209824,41.721229701],[-71.285190362,41.721207459],[-71.285171034,41.721181924],[-71.285154463,41.7211531],[-71.285142454,41.721120421],[-71.285134972,41.721084548],[-71.285130179,41.721048063],[-71.28512981,41.721012318],[-71.285136428,41.720977409],[-71.285151015,41.720941967],[-71.28516911,41.720907285],[-71.285180153,41.720872453],[-71.285179655,41.720838721],[-71.285169416,41.720806067],[-71.285153044,41.720772671],[-71.285137492,41.720740579],[-71.28512722,41.720708589],[-71.285119604,41.720676672],[-71.285111102,41.720644731],[-71.285100763,41.720614731],[-71.285090358,41.720586056],[-71.285087001,41.720558218],[-71.285089773,41.720532473],[-71.285099497,41.720508867],[-71.285118006,41.720487428],[-71.285143333,41.720471421],[-71.285174691,41.720459542],[-71.285207621,41.720452308],[-71.285238677,41.720448296],[-71.285261831,41.720443514],[-71.285269213,41.720435729],[-71.285262632,41.720423024],[-71.285250053,41.720405552],[-71.285236792,41.720382109],[-71.28522904,41.720354149],[-71.285225786,41.720322995],[-71.285227089,41.720289311],[-71.285228426,41.720254232],[-71.285229698,41.720220526],[-71.285227262,41.720191363],[-71.285219277,41.720169394],[-71.285201284,41.72015509],[-71.285176008,41.720146604],[-71.285147945,41.72014072],[-71.285121683,41.720134862],[-71.285094669,41.72012571],[-71.285067858,41.720110589],[-71.285037773,41.720088761],[-71.285005228,41.720062904],[-71.284975379,41.720034491],[-71.284950905,41.720004875],[-71.284931712,41.719975338],[-71.284916945,41.719945878],[-71.284908344,41.719916589],[-71.284907743,41.719886172],[-71.284909868,41.719853108],[-71.284911138,41.719820064],[-71.28491241,41.719786358],[-71.284915486,41.719751991],[-71.284922888,41.71971976],[-71.28493901,41.719690975],[-71.284965523,41.71966708],[-71.285000755,41.719646678],[-71.285040251,41.719628983],[-71.285080595,41.719613302],[-71.285120874,41.719598947],[-71.285157509,41.719587832],[-71.285182636,41.719577108],[-71.285192844,41.719564137],[-71.285192174,41.719554257],[-71.285185938,41.719548024],[-71.285173986,41.71953483],[-71.285150303,41.719515415],[-71.285121705,41.71949606],[-71.285115811,41.719478554],[-71.285116445,41.719453239],[-71.285123825,41.719436948],[-71.285148418,41.719384646],[-71.285198912,41.719382545],[-71.285277097,41.719378575],[-71.285355229,41.719372363],[-71.285377922,41.719368358],[-71.285376329,41.719342398],[-71.285369628,41.719319883],[-71.285372063,41.719303559],[-71.285370574,41.719292304],[-71.28536298,41.719281176],[-71.28535701,41.719277346],[-71.285311084,41.719218532],[-71.285268201,41.719162651],[-71.285231188,41.719103763],[-71.285196107,41.719042591],[-71.285164014,41.718982157],[-71.285126041,41.718881645],[-71.285102776,41.718828476],[-71.285040161,41.718721698],[-71.285004261,41.718667957],[-71.284963547,41.718620976],[-71.284930004,41.718583545],[-71.284869488,41.718579865],[-71.284790615,41.718597943],[-71.284700986,41.718619913],[-71.284620502,41.718654294],[-71.284595993,41.718708791],[-71.284606716,41.718788098],[-71.284566472,41.718847254],[-71.284504931,41.718885147],[-71.284439947,41.718903046],[-71.284448008,41.71886583],[-71.284465614,41.718812898],[-71.28444368,41.718763483],[-71.284379511,41.718729379],[-71.284328004,41.718687752],[-71.284285096,41.718630407],[-71.28427776,41.71856963],[-71.284327219,41.718520761],[-71.284388974,41.718491741],[-71.284452712,41.718462726],[-71.284545252,41.718437789],[-71.284621265,41.718425674],[-71.284688946,41.718395133],[-71.284725579,41.718393898],[-71.284803128,41.718406255],[-71.28488446,41.718410455],[-71.284963516,41.71840125],[-71.285012594,41.718338269],[-71.285042685,41.718266631],[-71.285027516,41.718211168],[-71.284959934,41.718157093],[-71.284900914,41.718089564],[-71.284870913,41.718033525],[-71.284843659,41.717968548],[-71.28482733,41.717904187],[-71.284821895,41.717840441],[-71.284830353,41.717775714],[-71.28485163,41.717710897],[-71.284870056,41.71764978],[-71.284872747,41.717593344],[-71.284865515,41.717537759],[-71.284852418,41.71748374],[-71.284833947,41.717411942],[-71.284829573,41.717350416],[-71.284851119,41.717296669],[-71.284879785,41.717249543],[-71.284870622,41.717196218],[-71.284861911,41.717117647],[-71.284869386,41.717054473],[-71.284883764,41.716989689],[-71.284893275,41.716929447],[-71.284898607,41.71685886],[-71.284897356,41.716803926],[-71.284871694,41.716764909],[-71.284862882,41.716725695],[-71.284896541,41.716682215],[-71.284948035,41.716681557],[-71.284985478,41.71662912],[-71.285062824,41.716500443],[-71.285094317,41.716447331],[-71.285126838,41.716397171],[-71.285160183,41.716338117],[-71.285190587,41.716282053],[-71.285223956,41.716224485],[-71.285251479,41.716172144],[-71.285300825,41.716119568],[-71.285378125,41.716077725],[-71.285436784,41.716042845],[-71.285496153,41.715996051],[-71.285544382,41.715939769],[-71.285578866,41.71588664],[-71.285631935,41.715825084],[-71.28563055,41.715764227],[-71.285627286,41.715708603],[-71.285591047,41.715683814],[-71.28556898,41.715628429],[-71.285530724,41.715558401],[-71.285479726,41.715492992],[-71.285452689,41.71543618],[-71.285432497,41.715377072],[-71.285433229,41.715322142],[-71.285462203,41.715246019],[-71.285479754,41.715190868],[-71.28549633,41.715134984],[-71.285513533,41.715064991],[-71.285506198,41.71500346],[-71.285483838,41.714935497],[-71.285462723,41.714878582],[-71.285469992,41.714849552],[-71.285535976,41.714832386],[-71.285596482,41.714792272],[-71.28567783,41.714753363],[-71.285742646,41.714729517],[-71.285834231,41.714705333],[-71.285913967,41.714682818],[-71.285981882,41.714663368],[-71.286048497,41.714630607],[-71.28608319,41.714587837],[-71.286071871,41.71456792],[-71.286081523,41.714556664],[-71.286173639,41.714556241],[-71.286245283,41.714571673],[-71.286315903,41.714583376],[-71.286395769,41.714567516],[-71.286460616,41.714543647],[-71.28652843,41.714517565],[-71.286615565,41.714472629],[-71.286677811,41.714422822],[-71.286714441,41.714366243],[-71.286717049,41.7143622],[-71.28675713,41.714295611],[-71.286802053,41.714223085],[-71.286848217,41.71416307],[-71.28690732,41.714103697],[-71.286978424,41.714051551],[-71.287063551,41.714004461],[-71.287148889,41.713967708],[-71.287248564,41.71395161],[-71.287328808,41.713950569],[-71.287406061,41.713949569],[-71.287493526,41.713961805],[-71.287580492,41.713995584],[-71.287689374,41.713991943],[-71.287764298,41.713975387],[-71.287836443,41.713968545],[-71.287938504,41.713969442],[-71.28804535,41.713962893],[-71.28812157,41.713960449],[-71.288195781,41.713956515],[-71.288291332,41.71393229],[-71.288357838,41.713895045],[-71.288434397,41.713863626],[-71.288530978,41.713841598],[-71.288606196,41.713837666],[-71.288652892,41.713800704],[-71.288705541,41.713763661],[-71.288785935,41.713726235],[-71.288854745,41.713703081],[-71.288925541,41.713679198],[-71.288991198,41.713649383],[-71.289057893,41.71361957],[-71.289131678,41.713596356],[-71.289213368,41.713573042],[-71.28929704,41.713550418],[-71.289381828,41.713531546],[-71.289463623,41.713513424],[-71.28953648,41.713493913],[-71.289632768,41.713458573],[-71.289703641,41.713439081],[-71.28977954,41.713422503],[-71.289855657,41.713414112],[-71.289953749,41.713415069],[-71.29002568,41.713398551],[-71.290106931,41.713312895],[-71.290153883,41.713243985],[-71.29018513,41.713180488],[-71.290162929,41.71311845],[-71.29013594,41.713064612],[-71.290119741,41.713006152],[-71.290110349,41.712984752],[-71.290124206,41.712984595],[-71.290197626,41.712988822],[-71.290251465,41.712960654],[-71.290304286,41.712888713],[-71.290337783,41.712837067],[-71.290375245,41.712786137],[-71.290415616,41.712732171],[-71.290456069,41.712681201],[-71.290518205,41.7126262],[-71.290587149,41.712608236],[-71.290639137,41.712586033],[-71.290696515,41.712539279],[-71.290767699,41.712489371],[-71.290846706,41.71243639],[-71.29092794,41.712393018],[-71.290987622,41.712360332],[-71.290998669,41.712323099],[-71.290956924,41.7122739],[-71.290900999,41.712211503],[-71.290874963,41.712155426],[-71.290863633,41.712091738],[-71.290869036,41.71202561],[-71.29087341,41.711956508],[-71.290874899,41.711892683],[-71.290873509,41.711831825],[-71.290872881,41.711762028],[-71.290874349,41.711695207],[-71.290884645,41.711626069],[-71.290891635,41.711588051],[-71.290895207,41.711568779],[-71.29091317,41.711488358],[-71.290928628,41.71142728],[-71.290949028,41.711366919],[-71.290974536,41.711312377],[-71.291004061,41.711261524],[-71.291056388,41.711209638],[-71.291085733,41.711148379],[-71.291038693,41.711085152],[-71.290995864,41.711031515],[-71.290960622,41.710962957],[-71.290951204,41.710855433],[-71.290949919,41.710799767],[-71.29094967,41.710744835],[-71.29096176,41.710668222],[-71.290995698,41.710592816],[-71.291046617,41.710523135],[-71.291105628,41.710461496],[-71.291164908,41.710412502],[-71.291164476,41.710412521],[-71.286834474,41.710506521],[-71.286763474,41.710508521],[-71.280522472,41.711034521],[-71.278260471,41.711456522],[-71.27577147,41.711892522],[-71.27411247,41.712368522],[-71.271212469,41.712695522],[-71.270118469,41.712817523],[-71.267538468,41.713096522],[-71.265229467,41.713360523],[-71.264392466,41.713608522],[-71.264131467,41.713646522],[-71.263928466,41.713675523],[-71.263882467,41.713681522],[-71.263692466,41.713709523],[-71.263454467,41.713739522],[-71.262407466,41.713791523],[-71.261792466,41.713809523],[-71.261618466,41.713867523],[-71.261134466,41.713970523],[-71.260791466,41.714009523],[-71.259791465,41.714109522],[-71.259563465,41.714141523],[-71.259091465,41.714208523],[-71.258896465,41.714232523],[-71.258351465,41.714293523],[-71.258355914,41.714299563],[-71.25836486,41.71431013],[-71.258395977,41.714346878],[-71.258445765,41.714401891],[-71.258494491,41.714455507],[-71.258526501,41.714514462],[-71.258524818,41.714528858],[-71.258902465,41.715041523],[-71.258908988,41.715047639],[-71.258912003,41.71505002],[-71.25891405,41.715052384],[-71.258918465,41.715056523],[-71.259015742,41.715163626],[-71.259020675,41.715168915],[-71.259029488,41.715184417],[-71.259031465,41.715187523],[-71.259051465,41.715221523],[-71.259080465,41.715254523],[-71.259081244,41.715256262],[-71.259082061,41.715257204],[-71.25910279,41.715297017],[-71.259109949,41.715320371],[-71.259110414,41.71532141],[-71.259138016,41.715321078],[-71.259172465,41.715320523],[-71.259172515,41.715320648],[-71.259173665,41.715320629],[-71.259179796,41.715339096],[-71.259187465,41.715358523],[-71.259209597,41.715381506],[-71.259241841,41.715413438],[-71.259262876,41.715436834],[-71.259265465,41.715439523],[-71.25926896,41.715442251],[-71.259286645,41.715455039],[-71.259290631,41.715459165],[-71.259300717,41.715467037],[-71.259306821,41.715471113],[-71.259339506,41.715508874],[-71.259352465,41.715523523],[-71.259352285,41.715523637],[-71.25935259,41.71552399],[-71.259322598,41.715542728],[-71.259400256,41.715662202],[-71.259442654,41.715656155],[-71.259453466,41.715654523],[-71.259453527,41.715654605],[-71.259453712,41.715654579],[-71.25945452,41.715655942],[-71.259518042,41.715741454],[-71.259519979,41.715743838],[-71.259527967,41.715754814],[-71.259531466,41.715759523],[-71.259537038,41.715773854],[-71.259538593,41.715777746],[-71.259532719,41.715781507],[-71.2595603,41.715827214],[-71.259585465,41.715868523],[-71.259573902,41.715914779],[-71.25957249,41.715920566],[-71.259606544,41.71598028],[-71.25962402,41.716003595],[-71.259641465,41.716026523],[-71.259688466,41.716021523],[-71.259688579,41.716021665],[-71.259700925,41.716036255],[-71.259731837,41.716046268],[-71.259752885,41.716057838],[-71.259762073,41.71606833],[-71.259765466,41.716071523],[-71.259767737,41.716076491],[-71.259775442,41.716090245],[-71.259781731,41.716106472],[-71.259781669,41.71611201],[-71.259782463,41.716133444],[-71.259802313,41.716185665],[-71.259820027,41.716241267],[-71.259820466,41.716242523],[-71.259850465,41.716292524],[-71.259873465,41.716348524],[-71.259873118,41.716369368],[-71.259872694,41.716408191],[-71.259872465,41.716408521],[-71.259837465,41.716459523],[-71.259807591,41.716483423],[-71.259787591,41.716499833],[-71.259777516,41.71652237],[-71.259760465,41.716561524],[-71.259772465,41.716616523],[-71.259776092,41.71662559],[-71.259794345,41.716669741],[-71.259800862,41.716687515],[-71.259838466,41.716781523],[-71.259841097,41.716795875],[-71.259849744,41.71684197],[-71.259842297,41.716907383],[-71.25983276,41.7169684],[-71.259830507,41.717012897],[-71.259829465,41.717036523],[-71.259824648,41.717047506],[-71.259804824,41.717093436],[-71.259797042,41.717125869],[-71.259785708,41.717175252],[-71.259776868,41.717215521],[-71.259750397,41.717248452],[-71.259738465,41.717263524],[-71.259726562,41.717281862],[-71.259701941,41.717320379],[-71.259698771,41.717347462],[-71.259696465,41.717370523],[-71.259700465,41.717422524],[-71.259652474,41.717467692],[-71.259649798,41.717470246],[-71.259608319,41.717519007],[-71.259583761,41.71757279],[-71.259533468,41.717627593],[-71.259490956,41.717674889],[-71.259450067,41.717704823],[-71.259438465,41.717713524],[-71.2594309,41.717730298],[-71.259415686,41.717764927],[-71.259392112,41.717785542],[-71.259385592,41.71779141],[-71.259403732,41.717851919],[-71.259375339,41.71791093],[-71.259334939,41.717964862],[-71.259277857,41.71798194],[-71.259234318,41.717975813],[-71.259220819,41.718002345],[-71.259205664,41.718032559],[-71.2592198,41.7180888],[-71.259214228,41.718116455],[-71.259213465,41.718120524],[-71.259199525,41.718198938],[-71.259197767,41.718210075],[-71.259228062,41.718225255],[-71.259305465,41.718262524],[-71.25930535,41.718262621],[-71.259305959,41.7182629],[-71.259257599,41.718302575],[-71.259256466,41.718303523],[-71.259224465,41.718361523],[-71.259213466,41.718418521],[-71.259263465,41.718440523],[-71.259282465,41.718462523],[-71.259282412,41.718462552],[-71.259282686,41.718462864],[-71.259212218,41.718500885],[-71.25915886,41.718550537],[-71.259156048,41.718602896],[-71.259155465,41.718615523],[-71.259177379,41.718671305],[-71.259222484,41.718694471],[-71.259270097,41.718695371],[-71.259270018,41.718695514],[-71.259270465,41.718695523],[-71.259243456,41.718743242],[-71.259240566,41.718748434],[-71.259240856,41.718752588],[-71.259252465,41.718873524],[-71.259248781,41.718905106],[-71.259245676,41.718933204],[-71.259266746,41.718941884],[-71.259273465,41.718944524],[-71.259344465,41.718950524],[-71.25933847,41.718994491],[-71.259342238,41.718995966],[-71.259406465,41.719020524],[-71.259484465,41.719032524],[-71.259568466,41.719036524],[-71.259603469,41.719043354],[-71.259650589,41.719052079],[-71.259724378,41.71907341],[-71.259805997,41.719090183],[-71.25989495,41.71908017],[-71.259973267,41.71908214],[-71.259986154,41.719084783],[-71.260119466,41.719108524],[-71.260119496,41.719108543],[-71.260174772,41.719143438],[-71.26018111,41.719148507],[-71.260282239,41.719224354],[-71.260286635,41.719227418],[-71.260342034,41.719269064],[-71.260342097,41.719269247],[-71.260342466,41.719269524],[-71.260361466,41.719324524],[-71.260358937,41.719356765],[-71.260357649,41.719375824],[-71.260426466,41.719488524],[-71.260446466,41.719544524],[-71.260442466,41.719582524],[-71.260464466,41.719634524],[-71.260468105,41.719639189],[-71.260503918,41.719684178],[-71.260534983,41.719716773],[-71.260546466,41.719728524],[-71.260615466,41.719756524],[-71.260651466,41.719799524],[-71.260647465,41.719812524],[-71.26064481,41.719814326],[-71.260636772,41.719820571],[-71.260619209,41.719831924],[-71.260586619,41.719837527],[-71.26058242,41.719842193],[-71.260573466,41.719852524],[-71.260595466,41.719875524],[-71.260603466,41.719877524],[-71.260627292,41.719898591],[-71.260698947,41.719961254],[-71.260789991,41.720013196],[-71.26082304,41.720032041],[-71.260831133,41.72003799],[-71.261018466,41.720171524],[-71.261046466,41.720191524],[-71.261080466,41.720308524],[-71.26109526,41.720317657],[-71.26120988,41.720385281],[-71.261323832,41.720458355],[-71.26138966,41.720489594],[-71.261468663,41.720526678],[-71.261516246,41.720535983],[-71.261562467,41.720544524],[-71.261588282,41.720550071],[-71.261636091,41.720559421],[-71.261666672,41.720566915],[-71.261683466,41.720570524],[-71.261903631,41.720622222],[-71.261930399,41.720628204],[-71.261930136,41.720628446],[-71.261930467,41.720628524],[-71.261872467,41.720681524],[-71.261841466,41.720763524],[-71.261899466,41.720810524],[-71.261907692,41.720814335],[-71.262028051,41.72086716],[-71.26203565,41.720873484]]]]}}"}, +{"type": "precinct", "typeId": 3501, "areaId": 25975, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":314,\"NAME\":\"3501\",\"SHAPE_Length\":0.12839601913307,\"SHAPE_Area\":-0.00023323678575736},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.380466,41.749790054],[-71.380398746,41.749844252],[-71.380345475,41.749916394],[-71.380314457,41.749960911],[-71.380313049,41.750028418],[-71.380318336,41.750026274],[-71.380423315,41.749983847],[-71.380496456,41.749916894],[-71.380538233,41.749851075],[-71.380563079,41.749775176],[-71.380534133,41.749740111],[-71.380466,41.749790054]]],[[[-71.380326968,41.750739017],[-71.380223263,41.750818516],[-71.380215375,41.750905204],[-71.380216041,41.750990575],[-71.380260971,41.751035719],[-71.380290166,41.75105233],[-71.380361976,41.751078475],[-71.380387807,41.750999055],[-71.380406067,41.750918118],[-71.380432175,41.750820906],[-71.38049635,41.750715479],[-71.380451278,41.750680282],[-71.380326968,41.750739017]]],[[[-71.380310354,41.75136394],[-71.380234616,41.751479235],[-71.380205631,41.751579989],[-71.3802527,41.751674235],[-71.380343226,41.751785198],[-71.380376102,41.751941199],[-71.380357598,41.752038464],[-71.380352581,41.752125224],[-71.380373893,41.752226349],[-71.380399442,41.752299077],[-71.380454155,41.752389123],[-71.38048524,41.752407862],[-71.380554564,41.75240846],[-71.380588981,41.75239235],[-71.380628728,41.752335105],[-71.380658589,41.752240024],[-71.380666614,41.752144806],[-71.38066875,41.751996892],[-71.380670013,41.751908733],[-71.380655362,41.751805533],[-71.380575242,41.751698194],[-71.380495195,41.751585207],[-71.380434004,41.751480861],[-71.380421,41.751395409],[-71.380411934,41.751278036],[-71.380310354,41.75136394]]],[[[-71.380444022,41.754278523],[-71.380487901,41.754397624],[-71.380540233,41.754521079],[-71.380579206,41.75465081],[-71.380640824,41.754856123],[-71.380689263,41.754987418],[-71.380754491,41.755140067],[-71.380809239,41.755294833],[-71.380855753,41.755426789],[-71.380904297,41.755551635],[-71.380944077,41.755692023],[-71.380971203,41.75581047],[-71.380971508,41.755810527],[-71.381116395,41.755837507],[-71.381043025,41.755612473],[-71.380973591,41.755421331],[-71.380864546,41.755081934],[-71.380809935,41.754918662],[-71.380757082,41.754763212],[-71.380711796,41.754611361],[-71.380677695,41.754472397],[-71.380670686,41.754431134],[-71.380675769,41.754407676],[-71.380698863,41.75438801],[-71.380807938,41.754330516],[-71.380860403,41.754316026],[-71.380946207,41.754291119],[-71.381000639,41.75427025],[-71.381002084,41.754238763],[-71.380966639,41.754191752],[-71.380899029,41.754204717],[-71.380793078,41.754240831],[-71.380683549,41.754263404],[-71.380593575,41.754247737],[-71.380537531,41.754182593],[-71.380535045,41.754090818],[-71.380529508,41.754013263],[-71.380544019,41.753928755],[-71.380557443,41.753853461],[-71.38054514,41.753785093],[-71.380541145,41.753732444],[-71.380554393,41.75366998],[-71.380585725,41.753605545],[-71.380637177,41.753527707],[-71.380674117,41.753468995],[-71.380728268,41.753401153],[-71.380748073,41.753343727],[-71.380721329,41.753289454],[-71.380656526,41.753172321],[-71.380658554,41.753099805],[-71.380653647,41.753044983],[-71.380623012,41.752997132],[-71.38059042,41.752950606],[-71.380507741,41.752954934],[-71.380448262,41.752997088],[-71.380392538,41.753040733],[-71.380351246,41.753074536],[-71.380342872,41.753127126],[-71.380354091,41.753203268],[-71.380397864,41.753330213],[-71.380415953,41.753390812],[-71.380431373,41.753507551],[-71.380429438,41.753513427],[-71.380410551,41.753569962],[-71.380385811,41.753637354],[-71.380370422,41.753717585],[-71.380357839,41.753799946],[-71.380346131,41.753888025],[-71.380354506,41.754032474],[-71.38039832,41.754153702],[-71.380444022,41.754278523]]],[[[-71.386681509,41.757171527],[-71.387115509,41.757059527],[-71.387291509,41.757010528],[-71.387955509,41.756830527],[-71.38863451,41.756663527],[-71.38921451,41.756497527],[-71.38938951,41.756494527],[-71.38952651,41.756504528],[-71.38970951,41.756523528],[-71.38980951,41.756404527],[-71.39000751,41.756328528],[-71.39030551,41.756227527],[-71.39049551,41.756160527],[-71.391205511,41.755920527],[-71.391785511,41.755728527],[-71.392464511,41.755498527],[-71.392647511,41.755480527],[-71.392799511,41.755486527],[-71.393875512,41.755545527],[-71.393906511,41.755148527],[-71.393936512,41.754859527],[-71.393997512,41.754299527],[-71.394028511,41.753448526],[-71.394017512,41.752863526],[-71.394013512,41.752592526],[-71.394005511,41.752304526],[-71.393990511,41.751890526],[-71.393966511,41.751292526],[-71.393928511,41.750068526],[-71.393914511,41.749483526],[-71.393913511,41.749393525],[-71.393881511,41.748484526],[-71.393867511,41.748160525],[-71.393822511,41.747233525],[-71.393494511,41.747389525],[-71.393166511,41.747580525],[-71.39310551,41.747505525],[-71.393013511,41.747331525],[-71.392937511,41.747103526],[-71.39283051,41.746876525],[-71.392822511,41.746795525],[-71.392845511,41.746736525],[-71.392921511,41.746693525],[-71.393021511,41.746673525],[-71.393128511,41.746649525],[-71.393234511,41.746615525],[-71.393349511,41.746590525],[-71.393791511,41.746536525],[-71.394043511,41.746504525],[-71.394234511,41.746491525],[-71.394463511,41.746477525],[-71.394364511,41.746353525],[-71.394264511,41.746103525],[-71.394179511,41.745884525],[-71.394150511,41.745700525],[-71.394112511,41.745327525],[-71.393944511,41.744475524],[-71.393913511,41.744304525],[-71.393783511,41.743582524],[-71.393646511,41.742842524],[-71.39353251,41.742295524],[-71.393471511,41.742283524],[-71.39341751,41.742266525],[-71.393364511,41.742240524],[-71.393326511,41.742209525],[-71.393295511,41.742178524],[-71.39328051,41.742142524],[-71.393273511,41.742093525],[-71.393288511,41.742052525],[-71.393349511,41.741988524],[-71.393410511,41.741955525],[-71.39347851,41.741940524],[-71.39344051,41.741738524],[-71.393120511,41.739908524],[-71.393059511,41.739904524],[-71.39300551,41.739897524],[-71.39297551,41.739879524],[-71.39293751,41.739862524],[-71.392906511,41.739836524],[-71.39289151,41.739813523],[-71.39287651,41.739782524],[-71.39286851,41.739751524],[-71.39287651,41.739710524],[-71.39287651,41.739679524],[-71.39289151,41.739647524],[-71.39291451,41.739615524],[-71.39293651,41.739592524],[-71.39296751,41.739573524],[-71.39300551,41.739554524],[-71.393059511,41.739549524],[-71.39302851,41.739351524],[-71.39299851,41.739172523],[-71.39296051,41.738938523],[-71.39285351,41.738337523],[-71.39284551,41.738252523],[-71.39281551,41.738036524],[-71.39279251,41.737884523],[-71.39277651,41.737740524],[-71.39278451,41.737564524],[-71.39279251,41.737433523],[-71.39281551,41.737298523],[-71.39286851,41.737076523],[-71.39278451,41.736974523],[-71.39276951,41.736875523],[-71.39274651,41.736777523],[-71.39273851,41.736682523],[-71.39276951,41.736457524],[-71.39286051,41.736063523],[-71.39289851,41.735914523],[-71.39292251,41.735850523],[-71.39284551,41.735739523],[-71.39313551,41.735765523],[-71.393295511,41.735793523],[-71.39338751,41.735552523],[-71.393433511,41.735466523],[-71.39351751,41.735401523],[-71.39361651,41.735358523],[-71.39369951,41.735316523],[-71.394089511,41.735294523],[-71.394544511,41.735299523],[-71.394554511,41.735231523],[-71.394539511,41.735177523],[-71.394463511,41.735156523],[-71.394402511,41.735121523],[-71.394363511,41.735068523],[-71.394348511,41.735010523],[-71.394341511,41.734947523],[-71.39434051,41.734888523],[-71.39435651,41.734838523],[-71.394485511,41.734759523],[-71.394554511,41.734731523],[-71.39458551,41.734676523],[-71.39458551,41.734554523],[-71.394593511,41.734496523],[-71.394600511,41.734437523],[-71.394577511,41.734388523],[-71.39453151,41.734339523],[-71.39445551,41.734314522],[-71.39437951,41.734298523],[-71.39434151,41.734289523],[-71.39430251,41.734281523],[-71.39427951,41.734268523],[-71.394310511,41.734213523],[-71.39430251,41.734160522],[-71.39430251,41.734047523],[-71.39427951,41.734029523],[-71.39412751,41.734042522],[-71.39404351,41.734025522],[-71.393974511,41.733991523],[-71.393936511,41.733933523],[-71.39389151,41.733875523],[-71.39384451,41.733818523],[-71.39380651,41.733765523],[-71.393784511,41.733707523],[-71.39380751,41.733657523],[-71.39387551,41.733637522],[-71.39395151,41.733663523],[-71.39408951,41.733705523],[-71.394173511,41.733698523],[-71.394226511,41.733563523],[-71.394205107,41.733545972],[-71.394176713,41.733522985],[-71.394167087,41.733506417],[-71.39412151,41.733428523],[-71.394114627,41.733416132],[-71.394111501,41.733410752],[-71.394090607,41.733387761],[-71.39402151,41.733312523],[-71.393933365,41.733260755],[-71.393895077,41.733238532],[-71.393864006,41.733236607],[-71.39374751,41.733229522],[-71.39373256,41.733229251],[-71.393692797,41.733228946],[-71.393658575,41.733255148],[-71.393627511,41.733279522],[-71.39363351,41.733380522],[-71.393633485,41.733380534],[-71.393633501,41.733380787],[-71.393506731,41.733439992],[-71.39347016,41.733494435],[-71.39345951,41.733510523],[-71.39344751,41.733594522],[-71.393447432,41.733594547],[-71.393447399,41.733594783],[-71.393411852,41.733605829],[-71.39336551,41.733620523],[-71.39324651,41.733544523],[-71.39314351,41.733468523],[-71.39299551,41.733480522],[-71.392959527,41.733506302],[-71.392928241,41.733528895],[-71.392896163,41.733517173],[-71.39287151,41.733508523],[-71.39284891,41.733497714],[-71.392825212,41.733486746],[-71.392749825,41.733543411],[-71.392687478,41.733602914],[-71.39265551,41.733633522],[-71.392585543,41.733658691],[-71.392516336,41.733683723],[-71.392475542,41.733693621],[-71.39237451,41.733718523],[-71.392304509,41.733765523],[-71.39227351,41.733802523],[-71.39225583,41.733792701],[-71.392228334,41.733777925],[-71.392152571,41.73376104],[-71.39209951,41.733749522],[-71.391999441,41.733756912],[-71.391935113,41.733761778],[-71.391823324,41.733769918],[-71.39177451,41.733773523],[-71.391728398,41.733779139],[-71.391618914,41.733792583],[-71.39153122,41.733799884],[-71.391452509,41.733806522],[-71.391347628,41.73380211],[-71.391301136,41.733800172],[-71.391294654,41.733799881],[-71.391143509,41.733793523],[-71.391052165,41.733792351],[-71.390987476,41.733791825],[-71.390891028,41.733791523],[-71.390841509,41.733791523],[-71.390794948,41.733795934],[-71.390746206,41.733800744],[-71.390683424,41.733788655],[-71.39063696,41.733758714],[-71.390506082,41.733674907],[-71.390455027,41.733642441],[-71.390343263,41.733600919],[-71.390278564,41.733613807],[-71.390255588,41.733618506],[-71.390126778,41.733703623],[-71.390049934,41.733756588],[-71.390012509,41.733782523],[-71.389980467,41.733800623],[-71.389881476,41.733856908],[-71.389731568,41.733910804],[-71.389654656,41.733921908],[-71.389569509,41.733934523],[-71.389417508,41.733942522],[-71.389351509,41.733941523],[-71.389293397,41.733924156],[-71.389264681,41.733915775],[-71.389209496,41.733927596],[-71.389206143,41.7339473],[-71.38920184,41.73397403],[-71.389251495,41.734091213],[-71.389275703,41.734193103],[-71.389277509,41.734198523],[-71.389267245,41.73431516],[-71.389266545,41.734323463],[-71.38926083,41.734451112],[-71.389273562,41.734575258],[-71.389273509,41.734575523],[-71.389258509,41.734682523],[-71.389247203,41.734689872],[-71.389158743,41.734747717],[-71.389166454,41.73476134],[-71.389181509,41.734787523],[-71.389276509,41.734859523],[-71.389308215,41.734908843],[-71.389339739,41.734957394],[-71.389369693,41.735000831],[-71.389385509,41.735023523],[-71.389429509,41.735075523],[-71.389446577,41.735094576],[-71.389472939,41.73512314],[-71.38948465,41.735184189],[-71.389490665,41.735237182],[-71.389501636,41.735267391],[-71.389509509,41.735288523],[-71.389333509,41.735324523],[-71.389354471,41.735433325],[-71.389664006,41.735372047],[-71.389656588,41.735418455],[-71.389652509,41.735445523],[-71.389647509,41.735516523],[-71.389650509,41.735659523],[-71.389653935,41.73568312],[-71.389659958,41.735721688],[-71.389667657,41.735762262],[-71.389677509,41.735811523],[-71.389697509,41.735885523],[-71.389698509,41.735957523],[-71.389695827,41.735981657],[-71.389691732,41.736023946],[-71.389691509,41.736027524],[-71.389685823,41.736048641],[-71.389670903,41.736105555],[-71.389658542,41.736157613],[-71.389653509,41.736179523],[-71.389629509,41.736221524],[-71.389623534,41.736230487],[-71.389601782,41.73626388],[-71.389583898,41.736294896],[-71.389570861,41.736326143],[-71.389561509,41.736349523],[-71.38963303,41.736450438],[-71.389634891,41.736452741],[-71.389708763,41.736569398],[-71.389736813,41.736615631],[-71.389770509,41.736670524],[-71.389790509,41.736777523],[-71.389742579,41.736842317],[-71.389736677,41.736850371],[-71.389667717,41.736932519],[-71.389710093,41.736997819],[-71.389712216,41.737001074],[-71.389858945,41.737037099],[-71.389926677,41.737088496],[-71.389969509,41.737120524],[-71.389999475,41.737181454],[-71.390005137,41.73718844],[-71.390047509,41.737240523],[-71.390164509,41.737262523],[-71.390164465,41.737262961],[-71.390164648,41.737262995],[-71.390162988,41.737277734],[-71.390159509,41.737312524],[-71.390042473,41.737392405],[-71.39003386,41.737398323],[-71.390033656,41.737398423],[-71.390033509,41.737398523],[-71.389892509,41.737467524],[-71.389892437,41.737467572],[-71.389750072,41.73753387],[-71.389603128,41.737582006],[-71.389520869,41.737602058],[-71.389438509,41.737622524],[-71.389291509,41.737665524],[-71.389239998,41.737693579],[-71.389179727,41.737726588],[-71.389115062,41.737807082],[-71.389099509,41.737826523],[-71.389085756,41.737809067],[-71.389073174,41.737793903],[-71.3890174,41.73769988],[-71.388978058,41.737673451],[-71.388897942,41.737654644],[-71.388897908,41.737654617],[-71.388897509,41.737654523],[-71.388861848,41.737625936],[-71.388776314,41.737557905],[-71.388667262,41.737463442],[-71.388600766,41.737372953],[-71.388600745,41.737372845],[-71.388600508,41.737372524],[-71.388591973,41.737327907],[-71.388578219,41.737257443],[-71.388556129,41.737177425],[-71.388521982,41.737132891],[-71.388515509,41.737124523],[-71.388515526,41.737124471],[-71.388515277,41.737124147],[-71.388544511,41.737035861],[-71.388550509,41.737017524],[-71.388550714,41.737017082],[-71.388601508,41.736907523],[-71.388590613,41.736852054],[-71.388587377,41.736852837],[-71.388505622,41.73688714],[-71.388447649,41.736911765],[-71.388337886,41.736999384],[-71.388325966,41.737004546],[-71.388206509,41.737056524],[-71.388111508,41.737123523],[-71.388077508,41.737202523],[-71.388076682,41.737211065],[-71.388074931,41.737233764],[-71.387947731,41.737322692],[-71.387827344,41.737408768],[-71.387681132,41.737474328],[-71.387618786,41.737502137],[-71.387526508,41.737543524],[-71.387461047,41.737571269],[-71.387382875,41.737604664],[-71.387281164,41.73764751],[-71.387224508,41.737671523],[-71.387194203,41.73768332],[-71.387075955,41.737729868],[-71.387037284,41.737737511],[-71.387008508,41.737743524],[-71.386863508,41.737786523],[-71.386764992,41.737822819],[-71.386711104,41.737842962],[-71.386622793,41.737862952],[-71.386559508,41.737877524],[-71.386502903,41.73789777],[-71.386422238,41.737926972],[-71.386379933,41.737973059],[-71.386379508,41.737973524],[-71.386299822,41.737976014],[-71.386283989,41.737976599],[-71.386164406,41.737973305],[-71.386135795,41.737972532],[-71.385988134,41.738006881],[-71.385827871,41.738038922],[-71.385751179,41.738058666],[-71.385683508,41.738076524],[-71.385550751,41.738102407],[-71.38552468,41.73810757],[-71.385456594,41.738118843],[-71.385374508,41.738132524],[-71.385240508,41.738166524],[-71.385163508,41.738245524],[-71.385012507,41.738278524],[-71.384870508,41.738308524],[-71.384758507,41.738379524],[-71.384663507,41.738464524],[-71.384558508,41.738549524],[-71.384528996,41.738581002],[-71.384468926,41.738645262],[-71.384430404,41.73871497],[-71.384406507,41.738758524],[-71.384403656,41.738822977],[-71.384401715,41.738871049],[-71.384447169,41.738952011],[-71.384460508,41.738975524],[-71.384477112,41.73900292],[-71.384520796,41.739074451],[-71.384587748,41.739164394],[-71.384588336,41.739165186],[-71.384706508,41.739259524],[-71.384714831,41.739296979],[-71.384718804,41.739313951],[-71.384718921,41.739361115],[-71.384719507,41.739428524],[-71.384694508,41.739545524],[-71.384669824,41.739620841],[-71.384655614,41.739664607],[-71.384625103,41.73973464],[-71.384606507,41.739777524],[-71.384588507,41.739816524],[-71.384542507,41.739770524],[-71.384478484,41.739699901],[-71.384445422,41.739663618],[-71.384403976,41.739626443],[-71.384333507,41.739563524],[-71.384301728,41.739543737],[-71.384227007,41.73949785],[-71.384138781,41.739483015],[-71.384068508,41.739471524],[-71.383893492,41.739454522],[-71.383893438,41.739454514],[-71.383736507,41.739431524],[-71.38361054,41.739410795],[-71.383578427,41.739405526],[-71.383434507,41.739409524],[-71.383378507,41.739448524],[-71.383377419,41.739449946],[-71.38333637,41.739533448],[-71.383302477,41.739533871],[-71.383291943,41.739410998],[-71.383291507,41.739408524],[-71.383273582,41.739333113],[-71.383262437,41.739286891],[-71.383220189,41.739162989],[-71.383218792,41.739158871],[-71.383191701,41.739029228],[-71.383191507,41.739028524],[-71.383140071,41.738909405],[-71.383095111,41.738826918],[-71.383079507,41.738798523],[-71.383058507,41.738673524],[-71.383011507,41.738602524],[-71.382933129,41.738554292],[-71.382894691,41.738530878],[-71.382773768,41.738453732],[-71.382773507,41.738453524],[-71.382658507,41.738364524],[-71.382631511,41.738298114],[-71.382608328,41.738242002],[-71.382604204,41.738125892],[-71.382623211,41.738016506],[-71.38263524,41.737969994],[-71.382652507,41.737901523],[-71.382706517,41.737800953],[-71.382710728,41.737793051],[-71.382750893,41.737749466],[-71.382798507,41.737697524],[-71.382897507,41.737603524],[-71.382961506,41.737504524],[-71.382987456,41.737433811],[-71.383001266,41.737395723],[-71.383017302,41.737291388],[-71.38298624,41.737162695],[-71.38298772,41.73711439],[-71.382989507,41.737043523],[-71.382968287,41.736957861],[-71.382962411,41.736934713],[-71.382927225,41.736824174],[-71.382945241,41.736710138],[-71.382947459,41.736695831],[-71.382916042,41.736593414],[-71.382883799,41.736525928],[-71.382871507,41.736500523],[-71.382867507,41.736454524],[-71.382859559,41.736406458],[-71.382846269,41.736328016],[-71.382822397,41.736269569],[-71.382794507,41.736202524],[-71.382718507,41.736102524],[-71.382635507,41.736008524],[-71.38259601,41.735968129],[-71.38254716,41.735918607],[-71.382419466,41.735839967],[-71.382315825,41.735804285],[-71.382266506,41.735787523],[-71.382125506,41.735720523],[-71.381998507,41.735665523],[-71.381846915,41.735649566],[-71.381846507,41.735649523],[-71.381698506,41.735606523],[-71.381644059,41.735577543],[-71.381574406,41.735540704],[-71.381483267,41.735498189],[-71.381449506,41.735482524],[-71.381377503,41.735432518],[-71.381377432,41.735432468],[-71.381370577,41.735423614],[-71.381314506,41.735351523],[-71.381282299,41.735344572],[-71.381175638,41.735322007],[-71.381170948,41.735323803],[-71.381167506,41.735325524],[-71.381141343,41.735335135],[-71.381118198,41.735343994],[-71.381111898,41.735351846],[-71.380975161,41.735524065],[-71.380960517,41.735542758],[-71.380963411,41.735602367],[-71.380965625,41.735645295],[-71.381011506,41.735751524],[-71.381011531,41.735751593],[-71.381035775,41.735817046],[-71.38103885,41.735871477],[-71.381071269,41.735908033],[-71.381071335,41.735908332],[-71.381071506,41.735908524],[-71.381085077,41.735970117],[-71.381097613,41.736026476],[-71.381094156,41.736040517],[-71.381080506,41.736097523],[-71.381005209,41.736159662],[-71.380977181,41.736182935],[-71.380933977,41.736203931],[-71.380855506,41.736242524],[-71.380746506,41.736252523],[-71.380734636,41.73628121],[-71.380743648,41.736323426],[-71.380758506,41.736391524],[-71.380763506,41.736494524],[-71.380856506,41.736544524],[-71.38089422,41.736573976],[-71.380961036,41.736626052],[-71.381108609,41.736669335],[-71.381136517,41.736667551],[-71.381179506,41.736664524],[-71.381201507,41.736643421],[-71.381228483,41.736617364],[-71.381245122,41.736621007],[-71.381290506,41.736630524],[-71.381381078,41.736719319],[-71.381392447,41.736730392],[-71.381392506,41.736730524],[-71.381449742,41.736854195],[-71.381495579,41.736966301],[-71.381502928,41.737020453],[-71.381510506,41.737075524],[-71.381510506,41.737115701],[-71.381510602,41.737197842],[-71.381509816,41.737252311],[-71.381507506,41.737435523],[-71.381504506,41.737559524],[-71.381491507,41.737672524],[-71.381461506,41.737789524],[-71.381440845,41.737857706],[-71.381425729,41.737908089],[-71.381411886,41.737953271],[-71.381391506,41.738020523],[-71.381376765,41.738062905],[-71.381351695,41.738136017],[-71.381331869,41.738195717],[-71.381305506,41.738276524],[-71.381273506,41.738386524],[-71.381268007,41.738402382],[-71.381230979,41.738510807],[-71.381177938,41.738629328],[-71.38115262,41.73867695],[-71.381124507,41.738730524],[-71.381060506,41.738864524],[-71.381034458,41.738931648],[-71.381008866,41.738998671],[-71.380975652,41.739092034],[-71.380969507,41.739109524],[-71.380934506,41.739218524],[-71.380918506,41.739259524],[-71.380894705,41.739320259],[-71.380888705,41.739335773],[-71.380848453,41.739439899],[-71.380796425,41.739554831],[-71.380747263,41.739671961],[-71.380701072,41.739784016],[-71.380635451,41.739901724],[-71.380567002,41.740012865],[-71.380502228,41.740134255],[-71.380412463,41.740247386],[-71.380322595,41.740365616],[-71.380240763,41.74046508],[-71.380154986,41.740567375],[-71.380073955,41.740678457],[-71.379996874,41.740783734],[-71.379913018,41.740887494],[-71.379835899,41.740996407],[-71.379758852,41.741099535],[-71.379670103,41.741206171],[-71.379584248,41.74131647],[-71.379497384,41.741427454],[-71.379407513,41.741545707],[-71.379316942,41.741646533],[-71.379217601,41.74175094],[-71.379120008,41.741866897],[-71.379057696,41.741943397],[-71.379021398,41.741987976],[-71.37891504,41.742104633],[-71.378814647,41.742215556],[-71.378724882,41.742325073],[-71.37863637,41.742417919],[-71.378540139,41.742507098],[-71.378440968,41.742600619],[-71.378328071,41.742702701],[-71.378218034,41.742809886],[-71.378111877,41.742915657],[-71.378008584,41.743024381],[-71.377888941,41.743124191],[-71.377771323,41.743219018],[-71.377676346,41.743289331],[-71.377556948,41.743372492],[-71.37744146,41.74345424],[-71.377340541,41.743533968],[-71.377241409,41.743621634],[-71.37712969,41.743712121],[-71.37702182,41.743801949],[-71.376920727,41.743892494],[-71.376805386,41.743960474],[-71.376677454,41.744033426],[-71.376552501,41.744097714],[-71.376430409,41.744167082],[-71.376292208,41.744212374],[-71.376165158,41.744223671],[-71.376253761,41.744325237],[-71.376365915,41.744406657],[-71.376504422,41.744472371],[-71.376646212,41.744514168],[-71.376791849,41.7445567],[-71.376933815,41.74458617],[-71.377094229,41.744613579],[-71.377278793,41.744643369],[-71.37745958,41.744668077],[-71.377609445,41.744687424],[-71.377769097,41.744698182],[-71.377804176,41.744686122],[-71.377824027,41.744652205],[-71.377905098,41.744605021],[-71.377983788,41.744589668],[-71.377978718,41.744606312],[-71.377972527,41.744699153],[-71.378106526,41.744743753],[-71.378270826,41.744767596],[-71.378440956,41.744792909],[-71.378609933,41.744830593],[-71.378772904,41.744879042],[-71.378951452,41.744926203],[-71.379122251,41.744969674],[-71.379292032,41.745018243],[-71.379430927,41.745058547],[-71.379579498,41.745101124],[-71.379721118,41.745153757],[-71.379853128,41.745201989],[-71.380020988,41.745249777],[-71.380184971,41.745297585],[-71.380355698,41.745347594],[-71.380522654,41.745389549],[-71.380673951,41.745445187],[-71.380809597,41.745509452],[-71.380944299,41.745572184],[-71.381091584,41.745634335],[-71.381231146,41.745694944],[-71.381372491,41.745765733],[-71.381509846,41.745848134],[-71.381646121,41.745936275],[-71.381780479,41.746021531],[-71.381894602,41.746100798],[-71.382018334,41.746185243],[-71.382147868,41.746270449],[-71.3822832,41.746357878],[-71.382392433,41.746440021],[-71.38248594,41.746538705],[-71.38259437,41.746609253],[-71.382732918,41.746675668],[-71.382870528,41.746737006],[-71.382989474,41.746818472],[-71.383043584,41.746869845],[-71.383057333,41.746882872],[-71.383086443,41.74687803],[-71.383154092,41.746822733],[-71.383155662,41.746714656],[-71.383107893,41.746601818],[-71.383081616,41.746542812],[-71.383140493,41.746491119],[-71.383227045,41.746401126],[-71.383356858,41.746333246],[-71.383495929,41.74629595],[-71.38366229,41.746247248],[-71.383797694,41.74619394],[-71.38394571,41.746140713],[-71.384099387,41.746097715],[-71.384262813,41.746050426],[-71.384409782,41.746001566],[-71.384547488,41.745924339],[-71.384660945,41.745848345],[-71.384809027,41.745791549],[-71.384935798,41.745732331],[-71.385047645,41.74563461],[-71.385134438,41.745527189],[-71.385230063,41.745415524],[-71.38532252,41.745316159],[-71.385420805,41.745219773],[-71.385524998,41.745114725],[-71.385627234,41.745011071],[-71.385723737,41.744903042],[-71.385815212,41.744805825],[-71.385892357,41.744696199],[-71.38601741,41.74462248],[-71.386169298,41.744570031],[-71.386316405,41.744578478],[-71.386471303,41.744584806],[-71.38663144,41.744563628],[-71.386787734,41.744540227],[-71.386948608,41.744534279],[-71.387121046,41.744533488],[-71.387283669,41.744539914],[-71.387429551,41.744567911],[-71.387593463,41.744553298],[-71.387735462,41.744514537],[-71.387895567,41.744494043],[-71.38807765,41.744495546],[-71.388223917,41.744496009],[-71.388381473,41.744519031],[-71.388543887,41.744540663],[-71.388691728,41.744566534],[-71.388845499,41.74451772],[-71.388961122,41.744491807],[-71.389105155,41.744512551],[-71.389278328,41.744528452],[-71.389411106,41.744523754],[-71.389580887,41.744505508],[-71.38974931,41.744513399],[-71.389885205,41.744560914],[-71.389920078,41.74456049],[-71.390014033,41.744562707],[-71.389996288,41.744582884],[-71.390013698,41.744651919],[-71.390064411,41.744763316],[-71.390119984,41.744872592],[-71.390197082,41.744965354],[-71.390289413,41.745079261],[-71.390375037,41.745186598],[-71.390488435,41.745248453],[-71.390621292,41.745306095],[-71.390694542,41.74540027],[-71.390752973,41.745445721],[-71.390892889,41.745482421],[-71.390906905,41.745518819],[-71.390884103,41.745621662],[-71.390890542,41.745714539],[-71.390863645,41.7457651],[-71.390830168,41.745734652],[-71.390771872,41.745681655],[-71.390710925,41.745607159],[-71.390657282,41.745565395],[-71.390530198,41.745578126],[-71.39049515,41.745591631],[-71.390493828,41.745614865],[-71.390545583,41.7456537],[-71.390540483,41.745671807],[-71.390503446,41.74568746],[-71.390344103,41.745653553],[-71.390194646,41.745606621],[-71.390044317,41.745551729],[-71.389893674,41.745520071],[-71.389731892,41.745520213],[-71.389588108,41.745548776],[-71.389533772,41.745555584],[-71.389486803,41.74552183],[-71.389425051,41.745437201],[-71.389273435,41.745403346],[-71.389104342,41.745375832],[-71.38895716,41.745302852],[-71.388818467,41.745248038],[-71.38871049,41.745213081],[-71.38854081,41.74522474],[-71.388386369,41.745253245],[-71.388229202,41.745269352],[-71.388084957,41.745264569],[-71.38793789,41.74531922],[-71.387803297,41.745383442],[-71.3876534,41.745432281],[-71.387531663,41.745478449],[-71.387434601,41.745558189],[-71.387339147,41.745661143],[-71.387239008,41.745753916],[-71.387155327,41.745847551],[-71.387088911,41.745951494],[-71.386997577,41.746037803],[-71.386868919,41.746094072],[-71.3867613,41.746167924],[-71.386680519,41.746261561],[-71.386621859,41.746364826],[-71.386609182,41.746436553],[-71.386471578,41.746508706],[-71.386386008,41.746598702],[-71.38638546,41.746701704],[-71.386233351,41.746704092],[-71.386065346,41.74673322],[-71.385900937,41.746783415],[-71.385740554,41.7468198],[-71.385597847,41.746841132],[-71.385450775,41.746895802],[-71.385324805,41.746966571],[-71.385289334,41.746993635],[-71.385254047,41.747020539],[-71.385252756,41.747059576],[-71.385210057,41.747063581],[-71.385166907,41.747166997],[-71.38513885,41.747232054],[-71.385100596,41.747295523],[-71.385046711,41.747356552],[-71.385011739,41.747411746],[-71.384982477,41.747466968],[-71.384979152,41.747498935],[-71.384973126,41.747521981],[-71.38497229,41.747648217],[-71.385018279,41.747751014],[-71.385066962,41.747867305],[-71.385099599,41.747974227],[-71.385072723,41.747993205],[-71.384992458,41.747897303],[-71.384890926,41.747826056],[-71.384732554,41.747811284],[-71.384661028,41.747832732],[-71.384572536,41.747778009],[-71.384413428,41.747748257],[-71.384302434,41.747674827],[-71.384168138,41.747636775],[-71.384035844,41.747657064],[-71.383909683,41.747713629],[-71.383756392,41.747743684],[-71.383610464,41.74772117],[-71.383524569,41.747751064],[-71.383392658,41.747812585],[-71.3833348,41.747873998],[-71.383296993,41.747993153],[-71.383266959,41.748102413],[-71.38320553,41.748213563],[-71.383158434,41.748318415],[-71.383087818,41.748409613],[-71.383040754,41.748429073],[-71.382957904,41.748463292],[-71.382867488,41.748476807],[-71.382745004,41.74854195],[-71.382677017,41.748581215],[-71.382590244,41.748672968],[-71.382504247,41.748774693],[-71.382463452,41.748839759],[-71.382411656,41.748941747],[-71.382176363,41.74919087],[-71.382057317,41.749278839],[-71.381929122,41.749343198],[-71.381779017,41.749348395],[-71.381692797,41.749403901],[-71.381643738,41.749511563],[-71.381630737,41.749623836],[-71.38168464,41.749705328],[-71.381720952,41.749820831],[-71.381795431,41.749923132],[-71.381891877,41.750019898],[-71.381911159,41.750130284],[-71.381983847,41.750226888],[-71.382013604,41.750336644],[-71.382063302,41.750447267],[-71.382168482,41.750528445],[-71.382268926,41.750611036],[-71.382359527,41.750715595],[-71.382449183,41.750819443],[-71.382528391,41.750925316],[-71.382574376,41.751029508],[-71.382593481,41.751153409],[-71.382583003,41.751222325],[-71.382510393,41.751316311],[-71.382439667,41.751415307],[-71.382410794,41.751506067],[-71.382409253,41.751614144],[-71.382378132,41.751731956],[-71.382360228,41.751853418],[-71.382353254,41.751942966],[-71.382325115,41.752050101],[-71.382299707,41.752166524],[-71.382287898,41.752261715],[-71.38228219,41.752327091],[-71.382237959,41.752432701],[-71.382237227,41.752548623],[-71.382239437,41.752659562],[-71.382261452,41.752779235],[-71.382244489,41.752903511],[-71.382243617,41.753029381],[-71.382259886,41.753151152],[-71.382266723,41.753270672],[-71.38227356,41.75338946],[-71.382274618,41.753512496],[-71.382272937,41.753630521],[-71.382237193,41.753736894],[-71.382168495,41.753827384],[-71.38202343,41.753876701],[-71.381879381,41.753921056],[-71.381742131,41.753955516],[-71.381590651,41.753988428],[-71.381451122,41.754049184],[-71.381310117,41.754082153],[-71.381169045,41.754118003],[-71.381037298,41.754165297],[-71.381042815,41.75420402],[-71.381047639,41.754237894],[-71.38113498,41.754240751],[-71.381278996,41.754198524],[-71.381422064,41.754156295],[-71.381560404,41.754111203],[-71.381701441,41.75407748],[-71.381837918,41.754031676],[-71.3819894,41.753998032],[-71.382139023,41.753961549],[-71.38226839,41.753946222],[-71.382370208,41.753931416],[-71.382503845,41.753885563],[-71.382618035,41.753801843],[-71.382719916,41.753718749],[-71.38284476,41.753687775],[-71.38292103,41.75373247],[-71.382999505,41.753824117],[-71.383030941,41.753834921],[-71.383137461,41.753871459],[-71.383204191,41.753854947],[-71.383314695,41.753765527],[-71.383399898,41.753717863],[-71.383535292,41.753679123],[-71.383670752,41.753637548],[-71.383790654,41.753620014],[-71.383853639,41.753664627],[-71.38386423,41.753787032],[-71.383919575,41.753834381],[-71.384049852,41.753890198],[-71.384187775,41.753939689],[-71.384328914,41.753967114],[-71.384459093,41.754026475],[-71.384536341,41.754071193],[-71.384581144,41.754190317],[-71.384606106,41.754304275],[-71.384647643,41.754388543],[-71.384767061,41.754471265],[-71.384888374,41.754554035],[-71.38500029,41.75463101],[-71.385108351,41.754712257],[-71.385201976,41.75480545],[-71.385322547,41.754876098],[-71.385443158,41.754941784],[-71.385538642,41.755037837],[-71.385594137,41.75513998],[-71.38564384,41.75525275],[-71.385681113,41.755366103],[-71.38569567,41.755475728],[-71.385698759,41.755593804],[-71.385710406,41.755708412],[-71.385723876,41.755827984],[-71.385779505,41.7559237],[-71.38586833,41.756021164],[-71.385958174,41.756112158],[-71.386053865,41.756196159],[-71.386073855,41.756221563],[-71.386137788,41.756302811],[-71.386205722,41.756400758],[-71.386267771,41.756511482],[-71.386304161,41.756624147],[-71.386344421,41.756720575],[-71.386344509,41.756720527],[-71.386681509,41.757171527]]]]}}"}, +{"type": "precinct", "typeId": 3502, "areaId": 25976, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":315,\"NAME\":\"3502\",\"SHAPE_Length\":0.07614284426083,\"SHAPE_Area\":-0.00026867492544114},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.393875512,41.755545527],[-71.393845511,41.755870527],[-71.394341512,41.755837527],[-71.394829512,41.755782527],[-71.395714512,41.755687526],[-71.395965512,41.755659527],[-71.396980513,41.755530527],[-71.397079513,41.755514526],[-71.398102513,41.755376526],[-71.398087513,41.755633527],[-71.398064513,41.755831527],[-71.398033513,41.756233526],[-71.398018512,41.756354527],[-71.397995513,41.756670527],[-71.397972513,41.757040527],[-71.398323513,41.757330527],[-71.398628513,41.757616528],[-71.399223514,41.758104528],[-71.400605514,41.757200527],[-71.400704514,41.757136527],[-71.402077514,41.756238527],[-71.402191514,41.756159527],[-71.403694514,41.755187526],[-71.404350515,41.754781526],[-71.404289515,41.753999526],[-71.404266515,41.753639526],[-71.404236515,41.753275526],[-71.404175515,41.752583526],[-71.404137515,41.752120526],[-71.404122514,41.751908526],[-71.404114515,41.751841526],[-71.404068514,41.751311526],[-71.404045514,41.751023526],[-71.404030514,41.750712526],[-71.404007514,41.750308525],[-71.404037515,41.750019525],[-71.404045514,41.749938525],[-71.404106514,41.749617526],[-71.404190515,41.749331525],[-71.404221514,41.749231526],[-71.404419514,41.748791525],[-71.404556514,41.748553525],[-71.404724515,41.748248525],[-71.404869515,41.747989525],[-71.405037514,41.747670525],[-71.405075515,41.747610525],[-71.405327515,41.747141525],[-71.405350514,41.747100525],[-71.405479515,41.746859525],[-71.405617515,41.746608525],[-71.405731515,41.746403525],[-71.405876514,41.746139525],[-71.405880515,41.746134524],[-71.406372515,41.745390524],[-71.406548515,41.745112525],[-71.406739515,41.744811524],[-71.406807515,41.744683525],[-71.406860515,41.744574524],[-71.406937515,41.744410525],[-71.407112515,41.744024525],[-71.407341515,41.743510524],[-71.407418515,41.743342524],[-71.407433516,41.743315524],[-71.407692515,41.742733524],[-71.407707516,41.742679524],[-71.407761515,41.742470524],[-71.407845516,41.742068524],[-71.407852515,41.741996524],[-71.407867515,41.741847524],[-71.407906515,41.741450524],[-71.407928515,41.741296523],[-71.407959516,41.740989523],[-71.408035515,41.740294524],[-71.408050515,41.740105523],[-71.408073515,41.739924524],[-71.408142515,41.739175523],[-71.408150515,41.739148524],[-71.408150515,41.739044523],[-71.408173516,41.738675523],[-71.408172515,41.738494523],[-71.408165515,41.738287523],[-71.408157516,41.738148523],[-71.408157516,41.738094523],[-71.408150515,41.737549523],[-71.408142515,41.737414523],[-71.408134515,41.736933523],[-71.408104515,41.736618523],[-71.408081515,41.736443523],[-71.408066515,41.736322522],[-71.408020515,41.736025523],[-71.407989515,41.735931523],[-71.407617515,41.735135522],[-71.407308515,41.735409522],[-71.407272515,41.735375523],[-71.407219515,41.735331522],[-71.407181515,41.735304523],[-71.407036515,41.735276522],[-71.406952514,41.735269522],[-71.406868515,41.735266523],[-71.406855514,41.735266523],[-71.406677514,41.735270522],[-71.406578514,41.735254522],[-71.406487514,41.735238523],[-71.406403514,41.735213522],[-71.406219515,41.735153522],[-71.406128515,41.735119522],[-71.406029515,41.735090523],[-71.405937514,41.735069523],[-71.405846514,41.735062522],[-71.405747514,41.735060522],[-71.405647514,41.735048523],[-71.405563515,41.735050523],[-71.405373514,41.735045523],[-71.405182514,41.735022522],[-71.405090514,41.735020522],[-71.404915514,41.735014523],[-71.404747514,41.735018522],[-71.404655514,41.735006523],[-71.404579514,41.734994523],[-71.404510514,41.734978522],[-71.404030514,41.734965523],[-71.403870513,41.734960522],[-71.403786514,41.734961522],[-71.403709514,41.734954523],[-71.403618513,41.734956522],[-71.403542513,41.734962522],[-71.403458513,41.734973523],[-71.403381513,41.734992523],[-71.403221514,41.735027523],[-71.403145514,41.735033523],[-71.402960513,41.735036522],[-71.402817513,41.735040522],[-71.402741513,41.735037522],[-71.402664513,41.735030523],[-71.402588513,41.735018522],[-71.402512513,41.735010523],[-71.402420513,41.734999522],[-71.402328513,41.734996522],[-71.402245513,41.735003523],[-71.402161513,41.735013523],[-71.402084513,41.735019522],[-71.401993513,41.735012523],[-71.401917513,41.735018522],[-71.401833513,41.735029523],[-71.401764513,41.735049523],[-71.401718513,41.735050523],[-71.401688513,41.735055522],[-71.401611513,41.735056522],[-71.401520513,41.735054522],[-71.401459513,41.735023523],[-71.401390513,41.734984523],[-71.401299513,41.734986523],[-71.401222513,41.735006523],[-71.401138512,41.735003523],[-71.401062512,41.734996522],[-71.400970513,41.734989523],[-71.400886512,41.734986523],[-71.400802513,41.734970523],[-71.400711512,41.734976522],[-71.400635512,41.734991523],[-71.400551513,41.734957522],[-71.400459512,41.734936523],[-71.400368513,41.734929523],[-71.400291513,41.734935523],[-71.400200513,41.734937522],[-71.400131512,41.734925523],[-71.400055512,41.734913523],[-71.399963513,41.734897523],[-71.399872512,41.734890523],[-71.399719512,41.734875523],[-71.399628512,41.734877523],[-71.399551512,41.734870523],[-71.399460512,41.734840522],[-71.399376512,41.734824522],[-71.399223512,41.734791523],[-71.399162512,41.734756523],[-71.399101512,41.734748523],[-71.399048512,41.734759523],[-71.398979512,41.734728522],[-71.398903512,41.734699523],[-71.398811512,41.734673523],[-71.398735512,41.734657523],[-71.398651512,41.734672523],[-71.398583511,41.734647522],[-71.398522512,41.734621523],[-71.398468512,41.734604523],[-71.398399512,41.734610522],[-71.398331511,41.734571522],[-71.398262512,41.734563523],[-71.398193511,41.734538523],[-71.398147512,41.734543523],[-71.398102512,41.734499523],[-71.398056511,41.734514523],[-71.398010512,41.734551522],[-71.397942511,41.734530522],[-71.397865511,41.734563523],[-71.397789511,41.734582523],[-71.397705511,41.734570522],[-71.397629511,41.734590522],[-71.397507512,41.734552522],[-71.397468512,41.734602523],[-71.397438511,41.734612523],[-71.397362511,41.734605522],[-71.397301511,41.734597523],[-71.397262511,41.734548522],[-71.397232512,41.734526523],[-71.397148511,41.734528522],[-71.397064511,41.734507523],[-71.396988511,41.734495523],[-71.396934511,41.734528522],[-71.396896511,41.734583523],[-71.396820511,41.734593523],[-71.396767512,41.734554523],[-71.396667512,41.734466523],[-71.396599511,41.734427523],[-71.396553512,41.734374522],[-71.396507511,41.734334522],[-71.396499511,41.734328523],[-71.396446511,41.734295522],[-71.396385511,41.734251523],[-71.396317511,41.734221522],[-71.396248511,41.734218522],[-71.396164511,41.734224523],[-71.396050511,41.734312523],[-71.395965511,41.734283523],[-71.395905511,41.734266523],[-71.395828511,41.734285523],[-71.395767511,41.734273523],[-71.395698511,41.734248523],[-71.395615511,41.734227523],[-71.395539511,41.734201522],[-71.39546251,41.734162522],[-71.395393511,41.734137522],[-71.395317511,41.734161522],[-71.395256511,41.734194523],[-71.395187511,41.734218522],[-71.39511151,41.734215522],[-71.395058511,41.734175523],[-71.395058511,41.734117523],[-71.395065511,41.734054523],[-71.395065511,41.734000523],[-71.39503551,41.733946522],[-71.394966511,41.733921523],[-71.39489751,41.733954523],[-71.394852511,41.734000523],[-71.394791511,41.734028523],[-71.394737511,41.734006522],[-71.394714511,41.733939523],[-71.394714511,41.733885522],[-71.394699511,41.733832522],[-71.39462351,41.733815523],[-71.394539511,41.733821523],[-71.39447051,41.733850522],[-71.39441751,41.733892523],[-71.39437151,41.733938523],[-71.39433351,41.733988523],[-71.39427951,41.734029523],[-71.39430251,41.734047523],[-71.39430251,41.734160522],[-71.394310511,41.734213523],[-71.39427951,41.734268523],[-71.39430251,41.734281523],[-71.39434151,41.734289523],[-71.39437951,41.734298523],[-71.39445551,41.734314522],[-71.39453151,41.734339523],[-71.394577511,41.734388523],[-71.394600511,41.734437523],[-71.394593511,41.734496523],[-71.39458551,41.734554523],[-71.39458551,41.734676523],[-71.394554511,41.734731523],[-71.394485511,41.734759523],[-71.39435651,41.734838523],[-71.39434051,41.734888523],[-71.394341511,41.734947523],[-71.394348511,41.735010523],[-71.394363511,41.735068523],[-71.394402511,41.735121523],[-71.394463511,41.735156523],[-71.394539511,41.735177523],[-71.394554511,41.735231523],[-71.394544511,41.735299523],[-71.394089511,41.735294523],[-71.39369951,41.735316523],[-71.39361651,41.735358523],[-71.39351751,41.735401523],[-71.393433511,41.735466523],[-71.39338751,41.735552523],[-71.393295511,41.735793523],[-71.39313551,41.735765523],[-71.39284551,41.735739523],[-71.39292251,41.735850523],[-71.39289851,41.735914523],[-71.39286051,41.736063523],[-71.39276951,41.736457524],[-71.39273851,41.736682523],[-71.39274651,41.736777523],[-71.39276951,41.736875523],[-71.39278451,41.736974523],[-71.39286851,41.737076523],[-71.39281551,41.737298523],[-71.39279251,41.737433523],[-71.39278451,41.737564524],[-71.39277651,41.737740524],[-71.39279251,41.737884523],[-71.39281551,41.738036524],[-71.39284551,41.738252523],[-71.39285351,41.738337523],[-71.39296051,41.738938523],[-71.39299851,41.739172523],[-71.39302851,41.739351524],[-71.393059511,41.739549524],[-71.39300551,41.739554524],[-71.39296751,41.739573524],[-71.39293651,41.739592524],[-71.39291451,41.739615524],[-71.39289151,41.739647524],[-71.39287651,41.739679524],[-71.39287651,41.739710524],[-71.39286851,41.739751524],[-71.39287651,41.739782524],[-71.39289151,41.739813523],[-71.392906511,41.739836524],[-71.39293751,41.739862524],[-71.39297551,41.739879524],[-71.39300551,41.739897524],[-71.393059511,41.739904524],[-71.393120511,41.739908524],[-71.39344051,41.741738524],[-71.39347851,41.741940524],[-71.393410511,41.741955525],[-71.393349511,41.741988524],[-71.393288511,41.742052525],[-71.393273511,41.742093525],[-71.39328051,41.742142524],[-71.393295511,41.742178524],[-71.393326511,41.742209525],[-71.393364511,41.742240524],[-71.39341751,41.742266525],[-71.393471511,41.742283524],[-71.39353251,41.742295524],[-71.393646511,41.742842524],[-71.393783511,41.743582524],[-71.393913511,41.744304525],[-71.393944511,41.744475524],[-71.394112511,41.745327525],[-71.394150511,41.745700525],[-71.394179511,41.745884525],[-71.394264511,41.746103525],[-71.394364511,41.746353525],[-71.394463511,41.746477525],[-71.394234511,41.746491525],[-71.394043511,41.746504525],[-71.393791511,41.746536525],[-71.393349511,41.746590525],[-71.393234511,41.746615525],[-71.393128511,41.746649525],[-71.393021511,41.746673525],[-71.392921511,41.746693525],[-71.392845511,41.746736525],[-71.392822511,41.746795525],[-71.39283051,41.746876525],[-71.392937511,41.747103526],[-71.393013511,41.747331525],[-71.39310551,41.747505525],[-71.393166511,41.747580525],[-71.393494511,41.747389525],[-71.393822511,41.747233525],[-71.393867511,41.748160525],[-71.393881511,41.748484526],[-71.393913511,41.749393525],[-71.393914511,41.749483526],[-71.393928511,41.750068526],[-71.393966511,41.751292526],[-71.393990511,41.751890526],[-71.394005511,41.752304526],[-71.394013512,41.752592526],[-71.394017512,41.752863526],[-71.394028511,41.753448526],[-71.393997512,41.754299527],[-71.393936512,41.754859527],[-71.393906511,41.755148527],[-71.393875512,41.755545527]]]]}}"}, +{"type": "precinct", "typeId": 3503, "areaId": 25977, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":316,\"NAME\":\"3503\",\"SHAPE_Length\":0.056295547338386,\"SHAPE_Area\":-0.00016185539123754},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.404350515,41.754781526],[-71.404366515,41.754965526],[-71.404411515,41.755599527],[-71.404434515,41.755964526],[-71.404450515,41.756238526],[-71.404472515,41.756472527],[-71.404526515,41.757330527],[-71.404631515,41.758683527],[-71.404657515,41.759018528],[-71.404716515,41.759799528],[-71.404754515,41.760325528],[-71.404793515,41.761072527],[-71.404808515,41.761351528],[-71.404831515,41.761728528],[-71.404877516,41.762502528],[-71.405853516,41.762454527],[-71.406733516,41.762445528],[-71.406998516,41.762444528],[-71.407082516,41.762469528],[-71.407188516,41.762481528],[-71.407997517,41.762392528],[-71.408867517,41.762279527],[-71.409805517,41.762160528],[-71.410668518,41.762052528],[-71.410652518,41.761958528],[-71.410713517,41.761947527],[-71.411423518,41.761860528],[-71.411903517,41.761819528],[-71.412369518,41.761755527],[-71.412521518,41.761689528],[-71.412643517,41.761583527],[-71.412765518,41.761481527],[-71.413040518,41.761232527],[-71.412613518,41.761110527],[-71.412445518,41.761046528],[-71.412308518,41.760959527],[-71.412216517,41.760889528],[-71.412155517,41.760814528],[-71.412087518,41.760716528],[-71.412041517,41.760546527],[-71.411888517,41.759932527],[-71.411713517,41.759247527],[-71.411537517,41.758440527],[-71.411400517,41.757840527],[-71.411354518,41.757665527],[-71.411209517,41.757038526],[-71.411095517,41.756567526],[-71.411019517,41.756244527],[-71.410965518,41.755993527],[-71.411721518,41.755469527],[-71.412254517,41.755097526],[-71.412514517,41.754912526],[-71.412659518,41.754814526],[-71.413177518,41.754447526],[-71.413796518,41.754016526],[-71.413841518,41.753988526],[-71.415176519,41.753072526],[-71.415520518,41.752836526],[-71.415795519,41.752650525],[-71.416466518,41.752172526],[-71.416939519,41.751838526],[-71.416901519,41.751748525],[-71.416862519,41.751691525],[-71.416260519,41.751194525],[-71.416176518,41.751147525],[-71.416054519,41.751131525],[-71.416115518,41.751089525],[-71.416198518,41.751025526],[-71.416290518,41.750951525],[-71.416420519,41.750835525],[-71.416466518,41.750789526],[-71.416519519,41.750730526],[-71.416603518,41.750611525],[-71.416680518,41.750474525],[-71.416817518,41.749886525],[-71.417007519,41.749053525],[-71.417092518,41.748673525],[-71.417099519,41.748461525],[-71.417099519,41.748331525],[-71.417030519,41.748130525],[-71.416954518,41.747929524],[-71.416847519,41.747656524],[-71.416725518,41.747352525],[-71.416603518,41.747170524],[-71.416565518,41.747104525],[-71.416382519,41.746927525],[-71.416092519,41.746744524],[-71.415687518,41.746573525],[-71.415428518,41.746461525],[-71.414742518,41.746174524],[-71.414131517,41.745908524],[-71.413880517,41.745787524],[-71.413742517,41.745700525],[-71.413643517,41.745612524],[-71.413635518,41.745603525],[-71.413567517,41.745528524],[-71.413506517,41.745434524],[-71.413437518,41.745287525],[-71.413376517,41.744996525],[-71.413147518,41.744996525],[-71.412773517,41.744999525],[-71.412666517,41.744997525],[-71.412552517,41.745000524],[-71.410813516,41.744905524],[-71.410362516,41.744879525],[-71.409264516,41.744825524],[-71.409187516,41.744818525],[-71.409050516,41.744816524],[-71.408897516,41.744820525],[-71.408752516,41.744841525],[-71.408592516,41.744857525],[-71.408417515,41.744906524],[-71.407784516,41.745073525],[-71.407478515,41.745133525],[-71.407120516,41.745141524],[-71.406548515,41.745112525],[-71.406372515,41.745390524],[-71.405880515,41.746134524],[-71.405876514,41.746139525],[-71.405731515,41.746403525],[-71.405617515,41.746608525],[-71.405479515,41.746859525],[-71.405350514,41.747100525],[-71.405327515,41.747141525],[-71.405075515,41.747610525],[-71.405037514,41.747670525],[-71.404869515,41.747989525],[-71.404724515,41.748248525],[-71.404556514,41.748553525],[-71.404419514,41.748791525],[-71.404221514,41.749231526],[-71.404190515,41.749331525],[-71.404106514,41.749617526],[-71.404045514,41.749938525],[-71.404037515,41.750019525],[-71.404007514,41.750308525],[-71.404030514,41.750712526],[-71.404045514,41.751023526],[-71.404068514,41.751311526],[-71.404114515,41.751841526],[-71.404122514,41.751908526],[-71.404137515,41.752120526],[-71.404175515,41.752583526],[-71.404236515,41.753275526],[-71.404266515,41.753639526],[-71.404289515,41.753999526],[-71.404350515,41.754781526]]]]}}"}, +{"type": "precinct", "typeId": 3504, "areaId": 25978, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":317,\"NAME\":\"3504\",\"SHAPE_Length\":0.065992699912909,\"SHAPE_Area\":-0.00016644058716006},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.390415807,41.764435355],[-71.390416511,41.764435529],[-71.390534511,41.764399529],[-71.391054511,41.764381529],[-71.391077511,41.764364529],[-71.391314511,41.764192528],[-71.391550511,41.764016528],[-71.391800511,41.763911529],[-71.391969512,41.763872529],[-71.392962512,41.763943528],[-71.393725512,41.764023529],[-71.394121512,41.764046529],[-71.394457512,41.764115528],[-71.394731512,41.764253528],[-71.395204513,41.764653529],[-71.395412512,41.764845529],[-71.395523512,41.765194529],[-71.395603512,41.766002529],[-71.395598513,41.766395529],[-71.395628513,41.766692529],[-71.395734513,41.766898529],[-71.395886513,41.767046529],[-71.396069512,41.767161529],[-71.396121513,41.767175529],[-71.396435513,41.767264529],[-71.397091513,41.767402529],[-71.397113513,41.767406529],[-71.397640514,41.767516529],[-71.398052514,41.767665529],[-71.399134514,41.768157529],[-71.399378514,41.768272529],[-71.399577514,41.768329529],[-71.399805514,41.76834153],[-71.400019514,41.76828453],[-71.400203514,41.768189529],[-71.400263514,41.768158529],[-71.400477514,41.767964529],[-71.400569515,41.767804529],[-71.400585514,41.767622529],[-71.400585514,41.767382529],[-71.400601514,41.767073529],[-71.400616514,41.766845529],[-71.400678514,41.766674529],[-71.400846514,41.766514529],[-71.401151515,41.766503529],[-71.401395514,41.766560529],[-71.401563515,41.766697529],[-71.401776515,41.766869529],[-71.402080515,41.767223529],[-71.402355515,41.767532529],[-71.402690515,41.767703529],[-71.403026515,41.767807529],[-71.403468515,41.767864529],[-71.403849515,41.767853529],[-71.404261515,41.767785529],[-71.405086516,41.767626529],[-71.405203516,41.767618529],[-71.405167516,41.767467528],[-71.405159516,41.767350528],[-71.405068516,41.766659529],[-71.405060515,41.766623529],[-71.405037515,41.766254529],[-71.405014516,41.765813528],[-71.405014516,41.765629529],[-71.405006516,41.765404528],[-71.405022515,41.765106528],[-71.405030516,41.764642528],[-71.405014516,41.764458529],[-71.404999515,41.764323529],[-71.404991516,41.764170528],[-71.404960515,41.763811528],[-71.404922515,41.763163528],[-71.404892516,41.762767528],[-71.404877516,41.762502528],[-71.404831515,41.761728528],[-71.404808515,41.761351528],[-71.404793515,41.761072527],[-71.404754515,41.760325528],[-71.404716515,41.759799528],[-71.404657515,41.759018528],[-71.404631515,41.758683527],[-71.404526515,41.757330527],[-71.404472515,41.756472527],[-71.404450515,41.756238526],[-71.404434515,41.755964526],[-71.404411515,41.755599527],[-71.404366515,41.754965526],[-71.404350515,41.754781526],[-71.403694514,41.755187526],[-71.402191514,41.756159527],[-71.402077514,41.756238527],[-71.400704514,41.757136527],[-71.400605514,41.757200527],[-71.399223514,41.758104528],[-71.398628513,41.757616528],[-71.398323513,41.757330527],[-71.397972513,41.757040527],[-71.397995513,41.756670527],[-71.398018512,41.756354527],[-71.398033513,41.756233526],[-71.398064513,41.755831527],[-71.398087513,41.755633527],[-71.398102513,41.755376526],[-71.397079513,41.755514526],[-71.396980513,41.755530527],[-71.395965512,41.755659527],[-71.395714512,41.755687526],[-71.394829512,41.755782527],[-71.394341512,41.755837527],[-71.393845511,41.755870527],[-71.393875512,41.755545527],[-71.392799511,41.755486527],[-71.392647511,41.755480527],[-71.392464511,41.755498527],[-71.391785511,41.755728527],[-71.391205511,41.755920527],[-71.39049551,41.756160527],[-71.39030551,41.756227527],[-71.39000751,41.756328528],[-71.38980951,41.756404527],[-71.38970951,41.756523528],[-71.38952651,41.756504528],[-71.38938951,41.756494527],[-71.38921451,41.756497527],[-71.38863451,41.756663527],[-71.387955509,41.756830527],[-71.387291509,41.757010528],[-71.387115509,41.757059527],[-71.386681509,41.757171527],[-71.386344509,41.756720527],[-71.386344421,41.756720575],[-71.386349142,41.756731882],[-71.386375999,41.756846596],[-71.38639434,41.756959107],[-71.386382919,41.757027268],[-71.386336484,41.757085926],[-71.386467649,41.757144577],[-71.386546104,41.757235513],[-71.386632164,41.757326548],[-71.386730664,41.757411923],[-71.386797584,41.757514877],[-71.386851152,41.75762127],[-71.386890352,41.75773467],[-71.386905856,41.757845737],[-71.386933731,41.757955444],[-71.386977766,41.758063886],[-71.386947634,41.758178132],[-71.386958715,41.758268567],[-71.387011981,41.758460284],[-71.38699664,41.758604503],[-71.386959577,41.75880473],[-71.38692975,41.758831526],[-71.386842584,41.758882049],[-71.386848512,41.758932573],[-71.386930293,41.758992227],[-71.387078168,41.758947206],[-71.3872067,41.758925469],[-71.387207934,41.758971003],[-71.387364509,41.758980807],[-71.387490066,41.758966134],[-71.387506012,41.758981929],[-71.387452039,41.759036967],[-71.387530425,41.759134329],[-71.387565776,41.759249074],[-71.387605958,41.759361765],[-71.387648099,41.759471623],[-71.387684499,41.759580698],[-71.387711326,41.759697539],[-71.387760199,41.759800359],[-71.38779372,41.759914394],[-71.387836446,41.760021714],[-71.388048877,41.760600551],[-71.38791494,41.760602318],[-71.387931209,41.76066145],[-71.388146681,41.760668864],[-71.388146052,41.760714395],[-71.388072932,41.760713798],[-71.388194856,41.761086703],[-71.388308915,41.761081943],[-71.388308153,41.761133832],[-71.388247402,41.761133361],[-71.388322789,41.761518204],[-71.38833057,41.761557844],[-71.38825254,41.761833864],[-71.388338362,41.761837927],[-71.388393887,41.761840565],[-71.388432888,41.76184241],[-71.388400579,41.761908995],[-71.388240071,41.761908428],[-71.388222745,41.76212379],[-71.388322297,41.762136671],[-71.388379761,41.762236664],[-71.388317085,41.762235665],[-71.38819934,41.76223379],[-71.388203464,41.762409496],[-71.388294821,41.762463533],[-71.388440956,41.762474697],[-71.388589902,41.762485819],[-71.388709859,41.762533731],[-71.38878247,41.762636003],[-71.388846528,41.762738929],[-71.388876303,41.762848683],[-71.38891652,41.76296062],[-71.388946298,41.763068956],[-71.388925031,41.763161943],[-71.388923455,41.763172667],[-71.388941405,41.763214008],[-71.388915818,41.763208129],[-71.388886476,41.763201446],[-71.388912267,41.763390117],[-71.388988335,41.763649569],[-71.389146946,41.763849963],[-71.389415434,41.76413654],[-71.389479098,41.764203219],[-71.389610731,41.764231268],[-71.389860957,41.764267413],[-71.389982422,41.764275487],[-71.389990539,41.764173157],[-71.390055042,41.764177929],[-71.390053896,41.764258907],[-71.390053826,41.764263984],[-71.390248417,41.764271923],[-71.390409842,41.764276056],[-71.390414079,41.764403307],[-71.390415807,41.764435355]]]]}}"}, +{"type": "precinct", "typeId": 3505, "areaId": 25979, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":318,\"NAME\":\"3505\",\"SHAPE_Length\":0.058966566353279,\"SHAPE_Area\":-0.00010754486574658},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.404877516,41.762502528],[-71.404892516,41.762767528],[-71.404922515,41.763163528],[-71.404960515,41.763811528],[-71.404991516,41.764170528],[-71.404999515,41.764323529],[-71.405014516,41.764458529],[-71.405030516,41.764642528],[-71.405022515,41.765106528],[-71.405006516,41.765404528],[-71.405014516,41.765629529],[-71.405014516,41.765813528],[-71.405037515,41.766254529],[-71.405060515,41.766623529],[-71.405068516,41.766659529],[-71.405159516,41.767350528],[-71.405167516,41.767467528],[-71.405203516,41.767618529],[-71.405646516,41.767592529],[-71.406449516,41.767468528],[-71.407191516,41.767412529],[-71.407777517,41.767272528],[-71.408114517,41.767157528],[-71.408375517,41.767045529],[-71.408629517,41.766953529],[-71.408900517,41.766896529],[-71.409234517,41.766851529],[-71.409678518,41.766791529],[-71.409751517,41.766783528],[-71.410259518,41.766664529],[-71.410702518,41.766562529],[-71.410728518,41.766548529],[-71.411160518,41.766311529],[-71.411419518,41.766094529],[-71.412183518,41.765066529],[-71.412352518,41.764839528],[-71.412642519,41.764553528],[-71.413314518,41.764091528],[-71.413482518,41.763851528],[-71.413492518,41.763826528],[-71.413543518,41.763691528],[-71.413589518,41.763554528],[-71.413677518,41.763336528],[-71.413803518,41.763235527],[-71.413971518,41.763132528],[-71.414124519,41.763064528],[-71.414383518,41.762961527],[-71.414750518,41.762927527],[-71.415131519,41.762927527],[-71.415806519,41.762910528],[-71.41601652,41.762905527],[-71.416336519,41.762860528],[-71.41665752,41.762769527],[-71.41706652,41.762499527],[-71.417405519,41.762324527],[-71.41758652,41.762262527],[-71.41784852,41.762175528],[-71.41851952,41.762050527],[-71.41894652,41.761959527],[-71.41907852,41.761893527],[-71.41901952,41.761787528],[-71.41930752,41.761653528],[-71.41971652,41.761523527],[-71.41998652,41.761563527],[-71.42008252,41.761611528],[-71.42013552,41.761524527],[-71.42015152,41.761429527],[-71.42017452,41.761384527],[-71.420227521,41.761342527],[-71.42025052,41.761301528],[-71.42025852,41.761283528],[-71.42027352,41.761228527],[-71.42028852,41.761093527],[-71.42028852,41.761030527],[-71.420303521,41.760962527],[-71.42034952,41.760907527],[-71.420418521,41.760870527],[-71.420494521,41.760882527],[-71.42056352,41.760916527],[-71.42063952,41.760933527],[-71.420715521,41.760944527],[-71.420807521,41.760956527],[-71.420868521,41.760919527],[-71.420921521,41.760877527],[-71.42097552,41.760831527],[-71.421021521,41.760785527],[-71.421066521,41.760725527],[-71.42107452,41.760658527],[-71.421059521,41.760595527],[-71.421020521,41.760528527],[-71.420967521,41.760475527],[-71.420929521,41.760409527],[-71.420891521,41.760355527],[-71.42078452,41.760267527],[-71.420746521,41.760214527],[-71.420746521,41.760151527],[-71.42076152,41.760092527],[-71.42079952,41.760038527],[-71.420921521,41.759954527],[-71.420929521,41.759891527],[-71.420929521,41.759837527],[-71.42091452,41.759711527],[-71.420891521,41.759684527],[-71.420868521,41.759667527],[-71.42079952,41.759646526],[-71.42073852,41.759616527],[-71.42068552,41.759563527],[-71.42064752,41.759523527],[-71.420555521,41.759408527],[-71.420517521,41.759359527],[-71.42049452,41.759305527],[-71.42046352,41.759252527],[-71.42044852,41.759198526],[-71.42044852,41.759140526],[-71.420441521,41.759077527],[-71.42041052,41.759015527],[-71.42037952,41.758957527],[-71.42035752,41.758894527],[-71.420303521,41.758778527],[-71.420303521,41.758715527],[-71.42028852,41.758648527],[-71.420227521,41.758532527],[-71.42016652,41.758493527],[-71.42012052,41.758444527],[-71.42008252,41.758391527],[-71.420052521,41.758333527],[-71.420013521,41.758266526],[-71.41999052,41.758208526],[-71.41995252,41.758155527],[-71.41992252,41.758102527],[-71.41986152,41.757977527],[-71.41984552,41.757919527],[-71.41983852,41.757847527],[-71.41983852,41.757784527],[-71.41984652,41.757711527],[-71.41983852,41.757640526],[-71.41980752,41.757564526],[-71.41973952,41.757426526],[-71.41970852,41.757354526],[-71.41967852,41.757206527],[-71.41964752,41.757094526],[-71.41964752,41.756865526],[-71.41965552,41.756788526],[-71.41967852,41.756760526],[-71.41970152,41.756724526],[-71.41976252,41.756655526],[-71.41980852,41.756609526],[-71.41987652,41.756545526],[-71.41994552,41.756485527],[-71.41999852,41.756425527],[-71.42004452,41.756379526],[-71.42009752,41.756319526],[-71.42022752,41.756213526],[-71.42037252,41.756124526],[-71.420402521,41.756101526],[-71.42042552,41.756083526],[-71.42047152,41.756041526],[-71.420540521,41.755990526],[-71.42060152,41.755935526],[-71.42066952,41.755888526],[-71.42080752,41.755804526],[-71.42088352,41.755762526],[-71.42095252,41.755738526],[-71.421028521,41.755732526],[-71.421239521,41.755682526],[-71.42122652,41.755611526],[-71.420891521,41.755632526],[-71.42034952,41.755674526],[-71.41996052,41.755723526],[-71.41967852,41.755752526],[-71.41948052,41.755774526],[-71.418320519,41.755893526],[-71.41829752,41.755727526],[-71.41815952,41.754874526],[-71.41813752,41.754780526],[-71.418053519,41.754385526],[-71.418038519,41.754143526],[-71.418014519,41.753918526],[-71.417954519,41.753590526],[-71.417908519,41.753465525],[-71.417755519,41.753351525],[-71.417557519,41.753252525],[-71.417374519,41.753152525],[-71.417274519,41.753024526],[-71.417191519,41.752827526],[-71.417122519,41.752703525],[-71.417092519,41.752649525],[-71.416878519,41.752438526],[-71.416466518,41.752172526],[-71.415795519,41.752650525],[-71.415520518,41.752836526],[-71.415176519,41.753072526],[-71.413841518,41.753988526],[-71.413796518,41.754016526],[-71.413177518,41.754447526],[-71.412659518,41.754814526],[-71.412514517,41.754912526],[-71.412254517,41.755097526],[-71.411721518,41.755469527],[-71.410965518,41.755993527],[-71.411019517,41.756244527],[-71.411095517,41.756567526],[-71.411209517,41.757038526],[-71.411354518,41.757665527],[-71.411400517,41.757840527],[-71.411537517,41.758440527],[-71.411713517,41.759247527],[-71.411888517,41.759932527],[-71.412041517,41.760546527],[-71.412087518,41.760716528],[-71.412155517,41.760814528],[-71.412216517,41.760889528],[-71.412308518,41.760959527],[-71.412445518,41.761046528],[-71.412613518,41.761110527],[-71.413040518,41.761232527],[-71.412765518,41.761481527],[-71.412643517,41.761583527],[-71.412521518,41.761689528],[-71.412369518,41.761755527],[-71.411903517,41.761819528],[-71.411423518,41.761860528],[-71.410713517,41.761947527],[-71.410652518,41.761958528],[-71.410668518,41.762052528],[-71.409805517,41.762160528],[-71.408867517,41.762279527],[-71.407997517,41.762392528],[-71.407188516,41.762481528],[-71.407082516,41.762469528],[-71.406998516,41.762444528],[-71.406733516,41.762445528],[-71.405853516,41.762454527],[-71.404877516,41.762502528]]]]}}"}, +{"type": "precinct", "typeId": 3506, "areaId": 25980, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":319,\"NAME\":\"3506\",\"SHAPE_Length\":0.090918328416249,\"SHAPE_Area\":-0.00017015831010801},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.431274523,41.741777523],[-71.431366523,41.741892523],[-71.431419523,41.741828523],[-71.431488523,41.741750523],[-71.431641523,41.741553523],[-71.431816523,41.741333523],[-71.431938523,41.741173523],[-71.431908523,41.741255523],[-71.431869523,41.741328523],[-71.431846523,41.741409523],[-71.431831524,41.741490523],[-71.431832524,41.741571523],[-71.431839523,41.741648523],[-71.431854523,41.741711523],[-71.431877523,41.741778523],[-71.431908524,41.741836523],[-71.431953523,41.741916523],[-71.431991523,41.741987523],[-71.432045524,41.742071523],[-71.432495524,41.742836523],[-71.432823524,41.743397524],[-71.432961524,41.743623523],[-71.433083523,41.743828524],[-71.433205524,41.744015523],[-71.433273524,41.744108523],[-71.433350524,41.744201523],[-71.433418524,41.744285523],[-71.433502524,41.744382523],[-71.433632524,41.744537523],[-71.433769524,41.744684524],[-71.433853524,41.744775524],[-71.433933524,41.744844523],[-71.433945524,41.744855524],[-71.434128524,41.745008524],[-71.434288525,41.745140523],[-71.434301524,41.745150524],[-71.434456524,41.745276523],[-71.434624524,41.745403524],[-71.434807524,41.745525524],[-71.434982524,41.745643523],[-71.435135524,41.745739524],[-71.435165525,41.745761523],[-71.435333525,41.745860523],[-71.435364524,41.745775524],[-71.435410524,41.745639524],[-71.435890524,41.744336524],[-71.436300524,41.743200523],[-71.436737525,41.741990523],[-71.436752525,41.741954523],[-71.436763525,41.741912523],[-71.436783525,41.741876523],[-71.436953525,41.741407523],[-71.437612525,41.739589523],[-71.437752525,41.739203523],[-71.438011525,41.738477522],[-71.438393525,41.737431522],[-71.439415526,41.734638522],[-71.439903526,41.733290521],[-71.440392526,41.731956521],[-71.441208526,41.72970152],[-71.441294525,41.72946552],[-71.441666525,41.72844852],[-71.441696526,41.72837052],[-71.441727526,41.72828952],[-71.442741526,41.72549452],[-71.443559526,41.723264519],[-71.443576526,41.723217519],[-71.443604526,41.723139519],[-71.443639526,41.723043519],[-71.443764526,41.722739519],[-71.443870526,41.722448519],[-71.444096526,41.721829519],[-71.444572526,41.720524519],[-71.444672526,41.720252518],[-71.444765526,41.719995519],[-71.444816526,41.719852518],[-71.444988526,41.719377518],[-71.445199526,41.718793518],[-71.446028527,41.716498518],[-71.446459526,41.715305517],[-71.446682527,41.714690518],[-71.446732526,41.714552518],[-71.446968526,41.713889517],[-71.447033527,41.713713517],[-71.447221526,41.713206517],[-71.447754527,41.711770516],[-71.447830527,41.711570517],[-71.447861527,41.711475517],[-71.447884526,41.711410517],[-71.447917527,41.711322516],[-71.447845526,41.711335517],[-71.447716527,41.711356517],[-71.447670526,41.711362516],[-71.447517526,41.711351517],[-71.447411527,41.711336517],[-71.447365527,41.711328517],[-71.447311527,41.711320517],[-71.447189526,41.711300517],[-71.447136527,41.711292517],[-71.447006526,41.711268517],[-71.446838526,41.711244516],[-71.446777526,41.711232517],[-71.446198526,41.711150516],[-71.445610526,41.711081517],[-71.445289525,41.711048516],[-71.445114525,41.711024517],[-71.444938525,41.711001517],[-71.444016526,41.710872516],[-71.443977526,41.710868517],[-71.443901526,41.710856516],[-71.443024525,41.710735516],[-71.442749525,41.710696516],[-71.442070525,41.710603516],[-71.441490524,41.710520517],[-71.441261525,41.710489517],[-71.441013525,41.710453517],[-71.440926524,41.710627517],[-71.440918525,41.710681516],[-71.440910524,41.710699516],[-71.440910524,41.710717516],[-71.440903524,41.710745517],[-71.440865524,41.710795516],[-71.440811524,41.710873516],[-71.440102524,41.711766517],[-71.439926524,41.711986517],[-71.439339524,41.712728517],[-71.437882523,41.714546517],[-71.436516523,41.716268518],[-71.436493523,41.716309518],[-71.436478523,41.716328518],[-71.436463523,41.716360518],[-71.436455523,41.716387518],[-71.436455523,41.716414518],[-71.436462523,41.716450518],[-71.436470524,41.716477518],[-71.436546524,41.716547518],[-71.436752523,41.716664518],[-71.438225524,41.717489518],[-71.438395524,41.717583518],[-71.439781525,41.718352518],[-71.440216525,41.718599518],[-71.440521525,41.718759518],[-71.440727524,41.718845519],[-71.440801525,41.718879518],[-71.438817524,41.722332519],[-71.438785524,41.722818519],[-71.438797524,41.722906519],[-71.439183525,41.722956519],[-71.439565525,41.723006519],[-71.439721525,41.723057519],[-71.439865525,41.72306052],[-71.440094525,41.723055519],[-71.440315525,41.723055519],[-71.440491525,41.723051519],[-71.440582525,41.723045519],[-71.440689525,41.723043519],[-71.440643525,41.723129519],[-71.440544525,41.72329352],[-71.440124525,41.724041519],[-71.440094525,41.724100519],[-71.439911525,41.72440152],[-71.439705525,41.724743519],[-71.439407525,41.725249519],[-71.439262525,41.72548752],[-71.439140525,41.72574152],[-71.439049524,41.72593752],[-71.438965525,41.72614152],[-71.438812525,41.72650052],[-71.438730525,41.72670052],[-71.438543524,41.72715252],[-71.438492525,41.72727752],[-71.438370524,41.72756852],[-71.438080524,41.72827752],[-71.437752524,41.729085521],[-71.437660525,41.729299521],[-71.437553524,41.729567521],[-71.437538524,41.72959852],[-71.437385525,41.729962521],[-71.437325524,41.730112521],[-71.437225524,41.730353521],[-71.437088524,41.730680521],[-71.436829524,41.731379521],[-71.436813524,41.731429521],[-71.436500524,41.732223521],[-71.436371524,41.732573521],[-71.436165524,41.733131521],[-71.436112524,41.733267521],[-71.435944524,41.733662521],[-71.435822524,41.733922522],[-71.435745524,41.734085521],[-71.435470524,41.734591521],[-71.435318524,41.734878521],[-71.435272524,41.734960521],[-71.435120524,41.735252521],[-71.434738523,41.735967522],[-71.434402524,41.736609522],[-71.434311523,41.736786522],[-71.434135523,41.737114522],[-71.433998523,41.737360522],[-71.433853524,41.737624522],[-71.433670523,41.737971522],[-71.433571523,41.738135522],[-71.433327524,41.738554522],[-71.433235524,41.738714523],[-71.433022523,41.739056522],[-71.432945523,41.739202523],[-71.432869523,41.739352522],[-71.432747524,41.739562522],[-71.432587523,41.739840523],[-71.432403523,41.740150523],[-71.432274523,41.740378522],[-71.432159523,41.740560523],[-71.432114523,41.740633522],[-71.431915523,41.740921523],[-71.431679523,41.741237523],[-71.431656523,41.741278523],[-71.431389523,41.741644523],[-71.431328523,41.741713523],[-71.431274523,41.741777523]]]]}}"}, +{"type": "precinct", "typeId": 3507, "areaId": 25981, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":320,\"NAME\":\"3507\",\"SHAPE_Length\":0.10892611107899,\"SHAPE_Area\":-9.8397545810169e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.450877912,41.687587049],[-71.450877041,41.68760882],[-71.450896679,41.68766232],[-71.450949755,41.687674417],[-71.450978787,41.687651904],[-71.451003352,41.687604826],[-71.450955056,41.687564304],[-71.450902895,41.687552253],[-71.450877912,41.687587049]]],[[[-71.452317278,41.688274372],[-71.452373523,41.688289509],[-71.451679527,41.687680512],[-71.451753527,41.686669512],[-71.450480526,41.687204512],[-71.449923526,41.687183512],[-71.449923248,41.687183537],[-71.449892186,41.687245964],[-71.44985125,41.687316474],[-71.449819778,41.687377682],[-71.449796763,41.687431597],[-71.449758634,41.687500143],[-71.449702806,41.687534971],[-71.449627181,41.687565262],[-71.449564666,41.687607383],[-71.449527253,41.68765825],[-71.449556522,41.687721497],[-71.449626632,41.68776116],[-71.449640371,41.687826778],[-71.449638952,41.687885254],[-71.449706875,41.687911972],[-71.449772008,41.687917489],[-71.449988364,41.687976769],[-71.450064806,41.6879948],[-71.450164707,41.688016066],[-71.450236666,41.688031968],[-71.450333061,41.688050443],[-71.450406091,41.688062961],[-71.45044972,41.688061242],[-71.450470647,41.687945372],[-71.450443238,41.687881464],[-71.450396698,41.687819194],[-71.45035354,41.687763809],[-71.450315781,41.687709204],[-71.450309085,41.687649192],[-71.450347537,41.687594963],[-71.450402978,41.687547899],[-71.450469884,41.687507861],[-71.450528613,41.687469054],[-71.450590088,41.687429608],[-71.450658993,41.68740869],[-71.450741426,41.687412567],[-71.450832389,41.687430924],[-71.450915346,41.687466796],[-71.45099149,41.687515448],[-71.451053562,41.687574683],[-71.451083469,41.687644035],[-71.451067032,41.687715106],[-71.451031371,41.687790536],[-71.45101228,41.687860188],[-71.451018666,41.687927655],[-71.451045223,41.687990168],[-71.451092928,41.688045669],[-71.45117089,41.688071201],[-71.451264078,41.688054935],[-71.451354536,41.688016827],[-71.451418632,41.687980813],[-71.451481753,41.687944111],[-71.451535113,41.687903815],[-71.451593828,41.687843237],[-71.451642642,41.687802138],[-71.451728537,41.687787058],[-71.451812876,41.687811357],[-71.45187813,41.687859113],[-71.451916401,41.687924604],[-71.451925117,41.68797851],[-71.451929193,41.688036462],[-71.451935829,41.688097823],[-71.451948904,41.688156603],[-71.451972204,41.688210195],[-71.452035596,41.68825923],[-71.452130348,41.688272922],[-71.452232067,41.688271798],[-71.452317278,41.688274372]]],[[[-71.452518893,41.688385006],[-71.452587291,41.688380419],[-71.452518527,41.688384512],[-71.452456527,41.688331512],[-71.452424455,41.68831289],[-71.452456571,41.6883319],[-71.452518893,41.688385006]]],[[[-71.452661599,41.688397652],[-71.452661527,41.688397512],[-71.452635417,41.688389547],[-71.452661599,41.688397652]]],[[[-71.450248675,41.689076525],[-71.450230717,41.689140071],[-71.450227406,41.689201222],[-71.450266704,41.689238859],[-71.450336931,41.689207764],[-71.450358079,41.689200775],[-71.450423836,41.68919065],[-71.450496854,41.689180047],[-71.450528258,41.68916714],[-71.450497618,41.6891379],[-71.450431106,41.689098993],[-71.450362888,41.689057342],[-71.450299945,41.689019878],[-71.450265563,41.689017027],[-71.450248675,41.689076525]]],[[[-71.451860808,41.690510632],[-71.451803876,41.690550194],[-71.451860445,41.690588204],[-71.451932562,41.690600675],[-71.451943454,41.690600954],[-71.452018367,41.690588316],[-71.452045927,41.690534493],[-71.452026458,41.690498694],[-71.451946923,41.690490108],[-71.451860808,41.690510632]]],[[[-71.452193334,41.69068405],[-71.452145789,41.690738802],[-71.452123317,41.690802232],[-71.452128122,41.690864278],[-71.452148027,41.690888505],[-71.4521952,41.690843289],[-71.452253264,41.69079833],[-71.452261613,41.690771325],[-71.452284269,41.690748671],[-71.452287485,41.690690927],[-71.452273524,41.690631416],[-71.45221261,41.690610328],[-71.452193334,41.69068405]]],[[[-71.452126528,41.703265515],[-71.452118527,41.703328515],[-71.452042528,41.703708515],[-71.451996528,41.703956515],[-71.451881527,41.704634515],[-71.452362528,41.704692515],[-71.453003528,41.704741515],[-71.453285528,41.704793515],[-71.453430528,41.704835515],[-71.453644528,41.704516515],[-71.453834528,41.704178515],[-71.454109528,41.703704515],[-71.454224528,41.703490515],[-71.454384528,41.703221515],[-71.454437528,41.703116515],[-71.454620529,41.702811515],[-71.454659529,41.702765515],[-71.454690528,41.702965515],[-71.454777529,41.703531515],[-71.454811528,41.703482515],[-71.454865528,41.703382515],[-71.455017529,41.703248514],[-71.455093529,41.703210515],[-71.455162529,41.703150514],[-71.455238528,41.703108515],[-71.455330529,41.703115515],[-71.455368529,41.703092514],[-71.455383529,41.703024515],[-71.455414529,41.702974514],[-71.455460529,41.702928515],[-71.455521529,41.702886515],[-71.455589529,41.702830515],[-71.455666529,41.702788515],[-71.455765529,41.702773515],[-71.455849529,41.702771515],[-71.455963529,41.702791515],[-71.456055529,41.702883515],[-71.456078529,41.702964515],[-71.455994529,41.703047515],[-71.455971529,41.703155515],[-71.456070529,41.703270515],[-71.456261529,41.703316515],[-71.456360529,41.703314515],[-71.456373529,41.703313515],[-71.456474529,41.703307514],[-71.456741529,41.703324515],[-71.456823529,41.703332515],[-71.457054529,41.703357515],[-71.457290529,41.703406515],[-71.457596529,41.703476515],[-71.45772953,41.703502514],[-71.45784753,41.703525515],[-71.45809953,41.703614515],[-71.45830553,41.703637514],[-71.458610529,41.703590515],[-71.458745529,41.703568515],[-71.45886253,41.703548515],[-71.45913753,41.703520514],[-71.459602531,41.703528515],[-71.45988553,41.703590515],[-71.46008353,41.703657514],[-71.46025853,41.703654515],[-71.460419531,41.703628515],[-71.460594531,41.703619514],[-71.460709531,41.703671515],[-71.460724531,41.703729515],[-71.460732531,41.703869515],[-71.460808531,41.703944515],[-71.46083153,41.703939515],[-71.46093053,41.703801515],[-71.461014531,41.703642515],[-71.46105253,41.703650515],[-71.46135953,41.703367514],[-71.461266531,41.703191514],[-71.46101453,41.702746514],[-71.460983531,41.702692515],[-71.46070153,41.702149515],[-71.46040353,41.701606515],[-71.46032753,41.701365514],[-71.46027453,41.701001515],[-71.46027453,41.700870514],[-71.46031253,41.700509514],[-71.46029753,41.700307514],[-71.46028953,41.700186514],[-71.46028153,41.699947514],[-71.46024353,41.699718514],[-71.46013653,41.699225514],[-71.46003753,41.698800513],[-71.46000753,41.698710514],[-71.45987753,41.698393513],[-71.45977053,41.698116514],[-71.45960253,41.697737514],[-71.45953353,41.697581514],[-71.45951853,41.697559513],[-71.45950253,41.697519513],[-71.459488529,41.697483514],[-71.45929753,41.697082514],[-71.459198529,41.696890513],[-71.45915253,41.696788514],[-71.458923529,41.696270513],[-71.458862529,41.696190513],[-71.458649529,41.695907513],[-71.45819853,41.695480513],[-71.457642529,41.694974513],[-71.457581529,41.694916513],[-71.456886529,41.694211513],[-71.456711529,41.693953513],[-71.456589529,41.693771513],[-71.456390528,41.693303513],[-71.456367528,41.693137513],[-71.456329528,41.692881513],[-71.456314528,41.692593513],[-71.456299529,41.692336513],[-71.456306529,41.691818513],[-71.456314528,41.691472512],[-71.456009529,41.691469512],[-71.455772528,41.691474512],[-71.455681529,41.691481513],[-71.455596528,41.691495512],[-71.455589528,41.691496513],[-71.455505529,41.691516513],[-71.455421528,41.691545513],[-71.455345528,41.691578513],[-71.455269528,41.691620513],[-71.455193528,41.691667512],[-71.455124528,41.691718513],[-71.455063528,41.691777513],[-71.455009528,41.691846513],[-71.454956528,41.691910513],[-71.454903528,41.691979512],[-71.454819528,41.692030513],[-71.454750528,41.692059513],[-71.454674528,41.692074512],[-71.454590528,41.692094512],[-71.454498528,41.692105513],[-71.454437528,41.692111512],[-71.454361528,41.692121513],[-71.454216528,41.692133512],[-71.454147528,41.692133512],[-71.454140528,41.692085513],[-71.454140528,41.691986513],[-71.454079528,41.691528512],[-71.453979528,41.691076513],[-71.453899528,41.690757513],[-71.453865528,41.690619512],[-71.453713527,41.690176513],[-71.453596527,41.689879512],[-71.453537528,41.689730513],[-71.453346527,41.689288512],[-71.453163528,41.688909512],[-71.452965527,41.688535512],[-71.452877527,41.688367512],[-71.452828527,41.688381512],[-71.452675527,41.688424512],[-71.45267528,41.688424036],[-71.452672645,41.68848981],[-71.452642495,41.688540842],[-71.452591835,41.688560123],[-71.452516911,41.688549595],[-71.452432789,41.688519144],[-71.452366743,41.688468004],[-71.452313095,41.688402187],[-71.452255892,41.688357362],[-71.45216331,41.688379804],[-71.452086819,41.688386244],[-71.452070987,41.688382739],[-71.451997746,41.688366562],[-71.451921382,41.688324039],[-71.451857447,41.688265467],[-71.451817438,41.68819929],[-71.451816575,41.688129196],[-71.451815463,41.68806587],[-71.451809494,41.688010638],[-71.451805511,41.68795136],[-71.451770805,41.687933576],[-71.45168851,41.687948726],[-71.451619231,41.687979159],[-71.451551224,41.688023222],[-71.45149361,41.688079776],[-71.451441583,41.688133063],[-71.451388003,41.688180151],[-71.451323085,41.688214061],[-71.451243721,41.688225233],[-71.451157782,41.688217856],[-71.451081309,41.688199825],[-71.450994147,41.688155696],[-71.450937879,41.68808711],[-71.450904634,41.688033308],[-71.450879722,41.687974912],[-71.450863995,41.687913982],[-71.45085089,41.687855202],[-71.450832168,41.687801703],[-71.450809754,41.68774882],[-71.450785632,41.687693855],[-71.450759525,41.687642914],[-71.450744109,41.687573865],[-71.450706071,41.687526075],[-71.450633504,41.687547609],[-71.450576823,41.687581043],[-71.450502856,41.687637887],[-71.450476087,41.687694431],[-71.45055128,41.687789302],[-71.450585128,41.687851292],[-71.450605277,41.687915037],[-71.450618412,41.687973131],[-71.450624256,41.688031129],[-71.450628175,41.688092443],[-71.450624834,41.688153594],[-71.450613408,41.688213209],[-71.450594971,41.688265847],[-71.450572591,41.688326578],[-71.450585963,41.688354758],[-71.450695842,41.688376257],[-71.450774906,41.688397079],[-71.450853661,41.688424693],[-71.450926579,41.688463053],[-71.450980088,41.688509157],[-71.451007716,41.6885676],[-71.451013405,41.688629623],[-71.451011196,41.688685378],[-71.451008677,41.688748587],[-71.451016508,41.688802516],[-71.451054392,41.688854377],[-71.451066644,41.688911098],[-71.451063116,41.688977051],[-71.451045794,41.689048098],[-71.451018233,41.689101875],[-71.450986002,41.689158988],[-71.450945781,41.689211868],[-71.450896747,41.689258363],[-71.450849575,41.689303601],[-71.450802261,41.689374635],[-71.450765887,41.689422142],[-71.450717831,41.689466625],[-71.450660246,41.689522515],[-71.450651305,41.689564477],[-71.450717724,41.689606127],[-71.450791018,41.689634951],[-71.45087688,41.689666135],[-71.450968233,41.689697414],[-71.451056748,41.689731389],[-71.45113589,41.68977261],[-71.451204807,41.68981975],[-71.451271925,41.689866135],[-71.451338313,41.689909111],[-71.45139744,41.689951284],[-71.451442711,41.689999878],[-71.451470589,41.690052237],[-71.451493236,41.690121426],[-71.451534752,41.690173379],[-71.451592267,41.69021004],[-71.451662504,41.690247026],[-71.451730182,41.690279804],[-71.451800638,41.690311301],[-71.451893032,41.69033924],[-71.451988361,41.690361097],[-71.452080881,41.690385606],[-71.452156224,41.690408392],[-71.452208077,41.690427898],[-71.452265222,41.69042918],[-71.452262804,41.690398511],[-71.452236756,41.690346222],[-71.452203821,41.690284278],[-71.452157572,41.690236965],[-71.452044214,41.690211991],[-71.452019065,41.690182845],[-71.452018339,41.690132486],[-71.45199499,41.690103387],[-71.451914589,41.690070971],[-71.451832558,41.690056231],[-71.451784367,41.690036109],[-71.451791326,41.689951885],[-71.451778997,41.689874056],[-71.451760585,41.689811752],[-71.451761179,41.689751195],[-71.45177831,41.689731854],[-71.451839116,41.689731834],[-71.451891137,41.689770436],[-71.451942693,41.689820564],[-71.45199071,41.689868564],[-71.452031498,41.689915074],[-71.452074984,41.689985438],[-71.452106661,41.690056895],[-71.452130163,41.690127502],[-71.452175311,41.690178839],[-71.45224741,41.690215162],[-71.452313882,41.690186695],[-71.452365441,41.690191267],[-71.452437697,41.690222811],[-71.45251579,41.690198693],[-71.452585101,41.69016826],[-71.452657592,41.690170577],[-71.452740042,41.690196911],[-71.452798255,41.6902397],[-71.452832573,41.690289455],[-71.452842906,41.690303295],[-71.452827232,41.690332881],[-71.452759907,41.690359267],[-71.452791479,41.690410302],[-71.452864122,41.690454789],[-71.452961717,41.690465806],[-71.453033897,41.690476287],[-71.453104539,41.690503713],[-71.453168432,41.690539827],[-71.453211082,41.690586383],[-71.453250769,41.690638267],[-71.453300681,41.6906843],[-71.453358042,41.69072503],[-71.453415434,41.690765784],[-71.453472049,41.690825564],[-71.453529827,41.690879216],[-71.453603418,41.690923063],[-71.453655704,41.69097797],[-71.453686314,41.691052787],[-71.453705706,41.691113101],[-71.453723422,41.691169961],[-71.453727563,41.691225146],[-71.453724922,41.691291763],[-71.453747309,41.691345332],[-71.453764217,41.691422591],[-71.453761856,41.69148173],[-71.453759339,41.691544939],[-71.453754387,41.69160131],[-71.453726268,41.691669403],[-71.453672052,41.691708991],[-71.453588419,41.691711907],[-71.453501794,41.691676631],[-71.453435495,41.691631597],[-71.453411775,41.69156577],[-71.453461927,41.69149206],[-71.453433878,41.691420674],[-71.453385764,41.691375396],[-71.453329474,41.691329886],[-71.453276784,41.691285865],[-71.453231417,41.691239262],[-71.453181504,41.691193937],[-71.453118527,41.691156475],[-71.453050816,41.691125025],[-71.452983866,41.69109632],[-71.452916698,41.69107372],[-71.452831159,41.691056144],[-71.452747015,41.691049524],[-71.45265637,41.691046811],[-71.452556059,41.691035723],[-71.452473142,41.691020298],[-71.452378387,41.691006583],[-71.452285151,41.691000438],[-71.452198044,41.69099919],[-71.452117375,41.690997373],[-71.452040399,41.690993613],[-71.451967211,41.69098448],[-71.451899501,41.69095303],[-71.451861895,41.6908944],[-71.451900103,41.690800652],[-71.451867198,41.690738],[-71.451819957,41.69067031],[-71.451763824,41.690621392],[-71.451716504,41.690578836],[-71.451710815,41.690516149],[-71.451695055,41.690455905],[-71.451629799,41.690407532],[-71.451562819,41.690380152],[-71.451495079,41.690348701],[-71.451430521,41.690306434],[-71.451376281,41.690255596],[-71.451331957,41.690205585],[-71.451290347,41.690156376],[-71.451241477,41.690106958],[-71.451190713,41.690060283],[-71.451139856,41.690014912],[-71.451090768,41.689970936],[-71.451038902,41.689928972],[-71.450980597,41.68988888],[-71.45091576,41.689852742],[-71.450840759,41.689821791],[-71.450765759,41.689790199],[-71.450696376,41.689754631],[-71.45063157,41.689718492],[-71.450565848,41.689682331],[-71.450500096,41.689646146],[-71.450440597,41.689613509],[-71.450375466,41.689563077],[-71.450332059,41.689512449],[-71.45028634,41.68945226],[-71.450170599,41.689395929],[-71.450107112,41.689350277],[-71.4500703,41.689294323],[-71.450045232,41.689240021],[-71.45006603,41.68917316],[-71.450100187,41.689113372],[-71.450078426,41.68904416],[-71.450067276,41.68898266],[-71.450105481,41.688934537],[-71.450185342,41.68891184],[-71.450276669,41.68889754],[-71.450370056,41.688900302],[-71.45046428,41.688926939],[-71.450538301,41.688960566],[-71.450579293,41.68897849],[-71.450591567,41.688966489],[-71.450600587,41.688900012],[-71.450615582,41.68884184],[-71.450650466,41.688786145],[-71.450683395,41.688734498],[-71.450715346,41.688684908],[-71.450762611,41.688636994],[-71.450772543,41.688615387],[-71.45070153,41.688598891],[-71.450630206,41.688589118],[-71.450560077,41.688572554],[-71.450492028,41.688549266],[-71.45043149,41.688519373],[-71.450362886,41.688464754],[-71.45032083,41.68840395],[-71.450304188,41.688343019],[-71.45029462,41.688287031],[-71.450296163,41.688225148],[-71.450271389,41.688185825],[-71.450182984,41.688172294],[-71.450103079,41.688173197],[-71.450026774,41.688174879],[-71.449952113,41.688180746],[-71.449866592,41.688186266],[-71.449692678,41.688200118],[-71.449607125,41.688206324],[-71.44953026,41.688221612],[-71.449450617,41.688238889],[-71.449368446,41.688250654],[-71.449357981,41.688251815],[-71.449285515,41.688259696],[-71.449204757,41.688259249],[-71.449102931,41.688240657],[-71.449029111,41.68822537],[-71.448946771,41.68821877],[-71.448939741,41.688235622],[-71.44895455,41.688297215],[-71.448917198,41.68834671],[-71.448843821,41.688387911],[-71.448758511,41.688433657],[-71.448675125,41.688476683],[-71.448591895,41.688514952],[-71.448521637,41.688547394],[-71.448457413,41.688587455],[-71.448397268,41.688639181],[-71.448330391,41.688677823],[-71.448238411,41.688707763],[-71.448180626,41.688745906],[-71.448129573,41.688797156],[-71.44807284,41.688854395],[-71.448007014,41.688912133],[-71.447935821,41.688967673],[-71.447867405,41.689021933],[-71.447802184,41.689087149],[-71.447731314,41.689157669],[-71.4476588,41.689223408],[-71.447581135,41.689282215],[-71.447501671,41.689340312],[-71.447421447,41.689394315],[-71.447232333,41.689485728],[-71.447219697,41.689491829],[-71.447166295,41.689466122],[-71.447127659,41.689479551],[-71.447140637,41.689540412],[-71.447139254,41.689551961],[-71.447014121,41.689640292],[-71.446942011,41.68969654],[-71.446892183,41.689739626],[-71.446847598,41.689788294],[-71.446803866,41.689838357],[-71.446766575,41.689885816],[-71.446724363,41.689942695],[-71.446689256,41.690003809],[-71.446663523,41.690057013],[-71.446655849,41.690113291],[-71.446659983,41.690168476],[-71.446638939,41.690195246],[-71.446646532,41.690236986],[-71.446635107,41.690291066],[-71.446671438,41.690336113],[-71.446739612,41.690356681],[-71.446784942,41.690403287],[-71.446790596,41.690466683],[-71.446830172,41.690498855],[-71.446910465,41.690510876],[-71.446983746,41.690516581],[-71.447082318,41.690525591],[-71.4471639,41.690528785],[-71.447247221,41.690532665],[-71.447316528,41.690547859],[-71.447362388,41.690581521],[-71.447372776,41.690639568],[-71.447379439,41.690700265],[-71.447378174,41.690754671],[-71.447388318,41.690773954],[-71.447417552,41.690768479],[-71.447434442,41.690708981],[-71.447436622,41.690654645],[-71.447457112,41.69059588],[-71.447509524,41.690601804],[-71.447550184,41.690652387],[-71.447580743,41.690705457],[-71.447601356,41.690757631],[-71.447617205,41.690815155],[-71.447637538,41.690874784],[-71.447637637,41.690940076],[-71.447603758,41.690993094],[-71.447597791,41.691052139],[-71.447603788,41.691106685],[-71.447612375,41.691164708],[-71.44762267,41.691224836],[-71.447620302,41.691284638],[-71.447598617,41.691350812],[-71.447566892,41.691418147],[-71.44752595,41.69148868],[-71.447478027,41.691552212],[-71.447433702,41.691617254],[-71.44738477,41.691683484],[-71.447349246,41.691731676],[-71.44729406,41.691796416],[-71.447250995,41.69185126],[-71.447220309,41.691915874],[-71.447231444,41.691954894],[-71.447307068,41.691970869],[-71.447383191,41.691973922],[-71.447464047,41.691971672],[-71.447556667,41.691948571],[-71.447643763,41.691926679],[-71.44773134,41.691915033],[-71.447833157,41.691911877],[-71.447937224,41.691919654],[-71.448009529,41.69192744],[-71.448086319,41.691935913],[-71.448169517,41.691943246],[-71.448254731,41.691947195],[-71.448334486,41.691948969],[-71.44844265,41.691945976],[-71.448546331,41.691940122],[-71.448652882,41.691931617],[-71.448755866,41.69192096],[-71.448858787,41.691911721],[-71.448932474,41.691907911],[-71.449008877,41.691903486],[-71.449082689,41.691896315],[-71.449184881,41.691882936],[-71.449284233,41.69187294],[-71.449355111,41.691872217],[-71.449388643,41.691871843],[-71.44948371,41.691878059],[-71.449567357,41.691896917],[-71.449648923,41.691923253],[-71.449735671,41.691955811],[-71.44982501,41.6919918],[-71.44990715,41.692025637],[-71.449993525,41.692067685],[-71.450070807,41.692110232],[-71.450147361,41.692148686],[-71.450225684,41.692187163],[-71.45029738,41.692233024],[-71.450348145,41.692280385],[-71.450393261,41.692333141],[-71.450443653,41.692389352],[-71.450497862,41.692441609],[-71.450547401,41.692496425],[-71.450596304,41.69254518],[-71.450653477,41.692591332],[-71.450712141,41.692644345],[-71.450778283,41.692693451],[-71.450846504,41.692735788],[-71.450910087,41.692780067],[-71.450983709,41.692823207],[-71.451056633,41.692860904],[-71.451128798,41.69289517],[-71.451206611,41.692924155],[-71.451294867,41.692941756],[-71.45139127,41.692959543],[-71.451484167,41.692974539],[-71.451570654,41.692991476],[-71.451659578,41.693014543],[-71.451737702,41.693036004],[-71.451812041,41.693060802],[-71.451889792,41.6930918],[-71.451962406,41.693137614],[-71.452008315,41.693193068],[-71.452047599,41.693254512],[-71.452072731,41.693308127],[-71.452065543,41.693373965],[-71.452001347,41.693414051],[-71.451993992,41.6934159],[-71.451930356,41.693441693],[-71.451861739,41.693477592],[-71.451800134,41.693520423],[-71.451735876,41.693561194],[-71.451693154,41.693608493],[-71.451654637,41.693664117],[-71.451617827,41.69372251],[-71.451593367,41.693789986],[-71.451590972,41.693849788],[-71.451593978,41.693911079],[-71.451603484,41.693969148],[-71.451612929,41.69402852],[-71.451634089,41.694089544],[-71.451693586,41.694214687],[-71.451719324,41.694274455],[-71.451750648,41.694331641],[-71.451784594,41.694390886],[-71.451808687,41.694447223],[-71.451831136,41.694498734],[-71.45184311,41.694562956],[-71.451851795,41.694618257],[-71.451886502,41.69468162],[-71.451916151,41.694734666],[-71.45195331,41.694781769],[-71.45199666,41.694833769],[-71.45204026,41.69487829],[-71.452095295,41.694932605],[-71.452135108,41.694981104],[-71.452174037,41.69502958],[-71.452223361,41.695089861],[-71.452257713,41.695138952],[-71.45230069,41.695199779],[-71.452331674,41.695265107],[-71.452358328,41.695324875],[-71.452381476,41.695381875],[-71.452417129,41.695444574],[-71.452468565,41.695497446],[-71.452514383,41.695555621],[-71.452563135,41.695607737],[-71.452611095,41.695657086],[-71.452645198,41.695712947],[-71.452753964,41.695896219],[-71.452830928,41.696008218],[-71.452877062,41.696093196],[-71.452885332,41.696134021],[-71.452970338,41.696096436],[-71.452994668,41.696124187],[-71.452909139,41.696166368],[-71.452774314,41.696232908],[-71.452798164,41.696249063],[-71.452802009,41.696248242],[-71.452975191,41.696178859],[-71.453045095,41.69618042],[-71.453120913,41.696190993],[-71.45319853,41.696202208],[-71.453286529,41.696203502],[-71.453359523,41.696193583],[-71.453378747,41.696192836],[-71.453523014,41.696191774],[-71.453615404,41.696196568],[-71.453695923,41.696203118],[-71.453785349,41.696214635],[-71.453858295,41.696229186],[-71.453939823,41.696233038],[-71.454013174,41.696237412],[-71.454088013,41.696249952],[-71.454174724,41.696261421],[-71.454220299,41.696233859],[-71.454284774,41.696232581],[-71.45436264,41.696238421],[-71.454409642,41.696220396],[-71.454490256,41.696223561],[-71.454578036,41.696231645],[-71.454651356,41.696235997],[-71.454756812,41.696232905],[-71.454858886,41.696221579],[-71.454934471,41.696215777],[-71.455016372,41.696210138],[-71.455100011,41.696206557],[-71.45518084,41.696206291],[-71.455257217,41.696202548],[-71.455329171,41.696196698],[-71.455421267,41.696185803],[-71.455495936,41.696180663],[-71.455960045,41.696173341],[-71.455999956,41.696174225],[-71.456081359,41.696182146],[-71.456149635,41.69620001],[-71.456219525,41.696222654],[-71.456297624,41.696244799],[-71.456366785,41.696263097],[-71.456384754,41.696267838],[-71.456475918,41.696281457],[-71.456572948,41.696283598],[-71.456651823,41.696286052],[-71.456718485,41.696299089],[-71.456794179,41.696313045],[-71.456861322,41.696336969],[-71.456929382,41.696360275],[-71.457005557,41.696384408],[-71.457092594,41.696410168],[-71.457168738,41.69643565],[-71.457255589,41.696466167],[-71.457346987,41.696496114],[-71.457441286,41.696522014],[-71.457541048,41.696546681],[-71.457630894,41.696570452],[-71.457706883,41.69660005],[-71.457810425,41.696630778],[-71.457918925,41.696685247],[-71.45809966,41.69686662],[-71.458123779,41.696893843],[-71.458292535,41.696961894],[-71.458340738,41.697020846],[-71.45834068,41.697111522],[-71.458400857,41.697247524],[-71.458449066,41.697297442],[-71.458605794,41.697329218],[-71.458804739,41.697383673],[-71.458930712,41.697459986],[-71.459011898,41.697476824],[-71.459096935,41.69748415],[-71.459174896,41.697486579],[-71.459257465,41.697488392],[-71.459333409,41.697495531],[-71.459363343,41.697496228],[-71.459376502,41.697531977],[-71.459383021,41.697549703],[-71.459385598,41.697576301],[-71.459313333,41.697589653],[-71.459219807,41.697590992],[-71.459127694,41.697578725],[-71.459048367,41.697564723],[-71.458964587,41.697548548],[-71.458863628,41.697530651],[-71.458792387,41.697518208],[-71.458717575,41.697505648],[-71.458633733,41.697490845],[-71.458541837,41.697473134],[-71.45844991,41.697456132],[-71.45836973,41.697440734],[-71.458294189,41.697423418],[-71.458219565,41.697404752],[-71.458140456,41.697385285],[-71.458051307,41.697367003],[-71.457954864,41.697349861],[-71.457859213,41.697336173],[-71.457772594,41.697322695],[-71.457686952,41.697307158],[-71.457596152,41.697294363],[-71.457538151,41.697286589],[-71.457491042,41.697280329],[-71.4574054,41.6972655],[-71.457327936,41.697250858],[-71.45722524,41.697230878],[-71.457146861,41.69721619],[-71.457055633,41.697203967],[-71.456959005,41.69719229],[-71.456860638,41.697177846],[-71.456762335,41.697161366],[-71.456673062,41.697146444],[-71.456591874,41.69713379],[-71.456522589,41.697117915],[-71.456437832,41.697103796],[-71.456377344,41.697118089],[-71.456366197,41.697132652],[-71.456339993,41.697166946],[-71.456277131,41.697218584],[-71.456189114,41.697241122],[-71.456114475,41.697246262],[-71.456033923,41.697240377],[-71.455959299,41.69722171],[-71.45589394,41.697176038],[-71.455855891,41.697128936],[-71.455802652,41.697074669],[-71.455728618,41.697041732],[-71.455708021,41.69704257],[-71.455374381,41.697182927],[-71.455428587,41.697250961],[-71.455427867,41.6972779],[-71.455365532,41.697315976],[-71.455285522,41.697364519],[-71.455219586,41.697402525],[-71.455145473,41.697439636],[-71.45506236,41.697475211],[-71.454976841,41.697503238],[-71.454895326,41.697521112],[-71.454794259,41.6975291],[-71.454701028,41.697545391],[-71.454598503,41.69754375],[-71.454509446,41.697569672],[-71.454434991,41.697615632],[-71.454384789,41.697668257],[-71.454374948,41.697732675],[-71.454421267,41.697777929],[-71.454505993,41.697793445],[-71.454615749,41.697795867],[-71.454690995,41.697797543],[-71.454799138,41.697795184],[-71.454874819,41.697786021],[-71.454949832,41.697772031],[-71.455019631,41.697751797],[-71.455103722,41.697714255],[-71.455169161,41.697689171],[-71.455258187,41.697664644],[-71.455335668,41.697656167],[-71.455419912,41.697661414],[-71.455492551,41.697683465],[-71.45554472,41.697741115],[-71.455543089,41.697804988],[-71.455559521,41.69787207],[-71.455600455,41.697938246],[-71.455653944,41.697985698],[-71.455729748,41.698019367],[-71.455726969,41.698066934],[-71.455678925,41.6981339],[-71.455633782,41.698196178],[-71.455575124,41.698256072],[-71.455498774,41.698304709],[-71.455396775,41.698335108],[-71.455319419,41.698340178],[-71.455234318,41.698334885],[-71.455147605,41.698324102],[-71.455070296,41.698304702],[-71.455004284,41.698275335],[-71.454938458,41.698241211],[-71.454866922,41.69821374],[-71.454797915,41.698191141],[-71.454727837,41.698173253],[-71.454654702,41.698163436],[-71.454577438,41.698165784],[-71.454494495,41.698174144],[-71.454406912,41.698185155],[-71.45432012,41.698199505],[-71.45423204,41.698222728],[-71.454152774,41.69825293],[-71.454091695,41.698282178],[-71.454018557,41.698317962],[-71.453921307,41.698321239],[-71.453836936,41.698320061],[-71.453751681,41.698318129],[-71.453673657,41.698317069],[-71.453581046,41.698317763],[-71.453494551,41.698300828],[-71.453437308,41.698256713],[-71.45338098,41.698212598],[-71.453332597,41.698196524],[-71.45326955,41.698161097],[-71.453187276,41.698130693],[-71.453125874,41.698098743],[-71.453114472,41.698043349],[-71.453115532,41.69797058],[-71.453119151,41.6979033],[-71.453135557,41.697832916],[-71.453163835,41.697760775],[-71.453189614,41.697683099],[-71.453203599,41.697628287],[-71.453215814,41.697572125],[-71.453230714,41.697517337],[-71.453256463,41.697440347],[-71.453283918,41.697366102],[-71.453311435,41.69729053],[-71.453332605,41.697214819],[-71.453348188,41.697142376],[-71.453353484,41.697077155],[-71.453357166,41.697007177],[-71.453383766,41.696932268],[-71.453406768,41.696855231],[-71.453426867,41.69678359],[-71.453449309,41.696721463],[-71.453453812,41.69665423],[-71.453441975,41.696609081],[-71.45339173,41.69659431],[-71.453275503,41.696578582],[-71.452629528,41.698381514],[-71.452370527,41.699094514],[-71.452316527,41.699226514],[-71.452281528,41.699323514],[-71.452263528,41.699371514],[-71.452255527,41.699403515],[-71.451750527,41.700765515],[-71.451494527,41.701458514],[-71.451347528,41.701866514],[-71.451017528,41.702781515],[-71.450942528,41.702989515],[-71.451007527,41.702970515],[-71.451134528,41.702935514],[-71.451164527,41.702925515],[-71.451492527,41.702873515],[-71.452035528,41.702849515],[-71.452103528,41.702846515],[-71.452206528,41.702844515],[-71.452126528,41.703265515]]]]}}"}, +{"type": "precinct", "typeId": 3508, "areaId": 26003, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":342,\"NAME\":\"3508\",\"SHAPE_Length\":0.10879065215184,\"SHAPE_Area\":-0.00033857568313218},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.41907852,41.761893527],[-71.41943552,41.761714527],[-71.419740521,41.761634528],[-71.41996952,41.761674527],[-71.420091521,41.761754527],[-71.42015252,41.761846528],[-71.42019752,41.761994527],[-71.42012152,41.762183527],[-71.41949452,41.763079527],[-71.41903652,41.763558528],[-71.41876152,41.763821527],[-71.41870052,41.763958527],[-71.41871552,41.764084528],[-71.41873052,41.764105528],[-71.41886752,41.764301528],[-71.41889852,41.764301528],[-71.41897152,41.764356528],[-71.419096521,41.764449528],[-71.41934052,41.764609528],[-71.419523521,41.764678527],[-71.419797521,41.764793528],[-71.420285521,41.764884528],[-71.42062052,41.764890528],[-71.42073852,41.764892527],[-71.420941521,41.764896528],[-71.421312521,41.764887528],[-71.421735521,41.764748528],[-71.421913521,41.764638527],[-71.421994521,41.764588528],[-71.422223521,41.764314528],[-71.422376521,41.764052528],[-71.422483521,41.763801527],[-71.422603522,41.763517528],[-71.422743522,41.763287528],[-71.422916522,41.763038528],[-71.422957522,41.762979528],[-71.423186522,41.762802528],[-71.423400522,41.762608528],[-71.423858521,41.762242527],[-71.424400522,41.761939527],[-71.424965522,41.761660527],[-71.425263522,41.761512527],[-71.425530522,41.761372527],[-71.425873522,41.761193527],[-71.426224522,41.761033527],[-71.426248522,41.761025527],[-71.426357522,41.760989527],[-71.426587522,41.760912527],[-71.426774523,41.760839527],[-71.427033523,41.760748527],[-71.427277523,41.760668527],[-71.427735523,41.760554527],[-71.428361523,41.760532527],[-71.428879523,41.760601526],[-71.429500523,41.760688527],[-71.429890523,41.760769527],[-71.429945523,41.760781527],[-71.430298524,41.760876526],[-71.430522524,41.760886527],[-71.430557524,41.760887527],[-71.430817524,41.760796526],[-71.430969524,41.760625527],[-71.431107524,41.760397527],[-71.431275524,41.760054527],[-71.431443524,41.759837527],[-71.431642524,41.759666526],[-71.431932524,41.759506527],[-71.432053524,41.759452526],[-71.432196524,41.759391527],[-71.432374525,41.759336526],[-71.432671524,41.759335526],[-71.432833524,41.759335526],[-71.432916525,41.759340526],[-71.432968524,41.759343526],[-71.433076525,41.759347527],[-71.433186524,41.759392526],[-71.433244524,41.759416526],[-71.433335524,41.759507527],[-71.433395524,41.759621527],[-71.433394524,41.759685526],[-71.433396524,41.759770526],[-71.433350525,41.759917527],[-71.433197525,41.760066527],[-71.433045524,41.760204527],[-71.432980525,41.760321527],[-71.432938525,41.760410526],[-71.432892524,41.760603526],[-71.432891524,41.760900527],[-71.433013525,41.761083527],[-71.433167525,41.761243527],[-71.433348525,41.761380527],[-71.433531524,41.761460526],[-71.433775525,41.761449527],[-71.433958524,41.761370527],[-71.434005525,41.761243527],[-71.434051525,41.760992526],[-71.434069525,41.760944527],[-71.434134524,41.760797526],[-71.434260525,41.760600527],[-71.434387525,41.760399527],[-71.434494525,41.760250526],[-71.434601525,41.760124527],[-71.434845525,41.759982526],[-71.434998525,41.759891527],[-71.435242526,41.759799527],[-71.435593526,41.759731526],[-71.435883526,41.759685526],[-71.436096526,41.759720527],[-71.436249526,41.759766526],[-71.436401525,41.759857527],[-71.436599526,41.759949527],[-71.436904525,41.759983526],[-71.437164526,41.759972527],[-71.437377526,41.759915527],[-71.437561526,41.759835527],[-71.437698526,41.759675526],[-71.437836526,41.759447527],[-71.437927526,41.759184526],[-71.437989526,41.758978526],[-71.438111526,41.758293526],[-71.438218526,41.758110526],[-71.438508526,41.757951526],[-71.438829527,41.757837526],[-71.439118526,41.757837526],[-71.439303526,41.757886526],[-71.439612527,41.758042526],[-71.440096527,41.758085526],[-71.440398527,41.758061526],[-71.440558527,41.757940526],[-71.440574527,41.757920526],[-71.440662527,41.757803526],[-71.440654527,41.757650526],[-71.440551526,41.757427526],[-71.440412527,41.757313526],[-71.440169527,41.757192526],[-71.439854526,41.757028526],[-71.439655526,41.756942526],[-71.439348526,41.756763525],[-71.439196526,41.756615526],[-71.439120526,41.756398526],[-71.439196526,41.756203526],[-71.439288526,41.755952526],[-71.439302526,41.755911526],[-71.439380526,41.755690525],[-71.439456527,41.755427526],[-71.439533527,41.755313526],[-71.439685527,41.755278525],[-71.440280526,41.755302525],[-71.440524527,41.755290526],[-71.440639527,41.755262525],[-71.440799527,41.755222525],[-71.440967527,41.755096526],[-71.441120527,41.754925526],[-71.441152527,41.754779525],[-71.441165527,41.754720525],[-71.441120527,41.754525525],[-71.440998526,41.754263525],[-71.440680527,41.753794526],[-71.440587527,41.753657525],[-71.440566527,41.753627525],[-71.440465527,41.753484525],[-71.440313527,41.753223525],[-71.440191527,41.752926525],[-71.440191527,41.752777525],[-71.440374526,41.752435525],[-71.440619527,41.752161525],[-71.441092527,41.751818525],[-71.441277527,41.751686525],[-71.441451527,41.751562525],[-71.441625527,41.751437524],[-71.441748527,41.751350525],[-71.442326527,41.751052524],[-71.442435527,41.750997525],[-71.443213527,41.750711525],[-71.443732527,41.750632525],[-71.443976528,41.750677524],[-71.444174528,41.750758524],[-71.444418528,41.750883525],[-71.444677528,41.750941525],[-71.444982528,41.750906525],[-71.445593528,41.750758524],[-71.445974528,41.750564524],[-71.446310528,41.750267524],[-71.446569529,41.749913525],[-71.446594529,41.749688524],[-71.446606528,41.749672524],[-71.446615528,41.749535524],[-71.446616528,41.749080524],[-71.446538528,41.748895524],[-71.446421528,41.748614524],[-71.445948528,41.747255524],[-71.445548528,41.746226524],[-71.445459528,41.746045524],[-71.445327528,41.745615523],[-71.445125528,41.745431523],[-71.444891528,41.745220523],[-71.444706527,41.744923523],[-71.444578528,41.744682523],[-71.444535527,41.744606524],[-71.444496527,41.744536523],[-71.444433527,41.744421523],[-71.444359527,41.744217523],[-71.444051527,41.745013523],[-71.443970527,41.745222523],[-71.443475527,41.746509524],[-71.443231527,41.747150524],[-71.443109527,41.747442524],[-71.442849527,41.748024524],[-71.442826527,41.748065524],[-71.442795527,41.748125524],[-71.442573527,41.748076524],[-71.442316527,41.748015524],[-71.442284527,41.748001524],[-71.441643526,41.747893524],[-71.441368527,41.747836524],[-71.441101526,41.747778524],[-71.440277526,41.747607524],[-71.440002527,41.747549524],[-71.439888526,41.747534524],[-71.439774526,41.747509524],[-71.439331526,41.747420524],[-71.439079526,41.747366524],[-71.438835525,41.747313524],[-71.438591526,41.747251524],[-71.438049526,41.747096524],[-71.437561526,41.746926524],[-71.437340525,41.746836524],[-71.436882525,41.746643524],[-71.436638525,41.746545524],[-71.436562525,41.746510524],[-71.436401525,41.746437524],[-71.436333525,41.746402524],[-71.436195525,41.746333524],[-71.436035525,41.746251524],[-71.435997525,41.746229523],[-71.435799525,41.746126524],[-71.435600524,41.746017523],[-71.435371524,41.745882524],[-71.435333525,41.745860523],[-71.435165525,41.745761523],[-71.435135524,41.745739524],[-71.434982524,41.745643523],[-71.434807524,41.745525524],[-71.434624524,41.745403524],[-71.434456524,41.745276523],[-71.434301524,41.745150524],[-71.434288525,41.745140523],[-71.434128524,41.745008524],[-71.433945524,41.744855524],[-71.433933524,41.744844523],[-71.433853524,41.744775524],[-71.433769524,41.744684524],[-71.433632524,41.744537523],[-71.433502524,41.744382523],[-71.433418524,41.744285523],[-71.433350524,41.744201523],[-71.433273524,41.744108523],[-71.433205524,41.744015523],[-71.433083523,41.743828524],[-71.432961524,41.743623523],[-71.432823524,41.743397524],[-71.432495524,41.742836523],[-71.432045524,41.742071523],[-71.431991523,41.741987523],[-71.431953523,41.741916523],[-71.431908524,41.741836523],[-71.431877523,41.741778523],[-71.431854523,41.741711523],[-71.431839523,41.741648523],[-71.431832524,41.741571523],[-71.431831524,41.741490523],[-71.431846523,41.741409523],[-71.431869523,41.741328523],[-71.431908523,41.741255523],[-71.431938523,41.741173523],[-71.431816523,41.741333523],[-71.431641523,41.741553523],[-71.431488523,41.741750523],[-71.431419523,41.741828523],[-71.431366523,41.741892523],[-71.431274523,41.741777523],[-71.431190523,41.741878523],[-71.431137523,41.741942523],[-71.431114523,41.741965523],[-71.431099523,41.741988523],[-71.430847523,41.742259523],[-71.430512523,41.742640523],[-71.430183523,41.743025524],[-71.429772522,41.743403523],[-71.429687522,41.743486523],[-71.429426523,41.743720523],[-71.428734522,41.744343523],[-71.428398523,41.744639524],[-71.427872522,41.745091524],[-71.427429522,41.745474524],[-71.427239522,41.745649524],[-71.426468522,41.746287524],[-71.426346522,41.746371524],[-71.425331521,41.747041524],[-71.425186521,41.747134524],[-71.424568521,41.747439524],[-71.424156521,41.747664525],[-71.423897521,41.747827525],[-71.423569521,41.748028524],[-71.42309652,41.748286525],[-71.42257752,41.748616525],[-71.42251652,41.748645525],[-71.422447521,41.748691524],[-71.42200552,41.748943524],[-71.42182952,41.749069525],[-71.42115852,41.749533525],[-71.42105352,41.749588525],[-71.42076952,41.749740525],[-71.42040352,41.749932525],[-71.42013652,41.750064525],[-71.419685519,41.750267525],[-71.419456519,41.750371525],[-71.41899952,41.750587525],[-71.41883852,41.750668525],[-71.418793519,41.750691525],[-71.418305519,41.750953525],[-71.418091519,41.751070525],[-71.417458519,41.751471526],[-71.416939519,41.751838526],[-71.416466518,41.752172526],[-71.416878519,41.752438526],[-71.417092519,41.752649525],[-71.417122519,41.752703525],[-71.417191519,41.752827526],[-71.417274519,41.753024526],[-71.417374519,41.753152525],[-71.417557519,41.753252525],[-71.417755519,41.753351525],[-71.417908519,41.753465525],[-71.417954519,41.753590526],[-71.418014519,41.753918526],[-71.418038519,41.754143526],[-71.418053519,41.754385526],[-71.41813752,41.754780526],[-71.41815952,41.754874526],[-71.41829752,41.755727526],[-71.418320519,41.755893526],[-71.41948052,41.755774526],[-71.41967852,41.755752526],[-71.41996052,41.755723526],[-71.42034952,41.755674526],[-71.420891521,41.755632526],[-71.42122652,41.755611526],[-71.421239521,41.755682526],[-71.421028521,41.755732526],[-71.42095252,41.755738526],[-71.42088352,41.755762526],[-71.42080752,41.755804526],[-71.42066952,41.755888526],[-71.42060152,41.755935526],[-71.420540521,41.755990526],[-71.42047152,41.756041526],[-71.42042552,41.756083526],[-71.420402521,41.756101526],[-71.42037252,41.756124526],[-71.42022752,41.756213526],[-71.42009752,41.756319526],[-71.42004452,41.756379526],[-71.41999852,41.756425527],[-71.41994552,41.756485527],[-71.41987652,41.756545526],[-71.41980852,41.756609526],[-71.41976252,41.756655526],[-71.41970152,41.756724526],[-71.41967852,41.756760526],[-71.41965552,41.756788526],[-71.41964752,41.756865526],[-71.41964752,41.757094526],[-71.41967852,41.757206527],[-71.41970852,41.757354526],[-71.41973952,41.757426526],[-71.41980752,41.757564526],[-71.41983852,41.757640526],[-71.41984652,41.757711527],[-71.41983852,41.757784527],[-71.41983852,41.757847527],[-71.41984552,41.757919527],[-71.41986152,41.757977527],[-71.41992252,41.758102527],[-71.41995252,41.758155527],[-71.41999052,41.758208526],[-71.420013521,41.758266526],[-71.420052521,41.758333527],[-71.42008252,41.758391527],[-71.42012052,41.758444527],[-71.42016652,41.758493527],[-71.420227521,41.758532527],[-71.42028852,41.758648527],[-71.420303521,41.758715527],[-71.420303521,41.758778527],[-71.42035752,41.758894527],[-71.42037952,41.758957527],[-71.42041052,41.759015527],[-71.420441521,41.759077527],[-71.42044852,41.759140526],[-71.42044852,41.759198526],[-71.42046352,41.759252527],[-71.42049452,41.759305527],[-71.420517521,41.759359527],[-71.420555521,41.759408527],[-71.42064752,41.759523527],[-71.42068552,41.759563527],[-71.42073852,41.759616527],[-71.42079952,41.759646526],[-71.420868521,41.759667527],[-71.420891521,41.759684527],[-71.42091452,41.759711527],[-71.420929521,41.759837527],[-71.420929521,41.759891527],[-71.420921521,41.759954527],[-71.42079952,41.760038527],[-71.42076152,41.760092527],[-71.420746521,41.760151527],[-71.420746521,41.760214527],[-71.42078452,41.760267527],[-71.420891521,41.760355527],[-71.420929521,41.760409527],[-71.420967521,41.760475527],[-71.421020521,41.760528527],[-71.421059521,41.760595527],[-71.42107452,41.760658527],[-71.421066521,41.760725527],[-71.421021521,41.760785527],[-71.42097552,41.760831527],[-71.420921521,41.760877527],[-71.420868521,41.760919527],[-71.420807521,41.760956527],[-71.420715521,41.760944527],[-71.42063952,41.760933527],[-71.42056352,41.760916527],[-71.420494521,41.760882527],[-71.420418521,41.760870527],[-71.42034952,41.760907527],[-71.420303521,41.760962527],[-71.42028852,41.761030527],[-71.42028852,41.761093527],[-71.42027352,41.761228527],[-71.42025852,41.761283528],[-71.42025052,41.761301528],[-71.420227521,41.761342527],[-71.42017452,41.761384527],[-71.42015152,41.761429527],[-71.42013552,41.761524527],[-71.42008252,41.761611528],[-71.41998652,41.761563527],[-71.41971652,41.761523527],[-71.41930752,41.761653528],[-71.41901952,41.761787528],[-71.41907852,41.761893527]]]]}}"}, +{"type": "precinct", "typeId": 3509, "areaId": 25982, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":321,\"NAME\":\"3509\",\"SHAPE_Length\":0.11808304438976,\"SHAPE_Area\":-0.0003164538285635},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.435333525,41.745860523],[-71.435371524,41.745882524],[-71.435600524,41.746017523],[-71.435799525,41.746126524],[-71.435997525,41.746229523],[-71.436035525,41.746251524],[-71.436195525,41.746333524],[-71.436333525,41.746402524],[-71.436401525,41.746437524],[-71.436562525,41.746510524],[-71.436638525,41.746545524],[-71.436882525,41.746643524],[-71.437340525,41.746836524],[-71.437561526,41.746926524],[-71.438049526,41.747096524],[-71.438591526,41.747251524],[-71.438835525,41.747313524],[-71.439079526,41.747366524],[-71.439331526,41.747420524],[-71.439774526,41.747509524],[-71.439888526,41.747534524],[-71.440002527,41.747549524],[-71.440277526,41.747607524],[-71.441101526,41.747778524],[-71.441368527,41.747836524],[-71.441643526,41.747893524],[-71.442284527,41.748001524],[-71.442316527,41.748015524],[-71.442573527,41.748076524],[-71.442795527,41.748125524],[-71.442826527,41.748065524],[-71.442849527,41.748024524],[-71.443109527,41.747442524],[-71.443231527,41.747150524],[-71.443475527,41.746509524],[-71.443970527,41.745222523],[-71.444051527,41.745013523],[-71.444359527,41.744217523],[-71.444298527,41.744063524],[-71.444261527,41.743963523],[-71.444186527,41.743832523],[-71.444111527,41.743572523],[-71.444095528,41.743520523],[-71.444044527,41.743357523],[-71.443974527,41.742954523],[-71.443935527,41.742639523],[-71.443935527,41.742609523],[-71.443932527,41.742302523],[-71.443906527,41.741932523],[-71.443940527,41.741651522],[-71.443937527,41.741301522],[-71.443945527,41.741204522],[-71.443963527,41.741188523],[-71.443966527,41.741166523],[-71.444029527,41.740904522],[-71.444116527,41.740644523],[-71.444291527,41.740404522],[-71.444684527,41.740163522],[-71.445303528,41.740053522],[-71.446071527,41.739983523],[-71.446198528,41.739987523],[-71.446242528,41.739902522],[-71.446334528,41.739734522],[-71.446631528,41.739236522],[-71.446646528,41.739209522],[-71.446937528,41.738748522],[-71.447188528,41.738387522],[-71.447440528,41.738021522],[-71.447707528,41.737669521],[-71.447806528,41.737536522],[-71.447838528,41.737498522],[-71.447868528,41.737448522],[-71.448074529,41.737187522],[-71.448456528,41.736711522],[-71.448860528,41.736243522],[-71.449333528,41.735724521],[-71.449822529,41.735218521],[-71.450340528,41.734721522],[-71.450707529,41.734384521],[-71.451088529,41.734047521],[-71.451477529,41.733719521],[-71.451943529,41.733345521],[-71.45242353,41.732983521],[-71.452896529,41.73261752],[-71.45340053,41.732242521],[-71.45485753,41.73115752],[-71.456345531,41.73004052],[-71.456398531,41.72999852],[-71.458267531,41.728603519],[-71.458412532,41.72849652],[-71.458435531,41.72847852],[-71.458511531,41.728427519],[-71.458542531,41.72839952],[-71.459709531,41.727527519],[-71.460454532,41.726973519],[-71.461373532,41.726289519],[-71.460487532,41.72685852],[-71.460390532,41.72691952],[-71.460243532,41.727011519],[-71.459999531,41.72717052],[-71.459740531,41.727301519],[-71.459534531,41.72738752],[-71.459312531,41.727459519],[-71.459084531,41.72751852],[-71.458885531,41.72755852],[-71.458671531,41.727590519],[-71.458466531,41.727608519],[-71.458290531,41.72761652],[-71.457932531,41.727606519],[-71.457786531,41.727591519],[-71.45763453,41.727572519],[-71.457489531,41.727552519],[-71.457329531,41.727515519],[-71.457176531,41.72747852],[-71.45703153,41.727431519],[-71.45670353,41.727339519],[-71.45665853,41.72732752],[-71.45594853,41.727099519],[-71.45539953,41.726908519],[-71.454903529,41.72674352],[-71.45484253,41.726717519],[-71.45488253,41.72658552],[-71.45489553,41.726540519],[-71.45491053,41.726495519],[-71.45507853,41.726014519],[-71.45531453,41.72530252],[-71.45539953,41.725143519],[-71.45547553,41.724984519],[-71.45554453,41.724888519],[-71.45568153,41.724380519],[-71.45578853,41.724031519],[-71.45591753,41.723578519],[-71.45605553,41.723161518],[-71.45610753,41.723014519],[-71.45615453,41.722884519],[-71.45629953,41.722597518],[-71.45635253,41.722502518],[-71.45637553,41.722453519],[-71.456482531,41.722224518],[-71.45654353,41.722020519],[-71.45654353,41.721993518],[-71.45696353,41.721854518],[-71.457008531,41.721836518],[-71.457181531,41.721793518],[-71.45723153,41.721721518],[-71.45723153,41.721697518],[-71.45723253,41.721692519],[-71.457275531,41.721415518],[-71.45730653,41.721225519],[-71.45735253,41.721147519],[-71.45740553,41.721092518],[-71.45744353,41.721055518],[-71.45749753,41.721000518],[-71.457764531,41.720675518],[-71.458000531,41.720404518],[-71.458092531,41.720303518],[-71.458153531,41.720257518],[-71.458191531,41.720224518],[-71.458275531,41.720092518],[-71.458382531,41.719828518],[-71.458427531,41.719706518],[-71.45847353,41.719597518],[-71.45849653,41.719479518],[-71.45851153,41.719389518],[-71.458504531,41.719339518],[-71.458427531,41.719319518],[-71.457924531,41.719221518],[-71.45752753,41.719149518],[-71.45729153,41.719095518],[-71.45706953,41.719046518],[-71.45687953,41.719023518],[-71.45655853,41.719030518],[-71.45635253,41.719025518],[-71.45618453,41.719020518],[-71.45610853,41.719012518],[-71.45606253,41.719009518],[-71.45596353,41.718966517],[-71.45572753,41.718836518],[-71.45553653,41.718727518],[-71.455376529,41.718573518],[-71.45528453,41.718422518],[-71.455216529,41.718325518],[-71.45515553,41.718272518],[-71.45507153,41.718260518],[-71.45497953,41.718276518],[-71.454887529,41.718336518],[-71.45481953,41.718401517],[-71.454788529,41.718496518],[-71.45481953,41.718581518],[-71.45490253,41.718705518],[-71.455002529,41.718847518],[-71.455101529,41.718975518],[-71.45520853,41.719081518],[-71.45536053,41.719177518],[-71.45554453,41.719263518],[-71.45569653,41.719332518],[-71.455879529,41.719418518],[-71.45597853,41.719488518],[-71.45600153,41.719546518],[-71.45606253,41.719612518],[-71.45617753,41.719641518],[-71.45629153,41.719688518],[-71.45635253,41.719723518],[-71.45640653,41.719758518],[-71.45649053,41.719891518],[-71.45654353,41.720003518],[-71.45658153,41.720128518],[-71.45658153,41.720182518],[-71.45644453,41.720464519],[-71.45639053,41.720564518],[-71.45634453,41.720655518],[-71.45630753,41.720764518],[-71.45623853,41.720716518],[-71.45609353,41.720670518],[-71.45598653,41.720645518],[-71.45555153,41.720546518],[-71.45514753,41.720465519],[-71.455063529,41.720449518],[-71.454735529,41.720411518],[-71.454422529,41.720431518],[-71.454376529,41.720432518],[-71.454064529,41.720488518],[-71.453987529,41.720503519],[-71.453674529,41.720568518],[-71.453453529,41.720578518],[-71.453270529,41.720474518],[-71.453171529,41.720395518],[-71.453102529,41.720342518],[-71.452866529,41.720252518],[-71.452820529,41.720240518],[-71.452560529,41.720187518],[-71.452446528,41.720194518],[-71.452324529,41.720197518],[-71.452019528,41.720257518],[-71.451759529,41.720380518],[-71.451576528,41.720420518],[-71.451546529,41.720429518],[-71.451401528,41.720446519],[-71.451294529,41.720457518],[-71.451149528,41.720492518],[-71.450973528,41.720532518],[-71.450683528,41.720574518],[-71.450446528,41.720583519],[-71.450394528,41.720584518],[-71.450165528,41.720585518],[-71.449890528,41.720528518],[-71.449806528,41.720502519],[-71.449463527,41.720384519],[-71.449333528,41.720337518],[-71.449158528,41.720278518],[-71.449059527,41.720253518],[-71.448947528,41.720227519],[-71.448753528,41.720183518],[-71.448402528,41.720114519],[-71.448059527,41.720035519],[-71.447800527,41.719996519],[-71.447525527,41.719943518],[-71.447415527,41.719912518],[-71.447258527,41.719868518],[-71.447037527,41.719796518],[-71.446877527,41.719727518],[-71.446350527,41.719626519],[-71.446602527,41.718945519],[-71.446823527,41.718328518],[-71.446991527,41.717843518],[-71.447075527,41.717309517],[-71.447143526,41.716750518],[-71.447289527,41.716283518],[-71.447311527,41.716210518],[-71.447516527,41.715644518],[-71.447703527,41.715122518],[-71.447815527,41.714808518],[-71.447928527,41.714513517],[-71.448151527,41.713941517],[-71.448229527,41.713695517],[-71.448398527,41.713165517],[-71.448456527,41.712984517],[-71.448562527,41.712703517],[-71.448723527,41.712276516],[-71.448764527,41.712181516],[-71.448906527,41.711768517],[-71.448921527,41.711646517],[-71.448830527,41.711594516],[-71.448784527,41.711572517],[-71.448601527,41.711490517],[-71.448326527,41.711388517],[-71.448189527,41.711364516],[-71.448013527,41.711386517],[-71.447946527,41.711398517],[-71.447884526,41.711410517],[-71.447861527,41.711475517],[-71.447830527,41.711570517],[-71.447754527,41.711770516],[-71.447221526,41.713206517],[-71.447033527,41.713713517],[-71.446968526,41.713889517],[-71.446732526,41.714552518],[-71.446682527,41.714690518],[-71.446459526,41.715305517],[-71.446028527,41.716498518],[-71.445199526,41.718793518],[-71.444988526,41.719377518],[-71.444816526,41.719852518],[-71.444765526,41.719995519],[-71.444672526,41.720252518],[-71.444572526,41.720524519],[-71.444096526,41.721829519],[-71.443870526,41.722448519],[-71.443764526,41.722739519],[-71.443639526,41.723043519],[-71.443604526,41.723139519],[-71.443576526,41.723217519],[-71.443559526,41.723264519],[-71.442741526,41.72549452],[-71.441727526,41.72828952],[-71.441696526,41.72837052],[-71.441666525,41.72844852],[-71.441294525,41.72946552],[-71.441208526,41.72970152],[-71.440392526,41.731956521],[-71.439903526,41.733290521],[-71.439415526,41.734638522],[-71.438393525,41.737431522],[-71.438011525,41.738477522],[-71.437752525,41.739203523],[-71.437612525,41.739589523],[-71.436953525,41.741407523],[-71.436783525,41.741876523],[-71.436763525,41.741912523],[-71.436752525,41.741954523],[-71.436737525,41.741990523],[-71.436300524,41.743200523],[-71.435890524,41.744336524],[-71.435410524,41.745639524],[-71.435364524,41.745775524],[-71.435333525,41.745860523]]]]}}"}, +{"type": "precinct", "typeId": 3510, "areaId": 25983, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":322,\"NAME\":\"3510\",\"SHAPE_Length\":0.055537111093773,\"SHAPE_Area\":-0.000153880577256},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.448921527,41.711646517],[-71.449104527,41.711700517],[-71.449341528,41.711772516],[-71.449501527,41.711827517],[-71.449974527,41.711997517],[-71.450180528,41.712074517],[-71.450676528,41.712252517],[-71.450851528,41.712320517],[-71.451134528,41.712418517],[-71.452019528,41.712737517],[-71.452400528,41.712877517],[-71.453926529,41.713430517],[-71.454140529,41.713507517],[-71.454819529,41.713762517],[-71.454956529,41.713809517],[-71.455826529,41.714142517],[-71.45588753,41.714167517],[-71.456093529,41.714244517],[-71.45635253,41.714342517],[-71.45677953,41.714499517],[-71.45690953,41.714555517],[-71.45766453,41.714850517],[-71.458816531,41.715302517],[-71.459335531,41.715508517],[-71.459580531,41.715606517],[-71.460533531,41.715982517],[-71.461052531,41.716178517],[-71.461327531,41.716289517],[-71.462006531,41.716531517],[-71.462135532,41.716578517],[-71.462372531,41.716703517],[-71.462570532,41.716780518],[-71.462700532,41.716813517],[-71.462768532,41.716834517],[-71.462837532,41.716860517],[-71.462890532,41.716872517],[-71.463013532,41.716906517],[-71.463104532,41.716922517],[-71.463157532,41.716930517],[-71.463135532,41.716822517],[-71.463150532,41.716471517],[-71.463158532,41.716398517],[-71.463226532,41.716100517],[-71.463234532,41.716077517],[-71.463394532,41.715569517],[-71.463440532,41.715334517],[-71.463470532,41.715167517],[-71.463608532,41.714542517],[-71.463684532,41.714208516],[-71.463707532,41.714094516],[-71.463776532,41.713800516],[-71.463890532,41.713289517],[-71.463951533,41.712981516],[-71.464096532,41.712253517],[-71.464111532,41.712194517],[-71.464210532,41.711774516],[-71.464279532,41.711461516],[-71.464401532,41.710819516],[-71.464432532,41.710679516],[-71.464432532,41.710562516],[-71.464424532,41.710450516],[-71.464417532,41.710238516],[-71.464355532,41.709951516],[-71.464287532,41.709746516],[-71.464104532,41.709227516],[-71.463936532,41.708753516],[-71.463829532,41.708472516],[-71.463623531,41.707895515],[-71.463562531,41.707717515],[-71.463333531,41.707096515],[-71.463135531,41.706542516],[-71.463067532,41.706347516],[-71.462998531,41.706144515],[-71.462936532,41.705922515],[-71.462845531,41.705598515],[-71.462784531,41.705392515],[-71.462692531,41.705101515],[-71.462654531,41.704994515],[-71.462601531,41.704860515],[-71.462441531,41.704607515],[-71.462143531,41.704275515],[-71.461716531,41.703830515],[-71.46167053,41.703776514],[-71.461426531,41.703494515],[-71.46135953,41.703367514],[-71.46105253,41.703650515],[-71.461014531,41.703642515],[-71.46093053,41.703801515],[-71.46083153,41.703939515],[-71.460808531,41.703944515],[-71.460732531,41.703869515],[-71.460724531,41.703729515],[-71.460709531,41.703671515],[-71.460594531,41.703619514],[-71.460419531,41.703628515],[-71.46025853,41.703654515],[-71.46008353,41.703657514],[-71.45988553,41.703590515],[-71.459602531,41.703528515],[-71.45913753,41.703520514],[-71.45886253,41.703548515],[-71.458745529,41.703568515],[-71.458610529,41.703590515],[-71.45830553,41.703637514],[-71.45809953,41.703614515],[-71.45784753,41.703525515],[-71.45772953,41.703502514],[-71.457596529,41.703476515],[-71.457290529,41.703406515],[-71.457054529,41.703357515],[-71.456823529,41.703332515],[-71.456741529,41.703324515],[-71.456474529,41.703307514],[-71.456373529,41.703313515],[-71.456360529,41.703314515],[-71.456261529,41.703316515],[-71.456070529,41.703270515],[-71.455971529,41.703155515],[-71.455994529,41.703047515],[-71.456078529,41.702964515],[-71.456055529,41.702883515],[-71.455963529,41.702791515],[-71.455849529,41.702771515],[-71.455765529,41.702773515],[-71.455666529,41.702788515],[-71.455589529,41.702830515],[-71.455521529,41.702886515],[-71.455460529,41.702928515],[-71.455414529,41.702974514],[-71.455383529,41.703024515],[-71.455368529,41.703092514],[-71.455330529,41.703115515],[-71.455238528,41.703108515],[-71.455162529,41.703150514],[-71.455093529,41.703210515],[-71.455017529,41.703248514],[-71.454865528,41.703382515],[-71.454811528,41.703482515],[-71.454777529,41.703531515],[-71.454690528,41.702965515],[-71.454659529,41.702765515],[-71.454620529,41.702811515],[-71.454437528,41.703116515],[-71.454384528,41.703221515],[-71.454224528,41.703490515],[-71.454109528,41.703704515],[-71.453834528,41.704178515],[-71.453644528,41.704516515],[-71.453430528,41.704835515],[-71.453285528,41.704793515],[-71.453003528,41.704741515],[-71.452362528,41.704692515],[-71.451881527,41.704634515],[-71.451996528,41.703956515],[-71.452042528,41.703708515],[-71.452118527,41.703328515],[-71.452126528,41.703265515],[-71.452206528,41.702844515],[-71.452103528,41.702846515],[-71.452035528,41.702849515],[-71.451492527,41.702873515],[-71.451164527,41.702925515],[-71.451134528,41.702935514],[-71.451007527,41.702970515],[-71.450942528,41.702989515],[-71.450912527,41.703070515],[-71.450860527,41.703217515],[-71.450581527,41.703994515],[-71.450381527,41.704551516],[-71.449982527,41.705661516],[-71.449341527,41.707404516],[-71.448792527,41.708920517],[-71.448517527,41.709678517],[-71.448341527,41.710163517],[-71.447917527,41.711322516],[-71.447884526,41.711410517],[-71.447946527,41.711398517],[-71.448013527,41.711386517],[-71.448189527,41.711364516],[-71.448326527,41.711388517],[-71.448601527,41.711490517],[-71.448784527,41.711572517],[-71.448830527,41.711594516],[-71.448921527,41.711646517]]]]}}"}, +{"type": "precinct", "typeId": 3511, "areaId": 26005, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":344,\"NAME\":\"3511\",\"SHAPE_Length\":0.1453746558817,\"SHAPE_Area\":-0.00036077522015032},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.446198528,41.739987523],[-71.446313528,41.739994522],[-71.446375528,41.739995522],[-71.446449528,41.739994522],[-71.447059528,41.740002522],[-71.447377528,41.740012522],[-71.447802529,41.740026523],[-71.449256529,41.740024523],[-71.449953529,41.740038522],[-71.450563529,41.739934522],[-71.451278529,41.739712522],[-71.451748529,41.739464522],[-71.452097529,41.739125522],[-71.45234153,41.738858521],[-71.45253353,41.738571522],[-71.452760529,41.738271522],[-71.45298653,41.738101521],[-71.45317853,41.737971522],[-71.45349253,41.737697522],[-71.45373653,41.737436521],[-71.45384153,41.737201521],[-71.45391153,41.736940522],[-71.45389353,41.736679521],[-71.45382453,41.736483521],[-71.45375453,41.736248521],[-71.45358053,41.735935521],[-71.45342453,41.735635521],[-71.45321553,41.735296521],[-71.45297153,41.734773521],[-71.45285053,41.734343521],[-71.45286753,41.734095521],[-71.452937529,41.733873521],[-71.45300753,41.733716521],[-71.453129529,41.73353452],[-71.453286529,41.73333852],[-71.453460529,41.733195521],[-71.45366953,41.733012521],[-71.45389653,41.73289552],[-71.45441953,41.732634521],[-71.45490753,41.732451521],[-71.45534253,41.732373521],[-71.456007531,41.73236652],[-71.45609653,41.73237252],[-71.456186531,41.73237252],[-71.457588531,41.73235052],[-71.459973531,41.73231352],[-71.460211532,41.73230552],[-71.460602532,41.73230452],[-71.460642532,41.73235052],[-71.464317533,41.73227452],[-71.466663534,41.73222652],[-71.466840534,41.73222252],[-71.466953534,41.73222052],[-71.467142534,41.73221652],[-71.467533534,41.73220852],[-71.467958534,41.73219952],[-71.469651535,41.73216452],[-71.469803535,41.73216252],[-71.474762537,41.73202952],[-71.474758536,41.73201052],[-71.475580537,41.73198152],[-71.475578537,41.73200652],[-71.476952538,41.73197152],[-71.477013538,41.73196952],[-71.476929537,41.731548519],[-71.476898538,41.73132852],[-71.476868537,41.73099552],[-71.476868537,41.730784519],[-71.476875537,41.73061752],[-71.476890537,41.730085519],[-71.476898538,41.729603519],[-71.476883537,41.729383519],[-71.476875537,41.72929752],[-71.476792537,41.728980519],[-71.476730537,41.728823519],[-71.476647537,41.728685519],[-71.476517537,41.728450519],[-71.476402537,41.728281519],[-71.476128537,41.727918519],[-71.476006537,41.727808519],[-71.475807537,41.727614519],[-71.475746537,41.727570519],[-71.475410537,41.727303519],[-71.474968537,41.727051519],[-71.474724536,41.726917519],[-71.474090536,41.726552518],[-71.474007536,41.726500519],[-71.473831536,41.726395518],[-71.473663536,41.726291519],[-71.473396536,41.726135519],[-71.472708535,41.725709519],[-71.472342535,41.725489519],[-71.472369536,41.725474519],[-71.472466536,41.725412519],[-71.472490536,41.725400519],[-71.472496535,41.725398519],[-71.472527536,41.725343518],[-71.472519535,41.725275519],[-71.472481535,41.725227518],[-71.472412536,41.725192518],[-71.472389536,41.725139519],[-71.472420535,41.725106519],[-71.472481535,41.725074518],[-71.472473536,41.725002519],[-71.472443535,41.724944519],[-71.472466536,41.724885519],[-71.472595535,41.724796518],[-71.472610535,41.724738518],[-71.472580536,41.724671519],[-71.472534535,41.724613519],[-71.472504536,41.724564518],[-71.472519535,41.724496519],[-71.472572535,41.724432518],[-71.472603536,41.724387518],[-71.472633535,41.724332518],[-71.472664536,41.724273518],[-71.472694535,41.724218518],[-71.472778536,41.724108519],[-71.472855536,41.724070519],[-71.472938536,41.724051519],[-71.473015536,41.724040518],[-71.473061535,41.724052519],[-71.473084536,41.724102518],[-71.473076536,41.724169519],[-71.473053536,41.724233518],[-71.473045536,41.724291518],[-71.473053536,41.724354518],[-71.473091536,41.724363519],[-71.473160535,41.724321519],[-71.473213536,41.724261518],[-71.473259536,41.724192518],[-71.473290536,41.724138518],[-71.473305536,41.724065518],[-71.473282536,41.723994519],[-71.473266536,41.723922518],[-71.473236535,41.723846518],[-71.473198535,41.723775518],[-71.473121535,41.723650518],[-71.473076536,41.723602519],[-71.473023535,41.723558518],[-71.472961535,41.723523518],[-71.472801536,41.723464518],[-71.472748535,41.723429519],[-71.472671535,41.723385518],[-71.472595535,41.723337518],[-71.472542535,41.723298518],[-71.472496535,41.723250518],[-71.472443535,41.723197518],[-71.472382535,41.723153518],[-71.472328535,41.723109518],[-71.472275536,41.723070518],[-71.472199536,41.723017518],[-71.472122536,41.722974518],[-71.472038535,41.722940518],[-71.471955535,41.722901518],[-71.471832535,41.722841518],[-71.471733535,41.722811518],[-71.471680535,41.722799518],[-71.471603535,41.722773518],[-71.471535535,41.722757518],[-71.471443535,41.722741518],[-71.471268535,41.722722518],[-71.471191535,41.722701518],[-71.471115535,41.722689519],[-71.471039535,41.722668519],[-71.470947535,41.722634518],[-71.470863535,41.722591519],[-71.470711535,41.722504518],[-71.470642534,41.722461518],[-71.470573535,41.722422518],[-71.470505534,41.722387518],[-71.470352534,41.722300518],[-71.470268535,41.722262518],[-71.470215534,41.722231518],[-71.470146535,41.722197518],[-71.470049535,41.722128518],[-71.470016535,41.722105518],[-71.469948535,41.722053518],[-71.469879535,41.721995518],[-71.469818535,41.721938518],[-71.469681535,41.721806518],[-71.469612534,41.721736518],[-71.469490534,41.721603518],[-71.469368535,41.721480518],[-71.469307534,41.721422518],[-71.469238534,41.721365518],[-71.469177535,41.721308518],[-71.469124534,41.721251518],[-71.469048534,41.721144518],[-71.469002535,41.721064518],[-71.469002535,41.721001518],[-71.469063534,41.721000518],[-71.469101534,41.720981518],[-71.469109534,41.720918518],[-71.469116535,41.720850518],[-71.469116535,41.720792518],[-71.469124534,41.720728518],[-71.469154534,41.720669518],[-71.469192534,41.720614518],[-71.469238534,41.720568518],[-71.469284534,41.720527517],[-71.469345534,41.720480518],[-71.469383534,41.720421518],[-71.469414534,41.720362518],[-71.469452534,41.720293517],[-71.469475534,41.720261518],[-71.469490534,41.720234517],[-71.469521534,41.720170518],[-71.469559534,41.720102518],[-71.469604535,41.720038517],[-71.469642535,41.719970518],[-71.469688534,41.719906517],[-71.469720535,41.719857518],[-71.469432534,41.719772518],[-71.469382534,41.719757518],[-71.469147534,41.719688517],[-71.469246534,41.719546518],[-71.469597534,41.719007517],[-71.469917535,41.718451518],[-71.470138534,41.718014517],[-71.470149535,41.717990517],[-71.470345535,41.717568517],[-71.470528534,41.717123517],[-71.470688534,41.716696517],[-71.470734535,41.716555517],[-71.470735535,41.716553517],[-71.470825534,41.716274516],[-71.470840534,41.716215516],[-71.470863534,41.716143517],[-71.470818534,41.716144517],[-71.470551534,41.716145517],[-71.470512534,41.716146517],[-71.470052535,41.716150517],[-71.469841534,41.716151517],[-71.469620534,41.716161517],[-71.469422534,41.716174517],[-71.469185534,41.716192517],[-71.469055534,41.716204517],[-71.468875534,41.716227517],[-71.468208533,41.716330517],[-71.468086533,41.716338517],[-71.467612534,41.716408517],[-71.466705533,41.716543517],[-71.466446533,41.716575517],[-71.465737533,41.716667517],[-71.465560533,41.716692517],[-71.464066533,41.716901517],[-71.463959532,41.716912517],[-71.463859532,41.716919517],[-71.463760532,41.716930517],[-71.463653532,41.716933518],[-71.463547532,41.716939517],[-71.463440532,41.716942517],[-71.463333532,41.716944517],[-71.463157532,41.716930517],[-71.463104532,41.716922517],[-71.463013532,41.716906517],[-71.462890532,41.716872517],[-71.462837532,41.716860517],[-71.462768532,41.716834517],[-71.462700532,41.716813517],[-71.462570532,41.716780518],[-71.462372531,41.716703517],[-71.462135532,41.716578517],[-71.462006531,41.716531517],[-71.461327531,41.716289517],[-71.461052531,41.716178517],[-71.460533531,41.715982517],[-71.459580531,41.715606517],[-71.459335531,41.715508517],[-71.458816531,41.715302517],[-71.45766453,41.714850517],[-71.45690953,41.714555517],[-71.45677953,41.714499517],[-71.45635253,41.714342517],[-71.456093529,41.714244517],[-71.45588753,41.714167517],[-71.455826529,41.714142517],[-71.454956529,41.713809517],[-71.454819529,41.713762517],[-71.454140529,41.713507517],[-71.453926529,41.713430517],[-71.452400528,41.712877517],[-71.452019528,41.712737517],[-71.451134528,41.712418517],[-71.450851528,41.712320517],[-71.450676528,41.712252517],[-71.450180528,41.712074517],[-71.449974527,41.711997517],[-71.449501527,41.711827517],[-71.449341528,41.711772516],[-71.449104527,41.711700517],[-71.448921527,41.711646517],[-71.448906527,41.711768517],[-71.448764527,41.712181516],[-71.448723527,41.712276516],[-71.448562527,41.712703517],[-71.448456527,41.712984517],[-71.448398527,41.713165517],[-71.448229527,41.713695517],[-71.448151527,41.713941517],[-71.447928527,41.714513517],[-71.447815527,41.714808518],[-71.447703527,41.715122518],[-71.447516527,41.715644518],[-71.447311527,41.716210518],[-71.447289527,41.716283518],[-71.447143526,41.716750518],[-71.447075527,41.717309517],[-71.446991527,41.717843518],[-71.446823527,41.718328518],[-71.446602527,41.718945519],[-71.446350527,41.719626519],[-71.446877527,41.719727518],[-71.447037527,41.719796518],[-71.447258527,41.719868518],[-71.447415527,41.719912518],[-71.447525527,41.719943518],[-71.447800527,41.719996519],[-71.448059527,41.720035519],[-71.448402528,41.720114519],[-71.448753528,41.720183518],[-71.448947528,41.720227519],[-71.449059527,41.720253518],[-71.449158528,41.720278518],[-71.449333528,41.720337518],[-71.449463527,41.720384519],[-71.449806528,41.720502519],[-71.449890528,41.720528518],[-71.450165528,41.720585518],[-71.450394528,41.720584518],[-71.450446528,41.720583519],[-71.450683528,41.720574518],[-71.450973528,41.720532518],[-71.451149528,41.720492518],[-71.451294529,41.720457518],[-71.451401528,41.720446519],[-71.451546529,41.720429518],[-71.451576528,41.720420518],[-71.451759529,41.720380518],[-71.452019528,41.720257518],[-71.452324529,41.720197518],[-71.452446528,41.720194518],[-71.452560529,41.720187518],[-71.452820529,41.720240518],[-71.452866529,41.720252518],[-71.453102529,41.720342518],[-71.453171529,41.720395518],[-71.453270529,41.720474518],[-71.453453529,41.720578518],[-71.453674529,41.720568518],[-71.453987529,41.720503519],[-71.454064529,41.720488518],[-71.454376529,41.720432518],[-71.454422529,41.720431518],[-71.454735529,41.720411518],[-71.455063529,41.720449518],[-71.45514753,41.720465519],[-71.45555153,41.720546518],[-71.45598653,41.720645518],[-71.45609353,41.720670518],[-71.45623853,41.720716518],[-71.45630753,41.720764518],[-71.45634453,41.720655518],[-71.45639053,41.720564518],[-71.45644453,41.720464519],[-71.45658153,41.720182518],[-71.45658153,41.720128518],[-71.45654353,41.720003518],[-71.45649053,41.719891518],[-71.45640653,41.719758518],[-71.45635253,41.719723518],[-71.45629153,41.719688518],[-71.45617753,41.719641518],[-71.45606253,41.719612518],[-71.45600153,41.719546518],[-71.45597853,41.719488518],[-71.455879529,41.719418518],[-71.45569653,41.719332518],[-71.45554453,41.719263518],[-71.45536053,41.719177518],[-71.45520853,41.719081518],[-71.455101529,41.718975518],[-71.455002529,41.718847518],[-71.45490253,41.718705518],[-71.45481953,41.718581518],[-71.454788529,41.718496518],[-71.45481953,41.718401517],[-71.454887529,41.718336518],[-71.45497953,41.718276518],[-71.45507153,41.718260518],[-71.45515553,41.718272518],[-71.455216529,41.718325518],[-71.45528453,41.718422518],[-71.455376529,41.718573518],[-71.45553653,41.718727518],[-71.45572753,41.718836518],[-71.45596353,41.718966517],[-71.45606253,41.719009518],[-71.45610853,41.719012518],[-71.45618453,41.719020518],[-71.45635253,41.719025518],[-71.45655853,41.719030518],[-71.45687953,41.719023518],[-71.45706953,41.719046518],[-71.45729153,41.719095518],[-71.45752753,41.719149518],[-71.457924531,41.719221518],[-71.458427531,41.719319518],[-71.458504531,41.719339518],[-71.45851153,41.719389518],[-71.45849653,41.719479518],[-71.45847353,41.719597518],[-71.458427531,41.719706518],[-71.458382531,41.719828518],[-71.458275531,41.720092518],[-71.458191531,41.720224518],[-71.458153531,41.720257518],[-71.458092531,41.720303518],[-71.458000531,41.720404518],[-71.457764531,41.720675518],[-71.45749753,41.721000518],[-71.45744353,41.721055518],[-71.45740553,41.721092518],[-71.45735253,41.721147519],[-71.45730653,41.721225519],[-71.457275531,41.721415518],[-71.45723253,41.721692519],[-71.45723153,41.721697518],[-71.45723153,41.721721518],[-71.457181531,41.721793518],[-71.457008531,41.721836518],[-71.45696353,41.721854518],[-71.45654353,41.721993518],[-71.45654353,41.722020519],[-71.456482531,41.722224518],[-71.45637553,41.722453519],[-71.45635253,41.722502518],[-71.45629953,41.722597518],[-71.45615453,41.722884519],[-71.45610753,41.723014519],[-71.45605553,41.723161518],[-71.45591753,41.723578519],[-71.45578853,41.724031519],[-71.45568153,41.724380519],[-71.45554453,41.724888519],[-71.45547553,41.724984519],[-71.45539953,41.725143519],[-71.45531453,41.72530252],[-71.45507853,41.726014519],[-71.45491053,41.726495519],[-71.45489553,41.726540519],[-71.45488253,41.72658552],[-71.45484253,41.726717519],[-71.454903529,41.72674352],[-71.45539953,41.726908519],[-71.45594853,41.727099519],[-71.45665853,41.72732752],[-71.45670353,41.727339519],[-71.45703153,41.727431519],[-71.457176531,41.72747852],[-71.457329531,41.727515519],[-71.457489531,41.727552519],[-71.45763453,41.727572519],[-71.457786531,41.727591519],[-71.457932531,41.727606519],[-71.458290531,41.72761652],[-71.458466531,41.727608519],[-71.458671531,41.727590519],[-71.458885531,41.72755852],[-71.459084531,41.72751852],[-71.459312531,41.727459519],[-71.459534531,41.72738752],[-71.459740531,41.727301519],[-71.459999531,41.72717052],[-71.460243532,41.727011519],[-71.460390532,41.72691952],[-71.460487532,41.72685852],[-71.461373532,41.726289519],[-71.460454532,41.726973519],[-71.459709531,41.727527519],[-71.458542531,41.72839952],[-71.458511531,41.728427519],[-71.458435531,41.72847852],[-71.458412532,41.72849652],[-71.458267531,41.728603519],[-71.456398531,41.72999852],[-71.456345531,41.73004052],[-71.45485753,41.73115752],[-71.45340053,41.732242521],[-71.452896529,41.73261752],[-71.45242353,41.732983521],[-71.451943529,41.733345521],[-71.451477529,41.733719521],[-71.451088529,41.734047521],[-71.450707529,41.734384521],[-71.450340528,41.734721522],[-71.449822529,41.735218521],[-71.449333528,41.735724521],[-71.448860528,41.736243522],[-71.448456528,41.736711522],[-71.448074529,41.737187522],[-71.447868528,41.737448522],[-71.447838528,41.737498522],[-71.447806528,41.737536522],[-71.447707528,41.737669521],[-71.447440528,41.738021522],[-71.447188528,41.738387522],[-71.446937528,41.738748522],[-71.446646528,41.739209522],[-71.446631528,41.739236522],[-71.446334528,41.739734522],[-71.446242528,41.739902522],[-71.446198528,41.739987523]]]]}}"}, +{"type": "precinct", "typeId": 3512, "areaId": 25984, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":323,\"NAME\":\"3512\",\"SHAPE_Length\":0.069509198383667,\"SHAPE_Area\":-0.00014201379762195},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.406548515,41.745112525],[-71.407120516,41.745141524],[-71.407478515,41.745133525],[-71.407784516,41.745073525],[-71.408417515,41.744906524],[-71.408592516,41.744857525],[-71.408752516,41.744841525],[-71.408897516,41.744820525],[-71.409050516,41.744816524],[-71.409187516,41.744818525],[-71.409264516,41.744825524],[-71.410362516,41.744879525],[-71.410813516,41.744905524],[-71.412552517,41.745000524],[-71.412666517,41.744997525],[-71.412773517,41.744999525],[-71.413147518,41.744996525],[-71.413376517,41.744996525],[-71.413437518,41.745287525],[-71.413506517,41.745434524],[-71.413567517,41.745528524],[-71.413635518,41.745603525],[-71.413643517,41.745612524],[-71.413742517,41.745700525],[-71.413880517,41.745787524],[-71.414131517,41.745908524],[-71.414742518,41.746174524],[-71.415428518,41.746461525],[-71.415687518,41.746573525],[-71.416092519,41.746744524],[-71.416382519,41.746927525],[-71.416565518,41.747104525],[-71.416603518,41.747170524],[-71.416725518,41.747352525],[-71.416847519,41.747656524],[-71.416954518,41.747929524],[-71.417030519,41.748130525],[-71.417099519,41.748331525],[-71.417099519,41.748461525],[-71.417092518,41.748673525],[-71.417007519,41.749053525],[-71.416817518,41.749886525],[-71.416680518,41.750474525],[-71.416603518,41.750611525],[-71.416519519,41.750730526],[-71.416466518,41.750789526],[-71.416420519,41.750835525],[-71.416290518,41.750951525],[-71.416198518,41.751025526],[-71.416115518,41.751089525],[-71.416054519,41.751131525],[-71.416176518,41.751147525],[-71.416260519,41.751194525],[-71.416862519,41.751691525],[-71.416901519,41.751748525],[-71.416939519,41.751838526],[-71.417458519,41.751471526],[-71.418091519,41.751070525],[-71.418305519,41.750953525],[-71.418793519,41.750691525],[-71.41883852,41.750668525],[-71.41899952,41.750587525],[-71.419456519,41.750371525],[-71.419685519,41.750267525],[-71.42013652,41.750064525],[-71.42040352,41.749932525],[-71.42076952,41.749740525],[-71.42105352,41.749588525],[-71.42115852,41.749533525],[-71.42182952,41.749069525],[-71.42200552,41.748943524],[-71.422447521,41.748691524],[-71.42251652,41.748645525],[-71.422386521,41.748512524],[-71.42230252,41.748419524],[-71.42221852,41.748309525],[-71.42157052,41.747570525],[-71.42104352,41.747009524],[-71.420814519,41.746749525],[-71.420700519,41.746611524],[-71.42035752,41.746245525],[-71.42012852,41.745970524],[-71.419884519,41.745669524],[-71.419769519,41.745447525],[-71.419693519,41.745241524],[-71.419655519,41.745156524],[-71.41964352,41.745096524],[-71.419594519,41.744847524],[-71.419594519,41.744784524],[-71.419578519,41.744577524],[-71.419304519,41.744484524],[-71.419128519,41.744393524],[-71.418976519,41.744306524],[-71.418892519,41.744186524],[-71.418854519,41.744061524],[-71.418854519,41.743926524],[-71.418899519,41.743776524],[-71.418968519,41.743631524],[-71.419083519,41.743471524],[-71.419327519,41.743272524],[-71.419098519,41.742984524],[-71.419014519,41.742855523],[-71.418968519,41.742537524],[-71.418907519,41.742191524],[-71.418892519,41.741980523],[-71.418869519,41.741800524],[-71.418846519,41.741670523],[-71.418846519,41.741629523],[-71.418785519,41.741271524],[-71.418770519,41.741167523],[-71.418739519,41.740970523],[-71.418678519,41.740759523],[-71.418541519,41.740456523],[-71.418449519,41.740246523],[-71.418373519,41.740149523],[-71.418281518,41.740106523],[-71.418167518,41.740054523],[-71.418358518,41.739784523],[-71.418533518,41.739578523],[-71.418091518,41.739407523],[-71.417953518,41.739352523],[-71.417488518,41.739195523],[-71.417305518,41.739127523],[-71.417137518,41.738991523],[-71.417133518,41.738985523],[-71.417098518,41.738938523],[-71.417091518,41.738929523],[-71.417069519,41.738497523],[-71.417046518,41.738164523],[-71.417038518,41.737745522],[-71.417038518,41.737403523],[-71.417091518,41.737303522],[-71.417252518,41.737115523],[-71.417062518,41.736754522],[-71.415857518,41.737269523],[-71.415855518,41.737266523],[-71.414626517,41.736175522],[-71.413872517,41.735506522],[-71.413857517,41.735444522],[-71.413818517,41.735395522],[-71.413726517,41.735309522],[-71.413673517,41.735272522],[-71.413628517,41.735223522],[-71.413597517,41.735174522],[-71.413574517,41.735112523],[-71.413536517,41.735086522],[-71.413757517,41.735054522],[-71.413864517,41.735043522],[-71.413941517,41.735037522],[-71.414261517,41.734994523],[-71.414566517,41.734947522],[-71.414657517,41.734927522],[-71.414734517,41.734903522],[-71.414810517,41.734892522],[-71.414886517,41.734891522],[-71.414963518,41.734898522],[-71.415031517,41.734906522],[-71.415131517,41.734912522],[-71.415207517,41.734920522],[-71.415283517,41.734909522],[-71.415352518,41.734885522],[-71.415382517,41.734880522],[-71.415535517,41.734827522],[-71.415703518,41.734806522],[-71.415856518,41.734753522],[-71.415932518,41.734734522],[-71.416023517,41.734705522],[-71.416107518,41.734680522],[-71.416199518,41.734669522],[-71.416298518,41.734649522],[-71.416382518,41.734638522],[-71.416481518,41.734623523],[-71.416580518,41.734603522],[-71.416649518,41.734588522],[-71.416725518,41.734564522],[-71.416801518,41.734553522],[-71.416870518,41.734534522],[-71.416946518,41.734519522],[-71.417015518,41.734513522],[-71.417091518,41.734493522],[-71.417114518,41.734483522],[-71.417137518,41.734456522],[-71.417145518,41.734424522],[-71.417152518,41.734379522],[-71.417175518,41.734284522],[-71.417130518,41.734222522],[-71.417076518,41.734183522],[-71.417008518,41.734152522],[-71.416969518,41.734117522],[-71.416939518,41.734050522],[-71.416908518,41.733997522],[-71.416885518,41.733939522],[-71.416855517,41.733877522],[-71.416839518,41.733818522],[-71.416809518,41.733756522],[-71.416778517,41.733703522],[-71.416741517,41.733645522],[-71.416679518,41.733610522],[-71.416656518,41.733556522],[-71.416656518,41.733498522],[-71.416603517,41.733427522],[-71.416588518,41.733328522],[-71.416584517,41.733157522],[-71.416542518,41.733158522],[-71.415947517,41.733180522],[-71.415093517,41.733202521],[-71.415008517,41.733204522],[-71.414261517,41.733229522],[-71.413445516,41.733250522],[-71.413353517,41.733252522],[-71.413071517,41.733263522],[-71.412597517,41.733273522],[-71.412468516,41.733275522],[-71.411766516,41.733299522],[-71.411651516,41.733301522],[-71.410851515,41.733327522],[-71.410042516,41.733349522],[-71.409836515,41.733357522],[-71.408951515,41.733385522],[-71.407478514,41.733443522],[-71.407097515,41.733455522],[-71.407044515,41.733461522],[-71.406975514,41.733463522],[-71.407005515,41.733574522],[-71.407082515,41.733798522],[-71.407120515,41.733905522],[-71.407333515,41.734468523],[-71.407517515,41.734919522],[-71.407617515,41.735135522],[-71.407989515,41.735931523],[-71.408020515,41.736025523],[-71.408066515,41.736322522],[-71.408081515,41.736443523],[-71.408104515,41.736618523],[-71.408134515,41.736933523],[-71.408142515,41.737414523],[-71.408150515,41.737549523],[-71.408157516,41.738094523],[-71.408157516,41.738148523],[-71.408165515,41.738287523],[-71.408172515,41.738494523],[-71.408173516,41.738675523],[-71.408150515,41.739044523],[-71.408150515,41.739148524],[-71.408142515,41.739175523],[-71.408073515,41.739924524],[-71.408050515,41.740105523],[-71.408035515,41.740294524],[-71.407959516,41.740989523],[-71.407928515,41.741296523],[-71.407906515,41.741450524],[-71.407867515,41.741847524],[-71.407852515,41.741996524],[-71.407845516,41.742068524],[-71.407761515,41.742470524],[-71.407707516,41.742679524],[-71.407692515,41.742733524],[-71.407433516,41.743315524],[-71.407418515,41.743342524],[-71.407341515,41.743510524],[-71.407112515,41.744024525],[-71.406937515,41.744410525],[-71.406860515,41.744574524],[-71.406807515,41.744683525],[-71.406739515,41.744811524],[-71.406548515,41.745112525]]]]}}"}, +{"type": "precinct", "typeId": 3513, "areaId": 25985, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":324,\"NAME\":\"3513\",\"SHAPE_Length\":0.16321504340513,\"SHAPE_Area\":-0.0007907441009144},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.416584517,41.733157522],[-71.416588518,41.733328522],[-71.416603517,41.733427522],[-71.416656518,41.733498522],[-71.416656518,41.733556522],[-71.416679518,41.733610522],[-71.416741517,41.733645522],[-71.416778517,41.733703522],[-71.416809518,41.733756522],[-71.416839518,41.733818522],[-71.416855517,41.733877522],[-71.416885518,41.733939522],[-71.416908518,41.733997522],[-71.416939518,41.734050522],[-71.416969518,41.734117522],[-71.417008518,41.734152522],[-71.417076518,41.734183522],[-71.417130518,41.734222522],[-71.417175518,41.734284522],[-71.417152518,41.734379522],[-71.417145518,41.734424522],[-71.417137518,41.734456522],[-71.417114518,41.734483522],[-71.417091518,41.734493522],[-71.417015518,41.734513522],[-71.416946518,41.734519522],[-71.416870518,41.734534522],[-71.416801518,41.734553522],[-71.416725518,41.734564522],[-71.416649518,41.734588522],[-71.416580518,41.734603522],[-71.416481518,41.734623523],[-71.416382518,41.734638522],[-71.416298518,41.734649522],[-71.416199518,41.734669522],[-71.416107518,41.734680522],[-71.416023517,41.734705522],[-71.415932518,41.734734522],[-71.415856518,41.734753522],[-71.415703518,41.734806522],[-71.415535517,41.734827522],[-71.415382517,41.734880522],[-71.415352518,41.734885522],[-71.415283517,41.734909522],[-71.415207517,41.734920522],[-71.415131517,41.734912522],[-71.415031517,41.734906522],[-71.414963518,41.734898522],[-71.414886517,41.734891522],[-71.414810517,41.734892522],[-71.414734517,41.734903522],[-71.414657517,41.734927522],[-71.414566517,41.734947522],[-71.414261517,41.734994523],[-71.413941517,41.735037522],[-71.413864517,41.735043522],[-71.413757517,41.735054522],[-71.413536517,41.735086522],[-71.413574517,41.735112523],[-71.413597517,41.735174522],[-71.413628517,41.735223522],[-71.413673517,41.735272522],[-71.413726517,41.735309522],[-71.413818517,41.735395522],[-71.413857517,41.735444522],[-71.413872517,41.735506522],[-71.414626517,41.736175522],[-71.415855518,41.737266523],[-71.415857518,41.737269523],[-71.417062518,41.736754522],[-71.417252518,41.737115523],[-71.417091518,41.737303522],[-71.417038518,41.737403523],[-71.417038518,41.737745522],[-71.417046518,41.738164523],[-71.417069519,41.738497523],[-71.417091518,41.738929523],[-71.417098518,41.738938523],[-71.417133518,41.738985523],[-71.417137518,41.738991523],[-71.417305518,41.739127523],[-71.417488518,41.739195523],[-71.417953518,41.739352523],[-71.418091518,41.739407523],[-71.418533518,41.739578523],[-71.418358518,41.739784523],[-71.418167518,41.740054523],[-71.418281518,41.740106523],[-71.418373519,41.740149523],[-71.418449519,41.740246523],[-71.418541519,41.740456523],[-71.418678519,41.740759523],[-71.418739519,41.740970523],[-71.418770519,41.741167523],[-71.418785519,41.741271524],[-71.418846519,41.741629523],[-71.418846519,41.741670523],[-71.418869519,41.741800524],[-71.418892519,41.741980523],[-71.418907519,41.742191524],[-71.418968519,41.742537524],[-71.419014519,41.742855523],[-71.419098519,41.742984524],[-71.419327519,41.743272524],[-71.419083519,41.743471524],[-71.418968519,41.743631524],[-71.418899519,41.743776524],[-71.418854519,41.743926524],[-71.418854519,41.744061524],[-71.418892519,41.744186524],[-71.418976519,41.744306524],[-71.419128519,41.744393524],[-71.419304519,41.744484524],[-71.419578519,41.744577524],[-71.419594519,41.744784524],[-71.419594519,41.744847524],[-71.41964352,41.745096524],[-71.419655519,41.745156524],[-71.419693519,41.745241524],[-71.419769519,41.745447525],[-71.419884519,41.745669524],[-71.42012852,41.745970524],[-71.42035752,41.746245525],[-71.420700519,41.746611524],[-71.420814519,41.746749525],[-71.42104352,41.747009524],[-71.42157052,41.747570525],[-71.42221852,41.748309525],[-71.42230252,41.748419524],[-71.422386521,41.748512524],[-71.42251652,41.748645525],[-71.42257752,41.748616525],[-71.42309652,41.748286525],[-71.423569521,41.748028524],[-71.423897521,41.747827525],[-71.424156521,41.747664525],[-71.424568521,41.747439524],[-71.425186521,41.747134524],[-71.425331521,41.747041524],[-71.426346522,41.746371524],[-71.426468522,41.746287524],[-71.427239522,41.745649524],[-71.427429522,41.745474524],[-71.427872522,41.745091524],[-71.428398523,41.744639524],[-71.428734522,41.744343523],[-71.429426523,41.743720523],[-71.429687522,41.743486523],[-71.429772522,41.743403523],[-71.430183523,41.743025524],[-71.430512523,41.742640523],[-71.430847523,41.742259523],[-71.431099523,41.741988523],[-71.431114523,41.741965523],[-71.431137523,41.741942523],[-71.431190523,41.741878523],[-71.431274523,41.741777523],[-71.431328523,41.741713523],[-71.431389523,41.741644523],[-71.431656523,41.741278523],[-71.431679523,41.741237523],[-71.431915523,41.740921523],[-71.432114523,41.740633522],[-71.432159523,41.740560523],[-71.432274523,41.740378522],[-71.432403523,41.740150523],[-71.432587523,41.739840523],[-71.432747524,41.739562522],[-71.432869523,41.739352522],[-71.432945523,41.739202523],[-71.433022523,41.739056522],[-71.433235524,41.738714523],[-71.433327524,41.738554522],[-71.433571523,41.738135522],[-71.433670523,41.737971522],[-71.433853524,41.737624522],[-71.433998523,41.737360522],[-71.434135523,41.737114522],[-71.434311523,41.736786522],[-71.434402524,41.736609522],[-71.434738523,41.735967522],[-71.435120524,41.735252521],[-71.435272524,41.734960521],[-71.435318524,41.734878521],[-71.435470524,41.734591521],[-71.435745524,41.734085521],[-71.435822524,41.733922522],[-71.435944524,41.733662521],[-71.436112524,41.733267521],[-71.436165524,41.733131521],[-71.436371524,41.732573521],[-71.436500524,41.732223521],[-71.436813524,41.731429521],[-71.436829524,41.731379521],[-71.437088524,41.730680521],[-71.437225524,41.730353521],[-71.437325524,41.730112521],[-71.437385525,41.729962521],[-71.437538524,41.72959852],[-71.437553524,41.729567521],[-71.437660525,41.729299521],[-71.437752524,41.729085521],[-71.438080524,41.72827752],[-71.438370524,41.72756852],[-71.438492525,41.72727752],[-71.438543524,41.72715252],[-71.438730525,41.72670052],[-71.438812525,41.72650052],[-71.438965525,41.72614152],[-71.439049524,41.72593752],[-71.439140525,41.72574152],[-71.439262525,41.72548752],[-71.439407525,41.725249519],[-71.439705525,41.724743519],[-71.439911525,41.72440152],[-71.440094525,41.724100519],[-71.440124525,41.724041519],[-71.440544525,41.72329352],[-71.440643525,41.723129519],[-71.440689525,41.723043519],[-71.440582525,41.723045519],[-71.440491525,41.723051519],[-71.440315525,41.723055519],[-71.440094525,41.723055519],[-71.439865525,41.72306052],[-71.439721525,41.723057519],[-71.439565525,41.723006519],[-71.439183525,41.722956519],[-71.438797524,41.722906519],[-71.438785524,41.722818519],[-71.438817524,41.722332519],[-71.440801525,41.718879518],[-71.440727524,41.718845519],[-71.440521525,41.718759518],[-71.440216525,41.718599518],[-71.439781525,41.718352518],[-71.438395524,41.717583518],[-71.438225524,41.717489518],[-71.436752523,41.716664518],[-71.436546524,41.716547518],[-71.436470524,41.716477518],[-71.436462523,41.716450518],[-71.436455523,41.716414518],[-71.436455523,41.716387518],[-71.436463523,41.716360518],[-71.436478523,41.716328518],[-71.436493523,41.716309518],[-71.436516523,41.716268518],[-71.437882523,41.714546517],[-71.439339524,41.712728517],[-71.439926524,41.711986517],[-71.440102524,41.711766517],[-71.440811524,41.710873516],[-71.440865524,41.710795516],[-71.440903524,41.710745517],[-71.440910524,41.710717516],[-71.440910524,41.710699516],[-71.440918525,41.710681516],[-71.440926524,41.710627517],[-71.441013525,41.710453517],[-71.440407524,41.710363517],[-71.440269524,41.710344517],[-71.439995524,41.710309516],[-71.439926524,41.710292516],[-71.439766524,41.710264517],[-71.439651524,41.710240517],[-71.439545524,41.710215517],[-71.439438523,41.710177517],[-71.439323524,41.710148517],[-71.439255524,41.710127517],[-71.439224523,41.710114516],[-71.439125524,41.710084517],[-71.438919524,41.709999516],[-71.438805524,41.709947517],[-71.438698523,41.709891517],[-71.438202524,41.709649516],[-71.437820523,41.709531516],[-71.437569523,41.709419517],[-71.437309523,41.709330517],[-71.437057523,41.709219516],[-71.436577523,41.708999517],[-71.436112523,41.708775516],[-71.436028522,41.708732516],[-71.435745523,41.709120516],[-71.435280523,41.709720517],[-71.434898522,41.710219517],[-71.434318522,41.710979517],[-71.433792522,41.711674517],[-71.433723523,41.711761517],[-71.433268522,41.712350518],[-71.432927522,41.712807517],[-71.432877522,41.712874518],[-71.432411522,41.713478518],[-71.432106521,41.713867518],[-71.431931521,41.714073517],[-71.431816521,41.714224518],[-71.431656522,41.714390518],[-71.431503521,41.714542518],[-71.431290521,41.714735517],[-71.430817522,41.715128518],[-71.430573521,41.715341518],[-71.430260521,41.715599518],[-71.430054521,41.715752518],[-71.429909521,41.715881518],[-71.429848521,41.715928518],[-71.42666852,41.720141519],[-71.427712521,41.718445519],[-71.427689521,41.718392519],[-71.42764352,41.718339519],[-71.42758252,41.718295519],[-71.427460521,41.718234519],[-71.42739152,41.718191518],[-71.427322521,41.718165519],[-71.42727752,41.718180519],[-71.42722352,41.718217519],[-71.42715552,41.718196519],[-71.42709452,41.718156519],[-71.42701752,41.718167518],[-71.42688052,41.718260519],[-71.42686652,41.718268518],[-71.42668552,41.718501518],[-71.42637452,41.718427519],[-71.42634152,41.718277519],[-71.42640752,41.718176519],[-71.42535052,41.717565518],[-71.423309519,41.716840518],[-71.422205518,41.716806518],[-71.422105518,41.716410518],[-71.421406518,41.716302518],[-71.417893517,41.711846518],[-71.417338517,41.711444517],[-71.413132515,41.712993518],[-71.413415516,41.714025518],[-71.413360516,41.714051518],[-71.413284516,41.714052518],[-71.413216515,41.714009519],[-71.413162516,41.713942518],[-71.413101516,41.713881518],[-71.413048516,41.713819518],[-71.412979515,41.713771518],[-71.412903515,41.713763518],[-71.412819515,41.713769518],[-71.412743515,41.713740518],[-71.412712515,41.713745518],[-71.412674515,41.713754518],[-71.412651515,41.713777519],[-71.412598516,41.713770518],[-71.412552515,41.713721518],[-71.412498515,41.713668518],[-71.412445516,41.713611518],[-71.412377515,41.713576518],[-71.412293515,41.713555518],[-71.412247515,41.713547518],[-71.412170515,41.713504519],[-71.412102515,41.713451518],[-71.412048515,41.713407518],[-71.412026515,41.713349518],[-71.412002515,41.713282518],[-71.411957515,41.713225518],[-71.411865515,41.713200518],[-71.411789515,41.713188518],[-71.411682515,41.713158518],[-71.411621515,41.713119518],[-71.411568515,41.713066518],[-71.411476515,41.712969518],[-71.411430515,41.712925518],[-71.411362515,41.712877518],[-71.411286515,41.712842518],[-71.411202514,41.712808518],[-71.411110515,41.712765518],[-71.411018515,41.712726518],[-71.410950514,41.712705518],[-71.410812514,41.712645518],[-71.410721515,41.712611518],[-71.410644515,41.712581518],[-71.410560514,41.712556518],[-71.410477515,41.712540518],[-71.410393515,41.712537518],[-71.410301515,41.712543518],[-71.410149514,41.712560518],[-71.410050514,41.712553518],[-71.409950515,41.712533518],[-71.409866514,41.712525518],[-71.409782514,41.712527518],[-71.409706514,41.712547518],[-71.409607514,41.712558518],[-71.409508514,41.712578518],[-71.409424515,41.712584518],[-71.409348514,41.712599518],[-71.409271514,41.712628518],[-71.409210515,41.712683518],[-71.409180514,41.712734518],[-71.409134514,41.712775518],[-71.409042514,41.712799518],[-71.408958514,41.712801519],[-71.408905514,41.712807518],[-71.408829514,41.712813518],[-71.408753514,41.712833518],[-71.408676514,41.712861518],[-71.408630514,41.712880519],[-71.408516514,41.712977519],[-71.408417514,41.713006518],[-71.408318514,41.713004518],[-71.408241514,41.713001518],[-71.408150514,41.712989518],[-71.408058514,41.712982518],[-71.407982513,41.712979518],[-71.407883514,41.712977519],[-71.407807513,41.712969518],[-71.407669514,41.712950518],[-71.407570514,41.712938519],[-71.407471514,41.712945518],[-71.407379513,41.712942518],[-71.407247513,41.712972518],[-71.407158514,41.712970518],[-71.407074513,41.712949518],[-71.406998514,41.712910518],[-71.406891513,41.712840519],[-71.406815513,41.712815518],[-71.406731514,41.712803518],[-71.406632514,41.712823518],[-71.406563513,41.712847518],[-71.406464513,41.712871518],[-71.406349513,41.712878519],[-71.406097513,41.712870518],[-71.405998513,41.712886518],[-71.405914514,41.712915518],[-71.405853513,41.712943518],[-71.405746513,41.712986518],[-71.405678513,41.713010518],[-71.405617513,41.713056518],[-71.405602513,41.713101518],[-71.405563513,41.713156518],[-71.405495513,41.713193518],[-71.405388512,41.713209519],[-71.405319513,41.713202518],[-71.405197513,41.713195518],[-71.405128513,41.713242518],[-71.405075513,41.713301518],[-71.405006513,41.713357518],[-71.404930513,41.713399518],[-71.404778513,41.713398518],[-71.404686512,41.713377518],[-71.404594513,41.713379518],[-71.404526513,41.713398518],[-71.404442513,41.713427518],[-71.404350513,41.713447518],[-71.404182512,41.713496518],[-71.404106512,41.713520519],[-71.404030512,41.713548518],[-71.403954512,41.713568518],[-71.403694512,41.713587518],[-71.403610513,41.713589518],[-71.403526512,41.713604518],[-71.403450512,41.713624518],[-71.403381512,41.713652519],[-71.403252512,41.713772519],[-71.403191512,41.713809519],[-71.403091512,41.713838518],[-71.402947512,41.713850519],[-71.402870513,41.713852519],[-71.402764512,41.713868519],[-71.402641512,41.713960518],[-71.402565512,41.713975518],[-71.402481512,41.713977518],[-71.402382512,41.713975518],[-71.402298512,41.713972519],[-71.402222512,41.713960518],[-71.402130512,41.713957518],[-71.402046512,41.713986519],[-71.401970512,41.713992518],[-71.401878511,41.713990519],[-71.401779512,41.713978518],[-71.401672512,41.713976518],[-71.401596512,41.713982519],[-71.401505512,41.713988519],[-71.401443512,41.714030519],[-71.401405512,41.714072518],[-71.401314511,41.714137519],[-71.401238511,41.714174518],[-71.401153512,41.714194518],[-71.401108512,41.714190518],[-71.401016512,41.714165519],[-71.400940512,41.714135518],[-71.400902512,41.714114518],[-71.400849511,41.714083519],[-71.400764512,41.714053518],[-71.400719512,41.714059519],[-71.400627512,41.714083519],[-71.400543511,41.714117519],[-71.400459511,41.714136519],[-71.400421511,41.714155519],[-71.400276512,41.714217519],[-71.400208511,41.714232518],[-71.400131511,41.714247518],[-71.400063512,41.714266518],[-71.399902511,41.714297519],[-71.399818511,41.714316519],[-71.399620511,41.714379519],[-71.399551511,41.714399519],[-71.399475511,41.714400519],[-71.399414511,41.714379519],[-71.399285511,41.714384518],[-71.399300511,41.714489519],[-71.399300511,41.714521518],[-71.399330511,41.714804519],[-71.399399511,41.715185519],[-71.399437511,41.715324519],[-71.399475511,41.715467519],[-71.399521511,41.715601519],[-71.399574512,41.715722519],[-71.399628511,41.715838519],[-71.399689511,41.715954519],[-71.399742511,41.716034519],[-71.399788512,41.716114519],[-71.399841511,41.716194519],[-71.399918511,41.716318519],[-71.400101512,41.716549519],[-71.400253512,41.716716519],[-71.400330512,41.716796519],[-71.400413512,41.716875519],[-71.400528512,41.716990519],[-71.400627512,41.717082519],[-71.400665512,41.717127519],[-71.401024512,41.717484519],[-71.401260512,41.717722519],[-71.401465512,41.717932519],[-71.401604512,41.718075519],[-71.401642512,41.718110519],[-71.401993512,41.71847252],[-71.402061512,41.718543519],[-71.402474512,41.719012519],[-71.402558513,41.71909552],[-71.402924513,41.719498519],[-71.403313513,41.71991752],[-71.403492513,41.72018452],[-71.403580513,41.720312519],[-71.403755513,41.72071452],[-71.403793513,41.72084452],[-71.403885513,41.721130519],[-71.404411513,41.72103852],[-71.404579513,41.720976519],[-71.404571513,41.72103052],[-71.404617513,41.72110652],[-71.405006513,41.72140452],[-71.405297513,41.72165052],[-71.405373513,41.72173452],[-71.405464514,41.72178652],[-71.405540514,41.72182552],[-71.405632514,41.72183752],[-71.405914514,41.72181752],[-71.406280514,41.72174252],[-71.406449514,41.72172052],[-71.407601514,41.72152552],[-71.408180514,41.72141852],[-71.408531514,41.72136252],[-71.408691514,41.72130952],[-71.408768514,41.721289519],[-71.408867514,41.72158452],[-71.408997514,41.72199152],[-71.409104515,41.72234052],[-71.409149515,41.72253352],[-71.409696515,41.72254652],[-71.410043515,41.72255552],[-71.410011515,41.72263652],[-71.409989515,41.72270452],[-71.409973515,41.72277752],[-71.409950515,41.72284952],[-71.409927515,41.72292652],[-71.409897515,41.72309452],[-71.409897515,41.72325152],[-71.409889515,41.72332852],[-71.409889515,41.72341452],[-71.409859515,41.723585521],[-71.409836515,41.72366752],[-71.409828515,41.72373952],[-71.409828515,41.72382552],[-71.409843515,41.72390552],[-71.409813515,41.72394652],[-71.409790515,41.72400652],[-71.409782515,41.72408252],[-71.409783515,41.72414552],[-71.409782515,41.72422252],[-71.409782515,41.72437952],[-71.409775515,41.72445652],[-71.409760515,41.72454752],[-71.409744515,41.72462852],[-71.409744515,41.72470452],[-71.409737515,41.72478652],[-71.409721515,41.72493952],[-71.409706515,41.72502052],[-71.409683515,41.72509852],[-71.409660515,41.72517052],[-71.409645515,41.725337521],[-71.409645515,41.72542352],[-71.409661515,41.72550352],[-71.409683515,41.725575521],[-71.409721515,41.725651521],[-71.409760515,41.725722521],[-71.409767515,41.72579452],[-71.409767515,41.72585252],[-71.409775515,41.725915521],[-71.409805515,41.725978521],[-71.409851515,41.726040521],[-71.409905515,41.72610652],[-71.409958515,41.72616352],[-71.410027516,41.72622152],[-71.410103515,41.726287521],[-71.410187515,41.726348521],[-71.410286515,41.726413521],[-71.410377516,41.726483521],[-71.410477516,41.72655352],[-71.410568515,41.72661052],[-71.410660515,41.726662521],[-71.410751515,41.72671052],[-71.410843516,41.726762521],[-71.410942516,41.726814521],[-71.411033515,41.726857521],[-71.411125515,41.726896521],[-71.411217516,41.726925521],[-71.411308516,41.726959521],[-71.411407516,41.726989521],[-71.411499516,41.727027521],[-71.411591515,41.727075521],[-71.411682516,41.72711852],[-71.411781516,41.727147521],[-71.411881516,41.727168521],[-71.411987516,41.727188521],[-71.412201516,41.727220521],[-71.412308516,41.727240521],[-71.412407516,41.727269521],[-71.412620516,41.727328521],[-71.412720517,41.727362521],[-71.412827516,41.727400521],[-71.412941516,41.727425521],[-71.413048516,41.727445521],[-71.413139516,41.727470521],[-71.413216516,41.727505521],[-71.413307516,41.727525521],[-71.413399517,41.727541521],[-71.413483516,41.72756752],[-71.413551516,41.727597521],[-71.413612517,41.727636521],[-71.413681516,41.727675521],[-71.413826517,41.727748521],[-71.413902517,41.72776052],[-71.413971516,41.727759521],[-71.414017517,41.727767521],[-71.414024517,41.727816521],[-71.414070516,41.728031521],[-71.414108516,41.728076521],[-71.414162517,41.728115521],[-71.414208516,41.728159521],[-71.414238517,41.728213521],[-71.414307517,41.728387521],[-71.414375517,41.728448521],[-71.414398516,41.728497521],[-71.414458516,41.728575521],[-71.414574516,41.728723521],[-71.414612517,41.728777521],[-71.414650517,41.728825521],[-71.414680517,41.728888521],[-71.414703517,41.728941521],[-71.414734517,41.728995521],[-71.414810517,41.729074521],[-71.414848517,41.729118521],[-71.414879517,41.729176521],[-71.414894517,41.729217521],[-71.414902517,41.729275521],[-71.414940517,41.729328521],[-71.414978517,41.729377522],[-71.415032517,41.729430521],[-71.415062517,41.729479521],[-71.415085517,41.729505521],[-71.415116517,41.729563521],[-71.415153517,41.729621521],[-71.415192517,41.729679521],[-71.415237517,41.729750521],[-71.415268517,41.729812521],[-71.415291517,41.729861521],[-71.415314518,41.729901521],[-71.415329517,41.729923522],[-71.415375517,41.729981522],[-71.415428517,41.730038522],[-71.415474517,41.730105521],[-71.415589517,41.730265521],[-71.415619517,41.730318521],[-71.415657517,41.730389522],[-71.415703518,41.730460521],[-71.415756517,41.730531521],[-71.415810517,41.730593521],[-71.415856518,41.730664522],[-71.415894518,41.730709521],[-71.415939517,41.730757522],[-71.415993518,41.730828521],[-71.416123517,41.731055522],[-71.416168518,41.731113522],[-71.416206518,41.731166522],[-71.416306518,41.731299521],[-71.416352517,41.731356521],[-71.416397518,41.731414521],[-71.416435518,41.731476522],[-71.416458518,41.731543522],[-71.416451517,41.731606521],[-71.416420518,41.731657522],[-71.416405518,41.731720521],[-71.416405518,41.731792522],[-71.416412517,41.731855522],[-71.416413517,41.731981522],[-71.416412517,41.732107522],[-71.416420518,41.732179522],[-71.416435518,41.732246521],[-71.416466517,41.732318522],[-71.416489517,41.732380522],[-71.416504517,41.732447522],[-71.416519518,41.732506522],[-71.416542518,41.732568522],[-71.416565517,41.732622522],[-71.416580518,41.732680522],[-71.416580518,41.732802522],[-71.416588517,41.732860522],[-71.416580518,41.732955522],[-71.416580518,41.733004522],[-71.416584517,41.733157522]]]]}}"}, +{"type": "precinct", "typeId": 3514, "areaId": 25986, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":325,\"NAME\":\"3514\",\"SHAPE_Length\":0.0807626850402,\"SHAPE_Area\":-0.00024972194650035},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.39427951,41.734029523],[-71.39433351,41.733988523],[-71.39437151,41.733938523],[-71.39441751,41.733892523],[-71.39447051,41.733850522],[-71.394539511,41.733821523],[-71.39462351,41.733815523],[-71.394699511,41.733832522],[-71.394714511,41.733885522],[-71.394714511,41.733939523],[-71.394737511,41.734006522],[-71.394791511,41.734028523],[-71.394852511,41.734000523],[-71.39489751,41.733954523],[-71.394966511,41.733921523],[-71.39503551,41.733946522],[-71.395065511,41.734000523],[-71.395065511,41.734054523],[-71.395058511,41.734117523],[-71.395058511,41.734175523],[-71.39511151,41.734215522],[-71.395187511,41.734218522],[-71.395256511,41.734194523],[-71.395317511,41.734161522],[-71.395393511,41.734137522],[-71.39546251,41.734162522],[-71.395539511,41.734201522],[-71.395615511,41.734227523],[-71.395698511,41.734248523],[-71.395767511,41.734273523],[-71.395828511,41.734285523],[-71.395905511,41.734266523],[-71.395965511,41.734283523],[-71.396050511,41.734312523],[-71.396164511,41.734224523],[-71.396248511,41.734218522],[-71.396317511,41.734221522],[-71.396385511,41.734251523],[-71.396446511,41.734295522],[-71.396499511,41.734328523],[-71.396507511,41.734334522],[-71.396553512,41.734374522],[-71.396599511,41.734427523],[-71.396667512,41.734466523],[-71.396767512,41.734554523],[-71.396820511,41.734593523],[-71.396896511,41.734583523],[-71.396934511,41.734528522],[-71.396988511,41.734495523],[-71.397064511,41.734507523],[-71.397148511,41.734528522],[-71.397232512,41.734526523],[-71.397262511,41.734548522],[-71.397301511,41.734597523],[-71.397362511,41.734605522],[-71.397438511,41.734612523],[-71.397468512,41.734602523],[-71.397507512,41.734552522],[-71.397629511,41.734590522],[-71.397705511,41.734570522],[-71.397789511,41.734582523],[-71.397865511,41.734563523],[-71.397942511,41.734530522],[-71.398010512,41.734551522],[-71.398056511,41.734514523],[-71.398102512,41.734499523],[-71.398147512,41.734543523],[-71.398193511,41.734538523],[-71.398262512,41.734563523],[-71.398331511,41.734571522],[-71.398399512,41.734610522],[-71.398468512,41.734604523],[-71.398522512,41.734621523],[-71.398583511,41.734647522],[-71.398651512,41.734672523],[-71.398735512,41.734657523],[-71.398811512,41.734673523],[-71.398903512,41.734699523],[-71.398979512,41.734728522],[-71.399048512,41.734759523],[-71.399101512,41.734748523],[-71.399162512,41.734756523],[-71.399223512,41.734791523],[-71.399376512,41.734824522],[-71.399460512,41.734840522],[-71.399551512,41.734870523],[-71.399628512,41.734877523],[-71.399719512,41.734875523],[-71.399872512,41.734890523],[-71.399963513,41.734897523],[-71.400055512,41.734913523],[-71.400131512,41.734925523],[-71.400200513,41.734937522],[-71.400291513,41.734935523],[-71.400368513,41.734929523],[-71.400459512,41.734936523],[-71.400551513,41.734957522],[-71.400635512,41.734991523],[-71.400711512,41.734976522],[-71.400802513,41.734970523],[-71.400886512,41.734986523],[-71.400970513,41.734989523],[-71.401062512,41.734996522],[-71.401138512,41.735003523],[-71.401222513,41.735006523],[-71.401299513,41.734986523],[-71.401390513,41.734984523],[-71.401459513,41.735023523],[-71.401520513,41.735054522],[-71.401611513,41.735056522],[-71.401688513,41.735055522],[-71.401718513,41.735050523],[-71.401764513,41.735049523],[-71.401833513,41.735029523],[-71.401917513,41.735018522],[-71.401993513,41.735012523],[-71.402084513,41.735019522],[-71.402161513,41.735013523],[-71.402245513,41.735003523],[-71.402328513,41.734996522],[-71.402420513,41.734999522],[-71.402512513,41.735010523],[-71.402588513,41.735018522],[-71.402664513,41.735030523],[-71.402741513,41.735037522],[-71.402817513,41.735040522],[-71.402960513,41.735036522],[-71.403145514,41.735033523],[-71.403221514,41.735027523],[-71.403381513,41.734992523],[-71.403458513,41.734973523],[-71.403542513,41.734962522],[-71.403618513,41.734956522],[-71.403709514,41.734954523],[-71.403786514,41.734961522],[-71.403870513,41.734960522],[-71.404030514,41.734965523],[-71.404510514,41.734978522],[-71.404579514,41.734994523],[-71.404655514,41.735006523],[-71.404747514,41.735018522],[-71.404915514,41.735014523],[-71.405090514,41.735020522],[-71.405182514,41.735022522],[-71.405373514,41.735045523],[-71.405563515,41.735050523],[-71.405647514,41.735048523],[-71.405747514,41.735060522],[-71.405846514,41.735062522],[-71.405937514,41.735069523],[-71.406029515,41.735090523],[-71.406128515,41.735119522],[-71.406219515,41.735153522],[-71.406403514,41.735213522],[-71.406487514,41.735238523],[-71.406578514,41.735254522],[-71.406677514,41.735270522],[-71.406855514,41.735266523],[-71.406868515,41.735266523],[-71.406952514,41.735269522],[-71.407036515,41.735276522],[-71.407181515,41.735304523],[-71.407219515,41.735331522],[-71.407272515,41.735375523],[-71.407308515,41.735409522],[-71.407617515,41.735135522],[-71.407517515,41.734919522],[-71.407333515,41.734468523],[-71.407120515,41.733905522],[-71.407082515,41.733798522],[-71.407005515,41.733574522],[-71.406975514,41.733463522],[-71.407044515,41.733461522],[-71.407097515,41.733455522],[-71.407478514,41.733443522],[-71.408951515,41.733385522],[-71.409836515,41.733357522],[-71.410042516,41.733349522],[-71.410851515,41.733327522],[-71.411651516,41.733301522],[-71.411766516,41.733299522],[-71.412468516,41.733275522],[-71.412597517,41.733273522],[-71.413071517,41.733263522],[-71.413353517,41.733252522],[-71.413445516,41.733250522],[-71.414261517,41.733229522],[-71.415008517,41.733204522],[-71.415093517,41.733202521],[-71.415947517,41.733180522],[-71.416542518,41.733158522],[-71.416584517,41.733157522],[-71.416580518,41.733004522],[-71.416580518,41.732955522],[-71.416588517,41.732860522],[-71.416580518,41.732802522],[-71.416580518,41.732680522],[-71.416565517,41.732622522],[-71.416542518,41.732568522],[-71.416519518,41.732506522],[-71.416504517,41.732447522],[-71.416489517,41.732380522],[-71.416466517,41.732318522],[-71.416435518,41.732246521],[-71.416420518,41.732179522],[-71.416412517,41.732107522],[-71.416413517,41.731981522],[-71.416412517,41.731855522],[-71.416405518,41.731792522],[-71.416405518,41.731720521],[-71.416420518,41.731657522],[-71.416451517,41.731606521],[-71.416458518,41.731543522],[-71.416435518,41.731476522],[-71.416397518,41.731414521],[-71.416352517,41.731356521],[-71.416306518,41.731299521],[-71.416206518,41.731166522],[-71.416168518,41.731113522],[-71.416123517,41.731055522],[-71.415993518,41.730828521],[-71.415939517,41.730757522],[-71.415894518,41.730709521],[-71.415856518,41.730664522],[-71.415810517,41.730593521],[-71.415756517,41.730531521],[-71.415703518,41.730460521],[-71.415657517,41.730389522],[-71.415619517,41.730318521],[-71.415589517,41.730265521],[-71.415474517,41.730105521],[-71.415428517,41.730038522],[-71.415375517,41.729981522],[-71.415329517,41.729923522],[-71.415314518,41.729901521],[-71.415291517,41.729861521],[-71.415268517,41.729812521],[-71.415237517,41.729750521],[-71.415192517,41.729679521],[-71.415153517,41.729621521],[-71.415116517,41.729563521],[-71.415085517,41.729505521],[-71.415062517,41.729479521],[-71.415032517,41.729430521],[-71.414978517,41.729377522],[-71.414940517,41.729328521],[-71.414902517,41.729275521],[-71.414894517,41.729217521],[-71.414879517,41.729176521],[-71.414848517,41.729118521],[-71.414810517,41.729074521],[-71.414734517,41.728995521],[-71.414703517,41.728941521],[-71.414680517,41.728888521],[-71.414650517,41.728825521],[-71.414612517,41.728777521],[-71.414574516,41.728723521],[-71.414458516,41.728575521],[-71.414398516,41.728497521],[-71.414375517,41.728448521],[-71.414307517,41.728387521],[-71.414238517,41.728213521],[-71.414208516,41.728159521],[-71.414162517,41.728115521],[-71.414108516,41.728076521],[-71.414070516,41.728031521],[-71.414024517,41.727816521],[-71.414017517,41.727767521],[-71.413971516,41.727759521],[-71.413902517,41.72776052],[-71.413826517,41.727748521],[-71.413681516,41.727675521],[-71.413612517,41.727636521],[-71.413551516,41.727597521],[-71.413483516,41.72756752],[-71.413399517,41.727541521],[-71.413307516,41.727525521],[-71.413216516,41.727505521],[-71.413139516,41.727470521],[-71.413048516,41.727445521],[-71.412941516,41.727425521],[-71.412827516,41.727400521],[-71.412720517,41.727362521],[-71.412620516,41.727328521],[-71.412407516,41.727269521],[-71.412308516,41.727240521],[-71.412201516,41.727220521],[-71.411987516,41.727188521],[-71.411881516,41.727168521],[-71.411781516,41.727147521],[-71.411682516,41.72711852],[-71.411591515,41.727075521],[-71.411499516,41.727027521],[-71.411407516,41.726989521],[-71.411308516,41.726959521],[-71.411217516,41.726925521],[-71.411125515,41.726896521],[-71.411033515,41.726857521],[-71.410942516,41.726814521],[-71.410843516,41.726762521],[-71.410751515,41.72671052],[-71.410660515,41.726662521],[-71.410568515,41.72661052],[-71.410477516,41.72655352],[-71.410377516,41.726483521],[-71.410286515,41.726413521],[-71.410187515,41.726348521],[-71.410103515,41.726287521],[-71.410027516,41.72622152],[-71.409958515,41.72616352],[-71.409905515,41.72610652],[-71.409851515,41.726040521],[-71.409805515,41.725978521],[-71.409775515,41.725915521],[-71.409767515,41.72585252],[-71.409767515,41.72579452],[-71.409760515,41.725722521],[-71.409721515,41.725651521],[-71.409683515,41.725575521],[-71.409661515,41.72550352],[-71.409645515,41.72542352],[-71.409645515,41.725337521],[-71.409660515,41.72517052],[-71.409683515,41.72509852],[-71.409706515,41.72502052],[-71.409721515,41.72493952],[-71.409737515,41.72478652],[-71.409744515,41.72470452],[-71.409744515,41.72462852],[-71.409760515,41.72454752],[-71.409775515,41.72445652],[-71.409782515,41.72437952],[-71.409782515,41.72422252],[-71.409783515,41.72414552],[-71.409782515,41.72408252],[-71.409790515,41.72400652],[-71.409813515,41.72394652],[-71.409843515,41.72390552],[-71.409828515,41.72382552],[-71.409828515,41.72373952],[-71.409836515,41.72366752],[-71.409859515,41.723585521],[-71.409889515,41.72341452],[-71.409889515,41.72332852],[-71.409897515,41.72325152],[-71.409897515,41.72309452],[-71.409927515,41.72292652],[-71.409950515,41.72284952],[-71.409973515,41.72277752],[-71.409989515,41.72270452],[-71.410011515,41.72263652],[-71.410043515,41.72255552],[-71.409696515,41.72254652],[-71.409149515,41.72253352],[-71.409104515,41.72234052],[-71.408997514,41.72199152],[-71.408867514,41.72158452],[-71.408768514,41.721289519],[-71.408691514,41.72130952],[-71.408531514,41.72136252],[-71.408180514,41.72141852],[-71.407601514,41.72152552],[-71.406449514,41.72172052],[-71.406280514,41.72174252],[-71.405914514,41.72181752],[-71.405632514,41.72183752],[-71.405540514,41.72182552],[-71.405464514,41.72178652],[-71.405373513,41.72173452],[-71.405297513,41.72165052],[-71.405006513,41.72140452],[-71.404617513,41.72110652],[-71.404571513,41.72103052],[-71.404579513,41.720976519],[-71.404411513,41.72103852],[-71.403885513,41.721130519],[-71.403793513,41.72084452],[-71.403755513,41.72071452],[-71.403580513,41.720312519],[-71.403492513,41.72018452],[-71.403313513,41.71991752],[-71.402924513,41.719498519],[-71.402367512,41.72040152],[-71.401882735,41.720664029],[-71.401530343,41.720720424],[-71.401099814,41.720723389],[-71.399826512,41.72107552],[-71.399757511,41.72109052],[-71.399681511,41.72111052],[-71.399605511,41.72110752],[-71.399513512,41.72111352],[-71.399437512,41.72112452],[-71.399353511,41.72113552],[-71.399269511,41.72115052],[-71.399170511,41.72116152],[-71.399101511,41.72116752],[-71.398926511,41.72117152],[-71.398834512,41.72117752],[-71.398758511,41.72117952],[-71.398666511,41.72119052],[-71.398575511,41.72120552],[-71.398491511,41.72122952],[-71.398430511,41.72127152],[-71.398384511,41.72133552],[-71.398338511,41.72137752],[-71.398277511,41.72141852],[-71.398209511,41.72145152],[-71.398132511,41.721480521],[-71.398048511,41.72149552],[-71.397972511,41.72151052],[-71.397903511,41.72153952],[-71.397819511,41.72156352],[-71.397751511,41.72158752],[-71.397690511,41.72161152],[-71.397614511,41.72162652],[-71.397537511,41.721655521],[-71.397499511,41.72169152],[-71.397514511,41.72175452],[-71.397514511,41.72181352],[-71.397499511,41.72188052],[-71.397461511,41.72194452],[-71.397415511,41.72199952],[-71.397301511,41.72207852],[-71.397248511,41.72212452],[-71.397186511,41.72216652],[-71.397125511,41.72221352],[-71.397057511,41.72224552],[-71.396980511,41.72226552],[-71.396896511,41.722276521],[-71.39682851,41.72230052],[-71.396782511,41.72234652],[-71.396744511,41.72240552],[-71.396706511,41.722451521],[-71.396606511,41.722552521],[-71.396553511,41.72259852],[-71.39646151,41.72268152],[-71.396416511,41.722723521],[-71.396332511,41.722760521],[-71.39626351,41.72279852],[-71.396202511,41.72283552],[-71.39612651,41.72287352],[-71.396080511,41.72291452],[-71.396026511,41.722956521],[-71.395966511,41.72300752],[-71.395905511,41.723053521],[-71.39574551,41.723150521],[-71.39572251,41.72316552],[-71.395615511,41.723253521],[-71.39556151,41.723290521],[-71.39550851,41.723332521],[-71.39546251,41.72337752],[-71.39540951,41.72341552],[-71.39537051,41.723420521],[-71.39541651,41.723460521],[-71.39545451,41.72351352],[-71.39556951,41.723596521],[-71.39563051,41.723635521],[-71.39568351,41.723675521],[-71.395752511,41.723718521],[-71.39580551,41.723753521],[-71.39591251,41.72384152],[-71.395981511,41.723889521],[-71.39603451,41.723933521],[-71.39609551,41.72397752],[-71.39616451,41.724011521],[-71.396240511,41.72403752],[-71.396316511,41.72405852],[-71.396469511,41.724081521],[-71.396622511,41.72411452],[-71.396690511,41.724122521],[-71.396767511,41.724129521],[-71.396843511,41.724150521],[-71.396912511,41.724171521],[-71.396957511,41.724220521],[-71.396980511,41.724282521],[-71.39700351,41.724336521],[-71.397018511,41.72439052],[-71.397034511,41.724443521],[-71.397072511,41.724497521],[-71.397118511,41.724541521],[-71.39721751,41.724609521],[-71.397125511,41.724667521],[-71.396897511,41.724870521],[-71.396606511,41.724723521],[-71.396561511,41.724706521],[-71.39592051,41.72436852],[-71.395851511,41.724333521],[-71.39524851,41.724990521],[-71.39481451,41.725449521],[-71.394661511,41.725601521],[-71.39452451,41.725743521],[-71.39434851,41.725913521],[-71.39405851,41.726113521],[-71.39398951,41.726160522],[-71.39339451,41.726613521],[-71.392914509,41.726975522],[-71.39253251,41.727284522],[-71.392449509,41.727335521],[-71.392365509,41.727360521],[-71.392288509,41.727348522],[-71.39183151,41.727195521],[-71.391357509,41.727592521],[-71.390625509,41.728193521],[-71.390762509,41.728246522],[-71.391640509,41.728586522],[-71.39183151,41.728663522],[-71.39198351,41.728728522],[-71.39210551,41.729518522],[-71.39206751,41.729645522],[-71.392059509,41.729757522],[-71.392059509,41.729910522],[-71.392075509,41.730059522],[-71.39215851,41.730196522],[-71.39225851,41.730298522],[-71.392326509,41.730391522],[-71.39238051,41.730521522],[-71.39239151,41.730620522],[-71.39239551,41.730651522],[-71.39233451,41.730783522],[-71.39228151,41.730833522],[-71.39215951,41.730912522],[-71.392013509,41.730988522],[-71.391960509,41.731097522],[-71.39198351,41.731240522],[-71.391952509,41.731381522],[-71.39188451,41.731432522],[-71.39183051,41.731455522],[-71.39175451,41.731484523],[-71.391609509,41.731487522],[-71.39145751,41.731503523],[-71.391296509,41.731556522],[-71.39120551,41.731671522],[-71.391136509,41.731816523],[-71.391022509,41.732071522],[-71.390923509,41.732172522],[-71.390846509,41.732264523],[-71.390846509,41.732358523],[-71.390861509,41.732417523],[-71.390869509,41.732488522],[-71.39101251,41.732566522],[-71.391190497,41.73266823],[-71.391264536,41.732710245],[-71.391406873,41.732779604],[-71.391561085,41.732832349],[-71.391625482,41.732848915],[-71.391721509,41.732873522],[-71.39186751,41.732904523],[-71.392031509,41.732927523],[-71.392171509,41.732959523],[-71.39221851,41.732979523],[-71.392282276,41.732970573],[-71.392389262,41.732955088],[-71.392539842,41.732950704],[-71.39254551,41.732950522],[-71.392561926,41.732951941],[-71.392707771,41.732964167],[-71.392787538,41.732973415],[-71.39286951,41.732982523],[-71.39302151,41.733003523],[-71.39317151,41.733045522],[-71.393184126,41.733049362],[-71.393309384,41.733087305],[-71.393362809,41.733089081],[-71.39348051,41.733092522],[-71.393578506,41.7330878],[-71.393646447,41.733084188],[-71.393683004,41.733085371],[-71.39368951,41.733085522],[-71.39379551,41.733088522],[-71.393875985,41.733098512],[-71.393940572,41.733106139],[-71.394061911,41.733144013],[-71.394076511,41.733148522],[-71.39415951,41.733239523],[-71.394184738,41.733295022],[-71.394189527,41.733305467],[-71.394196026,41.733316455],[-71.394248511,41.733404522],[-71.394249185,41.733405439],[-71.394264418,41.7334178],[-71.394288109,41.733454961],[-71.394287493,41.733457499],[-71.394287511,41.733457522],[-71.394286729,41.733460649],[-71.394273693,41.733514361],[-71.394264009,41.733551529],[-71.39425751,41.733577522],[-71.394257048,41.733577314],[-71.394242786,41.733576491],[-71.394227128,41.733563801],[-71.394226511,41.733563523],[-71.394173511,41.733698523],[-71.39408951,41.733705523],[-71.39395151,41.733663523],[-71.39387551,41.733637522],[-71.39380751,41.733657523],[-71.393784511,41.733707523],[-71.39380651,41.733765523],[-71.39384451,41.733818523],[-71.39389151,41.733875523],[-71.393936511,41.733933523],[-71.393974511,41.733991523],[-71.39404351,41.734025522],[-71.39412751,41.734042522],[-71.39427951,41.734029523]]]]}}"}, +{"type": "precinct", "typeId": 3515, "areaId": 25987, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":326,\"NAME\":\"3515\",\"SHAPE_Length\":0.17099703828199,\"SHAPE_Area\":-0.00027324786885857},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.39186751,41.732904523],[-71.391721509,41.732873522],[-71.391625482,41.732848915],[-71.39172124,41.73287355],[-71.391824793,41.732895487],[-71.391867032,41.732904469],[-71.39186751,41.732904523]]],[[[-71.392561926,41.732951941],[-71.39254551,41.732950522],[-71.392539842,41.732950704],[-71.39254528,41.732950546],[-71.392561926,41.732951941]]],[[[-71.39186751,41.732904523],[-71.392031338,41.732927538],[-71.392171297,41.732959846],[-71.392218464,41.732979809],[-71.392282276,41.732970573],[-71.39221851,41.732979523],[-71.392171509,41.732959523],[-71.392031509,41.732927523],[-71.39186751,41.732904523]]],[[[-71.392869246,41.732982888],[-71.39302101,41.73300368],[-71.393171486,41.733045533],[-71.393184126,41.733049362],[-71.39317151,41.733045522],[-71.39302151,41.733003523],[-71.39286951,41.732982523],[-71.392787538,41.732973415],[-71.392869246,41.732982888]]],[[[-71.393480712,41.733092999],[-71.393578506,41.7330878],[-71.39348051,41.733092522],[-71.393362809,41.733089081],[-71.393480712,41.733092999]]],[[[-71.39379555,41.733089014],[-71.393875985,41.733098512],[-71.39379551,41.733088522],[-71.39368951,41.733085522],[-71.393683004,41.733085371],[-71.39379555,41.733089014]]],[[[-71.39374751,41.733229522],[-71.393864006,41.733236607],[-71.39374705,41.733229362],[-71.39373256,41.733229251],[-71.39374751,41.733229522]]],[[[-71.394076516,41.733148572],[-71.39415947,41.733239919],[-71.394184738,41.733295022],[-71.39415951,41.733239523],[-71.394076511,41.733148522],[-71.394061911,41.733144013],[-71.394076516,41.733148572]]],[[[-71.393627196,41.733279174],[-71.393633485,41.733380534],[-71.39363351,41.733380522],[-71.393627511,41.733279522],[-71.393658575,41.733255148],[-71.393627196,41.733279174]]],[[[-71.39402151,41.733312523],[-71.394090607,41.733387761],[-71.394021872,41.733312127],[-71.393933365,41.733260755],[-71.39402151,41.733312523]]],[[[-71.394248166,41.733404612],[-71.394249185,41.733405439],[-71.394248511,41.733404522],[-71.394196026,41.733316455],[-71.394248166,41.733404612]]],[[[-71.394286729,41.733460649],[-71.394287511,41.733457522],[-71.394287493,41.733457499],[-71.394286729,41.733460649]]],[[[-71.39412151,41.733428523],[-71.394167087,41.733506417],[-71.394114627,41.733416132],[-71.39412151,41.733428523]]],[[[-71.39287151,41.733508523],[-71.392896163,41.733517173],[-71.392871396,41.733508123],[-71.39284891,41.733497714],[-71.39287151,41.733508523]]],[[[-71.385493339,41.731840898],[-71.385438428,41.731954343],[-71.385402802,41.73207302],[-71.385408885,41.732189132],[-71.385496616,41.732281977],[-71.385530717,41.732334495],[-71.385575472,41.732455997],[-71.385591373,41.732562057],[-71.385562561,41.732677883],[-71.38554744,41.732785855],[-71.385561451,41.732890426],[-71.385681531,41.732957415],[-71.38580751,41.73302011],[-71.38587938,41.733071499],[-71.385986637,41.733155764],[-71.386102872,41.733222017],[-71.386211107,41.733306305],[-71.386289897,41.733415788],[-71.386373713,41.733514368],[-71.386456653,41.733538257],[-71.386579942,41.733517499],[-71.38671734,41.733459867],[-71.386843142,41.733399205],[-71.386967226,41.733325483],[-71.387060673,41.7332247],[-71.387137562,41.733130281],[-71.387175425,41.73305732],[-71.387191591,41.732944271],[-71.387246467,41.732832267],[-71.387364646,41.732764324],[-71.387486673,41.732696386],[-71.387626899,41.732643833],[-71.387773728,41.732603658],[-71.387914727,41.732562746],[-71.388063405,41.732529868],[-71.388206222,41.732496915],[-71.388345607,41.732435647],[-71.388425392,41.732341985],[-71.388480124,41.732240888],[-71.388466837,41.732156603],[-71.38834794,41.732111092],[-71.388345471,41.732108483],[-71.388416388,41.732093824],[-71.388534814,41.732075895],[-71.388673397,41.732000882],[-71.38880796,41.731938099],[-71.388935816,41.731869501],[-71.389068281,41.731818334],[-71.389211968,41.731793408],[-71.389362925,41.731801146],[-71.389454319,41.731843931],[-71.389540233,41.731931693],[-71.389665865,41.731948668],[-71.389793032,41.731996838],[-71.389927751,41.732055992],[-71.390049858,41.732117879],[-71.390115303,41.732214174],[-71.39018484,41.732363484],[-71.390282256,41.732456403],[-71.390428466,41.732527916],[-71.390581003,41.732559667],[-71.390742717,41.732562405],[-71.390804198,41.732530241],[-71.390829734,41.732505063],[-71.390869665,41.732488704],[-71.391012872,41.732566755],[-71.391131002,41.732634468],[-71.391190497,41.73266823],[-71.39101251,41.732566522],[-71.390869509,41.732488522],[-71.390861509,41.732417523],[-71.390846509,41.732358523],[-71.390846509,41.732264523],[-71.390923509,41.732172522],[-71.391022509,41.732071522],[-71.391136509,41.731816523],[-71.39120551,41.731671522],[-71.391296509,41.731556522],[-71.39145751,41.731503523],[-71.391609509,41.731487522],[-71.39175451,41.731484523],[-71.39183051,41.731455522],[-71.39188451,41.731432522],[-71.391952509,41.731381522],[-71.39198351,41.731240522],[-71.391960509,41.731097522],[-71.392013509,41.730988522],[-71.39215951,41.730912522],[-71.39228151,41.730833522],[-71.39233451,41.730783522],[-71.39239551,41.730651522],[-71.39239151,41.730620522],[-71.39238051,41.730521522],[-71.392326509,41.730391522],[-71.39225851,41.730298522],[-71.39215851,41.730196522],[-71.392075509,41.730059522],[-71.392059509,41.729910522],[-71.392059509,41.729757522],[-71.39206751,41.729645522],[-71.39210551,41.729518522],[-71.39198351,41.728728522],[-71.39183151,41.728663522],[-71.391640509,41.728586522],[-71.390762509,41.728246522],[-71.390625509,41.728193521],[-71.391357509,41.727592521],[-71.39183151,41.727195521],[-71.392288509,41.727348522],[-71.392365509,41.727360521],[-71.392449509,41.727335521],[-71.39253251,41.727284522],[-71.392914509,41.726975522],[-71.39339451,41.726613521],[-71.39398951,41.726160522],[-71.39405851,41.726113521],[-71.39434851,41.725913521],[-71.39452451,41.725743521],[-71.394661511,41.725601521],[-71.39481451,41.725449521],[-71.39524851,41.724990521],[-71.395851511,41.724333521],[-71.39592051,41.72436852],[-71.396561511,41.724706521],[-71.396606511,41.724723521],[-71.396897511,41.724870521],[-71.397125511,41.724667521],[-71.39721751,41.724609521],[-71.397118511,41.724541521],[-71.397072511,41.724497521],[-71.397034511,41.724443521],[-71.397018511,41.72439052],[-71.39700351,41.724336521],[-71.396980511,41.724282521],[-71.396957511,41.724220521],[-71.396912511,41.724171521],[-71.396843511,41.724150521],[-71.396767511,41.724129521],[-71.396690511,41.724122521],[-71.396622511,41.72411452],[-71.396469511,41.724081521],[-71.396316511,41.72405852],[-71.396240511,41.72403752],[-71.39616451,41.724011521],[-71.39609551,41.72397752],[-71.39603451,41.723933521],[-71.395981511,41.723889521],[-71.39591251,41.72384152],[-71.39580551,41.723753521],[-71.395752511,41.723718521],[-71.39568351,41.723675521],[-71.39563051,41.723635521],[-71.39556951,41.723596521],[-71.39545451,41.72351352],[-71.39541651,41.723460521],[-71.39537051,41.723420521],[-71.39540951,41.72341552],[-71.39546251,41.72337752],[-71.39550851,41.723332521],[-71.39556151,41.723290521],[-71.395615511,41.723253521],[-71.39572251,41.72316552],[-71.39574551,41.723150521],[-71.395905511,41.723053521],[-71.395966511,41.72300752],[-71.396026511,41.722956521],[-71.396080511,41.72291452],[-71.39612651,41.72287352],[-71.396202511,41.72283552],[-71.39626351,41.72279852],[-71.396332511,41.722760521],[-71.396416511,41.722723521],[-71.39646151,41.72268152],[-71.396553511,41.72259852],[-71.396606511,41.722552521],[-71.396706511,41.722451521],[-71.396744511,41.72240552],[-71.396782511,41.72234652],[-71.39682851,41.72230052],[-71.396896511,41.722276521],[-71.396980511,41.72226552],[-71.397057511,41.72224552],[-71.397125511,41.72221352],[-71.397186511,41.72216652],[-71.397248511,41.72212452],[-71.397301511,41.72207852],[-71.397415511,41.72199952],[-71.397461511,41.72194452],[-71.397499511,41.72188052],[-71.397514511,41.72181352],[-71.397514511,41.72175452],[-71.397499511,41.72169152],[-71.397537511,41.721655521],[-71.397614511,41.72162652],[-71.397690511,41.72161152],[-71.397751511,41.72158752],[-71.397819511,41.72156352],[-71.397903511,41.72153952],[-71.397972511,41.72151052],[-71.398048511,41.72149552],[-71.398132511,41.721480521],[-71.398209511,41.72145152],[-71.398277511,41.72141852],[-71.398338511,41.72137752],[-71.398384511,41.72133552],[-71.398430511,41.72127152],[-71.398491511,41.72122952],[-71.398575511,41.72120552],[-71.398666511,41.72119052],[-71.398758511,41.72117952],[-71.398834512,41.72117752],[-71.398926511,41.72117152],[-71.399101511,41.72116752],[-71.399170511,41.72116152],[-71.399269511,41.72115052],[-71.399353511,41.72113552],[-71.399437512,41.72112452],[-71.399513512,41.72111352],[-71.399605511,41.72110752],[-71.399681511,41.72111052],[-71.399757511,41.72109052],[-71.399826512,41.72107552],[-71.401099814,41.720723389],[-71.401530343,41.720720424],[-71.401882735,41.720664029],[-71.402367512,41.72040152],[-71.402924513,41.719498519],[-71.402740512,41.71956952],[-71.401978512,41.71970252],[-71.401321512,41.71981052],[-71.400993512,41.719862519],[-71.400147511,41.72001052],[-71.399063511,41.72019152],[-71.398903511,41.72022152],[-71.397972511,41.72037652],[-71.397636511,41.72042852],[-71.397049511,41.72053052],[-71.39654551,41.72059952],[-71.39632451,41.72060852],[-71.39611851,41.72060852],[-71.39590451,41.72057252],[-71.39541651,41.72046552],[-71.39524851,41.72042852],[-71.39452451,41.72025852],[-71.39435651,41.72021752],[-71.394058509,41.72014252],[-71.393127509,41.71993652],[-71.392502509,41.71980552],[-71.392288509,41.71975652],[-71.391846509,41.71966152],[-71.391678509,41.71962952],[-71.391197508,41.71953152],[-71.390602509,41.71941252],[-71.390389509,41.71936752],[-71.390137509,41.71932352],[-71.389923509,41.71927852],[-71.389809508,41.71924952],[-71.389748508,41.71923752],[-71.389717508,41.71922852],[-71.389633508,41.71919852],[-71.389580508,41.71918152],[-71.389496508,41.71914352],[-71.389443508,41.719121519],[-71.389320508,41.71906552],[-71.389259508,41.71903152],[-71.389229508,41.71901352],[-71.389160508,41.71898352],[-71.389091508,41.71893952],[-71.388954508,41.718848519],[-71.388908508,41.71882252],[-71.388763508,41.71872652],[-71.388496508,41.71856052],[-71.388367507,41.71846852],[-71.387855508,41.71888452],[-71.387527507,41.71915752],[-71.387276507,41.71937852],[-71.386997508,41.71962052],[-71.386719507,41.71986252],[-71.386307507,41.720209521],[-71.386231507,41.720269521],[-71.385796507,41.72063452],[-71.385346507,41.72100352],[-71.384910507,41.721381521],[-71.384781506,41.721474521],[-71.384460507,41.721593521],[-71.384254506,41.72167952],[-71.384033507,41.72177352],[-71.383904506,41.721713521],[-71.383370507,41.72126952],[-71.383087506,41.72101952],[-71.382797506,41.72075952],[-71.382271506,41.72027952],[-71.382218506,41.72023552],[-71.382179506,41.72020452],[-71.381927506,41.71998952],[-71.381332505,41.71946552],[-71.380829505,41.71903452],[-71.380363505,41.71859852],[-71.380943505,41.71819952],[-71.381195505,41.71805052],[-71.380829505,41.71776052],[-71.380348505,41.71731152],[-71.379883504,41.71688452],[-71.379509505,41.71657252],[-71.379089504,41.71616652],[-71.378853504,41.715982519],[-71.378365504,41.71554252],[-71.377777504,41.71504052],[-71.377342504,41.714622519],[-71.377579503,41.71449552],[-71.377709504,41.71443452],[-71.377655504,41.714394519],[-71.377601504,41.714350519],[-71.377449504,41.71422352],[-71.377212504,41.714057519],[-71.376976503,41.713904519],[-71.376785503,41.713764519],[-71.376663503,41.713681519],[-71.376511503,41.71356252],[-71.376381504,41.713466519],[-71.376160503,41.713286519],[-71.376091504,41.713224519],[-71.375915503,41.713079519],[-71.375862504,41.713031519],[-71.375809503,41.712987519],[-71.375748503,41.712939519],[-71.375679503,41.712877519],[-71.375603503,41.712798519],[-71.375572503,41.712762519],[-71.375549504,41.712727519],[-71.375488503,41.712647519],[-71.375465503,41.71260752],[-71.375435503,41.712558519],[-71.375389503,41.712469519],[-71.375351503,41.712371519],[-71.375278645,41.71217191],[-71.375169991,41.712195851],[-71.375167803,41.712196523],[-71.375047503,41.712267519],[-71.374923503,41.712344519],[-71.374814503,41.712430519],[-71.374712502,41.712509519],[-71.37466891,41.712532818],[-71.374579767,41.712580804],[-71.374433226,41.712586087],[-71.374329456,41.712617144],[-71.374312417,41.712684384],[-71.374281675,41.712750876],[-71.374264787,41.712755843],[-71.374134845,41.712794236],[-71.373986177,41.712825838],[-71.373833608,41.712854509],[-71.37368307,41.712874422],[-71.373515981,41.712883295],[-71.373370453,41.71288565],[-71.373215122,41.712890167],[-71.373051931,41.712903457],[-71.372867179,41.712923217],[-71.372697029,41.712951821],[-71.372555198,41.712982743],[-71.372401865,41.712980675],[-71.372239821,41.71296906],[-71.372081735,41.712947204],[-71.37194228,41.712918851],[-71.371782114,41.712914579],[-71.371611112,41.712926349],[-71.371462617,41.712931649],[-71.371293702,41.712922175],[-71.371135652,41.712898145],[-71.371033948,41.712917538],[-71.370940819,41.712967654],[-71.370804515,41.713042512],[-71.370667308,41.713110759],[-71.370539953,41.713167354],[-71.370390266,41.713203318],[-71.370268996,41.713223352],[-71.370170731,41.713307857],[-71.370123029,41.713427683],[-71.370064685,41.713527738],[-71.370045302,41.71364986],[-71.370048358,41.713769149],[-71.370047542,41.713886261],[-71.369997003,41.713990006],[-71.369879199,41.714076593],[-71.369780036,41.714151605],[-71.369777866,41.714183048],[-71.36981859,41.71422419],[-71.369949297,41.714248122],[-71.370115202,41.714268549],[-71.370248697,41.714317365],[-71.370289593,41.714333625],[-71.370333288,41.714370379],[-71.370302277,41.71447712],[-71.370298952,41.714490975],[-71.370275098,41.714590452],[-71.370264519,41.71470602],[-71.370288978,41.714837111],[-71.37032536,41.714943402],[-71.370392989,41.715053433],[-71.370492143,41.715120391],[-71.37061377,41.715183098],[-71.370753977,41.71524953],[-71.370882432,41.71531659],[-71.370996639,41.715320217],[-71.371173446,41.715338985],[-71.371185072,41.715340462],[-71.371339299,41.71535646],[-71.371448659,41.715356857],[-71.371559198,41.715332419],[-71.371673086,41.715250926],[-71.371813135,41.715198049],[-71.371899892,41.715221793],[-71.372037222,41.715277952],[-71.372155865,41.715353049],[-71.372153824,41.715366219],[-71.372003287,41.715382472],[-71.371841789,41.715431598],[-71.371724377,41.715474209],[-71.37150259,41.71552624],[-71.371378314,41.715567082],[-71.371266072,41.715603433],[-71.371125793,41.715648831],[-71.371029456,41.715699035],[-71.370977229,41.715730993],[-71.370943317,41.71576256],[-71.370927964,41.71579321],[-71.370886942,41.715793073],[-71.370807457,41.715704183],[-71.370743589,41.715620501],[-71.370622014,41.71554684],[-71.370482734,41.715489213],[-71.370339544,41.7154338],[-71.370201291,41.715366638],[-71.370079716,41.715293708],[-71.369972921,41.715201813],[-71.369886604,41.715111474],[-71.369770933,41.715031964],[-71.36962685,41.714966258],[-71.369488551,41.714907899],[-71.369351139,41.714863446],[-71.36918348,41.714819644],[-71.369026319,41.714806566],[-71.368864238,41.714796388],[-71.368684572,41.714788384],[-71.36851561,41.714784806],[-71.368378012,41.714772528],[-71.368265202,41.714698166],[-71.368162401,41.714595297],[-71.368068318,41.714498338],[-71.368055885,41.714488422],[-71.367960508,41.714412295],[-71.367857711,41.714307963],[-71.367770538,41.714205157],[-71.367702863,41.71410537],[-71.36767443,41.713980129],[-71.367644037,41.713857767],[-71.367638048,41.713742111],[-71.367633253,41.713728933],[-71.367622465,41.713735461],[-71.367481435,41.71379055],[-71.367330897,41.71380826],[-71.367170692,41.713807595],[-71.367014465,41.71380188],[-71.366861213,41.713788827],[-71.366694419,41.713756708],[-71.36655506,41.713711517],[-71.366422665,41.71364948],[-71.366308741,41.713599264],[-71.36634938,41.713518217],[-71.366396111,41.713399124],[-71.366409668,41.713278413],[-71.36637108,41.713209464],[-71.366220171,41.71314155],[-71.366142308,41.713099494],[-71.3661168,41.712977915],[-71.366093254,41.712852702],[-71.366039161,41.71276903],[-71.365975724,41.712761455],[-71.365855299,41.712800512],[-71.365776643,41.712875568],[-71.365733826,41.712991053],[-71.365655928,41.7130976],[-71.3655819,41.71320708],[-71.365478605,41.713314993],[-71.36537643,41.713398002],[-71.365261685,41.713464142],[-71.365123504,41.713527991],[-71.364996003,41.713607266],[-71.364883172,41.713677067],[-71.364765754,41.713707368],[-71.364722785,41.713704984],[-71.364620624,41.713649681],[-71.364511191,41.713656573],[-71.364489658,41.713663797],[-71.364351322,41.713611995],[-71.364205929,41.71359243],[-71.364098628,41.713572225],[-71.363951735,41.71362728],[-71.363819402,41.713696279],[-71.363657949,41.713737321],[-71.363515952,41.713785795],[-71.363446691,41.713775284],[-71.363370728,41.713744229],[-71.36327289,41.71376657],[-71.363131769,41.713834026],[-71.363001392,41.713900854],[-71.36288061,41.713991112],[-71.362783345,41.714074171],[-71.362709621,41.714138276],[-71.362585983,41.714221921],[-71.362455393,41.714316534],[-71.362337582,41.714400963],[-71.362205343,41.714481556],[-71.362086541,41.714544143],[-71.361935651,41.714610877],[-71.361797462,41.714675476],[-71.361655361,41.714742929],[-71.361526042,41.714798803],[-71.361358594,41.714858129],[-71.361287123,41.714881255],[-71.361260897,41.714998245],[-71.361167496,41.715084989],[-71.361047857,41.71515256],[-71.360907752,41.715213428],[-71.360765606,41.715286071],[-71.360618543,41.715360126],[-71.360474562,41.715420303],[-71.360346136,41.715485621],[-71.360232317,41.715556903],[-71.360099052,41.715615674],[-71.359949139,41.715680188],[-71.359806998,41.715749857],[-71.359669769,41.715820332],[-71.359518794,41.715895822],[-71.359362039,41.715961768],[-71.359210157,41.716032865],[-71.359053449,41.716091515],[-71.358900564,41.71616046],[-71.358760448,41.716224276],[-71.358628158,41.716282292],[-71.3584872,41.716326371],[-71.358338556,41.716353607],[-71.358368942,41.716471535],[-71.358352874,41.716532965],[-71.35824766,41.716631309],[-71.358121047,41.716716432],[-71.358009169,41.71679135],[-71.357893385,41.716865532],[-71.357750254,41.716938856],[-71.357622759,41.717008609],[-71.357556877,41.717069839],[-71.357573041,41.717131354],[-71.357560524,41.717243283],[-71.357537214,41.717363225],[-71.357519734,41.717483175],[-71.357485773,41.717588422],[-71.357404017,41.717678082],[-71.357295136,41.717749367],[-71.357153003,41.717811737],[-71.357016926,41.717855088],[-71.356871173,41.717884522],[-71.356889639,41.717898495],[-71.357021019,41.717964156],[-71.357162372,41.718005702],[-71.357331436,41.717993974],[-71.357495794,41.71795729],[-71.357639599,41.717925658],[-71.357783432,41.717894802],[-71.357935101,41.717853665],[-71.358091675,41.717816971],[-71.358242232,41.71779566],[-71.35846723,41.717748987],[-71.358622753,41.717718145],[-71.358777207,41.717701183],[-71.358937523,41.717683565],[-71.359090064,41.717662187],[-71.359258274,41.717635796],[-71.359403947,41.717614432],[-71.359577978,41.717591684],[-71.359726609,41.717571786],[-71.35988302,41.717552698],[-71.360048184,41.717537257],[-71.36020752,41.717521077],[-71.360385413,41.717504942],[-71.360543735,41.717491664],[-71.360726467,41.717482143],[-71.360873053,41.717475437],[-71.361021566,41.717467224],[-71.361212112,41.717457758],[-71.36139192,41.717445283],[-71.36157173,41.717432098],[-71.361717301,41.717429003],[-71.361895106,41.717425329],[-71.362086591,41.717418813],[-71.362277132,41.717411494],[-71.36242466,41.717406983],[-71.362582891,41.71740763],[-71.362746005,41.717408259],[-71.362892514,41.717408823],[-71.363067349,41.717409511],[-71.363248005,41.717414643],[-71.36343065,41.71741685],[-71.363610369,41.717417544],[-71.363796914,41.717423391],[-71.363985343,41.717432968],[-71.364132784,41.717440826],[-71.364290964,41.717450984],[-71.364453017,41.71746261],[-71.364609209,41.717474937],[-71.364768325,41.717490195],[-71.364915721,41.717504685],[-71.365089489,41.717519296],[-71.365272016,41.717534673],[-71.365417429,41.717549159],[-71.365563809,41.717567992],[-71.365710232,41.717581015],[-71.365855709,41.717594061],[-71.366041168,41.717608684],[-71.366232515,41.717624824],[-71.366377918,41.717644432],[-71.366526251,41.717664043],[-71.36671361,41.717689645],[-71.366899989,41.717717464],[-71.367041444,41.717742167],[-71.367184855,41.71776543],[-71.367373195,41.717789592],[-71.367518591,41.717812834],[-71.367594355,41.717825294],[-71.367664932,41.717836856],[-71.367805398,41.71786741],[-71.367942866,41.71790162],[-71.3680833,41.717933615],[-71.368224757,41.717957584],[-71.368409222,41.717981763],[-71.368556581,41.718000638],[-71.368734093,41.718036471],[-71.368814978,41.718052526],[-71.368979444,41.718064651],[-71.368997973,41.718063941],[-71.369007765,41.718066719],[-71.36934272,41.718161801],[-71.369378862,41.71816047],[-71.369794222,41.718268221],[-71.370154036,41.718357451],[-71.370277737,41.718408429],[-71.370621729,41.718565219],[-71.370638959,41.718573036],[-71.370728809,41.718639709],[-71.370745489,41.718648052],[-71.370849155,41.718690225],[-71.370867164,41.71870527],[-71.37092491,41.718753498],[-71.371289658,41.718972993],[-71.371316159,41.718954796],[-71.371397773,41.719019515],[-71.371516375,41.719102685],[-71.371598028,41.719148058],[-71.371635714,41.719169025],[-71.371647697,41.719175647],[-71.371693599,41.719209179],[-71.371720393,41.71922771],[-71.371792683,41.719253793],[-71.371905859,41.719272512],[-71.371990482,41.719328475],[-71.372013728,41.719350913],[-71.372065581,41.71937002],[-71.372063407,41.719373403],[-71.372075144,41.719380619],[-71.372279345,41.719506718],[-71.372290182,41.71949063],[-71.373427481,41.720158843],[-71.373431027,41.720156194],[-71.373469356,41.720176567],[-71.373522617,41.720194257],[-71.373615018,41.720301592],[-71.373751465,41.720346749],[-71.373882925,41.720398486],[-71.37393772,41.720427727],[-71.374012231,41.720458636],[-71.374011425,41.720464855],[-71.37396038,41.720500498],[-71.374017677,41.720546093],[-71.374140229,41.720626361],[-71.374263653,41.720713902],[-71.374376403,41.720796308],[-71.374472466,41.720889627],[-71.374581273,41.720928029],[-71.374618222,41.720936462],[-71.374709906,41.720958631],[-71.374762997,41.720969803],[-71.374872863,41.721044865],[-71.37498179,41.721116289],[-71.375138376,41.721214248],[-71.375261066,41.721271805],[-71.375384689,41.721336659],[-71.375532697,41.721403848],[-71.375646307,41.721500868],[-71.375752233,41.721578143],[-71.375888565,41.72163791],[-71.376039585,41.721694857],[-71.376071458,41.721708772],[-71.376091557,41.721717553],[-71.376099809,41.721744113],[-71.376169797,41.721794912],[-71.376261627,41.721837319],[-71.376336799,41.721906945],[-71.376412039,41.721941489],[-71.376560133,41.721996923],[-71.376683637,41.722077166],[-71.376800427,41.722141302],[-71.37692601,41.722204006],[-71.376973539,41.722251739],[-71.377072767,41.72233701],[-71.377172149,41.7223896],[-71.377278313,41.722407666],[-71.377309585,41.722432512],[-71.377398405,41.722517383],[-71.377443638,41.722536618],[-71.377502462,41.722552346],[-71.377607767,41.722636617],[-71.37771902,41.722707927],[-71.377820382,41.722795783],[-71.377916958,41.722880021],[-71.378024191,41.722962853],[-71.378126598,41.723047119],[-71.378224188,41.723128431],[-71.378323528,41.723220653],[-71.378408469,41.7233084],[-71.378489296,41.723408492],[-71.378568336,41.723501264],[-71.37865416,41.723590475],[-71.37874277,41.723692039],[-71.378827472,41.72379353],[-71.378901556,41.723892814],[-71.37897952,41.723989929],[-71.379061499,41.724079114],[-71.379160377,41.724142405],[-71.379220568,41.724260313],[-71.37926409,41.724330315],[-71.379318543,41.724382262],[-71.379380963,41.724418323],[-71.379435736,41.724446327],[-71.37947178,41.724467038],[-71.379515969,41.72452316],[-71.379574543,41.724624462],[-71.379617436,41.724737298],[-71.379662388,41.72484284],[-71.379719882,41.724950659],[-71.379769656,41.725056984],[-71.379816356,41.7251749],[-71.379869029,41.725281959],[-71.379926557,41.72538836],[-71.379976328,41.72549688],[-71.380027954,41.725608993],[-71.380073746,41.725723249],[-71.380119439,41.725841164],[-71.380158561,41.725947408],[-71.380162718,41.725960631],[-71.380185595,41.726118268],[-71.380198723,41.726183505],[-71.380268971,41.726279834],[-71.380320668,41.726386915],[-71.380336595,41.726424757],[-71.38036635,41.726560927],[-71.38038717,41.72661014],[-71.380430031,41.726725102],[-71.380460385,41.726835637],[-71.380506319,41.726939762],[-71.380572475,41.727053467],[-71.380616908,41.727127838],[-71.38072031,41.727207735],[-71.380862973,41.727253873],[-71.380986812,41.727326702],[-71.381092164,41.727408842],[-71.38122477,41.727478822],[-71.38137079,41.727493106],[-71.381517088,41.727554477],[-71.381632119,41.727636673],[-71.381749216,41.727707984],[-71.381827115,41.72781237],[-71.381921678,41.727903098],[-71.382005516,41.727998822],[-71.382031961,41.728044725],[-71.381971248,41.72815743],[-71.381992,41.728261322],[-71.382051455,41.728369165],[-71.382110768,41.728487894],[-71.382201177,41.728596752],[-71.382319146,41.728676777],[-71.382449631,41.728756906],[-71.382574308,41.728841352],[-71.382704922,41.728917845],[-71.382830723,41.728989234],[-71.382963574,41.729044735],[-71.383075842,41.729087683],[-71.383128254,41.729107747],[-71.383282413,41.729164138],[-71.383391721,41.72923974],[-71.383476263,41.729286136],[-71.383476824,41.729313694],[-71.383509559,41.729326282],[-71.383656627,41.729336928],[-71.383808837,41.729391121],[-71.383965794,41.729454078],[-71.384090443,41.729539208],[-71.384174288,41.729634199],[-71.384207618,41.729740414],[-71.384274974,41.729837447],[-71.384371569,41.729921656],[-71.384472005,41.730009506],[-71.384574015,41.73005386],[-71.384639833,41.730055138],[-71.384695518,41.730089703],[-71.384776322,41.730127335],[-71.38493594,41.730138107],[-71.385063806,41.730200759],[-71.385165326,41.730280673],[-71.385268352,41.730320705],[-71.385431704,41.730343051],[-71.38557553,41.730376149],[-71.385680857,41.730392948],[-71.385716458,41.730407757],[-71.385599292,41.730473526],[-71.385605024,41.73054685],[-71.38567909,41.730649034],[-71.385727167,41.730738637],[-71.385673302,41.730848492],[-71.385677537,41.730956598],[-71.385681733,41.731069804],[-71.385676185,41.731185127],[-71.385622323,41.731292764],[-71.385551897,41.731341519],[-71.385419426,41.731394123],[-71.385355046,41.731492991],[-71.385375451,41.731555558],[-71.385404101,41.731582641],[-71.385461573,41.731625897],[-71.38550846,41.731732926],[-71.385493339,41.731840898]]],[[[-71.394226511,41.733563523],[-71.394227128,41.733563801],[-71.394224705,41.733561838],[-71.394205107,41.733545972],[-71.394226511,41.733563523]]],[[[-71.39425751,41.733577522],[-71.394264009,41.733551529],[-71.394257286,41.733577327],[-71.394257048,41.733577314],[-71.39425751,41.733577522]]],[[[-71.393459231,41.733510705],[-71.393447432,41.733594547],[-71.39344751,41.733594522],[-71.39345951,41.733510523],[-71.39347016,41.733494435],[-71.393459231,41.733510705]]],[[[-71.39336551,41.733620523],[-71.393411852,41.733605829],[-71.393365656,41.733620183],[-71.39324665,41.733544514],[-71.393143155,41.733468241],[-71.392995764,41.733480133],[-71.392959527,41.733506302],[-71.39299551,41.733480522],[-71.39314351,41.733468523],[-71.39324651,41.733544523],[-71.39336551,41.733620523]]],[[[-71.390255855,41.73361833],[-71.390255588,41.733618506],[-71.390278564,41.733613807],[-71.390255855,41.73361833]]],[[[-71.39265558,41.733633358],[-71.392585543,41.733658691],[-71.39265551,41.733633522],[-71.392687478,41.733602914],[-71.39265558,41.733633358]]],[[[-71.39063696,41.733758714],[-71.390568266,41.73371445],[-71.390506082,41.733674907],[-71.39063696,41.733758714]]],[[[-71.392152571,41.73376104],[-71.392099939,41.73374931],[-71.391999441,41.733756912],[-71.39209951,41.733749522],[-71.392152571,41.73376104]]],[[[-71.391774165,41.733773519],[-71.391728398,41.733779139],[-71.39177451,41.733773523],[-71.391823324,41.733769918],[-71.391774165,41.733773519]]],[[[-71.390794948,41.733795934],[-71.390841509,41.733791523],[-71.390891028,41.733791523],[-71.390841234,41.733791366],[-71.390794948,41.733795934]]],[[[-71.391143509,41.733793523],[-71.391294654,41.733799881],[-71.391143395,41.733793094],[-71.391052165,41.733792351],[-71.391143509,41.733793523]]],[[[-71.39227351,41.733802523],[-71.392304509,41.733765523],[-71.39237451,41.733718523],[-71.392475542,41.733693621],[-71.392374463,41.733718145],[-71.392304041,41.733765464],[-71.39227348,41.733802186],[-71.39225583,41.733792701],[-71.39227351,41.733802523]]],[[[-71.390012336,41.733782503],[-71.389980467,41.733800623],[-71.390012509,41.733782523],[-71.390049934,41.733756588],[-71.390012336,41.733782503]]],[[[-71.391452509,41.733806522],[-71.39153122,41.733799884],[-71.391452161,41.733806467],[-71.391347628,41.73380211],[-71.391452509,41.733806522]]],[[[-71.389417508,41.733942522],[-71.389569509,41.733934523],[-71.389654656,41.733921908],[-71.389569501,41.733934203],[-71.38941732,41.733942381],[-71.389351467,41.733941106],[-71.389293397,41.733924156],[-71.389351509,41.733941523],[-71.389417508,41.733942522]]],[[[-71.389209308,41.733927636],[-71.389206143,41.7339473],[-71.389209496,41.733927596],[-71.389209308,41.733927636]]],[[[-71.389277048,41.734198768],[-71.389267245,41.73431516],[-71.389277509,41.734198523],[-71.389275703,41.734193103],[-71.389277048,41.734198768]]],[[[-71.389258479,41.734682499],[-71.389247203,41.734689872],[-71.389258509,41.734682523],[-71.389273509,41.734575523],[-71.389258479,41.734682499]]],[[[-71.38918142,41.734787782],[-71.38927628,41.73485966],[-71.389308215,41.734908843],[-71.389276509,41.734859523],[-71.389181509,41.734787523],[-71.389166454,41.73476134],[-71.38918142,41.734787782]]],[[[-71.389385362,41.735023553],[-71.389429085,41.735075622],[-71.389446577,41.735094576],[-71.389429509,41.735075523],[-71.389385509,41.735023523],[-71.389369693,41.735000831],[-71.389385362,41.735023553]]],[[[-71.381141343,41.735335135],[-71.381167506,41.735325524],[-71.381170948,41.735323803],[-71.381141343,41.735335135]]],[[[-71.381314506,41.735351523],[-71.381370577,41.735423614],[-71.381314686,41.735351424],[-71.381282299,41.735344572],[-71.381314506,41.735351523]]],[[[-71.389509293,41.735288472],[-71.389333461,41.735324436],[-71.389354188,41.735433381],[-71.389354471,41.735433325],[-71.389333509,41.735324523],[-71.389509509,41.735288523],[-71.389501636,41.735267391],[-71.389509293,41.735288472]]],[[[-71.381449506,41.735482524],[-71.381483267,41.735498189],[-71.381449364,41.735482373],[-71.381377503,41.735432518],[-71.381449506,41.735482524]]],[[[-71.381034349,41.73544851],[-71.380975161,41.735524065],[-71.381111898,41.735351846],[-71.381034349,41.73544851]]],[[[-71.380960349,41.735542974],[-71.380963411,41.735602367],[-71.380960517,41.735542758],[-71.380960349,41.735542974]]],[[[-71.381846915,41.735649566],[-71.381698397,41.735606283],[-71.381644059,41.735577543],[-71.381698506,41.735606523],[-71.381846507,41.735649523],[-71.381846915,41.735649566]]],[[[-71.389652309,41.735445217],[-71.389647393,41.735516998],[-71.389648415,41.73558014],[-71.389650203,41.735659223],[-71.389653935,41.73568312],[-71.389650509,41.735659523],[-71.389647509,41.735516523],[-71.389652509,41.735445523],[-71.389656588,41.735418455],[-71.389652309,41.735445217]]],[[[-71.381846915,41.735649566],[-71.381998507,41.735665523],[-71.382125506,41.735720523],[-71.381998752,41.735665319],[-71.381846915,41.735649566]]],[[[-71.382125506,41.735720523],[-71.382266506,41.735787523],[-71.382315825,41.735804285],[-71.382266232,41.735787211],[-71.382127737,41.735721504],[-71.382125506,41.735720523]]],[[[-71.381085077,41.735970117],[-71.381071506,41.735908524],[-71.381071335,41.735908332],[-71.381085077,41.735970117]]],[[[-71.389677054,41.735811786],[-71.389697292,41.735885946],[-71.389698208,41.73595707],[-71.389695827,41.735981657],[-71.389698509,41.735957523],[-71.389697509,41.735885523],[-71.389677509,41.735811523],[-71.389667657,41.735762262],[-71.389677054,41.735811786]]],[[[-71.389691401,41.736027363],[-71.389685823,41.736048641],[-71.389691509,41.736027524],[-71.389691732,41.736023946],[-71.389691401,41.736027363]]],[[[-71.38108014,41.736097443],[-71.381005209,41.736159662],[-71.381080506,41.736097523],[-71.381094156,41.736040517],[-71.38108014,41.736097443]]],[[[-71.389653373,41.736179382],[-71.389629517,41.736221301],[-71.389623534,41.736230487],[-71.389629509,41.736221524],[-71.389653509,41.736179523],[-71.389658542,41.736157613],[-71.389653373,41.736179382]]],[[[-71.380746506,41.736252523],[-71.380855506,41.736242524],[-71.380933977,41.736203931],[-71.380855279,41.736242177],[-71.380746658,41.73625215],[-71.380746506,41.736252523]]],[[[-71.382635507,41.736008524],[-71.382718507,41.736102524],[-71.382794507,41.736202524],[-71.382822397,41.736269569],[-71.382794838,41.736202093],[-71.382718812,41.736102123],[-71.382635905,41.736008573],[-71.38259601,41.735968129],[-71.382635507,41.736008524]]],[[[-71.380746506,41.736252523],[-71.380734606,41.736281066],[-71.380734636,41.73628121],[-71.380746506,41.736252523]]],[[[-71.389561303,41.736349051],[-71.389558784,41.736358539],[-71.38963303,41.736450438],[-71.389561509,41.736349523],[-71.389570861,41.736326143],[-71.389561303,41.736349051]]],[[[-71.382867507,41.736454524],[-71.382871507,41.736500523],[-71.382883799,41.736525928],[-71.382871846,41.736500909],[-71.382867687,41.736454435],[-71.382859559,41.736406458],[-71.382867507,41.736454524]]],[[[-71.380758186,41.736391525],[-71.38076343,41.736494579],[-71.380856644,41.73654469],[-71.38089422,41.736573976],[-71.380856506,41.736544524],[-71.380763506,41.736494524],[-71.380758506,41.736391524],[-71.380743648,41.736323426],[-71.380758186,41.736391525]]],[[[-71.381179506,41.736664524],[-71.381136517,41.736667551],[-71.381179361,41.736664812],[-71.381201507,41.736643421],[-71.381179506,41.736664524]]],[[[-71.382945241,41.736710138],[-71.382947487,41.736695922],[-71.382947459,41.736695831],[-71.382945241,41.736710138]]],[[[-71.381290286,41.736630898],[-71.381381078,41.736719319],[-71.381290506,41.736630524],[-71.381245122,41.736621007],[-71.381290286,41.736630898]]],[[[-71.389770264,41.736670767],[-71.38979005,41.736777539],[-71.389742579,41.736842317],[-71.389790509,41.736777523],[-71.389770509,41.736670524],[-71.389736813,41.736615631],[-71.389770264,41.736670767]]],[[[-71.388585054,41.736853399],[-71.388505622,41.73688714],[-71.388587377,41.736852837],[-71.388585054,41.736853399]]],[[[-71.388550714,41.737017082],[-71.388601693,41.736907204],[-71.388590888,41.736851987],[-71.388590613,41.736852054],[-71.388601508,41.736907523],[-71.388550714,41.737017082]]],[[[-71.388550714,41.737017082],[-71.388550509,41.737017524],[-71.388544511,41.737035861],[-71.388550714,41.737017082]]],[[[-71.382989507,41.737043523],[-71.38298772,41.73711439],[-71.382989907,41.737043025],[-71.382968287,41.736957861],[-71.382989507,41.737043523]]],[[[-71.38151046,41.73707595],[-71.381510506,41.737115701],[-71.381510506,41.737075524],[-71.381502928,41.737020453],[-71.38151046,41.73707595]]],[[[-71.388515509,41.737124523],[-71.388521982,41.737132891],[-71.388515526,41.737124471],[-71.388515509,41.737124523]]],[[[-71.389969086,41.737120677],[-71.38999921,41.737181126],[-71.389999475,41.737181454],[-71.389969509,41.737120524],[-71.389926677,41.737088496],[-71.389969086,41.737120677]]],[[[-71.388206315,41.73705636],[-71.388111396,41.737123068],[-71.388077337,41.737202573],[-71.388076682,41.737211065],[-71.388077508,41.737202523],[-71.388111508,41.737123523],[-71.388206509,41.737056524],[-71.388325966,41.737004546],[-71.388206315,41.73705636]]],[[[-71.390047746,41.73724102],[-71.390164465,41.737262961],[-71.390164509,41.737262523],[-71.390047509,41.737240523],[-71.390005137,41.73718844],[-71.390047746,41.73724102]]],[[[-71.388600508,41.737372524],[-71.388600745,41.737372845],[-71.388591973,41.737327907],[-71.388600508,41.737372524]]],[[[-71.390159099,41.737312272],[-71.390042473,41.737392405],[-71.390159509,41.737312524],[-71.390162988,41.737277734],[-71.390159099,41.737312272]]],[[[-71.389892509,41.737467524],[-71.390033509,41.737398523],[-71.390033656,41.737398423],[-71.389892509,41.737467524]]],[[[-71.387526119,41.73754347],[-71.387461047,41.737571269],[-71.387526508,41.737543524],[-71.387618786,41.737502137],[-71.387526119,41.73754347]]],[[[-71.388897509,41.737654523],[-71.388897908,41.737654617],[-71.388861848,41.737625936],[-71.388897509,41.737654523]]],[[[-71.387224019,41.737671583],[-71.387194203,41.73768332],[-71.387224508,41.737671523],[-71.387281164,41.73764751],[-71.387224019,41.737671583]]],[[[-71.389438854,41.737622052],[-71.389291979,41.73766511],[-71.389239998,41.737693579],[-71.389291509,41.737665524],[-71.389438509,41.737622524],[-71.389520869,41.737602058],[-71.389438854,41.737622052]]],[[[-71.382961506,41.737504524],[-71.382897507,41.737603524],[-71.382798507,41.737697524],[-71.382750893,41.737749466],[-71.382798316,41.737698005],[-71.382897505,41.737603794],[-71.382961927,41.737504219],[-71.382987456,41.737433811],[-71.382961506,41.737504524]]],[[[-71.387008943,41.737743112],[-71.386863043,41.737786168],[-71.386764992,41.737822819],[-71.386863508,41.737786523],[-71.387008508,41.737743524],[-71.387037284,41.737737511],[-71.387008943,41.737743112]]],[[[-71.389099509,41.737826523],[-71.389115062,41.737807082],[-71.389099835,41.737826037],[-71.389085756,41.737809067],[-71.389099509,41.737826523]]],[[[-71.381508748,41.73732625],[-71.381507173,41.737435745],[-71.381504411,41.737559784],[-71.381491135,41.737672857],[-71.381461334,41.737789413],[-71.381440845,41.737857706],[-71.381461506,41.737789524],[-71.381491507,41.737672524],[-71.381504506,41.737559524],[-71.381507506,41.737435523],[-71.381509816,41.737252311],[-71.381508748,41.73732625]]],[[[-71.386559509,41.737877276],[-71.386502903,41.73789777],[-71.386559508,41.737877524],[-71.386622793,41.737862952],[-71.386559509,41.737877276]]],[[[-71.386135795,41.737972532],[-71.386164406,41.737973305],[-71.386135851,41.737972518],[-71.386135795,41.737972532]]],[[[-71.382652507,41.737901523],[-71.38263524,41.737969994],[-71.382652977,41.737901414],[-71.382706517,41.737800953],[-71.382652507,41.737901523]]],[[[-71.386299822,41.737976014],[-71.386379508,41.737973524],[-71.386379933,41.737973059],[-71.386299822,41.737976014]]],[[[-71.381391141,41.738020981],[-71.381376765,41.738062905],[-71.381391506,41.738020523],[-71.381411886,41.737953271],[-71.381391141,41.738020981]]],[[[-71.385683018,41.738076214],[-71.385550751,41.738102407],[-71.385683508,41.738076524],[-71.385751179,41.738058666],[-71.385683018,41.738076214]]],[[[-71.384870508,41.738308524],[-71.385012507,41.738278524],[-71.385163508,41.738245524],[-71.385240508,41.738166524],[-71.385374508,41.738132524],[-71.385456594,41.738118843],[-71.3853742,41.738132485],[-71.385240039,41.738166197],[-71.385163352,41.738245384],[-71.385012735,41.738278257],[-71.384870886,41.738308279],[-71.384870508,41.738308524]]],[[[-71.381305087,41.738276362],[-71.381273466,41.738386398],[-71.381268007,41.738402382],[-71.381273506,41.738386524],[-71.381305506,41.738276524],[-71.381331869,41.738195717],[-71.381305087,41.738276362]]],[[[-71.382658507,41.738364524],[-71.382773507,41.738453524],[-71.382658851,41.738364289],[-71.382631511,41.738298114],[-71.382658507,41.738364524]]],[[[-71.384870508,41.738308524],[-71.38475849,41.73837922],[-71.384663319,41.738464037],[-71.384558438,41.738549508],[-71.384528996,41.738581002],[-71.384558508,41.738549524],[-71.384663507,41.738464524],[-71.384758507,41.738379524],[-71.384870508,41.738308524]]],[[[-71.384406252,41.738758675],[-71.384403656,41.738822977],[-71.384406507,41.738758524],[-71.384430404,41.73871497],[-71.384406252,41.738758675]]],[[[-71.383011507,41.738602524],[-71.383058507,41.738673524],[-71.383079507,41.738798523],[-71.383095111,41.738826918],[-71.383079694,41.738798634],[-71.383067744,41.738687547],[-71.383058457,41.738673359],[-71.383011839,41.738602235],[-71.382933129,41.738554292],[-71.383011507,41.738602524]]],[[[-71.381124166,41.738730468],[-71.381060227,41.738864163],[-71.381034458,41.738931648],[-71.381060506,41.738864524],[-71.381124507,41.738730524],[-71.38115262,41.73867695],[-71.381124166,41.738730468]]],[[[-71.384460243,41.738975299],[-71.384477112,41.73900292],[-71.384460508,41.738975524],[-71.384447169,41.738952011],[-71.384460243,41.738975299]]],[[[-71.383191701,41.739029228],[-71.383191609,41.739028788],[-71.383191507,41.739028524],[-71.383191701,41.739029228]]],[[[-71.384596825,41.739176615],[-71.384706047,41.739259465],[-71.384714831,41.739296979],[-71.384706508,41.739259524],[-71.384588336,41.739165186],[-71.384596825,41.739176615]]],[[[-71.380969488,41.739109362],[-71.380952844,41.73916064],[-71.38093402,41.739218593],[-71.380894705,41.739320259],[-71.380918506,41.739259524],[-71.380934506,41.739218524],[-71.380969507,41.739109524],[-71.380975652,41.739092034],[-71.380969488,41.739109362]]],[[[-71.383291507,41.739408524],[-71.383291943,41.739410998],[-71.383291712,41.739408309],[-71.383273582,41.739333113],[-71.383291507,41.739408524]]],[[[-71.383434058,41.73940946],[-71.383378294,41.739448166],[-71.383377419,41.739449946],[-71.383378507,41.739448524],[-71.383434507,41.739409524],[-71.383578427,41.739405526],[-71.383434058,41.73940946]]],[[[-71.383736507,41.739431524],[-71.383893438,41.739454514],[-71.38373691,41.739431492],[-71.38361054,41.739410795],[-71.383736507,41.739431524]]],[[[-71.384068508,41.739471524],[-71.384138781,41.739483015],[-71.384068555,41.739471208],[-71.383893492,41.739454522],[-71.384068508,41.739471524]]],[[[-71.384719088,41.739428594],[-71.384694146,41.739545933],[-71.384669824,41.739620841],[-71.384694508,41.739545524],[-71.384719507,41.739428524],[-71.384718921,41.739361115],[-71.384719088,41.739428594]]],[[[-71.384333507,41.739563524],[-71.384403976,41.739626443],[-71.384333574,41.739563294],[-71.384301728,41.739543737],[-71.384333507,41.739563524]]],[[[-71.384588507,41.739816524],[-71.384606507,41.739777524],[-71.384625103,41.73973464],[-71.384606497,41.739777348],[-71.384588504,41.739816367],[-71.384542664,41.739770331],[-71.384478484,41.739699901],[-71.384542507,41.739770524],[-71.384588507,41.739816524]]]]}}"}, +{"type": "precinct", "typeId": 3516, "areaId": 25988, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":327,\"NAME\":\"3516\",\"SHAPE_Length\":0.049864564341219,\"SHAPE_Area\":-8.025365336522e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.375278645,41.71217191],[-71.375351503,41.712371519],[-71.375389503,41.712469519],[-71.375435503,41.712558519],[-71.375465503,41.71260752],[-71.375488503,41.712647519],[-71.375549504,41.712727519],[-71.375572503,41.712762519],[-71.375603503,41.712798519],[-71.375679503,41.712877519],[-71.375748503,41.712939519],[-71.375809503,41.712987519],[-71.375862504,41.713031519],[-71.375915503,41.713079519],[-71.376091504,41.713224519],[-71.376160503,41.713286519],[-71.376381504,41.713466519],[-71.376511503,41.71356252],[-71.376663503,41.713681519],[-71.376785503,41.713764519],[-71.376976503,41.713904519],[-71.377212504,41.714057519],[-71.377449504,41.71422352],[-71.377601504,41.714350519],[-71.377655504,41.714394519],[-71.377709504,41.71443452],[-71.377579503,41.71449552],[-71.377342504,41.714622519],[-71.377777504,41.71504052],[-71.378365504,41.71554252],[-71.378853504,41.715982519],[-71.379089504,41.71616652],[-71.379509505,41.71657252],[-71.379883504,41.71688452],[-71.380348505,41.71731152],[-71.380829505,41.71776052],[-71.381195505,41.71805052],[-71.380943505,41.71819952],[-71.380363505,41.71859852],[-71.380829505,41.71903452],[-71.381332505,41.71946552],[-71.381927506,41.71998952],[-71.382179506,41.72020452],[-71.382218506,41.72023552],[-71.382271506,41.72027952],[-71.382797506,41.72075952],[-71.383087506,41.72101952],[-71.383370507,41.72126952],[-71.383904506,41.721713521],[-71.384033507,41.72177352],[-71.384254506,41.72167952],[-71.384460507,41.721593521],[-71.384781506,41.721474521],[-71.384910507,41.721381521],[-71.385346507,41.72100352],[-71.385796507,41.72063452],[-71.386231507,41.720269521],[-71.386307507,41.720209521],[-71.386719507,41.71986252],[-71.386997508,41.71962052],[-71.387276507,41.71937852],[-71.387527507,41.71915752],[-71.387855508,41.71888452],[-71.388367507,41.71846852],[-71.388206508,41.718363519],[-71.387924507,41.71817652],[-71.387230508,41.71776252],[-71.386215507,41.717157519],[-71.385322506,41.71654652],[-71.386726507,41.715089519],[-71.387237507,41.714506519],[-71.387360507,41.714369519],[-71.386765506,41.714052519],[-71.386146507,41.713710519],[-71.385536506,41.713393519],[-71.384941506,41.713077519],[-71.384308506,41.712743519],[-71.384003506,41.712570518],[-71.383880506,41.712523519],[-71.383659506,41.712455519],[-71.383141505,41.712128519],[-71.383103505,41.712107519],[-71.382477505,41.711687519],[-71.381798505,41.711210518],[-71.381058505,41.710726519],[-71.381157505,41.710575519],[-71.381218505,41.710452518],[-71.381371505,41.710265519],[-71.381576505,41.710026519],[-71.381714505,41.709879518],[-71.381882505,41.709732518],[-71.382072505,41.709602519],[-71.382332505,41.709416518],[-71.382606506,41.709226518],[-71.382805505,41.709055518],[-71.382942505,41.708913518],[-71.382991505,41.708852518],[-71.382874505,41.708792518],[-71.382828505,41.708771518],[-71.382736505,41.708723518],[-71.382599505,41.708686518],[-71.382462505,41.708639518],[-71.382355506,41.708560518],[-71.382233505,41.708482518],[-71.382111505,41.708417518],[-71.381981505,41.708370518],[-71.381844505,41.708323518],[-71.381706505,41.708281518],[-71.381676505,41.708290518],[-71.381660505,41.708322518],[-71.381683505,41.708425518],[-71.381752505,41.708492519],[-71.381897505,41.708547518],[-71.381966505,41.708582518],[-71.382011505,41.708626518],[-71.382004505,41.708666518],[-71.381920505,41.708704518],[-71.381782505,41.708689518],[-71.381683505,41.708642518],[-71.381577504,41.708567518],[-71.381447505,41.708502518],[-71.381386505,41.708409518],[-71.381287504,41.708303518],[-71.381172505,41.708215518],[-71.381081505,41.708204518],[-71.381035504,41.708205518],[-71.380890505,41.708235518],[-71.380791505,41.708304518],[-71.380745504,41.708346518],[-71.380699504,41.708360518],[-71.380570504,41.708349518],[-71.380531504,41.708328518],[-71.380424505,41.708262518],[-71.380379505,41.708245518],[-71.380257504,41.708230518],[-71.380218504,41.708226518],[-71.380127505,41.708214518],[-71.380028504,41.708212518],[-71.379875505,41.708229518],[-71.379715504,41.708282518],[-71.379639504,41.708364518],[-71.379639504,41.708396518],[-71.379700505,41.708430518],[-71.379822504,41.708509518],[-71.379799505,41.708591518],[-71.379715504,41.708696518],[-71.379562504,41.708771518],[-71.379387504,41.708811518],[-71.379242504,41.708841519],[-71.379082504,41.708885518],[-71.378929504,41.708933518],[-71.378776504,41.708985518],[-71.378756504,41.709006518],[-71.378708504,41.709054519],[-71.378685504,41.709163518],[-71.378632504,41.709295518],[-71.378548504,41.709418518],[-71.378487504,41.709518518],[-71.378433504,41.709641519],[-71.378418504,41.709772519],[-71.378418504,41.709884518],[-71.378380504,41.709957518],[-71.378303504,41.710017518],[-71.378166504,41.710097518],[-71.378013504,41.710181519],[-71.377892503,41.710278519],[-71.377800504,41.710361519],[-71.377685504,41.710445518],[-71.377541503,41.710502518],[-71.377443503,41.710512519],[-71.377443344,41.710512544],[-71.377443984,41.710513461],[-71.377362839,41.710525587],[-71.377260183,41.710512603],[-71.377153503,41.710540518],[-71.37709389,41.710634984],[-71.377088545,41.710643824],[-71.377069414,41.710677359],[-71.377022503,41.710760518],[-71.376952504,41.710857518],[-71.376952327,41.710857664],[-71.376952293,41.710857711],[-71.376845244,41.710945848],[-71.376803002,41.710974071],[-71.376609503,41.711105519],[-71.376549503,41.711194519],[-71.376583386,41.711249328],[-71.376640252,41.711211482],[-71.376707098,41.711148796],[-71.376726503,41.711130519],[-71.376726797,41.711130323],[-71.376740538,41.711117437],[-71.37679744,41.711078872],[-71.37684032,41.711095132],[-71.37683992,41.711144895],[-71.376833083,41.711236418],[-71.376831504,41.711259519],[-71.376831346,41.711259677],[-71.376831338,41.711259781],[-71.376825646,41.711265377],[-71.376783503,41.711307519],[-71.376748503,41.711323518],[-71.37673461,41.711327687],[-71.376606928,41.711368671],[-71.376543765,41.711404154],[-71.376481504,41.711439518],[-71.376386079,41.711509179],[-71.37638425,41.711510514],[-71.37632147,41.711566141],[-71.376278503,41.711604519],[-71.376197503,41.711698519],[-71.376176503,41.711741519],[-71.376174148,41.711745861],[-71.376147837,41.711800884],[-71.376213822,41.711864783],[-71.376213172,41.711872173],[-71.376213504,41.711872519],[-71.376203503,41.711985519],[-71.376177999,41.712045528],[-71.376169456,41.712065869],[-71.376090072,41.712113374],[-71.375946813,41.712144392],[-71.375938504,41.712146519],[-71.375912179,41.712157049],[-71.375875886,41.712172042],[-71.375803504,41.712202519],[-71.375799563,41.712207691],[-71.375789416,41.71222321],[-71.375791798,41.712225149],[-71.375947245,41.712284144],[-71.375952094,41.712285338],[-71.375953493,41.712286515],[-71.376020503,41.712342519],[-71.375986503,41.712390519],[-71.375854503,41.712465519],[-71.375854172,41.712465716],[-71.375819072,41.71247278],[-71.375732503,41.712490519],[-71.375726971,41.712488839],[-71.3756022,41.712461807],[-71.375595571,41.712449176],[-71.375562885,41.712387015],[-71.375561503,41.712384519],[-71.375556885,41.712360303],[-71.375540023,41.712274945],[-71.375531219,41.71222573],[-71.375524516,41.712190585],[-71.37540141,41.712151534],[-71.375285825,41.712170329],[-71.375278645,41.71217191]]]]}}"}, +{"type": "precinct", "typeId": 3517, "areaId": 25989, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":328,\"NAME\":\"3517\",\"SHAPE_Length\":0.058205715794019,\"SHAPE_Area\":-0.00010232458014022},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.388367507,41.71846852],[-71.388496508,41.71856052],[-71.388763508,41.71872652],[-71.388908508,41.71882252],[-71.388954508,41.718848519],[-71.389091508,41.71893952],[-71.389160508,41.71898352],[-71.389229508,41.71901352],[-71.389259508,41.71903152],[-71.389320508,41.71906552],[-71.389443508,41.719121519],[-71.389496508,41.71914352],[-71.389580508,41.71918152],[-71.389633508,41.71919852],[-71.389717508,41.71922852],[-71.389748508,41.71923752],[-71.389809508,41.71924952],[-71.389923509,41.71927852],[-71.390137509,41.71932352],[-71.390389509,41.71936752],[-71.390602509,41.71941252],[-71.391197508,41.71953152],[-71.391678509,41.71962952],[-71.391846509,41.71966152],[-71.392288509,41.71975652],[-71.392502509,41.71980552],[-71.393127509,41.71993652],[-71.394058509,41.72014252],[-71.39435651,41.72021752],[-71.39452451,41.72025852],[-71.39524851,41.72042852],[-71.39541651,41.72046552],[-71.39590451,41.72057252],[-71.39611851,41.72060852],[-71.39632451,41.72060852],[-71.39654551,41.72059952],[-71.397049511,41.72053052],[-71.397636511,41.72042852],[-71.397972511,41.72037652],[-71.398903511,41.72022152],[-71.399063511,41.72019152],[-71.400147511,41.72001052],[-71.400993512,41.719862519],[-71.401321512,41.71981052],[-71.401978512,41.71970252],[-71.402740512,41.71956952],[-71.402924513,41.719498519],[-71.402558513,41.71909552],[-71.402474512,41.719012519],[-71.402061512,41.718543519],[-71.401993512,41.71847252],[-71.401642512,41.718110519],[-71.401604512,41.718075519],[-71.401465512,41.717932519],[-71.401260512,41.717722519],[-71.401024512,41.717484519],[-71.400665512,41.717127519],[-71.400627512,41.717082519],[-71.400528512,41.716990519],[-71.400413512,41.716875519],[-71.400330512,41.716796519],[-71.400253512,41.716716519],[-71.400101512,41.716549519],[-71.399918511,41.716318519],[-71.399841511,41.716194519],[-71.399788512,41.716114519],[-71.399742511,41.716034519],[-71.399689511,41.715954519],[-71.399628511,41.715838519],[-71.399574512,41.715722519],[-71.399521511,41.715601519],[-71.399475511,41.715467519],[-71.399437511,41.715324519],[-71.399399511,41.715185519],[-71.399330511,41.714804519],[-71.399300511,41.714521518],[-71.399300511,41.714489519],[-71.399285511,41.714384518],[-71.399139511,41.714389519],[-71.399063511,41.714386518],[-71.398994511,41.714392519],[-71.39893351,41.714384518],[-71.398865511,41.714363518],[-71.398788511,41.714329519],[-71.398727511,41.714312519],[-71.398651511,41.714296519],[-71.398590511,41.714279519],[-71.398529511,41.714276519],[-71.39846851,41.714268518],[-71.398422511,41.714264519],[-71.398367511,41.714272519],[-71.39827051,41.714286518],[-71.398186511,41.714301519],[-71.39811751,41.714320519],[-71.39804151,41.714344518],[-71.39796451,41.714378519],[-71.397873511,41.714407519],[-71.397797511,41.714422518],[-71.39770551,41.714424518],[-71.397621511,41.714434519],[-71.39753751,41.714450519],[-71.397392511,41.714502518],[-71.39731651,41.714522519],[-71.397232511,41.714541518],[-71.39714851,41.714579518],[-71.39706451,41.714604519],[-71.39691951,41.714625519],[-71.39682851,41.714640519],[-71.39670651,41.714679519],[-71.396553511,41.714713519],[-71.39647751,41.714742519],[-71.39644751,41.714748519],[-71.39640051,41.714757519],[-71.39633251,41.714767519],[-71.39625651,41.714801519],[-71.39619551,41.714838519],[-71.39611151,41.714840519],[-71.39603451,41.714823519],[-71.39596551,41.714793519],[-71.39589751,41.714749519],[-71.39579851,41.714697519],[-71.39572951,41.714663519],[-71.39559251,41.714621519],[-71.39540151,41.714611519],[-71.39521851,41.714615519],[-71.39504351,41.714632519],[-71.39486751,41.714667519],[-71.39471451,41.714702519],[-71.39465351,41.714726519],[-71.394508509,41.714787519],[-71.39436351,41.714813519],[-71.394283509,41.714814519],[-71.39418851,41.714817519],[-71.394043509,41.714811519],[-71.393951509,41.714758519],[-71.393906509,41.714651519],[-71.39382251,41.714599519],[-71.39368451,41.714602519],[-71.393547509,41.714618519],[-71.393387509,41.714613519],[-71.393242509,41.714512519],[-71.393133509,41.714472519],[-71.393104509,41.714461519],[-71.392975509,41.714369519],[-71.392853509,41.714291519],[-71.392776509,41.714265518],[-71.392578508,41.714247519],[-71.392525509,41.714198519],[-71.392502509,41.714073519],[-71.392410509,41.714016519],[-71.392250509,41.713970519],[-71.392113508,41.713905519],[-71.391975508,41.713831519],[-71.391853509,41.713793519],[-71.391815508,41.713776519],[-71.391655509,41.713726519],[-71.391517509,41.713679519],[-71.391357508,41.713619519],[-71.391251508,41.713566518],[-71.391238508,41.713560519],[-71.391075508,41.713499519],[-71.390999508,41.713469519],[-71.390884508,41.713435519],[-71.390724508,41.713430519],[-71.390602508,41.713374519],[-71.390328508,41.713235518],[-71.390068508,41.713097518],[-71.389923508,41.713019518],[-71.389786508,41.712936519],[-71.389610508,41.712840519],[-71.389473508,41.712762519],[-71.389351508,41.712679519],[-71.389221508,41.712592518],[-71.389076508,41.712460519],[-71.388992507,41.712362519],[-71.388908508,41.712274519],[-71.388878507,41.712194519],[-71.388832507,41.712114519],[-71.388841507,41.712091519],[-71.388878507,41.712000519],[-71.388969507,41.711836518],[-71.388939508,41.711733518],[-71.388847508,41.711654518],[-71.388718507,41.711625519],[-71.388443507,41.711608519],[-71.388222507,41.711606519],[-71.388107508,41.711606519],[-71.387955507,41.711596518],[-71.387802507,41.711640518],[-71.387695507,41.711646519],[-71.387642507,41.711607519],[-71.387695507,41.711502518],[-71.387711507,41.711488519],[-71.387726507,41.711421518],[-71.387619507,41.711355519],[-71.387512507,41.711294519],[-71.387436507,41.711224518],[-71.387405507,41.711189518],[-71.387230507,41.711075518],[-71.387131507,41.710996518],[-71.387024507,41.710895518],[-71.386940506,41.710807519],[-71.386940506,41.710757518],[-71.386963507,41.710621518],[-71.386902506,41.710528518],[-71.386818507,41.710498519],[-71.386673507,41.710501518],[-71.386543507,41.710459519],[-71.386513506,41.710424518],[-71.386467507,41.710366518],[-71.386459506,41.710258518],[-71.386513506,41.710158518],[-71.386604507,41.710066518],[-71.386597507,41.710026518],[-71.386536506,41.709991519],[-71.386391507,41.709989518],[-71.386223506,41.709984518],[-71.386093507,41.709928518],[-71.385986506,41.709831518],[-71.385933506,41.709814518],[-71.385803507,41.709808518],[-71.385696506,41.709738519],[-71.385574507,41.709669518],[-71.385506506,41.709625518],[-71.385376507,41.709565518],[-71.385315506,41.709453518],[-71.385254506,41.709387518],[-71.385170506,41.709335518],[-71.385025506,41.709320518],[-71.384865506,41.709337518],[-71.384712506,41.709304518],[-71.384537506,41.709294518],[-71.384430506,41.709220518],[-71.384392506,41.709171518],[-71.384399506,41.709045518],[-71.384369506,41.708955518],[-71.384300506,41.708929518],[-71.384148506,41.708978518],[-71.384033506,41.708998519],[-71.383926506,41.709014518],[-71.383919505,41.709073518],[-71.383919505,41.709136518],[-71.383865506,41.709155519],[-71.383797506,41.709156518],[-71.383736506,41.709135519],[-71.383705505,41.709095519],[-71.383713506,41.709041518],[-71.383728505,41.708995518],[-71.383705505,41.708937518],[-71.383644505,41.708912518],[-71.383522506,41.708919518],[-71.383461506,41.708956518],[-71.383423506,41.708961518],[-71.383278505,41.708942518],[-71.383194506,41.708934518],[-71.383118505,41.708918518],[-71.382991505,41.708852518],[-71.382942505,41.708913518],[-71.382805505,41.709055518],[-71.382606506,41.709226518],[-71.382332505,41.709416518],[-71.382072505,41.709602519],[-71.381882505,41.709732518],[-71.381714505,41.709879518],[-71.381576505,41.710026519],[-71.381371505,41.710265519],[-71.381218505,41.710452518],[-71.381157505,41.710575519],[-71.381058505,41.710726519],[-71.381798505,41.711210518],[-71.382477505,41.711687519],[-71.383103505,41.712107519],[-71.383141505,41.712128519],[-71.383659506,41.712455519],[-71.383880506,41.712523519],[-71.384003506,41.712570518],[-71.384308506,41.712743519],[-71.384941506,41.713077519],[-71.385536506,41.713393519],[-71.386146507,41.713710519],[-71.386765506,41.714052519],[-71.387360507,41.714369519],[-71.387237507,41.714506519],[-71.386726507,41.715089519],[-71.385322506,41.71654652],[-71.386215507,41.717157519],[-71.387230508,41.71776252],[-71.387924507,41.71817652],[-71.388206508,41.718363519],[-71.388367507,41.71846852]]]]}}"}, +{"type": "precinct", "typeId": 3518, "areaId": 26002, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":341,\"NAME\":\"3518\",\"SHAPE_Length\":0.1856447383228,\"SHAPE_Area\":-0.00055555148475544},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.382991505,41.708852518],[-71.383118505,41.708918518],[-71.383194506,41.708934518],[-71.383278505,41.708942518],[-71.383423506,41.708961518],[-71.383461506,41.708956518],[-71.383522506,41.708919518],[-71.383644505,41.708912518],[-71.383705505,41.708937518],[-71.383728505,41.708995518],[-71.383713506,41.709041518],[-71.383705505,41.709095519],[-71.383736506,41.709135519],[-71.383797506,41.709156518],[-71.383865506,41.709155519],[-71.383919505,41.709136518],[-71.383919505,41.709073518],[-71.383926506,41.709014518],[-71.384033506,41.708998519],[-71.384148506,41.708978518],[-71.384300506,41.708929518],[-71.384369506,41.708955518],[-71.384399506,41.709045518],[-71.384392506,41.709171518],[-71.384430506,41.709220518],[-71.384537506,41.709294518],[-71.384712506,41.709304518],[-71.384865506,41.709337518],[-71.385025506,41.709320518],[-71.385170506,41.709335518],[-71.385254506,41.709387518],[-71.385315506,41.709453518],[-71.385376507,41.709565518],[-71.385506506,41.709625518],[-71.385574507,41.709669518],[-71.385696506,41.709738519],[-71.385803507,41.709808518],[-71.385933506,41.709814518],[-71.385986506,41.709831518],[-71.386093507,41.709928518],[-71.386223506,41.709984518],[-71.386391507,41.709989518],[-71.386536506,41.709991519],[-71.386597507,41.710026518],[-71.386604507,41.710066518],[-71.386513506,41.710158518],[-71.386459506,41.710258518],[-71.386467507,41.710366518],[-71.386513506,41.710424518],[-71.386543507,41.710459519],[-71.386673507,41.710501518],[-71.386818507,41.710498519],[-71.386902506,41.710528518],[-71.386963507,41.710621518],[-71.386940506,41.710757518],[-71.386940506,41.710807519],[-71.387024507,41.710895518],[-71.387131507,41.710996518],[-71.387230507,41.711075518],[-71.387405507,41.711189518],[-71.387436507,41.711224518],[-71.387512507,41.711294519],[-71.387619507,41.711355519],[-71.387726507,41.711421518],[-71.387711507,41.711488519],[-71.387695507,41.711502518],[-71.387642507,41.711607519],[-71.387695507,41.711646519],[-71.387802507,41.711640518],[-71.387955507,41.711596518],[-71.388107508,41.711606519],[-71.388222507,41.711606519],[-71.388443507,41.711608519],[-71.388718507,41.711625519],[-71.388847508,41.711654518],[-71.388939508,41.711733518],[-71.388969507,41.711836518],[-71.388878507,41.712000519],[-71.388841507,41.712091519],[-71.388832507,41.712114519],[-71.388878507,41.712194519],[-71.388908508,41.712274519],[-71.388992507,41.712362519],[-71.389076508,41.712460519],[-71.389221508,41.712592518],[-71.389351508,41.712679519],[-71.389473508,41.712762519],[-71.389610508,41.712840519],[-71.389786508,41.712936519],[-71.389923508,41.713019518],[-71.390068508,41.713097518],[-71.390328508,41.713235518],[-71.390602508,41.713374519],[-71.390724508,41.713430519],[-71.390884508,41.713435519],[-71.390999508,41.713469519],[-71.391075508,41.713499519],[-71.391238508,41.713560519],[-71.391251508,41.713566518],[-71.391357508,41.713619519],[-71.391517509,41.713679519],[-71.391655509,41.713726519],[-71.391815508,41.713776519],[-71.391853509,41.713793519],[-71.391975508,41.713831519],[-71.392113508,41.713905519],[-71.392250509,41.713970519],[-71.392410509,41.714016519],[-71.392502509,41.714073519],[-71.392525509,41.714198519],[-71.392578508,41.714247519],[-71.392776509,41.714265518],[-71.392853509,41.714291519],[-71.392975509,41.714369519],[-71.393104509,41.714461519],[-71.393133509,41.714472519],[-71.393242509,41.714512519],[-71.393387509,41.714613519],[-71.393547509,41.714618519],[-71.39368451,41.714602519],[-71.39382251,41.714599519],[-71.393906509,41.714651519],[-71.393951509,41.714758519],[-71.394043509,41.714811519],[-71.39418851,41.714817519],[-71.394283509,41.714814519],[-71.39436351,41.714813519],[-71.394508509,41.714787519],[-71.39465351,41.714726519],[-71.39471451,41.714702519],[-71.39486751,41.714667519],[-71.39504351,41.714632519],[-71.39521851,41.714615519],[-71.39540151,41.714611519],[-71.39559251,41.714621519],[-71.39572951,41.714663519],[-71.39579851,41.714697519],[-71.39589751,41.714749519],[-71.39596551,41.714793519],[-71.39603451,41.714823519],[-71.39611151,41.714840519],[-71.39619551,41.714838519],[-71.39625651,41.714801519],[-71.39633251,41.714767519],[-71.39640051,41.714757519],[-71.39644751,41.714748519],[-71.39647751,41.714742519],[-71.396553511,41.714713519],[-71.39670651,41.714679519],[-71.39682851,41.714640519],[-71.39691951,41.714625519],[-71.39706451,41.714604519],[-71.39714851,41.714579518],[-71.397232511,41.714541518],[-71.39731651,41.714522519],[-71.397392511,41.714502518],[-71.39753751,41.714450519],[-71.397621511,41.714434519],[-71.39770551,41.714424518],[-71.397797511,41.714422518],[-71.397873511,41.714407519],[-71.39796451,41.714378519],[-71.39804151,41.714344518],[-71.39811751,41.714320519],[-71.398186511,41.714301519],[-71.39827051,41.714286518],[-71.398367511,41.714272519],[-71.398422511,41.714264519],[-71.39846851,41.714268518],[-71.398529511,41.714276519],[-71.398590511,41.714279519],[-71.398651511,41.714296519],[-71.398727511,41.714312519],[-71.398788511,41.714329519],[-71.398865511,41.714363518],[-71.39893351,41.714384518],[-71.398994511,41.714392519],[-71.399063511,41.714386518],[-71.399139511,41.714389519],[-71.399285511,41.714384518],[-71.399254511,41.714099519],[-71.399193511,41.713613519],[-71.399147511,41.713155518],[-71.399132511,41.712984518],[-71.399055511,41.712590518],[-71.399025511,41.712374518],[-71.399010511,41.712230518],[-71.39899451,41.712123518],[-71.398964511,41.711952518],[-71.398926511,41.711791518],[-71.398918511,41.711768519],[-71.398903511,41.711737518],[-71.398834511,41.711477518],[-71.398788511,41.711339519],[-71.39868251,41.711062518],[-71.39864451,41.710932518],[-71.39850651,41.710543518],[-71.398400511,41.710293518],[-71.39833151,41.710146518],[-71.39827051,41.709999518],[-71.398209511,41.709856518],[-71.39811751,41.709633518],[-71.39807951,41.709521518],[-71.39806451,41.709494518],[-71.397972511,41.709298518],[-71.39791951,41.709200518],[-71.39786551,41.709084518],[-71.39780451,41.708968518],[-71.397858511,41.708611517],[-71.39794951,41.708195518],[-71.39802651,41.707730518],[-71.39804851,41.707626517],[-71.39814051,41.706962517],[-71.39819351,41.706672517],[-71.398209511,41.706605517],[-71.39822451,41.706492517],[-71.39839951,41.705389517],[-71.39843051,41.705168517],[-71.39859051,41.704187517],[-71.39875851,41.703085517],[-71.39882751,41.702638517],[-71.398910511,41.702145516],[-71.39898751,41.701635516],[-71.399010511,41.701450517],[-71.399048511,41.701089516],[-71.39904051,41.701021516],[-71.39859851,41.700981516],[-71.39829351,41.700951516],[-71.39781251,41.700907516],[-71.397514509,41.700896516],[-71.39714851,41.700885517],[-71.396774509,41.700839516],[-71.396540509,41.700817516],[-71.395691509,41.700740516],[-71.395538509,41.700730517],[-71.395462509,41.700299516],[-71.395371509,41.699878516],[-71.395340509,41.699748516],[-71.395256509,41.699421516],[-71.395134509,41.698932516],[-71.395065509,41.698619516],[-71.395012509,41.698489515],[-71.394837509,41.698268516],[-71.394524509,41.697945515],[-71.394325509,41.697697516],[-71.394074509,41.697401515],[-71.393822509,41.697091515],[-71.393539508,41.696737515],[-71.393997509,41.696443515],[-71.394363509,41.696188515],[-71.394714509,41.695956515],[-71.394852509,41.695858515],[-71.394867509,41.695817515],[-71.394844508,41.695786515],[-71.394394508,41.695570515],[-71.394081508,41.695455515],[-71.393944508,41.695368515],[-71.393837508,41.695307516],[-71.393791508,41.695268515],[-71.393768508,41.695223515],[-71.393687531,41.694804637],[-71.393681657,41.69480294],[-71.393661508,41.694797515],[-71.393648508,41.694748515],[-71.39364864,41.694748166],[-71.39369435,41.694627593],[-71.393739017,41.694517977],[-71.393762214,41.694402417],[-71.393783487,41.694287633],[-71.393783509,41.694287515],[-71.393801508,41.694173515],[-71.393808713,41.694107468],[-71.393813268,41.694063771],[-71.393765095,41.693964089],[-71.393668145,41.693864927],[-71.393566162,41.69377969],[-71.393447491,41.693711865],[-71.39335241,41.693622975],[-71.393293661,41.693502011],[-71.393293508,41.693501515],[-71.393289896,41.693488771],[-71.39325741,41.693374528],[-71.393249478,41.693244966],[-71.39325326,41.693116193],[-71.393256776,41.693064632],[-71.393261508,41.692989514],[-71.393240295,41.69294193],[-71.393224377,41.692906776],[-71.393107581,41.692849975],[-71.392964224,41.692821644],[-71.392827764,41.692793762],[-71.392821674,41.692792548],[-71.392671558,41.692784689],[-71.392660337,41.692780516],[-71.392651109,41.692777068],[-71.392608627,41.692761558],[-71.392595005,41.692784663],[-71.39259478,41.692784068],[-71.392594508,41.692784515],[-71.392585508,41.692760515],[-71.391741507,41.692825515],[-71.391391507,41.692852514],[-71.391260057,41.693118336],[-71.391211895,41.693216139],[-71.391132056,41.693558535],[-71.391106507,41.693668515],[-71.391208508,41.693670515],[-71.391208427,41.693670563],[-71.39120878,41.69367057],[-71.391161622,41.693698814],[-71.391122581,41.693726609],[-71.391112508,41.693782515],[-71.3911215,41.693820411],[-71.39114093,41.693900867],[-71.391120903,41.693979815],[-71.391082596,41.694026661],[-71.391042507,41.694076515],[-71.390972507,41.694188515],[-71.390927507,41.694266515],[-71.390920616,41.694278],[-71.390912803,41.694291577],[-71.390876917,41.694401932],[-71.39091743,41.694478216],[-71.390925999,41.69449317],[-71.390979507,41.694585515],[-71.390946507,41.694674515],[-71.39090779,41.694705876],[-71.390846233,41.69475601],[-71.390759653,41.694855957],[-71.390768456,41.694913185],[-71.390777507,41.694971515],[-71.390798508,41.695052515],[-71.390820508,41.695091515],[-71.390959419,41.695384331],[-71.390970277,41.6953816],[-71.390975784,41.695391004],[-71.391036563,41.69550104],[-71.391089492,41.695616099],[-71.391147342,41.695726109],[-71.391219638,41.695833612],[-71.391253779,41.695858784],[-71.391337446,41.695920037],[-71.391395311,41.695953616],[-71.391454507,41.695987516],[-71.391607507,41.696030516],[-71.391614762,41.696031834],[-71.39175257,41.696050371],[-71.391887136,41.696066369],[-71.391911602,41.696069251],[-71.391971604,41.696112251],[-71.392001508,41.696133515],[-71.392001721,41.696133834],[-71.392001935,41.696133987],[-71.392066542,41.696230518],[-71.392119687,41.696235675],[-71.392200423,41.69624303],[-71.392261528,41.696305475],[-71.392338993,41.696401644],[-71.392338508,41.696475204],[-71.392338508,41.696482515],[-71.392323507,41.696572516],[-71.392307508,41.696620515],[-71.392291508,41.696707516],[-71.392304324,41.696778923],[-71.392312779,41.696824539],[-71.392367702,41.696934523],[-71.39242227,41.697021792],[-71.392431508,41.697036516],[-71.392430557,41.697048036],[-71.392422946,41.69714552],[-71.392370467,41.69725291],[-71.39234554,41.697256677],[-71.392334508,41.697258516],[-71.392180508,41.697288516],[-71.392110808,41.697223283],[-71.392102194,41.697215313],[-71.392029578,41.69711988],[-71.39194044,41.69701565],[-71.3918942,41.696950417],[-71.391871508,41.696918516],[-71.391858607,41.696897753],[-71.391807035,41.696815328],[-71.391740286,41.696715578],[-71.391712768,41.696672929],[-71.391669508,41.696606515],[-71.391616595,41.696516724],[-71.391603129,41.696494055],[-71.391525507,41.696399516],[-71.39150051,41.696403801],[-71.391420031,41.696417977],[-71.391270383,41.696460601],[-71.391257824,41.696464311],[-71.391133507,41.696501515],[-71.391055486,41.696527327],[-71.39100032,41.696545921],[-71.39084576,41.696587785],[-71.390792637,41.696601448],[-71.390697507,41.696626516],[-71.390556507,41.696662515],[-71.390513507,41.696678515],[-71.390533952,41.696738716],[-71.39054957,41.696784293],[-71.390549479,41.696784434],[-71.390549507,41.696784516],[-71.390538507,41.696801516],[-71.390470727,41.696713801],[-71.39039664,41.69672885],[-71.390304558,41.696762668],[-71.390256507,41.696780515],[-71.390152507,41.696816515],[-71.390120507,41.696827516],[-71.390073592,41.696841417],[-71.389985602,41.696867799],[-71.389886265,41.69691551],[-71.389863507,41.696926516],[-71.389725507,41.696978516],[-71.389592506,41.697026515],[-71.389533717,41.697050669],[-71.389463735,41.697079547],[-71.389438573,41.697091983],[-71.389337507,41.697142516],[-71.389247675,41.697172688],[-71.3892062,41.697186876],[-71.389143475,41.697206046],[-71.389064507,41.697230516],[-71.389053507,41.697268516],[-71.389071676,41.697330181],[-71.389086743,41.697380348],[-71.389107118,41.69743747],[-71.389124506,41.697485516],[-71.389134464,41.697540281],[-71.389144868,41.697595763],[-71.389160689,41.697650251],[-71.389178507,41.697710515],[-71.389179045,41.697745477],[-71.389179712,41.69777516],[-71.389179499,41.697775001],[-71.389179507,41.697775516],[-71.389162507,41.697762516],[-71.389147617,41.697751159],[-71.389103037,41.697717821],[-71.389022598,41.697658126],[-71.389009506,41.697648516],[-71.388926725,41.697642532],[-71.38877911,41.69768366],[-71.388644507,41.697732516],[-71.388583246,41.69775301],[-71.388510905,41.697777783],[-71.388369972,41.697824848],[-71.388291386,41.697852726],[-71.388225507,41.697876516],[-71.388092506,41.697916516],[-71.387952507,41.697963515],[-71.387840702,41.698009254],[-71.387820906,41.698017467],[-71.387791419,41.698033404],[-71.387701506,41.698082516],[-71.387559507,41.698129516],[-71.387514911,41.698113299],[-71.387482452,41.698101752],[-71.38737952,41.698018705],[-71.387375196,41.698013761],[-71.387293281,41.697920303],[-71.387291667,41.69791877],[-71.387214506,41.697845515],[-71.387192507,41.697824516],[-71.387129751,41.697804402],[-71.387114402,41.697799587],[-71.386959063,41.697812904],[-71.386822118,41.697846798],[-71.386682016,41.697855759],[-71.386670521,41.697856515],[-71.386509506,41.697888516],[-71.386380519,41.697956305],[-71.386372414,41.697960596],[-71.386276506,41.698043516],[-71.386175039,41.698125958],[-71.386164975,41.698134135],[-71.386164506,41.698134516],[-71.38615623,41.698140178],[-71.386055786,41.698209455],[-71.385942506,41.698291516],[-71.385815506,41.698361516],[-71.38570328,41.698448369],[-71.385612524,41.698532339],[-71.385529879,41.698625723],[-71.385421969,41.698700695],[-71.385333391,41.698801323],[-71.385277062,41.698904292],[-71.38529105,41.699000243],[-71.385353766,41.69911536],[-71.385424302,41.69922614],[-71.385526224,41.699309966],[-71.38560278,41.699398797],[-71.385633202,41.699520423],[-71.385640308,41.699625811],[-71.385591234,41.699663702],[-71.385534976,41.699605673],[-71.385490845,41.69948911],[-71.385407534,41.699389295],[-71.385267296,41.699333857],[-71.385183815,41.699261827],[-71.385077022,41.69917141],[-71.384959808,41.699176073],[-71.384813425,41.69916161],[-71.384658896,41.699197634],[-71.384527925,41.699216164],[-71.384373437,41.69924631],[-71.384233477,41.699291885],[-71.384085988,41.699298643],[-71.383996584,41.699381728],[-71.383901416,41.699445779],[-71.383771136,41.699503804],[-71.383640888,41.699561143],[-71.383500885,41.699612571],[-71.383367753,41.699661101],[-71.383239998,41.699638651],[-71.383129179,41.699650156],[-71.383083642,41.699654889],[-71.383002759,41.699631892],[-71.382873393,41.699555309],[-71.382735237,41.699480134],[-71.38261169,41.699409411],[-71.382484267,41.699339392],[-71.382347905,41.69928471],[-71.382187081,41.699241643],[-71.38206744,41.699170969],[-71.381955689,41.699091475],[-71.381893937,41.698986579],[-71.381792925,41.698907897],[-71.381648876,41.698836351],[-71.381507501,41.698804349],[-71.381374016,41.698762863],[-71.381263164,41.698692906],[-71.381179896,41.69859087],[-71.381198195,41.698479721],[-71.381231253,41.698357634],[-71.381253565,41.698238395],[-71.381261119,41.698129385],[-71.381333064,41.698033775],[-71.381355084,41.697956317],[-71.381277436,41.697884999],[-71.381150877,41.697828175],[-71.381134364,41.6978143],[-71.381107188,41.697791448],[-71.381192258,41.697776374],[-71.381348487,41.697776993],[-71.381381855,41.697751505],[-71.381366864,41.69765704],[-71.381364421,41.697591151],[-71.381484604,41.697580641],[-71.381636927,41.69758121],[-71.381796996,41.697584736],[-71.381892241,41.697595239],[-71.381914636,41.697579643],[-71.382016606,41.697600215],[-71.382026553,41.6976005],[-71.382046594,41.697620554],[-71.382091617,41.697629039],[-71.382252643,41.697642834],[-71.382388075,41.697686516],[-71.382532253,41.697736838],[-71.382662762,41.697786392],[-71.382808044,41.697816979],[-71.382966143,41.697829993],[-71.383115453,41.697843752],[-71.38313245,41.697843129],[-71.383260983,41.697838434],[-71.383402735,41.697813353],[-71.38352427,41.697746515],[-71.38365222,41.697743306],[-71.3838124,41.697735875],[-71.383912451,41.697670365],[-71.383983501,41.697560893],[-71.384034987,41.697453506],[-71.384089391,41.69735273],[-71.384193432,41.697273319],[-71.384323626,41.697226248],[-71.384468472,41.69717631],[-71.384612128,41.697160012],[-71.384759742,41.697132054],[-71.384899607,41.697102601],[-71.385031808,41.697042336],[-71.38517587,41.696968956],[-71.385314984,41.696898497],[-71.385439519,41.696824342],[-71.385562198,41.696729649],[-71.385685767,41.696648884],[-71.385788875,41.696560734],[-71.385914471,41.696472629],[-71.385929813,41.696458603],[-71.386035141,41.696374435],[-71.386108891,41.696270659],[-71.386100702,41.696208058],[-71.385997557,41.696110555],[-71.385882235,41.696031611],[-71.385794846,41.695945399],[-71.38570162,41.695847197],[-71.385609435,41.695746801],[-71.385526224,41.695644973],[-71.385516994,41.69558459],[-71.385534036,41.695489379],[-71.385485981,41.695436229],[-71.385345498,41.695386097],[-71.385264817,41.695320816],[-71.385211242,41.695231802],[-71.385166901,41.695200998],[-71.385228942,41.695161954],[-71.385319272,41.695085867],[-71.385380111,41.694984251],[-71.385454902,41.694878258],[-71.385530703,41.69477078],[-71.385624135,41.694682827],[-71.385757144,41.694610715],[-71.385899893,41.694552106],[-71.386028863,41.694485959],[-71.386093312,41.694412682],[-71.386134722,41.694357837],[-71.386133056,41.694247605],[-71.386171481,41.694172129],[-71.386172706,41.694169706],[-71.386217369,41.69417373],[-71.38632076,41.69425113],[-71.386423935,41.694347854],[-71.386501265,41.694445171],[-71.386560645,41.694547592],[-71.386563248,41.69466377],[-71.386461853,41.694751716],[-71.38636446,41.694836693],[-71.386323621,41.694930988],[-71.386370029,41.695036301],[-71.386422414,41.695143129],[-71.386473796,41.695247738],[-71.386545212,41.695342784],[-71.386651454,41.69543137],[-71.386786856,41.695491078],[-71.386859754,41.695541462],[-71.386928574,41.695603733],[-71.387055868,41.69567608],[-71.387155082,41.695771336],[-71.387264459,41.695848009],[-71.387398058,41.695892804],[-71.387556925,41.695900597],[-71.387704252,41.69587698],[-71.38785089,41.695828847],[-71.38797687,41.695762649],[-71.388091927,41.695696417],[-71.388209945,41.695629434],[-71.388337729,41.695578171],[-71.388355311,41.695574506],[-71.388445295,41.695555795],[-71.388574163,41.695495591],[-71.388693719,41.695473753],[-71.388727507,41.695467588],[-71.388868199,41.695415651],[-71.389015629,41.6953846],[-71.389161294,41.695332713],[-71.389232622,41.695267673],[-71.389226663,41.695184241],[-71.389124352,41.695096439],[-71.38904305,41.694999806],[-71.388978657,41.694900332],[-71.388945449,41.694853212],[-71.388922513,41.694776372],[-71.388899259,41.694725557],[-71.38889291,41.694673387],[-71.388807253,41.694608035],[-71.388698954,41.694525395],[-71.388564561,41.694464936],[-71.388424145,41.694411126],[-71.388306767,41.69433886],[-71.38825744,41.694226844],[-71.388257858,41.694108428],[-71.388316749,41.694000863],[-71.38838166,41.693888112],[-71.388429766,41.693771526],[-71.388446917,41.693663646],[-71.388483059,41.693548488],[-71.388577596,41.693453056],[-71.388680864,41.693373319],[-71.38877349,41.693271184],[-71.388845174,41.693175614],[-71.388908063,41.693066543],[-71.388964647,41.69298651],[-71.389028156,41.692907261],[-71.389060291,41.692797245],[-71.389085512,41.692679767],[-71.389147393,41.692570718],[-71.389204226,41.692469828],[-71.389187666,41.69235876],[-71.38921382,41.692248715],[-71.389270437,41.692166441],[-71.389206871,41.692084096],[-71.389235079,41.691968153],[-71.389248368,41.691852082],[-71.389269547,41.691742742],[-71.389286733,41.69163118],[-71.389307946,41.691519621],[-71.389327144,41.691408793],[-71.389350345,41.691294263],[-71.389367629,41.691178973],[-71.389389822,41.691065175],[-71.389404031,41.690999348],[-71.38941295,41.6909581],[-71.389422223,41.690887649],[-71.389428251,41.690842031],[-71.389530575,41.690757811],[-71.389637765,41.690682583],[-71.389718422,41.690582584],[-71.3897932,41.690477343],[-71.389869251,41.690430191],[-71.390019592,41.690402892],[-71.390152455,41.69042614],[-71.39029602,41.690382391],[-71.390421086,41.690308048],[-71.390546009,41.690245574],[-71.390669927,41.69018239],[-71.390821204,41.690160282],[-71.390969665,41.690124816],[-71.391065102,41.690033841],[-71.391156608,41.689939867],[-71.39123722,41.689846568],[-71.391310952,41.689744298],[-71.391356026,41.689629171],[-71.391392059,41.689519959],[-71.39140243,41.689496036],[-71.391402507,41.689495514],[-71.391403005,41.689494711],[-71.391439043,41.689411581],[-71.391451388,41.689291735],[-71.391434932,41.689170993],[-71.391400558,41.689056111],[-71.39135822,41.688941908],[-71.391327747,41.688829271],[-71.39133699,41.688721337],[-71.391271662,41.688616649],[-71.391189464,41.688511121],[-71.39109718,41.688416675],[-71.390977966,41.688334713],[-71.390831443,41.688290574],[-71.390686219,41.688308228],[-71.390546594,41.688352667],[-71.390427479,41.688428571],[-71.390316398,41.688497827],[-71.390202152,41.688580482],[-71.390121972,41.688634994],[-71.390119076,41.688633711],[-71.390139283,41.688520482],[-71.390135699,41.688403548],[-71.390141989,41.688292638],[-71.390193916,41.688185042],[-71.390096647,41.688098732],[-71.389954306,41.688036003],[-71.389806559,41.688012649],[-71.389649265,41.688041382],[-71.389497957,41.688067193],[-71.389356525,41.688097542],[-71.389246049,41.688116166],[-71.389214793,41.688071266],[-71.389231106,41.687952247],[-71.389276113,41.687842313],[-71.389327028,41.687738398],[-71.389395857,41.687630888],[-71.389519877,41.687559472],[-71.38960442,41.687468465],[-71.389671564,41.687418263],[-71.389770319,41.68738394],[-71.389839941,41.68729429],[-71.389853594,41.687231871],[-71.389970657,41.687159647],[-71.390098673,41.687087526],[-71.39014697,41.687068659],[-71.390237397,41.687033344],[-71.390322307,41.686994479],[-71.390323624,41.686991553],[-71.390322779,41.686986384],[-71.390326672,41.686885351],[-71.390335008,41.686863748],[-71.390380666,41.686871292],[-71.390381189,41.686976445],[-71.390381056,41.686982917],[-71.390460392,41.686993124],[-71.390618334,41.686994166],[-71.390770576,41.686974369],[-71.39091965,41.686969365],[-71.39107471,41.686960708],[-71.391221941,41.686944564],[-71.391371088,41.686932928],[-71.391522288,41.686915324],[-71.391586547,41.686856176],[-71.391585335,41.686810986],[-71.39158452,41.686804617],[-71.391445562,41.686768088],[-71.391299007,41.686726922],[-71.391164377,41.686688031],[-71.391038034,41.686619418],[-71.390943696,41.686532426],[-71.390939151,41.686495922],[-71.391014648,41.686412292],[-71.390902978,41.686363887],[-71.390795667,41.68628125],[-71.390646299,41.686226633],[-71.3905179,41.686166205],[-71.3903765,41.686108645],[-71.390212641,41.686107597],[-71.39006263,41.686108826],[-71.38991053,41.68611824],[-71.389767158,41.686144059],[-71.38962645,41.686199747],[-71.389515342,41.68626898],[-71.389381012,41.686287467],[-71.389243538,41.686235924],[-71.389335724,41.686170973],[-71.389319465,41.686116506],[-71.389259873,41.686032701],[-71.389268077,41.685927762],[-71.389211625,41.685827609],[-71.389132353,41.685728051],[-71.389029947,41.685651409],[-71.388976958,41.685595969],[-71.388997675,41.685523859],[-71.389073503,41.68549681],[-71.389156219,41.685474295],[-71.389272481,41.685387183],[-71.389383624,41.685314932],[-71.389494702,41.68524419],[-71.389644269,41.685198275],[-71.389765359,41.685124638],[-71.389851991,41.685023205],[-71.389820263,41.684933641],[-71.389741029,41.684829602],[-71.38963883,41.684739559],[-71.389581876,41.684683337],[-71.38948351,41.684600022],[-71.389401179,41.68450563],[-71.389306016,41.684404502],[-71.38923078,41.684300466],[-71.389222664,41.684283421],[-71.389181201,41.684196478],[-71.389178435,41.684190666],[-71.389114087,41.684088196],[-71.389055725,41.683982826],[-71.389012278,41.683879027],[-71.389002784,41.683758359],[-71.389019023,41.683645996],[-71.389008453,41.683530496],[-71.389041592,41.683419017],[-71.389058574,41.683389898],[-71.389103459,41.683312941],[-71.389203865,41.6832198],[-71.389314106,41.683137142],[-71.389402676,41.683043166],[-71.389496193,41.682946222],[-71.389597491,41.682865728],[-71.389707635,41.682875416],[-71.389794187,41.682944473],[-71.389939786,41.682896336],[-71.390085987,41.682853481],[-71.3901198,41.682846607],[-71.390129138,41.682844718],[-71.390152852,41.682856816],[-71.390164703,41.682866135],[-71.390280268,41.682917243],[-71.390383418,41.682931292],[-71.39043553,41.682891458],[-71.390444847,41.682776069],[-71.390455212,41.68265478],[-71.390489326,41.682542547],[-71.390580603,41.682469453],[-71.390716285,41.682421945],[-71.390750326,41.682316436],[-71.390767576,41.682200368],[-71.390781899,41.682082811],[-71.390798138,41.681969006],[-71.390804392,41.681860337],[-71.390810983,41.681805252],[-71.390814349,41.681690611],[-71.390824678,41.68157225],[-71.390829957,41.681462826],[-71.390833367,41.681340753],[-71.390834824,41.681218655],[-71.390836282,41.681095803],[-71.390847688,41.68097152],[-71.390867058,41.680845803],[-71.390887191,41.680737948],[-71.390913302,41.680630876],[-71.390951486,41.680509751],[-71.390979688,41.680392275],[-71.390957069,41.680292361],[-71.390919679,41.680178185],[-71.390888201,41.680067742],[-71.390865906,41.679938784],[-71.390848341,41.67982696],[-71.390830841,41.679712162],[-71.390816266,41.679600387],[-71.390800896,41.679471458],[-71.390786316,41.6793619],[-71.390783634,41.679252446],[-71.390780987,41.679139972],[-71.390777509,41.679014096],[-71.390770966,41.678896382],[-71.3907575,41.678777929],[-71.390752946,41.678657267],[-71.390749498,41.678531368],[-71.390744942,41.678411461],[-71.390743338,41.678296015],[-71.390742637,41.678187294],[-71.390754907,41.678074926],[-71.390789459,41.678008158],[-71.390943738,41.677979375],[-71.391091781,41.677976633],[-71.391129654,41.67796647],[-71.391090335,41.677929727],[-71.391008946,41.677841306],[-71.390954582,41.677735964],[-71.390923072,41.677627054],[-71.390908564,41.677511505],[-71.390898025,41.677393832],[-71.390875625,41.677273039],[-71.390846238,41.677153702],[-71.390817859,41.677033611],[-71.390809365,41.67691514],[-71.390813996,41.676810381],[-71.390814821,41.67679156],[-71.390826052,41.676679946],[-71.390829348,41.676570519],[-71.390833622,41.676460339],[-71.390835351,41.676375725],[-71.39083595,41.676346407],[-71.390838345,41.67622877],[-71.390837783,41.67610962],[-71.390838235,41.675986744],[-71.390839729,41.675860919],[-71.390841188,41.675737312],[-71.390836703,41.675611435],[-71.390832214,41.675488531],[-71.390823582,41.67537978],[-71.390819965,41.675263555],[-71.390805628,41.675137646],[-71.390799053,41.675021418],[-71.390796618,41.674891838],[-71.390801038,41.674767548],[-71.390796191,41.674675174],[-71.39075877,41.674563217],[-71.390770434,41.674502235],[-71.390676151,41.674411515],[-71.390583816,41.674322991],[-71.390537526,41.674207297],[-71.390460252,41.674105478],[-71.390410864,41.674000164],[-71.390381444,41.6738838],[-71.390342175,41.67376514],[-71.390339567,41.673648206],[-71.390320051,41.673537112],[-71.390286597,41.673425203],[-71.390247231,41.673310248],[-71.39020786,41.673198288],[-71.390190372,41.673078299],[-71.390186818,41.672962119],[-71.390199126,41.672845292],[-71.390220407,41.672724791],[-71.390253508,41.672613335],[-71.390309421,41.672504233],[-71.390379169,41.67240196],[-71.390462298,41.672341436],[-71.39060463,41.672317055],[-71.390746931,41.672292675],[-71.390785361,41.672402392],[-71.390776208,41.672421731],[-71.390762192,41.672431277],[-71.390831633,41.672438455],[-71.390846256,41.672376745],[-71.390819719,41.672268594],[-71.390782735,41.672205783],[-71.390629337,41.67224424],[-71.390478104,41.67226557],[-71.390326794,41.672295865],[-71.39020117,41.672252591],[-71.390053594,41.672221782],[-71.389902964,41.672193257],[-71.389753381,41.672158741],[-71.38960783,41.672121279],[-71.38945028,41.672090437],[-71.389301631,41.672063399],[-71.389147901,41.672046717],[-71.389000085,41.672031572],[-71.388846394,41.672009698],[-71.388681854,41.67198253],[-71.388535187,41.671956248],[-71.388387444,41.671934425],[-71.388243734,41.671908877],[-71.388094144,41.671879596],[-71.387942505,41.671853263],[-71.387802795,41.671825524],[-71.387652271,41.671789495],[-71.387503627,41.671760191],[-71.387347089,41.67172786],[-71.387187414,41.671709683],[-71.38703981,41.671678916],[-71.386908387,41.671622208],[-71.386840055,41.671522705],[-71.386804626,41.671410771],[-71.386774237,41.671294382],[-71.386771237,41.671282761],[-71.386720228,41.671149909],[-71.386690293,41.671035579],[-71.386717371,41.670918126],[-71.386695636,41.67087614],[-71.386545255,41.670847267],[-71.386430223,41.670767866],[-71.386333848,41.670676042],[-71.386236453,41.670592816],[-71.386148381,41.670497867],[-71.386059289,41.670392831],[-71.385970191,41.670292461],[-71.385877985,41.670189755],[-71.385790981,41.670094807],[-71.385725737,41.669992905],[-71.385679181,41.669879336],[-71.385643004,41.669760356],[-71.385595407,41.669649096],[-71.385510471,41.669558037],[-71.385371525,41.66949885],[-71.385221196,41.669442808],[-71.385096822,41.669370393],[-71.384959961,41.669304988],[-71.384817925,41.66925124],[-71.384665507,41.669204479],[-71.38453908,41.669137528],[-71.384443736,41.669052702],[-71.384339073,41.668976442],[-71.384216788,41.668897054],[-71.384091346,41.668826192],[-71.383961775,41.66876157],[-71.383805189,41.668726514],[-71.383653808,41.668697614],[-71.383511759,41.66865244],[-71.383401899,41.668567598],[-71.383294118,41.668479648],[-71.383185712,41.668400341],[-71.38317499,41.668392486],[-71.383084844,41.668301443],[-71.382991573,41.66821895],[-71.382884867,41.668127113],[-71.382795753,41.668039959],[-71.382692123,41.667951257],[-71.382618606,41.667857098],[-71.382539878,41.667761424],[-71.382404095,41.66769366],[-71.382272416,41.667632922],[-71.382119004,41.667582269],[-71.381972753,41.667568969],[-71.38182138,41.667554109],[-71.381673132,41.667498796],[-71.381554974,41.667417076],[-71.381449282,41.667340012],[-71.381305188,41.667281592],[-71.381156937,41.667227811],[-71.381033574,41.667157749],[-71.380908157,41.667093905],[-71.380785828,41.667025422],[-71.380660395,41.666970085],[-71.380523608,41.66691947],[-71.380367014,41.666892162],[-71.380224953,41.666873421],[-71.380082901,41.666849992],[-71.379941874,41.666816456],[-71.379799813,41.666781386],[-71.379666097,41.66673617],[-71.379514725,41.666689427],[-71.379362317,41.666642682],[-71.379195331,41.666627779],[-71.37905118,41.666618343],[-71.378907025,41.666610484],[-71.378760814,41.666609621],[-71.378614581,41.666620398],[-71.378540446,41.666619245],[-71.378538501,41.66661951],[-71.378509139,41.666618757],[-71.378460047,41.666617994],[-71.378432168,41.66658774],[-71.378395908,41.666612821],[-71.378312728,41.666670734],[-71.378181958,41.666731339],[-71.378121502,41.66675951],[-71.378267501,41.66735151],[-71.378372502,41.66795251],[-71.378296502,41.66828751],[-71.378250502,41.668509511],[-71.378136502,41.66906951],[-71.378067501,41.669602511],[-71.377983502,41.670216511],[-71.377922502,41.670690511],[-71.377937502,41.670861511],[-71.377968502,41.671135511],[-71.378021502,41.671553511],[-71.378181502,41.672504511],[-71.378372502,41.673613511],[-71.378494502,41.674308511],[-71.378807503,41.675585512],[-71.378822502,41.675643512],[-71.379013502,41.676189512],[-71.379150502,41.676722512],[-71.379212503,41.676995512],[-71.379227502,41.677549512],[-71.379265502,41.678214512],[-71.379272503,41.678421512],[-71.379273503,41.678448512],[-71.379265503,41.678863513],[-71.379227503,41.679490513],[-71.379189503,41.679770512],[-71.379097503,41.680339513],[-71.379051503,41.681029513],[-71.379002503,41.681564513],[-71.378983502,41.681778513],[-71.378891502,41.682856513],[-71.378876503,41.683027513],[-71.378814503,41.683519513],[-71.378784503,41.683826513],[-71.378754502,41.684187514],[-71.378746503,41.684246514],[-71.378738503,41.684273513],[-71.378677503,41.684653514],[-71.378609503,41.685095513],[-71.378563503,41.685290513],[-71.378487503,41.685607514],[-71.378464503,41.685742514],[-71.378380502,41.686140514],[-71.378273503,41.686687514],[-71.378197503,41.687058514],[-71.378182503,41.687162514],[-71.378151503,41.687356514],[-71.378174503,41.687730514],[-71.378273503,41.688516514],[-71.378357503,41.689104515],[-71.378433503,41.689773514],[-71.378457502,41.689953514],[-71.378517503,41.690397514],[-71.378563503,41.690658515],[-71.378624503,41.691224515],[-71.378303503,41.691280515],[-71.378204502,41.691282515],[-71.378060503,41.691258515],[-71.377831503,41.691177514],[-71.377731503,41.691152515],[-71.377670503,41.691144515],[-71.377579502,41.691160515],[-71.376663502,41.691354515],[-71.375923502,41.692153515],[-71.375980502,41.692287515],[-71.376022502,41.692385515],[-71.376068502,41.692515515],[-71.376068502,41.692740515],[-71.376046502,41.693131515],[-71.376045502,41.693146515],[-71.376053503,41.693285515],[-71.376076503,41.693393516],[-71.376091502,41.693501515],[-71.376068502,41.693641515],[-71.376030502,41.693781516],[-71.376028502,41.693808515],[-71.376023502,41.693907515],[-71.376007502,41.694146515],[-71.376022502,41.694268516],[-71.376084502,41.694370516],[-71.376122502,41.694423516],[-71.376143502,41.694448516],[-71.376167502,41.694476515],[-71.376205502,41.694602516],[-71.376175502,41.694710515],[-71.376167503,41.694837516],[-71.376183502,41.694949516],[-71.376236502,41.695056515],[-71.376228503,41.695137515],[-71.376206503,41.695164516],[-71.376136502,41.695312515],[-71.376122502,41.695342516],[-71.376098502,41.695387516],[-71.376061502,41.695505515],[-71.376061502,41.695622515],[-71.376083502,41.695734516],[-71.376129503,41.695869516],[-71.376167503,41.695985516],[-71.376188503,41.696044516],[-71.376206503,41.696097516],[-71.376221502,41.696213516],[-71.376244503,41.696326516],[-71.376289503,41.696383516],[-71.376373502,41.696435516],[-71.376411502,41.696493516],[-71.376450502,41.696524516],[-71.376602503,41.696665516],[-71.376686502,41.696699516],[-71.376762502,41.696734516],[-71.376849503,41.696748516],[-71.376996502,41.696771516],[-71.377083503,41.696785516],[-71.377174503,41.696806516],[-71.377251503,41.696899516],[-71.377334503,41.697005516],[-71.377442503,41.697089516],[-71.377564503,41.697172516],[-71.377686503,41.697259516],[-71.377823503,41.697329516],[-71.378097503,41.697440516],[-71.378220504,41.697496516],[-71.378307503,41.697541516],[-71.378395504,41.697587516],[-71.378494504,41.697616516],[-71.378563503,41.697615516],[-71.378723504,41.697639516],[-71.378868503,41.697649516],[-71.379013504,41.697673516],[-71.379120503,41.697693516],[-71.379280503,41.697681516],[-71.379407504,41.697657516],[-71.379440504,41.697718516],[-71.379463504,41.697776516],[-71.379516504,41.697870516],[-71.379562504,41.697955516],[-71.379639504,41.698052516],[-71.379669503,41.698119516],[-71.379776504,41.698270516],[-71.379883504,41.698398516],[-71.379951504,41.698482516],[-71.380081504,41.698615516],[-71.380188504,41.698707516],[-71.380303504,41.698781516],[-71.380402504,41.698847516],[-71.380531504,41.698921516],[-71.380585504,41.698951516],[-71.380768504,41.699042516],[-71.380989505,41.699127517],[-71.381073504,41.699166517],[-71.381248504,41.699253516],[-71.381493505,41.699365517],[-71.381775504,41.699480517],[-71.382042505,41.699605516],[-71.382393505,41.699751517],[-71.382645505,41.699872517],[-71.382683505,41.699885517],[-71.382790505,41.699941516],[-71.382828505,41.699958516],[-71.382858505,41.699980516],[-71.382973505,41.700041517],[-71.383026505,41.700076516],[-71.383125505,41.700146516],[-71.383209505,41.700203517],[-71.383278505,41.700251516],[-71.383492505,41.700413517],[-71.383644505,41.700536516],[-71.383759506,41.700646517],[-71.383854505,41.700728517],[-71.383980505,41.700835516],[-71.384163505,41.700998517],[-71.384369505,41.701178517],[-71.384483505,41.701288517],[-71.384514506,41.701324517],[-71.384552506,41.701364517],[-71.384727506,41.701540517],[-71.384926506,41.701748516],[-71.385040506,41.701862516],[-71.385140506,41.701959517],[-71.385239506,41.702065517],[-71.385361505,41.702216516],[-71.385597506,41.702562517],[-71.385429506,41.702696517],[-71.385162506,41.702936517],[-71.385002506,41.703074517],[-71.384521506,41.703463517],[-71.384316506,41.703688517],[-71.384132505,41.703971517],[-71.384071506,41.704093517],[-71.384010506,41.704243517],[-71.383995505,41.704275517],[-71.383896506,41.704547517],[-71.383884505,41.704584517],[-71.383789505,41.704865517],[-71.383659506,41.705264517],[-71.383545506,41.705658518],[-71.383514505,41.705789517],[-71.383461506,41.706069518],[-71.383423506,41.706471518],[-71.383369506,41.707116518],[-71.383370506,41.707314518],[-71.383362505,41.707386518],[-71.383362505,41.707648518],[-71.383362505,41.707729518],[-71.383354505,41.707990518],[-71.383331506,41.708135518],[-71.383285506,41.708302518],[-71.383232506,41.708456518],[-71.383156506,41.708602518],[-71.383049505,41.708780518],[-71.382991505,41.708852518]]]]}}"}, +{"type": "precinct", "typeId": 3519, "areaId": 25990, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":329,\"NAME\":\"3519\",\"SHAPE_Length\":0.1407649921938,\"SHAPE_Area\":-0.00046734483023449},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.378395908,41.666612821],[-71.378432168,41.66658774],[-71.378432075,41.666587639],[-71.378395908,41.666612821]]],[[[-71.378538501,41.66661951],[-71.378540446,41.666619245],[-71.378509139,41.666618757],[-71.378538501,41.66661951]]],[[[-71.377150788,41.710540866],[-71.37709389,41.710634984],[-71.377153503,41.710540518],[-71.377260183,41.710512603],[-71.377201824,41.710505221],[-71.377150788,41.710540866]]],[[[-71.377022309,41.710759929],[-71.376952327,41.710857664],[-71.376952504,41.710857518],[-71.377022503,41.710760518],[-71.377069414,41.710677359],[-71.377022309,41.710759929]]],[[[-71.376609503,41.711105519],[-71.376803002,41.710974071],[-71.376726522,41.711025168],[-71.376609752,41.711105222],[-71.376609503,41.711105519]]],[[[-71.376726503,41.711130519],[-71.376707098,41.711148796],[-71.376726797,41.711130323],[-71.376726503,41.711130519]]],[[[-71.376609503,41.711105519],[-71.376546741,41.711178175],[-71.376551386,41.711206721],[-71.376563822,41.711247053],[-71.376582342,41.711250023],[-71.376583386,41.711249328],[-71.376549503,41.711194519],[-71.376609503,41.711105519]]],[[[-71.376831346,41.711259677],[-71.376831504,41.711259519],[-71.376833083,41.711236418],[-71.376831346,41.711259677]]],[[[-71.376783148,41.711307159],[-71.376748873,41.711323108],[-71.37673461,41.711327687],[-71.376748503,41.711323518],[-71.376783503,41.711307519],[-71.376825646,41.711265377],[-71.376783148,41.711307159]]],[[[-71.376481416,41.711439179],[-71.376386079,41.711509179],[-71.376481504,41.711439518],[-71.376543765,41.711404154],[-71.376481416,41.711439179]]],[[[-71.376278109,41.711604556],[-71.376196407,41.711699352],[-71.376189972,41.711712769],[-71.376174148,41.711745861],[-71.376176503,41.711741519],[-71.376197503,41.711698519],[-71.376278503,41.711604519],[-71.37632147,41.711566141],[-71.376278109,41.711604556]]],[[[-71.376203213,41.711985498],[-71.376177999,41.712045528],[-71.376203503,41.711985519],[-71.376213504,41.711872519],[-71.376213172,41.711872173],[-71.376203213,41.711985498]]],[[[-71.375938413,41.712146211],[-71.375912179,41.712157049],[-71.375938504,41.712146519],[-71.375946813,41.712144392],[-71.375938413,41.712146211]]],[[[-71.375379417,41.712151781],[-71.375332766,41.712159986],[-71.375285825,41.712170329],[-71.37540141,41.712151534],[-71.375401179,41.712151461],[-71.375379417,41.712151781]]],[[[-71.375803252,41.712202048],[-71.375799563,41.712207691],[-71.375803504,41.712202519],[-71.375875886,41.712172042],[-71.375803252,41.712202048]]],[[[-71.375531219,41.71222573],[-71.375524956,41.712190724],[-71.375524516,41.712190585],[-71.375531219,41.71222573]]],[[[-71.375828269,41.712254834],[-71.375947245,41.712284144],[-71.375791798,41.712225149],[-71.375828269,41.712254834]]],[[[-71.375561503,41.712384519],[-71.375562885,41.712387015],[-71.375561725,41.712384809],[-71.375556885,41.712360303],[-71.375561503,41.712384519]]],[[[-71.376020075,41.712342676],[-71.375986533,41.712390093],[-71.375854503,41.712465519],[-71.375986503,41.712390519],[-71.376020503,41.712342519],[-71.375953493,41.712286515],[-71.376020075,41.712342676]]],[[[-71.375732503,41.712490519],[-71.375819072,41.71247278],[-71.375732896,41.712490123],[-71.375726971,41.712488839],[-71.375732503,41.712490519]]],[[[-71.37516257,41.71219813],[-71.375047801,41.712267207],[-71.374923249,41.712344277],[-71.374814246,41.712430215],[-71.374712091,41.712509574],[-71.37466891,41.712532818],[-71.374712502,41.712509519],[-71.374814503,41.712430519],[-71.374923503,41.712344519],[-71.375047503,41.712267519],[-71.375167803,41.712196523],[-71.37516257,41.71219813]]],[[[-71.367333523,41.712323349],[-71.367452048,41.712406523],[-71.367510837,41.712522377],[-71.367557877,41.712637463],[-71.367637316,41.712729992],[-71.367754042,41.712797773],[-71.367885498,41.712856103],[-71.368013047,41.71291516],[-71.368150416,41.712962566],[-71.368254836,41.712973937],[-71.368383281,41.713042532],[-71.368500936,41.713119072],[-71.368616561,41.713203683],[-71.368670601,41.713299772],[-71.368694498,41.713375244],[-71.368788596,41.71346493],[-71.368877948,41.713531856],[-71.369036924,41.713566867],[-71.369199981,41.71357556],[-71.369346485,41.713574697],[-71.369492096,41.713562788],[-71.369628112,41.713526009],[-71.369675289,41.713485241],[-71.369668881,41.713423716],[-71.369703287,41.713389451],[-71.369757382,41.713338423],[-71.369728507,41.713263722],[-71.369715147,41.713229243],[-71.36970458,41.713142077],[-71.369819776,41.713046661],[-71.369847412,41.713039465],[-71.369962505,41.713010071],[-71.36999124,41.713002694],[-71.370091121,41.712964296],[-71.370185523,41.712873223],[-71.370280899,41.712782838],[-71.370381169,41.712687358],[-71.370454122,41.712592533],[-71.370497603,41.712521688],[-71.370572484,41.712423938],[-71.370684424,41.712337299],[-71.370812866,41.712271169],[-71.370953043,41.71219707],[-71.371087229,41.712142724],[-71.371252542,41.712105289],[-71.371403079,41.712085402],[-71.371555473,41.712083056],[-71.371704735,41.712105589],[-71.371837257,41.712150743],[-71.371927147,41.712147436],[-71.371963499,41.712115414],[-71.372037042,41.712213742],[-71.372129399,41.712274837],[-71.372276827,41.712283485],[-71.372438017,41.71227829],[-71.372601152,41.712277442],[-71.372744802,41.712267035],[-71.372895127,41.712277104],[-71.373005243,41.712309746],[-71.373058495,41.712375073],[-71.373146687,41.712474948],[-71.373265407,41.712539822],[-71.373383584,41.71253954],[-71.373476497,41.712520158],[-71.37363586,41.712497373],[-71.373778788,41.712451083],[-71.373919686,41.712412817],[-71.374004564,41.71242853],[-71.374108307,41.712536517],[-71.374163794,41.712567451],[-71.374244952,41.712550205],[-71.374296155,41.712493317],[-71.374274339,41.712395894],[-71.374185081,41.712309946],[-71.374171795,41.712252072],[-71.374244312,41.712220889],[-71.374383209,41.712190717],[-71.374502365,41.712188972],[-71.374540198,41.712227182],[-71.374552637,41.712265272],[-71.374576848,41.712292444],[-71.374681681,41.712248216],[-71.374792469,41.71218643],[-71.374929457,41.712148913],[-71.37506648,41.712109179],[-71.375083556,41.712101742],[-71.375135637,41.712095075],[-71.375170744,41.712090654],[-71.37520823,41.712087218],[-71.375342394,41.712073574],[-71.37537634,41.712070134],[-71.375547287,41.712069336],[-71.37558877,41.712066614],[-71.375705587,41.712058965],[-71.375851197,41.712044875],[-71.375968692,41.712002145],[-71.376023121,41.711901374],[-71.376062061,41.711776413],[-71.376090909,41.711677604],[-71.376097084,41.711656502],[-71.37615449,41.71154693],[-71.376202053,41.711444687],[-71.376282519,41.711389385],[-71.376373849,41.711318749],[-71.3763729,41.711176754],[-71.376458504,41.71108418],[-71.376541985,41.711015708],[-71.376651919,41.710935624],[-71.376751186,41.710847433],[-71.376816319,41.710749623],[-71.376934925,41.710682743],[-71.377020638,41.710579878],[-71.377080936,41.710472527],[-71.377173164,41.710409964],[-71.37724071,41.710391192],[-71.377279739,41.710394252],[-71.377390903,41.710420304],[-71.377396637,41.710438629],[-71.377411971,41.710479695],[-71.377426574,41.710488515],[-71.377443344,41.710512544],[-71.377443503,41.710512519],[-71.377541503,41.710502518],[-71.377685504,41.710445518],[-71.377800504,41.710361519],[-71.377892503,41.710278519],[-71.378013504,41.710181519],[-71.378166504,41.710097518],[-71.378303504,41.710017518],[-71.378380504,41.709957518],[-71.378418504,41.709884518],[-71.378418504,41.709772519],[-71.378433504,41.709641519],[-71.378487504,41.709518518],[-71.378548504,41.709418518],[-71.378632504,41.709295518],[-71.378685504,41.709163518],[-71.378708504,41.709054519],[-71.378756504,41.709006518],[-71.378776504,41.708985518],[-71.378929504,41.708933518],[-71.379082504,41.708885518],[-71.379242504,41.708841519],[-71.379387504,41.708811518],[-71.379562504,41.708771518],[-71.379715504,41.708696518],[-71.379799505,41.708591518],[-71.379822504,41.708509518],[-71.379700505,41.708430518],[-71.379639504,41.708396518],[-71.379639504,41.708364518],[-71.379715504,41.708282518],[-71.379875505,41.708229518],[-71.380028504,41.708212518],[-71.380127505,41.708214518],[-71.380218504,41.708226518],[-71.380257504,41.708230518],[-71.380379505,41.708245518],[-71.380424505,41.708262518],[-71.380531504,41.708328518],[-71.380570504,41.708349518],[-71.380699504,41.708360518],[-71.380745504,41.708346518],[-71.380791505,41.708304518],[-71.380890505,41.708235518],[-71.381035504,41.708205518],[-71.381081505,41.708204518],[-71.381172505,41.708215518],[-71.381287504,41.708303518],[-71.381386505,41.708409518],[-71.381447505,41.708502518],[-71.381577504,41.708567518],[-71.381683505,41.708642518],[-71.381782505,41.708689518],[-71.381920505,41.708704518],[-71.382004505,41.708666518],[-71.382011505,41.708626518],[-71.381966505,41.708582518],[-71.381897505,41.708547518],[-71.381752505,41.708492519],[-71.381683505,41.708425518],[-71.381660505,41.708322518],[-71.381676505,41.708290518],[-71.381706505,41.708281518],[-71.381844505,41.708323518],[-71.381981505,41.708370518],[-71.382111505,41.708417518],[-71.382233505,41.708482518],[-71.382355506,41.708560518],[-71.382462505,41.708639518],[-71.382599505,41.708686518],[-71.382736505,41.708723518],[-71.382828505,41.708771518],[-71.382874505,41.708792518],[-71.382991505,41.708852518],[-71.383049505,41.708780518],[-71.383156506,41.708602518],[-71.383232506,41.708456518],[-71.383285506,41.708302518],[-71.383331506,41.708135518],[-71.383354505,41.707990518],[-71.383362505,41.707729518],[-71.383362505,41.707648518],[-71.383362505,41.707386518],[-71.383370506,41.707314518],[-71.383369506,41.707116518],[-71.383423506,41.706471518],[-71.383461506,41.706069518],[-71.383514505,41.705789517],[-71.383545506,41.705658518],[-71.383659506,41.705264517],[-71.383789505,41.704865517],[-71.383884505,41.704584517],[-71.383896506,41.704547517],[-71.383995505,41.704275517],[-71.384010506,41.704243517],[-71.384071506,41.704093517],[-71.384132505,41.703971517],[-71.384316506,41.703688517],[-71.384521506,41.703463517],[-71.385002506,41.703074517],[-71.385162506,41.702936517],[-71.385429506,41.702696517],[-71.385597506,41.702562517],[-71.385361505,41.702216516],[-71.385239506,41.702065517],[-71.385140506,41.701959517],[-71.385040506,41.701862516],[-71.384926506,41.701748516],[-71.384727506,41.701540517],[-71.384552506,41.701364517],[-71.384514506,41.701324517],[-71.384483505,41.701288517],[-71.384369505,41.701178517],[-71.384163505,41.700998517],[-71.383980505,41.700835516],[-71.383854505,41.700728517],[-71.383759506,41.700646517],[-71.383644505,41.700536516],[-71.383492505,41.700413517],[-71.383278505,41.700251516],[-71.383209505,41.700203517],[-71.383125505,41.700146516],[-71.383026505,41.700076516],[-71.382973505,41.700041517],[-71.382858505,41.699980516],[-71.382828505,41.699958516],[-71.382790505,41.699941516],[-71.382683505,41.699885517],[-71.382645505,41.699872517],[-71.382393505,41.699751517],[-71.382042505,41.699605516],[-71.381775504,41.699480517],[-71.381493505,41.699365517],[-71.381248504,41.699253516],[-71.381073504,41.699166517],[-71.380989505,41.699127517],[-71.380768504,41.699042516],[-71.380585504,41.698951516],[-71.380531504,41.698921516],[-71.380402504,41.698847516],[-71.380303504,41.698781516],[-71.380188504,41.698707516],[-71.380081504,41.698615516],[-71.379951504,41.698482516],[-71.379883504,41.698398516],[-71.379776504,41.698270516],[-71.379669503,41.698119516],[-71.379639504,41.698052516],[-71.379562504,41.697955516],[-71.379516504,41.697870516],[-71.379463504,41.697776516],[-71.379440504,41.697718516],[-71.379407504,41.697657516],[-71.379280503,41.697681516],[-71.379120503,41.697693516],[-71.379013504,41.697673516],[-71.378868503,41.697649516],[-71.378723504,41.697639516],[-71.378563503,41.697615516],[-71.378494504,41.697616516],[-71.378395504,41.697587516],[-71.378307503,41.697541516],[-71.378220504,41.697496516],[-71.378097503,41.697440516],[-71.377823503,41.697329516],[-71.377686503,41.697259516],[-71.377564503,41.697172516],[-71.377442503,41.697089516],[-71.377334503,41.697005516],[-71.377251503,41.696899516],[-71.377174503,41.696806516],[-71.377083503,41.696785516],[-71.376996502,41.696771516],[-71.376849503,41.696748516],[-71.376762502,41.696734516],[-71.376686502,41.696699516],[-71.376602503,41.696665516],[-71.376450502,41.696524516],[-71.376411502,41.696493516],[-71.376373502,41.696435516],[-71.376289503,41.696383516],[-71.376244503,41.696326516],[-71.376221502,41.696213516],[-71.376206503,41.696097516],[-71.376188503,41.696044516],[-71.376167503,41.695985516],[-71.376129503,41.695869516],[-71.376083502,41.695734516],[-71.376061502,41.695622515],[-71.376061502,41.695505515],[-71.376098502,41.695387516],[-71.376122502,41.695342516],[-71.376136502,41.695312515],[-71.376206503,41.695164516],[-71.376228503,41.695137515],[-71.376236502,41.695056515],[-71.376183502,41.694949516],[-71.376167503,41.694837516],[-71.376175502,41.694710515],[-71.376205502,41.694602516],[-71.376167502,41.694476515],[-71.376143502,41.694448516],[-71.376122502,41.694423516],[-71.376084502,41.694370516],[-71.376022502,41.694268516],[-71.376007502,41.694146515],[-71.376023502,41.693907515],[-71.376028502,41.693808515],[-71.376030502,41.693781516],[-71.376068502,41.693641515],[-71.376091502,41.693501515],[-71.376076503,41.693393516],[-71.376053503,41.693285515],[-71.376045502,41.693146515],[-71.376046502,41.693131515],[-71.376068502,41.692740515],[-71.376068502,41.692515515],[-71.376022502,41.692385515],[-71.375980502,41.692287515],[-71.375923502,41.692153515],[-71.376663502,41.691354515],[-71.377579502,41.691160515],[-71.377670503,41.691144515],[-71.377731503,41.691152515],[-71.377831503,41.691177514],[-71.378060503,41.691258515],[-71.378204502,41.691282515],[-71.378303503,41.691280515],[-71.378624503,41.691224515],[-71.378563503,41.690658515],[-71.378517503,41.690397514],[-71.378457502,41.689953514],[-71.378433503,41.689773514],[-71.378357503,41.689104515],[-71.378273503,41.688516514],[-71.378174503,41.687730514],[-71.378151503,41.687356514],[-71.378182503,41.687162514],[-71.378197503,41.687058514],[-71.378273503,41.686687514],[-71.378380502,41.686140514],[-71.378464503,41.685742514],[-71.378487503,41.685607514],[-71.378563503,41.685290513],[-71.378609503,41.685095513],[-71.378677503,41.684653514],[-71.378738503,41.684273513],[-71.378746503,41.684246514],[-71.378754502,41.684187514],[-71.378784503,41.683826513],[-71.378814503,41.683519513],[-71.378876503,41.683027513],[-71.378891502,41.682856513],[-71.378983502,41.681778513],[-71.379002503,41.681564513],[-71.379051503,41.681029513],[-71.379097503,41.680339513],[-71.379189503,41.679770512],[-71.379227503,41.679490513],[-71.379265503,41.678863513],[-71.379273503,41.678448512],[-71.379272503,41.678421512],[-71.379265502,41.678214512],[-71.379227502,41.677549512],[-71.379212503,41.676995512],[-71.379150502,41.676722512],[-71.379013502,41.676189512],[-71.378822502,41.675643512],[-71.378807503,41.675585512],[-71.378494502,41.674308511],[-71.378372502,41.673613511],[-71.378181502,41.672504511],[-71.378021502,41.671553511],[-71.377968502,41.671135511],[-71.377937502,41.670861511],[-71.377922502,41.670690511],[-71.377983502,41.670216511],[-71.378067501,41.669602511],[-71.378136502,41.66906951],[-71.378250502,41.668509511],[-71.378296502,41.66828751],[-71.378372502,41.66795251],[-71.378267501,41.66735151],[-71.378121502,41.66675951],[-71.378181958,41.666731339],[-71.378056403,41.666789566],[-71.377919455,41.666841586],[-71.377787652,41.666898276],[-71.377668323,41.666971285],[-71.377552066,41.667048208],[-71.377458625,41.667139906],[-71.377356871,41.667224642],[-71.377268615,41.667316322],[-71.377162702,41.667406452],[-71.377044405,41.667481016],[-71.37691883,41.667549398],[-71.376797388,41.667609963],[-71.376674916,41.66768219],[-71.376571171,41.667722581],[-71.376445639,41.667752039],[-71.376454929,41.667790172],[-71.376582459,41.667816677],[-71.376620714,41.667924021],[-71.376669301,41.668035263],[-71.376669167,41.668153475],[-71.376611974,41.668268537],[-71.376517481,41.668366454],[-71.376407448,41.668456623],[-71.376295335,41.668533481],[-71.376191541,41.668614326],[-71.376174312,41.668628715],[-71.376085628,41.668702899],[-71.375982842,41.668798474],[-71.37590494,41.668896407],[-71.375833256,41.668995903],[-71.375739822,41.669081402],[-71.375638073,41.669160648],[-71.375563281,41.669258608],[-71.375445984,41.669333949],[-71.375288306,41.669376613],[-71.375167899,41.669451173],[-71.375088927,41.669549105],[-71.375032816,41.66965406],[-71.37496113,41.669753555],[-71.374867685,41.669843695],[-71.374757638,41.669922955],[-71.374688069,41.669984329],[-71.37467549,41.670100971],[-71.374677424,41.670204411],[-71.374630626,41.670319507],[-71.374574475,41.670429081],[-71.374479968,41.670530906],[-71.374406197,41.670635041],[-71.374326201,41.670740747],[-71.374236885,41.670839445],[-71.374166217,41.670947516],[-71.374156734,41.671055609],[-71.374155159,41.67106567],[-71.374131727,41.67117919],[-71.37409269,41.671286153],[-71.37405264,41.671396842],[-71.374005642,41.67150375],[-71.374003895,41.671507819],[-71.373960695,41.671606955],[-71.373917548,41.671725828],[-71.373893391,41.671835117],[-71.373874102,41.67195038],[-71.373823166,41.672058747],[-71.373766153,41.672170813],[-71.373689455,41.672273046],[-71.373593016,41.672362519],[-71.373519308,41.672464023],[-71.373466325,41.672573874],[-71.373437089,41.672690613],[-71.373426803,41.672802981],[-71.373411437,41.672924217],[-71.373399069,41.673040334],[-71.373397613,41.673160945],[-71.37339713,41.673283066],[-71.373419425,41.6734083],[-71.373462688,41.673527748],[-71.373497019,41.673644122],[-71.373524427,41.673760488],[-71.373560844,41.673870941],[-71.373605227,41.67397923],[-71.373655559,41.674086794],[-71.373698936,41.674195059],[-71.373729304,41.674310696],[-71.373723958,41.674423871],[-71.373771298,41.674533626],[-71.373819615,41.674642697],[-71.373862048,41.674750184],[-71.373904384,41.674860689],[-71.373924836,41.674977733],[-71.373946371,41.675087346],[-71.37397076,41.675203686],[-71.373999109,41.675323049],[-71.374014589,41.675440797],[-71.373990252,41.675563487],[-71.373977814,41.675684818],[-71.374018089,41.675804194],[-71.374041532,41.675921287],[-71.374053987,41.67604125],[-71.374025689,41.676161672],[-71.374030255,41.676276389],[-71.374009049,41.676388676],[-71.373959953,41.676505988],[-71.373944735,41.676613868],[-71.373924576,41.676720966],[-71.37392716,41.676834926],[-71.373900911,41.676952422],[-71.373846988,41.677057768],[-71.373789064,41.67716535],[-71.373754962,41.677273827],[-71.373741579,41.677394379],[-71.373692552,41.677507231],[-71.373612899,41.677604246],[-71.373528489,41.677684081],[-71.37359886,41.677779112],[-71.373642128,41.677897073],[-71.373649537,41.678023708],[-71.373654175,41.678132457],[-71.373660756,41.678245713],[-71.373661425,41.678355898],[-71.373620404,41.678461371],[-71.373574337,41.678572762],[-71.3735412,41.6786865],[-71.373493221,41.678792652],[-71.37344531,41.678895809],[-71.373401224,41.67900798],[-71.373365968,41.679128347],[-71.373332727,41.679248031],[-71.373300606,41.679356533],[-71.373267436,41.679470957],[-71.373249257,41.679578789],[-71.3732389,41.679695639],[-71.373237514,41.679811036],[-71.373250941,41.679933264],[-71.373277343,41.680049629],[-71.373316759,41.680157112],[-71.373367957,41.680276615],[-71.373403374,41.680385557],[-71.373440735,41.68049903],[-71.373476072,41.680617646],[-71.373507528,41.680724365],[-71.37352806,41.680832445],[-71.373511826,41.680944075],[-71.373483664,41.681055554],[-71.37351548,41.681134694],[-71.3734608,41.68121925],[-71.373488213,41.681334084],[-71.373433128,41.681454338],[-71.373377146,41.681564941],[-71.37330238,41.681671612],[-71.373225568,41.681779082],[-71.373120067,41.681877394],[-71.37302051,41.681978001],[-71.372944777,41.682079502],[-71.372881835,41.682191537],[-71.372858574,41.682307505],[-71.372821433,41.682423433],[-71.372780197,41.682543062],[-71.372728103,41.682661079],[-71.372676041,41.682778409],[-71.372640777,41.682901017],[-71.372595788,41.683004954],[-71.372538752,41.683122965],[-71.372481721,41.683238002],[-71.372432762,41.683343398],[-71.372383804,41.683448794],[-71.372334736,41.683563131],[-71.372279684,41.683679703],[-71.372231735,41.683783613],[-71.372187641,41.683897247],[-71.372137528,41.684015288],[-71.372080529,41.684128862],[-71.372051875,41.684178502],[-71.37201762,41.684237878],[-71.372012837,41.684265362],[-71.371996235,41.684360594],[-71.371965942,41.684483253],[-71.371927687,41.684605858],[-71.371888634,41.684715038],[-71.371844611,41.684822726],[-71.371808446,41.684937169],[-71.37177138,41.685044133],[-71.371730458,41.685142128],[-71.371650857,41.6852369],[-71.371569249,41.685328698],[-71.371470726,41.685427085],[-71.371373181,41.685524697],[-71.37127582,41.685605956],[-71.371172582,41.685681949],[-71.371056369,41.685762319],[-71.370953055,41.685845012],[-71.370866573,41.685932253],[-71.37076013,41.686023907],[-71.37063303,41.686101222],[-71.370516955,41.686172649],[-71.370399951,41.686235865],[-71.370275842,41.686312474],[-71.370159624,41.68639362],[-71.370042475,41.686468019],[-71.36990665,41.68652888],[-71.369783623,41.686598035],[-71.36975064,41.686614509],[-71.369649677,41.68666489],[-71.369516629,41.686740664],[-71.369390643,41.68680906],[-71.369261742,41.686869975],[-71.369126894,41.686930104],[-71.368992047,41.686989525],[-71.368862117,41.687046344],[-71.368856224,41.687048922],[-71.368724362,41.687110564],[-71.368585623,41.68716321],[-71.368433078,41.68720834],[-71.368293548,41.687244611],[-71.368146985,41.687289038],[-71.368004385,41.687334201],[-71.367860746,41.687380872],[-71.367709314,41.687418569],[-71.367552953,41.687449514],[-71.367395686,41.687475975],[-71.367247396,41.687498788],[-71.367096947,41.687532757],[-71.366962316,41.687575024],[-71.366823791,41.687611294],[-71.366668618,41.687628106],[-71.366564269,41.687631873],[-71.366453127,41.687704811],[-71.366330099,41.687771012],[-71.366198238,41.687830387],[-71.366078302,41.687891399],[-71.365980323,41.687942078],[-71.365871022,41.688023982],[-71.365745967,41.688096103],[-71.365635652,41.688180979],[-71.365531283,41.688267417],[-71.365432895,41.688353107],[-71.365334439,41.688441793],[-71.365220304,41.688514726],[-71.365127487,41.688547594],[-71.364972606,41.68853982],[-71.364822626,41.688538043],[-71.36482936,41.688556666],[-71.364971039,41.688588941],[-71.365082511,41.68865226],[-71.365151764,41.688756282],[-71.365211288,41.688843758],[-71.365198658,41.688930897],[-71.365203801,41.688966602],[-71.365239979,41.689013732],[-71.365191553,41.689236056],[-71.365113093,41.689479018],[-71.365035188,41.689675076],[-71.364988986,41.68969478],[-71.364962939,41.689734153],[-71.364844839,41.68980484],[-71.364716826,41.689874693],[-71.36458294,41.689936327],[-71.364501219,41.689958117],[-71.364381153,41.689947593],[-71.364242441,41.689997261],[-71.364199726,41.689997714],[-71.364123076,41.689929404],[-71.364051161,41.689959461],[-71.36403464,41.690009959],[-71.364025181,41.690053834],[-71.363930756,41.690138842],[-71.363873886,41.690239742],[-71.363833502,41.690292293],[-71.363763787,41.690305955],[-71.363738175,41.690370576],[-71.363776497,41.690485516],[-71.363732683,41.690573076],[-71.363670582,41.690535428],[-71.36359273,41.69064584],[-71.363502987,41.690752464],[-71.363424381,41.690844259],[-71.363366503,41.690945158],[-71.363317344,41.691063196],[-71.363274275,41.6911731],[-71.363235171,41.691283031],[-71.363176277,41.691387656],[-71.363132239,41.691493786],[-71.36309407,41.691608978],[-71.36307976,41.691724268],[-71.363075372,41.69183671],[-71.363113345,41.69190024],[-71.36323069,41.691972533],[-71.363284009,41.692080127],[-71.363298762,41.692173314],[-71.363310228,41.69229179],[-71.363351528,41.692326348],[-71.363474498,41.692263902],[-71.363520061,41.692273881],[-71.363662462,41.692329233],[-71.363796756,41.692394936],[-71.363936575,41.692416027],[-71.364063368,41.692364035],[-71.364171565,41.692289563],[-71.364283682,41.692222575],[-71.364429706,41.69222357],[-71.364571179,41.692270733],[-71.36470453,41.692335679],[-71.364815824,41.692413885],[-71.364940057,41.692490712],[-71.365054232,41.692577863],[-71.36516141,41.692669443],[-71.365252729,41.692757962],[-71.365346891,41.692858377],[-71.365436089,41.692955081],[-71.36551428,41.693062063],[-71.365547639,41.693174733],[-71.365476923,41.693272576],[-71.365512225,41.693389708],[-71.36551584,41.693499942],[-71.365547286,41.69360815],[-71.365647505,41.693701916],[-71.365749786,41.693787521],[-71.365813065,41.693891444],[-71.365857334,41.694010918],[-71.365892781,41.694117644],[-71.36590627,41.694233881],[-71.365933604,41.694353954],[-71.365999981,41.69445047],[-71.366046246,41.694563978],[-71.366066763,41.69467581],[-71.366066343,41.694789767],[-71.366030749,41.694856549],[-71.366022192,41.694907103],[-71.366082439,41.695017722],[-71.366136698,41.695131285],[-71.366152136,41.695249789],[-71.366150704,41.695366717],[-71.366164087,41.695490364],[-71.366163628,41.69560878],[-71.366151235,41.6957286],[-71.366128999,41.695842348],[-71.366125879,41.695860891],[-71.366143582,41.695946694],[-71.36611964,41.696117819],[-71.366183307,41.69611005],[-71.366134399,41.696211006],[-71.366120375,41.69621984],[-71.366101568,41.696239806],[-71.366099666,41.696288949],[-71.366107209,41.69640367],[-71.366123628,41.696490455],[-71.366101155,41.696909689],[-71.366102506,41.696993849],[-71.366096395,41.697086074],[-71.366094883,41.697108735],[-71.366102806,41.697231689],[-71.366133238,41.697344515],[-71.366161842,41.697441263],[-71.36613954,41.697557526],[-71.366156295,41.697673973],[-71.366181802,41.697792625],[-71.366199994,41.697849019],[-71.366135835,41.697946115],[-71.366115448,41.69806604],[-71.366134149,41.698185416],[-71.366155282,41.698236005],[-71.366121215,41.698360282],[-71.366141879,41.698475223],[-71.36616124,41.698497269],[-71.366157112,41.698530928],[-71.366096729,41.698646324],[-71.366082195,41.698768474],[-71.366046145,41.698892017],[-71.36601708,41.699002395],[-71.36597912,41.699120059],[-71.365953966,41.69922756],[-71.365904322,41.699343724],[-71.365830268,41.699459081],[-71.365775658,41.699585461],[-71.365705541,41.699700068],[-71.365637352,41.699811795],[-71.365602786,41.699867281],[-71.365532669,41.699981156],[-71.365475177,41.700099505],[-71.365407021,41.700209747],[-71.365350538,41.70032661],[-71.365320202,41.700475019],[-71.365346847,41.700574668],[-71.36541537,41.700683971],[-71.365443794,41.700808482],[-71.365467468,41.700913959],[-71.365456213,41.700984909],[-71.365438729,41.701115837],[-71.365440877,41.701227098],[-71.365431186,41.701352936],[-71.365382552,41.701466173],[-71.365297721,41.701582203],[-71.365190543,41.701687916],[-71.365074582,41.701790622],[-71.365002505,41.701906713],[-71.364945008,41.702025771],[-71.36486224,41.702132313],[-71.364810189,41.702171609],[-71.364801094,41.702216193],[-71.364836314,41.702345148],[-71.364881375,41.702466819],[-71.364910797,41.702581085],[-71.364970599,41.702688206],[-71.364990325,41.702798756],[-71.36499145,41.702917334],[-71.36495162,41.703022531],[-71.364909823,41.703134358],[-71.364865987,41.703257868],[-71.36482326,41.703361621],[-71.364778404,41.703490962],[-71.36474637,41.703603532],[-71.364721132,41.703720547],[-71.364674457,41.703829418],[-71.364669946,41.70391428],[-71.364707172,41.704032992],[-71.364709273,41.704151525],[-71.364697882,41.704242965],[-71.364662919,41.7043548],[-71.364630171,41.704429338],[-71.364633866,41.704457151],[-71.364707379,41.70455992],[-71.364777939,41.704659713],[-71.364900325,41.70475609],[-71.364982549,41.704867651],[-71.365058997,41.704968205],[-71.365141185,41.70508267],[-71.365232234,41.705192091],[-71.365316388,41.705300727],[-71.365383078,41.705398342],[-71.365443823,41.705508345],[-71.365476198,41.705627051],[-71.365459162,41.705689166],[-71.36549545,41.70580495],[-71.365511303,41.70591554],[-71.365500716,41.706031109],[-71.365469535,41.706159048],[-71.365420817,41.706281798],[-71.365397616,41.706387861],[-71.365418316,41.70650063],[-71.36548594,41.70660481],[-71.365558411,41.706711945],[-71.365626928,41.706827125],[-71.365669159,41.70693267],[-71.365690721,41.707057149],[-71.365691523,41.707067418],[-71.365700588,41.707184565],[-71.365720479,41.707275813],[-71.365736009,41.707424],[-71.365768564,41.707516361],[-71.365766884,41.707634181],[-71.365789209,41.70777332],[-71.365789231,41.707777574],[-71.365789402,41.707885974],[-71.36579543,41.707995798],[-71.365782793,41.708128905],[-71.36576724,41.708255467],[-71.365740976,41.708381263],[-71.365717703,41.708492379],[-71.365690588,41.708602051],[-71.365693898,41.708683286],[-71.365752728,41.708791114],[-71.36581734,41.708906999],[-71.365868186,41.70903819],[-71.365894749,41.709150302],[-71.365917403,41.709263828],[-71.365931232,41.709379494],[-71.365945061,41.709495182],[-71.365982294,41.709613161],[-71.366018491,41.709745044],[-71.366042933,41.70987904],[-71.366054761,41.710003508],[-71.366089059,41.710123656],[-71.366140537,41.710304634],[-71.366181541,41.71044384],[-71.366215705,41.710585211],[-71.366237336,41.710706809],[-71.366258933,41.710829824],[-71.36627077,41.710949901],[-71.366269954,41.711064062],[-71.366249518,41.711190574],[-71.366210562,41.711314113],[-71.366155898,41.711447811],[-71.366088576,41.711577103],[-71.366016493,41.711691731],[-71.36601098,41.711701261],[-71.365945277,41.711815095],[-71.365874127,41.711935601],[-71.365807867,41.712053162],[-71.365747384,41.712180976],[-71.365672332,41.712299236],[-71.365587526,41.712410852],[-71.365502886,41.712502001],[-71.365406555,41.71259309],[-71.365319876,41.712695237],[-71.365253709,41.712796698],[-71.365188461,41.712910578],[-71.365171899,41.713037116],[-71.365190824,41.713123561],[-71.365284141,41.713189785],[-71.365412975,41.713202766],[-71.365426775,41.713185973],[-71.36548031,41.713068351],[-71.365533871,41.712952925],[-71.365611848,41.712837596],[-71.365678996,41.71273394],[-71.365784182,41.712640711],[-71.36591457,41.71256583],[-71.366041996,41.712506335],[-71.366179112,41.712454216],[-71.366326495,41.712469413],[-71.366463182,41.712477256],[-71.366583616,41.712433098],[-71.366712938,41.71237141],[-71.366849066,41.712324366],[-71.367017153,41.712305282],[-71.367183257,41.712300077],[-71.367333523,41.712323349]]]]}}"}, +{"type": "precinct", "typeId": 3520, "areaId": 25991, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":330,\"NAME\":\"3520\",\"SHAPE_Length\":0.12609474922326,\"SHAPE_Area\":-0.00020102763455725},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.391585335,41.686810986],[-71.391585169,41.686804788],[-71.39158452,41.686804617],[-71.391585335,41.686810986]]],[[[-71.391402507,41.689495514],[-71.39140243,41.689496036],[-71.391403005,41.689494711],[-71.391402507,41.689495514]]],[[[-71.392608627,41.692761558],[-71.392651109,41.692777068],[-71.392608804,41.692761258],[-71.392608627,41.692761558]]],[[[-71.392827764,41.692793762],[-71.392821875,41.692792559],[-71.392821674,41.692792548],[-71.392827764,41.692793762]]],[[[-71.393261508,41.692989514],[-71.393256776,41.693064632],[-71.393261891,41.69298962],[-71.393240295,41.69294193],[-71.393261508,41.692989514]]],[[[-71.391892613,41.692813666],[-71.39139103,41.692852368],[-71.391260057,41.693118336],[-71.391391507,41.692852514],[-71.391741507,41.692825515],[-71.392585508,41.692760515],[-71.392594508,41.692784515],[-71.39259478,41.692784068],[-71.39258577,41.692760253],[-71.391892613,41.692813666]]],[[[-71.391106354,41.693668757],[-71.391208427,41.693670563],[-71.391208508,41.693670515],[-71.391106507,41.693668515],[-71.391132056,41.693558535],[-71.391106354,41.693668757]]],[[[-71.391112447,41.693782926],[-71.3911215,41.693820411],[-71.391112508,41.693782515],[-71.391112447,41.693782926]]],[[[-71.391042141,41.694076134],[-71.390972079,41.694188584],[-71.390920616,41.694278],[-71.390927507,41.694266515],[-71.390972507,41.694188515],[-71.391042507,41.694076515],[-71.391082596,41.694026661],[-71.391042141,41.694076134]]],[[[-71.393801508,41.694173515],[-71.393783509,41.694287515],[-71.393801829,41.69417351],[-71.393808713,41.694107468],[-71.393801508,41.694173515]]],[[[-71.390979188,41.694585989],[-71.390946391,41.694674439],[-71.39090779,41.694705876],[-71.390946507,41.694674515],[-71.390979507,41.694585515],[-71.390925999,41.69449317],[-71.390979188,41.694585989]]],[[[-71.393648508,41.694748515],[-71.393661508,41.694797515],[-71.393681657,41.69480294],[-71.393661971,41.694797252],[-71.39364864,41.694748166],[-71.393648508,41.694748515]]],[[[-71.390777459,41.694971669],[-71.390798528,41.695052875],[-71.390820553,41.695091865],[-71.390959227,41.695384379],[-71.390959419,41.695384331],[-71.390820508,41.695091515],[-71.390798508,41.695052515],[-71.390777507,41.694971515],[-71.390768456,41.694913185],[-71.390777459,41.694971669]]],[[[-71.391219872,41.69583396],[-71.391253779,41.695858784],[-71.391219638,41.695833612],[-71.391219872,41.69583396]]],[[[-71.391454166,41.695987771],[-71.391607208,41.696030818],[-71.391614762,41.696031834],[-71.391607507,41.696030516],[-71.391454507,41.695987516],[-71.391395311,41.695953616],[-71.391454166,41.695987771]]],[[[-71.392001721,41.696133834],[-71.392001508,41.696133515],[-71.391971604,41.696112251],[-71.392001721,41.696133834]]],[[[-71.392066765,41.696230853],[-71.392119687,41.696235675],[-71.392066542,41.696230518],[-71.392066765,41.696230853]]],[[[-71.391603129,41.696494055],[-71.391586509,41.696473729],[-71.391525668,41.69639937],[-71.39150051,41.696403801],[-71.391525507,41.696399516],[-71.391603129,41.696494055]]],[[[-71.391133402,41.696501064],[-71.391055486,41.696527327],[-71.391133507,41.696501515],[-71.391257824,41.696464311],[-71.391133402,41.696501064]]],[[[-71.391669508,41.696606515],[-71.391712768,41.696672929],[-71.39166974,41.696606243],[-71.391616595,41.696516724],[-71.391669508,41.696606515]]],[[[-71.390697096,41.696626019],[-71.390556246,41.696662087],[-71.390513165,41.696678054],[-71.390533952,41.696738716],[-71.390513507,41.696678515],[-71.390556507,41.696662515],[-71.390697507,41.696626516],[-71.390792637,41.696601448],[-71.390697096,41.696626019]]],[[[-71.392338462,41.696482166],[-71.392323207,41.696572828],[-71.392307291,41.696620358],[-71.392291066,41.696707383],[-71.392304324,41.696778923],[-71.392291508,41.696707516],[-71.392307508,41.696620515],[-71.392323507,41.696572516],[-71.392338508,41.696482515],[-71.392338508,41.696475204],[-71.392338462,41.696482166]]],[[[-71.390538507,41.696801516],[-71.390549507,41.696784516],[-71.390549479,41.696784434],[-71.39053871,41.696801069],[-71.390470935,41.696713758],[-71.390470727,41.696713801],[-71.390538507,41.696801516]]],[[[-71.390256649,41.696780263],[-71.390120632,41.696827312],[-71.390073592,41.696841417],[-71.390120507,41.696827516],[-71.390152507,41.696816515],[-71.390256507,41.696780515],[-71.390304558,41.696762668],[-71.390256649,41.696780263]]],[[[-71.391871508,41.696918516],[-71.3918942,41.696950417],[-71.391885645,41.696938347],[-71.391871764,41.696918781],[-71.391858607,41.696897753],[-71.391871508,41.696918516]]],[[[-71.392431458,41.697036487],[-71.392430557,41.697048036],[-71.392431508,41.697036516],[-71.39242227,41.697021792],[-71.392431458,41.697036487]]],[[[-71.389863143,41.696926615],[-71.389725104,41.696978076],[-71.389592013,41.697026614],[-71.389533717,41.697050669],[-71.389592506,41.697026515],[-71.389725507,41.696978516],[-71.389863507,41.696926516],[-71.389886265,41.69691551],[-71.389863143,41.696926615]]],[[[-71.389337333,41.697142018],[-71.389247675,41.697172688],[-71.389337507,41.697142516],[-71.389438573,41.697091983],[-71.389337333,41.697142018]]],[[[-71.392180508,41.697288516],[-71.392334508,41.697258516],[-71.39234554,41.697256677],[-71.39233317,41.697258547],[-71.392313789,41.697261456],[-71.392180797,41.697288042],[-71.392110808,41.697223283],[-71.392180508,41.697288516]]],[[[-71.389064329,41.697230236],[-71.389053308,41.697268989],[-71.389068144,41.697318423],[-71.389071676,41.697330181],[-71.389053507,41.697268516],[-71.389064507,41.697230516],[-71.389143475,41.697206046],[-71.389064329,41.697230236]]],[[[-71.389124125,41.697485148],[-71.389134464,41.697540281],[-71.389124506,41.697485516],[-71.389107118,41.69743747],[-71.389124125,41.697485148]]],[[[-71.388926725,41.697642532],[-71.389009506,41.697648516],[-71.389022598,41.697658126],[-71.389009296,41.697648254],[-71.389005853,41.697645713],[-71.388926828,41.697642503],[-71.388926725,41.697642532]]],[[[-71.389178266,41.697710782],[-71.389179045,41.697745477],[-71.389178507,41.697710515],[-71.389160689,41.697650251],[-71.389178266,41.697710782]]],[[[-71.388644024,41.697732197],[-71.388583246,41.69775301],[-71.388644507,41.697732516],[-71.38877911,41.69768366],[-71.388644024,41.697732197]]],[[[-71.389162507,41.697762516],[-71.389179507,41.697775516],[-71.389179499,41.697775001],[-71.389147617,41.697751159],[-71.389162507,41.697762516]]],[[[-71.386670521,41.697856515],[-71.386682016,41.697855759],[-71.386670691,41.697856483],[-71.386670521,41.697856515]]],[[[-71.387192507,41.697824516],[-71.387214506,41.697845515],[-71.387291667,41.69791877],[-71.387192352,41.697824042],[-71.387129751,41.697804402],[-71.387192507,41.697824516]]],[[[-71.386670521,41.697856515],[-71.38650937,41.697888089],[-71.386380519,41.697956305],[-71.386509506,41.697888516],[-71.386670521,41.697856515]]],[[[-71.388225125,41.697876232],[-71.388089114,41.697917447],[-71.387952119,41.697963029],[-71.387840702,41.698009254],[-71.387952507,41.697963515],[-71.388092506,41.697916516],[-71.388225507,41.697876516],[-71.388291386,41.697852726],[-71.388225125,41.697876232]]],[[[-71.386372174,41.697960723],[-71.386276887,41.698043072],[-71.386175039,41.698125958],[-71.386276506,41.698043516],[-71.386372414,41.697960596],[-71.386372174,41.697960723]]],[[[-71.387559507,41.698129516],[-71.387701506,41.698082516],[-71.387791419,41.698033404],[-71.387701332,41.698082093],[-71.387559421,41.698129133],[-71.387514911,41.698113299],[-71.387559507,41.698129516]]],[[[-71.38615623,41.698140178],[-71.386164506,41.698134516],[-71.386164975,41.698134135],[-71.38615623,41.698140178]]],[[[-71.386053136,41.698211282],[-71.385942259,41.698291374],[-71.385815807,41.698361137],[-71.385707854,41.698444136],[-71.38570328,41.698448369],[-71.385815506,41.698361516],[-71.385942506,41.698291516],[-71.386055786,41.698209455],[-71.386053136,41.698211282]]],[[[-71.39806451,41.709494518],[-71.39807951,41.709521518],[-71.39811751,41.709633518],[-71.398209511,41.709856518],[-71.39827051,41.709999518],[-71.39833151,41.710146518],[-71.398400511,41.710293518],[-71.39850651,41.710543518],[-71.39864451,41.710932518],[-71.39868251,41.711062518],[-71.398788511,41.711339519],[-71.398834511,41.711477518],[-71.398903511,41.711737518],[-71.398918511,41.711768519],[-71.398926511,41.711791518],[-71.398964511,41.711952518],[-71.39899451,41.712123518],[-71.399010511,41.712230518],[-71.399025511,41.712374518],[-71.399055511,41.712590518],[-71.399559511,41.712412519],[-71.399887511,41.712298518],[-71.400069511,41.712233519],[-71.400310511,41.712145518],[-71.400688511,41.712006518],[-71.400986511,41.711901518],[-71.401451511,41.711734518],[-71.401993512,41.711547518],[-71.401939511,41.711476519],[-71.401665511,41.710909518],[-71.401535511,41.710656518],[-71.400925511,41.709443518],[-71.400902512,41.709408518],[-71.400879512,41.709377518],[-71.400818511,41.709342518],[-71.400780511,41.709334517],[-71.400749511,41.709335517],[-71.400711511,41.709340518],[-71.400650511,41.709355517],[-71.400602511,41.709369518],[-71.400490511,41.709020517],[-71.401245511,41.708928517],[-71.402100512,41.708820518],[-71.402199512,41.708809517],[-71.402252511,41.708790517],[-71.402260512,41.708758518],[-71.402222512,41.708615517],[-71.402184512,41.708395517],[-71.402145512,41.708220517],[-71.402031512,41.707853517],[-71.402054511,41.707731518],[-71.402054511,41.707709518],[-71.402061511,41.707686517],[-71.402092512,41.707613518],[-71.402122512,41.707563517],[-71.402161512,41.707508517],[-71.402229511,41.707435518],[-71.402267512,41.707393517],[-71.402298512,41.707235517],[-71.402321512,41.707154517],[-71.402344512,41.707090517],[-71.402359512,41.707022517],[-71.402382512,41.706959517],[-71.402385511,41.706947517],[-71.402507511,41.706497517],[-71.402527511,41.706442517],[-71.402565511,41.706396517],[-71.402579512,41.706352517],[-71.402606512,41.706307517],[-71.402634512,41.706261517],[-71.402662511,41.706201517],[-71.402687512,41.706156517],[-71.402704512,41.706110517],[-71.402722512,41.706066517],[-71.402742512,41.706021517],[-71.402760511,41.705969517],[-71.402772512,41.705924517],[-71.402789512,41.705877517],[-71.402814511,41.705834517],[-71.402850512,41.705750517],[-71.402786512,41.705739517],[-71.402825512,41.705653517],[-71.403008512,41.705162517],[-71.403053512,41.705044516],[-71.403214512,41.704586517],[-71.403282511,41.704396517],[-71.403450512,41.703964517],[-71.403503512,41.703815516],[-71.403923512,41.702689516],[-71.404144512,41.702153517],[-71.404312512,41.702208516],[-71.404828512,41.702386517],[-71.405296512,41.702548516],[-71.405441513,41.702590516],[-71.405663512,41.702662516],[-71.405769513,41.702691516],[-71.406044513,41.702757517],[-71.406601513,41.702903516],[-71.406688513,41.702926516],[-71.407077513,41.703026516],[-71.407127513,41.702978516],[-71.406845513,41.702903516],[-71.405655513,41.702581517],[-71.405266513,41.702458516],[-71.404823512,41.702310517],[-71.404124512,41.702071516],[-71.404053512,41.702047516],[-71.403244511,41.701767516],[-71.402756511,41.700710516],[-71.402489511,41.700130516],[-71.402010511,41.699139516],[-71.401726511,41.698552515],[-71.401756511,41.698533515],[-71.402420511,41.698361515],[-71.402946512,41.698215515],[-71.403130511,41.698176515],[-71.403359512,41.698130516],[-71.403855512,41.698061515],[-71.403931511,41.698046515],[-71.403999512,41.698036516],[-71.404701512,41.697922516],[-71.404652512,41.697884515],[-71.404609511,41.697852515],[-71.404571512,41.697808515],[-71.404549512,41.697763516],[-71.404511511,41.697660515],[-71.404572512,41.697569516],[-71.404602512,41.697510516],[-71.404648511,41.697446515],[-71.404732512,41.697313515],[-71.404907512,41.697067515],[-71.405014512,41.696871515],[-71.405037512,41.696789515],[-71.405044512,41.696676515],[-71.405399512,41.696411515],[-71.405737513,41.696157515],[-71.405749512,41.696125515],[-71.405839335,41.696058556],[-71.405859233,41.69604349],[-71.405892036,41.696016845],[-71.405909512,41.696002515],[-71.40592377,41.6959869],[-71.405951327,41.695956205],[-71.405983382,41.695903038],[-71.406019194,41.695847083],[-71.406039108,41.695791779],[-71.406069298,41.695740714],[-71.406079198,41.695729288],[-71.406113512,41.695689515],[-71.406148347,41.695640747],[-71.406148513,41.695640515],[-71.406183209,41.69558971],[-71.406202786,41.695552296],[-71.406212512,41.695533515],[-71.406243513,41.695476515],[-71.406273512,41.695415515],[-71.406283969,41.695377523],[-71.406288199,41.695361607],[-71.406303413,41.695306322],[-71.406308771,41.695285106],[-71.406317512,41.695249515],[-71.406336512,41.695188515],[-71.406350185,41.695172934],[-71.406379083,41.69513905],[-71.406392406,41.695100221],[-71.406400513,41.695075515],[-71.406405512,41.695020514],[-71.406405512,41.694987677],[-71.406405241,41.694964648],[-71.406393399,41.694903691],[-71.406387648,41.694883316],[-71.406375512,41.694841515],[-71.406352512,41.694780515],[-71.406351035,41.694778299],[-71.406307356,41.69473384],[-71.406265572,41.694679767],[-71.406260972,41.694670109],[-71.406237512,41.694621515],[-71.406214512,41.694567515],[-71.406196885,41.694562275],[-71.406140056,41.694545559],[-71.406090768,41.694497761],[-71.406090737,41.694497731],[-71.406090512,41.694497514],[-71.40608088,41.694478939],[-71.406062153,41.694443236],[-71.406004512,41.694398514],[-71.40597699,41.6943648],[-71.405964438,41.694349564],[-71.405909484,41.694308766],[-71.405890437,41.69429707],[-71.405849512,41.694272515],[-71.405810512,41.694225515],[-71.405787831,41.694201322],[-71.40576526,41.694177996],[-71.405746894,41.69414904],[-71.405731512,41.694125514],[-71.405698431,41.694090996],[-71.405685374,41.69407758],[-71.405645353,41.694027944],[-71.405624148,41.69400178],[-71.405601512,41.693974515],[-71.405564226,41.693933262],[-71.405554764,41.693922946],[-71.40554374,41.693909192],[-71.405516512,41.693875514],[-71.405472512,41.693831514],[-71.40545236,41.693809648],[-71.405425266,41.693780502],[-71.405390252,41.693729818],[-71.405352607,41.69368644],[-71.405346512,41.693679514],[-71.405344962,41.693678162],[-71.405299521,41.693638815],[-71.405251885,41.693605418],[-71.405240512,41.693597514],[-71.405177512,41.693557514],[-71.405155106,41.693544133],[-71.405105281,41.693514932],[-71.405044057,41.693464798],[-71.404991254,41.693414694],[-71.404951541,41.69336396],[-71.404944742,41.693345885],[-71.404908881,41.693252497],[-71.404903274,41.693238139],[-71.404899837,41.693230116],[-71.404875512,41.693174514],[-71.404851651,41.693139352],[-71.404837178,41.693118547],[-71.404784448,41.693060736],[-71.404761864,41.693040088],[-71.404733512,41.693014514],[-71.404677512,41.692975514],[-71.404546705,41.692896631],[-71.404546512,41.692896514],[-71.404544604,41.692895189],[-71.404487263,41.692855604],[-71.404450603,41.692828175],[-71.404433511,41.692815514],[-71.404425238,41.692807241],[-71.404383413,41.692765939],[-71.40435975,41.692737001],[-71.404343511,41.692717514],[-71.404312457,41.692678221],[-71.404294727,41.692656002],[-71.404286245,41.692644343],[-71.404257511,41.692605514],[-71.404216512,41.692541514],[-71.404193512,41.692487514],[-71.404184511,41.692432514],[-71.404199511,41.692360515],[-71.404218511,41.692304515],[-71.404245511,41.692234514],[-71.404273512,41.692181514],[-71.404277511,41.692122514],[-71.404229815,41.692065874],[-71.40421215,41.692053597],[-71.404111511,41.691984514],[-71.404040512,41.691941514],[-71.404026945,41.691934914],[-71.403966746,41.691905847],[-71.403891203,41.691883647],[-71.403860992,41.691876147],[-71.403804512,41.691862514],[-71.403780956,41.691851473],[-71.403740158,41.691832979],[-71.403712526,41.691800271],[-71.403694511,41.691779515],[-71.403658511,41.691730514],[-71.403626507,41.691706656],[-71.403603194,41.691689795],[-71.403539158,41.691644529],[-71.403503445,41.691612656],[-71.403479511,41.691591514],[-71.403432511,41.691535514],[-71.403406511,41.691475514],[-71.403378512,41.691416514],[-71.403362511,41.691350515],[-71.403361973,41.691315546],[-71.403361421,41.691285127],[-71.403371511,41.691214514],[-71.403371548,41.691214357],[-71.403384279,41.691159068],[-71.40339327,41.691104395],[-71.40340135,41.691046246],[-71.40339539,41.690992224],[-71.403393869,41.690984167],[-71.403383511,41.690931514],[-71.403377113,41.690893128],[-71.403373268,41.690871456],[-71.403365454,41.690812515],[-71.403363881,41.690789696],[-71.403359858,41.690733368],[-71.403357293,41.69069958],[-71.403362565,41.6906428],[-71.403389415,41.690581259],[-71.403423599,41.690532393],[-71.403482093,41.690487848],[-71.40353673,41.690451691],[-71.403588664,41.690407117],[-71.403634951,41.690363933],[-71.403680357,41.690318599],[-71.403693554,41.69030745],[-71.403793032,41.690277917],[-71.403794726,41.690205652],[-71.403712719,41.689997611],[-71.403652341,41.689955892],[-71.403571292,41.689924539],[-71.403486422,41.689898077],[-71.403398811,41.689868113],[-71.403331731,41.689839676],[-71.403261028,41.689806319],[-71.40320244,41.689771577],[-71.403141041,41.689739692],[-71.403072171,41.689704895],[-71.403011791,41.689664572],[-71.402953276,41.689622146],[-71.402891985,41.689579008],[-71.402842028,41.689526115],[-71.402799545,41.68947396],[-71.402772956,41.689423328],[-71.402781036,41.689365865],[-71.402768664,41.68929496],[-71.402759899,41.689240226],[-71.402794115,41.68918992],[-71.40282665,41.689121386],[-71.402828169,41.689064626],[-71.402821475,41.68899233],[-71.402822083,41.688932734],[-71.402823601,41.688876614],[-71.402824273,41.688815645],[-71.402818318,41.688758078],[-71.402803943,41.68870119],[-71.402785846,41.68864359],[-71.402756453,41.688590806],[-71.402718671,41.688537306],[-71.402666858,41.688482307],[-71.402608412,41.688434987],[-71.402552774,41.68838696],[-71.402504606,41.688342485],[-71.402459313,41.688293117],[-71.402425217,41.688243828],[-71.402376283,41.688181125],[-71.402330046,41.688131071],[-71.402281003,41.688080282],[-71.402229082,41.688035803],[-71.402185621,41.687986437],[-71.402145912,41.687936434],[-71.402098833,41.687878672],[-71.402061057,41.687821627],[-71.402027029,41.687768107],[-71.401991632,41.687752503],[-71.401850307,41.68773722],[-71.401833712,41.687735422],[-71.401755123,41.687734257],[-71.401681197,41.687735932],[-71.401601513,41.687752261],[-71.401527335,41.687778497],[-71.401452175,41.687809603],[-71.401381615,41.687844258],[-71.401306526,41.687868344],[-71.401249998,41.687904451],[-71.401232547,41.687963988],[-71.401249694,41.688023668],[-71.401272347,41.688093233],[-71.401279143,41.688158485],[-71.401274675,41.68822718],[-71.40126456,41.688297952],[-71.401253564,41.68836591],[-71.401234149,41.688433128],[-71.401210036,41.688499611],[-71.401193461,41.688564729],[-71.401194608,41.68863272],[-71.401200494,41.688694472],[-71.401197918,41.688762483],[-71.401190681,41.688826259],[-71.401186387,41.688880935],[-71.401174482,41.68894537],[-71.401158787,41.689013324],[-71.401126359,41.689070607],[-71.401067822,41.689122858],[-71.400998097,41.689169428],[-71.400935917,41.689210448],[-71.400872787,41.689253548],[-71.400816153,41.689298094],[-71.400758673,41.689337722],[-71.400722218,41.689334695],[-71.400714365,41.689282752],[-71.400735571,41.689222602],[-71.400754913,41.689163776],[-71.400772365,41.689103576],[-71.4007983,41.689042721],[-71.400819509,41.688980421],[-71.400838008,41.68891391],[-71.400853636,41.688850233],[-71.400871155,41.688785779],[-71.400883935,41.688729052],[-71.400874261,41.688670796],[-71.400837395,41.688618005],[-71.40079204,41.688570032],[-71.400753311,41.688518634],[-71.400723112,41.688455329],[-71.40076681,41.688390372],[-71.400777625,41.688341327],[-71.400749176,41.68829067],[-71.400713263,41.688233695],[-71.400696076,41.688180989],[-71.400719071,41.688127129],[-71.400743958,41.688073293],[-71.400754036,41.688007416],[-71.400745241,41.687952682],[-71.400725359,41.687886642],[-71.400750422,41.68781737],[-71.400788537,41.687752362],[-71.400821775,41.687703474],[-71.400858796,41.68765532],[-71.40091084,41.687598101],[-71.400977684,41.687559235],[-71.401062984,41.687541493],[-71.401120459,41.687503969],[-71.401170638,41.687449583],[-71.401218965,41.687389547],[-71.401271847,41.687342871],[-71.401346827,41.687330014],[-71.401416782,41.687351457],[-71.401491264,41.687384864],[-71.40155715,41.687433655],[-71.401600645,41.687480871],[-71.40165523,41.687537999],[-71.401699567,41.687592969],[-71.401739243,41.687643704],[-71.401793058,41.687686104],[-71.401848441,41.687699919],[-71.401973342,41.687699881],[-71.402022202,41.68769236],[-71.402094448,41.687671748],[-71.402176867,41.687662419],[-71.402244444,41.687642466],[-71.402292623,41.687598598],[-71.402264212,41.687543001],[-71.402248012,41.687482613],[-71.402249639,41.687415287],[-71.402261187,41.687385201],[-71.402264425,41.687079602],[-71.402264957,41.687030411],[-71.402311909,41.687011081],[-71.402387477,41.687032573],[-71.402463083,41.687049149],[-71.402528806,41.687024255],[-71.402572422,41.686971235],[-71.402602956,41.686913905],[-71.402618509,41.686857911],[-71.402611638,41.686801739],[-71.402586004,41.686745527],[-71.402553874,41.686687801],[-71.402520726,41.68663714],[-71.402485755,41.686582225],[-71.402447026,41.686530782],[-71.402400758,41.686481436],[-71.402348909,41.686430623],[-71.402296985,41.686389665],[-71.402230051,41.686347895],[-71.402164972,41.68631102],[-71.402098035,41.686271377],[-71.40202166,41.68623934],[-71.401946165,41.686210872],[-71.40186891,41.686176022],[-71.401804676,41.686144797],[-71.401733986,41.686106499],[-71.401676524,41.686055657],[-71.401657591,41.685987559],[-71.401676054,41.685923839],[-71.401708447,41.685867905],[-71.401715721,41.685799235],[-71.40167226,41.685750624],[-71.401610941,41.685708858],[-71.401549582,41.685673427],[-71.401488297,41.68562958],[-71.40143645,41.685578788],[-71.401402355,41.685530208],[-71.401374824,41.685478865],[-71.401364202,41.685421981],[-71.401380812,41.685353341],[-71.401428113,41.685304533],[-71.401476291,41.685260643],[-71.401491002,41.685196233],[-71.401453153,41.685149021],[-71.401380567,41.685114243],[-71.401307665,41.685106771],[-71.401229112,41.685103502],[-71.40114779,41.685096],[-71.401071197,41.685087838],[-71.400993695,41.685075445],[-71.400920864,41.685061706],[-71.400848101,41.685043051],[-71.400779167,41.685013902],[-71.400704689,41.684979785],[-71.400640492,41.684945723],[-71.400569622,41.684926383],[-71.400496128,41.684887373],[-71.400438531,41.68484705],[-71.400372472,41.684813696],[-71.400296135,41.684778182],[-71.400236637,41.68474417],[-71.400169667,41.684708024],[-71.400107329,41.684676067],[-71.400033839,41.684634267],[-71.399977184,41.684596758],[-71.399926144,41.684557881],[-71.399869598,41.684508457],[-71.399831928,41.684445123],[-71.399812925,41.684383999],[-71.399825745,41.684320983],[-71.399838814,41.684293254],[-71.399855404,41.684258027],[-71.39988892,41.684206394],[-71.399894394,41.684197961],[-71.399928755,41.68413295],[-71.399964023,41.684072858],[-71.399997433,41.684010614],[-71.400024144,41.683960279],[-71.400012142,41.683949017],[-71.399934326,41.683963265],[-71.399848122,41.683976775],[-71.399771392,41.683979132],[-71.399676804,41.683989089],[-71.399598179,41.683994212],[-71.399526081,41.684000095],[-71.399453107,41.684000374],[-71.399376412,41.683999918],[-71.399302494,41.683999464],[-71.399222047,41.683999005],[-71.399146298,41.683998573],[-71.399069604,41.683997408],[-71.398991021,41.683994823],[-71.398894786,41.683985133],[-71.398818203,41.683972076],[-71.398738111,41.683939303],[-71.398677706,41.683901104],[-71.398624948,41.683849601],[-71.398633802,41.683806158],[-71.398662477,41.683748827],[-71.398675225,41.683693495],[-71.39869078,41.683637479],[-71.398653669,41.683607807],[-71.398598051,41.683648877],[-71.398539588,41.683694816],[-71.398452473,41.683705487],[-71.398365467,41.683704999],[-71.398286914,41.6837031],[-71.398213065,41.683697751],[-71.398133636,41.683690271],[-71.398054138,41.683687663],[-71.397978393,41.683685103],[-71.397895176,41.683681118],[-71.397822274,41.683674375],[-71.39774376,41.683667582],[-71.397670857,41.683661525],[-71.397578445,41.683646258],[-71.397506533,41.6836311],[-71.397432899,41.683605421],[-71.397359398,41.683572744],[-71.397311274,41.683524058],[-71.397316625,41.683458862],[-71.397330285,41.683405635],[-71.39735054,41.683349669],[-71.397362447,41.68328592],[-71.397353689,41.683229792],[-71.397303496,41.683197227],[-71.397270475,41.683224389],[-71.397256669,41.683292298],[-71.397251362,41.683349078],[-71.397244153,41.683412853],[-71.397234141,41.683473791],[-71.39722223,41.683539644],[-71.397198289,41.683592816],[-71.397155796,41.683629003],[-71.39707721,41.683628567],[-71.397004271,41.683626009],[-71.396918315,41.68361779],[-71.39683703,41.683607472],[-71.39676413,41.683600042],[-71.39666877,41.683596641],[-71.396578009,41.683598229],[-71.396494721,41.683600509],[-71.396421711,41.683604308],[-71.396344981,41.683607349],[-71.396256958,41.683613856],[-71.396162368,41.683624474],[-71.39609027,41.683630354],[-71.395998491,41.683638939],[-71.395917059,41.683644079],[-71.395843137,41.683646414],[-71.395751427,41.683649395],[-71.395671821,41.683657327],[-71.395581826,41.683675678],[-71.395488112,41.683691967],[-71.39540468,41.683707602],[-71.395325948,41.683722556],[-71.395251954,41.683731247],[-71.395174314,41.683730742],[-71.395102328,41.683723998],[-71.395029567,41.683706048],[-71.394999379,41.683640638],[-71.394988761,41.683585193],[-71.394972605,41.683521281],[-71.394949891,41.683456632],[-71.394914123,41.683408826],[-71.394906665,41.683473905],[-71.394915382,41.683534951],[-71.394920382,41.68359318],[-71.394929028,41.683660561],[-71.394936801,41.68372092],[-71.394941697,41.683786856],[-71.394947678,41.683841588],[-71.394924541,41.68390599],[-71.394863204,41.683953982],[-71.394789173,41.683966172],[-71.394713354,41.683971339],[-71.394640271,41.683982844],[-71.394557825,41.683992168],[-71.394472639,41.683997944],[-71.394385594,41.684002347],[-71.394297604,41.684006702],[-71.394205921,41.684011764],[-71.394114148,41.684016116],[-71.394023414,41.68401912],[-71.393930789,41.68402203],[-71.393839116,41.684021488],[-71.393745551,41.684020921],[-71.393657632,41.684018988],[-71.393584727,41.684014323],[-71.393495897,41.684009576],[-71.393421134,41.684003538],[-71.393336129,41.683991818],[-71.393246422,41.683982839],[-71.393160436,41.683974617],[-71.393073535,41.683965686],[-71.392993197,41.68395468],[-71.392906368,41.683939437],[-71.392846803,41.683911732],[-71.392806159,41.683861679],[-71.39277306,41.683897279],[-71.392796727,41.683956304],[-71.39282888,41.684012592],[-71.392851706,41.684063932],[-71.392884732,41.684127265],[-71.392917838,41.684179323],[-71.392931562,41.684200055],[-71.39295189,41.684230742],[-71.392985978,41.684279348],[-71.392991152,41.684287014],[-71.393022832,41.684334268],[-71.393054078,41.684385616],[-71.393087983,41.684452449],[-71.393106003,41.684513572],[-71.393129698,41.684574746],[-71.393156132,41.684640085],[-71.393184394,41.684706204],[-71.393203425,41.684765201],[-71.393218743,41.684818592],[-71.393237777,41.684875531],[-71.393254004,41.684933108],[-71.393263526,41.685004721],[-71.393256352,41.685062871],[-71.393220121,41.685129272],[-71.393184002,41.685183073],[-71.393142346,41.685227675],[-71.393095073,41.685274375],[-71.393042147,41.685326674],[-71.392995791,41.68537198],[-71.392955991,41.68541942],[-71.392920888,41.685467573],[-71.39289509,41.685515803],[-71.392961035,41.685560413],[-71.393026177,41.68559304],[-71.393076228,41.685637521],[-71.393119685,41.685684764],[-71.393170759,41.685719458],[-71.39325609,41.685701036],[-71.393332821,41.685699369],[-71.393415822,41.685725106],[-71.393452717,41.685773714],[-71.393455752,41.685838986],[-71.39345594,41.685909789],[-71.393451467,41.685977089],[-71.393446114,41.686040866],[-71.393441711,41.686102563],[-71.393440182,41.686160032],[-71.393439428,41.686228754],[-71.393441443,41.686301708],[-71.393447286,41.686366251],[-71.393438178,41.68643142],[-71.393404866,41.686485223],[-71.393347423,41.686519199],[-71.393264895,41.686539087],[-71.393187146,41.686547019],[-71.3930935,41.686556286],[-71.393019287,41.686584597],[-71.393017759,41.68664138],[-71.393063951,41.686695623],[-71.393123334,41.686742995],[-71.393180022,41.686777694],[-71.393188117,41.686808575],[-71.393138953,41.686854565],[-71.393130098,41.686895882],[-71.393191561,41.686921507],[-71.393269202,41.686923363],[-71.393352424,41.686927374],[-71.393423253,41.686953076],[-71.393474182,41.687002452],[-71.393510025,41.687060893],[-71.393516383,41.68707183],[-71.393546775,41.687124206],[-71.393583562,41.68718402],[-71.393614772,41.687239622],[-71.393734366,41.687518028],[-71.393801296,41.687819277],[-71.394024613,41.687843793],[-71.394096398,41.688217268],[-71.394129913,41.688319845],[-71.394123722,41.68837381],[-71.394105356,41.688429137],[-71.394076742,41.688482945],[-71.39403687,41.68853601],[-71.39401289,41.688591972],[-71.393995403,41.688650753],[-71.394006963,41.688708348],[-71.39407014,41.688750783],[-71.394132265,41.688801633],[-71.394186948,41.688851767],[-71.394244369,41.688906088],[-71.394281268,41.688954696],[-71.394307849,41.689006085],[-71.394340811,41.689073579],[-71.394374902,41.689122185],[-71.394424957,41.689166666],[-71.39447684,41.689212543],[-71.394525806,41.689270333],[-71.394562702,41.689320359],[-71.394597669,41.689374591],[-71.394625131,41.689428725],[-71.394641217,41.689498971],[-71.394612463,41.689563321],[-71.394542838,41.689601449],[-71.394497426,41.689647443],[-71.394512707,41.689705774],[-71.394504102,41.689725319],[-71.394362664,41.689739917],[-71.394360175,41.689974827],[-71.394405055,41.689975074],[-71.394408228,41.690031198],[-71.394400982,41.690096369],[-71.39437974,41.690156541],[-71.394350947,41.690225831],[-71.394323283,41.690276118],[-71.394283267,41.690342516],[-71.394252761,41.690395613],[-71.394221345,41.69044592],[-71.394190802,41.690502561],[-71.394162157,41.690556369],[-71.394126073,41.690605962],[-71.394088125,41.690657612],[-71.394045449,41.690708548],[-71.394010345,41.690756038],[-71.39395844,41.690797108],[-71.39388976,41.690834528],[-71.39382116,41.690860764],[-71.393743151,41.690893967],[-71.393682784,41.690941319],[-71.393641962,41.690995755],[-71.393595453,41.691057871],[-71.393546318,41.691103175],[-71.39349423,41.691162449],[-71.393453444,41.691213387],[-71.393406968,41.691274107],[-71.393397824,41.691342112],[-71.39343753,41.691390723],[-71.393493199,41.691435918],[-71.393526309,41.691488045],[-71.393533063,41.691555401],[-71.393532304,41.691626912],[-71.393549403,41.691692929],[-71.393579711,41.691742194],[-71.393613802,41.691791486],[-71.393650561,41.691851323],[-71.393665765,41.691919442],[-71.393672558,41.691981904],[-71.393688642,41.692052813],[-71.393736659,41.692113415],[-71.393784786,41.69216208],[-71.393839439,41.692213632],[-71.393891354,41.692259487],[-71.393943235,41.6923082],[-71.393994138,41.692357599],[-71.394040442,41.692402054],[-71.394080147,41.692452082],[-71.394119851,41.692502797],[-71.394163203,41.692561268],[-71.394183077,41.692628704],[-71.394202084,41.692685643],[-71.394232345,41.692745428],[-71.394260717,41.692803794],[-71.394269471,41.692861341],[-71.394251943,41.69292577],[-71.39422979,41.69298242],[-71.394231103,41.693037856],[-71.394263374,41.693081497],[-71.394315261,41.693126689],[-71.39437655,41.693169876],[-71.394432259,41.693210154],[-71.394491692,41.693249773],[-71.394551262,41.693280312],[-71.394610766,41.693313618],[-71.394662686,41.693358101],[-71.394695793,41.693412994],[-71.394684932,41.693468351],[-71.39466278,41.693525023],[-71.394637847,41.693583751],[-71.394656744,41.693652605],[-71.394665716,41.693689135],[-71.394624266,41.693716929],[-71.394567103,41.693725681],[-71.394515555,41.693733798],[-71.39442189,41.693804195],[-71.394419075,41.693809064],[-71.394382352,41.693856621],[-71.394359628,41.693908399],[-71.394346235,41.693963021],[-71.394342206,41.694019755],[-71.394354039,41.694079341],[-71.394371484,41.694140349],[-71.39439175,41.694192258],[-71.394412958,41.694247003],[-71.394447259,41.694299657],[-71.394484407,41.69434671],[-71.39452436,41.694395161],[-71.39453339,41.694451953],[-71.394558362,41.694500367],[-71.394620829,41.694532784],[-71.394660786,41.694578468],[-71.394723261,41.694605968],[-71.394814766,41.69462588],[-71.394894094,41.694647129],[-71.394978041,41.694679611],[-71.395058373,41.694703011],[-71.395147168,41.694700462],[-71.395232157,41.694711952],[-71.395319903,41.694735312],[-71.395396408,41.69476637],[-71.395454168,41.694804385],[-71.39545663,41.694866752],[-71.395438604,41.694919266],[-71.395435448,41.694983708],[-71.395459428,41.695041932],[-71.39548621,41.695103704],[-71.395515798,41.695165432],[-71.395553864,41.695211776],[-71.395598491,41.695257487],[-71.395651538,41.695304577],[-71.395721402,41.695348229],[-71.395790351,41.69539188],[-71.39585649,41.695437633],[-71.395927302,41.695480576],[-71.395988781,41.695520699],[-71.396058718,41.695558085],[-71.396135189,41.695591932],[-71.396206989,41.695627878],[-71.396286232,41.695665249],[-71.39635989,41.695703325],[-71.396429827,41.695739955],[-71.396497808,41.695779397],[-71.396550857,41.695825115],[-71.39659639,41.695877801],[-71.396655022,41.695924232],[-71.396712739,41.695971326],[-71.396751747,41.69602053],[-71.396757959,41.696085713],[-71.396790372,41.696137655],[-71.396845278,41.69618685],[-71.396902994,41.696234698],[-71.396965379,41.696281819],[-71.397034333,41.696323343],[-71.397089246,41.696368353],[-71.397052651,41.696393476],[-71.396975138,41.696380623],[-71.396905202,41.696341888],[-71.396828733,41.696305915],[-71.396755029,41.696276965],[-71.396685157,41.696236835],[-71.396649917,41.696177847],[-71.396612804,41.696126587],[-71.396571932,41.696078822],[-71.396503846,41.696047796],[-71.396416832,41.69606153],[-71.396336246,41.696099855],[-71.396284575,41.696145935],[-71.396256236,41.696197686],[-71.396240981,41.696253724],[-71.396226673,41.696309009],[-71.396198512,41.696326433],[-71.396166937,41.696284988],[-71.396137346,41.696223947],[-71.396094658,41.696167055],[-71.396044376,41.696126966],[-71.395992294,41.696086875],[-71.395945767,41.696045394],[-71.395902997,41.696001812],[-71.395853748,41.695945623],[-71.395809162,41.695892938],[-71.395764584,41.695835336],[-71.395719957,41.695789671],[-71.395665954,41.695748847],[-71.395607275,41.695712935],[-71.395541052,41.695681223],[-71.395467345,41.695655063],[-71.395383224,41.695653408],[-71.395296391,41.695630734],[-71.395219967,41.695586344],[-71.395165961,41.695547623],[-71.395110064,41.6955089],[-71.395037399,41.695461037],[-71.394973063,41.695432827],[-71.394900226,41.695415814],[-71.394814302,41.695397303],[-71.394748071,41.695371194],[-71.394673507,41.695328223],[-71.394596163,41.695287331],[-71.394540311,41.695240238],[-71.394499485,41.695184033],[-71.394437022,41.695148826],[-71.394375572,41.695110098],[-71.394319723,41.695060878],[-71.394265727,41.695017262],[-71.394207659,41.694981419],[-71.394100412,41.694941596],[-71.394060496,41.694926077],[-71.393946584,41.694875888],[-71.393787684,41.694833571],[-71.393687531,41.694804637],[-71.393768508,41.695223515],[-71.393791508,41.695268515],[-71.393837508,41.695307516],[-71.393944508,41.695368515],[-71.394081508,41.695455515],[-71.394394508,41.695570515],[-71.394844508,41.695786515],[-71.394867509,41.695817515],[-71.394852509,41.695858515],[-71.394714509,41.695956515],[-71.394363509,41.696188515],[-71.393997509,41.696443515],[-71.393539508,41.696737515],[-71.393822509,41.697091515],[-71.394074509,41.697401515],[-71.394325509,41.697697516],[-71.394524509,41.697945515],[-71.394837509,41.698268516],[-71.395012509,41.698489515],[-71.395065509,41.698619516],[-71.395134509,41.698932516],[-71.395256509,41.699421516],[-71.395340509,41.699748516],[-71.395371509,41.699878516],[-71.395462509,41.700299516],[-71.395538509,41.700730517],[-71.395691509,41.700740516],[-71.396540509,41.700817516],[-71.396774509,41.700839516],[-71.39714851,41.700885517],[-71.397514509,41.700896516],[-71.39781251,41.700907516],[-71.39829351,41.700951516],[-71.39859851,41.700981516],[-71.39904051,41.701021516],[-71.399048511,41.701089516],[-71.399010511,41.701450517],[-71.39898751,41.701635516],[-71.398910511,41.702145516],[-71.39882751,41.702638517],[-71.39875851,41.703085517],[-71.39859051,41.704187517],[-71.39843051,41.705168517],[-71.39839951,41.705389517],[-71.39822451,41.706492517],[-71.398209511,41.706605517],[-71.39819351,41.706672517],[-71.39814051,41.706962517],[-71.39804851,41.707626517],[-71.39802651,41.707730518],[-71.39794951,41.708195518],[-71.397858511,41.708611517],[-71.39780451,41.708968518],[-71.39786551,41.709084518],[-71.39791951,41.709200518],[-71.397972511,41.709298518],[-71.39806451,41.709494518]]]]}}"}, +{"type": "precinct", "typeId": 3521, "areaId": 25992, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":331,\"NAME\":\"3521\",\"SHAPE_Length\":0.093766222333718,\"SHAPE_Area\":-0.00025040791454763},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.399285511,41.714384518],[-71.399414511,41.714379519],[-71.399475511,41.714400519],[-71.399551511,41.714399519],[-71.399620511,41.714379519],[-71.399818511,41.714316519],[-71.399902511,41.714297519],[-71.400063512,41.714266518],[-71.400131511,41.714247518],[-71.400208511,41.714232518],[-71.400276512,41.714217519],[-71.400421511,41.714155519],[-71.400459511,41.714136519],[-71.400543511,41.714117519],[-71.400627512,41.714083519],[-71.400719512,41.714059519],[-71.400764512,41.714053518],[-71.400849511,41.714083519],[-71.400902512,41.714114518],[-71.400940512,41.714135518],[-71.401016512,41.714165519],[-71.401108512,41.714190518],[-71.401153512,41.714194518],[-71.401238511,41.714174518],[-71.401314511,41.714137519],[-71.401405512,41.714072518],[-71.401443512,41.714030519],[-71.401505512,41.713988519],[-71.401596512,41.713982519],[-71.401672512,41.713976518],[-71.401779512,41.713978518],[-71.401878511,41.713990519],[-71.401970512,41.713992518],[-71.402046512,41.713986519],[-71.402130512,41.713957518],[-71.402222512,41.713960518],[-71.402298512,41.713972519],[-71.402382512,41.713975518],[-71.402481512,41.713977518],[-71.402565512,41.713975518],[-71.402641512,41.713960518],[-71.402764512,41.713868519],[-71.402870513,41.713852519],[-71.402947512,41.713850519],[-71.403091512,41.713838518],[-71.403191512,41.713809519],[-71.403252512,41.713772519],[-71.403381512,41.713652519],[-71.403450512,41.713624518],[-71.403526512,41.713604518],[-71.403610513,41.713589518],[-71.403694512,41.713587518],[-71.403954512,41.713568518],[-71.404030512,41.713548518],[-71.404106512,41.713520519],[-71.404182512,41.713496518],[-71.404350513,41.713447518],[-71.404442513,41.713427518],[-71.404526513,41.713398518],[-71.404594513,41.713379518],[-71.404686512,41.713377518],[-71.404778513,41.713398518],[-71.404930513,41.713399518],[-71.405006513,41.713357518],[-71.405075513,41.713301518],[-71.405128513,41.713242518],[-71.405197513,41.713195518],[-71.405319513,41.713202518],[-71.405388512,41.713209519],[-71.405495513,41.713193518],[-71.405563513,41.713156518],[-71.405602513,41.713101518],[-71.405617513,41.713056518],[-71.405678513,41.713010518],[-71.405746513,41.712986518],[-71.405853513,41.712943518],[-71.405914514,41.712915518],[-71.405998513,41.712886518],[-71.406097513,41.712870518],[-71.406349513,41.712878519],[-71.406464513,41.712871518],[-71.406563513,41.712847518],[-71.406632514,41.712823518],[-71.406731514,41.712803518],[-71.406815513,41.712815518],[-71.406891513,41.712840519],[-71.406998514,41.712910518],[-71.407074513,41.712949518],[-71.407158514,41.712970518],[-71.407247513,41.712972518],[-71.407379513,41.712942518],[-71.407471514,41.712945518],[-71.407570514,41.712938519],[-71.407669514,41.712950518],[-71.407807513,41.712969518],[-71.407883514,41.712977519],[-71.407982513,41.712979518],[-71.408058514,41.712982518],[-71.408150514,41.712989518],[-71.408241514,41.713001518],[-71.408318514,41.713004518],[-71.408417514,41.713006518],[-71.408516514,41.712977519],[-71.408630514,41.712880519],[-71.408676514,41.712861518],[-71.408753514,41.712833518],[-71.408829514,41.712813518],[-71.408905514,41.712807518],[-71.408958514,41.712801519],[-71.409042514,41.712799518],[-71.409134514,41.712775518],[-71.409180514,41.712734518],[-71.409210515,41.712683518],[-71.409271514,41.712628518],[-71.409348514,41.712599518],[-71.409424515,41.712584518],[-71.409508514,41.712578518],[-71.409607514,41.712558518],[-71.409706514,41.712547518],[-71.409782514,41.712527518],[-71.409866514,41.712525518],[-71.409950515,41.712533518],[-71.410050514,41.712553518],[-71.410149514,41.712560518],[-71.410301515,41.712543518],[-71.410393515,41.712537518],[-71.410477515,41.712540518],[-71.410560514,41.712556518],[-71.410644515,41.712581518],[-71.410721515,41.712611518],[-71.410812514,41.712645518],[-71.410950514,41.712705518],[-71.411018515,41.712726518],[-71.411110515,41.712765518],[-71.411202514,41.712808518],[-71.411286515,41.712842518],[-71.411362515,41.712877518],[-71.411430515,41.712925518],[-71.411476515,41.712969518],[-71.411568515,41.713066518],[-71.411621515,41.713119518],[-71.411682515,41.713158518],[-71.411789515,41.713188518],[-71.411865515,41.713200518],[-71.411957515,41.713225518],[-71.412002515,41.713282518],[-71.412026515,41.713349518],[-71.412048515,41.713407518],[-71.412102515,41.713451518],[-71.412170515,41.713504519],[-71.412247515,41.713547518],[-71.412293515,41.713555518],[-71.412377515,41.713576518],[-71.412445516,41.713611518],[-71.412498515,41.713668518],[-71.412552515,41.713721518],[-71.412598516,41.713770518],[-71.412651515,41.713777519],[-71.412674515,41.713754518],[-71.412712515,41.713745518],[-71.412743515,41.713740518],[-71.412819515,41.713769518],[-71.412903515,41.713763518],[-71.412979515,41.713771518],[-71.413048516,41.713819518],[-71.413101516,41.713881518],[-71.413162516,41.713942518],[-71.413216515,41.714009519],[-71.413284516,41.714052518],[-71.413360516,41.714051518],[-71.413415516,41.714025518],[-71.413132515,41.712993518],[-71.417338517,41.711444517],[-71.417893517,41.711846518],[-71.421406518,41.716302518],[-71.422105518,41.716410518],[-71.422205518,41.716806518],[-71.423309519,41.716840518],[-71.42535052,41.717565518],[-71.42640752,41.718176519],[-71.42634152,41.718277519],[-71.42637452,41.718427519],[-71.42668552,41.718501518],[-71.42686652,41.718268518],[-71.42688052,41.718260519],[-71.42701752,41.718167518],[-71.42709452,41.718156519],[-71.42715552,41.718196519],[-71.42722352,41.718217519],[-71.42727752,41.718180519],[-71.427322521,41.718165519],[-71.42739152,41.718191518],[-71.427460521,41.718234519],[-71.42758252,41.718295519],[-71.42764352,41.718339519],[-71.427689521,41.718392519],[-71.427712521,41.718445519],[-71.42666852,41.720141519],[-71.429848521,41.715928518],[-71.429909521,41.715881518],[-71.430054521,41.715752518],[-71.430260521,41.715599518],[-71.430573521,41.715341518],[-71.430817522,41.715128518],[-71.431290521,41.714735517],[-71.431503521,41.714542518],[-71.431656522,41.714390518],[-71.431816521,41.714224518],[-71.431931521,41.714073517],[-71.432106521,41.713867518],[-71.432411522,41.713478518],[-71.432877522,41.712874518],[-71.432927522,41.712807517],[-71.433268522,41.712350518],[-71.433723523,41.711761517],[-71.433792522,41.711674517],[-71.434318522,41.710979517],[-71.434898522,41.710219517],[-71.435280523,41.709720517],[-71.435745523,41.709120516],[-71.436028522,41.708732516],[-71.436000523,41.708719517],[-71.435898523,41.708671516],[-71.435272522,41.708333517],[-71.434822522,41.708086516],[-71.434715523,41.708039517],[-71.434357522,41.707871516],[-71.434014522,41.707721516],[-71.433899522,41.707664516],[-71.432747522,41.707121516],[-71.432396522,41.706958516],[-71.432112521,41.706827516],[-71.431720521,41.706648516],[-71.431580521,41.706583516],[-71.431206521,41.706407516],[-71.42963452,41.705701516],[-71.42911552,41.705469516],[-71.42865052,41.705263516],[-71.42850552,41.705198516],[-71.42778352,41.704872516],[-71.42764652,41.704810516],[-71.426712519,41.704394516],[-71.426498519,41.704295516],[-71.426109519,41.704123516],[-71.425529519,41.703856516],[-71.424301519,41.703247515],[-71.423515518,41.703390516],[-71.423347519,41.703416516],[-71.423004518,41.703473516],[-71.422646518,41.703530516],[-71.422531518,41.703550516],[-71.422150518,41.703603516],[-71.421959518,41.703634516],[-71.421768518,41.703661516],[-71.421577517,41.703692516],[-71.421471518,41.703708516],[-71.421356518,41.703733516],[-71.421249517,41.703753516],[-71.421120518,41.703787516],[-71.420998518,41.703826516],[-71.420875517,41.703860516],[-71.420746517,41.703903516],[-71.420624517,41.703951516],[-71.420501518,41.703994516],[-71.420393517,41.704042516],[-71.420319517,41.704074516],[-71.420288517,41.704088516],[-71.420090518,41.704191516],[-71.419998517,41.704238516],[-71.419815517,41.704350516],[-71.419724517,41.704411516],[-71.419441517,41.704610517],[-71.419243517,41.704745517],[-71.419044517,41.704884517],[-71.418991517,41.704917516],[-71.418831517,41.705069516],[-71.418747516,41.705138517],[-71.418701517,41.705184516],[-71.418594517,41.705268516],[-71.418549517,41.705309517],[-71.418495516,41.705342516],[-71.418320516,41.705440516],[-71.418205516,41.705492516],[-71.418045516,41.705549516],[-71.417991516,41.705569516],[-71.417870516,41.705607516],[-71.417808517,41.705617516],[-71.417748517,41.705628516],[-71.417679516,41.705634516],[-71.417587517,41.705645517],[-71.417679516,41.705688516],[-71.417709517,41.705710516],[-71.417732517,41.705741517],[-71.417740516,41.705777517],[-71.417740516,41.705813517],[-71.417748517,41.705848516],[-71.417686517,41.705877517],[-71.417656516,41.705886516],[-71.417618516,41.705901516],[-71.417580516,41.705919516],[-71.417534517,41.705934517],[-71.417488516,41.705953517],[-71.417389516,41.705987517],[-71.417030517,41.706111517],[-71.416786516,41.706202517],[-71.416359516,41.706359517],[-71.415848516,41.706550517],[-71.415695516,41.706603516],[-71.415314516,41.706751517],[-71.414917516,41.706899517],[-71.413856515,41.707299517],[-71.412910515,41.707661517],[-71.412720515,41.707737517],[-71.411972515,41.708014517],[-71.411240514,41.708286517],[-71.411080515,41.708348517],[-71.410690515,41.708491518],[-71.410194514,41.708677517],[-71.410118514,41.708711517],[-71.409828514,41.708816517],[-71.409721514,41.708858518],[-71.408936514,41.709159517],[-71.408699514,41.709236517],[-71.407944513,41.709490517],[-71.407776513,41.709548517],[-71.407081514,41.709769518],[-71.406616514,41.709932518],[-71.406082513,41.710110518],[-71.405205513,41.710417518],[-71.404739513,41.710575518],[-71.404320512,41.710728518],[-71.403671513,41.710962518],[-71.403336512,41.711077518],[-71.402618512,41.711331518],[-71.401993512,41.711547518],[-71.401451511,41.711734518],[-71.400986511,41.711901518],[-71.400688511,41.712006518],[-71.400310511,41.712145518],[-71.400069511,41.712233519],[-71.399887511,41.712298518],[-71.399559511,41.712412519],[-71.399055511,41.712590518],[-71.399132511,41.712984518],[-71.399147511,41.713155518],[-71.399193511,41.713613519],[-71.399254511,41.714099519],[-71.399285511,41.714384518]]]]}}"}, +{"type": "precinct", "typeId": 3522, "areaId": 26001, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":340,\"NAME\":\"3522\",\"SHAPE_Length\":0.090970724352498,\"SHAPE_Area\":-0.00017191414617984},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.403363881,41.690789696],[-71.403361392,41.690753578],[-71.403359858,41.690733368],[-71.403363881,41.690789696]]],[[[-71.403383511,41.690931514],[-71.403393869,41.690984167],[-71.403383857,41.69093113],[-71.403377113,41.690893128],[-71.403383511,41.690931514]]],[[[-71.403362511,41.691350515],[-71.403378512,41.691416514],[-71.403406511,41.691475514],[-71.403432511,41.691535514],[-71.403479511,41.691591514],[-71.403503445,41.691612656],[-71.403479832,41.691591582],[-71.403432716,41.691535216],[-71.403405289,41.691472646],[-71.403378768,41.691416365],[-71.403362604,41.691350351],[-71.403361973,41.691315546],[-71.403362511,41.691350515]]],[[[-71.403658511,41.691730514],[-71.403694511,41.691779515],[-71.403712526,41.691800271],[-71.403694898,41.691779405],[-71.403658908,41.691730091],[-71.403626507,41.691706656],[-71.403658511,41.691730514]]],[[[-71.403804512,41.691862514],[-71.403860992,41.691876147],[-71.403804401,41.6918621],[-71.403780956,41.691851473],[-71.403804512,41.691862514]]],[[[-71.404040512,41.691941514],[-71.404111511,41.691984514],[-71.40421215,41.692053597],[-71.404176876,41.692029082],[-71.404111862,41.691984524],[-71.404040286,41.691941356],[-71.404026945,41.691934914],[-71.404040512,41.691941514]]],[[[-71.404273512,41.692181514],[-71.404245511,41.692234514],[-71.404218511,41.692304515],[-71.404199511,41.692360515],[-71.404184511,41.692432514],[-71.404193512,41.692487514],[-71.404216512,41.692541514],[-71.404257511,41.692605514],[-71.404286245,41.692644343],[-71.404257852,41.692605316],[-71.404216422,41.692541248],[-71.404193588,41.69248712],[-71.404184821,41.692432364],[-71.404199603,41.692360933],[-71.404218908,41.692304942],[-71.404245831,41.692234962],[-71.404273522,41.692181837],[-71.404277881,41.692122953],[-71.404277511,41.692122514],[-71.404273512,41.692181514]]],[[[-71.404343511,41.692717514],[-71.40435975,41.692737001],[-71.404343668,41.692717332],[-71.404312457,41.692678221],[-71.404343511,41.692717514]]],[[[-71.404433511,41.692815514],[-71.404450603,41.692828175],[-71.404433409,41.69281531],[-71.404425238,41.692807241],[-71.404433511,41.692815514]]],[[[-71.404677512,41.692975514],[-71.404733512,41.693014514],[-71.404761864,41.693040088],[-71.404733501,41.693014155],[-71.404677784,41.692975254],[-71.404616418,41.69293843],[-71.404546705,41.692896631],[-71.404677512,41.692975514]]],[[[-71.404875512,41.693174514],[-71.404899837,41.693230116],[-71.404875877,41.693174175],[-71.404851651,41.693139352],[-71.404875512,41.693174514]]],[[[-71.404944742,41.693345885],[-71.404928807,41.693303521],[-71.404908881,41.693252497],[-71.404944742,41.693345885]]],[[[-71.405177512,41.693557514],[-71.405240512,41.693597514],[-71.405251885,41.693605418],[-71.405240998,41.693597785],[-71.405177806,41.693557437],[-71.405155106,41.693544133],[-71.405177512,41.693557514]]],[[[-71.405352607,41.69368644],[-71.405346815,41.693679767],[-71.405346512,41.693679514],[-71.405352607,41.69368644]]],[[[-71.405472512,41.693831514],[-71.405516512,41.693875514],[-71.40554374,41.693909192],[-71.405516907,41.693875713],[-71.405472455,41.693831264],[-71.40545236,41.693809648],[-71.405472512,41.693831514]]],[[[-71.405601512,41.693974515],[-71.405624148,41.69400178],[-71.405601952,41.693974395],[-71.405564226,41.693933262],[-71.405601512,41.693974515]]],[[[-71.405731512,41.694125514],[-71.405746894,41.69414904],[-71.405731866,41.694125347],[-71.405698431,41.694090996],[-71.405731512,41.694125514]]],[[[-71.405810512,41.694225515],[-71.405849512,41.694272515],[-71.405890437,41.69429707],[-71.405849855,41.694272149],[-71.405810838,41.694225098],[-71.405787831,41.694201322],[-71.405810512,41.694225515]]],[[[-71.406004512,41.694398514],[-71.406062153,41.694443236],[-71.406062063,41.694443064],[-71.406004369,41.694398033],[-71.40597699,41.6943648],[-71.406004512,41.694398514]]],[[[-71.406090512,41.694497514],[-71.406090737,41.694497731],[-71.40608088,41.694478939],[-71.406090512,41.694497514]]],[[[-71.406214512,41.694567515],[-71.406237512,41.694621515],[-71.406260972,41.694670109],[-71.406237829,41.694621519],[-71.406214748,41.694567529],[-71.406196885,41.694562275],[-71.406214512,41.694567515]]],[[[-71.409913398,41.694660577],[-71.409921891,41.694663869],[-71.409994657,41.694689997],[-71.410028556,41.69470605],[-71.409994513,41.694689514],[-71.409921513,41.694663515],[-71.409913513,41.694659515],[-71.409913398,41.694660577]]],[[[-71.410116642,41.694770845],[-71.410116513,41.694770514],[-71.410100533,41.694756071],[-71.410116642,41.694770845]]],[[[-71.406352512,41.694780515],[-71.406375512,41.694841515],[-71.406387648,41.694883316],[-71.406375974,41.694841953],[-71.406352935,41.694780233],[-71.406351035,41.694778299],[-71.406352512,41.694780515]]],[[[-71.410137023,41.694824922],[-71.410155363,41.694888742],[-71.410159521,41.694904814],[-71.410155513,41.694888514],[-71.410137514,41.694824514],[-71.410118094,41.69477458],[-71.410137023,41.694824922]]],[[[-71.410178103,41.695014929],[-71.410183424,41.695071694],[-71.410186991,41.695098835],[-71.410183514,41.695071515],[-71.410178514,41.695014515],[-71.410174703,41.694983555],[-71.410178103,41.695014929]]],[[[-71.406405512,41.695020514],[-71.406400513,41.695075515],[-71.406392406,41.695100221],[-71.406400931,41.695075377],[-71.406405893,41.695020037],[-71.406405512,41.694987677],[-71.406405512,41.695020514]]],[[[-71.410208071,41.695186677],[-71.410241438,41.695240743],[-71.410249782,41.695252664],[-71.41030949,41.695286156],[-71.410241514,41.695240515],[-71.410208513,41.695186515],[-71.410194428,41.695139563],[-71.410208071,41.695186677]]],[[[-71.406336512,41.695188515],[-71.406317512,41.695249515],[-71.406308771,41.695285106],[-71.406317745,41.695249572],[-71.406336751,41.695188687],[-71.406350185,41.695172934],[-71.406336512,41.695188515]]],[[[-71.410383074,41.695330821],[-71.41040583,41.695344363],[-71.410351026,41.695311331],[-71.410383074,41.695330821]]],[[[-71.406273512,41.695415515],[-71.406243513,41.695476515],[-71.406212512,41.695533515],[-71.406202786,41.695552296],[-71.406212491,41.69553375],[-71.406243636,41.695476374],[-71.406273871,41.695415521],[-71.406283969,41.695377523],[-71.406273512,41.695415515]]],[[[-71.410528434,41.695420947],[-71.410581532,41.695461055],[-71.410650448,41.6955138],[-71.410709085,41.6955637],[-71.410742855,41.695587329],[-71.410709514,41.695563514],[-71.410650514,41.695513515],[-71.410528514,41.695420515],[-71.410489686,41.695395905],[-71.410528434,41.695420947]]],[[[-71.406113512,41.695689515],[-71.406079198,41.695729288],[-71.406113494,41.695689706],[-71.406148347,41.695640747],[-71.406113512,41.695689515]]],[[[-71.410878479,41.695705735],[-71.410913194,41.695733941],[-71.410878514,41.695705515],[-71.410827514,41.695652515],[-71.410878479,41.695705735]]],[[[-71.411242162,41.695883367],[-71.411242339,41.695883433],[-71.411236081,41.695880507],[-71.411242162,41.695883367]]],[[[-71.411325206,41.695914442],[-71.411330749,41.69591621],[-71.411325514,41.695914514],[-71.411265503,41.695892101],[-71.411325206,41.695914442]]],[[[-71.411546337,41.696000577],[-71.411558972,41.696006744],[-71.411546514,41.696000515],[-71.411511592,41.695984878],[-71.411546337,41.696000577]]],[[[-71.405909512,41.696002515],[-71.405892036,41.696016845],[-71.405909945,41.696002299],[-71.40592377,41.6959869],[-71.405909512,41.696002515]]],[[[-71.411685304,41.696059824],[-71.411769372,41.696078961],[-71.411801247,41.696097555],[-71.411769514,41.696078515],[-71.411685514,41.696059515],[-71.411651835,41.696047151],[-71.411685304,41.696059824]]],[[[-71.411887719,41.696155001],[-71.411955514,41.696205515],[-71.411887514,41.696154515],[-71.41186772,41.696140696],[-71.411887719,41.696155001]]],[[[-71.412070173,41.696299857],[-71.412129839,41.696335761],[-71.412129514,41.696335515],[-71.412070514,41.696299515],[-71.412030403,41.696269803],[-71.412070173,41.696299857]]],[[[-71.412247195,41.696423691],[-71.412312447,41.696457542],[-71.412325944,41.696465349],[-71.412312514,41.696457515],[-71.412247514,41.696423514],[-71.412229969,41.696410693],[-71.412247195,41.696423691]]],[[[-71.412915533,41.696621812],[-71.412936475,41.696627337],[-71.412915515,41.696621515],[-71.41285059,41.696609575],[-71.412915533,41.696621812]]],[[[-71.412667752,41.696630932],[-71.41273575,41.696620693],[-71.412750094,41.696618554],[-71.41281947,41.696606974],[-71.412735515,41.696620515],[-71.412667514,41.696630515],[-71.412625021,41.696624849],[-71.412667752,41.696630932]]],[[[-71.413154555,41.696681384],[-71.413228311,41.696699827],[-71.413321683,41.696721783],[-71.413394526,41.696738807],[-71.41346828,41.696758645],[-71.413491229,41.696769725],[-71.413468515,41.696758515],[-71.413394515,41.696738515],[-71.413228514,41.696699515],[-71.413112044,41.696670397],[-71.413154555,41.696681384]]],[[[-71.413580062,41.696841652],[-71.413568542,41.696899068],[-71.413568601,41.696899098],[-71.413580514,41.696841515],[-71.413563038,41.696819045],[-71.413580062,41.696841652]]],[[[-71.413722167,41.697020733],[-71.413787451,41.697054583],[-71.41386125,41.697064586],[-71.413877657,41.697064909],[-71.413861515,41.697064515],[-71.413787515,41.697054515],[-71.413722515,41.697020515],[-71.413702843,41.69698985],[-71.413722167,41.697020733]]],[[[-71.414633723,41.69715877],[-71.414612516,41.697151515],[-71.414592418,41.697145486],[-71.414633723,41.69715877]]],[[[-71.414423581,41.697158679],[-71.414501179,41.697156793],[-71.414547303,41.697148601],[-71.414501515,41.697156515],[-71.414423515,41.697158515],[-71.414352515,41.697147515],[-71.414277515,41.697113515],[-71.414208515,41.697079515],[-71.414122515,41.697061515],[-71.414034515,41.697060515],[-71.413986864,41.697063657],[-71.414034236,41.697060874],[-71.414122083,41.697061854],[-71.414208016,41.697079574],[-71.414277023,41.697113426],[-71.41435259,41.697147969],[-71.414423581,41.697158679]]],[[[-71.414714903,41.69720991],[-71.414714515,41.697209515],[-71.414700776,41.697199855],[-71.414714903,41.69720991]]],[[[-71.414770734,41.697266831],[-71.414770515,41.697266515],[-71.414729439,41.697224706],[-71.414770734,41.697266831]]],[[[-71.414813503,41.697328681],[-71.414827578,41.697346759],[-71.414813515,41.697328515],[-71.414776727,41.697275472],[-71.414813503,41.697328681]]],[[[-71.414947387,41.6974748],[-71.415005206,41.697506565],[-71.414947515,41.697474514],[-71.414917785,41.69744797],[-71.414947387,41.6974748]]],[[[-71.415448486,41.697472013],[-71.41552759,41.6975086],[-71.415527516,41.697508515],[-71.415448516,41.697471515],[-71.415362515,41.697459515],[-71.415277479,41.69746399],[-71.415362515,41.697459852],[-71.415448486,41.697472013]]],[[[-71.415105515,41.697506515],[-71.415068769,41.697509933],[-71.415105223,41.697506773],[-71.41516394,41.697490581],[-71.415105515,41.697506515]]],[[[-71.415576096,41.697564178],[-71.415568328,41.69762441],[-71.415537119,41.69768881],[-71.415512356,41.697746922],[-71.415537515,41.697688515],[-71.415568515,41.697624515],[-71.415576515,41.697564515],[-71.415550333,41.697534592],[-71.415576096,41.697564178]]],[[[-71.415491246,41.69788417],[-71.415501983,41.697919225],[-71.415491515,41.697884515],[-71.41549086,41.697841295],[-71.415491246,41.69788417]]],[[[-71.415549183,41.698077],[-71.41557128,41.698143634],[-71.415599033,41.698201171],[-71.415635176,41.698260817],[-71.415673904,41.698285193],[-71.415635515,41.698260515],[-71.415599516,41.698201515],[-71.415571515,41.698143515],[-71.415549515,41.698076515],[-71.415536762,41.698028502],[-71.415549183,41.698077]]],[[[-71.416379215,41.698296579],[-71.416460491,41.698306632],[-71.416489371,41.698314043],[-71.416460516,41.698306515],[-71.416379516,41.698296515],[-71.416300516,41.698295515],[-71.416277402,41.698297547],[-71.416300673,41.698295653],[-71.416379215,41.698296579]]],[[[-71.41576203,41.698324944],[-71.415803655,41.698335486],[-71.415762516,41.698324515],[-71.415715701,41.698306053],[-71.41576203,41.698324944]]],[[[-71.417191408,41.698343729],[-71.417227798,41.698353039],[-71.417191516,41.698343515],[-71.417161,41.698343183],[-71.417191408,41.698343729]]],[[[-71.416592172,41.698366342],[-71.416588516,41.698360515],[-71.416588459,41.698360481],[-71.416592172,41.698366342]]],[[[-71.417368537,41.698373188],[-71.417366516,41.698372515],[-71.417363353,41.69837194],[-71.417368537,41.698373188]]],[[[-71.417432382,41.698388566],[-71.417432708,41.698390309],[-71.417432516,41.698388515],[-71.417421471,41.698385938],[-71.417432382,41.698388566]]],[[[-71.416865778,41.698402359],[-71.41693235,41.698362638],[-71.416953538,41.698357703],[-71.416932516,41.698362515],[-71.416865778,41.698402359]]],[[[-71.416865778,41.698402359],[-71.416865516,41.698402515],[-71.416861961,41.698405198],[-71.416865778,41.698402359]]],[[[-71.417441409,41.698436595],[-71.417441516,41.698436515],[-71.417441187,41.698435419],[-71.417441409,41.698436595]]],[[[-71.417053477,41.698444254],[-71.417021492,41.698461028],[-71.417053516,41.698444515],[-71.417104088,41.698442709],[-71.417053477,41.698444254]]],[[[-71.416666321,41.698462772],[-71.416695251,41.69846365],[-71.416666516,41.698462515],[-71.416638592,41.698431556],[-71.416666321,41.698462772]]],[[[-71.417223516,41.698455515],[-71.417291122,41.698468392],[-71.41722358,41.69845524],[-71.417167191,41.698446346],[-71.417223516,41.698455515]]],[[[-71.417388516,41.698476515],[-71.417405736,41.698463519],[-71.417388909,41.698476032],[-71.417319216,41.698472237],[-71.417388516,41.698476515]]],[[[-71.416989185,41.698585608],[-71.417027167,41.698628077],[-71.416989516,41.698585516],[-71.416979987,41.698557931],[-71.416989185,41.698585608]]],[[[-71.41705716,41.698711473],[-71.417078516,41.698688515],[-71.4170783,41.698688258],[-71.41705716,41.698711473]]],[[[-71.416840088,41.698850051],[-71.416780566,41.698871867],[-71.416840516,41.698850515],[-71.41689523,41.698817513],[-71.416840088,41.698850051]]],[[[-71.416553637,41.698931212],[-71.416521076,41.698954162],[-71.416553516,41.698931515],[-71.416590766,41.698920133],[-71.416553637,41.698931212]]],[[[-71.416500157,41.698968907],[-71.416473663,41.699022058],[-71.416452029,41.699067477],[-71.416473516,41.699022515],[-71.416500409,41.698968729],[-71.416500157,41.698968907]]],[[[-71.416383438,41.699299991],[-71.416392482,41.699361652],[-71.416414621,41.699419894],[-71.416436835,41.699448702],[-71.416414516,41.699419515],[-71.416392516,41.699361516],[-71.416383516,41.699299515],[-71.416377038,41.699270114],[-71.416383438,41.699299991]]],[[[-71.400818511,41.709342518],[-71.400879512,41.709377518],[-71.400902512,41.709408518],[-71.400925511,41.709443518],[-71.401535511,41.710656518],[-71.401665511,41.710909518],[-71.401939511,41.711476519],[-71.401993512,41.711547518],[-71.402618512,41.711331518],[-71.403336512,41.711077518],[-71.403671513,41.710962518],[-71.404320512,41.710728518],[-71.404739513,41.710575518],[-71.405205513,41.710417518],[-71.406082513,41.710110518],[-71.406616514,41.709932518],[-71.407081514,41.709769518],[-71.407776513,41.709548517],[-71.407944513,41.709490517],[-71.408699514,41.709236517],[-71.408936514,41.709159517],[-71.409721514,41.708858518],[-71.409828514,41.708816517],[-71.410118514,41.708711517],[-71.410194514,41.708677517],[-71.410690515,41.708491518],[-71.411080515,41.708348517],[-71.411240514,41.708286517],[-71.411972515,41.708014517],[-71.412720515,41.707737517],[-71.412910515,41.707661517],[-71.413856515,41.707299517],[-71.414917516,41.706899517],[-71.415314516,41.706751517],[-71.415695516,41.706603516],[-71.415848516,41.706550517],[-71.416359516,41.706359517],[-71.416786516,41.706202517],[-71.417030517,41.706111517],[-71.417389516,41.705987517],[-71.417488516,41.705953517],[-71.417534517,41.705934517],[-71.417580516,41.705919516],[-71.417618516,41.705901516],[-71.417656516,41.705886516],[-71.417686517,41.705877517],[-71.417748517,41.705848516],[-71.417740516,41.705813517],[-71.417740516,41.705777517],[-71.417732517,41.705741517],[-71.417709517,41.705710516],[-71.417679516,41.705688516],[-71.417587517,41.705645517],[-71.417679516,41.705634516],[-71.417748517,41.705628516],[-71.417808517,41.705617516],[-71.417870516,41.705607516],[-71.417991516,41.705569516],[-71.418045516,41.705549516],[-71.418205516,41.705492516],[-71.418320516,41.705440516],[-71.418495516,41.705342516],[-71.418549517,41.705309517],[-71.418594517,41.705268516],[-71.418701517,41.705184516],[-71.418747516,41.705138517],[-71.418831517,41.705069516],[-71.418991517,41.704917516],[-71.419044517,41.704884517],[-71.419243517,41.704745517],[-71.419441517,41.704610517],[-71.419724517,41.704411516],[-71.419815517,41.704350516],[-71.419998517,41.704238516],[-71.420090518,41.704191516],[-71.420288517,41.704088516],[-71.420319517,41.704074516],[-71.420097517,41.703894516],[-71.420021517,41.703864516],[-71.419945517,41.703843516],[-71.419876518,41.703818516],[-71.419807517,41.703783516],[-71.419762517,41.703739516],[-71.419739517,41.703704516],[-71.419731517,41.703686516],[-71.419639517,41.703589516],[-71.419586517,41.703549516],[-71.419541517,41.703505516],[-71.419479517,41.703457516],[-71.419426517,41.703413516],[-71.419304517,41.703325516],[-71.419243517,41.703277516],[-71.419098516,41.703213516],[-71.419052517,41.703173516],[-71.418999517,41.703125516],[-71.418930517,41.703095516],[-71.418862517,41.703074516],[-71.418793517,41.703048516],[-71.418656517,41.702988516],[-71.418594516,41.702967516],[-71.418518516,41.702937516],[-71.418457516,41.702902516],[-71.418388517,41.702876515],[-71.418320516,41.702860516],[-71.418213517,41.702844516],[-71.418159517,41.702836516],[-71.418091516,41.702802516],[-71.418053516,41.702753516],[-71.418030516,41.702699516],[-71.418007516,41.702641516],[-71.417954516,41.702584515],[-71.417885517,41.702554516],[-71.417809517,41.702542516],[-71.417732517,41.702521516],[-71.417664516,41.702477516],[-71.417610517,41.702433516],[-71.417572517,41.702380516],[-71.417557516,41.702317516],[-71.417557516,41.702200516],[-71.417526516,41.702079515],[-71.417519516,41.702021515],[-71.417549516,41.701966516],[-71.417572517,41.701912516],[-71.417595517,41.701853516],[-71.417618516,41.701798516],[-71.417610517,41.701740516],[-71.417610517,41.701560516],[-71.417503516,41.701472515],[-71.417435516,41.701451516],[-71.417359517,41.701430516],[-71.417328516,41.701386516],[-71.417358516,41.701331516],[-71.417412516,41.701280515],[-71.417458517,41.701225515],[-71.417443516,41.701163515],[-71.417442516,41.701104515],[-71.417389516,41.701056516],[-71.417267516,41.700977516],[-71.417221516,41.700938516],[-71.417168516,41.700889515],[-71.417107517,41.700850515],[-71.417076516,41.700806516],[-71.417084516,41.700742516],[-71.417084516,41.700684516],[-71.417053516,41.700617515],[-71.417015516,41.700564515],[-71.416962516,41.700511516],[-71.416893516,41.700467515],[-71.416832516,41.700419515],[-71.416840516,41.700374516],[-71.416878516,41.700328515],[-71.416825516,41.700284515],[-71.416832516,41.700234515],[-71.416824516,41.700198516],[-71.416755516,41.700164516],[-71.416694516,41.700129515],[-71.416664516,41.700071515],[-71.416649516,41.700013515],[-71.416641515,41.699959515],[-71.416603516,41.699915515],[-71.416557516,41.699866516],[-71.416534516,41.699813516],[-71.416519516,41.699759515],[-71.416496516,41.699705515],[-71.416489516,41.699656516],[-71.416504515,41.699606515],[-71.416504549,41.699606422],[-71.416456675,41.699604981],[-71.416408345,41.699553719],[-71.416378699,41.699495473],[-71.416343466,41.699440012],[-71.416303534,41.699383862],[-71.416266405,41.69933119],[-71.416234887,41.699281336],[-71.416217383,41.699225248],[-71.416158726,41.699184429],[-71.416075632,41.699163169],[-71.415998027,41.699168555],[-71.41591486,41.699157082],[-71.415839279,41.699130933],[-71.415773948,41.699106941],[-71.415711429,41.69907943],[-71.415640553,41.699049785],[-71.415571466,41.699027871],[-71.415510884,41.698989864],[-71.415478467,41.698928139],[-71.41543576,41.698871232],[-71.415370514,41.698829699],[-71.415293079,41.698798677],[-71.41522126,41.698766219],[-71.415176653,41.698716331],[-71.415126395,41.698669984],[-71.415060194,41.698636134],[-71.414999609,41.698600253],[-71.414942745,41.698565748],[-71.414878409,41.698529109],[-71.414815964,41.698492518],[-71.414755421,41.698448884],[-71.414706118,41.69839618],[-71.414669941,41.698340741],[-71.414622525,41.698292269],[-71.414583501,41.69824378],[-71.414523828,41.698210713],[-71.414456633,41.698190172],[-71.414377268,41.698166123],[-71.414299791,41.69814418],[-71.414214839,41.69812223],[-71.414136404,41.698109365],[-71.414046717,41.698091597],[-71.413972955,41.698075968],[-71.41389548,41.698053338],[-71.413818964,41.698020166],[-71.413751776,41.697994754],[-71.413671491,41.697974203],[-71.413586466,41.697961355],[-71.413505232,41.69794293],[-71.413431557,41.697908365],[-71.413357762,41.69789484],[-71.413270876,41.69788199],[-71.413187738,41.697872643],[-71.413117668,41.697857702],[-71.413030731,41.697859557],[-71.412953883,41.697892956],[-71.412897594,41.697931334],[-71.412851509,41.697983052],[-71.412820407,41.698034141],[-71.412779935,41.698087258],[-71.41273756,41.698148104],[-71.412733645,41.698154939],[-71.412700765,41.698212476],[-71.412668682,41.69826704],[-71.412629484,41.698257794],[-71.412589519,41.698206537],[-71.412564609,41.698146898],[-71.412543429,41.698081659],[-71.412527817,41.698028362],[-71.412508456,41.697971563],[-71.412486316,41.697916843],[-71.41244923,41.697858612],[-71.412383989,41.697814951],[-71.412321592,41.69776713],[-71.412264813,41.697717209],[-71.412218312,41.69767084],[-71.412172803,41.697613244],[-71.412130022,41.697568273],[-71.412080714,41.69752188],[-71.412030459,41.697476903],[-71.411964302,41.697433973],[-71.411899009,41.697407166],[-71.41181497,41.697387983],[-71.41172805,41.697378631],[-71.411646845,41.697362309],[-71.411575034,41.697326326],[-71.411506901,41.697301621],[-71.411431362,41.697269866],[-71.411370711,41.697240295],[-71.411298021,41.697200812],[-71.411234637,41.697162092],[-71.411160966,41.697126153],[-71.411090142,41.697083196],[-71.411025847,41.697040975],[-71.410968073,41.697005071],[-71.41089911,41.696962824],[-71.410829197,41.696923389],[-71.410763879,41.696893769],[-71.410697675,41.69686417],[-71.410632348,41.696840862],[-71.410550173,41.696820307],[-71.410483067,41.696781537],[-71.410439414,41.696728858],[-71.410391977,41.696676908],[-71.410342634,41.696635408],[-71.410281144,41.69659527],[-71.410232749,41.696552398],[-71.410178768,41.696510231],[-71.410120965,41.696474304],[-71.410051964,41.696438369],[-71.410027019,41.696383646],[-71.410013307,41.696326851],[-71.409967767,41.69627138],[-71.409926046,41.696212391],[-71.409883315,41.696156191],[-71.40982835,41.696120289],[-71.409757404,41.696100497],[-71.40968621,41.696127587],[-71.409615883,41.696167347],[-71.409544641,41.696206351],[-71.409481791,41.696244699],[-71.409428272,41.696288017],[-71.409380322,41.696341104],[-71.409347321,41.696396353],[-71.409286369,41.696429808],[-71.409226438,41.696454185],[-71.409189682,41.696510094],[-71.409166016,41.696566791],[-71.409147969,41.696619994],[-71.409105674,41.696665424],[-71.409024244,41.696679882],[-71.408974438,41.696729514],[-71.408920916,41.696773472],[-71.408898156,41.696836481],[-71.408888412,41.696908626],[-71.408886257,41.696965363],[-71.408873744,41.697031902],[-71.408845747,41.697022],[-71.408790823,41.696978437],[-71.408770582,41.696920905],[-71.408761544,41.696860591],[-71.408730952,41.696807968],[-71.408753707,41.696749167],[-71.408778321,41.696691807],[-71.40876272,41.696632884],[-71.408773293,41.696578967],[-71.408810966,41.696521618],[-71.408842147,41.696459347],[-71.408864861,41.696407566],[-71.408890352,41.696355788],[-71.408930824,41.696304044],[-71.408974102,41.696253034],[-71.409010817,41.696204786],[-71.409033577,41.696141777],[-71.409036722,41.69607523],[-71.409035196,41.696010075],[-71.409019636,41.695944176],[-71.408994693,41.69588943],[-71.408932219,41.695855603],[-71.408859329,41.695851886],[-71.408785458,41.695851713],[-71.408725622,41.695851529],[-71.408647076,41.695855491],[-71.40857415,41.695855982],[-71.408497623,41.695834744],[-71.408428543,41.695812117],[-71.40835289,41.695798564],[-71.408279136,41.695780828],[-71.408197829,41.695773605],[-71.408122013,41.695788798],[-71.408045322,41.695797678],[-71.40795835,41.695804424],[-71.40787886,41.695807699],[-71.407802128,41.6958236],[-71.407733702,41.695855608],[-71.407662544,41.695878534],[-71.407586729,41.695893018],[-71.407514665,41.695908923],[-71.407438842,41.695929055],[-71.407367653,41.695951958],[-71.407301163,41.695974866],[-71.407235545,41.696006921],[-71.407186682,41.696057217],[-71.407149054,41.696103359],[-71.407097355,41.696152943],[-71.407037298,41.696200417],[-71.406993111,41.696245136],[-71.406946149,41.696289121],[-71.406898243,41.696331757],[-71.406854054,41.696378557],[-71.406810815,41.696421882],[-71.406745187,41.696460226],[-71.406692619,41.696497872],[-71.406665225,41.696556669],[-71.406660227,41.696615507],[-71.406620661,41.696672168],[-71.406546613,41.696709064],[-71.406517704,41.696696394],[-71.40651895,41.696636798],[-71.406523912,41.696581504],[-71.406505501,41.696526763],[-71.406433605,41.696510445],[-71.406355975,41.696513012],[-71.406277387,41.696524725],[-71.40619875,41.696548285],[-71.406134991,41.69658105],[-71.406091743,41.696630664],[-71.406051277,41.696676072],[-71.406005183,41.696731286],[-71.405987129,41.696787301],[-71.405942023,41.696834123],[-71.405866204,41.696850024],[-71.405822012,41.696898218],[-71.405822624,41.696959188],[-71.405792468,41.69700744],[-71.405722181,41.697038073],[-71.405679312,41.697015535],[-71.40568709,41.696954595],[-71.405707946,41.69690279],[-71.40573533,41.696851723],[-71.405767349,41.696802763],[-71.405806871,41.696755937],[-71.405849202,41.69670774],[-71.405858833,41.696653091],[-71.405838595,41.696595604],[-71.405817351,41.696537362],[-71.405798035,41.696474959],[-71.405780599,41.696421659],[-71.405762187,41.696366918],[-71.405742903,41.696304515],[-71.405732011,41.696240701],[-71.405727605,41.696186749],[-71.405749419,41.696125867],[-71.405807609,41.696082577],[-71.405839335,41.696058556],[-71.405749512,41.696125515],[-71.405737513,41.696157515],[-71.405399512,41.696411515],[-71.405044512,41.696676515],[-71.405037512,41.696789515],[-71.405014512,41.696871515],[-71.404907512,41.697067515],[-71.404732512,41.697313515],[-71.404648511,41.697446515],[-71.404602512,41.697510516],[-71.404572512,41.697569516],[-71.404511511,41.697660515],[-71.404549512,41.697763516],[-71.404571512,41.697808515],[-71.404609511,41.697852515],[-71.404652512,41.697884515],[-71.404701512,41.697922516],[-71.403999512,41.698036516],[-71.403931511,41.698046515],[-71.403855512,41.698061515],[-71.403359512,41.698130516],[-71.403130511,41.698176515],[-71.402946512,41.698215515],[-71.402420511,41.698361515],[-71.401756511,41.698533515],[-71.401726511,41.698552515],[-71.402010511,41.699139516],[-71.402489511,41.700130516],[-71.402756511,41.700710516],[-71.403244511,41.701767516],[-71.404053512,41.702047516],[-71.404124512,41.702071516],[-71.404823512,41.702310517],[-71.405266513,41.702458516],[-71.405655513,41.702581517],[-71.406845513,41.702903516],[-71.407127513,41.702978516],[-71.407077513,41.703026516],[-71.406688513,41.702926516],[-71.406601513,41.702903516],[-71.406044513,41.702757517],[-71.405769513,41.702691516],[-71.405663512,41.702662516],[-71.405441513,41.702590516],[-71.405296512,41.702548516],[-71.404828512,41.702386517],[-71.404312512,41.702208516],[-71.404144512,41.702153517],[-71.403923512,41.702689516],[-71.403503512,41.703815516],[-71.403450512,41.703964517],[-71.403282511,41.704396517],[-71.403214512,41.704586517],[-71.403053512,41.705044516],[-71.403008512,41.705162517],[-71.402825512,41.705653517],[-71.402786512,41.705739517],[-71.402850512,41.705750517],[-71.402814511,41.705834517],[-71.402789512,41.705877517],[-71.402772512,41.705924517],[-71.402760511,41.705969517],[-71.402742512,41.706021517],[-71.402722512,41.706066517],[-71.402704512,41.706110517],[-71.402687512,41.706156517],[-71.402662511,41.706201517],[-71.402634512,41.706261517],[-71.402606512,41.706307517],[-71.402579512,41.706352517],[-71.402565511,41.706396517],[-71.402527511,41.706442517],[-71.402507511,41.706497517],[-71.402385511,41.706947517],[-71.402382512,41.706959517],[-71.402359512,41.707022517],[-71.402344512,41.707090517],[-71.402321512,41.707154517],[-71.402298512,41.707235517],[-71.402267512,41.707393517],[-71.402229511,41.707435518],[-71.402161512,41.707508517],[-71.402122512,41.707563517],[-71.402092512,41.707613518],[-71.402061511,41.707686517],[-71.402054511,41.707709518],[-71.402054511,41.707731518],[-71.402031512,41.707853517],[-71.402145512,41.708220517],[-71.402184512,41.708395517],[-71.402222512,41.708615517],[-71.402260512,41.708758518],[-71.402252511,41.708790517],[-71.402199512,41.708809517],[-71.402100512,41.708820518],[-71.401245511,41.708928517],[-71.400490511,41.709020517],[-71.400602511,41.709369518],[-71.400650511,41.709355517],[-71.400711511,41.709340518],[-71.400749511,41.709335517],[-71.400780511,41.709334517],[-71.400818511,41.709342518]]]]}}"}, +{"type": "precinct", "typeId": 3523, "areaId": 26007, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":346,\"NAME\":\"3523\",\"SHAPE_Length\":0.11611927650885,\"SHAPE_Area\":-0.00033436311794417},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.416504549,41.699606422],[-71.416504515,41.699606515],[-71.416489516,41.699656516],[-71.416496516,41.699705515],[-71.416519516,41.699759515],[-71.416534516,41.699813516],[-71.416557516,41.699866516],[-71.416603516,41.699915515],[-71.416641515,41.699959515],[-71.416649516,41.700013515],[-71.416664516,41.700071515],[-71.416694516,41.700129515],[-71.416755516,41.700164516],[-71.416824516,41.700198516],[-71.416832516,41.700234515],[-71.416825516,41.700284515],[-71.416878516,41.700328515],[-71.416840516,41.700374516],[-71.416832516,41.700419515],[-71.416893516,41.700467515],[-71.416962516,41.700511516],[-71.417015516,41.700564515],[-71.417053516,41.700617515],[-71.417084516,41.700684516],[-71.417084516,41.700742516],[-71.417076516,41.700806516],[-71.417107517,41.700850515],[-71.417168516,41.700889515],[-71.417221516,41.700938516],[-71.417267516,41.700977516],[-71.417389516,41.701056516],[-71.417442516,41.701104515],[-71.417443516,41.701163515],[-71.417458517,41.701225515],[-71.417412516,41.701280515],[-71.417358516,41.701331516],[-71.417328516,41.701386516],[-71.417359517,41.701430516],[-71.417435516,41.701451516],[-71.417503516,41.701472515],[-71.417610517,41.701560516],[-71.417610517,41.701740516],[-71.417618516,41.701798516],[-71.417595517,41.701853516],[-71.417572517,41.701912516],[-71.417549516,41.701966516],[-71.417519516,41.702021515],[-71.417526516,41.702079515],[-71.417557516,41.702200516],[-71.417557516,41.702317516],[-71.417572517,41.702380516],[-71.417610517,41.702433516],[-71.417664516,41.702477516],[-71.417732517,41.702521516],[-71.417809517,41.702542516],[-71.417885517,41.702554516],[-71.417954516,41.702584515],[-71.418007516,41.702641516],[-71.418030516,41.702699516],[-71.418053516,41.702753516],[-71.418091516,41.702802516],[-71.418159517,41.702836516],[-71.418213517,41.702844516],[-71.418320516,41.702860516],[-71.418388517,41.702876515],[-71.418457516,41.702902516],[-71.418518516,41.702937516],[-71.418594516,41.702967516],[-71.418656517,41.702988516],[-71.418793517,41.703048516],[-71.418862517,41.703074516],[-71.418930517,41.703095516],[-71.418999517,41.703125516],[-71.419052517,41.703173516],[-71.419098516,41.703213516],[-71.419243517,41.703277516],[-71.419304517,41.703325516],[-71.419426517,41.703413516],[-71.419479517,41.703457516],[-71.419541517,41.703505516],[-71.419586517,41.703549516],[-71.419639517,41.703589516],[-71.419731517,41.703686516],[-71.419739517,41.703704516],[-71.419762517,41.703739516],[-71.419807517,41.703783516],[-71.419876518,41.703818516],[-71.419945517,41.703843516],[-71.420021517,41.703864516],[-71.420097517,41.703894516],[-71.420319517,41.704074516],[-71.420393517,41.704042516],[-71.420501518,41.703994516],[-71.420624517,41.703951516],[-71.420746517,41.703903516],[-71.420875517,41.703860516],[-71.420998518,41.703826516],[-71.421120518,41.703787516],[-71.421249517,41.703753516],[-71.421356518,41.703733516],[-71.421471518,41.703708516],[-71.421577517,41.703692516],[-71.421768518,41.703661516],[-71.421959518,41.703634516],[-71.422150518,41.703603516],[-71.422531518,41.703550516],[-71.422646518,41.703530516],[-71.423004518,41.703473516],[-71.423347519,41.703416516],[-71.423515518,41.703390516],[-71.424301519,41.703247515],[-71.425301519,41.703100516],[-71.426003519,41.702991516],[-71.42629252,41.702944516],[-71.427269519,41.702784515],[-71.42737652,41.702772516],[-71.42805552,41.702659516],[-71.42809352,41.702654516],[-71.42833752,41.702613516],[-71.42922252,41.702477516],[-71.42973352,41.702398515],[-71.42994752,41.702362516],[-71.43058852,41.702268516],[-71.430481521,41.701874515],[-71.43038952,41.701529516],[-71.43035952,41.701435515],[-71.43032152,41.701274516],[-71.43023752,41.700996515],[-71.430153521,41.700687515],[-71.430115521,41.700576515],[-71.43006952,41.700437515],[-71.43002352,41.700280515],[-71.42994852,41.700082515],[-71.429901521,41.699936515],[-71.429840521,41.699766515],[-71.429802521,41.699664515],[-71.42975652,41.699547515],[-71.42971052,41.699449515],[-71.42966552,41.699324515],[-71.42961152,41.699226515],[-71.429550521,41.699110515],[-71.42951252,41.699053515],[-71.42944352,41.698924515],[-71.42922252,41.698500515],[-71.42919152,41.698443515],[-71.42911552,41.698309515],[-71.42903152,41.698149515],[-71.42884852,41.697833515],[-71.42874152,41.697642515],[-71.42856652,41.697339514],[-71.42849752,41.697210514],[-71.428383519,41.696992514],[-71.42829952,41.696836514],[-71.42806252,41.696400515],[-71.42903952,41.696356514],[-71.42921452,41.696344514],[-71.42917652,41.696065514],[-71.42907752,41.695838514],[-71.42901652,41.695726514],[-71.42915352,41.695687514],[-71.42924552,41.695668514],[-71.42980252,41.695642514],[-71.42990152,41.695618514],[-71.42997052,41.695576514],[-71.42997152,41.695573514],[-71.42999352,41.695512514],[-71.42998552,41.695395514],[-71.42993952,41.695230514],[-71.42989452,41.694902514],[-71.42980252,41.694525514],[-71.42975652,41.694216514],[-71.42968052,41.693835514],[-71.42964252,41.693633513],[-71.42959652,41.693183514],[-71.42961952,41.692728514],[-71.42962652,41.692570514],[-71.42968052,41.691642514],[-71.429726519,41.690249513],[-71.42974152,41.689974513],[-71.42975652,41.689514513],[-71.42976352,41.689275513],[-71.42977952,41.688730513],[-71.42979752,41.688292512],[-71.429810519,41.687982512],[-71.429826519,41.687761513],[-71.429863519,41.687252513],[-71.42987852,41.687098513],[-71.42989552,41.686869512],[-71.42991652,41.686582512],[-71.42993252,41.686372513],[-71.430123435,41.685867737],[-71.43005922,41.68582167],[-71.429981853,41.685792488],[-71.429899576,41.685789213],[-71.429811514,41.68580343],[-71.429720614,41.685818331],[-71.42963164,41.68582907],[-71.429559509,41.685837785],[-71.429474221,41.68585413],[-71.429403917,41.685866322],[-71.429315856,41.685879143],[-71.42922306,41.685897542],[-71.429133949,41.685922323],[-71.429042981,41.685943512],[-71.42895857,41.685966169],[-71.428868481,41.685992321],[-71.4288,41.686010849],[-71.428708995,41.68603771],[-71.428633955,41.686055501],[-71.428542983,41.686080212],[-71.428466996,41.68609942],[-71.428394898,41.686105299],[-71.428319081,41.686109093],[-71.428242314,41.686115655],[-71.428156219,41.686116584],[-71.428076713,41.686117495],[-71.427993389,41.686122657],[-71.427906312,41.686128457],[-71.427820177,41.686137802],[-71.42774429,41.686148595],[-71.427670332,41.686153762],[-71.427596409,41.686155431],[-71.427516872,41.68615641],[-71.427422421,41.686154452],[-71.427343865,41.686151224],[-71.427251278,41.686146454],[-71.427174648,41.686140437],[-71.42708483,41.686141317],[-71.426989298,41.686151273],[-71.426900394,41.686152886],[-71.426865689,41.686140972],[-71.426817475,41.686124339],[-71.42672966,41.686107725],[-71.426654756,41.686112915],[-71.426573385,41.686117345],[-71.42649943,41.686120431],[-71.426417084,41.686123465],[-71.426344074,41.686126575],[-71.426266431,41.686126136],[-71.426187842,41.686125651],[-71.426113952,41.686125238],[-71.426032556,41.686124797],[-71.425954913,41.686124335],[-71.425870741,41.686123846],[-71.425793098,41.686123407],[-71.425695807,41.686122841],[-71.425602269,41.686122323],[-71.425511508,41.686121784],[-71.425435756,41.686121369],[-71.425361835,41.686120933],[-71.425274823,41.686122546],[-71.425183145,41.686123446],[-71.425088628,41.686125009],[-71.424997862,41.686127968],[-71.424923024,41.686129612],[-71.424837875,41.686129144],[-71.424745283,41.686128603],[-71.424654522,41.686128087],[-71.42455537,41.686127518],[-71.424459941,41.686126975],[-71.424383243,41.686126536],[-71.4243056,41.686126073],[-71.42423171,41.686124973],[-71.424151296,41.6861203],[-71.424078386,41.686115678],[-71.423998005,41.686108879],[-71.423923276,41.686095153],[-71.423845838,41.686075755],[-71.423761808,41.686058456],[-71.42368528,41.686043974],[-71.423603108,41.686029489],[-71.423530305,41.686012266],[-71.423455641,41.685994996],[-71.423385676,41.685977066],[-71.423293259,41.685958274],[-71.423215721,41.685946628],[-71.423126111,41.685926466],[-71.423051482,41.685906405],[-71.422983448,41.685880792],[-71.422918253,41.685854448],[-71.422846468,41.685828787],[-71.422764503,41.685793948],[-71.422694612,41.685766206],[-71.422625598,41.685744091],[-71.422536089,41.685717616],[-71.422461394,41.685701032],[-71.422370769,41.685688621],[-71.422295121,41.685679079],[-71.422205512,41.685658894],[-71.422130852,41.685639541],[-71.422059974,41.685620215],[-71.421992856,41.685595264],[-71.421917384,41.685566078],[-71.421848403,41.685542544],[-71.421775599,41.685527401],[-71.42169992,41.685517836],[-71.421603648,41.685508165],[-71.421526074,41.685502121],[-71.421433618,41.685490371],[-71.421355102,41.685480804],[-71.421265459,41.685464139],[-71.421186093,41.685451072],[-71.421094592,41.685433012],[-71.421016139,41.685421363],[-71.420941408,41.68541038],[-71.420869515,41.685398759],[-71.420791066,41.685384274],[-71.420706192,41.685359952],[-71.420626832,41.685342653],[-71.420536273,41.685326697],[-71.420463437,41.685313657],[-71.420389655,41.685299907],[-71.420294399,41.685283238],[-71.4202197,41.685270882],[-71.420137566,41.685252187],[-71.42004799,41.685231336],[-71.419983714,41.685203574],[-71.419932732,41.685157],[-71.419870452,41.685118079],[-71.41979586,41.685093785],[-71.419764935,41.685085874],[-71.419725898,41.685075875],[-71.41964566,41.68505295],[-71.419572824,41.68503991],[-71.419490721,41.685020528],[-71.4194142,41.685001835],[-71.419336733,41.684983852],[-71.419250909,41.684963735],[-71.419171619,41.684939415],[-71.419102539,41.684923587],[-71.419014822,41.684904864],[-71.418941105,41.6848883],[-71.418857183,41.684860478],[-71.418778029,41.684825638],[-71.418719538,41.684783242],[-71.418656346,41.684742879],[-71.4185799,41.684714422],[-71.41850527,41.684696462],[-71.418423103,41.684679824],[-71.418333462,41.684663889],[-71.418244731,41.684650744],[-71.418172807,41.684640516],[-71.418091553,41.684626714],[-71.418013069,41.684617145],[-71.417933638,41.684608306],[-71.417863819,41.684574204],[-71.417787472,41.684539411],[-71.417716671,41.684510271],[-71.417651446,41.684486051],[-71.417563768,41.684461678],[-71.41747139,41.684438697],[-71.417379891,41.684419947],[-71.417289338,41.684401884],[-71.417198748,41.684388028],[-71.417109036,41.684379822],[-71.417025922,41.684365286],[-71.416951223,41.684354324],[-71.41686523,41.684348224],[-71.416792325,41.684342202],[-71.416716546,41.68434105],[-71.41664073,41.684344837],[-71.416549021,41.684347789],[-71.41647229,41.684351575],[-71.416386299,41.684344057],[-71.416309814,41.684322573],[-71.416290798,41.684306551],[-71.416257855,41.684278787],[-71.416208731,41.684237129],[-71.416171749,41.684219561],[-71.416144492,41.68420662],[-71.416061415,41.684187212],[-71.415981911,41.684188114],[-71.415900516,41.684189084],[-71.415827576,41.684186538],[-71.415753516,41.684200845],[-71.41570526,41.68421922],[-71.415700745,41.684219217],[-71.415636688,41.684189622],[-71.415568761,41.684156275],[-71.415498209,41.684193729],[-71.415425629,41.684218992],[-71.415340648,41.684232765],[-71.415254449,41.684244914],[-71.415181372,41.684253573],[-71.415096151,41.684264327],[-71.415006198,41.684277113],[-71.414935293,41.684258468],[-71.414882933,41.684218591],[-71.414874034,41.684211815],[-71.414835757,41.684204583],[-71.414811943,41.684218538],[-71.414767062,41.68424485],[-71.41468451,41.684266812],[-71.414614167,41.684284644],[-71.414543827,41.684300371],[-71.414523045,41.684305227],[-71.414470708,41.684317469],[-71.414389984,41.684341559],[-71.414320552,41.684362181],[-71.414275115,41.68437102],[-71.414038475,41.684411756],[-71.413943223,41.684394373],[-71.413936241,41.684345222],[-71.413597853,41.68432219],[-71.413476283,41.684320086],[-71.413349981,41.684320746],[-71.413329353,41.684324847],[-71.413299852,41.684347419],[-71.413257007,41.684356672],[-71.413183018,41.684363248],[-71.413100607,41.684370527],[-71.413023947,41.684366535],[-71.412954095,41.684336707],[-71.412891468,41.68433284],[-71.412846575,41.684345224],[-71.41281329,41.684346228],[-71.412752494,41.684341905],[-71.412632307,41.684333375],[-71.412623483,41.68433856],[-71.412569782,41.684321847],[-71.412488391,41.684319247],[-71.412401417,41.684317328],[-71.412326618,41.684313361],[-71.412302592,41.684303531],[-71.41224838,41.684281352],[-71.41218123,41.684260627],[-71.412096886,41.68427696],[-71.412014333,41.68429892],[-71.411985406,41.684303289],[-71.411938415,41.684310411],[-71.41185516,41.684310599],[-71.4117832,41.684305284],[-71.411781525,41.684303133],[-71.411741661,41.684251738],[-71.411665073,41.684239375],[-71.411582768,41.684236773],[-71.411495756,41.68424048],[-71.411427627,41.684222566],[-71.411342513,41.684221357],[-71.411253541,41.684229979],[-71.411175927,41.684232297],[-71.411088954,41.684229692],[-71.411012227,41.684229953],[-71.410934551,41.684233003],[-71.410852174,41.68423813],[-71.41077348,41.684249595],[-71.410683629,41.684253962],[-71.410602201,41.684257032],[-71.410509508,41.684264895],[-71.410424321,41.684272101],[-71.41033623,41.684284199],[-71.410254763,41.684292849],[-71.410162103,41.684298608],[-71.41007415,41.684298791],[-71.409978789,41.684295423],[-71.409887084,41.684294871],[-71.409812281,41.684293783],[-71.409740218,41.684296814],[-71.40965232,41.684301479],[-71.409578269,41.684307801],[-71.409487403,41.684318478],[-71.409406886,41.684324315],[-71.409317984,41.6843266],[-71.409230132,41.684319761],[-71.409152599,41.684307419],[-71.40906559,41.684308997],[-71.408975633,41.684323882],[-71.408882977,41.684326851],[-71.408809052,41.684330611],[-71.408725656,41.684344175],[-71.408634896,41.684344354],[-71.408570727,41.684309588],[-71.408552588,41.684300586],[-71.408512103,41.68428052],[-71.408430606,41.684288414],[-71.408367286,41.684300438],[-71.408348122,41.684304059],[-71.408258335,41.684306343],[-71.408235402,41.684300333],[-71.408179015,41.684285537],[-71.408104287,41.684274615],[-71.408031415,41.684267856],[-71.407956615,41.684264617],[-71.407878944,41.684264143],[-71.407790144,41.684258721],[-71.407711521,41.684262477],[-71.407619741,41.684272443],[-71.407539185,41.684283904],[-71.407465192,41.684292603],[-71.407393336,41.684299658],[-71.40738464,41.684300543],[-71.407307843,41.684307776],[-71.407232969,41.684313639],[-71.407150594,41.684317368],[-71.407076637,41.684321837],[-71.406998014,41.684325592],[-71.406924089,41.684329352],[-71.406833258,41.684336528],[-71.40675649,41.684343784],[-71.406662784,41.68435656],[-71.406585983,41.684365943],[-71.406501672,41.684378749],[-71.406409824,41.684392945],[-71.406336672,41.684410037],[-71.406259869,41.684420815],[-71.406183035,41.684432278],[-71.406110866,41.684445163],[-71.4060274,41.684464305],[-71.405950388,41.6844926],[-71.405896564,41.684540673],[-71.405892243,41.684596059],[-71.405875744,41.684654865],[-71.405849811,41.684718534],[-71.405826755,41.684775894],[-71.405796229,41.684830413],[-71.405737809,41.684870775],[-71.405652411,41.684896204],[-71.405571786,41.684912535],[-71.405498737,41.684921234],[-71.405421829,41.684941112],[-71.405353275,41.684963879],[-71.405271662,41.684987916],[-71.405194685,41.685012712],[-71.405112129,41.685034667],[-71.405037012,41.685060127],[-71.40496933,41.685091287],[-71.404889511,41.68511887],[-71.404819128,41.685140904],[-71.404731943,41.685157229],[-71.4046383,41.68516719],[-71.404562479,41.685173051],[-71.404487573,41.685178912],[-71.404392037,41.685189604],[-71.404301203,41.685198173],[-71.404216897,41.68520677],[-71.404145707,41.685216887],[-71.404061389,41.685233191],[-71.403990133,41.68524683],[-71.403902069,41.6852589],[-71.403814007,41.685269621],[-71.403732611,41.685270536],[-71.403656163,41.685246963],[-71.403586173,41.685229706],[-71.403506814,41.685214523],[-71.403420678,41.685222409],[-71.403347419,41.68524931],[-71.403269493,41.685275522],[-71.403274929,41.685292381],[-71.403360778,41.685313195],[-71.403441016,41.685331947],[-71.403523951,41.685363279],[-71.403596534,41.685400845],[-71.403667155,41.685445454],[-71.403714301,41.68549903],[-71.403767944,41.685554053],[-71.4038273,41.685603477],[-71.403855745,41.685656946],[-71.403850403,41.685720724],[-71.403896046,41.685739241],[-71.403965446,41.68572281],[-71.404046179,41.685696669],[-71.404110144,41.68566267],[-71.404164843,41.685623015],[-71.40424095,41.685589095],[-71.404318946,41.685556594],[-71.404407189,41.68552696],[-71.40449062,41.68551205],[-71.404575735,41.685513264],[-71.404653133,41.685534757],[-71.404724946,41.685557594],[-71.404809217,41.685551787],[-71.404881567,41.685520676],[-71.404953145,41.6854755],[-71.405016342,41.685423959],[-71.405071184,41.68536889],[-71.405128726,41.685325051],[-71.405201949,41.685301648],[-71.40527868,41.685299287],[-71.405372182,41.685301971],[-71.405455331,41.685312971],[-71.405527218,41.685326751],[-71.405614998,41.685341986],[-71.405711128,41.685362876],[-71.405801713,41.68537953],[-71.40589802,41.685383611],[-71.405989592,41.685392559],[-71.406085896,41.685399453],[-71.406172799,41.685409083],[-71.406259703,41.685418005],[-71.406342084,41.685411486],[-71.40641976,41.685409834],[-71.4064954,41.685423594],[-71.406580339,41.685441615],[-71.406656891,41.685457503],[-71.406724959,41.685475442],[-71.406815439,41.685501243],[-71.406889115,41.685522686],[-71.406978652,41.685547068],[-71.40705703,41.685566479],[-71.40714281,41.685593603],[-71.407217432,41.685615091],[-71.407303281,41.685636635],[-71.407397627,41.685647711],[-71.407485405,41.685665071],[-71.407573957,41.685695055],[-71.407641984,41.685720678],[-71.407728678,41.685749219],[-71.407803369,41.685765791],[-71.40788273,41.685780285],[-71.407976304,41.685776632],[-71.408060541,41.685773612],[-71.408134358,41.685783162],[-71.408205302,41.6857955],[-71.408295921,41.685810094],[-71.408373426,41.68582175],[-71.408461239,41.685835588],[-71.408542497,41.685846584],[-71.408632104,41.685865339],[-71.408712375,41.685884041],[-71.408779493,41.685905477],[-71.408866221,41.685931914],[-71.408949302,41.685948583],[-71.409028628,41.685967262],[-71.409102378,41.685981019],[-71.409189106,41.686007501],[-71.40926752,41.686023366],[-71.409338428,41.686040619],[-71.409434594,41.686059402],[-71.409508271,41.686081575],[-71.409573459,41.686109321],[-71.409647943,41.686143432],[-71.40971218,41.68617463],[-71.409779299,41.686196088],[-71.409860551,41.686212001],[-71.409949178,41.686234253],[-71.410027595,41.686248722],[-71.410116252,41.686270266],[-71.410192806,41.686286151],[-71.410265643,41.686298489],[-71.410362794,41.686311691],[-71.410441278,41.686321975],[-71.410536567,41.68633584],[-71.410614983,41.686351063],[-71.410701645,41.686382392],[-71.410777109,41.686414422],[-71.410838508,41.686447036],[-71.410916642,41.686490251],[-71.41097334,41.686524941],[-71.411030805,41.686578591],[-71.411077927,41.686632851],[-71.411121358,41.686686398],[-71.411161046,41.686733608],[-71.411198902,41.686781526],[-71.411244301,41.686824555],[-71.411316083,41.686850224],[-71.411400112,41.686866846],[-71.411486108,41.686872264],[-71.41155912,41.686869187],[-71.411628488,41.686853483],[-71.411713848,41.686832921],[-71.411787809,41.686827054],[-71.411856751,41.686855488],[-71.411913414,41.686893723],[-71.411993618,41.686918735],[-71.412079717,41.686916422],[-71.412159292,41.686909874],[-71.412248232,41.686904773],[-71.412325844,41.686906616],[-71.412405028,41.686940775],[-71.412467342,41.686974783],[-71.412529477,41.687028436],[-71.412578631,41.687070118],[-71.412605302,41.687087931],[-71.412639014,41.687110437],[-71.412695714,41.687145127],[-71.412748636,41.687175697],[-71.412753361,41.687178399],[-71.41282325,41.687206147],[-71.41290521,41.687240993],[-71.412974222,41.687263137],[-71.413042289,41.687284594],[-71.41311397,41.687317969],[-71.413171551,41.68735545],[-71.413221619,41.68739855],[-71.413263264,41.687444366],[-71.413330105,41.687492442],[-71.413413082,41.687520953],[-71.413489604,41.687539649],[-71.413559567,41.687558272],[-71.41364251,41.68758891],[-71.413719732,41.687632145],[-71.413762121,41.687691294],[-71.413774611,41.687750992],[-71.413818048,41.687803121],[-71.413889763,41.687834391],[-71.413971863,41.687857345],[-71.414033058,41.68790816],[-71.414093336,41.687960416],[-71.414164001,41.688002182],[-71.414240522,41.688022273],[-71.414315186,41.688038863],[-71.414397147,41.68807508],[-71.414464127,41.688111949],[-71.41452827,41.688148794],[-71.414592371,41.688194031],[-71.414649039,41.688230824],[-71.41470195,41.688271113],[-71.414767982,41.688310062],[-71.414835881,41.688344119],[-71.414885038,41.688385801],[-71.414922862,41.688437879],[-71.414954093,41.688492056],[-71.415001248,41.688547732],[-71.415052302,41.688585938],[-71.415105247,41.688623414],[-71.415176823,41.688669412],[-71.415242928,41.688699922],[-71.415322997,41.688736869],[-71.415388189,41.688766007],[-71.415458013,41.688798647],[-71.415517523,41.688832674],[-71.415582644,41.688868787],[-71.415641202,41.68890773],[-71.415686572,41.688952839],[-71.415734714,41.689001517],[-71.415795065,41.689046065],[-71.415851661,41.689092645],[-71.415907278,41.689141397],[-71.415970438,41.689184506],[-71.416026121,41.689229028],[-71.416079,41.689272129],[-71.416141316,41.68930753],[-71.416202754,41.689338037],[-71.416268687,41.689384029],[-71.416337492,41.689427188],[-71.416422444,41.68944104],[-71.416495454,41.68944075],[-71.416575844,41.689444033],[-71.416654543,41.68943325],[-71.41672482,41.689423101],[-71.416773875,41.689473906],[-71.41682763,41.689524006],[-71.416884266,41.689564319],[-71.416950404,41.689593457],[-71.417022542,41.689584064],[-71.417081384,41.689593506],[-71.417077351,41.68962154],[-71.417021707,41.689663991],[-71.41696234,41.689707103],[-71.416880663,41.689732611],[-71.416804169,41.689712523],[-71.416752239,41.689667341],[-71.416689818,41.689641042],[-71.416625924,41.689669376],[-71.416591684,41.689723186],[-71.416577932,41.689787621],[-71.416602569,41.689846687],[-71.416637588,41.689898763],[-71.416677275,41.689951597],[-71.416690683,41.690011272],[-71.41666058,41.690027259],[-71.416601069,41.689992546],[-71.41653984,41.689941],[-71.41648696,41.689898608],[-71.416438854,41.689845013],[-71.416444115,41.689787547],[-71.416396041,41.68973258],[-71.416329022,41.689700629],[-71.416262875,41.689677803],[-71.416182632,41.689655607],[-71.416090113,41.689641726],[-71.416011755,41.689625158],[-71.415940881,41.68960091],[-71.41588702,41.689562702],[-71.415818178,41.689524437],[-71.41573604,41.689505053],[-71.415674704,41.689466816],[-71.41561618,41.689425082],[-71.415532182,41.689404964],[-71.415451937,41.689384872],[-71.415363235,41.689368913],[-71.415274498,41.689356498],[-71.415190325,41.689353897],[-71.415102506,41.689339379],[-71.415030786,41.689309482],[-71.414942155,41.689286547],[-71.414863773,41.689265038],[-71.414775915,41.68925754],[-71.414698093,41.689273902],[-71.414622305,41.689274852],[-71.414591569,41.689261382],[-71.414553742,41.689211339],[-71.414488693,41.689166787],[-71.414423568,41.68913415],[-71.414359359,41.689100805],[-71.414297045,41.689064694],[-71.414227256,41.689028508],[-71.41416961,41.688992423],[-71.414117646,41.68895074],[-71.414053575,41.688905479],[-71.413992275,41.688864452],[-71.413935643,41.688823451],[-71.413866836,41.688783813],[-71.413801683,41.688749025],[-71.413743087,41.688716461],[-71.413674175,41.688687274],[-71.413590214,41.688662947],[-71.413502289,41.688661051],[-71.413416891,41.688685091],[-71.413337138,41.688708495],[-71.413265032,41.688717154],[-71.413172302,41.688725728],[-71.413095534,41.688730198],[-71.413006622,41.688735299],[-71.412912239,41.688725623],[-71.412827365,41.688700608],[-71.412755477,41.688683356],[-71.41274657,41.688682114],[-71.412681688,41.688673077],[-71.412609726,41.688665682],[-71.412528394,41.688661],[-71.412433979,41.688652032],[-71.412354545,41.688643098],[-71.412261073,41.688636235],[-71.412185253,41.688639333],[-71.412108481,41.688646592],[-71.412029817,41.68865385],[-71.411948384,41.688656166],[-71.411869823,41.688655695],[-71.411786492,41.688662949],[-71.411714181,41.688687066],[-71.411637203,41.688711866],[-71.41156029,41.688732435],[-71.411482503,41.688746005],[-71.411396367,41.688751107],[-71.411313949,41.688759734],[-71.41122588,41.68877325],[-71.411145247,41.688792421],[-71.411065425,41.688821403],[-71.410994865,41.688858877],[-71.410929849,41.688903353],[-71.410871287,41.688957713],[-71.410835186,41.689007997],[-71.410811257,41.689059046],[-71.410795605,41.689125583],[-71.410808028,41.689188094],[-71.410822445,41.689242145],[-71.410840445,41.689308869],[-71.410866862,41.689378457],[-71.410893316,41.689443815],[-71.410918788,41.689512694],[-71.410934084,41.689570977],[-71.410921661,41.689597564],[-71.410852719,41.689567712],[-71.410799841,41.689526758],[-71.410748899,41.689475263],[-71.41070925,41.689421009],[-71.41070343,41.689349447],[-71.410697502,41.689290531],[-71.410680309,41.689235723],[-71.410650979,41.689176652],[-71.410624451,41.689121059],[-71.410599786,41.68906485],[-71.410583578,41.689003731],[-71.410565442,41.688947504],[-71.410546427,41.688887115],[-71.410521727,41.68883365],[-71.410493271,41.688783019],[-71.410432994,41.688731447],[-71.410365211,41.688680556],[-71.410329316,41.688626374],[-71.410303674,41.688570827],[-71.410277081,41.688518756],[-71.410235573,41.688463838],[-71.410190242,41.68841516],[-71.41014025,41.688362293],[-71.410088425,41.688310796],[-71.41005524,41.688260801],[-71.41001282,41.688203732],[-71.40995444,41.688149395],[-71.409892268,41.688101344],[-71.409835749,41.688047008],[-71.409769857,41.687997536],[-71.409706774,41.687946716],[-71.409651203,41.687890986],[-71.409595592,41.687842277],[-71.409540791,41.687803356],[-71.409459844,41.687764323],[-71.409394692,41.68773166],[-71.409345537,41.687692126],[-71.409297334,41.687647653],[-71.409248249,41.687601076],[-71.409201203,41.687537005],[-71.409158751,41.687482039],[-71.409111566,41.68742986],[-71.409057851,41.687378362],[-71.408991961,41.68732818],[-71.408929726,41.687282942],[-71.408866608,41.687236307],[-71.408792123,41.687202196],[-71.408724059,41.68718005],[-71.408646555,41.687166267],[-71.408572665,41.687164424],[-71.408500632,41.687166105],[-71.408418251,41.687171231],[-71.408342361,41.687181347],[-71.408258014,41.68719555],[-71.408182018,41.687216163],[-71.408101318,41.687240203],[-71.408022478,41.687265708],[-71.407950167,41.687290508],[-71.407869435,41.687315989],[-71.407797052,41.687348519],[-71.407719964,41.687385231],[-71.407643859,41.687417713],[-71.407569655,41.687443221],[-71.407487091,41.687469386],[-71.407412884,41.687497021],[-71.407333065,41.687523919],[-71.407259802,41.687552218],[-71.407188366,41.68758404],[-71.407112226,41.687618694],[-71.407042615,41.687654039],[-71.40696651,41.687685834],[-71.406890473,41.687712736],[-71.406816301,41.687736871],[-71.406735602,41.687759515],[-71.406662444,41.687778711],[-71.406583678,41.687794404],[-71.406508658,41.687814285],[-71.406438276,41.687833507],[-71.406365085,41.687854098],[-71.406285226,41.687886621],[-71.406218557,41.687912135],[-71.406144381,41.687938374],[-71.406068175,41.68797648],[-71.406000486,41.688011118],[-71.405940142,41.688050769],[-71.405878912,41.688091083],[-71.405818664,41.688127853],[-71.405756417,41.688175187],[-71.405692382,41.688214058],[-71.40561996,41.688250841],[-71.40555132,41.688288267],[-71.40547501,41.688334103],[-71.405411009,41.688370893],[-71.405345146,41.688407704],[-71.405270864,41.688443707],[-71.40519942,41.68847905],[-71.405129874,41.688510186],[-71.405057489,41.688542029],[-71.404988855,41.68857527],[-71.404921102,41.688610661],[-71.404848711,41.688646689],[-71.404778958,41.68869397],[-71.404725093,41.688745564],[-71.40467677,41.688804847],[-71.404623749,41.688863463],[-71.404611954,41.688917379],[-71.404609387,41.688982577],[-71.404626606,41.689036676],[-71.404651268,41.689091537],[-71.404675997,41.689142854],[-71.404700623,41.689201213],[-71.404720651,41.689254652],[-71.404740676,41.689309464],[-71.404763475,41.689365672],[-71.404770278,41.689428157],[-71.404746305,41.689484761],[-71.404794402,41.689538383],[-71.40484166,41.689580708],[-71.404902074,41.689618949],[-71.404965298,41.689655798],[-71.405010695,41.68969883],[-71.405051287,41.689751668],[-71.40509942,41.689801037],[-71.405140112,41.68984825],[-71.405164774,41.689903796],[-71.405181854,41.689969834],[-71.405219601,41.69002825],[-71.405235802,41.690090742],[-71.405224813,41.690156597],[-71.40522516,41.6902113],[-71.405243187,41.690276629],[-71.405270723,41.690328679],[-71.405300049,41.690387066],[-71.405338751,41.690439194],[-71.405379373,41.690493427],[-71.405412452,41.690551817],[-71.405419184,41.690621276],[-71.405432513,41.690686602],[-71.405453489,41.690738623],[-71.405473378,41.690803931],[-71.405482945,41.69087552],[-71.40549624,41.690943635],[-71.405527422,41.691005522],[-71.405590719,41.69103535],[-71.405680509,41.691037299],[-71.405759979,41.691044088],[-71.405853384,41.691057222],[-71.405928958,41.691078736],[-71.405995762,41.691130292],[-71.406051409,41.691175527],[-71.406098666,41.69122],[-71.406138414,41.691267189],[-71.406173425,41.69132],[-71.406204718,41.691369286],[-71.40623026,41.691429727],[-71.406245621,41.691483093],[-71.406249687,41.691539949],[-71.406243507,41.691593893],[-71.406228904,41.691648493],[-71.406209527,41.691713631],[-71.406192924,41.691780144],[-71.406190321,41.69184955],[-71.406205542,41.691915563],[-71.406242453,41.691962749],[-71.406282167,41.692012088],[-71.406325499,41.69207124],[-71.406324931,41.692125943],[-71.406312154,41.692184066],[-71.406315274,41.692242293],[-71.406323054,41.692305442],[-71.406343965,41.692360962],[-71.406413609,41.692412566],[-71.406471223,41.692448701],[-71.406528869,41.692483394],[-71.406595814,41.692523744],[-71.406653387,41.692566877],[-71.406703456,41.692609225],[-71.406756299,41.692653726],[-71.40679794,41.692700939],[-71.406812251,41.692763475],[-71.406782525,41.692832013],[-71.406781819,41.69289863],[-71.406832692,41.692955021],[-71.406896024,41.692982744],[-71.406975287,41.693008468],[-71.407046059,41.693039741],[-71.407124272,41.693073857],[-71.40720164,41.693101637],[-71.407272514,41.693125935],[-71.407351675,41.69315932],[-71.407419636,41.693193381],[-71.407493145,41.693231677],[-71.407563813,41.693272075],[-71.407621396,41.693309581],[-71.407685601,41.69334643],[-71.407738511,41.693387408],[-71.407776371,41.693433931],[-71.407796367,41.693490137],[-71.40779012,41.693548997],[-71.407803517,41.693611533],[-71.407817831,41.693672605],[-71.407826562,41.693733673],[-71.407810033,41.69379177],[-71.407798236,41.69384779],[-71.407797114,41.693864644],[-71.407769425,41.693917769],[-71.407751983,41.693973739],[-71.407757941,41.694032015],[-71.407759552,41.69405795],[-71.407770941,41.694094916],[-71.40779324,41.694120227],[-71.407851956,41.694155424],[-71.407916326,41.694184359],[-71.407989995,41.694218173],[-71.408043054,41.694262467],[-71.40808856,41.694317985],[-71.408148224,41.694351764],[-71.408215405,41.694377889],[-71.408298454,41.694403363],[-71.408371288,41.694423912],[-71.408443147,41.694443751],[-71.408511312,41.69446425],[-71.408582221,41.694486878],[-71.40867088,41.694515879],[-71.408741858,41.694532881],[-71.408834351,41.694547179],[-71.408920221,41.694562821],[-71.408992146,41.694579161],[-71.409061234,41.694594789],[-71.409135062,41.694603401],[-71.409207955,41.694604305],[-71.409282741,41.694603815],[-71.409361277,41.694605455],[-71.409435115,41.694607068],[-71.409515482,41.694608732],[-71.409591213,41.694608929],[-71.409666944,41.694609835],[-71.409762287,41.694615718],[-71.409843516,41.694633483],[-71.409913398,41.694660577],[-71.409913513,41.694659515],[-71.409921513,41.694663515],[-71.409994513,41.694689514],[-71.410028556,41.69470605],[-71.410064606,41.694723121],[-71.410100533,41.694756071],[-71.410116513,41.694770514],[-71.410116642,41.694770845],[-71.410116715,41.694770912],[-71.410118094,41.69477458],[-71.410137514,41.694824514],[-71.410155513,41.694888514],[-71.410159521,41.694904814],[-71.410170963,41.694949037],[-71.410174703,41.694983555],[-71.410178514,41.695014515],[-71.410183514,41.695071515],[-71.410186991,41.695098835],[-71.41019061,41.69512638],[-71.410194428,41.695139563],[-71.410208513,41.695186515],[-71.410241514,41.695240515],[-71.41030949,41.695286156],[-71.410311308,41.695287176],[-71.410351026,41.695311331],[-71.41040583,41.695344363],[-71.410457647,41.695375199],[-71.410489686,41.695395905],[-71.410528514,41.695420515],[-71.410650514,41.695513515],[-71.410709514,41.695563514],[-71.410742855,41.695587329],[-71.41077243,41.695608024],[-71.410827353,41.695652341],[-71.410827514,41.695652515],[-71.410878514,41.695705515],[-71.410913194,41.695733941],[-71.410939924,41.69575566],[-71.411017278,41.695797228],[-71.411093798,41.695824067],[-71.411165685,41.695847403],[-71.411236081,41.695880507],[-71.411242339,41.695883433],[-71.411265503,41.695892101],[-71.411325514,41.695914514],[-71.411330749,41.69591621],[-71.411396117,41.695937068],[-71.411479159,41.695970224],[-71.411511592,41.695984878],[-71.411546514,41.696000515],[-71.411558972,41.696006744],[-71.411606926,41.696030148],[-71.411651835,41.696047151],[-71.411685514,41.696059515],[-71.411769514,41.696078515],[-71.411801247,41.696097555],[-71.411834618,41.69611702],[-71.41186772,41.696140696],[-71.411887514,41.696154515],[-71.411955514,41.696205515],[-71.411955686,41.696205667],[-71.41201619,41.696259062],[-71.412030403,41.696269803],[-71.412070514,41.696299515],[-71.412129514,41.696335515],[-71.412129839,41.696335761],[-71.412195955,41.696385026],[-71.412229969,41.696410693],[-71.412247514,41.696423514],[-71.412312514,41.696457515],[-71.412325944,41.696465349],[-71.412384219,41.696499058],[-71.412440993,41.696551769],[-71.412499682,41.696588382],[-71.412577145,41.696618034],[-71.412625021,41.696624849],[-71.412667514,41.696630515],[-71.412735515,41.696620515],[-71.41281947,41.696606974],[-71.412828653,41.696605441],[-71.41285059,41.696609575],[-71.412915515,41.696621515],[-71.412936475,41.696627337],[-71.413001427,41.696644472],[-71.41307238,41.696660146],[-71.413112044,41.696670397],[-71.413228514,41.696699515],[-71.413394515,41.696738515],[-71.413468515,41.696758515],[-71.413491229,41.696769725],[-71.413545704,41.696796025],[-71.413563038,41.696819045],[-71.413580514,41.696841515],[-71.413568601,41.696899098],[-71.413630077,41.696930079],[-71.413688796,41.6969674],[-71.413702843,41.69698985],[-71.413722515,41.697020515],[-71.413787515,41.697054515],[-71.413861515,41.697064515],[-71.413877657,41.697064909],[-71.413943512,41.697066203],[-71.413986864,41.697063657],[-71.414034515,41.697060515],[-71.414122515,41.697061515],[-71.414208515,41.697079515],[-71.414277515,41.697113515],[-71.414352515,41.697147515],[-71.414423515,41.697158515],[-71.414501515,41.697156515],[-71.414547303,41.697148601],[-71.414582608,41.697142331],[-71.414592418,41.697145486],[-71.414612516,41.697151515],[-71.414633723,41.69715877],[-71.414650747,41.697164245],[-71.414700776,41.697199855],[-71.414714515,41.697209515],[-71.414714903,41.69720991],[-71.414715009,41.697209985],[-71.414729439,41.697224706],[-71.414770515,41.697266515],[-71.414770734,41.697266831],[-71.414770804,41.697266902],[-71.414776727,41.697275472],[-71.414813515,41.697328515],[-71.414827578,41.697346759],[-71.414850666,41.697376413],[-71.414891552,41.697424194],[-71.414917785,41.69744797],[-71.414947515,41.697474514],[-71.415005206,41.697506565],[-71.415019164,41.697514233],[-71.415068769,41.697509933],[-71.415105515,41.697506515],[-71.41516394,41.697490581],[-71.415193225,41.697482505],[-71.415267153,41.697464493],[-71.415277479,41.69746399],[-71.415362515,41.697459515],[-71.415448516,41.697471515],[-71.415527516,41.697508515],[-71.41552759,41.6975086],[-71.415527774,41.697508685],[-71.415550333,41.697534592],[-71.415576515,41.697564515],[-71.415568515,41.697624515],[-71.415537515,41.697688515],[-71.415512356,41.697746922],[-71.415509695,41.697753166],[-71.41549066,41.697818993],[-71.41549086,41.697841295],[-71.415491515,41.697884515],[-71.415501983,41.697919225],[-71.41551057,41.697947258],[-71.415532668,41.69801252],[-71.415536762,41.698028502],[-71.415549515,41.698076515],[-71.415571515,41.698143515],[-71.415599516,41.698201515],[-71.415635515,41.698260515],[-71.415673904,41.698285193],[-71.415691123,41.698296031],[-71.415715701,41.698306053],[-71.415762516,41.698324515],[-71.415803655,41.698335486],[-71.41583765,41.698344095],[-71.415909587,41.698355491],[-71.415984375,41.698357101],[-71.416063912,41.698344055],[-71.416130402,41.698320388],[-71.416209029,41.69830311],[-71.416277402,41.698297547],[-71.416300516,41.698295515],[-71.416379516,41.698296515],[-71.416460516,41.698306515],[-71.416489371,41.698314043],[-71.416529583,41.69832436],[-71.416588306,41.698360239],[-71.416588459,41.698360481],[-71.416588516,41.698360515],[-71.416592172,41.698366342],[-71.416620768,41.69841149],[-71.416638592,41.698431556],[-71.416666516,41.698462515],[-71.416695251,41.69846365],[-71.416742054,41.698465069],[-71.416812266,41.698442159],[-71.416861961,41.698405198],[-71.416865516,41.698402515],[-71.416865778,41.698402359],[-71.416932516,41.698362515],[-71.416953538,41.698357703],[-71.417015648,41.698343236],[-71.417099807,41.698342085],[-71.417161,41.698343183],[-71.417191516,41.698343515],[-71.417227798,41.698353039],[-71.417271726,41.698364278],[-71.417355815,41.698370124],[-71.417363353,41.69837194],[-71.417366516,41.698372515],[-71.417368537,41.698373188],[-71.417421471,41.698385938],[-71.417432516,41.698388515],[-71.417432708,41.698390309],[-71.417437413,41.698415418],[-71.417441187,41.698435419],[-71.417441516,41.698436515],[-71.417441409,41.698436595],[-71.417441474,41.698436941],[-71.417405736,41.698463519],[-71.417388516,41.698476515],[-71.417319216,41.698472237],[-71.417307625,41.698471606],[-71.417291122,41.698468392],[-71.417223516,41.698455515],[-71.417167191,41.698446346],[-71.417137639,41.698441685],[-71.417104088,41.698442709],[-71.417053516,41.698444515],[-71.417021492,41.698461028],[-71.416989721,41.698477689],[-71.416970765,41.698530182],[-71.416979987,41.698557931],[-71.416989516,41.698585516],[-71.417027167,41.698628077],[-71.417035683,41.6986376],[-71.417078399,41.698688149],[-71.4170783,41.698688258],[-71.417078516,41.698688515],[-71.41705716,41.698711473],[-71.417038919,41.698731503],[-71.416976983,41.698772646],[-71.416903881,41.698812408],[-71.41689523,41.698817513],[-71.416840516,41.698850515],[-71.416780566,41.698871867],[-71.416767979,41.698876481],[-71.416693114,41.698886741],[-71.416625739,41.698909698],[-71.416590766,41.698920133],[-71.416553516,41.698931515],[-71.416521076,41.698954162],[-71.416500409,41.698968729],[-71.416473516,41.699022515],[-71.416452029,41.699067477],[-71.41644533,41.699081543],[-71.416419811,41.699135428],[-71.416370995,41.699176625],[-71.416370669,41.699240384],[-71.416377038,41.699270114],[-71.416383516,41.699299515],[-71.416392516,41.699361516],[-71.416414516,41.699419515],[-71.416436835,41.699448702],[-71.416453614,41.699470463],[-71.416475783,41.699529367],[-71.416514809,41.699578541],[-71.41650809,41.699606528],[-71.416504549,41.699606422]]]]}}"}, +{"type": "precinct", "typeId": 3524, "areaId": 26004, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":343,\"NAME\":\"3524\",\"SHAPE_Length\":0.066352459874265,\"SHAPE_Area\":-0.00018766721181647},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.441013525,41.710453517],[-71.441261525,41.710489517],[-71.441490524,41.710520517],[-71.442070525,41.710603516],[-71.442749525,41.710696516],[-71.443024525,41.710735516],[-71.443901526,41.710856516],[-71.443977526,41.710868517],[-71.444016526,41.710872516],[-71.444938525,41.711001517],[-71.445114525,41.711024517],[-71.445289525,41.711048516],[-71.445610526,41.711081517],[-71.446198526,41.711150516],[-71.446777526,41.711232517],[-71.446838526,41.711244516],[-71.447006526,41.711268517],[-71.447136527,41.711292517],[-71.447189526,41.711300517],[-71.447311527,41.711320517],[-71.447365527,41.711328517],[-71.447411527,41.711336517],[-71.447517526,41.711351517],[-71.447670526,41.711362516],[-71.447716527,41.711356517],[-71.447845526,41.711335517],[-71.447917527,41.711322516],[-71.448341527,41.710163517],[-71.448517527,41.709678517],[-71.448792527,41.708920517],[-71.449341527,41.707404516],[-71.449982527,41.705661516],[-71.450381527,41.704551516],[-71.450581527,41.703994515],[-71.450860527,41.703217515],[-71.450912527,41.703070515],[-71.450942528,41.702989515],[-71.451017528,41.702781515],[-71.451347528,41.701866514],[-71.451494527,41.701458514],[-71.451750527,41.700765515],[-71.452255527,41.699403515],[-71.452263528,41.699371514],[-71.452281528,41.699323514],[-71.452049528,41.699227515],[-71.451736527,41.699121514],[-71.451660528,41.699096514],[-71.451340527,41.699053515],[-71.451134527,41.699053515],[-71.450798527,41.699078514],[-71.450073527,41.699206515],[-71.449593527,41.699279514],[-71.449348526,41.699316514],[-71.449127527,41.699348514],[-71.448769526,41.699405514],[-71.448364526,41.699472514],[-71.448044526,41.699519515],[-71.447952526,41.699535515],[-71.447106526,41.699675515],[-71.447029526,41.699690515],[-71.446480525,41.699778514],[-71.446167525,41.699825515],[-71.446030525,41.699846515],[-71.445282525,41.699961515],[-71.445091526,41.699988515],[-71.444840525,41.700029514],[-71.444321525,41.700108514],[-71.443916525,41.700170514],[-71.443626525,41.700212515],[-71.442924525,41.700317515],[-71.442852524,41.700329515],[-71.442528524,41.700384514],[-71.441398524,41.700557514],[-71.441048524,41.700609515],[-71.440781524,41.700647515],[-71.440430524,41.700695515],[-71.439934524,41.700764515],[-71.439110523,41.700880515],[-71.437683522,41.701104515],[-71.437302523,41.701162515],[-71.436973523,41.701218515],[-71.436074522,41.701373515],[-71.435615523,41.701445515],[-71.435226522,41.701512515],[-71.434540522,41.701626516],[-71.434364522,41.701656515],[-71.433998521,41.701714515],[-71.433884521,41.701734515],[-71.433661522,41.701770515],[-71.433464522,41.701802516],[-71.432892521,41.701899516],[-71.432678521,41.701935516],[-71.432624521,41.701943515],[-71.432258521,41.701998516],[-71.431251521,41.702159515],[-71.43058852,41.702268516],[-71.42994752,41.702362516],[-71.42973352,41.702398515],[-71.42922252,41.702477516],[-71.42833752,41.702613516],[-71.42809352,41.702654516],[-71.42805552,41.702659516],[-71.42737652,41.702772516],[-71.427269519,41.702784515],[-71.42629252,41.702944516],[-71.426003519,41.702991516],[-71.425301519,41.703100516],[-71.424301519,41.703247515],[-71.425529519,41.703856516],[-71.426109519,41.704123516],[-71.426498519,41.704295516],[-71.426712519,41.704394516],[-71.42764652,41.704810516],[-71.42778352,41.704872516],[-71.42850552,41.705198516],[-71.42865052,41.705263516],[-71.42911552,41.705469516],[-71.42963452,41.705701516],[-71.431206521,41.706407516],[-71.431580521,41.706583516],[-71.431720521,41.706648516],[-71.432112521,41.706827516],[-71.432396522,41.706958516],[-71.432747522,41.707121516],[-71.433899522,41.707664516],[-71.434014522,41.707721516],[-71.434357522,41.707871516],[-71.434715523,41.708039517],[-71.434822522,41.708086516],[-71.435272522,41.708333517],[-71.435898523,41.708671516],[-71.436000523,41.708719517],[-71.436028522,41.708732516],[-71.436112523,41.708775516],[-71.436577523,41.708999517],[-71.437057523,41.709219516],[-71.437309523,41.709330517],[-71.437569523,41.709419517],[-71.437820523,41.709531516],[-71.438202524,41.709649516],[-71.438698523,41.709891517],[-71.438805524,41.709947517],[-71.438919524,41.709999516],[-71.439125524,41.710084517],[-71.439224523,41.710114516],[-71.439255524,41.710127517],[-71.439323524,41.710148517],[-71.439438523,41.710177517],[-71.439545524,41.710215517],[-71.439651524,41.710240517],[-71.439766524,41.710264517],[-71.439926524,41.710292516],[-71.439995524,41.710309516],[-71.440269524,41.710344517],[-71.440407524,41.710363517],[-71.441013525,41.710453517]]]]}}"}, +{"type": "precinct", "typeId": 3525, "areaId": 25993, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":332,\"NAME\":\"3525\",\"SHAPE_Length\":0.080542498968933,\"SHAPE_Area\":-0.00023443582800221},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.430123435,41.685867737],[-71.42993252,41.686372513],[-71.42991652,41.686582512],[-71.42989552,41.686869512],[-71.42987852,41.687098513],[-71.429863519,41.687252513],[-71.429826519,41.687761513],[-71.429810519,41.687982512],[-71.42979752,41.688292512],[-71.42977952,41.688730513],[-71.42976352,41.689275513],[-71.42975652,41.689514513],[-71.42974152,41.689974513],[-71.429726519,41.690249513],[-71.42968052,41.691642514],[-71.42962652,41.692570514],[-71.42961952,41.692728514],[-71.42959652,41.693183514],[-71.42964252,41.693633513],[-71.42968052,41.693835514],[-71.42975652,41.694216514],[-71.42980252,41.694525514],[-71.42989452,41.694902514],[-71.42993952,41.695230514],[-71.42998552,41.695395514],[-71.42999352,41.695512514],[-71.42997152,41.695573514],[-71.42997052,41.695576514],[-71.42990152,41.695618514],[-71.42980252,41.695642514],[-71.42924552,41.695668514],[-71.42915352,41.695687514],[-71.42901652,41.695726514],[-71.42907752,41.695838514],[-71.42917652,41.696065514],[-71.42921452,41.696344514],[-71.42903952,41.696356514],[-71.42806252,41.696400515],[-71.42829952,41.696836514],[-71.428383519,41.696992514],[-71.42849752,41.697210514],[-71.42856652,41.697339514],[-71.42874152,41.697642515],[-71.42884852,41.697833515],[-71.42903152,41.698149515],[-71.42911552,41.698309515],[-71.42919152,41.698443515],[-71.42922252,41.698500515],[-71.42944352,41.698924515],[-71.42951252,41.699053515],[-71.429550521,41.699110515],[-71.42961152,41.699226515],[-71.42966552,41.699324515],[-71.42971052,41.699449515],[-71.42975652,41.699547515],[-71.429802521,41.699664515],[-71.429840521,41.699766515],[-71.429901521,41.699936515],[-71.42994852,41.700082515],[-71.43002352,41.700280515],[-71.43006952,41.700437515],[-71.430115521,41.700576515],[-71.430153521,41.700687515],[-71.43023752,41.700996515],[-71.43032152,41.701274516],[-71.43035952,41.701435515],[-71.43038952,41.701529516],[-71.430481521,41.701874515],[-71.43058852,41.702268516],[-71.431251521,41.702159515],[-71.432258521,41.701998516],[-71.432624521,41.701943515],[-71.432678521,41.701935516],[-71.432892521,41.701899516],[-71.433464522,41.701802516],[-71.433661522,41.701770515],[-71.433884521,41.701734515],[-71.433998521,41.701714515],[-71.434364522,41.701656515],[-71.434540522,41.701626516],[-71.435226522,41.701512515],[-71.435615523,41.701445515],[-71.436074522,41.701373515],[-71.436973523,41.701218515],[-71.437302523,41.701162515],[-71.437683522,41.701104515],[-71.439110523,41.700880515],[-71.439934524,41.700764515],[-71.440430524,41.700695515],[-71.440781524,41.700647515],[-71.441048524,41.700609515],[-71.441398524,41.700557514],[-71.442528524,41.700384514],[-71.442852524,41.700329515],[-71.442924525,41.700317515],[-71.443626525,41.700212515],[-71.443916525,41.700170514],[-71.444321525,41.700108514],[-71.444840525,41.700029514],[-71.445091526,41.699988515],[-71.445282525,41.699961515],[-71.446030525,41.699846515],[-71.446167525,41.699825515],[-71.446480525,41.699778514],[-71.447029526,41.699690515],[-71.447106526,41.699675515],[-71.447952526,41.699535515],[-71.448044526,41.699519515],[-71.448364526,41.699472514],[-71.448769526,41.699405514],[-71.449127527,41.699348514],[-71.449348526,41.699316514],[-71.449593527,41.699279514],[-71.450073527,41.699206515],[-71.450798527,41.699078514],[-71.451134527,41.699053515],[-71.451340527,41.699053515],[-71.451660528,41.699096514],[-71.451736527,41.699121514],[-71.452049528,41.699227515],[-71.452281528,41.699323514],[-71.452316527,41.699226514],[-71.452370527,41.699094514],[-71.452629528,41.698381514],[-71.453275503,41.696578582],[-71.453239179,41.696573666],[-71.453228287,41.696572312],[-71.4531507,41.696561052],[-71.453081384,41.696545884],[-71.453039721,41.696521168],[-71.45302173,41.696463759],[-71.452879538,41.696463678],[-71.45288657,41.69657064],[-71.452900769,41.69659738],[-71.452884323,41.696639453],[-71.452809666,41.696667757],[-71.452740254,41.696701552],[-71.45267351,41.696759247],[-71.452632556,41.696807301],[-71.452593433,41.696855424],[-71.45254368,41.69691962],[-71.452487379,41.696965999],[-71.452414847,41.69700926],[-71.452362613,41.697044183],[-71.452260511,41.697131706],[-71.452196457,41.697222516],[-71.452068431,41.697291962],[-71.452096826,41.697350794],[-71.452096779,41.697414965],[-71.452046979,41.697457709],[-71.451869241,41.697452261],[-71.451805222,41.697494999],[-71.451798144,41.697452231],[-71.451812404,41.697398792],[-71.451883536,41.697350705],[-71.451883556,41.697323993],[-71.451826711,41.697281181],[-71.45179832,41.697217021],[-71.451769889,41.697206307],[-71.451656159,41.697174196],[-71.451613453,41.697238326],[-71.451599197,41.697286437],[-71.451542308,41.697302444],[-71.45149254,41.697302423],[-71.451457044,41.697232932],[-71.451421564,41.697142035],[-71.451435804,41.697115307],[-71.451450063,41.697061867],[-71.451471561,41.696837347],[-71.451457386,41.696778521],[-71.451474134,41.696742669],[-71.451486271,41.696346306],[-71.451242176,41.696252393],[-71.451188952,41.696305015],[-71.451123102,41.696348393],[-71.451024147,41.6963489],[-71.450945397,41.696343057],[-71.450867687,41.696333831],[-71.450785679,41.696319114],[-71.450706884,41.69629214],[-71.450640814,41.696264166],[-71.450556109,41.696225503],[-71.450464422,41.696179931],[-71.450398818,41.696141048],[-71.450340415,41.696103014],[-71.450281918,41.696067679],[-71.450221466,41.696035041],[-71.450157414,41.69600231],[-71.450092415,41.695970906],[-71.450027324,41.695940896],[-71.449963054,41.695913585],[-71.449896766,41.695891716],[-71.449829595,41.695869115],[-71.449758636,41.695849851],[-71.449682633,41.695844055],[-71.449597799,41.6958544],[-71.449512498,41.69587634],[-71.449426033,41.695905026],[-71.449351898,41.69592896],[-71.449343291,41.695931746],[-71.44926623,41.695951791],[-71.449185943,41.695962207],[-71.449101389,41.695965097],[-71.449026968,41.695964812],[-71.448948729,41.695969169],[-71.448839393,41.69597964],[-71.448754279,41.695996799],[-71.448662724,41.696016518],[-71.448564978,41.696032025],[-71.448464517,41.696047485],[-71.44837214,41.696065145],[-71.448278337,41.696072558],[-71.448184148,41.69606705],[-71.44809286,41.696058204],[-71.448011488,41.696050254],[-71.447938294,41.696041828],[-71.447833816,41.696043587],[-71.447732209,41.696042649],[-71.447629717,41.696040361],[-71.447549897,41.696038587],[-71.44746556,41.696036696],[-71.447379518,41.696032037],[-71.447293506,41.696026715],[-71.447211032,41.696023544],[-71.44713838,41.696023922],[-71.447056635,41.696024822],[-71.446963392,41.69601865],[-71.446919609,41.69597822],[-71.446921976,41.695919082],[-71.446922132,41.695914988],[-71.446871429,41.695866253],[-71.44680221,41.695849047],[-71.446715594,41.695836245],[-71.446641828,41.695818922],[-71.446551968,41.695818949],[-71.446451837,41.6958031],[-71.446372535,41.695765946],[-71.446341413,41.695727191],[-71.44642996,41.695691739],[-71.446494859,41.695657809],[-71.44649552,41.695595902],[-71.446457574,41.695545389],[-71.446411637,41.695490619],[-71.446366584,41.695436558],[-71.446335326,41.695378685],[-71.446331535,41.695313963],[-71.446339396,41.695253592],[-71.446352502,41.695198117],[-71.446362027,41.69511872],[-71.446372343,41.695042067],[-71.446362392,41.694972449],[-71.446326152,41.694925367],[-71.44626873,41.694886005],[-71.446203423,41.694861413],[-71.446123841,41.694831737],[-71.446079841,41.694796727],[-71.446056885,41.694735655],[-71.445991151,41.694675684],[-71.445940263,41.694631706],[-71.445877242,41.694573794],[-71.445851533,41.694558277],[-71.445783188,41.694519321],[-71.445729865,41.694468481],[-71.445699399,41.694412688],[-71.445678401,41.69434757],[-71.445676784,41.694274067],[-71.445682461,41.694200043],[-71.445695816,41.694138416],[-71.445707975,41.694083582],[-71.445712643,41.694011569],[-71.445697293,41.693941833],[-71.445681403,41.693861875],[-71.445671807,41.69380655],[-71.445654721,41.693734047],[-71.445635273,41.693675812],[-71.445634595,41.693647203],[-71.44561833,41.693577421],[-71.445605541,41.693510477],[-71.445589526,41.693433926],[-71.445568808,41.693361329],[-71.445548507,41.693301723],[-71.445515202,41.693249245],[-71.445465262,41.69320394],[-71.445402256,41.693167823],[-71.44534184,41.693135183],[-71.445288904,41.693096554],[-71.445221912,41.693046782],[-71.445148107,41.693008372],[-71.445083114,41.692976324],[-71.445072346,41.692973369],[-71.445008767,41.692929064],[-71.444942224,41.69289084],[-71.444870479,41.692868828],[-71.444841994,41.692854567],[-71.444784398,41.692842396],[-71.444631565,41.692843786],[-71.444595917,41.692856507],[-71.444567504,41.69286404],[-71.444525212,41.692867908],[-71.444442211,41.692843603],[-71.444365708,41.692820743],[-71.444279866,41.692799936],[-71.444210803,41.692782728],[-71.444132373,41.692766178],[-71.444057628,41.692755919],[-71.44398099,41.692748472],[-71.443904354,41.692738967],[-71.443812803,41.692723028],[-71.443740897,41.692711375],[-71.443660573,41.692696906],[-71.443580248,41.692683854],[-71.443509292,41.692668039],[-71.443427207,41.692643734],[-71.443355407,41.6926174],[-71.443289283,41.692588986],[-71.443215622,41.69256121],[-71.443144765,41.692538351],[-71.443071103,41.692511306],[-71.442993721,41.692482841],[-71.442928513,41.692455114],[-71.442863337,41.692424597],[-71.442800056,41.692390582],[-71.44274151,41.69235028],[-71.4426877,41.692302983],[-71.442629153,41.692263413],[-71.442571486,41.692230818],[-71.442507325,41.6921912],[-71.442439379,41.692155078],[-71.442373292,41.692119643],[-71.442315627,41.692084922],[-71.442248692,41.692043175],[-71.442188323,41.691995874],[-71.442136335,41.691957702],[-71.442080564,41.691920237],[-71.442029524,41.691880693],[-71.441971991,41.691834765],[-71.441913348,41.691801484],[-71.441849154,41.691766759],[-71.441789697,41.691722957],[-71.441731251,41.691674971],[-71.441676561,41.691623442],[-71.441630326,41.691567777],[-71.441583143,41.691514948],[-71.441543469,41.691458601],[-71.441528112,41.691402427],[-71.441503385,41.691349701],[-71.441457083,41.691301057],[-71.441403305,41.69125305],[-71.441350509,41.691200172],[-71.441316485,41.691138294],[-71.441290911,41.691077106],[-71.441277549,41.691008354],[-71.44127352,41.690943083],[-71.441268578,41.690875045],[-71.441271108,41.690810532],[-71.441288589,41.690745409],[-71.441299475,41.690685178],[-71.441272955,41.690625407],[-71.441270686,41.690570016],[-71.44128722,41.690505579],[-71.441346536,41.690468036],[-71.441410518,41.690432667],[-71.441456779,41.690390817],[-71.441503174,41.690335703],[-71.441554237,41.690281254],[-71.441610848,41.690231817],[-71.441661774,41.690192805],[-71.441722004,41.690155993],[-71.441789739,41.690119185],[-71.441857475,41.690081691],[-71.441925212,41.690042802],[-71.441996703,41.69000252],[-71.442058925,41.689955875],[-71.442109987,41.689900763],[-71.442151713,41.689846309],[-71.442192495,41.689789043],[-71.442235203,41.689727569],[-71.442274156,41.689668174],[-71.442312095,41.689617881],[-71.44235653,41.689569763],[-71.442400964,41.689522309],[-71.442439817,41.689472748],[-71.442485363,41.689409881],[-71.442523304,41.689356843],[-71.442555629,41.689305083],[-71.442585116,41.689254077],[-71.442616528,41.689200281],[-71.442647938,41.689148544],[-71.44267465,41.689096095],[-71.442696695,41.689042912],[-71.442716948,41.688980604],[-71.442753973,41.68892752],[-71.442808621,41.688886451],[-71.442864313,41.688839071],[-71.442927314,41.688805759],[-71.4429894,41.688772446],[-71.44305798,41.6887441],[-71.443135761,41.688730485],[-71.443183279,41.688748301],[-71.443230526,41.688796944],[-71.443303172,41.688828197],[-71.44338163,41.688843352],[-71.443449642,41.68887108],[-71.443522289,41.688901646],[-71.443586546,41.688932849],[-71.443664838,41.688962754],[-71.443746951,41.688984246],[-71.443826292,41.689001528],[-71.443910465,41.689005525],[-71.443993925,41.688987042],[-71.444046744,41.688943845],[-71.444067876,41.688886453],[-71.444072263,41.68882265],[-71.444068298,41.688751114],[-71.444054798,41.688697753],[-71.444042279,41.688639453],[-71.44402878,41.688583989],[-71.444012508,41.688525687],[-71.443996236,41.688468095],[-71.443976209,41.688412604],[-71.443947761,41.68835775],[-71.44390704,41.688311946],[-71.44385695,41.688269568],[-71.443799354,41.688227872],[-71.443743584,41.688191094],[-71.443687816,41.688153607],[-71.443629273,41.688113351],[-71.443573568,41.688072342],[-71.443517799,41.688035587],[-71.443454525,41.687998759],[-71.443394121,41.687959143],[-71.443340213,41.687922388],[-71.44328255,41.687888399],[-71.443223026,41.687854386],[-71.44314957,41.687808405],[-71.4430985,41.687770257],[-71.443036308,41.687718016],[-71.442967551,41.687672037],[-71.442906132,41.687642277],[-71.442839069,41.687611713],[-71.442772008,41.687580509],[-71.442698417,41.687549942],[-71.442626719,41.687517295],[-71.442556851,41.687485334],[-71.442480453,41.687454766],[-71.442409671,41.687422096],[-71.44233422,41.687390819],[-71.442258738,41.687359564],[-71.442186096,41.68732687],[-71.442111594,41.687291386],[-71.442053053,41.687251815],[-71.441995458,41.687211513],[-71.441943509,41.687168447],[-71.44188399,41.687130935],[-71.441811179,41.687115804],[-71.441751909,41.687106398],[-71.441729,41.68710275],[-71.441649532,41.687094568],[-71.441564482,41.687085674],[-71.441489709,41.687081063],[-71.441412165,41.687070823],[-71.44133459,41.687061247],[-71.441264652,41.687039829],[-71.441186331,41.687012048],[-71.44112025,41.686977299],[-71.441053222,41.686944699],[-71.440984234,41.686919759],[-71.440901141,41.686905949],[-71.440806689,41.68690263],[-71.440721406,41.686915462],[-71.440638892,41.686934652],[-71.440568521,41.686954603],[-71.440500008,41.686977346],[-71.440498082,41.68698153],[-71.440312894,41.686981228],[-71.440056592,41.686979105],[-71.439947159,41.686977698],[-71.4398434,41.686976409],[-71.439754438,41.686975311],[-71.439678617,41.686982566],[-71.439604694,41.686982161],[-71.439532697,41.686978968],[-71.439449439,41.686978489],[-71.439368041,41.686978744],[-71.439285864,41.686964933],[-71.439200812,41.686957456],[-71.43912317,41.686954899],[-71.439041805,41.686953049],[-71.438965074,41.686954724],[-71.438877996,41.686961264],[-71.43879369,41.68697199],[-71.43872372,41.686954069],[-71.438635896,41.686943754],[-71.438551657,41.686947528],[-71.43846272,41.686951917],[-71.438372901,41.686953516],[-71.438284063,41.686950221],[-71.438198946,41.686947636],[-71.438126882,41.686950022],[-71.438038889,41.686956561],[-71.437965742,41.686974336],[-71.437893342,41.687009013],[-71.437818333,41.687028205],[-71.437730442,41.687023538],[-71.437640591,41.687026508],[-71.437565652,41.687036621],[-71.437476541,41.687062758],[-71.437406133,41.687087602],[-71.437322676,41.68710329],[-71.437275906,41.687104042],[-71.437225382,41.687104838],[-71.437167844,41.687103983],[-71.437152437,41.687103746],[-71.437054332,41.68709196],[-71.436981455,41.687083116],[-71.436890826,41.687070694],[-71.43681697,41.687064684],[-71.436724343,41.687066966],[-71.436645718,41.687071405],[-71.436552112,41.68707579],[-71.43647538,41.687078881],[-71.436383667,41.687081872],[-71.436286344,41.687082046],[-71.436194698,41.687080097],[-71.436098386,41.687076042],[-71.436011475,41.687067143],[-71.435920066,41.687040678],[-71.435851047,41.687018548],[-71.43576238,41.686996315],[-71.43568947,41.686990992],[-71.435600563,41.686995402],[-71.435522884,41.6869992],[-71.435432053,41.687005667],[-71.435359073,41.687008096],[-71.435271118,41.687006903],[-71.435181398,41.687000746],[-71.435091615,41.686996762],[-71.435008423,41.686991363],[-71.434920599,41.686980359],[-71.434835585,41.686967253],[-71.434763588,41.686963324],[-71.434685945,41.686961496],[-71.434598086,41.686956095],[-71.434521387,41.686955663],[-71.43449228,41.686957087],[-71.434314213,41.686975486],[-71.434204686,41.686975424],[-71.434040453,41.686950631],[-71.433974843,41.686876474],[-71.433931126,41.686785887],[-71.433679377,41.686658086],[-71.433389316,41.686526168],[-71.433109397,41.686440932],[-71.432970219,41.686409978],[-71.432910371,41.686401001],[-71.432831948,41.686387188],[-71.432750687,41.686374105],[-71.432676901,41.686361095],[-71.432594692,41.686350069],[-71.432524692,41.686334248],[-71.432458481,41.686312187],[-71.432386758,41.686280859],[-71.432320748,41.68624192],[-71.432245336,41.686208532],[-71.432166951,41.686187766],[-71.432096005,41.686171922],[-71.432006355,41.686158788],[-71.431923202,41.686147098],[-71.431841974,41.686131933],[-71.43176822,41.686117482],[-71.431678574,41.686100826],[-71.431607628,41.686085712],[-71.43153675,41.686062893],[-71.43145938,41.686035769],[-71.431393237,41.686007372],[-71.431328074,41.685976162],[-71.431257265,41.685946985],[-71.43116674,41.685924724],[-71.431086425,41.685913036],[-71.431014498,41.685902153],[-71.430936011,41.68589186],[-71.430857523,41.685883008],[-71.430783703,41.685874159],[-71.430706129,41.685866017],[-71.430620135,41.685858509],[-71.430546313,41.685851101],[-71.430454703,41.685844939],[-71.430361135,41.685844425],[-71.430276827,41.68585725],[-71.4301981,41.685872227],[-71.430124244,41.685868317],[-71.430123435,41.685867737]]]]}}"}, +{"type": "precinct", "typeId": 3526, "areaId": 25994, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":333,\"NAME\":\"3526\",\"SHAPE_Length\":0.095532491514493,\"SHAPE_Area\":-7.916222054103e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.45267528,41.688424036],[-71.452675527,41.688424512],[-71.452828527,41.688381512],[-71.452877527,41.688367512],[-71.452965527,41.688535512],[-71.453163528,41.688909512],[-71.453346527,41.689288512],[-71.453537528,41.689730513],[-71.453596527,41.689879512],[-71.453713527,41.690176513],[-71.453865528,41.690619512],[-71.453899528,41.690757513],[-71.453979528,41.691076513],[-71.454079528,41.691528512],[-71.454140528,41.691986513],[-71.454140528,41.692085513],[-71.454147528,41.692133512],[-71.454216528,41.692133512],[-71.454361528,41.692121513],[-71.454437528,41.692111512],[-71.454498528,41.692105513],[-71.454590528,41.692094512],[-71.454674528,41.692074512],[-71.454750528,41.692059513],[-71.454819528,41.692030513],[-71.454903528,41.691979512],[-71.454956528,41.691910513],[-71.455009528,41.691846513],[-71.455063528,41.691777513],[-71.455124528,41.691718513],[-71.455193528,41.691667512],[-71.455269528,41.691620513],[-71.455345528,41.691578513],[-71.455421528,41.691545513],[-71.455505529,41.691516513],[-71.455589528,41.691496513],[-71.455596528,41.691495512],[-71.455681529,41.691481513],[-71.455772528,41.691474512],[-71.456009529,41.691469512],[-71.456314528,41.691472512],[-71.456273528,41.690938513],[-71.456262529,41.690800513],[-71.456261529,41.690779513],[-71.456230528,41.690640512],[-71.456154528,41.690313513],[-71.456062528,41.690004513],[-71.455956528,41.689615512],[-71.455879528,41.689360513],[-71.455704528,41.688643512],[-71.455689528,41.688567512],[-71.455444528,41.688045512],[-71.455360528,41.687862512],[-71.454979528,41.687321512],[-71.454819528,41.687113512],[-71.454452528,41.686639512],[-71.454147527,41.686173512],[-71.454018528,41.685977511],[-71.453865528,41.685832511],[-71.453590527,41.685545511],[-71.452591527,41.684553511],[-71.452568527,41.684531511],[-71.452377527,41.684328512],[-71.452293526,41.684240511],[-71.452240527,41.684187511],[-71.451660527,41.683573511],[-71.451080527,41.682829511],[-71.451034526,41.682772511],[-71.450691526,41.682194511],[-71.450403526,41.681675511],[-71.450256526,41.681410511],[-71.449974526,41.68072351],[-71.449743526,41.68019751],[-71.449692526,41.68008051],[-71.449417526,41.67948351],[-71.449387525,41.67941651],[-71.449364526,41.67936751],[-71.449210525,41.67902751],[-71.449074525,41.67872551],[-71.449005525,41.67854251],[-71.448822525,41.67800551],[-71.448570525,41.67709251],[-71.448555525,41.67698451],[-71.448525526,41.676686509],[-71.448506525,41.67648751],[-71.448494525,41.67636851],[-71.448425525,41.67573951],[-71.448357525,41.675088509],[-71.448349525,41.675030509],[-71.448342525,41.674958509],[-71.448273524,41.674410509],[-71.448204525,41.673862509],[-71.448128525,41.67319251],[-71.448097524,41.672770509],[-71.448074525,41.672451509],[-71.448074525,41.672424509],[-71.448090525,41.672153509],[-71.448105525,41.671792509],[-71.448163525,41.671350509],[-71.448187525,41.671168508],[-71.448265525,41.670555509],[-71.448280525,41.670478509],[-71.448364525,41.670143509],[-71.448471524,41.669803508],[-71.448639525,41.669349509],[-71.448830525,41.668913508],[-71.448891525,41.668772508],[-71.449036525,41.668427508],[-71.449150524,41.668159508],[-71.449371525,41.667681508],[-71.449471525,41.667485508],[-71.449486525,41.667454508],[-71.449768525,41.666858508],[-71.449776525,41.666821508],[-71.449982525,41.666200508],[-71.450119525,41.665697508],[-71.450172525,41.665471508],[-71.450188525,41.665246508],[-71.450188525,41.665183507],[-71.450188525,41.665061508],[-71.450127525,41.664004508],[-71.450127525,41.663972507],[-71.449142525,41.663993507],[-71.448311524,41.664034507],[-71.447441524,41.664057507],[-71.447410524,41.664057507],[-71.446808524,41.664088507],[-71.446472524,41.664100508],[-71.446355524,41.664097508],[-71.446304523,41.664096507],[-71.446167523,41.664093507],[-71.445778523,41.664074507],[-71.445572523,41.664074507],[-71.445244524,41.664031507],[-71.444969523,41.664037507],[-71.444967296,41.664037499],[-71.44496969,41.664037975],[-71.444976493,41.664090246],[-71.444978117,41.664152497],[-71.444972242,41.664175707],[-71.444913561,41.66417936],[-71.444902781,41.664195615],[-71.444902812,41.664266282],[-71.444897499,41.664346162],[-71.444897057,41.664434345],[-71.444902645,41.664677083],[-71.444978014,41.664703213],[-71.445140181,41.664730185],[-71.445141807,41.664790332],[-71.445113898,41.664794252],[-71.445055482,41.664807717],[-71.445056487,41.664845498],[-71.445058232,41.66490983],[-71.445056255,41.664975647],[-71.445031744,41.665035507],[-71.445007942,41.665087638],[-71.444945154,41.665113107],[-71.445433073,41.666009817],[-71.445586233,41.66594382],[-71.445600321,41.665982796],[-71.445526547,41.666015418],[-71.445570496,41.666087523],[-71.445965123,41.666777814],[-71.446040131,41.667277017],[-71.446140843,41.667274114],[-71.446332255,41.667276811],[-71.446370208,41.667299195],[-71.446377767,41.667341941],[-71.446424092,41.667603633],[-71.446433105,41.667695824],[-71.446442471,41.667766357],[-71.446559473,41.668682007],[-71.446568572,41.668743461],[-71.446575633,41.668797916],[-71.446589135,41.668883088],[-71.44671875,41.669711039],[-71.446730833,41.669778738],[-71.446744748,41.66984502],[-71.446759874,41.669921044],[-71.44676794,41.669979044],[-71.446774442,41.670046809],[-71.446782036,41.670120886],[-71.446792495,41.670198372],[-71.446801036,41.670271741],[-71.446804702,41.670338841],[-71.446808161,41.67039828],[-71.446810585,41.670454219],[-71.446810856,41.670533302],[-71.446804391,41.670605497],[-71.44680534,41.670675432],[-71.446796867,41.67074136],[-71.446795778,41.670805028],[-71.446797375,41.670865175],[-71.44681005,41.6709189],[-71.446829606,41.670987174],[-71.446850609,41.671040035],[-71.446873503,41.671092165],[-71.446930479,41.671129102],[-71.447002046,41.671152507],[-71.447018916,41.671224325],[-71.446999777,41.671242108],[-71.446977419,41.671242441],[-71.446938375,41.671282924],[-71.446891916,41.671325623],[-71.446840969,41.67137534],[-71.446788339,41.671430019],[-71.44674073,41.671500023],[-71.446709395,41.671548788],[-71.446673541,41.67160391],[-71.446637687,41.671659031],[-71.446599824,41.67170928],[-71.446557383,41.671761745],[-71.446513051,41.671814187],[-71.446468661,41.671863838],[-71.446412634,41.671931848],[-71.446363046,41.671996271],[-71.446310681,41.672062156],[-71.446257901,41.672113358],[-71.446201282,41.672159665],[-71.446134651,41.672214566],[-71.446057621,41.672266145],[-71.445977668,41.672312807],[-71.445897715,41.672358096],[-71.445824052,41.672395613],[-71.445755972,41.672432355],[-71.445683254,41.672469803],[-71.44560578,41.672505282],[-71.445535572,41.672532235],[-71.445461851,41.672566938],[-71.445403044,41.67260142],[-71.445356762,41.672650384],[-71.445301972,41.672695982],[-71.445234837,41.672732015],[-71.445175941,41.67276437],[-71.445094864,41.672803392],[-71.445024744,41.672833843],[-71.444959204,41.67286002],[-71.444774644,41.672957812],[-71.444709834,41.67298479],[-71.444638498,41.673011055],[-71.444559589,41.673046396],[-71.444485481,41.673067697],[-71.444421583,41.673098197],[-71.444343588,41.673134933],[-71.444278744,41.673165432],[-71.444204601,41.673192359],[-71.444130492,41.673213706],[-71.444032887,41.673247505],[-71.443959724,41.673268143],[-71.443852955,41.673280875],[-71.443750138,41.673274009],[-71.443681128,41.673254697],[-71.443603668,41.673237438],[-71.443523467,41.67321453],[-71.44344702,41.673188855],[-71.44336861,41.673175827],[-71.443281619,41.673175327],[-71.443194625,41.673176244],[-71.443088054,41.67317283],[-71.443003969,41.673161834],[-71.442926541,41.673142494],[-71.442831332,41.673121613],[-71.442759451,41.673106483],[-71.442677324,41.673089885],[-71.442589553,41.673073284],[-71.44250844,41.67304827],[-71.442434834,41.673018411],[-71.442356494,41.672996235],[-71.44227261,41.672965639],[-71.442189837,41.672920294],[-71.442108961,41.672869346],[-71.442038397,41.672815636],[-71.441964044,41.672768945],[-71.44188408,41.67272152],[-71.441820954,41.672672776],[-71.441770065,41.672617818],[-71.441720969,41.672571232],[-71.441669611,41.672562538],[-71.441589046,41.672574023],[-71.441534444,41.672610861],[-71.44147599,41.672658216],[-71.441416689,41.672697841],[-71.441360093,41.672747347],[-71.441305326,41.67279889],[-71.441254311,41.672849107],[-71.441235958,41.672906523],[-71.441235384,41.672966829],[-71.441235663,41.673029925],[-71.441243479,41.673088177],[-71.441242841,41.673152714],[-71.441226278,41.673219918],[-71.441212489,41.673289274],[-71.441210837,41.673361494],[-71.441203573,41.673433689],[-71.441191609,41.673507962],[-71.441185225,41.673585074],[-71.441183538,41.673662189],[-71.441182835,41.673731619],[-71.441183242,41.673786323],[-71.441188185,41.673851549],[-71.441194986,41.67392032],[-71.44120544,41.6739968],[-71.441202841,41.674070461],[-71.441208862,41.674124458],[-71.441224215,41.674180679],[-71.441244234,41.674236879],[-71.441261383,41.674297262],[-71.441292659,41.674352851],[-71.441332322,41.674409152],[-71.441375807,41.6744564],[-71.441458647,41.67449612],[-71.441559471,41.674516342],[-71.44166699,41.674520422],[-71.441769843,41.674523104],[-71.44187178,41.674526494],[-71.441979234,41.67453549],[-71.442073835,41.674522731],[-71.442162822,41.674510587],[-71.4422464,41.674476668],[-71.44230384,41.674439123],[-71.442354722,41.674400865],[-71.442423556,41.674344435],[-71.442494215,41.674293632],[-71.442569441,41.674252665],[-71.442639898,41.674222925],[-71.442723344,41.674199548],[-71.442822712,41.674175539],[-71.442920317,41.674145217],[-71.443011266,41.67412189],[-71.443085345,41.67410059],[-71.443171659,41.674075796],[-71.443259969,41.674035636],[-71.443324814,41.674005114],[-71.443407643,41.673953699],[-71.44346133,41.673916129],[-71.443521578,41.673875085],[-71.443589362,41.673831987],[-71.443662794,41.673782602],[-71.443740956,41.673730453],[-71.443820912,41.673684593],[-71.443901747,41.673646487],[-71.443987149,41.673616135],[-71.444070659,41.673587841],[-71.44415694,41.673563801],[-71.444244064,41.673553027],[-71.444345057,41.673553601],[-71.444417107,41.673549817],[-71.444488308,41.673540361],[-71.444564991,41.673540101],[-71.444636907,41.673550312],[-71.444715246,41.673576009],[-71.444803945,41.673613237],[-71.444860681,41.673647134],[-71.444914891,41.673675586],[-71.444996369,41.673703274],[-71.445068758,41.673731392],[-71.445156676,41.673756499],[-71.445240516,41.67376994],[-71.445301275,41.673771319],[-71.445375671,41.673770965],[-71.445428931,41.673731976],[-71.445482501,41.673686926],[-71.445568367,41.673648706],[-71.445646255,41.673630036],[-71.445735867,41.673635452],[-71.445813561,41.673666431],[-71.445892283,41.673672277],[-71.445971515,41.673688369],[-71.446047877,41.673707752],[-71.446129002,41.673721146],[-71.446201112,41.673756078],[-71.446219795,41.673810927],[-71.446222638,41.673876312],[-71.446218857,41.673948348],[-71.446193024,41.673981794],[-71.446110527,41.674002383],[-71.446022185,41.674010598],[-71.445933208,41.674012042],[-71.445834132,41.674015906],[-71.445750428,41.674021516],[-71.445702629,41.674059913],[-71.445643118,41.674095996],[-71.445575141,41.674116935],[-71.445502545,41.674116672],[-71.44542168,41.674118943],[-71.44534221,41.674132124],[-71.445272214,41.674158459],[-71.44521002,41.674193099],[-71.44516532,41.674245837],[-71.445160288,41.674280459],[-71.445140187,41.674351413],[-71.445129612,41.6744124],[-71.445112891,41.674490262],[-71.445058311,41.674539405],[-71.444978131,41.674524661],[-71.444897753,41.674492263],[-71.444814306,41.674446873],[-71.444746856,41.674385482],[-71.444693071,41.67432371],[-71.444648159,41.674266263],[-71.444590621,41.674207118],[-71.444521424,41.674190596],[-71.444498866,41.674209818],[-71.444496559,41.674268271],[-71.444488511,41.674333445],[-71.444506589,41.674380793],[-71.444539748,41.674413489],[-71.444599772,41.674455643],[-71.44465733,41.674491644],[-71.444729159,41.674534056],[-71.444809891,41.674580107],[-71.44488324,41.674628671],[-71.444957315,41.674683433],[-71.445032214,41.674738149],[-71.445092374,41.674800039],[-71.445144329,41.674862452],[-71.445198052,41.67492626],[-71.445232448,41.674974622],[-71.44526666,41.675026414],[-71.445298977,41.675080881],[-71.445329527,41.675133952],[-71.44535654,41.675184918],[-71.445383908,41.675249468],[-71.445400853,41.675302922],[-71.445418215,41.675367947],[-71.445437315,41.675435032],[-71.445445346,41.675461084],[-71.445457372,41.675523934],[-71.44545829,41.675591994],[-71.445471108,41.675657589],[-71.445495979,41.675716649],[-71.445525271,41.675778547],[-71.445554501,41.675841817],[-71.445595318,41.675910742],[-71.44564822,41.675972468],[-71.445704939,41.676029531],[-71.445753577,41.676083685],[-71.445807925,41.676131874],[-71.445865497,41.676190286],[-71.445922882,41.676253478],[-71.445976639,41.676315914],[-71.44602976,41.67637222],[-71.446075018,41.676420175],[-71.446124447,41.676477737],[-71.446181634,41.676522565],[-71.446219632,41.676571043],[-71.446242612,41.676632069],[-71.446275784,41.676687954],[-71.446326066,41.676746889],[-71.44637821,41.67680523],[-71.446420442,41.676861279],[-71.446461883,41.676914561],[-71.446502347,41.676969214],[-71.446541927,41.677023204],[-71.446587093,41.677073858],[-71.446634879,41.677127303],[-71.446672721,41.677179874],[-71.446723441,41.677227946],[-71.446773462,41.67727126],[-71.446813709,41.677331334],[-71.446865947,41.67738693],[-71.44692298,41.677435828],[-71.446975593,41.677481911],[-71.447033915,41.677521319],[-71.447103189,41.677559611],[-71.447159806,41.677596274],[-71.4472306,41.677641359],[-71.44729998,41.67769941],[-71.447359604,41.677751739],[-71.44741642,41.677806102],[-71.447466891,41.677860303],[-71.447531696,41.677918878],[-71.447573326,41.677967448],[-71.447610131,41.678022694],[-71.447649681,41.67807801],[-71.447686454,41.678134605],[-71.447727847,41.678211739],[-71.447750256,41.678263937],[-71.44777358,41.678316844],[-71.447813236,41.678391897],[-71.447846473,41.678446386],[-71.447876715,41.678506958],[-71.447903545,41.678562657],[-71.447917654,41.678618738],[-71.447934167,41.678682391],[-71.447954278,41.678747486],[-71.447973568,41.678809791],[-71.447985952,41.678886294],[-71.447997316,41.678942329],[-71.448009594,41.678999073],[-71.448016537,41.679052956],[-71.448036338,41.679124843],[-71.44805828,41.679189276],[-71.448077507,41.679253638],[-71.448100676,41.679309976],[-71.448118709,41.67938113],[-71.448200004,41.679687043],[-71.448210576,41.67974102],[-71.448222762,41.679799136],[-71.448235365,41.679870173],[-71.448235246,41.67994228],[-71.448238466,41.679998128],[-71.448242445,41.680057407],[-71.448241087,41.680114534],[-71.448238784,41.680172301],[-71.448236604,41.680227392],[-71.44823351,41.680281728],[-71.448224904,41.680361812],[-71.448218211,41.6804161],[-71.448212277,41.68047382],[-71.448205304,41.680533528],[-71.448192806,41.680597854],[-71.448177563,41.680662178],[-71.448163174,41.680725771],[-71.448150103,41.680781978],[-71.448131741,41.680855014],[-71.448115769,41.680913849],[-71.448104468,41.680969394],[-71.448060494,41.681025564],[-71.448008593,41.681077133],[-71.447844973,41.681135307],[-71.447488647,41.681230395],[-71.447433682,41.681260054],[-71.447381301,41.681300097],[-71.447313192,41.681360418],[-71.447241379,41.681437843],[-71.44690367,41.681890613],[-71.446915348,41.681897731],[-71.446924286,41.681897941],[-71.446967325,41.681867979],[-71.447190586,41.681587865],[-71.44737937,41.681348168],[-71.447425522,41.681314845],[-71.447465415,41.681288267],[-71.447588893,41.681263556],[-71.447974649,41.681179412],[-71.448070971,41.681160931],[-71.448118463,41.681168911],[-71.448147937,41.681200278],[-71.448174706,41.681257372],[-71.448174992,41.681318616],[-71.448220454,41.681384912],[-71.448264845,41.681455323],[-71.448291864,41.681505579],[-71.448322742,41.681573629],[-71.448343322,41.681626466],[-71.448347239,41.68168778],[-71.448325981,41.681719994],[-71.448329679,41.681787414],[-71.448348149,41.681847683],[-71.448364694,41.681910672],[-71.448379657,41.681968149],[-71.448391657,41.682030999],[-71.44840091,41.682095152],[-71.448410954,41.682162049],[-71.44842314,41.682220828],[-71.448439112,41.682275607],[-71.448443888,41.682292761],[-71.448500136,41.682338205],[-71.448554678,41.682381612],[-71.448610957,41.682427101],[-71.448660953,41.682471101],[-71.448716765,41.682528116],[-71.448755466,41.682581373],[-71.448774122,41.682637594],[-71.448818036,41.682696388],[-71.448857776,41.68274761],[-71.44889294,41.682798738],[-71.44889498,41.682803519],[-71.448907891,41.682833757],[-71.448940266,41.682863753],[-71.448947023,41.682922416],[-71.448900313,41.682965389],[-71.448896222,41.682969115],[-71.44890998,41.683009348],[-71.448926837,41.683064151],[-71.448965171,41.683080656],[-71.44903343,41.683099874],[-71.449113466,41.683118662],[-71.44918621,41.68313731],[-71.449261003,41.683150539],[-71.449297368,41.683148634],[-71.449332805,41.683124934],[-71.449362048,41.683103312],[-71.449390802,41.683081988],[-71.449469555,41.683063384],[-71.44951698,41.68308074],[-71.449565022,41.683127414],[-71.449597921,41.683190068],[-71.449628833,41.683257408],[-71.449654022,41.683308326],[-71.449678296,41.68336057],[-71.449703374,41.683437353],[-71.449718663,41.683509101],[-71.44973572,41.68358229],[-71.449768153,41.683656492],[-71.449782296,41.683711224],[-71.4497882,41.683768514],[-71.449793065,41.683828502],[-71.44980775,41.683893457],[-71.449825754,41.683965274],[-71.449834698,41.684036905],[-71.449836537,41.684104964],[-71.449841308,41.684167674],[-71.449843458,41.684227592],[-71.449842992,41.68423937],[-71.449841156,41.684285359],[-71.449839538,41.684326271],[-71.449838356,41.684356047],[-71.449835866,41.684418593],[-71.449829591,41.684485117],[-71.44982732,41.68454222],[-71.449853039,41.684579531],[-71.449886063,41.684639463],[-71.449923913,41.68469201],[-71.449929898,41.684724121],[-71.449849811,41.68472914],[-71.449785037,41.684737894],[-71.449778561,41.684786763],[-71.449694689,41.684795736],[-71.449605447,41.684803953],[-71.449360711,41.684808054],[-71.449239442,41.684810058],[-71.449159386,41.684814391],[-71.449058587,41.684816222],[-71.448961574,41.684814052],[-71.448887198,41.684812418],[-71.448801961,41.684810482],[-71.448709494,41.684808428],[-71.448616081,41.684806328],[-71.448515438,41.684804088],[-71.448412964,41.684801778],[-71.448307775,41.684799443],[-71.448203502,41.684797109],[-71.448109204,41.684794986],[-71.448020305,41.684794374],[-71.447926861,41.684793646],[-71.447824356,41.684792044],[-71.447718252,41.684790326],[-71.447622124,41.684788179],[-71.447543139,41.684789149],[-71.447466651,41.684795586],[-71.447392941,41.684800057],[-71.447292235,41.684799165],[-71.447204389,41.684817626],[-71.44713688,41.684848743],[-71.447080461,41.684898503],[-71.447052805,41.684955046],[-71.447062345,41.684966142],[-71.447130427,41.684942504],[-71.447214163,41.684914413],[-71.447285627,41.684896997],[-71.44736767,41.684887955],[-71.447457639,41.684885206],[-71.447556483,41.684886738],[-71.44829557,41.684878085],[-71.449267372,41.684905961],[-71.44919686,41.685538425],[-71.449360129,41.685550732],[-71.449402258,41.685553906],[-71.449395939,41.685598681],[-71.449360092,41.685597636],[-71.449189251,41.68559269],[-71.449176088,41.68564956],[-71.449129658,41.686497576],[-71.449359381,41.686504493],[-71.449475952,41.68650802],[-71.449503637,41.686450813],[-71.449507479,41.686414636],[-71.449599916,41.686419159],[-71.449601132,41.686463206],[-71.449603332,41.686498608],[-71.449603251,41.686523787],[-71.449970444,41.686533347],[-71.449973463,41.686535292],[-71.450007616,41.686557307],[-71.450037544,41.686558006],[-71.450106692,41.68657656],[-71.450156893,41.686637529],[-71.450160749,41.686700878],[-71.450139952,41.686767098],[-71.450114098,41.686823666],[-71.45007985,41.686886175],[-71.450041566,41.686958814],[-71.450003251,41.687032116],[-71.449964146,41.687102651],[-71.449960296,41.687110264],[-71.449928671,41.687172638],[-71.449923248,41.687183537],[-71.449923526,41.687183512],[-71.450480526,41.687204512],[-71.451753527,41.686669512],[-71.451679527,41.687680512],[-71.452373523,41.688289509],[-71.452394481,41.688295147],[-71.452424455,41.68831289],[-71.452456527,41.688331512],[-71.452518527,41.688384512],[-71.452587291,41.688380419],[-71.452602615,41.688379391],[-71.452635417,41.688389547],[-71.452661527,41.688397512],[-71.452661599,41.688397652],[-71.45266179,41.688397711],[-71.452675287,41.688423879],[-71.45267528,41.688424036]]]]}}"}, +{"type": "precinct", "typeId": 3527, "areaId": 25995, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":334,\"NAME\":\"3527\",\"SHAPE_Length\":0.22154733105878,\"SHAPE_Area\":-0.00073876340649004},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.455373168,41.647531875],[-71.455413444,41.64757811],[-71.455475793,41.64762648],[-71.455532622,41.647677638],[-71.455575635,41.647734211],[-71.455598396,41.647801821],[-71.455594516,41.647857667],[-71.455587008,41.647912825],[-71.455578481,41.647985844],[-71.455562681,41.648038917],[-71.455534011,41.648096789],[-71.455503512,41.64815395],[-71.455454632,41.648202803],[-71.455428241,41.648227606],[-71.455401148,41.648253049],[-71.455347689,41.648310156],[-71.455287742,41.648359005],[-71.455216818,41.648407826],[-71.455162445,41.648462897],[-71.455153779,41.648473546],[-71.456045932,41.648537638],[-71.456024475,41.648507185],[-71.456028326,41.648447887],[-71.456050597,41.648383815],[-71.456074659,41.648332139],[-71.456094988,41.648299764],[-71.456136524,41.648242629],[-71.456151078,41.648227884],[-71.456182657,41.648195833],[-71.456237022,41.648149749],[-71.456285024,41.648090582],[-71.456317385,41.648029258],[-71.456324013,41.647967216],[-71.456310429,41.647900295],[-71.456280166,41.647840182],[-71.456224365,41.647794697],[-71.456197754,41.647784991],[-71.456138106,41.647753157],[-71.45608737,41.647729046],[-71.45607217,41.647720285],[-71.455997649,41.647691539],[-71.455933784,41.647662988],[-71.455924565,41.647657179],[-71.455849874,41.64763129],[-71.45577458,41.647606333],[-71.455706662,41.647585542],[-71.45563777,41.647562691],[-71.455556961,41.647532884],[-71.455477096,41.647505158],[-71.455392553,41.647496733],[-71.455373168,41.647531875]]],[[[-71.424571116,41.6704748],[-71.424652323,41.670489993],[-71.424732579,41.670509393],[-71.424809996,41.670530186],[-71.424878016,41.670554426],[-71.424940388,41.670582825],[-71.425001743,41.670620325],[-71.425060158,41.670668365],[-71.425111166,41.670711439],[-71.425163968,41.670760116],[-71.425215818,41.670814396],[-71.425268552,41.670869408],[-71.425322264,41.670923025],[-71.425373135,41.670979431],[-71.425412817,41.671032948],[-71.425426266,41.671086997],[-71.425433151,41.671147354],[-71.425485953,41.671196031],[-71.425491891,41.671257782],[-71.425488533,41.671313169],[-71.425482338,41.671368532],[-71.42548358,41.671428839],[-71.425499337,41.67143946],[-71.425514961,41.671380651],[-71.425521193,41.671318953],[-71.425529216,41.67126501],[-71.42553727,41.671211066],[-71.425564939,41.671153705],[-71.425619649,41.671109146],[-71.425683656,41.671068868],[-71.425751448,41.671026467],[-71.425809845,41.670984699],[-71.425879531,41.670939532],[-71.425948271,41.670894341],[-71.426000176,41.670848338],[-71.426054957,41.67079399],[-71.426105068,41.670742384],[-71.42614017,41.670693489],[-71.426170607,41.670642487],[-71.426199183,41.670592856],[-71.426221234,41.670539676],[-71.426232096,41.670483631],[-71.42624759,41.670430424],[-71.426282791,41.670374531],[-71.426324522,41.670315852],[-71.426369057,41.670259302],[-71.426413628,41.670197149],[-71.426457284,41.670135681],[-71.426491472,41.670084705],[-71.426524713,41.6700351],[-71.426560932,41.669968688],[-71.42659154,41.669900854],[-71.426621201,41.669835078],[-71.426654613,41.669768664],[-71.426701041,41.669710011],[-71.426749361,41.669649987],[-71.426796667,41.669596274],[-71.426852458,41.669537673],[-71.426914706,41.669486142],[-71.426976921,41.669437424],[-71.427038257,41.669384498],[-71.427098577,41.669338523],[-71.427164443,41.669297538],[-71.427233146,41.669256554],[-71.427293329,41.669223934],[-71.427319175,41.669213019],[-71.427370349,41.669191417],[-71.427435195,41.669162323],[-71.427500078,41.669126962],[-71.427555631,41.669089377],[-71.427613109,41.669047631],[-71.427666833,41.669009359],[-71.427727051,41.668972554],[-71.427788178,41.668940644],[-71.427851105,41.668909444],[-71.42802359,41.668793696],[-71.428084653,41.668764988],[-71.428154908,41.668725834],[-71.42822894,41.668690844],[-71.428297362,41.66865377],[-71.428366701,41.668615301],[-71.428448063,41.66857126],[-71.428538727,41.668527202],[-71.428603456,41.668492892],[-71.428670933,41.668455154],[-71.428747712,41.668418039],[-71.4288319,41.668382324],[-71.428917037,41.668344505],[-71.429002145,41.668304605],[-71.429084478,41.668264703],[-71.429169555,41.668224825],[-71.429261188,41.668186301],[-71.42935004,41.66815331],[-71.429437058,41.668123862],[-71.429527796,41.668094348],[-71.429623117,41.668057907],[-71.429716552,41.668017302],[-71.429808156,41.667977383],[-71.429896038,41.667937461],[-71.429979285,41.66789685],[-71.430065336,41.667859031],[-71.43015602,41.667822586],[-71.430254117,41.667785437],[-71.430354992,41.667744814],[-71.430449346,41.667699293],[-71.430541839,41.667653816],[-71.430636189,41.667611793],[-71.430728733,41.667576059],[-71.430816692,41.667548669],[-71.430900044,41.667523357],[-71.430990752,41.667493178],[-71.431085153,41.667459502],[-71.43118977,41.667427891],[-71.431303629,41.667394844],[-71.431414744,41.667360447],[-71.431521255,41.667325314],[-71.431633283,41.667293684],[-71.431750886,41.667267569],[-71.431859247,41.667241539],[-71.431954621,41.667210631],[-71.432046243,41.66717972],[-71.432138839,41.667150227],[-71.432240705,41.667123485],[-71.432344431,41.667096743],[-71.432447213,41.667067896],[-71.432540723,41.667039822],[-71.432627792,41.667016615],[-71.432723157,41.666993344],[-71.432822274,41.666969412],[-71.432913949,41.666945476],[-71.433004738,41.66692362],[-71.433093635,41.666902495],[-71.433187199,41.666879954],[-71.433288146,41.666856],[-71.43338726,41.666834103],[-71.433478963,41.666812979],[-71.433571581,41.666791147],[-71.433660506,41.666772057],[-71.433755009,41.666755805],[-71.433862503,41.666740819],[-71.433966307,41.6667259],[-71.434073775,41.66670682],[-71.434186795,41.666686988],[-71.434297984,41.666667133],[-71.434401731,41.66664805],[-71.434484185,41.666633873],[-71.434687962,41.666590834],[-71.434786212,41.666578678],[-71.434863138,41.666571495],[-71.434949366,41.666564271],[-71.435040201,41.666556364],[-71.435131036,41.666547725],[-71.435230229,41.666537009],[-71.435334973,41.6665276],[-71.435429528,41.666519649],[-71.435518529,41.666514508],[-71.435618688,41.666514884],[-71.435721651,41.666515971],[-71.435824585,41.666516326],[-71.435931241,41.666515997],[-71.436040672,41.666515646],[-71.436154739,41.66651532],[-71.436271582,41.666514219],[-71.436376377,41.666513888],[-71.436475624,41.66651081],[-71.436575755,41.666508395],[-71.436685154,41.666508753],[-71.436802998,41.666513941],[-71.436922664,41.666526081],[-71.437037756,41.666538242],[-71.437155565,41.666546929],[-71.437275265,41.666556256],[-71.437383886,41.666574016],[-71.437484176,41.666595934],[-71.437583522,41.666617188],[-71.437684726,41.666640501],[-71.437786877,41.666662465],[-71.437891775,41.666681572],[-71.43800131,41.666699995],[-71.438103434,41.666718482],[-71.438205586,41.666739714],[-71.438300295,41.666762337],[-71.438379265,41.666786438],[-71.43844619,41.666808474],[-71.438535291,41.666826955],[-71.438610467,41.666831614],[-71.438692998,41.666831315],[-71.438774582,41.666833143],[-71.438854367,41.666834283],[-71.438887763,41.666834186],[-71.438975975,41.666858246],[-71.439062332,41.666876038],[-71.439158904,41.666896603],[-71.439236931,41.666917913],[-71.439320536,41.666944097],[-71.439405088,41.666968154],[-71.439489585,41.666985259],[-71.439579606,41.666999577],[-71.439672434,41.667011792],[-71.439765206,41.667019159],[-71.439850515,41.667016802],[-71.439926553,41.667013069],[-71.439965897,41.667012952],[-71.440000758,41.667012879],[-71.44010461,41.667011149],[-71.440195444,41.667003169],[-71.440299166,41.666977152],[-71.440367687,41.66695537],[-71.440462086,41.66691892],[-71.440549932,41.666876909],[-71.440638722,41.666835584],[-71.44073312,41.666799133],[-71.440793231,41.666769046],[-71.440877332,41.666719371],[-71.440964292,41.666678777],[-71.441054054,41.666642346],[-71.441147477,41.6666045],[-71.441240929,41.666567316],[-71.441304759,41.666538602],[-71.441365787,41.666506433],[-71.441437841,41.666456112],[-71.441492293,41.666409349],[-71.441540251,41.666361211],[-71.441578883,41.666304789],[-71.441568485,41.666268627],[-71.441517303,41.666240289],[-71.441433857,41.666241276],[-71.44132257,41.666237445],[-71.441241817,41.666227959],[-71.441163815,41.666212894],[-71.441086784,41.666202015],[-71.440983853,41.666199583],[-71.440882642,41.666182494],[-71.440809252,41.666160479],[-71.440737694,41.666135674],[-71.440670773,41.666108791],[-71.44060477,41.666079073],[-71.44053502,41.666045236],[-71.440469905,41.666012751],[-71.440391774,41.66597198],[-71.440324749,41.665926298],[-71.44026228,41.665868063],[-71.440209948,41.665798719],[-71.4401809,41.665746653],[-71.440154628,41.665693857],[-71.440122701,41.665623037],[-71.440112147,41.665558403],[-71.440112065,41.665547952],[-71.440120082,41.665486758],[-71.440141089,41.665428315],[-71.440165811,41.665375316],[-71.440213692,41.665311925],[-71.440265208,41.665240851],[-71.44029554,41.665189959],[-71.440339646,41.665118882],[-71.440367068,41.665047864],[-71.440353656,41.664974218],[-71.440348704,41.664919969],[-71.440353025,41.664865039],[-71.440362926,41.664810044],[-71.440383016,41.664753658],[-71.440413318,41.664701395],[-71.440451089,41.664653297],[-71.440495323,41.664607284],[-71.44054328,41.664559146],[-71.44059121,41.664507509],[-71.440634504,41.664455207],[-71.440675022,41.664403612],[-71.440713678,41.664354805],[-71.440749587,41.664306707],[-71.440777115,41.664253779],[-71.44080367,41.664196002],[-71.440831169,41.66414026],[-71.440845706,41.664085953],[-71.440839839,41.66403175],[-71.440828393,41.663975463],[-71.440822556,41.663921259],[-71.440814671,41.663839909],[-71.440814327,41.663782187],[-71.440814011,41.663727254],[-71.440814478,41.663650071],[-71.440838292,41.663589479],[-71.440893629,41.663540659],[-71.440949994,41.663500804],[-71.440994071,41.663425563],[-71.440996449,41.663359495],[-71.440985871,41.663287932],[-71.440972431,41.663210078],[-71.440972066,41.663142613],[-71.440973532,41.663073754],[-71.440953675,41.663009824],[-71.440906036,41.66294604],[-71.440865885,41.662897468],[-71.44082293,41.662846127],[-71.440778117,41.662794145],[-71.440734221,41.662737932],[-71.440695848,41.66268035],[-71.440660306,41.662626932],[-71.440624791,41.662578339],[-71.440592051,41.662529771],[-71.440557349,41.662459636],[-71.440529143,41.662389481],[-71.440514815,41.662317229],[-71.440521911,41.662260883],[-71.440539226,41.662203124],[-71.440564837,41.662143928],[-71.440596973,41.662086108],[-71.440631883,41.662029662],[-71.440667738,41.661973216],[-71.440705449,41.66192162],[-71.440744131,41.66187494],[-71.440781898,41.661828924],[-71.440835328,41.661762676],[-71.440897109,41.661702653],[-71.440938596,41.661656638],[-71.440991053,41.661586914],[-71.44103332,41.661521415],[-71.441054275,41.661451125],[-71.441047302,41.661371857],[-71.441049793,41.66131624],[-71.44105875,41.661259163],[-71.441072313,41.661200007],[-71.441083128,41.66114572],[-71.441094756,41.661069914],[-71.441118429,41.660994023],[-71.441156926,41.660916013],[-71.441194667,41.660863753],[-71.44123704,41.660814926],[-71.441282216,41.66076889],[-71.441329224,41.66072146],[-71.441370711,41.660674027],[-71.441431548,41.66061055],[-71.441506316,41.660553301],[-71.441576533,41.660503024],[-71.441637448,41.660453428],[-71.441700252,41.660406624],[-71.441750036,41.660356405],[-71.441766378,41.660293797],[-71.441764122,41.660224913],[-71.441763807,41.6601679],[-71.441759719,41.660102537],[-71.441703774,41.660051259],[-71.441647912,41.660010409],[-71.441609515,41.659945166],[-71.441585104,41.659893789],[-71.441537414,41.659820217],[-71.441502818,41.659768172],[-71.441463449,41.659699452],[-71.441456071,41.659663109],[-71.441425842,41.659605005],[-71.441397637,41.659533456],[-71.441385249,41.659473692],[-71.441386712,41.65940696],[-71.441391842,41.659331837],[-71.441399776,41.659259505],[-71.441417006,41.659191981],[-71.441444477,41.659130705],[-71.441476612,41.659071467],[-71.441506884,41.659015041],[-71.441532522,41.658957972],[-71.441551693,41.658902249],[-71.441554124,41.658843842],[-71.441554701,41.658779145],[-71.441562634,41.65870679],[-71.441573261,41.658623323],[-71.441584864,41.658539146],[-71.441605734,41.658459778],[-71.441632181,41.658383911],[-71.441659573,41.658308044],[-71.44168605,41.65823284],[-71.441708833,41.65816182],[-71.441731613,41.658093612],[-71.44175442,41.658029566],[-71.441783723,41.657964792],[-71.441818555,41.657889593],[-71.441856081,41.657802525],[-71.441898296,41.65772383],[-71.441941505,41.657658309],[-71.441984738,41.657599785],[-71.44202148,41.65753705],[-71.442052615,41.657468801],[-71.442079089,41.657396387],[-71.442103731,41.657326099],[-71.442124651,41.657257158],[-71.442135412,41.657192466],[-71.442127609,41.657120881],[-71.442117889,41.657043715],[-71.442117467,41.656969984],[-71.44212079,41.656903207],[-71.442125842,41.656879815],[-71.442136162,41.656832229],[-71.44216541,41.656759107],[-71.442199296,41.656683221],[-71.44223784,41.656616347],[-71.442281048,41.656550871],[-71.442327032,41.656483933],[-71.442375791,41.656417042],[-71.442423664,41.656352185],[-71.442476193,41.656297783],[-71.442533414,41.65624823],[-71.442601707,41.656195162],[-71.442682079,41.656139287],[-71.442771719,41.656084033],[-71.44285761,41.656027451],[-71.442935178,41.65596947],[-71.443001614,41.655911529],[-71.443062498,41.655856399],[-71.443123437,41.655808929],[-71.443188983,41.655757917],[-71.443253531,41.655697231],[-71.443318997,41.655633023],[-71.443384462,41.655568861],[-71.443436938,41.655504053],[-71.443494967,41.655434993],[-71.443557657,41.655371515],[-71.443604583,41.655305972],[-71.443632913,41.65523429],[-71.443663104,41.655161855],[-71.443695152,41.655093583],[-71.443725371,41.655023983],[-71.443754642,41.654956419],[-71.443784832,41.65488467],[-71.443818769,41.654817107],[-71.443858281,41.654755791],[-71.443906228,41.654707674],[-71.443957003,41.654669256],[-71.444010555,41.654628025],[-71.444064994,41.654582656],[-71.444119435,41.654535892],[-71.444165522,41.654487752],[-71.444194822,41.654421628],[-71.444211103,41.654353393],[-71.444277646,41.654310797],[-71.444372937,41.654275693],[-71.444442331,41.654250456],[-71.444518222,41.654222409],[-71.444591279,41.654192966],[-71.444665282,41.654162128],[-71.444740231,41.654129895],[-71.444818811,41.654096269],[-71.444898391,41.654068864],[-71.44498183,41.654056783],[-71.445068949,41.654057877],[-71.445159817,41.654058972],[-71.445246967,41.654058694],[-71.445322102,41.654058478],[-71.445396262,41.654058216],[-71.445475087,41.654057956],[-71.445559462,41.654057699],[-71.445651247,41.654057399],[-71.44574209,41.654052914],[-71.445827357,41.6540436],[-71.445907959,41.654032913],[-71.445987618,41.654020166],[-71.446073748,41.653998984],[-71.44616074,41.653968105],[-71.446238405,41.653933083],[-71.446308691,41.653897394],[-71.446372423,41.653858934],[-71.446431552,41.653818415],[-71.446493429,41.653774397],[-71.446561771,41.653728324],[-71.446630114,41.653682183],[-71.446693821,41.653636108],[-71.446751979,41.653589298],[-71.446800839,41.653540472],[-71.44685153,41.653488833],[-71.44690128,41.653432369],[-71.446948228,41.653371009],[-71.44699143,41.6533048],[-71.447030909,41.653240692],[-71.447063953,41.653179395],[-71.447087694,41.653120197],[-71.447108691,41.653061043],[-71.447137044,41.652993477],[-71.447141571,41.652976076],[-71.447188146,41.652884986],[-71.447220003,41.652820806],[-71.447250414,41.652771399],[-71.447297596,41.652721703],[-71.447358862,41.652675992],[-71.447433328,41.652634267],[-71.447519014,41.652594491],[-71.447607595,41.652556751],[-71.447692513,41.652523286],[-71.447781447,41.652500228],[-71.447889103,41.652479031],[-71.448008835,41.65245553],[-71.448122928,41.652429991],[-71.448223909,41.652403965],[-71.448317331,41.652373888],[-71.448409838,41.652344497],[-71.44849768,41.65231444],[-71.448564793,41.652277056],[-71.44862163,41.652239827],[-71.448688831,41.652206605],[-71.448757596,41.652161446],[-71.44881768,41.652105283],[-71.44886359,41.652043007],[-71.448896359,41.651978141],[-71.448920803,41.651915467],[-71.448925344,41.651841235],[-71.448882349,41.651804076],[-71.448809709,41.651774405],[-71.448684834,41.651710521],[-71.44861603,41.651650687],[-71.44856952,41.651586998],[-71.448546366,41.651522999],[-71.448545534,41.65145789],[-71.448555832,41.651390567],[-71.448585974,41.651332058],[-71.448643252,41.651275916],[-71.448727488,41.651216539],[-71.448826634,41.651155545],[-71.448922148,41.651099512],[-71.449005675,41.651048573],[-71.449077334,41.651006205],[-71.449145448,41.650973006],[-71.449215542,41.65094182],[-71.449272408,41.6509053],[-71.449317253,41.650838107],[-71.449320436,41.650783473],[-71.449315057,41.650721975],[-71.449294499,41.650652306],[-71.449262633,41.650577212],[-71.449230767,41.650502826],[-71.449211095,41.650431076],[-71.44920486,41.650372368],[-71.449203971,41.650339481],[-71.44921991,41.650272778],[-71.449236085,41.650215155],[-71.449271451,41.650142537],[-71.449289367,41.650080684],[-71.449292962,41.650006497],[-71.449288851,41.649922542],[-71.449285536,41.649834424],[-71.449283313,41.649751911],[-71.449282273,41.649679117],[-71.449295614,41.649619434],[-71.449325017,41.649568608],[-71.449365729,41.649521104],[-71.449388643,41.649501034],[-71.449417691,41.649475548],[-71.449485449,41.649427643],[-71.449556926,41.649380358],[-71.449627518,41.649333804],[-71.449695246,41.649285191],[-71.449766724,41.64923651],[-71.449837286,41.64918927],[-71.449903065,41.649137179],[-71.449954907,41.649088147],[-71.450001317,41.649044738],[-71.450043889,41.648996525],[-71.450087375,41.648948999],[-71.450143026,41.648902644],[-71.450200567,41.648856289],[-71.450250668,41.648810755],[-71.450294095,41.648761125],[-71.450336577,41.648710076],[-71.450380122,41.648663921],[-71.450440142,41.64860563],[-71.450473294,41.648554737],[-71.450473734,41.648537242],[-71.45048101,41.648472297],[-71.450484899,41.648411603],[-71.450483271,41.648346813],[-71.450470608,41.648279892],[-71.450456075,41.648226097],[-71.450436056,41.648168823],[-71.450406795,41.648115685],[-71.45037208,41.648058405],[-71.450336387,41.648004555],[-71.450297982,41.647948646],[-71.450259546,41.647892736],[-71.450222933,41.647845107],[-71.450178092,41.647792602],[-71.450130475,41.647742223],[-71.450102097,41.647691852],[-71.45011147,41.647636032],[-71.450125475,41.647582981],[-71.450135796,41.647523685],[-71.450142396,41.64746512],[-71.450139819,41.647406481],[-71.45013267,41.647346492],[-71.450132906,41.647277541],[-71.450175322,41.647232804],[-71.450233372,41.647196375],[-71.450299622,41.647162717],[-71.450376941,41.647128378],[-71.450446936,41.647100942],[-71.450530647,41.647079732],[-71.450607893,41.647060555],[-71.450692484,41.647044171],[-71.450777106,41.647027079],[-71.450860814,41.647010008],[-71.450945436,41.646992915],[-71.451025455,41.646975134],[-71.451113767,41.646958065],[-71.45119192,41.646947876],[-71.451273761,41.64693906],[-71.451343656,41.646922669],[-71.451426451,41.646903471],[-71.451498126,41.646911209],[-71.451543995,41.646936133],[-71.451535536,41.646994012],[-71.451532557,41.647063648],[-71.451536968,41.647118101],[-71.451542288,41.647180148],[-71.451546697,41.647236706],[-71.451555706,41.647298069],[-71.451562858,41.647356686],[-71.451561746,41.647416672],[-71.451554168,41.647479399],[-71.451544794,41.647538696],[-71.451538157,41.647606226],[-71.451536131,41.647665526],[-71.451542333,41.647729654],[-71.451566034,41.647797975],[-71.451613649,41.647853179],[-71.45167604,41.647883644],[-71.451751411,41.647885162],[-71.451828764,41.647844624],[-71.451879555,41.64777096],[-71.451917478,41.647697932],[-71.451954444,41.647640087],[-71.451999636,41.647592584],[-71.452055797,41.647552723],[-71.452119337,41.647513528],[-71.452200343,41.647480607],[-71.452281275,41.647466256],[-71.452354856,41.647454669],[-71.452442227,41.647432087],[-71.452518624,41.647405316],[-71.452578473,41.647367515],[-71.45262918,41.647323489],[-71.452705619,41.647280206],[-71.452767294,41.647247917],[-71.452836386,41.647203213],[-71.452883439,41.647152325],[-71.452916677,41.647104084],[-71.452974693,41.64707113],[-71.453056496,41.647072627],[-71.453128217,41.647061748],[-71.453210053,41.647059128],[-71.453244921,41.647076432],[-71.453241985,41.647130905],[-71.453226151,41.647186723],[-71.453220432,41.647253591],[-71.453239532,41.647319074],[-71.453274285,41.647369492],[-71.45333115,41.647410268],[-71.453374192,41.647466179],[-71.453415345,41.647520716],[-71.453466688,41.647565606],[-71.453511563,41.647616715],[-71.453572087,41.647658179],[-71.453639115,41.647686587],[-71.453710684,41.647716346],[-71.45378781,41.647737165],[-71.453871468,41.647746323],[-71.453953242,41.647747157],[-71.454025871,41.647745196],[-71.454111408,41.647728787],[-71.454179478,41.64770686],[-71.454262309,41.647679427],[-71.454346021,41.647654784],[-71.454422424,41.647620441],[-71.454478648,41.647575731],[-71.454532137,41.647519997],[-71.454588367,41.647467694],[-71.454648284,41.647418182],[-71.454706341,41.647368647],[-71.454770791,41.6473343],[-71.454854532,41.647311669],[-71.454928997,41.647299418],[-71.454999833,41.647289177],[-71.455081676,41.647276928],[-71.455155228,41.647263258],[-71.455238933,41.647248929],[-71.45532074,41.647244936],[-71.455396987,41.647257498],[-71.455483317,41.647283145],[-71.455561351,41.647312951],[-71.455643076,41.647339968],[-71.455722975,41.647362183],[-71.455794578,41.647387847],[-71.455865229,41.647425174],[-71.455919322,41.647463912],[-71.455978019,41.647503316],[-71.456039494,41.647538558],[-71.45610645,41.647584208],[-71.456170701,41.647617394],[-71.456241386,41.647648546],[-71.456301946,41.64768381],[-71.456363389,41.647721866],[-71.456399534,41.647745892],[-71.456418429,41.647758477],[-71.456477121,41.647806846],[-71.456513738,41.647854474],[-71.456541109,41.647914539],[-71.456542271,41.647943453],[-71.456543658,41.647977934],[-71.456524168,41.648032356],[-71.456480842,41.648077095],[-71.456418185,41.64812178],[-71.45639927,41.64813705],[-71.45636013,41.648168595],[-71.45631037,41.648212622],[-71.456293133,41.648227938],[-71.45626241,41.648255256],[-71.456228256,41.6483083],[-71.456205108,41.648360639],[-71.456196656,41.648415774],[-71.456189118,41.648470955],[-71.456157707,41.648523291],[-71.456134079,41.64854397],[-71.456141526,41.648544505],[-71.456337526,41.648627504],[-71.456374526,41.648643504],[-71.457672526,41.650257505],[-71.457774526,41.650358504],[-71.457855527,41.650258505],[-71.457947526,41.650129504],[-71.457978527,41.650091504],[-71.458076527,41.649969504],[-71.458298526,41.649699504],[-71.458534527,41.649428504],[-71.458702527,41.649366504],[-71.458755527,41.649342505],[-71.458794527,41.649323505],[-71.458847527,41.649295504],[-71.458916527,41.649262505],[-71.459045527,41.649187505],[-71.459107527,41.649123504],[-71.459190527,41.649045504],[-71.459446528,41.648719505],[-71.459447527,41.648717504],[-71.460526527,41.647337503],[-71.460839527,41.646936504],[-71.461043528,41.646722504],[-71.461432528,41.646313504],[-71.463014529,41.645452503],[-71.463119528,41.645299503],[-71.463402529,41.645005503],[-71.463532528,41.644881503],[-71.463783528,41.644659503],[-71.463792529,41.644652503],[-71.464070528,41.644424503],[-71.464966528,41.643765503],[-71.465119529,41.643590503],[-71.465416528,41.643305503],[-71.465652529,41.643106503],[-71.465820529,41.642963503],[-71.465920529,41.642889502],[-71.466263529,41.642611503],[-71.46675953,41.642213502],[-71.46737753,41.641723502],[-71.467202529,41.641477503],[-71.466775529,41.641013503],[-71.465054529,41.639495503],[-71.465537528,41.639086503],[-71.466425529,41.638441502],[-71.467292529,41.638142502],[-71.468502529,41.637623502],[-71.468422529,41.637053502],[-71.468379529,41.636836502],[-71.46823953,41.636138502],[-71.468079529,41.635417502],[-71.467934529,41.634808501],[-71.467926529,41.634776502],[-71.467873529,41.634430501],[-71.467867529,41.634375501],[-71.467855529,41.634171501],[-71.467834529,41.634175501],[-71.467743529,41.634205501],[-71.467650529,41.634230501],[-71.467611529,41.634239501],[-71.467542529,41.634256501],[-71.467457529,41.634286501],[-71.467388529,41.634317501],[-71.467326529,41.634385501],[-71.467284529,41.634435501],[-71.467198529,41.634478501],[-71.467109529,41.634505501],[-71.467048529,41.634548501],[-71.466997529,41.634604501],[-71.466952529,41.634667501],[-71.466902529,41.634732501],[-71.466846529,41.634791501],[-71.466799528,41.634850501],[-71.466750529,41.634904501],[-71.466693529,41.634950502],[-71.466563529,41.635026502],[-71.466511529,41.635071501],[-71.466472529,41.635126502],[-71.466433529,41.635187501],[-71.466390528,41.635253501],[-71.466350528,41.635318502],[-71.466325529,41.635383501],[-71.466308529,41.635446501],[-71.466246529,41.635496502],[-71.466163529,41.635532502],[-71.466065529,41.635555502],[-71.465966528,41.635585501],[-71.465882528,41.635616501],[-71.465814529,41.635654501],[-71.465742529,41.635691502],[-71.465666529,41.635721501],[-71.465586529,41.635739501],[-71.465511529,41.635768502],[-71.465448529,41.635804502],[-71.465395528,41.635871501],[-71.465345528,41.635920502],[-71.465287528,41.635969501],[-71.465217529,41.636021502],[-71.465146528,41.636072501],[-71.465083528,41.636112501],[-71.465019529,41.636141502],[-71.464958528,41.636175502],[-71.464897528,41.636210502],[-71.464799528,41.636243501],[-71.464726528,41.636254502],[-71.464649528,41.636276502],[-71.464576528,41.636304501],[-71.464512528,41.636335502],[-71.464455528,41.636366502],[-71.464385528,41.636407502],[-71.464312528,41.636457501],[-71.464239528,41.636489502],[-71.464159528,41.636530502],[-71.464095528,41.636559502],[-71.464022528,41.636578502],[-71.463949528,41.636584502],[-71.463851528,41.636582502],[-71.463769528,41.636578502],[-71.463682528,41.636568502],[-71.463600528,41.636554501],[-71.463524527,41.636546502],[-71.463436528,41.636552501],[-71.463373528,41.636590501],[-71.463320528,41.636648502],[-71.463297528,41.636699502],[-71.463273528,41.636761502],[-71.463251527,41.636825501],[-71.463231527,41.636889502],[-71.463222528,41.636918502],[-71.463212527,41.636951502],[-71.463188528,41.637018502],[-71.463160528,41.637082501],[-71.463126528,41.637147502],[-71.463089528,41.637213502],[-71.463045528,41.637277502],[-71.463032528,41.637296502],[-71.463002528,41.637339502],[-71.462963528,41.637409501],[-71.462935528,41.637476502],[-71.462915528,41.637537502],[-71.462892528,41.637591502],[-71.462862527,41.637641502],[-71.462830528,41.637693502],[-71.462788528,41.637764502],[-71.462758528,41.637828502],[-71.462731528,41.637884502],[-71.462691528,41.637952502],[-71.462665527,41.638005502],[-71.462629527,41.638074502],[-71.462594528,41.638128502],[-71.462557528,41.638181502],[-71.462531527,41.638235502],[-71.462525528,41.638263502],[-71.462466528,41.638335502],[-71.462354527,41.638388502],[-71.462247528,41.638371502],[-71.462212528,41.638365502],[-71.462181527,41.638358502],[-71.462173528,41.638356502],[-71.462108527,41.638341502],[-71.462023527,41.638319502],[-71.461932527,41.638295502],[-71.461835527,41.638272502],[-71.461741527,41.638251502],[-71.461649528,41.638223502],[-71.461577527,41.638195502],[-71.461501527,41.638165502],[-71.461433528,41.638138502],[-71.461351527,41.638093502],[-71.461295527,41.638032502],[-71.461254527,41.637987502],[-71.461187527,41.637927502],[-71.461108527,41.637888502],[-71.461003527,41.637896502],[-71.460932527,41.637926502],[-71.460868527,41.637961502],[-71.460798527,41.637995502],[-71.460719527,41.638029502],[-71.460635527,41.638070502],[-71.460552527,41.638108502],[-71.460461527,41.638126502],[-71.460360527,41.638128502],[-71.460252527,41.638126502],[-71.460153527,41.638124502],[-71.460069527,41.638121502],[-71.459975526,41.638121502],[-71.459902527,41.638117502],[-71.459818526,41.638106502],[-71.459724526,41.638089502],[-71.459650527,41.638071502],[-71.459560527,41.638049502],[-71.459464527,41.638027502],[-71.459370526,41.638009502],[-71.459279526,41.637992502],[-71.459194526,41.637975502],[-71.459123526,41.637954502],[-71.459047526,41.637895502],[-71.459035527,41.637875502],[-71.459009527,41.637831502],[-71.458969526,41.637762502],[-71.458921526,41.637694502],[-71.458870526,41.637631502],[-71.458820527,41.637571502],[-71.458768526,41.637512502],[-71.458722527,41.637445502],[-71.458673526,41.637377502],[-71.458620526,41.637312501],[-71.458569526,41.637250502],[-71.458525526,41.637185502],[-71.458501526,41.637147502],[-71.458485526,41.637121502],[-71.458445526,41.637055502],[-71.458411527,41.636990502],[-71.458384526,41.636929502],[-71.458367526,41.636867502],[-71.458351526,41.636803502],[-71.458341526,41.636735502],[-71.458337526,41.636664502],[-71.458337526,41.636597502],[-71.458337526,41.636543502],[-71.458337526,41.636470502],[-71.458324526,41.636374502],[-71.458255526,41.636332502],[-71.458191526,41.636318501],[-71.457878526,41.636077502],[-71.457667526,41.635910501],[-71.457497525,41.635859502],[-71.457299526,41.635800502],[-71.456513526,41.635615501],[-71.455997525,41.635412502],[-71.455580525,41.635117502],[-71.455236525,41.634638502],[-71.454672525,41.633716501],[-71.454230525,41.632961502],[-71.454170525,41.632734501],[-71.454059525,41.632316501],[-71.454084524,41.631929501],[-71.454231525,41.631560501],[-71.454388525,41.631242501],[-71.454404525,41.631210501],[-71.454330525,41.630676501],[-71.454207524,41.630496501],[-71.453972524,41.630153501],[-71.453963525,41.6301405],[-71.453955524,41.630127501],[-71.453943525,41.630108501],[-71.453910524,41.630056501],[-71.453892524,41.6300575],[-71.453668524,41.630026501],[-71.453404524,41.6299605],[-71.453264525,41.629897501],[-71.453241524,41.629889501],[-71.453110524,41.6298675],[-71.453073524,41.629860501],[-71.453056524,41.629856501],[-71.453000524,41.629842501],[-71.452928524,41.629811501],[-71.452848524,41.6297665],[-71.452788524,41.629716501],[-71.452713524,41.6296705],[-71.452643524,41.629626501],[-71.452587524,41.629587501],[-71.452507524,41.6295375],[-71.452426523,41.629486501],[-71.452351524,41.629447501],[-71.452340524,41.629441501],[-71.452270523,41.6294215],[-71.452189524,41.629407501],[-71.452097523,41.629405501],[-71.452008524,41.629405501],[-71.451930524,41.629405501],[-71.451858524,41.629405501],[-71.451782524,41.629405501],[-71.451697524,41.6294185],[-71.451614523,41.6294335],[-71.451539524,41.6294345],[-71.451366524,41.629463501],[-71.451313524,41.629504501],[-71.451287524,41.629583501],[-71.451271524,41.6296485],[-71.451267524,41.6297125],[-71.451272524,41.629775501],[-71.451281523,41.629815501],[-71.451285523,41.629836501],[-71.451305524,41.629896501],[-71.451339523,41.629959501],[-71.451384524,41.6300225],[-71.451432523,41.630085501],[-71.451478523,41.630143501],[-71.451512523,41.6301945],[-71.451534523,41.630270501],[-71.451535523,41.630347501],[-71.451505524,41.630394501],[-71.451414523,41.630420501],[-71.451307524,41.630436501],[-71.451219523,41.6304695],[-71.451143523,41.630509501],[-71.451075524,41.630544501],[-71.450978524,41.630573501],[-71.450906523,41.630578501],[-71.450821524,41.630577501],[-71.450731523,41.630577501],[-71.450641523,41.630580501],[-71.450551524,41.630596501],[-71.450453524,41.630620501],[-71.450393523,41.630639501],[-71.450359523,41.630650501],[-71.450299524,41.630675501],[-71.450276523,41.630685501],[-71.450199523,41.630725501],[-71.450126523,41.630762501],[-71.450055523,41.630792501],[-71.449985523,41.630821501],[-71.449915523,41.630853501],[-71.449854523,41.630893501],[-71.449808523,41.630940501],[-71.449782523,41.630996501],[-71.449753523,41.631060501],[-71.449718523,41.631126501],[-71.449684523,41.631185501],[-71.449661523,41.631239501],[-71.449659523,41.631314501],[-71.449659523,41.631370501],[-71.449649523,41.631444501],[-71.449628523,41.631503501],[-71.449606523,41.631565501],[-71.449575523,41.631629501],[-71.449524523,41.631687501],[-71.449464523,41.631746501],[-71.449412523,41.631810501],[-71.449402523,41.631826501],[-71.449371523,41.631877501],[-71.449346523,41.631944501],[-71.449339523,41.632013501],[-71.449339523,41.632096501],[-71.449332523,41.632187501],[-71.449320523,41.632203501],[-71.449277523,41.632264501],[-71.449186523,41.632320501],[-71.449093523,41.632370501],[-71.449010523,41.632425501],[-71.448941523,41.632481501],[-71.448888523,41.632533502],[-71.448849523,41.632597501],[-71.448812523,41.632668502],[-71.448770523,41.632741501],[-71.448736523,41.632825502],[-71.448732523,41.632914501],[-71.448739523,41.632996502],[-71.448711523,41.633066501],[-71.448640523,41.633127501],[-71.448558523,41.633185501],[-71.448488522,41.633244501],[-71.448444523,41.633308502],[-71.448447523,41.633385502],[-71.448473523,41.633472501],[-71.448502523,41.633569501],[-71.448522523,41.633666501],[-71.448535523,41.633750501],[-71.448543523,41.633824501],[-71.448549523,41.633894502],[-71.448572523,41.633965501],[-71.448609523,41.634041501],[-71.448651523,41.634121502],[-71.448705523,41.634193501],[-71.448765523,41.634259502],[-71.448810523,41.634304502],[-71.448880523,41.634360502],[-71.448971523,41.634401502],[-71.449041523,41.634424502],[-71.449118523,41.634449501],[-71.449195523,41.634479502],[-71.449272523,41.634509501],[-71.449335523,41.634540502],[-71.449414523,41.634583501],[-71.449475523,41.634634502],[-71.449518524,41.634695502],[-71.449542523,41.634750502],[-71.449567523,41.634818501],[-71.449575523,41.634888502],[-71.449570523,41.634959502],[-71.449558524,41.635032501],[-71.449531523,41.635111501],[-71.449491523,41.635188501],[-71.449424523,41.635254502],[-71.449344524,41.635315502],[-71.449268523,41.635370502],[-71.449201523,41.635414502],[-71.449123523,41.635458502],[-71.449059523,41.635488502],[-71.448984523,41.635493502],[-71.448915523,41.635521502],[-71.448861523,41.635561502],[-71.448817523,41.635614502],[-71.448794523,41.635669502],[-71.448797523,41.635727502],[-71.448818523,41.635781502],[-71.448855523,41.635833502],[-71.448912523,41.635891502],[-71.448982523,41.635949502],[-71.449060523,41.636004502],[-71.449133523,41.636057502],[-71.449205523,41.636110502],[-71.449283523,41.636159502],[-71.449345523,41.636212502],[-71.449385523,41.636276502],[-71.449397523,41.636350502],[-71.449388523,41.636427502],[-71.449368523,41.636507502],[-71.449339523,41.636589502],[-71.449311523,41.636669502],[-71.449286524,41.636738502],[-71.449248523,41.636802502],[-71.449206524,41.636860502],[-71.449159523,41.636911502],[-71.449102523,41.636948502],[-71.448996523,41.636951502],[-71.448916523,41.636933502],[-71.448825523,41.636915502],[-71.448731523,41.636908502],[-71.448639523,41.636928502],[-71.448540523,41.636964502],[-71.448439523,41.637009502],[-71.448338523,41.637053502],[-71.448247523,41.637095503],[-71.448164523,41.637133503],[-71.448086523,41.637170502],[-71.448019522,41.637208502],[-71.447964523,41.637258502],[-71.447930523,41.637319502],[-71.447920523,41.637389503],[-71.447930523,41.637463503],[-71.447953523,41.637539502],[-71.447971523,41.637603503],[-71.447937523,41.637665502],[-71.447872523,41.637732502],[-71.447809523,41.637810502],[-71.447742523,41.637880502],[-71.447675523,41.637933503],[-71.447611522,41.637970503],[-71.447540523,41.637999502],[-71.447475522,41.638026503],[-71.447399522,41.638056502],[-71.447327523,41.638094502],[-71.447255523,41.638136502],[-71.447185522,41.638181503],[-71.447121523,41.638224503],[-71.447060523,41.638258502],[-71.446988522,41.638306502],[-71.446942523,41.638358503],[-71.446909522,41.638418503],[-71.446905523,41.638475503],[-71.446908522,41.638537503],[-71.446941523,41.638599502],[-71.447002523,41.638658502],[-71.447071523,41.638688503],[-71.447094523,41.638723502],[-71.447058523,41.638798502],[-71.447013523,41.638850503],[-71.446961523,41.638895502],[-71.446885523,41.638931502],[-71.446809523,41.638944503],[-71.446802523,41.638945503],[-71.446733522,41.638962503],[-71.446662522,41.638976502],[-71.446591523,41.639008503],[-71.446525522,41.639032502],[-71.446448522,41.639055503],[-71.446379523,41.639074503],[-71.446319523,41.639104503],[-71.446250522,41.639120503],[-71.446201523,41.639148502],[-71.446194522,41.639083503],[-71.446200523,41.639021503],[-71.446223523,41.638960503],[-71.446244522,41.638915502],[-71.446251522,41.638901503],[-71.446277523,41.638845503],[-71.446276522,41.638771503],[-71.446231522,41.638751503],[-71.446151522,41.638778502],[-71.446100522,41.638818502],[-71.446054522,41.638863503],[-71.446015522,41.638910503],[-71.445991522,41.638965503],[-71.445978522,41.639021503],[-71.445965522,41.639082503],[-71.445958522,41.639144503],[-71.445958522,41.639167502],[-71.445958522,41.639208502],[-71.445956522,41.639270503],[-71.445946522,41.639327503],[-71.445932522,41.639386503],[-71.445911523,41.639450503],[-71.445891523,41.639516502],[-71.445878522,41.639580503],[-71.445899522,41.639643503],[-71.445903522,41.639698503],[-71.445908523,41.639753503],[-71.445899522,41.639815503],[-71.445889523,41.639869502],[-71.445885522,41.639925502],[-71.445864522,41.639989503],[-71.445792523,41.639998503],[-71.445715523,41.639999503],[-71.445623522,41.639997503],[-71.445545522,41.639996503],[-71.445471522,41.640031503],[-71.445410522,41.640081502],[-71.445341522,41.640117503],[-71.445266522,41.640161503],[-71.445208522,41.640210503],[-71.445154522,41.640259503],[-71.445111522,41.640310503],[-71.445067522,41.640355503],[-71.445013522,41.640398503],[-71.444962522,41.640437503],[-71.444911522,41.640478503],[-71.444863522,41.640529503],[-71.444837522,41.640588503],[-71.444830522,41.640649503],[-71.444804522,41.640702503],[-71.444782522,41.640761503],[-71.444794522,41.640817503],[-71.444813522,41.640879503],[-71.444838522,41.640931503],[-71.444845522,41.640944503],[-71.444868522,41.640989503],[-71.444900522,41.641045503],[-71.444943522,41.641102503],[-71.444992522,41.641149503],[-71.445084522,41.641381503],[-71.445130522,41.641422503],[-71.445151523,41.641477503],[-71.445152007,41.641505133],[-71.445152846,41.641534253],[-71.445139772,41.641599722],[-71.445130666,41.641627115],[-71.445122522,41.641652503],[-71.445096522,41.641714503],[-71.445059522,41.641771503],[-71.445034725,41.641798071],[-71.44501773,41.641816672],[-71.444986328,41.641844514],[-71.444968522,41.641860503],[-71.444901522,41.641906503],[-71.444838522,41.641940503],[-71.44481068,41.641954632],[-71.444771805,41.641974787],[-71.444741714,41.641989407],[-71.444711522,41.642004503],[-71.444673522,41.642018503],[-71.444642522,41.642029504],[-71.444642041,41.64202969],[-71.444575763,41.642055765],[-71.444527176,41.64207589],[-71.444492522,41.642090503],[-71.444470281,41.642099399],[-71.444422966,41.642118879],[-71.444361293,41.642149792],[-71.44429593,41.642182761],[-71.444249802,41.642207752],[-71.444228522,41.642219503],[-71.444174522,41.642259503],[-71.444126345,41.642294298],[-71.444120923,41.642298281],[-71.444096378,41.642314054],[-71.444061521,41.642336503],[-71.444047299,41.64234633],[-71.444006711,41.642374586],[-71.443936702,41.642420634],[-71.443909979,41.642434637],[-71.443859522,41.642461503],[-71.443818589,41.64248197],[-71.44378938,41.642496877],[-71.443761916,41.642508335],[-71.443712521,41.642529503],[-71.443638522,41.642551504],[-71.443594677,41.642552013],[-71.443552076,41.642552951],[-71.443488354,41.642550127],[-71.443471522,41.642549503],[-71.443446461,41.64254825],[-71.443391259,41.642545759],[-71.443361426,41.642542995],[-71.443307521,41.642538503],[-71.443223521,41.642533504],[-71.443170347,41.642531731],[-71.443133041,41.642530813],[-71.443075135,41.642532666],[-71.443052521,41.642533504],[-71.443028792,41.64253898],[-71.442974882,41.642551866],[-71.442909487,41.642585543],[-71.442851468,41.642620573],[-71.442787019,41.642652855],[-71.442707912,41.642677515],[-71.442704047,41.642677686],[-71.442669522,41.642679503],[-71.442652252,41.642679983],[-71.442633457,41.642680816],[-71.442559921,41.642680688],[-71.442509387,41.642683418],[-71.442473521,41.642685503],[-71.442458275,41.642688146],[-71.44239902,41.642698995],[-71.442374961,41.642738249],[-71.442387656,41.642792754],[-71.442384705,41.642854065],[-71.442384536,41.642854195],[-71.442384521,41.642854503],[-71.442355666,41.642876378],[-71.442322955,41.642901511],[-71.442281538,41.642929706],[-71.442283522,41.642954503],[-71.442266521,41.643029503],[-71.442252521,41.643060504],[-71.442203521,41.643104503],[-71.442188664,41.643115048],[-71.442141575,41.643148775],[-71.442079674,41.643194483],[-71.442030763,41.643237361],[-71.441986575,41.643283695],[-71.441964759,41.643336901],[-71.441974661,41.643398714],[-71.441982119,41.643409901],[-71.442009018,41.643449533],[-71.44203608,41.643469964],[-71.442074521,41.643498503],[-71.442126522,41.643557503],[-71.442146154,41.64358066],[-71.44216565,41.643603431],[-71.442199236,41.64363502],[-71.442211521,41.643646504],[-71.442226205,41.64366053],[-71.442278423,41.643710151],[-71.442303863,41.643742993],[-71.442317521,41.643760504],[-71.442355521,41.643818504],[-71.442397522,41.643881504],[-71.442430994,41.64392867],[-71.442441998,41.643943981],[-71.442479471,41.644009246],[-71.44249137,41.64403283],[-71.442511521,41.644072504],[-71.442545521,41.644132504],[-71.442582521,41.644186504],[-71.442614522,41.644238503],[-71.442652522,41.644289504],[-71.442652587,41.644289594],[-71.442691832,41.644343016],[-71.442705184,41.644376609],[-71.442717521,41.644406504],[-71.442724797,41.644453464],[-71.442728757,41.644477827],[-71.442728995,41.644480345],[-71.442729522,41.644483504],[-71.442733402,41.644526843],[-71.442735674,41.644550807],[-71.4427379,41.644618959],[-71.442737521,41.644663936],[-71.442737521,41.644683503],[-71.442731522,41.644747504],[-71.442713522,41.644810504],[-71.442692522,41.644866504],[-71.442665523,41.6449315],[-71.442677926,41.645000253],[-71.442710147,41.645055968],[-71.442717521,41.645068504],[-71.442720976,41.645072257],[-71.442776015,41.645131367],[-71.442807176,41.645170065],[-71.442830522,41.645198504],[-71.442843464,41.645254255],[-71.442843522,41.645254504],[-71.442840497,41.645270383],[-71.442831798,41.645317574],[-71.442823932,41.645354281],[-71.442818521,41.645380504],[-71.442798521,41.645440504],[-71.442783308,41.645470368],[-71.442771609,41.645493661],[-71.442714521,41.645558504],[-71.442714498,41.645558532],[-71.44267675,41.645604553],[-71.442648604,41.645652638],[-71.442647522,41.645654504],[-71.442617521,41.645720504],[-71.442594261,41.645746501],[-71.442579903,41.645763027],[-71.442571522,41.645773504],[-71.442526819,41.645811111],[-71.442508344,41.645826943],[-71.442460851,41.645846417],[-71.442429521,41.645859504],[-71.442342522,41.645869504],[-71.4423208,41.645880187],[-71.442281621,41.645899965],[-71.44221323,41.645937734],[-71.442196336,41.645943233],[-71.442135521,41.645963504],[-71.442048522,41.645973504],[-71.441960521,41.645976504],[-71.441875522,41.645976504],[-71.441838318,41.645976504],[-71.441790704,41.645976673],[-71.441703563,41.645979717],[-71.441655322,41.645988169],[-71.441614521,41.645995504],[-71.441585389,41.646002871],[-71.441527635,41.646017819],[-71.441477128,41.646035502],[-71.441443521,41.646047505],[-71.441357521,41.646075504],[-71.441317852,41.64608553],[-71.441266664,41.646098644],[-71.441191737,41.646115123],[-71.441176521,41.646118504],[-71.441093521,41.646137504],[-71.441027324,41.646153629],[-71.44101571,41.646156458],[-71.440925984,41.646188735],[-71.440894658,41.646205864],[-71.440893521,41.646206504],[-71.440859521,41.646225504],[-71.440834611,41.64623979],[-71.440791974,41.646264981],[-71.440750767,41.646290043],[-71.440716521,41.646311504],[-71.440645521,41.646366504],[-71.440606035,41.646404442],[-71.440594416,41.646415794],[-71.440584993,41.646430076],[-71.440560521,41.646467504],[-71.440588515,41.646512495],[-71.440592297,41.646513044],[-71.440630521,41.646518504],[-71.440720521,41.646517504],[-71.440740127,41.646518761],[-71.44079991,41.64652222],[-71.440841912,41.646568689],[-71.440837805,41.646569144],[-71.440784289,41.646578351],[-71.440748355,41.64658497],[-71.440672554,41.646622802],[-71.440584517,41.646617502],[-71.440584443,41.646617497],[-71.44057982,41.646615568],[-71.440516521,41.646589504],[-71.440432521,41.646621504],[-71.440385521,41.646681504],[-71.440389651,41.646699727],[-71.440402597,41.646756449],[-71.440405941,41.646764386],[-71.440425521,41.646809504],[-71.440437521,41.646869504],[-71.440444521,41.646932504],[-71.440450521,41.646992504],[-71.44045252,41.647046504],[-71.44043352,41.647123504],[-71.440427621,41.647130842],[-71.440392882,41.64717445],[-71.440339417,41.64722469],[-71.440328467,41.647234153],[-71.440221521,41.647327504],[-71.440203494,41.647343922],[-71.440165969,41.647378922],[-71.440126621,41.647424834],[-71.440076521,41.647484505],[-71.43998452,41.647604505],[-71.43992752,41.647664505],[-71.439899036,41.64768773],[-71.439862888,41.647717825],[-71.439793625,41.647771601],[-71.439719732,41.647820548],[-71.439702802,41.647828898],[-71.439470521,41.647945504],[-71.439355409,41.648004082],[-71.439301848,41.64803187],[-71.439236451,41.648057986],[-71.439215521,41.648066505],[-71.439176203,41.648078568],[-71.439127904,41.648093617],[-71.439040893,41.648116852],[-71.438958539,41.648147728],[-71.438897,41.648177899],[-71.438790521,41.648230505],[-71.438692521,41.648276504],[-71.43859152,41.648331504],[-71.43849452,41.648391504],[-71.438419243,41.648439484],[-71.438403052,41.648449879],[-71.438382748,41.648461438],[-71.43830952,41.648503505],[-71.438264248,41.648526622],[-71.438215407,41.648551981],[-71.438123918,41.648602336],[-71.43803609,41.648649217],[-71.437950123,41.64869539],[-71.437866957,41.648745726],[-71.437788456,41.648796728],[-71.437713614,41.648847046],[-71.437637885,41.648899444],[-71.437562156,41.648951865],[-71.437492003,41.649008406],[-71.437420934,41.649067027],[-71.437346176,41.649123611],[-71.437263034,41.649180168],[-71.437178034,41.649233979],[-71.437103218,41.649287086],[-71.437039563,41.649339445],[-71.436989781,41.649392429],[-71.436944661,41.649448228],[-71.436888414,41.649501232],[-71.43681915,41.649551529],[-71.436741562,41.649601845],[-71.436662057,41.649647997],[-71.436586331,41.649696919],[-71.436528193,41.649749944],[-71.436479358,41.649800161],[-71.436411926,41.649847006],[-71.436333366,41.649893113],[-71.436252973,41.64994274],[-71.436173551,41.649995845],[-71.436103371,41.65004685],[-71.436040606,41.650091525],[-71.435989797,41.650133416],[-71.435943736,41.650182925],[-71.435899507,41.650230355],[-71.435913724,41.650284563],[-71.435959465,41.650342128],[-71.436013586,41.650404546],[-71.436084364,41.650459266],[-71.436166193,41.650500728],[-71.436247073,41.650545002],[-71.436322463,41.65059204],[-71.436357991,41.65064825],[-71.436386113,41.650701711],[-71.436453146,41.650750872],[-71.436502558,41.650797301],[-71.436532589,41.65086261],[-71.436505093,41.650916932],[-71.436441326,41.650957444],[-71.436375368,41.650930536],[-71.436298065,41.650875127],[-71.436243185,41.650839146],[-71.43617801,41.650792067],[-71.436143422,41.650741438],[-71.436162514,41.650674624],[-71.43618255,41.650609869],[-71.436147096,41.650571749],[-71.436070925,41.650544172],[-71.435988129,41.650493654],[-71.435940577,41.650447888],[-71.435893026,41.650401437],[-71.435835212,41.650342539],[-71.435743276,41.650315685],[-71.435651524,41.650318766],[-71.435557074,41.650337855],[-71.435451409,41.650349299],[-71.435365442,41.650391994],[-71.435286933,41.650446493],[-71.435226834,41.650476578],[-71.435132429,41.650510234],[-71.435050075,41.650537631],[-71.434976042,41.650567068],[-71.434987305,41.650585827],[-71.435057872,41.650607136],[-71.435153633,41.650650641],[-71.435223387,41.650691457],[-71.435297776,41.650732252],[-71.435364759,41.650770299],[-71.43542802,41.650809738],[-71.435488537,41.650849199],[-71.435544302,41.650883786],[-71.435603924,41.650934383],[-71.43565894,41.650987059],[-71.435731422,41.651013949],[-71.435810059,41.650985154],[-71.435884063,41.650953636],[-71.435950939,41.650976382],[-71.435981812,41.65102287],[-71.435912494,41.651064111],[-71.435816076,41.651067213],[-71.435738148,41.651057724],[-71.435660139,41.651037784],[-71.435580197,41.651000485],[-71.4354891,41.650956982],[-71.435419423,41.650930072],[-71.435348804,41.650899684],[-71.435279074,41.650865135],[-71.435207454,41.650829213],[-71.435139558,41.65079048],[-71.435075352,41.650750331],[-71.435017697,41.650715056],[-71.434966452,41.650673497],[-71.434906935,41.650641011],[-71.434835656,41.650661393],[-71.434814753,41.650737948],[-71.43481878,41.65079565],[-71.434839491,41.65084913],[-71.434901968,41.650910821],[-71.43495596,41.650949593],[-71.435018249,41.650984869],[-71.435089815,41.651013885],[-71.435165073,41.651040045],[-71.435239413,41.651069748],[-71.435306364,41.651109167],[-71.435362214,41.651149997],[-71.435418982,41.651188084],[-71.435481434,41.651244904],[-71.435538308,41.651298953],[-71.435576589,41.651346794],[-71.435596405,41.651411434],[-71.435551892,41.651406675],[-71.435470112,41.651377059],[-71.435402317,41.651357811],[-71.43532533,41.651352462],[-71.43525405,41.651372867],[-71.435193062,41.651407823],[-71.435133932,41.651444152],[-71.435077629,41.651488852],[-71.435040805,41.651539739],[-71.435001338,41.651610108],[-71.434968315,41.65167138],[-71.43493707,41.651722955],[-71.434870371,41.651735679],[-71.434776707,41.651727621],[-71.434699747,41.651725771],[-71.434612621,41.651735784],[-71.43451903,41.651745816],[-71.434424473,41.651746814],[-71.434329887,41.651747103],[-71.434242763,41.651754326],[-71.434169628,41.651769172],[-71.434099285,41.651797192],[-71.434047671,41.651848161],[-71.434032059,41.651878088],[-71.433986627,41.651876141],[-71.433913073,41.651823522],[-71.433833183,41.651794592],[-71.433729299,41.651791399],[-71.433656005,41.651782598],[-71.433575249,41.651766154],[-71.433489857,41.651749753],[-71.433407294,41.65174026],[-71.433322842,41.651729417],[-71.433293807,41.651676641],[-71.433256341,41.651609314],[-71.433191195,41.651565024],[-71.433126154,41.651537406],[-71.433057394,41.651507727],[-71.432995074,41.651473112],[-71.432931762,41.651424638],[-71.43287777,41.651386552],[-71.432823724,41.651341536],[-71.432796931,41.65133123],[-71.432796505,41.651331503],[-71.432747911,41.65138069],[-71.432703703,41.651434385],[-71.43266673,41.651450509],[-71.432598376,41.651500095],[-71.432520624,41.651526761],[-71.432449319,41.651540921],[-71.432370574,41.651555054],[-71.432293718,41.65157056],[-71.432224271,41.65158607],[-71.432171631,41.651625214],[-71.432170208,41.651703083],[-71.432166826,41.651758745],[-71.432155059,41.65181438],[-71.432121979,41.651868743],[-71.432072218,41.651923852],[-71.432015965,41.651977562],[-71.431960603,41.65202432],[-71.43190613,41.652066207],[-71.431830339,41.652112335],[-71.431758978,41.652120915],[-71.431667169,41.65211775],[-71.431579055,41.652109648],[-71.431504816,41.652100158],[-71.431426834,41.652084401],[-71.431347886,41.6520589],[-71.431267027,41.652024387],[-71.431190775,41.651987065],[-71.431117356,41.651951825],[-71.431040189,41.651915233],[-71.430963969,41.651877202],[-71.430887747,41.65184061],[-71.430816157,41.651806721],[-71.430749227,41.651778437],[-71.430672164,41.651758494],[-71.430588656,41.651749753],[-71.430505229,41.65175],[-71.430428267,41.651750251],[-71.430353139,41.651746272],[-71.430279795,41.651727726],[-71.430202654,41.651695296],[-71.430124571,41.651660762],[-71.430039051,41.651622792],[-71.429953564,41.651583405],[-71.429874534,41.651549579],[-71.429801169,41.651522708],[-71.429732429,41.651504828],[-71.429659213,41.651509197],[-71.429576775,41.651526161],[-71.429491643,41.651552844],[-71.429407447,41.651587896],[-71.429322361,41.651627774],[-71.429236416,41.651672545],[-71.429158789,41.651722856],[-71.429091406,41.651774522],[-71.429026762,41.651830329],[-71.428963121,41.651888949],[-71.428902255,41.651948258],[-71.428845103,41.652012394],[-71.428778712,41.652076593],[-71.428703993,41.652143577],[-71.428619031,41.65220781],[-71.428529439,41.6522679],[-71.428437933,41.652322433],[-71.428346429,41.652374175],[-71.428261419,41.652425898],[-71.428202356,41.652480336],[-71.428173932,41.652540236],[-71.42818076,41.652597208],[-71.428183864,41.652657013],[-71.42817398,41.652716147],[-71.428155771,41.652776008],[-71.428126401,41.652835198],[-71.428084991,41.652890951],[-71.428028736,41.652942577],[-71.427956607,41.652982462],[-71.427876158,41.653018156],[-71.4277929,41.653057371],[-71.427710612,41.653100725],[-71.427642256,41.653147564],[-71.427600791,41.65319705],[-71.427565853,41.653245832],[-71.427514178,41.653291172],[-71.42746996,41.65334834],[-71.427443446,41.653416566],[-71.427421595,41.653486875],[-71.427408958,41.653553005],[-71.427419526,41.653619036],[-71.427433837,41.653692021],[-71.42744165,41.65376706],[-71.427446634,41.653836609],[-71.427442355,41.653899863],[-71.427413938,41.653952147],[-71.427335387,41.654006595],[-71.427275338,41.654040862],[-71.427211689,41.654103666],[-71.427179522,41.654155216],[-71.427150155,41.65421093],[-71.427104996,41.654263936],[-71.427045909,41.654310026],[-71.42697378,41.654347783],[-71.42689325,41.654371676],[-71.426808034,41.654387928],[-71.426717293,41.654408361],[-71.426625628,41.654437186],[-71.426545175,41.654473566],[-71.426483234,41.654508539],[-71.426381435,41.654545705],[-71.426299987,41.654572365],[-71.426215787,41.65460602],[-71.426135305,41.65464105],[-71.426056656,41.654673931],[-71.425974343,41.654709669],[-71.425890196,41.654750253],[-71.425806934,41.654789443],[-71.425722758,41.654827947],[-71.425646964,41.654869909],[-71.425586014,41.654916706],[-71.425536197,41.654961337],[-71.425480802,41.655003953],[-71.425413282,41.655036818],[-71.425337382,41.655064166],[-71.425258759,41.655099197],[-71.425182963,41.655142554],[-71.425120181,41.65519143],[-71.425069416,41.655237456],[-71.4250169,41.655295373],[-71.4250199,41.655337774],[-71.425060084,41.655396735],[-71.425038105,41.655443397],[-71.424961139,41.655442935],[-71.4248627,41.655420299],[-71.424760724,41.655424783],[-71.424721938,41.655449251],[-71.424723232,41.655515961],[-71.424676286,41.655582206],[-71.424614371,41.65561926],[-71.424544125,41.655661156],[-71.424472934,41.655702411],[-71.424392478,41.655739521],[-71.424302672,41.655766905],[-71.424210014,41.655781801],[-71.424122889,41.655784831],[-71.424037566,41.655785117],[-71.423948611,41.655788146],[-71.423860563,41.655798173],[-71.423779954,41.655809554],[-71.423699371,41.655825075],[-71.423612291,41.655841323],[-71.423523352,41.655856906],[-71.423438107,41.655868993],[-71.423351919,41.655878975],[-71.42326479,41.655885526],[-71.423180414,41.655884372],[-71.423102479,41.655878351],[-71.423027348,41.655873041],[-71.42294386,41.655869097],[-71.42285391,41.655862405],[-71.422755572,41.655857879],[-71.422652656,41.655856781],[-71.422552487,41.655853626],[-71.422446766,41.655852526],[-71.422334576,41.655854257],[-71.422224271,41.65586086],[-71.422122291,41.655867423],[-71.422031445,41.655871158],[-71.421933244,41.655879095],[-71.421846068,41.655874485],[-71.421743569,41.655831078],[-71.4216982,41.655623919],[-71.421618459,41.655624162],[-71.42161536,41.655740268],[-71.421338385,41.655789111],[-71.421278074,41.655783718],[-71.421126671,41.655734102],[-71.421037659,41.655734384],[-71.420980049,41.655739284],[-71.420871073,41.655781769],[-71.420821059,41.655809429],[-71.420741517,41.655845851],[-71.420680488,41.655878718],[-71.420619512,41.65591856],[-71.420564111,41.655963209],[-71.420519841,41.656006447],[-71.420459853,41.656061589],[-71.420379392,41.656100068],[-71.420279424,41.656131696],[-71.42020719,41.65615065],[-71.420135877,41.656165466],[-71.420062676,41.656176849],[-71.419957921,41.656183386],[-71.419848505,41.656185116],[-71.419800809,41.656187919],[-71.419773454,41.656189523],[-71.419696515,41.656191116],[-71.419617657,41.656191381],[-71.419536084,41.656191621],[-71.419453566,41.65619257],[-71.419371991,41.656194868],[-71.419289468,41.656199293],[-71.419205144,41.656205797],[-71.419126366,41.656214386],[-71.419031872,41.656233439],[-71.418962539,41.656273297],[-71.418946152,41.656331053],[-71.418951854,41.65635539],[-71.418933436,41.656379779],[-71.418858353,41.656384185],[-71.418774914,41.656389295],[-71.418721275,41.656413796],[-71.418768715,41.656444977],[-71.418840183,41.656453787],[-71.418926421,41.656453505],[-71.419012659,41.656453268],[-71.419100752,41.656457195],[-71.419199163,41.656477046],[-71.419295706,41.656503185],[-71.419373792,41.656535646],[-71.419392526,41.656576595],[-71.419384331,41.656594702],[-71.419330633,41.656616344],[-71.419299208,41.65662906],[-71.419193609,41.656651604],[-71.419110223,41.656662294],[-71.419023093,41.656668796],[-71.418934077,41.656670471],[-71.418847837,41.656672103],[-71.418771836,41.656679299],[-71.4186912,41.656686491],[-71.418611458,41.656685337],[-71.418609422,41.656655468],[-71.418643461,41.656601795],[-71.418670056,41.656549558],[-71.41867348,41.656494628],[-71.418636103,41.65643912],[-71.418602395,41.656375222],[-71.41859092,41.656309877],[-71.418555548,41.656284947],[-71.418470227,41.656283811],[-71.418390531,41.656295167],[-71.418306253,41.656312808],[-71.418230296,41.656333199],[-71.41813685,41.656366865],[-71.418039606,41.656389436],[-71.417963526,41.656386157],[-71.417882792,41.656374573],[-71.417790931,41.65636026],[-71.417685161,41.65634875],[-71.417577531,41.656337261],[-71.417474567,41.656325729],[-71.417365078,41.656312844],[-71.41725004,41.656299977],[-71.417135001,41.656287819],[-71.41702182,41.656277035],[-71.416904919,41.656266225],[-71.416780581,41.656252688],[-71.416656244,41.656238464],[-71.416536544,41.656222849],[-71.416419619,41.656207167],[-71.416311049,41.656191491],[-71.41621086,41.656179984],[-71.416134761,41.656169065],[-71.416057724,41.656151926],[-71.415986157,41.65612642],[-71.415912767,41.656096041],[-71.415841202,41.656068431],[-71.415770643,41.656041508],[-71.415686959,41.656001448],[-71.415600598,41.65597943],[-71.415524697,41.656003319],[-71.415459924,41.656029914],[-71.415383826,41.656017646],[-71.41531596,41.655983749],[-71.415241819,41.65599163],[-71.415166039,41.656039851],[-71.415085596,41.656085965],[-71.415003224,41.656114057],[-71.414932897,41.656143437],[-71.41485246,41.656184703],[-71.414771076,41.656226699],[-71.414692445,41.656263072],[-71.414611979,41.656302942],[-71.414537092,41.656343502],[-71.414464956,41.656379879],[-71.414388186,41.656414881],[-71.414299367,41.656452709],[-71.414206827,41.656490489],[-71.414118006,41.656529712],[-71.414021777,41.656567535],[-71.413914394,41.65659986],[-71.413806043,41.656625919],[-71.413695803,41.656650558],[-71.413588372,41.656673141],[-71.413478136,41.656694326],[-71.413366013,41.656713429],[-71.413253897,41.656727684],[-71.413144559,41.656739127],[-71.4130426,41.656750576],[-71.41294253,41.656764085],[-71.412845267,41.656776155],[-71.412790096,41.656780435],[-71.412751639,41.656783425],[-71.412660789,41.656788524],[-71.412568997,41.656790902],[-71.41247163,41.656789776],[-71.412369604,41.65678382],[-71.41227313,41.656775788],[-71.412185004,41.656773251],[-71.412087686,41.656781181],[-71.411997728,41.656780723],[-71.411891935,41.656763673],[-71.411816755,41.656749963],[-71.411743435,41.656735567],[-71.41167378,41.656717699],[-71.411580904,41.656687417],[-71.411494523,41.656658466],[-71.411408162,41.656636445],[-71.41131164,41.656620019],[-71.411214248,41.65661473],[-71.411118763,41.656619893],[-71.411025265,41.656643811],[-71.410926229,41.656680279],[-71.410853129,41.656706225],[-71.410779057,41.65672938],[-71.410706819,41.656748374],[-71.410637361,41.65676458],[-71.4105679,41.656782867],[-71.410496606,41.656803211],[-71.410426256,41.656824974],[-71.410354047,41.656845363],[-71.410298101,41.656859178],[-71.410279951,41.656863646],[-71.410209548,41.656879165],[-71.41010581,41.65689754],[-71.410010368,41.656915212],[-71.40992517,41.656934927],[-71.409865948,41.656957361],[-71.409868745,41.656963606],[-71.409963436,41.656982113],[-71.410041442,41.657002734],[-71.410128646,41.657010829],[-71.410205564,41.657002977],[-71.41029453,41.656992961],[-71.41038169,41.656988546],[-71.410459572,41.656989705],[-71.410535623,41.656990862],[-71.410638471,41.656976648],[-71.410719857,41.656935387],[-71.410789144,41.656888581],[-71.410862767,41.656859617],[-71.410935402,41.656839983],[-71.411014031,41.656807615],[-71.411108407,41.656766432],[-71.411187011,41.656751765],[-71.411281296,41.656754788],[-71.411391299,41.6567696],[-71.411450233,41.656778496],[-71.411524879,41.656781504],[-71.411587724,41.656784502],[-71.411662377,41.656805188],[-71.411717322,41.656831736],[-71.411798822,41.656863381],[-71.411877715,41.656882606],[-71.411953868,41.656899084],[-71.41205502,41.656920362],[-71.412156207,41.65693814],[-71.41225454,41.65694686],[-71.412333246,41.656924439],[-71.412423082,41.656903285],[-71.412515763,41.656896746],[-71.412621488,41.656896438],[-71.412728127,41.656896816],[-71.412789907,41.656898052],[-71.412820828,41.656898625],[-71.412894104,41.65690051],[-71.412827489,41.656934077],[-71.412789834,41.656952641],[-71.412750744,41.656971891],[-71.412658234,41.657009715],[-71.412579455,41.657017568],[-71.412491356,41.657017821],[-71.412407923,41.657018055],[-71.412305001,41.65701976],[-71.412214275,41.657045762],[-71.41214684,41.65709879],[-71.412108263,41.657167071],[-71.412112367,41.657244235],[-71.412131296,41.657317226],[-71.412186272,41.657366414],[-71.412281972,41.657405754],[-71.412361862,41.65743335],[-71.412434312,41.657460253],[-71.412510559,41.657497589],[-71.412516326,41.657539993],[-71.412462826,41.657593718],[-71.412377775,41.657639849],[-71.412327987,41.657699797],[-71.412341367,41.657772098],[-71.412353852,41.657853408],[-71.412343009,41.657911144],[-71.412306219,41.657965523],[-71.412254579,41.658019226],[-71.412205714,41.658072886],[-71.412163318,41.658123806],[-71.412112618,41.658180987],[-71.412094216,41.65821299],[-71.412076497,41.658191502],[-71.412016886,41.658141601],[-71.411943491,41.658114696],[-71.411990402,41.658040155],[-71.412021618,41.657980948],[-71.412052739,41.657902278],[-71.412061689,41.657845912],[-71.412067898,41.657787508],[-71.412068457,41.657713069],[-71.412032944,41.657658247],[-71.411955754,41.65761883],[-71.411888879,41.657596092],[-71.411798995,41.657608167],[-71.411699914,41.65763279],[-71.411628595,41.657648995],[-71.411573091,41.657673514],[-71.411599475,41.657758265],[-71.411608168,41.657823632],[-71.411604791,41.657884805],[-71.411566041,41.657922487],[-71.411482651,41.657934567],[-71.411390711,41.657911169],[-71.411313549,41.657873169],[-71.41124754,41.657842039],[-71.41115853,41.657838814],[-71.411100175,41.65785153],[-71.411080519,41.657819612],[-71.411097058,41.657789643],[-71.411170208,41.657772731],[-71.411259301,41.657782908],[-71.411328975,41.65780981],[-71.411382817,41.657818702],[-71.411411474,41.657802647],[-71.411424149,41.657743471],[-71.411446094,41.657685011],[-71.411445857,41.657635636],[-71.411398292,41.657586384],[-71.411335112,41.657560173],[-71.411265675,41.6575826],[-71.411180497,41.657608583],[-71.411104372,41.657593521],[-71.411142157,41.657548201],[-71.41120225,41.657512548],[-71.411267171,41.657514451],[-71.411304226,41.657511552],[-71.411307685,41.657457309],[-71.411354783,41.657425213],[-71.411440948,41.657412404],[-71.411520552,41.657380883],[-71.411568546,41.65733971],[-71.411598822,41.657277048],[-71.411548458,41.65722226],[-71.411448148,41.657187787],[-71.41136369,41.657178986],[-71.41127567,41.657187609],[-71.41119233,41.657208721],[-71.411123857,41.657239496],[-71.411049036,41.657296726],[-71.41098909,41.657358793],[-71.410940273,41.657420868],[-71.410885758,41.65745856],[-71.410817407,41.65751161],[-71.410740608,41.65754311],[-71.410661804,41.657546822],[-71.410569965,41.657538746],[-71.410470664,41.657523758],[-71.410366754,41.657512243],[-71.410270254,41.657500664],[-71.410179413,41.657498146],[-71.410106162,41.657499758],[-71.410017117,41.657500009],[-71.409906786,41.657500334],[-71.409832571,41.657493621],[-71.409741575,41.657471618],[-71.409689453,41.657432813],[-71.409619749,41.65740591],[-71.409542662,41.657381082],[-71.409504516,41.657357588],[-71.409545078,41.657310875],[-71.409576345,41.657259992],[-71.409537092,41.657199609],[-71.409511744,41.657139191],[-71.409535546,41.657083477],[-71.409589124,41.657040914],[-71.409571426,41.657027087],[-71.409489971,41.657051653],[-71.409434609,41.65710533],[-71.409405201,41.6571569],[-71.409382311,41.657213964],[-71.409360336,41.657271051],[-71.409343993,41.657334386],[-71.409335077,41.657408156],[-71.409326264,41.657495075],[-71.409317478,41.657584807],[-71.409310495,41.657671088],[-71.409303492,41.65775037],[-71.409294603,41.657826198],[-71.409285764,41.65791035],[-71.409281561,41.657993134],[-71.409279195,41.658071025],[-71.409275837,41.658139196],[-71.409278057,41.658208743],[-71.409289544,41.658280334],[-71.40931871,41.658358112],[-71.409356147,41.658431735],[-71.409394532,41.658503232],[-71.409432921,41.658571276],[-71.409465725,41.658643477],[-71.409500469,41.658723365],[-71.409539818,41.658803232],[-71.409581032,41.658880289],[-71.409620332,41.658951786],[-71.40965503,41.659021245],[-71.409686871,41.659084412],[-71.409719611,41.659136489],[-71.409782964,41.659192614],[-71.409835088,41.659231441],[-71.409895567,41.659270206],[-71.409961547,41.659301292],[-71.410034971,41.659330279],[-71.410106534,41.659359974],[-71.410179952,41.659393123],[-71.410257089,41.659426984],[-71.41034072,41.659462908],[-71.410414213,41.659507904],[-71.410459917,41.659558549],[-71.410491836,41.659632168],[-71.410501488,41.659643175],[-71.410533823,41.65968002],[-71.410562914,41.65974737],[-71.410586763,41.659878727],[-71.410588938,41.659937846],[-71.41058925,41.659999045],[-71.410592337,41.660060246],[-71.410593621,41.660124189],[-71.410589295,41.660186825],[-71.410575727,41.660251535],[-71.410554746,41.660316925],[-71.410530044,41.660383066],[-71.410502567,41.660449229],[-71.410473231,41.660514704],[-71.410440176,41.660578735],[-71.410403405,41.660639356],[-71.410356471,41.66070484],[-71.410304825,41.660760646],[-71.410243712,41.660780998],[-71.410154622,41.660766658],[-71.410072965,41.660757835],[-71.410007151,41.660760094],[-71.410031461,41.660800363],[-71.410101091,41.660817569],[-71.410181879,41.660837483],[-71.410240451,41.660867213],[-71.410240792,41.660929098],[-71.410217925,41.660991765],[-71.410185862,41.661065585],[-71.410149161,41.661140773],[-71.41012533,41.661194406],[-71.410101494,41.661251492],[-71.41007769,41.661307206],[-71.410050136,41.661362231],[-71.410023533,41.661413049],[-71.409994094,41.66146391],[-71.409960994,41.661515477],[-71.409906617,41.661582396],[-71.409853164,41.66164234],[-71.409806103,41.661689071],[-71.409815739,41.661755811],[-71.409814212,41.661822566],[-71.409783014,41.661888062],[-71.409736993,41.661954232],[-71.409695483,41.662000922],[-71.409648481,41.662049071],[-71.409598614,41.662095776],[-71.409545972,41.662141862],[-71.409491535,41.66218582],[-71.409436121,41.662229777],[-71.409384395,41.662275818],[-71.409329953,41.662322566],[-71.409275479,41.662370045],[-71.40922009,41.662418164],[-71.409159148,41.662467742],[-71.40909354,41.662517294],[-71.409027043,41.662569658],[-71.408958711,41.662626183],[-71.408889466,41.662681311],[-71.408823884,41.662733653],[-71.408765715,41.662783897],[-71.408712158,41.662829936],[-71.408661383,41.662871129],[-71.408598555,41.662916474],[-71.408542201,41.662956291],[-71.408511704,41.662977238],[-71.408465317,41.662977384],[-71.408380931,41.662977637],[-71.408304898,41.662979932],[-71.408230748,41.662987099],[-71.408219715,41.663003808],[-71.40823471,41.663032315],[-71.408317236,41.663032038],[-71.408402562,41.663035971],[-71.408489778,41.663040591],[-71.408566745,41.663046621],[-71.408644762,41.663065162],[-71.40874132,41.663084357],[-71.408842429,41.663099371],[-71.408929668,41.663109548],[-71.409001137,41.663121154],[-71.409093032,41.663138996],[-71.409167305,41.663151999],[-71.409256398,41.663167026],[-71.409309327,41.663176879],[-71.409348293,41.663184159],[-71.409436472,41.663198499],[-71.409512576,41.663210794],[-71.409608144,41.663218873],[-71.409699053,41.663222078],[-71.40978996,41.663225969],[-71.409873455,41.663231271],[-71.409969936,41.663240746],[-71.410062723,41.663252985],[-71.410164835,41.66327008],[-71.410236304,41.663283102],[-71.410312409,41.663294688],[-71.410396872,41.663305548],[-71.410477616,41.663315742],[-71.410566683,41.663327315],[-71.41059544,41.663329304],[-71.411014958,41.663400433],[-71.412070643,41.663638606],[-71.412500545,41.663746557],[-71.412530181,41.663729771],[-71.412621106,41.66374411],[-71.412690739,41.663761956],[-71.412771529,41.663783285],[-71.412780526,41.663783315],[-71.412862443,41.66378372],[-71.412873274,41.663780298],[-71.412894867,41.663780131],[-71.412952402,41.66379042],[-71.412998884,41.663810421],[-71.413023997,41.663823589],[-71.413027835,41.663849275],[-71.413027089,41.663882686],[-71.414247198,41.664171848],[-71.414273033,41.664146047],[-71.414298071,41.664146661],[-71.41438895,41.664150571],[-71.414424228,41.664156749],[-71.41450787,41.664189857],[-71.414674086,41.664234553],[-71.415222158,41.664403299],[-71.415240576,41.664382388],[-71.415523837,41.664455961],[-71.415541514,41.664464939],[-71.415608444,41.664498125],[-71.415682766,41.664523634],[-71.415753346,41.664540814],[-71.415835059,41.664557958],[-71.415921402,41.664579289],[-71.416004022,41.664602676],[-71.416101527,41.664623925],[-71.416175776,41.664634819],[-71.416250025,41.664645736],[-71.416321496,41.664658732],[-71.416420833,41.664678609],[-71.416504431,41.664700601],[-71.416509064,41.664702343],[-71.41657689,41.664727503],[-71.41664757,41.664762796],[-71.416727522,41.664798004],[-71.416825047,41.664828308],[-71.416894736,41.664851753],[-71.416967224,41.664880049],[-71.417041599,41.664911823],[-71.417115026,41.664945676],[-71.417184762,41.664980237],[-71.417257297,41.665020356],[-71.417334521,41.665066013],[-71.41740897,41.665111668],[-71.4174797,41.66515668],[-71.417551345,41.66520096],[-71.417623883,41.665239021],[-71.417687066,41.665270786],[-71.417768931,41.66531297],[-71.417842432,41.665361437],[-71.417915021,41.665407113],[-71.417996856,41.665449297],[-71.418068401,41.665477591],[-71.418152024,41.665504454],[-71.418240256,41.665529215],[-71.418322017,41.665557517],[-71.418394554,41.665596904],[-71.418467144,41.665642625],[-71.418544342,41.665686177],[-71.418620654,41.665731147],[-71.418690439,41.665776843],[-71.418750041,41.665819079],[-71.418805868,41.665856464],[-71.418866335,41.665890354],[-71.418953727,41.665928333],[-71.419030895,41.665972616],[-71.419120227,41.666020339],[-71.419188966,41.666049363],[-71.419264261,41.666079008],[-71.419347906,41.666114217],[-71.419435297,41.666153614],[-71.419518965,41.666195066],[-71.419594308,41.666235186],[-71.41966593,41.666276012],[-71.419734805,41.666318231],[-71.419788199,41.666350491],[-71.419809228,41.666363175],[-71.419889259,41.666410913],[-71.419968368,41.666464254],[-71.420048423,41.666518236],[-71.420131227,41.66656808],[-71.420214951,41.666614402],[-71.42030048,41.666655855],[-71.420383236,41.666695957],[-71.42045858,41.666736739],[-71.420523733,41.666780373],[-71.420588887,41.666823984],[-71.420651206,41.666866198],[-71.420710783,41.666905666],[-71.420769418,41.666943052],[-71.420831771,41.666982499],[-71.420895978,41.667027527],[-71.420962105,41.667073906],[-71.421027256,41.667120306],[-71.42109338,41.667168766],[-71.421161362,41.667220017],[-71.421225622,41.66727202],[-71.42127875,41.667323284],[-71.421326305,41.667368346],[-71.421372917,41.667411327],[-71.42143998,41.667466053],[-71.421485565,41.667500434],[-71.421509821,41.6675187],[-71.421557348,41.667561658],[-71.421601185,41.667604682],[-71.421661803,41.667667066],[-71.421719619,41.667726679],[-71.421775527,41.6677752],[-71.421827692,41.667817453],[-71.421877996,41.66785904],[-71.421889242,41.667866046],[-71.421939377,41.667897091],[-71.422010117,41.667937915],[-71.422063169,41.667978086],[-71.422119079,41.668025235],[-71.422174983,41.668077895],[-71.422228166,41.668135448],[-71.422282268,41.66819021],[-71.422337231,41.668239417],[-71.42238942,41.668286563],[-71.42243978,41.668333707],[-71.422481753,41.66838016],[-71.422539624,41.66844604],[-71.422590893,41.668498056],[-71.422655134,41.668542352],[-71.422727604,41.668566482],[-71.422786319,41.668615668],[-71.422971171,41.668802245],[-71.423013622,41.668857892],[-71.423052389,41.668907887],[-71.42309305,41.668955116],[-71.423143074,41.669003793],[-71.42318925,41.669055943],[-71.423239204,41.66911164],[-71.423291019,41.669167361],[-71.423331683,41.669213173],[-71.423372309,41.669265273],[-71.423401677,41.66931947],[-71.423436587,41.669382087],[-71.423466905,41.669433426],[-71.423497253,41.669484765],[-71.423528514,41.669537545],[-71.423561634,41.669592453],[-71.423595703,41.669643863],[-71.423631661,41.669697333],[-71.423667559,41.669750116],[-71.423700712,41.669802211],[-71.423732854,41.6698592],[-71.42376131,41.669911956],[-71.42378885,41.669965396],[-71.423820078,41.67002099],[-71.423850397,41.670071642],[-71.423881658,41.670125131],[-71.423911062,41.670176492],[-71.423944992,41.670242607],[-71.423972429,41.670306568],[-71.423996119,41.670365609],[-71.424015208,41.670421857],[-71.424003535,41.670465964],[-71.423938547,41.670509762],[-71.423910002,41.670557974],[-71.42395676,41.670558234],[-71.424027191,41.670528482],[-71.424093769,41.670507829],[-71.424168687,41.670500538],[-71.424251996,41.670491925],[-71.424325093,41.670477611],[-71.424407485,41.670469661],[-71.424484195,41.670469391],[-71.424571116,41.6704748]]]]}}"}, +{"type": "precinct", "typeId": 3528, "areaId": 25996, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":335,\"NAME\":\"3528\",\"SHAPE_Length\":0.047560118496152,\"SHAPE_Area\":-0.00011876120087187},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.456314528,41.691472512],[-71.456306529,41.691818513],[-71.456299529,41.692336513],[-71.456314528,41.692593513],[-71.456329528,41.692881513],[-71.456367528,41.693137513],[-71.456390528,41.693303513],[-71.456589529,41.693771513],[-71.456711529,41.693953513],[-71.456886529,41.694211513],[-71.457581529,41.694916513],[-71.457642529,41.694974513],[-71.45819853,41.695480513],[-71.458649529,41.695907513],[-71.458862529,41.696190513],[-71.458923529,41.696270513],[-71.45915253,41.696788514],[-71.459198529,41.696890513],[-71.45929753,41.697082514],[-71.459488529,41.697483514],[-71.45950253,41.697519513],[-71.45951853,41.697559513],[-71.45953353,41.697581514],[-71.45960253,41.697737514],[-71.45977053,41.698116514],[-71.45987753,41.698393513],[-71.46000753,41.698710514],[-71.46018253,41.698706514],[-71.46095353,41.698649514],[-71.461258531,41.698625513],[-71.46145653,41.698603514],[-71.46159453,41.698573514],[-71.461756531,41.698550513],[-71.461823531,41.698541514],[-71.462517531,41.698409514],[-71.462623531,41.698388514],[-71.462898531,41.698328514],[-71.463173531,41.698273514],[-71.463280531,41.698248514],[-71.463615531,41.698169514],[-71.463913531,41.698055514],[-71.464477532,41.697849513],[-71.464508532,41.697839514],[-71.464737531,41.697780514],[-71.464882532,41.697741514],[-71.465248532,41.697693513],[-71.465561532,41.697672513],[-71.465980532,41.697694513],[-71.466057532,41.697698513],[-71.466499532,41.697733513],[-71.466530532,41.697462513],[-71.466583532,41.697029513],[-71.466667532,41.696514513],[-71.466728532,41.696067513],[-71.466774532,41.695764513],[-71.466820532,41.695497513],[-71.466881532,41.695037512],[-71.466911532,41.694897513],[-71.466888532,41.694762513],[-71.466743532,41.694504513],[-71.466538532,41.694238512],[-71.466295532,41.694027512],[-71.465790531,41.693588513],[-71.465645532,41.693388513],[-71.465569532,41.693007513],[-71.465515531,41.692526512],[-71.465507532,41.692499513],[-71.465401531,41.691822512],[-71.465393532,41.691642513],[-71.465434531,41.691380512],[-71.465454531,41.691249512],[-71.465576531,41.690791512],[-71.465645532,41.690700512],[-71.465658531,41.690698512],[-71.465897532,41.690667512],[-71.466423532,41.690656512],[-71.466957532,41.690600512],[-71.466881532,41.690291512],[-71.466827532,41.690044511],[-71.466797532,41.689698512],[-71.466751532,41.689537511],[-71.466621532,41.689413512],[-71.466258531,41.689069511],[-71.465999531,41.688776512],[-71.465851531,41.688809512],[-71.465607532,41.688886512],[-71.465462531,41.688930512],[-71.465462531,41.688808512],[-71.465431532,41.688412512],[-71.465408531,41.688017511],[-71.465378531,41.687643512],[-71.465347531,41.687117512],[-71.465340531,41.686942512],[-71.465301531,41.686488511],[-71.465218531,41.686003511],[-71.465187531,41.685666511],[-71.465141531,41.685275511],[-71.46475253,41.685338511],[-71.46424953,41.685403511],[-71.464165531,41.685404511],[-71.46387553,41.685420511],[-71.46356953,41.685413511],[-71.46331053,41.685400511],[-71.462974531,41.685385511],[-71.46284553,41.685379511],[-71.46240253,41.685384511],[-71.46183853,41.685396511],[-71.461535529,41.685413511],[-71.46131153,41.685425511],[-71.46086153,41.685493511],[-71.460350529,41.685599511],[-71.459923529,41.685698511],[-71.459869529,41.685704511],[-71.459496529,41.685757511],[-71.459335529,41.685756511],[-71.458954529,41.685732512],[-71.458542529,41.685687511],[-71.458161528,41.685619511],[-71.457809528,41.685577512],[-71.457573529,41.685568511],[-71.457397529,41.685572512],[-71.457077528,41.685565511],[-71.456413528,41.685606511],[-71.456375528,41.685607511],[-71.456161528,41.685621511],[-71.455910528,41.685635512],[-71.455658528,41.685650512],[-71.455009528,41.685686511],[-71.454758528,41.685714512],[-71.454384527,41.685830512],[-71.454186527,41.685920512],[-71.454140528,41.685984512],[-71.454124527,41.686056512],[-71.454147527,41.686173512],[-71.454452528,41.686639512],[-71.454819528,41.687113512],[-71.454979528,41.687321512],[-71.455360528,41.687862512],[-71.455444528,41.688045512],[-71.455689528,41.688567512],[-71.455704528,41.688643512],[-71.455879528,41.689360513],[-71.455956528,41.689615512],[-71.456062528,41.690004513],[-71.456154528,41.690313513],[-71.456230528,41.690640512],[-71.456261529,41.690779513],[-71.456262529,41.690800513],[-71.456273528,41.690938513],[-71.456314528,41.691472512]]]]}}"}, +{"type": "precinct", "typeId": 3529, "areaId": 25997, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":336,\"NAME\":\"3529\",\"SHAPE_Length\":0.13048906195079,\"SHAPE_Area\":-0.00044139706561438},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.475204535,41.697555513],[-71.475571535,41.697543513],[-71.475624535,41.697537513],[-71.475731535,41.697535513],[-71.476334536,41.697508513],[-71.476747535,41.697496513],[-71.476837536,41.697493514],[-71.477379536,41.697490513],[-71.478706536,41.697471513],[-71.478966537,41.697474513],[-71.479811536,41.697464513],[-71.479851536,41.697464513],[-71.480026536,41.697460513],[-71.480191537,41.697453513],[-71.480545537,41.697435513],[-71.480698537,41.697428513],[-71.480850537,41.697415513],[-71.481094536,41.697392513],[-71.481552537,41.697333513],[-71.481728537,41.697306513],[-71.482346537,41.697225513],[-71.482406537,41.697220513],[-71.483093538,41.697182512],[-71.483361537,41.697168513],[-71.484268538,41.697112513],[-71.484622538,41.697091513],[-71.484764538,41.697083513],[-71.484970538,41.697070513],[-71.485550538,41.697039513],[-71.485970538,41.697012513],[-71.486893539,41.696961513],[-71.487098539,41.696948512],[-71.487991539,41.696896513],[-71.488052539,41.696895512],[-71.488701539,41.696858513],[-71.489502539,41.696814512],[-71.48963254,41.696807513],[-71.49009754,41.696792512],[-71.49046354,41.696789513],[-71.49078454,41.696791513],[-71.49090654,41.696788513],[-71.49114254,41.696787513],[-71.49150154,41.696807513],[-71.49204254,41.696826513],[-71.49254654,41.696838512],[-71.492981541,41.696869513],[-71.49312654,41.696875512],[-71.493606541,41.696887513],[-71.493889541,41.696885513],[-71.494148541,41.696875512],[-71.494987541,41.696835512],[-71.495378541,41.696814512],[-71.495888542,41.696788513],[-71.496307541,41.696765512],[-71.497040542,41.696731513],[-71.497360542,41.696711513],[-71.497452542,41.696706512],[-71.497528542,41.696707512],[-71.497650543,41.696696512],[-71.497765543,41.696689513],[-71.498848543,41.696643512],[-71.498985543,41.696640512],[-71.500069543,41.696589512],[-71.501129543,41.696527512],[-71.501175544,41.696524512],[-71.501679544,41.696482512],[-71.501633543,41.696001512],[-71.501572543,41.695417512],[-71.501541543,41.695035512],[-71.501521543,41.694799512],[-71.501518543,41.694765511],[-71.501503543,41.694639512],[-71.501457543,41.694141511],[-71.501449544,41.694114512],[-71.501411544,41.693633511],[-71.501381543,41.693210511],[-71.501373544,41.693179512],[-71.501343543,41.692905512],[-71.501327543,41.692711512],[-71.501297543,41.692068512],[-71.501251543,41.691385511],[-71.501198543,41.690638511],[-71.501167543,41.690144511],[-71.501160543,41.689968511],[-71.501144543,41.689739511],[-71.501129543,41.689356511],[-71.501137543,41.688942511],[-71.501129543,41.688631511],[-71.501106543,41.68821851],[-71.501068543,41.68790251],[-71.501030543,41.68759851],[-71.500999543,41.68732451],[-71.500984543,41.687117511],[-71.500961543,41.68683851],[-71.500885543,41.68595751],[-71.500793542,41.68502351],[-71.500633543,41.68502651],[-71.499428542,41.68508051],[-71.499245542,41.68508451],[-71.498604542,41.68510651],[-71.498367542,41.68510351],[-71.498161542,41.68510751],[-71.497612541,41.68511051],[-71.496977541,41.68512451],[-71.496834541,41.68512751],[-71.496124541,41.68515651],[-71.495813541,41.68516751],[-71.495678541,41.68517151],[-71.495201541,41.68518951],[-71.494171541,41.68523451],[-71.493591541,41.68527851],[-71.49347754,41.685285511],[-71.49314954,41.68531551],[-71.49298154,41.68532851],[-71.49292254,41.68533151],[-71.49270654,41.685343511],[-71.49264554,41.68534451],[-71.49224154,41.68535351],[-71.49166154,41.68535251],[-71.491005539,41.68536651],[-71.490563539,41.685380511],[-71.489624539,41.68537351],[-71.489105539,41.68538551],[-71.488648539,41.685377511],[-71.488521539,41.68536951],[-71.488075538,41.685339511],[-71.487816539,41.68533251],[-71.487686538,41.68533451],[-71.487396538,41.685359511],[-71.487244538,41.68537151],[-71.487061538,41.68539351],[-71.486397538,41.68548851],[-71.486252538,41.68550551],[-71.486107537,41.68552651],[-71.485962538,41.685534511],[-71.485817538,41.685550511],[-71.485619537,41.68556451],[-71.485428537,41.685572511],[-71.485229537,41.685572511],[-71.484291538,41.685592511],[-71.484222537,41.68559851],[-71.483993537,41.68559951],[-71.483833537,41.685607511],[-71.483513537,41.685614511],[-71.483360537,41.68562251],[-71.483216537,41.68562051],[-71.483063536,41.68561951],[-71.482941537,41.68562251],[-71.482818537,41.68562451],[-71.482697537,41.685627511],[-71.482269536,41.68561851],[-71.482162537,41.685611511],[-71.482056536,41.685596511],[-71.481941536,41.685571511],[-71.481842536,41.685537511],[-71.481735537,41.685495511],[-71.481537537,41.685400511],[-71.481438536,41.68534851],[-71.481354536,41.685314511],[-71.481262536,41.685284511],[-71.481178536,41.685259511],[-71.481056536,41.68523051],[-71.480906536,41.685207511],[-71.480804536,41.68519051],[-71.480675536,41.68517551],[-71.480415536,41.68515451],[-71.480308536,41.685147511],[-71.480194536,41.685141511],[-71.480087536,41.685129511],[-71.479980536,41.685123511],[-71.479927536,41.685124511],[-71.479874536,41.685120511],[-71.479751535,41.685119511],[-71.479393536,41.685126511],[-71.479225535,41.68513051],[-71.479118536,41.685137511],[-71.478539535,41.685158511],[-71.477989535,41.68518851],[-71.477524535,41.685207511],[-71.477379535,41.685215511],[-71.477196535,41.685223511],[-71.477218535,41.688109512],[-71.477211536,41.688699511],[-71.477203535,41.689280512],[-71.477173536,41.689866512],[-71.477127535,41.690381511],[-71.477058535,41.690896512],[-71.477005535,41.691226512],[-71.476982535,41.691406512],[-71.476906535,41.691840512],[-71.476814535,41.692274512],[-71.476723536,41.692713512],[-71.476593535,41.693184512],[-71.476456535,41.693656512],[-71.476326535,41.694127512],[-71.476014535,41.695096512],[-71.475898535,41.695459513],[-71.475258535,41.697450513],[-71.475204535,41.697555513]]],[[[-71.463615531,41.698169514],[-71.463280531,41.698248514],[-71.463173531,41.698273514],[-71.462898531,41.698328514],[-71.462623531,41.698388514],[-71.462517531,41.698409514],[-71.461823531,41.698541514],[-71.461756531,41.698550513],[-71.46159453,41.698573514],[-71.46145653,41.698603514],[-71.461258531,41.698625513],[-71.46095353,41.698649514],[-71.46018253,41.698706514],[-71.46000753,41.698710514],[-71.46003753,41.698800513],[-71.46013653,41.699225514],[-71.46024353,41.699718514],[-71.46028153,41.699947514],[-71.46028953,41.700186514],[-71.46029753,41.700307514],[-71.46031253,41.700509514],[-71.46027453,41.700870514],[-71.46027453,41.701001515],[-71.46032753,41.701365514],[-71.46040353,41.701606515],[-71.46070153,41.702149515],[-71.460983531,41.702692515],[-71.46101453,41.702746514],[-71.461266531,41.703191514],[-71.46135953,41.703367514],[-71.461426531,41.703494515],[-71.46167053,41.703776514],[-71.461716531,41.703830515],[-71.462143531,41.704275515],[-71.462441531,41.704607515],[-71.462601531,41.704860515],[-71.462654531,41.704994515],[-71.462692531,41.705101515],[-71.462784531,41.705392515],[-71.462845531,41.705598515],[-71.462936532,41.705922515],[-71.462998531,41.706144515],[-71.463067532,41.706347516],[-71.463135531,41.706542516],[-71.463333531,41.707096515],[-71.463562531,41.707717515],[-71.463623531,41.707895515],[-71.463829532,41.708472516],[-71.463936532,41.708753516],[-71.464104532,41.709227516],[-71.464287532,41.709746516],[-71.464355532,41.709951516],[-71.464417532,41.710238516],[-71.464424532,41.710450516],[-71.464432532,41.710562516],[-71.464432532,41.710679516],[-71.464401532,41.710819516],[-71.464279532,41.711461516],[-71.464210532,41.711774516],[-71.464111532,41.712194517],[-71.464096532,41.712253517],[-71.463951533,41.712981516],[-71.463890532,41.713289517],[-71.463776532,41.713800516],[-71.463707532,41.714094516],[-71.463684532,41.714208516],[-71.463608532,41.714542517],[-71.463470532,41.715167517],[-71.463440532,41.715334517],[-71.463394532,41.715569517],[-71.463234532,41.716077517],[-71.463226532,41.716100517],[-71.463158532,41.716398517],[-71.463150532,41.716471517],[-71.463135532,41.716822517],[-71.463157532,41.716930517],[-71.463333532,41.716944517],[-71.463440532,41.716942517],[-71.463547532,41.716939517],[-71.463653532,41.716933518],[-71.463760532,41.716930517],[-71.463859532,41.716919517],[-71.463959532,41.716912517],[-71.464066533,41.716901517],[-71.465560533,41.716692517],[-71.465737533,41.716667517],[-71.466446533,41.716575517],[-71.466705533,41.716543517],[-71.467612534,41.716408517],[-71.468086533,41.716338517],[-71.468208533,41.716330517],[-71.468875534,41.716227517],[-71.469055534,41.716204517],[-71.469185534,41.716192517],[-71.469422534,41.716174517],[-71.469620534,41.716161517],[-71.469841534,41.716151517],[-71.470052535,41.716150517],[-71.470512534,41.716146517],[-71.470551534,41.716145517],[-71.470818534,41.716144517],[-71.470863534,41.716143517],[-71.470894534,41.716048517],[-71.470909535,41.715975517],[-71.470933534,41.715896517],[-71.470947535,41.715848517],[-71.471024535,41.715527517],[-71.471092534,41.715210517],[-71.471146535,41.714889516],[-71.471191534,41.714600516],[-71.471191534,41.714575517],[-71.471222535,41.714311516],[-71.471245534,41.714018516],[-71.471260535,41.713721516],[-71.471260535,41.713637517],[-71.471260535,41.713135516],[-71.471268534,41.712730516],[-71.471267534,41.712324516],[-71.471275534,41.711924516],[-71.471299535,41.711492516],[-71.471314534,41.711234516],[-71.471374534,41.710539516],[-71.471466534,41.709853516],[-71.471596534,41.709120515],[-71.471764535,41.708392516],[-71.471954534,41.707667515],[-71.472114535,41.707132515],[-71.472298534,41.706597515],[-71.472763535,41.705177515],[-71.473015535,41.704379514],[-71.473137534,41.704012514],[-71.473541535,41.702747514],[-71.473709535,41.702261514],[-71.473572535,41.702210514],[-71.473397534,41.702124514],[-71.473183534,41.702003514],[-71.473053535,41.701933514],[-71.472923534,41.701882514],[-71.472793534,41.701826514],[-71.472649534,41.701776514],[-71.472588535,41.701750514],[-71.472290534,41.701657514],[-71.472161535,41.701619514],[-71.471932534,41.701543514],[-71.471733534,41.701476514],[-71.469345533,41.700703514],[-71.468506533,41.700424514],[-71.468277533,41.700352514],[-71.467713533,41.700170514],[-71.467484532,41.700094514],[-71.467255532,41.700018514],[-71.467148533,41.699980514],[-71.467079532,41.699950514],[-71.467003532,41.699911514],[-71.466865532,41.699846514],[-71.466690532,41.699760514],[-71.466484533,41.699647514],[-71.466133532,41.699452514],[-71.466019532,41.699387513],[-71.465927532,41.699326514],[-71.465812532,41.699248514],[-71.465760532,41.699209514],[-71.465622532,41.699108514],[-71.465012532,41.698652514],[-71.464752531,41.698437514],[-71.464684532,41.698388514],[-71.464546531,41.698289514],[-71.464485531,41.698254513],[-71.464310531,41.698168514],[-71.464112531,41.698091514],[-71.463913531,41.698055514],[-71.463615531,41.698169514]]]]}}"}, +{"type": "precinct", "typeId": 3530, "areaId": 25998, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":337,\"NAME\":\"3530\",\"SHAPE_Length\":0.1416980302577,\"SHAPE_Area\":-0.00065339973571399},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.463913531,41.698055514],[-71.464112531,41.698091514],[-71.464310531,41.698168514],[-71.464485531,41.698254513],[-71.464546531,41.698289514],[-71.464684532,41.698388514],[-71.464752531,41.698437514],[-71.465012532,41.698652514],[-71.465622532,41.699108514],[-71.465760532,41.699209514],[-71.465812532,41.699248514],[-71.465927532,41.699326514],[-71.466019532,41.699387513],[-71.466133532,41.699452514],[-71.466484533,41.699647514],[-71.466690532,41.699760514],[-71.466865532,41.699846514],[-71.467003532,41.699911514],[-71.467079532,41.699950514],[-71.467148533,41.699980514],[-71.467255532,41.700018514],[-71.467484532,41.700094514],[-71.467713533,41.700170514],[-71.468277533,41.700352514],[-71.468506533,41.700424514],[-71.469345533,41.700703514],[-71.471733534,41.701476514],[-71.471932534,41.701543514],[-71.472161535,41.701619514],[-71.472290534,41.701657514],[-71.472588535,41.701750514],[-71.472649534,41.701776514],[-71.472793534,41.701826514],[-71.472923534,41.701882514],[-71.473053535,41.701933514],[-71.473183534,41.702003514],[-71.473397534,41.702124514],[-71.473572535,41.702210514],[-71.473709535,41.702261514],[-71.473770535,41.702053514],[-71.473961535,41.701464514],[-71.474411535,41.700085514],[-71.474537535,41.699692514],[-71.474681535,41.699243514],[-71.474785535,41.698920513],[-71.474983535,41.698294513],[-71.475121535,41.697863514],[-71.475204535,41.697555513],[-71.475258535,41.697450513],[-71.475898535,41.695459513],[-71.476014535,41.695096512],[-71.476326535,41.694127512],[-71.476456535,41.693656512],[-71.476593535,41.693184512],[-71.476723536,41.692713512],[-71.476814535,41.692274512],[-71.476906535,41.691840512],[-71.476982535,41.691406512],[-71.477005535,41.691226512],[-71.477058535,41.690896512],[-71.477127535,41.690381511],[-71.477173536,41.689866512],[-71.477203535,41.689280512],[-71.477211536,41.688699511],[-71.477218535,41.688109512],[-71.477196535,41.685223511],[-71.477379535,41.685215511],[-71.477524535,41.685207511],[-71.477989535,41.68518851],[-71.478539535,41.685158511],[-71.479118536,41.685137511],[-71.479225535,41.68513051],[-71.479393536,41.685126511],[-71.479751535,41.685119511],[-71.479874536,41.685120511],[-71.479927536,41.685124511],[-71.479980536,41.685123511],[-71.480087536,41.685129511],[-71.480194536,41.685141511],[-71.480308536,41.685147511],[-71.480415536,41.68515451],[-71.480675536,41.68517551],[-71.480804536,41.68519051],[-71.480906536,41.685207511],[-71.481056536,41.68523051],[-71.481178536,41.685259511],[-71.481262536,41.685284511],[-71.481354536,41.685314511],[-71.481438536,41.68534851],[-71.481537537,41.685400511],[-71.481735537,41.685495511],[-71.481842536,41.685537511],[-71.481941536,41.685571511],[-71.482056536,41.685596511],[-71.482162537,41.685611511],[-71.482269536,41.68561851],[-71.482697537,41.685627511],[-71.482818537,41.68562451],[-71.482941537,41.68562251],[-71.483063536,41.68561951],[-71.483216537,41.68562051],[-71.483360537,41.68562251],[-71.483513537,41.685614511],[-71.483833537,41.685607511],[-71.483993537,41.68559951],[-71.484222537,41.68559851],[-71.484291538,41.685592511],[-71.485229537,41.685572511],[-71.485428537,41.685572511],[-71.485619537,41.68556451],[-71.485817538,41.685550511],[-71.485962538,41.685534511],[-71.486107537,41.68552651],[-71.486252538,41.68550551],[-71.486397538,41.68548851],[-71.487061538,41.68539351],[-71.487244538,41.68537151],[-71.487396538,41.685359511],[-71.487686538,41.68533451],[-71.487816539,41.68533251],[-71.488075538,41.685339511],[-71.488521539,41.68536951],[-71.488648539,41.685377511],[-71.489105539,41.68538551],[-71.489624539,41.68537351],[-71.490563539,41.685380511],[-71.491005539,41.68536651],[-71.49166154,41.68535251],[-71.49224154,41.68535351],[-71.49264554,41.68534451],[-71.49270654,41.685343511],[-71.49292254,41.68533151],[-71.49298154,41.68532851],[-71.49314954,41.68531551],[-71.49347754,41.685285511],[-71.493591541,41.68527851],[-71.494171541,41.68523451],[-71.495201541,41.68518951],[-71.495678541,41.68517151],[-71.495813541,41.68516751],[-71.496124541,41.68515651],[-71.496834541,41.68512751],[-71.496977541,41.68512451],[-71.497612541,41.68511051],[-71.498161542,41.68510751],[-71.498367542,41.68510351],[-71.498604542,41.68510651],[-71.499245542,41.68508451],[-71.499428542,41.68508051],[-71.500633543,41.68502651],[-71.500793542,41.68502351],[-71.500763543,41.68481651],[-71.500740543,41.684623509],[-71.500710543,41.68434051],[-71.500702543,41.68425051],[-71.500702543,41.68421951],[-71.500695542,41.68410651],[-71.500458543,41.682207509],[-71.500122542,41.678814508],[-71.500091542,41.677730509],[-71.500076542,41.677433508],[-71.500076542,41.677397508],[-71.500077542,41.677347509],[-71.500069542,41.676996509],[-71.500053542,41.676699509],[-71.500023542,41.675574508],[-71.499985542,41.674958508],[-71.499985542,41.674877508],[-71.499939542,41.674252508],[-71.499901542,41.673775508],[-71.499832542,41.672885507],[-71.499740541,41.671572508],[-71.499718541,41.671343507],[-71.499702541,41.671087508],[-71.499672542,41.669876507],[-71.499611541,41.668824507],[-71.499581541,41.667820507],[-71.499532541,41.667445506],[-71.499512541,41.667286506],[-71.499481542,41.666728506],[-71.499481542,41.666656507],[-71.499473541,41.666517506],[-71.499344541,41.666520507],[-71.499283541,41.666525506],[-71.498291541,41.666551506],[-71.497665541,41.666570506],[-71.496361541,41.666602507],[-71.495018539,41.666636507],[-71.493698539,41.666674507],[-71.49298954,41.666689507],[-71.492722539,41.666699507],[-71.492233539,41.666710507],[-71.491814539,41.666724506],[-71.491394538,41.666733507],[-71.490974539,41.666751507],[-71.490608539,41.666777507],[-71.490265538,41.666798506],[-71.490051538,41.666816507],[-71.489883538,41.666833507],[-71.489502538,41.666877506],[-71.488731538,41.666984507],[-71.488098537,41.667097507],[-71.487991538,41.667113507],[-71.487793537,41.667153507],[-71.487435537,41.667237507],[-71.487322537,41.667266506],[-71.487083537,41.667326507],[-71.486732537,41.667424507],[-71.486320537,41.667541507],[-71.485970536,41.667652507],[-71.485916537,41.667666507],[-71.485519537,41.667806507],[-71.485077536,41.667973507],[-71.484642537,41.668153507],[-71.484215536,41.668338508],[-71.483620536,41.668617507],[-71.483040536,41.668913507],[-71.482735536,41.669082507],[-71.482483536,41.669222507],[-71.481941536,41.669581508],[-71.481770536,41.669704507],[-71.481415535,41.669961507],[-71.480927535,41.670359508],[-71.480446535,41.670775508],[-71.480391536,41.670829508],[-71.479996535,41.671212508],[-71.479576535,41.671667508],[-71.479294535,41.672011508],[-71.479019535,41.672355509],[-71.478768535,41.672716508],[-71.478500534,41.673145508],[-71.478051534,41.673959508],[-71.478012534,41.674029509],[-71.477486534,41.674331508],[-71.477333534,41.674454509],[-71.477295534,41.674489508],[-71.477277534,41.674517509],[-71.477269535,41.674544508],[-71.477256534,41.674568509],[-71.477233534,41.674593509],[-71.477209535,41.674613509],[-71.477184534,41.674624508],[-71.477110535,41.674667509],[-71.477039534,41.674673509],[-71.477002534,41.674649509],[-71.476967534,41.674646509],[-71.476921534,41.674633509],[-71.476883534,41.674621508],[-71.476837534,41.674608509],[-71.476799535,41.674591509],[-71.476692534,41.674548509],[-71.476585534,41.674510509],[-71.476555534,41.674502508],[-71.476506534,41.674484508],[-71.476372534,41.674447508],[-71.476273534,41.674418509],[-71.476166534,41.674393509],[-71.476036534,41.674360509],[-71.475914534,41.674326508],[-71.475784534,41.674298509],[-71.475594533,41.674252508],[-71.475395534,41.674207509],[-71.475205533,41.674166509],[-71.474960534,41.674108509],[-71.474838533,41.674084509],[-71.474754534,41.674072508],[-71.474571534,41.674049509],[-71.474417534,41.674022509],[-71.474229533,41.673989509],[-71.473793533,41.673913509],[-71.473083533,41.673739509],[-71.472199533,41.673515509],[-71.471703532,41.673417508],[-71.471619532,41.673406509],[-71.471130532,41.673335508],[-71.470390532,41.673288509],[-71.470123532,41.673262509],[-71.469833532,41.673228509],[-71.469345532,41.673184509],[-71.469177532,41.673170509],[-71.468788531,41.673151509],[-71.468268531,41.673148509],[-71.468277532,41.673279508],[-71.468216532,41.673907509],[-71.468208531,41.673929509],[-71.468201532,41.673997508],[-71.468186531,41.674065509],[-71.468186531,41.674141509],[-71.468155531,41.674259509],[-71.468155531,41.674313509],[-71.468140532,41.674372509],[-71.468117531,41.674445509],[-71.468101532,41.674521508],[-71.468086531,41.674634509],[-71.468079532,41.674702509],[-71.468078531,41.674779509],[-71.468079532,41.674855509],[-71.468101532,41.674936509],[-71.468109531,41.675008509],[-71.468124532,41.675070509],[-71.468163532,41.675124509],[-71.468224531,41.675194509],[-71.468262531,41.675234509],[-71.468315532,41.675282509],[-71.468376532,41.675326509],[-71.468513532,41.675404509],[-71.468590532,41.675439509],[-71.468666532,41.675464509],[-71.468742532,41.675494509],[-71.468888531,41.675558509],[-71.468941532,41.675598509],[-71.468971532,41.675651509],[-71.468986531,41.675718509],[-71.468994532,41.675799509],[-71.468994532,41.675952509],[-71.469002532,41.676024509],[-71.469002532,41.676092509],[-71.468994532,41.676164509],[-71.468971532,41.676245509],[-71.468933532,41.67631451],[-71.468903532,41.676387509],[-71.468857532,41.676532509],[-71.468834532,41.676600509],[-71.468803532,41.676654509],[-71.468750531,41.676705509],[-71.468674531,41.676747509],[-71.468628532,41.676811509],[-71.468567532,41.676849509],[-71.468491532,41.676882509],[-71.468407532,41.676911509],[-71.468323531,41.676944509],[-71.468246531,41.676982509],[-71.468178532,41.677019509],[-71.468109531,41.677038509],[-71.468010531,41.677063509],[-71.467957531,41.67712751],[-71.467895531,41.677165509],[-71.467827532,41.677202509],[-71.467758531,41.67724451],[-71.467682531,41.677277509],[-71.467621531,41.677319509],[-71.467568531,41.67736151],[-71.467491531,41.67740351],[-71.467422532,41.677454509],[-71.467369531,41.677505509],[-71.467308531,41.67755651],[-71.467247532,41.67759751],[-71.467117531,41.677668509],[-71.467072531,41.67771451],[-71.467041531,41.677782509],[-71.467026531,41.67785451],[-71.467026531,41.67791351],[-71.467018531,41.677976509],[-71.467018531,41.678093509],[-71.467026531,41.678174509],[-71.467064531,41.67823651],[-71.467125531,41.67829351],[-71.467171531,41.67836051],[-71.467178531,41.67843651],[-71.467163531,41.67850951],[-71.467201531,41.67857151],[-71.467247532,41.67862951],[-71.467285532,41.67869151],[-71.467316531,41.67874451],[-71.467377532,41.67877951],[-71.467446531,41.67880451],[-71.467506531,41.67886651],[-71.467568531,41.67892351],[-71.467628531,41.67896351],[-71.467690532,41.67900251],[-71.467758531,41.67903651],[-71.467819531,41.67907651],[-71.467926532,41.679163509],[-71.467995531,41.67919851],[-71.468079532,41.679223509],[-71.468178532,41.67923551],[-71.468285531,41.67923751],[-71.468384532,41.67924451],[-71.468475532,41.67926951],[-71.468559532,41.67929851],[-71.468651532,41.67933251],[-71.468735532,41.67937651],[-71.468811532,41.67941951],[-71.468880532,41.67945451],[-71.468948532,41.67947951],[-71.469025532,41.679496509],[-71.469124532,41.67952551],[-71.469215532,41.67955951],[-71.469299532,41.679593509],[-71.469513532,41.67971551],[-71.469589532,41.679767509],[-71.469627532,41.67981651],[-71.469665533,41.67986951],[-71.469727532,41.67993151],[-71.469797532,41.68002551],[-71.469559532,41.68021451],[-71.469528533,41.68028251],[-71.469498532,41.68036851],[-71.469459532,41.68052251],[-71.469421532,41.68073951],[-71.469398532,41.68082951],[-71.469353533,41.68105651],[-71.469315532,41.681228511],[-71.469223532,41.68168051],[-71.469124532,41.68215051],[-71.469063532,41.68254351],[-71.469040533,41.682864511],[-71.469040533,41.68332351],[-71.468941532,41.68396051],[-71.468895532,41.684245511],[-71.468888532,41.684335511],[-71.468857532,41.684516511],[-71.468796532,41.685003511],[-71.468513532,41.684996511],[-71.468109532,41.685023511],[-71.467811532,41.685038511],[-71.467537532,41.685057511],[-71.466798532,41.685106511],[-71.466743531,41.685110511],[-71.466530531,41.685133511],[-71.466019531,41.685175511],[-71.465675531,41.685210511],[-71.465233531,41.685264511],[-71.465141531,41.685275511],[-71.465187531,41.685666511],[-71.465218531,41.686003511],[-71.465301531,41.686488511],[-71.465340531,41.686942512],[-71.465347531,41.687117512],[-71.465378531,41.687643512],[-71.465408531,41.688017511],[-71.465431532,41.688412512],[-71.465462531,41.688808512],[-71.465462531,41.688930512],[-71.465607532,41.688886512],[-71.465851531,41.688809512],[-71.465999531,41.688776512],[-71.466258531,41.689069511],[-71.466621532,41.689413512],[-71.466751532,41.689537511],[-71.466797532,41.689698512],[-71.466827532,41.690044511],[-71.466881532,41.690291512],[-71.466957532,41.690600512],[-71.466423532,41.690656512],[-71.465897532,41.690667512],[-71.465658531,41.690698512],[-71.465645532,41.690700512],[-71.465576531,41.690791512],[-71.465454531,41.691249512],[-71.465434531,41.691380512],[-71.465393532,41.691642513],[-71.465401531,41.691822512],[-71.465507532,41.692499513],[-71.465515531,41.692526512],[-71.465569532,41.693007513],[-71.465645532,41.693388513],[-71.465790531,41.693588513],[-71.466295532,41.694027512],[-71.466538532,41.694238512],[-71.466743532,41.694504513],[-71.466888532,41.694762513],[-71.466911532,41.694897513],[-71.466881532,41.695037512],[-71.466820532,41.695497513],[-71.466774532,41.695764513],[-71.466728532,41.696067513],[-71.466667532,41.696514513],[-71.466583532,41.697029513],[-71.466530532,41.697462513],[-71.466499532,41.697733513],[-71.466057532,41.697698513],[-71.465980532,41.697694513],[-71.465561532,41.697672513],[-71.465248532,41.697693513],[-71.464882532,41.697741514],[-71.464737531,41.697780514],[-71.464508532,41.697839514],[-71.464477532,41.697849513],[-71.463913531,41.698055514]]]]}}"}, +{"type": "precinct", "typeId": 3531, "areaId": 25999, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":338,\"NAME\":\"3531\",\"SHAPE_Length\":0.14193350362176,\"SHAPE_Area\":-0.00061579871677491},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.453865528,41.685832511],[-71.454018528,41.685977511],[-71.454147527,41.686173512],[-71.454124527,41.686056512],[-71.454140528,41.685984512],[-71.454186527,41.685920512],[-71.454384527,41.685830512],[-71.454758528,41.685714512],[-71.455009528,41.685686511],[-71.455658528,41.685650512],[-71.455910528,41.685635512],[-71.456161528,41.685621511],[-71.456375528,41.685607511],[-71.456413528,41.685606511],[-71.457077528,41.685565511],[-71.457397529,41.685572512],[-71.457573529,41.685568511],[-71.457809528,41.685577512],[-71.458161528,41.685619511],[-71.458542529,41.685687511],[-71.458954529,41.685732512],[-71.459335529,41.685756511],[-71.459496529,41.685757511],[-71.459869529,41.685704511],[-71.459923529,41.685698511],[-71.460350529,41.685599511],[-71.46086153,41.685493511],[-71.46131153,41.685425511],[-71.461535529,41.685413511],[-71.46183853,41.685396511],[-71.46240253,41.685384511],[-71.46284553,41.685379511],[-71.462974531,41.685385511],[-71.46331053,41.685400511],[-71.46356953,41.685413511],[-71.46387553,41.685420511],[-71.464165531,41.685404511],[-71.46424953,41.685403511],[-71.46475253,41.685338511],[-71.465141531,41.685275511],[-71.465233531,41.685264511],[-71.465675531,41.685210511],[-71.466019531,41.685175511],[-71.466530531,41.685133511],[-71.466743531,41.685110511],[-71.466798532,41.685106511],[-71.467537532,41.685057511],[-71.467811532,41.685038511],[-71.468109532,41.685023511],[-71.468513532,41.684996511],[-71.468796532,41.685003511],[-71.468857532,41.684516511],[-71.468888532,41.684335511],[-71.468895532,41.684245511],[-71.468941532,41.68396051],[-71.469040533,41.68332351],[-71.469040533,41.682864511],[-71.469063532,41.68254351],[-71.469124532,41.68215051],[-71.469223532,41.68168051],[-71.469315532,41.681228511],[-71.469353533,41.68105651],[-71.469398532,41.68082951],[-71.469421532,41.68073951],[-71.469459532,41.68052251],[-71.469498532,41.68036851],[-71.469528533,41.68028251],[-71.469559532,41.68021451],[-71.469797532,41.68002551],[-71.469727532,41.67993151],[-71.469665533,41.67986951],[-71.469627532,41.67981651],[-71.469589532,41.679767509],[-71.469513532,41.67971551],[-71.469299532,41.679593509],[-71.469215532,41.67955951],[-71.469124532,41.67952551],[-71.469025532,41.679496509],[-71.468948532,41.67947951],[-71.468880532,41.67945451],[-71.468811532,41.67941951],[-71.468735532,41.67937651],[-71.468651532,41.67933251],[-71.468559532,41.67929851],[-71.468475532,41.67926951],[-71.468384532,41.67924451],[-71.468285531,41.67923751],[-71.468178532,41.67923551],[-71.468079532,41.679223509],[-71.467995531,41.67919851],[-71.467926532,41.679163509],[-71.467819531,41.67907651],[-71.467758531,41.67903651],[-71.467690532,41.67900251],[-71.467628531,41.67896351],[-71.467568531,41.67892351],[-71.467506531,41.67886651],[-71.467446531,41.67880451],[-71.467377532,41.67877951],[-71.467316531,41.67874451],[-71.467285532,41.67869151],[-71.467247532,41.67862951],[-71.467201531,41.67857151],[-71.467163531,41.67850951],[-71.467178531,41.67843651],[-71.467171531,41.67836051],[-71.467125531,41.67829351],[-71.467064531,41.67823651],[-71.467026531,41.678174509],[-71.467018531,41.678093509],[-71.467018531,41.677976509],[-71.467026531,41.67791351],[-71.467026531,41.67785451],[-71.467041531,41.677782509],[-71.467072531,41.67771451],[-71.467117531,41.677668509],[-71.467247532,41.67759751],[-71.467308531,41.67755651],[-71.467369531,41.677505509],[-71.467422532,41.677454509],[-71.467491531,41.67740351],[-71.467568531,41.67736151],[-71.467621531,41.677319509],[-71.467682531,41.677277509],[-71.467758531,41.67724451],[-71.467827532,41.677202509],[-71.467895531,41.677165509],[-71.467957531,41.67712751],[-71.468010531,41.677063509],[-71.468109531,41.677038509],[-71.468178532,41.677019509],[-71.468246531,41.676982509],[-71.468323531,41.676944509],[-71.468407532,41.676911509],[-71.468491532,41.676882509],[-71.468567532,41.676849509],[-71.468628532,41.676811509],[-71.468674531,41.676747509],[-71.468750531,41.676705509],[-71.468803532,41.676654509],[-71.468834532,41.676600509],[-71.468857532,41.676532509],[-71.468903532,41.676387509],[-71.468933532,41.67631451],[-71.468971532,41.676245509],[-71.468994532,41.676164509],[-71.469002532,41.676092509],[-71.469002532,41.676024509],[-71.468994532,41.675952509],[-71.468994532,41.675799509],[-71.468986531,41.675718509],[-71.468971532,41.675651509],[-71.468941532,41.675598509],[-71.468888531,41.675558509],[-71.468742532,41.675494509],[-71.468666532,41.675464509],[-71.468590532,41.675439509],[-71.468513532,41.675404509],[-71.468376532,41.675326509],[-71.468315532,41.675282509],[-71.468262531,41.675234509],[-71.468224531,41.675194509],[-71.468163532,41.675124509],[-71.468124532,41.675070509],[-71.468109531,41.675008509],[-71.468101532,41.674936509],[-71.468079532,41.674855509],[-71.468078531,41.674779509],[-71.468079532,41.674702509],[-71.468086531,41.674634509],[-71.468101532,41.674521508],[-71.468117531,41.674445509],[-71.468140532,41.674372509],[-71.468155531,41.674313509],[-71.468155531,41.674259509],[-71.468186531,41.674141509],[-71.468186531,41.674065509],[-71.468201532,41.673997508],[-71.468208531,41.673929509],[-71.468216532,41.673907509],[-71.468277532,41.673279508],[-71.468268531,41.673148509],[-71.468788531,41.673151509],[-71.469177532,41.673170509],[-71.469345532,41.673184509],[-71.469833532,41.673228509],[-71.470123532,41.673262509],[-71.470390532,41.673288509],[-71.471130532,41.673335508],[-71.471619532,41.673406509],[-71.471703532,41.673417508],[-71.472199533,41.673515509],[-71.473083533,41.673739509],[-71.473793533,41.673913509],[-71.474229533,41.673989509],[-71.474417534,41.674022509],[-71.474571534,41.674049509],[-71.474754534,41.674072508],[-71.474838533,41.674084509],[-71.474960534,41.674108509],[-71.475205533,41.674166509],[-71.475395534,41.674207509],[-71.475594533,41.674252508],[-71.475784534,41.674298509],[-71.475914534,41.674326508],[-71.476036534,41.674360509],[-71.476166534,41.674393509],[-71.476273534,41.674418509],[-71.476372534,41.674447508],[-71.476506534,41.674484508],[-71.476555534,41.674502508],[-71.476585534,41.674510509],[-71.476692534,41.674548509],[-71.476799535,41.674591509],[-71.476837534,41.674608509],[-71.476883534,41.674621508],[-71.476921534,41.674633509],[-71.476967534,41.674646509],[-71.477002534,41.674649509],[-71.477039534,41.674673509],[-71.477110535,41.674667509],[-71.477184534,41.674624508],[-71.477209535,41.674613509],[-71.477233534,41.674593509],[-71.477256534,41.674568509],[-71.477269535,41.674544508],[-71.477277534,41.674517509],[-71.477295534,41.674489508],[-71.477333534,41.674454509],[-71.477486534,41.674331508],[-71.478012534,41.674029509],[-71.478051534,41.673959508],[-71.478500534,41.673145508],[-71.478768535,41.672716508],[-71.479019535,41.672355509],[-71.479294535,41.672011508],[-71.479576535,41.671667508],[-71.479996535,41.671212508],[-71.480391536,41.670829508],[-71.480446535,41.670775508],[-71.480927535,41.670359508],[-71.481415535,41.669961507],[-71.481770536,41.669704507],[-71.481941536,41.669581508],[-71.482483536,41.669222507],[-71.482735536,41.669082507],[-71.483040536,41.668913507],[-71.483620536,41.668617507],[-71.484215536,41.668338508],[-71.484642537,41.668153507],[-71.485077536,41.667973507],[-71.485519537,41.667806507],[-71.485916537,41.667666507],[-71.485970536,41.667652507],[-71.486320537,41.667541507],[-71.486732537,41.667424507],[-71.487083537,41.667326507],[-71.487322537,41.667266506],[-71.487435537,41.667237507],[-71.487793537,41.667153507],[-71.487991538,41.667113507],[-71.488098537,41.667097507],[-71.488731538,41.666984507],[-71.489502538,41.666877506],[-71.489883538,41.666833507],[-71.490051538,41.666816507],[-71.490265538,41.666798506],[-71.490608539,41.666777507],[-71.490974539,41.666751507],[-71.491394538,41.666733507],[-71.491814539,41.666724506],[-71.492233539,41.666710507],[-71.492722539,41.666699507],[-71.49298954,41.666689507],[-71.493698539,41.666674507],[-71.495018539,41.666636507],[-71.496361541,41.666602507],[-71.497665541,41.666570506],[-71.498291541,41.666551506],[-71.499283541,41.666525506],[-71.499344541,41.666520507],[-71.499473541,41.666517506],[-71.499466541,41.666445507],[-71.499455541,41.666224506],[-71.499451541,41.666130507],[-71.499435541,41.665995507],[-71.499428541,41.665865506],[-71.499405542,41.665735506],[-71.499382541,41.665641506],[-71.499367541,41.665551506],[-71.499321541,41.665417506],[-71.499298541,41.665345506],[-71.499230541,41.665189506],[-71.499145541,41.665011506],[-71.498932541,41.664615506],[-71.498970541,41.664587506],[-71.499016541,41.664550506],[-71.499031541,41.664531506],[-71.499054541,41.664517506],[-71.499100541,41.664498506],[-71.499123541,41.664484506],[-71.499199541,41.664465506],[-71.499230541,41.664451506],[-71.499260541,41.664432506],[-71.499283541,41.664413506],[-71.499306541,41.664390506],[-71.499321541,41.664354506],[-71.499321541,41.664269506],[-71.499313541,41.664174506],[-71.499283541,41.663981506],[-71.499275541,41.663869506],[-71.499260541,41.663761506],[-71.499252541,41.663653506],[-71.499237541,41.663374506],[-71.499226541,41.662976505],[-71.499224541,41.662902505],[-71.498204541,41.662922505],[-71.498011541,41.662921505],[-71.49779754,41.662925506],[-71.49685354,41.662942506],[-71.49481554,41.662958505],[-71.494225539,41.662976505],[-71.494094539,41.662977505],[-71.493568539,41.662971506],[-71.492981539,41.662982506],[-71.492166539,41.662997506],[-71.490552538,41.663011506],[-71.490314538,41.663009506],[-71.490176538,41.663007506],[-71.488464538,41.662999506],[-71.488024537,41.663071506],[-71.487287537,41.663165506],[-71.484375536,41.663293506],[-71.480148535,41.663289506],[-71.479820535,41.663282507],[-71.479428535,41.663298506],[-71.476555533,41.663418507],[-71.476073533,41.663435507],[-71.475825534,41.663438507],[-71.472926532,41.663376507],[-71.472813532,41.663376507],[-71.472694532,41.663381507],[-71.469974532,41.663450507],[-71.469865531,41.663453507],[-71.468221531,41.663556507],[-71.466037531,41.663693507],[-71.46517853,41.663724507],[-71.46511853,41.663751507],[-71.465007529,41.663725507],[-71.46451453,41.663728507],[-71.464115529,41.663731507],[-71.463726529,41.663733507],[-71.459795528,41.663755507],[-71.459647528,41.663742507],[-71.459534528,41.663739507],[-71.458919528,41.663742507],[-71.458530527,41.663742507],[-71.458290528,41.663713507],[-71.456749527,41.663773507],[-71.455658527,41.663796507],[-71.455368527,41.663802507],[-71.454903526,41.663812508],[-71.453972526,41.663827507],[-71.452835526,41.663861507],[-71.452301526,41.663886507],[-71.451912526,41.663898507],[-71.451218525,41.663931508],[-71.451088525,41.663938507],[-71.450127525,41.663972507],[-71.450127525,41.664004508],[-71.450188525,41.665061508],[-71.450188525,41.665183507],[-71.450188525,41.665246508],[-71.450172525,41.665471508],[-71.450119525,41.665697508],[-71.449982525,41.666200508],[-71.449776525,41.666821508],[-71.449768525,41.666858508],[-71.449486525,41.667454508],[-71.449471525,41.667485508],[-71.449371525,41.667681508],[-71.449150524,41.668159508],[-71.449036525,41.668427508],[-71.448891525,41.668772508],[-71.448830525,41.668913508],[-71.448639525,41.669349509],[-71.448471524,41.669803508],[-71.448364525,41.670143509],[-71.448280525,41.670478509],[-71.448265525,41.670555509],[-71.448187525,41.671168508],[-71.448163525,41.671350509],[-71.448105525,41.671792509],[-71.448090525,41.672153509],[-71.448074525,41.672424509],[-71.448074525,41.672451509],[-71.448097524,41.672770509],[-71.448128525,41.67319251],[-71.448204525,41.673862509],[-71.448273524,41.674410509],[-71.448342525,41.674958509],[-71.448349525,41.675030509],[-71.448357525,41.675088509],[-71.448425525,41.67573951],[-71.448494525,41.67636851],[-71.448506525,41.67648751],[-71.448525526,41.676686509],[-71.448555525,41.67698451],[-71.448570525,41.67709251],[-71.448822525,41.67800551],[-71.449005525,41.67854251],[-71.449074525,41.67872551],[-71.449210525,41.67902751],[-71.449364526,41.67936751],[-71.449387525,41.67941651],[-71.449417526,41.67948351],[-71.449692526,41.68008051],[-71.449743526,41.68019751],[-71.449974526,41.68072351],[-71.450256526,41.681410511],[-71.450403526,41.681675511],[-71.450691526,41.682194511],[-71.451034526,41.682772511],[-71.451080527,41.682829511],[-71.451660527,41.683573511],[-71.452240527,41.684187511],[-71.452293526,41.684240511],[-71.452377527,41.684328512],[-71.452568527,41.684531511],[-71.452591527,41.684553511],[-71.453590527,41.685545511],[-71.453865528,41.685832511]]]]}}"}, +{"type": "precinct", "typeId": 3532, "areaId": 26006, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":345,\"NAME\":\"3532\",\"SHAPE_Length\":0.10747044158207,\"SHAPE_Area\":-0.00046247983367314},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.470863534,41.716143517],[-71.470840534,41.716215516],[-71.470825534,41.716274516],[-71.470735535,41.716553517],[-71.470734535,41.716555517],[-71.470688534,41.716696517],[-71.470528534,41.717123517],[-71.470345535,41.717568517],[-71.470149535,41.717990517],[-71.470138534,41.718014517],[-71.469917535,41.718451518],[-71.469597534,41.719007517],[-71.469246534,41.719546518],[-71.469147534,41.719688517],[-71.469382534,41.719757518],[-71.469432534,41.719772518],[-71.469720535,41.719857518],[-71.469688534,41.719906517],[-71.469642535,41.719970518],[-71.469604535,41.720038517],[-71.469559534,41.720102518],[-71.469521534,41.720170518],[-71.469490534,41.720234517],[-71.469475534,41.720261518],[-71.469452534,41.720293517],[-71.469414534,41.720362518],[-71.469383534,41.720421518],[-71.469345534,41.720480518],[-71.469284534,41.720527517],[-71.469238534,41.720568518],[-71.469192534,41.720614518],[-71.469154534,41.720669518],[-71.469124534,41.720728518],[-71.469116535,41.720792518],[-71.469116535,41.720850518],[-71.469109534,41.720918518],[-71.469101534,41.720981518],[-71.469063534,41.721000518],[-71.469002535,41.721001518],[-71.469002535,41.721064518],[-71.469048534,41.721144518],[-71.469124534,41.721251518],[-71.469177535,41.721308518],[-71.469238534,41.721365518],[-71.469307534,41.721422518],[-71.469368535,41.721480518],[-71.469490534,41.721603518],[-71.469612534,41.721736518],[-71.469681535,41.721806518],[-71.469818535,41.721938518],[-71.469879535,41.721995518],[-71.469948535,41.722053518],[-71.470016535,41.722105518],[-71.470049535,41.722128518],[-71.470146535,41.722197518],[-71.470215534,41.722231518],[-71.470268535,41.722262518],[-71.470352534,41.722300518],[-71.470505534,41.722387518],[-71.470573535,41.722422518],[-71.470642534,41.722461518],[-71.470711535,41.722504518],[-71.470863535,41.722591519],[-71.470947535,41.722634518],[-71.471039535,41.722668519],[-71.471115535,41.722689519],[-71.471191535,41.722701518],[-71.471268535,41.722722518],[-71.471443535,41.722741518],[-71.471535535,41.722757518],[-71.471603535,41.722773518],[-71.471680535,41.722799518],[-71.471733535,41.722811518],[-71.471832535,41.722841518],[-71.471955535,41.722901518],[-71.472038535,41.722940518],[-71.472122536,41.722974518],[-71.472199536,41.723017518],[-71.472275536,41.723070518],[-71.472328535,41.723109518],[-71.472382535,41.723153518],[-71.472443535,41.723197518],[-71.472496535,41.723250518],[-71.472542535,41.723298518],[-71.472595535,41.723337518],[-71.472671535,41.723385518],[-71.472748535,41.723429519],[-71.472801536,41.723464518],[-71.472961535,41.723523518],[-71.473023535,41.723558518],[-71.473076536,41.723602519],[-71.473121535,41.723650518],[-71.473198535,41.723775518],[-71.473236535,41.723846518],[-71.473266536,41.723922518],[-71.473282536,41.723994519],[-71.473305536,41.724065518],[-71.473290536,41.724138518],[-71.473259536,41.724192518],[-71.473213536,41.724261518],[-71.473160535,41.724321519],[-71.473091536,41.724363519],[-71.473053536,41.724354518],[-71.473045536,41.724291518],[-71.473053536,41.724233518],[-71.473076536,41.724169519],[-71.473084536,41.724102518],[-71.473061535,41.724052519],[-71.473015536,41.724040518],[-71.472938536,41.724051519],[-71.472855536,41.724070519],[-71.472778536,41.724108519],[-71.472694535,41.724218518],[-71.472664536,41.724273518],[-71.472633535,41.724332518],[-71.472603536,41.724387518],[-71.472572535,41.724432518],[-71.472519535,41.724496519],[-71.472504536,41.724564518],[-71.472534535,41.724613519],[-71.472580536,41.724671519],[-71.472610535,41.724738518],[-71.472595535,41.724796518],[-71.472466536,41.724885519],[-71.472443535,41.724944519],[-71.472473536,41.725002519],[-71.472481535,41.725074518],[-71.472420535,41.725106519],[-71.472389536,41.725139519],[-71.472412536,41.725192518],[-71.472481535,41.725227518],[-71.472519535,41.725275519],[-71.472527536,41.725343518],[-71.472496535,41.725398519],[-71.472490536,41.725400519],[-71.472466536,41.725412519],[-71.472369536,41.725474519],[-71.472342535,41.725489519],[-71.472708535,41.725709519],[-71.473396536,41.726135519],[-71.473663536,41.726291519],[-71.473831536,41.726395518],[-71.474007536,41.726500519],[-71.474090536,41.726552518],[-71.474724536,41.726917519],[-71.474968537,41.727051519],[-71.475410537,41.727303519],[-71.475746537,41.727570519],[-71.475807537,41.727614519],[-71.476006537,41.727808519],[-71.476128537,41.727918519],[-71.476402537,41.728281519],[-71.476517537,41.728450519],[-71.476647537,41.728685519],[-71.476730537,41.728823519],[-71.476792537,41.728980519],[-71.476875537,41.72929752],[-71.476883537,41.729383519],[-71.476898538,41.729603519],[-71.476890537,41.730085519],[-71.476875537,41.73061752],[-71.476868537,41.730784519],[-71.476868537,41.73099552],[-71.476898538,41.73132852],[-71.476929537,41.731548519],[-71.477013538,41.73196952],[-71.477676538,41.731953519],[-71.477840537,41.73194752],[-71.478264538,41.731934519],[-71.479286538,41.73190952],[-71.479788538,41.73188152],[-71.479935538,41.73189252],[-71.481796539,41.73184452],[-71.482142539,41.73183352],[-71.48385854,41.73178752],[-71.483887539,41.731686519],[-71.48459654,41.729320519],[-71.48457854,41.729177519],[-71.48459154,41.729089519],[-71.48459354,41.729076519],[-71.484664539,41.729034519],[-71.48471354,41.728949519],[-71.48474954,41.728853519],[-71.484781539,41.728732519],[-71.48481054,41.728626519],[-71.485054539,41.727801518],[-71.48548154,41.726401518],[-71.48549754,41.726369519],[-71.48550754,41.726336519],[-71.48555054,41.726327518],[-71.48560354,41.726295519],[-71.48570254,41.726229518],[-71.48576454,41.726183518],[-71.48580254,41.726133518],[-71.48586354,41.726073518],[-71.48590154,41.726027518],[-71.48595454,41.725976518],[-71.48604654,41.725875518],[-71.48609954,41.725820518],[-71.48614554,41.725769519],[-71.48622154,41.725669519],[-71.48627554,41.725600518],[-71.48632854,41.725495519],[-71.48636654,41.725436519],[-71.48641254,41.725390518],[-71.48647354,41.725335518],[-71.48652654,41.725297518],[-71.48658054,41.725242519],[-71.48663454,41.725191518],[-71.48668754,41.725132518],[-71.486748541,41.725076518],[-71.48680154,41.725012518],[-71.486862541,41.724943518],[-71.48693154,41.724879518],[-71.48698454,41.724810518],[-71.48704554,41.724741518],[-71.48710654,41.724681518],[-71.48716754,41.724626518],[-71.48722154,41.724566518],[-71.48726754,41.724520518],[-71.48732754,41.724451518],[-71.487389541,41.724387518],[-71.48790054,41.723953518],[-71.48798454,41.723892518],[-71.48803754,41.723851518],[-71.48809854,41.723800518],[-71.48815954,41.723753518],[-71.488220541,41.723712518],[-71.48827354,41.723665517],[-71.488327541,41.723624518],[-71.488418541,41.723532518],[-71.488472541,41.723490517],[-71.48854854,41.723443518],[-71.488617541,41.723383518],[-71.488754541,41.723272518],[-71.488808541,41.723231518],[-71.488861541,41.723180517],[-71.488930541,41.723120517],[-71.489082541,41.723008518],[-71.489158541,41.722957518],[-71.489235541,41.722911518],[-71.489426541,41.722780518],[-71.489494541,41.722747518],[-71.489581541,41.722703518],[-71.489655541,41.722654517],[-71.489700541,41.722612517],[-71.489754541,41.722571518],[-71.489807541,41.722533518],[-71.489868541,41.722492518],[-71.489929541,41.722436517],[-71.489990541,41.722376518],[-71.490036541,41.722312518],[-71.490074541,41.722257518],[-71.490112541,41.722194518],[-71.490151541,41.722139518],[-71.490173541,41.722080518],[-71.490189541,41.722016517],[-71.490196541,41.721953517],[-71.490211541,41.721836517],[-71.490227541,41.721723517],[-71.490227541,41.721660517],[-71.490257542,41.721542517],[-71.490273541,41.721470517],[-71.490280541,41.721411517],[-71.490280541,41.721235517],[-71.490272541,41.721181517],[-71.490257541,41.721110517],[-71.490234541,41.721038517],[-71.490219542,41.720957517],[-71.490196541,41.720881517],[-71.490120541,41.720656517],[-71.490059541,41.720461517],[-71.490036541,41.720394517],[-71.490013541,41.720331517],[-71.489990541,41.720273517],[-71.489960541,41.720207517],[-71.489922541,41.720144517],[-71.489861541,41.720011517],[-71.48983054,41.719935517],[-71.489807541,41.719859517],[-71.489776541,41.719787517],[-71.489769541,41.719720517],[-71.489754541,41.719657517],[-71.489746541,41.719599517],[-71.489731541,41.719446517],[-71.489731541,41.718987517],[-71.489738541,41.718910517],[-71.48975454,41.718838517],[-71.489776541,41.718765517],[-71.48979254,41.718684517],[-71.489815541,41.718602517],[-71.489845541,41.718529517],[-71.489883541,41.718470517],[-71.489914541,41.718406517],[-71.489952541,41.718351517],[-71.489983541,41.718288517],[-71.490028541,41.718228516],[-71.490066541,41.718169516],[-71.490105541,41.718123517],[-71.490165541,41.718081517],[-71.490227541,41.718044517],[-71.490288541,41.718011516],[-71.490349541,41.717969517],[-71.490417541,41.717932516],[-71.490471541,41.717894516],[-71.490539541,41.717834516],[-71.490585541,41.717766517],[-71.490593541,41.717712517],[-71.490578541,41.717635517],[-71.489876541,41.718214517],[-71.48954054,41.718887516],[-71.48954054,41.719423517],[-71.489494541,41.719375517],[-71.48947954,41.719253517],[-71.48947954,41.718947517],[-71.489495541,41.718798517],[-71.489510541,41.718721517],[-71.489533541,41.718667517],[-71.489571541,41.718612517],[-71.489594541,41.718553517],[-71.489670541,41.718434517],[-71.489716541,41.718375517],[-71.489784541,41.718247516],[-71.489815541,41.718192517],[-71.489868541,41.718070516],[-71.489906541,41.718015516],[-71.489952541,41.717955516],[-71.490013541,41.717891517],[-71.490089541,41.717799516],[-71.49018154,41.717707517],[-71.490234541,41.717665516],[-71.490288541,41.717633517],[-71.490379541,41.717595517],[-71.490463541,41.717557517],[-71.490539541,41.717524516],[-71.490631541,41.717499517],[-71.490730541,41.717475517],[-71.490814541,41.717477517],[-71.490906541,41.717475517],[-71.491012541,41.717477517],[-71.491119541,41.717475517],[-71.491219541,41.717486516],[-71.491310542,41.717498517],[-71.491409542,41.717509516],[-71.491501542,41.717516517],[-71.491585542,41.717524516],[-71.491661542,41.717535517],[-71.491738542,41.717538517],[-71.491821541,41.717536517],[-71.491913542,41.717539517],[-71.492088542,41.717567516],[-71.492172541,41.717578517],[-71.492279542,41.717581516],[-71.492348541,41.717602516],[-71.492417542,41.717632517],[-71.492439542,41.717694517],[-71.492470542,41.717752517],[-71.492531542,41.717791517],[-71.492615542,41.717794517],[-71.492706542,41.717778516],[-71.492821542,41.717789517],[-71.492874541,41.717820516],[-71.492892541,41.717834516],[-71.493338542,41.717458517],[-71.493446542,41.717366516],[-71.493584542,41.717246517],[-71.493889542,41.716974517],[-71.493958542,41.716914517],[-71.494179542,41.716675516],[-71.494629542,41.716093516],[-71.495216542,41.715391516],[-71.495255542,41.715341516],[-71.495415542,41.715130516],[-71.495560543,41.714952516],[-71.495834543,41.714626516],[-71.496597542,41.713717516],[-71.496773542,41.713507515],[-71.496826543,41.713438516],[-71.496887543,41.713374515],[-71.496948542,41.713305516],[-71.497002543,41.713263516],[-71.497055543,41.713217515],[-71.497116543,41.713175515],[-71.497185543,41.713133516],[-71.497269543,41.713077515],[-71.497437543,41.712974516],[-71.497490543,41.712946515],[-71.497566543,41.712913516],[-71.497734543,41.712846515],[-71.497879543,41.712780516],[-71.497963543,41.712747515],[-71.498449544,41.712545516],[-71.498535543,41.712509516],[-71.499115543,41.712285515],[-71.499557544,41.712109515],[-71.499649544,41.712071515],[-71.500015544,41.711928515],[-71.500253544,41.711831515],[-71.500320544,41.711804515],[-71.500382544,41.711780515],[-71.500481544,41.711733515],[-71.500557544,41.711695515],[-71.500633544,41.711667515],[-71.500717544,41.711633515],[-71.500786544,41.711614515],[-71.500507544,41.711597515],[-71.500443544,41.711594515],[-71.500252544,41.711571515],[-71.499321544,41.711447515],[-71.499008544,41.711400515],[-71.497231543,41.711061515],[-71.495705542,41.710765515],[-71.495438542,41.710712515],[-71.494888542,41.710612515],[-71.494393542,41.710519515],[-71.492981542,41.710257515],[-71.492577542,41.710180515],[-71.492477541,41.710160515],[-71.491440541,41.709952515],[-71.491287541,41.709929515],[-71.490562541,41.709791515],[-71.490410541,41.709763515],[-71.490174541,41.709719515],[-71.489922541,41.709675515],[-71.48977654,41.709646515],[-71.48941054,41.709578515],[-71.48884654,41.709468515],[-71.48811354,41.709336515],[-71.48798354,41.709307515],[-71.487724539,41.709236515],[-71.487610539,41.709193515],[-71.48750354,41.709155515],[-71.48731154,41.709071515],[-71.487259539,41.709048515],[-71.48647354,41.708655515],[-71.485962539,41.708414515],[-71.485176539,41.708035515],[-71.484314538,41.707621515],[-71.483841539,41.707402514],[-71.483727538,41.707346515],[-71.482559538,41.706790515],[-71.482125538,41.706583514],[-71.481812538,41.706432515],[-71.480606537,41.705850515],[-71.480133537,41.705608514],[-71.479747537,41.705415514],[-71.479584537,41.705332515],[-71.477951537,41.704489515],[-71.477699537,41.704360514],[-71.476746535,41.703862514],[-71.476448536,41.703711515],[-71.476159536,41.703559514],[-71.475800536,41.703369514],[-71.475212535,41.703062514],[-71.475052535,41.702980514],[-71.474251535,41.702561514],[-71.474129535,41.702500514],[-71.474030535,41.702448514],[-71.473709535,41.702261514],[-71.473541535,41.702747514],[-71.473137534,41.704012514],[-71.473015535,41.704379514],[-71.472763535,41.705177515],[-71.472298534,41.706597515],[-71.472114535,41.707132515],[-71.471954534,41.707667515],[-71.471764535,41.708392516],[-71.471596534,41.709120515],[-71.471466534,41.709853516],[-71.471374534,41.710539516],[-71.471314534,41.711234516],[-71.471299535,41.711492516],[-71.471275534,41.711924516],[-71.471267534,41.712324516],[-71.471268534,41.712730516],[-71.471260535,41.713135516],[-71.471260535,41.713637517],[-71.471260535,41.713721516],[-71.471245534,41.714018516],[-71.471222535,41.714311516],[-71.471191534,41.714575517],[-71.471191534,41.714600516],[-71.471146535,41.714889516],[-71.471092534,41.715210517],[-71.471024535,41.715527517],[-71.470947535,41.715848517],[-71.470933534,41.715896517],[-71.470909535,41.715975517],[-71.470894534,41.716048517],[-71.470863534,41.716143517]]]]}}"}, +{"type": "precinct", "typeId": 3533, "areaId": 26000, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":339,\"NAME\":\"3533\",\"SHAPE_Length\":0.10360008516403,\"SHAPE_Area\":-0.00048773641766088},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.473709535,41.702261514],[-71.474030535,41.702448514],[-71.474129535,41.702500514],[-71.474251535,41.702561514],[-71.475052535,41.702980514],[-71.475212535,41.703062514],[-71.475800536,41.703369514],[-71.476159536,41.703559514],[-71.476448536,41.703711515],[-71.476746535,41.703862514],[-71.477699537,41.704360514],[-71.477951537,41.704489515],[-71.479584537,41.705332515],[-71.479747537,41.705415514],[-71.480133537,41.705608514],[-71.480606537,41.705850515],[-71.481812538,41.706432515],[-71.482125538,41.706583514],[-71.482559538,41.706790515],[-71.483727538,41.707346515],[-71.483841539,41.707402514],[-71.484314538,41.707621515],[-71.485176539,41.708035515],[-71.485962539,41.708414515],[-71.48647354,41.708655515],[-71.487259539,41.709048515],[-71.48731154,41.709071515],[-71.48750354,41.709155515],[-71.487610539,41.709193515],[-71.487724539,41.709236515],[-71.48798354,41.709307515],[-71.48811354,41.709336515],[-71.48884654,41.709468515],[-71.48941054,41.709578515],[-71.48977654,41.709646515],[-71.489922541,41.709675515],[-71.490174541,41.709719515],[-71.490410541,41.709763515],[-71.490562541,41.709791515],[-71.491287541,41.709929515],[-71.491440541,41.709952515],[-71.492477541,41.710160515],[-71.492577542,41.710180515],[-71.492981542,41.710257515],[-71.494393542,41.710519515],[-71.494888542,41.710612515],[-71.495438542,41.710712515],[-71.495705542,41.710765515],[-71.497231543,41.711061515],[-71.499008544,41.711400515],[-71.499321544,41.711447515],[-71.500252544,41.711571515],[-71.500443544,41.711594515],[-71.500507544,41.711597515],[-71.500786544,41.711614515],[-71.500908544,41.711584515],[-71.501076544,41.711558515],[-71.501267544,41.711540515],[-71.502365545,41.711480515],[-71.503380545,41.711436515],[-71.503502545,41.711437515],[-71.504745546,41.711406515],[-71.504883546,41.711394515],[-71.505005545,41.711364515],[-71.505188546,41.711315515],[-71.505295545,41.711272515],[-71.505371546,41.711239515],[-71.505470546,41.711178515],[-71.505821546,41.710784515],[-71.505966546,41.710614515],[-71.506088546,41.710449515],[-71.506187546,41.710303515],[-71.506256546,41.710207515],[-71.506584546,41.709691515],[-71.506691546,41.709490514],[-71.507233546,41.709267515],[-71.507664546,41.709083514],[-71.509277546,41.708398514],[-71.509598547,41.708269514],[-71.510002547,41.708094514],[-71.510391547,41.707946515],[-71.510689547,41.707818514],[-71.510872548,41.707742514],[-71.510971547,41.707695514],[-71.511063547,41.707652514],[-71.511475548,41.707463514],[-71.511971547,41.707204514],[-71.512192548,41.707078514],[-71.512482548,41.706905514],[-71.512634548,41.706798513],[-71.512764547,41.706683514],[-71.512795548,41.706646514],[-71.512924548,41.706459514],[-71.513001547,41.706322514],[-71.513062548,41.706221514],[-71.513130548,41.706098513],[-71.513191548,41.705975514],[-71.513260548,41.705839514],[-71.513336548,41.705702514],[-71.513428547,41.705524514],[-71.513626548,41.705182513],[-71.514038548,41.704480513],[-71.514496548,41.703668513],[-71.514557549,41.703559513],[-71.514763548,41.703208513],[-71.515053548,41.702701513],[-71.515175548,41.702496513],[-71.515556548,41.701799513],[-71.515740549,41.701471513],[-71.515953548,41.701083512],[-71.516167549,41.700705513],[-71.516418548,41.700271512],[-71.516701549,41.699779512],[-71.516815549,41.699592512],[-71.517029549,41.699209513],[-71.517174548,41.698962512],[-71.517265549,41.698798512],[-71.517433549,41.698506512],[-71.517517549,41.698351512],[-71.517662549,41.698101512],[-71.517807549,41.697863512],[-71.517998549,41.697517512],[-71.518280549,41.697020512],[-71.518394549,41.696815511],[-71.518631549,41.696400512],[-71.518844549,41.696035511],[-71.518913549,41.695907512],[-71.518532549,41.695934511],[-71.517859549,41.695969512],[-71.517380549,41.695995511],[-71.517342549,41.696000511],[-71.517159548,41.696009512],[-71.516800549,41.696021512],[-71.516594548,41.696025512],[-71.516335548,41.696031511],[-71.515885548,41.696037511],[-71.515419548,41.696047512],[-71.514977548,41.696048512],[-71.514712548,41.696050512],[-71.514544548,41.696051511],[-71.514252547,41.696054511],[-71.513443548,41.696059512],[-71.512558547,41.696078512],[-71.512184547,41.696082512],[-71.511742547,41.696096512],[-71.511574547,41.696095512],[-71.511216547,41.696112511],[-71.509148546,41.696211512],[-71.508606546,41.696236512],[-71.508263545,41.696253512],[-71.507942546,41.696273512],[-71.507721545,41.696292512],[-71.507347545,41.696345512],[-71.506904545,41.696404512],[-71.506790545,41.696420512],[-71.506462545,41.696463512],[-71.506332545,41.696466512],[-71.506241545,41.696468512],[-71.506142545,41.696475512],[-71.505776545,41.696478512],[-71.505600545,41.696469512],[-71.505447545,41.696449512],[-71.504883545,41.696417512],[-71.504730544,41.696420512],[-71.504333545,41.696406512],[-71.504082545,41.696398512],[-71.503700544,41.696402512],[-71.503342544,41.696423512],[-71.502884544,41.696433512],[-71.502792544,41.696440513],[-71.501869543,41.696478513],[-71.501679544,41.696482512],[-71.501175544,41.696524512],[-71.501129543,41.696527512],[-71.500069543,41.696589512],[-71.498985543,41.696640512],[-71.498848543,41.696643512],[-71.497765543,41.696689513],[-71.497650543,41.696696512],[-71.497528542,41.696707512],[-71.497452542,41.696706512],[-71.497360542,41.696711513],[-71.497040542,41.696731513],[-71.496307541,41.696765512],[-71.495888542,41.696788513],[-71.495378541,41.696814512],[-71.494987541,41.696835512],[-71.494148541,41.696875512],[-71.493889541,41.696885513],[-71.493606541,41.696887513],[-71.49312654,41.696875512],[-71.492981541,41.696869513],[-71.49254654,41.696838512],[-71.49204254,41.696826513],[-71.49150154,41.696807513],[-71.49114254,41.696787513],[-71.49090654,41.696788513],[-71.49078454,41.696791513],[-71.49046354,41.696789513],[-71.49009754,41.696792512],[-71.48963254,41.696807513],[-71.489502539,41.696814512],[-71.488701539,41.696858513],[-71.488052539,41.696895512],[-71.487991539,41.696896513],[-71.487098539,41.696948512],[-71.486893539,41.696961513],[-71.485970538,41.697012513],[-71.485550538,41.697039513],[-71.484970538,41.697070513],[-71.484764538,41.697083513],[-71.484622538,41.697091513],[-71.484268538,41.697112513],[-71.483361537,41.697168513],[-71.483093538,41.697182512],[-71.482406537,41.697220513],[-71.482346537,41.697225513],[-71.481728537,41.697306513],[-71.481552537,41.697333513],[-71.481094536,41.697392513],[-71.480850537,41.697415513],[-71.480698537,41.697428513],[-71.480545537,41.697435513],[-71.480191537,41.697453513],[-71.480026536,41.697460513],[-71.479851536,41.697464513],[-71.479811536,41.697464513],[-71.478966537,41.697474513],[-71.478706536,41.697471513],[-71.477379536,41.697490513],[-71.476837536,41.697493514],[-71.476747535,41.697496513],[-71.476334536,41.697508513],[-71.475731535,41.697535513],[-71.475624535,41.697537513],[-71.475571535,41.697543513],[-71.475204535,41.697555513],[-71.475121535,41.697863514],[-71.474983535,41.698294513],[-71.474785535,41.698920513],[-71.474681535,41.699243514],[-71.474537535,41.699692514],[-71.474411535,41.700085514],[-71.473961535,41.701464514],[-71.473770535,41.702053514],[-71.473709535,41.702261514]]]]}}"}, +{"type": "precinct", "typeId": 3601, "areaId": 26008, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":347,\"NAME\":\"3601\",\"SHAPE_Length\":0.23102319952083,\"SHAPE_Area\":-0.0019783103646357},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.730558601,41.384457444],[-71.730955602,41.384597444],[-71.731167602,41.385778445],[-71.731661602,41.386438445],[-71.731607602,41.386547445],[-71.731971602,41.387068444],[-71.732216602,41.387024445],[-71.732391603,41.387047445],[-71.732620603,41.387101445],[-71.732750602,41.387139445],[-71.733299603,41.387238445],[-71.733476603,41.387255445],[-71.733864603,41.387291445],[-71.734055603,41.387280445],[-71.734261603,41.387219445],[-71.734482603,41.387093445],[-71.734627603,41.386895444],[-71.734764603,41.386761444],[-71.735001603,41.386601444],[-71.735069603,41.386551445],[-71.735153603,41.386513445],[-71.735214603,41.386494445],[-71.735275603,41.386498445],[-71.735329603,41.386513445],[-71.735382603,41.386547444],[-71.735519603,41.386647445],[-71.735664604,41.386761444],[-71.735817603,41.386856444],[-71.736031604,41.387009444],[-71.736122603,41.387066445],[-71.736237603,41.387112444],[-71.736320603,41.387131444],[-71.736404604,41.387116445],[-71.736534604,41.387104445],[-71.736717604,41.387055445],[-71.736885604,41.387024445],[-71.736923604,41.386979445],[-71.737061604,41.386902445],[-71.737068604,41.386895444],[-71.737206604,41.386837444],[-71.737381604,41.386792445],[-71.737556604,41.386738444],[-71.737770604,41.386639444],[-71.738075604,41.386460445],[-71.738113604,41.386403445],[-71.738091604,41.386338445],[-71.738045604,41.386227445],[-71.738441604,41.385467445],[-71.740460605,41.385371444],[-71.740964605,41.384861444],[-71.741345605,41.384433444],[-71.741455605,41.384312444],[-71.741676605,41.383806444],[-71.741930605,41.383468444],[-71.742302605,41.383218444],[-71.742932605,41.383197444],[-71.743663606,41.383123444],[-71.744220606,41.382877443],[-71.744876606,41.382615444],[-71.745477606,41.382482444],[-71.745931606,41.382523443],[-71.746340606,41.382710444],[-71.747253607,41.383290443],[-71.748306607,41.383225443],[-71.748322608,41.383393444],[-71.748352607,41.383568444],[-71.748489607,41.383904444],[-71.748795607,41.384930444],[-71.748802607,41.384968444],[-71.748912607,41.385320444],[-71.749191608,41.386212444],[-71.749382608,41.386792445],[-71.749542608,41.387349444],[-71.749657608,41.387768445],[-71.749924608,41.388497444],[-71.749947608,41.388634444],[-71.749954608,41.388737445],[-71.749939608,41.388890445],[-71.749855608,41.389141445],[-71.749748608,41.389420445],[-71.749626608,41.389759444],[-71.749161608,41.391140445],[-71.749153608,41.391175445],[-71.749077608,41.391484445],[-71.748993608,41.391892445],[-71.748962608,41.392121445],[-71.748940608,41.392441445],[-71.748947608,41.392727445],[-71.749329608,41.392750445],[-71.749512609,41.392769445],[-71.749649609,41.392788445],[-71.749802608,41.392819446],[-71.749947608,41.392865445],[-71.750099608,41.392941445],[-71.750237608,41.393029446],[-71.750435608,41.393189446],[-71.750748608,41.393486445],[-71.751060609,41.393746445],[-71.750832609,41.393933445],[-71.750633608,41.394108445],[-71.750443609,41.394299446],[-71.750275608,41.394497445],[-71.750193609,41.394601446],[-71.750122608,41.394692445],[-71.749924608,41.395035446],[-71.749809608,41.395218446],[-71.749741608,41.395333446],[-71.749550609,41.395687445],[-71.749077608,41.396489446],[-71.748741608,41.397087447],[-71.748344608,41.397797446],[-71.748146608,41.398129446],[-71.747910608,41.398541446],[-71.747498608,41.399281447],[-71.747559608,41.399441447],[-71.747658608,41.399731447],[-71.747765608,41.400113447],[-71.747894608,41.400528447],[-71.747931608,41.400672447],[-71.747940608,41.400708447],[-71.748007608,41.400803447],[-71.748030608,41.400835447],[-71.748918608,41.400432447],[-71.751137609,41.399415446],[-71.75445861,41.397905446],[-71.75527261,41.397538447],[-71.756706611,41.396882446],[-71.757704611,41.396417446],[-71.757857611,41.396350445],[-71.757995611,41.396283446],[-71.758407611,41.396102446],[-71.758541612,41.396050446],[-71.758672611,41.395988446],[-71.759433612,41.395605446],[-71.759655611,41.395483446],[-71.759858612,41.395365446],[-71.760128612,41.395197446],[-71.760530612,41.394917445],[-71.761315612,41.394317446],[-71.761461612,41.394192445],[-71.762399613,41.393417445],[-71.762718612,41.393148445],[-71.764155613,41.391959445],[-71.765928614,41.390482444],[-71.766262614,41.390199444],[-71.766892613,41.389675444],[-71.768183614,41.388616444],[-71.768388614,41.388446444],[-71.768844614,41.388079444],[-71.769065614,41.387907443],[-71.769244614,41.387777444],[-71.769539615,41.387581444],[-71.769740614,41.387441443],[-71.769843614,41.387375444],[-71.769993614,41.387286443],[-71.770360615,41.387066444],[-71.770607615,41.386929444],[-71.770872615,41.386796443],[-71.771002615,41.386735443],[-71.771442615,41.386544443],[-71.771937615,41.386343444],[-71.772229615,41.386237443],[-71.772395615,41.386183444],[-71.772734616,41.386085443],[-71.773021615,41.385997443],[-71.773271615,41.385928443],[-71.774037616,41.385747443],[-71.774963616,41.385604443],[-71.775203616,41.385571443],[-71.775729616,41.385518443],[-71.776170617,41.385484443],[-71.776251616,41.385478443],[-71.777664617,41.385417443],[-71.779979617,41.385347443],[-71.781184618,41.385300443],[-71.782145618,41.385272443],[-71.784257619,41.385190443],[-71.784541619,41.385183443],[-71.78826762,41.385048443],[-71.789169621,41.385026442],[-71.789904621,41.385003442],[-71.790700622,41.384970443],[-71.790701621,41.384930443],[-71.790702621,41.384892443],[-71.790726621,41.384755442],[-71.790781621,41.384629442],[-71.790797622,41.384555442],[-71.790809621,41.384497442],[-71.790814621,41.384426443],[-71.790720622,41.384334443],[-71.790654621,41.384309443],[-71.790349621,41.384307442],[-71.790198621,41.384278442],[-71.790131621,41.384170442],[-71.790044621,41.384114443],[-71.789880621,41.384034442],[-71.789820621,41.383916442],[-71.789752621,41.383849442],[-71.789579621,41.383770443],[-71.789500621,41.383738442],[-71.789391621,41.383649443],[-71.78926262,41.383570443],[-71.789138621,41.383501442],[-71.78899262,41.383476443],[-71.78887362,41.383390442],[-71.78872362,41.383315442],[-71.788671621,41.383282443],[-71.78867462,41.383183443],[-71.78871762,41.383079442],[-71.788731621,41.382970443],[-71.788731621,41.382859442],[-71.78871862,41.382757442],[-71.78869762,41.382721442],[-71.78868162,41.382656442],[-71.78862162,41.382605442],[-71.78858462,41.382529442],[-71.78841262,41.382468442],[-71.78831562,41.382417442],[-71.78832862,41.382358442],[-71.78841262,41.382261442],[-71.788532621,41.382089442],[-71.78856862,41.381973442],[-71.78858262,41.381877442],[-71.78867362,41.381777442],[-71.788766621,41.381557442],[-71.788826621,41.381442442],[-71.78887762,41.381370442],[-71.78899362,41.381280442],[-71.78903462,41.381175442],[-71.78903662,41.381060442],[-71.789060621,41.380978442],[-71.78914862,41.380887441],[-71.789233621,41.380786442],[-71.78932162,41.380695442],[-71.789353621,41.380586442],[-71.78937962,41.380461442],[-71.78937962,41.380343441],[-71.78939662,41.380236442],[-71.789506621,41.379983442],[-71.78957862,41.379768442],[-71.789647621,41.379662441],[-71.78970862,41.379499442],[-71.789784621,41.379376442],[-71.789931621,41.379179441],[-71.789894621,41.379084442],[-71.78992762,41.379051442],[-71.790073621,41.379045442],[-71.79017962,41.378976441],[-71.790185621,41.378898441],[-71.79023462,41.378856442],[-71.790260621,41.378766441],[-71.790264621,41.378725441],[-71.790380621,41.378661442],[-71.790400621,41.378526441],[-71.790400621,41.378406442],[-71.79042862,41.378360441],[-71.79050762,41.378256441],[-71.790614621,41.378156441],[-71.790707621,41.378036442],[-71.790783621,41.377962441],[-71.79091662,41.377884441],[-71.791079621,41.377880442],[-71.791211621,41.377836441],[-71.791306621,41.377779441],[-71.791438621,41.377721441],[-71.791517621,41.377682441],[-71.791548621,41.377516441],[-71.79080262,41.377556441],[-71.79029862,41.377472441],[-71.78982562,41.377358441],[-71.78922362,41.377247441],[-71.78862062,41.377118441],[-71.788147619,41.377022441],[-71.78770462,41.376950441],[-71.78769762,41.376686441],[-71.78771262,41.376336441],[-71.78771262,41.37610744],[-71.78771262,41.375652441],[-71.78771262,41.375378441],[-71.787720619,41.375080441],[-71.78792662,41.375065441],[-71.78820062,41.375111441],[-71.78990262,41.375439441],[-71.790115621,41.375451441],[-71.790291621,41.375424441],[-71.790443621,41.37535144],[-71.790573621,41.375229441],[-71.790657621,41.375069441],[-71.790680621,41.374909441],[-71.79066562,41.37468444],[-71.79060462,41.37427944],[-71.79051262,41.373822441],[-71.79041362,41.37343644],[-71.790344621,41.37321544],[-71.79028362,41.37305144],[-71.79016162,41.372906441],[-71.789978621,41.37278844],[-71.78981062,41.37273444],[-71.789627621,41.372712441],[-71.78931462,41.37272344],[-71.78904762,41.37274244],[-71.78890262,41.37272744],[-71.78852862,41.37260544],[-71.78833062,41.372593441],[-71.78808662,41.37262044],[-71.78777362,41.37266244],[-71.787369619,41.37272744],[-71.787331619,41.37252844],[-71.78728562,41.37221644],[-71.787254619,41.37193744],[-71.787239619,41.37117044],[-71.787216619,41.37076644],[-71.787216619,41.37044644],[-71.787254619,41.370102439],[-71.787315619,41.36987344],[-71.787338619,41.36970644],[-71.787315619,41.369477439],[-71.787239619,41.36915644],[-71.787071619,41.368588439],[-71.787048619,41.368355439],[-71.787071619,41.368039439],[-71.787048619,41.36775644],[-71.787010619,41.367440439],[-71.786957619,41.367146439],[-71.786812619,41.366906439],[-71.786613619,41.366608439],[-71.786545619,41.366452439],[-71.786423619,41.366436439],[-71.786324619,41.366459439],[-71.786110619,41.366536439],[-71.785667619,41.366730439],[-71.784859618,41.36717344],[-71.784187618,41.367421439],[-71.783722618,41.367672439],[-71.783524618,41.36773344],[-71.783295618,41.367741439],[-71.782944617,41.36771844],[-71.782318617,41.36766144],[-71.782104617,41.367585439],[-71.781822617,41.36734844],[-71.781494618,41.367104439],[-71.781219617,41.366875439],[-71.780899617,41.366581439],[-71.780556617,41.366280439],[-71.780281617,41.366047439],[-71.779938616,41.365776439],[-71.779419616,41.365303439],[-71.779221616,41.365139439],[-71.779114617,41.365033439],[-71.779076617,41.364922439],[-71.779076617,41.364785439],[-71.779106616,41.364655439],[-71.779129616,41.364460439],[-71.779106616,41.364376439],[-71.778564616,41.363713439],[-71.778343616,41.363400439],[-71.778160616,41.363095439],[-71.777939616,41.362767439],[-71.777824616,41.362622439],[-71.777733615,41.362538438],[-71.777634616,41.362484439],[-71.777557615,41.362465439],[-71.777504615,41.362458438],[-71.777397616,41.362465439],[-71.777290615,41.362481438],[-71.777191615,41.362515438],[-71.777061616,41.362553438],[-71.776932616,41.362622439],[-71.776627615,41.362824439],[-71.776489615,41.362904438],[-71.776367616,41.362965438],[-71.776215615,41.363030439],[-71.775932615,41.363140438],[-71.775673615,41.363224439],[-71.775452615,41.363278438],[-71.775276615,41.363327439],[-71.775154615,41.363381439],[-71.774986615,41.363476439],[-71.774818615,41.363598439],[-71.774574614,41.363800439],[-71.774429615,41.363907439],[-71.774307615,41.363987439],[-71.774139615,41.364090439],[-71.773674615,41.364300439],[-71.773544614,41.364346439],[-71.773445614,41.364369439],[-71.773407614,41.364373439],[-71.773193614,41.364365439],[-71.773212614,41.364249439],[-71.773226615,41.364109439],[-71.773231614,41.364002439],[-71.773229614,41.363957439],[-71.773214614,41.363764439],[-71.773207615,41.363689439],[-71.773115614,41.363143439],[-71.773079614,41.362938439],[-71.772997614,41.362517438],[-71.772936614,41.362184438],[-71.772834614,41.361574439],[-71.772677614,41.360778439],[-71.772620614,41.360488438],[-71.772423614,41.359482438],[-71.772369614,41.359158438],[-71.772316614,41.358944438],[-71.772255613,41.358784438],[-71.772179613,41.358612438],[-71.772095614,41.358441438],[-71.772011614,41.358296438],[-71.771942613,41.358200438],[-71.771866613,41.358082438],[-71.771484613,41.357697438],[-71.771591613,41.357590438],[-71.771622614,41.357510438],[-71.771614613,41.357476438],[-71.771614613,41.357430438],[-71.771408614,41.356903437],[-71.771240613,41.356511437],[-71.771523613,41.356465438],[-71.771983613,41.356379437],[-71.772094614,41.356359437],[-71.772270614,41.356324438],[-71.772450613,41.356277437],[-71.772529613,41.356239437],[-71.772578614,41.356211438],[-71.772635614,41.356172438],[-71.772713614,41.356114438],[-71.772789614,41.356053438],[-71.772881614,41.355931437],[-71.772926614,41.355820438],[-71.772957613,41.355690437],[-71.772957613,41.355545437],[-71.772926614,41.355408437],[-71.772850614,41.355267437],[-71.772720614,41.355103438],[-71.772659614,41.354954437],[-71.772621614,41.354798437],[-71.772636614,41.354695437],[-71.772644613,41.354454437],[-71.772621614,41.354325437],[-71.772568613,41.354195437],[-71.772484614,41.354081437],[-71.772369614,41.353966437],[-71.772209614,41.353878437],[-71.772034614,41.353810437],[-71.771835613,41.353764437],[-71.771660613,41.353753437],[-71.771469613,41.353764437],[-71.771294613,41.353802437],[-71.771133613,41.353856437],[-71.771004613,41.353924437],[-71.770905613,41.354016437],[-71.770828613,41.354111437],[-71.770782613,41.354210437],[-71.770767613,41.354321438],[-71.770767613,41.354445437],[-71.770767613,41.354618437],[-71.770760613,41.354752438],[-71.770679613,41.355036437],[-71.768937613,41.354807438],[-71.768913613,41.354706437],[-71.768906612,41.354695437],[-71.768814613,41.354195437],[-71.768784612,41.353970437],[-71.768661613,41.353165437],[-71.768478612,41.351910437],[-71.768410612,41.351578436],[-71.768402612,41.351452437],[-71.767734612,41.351535436],[-71.767174612,41.351593437],[-71.766342612,41.351670437],[-71.765945611,41.351689437],[-71.765564611,41.351715437],[-71.765099611,41.351727437],[-71.76453061,41.351736437],[-71.764198611,41.351742437],[-71.76351961,41.351731436],[-71.76262761,41.351693437],[-71.76205461,41.351654437],[-71.76200261,41.351649437],[-71.76124961,41.351579437],[-71.76050861,41.351497437],[-71.757346609,41.351122437],[-71.755695608,41.350931437],[-71.754524608,41.350796437],[-71.752849607,41.350600437],[-71.752323606,41.350537437],[-71.752146607,41.350511437],[-71.751938606,41.350480437],[-71.751456607,41.350387437],[-71.751354606,41.350366437],[-71.751255606,41.350343437],[-71.751122606,41.350312437],[-71.750931606,41.350254437],[-71.750732606,41.350205437],[-71.750672606,41.350184437],[-71.750532606,41.350137437],[-71.750370606,41.350088437],[-71.750021606,41.349963437],[-71.749411606,41.349758437],[-71.749086605,41.349646437],[-71.748281606,41.349360437],[-71.747740605,41.349171437],[-71.747185605,41.348980436],[-71.746490605,41.348732437],[-71.744797604,41.348141437],[-71.744560605,41.348053437],[-71.744278604,41.347959437],[-71.744194604,41.347931436],[-71.744011604,41.347874437],[-71.743805604,41.347824437],[-71.743614604,41.347798437],[-71.743423604,41.347786437],[-71.743164604,41.347786437],[-71.742981603,41.347805437],[-71.742821604,41.347832436],[-71.742638603,41.347878437],[-71.742584604,41.347897437],[-71.742010603,41.348113437],[-71.741611603,41.348274437],[-71.741319603,41.348404437],[-71.740776603,41.348662437],[-71.739836603,41.349121437],[-71.739662603,41.349204437],[-71.738922603,41.349564438],[-71.738781602,41.349634437],[-71.738603602,41.349719438],[-71.738345602,41.349837438],[-71.738176602,41.349911438],[-71.738016602,41.349976437],[-71.737889602,41.350023437],[-71.737711602,41.350087438],[-71.737404601,41.350187438],[-71.737077602,41.350271437],[-71.736883602,41.350319438],[-71.736580602,41.350384437],[-71.736092602,41.350476438],[-71.735725602,41.350544437],[-71.734859601,41.350716437],[-71.733579601,41.350968438],[-71.7315516,41.351377438],[-71.7304526,41.351598438],[-71.729958599,41.351696438],[-71.729919599,41.351590438],[-71.729881599,41.351448438],[-71.7298366,41.351353438],[-71.729805599,41.351319438],[-71.7297776,41.351292438],[-71.729820599,41.351727438],[-71.729820599,41.351822438],[-71.729839599,41.351906438],[-71.7298286,41.352017438],[-71.729819599,41.353061438],[-71.7299786,41.35912044],[-71.730050601,41.36190444],[-71.7300956,41.36360844],[-71.7302316,41.368692441],[-71.7302696,41.370260441],[-71.730300601,41.371455442],[-71.730339601,41.372793442],[-71.730300601,41.373859442],[-71.730296601,41.374189442],[-71.730276601,41.374590442],[-71.730301601,41.376393443],[-71.730354601,41.378054443],[-71.730364601,41.378841443],[-71.730486601,41.382213444],[-71.730530602,41.383596444],[-71.730548601,41.384051444],[-71.730558601,41.384457444]]]]}}"}, +{"type": "precinct", "typeId": 3602, "areaId": 26012, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":351,\"NAME\":\"3602\",\"SHAPE_Length\":0.16762276023856,\"SHAPE_Area\":-0.00085099306134814},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.790700622,41.384970443],[-71.792469622,41.384910442],[-71.793669622,41.384862443],[-71.796877623,41.384748442],[-71.797659624,41.384716442],[-71.798200624,41.384703443],[-71.799100624,41.384658442],[-71.799884624,41.384639442],[-71.800670624,41.384602442],[-71.802347625,41.384543442],[-71.803108625,41.384525442],[-71.803194625,41.384522442],[-71.804164625,41.384494442],[-71.804226626,41.384489442],[-71.804325626,41.384480442],[-71.804382626,41.384476442],[-71.804850626,41.384464442],[-71.805305626,41.384444442],[-71.805800626,41.384432442],[-71.806355626,41.384432442],[-71.806774626,41.384449442],[-71.807065626,41.384453442],[-71.807215627,41.384456442],[-71.808039626,41.384508442],[-71.808608627,41.384571442],[-71.809172627,41.384620442],[-71.810424627,41.384751442],[-71.811262628,41.384825442],[-71.811913628,41.384882442],[-71.812122628,41.384904442],[-71.812242628,41.384917442],[-71.812680628,41.384946442],[-71.813166629,41.384997442],[-71.813324628,41.385014442],[-71.815047629,41.385165442],[-71.815406629,41.385200442],[-71.815883629,41.385235441],[-71.816175629,41.385254441],[-71.816346629,41.385263442],[-71.816626629,41.385274441],[-71.81692363,41.385281442],[-71.81744263,41.385273441],[-71.81797263,41.385238442],[-71.81848563,41.385187442],[-71.818566631,41.385177441],[-71.81895963,41.385119441],[-71.819056631,41.385101441],[-71.81923963,41.385062441],[-71.819553631,41.384997442],[-71.819806631,41.384933442],[-71.820289631,41.384812442],[-71.820861631,41.384634441],[-71.821878631,41.384300441],[-71.822843631,41.383982442],[-71.824052632,41.383584441],[-71.825023633,41.383265441],[-71.825746632,41.383024441],[-71.826245633,41.382858441],[-71.826410632,41.382803441],[-71.826755633,41.382688441],[-71.827679633,41.382382441],[-71.827748633,41.382359441],[-71.828171633,41.382200441],[-71.828880634,41.381903441],[-71.829407634,41.38164744],[-71.829886634,41.38137444],[-71.830140634,41.38121944],[-71.830441634,41.381018441],[-71.830820634,41.380743441],[-71.830906634,41.38067844],[-71.831229634,41.380409441],[-71.831669634,41.38000744],[-71.831709634,41.37997344],[-71.831751635,41.37993544],[-71.83175856,41.379926053],[-71.831753348,41.379921272],[-71.831589763,41.379813071],[-71.831538032,41.379737222],[-71.831397978,41.37963313],[-71.831294038,41.379549038],[-71.831117872,41.379437068],[-71.830924853,41.379348772],[-71.83072541,41.379245193],[-71.830581898,41.379129287],[-71.830511384,41.379001758],[-71.830500698,41.378906213],[-71.8305209,41.378740253],[-71.830602081,41.37854585],[-71.830659564,41.378390715],[-71.830788693,41.378143275],[-71.831083348,41.377784712],[-71.831091755,41.377778032],[-71.831166584,41.37771844],[-71.831162634,41.37771844],[-71.831092634,41.37769744],[-71.830978634,41.37766344],[-71.830727634,41.37758344],[-71.830424634,41.37744744],[-71.830139633,41.37732044],[-71.830002633,41.377259439],[-71.829666633,41.37707244],[-71.828873633,41.37667944],[-71.828499633,41.37685844],[-71.827789633,41.37716344],[-71.827690633,41.37719444],[-71.827637633,41.37720544],[-71.827606633,41.37721744],[-71.827484632,41.37723244],[-71.827431633,41.37723244],[-71.827255633,41.37721344],[-71.826813633,41.37712944],[-71.826736633,41.37711844],[-71.826584632,41.37707944],[-71.826515632,41.37705644],[-71.826385633,41.37699944],[-71.826256632,41.37692744],[-71.826141632,41.37685144],[-71.825584632,41.37642344],[-71.825401632,41.37628644],[-71.825218632,41.37615644],[-71.825027632,41.37604244],[-71.824814632,41.37594644],[-71.824226631,41.37566844],[-71.823494631,41.37529444],[-71.823280631,41.37519944],[-71.823181631,41.37514944],[-71.822906631,41.37501244],[-71.822731631,41.37491644],[-71.822304631,41.37469544],[-71.821854631,41.37446644],[-71.821625631,41.374360439],[-71.821487631,41.374302439],[-71.82139863,41.37426844],[-71.82112963,41.374165439],[-71.820984631,41.374104439],[-71.82093063,41.37407744],[-71.82083963,41.374043439],[-71.820694631,41.37397844],[-71.82058763,41.373692439],[-71.82056663,41.37351244],[-71.820518631,41.373104439],[-71.82046563,41.372773439],[-71.82041963,41.37228444],[-71.82041263,41.372254439],[-71.82030563,41.371277439],[-71.82025163,41.370919439],[-71.82009963,41.370175439],[-71.81994663,41.369526439],[-71.81986263,41.369244438],[-71.81971763,41.368870439],[-71.81961163,41.368630439],[-71.81945863,41.368252438],[-71.81924463,41.367695438],[-71.81918763,41.367582439],[-71.81915363,41.367516438],[-71.819115629,41.367470438],[-71.818909629,41.367222438],[-71.818359629,41.366593438],[-71.818024629,41.366192438],[-71.817703629,41.365799438],[-71.817375629,41.365429438],[-71.817101629,41.365109437],[-71.816719628,41.364647438],[-71.816551628,41.364506437],[-71.816383629,41.364327438],[-71.816269628,41.364220438],[-71.816017628,41.364125438],[-71.814972628,41.363495437],[-71.814171628,41.362996438],[-71.813866628,41.362805438],[-71.813545627,41.362576437],[-71.813289627,41.362378437],[-71.812979627,41.362138438],[-71.812874628,41.362053437],[-71.811501627,41.360749437],[-71.811157627,41.360375437],[-71.810982627,41.360173437],[-71.810722626,41.359845437],[-71.810364626,41.359356437],[-71.810310626,41.359291437],[-71.809898626,41.358788437],[-71.809631626,41.358529437],[-71.809341626,41.358284436],[-71.808998625,41.358029436],[-71.808357625,41.357640436],[-71.808029625,41.357491437],[-71.807919626,41.357445436],[-71.807533625,41.357285437],[-71.807475625,41.357318437],[-71.807425625,41.357361437],[-71.807350625,41.357491437],[-71.807251625,41.357697437],[-71.807173625,41.358040437],[-71.807091625,41.358391437],[-71.806961625,41.358757437],[-71.806885625,41.358925437],[-71.806778625,41.359120437],[-71.806633625,41.359322437],[-71.806374625,41.359711437],[-71.806160625,41.359997438],[-71.805977625,41.360287438],[-71.805779624,41.360615437],[-71.805626625,41.360890438],[-71.805496625,41.361164438],[-71.805367624,41.361481437],[-71.805153624,41.362088437],[-71.772834614,41.361574439],[-71.772936614,41.362184438],[-71.772997614,41.362517438],[-71.773079614,41.362938439],[-71.773115614,41.363143439],[-71.773207615,41.363689439],[-71.773214614,41.363764439],[-71.773229614,41.363957439],[-71.773231614,41.364002439],[-71.773226615,41.364109439],[-71.773212614,41.364249439],[-71.773193614,41.364365439],[-71.773407614,41.364373439],[-71.773445614,41.364369439],[-71.773544614,41.364346439],[-71.773674615,41.364300439],[-71.774139615,41.364090439],[-71.774307615,41.363987439],[-71.774429615,41.363907439],[-71.774574614,41.363800439],[-71.774818615,41.363598439],[-71.774986615,41.363476439],[-71.775154615,41.363381439],[-71.775276615,41.363327439],[-71.775452615,41.363278438],[-71.775673615,41.363224439],[-71.775932615,41.363140438],[-71.776215615,41.363030439],[-71.776367616,41.362965438],[-71.776489615,41.362904438],[-71.776627615,41.362824439],[-71.776932616,41.362622439],[-71.777061616,41.362553438],[-71.777191615,41.362515438],[-71.777290615,41.362481438],[-71.777397616,41.362465439],[-71.777504615,41.362458438],[-71.777557615,41.362465439],[-71.777634616,41.362484439],[-71.777733615,41.362538438],[-71.777824616,41.362622439],[-71.777939616,41.362767439],[-71.778160616,41.363095439],[-71.778343616,41.363400439],[-71.778564616,41.363713439],[-71.779106616,41.364376439],[-71.779129616,41.364460439],[-71.779106616,41.364655439],[-71.779076617,41.364785439],[-71.779076617,41.364922439],[-71.779114617,41.365033439],[-71.779221616,41.365139439],[-71.779419616,41.365303439],[-71.779938616,41.365776439],[-71.780281617,41.366047439],[-71.780556617,41.366280439],[-71.780899617,41.366581439],[-71.781219617,41.366875439],[-71.781494618,41.367104439],[-71.781822617,41.36734844],[-71.782104617,41.367585439],[-71.782318617,41.36766144],[-71.782944617,41.36771844],[-71.783295618,41.367741439],[-71.783524618,41.36773344],[-71.783722618,41.367672439],[-71.784187618,41.367421439],[-71.784859618,41.36717344],[-71.785667619,41.366730439],[-71.786110619,41.366536439],[-71.786324619,41.366459439],[-71.786423619,41.366436439],[-71.786545619,41.366452439],[-71.786613619,41.366608439],[-71.786812619,41.366906439],[-71.786957619,41.367146439],[-71.787010619,41.367440439],[-71.787048619,41.36775644],[-71.787071619,41.368039439],[-71.787048619,41.368355439],[-71.787071619,41.368588439],[-71.787239619,41.36915644],[-71.787315619,41.369477439],[-71.787338619,41.36970644],[-71.787315619,41.36987344],[-71.787254619,41.370102439],[-71.787216619,41.37044644],[-71.787216619,41.37076644],[-71.787239619,41.37117044],[-71.787254619,41.37193744],[-71.78728562,41.37221644],[-71.787331619,41.37252844],[-71.787369619,41.37272744],[-71.78777362,41.37266244],[-71.78808662,41.37262044],[-71.78833062,41.372593441],[-71.78852862,41.37260544],[-71.78890262,41.37272744],[-71.78904762,41.37274244],[-71.78931462,41.37272344],[-71.789627621,41.372712441],[-71.78981062,41.37273444],[-71.789978621,41.37278844],[-71.79016162,41.372906441],[-71.79028362,41.37305144],[-71.790344621,41.37321544],[-71.79041362,41.37343644],[-71.79051262,41.373822441],[-71.79060462,41.37427944],[-71.79066562,41.37468444],[-71.790680621,41.374909441],[-71.790657621,41.375069441],[-71.790573621,41.375229441],[-71.790443621,41.37535144],[-71.790291621,41.375424441],[-71.790115621,41.375451441],[-71.78990262,41.375439441],[-71.78820062,41.375111441],[-71.78792662,41.375065441],[-71.787720619,41.375080441],[-71.78771262,41.375378441],[-71.78771262,41.375652441],[-71.78771262,41.37610744],[-71.78771262,41.376336441],[-71.78769762,41.376686441],[-71.78770462,41.376950441],[-71.788147619,41.377022441],[-71.78862062,41.377118441],[-71.78922362,41.377247441],[-71.78982562,41.377358441],[-71.79029862,41.377472441],[-71.79080262,41.377556441],[-71.791548621,41.377516441],[-71.791517621,41.377682441],[-71.791438621,41.377721441],[-71.791306621,41.377779441],[-71.791211621,41.377836441],[-71.791079621,41.377880442],[-71.79091662,41.377884441],[-71.790783621,41.377962441],[-71.790707621,41.378036442],[-71.790614621,41.378156441],[-71.79050762,41.378256441],[-71.79042862,41.378360441],[-71.790400621,41.378406442],[-71.790400621,41.378526441],[-71.790380621,41.378661442],[-71.790264621,41.378725441],[-71.790260621,41.378766441],[-71.79023462,41.378856442],[-71.790185621,41.378898441],[-71.79017962,41.378976441],[-71.790073621,41.379045442],[-71.78992762,41.379051442],[-71.789894621,41.379084442],[-71.789931621,41.379179441],[-71.789784621,41.379376442],[-71.78970862,41.379499442],[-71.789647621,41.379662441],[-71.78957862,41.379768442],[-71.789506621,41.379983442],[-71.78939662,41.380236442],[-71.78937962,41.380343441],[-71.78937962,41.380461442],[-71.789353621,41.380586442],[-71.78932162,41.380695442],[-71.789233621,41.380786442],[-71.78914862,41.380887441],[-71.789060621,41.380978442],[-71.78903662,41.381060442],[-71.78903462,41.381175442],[-71.78899362,41.381280442],[-71.78887762,41.381370442],[-71.788826621,41.381442442],[-71.788766621,41.381557442],[-71.78867362,41.381777442],[-71.78858262,41.381877442],[-71.78856862,41.381973442],[-71.788532621,41.382089442],[-71.78841262,41.382261442],[-71.78832862,41.382358442],[-71.78831562,41.382417442],[-71.78841262,41.382468442],[-71.78858462,41.382529442],[-71.78862162,41.382605442],[-71.78868162,41.382656442],[-71.78869762,41.382721442],[-71.78871862,41.382757442],[-71.788731621,41.382859442],[-71.788731621,41.382970443],[-71.78871762,41.383079442],[-71.78867462,41.383183443],[-71.788671621,41.383282443],[-71.78872362,41.383315442],[-71.78887362,41.383390442],[-71.78899262,41.383476443],[-71.789138621,41.383501442],[-71.78926262,41.383570443],[-71.789391621,41.383649443],[-71.789500621,41.383738442],[-71.789579621,41.383770443],[-71.789752621,41.383849442],[-71.789820621,41.383916442],[-71.789880621,41.384034442],[-71.790044621,41.384114443],[-71.790131621,41.384170442],[-71.790198621,41.384278442],[-71.790349621,41.384307442],[-71.790654621,41.384309443],[-71.790720622,41.384334443],[-71.790814621,41.384426443],[-71.790809621,41.384497442],[-71.790797622,41.384555442],[-71.790781621,41.384629442],[-71.790726621,41.384755442],[-71.790702621,41.384892443],[-71.790701621,41.384930443],[-71.790700622,41.384970443]]]]}}"}, +{"type": "precinct", "typeId": 3603, "areaId": 26014, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":353,\"NAME\":\"3603\",\"SHAPE_Length\":0.14302897706932,\"SHAPE_Area\":-0.00036579225701152},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.816269628,41.364220438],[-71.816139628,41.364128438],[-71.815788628,41.363915438],[-71.815338628,41.363621438],[-71.814911628,41.363377437],[-71.814568628,41.363167438],[-71.814178628,41.362912437],[-71.813866628,41.362698437],[-71.813355627,41.362317438],[-71.813263628,41.362248437],[-71.813067628,41.362083438],[-71.812904627,41.361946438],[-71.812630627,41.361691438],[-71.811996627,41.361061437],[-71.811737627,41.360821437],[-71.811119627,41.360196437],[-71.810867626,41.359898437],[-71.810722626,41.359696437],[-71.810616626,41.359558437],[-71.810425626,41.359330437],[-71.810135626,41.358979437],[-71.809868626,41.358643437],[-71.809494626,41.358269437],[-71.809288625,41.358086437],[-71.809082626,41.357937437],[-71.808784625,41.357739436],[-71.808533625,41.357605436],[-71.808311625,41.357495437],[-71.807976626,41.357338437],[-71.807616625,41.357192436],[-71.807533625,41.357285437],[-71.807919626,41.357445436],[-71.808029625,41.357491437],[-71.808357625,41.357640436],[-71.808998625,41.358029436],[-71.809341626,41.358284436],[-71.809631626,41.358529437],[-71.809898626,41.358788437],[-71.810310626,41.359291437],[-71.810364626,41.359356437],[-71.810722626,41.359845437],[-71.810982627,41.360173437],[-71.811157627,41.360375437],[-71.811501627,41.360749437],[-71.812874628,41.362053437],[-71.812979627,41.362138438],[-71.813289627,41.362378437],[-71.813545627,41.362576437],[-71.813866628,41.362805438],[-71.814171628,41.362996438],[-71.814972628,41.363495437],[-71.816017628,41.364125438],[-71.816269628,41.364220438]]],[[[-71.816269628,41.364220438],[-71.816383629,41.364327438],[-71.816551628,41.364506437],[-71.816719628,41.364647438],[-71.817101629,41.365109437],[-71.817375629,41.365429438],[-71.817703629,41.365799438],[-71.818024629,41.366192438],[-71.818359629,41.366593438],[-71.818909629,41.367222438],[-71.819115629,41.367470438],[-71.81915363,41.367516438],[-71.81918763,41.367582439],[-71.81924463,41.367695438],[-71.81945863,41.368252438],[-71.81961163,41.368630439],[-71.81971763,41.368870439],[-71.81986263,41.369244438],[-71.81994663,41.369526439],[-71.82009963,41.370175439],[-71.82025163,41.370919439],[-71.82030563,41.371277439],[-71.82041263,41.372254439],[-71.82041963,41.37228444],[-71.82046563,41.372773439],[-71.820518631,41.373104439],[-71.82056663,41.37351244],[-71.82058763,41.373692439],[-71.820694631,41.37397844],[-71.82083963,41.374043439],[-71.82093063,41.37407744],[-71.820984631,41.374104439],[-71.82112963,41.374165439],[-71.82139863,41.37426844],[-71.821487631,41.374302439],[-71.821625631,41.374360439],[-71.821854631,41.37446644],[-71.822304631,41.37469544],[-71.822731631,41.37491644],[-71.822906631,41.37501244],[-71.823181631,41.37514944],[-71.823280631,41.37519944],[-71.823494631,41.37529444],[-71.824226631,41.37566844],[-71.824814632,41.37594644],[-71.825027632,41.37604244],[-71.825218632,41.37615644],[-71.825401632,41.37628644],[-71.825584632,41.37642344],[-71.826141632,41.37685144],[-71.826256632,41.37692744],[-71.826385633,41.37699944],[-71.826515632,41.37705644],[-71.826584632,41.37707944],[-71.826736633,41.37711844],[-71.826813633,41.37712944],[-71.827255633,41.37721344],[-71.827431633,41.37723244],[-71.827484632,41.37723244],[-71.827606633,41.37721744],[-71.827637633,41.37720544],[-71.827690633,41.37719444],[-71.827789633,41.37716344],[-71.828499633,41.37685844],[-71.828873633,41.37667944],[-71.829666633,41.37707244],[-71.830002633,41.377259439],[-71.830139633,41.37732044],[-71.830424634,41.37744744],[-71.830727634,41.37758344],[-71.830978634,41.37766344],[-71.831092634,41.37769744],[-71.831162634,41.37771844],[-71.831166584,41.37771844],[-71.831323224,41.377593694],[-71.831344907,41.37757641],[-71.831462139,41.377498267],[-71.831707493,41.377113063],[-71.831859023,41.377170122],[-71.831887388,41.377099508],[-71.831913831,41.377104646],[-71.832027631,41.377050526],[-71.832116417,41.376955815],[-71.832156872,41.376868334],[-71.832197456,41.376794459],[-71.83222374,41.376744595],[-71.832244436,41.376700692],[-71.832197431,41.376664281],[-71.832137137,41.376683689],[-71.832055665,41.376741786],[-71.832026291,41.376787017],[-71.832014611,41.376848664],[-71.831959115,41.376945978],[-71.83181368,41.376899238],[-71.831934857,41.376695434],[-71.831957673,41.376698204],[-71.832141015,41.376479033],[-71.832178671,41.376486129],[-71.832293229,41.376312623],[-71.832372749,41.376145531],[-71.832417068,41.376018198],[-71.832421173,41.375899992],[-71.832421499,41.375809058],[-71.832455997,41.375720701],[-71.832492699,41.375570428],[-71.832522656,41.375419099],[-71.832485233,41.375290859],[-71.83237867,41.375054046],[-71.832273416,41.374782123],[-71.832147632,41.374479247],[-71.832041132,41.374254418],[-71.832008904,41.374156191],[-71.83188816,41.374061604],[-71.831835179,41.373984158],[-71.831886714,41.373938451],[-71.831907289,41.373888626],[-71.831850326,41.373684786],[-71.831759614,41.373399693],[-71.831681008,41.373154726],[-71.831603353,41.372881579],[-71.831550554,41.372642484],[-71.831496139,41.372317903],[-71.831453973,41.372055975],[-71.831413144,41.371871803],[-71.831418639,41.371686194],[-71.831441986,41.371494724],[-71.831468069,41.371268048],[-71.831507561,41.370967531],[-71.831555579,41.370636206],[-71.831601527,41.370333886],[-71.831622989,41.370166001],[-71.831711505,41.369936081],[-71.83159974,41.369898255],[-71.831961949,41.369530666],[-71.832414623,41.369067034],[-71.832895847,41.368577084],[-71.832955421,41.36860861],[-71.833400004,41.368263443],[-71.833622975,41.368075739],[-71.833757431,41.367926188],[-71.833844581,41.367846895],[-71.834072387,41.367684997],[-71.834121742,41.367594219],[-71.834135799,41.367606208],[-71.834547633,41.367360046],[-71.83493367,41.367110069],[-71.835053043,41.36698629],[-71.835171277,41.366895059],[-71.835183991,41.366846468],[-71.835204954,41.366837739],[-71.835288123,41.366864598],[-71.835527452,41.366790074],[-71.835721607,41.366691966],[-71.835907442,41.366575767],[-71.836041684,41.366480852],[-71.836175693,41.366399522],[-71.836284124,41.366338736],[-71.836367214,41.366303204],[-71.836477287,41.366178215],[-71.836565163,41.366116963],[-71.836576708,41.366071645],[-71.836642662,41.365998084],[-71.836658275,41.365946809],[-71.836622855,41.365924911],[-71.836247582,41.3658689],[-71.836219787,41.365847803],[-71.836267229,41.365828568],[-71.836634924,41.36583966],[-71.836711661,41.365791019],[-71.836756969,41.36568184],[-71.8366038,41.365602722],[-71.836610422,41.365574069],[-71.836638774,41.365573528],[-71.83681762,41.365633886],[-71.836872781,41.365575062],[-71.836873036,41.365477267],[-71.836862381,41.365347851],[-71.836860324,41.365208096],[-71.836897116,41.365084236],[-71.836993391,41.364915513],[-71.837062835,41.364748035],[-71.837118938,41.364548326],[-71.837150012,41.364369617],[-71.837158679,41.364219607],[-71.837144513,41.364104107],[-71.837107732,41.363830044],[-71.837149446,41.363807028],[-71.837162498,41.363759831],[-71.837242041,41.363749398],[-71.8371974,41.363463968],[-71.83675824,41.363502418],[-71.836737015,41.363389523],[-71.836741168,41.363288218],[-71.836771551,41.363210849],[-71.836817863,41.363126047],[-71.836847312,41.363002964],[-71.836892543,41.362873201],[-71.836982356,41.362782554],[-71.837083227,41.362746307],[-71.837185853,41.362703261],[-71.837259745,41.362645228],[-71.837194267,41.362592498],[-71.837126693,41.36253959],[-71.837086042,41.362485895],[-71.837069984,41.362409486],[-71.837060999,41.362333194],[-71.837045849,41.3622327],[-71.837038553,41.362177809],[-71.837036075,41.362109296],[-71.83703403,41.362048444],[-71.837025914,41.361981503],[-71.837002684,41.361891827],[-71.83696893,41.361815744],[-71.836948354,41.361763957],[-71.836930792,41.361684282],[-71.83688266,41.361592621],[-71.836861433,41.36149697],[-71.836859568,41.361441332],[-71.836851442,41.361331349],[-71.836837568,41.361213378],[-71.836826496,41.361103083],[-71.836812651,41.361020172],[-71.836803946,41.360962518],[-71.836787977,41.360844485],[-71.836780647,41.36077697],[-71.836775641,41.360712787],[-71.83677252,41.360643178],[-71.836764601,41.360585019],[-71.836745907,41.360480075],[-71.836730413,41.3604245],[-71.836710654,41.360366192],[-71.836686126,41.360307189],[-71.836656568,41.360255794],[-71.836618598,41.360197723],[-71.836577595,41.360146201],[-71.836503271,41.360049219],[-71.836466271,41.35998513],[-71.83643567,41.359901971],[-71.836406443,41.359796898],[-71.836387467,41.359725391],[-71.836370769,41.359624741],[-71.836362405,41.359574405],[-71.836364221,41.359502632],[-71.836376434,41.359433779],[-71.836407359,41.359332304],[-71.836419788,41.359228939],[-71.836416668,41.359165345],[-71.836411719,41.359106079],[-71.836413267,41.359035428],[-71.836471941,41.358952442],[-71.836460239,41.358919954],[-71.836360982,41.35886762],[-71.836278337,41.358828524],[-71.836204739,41.358766257],[-71.836172508,41.358714298],[-71.83613302,41.358644155],[-71.83608867,41.358555295],[-71.83605747,41.358497341],[-71.836005463,41.358412735],[-71.835964354,41.358340356],[-71.835931667,41.358276322],[-71.835900319,41.35821894],[-71.835864649,41.358159215],[-71.835837662,41.358105685],[-71.835818608,41.35804845],[-71.835813247,41.357973862],[-71.835814226,41.35791634],[-71.835804489,41.357829072],[-71.835751732,41.357746115],[-71.835671124,41.357677967],[-71.835601045,41.357626507],[-71.83551492,41.357565625],[-71.835472336,41.357506949],[-71.835454461,41.357436835],[-71.835443588,41.357370656],[-71.835441222,41.35730594],[-71.835439878,41.357268688],[-71.835436608,41.357211132],[-71.83544102,41.357154217],[-71.835476629,41.357078023],[-71.835541337,41.357017594],[-71.835580924,41.356953533],[-71.835516595,41.356875046],[-71.835498976,41.356819202],[-71.835505124,41.356733808],[-71.835524039,41.356645862],[-71.835571103,41.356548456],[-71.835562578,41.356484284],[-71.835545114,41.356423179],[-71.835559139,41.356393909],[-71.835634328,41.356353072],[-71.835623247,41.356293733],[-71.835608252,41.356275777],[-71.835536873,41.356266654],[-71.835483483,41.356243345],[-71.83542954,41.356177521],[-71.835382329,41.356122037],[-71.835336962,41.356106617],[-71.83523337,41.356119384],[-71.835138557,41.356115932],[-71.835057155,41.356099428],[-71.834949603,41.35602054],[-71.834890808,41.355943569],[-71.83485956,41.355881727],[-71.834842014,41.355816254],[-71.834831847,41.355715836],[-71.834835659,41.355654006],[-71.83484081,41.355592995],[-71.834813593,41.355500266],[-71.834832266,41.355447976],[-71.834867804,41.355393669],[-71.834899935,41.355337703],[-71.834939624,41.355258295],[-71.835003282,41.355212369],[-71.835079488,41.355174663],[-71.835063356,41.355124394],[-71.834996851,41.355094559],[-71.834912631,41.355061139],[-71.83483261,41.355035391],[-71.834711725,41.354984444],[-71.834672832,41.354923104],[-71.834623584,41.354813377],[-71.834600984,41.354756633],[-71.834558913,41.354643683],[-71.834530297,41.354585744],[-71.834484,41.354530578],[-71.834377455,41.354404985],[-71.834292499,41.354286511],[-71.834285313,41.354276149],[-71.834229455,41.354238918],[-71.834179753,41.354206357],[-71.834077201,41.354160891],[-71.834012952,41.354132741],[-71.83391395,41.354092845],[-71.833759774,41.354042451],[-71.833696933,41.354016401],[-71.833604306,41.354018407],[-71.833476329,41.354016285],[-71.833320567,41.354017994],[-71.83324333,41.35398421],[-71.833164832,41.353941372],[-71.833081258,41.353897108],[-71.833015029,41.353861598],[-71.832952509,41.353815078],[-71.83280572,41.353730836],[-71.832670863,41.353665176],[-71.832533599,41.353609654],[-71.832439078,41.353597028],[-71.832345289,41.353585063],[-71.832274179,41.353568367],[-71.832144219,41.353576107],[-71.83206879,41.353587577],[-71.831966285,41.353604476],[-71.831883499,41.353619627],[-71.831795393,41.353614918],[-71.831684436,41.353587381],[-71.83159444,41.353569276],[-71.831462881,41.35354914],[-71.831318463,41.353518955],[-71.831157926,41.353476466],[-71.831071433,41.35344879],[-71.830959046,41.353420342],[-71.830877891,41.353427825],[-71.830781164,41.353447017],[-71.83070959,41.353452483],[-71.830616802,41.353458353],[-71.830555751,41.353479821],[-71.83045071,41.353511707],[-71.830350694,41.353546734],[-71.830260072,41.353584891],[-71.830196383,41.353595022],[-71.830114975,41.35358254],[-71.830052375,41.353531718],[-71.829993479,41.353493236],[-71.82993635,41.353444159],[-71.829873308,41.35339],[-71.82977869,41.353279875],[-71.829798792,41.353215323],[-71.829849609,41.353162712],[-71.829897642,41.353117725],[-71.829962447,41.353058145],[-71.830061222,41.352975871],[-71.830106871,41.352933612],[-71.830139651,41.352861522],[-71.830162106,41.352794218],[-71.830180711,41.352727977],[-71.830198919,41.352673265],[-71.830210624,41.35256901],[-71.830210986,41.352496464],[-71.830202211,41.352429867],[-71.830194413,41.352340146],[-71.830181985,41.352271341],[-71.830150422,41.35217581],[-71.830134846,41.352120645],[-71.830105665,41.352052117],[-71.830081424,41.351957823],[-71.830065108,41.351804249],[-71.830053241,41.351744202],[-71.830040537,41.351674781],[-71.830034161,41.351602185],[-71.830018885,41.351516213],[-71.829976966,41.351407401],[-71.829955341,41.351344454],[-71.829930003,41.351291376],[-71.829858209,41.351192575],[-71.829815226,41.351137306],[-71.829736447,41.351073883],[-71.829681529,41.351023154],[-71.829640589,41.350969822],[-71.82961189,41.350912271],[-71.829589041,41.35085317],[-71.829562532,41.350772582],[-71.829533856,41.350713406],[-71.829502348,41.350658562],[-71.829452171,41.350639311],[-71.829368858,41.35061533],[-71.829311436,41.350579587],[-71.829255262,41.350520605],[-71.829166396,41.350448748],[-71.829052233,41.35035574],[-71.828936631,41.350236023],[-71.828899991,41.350186636],[-71.828865634,41.350126265],[-71.828852288,41.350019452],[-71.828833008,41.349963703],[-71.828788778,41.349919689],[-71.82872748,41.349921694],[-71.828628021,41.349933962],[-71.828481526,41.349929646],[-71.828451333,41.349888588],[-71.828395851,41.349821873],[-71.828302831,41.349762515],[-71.828245707,41.349725445],[-71.828182973,41.349695366],[-71.828061597,41.349646403],[-71.827972709,41.34961187],[-71.827906988,41.349585208],[-71.827812222,41.349552727],[-71.827718237,41.349518574],[-71.827624147,41.349487647],[-71.827535208,41.349455035],[-71.827429641,41.349417233],[-71.827355573,41.34937216],[-71.827287573,41.349302576],[-71.827247323,41.34923497],[-71.827209593,41.349185563],[-71.827174586,41.349134524],[-71.827095784,41.349083518],[-71.827055459,41.349091752],[-71.826973826,41.34910582],[-71.826902147,41.349113525],[-71.826739506,41.349114856],[-71.826657126,41.349113032],[-71.826542189,41.349100985],[-71.826472547,41.349085265],[-71.826409914,41.349050839],[-71.826355524,41.349001662],[-71.82633985,41.348914044],[-71.826357097,41.348872942],[-71.826427925,41.348828487],[-71.826484155,41.348778241],[-71.82649302,41.348711891],[-71.826487965,41.348617313],[-71.826482368,41.348535887],[-71.826477245,41.348476438],[-71.826457557,41.348387162],[-71.826411228,41.348329385],[-71.826362277,41.348275435],[-71.826354108,41.348213753],[-71.826393626,41.348135127],[-71.826434867,41.34807964],[-71.826438048,41.348060168],[-71.826688205,41.348014129],[-71.826848818,41.348020534],[-71.827386231,41.348088579],[-71.827710529,41.348157068],[-71.827704103,41.348194891],[-71.82779397,41.34821929],[-71.82799983,41.347928316],[-71.827595361,41.347626159],[-71.827628408,41.347153171],[-71.828174402,41.346731369],[-71.828441441,41.34670035],[-71.828495164,41.346719339],[-71.828566235,41.346705963],[-71.828634856,41.346688042],[-71.828727019,41.346644188],[-71.828801001,41.346600065],[-71.828909645,41.346538667],[-71.829000356,41.346495869],[-71.829091675,41.346459289],[-71.829117519,41.346432548],[-71.829151426,41.346379689],[-71.829197908,41.346316845],[-71.829257815,41.346244266],[-71.829262028,41.346188815],[-71.829233359,41.346118662],[-71.82919104,41.346062064],[-71.829136316,41.346000859],[-71.829077029,41.345943486],[-71.829002685,41.345885379],[-71.828931693,41.345835998],[-71.828846977,41.345779156],[-71.828768546,41.345734988],[-71.828683832,41.345678648],[-71.828622862,41.345624573],[-71.828564861,41.345569369],[-71.82850682,41.345524297],[-71.828426958,41.345479127],[-71.828312277,41.345426074],[-71.828197315,41.345383497],[-71.828096121,41.345344974],[-71.828026811,41.345315898],[-71.827949407,41.345288857],[-71.827876026,41.345246755],[-71.827814835,41.345190668],[-71.827751249,41.345110939],[-71.827728732,41.345056777],[-71.82771251,41.344993083],[-71.827699293,41.344917328],[-71.827684739,41.344859438],[-71.827663957,41.344788256],[-71.827656525,41.344679893],[-71.827658326,41.344603249],[-71.827682394,41.344585456],[-71.827760302,41.344543953],[-71.827802417,41.344499853],[-71.827783237,41.344475687],[-71.827719463,41.344442821],[-71.827637066,41.344412295],[-71.827545299,41.344377107],[-71.827442751,41.344334516],[-71.827371353,41.344300413],[-71.827280263,41.344267121],[-71.827199094,41.344245236],[-71.827110894,41.344243726],[-71.827026266,41.344276626],[-71.826934127,41.344336946],[-71.826821465,41.344401806],[-71.826745677,41.344400077],[-71.826654905,41.344363582],[-71.826617901,41.344306991],[-71.826595791,41.344255046],[-71.826599682,41.344213868],[-71.826642088,41.344155085],[-71.826723236,41.344111904],[-71.82679483,41.344106417],[-71.826882078,41.344117971],[-71.826935336,41.344159924],[-71.827021355,41.34416231],[-71.827090425,41.34415587],[-71.827174037,41.344150418],[-71.827268322,41.344173386],[-71.82734371,41.344192154],[-71.827436553,41.344211993],[-71.827511646,41.344244507],[-71.82754371,41.344241832],[-71.827580625,41.344189559],[-71.827624311,41.344192637],[-71.827678214,41.344163277],[-71.827666066,41.344082876],[-71.827617119,41.344059459],[-71.82751549,41.344054785],[-71.827420934,41.344074746],[-71.827411605,41.344060067],[-71.82742807,41.344014942],[-71.827470075,41.343955062],[-71.827460763,41.343901365],[-71.827396855,41.343866006],[-71.827264136,41.343834411],[-71.827171718,41.3438266],[-71.827115498,41.343799178],[-71.82706725,41.343757851],[-71.827010886,41.343677347],[-71.826967567,41.34360202],[-71.826918736,41.343492586],[-71.826879778,41.343457842],[-71.826820884,41.343435802],[-71.826722625,41.343443262],[-71.826631481,41.343386596],[-71.826457855,41.343251603],[-71.826412228,41.343188061],[-71.826387233,41.343153918],[-71.826364872,41.343136576],[-71.826340766,41.343122557],[-71.826304174,41.343111797],[-71.825733296,41.343049171],[-71.825714233,41.343078545],[-71.825659614,41.343073942],[-71.825657017,41.343039849],[-71.82558079,41.34304114],[-71.825516733,41.343036404],[-71.825425545,41.34303776],[-71.825224451,41.343059872],[-71.825146481,41.343058606],[-71.825074336,41.343056774],[-71.824997117,41.343084231],[-71.824890805,41.34313846],[-71.824825219,41.343168057],[-71.824668592,41.34322245],[-71.824454694,41.343263763],[-71.824368759,41.34323496],[-71.824276667,41.343243841],[-71.82420186,41.343262166],[-71.824170907,41.343287067],[-71.824117087,41.343339409],[-71.824036419,41.343381444],[-71.82394219,41.343387724],[-71.823800612,41.34336205],[-71.823610121,41.343307308],[-71.823482854,41.343273242],[-71.82348163,41.343273433],[-71.82334663,41.343250433],[-71.82332163,41.343251433],[-71.823154629,41.343234433],[-71.823114629,41.343239434],[-71.82302963,41.343262434],[-71.822918629,41.343298434],[-71.822695629,41.343320434],[-71.822762629,41.343457434],[-71.822784629,41.343496434],[-71.82281563,41.343548433],[-71.822902629,41.343714434],[-71.822946629,41.343800433],[-71.823006629,41.343914433],[-71.823022629,41.343949433],[-71.82309063,41.344105433],[-71.82315163,41.344334434],[-71.823154629,41.344363433],[-71.823180629,41.344580434],[-71.82318963,41.344664434],[-71.82318963,41.344722434],[-71.823197629,41.344844434],[-71.823211629,41.344997434],[-71.82322863,41.345129434],[-71.82324063,41.345194434],[-71.82325763,41.345250434],[-71.82330363,41.345471433],[-71.82334163,41.345608433],[-71.823387629,41.345734434],[-71.823448629,41.345852434],[-71.823486629,41.345909434],[-71.82354763,41.346028434],[-71.82361663,41.346127434],[-71.82371563,41.346253434],[-71.82376463,41.346307434],[-71.82380063,41.346345434],[-71.82386063,41.346402434],[-71.82398263,41.346505434],[-71.82409763,41.346600434],[-71.82416563,41.346665434],[-71.82450163,41.346917434],[-71.82459363,41.346981434],[-71.824768631,41.347115434],[-71.82493663,41.347237434],[-71.82501263,41.347302435],[-71.82528763,41.347500434],[-71.82530263,41.347515435],[-71.825432631,41.347618434],[-71.825623631,41.347783434],[-71.82575163,41.347915434],[-71.825818631,41.348008434],[-71.825897631,41.348148434],[-71.82600463,41.348385434],[-71.826073631,41.348561434],[-71.82611863,41.348706435],[-71.82615763,41.348793434],[-71.826263631,41.349076435],[-71.826447631,41.349610434],[-71.82646763,41.349662435],[-71.826553631,41.349884434],[-71.826729631,41.350369434],[-71.826759631,41.350472435],[-71.826836631,41.350674435],[-71.826866631,41.350773435],[-71.826965631,41.351036435],[-71.827019631,41.351200435],[-71.827133631,41.351502435],[-71.827179631,41.351643435],[-71.827232631,41.351784435],[-71.827309631,41.352005435],[-71.827477632,41.352448435],[-71.827545631,41.352654435],[-71.827621631,41.352856435],[-71.827873631,41.353585435],[-71.827957632,41.353802435],[-71.828110631,41.354256435],[-71.828148631,41.354336436],[-71.828224631,41.354565435],[-71.828270632,41.354763436],[-71.828293632,41.354836435],[-71.828300632,41.354905436],[-71.828316632,41.354973435],[-71.828331632,41.355114436],[-71.828362632,41.355301435],[-71.828369632,41.355393436],[-71.827888632,41.355492436],[-71.827179631,41.355629436],[-71.827065632,41.355656436],[-71.826942631,41.355679436],[-71.826780631,41.355702436],[-71.826752631,41.355706436],[-71.826515631,41.355725436],[-71.826187631,41.355729435],[-71.825882631,41.355717436],[-71.825798631,41.355717436],[-71.825661631,41.355729435],[-71.825508631,41.355740436],[-71.825302631,41.355770435],[-71.824875631,41.355854436],[-71.824722631,41.355893436],[-71.824570631,41.355927436],[-71.82405163,41.356026436],[-71.823677631,41.356102436],[-71.82310563,41.356209436],[-71.822937631,41.356244436],[-71.82276963,41.356274436],[-71.822411629,41.356347436],[-71.82231963,41.356369436],[-71.822159629,41.356396436],[-71.82160263,41.356499436],[-71.82146563,41.356518436],[-71.82143063,41.356522436],[-71.820839629,41.356591436],[-71.820602629,41.356610436],[-71.820541629,41.356610436],[-71.820366629,41.356625436],[-71.820313629,41.356633436],[-71.820313629,41.356697436],[-71.820305629,41.356762436],[-71.820313629,41.356827436],[-71.820313629,41.356903436],[-71.820366629,41.357418436],[-71.82039663,41.357548436],[-71.820465629,41.357972436],[-71.820480629,41.358090436],[-71.820503629,41.358204437],[-71.82051863,41.358319437],[-71.820564629,41.358574437],[-71.819695629,41.358654436],[-71.818916629,41.358742437],[-71.818237629,41.358841437],[-71.818184628,41.358483436],[-71.818143628,41.358245436],[-71.817689629,41.358249436],[-71.817387628,41.358252436],[-71.817375629,41.358350437],[-71.817344628,41.358577436],[-71.817325628,41.358841437],[-71.817117628,41.359179437],[-71.817043629,41.359292437],[-71.816903628,41.359461437],[-71.816514628,41.359646437],[-71.816275628,41.359861437],[-71.816240628,41.360039437],[-71.816275628,41.360148437],[-71.816251628,41.360146437],[-71.815112628,41.360063437],[-71.815126628,41.360095437],[-71.815136628,41.360293437],[-71.815148628,41.360405437],[-71.815075628,41.360499437],[-71.815050628,41.360596437],[-71.815050628,41.360712437],[-71.815081627,41.360812437],[-71.815180628,41.360890437],[-71.815204628,41.360949437],[-71.815241628,41.360993437],[-71.815369628,41.361047437],[-71.815387628,41.361128438],[-71.815433628,41.361196437],[-71.815466628,41.361342438],[-71.815695628,41.361484437],[-71.815843628,41.361481437],[-71.815993628,41.361461437],[-71.816075628,41.361412437],[-71.817354629,41.363850438],[-71.817268628,41.363881437],[-71.816933628,41.363991438],[-71.816269628,41.364220438]]]]}}"}, +{"type": "precinct", "typeId": 3604, "areaId": 26009, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":348,\"NAME\":\"3604\",\"SHAPE_Length\":0.4871529963562,\"SHAPE_Area\":-0.0016019144973153},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.852012659,41.321499011],[-71.851936354,41.321571103],[-71.851909481,41.321606155],[-71.851941606,41.321650837],[-71.851996502,41.3216592],[-71.85204153,41.321637999],[-71.852102332,41.321593855],[-71.852169605,41.321551545],[-71.852199357,41.321504637],[-71.852170082,41.321476733],[-71.852095026,41.32147646],[-71.852012659,41.321499011]]],[[[-71.848818508,41.324269928],[-71.848738704,41.324290411],[-71.848687635,41.32435131],[-71.848636743,41.324365895],[-71.848632059,41.324392096],[-71.84867635,41.324419841],[-71.848721397,41.324407195],[-71.848784819,41.324381456],[-71.848869767,41.324358374],[-71.848902537,41.324324998],[-71.848901609,41.324281912],[-71.848870126,41.324266479],[-71.848818508,41.324269928]]],[[[-71.891662133,41.330086795],[-71.891725513,41.330090102],[-71.891847624,41.330082779],[-71.891951733,41.330078834],[-71.892067965,41.330082498],[-71.892069264,41.33007864],[-71.892391457,41.32850712],[-71.892322887,41.328468143],[-71.89213302,41.328362922],[-71.891987128,41.32828463],[-71.891895672,41.328232477],[-71.891643896,41.328099198],[-71.891472435,41.328012026],[-71.891260342,41.327918818],[-71.891048054,41.327828263],[-71.890877462,41.32775417],[-71.89065856,41.327663476],[-71.8904735,41.327579918],[-71.890319579,41.327508077],[-71.890198291,41.327449071],[-71.890114909,41.327407363],[-71.889920481,41.327314458],[-71.88979922,41.327254971],[-71.889627735,41.327168048],[-71.889464993,41.327081897],[-71.889368219,41.327027586],[-71.889291139,41.326989264],[-71.889126061,41.326913183],[-71.889110484,41.326906009],[-71.888962739,41.326831378],[-71.888813256,41.326744952],[-71.88873743,41.326697981],[-71.888572034,41.326583454],[-71.888452923,41.326502277],[-71.888348384,41.326422605],[-71.888212763,41.326330345],[-71.888078601,41.326238332],[-71.888004872,41.326191856],[-71.887940577,41.326155182],[-71.887799864,41.326083957],[-71.887685319,41.326030666],[-71.887612262,41.325999991],[-71.887491025,41.32594384],[-71.887412593,41.325896968],[-71.887301165,41.325826924],[-71.887202975,41.325768546],[-71.886992302,41.32563601],[-71.886852601,41.325540652],[-71.886699327,41.325433172],[-71.886555657,41.325333298],[-71.886494904,41.325284834],[-71.886469146,41.325264268],[-71.886338951,41.325154858],[-71.886266214,41.325085827],[-71.886216759,41.325039245],[-71.886147405,41.324967595],[-71.886085035,41.32490196],[-71.886024624,41.3248392],[-71.885950757,41.324758417],[-71.885870869,41.324675413],[-71.88576732,41.324536181],[-71.885721343,41.324487506],[-71.885651216,41.324438867],[-71.885580761,41.32438602],[-71.885518391,41.324320362],[-71.885467176,41.324258119],[-71.885429551,41.32420052],[-71.885399458,41.324144473],[-71.885361116,41.324073497],[-71.885326024,41.324013328],[-71.885294729,41.323964375],[-71.885241483,41.323897016],[-71.885163931,41.32383413],[-71.885113214,41.323794528],[-71.885058419,41.323757844],[-71.884989847,41.323715465],[-71.884924947,41.32367328],[-71.884866808,41.323640586],[-71.884804106,41.32360585],[-71.884689831,41.323535333],[-71.884617589,41.323492966],[-71.884572356,41.323457233],[-71.88456242,41.323449376],[-71.884513074,41.323405515],[-71.884441929,41.323348553],[-71.884387566,41.323297482],[-71.884297028,41.323223683],[-71.884234076,41.323161731],[-71.884172003,41.323110068],[-71.884120832,41.323049677],[-71.884055729,41.322988167],[-71.883965833,41.322910043],[-71.88390125,41.322854432],[-71.883846641,41.322812898],[-71.88378171,41.32275994],[-71.883705026,41.322699794],[-71.883629745,41.322640856],[-71.883551841,41.322579502],[-71.883470845,41.322518571],[-71.883401577,41.322470864],[-71.88331222,41.322411973],[-71.883215667,41.322352053],[-71.883132353,41.322304257],[-71.883048275,41.322250539],[-71.882952803,41.322193726],[-71.882854212,41.322138066],[-71.882752092,41.322075237],[-71.882637204,41.322008128],[-71.882533176,41.321945946],[-71.882341252,41.321825323],[-71.882205197,41.321738684],[-71.882083068,41.321646989],[-71.881984448,41.321585909],[-71.881833292,41.321484751],[-71.881676859,41.321383838],[-71.881544974,41.321299243],[-71.881438339,41.321237182],[-71.881319875,41.321175275],[-71.881192487,41.321102237],[-71.881092882,41.321048866],[-71.881000479,41.321002836],[-71.880883416,41.320941679],[-71.880800691,41.320900968],[-71.880634312,41.320821014],[-71.880533253,41.320773114],[-71.880443421,41.320736063],[-71.880361578,41.320705893],[-71.880269333,41.32067642],[-71.880140975,41.320634442],[-71.880013177,41.320599963],[-71.879896631,41.320570273],[-71.879781133,41.320543438],[-71.879668581,41.320517005],[-71.879530264,41.320483865],[-71.879413103,41.320447383],[-71.879340031,41.320417824],[-71.879273723,41.32039325],[-71.879200247,41.320367008],[-71.879126393,41.320343809],[-71.879058865,41.320323174],[-71.878982242,41.320298383],[-71.878892954,41.320265972],[-71.87881097,41.320242776],[-71.878716776,41.320216854],[-71.87860553,41.320180192],[-71.878491783,41.32015152],[-71.878400734,41.32012394],[-71.878294202,41.320078801],[-71.878224469,41.320049275],[-71.878082433,41.3200075],[-71.877958547,41.319977649],[-71.877844421,41.319951585],[-71.877773122,41.319934621],[-71.877651806,41.319892685],[-71.877548566,41.319844744],[-71.877470947,41.319810166],[-71.87738383,41.319775186],[-71.877290655,41.31974704],[-71.877204745,41.319731861],[-71.877096644,41.319740494],[-71.876995533,41.319788168],[-71.876955034,41.319872373],[-71.876948069,41.319932523],[-71.8769423,41.320010576],[-71.876938051,41.320078676],[-71.876939779,41.320152268],[-71.876969967,41.320257923],[-71.877015059,41.320317833],[-71.877085258,41.320375603],[-71.877170731,41.320435885],[-71.877226253,41.320478768],[-71.877315301,41.320559278],[-71.877376198,41.320629291],[-71.877448387,41.320711183],[-71.877502456,41.320759812],[-71.877621261,41.320839492],[-71.877720366,41.320890877],[-71.877820778,41.320931989],[-71.877889126,41.320957975],[-71.878013405,41.321002919],[-71.878112644,41.321035458],[-71.878209986,41.321059907],[-71.878330171,41.321084144],[-71.878466704,41.321107664],[-71.878551597,41.321119574],[-71.878735482,41.32114232],[-71.878841582,41.321149381],[-71.878936434,41.321152363],[-71.879049118,41.32115421],[-71.87914082,41.321152742],[-71.879245254,41.321149767],[-71.879370233,41.321147755],[-71.879482301,41.321142834],[-71.879561808,41.321141634],[-71.879748228,41.321141019],[-71.879882884,41.321144234],[-71.880024187,41.321153167],[-71.880124187,41.321164959],[-71.880319548,41.321199488],[-71.880457757,41.321244979],[-71.880599592,41.321308731],[-71.880687632,41.321345421],[-71.88082286,41.321399955],[-71.880911035,41.321438726],[-71.881018041,41.321491843],[-71.881090403,41.321524195],[-71.881175533,41.321566429],[-71.881250638,41.321606135],[-71.881317394,41.321644817],[-71.881395027,41.321696728],[-71.881473621,41.321746874],[-71.881564348,41.321812235],[-71.881659563,41.321877306],[-71.881735534,41.321924854],[-71.881812465,41.321970683],[-71.881920093,41.322036514],[-71.882002038,41.32208379],[-71.882077338,41.322130676],[-71.882146719,41.322171887],[-71.882207762,41.322208827],[-71.882268138,41.322245722],[-71.882333818,41.322287083],[-71.882402822,41.3223312],[-71.882478267,41.322376942],[-71.882553428,41.322431147],[-71.882638614,41.32248772],[-71.882706832,41.322532297],[-71.882778433,41.32257947],[-71.882836639,41.322618797],[-71.882950731,41.322694942],[-71.883038808,41.322757978],[-71.883112802,41.322809671],[-71.883188107,41.322862526],[-71.883240982,41.322903082],[-71.883323241,41.32296218],[-71.883372982,41.323001146],[-71.88341504,41.323033757],[-71.883427559,41.323062944],[-71.883494486,41.323120149],[-71.88357768,41.32319873],[-71.883622897,41.323242353],[-71.883693208,41.323302177],[-71.883753386,41.323361875],[-71.883859447,41.323459659],[-71.883863168,41.323463077],[-71.883929925,41.323532358],[-71.883999304,41.323603941],[-71.884066679,41.32366988],[-71.884167776,41.323779917],[-71.884261647,41.323873418],[-71.884360103,41.323972737],[-71.884474962,41.324090732],[-71.884526938,41.324148604],[-71.884612755,41.324254985],[-71.884651488,41.324304851],[-71.884709818,41.324380289],[-71.884775579,41.324455268],[-71.884827953,41.324518696],[-71.884874199,41.32457183],[-71.88492251,41.324625323],[-71.884971752,41.324677166],[-71.885076448,41.324764182],[-71.885126414,41.324804861],[-71.885207691,41.324881846],[-71.88528216,41.324962101],[-71.885345384,41.325043858],[-71.885414476,41.325138197],[-71.885467647,41.325202765],[-71.885572095,41.325340119],[-71.885669984,41.325450485],[-71.885756423,41.325543576],[-71.885812749,41.325602805],[-71.885943575,41.3257266],[-71.886060025,41.325825353],[-71.886198353,41.32593492],[-71.886357792,41.326053838],[-71.886439276,41.326113988],[-71.886500153,41.326157718],[-71.886610116,41.32623671],[-71.886721967,41.326316816],[-71.886845418,41.326398552],[-71.886947986,41.326468535],[-71.887023119,41.326511462],[-71.887157171,41.326590143],[-71.887316336,41.326682622],[-71.887474129,41.326773962],[-71.887618293,41.326869236],[-71.887695616,41.326918079],[-71.887736577,41.326943945],[-71.887812207,41.327004],[-71.887893636,41.32706479],[-71.887969493,41.32712226],[-71.888024449,41.327164842],[-71.888122868,41.327235592],[-71.888196718,41.327276854],[-71.888290109,41.327328455],[-71.888365422,41.327365777],[-71.888530087,41.327443759],[-71.888648234,41.327505317],[-71.888768722,41.327572675],[-71.888889066,41.327641406],[-71.888950759,41.327678957],[-71.889076447,41.327753388],[-71.889163722,41.327807022],[-71.889229414,41.327848653],[-71.889299207,41.327885925],[-71.889371216,41.327923395],[-71.889463461,41.32796075],[-71.889530874,41.327985543],[-71.889604297,41.328015895],[-71.889678021,41.328050958],[-71.889747816,41.328088526],[-71.889816895,41.328133256],[-71.889886386,41.328180957],[-71.889945237,41.328224967],[-71.890003444,41.328267972],[-71.89006138,41.328306199],[-71.890169161,41.328353747],[-71.8902309,41.328383613],[-71.890310519,41.328440268],[-71.890363414,41.328487888],[-71.890438781,41.328584512],[-71.890484444,41.328660859],[-71.890521998,41.328730647],[-71.890554576,41.32879016],[-71.890587178,41.328848621],[-71.890622736,41.328909359],[-71.89065997,41.328976381],[-71.89070726,41.329055627],[-71.890748493,41.329116437],[-71.890847039,41.329253212],[-71.890904592,41.32934905],[-71.890972981,41.329455555],[-71.891015254,41.329522811],[-71.891068162,41.329607892],[-71.891119994,41.329685545],[-71.891160087,41.329748417],[-71.891196049,41.32980538],[-71.891234085,41.329859111],[-71.891263119,41.329892556],[-71.891472651,41.329989428],[-71.891570651,41.330034429],[-71.891662133,41.330086795]]],[[[-71.812630627,41.361691438],[-71.812904627,41.361946438],[-71.813067628,41.362083438],[-71.813263628,41.362248437],[-71.813355627,41.362317438],[-71.813866628,41.362698437],[-71.814178628,41.362912437],[-71.814568628,41.363167438],[-71.814911628,41.363377437],[-71.815338628,41.363621438],[-71.815788628,41.363915438],[-71.816139628,41.364128438],[-71.816269628,41.364220438],[-71.816933628,41.363991438],[-71.817268628,41.363881437],[-71.817354629,41.363850438],[-71.816075628,41.361412437],[-71.815993628,41.361461437],[-71.815843628,41.361481437],[-71.815695628,41.361484437],[-71.815466628,41.361342438],[-71.815433628,41.361196437],[-71.815387628,41.361128438],[-71.815369628,41.361047437],[-71.815241628,41.360993437],[-71.815204628,41.360949437],[-71.815180628,41.360890437],[-71.815081627,41.360812437],[-71.815050628,41.360712437],[-71.815050628,41.360596437],[-71.815075628,41.360499437],[-71.815148628,41.360405437],[-71.815136628,41.360293437],[-71.815126628,41.360095437],[-71.815112628,41.360063437],[-71.816251628,41.360146437],[-71.816275628,41.360148437],[-71.816240628,41.360039437],[-71.816275628,41.359861437],[-71.816514628,41.359646437],[-71.816903628,41.359461437],[-71.817043629,41.359292437],[-71.817117628,41.359179437],[-71.817325628,41.358841437],[-71.817344628,41.358577436],[-71.817375629,41.358350437],[-71.817387628,41.358252436],[-71.817689629,41.358249436],[-71.818143628,41.358245436],[-71.818184628,41.358483436],[-71.818237629,41.358841437],[-71.818916629,41.358742437],[-71.819695629,41.358654436],[-71.820564629,41.358574437],[-71.82051863,41.358319437],[-71.820503629,41.358204437],[-71.820480629,41.358090436],[-71.820465629,41.357972436],[-71.82039663,41.357548436],[-71.820366629,41.357418436],[-71.820313629,41.356903436],[-71.820313629,41.356827436],[-71.820305629,41.356762436],[-71.820313629,41.356697436],[-71.820313629,41.356633436],[-71.820366629,41.356625436],[-71.820541629,41.356610436],[-71.820602629,41.356610436],[-71.820839629,41.356591436],[-71.82143063,41.356522436],[-71.82146563,41.356518436],[-71.82160263,41.356499436],[-71.822159629,41.356396436],[-71.82231963,41.356369436],[-71.822411629,41.356347436],[-71.82276963,41.356274436],[-71.822937631,41.356244436],[-71.82310563,41.356209436],[-71.823677631,41.356102436],[-71.82405163,41.356026436],[-71.824570631,41.355927436],[-71.824722631,41.355893436],[-71.824875631,41.355854436],[-71.825302631,41.355770435],[-71.825508631,41.355740436],[-71.825661631,41.355729435],[-71.825798631,41.355717436],[-71.825882631,41.355717436],[-71.826187631,41.355729435],[-71.826515631,41.355725436],[-71.826752631,41.355706436],[-71.826780631,41.355702436],[-71.826942631,41.355679436],[-71.827065632,41.355656436],[-71.827179631,41.355629436],[-71.827888632,41.355492436],[-71.828369632,41.355393436],[-71.828362632,41.355301435],[-71.828331632,41.355114436],[-71.828316632,41.354973435],[-71.828300632,41.354905436],[-71.828293632,41.354836435],[-71.828270632,41.354763436],[-71.828224631,41.354565435],[-71.828148631,41.354336436],[-71.828110631,41.354256435],[-71.827957632,41.353802435],[-71.827873631,41.353585435],[-71.827621631,41.352856435],[-71.827545631,41.352654435],[-71.827477632,41.352448435],[-71.827309631,41.352005435],[-71.827232631,41.351784435],[-71.827179631,41.351643435],[-71.827133631,41.351502435],[-71.827019631,41.351200435],[-71.826965631,41.351036435],[-71.826866631,41.350773435],[-71.826836631,41.350674435],[-71.826759631,41.350472435],[-71.826729631,41.350369434],[-71.826553631,41.349884434],[-71.82646763,41.349662435],[-71.826447631,41.349610434],[-71.826263631,41.349076435],[-71.82615763,41.348793434],[-71.82611863,41.348706435],[-71.826073631,41.348561434],[-71.82600463,41.348385434],[-71.825897631,41.348148434],[-71.825818631,41.348008434],[-71.82575163,41.347915434],[-71.825623631,41.347783434],[-71.825432631,41.347618434],[-71.82530263,41.347515435],[-71.82528763,41.347500434],[-71.82501263,41.347302435],[-71.82493663,41.347237434],[-71.824768631,41.347115434],[-71.82459363,41.346981434],[-71.82450163,41.346917434],[-71.82416563,41.346665434],[-71.82409763,41.346600434],[-71.82398263,41.346505434],[-71.82386063,41.346402434],[-71.82380063,41.346345434],[-71.82376463,41.346307434],[-71.82371563,41.346253434],[-71.82361663,41.346127434],[-71.82354763,41.346028434],[-71.823486629,41.345909434],[-71.823448629,41.345852434],[-71.823387629,41.345734434],[-71.82334163,41.345608433],[-71.82330363,41.345471433],[-71.82325763,41.345250434],[-71.82324063,41.345194434],[-71.82322863,41.345129434],[-71.823211629,41.344997434],[-71.823197629,41.344844434],[-71.82318963,41.344722434],[-71.82318963,41.344664434],[-71.823180629,41.344580434],[-71.823154629,41.344363433],[-71.82315163,41.344334434],[-71.82309063,41.344105433],[-71.823022629,41.343949433],[-71.823006629,41.343914433],[-71.822946629,41.343800433],[-71.822902629,41.343714434],[-71.82281563,41.343548433],[-71.822784629,41.343496434],[-71.822762629,41.343457434],[-71.822695629,41.343320434],[-71.822918629,41.343298434],[-71.82302963,41.343262434],[-71.823114629,41.343239434],[-71.823154629,41.343234433],[-71.82332163,41.343251433],[-71.82334663,41.343250433],[-71.82348163,41.343273433],[-71.823482854,41.343273242],[-71.823481854,41.343272974],[-71.823516445,41.343259772],[-71.823618685,41.343222731],[-71.823724365,41.343163177],[-71.823781099,41.343117207],[-71.823868321,41.343068636],[-71.823976586,41.343022842],[-71.824069534,41.342978532],[-71.82414275,41.342933248],[-71.82420743,41.342849519],[-71.824234809,41.342795491],[-71.82428685,41.342696703],[-71.824342112,41.342635346],[-71.824381023,41.342587483],[-71.824430556,41.342576571],[-71.824515575,41.342543077],[-71.82460678,41.342539298],[-71.824767491,41.342543693],[-71.824887783,41.342530318],[-71.824977707,41.342488714],[-71.825062489,41.342450418],[-71.82513358,41.342465998],[-71.825215801,41.342474227],[-71.825273778,41.34245858],[-71.825326102,41.342465865],[-71.825380407,41.342450205],[-71.825463252,41.342400891],[-71.825547833,41.342401361],[-71.825619627,41.342418173],[-71.825725536,41.342441956],[-71.825801568,41.342432158],[-71.825930539,41.342406796],[-71.826081683,41.342397585],[-71.826151294,41.342384192],[-71.82618475,41.342362484],[-71.826260841,41.342352434],[-71.826338688,41.342329435],[-71.826415224,41.342298983],[-71.826519522,41.342267606],[-71.826604557,41.342249777],[-71.826676324,41.34223672],[-71.826747522,41.342201023],[-71.826805543,41.34215809],[-71.826817508,41.342074716],[-71.826819112,41.342013167],[-71.826814534,41.341941114],[-71.826814026,41.341839433],[-71.826811349,41.34174709],[-71.826862085,41.341691667],[-71.826921393,41.341633133],[-71.826944909,41.341571865],[-71.826951455,41.341485121],[-71.826938464,41.341411835],[-71.826926402,41.341293537],[-71.826934434,41.341230986],[-71.826952703,41.341152099],[-71.826964447,41.341061018],[-71.826969533,41.340985828],[-71.826953322,41.340930093],[-71.826919712,41.340823566],[-71.826864247,41.340758542],[-71.826811476,41.340637478],[-71.826777995,41.340550734],[-71.826758585,41.340474081],[-71.826733276,41.340389097],[-71.82670805,41.340320603],[-71.826670547,41.340236592],[-71.826675638,41.340168514],[-71.826722786,41.340130095],[-71.826815335,41.340043519],[-71.826917164,41.339883273],[-71.826961154,41.339862747],[-71.827065884,41.339845617],[-71.82714955,41.339852103],[-71.827229163,41.339800578],[-71.827299132,41.3397623],[-71.827350025,41.339768902],[-71.827459171,41.33977918],[-71.827530597,41.339862295],[-71.827623169,41.339895788],[-71.827693715,41.339984943],[-71.827753849,41.340000712],[-71.827783536,41.339978123],[-71.827794561,41.339943649],[-71.827760253,41.339903929],[-71.827674819,41.339877848],[-71.827618318,41.33983627],[-71.827595741,41.339775796],[-71.827570055,41.339712517],[-71.827606525,41.339656792],[-71.827587923,41.339638618],[-71.827645958,41.339593031],[-71.827651697,41.339545284],[-71.827616519,41.339525647],[-71.827553736,41.339514047],[-71.827455286,41.339566998],[-71.827368696,41.339528228],[-71.827452858,41.339457958],[-71.827415989,41.339415821],[-71.827330007,41.339467982],[-71.827327751,41.339465793],[-71.827266554,41.339425532],[-71.827199732,41.339334491],[-71.827126665,41.33928109],[-71.827008826,41.339207142],[-71.826930174,41.339171641],[-71.826905011,41.339140037],[-71.826904681,41.339086155],[-71.826915941,41.339019798],[-71.826930391,41.338960088],[-71.826948736,41.33886032],[-71.826971733,41.338786451],[-71.827003268,41.338733028],[-71.827048258,41.33865777],[-71.827093467,41.338541345],[-71.827132921,41.338402843],[-71.827114783,41.338337736],[-71.827076541,41.338275682],[-71.827053066,41.338223673],[-71.827012443,41.338164896],[-71.826961483,41.338102101],[-71.826929529,41.338023083],[-71.82690305,41.337971082],[-71.826889213,41.337898347],[-71.826841016,41.337860038],[-71.826812506,41.337869062],[-71.82675306,41.337923731],[-71.826722648,41.337989296],[-71.826702129,41.338048909],[-71.826685621,41.338133852],[-71.82667044,41.338211129],[-71.826632926,41.338282637],[-71.826558639,41.338336937],[-71.826481812,41.338332512],[-71.826406934,41.338323141],[-71.826275065,41.33831965],[-71.826182247,41.33829686],[-71.826080654,41.338261195],[-71.826045759,41.338182413],[-71.82604964,41.338120949],[-71.826050848,41.338046754],[-71.826041379,41.337979564],[-71.826027471,41.33792277],[-71.826003366,41.33785983],[-71.825981835,41.337801822],[-71.825933201,41.337748923],[-71.82584575,41.337676488],[-71.825793448,41.33755732],[-71.825788284,41.337489364],[-71.825801405,41.337418679],[-71.825844842,41.337372518],[-71.825935953,41.337308748],[-71.825987863,41.337355303],[-71.826034475,41.337422685],[-71.826077342,41.337493599],[-71.826128896,41.337566273],[-71.826238412,41.337663666],[-71.82631876,41.337711123],[-71.826423608,41.337748791],[-71.826506359,41.337718207],[-71.826549674,41.337672297],[-71.826573556,41.337617638],[-71.826565855,41.337552135],[-71.826543825,41.337479332],[-71.82652491,41.33737409],[-71.82653113,41.337313145],[-71.826542321,41.337257263],[-71.826567404,41.337181765],[-71.826622419,41.33708466],[-71.826661502,41.337035721],[-71.826724324,41.336976674],[-71.826731931,41.336944359],[-71.826656596,41.336922251],[-71.826583139,41.336929869],[-71.82650025,41.33695078],[-71.82630408,41.337013292],[-71.826205667,41.33701229],[-71.826162883,41.336994641],[-71.826104748,41.336953067],[-71.826089516,41.336892412],[-71.826097381,41.336820553],[-71.826087684,41.336707714],[-71.826070826,41.336612986],[-71.826123205,41.336492241],[-71.826186282,41.336411192],[-71.826257173,41.336351711],[-71.826318083,41.336310874],[-71.82640024,41.336259091],[-71.826495234,41.336195516],[-71.826565262,41.336163664],[-71.826620571,41.336168036],[-71.826666622,41.336208203],[-71.826710077,41.336257137],[-71.826816224,41.336336334],[-71.826839973,41.336334277],[-71.826852319,41.336309175],[-71.826841191,41.336256262],[-71.826828152,41.336191232],[-71.826819797,41.336128476],[-71.826834966,41.336036905],[-71.826837768,41.335972104],[-71.826821531,41.335916918],[-71.826816725,41.335896302],[-71.826816762,41.335818794],[-71.826865459,41.33576308],[-71.826849493,41.335737808],[-71.826767706,41.335608341],[-71.826718221,41.335633913],[-71.826681891,41.335632301],[-71.826616897,41.335645133],[-71.826458512,41.335714194],[-71.826311801,41.335751386],[-71.826303855,41.335831227],[-71.826240975,41.335890709],[-71.826142211,41.335910223],[-71.825996435,41.335970808],[-71.825900409,41.335961337],[-71.825770649,41.335929251],[-71.825671732,41.335887861],[-71.825582077,41.335841482],[-71.825500706,41.335813398],[-71.825409715,41.335791448],[-71.825284247,41.335762025],[-71.82524512,41.335741026],[-71.825225503,41.33570753],[-71.825230163,41.335668271],[-71.825272952,41.335608138],[-71.825315687,41.335524883],[-71.825331427,41.335407215],[-71.825362905,41.335275208],[-71.825441464,41.335165276],[-71.825535081,41.335075015],[-71.825677478,41.33498217],[-71.825813811,41.334920902],[-71.825974484,41.334848496],[-71.826164353,41.334758809],[-71.826328541,41.334661121],[-71.826470073,41.334596156],[-71.826612096,41.334556461],[-71.826698723,41.334561773],[-71.826738193,41.334608889],[-71.826703825,41.334702161],[-71.826638527,41.334824063],[-71.826646982,41.334973682],[-71.826728874,41.335015074],[-71.826755352,41.335115721],[-71.826802525,41.335210614],[-71.826870745,41.335303023],[-71.8269688,41.335360241],[-71.827014274,41.335406425],[-71.827025853,41.33543434],[-71.827156975,41.335574987],[-71.82718187,41.335601721],[-71.827288085,41.335609904],[-71.82731188,41.335617041],[-71.827373788,41.33564854],[-71.827447132,41.335697458],[-71.827493407,41.335739819],[-71.827549878,41.335806532],[-71.827582635,41.33587624],[-71.827578888,41.335933862],[-71.827566887,41.336052114],[-71.827549323,41.336119792],[-71.827525597,41.336187031],[-71.827521966,41.3362436],[-71.827498966,41.336298258],[-71.82755752,41.336368784],[-71.827515723,41.33640266],[-71.82748052,41.336462612],[-71.827432004,41.336511968],[-71.827418899,41.336561291],[-71.827418026,41.336623341],[-71.827427016,41.336764153],[-71.827455108,41.336817316],[-71.827495769,41.336901936],[-71.827512927,41.337001625],[-71.827531861,41.337073888],[-71.82756379,41.337129807],[-71.827650954,41.33717482],[-71.8277289,41.337209224],[-71.82779346,41.337248858],[-71.827838572,41.337307095],[-71.827899898,41.337288647],[-71.827960524,41.337239691],[-71.828029032,41.337286015],[-71.828080124,41.337356814],[-71.828123468,41.337407417],[-71.828165995,41.337428314],[-71.828177828,41.337470362],[-71.828171144,41.337529113],[-71.828137616,41.337584143],[-71.828107724,41.33767443],[-71.828132942,41.337789649],[-71.828136355,41.337877028],[-71.82811336,41.337944904],[-71.828097466,41.338030966],[-71.828066153,41.338122309],[-71.828042534,41.33818081],[-71.828019321,41.338235423],[-71.828048324,41.338282362],[-71.828094771,41.33829211],[-71.828171988,41.338295686],[-71.828272459,41.338271134],[-71.828376686,41.338208697],[-71.828464978,41.338176015],[-71.828606797,41.338161019],[-71.828687523,41.338138306],[-71.828775389,41.338123464],[-71.828855392,41.338101829],[-71.828988992,41.338093717],[-71.829130436,41.338094707],[-71.829229429,41.338071919],[-71.829343852,41.338027886],[-71.829432784,41.338013955],[-71.829531677,41.338025565],[-71.829640215,41.338030148],[-71.829770579,41.338036316],[-71.829900518,41.338030455],[-71.830007925,41.338021433],[-71.830096444,41.33800979],[-71.830200702,41.337977998],[-71.830364346,41.337934509],[-71.830444446,41.337908069],[-71.83051799,41.337881671],[-71.830588298,41.337821182],[-71.830637667,41.337736648],[-71.83064591,41.337650494],[-71.830660406,41.337558901],[-71.830691357,41.337528738],[-71.830697421,41.337491716],[-71.830667659,41.33746303],[-71.830615805,41.337416134],[-71.830575175,41.337422494],[-71.830483469,41.337445743],[-71.830472687,41.337437883],[-71.830441364,41.337382512],[-71.830496069,41.337338992],[-71.830464515,41.337291855],[-71.830434702,41.337235108],[-71.830415496,41.337175493],[-71.830429756,41.337097098],[-71.830434127,41.337037256],[-71.830417328,41.336955679],[-71.830352323,41.336918221],[-71.830261219,41.336916424],[-71.83016989,41.336954331],[-71.830099226,41.337010109],[-71.830054025,41.337072675],[-71.830009665,41.3371276],[-71.829948149,41.33720437],[-71.82989618,41.337212684],[-71.829799245,41.337210034],[-71.829703416,41.337162029],[-71.829638484,41.337133032],[-71.829562295,41.337086251],[-71.829507736,41.33704428],[-71.829404719,41.336960686],[-71.829367106,41.336903457],[-71.829294062,41.336842327],[-71.829268145,41.336769444],[-71.829197206,41.336662429],[-71.82912206,41.336605559],[-71.82909527,41.336552142],[-71.829050015,41.33648972],[-71.829049843,41.336401257],[-71.82906843,41.336295954],[-71.829121425,41.336214246],[-71.829158797,41.336163641],[-71.829182387,41.336099696],[-71.829211554,41.33603466],[-71.829236666,41.335971785],[-71.829249565,41.335918094],[-71.829286498,41.335846632],[-71.829310095,41.335784265],[-71.829350885,41.335683175],[-71.829319876,41.335587413],[-71.829345457,41.335533342],[-71.829340313,41.335506072],[-71.829340272,41.335431606],[-71.829398361,41.335367539],[-71.829441161,41.33527415],[-71.829515577,41.335216464],[-71.829512895,41.335111724],[-71.829542562,41.335067636],[-71.82955829,41.335009568],[-71.829539889,41.334970855],[-71.82953389,41.334900431],[-71.829544173,41.334839589],[-71.829583184,41.334771117],[-71.829653228,41.334736999],[-71.829754674,41.334702357],[-71.829885475,41.334676093],[-71.829956233,41.334657388],[-71.829993585,41.334651197],[-71.830116498,41.334649427],[-71.830212986,41.334654319],[-71.830297131,41.334672785],[-71.830365592,41.334691846],[-71.830426584,41.334716188],[-71.830476692,41.334748177],[-71.83055812,41.334841324],[-71.830572013,41.334894573],[-71.830586781,41.334934577],[-71.83058964,41.334972008],[-71.830575907,41.335016599],[-71.830561432,41.335040311],[-71.83050876,41.335089337],[-71.830475501,41.335119027],[-71.830462855,41.335150465],[-71.830467866,41.335175265],[-71.830500497,41.335243577],[-71.830561112,41.335223117],[-71.830575205,41.335273826],[-71.830532346,41.33530128],[-71.830561518,41.335333444],[-71.8306171,41.335361758],[-71.830694677,41.335395338],[-71.830759572,41.335411252],[-71.830811233,41.335414283],[-71.830867094,41.335395803],[-71.830898269,41.335356101],[-71.83090886,41.335326316],[-71.831090917,41.335241103],[-71.831115063,41.335197465],[-71.831163383,41.335134112],[-71.831160716,41.335062923],[-71.831128021,41.335000077],[-71.831171866,41.334951763],[-71.831173462,41.33491329],[-71.83115464,41.334887752],[-71.831166068,41.334855494],[-71.831193261,41.334802562],[-71.831235462,41.334747071],[-71.831314199,41.33466236],[-71.831391512,41.334631926],[-71.831497703,41.334611563],[-71.831668879,41.334619051],[-71.831783214,41.334624943],[-71.831822922,41.334610603],[-71.8319097,41.334538013],[-71.831980305,41.3345132],[-71.832066278,41.334455227],[-71.832194969,41.334408245],[-71.832248214,41.334442512],[-71.832375532,41.334453762],[-71.832432751,41.334511689],[-71.832522221,41.334580591],[-71.83257888,41.334635774],[-71.832639044,41.334664097],[-71.832862587,41.334676235],[-71.832971903,41.334679624],[-71.833046908,41.334714445],[-71.833112915,41.334728342],[-71.833158753,41.334791469],[-71.833295175,41.334850332],[-71.833268175,41.334887346],[-71.833284845,41.334907355],[-71.833345392,41.334939313],[-71.833409586,41.334972381],[-71.833438126,41.335005461],[-71.833469507,41.335060031],[-71.833456016,41.335068303],[-71.833358849,41.335061197],[-71.833291585,41.335027086],[-71.833164528,41.334906697],[-71.833072286,41.334835768],[-71.833011199,41.334828741],[-71.832906871,41.334863463],[-71.832748806,41.334886447],[-71.832699648,41.334868339],[-71.83262575,41.334848266],[-71.832533372,41.334840025],[-71.832410246,41.33483583],[-71.832339673,41.334896846],[-71.832310074,41.334971719],[-71.832307954,41.335050262],[-71.832312227,41.335126706],[-71.83229034,41.335178617],[-71.83224851,41.335270975],[-71.832221282,41.33532887],[-71.832212027,41.335430374],[-71.832214796,41.335509544],[-71.832225206,41.335569595],[-71.832222557,41.335651479],[-71.832196193,41.335730207],[-71.832174276,41.335788179],[-71.832147249,41.335843878],[-71.83207872,41.335949029],[-71.832076622,41.336019888],[-71.832130748,41.336101952],[-71.832153625,41.33617315],[-71.832140717,41.336212548],[-71.832144759,41.336273601],[-71.832179953,41.336320246],[-71.832201099,41.336373291],[-71.83224557,41.336442026],[-71.832288689,41.336525585],[-71.83233541,41.33652362],[-71.83242571,41.336528688],[-71.832490812,41.336495384],[-71.832533984,41.33644595],[-71.832613509,41.336372923],[-71.832637209,41.336313345],[-71.83264296,41.336250801],[-71.832669547,41.336144513],[-71.832786682,41.336038375],[-71.83288148,41.335991125],[-71.833022118,41.335995498],[-71.833141269,41.335981522],[-71.833281073,41.335959207],[-71.833350825,41.33593952],[-71.833438598,41.335895262],[-71.83350694,41.335872697],[-71.833582486,41.335870625],[-71.833656068,41.335887794],[-71.833785184,41.335917769],[-71.833854004,41.335935477],[-71.833928505,41.335960372],[-71.83401055,41.33600679],[-71.834099373,41.336043286],[-71.83421093,41.336104987],[-71.834260027,41.336110768],[-71.834215354,41.336216468],[-71.83429851,41.336230658],[-71.834346566,41.336145806],[-71.834356326,41.336149528],[-71.834427484,41.336161626],[-71.834498913,41.336178914],[-71.83460742,41.33618395],[-71.834681794,41.336184054],[-71.834757698,41.336180609],[-71.834828658,41.336171551],[-71.834953614,41.336129769],[-71.835017333,41.336075609],[-71.835076884,41.336001655],[-71.83512978,41.335913884],[-71.835186138,41.335803118],[-71.835231677,41.335706975],[-71.835270013,41.335614603],[-71.835283912,41.33556148],[-71.83575903,41.335045461],[-71.835843078,41.334902892],[-71.836077892,41.334993964],[-71.836137058,41.334910519],[-71.835924784,41.334824093],[-71.835945758,41.334772162],[-71.835983557,41.334699597],[-71.836015737,41.334625837],[-71.836052214,41.334543877],[-71.836100384,41.334458246],[-71.836127368,41.334394861],[-71.836130444,41.334332301],[-71.836132004,41.334328752],[-71.83630316,41.334397321],[-71.836323546,41.334372653],[-71.836090099,41.334240159],[-71.836111936,41.334226282],[-71.836203936,41.334219998],[-71.83629451,41.334178452],[-71.836364856,41.334127337],[-71.836430131,41.33408145],[-71.836488107,41.334067558],[-71.836545246,41.334026773],[-71.83660774,41.333965183],[-71.836656535,41.333906789],[-71.836687247,41.333907728],[-71.836752778,41.333941042],[-71.836760441,41.333926565],[-71.836785707,41.333859892],[-71.836834324,41.333790452],[-71.836874955,41.333737685],[-71.836820844,41.333694801],[-71.836760021,41.333662388],[-71.836763812,41.333620684],[-71.836717993,41.333591201],[-71.836730467,41.333562233],[-71.836796937,41.333483432],[-71.836867285,41.333438629],[-71.836939138,41.33342106],[-71.837065844,41.333396217],[-71.837137794,41.33345627],[-71.837176551,41.333510955],[-71.837217896,41.333520325],[-71.837296895,41.333540997],[-71.837384661,41.333561301],[-71.837518616,41.333600497],[-71.837601787,41.33362987],[-71.837767108,41.333685007],[-71.837919926,41.333616266],[-71.837958135,41.333647007],[-71.83814048,41.333579072],[-71.838255466,41.333540951],[-71.838381178,41.333511651],[-71.838338277,41.333442182],[-71.838477632,41.333369592],[-71.838570792,41.333464803],[-71.838705913,41.333564967],[-71.8387604,41.333533817],[-71.838755839,41.33350849],[-71.838718447,41.33347745],[-71.838610611,41.333384387],[-71.838589642,41.333354626],[-71.838634627,41.333310993],[-71.838654828,41.333303775],[-71.838708036,41.333336278],[-71.839214562,41.332963597],[-71.839152157,41.332871932],[-71.839175218,41.332848605],[-71.839257788,41.332931862],[-71.839314053,41.332904526],[-71.839481933,41.332973306],[-71.839465934,41.332924822],[-71.839438482,41.332873901],[-71.8393995,41.332811259],[-71.839369678,41.33274795],[-71.839348117,41.332697744],[-71.839357916,41.332633083],[-71.839377677,41.332587855],[-71.839405946,41.332550836],[-71.839448832,41.332523699],[-71.839504884,41.332490509],[-71.839528964,41.332505578],[-71.840007495,41.332271503],[-71.839956949,41.332184813],[-71.840040666,41.332173679],[-71.840171252,41.332370346],[-71.84034267,41.332302668],[-71.840240595,41.332127301],[-71.840441939,41.33207312],[-71.840413517,41.332016531],[-71.840544001,41.331937173],[-71.840694502,41.332030863],[-71.840741397,41.331993124],[-71.84060484,41.331873549],[-71.840938121,41.331745494],[-71.841280266,41.331612768],[-71.841429142,41.331772947],[-71.84149901,41.331736009],[-71.841417518,41.331568953],[-71.841428549,41.331560572],[-71.841475902,41.331546801],[-71.841536735,41.331517094],[-71.8416042,41.331467471],[-71.841655367,41.331423064],[-71.841717842,41.331376657],[-71.841781301,41.331344336],[-71.841894954,41.331284718],[-71.841990133,41.331237504],[-71.842050706,41.331204596],[-71.842125206,41.331165907],[-71.842232641,41.331124214],[-71.842311545,41.331086426],[-71.842413094,41.331062087],[-71.842479599,41.331020654],[-71.842632136,41.330906304],[-71.842690003,41.33085513],[-71.842720793,41.330801682],[-71.842825217,41.330712381],[-71.842929316,41.330642224],[-71.842988173,41.330600607],[-71.843093286,41.33052139],[-71.843170948,41.330455223],[-71.843371104,41.330407353],[-71.84347257,41.330402178],[-71.843558762,41.330394808],[-71.84367549,41.330360817],[-71.843797897,41.330333579],[-71.843908592,41.330306375],[-71.843983126,41.330268736],[-71.844058551,41.330239168],[-71.844168849,41.330384341],[-71.844289873,41.330319255],[-71.844199351,41.330172811],[-71.844292647,41.330143143],[-71.844511433,41.330078428],[-71.844553287,41.330080818],[-71.844630877,41.330099454],[-71.844718679,41.330086612],[-71.844751794,41.330019845],[-71.844769098,41.32991237],[-71.844774539,41.329833702],[-71.844774738,41.329831117],[-71.844807167,41.329743609],[-71.844829214,41.329672461],[-71.844858758,41.329578854],[-71.844852461,41.329512297],[-71.844820687,41.32949963],[-71.844823985,41.329423095],[-71.844831176,41.329365463],[-71.844876523,41.329311169],[-71.844956659,41.329283484],[-71.845046659,41.329267663],[-71.84513788,41.32926485],[-71.845289505,41.329266683],[-71.845351467,41.329302312],[-71.84541825,41.329308287],[-71.845418721,41.329397572],[-71.845487184,41.329400111],[-71.845571564,41.329377239],[-71.84572057,41.329365722],[-71.845802517,41.329353355],[-71.845839044,41.329341169],[-71.845873814,41.329329606],[-71.845966072,41.329270323],[-71.846037826,41.329218191],[-71.846134188,41.329212229],[-71.846206864,41.329167985],[-71.846300326,41.329095638],[-71.846328103,41.329075566],[-71.84636385,41.329059312],[-71.846410991,41.329029072],[-71.846508055,41.328955114],[-71.846571611,41.328896351],[-71.846626188,41.328849187],[-71.846689919,41.328731875],[-71.846720808,41.328669345],[-71.846712952,41.328595337],[-71.846747121,41.328556239],[-71.846793927,41.328514291],[-71.846858514,41.328455502],[-71.846971169,41.328341038],[-71.847056565,41.328264118],[-71.847130393,41.328203083],[-71.847224171,41.328156304],[-71.847288939,41.328080292],[-71.847337063,41.328029603],[-71.847410517,41.327943754],[-71.84742664,41.327877449],[-71.847448656,41.32780685],[-71.847420341,41.327725584],[-71.847366291,41.327665827],[-71.847381498,41.32756435],[-71.847408941,41.327487216],[-71.84747118,41.327369358],[-71.847481316,41.327306845],[-71.847484212,41.32718377],[-71.847421105,41.327081271],[-71.847410982,41.32704894],[-71.847398575,41.327009251],[-71.847392912,41.326954219],[-71.847390168,41.326831641],[-71.847385285,41.326746394],[-71.847407191,41.326649402],[-71.847437617,41.326597074],[-71.847462797,41.326545196],[-71.847473647,41.326485974],[-71.847472245,41.326416154],[-71.847452173,41.326287293],[-71.847447085,41.326197655],[-71.847423754,41.326117656],[-71.847387004,41.3260876],[-71.847269253,41.326041323],[-71.847186012,41.326014884],[-71.847110588,41.325997707],[-71.847010114,41.325948357],[-71.846969303,41.325964673],[-71.846913251,41.326013396],[-71.846842864,41.326065227],[-71.846731725,41.326110137],[-71.846679442,41.326148694],[-71.846608845,41.326206632],[-71.846546629,41.326260177],[-71.846478932,41.326287116],[-71.846403573,41.326299579],[-71.846255218,41.326312192],[-71.84621507,41.32628201],[-71.846199803,41.326309546],[-71.846199107,41.326384312],[-71.846193404,41.326441918],[-71.846197233,41.326511776],[-71.84615233,41.326563438],[-71.846072528,41.326607796],[-71.846039936,41.326629369],[-71.845985986,41.326565242],[-71.845937501,41.326496113],[-71.845874413,41.326545588],[-71.845835319,41.326508221],[-71.845800656,41.326482436],[-71.845649376,41.326498694],[-71.845531648,41.326542799],[-71.845477191,41.326520434],[-71.845392873,41.32652549],[-71.845272217,41.326526699],[-71.84520314,41.326481965],[-71.845090149,41.326532665],[-71.845014871,41.326618221],[-71.844925335,41.326611857],[-71.844830813,41.326632426],[-71.844711378,41.326750087],[-71.844545557,41.326747748],[-71.844407202,41.326741072],[-71.844318283,41.326707878],[-71.844209168,41.326728651],[-71.844033353,41.32676426],[-71.843929694,41.326841621],[-71.843781038,41.32679175],[-71.843708892,41.326821171],[-71.843623921,41.32660962],[-71.843456473,41.326644014],[-71.843506287,41.326741386],[-71.843470951,41.326754779],[-71.843374549,41.326654299],[-71.843288608,41.326697094],[-71.843343917,41.326893411],[-71.843267209,41.326915001],[-71.843188497,41.326780139],[-71.843031816,41.326808051],[-71.843033449,41.326853398],[-71.843073831,41.326922621],[-71.842920599,41.326960357],[-71.842860036,41.326797562],[-71.842788358,41.326823619],[-71.842671805,41.326866826],[-71.842600354,41.326913031],[-71.842516383,41.326984591],[-71.842463461,41.327064019],[-71.842459728,41.327069587],[-71.842375954,41.32711512],[-71.842301654,41.327179493],[-71.842288594,41.327217497],[-71.842245727,41.327252983],[-71.842148892,41.327295627],[-71.842075397,41.32738639],[-71.842105063,41.327477784],[-71.842065892,41.327500703],[-71.841990664,41.327445877],[-71.841938472,41.327450377],[-71.841954721,41.327563813],[-71.841902872,41.327587524],[-71.841820676,41.327563708],[-71.841797895,41.327541385],[-71.841749645,41.327586035],[-71.841670519,41.327632857],[-71.841547039,41.327703734],[-71.841425219,41.327790272],[-71.841330361,41.327839999],[-71.841148616,41.327949585],[-71.841051176,41.327969657],[-71.841027728,41.327947405],[-71.841037943,41.327928026],[-71.841027929,41.32787543],[-71.840924469,41.327794112],[-71.840882394,41.327678991],[-71.840840284,41.327528124],[-71.840820953,41.327422611],[-71.840907828,41.327302328],[-71.841024663,41.327196617],[-71.841014953,41.327068388],[-71.841013877,41.32705412],[-71.840920203,41.326975654],[-71.840876103,41.326931964],[-71.84088523,41.326866939],[-71.840927016,41.32680431],[-71.841066712,41.326713328],[-71.841190971,41.326611826],[-71.841250635,41.326544981],[-71.841317667,41.326471482],[-71.841260591,41.32643531],[-71.841179163,41.32644207],[-71.84110143,41.326412454],[-71.841006473,41.326419551],[-71.840930551,41.326440588],[-71.840848552,41.326506607],[-71.840736021,41.326547306],[-71.840620617,41.326572257],[-71.840519372,41.326583832],[-71.840504823,41.326545727],[-71.84051503,41.326513243],[-71.840584092,41.326491632],[-71.840641938,41.326448509],[-71.840664549,41.326385914],[-71.840669094,41.32633817],[-71.840685872,41.326291579],[-71.840857525,41.326155813],[-71.841077405,41.326023519],[-71.840598171,41.325559704],[-71.840594485,41.325451857],[-71.840690286,41.325391469],[-71.840770073,41.325378746],[-71.840879899,41.325419016],[-71.840824563,41.325472102],[-71.84074513,41.325494614],[-71.840743659,41.325567484],[-71.840879054,41.325705176],[-71.841058673,41.325863937],[-71.841231437,41.32577869],[-71.841271191,41.325722402],[-71.841331226,41.325744248],[-71.841472171,41.325765054],[-71.841491379,41.325713447],[-71.841597308,41.325657854],[-71.841710449,41.325653013],[-71.841764509,41.325698525],[-71.841844142,41.32576658],[-71.841892622,41.325725498],[-71.841984511,41.325538074],[-71.842054607,41.325267672],[-71.842122167,41.325086657],[-71.842224892,41.324946726],[-71.84227696,41.324820348],[-71.842356128,41.324724308],[-71.842452368,41.324684753],[-71.842550495,41.32468661],[-71.842647499,41.324763853],[-71.842757392,41.324857478],[-71.842804561,41.324838447],[-71.842793315,41.324782424],[-71.842624295,41.324562226],[-71.842580429,41.324476157],[-71.842786545,41.324445743],[-71.843085958,41.324416537],[-71.843305599,41.32437945],[-71.843444759,41.324314997],[-71.84347578,41.324207915],[-71.843491145,41.324164301],[-71.843669443,41.324180967],[-71.843819854,41.324144589],[-71.843998137,41.324118121],[-71.844128061,41.324137973],[-71.844275964,41.324167056],[-71.844389314,41.324213877],[-71.84444976,41.324290861],[-71.844458401,41.324318715],[-71.844861264,41.324622168],[-71.844915424,41.324588614],[-71.845285301,41.324982024],[-71.845430252,41.324905658],[-71.845404673,41.32488195],[-71.845305059,41.324931718],[-71.844955527,41.324564594],[-71.845112733,41.324453338],[-71.845102202,41.324400927],[-71.845150884,41.324381433],[-71.845181169,41.324302232],[-71.845242302,41.324308087],[-71.845338094,41.324367858],[-71.845452989,41.324293481],[-71.845403462,41.324204594],[-71.84533813,41.324104434],[-71.84537203,41.324072222],[-71.845449726,41.32405479],[-71.845676634,41.324239246],[-71.845709471,41.324206694],[-71.845658439,41.324143244],[-71.845818763,41.324036826],[-71.845999578,41.323967259],[-71.846194666,41.323900188],[-71.846413538,41.323770104],[-71.846593768,41.323624699],[-71.846641161,41.323579799],[-71.846736552,41.32348947],[-71.846889489,41.32339222],[-71.847040675,41.323353959],[-71.847164742,41.323367857],[-71.847256681,41.323301849],[-71.847434188,41.323204205],[-71.847611207,41.32304911],[-71.847641569,41.323042043],[-71.847720106,41.323120344],[-71.847965037,41.323179067],[-71.847997253,41.323161474],[-71.848021654,41.32310045],[-71.848255947,41.323058643],[-71.848360937,41.32295973],[-71.848394159,41.322903161],[-71.848549347,41.322864704],[-71.848831911,41.322738356],[-71.849129839,41.322574843],[-71.849409824,41.32241486],[-71.849621762,41.322295083],[-71.849766706,41.322190947],[-71.849877983,41.322116805],[-71.849930701,41.322109395],[-71.849993263,41.322138754],[-71.850046266,41.322201647],[-71.850024381,41.322278925],[-71.850035562,41.322395348],[-71.850074897,41.322432622],[-71.850152928,41.322506554],[-71.8502287,41.322538205],[-71.850308829,41.322482729],[-71.850437745,41.322331504],[-71.850572861,41.322290246],[-71.850700601,41.322287753],[-71.850730394,41.322123817],[-71.850677663,41.322038304],[-71.850567059,41.322011402],[-71.850454308,41.322031254],[-71.850324356,41.322022753],[-71.85021546,41.321980476],[-71.850199381,41.321918134],[-71.850251861,41.321764398],[-71.850381108,41.321635632],[-71.850620505,41.321539853],[-71.850775695,41.321463244],[-71.850945587,41.321384234],[-71.851144308,41.321295713],[-71.85120915,41.321224365],[-71.851257586,41.321142934],[-71.851441813,41.321067128],[-71.851583093,41.320993533],[-71.851739654,41.320907107],[-71.851746979,41.320847507],[-71.851637718,41.320759766],[-71.851584989,41.320764958],[-71.85142653,41.320763498],[-71.851192242,41.320826947],[-71.85110809,41.320816318],[-71.850791857,41.320913041],[-71.850572568,41.320888254],[-71.850388112,41.32087594],[-71.850233639,41.320905181],[-71.8500669,41.320960784],[-71.849986704,41.32098646],[-71.850052394,41.320908912],[-71.850050049,41.320805177],[-71.85006578,41.32075717],[-71.850076765,41.320723723],[-71.850203792,41.320730426],[-71.850225532,41.320682926],[-71.850331737,41.320574219],[-71.850342439,41.320493636],[-71.850276378,41.320360067],[-71.850359114,41.320214083],[-71.850597018,41.320197349],[-71.850909226,41.320171035],[-71.850927879,41.320147444],[-71.850668317,41.320091081],[-71.850333399,41.319949891],[-71.850060973,41.31987591],[-71.850026247,41.319866479],[-71.849864482,41.319819423],[-71.849928404,41.319746042],[-71.85006013,41.319718403],[-71.850259643,41.319676491],[-71.85059087,41.319520008],[-71.850755221,41.319551481],[-71.850917298,41.319673688],[-71.851043917,41.319712113],[-71.851103606,41.319765929],[-71.851146791,41.319757724],[-71.851181129,41.319706251],[-71.851358546,41.319651049],[-71.851585143,41.31960823],[-71.85168175,41.319639153],[-71.851772896,41.319641962],[-71.851944935,41.319404908],[-71.851969468,41.319234126],[-71.851974627,41.319093365],[-71.852075107,41.319009877],[-71.852185984,41.318981338],[-71.852297976,41.318990738],[-71.852444409,41.319001771],[-71.852535525,41.318970845],[-71.852722942,41.318993096],[-71.852956087,41.318972415],[-71.853082009,41.318960319],[-71.853239875,41.318863916],[-71.853573307,41.318808734],[-71.853680497,41.318900665],[-71.85365062,41.31896882],[-71.853670553,41.319047731],[-71.8536133,41.319091132],[-71.853501254,41.319161735],[-71.853517481,41.319217215],[-71.853587378,41.319352395],[-71.853661686,41.319337964],[-71.853851249,41.319274487],[-71.853886756,41.319282451],[-71.854034493,41.319388597],[-71.854162254,41.319452745],[-71.854322196,41.319487679],[-71.854477935,41.319620375],[-71.854579836,41.319715569],[-71.854687445,41.319716404],[-71.854749149,41.319800035],[-71.854480308,41.32001914],[-71.854431576,41.319972268],[-71.854246005,41.320061875],[-71.854153386,41.320050633],[-71.854022018,41.320048933],[-71.8539294,41.320088144],[-71.853882186,41.320086437],[-71.853818488,41.320060171],[-71.853646575,41.32019033],[-71.853608503,41.320246595],[-71.853395864,41.320295985],[-71.853386219,41.32036378],[-71.853476914,41.320417522],[-71.853607606,41.320428762],[-71.853770146,41.320405163],[-71.853849612,41.320379601],[-71.853914406,41.320344707],[-71.854072164,41.320362518],[-71.854222971,41.320362832],[-71.854395359,41.320286828],[-71.854684143,41.320282348],[-71.855013569,41.320304089],[-71.855338587,41.320223405],[-71.855629554,41.320146255],[-71.855765234,41.320059477],[-71.855870666,41.319972219],[-71.85593655,41.319948505],[-71.855986834,41.319789787],[-71.855970281,41.319713656],[-71.856041803,41.319655755],[-71.856177199,41.319595072],[-71.85640364,41.319429382],[-71.856486253,41.319319279],[-71.856476071,41.319215501],[-71.856396886,41.319164218],[-71.856416536,41.31896221],[-71.856535881,41.318923623],[-71.856797248,41.318743393],[-71.856803439,41.318643772],[-71.85676046,41.318533966],[-71.856790944,41.318499749],[-71.856907725,41.318503],[-71.857058118,41.318505919],[-71.857152959,41.318507752],[-71.857238473,41.318451636],[-71.857510041,41.318373536],[-71.857705106,41.318329796],[-71.857884472,41.318344356],[-71.857987255,41.318289741],[-71.857951034,41.318095751],[-71.857898208,41.31794952],[-71.857901389,41.317754675],[-71.857928608,41.317634085],[-71.858016871,41.317548343],[-71.858084669,41.317448187],[-71.858166113,41.317419117],[-71.858329379,41.317424441],[-71.858478714,41.317483988],[-71.858599648,41.317575392],[-71.858802424,41.317599757],[-71.858870128,41.317571049],[-71.85891216,41.317524422],[-71.858925777,41.317429764],[-71.858984756,41.317392278],[-71.859068572,41.317408598],[-71.859239186,41.31749255],[-71.859290711,41.317556015],[-71.859344121,41.317598182],[-71.859401541,41.317575018],[-71.859408808,41.317528362],[-71.859382032,41.317458553],[-71.859477288,41.317392662],[-71.859636514,41.317380386],[-71.859719062,41.31732055],[-71.859683853,41.31720107],[-71.859618294,41.317046006],[-71.859575163,41.316903611],[-71.859622103,41.31683938],[-71.859736333,41.31678171],[-71.859778763,41.316686252],[-71.859747626,41.316568131],[-71.859697615,41.316542718],[-71.85961017,41.31657238],[-71.859587619,41.316630908],[-71.859625753,41.316752849],[-71.859528211,41.316849623],[-71.859368261,41.316889917],[-71.85931035,41.316934032],[-71.859213362,41.317015777],[-71.858953153,41.317072828],[-71.85865854,41.317123627],[-71.858467452,41.31713392],[-71.858263018,41.317138856],[-71.858171455,41.317020762],[-71.858030698,41.316876475],[-71.857878052,41.316738262],[-71.857853469,41.316614105],[-71.857817851,41.316535724],[-71.85774158,41.316495434],[-71.857591528,41.31647614],[-71.857452451,41.316455828],[-71.857341179,41.316483184],[-71.857268678,41.316438674],[-71.85717269,41.316526246],[-71.857135533,41.316643802],[-71.857139846,41.316794758],[-71.857183443,41.316945683],[-71.857164048,41.317032606],[-71.857050547,41.317118609],[-71.856987014,41.317166743],[-71.856769625,41.31723285],[-71.856629054,41.317200169],[-71.856473905,41.317086433],[-71.856351678,41.31705214],[-71.856203418,41.317039151],[-71.856031376,41.317031724],[-71.855863772,41.317048526],[-71.855781047,41.317048531],[-71.855672405,41.316985103],[-71.855625147,41.316902366],[-71.85564577,41.316845491],[-71.855726544,41.316782485],[-71.855697909,41.316749365],[-71.855547861,41.316820156],[-71.855424527,41.316866644],[-71.855290948,41.316847708],[-71.855209513,41.316777929],[-71.855208528,41.31665793],[-71.85524818,41.316535655],[-71.855345327,41.316420819],[-71.855410971,41.316381576],[-71.855557333,41.316358162],[-71.855600752,41.316253829],[-71.85561875,41.316127185],[-71.85562496,41.316014047],[-71.855636735,41.315892065],[-71.85558146,41.315768459],[-71.855617347,41.315679336],[-71.855649761,41.315559577],[-71.855476228,41.315517253],[-71.85528884,41.315492994],[-71.855132576,41.315530367],[-71.854992367,41.315519044],[-71.854844464,41.315476],[-71.854805483,41.315403094],[-71.854833077,41.31531729],[-71.854864273,41.315257936],[-71.854960767,41.315252195],[-71.854949666,41.315190936],[-71.854909445,41.315185822],[-71.854965642,41.315071593],[-71.855035388,41.314966722],[-71.855114411,41.314860724],[-71.855202213,41.314740405],[-71.855308903,41.314668445],[-71.855481649,41.314666791],[-71.855639407,41.314692765],[-71.855839225,41.314704841],[-71.85603357,41.314636451],[-71.856254231,41.314560067],[-71.856446384,41.314535069],[-71.856597895,41.314511065],[-71.856740299,41.314497039],[-71.85703628,41.314504263],[-71.857068955,41.314505077],[-71.857088411,41.314751791],[-71.857073043,41.314870697],[-71.857083312,41.315012532],[-71.857168322,41.315164838],[-71.857249511,41.31532292],[-71.857343806,41.315470029],[-71.85751042,41.315550634],[-71.857708439,41.315615932],[-71.857849376,41.315610553],[-71.857969329,41.315545822],[-71.858046256,41.315478801],[-71.858150437,41.315381208],[-71.858313301,41.315358471],[-71.85836353,41.315302144],[-71.858549086,41.315329491],[-71.858729959,41.315233123],[-71.858784647,41.31511032],[-71.858771625,41.314926274],[-71.858765285,41.314721533],[-71.858738703,41.314609207],[-71.858703275,41.314504638],[-71.858683582,41.314437071],[-71.858845954,41.314325025],[-71.85895647,41.314287858],[-71.859042486,41.314296784],[-71.859166694,41.314388748],[-71.859223436,41.31437526],[-71.859256141,41.314293259],[-71.859328944,41.314188375],[-71.859373828,41.314092613],[-71.859520203,41.313962365],[-71.85959561,41.313845878],[-71.859559209,41.313702387],[-71.859544357,41.313560841],[-71.859587969,41.313438026],[-71.859580047,41.313393041],[-71.859533052,41.313363937],[-71.859133702,41.313246896],[-71.858889486,41.313147507],[-71.85873539,41.313108559],[-71.858565179,41.313095938],[-71.858445877,41.313040757],[-71.858355094,41.313036191],[-71.858223816,41.312904247],[-71.858186123,41.312906492],[-71.858081082,41.312945973],[-71.858000548,41.312957476],[-71.857866622,41.312934679],[-71.857673708,41.312925032],[-71.857526207,41.31287147],[-71.85737841,41.312708312],[-71.857333158,41.312581635],[-71.857306126,41.312480653],[-71.857355125,41.312399264],[-71.857373117,41.31230569],[-71.857339814,41.312300717],[-71.857307708,41.312320371],[-71.857213306,41.312430786],[-71.857167554,41.312451237],[-71.857108619,41.312440625],[-71.85719433,41.312255152],[-71.857023699,41.312198414],[-71.856866013,41.312145957],[-71.856864971,41.311999428],[-71.856895974,41.3118885],[-71.856950733,41.311767642],[-71.857020671,41.311643535],[-71.857052035,41.311587862],[-71.857517303,41.311697112],[-71.857509692,41.311719732],[-71.857651707,41.311752384],[-71.857723479,41.311586532],[-71.857588065,41.31156303],[-71.85755772,41.311627322],[-71.857119375,41.311532375],[-71.857252754,41.31134449],[-71.857427367,41.31112535],[-71.857624833,41.310881141],[-71.857812914,41.310645995],[-71.858079938,41.310442119],[-71.858288606,41.310588116],[-71.858234547,41.310703209],[-71.858267119,41.310718935],[-71.858512971,41.310515192],[-71.858476883,41.310488912],[-71.858341506,41.310549254],[-71.858126725,41.310405769],[-71.858387453,41.310232375],[-71.858653801,41.31007742],[-71.85877854,41.310018848],[-71.858877709,41.310203723],[-71.858774555,41.310238008],[-71.858827216,41.310343941],[-71.859100002,41.310273129],[-71.859046034,41.310155856],[-71.858931214,41.310186792],[-71.858839578,41.309998349],[-71.859099755,41.309962797],[-71.859328836,41.309964964],[-71.859585061,41.31000524],[-71.859869797,41.310056266],[-71.860215317,41.31016174],[-71.860454307,41.310261303],[-71.860710577,41.310424848],[-71.860877251,41.310572871],[-71.860968915,41.310677263],[-71.860991356,41.310703699],[-71.86107529,41.310814313],[-71.861152754,41.310890412],[-71.861284908,41.310971829],[-71.861484031,41.311068633],[-71.861801218,41.311249161],[-71.861894491,41.311369739],[-71.861973996,41.311562083],[-71.86196864,41.311734499],[-71.861954754,41.311916662],[-71.861943502,41.312081389],[-71.86195953,41.312160311],[-71.862005231,41.312278957],[-71.861999575,41.312780895],[-71.862016121,41.312805429],[-71.86205196,41.312808198],[-71.862056854,41.312755214],[-71.862059006,41.312458849],[-71.862298741,41.312318218],[-71.862734882,41.312106297],[-71.863126822,41.311937671],[-71.863497844,41.311815308],[-71.863889435,41.311764578],[-71.864265298,41.311749301],[-71.864633831,41.311757694],[-71.864949362,41.311802253],[-71.865384884,41.311834948],[-71.865856617,41.311822701],[-71.866374482,41.311793449],[-71.866854272,41.311779273],[-71.867375065,41.311764004],[-71.867740664,41.311757645],[-71.86796492,41.311747391],[-71.868341863,41.311724893],[-71.868874712,41.311679756],[-71.869590522,41.311611889],[-71.870176365,41.311546083],[-71.87038944,41.311522138],[-71.87106608,41.311431747],[-71.87167393,41.311369247],[-71.872182604,41.311314452],[-71.872620634,41.311228025],[-71.873012546,41.311129098],[-71.87339157,41.311030874],[-71.873843301,41.310906318],[-71.874287158,41.310773529],[-71.874715083,41.310650442],[-71.875038361,41.310543407],[-71.875386576,41.310432035],[-71.875702989,41.310344941],[-71.875964113,41.310274927],[-71.876228354,41.310230175],[-71.876489653,41.310138021],[-71.876725611,41.31008069],[-71.876880935,41.310068746],[-71.877052438,41.31002226],[-71.877206197,41.309928238],[-71.877358067,41.309890827],[-71.877557316,41.309885005],[-71.877715817,41.309803729],[-71.877865786,41.309715482],[-71.878035487,41.309656604],[-71.878210275,41.309575114],[-71.878355834,41.30953237],[-71.878567859,41.309459631],[-71.878812026,41.30935392],[-71.87902508,41.309191888],[-71.879214208,41.30900503],[-71.879465542,41.308786152],[-71.879787598,41.308534222],[-71.880104358,41.308326631],[-71.880321435,41.308237085],[-71.8805684,41.308165186],[-71.880762,41.308127701],[-71.880941078,41.308117595],[-71.881112994,41.308091182],[-71.881314544,41.308116816],[-71.881416518,41.308148108],[-71.881567625,41.308220199],[-71.881732476,41.308360695],[-71.881851571,41.308472184],[-71.882002522,41.308584984],[-71.882158359,41.308765511],[-71.882294596,41.30896074],[-71.882402614,41.309179826],[-71.882463878,41.309349986],[-71.882499005,41.309526911],[-71.882484317,41.309686643],[-71.882350415,41.309824014],[-71.882128435,41.309884741],[-71.881781074,41.30992164],[-71.881316008,41.309955864],[-71.88090138,41.309958152],[-71.880487696,41.30993514],[-71.880230141,41.309882108],[-71.879929327,41.309927424],[-71.879675601,41.310121473],[-71.879503844,41.310275616],[-71.879372361,41.310397309],[-71.879226634,41.310526574],[-71.878994248,41.310608828],[-71.878801866,41.31062746],[-71.878588553,41.310598705],[-71.878323977,41.31054871],[-71.878078985,41.310507342],[-71.877969762,41.310450364],[-71.877935939,41.310360593],[-71.877949644,41.310286195],[-71.878061743,41.310190068],[-71.87821833,41.310097682],[-71.878322132,41.310014549],[-71.878419843,41.309927274],[-71.878506561,41.309900596],[-71.878577427,41.309829006],[-71.878580475,41.309742431],[-71.87864519,41.309661439],[-71.878759634,41.309619735],[-71.878856274,41.309572783],[-71.878863011,41.309562995],[-71.878857108,41.309549201],[-71.878789645,41.309543156],[-71.878562745,41.309592892],[-71.878333277,41.309654757],[-71.878111193,41.309740108],[-71.877887712,41.309851376],[-71.877670487,41.309927425],[-71.877512758,41.310048013],[-71.877247294,41.310153951],[-71.877265358,41.310298915],[-71.877272526,41.310468866],[-71.877329147,41.310630353],[-71.877476268,41.310852517],[-71.87762605,41.310999702],[-71.877756699,41.311058554],[-71.878014587,41.311079434],[-71.878221218,41.311064461],[-71.878505279,41.311005802],[-71.878824501,41.310916837],[-71.878985497,41.310862858],[-71.879011114,41.310855204],[-71.879104556,41.310842409],[-71.879177974,41.310839422],[-71.879251501,41.310823857],[-71.879510576,41.310787874],[-71.879606213,41.310766815],[-71.879672931,41.310743427],[-71.879739854,41.310718894],[-71.879838233,41.31070503],[-71.879943079,41.310734119],[-71.880007353,41.310759979],[-71.880157736,41.310764217],[-71.880308547,41.310732523],[-71.880439368,41.310695406],[-71.880532321,41.310645561],[-71.880753433,41.310544405],[-71.880914099,41.310481002],[-71.881062923,41.310441538],[-71.881196613,41.310428562],[-71.881270032,41.310425734],[-71.881456779,41.310413703],[-71.8815852,41.310407377],[-71.881708287,41.3103967],[-71.881808737,41.310384451],[-71.881934091,41.310367157],[-71.882051952,41.310339275],[-71.882165753,41.310296678],[-71.882268255,41.310261894],[-71.882352762,41.310241167],[-71.882448137,41.310222165],[-71.882543016,41.310206618],[-71.882641697,41.31020828],[-71.882716791,41.310206795],[-71.882830434,41.310168269],[-71.882891215,41.310136391],[-71.882972194,41.310114257],[-71.883091394,41.310087285],[-71.883162954,41.310072821],[-71.883323157,41.309998347],[-71.883403782,41.309931296],[-71.883481286,41.309818285],[-71.883516443,41.309740957],[-71.883554479,41.309575384],[-71.883598137,41.309463286],[-71.883659686,41.30935026],[-71.883710296,41.309270387],[-71.883797894,41.309140899],[-71.883881794,41.309032761],[-71.883955948,41.308922894],[-71.884037764,41.308764562],[-71.884077553,41.30860326],[-71.884104302,41.308520036],[-71.88419506,41.308438451],[-71.884297117,41.308395639],[-71.884381107,41.30835474],[-71.884450124,41.308300078],[-71.884533256,41.308242166],[-71.884598991,41.308191768],[-71.884649574,41.308143639],[-71.884703315,41.30810124],[-71.884818934,41.308002624],[-71.88490354,41.307932426],[-71.884969263,41.307869769],[-71.885028047,41.307813288],[-71.885096861,41.307755332],[-71.885165906,41.307705723],[-71.885234892,41.307661581],[-71.885295116,41.307628308],[-71.88536949,41.307582341],[-71.885403782,41.307564775],[-71.885467844,41.307534211],[-71.885496032,41.307525724],[-71.885745744,41.307504578],[-71.886091936,41.307441666],[-71.886356894,41.307387855],[-71.886387244,41.307365317],[-71.886523197,41.307264298],[-71.886595896,41.307135086],[-71.886607935,41.307016598],[-71.886534465,41.306866173],[-71.886383196,41.306695059],[-71.886375959,41.306686896],[-71.886160706,41.306497403],[-71.885984364,41.30634316],[-71.885854642,41.306225033],[-71.885761508,41.306108567],[-71.885614523,41.306004975],[-71.885402788,41.305948462],[-71.885029091,41.30589233],[-71.884687921,41.305817769],[-71.884478659,41.305691467],[-71.884269107,41.305608826],[-71.884001373,41.305643385],[-71.883731373,41.305803763],[-71.883469922,41.305947919],[-71.883182471,41.306122373],[-71.882845697,41.306254634],[-71.882549423,41.306352271],[-71.882235309,41.306480292],[-71.881968352,41.306633108],[-71.881716743,41.306765655],[-71.881407567,41.306919205],[-71.881131945,41.307064043],[-71.880968779,41.307123795],[-71.880741009,41.30720455],[-71.88038291,41.307353982],[-71.880083441,41.307482635],[-71.879773058,41.307580974],[-71.879432974,41.307683779],[-71.879138459,41.307793842],[-71.878872231,41.307928124],[-71.878597406,41.308081301],[-71.878314231,41.308233201],[-71.877984539,41.308403116],[-71.877695122,41.308546138],[-71.877391496,41.308681705],[-71.877121634,41.30879182],[-71.876701243,41.308961547],[-71.87641269,41.309050063],[-71.875971683,41.309195635],[-71.875561411,41.309343096],[-71.875226734,41.309455155],[-71.874960272,41.309535408],[-71.874691857,41.309613539],[-71.874327097,41.309721989],[-71.873926215,41.309847205],[-71.8735863,41.309951181],[-71.873233902,41.310073814],[-71.87279098,41.310210437],[-71.872464829,41.310313931],[-71.87208759,41.310421591],[-71.871661998,41.310523483],[-71.871209352,41.31061526],[-71.870711274,41.310687215],[-71.870171871,41.310762366],[-71.870047059,41.310779737],[-71.869411792,41.31085828],[-71.868844545,41.310918145],[-71.868399149,41.310941252],[-71.867962179,41.310968723],[-71.867336413,41.311022203],[-71.866799876,41.311020163],[-71.866219436,41.311043144],[-71.86550982,41.311030076],[-71.865011303,41.310992183],[-71.86480053,41.310972016],[-71.864418039,41.31092385],[-71.863982137,41.310865422],[-71.863560869,41.310787461],[-71.863266578,41.310704889],[-71.863089441,41.310623686],[-71.863016883,41.310563239],[-71.863004947,41.310505642],[-71.863001176,41.31048754],[-71.862996688,41.310465805],[-71.863134293,41.310113642],[-71.863257757,41.309744143],[-71.863225303,41.309716984],[-71.863159417,41.309749073],[-71.863001722,41.310110264],[-71.862995911,41.31012357],[-71.862992916,41.310130441],[-71.862895597,41.310160891],[-71.862571304,41.310109791],[-71.862113461,41.310031642],[-71.861613501,41.309939513],[-71.861093743,41.309799278],[-71.860521673,41.309622154],[-71.859899821,41.309432032],[-71.859670372,41.309357138],[-71.859383746,41.30922655],[-71.859052116,41.309053104],[-71.858817491,41.308929808],[-71.858533435,41.308747156],[-71.858334223,41.308598866],[-71.858319917,41.308556416],[-71.858301958,41.308483904],[-71.858285278,41.308390094],[-71.858076712,41.308266967],[-71.857888349,41.30806636],[-71.857761604,41.307868533],[-71.857742702,41.307723112],[-71.857761642,41.307581277],[-71.857769432,41.307430627],[-71.85776415,41.30731334],[-71.857679196,41.307175099],[-71.857521768,41.306984457],[-71.857431562,41.306789628],[-71.857420352,41.306625199],[-71.857469195,41.306388428],[-71.857508887,41.306253184],[-71.857561075,41.306056998],[-71.857609166,41.305904667],[-71.857685561,41.305797852],[-71.85791572,41.305678232],[-71.85792015,41.305678424],[-71.857948029,41.305679435],[-71.858014556,41.305681858],[-71.858159109,41.305692775],[-71.858260148,41.305633431],[-71.858369203,41.305609078],[-71.858503869,41.305592306],[-71.858651702,41.305592943],[-71.858861592,41.305792979],[-71.858900747,41.305781811],[-71.858915605,41.305736846],[-71.85884686,41.305656304],[-71.858603283,41.305419277],[-71.858598893,41.305343131],[-71.858704296,41.305128413],[-71.858726067,41.304966718],[-71.858721992,41.304749001],[-71.85872414,41.304582039],[-71.858763133,41.304397442],[-71.858834516,41.304229097],[-71.858910653,41.303987368],[-71.858921087,41.303749755],[-71.858881078,41.303560739],[-71.858831908,41.303498889],[-71.858541367,41.303512191],[-71.858320025,41.303578839],[-71.858144991,41.303722417],[-71.857999155,41.303997296],[-71.857890956,41.30427215],[-71.857744623,41.304528825],[-71.85761871,41.304764784],[-71.857462978,41.305005708],[-71.857389986,41.305152467],[-71.857389224,41.305162853],[-71.857382527,41.30531398],[-71.857250367,41.305611732],[-71.857126127,41.305860654],[-71.857064464,41.306054925],[-71.856990923,41.306190159],[-71.856959422,41.306248097],[-71.856777607,41.306434714],[-71.856527039,41.306600456],[-71.856201061,41.306765014],[-71.855918587,41.306942952],[-71.855665532,41.30707037],[-71.855585504,41.307145816],[-71.85557141,41.307242396],[-71.855463408,41.307355414],[-71.855105955,41.307584195],[-71.854624174,41.30785823],[-71.854115193,41.308128848],[-71.853630938,41.308373131],[-71.853612728,41.308382313],[-71.853599993,41.308388733],[-71.853150638,41.30860345],[-71.852651523,41.308838353],[-71.852163007,41.308997244],[-71.851692059,41.309169185],[-71.851251487,41.309372318],[-71.850807219,41.309548588],[-71.850356027,41.309689588],[-71.850006378,41.309846515],[-71.849939233,41.30987668],[-71.849441188,41.310122772],[-71.848933991,41.310263067],[-71.848545718,41.310481698],[-71.848267097,41.310598221],[-71.847800162,41.310770133],[-71.847450656,41.31091612],[-71.846941675,41.311162326],[-71.846411757,41.31138499],[-71.845920606,41.311574235],[-71.845624229,41.311707661],[-71.845285341,41.31187863],[-71.844927029,41.312013589],[-71.844508391,41.312178803],[-71.844085709,41.312342563],[-71.843631876,41.312501292],[-71.843245813,41.312638319],[-71.842865531,41.312784612],[-71.842469944,41.312939755],[-71.84204208,41.313112351],[-71.841644281,41.313257046],[-71.84131271,41.313374716],[-71.840938309,41.313487206],[-71.840539036,41.313652645],[-71.840169373,41.313784146],[-71.839776308,41.313901719],[-71.839301984,41.314067375],[-71.838834247,41.314234291],[-71.838396173,41.314383484],[-71.837975639,41.314510829],[-71.837660145,41.314642643],[-71.837036497,41.314854218],[-71.836447968,41.315029322],[-71.835867495,41.315214417],[-71.835429715,41.31538791],[-71.835093405,41.315520602],[-71.834723357,41.315646392],[-71.834469331,41.315734908],[-71.833903847,41.315928961],[-71.83355722,41.316062044],[-71.833303953,41.316145661],[-71.83309937,41.316198604],[-71.832969065,41.316213343],[-71.83277873,41.316288475],[-71.832476768,41.31635908],[-71.832079261,41.316449766],[-71.831716946,41.316523426],[-71.831272233,41.31660775],[-71.830930371,41.316683108],[-71.830510535,41.316780326],[-71.83010464,41.316856872],[-71.829671249,41.316931552],[-71.829317317,41.317002275],[-71.829067332,41.31704036],[-71.828498917,41.317163587],[-71.82804247,41.317262913],[-71.827700585,41.317353265],[-71.827283706,41.317455036],[-71.826835661,41.317585346],[-71.826438527,41.317699225],[-71.826056032,41.317810706],[-71.825571774,41.317955681],[-71.825217451,41.318047388],[-71.824818456,41.318160238],[-71.824352147,41.31829219],[-71.823897117,41.318410958],[-71.823478763,41.318529895],[-71.823126248,41.31862653],[-71.822690296,41.318757864],[-71.822448285,41.31882194],[-71.822259112,41.318872076],[-71.821935883,41.318947036],[-71.821704472,41.318958455],[-71.821173683,41.319071089],[-71.820841664,41.319135824],[-71.8206579,41.319163529],[-71.820582448,41.3191749],[-71.818975374,41.319523957],[-71.818849101,41.319565062],[-71.817572203,41.31982209],[-71.817318648,41.319872145],[-71.816215776,41.320084309],[-71.814556028,41.320390498],[-71.813663039,41.320576677],[-71.813237348,41.320665454],[-71.812911165,41.320704192],[-71.812868472,41.320713023],[-71.812868625,41.320713429],[-71.812208892,41.320849458],[-71.811899809,41.32091339],[-71.811848559,41.320922038],[-71.811678881,41.320951214],[-71.811673486,41.320952257],[-71.811567625,41.32097343],[-71.811335999,41.321017549],[-71.810537136,41.321172096],[-71.810439123,41.321193907],[-71.810289705,41.321230773],[-71.810054805,41.321275483],[-71.809976624,41.321290429],[-71.809268623,41.321428429],[-71.808523624,41.321585429],[-71.808521268,41.321585822],[-71.80851549,41.321587041],[-71.807868871,41.321694936],[-71.807701623,41.321723429],[-71.806896623,41.32189243],[-71.8068855,41.321894049],[-71.806875552,41.321896153],[-71.80681988,41.321903601],[-71.806738623,41.321915429],[-71.805932622,41.32208143],[-71.805805623,41.32211843],[-71.805804553,41.322118637],[-71.805799487,41.322120222],[-71.805190853,41.322238203],[-71.805030858,41.322268669],[-71.805016622,41.32227143],[-71.804732622,41.32234843],[-71.804697644,41.322358049],[-71.804387918,41.322443684],[-71.804286622,41.32247343],[-71.804196734,41.322506888],[-71.804108676,41.32254017],[-71.804028835,41.32255302],[-71.803309622,41.32266943],[-71.803083622,41.32270843],[-71.802618126,41.322804789],[-71.802250892,41.322881284],[-71.802046932,41.322917856],[-71.802033621,41.32292043],[-71.801450621,41.32302543],[-71.80142639,41.323029123],[-71.801347892,41.323043198],[-71.801041422,41.323087793],[-71.800971621,41.32309843],[-71.800486621,41.32316943],[-71.800353676,41.323209638],[-71.800293669,41.323228986],[-71.80028186,41.323231358],[-71.800281621,41.32323143],[-71.799822621,41.32332443],[-71.799234725,41.323450964],[-71.799218567,41.323454501],[-71.798565128,41.323565656],[-71.797943707,41.323559925],[-71.797860171,41.323563572],[-71.797549861,41.323628527],[-71.796831858,41.323713402],[-71.79683162,41.32371343],[-71.796797557,41.323715307],[-71.7966799,41.323721843],[-71.796595641,41.323726533],[-71.796787619,41.324633431],[-71.797137573,41.326284212],[-71.797205126,41.326186423],[-71.797232566,41.326158091],[-71.79726362,41.32612543],[-71.79728996,41.326126817],[-71.797301641,41.326127282],[-71.797308155,41.326149412],[-71.79733462,41.326238431],[-71.79733562,41.326311431],[-71.79729462,41.326411431],[-71.79732262,41.326439431],[-71.797350621,41.326420431],[-71.79739862,41.326287431],[-71.79746262,41.326177431],[-71.79750534,41.326120472],[-71.797540383,41.326073536],[-71.797601172,41.325970873],[-71.797586375,41.325879452],[-71.797596509,41.325766261],[-71.797600502,41.325743769],[-71.797600583,41.325743791],[-71.79760062,41.325743431],[-71.79764762,41.32575643],[-71.79771462,41.325870431],[-71.797714678,41.325870541],[-71.79776862,41.325974431],[-71.797801902,41.326054068],[-71.797824703,41.326108228],[-71.797948836,41.32621103],[-71.798052205,41.326238093],[-71.798123811,41.326232144],[-71.798239217,41.32617755],[-71.79823962,41.326177431],[-71.79840662,41.326132431],[-71.79851842,41.326112988],[-71.798567463,41.326104359],[-71.79865877,41.326055481],[-71.798729621,41.326017431],[-71.798883621,41.325994431],[-71.798901621,41.325915431],[-71.798901752,41.325915298],[-71.798901821,41.325914992],[-71.798991424,41.325824374],[-71.799047451,41.325774741],[-71.79909162,41.32573543],[-71.79914662,41.325611431],[-71.799153621,41.325488431],[-71.799172621,41.325449431],[-71.799172751,41.325449411],[-71.799172959,41.325448984],[-71.799212561,41.32544344],[-71.799252621,41.325437431],[-71.79938062,41.325683431],[-71.799397621,41.325725431],[-71.799370621,41.325783431],[-71.79924691,41.325949043],[-71.799248449,41.325949818],[-71.799304826,41.325961777],[-71.799345214,41.325970055],[-71.799345392,41.325970382],[-71.799345621,41.32597043],[-71.799383152,41.326039522],[-71.799389854,41.326051793],[-71.799352022,41.326078742],[-71.799287726,41.326066962],[-71.799195621,41.32605043],[-71.799113576,41.326093519],[-71.799056657,41.32612349],[-71.798936226,41.326193855],[-71.798815819,41.326255964],[-71.7986417,41.326342799],[-71.79852035,41.3263779],[-71.7983563,41.326350789],[-71.798320825,41.32635305],[-71.79827462,41.326356431],[-71.79815862,41.326419431],[-71.798151823,41.326425188],[-71.798059759,41.326504196],[-71.798011966,41.326543656],[-71.797988621,41.326563431],[-71.79794362,41.326669431],[-71.797948928,41.326733119],[-71.797952965,41.326777685],[-71.798000639,41.32683993],[-71.798009051,41.326870683],[-71.79803462,41.326962431],[-71.798118021,41.327015715],[-71.798142562,41.327031195],[-71.798291665,41.3270403],[-71.798451092,41.327035395],[-71.798481621,41.327034431],[-71.798485968,41.327034928],[-71.798551233,41.327042028],[-71.798637883,41.32709847],[-71.798688621,41.327131431],[-71.798831621,41.327211431],[-71.798906621,41.327270431],[-71.798906733,41.32727083],[-71.798906834,41.32727091],[-71.79891431,41.327297694],[-71.798917621,41.327309431],[-71.798969792,41.327340652],[-71.799044888,41.327384973],[-71.799176182,41.327390979],[-71.799210621,41.327392431],[-71.799464278,41.327391656],[-71.799537766,41.327391353],[-71.79967442,41.327317998],[-71.799768621,41.327267431],[-71.799814621,41.327235431],[-71.799904066,41.327205616],[-71.799966286,41.327184653],[-71.799985685,41.327178131],[-71.800009621,41.327066431],[-71.800040513,41.327032268],[-71.800094499,41.326972056],[-71.800145355,41.326887417],[-71.800205208,41.326766755],[-71.800205584,41.326766506],[-71.800205621,41.326766431],[-71.800322621,41.326688431],[-71.800437621,41.326624431],[-71.800452175,41.326619237],[-71.800615144,41.326557997],[-71.800706663,41.326528072],[-71.800782351,41.326426946],[-71.80084643,41.326379367],[-71.800859622,41.326369431],[-71.800859815,41.326369429],[-71.800859999,41.326369292],[-71.801044941,41.326367185],[-71.801106749,41.326360035],[-71.801128587,41.326357435],[-71.801200177,41.326298373],[-71.801213715,41.326292412],[-71.801431314,41.326192373],[-71.801465843,41.326175662],[-71.801568444,41.326129328],[-71.801585621,41.326121431],[-71.80161465,41.326114732],[-71.801650868,41.326106085],[-71.801737452,41.326052204],[-71.801878692,41.326008059],[-71.802045827,41.325954241],[-71.802197018,41.325909168],[-71.802218622,41.325902431],[-71.80232395,41.325847036],[-71.802353238,41.325831533],[-71.802497492,41.325770181],[-71.802538346,41.325745706],[-71.802609622,41.32570243],[-71.802699957,41.325627435],[-71.802715459,41.325614454],[-71.802777268,41.325511076],[-71.802859864,41.32544817],[-71.803010816,41.325405741],[-71.803029622,41.325400431],[-71.803160622,41.32535143],[-71.803296622,41.32531043],[-71.803412533,41.325238274],[-71.80344783,41.32521627],[-71.803561312,41.32512867],[-71.803561622,41.325128431],[-71.803710622,41.325089431],[-71.803853622,41.32501843],[-71.803977622,41.324967431],[-71.804056623,41.32495843],[-71.804195623,41.32485943],[-71.80424113,41.324802415],[-71.80428269,41.324749951],[-71.804386322,41.324666349],[-71.804393622,41.324660431],[-71.804500622,41.32458743],[-71.804586623,41.324601431],[-71.804665632,41.324598372],[-71.804741273,41.324595139],[-71.804913366,41.324532315],[-71.805025819,41.324464182],[-71.805103405,41.32444026],[-71.805150163,41.324405414],[-71.805208623,41.32436143],[-71.805380623,41.32434043],[-71.805455141,41.324321539],[-71.805522175,41.324304167],[-71.805674338,41.324281052],[-71.805709151,41.324264561],[-71.805718129,41.324251089],[-71.805791106,41.324240621],[-71.805832623,41.32423443],[-71.805856728,41.324213958],[-71.805905165,41.324172535],[-71.805905531,41.324172508],[-71.805905623,41.324172431],[-71.805993867,41.324166086],[-71.806058294,41.324161402],[-71.806103826,41.324148874],[-71.806310623,41.32409143],[-71.806433489,41.324046118],[-71.806451187,41.324039508],[-71.806481182,41.324030762],[-71.806584623,41.32400043],[-71.806685623,41.32390843],[-71.806739025,41.323886391],[-71.80674871,41.323882349],[-71.806905855,41.323847967],[-71.807037162,41.323796364],[-71.807049119,41.323768382],[-71.807062624,41.32373543],[-71.807183481,41.323664514],[-71.807218401,41.323569369],[-71.807215521,41.323498935],[-71.807257435,41.323458527],[-71.807261623,41.32345443],[-71.807412624,41.32346043],[-71.807566527,41.323489412],[-71.807566621,41.323489436],[-71.807570286,41.323490598],[-71.807657947,41.323517994],[-71.807790074,41.323517064],[-71.807851623,41.32351643],[-71.807930404,41.323508453],[-71.807971306,41.323413255],[-71.80800516,41.323383887],[-71.808055624,41.32333943],[-71.808195499,41.323277485],[-71.808315614,41.32317441],[-71.808415176,41.323089064],[-71.808440647,41.323060172],[-71.808480624,41.32301343],[-71.808481624,41.32301343],[-71.808565623,41.32300043],[-71.808690624,41.32297043],[-71.80878817,41.322941609],[-71.808822997,41.32293117],[-71.80913465,41.322877831],[-71.809311624,41.32284743],[-71.809350779,41.322848237],[-71.809408745,41.322849184],[-71.809551845,41.322912242],[-71.809665071,41.323009],[-71.809684232,41.323019712],[-71.809822741,41.323092345],[-71.809829003,41.323095331],[-71.809896111,41.323165851],[-71.809920624,41.32319143],[-71.809946019,41.323233755],[-71.809983862,41.323296312],[-71.809970904,41.323340791],[-71.809919202,41.323521102],[-71.80990397,41.323575824],[-71.809865593,41.323621645],[-71.809824624,41.32367143],[-71.809752491,41.323733853],[-71.809720786,41.323761615],[-71.809592438,41.323841687],[-71.809471988,41.323949526],[-71.809437104,41.32400197],[-71.809437949,41.324129426],[-71.809424886,41.324228331],[-71.809383766,41.324256953],[-71.809318624,41.32430243],[-71.809262624,41.32439243],[-71.809243675,41.324437311],[-71.809243624,41.32443743],[-71.809124624,41.32453143],[-71.809083624,41.32460543],[-71.809083386,41.324605859],[-71.808927208,41.324671689],[-71.808791893,41.324722573],[-71.808764256,41.324753136],[-71.808709624,41.324814431],[-71.80871529,41.325159104],[-71.808715742,41.325178978],[-71.808746516,41.325238953],[-71.808746454,41.325239102],[-71.808746624,41.32523943],[-71.808709144,41.325327947],[-71.808699623,41.325350619],[-71.80861598,41.32545399],[-71.808599801,41.32549024],[-71.808558624,41.32558343],[-71.808554745,41.325651032],[-71.808551998,41.325705784],[-71.808572804,41.325749274],[-71.808627459,41.325787887],[-71.808649624,41.32580343],[-71.808671624,41.32587643],[-71.808682236,41.325924185],[-71.808691878,41.325965974],[-71.808751454,41.3260178],[-71.808790624,41.32605143],[-71.808794353,41.326126549],[-71.808797983,41.326192406],[-71.808791895,41.326284614],[-71.808705173,41.326303897],[-71.808640624,41.326318431],[-71.808522624,41.326430431],[-71.808461624,41.326529431],[-71.80844937,41.326544556],[-71.808397732,41.326608901],[-71.80832898,41.326724262],[-71.808339863,41.326760986],[-71.808364568,41.326868207],[-71.808364624,41.32686843],[-71.808364624,41.32698543],[-71.808379624,41.327072431],[-71.80845045,41.327181164],[-71.808450623,41.32718143],[-71.808450706,41.327181554],[-71.80845107,41.327232788],[-71.808451624,41.32729643],[-71.808436624,41.327326431],[-71.808350048,41.327350314],[-71.80835286,41.327464817],[-71.808330852,41.327584718],[-71.808340865,41.327659532],[-71.808345624,41.327694431],[-71.808345558,41.327694592],[-71.808345601,41.327694915],[-71.808317672,41.327762367],[-71.808317634,41.327762406],[-71.808317624,41.327762431],[-71.808228086,41.327854501],[-71.808129502,41.327962325],[-71.808037884,41.328061212],[-71.808037814,41.328061223],[-71.808037624,41.328061431],[-71.807970338,41.328072645],[-71.807887696,41.328086634],[-71.807822335,41.328112728],[-71.807743624,41.328144431],[-71.80770671,41.328177354],[-71.807711417,41.328188045],[-71.807720624,41.328208431],[-71.8077578,41.328230083],[-71.807811907,41.328261179],[-71.807789918,41.328378885],[-71.807764002,41.328423049],[-71.807763782,41.328423158],[-71.807763624,41.328423431],[-71.807699624,41.328455431],[-71.807698709,41.328490464],[-71.807697147,41.328581172],[-71.807695035,41.328631158],[-71.807690012,41.328823561],[-71.807689861,41.328838257],[-71.807658957,41.328886185],[-71.807612841,41.328951448],[-71.807600624,41.328969431],[-71.807571623,41.329059431],[-71.807544694,41.329082204],[-71.807469702,41.329146912],[-71.807437516,41.329172838],[-71.807280059,41.329305989],[-71.807273592,41.329311647],[-71.807230225,41.329342514],[-71.807199624,41.329364431],[-71.807107623,41.329375431],[-71.807057094,41.329397488],[-71.806982086,41.32943062],[-71.806900509,41.329471799],[-71.806862231,41.329512616],[-71.806845624,41.329530431],[-71.806806536,41.329545894],[-71.806754194,41.329566851],[-71.806689126,41.329570766],[-71.806618634,41.329575431],[-71.806548623,41.329670432],[-71.806410681,41.329726408],[-71.806410623,41.329726431],[-71.806245623,41.329810431],[-71.806188623,41.329831431],[-71.806116768,41.329847984],[-71.805998077,41.329875833],[-71.805928393,41.329936084],[-71.805884623,41.329974431],[-71.805746623,41.330051431],[-71.805604623,41.330098432],[-71.805479707,41.330097096],[-71.805418038,41.330096565],[-71.805381955,41.33009225],[-71.805272623,41.330079432],[-71.805141623,41.330052431],[-71.805017622,41.330033431],[-71.804869623,41.330048431],[-71.804717199,41.330049264],[-71.804686253,41.330049493],[-71.804580286,41.330055898],[-71.804538623,41.330058432],[-71.804381623,41.330061432],[-71.804360483,41.330067502],[-71.804224751,41.330106861],[-71.804078548,41.330148735],[-71.803955648,41.330204623],[-71.803966194,41.330284379],[-71.8039719,41.330325532],[-71.803953852,41.330450682],[-71.803932881,41.330508417],[-71.803802495,41.330578768],[-71.803671186,41.33062664],[-71.803607893,41.330625138],[-71.803474623,41.330622432],[-71.803449684,41.330624401],[-71.80343655,41.3306257],[-71.803418622,41.330692431],[-71.803411601,41.330695785],[-71.803296136,41.33075225],[-71.803231399,41.330781852],[-71.803217623,41.330788431],[-71.803187622,41.330859432],[-71.803163683,41.330865073],[-71.803030404,41.330896738],[-71.802875265,41.330922853],[-71.802700211,41.330946687],[-71.802690729,41.330951656],[-71.802611622,41.330993432],[-71.802554887,41.331006626],[-71.802423641,41.331037913],[-71.80232505,41.331060077],[-71.802267622,41.331073432],[-71.80211279,41.331080067],[-71.80205765,41.33108258],[-71.802048215,41.331079449],[-71.802016622,41.331069432],[-71.801970023,41.331020541],[-71.801955411,41.331005419],[-71.801918299,41.331003135],[-71.801890697,41.331001507],[-71.801882853,41.331007906],[-71.801866622,41.331021431],[-71.801829337,41.33102408],[-71.801685805,41.331035847],[-71.801500833,41.331047676],[-71.801444236,41.331048183],[-71.801425622,41.331048432],[-71.801425565,41.331048351],[-71.801425255,41.331048354],[-71.801398129,41.331009583],[-71.801379622,41.330983431],[-71.801254772,41.330924454],[-71.801216637,41.33090653],[-71.801121223,41.330856259],[-71.801081565,41.330783497],[-71.800969285,41.33071447],[-71.800904629,41.330632195],[-71.800871622,41.330590431],[-71.800887621,41.330460431],[-71.800948621,41.330362431],[-71.800951288,41.330359445],[-71.801040551,41.330258038],[-71.801115206,41.330175645],[-71.801139267,41.33005048],[-71.801152911,41.329956103],[-71.801158321,41.329918604],[-71.801211192,41.329809945],[-71.801194425,41.329707277],[-71.80118131,41.329682473],[-71.801130622,41.329587431],[-71.801117722,41.329528611],[-71.801105237,41.329473338],[-71.800983061,41.329402781],[-71.800807111,41.32936292],[-71.800724432,41.329359077],[-71.800659622,41.329356432],[-71.800504621,41.329356432],[-71.800373622,41.329375432],[-71.80029288,41.329456173],[-71.80028687,41.329462182],[-71.800286621,41.329462431],[-71.800253725,41.329480512],[-71.800155533,41.329534779],[-71.800064925,41.329625422],[-71.799868941,41.329689697],[-71.799847245,41.329701514],[-71.799822621,41.329715431],[-71.799797621,41.329826432],[-71.799797181,41.329826814],[-71.799684621,41.329924432],[-71.79944471,41.330120359],[-71.799444621,41.330120432],[-71.799313621,41.330196432],[-71.799193621,41.330198432],[-71.799075621,41.330195432],[-71.799052176,41.33023836],[-71.799004902,41.330325369],[-71.798950272,41.330401532],[-71.799131621,41.330429432],[-71.799213202,41.330436482],[-71.799294083,41.330443293],[-71.799403656,41.330486866],[-71.799445621,41.330503432],[-71.799461669,41.330512419],[-71.799495833,41.33053114],[-71.799496667,41.330673576],[-71.799498044,41.330687273],[-71.799511621,41.330819432],[-71.799501621,41.330926431],[-71.799501268,41.330926907],[-71.799429621,41.331023431],[-71.799408783,41.331080864],[-71.799388586,41.331136713],[-71.799355554,41.331271575],[-71.799337115,41.331305227],[-71.799334621,41.331310432],[-71.799308621,41.331357432],[-71.799199621,41.331437432],[-71.799068621,41.331487431],[-71.798903621,41.331499432],[-71.798726636,41.33152443],[-71.798566621,41.331564432],[-71.798399563,41.331563897],[-71.798254344,41.331563747],[-71.79809427,41.331539622],[-71.797944621,41.331501432],[-71.797944512,41.331501392],[-71.797944205,41.331501313],[-71.797767285,41.331435927],[-71.797632133,41.331374365],[-71.797546952,41.331322146],[-71.797421341,41.331245482],[-71.797265455,41.331195664],[-71.797243395,41.331162321],[-71.79721662,41.331122432],[-71.797170332,41.331094233],[-71.797129405,41.331069633],[-71.79698129,41.331039528],[-71.796975038,41.331040324],[-71.79692262,41.331047432],[-71.79679462,41.331099431],[-71.79673462,41.331139432],[-71.796709437,41.331202713],[-71.796695579,41.331237913],[-71.796676847,41.331332798],[-71.79667062,41.331364432],[-71.796670588,41.331364501],[-71.79667056,41.331364562],[-71.796618661,41.331478436],[-71.796527017,41.331576558],[-71.796494297,41.331639149],[-71.79645962,41.331706432],[-71.796381019,41.331811538],[-71.796373564,41.331821577],[-71.796296884,41.331887459],[-71.796237055,41.331989319],[-71.796226991,41.332092011],[-71.796226634,41.332092289],[-71.79622662,41.332092432],[-71.796138123,41.332161175],[-71.796114453,41.332179597],[-71.796059586,41.332217244],[-71.79596762,41.332280432],[-71.795967306,41.332280563],[-71.795967142,41.332280676],[-71.79596051,41.332283395],[-71.79591962,41.332300432],[-71.79591462,41.333931432],[-71.79602162,41.334420432],[-71.796120621,41.334786432],[-71.79622762,41.335217432],[-71.79636462,41.335614433],[-71.796745621,41.336579433],[-71.79595262,41.336743433],[-71.79518162,41.336899433],[-71.794235619,41.337094433],[-71.794136619,41.337113433],[-71.79354162,41.337235433],[-71.793265619,41.337286433],[-71.792656619,41.337399433],[-71.791611619,41.337609434],[-71.790932619,41.337742434],[-71.791016618,41.338101433],[-71.791107619,41.338375433],[-71.791145619,41.338517433],[-71.791229618,41.338654433],[-71.791397619,41.338784433],[-71.791687619,41.338910434],[-71.791747619,41.338926433],[-71.792252619,41.339062433],[-71.792412619,41.339123434],[-71.792503619,41.339192433],[-71.79257262,41.339310433],[-71.79283962,41.340027434],[-71.79299962,41.340519433],[-71.793373619,41.341576434],[-71.79346562,41.341763434],[-71.79356462,41.341931434],[-71.79370162,41.342106434],[-71.79385462,41.342278434],[-71.79404462,41.342446435],[-71.79435762,41.342690434],[-71.795067621,41.343174434],[-71.79641762,41.344139435],[-71.796196621,41.344315435],[-71.795898621,41.344563434],[-71.795547621,41.344841435],[-71.79538762,41.344956435],[-71.795242621,41.345044434],[-71.79507462,41.345116435],[-71.79482362,41.345189435],[-71.79441862,41.345276434],[-71.79410662,41.345353434],[-71.79383162,41.345379435],[-71.79358762,41.345375434],[-71.79332062,41.345349435],[-71.799590622,41.349702435],[-71.794996621,41.353077436],[-71.794997621,41.353078436],[-71.795354621,41.353179436],[-71.795804621,41.353308437],[-71.797077622,41.353652436],[-71.797710622,41.353825436],[-71.798810622,41.354133436],[-71.799680622,41.354361437],[-71.800343623,41.354553437],[-71.800771623,41.354670437],[-71.801056623,41.354748437],[-71.801546623,41.354887437],[-71.801743623,41.354943437],[-71.802361624,41.355103437],[-71.802614624,41.355183436],[-71.802795623,41.355240436],[-71.802958624,41.355306436],[-71.803285623,41.355435436],[-71.803899624,41.355674436],[-71.804527624,41.355935437],[-71.805580625,41.356377436],[-71.805984625,41.356526437],[-71.807228625,41.357029437],[-71.807616625,41.357192436],[-71.807976626,41.357338437],[-71.808311625,41.357495437],[-71.808533625,41.357605436],[-71.808784625,41.357739436],[-71.809082626,41.357937437],[-71.809288625,41.358086437],[-71.809494626,41.358269437],[-71.809868626,41.358643437],[-71.810135626,41.358979437],[-71.810425626,41.359330437],[-71.810616626,41.359558437],[-71.810722626,41.359696437],[-71.810867626,41.359898437],[-71.811119627,41.360196437],[-71.811737627,41.360821437],[-71.811996627,41.361061437],[-71.812630627,41.361691438]]]]}}"}, +{"type": "precinct", "typeId": 3605, "areaId": 26013, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":352,\"NAME\":\"3605\",\"SHAPE_Length\":0.5855625031606,\"SHAPE_Area\":0.0015949832215896},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.785094857,41.336683601],[-71.785237074,41.336698711],[-71.785403073,41.336734846],[-71.785582811,41.336911932],[-71.785584658,41.336989865],[-71.785522968,41.337010056],[-71.785390705,41.336997181],[-71.78522566,41.336974546],[-71.785152197,41.336902544],[-71.785083741,41.336800531],[-71.785059035,41.336693332],[-71.785094857,41.336683601]]],[[[-71.749604553,41.336019456],[-71.749655902,41.336031333],[-71.749703616,41.336036995],[-71.74978444,41.336033016],[-71.749828428,41.336052477],[-71.74986425,41.33605051],[-71.74988538,41.336036026],[-71.74993211,41.336061746],[-71.74996236,41.336078405],[-71.750008255,41.336075738],[-71.750048548,41.336101472],[-71.75009343,41.336127177],[-71.750110835,41.336135477],[-71.75008139,41.336149946],[-71.750038207,41.336158857],[-71.749985814,41.336176708],[-71.74992606,41.336202189],[-71.749906689,41.336224988],[-71.749880016,41.336233228],[-71.749848813,41.336231053],[-71.749778092,41.336235732],[-71.749720067,41.336279884],[-71.749658614,41.336329073],[-71.749624461,41.33632119],[-71.749605238,41.336299002],[-71.749604493,41.336259559],[-71.749601871,41.336227044],[-71.74958092,41.336193755],[-71.749555409,41.336148024],[-71.749552786,41.336102366],[-71.749533653,41.336071193],[-71.749557614,41.336044967],[-71.749604553,41.336019456]]],[[[-71.747749507,41.334615365],[-71.747812778,41.334632084],[-71.747860432,41.334651589],[-71.74790442,41.334668994],[-71.747909009,41.334671766],[-71.747930974,41.334684968],[-71.747928113,41.334710568],[-71.747921586,41.334736884],[-71.74791038,41.334779024],[-71.747909456,41.33479026],[-71.74790749,41.334814325],[-71.747909099,41.334868297],[-71.747909784,41.334872037],[-71.747916281,41.334907755],[-71.747910082,41.334950581],[-71.747909665,41.334953368],[-71.747894824,41.334988654],[-71.747870773,41.335036337],[-71.74784404,41.335063249],[-71.747800797,41.335090831],[-71.747745514,41.335132211],[-71.74771598,41.335166067],[-71.74766624,41.335214376],[-71.747589797,41.335267484],[-71.747502387,41.335318446],[-71.747396767,41.335364088],[-71.747388393,41.335353479],[-71.74737376,41.335341722],[-71.747340858,41.335309774],[-71.747318119,41.335249543],[-71.747301906,41.335183769],[-71.747297555,41.335126996],[-71.74731341,41.335065484],[-71.747332007,41.335007399],[-71.747355223,41.334947273],[-71.747387588,41.334889218],[-71.747417182,41.334832534],[-71.747448653,41.334770322],[-71.747501165,41.334728956],[-71.747572005,41.334693149],[-71.747633576,41.334664926],[-71.747700781,41.334628403],[-71.747749507,41.334615365]]],[[[-71.783442169,41.3336097],[-71.783478945,41.333626181],[-71.783634961,41.333711043],[-71.78365463,41.333830997],[-71.783672333,41.333940461],[-71.783697009,41.334049881],[-71.783695847,41.334160075],[-71.783641934,41.334267989],[-71.783555418,41.33428812],[-71.783474088,41.334160611],[-71.783391893,41.333942398],[-71.783340394,41.333808213],[-71.783337563,41.333720505],[-71.783409268,41.333656117],[-71.783442169,41.3336097]]],[[[-71.779379219,41.333407849],[-71.77949059,41.333425209],[-71.779598862,41.333494291],[-71.779636502,41.333583504],[-71.779772609,41.333633855],[-71.779882878,41.333711922],[-71.779890656,41.333812371],[-71.779831856,41.333887264],[-71.779675692,41.333915591],[-71.779553294,41.333979219],[-71.779462695,41.334024832],[-71.779348165,41.33409591],[-71.779331237,41.334131882],[-71.779250681,41.334143817],[-71.77918306,41.334131718],[-71.779179245,41.334045529],[-71.779179454,41.333935335],[-71.779188573,41.333822906],[-71.779234499,41.333721042],[-71.779284418,41.333616912],[-71.77933529,41.333512038],[-71.779379219,41.333407849]]],[[[-71.785489053,41.332808077],[-71.785516888,41.332818598],[-71.785552561,41.33288835],[-71.785439014,41.333000705],[-71.785321683,41.332992345],[-71.785296887,41.3329743],[-71.785318792,41.332930103],[-71.785425365,41.332832754],[-71.785489053,41.332808077]]],[[[-71.796059579,41.332217246],[-71.795967609,41.332280427],[-71.795967311,41.332280561],[-71.796059579,41.332217246]]],[[[-71.796226621,41.332092285],[-71.796226621,41.332092434],[-71.796138138,41.332161173],[-71.796226621,41.332092285]]],[[[-71.784915924,41.331808448],[-71.78495869,41.331813693],[-71.785088807,41.331879795],[-71.785189092,41.331969082],[-71.785308331,41.332026139],[-71.785318106,41.332132578],[-71.785271317,41.332170784],[-71.785170853,41.332193166],[-71.785033643,41.332175046],[-71.784911305,41.332194403],[-71.784870416,41.332267076],[-71.784783721,41.332365945],[-71.784757704,41.332469374],[-71.784719735,41.332577273],[-71.784712583,41.332693458],[-71.784704417,41.332818598],[-71.78474912,41.332853138],[-71.784893155,41.332945451],[-71.78499645,41.333021238],[-71.785119653,41.33309035],[-71.78506881,41.333175734],[-71.785010099,41.333194435],[-71.784787327,41.333218172],[-71.784714609,41.333287805],[-71.784691632,41.333343282],[-71.784761071,41.333446756],[-71.784736067,41.333523184],[-71.784614652,41.333592787],[-71.784525424,41.333435312],[-71.784457117,41.33323136],[-71.784401834,41.333001196],[-71.784380078,41.332927763],[-71.784384131,41.332864761],[-71.784398258,41.332751587],[-71.784428239,41.332645938],[-71.784499019,41.332568809],[-71.784542859,41.332497641],[-71.784603715,41.332383752],[-71.784644663,41.332278132],[-71.784698546,41.332168743],[-71.784738541,41.332045093],[-71.784796387,41.331935704],[-71.784864157,41.331827134],[-71.784915924,41.331808448]]],[[[-71.796494305,41.331639156],[-71.796459615,41.331706434],[-71.796381027,41.331811532],[-71.796459258,41.331706196],[-71.796494305,41.331639156]]],[[[-71.798726648,41.331524432],[-71.79856661,41.331564426],[-71.798399568,41.33156389],[-71.79856661,41.331563994],[-71.798726648,41.331524432]]],[[[-71.796676844,41.331332803],[-71.796670616,41.331364438],[-71.796670586,41.331364498],[-71.796676844,41.331332803]]],[[[-71.799337119,41.331305221],[-71.799334615,41.331310436],[-71.799308628,41.331357434],[-71.799199611,41.331437439],[-71.79906863,41.331487432],[-71.798903614,41.331499428],[-71.798726648,41.331524432],[-71.798726767,41.331524402],[-71.798903793,41.33149907],[-71.799068898,41.331487209],[-71.799199194,41.331437111],[-71.799308747,41.331357032],[-71.799337119,41.331305221]]],[[[-71.797421336,41.331245482],[-71.797425479,41.331246808],[-71.797510922,41.33130005],[-71.797546953,41.331322148],[-71.797421336,41.331245482]]],[[[-71.797170341,41.331094235],[-71.797216833,41.33112219],[-71.797243387,41.331162319],[-71.797216624,41.331122428],[-71.797170341,41.331094235]]],[[[-71.80232504,41.331060082],[-71.802267611,41.331073433],[-71.802112788,41.331080064],[-71.802267492,41.331073016],[-71.80232504,41.331060082]]],[[[-71.801444232,41.331048176],[-71.801425636,41.331048429],[-71.801425576,41.331048355],[-71.801444232,41.331048176]]],[[[-71.796975046,41.331040323],[-71.796922624,41.331047431],[-71.796794623,41.331099436],[-71.796734631,41.33113943],[-71.796709448,41.331202716],[-71.796734512,41.331139013],[-71.796794266,41.331099331],[-71.796922594,41.331046999],[-71.796975046,41.331040323]]],[[[-71.801970035,41.331020534],[-71.802016884,41.331069052],[-71.802048206,41.331079453],[-71.802016616,41.331069425],[-71.801970035,41.331020534]]],[[[-71.801882863,41.331007913],[-71.801866621,41.331021428],[-71.801829338,41.331024081],[-71.8018668,41.331021011],[-71.801882863,41.331007913]]],[[[-71.801918298,41.331003129],[-71.801955312,41.33100532],[-71.801955402,41.331005424],[-71.801918298,41.331003129]]],[[[-71.802690715,41.330951661],[-71.802611619,41.330993429],[-71.802554876,41.331006631],[-71.802611649,41.330993101],[-71.802690715,41.330951661]]],[[[-71.79950127,41.33092691],[-71.799429625,41.331023425],[-71.799408793,41.331080869],[-71.799429506,41.331023529],[-71.79950127,41.33092691]]],[[[-71.801254779,41.330924451],[-71.801379621,41.330983132],[-71.801398128,41.331009582],[-71.801379621,41.33098343],[-71.801254779,41.330924451]]],[[[-71.803231388,41.330781847],[-71.80321762,41.330788434],[-71.803187609,41.330859438],[-71.803163677,41.33086507],[-71.803187609,41.330859393],[-71.8032175,41.33078821],[-71.803231388,41.330781847]]],[[[-71.772403419,41.330779031],[-71.772489697,41.330782667],[-71.772564948,41.330791146],[-71.772619903,41.330820307],[-71.772668391,41.330874398],[-71.772707671,41.330923617],[-71.772672683,41.330947071],[-71.772591799,41.330973864],[-71.77250725,41.331004843],[-71.772465825,41.33104074],[-71.772481173,41.331097484],[-71.772529632,41.331148788],[-71.772572577,41.331206322],[-71.772527426,41.331254661],[-71.772465795,41.33128497],[-71.772400498,41.331326336],[-71.772324979,41.331376001],[-71.772255957,41.331426367],[-71.772213548,41.331480235],[-71.772214204,41.331550136],[-71.772273719,41.331593141],[-71.772362649,41.331617564],[-71.77244705,41.331632972],[-71.772508413,41.331667691],[-71.772560745,41.331667796],[-71.772574753,41.33160767],[-71.772538215,41.331559822],[-71.77257961,41.331539139],[-71.772661239,41.331556618],[-71.772735596,41.33155331],[-71.772805482,41.331519574],[-71.772855252,41.331469849],[-71.772906929,41.331399381],[-71.772953063,41.331328884],[-71.773023725,41.331338748],[-71.773032755,41.331371307],[-71.773014218,41.331423819],[-71.773010343,41.331486076],[-71.772992611,41.33156009],[-71.772981286,41.331638262],[-71.772925079,41.3316921],[-71.772854298,41.331729323],[-71.77286616,41.331743881],[-71.772933006,41.331784129],[-71.772999883,41.331818879],[-71.773042828,41.331875697],[-71.773035288,41.331937283],[-71.773008466,41.331987754],[-71.772951335,41.332036734],[-71.772871315,41.332077384],[-71.772788644,41.332106993],[-71.772722334,41.332156643],[-71.77267617,41.332223654],[-71.772625506,41.332270592],[-71.772581279,41.332314104],[-71.772532374,41.332383886],[-71.772474289,41.332448095],[-71.772409827,41.332503334],[-71.772413462,41.332522705],[-71.772470206,41.332560882],[-71.772538036,41.332591459],[-71.772607744,41.33260408],[-71.772690326,41.332615316],[-71.772740781,41.332626507],[-71.772810698,41.332586512],[-71.772769541,41.332546324],[-71.772815555,41.332503483],[-71.772875428,41.332451746],[-71.772916734,41.332453892],[-71.772994727,41.332475498],[-71.773069113,41.332460433],[-71.773163646,41.332459271],[-71.773241639,41.332471892],[-71.773314089,41.332487941],[-71.773404032,41.332499206],[-71.773429006,41.33244808],[-71.773442835,41.33243078],[-71.773521781,41.332428873],[-71.773600757,41.332421467],[-71.773663342,41.332385585],[-71.773713827,41.332385704],[-71.773747593,41.332437664],[-71.773807049,41.332495257],[-71.773851067,41.332507744],[-71.773893476,41.332462862],[-71.773967773,41.332467169],[-71.774065942,41.33248052],[-71.774149537,41.332473099],[-71.774219155,41.332505777],[-71.774284244,41.332539797],[-71.774354815,41.332569718],[-71.774384916,41.332623735],[-71.774412245,41.332680553],[-71.774484634,41.332713947],[-71.774486393,41.332736745],[-71.774471492,41.332793459],[-71.774416327,41.33280994],[-71.774350107,41.332840249],[-71.774268389,41.332859471],[-71.774184763,41.332875863],[-71.774083734,41.332881227],[-71.774000317,41.33285059],[-71.773932368,41.332863584],[-71.773875237,41.33291468],[-71.773802638,41.332940117],[-71.773719013,41.33296138],[-71.773663789,41.333009019],[-71.773611426,41.333011657],[-71.773534358,41.333008751],[-71.773456275,41.333016902],[-71.773434073,41.333061114],[-71.77340278,41.333075598],[-71.7733275,41.333080262],[-71.773281783,41.333037272],[-71.77320379,41.333028108],[-71.773116559,41.333036229],[-71.773039311,41.333064422],[-71.772964954,41.333065659],[-71.772886902,41.333073094],[-71.772798747,41.333083317],[-71.772731602,41.333108753],[-71.772656262,41.333132118],[-71.772600114,41.333164543],[-71.77254042,41.333176166],[-71.772467792,41.333206445],[-71.772439301,41.333218858],[-71.772365838,41.333220765],[-71.77228871,41.333221287],[-71.772205204,41.333221123],[-71.772114307,41.333216771],[-71.77203539,41.333215922],[-71.771952748,41.333219185],[-71.771865547,41.333221063],[-71.771785676,41.333223701],[-71.771684676,41.333224162],[-71.771586388,41.333235055],[-71.771515667,41.333248004],[-71.771436661,41.333269298],[-71.771360457,41.333267733],[-71.771287024,41.333263427],[-71.771198899,41.33325842],[-71.771124542,41.333261713],[-71.771024406,41.333285704],[-71.770943463,41.333324298],[-71.770888239,41.333360866],[-71.770816654,41.333362088],[-71.770732194,41.333362579],[-71.770656019,41.333355486],[-71.770571649,41.333333865],[-71.770498127,41.333356559],[-71.770418197,41.333372995],[-71.77033183,41.33339633],[-71.770239025,41.333416194],[-71.770142525,41.3334409],[-71.770069957,41.33345598],[-71.769966155,41.333471641],[-71.769885331,41.333483934],[-71.769805431,41.333498985],[-71.769734681,41.333512664],[-71.769666672,41.333534688],[-71.769599557,41.333558723],[-71.769515902,41.333591759],[-71.769449711,41.333616525],[-71.769374371,41.333635047],[-71.769289762,41.333665341],[-71.769203395,41.333698377],[-71.769122452,41.333734155],[-71.769047946,41.333771378],[-71.769013077,41.333765745],[-71.768976569,41.333716542],[-71.768954754,41.333658397],[-71.768929243,41.333598822],[-71.768898308,41.333530247],[-71.768863708,41.333460972],[-71.768809885,41.333366051],[-71.768781692,41.333300278],[-71.768768102,41.333255976],[-71.768688053,41.333057225],[-71.768647045,41.332968548],[-71.768611819,41.332830802],[-71.768601924,41.332771942],[-71.768601298,41.332696542],[-71.768609762,41.33264257],[-71.768643945,41.332585916],[-71.768687189,41.332552806],[-71.768764496,41.332507968],[-71.768875718,41.332465306],[-71.769057661,41.332424209],[-71.769222945,41.332399651],[-71.769436985,41.33236967],[-71.769594938,41.332356155],[-71.769749075,41.332372397],[-71.769795626,41.332395196],[-71.769837052,41.332415506],[-71.769968301,41.332416475],[-71.770052761,41.332415253],[-71.770184994,41.33240518],[-71.770310879,41.332385361],[-71.770495474,41.332350492],[-71.770659953,41.332314864],[-71.770782143,41.33228606],[-71.77094391,41.332234517],[-71.771112114,41.332174659],[-71.771193922,41.332151338],[-71.771333635,41.332091406],[-71.77139166,41.332046553],[-71.771446049,41.33199133],[-71.771492988,41.331949919],[-71.771561116,41.331898168],[-71.771631986,41.331847817],[-71.771670789,41.331789091],[-71.771670967,41.331734419],[-71.771669418,41.331658974],[-71.771665961,41.331603616],[-71.771668077,41.331528232],[-71.771685749,41.331465974],[-71.771714479,41.331403062],[-71.771751404,41.331338093],[-71.771798462,41.331269026],[-71.7718409,41.331224129],[-71.771889716,41.331177175],[-71.771942228,41.331126824],[-71.77199018,41.331070855],[-71.772037238,41.331010759],[-71.772084266,41.33095479],[-71.772130281,41.330908537],[-71.772187382,41.330865741],[-71.772249967,41.330829203],[-71.772313416,41.330800295],[-71.772403419,41.330779031]],[[-71.769740909,41.332598627],[-71.769697696,41.332607538],[-71.769664586,41.332630292],[-71.769565374,41.332644612],[-71.769490987,41.332650691],[-71.76942119,41.332665086],[-71.769365072,41.332692638],[-71.769325405,41.332742378],[-71.769303203,41.332788676],[-71.769279122,41.332837746],[-71.769254088,41.332911715],[-71.769250244,41.33296223],[-71.76926288,41.33301276],[-71.769289404,41.333040535],[-71.769353539,41.333074525],[-71.769417733,41.333092675],[-71.76949662,41.333101138],[-71.769601315,41.333092391],[-71.769701481,41.333067],[-71.7697649,41.333046377],[-71.76987806,41.332977429],[-71.76992324,41.332928404],[-71.769970328,41.332860008],[-71.769993454,41.332806081],[-71.769966066,41.332766563],[-71.769917578,41.332724988],[-71.769824207,41.332652822],[-71.769740909,41.332598627]]],[[[-71.799498051,41.33068727],[-71.799511611,41.330819428],[-71.799501628,41.330926433],[-71.79950127,41.33092691],[-71.799511343,41.330819756],[-71.799498051,41.33068727]]],[[[-71.803436548,41.330625698],[-71.803418636,41.330692425],[-71.803411603,41.330695778],[-71.803418517,41.330692396],[-71.803436518,41.330625698],[-71.803436548,41.330625698]]],[[[-71.803474277,41.330621973],[-71.803607881,41.330625132],[-71.803474635,41.330622435],[-71.80344969,41.330624402],[-71.803474277,41.330621973]]],[[[-71.799403667,41.330486864],[-71.799445629,41.330503434],[-71.799461663,41.330512419],[-71.799445152,41.330503374],[-71.799403667,41.330486864]]],[[[-71.798950285,41.330401525],[-71.799131632,41.330429435],[-71.799213201,41.330436483],[-71.799132049,41.330429643],[-71.798950076,41.330401778],[-71.798950285,41.330401525]]],[[[-71.800951302,41.330359444],[-71.800948888,41.330362171],[-71.800888062,41.330460295],[-71.800872028,41.330590695],[-71.800904632,41.330632195],[-71.800871611,41.330590427],[-71.800887614,41.330460429],[-71.80094862,41.330362424],[-71.800951302,41.330359444]]],[[[-71.803955644,41.330204621],[-71.803966194,41.330284372],[-71.803955168,41.330204844],[-71.803955644,41.330204621]]],[[[-71.799444705,41.330120355],[-71.799444616,41.330120429],[-71.799313635,41.330196425],[-71.799193621,41.330198437],[-71.799075633,41.330195427],[-71.799052179,41.330238357],[-71.799075723,41.33019501],[-71.799194008,41.330198109],[-71.799313366,41.330195963],[-71.799444705,41.330120355]]],[[[-71.804580271,41.330055892],[-71.804538637,41.330058426],[-71.804381609,41.330061436],[-71.804360479,41.3300675],[-71.804381967,41.330061272],[-71.804539055,41.330058396],[-71.804580271,41.330055892]]],[[[-71.805017382,41.330033273],[-71.805141687,41.330052108],[-71.805272877,41.330079198],[-71.805381954,41.330092251],[-71.805272609,41.330079436],[-71.805141628,41.330052435],[-71.80501762,41.330033436],[-71.804869622,41.330048427],[-71.804717213,41.330049261],[-71.804869205,41.330048144],[-71.805017382,41.330033273]]],[[[-71.805928379,41.329936087],[-71.805884629,41.329974428],[-71.805746615,41.330051437],[-71.805604637,41.330098435],[-71.805479705,41.330097094],[-71.805605024,41.330098167],[-71.805746257,41.330051079],[-71.80588457,41.329973951],[-71.805919766,41.329943538],[-71.805928379,41.329936087]]],[[[-71.799797177,41.329826817],[-71.799684614,41.329924434],[-71.799444705,41.330120355],[-71.799555242,41.330029026],[-71.799640387,41.329960048],[-71.799684674,41.329924166],[-71.799797177,41.329826817]]],[[[-71.806410611,41.329726428],[-71.806245625,41.329810426],[-71.806188613,41.329831436],[-71.80611676,41.329847977],[-71.80618906,41.329831019],[-71.806245744,41.329810083],[-71.806410611,41.329726428]]],[[[-71.799847245,41.329701513],[-71.799822628,41.329715431],[-71.799797624,41.329826429],[-71.799797177,41.329826817],[-71.799822152,41.329715177],[-71.799847245,41.329701513]]],[[[-71.806618631,41.329575434],[-71.806548625,41.329670429],[-71.80641067,41.329726413],[-71.806410939,41.329726279],[-71.806548238,41.329670131],[-71.806618631,41.329575434]]],[[[-71.806689113,41.32957077],[-71.806618631,41.329575434],[-71.806618959,41.329574987],[-71.806689113,41.32957077]]],[[[-71.801117718,41.329528615],[-71.80113098,41.329587281],[-71.801181316,41.329682469],[-71.801130623,41.32958743],[-71.801117718,41.329528615]]],[[[-71.806862235,41.329512611],[-71.806845635,41.329530433],[-71.806806535,41.3295459],[-71.806845754,41.329530194],[-71.806862235,41.329512611]]],[[[-71.800286859,41.329462186],[-71.800286621,41.329462424],[-71.800253719,41.329480514],[-71.800286859,41.329462186]]],[[[-71.800504833,41.32935594],[-71.800659925,41.329356074],[-71.800724447,41.329359084],[-71.800659627,41.329356432],[-71.800504625,41.329356432],[-71.800373614,41.329375431],[-71.800292879,41.32945618],[-71.800373524,41.329375312],[-71.800504833,41.32935594]]],[[[-71.807230234,41.329342514],[-71.807199627,41.329364434],[-71.807107627,41.329375431],[-71.807057083,41.329397485],[-71.807107478,41.329375237],[-71.807199955,41.329364061],[-71.807230234,41.329342514]]],[[[-71.807437509,41.329172835],[-71.807280064,41.329305992],[-71.807371169,41.329226285],[-71.807437509,41.329172835]]],[[[-71.807612836,41.328951448],[-71.807600617,41.328969434],[-71.80757162,41.329059437],[-71.807544708,41.329082206],[-71.807571262,41.329059273],[-71.80760017,41.328969359],[-71.807612836,41.328951448]]],[[[-71.807695031,41.328631163],[-71.807690024,41.328823566],[-71.807691008,41.328726575],[-71.807695031,41.328631163]]],[[[-71.807763785,41.328423157],[-71.807763636,41.328423426],[-71.807699621,41.328455433],[-71.807698697,41.328490466],[-71.807699323,41.32845524],[-71.807763785,41.328423157]]],[[[-71.807711422,41.328188047],[-71.807720631,41.328208432],[-71.807757795,41.328230083],[-71.807720482,41.32820864],[-71.807711422,41.328188047]]],[[[-71.807822347,41.328112721],[-71.807743639,41.328144431],[-71.807706714,41.328177348],[-71.807706624,41.328177154],[-71.80774346,41.328144222],[-71.807822347,41.328112721]]],[[[-71.808037817,41.328061223],[-71.808037639,41.328061432],[-71.807970345,41.328072652],[-71.808037817,41.328061223]]],[[[-71.808340877,41.327659532],[-71.808345616,41.327694431],[-71.808345556,41.327694595],[-71.808340877,41.327659532]]],[[[-71.799176186,41.327390984],[-71.799210608,41.327392429],[-71.799464285,41.327391654],[-71.799386948,41.327391967],[-71.799210936,41.327392563],[-71.799176186,41.327390984]]],[[[-71.799674422,41.327317998],[-71.799538106,41.327391356],[-71.799537778,41.327391356],[-71.799674422,41.327317998]]],[[[-71.798914313,41.327297688],[-71.798917621,41.32730943],[-71.798969805,41.327340648],[-71.798917711,41.327309921],[-71.798914313,41.327297688]]],[[[-71.808451056,41.327232793],[-71.808451623,41.327296436],[-71.808436632,41.327326432],[-71.808350056,41.327350318],[-71.808350056,41.327350125],[-71.808436573,41.327326208],[-71.808451533,41.327296242],[-71.808451056,41.327232793]]],[[[-71.799904078,41.327205613],[-71.799814761,41.327235699],[-71.799768955,41.32726787],[-71.799674422,41.327317998],[-71.799768627,41.327267438],[-71.799814612,41.32723543],[-71.799904078,41.327205613]]],[[[-71.798637897,41.327098474],[-71.79868862,41.327131435],[-71.798831612,41.327211425],[-71.798906624,41.327270433],[-71.798906744,41.327270836],[-71.798831344,41.327211663],[-71.798788846,41.327187777],[-71.798688322,41.327131331],[-71.798637897,41.327098474]]],[[[-71.798481613,41.327034429],[-71.798485965,41.327034935],[-71.798481643,41.327034459],[-71.798451096,41.327035397],[-71.798481613,41.327034429]]],[[[-71.800040513,41.327032268],[-71.800009847,41.327066451],[-71.799985826,41.327178091],[-71.799985677,41.327178136],[-71.800009608,41.327066436],[-71.800040513,41.327032268]]],[[[-71.798009038,41.32687068],[-71.798034608,41.326962426],[-71.798118025,41.327015713],[-71.798034281,41.326962888],[-71.798009038,41.32687068]]],[[[-71.80836457,41.326868206],[-71.80836463,41.32686843],[-71.80836463,41.326985434],[-71.80837962,41.327072427],[-71.80845046,41.32718116],[-71.808437794,41.327161893],[-71.808379233,41.327072829],[-71.808364391,41.326985851],[-71.80836457,41.326868206]]],[[[-71.800452173,41.326619238],[-71.800438076,41.326624528],[-71.800322622,41.326688915],[-71.800205588,41.326766506],[-71.800205618,41.326766431],[-71.800322622,41.326688424],[-71.800437629,41.326624438],[-71.800452173,41.326619238]]],[[[-71.798011959,41.326543659],[-71.797988623,41.326563433],[-71.797943622,41.326669425],[-71.797948927,41.326733112],[-71.797943175,41.326669767],[-71.797988117,41.326563343],[-71.798011959,41.326543659]]],[[[-71.798158616,41.326419428],[-71.798151821,41.326425195],[-71.798158348,41.326419592],[-71.798158616,41.326419428]]],[[[-71.800859809,41.326369435],[-71.800846428,41.326379374],[-71.80085963,41.326369435],[-71.800859809,41.326369435]]],[[[-71.801128596,41.326357439],[-71.801128477,41.326357514],[-71.801106751,41.326360032],[-71.801128596,41.326357439]]],[[[-71.79832083,41.326353043],[-71.798274606,41.326356426],[-71.798158616,41.326419428],[-71.798274755,41.326355979],[-71.79832083,41.326353043]]],[[[-71.808705181,41.326303899],[-71.808640629,41.326318428],[-71.808522612,41.326430425],[-71.808461636,41.326529428],[-71.808449358,41.326544553],[-71.808461457,41.326529488],[-71.808522224,41.326430559],[-71.808640718,41.326318234],[-71.808705181,41.326303899]]],[[[-71.801431328,41.326192379],[-71.801334471,41.326239243],[-71.801213712,41.32629241],[-71.801431328,41.326192379]]],[[[-71.797308147,41.326149419],[-71.797334611,41.326238424],[-71.797335625,41.326311424],[-71.797294617,41.326411426],[-71.797322631,41.326439425],[-71.797294289,41.326411352],[-71.797335178,41.326311737],[-71.797334313,41.32623826],[-71.797308147,41.326149419]]],[[[-71.797263622,41.326125428],[-71.797289968,41.326126814],[-71.797263861,41.326125771],[-71.797232568,41.326158091],[-71.797263622,41.326125428]]],[[[-71.797505349,41.326120466],[-71.797462642,41.326177657],[-71.797398895,41.326287791],[-71.797350943,41.326420397],[-71.797323048,41.326439872],[-71.797322631,41.326439425],[-71.797350615,41.326420426],[-71.797398627,41.326287434],[-71.797462612,41.326177433],[-71.797505349,41.326120466]]],[[[-71.801614642,41.326114729],[-71.801585197,41.326121762],[-71.801568449,41.326129332],[-71.801585615,41.326121435],[-71.801614642,41.326114729]]],[[[-71.798518419,41.326112986],[-71.798406363,41.3261327],[-71.798239619,41.326177433],[-71.798406631,41.326132432],[-71.798518419,41.326112986]]],[[[-71.799195945,41.326050147],[-71.799287736,41.326066956],[-71.799195617,41.326050431],[-71.799113572,41.326093525],[-71.799195945,41.326050147]]],[[[-71.808751464,41.326017797],[-71.808790624,41.326051429],[-71.808794349,41.326126546],[-71.808790207,41.326051518],[-71.808751464,41.326017797]]],[[[-71.799345404,41.325970381],[-71.799345613,41.325970426],[-71.799383163,41.326039523],[-71.799345404,41.325970381]]],[[[-71.799248457,41.325949818],[-71.799304813,41.325961784],[-71.799249798,41.325950503],[-71.799248457,41.325949818]]],[[[-71.798901767,41.325915292],[-71.798883826,41.325994447],[-71.798729658,41.326017529],[-71.798658758,41.326055482],[-71.798729628,41.326017424],[-71.798883617,41.325994432],[-71.798901618,41.325915426],[-71.798901767,41.325915292]]],[[[-71.79771468,41.325870544],[-71.797768623,41.325974435],[-71.797801912,41.326054066],[-71.797768205,41.325974032],[-71.79771468,41.325870544]]],[[[-71.802323937,41.32584703],[-71.802218884,41.325902641],[-71.802197009,41.325909168],[-71.802218616,41.325902432],[-71.802323937,41.32584703]]],[[[-71.808627456,41.325787887],[-71.808649629,41.325803429],[-71.808671623,41.32587643],[-71.808682233,41.325924188],[-71.808671117,41.325876027],[-71.808649302,41.325803325],[-71.808627456,41.325787887]]],[[[-71.797600627,41.325743437],[-71.797647625,41.325756431],[-71.797714621,41.325870425],[-71.797647238,41.325756565],[-71.797600597,41.325743794],[-71.797600627,41.325743437]]],[[[-71.802699953,41.325627431],[-71.80260995,41.325702801],[-71.802538335,41.325745702],[-71.802609622,41.325702429],[-71.802699953,41.325627431]]],[[[-71.8085998,41.325490236],[-71.808558613,41.325583428],[-71.808554739,41.325651035],[-71.808558136,41.325583622],[-71.8085998,41.325490236]]],[[[-71.799172759,41.325449407],[-71.799153984,41.325487986],[-71.799146861,41.325611621],[-71.799092025,41.325735256],[-71.79904744,41.325774744],[-71.799091607,41.325735435],[-71.799146622,41.325611427],[-71.799153626,41.325488433],[-71.79917261,41.325449437],[-71.799172759,41.325449407]]],[[[-71.799252629,41.325437427],[-71.79938063,41.32568343],[-71.799397618,41.325725436],[-71.799370617,41.325783432],[-71.799246907,41.325949043],[-71.799246818,41.325948998],[-71.799370319,41.325783432],[-71.79939729,41.325725749],[-71.799380422,41.325683802],[-71.799311012,41.325552523],[-71.79925251,41.325437844],[-71.799212575,41.325443447],[-71.799252629,41.325437427]]],[[[-71.752052307,41.325316191],[-71.75215143,41.325321257],[-71.752253234,41.325342938],[-71.752348572,41.325377762],[-71.752432823,41.325424314],[-71.752490461,41.32546182],[-71.752549976,41.325502038],[-71.752603024,41.325547159],[-71.752654225,41.325597778],[-71.752700835,41.325648397],[-71.752747446,41.325694859],[-71.752795935,41.325737208],[-71.752846271,41.325776041],[-71.752925903,41.32582812],[-71.753000945,41.325882971],[-71.753048539,41.325925976],[-71.753107935,41.325991839],[-71.753159046,41.326061144],[-71.753212035,41.326126307],[-71.753267735,41.3261915],[-71.753322601,41.326242104],[-71.753383934,41.326281011],[-71.753449947,41.326311603],[-71.753529698,41.32633324],[-71.753626913,41.326354921],[-71.753730536,41.326372445],[-71.753803015,41.326380208],[-71.753890216,41.326388031],[-71.753966391,41.326386124],[-71.754047185,41.326386333],[-71.75414905,41.326386556],[-71.754244506,41.326388821],[-71.754340917,41.326386273],[-71.754423529,41.32638301],[-71.754496008,41.326392174],[-71.754581302,41.326406941],[-71.754646569,41.326388419],[-71.754720002,41.326387197],[-71.754821807,41.326401249],[-71.754907101,41.326415941],[-71.754991591,41.326411992],[-71.75506413,41.326408684],[-71.755136579,41.326422021],[-71.7552118,41.3264305],[-71.755297154,41.326435521],[-71.755367786,41.326449528],[-71.755428225,41.326484278],[-71.755470246,41.326537624],[-71.755502105,41.326602101],[-71.755559772,41.326638877],[-71.755588949,41.326688737],[-71.755641043,41.326744914],[-71.755712509,41.32677415],[-71.755796909,41.326788187],[-71.755881339,41.326793894],[-71.755975008,41.326785818],[-71.756043941,41.326763138],[-71.756141365,41.326737761],[-71.756213903,41.32672061],[-71.756314993,41.326698035],[-71.756414205,41.326680943],[-71.756488562,41.326679051],[-71.756567448,41.326681972],[-71.756667435,41.326696754],[-71.756757319,41.326722547],[-71.756836981,41.326770455],[-71.756915689,41.326823905],[-71.75699082,41.326864198],[-71.757064134,41.326901063],[-71.757159472,41.326926872],[-71.757232815,41.326940864],[-71.75730896,41.326954901],[-71.757407069,41.326982811],[-71.757494152,41.327018976],[-71.757573843,41.327057227],[-71.757656276,41.327096805],[-71.757741481,41.327137172],[-71.757804692,41.327171877],[-71.757863253,41.327217683],[-71.757911682,41.327271059],[-71.757924676,41.3272883],[-71.757951885,41.327324465],[-71.758009493,41.3273772],[-71.758079141,41.327406362],[-71.758145094,41.327437654],[-71.758201867,41.327475175],[-71.75828439,41.32750234],[-71.758361429,41.327517018],[-71.758434743,41.327539325],[-71.758511752,41.327565804],[-71.758596122,41.327588141],[-71.758673251,41.327585563],[-71.758749336,41.327608541],[-71.758833706,41.327629477],[-71.758933693,41.327642158],[-71.759025425,41.327654138],[-71.759120882,41.327666819],[-71.75920707,41.327688426],[-71.759296954,41.327702492],[-71.759385079,41.327697143],[-71.759463131,41.327689007],[-71.759546757,41.327678129],[-71.759616584,41.327659592],[-71.759675235,41.327677742],[-71.75973013,41.327718675],[-71.759797961,41.32774511],[-71.759865761,41.32778126],[-71.759921551,41.327830538],[-71.75998649,41.327890173],[-71.760049611,41.327946335],[-71.760115474,41.328002557],[-71.760163069,41.328044176],[-71.760209709,41.328085765],[-71.760275573,41.328141958],[-71.760335088,41.328185692],[-71.760410219,41.328213543],[-71.760492772,41.32823588],[-71.760558695,41.328269243],[-71.760602534,41.328336462],[-71.760621518,41.328407079],[-71.760653585,41.328421667],[-71.760718673,41.328450188],[-71.760788351,41.328462109],[-71.760880232,41.328447089],[-71.760950744,41.328488097],[-71.761029631,41.328501388],[-71.761106819,41.328486338],[-71.761185646,41.32849963],[-71.761258185,41.328499809],[-71.7613509,41.328500703],[-71.761438131,41.328493983],[-71.7615107,41.328478247],[-71.761594236,41.328474969],[-71.761661142,41.328497961],[-71.761744767,41.32848151],[-71.761821896,41.32847406],[-71.761898994,41.328469396],[-71.761995405,41.328466877],[-71.762090802,41.328488544],[-71.762178868,41.328496352],[-71.762275338,41.32847859],[-71.762358963,41.328453809],[-71.762429744,41.328428373],[-71.762461215,41.328368947],[-71.762467891,41.328302518],[-71.762478262,41.328229904],[-71.762485892,41.328153118],[-71.762493461,41.328095719],[-71.762502968,41.328013405],[-71.762503266,41.327938661],[-71.762493461,41.327863917],[-71.76248914,41.327787131],[-71.762511432,41.327726945],[-71.762529135,41.327661932],[-71.762531161,41.327605218],[-71.7625525,41.327550575],[-71.762585729,41.327495307],[-71.762629896,41.327473268],[-71.762653619,41.327507943],[-71.762646049,41.327564627],[-71.762642175,41.327624828],[-71.762633651,41.32768777],[-71.762626976,41.327759027],[-71.762613803,41.32783027],[-71.762615353,41.327906385],[-71.76261875,41.327983201],[-71.762613028,41.328037143],[-71.762601793,41.328098029],[-71.762593269,41.328160256],[-71.762587517,41.328218386],[-71.762580872,41.328273714],[-71.762568742,41.328330442],[-71.762560219,41.328391984],[-71.76256001,41.328450099],[-71.762559772,41.328504756],[-71.762557656,41.328580886],[-71.762550056,41.328650743],[-71.76254338,41.328709558],[-71.762539476,41.328766271],[-71.762534708,41.328824386],[-71.762528926,41.328885257],[-71.76252228,41.32894893],[-71.762517422,41.329009771],[-71.762514442,41.329069287],[-71.762510568,41.329128101],[-71.762502968,41.329186201],[-71.762495428,41.329240844],[-71.762484133,41.329315543],[-71.76247564,41.329370201],[-71.76246807,41.329430357],[-71.762462288,41.329496101],[-71.762438327,41.329763129],[-71.76243341,41.329841971],[-71.762549341,41.330050632],[-71.762554646,41.330060229],[-71.762761593,41.330432937],[-71.76296863,41.330809712],[-71.763013124,41.330892816],[-71.763017714,41.330901265],[-71.76303491,41.33096078],[-71.763052136,41.331016839],[-71.763070285,41.331072241],[-71.763093889,41.331133887],[-71.76311481,41.331195548],[-71.763103575,41.331251562],[-71.763110667,41.331308976],[-71.763130665,41.331362993],[-71.763080925,41.331405103],[-71.763103664,41.331458434],[-71.763131887,41.331524238],[-71.763178498,41.331567898],[-71.763227016,41.331608176],[-71.763246983,41.331662863],[-71.763268799,41.331718951],[-71.763300717,41.331772998],[-71.763330817,41.331827015],[-71.763367325,41.331876263],[-71.763401091,41.331928238],[-71.763418317,41.331984967],[-71.76343739,41.332039699],[-71.763479441,41.332086831],[-71.763518721,41.332137421],[-71.763553411,41.332191452],[-71.763591677,41.3322559],[-71.763626397,41.332303718],[-71.763663828,41.332359165],[-71.763704032,41.332409754],[-71.76375249,41.33245483],[-71.763805568,41.332495794],[-71.76386413,41.332546428],[-71.763900667,41.332596332],[-71.763937205,41.332646906],[-71.763975561,41.332698926],[-71.764018476,41.332755044],[-71.764056802,41.33281599],[-71.764101535,41.332874209],[-71.764169455,41.332881331],[-71.764204174,41.332918048],[-71.764192104,41.332958847],[-71.764217645,41.333001822],[-71.764256924,41.333051041],[-71.764302582,41.333116159],[-71.764336318,41.333165362],[-71.764391184,41.33322911],[-71.764464408,41.333281189],[-71.764525712,41.33333461],[-71.764572352,41.333381057],[-71.764629066,41.333430991],[-71.76468119,41.333484411],[-71.764751047,41.333456859],[-71.764768451,41.333470747],[-71.764818728,41.333518609],[-71.764869958,41.333567157],[-71.764926702,41.333615705],[-71.764982492,41.333667025],[-71.765032768,41.333722532],[-71.765076637,41.333775178],[-71.765128762,41.333828598],[-71.765192807,41.333882704],[-71.765261471,41.333931968],[-71.765323699,41.33398056],[-71.765377671,41.334027022],[-71.765423417,41.334070027],[-71.765466392,41.334114388],[-71.765520394,41.334160849],[-71.765583545,41.334204614],[-71.765608132,41.334259316],[-71.765655637,41.334316179],[-71.765696764,41.334366754],[-71.765748888,41.334420845],[-71.765790939,41.334467977],[-71.76573661,41.334507316],[-71.765760273,41.334558591],[-71.765796959,41.334566236],[-71.76587221,41.334578156],[-71.765916109,41.334621191],[-71.765950829,41.334671065],[-71.765980899,41.334723726],[-71.766023785,41.334789515],[-71.766067594,41.334854007],[-71.766105026,41.334912881],[-71.766138792,41.334966943],[-71.766179889,41.335020974],[-71.766233832,41.335074365],[-71.766296953,41.335129887],[-71.766355515,41.33518672],[-71.766416788,41.335242257],[-71.766473502,41.335301176],[-71.76652652,41.335362151],[-71.7665869,41.335417643],[-71.766651869,41.335471094],[-71.766712248,41.335528642],[-71.766769856,41.335584819],[-71.766827464,41.335641697],[-71.766881406,41.335695058],[-71.76693815,41.335745707],[-71.766998559,41.335796341],[-71.767058045,41.335845605],[-71.767110169,41.335894153],[-71.767162353,41.335939258],[-71.767214477,41.335985705],[-71.767261118,41.336031482],[-71.767311454,41.336077258],[-71.767363608,41.336122334],[-71.767427653,41.336174369],[-71.76748991,41.336222261],[-71.767498344,41.336181462],[-71.76746735,41.336125314],[-71.767480344,41.336077601],[-71.767486125,41.336013272],[-71.767473549,41.335942686],[-71.76753056,41.335913733],[-71.767602235,41.335901469],[-71.767639697,41.335947901],[-71.76766336,41.336003974],[-71.767684191,41.336071163],[-71.767713338,41.336137623],[-71.76772958,41.336204097],[-71.767723829,41.336264983],[-71.767709851,41.336325124],[-71.767729819,41.336389527],[-71.767774671,41.336411759],[-71.767849058,41.336416766],[-71.767909467,41.336457014],[-71.767968088,41.33650142],[-71.76802209,41.336539611],[-71.768080741,41.336572275],[-71.768143952,41.336602166],[-71.768223703,41.336631402],[-71.768293321,41.336670965],[-71.768346399,41.336721614],[-71.768399507,41.336763248],[-71.768406987,41.336722434],[-71.768441141,41.336670622],[-71.768496364,41.336631313],[-71.76854977,41.336590573],[-71.768605053,41.336547107],[-71.7686373,41.336498722],[-71.768633902,41.33643575],[-71.768574357,41.336393416],[-71.768489033,41.33639048],[-71.76844877,41.336355105],[-71.768471926,41.336306036],[-71.76853171,41.336267397],[-71.768594235,41.336238489],[-71.768667817,41.336213037],[-71.768732876,41.336244315],[-71.768732905,41.336230502],[-71.76872763,41.336169571],[-71.768710405,41.336108625],[-71.768686771,41.336049765],[-71.768674165,41.335989565],[-71.768674433,41.335916892],[-71.768682063,41.335840836],[-71.768682331,41.335777834],[-71.768681616,41.335717663],[-71.76868093,41.335653305],[-71.768692225,41.335581347],[-71.76870349,41.335521176],[-71.768711954,41.335463077],[-71.768735975,41.335427821],[-71.768792093,41.335387811],[-71.768833637,41.335329115],[-71.768860489,41.335266888],[-71.768881857,41.335201889],[-71.768913329,41.335135534],[-71.768938303,41.335078165],[-71.768967927,41.335019439],[-71.768989265,41.334959969],[-71.769002169,41.334949628],[-71.769078404,41.334942833],[-71.769134223,41.334987253],[-71.769185483,41.335026801],[-71.769233972,41.335070506],[-71.769277841,41.335120395],[-71.769333631,41.335177958],[-71.769370109,41.335236147],[-71.769382745,41.335298464],[-71.769381553,41.335368365],[-71.769379467,41.335436136],[-71.769364536,41.335500464],[-71.769356966,41.33556065],[-71.769356757,41.335616022],[-71.769364774,41.335683152],[-71.769377381,41.335740596],[-71.769407421,41.3358071],[-71.769448519,41.335868061],[-71.769475847,41.335923493],[-71.769507706,41.335996181],[-71.769553334,41.336062744],[-71.769612223,41.336030334],[-71.769678473,41.335995197],[-71.769756585,41.335967705],[-71.769827366,41.335945666],[-71.769900888,41.33592093],[-71.76997903,41.335904494],[-71.770079106,41.335895047],[-71.770091087,41.33587569],[-71.770121425,41.335871592],[-71.770203114,41.335872427],[-71.770226002,41.335894629],[-71.770255297,41.33591406],[-71.770330518,41.335929483],[-71.770407647,41.335928962],[-71.770473629,41.335957438],[-71.770555258,41.335970059],[-71.770627916,41.335941166],[-71.77069509,41.335898414],[-71.770731121,41.33584249],[-71.770765245,41.33579202],[-71.770789325,41.335740864],[-71.77078864,41.335679963],[-71.770800769,41.335624635],[-71.770833164,41.335560337],[-71.770864546,41.335510597],[-71.770895064,41.335451171],[-71.770889789,41.335390285],[-71.770873487,41.33533141],[-71.770878375,41.335258752],[-71.770890534,41.335196525],[-71.770911843,41.335140526],[-71.77096346,41.335083917],[-71.771020621,41.335021749],[-71.771017104,41.334976062],[-71.770987034,41.334924102],[-71.770985425,41.334863201],[-71.771008641,41.334794775],[-71.770991385,41.334740087],[-71.770937353,41.334699824],[-71.770870447,41.334672004],[-71.77079162,41.334647611],[-71.770703524,41.334641233],[-71.770620853,41.334647939],[-71.770546585,41.334622204],[-71.770464987,41.334592253],[-71.770430952,41.334608108],[-71.770382136,41.334659174],[-71.770315945,41.334684655],[-71.77023226,41.33471629],[-71.770162404,41.334743127],[-71.770090729,41.334765822],[-71.770043105,41.334735259],[-71.769979686,41.334753796],[-71.769906223,41.334759891],[-71.769830912,41.334764585],[-71.769811541,41.334800512],[-71.769811302,41.334861413],[-71.769786447,41.334874511],[-71.769708425,41.334872246],[-71.76963222,41.334867239],[-71.769554168,41.334877476],[-71.769485265,41.334895298],[-71.769435763,41.334882036],[-71.769469798,41.334851667],[-71.769536048,41.334812388],[-71.76960507,41.334775835],[-71.769674063,41.334733799],[-71.769744873,41.334696561],[-71.769825786,41.334661469],[-71.769913107,41.33463192],[-71.770002276,41.334609255],[-71.770068467,41.334578246],[-71.770111769,41.334534764],[-71.770174325,41.334505126],[-71.770245999,41.33448939],[-71.770321369,41.334459096],[-71.770356476,41.334401071],[-71.770398885,41.334353387],[-71.770475179,41.334330738],[-71.770555139,41.334308758],[-71.770610362,41.334265292],[-71.770689338,41.334262013],[-71.770761847,41.334261462],[-71.77084446,41.334261656],[-71.77091974,41.334261775],[-71.771011531,41.334259912],[-71.771095067,41.334271148],[-71.77117759,41.334292084],[-71.77124545,41.334320605],[-71.77131781,41.334362969],[-71.77136907,41.334401146],[-71.771419376,41.334443465],[-71.771475226,41.334485814],[-71.771525562,41.334531575],[-71.771586925,41.334566966],[-71.771644622,41.334600329],[-71.771706939,41.334629536],[-71.771784902,41.334642127],[-71.771851808,41.334675506],[-71.771920592,41.334695712],[-71.771994025,41.334700003],[-71.772080302,41.334703639],[-71.772158325,41.334704503],[-71.772236317,41.334710926],[-71.77231434,41.334713832],[-71.772386014,41.334700808],[-71.772457719,41.334668472],[-71.772528499,41.334650621],[-71.772619456,41.334632128],[-71.772694796,41.33461152],[-71.772756428,41.334581241],[-71.772807986,41.334534273],[-71.772868752,41.334494263],[-71.772930443,41.334448725],[-71.77297011,41.334392801],[-71.772996008,41.334339574],[-71.77302283,41.334283561],[-71.773018301,41.334270447],[-71.772999048,41.334260702],[-71.772999138,41.334237173],[-71.772995681,41.3341818],[-71.772991329,41.334120885],[-71.772992462,41.334062085],[-71.773017406,41.334010243],[-71.773082644,41.333995864],[-71.773137569,41.33403331],[-71.773188859,41.334074959],[-71.773234576,41.334120035],[-71.773239881,41.334176108],[-71.773245186,41.334230095],[-71.773267925,41.334288925],[-71.773314565,41.334332615],[-71.773360312,41.334374249],[-71.773415267,41.33441034],[-71.773469269,41.334453344],[-71.773531556,41.334494323],[-71.773581922,41.334519312],[-71.773622185,41.33456023],[-71.773750454,41.334628299],[-71.773715407,41.334670439],[-71.773824483,41.334716335],[-71.773861349,41.334678352],[-71.774037361,41.334751368],[-71.774035305,41.334808111],[-71.774101347,41.334820718],[-71.774182051,41.334829882],[-71.774208814,41.334802955],[-71.774280459,41.334785834],[-71.774348497,41.334767967],[-71.774422973,41.334738359],[-71.774497449,41.334703237],[-71.774533451,41.334647954],[-71.774547428,41.334589198],[-71.774566054,41.334523484],[-71.774543226,41.334492967],[-71.774465203,41.334485218],[-71.774380773,41.334479496],[-71.774314821,41.334444061],[-71.774283826,41.334383801],[-71.774259239,41.334327012],[-71.774242014,41.334269553],[-71.774231225,41.33420448],[-71.774224162,41.334133193],[-71.774215221,41.334072292],[-71.774222732,41.334014192],[-71.774231225,41.333954692],[-71.774241537,41.333896592],[-71.774256498,41.333830222],[-71.774273247,41.33376658],[-71.774301887,41.333716139],[-71.774367154,41.333690673],[-71.774449825,41.333677709],[-71.774534285,41.333677858],[-71.774602145,41.333698064],[-71.77466172,41.333728671],[-71.774711102,41.333779931],[-71.774732947,41.333831891],[-71.774742693,41.333857238],[-71.774754763,41.333888695],[-71.774772912,41.333944753],[-71.774784625,41.334000856],[-71.774812788,41.334088773],[-71.774850905,41.33419542],[-71.774883687,41.334266052],[-71.774942249,41.334326357],[-71.775007278,41.33436735],[-71.775039345,41.334378481],[-71.775054127,41.334350809],[-71.775274307,41.334456116],[-71.775401473,41.334527463],[-71.775557518,41.334561348],[-71.775691688,41.334611684],[-71.775865614,41.33466886],[-71.776011676,41.334755182],[-71.776046306,41.33484365],[-71.776178449,41.334911242],[-71.776355416,41.334929436],[-71.776500463,41.335003763],[-71.776542127,41.33506152],[-71.776561797,41.33518672],[-71.776669174,41.335208565],[-71.776815325,41.33522521],[-71.77684325,41.335201263],[-71.776847422,41.335075304],[-71.776830524,41.335052848],[-71.776668578,41.334970221],[-71.776665628,41.33495073],[-71.776743472,41.334818125],[-71.776769459,41.334738702],[-71.776774615,41.334628522],[-71.776806653,41.334512398],[-71.776813835,41.334396228],[-71.776863754,41.334268123],[-71.776885629,41.334262148],[-71.77709052,41.334257826],[-71.777145177,41.334276617],[-71.77726835,41.334347218],[-71.777289152,41.334404945],[-71.777216405,41.334486559],[-71.777152538,41.334599674],[-71.77703312,41.334663287],[-71.776925504,41.334772617],[-71.776895553,41.334858015],[-71.776892334,41.33498916],[-71.777032495,41.33500506],[-71.777155697,41.335059926],[-71.7773242,41.335149288],[-71.777435899,41.335208595],[-71.777580827,41.335350394],[-71.777580768,41.335393116],[-71.777578562,41.335519776],[-71.777575284,41.335690677],[-71.777638674,41.335830897],[-71.777740926,41.335941181],[-71.777820259,41.336060449],[-71.777894646,41.336169198],[-71.778071374,41.336340278],[-71.778119922,41.336446792],[-71.778210253,41.336526319],[-71.778247863,41.336633533],[-71.778214902,41.336730927],[-71.778212726,41.336830631],[-71.778096825,41.337136328],[-71.778094739,41.337195545],[-71.777989984,41.337386578],[-71.778061479,41.33744733],[-71.778095216,41.337494612],[-71.7781308,41.337607816],[-71.77822414,41.337692618],[-71.778376281,41.337723508],[-71.77848652,41.337780565],[-71.778498381,41.337847292],[-71.778481334,41.337923735],[-71.778594553,41.338006288],[-71.778722823,41.338035658],[-71.778722614,41.338133842],[-71.778645873,41.338228941],[-71.778631866,41.338272423],[-71.778633684,41.338390842],[-71.778610587,41.338507757],[-71.778519899,41.338605836],[-71.778508872,41.338663533],[-71.778473884,41.338778183],[-71.778470695,41.338892132],[-71.77853626,41.338919893],[-71.77860269,41.339030161],[-71.778629363,41.339148611],[-71.778632164,41.3392573],[-71.77869162,41.339363053],[-71.778740376,41.339353353],[-71.778877765,41.339271054],[-71.778880805,41.339229822],[-71.778900981,41.339096442],[-71.778911084,41.338981777],[-71.778996795,41.338889644],[-71.779021859,41.338780969],[-71.779022038,41.338661045],[-71.779053062,41.33855091],[-71.779104859,41.338518724],[-71.779140741,41.338478282],[-71.779160082,41.338215232],[-71.779161304,41.338096783],[-71.779164433,41.337976113],[-71.779257983,41.337945491],[-71.77941221,41.337891668],[-71.779384553,41.337794945],[-71.779329062,41.337688461],[-71.779341131,41.337615028],[-71.779373139,41.337508604],[-71.779365271,41.337456137],[-71.779351532,41.337343678],[-71.779374629,41.337217763],[-71.779374838,41.337097853],[-71.77937302,41.336978689],[-71.779395014,41.336907491],[-71.779500484,41.336897835],[-71.779705286,41.336917534],[-71.779722244,41.336894318],[-71.779765189,41.336785674],[-71.779753476,41.336674735],[-71.77981025,41.336595356],[-71.779895991,41.336497992],[-71.779922992,41.336404309],[-71.779944062,41.336291924],[-71.779960185,41.336174995],[-71.779830068,41.336093917],[-71.779784441,41.336024925],[-71.779782623,41.335915476],[-71.779840469,41.335836828],[-71.779900312,41.335720718],[-71.779913455,41.335606799],[-71.779914618,41.335494354],[-71.779914826,41.335367694],[-71.779914021,41.33525376],[-71.779937118,41.335134596],[-71.780045509,41.33513245],[-71.780075163,41.335229218],[-71.780070037,41.335345343],[-71.780053884,41.335475773],[-71.780045718,41.335591942],[-71.780009806,41.33565864],[-71.77999872,41.335742548],[-71.779922962,41.335842162],[-71.779898912,41.335964337],[-71.779913634,41.336073026],[-71.77998215,41.336119547],[-71.78012833,41.336142927],[-71.780135214,41.336178184],[-71.78014794,41.336303338],[-71.780239254,41.336403891],[-71.780313671,41.336502135],[-71.780484676,41.336505309],[-71.780639887,41.336488217],[-71.78070268,41.336412564],[-71.780718744,41.336307645],[-71.780818343,41.336217061],[-71.781005532,41.33608681],[-71.781071186,41.336077869],[-71.781219363,41.336075768],[-71.781387448,41.336072236],[-71.781475842,41.336131498],[-71.781535506,41.336139068],[-71.781646997,41.336088926],[-71.781736553,41.336047798],[-71.781819254,41.335957184],[-71.78186816,41.335850805],[-71.78184247,41.335739076],[-71.78190729,41.335640237],[-71.781941205,41.335572779],[-71.782008886,41.335552603],[-71.78221184,41.33551459],[-71.782303363,41.335474938],[-71.782492459,41.335397169],[-71.782634705,41.335371077],[-71.782776892,41.335392952],[-71.782839566,41.335369006],[-71.782974899,41.335312918],[-71.783148021,41.335283101],[-71.783284217,41.33529599],[-71.783475101,41.335345626],[-71.783551693,41.335327744],[-71.783685982,41.335279882],[-71.783829272,41.335253775],[-71.783967555,41.335216433],[-71.783974588,41.335159495],[-71.783914149,41.335045487],[-71.78379485,41.335002646],[-71.783672661,41.334928334],[-71.783682674,41.334880367],[-71.783736348,41.334903657],[-71.783879519,41.334938288],[-71.783974946,41.334949613],[-71.78413704,41.334955752],[-71.784248292,41.335025564],[-71.784323514,41.335136309],[-71.784323573,41.335150763],[-71.784312546,41.335273743],[-71.784190089,41.335357562],[-71.784180075,41.335414514],[-71.784222692,41.335482016],[-71.784325421,41.335578352],[-71.784333915,41.335586309],[-71.784350604,41.335707754],[-71.784326077,41.335729286],[-71.784244031,41.335801333],[-71.784226984,41.335871771],[-71.784243882,41.335895047],[-71.784326881,41.335913241],[-71.784394979,41.335928157],[-71.78449434,41.335986689],[-71.78459391,41.335929826],[-71.784639806,41.335830197],[-71.784656882,41.335717767],[-71.784716725,41.335608393],[-71.78475368,41.335503489],[-71.784840286,41.335479572],[-71.78493467,41.335523188],[-71.784956396,41.335606381],[-71.784952193,41.335733786],[-71.784951001,41.335849971],[-71.784956813,41.33597514],[-71.785091043,41.3359828],[-71.785126776,41.336031541],[-71.785087824,41.33612819],[-71.785042912,41.336212829],[-71.78504771,41.336337253],[-71.785045534,41.336449698],[-71.784977943,41.336423427],[-71.784947276,41.336322159],[-71.784901708,41.3362277],[-71.784876019,41.336124986],[-71.784851193,41.336089],[-71.784770787,41.335989997],[-71.784689277,41.335974887],[-71.784609675,41.336004794],[-71.784471303,41.336078137],[-71.784383625,41.336191997],[-71.784372568,41.33626394],[-71.784453928,41.336359203],[-71.784518391,41.336476207],[-71.784620821,41.336483777],[-71.784733087,41.336538583],[-71.784734964,41.336624056],[-71.784594655,41.336650148],[-71.784556925,41.336626112],[-71.784551829,41.336713105],[-71.784509957,41.336770013],[-71.784476966,41.336875647],[-71.784492671,41.336978346],[-71.78455025,41.337048143],[-71.784650564,41.337136656],[-71.784638554,41.337192878],[-71.784539938,41.337276712],[-71.78460142,41.337384716],[-71.784520775,41.337456569],[-71.784513593,41.337578788],[-71.784539402,41.337599054],[-71.784675539,41.337687597],[-71.784692198,41.337821022],[-71.784747899,41.337824091],[-71.784878105,41.337865412],[-71.785020232,41.337912783],[-71.785158306,41.338008851],[-71.78524369,41.338095859],[-71.785313159,41.338197857],[-71.785431385,41.338273704],[-71.785560548,41.338352516],[-71.785701632,41.338433608],[-71.785755247,41.33848612],[-71.785845667,41.338528916],[-71.786042452,41.338612318],[-71.786089182,41.338615328],[-71.786228478,41.338565245],[-71.786365867,41.338503927],[-71.786453485,41.338423803],[-71.786466509,41.338375092],[-71.78648743,41.338345885],[-71.786544174,41.338324219],[-71.786695331,41.338321313],[-71.786748111,41.338274181],[-71.786836803,41.338174582],[-71.786839932,41.338062122],[-71.786840141,41.337945938],[-71.786841333,41.337835014],[-71.786710113,41.337779418],[-71.786601841,41.337703615],[-71.786612868,41.337657914],[-71.786650687,41.337648958],[-71.786657661,41.337631717],[-71.786543399,41.337564901],[-71.786435962,41.337582037],[-71.786301643,41.337595418],[-71.786261916,41.337591618],[-71.786166608,41.337503076],[-71.786118954,41.337428108],[-71.786066353,41.337374091],[-71.786051542,41.337289393],[-71.786050737,41.337174699],[-71.786033064,41.337058514],[-71.786059022,41.336987317],[-71.786096752,41.337025583],[-71.786184102,41.337111831],[-71.786310345,41.337149441],[-71.786438555,41.337208763],[-71.78650701,41.337308511],[-71.78653267,41.337439731],[-71.786558479,41.337454766],[-71.786736399,41.337517098],[-71.786812007,41.337499946],[-71.786866844,41.337443009],[-71.786931545,41.337382361],[-71.787042946,41.337377965],[-71.787203044,41.337375119],[-71.787339449,41.33729054],[-71.787431061,41.337203681],[-71.787492871,41.337116078],[-71.787561685,41.336999953],[-71.787570834,41.336889759],[-71.787550986,41.336837277],[-71.787521273,41.336769804],[-71.787501425,41.336731523],[-71.787473738,41.3366483],[-71.787530452,41.33663711],[-71.78759706,41.336638659],[-71.787623942,41.336634204],[-71.787594289,41.33652553],[-71.787547618,41.336475238],[-71.787409455,41.336437613],[-71.787293047,41.336441293],[-71.787246197,41.336504191],[-71.787314683,41.336603209],[-71.787332445,41.336696908],[-71.787281662,41.336723849],[-71.78706485,41.336740896],[-71.786902308,41.336381704],[-71.786883652,41.336267039],[-71.786804169,41.336198717],[-71.786819249,41.336087823],[-71.786870152,41.335984439],[-71.786916077,41.335880309],[-71.786940038,41.335802317],[-71.78683877,41.335708559],[-71.786871761,41.335602909],[-71.786933541,41.335538507],[-71.787044078,41.335433662],[-71.787200242,41.335433826],[-71.787336797,41.335217312],[-71.78749451,41.334856182],[-71.787570238,41.334759563],[-71.787594318,41.334639668],[-71.787599504,41.334503233],[-71.787639469,41.334384128],[-71.787690401,41.334251493],[-71.78778401,41.334163874],[-71.787892491,41.334117487],[-71.788021833,41.33407037],[-71.788143158,41.334066004],[-71.788254529,41.334089354],[-71.78836295,41.334069952],[-71.788538039,41.334011629],[-71.78869617,41.333993047],[-71.788870245,41.333975971],[-71.789012492,41.333950609],[-71.789107084,41.333886981],[-71.789125115,41.333803043],[-71.789050549,41.333783492],[-71.788989961,41.333737701],[-71.788920462,41.333679184],[-71.788876653,41.33369115],[-71.788718551,41.333697736],[-71.788628012,41.333709657],[-71.788547546,41.333673611],[-71.788412392,41.333604559],[-71.788284272,41.333510712],[-71.788144082,41.333509102],[-71.787975013,41.333509713],[-71.787806958,41.3335163],[-71.78764084,41.333532661],[-71.787490666,41.333536252],[-71.787336528,41.333532363],[-71.787114799,41.333512649],[-71.786999553,41.333445087],[-71.786851406,41.333443463],[-71.786731005,41.33346732],[-71.786616564,41.333542183],[-71.786517948,41.333628267],[-71.78643626,41.333723411],[-71.786322773,41.33379674],[-71.78618443,41.333857343],[-71.786088824,41.333948702],[-71.786021233,41.333925381],[-71.786015391,41.333863944],[-71.786147684,41.333840072],[-71.786155701,41.333778605],[-71.786141843,41.333746389],[-71.785991758,41.333718494],[-71.785914212,41.333692178],[-71.785871536,41.333655402],[-71.785844862,41.333546743],[-71.785892695,41.333485276],[-71.785935551,41.333426848],[-71.785948545,41.333387136],[-71.785989523,41.333253771],[-71.786067158,41.333199874],[-71.786089092,41.333166212],[-71.786093295,41.333032012],[-71.786084533,41.332920328],[-71.786068797,41.332810134],[-71.785965532,41.332724586],[-71.785954714,41.332644373],[-71.786008477,41.332598686],[-71.786060363,41.332506552],[-71.786197573,41.332502186],[-71.786311865,41.332548007],[-71.786417127,41.332646295],[-71.786609918,41.332720667],[-71.786729127,41.332797244],[-71.787082136,41.332825318],[-71.787286967,41.332824737],[-71.787499756,41.332824916],[-71.7876122,41.332773313],[-71.787665069,41.332690895],[-71.78774181,41.332570314],[-71.787773848,41.332451895],[-71.787801772,41.332399473],[-71.78795898,41.332332134],[-71.787994921,41.332234755],[-71.788018852,41.332209289],[-71.788199842,41.332183197],[-71.788257688,41.332106829],[-71.788426816,41.332034245],[-71.788582116,41.331954926],[-71.788628906,41.331895784],[-71.788765192,41.331862167],[-71.78888157,41.331860036],[-71.789022744,41.331899166],[-71.789183706,41.331959978],[-71.789349735,41.331990138],[-71.789538592,41.332052499],[-71.789583266,41.33209902],[-71.789702415,41.332183823],[-71.789818645,41.332263365],[-71.789868236,41.332336113],[-71.789919823,41.332441837],[-71.790002257,41.332492128],[-71.790207058,41.332540289],[-71.790326357,41.332558379],[-71.790481478,41.332561523],[-71.790635616,41.332562402],[-71.790818542,41.332562581],[-71.790963769,41.33255896],[-71.791167676,41.332526132],[-71.791218519,41.332449719],[-71.791282266,41.332393602],[-71.791399688,41.332351729],[-71.791533977,41.332302347],[-71.791643411,41.33228597],[-71.791813433,41.33228536],[-71.791962594,41.332285509],[-71.792113781,41.332278118],[-71.792184353,41.332284927],[-71.792328566,41.332289562],[-71.792474747,41.332288936],[-71.792548209,41.332363218],[-71.792609692,41.332469687],[-71.792723864,41.332591221],[-71.792880923,41.332628846],[-71.793023139,41.33261919],[-71.793071002,41.332537577],[-71.793198347,41.332500964],[-71.793390274,41.332495093],[-71.793539405,41.332524478],[-71.793670565,41.332580805],[-71.79374209,41.332637101],[-71.793790817,41.332643107],[-71.793978751,41.332655296],[-71.794050366,41.3326426],[-71.794192642,41.332589492],[-71.794341862,41.33255437],[-71.794519842,41.332547784],[-71.794675976,41.332574904],[-71.794824153,41.332542777],[-71.794994295,41.332500964],[-71.795143425,41.332500339],[-71.795250356,41.33249478],[-71.795312524,41.332491487],[-71.795460701,41.332475871],[-71.795619905,41.332404062],[-71.795813888,41.332343504],[-71.795960516,41.332283393],[-71.795919627,41.332300425],[-71.79591462,41.333931431],[-71.79602161,41.334420428],[-71.796120614,41.33478643],[-71.796227634,41.335217431],[-71.796364605,41.335614428],[-71.796745628,41.336579427],[-71.795952618,41.336743429],[-71.795181632,41.33689943],[-71.794235617,41.337094426],[-71.794136614,41.33711344],[-71.79354161,41.337235436],[-71.793265611,41.337286428],[-71.79265663,41.337399438],[-71.791611612,41.33760944],[-71.790932626,41.337742433],[-71.791016608,41.338101432],[-71.791107625,41.338375434],[-71.791145623,41.338517427],[-71.791229606,41.338654429],[-71.791397631,41.338784426],[-71.791687608,41.338910431],[-71.79174763,41.338926435],[-71.79225263,41.339062437],[-71.792412609,41.339123428],[-71.792503625,41.339192435],[-71.792572618,41.339310437],[-71.792839617,41.340027437],[-71.792999625,41.340519428],[-71.793373615,41.341576427],[-71.793465614,41.341763437],[-71.793564618,41.341931432],[-71.793701619,41.342106432],[-71.793854624,41.342278436],[-71.794044614,41.342446432],[-71.794357628,41.342690438],[-71.795067608,41.343174428],[-71.796417624,41.344139442],[-71.79619661,41.344315439],[-71.795898616,41.344563439],[-71.795547634,41.344841436],[-71.795387626,41.344956428],[-71.795242608,41.345044434],[-71.795074612,41.345116436],[-71.794823617,41.345189437],[-71.794418633,41.34527643],[-71.794106632,41.345353439],[-71.793831617,41.345379442],[-71.793587625,41.345375434],[-71.793320626,41.345349431],[-71.799590617,41.349702433],[-71.794996619,41.353077441],[-71.794997633,41.35307844],[-71.795354635,41.35317944],[-71.79580462,41.353308439],[-71.797077626,41.353652433],[-71.797710627,41.353825435],[-71.798810631,41.354133442],[-71.79968062,41.35436143],[-71.800343633,41.354553431],[-71.800771624,41.354670435],[-71.801056623,41.354748443],[-71.801546633,41.354887441],[-71.801743627,41.354943439],[-71.802361637,41.355103433],[-71.802614629,41.355183437],[-71.802795619,41.355240434],[-71.802958637,41.355306432],[-71.803285629,41.355435431],[-71.803899616,41.355674431],[-71.804527611,41.355935439],[-71.805580616,41.356377438],[-71.805984616,41.356526434],[-71.807228625,41.357029438],[-71.807616621,41.357192442],[-71.807533622,41.35728544],[-71.807475626,41.357318431],[-71.807425618,41.357361436],[-71.807350636,41.357491434],[-71.807251632,41.357697442],[-71.80717364,41.358040437],[-71.807091624,41.358391434],[-71.806961626,41.358757436],[-71.80688563,41.358925432],[-71.80677864,41.359120443],[-71.806633621,41.359322444],[-71.806374639,41.359711438],[-71.806160629,41.359997436],[-71.805977613,41.360287443],[-71.805779636,41.360615432],[-71.805626631,41.360890433],[-71.805496633,41.361164436],[-71.805367619,41.361481443],[-71.805153638,41.362088442],[-71.772834629,41.361574441],[-71.7726776,41.360778436],[-71.772620618,41.360488445],[-71.772423625,41.359482437],[-71.772369623,41.359158441],[-71.772316605,41.358944431],[-71.772255599,41.358784437],[-71.772179604,41.358612433],[-71.772095621,41.358441442],[-71.772011608,41.358296439],[-71.771942616,41.358200431],[-71.77186662,41.358082443],[-71.771484613,41.357697442],[-71.771591604,41.357590437],[-71.771622628,41.357510433],[-71.771614611,41.357476443],[-71.771614611,41.357430443],[-71.771408617,41.356903434],[-71.771240622,41.356511444],[-71.771523625,41.356465444],[-71.771983624,41.356379434],[-71.772094607,41.356359437],[-71.77227062,41.356324434],[-71.772450626,41.356277436],[-71.772529602,41.356239438],[-71.772578627,41.356211439],[-71.772635609,41.356172442],[-71.772713602,41.356114432],[-71.772789627,41.356053442],[-71.772881627,41.355931431],[-71.772926629,41.355820432],[-71.772957623,41.355690435],[-71.772957623,41.355545431],[-71.772926629,41.35540843],[-71.772850603,41.355267435],[-71.772720605,41.355103433],[-71.7726596,41.354954436],[-71.772621602,41.354798436],[-71.772636622,41.354695439],[-71.772644609,41.354454443],[-71.772621602,41.354325444],[-71.772568613,41.354195431],[-71.772484601,41.354081437],[-71.772369623,41.35396643],[-71.772209615,41.353878438],[-71.772034615,41.35381043],[-71.771835625,41.35376443],[-71.771660626,41.353753433],[-71.771469623,41.35376443],[-71.771294624,41.353802443],[-71.771133602,41.353856444],[-71.771004617,41.353924438],[-71.770905614,41.354016438],[-71.770828605,41.354111433],[-71.77078262,41.354210436],[-71.770767599,41.354321435],[-71.770767599,41.354445443],[-71.770767599,41.35461843],[-71.770760626,41.354752436],[-71.770679623,41.355036438],[-71.768937618,41.354807436],[-71.768913627,41.354706436],[-71.768906623,41.354695439],[-71.768814623,41.354195431],[-71.768784612,41.353970438],[-71.768661618,41.353165433],[-71.768478602,41.351910442],[-71.768410623,41.351578429],[-71.768402606,41.35145244],[-71.767734617,41.351535439],[-71.767174602,41.351593435],[-71.76634261,41.351670444],[-71.765945613,41.351689443],[-71.76556462,41.351715431],[-71.765099615,41.351727441],[-71.764530599,41.351736441],[-71.764198601,41.351742432],[-71.763519615,41.351731434],[-71.762627602,41.351693437],[-71.762054622,41.35165444],[-71.762002617,41.351649433],[-71.761249602,41.351579443],[-71.760508597,41.351497442],[-71.7573466,41.351122439],[-71.755695611,41.350931436],[-71.754524618,41.350796431],[-71.752849609,41.350600436],[-71.752323598,41.350537434],[-71.752146602,41.350511432],[-71.751938611,41.350480437],[-71.751456618,41.350387439],[-71.751354605,41.350366443],[-71.751255602,41.350343436],[-71.751122594,41.350312442],[-71.750931621,41.350254431],[-71.750732601,41.350205436],[-71.750672609,41.350184441],[-71.750532597,41.350137442],[-71.750370592,41.350088432],[-71.750021607,41.349963441],[-71.749411613,41.349758431],[-71.749086618,41.349646434],[-71.748281598,41.349360436],[-71.747740597,41.34917143],[-71.747185618,41.348980442],[-71.746490598,41.348732442],[-71.744797617,41.348141432],[-71.744560599,41.34805344],[-71.74427861,41.347959444],[-71.744194597,41.34793143],[-71.744011611,41.347874433],[-71.743805617,41.347824439],[-71.743614614,41.347798437],[-71.743423611,41.347786441],[-71.743164599,41.347786441],[-71.742981613,41.34780544],[-71.742821604,41.347832441],[-71.742638618,41.347878441],[-71.742584616,41.34789744],[-71.742010593,41.348113433],[-71.7416116,41.34827444],[-71.741319597,41.348404437],[-71.740776598,41.348662436],[-71.739836603,41.349121436],[-71.739662617,41.349204436],[-71.738922596,41.349564433],[-71.738781601,41.349634439],[-71.738603592,41.349719435],[-71.738345593,41.349837437],[-71.738176614,41.349911436],[-71.738016605,41.349976435],[-71.737889588,41.350023434],[-71.737711608,41.350087434],[-71.737404615,41.350187436],[-71.737077594,41.350271434],[-71.73688361,41.350319445],[-71.73658061,41.350384444],[-71.736092597,41.350476444],[-71.735725611,41.350544438],[-71.734859616,41.350716442],[-71.733579606,41.350968435],[-71.731551588,41.351377442],[-71.730452597,41.351598442],[-71.729958594,41.351696432],[-71.729919612,41.35159044],[-71.729881585,41.351448432],[-71.729836613,41.351353437],[-71.729805589,41.351319432],[-71.729777604,41.351292431],[-71.7297526,41.350136444],[-71.729722589,41.349395439],[-71.729738593,41.348853439],[-71.729709595,41.347997442],[-71.7296606,41.347023442],[-71.729614586,41.345513433],[-71.729595602,41.344968438],[-71.729571611,41.344497442],[-71.729571551,41.344496354],[-71.729577214,41.344434068],[-71.729592562,41.34441562],[-71.729594707,41.344413012],[-71.729616851,41.344386399],[-71.729630679,41.3443809],[-71.729648352,41.344327673],[-71.729652286,41.344270259],[-71.729697496,41.344221935],[-71.729758233,41.344193041],[-71.729842752,41.344170436],[-71.729838401,41.344152123],[-71.729828358,41.344110176],[-71.729804575,41.34408313],[-71.729753196,41.344076067],[-71.729715616,41.344068363],[-71.729664236,41.344059229],[-71.729600906,41.344059765],[-71.729582787,41.344061181],[-71.7295506,41.344063684],[-71.7295506,41.344063431],[-71.729572594,41.343680441],[-71.729565591,41.343419433],[-71.729565591,41.343418524],[-71.729570895,41.343413144],[-71.729643524,41.343339607],[-71.729714572,41.343258828],[-71.729754359,41.343188331],[-71.729787648,41.343136519],[-71.729871511,41.343063399],[-71.729965448,41.343006879],[-71.730036288,41.342972457],[-71.730087042,41.342910334],[-71.730147809,41.342866898],[-71.730249017,41.342824921],[-71.730324447,41.342793286],[-71.730367571,41.342794776],[-71.730406076,41.342809424],[-71.730436414,41.342797011],[-71.730465025,41.342772871],[-71.730488032,41.34275423],[-71.730564177,41.342768282],[-71.730576932,41.342794612],[-71.730622768,41.342805788],[-71.730655819,41.34281002],[-71.730701774,41.342803925],[-71.730734736,41.342817143],[-71.730805397,41.342821479],[-71.730884343,41.342827916],[-71.730966955,41.34283644],[-71.731019408,41.342807487],[-71.73106733,41.342766777],[-71.731113315,41.342739239],[-71.731113464,41.342708781],[-71.731122792,41.342680424],[-71.731155902,41.342669442],[-71.731175244,41.342659816],[-71.731212169,41.342614904],[-71.731256396,41.342572108],[-71.731274039,41.342517525],[-71.731300801,41.342489898],[-71.731323093,41.342436671],[-71.731326938,41.342400715],[-71.731355488,41.34237726],[-71.73136571,41.342350304],[-71.731374145,41.342312247],[-71.73138994,41.34226869],[-71.731417656,41.342232794],[-71.731450766,41.342219725],[-71.731494069,41.342179015],[-71.731503367,41.342152745],[-71.731456697,41.34211871],[-71.731451213,41.342106253],[-71.731466025,41.342082739],[-71.731496543,41.342037171],[-71.731507689,41.342008829],[-71.731552809,41.341981277],[-71.731584996,41.341966823],[-71.731606126,41.341964781],[-71.731651932,41.341980115],[-71.731676638,41.342009246],[-71.73170054,41.341993392],[-71.731735587,41.341955394],[-71.731755942,41.341926411],[-71.731726646,41.341902137],[-71.731735915,41.341880709],[-71.731746972,41.341873109],[-71.731767178,41.34187524],[-71.731787324,41.341884971],[-71.731796533,41.341881543],[-71.731814027,41.341863602],[-71.731849968,41.341842234],[-71.731837183,41.341821447],[-71.731807023,41.341797844],[-71.731808871,41.341789529],[-71.731841236,41.34173426],[-71.731866062,41.341725335],[-71.731918305,41.341746226],[-71.731953144,41.341757387],[-71.731963277,41.341748416],[-71.731970727,41.341724232],[-71.731971741,41.341700673],[-71.731980175,41.341668174],[-71.732001364,41.341649547],[-71.732034534,41.341626793],[-71.732054919,41.341583252],[-71.732081831,41.341509968],[-71.732109666,41.341442272],[-71.732117176,41.341407001],[-71.732121885,41.34138],[-71.732143253,41.34132193],[-71.732159108,41.341266617],[-71.732186913,41.341209933],[-71.732220173,41.34115535],[-71.732258976,41.341104954],[-71.732286751,41.341045529],[-71.732278705,41.341003984],[-71.732262403,41.340947926],[-71.73225525,41.340910539],[-71.732254475,41.340873852],[-71.732266545,41.340846866],[-71.732294261,41.340798512],[-71.732305437,41.340768114],[-71.732286304,41.340730697],[-71.732311338,41.340676785],[-71.732321739,41.340607598],[-71.732299894,41.340566039],[-71.73229447,41.340546638],[-71.732294589,41.340521723],[-71.732299477,41.340451896],[-71.732302368,41.340417281],[-71.732288778,41.340375736],[-71.73228994,41.340321764],[-71.732293785,41.340287864],[-71.732274503,41.340284348],[-71.732267141,41.340285718],[-71.732240498,41.340292588],[-71.732228547,41.340294614],[-71.732201934,41.340292498],[-71.732179046,41.340275139],[-71.732168168,41.34024258],[-71.732171088,41.340210795],[-71.7321904,41.340191454],[-71.73222816,41.340166643],[-71.7322357,41.340125129],[-71.732237667,41.340092614],[-71.732239664,41.340062186],[-71.73224175,41.340001971],[-71.732219011,41.339953497],[-71.732200831,41.339917466],[-71.732189983,41.339868292],[-71.732188344,41.339824706],[-71.732170194,41.339783162],[-71.73216027,41.339741632],[-71.732144862,41.339700744],[-71.732130349,41.339657843],[-71.732119501,41.33961904],[-71.73211506,41.33958444],[-71.732107937,41.339531854],[-71.732101589,41.339511767],[-71.732074112,41.33950752],[-71.732061327,41.339488789],[-71.732057691,41.339469448],[-71.732037574,41.339445844],[-71.732024014,41.339407101],[-71.732037932,41.339370444],[-71.732041776,41.339328915],[-71.732046574,41.339280501],[-71.732048631,41.339239687],[-71.732049674,41.339204401],[-71.732065588,41.339141473],[-71.732083231,41.339095861],[-71.732091695,41.33905229],[-71.732083559,41.339012831],[-71.732071757,41.338979587],[-71.732048988,41.338948414],[-71.732019663,41.338941395],[-71.731986672,41.33892262],[-71.731961071,41.338896275],[-71.731947452,41.338867187],[-71.731949389,41.338842288],[-71.731963277,41.338806331],[-71.73198548,41.338771105],[-71.732002974,41.338757992],[-71.732012212,41.33873865],[-71.732013285,41.338711649],[-71.732025295,41.338695079],[-71.732019871,41.338676378],[-71.732015342,41.338659093],[-71.732025564,41.338634193],[-71.732032984,41.338618994],[-71.732044905,41.338616937],[-71.732091725,41.338623971],[-71.732144117,41.338611647],[-71.732192904,41.338568881],[-71.732221574,41.338519126],[-71.732220054,41.338453397],[-71.732207447,41.338399395],[-71.732215852,41.338366911],[-71.73225832,41.338311642],[-71.732296169,41.338260531],[-71.732324839,41.338211462],[-71.732337803,41.338185892],[-71.732358068,41.338173494],[-71.73237735,41.338173524],[-71.732401282,41.338157684],[-71.732424378,41.338129371],[-71.732442826,41.338108644],[-71.732473224,41.338086605],[-71.732486188,41.338058278],[-71.732483655,41.338013291],[-71.732477367,41.337971091],[-71.732496798,41.337938592],[-71.732534587,41.337907568],[-71.732604384,41.337897345],[-71.732675254,41.337867767],[-71.732735991,41.33782433],[-71.732771963,41.337799892],[-71.732805014,41.337776661],[-71.732787758,41.337742805],[-71.732929438,41.337674633],[-71.732974589,41.337711528],[-71.73297888,41.337710083],[-71.732986033,41.337705061],[-71.732994527,41.337699026],[-71.73301208,41.337667957],[-71.733031511,41.337633401],[-71.733049095,41.337609217],[-71.733067572,41.337579489],[-71.7330769,41.337545618],[-71.733097196,41.337522849],[-71.733144999,41.337511182],[-71.733179897,41.3375016],[-71.733193815,41.337469801],[-71.733204156,41.337412417],[-71.733206183,41.337371588],[-71.73322016,41.33732456],[-71.733247876,41.337286562],[-71.733279318,41.337231979],[-71.733288676,41.337191179],[-71.733288914,41.337142736],[-71.733281761,41.337093651],[-71.733293891,41.337047979],[-71.733286679,41.337011993],[-71.733279586,41.336955905],[-71.733281672,41.336901233],[-71.733243316,41.336857572],[-71.733205795,41.33682707],[-71.733182043,41.336802065],[-71.733199626,41.336766839],[-71.733247638,41.3367033],[-71.733292967,41.336631432],[-71.733334482,41.336574793],[-71.733382314,41.336558983],[-71.733436435,41.336570904],[-71.733461171,41.336577207],[-71.733475,41.336566851],[-71.733517438,41.336523354],[-71.733533084,41.336510941],[-71.733546972,41.336479127],[-71.733602256,41.336437076],[-71.733640015,41.336403951],[-71.733682513,41.336351514],[-71.733746022,41.336306661],[-71.733795643,41.336299837],[-71.733850777,41.336284772],[-71.733892202,41.336256489],[-71.733944714,41.336217895],[-71.733983397,41.336194485],[-71.734029323,41.336184189],[-71.734071553,41.336183608],[-71.734091759,41.336182252],[-71.734093845,41.336124852],[-71.734147996,41.336120158],[-71.734141111,41.336023271],[-71.734206319,41.336016491],[-71.734241664,41.336119652],[-71.734345406,41.33611992],[-71.734353513,41.33616215],[-71.73436448,41.336163566],[-71.734394819,41.336165041],[-71.734448016,41.336169988],[-71.734514982,41.336176395],[-71.734612286,41.336176619],[-71.734695017,41.336164385],[-71.734814554,41.33611764],[-71.734866083,41.336085215],[-71.734925896,41.336048052],[-71.735006005,41.336001158],[-71.735087007,41.335954309],[-71.735153228,41.335915715],[-71.735248625,41.335936025],[-71.735332996,41.335962519],[-71.735366046,41.335959122],[-71.735437751,41.335943416],[-71.735475421,41.335933805],[-71.735596627,41.335915416],[-71.735678375,41.335913539],[-71.73583439,41.335924998],[-71.735905886,41.335945249],[-71.735973924,41.335921183],[-71.736013532,41.33589153],[-71.736059606,41.335851505],[-71.736118525,41.335816368],[-71.736165434,41.335789502],[-71.736184955,41.335743904],[-71.736197978,41.335701004],[-71.736204565,41.335665748],[-71.736212969,41.335629761],[-71.736248106,41.335573837],[-71.736294299,41.33550404],[-71.736341447,41.335428745],[-71.736406028,41.335354164],[-71.736479849,41.335269257],[-71.736533344,41.335209176],[-71.736578465,41.335177481],[-71.736623526,41.33515957],[-71.736693323,41.335148692],[-71.736773223,41.335149556],[-71.736845553,41.335185736],[-71.736894965,41.335222527],[-71.736936092,41.335268289],[-71.736959726,41.335319549],[-71.736970544,41.335371479],[-71.736985862,41.335439324],[-71.736995578,41.335525125],[-71.736987114,41.335579798],[-71.736967593,41.335634381],[-71.736965507,41.335687652],[-71.736959726,41.33575134],[-71.736939251,41.335822508],[-71.736950845,41.335903496],[-71.736947775,41.335967168],[-71.736931801,41.33605361],[-71.736913115,41.336134523],[-71.736880422,41.336260378],[-71.73688224,41.336270064],[-71.736887634,41.336297065],[-71.736891121,41.33633928],[-71.736889988,41.336386323],[-71.736915529,41.336427182],[-71.736950278,41.336461186],[-71.737002492,41.336484164],[-71.737058371,41.336512655],[-71.737096697,41.33656466],[-71.737087309,41.33661446],[-71.73705855,41.3366808],[-71.737018824,41.336740896],[-71.736968219,41.336766407],[-71.736884594,41.336789012],[-71.736822933,41.336824134],[-71.736786902,41.336876661],[-71.73674807,41.336940229],[-71.73670736,41.33701624],[-71.7366952,41.337067425],[-71.736665606,41.337118506],[-71.736660838,41.337160021],[-71.736650497,41.337214664],[-71.736663193,41.337245151],[-71.736668587,41.337280452],[-71.736667544,41.337304667],[-71.736634463,41.33730945],[-71.736643404,41.337364823],[-71.736646086,41.337386265],[-71.736676365,41.337386325],[-71.736722261,41.337390572],[-71.736726642,41.337436944],[-71.736726433,41.33748056],[-71.736700654,41.337508857],[-71.736690432,41.337535828],[-71.736693919,41.337579429],[-71.736711979,41.337644503],[-71.736730129,41.337695077],[-71.736762851,41.33776781],[-71.73678562,41.337816983],[-71.736785382,41.337870985],[-71.736788869,41.337911069],[-71.736816168,41.337968573],[-71.736846238,41.338017091],[-71.736901134,41.338060126],[-71.736939579,41.338096216],[-71.736977041,41.338135719],[-71.736992478,41.338175192],[-71.737021655,41.338220969],[-71.737045348,41.338262513],[-71.737091124,41.338289633],[-71.737135142,41.338302881],[-71.737192005,41.3383203],[-71.737250775,41.338315591],[-71.737320542,41.338321999],[-71.737381041,41.338336706],[-71.737435073,41.338366568],[-71.737469941,41.338365957],[-71.737520546,41.338343278],[-71.737600625,41.33829847],[-71.737666041,41.338238433],[-71.737710208,41.338218465],[-71.737755209,41.338213041],[-71.737788379,41.33818683],[-71.737870336,41.338133767],[-71.737943113,41.338082016],[-71.738021404,41.338014439],[-71.738071978,41.337995186],[-71.73812151,41.338003591],[-71.738171995,41.338013411],[-71.738214105,41.338032171],[-71.738234222,41.338058531],[-71.738280714,41.33813335],[-71.73831439,41.338197798],[-71.738348931,41.338281602],[-71.738351434,41.338339731],[-71.738386154,41.338382691],[-71.738419056,41.338416681],[-71.738467574,41.338444486],[-71.738529921,41.338466078],[-71.738597631,41.338518843],[-71.738625944,41.338558346],[-71.738676339,41.338579923],[-71.73869276,41.338606954],[-71.738694221,41.338692069],[-71.738696694,41.338749498],[-71.738702893,41.338807642],[-71.738711149,41.338809013],[-71.738732398,41.338782117],[-71.738774925,41.338708878],[-71.738797158,41.338657707],[-71.738824964,41.338596195],[-71.738856554,41.338511854],[-71.738881588,41.338450357],[-71.738904923,41.338369459],[-71.738907039,41.338298872],[-71.738920957,41.338262245],[-71.738969773,41.338222906],[-71.738992035,41.338174552],[-71.739009678,41.338125437],[-71.739040345,41.338040411],[-71.739072591,41.338011429],[-71.739089131,41.338003188],[-71.739099413,41.337967217],[-71.73911047,41.337958962],[-71.739142627,41.337956235],[-71.739165545,41.337958381],[-71.739170223,41.337937638],[-71.739180565,41.337885082],[-71.739191741,41.337847039],[-71.739192873,41.33779794],[-71.739189446,41.337741151],[-71.73918882,41.33766298],[-71.739203781,41.337604195],[-71.739249021,41.3375462],[-71.739297867,41.337501362],[-71.739366084,41.337437138],[-71.739404768,41.337405428],[-71.739456356,41.337361932],[-71.739513427,41.337330937],[-71.739551991,41.337331027],[-71.739629924,41.337350622],[-71.739694178,41.337351441],[-71.739773273,41.337316349],[-71.739863515,41.337252915],[-71.739918768,41.337216362],[-71.739994943,41.337226957],[-71.740062803,41.337241635],[-71.740141004,41.337198257],[-71.740196288,41.337158233],[-71.740253389,41.33710371],[-71.740334421,41.337051988],[-71.740407974,41.337022424],[-71.740479767,41.336985961],[-71.740512908,41.336963862],[-71.740571767,41.336930126],[-71.740664661,41.336892962],[-71.740742803,41.336867556],[-71.740779668,41.336834431],[-71.74081111,41.336780533],[-71.740831524,41.336731449],[-71.740863889,41.336676881],[-71.740908056,41.336652771],[-71.740919918,41.336647198],[-71.740940273,41.336637616],[-71.740962386,41.336616233],[-71.740991801,41.336603135],[-71.741041362,41.336611584],[-71.741104811,41.336578488],[-71.741181195,41.336543381],[-71.741285056,41.33651112],[-71.741402626,41.336495489],[-71.741536796,41.336464673],[-71.741643429,41.336423412],[-71.741692305,41.336375788],[-71.741758704,41.336312279],[-71.74182862,41.336273715],[-71.741915971,41.336236537],[-71.742000759,41.336164087],[-71.74209559,41.336099997],[-71.742236227,41.336051211],[-71.742318988,41.336024389],[-71.74236691,41.33598575],[-71.74241668,41.335928455],[-71.74246645,41.335889176],[-71.742524296,41.335880265],[-71.742577702,41.335852757],[-71.742643118,41.335791349],[-71.742670834,41.33574228],[-71.742687613,41.335680038],[-71.742693484,41.335601851],[-71.742701948,41.335554808],[-71.742730647,41.335503697],[-71.742747396,41.335446298],[-71.742772371,41.335398614],[-71.742797375,41.335345402],[-71.742805839,41.335296288],[-71.742826402,41.335215375],[-71.742854208,41.335149705],[-71.742895812,41.335082695],[-71.742934585,41.335023314],[-71.74297896,41.334952816],[-71.743017763,41.334898233],[-71.743049175,41.33485055],[-71.743052036,41.334816679],[-71.74303934,41.334786877],[-71.743048608,41.334762022],[-71.743080705,41.334766209],[-71.74310264,41.334790498],[-71.743111879,41.334783599],[-71.743122905,41.334774628],[-71.743144095,41.334759459],[-71.743186504,41.334718749],[-71.743213266,41.33468695],[-71.743239105,41.33465451],[-71.743263096,41.33462967],[-71.743296176,41.33460623],[-71.743370712,41.334568337],[-71.743418634,41.334532484],[-71.743471235,41.334466159],[-71.743502736,41.334400505],[-71.743513942,41.334346548],[-71.743521571,41.334279463],[-71.743541181,41.334203422],[-71.743587524,41.33410114],[-71.743638396,41.334005743],[-71.743688345,41.333918005],[-71.74370867,41.333881363],[-71.743732572,41.333879322],[-71.743781239,41.333879471],[-71.74385649,41.333879635],[-71.743918926,41.333879769],[-71.743973106,41.333871618],[-71.744017333,41.333837122],[-71.74404785,41.333788067],[-71.744075626,41.33372727],[-71.744106203,41.333654672],[-71.744130403,41.333580002],[-71.744145334,41.333525375],[-71.744135439,41.333474144],[-71.744119972,41.333433971],[-71.744134754,41.333415315],[-71.744167805,41.333413348],[-71.744220257,41.333382294],[-71.744290262,41.333325058],[-71.7443299,41.333293349],[-71.744364798,41.333283737],[-71.744420826,41.333283842],[-71.74448964,41.333286762],[-71.74460879,41.333329275],[-71.74466002,41.333368853],[-71.744705766,41.333416685],[-71.744753182,41.333490148],[-71.744784981,41.333562866],[-71.74479574,41.333627269],[-71.744805664,41.333677754],[-71.744811773,41.333755299],[-71.744811416,41.333832785],[-71.744822055,41.33392483],[-71.744832754,41.333996803],[-71.744840801,41.334051505],[-71.744866163,41.334132522],[-71.74488163,41.334158853],[-71.744872391,41.334177524],[-71.744873196,41.334203109],[-71.744888574,41.33425504],[-71.744914114,41.334311157],[-71.744927645,41.334363058],[-71.744934767,41.334417075],[-71.744943798,41.334451675],[-71.744977683,41.334472522],[-71.744998693,41.334496081],[-71.745020598,41.334525198],[-71.745046228,41.334546715],[-71.745084703,41.334563419],[-71.745138854,41.334562868],[-71.745178252,41.334582314],[-71.745208442,41.334612831],[-71.745267987,41.334635809],[-71.745332181,41.334650487],[-71.745396376,41.33466585],[-71.745423853,41.334685311],[-71.745458663,41.334708899],[-71.745535642,41.334734693],[-71.7456007,41.334766671],[-71.745648324,41.334795147],[-71.74570781,41.334838897],[-71.74575904,41.33488676],[-71.745796531,41.33492282],[-71.745836884,41.33493264],[-71.745856136,41.334938183],[-71.745859712,41.334958941],[-71.745868802,41.334980413],[-71.745874256,41.334988728],[-71.74589166,41.334995002],[-71.745935649,41.335008249],[-71.745976001,41.335022911],[-71.745997161,41.335018769],[-71.746022761,41.335041702],[-71.746033609,41.335078388],[-71.746036202,41.335121289],[-71.746066302,41.335159406],[-71.74611944,41.335196197],[-71.746173441,41.335229531],[-71.746229321,41.335256651],[-71.746296197,41.335289359],[-71.746347547,41.335312277],[-71.746388853,41.335315138],[-71.746432006,41.335314587],[-71.746493518,41.335311249],[-71.746565908,41.335338399],[-71.74659431,41.335359231],[-71.746628255,41.335357234],[-71.746671259,41.335389197],[-71.74671334,41.335432157],[-71.746767312,41.335471049],[-71.746844351,41.335494056],[-71.746932536,41.335480452],[-71.74697569,41.335481226],[-71.747056425,41.335495248],[-71.747104079,41.33550851],[-71.747124344,41.335489869],[-71.747144699,41.335456714],[-71.747179806,41.335410461],[-71.747225791,41.335386336],[-71.747284561,41.335381642],[-71.747341424,41.335392132],[-71.747369826,41.335408106],[-71.747361511,41.33542262],[-71.747328401,41.335442588],[-71.747307152,41.3354626],[-71.747298837,41.335482657],[-71.747293204,41.335514501],[-71.747293085,41.335542843],[-71.747292906,41.335579529],[-71.747292727,41.335619658],[-71.747304469,41.335667461],[-71.747309804,41.33570686],[-71.747316957,41.335756704],[-71.747315913,41.335798919],[-71.747327685,41.335838392],[-71.74735868,41.335886896],[-71.747371376,41.335925683],[-71.747379333,41.33599624],[-71.747379869,41.336088985],[-71.747371346,41.336149856],[-71.747377545,41.336204529],[-71.747368038,41.336281329],[-71.747362375,41.336320728],[-71.747362375,41.336324185],[-71.747365087,41.336341515],[-71.747374147,41.33636573],[-71.747384995,41.336401045],[-71.747406006,41.336434349],[-71.747429758,41.336459994],[-71.747461766,41.336493984],[-71.747482777,41.336513355],[-71.747522146,41.336536989],[-71.747568935,41.336546794],[-71.747599185,41.336557254],[-71.747642219,41.336582273],[-71.747656852,41.336594775],[-71.747685283,41.336605176],[-71.747713715,41.336608022],[-71.747767806,41.336627558],[-71.747809976,41.336644202],[-71.747844845,41.336649135],[-71.747894406,41.33665064],[-71.74791652,41.33664836],[-71.747940361,41.336645916],[-71.748002768,41.336643979],[-71.748023897,41.336644024],[-71.748036742,41.336644053],[-71.748058796,41.336633056],[-71.748091877,41.336631045],[-71.748134047,41.33664225],[-71.74818638,41.336644426],[-71.748219401,41.336646587],[-71.748250246,41.336515158],[-71.748296142,41.336518049],[-71.748282731,41.33665435],[-71.748334855,41.336701512],[-71.74848327,41.336774513],[-71.748521835,41.336774588],[-71.748560399,41.336774692],[-71.748594344,41.336776167],[-71.748704493,41.336781949],[-71.74877426,41.336779341],[-71.748832226,41.336756647],[-71.748877287,41.33673805],[-71.748901069,41.336747095],[-71.748926818,41.336740941],[-71.748991191,41.336714089],[-71.749108016,41.336663857],[-71.749163032,41.33667852],[-71.749183387,41.33664535],[-71.749190867,41.336605951],[-71.749303848,41.336593732],[-71.749498636,41.336556166],[-71.749590546,41.336529374],[-71.749654204,41.336452708],[-71.749691188,41.336391211],[-71.749766588,41.336361647],[-71.749858528,41.336323082],[-71.749901801,41.33629553],[-71.74994579,41.336305991],[-71.750046641,41.336346373],[-71.750098825,41.336381793],[-71.750136554,41.336367354],[-71.750202894,41.336296245],[-71.750244379,41.336254805],[-71.75031063,41.33622314],[-71.750405401,41.336168006],[-71.750491798,41.336142614],[-71.750546694,41.336187705],[-71.750602722,41.336180225],[-71.750618517,41.336140826],[-71.750623107,41.336135298],[-71.750653505,41.336112544],[-71.750762135,41.336031139],[-71.750810117,41.335982114],[-71.750835359,41.335870072],[-71.750855088,41.335749045],[-71.750843376,41.335699201],[-71.750816792,41.335687369],[-71.750809461,41.335686654],[-71.750791103,41.33568038],[-71.750760883,41.335668564],[-71.750730604,41.335662261],[-71.750706732,41.335659429],[-71.750716895,41.335651845],[-71.750743508,41.335644305],[-71.750770211,41.33562915],[-71.750774801,41.335625008],[-71.750786811,41.335612565],[-71.750804335,41.335593924],[-71.750806242,41.335576653],[-71.750793517,41.335548252],[-71.750766128,41.335506648],[-71.750726759,41.335478216],[-71.750712156,41.335461587],[-71.750676453,41.335434526],[-71.750642657,41.335398436],[-71.750592321,41.335356101],[-71.750567675,41.335319355],[-71.750550449,41.335270226],[-71.750521272,41.335217565],[-71.750495702,41.335181504],[-71.750478476,41.335135117],[-71.750455678,41.335094914],[-71.750429243,41.335051984],[-71.750392675,41.33501108],[-71.750387251,41.334992394],[-71.750387341,41.334967494],[-71.750389278,41.334948093],[-71.750389338,41.334928021],[-71.750389457,41.334900364],[-71.750392407,41.33485885],[-71.75039798,41.334841549],[-71.750364929,41.334835947],[-71.75029704,41.334830955],[-71.75023827,41.334826678],[-71.750180483,41.334821686],[-71.750180542,41.334799573],[-71.750191689,41.334770501],[-71.750231147,41.334774733],[-71.750293583,41.33478044],[-71.750356913,41.334782675],[-71.750402808,41.33477585],[-71.750403762,41.334764093],[-71.750403941,41.334726721],[-71.750392258,41.334658861],[-71.750384241,41.334604174],[-71.750372499,41.334559172],[-71.750366479,41.334460929],[-71.750352949,41.334399298],[-71.750333011,41.334339067],[-71.750319511,41.33426778],[-71.750312418,41.334208265],[-71.750281602,41.334111288],[-71.750278145,41.334056631],[-71.75024724,41.333981156],[-71.75022912,41.333929241],[-71.750247568,41.333905727],[-71.750255942,41.333876699],[-71.750226617,41.333869696],[-71.750190854,41.333857149],[-71.750201106,41.333818421],[-71.750226885,41.333798423],[-71.750216931,41.33376725],[-71.750219822,41.333731994],[-71.750219017,41.333696708],[-71.750183314,41.333676547],[-71.750176996,41.333653033],[-71.750178993,41.333608732],[-71.750156254,41.333560929],[-71.750144452,41.333524927],[-71.75014466,41.333474413],[-71.750141352,41.333387941],[-71.750141501,41.333349869],[-71.750127107,41.333277851],[-71.750127286,41.333239794],[-71.750139385,41.333196253],[-71.750135928,41.333144337],[-71.750137985,41.333082795],[-71.75015384,41.333024681],[-71.750129282,41.332975507],[-71.750107467,41.332915947],[-71.750105023,41.332841903],[-71.750101656,41.332767159],[-71.750083506,41.332717299],[-71.750078142,41.332682684],[-71.750076413,41.332659155],[-71.750081211,41.332603827],[-71.750086069,41.332540184],[-71.750078052,41.332471654],[-71.750091136,41.332420468],[-71.75009048,41.332359582],[-71.750091642,41.332295939],[-71.750090122,41.332226053],[-71.750079423,41.33213678],[-71.75006777,41.332073063],[-71.750073493,41.332021892],[-71.750066459,41.331945777],[-71.750063062,41.331884876],[-71.750046909,41.331788674],[-71.750008017,41.331647411],[-71.749955207,41.33154422],[-71.749898642,41.331456184],[-71.749848485,41.331373721],[-71.749796659,41.33125183],[-71.749750316,41.331132695],[-71.749715865,41.33103022],[-71.74968785,41.330927074],[-71.749677032,41.330880657],[-71.749662638,41.330807328],[-71.74960342,41.330699921],[-71.749556988,41.330593228],[-71.74956274,41.330534473],[-71.749564797,41.330484629],[-71.749526471,41.330434024],[-71.749575227,41.330399543],[-71.749584556,41.330369845],[-71.749584615,41.330355272],[-71.749582916,41.3303193],[-71.749580383,41.330263957],[-71.749597192,41.330198258],[-71.749594659,41.330144957],[-71.749570936,41.330104098],[-71.749550402,41.330079556],[-71.749540776,41.330068022],[-71.749500573,41.330031291],[-71.749444723,41.329998642],[-71.749397129,41.32996738],[-71.74935326,41.329920202],[-71.749322057,41.329913244],[-71.749280661,41.329934567],[-71.749226391,41.329961434],[-71.749165684,41.3299862],[-71.749111414,41.330016509],[-71.749081939,41.330041394],[-71.749033213,41.330061331],[-71.748969793,41.330073655],[-71.748942077,41.330080867],[-71.748911917,41.330088705],[-71.748866916,41.330092758],[-71.748821944,41.330089912],[-71.74879992,41.330083594],[-71.748796165,41.33008118],[-71.748765171,41.330061406],[-71.748754233,41.33004199],[-71.748747915,41.330016375],[-71.748759955,41.329983875],[-71.748783112,41.329937562],[-71.748813599,41.329884395],[-71.748850524,41.329839468],[-71.748894721,41.329811215],[-71.748945236,41.329797477],[-71.749016911,41.329782426],[-71.74910602,41.329760507],[-71.74922362,41.329733789],[-71.749321938,41.329719514],[-71.749415606,41.329708636],[-71.749507487,41.329690874],[-71.749600321,41.329651654],[-71.749700516,41.329620734],[-71.74978596,41.329607129],[-71.749886036,41.329601079],[-71.749991536,41.329613134],[-71.750083208,41.329645157],[-71.750172108,41.32967788],[-71.750271171,41.329700947],[-71.750372946,41.329722613],[-71.750469267,41.329742908],[-71.750553608,41.329767361],[-71.750606745,41.329792365],[-71.750656158,41.329829827],[-71.750696391,41.329874203],[-71.750732899,41.329925507],[-71.750762999,41.329969853],[-71.750796884,41.329988658],[-71.750825346,41.329994202],[-71.750862181,41.329961106],[-71.750912845,41.329917639],[-71.750946045,41.329881728],[-71.750982881,41.329851374],[-71.751045495,41.329807907],[-71.751113594,41.329761043],[-71.751155943,41.329726502],[-71.75119102,41.329679549],[-71.751199514,41.329629049],[-71.751202404,41.329586849],[-71.751202703,41.329525992],[-71.75121671,41.329458192],[-71.751240879,41.329384193],[-71.751247495,41.329336479],[-71.751250416,41.329292208],[-71.751251519,41.329247221],[-71.751254618,41.329167679],[-71.751271576,41.329063237],[-71.751295686,41.328996152],[-71.751315385,41.328891769],[-71.751315713,41.328821167],[-71.751312345,41.328743666],[-71.751300782,41.328653648],[-71.751278162,41.328571975],[-71.751241744,41.328496471],[-71.751200676,41.328434795],[-71.751167893,41.328380078],[-71.751119465,41.328310773],[-71.751064658,41.328258723],[-71.750983208,41.328193501],[-71.750912726,41.328143537],[-71.750834882,41.3281039],[-71.750742286,41.328071877],[-71.750645995,41.328052282],[-71.75057441,41.32804586],[-71.75051567,41.328042954],[-71.750439525,41.328033105],[-71.75040105,41.328017101],[-71.75035888,41.32800521],[-71.750330418,41.328005165],[-71.75032565,41.328044578],[-71.750298113,41.328046605],[-71.750273734,41.32795383],[-71.750261754,41.327953786],[-71.750211239,41.327961296],[-71.750178188,41.32796675],[-71.750113815,41.327997759],[-71.750143379,41.328175634],[-71.750082791,41.328181028],[-71.750048518,41.328028738],[-71.749995232,41.328039676],[-71.749944627,41.328062415],[-71.749932677,41.328069314],[-71.749911577,41.328067154],[-71.749874055,41.32804355],[-71.749763787,41.32806544],[-71.749634176,41.328114942],[-71.749611348,41.328127682],[-71.749584347,41.328170195],[-71.749516279,41.328206703],[-71.749462903,41.328247398],[-71.749419481,41.328307524],[-71.749427527,41.328363568],[-71.749438286,41.328429997],[-71.749450862,41.328491613],[-71.749456108,41.328553215],[-71.74944216,41.328607857],[-71.749410719,41.328661054],[-71.74935174,41.328717664],[-71.749302924,41.328758344],[-71.749246746,41.328803211],[-71.749185979,41.328851476],[-71.749127954,41.32889773],[-71.749053329,41.328952208],[-71.748999953,41.329000548],[-71.748960257,41.329049543],[-71.748932511,41.329104841],[-71.748904675,41.329170495],[-71.748874128,41.329229251],[-71.748829007,41.329274118],[-71.748760909,41.329309925],[-71.748674512,41.329337418],[-71.748604596,41.329369068],[-71.748541117,41.329409748],[-71.748483986,41.32946223],[-71.748436928,41.329516754],[-71.748365104,41.329570562],[-71.74831906,41.329614073],[-71.748283029,41.329662427],[-71.74824971,41.329736382],[-71.748228312,41.329799965],[-71.748226196,41.329861537],[-71.748229682,41.329918981],[-71.748215646,41.329986081],[-71.74817878,41.330013648],[-71.748099804,41.330021784],[-71.748032838,41.330007777],[-71.747986287,41.329947472],[-71.747955292,41.329893425],[-71.74792704,41.329840794],[-71.747897893,41.329786062],[-71.747890443,41.32977359],[-71.747865975,41.329732701],[-71.747802019,41.329671651],[-71.747726828,41.329641715],[-71.747646987,41.329633251],[-71.747646302,41.329579249],[-71.747668594,41.329519808],[-71.747707427,41.32945624],[-71.747756243,41.32941553],[-71.747792244,41.329367206],[-71.747737348,41.329317257],[-71.747693121,41.32936351],[-71.747624964,41.329414532],[-71.747556955,41.329440668],[-71.747475266,41.329431489],[-71.747403771,41.32941474],[-71.747332245,41.329392418],[-71.747271687,41.32938534],[-71.747252166,41.32944341],[-71.747240931,41.329500139],[-71.747234225,41.329563767],[-71.747234881,41.329630882],[-71.747249335,41.329693183],[-71.747286737,41.329743117],[-71.747344375,41.329793051],[-71.747375369,41.329844341],[-71.747407168,41.329923972],[-71.747401536,41.329952314],[-71.747330755,41.32997705],[-71.74729681,41.329967976],[-71.747261226,41.329919487],[-71.747219205,41.329868197],[-71.747160643,41.329820991],[-71.747083664,41.329788283],[-71.746989161,41.329780459],[-71.746883631,41.329776749],[-71.746794522,41.329789683],[-71.746719122,41.329817206],[-71.746659279,41.329862729],[-71.746624172,41.329913139],[-71.746600956,41.32998088],[-71.746557564,41.330039591],[-71.746525526,41.330086067],[-71.746512324,41.330105215],[-71.746465266,41.330169469],[-71.746406347,41.330210879],[-71.746339142,41.330249444],[-71.74629578,41.330308154],[-71.746257007,41.330360651],[-71.746216387,41.330411062],[-71.746164769,41.330463529],[-71.746107638,41.330520108],[-71.746058732,41.330574691],[-71.745986968,41.330619484],[-71.745928019,41.330660194],[-71.745862663,41.330701545],[-71.745790124,41.330718651],[-71.745719373,41.330734417],[-71.745644033,41.330743909],[-71.745552242,41.330738127],[-71.745479792,41.330733851],[-71.745407313,41.3307226],[-71.745311826,41.330720991],[-71.745226413,41.330732539],[-71.74514389,41.330706045],[-71.745076001,41.330697566],[-71.745006174,41.330718875],[-71.744932741,41.330715939],[-71.744858444,41.330700547],[-71.74478966,41.330683798],[-71.744711697,41.330672532],[-71.744639218,41.330667511],[-71.744548321,41.330669343],[-71.744461954,41.330678135],[-71.744360149,41.330663398],[-71.744262904,41.330650702],[-71.744172961,41.33064495],[-71.744078398,41.330647483],[-71.74398008,41.330668733],[-71.743898302,41.330694795],[-71.74382934,41.33071956],[-71.743758559,41.330744281],[-71.743684977,41.330769047],[-71.743604124,41.330793738],[-71.743527859,41.330813631],[-71.743461639,41.330841154],[-71.74337703,41.33087483],[-71.743285298,41.33086428],[-71.743210077,41.330853],[-71.743111014,41.330829248],[-71.74302569,41.330820724],[-71.742958575,41.330853075],[-71.742877752,41.330862597],[-71.742792249,41.330883816],[-71.742704123,41.33088018],[-71.742622346,41.330901444],[-71.742557019,41.330944195],[-71.742500812,41.33099246],[-71.742438167,41.331044197],[-71.742364526,41.33109799],[-71.742291749,41.331156626],[-71.742234617,41.331204936],[-71.742159188,41.331235215],[-71.742066503,41.331241876],[-71.741970986,41.331251338],[-71.741868138,41.331249043],[-71.741767198,41.331242576],[-71.74168548,41.331253454],[-71.741592675,41.331268445],[-71.74151656,41.331253052],[-71.741425663,41.331256971],[-71.741327405,41.331271246],[-71.741237432,41.331270337],[-71.741145581,41.331277758],[-71.741068393,41.331294864],[-71.740993083,41.331314772],[-71.74090001,41.331335947],[-71.740893811,41.331337333],[-71.740798384,41.331331566],[-71.740724087,41.331312031],[-71.740643412,41.331288323],[-71.740564585,41.331266671],[-71.740460962,41.33124426],[-71.740389347,41.331240639],[-71.740316808,41.331246719],[-71.740229458,41.33128731],[-71.740176022,41.331324562],[-71.740124434,41.331365928],[-71.740070134,41.331403852],[-71.740005732,41.331436932],[-71.739922106,41.331456795],[-71.739838481,41.331471115],[-71.739757627,41.331489593],[-71.739679486,41.331518456],[-71.739604056,41.331560493],[-71.739548743,41.331610858],[-71.739503562,41.331658497],[-71.739468455,41.331706852],[-71.739438862,41.331764236],[-71.739414752,41.331828505],[-71.739399731,41.331898332],[-71.73938936,41.331964776],[-71.739379883,41.33202976],[-71.739370435,41.332099631],[-71.739361852,41.332173631],[-71.739355117,41.332238674],[-71.739330024,41.332316101],[-71.739293098,41.332367212],[-71.739223301,41.332371205],[-71.739135236,41.332355767],[-71.739056379,41.332337588],[-71.738965601,41.332313836],[-71.73889038,41.332299128],[-71.738808721,41.332289249],[-71.738731652,41.332284912],[-71.738625169,41.332284644],[-71.738548011,41.332288608],[-71.738465399,41.332293943],[-71.738356113,41.332293674],[-71.738254309,41.332278937],[-71.738181859,41.332266301],[-71.738100171,41.332252234],[-71.737991005,41.332238108],[-71.737892836,41.332236528],[-71.737820297,41.332230121],[-71.737740517,41.332213998],[-71.737663478,41.332195818],[-71.737590134,41.332176968],[-71.737521321,41.332158804],[-71.737448901,41.332144096],[-71.737369984,41.332134917],[-71.737266243,41.332134664],[-71.737173557,41.332128927],[-71.737102926,41.332113519],[-71.737020433,41.332089767],[-71.736940682,41.332062602],[-71.736865491,41.332040966],[-71.736795813,41.332023486],[-71.736719638,41.332009465],[-71.736635238,41.332000956],[-71.736559063,41.332002133],[-71.736454338,41.332022637],[-71.736385375,41.33204256],[-71.736308157,41.332063809],[-71.736237407,41.332084373],[-71.736141831,41.332109094],[-71.736044466,41.332119212],[-71.735942632,41.332107231],[-71.735879451,41.332074523],[-71.735840201,41.332022533],[-71.735803694,41.331967786],[-71.735752493,41.331927538],[-71.735676438,41.331895515],[-71.735605925,41.331854522],[-71.735522509,41.331821799],[-71.735421538,41.331820175],[-71.73532787,41.331831008],[-71.735239625,41.331859872],[-71.735183448,41.331901267],[-71.735177666,41.331961393],[-71.735111445,41.331987515],[-71.735040694,41.332008153],[-71.734948814,41.332026586],[-71.734871656,41.332038179],[-71.734832942,41.33207266],[-71.734766662,41.332118884],[-71.734681964,41.332169876],[-71.73460561,41.332207009],[-71.734550506,41.332215875],[-71.734519511,41.332160458],[-71.734489501,41.332098126],[-71.734428257,41.332041919],[-71.734341204,41.332010567],[-71.734257698,41.331997246],[-71.734162211,41.331998348],[-71.734065741,41.332019567],[-71.7339921,41.332062274],[-71.733925819,41.332110554],[-71.733849585,41.332120076],[-71.733755946,41.332119823],[-71.733676076,41.332117558],[-71.733598888,41.332138106],[-71.733520776,41.332159385],[-71.73343724,41.332157791],[-71.733381063,41.332200527],[-71.733306587,41.332230121],[-71.733268738,41.332279831],[-71.733230829,41.332337856],[-71.733199328,41.332397982],[-71.73317799,41.332455382],[-71.733145773,41.332478836],[-71.733066916,41.332458556],[-71.733015716,41.332405135],[-71.732968181,41.332363516],[-71.732913136,41.332357869],[-71.732900918,41.332417309],[-71.732890546,41.33247748],[-71.732872844,41.332541093],[-71.732876241,41.332608268],[-71.732895285,41.332662269],[-71.732918859,41.332725987],[-71.732947052,41.332786947],[-71.732982606,41.332843751],[-71.733015418,41.332904726],[-71.733039886,41.332972586],[-71.733059824,41.333034933],[-71.733063102,41.333117262],[-71.733046323,41.333176032],[-71.73301208,41.333240286],[-71.732964098,41.333298326],[-71.732910663,41.333345905],[-71.732859045,41.333388671],[-71.732789069,41.333443165],[-71.732731164,41.333457559],[-71.732656747,41.333469838],[-71.732586801,41.333507717],[-71.732516974,41.333526239],[-71.732438982,41.333523244],[-71.732360005,41.33352375],[-71.73227188,41.333522841],[-71.732244223,41.33354561],[-71.732246697,41.333610654],[-71.732284993,41.333668873],[-71.732339889,41.333710521],[-71.732387364,41.333773598],[-71.732414603,41.333840087],[-71.732444614,41.33390592],[-71.73247093,41.333971739],[-71.732493639,41.334031984],[-71.732533783,41.334086061],[-71.732594341,41.334095165],[-71.732681572,41.334088475],[-71.732768774,41.334096313],[-71.732842147,41.334113806],[-71.732919186,41.334134728],[-71.733000726,41.334159851],[-71.733074993,41.334180772],[-71.73317045,41.334190041],[-71.733262181,41.334211037],[-71.733330905,41.334237441],[-71.733400613,41.334253535],[-71.733485043,41.334250286],[-71.733565956,41.334222123],[-71.733620375,41.334170371],[-71.733683974,41.334111005],[-71.733729124,41.334064782],[-71.733766079,41.334013671],[-71.733796597,41.333964631],[-71.733839154,41.333892047],[-71.733868748,41.333838835],[-71.733899295,41.333780795],[-71.733927071,41.33372274],[-71.733957738,41.333645329],[-71.733969033,41.333574772],[-71.733941793,41.333508283],[-71.733885169,41.33344242],[-71.733831286,41.333376586],[-71.733779281,41.333306521],[-71.733755589,41.333253875],[-71.733733863,41.33319366],[-71.733718485,41.333133399],[-71.733706802,41.333075956],[-71.733688712,41.333013639],[-71.733665138,41.332949221],[-71.733635128,41.332884118],[-71.733603269,41.332822442],[-71.733576,41.332760781],[-71.733555138,41.332699165],[-71.733536154,41.332638234],[-71.733514369,41.332580045],[-71.733524531,41.332565561],[-71.733603448,41.332576141],[-71.733673036,41.332602605],[-71.73372519,41.332646981],[-71.733780086,41.332686573],[-71.73383221,41.332735136],[-71.73387602,41.332796857],[-71.73391068,41.332846031],[-71.733948112,41.332893208],[-71.733986437,41.332944468],[-71.734018356,41.332996458],[-71.734059334,41.333069205],[-71.734089315,41.333141938],[-71.734102905,41.333197325],[-71.734116405,41.333256871],[-71.734131753,41.333315],[-71.734163553,41.333391204],[-71.734187067,41.33346808],[-71.734187752,41.333522767],[-71.734162629,41.333600849],[-71.734126508,41.333673418],[-71.734098732,41.333725259],[-71.734068215,41.3337771],[-71.734033108,41.333827525],[-71.733981401,41.333899334],[-71.733953625,41.333949775],[-71.733928621,41.334002286],[-71.733888924,41.33405824],[-71.73384738,41.334112823],[-71.733814061,41.334167376],[-71.733786285,41.334222689],[-71.733763099,41.334280044],[-71.733743578,41.334338814],[-71.733730465,41.334394813],[-71.733725518,41.334474415],[-71.733712345,41.334551856],[-71.733671665,41.334623009],[-71.733620882,41.334685147],[-71.733586937,41.334683016],[-71.733561397,41.334644869],[-71.733524889,41.334592208],[-71.733469963,41.33455193],[-71.733390242,41.334524736],[-71.733321458,41.3345045],[-71.733252704,41.33448568],[-71.733159184,41.334458455],[-71.73306936,41.334422261],[-71.732999712,41.334399238],[-71.732897013,41.3343741],[-71.732805252,41.334360734],[-71.732724518,41.334359109],[-71.732649148,41.334373459],[-71.732585669,41.334402367],[-71.732536823,41.334443063],[-71.732494414,41.334487259],[-71.732449204,41.334547341],[-71.732409447,41.334606066],[-71.732375264,41.33465372],[-71.732313484,41.334708244],[-71.732252747,41.334749579],[-71.732184678,41.334788159],[-71.73212117,41.334817052],[-71.732039362,41.334842443],[-71.731949389,41.334844291],[-71.731876045,41.334828913],[-71.731801748,41.334805205],[-71.731738567,41.334768385],[-71.731684625,41.334723964],[-71.731622338,41.334685728],[-71.731571108,41.334646195],[-71.731510729,41.334598973],[-71.731428266,41.33456488],[-71.731364131,41.334533587],[-71.731326699,41.334480241],[-71.731307745,41.334412366],[-71.731236309,41.3343741],[-71.73117134,41.334333122],[-71.731107265,41.334285915],[-71.731051475,41.334239408],[-71.730989277,41.33418183],[-71.730979413,41.334134072],[-71.731041849,41.33412382],[-71.731118977,41.334123343],[-71.731205344,41.334112495],[-71.731297255,41.334083647],[-71.73137185,41.334027097],[-71.731413364,41.3339829],[-71.731452137,41.333932504],[-71.731489152,41.333869651],[-71.731521547,41.333802596],[-71.731549382,41.333734855],[-71.731579036,41.333672643],[-71.731606841,41.333615303],[-71.731629223,41.333537862],[-71.731609285,41.333471373],[-71.731559038,41.333419353],[-71.731542826,41.333353579],[-71.731497079,41.333309874],[-71.731463343,41.333262742],[-71.731495708,41.333208174],[-71.731541872,41.333144635],[-71.731581599,41.333092123],[-71.731628686,41.333031356],[-71.731678486,41.332968518],[-71.731721938,41.332905695],[-71.731755227,41.33284831],[-71.731788635,41.332770914],[-71.731786162,41.332705155],[-71.731724888,41.332651734],[-71.731640637,41.332604483],[-71.731577426,41.332576662],[-71.73148945,41.332538351],[-71.731423527,41.332499474],[-71.731342852,41.332468823],[-71.731254876,41.332446471],[-71.73115772,41.332411632],[-71.73111248,41.332466841],[-71.731026143,41.332477003],[-71.730980992,41.33251287],[-71.730942458,41.332514852],[-71.730872661,41.332523674],[-71.730801851,41.332547724],[-71.730712771,41.332555816],[-71.730621755,41.332579121],[-71.730537117,41.332621798],[-71.730462581,41.332670733],[-71.730399162,41.332680941],[-71.730326742,41.33265312],[-71.730233163,41.33265011],[-71.730155021,41.332674801],[-71.730083287,41.33270371],[-71.729996055,41.332707614],[-71.729902327,41.33273232],[-71.729838818,41.332762614],[-71.729755163,41.332799077],[-71.729679912,41.332786396],[-71.729609072,41.332824275],[-71.729562938,41.332880214],[-71.72954616,41.332934842],[-71.729572624,41.332973674],[-71.729631156,41.333014607],[-71.729715496,41.333043903],[-71.729799986,41.333042011],[-71.729860663,41.333012432],[-71.729883462,41.33305122],[-71.729841113,41.333080187],[-71.729770243,41.333127767],[-71.729724139,41.333174706],[-71.729689807,41.333245844],[-71.729658514,41.333272755],[-71.729622781,41.333248451],[-71.729571581,41.333205447],[-71.729502082,41.33314994],[-71.729441643,41.333111703],[-71.729379416,41.333068654],[-71.729313552,41.333023518],[-71.729287058,41.333009839],[-71.729266584,41.332999274],[-71.729263604,41.332276434],[-71.72925061,41.331733629],[-71.729250878,41.33173354],[-71.729278862,41.331724659],[-71.729364306,41.331702754],[-71.729437828,41.331691146],[-71.72954151,41.331697643],[-71.729643404,41.331697211],[-71.729728818,41.331689134],[-71.729814231,41.331685185],[-71.729897767,41.331685409],[-71.729981273,41.331685632],[-71.730074912,41.331685856],[-71.730171293,41.331686065],[-71.730261296,41.331683531],[-71.730352134,41.331678912],[-71.730448574,41.331674337],[-71.730543166,41.331668332],[-71.730629504,41.33165957],[-71.730717659,41.331647992],[-71.730811328,41.331634387],[-71.73090139,41.331620783],[-71.73098132,41.331602991],[-71.73106128,41.331581742],[-71.731143981,41.331558421],[-71.731232226,41.331535131],[-71.731307566,41.331511125],[-71.731382996,41.331487045],[-71.731458366,41.331463724],[-71.731542885,41.331444576],[-71.731620997,41.331433684],[-71.731724709,41.331429094],[-71.731822073,41.331417575],[-71.731895626,41.331394926],[-71.731965542,41.331363976],[-71.732051104,41.331313685],[-71.732131153,41.331270278],[-71.732198268,41.331246227],[-71.73228097,41.331229836],[-71.732359946,41.331220299],[-71.73243162,41.331211522],[-71.732534498,41.331189603],[-71.732610762,41.33117044],[-71.732693434,41.331156805],[-71.732769698,41.331147298],[-71.732850522,41.331137121],[-71.732935935,41.331124887],[-71.733029634,41.331111968],[-71.733115047,41.331099033],[-71.733194977,41.33108747],[-71.733275771,41.331075907],[-71.733366728,41.331066459],[-71.733459473,41.331057668],[-71.733543068,41.331046104],[-71.733629376,41.331034571],[-71.733720303,41.331025809],[-71.733815819,41.331018433],[-71.733894795,41.331008941],[-71.733968347,41.330989763],[-71.734039128,41.330961555],[-71.734117299,41.330927163],[-71.734196395,41.330891356],[-71.734273642,41.330858335],[-71.734355479,41.330830157],[-71.73444277,41.330810308],[-71.734534621,41.33079876],[-71.734619081,41.330792755],[-71.734704465,41.330788121],[-71.734788954,41.330782771],[-71.734878927,41.330780953],[-71.734958768,41.330781132],[-71.735034049,41.330783427],[-71.735140502,41.33079128],[-71.735249758,41.330791563],[-71.73532322,41.330775782],[-71.735399574,41.330744162],[-71.735482335,41.330704212],[-71.735546738,41.330674648],[-71.735619366,41.330650583],[-71.735713094,41.330627978],[-71.735793024,41.330612972],[-71.735873818,41.330611095],[-71.73595643,41.330607146],[-71.736038178,41.330599725],[-71.73611626,41.330586776],[-71.736195296,41.330567598],[-71.736274302,41.330544949],[-71.736357033,41.330523029],[-71.736424118,41.330502421],[-71.736509651,41.330478445],[-71.736584961,41.330462709],[-71.736669421,41.33045736],[-71.736742854,41.330456853],[-71.736819148,41.330437645],[-71.736910194,41.330404654],[-71.736974537,41.330377832],[-71.737044394,41.33035031],[-71.737139076,41.33032842],[-71.737218946,41.330317542],[-71.737296075,41.330313563],[-71.737373233,41.330310315],[-71.737465024,41.330306381],[-71.737544954,41.330298275],[-71.737622976,41.33028394],[-71.737701118,41.330266148],[-71.737790227,41.330249056],[-71.737877518,41.33023195],[-71.737957448,41.330216259],[-71.738036424,41.330201894],[-71.738114536,41.330187559],[-71.738199979,41.330172554],[-71.738276243,41.33015126],[-71.738347054,41.33012031],[-71.738374829,41.330103233],[-71.738408744,41.330082431],[-71.738472193,41.330053493],[-71.738552988,41.330044731],[-71.738630086,41.330044895],[-71.738703549,41.330043688],[-71.738778859,41.330037639],[-71.738861471,41.330027491],[-71.738949656,41.330014527],[-71.739028692,41.330000862],[-71.739103109,41.329983741],[-71.739174753,41.329970092],[-71.739253759,41.329963371],[-71.739336431,41.32994765],[-71.739412725,41.329927087],[-71.739488065,41.329907194],[-71.739565253,41.329887345],[-71.739653468,41.329866096],[-71.73973161,41.329842046],[-71.739804268,41.329811782],[-71.739874095,41.32978636],[-71.73994574,41.329780996],[-71.740024656,41.329786718],[-71.740098149,41.329777896],[-71.740162492,41.32975176],[-71.740226895,41.329716608],[-71.740297735,41.329682216],[-71.740374982,41.329650566],[-71.740444839,41.329620302],[-71.740534991,41.329581752],[-71.740609497,41.329550102],[-71.7406739,41.329513565],[-71.740743756,41.329489514],[-71.740816325,41.329474479],[-71.740892977,41.329457507],[-71.740971625,41.329438865],[-71.741056114,41.329419702],[-71.741153508,41.32940194],[-71.741238981,41.329382107],[-71.741326272,41.329360843],[-71.741415411,41.329338238],[-71.741510957,41.329313561],[-71.741594613,41.32928814],[-71.74167642,41.329261377],[-71.741760075,41.329231799],[-71.741850168,41.329202965],[-71.741930157,41.329176173],[-71.742002755,41.329152122],[-71.742071688,41.329128787],[-71.742139727,41.329108909],[-71.742216885,41.329092458],[-71.742319822,41.329067796],[-71.742409855,41.329043776],[-71.742490768,41.329021111],[-71.742575258,41.329001278],[-71.742662549,41.328984872],[-71.742745191,41.328973308],[-71.742836148,41.328964517],[-71.742909551,41.328956395],[-71.743017048,41.328943506],[-71.743102461,41.328930557],[-71.74317503,41.328918993],[-71.74325037,41.328903973],[-71.743336737,41.328879938],[-71.743394643,41.328869686],[-71.743478239,41.328851864],[-71.743550807,41.328838229],[-71.743627876,41.328841865],[-71.743700445,41.328829587],[-71.743749291,41.328787491],[-71.743821859,41.328778684],[-71.743893445,41.328768447],[-71.743976116,41.328756884],[-71.744068891,41.328746051],[-71.744155258,41.328737959],[-71.744238794,41.328729153],[-71.744318694,41.32871826],[-71.744400471,41.32870464],[-71.744473994,41.328684047],[-71.744559526,41.328638569],[-71.744612128,41.328575745],[-71.744686544,41.328562766],[-71.744779259,41.328562289],[-71.744872898,41.328556284],[-71.744950056,41.328540549],[-71.74503091,41.328519315],[-71.745104432,41.328498021],[-71.745189011,41.328476772],[-71.745262504,41.328458279],[-71.745335102,41.328441158],[-71.745408595,41.328427479],[-71.745490372,41.328412458],[-71.74557209,41.32839331],[-71.745641947,41.328374773],[-71.745712698,41.328358993],[-71.745788038,41.328345358],[-71.745876193,41.328328937],[-71.745958894,41.32831113],[-71.746030599,41.328293324],[-71.746100426,41.328274116],[-71.746168435,41.328253508],[-71.746247441,41.328232244],[-71.74635312,41.328206912],[-71.746447742,41.328193277],[-71.746526718,41.328174815],[-71.746606708,41.328145251],[-71.746684879,41.328119129],[-71.746758342,41.328103378],[-71.746837407,41.328075215],[-71.746922046,41.328031808],[-71.747015834,41.327996045],[-71.747099429,41.327973425],[-71.747175664,41.327963218],[-71.747250974,41.327957839],[-71.747320801,41.327942073],[-71.747399837,41.327915281],[-71.747482568,41.32789059],[-71.747562528,41.327863112],[-71.747643471,41.32782869],[-71.747738123,41.327795714],[-71.747823626,41.32776615],[-71.747882754,41.327742025],[-71.747894436,41.327737242],[-71.747967958,41.327711836],[-71.748050719,41.327677414],[-71.748127908,41.327651292],[-71.74821505,41.32767503],[-71.748272926,41.327662721],[-71.748342842,41.327619299],[-71.748418272,41.327581391],[-71.74851194,41.327578858],[-71.748603702,41.327571452],[-71.74869293,41.327535018],[-71.748764694,41.327490896],[-71.748818189,41.327430129],[-71.748885393,41.327383906],[-71.748973638,41.327357829],[-71.749058992,41.327355951],[-71.749151766,41.327331275],[-71.749206334,41.32730785],[-71.749214321,41.327304423],[-71.749300808,41.327263117],[-71.749377161,41.327222496],[-71.749449849,41.327172816],[-71.749526143,41.327151567],[-71.74960053,41.32714203],[-71.749679595,41.327107623],[-71.749723852,41.327059314],[-71.749768138,41.32700403],[-71.749829859,41.326946065],[-71.74990356,41.326894343],[-71.749986351,41.326845378],[-71.750068188,41.326803401],[-71.750147283,41.326774508],[-71.750219852,41.326752529],[-71.750267774,41.326702818],[-71.750318497,41.326651067],[-71.750372827,41.326614484],[-71.750429869,41.326577246],[-71.750504375,41.326531097],[-71.750566959,41.326498002],[-71.750635028,41.326462194],[-71.750697613,41.3264139],[-71.750760257,41.326362818],[-71.750811845,41.326320052],[-71.750871718,41.326270372],[-71.750916839,41.326228276],[-71.750981331,41.326173767],[-71.751036614,41.326123387],[-71.75109008,41.326068148],[-71.751137972,41.326020524],[-71.751181364,41.325969398],[-71.751221031,41.325919688],[-71.75125432,41.325858176],[-71.751286685,41.325792536],[-71.751316279,41.325736552],[-71.751348644,41.325686127],[-71.75138098,41.325634316],[-71.751433551,41.32557629],[-71.751485109,41.325530738],[-71.751538515,41.325490743],[-71.751598358,41.325450748],[-71.751656353,41.325410038],[-71.75172621,41.325376973],[-71.751800627,41.32535848],[-71.751899749,41.32536149],[-71.751976043,41.325342998],[-71.752052307,41.325316191]]],[[[-71.808746457,41.325239107],[-71.808746636,41.325239435],[-71.808709145,41.325327948],[-71.808746457,41.325239107]]],[[[-71.803412527,41.325238273],[-71.803296566,41.325310573],[-71.80316028,41.325351715],[-71.803029954,41.325400352],[-71.803010821,41.325405747],[-71.803029627,41.325400427],[-71.803160608,41.325351432],[-71.803296626,41.325310424],[-71.803412527,41.325238273]]],[[[-71.804241121,41.324802414],[-71.80419603,41.324859336],[-71.804056704,41.324958906],[-71.803977132,41.324967816],[-71.80385378,41.325018689],[-71.80371049,41.325089782],[-71.8035613,41.325128675],[-71.803561628,41.325128436],[-71.80371061,41.325089425],[-71.803853631,41.325018436],[-71.803977609,41.324967429],[-71.804056615,41.324958429],[-71.804195613,41.324859425],[-71.804241121,41.324802414]]],[[[-71.808764249,41.324753135],[-71.808709621,41.324814424],[-71.808715284,41.325159103],[-71.808711022,41.324972108],[-71.808709264,41.324813962],[-71.808764249,41.324753135]]],[[[-71.80450061,41.324587435],[-71.804586619,41.324601427],[-71.804665625,41.324598372],[-71.804586142,41.324601769],[-71.804500639,41.324587479],[-71.804393172,41.324660823],[-71.804386318,41.324666351],[-71.804393619,41.324660435],[-71.80450061,41.324587435]]],[[[-71.809243679,41.324437305],[-71.809243619,41.324437425],[-71.809124619,41.324531436],[-71.809083611,41.324605435],[-71.809124231,41.324530944],[-71.809243679,41.324437305]]],[[[-71.805455148,41.324321538],[-71.80538094,41.324340761],[-71.805208892,41.324361652],[-71.805150151,41.324405417],[-71.805208623,41.324361429],[-71.805380613,41.324340433],[-71.805455148,41.324321538]]],[[[-71.80938378,41.324256957],[-71.809318632,41.324302435],[-71.809262633,41.324392423],[-71.809243679,41.324437305],[-71.809262633,41.324392363],[-71.809318423,41.32430245],[-71.80938378,41.324256957]]],[[[-71.805856735,41.324213952],[-71.805832505,41.324234679],[-71.80579111,41.324240625],[-71.805832624,41.324234426],[-71.805856735,41.324213952]]],[[[-71.805993855,41.324166089],[-71.805905521,41.324172512],[-71.80590561,41.324172437],[-71.805993855,41.324166089]]],[[[-71.806433499,41.32404612],[-71.806310922,41.324091896],[-71.806103826,41.324148878],[-71.806310624,41.324091434],[-71.806433499,41.32404612]]],[[[-71.806739032,41.323886395],[-71.806686014,41.323908523],[-71.806584507,41.324000642],[-71.806481183,41.324030757],[-71.806584626,41.324000433],[-71.806685627,41.323908433],[-71.806739032,41.323886395]]],[[[-71.796595633,41.323726535],[-71.79678762,41.324633434],[-71.797137558,41.326284215],[-71.79713735,41.326284558],[-71.797095537,41.326302528],[-71.796937525,41.326282918],[-71.796818078,41.326345757],[-71.796709627,41.326405659],[-71.796604067,41.326514974],[-71.796463817,41.326568082],[-71.796409011,41.326616779],[-71.796403915,41.326691717],[-71.79651621,41.326749533],[-71.79656294,41.326754078],[-71.796718061,41.326737672],[-71.796845466,41.326660618],[-71.796935052,41.326616451],[-71.797084183,41.326616585],[-71.79709208,41.326634571],[-71.797100931,41.326732799],[-71.797127724,41.326760545],[-71.797274858,41.326781631],[-71.797346473,41.326747939],[-71.797364473,41.326705247],[-71.797536492,41.326697141],[-71.797587156,41.326723427],[-71.797612876,41.32682012],[-71.79761669,41.326928809],[-71.797685206,41.326997086],[-71.79782033,41.327079639],[-71.797835141,41.327135131],[-71.797793359,41.327147827],[-71.797684997,41.327131242],[-71.797623426,41.32707499],[-71.79756096,41.326972246],[-71.79742375,41.326944381],[-71.797312438,41.326907575],[-71.797213137,41.326809302],[-71.797106743,41.326822713],[-71.796964467,41.326869801],[-71.796859026,41.326929674],[-71.796770453,41.326946095],[-71.796705842,41.326940835],[-71.796577662,41.326882258],[-71.796379924,41.326803386],[-71.796314448,41.326716363],[-71.796203166,41.326638326],[-71.796127617,41.326626256],[-71.796040148,41.326599956],[-71.79588899,41.326602817],[-71.795793504,41.326641709],[-71.79568401,41.326721072],[-71.795554698,41.326744258],[-71.795491964,41.326806352],[-71.795333862,41.326805517],[-71.79516086,41.326804593],[-71.795039654,41.326736286],[-71.794910461,41.32668373],[-71.794771343,41.326608658],[-71.794730663,41.326544151],[-71.794766515,41.32654269],[-71.794939458,41.326575816],[-71.795076579,41.326626882],[-71.795234621,41.326679468],[-71.795306236,41.326659307],[-71.795422703,41.326562703],[-71.795410901,41.326481774],[-71.795456737,41.326420337],[-71.795517534,41.326321423],[-71.795514643,41.32625623],[-71.795437127,41.326255426],[-71.795308799,41.326286033],[-71.795236111,41.326348171],[-71.795097858,41.326389313],[-71.79506591,41.32644625],[-71.794938624,41.326458141],[-71.794871002,41.326483548],[-71.794644326,41.326447368],[-71.79447332,41.326414257],[-71.794299394,41.326387852],[-71.794148386,41.32630305],[-71.794046074,41.326224267],[-71.793978542,41.326170266],[-71.793949842,41.326077998],[-71.793925017,41.326063022],[-71.793771893,41.326044127],[-71.793601871,41.326054484],[-71.793475509,41.326113597],[-71.793380052,41.326126978],[-71.793216944,41.326129094],[-71.793002158,41.32614091],[-71.792806298,41.326146007],[-71.792660117,41.326165363],[-71.79250589,41.326200426],[-71.792418331,41.326230332],[-71.792336792,41.326246008],[-71.792209417,41.326304376],[-71.792106032,41.326288551],[-71.791947991,41.326277182],[-71.791788906,41.326266542],[-71.791625828,41.326265648],[-71.791500539,41.326258779],[-71.791373372,41.326182216],[-71.791217357,41.326131105],[-71.791153789,41.326094329],[-71.791089147,41.326085255],[-71.790933102,41.326055184],[-71.790854663,41.325996608],[-71.790817052,41.325884178],[-71.790674895,41.325854048],[-71.790531695,41.325859919],[-71.790403366,41.325898051],[-71.79031077,41.325984895],[-71.790226161,41.326019302],[-71.790115714,41.32608217],[-71.790081799,41.326153368],[-71.790061712,41.326282248],[-71.789999902,41.326388612],[-71.789945006,41.326513737],[-71.789849609,41.326482922],[-71.789788991,41.326454401],[-71.789670557,41.326512754],[-71.789595872,41.326607108],[-71.789665371,41.326667905],[-71.789691031,41.326784864],[-71.789591432,41.326882944],[-71.789574414,41.326966867],[-71.789649874,41.327029914],[-71.789661646,41.327144623],[-71.789649844,41.327211529],[-71.789639562,41.327269763],[-71.78960371,41.327286214],[-71.789461613,41.327265084],[-71.789445668,41.327212065],[-71.789433897,41.327172905],[-71.789441019,41.327057451],[-71.789423168,41.327019989],[-71.789303839,41.327052861],[-71.78920427,41.327123985],[-71.789198935,41.327212691],[-71.789178222,41.327243119],[-71.789130449,41.327276051],[-71.789011121,41.327284202],[-71.789008319,41.327213198],[-71.789007306,41.327187508],[-71.788993478,41.32710956],[-71.788922966,41.32707648],[-71.788840443,41.327062935],[-71.788690299,41.327057585],[-71.788529217,41.327062652],[-71.788313419,41.327072203],[-71.788217872,41.327137321],[-71.788118899,41.327215448],[-71.788103193,41.327323094],[-71.788159668,41.327452049],[-71.788262039,41.327487409],[-71.788474739,41.327549785],[-71.788628846,41.327572435],[-71.788773,41.327572554],[-71.788983792,41.327579483],[-71.789149791,41.327608138],[-71.78917262,41.327643365],[-71.78912285,41.327686802],[-71.789019406,41.327706188],[-71.788956791,41.327687383],[-71.788878173,41.327716559],[-71.788766712,41.327791393],[-71.788746595,41.327911317],[-71.788678944,41.327932253],[-71.788506866,41.327971056],[-71.788346738,41.327999398],[-71.788188577,41.328045756],[-71.787988693,41.328047797],[-71.787854403,41.328093395],[-71.787855297,41.328140631],[-71.787922919,41.328157932],[-71.788133651,41.328185096],[-71.788281798,41.328191251],[-71.788446903,41.328190655],[-71.788540363,41.328167483],[-71.78869462,41.328112125],[-71.788829863,41.328070298],[-71.788974136,41.328027695],[-71.78913033,41.327985108],[-71.789267659,41.327916294],[-71.789393067,41.327834725],[-71.78944695,41.327721551],[-71.789501786,41.327615187],[-71.789495945,41.327549189],[-71.789546639,41.327550009],[-71.789727628,41.327563658],[-71.789777309,41.327581689],[-71.789764345,41.327612415],[-71.789691657,41.327657312],[-71.789568245,41.32772018],[-71.789462686,41.327831],[-71.789408803,41.327933639],[-71.789324075,41.32807073],[-71.789108306,41.328090027],[-71.788932234,41.328122079],[-71.788768172,41.328133211],[-71.788698316,41.328269571],[-71.788582623,41.328490555],[-71.788477749,41.328781292],[-71.788476586,41.328894466],[-71.788374096,41.328940123],[-71.788217962,41.328944445],[-71.788198054,41.328969166],[-71.788017064,41.328983232],[-71.787867874,41.328985393],[-71.787802339,41.328918591],[-71.78767705,41.328927472],[-71.787618309,41.328969404],[-71.787565559,41.328999326],[-71.787474096,41.328983486],[-71.787414402,41.329013422],[-71.787397414,41.329058379],[-71.787388295,41.329175338],[-71.787330568,41.32919398],[-71.787247986,41.329233661],[-71.787239075,41.329202145],[-71.787242323,41.329062015],[-71.787339836,41.328983396],[-71.787363768,41.328951925],[-71.787350059,41.328831986],[-71.787445724,41.328724116],[-71.787472725,41.328601986],[-71.787585288,41.328503177],[-71.787595332,41.328420714],[-71.78749305,41.328335926],[-71.787388712,41.328308836],[-71.787298113,41.328353733],[-71.78715381,41.328426316],[-71.787081182,41.328465968],[-71.787052184,41.328552157],[-71.787078828,41.328670606],[-71.787082642,41.32877928],[-71.787088424,41.32889995],[-71.787095189,41.329022124],[-71.787026554,41.329041585],[-71.786910117,41.329102173],[-71.786815494,41.329192027],[-71.786716938,41.329273641],[-71.78663823,41.329362005],[-71.786631048,41.329484195],[-71.786584169,41.329588324],[-71.786557257,41.329610035],[-71.786414057,41.329618916],[-71.786404073,41.329675093],[-71.786376148,41.32971631],[-71.786312431,41.329740986],[-71.786258757,41.329734921],[-71.786146492,41.329662099],[-71.786035269,41.329579562],[-71.785983741,41.329475328],[-71.786006778,41.329371169],[-71.786042631,41.329341203],[-71.786168993,41.329283625],[-71.78615123,41.329193652],[-71.786103696,41.329091683],[-71.786088943,41.328979254],[-71.786084145,41.328860804],[-71.786118001,41.328839079],[-71.786233574,41.328723773],[-71.786245614,41.328652576],[-71.786124349,41.328623995],[-71.786061704,41.328628421],[-71.786007851,41.328707829],[-71.785960913,41.328839704],[-71.785951763,41.328956634],[-71.785950571,41.329073578],[-71.785855979,41.329158157],[-71.785704762,41.329187244],[-71.785635084,41.329245642],[-71.785479844,41.329306215],[-71.785378367,41.329343587],[-71.785228223,41.329358444],[-71.785188556,41.329293221],[-71.785109043,41.329255685],[-71.78506133,41.329257101],[-71.784922987,41.329331964],[-71.784780711,41.329376772],[-71.784705967,41.329481661],[-71.784623295,41.32957001],[-71.784615099,41.329695195],[-71.784660816,41.329714701],[-71.784806013,41.329709589],[-71.784978062,41.329694048],[-71.784982979,41.329715759],[-71.784867555,41.329786852],[-71.784818679,41.329854265],[-71.784769952,41.329864696],[-71.784729213,41.329853475],[-71.784650624,41.329875872],[-71.784543276,41.329859257],[-71.78442201,41.3297977],[-71.784300178,41.329770118],[-71.784268945,41.329763055],[-71.784255028,41.329769805],[-71.784160554,41.329777941],[-71.784018368,41.329759836],[-71.784052342,41.329684138],[-71.784114152,41.329572544],[-71.784114331,41.329456344],[-71.784096628,41.329354405],[-71.78398338,41.329283074],[-71.783906847,41.329245523],[-71.783825248,41.329291165],[-71.783826172,41.329333887],[-71.783884674,41.3294449],[-71.78389442,41.32956183],[-71.783829778,41.329561785],[-71.783748388,41.329469502],[-71.783655107,41.329353973],[-71.783595532,41.329315677],[-71.783595294,41.329439372],[-71.783644706,41.329619333],[-71.783471644,41.329657376],[-71.783431798,41.329681322],[-71.7833592,41.329696998],[-71.78322193,41.32973285],[-71.783084571,41.329804659],[-71.782946229,41.329878733],[-71.782779157,41.329877838],[-71.782668769,41.32990095],[-71.782546312,41.329967529],[-71.782461345,41.330003485],[-71.782418966,41.330021411],[-71.782405883,41.330129296],[-71.782374918,41.330190033],[-71.782349825,41.330339119],[-71.782319903,41.33038184],[-71.782204419,41.330463439],[-71.7821953,41.330584094],[-71.782158405,41.330642536],[-71.782088727,41.330671683],[-71.782081634,41.330746621],[-71.781977206,41.330767512],[-71.781968236,41.330778018],[-71.781845808,41.330841586],[-71.781714648,41.330779999],[-71.781583548,41.330683187],[-71.781505138,41.330581218],[-71.781503052,41.330652371],[-71.781508803,41.330780551],[-71.781601101,41.330881834],[-71.781716317,41.330971122],[-71.781644702,41.330981568],[-71.781499535,41.330973178],[-71.781462848,41.330901936],[-71.781437218,41.330789462],[-71.781385541,41.330761731],[-71.781253308,41.330766812],[-71.781113029,41.330789149],[-71.781068206,41.330825105],[-71.780948818,41.330878958],[-71.780799538,41.330932766],[-71.780665249,41.330940142],[-71.780617535,41.330958068],[-71.78056258,41.331095949],[-71.78055042,41.331219643],[-71.780606031,41.33127287],[-71.78061983,41.331347093],[-71.780486554,41.331367955],[-71.780297667,41.331337035],[-71.780190378,41.331286713],[-71.780171603,41.331204265],[-71.780258209,41.331145838],[-71.780272305,41.331062675],[-71.780182868,41.331012368],[-71.780104339,41.331007048],[-71.780024618,41.331087902],[-71.779915094,41.331165776],[-71.779898077,41.331231713],[-71.779888928,41.331346408],[-71.779827267,41.331370294],[-71.779668063,41.331419647],[-71.779496998,41.331443429],[-71.779317975,41.33144924],[-71.779151887,41.331467092],[-71.778994769,41.331467688],[-71.778843611,41.331460804],[-71.77868256,41.331464365],[-71.778557122,41.331517488],[-71.778478563,41.331531629],[-71.778285593,41.331553951],[-71.778138429,41.331559777],[-71.777967304,41.33160907],[-71.77789256,41.331687689],[-71.777768224,41.331725046],[-71.77760908,41.331733882],[-71.777440041,41.331739709],[-71.777365476,41.331719428],[-71.777309209,41.331676498],[-71.777261198,41.331639841],[-71.777225524,41.331579134],[-71.777195722,41.331570834],[-71.777035534,41.331593901],[-71.776881427,41.331586272],[-71.776720345,41.331573322],[-71.77665779,41.331532061],[-71.77642712,41.331528053],[-71.776323617,41.331551984],[-71.776188284,41.331587777],[-71.776026219,41.331596628],[-71.775883019,41.331589013],[-71.775721967,41.331585079],[-71.775575757,41.331584916],[-71.775424212,41.331594273],[-71.775353462,41.331607953],[-71.775271744,41.331604332],[-71.775198311,41.331602812],[-71.775113881,41.331600532],[-71.775040478,41.331596226],[-71.774943203,41.331588432],[-71.774842262,41.331580594],[-71.77474308,41.331583187],[-71.774732947,41.331583843],[-71.774661362,41.331588551],[-71.774586976,41.331596002],[-71.774499804,41.33159785],[-71.774410784,41.331583127],[-71.774325401,41.331582308],[-71.774253815,41.331591144],[-71.774182171,41.331602752],[-71.774107724,41.331621274],[-71.774037004,41.331631482],[-71.773952603,41.331611946],[-71.773882031,41.33158201],[-71.773831517,41.331595078],[-71.773768276,41.331568658],[-71.773700416,41.331547752],[-71.773681223,41.331521422],[-71.773703367,41.33150138],[-71.773776799,41.331495315],[-71.773859411,41.331492066],[-71.77394852,41.331479788],[-71.77400741,41.331440464],[-71.774034262,41.331387907],[-71.773965508,41.331353888],[-71.773878306,41.331352308],[-71.773802012,41.331378445],[-71.773726732,41.331380337],[-71.773650438,41.331409246],[-71.773590624,41.331449941],[-71.773622632,41.331483915],[-71.773627013,41.331541389],[-71.773555338,41.331551597],[-71.773471862,41.33153826],[-71.773388445,41.331509724],[-71.773314238,41.331465274],[-71.7732566,41.331415355],[-71.773290634,41.331397429],[-71.773369491,41.33141838],[-71.773422748,41.33141914],[-71.773438513,41.331372127],[-71.773412943,41.33133471],[-71.773343265,41.331314489],[-71.773265272,41.331303999],[-71.773218364,41.331328049],[-71.773205578,41.331321135],[-71.773193806,41.331267148],[-71.773216873,41.331227064],[-71.773275614,41.331237555],[-71.773345292,41.331268132],[-71.773425102,41.331275254],[-71.773515075,41.331274733],[-71.773597687,41.331267297],[-71.773658454,41.331230745],[-71.773644745,41.331212729],[-71.773555756,41.331193164],[-71.773485273,41.331153587],[-71.773431957,41.331165925],[-71.77339986,41.331156895],[-71.773404628,41.331102908],[-71.773394585,41.331092522],[-71.773320258,41.331091657],[-71.773318619,41.331034943],[-71.773300499,41.330970556],[-71.773247391,41.330931664],[-71.773194343,41.330889344],[-71.773145825,41.330844954],[-71.773080915,41.330780491],[-71.77303797,41.330719486],[-71.773054659,41.330666244],[-71.773093313,41.330644891],[-71.773152798,41.330689296],[-71.773229837,41.330721289],[-71.773282886,41.330764964],[-71.773329467,41.33082597],[-71.773374289,41.330870345],[-71.773422778,41.330915436],[-71.773496002,41.330968171],[-71.773563862,41.330997378],[-71.773649216,41.330998957],[-71.773729116,41.330981821],[-71.77381736,41.330953658],[-71.773898274,41.330921292],[-71.773966312,41.330890998],[-71.774029762,41.330856547],[-71.774006099,41.3308018],[-71.77395767,41.330748409],[-71.773892701,41.330690861],[-71.773835093,41.330622956],[-71.773788482,41.330570921],[-71.773709506,41.330573529],[-71.773630649,41.330557451],[-71.773555487,41.330531016],[-71.773507565,41.330575913],[-71.773488998,41.330638096],[-71.773456633,41.330697536],[-71.773395121,41.330705002],[-71.773310691,41.330694482],[-71.773226351,41.330662459],[-71.77315405,41.330609709],[-71.773086309,41.330553517],[-71.773017466,41.330549926],[-71.772927403,41.330575347],[-71.77290532,41.330604374],[-71.772904187,41.330659702],[-71.772884667,41.330716416],[-71.772813022,41.330734223],[-71.772749484,41.330779091],[-71.772696346,41.330767184],[-71.772623926,41.330735922],[-71.772536755,41.330719799],[-71.772456914,41.330716908],[-71.772382528,41.330719486],[-71.772305459,41.330717921],[-71.772225499,41.330746129],[-71.772153676,41.330798566],[-71.772094786,41.330830261],[-71.772061765,41.330822587],[-71.77203998,41.330756843],[-71.772036582,41.330693841],[-71.771981567,41.330670923],[-71.771889806,41.330668643],[-71.771867663,41.330697641],[-71.771877497,41.330761999],[-71.771916807,41.330809832],[-71.771989137,41.330857709],[-71.771980822,41.330871567],[-71.771938413,41.330922648],[-71.771895945,41.330986917],[-71.771851897,41.330985442],[-71.77178961,41.330944464],[-71.771762729,41.330895454],[-71.77175954,41.330895454],[-71.771760195,41.330952704],[-71.771734327,41.331001773],[-71.771780103,41.331036493],[-71.771848798,41.331079558],[-71.771823853,41.331114113],[-71.77176398,41.331170008],[-71.771721572,41.331217632],[-71.771681011,41.331263214],[-71.771622032,41.33133021],[-71.771583259,41.331379265],[-71.771551877,41.33142902],[-71.771535128,41.331482261],[-71.771519244,41.331561103],[-71.771507978,41.331633061],[-71.771515042,41.331705704],[-71.77153039,41.331772193],[-71.77150631,41.331826806],[-71.771452904,41.331873059],[-71.771392196,41.331910253],[-71.771325052,41.33194679],[-71.771241337,41.33198607],[-71.771174222,41.332012191],[-71.771098882,41.332038328],[-71.771028072,41.33206448],[-71.770937055,41.332100257],[-71.770851612,41.332129851],[-71.770759732,41.332146227],[-71.77066052,41.332162604],[-71.770581454,41.332185984],[-71.770510733,41.332203805],[-71.770418882,41.332220897],[-71.770346284,41.332235277],[-71.770242453,41.332257912],[-71.770146042,41.332279176],[-71.770044088,41.332287237],[-71.769969732,41.332280844],[-71.769867867,41.332265422],[-71.769767016,41.332248598],[-71.769667953,41.332222804],[-71.769618601,41.33217077],[-71.769561559,41.332195565],[-71.769491702,41.332212031],[-71.769419223,41.332214624],[-71.769336581,41.332215831],[-71.769253075,41.332205266],[-71.769163162,41.332191944],[-71.769145608,41.3322265],[-71.769137114,41.33228527],[-71.769068211,41.332303137],[-71.768979996,41.3323237],[-71.768878937,41.332348406],[-71.768789798,41.33237797],[-71.76871255,41.332409605],[-71.768645376,41.332447514],[-71.76857084,41.33249718],[-71.768520176,41.332542777],[-71.768485039,41.332615301],[-71.768441588,41.332689255],[-71.768416613,41.332741097],[-71.768393427,41.332794324],[-71.768354654,41.332860693],[-71.768281311,41.332832143],[-71.768271148,41.332853571],[-71.768247932,41.33291994],[-71.768210948,41.33298631],[-71.768174917,41.333049864],[-71.768139869,41.333098933],[-71.768100113,41.333161116],[-71.768064052,41.333229512],[-71.768039048,41.333300769],[-71.768025875,41.333371982],[-71.767999947,41.333437696],[-71.767966717,41.333487421],[-71.767983943,41.333540007],[-71.767977357,41.333576694],[-71.767918438,41.333625674],[-71.767872334,41.333678871],[-71.767825276,41.333738282],[-71.767780095,41.33379215],[-71.767733991,41.333843246],[-71.767692506,41.333894357],[-71.767660171,41.333946168],[-71.76764518,41.334020883],[-71.767661452,41.334092885],[-71.767632753,41.334155083],[-71.767608643,41.334213883],[-71.767592818,41.334277451],[-71.767587066,41.334336266],[-71.767589599,41.334394395],[-71.767604977,41.33445394],[-71.767636895,41.33451353],[-71.767679781,41.334577948],[-71.767721981,41.334589839],[-71.767793655,41.334572673],[-71.767801076,41.334553987],[-71.767790288,41.334493771],[-71.767775834,41.334431484],[-71.767775178,41.334362969],[-71.767757982,41.334297895],[-71.767748982,41.334243208],[-71.767741024,41.334164307],[-71.767744005,41.334106922],[-71.76775527,41.334048107],[-71.767791301,41.333981752],[-71.767834663,41.333923057],[-71.767886251,41.333880261],[-71.767966181,41.333867267],[-71.768037826,41.333855003],[-71.768112242,41.333839908],[-71.768192142,41.333823487],[-71.76826933,41.333809108],[-71.768358469,41.333785772],[-71.768390715,41.333754018],[-71.768373489,41.333701387],[-71.768331468,41.333649412],[-71.768259048,41.333622247],[-71.768199474,41.333594471],[-71.768179476,41.333539769],[-71.768178821,41.333476096],[-71.768208414,41.333411112],[-71.768268317,41.33334969],[-71.768275738,41.333328918],[-71.768233716,41.333276942],[-71.768194437,41.33322981],[-71.768176317,41.333166823],[-71.768194914,41.333103165],[-71.768231869,41.333043739],[-71.768277079,41.332975388],[-71.768320471,41.332911789],[-71.768353522,41.33291325],[-71.768389136,41.332965225],[-71.768405378,41.333032385],[-71.768419862,41.333095372],[-71.768436164,41.333148688],[-71.768458813,41.333226934],[-71.768480569,41.333297551],[-71.768511504,41.333371639],[-71.768534273,41.333425],[-71.768566102,41.33350046],[-71.768599808,41.33356972],[-71.768642694,41.333641782],[-71.768681914,41.333711088],[-71.768709183,41.333777547],[-71.768715382,41.333837062],[-71.768702269,41.333904147],[-71.768670797,41.333971918],[-71.768636763,41.333993956],[-71.76864031,41.334023014],[-71.768629193,41.334055528],[-71.768595934,41.334103882],[-71.768556237,41.334164008],[-71.768525749,41.334215835],[-71.768454015,41.334254429],[-71.768466741,41.334280744],[-71.768484145,41.334294632],[-71.768471211,41.334312618],[-71.768431574,41.334360257],[-71.768391848,41.334420353],[-71.768359512,41.334477022],[-71.768335521,41.33451435],[-71.768305123,41.334538504],[-71.768306822,41.334573105],[-71.768273622,41.334613845],[-71.768241346,41.334653899],[-71.768242121,41.334684342],[-71.768250197,41.334736258],[-71.768338144,41.334784165],[-71.768313915,41.334870636],[-71.768273234,41.334958419],[-71.768206686,41.335075915],[-71.768165439,41.335052982],[-71.768140554,41.335078523],[-71.768155158,41.335102767],[-71.768143207,41.335113823],[-71.768092483,41.335171834],[-71.768043637,41.335220858],[-71.768005788,41.335276142],[-71.767988265,41.335294768],[-71.767963439,41.335303724],[-71.767947763,41.33532998],[-71.767924696,41.335359663],[-71.767909914,41.335382462],[-71.767888814,41.335376188],[-71.767862141,41.335389972],[-71.767834514,41.335414857],[-71.767769217,41.335443735],[-71.767503291,41.335364997],[-71.767493159,41.335369825],[-71.767426938,41.335402191],[-71.767424226,41.33539249],[-71.767424345,41.33535859],[-71.767404288,41.335321173],[-71.767365843,41.335296169],[-71.767298847,41.335295349],[-71.767220795,41.335294515],[-71.767146587,41.335254878],[-71.767100871,41.335210502],[-71.767096519,41.335141286],[-71.767091185,41.335103214],[-71.767002434,41.335025564],[-71.766952962,41.3349929],[-71.766884208,41.334967837],[-71.766827524,41.334909603],[-71.766749769,41.334836096],[-71.766673863,41.334752202],[-71.766596168,41.33467041],[-71.766526729,41.334581673],[-71.766447306,41.334474936],[-71.766337723,41.334323198],[-71.766248047,41.334246874],[-71.766153872,41.33413665],[-71.766068935,41.334031984],[-71.766002327,41.333927378],[-71.765945762,41.333837986],[-71.765902907,41.333765224],[-71.765856206,41.333723605],[-71.765823394,41.333666801],[-71.76578775,41.333627284],[-71.765739292,41.333573207],[-71.765673518,41.333486572],[-71.765615106,41.33339788],[-71.765584052,41.333358362],[-71.765537441,41.333309159],[-71.765490025,41.333227381],[-71.765460044,41.333145678],[-71.76545921,41.333126307],[-71.765429914,41.333101347],[-71.765411615,41.333082587],[-71.765414506,41.333046615],[-71.7653853,41.333007812],[-71.765342385,41.332944766],[-71.76532796,41.332877606],[-71.765262812,41.3328747],[-71.7652556,41.3328311],[-71.765214324,41.332830995],[-71.765209854,41.332795024],[-71.765230119,41.332783312],[-71.765243113,41.332745984],[-71.765243351,41.332680255],[-71.76524815,41.332622811],[-71.765252978,41.332567453],[-71.765252322,41.332498267],[-71.76525712,41.332442254],[-71.765251845,41.332386866],[-71.765238225,41.332332864],[-71.765218318,41.33227472],[-71.765228629,41.33220762],[-71.765216917,41.332150146],[-71.765208036,41.33208096],[-71.765205562,41.332008973],[-71.765205771,41.331947401],[-71.7651425,41.331933409],[-71.765070915,41.331926376],[-71.765069038,41.331936032],[-71.765074313,41.331996918],[-71.76507777,41.332051575],[-71.765084833,41.332128406],[-71.765089124,41.332205921],[-71.765088826,41.332286209],[-71.765088528,41.332358152],[-71.76508829,41.332417637],[-71.765088081,41.332476467],[-71.765084177,41.332530454],[-71.765072107,41.332569152],[-71.7650491,41.332591221],[-71.765017807,41.332600862],[-71.764975637,41.332592472],[-71.764935374,41.332555011],[-71.764859527,41.332462832],[-71.764747202,41.332316563],[-71.76462388,41.332160637],[-71.76453343,41.332047641],[-71.764497846,41.331994951],[-71.764456719,41.331945762],[-71.764404625,41.331891656],[-71.764357984,41.331842437],[-71.764312327,41.331782848],[-71.764274836,41.331736386],[-71.764222801,41.331665695],[-71.764177144,41.331602618],[-71.764129668,41.331540957],[-71.764085829,41.331479982],[-71.76404199,41.331421033],[-71.763999969,41.331367701],[-71.763950646,41.33130531],[-71.763811797,41.331119552],[-71.763719618,41.330985799],[-71.763710529,41.330960885],[-71.763743639,41.330943659],[-71.763774008,41.330929175],[-71.763815284,41.330934793],[-71.763864815,41.330946699],[-71.763891459,41.330943972],[-71.763830304,41.330850467],[-71.763673455,41.330816194],[-71.763582677,41.3307897],[-71.763490081,41.330763221],[-71.763458431,41.330747917],[-71.763400525,41.330675572],[-71.76337868,41.330605894],[-71.763346791,41.330549777],[-71.763283014,41.330429256],[-71.763096929,41.330118135],[-71.763059109,41.33004947],[-71.762932867,41.329820246],[-71.762924671,41.329800874],[-71.762916505,41.329775259],[-71.762913883,41.32975173],[-71.762922496,41.329649344],[-71.762932926,41.329569802],[-71.762937725,41.329514444],[-71.762942523,41.329455629],[-71.762949258,41.329378828],[-71.762952328,41.329302058],[-71.762955278,41.329246014],[-71.762960106,41.329185829],[-71.762967646,41.329131857],[-71.762978047,41.329059228],[-71.762988448,41.328981087],[-71.762995094,41.328924358],[-71.762998044,41.328869],[-71.763002932,41.328796387],[-71.763010561,41.328722328],[-71.763021886,41.3286428],[-71.763031363,41.328570873],[-71.763040781,41.328506529],[-71.763044715,41.328440785],[-71.763048679,41.328368872],[-71.763056248,41.328303829],[-71.763064772,41.328244373],[-71.76306957,41.328182787],[-71.76307717,41.328119129],[-71.763083816,41.328057587],[-71.763089538,41.32800293],[-71.763097137,41.327947572],[-71.763105631,41.327883244],[-71.763108641,41.3278175],[-71.763117164,41.32775183],[-71.7631495,41.327697247],[-71.763177037,41.327691078],[-71.763223857,41.327689782],[-71.763241142,41.327734068],[-71.763239086,41.327792898],[-71.763226002,41.327851683],[-71.763223946,41.32791464],[-71.763225555,41.327969298],[-71.763211519,41.328034997],[-71.7631993,41.328106925],[-71.763190776,41.328176796],[-71.763181329,41.328248054],[-71.763174623,41.328323483],[-71.763173372,41.328401655],[-71.76316759,41.328475699],[-71.763153523,41.328548327],[-71.763138562,41.328618839],[-71.763132811,41.328680411],[-71.763142645,41.328748241],[-71.763184696,41.328795373],[-71.763262749,41.328794166],[-71.763347238,41.328775674],[-71.76343447,41.328768954],[-71.763508677,41.328803018],[-71.763600379,41.328830183],[-71.763672948,41.328818589],[-71.763763785,41.328828484],[-71.763856411,41.328846663],[-71.763958275,41.328859359],[-71.764062852,41.328871369],[-71.764136255,41.328879118],[-71.764241815,41.328884199],[-71.764341891,41.328878209],[-71.764439195,41.328886017],[-71.764510751,41.328891024],[-71.764617264,41.328877419],[-71.764714599,41.3288728],[-71.764788836,41.328897193],[-71.764873266,41.328908429],[-71.764961421,41.328896865],[-71.765047789,41.328876957],[-71.765122145,41.32887575],[-71.765176147,41.328913227],[-71.76522845,41.328929245],[-71.765307456,41.328899682],[-71.765361577,41.328914329],[-71.765424788,41.328940764],[-71.765504718,41.3289271],[-71.765576303,41.328933477],[-71.765643239,41.328952998],[-71.765716672,41.328946948],[-71.765809447,41.328931913],[-71.765907764,41.32891275],[-71.765980333,41.328897029],[-71.766047388,41.328875691],[-71.766136557,41.328854457],[-71.766231954,41.328872666],[-71.766309917,41.328885958],[-71.76639536,41.32886678],[-71.766483486,41.32886143],[-71.766561449,41.328884438],[-71.766632199,41.32886453],[-71.766716748,41.328843966],[-71.766804755,41.328858644],[-71.766880929,41.328863665],[-71.766950816,41.328838915],[-71.7670362,41.328840479],[-71.767127931,41.328847602],[-71.767224371,41.328838825],[-71.767328113,41.328834876],[-71.767400622,41.328832969],[-71.767508954,41.328835994],[-71.767600715,41.328833401],[-71.767678857,41.328802437],[-71.767757833,41.328800559],[-71.767831177,41.328827694],[-71.767898232,41.328816786],[-71.767968953,41.328795493],[-71.768051475,41.328821927],[-71.768129528,41.328813776],[-71.768220484,41.328800827],[-71.768303126,41.328789264],[-71.768368453,41.328752726],[-71.768439204,41.32872729],[-71.768510908,41.328709453],[-71.768590808,41.328699246],[-71.768697292,41.328689113],[-71.768768936,41.328682333],[-71.768838733,41.328669325],[-71.768914998,41.328652889],[-71.768984795,41.328637123],[-71.769080341,41.328619331],[-71.769181371,41.328607112],[-71.769262165,41.32859759],[-71.769342065,41.328588098],[-71.769449472,41.328586936],[-71.769548655,41.328582972],[-71.769642323,41.328563794],[-71.769736886,41.328561947],[-71.769821316,41.328567654],[-71.769901186,41.32856369],[-71.769972891,41.328534767],[-71.770042717,41.328512788],[-71.770128012,41.328540653],[-71.770217061,41.328535303],[-71.770286053,41.328501508],[-71.770363152,41.328496858],[-71.770438373,41.328511536],[-71.770527422,41.328501359],[-71.770605564,41.328478038],[-71.770674318,41.328493372],[-71.770747811,41.328486621],[-71.770828664,41.328462601],[-71.770915002,41.328455135],[-71.771011382,41.32844083],[-71.771092266,41.32842645],[-71.771172166,41.328410715],[-71.771245658,41.328402564],[-71.771319985,41.328405499],[-71.771392494,41.328407064],[-71.771475106,41.328400984],[-71.771555007,41.328390807],[-71.771633089,41.328380555],[-71.771712065,41.328370333],[-71.771791041,41.328358069],[-71.77187556,41.328343734],[-71.771983922,41.3283301],[-71.772084862,41.328335851],[-71.772167504,41.328329116],[-71.772256643,41.32830371],[-71.772356808,41.328277618],[-71.77245602,41.328250885],[-71.772557944,41.328243434],[-71.772661716,41.328240246],[-71.772761792,41.328218281],[-71.772835314,41.328203917],[-71.772912413,41.32820338],[-71.772988528,41.328219458],[-71.773077518,41.328243166],[-71.773172051,41.328232288],[-71.773246557,41.328202009],[-71.773319006,41.32821393],[-71.773393422,41.328203008],[-71.773472458,41.328173459],[-71.773545951,41.328163221],[-71.773616642,41.328152284],[-71.7736938,41.328139991],[-71.773800373,41.328125671],[-71.773871958,41.328119606],[-71.773943573,41.328110769],[-71.774016172,41.328098446],[-71.774089664,41.328086883],[-71.774160326,41.328075945],[-71.77423197,41.32806851],[-71.774334818,41.328054875],[-71.774404645,41.328042552],[-71.774474442,41.328029543],[-71.774546057,41.328021422],[-71.774618655,41.328009099],[-71.77468574,41.327987805],[-71.77471754,41.327975705],[-71.774751008,41.327963024],[-71.774816275,41.327934071],[-71.774908185,41.327901766],[-71.775009215,41.327890918],[-71.77509281,41.327868253],[-71.775166392,41.327828258],[-71.775260091,41.327804953],[-71.775329024,41.327788487],[-71.775428236,41.327760354],[-71.775487185,41.327748686],[-71.775874078,41.327699617],[-71.776570231,41.327633604],[-71.777072608,41.327507451],[-71.777291119,41.327477634],[-71.777694255,41.327422619],[-71.778310895,41.327333301],[-71.778894126,41.32723856],[-71.779044926,41.327214107],[-71.779634774,41.327088743],[-71.780305177,41.326956019],[-71.780979544,41.326845706],[-71.781496793,41.326740503],[-71.781929523,41.326626271],[-71.782035917,41.326610625],[-71.782739103,41.326506346],[-71.78346014,41.326416343],[-71.783540726,41.326395467],[-71.78428489,41.326255649],[-71.784481645,41.326218694],[-71.785154104,41.326044664],[-71.785716206,41.325857818],[-71.786468118,41.325724304],[-71.787285686,41.325579673],[-71.788012862,41.325371221],[-71.788207829,41.325319707],[-71.789123952,41.325096384],[-71.789972454,41.324854299],[-71.790436059,41.324705541],[-71.790645927,41.324661493],[-71.791078538,41.324607953],[-71.791727006,41.324503556],[-71.792259097,41.324385613],[-71.792367578,41.324341461],[-71.79301703,41.324204847],[-71.793608695,41.324163392],[-71.794035316,41.324123278],[-71.794225276,41.324091211],[-71.794712573,41.324038401],[-71.794730484,41.324026406],[-71.795279503,41.323897973],[-71.795924991,41.323777094],[-71.796274036,41.323744431],[-71.796595633,41.323726535]]],[[[-71.796831846,41.323713407],[-71.796831608,41.323713437],[-71.796797544,41.323715314],[-71.796831846,41.323713407]]],[[[-71.807183474,41.323664516],[-71.807183474,41.323664531],[-71.807133704,41.323693946],[-71.807063103,41.323735684],[-71.807049125,41.323768377],[-71.807062626,41.323735431],[-71.807183474,41.323664516]]],[[[-71.809865594,41.323621646],[-71.809824616,41.32367143],[-71.809752494,41.323733851],[-71.809806377,41.323686659],[-71.809824288,41.323670954],[-71.809865594,41.323621646]]],[[[-71.80793041,41.323508456],[-71.807851821,41.323516637],[-71.807790071,41.323517069],[-71.807851613,41.323516428],[-71.80793041,41.323508456]]],[[[-71.807261616,41.323454425],[-71.807412624,41.32346043],[-71.807566524,41.323489413],[-71.807412416,41.323460832],[-71.807261348,41.323454767],[-71.807257444,41.323458523],[-71.807261616,41.323454425]]],[[[-71.809970915,41.323340788],[-71.809919208,41.323521107],[-71.809936941,41.323457405],[-71.809970915,41.323340788]]],[[[-71.808195502,41.323277488],[-71.808195174,41.323277771],[-71.808055878,41.323339894],[-71.808005154,41.323383883],[-71.808055609,41.323339432],[-71.808195502,41.323277488]]],[[[-71.800281852,41.323231354],[-71.800281614,41.323231429],[-71.799822628,41.323324427],[-71.799234718,41.323450968],[-71.799750656,41.323338032],[-71.800281852,41.323231354]]],[[[-71.809896111,41.323165849],[-71.809920639,41.323191434],[-71.80994603,41.323233753],[-71.809920341,41.32319133],[-71.809896111,41.323165849]]],[[[-71.801041424,41.323087797],[-71.800971627,41.323098436],[-71.800486624,41.323169425],[-71.800353676,41.323209643],[-71.80047673,41.323169962],[-71.801041424,41.323087797]]],[[[-71.809684247,41.323019713],[-71.809822738,41.323092341],[-71.809764415,41.323064536],[-71.809684247,41.323019713]]],[[[-71.80878818,41.322941616],[-71.808690727,41.322970822],[-71.808565408,41.323000744],[-71.808481872,41.32301341],[-71.808440655,41.32306017],[-71.80848062,41.323013425],[-71.808481634,41.323013425],[-71.808565617,41.323000431],[-71.808690637,41.322970435],[-71.80878818,41.322941616]]],[[[-71.802046925,41.322917849],[-71.802033633,41.322920427],[-71.80145061,41.323025435],[-71.801426381,41.323029116],[-71.802046925,41.322917849]]],[[[-71.809311628,41.322847426],[-71.809350789,41.322848231],[-71.80931133,41.32284759],[-71.809134662,41.322877824],[-71.809311628,41.322847426]]],[[[-71.804028839,41.322553024],[-71.803309619,41.322669432],[-71.803083628,41.322708428],[-71.802618116,41.322804794],[-71.803140044,41.322696075],[-71.804028839,41.322553024]]],[[[-71.804387927,41.322443679],[-71.804286629,41.322473437],[-71.804196745,41.32250689],[-71.804298669,41.322468355],[-71.804387927,41.322443679]]],[[[-71.805030853,41.322268665],[-71.805016637,41.322271436],[-71.804732621,41.322348431],[-71.804697633,41.322358042],[-71.804998904,41.322274759],[-71.805030853,41.322268665]]],[[[-71.806819886,41.321903601],[-71.806738615,41.321915433],[-71.805932611,41.322081432],[-71.805805624,41.322118431],[-71.805804551,41.32211864],[-71.805911869,41.322085068],[-71.806719452,41.321917042],[-71.806819886,41.321903601]]],[[[-71.807868868,41.32169494],[-71.807701617,41.321723431],[-71.806896627,41.321892425],[-71.806885511,41.32189405],[-71.807670206,41.321728081],[-71.807868868,41.32169494]]],[[[-71.810054809,41.321275488],[-71.809976637,41.321290433],[-71.809268624,41.321428433],[-71.808523625,41.321585432],[-71.808521271,41.321585819],[-71.809159935,41.321451113],[-71.809434444,41.321393564],[-71.810054809,41.321275488]]],[[[-71.81053713,41.321172103],[-71.81043911,41.321193904],[-71.810492605,41.321180716],[-71.81053713,41.321172103]]],[[[-71.811673492,41.320952252],[-71.811567634,41.320973426],[-71.811336011,41.321017548],[-71.811673492,41.320952252]]],[[[-71.811848551,41.320922032],[-71.811678886,41.320951208],[-71.81170091,41.320946947],[-71.811848551,41.320922032]]],[[[-71.812868476,41.320713028],[-71.812868625,41.320713431],[-71.812208891,41.320849463],[-71.812868476,41.320713028]]]]}}"}, +{"type": "precinct", "typeId": 3606, "areaId": 26010, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":349,\"NAME\":\"3606\",\"SHAPE_Length\":0.19289844691172,\"SHAPE_Area\":-0.00090658137059088},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.842903518,41.404259266],[-71.842927362,41.40426308],[-71.842895373,41.404239798],[-71.842903518,41.404259266]]],[[[-71.843416973,41.405368728],[-71.843382046,41.405444716],[-71.843383422,41.405504243],[-71.843393556,41.405542292],[-71.843446152,41.405498887],[-71.843488925,41.405453225],[-71.843515047,41.405383667],[-71.843489616,41.405319043],[-71.843465583,41.405318177],[-71.843416973,41.405368728]]],[[[-71.841432374,41.403910843],[-71.841476351,41.404002331],[-71.841530644,41.404103142],[-71.841616277,41.404208],[-71.8416598,41.404259055],[-71.841696093,41.404315848],[-71.841732341,41.404363974],[-71.841782457,41.40442697],[-71.841875374,41.404542166],[-71.841923971,41.404604984],[-71.841996511,41.404686392],[-71.842038315,41.404733953],[-71.842086132,41.404781221],[-71.842104727,41.404839965],[-71.84213529,41.404892979],[-71.842178922,41.404912586],[-71.842207631,41.40491321],[-71.842271807,41.404980783],[-71.842312918,41.405035184],[-71.842362485,41.405097427],[-71.842421174,41.405172907],[-71.842495065,41.405268445],[-71.842554283,41.40534063],[-71.842601897,41.40540679],[-71.842682544,41.405487259],[-71.842726793,41.405531724],[-71.842780338,41.405587734],[-71.842826795,41.405641913],[-71.842902762,41.405738999],[-71.84295924,41.405827179],[-71.843003819,41.405899499],[-71.843048473,41.405945747],[-71.84313222,41.405939642],[-71.843188855,41.405895883],[-71.843228488,41.405824912],[-71.843248103,41.40575407],[-71.843265373,41.405682183],[-71.843292797,41.405588539],[-71.843321202,41.405537179],[-71.843363518,41.405462496],[-71.843369402,41.405391443],[-71.843386151,41.405330261],[-71.843396822,41.405251006],[-71.843338374,41.405140763],[-71.843288898,41.405067039],[-71.843285051,41.404999972],[-71.843261965,41.404907576],[-71.843247094,41.404783069],[-71.843235019,41.404722361],[-71.843214051,41.404657449],[-71.843199575,41.404619574],[-71.843147352,41.404612617],[-71.843079918,41.404543498],[-71.843038826,41.40442346],[-71.843032672,41.404391254],[-71.842952659,41.404332945],[-71.84286328,41.404267024],[-71.842811793,41.404226743],[-71.842746338,41.404169877],[-71.842588558,41.404058716],[-71.842509428,41.404000633],[-71.84244578,41.403958146],[-71.842382531,41.403922268],[-71.842323386,41.403886949],[-71.842288289,41.403867042],[-71.842261716,41.403879791],[-71.842144118,41.403813726],[-71.842034204,41.403753057],[-71.841960952,41.403709524],[-71.841866343,41.403671017],[-71.841782278,41.403650867],[-71.84166443,41.403594773],[-71.841635386,41.403570594],[-71.841633888,41.403487579],[-71.841674457,41.403409722],[-71.84172175,41.40336885],[-71.841732879,41.403295632],[-71.841715579,41.403269359],[-71.841636617,41.403289445],[-71.841593239,41.403294857],[-71.841545963,41.40325797],[-71.841479112,41.403322846],[-71.841453412,41.403357274],[-71.841382117,41.403373975],[-71.841298878,41.403412827],[-71.841241561,41.40345382],[-71.841261718,41.403579181],[-71.841279886,41.403631935],[-71.841305168,41.403685971],[-71.841334661,41.403743677],[-71.841372529,41.403811375],[-71.841432374,41.403910843]]],[[[-71.8125026,41.41899461],[-71.812661862,41.419056819],[-71.812663713,41.419107151],[-71.812763517,41.419150493],[-71.812923382,41.4191864],[-71.813075226,41.419222167],[-71.81321836,41.419247324],[-71.813375847,41.419256112],[-71.813567321,41.419262382],[-71.813717942,41.419265082],[-71.813944382,41.419270251],[-71.814111013,41.419272426],[-71.814145227,41.419273019],[-71.814285578,41.419275426],[-71.814432143,41.419281109],[-71.814601353,41.419301321],[-71.8147785,41.419323135],[-71.814908806,41.419340503],[-71.814934709,41.419343954],[-71.815104669,41.419374706],[-71.815275125,41.419426475],[-71.815429233,41.419452536],[-71.815582215,41.41948457],[-71.8157551,41.419516868],[-71.815928941,41.41955216],[-71.816096547,41.41959863],[-71.816341715,41.419612341],[-71.816484051,41.419629217],[-71.81662486,41.419669355],[-71.816803915,41.419695712],[-71.816980287,41.419707736],[-71.817129758,41.419717205],[-71.817421546,41.419745765],[-71.818025049,41.419714505],[-71.818532225,41.41966249],[-71.819050324,41.419570031],[-71.819474144,41.41949663],[-71.82003518,41.419356637],[-71.820496317,41.41918003],[-71.820817066,41.418944533],[-71.821072155,41.418778236],[-71.821144805,41.418723572],[-71.821146463,41.418719855],[-71.821342563,41.418481042],[-71.821655066,41.418256726],[-71.821999194,41.418001264],[-71.822213001,41.417904084],[-71.822545013,41.417785921],[-71.822603841,41.417744589],[-71.822944182,41.417560124],[-71.823026176,41.417515685],[-71.823249824,41.417424651],[-71.823318901,41.417394226],[-71.823413233,41.417347897],[-71.823521994,41.417217825],[-71.823668018,41.417115276],[-71.823870055,41.416918801],[-71.824039181,41.416635511],[-71.824122212,41.416451789],[-71.824140451,41.416307037],[-71.824142482,41.416245076],[-71.824136904,41.416143639],[-71.824139202,41.416037469],[-71.82414072,41.415976195],[-71.824138012,41.415889936],[-71.824141902,41.415798421],[-71.824149346,41.415706805],[-71.824175374,41.415637778],[-71.824235413,41.415492382],[-71.824268568,41.415426903],[-71.824317216,41.415361242],[-71.824372702,41.415290051],[-71.82450671,41.415130565],[-71.824594896,41.415073643],[-71.824728113,41.414987412],[-71.824799068,41.414929488],[-71.824904786,41.414842419],[-71.824995632,41.414789012],[-71.825096561,41.414734845],[-71.825163648,41.414693489],[-71.825246766,41.414643785],[-71.825349897,41.414598805],[-71.825425764,41.414575698],[-71.82554935,41.414550694],[-71.825631051,41.414546003],[-71.825758816,41.414536493],[-71.825902105,41.41452081],[-71.826060796,41.414498885],[-71.826203989,41.414482264],[-71.826283147,41.414473281],[-71.826454409,41.414462274],[-71.826622467,41.414448373],[-71.826784946,41.414436728],[-71.826908858,41.414428531],[-71.827064573,41.414418986],[-71.827145919,41.414410224],[-71.827237879,41.414397682],[-71.827340651,41.414384216],[-71.827428003,41.414373584],[-71.827577573,41.414350494],[-71.82765506,41.414329599],[-71.82773913,41.414300566],[-71.827818919,41.414272345],[-71.827922795,41.414236829],[-71.828022975,41.41419142],[-71.828114938,41.414143313],[-71.828185457,41.414108235],[-71.828272289,41.414072904],[-71.828350085,41.414047022],[-71.828418927,41.414022766],[-71.828619455,41.413947522],[-71.828789877,41.413872615],[-71.828880135,41.413848023],[-71.829012405,41.413804672],[-71.829126116,41.413755885],[-71.829253168,41.413701822],[-71.829396392,41.41363168],[-71.829536051,41.413553636],[-71.829700929,41.413482197],[-71.829885094,41.41339801],[-71.830017199,41.413334349],[-71.830141784,41.413285301],[-71.830205915,41.413260988],[-71.830308847,41.413213809],[-71.830402475,41.413159155],[-71.830493964,41.413113929],[-71.830629863,41.413043761],[-71.830695355,41.413018301],[-71.830850602,41.412953315],[-71.830978072,41.412904418],[-71.831175845,41.412826479],[-71.831281857,41.412781736],[-71.831458154,41.412698415],[-71.831590971,41.412643693],[-71.831704274,41.412599181],[-71.831802778,41.412559766],[-71.831882727,41.412533738],[-71.831950375,41.412508225],[-71.832077129,41.412468317],[-71.832204822,41.412421819],[-71.832281957,41.412392093],[-71.832387925,41.41235117],[-71.832497929,41.412315151],[-71.832574166,41.41228799],[-71.832676056,41.412245522],[-71.832757318,41.412209061],[-71.832770014,41.41220262],[-71.832903128,41.412135134],[-71.833058794,41.412058022],[-71.833139663,41.412016027],[-71.833214083,41.411984342],[-71.833308096,41.411934441],[-71.833427848,41.411880029],[-71.833525995,41.411836657],[-71.833600925,41.411797652],[-71.833702321,41.411736157],[-71.833757109,41.411679531],[-71.833789764,41.411625577],[-71.833838855,41.411571781],[-71.833909371,41.411537065],[-71.833978182,41.411507706],[-71.834086991,41.41147034],[-71.834176888,41.411441377],[-71.834279654,41.411428134],[-71.834357219,41.411417456],[-71.834432068,41.411404546],[-71.834561769,41.41140083],[-71.834642721,41.4114051],[-71.834696944,41.411445674],[-71.834747793,41.411533279],[-71.834846137,41.411605263],[-71.834943297,41.411630161],[-71.835043131,41.411643318],[-71.835164146,41.411657831],[-71.835253415,41.411666536],[-71.835327399,41.411674279],[-71.835407019,41.411726649],[-71.835455062,41.411776389],[-71.835531046,41.411824492],[-71.835622915,41.411860153],[-71.835722979,41.411923875],[-71.835811484,41.411996322],[-71.835866434,41.412042176],[-71.835962532,41.412108471],[-71.836055612,41.412137176],[-71.836130908,41.412151936],[-71.836214504,41.412161961],[-71.836304435,41.412169245],[-71.836395987,41.412178629],[-71.836485921,41.412186507],[-71.836580187,41.412180034],[-71.836658676,41.412171914],[-71.836708268,41.412156514],[-71.836773146,41.412101116],[-71.83684709,41.412048092],[-71.836923177,41.41201011],[-71.837016494,41.411996618],[-71.837012395,41.412014514],[-71.836955206,41.412053012],[-71.836960507,41.412079298],[-71.837000266,41.41210132],[-71.837135104,41.412080319],[-71.837239846,41.41207299],[-71.837315355,41.412081917],[-71.837412842,41.412128584],[-71.837535144,41.412185927],[-71.837543573,41.412188715],[-71.837670231,41.412230699],[-71.837773424,41.412240985],[-71.837994858,41.412257854],[-71.838152145,41.412271686],[-71.838305871,41.412278278],[-71.83839542,41.412276322],[-71.838539588,41.412285183],[-71.838652236,41.4123085],[-71.838779186,41.412324638],[-71.838865955,41.412302176],[-71.83896026,41.412274019],[-71.839040013,41.412263607],[-71.839114546,41.412259979],[-71.839190764,41.412241436],[-71.839262379,41.412220001],[-71.839339101,41.412199169],[-71.839383829,41.412183302],[-71.839411817,41.412173362],[-71.839482153,41.412145505],[-71.839587829,41.412095839],[-71.839688874,41.412043785],[-71.839795688,41.411932869],[-71.83984935,41.411876793],[-71.839914627,41.411810916],[-71.839964563,41.411751215],[-71.840008522,41.411692903],[-71.840065016,41.411632335],[-71.840111282,41.41158536],[-71.840177587,41.411512917],[-71.840274352,41.411432745],[-71.840345533,41.411363306],[-71.840446275,41.411288337],[-71.840501545,41.411249545],[-71.840625325,41.411153467],[-71.840705119,41.411116295],[-71.840786586,41.411091102],[-71.840878018,41.411054399],[-71.841004212,41.411007598],[-71.84113222,41.410965206],[-71.841301037,41.410907027],[-71.841424149,41.410857765],[-71.841493783,41.410829794],[-71.841643635,41.410770321],[-71.841739634,41.410718349],[-71.841813658,41.410681719],[-71.841923109,41.41063451],[-71.842009288,41.410586935],[-71.842137954,41.410507856],[-71.842202713,41.410454124],[-71.842271885,41.410378744],[-71.842325537,41.4103156],[-71.842368573,41.410244185],[-71.842417793,41.410152809],[-71.842449043,41.410098879],[-71.842451437,41.410033989],[-71.842488686,41.409982809],[-71.842477726,41.409897444],[-71.84244131,41.409754247],[-71.842434557,41.40968895],[-71.842428564,41.40962365],[-71.842431605,41.409520176],[-71.842436216,41.409449424],[-71.842441809,41.409392323],[-71.842443655,41.40937361],[-71.842420121,41.409305847],[-71.842404551,41.409250776],[-71.84237957,41.409185212],[-71.842353257,41.409114781],[-71.842311809,41.409002452],[-71.842280357,41.408919434],[-71.842246925,41.408829654],[-71.842243305,41.408770773],[-71.842238538,41.408678598],[-71.842227659,41.408585342],[-71.842211298,41.408454595],[-71.842201279,41.408374671],[-71.84220294,41.408297547],[-71.842203382,41.408213863],[-71.84220046,41.40813744],[-71.842220325,41.408079153],[-71.842248886,41.408016586],[-71.842281408,41.407950554],[-71.842304718,41.407888804],[-71.842324644,41.407819036],[-71.842378967,41.407733683],[-71.842433747,41.407637144],[-71.84245766,41.407568782],[-71.842510361,41.407469574],[-71.842548201,41.407380908],[-71.842570006,41.407292975],[-71.842583864,41.407230544],[-71.842622393,41.40710526],[-71.842648599,41.407034032],[-71.84268539,41.40695964],[-71.842722851,41.406891512],[-71.842760805,41.406795687],[-71.842831599,41.406706053],[-71.842845034,41.406632439],[-71.84286115,41.40656609],[-71.842902142,41.406476202],[-71.842926629,41.406424786],[-71.842961718,41.406356207],[-71.842997301,41.406265969],[-71.843012273,41.40619585],[-71.843009669,41.406128162],[-71.842972106,41.40607876],[-71.842878194,41.406000297],[-71.842825943,41.405919035],[-71.842794234,41.405861976],[-71.842731533,41.405774684],[-71.842653471,41.405689153],[-71.842598998,41.405618371],[-71.842537384,41.405546879],[-71.84248016,41.405484454],[-71.842413524,41.405399483],[-71.842353929,41.405325149],[-71.842296592,41.405240859],[-71.842254749,41.405174454],[-71.842216535,41.405128073],[-71.842064853,41.404980896],[-71.841983794,41.404891142],[-71.8419286,41.404821529],[-71.841866916,41.404759825],[-71.841798081,41.404678245],[-71.841709918,41.404565848],[-71.841596384,41.404434933],[-71.841539272,41.404370082],[-71.841496168,41.404317905],[-71.841401737,41.404209071],[-71.841356551,41.404153722],[-71.84131183,41.404082568],[-71.841223014,41.403943917],[-71.841150849,41.403817681],[-71.841109385,41.403712967],[-71.841093374,41.403654375],[-71.841058708,41.403525077],[-71.841040012,41.403440901],[-71.841037687,41.403379753],[-71.84104757,41.403294555],[-71.841077105,41.40325003],[-71.841147036,41.403216501],[-71.841240271,41.403183954],[-71.841272747,41.403109324],[-71.841297763,41.403054589],[-71.841302862,41.403007347],[-71.841275961,41.402928227],[-71.841284571,41.402872878],[-71.841299261,41.402777625],[-71.841307602,41.402723101],[-71.841300099,41.40265346],[-71.841273698,41.40257706],[-71.841245488,41.402526417],[-71.84119191,41.402422631],[-71.841193062,41.402335103],[-71.841191199,41.402275051],[-71.841188281,41.402216671],[-71.841222622,41.402034133],[-71.841230105,41.401949056],[-71.841216533,41.401886249],[-71.841192766,41.401831293],[-71.841179411,41.401769309],[-71.841190863,41.401705672],[-71.841214755,41.401633468],[-71.841208655,41.401576356],[-71.841183302,41.401467958],[-71.841138772,41.401264658],[-71.841056273,41.401055228],[-71.841057534,41.400901238],[-71.840992256,41.400720527],[-71.840951816,41.400613637],[-71.840927215,41.400224732],[-71.840914317,41.399907147],[-71.840928042,41.399598402],[-71.840972864,41.399364009],[-71.841084435,41.399109978],[-71.841238574,41.398777649],[-71.841375943,41.39849118],[-71.841530876,41.398212411],[-71.841677789,41.397974261],[-71.841776337,41.397809416],[-71.841825076,41.397674199],[-71.841861032,41.397603583],[-71.841914725,41.397573463],[-71.841929199,41.397535913],[-71.841978492,41.397408036],[-71.841985594,41.397389672],[-71.841993067,41.397314636],[-71.842044403,41.397252024],[-71.842118876,41.397083843],[-71.842149828,41.396910577],[-71.842172096,41.396743534],[-71.842194367,41.396548132],[-71.842144771,41.396264825],[-71.842059707,41.396092773],[-71.842090555,41.395974945],[-71.842127471,41.39583281],[-71.842155984,41.39567508],[-71.842163053,41.395621451],[-71.842172691,41.395548168],[-71.842157594,41.395397155],[-71.842099462,41.39523504],[-71.842052789,41.395145317],[-71.841932419,41.394958694],[-71.841832338,41.394840039],[-71.841764257,41.394825124],[-71.841757931,41.394863908],[-71.841842201,41.395076329],[-71.841900253,41.395223419],[-71.84195407,41.395414181],[-71.841976905,41.395622027],[-71.841978882,41.395639814],[-71.841944485,41.395914932],[-71.841923604,41.396196048],[-71.841909974,41.396498823],[-71.841898666,41.396781077],[-71.841891585,41.396965616],[-71.841895188,41.397119911],[-71.841895228,41.397231861],[-71.841884931,41.397283968],[-71.84184098,41.397376449],[-71.841780565,41.397503421],[-71.841744455,41.397579389],[-71.841612265,41.397769514],[-71.841491629,41.397967884],[-71.841391961,41.398127768],[-71.841288491,41.398304063],[-71.841156746,41.398562453],[-71.841062425,41.398751894],[-71.840964633,41.39895143],[-71.840871492,41.399204194],[-71.840814936,41.399401915],[-71.840770636,41.399637405],[-71.840770345,41.399849277],[-71.840787154,41.400095655],[-71.84079706,41.400236003],[-71.840812096,41.400381574],[-71.84081867,41.40051187],[-71.840801434,41.400608159],[-71.840731755,41.400707028],[-71.840654298,41.400752975],[-71.840572137,41.400782561],[-71.840443729,41.400797029],[-71.840421589,41.400657929],[-71.840576943,41.400638418],[-71.840638428,41.400604891],[-71.840673424,41.400535925],[-71.840653312,41.400261746],[-71.840627115,41.400055511],[-71.840619994,41.399889997],[-71.840610132,41.399693936],[-71.840625622,41.399583403],[-71.84064292,41.399440847],[-71.840679221,41.399290527],[-71.840718389,41.39915989],[-71.840790194,41.39897994],[-71.840864288,41.398831109],[-71.840945755,41.398652022],[-71.841025205,41.398499653],[-71.841055102,41.398396808],[-71.84115344,41.398243742],[-71.841251369,41.398099643],[-71.841335217,41.397969697],[-71.841384432,41.397872924],[-71.841446482,41.397779772],[-71.841503476,41.397695326],[-71.841551569,41.397610837],[-71.841595795,41.397512729],[-71.841615482,41.397467365],[-71.841671965,41.397337636],[-71.841717282,41.397233579],[-71.841727473,41.397027739],[-71.841752176,41.396762964],[-71.841778023,41.396426671],[-71.841783493,41.396172222],[-71.8417876,41.396045965],[-71.841790139,41.39596829],[-71.841803368,41.395762738],[-71.841790181,41.395622582],[-71.841787478,41.395593659],[-71.841742697,41.395434614],[-71.841619693,41.395145052],[-71.841506632,41.394903831],[-71.841410851,41.39476097],[-71.841299123,41.394617493],[-71.841172959,41.394466351],[-71.841103358,41.394357992],[-71.841031696,41.39425618],[-71.840950454,41.39416359],[-71.840908335,41.394118157],[-71.840774889,41.393973943],[-71.840768598,41.393967169],[-71.840668585,41.393862536],[-71.840526723,41.393711577],[-71.840406768,41.39358555],[-71.840280585,41.393389353],[-71.840148661,41.393169364],[-71.84009207,41.393079994],[-71.840014717,41.392957821],[-71.83984961,41.392734202],[-71.839710515,41.392548036],[-71.839598405,41.392405656],[-71.839454739,41.392227943],[-71.839307088,41.392048846],[-71.839118063,41.39182676],[-71.838941008,41.391651958],[-71.838822676,41.391480619],[-71.838683048,41.391260902],[-71.83853207,41.391095148],[-71.838396674,41.390965002],[-71.838259956,41.390837559],[-71.838130623,41.390746137],[-71.837986655,41.390690276],[-71.837852467,41.390640607],[-71.837702339,41.390585702],[-71.837496688,41.390535258],[-71.83724393,41.390490099],[-71.837042957,41.390445633],[-71.836788944,41.390362877],[-71.836529961,41.390270278],[-71.836335063,41.390184695],[-71.836149723,41.390138512],[-71.835973168,41.39007618],[-71.835796638,41.390012681],[-71.835583836,41.389952947],[-71.835390521,41.389843802],[-71.835192586,41.389781165],[-71.835011571,41.389666174],[-71.834826757,41.38952073],[-71.834624385,41.389374308],[-71.834425339,41.389260466],[-71.834205442,41.389107325],[-71.834016262,41.388938908],[-71.833927939,41.388871559],[-71.833765358,41.388737805],[-71.833634382,41.388613953],[-71.833499405,41.388473668],[-71.833306241,41.38827967],[-71.833180039,41.388138857],[-71.833034517,41.387973147],[-71.83291131,41.387817894],[-71.832778688,41.3876446],[-71.832688061,41.3874941],[-71.8326147,41.387322899],[-71.832540416,41.387125514],[-71.832480979,41.386909606],[-71.832462289,41.386722237],[-71.832464823,41.386587661],[-71.83247111,41.386444863],[-71.832492239,41.386282468],[-71.832534418,41.386109286],[-71.832582062,41.38593005],[-71.832616299,41.385789573],[-71.832658304,41.385606237],[-71.832712658,41.38545653],[-71.832770603,41.385308483],[-71.832791001,41.385259138],[-71.832832397,41.385158846],[-71.832855944,41.385101831],[-71.832942564,41.384830475],[-71.832972529,41.384757637],[-71.833043197,41.384585928],[-71.83313586,41.384344583],[-71.833232931,41.384068622],[-71.833305014,41.383799663],[-71.833322171,41.383520137],[-71.833374408,41.383283621],[-71.833383564,41.383072615],[-71.833380446,41.382878454],[-71.833408796,41.382668033],[-71.833389949,41.382503604],[-71.833351155,41.382321896],[-71.833320625,41.382170834],[-71.833278891,41.382037667],[-71.833259329,41.381976911],[-71.833241372,41.381921251],[-71.833181561,41.381821915],[-71.833033005,41.38171339],[-71.832932801,41.381636378],[-71.83284408,41.381548447],[-71.832760148,41.381458854],[-71.832610774,41.381296678],[-71.832508834,41.381182689],[-71.832414427,41.381087112],[-71.832478116,41.381035973],[-71.832232601,41.380645849],[-71.83205305,41.380352757],[-71.831951,41.380180952],[-71.831877505,41.380035159],[-71.83175856,41.379926053],[-71.831751635,41.37993544],[-71.831709634,41.37997344],[-71.831669634,41.38000744],[-71.831229634,41.380409441],[-71.830906634,41.38067844],[-71.830820634,41.380743441],[-71.830441634,41.381018441],[-71.830140634,41.38121944],[-71.829886634,41.38137444],[-71.829407634,41.38164744],[-71.828880634,41.381903441],[-71.828171633,41.382200441],[-71.827748633,41.382359441],[-71.827679633,41.382382441],[-71.826755633,41.382688441],[-71.826410632,41.382803441],[-71.826245633,41.382858441],[-71.825746632,41.383024441],[-71.825023633,41.383265441],[-71.825004633,41.383361442],[-71.824989632,41.383431441],[-71.824944633,41.383572442],[-71.824921632,41.383622441],[-71.824867633,41.383702441],[-71.824852632,41.383728442],[-71.824715632,41.383866442],[-71.824455632,41.384117442],[-71.824234632,41.384339441],[-71.824158632,41.384400441],[-71.824089632,41.384465442],[-71.824020632,41.384510442],[-71.823975632,41.384549442],[-71.823814632,41.384621442],[-71.823563631,41.384732441],[-71.823456632,41.384785441],[-71.823357632,41.384861442],[-71.823296632,41.384934442],[-71.823250631,41.385006441],[-71.823196632,41.385167442],[-71.823189632,41.385209442],[-71.823181632,41.385250442],[-71.823151632,41.386338442],[-71.823143632,41.386818442],[-71.823120632,41.387062442],[-71.823105632,41.388031442],[-71.823095632,41.388361442],[-71.823090632,41.388543442],[-71.823090632,41.388909442],[-71.823120632,41.389176442],[-71.823158632,41.389397442],[-71.823242632,41.389679443],[-71.823265632,41.389771443],[-71.823364632,41.390175442],[-71.823395632,41.390400443],[-71.823410632,41.390583442],[-71.823395632,41.390839443],[-71.823357632,41.390969442],[-71.823341632,41.391034443],[-71.823257632,41.391152443],[-71.823196632,41.391255443],[-71.823128632,41.391358442],[-71.823051632,41.391453443],[-71.822823632,41.391671443],[-71.822708632,41.391755443],[-71.822593632,41.391823443],[-71.822683632,41.391859443],[-71.822724632,41.391885443],[-71.822753632,41.391912443],[-71.822775632,41.391951443],[-71.822785632,41.391993443],[-71.822792632,41.392075443],[-71.822800632,41.392357443],[-71.822745632,41.392708443],[-71.822723632,41.392853443],[-71.822712632,41.392901443],[-71.822617632,41.393131444],[-71.822166632,41.393937443],[-71.822151632,41.393971443],[-71.822121632,41.394017443],[-71.822029632,41.394181444],[-71.821709631,41.394787444],[-71.821701632,41.394814443],[-71.821615631,41.394953443],[-71.821571632,41.395024443],[-71.821480632,41.395249444],[-71.821365632,41.395485444],[-71.821274632,41.395684444],[-71.821266631,41.395707443],[-71.821190632,41.395989444],[-71.821114632,41.396302444],[-71.821037632,41.396569444],[-71.820961632,41.396881444],[-71.820938632,41.397038444],[-71.820938632,41.397156444],[-71.820946632,41.397301444],[-71.820969631,41.397419444],[-71.820999632,41.397522444],[-71.821045632,41.397690444],[-71.821045632,41.397713445],[-71.821182632,41.398060444],[-71.821265632,41.398236444],[-71.821358631,41.398419444],[-71.821541632,41.398716444],[-71.821632632,41.398899445],[-71.821823632,41.399353444],[-71.821846632,41.399399444],[-71.822220632,41.400204445],[-71.822327632,41.400410444],[-71.822121632,41.400475445],[-71.821808632,41.400563444],[-71.821533632,41.400631445],[-71.820984632,41.400753445],[-71.820717631,41.400822445],[-71.820450632,41.400883445],[-71.820366631,41.400914444],[-71.820282632,41.400956445],[-71.820213631,41.401009445],[-71.820160632,41.401074445],[-71.820122632,41.401154445],[-71.820091631,41.401238445],[-71.820068632,41.401429445],[-71.820084632,41.401650445],[-71.820015631,41.401726445],[-71.819946632,41.401776445],[-71.819855632,41.401833445],[-71.819397631,41.402020445],[-71.819359631,41.402031445],[-71.819214631,41.402092445],[-71.819031631,41.402161445],[-71.818832631,41.402230445],[-71.818413631,41.402363445],[-71.818199631,41.402436445],[-71.818001631,41.402493445],[-71.817604631,41.402604445],[-71.817177631,41.402710445],[-71.81700963,41.402741445],[-71.81687963,41.402745446],[-71.816727631,41.402737445],[-71.81660563,41.402714445],[-71.81573563,41.402527445],[-71.81537663,41.402443445],[-71.81497263,41.402325445],[-71.814728629,41.402260445],[-71.81449963,41.402211445],[-71.81430863,41.402176445],[-71.814064629,41.402157445],[-71.81392263,41.402160446],[-71.81372863,41.402161445],[-71.813286629,41.402176445],[-71.813072629,41.402188445],[-71.812904629,41.402172445],[-71.812782629,41.402138446],[-71.812614629,41.402050445],[-71.812317629,41.401867446],[-71.812202629,41.401814445],[-71.812057629,41.401760445],[-71.811935629,41.401741445],[-71.811768629,41.401726445],[-71.811592629,41.401726445],[-71.811302629,41.401741445],[-71.810539628,41.401795445],[-71.810265628,41.401806446],[-71.809120628,41.401913445],[-71.807976628,41.401997445],[-71.806915627,41.402100446],[-71.806908627,41.402104445],[-71.806557627,41.402142445],[-71.806290627,41.402176446],[-71.805634627,41.402230446],[-71.805435627,41.402245445],[-71.803986626,41.402378445],[-71.803604626,41.402401445],[-71.803459626,41.402390446],[-71.803391626,41.402371446],[-71.803299627,41.402336446],[-71.803207626,41.402291446],[-71.802727626,41.401959446],[-71.801865626,41.401345445],[-71.801720625,41.401226445],[-71.801643625,41.401154445],[-71.801590625,41.401074445],[-71.801501626,41.400882445],[-71.801399626,41.400662445],[-71.801315625,41.400483446],[-71.801254625,41.400395445],[-71.801193625,41.400334445],[-71.801117625,41.400269446],[-71.800934625,41.400139445],[-71.800842625,41.400040445],[-71.800797625,41.399975446],[-71.800758625,41.399903445],[-71.800713625,41.399762446],[-71.800644625,41.399620445],[-71.800568626,41.399537445],[-71.800423625,41.399434445],[-71.800346625,41.399395445],[-71.800102625,41.399304445],[-71.799881625,41.399178445],[-71.799824625,41.399340445],[-71.799938625,41.399444445],[-71.800090625,41.399444445],[-71.800285625,41.399502445],[-71.800487625,41.399620445],[-71.800579625,41.399745445],[-71.800667625,41.399960445],[-71.800761626,41.400098445],[-71.800755625,41.400216445],[-71.800575625,41.400276445],[-71.800452625,41.400359445],[-71.800459625,41.400450445],[-71.800485625,41.400653445],[-71.800537625,41.400952445],[-71.800603625,41.400979445],[-71.800752625,41.400905445],[-71.800938626,41.400877445],[-71.800955626,41.400884445],[-71.800984625,41.400938445],[-71.800967625,41.401018445],[-71.800683626,41.401057445],[-71.800536625,41.401114445],[-71.800555625,41.401240446],[-71.800719625,41.401308445],[-71.800883625,41.401410445],[-71.801003625,41.401539445],[-71.801374625,41.401874445],[-71.801317625,41.401984446],[-71.802021626,41.402765446],[-71.803475626,41.404073446],[-71.803203626,41.404338446],[-71.802768626,41.404646446],[-71.798805625,41.405003446],[-71.796962624,41.405965446],[-71.796349624,41.406709446],[-71.795980624,41.407297447],[-71.796479624,41.407628447],[-71.797264625,41.407257447],[-71.798082625,41.407986447],[-71.798374625,41.408927447],[-71.798643625,41.410083447],[-71.798295625,41.410828447],[-71.797921625,41.410959447],[-71.797591625,41.411158447],[-71.797396625,41.411192447],[-71.797114625,41.411313447],[-71.797093625,41.411336448],[-71.797132625,41.411401448],[-71.797285625,41.411357448],[-71.797448625,41.411394447],[-71.797554625,41.411543447],[-71.797561625,41.411577448],[-71.797524625,41.411711448],[-71.797372624,41.411958448],[-71.797269625,41.412144448],[-71.797322625,41.412261448],[-71.797523625,41.412364447],[-71.797573625,41.412561448],[-71.797538625,41.412778448],[-71.797555625,41.412999448],[-71.797545625,41.413184448],[-71.797598625,41.413345448],[-71.797558625,41.413467448],[-71.797527624,41.413633448],[-71.797509625,41.413660448],[-71.797475625,41.413713448],[-71.797433625,41.413790448],[-71.797388625,41.413844448],[-71.797195625,41.413788448],[-71.797090625,41.413759448],[-71.797017625,41.413838448],[-71.796998625,41.413861448],[-71.796938625,41.413880448],[-71.796917625,41.414009448],[-71.796790624,41.414053448],[-71.796637625,41.414161448],[-71.796574624,41.414230448],[-71.796450625,41.414286448],[-71.796300624,41.414325448],[-71.796227624,41.414407449],[-71.796113624,41.414474448],[-71.796023625,41.414553448],[-71.795998625,41.414675448],[-71.796016625,41.414797449],[-71.796170624,41.414962448],[-71.796176625,41.415052448],[-71.796196625,41.415178448],[-71.796199625,41.415434448],[-71.796198625,41.415471448],[-71.796178625,41.415834448],[-71.796189625,41.415949448],[-71.796289625,41.416077449],[-71.796318624,41.416232449],[-71.796399624,41.416286448],[-71.796470625,41.416387449],[-71.796538625,41.416423448],[-71.796671624,41.416480448],[-71.796829625,41.416535448],[-71.796936625,41.416627449],[-71.797100625,41.416724449],[-71.797221625,41.416805449],[-71.797322625,41.416893449],[-71.797392625,41.416912449],[-71.797576625,41.416919449],[-71.797743851,41.416918453],[-71.797746738,41.416859704],[-71.797747334,41.416848094],[-71.797747625,41.416842441],[-71.797745625,41.416735448],[-71.797745874,41.416735413],[-71.797745873,41.416735361],[-71.797745347,41.416606418],[-71.797930268,41.416605566],[-71.79810276,41.416568801],[-71.798229729,41.416516374],[-71.798314835,41.416418314],[-71.798416586,41.416332492],[-71.798550895,41.416264402],[-71.798636327,41.416151339],[-71.79877685,41.416073558],[-71.798876577,41.415990714],[-71.799012241,41.41590684],[-71.799144218,41.415853735],[-71.799163838,41.415838139],[-71.799269405,41.415790813],[-71.7993838,41.415720167],[-71.799500353,41.415642814],[-71.799557684,41.41562327],[-71.799746002,41.41559346],[-71.799889043,41.415535203],[-71.800031224,41.415514546],[-71.800183629,41.415484234],[-71.800335159,41.415448687],[-71.800494266,41.415428946],[-71.800700931,41.415424884],[-71.800800442,41.415394641],[-71.800853762,41.415375062],[-71.801048305,41.415377641],[-71.801156438,41.415405328],[-71.8013206,41.415427769],[-71.801476738,41.415449338],[-71.801607362,41.41549835],[-71.801732462,41.415568371],[-71.801874905,41.415624327],[-71.801949412,41.415725195],[-71.802025464,41.415844904],[-71.802102181,41.415937556],[-71.802121719,41.416042959],[-71.802263311,41.416177042],[-71.8023661,41.416264022],[-71.80243796,41.416350603],[-71.802540924,41.416429303],[-71.802641226,41.416536552],[-71.80275984,41.416629048],[-71.802871292,41.416729612],[-71.802957823,41.416828413],[-71.803140832,41.417028389],[-71.803258295,41.417127588],[-71.803383175,41.417208105],[-71.803425789,41.41726423],[-71.803554144,41.417281731],[-71.80370181,41.417283605],[-71.803856813,41.417269131],[-71.804022063,41.417243491],[-71.804161422,41.417216753],[-71.80428317,41.417172543],[-71.804420775,41.417134489],[-71.804605011,41.417108364],[-71.804735081,41.417050707],[-71.804940588,41.416967029],[-71.805070654,41.416908616],[-71.805250516,41.416856887],[-71.805395734,41.416790384],[-71.805532231,41.416756105],[-71.805707556,41.416728355],[-71.805853093,41.416691193],[-71.805984391,41.416623811],[-71.806077768,41.416574826],[-71.806104589,41.416560758],[-71.80624394,41.416532531],[-71.806390829,41.416524662],[-71.80659352,41.416521331],[-71.806754329,41.416514385],[-71.806932847,41.416519718],[-71.807123961,41.416541735],[-71.807180828,41.416585334],[-71.807292919,41.416658883],[-71.807477429,41.416749185],[-71.807511407,41.416835246],[-71.807567148,41.41688484],[-71.807718653,41.416979209],[-71.807830745,41.417052758],[-71.807964775,41.417126636],[-71.808077967,41.417194989],[-71.80825905,41.417260439],[-71.808405557,41.417312671],[-71.808485119,41.417368559],[-71.808600514,41.41742714],[-71.808774871,41.417483528],[-71.808903799,41.417518974],[-71.809010563,41.41756397],[-71.809464599,41.417782487],[-71.809587683,41.417853923],[-71.809779195,41.417945826],[-71.809934571,41.418003407],[-71.810083481,41.418081267],[-71.810219591,41.418150609],[-71.810358108,41.418247068],[-71.810495301,41.418314211],[-71.810642935,41.41835969],[-71.810770486,41.418411696],[-71.810900288,41.418496034],[-71.810963117,41.418584715],[-71.81101834,41.418614],[-71.811206676,41.418669797],[-71.811323374,41.418758424],[-71.81147898,41.418806282],[-71.811648283,41.41886556],[-71.811823773,41.418915948],[-71.811956785,41.418991288],[-71.812139663,41.419023703],[-71.812300154,41.419031821],[-71.812303843,41.418958237],[-71.812358868,41.418952187],[-71.8125026,41.41899461]]]]}}"}, +{"type": "precinct", "typeId": 3607, "areaId": 26011, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":350,\"NAME\":\"3607\",\"SHAPE_Length\":0.34039518345943,\"SHAPE_Area\":-0.0010909636648919},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.730936602,41.398466447],[-71.731089602,41.398484447],[-71.731252603,41.398522447],[-71.731329603,41.398536447],[-71.731502602,41.398554447],[-71.731674602,41.398581447],[-71.731880603,41.398591447],[-71.732310603,41.398623447],[-71.732568603,41.398621447],[-71.732647603,41.398631447],[-71.732892603,41.398643447],[-71.733083603,41.398665447],[-71.733637604,41.398709447],[-71.733745603,41.398722447],[-71.733846603,41.398740447],[-71.734076603,41.398792447],[-71.734178604,41.398819447],[-71.734277604,41.398859447],[-71.734372604,41.398911447],[-71.734654603,41.399045447],[-71.734841604,41.399149447],[-71.734983604,41.399244447],[-71.735040604,41.399295447],[-71.735082604,41.399352447],[-71.735112604,41.399414447],[-71.735131604,41.399477447],[-71.735128604,41.399555447],[-71.735084603,41.399670447],[-71.735038604,41.399726447],[-71.734979604,41.399780448],[-71.734907603,41.399831447],[-71.734828604,41.399875447],[-71.734634603,41.399960447],[-71.734533604,41.400000447],[-71.734430604,41.400033448],[-71.734221604,41.400092448],[-71.734064604,41.400129448],[-71.733899603,41.400188448],[-71.733469603,41.400282447],[-71.733343604,41.400297447],[-71.733075603,41.400301447],[-71.732808603,41.400329447],[-71.732664603,41.400339447],[-71.732527603,41.400343448],[-71.732175603,41.400333447],[-71.732037603,41.400324448],[-71.731706603,41.400294447],[-71.731456602,41.400280447],[-71.731348603,41.400279447],[-71.731256603,41.400284448],[-71.731186602,41.400293447],[-71.731123603,41.400359447],[-71.731055603,41.400415447],[-71.730983603,41.400453447],[-71.730941603,41.400515448],[-71.730922603,41.400592447],[-71.730929602,41.400653448],[-71.730979603,41.400718447],[-71.731041603,41.400778447],[-71.731097603,41.400809448],[-71.731168602,41.400789448],[-71.731239603,41.400781447],[-71.731329603,41.400783447],[-71.731404603,41.400804447],[-71.731463603,41.400838447],[-71.731543603,41.400859447],[-71.731703603,41.400815448],[-71.731775603,41.400802447],[-71.731850603,41.400803447],[-71.731934603,41.400811448],[-71.732142603,41.400806447],[-71.732244603,41.400799447],[-71.732344603,41.400784447],[-71.732563603,41.400767447],[-71.732658603,41.400783447],[-71.732761604,41.400787447],[-71.732995604,41.400766447],[-71.733343604,41.400760447],[-71.733574603,41.400747447],[-71.733940603,41.400739447],[-71.734449604,41.400704447],[-71.734573604,41.400691447],[-71.734952604,41.400640447],[-71.735347604,41.400600448],[-71.735476604,41.400583447],[-71.736032604,41.400524447],[-71.736159604,41.400507447],[-71.736615604,41.400460447],[-71.736961604,41.400433447],[-71.737105605,41.400401447],[-71.737174604,41.400364448],[-71.737113604,41.400308448],[-71.737079604,41.400256447],[-71.737053604,41.400194447],[-71.736843604,41.400129447],[-71.736874605,41.400109447],[-71.736976604,41.400104447],[-71.737074604,41.400119447],[-71.737178604,41.400089447],[-71.737324605,41.400027447],[-71.737379605,41.400017447],[-71.737409604,41.400052447],[-71.737394605,41.400133447],[-71.737412605,41.400202447],[-71.737508605,41.400183447],[-71.737601604,41.400153447],[-71.737686605,41.400150447],[-71.737771605,41.400152448],[-71.737874604,41.400166447],[-71.737984605,41.400192447],[-71.738167605,41.400272447],[-71.738264605,41.400299447],[-71.738349605,41.400337447],[-71.738439605,41.400461447],[-71.738494605,41.400529447],[-71.738537605,41.400608447],[-71.738574605,41.400692447],[-71.738662605,41.400848447],[-71.738711605,41.401016447],[-71.738803605,41.401244448],[-71.738848605,41.401307447],[-71.739057605,41.401501447],[-71.739137606,41.401560447],[-71.739211605,41.401600447],[-71.739387606,41.401665447],[-71.739597605,41.401704447],[-71.739698606,41.401719447],[-71.739811605,41.401724447],[-71.739931606,41.401722447],[-71.740030606,41.401712448],[-71.740131606,41.401695447],[-71.740372605,41.401668448],[-71.740604605,41.401629448],[-71.740733606,41.401602447],[-71.740969606,41.401544447],[-71.741163606,41.401504447],[-71.741280606,41.401470447],[-71.741412606,41.401442447],[-71.741864606,41.401360448],[-71.742097606,41.401310447],[-71.742226606,41.401298447],[-71.742451607,41.401293447],[-71.742575606,41.401298447],[-71.742693606,41.401309447],[-71.742795606,41.401327447],[-71.742912606,41.401354447],[-71.743041606,41.401391447],[-71.743370607,41.401541447],[-71.743384607,41.401547447],[-71.743602607,41.401659447],[-71.743771607,41.401753447],[-71.743975607,41.401877447],[-71.744082607,41.401935447],[-71.744144607,41.401964448],[-71.744345607,41.402079448],[-71.744523607,41.402172447],[-71.744607607,41.402201447],[-71.744678607,41.402204447],[-71.744724607,41.402247447],[-71.744772607,41.402276448],[-71.744801607,41.402293448],[-71.744821607,41.402300447],[-71.744952607,41.402344447],[-71.745021607,41.402374448],[-71.745263607,41.402332448],[-71.745288607,41.402332448],[-71.745346607,41.402339447],[-71.745364607,41.402341447],[-71.745585607,41.402500447],[-71.745659607,41.402549448],[-71.745818607,41.402659447],[-71.746059608,41.402808447],[-71.746209608,41.402897448],[-71.746382608,41.403012448],[-71.746569607,41.403121447],[-71.746873608,41.403380448],[-71.746937608,41.403447448],[-71.747045608,41.403600448],[-71.747147608,41.403724447],[-71.747242608,41.403861447],[-71.747411608,41.404119448],[-71.747473608,41.404182448],[-71.747545608,41.404233447],[-71.747793608,41.404369447],[-71.747865608,41.404425447],[-71.747995608,41.404556448],[-71.748056608,41.404624448],[-71.748101608,41.404695448],[-71.748202609,41.404897448],[-71.748233608,41.404971447],[-71.748258608,41.405053448],[-71.748282609,41.405201448],[-71.748276608,41.405285448],[-71.748250608,41.405438447],[-71.748245609,41.405480448],[-71.748233608,41.405595448],[-71.748216608,41.405675448],[-71.748182609,41.405904448],[-71.748132608,41.406127448],[-71.748105609,41.406210448],[-71.748019608,41.406416448],[-71.747981608,41.406481448],[-71.747936608,41.406540448],[-71.747875609,41.406658448],[-71.747855609,41.406716448],[-71.747853609,41.406722448],[-71.747848608,41.406796448],[-71.747864608,41.406867448],[-71.747894609,41.406935448],[-71.747973608,41.407080448],[-71.748026609,41.407144448],[-71.748081608,41.407199448],[-71.748171608,41.407301448],[-71.748227608,41.407337448],[-71.748350608,41.407353448],[-71.748393609,41.407358448],[-71.748484608,41.407360448],[-71.748578608,41.407345449],[-71.748674609,41.407336448],[-71.748863609,41.407330448],[-71.748952608,41.407318448],[-71.749102609,41.407278448],[-71.749176609,41.407264448],[-71.749250609,41.407240448],[-71.749325609,41.407202448],[-71.749406609,41.407195448],[-71.749446609,41.407255448],[-71.749482609,41.407365449],[-71.749547609,41.407395448],[-71.749652609,41.407420448],[-71.749720609,41.407451448],[-71.749859609,41.407541449],[-71.749944609,41.407585448],[-71.750034609,41.407625448],[-71.750173609,41.407712448],[-71.750324609,41.407787448],[-71.750399609,41.407814449],[-71.750471609,41.407830448],[-71.750635609,41.407825448],[-71.75093761,41.407805448],[-71.751123609,41.407787448],[-71.75132361,41.407786448],[-71.751624609,41.407804448],[-71.751797609,41.407822448],[-71.75182861,41.407826448],[-71.75200761,41.407849448],[-71.752187609,41.407859448],[-71.75241061,41.407880448],[-71.75260361,41.407912449],[-71.75272261,41.407927448],[-71.75315661,41.407958448],[-71.75359161,41.408002448],[-71.75379761,41.408028449],[-71.75390461,41.408035448],[-71.75403961,41.408044448],[-71.75425461,41.408047448],[-71.754379611,41.408044448],[-71.754809611,41.408017448],[-71.755147611,41.407985448],[-71.75524961,41.407966448],[-71.755477611,41.407910448],[-71.755585611,41.407874449],[-71.755678611,41.407831448],[-71.755872611,41.407730448],[-71.755945611,41.407669448],[-71.756008611,41.407594448],[-71.756138611,41.407455448],[-71.756268611,41.407293448],[-71.757242611,41.405633447],[-71.757298611,41.405672447],[-71.757354611,41.405673447],[-71.757416611,41.405608448],[-71.757486612,41.405478447],[-71.757532611,41.405406447],[-71.757707611,41.405192447],[-71.757824611,41.405030447],[-71.757940611,41.404889448],[-71.758021611,41.404769448],[-71.758021611,41.404748448],[-71.757978611,41.404715448],[-71.757970612,41.404657447],[-71.758029612,41.404489447],[-71.758138611,41.404235447],[-71.758187612,41.404148448],[-71.758257611,41.404075447],[-71.758342612,41.404009448],[-71.758546611,41.403881447],[-71.758737612,41.403752447],[-71.758839611,41.403678447],[-71.759258612,41.403307447],[-71.759351612,41.403233448],[-71.759446612,41.403172447],[-71.759550612,41.403126447],[-71.759672612,41.403085447],[-71.759787612,41.403052447],[-71.759981612,41.402986447],[-71.760047612,41.402937447],[-71.760107612,41.402795447],[-71.760161613,41.402722447],[-71.760233612,41.402674447],[-71.760311612,41.402648447],[-71.760362612,41.402597447],[-71.760398612,41.402522447],[-71.760464612,41.402438447],[-71.760538612,41.402372447],[-71.760608613,41.402334447],[-71.760717612,41.402354447],[-71.760809612,41.402387447],[-71.760881613,41.402419447],[-71.761040612,41.402337446],[-71.761054613,41.402324447],[-71.760978613,41.402276447],[-71.760899613,41.402219447],[-71.760867612,41.402149447],[-71.760829612,41.402038447],[-71.760887612,41.401997447],[-71.760981612,41.401951447],[-71.761076613,41.401892447],[-71.761165612,41.401827447],[-71.761238612,41.401760447],[-71.761329613,41.401706447],[-71.761541613,41.401636446],[-71.761644612,41.401627447],[-71.761748612,41.401643447],[-71.761851613,41.401620446],[-71.761969613,41.401581446],[-71.762092613,41.401562446],[-71.762326613,41.401592447],[-71.762451613,41.401584447],[-71.762777613,41.401536447],[-71.762847613,41.401497447],[-71.762907613,41.401442446],[-71.762985613,41.401414447],[-71.763086613,41.401411447],[-71.763167613,41.401385446],[-71.763248613,41.401350447],[-71.763317613,41.401313447],[-71.763430613,41.401226446],[-71.763489613,41.401170446],[-71.763500613,41.401123447],[-71.763454613,41.401061447],[-71.763442613,41.401007447],[-71.763473613,41.400954446],[-71.763526613,41.400901446],[-71.763570613,41.400842446],[-71.763641613,41.400709447],[-71.763756613,41.400515447],[-71.763789613,41.400434446],[-71.763838613,41.400280446],[-71.763854613,41.400207447],[-71.763862613,41.400115446],[-71.763897613,41.400034447],[-71.763941613,41.399960446],[-71.764000614,41.399824446],[-71.764022614,41.399775446],[-71.764111613,41.399613446],[-71.764149613,41.399515446],[-71.764189613,41.399432446],[-71.764353614,41.399206446],[-71.764413613,41.399140446],[-71.764483613,41.399081446],[-71.764557613,41.399029446],[-71.764627614,41.398973446],[-71.764692613,41.398909446],[-71.764732613,41.398845446],[-71.764741614,41.398783446],[-71.764713613,41.398740446],[-71.764528614,41.398715446],[-71.764483613,41.398687446],[-71.764487614,41.398608446],[-71.764549614,41.398563446],[-71.764645614,41.398519446],[-71.764735613,41.398472446],[-71.764802614,41.398415446],[-71.764850613,41.398356446],[-71.764900614,41.398304446],[-71.764954614,41.398263446],[-71.765010614,41.398207446],[-71.765016614,41.398166446],[-71.764985613,41.398114446],[-71.764966613,41.398048446],[-71.764976614,41.397986446],[-71.764996614,41.397918446],[-71.765035614,41.397849446],[-71.765087614,41.397783446],[-71.765153614,41.397714446],[-71.765285614,41.397591446],[-71.765327614,41.397518446],[-71.765356613,41.397433446],[-71.765398614,41.397357446],[-71.765440614,41.397297446],[-71.765468613,41.397247445],[-71.765559614,41.397124446],[-71.765771614,41.396931446],[-71.765910614,41.396836446],[-71.765970614,41.396806446],[-71.765997613,41.396764445],[-71.765922614,41.396713446],[-71.765834614,41.396680446],[-71.765789614,41.396621446],[-71.765755614,41.396562446],[-71.765737614,41.396502446],[-71.765679614,41.396363446],[-71.765658614,41.396261446],[-71.765735614,41.396282446],[-71.765791614,41.396318445],[-71.765860613,41.396372445],[-71.765932614,41.396505446],[-71.765948614,41.396564445],[-71.765979614,41.396604445],[-71.766052613,41.396622446],[-71.766156614,41.396618446],[-71.766200614,41.396612446],[-71.766359614,41.396464446],[-71.766399614,41.396409445],[-71.766453614,41.396284446],[-71.766512614,41.396181445],[-71.766722614,41.395893446],[-71.767038614,41.395439445],[-71.767315614,41.395144445],[-71.767446614,41.395040446],[-71.767517614,41.394995445],[-71.767589614,41.394957445],[-71.767746615,41.394917445],[-71.767849614,41.394913445],[-71.767941615,41.394925446],[-71.768012614,41.394876445],[-71.768069614,41.394826446],[-71.768130614,41.394835445],[-71.768143614,41.394950445],[-71.768195615,41.394982446],[-71.768262614,41.395014445],[-71.768318614,41.395062446],[-71.768362614,41.395117446],[-71.768392614,41.395176446],[-71.768440614,41.395218446],[-71.768446615,41.395263445],[-71.768412614,41.395335446],[-71.768356614,41.395479445],[-71.768364615,41.395555445],[-71.768406615,41.395627446],[-71.768436614,41.395690445],[-71.768453614,41.395752445],[-71.768476614,41.395805445],[-71.768526615,41.395861446],[-71.768576614,41.395903445],[-71.768643615,41.395949445],[-71.768682615,41.395997446],[-71.768658615,41.396054446],[-71.768695615,41.396116445],[-71.768785614,41.396206446],[-71.768934615,41.396398445],[-71.768980614,41.396479446],[-71.769069615,41.396723445],[-71.769148615,41.396876445],[-71.769217615,41.397059445],[-71.769268615,41.397138446],[-71.769314615,41.397226446],[-71.769380615,41.397406445],[-71.769469615,41.397616446],[-71.769510615,41.397649446],[-71.769511615,41.397780446],[-71.769531615,41.397824446],[-71.769598615,41.397817446],[-71.769598615,41.397743446],[-71.769590615,41.397675446],[-71.769556615,41.397627446],[-71.769542614,41.397568446],[-71.769524615,41.397455446],[-71.769576615,41.397397446],[-71.769609615,41.397369445],[-71.769562614,41.397329445],[-71.769526615,41.397329445],[-71.769529615,41.397254446],[-71.769466615,41.397140446],[-71.769483615,41.397081446],[-71.769504614,41.396968446],[-71.769480615,41.396956445],[-71.769418615,41.396983446],[-71.769377615,41.396974445],[-71.769365615,41.396915445],[-71.769342615,41.396850446],[-71.769317615,41.396811446],[-71.769281615,41.396798445],[-71.769286615,41.396738446],[-71.769364615,41.396765445],[-71.769442615,41.396808446],[-71.769508615,41.396858445],[-71.769706615,41.396975445],[-71.769814615,41.397062446],[-71.769860615,41.397109446],[-71.769904615,41.397164446],[-71.769908615,41.397176445],[-71.770100615,41.397359446],[-71.770263616,41.397592446],[-71.770307615,41.397671446],[-71.770481615,41.397920446],[-71.770524615,41.398006446],[-71.770546615,41.398090446],[-71.770547615,41.398180446],[-71.770524615,41.398273446],[-71.770492615,41.398351446],[-71.770396616,41.398519446],[-71.770286615,41.398681446],[-71.770146616,41.398854446],[-71.770065615,41.398922446],[-71.769975615,41.398986446],[-71.769894615,41.399062446],[-71.769818615,41.399144446],[-71.769744615,41.399215446],[-71.769634615,41.399378446],[-71.769556615,41.399444446],[-71.769471615,41.399492446],[-71.769367615,41.399532446],[-71.769255615,41.399567447],[-71.769136615,41.399585446],[-71.769003615,41.399585446],[-71.768873615,41.399577446],[-71.768533614,41.399527446],[-71.768398615,41.399501446],[-71.768205615,41.399443446],[-71.768086614,41.399391446],[-71.767874614,41.399277446],[-71.767582614,41.399105446],[-71.767497614,41.399050446],[-71.767433615,41.399016446],[-71.767370614,41.399007446],[-71.767333614,41.399057446],[-71.767307614,41.399101446],[-71.767180615,41.399214446],[-71.767299615,41.399313447],[-71.767420614,41.399406446],[-71.767479614,41.399459446],[-71.767488615,41.399516446],[-71.767479614,41.399580446],[-71.767496614,41.399660446],[-71.767520614,41.399723447],[-71.767550615,41.399780447],[-71.767589615,41.399832446],[-71.767791614,41.400066446],[-71.767850614,41.400125446],[-71.767921615,41.400188447],[-71.768056615,41.400330446],[-71.768131615,41.400391446],[-71.768213615,41.400450446],[-71.768406615,41.400569446],[-71.768484615,41.400592446],[-71.768564615,41.400580447],[-71.768645614,41.400545446],[-71.768704614,41.400496446],[-71.768723614,41.400439446],[-71.768715615,41.400376446],[-71.768684614,41.400308447],[-71.768633615,41.400228447],[-71.768538615,41.400094446],[-71.768524615,41.400019446],[-71.768547615,41.399933446],[-71.768617615,41.399880446],[-71.768724614,41.399885446],[-71.768808615,41.399941446],[-71.768878615,41.400027446],[-71.769046615,41.400254446],[-71.769096615,41.400343446],[-71.769253615,41.400572446],[-71.769329615,41.400651446],[-71.769425615,41.400713447],[-71.769533615,41.400776447],[-71.769717616,41.400931447],[-71.769880615,41.401039446],[-71.770076615,41.401188446],[-71.770192615,41.401244447],[-71.770380616,41.401303446],[-71.770489615,41.401346446],[-71.770611616,41.401385446],[-71.770704616,41.401404446],[-71.770785616,41.401415447],[-71.770890615,41.401435447],[-71.770991615,41.401429446],[-71.771103615,41.401398447],[-71.771202615,41.401354446],[-71.771303616,41.401303446],[-71.771423616,41.401252446],[-71.771538616,41.401195446],[-71.771698616,41.401090446],[-71.771887616,41.400994446],[-71.772102616,41.400860446],[-71.772228616,41.400795447],[-71.772330616,41.400736447],[-71.772471616,41.400627446],[-71.772508616,41.400599447],[-71.772591616,41.400523446],[-71.772644616,41.400461446],[-71.772674616,41.400412446],[-71.772697616,41.400360446],[-71.772714616,41.400303446],[-71.772723616,41.400244446],[-71.772715616,41.400188446],[-71.772666616,41.399986446],[-71.772638616,41.399909446],[-71.772560616,41.399786446],[-71.772457616,41.399659446],[-71.772266616,41.399473446],[-71.772201616,41.399393446],[-71.772004616,41.399171446],[-71.771906616,41.399053446],[-71.771866615,41.398997446],[-71.771764616,41.398871446],[-71.771709615,41.398788445],[-71.771663616,41.398706446],[-71.771633615,41.398630446],[-71.771609615,41.398547446],[-71.771549616,41.398282445],[-71.771515615,41.398084446],[-71.771474615,41.397899446],[-71.771385616,41.397619445],[-71.771369616,41.397497446],[-71.771377615,41.397435446],[-71.771378615,41.397322446],[-71.771411616,41.397198446],[-71.771440615,41.397142446],[-71.771528616,41.397068446],[-71.771640616,41.397010446],[-71.771816616,41.396910446],[-71.772105616,41.396738446],[-71.773090616,41.396228446],[-71.773423616,41.396018445],[-71.773798616,41.395728445],[-71.774179617,41.395420445],[-71.774822617,41.394761445],[-71.775002617,41.394565445],[-71.775085616,41.394482445],[-71.775260616,41.394362445],[-71.775399617,41.394157445],[-71.775329617,41.394157445],[-71.775206617,41.394237445],[-71.775075617,41.394343445],[-71.775001617,41.394442445],[-71.774098616,41.395253445],[-71.773627616,41.395639445],[-71.773333616,41.395903445],[-71.773200616,41.395980445],[-71.773168616,41.395984445],[-71.773159616,41.395940445],[-71.773175616,41.395919446],[-71.773472616,41.395610445],[-71.773742616,41.395389445],[-71.773961616,41.395169445],[-71.774102617,41.395011445],[-71.774149616,41.394933445],[-71.774312616,41.394762445],[-71.774297617,41.394722445],[-71.774271616,41.394728445],[-71.774084617,41.394811445],[-71.773895616,41.394976445],[-71.773643616,41.395231445],[-71.773522616,41.395363445],[-71.773496616,41.395360445],[-71.773548616,41.395238445],[-71.773652616,41.395116445],[-71.773737616,41.395001445],[-71.773987617,41.394820445],[-71.774138616,41.394717445],[-71.774284616,41.394645445],[-71.774435617,41.394579445],[-71.774673616,41.394452445],[-71.775000617,41.394218445],[-71.775153617,41.394131445],[-71.775635617,41.393958445],[-71.775709616,41.393872445],[-71.775778617,41.393819445],[-71.775897617,41.393738444],[-71.776043617,41.393648445],[-71.776184617,41.393589445],[-71.776231616,41.393529445],[-71.776434617,41.393466444],[-71.776555617,41.393437445],[-71.776740617,41.393366444],[-71.776831617,41.393336445],[-71.777057617,41.393300445],[-71.777207617,41.393271444],[-71.777575618,41.393266445],[-71.777808618,41.393264445],[-71.777974617,41.393302445],[-71.778106617,41.393327444],[-71.778234618,41.393396445],[-71.778284617,41.393430444],[-71.778370618,41.393553445],[-71.778411618,41.393649445],[-71.778411618,41.393744445],[-71.778288618,41.393843445],[-71.778290618,41.394082445],[-71.778312618,41.394176445],[-71.778405618,41.394270445],[-71.778513617,41.394351445],[-71.778737618,41.394492445],[-71.778819618,41.394564445],[-71.778937618,41.394574445],[-71.779007618,41.394554445],[-71.779092618,41.394463445],[-71.779214618,41.394372445],[-71.779275618,41.394268445],[-71.779352618,41.394113445],[-71.779600618,41.393969445],[-71.779721618,41.393924445],[-71.779732618,41.393920445],[-71.779870618,41.393859444],[-71.780035618,41.393776444],[-71.780128618,41.393715445],[-71.780295618,41.393671445],[-71.780436618,41.393626444],[-71.780783618,41.393496445],[-71.780907619,41.393420445],[-71.781010618,41.393335444],[-71.781084619,41.393248445],[-71.781063619,41.393137444],[-71.780954618,41.393072445],[-71.780881618,41.392974445],[-71.780835618,41.392923444],[-71.780687618,41.392847444],[-71.780596619,41.392805444],[-71.780439618,41.392749444],[-71.780321618,41.392684444],[-71.780209619,41.392602445],[-71.780054618,41.392508444],[-71.779968618,41.392468445],[-71.779925618,41.392369445],[-71.779810618,41.392277444],[-71.779760618,41.392166444],[-71.779677618,41.392082444],[-71.779607618,41.391970444],[-71.779582618,41.391845444],[-71.779431617,41.391589445],[-71.779406618,41.391444444],[-71.779370618,41.391335444],[-71.779320618,41.391218444],[-71.779244618,41.391071444],[-71.779228618,41.390949444],[-71.778987617,41.390386444],[-71.778875618,41.389851444],[-71.778832617,41.389746444],[-71.778765618,41.389644444],[-71.778759618,41.389370443],[-71.778761618,41.389124444],[-71.778837618,41.388991444],[-71.778885617,41.388937444],[-71.778901618,41.388834444],[-71.778995618,41.388716444],[-71.779048617,41.388658444],[-71.779170618,41.388580444],[-71.779212618,41.388493443],[-71.779225618,41.388364444],[-71.779255617,41.388251444],[-71.779307618,41.388144443],[-71.779351618,41.388015444],[-71.779346618,41.387760444],[-71.779327618,41.387708444],[-71.779203617,41.387663444],[-71.779163617,41.387549444],[-71.779190618,41.387503443],[-71.779209618,41.387511444],[-71.779288618,41.387512444],[-71.779309618,41.387486443],[-71.779297617,41.387389443],[-71.779214618,41.387310443],[-71.779222617,41.387285443],[-71.779232618,41.387256444],[-71.779305618,41.387160444],[-71.779372617,41.387056443],[-71.779460618,41.386968444],[-71.779529617,41.386913443],[-71.779555618,41.386804443],[-71.779632618,41.386774443],[-71.779783617,41.386739443],[-71.779881617,41.386740443],[-71.780029618,41.386801443],[-71.780181618,41.386857443],[-71.780314618,41.386948444],[-71.780367618,41.387008444],[-71.780421618,41.387092443],[-71.780423618,41.387216443],[-71.780448618,41.387348443],[-71.780492618,41.387457443],[-71.780500618,41.387567444],[-71.780529618,41.387688444],[-71.780547618,41.387795443],[-71.780463618,41.387993443],[-71.780427618,41.388120443],[-71.780425618,41.388360443],[-71.780430618,41.388601444],[-71.780455618,41.388719444],[-71.780530618,41.388827443],[-71.780612618,41.388880444],[-71.780912618,41.388983443],[-71.781059618,41.389019443],[-71.781221619,41.389019443],[-71.781370618,41.389013444],[-71.781468618,41.388998443],[-71.781602618,41.388942443],[-71.781742619,41.388878444],[-71.781797618,41.388753444],[-71.781917619,41.388657444],[-71.782037619,41.388585444],[-71.782059619,41.388471443],[-71.782067618,41.388330444],[-71.782067618,41.387842444],[-71.782083618,41.387729444],[-71.782115619,41.387615443],[-71.782220618,41.387470443],[-71.782291619,41.387400443],[-71.782338618,41.387269443],[-71.782443619,41.387035443],[-71.782520619,41.386934443],[-71.782640619,41.386760443],[-71.782765618,41.386694443],[-71.783069619,41.386556443],[-71.783215618,41.386530443],[-71.783360619,41.386489443],[-71.783532619,41.386475443],[-71.783652619,41.386496443],[-71.783808619,41.386549443],[-71.783937619,41.386615443],[-71.784032619,41.386702443],[-71.784120619,41.386798443],[-71.784123619,41.386887443],[-71.784125619,41.386953443],[-71.784095619,41.387080443],[-71.784019619,41.387322443],[-71.783964619,41.387436444],[-71.783897619,41.387671444],[-71.783880619,41.387789443],[-71.783873619,41.387904444],[-71.783877619,41.388144443],[-71.783943619,41.388209443],[-71.784123619,41.388200443],[-71.78414862,41.388172444],[-71.784119619,41.387923444],[-71.784119619,41.387666444],[-71.784124619,41.387544443],[-71.784139619,41.387422443],[-71.784172619,41.387355443],[-71.78422562,41.387376444],[-71.784256619,41.387441443],[-71.784256619,41.387570444],[-71.784294619,41.387692443],[-71.784461619,41.387901444],[-71.784531619,41.388260443],[-71.784637619,41.388382443],[-71.78465362,41.388406444],[-71.78465262,41.388531443],[-71.78463162,41.388645444],[-71.78459262,41.388756444],[-71.784541619,41.388860444],[-71.784485619,41.388901443],[-71.784415619,41.389007444],[-71.784307619,41.389089444],[-71.784151619,41.389160443],[-71.784096619,41.389204444],[-71.783926619,41.389243444],[-71.783813619,41.389283444],[-71.783770619,41.389390443],[-71.783732619,41.389506443],[-71.783718619,41.389625443],[-71.783790619,41.389672444],[-71.783895619,41.389694444],[-71.784026619,41.389744444],[-71.78416762,41.389739443],[-71.784168619,41.389615444],[-71.784180619,41.389573444],[-71.784328619,41.389571444],[-71.78445562,41.389559444],[-71.784491619,41.389527443],[-71.78449662,41.389389443],[-71.784512619,41.389277443],[-71.78453762,41.389181444],[-71.784661619,41.389133444],[-71.784725619,41.389217443],[-71.78485062,41.389331443],[-71.784956619,41.389416444],[-71.785071619,41.389486443],[-71.78520062,41.389540444],[-71.78536662,41.389582444],[-71.78552562,41.389632444],[-71.78568562,41.389659444],[-71.78583262,41.389692444],[-71.78599562,41.389767444],[-71.78618062,41.389805444],[-71.78633062,41.389808444],[-71.78643962,41.389801443],[-71.78654762,41.389754444],[-71.78657762,41.389741443],[-71.786664621,41.389718444],[-71.78676362,41.389818443],[-71.78691462,41.389893444],[-71.786974621,41.389908444],[-71.787208621,41.390036443],[-71.78738862,41.390208443],[-71.78750662,41.390272444],[-71.787617621,41.390342444],[-71.78774062,41.390410444],[-71.78786162,41.390493444],[-71.78826662,41.390748444],[-71.78850162,41.390905444],[-71.788600621,41.390988443],[-71.788774621,41.391088444],[-71.788823621,41.391143443],[-71.788870621,41.391273444],[-71.788983621,41.391369444],[-71.789113621,41.391439444],[-71.789178621,41.391537444],[-71.789222621,41.391633444],[-71.789344621,41.391761444],[-71.789460621,41.391851444],[-71.789530622,41.391947444],[-71.789604621,41.392066444],[-71.789665622,41.392181444],[-71.789740621,41.392308444],[-71.789926621,41.392529444],[-71.790029621,41.392631444],[-71.790191622,41.392720444],[-71.790324622,41.392800444],[-71.790465622,41.392853444],[-71.790558622,41.392872444],[-71.790879621,41.392861444],[-71.791044622,41.392818444],[-71.791174621,41.392732444],[-71.791209621,41.392670444],[-71.791177622,41.392613444],[-71.791099622,41.392546444],[-71.791104622,41.392425444],[-71.791132621,41.392371444],[-71.791276622,41.392297444],[-71.791408622,41.392248444],[-71.791502621,41.392191444],[-71.791654622,41.392157444],[-71.791818622,41.392137443],[-71.792144622,41.392129444],[-71.792265622,41.392150444],[-71.792396622,41.392212444],[-71.792537622,41.392266444],[-71.792690623,41.392290444],[-71.792832622,41.392345444],[-71.792994622,41.392369444],[-71.793137623,41.392410443],[-71.793377622,41.392455444],[-71.794064623,41.392533444],[-71.794704623,41.392627444],[-71.795203623,41.392681444],[-71.795517624,41.392674444],[-71.796062624,41.392790444],[-71.796494623,41.392871444],[-71.796989624,41.393024444],[-71.797223624,41.393217444],[-71.797440624,41.393622444],[-71.797535624,41.393809444],[-71.797588624,41.393906444],[-71.797650624,41.394020444],[-71.797925624,41.394578444],[-71.798057624,41.394822444],[-71.798111625,41.394896444],[-71.798156624,41.395104444],[-71.798206624,41.395260444],[-71.798209625,41.395263444],[-71.798341624,41.395399444],[-71.798463624,41.395571444],[-71.798469624,41.395745444],[-71.798495624,41.395908444],[-71.798495624,41.395935445],[-71.798528624,41.396127445],[-71.798491624,41.396212445],[-71.798334624,41.396424445],[-71.798306625,41.396462445],[-71.798072625,41.396702444],[-71.797722624,41.396820444],[-71.797247624,41.396903445],[-71.796733624,41.396933445],[-71.796117624,41.396949445],[-71.795342624,41.397052444],[-71.794897623,41.397029445],[-71.794371623,41.397043445],[-71.794103623,41.397132445],[-71.794061623,41.397246445],[-71.794069623,41.397309445],[-71.794142623,41.397415445],[-71.794298623,41.397620445],[-71.794338623,41.397679445],[-71.794516623,41.397795445],[-71.794613623,41.397845445],[-71.794711623,41.397935445],[-71.795118623,41.398085445],[-71.795668624,41.398248445],[-71.796033624,41.398381445],[-71.796453624,41.398472445],[-71.796927624,41.398516445],[-71.797264624,41.398542445],[-71.797661624,41.398507445],[-71.797829624,41.398501445],[-71.798180624,41.398456445],[-71.798227625,41.398451445],[-71.798282625,41.398397445],[-71.798292624,41.398368445],[-71.798377624,41.398276445],[-71.798534625,41.398269445],[-71.798653625,41.398332445],[-71.799093624,41.398312445],[-71.799310625,41.398339444],[-71.799541625,41.398451445],[-71.799736625,41.398572445],[-71.799756625,41.398597445],[-71.799792625,41.398783445],[-71.799768625,41.398900445],[-71.799709625,41.399051445],[-71.799689625,41.399184445],[-71.799717625,41.399244445],[-71.799824625,41.399340445],[-71.799881625,41.399178445],[-71.800102625,41.399304445],[-71.800346625,41.399395445],[-71.800423625,41.399434445],[-71.800568626,41.399537445],[-71.800644625,41.399620445],[-71.800713625,41.399762446],[-71.800758625,41.399903445],[-71.800797625,41.399975446],[-71.800842625,41.400040445],[-71.800934625,41.400139445],[-71.801117625,41.400269446],[-71.801193625,41.400334445],[-71.801254625,41.400395445],[-71.801315625,41.400483446],[-71.801399626,41.400662445],[-71.801501626,41.400882445],[-71.801590625,41.401074445],[-71.801643625,41.401154445],[-71.801720625,41.401226445],[-71.801865626,41.401345445],[-71.802727626,41.401959446],[-71.803207626,41.402291446],[-71.803299627,41.402336446],[-71.803391626,41.402371446],[-71.803459626,41.402390446],[-71.803604626,41.402401445],[-71.803986626,41.402378445],[-71.805435627,41.402245445],[-71.805634627,41.402230446],[-71.806290627,41.402176446],[-71.806557627,41.402142445],[-71.806908627,41.402104445],[-71.806915627,41.402100446],[-71.807976628,41.401997445],[-71.809120628,41.401913445],[-71.810265628,41.401806446],[-71.810539628,41.401795445],[-71.811302629,41.401741445],[-71.811592629,41.401726445],[-71.811768629,41.401726445],[-71.811935629,41.401741445],[-71.812057629,41.401760445],[-71.812202629,41.401814445],[-71.812317629,41.401867446],[-71.812614629,41.402050445],[-71.812782629,41.402138446],[-71.812904629,41.402172445],[-71.813072629,41.402188445],[-71.813286629,41.402176445],[-71.81372863,41.402161445],[-71.81392263,41.402160446],[-71.814064629,41.402157445],[-71.81430863,41.402176445],[-71.81449963,41.402211445],[-71.814728629,41.402260445],[-71.81497263,41.402325445],[-71.81537663,41.402443445],[-71.81573563,41.402527445],[-71.81660563,41.402714445],[-71.816727631,41.402737445],[-71.81687963,41.402745446],[-71.81700963,41.402741445],[-71.817177631,41.402710445],[-71.817604631,41.402604445],[-71.818001631,41.402493445],[-71.818199631,41.402436445],[-71.818413631,41.402363445],[-71.818832631,41.402230445],[-71.819031631,41.402161445],[-71.819214631,41.402092445],[-71.819359631,41.402031445],[-71.819397631,41.402020445],[-71.819855632,41.401833445],[-71.819946632,41.401776445],[-71.820015631,41.401726445],[-71.820084632,41.401650445],[-71.820068632,41.401429445],[-71.820091631,41.401238445],[-71.820122632,41.401154445],[-71.820160632,41.401074445],[-71.820213631,41.401009445],[-71.820282632,41.400956445],[-71.820366631,41.400914444],[-71.820450632,41.400883445],[-71.820717631,41.400822445],[-71.820984632,41.400753445],[-71.821533632,41.400631445],[-71.821808632,41.400563444],[-71.822121632,41.400475445],[-71.822327632,41.400410444],[-71.822220632,41.400204445],[-71.821846632,41.399399444],[-71.821823632,41.399353444],[-71.821632632,41.398899445],[-71.821541632,41.398716444],[-71.821358631,41.398419444],[-71.821265632,41.398236444],[-71.821182632,41.398060444],[-71.821045632,41.397713445],[-71.821045632,41.397690444],[-71.820999632,41.397522444],[-71.820969631,41.397419444],[-71.820946632,41.397301444],[-71.820938632,41.397156444],[-71.820938632,41.397038444],[-71.820961632,41.396881444],[-71.821037632,41.396569444],[-71.821114632,41.396302444],[-71.821190632,41.395989444],[-71.821266631,41.395707443],[-71.821274632,41.395684444],[-71.821365632,41.395485444],[-71.821480632,41.395249444],[-71.821571632,41.395024443],[-71.821615631,41.394953443],[-71.821701632,41.394814443],[-71.821709631,41.394787444],[-71.822029632,41.394181444],[-71.822121632,41.394017443],[-71.822151632,41.393971443],[-71.822166632,41.393937443],[-71.822617632,41.393131444],[-71.822712632,41.392901443],[-71.822723632,41.392853443],[-71.822745632,41.392708443],[-71.822800632,41.392357443],[-71.822792632,41.392075443],[-71.822785632,41.391993443],[-71.822775632,41.391951443],[-71.822753632,41.391912443],[-71.822724632,41.391885443],[-71.822683632,41.391859443],[-71.822593632,41.391823443],[-71.822708632,41.391755443],[-71.822823632,41.391671443],[-71.823051632,41.391453443],[-71.823128632,41.391358442],[-71.823196632,41.391255443],[-71.823257632,41.391152443],[-71.823341632,41.391034443],[-71.823357632,41.390969442],[-71.823395632,41.390839443],[-71.823410632,41.390583442],[-71.823395632,41.390400443],[-71.823364632,41.390175442],[-71.823265632,41.389771443],[-71.823242632,41.389679443],[-71.823158632,41.389397442],[-71.823120632,41.389176442],[-71.823090632,41.388909442],[-71.823090632,41.388543442],[-71.823095632,41.388361442],[-71.823105632,41.388031442],[-71.823120632,41.387062442],[-71.823143632,41.386818442],[-71.823151632,41.386338442],[-71.823181632,41.385250442],[-71.823189632,41.385209442],[-71.823196632,41.385167442],[-71.823250631,41.385006441],[-71.823296632,41.384934442],[-71.823357632,41.384861442],[-71.823456632,41.384785441],[-71.823563631,41.384732441],[-71.823814632,41.384621442],[-71.823975632,41.384549442],[-71.824020632,41.384510442],[-71.824089632,41.384465442],[-71.824158632,41.384400441],[-71.824234632,41.384339441],[-71.824455632,41.384117442],[-71.824715632,41.383866442],[-71.824852632,41.383728442],[-71.824867633,41.383702441],[-71.824921632,41.383622441],[-71.824944633,41.383572442],[-71.824989632,41.383431441],[-71.825004633,41.383361442],[-71.825023633,41.383265441],[-71.824052632,41.383584441],[-71.822843631,41.383982442],[-71.821878631,41.384300441],[-71.820861631,41.384634441],[-71.820289631,41.384812442],[-71.819806631,41.384933442],[-71.819553631,41.384997442],[-71.81923963,41.385062441],[-71.819056631,41.385101441],[-71.81895963,41.385119441],[-71.818566631,41.385177441],[-71.81848563,41.385187442],[-71.81797263,41.385238442],[-71.81744263,41.385273441],[-71.81692363,41.385281442],[-71.816626629,41.385274441],[-71.816346629,41.385263442],[-71.816175629,41.385254441],[-71.815883629,41.385235441],[-71.815406629,41.385200442],[-71.815047629,41.385165442],[-71.813324628,41.385014442],[-71.813166629,41.384997442],[-71.812680628,41.384946442],[-71.812242628,41.384917442],[-71.812122628,41.384904442],[-71.811913628,41.384882442],[-71.811262628,41.384825442],[-71.810424627,41.384751442],[-71.809172627,41.384620442],[-71.808608627,41.384571442],[-71.808039626,41.384508442],[-71.807215627,41.384456442],[-71.807065626,41.384453442],[-71.806774626,41.384449442],[-71.806355626,41.384432442],[-71.805800626,41.384432442],[-71.805305626,41.384444442],[-71.804850626,41.384464442],[-71.804382626,41.384476442],[-71.804325626,41.384480442],[-71.804226626,41.384489442],[-71.804164625,41.384494442],[-71.803194625,41.384522442],[-71.803108625,41.384525442],[-71.802347625,41.384543442],[-71.800670624,41.384602442],[-71.799884624,41.384639442],[-71.799100624,41.384658442],[-71.798200624,41.384703443],[-71.797659624,41.384716442],[-71.796877623,41.384748442],[-71.793669622,41.384862443],[-71.792469622,41.384910442],[-71.790700622,41.384970443],[-71.789904621,41.385003442],[-71.789169621,41.385026442],[-71.78826762,41.385048443],[-71.784541619,41.385183443],[-71.784257619,41.385190443],[-71.782145618,41.385272443],[-71.781184618,41.385300443],[-71.779979617,41.385347443],[-71.777664617,41.385417443],[-71.776251616,41.385478443],[-71.776170617,41.385484443],[-71.775729616,41.385518443],[-71.775203616,41.385571443],[-71.774963616,41.385604443],[-71.774037616,41.385747443],[-71.773271615,41.385928443],[-71.773021615,41.385997443],[-71.772734616,41.386085443],[-71.772395615,41.386183444],[-71.772229615,41.386237443],[-71.771937615,41.386343444],[-71.771442615,41.386544443],[-71.771002615,41.386735443],[-71.770872615,41.386796443],[-71.770607615,41.386929444],[-71.770360615,41.387066444],[-71.769993614,41.387286443],[-71.769843614,41.387375444],[-71.769740614,41.387441443],[-71.769539615,41.387581444],[-71.769244614,41.387777444],[-71.769065614,41.387907443],[-71.768844614,41.388079444],[-71.768388614,41.388446444],[-71.768183614,41.388616444],[-71.766892613,41.389675444],[-71.766262614,41.390199444],[-71.765928614,41.390482444],[-71.764155613,41.391959445],[-71.762718612,41.393148445],[-71.762399613,41.393417445],[-71.761461612,41.394192445],[-71.761315612,41.394317446],[-71.760530612,41.394917445],[-71.760128612,41.395197446],[-71.759858612,41.395365446],[-71.759655611,41.395483446],[-71.759433612,41.395605446],[-71.758672611,41.395988446],[-71.758541612,41.396050446],[-71.758407611,41.396102446],[-71.757995611,41.396283446],[-71.757857611,41.396350445],[-71.757704611,41.396417446],[-71.756706611,41.396882446],[-71.75527261,41.397538447],[-71.75445861,41.397905446],[-71.751137609,41.399415446],[-71.748918608,41.400432447],[-71.748030608,41.400835447],[-71.748007608,41.400803447],[-71.747940608,41.400708447],[-71.747931608,41.400672447],[-71.747894608,41.400528447],[-71.747765608,41.400113447],[-71.747658608,41.399731447],[-71.747559608,41.399441447],[-71.747498608,41.399281447],[-71.747910608,41.398541446],[-71.748146608,41.398129446],[-71.748344608,41.397797446],[-71.748741608,41.397087447],[-71.749077608,41.396489446],[-71.749550609,41.395687445],[-71.749741608,41.395333446],[-71.749809608,41.395218446],[-71.749924608,41.395035446],[-71.750122608,41.394692445],[-71.750193609,41.394601446],[-71.750275608,41.394497445],[-71.750443609,41.394299446],[-71.750633608,41.394108445],[-71.750832609,41.393933445],[-71.751060609,41.393746445],[-71.750748608,41.393486445],[-71.750435608,41.393189446],[-71.750237608,41.393029446],[-71.750099608,41.392941445],[-71.749947608,41.392865445],[-71.749802608,41.392819446],[-71.749649609,41.392788445],[-71.749512609,41.392769445],[-71.749329608,41.392750445],[-71.748947608,41.392727445],[-71.748940608,41.392441445],[-71.748962608,41.392121445],[-71.748993608,41.391892445],[-71.749077608,41.391484445],[-71.749153608,41.391175445],[-71.749161608,41.391140445],[-71.749626608,41.389759444],[-71.749748608,41.389420445],[-71.749855608,41.389141445],[-71.749939608,41.388890445],[-71.749954608,41.388737445],[-71.749947608,41.388634444],[-71.749924608,41.388497444],[-71.749657608,41.387768445],[-71.749542608,41.387349444],[-71.749382608,41.386792445],[-71.749191608,41.386212444],[-71.748912607,41.385320444],[-71.748802607,41.384968444],[-71.748795607,41.384930444],[-71.748489607,41.383904444],[-71.748352607,41.383568444],[-71.748322608,41.383393444],[-71.748306607,41.383225443],[-71.747253607,41.383290443],[-71.746340606,41.382710444],[-71.745931606,41.382523443],[-71.745477606,41.382482444],[-71.744876606,41.382615444],[-71.744220606,41.382877443],[-71.743663606,41.383123444],[-71.742932605,41.383197444],[-71.742302605,41.383218444],[-71.741930605,41.383468444],[-71.741676605,41.383806444],[-71.741455605,41.384312444],[-71.741345605,41.384433444],[-71.740964605,41.384861444],[-71.740460605,41.385371444],[-71.738441604,41.385467445],[-71.738045604,41.386227445],[-71.738091604,41.386338445],[-71.738113604,41.386403445],[-71.738075604,41.386460445],[-71.737770604,41.386639444],[-71.737556604,41.386738444],[-71.737381604,41.386792445],[-71.737206604,41.386837444],[-71.737068604,41.386895444],[-71.737061604,41.386902445],[-71.736923604,41.386979445],[-71.736885604,41.387024445],[-71.736717604,41.387055445],[-71.736534604,41.387104445],[-71.736404604,41.387116445],[-71.736320603,41.387131444],[-71.736237603,41.387112444],[-71.736122603,41.387066445],[-71.736031604,41.387009444],[-71.735817603,41.386856444],[-71.735664604,41.386761444],[-71.735519603,41.386647445],[-71.735382603,41.386547444],[-71.735329603,41.386513445],[-71.735275603,41.386498445],[-71.735214603,41.386494445],[-71.735153603,41.386513445],[-71.735069603,41.386551445],[-71.735001603,41.386601444],[-71.734764603,41.386761444],[-71.734627603,41.386895444],[-71.734482603,41.387093445],[-71.734261603,41.387219445],[-71.734055603,41.387280445],[-71.733864603,41.387291445],[-71.733476603,41.387255445],[-71.733299603,41.387238445],[-71.732750602,41.387139445],[-71.732620603,41.387101445],[-71.732391603,41.387047445],[-71.732216602,41.387024445],[-71.731971602,41.387068444],[-71.731607602,41.386547445],[-71.731661602,41.386438445],[-71.731167602,41.385778445],[-71.730955602,41.384597444],[-71.730558601,41.384457444],[-71.730619601,41.385886445],[-71.730634602,41.386392445],[-71.730666602,41.386991444],[-71.730698601,41.387566445],[-71.730782602,41.390358446],[-71.730827602,41.392445446],[-71.730792602,41.393924446],[-71.730936602,41.398466447]]]]}}"}, +{"type": "precinct", "typeId": 3701, "areaId": 26040, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":379,\"NAME\":\"3701\",\"SHAPE_Length\":0.47128783106463,\"SHAPE_Area\":-0.0036947926188149},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.605965575,41.651020501],[-71.605927575,41.651138501],[-71.605804576,41.651506501],[-71.605705575,41.651837501],[-71.605560575,41.652286501],[-71.605393575,41.652776501],[-71.605240575,41.653243501],[-71.605179575,41.653434501],[-71.604614575,41.655144501],[-71.604401575,41.655797501],[-71.604363574,41.655924501],[-71.604309575,41.656079501],[-71.604088575,41.656764501],[-71.604057575,41.656845501],[-71.603981575,41.657077501],[-71.603790575,41.657675501],[-71.603523575,41.658488502],[-71.603149575,41.659631502],[-71.603104575,41.659753502],[-71.603065575,41.659881502],[-71.602900575,41.660379502],[-71.606833576,41.660248502],[-71.62152558,41.659758501],[-71.621684581,41.659754502],[-71.621918581,41.659752502],[-71.622375581,41.659738502],[-71.622875581,41.659747501],[-71.622972581,41.659755502],[-71.623065582,41.659753502],[-71.624709582,41.659700501],[-71.628294583,41.659627501],[-71.628553583,41.659672501],[-71.628673583,41.659665501],[-71.628840583,41.659693501],[-71.629120583,41.659692501],[-71.629478584,41.659675501],[-71.629509583,41.659675501],[-71.629914583,41.659674501],[-71.630486584,41.659657501],[-71.631104584,41.659647501],[-71.631653584,41.659630501],[-71.632324585,41.659615501],[-71.633141585,41.659600501],[-71.634926585,41.659559501],[-71.635536585,41.659541501],[-71.635933586,41.659536501],[-71.636316586,41.659528501],[-71.637032586,41.659511501],[-71.637512586,41.6595055],[-71.638542586,41.659494501],[-71.639008586,41.659479501],[-71.639436587,41.6594695],[-71.639481587,41.6594685],[-71.639740586,41.659453501],[-71.639984587,41.659457501],[-71.640343587,41.659444501],[-71.640838587,41.6594285],[-71.641480587,41.659404501],[-71.641781588,41.659395501],[-71.642052588,41.659387501],[-71.642258587,41.659378501],[-71.642921587,41.659340501],[-71.643090588,41.6593365],[-71.644630589,41.659300501],[-71.645202588,41.6592785],[-71.645676589,41.6592585],[-71.646286589,41.659231501],[-71.646498589,41.659231501],[-71.647080589,41.659231501],[-71.64821659,41.659186501],[-71.64953959,41.6591265],[-71.64960559,41.6591235],[-71.65093359,41.659074501],[-71.651573591,41.6590645],[-71.65161959,41.6590675],[-71.652290591,41.659052501],[-71.652847591,41.6590305],[-71.653221591,41.6590265],[-71.653412591,41.6590265],[-71.653869591,41.6590205],[-71.654900592,41.6590015],[-71.655937592,41.658977501],[-71.656502592,41.6589505],[-71.657081592,41.658919501],[-71.657677593,41.6589095],[-71.658195593,41.6589065],[-71.659386593,41.6588925],[-71.660080593,41.6588725],[-71.661614594,41.6588505],[-71.662255594,41.6588255],[-71.662453594,41.6588175],[-71.662941594,41.6588015],[-71.664795595,41.6587315],[-71.665428595,41.6587165],[-71.665871596,41.6586975],[-71.665909596,41.6587015],[-71.665939595,41.6587005],[-71.665970595,41.658708499],[-71.666008595,41.6587165],[-71.666039595,41.6587295],[-71.666069595,41.658746499],[-71.666107595,41.658764499],[-71.666130595,41.6587875],[-71.672743597,41.6587785],[-71.673302597,41.6587775],[-71.673551598,41.6587775],[-71.673813598,41.6587775],[-71.6788986,41.658769499],[-71.678945599,41.658764499],[-71.678997599,41.6587605],[-71.684812601,41.658670499],[-71.690983604,41.658574499],[-71.694704605,41.658517499],[-71.694824605,41.658509499],[-71.694939605,41.658503499],[-71.701641607,41.658354498],[-71.702144607,41.658343499],[-71.702830607,41.658328499],[-71.703539607,41.658312499],[-71.703650607,41.658309499],[-71.707097609,41.658232499],[-71.71082161,41.658149498],[-71.719860613,41.657880498],[-71.720105613,41.657872498],[-71.720295613,41.657864498],[-71.725378614,41.657774498],[-71.725863615,41.657769497],[-71.726571615,41.657766498],[-71.726832615,41.657750497],[-71.727881616,41.657684498],[-71.728848616,41.657667498],[-71.733897617,41.657576497],[-71.735430618,41.657528498],[-71.735512617,41.657574497],[-71.735579618,41.657574497],[-71.738247619,41.657607498],[-71.73950862,41.657382497],[-71.73962462,41.657360497],[-71.74120562,41.657397498],[-71.744158621,41.657260497],[-71.745840621,41.657183497],[-71.746543622,41.657151497],[-71.758962625,41.656719496],[-71.765480628,41.656568496],[-71.769669629,41.656425496],[-71.775901631,41.656279496],[-71.776014631,41.656280496],[-71.776092631,41.656288496],[-71.780449632,41.656200496],[-71.780487632,41.656194496],[-71.787244523,41.656073551],[-71.787657927,41.639918794],[-71.787680273,41.639282223],[-71.787712634,41.638348492],[-71.787726634,41.637954492],[-71.787731634,41.637784492],[-71.787748634,41.637275492],[-71.787755634,41.637106492],[-71.787760634,41.636945492],[-71.787777633,41.636464492],[-71.787783634,41.636304492],[-71.787795634,41.635934492],[-71.787798633,41.635838492],[-71.787834634,41.634827492],[-71.787843634,41.634588491],[-71.787846634,41.634458492],[-71.787790634,41.634535491],[-71.787629634,41.634577492],[-71.787323634,41.634624491],[-71.786896634,41.634724491],[-71.786476633,41.634829492],[-71.786026633,41.634908492],[-71.785912633,41.634937491],[-71.785706633,41.634969492],[-71.785637633,41.634966492],[-71.785515633,41.634969492],[-71.785385633,41.634959491],[-71.785248633,41.634940491],[-71.785118633,41.634884492],[-71.784958633,41.634825492],[-71.784614633,41.634649491],[-71.784073632,41.634396491],[-71.783493632,41.634154491],[-71.783081632,41.633993492],[-71.782761632,41.633870491],[-71.782349632,41.633709491],[-71.782036632,41.633568491],[-71.781784632,41.633439491],[-71.781692631,41.633572491],[-71.781509632,41.633851491],[-71.781380631,41.634106492],[-71.781250631,41.634298491],[-71.781158632,41.634463492],[-71.781014631,41.634615492],[-71.780930632,41.634707492],[-71.780785631,41.634584491],[-71.780647631,41.634529491],[-71.780472631,41.634488491],[-71.780128631,41.634420492],[-71.779854631,41.634364492],[-71.779541631,41.634317492],[-71.779152631,41.634236491],[-71.778969631,41.634214491],[-71.778816631,41.634204492],[-71.77867163,41.634203492],[-71.778618631,41.634200492],[-71.77830563,41.634144492],[-71.778137631,41.634072492],[-71.777863631,41.633997491],[-71.77758063,41.633923491],[-71.77738263,41.633883491],[-71.77708463,41.633836492],[-71.77688663,41.633800492],[-71.77673363,41.633728491],[-71.77657363,41.633668491],[-71.77636763,41.633606492],[-71.77614663,41.633580492],[-71.77603263,41.633569491],[-71.77589463,41.633559492],[-71.77570363,41.633536491],[-71.775413629,41.633530491],[-71.77515463,41.633527492],[-71.774933629,41.633528492],[-71.774775629,41.633534491],[-71.774658629,41.633539492],[-71.774086629,41.633517492],[-71.773674629,41.633473491],[-71.773453629,41.633469492],[-71.772919628,41.633455491],[-71.772812629,41.633448492],[-71.772614629,41.633444492],[-71.772064628,41.633467492],[-71.771983628,41.633468492],[-71.771965628,41.633406492],[-71.771850628,41.633292492],[-71.771789628,41.633257491],[-71.771728628,41.633218491],[-71.771645629,41.633175492],[-71.771561628,41.633145491],[-71.771507629,41.633111492],[-71.771484628,41.633048491],[-71.771454628,41.632990491],[-71.771416628,41.632919492],[-71.771362628,41.632876492],[-71.771294629,41.632828491],[-71.771240628,41.632788491],[-71.771179629,41.632758492],[-71.771111628,41.632720492],[-71.771057628,41.632667492],[-71.770996628,41.632605492],[-71.770966628,41.632552492],[-71.770943628,41.632525492],[-71.770905628,41.632580491],[-71.770866628,41.632631491],[-71.770798628,41.632655491],[-71.770691628,41.632676491],[-71.770615628,41.632686492],[-71.770508628,41.632689492],[-71.770317628,41.632685492],[-71.770226627,41.632673491],[-71.770134628,41.632671491],[-71.770042628,41.632687492],[-71.769981628,41.632733491],[-71.769905628,41.632785492],[-71.769844628,41.632822492],[-71.769776627,41.632878492],[-71.769722627,41.632920492],[-71.769653628,41.632948491],[-71.769577628,41.632986491],[-71.769516628,41.633042491],[-71.769462628,41.633083491],[-71.769394628,41.633117492],[-71.769302628,41.633146492],[-71.769211627,41.633153492],[-71.769035627,41.633188492],[-71.768967628,41.633221491],[-71.768890628,41.633246492],[-71.768745627,41.633290492],[-71.768677628,41.633332492],[-71.768631627,41.633392491],[-71.768585628,41.633447492],[-71.768517627,41.633498492],[-71.768394627,41.633605492],[-71.768341627,41.633646491],[-71.768219627,41.633730492],[-71.768112627,41.633787492],[-71.768013627,41.633825492],[-71.767944627,41.633845492],[-71.767876627,41.633860491],[-71.767784627,41.633876492],[-71.767571627,41.633917492],[-71.767502627,41.633932492],[-71.767395627,41.633953492],[-71.767311627,41.633977491],[-71.767235627,41.634006492],[-71.767166627,41.634053492],[-71.767090627,41.634077492],[-71.767029627,41.634115492],[-71.766960627,41.634170492],[-71.766869627,41.634218492],[-71.766777627,41.634260492],[-71.766724627,41.634311492],[-71.766655627,41.634362492],[-71.766602627,41.634413492],[-71.766540626,41.634446492],[-71.766456627,41.634493492],[-71.766358627,41.634532492],[-71.766304627,41.634569492],[-71.766258627,41.634615492],[-71.766212626,41.634670492],[-71.766190626,41.634761492],[-71.766151626,41.634825492],[-71.766113626,41.634884492],[-71.766091626,41.634961492],[-71.766083627,41.635025492],[-71.766090626,41.635087493],[-71.766121627,41.635141492],[-71.766136627,41.635199492],[-71.766113626,41.635249492],[-71.766029627,41.635305492],[-71.766006627,41.635333492],[-71.765977626,41.635363492],[-71.764770626,41.634971493],[-71.764664627,41.634942492],[-71.764564626,41.634908492],[-71.764473626,41.634879492],[-71.764381626,41.634845492],[-71.764305626,41.634811492],[-71.764244626,41.634776493],[-71.764183626,41.634737493],[-71.764129626,41.634693492],[-71.764053626,41.634623492],[-71.763985626,41.634553492],[-71.763924626,41.634478492],[-71.763412626,41.633864492],[-71.763374626,41.633806492],[-71.763329626,41.633753492],[-71.763290626,41.633696492],[-71.763252626,41.633647492],[-71.763214626,41.633594492],[-71.763184626,41.633541492],[-71.763153626,41.633483492],[-71.763138626,41.633425492],[-71.763115626,41.633371492],[-71.763085626,41.633296492],[-71.763054625,41.633215492],[-71.763023626,41.633144492],[-71.762985626,41.633046492],[-71.762939625,41.632952492],[-71.762894625,41.632854492],[-71.762856625,41.632765492],[-71.762810626,41.632676492],[-71.762772626,41.632587492],[-71.762390625,41.631939492],[-71.762253625,41.631717491],[-71.762222625,41.631659491],[-71.762192625,41.631597492],[-71.762161625,41.631530492],[-71.762131626,41.631468491],[-71.762108625,41.631396492],[-71.762085625,41.631329491],[-71.761826625,41.630683491],[-71.761799625,41.630610491],[-71.761728625,41.630421492],[-71.761513625,41.629839492],[-71.761307625,41.629287491],[-71.761276624,41.629205491],[-71.761261625,41.629152491],[-71.761223625,41.629053491],[-71.761192625,41.628969491],[-71.761154625,41.628879491],[-71.761124625,41.628790491],[-71.761078625,41.628679491],[-71.761040624,41.628563491],[-71.760994625,41.628451491],[-71.760918625,41.628228491],[-71.760872624,41.628116491],[-71.760841625,41.628031491],[-71.760765625,41.627871491],[-71.760727624,41.627800491],[-71.760635624,41.627667491],[-71.760613624,41.627609491],[-71.760589625,41.627551491],[-71.760323624,41.627652491],[-71.760254625,41.627694491],[-71.760178625,41.62773749],[-71.760109624,41.627783491],[-71.760048624,41.627830491],[-71.759987624,41.627881491],[-71.759933624,41.627932491],[-71.759872624,41.628001491],[-71.759811624,41.628074491],[-71.759758624,41.628148491],[-71.759721624,41.628189491],[-71.759659624,41.628271491],[-71.759606624,41.628336491],[-71.759560624,41.628404491],[-71.759522624,41.628468491],[-71.759476624,41.628537491],[-71.759460624,41.628564491],[-71.759354624,41.628770491],[-71.759323624,41.628820491],[-71.759285624,41.628870491],[-71.759255624,41.628916491],[-71.759178624,41.629017491],[-71.759132624,41.629059491],[-71.759079624,41.629100492],[-71.759018624,41.629133491],[-71.758980624,41.629152491],[-71.758957624,41.629171491],[-71.758468624,41.629385491],[-71.758392624,41.629428491],[-71.758324624,41.629470492],[-71.758255624,41.629516491],[-71.758148624,41.629600491],[-71.758103624,41.629646492],[-71.758049624,41.629711491],[-71.757942623,41.629857492],[-71.757904623,41.629921491],[-71.757858624,41.629985491],[-71.757759624,41.630163491],[-71.757729623,41.630218491],[-71.757637624,41.630319491],[-71.757583624,41.630366492],[-71.757530623,41.630421492],[-71.757423624,41.630523492],[-71.757370624,41.630587491],[-71.757309624,41.630651492],[-71.757179623,41.630808492],[-71.757111624,41.630904492],[-71.757034624,41.630996491],[-71.756988623,41.631060492],[-71.756935623,41.631129492],[-71.756889623,41.631197492],[-71.756843624,41.631275492],[-71.756805624,41.631352492],[-71.756744624,41.631512492],[-71.756722624,41.631598491],[-71.756691623,41.631679491],[-71.756668624,41.631766492],[-71.756660623,41.631802492],[-71.756653623,41.631860492],[-71.756630624,41.631947492],[-71.756492624,41.632670492],[-71.756317624,41.633616492],[-71.756119624,41.634616493],[-71.756073623,41.634788492],[-71.756050623,41.634847493],[-71.756020623,41.634902492],[-71.755982623,41.634961492],[-71.755951623,41.635002492],[-71.755905624,41.635044493],[-71.755791624,41.635137492],[-71.755722623,41.635184493],[-71.755646623,41.635226492],[-71.754619623,41.635927492],[-71.754456623,41.636038493],[-71.753540623,41.636627493],[-71.752648623,41.637248493],[-71.752045622,41.637730493],[-71.752075622,41.637802493],[-71.751732622,41.637841493],[-71.751640622,41.637848493],[-71.751541622,41.637850493],[-71.751450622,41.637862493],[-71.751335622,41.637873493],[-71.751228622,41.637880493],[-71.751114622,41.637892493],[-71.750984622,41.637900493],[-71.750633622,41.637935494],[-71.750435621,41.637958493],[-71.750122621,41.638015493],[-71.750000622,41.638045493],[-71.749916622,41.638069494],[-71.749748621,41.638127494],[-71.749657621,41.638161493],[-71.749565622,41.638190493],[-71.749473622,41.638224494],[-71.749390622,41.638258493],[-71.749313622,41.638291493],[-71.749229621,41.638320493],[-71.749107621,41.638372493],[-71.749069621,41.638396493],[-71.748986622,41.638434493],[-71.748871621,41.638491493],[-71.748771622,41.638534494],[-71.748474621,41.638676494],[-71.748375621,41.638728494],[-71.748276621,41.638784493],[-71.748184621,41.638827494],[-71.748100621,41.638869494],[-71.748001621,41.638908494],[-71.747910621,41.638946494],[-71.747864621,41.638961494],[-71.747810621,41.638975493],[-71.747704621,41.638987494],[-71.747620621,41.638989493],[-71.747582621,41.638985494],[-71.747482621,41.638979493],[-71.747368621,41.638959493],[-71.747307621,41.638938493],[-71.747246621,41.638926494],[-71.74715462,41.638901493],[-71.74706362,41.638881493],[-71.74697962,41.638865494],[-71.74690362,41.638848494],[-71.74676562,41.638834493],[-71.746704621,41.638831494],[-71.74665162,41.638823493],[-71.746483621,41.638827494],[-71.746445621,41.638834493],[-71.74638462,41.638838493],[-71.746330621,41.638849494],[-71.74628462,41.638854493],[-71.74622362,41.638865494],[-71.746117621,41.638894493],[-71.74605662,41.638914493],[-71.746002621,41.638933493],[-71.745941621,41.638953493],[-71.74585762,41.638982494],[-71.74578162,41.639015493],[-71.74559062,41.639082494],[-71.74553762,41.639097494],[-71.74535462,41.639129493],[-71.74527762,41.639139494],[-71.74519462,41.639151493],[-71.74494262,41.639184493],[-71.74489662,41.639189493],[-71.744736619,41.639193494],[-71.74462962,41.639187493],[-71.74451462,41.639185493],[-71.74443862,41.639178494],[-71.744369619,41.639179494],[-71.74430162,41.639172494],[-71.74424762,41.639160494],[-71.744156619,41.639135494],[-71.74406462,41.639105494],[-71.74397362,41.639067493],[-71.743881619,41.639024494],[-71.743805619,41.638986494],[-71.74363762,41.638899493],[-71.74354562,41.638839493],[-71.743355619,41.638713494],[-71.74324862,41.638648494],[-71.743149619,41.638591494],[-71.743042619,41.638531494],[-71.742912619,41.638466493],[-71.742775619,41.638407493],[-71.742645619,41.638338494],[-71.742516619,41.638264494],[-71.742455619,41.638225494],[-71.742378619,41.638191493],[-71.742309619,41.638152493],[-71.742241619,41.638118493],[-71.742188619,41.638097493],[-71.742088619,41.638049494],[-71.742058619,41.638041493],[-71.741943619,41.637999493],[-71.741760619,41.637940493],[-71.741654619,41.637911494],[-71.741546619,41.637873494],[-71.741340619,41.637811494],[-71.741127619,41.637748493],[-71.740921618,41.637685493],[-71.740784618,41.637648493],[-71.740646618,41.637606493],[-71.740387618,41.637523494],[-71.740265619,41.637480494],[-71.740151619,41.637434493],[-71.740036618,41.637391493],[-71.739929618,41.637349494],[-71.739822618,41.637302493],[-71.739593618,41.637208494],[-71.739471618,41.637162493],[-71.739387618,41.637137493],[-71.739311618,41.637107493],[-71.739220618,41.637082493],[-71.739105618,41.637049493],[-71.738991618,41.637015494],[-71.738876618,41.636987493],[-71.738769617,41.636958494],[-71.738671617,41.636942493],[-71.738449618,41.636893493],[-71.738220618,41.636845493],[-71.737946618,41.636797493],[-71.737862618,41.636781494],[-71.737785618,41.636761494],[-71.737617618,41.636720493],[-71.737533618,41.636694493],[-71.737450617,41.636674493],[-71.737373617,41.636653493],[-71.737305618,41.636637493],[-71.737228617,41.636612493],[-71.737160617,41.636591493],[-71.737022617,41.636540493],[-71.736870617,41.636481493],[-71.736801617,41.636451494],[-71.736702617,41.636408493],[-71.736610617,41.636374494],[-71.736526617,41.636336494],[-71.736420617,41.636298493],[-71.736321617,41.636251493],[-71.736221617,41.636208493],[-71.736054617,41.636149493],[-71.735901617,41.636085493],[-71.735741617,41.636026493],[-71.735518617,41.635936493],[-71.735405617,41.635890493],[-71.735268617,41.635843493],[-71.735123616,41.635788494],[-71.734978617,41.635738493],[-71.734886617,41.635704493],[-71.734795616,41.635674493],[-71.734703616,41.635641493],[-71.734505616,41.635573494],[-71.734405616,41.635540493],[-71.734161616,41.635455493],[-71.734039616,41.635409493],[-71.733910616,41.635367493],[-71.733788616,41.635325493],[-71.733688616,41.635287493],[-71.733589616,41.635253493],[-71.733406616,41.635185494],[-71.733314616,41.635147493],[-71.733223616,41.635113493],[-71.733147616,41.635088494],[-71.733070616,41.635058493],[-71.732986616,41.635038493],[-71.732887616,41.635008493],[-71.732795616,41.634975493],[-71.732567615,41.634917493],[-71.732429616,41.634880493],[-71.732300615,41.634847493],[-71.732178615,41.634814494],[-71.732048615,41.634772493],[-71.731758615,41.634693493],[-71.731399615,41.634589493],[-71.731270615,41.634556493],[-71.731148615,41.634518493],[-71.731026616,41.634490493],[-71.730904615,41.634457493],[-71.730774615,41.634428493],[-71.730675615,41.634399493],[-71.730576615,41.634379493],[-71.730476615,41.634345493],[-71.730408615,41.634333493],[-71.730331615,41.634313493],[-71.730263615,41.634292493],[-71.730187615,41.634276493],[-71.730118615,41.634255493],[-71.730041615,41.634234493],[-71.729996615,41.634226493],[-71.729942615,41.634209493],[-71.729889615,41.634197493],[-71.729836615,41.634180493],[-71.729774615,41.634164493],[-71.729721614,41.634143493],[-71.729660615,41.634126493],[-71.729599615,41.634100493],[-71.729538615,41.634079493],[-71.729470614,41.634058493],[-71.729423615,41.634041493],[-71.729332614,41.634003493],[-71.729279614,41.633977493],[-71.729225615,41.633952493],[-71.729179614,41.633921493],[-71.729126615,41.633895493],[-71.729080614,41.633865493],[-71.729027614,41.633839493],[-71.728943614,41.633792493],[-71.728897615,41.633775493],[-71.728836615,41.633758493],[-71.728783615,41.633746493],[-71.728722615,41.633734493],[-71.728546615,41.633711493],[-71.728409615,41.633696493],[-71.728340614,41.633693493],[-71.728287614,41.633686493],[-71.728165614,41.633680493],[-71.728103614,41.633672493],[-71.728043614,41.633669493],[-71.727982614,41.633661493],[-71.727905615,41.633654493],[-71.727837614,41.633642493],[-71.727761614,41.633635493],[-71.727623614,41.633611493],[-71.727570614,41.633604493],[-71.727509614,41.633592493],[-71.727455614,41.633579493],[-71.727394614,41.633567493],[-71.727341613,41.633555493],[-71.727280614,41.633534493],[-71.727218614,41.633517493],[-71.727150614,41.633501493],[-71.727089613,41.633480493],[-71.727028614,41.633463493],[-71.726967614,41.633451493],[-71.726906614,41.633435493],[-71.726845614,41.633414493],[-71.726784614,41.633402493],[-71.726661613,41.633369493],[-71.726601613,41.633357493],[-71.726547613,41.633340493],[-71.726425613,41.633307493],[-71.726357614,41.633299493],[-71.726288613,41.633287493],[-71.726151613,41.633273493],[-71.726082613,41.633265493],[-71.726013614,41.633262493],[-71.725868613,41.633248493],[-71.725820613,41.633246493],[-71.725723613,41.633242493],[-71.725654613,41.633230493],[-71.725586613,41.633227493],[-71.725517613,41.633220493],[-71.725395613,41.633214493],[-71.725327613,41.633216493],[-71.725258613,41.633204493],[-71.725181613,41.633197493],[-71.725113613,41.633189493],[-71.725052613,41.633186493],[-71.724991613,41.633179493],[-71.724937613,41.633171493],[-71.724816613,41.633156493],[-71.724747613,41.633144493],[-71.724678613,41.633136493],[-71.724609613,41.633125493],[-71.724571613,41.633121493],[-71.724533613,41.633113493],[-71.724487613,41.633105493],[-71.724381613,41.633089493],[-71.724353613,41.633081493],[-71.724236613,41.633048493],[-71.724167613,41.633031493],[-71.724098613,41.633020493],[-71.724037613,41.633003493],[-71.723900613,41.632988493],[-71.723839613,41.632990493],[-71.723770613,41.632987493],[-71.723579612,41.632991493],[-71.723450613,41.632994493],[-71.723374613,41.633005493],[-71.723312613,41.633007493],[-71.723244613,41.633013493],[-71.723183613,41.633032493],[-71.723129612,41.633047493],[-71.723076612,41.633066493],[-71.723015612,41.633090493],[-71.722969613,41.633114493],[-71.722916612,41.633133493],[-71.722878612,41.633157494],[-71.722824612,41.633185493],[-71.722778612,41.633213493],[-71.722641612,41.633311493],[-71.722603612,41.633352494],[-71.722580613,41.633374493],[-71.722557613,41.633394493],[-71.722519613,41.633435493],[-71.722481613,41.633472493],[-71.722275612,41.633666493],[-71.722237612,41.633712493],[-71.722191613,41.633763493],[-71.722153612,41.633809493],[-71.722107612,41.633841493],[-71.722061612,41.633878494],[-71.722015613,41.633911493],[-71.721970612,41.633939493],[-71.721939612,41.633953494],[-71.721939612,41.633868493],[-71.721970612,41.633754493],[-71.721962612,41.633647493],[-71.721893612,41.633540493],[-71.721832612,41.633452493],[-71.721809612,41.633430494],[-71.721810612,41.633403493],[-71.721809612,41.633353493],[-71.721870612,41.633234494],[-71.721962612,41.633147493],[-71.722061612,41.633045493],[-71.722061612,41.633018493],[-71.722061612,41.632991493],[-71.721985612,41.632890493],[-71.721886612,41.632842493],[-71.721844612,41.632830493],[-71.721787612,41.632813493],[-71.721695612,41.632797493],[-71.721527612,41.632792493],[-71.721382612,41.632791493],[-71.721306612,41.632753493],[-71.721245612,41.632682493],[-71.721176612,41.632571493],[-71.721107612,41.632469493],[-71.721054612,41.632367493],[-71.721169612,41.632274493],[-71.721184612,41.632224493],[-71.721153612,41.632153493],[-71.721069612,41.632114493],[-71.720932612,41.632072493],[-71.720772611,41.632054493],[-71.720619611,41.632048493],[-71.720505612,41.632074493],[-71.720375612,41.632126493],[-71.720299612,41.632056493],[-71.720406611,41.631963493],[-71.720451612,41.631854493],[-71.720398611,41.631774492],[-71.720299612,41.631723493],[-71.720230611,41.631724493],[-71.720108611,41.631795493],[-71.720024612,41.631792493],[-71.719963612,41.631735492],[-71.719933611,41.631650493],[-71.719994611,41.631532493],[-71.719910612,41.631426493],[-71.719887612,41.631354493],[-71.719955611,41.631267492],[-71.720032611,41.631171492],[-71.720024612,41.631126493],[-71.719955611,41.631078493],[-71.719803611,41.631050493],[-71.719757611,41.631024493],[-71.719765611,41.630902493],[-71.719834611,41.630802492],[-71.719940611,41.630736493],[-71.720055611,41.630657493],[-71.720131611,41.630551493],[-71.720108611,41.630471492],[-71.719994611,41.630397493],[-71.719856611,41.630319493],[-71.719848612,41.630283493],[-71.719925612,41.630214492],[-71.719955611,41.630159492],[-71.719940611,41.630047493],[-71.719963611,41.629938493],[-71.720085612,41.629881493],[-71.720108611,41.629831492],[-71.720039611,41.629720493],[-71.719948612,41.629610492],[-71.719895611,41.629526493],[-71.719940611,41.629471493],[-71.719940611,41.629399492],[-71.719856611,41.629351493],[-71.719833611,41.629275493],[-71.719757611,41.629245492],[-71.719597612,41.629240492],[-71.719505611,41.629157493],[-71.719414611,41.629145492],[-71.719337611,41.629111492],[-71.719292611,41.629013492],[-71.719322611,41.628904493],[-71.719277611,41.628851492],[-71.719170611,41.628759492],[-71.719047611,41.628690493],[-71.718933611,41.628607492],[-71.71881961,41.628543492],[-71.718720611,41.628459492],[-71.718582611,41.628404492],[-71.718422611,41.628363492],[-71.71829261,41.628303492],[-71.718224611,41.628187492],[-71.71814061,41.628081492],[-71.718170611,41.628009493],[-71.71814061,41.627960492],[-71.718086611,41.627898492],[-71.718094611,41.627776492],[-71.718048611,41.627656493],[-71.718071611,41.627637493],[-71.718170611,41.627689492],[-71.718185611,41.627616492],[-71.71815561,41.627496492],[-71.71815561,41.627257492],[-71.718185611,41.627135492],[-71.718231611,41.627016492],[-71.71825461,41.626890492],[-71.71823961,41.626805492],[-71.718147611,41.626708492],[-71.71811761,41.626596492],[-71.718056611,41.626566491],[-71.71791161,41.626556492],[-71.717842611,41.626535492],[-71.71783461,41.626467492],[-71.71778961,41.626419492],[-71.717644611,41.626364492],[-71.717567611,41.626262492],[-71.717491611,41.626205492],[-71.717392611,41.626190492],[-71.71723961,41.626171492],[-71.717140611,41.626128492],[-71.71710261,41.626115492],[-71.71697261,41.626028492],[-71.71688161,41.625923491],[-71.71688861,41.625832492],[-71.71695761,41.625754492],[-71.71710261,41.625688492],[-71.717217611,41.625586492],[-71.71729361,41.625490492],[-71.71738461,41.625393492],[-71.71747661,41.625265492],[-71.717491611,41.625161492],[-71.71741561,41.625068491],[-71.71729361,41.625003492],[-71.71710961,41.624954492],[-71.71700361,41.624970491],[-71.71695761,41.625029491],[-71.71699561,41.625100492],[-71.71699561,41.625163491],[-71.71688161,41.625220492],[-71.71678261,41.625231492],[-71.71664461,41.625154492],[-71.71653061,41.625053492],[-71.716400609,41.624952491],[-71.71628661,41.624923492],[-71.71627161,41.624973492],[-71.71619461,41.625002492],[-71.71603461,41.624997492],[-71.71588961,41.625036492],[-71.71575261,41.625121492],[-71.715660609,41.625132492],[-71.71559261,41.625106491],[-71.71556161,41.625044492],[-71.715568609,41.624913491],[-71.715523609,41.624788492],[-71.71547761,41.624690492],[-71.715492609,41.624573492],[-71.71550061,41.624429492],[-71.71550061,41.624154491],[-71.715492609,41.624024492],[-71.71542461,41.623913492],[-71.71536161,41.623850492],[-71.71521061,41.623900491],[-71.714745609,41.623915491],[-71.714416609,41.623932492],[-71.713845609,41.623972492],[-71.713425609,41.624014491],[-71.713158609,41.624047492],[-71.712921609,41.624093491],[-71.712608609,41.624110491],[-71.712441608,41.624114491],[-71.712211608,41.624106492],[-71.711998608,41.624115491],[-71.711739608,41.624094491],[-71.711457608,41.623984492],[-71.711182608,41.624179492],[-71.710609608,41.624351492],[-71.710182608,41.624541491],[-71.709824608,41.624639492],[-71.709625608,41.624860492],[-71.709343607,41.625047492],[-71.709114607,41.625120492],[-71.708832608,41.625122492],[-71.708115607,41.625211492],[-71.707611607,41.625245492],[-71.707283607,41.625271492],[-71.707298607,41.625442492],[-71.707298607,41.625491492],[-71.707092607,41.625505492],[-71.706779607,41.625544492],[-71.706574606,41.625567492],[-71.706200607,41.625607492],[-71.705994606,41.625644492],[-71.705925607,41.625654492],[-71.705864607,41.625660492],[-71.705719606,41.625659492],[-71.705467606,41.625629493],[-71.705429606,41.625621492],[-71.705154606,41.625573492],[-71.704880606,41.625521492],[-71.704750606,41.625443492],[-71.704635606,41.625329492],[-71.704506606,41.625197492],[-71.704414606,41.625113492],[-71.704277606,41.625036492],[-71.704147606,41.625003492],[-71.703873606,41.624964492],[-71.703674606,41.624915492],[-71.703529605,41.624837492],[-71.703377605,41.624719492],[-71.703194606,41.624503492],[-71.703018606,41.624309492],[-71.702736605,41.624009492],[-71.702362605,41.623595492],[-71.701866605,41.622949492],[-71.701818605,41.622885491],[-71.701591605,41.622582492],[-71.701569605,41.622560492],[-71.701508605,41.622507492],[-71.701385604,41.622465492],[-71.701218605,41.622424492],[-71.701035604,41.622387492],[-71.700890605,41.622382492],[-71.700745604,41.622381492],[-71.700630604,41.622397491],[-71.700470604,41.622450492],[-71.700325605,41.622521492],[-71.700257604,41.622789492],[-71.700058604,41.623559492],[-71.699852604,41.624162492],[-71.699608605,41.624731493],[-71.699455604,41.625063493],[-71.699379604,41.625286492],[-71.699364604,41.625498492],[-71.699364604,41.625849492],[-71.699325604,41.626318492],[-71.699303604,41.626391492],[-71.699295605,41.626441493],[-71.699264604,41.626599493],[-71.699249604,41.626685492],[-71.699234605,41.626793493],[-71.699150604,41.627029493],[-71.699066604,41.627211492],[-71.699043605,41.627253492],[-71.698883605,41.627526492],[-71.698723604,41.627908493],[-71.698647604,41.628063493],[-71.698547604,41.628237493],[-71.698456605,41.628428493],[-71.698387604,41.628619493],[-71.698288604,41.628819493],[-71.698189604,41.628988493],[-71.698090604,41.629189493],[-71.698044604,41.629280493],[-71.697922604,41.629557493],[-71.697823604,41.629771493],[-71.697754604,41.629944493],[-71.697655604,41.630163493],[-71.697563604,41.630358493],[-71.697449604,41.630577494],[-71.697342604,41.630764493],[-71.697227604,41.630929494],[-71.697098604,41.631063494],[-71.696930604,41.631215493],[-71.696777604,41.631376494],[-71.696625604,41.631533494],[-71.696495604,41.631712494],[-71.696373603,41.631868494],[-71.696278603,41.631997494],[-71.696228604,41.632065494],[-71.696144603,41.632188494],[-71.696030604,41.632349494],[-71.695824604,41.632741494],[-71.695770603,41.632769493],[-71.695717603,41.632793494],[-71.695641604,41.632835494],[-71.695572604,41.632882494],[-71.695404603,41.633003494],[-71.695358603,41.633035494],[-71.695275604,41.633096494],[-71.695183603,41.633161494],[-71.695137604,41.633185494],[-71.695084604,41.633222494],[-71.694984604,41.633283494],[-71.694931603,41.633311494],[-71.694725603,41.633437494],[-71.694687603,41.633456494],[-71.694626603,41.633503494],[-71.694588603,41.633531494],[-71.694496603,41.633596494],[-71.694443603,41.633624494],[-71.694382604,41.633662494],[-71.694343604,41.633681494],[-71.694298603,41.633709494],[-71.694233603,41.633748494],[-71.694138603,41.633807494],[-71.694090603,41.633845494],[-71.694031603,41.633886494],[-71.693978603,41.633928494],[-71.693863603,41.634007494],[-71.693802603,41.634044494],[-71.693741603,41.634086494],[-71.693687603,41.634133494],[-71.693634603,41.634184494],[-71.693581603,41.634230495],[-71.693520603,41.634272494],[-71.693474603,41.634318494],[-71.693298603,41.634453494],[-71.693230603,41.634504494],[-71.693161603,41.634550494],[-71.693092603,41.634592494],[-71.693024603,41.634639495],[-71.692940602,41.634691494],[-71.692863602,41.634737495],[-71.692741603,41.634821494],[-71.692696603,41.634863494],[-71.692650602,41.634909495],[-71.692597603,41.634946495],[-71.692543603,41.634979494],[-71.692497602,41.635012494],[-71.692444603,41.635044495],[-71.692329603,41.635106495],[-71.692246602,41.635135494],[-71.692184602,41.635150494],[-71.692032602,41.635176494],[-71.691803603,41.635195494],[-71.691696602,41.635197495],[-71.691589603,41.635195494],[-71.691482602,41.635198495],[-71.691376603,41.635196494],[-71.691277602,41.635202495],[-71.691071602,41.635198495],[-71.690971602,41.635192494],[-71.690872603,41.635180495],[-71.690773602,41.635174494],[-71.690681602,41.635176494],[-71.690582602,41.635174494],[-71.690285602,41.635181495],[-71.690170602,41.635188494],[-71.690010602,41.635201495],[-71.689850602,41.635209494],[-71.689323602,41.635221495],[-71.689224602,41.635214494],[-71.689117602,41.635217495],[-71.688904601,41.635213494],[-71.688652601,41.635201495],[-71.688461601,41.635187494],[-71.688255601,41.635165495],[-71.688042601,41.635161495],[-71.687942601,41.635154494],[-71.687843601,41.635157495],[-71.687744601,41.635154494],[-71.687645601,41.635157495],[-71.687553601,41.635150494],[-71.687462601,41.635152494],[-71.687263601,41.635148494],[-71.687172601,41.635145495],[-71.687142601,41.635146495],[-71.686996601,41.635149494],[-71.686905601,41.635161495],[-71.686775601,41.635164495],[-71.686630601,41.635176495],[-71.686417601,41.635199495],[-71.686356601,41.635209494],[-71.686302601,41.635215495],[-71.6861346,41.635246494],[-71.685700601,41.634518495],[-71.6854936,41.634158494],[-71.685409601,41.634151495],[-71.685371601,41.634147495],[-71.6853266,41.634148495],[-71.6852886,41.634145495],[-71.6852426,41.634146495],[-71.685196601,41.634142494],[-71.6851426,41.634135494],[-71.6850896,41.634136494],[-71.6850436,41.634132495],[-71.6849366,41.634135494],[-71.6848916,41.634131495],[-71.6847536,41.634135494],[-71.6847006,41.634131495],[-71.6845556,41.634148495],[-71.6845176,41.634154494],[-71.6842886,41.634227495],[-71.684242599,41.634246495],[-71.6841966,41.634260495],[-71.6841586,41.634279494],[-71.6841286,41.634293494],[-71.6840896,41.634308495],[-71.6840446,41.634336494],[-71.683990599,41.634360495],[-71.6839456,41.634388494],[-71.6838996,41.634411494],[-71.683853599,41.634430494],[-71.6838076,41.634454495],[-71.683739599,41.634478495],[-71.683601599,41.634517495],[-71.683525599,41.634542495],[-71.6834416,41.634557495],[-71.683365599,41.634572495],[-71.683212599,41.634585494],[-71.6830446,41.634589494],[-71.682861599,41.634575495],[-71.682785599,41.634568494],[-71.6827166,41.634560495],[-71.682648599,41.634544494],[-71.6825796,41.634523494],[-71.6825036,41.634493495],[-71.682442599,41.634463495],[-71.682381599,41.634420495],[-71.682319599,41.634367494],[-71.682266599,41.634323495],[-71.682129599,41.634218494],[-71.682060599,41.634171495],[-71.681991599,41.634127495],[-71.681923599,41.634093495],[-71.681847599,41.634058494],[-71.681755599,41.634034495],[-71.681656599,41.634013495],[-71.681557599,41.634007495],[-71.681473599,41.634004494],[-71.681389599,41.634011495],[-71.681305599,41.634026495],[-71.681229599,41.634046495],[-71.681076599,41.634094494],[-71.681007598,41.634128495],[-71.680939599,41.634165495],[-71.680801599,41.634231494],[-71.680733598,41.634269495],[-71.680664599,41.634302495],[-71.680588599,41.634340495],[-71.680512599,41.634373494],[-71.680435599,41.634411494],[-71.680351599,41.634449494],[-71.680199599,41.634525494],[-71.680138599,41.634558495],[-71.680076598,41.634582494],[-71.680023599,41.634601494],[-71.679932598,41.634616495],[-71.679848599,41.634618495],[-71.679688598,41.634604494],[-71.679611598,41.634583494],[-71.679535598,41.634567494],[-71.679367598,41.634517495],[-71.679276598,41.634501495],[-71.679214598,41.634494495],[-71.679153598,41.634495495],[-71.679092599,41.634501495],[-71.679024598,41.634543494],[-71.678525598,41.634256494],[-71.678244598,41.633915495],[-71.678150598,41.633644495],[-71.678191598,41.633340494],[-71.677344597,41.633336494],[-71.676865598,41.633312495],[-71.676409597,41.633064494],[-71.676188597,41.632884495],[-71.675746597,41.632387494],[-71.675387597,41.631710494],[-71.675249597,41.630633494],[-71.675235596,41.629790494],[-71.675049597,41.628966493],[-71.675049597,41.628813493],[-71.675041596,41.628764494],[-71.675033597,41.628706494],[-71.675018596,41.628656493],[-71.674995597,41.628603494],[-71.674957597,41.628550494],[-71.674927596,41.628505494],[-71.674881596,41.628461493],[-71.674835597,41.628413494],[-71.674782597,41.628378494],[-71.674721597,41.628353494],[-71.674660597,41.628331494],[-71.674599596,41.628315494],[-71.674530596,41.628312494],[-71.674461596,41.628314494],[-71.674385596,41.628315494],[-71.673958596,41.628361493],[-71.673652597,41.628400493],[-71.673569596,41.628415494],[-71.673432596,41.628428494],[-71.673271596,41.628422493],[-71.673195596,41.628420493],[-71.673118596,41.628412494],[-71.673050596,41.628400493],[-71.672989596,41.628379494],[-71.672936596,41.628363493],[-71.672882596,41.628337494],[-71.672523595,41.628188493],[-71.672142596,41.628034493],[-71.672089596,41.628009494],[-71.672028596,41.627983494],[-71.671967596,41.627962494],[-71.671921595,41.627940494],[-71.671867595,41.627928494],[-71.671814596,41.627911494],[-71.671745595,41.627895493],[-71.671692595,41.627887494],[-71.671631595,41.627875493],[-71.671486596,41.627869494],[-71.671410595,41.627871494],[-71.671272596,41.627892494],[-71.671203595,41.627898493],[-71.670791595,41.627940494],[-71.670296595,41.628001494],[-71.668961594,41.628162494],[-71.668694595,41.628204494],[-71.668426594,41.628242494],[-71.668228595,41.628283493],[-71.667702594,41.628381493],[-71.666718594,41.628570494],[-71.666824594,41.628919494],[-71.666855594,41.629017494],[-71.666878594,41.629111494],[-71.666916594,41.629209494],[-71.666947594,41.629285494],[-71.666969594,41.629330494],[-71.666984594,41.629356494],[-71.667023594,41.629432494],[-71.667213594,41.629698494],[-71.667251594,41.629764495],[-71.667298594,41.629835494],[-71.667328594,41.629902494],[-71.667359594,41.630032494],[-71.667366594,41.630100494],[-71.667374594,41.630167494],[-71.667374594,41.630234494],[-71.667366594,41.630302494],[-71.667335594,41.630370494],[-71.667275595,41.630516494],[-71.667251594,41.630683494],[-71.667252594,41.630755495],[-71.667244594,41.630823494],[-71.667252594,41.630895495],[-71.667252594,41.630953495],[-71.667259594,41.631021494],[-71.667267594,41.631079494],[-71.667381594,41.631743494],[-71.667465594,41.632110494],[-71.667485595,41.632216495],[-71.667518594,41.632393495],[-71.667656594,41.633038495],[-71.667778595,41.633553495],[-71.667877595,41.633987495],[-71.667908594,41.634207495],[-71.667923594,41.634509495],[-71.667931595,41.634797495],[-71.667938595,41.635004495],[-71.667976595,41.635259495],[-71.668030595,41.635546495],[-71.668114594,41.635900495],[-71.668129595,41.636129495],[-71.668137594,41.636323495],[-71.668129595,41.636422495],[-71.668091595,41.636594495],[-71.668022595,41.636789495],[-71.667953595,41.636971496],[-71.667870595,41.637144495],[-71.667832595,41.637289496],[-71.667824594,41.637415495],[-71.667827594,41.637443496],[-71.667839595,41.637546495],[-71.667900594,41.637706495],[-71.668030595,41.637901495],[-71.668205595,41.638159496],[-71.668312595,41.638327495],[-71.668442595,41.638504495],[-71.668663595,41.638832496],[-71.668800595,41.639032496],[-71.668838595,41.639162496],[-71.668846595,41.639328496],[-71.668862595,41.639796496],[-71.668864595,41.640164496],[-71.668865595,41.640289496],[-71.668869595,41.640804496],[-71.668869595,41.641052497],[-71.668884595,41.641295496],[-71.668900595,41.641371496],[-71.669022595,41.642053496],[-71.669017595,41.642309496],[-71.669006596,41.642877497],[-71.669044596,41.643363497],[-71.669113595,41.644122497],[-71.669098595,41.644663497],[-71.669093595,41.644951497],[-71.669090595,41.645163497],[-71.669090595,41.645532497],[-71.669098596,41.645915497],[-71.669128595,41.646261498],[-71.669128595,41.646486497],[-71.669128595,41.646787498],[-71.669129595,41.647143497],[-71.669121596,41.647436497],[-71.669128595,41.647729497],[-71.669144596,41.647989498],[-71.669159596,41.648111498],[-71.669166596,41.648178497],[-71.669235596,41.648514498],[-71.669250596,41.648824498],[-71.669251596,41.649144498],[-71.669281596,41.649598497],[-71.669266595,41.649896498],[-71.669243596,41.650194498],[-71.669212596,41.650622498],[-71.669251596,41.650716498],[-71.669518596,41.651101498],[-71.669060596,41.650878498],[-71.668923596,41.650813498],[-71.668785596,41.650745498],[-71.668579596,41.650655498],[-71.668442596,41.650599498],[-71.668282596,41.650540498],[-71.668114595,41.650485498],[-71.667961595,41.650444498],[-71.667824595,41.650411498],[-71.667527596,41.650355498],[-71.667333596,41.650332498],[-71.667229595,41.650321498],[-71.666717595,41.650306498],[-71.666521595,41.650310498],[-71.666458595,41.650312498],[-71.665924595,41.650343498],[-71.665314594,41.650366498],[-71.665217594,41.650368498],[-71.664635594,41.650382498],[-71.664123594,41.650389498],[-71.663780594,41.650397498],[-71.663460594,41.650395499],[-71.662972594,41.650380498],[-71.662582594,41.650380498],[-71.662117594,41.650408498],[-71.661652593,41.650410498],[-71.661056593,41.650419498],[-71.660675593,41.650446498],[-71.660606593,41.650452499],[-71.660309593,41.650450499],[-71.659981593,41.650440498],[-71.659676593,41.650411499],[-71.659424593,41.650390498],[-71.659317593,41.650383498],[-71.658913592,41.650325498],[-71.658531592,41.650307498],[-71.658165593,41.650297499],[-71.657806592,41.650301498],[-71.657433592,41.650319498],[-71.657241592,41.650335499],[-71.657150592,41.650343498],[-71.656975592,41.650361498],[-71.656654592,41.650382498],[-71.656212592,41.650401498],[-71.655792591,41.650411499],[-71.655395592,41.650429499],[-71.654999591,41.650456498],[-71.654625591,41.650496498],[-71.654335591,41.650534498],[-71.653816591,41.650609499],[-71.653633591,41.650618498],[-71.65313759,41.650625499],[-71.652450591,41.650641499],[-71.65190159,41.650645499],[-71.65161959,41.650660499],[-71.65118459,41.650679499],[-71.65069659,41.650681499],[-71.650429589,41.650683499],[-71.64970459,41.650740499],[-71.649338589,41.650753499],[-71.649300589,41.650759499],[-71.648468589,41.650778499],[-71.648216589,41.650779499],[-71.647926589,41.650768498],[-71.647583589,41.650740499],[-71.647545589,41.650736499],[-71.647293589,41.650679499],[-71.647080589,41.650603499],[-71.646866588,41.650473499],[-71.646545588,41.650295499],[-71.646489588,41.650260499],[-71.646179588,41.650065499],[-71.645882588,41.649874498],[-71.645554588,41.649593499],[-71.645371588,41.649458499],[-71.645142588,41.649337499],[-71.644882588,41.649208498],[-71.644295588,41.648983499],[-71.644020588,41.648845498],[-71.643753588,41.648675499],[-71.643410587,41.648440499],[-71.643089587,41.648222498],[-71.642960587,41.648144498],[-71.642891587,41.648105498],[-71.642738587,41.648028498],[-71.642555587,41.647955499],[-71.642479587,41.647935499],[-71.642220587,41.647878499],[-71.641968587,41.647829498],[-71.641746587,41.647807498],[-71.640811587,41.647772498],[-71.640274586,41.647751498],[-71.640190586,41.647749498],[-71.640131586,41.647744499],[-71.640098586,41.647742499],[-71.640034586,41.647738499],[-71.639343586,41.647701499],[-71.638962585,41.647678499],[-71.638420585,41.647668498],[-71.637939586,41.647647499],[-71.637291585,41.647635498],[-71.636566585,41.647598499],[-71.635971585,41.647566499],[-71.635841584,41.647565499],[-71.635515585,41.647558498],[-71.635422585,41.647556498],[-71.635336584,41.647557498],[-71.634842585,41.647565499],[-71.634735584,41.647563499],[-71.634544584,41.647563499],[-71.633812584,41.647580499],[-71.633400584,41.647585499],[-71.633224584,41.647584499],[-71.632866584,41.647570498],[-71.632774584,41.647559499],[-71.632477584,41.647556498],[-71.632372583,41.647556498],[-71.632324584,41.647555498],[-71.631706583,41.647570498],[-71.631042583,41.647589498],[-71.630684583,41.647602499],[-71.630203582,41.647608499],[-71.630089583,41.647611498],[-71.629944583,41.647605499],[-71.629852582,41.647598499],[-71.629761583,41.647578499],[-71.629578583,41.647515498],[-71.629234582,41.647365499],[-71.628738583,41.647129499],[-71.628494582,41.647008498],[-71.628334582,41.646895499],[-71.628204582,41.646781499],[-71.628075583,41.646639498],[-71.627937582,41.646453499],[-71.627800582,41.646236499],[-71.627632582,41.645956498],[-71.627403582,41.645561498],[-71.627197582,41.645164498],[-71.626984582,41.644733498],[-71.626862582,41.644483498],[-71.626816582,41.644408499],[-71.626762582,41.644350499],[-71.626724582,41.644306498],[-71.626701582,41.644284498],[-71.626686582,41.644262498],[-71.626640581,41.644214499],[-71.626488582,41.644095498],[-71.626206581,41.643953498],[-71.625763581,41.643747498],[-71.625374581,41.643563498],[-71.625084581,41.643439498],[-71.624847581,41.643313498],[-71.624802581,41.643287498],[-71.624756581,41.643257498],[-71.624718581,41.643222498],[-71.62429658,41.643160498],[-71.624290581,41.643160498],[-71.624000581,41.643135498],[-71.623726581,41.643118498],[-71.62343658,41.643107498],[-71.62336058,41.643095498],[-71.62328358,41.643092498],[-71.62319258,41.643090498],[-71.623100581,41.643092498],[-71.62300958,41.643103498],[-71.62293358,41.643114498],[-71.62284158,41.643130498],[-71.62273458,41.643159498],[-71.62264358,41.643179498],[-71.62243758,41.643251498],[-71.62227658,41.643300498],[-71.62213958,41.643371498],[-71.62189558,41.643525498],[-71.621506579,41.643808498],[-71.62113958,41.644064498],[-71.62091858,41.644214499],[-71.62058358,41.644455498],[-71.620239579,41.644697499],[-71.61990358,41.644903498],[-71.619660579,41.645107499],[-71.619606579,41.645158498],[-71.61955358,41.645222499],[-71.619522579,41.645281499],[-71.61949258,41.645331498],[-71.61945458,41.645458499],[-71.619423579,41.645518499],[-71.619316579,41.645619499],[-71.619148579,41.645758498],[-71.618462579,41.646237499],[-71.617569578,41.646875499],[-71.616875579,41.647368499],[-71.616577578,41.647546499],[-71.616493578,41.647584499],[-71.616401578,41.647613499],[-71.616303578,41.6476475],[-71.616211578,41.647676499],[-71.616119579,41.6477235],[-71.615997578,41.647793499],[-71.615685578,41.6480165],[-71.615471578,41.648179499],[-71.615425578,41.6482115],[-71.614883578,41.648652499],[-71.614555578,41.6489075],[-71.614426577,41.649054499],[-71.614395578,41.6491225],[-71.614380578,41.649194499],[-71.614380578,41.649266499],[-71.614388577,41.6493385],[-71.614388577,41.6494735],[-71.614254578,41.6495125],[-71.614243578,41.649504499],[-71.614136577,41.6494125],[-71.614052578,41.649305499],[-71.613953578,41.649209499],[-71.613884577,41.6491025],[-71.613754578,41.648878499],[-71.613728577,41.648896499],[-71.613662578,41.648943499],[-71.613380577,41.6491415],[-71.612915577,41.649448499],[-71.612472578,41.649715499],[-71.611961577,41.6499745],[-71.611481577,41.6501975],[-71.611000577,41.6503925],[-71.610489576,41.6505805],[-71.609970576,41.6507275],[-71.609520576,41.6508455],[-71.609039576,41.6509375],[-71.608513576,41.6510075],[-71.608307576,41.6510305],[-71.608009576,41.6510645],[-71.607582575,41.6510875],[-71.607010576,41.6510865],[-71.606491575,41.6510625],[-71.606064575,41.6510275],[-71.605965575,41.651020501]]]]}}"}, +{"type": "precinct", "typeId": 3702, "areaId": 26039, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":378,\"NAME\":\"3702\",\"SHAPE_Length\":0.2523582707041,\"SHAPE_Area\":-0.0010999029630717},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.667229595,41.650321498],[-71.667333596,41.650332498],[-71.667527596,41.650355498],[-71.667824595,41.650411498],[-71.667961595,41.650444498],[-71.668114595,41.650485498],[-71.668282596,41.650540498],[-71.668442596,41.650599498],[-71.668579596,41.650655498],[-71.668785596,41.650745498],[-71.668923596,41.650813498],[-71.669060596,41.650878498],[-71.669518596,41.651101498],[-71.669251596,41.650716498],[-71.669212596,41.650622498],[-71.669243596,41.650194498],[-71.669266595,41.649896498],[-71.669281596,41.649598497],[-71.669251596,41.649144498],[-71.669250596,41.648824498],[-71.669235596,41.648514498],[-71.669166596,41.648178497],[-71.669159596,41.648111498],[-71.669144596,41.647989498],[-71.669128595,41.647729497],[-71.669121596,41.647436497],[-71.669129595,41.647143497],[-71.669128595,41.646787498],[-71.669128595,41.646486497],[-71.669128595,41.646261498],[-71.669098596,41.645915497],[-71.669090595,41.645532497],[-71.669090595,41.645163497],[-71.669093595,41.644951497],[-71.669098595,41.644663497],[-71.669113595,41.644122497],[-71.669044596,41.643363497],[-71.669006596,41.642877497],[-71.669017595,41.642309496],[-71.669022595,41.642053496],[-71.668900595,41.641371496],[-71.668884595,41.641295496],[-71.668869595,41.641052497],[-71.668869595,41.640804496],[-71.668865595,41.640289496],[-71.668864595,41.640164496],[-71.668862595,41.639796496],[-71.668846595,41.639328496],[-71.668838595,41.639162496],[-71.668800595,41.639032496],[-71.668663595,41.638832496],[-71.668442595,41.638504495],[-71.668312595,41.638327495],[-71.668205595,41.638159496],[-71.668030595,41.637901495],[-71.667900594,41.637706495],[-71.667839595,41.637546495],[-71.667827594,41.637443496],[-71.667656595,41.637464496],[-71.667580595,41.637484496],[-71.667511594,41.637504496],[-71.667457594,41.637541496],[-71.667389595,41.637570495],[-71.667297594,41.637590495],[-71.667221594,41.637605495],[-71.667137595,41.637607495],[-71.667053595,41.637618496],[-71.666954594,41.637634496],[-71.666870594,41.637640496],[-71.666786595,41.637656496],[-71.666725595,41.637648495],[-71.666664594,41.637622496],[-71.666580594,41.637606495],[-71.666489594,41.637581496],[-71.666420594,41.637552496],[-71.666321594,41.637518496],[-71.666237594,41.637502496],[-71.666062594,41.637479496],[-71.665985594,41.637454495],[-71.665940594,41.637414495],[-71.665901594,41.637365496],[-71.665863594,41.637312495],[-71.665817594,41.637259495],[-71.665749594,41.637207496],[-71.665695594,41.637163496],[-71.665657594,41.637114496],[-71.665611594,41.637057496],[-71.665573594,41.637004495],[-71.665527594,41.636946495],[-71.665459594,41.636885495],[-71.665405593,41.636841496],[-71.665359594,41.636793495],[-71.665306593,41.636758496],[-71.665214594,41.636733495],[-71.665123594,41.636726496],[-71.664902594,41.636731495],[-71.664825594,41.636742496],[-71.664749594,41.636775496],[-71.664696594,41.636826495],[-71.664650593,41.636877496],[-71.664597594,41.636932496],[-71.664474593,41.637016496],[-71.664368594,41.637068496],[-71.664276593,41.637088496],[-71.664169594,41.637099495],[-71.664062593,41.637106496],[-71.663971593,41.637100495],[-71.663879594,41.637075496],[-71.663788593,41.637045495],[-71.663704594,41.637052496],[-71.663544593,41.637055496],[-71.663452594,41.637053496],[-71.663376593,41.637032496],[-71.663307593,41.637011496],[-71.663223593,41.636995496],[-71.663132593,41.636961495],[-71.663048593,41.636936496],[-71.662979593,41.636911496],[-71.662910593,41.636872496],[-71.662826593,41.636820496],[-71.662743593,41.636750495],[-71.662674593,41.636711495],[-71.662598593,41.636686496],[-71.662514593,41.636660496],[-71.662445593,41.636622496],[-71.662376593,41.636592495],[-71.662308593,41.636553495],[-71.662216593,41.636492496],[-71.662163593,41.636461495],[-71.662102593,41.636422495],[-71.662026593,41.636357495],[-71.661919593,41.636282495],[-71.661835592,41.636230496],[-71.661812593,41.636186495],[-71.661812593,41.636055496],[-71.661804593,41.635997496],[-71.661789593,41.635939496],[-71.661766593,41.635867496],[-71.661720592,41.635814495],[-71.661667592,41.635770496],[-71.661621592,41.635681495],[-71.661606592,41.635601495],[-71.661583592,41.635547495],[-71.661560593,41.635485495],[-71.661537593,41.635413496],[-71.661530592,41.635355496],[-71.661514593,41.635297496],[-71.661491592,41.635198495],[-71.661469592,41.635140495],[-71.661461593,41.635082495],[-71.661461593,41.634875495],[-71.661430592,41.634817495],[-71.661362593,41.634760495],[-71.661293592,41.634730495],[-71.661216592,41.634718495],[-71.661140592,41.634711495],[-71.661072593,41.634690495],[-71.660995593,41.634660495],[-71.660835592,41.634578496],[-71.660774592,41.634539496],[-71.660721593,41.634473495],[-71.660683593,41.634420495],[-71.660614592,41.634340495],[-71.660560592,41.634301495],[-71.660515592,41.634253495],[-71.660461592,41.634209496],[-71.660416592,41.634169496],[-71.660316592,41.634095495],[-71.660225592,41.634057495],[-71.660149592,41.634049495],[-71.660072592,41.634047495],[-71.660011592,41.634075495],[-71.659950592,41.634135495],[-71.659889592,41.634182495],[-71.659833592,41.634189496],[-71.659805592,41.634192495],[-71.659554591,41.634198495],[-71.659469592,41.634196495],[-71.659378591,41.634202495],[-71.659302591,41.634222495],[-71.659164591,41.634306496],[-71.659103592,41.634348495],[-71.659050591,41.634390495],[-71.658890591,41.634520496],[-71.658798591,41.634558496],[-71.658707592,41.634574495],[-71.658608592,41.634567495],[-71.658470591,41.634566495],[-71.658394592,41.634563495],[-71.658135591,41.634569495],[-71.657974591,41.634582495],[-71.657890591,41.634565495],[-71.657745591,41.634501496],[-71.657661591,41.634499496],[-71.657555591,41.634506495],[-71.657486591,41.634516495],[-71.657387592,41.634559496],[-71.657356591,41.634600496],[-71.657303591,41.634674496],[-71.657280591,41.634737496],[-71.657257591,41.634805495],[-71.657219591,41.634865495],[-71.657066591,41.634882495],[-71.657013591,41.634869496],[-71.656906591,41.634840495],[-71.656830591,41.634815496],[-71.656670591,41.634760495],[-71.656601591,41.634721495],[-71.656540591,41.634682495],[-71.656487591,41.634634496],[-71.65643359,41.634577496],[-71.656372591,41.634533495],[-71.65631959,41.634498496],[-71.65622059,41.634442496],[-71.656151591,41.634408495],[-71.65608259,41.634369495],[-71.65600659,41.634352495],[-71.655922591,41.634341496],[-71.655861591,41.634297495],[-71.655785591,41.634272495],[-71.655685591,41.634261495],[-71.65559459,41.634240495],[-71.65556459,41.634196495],[-71.65555659,41.634142495],[-71.65555659,41.634007495],[-71.655548591,41.633931495],[-71.655495591,41.633905495],[-71.655411591,41.633880495],[-71.65534259,41.633868495],[-71.655258591,41.633879496],[-71.655106591,41.633918496],[-71.65501459,41.633925495],[-71.654907591,41.633936496],[-71.65480859,41.633970495],[-71.65477059,41.634012496],[-71.65474759,41.634071496],[-71.654694591,41.634117495],[-71.654617591,41.634123495],[-71.65453359,41.634121495],[-71.65445759,41.634095495],[-71.654404591,41.634047495],[-71.65438159,41.633989495],[-71.65433559,41.633932496],[-71.65425959,41.633893496],[-71.65387059,41.633902495],[-71.65380159,41.633908495],[-71.65370959,41.633919495],[-71.65359559,41.633926495],[-71.65347359,41.633938495],[-71.653374589,41.633949495],[-71.65329059,41.633951496],[-71.65322159,41.633912496],[-71.653160589,41.633860495],[-71.653084589,41.633816496],[-71.65301559,41.633782495],[-71.652947589,41.633721496],[-71.65290059,41.633731495],[-71.65281759,41.633742496],[-71.652695589,41.633767495],[-71.652619589,41.633764495],[-71.65248959,41.633763495],[-71.65238959,41.633765495],[-71.652229589,41.633796496],[-71.652153589,41.633797496],[-71.651970589,41.633802495],[-71.65188659,41.633799496],[-71.651726589,41.633744495],[-71.65163459,41.633733495],[-71.651551589,41.633753495],[-71.651474589,41.633755495],[-71.651398589,41.633743495],[-71.651306589,41.633704495],[-71.651268589,41.633651495],[-71.651230589,41.633576495],[-71.651169589,41.633550495],[-71.651100589,41.633529495],[-71.651031589,41.633517495],[-71.650955589,41.633505496],[-71.650871589,41.633494495],[-71.650795589,41.633473495],[-71.650734589,41.633438495],[-71.650635589,41.633333496],[-71.650582588,41.633293496],[-71.650482589,41.633264495],[-71.650429588,41.633216496],[-71.650253588,41.633188495],[-71.650185589,41.633167495],[-71.650154588,41.633092495],[-71.650154588,41.633028495],[-71.650124589,41.632989495],[-71.650062588,41.632968495],[-71.649986589,41.632969495],[-71.649872589,41.632963495],[-71.649795589,41.632942496],[-71.649734589,41.632917495],[-71.649635588,41.632905495],[-71.649536588,41.632917495],[-71.649452588,41.632914495],[-71.649429589,41.632897495],[-71.649414588,41.632838495],[-71.649345588,41.632768495],[-71.649262588,41.632738495],[-71.649147588,41.632700495],[-71.649101588,41.632661495],[-71.649033588,41.632609496],[-71.648911588,41.632530496],[-71.648826589,41.632501495],[-71.648758588,41.632507495],[-71.648674588,41.632531496],[-71.648598588,41.632574495],[-71.648537588,41.632611496],[-71.648438588,41.632681495],[-71.648392588,41.632700495],[-71.648270588,41.632689496],[-71.648186588,41.632669496],[-71.648155588,41.632615495],[-71.648109588,41.632553495],[-71.648033588,41.632533496],[-71.647934588,41.632521495],[-71.647835588,41.632501495],[-71.647797588,41.632479495],[-71.647751588,41.632417495],[-71.647690588,41.632374496],[-71.647629588,41.632344495],[-71.647537588,41.632346495],[-71.647377588,41.632340495],[-71.647263588,41.632289495],[-71.647179588,41.632264495],[-71.647110588,41.632234495],[-71.647057587,41.632181496],[-71.646980587,41.632147495],[-71.646942587,41.632143496],[-71.646904587,41.632131495],[-71.646820587,41.632101495],[-71.646774588,41.632048495],[-71.646698588,41.632009495],[-71.646607587,41.631953495],[-71.646538588,41.631905495],[-71.646477587,41.631861495],[-71.646370587,41.631747495],[-71.646172588,41.631666495],[-71.646095588,41.631627495],[-71.646011587,41.631579495],[-71.645905587,41.631532495],[-71.645790587,41.631503495],[-71.645699587,41.631492495],[-71.645599587,41.631494495],[-71.645523587,41.631492495],[-71.645424587,41.631494495],[-71.645348587,41.631491495],[-71.645241587,41.631494495],[-71.645134587,41.631492495],[-71.645050587,41.631493495],[-71.644959587,41.631491495],[-71.644836587,41.631485495],[-71.644730587,41.631478495],[-71.644615586,41.631472495],[-71.644546587,41.631465495],[-71.644463586,41.631444495],[-71.644386586,41.631437495],[-71.644241587,41.631436495],[-71.644150586,41.631438495],[-71.644089586,41.631457495],[-71.644081587,41.631520495],[-71.644043587,41.631575495],[-71.643997586,41.631603495],[-71.643913586,41.631605495],[-71.643852587,41.631557496],[-71.643791587,41.631518496],[-71.643738586,41.631483495],[-71.643692587,41.631430495],[-71.643623586,41.631396495],[-71.643539587,41.631380495],[-71.643425586,41.631369495],[-71.643387586,41.631311495],[-71.643341587,41.631249495],[-71.643295586,41.631183495],[-71.643265587,41.631129496],[-71.643272586,41.631080495],[-71.643356586,41.631060495],[-71.643448586,41.631026495],[-71.643486586,41.630994495],[-71.643478587,41.630913495],[-71.643463587,41.630832495],[-71.643440587,41.630751495],[-71.643402587,41.630680495],[-71.643364587,41.630627495],[-71.643280586,41.630575495],[-71.643234586,41.630527495],[-71.643211586,41.630451495],[-71.643196586,41.630316495],[-71.643188587,41.630253495],[-71.643120586,41.630182495],[-71.643082586,41.630129495],[-71.643051586,41.630112495],[-71.643028586,41.630131495],[-71.642960586,41.630110495],[-71.642853586,41.630072495],[-71.642830586,41.630013495],[-71.642837586,41.629923495],[-71.642845586,41.629851495],[-71.642807586,41.629793495],[-71.642739586,41.629754495],[-71.642723586,41.629728495],[-71.642776586,41.629681495],[-71.642822586,41.629617495],[-71.642754586,41.629583495],[-71.642693586,41.629539495],[-71.642601586,41.629487495],[-71.642547586,41.629448495],[-71.642533586,41.629385495],[-71.642540586,41.629363495],[-71.642555586,41.629326495],[-71.642586586,41.629267495],[-71.642616586,41.629217495],[-71.642677586,41.629148495],[-71.642677586,41.629112495],[-71.642624586,41.629046494],[-71.642555586,41.628989494],[-71.642441586,41.628960495],[-71.642380586,41.628939495],[-71.642250586,41.628834495],[-71.642220586,41.628789495],[-71.642219586,41.628627495],[-71.642220586,41.628569495],[-71.642212586,41.628515495],[-71.642212586,41.628434495],[-71.642197585,41.628371495],[-71.642143586,41.628318495],[-71.642059586,41.628257495],[-71.641960586,41.628223495],[-71.641861586,41.628226494],[-71.641785586,41.628223495],[-71.641678586,41.628225494],[-71.641579585,41.628219495],[-71.641533586,41.628134494],[-71.641449586,41.628077495],[-71.641388586,41.628038495],[-71.641312586,41.627991494],[-71.641243585,41.627947495],[-71.641174586,41.627890495],[-71.641121586,41.627851495],[-71.641029585,41.627808495],[-71.640923586,41.627761494],[-71.640861585,41.627731495],[-71.640701585,41.627671495],[-71.640617585,41.627655495],[-71.640518586,41.627653495],[-71.640442585,41.627682494],[-71.640320585,41.627725494],[-71.640243585,41.627745495],[-71.640152585,41.627675495],[-71.640137585,41.627558495],[-71.640098585,41.627510494],[-71.640045585,41.627452494],[-71.639977585,41.627413494],[-71.639870585,41.627362495],[-71.639794585,41.627327494],[-71.639725585,41.627306495],[-71.639580585,41.627224495],[-71.639481585,41.627199494],[-71.639382585,41.627188495],[-71.639305585,41.627168495],[-71.639229585,41.627156494],[-71.639160585,41.627135494],[-71.638869585,41.627068495],[-71.638847584,41.627092495],[-71.638748584,41.627212494],[-71.638561585,41.627432494],[-71.638466585,41.627547494],[-71.638237585,41.627813495],[-71.638100585,41.627956494],[-71.637962585,41.628103495],[-71.637825585,41.628246494],[-71.637673584,41.628416495],[-71.637512585,41.628582495],[-71.637360584,41.628748495],[-71.637054584,41.629070495],[-71.636894584,41.629231495],[-71.636749584,41.629370495],[-71.636665584,41.629448495],[-71.636429584,41.629656495],[-71.636192584,41.629869495],[-71.636017584,41.630030495],[-71.635849584,41.630183495],[-71.635674584,41.630340495],[-71.634781584,41.631103496],[-71.633759583,41.631906496],[-71.632553583,41.632825496],[-71.632423583,41.632914496],[-71.632011583,41.633225496],[-71.631416582,41.633671496],[-71.630516582,41.634349496],[-71.629944582,41.634785496],[-71.629593582,41.635059496],[-71.629265582,41.635323496],[-71.628960582,41.635596496],[-71.628655582,41.635873496],[-71.628265582,41.636247496],[-71.627884581,41.636656497],[-71.627098582,41.637606497],[-71.626503581,41.638430497],[-71.625961581,41.639186497],[-71.625557581,41.639713497],[-71.625450581,41.639841498],[-71.625351581,41.639956497],[-71.625259581,41.640066497],[-71.625183581,41.640163497],[-71.624733581,41.640641498],[-71.62441358,41.640950498],[-71.624054581,41.641301498],[-71.62367358,41.641638498],[-71.623567581,41.641728498],[-71.623238581,41.642008498],[-71.62284158,41.642315498],[-71.622580899,41.642510044],[-71.62343658,41.643107498],[-71.623726581,41.643118498],[-71.624000581,41.643135498],[-71.624290581,41.643160498],[-71.62429658,41.643160498],[-71.624718581,41.643222498],[-71.624756581,41.643257498],[-71.624802581,41.643287498],[-71.624847581,41.643313498],[-71.625084581,41.643439498],[-71.625374581,41.643563498],[-71.625763581,41.643747498],[-71.626206581,41.643953498],[-71.626488582,41.644095498],[-71.626640581,41.644214499],[-71.626686582,41.644262498],[-71.626701582,41.644284498],[-71.626724582,41.644306498],[-71.626762582,41.644350499],[-71.626816582,41.644408499],[-71.626862582,41.644483498],[-71.626984582,41.644733498],[-71.627197582,41.645164498],[-71.627403582,41.645561498],[-71.627632582,41.645956498],[-71.627800582,41.646236499],[-71.627937582,41.646453499],[-71.628075583,41.646639498],[-71.628204582,41.646781499],[-71.628334582,41.646895499],[-71.628494582,41.647008498],[-71.628738583,41.647129499],[-71.629234582,41.647365499],[-71.629578583,41.647515498],[-71.629761583,41.647578499],[-71.629852582,41.647598499],[-71.629944583,41.647605499],[-71.630089583,41.647611498],[-71.630203582,41.647608499],[-71.630684583,41.647602499],[-71.631042583,41.647589498],[-71.631706583,41.647570498],[-71.632324584,41.647555498],[-71.632372583,41.647556498],[-71.632477584,41.647556498],[-71.632774584,41.647559499],[-71.632866584,41.647570498],[-71.633224584,41.647584499],[-71.633400584,41.647585499],[-71.633812584,41.647580499],[-71.634544584,41.647563499],[-71.634735584,41.647563499],[-71.634842585,41.647565499],[-71.635336584,41.647557498],[-71.635422585,41.647556498],[-71.635515585,41.647558498],[-71.635841584,41.647565499],[-71.635971585,41.647566499],[-71.636566585,41.647598499],[-71.637291585,41.647635498],[-71.637939586,41.647647499],[-71.638420585,41.647668498],[-71.638962585,41.647678499],[-71.639343586,41.647701499],[-71.640034586,41.647738499],[-71.640098586,41.647742499],[-71.640131586,41.647744499],[-71.640190586,41.647749498],[-71.640274586,41.647751498],[-71.640811587,41.647772498],[-71.641746587,41.647807498],[-71.641968587,41.647829498],[-71.642220587,41.647878499],[-71.642479587,41.647935499],[-71.642555587,41.647955499],[-71.642738587,41.648028498],[-71.642891587,41.648105498],[-71.642960587,41.648144498],[-71.643089587,41.648222498],[-71.643410587,41.648440499],[-71.643753588,41.648675499],[-71.644020588,41.648845498],[-71.644295588,41.648983499],[-71.644882588,41.649208498],[-71.645142588,41.649337499],[-71.645371588,41.649458499],[-71.645554588,41.649593499],[-71.645882588,41.649874498],[-71.646179588,41.650065499],[-71.646489588,41.650260499],[-71.646545588,41.650295499],[-71.646866588,41.650473499],[-71.647080589,41.650603499],[-71.647293589,41.650679499],[-71.647545589,41.650736499],[-71.647583589,41.650740499],[-71.647926589,41.650768498],[-71.648216589,41.650779499],[-71.648468589,41.650778499],[-71.649300589,41.650759499],[-71.649338589,41.650753499],[-71.64970459,41.650740499],[-71.650429589,41.650683499],[-71.65069659,41.650681499],[-71.65118459,41.650679499],[-71.65161959,41.650660499],[-71.65190159,41.650645499],[-71.652450591,41.650641499],[-71.65313759,41.650625499],[-71.653633591,41.650618498],[-71.653816591,41.650609499],[-71.654335591,41.650534498],[-71.654625591,41.650496498],[-71.654999591,41.650456498],[-71.655395592,41.650429499],[-71.655792591,41.650411499],[-71.656212592,41.650401498],[-71.656654592,41.650382498],[-71.656975592,41.650361498],[-71.657150592,41.650343498],[-71.657241592,41.650335499],[-71.657433592,41.650319498],[-71.657806592,41.650301498],[-71.658165593,41.650297499],[-71.658531592,41.650307498],[-71.658913592,41.650325498],[-71.659317593,41.650383498],[-71.659424593,41.650390498],[-71.659676593,41.650411499],[-71.659981593,41.650440498],[-71.660309593,41.650450499],[-71.660606593,41.650452499],[-71.660675593,41.650446498],[-71.661056593,41.650419498],[-71.661652593,41.650410498],[-71.662117594,41.650408498],[-71.662582594,41.650380498],[-71.662972594,41.650380498],[-71.663460594,41.650395499],[-71.663780594,41.650397498],[-71.664123594,41.650389498],[-71.664635594,41.650382498],[-71.665217594,41.650368498],[-71.665314594,41.650366498],[-71.665924595,41.650343498],[-71.666458595,41.650312498],[-71.666521595,41.650310498],[-71.666717595,41.650306498],[-71.667229595,41.650321498]]],[[[-71.560304561,41.661257504],[-71.560580561,41.661333504],[-71.560714561,41.661398503],[-71.560756561,41.661485504],[-71.564403563,41.661371504],[-71.566127563,41.661338503],[-71.571781564,41.661229503],[-71.572545565,41.661225503],[-71.572716565,41.661221503],[-71.574129565,41.661179503],[-71.574249566,41.661160503],[-71.574722565,41.661131503],[-71.575447566,41.661079503],[-71.576294566,41.661006503],[-71.577286566,41.660925503],[-71.582166568,41.660846503],[-71.582756568,41.660838503],[-71.589210571,41.660748503],[-71.589287571,41.660753502],[-71.589363571,41.660759502],[-71.597734573,41.660564502],[-71.597773573,41.660564502],[-71.602900575,41.660379502],[-71.603065575,41.659881502],[-71.603104575,41.659753502],[-71.603149575,41.659631502],[-71.603523575,41.658488502],[-71.603790575,41.657675501],[-71.603981575,41.657077501],[-71.604057575,41.656845501],[-71.604088575,41.656764501],[-71.604309575,41.656079501],[-71.604363574,41.655924501],[-71.604401575,41.655797501],[-71.604614575,41.655144501],[-71.605179575,41.653434501],[-71.605240575,41.653243501],[-71.605393575,41.652776501],[-71.605560575,41.652286501],[-71.605705575,41.651837501],[-71.605804576,41.651506501],[-71.605927575,41.651138501],[-71.605965575,41.651020501],[-71.605675575,41.651000501],[-71.604210574,41.6508715],[-71.603412574,41.6508085],[-71.603104574,41.6507835],[-71.602760574,41.6507555],[-71.602661574,41.6507445],[-71.601738574,41.6506755],[-71.599899573,41.6505185],[-71.597885573,41.6503435],[-71.596130572,41.650198501],[-71.595741572,41.650162501],[-71.594559571,41.6500585],[-71.593018571,41.6499355],[-71.59127157,41.649790501],[-71.59030957,41.649712501],[-71.58972157,41.6496815],[-71.58924157,41.649669501],[-71.588707569,41.6496635],[-71.58819657,41.6496615],[-71.587731569,41.649671501],[-71.587280569,41.6496955],[-71.586777569,41.6497205],[-71.586379569,41.649749501],[-71.586327568,41.649753501],[-71.585907569,41.6497985],[-71.585457568,41.6498405],[-71.585007568,41.6498955],[-71.584518568,41.649964501],[-71.584038568,41.650038501],[-71.583664568,41.6501055],[-71.582687568,41.650294501],[-71.582008567,41.650453501],[-71.581222567,41.6506735],[-71.580498567,41.650892501],[-71.579946567,41.651083501],[-71.579841567,41.651119501],[-71.579674566,41.651172501],[-71.579224567,41.651322501],[-71.578369566,41.651638501],[-71.577644566,41.651920501],[-71.576126565,41.652485501],[-71.575653566,41.652667501],[-71.575378565,41.652768501],[-71.575172565,41.652845501],[-71.575042565,41.652888502],[-71.574275565,41.653182502],[-71.573433565,41.653496502],[-71.572716564,41.653769502],[-71.572059564,41.654013502],[-71.571335564,41.654286502],[-71.571083564,41.654391502],[-71.570930564,41.654457502],[-71.570343564,41.654673502],[-71.569656563,41.654931502],[-71.569054563,41.655147502],[-71.568321563,41.655425502],[-71.567627563,41.655684502],[-71.566956563,41.655933503],[-71.566208562,41.656215502],[-71.566170563,41.656230502],[-71.565498562,41.656483502],[-71.564812562,41.656737502],[-71.564453562,41.656876502],[-71.564117562,41.657005503],[-71.563286562,41.657316503],[-71.562676561,41.657528503],[-71.562042562,41.657736503],[-71.561340561,41.657949503],[-71.560669561,41.658136503],[-71.559990561,41.658322503],[-71.559372561,41.658466503],[-71.55916656,41.658511503],[-71.55808356,41.658738503],[-71.55784156,41.658784503],[-71.557366559,41.658876503],[-71.55664156,41.658982503],[-71.55597756,41.659078503],[-71.555191559,41.659181503],[-71.554596558,41.659239503],[-71.553856558,41.659300503],[-71.553230558,41.659350503],[-71.552620558,41.659373503],[-71.552483558,41.659380503],[-71.552010558,41.659382504],[-71.551415558,41.659395503],[-71.550162558,41.659399504],[-71.550018557,41.659399504],[-71.549240557,41.659394503],[-71.547981557,41.659395503],[-71.547920557,41.659392503],[-71.547859557,41.659388503],[-71.547737556,41.659391503],[-71.547066557,41.659393503],[-71.547000556,41.659394503],[-71.546920556,41.659394503],[-71.546596557,41.659396504],[-71.546600556,41.659586503],[-71.546606556,41.659867504],[-71.546615557,41.660290504],[-71.546620556,41.660485504],[-71.546658556,41.661421504],[-71.546777556,41.661421504],[-71.546852557,41.661419504],[-71.547020557,41.661415504],[-71.547195557,41.661410504],[-71.547375557,41.661406504],[-71.547556556,41.661404504],[-71.547739557,41.661402504],[-71.547922557,41.661400504],[-71.548106557,41.661398504],[-71.548290557,41.661395504],[-71.548465557,41.661393504],[-71.548638557,41.661388504],[-71.548804557,41.661388504],[-71.548962557,41.661390504],[-71.549112557,41.661391504],[-71.549249558,41.661392504],[-71.549368558,41.661386504],[-71.549466557,41.661376504],[-71.549541558,41.661374504],[-71.549631557,41.661366504],[-71.549705557,41.661367504],[-71.549809557,41.661368504],[-71.549931558,41.661368504],[-71.550063558,41.661368504],[-71.550202558,41.661367504],[-71.550349557,41.661366504],[-71.550505557,41.661365504],[-71.550532558,41.661364504],[-71.550673558,41.661363504],[-71.550851557,41.661362504],[-71.551036558,41.661361504],[-71.551227558,41.661359503],[-71.551423558,41.661357503],[-71.551621558,41.661355504],[-71.551819558,41.661354504],[-71.552016558,41.661353504],[-71.552213559,41.661351504],[-71.552411558,41.661350504],[-71.552609558,41.661349504],[-71.552809558,41.661348504],[-71.553011559,41.661346504],[-71.553214558,41.661344504],[-71.553418559,41.661342503],[-71.553632559,41.661340503],[-71.555201559,41.661318503],[-71.55698056,41.661296504],[-71.55819056,41.661280503],[-71.558686561,41.661269504],[-71.55905056,41.661261503],[-71.55945956,41.661270504],[-71.559692561,41.661255504],[-71.55992056,41.661239504],[-71.560304561,41.661257504]]]]}}"}, +{"type": "precinct", "typeId": 3703, "areaId": 26037, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":376,\"NAME\":\"3703\",\"SHAPE_Length\":0.38273949817263,\"SHAPE_Area\":-0.004168103883482},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.666718594,41.628570494],[-71.667702594,41.628381493],[-71.668228595,41.628283493],[-71.668426594,41.628242494],[-71.668694595,41.628204494],[-71.668961594,41.628162494],[-71.670296595,41.628001494],[-71.670791595,41.627940494],[-71.671203595,41.627898493],[-71.671272596,41.627892494],[-71.671410595,41.627871494],[-71.671486596,41.627869494],[-71.671631595,41.627875493],[-71.671692595,41.627887494],[-71.671745595,41.627895493],[-71.671814596,41.627911494],[-71.671867595,41.627928494],[-71.671921595,41.627940494],[-71.671967596,41.627962494],[-71.672028596,41.627983494],[-71.672089596,41.628009494],[-71.672142596,41.628034493],[-71.672523595,41.628188493],[-71.672882596,41.628337494],[-71.672936596,41.628363493],[-71.672989596,41.628379494],[-71.673050596,41.628400493],[-71.673118596,41.628412494],[-71.673195596,41.628420493],[-71.673271596,41.628422493],[-71.673432596,41.628428494],[-71.673569596,41.628415494],[-71.673652597,41.628400493],[-71.673958596,41.628361493],[-71.674385596,41.628315494],[-71.674461596,41.628314494],[-71.674530596,41.628312494],[-71.674599596,41.628315494],[-71.674660597,41.628331494],[-71.674721597,41.628353494],[-71.674782597,41.628378494],[-71.674835597,41.628413494],[-71.674881596,41.628461493],[-71.674927596,41.628505494],[-71.674957597,41.628550494],[-71.674995597,41.628603494],[-71.675018596,41.628656493],[-71.675033597,41.628706494],[-71.675041596,41.628764494],[-71.675049597,41.628813493],[-71.675049597,41.628966493],[-71.675235596,41.629790494],[-71.675249597,41.630633494],[-71.675387597,41.631710494],[-71.675746597,41.632387494],[-71.676188597,41.632884495],[-71.676409597,41.633064494],[-71.676865598,41.633312495],[-71.677344597,41.633336494],[-71.678191598,41.633340494],[-71.678150598,41.633644495],[-71.678244598,41.633915495],[-71.678525598,41.634256494],[-71.679024598,41.634543494],[-71.679092599,41.634501495],[-71.679153598,41.634495495],[-71.679214598,41.634494495],[-71.679276598,41.634501495],[-71.679367598,41.634517495],[-71.679535598,41.634567494],[-71.679611598,41.634583494],[-71.679688598,41.634604494],[-71.679848599,41.634618495],[-71.679932598,41.634616495],[-71.680023599,41.634601494],[-71.680076598,41.634582494],[-71.680138599,41.634558495],[-71.680199599,41.634525494],[-71.680351599,41.634449494],[-71.680435599,41.634411494],[-71.680512599,41.634373494],[-71.680588599,41.634340495],[-71.680664599,41.634302495],[-71.680733598,41.634269495],[-71.680801599,41.634231494],[-71.680939599,41.634165495],[-71.681007598,41.634128495],[-71.681076599,41.634094494],[-71.681229599,41.634046495],[-71.681305599,41.634026495],[-71.681389599,41.634011495],[-71.681473599,41.634004494],[-71.681557599,41.634007495],[-71.681656599,41.634013495],[-71.681755599,41.634034495],[-71.681847599,41.634058494],[-71.681923599,41.634093495],[-71.681991599,41.634127495],[-71.682060599,41.634171495],[-71.682129599,41.634218494],[-71.682266599,41.634323495],[-71.682319599,41.634367494],[-71.682381599,41.634420495],[-71.682442599,41.634463495],[-71.6825036,41.634493495],[-71.6825796,41.634523494],[-71.682648599,41.634544494],[-71.6827166,41.634560495],[-71.682785599,41.634568494],[-71.682861599,41.634575495],[-71.6830446,41.634589494],[-71.683212599,41.634585494],[-71.683365599,41.634572495],[-71.6834416,41.634557495],[-71.683525599,41.634542495],[-71.683601599,41.634517495],[-71.683739599,41.634478495],[-71.6838076,41.634454495],[-71.683853599,41.634430494],[-71.6838996,41.634411494],[-71.6839456,41.634388494],[-71.683990599,41.634360495],[-71.6840446,41.634336494],[-71.6840896,41.634308495],[-71.6841286,41.634293494],[-71.6841586,41.634279494],[-71.6841966,41.634260495],[-71.684242599,41.634246495],[-71.6842886,41.634227495],[-71.6845176,41.634154494],[-71.6845556,41.634148495],[-71.6847006,41.634131495],[-71.6847536,41.634135494],[-71.6848916,41.634131495],[-71.6849366,41.634135494],[-71.6850436,41.634132495],[-71.6850896,41.634136494],[-71.6851426,41.634135494],[-71.685196601,41.634142494],[-71.6852426,41.634146495],[-71.6852886,41.634145495],[-71.6853266,41.634148495],[-71.685371601,41.634147495],[-71.685409601,41.634151495],[-71.6854936,41.634158494],[-71.685700601,41.634518495],[-71.6861346,41.635246494],[-71.686302601,41.635215495],[-71.686356601,41.635209494],[-71.686417601,41.635199495],[-71.686630601,41.635176495],[-71.686775601,41.635164495],[-71.686905601,41.635161495],[-71.686996601,41.635149494],[-71.687142601,41.635146495],[-71.687172601,41.635145495],[-71.687263601,41.635148494],[-71.687462601,41.635152494],[-71.687553601,41.635150494],[-71.687645601,41.635157495],[-71.687744601,41.635154494],[-71.687843601,41.635157495],[-71.687942601,41.635154494],[-71.688042601,41.635161495],[-71.688255601,41.635165495],[-71.688461601,41.635187494],[-71.688652601,41.635201495],[-71.688904601,41.635213494],[-71.689117602,41.635217495],[-71.689224602,41.635214494],[-71.689323602,41.635221495],[-71.689850602,41.635209494],[-71.690010602,41.635201495],[-71.690170602,41.635188494],[-71.690285602,41.635181495],[-71.690582602,41.635174494],[-71.690681602,41.635176494],[-71.690773602,41.635174494],[-71.690872603,41.635180495],[-71.690971602,41.635192494],[-71.691071602,41.635198495],[-71.691277602,41.635202495],[-71.691376603,41.635196494],[-71.691482602,41.635198495],[-71.691589603,41.635195494],[-71.691696602,41.635197495],[-71.691803603,41.635195494],[-71.692032602,41.635176494],[-71.692184602,41.635150494],[-71.692246602,41.635135494],[-71.692329603,41.635106495],[-71.692444603,41.635044495],[-71.692497602,41.635012494],[-71.692543603,41.634979494],[-71.692597603,41.634946495],[-71.692650602,41.634909495],[-71.692696603,41.634863494],[-71.692741603,41.634821494],[-71.692863602,41.634737495],[-71.692940602,41.634691494],[-71.693024603,41.634639495],[-71.693092603,41.634592494],[-71.693161603,41.634550494],[-71.693230603,41.634504494],[-71.693298603,41.634453494],[-71.693474603,41.634318494],[-71.693520603,41.634272494],[-71.693581603,41.634230495],[-71.693634603,41.634184494],[-71.693687603,41.634133494],[-71.693741603,41.634086494],[-71.693802603,41.634044494],[-71.693863603,41.634007494],[-71.693978603,41.633928494],[-71.694031603,41.633886494],[-71.694090603,41.633845494],[-71.694138603,41.633807494],[-71.694233603,41.633748494],[-71.694298603,41.633709494],[-71.694343604,41.633681494],[-71.694382604,41.633662494],[-71.694443603,41.633624494],[-71.694496603,41.633596494],[-71.694588603,41.633531494],[-71.694626603,41.633503494],[-71.694687603,41.633456494],[-71.694725603,41.633437494],[-71.694931603,41.633311494],[-71.694984604,41.633283494],[-71.695084604,41.633222494],[-71.695137604,41.633185494],[-71.695183603,41.633161494],[-71.695275604,41.633096494],[-71.695358603,41.633035494],[-71.695404603,41.633003494],[-71.695572604,41.632882494],[-71.695641604,41.632835494],[-71.695717603,41.632793494],[-71.695770603,41.632769493],[-71.695824604,41.632741494],[-71.696030604,41.632349494],[-71.696144603,41.632188494],[-71.696228604,41.632065494],[-71.696278603,41.631997494],[-71.696373603,41.631868494],[-71.696495604,41.631712494],[-71.696625604,41.631533494],[-71.696777604,41.631376494],[-71.696930604,41.631215493],[-71.697098604,41.631063494],[-71.697227604,41.630929494],[-71.697342604,41.630764493],[-71.697449604,41.630577494],[-71.697563604,41.630358493],[-71.697655604,41.630163493],[-71.697754604,41.629944493],[-71.697823604,41.629771493],[-71.697922604,41.629557493],[-71.698044604,41.629280493],[-71.698090604,41.629189493],[-71.698189604,41.628988493],[-71.698288604,41.628819493],[-71.698387604,41.628619493],[-71.698456605,41.628428493],[-71.698547604,41.628237493],[-71.698647604,41.628063493],[-71.698723604,41.627908493],[-71.698883605,41.627526492],[-71.699043605,41.627253492],[-71.699066604,41.627211492],[-71.699150604,41.627029493],[-71.699234605,41.626793493],[-71.699249604,41.626685492],[-71.699264604,41.626599493],[-71.699295605,41.626441493],[-71.699303604,41.626391492],[-71.699325604,41.626318492],[-71.699364604,41.625849492],[-71.699364604,41.625498492],[-71.699379604,41.625286492],[-71.699455604,41.625063493],[-71.699608605,41.624731493],[-71.699852604,41.624162492],[-71.700058604,41.623559492],[-71.700257604,41.622789492],[-71.700325605,41.622521492],[-71.700470604,41.622450492],[-71.700630604,41.622397491],[-71.700745604,41.622381492],[-71.700890605,41.622382492],[-71.701035604,41.622387492],[-71.701218605,41.622424492],[-71.701385604,41.622465492],[-71.701508605,41.622507492],[-71.701569605,41.622560492],[-71.701591605,41.622582492],[-71.701818605,41.622885491],[-71.701866605,41.622949492],[-71.702362605,41.623595492],[-71.702736605,41.624009492],[-71.703018606,41.624309492],[-71.703194606,41.624503492],[-71.703377605,41.624719492],[-71.703529605,41.624837492],[-71.703674606,41.624915492],[-71.703873606,41.624964492],[-71.704147606,41.625003492],[-71.704277606,41.625036492],[-71.704414606,41.625113492],[-71.704506606,41.625197492],[-71.704635606,41.625329492],[-71.704750606,41.625443492],[-71.704880606,41.625521492],[-71.705154606,41.625573492],[-71.705429606,41.625621492],[-71.705467606,41.625629493],[-71.705719606,41.625659492],[-71.705864607,41.625660492],[-71.705925607,41.625654492],[-71.705994606,41.625644492],[-71.706200607,41.625607492],[-71.706574606,41.625567492],[-71.706779607,41.625544492],[-71.707092607,41.625505492],[-71.707298607,41.625491492],[-71.707298607,41.625442492],[-71.707283607,41.625271492],[-71.707611607,41.625245492],[-71.708115607,41.625211492],[-71.708832608,41.625122492],[-71.709114607,41.625120492],[-71.709343607,41.625047492],[-71.709625608,41.624860492],[-71.709824608,41.624639492],[-71.710182608,41.624541491],[-71.710609608,41.624351492],[-71.711182608,41.624179492],[-71.711457608,41.623984492],[-71.711739608,41.624094491],[-71.711998608,41.624115491],[-71.712211608,41.624106492],[-71.712441608,41.624114491],[-71.712608609,41.624110491],[-71.712921609,41.624093491],[-71.713158609,41.624047492],[-71.713425609,41.624014491],[-71.713845609,41.623972492],[-71.714416609,41.623932492],[-71.714745609,41.623915491],[-71.71521061,41.623900491],[-71.71536161,41.623850492],[-71.71542461,41.623913492],[-71.715492609,41.624024492],[-71.71550061,41.624154491],[-71.71550061,41.624429492],[-71.715492609,41.624573492],[-71.71547761,41.624690492],[-71.715523609,41.624788492],[-71.715568609,41.624913491],[-71.71556161,41.625044492],[-71.71559261,41.625106491],[-71.715660609,41.625132492],[-71.71575261,41.625121492],[-71.71588961,41.625036492],[-71.71603461,41.624997492],[-71.71619461,41.625002492],[-71.71627161,41.624973492],[-71.71628661,41.624923492],[-71.716400609,41.624952491],[-71.71653061,41.625053492],[-71.71664461,41.625154492],[-71.71678261,41.625231492],[-71.71688161,41.625220492],[-71.71699561,41.625163491],[-71.71699561,41.625100492],[-71.71695761,41.625029491],[-71.71700361,41.624970491],[-71.71710961,41.624954492],[-71.71729361,41.625003492],[-71.71741561,41.625068491],[-71.717491611,41.625161492],[-71.71747661,41.625265492],[-71.71738461,41.625393492],[-71.71729361,41.625490492],[-71.717217611,41.625586492],[-71.71710261,41.625688492],[-71.71695761,41.625754492],[-71.71688861,41.625832492],[-71.71688161,41.625923491],[-71.71697261,41.626028492],[-71.71710261,41.626115492],[-71.717140611,41.626128492],[-71.71723961,41.626171492],[-71.717392611,41.626190492],[-71.717491611,41.626205492],[-71.717567611,41.626262492],[-71.717644611,41.626364492],[-71.71778961,41.626419492],[-71.71783461,41.626467492],[-71.717842611,41.626535492],[-71.71791161,41.626556492],[-71.718056611,41.626566491],[-71.71811761,41.626596492],[-71.718147611,41.626708492],[-71.71823961,41.626805492],[-71.71825461,41.626890492],[-71.718231611,41.627016492],[-71.718185611,41.627135492],[-71.71815561,41.627257492],[-71.71815561,41.627496492],[-71.718185611,41.627616492],[-71.718170611,41.627689492],[-71.718071611,41.627637493],[-71.718048611,41.627656493],[-71.718094611,41.627776492],[-71.718086611,41.627898492],[-71.71814061,41.627960492],[-71.718170611,41.628009493],[-71.71814061,41.628081492],[-71.718224611,41.628187492],[-71.71829261,41.628303492],[-71.718422611,41.628363492],[-71.718582611,41.628404492],[-71.718720611,41.628459492],[-71.71881961,41.628543492],[-71.718933611,41.628607492],[-71.719047611,41.628690493],[-71.719170611,41.628759492],[-71.719277611,41.628851492],[-71.719322611,41.628904493],[-71.719292611,41.629013492],[-71.719337611,41.629111492],[-71.719414611,41.629145492],[-71.719505611,41.629157493],[-71.719597612,41.629240492],[-71.719757611,41.629245492],[-71.719833611,41.629275493],[-71.719856611,41.629351493],[-71.719940611,41.629399492],[-71.719940611,41.629471493],[-71.719895611,41.629526493],[-71.719948612,41.629610492],[-71.720039611,41.629720493],[-71.720108611,41.629831492],[-71.720085612,41.629881493],[-71.719963611,41.629938493],[-71.719940611,41.630047493],[-71.719955611,41.630159492],[-71.719925612,41.630214492],[-71.719848612,41.630283493],[-71.719856611,41.630319493],[-71.719994611,41.630397493],[-71.720108611,41.630471492],[-71.720131611,41.630551493],[-71.720055611,41.630657493],[-71.719940611,41.630736493],[-71.719834611,41.630802492],[-71.719765611,41.630902493],[-71.719757611,41.631024493],[-71.719803611,41.631050493],[-71.719955611,41.631078493],[-71.720024612,41.631126493],[-71.720032611,41.631171492],[-71.719955611,41.631267492],[-71.719887612,41.631354493],[-71.719910612,41.631426493],[-71.719994611,41.631532493],[-71.719933611,41.631650493],[-71.719963612,41.631735492],[-71.720024612,41.631792493],[-71.720108611,41.631795493],[-71.720230611,41.631724493],[-71.720299612,41.631723493],[-71.720398611,41.631774492],[-71.720451612,41.631854493],[-71.720406611,41.631963493],[-71.720299612,41.632056493],[-71.720375612,41.632126493],[-71.720505612,41.632074493],[-71.720619611,41.632048493],[-71.720772611,41.632054493],[-71.720932612,41.632072493],[-71.721069612,41.632114493],[-71.721153612,41.632153493],[-71.721184612,41.632224493],[-71.721169612,41.632274493],[-71.721054612,41.632367493],[-71.721107612,41.632469493],[-71.721176612,41.632571493],[-71.721245612,41.632682493],[-71.721306612,41.632753493],[-71.721382612,41.632791493],[-71.721527612,41.632792493],[-71.721695612,41.632797493],[-71.721787612,41.632813493],[-71.721844612,41.632830493],[-71.721886612,41.632842493],[-71.721985612,41.632890493],[-71.722061612,41.632991493],[-71.722061612,41.633018493],[-71.722061612,41.633045493],[-71.721962612,41.633147493],[-71.721870612,41.633234494],[-71.721809612,41.633353493],[-71.721810612,41.633403493],[-71.721809612,41.633430494],[-71.721832612,41.633452493],[-71.721893612,41.633540493],[-71.721962612,41.633647493],[-71.721970612,41.633754493],[-71.721939612,41.633868493],[-71.721939612,41.633953494],[-71.721970612,41.633939493],[-71.722015613,41.633911493],[-71.722061612,41.633878494],[-71.722107612,41.633841493],[-71.722153612,41.633809493],[-71.722191613,41.633763493],[-71.722237612,41.633712493],[-71.722275612,41.633666493],[-71.722481613,41.633472493],[-71.722519613,41.633435493],[-71.722557613,41.633394493],[-71.722580613,41.633374493],[-71.722603612,41.633352494],[-71.722641612,41.633311493],[-71.722778612,41.633213493],[-71.722824612,41.633185493],[-71.722878612,41.633157494],[-71.722916612,41.633133493],[-71.722969613,41.633114493],[-71.723015612,41.633090493],[-71.723076612,41.633066493],[-71.723129612,41.633047493],[-71.723183613,41.633032493],[-71.723244613,41.633013493],[-71.723312613,41.633007493],[-71.723374613,41.633005493],[-71.723450613,41.632994493],[-71.723579612,41.632991493],[-71.723770613,41.632987493],[-71.723839613,41.632990493],[-71.723900613,41.632988493],[-71.724037613,41.633003493],[-71.724098613,41.633020493],[-71.724167613,41.633031493],[-71.724236613,41.633048493],[-71.724353613,41.633081493],[-71.724381613,41.633089493],[-71.724487613,41.633105493],[-71.724533613,41.633113493],[-71.724571613,41.633121493],[-71.724609613,41.633125493],[-71.724678613,41.633136493],[-71.724747613,41.633144493],[-71.724816613,41.633156493],[-71.724937613,41.633171493],[-71.724991613,41.633179493],[-71.725052613,41.633186493],[-71.725113613,41.633189493],[-71.725181613,41.633197493],[-71.725258613,41.633204493],[-71.725327613,41.633216493],[-71.725395613,41.633214493],[-71.725517613,41.633220493],[-71.725586613,41.633227493],[-71.725654613,41.633230493],[-71.725723613,41.633242493],[-71.725820613,41.633246493],[-71.725868613,41.633248493],[-71.726013614,41.633262493],[-71.726082613,41.633265493],[-71.726151613,41.633273493],[-71.726288613,41.633287493],[-71.726357614,41.633299493],[-71.726425613,41.633307493],[-71.726547613,41.633340493],[-71.726601613,41.633357493],[-71.726661613,41.633369493],[-71.726784614,41.633402493],[-71.726845614,41.633414493],[-71.726906614,41.633435493],[-71.726967614,41.633451493],[-71.727028614,41.633463493],[-71.727089613,41.633480493],[-71.727150614,41.633501493],[-71.727218614,41.633517493],[-71.727280614,41.633534493],[-71.727341613,41.633555493],[-71.727394614,41.633567493],[-71.727455614,41.633579493],[-71.727509614,41.633592493],[-71.727570614,41.633604493],[-71.727623614,41.633611493],[-71.727761614,41.633635493],[-71.727837614,41.633642493],[-71.727905615,41.633654493],[-71.727982614,41.633661493],[-71.728043614,41.633669493],[-71.728103614,41.633672493],[-71.728165614,41.633680493],[-71.728287614,41.633686493],[-71.728340614,41.633693493],[-71.728409615,41.633696493],[-71.728546615,41.633711493],[-71.728722615,41.633734493],[-71.728783615,41.633746493],[-71.728836615,41.633758493],[-71.728897615,41.633775493],[-71.728943614,41.633792493],[-71.729027614,41.633839493],[-71.729080614,41.633865493],[-71.729126615,41.633895493],[-71.729179614,41.633921493],[-71.729225615,41.633952493],[-71.729279614,41.633977493],[-71.729332614,41.634003493],[-71.729423615,41.634041493],[-71.729470614,41.634058493],[-71.729538615,41.634079493],[-71.729599615,41.634100493],[-71.729660615,41.634126493],[-71.729721614,41.634143493],[-71.729774615,41.634164493],[-71.729836615,41.634180493],[-71.729889615,41.634197493],[-71.729942615,41.634209493],[-71.729996615,41.634226493],[-71.730041615,41.634234493],[-71.730118615,41.634255493],[-71.730187615,41.634276493],[-71.730263615,41.634292493],[-71.730331615,41.634313493],[-71.730408615,41.634333493],[-71.730476615,41.634345493],[-71.730576615,41.634379493],[-71.730675615,41.634399493],[-71.730774615,41.634428493],[-71.730904615,41.634457493],[-71.731026616,41.634490493],[-71.731148615,41.634518493],[-71.731270615,41.634556493],[-71.731399615,41.634589493],[-71.731758615,41.634693493],[-71.732048615,41.634772493],[-71.732178615,41.634814494],[-71.732300615,41.634847493],[-71.732429616,41.634880493],[-71.732567615,41.634917493],[-71.732795616,41.634975493],[-71.732887616,41.635008493],[-71.732986616,41.635038493],[-71.733070616,41.635058493],[-71.733147616,41.635088494],[-71.733223616,41.635113493],[-71.733314616,41.635147493],[-71.733406616,41.635185494],[-71.733589616,41.635253493],[-71.733688616,41.635287493],[-71.733788616,41.635325493],[-71.733910616,41.635367493],[-71.734039616,41.635409493],[-71.734161616,41.635455493],[-71.734405616,41.635540493],[-71.734505616,41.635573494],[-71.734703616,41.635641493],[-71.734795616,41.635674493],[-71.734886617,41.635704493],[-71.734978617,41.635738493],[-71.735123616,41.635788494],[-71.735268617,41.635843493],[-71.735405617,41.635890493],[-71.735518617,41.635936493],[-71.735741617,41.636026493],[-71.735901617,41.636085493],[-71.736054617,41.636149493],[-71.736221617,41.636208493],[-71.736321617,41.636251493],[-71.736420617,41.636298493],[-71.736526617,41.636336494],[-71.736610617,41.636374494],[-71.736702617,41.636408493],[-71.736801617,41.636451494],[-71.736870617,41.636481493],[-71.737022617,41.636540493],[-71.737160617,41.636591493],[-71.737228617,41.636612493],[-71.737305618,41.636637493],[-71.737373617,41.636653493],[-71.737450617,41.636674493],[-71.737533618,41.636694493],[-71.737617618,41.636720493],[-71.737785618,41.636761494],[-71.737862618,41.636781494],[-71.737946618,41.636797493],[-71.738220618,41.636845493],[-71.738449618,41.636893493],[-71.738671617,41.636942493],[-71.738769617,41.636958494],[-71.738876618,41.636987493],[-71.738991618,41.637015494],[-71.739105618,41.637049493],[-71.739220618,41.637082493],[-71.739311618,41.637107493],[-71.739387618,41.637137493],[-71.739471618,41.637162493],[-71.739593618,41.637208494],[-71.739822618,41.637302493],[-71.739929618,41.637349494],[-71.740036618,41.637391493],[-71.740151619,41.637434493],[-71.740265619,41.637480494],[-71.740387618,41.637523494],[-71.740646618,41.637606493],[-71.740784618,41.637648493],[-71.740921618,41.637685493],[-71.741127619,41.637748493],[-71.741340619,41.637811494],[-71.741546619,41.637873494],[-71.741654619,41.637911494],[-71.741760619,41.637940493],[-71.741943619,41.637999493],[-71.742058619,41.638041493],[-71.742088619,41.638049494],[-71.742188619,41.638097493],[-71.742241619,41.638118493],[-71.742309619,41.638152493],[-71.742378619,41.638191493],[-71.742455619,41.638225494],[-71.742516619,41.638264494],[-71.742645619,41.638338494],[-71.742775619,41.638407493],[-71.742912619,41.638466493],[-71.743042619,41.638531494],[-71.743149619,41.638591494],[-71.74324862,41.638648494],[-71.743355619,41.638713494],[-71.74354562,41.638839493],[-71.74363762,41.638899493],[-71.743805619,41.638986494],[-71.743881619,41.639024494],[-71.74397362,41.639067493],[-71.74406462,41.639105494],[-71.744156619,41.639135494],[-71.74424762,41.639160494],[-71.74430162,41.639172494],[-71.744369619,41.639179494],[-71.74443862,41.639178494],[-71.74451462,41.639185493],[-71.74462962,41.639187493],[-71.744736619,41.639193494],[-71.74489662,41.639189493],[-71.74494262,41.639184493],[-71.74519462,41.639151493],[-71.74527762,41.639139494],[-71.74535462,41.639129493],[-71.74553762,41.639097494],[-71.74559062,41.639082494],[-71.74578162,41.639015493],[-71.74585762,41.638982494],[-71.745941621,41.638953493],[-71.746002621,41.638933493],[-71.74605662,41.638914493],[-71.746117621,41.638894493],[-71.74622362,41.638865494],[-71.74628462,41.638854493],[-71.746330621,41.638849494],[-71.74638462,41.638838493],[-71.746445621,41.638834493],[-71.746483621,41.638827494],[-71.74665162,41.638823493],[-71.746704621,41.638831494],[-71.74676562,41.638834493],[-71.74690362,41.638848494],[-71.74697962,41.638865494],[-71.74706362,41.638881493],[-71.74715462,41.638901493],[-71.747246621,41.638926494],[-71.747307621,41.638938493],[-71.747368621,41.638959493],[-71.747482621,41.638979493],[-71.747582621,41.638985494],[-71.747620621,41.638989493],[-71.747704621,41.638987494],[-71.747810621,41.638975493],[-71.747864621,41.638961494],[-71.747910621,41.638946494],[-71.748001621,41.638908494],[-71.748100621,41.638869494],[-71.748184621,41.638827494],[-71.748276621,41.638784493],[-71.748375621,41.638728494],[-71.748474621,41.638676494],[-71.748771622,41.638534494],[-71.748871621,41.638491493],[-71.748986622,41.638434493],[-71.749069621,41.638396493],[-71.749107621,41.638372493],[-71.749229621,41.638320493],[-71.749313622,41.638291493],[-71.749390622,41.638258493],[-71.749473622,41.638224494],[-71.749565622,41.638190493],[-71.749657621,41.638161493],[-71.749748621,41.638127494],[-71.749916622,41.638069494],[-71.750000622,41.638045493],[-71.750122621,41.638015493],[-71.750435621,41.637958493],[-71.750633622,41.637935494],[-71.750984622,41.637900493],[-71.751114622,41.637892493],[-71.751228622,41.637880493],[-71.751335622,41.637873493],[-71.751450622,41.637862493],[-71.751541622,41.637850493],[-71.751640622,41.637848493],[-71.751732622,41.637841493],[-71.752075622,41.637802493],[-71.752045622,41.637730493],[-71.752648623,41.637248493],[-71.753540623,41.636627493],[-71.754456623,41.636038493],[-71.754619623,41.635927492],[-71.755646623,41.635226492],[-71.755722623,41.635184493],[-71.755791624,41.635137492],[-71.755905624,41.635044493],[-71.755951623,41.635002492],[-71.755982623,41.634961492],[-71.756020623,41.634902492],[-71.756050623,41.634847493],[-71.756073623,41.634788492],[-71.756119624,41.634616493],[-71.756317624,41.633616492],[-71.756492624,41.632670492],[-71.756630624,41.631947492],[-71.756653623,41.631860492],[-71.756660623,41.631802492],[-71.756668624,41.631766492],[-71.756691623,41.631679491],[-71.756722624,41.631598491],[-71.756744624,41.631512492],[-71.756805624,41.631352492],[-71.756843624,41.631275492],[-71.756889623,41.631197492],[-71.756935623,41.631129492],[-71.756988623,41.631060492],[-71.757034624,41.630996491],[-71.757111624,41.630904492],[-71.757179623,41.630808492],[-71.757309624,41.630651492],[-71.757370624,41.630587491],[-71.757423624,41.630523492],[-71.757530623,41.630421492],[-71.757583624,41.630366492],[-71.757637624,41.630319491],[-71.757729623,41.630218491],[-71.757759624,41.630163491],[-71.757858624,41.629985491],[-71.757904623,41.629921491],[-71.757942623,41.629857492],[-71.758049624,41.629711491],[-71.758103624,41.629646492],[-71.758148624,41.629600491],[-71.758255624,41.629516491],[-71.758324624,41.629470492],[-71.758392624,41.629428491],[-71.758468624,41.629385491],[-71.758957624,41.629171491],[-71.758980624,41.629152491],[-71.759018624,41.629133491],[-71.759079624,41.629100492],[-71.759132624,41.629059491],[-71.759178624,41.629017491],[-71.759255624,41.628916491],[-71.759285624,41.628870491],[-71.759323624,41.628820491],[-71.759354624,41.628770491],[-71.759460624,41.628564491],[-71.759476624,41.628537491],[-71.759522624,41.628468491],[-71.759560624,41.628404491],[-71.759606624,41.628336491],[-71.759659624,41.628271491],[-71.759721624,41.628189491],[-71.759758624,41.628148491],[-71.759811624,41.628074491],[-71.759872624,41.628001491],[-71.759933624,41.627932491],[-71.759987624,41.627881491],[-71.760048624,41.627830491],[-71.760109624,41.627783491],[-71.760178625,41.62773749],[-71.760254625,41.627694491],[-71.760323624,41.627652491],[-71.760589625,41.627551491],[-71.760613624,41.627609491],[-71.760635624,41.627667491],[-71.760727624,41.627800491],[-71.760765625,41.627871491],[-71.760841625,41.628031491],[-71.760872624,41.628116491],[-71.760918625,41.628228491],[-71.760994625,41.628451491],[-71.761040624,41.628563491],[-71.761078625,41.628679491],[-71.761124625,41.628790491],[-71.761154625,41.628879491],[-71.761192625,41.628969491],[-71.761223625,41.629053491],[-71.761261625,41.629152491],[-71.761276624,41.629205491],[-71.761307625,41.629287491],[-71.761513625,41.629839492],[-71.761728625,41.630421492],[-71.761799625,41.630610491],[-71.761826625,41.630683491],[-71.762085625,41.631329491],[-71.762108625,41.631396492],[-71.762131626,41.631468491],[-71.762161625,41.631530492],[-71.762192625,41.631597492],[-71.762222625,41.631659491],[-71.762253625,41.631717491],[-71.762390625,41.631939492],[-71.762772626,41.632587492],[-71.762810626,41.632676492],[-71.762856625,41.632765492],[-71.762894625,41.632854492],[-71.762939625,41.632952492],[-71.762985626,41.633046492],[-71.763023626,41.633144492],[-71.763054625,41.633215492],[-71.763085626,41.633296492],[-71.763115626,41.633371492],[-71.763138626,41.633425492],[-71.763153626,41.633483492],[-71.763184626,41.633541492],[-71.763214626,41.633594492],[-71.763252626,41.633647492],[-71.763290626,41.633696492],[-71.763329626,41.633753492],[-71.763374626,41.633806492],[-71.763412626,41.633864492],[-71.763924626,41.634478492],[-71.763985626,41.634553492],[-71.764053626,41.634623492],[-71.764129626,41.634693492],[-71.764183626,41.634737493],[-71.764244626,41.634776493],[-71.764305626,41.634811492],[-71.764381626,41.634845492],[-71.764473626,41.634879492],[-71.764564626,41.634908492],[-71.764664627,41.634942492],[-71.764770626,41.634971493],[-71.765977626,41.635363492],[-71.766006627,41.635333492],[-71.766029627,41.635305492],[-71.766113626,41.635249492],[-71.766136627,41.635199492],[-71.766121627,41.635141492],[-71.766090626,41.635087493],[-71.766083627,41.635025492],[-71.766091626,41.634961492],[-71.766113626,41.634884492],[-71.766151626,41.634825492],[-71.766190626,41.634761492],[-71.766212626,41.634670492],[-71.766258627,41.634615492],[-71.766304627,41.634569492],[-71.766358627,41.634532492],[-71.766456627,41.634493492],[-71.766540626,41.634446492],[-71.766602627,41.634413492],[-71.766655627,41.634362492],[-71.766724627,41.634311492],[-71.766777627,41.634260492],[-71.766869627,41.634218492],[-71.766960627,41.634170492],[-71.767029627,41.634115492],[-71.767090627,41.634077492],[-71.767166627,41.634053492],[-71.767235627,41.634006492],[-71.767311627,41.633977491],[-71.767395627,41.633953492],[-71.767502627,41.633932492],[-71.767571627,41.633917492],[-71.767784627,41.633876492],[-71.767876627,41.633860491],[-71.767944627,41.633845492],[-71.768013627,41.633825492],[-71.768112627,41.633787492],[-71.768219627,41.633730492],[-71.768341627,41.633646491],[-71.768394627,41.633605492],[-71.768517627,41.633498492],[-71.768585628,41.633447492],[-71.768631627,41.633392491],[-71.768677628,41.633332492],[-71.768745627,41.633290492],[-71.768890628,41.633246492],[-71.768967628,41.633221491],[-71.769035627,41.633188492],[-71.769211627,41.633153492],[-71.769302628,41.633146492],[-71.769394628,41.633117492],[-71.769462628,41.633083491],[-71.769516628,41.633042491],[-71.769577628,41.632986491],[-71.769653628,41.632948491],[-71.769722627,41.632920492],[-71.769776627,41.632878492],[-71.769844628,41.632822492],[-71.769905628,41.632785492],[-71.769981628,41.632733491],[-71.770042628,41.632687492],[-71.770134628,41.632671491],[-71.770226627,41.632673491],[-71.770317628,41.632685492],[-71.770508628,41.632689492],[-71.770615628,41.632686492],[-71.770691628,41.632676491],[-71.770798628,41.632655491],[-71.770866628,41.632631491],[-71.770905628,41.632580491],[-71.770943628,41.632525492],[-71.770966628,41.632552492],[-71.770996628,41.632605492],[-71.771057628,41.632667492],[-71.771111628,41.632720492],[-71.771179629,41.632758492],[-71.771240628,41.632788491],[-71.771294629,41.632828491],[-71.771362628,41.632876492],[-71.771416628,41.632919492],[-71.771454628,41.632990491],[-71.771484628,41.633048491],[-71.771507629,41.633111492],[-71.771561628,41.633145491],[-71.771645629,41.633175492],[-71.771728628,41.633218491],[-71.771789628,41.633257491],[-71.771850628,41.633292492],[-71.771965628,41.633406492],[-71.771983628,41.633468492],[-71.772064628,41.633467492],[-71.772614629,41.633444492],[-71.772812629,41.633448492],[-71.772919628,41.633455491],[-71.773453629,41.633469492],[-71.773674629,41.633473491],[-71.774086629,41.633517492],[-71.774658629,41.633539492],[-71.774775629,41.633534491],[-71.774933629,41.633528492],[-71.77515463,41.633527492],[-71.775413629,41.633530491],[-71.77570363,41.633536491],[-71.77589463,41.633559492],[-71.77603263,41.633569491],[-71.77614663,41.633580492],[-71.77636763,41.633606492],[-71.77657363,41.633668491],[-71.77673363,41.633728491],[-71.77688663,41.633800492],[-71.77708463,41.633836492],[-71.77738263,41.633883491],[-71.77758063,41.633923491],[-71.777863631,41.633997491],[-71.778137631,41.634072492],[-71.77830563,41.634144492],[-71.778618631,41.634200492],[-71.77867163,41.634203492],[-71.778816631,41.634204492],[-71.778969631,41.634214491],[-71.779152631,41.634236491],[-71.779541631,41.634317492],[-71.779854631,41.634364492],[-71.780128631,41.634420492],[-71.780472631,41.634488491],[-71.780647631,41.634529491],[-71.780785631,41.634584491],[-71.780930632,41.634707492],[-71.781014631,41.634615492],[-71.781158632,41.634463492],[-71.781250631,41.634298491],[-71.781380631,41.634106492],[-71.781509632,41.633851491],[-71.781692631,41.633572491],[-71.781784632,41.633439491],[-71.782036632,41.633568491],[-71.782349632,41.633709491],[-71.782761632,41.633870491],[-71.783081632,41.633993492],[-71.783493632,41.634154491],[-71.784073632,41.634396491],[-71.784614633,41.634649491],[-71.784958633,41.634825492],[-71.785118633,41.634884492],[-71.785248633,41.634940491],[-71.785385633,41.634959491],[-71.785515633,41.634969492],[-71.785637633,41.634966492],[-71.785706633,41.634969492],[-71.785912633,41.634937491],[-71.786026633,41.634908492],[-71.786476633,41.634829492],[-71.786896634,41.634724491],[-71.787323634,41.634624491],[-71.787629634,41.634577492],[-71.787790634,41.634535491],[-71.787846634,41.634458492],[-71.787864634,41.633783491],[-71.787873634,41.633437491],[-71.787922634,41.631624491],[-71.787956633,41.63037549],[-71.787984634,41.62935549],[-71.787986634,41.62928749],[-71.787988634,41.62922049],[-71.787990634,41.62914349],[-71.787993633,41.62906749],[-71.787997633,41.628923491],[-71.788036633,41.62750549],[-71.788108633,41.62486849],[-71.788127633,41.624197489],[-71.788144634,41.62356249],[-71.788195633,41.621659489],[-71.788213633,41.621025489],[-71.788216633,41.620984489],[-71.788291633,41.619232489],[-71.788332196,41.618306229],[-71.788374741,41.617296033],[-71.788565814,41.613641172],[-71.788647633,41.612065487],[-71.788666633,41.611668486],[-71.788669633,41.611628486],[-71.788723633,41.610479486],[-71.788742633,41.610083487],[-71.788761633,41.609673487],[-71.788776632,41.609360487],[-71.788803633,41.608771486],[-71.788853632,41.607721486],[-71.788856632,41.607668487],[-71.788862783,41.607622489],[-71.788900343,41.607322471],[-71.789048912,41.603386649],[-71.789084632,41.602194485],[-71.789099082,41.601720141],[-71.789123699,41.600787629],[-71.78919744,41.598491263],[-71.789206632,41.598189485],[-71.789247632,41.596855484],[-71.785885631,41.597002484],[-71.781362629,41.597203484],[-71.78030463,41.597243484],[-71.777328628,41.597414484],[-71.774544627,41.597531484],[-71.771840627,41.597652485],[-71.771004627,41.597689484],[-71.767891625,41.597831485],[-71.765175624,41.598000485],[-71.764811624,41.598012485],[-71.760827623,41.598136485],[-71.750216619,41.598616486],[-71.749854619,41.598634486],[-71.74959062,41.598644485],[-71.748705619,41.598528485],[-71.746731618,41.598648486],[-71.745949618,41.598655486],[-71.745308618,41.598670486],[-71.744667618,41.598685486],[-71.740745616,41.598734486],[-71.735075615,41.598729486],[-71.734643614,41.598728486],[-71.732201613,41.598726486],[-71.729351612,41.598718486],[-71.728865612,41.598717487],[-71.726869612,41.598711486],[-71.724478611,41.598704486],[-71.724228611,41.598703486],[-71.71982861,41.598719486],[-71.717464609,41.598727487],[-71.715950609,41.598733487],[-71.714020608,41.598741486],[-71.712167607,41.598748487],[-71.710518606,41.598755487],[-71.709815606,41.598758486],[-71.708580605,41.598763487],[-71.707198605,41.598757486],[-71.707139605,41.598757486],[-71.703890604,41.598746487],[-71.703761605,41.598745487],[-71.703453604,41.598745487],[-71.699172603,41.598738487],[-71.698909602,41.598738487],[-71.693161601,41.598748487],[-71.693130601,41.598748487],[-71.693100601,41.598748487],[-71.692978601,41.598748487],[-71.685951599,41.598744487],[-71.683884598,41.598743487],[-71.682079597,41.598742487],[-71.676448595,41.598739487],[-71.674622595,41.598738487],[-71.672127594,41.598739488],[-71.671839593,41.598739488],[-71.668104593,41.598740488],[-71.665237592,41.598740488],[-71.66220759,41.598746488],[-71.66146459,41.598747488],[-71.65933259,41.598751489],[-71.65929459,41.598927489],[-71.65921059,41.599249488],[-71.65919059,41.599319489],[-71.65897459,41.600074489],[-71.65880659,41.600501489],[-71.65862359,41.601041488],[-71.65853159,41.601309489],[-71.658269589,41.601907489],[-71.657783589,41.603038489],[-71.657669589,41.603310489],[-71.65763959,41.603365489],[-71.65759359,41.603470489],[-71.65773059,41.603606489],[-71.65792859,41.603809489],[-71.65850859,41.60439049],[-71.65879059,41.60468049],[-71.65898959,41.60487849],[-71.65973759,41.60564049],[-71.66000459,41.60591349],[-71.660972591,41.606890489],[-71.661102591,41.60702749],[-71.661301591,41.60716649],[-71.662071591,41.60795549],[-71.662392591,41.60828549],[-71.662758591,41.60865949],[-71.662804592,41.60870849],[-71.663345592,41.609227491],[-71.663933592,41.609830491],[-71.664001592,41.60989649],[-71.664414592,41.61032349],[-71.664599592,41.610513491],[-71.665428592,41.61135849],[-71.665581592,41.61151249],[-71.666016593,41.611948491],[-71.666168593,41.61209749],[-71.666580593,41.612520491],[-71.667053593,41.613009491],[-71.667503593,41.613476491],[-71.667572593,41.613542491],[-71.668167594,41.614149491],[-71.668831594,41.614823491],[-71.669441594,41.615439491],[-71.670120595,41.616130492],[-71.670715594,41.616729492],[-71.671082594,41.617117492],[-71.671287595,41.617323491],[-71.671753595,41.617794491],[-71.671890595,41.617931491],[-71.672523595,41.618583492],[-71.673202596,41.619260492],[-71.673813595,41.619885492],[-71.674110596,41.620194492],[-71.674278595,41.620361492],[-71.674316595,41.620396492],[-71.674103595,41.620437492],[-71.673866596,41.620447492],[-71.673515596,41.620428492],[-71.673042596,41.620399492],[-71.672623595,41.620372492],[-71.672089595,41.620344493],[-71.672195595,41.620887493],[-71.672356595,41.621540492],[-71.672760595,41.622747492],[-71.672989596,41.623381493],[-71.673004596,41.623457493],[-71.673027596,41.623533493],[-71.673035595,41.623605492],[-71.673035595,41.623713493],[-71.673019596,41.623763493],[-71.673004596,41.623831493],[-71.672981596,41.623890493],[-71.672959596,41.623954492],[-71.672768596,41.624260493],[-71.672730596,41.624301493],[-71.672699595,41.624342493],[-71.672668596,41.624388493],[-71.672653596,41.624433493],[-71.672638596,41.624515493],[-71.672638596,41.624551493],[-71.672646595,41.624587493],[-71.672646595,41.624618493],[-71.672691596,41.625099493],[-71.672730596,41.625454494],[-71.672768596,41.625876493],[-71.672707596,41.625860493],[-71.672607596,41.625830493],[-71.672363596,41.625755493],[-71.672241596,41.625713493],[-71.672134595,41.625675493],[-71.671921595,41.625590494],[-71.671806595,41.625552493],[-71.671699596,41.625505493],[-71.671585596,41.625462493],[-71.670906595,41.625096493],[-71.670685595,41.624979493],[-71.670570595,41.624923493],[-71.670433595,41.624850493],[-71.670335595,41.624801493],[-71.670296595,41.624781493],[-71.670166595,41.624707493],[-71.670051595,41.624634493],[-71.669937595,41.624560493],[-71.669830594,41.624481493],[-71.669403594,41.624171493],[-71.668915594,41.623863493],[-71.668518594,41.623611493],[-71.668213594,41.623375493],[-71.667877594,41.623103493],[-71.667473593,41.622820493],[-71.666870593,41.622478493],[-71.666832593,41.622452492],[-71.666275594,41.622118493],[-71.666199594,41.622080493],[-71.666046594,41.621993493],[-71.665939593,41.621937493],[-71.665913593,41.621922493],[-71.665840593,41.621881493],[-71.665726593,41.621829492],[-71.665619593,41.621787493],[-71.665505593,41.621754492],[-71.665276593,41.621705493],[-71.665161593,41.621685493],[-71.665192593,41.621941493],[-71.665215593,41.622197493],[-71.665260593,41.622453492],[-71.665314593,41.622722493],[-71.665451593,41.623268493],[-71.665482593,41.623411493],[-71.665520594,41.623550493],[-71.665550593,41.623693493],[-71.665581593,41.623787493],[-71.665611593,41.623886493],[-71.665642593,41.623984493],[-71.665672594,41.624087493],[-71.665695594,41.624199493],[-71.665718593,41.624306493],[-71.665764593,41.624571493],[-71.665871594,41.625109493],[-71.665955593,41.625472494],[-71.666023594,41.625754493],[-71.666115593,41.626031493],[-71.666145593,41.626129494],[-71.666168593,41.626228494],[-71.666199594,41.626331494],[-71.666214594,41.626429494],[-71.666260594,41.626617494],[-71.666290594,41.626725493],[-71.666321593,41.626832494],[-71.666344593,41.626940493],[-71.666374594,41.627128494],[-71.666382593,41.627227494],[-71.666412594,41.627411494],[-71.666420593,41.627501494],[-71.666428594,41.627568494],[-71.666428594,41.627631494],[-71.666435594,41.627699493],[-71.666451594,41.627779493],[-71.666473594,41.627860494],[-71.666496593,41.627940494],[-71.666641594,41.628374494],[-71.666718594,41.628570494]]]]}}"}, +{"type": "precinct", "typeId": 3704, "areaId": 26038, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":377,\"NAME\":\"3704\",\"SHAPE_Length\":0.37454134163909,\"SHAPE_Area\":-0.0053837572668259},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.546596557,41.659396504],[-71.546920556,41.659394503],[-71.547000556,41.659394503],[-71.547066557,41.659393503],[-71.547737556,41.659391503],[-71.547859557,41.659388503],[-71.547920557,41.659392503],[-71.547981557,41.659395503],[-71.549240557,41.659394503],[-71.550018557,41.659399504],[-71.550162558,41.659399504],[-71.551415558,41.659395503],[-71.552010558,41.659382504],[-71.552483558,41.659380503],[-71.552620558,41.659373503],[-71.553230558,41.659350503],[-71.553856558,41.659300503],[-71.554596558,41.659239503],[-71.555191559,41.659181503],[-71.55597756,41.659078503],[-71.55664156,41.658982503],[-71.557366559,41.658876503],[-71.55784156,41.658784503],[-71.55808356,41.658738503],[-71.55916656,41.658511503],[-71.559372561,41.658466503],[-71.559990561,41.658322503],[-71.560669561,41.658136503],[-71.561340561,41.657949503],[-71.562042562,41.657736503],[-71.562676561,41.657528503],[-71.563286562,41.657316503],[-71.564117562,41.657005503],[-71.564453562,41.656876502],[-71.564812562,41.656737502],[-71.565498562,41.656483502],[-71.566170563,41.656230502],[-71.566208562,41.656215502],[-71.566956563,41.655933503],[-71.567627563,41.655684502],[-71.568321563,41.655425502],[-71.569054563,41.655147502],[-71.569656563,41.654931502],[-71.570343564,41.654673502],[-71.570930564,41.654457502],[-71.571083564,41.654391502],[-71.571335564,41.654286502],[-71.572059564,41.654013502],[-71.572716564,41.653769502],[-71.573433565,41.653496502],[-71.574275565,41.653182502],[-71.575042565,41.652888502],[-71.575172565,41.652845501],[-71.575378565,41.652768501],[-71.575653566,41.652667501],[-71.576126565,41.652485501],[-71.577644566,41.651920501],[-71.578369566,41.651638501],[-71.579224567,41.651322501],[-71.579674566,41.651172501],[-71.579841567,41.651119501],[-71.579946567,41.651083501],[-71.580498567,41.650892501],[-71.581222567,41.6506735],[-71.582008567,41.650453501],[-71.582687568,41.650294501],[-71.583664568,41.6501055],[-71.584038568,41.650038501],[-71.584518568,41.649964501],[-71.585007568,41.6498955],[-71.585457568,41.6498405],[-71.585907569,41.6497985],[-71.586327568,41.649753501],[-71.586379569,41.649749501],[-71.586777569,41.6497205],[-71.587280569,41.6496955],[-71.587731569,41.649671501],[-71.58819657,41.6496615],[-71.588707569,41.6496635],[-71.58924157,41.649669501],[-71.58972157,41.6496815],[-71.59030957,41.649712501],[-71.59127157,41.649790501],[-71.593018571,41.6499355],[-71.594559571,41.6500585],[-71.595741572,41.650162501],[-71.596130572,41.650198501],[-71.597885573,41.6503435],[-71.599899573,41.6505185],[-71.601738574,41.6506755],[-71.602661574,41.6507445],[-71.602760574,41.6507555],[-71.603104574,41.6507835],[-71.603412574,41.6508085],[-71.604210574,41.6508715],[-71.605675575,41.651000501],[-71.605965575,41.651020501],[-71.606064575,41.6510275],[-71.606491575,41.6510625],[-71.607010576,41.6510865],[-71.607582575,41.6510875],[-71.608009576,41.6510645],[-71.608307576,41.6510305],[-71.608513576,41.6510075],[-71.609039576,41.6509375],[-71.609520576,41.6508455],[-71.609970576,41.6507275],[-71.610489576,41.6505805],[-71.611000577,41.6503925],[-71.611481577,41.6501975],[-71.611961577,41.6499745],[-71.612472578,41.649715499],[-71.612915577,41.649448499],[-71.613380577,41.6491415],[-71.613662578,41.648943499],[-71.613728577,41.648896499],[-71.613754578,41.648878499],[-71.613884577,41.6491025],[-71.613953578,41.649209499],[-71.614052578,41.649305499],[-71.614136577,41.6494125],[-71.614243578,41.649504499],[-71.614254578,41.6495125],[-71.614388577,41.6494735],[-71.614388577,41.6493385],[-71.614380578,41.649266499],[-71.614380578,41.649194499],[-71.614395578,41.6491225],[-71.614426577,41.649054499],[-71.614555578,41.6489075],[-71.614883578,41.648652499],[-71.615425578,41.6482115],[-71.615471578,41.648179499],[-71.615685578,41.6480165],[-71.615997578,41.647793499],[-71.616119579,41.6477235],[-71.616211578,41.647676499],[-71.616303578,41.6476475],[-71.616401578,41.647613499],[-71.616493578,41.647584499],[-71.616577578,41.647546499],[-71.616875579,41.647368499],[-71.617569578,41.646875499],[-71.618462579,41.646237499],[-71.619148579,41.645758498],[-71.619316579,41.645619499],[-71.619423579,41.645518499],[-71.61945458,41.645458499],[-71.61949258,41.645331498],[-71.619522579,41.645281499],[-71.61955358,41.645222499],[-71.619606579,41.645158498],[-71.619660579,41.645107499],[-71.61990358,41.644903498],[-71.620239579,41.644697499],[-71.62058358,41.644455498],[-71.62091858,41.644214499],[-71.62113958,41.644064498],[-71.621506579,41.643808498],[-71.62189558,41.643525498],[-71.62213958,41.643371498],[-71.62227658,41.643300498],[-71.62243758,41.643251498],[-71.62264358,41.643179498],[-71.62273458,41.643159498],[-71.62284158,41.643130498],[-71.62293358,41.643114498],[-71.62300958,41.643103498],[-71.623100581,41.643092498],[-71.62319258,41.643090498],[-71.62328358,41.643092498],[-71.62336058,41.643095498],[-71.62343658,41.643107498],[-71.622580899,41.642510044],[-71.62284158,41.642315498],[-71.623238581,41.642008498],[-71.623567581,41.641728498],[-71.62367358,41.641638498],[-71.624054581,41.641301498],[-71.62441358,41.640950498],[-71.624733581,41.640641498],[-71.625183581,41.640163497],[-71.625259581,41.640066497],[-71.625351581,41.639956497],[-71.625450581,41.639841498],[-71.625557581,41.639713497],[-71.625961581,41.639186497],[-71.626503581,41.638430497],[-71.627098582,41.637606497],[-71.627884581,41.636656497],[-71.628265582,41.636247496],[-71.628655582,41.635873496],[-71.628960582,41.635596496],[-71.629265582,41.635323496],[-71.629593582,41.635059496],[-71.629944582,41.634785496],[-71.630516582,41.634349496],[-71.631416582,41.633671496],[-71.632011583,41.633225496],[-71.632423583,41.632914496],[-71.632553583,41.632825496],[-71.633759583,41.631906496],[-71.634781584,41.631103496],[-71.635674584,41.630340495],[-71.635849584,41.630183495],[-71.636017584,41.630030495],[-71.636192584,41.629869495],[-71.636429584,41.629656495],[-71.636665584,41.629448495],[-71.636749584,41.629370495],[-71.636894584,41.629231495],[-71.637054584,41.629070495],[-71.637360584,41.628748495],[-71.637512585,41.628582495],[-71.637673584,41.628416495],[-71.637825585,41.628246494],[-71.637962585,41.628103495],[-71.638100585,41.627956494],[-71.638237585,41.627813495],[-71.638466585,41.627547494],[-71.638561585,41.627432494],[-71.638748584,41.627212494],[-71.638847584,41.627092495],[-71.638869585,41.627068495],[-71.639160585,41.627135494],[-71.639229585,41.627156494],[-71.639305585,41.627168495],[-71.639382585,41.627188495],[-71.639481585,41.627199494],[-71.639580585,41.627224495],[-71.639725585,41.627306495],[-71.639794585,41.627327494],[-71.639870585,41.627362495],[-71.639977585,41.627413494],[-71.640045585,41.627452494],[-71.640098585,41.627510494],[-71.640137585,41.627558495],[-71.640152585,41.627675495],[-71.640243585,41.627745495],[-71.640320585,41.627725494],[-71.640442585,41.627682494],[-71.640518586,41.627653495],[-71.640617585,41.627655495],[-71.640701585,41.627671495],[-71.640861585,41.627731495],[-71.640923586,41.627761494],[-71.641029585,41.627808495],[-71.641121586,41.627851495],[-71.641174586,41.627890495],[-71.641243585,41.627947495],[-71.641312586,41.627991494],[-71.641388586,41.628038495],[-71.641449586,41.628077495],[-71.641533586,41.628134494],[-71.641579585,41.628219495],[-71.641678586,41.628225494],[-71.641785586,41.628223495],[-71.641861586,41.628226494],[-71.641960586,41.628223495],[-71.642059586,41.628257495],[-71.642143586,41.628318495],[-71.642197585,41.628371495],[-71.642212586,41.628434495],[-71.642212586,41.628515495],[-71.642220586,41.628569495],[-71.642219586,41.628627495],[-71.642220586,41.628789495],[-71.642250586,41.628834495],[-71.642380586,41.628939495],[-71.642441586,41.628960495],[-71.642555586,41.628989494],[-71.642624586,41.629046494],[-71.642677586,41.629112495],[-71.642677586,41.629148495],[-71.642616586,41.629217495],[-71.642586586,41.629267495],[-71.642555586,41.629326495],[-71.642540586,41.629363495],[-71.642533586,41.629385495],[-71.642547586,41.629448495],[-71.642601586,41.629487495],[-71.642693586,41.629539495],[-71.642754586,41.629583495],[-71.642822586,41.629617495],[-71.642776586,41.629681495],[-71.642723586,41.629728495],[-71.642739586,41.629754495],[-71.642807586,41.629793495],[-71.642845586,41.629851495],[-71.642837586,41.629923495],[-71.642830586,41.630013495],[-71.642853586,41.630072495],[-71.642960586,41.630110495],[-71.643028586,41.630131495],[-71.643051586,41.630112495],[-71.643082586,41.630129495],[-71.643120586,41.630182495],[-71.643188587,41.630253495],[-71.643196586,41.630316495],[-71.643211586,41.630451495],[-71.643234586,41.630527495],[-71.643280586,41.630575495],[-71.643364587,41.630627495],[-71.643402587,41.630680495],[-71.643440587,41.630751495],[-71.643463587,41.630832495],[-71.643478587,41.630913495],[-71.643486586,41.630994495],[-71.643448586,41.631026495],[-71.643356586,41.631060495],[-71.643272586,41.631080495],[-71.643265587,41.631129496],[-71.643295586,41.631183495],[-71.643341587,41.631249495],[-71.643387586,41.631311495],[-71.643425586,41.631369495],[-71.643539587,41.631380495],[-71.643623586,41.631396495],[-71.643692587,41.631430495],[-71.643738586,41.631483495],[-71.643791587,41.631518496],[-71.643852587,41.631557496],[-71.643913586,41.631605495],[-71.643997586,41.631603495],[-71.644043587,41.631575495],[-71.644081587,41.631520495],[-71.644089586,41.631457495],[-71.644150586,41.631438495],[-71.644241587,41.631436495],[-71.644386586,41.631437495],[-71.644463586,41.631444495],[-71.644546587,41.631465495],[-71.644615586,41.631472495],[-71.644730587,41.631478495],[-71.644836587,41.631485495],[-71.644959587,41.631491495],[-71.645050587,41.631493495],[-71.645134587,41.631492495],[-71.645241587,41.631494495],[-71.645348587,41.631491495],[-71.645424587,41.631494495],[-71.645523587,41.631492495],[-71.645599587,41.631494495],[-71.645699587,41.631492495],[-71.645790587,41.631503495],[-71.645905587,41.631532495],[-71.646011587,41.631579495],[-71.646095588,41.631627495],[-71.646172588,41.631666495],[-71.646370587,41.631747495],[-71.646477587,41.631861495],[-71.646538588,41.631905495],[-71.646607587,41.631953495],[-71.646698588,41.632009495],[-71.646774588,41.632048495],[-71.646820587,41.632101495],[-71.646904587,41.632131495],[-71.646942587,41.632143496],[-71.646980587,41.632147495],[-71.647057587,41.632181496],[-71.647110588,41.632234495],[-71.647179588,41.632264495],[-71.647263588,41.632289495],[-71.647377588,41.632340495],[-71.647537588,41.632346495],[-71.647629588,41.632344495],[-71.647690588,41.632374496],[-71.647751588,41.632417495],[-71.647797588,41.632479495],[-71.647835588,41.632501495],[-71.647934588,41.632521495],[-71.648033588,41.632533496],[-71.648109588,41.632553495],[-71.648155588,41.632615495],[-71.648186588,41.632669496],[-71.648270588,41.632689496],[-71.648392588,41.632700495],[-71.648438588,41.632681495],[-71.648537588,41.632611496],[-71.648598588,41.632574495],[-71.648674588,41.632531496],[-71.648758588,41.632507495],[-71.648826589,41.632501495],[-71.648911588,41.632530496],[-71.649033588,41.632609496],[-71.649101588,41.632661495],[-71.649147588,41.632700495],[-71.649262588,41.632738495],[-71.649345588,41.632768495],[-71.649414588,41.632838495],[-71.649429589,41.632897495],[-71.649452588,41.632914495],[-71.649536588,41.632917495],[-71.649635588,41.632905495],[-71.649734589,41.632917495],[-71.649795589,41.632942496],[-71.649872589,41.632963495],[-71.649986589,41.632969495],[-71.650062588,41.632968495],[-71.650124589,41.632989495],[-71.650154588,41.633028495],[-71.650154588,41.633092495],[-71.650185589,41.633167495],[-71.650253588,41.633188495],[-71.650429588,41.633216496],[-71.650482589,41.633264495],[-71.650582588,41.633293496],[-71.650635589,41.633333496],[-71.650734589,41.633438495],[-71.650795589,41.633473495],[-71.650871589,41.633494495],[-71.650955589,41.633505496],[-71.651031589,41.633517495],[-71.651100589,41.633529495],[-71.651169589,41.633550495],[-71.651230589,41.633576495],[-71.651268589,41.633651495],[-71.651306589,41.633704495],[-71.651398589,41.633743495],[-71.651474589,41.633755495],[-71.651551589,41.633753495],[-71.65163459,41.633733495],[-71.651726589,41.633744495],[-71.65188659,41.633799496],[-71.651970589,41.633802495],[-71.652153589,41.633797496],[-71.652229589,41.633796496],[-71.65238959,41.633765495],[-71.65248959,41.633763495],[-71.652619589,41.633764495],[-71.652695589,41.633767495],[-71.65281759,41.633742496],[-71.65290059,41.633731495],[-71.652947589,41.633721496],[-71.65301559,41.633782495],[-71.653084589,41.633816496],[-71.653160589,41.633860495],[-71.65322159,41.633912496],[-71.65329059,41.633951496],[-71.653374589,41.633949495],[-71.65347359,41.633938495],[-71.65359559,41.633926495],[-71.65370959,41.633919495],[-71.65380159,41.633908495],[-71.65387059,41.633902495],[-71.65425959,41.633893496],[-71.65433559,41.633932496],[-71.65438159,41.633989495],[-71.654404591,41.634047495],[-71.65445759,41.634095495],[-71.65453359,41.634121495],[-71.654617591,41.634123495],[-71.654694591,41.634117495],[-71.65474759,41.634071496],[-71.65477059,41.634012496],[-71.65480859,41.633970495],[-71.654907591,41.633936496],[-71.65501459,41.633925495],[-71.655106591,41.633918496],[-71.655258591,41.633879496],[-71.65534259,41.633868495],[-71.655411591,41.633880495],[-71.655495591,41.633905495],[-71.655548591,41.633931495],[-71.65555659,41.634007495],[-71.65555659,41.634142495],[-71.65556459,41.634196495],[-71.65559459,41.634240495],[-71.655685591,41.634261495],[-71.655785591,41.634272495],[-71.655861591,41.634297495],[-71.655922591,41.634341496],[-71.65600659,41.634352495],[-71.65608259,41.634369495],[-71.656151591,41.634408495],[-71.65622059,41.634442496],[-71.65631959,41.634498496],[-71.656372591,41.634533495],[-71.65643359,41.634577496],[-71.656487591,41.634634496],[-71.656540591,41.634682495],[-71.656601591,41.634721495],[-71.656670591,41.634760495],[-71.656830591,41.634815496],[-71.656906591,41.634840495],[-71.657013591,41.634869496],[-71.657066591,41.634882495],[-71.657219591,41.634865495],[-71.657257591,41.634805495],[-71.657280591,41.634737496],[-71.657303591,41.634674496],[-71.657356591,41.634600496],[-71.657387592,41.634559496],[-71.657486591,41.634516495],[-71.657555591,41.634506495],[-71.657661591,41.634499496],[-71.657745591,41.634501496],[-71.657890591,41.634565495],[-71.657974591,41.634582495],[-71.658135591,41.634569495],[-71.658394592,41.634563495],[-71.658470591,41.634566495],[-71.658608592,41.634567495],[-71.658707592,41.634574495],[-71.658798591,41.634558496],[-71.658890591,41.634520496],[-71.659050591,41.634390495],[-71.659103592,41.634348495],[-71.659164591,41.634306496],[-71.659302591,41.634222495],[-71.659378591,41.634202495],[-71.659469592,41.634196495],[-71.659554591,41.634198495],[-71.659805592,41.634192495],[-71.659833592,41.634189496],[-71.659889592,41.634182495],[-71.659950592,41.634135495],[-71.660011592,41.634075495],[-71.660072592,41.634047495],[-71.660149592,41.634049495],[-71.660225592,41.634057495],[-71.660316592,41.634095495],[-71.660416592,41.634169496],[-71.660461592,41.634209496],[-71.660515592,41.634253495],[-71.660560592,41.634301495],[-71.660614592,41.634340495],[-71.660683593,41.634420495],[-71.660721593,41.634473495],[-71.660774592,41.634539496],[-71.660835592,41.634578496],[-71.660995593,41.634660495],[-71.661072593,41.634690495],[-71.661140592,41.634711495],[-71.661216592,41.634718495],[-71.661293592,41.634730495],[-71.661362593,41.634760495],[-71.661430592,41.634817495],[-71.661461593,41.634875495],[-71.661461593,41.635082495],[-71.661469592,41.635140495],[-71.661491592,41.635198495],[-71.661514593,41.635297496],[-71.661530592,41.635355496],[-71.661537593,41.635413496],[-71.661560593,41.635485495],[-71.661583592,41.635547495],[-71.661606592,41.635601495],[-71.661621592,41.635681495],[-71.661667592,41.635770496],[-71.661720592,41.635814495],[-71.661766593,41.635867496],[-71.661789593,41.635939496],[-71.661804593,41.635997496],[-71.661812593,41.636055496],[-71.661812593,41.636186495],[-71.661835592,41.636230496],[-71.661919593,41.636282495],[-71.662026593,41.636357495],[-71.662102593,41.636422495],[-71.662163593,41.636461495],[-71.662216593,41.636492496],[-71.662308593,41.636553495],[-71.662376593,41.636592495],[-71.662445593,41.636622496],[-71.662514593,41.636660496],[-71.662598593,41.636686496],[-71.662674593,41.636711495],[-71.662743593,41.636750495],[-71.662826593,41.636820496],[-71.662910593,41.636872496],[-71.662979593,41.636911496],[-71.663048593,41.636936496],[-71.663132593,41.636961495],[-71.663223593,41.636995496],[-71.663307593,41.637011496],[-71.663376593,41.637032496],[-71.663452594,41.637053496],[-71.663544593,41.637055496],[-71.663704594,41.637052496],[-71.663788593,41.637045495],[-71.663879594,41.637075496],[-71.663971593,41.637100495],[-71.664062593,41.637106496],[-71.664169594,41.637099495],[-71.664276593,41.637088496],[-71.664368594,41.637068496],[-71.664474593,41.637016496],[-71.664597594,41.636932496],[-71.664650593,41.636877496],[-71.664696594,41.636826495],[-71.664749594,41.636775496],[-71.664825594,41.636742496],[-71.664902594,41.636731495],[-71.665123594,41.636726496],[-71.665214594,41.636733495],[-71.665306593,41.636758496],[-71.665359594,41.636793495],[-71.665405593,41.636841496],[-71.665459594,41.636885495],[-71.665527594,41.636946495],[-71.665573594,41.637004495],[-71.665611594,41.637057496],[-71.665657594,41.637114496],[-71.665695594,41.637163496],[-71.665749594,41.637207496],[-71.665817594,41.637259495],[-71.665863594,41.637312495],[-71.665901594,41.637365496],[-71.665940594,41.637414495],[-71.665985594,41.637454495],[-71.666062594,41.637479496],[-71.666237594,41.637502496],[-71.666321594,41.637518496],[-71.666420594,41.637552496],[-71.666489594,41.637581496],[-71.666580594,41.637606495],[-71.666664594,41.637622496],[-71.666725595,41.637648495],[-71.666786595,41.637656496],[-71.666870594,41.637640496],[-71.666954594,41.637634496],[-71.667053595,41.637618496],[-71.667137595,41.637607495],[-71.667221594,41.637605495],[-71.667297594,41.637590495],[-71.667389595,41.637570495],[-71.667457594,41.637541496],[-71.667511594,41.637504496],[-71.667580595,41.637484496],[-71.667656595,41.637464496],[-71.667827594,41.637443496],[-71.667824594,41.637415495],[-71.667832595,41.637289496],[-71.667870595,41.637144495],[-71.667953595,41.636971496],[-71.668022595,41.636789495],[-71.668091595,41.636594495],[-71.668129595,41.636422495],[-71.668137594,41.636323495],[-71.668129595,41.636129495],[-71.668114594,41.635900495],[-71.668030595,41.635546495],[-71.667976595,41.635259495],[-71.667938595,41.635004495],[-71.667931595,41.634797495],[-71.667923594,41.634509495],[-71.667908594,41.634207495],[-71.667877595,41.633987495],[-71.667778595,41.633553495],[-71.667656594,41.633038495],[-71.667518594,41.632393495],[-71.667485595,41.632216495],[-71.667465594,41.632110494],[-71.667381594,41.631743494],[-71.667267594,41.631079494],[-71.667259594,41.631021494],[-71.667252594,41.630953495],[-71.667252594,41.630895495],[-71.667244594,41.630823494],[-71.667252594,41.630755495],[-71.667251594,41.630683494],[-71.667275595,41.630516494],[-71.667335594,41.630370494],[-71.667366594,41.630302494],[-71.667374594,41.630234494],[-71.667374594,41.630167494],[-71.667366594,41.630100494],[-71.667359594,41.630032494],[-71.667328594,41.629902494],[-71.667298594,41.629835494],[-71.667251594,41.629764495],[-71.667213594,41.629698494],[-71.667023594,41.629432494],[-71.666984594,41.629356494],[-71.666969594,41.629330494],[-71.666947594,41.629285494],[-71.666916594,41.629209494],[-71.666878594,41.629111494],[-71.666855594,41.629017494],[-71.666824594,41.628919494],[-71.666718594,41.628570494],[-71.666641594,41.628374494],[-71.666496593,41.627940494],[-71.666473594,41.627860494],[-71.666451594,41.627779493],[-71.666435594,41.627699493],[-71.666428594,41.627631494],[-71.666428594,41.627568494],[-71.666420593,41.627501494],[-71.666412594,41.627411494],[-71.666382593,41.627227494],[-71.666374594,41.627128494],[-71.666344593,41.626940493],[-71.666321593,41.626832494],[-71.666290594,41.626725493],[-71.666260594,41.626617494],[-71.666214594,41.626429494],[-71.666199594,41.626331494],[-71.666168593,41.626228494],[-71.666145593,41.626129494],[-71.666115593,41.626031493],[-71.666023594,41.625754493],[-71.665955593,41.625472494],[-71.665871594,41.625109493],[-71.665764593,41.624571493],[-71.665718593,41.624306493],[-71.665695594,41.624199493],[-71.665672594,41.624087493],[-71.665642593,41.623984493],[-71.665611593,41.623886493],[-71.665581593,41.623787493],[-71.665550593,41.623693493],[-71.665520594,41.623550493],[-71.665482593,41.623411493],[-71.665451593,41.623268493],[-71.665314593,41.622722493],[-71.665260593,41.622453492],[-71.665215593,41.622197493],[-71.665192593,41.621941493],[-71.665161593,41.621685493],[-71.665276593,41.621705493],[-71.665505593,41.621754492],[-71.665619593,41.621787493],[-71.665726593,41.621829492],[-71.665840593,41.621881493],[-71.665913593,41.621922493],[-71.665939593,41.621937493],[-71.666046594,41.621993493],[-71.666199594,41.622080493],[-71.666275594,41.622118493],[-71.666832593,41.622452492],[-71.666870593,41.622478493],[-71.667473593,41.622820493],[-71.667877594,41.623103493],[-71.668213594,41.623375493],[-71.668518594,41.623611493],[-71.668915594,41.623863493],[-71.669403594,41.624171493],[-71.669830594,41.624481493],[-71.669937595,41.624560493],[-71.670051595,41.624634493],[-71.670166595,41.624707493],[-71.670296595,41.624781493],[-71.670335595,41.624801493],[-71.670433595,41.624850493],[-71.670570595,41.624923493],[-71.670685595,41.624979493],[-71.670906595,41.625096493],[-71.671585596,41.625462493],[-71.671699596,41.625505493],[-71.671806595,41.625552493],[-71.671921595,41.625590494],[-71.672134595,41.625675493],[-71.672241596,41.625713493],[-71.672363596,41.625755493],[-71.672607596,41.625830493],[-71.672707596,41.625860493],[-71.672768596,41.625876493],[-71.672730596,41.625454494],[-71.672691596,41.625099493],[-71.672646595,41.624618493],[-71.672646595,41.624587493],[-71.672638596,41.624551493],[-71.672638596,41.624515493],[-71.672653596,41.624433493],[-71.672668596,41.624388493],[-71.672699595,41.624342493],[-71.672730596,41.624301493],[-71.672768596,41.624260493],[-71.672959596,41.623954492],[-71.672981596,41.623890493],[-71.673004596,41.623831493],[-71.673019596,41.623763493],[-71.673035595,41.623713493],[-71.673035595,41.623605492],[-71.673027596,41.623533493],[-71.673004596,41.623457493],[-71.672989596,41.623381493],[-71.672760595,41.622747492],[-71.672356595,41.621540492],[-71.672195595,41.620887493],[-71.672089595,41.620344493],[-71.672623595,41.620372492],[-71.673042596,41.620399492],[-71.673515596,41.620428492],[-71.673866596,41.620447492],[-71.674103595,41.620437492],[-71.674316595,41.620396492],[-71.674278595,41.620361492],[-71.674110596,41.620194492],[-71.673813595,41.619885492],[-71.673202596,41.619260492],[-71.672523595,41.618583492],[-71.671890595,41.617931491],[-71.671753595,41.617794491],[-71.671287595,41.617323491],[-71.671082594,41.617117492],[-71.670715594,41.616729492],[-71.670120595,41.616130492],[-71.669441594,41.615439491],[-71.668831594,41.614823491],[-71.668167594,41.614149491],[-71.667572593,41.613542491],[-71.667503593,41.613476491],[-71.667053593,41.613009491],[-71.666580593,41.612520491],[-71.666168593,41.61209749],[-71.666016593,41.611948491],[-71.665581592,41.61151249],[-71.665428592,41.61135849],[-71.664599592,41.610513491],[-71.664414592,41.61032349],[-71.664001592,41.60989649],[-71.663933592,41.609830491],[-71.663345592,41.609227491],[-71.662804592,41.60870849],[-71.662758591,41.60865949],[-71.662392591,41.60828549],[-71.662071591,41.60795549],[-71.661301591,41.60716649],[-71.661102591,41.60702749],[-71.660972591,41.606890489],[-71.66000459,41.60591349],[-71.65973759,41.60564049],[-71.65898959,41.60487849],[-71.65879059,41.60468049],[-71.65850859,41.60439049],[-71.65792859,41.603809489],[-71.65773059,41.603606489],[-71.65759359,41.603470489],[-71.65763959,41.603365489],[-71.657669589,41.603310489],[-71.657783589,41.603038489],[-71.658269589,41.601907489],[-71.65853159,41.601309489],[-71.65862359,41.601041488],[-71.65880659,41.600501489],[-71.65897459,41.600074489],[-71.65919059,41.599319489],[-71.65921059,41.599249488],[-71.65929459,41.598927489],[-71.65933259,41.598751489],[-71.65888259,41.598752489],[-71.65874459,41.598753489],[-71.658598589,41.598753489],[-71.65833559,41.598754489],[-71.65822359,41.598754489],[-71.658093589,41.598755489],[-71.657856589,41.598756489],[-71.65758159,41.598757488],[-71.657189589,41.598758488],[-71.654251588,41.598769489],[-71.653686588,41.598775489],[-71.653526588,41.598777488],[-71.653068588,41.598872489],[-71.651571587,41.599075488],[-71.651341588,41.599118489],[-71.651128587,41.599156489],[-71.648912586,41.599623489],[-71.648170586,41.599780489],[-71.648007587,41.599812489],[-71.647659586,41.599887489],[-71.645453585,41.600338489],[-71.644656585,41.60047249],[-71.644113585,41.600549489],[-71.643978585,41.600568489],[-71.643742585,41.600602489],[-71.642821584,41.60072649],[-71.642226584,41.60072449],[-71.640495584,41.600716489],[-71.637030582,41.600728489],[-71.636979583,41.600728489],[-71.634056582,41.60073849],[-71.62760258,41.60070549],[-71.624840578,41.60080049],[-71.622795578,41.60086949],[-71.620659577,41.60080749],[-71.620461577,41.60080249],[-71.618546576,41.60075449],[-71.618101576,41.60074349],[-71.613754575,41.60078649],[-71.613518575,41.60078849],[-71.613507575,41.60078849],[-71.610348574,41.60081949],[-71.605850572,41.60086349],[-71.605022572,41.600876491],[-71.604798572,41.600879491],[-71.604597572,41.600882491],[-71.601780571,41.60092749],[-71.601684571,41.60092949],[-71.59995757,41.600956491],[-71.59932057,41.60096649],[-71.596741569,41.601010491],[-71.596688569,41.601011491],[-71.594108568,41.601056491],[-71.594067568,41.601057491],[-71.593422569,41.601067491],[-71.591509568,41.601093491],[-71.591481568,41.601093491],[-71.590335568,41.601109491],[-71.590304567,41.601109491],[-71.583832565,41.601198491],[-71.583109565,41.601209491],[-71.578026563,41.601287492],[-71.574293562,41.601343492],[-71.573799562,41.601351491],[-71.569138561,41.601402492],[-71.564705559,41.601451491],[-71.563853559,41.601470491],[-71.557869557,41.601603492],[-71.552429555,41.601755492],[-71.551279555,41.601782492],[-71.546928554,41.601882492],[-71.546147553,41.601899492],[-71.546148553,41.601903492],[-71.546170554,41.610239494],[-71.546289553,41.616157495],[-71.546372554,41.620249496],[-71.546402554,41.620328496],[-71.546414554,41.620640496],[-71.546422554,41.621264496],[-71.546357554,41.621831496],[-71.546337554,41.623922497],[-71.546333554,41.623992496],[-71.546494555,41.629598498],[-71.546501555,41.629666498],[-71.546510555,41.629737498],[-71.546398555,41.631652498],[-71.546318555,41.633031498],[-71.546305555,41.633251499],[-71.546415555,41.634625499],[-71.546402555,41.635343498],[-71.546407555,41.637416499],[-71.546410555,41.639693499],[-71.546410555,41.639985499],[-71.546433555,41.6404855],[-71.546410555,41.6407105],[-71.546409555,41.6411825],[-71.546409555,41.6418505],[-71.546417555,41.6420935],[-71.546319555,41.643805501],[-71.546355555,41.646292501],[-71.546436556,41.651774502],[-71.546491556,41.654408503],[-71.546507556,41.655139502],[-71.546587556,41.658946503],[-71.546593556,41.659251503],[-71.546596557,41.659396504]]]]}}"}, +{"type": "precinct", "typeId": 3801, "areaId": 26053, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":392,\"NAME\":\"3801\",\"SHAPE_Length\":0.064469260418281,\"SHAPE_Area\":-0.00016101498510852},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.514685549,41.714428515],[-71.515114549,41.714503515],[-71.515228549,41.714527515],[-71.515266549,41.714522515],[-71.515343549,41.714543515],[-71.515450549,41.714549515],[-71.515564549,41.714551515],[-71.515671549,41.714544515],[-71.51574755,41.714538515],[-71.515823549,41.714528515],[-71.515930549,41.714503515],[-71.515869549,41.714563515],[-71.51578555,41.714655515],[-71.515854549,41.714671516],[-71.515915549,41.714692516],[-71.515983549,41.714713516],[-71.516060549,41.714739515],[-71.516151549,41.714764515],[-71.516190549,41.714772515],[-71.51623555,41.714775515],[-71.516266549,41.714779515],[-71.516296549,41.714774515],[-71.51632755,41.714773515],[-71.517349549,41.714602515],[-71.51738055,41.714602515],[-71.51747155,41.714586515],[-71.51749455,41.714572515],[-71.51751755,41.714563515],[-71.51754855,41.714526515],[-71.51755555,41.714503515],[-71.51755555,41.714431515],[-71.51753655,41.714368515],[-71.517390549,41.713867515],[-71.51738055,41.713832515],[-71.51757055,41.713827515],[-71.51764755,41.713830515],[-71.51858555,41.713841515],[-71.51885255,41.713844515],[-71.51927255,41.713844515],[-71.51952455,41.713843515],[-71.519920551,41.713852515],[-71.520073551,41.713858515],[-71.52016355,41.713873515],[-71.52019555,41.713878515],[-71.52029455,41.713898515],[-71.52039355,41.713923515],[-71.520561551,41.713960515],[-71.520767551,41.714018515],[-71.520951551,41.714091515],[-71.52111155,41.714160515],[-71.521446551,41.714310515],[-71.521950551,41.714560515],[-71.522476551,41.714828515],[-71.522591552,41.714888515],[-71.522644552,41.714914515],[-71.522720551,41.714953515],[-71.522888551,41.715035515],[-71.523049551,41.715126515],[-71.523232552,41.715225515],[-71.523453551,41.715342515],[-71.523682552,41.715445515],[-71.523651552,41.715567515],[-71.523644552,41.715600515],[-71.523697552,41.715634515],[-71.523742552,41.715678515],[-71.523827552,41.715726516],[-71.523911552,41.715760515],[-71.523971552,41.715790515],[-71.524048552,41.715815515],[-71.524116552,41.715845515],[-71.524353552,41.715926515],[-71.524452552,41.715964515],[-71.524513552,41.715990515],[-71.524590552,41.716019516],[-71.524658552,41.716054515],[-71.524788552,41.716128515],[-71.524925552,41.716197515],[-71.525078552,41.716265515],[-71.525170552,41.716295515],[-71.525261553,41.716311516],[-71.525337553,41.716327515],[-71.525406552,41.716348516],[-71.525482552,41.716360515],[-71.525566552,41.716367516],[-71.525643552,41.716384515],[-71.525726553,41.716395515],[-71.525810553,41.716416515],[-71.525887553,41.716437515],[-71.525963553,41.716471515],[-71.526039553,41.716501515],[-71.526176553,41.716561516],[-71.526291553,41.716635515],[-71.526344553,41.716674515],[-71.526398552,41.716718516],[-71.526451553,41.716758516],[-71.526505553,41.716806515],[-71.526558553,41.716859515],[-71.526604553,41.716912516],[-71.526657553,41.716965515],[-71.526764553,41.717061515],[-71.526810553,41.717105516],[-71.526848553,41.717159515],[-71.526886553,41.717221515],[-71.526916553,41.717288515],[-71.526947553,41.717346516],[-71.526977553,41.717399516],[-71.526993553,41.717453515],[-71.527062553,41.717627515],[-71.527092553,41.717685515],[-71.527107553,41.717747516],[-71.527107553,41.718108515],[-71.527100553,41.718171515],[-71.527084553,41.718248515],[-71.527008553,41.718393516],[-71.526962553,41.718462515],[-71.526924553,41.718521515],[-71.526886553,41.718590516],[-71.526871553,41.718658515],[-71.526871553,41.718730516],[-71.526878553,41.718797516],[-71.526901553,41.718869515],[-71.526962553,41.719002516],[-71.526970553,41.719065515],[-71.526985553,41.719204516],[-71.527016553,41.719276516],[-71.527046553,41.719325516],[-71.527161553,41.719484516],[-71.527199553,41.719533516],[-71.527237553,41.719577516],[-71.527298553,41.719643516],[-71.527382553,41.719700516],[-71.527443553,41.719726515],[-71.527519553,41.719751516],[-71.527603554,41.719767516],[-71.527672553,41.719788516],[-71.527763553,41.719804515],[-71.527855554,41.719807516],[-71.527939553,41.719814516],[-71.528007554,41.719862515],[-71.528073553,41.719899516],[-71.528076553,41.719901515],[-71.528221554,41.719965516],[-71.528290553,41.720009516],[-71.528351553,41.720062516],[-71.528404554,41.720132516],[-71.528465553,41.720194516],[-71.528519554,41.720251516],[-71.528587554,41.720309516],[-71.528656554,41.720370516],[-71.528725554,41.720427516],[-71.528801554,41.720461516],[-71.528892553,41.720473516],[-71.528984554,41.720484516],[-71.529068553,41.720483516],[-71.529137554,41.720459516],[-71.529213554,41.720434516],[-71.529281554,41.720392516],[-71.529442554,41.720303516],[-71.529602554,41.720237516],[-71.529678554,41.720217516],[-71.529755554,41.720193516],[-71.529823554,41.720169516],[-71.529900554,41.720149516],[-71.529999554,41.720129516],[-71.530075554,41.720123516],[-71.530167554,41.720125516],[-71.530258554,41.720123516],[-71.530426554,41.720164516],[-71.530510555,41.720181516],[-71.530609554,41.720187516],[-71.530693554,41.720190516],[-71.530777555,41.720197516],[-71.530876555,41.720195515],[-71.530960554,41.720198516],[-71.531036555,41.720192516],[-71.531204555,41.720188516],[-71.531296554,41.720190516],[-71.531387555,41.720206516],[-71.531471554,41.720241516],[-71.531540555,41.720262516],[-71.531723554,41.720289516],[-71.531792555,41.720301516],[-71.531876554,41.720340516],[-71.531952555,41.720397516],[-71.532005555,41.720449516],[-71.532021555,41.720512516],[-71.532021555,41.720580516],[-71.532028555,41.720638516],[-71.532089555,41.720686516],[-71.532158555,41.720721516],[-71.532311555,41.720789516],[-71.532393555,41.720832516],[-71.532524555,41.720672516],[-71.532600555,41.720562516],[-71.532630555,41.720470516],[-71.532646555,41.720395516],[-71.532646555,41.720359516],[-71.532661555,41.720259516],[-71.532669555,41.720129516],[-71.532654555,41.719980515],[-71.532608555,41.719801516],[-71.532516555,41.719524516],[-71.532478555,41.719372516],[-71.532456555,41.719246516],[-71.532455555,41.719183515],[-71.532470555,41.718985515],[-71.532509555,41.718889515],[-71.532572555,41.718713515],[-71.532578554,41.718699515],[-71.532623555,41.718585516],[-71.532860555,41.718035515],[-71.533119555,41.717493515],[-71.533325555,41.717066515],[-71.533485555,41.716756515],[-71.533562555,41.716623515],[-71.533584555,41.716587515],[-71.533540555,41.716396515],[-71.533677555,41.715927515],[-71.533711555,41.715813515],[-71.533624555,41.715292515],[-71.533620555,41.715274515],[-71.533616555,41.715264515],[-71.533659555,41.714544515],[-71.533701555,41.713858514],[-71.533734555,41.713738515],[-71.533742555,41.712756514],[-71.533808555,41.712246514],[-71.533809555,41.712183514],[-71.533604555,41.710625514],[-71.533696555,41.709134514],[-71.533498554,41.708481513],[-71.533234555,41.708570514],[-71.532890554,41.708686514],[-71.532608554,41.708787513],[-71.532158554,41.708941513],[-71.531906554,41.709018514],[-71.531563554,41.709138513],[-71.531349553,41.709202514],[-71.531311554,41.709027514],[-71.531265554,41.708681514],[-71.531227554,41.708362513],[-71.531197554,41.708052513],[-71.531158554,41.707747514],[-71.531128554,41.707504513],[-71.531113554,41.707415514],[-71.531105554,41.707320514],[-71.531075554,41.707145514],[-71.531059553,41.706921513],[-71.531035554,41.706682513],[-71.531006554,41.706354513],[-71.530937554,41.705919513],[-71.530571553,41.705950513],[-71.530190553,41.705981513],[-71.530006553,41.705994513],[-71.529884554,41.705992513],[-71.529602553,41.705975514],[-71.529534554,41.705972513],[-71.529327553,41.705954513],[-71.529274553,41.705947513],[-71.529038553,41.705929513],[-71.528831553,41.705889513],[-71.528496553,41.705829513],[-71.528183553,41.705764513],[-71.528153552,41.705760513],[-71.528000552,41.705723514],[-71.527633552,41.705672513],[-71.527596553,41.705664514],[-71.527443553,41.705649513],[-71.527222552,41.705618513],[-71.527138552,41.705611513],[-71.526886552,41.705562513],[-71.526764553,41.705547514],[-71.526352552,41.705502513],[-71.525856552,41.705432513],[-71.524658552,41.705269513],[-71.524330551,41.705222513],[-71.523827551,41.705170513],[-71.523758551,41.705298513],[-71.523529551,41.705785513],[-71.523361551,41.706122513],[-71.523140551,41.706577514],[-71.522942551,41.706977513],[-71.522911551,41.707050513],[-71.522781551,41.707215514],[-71.522682551,41.707294514],[-71.522583551,41.707377514],[-71.522491551,41.707460513],[-71.522408551,41.707530514],[-71.522171551,41.707710514],[-71.521888551,41.707964514],[-71.521820551,41.708042514],[-71.521751551,41.708116514],[-71.521723551,41.708162513],[-71.521713551,41.708108514],[-71.521706551,41.708061514],[-71.521675551,41.708064513],[-71.521644551,41.708060514],[-71.521591551,41.708043514],[-71.52152355,41.707999514],[-71.52150755,41.707883514],[-71.52148455,41.707761514],[-71.52146255,41.707658513],[-71.52144655,41.707636513],[-71.52140855,41.707588514],[-71.52134755,41.707535514],[-71.521225551,41.707452514],[-71.52107355,41.707343513],[-71.52088255,41.707243514],[-71.52076055,41.707187513],[-71.520660551,41.707149513],[-71.52053755,41.707128513],[-71.52047755,41.707117514],[-71.52040155,41.707101514],[-71.52041355,41.707166514],[-71.52039655,41.707260514],[-71.520252551,41.707547514],[-71.51977955,41.707935514],[-71.51950255,41.708151514],[-71.51932155,41.708439514],[-71.51930455,41.708680514],[-71.51936155,41.709076514],[-71.51936055,41.709097514],[-71.51934055,41.709586514],[-71.51921755,41.710036514],[-71.51899755,41.710515515],[-71.51873855,41.710937514],[-71.51836455,41.711448515],[-71.51830955,41.711643515],[-71.51830655,41.711648515],[-71.51790555,41.711944515],[-71.51693555,41.712479515],[-71.516374549,41.712892515],[-71.515794549,41.713325515],[-71.515512549,41.713665515],[-71.515074549,41.714017515],[-71.514983549,41.714138515],[-71.514723549,41.714208515],[-71.514537549,41.714271515],[-71.514473549,41.714319515],[-71.514378549,41.714374515],[-71.514685549,41.714428515]]]]}}"}, +{"type": "precinct", "typeId": 3802, "areaId": 26060, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":399,\"NAME\":\"3802\",\"SHAPE_Length\":0.048063715262888,\"SHAPE_Area\":-8.6355213306941e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.521706551,41.708061514],[-71.521713551,41.708108514],[-71.521723551,41.708162513],[-71.521751551,41.708116514],[-71.521820551,41.708042514],[-71.521888551,41.707964514],[-71.522171551,41.707710514],[-71.522408551,41.707530514],[-71.522491551,41.707460513],[-71.522583551,41.707377514],[-71.522682551,41.707294514],[-71.522781551,41.707215514],[-71.522911551,41.707050513],[-71.522942551,41.706977513],[-71.523140551,41.706577514],[-71.523361551,41.706122513],[-71.523529551,41.705785513],[-71.523758551,41.705298513],[-71.523827551,41.705170513],[-71.524330551,41.705222513],[-71.524658552,41.705269513],[-71.525856552,41.705432513],[-71.526352552,41.705502513],[-71.526764553,41.705547514],[-71.526886552,41.705562513],[-71.527138552,41.705611513],[-71.527222552,41.705618513],[-71.527443553,41.705649513],[-71.527596553,41.705664514],[-71.527633552,41.705672513],[-71.528000552,41.705723514],[-71.528153552,41.705760513],[-71.528183553,41.705764513],[-71.528496553,41.705829513],[-71.528831553,41.705889513],[-71.529038553,41.705929513],[-71.529274553,41.705947513],[-71.529327553,41.705954513],[-71.529534554,41.705972513],[-71.529602553,41.705975514],[-71.529884554,41.705992513],[-71.530006553,41.705994513],[-71.530190553,41.705981513],[-71.530571553,41.705950513],[-71.530937554,41.705919513],[-71.531006554,41.706354513],[-71.531035554,41.706682513],[-71.531059553,41.706921513],[-71.531075554,41.707145514],[-71.531105554,41.707320514],[-71.531113554,41.707415514],[-71.531128554,41.707504513],[-71.531158554,41.707747514],[-71.531197554,41.708052513],[-71.531227554,41.708362513],[-71.531265554,41.708681514],[-71.531311554,41.709027514],[-71.531349553,41.709202514],[-71.531563554,41.709138513],[-71.531906554,41.709018514],[-71.532158554,41.708941513],[-71.532608554,41.708787513],[-71.532890554,41.708686514],[-71.533234555,41.708570514],[-71.533498554,41.708481513],[-71.533448555,41.707620513],[-71.533458554,41.707574514],[-71.533477554,41.707498513],[-71.533513555,41.705391513],[-71.533515554,41.705351513],[-71.533512555,41.705311513],[-71.533763555,41.703832512],[-71.533684555,41.702729512],[-71.533566554,41.702405513],[-71.533560554,41.702380512],[-71.533440554,41.701919513],[-71.533409554,41.701686513],[-71.533409554,41.701546512],[-71.533386554,41.701506512],[-71.533371554,41.701403512],[-71.533356555,41.701273512],[-71.533307554,41.700985512],[-71.533302554,41.700954512],[-71.533239554,41.700528512],[-71.533222554,41.700464512],[-71.533214554,41.700391512],[-71.533246554,41.700191512],[-71.533207554,41.699922512],[-71.533229554,41.699714512],[-71.533255554,41.699509512],[-71.533305554,41.699108512],[-71.533253554,41.698901511],[-71.533098554,41.698257511],[-71.533086554,41.698165511],[-71.533068554,41.698051512],[-71.532971554,41.697269511],[-71.532955554,41.697120512],[-71.532933554,41.696935511],[-71.532983554,41.696607511],[-71.533007553,41.696409511],[-71.533001554,41.695621511],[-71.533000554,41.695613511],[-71.533000554,41.695584511],[-71.533006554,41.695376511],[-71.532822554,41.695444511],[-71.532501553,41.695586511],[-71.532196553,41.695737511],[-71.531929554,41.695882511],[-71.531738554,41.695990511],[-71.531674553,41.696035511],[-71.530991553,41.696511511],[-71.530366553,41.696973511],[-71.530281553,41.697035511],[-71.529602553,41.697523512],[-71.529323552,41.697719512],[-71.528786553,41.698100511],[-71.528351552,41.698403512],[-71.528267553,41.698462512],[-71.528262553,41.698465512],[-71.527653552,41.698895512],[-71.527330552,41.699124512],[-71.527153552,41.699250512],[-71.526672552,41.699592512],[-71.525917552,41.700139512],[-71.525276552,41.700590512],[-71.525122552,41.700700512],[-71.524575551,41.701088512],[-71.524498551,41.701143512],[-71.523460551,41.701941512],[-71.523388551,41.702011513],[-71.523216551,41.702176512],[-71.52296455,41.702469512],[-71.522705551,41.702790513],[-71.522507551,41.703096513],[-71.52240055,41.703274513],[-71.522278551,41.703493513],[-71.522179551,41.703734512],[-71.52208755,41.703979513],[-71.521927551,41.704474513],[-71.52183555,41.704849513],[-71.52175955,41.705130513],[-71.52172155,41.705343513],[-71.52168355,41.705614513],[-71.52162255,41.705939513],[-71.52159955,41.706255513],[-71.521591551,41.706548513],[-71.521576551,41.706733514],[-71.521607551,41.707160514],[-71.521652551,41.707699514],[-71.521706551,41.708061514]]]]}}"}, +{"type": "precinct", "typeId": 3803, "areaId": 26055, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":394,\"NAME\":\"3803\",\"SHAPE_Length\":0.042527496150362,\"SHAPE_Area\":-6.8184467728612e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.526768551,41.68742451],[-71.526459551,41.687415509],[-71.526039551,41.68740751],[-71.525604551,41.68738051],[-71.52503255,41.687339509],[-71.52433055,41.68728751],[-71.52429255,41.68728751],[-71.52412455,41.687278509],[-71.523857551,41.68728351],[-71.52340755,41.68732051],[-71.52298855,41.687357509],[-71.52258355,41.68737051],[-71.52253055,41.68754251],[-71.52239355,41.68791451],[-71.52127855,41.68801551],[-71.52120255,41.68801751],[-71.520790549,41.68804451],[-71.520233549,41.68807951],[-71.520218549,41.68797151],[-71.519501549,41.68798751],[-71.519295549,41.68805051],[-71.519142548,41.68811651],[-71.519028549,41.68816451],[-71.518944549,41.68817551],[-71.518913549,41.68818051],[-71.518356549,41.68823351],[-71.517868549,41.68827551],[-71.517735549,41.68828251],[-71.517220548,41.68831251],[-71.516281548,41.68835951],[-71.515602548,41.68838851],[-71.515167547,41.68841551],[-71.514679547,41.68844851],[-71.514709548,41.68870051],[-71.514717547,41.68910951],[-71.514771548,41.68956851],[-71.514801547,41.689923511],[-71.514824548,41.69005351],[-71.514862548,41.69014251],[-71.514923548,41.69024051],[-71.515115548,41.69042151],[-71.515190548,41.690504511],[-71.515289548,41.69061051],[-71.515328548,41.690677511],[-71.515350548,41.69077151],[-71.515350548,41.690919511],[-71.515358547,41.691171511],[-71.515396548,41.691706511],[-71.515427548,41.692075511],[-71.515465548,41.692362511],[-71.515480548,41.692641511],[-71.515511548,41.692938511],[-71.515526548,41.693284511],[-71.515518548,41.693789511],[-71.515511548,41.693937511],[-71.515473548,41.694870511],[-71.515434548,41.695650512],[-71.515419548,41.696047512],[-71.515885548,41.696037511],[-71.516335548,41.696031511],[-71.516594548,41.696025512],[-71.516800549,41.696021512],[-71.517159548,41.696009512],[-71.517342549,41.696000511],[-71.517380549,41.695995511],[-71.517859549,41.695969512],[-71.518532549,41.695934511],[-71.518913549,41.695907512],[-71.51964655,41.695869512],[-71.520569549,41.695817511],[-71.52106555,41.695793512],[-71.52133255,41.695782511],[-71.52159955,41.695736512],[-71.52188155,41.695680511],[-71.52203455,41.695645511],[-71.52195055,41.695426512],[-71.52185155,41.695158511],[-71.52170555,41.694864511],[-71.52162955,41.694659511],[-71.521462549,41.694127511],[-71.52131755,41.693607511],[-71.52112655,41.693017511],[-71.520920549,41.692409511],[-71.52082855,41.692164511],[-71.520920549,41.69191951],[-71.521171549,41.691247511],[-71.52161455,41.69135451],[-71.52171355,41.691379511],[-71.52204955,41.691457511],[-71.52238555,41.691535511],[-71.52275455,41.691740511],[-71.522766551,41.69172551],[-71.52282755,41.691692511],[-71.52291955,41.691672511],[-71.52297255,41.691675511],[-71.52306455,41.691696511],[-71.523117551,41.691659511],[-71.52317155,41.691617511],[-71.523216551,41.69160751],[-71.523270551,41.69166951],[-71.523308551,41.691740511],[-71.52345355,41.69182251],[-71.52355255,41.69186551],[-71.52362855,41.691895511],[-71.523697551,41.69192151],[-71.523773551,41.691946511],[-71.52384255,41.69197651],[-71.523918551,41.691988511],[-71.523995551,41.691968511],[-71.524086551,41.691971511],[-71.524162551,41.69197851],[-71.524300551,41.692011511],[-71.52439155,41.692045511],[-71.524483551,41.69207451],[-71.52458255,41.692081511],[-71.52468155,41.692102511],[-71.524750551,41.69211851],[-71.524849551,41.692129511],[-71.525017551,41.692184511],[-71.525093551,41.69221051],[-71.525169551,41.69223051],[-71.525253551,41.692247511],[-71.525360551,41.69225351],[-71.525445551,41.69225151],[-71.525452551,41.69225151],[-71.525528551,41.692223511],[-71.525597551,41.69217651],[-71.525726551,41.69207951],[-71.525787551,41.692023511],[-71.525825551,41.691968511],[-71.525848552,41.69190051],[-71.525841551,41.69184651],[-71.525764551,41.691812511],[-71.525734551,41.691754511],[-71.525719551,41.691696511],[-71.525665551,41.69163051],[-71.525619551,41.69158651],[-71.525520551,41.69147551],[-71.525482551,41.691427511],[-71.525436551,41.69137451],[-71.525383551,41.69131651],[-71.525330551,41.691272511],[-71.525276551,41.691233511],[-71.525238551,41.69118451],[-71.525246551,41.69111751],[-71.525246551,41.69098651],[-71.525261551,41.69090951],[-71.525299551,41.69083651],[-71.525360551,41.69069151],[-71.525383551,41.69063251],[-71.525398551,41.69057751],[-71.525444551,41.69051351],[-71.525474551,41.690472511],[-71.525505551,41.69041751],[-71.525528551,41.69036751],[-71.525604551,41.69022251],[-71.525642551,41.69015851],[-71.525688551,41.69011251],[-71.525734551,41.69006151],[-71.525802551,41.69001951],[-71.525940551,41.68994451],[-71.526009551,41.68991551],[-71.526085551,41.68989651],[-71.526161552,41.68988151],[-71.526253551,41.68986151],[-71.526337551,41.68984551],[-71.526428551,41.68983451],[-71.526527552,41.68981451],[-71.526619551,41.68978951],[-71.526680551,41.68975251],[-71.526718551,41.68969751],[-71.526741552,41.68963451],[-71.526772551,41.68957951],[-71.526787551,41.68951151],[-71.526787551,41.68932651],[-71.526764552,41.68926851],[-71.526726552,41.68919751],[-71.526726552,41.68914351],[-71.526756551,41.68901651],[-71.526764552,41.68896751],[-71.526764552,41.68882351],[-71.526810551,41.68868751],[-71.526825551,41.68861951],[-71.526840552,41.68854251],[-71.526863552,41.68846951],[-71.526886551,41.688406509],[-71.526901552,41.68833851],[-71.526916552,41.68820751],[-71.526924551,41.68814851],[-71.526939552,41.688094509],[-71.526947551,41.68803151],[-71.526947551,41.68789151],[-71.526939552,41.68782851],[-71.526924551,41.687765509],[-71.526901552,41.68769851],[-71.526878552,41.68764051],[-71.526840552,41.68757851],[-71.526817551,41.68751651],[-71.526802552,41.68748951],[-71.526787551,41.68744951],[-71.526768551,41.68742451]]]]}}"}, +{"type": "precinct", "typeId": 3804, "areaId": 26056, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":395,\"NAME\":\"3804\",\"SHAPE_Length\":0.1415443765185,\"SHAPE_Area\":-0.00051662211140704},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.492892541,41.717834516],[-71.492767542,41.717939516],[-71.492455542,41.717955516],[-71.491921541,41.717940517],[-71.491715542,41.717944517],[-71.491615541,41.717955516],[-71.491478541,41.717967517],[-71.491409542,41.717982517],[-71.491363541,41.717997517],[-71.491318541,41.718020517],[-71.491272542,41.718039517],[-71.491196541,41.718086517],[-71.491165541,41.718109516],[-71.490563541,41.718775517],[-71.490486541,41.718889516],[-71.490418541,41.719035517],[-71.490807541,41.719166517],[-71.491043541,41.719255517],[-71.491432541,41.719382517],[-71.491646541,41.719454517],[-71.491615542,41.719491517],[-71.491562542,41.719582517],[-71.491745541,41.719731517],[-71.491844541,41.719805517],[-71.491936542,41.719871517],[-71.492035541,41.719936517],[-71.492126542,41.719997517],[-71.492195542,41.720046517],[-71.492256542,41.720080517],[-71.492287542,41.720102517],[-71.492317542,41.720115517],[-71.492340542,41.720123517],[-71.492393542,41.720145517],[-71.492508542,41.720187517],[-71.492554542,41.720204517],[-71.492706542,41.720255517],[-71.492729542,41.720264517],[-71.492867542,41.720306517],[-71.492927542,41.720327517],[-71.492981542,41.720339517],[-71.493050542,41.720365517],[-71.493080542,41.720373517],[-71.493103542,41.720382517],[-71.493149542,41.720412517],[-71.493172542,41.720430517],[-71.493187542,41.720447517],[-71.493210542,41.720469517],[-71.493225542,41.720491517],[-71.493248542,41.720514517],[-71.493278542,41.720553517],[-71.493317542,41.720598517],[-71.493393542,41.720668517],[-71.493439542,41.720703517],[-71.493530542,41.720755517],[-71.493668543,41.720806517],[-71.493721542,41.720818517],[-71.493775542,41.720835517],[-71.494141542,41.720935517],[-71.494690542,41.721086517],[-71.494812543,41.721119517],[-71.494888543,41.721144517],[-71.495354543,41.721274517],[-71.496033543,41.721448517],[-71.496765543,41.721766517],[-71.496948543,41.721843517],[-71.497146543,41.721933517],[-71.496872543,41.722466517],[-71.496689544,41.722956518],[-71.496506543,41.723293518],[-71.496452543,41.723380517],[-71.496368543,41.723625518],[-71.496353543,41.723666517],[-71.496346543,41.723711517],[-71.496330543,41.723752518],[-71.496323544,41.723784517],[-71.496323544,41.723986518],[-71.496353543,41.724148518],[-71.496368543,41.724192517],[-71.496399544,41.724268518],[-71.496429543,41.724349517],[-71.496468543,41.724429517],[-71.496490543,41.724500518],[-71.496521543,41.724572518],[-71.496543543,41.724642517],[-71.496567543,41.724683518],[-71.496582543,41.724724518],[-71.496605543,41.724764518],[-71.496651544,41.724925518],[-71.496651544,41.725033518],[-71.496655544,41.725061518],[-71.496658543,41.725087518],[-71.496658543,41.725136518],[-71.496666543,41.725181518],[-71.496673544,41.725230518],[-71.496681543,41.725275518],[-71.496696543,41.725320518],[-71.496727544,41.725396518],[-71.496750544,41.725436518],[-71.496773543,41.725467518],[-71.496811544,41.725525518],[-71.496857543,41.725582518],[-71.496895543,41.725640518],[-71.496971543,41.725728518],[-71.497055544,41.725812518],[-71.497124543,41.725896518],[-71.497154544,41.725936518],[-71.497185543,41.725980518],[-71.497215544,41.726020518],[-71.497246543,41.726065518],[-71.497269544,41.726105518],[-71.497299544,41.726149518],[-71.497337544,41.726202518],[-71.497429544,41.726290518],[-71.497490544,41.726316518],[-71.497559544,41.726332518],[-71.497627544,41.726349518],[-71.497688544,41.726375518],[-71.497749543,41.726405518],[-71.497810544,41.726440518],[-71.497864544,41.726479518],[-71.497910544,41.726523518],[-71.497955544,41.726562518],[-71.498062544,41.726659518],[-71.498108544,41.726708518],[-71.498375544,41.726932518],[-71.498710544,41.727231519],[-71.498947544,41.727514518],[-71.498871544,41.727623519],[-71.498696544,41.727960518],[-71.498505545,41.728365518],[-71.498268544,41.728920519],[-71.498131544,41.729414519],[-71.498001545,41.729786519],[-71.497887544,41.730148519],[-71.497871544,41.730230519],[-71.497856544,41.730410519],[-71.497856544,41.730807519],[-71.497849544,41.731032519],[-71.497848544,41.731131519],[-71.497849544,41.731158519],[-71.497848544,41.731180519],[-71.497841544,41.731221519],[-71.497841544,41.731257519],[-71.497833544,41.731280519],[-71.497826544,41.731339519],[-71.497803544,41.731413519],[-71.499924545,41.731356519],[-71.500923545,41.731199519],[-71.503059546,41.731144519],[-71.503560546,41.731124519],[-71.504067546,41.731104519],[-71.505020547,41.731065519],[-71.505485547,41.731043519],[-71.505867547,41.731037518],[-71.506928547,41.731014519],[-71.508331548,41.731002518],[-71.509427548,41.730954519],[-71.509560548,41.730948519],[-71.509686548,41.730943518],[-71.510658548,41.730915519],[-71.512023548,41.730860519],[-71.512306549,41.730856519],[-71.513228549,41.730839519],[-71.513382549,41.730837519],[-71.51406955,41.730813518],[-71.51561755,41.730779519],[-71.516853551,41.730741519],[-71.517708551,41.730715518],[-71.519173551,41.730665519],[-71.519663552,41.730627518],[-71.519806551,41.730615518],[-71.520390551,41.730602518],[-71.520397551,41.730602518],[-71.520782551,41.730595518],[-71.521307551,41.730583518],[-71.521496552,41.730578518],[-71.523665553,41.730531518],[-71.523712552,41.730530518],[-71.525348553,41.730472518],[-71.525348553,41.730307518],[-71.525317553,41.730254518],[-71.525294553,41.730187518],[-71.525310553,41.730132518],[-71.525333553,41.730087518],[-71.525317553,41.730020518],[-71.525318553,41.729817518],[-71.525333553,41.729749518],[-71.525340553,41.729695518],[-71.525354553,41.729622518],[-71.525348553,41.729570518],[-71.525310553,41.729512518],[-71.525287553,41.729454518],[-71.525271553,41.729342517],[-71.525270553,41.729274518],[-71.525294553,41.729211518],[-71.525278553,41.729152518],[-71.525255553,41.729099518],[-71.525255553,41.729040518],[-71.525248553,41.728982518],[-71.525248553,41.728928518],[-71.525286553,41.728877518],[-71.525270553,41.728757517],[-71.525271553,41.728685518],[-71.525271553,41.728559518],[-71.525240553,41.728497518],[-71.525331553,41.728387517],[-71.525353553,41.728328517],[-71.525406553,41.728281518],[-71.525444553,41.728226518],[-71.525459553,41.728168518],[-71.525475553,41.728113517],[-71.525535553,41.728004518],[-71.525566553,41.727945518],[-71.525604553,41.727894518],[-71.525619553,41.727835518],[-71.525620553,41.727813518],[-71.525645553,41.727591517],[-71.525724553,41.726909517],[-71.525673553,41.726844517],[-71.525406553,41.726548518],[-71.525055553,41.726200517],[-71.524872553,41.726001517],[-71.524780552,41.726084517],[-71.524628553,41.726218518],[-71.524399553,41.726385517],[-71.524353552,41.726413518],[-71.524182553,41.726250517],[-71.524155552,41.726224517],[-71.523979552,41.726034517],[-71.523651552,41.725713517],[-71.523468553,41.725802517],[-71.523247552,41.725924518],[-71.523056552,41.726032517],[-71.522850552,41.725838517],[-71.522652552,41.725649517],[-71.522591552,41.725592517],[-71.522491552,41.725486517],[-71.522255552,41.725261517],[-71.522194552,41.725213517],[-71.522148552,41.725201517],[-71.522049551,41.725203517],[-71.521714552,41.725237517],[-71.521362552,41.725259517],[-71.520668551,41.725274517],[-71.520630551,41.725086517],[-71.520569551,41.724623517],[-71.520744551,41.724601517],[-71.521217551,41.724550517],[-71.521568552,41.724520517],[-71.521767552,41.724489517],[-71.521752552,41.724412517],[-71.521729552,41.724219517],[-71.521683551,41.724027517],[-71.521668552,41.723959517],[-71.521568551,41.723795517],[-71.521843552,41.723740517],[-71.521965552,41.723723517],[-71.522080552,41.723734517],[-71.522209552,41.723758517],[-71.522430552,41.723817517],[-71.522590552,41.723849517],[-71.522644552,41.723862516],[-71.522720552,41.723873517],[-71.522789552,41.723881516],[-71.522904552,41.723883517],[-71.523025552,41.723853517],[-71.523109552,41.723815517],[-71.523244552,41.723750517],[-71.523247552,41.723749517],[-71.523377552,41.723652517],[-71.523560552,41.723553517],[-71.523773552,41.723458517],[-71.524002552,41.723368517],[-71.524101552,41.723307517],[-71.524154552,41.723247517],[-71.524178552,41.723179516],[-71.524193552,41.723089517],[-71.524170553,41.722698516],[-71.524147552,41.722527517],[-71.524147552,41.722464516],[-71.524178552,41.722369517],[-71.524223552,41.722282516],[-71.524391552,41.722040517],[-71.524437552,41.721926517],[-71.524498553,41.721758516],[-71.523819552,41.721800516],[-71.523384552,41.721823516],[-71.522911552,41.721852516],[-71.522515551,41.721860516],[-71.521728552,41.721891516],[-71.521370551,41.721895516],[-71.521324552,41.721360517],[-71.521232551,41.720466517],[-71.521225552,41.720416516],[-71.521210551,41.720259516],[-71.521133551,41.719662516],[-71.521095551,41.719320516],[-71.521072551,41.718947516],[-71.520973551,41.718301516],[-71.520996551,41.718233516],[-71.521001551,41.718183516],[-71.520958551,41.718175516],[-71.519851551,41.717953515],[-71.519058551,41.717794516],[-71.51866255,41.717676516],[-71.51866255,41.717852516],[-71.51866155,41.717915515],[-71.51866255,41.717978516],[-71.51865455,41.718037516],[-71.51863955,41.718100516],[-71.51861655,41.718154516],[-71.51860155,41.718213516],[-71.51857855,41.718268516],[-71.51856255,41.718322515],[-71.51852455,41.718395516],[-71.51847155,41.718464516],[-71.51842555,41.718505516],[-71.518379551,41.718556516],[-71.51833455,41.718611516],[-71.51828055,41.718671516],[-71.51822755,41.718726516],[-71.51817355,41.718777516],[-71.51812755,41.718818516],[-71.51807455,41.718855516],[-71.51802855,41.718901516],[-71.51799855,41.718952516],[-71.51788355,41.719103516],[-71.51782255,41.719163516],[-71.51774655,41.719223516],[-71.51768555,41.719265516],[-71.51763255,41.719297516],[-71.51760955,41.719307516],[-71.51754055,41.719349516],[-71.51745655,41.719387516],[-71.51738055,41.719420516],[-71.51731155,41.719462516],[-71.51723555,41.719500516],[-71.51717455,41.719541516],[-71.51710555,41.719579516],[-71.51704455,41.719616516],[-71.51697555,41.719649516],[-71.51691455,41.719687516],[-71.51684655,41.719715516],[-71.516762549,41.719744517],[-71.51667855,41.719777516],[-71.51660255,41.719802517],[-71.51651855,41.719822517],[-71.516434549,41.719846516],[-71.516281549,41.719894516],[-71.51626755,41.719901516],[-71.51620555,41.719927516],[-71.51612855,41.719961516],[-71.516060549,41.719989516],[-71.51597655,41.720009516],[-71.51580155,41.720040516],[-71.515594549,41.720053517],[-71.515503549,41.720060516],[-71.51541155,41.720066516],[-71.515144549,41.720072517],[-71.515053549,41.720070516],[-71.514961549,41.720063516],[-71.514870549,41.720051516],[-71.514816549,41.720043516],[-71.514770549,41.720035517],[-71.514572549,41.720013517],[-71.514389549,41.719981516],[-71.514290549,41.719960516],[-71.514191549,41.719936517],[-71.514099549,41.719920517],[-71.514007549,41.719890516],[-71.513924549,41.719865516],[-71.513847549,41.719839517],[-71.513718549,41.719775516],[-71.513573549,41.719674516],[-71.513504549,41.719617516],[-71.513451548,41.719560516],[-71.513405549,41.719502516],[-71.513290549,41.719392517],[-71.513229549,41.719335517],[-71.513168549,41.719273516],[-71.513031549,41.719141516],[-71.512970549,41.719075516],[-71.512901548,41.719014516],[-71.512818549,41.718948516],[-71.512733548,41.718882516],[-71.512657548,41.718821516],[-71.512588549,41.718764516],[-71.512520548,41.718689516],[-71.512505548,41.718667516],[-71.512466548,41.718604516],[-71.512444548,41.718542516],[-71.512413548,41.718461516],[-71.512359548,41.718327516],[-71.512329548,41.718279516],[-71.512298548,41.718216516],[-71.512268548,41.718149516],[-71.512238548,41.718073516],[-71.512207548,41.717989516],[-71.512169548,41.717899516],[-71.512123548,41.717824516],[-71.512070548,41.717766516],[-71.512024548,41.717704516],[-71.511978548,41.717651516],[-71.511925548,41.717598516],[-71.511856548,41.717550516],[-71.511796548,41.717502516],[-71.511786548,41.717336516],[-71.511786548,41.717251516],[-71.511784548,41.717118516],[-71.511849548,41.717150516],[-71.511909548,41.717130516],[-71.511963548,41.717075515],[-71.511986548,41.717048516],[-71.512031548,41.716975516],[-71.512047548,41.716911516],[-71.512047548,41.716853516],[-71.512039548,41.716776516],[-71.512009548,41.716719516],[-71.511955548,41.716652516],[-71.511887548,41.716591516],[-71.511795548,41.716543516],[-71.511643548,41.716488515],[-71.511437548,41.716402516],[-71.511360547,41.716381516],[-71.511292548,41.716369516],[-71.511070547,41.716365516],[-71.510971547,41.716390516],[-71.510910548,41.716414515],[-71.510864548,41.716428516],[-71.510826548,41.716443516],[-71.510750548,41.716462516],[-71.510704547,41.716502516],[-71.510511547,41.716495516],[-71.510584547,41.716392515],[-71.510635548,41.716379516],[-71.510681547,41.716365516],[-71.510719547,41.716346516],[-71.510758547,41.716323516],[-71.510811548,41.716276515],[-71.510819547,41.716222516],[-71.510780547,41.716151516],[-71.510742547,41.716089516],[-71.510735548,41.716026515],[-71.510742547,41.715967515],[-71.510811548,41.715844516],[-71.510857547,41.715794516],[-71.510910548,41.715738516],[-71.511032547,41.715619516],[-71.511086548,41.715554515],[-71.511146547,41.715495515],[-71.511207547,41.715444515],[-71.511276548,41.715388516],[-71.511345547,41.715346515],[-71.511398548,41.715300515],[-71.511520548,41.715216516],[-71.511658548,41.715123515],[-71.511795548,41.715057516],[-71.511865548,41.715025516],[-71.512292548,41.715139516],[-71.512322548,41.715127515],[-71.512390548,41.715107515],[-71.512467548,41.715078516],[-71.512535548,41.715050515],[-71.512619548,41.715017515],[-71.512703548,41.714992515],[-71.512779548,41.714968515],[-71.512840549,41.714940515],[-71.512924548,41.714929515],[-71.513084548,41.714885516],[-71.513168548,41.714865516],[-71.513351548,41.714834515],[-71.513435548,41.714814515],[-71.513527548,41.714794515],[-71.513611548,41.714770516],[-71.513687548,41.714750516],[-71.513764548,41.714721515],[-71.513847549,41.714697515],[-71.513947549,41.714681515],[-71.514046549,41.714661515],[-71.514229548,41.714621515],[-71.514313549,41.714601515],[-71.514381549,41.714586515],[-71.514473549,41.714557516],[-71.514549549,41.714515516],[-71.514618548,41.714468515],[-71.514685549,41.714428515],[-71.514378549,41.714374515],[-71.514473549,41.714319515],[-71.514537549,41.714271515],[-71.514723549,41.714208515],[-71.514983549,41.714138515],[-71.515074549,41.714017515],[-71.515512549,41.713665515],[-71.515794549,41.713325515],[-71.516374549,41.712892515],[-71.51693555,41.712479515],[-71.51790555,41.711944515],[-71.51830655,41.711648515],[-71.51830955,41.711643515],[-71.51836455,41.711448515],[-71.51873855,41.710937514],[-71.51899755,41.710515515],[-71.51921755,41.710036514],[-71.51934055,41.709586514],[-71.51936055,41.709097514],[-71.51936155,41.709076514],[-71.51930455,41.708680514],[-71.51932155,41.708439514],[-71.51950255,41.708151514],[-71.51977955,41.707935514],[-71.520252551,41.707547514],[-71.52039655,41.707260514],[-71.52041355,41.707166514],[-71.52040155,41.707101514],[-71.52035555,41.707091513],[-71.52026355,41.707072513],[-71.51995955,41.707016513],[-71.51928755,41.706878513],[-71.51884555,41.706784514],[-71.518639549,41.706748514],[-71.51857055,41.706938513],[-71.51839555,41.707474514],[-71.51828055,41.707746514],[-71.51767755,41.707629514],[-71.517113549,41.707511514],[-71.517243549,41.707102514],[-71.517349549,41.706726514],[-71.517425549,41.706504513],[-71.517197549,41.706460514],[-71.516915549,41.706407513],[-71.516770549,41.706388513],[-71.516411548,41.706310513],[-71.516129549,41.706253513],[-71.515770548,41.706176513],[-71.515351549,41.706095513],[-71.515152548,41.706050514],[-71.515198549,41.705945513],[-71.515365548,41.705649513],[-71.515579548,41.705275513],[-71.515648549,41.705143513],[-71.515907548,41.704723513],[-71.516128549,41.704344513],[-71.516251549,41.704116513],[-71.515976549,41.704064514],[-71.515488549,41.703944513],[-71.515373549,41.703901513],[-71.515274549,41.703836513],[-71.515152548,41.703802513],[-71.514870548,41.703746513],[-71.514496548,41.703668513],[-71.514038548,41.704480513],[-71.513626548,41.705182513],[-71.513428547,41.705524514],[-71.513336548,41.705702514],[-71.513260548,41.705839514],[-71.513191548,41.705975514],[-71.513130548,41.706098513],[-71.513062548,41.706221514],[-71.513001547,41.706322514],[-71.512924548,41.706459514],[-71.512795548,41.706646514],[-71.512764547,41.706683514],[-71.512634548,41.706798513],[-71.512482548,41.706905514],[-71.512192548,41.707078514],[-71.511971547,41.707204514],[-71.511475548,41.707463514],[-71.511063547,41.707652514],[-71.510971547,41.707695514],[-71.510872548,41.707742514],[-71.510689547,41.707818514],[-71.510391547,41.707946515],[-71.510002547,41.708094514],[-71.509598547,41.708269514],[-71.509277546,41.708398514],[-71.507664546,41.709083514],[-71.507233546,41.709267515],[-71.506691546,41.709490514],[-71.506584546,41.709691515],[-71.506256546,41.710207515],[-71.506187546,41.710303515],[-71.506088546,41.710449515],[-71.505966546,41.710614515],[-71.505821546,41.710784515],[-71.505470546,41.711178515],[-71.505371546,41.711239515],[-71.505295545,41.711272515],[-71.505188546,41.711315515],[-71.505005545,41.711364515],[-71.504883546,41.711394515],[-71.504745546,41.711406515],[-71.503502545,41.711437515],[-71.503380545,41.711436515],[-71.502365545,41.711480515],[-71.501267544,41.711540515],[-71.501076544,41.711558515],[-71.500908544,41.711584515],[-71.500786544,41.711614515],[-71.500717544,41.711633515],[-71.500633544,41.711667515],[-71.500557544,41.711695515],[-71.500481544,41.711733515],[-71.500382544,41.711780515],[-71.500320544,41.711804515],[-71.500253544,41.711831515],[-71.500015544,41.711928515],[-71.499649544,41.712071515],[-71.499557544,41.712109515],[-71.499115543,41.712285515],[-71.498535543,41.712509516],[-71.498449544,41.712545516],[-71.497963543,41.712747515],[-71.497879543,41.712780516],[-71.497734543,41.712846515],[-71.497566543,41.712913516],[-71.497490543,41.712946515],[-71.497437543,41.712974516],[-71.497269543,41.713077515],[-71.497185543,41.713133516],[-71.497116543,41.713175515],[-71.497055543,41.713217515],[-71.497002543,41.713263516],[-71.496948542,41.713305516],[-71.496887543,41.713374515],[-71.496826543,41.713438516],[-71.496773542,41.713507515],[-71.496597542,41.713717516],[-71.495834543,41.714626516],[-71.495560543,41.714952516],[-71.495415542,41.715130516],[-71.495255542,41.715341516],[-71.495216542,41.715391516],[-71.494629542,41.716093516],[-71.494179542,41.716675516],[-71.493958542,41.716914517],[-71.493889542,41.716974517],[-71.493584542,41.717246517],[-71.493446542,41.717366516],[-71.493338542,41.717458517],[-71.492892541,41.717834516]]]]}}"}, +{"type": "precinct", "typeId": 3805, "areaId": 26057, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":396,\"NAME\":\"3805\",\"SHAPE_Length\":0.093163815927645,\"SHAPE_Area\":-0.000178703186435},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.514685549,41.714428515],[-71.514618548,41.714468515],[-71.514549549,41.714515516],[-71.514473549,41.714557516],[-71.514381549,41.714586515],[-71.514313549,41.714601515],[-71.514229548,41.714621515],[-71.514046549,41.714661515],[-71.513947549,41.714681515],[-71.513847549,41.714697515],[-71.513764548,41.714721515],[-71.513687548,41.714750516],[-71.513611548,41.714770516],[-71.513527548,41.714794515],[-71.513435548,41.714814515],[-71.513351548,41.714834515],[-71.513168548,41.714865516],[-71.513084548,41.714885516],[-71.512924548,41.714929515],[-71.512840549,41.714940515],[-71.512779548,41.714968515],[-71.512703548,41.714992515],[-71.512619548,41.715017515],[-71.512535548,41.715050515],[-71.512467548,41.715078516],[-71.512390548,41.715107515],[-71.512322548,41.715127515],[-71.512292548,41.715139516],[-71.511865548,41.715025516],[-71.511795548,41.715057516],[-71.511658548,41.715123515],[-71.511520548,41.715216516],[-71.511398548,41.715300515],[-71.511345547,41.715346515],[-71.511276548,41.715388516],[-71.511207547,41.715444515],[-71.511146547,41.715495515],[-71.511086548,41.715554515],[-71.511032547,41.715619516],[-71.510910548,41.715738516],[-71.510857547,41.715794516],[-71.510811548,41.715844516],[-71.510742547,41.715967515],[-71.510735548,41.716026515],[-71.510742547,41.716089516],[-71.510780547,41.716151516],[-71.510819547,41.716222516],[-71.510811548,41.716276515],[-71.510758547,41.716323516],[-71.510719547,41.716346516],[-71.510681547,41.716365516],[-71.510635548,41.716379516],[-71.510584547,41.716392515],[-71.510511547,41.716495516],[-71.510704547,41.716502516],[-71.510750548,41.716462516],[-71.510826548,41.716443516],[-71.510864548,41.716428516],[-71.510910548,41.716414515],[-71.510971547,41.716390516],[-71.511070547,41.716365516],[-71.511292548,41.716369516],[-71.511360547,41.716381516],[-71.511437548,41.716402516],[-71.511643548,41.716488515],[-71.511795548,41.716543516],[-71.511887548,41.716591516],[-71.511955548,41.716652516],[-71.512009548,41.716719516],[-71.512039548,41.716776516],[-71.512047548,41.716853516],[-71.512047548,41.716911516],[-71.512031548,41.716975516],[-71.511986548,41.717048516],[-71.511963548,41.717075515],[-71.511909548,41.717130516],[-71.511849548,41.717150516],[-71.511784548,41.717118516],[-71.511786548,41.717251516],[-71.511786548,41.717336516],[-71.511796548,41.717502516],[-71.511856548,41.717550516],[-71.511925548,41.717598516],[-71.511978548,41.717651516],[-71.512024548,41.717704516],[-71.512070548,41.717766516],[-71.512123548,41.717824516],[-71.512169548,41.717899516],[-71.512207548,41.717989516],[-71.512238548,41.718073516],[-71.512268548,41.718149516],[-71.512298548,41.718216516],[-71.512329548,41.718279516],[-71.512359548,41.718327516],[-71.512413548,41.718461516],[-71.512444548,41.718542516],[-71.512466548,41.718604516],[-71.512505548,41.718667516],[-71.512520548,41.718689516],[-71.512588549,41.718764516],[-71.512657548,41.718821516],[-71.512733548,41.718882516],[-71.512818549,41.718948516],[-71.512901548,41.719014516],[-71.512970549,41.719075516],[-71.513031549,41.719141516],[-71.513168549,41.719273516],[-71.513229549,41.719335517],[-71.513290549,41.719392517],[-71.513405549,41.719502516],[-71.513451548,41.719560516],[-71.513504549,41.719617516],[-71.513573549,41.719674516],[-71.513718549,41.719775516],[-71.513847549,41.719839517],[-71.513924549,41.719865516],[-71.514007549,41.719890516],[-71.514099549,41.719920517],[-71.514191549,41.719936517],[-71.514290549,41.719960516],[-71.514389549,41.719981516],[-71.514572549,41.720013517],[-71.514770549,41.720035517],[-71.514816549,41.720043516],[-71.514870549,41.720051516],[-71.514961549,41.720063516],[-71.515053549,41.720070516],[-71.515144549,41.720072517],[-71.51541155,41.720066516],[-71.515503549,41.720060516],[-71.515594549,41.720053517],[-71.51580155,41.720040516],[-71.51597655,41.720009516],[-71.516060549,41.719989516],[-71.51612855,41.719961516],[-71.51620555,41.719927516],[-71.51626755,41.719901516],[-71.516281549,41.719894516],[-71.516434549,41.719846516],[-71.51651855,41.719822517],[-71.51660255,41.719802517],[-71.51667855,41.719777516],[-71.516762549,41.719744517],[-71.51684655,41.719715516],[-71.51691455,41.719687516],[-71.51697555,41.719649516],[-71.51704455,41.719616516],[-71.51710555,41.719579516],[-71.51717455,41.719541516],[-71.51723555,41.719500516],[-71.51731155,41.719462516],[-71.51738055,41.719420516],[-71.51745655,41.719387516],[-71.51754055,41.719349516],[-71.51760955,41.719307516],[-71.51763255,41.719297516],[-71.51768555,41.719265516],[-71.51774655,41.719223516],[-71.51782255,41.719163516],[-71.51788355,41.719103516],[-71.51799855,41.718952516],[-71.51802855,41.718901516],[-71.51807455,41.718855516],[-71.51812755,41.718818516],[-71.51817355,41.718777516],[-71.51822755,41.718726516],[-71.51828055,41.718671516],[-71.51833455,41.718611516],[-71.518379551,41.718556516],[-71.51842555,41.718505516],[-71.51847155,41.718464516],[-71.51852455,41.718395516],[-71.51856255,41.718322515],[-71.51857855,41.718268516],[-71.51860155,41.718213516],[-71.51861655,41.718154516],[-71.51863955,41.718100516],[-71.51865455,41.718037516],[-71.51866255,41.717978516],[-71.51866155,41.717915515],[-71.51866255,41.717852516],[-71.51866255,41.717676516],[-71.519058551,41.717794516],[-71.519851551,41.717953515],[-71.520958551,41.718175516],[-71.521001551,41.718183516],[-71.520996551,41.718233516],[-71.520973551,41.718301516],[-71.521072551,41.718947516],[-71.521095551,41.719320516],[-71.521133551,41.719662516],[-71.521210551,41.720259516],[-71.521225552,41.720416516],[-71.521232551,41.720466517],[-71.521324552,41.721360517],[-71.521370551,41.721895516],[-71.521728552,41.721891516],[-71.522515551,41.721860516],[-71.522911552,41.721852516],[-71.523384552,41.721823516],[-71.523819552,41.721800516],[-71.524498553,41.721758516],[-71.524437552,41.721926517],[-71.524391552,41.722040517],[-71.524223552,41.722282516],[-71.524178552,41.722369517],[-71.524147552,41.722464516],[-71.524147552,41.722527517],[-71.524170553,41.722698516],[-71.524193552,41.723089517],[-71.524178552,41.723179516],[-71.524154552,41.723247517],[-71.524101552,41.723307517],[-71.524002552,41.723368517],[-71.523773552,41.723458517],[-71.523560552,41.723553517],[-71.523377552,41.723652517],[-71.523247552,41.723749517],[-71.523244552,41.723750517],[-71.523109552,41.723815517],[-71.523025552,41.723853517],[-71.522904552,41.723883517],[-71.522789552,41.723881516],[-71.522720552,41.723873517],[-71.522644552,41.723862516],[-71.522590552,41.723849517],[-71.522430552,41.723817517],[-71.522209552,41.723758517],[-71.522080552,41.723734517],[-71.521965552,41.723723517],[-71.521843552,41.723740517],[-71.521568551,41.723795517],[-71.521668552,41.723959517],[-71.521683551,41.724027517],[-71.521729552,41.724219517],[-71.521752552,41.724412517],[-71.521767552,41.724489517],[-71.521568552,41.724520517],[-71.521217551,41.724550517],[-71.520744551,41.724601517],[-71.520569551,41.724623517],[-71.520630551,41.725086517],[-71.520668551,41.725274517],[-71.521362552,41.725259517],[-71.521714552,41.725237517],[-71.522049551,41.725203517],[-71.522148552,41.725201517],[-71.522194552,41.725213517],[-71.522255552,41.725261517],[-71.522491552,41.725486517],[-71.522591552,41.725592517],[-71.522652552,41.725649517],[-71.522850552,41.725838517],[-71.523056552,41.726032517],[-71.523247552,41.725924518],[-71.523468553,41.725802517],[-71.523651552,41.725713517],[-71.523979552,41.726034517],[-71.524155552,41.726224517],[-71.524182553,41.726250517],[-71.524353552,41.726413518],[-71.524399553,41.726385517],[-71.524628553,41.726218518],[-71.524780552,41.726084517],[-71.524872553,41.726001517],[-71.525055553,41.726200517],[-71.525406553,41.726548518],[-71.525673553,41.726844517],[-71.525724553,41.726909517],[-71.525645553,41.727591517],[-71.525620553,41.727813518],[-71.525619553,41.727835518],[-71.525604553,41.727894518],[-71.525566553,41.727945518],[-71.525535553,41.728004518],[-71.525475553,41.728113517],[-71.525459553,41.728168518],[-71.525444553,41.728226518],[-71.525406553,41.728281518],[-71.525353553,41.728328517],[-71.525331553,41.728387517],[-71.525240553,41.728497518],[-71.525271553,41.728559518],[-71.525271553,41.728685518],[-71.525270553,41.728757517],[-71.525286553,41.728877518],[-71.525248553,41.728928518],[-71.525248553,41.728982518],[-71.525255553,41.729040518],[-71.525255553,41.729099518],[-71.525278553,41.729152518],[-71.525294553,41.729211518],[-71.525270553,41.729274518],[-71.525271553,41.729342517],[-71.525287553,41.729454518],[-71.525310553,41.729512518],[-71.525348553,41.729570518],[-71.525354553,41.729622518],[-71.525340553,41.729695518],[-71.525333553,41.729749518],[-71.525318553,41.729817518],[-71.525317553,41.730020518],[-71.525333553,41.730087518],[-71.525310553,41.730132518],[-71.525294553,41.730187518],[-71.525317553,41.730254518],[-71.525348553,41.730307518],[-71.525348553,41.730472518],[-71.526926553,41.730421518],[-71.529374555,41.730354517],[-71.531497555,41.730290518],[-71.534020556,41.730189518],[-71.534015556,41.729922518],[-71.534011556,41.729757518],[-71.534005556,41.729388518],[-71.534016556,41.728799517],[-71.534030556,41.728644517],[-71.534106556,41.727809517],[-71.534101556,41.727785517],[-71.534098556,41.727757518],[-71.533972556,41.727060517],[-71.533969556,41.727039517],[-71.533970556,41.727035517],[-71.533969556,41.727032517],[-71.533994556,41.726519517],[-71.534011556,41.726149517],[-71.534013556,41.726092517],[-71.534018556,41.726018517],[-71.533928555,41.724906517],[-71.533885555,41.724597517],[-71.533870555,41.724520517],[-71.534120555,41.723930517],[-71.533924555,41.723053516],[-71.533917556,41.723029516],[-71.533905555,41.722749516],[-71.533905555,41.722085516],[-71.533972555,41.721849516],[-71.534034556,41.721664516],[-71.533924555,41.721091516],[-71.533902556,41.720936516],[-71.533726556,41.718921516],[-71.533721555,41.718861516],[-71.533801555,41.717667515],[-71.533798555,41.717636516],[-71.533782555,41.717570515],[-71.533601555,41.716667515],[-71.533584555,41.716587515],[-71.533562555,41.716623515],[-71.533485555,41.716756515],[-71.533325555,41.717066515],[-71.533119555,41.717493515],[-71.532860555,41.718035515],[-71.532623555,41.718585516],[-71.532578554,41.718699515],[-71.532572555,41.718713515],[-71.532509555,41.718889515],[-71.532470555,41.718985515],[-71.532455555,41.719183515],[-71.532456555,41.719246516],[-71.532478555,41.719372516],[-71.532516555,41.719524516],[-71.532608555,41.719801516],[-71.532654555,41.719980515],[-71.532669555,41.720129516],[-71.532661555,41.720259516],[-71.532646555,41.720359516],[-71.532646555,41.720395516],[-71.532630555,41.720470516],[-71.532600555,41.720562516],[-71.532524555,41.720672516],[-71.532393555,41.720832516],[-71.532311555,41.720789516],[-71.532158555,41.720721516],[-71.532089555,41.720686516],[-71.532028555,41.720638516],[-71.532021555,41.720580516],[-71.532021555,41.720512516],[-71.532005555,41.720449516],[-71.531952555,41.720397516],[-71.531876554,41.720340516],[-71.531792555,41.720301516],[-71.531723554,41.720289516],[-71.531540555,41.720262516],[-71.531471554,41.720241516],[-71.531387555,41.720206516],[-71.531296554,41.720190516],[-71.531204555,41.720188516],[-71.531036555,41.720192516],[-71.530960554,41.720198516],[-71.530876555,41.720195515],[-71.530777555,41.720197516],[-71.530693554,41.720190516],[-71.530609554,41.720187516],[-71.530510555,41.720181516],[-71.530426554,41.720164516],[-71.530258554,41.720123516],[-71.530167554,41.720125516],[-71.530075554,41.720123516],[-71.529999554,41.720129516],[-71.529900554,41.720149516],[-71.529823554,41.720169516],[-71.529755554,41.720193516],[-71.529678554,41.720217516],[-71.529602554,41.720237516],[-71.529442554,41.720303516],[-71.529281554,41.720392516],[-71.529213554,41.720434516],[-71.529137554,41.720459516],[-71.529068553,41.720483516],[-71.528984554,41.720484516],[-71.528892553,41.720473516],[-71.528801554,41.720461516],[-71.528725554,41.720427516],[-71.528656554,41.720370516],[-71.528587554,41.720309516],[-71.528519554,41.720251516],[-71.528465553,41.720194516],[-71.528404554,41.720132516],[-71.528351553,41.720062516],[-71.528290553,41.720009516],[-71.528221554,41.719965516],[-71.528076553,41.719901515],[-71.528073553,41.719899516],[-71.528007554,41.719862515],[-71.527939553,41.719814516],[-71.527855554,41.719807516],[-71.527763553,41.719804515],[-71.527672553,41.719788516],[-71.527603554,41.719767516],[-71.527519553,41.719751516],[-71.527443553,41.719726515],[-71.527382553,41.719700516],[-71.527298553,41.719643516],[-71.527237553,41.719577516],[-71.527199553,41.719533516],[-71.527161553,41.719484516],[-71.527046553,41.719325516],[-71.527016553,41.719276516],[-71.526985553,41.719204516],[-71.526970553,41.719065515],[-71.526962553,41.719002516],[-71.526901553,41.718869515],[-71.526878553,41.718797516],[-71.526871553,41.718730516],[-71.526871553,41.718658515],[-71.526886553,41.718590516],[-71.526924553,41.718521515],[-71.526962553,41.718462515],[-71.527008553,41.718393516],[-71.527084553,41.718248515],[-71.527100553,41.718171515],[-71.527107553,41.718108515],[-71.527107553,41.717747516],[-71.527092553,41.717685515],[-71.527062553,41.717627515],[-71.526993553,41.717453515],[-71.526977553,41.717399516],[-71.526947553,41.717346516],[-71.526916553,41.717288515],[-71.526886553,41.717221515],[-71.526848553,41.717159515],[-71.526810553,41.717105516],[-71.526764553,41.717061515],[-71.526657553,41.716965515],[-71.526604553,41.716912516],[-71.526558553,41.716859515],[-71.526505553,41.716806515],[-71.526451553,41.716758516],[-71.526398552,41.716718516],[-71.526344553,41.716674515],[-71.526291553,41.716635515],[-71.526176553,41.716561516],[-71.526039553,41.716501515],[-71.525963553,41.716471515],[-71.525887553,41.716437515],[-71.525810553,41.716416515],[-71.525726553,41.716395515],[-71.525643552,41.716384515],[-71.525566552,41.716367516],[-71.525482552,41.716360515],[-71.525406552,41.716348516],[-71.525337553,41.716327515],[-71.525261553,41.716311516],[-71.525170552,41.716295515],[-71.525078552,41.716265515],[-71.524925552,41.716197515],[-71.524788552,41.716128515],[-71.524658552,41.716054515],[-71.524590552,41.716019516],[-71.524513552,41.715990515],[-71.524452552,41.715964515],[-71.524353552,41.715926515],[-71.524116552,41.715845515],[-71.524048552,41.715815515],[-71.523971552,41.715790515],[-71.523911552,41.715760515],[-71.523827552,41.715726516],[-71.523742552,41.715678515],[-71.523697552,41.715634515],[-71.523644552,41.715600515],[-71.523651552,41.715567515],[-71.523682552,41.715445515],[-71.523453551,41.715342515],[-71.523232552,41.715225515],[-71.523049551,41.715126515],[-71.522888551,41.715035515],[-71.522720551,41.714953515],[-71.522644552,41.714914515],[-71.522591552,41.714888515],[-71.522476551,41.714828515],[-71.521950551,41.714560515],[-71.521446551,41.714310515],[-71.52111155,41.714160515],[-71.520951551,41.714091515],[-71.520767551,41.714018515],[-71.520561551,41.713960515],[-71.52039355,41.713923515],[-71.52029455,41.713898515],[-71.52019555,41.713878515],[-71.52016355,41.713873515],[-71.520073551,41.713858515],[-71.519920551,41.713852515],[-71.51952455,41.713843515],[-71.51927255,41.713844515],[-71.51885255,41.713844515],[-71.51858555,41.713841515],[-71.51764755,41.713830515],[-71.51757055,41.713827515],[-71.51738055,41.713832515],[-71.517390549,41.713867515],[-71.51753655,41.714368515],[-71.51755555,41.714431515],[-71.51755555,41.714503515],[-71.51754855,41.714526515],[-71.51751755,41.714563515],[-71.51749455,41.714572515],[-71.51747155,41.714586515],[-71.51738055,41.714602515],[-71.517349549,41.714602515],[-71.51632755,41.714773515],[-71.516296549,41.714774515],[-71.516266549,41.714779515],[-71.51623555,41.714775515],[-71.516190549,41.714772515],[-71.516151549,41.714764515],[-71.516060549,41.714739515],[-71.515983549,41.714713516],[-71.515915549,41.714692516],[-71.515854549,41.714671516],[-71.51578555,41.714655515],[-71.515869549,41.714563515],[-71.515930549,41.714503515],[-71.515823549,41.714528515],[-71.51574755,41.714538515],[-71.515671549,41.714544515],[-71.515564549,41.714551515],[-71.515450549,41.714549515],[-71.515343549,41.714543515],[-71.515266549,41.714522515],[-71.515228549,41.714527515],[-71.515114549,41.714503515],[-71.514685549,41.714428515]]]]}}"}, +{"type": "precinct", "typeId": 3806, "areaId": 26058, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":397,\"NAME\":\"3806\",\"SHAPE_Length\":0.059542829986924,\"SHAPE_Area\":-0.00012237123566845},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.492892541,41.717834516],[-71.492874541,41.717820516],[-71.492821542,41.717789517],[-71.492706542,41.717778516],[-71.492615542,41.717794517],[-71.492531542,41.717791517],[-71.492470542,41.717752517],[-71.492439542,41.717694517],[-71.492417542,41.717632517],[-71.492348541,41.717602516],[-71.492279542,41.717581516],[-71.492172541,41.717578517],[-71.492088542,41.717567516],[-71.491913542,41.717539517],[-71.491821541,41.717536517],[-71.491738542,41.717538517],[-71.491661542,41.717535517],[-71.491585542,41.717524516],[-71.491501542,41.717516517],[-71.491409542,41.717509516],[-71.491310542,41.717498517],[-71.491219541,41.717486516],[-71.491119541,41.717475517],[-71.491012541,41.717477517],[-71.490906541,41.717475517],[-71.490814541,41.717477517],[-71.490730541,41.717475517],[-71.490631541,41.717499517],[-71.490539541,41.717524516],[-71.490463541,41.717557517],[-71.490379541,41.717595517],[-71.490288541,41.717633517],[-71.490234541,41.717665516],[-71.49018154,41.717707517],[-71.490089541,41.717799516],[-71.490013541,41.717891517],[-71.489952541,41.717955516],[-71.489906541,41.718015516],[-71.489868541,41.718070516],[-71.489815541,41.718192517],[-71.489784541,41.718247516],[-71.489716541,41.718375517],[-71.489670541,41.718434517],[-71.489594541,41.718553517],[-71.489571541,41.718612517],[-71.489533541,41.718667517],[-71.489510541,41.718721517],[-71.489495541,41.718798517],[-71.48947954,41.718947517],[-71.48947954,41.719253517],[-71.489494541,41.719375517],[-71.48954054,41.719423517],[-71.48954054,41.718887516],[-71.489876541,41.718214517],[-71.490578541,41.717635517],[-71.490593541,41.717712517],[-71.490585541,41.717766517],[-71.490539541,41.717834516],[-71.490471541,41.717894516],[-71.490417541,41.717932516],[-71.490349541,41.717969517],[-71.490288541,41.718011516],[-71.490227541,41.718044517],[-71.490165541,41.718081517],[-71.490105541,41.718123517],[-71.490066541,41.718169516],[-71.490028541,41.718228516],[-71.489983541,41.718288517],[-71.489952541,41.718351517],[-71.489914541,41.718406517],[-71.489883541,41.718470517],[-71.489845541,41.718529517],[-71.489815541,41.718602517],[-71.48979254,41.718684517],[-71.489776541,41.718765517],[-71.48975454,41.718838517],[-71.489738541,41.718910517],[-71.489731541,41.718987517],[-71.489731541,41.719446517],[-71.489746541,41.719599517],[-71.489754541,41.719657517],[-71.489769541,41.719720517],[-71.489776541,41.719787517],[-71.489807541,41.719859517],[-71.48983054,41.719935517],[-71.489861541,41.720011517],[-71.489922541,41.720144517],[-71.489960541,41.720207517],[-71.489990541,41.720273517],[-71.490013541,41.720331517],[-71.490036541,41.720394517],[-71.490059541,41.720461517],[-71.490120541,41.720656517],[-71.490196541,41.720881517],[-71.490219542,41.720957517],[-71.490234541,41.721038517],[-71.490257541,41.721110517],[-71.490272541,41.721181517],[-71.490280541,41.721235517],[-71.490280541,41.721411517],[-71.490273541,41.721470517],[-71.490257542,41.721542517],[-71.490227541,41.721660517],[-71.490227541,41.721723517],[-71.490211541,41.721836517],[-71.490196541,41.721953517],[-71.490189541,41.722016517],[-71.490173541,41.722080518],[-71.490151541,41.722139518],[-71.490112541,41.722194518],[-71.490074541,41.722257518],[-71.490036541,41.722312518],[-71.489990541,41.722376518],[-71.489929541,41.722436517],[-71.489868541,41.722492518],[-71.489807541,41.722533518],[-71.489754541,41.722571518],[-71.489700541,41.722612517],[-71.489655541,41.722654517],[-71.489581541,41.722703518],[-71.489494541,41.722747518],[-71.489426541,41.722780518],[-71.489235541,41.722911518],[-71.489158541,41.722957518],[-71.489082541,41.723008518],[-71.488930541,41.723120517],[-71.488861541,41.723180517],[-71.488808541,41.723231518],[-71.488754541,41.723272518],[-71.488617541,41.723383518],[-71.48854854,41.723443518],[-71.488472541,41.723490517],[-71.488418541,41.723532518],[-71.488327541,41.723624518],[-71.48827354,41.723665517],[-71.488220541,41.723712518],[-71.48815954,41.723753518],[-71.48809854,41.723800518],[-71.48803754,41.723851518],[-71.48798454,41.723892518],[-71.48790054,41.723953518],[-71.487389541,41.724387518],[-71.48732754,41.724451518],[-71.48726754,41.724520518],[-71.48722154,41.724566518],[-71.48716754,41.724626518],[-71.48710654,41.724681518],[-71.48704554,41.724741518],[-71.48698454,41.724810518],[-71.48693154,41.724879518],[-71.486862541,41.724943518],[-71.48680154,41.725012518],[-71.486748541,41.725076518],[-71.48668754,41.725132518],[-71.48663454,41.725191518],[-71.48658054,41.725242519],[-71.48652654,41.725297518],[-71.48647354,41.725335518],[-71.48641254,41.725390518],[-71.48636654,41.725436519],[-71.48632854,41.725495519],[-71.48627554,41.725600518],[-71.48622154,41.725669519],[-71.48614554,41.725769519],[-71.48609954,41.725820518],[-71.48604654,41.725875518],[-71.48595454,41.725976518],[-71.48590154,41.726027518],[-71.48586354,41.726073518],[-71.48580254,41.726133518],[-71.48576454,41.726183518],[-71.48570254,41.726229518],[-71.48560354,41.726295519],[-71.48555054,41.726327518],[-71.48550754,41.726336519],[-71.48549754,41.726369519],[-71.48548154,41.726401518],[-71.485054539,41.727801518],[-71.48481054,41.728626519],[-71.484781539,41.728732519],[-71.48474954,41.728853519],[-71.48471354,41.728949519],[-71.484664539,41.729034519],[-71.48459354,41.729076519],[-71.48459154,41.729089519],[-71.48457854,41.729177519],[-71.48459654,41.729320519],[-71.483887539,41.731686519],[-71.48385854,41.73178752],[-71.48422254,41.731778519],[-71.48597754,41.73173252],[-71.48673354,41.731710519],[-71.486982541,41.731704519],[-71.487228541,41.73169752],[-71.490677542,41.731605519],[-71.493568543,41.731533519],[-71.493845543,41.731519519],[-71.497264544,41.731428519],[-71.497803544,41.731413519],[-71.497826544,41.731339519],[-71.497833544,41.731280519],[-71.497841544,41.731257519],[-71.497841544,41.731221519],[-71.497848544,41.731180519],[-71.497849544,41.731158519],[-71.497848544,41.731131519],[-71.497849544,41.731032519],[-71.497856544,41.730807519],[-71.497856544,41.730410519],[-71.497871544,41.730230519],[-71.497887544,41.730148519],[-71.498001545,41.729786519],[-71.498131544,41.729414519],[-71.498268544,41.728920519],[-71.498505545,41.728365518],[-71.498696544,41.727960518],[-71.498871544,41.727623519],[-71.498947544,41.727514518],[-71.498710544,41.727231519],[-71.498375544,41.726932518],[-71.498108544,41.726708518],[-71.498062544,41.726659518],[-71.497955544,41.726562518],[-71.497910544,41.726523518],[-71.497864544,41.726479518],[-71.497810544,41.726440518],[-71.497749543,41.726405518],[-71.497688544,41.726375518],[-71.497627544,41.726349518],[-71.497559544,41.726332518],[-71.497490544,41.726316518],[-71.497429544,41.726290518],[-71.497337544,41.726202518],[-71.497299544,41.726149518],[-71.497269544,41.726105518],[-71.497246543,41.726065518],[-71.497215544,41.726020518],[-71.497185543,41.725980518],[-71.497154544,41.725936518],[-71.497124543,41.725896518],[-71.497055544,41.725812518],[-71.496971543,41.725728518],[-71.496895543,41.725640518],[-71.496857543,41.725582518],[-71.496811544,41.725525518],[-71.496773543,41.725467518],[-71.496750544,41.725436518],[-71.496727544,41.725396518],[-71.496696543,41.725320518],[-71.496681543,41.725275518],[-71.496673544,41.725230518],[-71.496666543,41.725181518],[-71.496658543,41.725136518],[-71.496658543,41.725087518],[-71.496655544,41.725061518],[-71.496651544,41.725033518],[-71.496651544,41.724925518],[-71.496605543,41.724764518],[-71.496582543,41.724724518],[-71.496567543,41.724683518],[-71.496543543,41.724642517],[-71.496521543,41.724572518],[-71.496490543,41.724500518],[-71.496468543,41.724429517],[-71.496429543,41.724349517],[-71.496399544,41.724268518],[-71.496368543,41.724192517],[-71.496353543,41.724148518],[-71.496323544,41.723986518],[-71.496323544,41.723784517],[-71.496330543,41.723752518],[-71.496346543,41.723711517],[-71.496353543,41.723666517],[-71.496368543,41.723625518],[-71.496452543,41.723380517],[-71.496506543,41.723293518],[-71.496689544,41.722956518],[-71.496872543,41.722466517],[-71.497146543,41.721933517],[-71.496948543,41.721843517],[-71.496765543,41.721766517],[-71.496033543,41.721448517],[-71.495354543,41.721274517],[-71.494888543,41.721144517],[-71.494812543,41.721119517],[-71.494690542,41.721086517],[-71.494141542,41.720935517],[-71.493775542,41.720835517],[-71.493721542,41.720818517],[-71.493668543,41.720806517],[-71.493530542,41.720755517],[-71.493439542,41.720703517],[-71.493393542,41.720668517],[-71.493317542,41.720598517],[-71.493278542,41.720553517],[-71.493248542,41.720514517],[-71.493225542,41.720491517],[-71.493210542,41.720469517],[-71.493187542,41.720447517],[-71.493172542,41.720430517],[-71.493149542,41.720412517],[-71.493103542,41.720382517],[-71.493080542,41.720373517],[-71.493050542,41.720365517],[-71.492981542,41.720339517],[-71.492927542,41.720327517],[-71.492867542,41.720306517],[-71.492729542,41.720264517],[-71.492706542,41.720255517],[-71.492554542,41.720204517],[-71.492508542,41.720187517],[-71.492393542,41.720145517],[-71.492340542,41.720123517],[-71.492317542,41.720115517],[-71.492287542,41.720102517],[-71.492256542,41.720080517],[-71.492195542,41.720046517],[-71.492126542,41.719997517],[-71.492035541,41.719936517],[-71.491936542,41.719871517],[-71.491844541,41.719805517],[-71.491745541,41.719731517],[-71.491562542,41.719582517],[-71.491615542,41.719491517],[-71.491646541,41.719454517],[-71.491432541,41.719382517],[-71.491043541,41.719255517],[-71.490807541,41.719166517],[-71.490418541,41.719035517],[-71.490486541,41.718889516],[-71.490563541,41.718775517],[-71.491165541,41.718109516],[-71.491196541,41.718086517],[-71.491272542,41.718039517],[-71.491318541,41.718020517],[-71.491363541,41.717997517],[-71.491409542,41.717982517],[-71.491478541,41.717967517],[-71.491615541,41.717955516],[-71.491715542,41.717944517],[-71.491921541,41.717940517],[-71.492455542,41.717955516],[-71.492767542,41.717939516],[-71.492892541,41.717834516]]]]}}"}, +{"type": "precinct", "typeId": 3807, "areaId": 26059, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":398,\"NAME\":\"3807\",\"SHAPE_Length\":0.11680673414936,\"SHAPE_Area\":-0.00029889415056633},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.500793542,41.68502351],[-71.500885543,41.68595751],[-71.500961543,41.68683851],[-71.500984543,41.687117511],[-71.500999543,41.68732451],[-71.501030543,41.68759851],[-71.501068543,41.68790251],[-71.501106543,41.68821851],[-71.501129543,41.688631511],[-71.501137543,41.688942511],[-71.501129543,41.689356511],[-71.501144543,41.689739511],[-71.501160543,41.689968511],[-71.501167543,41.690144511],[-71.501198543,41.690638511],[-71.501251543,41.691385511],[-71.501297543,41.692068512],[-71.501327543,41.692711512],[-71.501343543,41.692905512],[-71.501373544,41.693179512],[-71.501381543,41.693210511],[-71.501411544,41.693633511],[-71.501449544,41.694114512],[-71.501457543,41.694141511],[-71.501503543,41.694639512],[-71.501518543,41.694765511],[-71.501521543,41.694799512],[-71.501541543,41.695035512],[-71.501572543,41.695417512],[-71.501633543,41.696001512],[-71.501679544,41.696482512],[-71.501869543,41.696478513],[-71.502792544,41.696440513],[-71.502884544,41.696433512],[-71.503342544,41.696423512],[-71.503700544,41.696402512],[-71.504082545,41.696398512],[-71.504333545,41.696406512],[-71.504730544,41.696420512],[-71.504883545,41.696417512],[-71.505447545,41.696449512],[-71.505600545,41.696469512],[-71.505776545,41.696478512],[-71.506142545,41.696475512],[-71.506241545,41.696468512],[-71.506332545,41.696466512],[-71.506462545,41.696463512],[-71.506790545,41.696420512],[-71.506904545,41.696404512],[-71.507347545,41.696345512],[-71.507721545,41.696292512],[-71.507942546,41.696273512],[-71.508263545,41.696253512],[-71.508606546,41.696236512],[-71.509148546,41.696211512],[-71.511216547,41.696112511],[-71.511574547,41.696095512],[-71.511742547,41.696096512],[-71.512184547,41.696082512],[-71.512558547,41.696078512],[-71.513443548,41.696059512],[-71.514252547,41.696054511],[-71.514544548,41.696051511],[-71.514712548,41.696050512],[-71.514977548,41.696048512],[-71.515419548,41.696047512],[-71.515434548,41.695650512],[-71.515473548,41.694870511],[-71.515511548,41.693937511],[-71.515518548,41.693789511],[-71.515526548,41.693284511],[-71.515511548,41.692938511],[-71.515480548,41.692641511],[-71.515465548,41.692362511],[-71.515427548,41.692075511],[-71.515396548,41.691706511],[-71.515358547,41.691171511],[-71.515350548,41.690919511],[-71.515350548,41.69077151],[-71.515328548,41.690677511],[-71.515289548,41.69061051],[-71.515190548,41.690504511],[-71.515115548,41.69042151],[-71.514923548,41.69024051],[-71.514862548,41.69014251],[-71.514824548,41.69005351],[-71.514801547,41.689923511],[-71.514771548,41.68956851],[-71.514717547,41.68910951],[-71.514709548,41.68870051],[-71.514679547,41.68844851],[-71.515167547,41.68841551],[-71.515602548,41.68838851],[-71.516281548,41.68835951],[-71.517220548,41.68831251],[-71.517735549,41.68828251],[-71.517868549,41.68827551],[-71.518356549,41.68823351],[-71.518913549,41.68818051],[-71.518944549,41.68817551],[-71.519028549,41.68816451],[-71.519142548,41.68811651],[-71.519295549,41.68805051],[-71.519501549,41.68798751],[-71.520218549,41.68797151],[-71.520233549,41.68807951],[-71.520790549,41.68804451],[-71.52120255,41.68801751],[-71.52127855,41.68801551],[-71.52239355,41.68791451],[-71.52253055,41.68754251],[-71.52258355,41.68737051],[-71.52298855,41.687357509],[-71.52340755,41.68732051],[-71.523857551,41.68728351],[-71.52412455,41.687278509],[-71.52429255,41.68728751],[-71.52433055,41.68728751],[-71.52503255,41.687339509],[-71.525604551,41.68738051],[-71.526039551,41.68740751],[-71.526459551,41.687415509],[-71.526768551,41.68742451],[-71.526951551,41.68743051],[-71.527639552,41.68744051],[-71.528236552,41.68744451],[-71.528602552,41.68744551],[-71.529037552,41.68744951],[-71.529450552,41.68744951],[-71.529594552,41.68745051],[-71.529656552,41.687453509],[-71.529907552,41.68750251],[-71.530479552,41.68760651],[-71.530708552,41.68765551],[-71.530777553,41.687672509],[-71.531364553,41.687785509],[-71.531563553,41.68781251],[-71.532059553,41.68791451],[-71.532265554,41.68796851],[-71.532486553,41.68803551],[-71.532532553,41.68850251],[-71.532809554,41.688505509],[-71.532793553,41.68701751],[-71.532828554,41.68682251],[-71.532764553,41.686193509],[-71.532691553,41.685530509],[-71.532696553,41.685378509],[-71.532700553,41.685008509],[-71.532636553,41.684528509],[-71.532639553,41.684384509],[-71.532683553,41.682751508],[-71.532607553,41.681825508],[-71.532616553,41.681616509],[-71.532707553,41.680438508],[-71.532717553,41.680294508],[-71.532740553,41.680263508],[-71.532768553,41.680242508],[-71.532638552,41.679834508],[-71.532632553,41.679814508],[-71.532516553,41.675772507],[-71.532466552,41.674686507],[-71.532430552,41.673895507],[-71.532406552,41.673349507],[-71.532406552,41.672499506],[-71.532406552,41.671991506],[-71.532242552,41.671946507],[-71.532181552,41.671992506],[-71.532005552,41.671924507],[-71.531838552,41.671847507],[-71.531700552,41.671773506],[-71.531517552,41.671732506],[-71.531372552,41.671713506],[-71.531105552,41.671669507],[-71.530884551,41.671643506],[-71.530716552,41.671633507],[-71.530464552,41.671620506],[-71.530044551,41.671612507],[-71.529732551,41.671614507],[-71.529411551,41.671612507],[-71.529281552,41.671615506],[-71.529083551,41.671619506],[-71.528763551,41.671622506],[-71.528549551,41.671613507],[-71.528244551,41.671606507],[-71.527870551,41.671615506],[-71.527580551,41.671625507],[-71.527328551,41.671631507],[-71.527130551,41.671649507],[-71.52697055,41.671675506],[-71.526802551,41.671697506],[-71.52668055,41.671704507],[-71.52626155,41.671713506],[-71.52613855,41.671711507],[-71.52579555,41.671714506],[-71.52561255,41.671714506],[-71.52531455,41.671716506],[-71.52496355,41.671714506],[-71.52449355,41.671725507],[-71.524506549,41.671801507],[-71.52457455,41.671849506],[-71.52465855,41.671897507],[-71.524719549,41.671940507],[-71.52477355,41.671989506],[-71.52482655,41.672046506],[-71.52487955,41.672095507],[-71.52494155,41.672156507],[-71.52502555,41.672204506],[-71.52508555,41.672221506],[-71.52516255,41.672214507],[-71.52526155,41.672217507],[-71.52535355,41.672251507],[-71.52539855,41.672295507],[-71.52545255,41.672343507],[-71.52549755,41.672410507],[-71.52552055,41.672472507],[-71.52554355,41.672526507],[-71.52559755,41.672561507],[-71.525673551,41.672572506],[-71.52574955,41.672575507],[-71.52578755,41.672579507],[-71.52579555,41.672610506],[-71.52584155,41.672735507],[-71.52584155,41.672888507],[-71.525848551,41.672938507],[-71.52587955,41.673014507],[-71.52591055,41.673063507],[-71.52595555,41.673129507],[-71.525963551,41.673201507],[-71.52595555,41.673255507],[-71.52589455,41.673306507],[-71.52585655,41.673356507],[-71.52585655,41.673415507],[-71.52587955,41.673478507],[-71.52589455,41.673540507],[-71.52590255,41.673594507],[-71.52590255,41.673653507],[-71.52591755,41.673711507],[-71.52594055,41.673769507],[-71.52594055,41.673827507],[-71.52590255,41.673887507],[-71.52585655,41.673933507],[-71.525848551,41.673987507],[-71.525848551,41.674041507],[-71.525826551,41.674105507],[-71.52578055,41.674160507],[-71.525749551,41.674196507],[-71.525810551,41.674312507],[-71.52583355,41.674375507],[-71.52587155,41.674437507],[-71.52590255,41.674504507],[-71.52587955,41.674572507],[-71.52584155,41.674631507],[-71.525826551,41.674699507],[-71.52581855,41.674753508],[-71.525864551,41.674788507],[-71.52603255,41.674803507],[-71.52610855,41.674814507],[-71.526199551,41.674835507],[-71.526276551,41.674874507],[-71.52632855,41.674915507],[-71.526314551,41.675013507],[-71.52629855,41.675067507],[-71.52629955,41.675139507],[-71.52629955,41.675288507],[-71.526291551,41.675346507],[-71.52626855,41.675401507],[-71.52626855,41.675459507],[-71.526276551,41.675531508],[-71.526314551,41.675607508],[-71.526329551,41.675679507],[-71.526352551,41.675732507],[-71.526375551,41.675795507],[-71.526405551,41.675853507],[-71.52657355,41.676146507],[-71.526604551,41.676195508],[-71.52665055,41.676253508],[-71.52668855,41.676297507],[-71.526726551,41.676354507],[-71.526756551,41.676408508],[-71.526817551,41.676447508],[-71.526832551,41.676474507],[-71.527048551,41.676598508],[-71.527174551,41.676528508],[-71.527321551,41.676449508],[-71.527397551,41.676425508],[-71.52752755,41.676413507],[-71.527588551,41.676417507],[-71.527733551,41.676445508],[-71.527916551,41.676513507],[-71.528107551,41.676567508],[-71.528389551,41.676633507],[-71.528259551,41.676920507],[-71.528136551,41.677183508],[-71.527985551,41.677507507],[-71.527908551,41.677675508],[-71.527832551,41.677843508],[-71.527656551,41.678248507],[-71.527481551,41.678594508],[-71.527260551,41.678977508],[-71.527146551,41.679182508],[-71.526878551,41.679679508],[-71.526504551,41.680439508],[-71.526375551,41.680703508],[-71.526291551,41.680917508],[-71.526199551,41.681166509],[-71.526115551,41.681398509],[-71.525917551,41.681740508],[-71.52577255,41.682013508],[-71.525650551,41.682268508],[-71.52559655,41.682373509],[-71.525535551,41.682464509],[-71.52544455,41.682619509],[-71.525299551,41.682807509],[-71.525162551,41.682972509],[-71.52493355,41.683193509],[-71.52465155,41.683420509],[-71.524406551,41.683615509],[-71.52412455,41.683837509],[-71.524094551,41.683865509],[-71.52390355,41.684036509],[-71.52382755,41.684136509],[-71.52365955,41.684221509],[-71.52357555,41.684246509],[-71.52352955,41.684265509],[-71.52331555,41.684332509],[-71.52326255,41.684351509],[-71.52314055,41.684377509],[-71.52298055,41.684403509],[-71.52278155,41.684416509],[-71.522575549,41.684425509],[-71.52249155,41.684431509],[-71.52240855,41.684438509],[-71.52220155,41.684447509],[-71.52188955,41.684458509],[-71.521507549,41.684480509],[-71.52112655,41.68448451],[-71.520706549,41.684493509],[-71.520371549,41.684496509],[-71.520066549,41.684512509],[-71.519668548,41.684511509],[-71.519585549,41.684513509],[-71.519386549,41.684518509],[-71.518944549,41.684536509],[-71.518761549,41.684545509],[-71.518715548,41.684546509],[-71.518509548,41.684550509],[-71.518272548,41.68456051],[-71.518150548,41.68456351],[-71.517914548,41.684572509],[-71.517830548,41.68457951],[-71.517639549,41.684587509],[-71.517601548,41.684584509],[-71.517120548,41.684603509],[-71.516953548,41.684611509],[-71.516617548,41.684632509],[-71.516281548,41.68464051],[-71.516083547,41.684644509],[-71.515846547,41.684649509],[-71.515274548,41.68468051],[-71.514694548,41.684701509],[-71.514206547,41.68471751],[-71.514084547,41.684724509],[-71.513779546,41.68473551],[-71.513542547,41.684745509],[-71.513283547,41.68475551],[-71.512984546,41.684767509],[-71.512855547,41.68477351],[-71.512428547,41.68479251],[-71.512100547,41.684799509],[-71.511658546,41.68481351],[-71.511094546,41.68481651],[-71.510719546,41.68480651],[-71.510605546,41.684804509],[-71.510552546,41.68480651],[-71.510246546,41.684803509],[-71.509895546,41.684802509],[-71.509598546,41.68481351],[-71.509437545,41.684821509],[-71.508888545,41.684837509],[-71.507454545,41.68488251],[-71.507240545,41.68488251],[-71.507157545,41.68488451],[-71.506393544,41.684896509],[-71.505798545,41.68490051],[-71.505745544,41.68490151],[-71.505081544,41.68490751],[-71.504683544,41.68491251],[-71.504555543,41.68491451],[-71.504195544,41.68492251],[-71.504112544,41.68492451],[-71.503845544,41.68493451],[-71.503647544,41.68494351],[-71.503505543,41.68494651],[-71.503304544,41.68495051],[-71.502739544,41.68497651],[-71.502182543,41.68500651],[-71.502144543,41.68500751],[-71.501595543,41.68500551],[-71.500793542,41.68502351]]]]}}"}, +{"type": "precinct", "typeId": 3808, "areaId": 26061, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":400,\"NAME\":\"3808\",\"SHAPE_Length\":0.09532181545149,\"SHAPE_Area\":-0.00027491068905404},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.523726549,41.662405505],[-71.523118549,41.662636505],[-71.522568549,41.662846505],[-71.522057548,41.663042505],[-71.520973548,41.663453505],[-71.519577548,41.663984505],[-71.517357547,41.664834505],[-71.516907547,41.664992505],[-71.516464547,41.665151506],[-71.516014547,41.665305506],[-71.515511547,41.665455505],[-71.515007546,41.665601506],[-71.514496546,41.665730506],[-71.514580546,41.666232506],[-71.515167546,41.668205506],[-71.515442546,41.669073507],[-71.516939469,41.670603509],[-71.518075662,41.67116863],[-71.520172549,41.671964507],[-71.520126548,41.672005506],[-71.520058548,41.672061507],[-71.520012548,41.672116507],[-71.519918549,41.672215507],[-71.519852548,41.672286507],[-71.519753548,41.672401507],[-71.519546548,41.672621507],[-71.519379548,41.672805507],[-71.519203548,41.672985507],[-71.519074548,41.673096507],[-71.518990548,41.673151507],[-71.518906548,41.673189507],[-71.518799548,41.673219507],[-71.518486548,41.673275507],[-71.518341548,41.673296507],[-71.518158548,41.673318507],[-71.518043548,41.673312507],[-71.517792548,41.673313507],[-71.517448547,41.673320507],[-71.517136547,41.673336507],[-71.516640547,41.673352507],[-71.516151547,41.673376507],[-71.515617547,41.673387508],[-71.515038547,41.673387508],[-71.514954546,41.673388508],[-71.514542546,41.673388508],[-71.513733546,41.673424508],[-71.513313546,41.673438507],[-71.512924546,41.673460507],[-71.512451546,41.673479507],[-71.511955546,41.673508507],[-71.511902546,41.673509507],[-71.511551546,41.673530507],[-71.511307545,41.673540508],[-71.511024546,41.673546507],[-71.511032545,41.673762507],[-71.511055545,41.674037507],[-71.511078545,41.674113507],[-71.511169545,41.674214507],[-71.511235546,41.674241508],[-71.511314546,41.674274507],[-71.511635545,41.674398508],[-71.511909545,41.674495508],[-71.511986545,41.674521507],[-71.512077546,41.674636508],[-71.512116546,41.674720507],[-71.512192546,41.674782508],[-71.512398546,41.674903508],[-71.512848546,41.675150507],[-71.513199546,41.675350508],[-71.513298546,41.675442507],[-71.513428546,41.675543508],[-71.513405547,41.675678508],[-71.513405547,41.675872508],[-71.513412546,41.676147508],[-71.513413546,41.676507508],[-71.513420546,41.676822508],[-71.513428546,41.677092508],[-71.513397546,41.677192508],[-71.513306547,41.677338508],[-71.513206546,41.677538508],[-71.513168546,41.677633508],[-71.513161546,41.677688508],[-71.513176546,41.677737509],[-71.513206546,41.677799508],[-71.513283546,41.677865508],[-71.513481547,41.677987508],[-71.513664546,41.678109508],[-71.513741546,41.678175508],[-71.513771547,41.678228508],[-71.513794547,41.678313508],[-71.513832547,41.678474508],[-71.513901546,41.678860508],[-71.513946547,41.679053508],[-71.514015546,41.679412509],[-71.514092546,41.679833508],[-71.514374547,41.679809508],[-71.514740547,41.679765509],[-71.515152547,41.679720509],[-71.515571548,41.679670508],[-71.516045547,41.679606509],[-71.516334547,41.679568509],[-71.516602548,41.679544508],[-71.516762547,41.679518508],[-71.516907548,41.679510509],[-71.517029548,41.679494508],[-71.517204548,41.679481508],[-71.517519548,41.679453509],[-71.517601547,41.679446508],[-71.517921548,41.679416508],[-71.518059548,41.679400508],[-71.518135548,41.679398508],[-71.518196548,41.679410509],[-71.518234548,41.679427508],[-71.518265548,41.679458508],[-71.518303548,41.679606509],[-71.518341549,41.679871508],[-71.518364548,41.680073509],[-71.518387548,41.680217508],[-71.518448548,41.680548508],[-71.518463548,41.680706508],[-71.518517548,41.681047509],[-71.518539548,41.681285509],[-71.518555549,41.681505508],[-71.518562548,41.681685509],[-71.518562548,41.681834508],[-71.518539548,41.681924509],[-71.518486548,41.682079509],[-71.518433548,41.682246509],[-71.518379549,41.682446509],[-71.518310548,41.682578509],[-71.518285548,41.682634509],[-71.518242549,41.682728509],[-71.518127548,41.682902509],[-71.518036548,41.683043509],[-71.518005548,41.683089509],[-71.517937548,41.683194509],[-71.517876548,41.683317509],[-71.517838548,41.683457509],[-71.517792548,41.683589509],[-71.517784548,41.683702509],[-71.517777548,41.683868509],[-71.517792548,41.684030509],[-71.517807548,41.68425051],[-71.517815548,41.684336509],[-71.517830548,41.68457951],[-71.517914548,41.684572509],[-71.518150548,41.68456351],[-71.518272548,41.68456051],[-71.518509548,41.684550509],[-71.518715548,41.684546509],[-71.518761549,41.684545509],[-71.518944549,41.684536509],[-71.519386549,41.684518509],[-71.519585549,41.684513509],[-71.519668548,41.684511509],[-71.520066549,41.684512509],[-71.520371549,41.684496509],[-71.520706549,41.684493509],[-71.52112655,41.68448451],[-71.521507549,41.684480509],[-71.52188955,41.684458509],[-71.52220155,41.684447509],[-71.52240855,41.684438509],[-71.52249155,41.684431509],[-71.522575549,41.684425509],[-71.52278155,41.684416509],[-71.52298055,41.684403509],[-71.52314055,41.684377509],[-71.52326255,41.684351509],[-71.52331555,41.684332509],[-71.52352955,41.684265509],[-71.52357555,41.684246509],[-71.52365955,41.684221509],[-71.52382755,41.684136509],[-71.52390355,41.684036509],[-71.524094551,41.683865509],[-71.52412455,41.683837509],[-71.524406551,41.683615509],[-71.52465155,41.683420509],[-71.52493355,41.683193509],[-71.525162551,41.682972509],[-71.525299551,41.682807509],[-71.52544455,41.682619509],[-71.525535551,41.682464509],[-71.52559655,41.682373509],[-71.525650551,41.682268508],[-71.52577255,41.682013508],[-71.525917551,41.681740508],[-71.526115551,41.681398509],[-71.526199551,41.681166509],[-71.526291551,41.680917508],[-71.526375551,41.680703508],[-71.526504551,41.680439508],[-71.526878551,41.679679508],[-71.527146551,41.679182508],[-71.527260551,41.678977508],[-71.527481551,41.678594508],[-71.527656551,41.678248507],[-71.527832551,41.677843508],[-71.527908551,41.677675508],[-71.527985551,41.677507507],[-71.528136551,41.677183508],[-71.528259551,41.676920507],[-71.528389551,41.676633507],[-71.528107551,41.676567508],[-71.527916551,41.676513507],[-71.527733551,41.676445508],[-71.527588551,41.676417507],[-71.52752755,41.676413507],[-71.527397551,41.676425508],[-71.527321551,41.676449508],[-71.527174551,41.676528508],[-71.527048551,41.676598508],[-71.526832551,41.676474507],[-71.526817551,41.676447508],[-71.526756551,41.676408508],[-71.526726551,41.676354507],[-71.52668855,41.676297507],[-71.52665055,41.676253508],[-71.526604551,41.676195508],[-71.52657355,41.676146507],[-71.526405551,41.675853507],[-71.526375551,41.675795507],[-71.526352551,41.675732507],[-71.526329551,41.675679507],[-71.526314551,41.675607508],[-71.526276551,41.675531508],[-71.52626855,41.675459507],[-71.52626855,41.675401507],[-71.526291551,41.675346507],[-71.52629955,41.675288507],[-71.52629955,41.675139507],[-71.52629855,41.675067507],[-71.526314551,41.675013507],[-71.52632855,41.674915507],[-71.526276551,41.674874507],[-71.526199551,41.674835507],[-71.52610855,41.674814507],[-71.52603255,41.674803507],[-71.525864551,41.674788507],[-71.52581855,41.674753508],[-71.525826551,41.674699507],[-71.52584155,41.674631507],[-71.52587955,41.674572507],[-71.52590255,41.674504507],[-71.52587155,41.674437507],[-71.52583355,41.674375507],[-71.525810551,41.674312507],[-71.525749551,41.674196507],[-71.52578055,41.674160507],[-71.525826551,41.674105507],[-71.525848551,41.674041507],[-71.525848551,41.673987507],[-71.52585655,41.673933507],[-71.52590255,41.673887507],[-71.52594055,41.673827507],[-71.52594055,41.673769507],[-71.52591755,41.673711507],[-71.52590255,41.673653507],[-71.52590255,41.673594507],[-71.52589455,41.673540507],[-71.52587955,41.673478507],[-71.52585655,41.673415507],[-71.52585655,41.673356507],[-71.52589455,41.673306507],[-71.52595555,41.673255507],[-71.525963551,41.673201507],[-71.52595555,41.673129507],[-71.52591055,41.673063507],[-71.52587955,41.673014507],[-71.525848551,41.672938507],[-71.52584155,41.672888507],[-71.52584155,41.672735507],[-71.52579555,41.672610506],[-71.52578755,41.672579507],[-71.52574955,41.672575507],[-71.525673551,41.672572506],[-71.52559755,41.672561507],[-71.52554355,41.672526507],[-71.52552055,41.672472507],[-71.52549755,41.672410507],[-71.52545255,41.672343507],[-71.52539855,41.672295507],[-71.52535355,41.672251507],[-71.52526155,41.672217507],[-71.52516255,41.672214507],[-71.52508555,41.672221506],[-71.52502555,41.672204506],[-71.52494155,41.672156507],[-71.52487955,41.672095507],[-71.52482655,41.672046506],[-71.52477355,41.671989506],[-71.524719549,41.671940507],[-71.52465855,41.671897507],[-71.52457455,41.671849506],[-71.524506549,41.671801507],[-71.52449355,41.671725507],[-71.52496355,41.671714506],[-71.52531455,41.671716506],[-71.52561255,41.671714506],[-71.52579555,41.671714506],[-71.52613855,41.671711507],[-71.52626155,41.671713506],[-71.52668055,41.671704507],[-71.526802551,41.671697506],[-71.52697055,41.671675506],[-71.527130551,41.671649507],[-71.527328551,41.671631507],[-71.527580551,41.671625507],[-71.527870551,41.671615506],[-71.528244551,41.671606507],[-71.528549551,41.671613507],[-71.528763551,41.671622506],[-71.529083551,41.671619506],[-71.529281552,41.671615506],[-71.529411551,41.671612507],[-71.529732551,41.671614507],[-71.530044551,41.671612507],[-71.530464552,41.671620506],[-71.530716552,41.671633507],[-71.530884551,41.671643506],[-71.531105552,41.671669507],[-71.531372552,41.671713506],[-71.531517552,41.671732506],[-71.531700552,41.671773506],[-71.531838552,41.671847507],[-71.532005552,41.671924507],[-71.532181552,41.671992506],[-71.532242552,41.671946507],[-71.532406552,41.671806507],[-71.532410552,41.670218506],[-71.532408552,41.669300506],[-71.532408552,41.668032505],[-71.532409552,41.667272505],[-71.532386552,41.666917505],[-71.532380552,41.666565505],[-71.532376552,41.666340505],[-71.532374552,41.666224505],[-71.532371552,41.665747505],[-71.532345551,41.664382505],[-71.532326551,41.663722505],[-71.532310552,41.662515504],[-71.532306551,41.662283505],[-71.530556551,41.662301505],[-71.529274551,41.662316504],[-71.52726855,41.662310505],[-71.52654255,41.662308505],[-71.526104549,41.662309505],[-71.52475655,41.662366505],[-71.524317549,41.662382505],[-71.523810549,41.662407505],[-71.523731549,41.662405505],[-71.523726549,41.662405505]]]]}}"}, +{"type": "precinct", "typeId": 3809, "areaId": 26062, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":401,\"NAME\":\"3809\",\"SHAPE_Length\":0.11028803702993,\"SHAPE_Area\":-0.0003655433033503},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.499473541,41.666517506],[-71.499481542,41.666656507],[-71.499481542,41.666728506],[-71.499512541,41.667286506],[-71.499532541,41.667445506],[-71.499581541,41.667820507],[-71.499611541,41.668824507],[-71.499672542,41.669876507],[-71.499702541,41.671087508],[-71.499718541,41.671343507],[-71.499740541,41.671572508],[-71.499832542,41.672885507],[-71.499901542,41.673775508],[-71.499939542,41.674252508],[-71.499985542,41.674877508],[-71.499985542,41.674958508],[-71.500023542,41.675574508],[-71.500053542,41.676699509],[-71.500069542,41.676996509],[-71.500077542,41.677347509],[-71.500076542,41.677397508],[-71.500076542,41.677433508],[-71.500091542,41.677730509],[-71.500122542,41.678814508],[-71.500458543,41.682207509],[-71.500695542,41.68410651],[-71.500702543,41.68421951],[-71.500702543,41.68425051],[-71.500710543,41.68434051],[-71.500740543,41.684623509],[-71.500763543,41.68481651],[-71.500793542,41.68502351],[-71.501595543,41.68500551],[-71.502144543,41.68500751],[-71.502182543,41.68500651],[-71.502739544,41.68497651],[-71.503304544,41.68495051],[-71.503505543,41.68494651],[-71.503647544,41.68494351],[-71.503845544,41.68493451],[-71.504112544,41.68492451],[-71.504195544,41.68492251],[-71.504555543,41.68491451],[-71.504683544,41.68491251],[-71.505081544,41.68490751],[-71.505745544,41.68490151],[-71.505798545,41.68490051],[-71.506393544,41.684896509],[-71.507157545,41.68488451],[-71.507240545,41.68488251],[-71.507454545,41.68488251],[-71.508888545,41.684837509],[-71.509437545,41.684821509],[-71.509598546,41.68481351],[-71.509895546,41.684802509],[-71.510246546,41.684803509],[-71.510552546,41.68480651],[-71.510605546,41.684804509],[-71.510719546,41.68480651],[-71.511094546,41.68481651],[-71.511658546,41.68481351],[-71.512100547,41.684799509],[-71.512428547,41.68479251],[-71.512855547,41.68477351],[-71.512984546,41.684767509],[-71.513283547,41.68475551],[-71.513542547,41.684745509],[-71.513779546,41.68473551],[-71.514084547,41.684724509],[-71.514206547,41.68471751],[-71.514694548,41.684701509],[-71.515274548,41.68468051],[-71.515846547,41.684649509],[-71.516083547,41.684644509],[-71.516281548,41.68464051],[-71.516617548,41.684632509],[-71.516953548,41.684611509],[-71.517120548,41.684603509],[-71.517601548,41.684584509],[-71.517639549,41.684587509],[-71.517830548,41.68457951],[-71.517815548,41.684336509],[-71.517807548,41.68425051],[-71.517792548,41.684030509],[-71.517777548,41.683868509],[-71.517784548,41.683702509],[-71.517792548,41.683589509],[-71.517838548,41.683457509],[-71.517876548,41.683317509],[-71.517937548,41.683194509],[-71.518005548,41.683089509],[-71.518036548,41.683043509],[-71.518127548,41.682902509],[-71.518242549,41.682728509],[-71.518285548,41.682634509],[-71.518310548,41.682578509],[-71.518379549,41.682446509],[-71.518433548,41.682246509],[-71.518486548,41.682079509],[-71.518539548,41.681924509],[-71.518562548,41.681834508],[-71.518562548,41.681685509],[-71.518555549,41.681505508],[-71.518539548,41.681285509],[-71.518517548,41.681047509],[-71.518463548,41.680706508],[-71.518448548,41.680548508],[-71.518387548,41.680217508],[-71.518364548,41.680073509],[-71.518341549,41.679871508],[-71.518303548,41.679606509],[-71.518265548,41.679458508],[-71.518234548,41.679427508],[-71.518196548,41.679410509],[-71.518135548,41.679398508],[-71.518059548,41.679400508],[-71.517921548,41.679416508],[-71.517601547,41.679446508],[-71.517519548,41.679453509],[-71.517204548,41.679481508],[-71.517029548,41.679494508],[-71.516907548,41.679510509],[-71.516762547,41.679518508],[-71.516602548,41.679544508],[-71.516334547,41.679568509],[-71.516045547,41.679606509],[-71.515571548,41.679670508],[-71.515152547,41.679720509],[-71.514740547,41.679765509],[-71.514374547,41.679809508],[-71.514092546,41.679833508],[-71.514015546,41.679412509],[-71.513946547,41.679053508],[-71.513901546,41.678860508],[-71.513832547,41.678474508],[-71.513794547,41.678313508],[-71.513771547,41.678228508],[-71.513741546,41.678175508],[-71.513664546,41.678109508],[-71.513481547,41.677987508],[-71.513283546,41.677865508],[-71.513206546,41.677799508],[-71.513176546,41.677737509],[-71.513161546,41.677688508],[-71.513168546,41.677633508],[-71.513206546,41.677538508],[-71.513306547,41.677338508],[-71.513397546,41.677192508],[-71.513428546,41.677092508],[-71.513420546,41.676822508],[-71.513413546,41.676507508],[-71.513412546,41.676147508],[-71.513405547,41.675872508],[-71.513405547,41.675678508],[-71.513428546,41.675543508],[-71.513298546,41.675442507],[-71.513199546,41.675350508],[-71.512848546,41.675150507],[-71.512398546,41.674903508],[-71.512192546,41.674782508],[-71.512116546,41.674720507],[-71.512077546,41.674636508],[-71.511986545,41.674521507],[-71.511909545,41.674495508],[-71.511635545,41.674398508],[-71.511314546,41.674274507],[-71.511235546,41.674241508],[-71.511169545,41.674214507],[-71.511078545,41.674113507],[-71.511055545,41.674037507],[-71.511032545,41.673762507],[-71.511024546,41.673546507],[-71.511307545,41.673540508],[-71.511551546,41.673530507],[-71.511902546,41.673509507],[-71.511955546,41.673508507],[-71.512451546,41.673479507],[-71.512924546,41.673460507],[-71.513313546,41.673438507],[-71.513733546,41.673424508],[-71.514542546,41.673388508],[-71.514954546,41.673388508],[-71.515038547,41.673387508],[-71.515617547,41.673387508],[-71.516151547,41.673376507],[-71.516640547,41.673352507],[-71.517136547,41.673336507],[-71.517448547,41.673320507],[-71.517792548,41.673313507],[-71.518043548,41.673312507],[-71.518158548,41.673318507],[-71.518341548,41.673296507],[-71.518486548,41.673275507],[-71.518799548,41.673219507],[-71.518906548,41.673189507],[-71.518990548,41.673151507],[-71.519074548,41.673096507],[-71.519203548,41.672985507],[-71.519379548,41.672805507],[-71.519546548,41.672621507],[-71.519753548,41.672401507],[-71.519852548,41.672286507],[-71.519918549,41.672215507],[-71.520012548,41.672116507],[-71.520058548,41.672061507],[-71.520126548,41.672005506],[-71.520172549,41.671964507],[-71.518075662,41.67116863],[-71.516939469,41.670603509],[-71.515442546,41.669073507],[-71.515167546,41.668205506],[-71.514580546,41.666232506],[-71.514496546,41.665730506],[-71.515007546,41.665601506],[-71.515511547,41.665455505],[-71.516014547,41.665305506],[-71.516464547,41.665151506],[-71.516907547,41.664992505],[-71.517357547,41.664834505],[-71.519577548,41.663984505],[-71.520973548,41.663453505],[-71.522057548,41.663042505],[-71.522568549,41.662846505],[-71.523118549,41.662636505],[-71.523726549,41.662405505],[-71.523269549,41.662415505],[-71.513100545,41.662517505],[-71.512333546,41.662545506],[-71.510734545,41.662531505],[-71.509648544,41.662522506],[-71.509387545,41.662519505],[-71.509358544,41.662518505],[-71.507594544,41.662707505],[-71.506775544,41.662725505],[-71.501411542,41.662835506],[-71.499359541,41.662906506],[-71.499224541,41.662902505],[-71.499226541,41.662976505],[-71.499237541,41.663374506],[-71.499252541,41.663653506],[-71.499260541,41.663761506],[-71.499275541,41.663869506],[-71.499283541,41.663981506],[-71.499313541,41.664174506],[-71.499321541,41.664269506],[-71.499321541,41.664354506],[-71.499306541,41.664390506],[-71.499283541,41.664413506],[-71.499260541,41.664432506],[-71.499230541,41.664451506],[-71.499199541,41.664465506],[-71.499123541,41.664484506],[-71.499100541,41.664498506],[-71.499054541,41.664517506],[-71.499031541,41.664531506],[-71.499016541,41.664550506],[-71.498970541,41.664587506],[-71.498932541,41.664615506],[-71.499145541,41.665011506],[-71.499230541,41.665189506],[-71.499298541,41.665345506],[-71.499321541,41.665417506],[-71.499367541,41.665551506],[-71.499382541,41.665641506],[-71.499405542,41.665735506],[-71.499428541,41.665865506],[-71.499435541,41.665995507],[-71.499451541,41.666130507],[-71.499455541,41.666224506],[-71.499466541,41.666445507],[-71.499473541,41.666517506]]]]}}"}, +{"type": "precinct", "typeId": 3810, "areaId": 26054, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":393,\"NAME\":\"3810\",\"SHAPE_Length\":0.072407139626482,\"SHAPE_Area\":-0.00017223231313592},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.52040155,41.707101514],[-71.52047755,41.707117514],[-71.52053755,41.707128513],[-71.520660551,41.707149513],[-71.52076055,41.707187513],[-71.52088255,41.707243514],[-71.52107355,41.707343513],[-71.521225551,41.707452514],[-71.52134755,41.707535514],[-71.52140855,41.707588514],[-71.52144655,41.707636513],[-71.52146255,41.707658513],[-71.52148455,41.707761514],[-71.52150755,41.707883514],[-71.52152355,41.707999514],[-71.521591551,41.708043514],[-71.521644551,41.708060514],[-71.521675551,41.708064513],[-71.521706551,41.708061514],[-71.521652551,41.707699514],[-71.521607551,41.707160514],[-71.521576551,41.706733514],[-71.521591551,41.706548513],[-71.52159955,41.706255513],[-71.52162255,41.705939513],[-71.52168355,41.705614513],[-71.52172155,41.705343513],[-71.52175955,41.705130513],[-71.52183555,41.704849513],[-71.521927551,41.704474513],[-71.52208755,41.703979513],[-71.522179551,41.703734512],[-71.522278551,41.703493513],[-71.52240055,41.703274513],[-71.522507551,41.703096513],[-71.522705551,41.702790513],[-71.52296455,41.702469512],[-71.523216551,41.702176512],[-71.523388551,41.702011513],[-71.523460551,41.701941512],[-71.524498551,41.701143512],[-71.524575551,41.701088512],[-71.525122552,41.700700512],[-71.525276552,41.700590512],[-71.525917552,41.700139512],[-71.526672552,41.699592512],[-71.527153552,41.699250512],[-71.527330552,41.699124512],[-71.527653552,41.698895512],[-71.528262553,41.698465512],[-71.528267553,41.698462512],[-71.528351552,41.698403512],[-71.528786553,41.698100511],[-71.529323552,41.697719512],[-71.529602553,41.697523512],[-71.530281553,41.697035511],[-71.530366553,41.696973511],[-71.530991553,41.696511511],[-71.531674553,41.696035511],[-71.531738554,41.695990511],[-71.531929554,41.695882511],[-71.532196553,41.695737511],[-71.532501553,41.695586511],[-71.532822554,41.695444511],[-71.533006554,41.695376511],[-71.533010553,41.695155511],[-71.532990553,41.692851511],[-71.532997554,41.692012511],[-71.533000554,41.69200751],[-71.532908554,41.69106251],[-71.532900553,41.69013351],[-71.532900553,41.69012151],[-71.532809554,41.688505509],[-71.532532553,41.68850251],[-71.532486553,41.68803551],[-71.532265554,41.68796851],[-71.532059553,41.68791451],[-71.531563553,41.68781251],[-71.531364553,41.687785509],[-71.530777553,41.687672509],[-71.530708552,41.68765551],[-71.530479552,41.68760651],[-71.529907552,41.68750251],[-71.529656552,41.687453509],[-71.529594552,41.68745051],[-71.529450552,41.68744951],[-71.529037552,41.68744951],[-71.528602552,41.68744551],[-71.528236552,41.68744451],[-71.527639552,41.68744051],[-71.526951551,41.68743051],[-71.526768551,41.68742451],[-71.526787551,41.68744951],[-71.526802552,41.68748951],[-71.526817551,41.68751651],[-71.526840552,41.68757851],[-71.526878552,41.68764051],[-71.526901552,41.68769851],[-71.526924551,41.687765509],[-71.526939552,41.68782851],[-71.526947551,41.68789151],[-71.526947551,41.68803151],[-71.526939552,41.688094509],[-71.526924551,41.68814851],[-71.526916552,41.68820751],[-71.526901552,41.68833851],[-71.526886551,41.688406509],[-71.526863552,41.68846951],[-71.526840552,41.68854251],[-71.526825551,41.68861951],[-71.526810551,41.68868751],[-71.526764552,41.68882351],[-71.526764552,41.68896751],[-71.526756551,41.68901651],[-71.526726552,41.68914351],[-71.526726552,41.68919751],[-71.526764552,41.68926851],[-71.526787551,41.68932651],[-71.526787551,41.68951151],[-71.526772551,41.68957951],[-71.526741552,41.68963451],[-71.526718551,41.68969751],[-71.526680551,41.68975251],[-71.526619551,41.68978951],[-71.526527552,41.68981451],[-71.526428551,41.68983451],[-71.526337551,41.68984551],[-71.526253551,41.68986151],[-71.526161552,41.68988151],[-71.526085551,41.68989651],[-71.526009551,41.68991551],[-71.525940551,41.68994451],[-71.525802551,41.69001951],[-71.525734551,41.69006151],[-71.525688551,41.69011251],[-71.525642551,41.69015851],[-71.525604551,41.69022251],[-71.525528551,41.69036751],[-71.525505551,41.69041751],[-71.525474551,41.690472511],[-71.525444551,41.69051351],[-71.525398551,41.69057751],[-71.525383551,41.69063251],[-71.525360551,41.69069151],[-71.525299551,41.69083651],[-71.525261551,41.69090951],[-71.525246551,41.69098651],[-71.525246551,41.69111751],[-71.525238551,41.69118451],[-71.525276551,41.691233511],[-71.525330551,41.691272511],[-71.525383551,41.69131651],[-71.525436551,41.69137451],[-71.525482551,41.691427511],[-71.525520551,41.69147551],[-71.525619551,41.69158651],[-71.525665551,41.69163051],[-71.525719551,41.691696511],[-71.525734551,41.691754511],[-71.525764551,41.691812511],[-71.525841551,41.69184651],[-71.525848552,41.69190051],[-71.525825551,41.691968511],[-71.525787551,41.692023511],[-71.525726551,41.69207951],[-71.525597551,41.69217651],[-71.525528551,41.692223511],[-71.525452551,41.69225151],[-71.525445551,41.69225151],[-71.525360551,41.69225351],[-71.525253551,41.692247511],[-71.525169551,41.69223051],[-71.525093551,41.69221051],[-71.525017551,41.692184511],[-71.524849551,41.692129511],[-71.524750551,41.69211851],[-71.52468155,41.692102511],[-71.52458255,41.692081511],[-71.524483551,41.69207451],[-71.52439155,41.692045511],[-71.524300551,41.692011511],[-71.524162551,41.69197851],[-71.524086551,41.691971511],[-71.523995551,41.691968511],[-71.523918551,41.691988511],[-71.52384255,41.69197651],[-71.523773551,41.691946511],[-71.523697551,41.69192151],[-71.52362855,41.691895511],[-71.52355255,41.69186551],[-71.52345355,41.69182251],[-71.523308551,41.691740511],[-71.523270551,41.69166951],[-71.523216551,41.69160751],[-71.52317155,41.691617511],[-71.523117551,41.691659511],[-71.52306455,41.691696511],[-71.52297255,41.691675511],[-71.52291955,41.691672511],[-71.52282755,41.691692511],[-71.522766551,41.69172551],[-71.52275455,41.691740511],[-71.52238555,41.691535511],[-71.52204955,41.691457511],[-71.52171355,41.691379511],[-71.52161455,41.69135451],[-71.521171549,41.691247511],[-71.520920549,41.69191951],[-71.52082855,41.692164511],[-71.520920549,41.692409511],[-71.52112655,41.693017511],[-71.52131755,41.693607511],[-71.521462549,41.694127511],[-71.52162955,41.694659511],[-71.52170555,41.694864511],[-71.52185155,41.695158511],[-71.52195055,41.695426512],[-71.52203455,41.695645511],[-71.52188155,41.695680511],[-71.52159955,41.695736512],[-71.52133255,41.695782511],[-71.52106555,41.695793512],[-71.520569549,41.695817511],[-71.51964655,41.695869512],[-71.518913549,41.695907512],[-71.518844549,41.696035511],[-71.518631549,41.696400512],[-71.518394549,41.696815511],[-71.518280549,41.697020512],[-71.517998549,41.697517512],[-71.517807549,41.697863512],[-71.517662549,41.698101512],[-71.517517549,41.698351512],[-71.517433549,41.698506512],[-71.517265549,41.698798512],[-71.517174548,41.698962512],[-71.517029549,41.699209513],[-71.516815549,41.699592512],[-71.516701549,41.699779512],[-71.516418548,41.700271512],[-71.516167549,41.700705513],[-71.515953548,41.701083512],[-71.515740549,41.701471513],[-71.515556548,41.701799513],[-71.515175548,41.702496513],[-71.515053548,41.702701513],[-71.514763548,41.703208513],[-71.514557549,41.703559513],[-71.514496548,41.703668513],[-71.514870548,41.703746513],[-71.515152548,41.703802513],[-71.515274549,41.703836513],[-71.515373549,41.703901513],[-71.515488549,41.703944513],[-71.515976549,41.704064514],[-71.516251549,41.704116513],[-71.516128549,41.704344513],[-71.515907548,41.704723513],[-71.515648549,41.705143513],[-71.515579548,41.705275513],[-71.515365548,41.705649513],[-71.515198549,41.705945513],[-71.515152548,41.706050514],[-71.515351549,41.706095513],[-71.515770548,41.706176513],[-71.516129549,41.706253513],[-71.516411548,41.706310513],[-71.516770549,41.706388513],[-71.516915549,41.706407513],[-71.517197549,41.706460514],[-71.517425549,41.706504513],[-71.517349549,41.706726514],[-71.517243549,41.707102514],[-71.517113549,41.707511514],[-71.51767755,41.707629514],[-71.51828055,41.707746514],[-71.51839555,41.707474514],[-71.51857055,41.706938513],[-71.518639549,41.706748514],[-71.51884555,41.706784514],[-71.51928755,41.706878513],[-71.51995955,41.707016513],[-71.52026355,41.707072513],[-71.52035555,41.707091513],[-71.52040155,41.707101514]]]]}}"}, +{"type": "precinct", "typeId": 3901, "areaId": 26022, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":361,\"NAME\":\"3901\",\"SHAPE_Length\":0.042597621844356,\"SHAPE_Area\":-5.5002137583648e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.501823561,42.010311573],[-71.502571561,42.010414573],[-71.503044561,42.010464573],[-71.503532561,42.010529573],[-71.503738561,42.009564573],[-71.503883561,42.009003573],[-71.503883561,42.008946573],[-71.503853561,42.008843572],[-71.503288561,42.008374572],[-71.503082561,42.008198572],[-71.502937561,42.008080572],[-71.502425561,42.007661573],[-71.502861561,42.007200572],[-71.502968561,42.007147572],[-71.503062561,42.007124572],[-71.503268561,42.007120573],[-71.503312561,42.007099573],[-71.503307561,42.007061573],[-71.503327561,42.006982573],[-71.503339561,42.006718572],[-71.504338562,42.006547572],[-71.504834561,42.006313572],[-71.505246562,42.006017572],[-71.505749561,42.005533572],[-71.506131562,42.005197572],[-71.506619562,42.004929572],[-71.507389562,42.004704571],[-71.508232563,42.004511571],[-71.508510563,42.004434571],[-71.509044562,42.004331572],[-71.509653563,42.004137571],[-71.510233563,42.003853571],[-71.510516563,42.003541571],[-71.510308563,42.003519571],[-71.510331563,42.003490572],[-71.510438563,42.003321571],[-71.510458563,42.003289571],[-71.510515563,42.003180572],[-71.510551563,42.003129571],[-71.510693563,42.002979571],[-71.510976563,42.002733571],[-71.511101563,42.002657571],[-71.511312563,42.002551571],[-71.511549564,42.002449571],[-71.511594563,42.002427571],[-71.511246563,42.002289571],[-71.511169563,42.002266571],[-71.510963563,42.002232571],[-71.510424563,42.002236571],[-71.510368563,42.002236571],[-71.509735563,42.002255571],[-71.509603563,42.002254571],[-71.509186563,42.002251571],[-71.508179563,42.002255571],[-71.507637562,42.002255571],[-71.507156562,42.002247571],[-71.506653562,42.002228571],[-71.506424562,42.002221571],[-71.505867561,42.002194571],[-71.505379561,42.002179571],[-71.504089561,42.002121571],[-71.502808561,42.002076571],[-71.502739561,42.002072571],[-71.50256556,42.002067572],[-71.50233556,42.002060571],[-71.50183156,42.002049572],[-71.50151856,42.002026572],[-71.50137356,42.002030572],[-71.50126656,42.002045572],[-71.50115256,42.002079571],[-71.50103856,42.002133571],[-71.50040456,42.002526571],[-71.50008456,42.002697571],[-71.49990156,42.002777571],[-71.49974856,42.002839571],[-71.499550559,42.002896571],[-71.49940556,42.002926572],[-71.499199559,42.002964572],[-71.49893256,42.003029571],[-71.498484559,42.003084571],[-71.498218559,42.003117572],[-71.498175559,42.003048571],[-71.497936559,42.003076572],[-71.497581559,42.003117572],[-71.497556559,42.003117572],[-71.497383559,42.003140572],[-71.497307559,42.003159572],[-71.497231559,42.003205571],[-71.497047558,42.003090571],[-71.497093559,42.003189572],[-71.497169559,42.003334572],[-71.497215559,42.003395572],[-71.497253559,42.003456571],[-71.497391559,42.003632571],[-71.497520559,42.003762572],[-71.497589559,42.003823572],[-71.498520559,42.004532572],[-71.498710559,42.004714572],[-71.49871856,42.004731572],[-71.498734559,42.004746572],[-71.49875656,42.004792572],[-71.498764559,42.004822572],[-71.498764559,42.004853572],[-71.498749559,42.004883572],[-71.498726559,42.004910572],[-71.498695559,42.004933572],[-71.498657559,42.004952572],[-71.498474559,42.005009572],[-71.498283559,42.005051572],[-71.497993559,42.005085572],[-71.49800156,42.005677573],[-71.498199559,42.005677573],[-71.498337559,42.005673572],[-71.498398559,42.005684572],[-71.49842856,42.005696573],[-71.498497559,42.005761572],[-71.498552559,42.005843572],[-71.498810559,42.006260573],[-71.49885656,42.006325572],[-71.49887156,42.006367572],[-71.498924559,42.006649573],[-71.49897056,42.006737572],[-71.499062559,42.006836572],[-71.49920756,42.006955572],[-71.49879556,42.007241572],[-71.49885656,42.007264572],[-71.499001559,42.007328573],[-71.49904656,42.007344572],[-71.49908456,42.007363572],[-71.49922256,42.007409573],[-71.49929856,42.007447573],[-71.49963456,42.007649572],[-71.49978656,42.007752572],[-71.499893559,42.007836573],[-71.49997756,42.007893573],[-71.50003856,42.007939573],[-71.50006956,42.007981572],[-71.50009256,42.008023572],[-71.50020656,42.008320573],[-71.50024456,42.008446573],[-71.50036656,42.008744572],[-71.50058756,42.009255573],[-71.50061056,42.009323573],[-71.500671561,42.009465573],[-71.500692561,42.009493573],[-71.500710561,42.009518573],[-71.50072556,42.009549573],[-71.50076356,42.009591573],[-71.50093856,42.009747573],[-71.50096956,42.009770573],[-71.50138156,42.010090573],[-71.50151856,42.010182573],[-71.501587561,42.010220573],[-71.501663561,42.010254573],[-71.50174756,42.010281572],[-71.501823561,42.010311573]]]]}}"}, +{"type": "precinct", "typeId": 3902, "areaId": 26021, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":360,\"NAME\":\"3902\",\"SHAPE_Length\":0.068106898328071,\"SHAPE_Area\":-0.00013254852708575},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.501823561,42.010311573],[-71.50155656,42.011265573],[-71.501442561,42.011814573],[-71.501427561,42.011963573],[-71.501411561,42.012265574],[-71.501350561,42.013016573],[-71.501328561,42.013134573],[-71.50125956,42.013340574],[-71.50108356,42.013760574],[-71.50079356,42.014515573],[-71.500648561,42.014912574],[-71.500336561,42.015644574],[-71.500809561,42.015736574],[-71.502289561,42.016014574],[-71.502182561,42.016426574],[-71.502129561,42.016667574],[-71.502073243,42.016919128],[-71.50364466,42.016782255],[-71.507214133,42.016497124],[-71.511137745,42.016194305],[-71.511689565,42.016109574],[-71.512019565,42.015034574],[-71.512182564,42.014502573],[-71.512322564,42.014013573],[-71.512498564,42.013243574],[-71.512773564,42.012414573],[-71.512881564,42.012096573],[-71.513049565,42.011602573],[-71.513143564,42.011378573],[-71.513427564,42.010704573],[-71.512482564,42.010697573],[-71.512421564,42.010509573],[-71.512299564,42.010231573],[-71.512169564,42.009999573],[-71.512039564,42.009804573],[-71.511742564,42.009392572],[-71.511238564,42.008706572],[-71.511009563,42.008374572],[-71.510803563,42.008091572],[-71.510452563,42.007622572],[-71.510162563,42.007214572],[-71.510254563,42.007172572],[-71.510719563,42.006920572],[-71.510956563,42.006779572],[-71.511749564,42.006153572],[-71.511864564,42.006054572],[-71.511948563,42.005978572],[-71.512276564,42.005772572],[-71.512428564,42.005612572],[-71.512543564,42.005448571],[-71.512619564,42.005246572],[-71.512619564,42.005108572],[-71.512627564,42.005001571],[-71.512627564,42.004860572],[-71.512650564,42.004647572],[-71.512650564,42.004586571],[-71.512703564,42.004101572],[-71.512733564,42.003880572],[-71.512756564,42.003792571],[-71.512760564,42.003769571],[-71.512764563,42.003746572],[-71.512817564,42.003514571],[-71.512840564,42.003441571],[-71.512871564,42.003373572],[-71.512917564,42.003304571],[-71.513031564,42.003228571],[-71.513084564,42.003193571],[-71.513145564,42.003163571],[-71.513687564,42.002884571],[-71.513855564,42.002777571],[-71.514801564,42.002022571],[-71.515419564,42.001534571],[-71.515640565,42.001336571],[-71.515755565,42.00113757],[-71.515938565,42.000836571],[-71.516167565,42.000428571],[-71.516251565,42.000267571],[-71.516266565,42.00018757],[-71.516266565,42.00006557],[-71.516268565,42.000024571],[-71.516273565,41.999924571],[-71.516296564,41.999802571],[-71.516335564,41.999684571],[-71.516412564,41.999630571],[-71.516653565,41.99946257],[-71.516685565,41.99944057],[-71.516808565,41.99938657],[-71.517067565,41.99930257],[-71.517197565,41.99927257],[-71.517372565,41.999203571],[-71.517529565,41.99916557],[-71.517679565,41.99912857],[-71.517718565,41.99911757],[-71.517944565,41.999043571],[-71.518074565,41.998986571],[-71.518129565,41.99895357],[-71.518125566,41.99889457],[-71.518128565,41.99883857],[-71.518115565,41.99877757],[-71.518055565,41.99864957],[-71.518022565,41.99859457],[-71.517996565,41.99853757],[-71.517964565,41.998481571],[-71.517884565,41.998364571],[-71.517831566,41.99830657],[-71.517767565,41.99825257],[-71.517536565,41.99812457],[-71.517393565,41.99805657],[-71.517359565,41.99804557],[-71.517315565,41.99803257],[-71.516998565,41.99790757],[-71.516916565,41.99786657],[-71.516782564,41.99780757],[-71.516629565,41.99775957],[-71.516245565,41.99767157],[-71.516033565,41.99760757],[-71.515883565,41.99755557],[-71.515817565,41.99752257],[-71.515680565,41.99746257],[-71.515527565,41.99741357],[-71.515385564,41.99737657],[-71.515227564,41.99735057],[-71.515146564,41.99734357],[-71.515044565,41.99735657],[-71.514979564,41.99738457],[-71.514911564,41.99742157],[-71.514849565,41.99746657],[-71.514794564,41.99751557],[-71.514748564,41.99756757],[-71.514629564,41.99772557],[-71.514559564,41.99783657],[-71.514484564,41.99800057],[-71.514437564,41.998128571],[-71.514425564,41.998188571],[-71.514431564,41.998305571],[-71.514421565,41.998362571],[-71.514390564,41.99841457],[-71.514346564,41.99845757],[-71.514276564,41.99851157],[-71.514225564,41.99857257],[-71.514192564,41.99864057],[-71.514136564,41.99870657],[-71.514088564,41.99874857],[-71.514025564,41.998812571],[-71.513959564,41.99890057],[-71.513900564,41.99897757],[-71.513859564,41.99905057],[-71.513827564,41.99912857],[-71.513773564,41.999239571],[-71.513705564,41.99934657],[-71.513543564,41.99955657],[-71.513441564,41.99971357],[-71.513323564,41.99987257],[-71.513219564,42.000012571],[-71.513113564,42.00018557],[-71.513063564,42.000267571],[-71.513046564,42.000295571],[-71.512998563,42.000431571],[-71.512969564,42.00049657],[-71.512924564,42.000560571],[-71.512887564,42.000634571],[-71.512831564,42.000796571],[-71.512796564,42.000945571],[-71.512729563,42.001110571],[-71.512669563,42.00123257],[-71.512561564,42.001422571],[-71.512480564,42.001550571],[-71.512065563,42.002036571],[-71.512025563,42.002108571],[-71.511999564,42.002176571],[-71.511969563,42.002238571],[-71.511910563,42.002287571],[-71.511645564,42.002407571],[-71.511594563,42.002427571],[-71.511549564,42.002449571],[-71.511312563,42.002551571],[-71.511101563,42.002657571],[-71.510976563,42.002733571],[-71.510693563,42.002979571],[-71.510551563,42.003129571],[-71.510515563,42.003180572],[-71.510458563,42.003289571],[-71.510438563,42.003321571],[-71.510331563,42.003490572],[-71.510308563,42.003519571],[-71.510516563,42.003541571],[-71.510233563,42.003853571],[-71.509653563,42.004137571],[-71.509044562,42.004331572],[-71.508510563,42.004434571],[-71.508232563,42.004511571],[-71.507389562,42.004704571],[-71.506619562,42.004929572],[-71.506131562,42.005197572],[-71.505749561,42.005533572],[-71.505246562,42.006017572],[-71.504834561,42.006313572],[-71.504338562,42.006547572],[-71.503339561,42.006718572],[-71.503327561,42.006982573],[-71.503307561,42.007061573],[-71.503312561,42.007099573],[-71.503268561,42.007120573],[-71.503062561,42.007124572],[-71.502968561,42.007147572],[-71.502861561,42.007200572],[-71.502425561,42.007661573],[-71.502937561,42.008080572],[-71.503082561,42.008198572],[-71.503288561,42.008374572],[-71.503853561,42.008843572],[-71.503883561,42.008946573],[-71.503883561,42.009003573],[-71.503738561,42.009564573],[-71.503532561,42.010529573],[-71.503044561,42.010464573],[-71.502571561,42.010414573],[-71.501823561,42.010311573]]]]}}"}, +{"type": "precinct", "typeId": 3903, "areaId": 26073, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":412,\"NAME\":\"3903\",\"SHAPE_Length\":0.050830168720135,\"SHAPE_Area\":-7.4778787352685e-5},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.518129565,41.99895357],[-71.518074565,41.998986571],[-71.517944565,41.999043571],[-71.517718565,41.99911757],[-71.517679565,41.99912857],[-71.517529565,41.99916557],[-71.517372565,41.999203571],[-71.517197565,41.99927257],[-71.517067565,41.99930257],[-71.516808565,41.99938657],[-71.516685565,41.99944057],[-71.516653565,41.99946257],[-71.516412564,41.999630571],[-71.516335564,41.999684571],[-71.516296564,41.999802571],[-71.516273565,41.999924571],[-71.516268565,42.000024571],[-71.516266565,42.00006557],[-71.516266565,42.00018757],[-71.516251565,42.000267571],[-71.516167565,42.000428571],[-71.515938565,42.000836571],[-71.515755565,42.00113757],[-71.515640565,42.001336571],[-71.515419564,42.001534571],[-71.514801564,42.002022571],[-71.513855564,42.002777571],[-71.513687564,42.002884571],[-71.513145564,42.003163571],[-71.513084564,42.003193571],[-71.513031564,42.003228571],[-71.512917564,42.003304571],[-71.512871564,42.003373572],[-71.512840564,42.003441571],[-71.512817564,42.003514571],[-71.512764563,42.003746572],[-71.512760564,42.003769571],[-71.512756564,42.003792571],[-71.512733564,42.003880572],[-71.512703564,42.004101572],[-71.512650564,42.004586571],[-71.512650564,42.004647572],[-71.512627564,42.004860572],[-71.512627564,42.005001571],[-71.512619564,42.005108572],[-71.512619564,42.005246572],[-71.512543564,42.005448571],[-71.512428564,42.005612572],[-71.512276564,42.005772572],[-71.511948563,42.005978572],[-71.511864564,42.006054572],[-71.511749564,42.006153572],[-71.510956563,42.006779572],[-71.510719563,42.006920572],[-71.510254563,42.007172572],[-71.510162563,42.007214572],[-71.510452563,42.007622572],[-71.510803563,42.008091572],[-71.511009563,42.008374572],[-71.511238564,42.008706572],[-71.511742564,42.009392572],[-71.512039564,42.009804573],[-71.513008564,42.009159572],[-71.513474564,42.008839572],[-71.513550564,42.008870572],[-71.513672565,42.008889572],[-71.513741564,42.008881572],[-71.513878564,42.008858572],[-71.514160565,42.008824572],[-71.514137565,42.008744572],[-71.514600564,42.008917572],[-71.514893565,42.009026572],[-71.515297565,42.009182572],[-71.515457565,42.009240572],[-71.515579565,42.009255572],[-71.516022565,42.009205573],[-71.516342565,42.009159572],[-71.516327566,42.009110572],[-71.516464566,42.008839572],[-71.516579566,42.008648572],[-71.516678566,42.008469572],[-71.516830565,42.008221572],[-71.517014565,42.007920572],[-71.517410565,42.007264572],[-71.517525565,42.007054572],[-71.517746566,42.006642572],[-71.518646566,42.006520571],[-71.518959566,42.006470572],[-71.519394566,42.006413572],[-71.519730566,42.006382572],[-71.519958566,42.006375572],[-71.520203566,42.006359572],[-71.520302567,42.006348571],[-71.520523566,42.006241572],[-71.520387771,42.006072979],[-71.519968429,42.006174363],[-71.519815995,42.005891815],[-71.51948465,42.005933559],[-71.519173121,42.005495904],[-71.518746711,42.0056107],[-71.518707566,42.005455572],[-71.518684566,42.005333571],[-71.518684566,42.005288571],[-71.518700566,42.005246572],[-71.518738566,42.005177571],[-71.518799566,42.005131572],[-71.518837566,42.005108572],[-71.519005566,42.005028572],[-71.519211566,42.004921571],[-71.519379566,42.005021571],[-71.519485566,42.004933572],[-71.519569566,42.004895572],[-71.519775566,42.004837572],[-71.520411994,42.004692573],[-71.520931104,42.005368156],[-71.520621984,42.005488268],[-71.520811138,42.005737876],[-71.520673185,42.005798882],[-71.520747309,42.005884624],[-71.520691104,42.00590369],[-71.520837331,42.006105494],[-71.521164567,42.005963572],[-71.521568567,42.005776571],[-71.522041567,42.005566571],[-71.522400567,42.005410571],[-71.522690567,42.005276571],[-71.522812567,42.005227572],[-71.522926567,42.005162571],[-71.523529567,42.004868571],[-71.523643567,42.004818572],[-71.524315568,42.005059571],[-71.524572568,42.005140571],[-71.524628568,42.005158571],[-71.524882568,42.005233571],[-71.525106568,42.005299571],[-71.525093568,42.005218571],[-71.525073568,42.004928571],[-71.525070568,42.004598571],[-71.525069568,42.004498571],[-71.525092568,42.004346571],[-71.525156568,42.004167571],[-71.525177568,42.004091571],[-71.525217568,42.003983571],[-71.525352568,42.003567571],[-71.525373568,42.003490571],[-71.525394568,42.003383571],[-71.525404568,42.003336571],[-71.525409568,42.003281571],[-71.525482568,42.00283457],[-71.525483568,42.00263957],[-71.525472568,42.002580571],[-71.525431568,42.002450571],[-71.525375568,42.00232857],[-71.525340568,42.00226957],[-71.525260568,42.00213257],[-71.525151568,42.001965571],[-71.524991568,42.001768571],[-71.524894567,42.001671571],[-71.524834568,42.001624571],[-71.524764568,42.001579571],[-71.524622567,42.001502571],[-71.524504567,42.001405571],[-71.524439568,42.001362571],[-71.524369567,42.001331571],[-71.524294567,42.001305571],[-71.524137567,42.001264571],[-71.523888567,42.001189571],[-71.523714567,42.001155571],[-71.523565567,42.001135571],[-71.523362567,42.00109857],[-71.523192567,42.001089571],[-71.523025567,42.001067571],[-71.522852567,42.001067571],[-71.522762567,42.00108457],[-71.522687567,42.001112571],[-71.522577567,42.00113857],[-71.522501567,42.001156571],[-71.522403567,42.001189571],[-71.522238567,42.00123757],[-71.522143567,42.001270571],[-71.521811567,42.00141257],[-71.521712567,42.001448571],[-71.521495567,42.001495571],[-71.521278567,42.001533571],[-71.520937566,42.00164457],[-71.520752566,42.001718571],[-71.520680566,42.00174257],[-71.520436566,42.001809571],[-71.520296566,42.001855571],[-71.520168566,42.001897571],[-71.520089566,42.001935571],[-71.520010566,42.001981571],[-71.519930566,42.002020571],[-71.519844566,42.002045571],[-71.519669566,42.002088571],[-71.519573566,42.002100571],[-71.519387566,42.002103571],[-71.519304566,42.002094571],[-71.519220566,42.002076571],[-71.519060566,42.002033571],[-71.518991566,42.001997571],[-71.518924566,42.001952571],[-71.518806566,42.001861571],[-71.518751565,42.001807571],[-71.518710566,42.001758571],[-71.518609566,42.001655571],[-71.518572566,42.001543571],[-71.518563566,42.00141057],[-71.518551566,42.001337571],[-71.518541565,42.000908571],[-71.518509566,42.00078857],[-71.518425565,42.00066957],[-71.518413566,42.000644571],[-71.518306565,41.99964357],[-71.518385565,41.99953657],[-71.518399565,41.999452571],[-71.518385565,41.99940557],[-71.518287565,41.99938057],[-71.518275566,41.99932957],[-71.518246565,41.99927657],[-71.518234565,41.99916657],[-71.518208565,41.99911457],[-71.518146565,41.99901257],[-71.518129565,41.99895357]]]]}}"}, +{"type": "precinct", "typeId": 3904, "areaId": 26020, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":359,\"NAME\":\"3904\",\"SHAPE_Length\":0.066268715895983,\"SHAPE_Area\":-0.00019681440399048},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.525106568,42.005299571],[-71.525115568,42.005381572],[-71.525121568,42.005511571],[-71.525157568,42.005849572],[-71.525160568,42.005962571],[-71.525212568,42.006279572],[-71.525293568,42.006613572],[-71.525321569,42.006869571],[-71.525357568,42.007008571],[-71.525379569,42.007063571],[-71.525453568,42.007195572],[-71.525583568,42.007393572],[-71.525642568,42.007457571],[-71.525747569,42.007586572],[-71.525796568,42.007628571],[-71.525844569,42.007677572],[-71.525898568,42.007721572],[-71.526084568,42.007832572],[-71.526150568,42.007865571],[-71.526295569,42.007923571],[-71.526428569,42.007992572],[-71.526552568,42.008070572],[-71.526924568,42.008266572],[-71.527224569,42.008436572],[-71.527307569,42.008478572],[-71.527384569,42.008526571],[-71.527529569,42.008578572],[-71.527678569,42.008670572],[-71.527957569,42.008815572],[-71.528215569,42.008975571],[-71.528428569,42.009072571],[-71.52902357,42.009394572],[-71.529245569,42.009531572],[-71.52943657,42.009632572],[-71.52962257,42.009798572],[-71.52965857,42.009835572],[-71.52989257,42.010075572],[-71.52996657,42.010156572],[-71.53053357,42.010111572],[-71.53070257,42.010091572],[-71.53113557,42.010059572],[-71.53157557,42.010021572],[-71.533188571,42.010076572],[-71.533709571,42.010094572],[-71.533908571,42.010105571],[-71.535490572,42.010079572],[-71.535952571,42.010072572],[-71.536583572,42.010075572],[-71.539105573,42.009900572],[-71.539854573,42.009881572],[-71.539679573,42.009406571],[-71.539269572,42.008370571],[-71.539183573,42.008150572],[-71.538811573,42.007182571],[-71.537849572,42.00468557],[-71.536006572,42.00010657],[-71.535583571,41.999048569],[-71.53340657,41.993607568],[-71.53307157,41.993439569],[-71.53265457,41.993494568],[-71.53258957,41.993503569],[-71.53207057,41.993593569],[-71.53149657,41.993733569],[-71.530914569,41.993941569],[-71.530448569,41.994160569],[-71.529996569,41.994399569],[-71.529444569,41.994764569],[-71.529308569,41.994864569],[-71.526114568,41.99720657],[-71.525172567,41.99788857],[-71.525032567,41.99784557],[-71.524719567,41.99772757],[-71.524651567,41.99765857],[-71.524483568,41.99742557],[-71.524403568,41.997335569],[-71.524246568,41.997158569],[-71.524071567,41.99699157],[-71.523911567,41.99684257],[-71.523643567,41.99652957],[-71.523132567,41.996731569],[-71.522774567,41.99688057],[-71.522316567,41.99708657],[-71.522098567,41.997179569],[-71.521750567,41.99732957],[-71.521309566,41.99750657],[-71.521126567,41.99757857],[-71.520927566,41.99763157],[-71.520828566,41.99757057],[-71.520676566,41.997391569],[-71.520119566,41.99768157],[-71.519775566,41.99787257],[-71.519508566,41.99800557],[-71.519264566,41.99813957],[-71.519119566,41.99821157],[-71.518959566,41.99830757],[-71.518837566,41.99839157],[-71.518478565,41.99871157],[-71.518395566,41.99877657],[-71.518318566,41.99883757],[-71.518188565,41.998928571],[-71.518129565,41.99895357],[-71.518146565,41.99901257],[-71.518208565,41.99911457],[-71.518234565,41.99916657],[-71.518246565,41.99927657],[-71.518275566,41.99932957],[-71.518287565,41.99938057],[-71.518385565,41.99940557],[-71.518399565,41.999452571],[-71.518385565,41.99953657],[-71.518306565,41.99964357],[-71.518413566,42.000644571],[-71.518425565,42.00066957],[-71.518509566,42.00078857],[-71.518541565,42.000908571],[-71.518551566,42.001337571],[-71.518563566,42.00141057],[-71.518572566,42.001543571],[-71.518609566,42.001655571],[-71.518710566,42.001758571],[-71.518751565,42.001807571],[-71.518806566,42.001861571],[-71.518924566,42.001952571],[-71.518991566,42.001997571],[-71.519060566,42.002033571],[-71.519220566,42.002076571],[-71.519304566,42.002094571],[-71.519387566,42.002103571],[-71.519573566,42.002100571],[-71.519669566,42.002088571],[-71.519844566,42.002045571],[-71.519930566,42.002020571],[-71.520010566,42.001981571],[-71.520089566,42.001935571],[-71.520168566,42.001897571],[-71.520296566,42.001855571],[-71.520436566,42.001809571],[-71.520680566,42.00174257],[-71.520752566,42.001718571],[-71.520937566,42.00164457],[-71.521278567,42.001533571],[-71.521495567,42.001495571],[-71.521712567,42.001448571],[-71.521811567,42.00141257],[-71.522143567,42.001270571],[-71.522238567,42.00123757],[-71.522403567,42.001189571],[-71.522501567,42.001156571],[-71.522577567,42.00113857],[-71.522687567,42.001112571],[-71.522762567,42.00108457],[-71.522852567,42.001067571],[-71.523025567,42.001067571],[-71.523192567,42.001089571],[-71.523362567,42.00109857],[-71.523565567,42.001135571],[-71.523714567,42.001155571],[-71.523888567,42.001189571],[-71.524137567,42.001264571],[-71.524294567,42.001305571],[-71.524369567,42.001331571],[-71.524439568,42.001362571],[-71.524504567,42.001405571],[-71.524622567,42.001502571],[-71.524764568,42.001579571],[-71.524834568,42.001624571],[-71.524894567,42.001671571],[-71.524991568,42.001768571],[-71.525151568,42.001965571],[-71.525260568,42.00213257],[-71.525340568,42.00226957],[-71.525375568,42.00232857],[-71.525431568,42.002450571],[-71.525472568,42.002580571],[-71.525483568,42.00263957],[-71.525482568,42.00283457],[-71.525409568,42.003281571],[-71.525404568,42.003336571],[-71.525394568,42.003383571],[-71.525373568,42.003490571],[-71.525352568,42.003567571],[-71.525217568,42.003983571],[-71.525177568,42.004091571],[-71.525156568,42.004167571],[-71.525092568,42.004346571],[-71.525069568,42.004498571],[-71.525070568,42.004598571],[-71.525073568,42.004928571],[-71.525093568,42.005218571],[-71.525106568,42.005299571]]]]}}"}, +{"type": "precinct", "typeId": 3905, "areaId": 26024, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":363,\"NAME\":\"3905\",\"SHAPE_Length\":0.090839655326299,\"SHAPE_Area\":-0.00024906281383502},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.497047558,42.003090571],[-71.497231559,42.003205571],[-71.497307559,42.003159572],[-71.497383559,42.003140572],[-71.497556559,42.003117572],[-71.497581559,42.003117572],[-71.497936559,42.003076572],[-71.498175559,42.003048571],[-71.498218559,42.003117572],[-71.498484559,42.003084571],[-71.49893256,42.003029571],[-71.499199559,42.002964572],[-71.49940556,42.002926572],[-71.499550559,42.002896571],[-71.49974856,42.002839571],[-71.49990156,42.002777571],[-71.50008456,42.002697571],[-71.50040456,42.002526571],[-71.50103856,42.002133571],[-71.50115256,42.002079571],[-71.50126656,42.002045572],[-71.50137356,42.002030572],[-71.50151856,42.002026572],[-71.50183156,42.002049572],[-71.50233556,42.002060571],[-71.50256556,42.002067572],[-71.502739561,42.002072571],[-71.502808561,42.002076571],[-71.504089561,42.002121571],[-71.505379561,42.002179571],[-71.505867561,42.002194571],[-71.506424562,42.002221571],[-71.506653562,42.002228571],[-71.507156562,42.002247571],[-71.507637562,42.002255571],[-71.508179563,42.002255571],[-71.509186563,42.002251571],[-71.509603563,42.002254571],[-71.509735563,42.002255571],[-71.510368563,42.002236571],[-71.510424563,42.002236571],[-71.510963563,42.002232571],[-71.511169563,42.002266571],[-71.511246563,42.002289571],[-71.511594563,42.002427571],[-71.511645564,42.002407571],[-71.511910563,42.002287571],[-71.511969563,42.002238571],[-71.511999564,42.002176571],[-71.512025563,42.002108571],[-71.512065563,42.002036571],[-71.512480564,42.001550571],[-71.512561564,42.001422571],[-71.512669563,42.00123257],[-71.512729563,42.001110571],[-71.512796564,42.000945571],[-71.512831564,42.000796571],[-71.512887564,42.000634571],[-71.512924564,42.000560571],[-71.512969564,42.00049657],[-71.512998563,42.000431571],[-71.513046564,42.000295571],[-71.513063564,42.000267571],[-71.513113564,42.00018557],[-71.513016564,42.000191571],[-71.512749563,42.000191571],[-71.512512563,42.00018057],[-71.512283563,42.000153571],[-71.512016564,42.00010757],[-71.511726564,42.000035571],[-71.511406563,41.999897571],[-71.511040563,41.99977157],[-71.510742563,41.999661571],[-71.510338563,41.999485571],[-71.510002563,41.99932557],[-71.509872563,41.999272571],[-71.508728562,41.99879557],[-71.507950562,41.998474571],[-71.507797562,41.99844457],[-71.507675562,41.99843357],[-71.507545562,41.99842957],[-71.507034561,41.99841057],[-71.506645561,41.99839457],[-71.506111562,41.998364571],[-71.505653561,41.99834557],[-71.505211561,41.998337571],[-71.504395561,41.99830757],[-71.503975561,41.998280571],[-71.503510561,41.998257571],[-71.503090561,41.99824957],[-71.50273156,41.998242571],[-71.50235056,41.99821557],[-71.50181656,41.99819257],[-71.500229559,41.998120571],[-71.498352559,41.998051571],[-71.498253559,41.99807457],[-71.498199558,41.99809357],[-71.497787558,41.997284571],[-71.497719559,41.99713957],[-71.497604559,41.996937571],[-71.497406558,41.99670857],[-71.497246558,41.99655257],[-71.497086558,41.99641557],[-71.496925559,41.99626657],[-71.496544558,41.995922571],[-71.496368558,41.99576657],[-71.496284558,41.99566757],[-71.496239558,41.99559157],[-71.496162558,41.99543457],[-71.496117558,41.99524057],[-71.495850558,41.99429057],[-71.495743558,41.99388957],[-71.495689558,41.99368757],[-71.495499558,41.99310357],[-71.495438558,41.992966569],[-71.495033558,41.992306569],[-71.494736557,41.99180357],[-71.494156557,41.990841569],[-71.493980557,41.990528569],[-71.493843557,41.990235569],[-71.493767557,41.990051569],[-71.493729557,41.989960569],[-71.493652557,41.989788569],[-71.493538556,41.98949157],[-71.493431557,41.989182569],[-71.493340557,41.988949569],[-71.493256557,41.988659569],[-71.493149556,41.988030568],[-71.493103557,41.987656569],[-71.493042557,41.987328568],[-71.492996556,41.987042569],[-71.492966557,41.986882568],[-71.492930557,41.986788569],[-71.492798556,41.986439569],[-71.492645556,41.986073569],[-71.492540557,41.985808568],[-71.492386556,41.985421568],[-71.492180556,41.984932568],[-71.491547555,41.983372568],[-71.491356556,41.982918568],[-71.491196555,41.982514568],[-71.491020555,41.982182568],[-71.490852555,41.981907567],[-71.490692555,41.981667568],[-71.490639555,41.981575567],[-71.490578555,41.981491568],[-71.490524555,41.981404567],[-71.490463555,41.981320568],[-71.490227555,41.980965568],[-71.490051555,41.980648568],[-71.489960555,41.980454568],[-71.489784555,41.980008568],[-71.489716555,41.979805567],[-71.489638555,41.979600568],[-71.489547555,41.979358567],[-71.489029555,41.979295567],[-71.488727555,41.979259567],[-71.488283555,41.979204567],[-71.488152554,41.979188567],[-71.488045554,41.979175567],[-71.487929554,41.979162567],[-71.487364554,41.979093567],[-71.487243554,41.979219568],[-71.487200554,41.979264567],[-71.486963554,41.979507567],[-71.486799554,41.979681568],[-71.483158553,41.983453568],[-71.483126553,41.983486568],[-71.482857553,41.983766568],[-71.482556552,41.984080568],[-71.482247553,41.984397569],[-71.482141553,41.984508568],[-71.482104553,41.984548569],[-71.481279553,41.985402569],[-71.481223552,41.985463569],[-71.481063552,41.985625569],[-71.481022552,41.985666569],[-71.480865552,41.985829569],[-71.480454552,41.986256569],[-71.480427552,41.986283569],[-71.480327552,41.986386569],[-71.480476552,41.986500569],[-71.480659553,41.986657569],[-71.480812553,41.986790569],[-71.481026553,41.987011569],[-71.481117552,41.987137569],[-71.481201553,41.987236569],[-71.481331552,41.987473569],[-71.481429552,41.987680569],[-71.481522553,41.987912569],[-71.481583552,41.988160569],[-71.481621552,41.988449569],[-71.481622552,41.988500569],[-71.481628553,41.988812569],[-71.481659552,41.989632569],[-71.481697553,41.989785569],[-71.481728553,41.989922569],[-71.481804553,41.99007557],[-71.481949553,41.99031957],[-71.482224554,41.990605569],[-71.482811553,41.99114657],[-71.483063553,41.991383569],[-71.483154554,41.99145557],[-71.483665554,41.99186157],[-71.483711553,41.99189857],[-71.484734554,41.99266557],[-71.485054554,41.99291357],[-71.485352554,41.99315057],[-71.486328555,41.99392757],[-71.486794555,41.99429457],[-71.487165555,41.994581571],[-71.487221555,41.99462557],[-71.487816555,41.995106571],[-71.487930555,41.99520957],[-71.487950555,41.995220571],[-71.488304556,41.995530571],[-71.488365556,41.99557957],[-71.488670556,41.995861571],[-71.488762555,41.995957571],[-71.489647556,41.996834571],[-71.490150556,41.99733457],[-71.490227556,41.997403571],[-71.490417556,41.997616571],[-71.490524556,41.997765571],[-71.490552556,41.997814571],[-71.490570557,41.997845571],[-71.490761557,41.998143571],[-71.491058557,41.998642571],[-71.491554557,41.999451571],[-71.491570556,41.999485571],[-71.491600557,41.999543571],[-71.491714557,41.999710572],[-71.491837557,41.999863572],[-71.492020557,42.000065571],[-71.492058557,42.000100572],[-71.492111557,42.000157572],[-71.492210557,42.000245571],[-71.492409557,42.000389572],[-71.492645557,42.000534571],[-71.492775557,42.000611571],[-71.492867557,42.000660572],[-71.493011557,42.000729571],[-71.493317558,42.000851571],[-71.494354558,42.001305572],[-71.494576558,42.001404572],[-71.495003558,42.001545571],[-71.495537558,42.001717572],[-71.495630558,42.001741571],[-71.495905558,42.001860571],[-71.495964558,42.001885571],[-71.496071558,42.001938571],[-71.496239558,42.002041572],[-71.496399559,42.002156571],[-71.496475559,42.002217572],[-71.496681558,42.002415572],[-71.496742559,42.002484571],[-71.496796558,42.002556572],[-71.496872558,42.002697571],[-71.496979559,42.002938572],[-71.497009558,42.003022572],[-71.497047558,42.003090571]]]]}}"}, +{"type": "precinct", "typeId": 3906, "areaId": 26016, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":355,\"NAME\":\"3906\",\"SHAPE_Length\":0.064872176912717,\"SHAPE_Area\":-0.00011923571998991},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.509872563,41.999272571],[-71.510002563,41.99932557],[-71.510338563,41.999485571],[-71.510742563,41.999661571],[-71.511040563,41.99977157],[-71.511406563,41.999897571],[-71.511726564,42.000035571],[-71.512016564,42.00010757],[-71.512283563,42.000153571],[-71.512512563,42.00018057],[-71.512749563,42.000191571],[-71.513016564,42.000191571],[-71.513113564,42.00018557],[-71.513219564,42.000012571],[-71.513323564,41.99987257],[-71.513441564,41.99971357],[-71.513543564,41.99955657],[-71.513705564,41.99934657],[-71.513773564,41.999239571],[-71.513827564,41.99912857],[-71.513859564,41.99905057],[-71.513900564,41.99897757],[-71.513959564,41.99890057],[-71.514025564,41.998812571],[-71.514088564,41.99874857],[-71.514136564,41.99870657],[-71.514192564,41.99864057],[-71.514225564,41.99857257],[-71.514276564,41.99851157],[-71.514346564,41.99845757],[-71.514390564,41.99841457],[-71.514421565,41.998362571],[-71.514431564,41.998305571],[-71.514425564,41.998188571],[-71.514437564,41.998128571],[-71.514484564,41.99800057],[-71.514559564,41.99783657],[-71.514629564,41.99772557],[-71.514748564,41.99756757],[-71.514794564,41.99751557],[-71.514849565,41.99746657],[-71.514911564,41.99742157],[-71.514979564,41.99738457],[-71.515044565,41.99735657],[-71.515146564,41.99734357],[-71.515227564,41.99735057],[-71.515385564,41.99737657],[-71.515527565,41.99741357],[-71.515680565,41.99746257],[-71.515817565,41.99752257],[-71.515883565,41.99755557],[-71.516033565,41.99760757],[-71.516245565,41.99767157],[-71.516629565,41.99775957],[-71.516782564,41.99780757],[-71.516916565,41.99786657],[-71.516998565,41.99790757],[-71.517315565,41.99803257],[-71.517359565,41.99804557],[-71.517393565,41.99805657],[-71.517536565,41.99812457],[-71.517767565,41.99825257],[-71.517831566,41.99830657],[-71.517884565,41.998364571],[-71.517964565,41.998481571],[-71.517996565,41.99853757],[-71.518022565,41.99859457],[-71.518055565,41.99864957],[-71.518115565,41.99877757],[-71.518128565,41.99883857],[-71.518125566,41.99889457],[-71.518129565,41.99895357],[-71.518188565,41.998928571],[-71.518318566,41.99883757],[-71.518395566,41.99877657],[-71.518478565,41.99871157],[-71.518837566,41.99839157],[-71.518959566,41.99830757],[-71.519119566,41.99821157],[-71.519264566,41.99813957],[-71.519508566,41.99800557],[-71.519775566,41.99787257],[-71.520119566,41.99768157],[-71.520676566,41.997391569],[-71.520828566,41.99757057],[-71.520927566,41.99763157],[-71.521126567,41.99757857],[-71.521309566,41.99750657],[-71.521750567,41.99732957],[-71.522098567,41.997179569],[-71.522316567,41.99708657],[-71.522774567,41.99688057],[-71.523132567,41.996731569],[-71.523643567,41.99652957],[-71.523911567,41.99684257],[-71.524071567,41.99699157],[-71.524246568,41.997158569],[-71.524403568,41.997335569],[-71.524483568,41.99742557],[-71.524651567,41.99765857],[-71.524719567,41.99772757],[-71.525032567,41.99784557],[-71.525172567,41.99788857],[-71.526114568,41.99720657],[-71.529308569,41.994864569],[-71.529444569,41.994764569],[-71.529996569,41.994399569],[-71.530448569,41.994160569],[-71.530914569,41.993941569],[-71.53149657,41.993733569],[-71.53207057,41.993593569],[-71.53258957,41.993503569],[-71.53265457,41.993494568],[-71.53307157,41.993439569],[-71.53300657,41.993406569],[-71.53281657,41.992918569],[-71.53252857,41.992163568],[-71.53235557,41.991438569],[-71.53223557,41.991083568],[-71.53175457,41.989582568],[-71.531120569,41.989464568],[-71.530739569,41.989365568],[-71.530106569,41.989174568],[-71.528313568,41.988541568],[-71.528008568,41.988415568],[-71.527664568,41.988232568],[-71.527084568,41.987851568],[-71.526382567,41.987374568],[-71.525986567,41.987114567],[-71.525658567,41.986931568],[-71.525494567,41.986853568],[-71.525093567,41.986664567],[-71.524811567,41.986554568],[-71.524452567,41.986416567],[-71.523857567,41.986203567],[-71.523796567,41.986184568],[-71.523773567,41.986172568],[-71.523270567,41.986000568],[-71.522758566,41.985806567],[-71.522354566,41.985661568],[-71.522171566,41.986584568],[-71.522018566,41.987378568],[-71.521790566,41.988720568],[-71.521721566,41.989100569],[-71.521713566,41.989117568],[-71.521584566,41.989849568],[-71.521507566,41.990231569],[-71.521255566,41.991543568],[-71.521246566,41.991560568],[-71.521027566,41.992737569],[-71.520996566,41.992966569],[-71.520996566,41.993130569],[-71.521057566,41.993348569],[-71.519890566,41.993866569],[-71.519379565,41.994084569],[-71.519028565,41.994217569],[-71.518814565,41.99426757],[-71.518715565,41.994255569],[-71.518333565,41.994213569],[-71.517815565,41.994175569],[-71.517448565,41.99481257],[-71.517380565,41.99492757],[-71.517113564,41.99539257],[-71.517082565,41.99547657],[-71.517058565,41.99568557],[-71.517059565,41.99572857],[-71.517059565,41.99576257],[-71.516968565,41.99576657],[-71.516823564,41.99578957],[-71.516609564,41.995854569],[-71.515434565,41.99617457],[-71.515205564,41.99624357],[-71.515099564,41.996300569],[-71.515015564,41.99635457],[-71.514900564,41.99645757],[-71.514801564,41.99655657],[-71.514778564,41.996571569],[-71.514702564,41.99665557],[-71.514587564,41.99675857],[-71.514465564,41.99689157],[-71.514297564,41.99709457],[-71.513855564,41.99765857],[-71.513573564,41.99804057],[-71.512253564,41.99749857],[-71.511475563,41.99717457],[-71.511230563,41.99749457],[-71.510696563,41.998207571],[-71.510620562,41.99831857],[-71.509872563,41.999272571]]]]}}"}, +{"type": "precinct", "typeId": 3907, "areaId": 26017, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":356,\"NAME\":\"3907\",\"SHAPE_Length\":0.059931378645865,\"SHAPE_Area\":-0.00015684212379713},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.507950562,41.998474571],[-71.508728562,41.99879557],[-71.509872563,41.999272571],[-71.510620562,41.99831857],[-71.510696563,41.998207571],[-71.511230563,41.99749457],[-71.511475563,41.99717457],[-71.512253564,41.99749857],[-71.513573564,41.99804057],[-71.513855564,41.99765857],[-71.514297564,41.99709457],[-71.514465564,41.99689157],[-71.514587564,41.99675857],[-71.514702564,41.99665557],[-71.514778564,41.996571569],[-71.514801564,41.99655657],[-71.514900564,41.99645757],[-71.515015564,41.99635457],[-71.515099564,41.996300569],[-71.515205564,41.99624357],[-71.515434565,41.99617457],[-71.516609564,41.995854569],[-71.516823564,41.99578957],[-71.516968565,41.99576657],[-71.517059565,41.99576257],[-71.517059565,41.99572857],[-71.517058565,41.99568557],[-71.517082565,41.99547657],[-71.517113564,41.99539257],[-71.517380565,41.99492757],[-71.517448565,41.99481257],[-71.517815565,41.994175569],[-71.518333565,41.994213569],[-71.518715565,41.994255569],[-71.518814565,41.99426757],[-71.519028565,41.994217569],[-71.519379565,41.994084569],[-71.519890566,41.993866569],[-71.521057566,41.993348569],[-71.520996566,41.993130569],[-71.520996566,41.992966569],[-71.521027566,41.992737569],[-71.521246566,41.991560568],[-71.521255566,41.991543568],[-71.521507566,41.990231569],[-71.521584566,41.989849568],[-71.521713566,41.989117568],[-71.521721566,41.989100569],[-71.521790566,41.988720568],[-71.522018566,41.987378568],[-71.522171566,41.986584568],[-71.522354566,41.985661568],[-71.522072566,41.985592567],[-71.521645566,41.985478567],[-71.521545566,41.985455567],[-71.521141566,41.985356568],[-71.520630565,41.985215568],[-71.520424566,41.985127567],[-71.520241565,41.985035567],[-71.520203565,41.985012567],[-71.519997566,41.984898567],[-71.519569565,41.984642567],[-71.519501565,41.984593568],[-71.519150565,41.984337568],[-71.518806565,41.984131567],[-71.518547565,41.983971568],[-71.518066565,41.983704567],[-71.517799564,41.983597567],[-71.517754565,41.983578568],[-71.517624564,41.983548567],[-71.517235564,41.983445568],[-71.516762564,41.983418567],[-71.516129564,41.983349567],[-71.515816564,41.983288568],[-71.515694563,41.983261567],[-71.515419563,41.983147567],[-71.515274564,41.983071567],[-71.515160564,41.983014568],[-71.515079564,41.982933567],[-71.512992563,41.982785567],[-71.507070877,41.981746807],[-71.507001561,41.983285568],[-71.507198561,41.983404568],[-71.507504561,41.983541568],[-71.507565561,41.983582568],[-71.507616561,41.983624567],[-71.507659561,41.983669568],[-71.507694561,41.983720567],[-71.507718561,41.983774568],[-71.507735561,41.983830568],[-71.507741561,41.983904568],[-71.507759561,41.983959567],[-71.507852561,41.984088568],[-71.507921561,41.984207567],[-71.507996561,41.984368568],[-71.508007561,41.984491568],[-71.508055561,41.984693568],[-71.508077561,41.984755567],[-71.508105561,41.984816568],[-71.508145561,41.984877568],[-71.508199562,41.984934568],[-71.508312562,41.985030568],[-71.508381561,41.985070568],[-71.508449562,41.985099568],[-71.508592561,41.985313568],[-71.508616561,41.985431568],[-71.508634561,41.985489568],[-71.508749561,41.985661568],[-71.508789561,41.985714568],[-71.508835562,41.985761568],[-71.508942561,41.985839568],[-71.509004561,41.985894568],[-71.509041561,41.985924568],[-71.509121561,41.985978568],[-71.509313561,41.986131568],[-71.509366562,41.986205568],[-71.509427562,41.986326568],[-71.509478562,41.986386568],[-71.509513562,41.986456568],[-71.509539562,41.986527568],[-71.509569562,41.986592568],[-71.509601562,41.986722568],[-71.509637562,41.986797568],[-71.509689562,41.986865568],[-71.509726562,41.986936569],[-71.509753562,41.987012569],[-71.509824562,41.987144568],[-71.509951562,41.987336568],[-71.509969562,41.987379568],[-71.509975563,41.987394568],[-71.509978562,41.987455568],[-71.510010562,41.987524568],[-71.510039562,41.987574568],[-71.510128562,41.987700568],[-71.510147562,41.987759568],[-71.510199562,41.987817568],[-71.510439563,41.988184569],[-71.510461563,41.988236569],[-71.510518563,41.988326568],[-71.510532562,41.988410568],[-71.510147562,41.988461568],[-71.510124562,41.988469569],[-71.510101562,41.988476569],[-71.510071563,41.988530569],[-71.509995562,41.989022569],[-71.509990562,41.989163568],[-71.509979562,41.989229569],[-71.509979562,41.989285569],[-71.509933562,41.989544569],[-71.509903562,41.989823568],[-71.509872562,41.990052569],[-71.509857563,41.990368569],[-71.509857563,41.990780569],[-71.509880562,41.990792569],[-71.509880562,41.990963569],[-71.509903562,41.991269569],[-71.509964562,41.991520569],[-71.509979562,41.991573569],[-71.510155562,41.992188569],[-71.510361563,41.992855569],[-71.510567562,41.993534569],[-71.510750563,41.994103569],[-71.510818562,41.994351569],[-71.510712563,41.994526569],[-71.510628563,41.99471757],[-71.509995562,41.99553357],[-71.509636563,41.99602257],[-71.509506563,41.99620157],[-71.509163562,41.99662157],[-71.508675562,41.99725457],[-71.508369562,41.99760957],[-71.508057562,41.99811657],[-71.507980562,41.998299571],[-71.507950562,41.998474571]]]]}}"}, +{"type": "precinct", "typeId": 3908, "areaId": 26015, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":354,\"NAME\":\"3908\",\"SHAPE_Length\":0.067913795517776,\"SHAPE_Area\":-0.00027135757253201},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.489547555,41.979358567],[-71.489638555,41.979600568],[-71.489716555,41.979805567],[-71.489784555,41.980008568],[-71.489960555,41.980454568],[-71.490051555,41.980648568],[-71.490227555,41.980965568],[-71.490463555,41.981320568],[-71.490524555,41.981404567],[-71.490578555,41.981491568],[-71.490639555,41.981575567],[-71.490692555,41.981667568],[-71.490852555,41.981907567],[-71.491020555,41.982182568],[-71.491196555,41.982514568],[-71.491356556,41.982918568],[-71.491547555,41.983372568],[-71.492180556,41.984932568],[-71.492386556,41.985421568],[-71.492540557,41.985808568],[-71.492645556,41.986073569],[-71.492798556,41.986439569],[-71.492930557,41.986788569],[-71.492966557,41.986882568],[-71.492996556,41.987042569],[-71.493042557,41.987328568],[-71.493103557,41.987656569],[-71.493149556,41.988030568],[-71.493256557,41.988659569],[-71.493340557,41.988949569],[-71.493431557,41.989182569],[-71.493538556,41.98949157],[-71.493652557,41.989788569],[-71.493729557,41.989960569],[-71.493767557,41.990051569],[-71.493843557,41.990235569],[-71.493980557,41.990528569],[-71.494156557,41.990841569],[-71.494736557,41.99180357],[-71.495033558,41.992306569],[-71.495438558,41.992966569],[-71.495499558,41.99310357],[-71.495689558,41.99368757],[-71.495743558,41.99388957],[-71.495850558,41.99429057],[-71.496117558,41.99524057],[-71.496162558,41.99543457],[-71.496239558,41.99559157],[-71.496284558,41.99566757],[-71.496368558,41.99576657],[-71.496544558,41.995922571],[-71.496925559,41.99626657],[-71.497086558,41.99641557],[-71.497246558,41.99655257],[-71.497406558,41.99670857],[-71.497604559,41.996937571],[-71.497719559,41.99713957],[-71.497787558,41.997284571],[-71.498199558,41.99809357],[-71.498253559,41.99807457],[-71.498352559,41.998051571],[-71.500229559,41.998120571],[-71.50181656,41.99819257],[-71.50235056,41.99821557],[-71.50273156,41.998242571],[-71.503090561,41.99824957],[-71.503510561,41.998257571],[-71.503975561,41.998280571],[-71.504395561,41.99830757],[-71.505211561,41.998337571],[-71.505653561,41.99834557],[-71.506111562,41.998364571],[-71.506645561,41.99839457],[-71.507034561,41.99841057],[-71.507545562,41.99842957],[-71.507675562,41.99843357],[-71.507797562,41.99844457],[-71.507950562,41.998474571],[-71.507980562,41.998299571],[-71.508057562,41.99811657],[-71.508369562,41.99760957],[-71.508675562,41.99725457],[-71.509163562,41.99662157],[-71.509506563,41.99620157],[-71.509636563,41.99602257],[-71.509995562,41.99553357],[-71.510628563,41.99471757],[-71.510712563,41.994526569],[-71.510818562,41.994351569],[-71.510750563,41.994103569],[-71.510567562,41.993534569],[-71.510361563,41.992855569],[-71.510155562,41.992188569],[-71.509979562,41.991573569],[-71.509964562,41.991520569],[-71.509903562,41.991269569],[-71.509880562,41.990963569],[-71.509880562,41.990792569],[-71.509857563,41.990780569],[-71.509857563,41.990368569],[-71.509872562,41.990052569],[-71.509903562,41.989823568],[-71.509933562,41.989544569],[-71.509979562,41.989285569],[-71.509979562,41.989229569],[-71.509990562,41.989163568],[-71.509995562,41.989022569],[-71.510071563,41.988530569],[-71.510101562,41.988476569],[-71.510124562,41.988469569],[-71.510147562,41.988461568],[-71.510532562,41.988410568],[-71.510518563,41.988326568],[-71.510461563,41.988236569],[-71.510439563,41.988184569],[-71.510199562,41.987817568],[-71.510147562,41.987759568],[-71.510128562,41.987700568],[-71.510039562,41.987574568],[-71.510010562,41.987524568],[-71.509978562,41.987455568],[-71.509975563,41.987394568],[-71.509969562,41.987379568],[-71.509951562,41.987336568],[-71.509824562,41.987144568],[-71.509753562,41.987012569],[-71.509726562,41.986936569],[-71.509689562,41.986865568],[-71.509637562,41.986797568],[-71.509601562,41.986722568],[-71.509569562,41.986592568],[-71.509539562,41.986527568],[-71.509513562,41.986456568],[-71.509478562,41.986386568],[-71.509427562,41.986326568],[-71.509366562,41.986205568],[-71.509313561,41.986131568],[-71.509121561,41.985978568],[-71.509041561,41.985924568],[-71.509004561,41.985894568],[-71.508942561,41.985839568],[-71.508835562,41.985761568],[-71.508789561,41.985714568],[-71.508749561,41.985661568],[-71.508634561,41.985489568],[-71.508616561,41.985431568],[-71.508592561,41.985313568],[-71.508449562,41.985099568],[-71.508381561,41.985070568],[-71.508312562,41.985030568],[-71.508199562,41.984934568],[-71.508145561,41.984877568],[-71.508105561,41.984816568],[-71.508077561,41.984755567],[-71.508055561,41.984693568],[-71.508007561,41.984491568],[-71.507996561,41.984368568],[-71.507921561,41.984207567],[-71.507852561,41.984088568],[-71.507759561,41.983959567],[-71.507741561,41.983904568],[-71.507735561,41.983830568],[-71.507718561,41.983774568],[-71.507694561,41.983720567],[-71.507659561,41.983669568],[-71.507616561,41.983624567],[-71.507565561,41.983582568],[-71.507504561,41.983541568],[-71.507198561,41.983404568],[-71.507001561,41.983285568],[-71.507070877,41.981746807],[-71.50584956,41.981532568],[-71.505352561,41.981445567],[-71.50463656,41.981319568],[-71.500579558,41.980692567],[-71.499427558,41.980549567],[-71.493721556,41.979859567],[-71.491746555,41.979620567],[-71.489687555,41.979372567],[-71.489547555,41.979358567]]]]}}"}, +{"type": "precinct", "typeId": 3909, "areaId": 26023, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":362,\"NAME\":\"3909\",\"SHAPE_Length\":0.1022304714693,\"SHAPE_Area\":-0.00044095147231769},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.47282655,41.994164571],[-71.472726551,41.994268571],[-71.47160755,41.995429571],[-71.467359549,41.999838572],[-71.467311549,41.999884572],[-71.466992549,42.000217572],[-71.466359548,42.000868572],[-71.465829548,42.001421572],[-71.465352549,42.001914572],[-71.463733548,42.003594572],[-71.460566547,42.006877574],[-71.460167547,42.007291574],[-71.460163547,42.007295574],[-71.459891547,42.007578574],[-71.459877546,42.007729573],[-71.459846547,42.007779574],[-71.459793547,42.007981573],[-71.459747547,42.008332573],[-71.459747547,42.008366574],[-71.459686547,42.008747574],[-71.459641547,42.009110574],[-71.459488546,42.009766574],[-71.459351546,42.010231574],[-71.459297547,42.010559574],[-71.459244547,42.010865574],[-71.459183547,42.011422574],[-71.459175546,42.011494574],[-71.459145547,42.011639575],[-71.459122547,42.011921574],[-71.459076546,42.012150575],[-71.459068547,42.012223575],[-71.459045547,42.012299575],[-71.459030547,42.012379575],[-71.459007547,42.012455575],[-71.458977547,42.012608575],[-71.458908547,42.012909575],[-71.458878547,42.013047575],[-71.458832547,42.013321575],[-71.458794547,42.013462575],[-71.458755547,42.013642575],[-71.458733547,42.013821575],[-71.458733547,42.013893575],[-71.458725546,42.013966574],[-71.458542547,42.014691575],[-71.458423547,42.015533575],[-71.458402547,42.015682575],[-71.458336546,42.016159575],[-71.458321547,42.016331575],[-71.458313547,42.016358576],[-71.458313547,42.016419576],[-71.458282547,42.016728576],[-71.458237547,42.017281576],[-71.458214547,42.017487576],[-71.458157547,42.017656575],[-71.458104546,42.017806576],[-71.461827987,42.017761122],[-71.483689802,42.017403822],[-71.483689555,42.017403575],[-71.483672555,42.017387575],[-71.483565555,42.017334575],[-71.483498555,42.017292575],[-71.483284555,42.017155575],[-71.483215555,42.017098575],[-71.483086555,42.016976575],[-71.483025554,42.016892574],[-71.482979555,42.016804575],[-71.482925555,42.016716574],[-71.482803555,42.016568575],[-71.482765555,42.016518575],[-71.482712554,42.016461575],[-71.482483554,42.016247575],[-71.482452555,42.016228574],[-71.482246554,42.016049575],[-71.481987555,42.015854575],[-71.481895554,42.015759575],[-71.481514554,42.015370574],[-71.481087554,42.014904574],[-71.480995554,42.014813574],[-71.480919554,42.014717574],[-71.480835554,42.014622575],[-71.480766554,42.014515574],[-71.480705554,42.014405574],[-71.480659554,42.014340574],[-71.480637554,42.014294575],[-71.480453554,42.014023575],[-71.480354553,42.013893574],[-71.480271554,42.013799574],[-71.480067554,42.013597574],[-71.479996554,42.013527574],[-71.479866553,42.013413574],[-71.479797554,42.013356574],[-71.479668554,42.013237574],[-71.479256554,42.012879574],[-71.479042554,42.012684574],[-71.478752554,42.012432574],[-71.478561553,42.012230574],[-71.478462553,42.012093574],[-71.478394553,42.011994574],[-71.478294553,42.011799574],[-71.478142553,42.011414574],[-71.478126553,42.011361574],[-71.478111553,42.011315573],[-71.477913553,42.010876574],[-71.477898553,42.010842574],[-71.477890553,42.010807573],[-71.477829553,42.010670573],[-71.477638553,42.010121574],[-71.477577553,42.009861574],[-71.477562553,42.009739573],[-71.477539553,42.009617573],[-71.477470552,42.009121573],[-71.477455553,42.008950574],[-71.477432552,42.008778574],[-71.477417553,42.008610573],[-71.477379553,42.008301573],[-71.477379553,42.008274573],[-71.477333552,42.007981573],[-71.477280552,42.007599573],[-71.477272552,42.007489573],[-71.477272552,42.007283573],[-71.477295552,42.007122573],[-71.477318552,42.007035573],[-71.477325553,42.006989573],[-71.477356552,42.006897573],[-71.477394552,42.006810573],[-71.477440553,42.006726573],[-71.477531552,42.006535573],[-71.477608552,42.006398573],[-71.477642552,42.006330573],[-71.477699553,42.006218573],[-71.477875553,42.005906573],[-71.477928553,42.005799573],[-71.477989553,42.005696573],[-71.478058552,42.005593573],[-71.478134552,42.005490573],[-71.478279553,42.005310572],[-71.478516553,42.005074572],[-71.478699553,42.004914573],[-71.478928553,42.004727572],[-71.479431553,42.004326573],[-71.479568553,42.004200572],[-71.479752553,42.004006572],[-71.479836553,42.003907572],[-71.480034553,42.003586572],[-71.480118554,42.003415573],[-71.480240553,42.003079572],[-71.480385553,42.002488572],[-71.480388553,42.002451572],[-71.480408554,42.002243572],[-71.480423553,42.001961572],[-71.480476553,42.001416572],[-71.480492553,42.001347572],[-71.480568553,42.000780572],[-71.480576553,42.000763572],[-71.480667553,42.000489572],[-71.480804553,42.000286572],[-71.480888553,42.000206572],[-71.480934554,42.000164571],[-71.480988553,42.000130572],[-71.481216553,41.999958572],[-71.481445553,41.999745572],[-71.481628553,41.999558571],[-71.481781553,41.999367571],[-71.481842553,41.999264571],[-71.481888554,41.999161572],[-71.481911554,41.999070571],[-71.481949554,41.998787571],[-71.482040554,41.997672571],[-71.482048554,41.997567571],[-71.482063554,41.997315571],[-71.482063554,41.997101571],[-71.482040553,41.996655571],[-71.482025554,41.996537571],[-71.482018553,41.996418571],[-71.481987554,41.996148571],[-71.481979553,41.996010571],[-71.481979553,41.995846571],[-71.481979553,41.995797571],[-71.481995553,41.995690571],[-71.482025554,41.995591571],[-71.482056553,41.995533571],[-71.482117553,41.995400571],[-71.482170553,41.99530457],[-71.482231553,41.99521357],[-71.482300554,41.995121571],[-71.482368553,41.99501157],[-71.482513554,41.994793571],[-71.482719553,41.99452657],[-71.482788554,41.994461571],[-71.483025553,41.994267571],[-71.483116554,41.99419857],[-71.483292554,41.99404657],[-71.483444554,41.993874571],[-71.483505554,41.99378657],[-71.483559554,41.99369557],[-71.483627554,41.993508571],[-71.483650553,41.993409571],[-71.483650553,41.993313571],[-71.483627554,41.99319957],[-71.483475553,41.99281757],[-71.483406554,41.99267257],[-71.483345554,41.99252457],[-71.483086553,41.99183357],[-71.483070553,41.99170057],[-71.483070553,41.99163557],[-71.483086553,41.99157457],[-71.483116554,41.99151357],[-71.483154554,41.99145557],[-71.483063553,41.991383569],[-71.482811553,41.99114657],[-71.482224554,41.990605569],[-71.481949553,41.99031957],[-71.481804553,41.99007557],[-71.481728553,41.989922569],[-71.481697553,41.989785569],[-71.481659552,41.989632569],[-71.481628553,41.988812569],[-71.481622552,41.988500569],[-71.481621552,41.988449569],[-71.481583552,41.988160569],[-71.481522553,41.987912569],[-71.481429552,41.987680569],[-71.481331552,41.987473569],[-71.481201553,41.987236569],[-71.481117552,41.987137569],[-71.481026553,41.987011569],[-71.480812553,41.986790569],[-71.480659553,41.986657569],[-71.480476552,41.986500569],[-71.480327552,41.986386569],[-71.479767552,41.986966569],[-71.479719552,41.987018569],[-71.479389552,41.987361569],[-71.479048552,41.98771557],[-71.478774551,41.987998569],[-71.478702552,41.988078569],[-71.476213551,41.99065457],[-71.474655551,41.99227457],[-71.47296655,41.994014571],[-71.47291055,41.994078571],[-71.47282655,41.994164571]]]]}}"}, +{"type": "precinct", "typeId": 3910, "areaId": 26019, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":358,\"NAME\":\"3910\",\"SHAPE_Length\":0.092512153696841,\"SHAPE_Area\":-0.00025646707357802},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.483154554,41.99145557],[-71.483116554,41.99151357],[-71.483086553,41.99157457],[-71.483070553,41.99163557],[-71.483070553,41.99170057],[-71.483086553,41.99183357],[-71.483345554,41.99252457],[-71.483406554,41.99267257],[-71.483475553,41.99281757],[-71.483627554,41.99319957],[-71.483650553,41.993313571],[-71.483650553,41.993409571],[-71.483627554,41.993508571],[-71.483559554,41.99369557],[-71.483505554,41.99378657],[-71.483444554,41.993874571],[-71.483292554,41.99404657],[-71.483116554,41.99419857],[-71.483025553,41.994267571],[-71.482788554,41.994461571],[-71.482719553,41.99452657],[-71.482513554,41.994793571],[-71.482368553,41.99501157],[-71.482300554,41.995121571],[-71.482231553,41.99521357],[-71.482170553,41.99530457],[-71.482117553,41.995400571],[-71.482056553,41.995533571],[-71.482025554,41.995591571],[-71.481995553,41.995690571],[-71.481979553,41.995797571],[-71.481979553,41.995846571],[-71.481979553,41.996010571],[-71.481987554,41.996148571],[-71.482018553,41.996418571],[-71.482025554,41.996537571],[-71.482040553,41.996655571],[-71.482063554,41.997101571],[-71.482063554,41.997315571],[-71.482048554,41.997567571],[-71.482040554,41.997672571],[-71.481949554,41.998787571],[-71.481911554,41.999070571],[-71.481888554,41.999161572],[-71.481842553,41.999264571],[-71.481781553,41.999367571],[-71.481628553,41.999558571],[-71.481445553,41.999745572],[-71.481216553,41.999958572],[-71.480988553,42.000130572],[-71.480934554,42.000164571],[-71.480888553,42.000206572],[-71.480804553,42.000286572],[-71.480667553,42.000489572],[-71.480576553,42.000763572],[-71.480568553,42.000780572],[-71.480492553,42.001347572],[-71.480476553,42.001416572],[-71.480423553,42.001961572],[-71.480408554,42.002243572],[-71.480388553,42.002451572],[-71.480385553,42.002488572],[-71.480240553,42.003079572],[-71.480118554,42.003415573],[-71.480034553,42.003586572],[-71.479836553,42.003907572],[-71.479752553,42.004006572],[-71.479568553,42.004200572],[-71.479431553,42.004326573],[-71.478928553,42.004727572],[-71.478699553,42.004914573],[-71.478516553,42.005074572],[-71.478279553,42.005310572],[-71.478134552,42.005490573],[-71.478058552,42.005593573],[-71.477989553,42.005696573],[-71.477928553,42.005799573],[-71.477875553,42.005906573],[-71.477699553,42.006218573],[-71.477642552,42.006330573],[-71.477608552,42.006398573],[-71.477531552,42.006535573],[-71.477440553,42.006726573],[-71.477394552,42.006810573],[-71.477356552,42.006897573],[-71.477325553,42.006989573],[-71.477318552,42.007035573],[-71.477295552,42.007122573],[-71.477272552,42.007283573],[-71.477272552,42.007489573],[-71.477280552,42.007599573],[-71.477333552,42.007981573],[-71.477379553,42.008274573],[-71.477379553,42.008301573],[-71.477417553,42.008610573],[-71.477432552,42.008778574],[-71.477455553,42.008950574],[-71.477470552,42.009121573],[-71.477539553,42.009617573],[-71.477562553,42.009739573],[-71.477577553,42.009861574],[-71.477638553,42.010121574],[-71.477829553,42.010670573],[-71.477890553,42.010807573],[-71.477898553,42.010842574],[-71.477913553,42.010876574],[-71.478111553,42.011315573],[-71.478126553,42.011361574],[-71.478142553,42.011414574],[-71.478294553,42.011799574],[-71.478394553,42.011994574],[-71.478462553,42.012093574],[-71.478561553,42.012230574],[-71.478752554,42.012432574],[-71.479042554,42.012684574],[-71.479256554,42.012879574],[-71.479668554,42.013237574],[-71.479797554,42.013356574],[-71.479866553,42.013413574],[-71.479996554,42.013527574],[-71.480067554,42.013597574],[-71.480271554,42.013799574],[-71.480354553,42.013893574],[-71.480453554,42.014023575],[-71.480637554,42.014294575],[-71.480659554,42.014340574],[-71.480705554,42.014405574],[-71.480766554,42.014515574],[-71.480835554,42.014622575],[-71.480919554,42.014717574],[-71.480995554,42.014813574],[-71.481087554,42.014904574],[-71.481514554,42.015370574],[-71.481895554,42.015759575],[-71.481987555,42.015854575],[-71.482246554,42.016049575],[-71.482452555,42.016228574],[-71.482483554,42.016247575],[-71.482712554,42.016461575],[-71.482765555,42.016518575],[-71.482803555,42.016568575],[-71.482925555,42.016716574],[-71.482979555,42.016804575],[-71.483025554,42.016892574],[-71.483086555,42.016976575],[-71.483215555,42.017098575],[-71.483284555,42.017155575],[-71.483498555,42.017292575],[-71.483565555,42.017334575],[-71.483672555,42.017387575],[-71.483689555,42.017403575],[-71.483689802,42.017403822],[-71.488661287,42.017321988],[-71.489105557,42.017306574],[-71.489427557,42.017306574],[-71.489571557,42.016930574],[-71.489830557,42.016281575],[-71.489906557,42.016030575],[-71.490005558,42.015755575],[-71.490051557,42.015599575],[-71.489166557,42.015625574],[-71.489189556,42.015408575],[-71.489235557,42.015072574],[-71.489304556,42.014687575],[-71.489357557,42.014279574],[-71.489464557,42.013646574],[-71.489471557,42.013628574],[-71.489517557,42.013260574],[-71.489555557,42.013066574],[-71.489594557,42.012734574],[-71.489609557,42.012677574],[-71.489636556,42.012632574],[-71.489329557,42.012757573],[-71.489224557,42.012865574],[-71.489060557,42.012991573],[-71.489117557,42.013110573],[-71.488358556,42.012776574],[-71.487907556,42.013329574],[-71.487381556,42.013081574],[-71.487099556,42.012955574],[-71.486916556,42.012894573],[-71.486839556,42.012883574],[-71.486549556,42.012871574],[-71.486588556,42.012017573],[-71.486588556,42.011826573],[-71.486595555,42.011788573],[-71.486511556,42.011578574],[-71.486435556,42.011456573],[-71.486382555,42.011330574],[-71.486290556,42.011162573],[-71.486252556,42.011078574],[-71.486198556,42.010991573],[-71.486153556,42.010903574],[-71.486115556,42.010811573],[-71.486092555,42.010716573],[-71.486061556,42.010517573],[-71.486058556,42.010492574],[-71.486015555,42.010083574],[-71.485970555,42.009804573],[-71.485901555,42.009495573],[-71.485901555,42.009468573],[-71.485832556,42.009194573],[-71.485832556,42.009175573],[-71.485756555,42.008835573],[-71.485718555,42.008690573],[-71.485687555,42.008545573],[-71.485649555,42.008397573],[-71.485649555,42.008374573],[-71.485626555,42.008294573],[-71.485619555,42.008244573],[-71.485657555,42.007912573],[-71.485672555,42.007775573],[-71.485680555,42.007637573],[-71.485695556,42.007557573],[-71.485725555,42.007340573],[-71.485741555,42.007077573],[-71.485752556,42.006606573],[-71.485764555,42.006062573],[-71.485786555,42.005844573],[-71.485901555,42.005257572],[-71.487175556,42.005577573],[-71.487511555,42.005665572],[-71.487930556,42.006077572],[-71.488640557,42.006653572],[-71.488663556,42.006668573],[-71.489166557,42.007111573],[-71.489204557,42.007145572],[-71.489235556,42.007180572],[-71.489632557,42.007470573],[-71.489708557,42.007515572],[-71.489746557,42.007538573],[-71.489815556,42.007565573],[-71.489883557,42.007595573],[-71.490028556,42.007645573],[-71.490097557,42.007660573],[-71.491089557,42.008004573],[-71.491257557,42.008061573],[-71.491341557,42.008084573],[-71.491394557,42.008091573],[-71.491447558,42.008103573],[-71.491707557,42.008133573],[-71.491951558,42.008145573],[-71.492096557,42.008141573],[-71.492188558,42.008122573],[-71.492279557,42.008088573],[-71.492653558,42.007969573],[-71.492867558,42.007904572],[-71.493393558,42.007740573],[-71.493462558,42.007714573],[-71.493599558,42.007672572],[-71.493668558,42.007656573],[-71.493874558,42.007626573],[-71.494034558,42.007618573],[-71.494232558,42.007611572],[-71.494911558,42.007611572],[-71.495231559,42.007622573],[-71.495781558,42.007611572],[-71.495824558,42.007622573],[-71.496554559,42.007608573],[-71.496712559,42.007594572],[-71.496895559,42.007569573],[-71.497130559,42.007510573],[-71.498024559,42.007267572],[-71.49879556,42.007241572],[-71.49920756,42.006955572],[-71.499062559,42.006836572],[-71.49897056,42.006737572],[-71.498924559,42.006649573],[-71.49887156,42.006367572],[-71.49885656,42.006325572],[-71.498810559,42.006260573],[-71.498552559,42.005843572],[-71.498497559,42.005761572],[-71.49842856,42.005696573],[-71.498398559,42.005684572],[-71.498337559,42.005673572],[-71.498199559,42.005677573],[-71.49800156,42.005677573],[-71.497993559,42.005085572],[-71.498283559,42.005051572],[-71.498474559,42.005009572],[-71.498657559,42.004952572],[-71.498695559,42.004933572],[-71.498726559,42.004910572],[-71.498749559,42.004883572],[-71.498764559,42.004853572],[-71.498764559,42.004822572],[-71.49875656,42.004792572],[-71.498734559,42.004746572],[-71.49871856,42.004731572],[-71.498710559,42.004714572],[-71.498520559,42.004532572],[-71.497589559,42.003823572],[-71.497520559,42.003762572],[-71.497391559,42.003632571],[-71.497253559,42.003456571],[-71.497215559,42.003395572],[-71.497169559,42.003334572],[-71.497093559,42.003189572],[-71.497047558,42.003090571],[-71.497009558,42.003022572],[-71.496979559,42.002938572],[-71.496872558,42.002697571],[-71.496796558,42.002556572],[-71.496742559,42.002484571],[-71.496681558,42.002415572],[-71.496475559,42.002217572],[-71.496399559,42.002156571],[-71.496239558,42.002041572],[-71.496071558,42.001938571],[-71.495964558,42.001885571],[-71.495905558,42.001860571],[-71.495630558,42.001741571],[-71.495537558,42.001717572],[-71.495003558,42.001545571],[-71.494576558,42.001404572],[-71.494354558,42.001305572],[-71.493317558,42.000851571],[-71.493011557,42.000729571],[-71.492867557,42.000660572],[-71.492775557,42.000611571],[-71.492645557,42.000534571],[-71.492409557,42.000389572],[-71.492210557,42.000245571],[-71.492111557,42.000157572],[-71.492058557,42.000100572],[-71.492020557,42.000065571],[-71.491837557,41.999863572],[-71.491714557,41.999710572],[-71.491600557,41.999543571],[-71.491570556,41.999485571],[-71.491554557,41.999451571],[-71.491058557,41.998642571],[-71.490761557,41.998143571],[-71.490570557,41.997845571],[-71.490552556,41.997814571],[-71.490524556,41.997765571],[-71.490417556,41.997616571],[-71.490227556,41.997403571],[-71.490150556,41.99733457],[-71.489647556,41.996834571],[-71.488762555,41.995957571],[-71.488670556,41.995861571],[-71.488365556,41.99557957],[-71.488304556,41.995530571],[-71.487950555,41.995220571],[-71.487930555,41.99520957],[-71.487816555,41.995106571],[-71.487221555,41.99462557],[-71.487165555,41.994581571],[-71.486794555,41.99429457],[-71.486328555,41.99392757],[-71.485352554,41.99315057],[-71.485054554,41.99291357],[-71.484734554,41.99266557],[-71.483711553,41.99189857],[-71.483665554,41.99186157],[-71.483154554,41.99145557]]]]}}"}, +{"type": "precinct", "typeId": 3911, "areaId": 26018, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":357,\"NAME\":\"3911\",\"SHAPE_Length\":0.056894281536842,\"SHAPE_Area\":-0.00013488134507428},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.49879556,42.007241572],[-71.498024559,42.007267572],[-71.497130559,42.007510573],[-71.496895559,42.007569573],[-71.496712559,42.007594572],[-71.496554559,42.007608573],[-71.495824558,42.007622573],[-71.495781558,42.007611572],[-71.495231559,42.007622573],[-71.494911558,42.007611572],[-71.494232558,42.007611572],[-71.494034558,42.007618573],[-71.493874558,42.007626573],[-71.493668558,42.007656573],[-71.493599558,42.007672572],[-71.493462558,42.007714573],[-71.493393558,42.007740573],[-71.492867558,42.007904572],[-71.492653558,42.007969573],[-71.492279557,42.008088573],[-71.492188558,42.008122573],[-71.492096557,42.008141573],[-71.491951558,42.008145573],[-71.491707557,42.008133573],[-71.491447558,42.008103573],[-71.491394557,42.008091573],[-71.491341557,42.008084573],[-71.491257557,42.008061573],[-71.491089557,42.008004573],[-71.490097557,42.007660573],[-71.490028556,42.007645573],[-71.489883557,42.007595573],[-71.489815556,42.007565573],[-71.489746557,42.007538573],[-71.489708557,42.007515572],[-71.489632557,42.007470573],[-71.489235556,42.007180572],[-71.489204557,42.007145572],[-71.489166557,42.007111573],[-71.488663556,42.006668573],[-71.488640557,42.006653572],[-71.487930556,42.006077572],[-71.487511555,42.005665572],[-71.487175556,42.005577573],[-71.485901555,42.005257572],[-71.485786555,42.005844573],[-71.485764555,42.006062573],[-71.485752556,42.006606573],[-71.485741555,42.007077573],[-71.485725555,42.007340573],[-71.485695556,42.007557573],[-71.485680555,42.007637573],[-71.485672555,42.007775573],[-71.485657555,42.007912573],[-71.485619555,42.008244573],[-71.485626555,42.008294573],[-71.485649555,42.008374573],[-71.485649555,42.008397573],[-71.485687555,42.008545573],[-71.485718555,42.008690573],[-71.485756555,42.008835573],[-71.485832556,42.009175573],[-71.485832556,42.009194573],[-71.485901555,42.009468573],[-71.485901555,42.009495573],[-71.485970555,42.009804573],[-71.486015555,42.010083574],[-71.486058556,42.010492574],[-71.486061556,42.010517573],[-71.486092555,42.010716573],[-71.486115556,42.010811573],[-71.486153556,42.010903574],[-71.486198556,42.010991573],[-71.486252556,42.011078574],[-71.486290556,42.011162573],[-71.486382555,42.011330574],[-71.486435556,42.011456573],[-71.486511556,42.011578574],[-71.486595555,42.011788573],[-71.486588556,42.011826573],[-71.486588556,42.012017573],[-71.486549556,42.012871574],[-71.486839556,42.012883574],[-71.486916556,42.012894573],[-71.487099556,42.012955574],[-71.487381556,42.013081574],[-71.487907556,42.013329574],[-71.488358556,42.012776574],[-71.489117557,42.013110573],[-71.489060557,42.012991573],[-71.489224557,42.012865574],[-71.489329557,42.012757573],[-71.489636556,42.012632574],[-71.489609557,42.012677574],[-71.489594557,42.012734574],[-71.489555557,42.013066574],[-71.489517557,42.013260574],[-71.489471557,42.013628574],[-71.489464557,42.013646574],[-71.489357557,42.014279574],[-71.489304556,42.014687575],[-71.489235557,42.015072574],[-71.489189556,42.015408575],[-71.489166557,42.015625574],[-71.490051557,42.015599575],[-71.490005558,42.015755575],[-71.489906557,42.016030575],[-71.489830557,42.016281575],[-71.489571557,42.016930574],[-71.489427557,42.017306574],[-71.489602911,42.017306464],[-71.491869352,42.017269067],[-71.491928558,42.017266574],[-71.492023558,42.017262574],[-71.492346557,42.017247574],[-71.493305558,42.017206574],[-71.493545558,42.017206574],[-71.494205558,42.017206574],[-71.494385559,42.017206574],[-71.494766558,42.017206574],[-71.495005559,42.017206574],[-71.495308559,42.017206574],[-71.496107,42.017199024],[-71.499505457,42.017142739],[-71.502073243,42.016919128],[-71.502129561,42.016667574],[-71.502182561,42.016426574],[-71.502289561,42.016014574],[-71.500809561,42.015736574],[-71.500336561,42.015644574],[-71.500648561,42.014912574],[-71.50079356,42.014515573],[-71.50108356,42.013760574],[-71.50125956,42.013340574],[-71.501328561,42.013134573],[-71.501350561,42.013016573],[-71.501411561,42.012265574],[-71.501427561,42.011963573],[-71.501442561,42.011814573],[-71.50155656,42.011265573],[-71.501823561,42.010311573],[-71.50174756,42.010281572],[-71.501663561,42.010254573],[-71.501587561,42.010220573],[-71.50151856,42.010182573],[-71.50138156,42.010090573],[-71.50096956,42.009770573],[-71.50093856,42.009747573],[-71.50076356,42.009591573],[-71.50072556,42.009549573],[-71.500710561,42.009518573],[-71.500692561,42.009493573],[-71.500671561,42.009465573],[-71.50061056,42.009323573],[-71.50058756,42.009255573],[-71.50036656,42.008744572],[-71.50024456,42.008446573],[-71.50020656,42.008320573],[-71.50009256,42.008023572],[-71.50006956,42.007981572],[-71.50003856,42.007939573],[-71.49997756,42.007893573],[-71.499893559,42.007836573],[-71.49978656,42.007752572],[-71.49963456,42.007649572],[-71.49929856,42.007447573],[-71.49922256,42.007409573],[-71.49908456,42.007363572],[-71.49904656,42.007344572],[-71.499001559,42.007328573],[-71.49885656,42.007264572],[-71.49879556,42.007241572]]]]}}"}, +{"type": "precinct", "typeId": 3912, "areaId": 26074, "json": "{\"type\":\"Feature\",\"properties\":{\"OBJECTID\":413,\"NAME\":\"3912\",\"SHAPE_Length\":0.059624372975385,\"SHAPE_Area\":-0.00014195113266863},\"geometry\":{\"type\":\"MultiPolygon\",\"coordinates\":[[[[-71.512039564,42.009804573],[-71.512169564,42.009999573],[-71.512299564,42.010231573],[-71.512421564,42.010509573],[-71.512482564,42.010697573],[-71.513427564,42.010704573],[-71.513143564,42.011378573],[-71.513049565,42.011602573],[-71.512881564,42.012096573],[-71.512773564,42.012414573],[-71.512498564,42.013243574],[-71.512322564,42.014013573],[-71.512182564,42.014502573],[-71.512019565,42.015034574],[-71.511689565,42.016109574],[-71.511719564,42.016105574],[-71.511770564,42.016101574],[-71.514306565,42.015906574],[-71.514392565,42.015896574],[-71.516906566,42.015606573],[-71.516944566,42.015604573],[-71.517764566,42.015561574],[-71.518699566,42.015512573],[-71.518806567,42.015506574],[-71.519606567,42.015506574],[-71.519683567,42.015495573],[-71.520306567,42.015406574],[-71.520635567,42.015406574],[-71.520706567,42.015406574],[-71.521606567,42.015406574],[-71.521658567,42.015404574],[-71.522868787,42.015349364],[-71.52418818,42.015258873],[-71.524606568,42.015206573],[-71.524643568,42.015205573],[-71.525354868,42.015178842],[-71.526478906,42.015101726],[-71.527508036,42.015039417],[-71.527606569,42.015006573],[-71.52763957,42.015006573],[-71.527649569,42.015006573],[-71.527936368,42.015006856],[-71.527940092,42.015006535],[-71.528696513,42.014989883],[-71.529117308,42.0149806],[-71.52911557,42.014947573],[-71.52913657,42.014716573],[-71.52919657,42.014530573],[-71.52930957,42.014348573],[-71.52981057,42.013641573],[-71.53008057,42.013269572],[-71.53022257,42.012969573],[-71.530315571,42.012696573],[-71.53039757,42.012418573],[-71.53044357,42.012222572],[-71.53047657,42.012130573],[-71.53046157,42.011792572],[-71.53046157,42.011637572],[-71.53046957,42.011413572],[-71.53046757,42.011324572],[-71.53044157,42.011189572],[-71.53040457,42.011051572],[-71.53037857,42.010898572],[-71.53034657,42.010789572],[-71.53027257,42.010620572],[-71.53014257,42.010383572],[-71.53009957,42.010320572],[-71.52999857,42.010192572],[-71.52996657,42.010156572],[-71.52989257,42.010075572],[-71.52965857,42.009835572],[-71.52962257,42.009798572],[-71.52943657,42.009632572],[-71.529245569,42.009531572],[-71.52902357,42.009394572],[-71.528428569,42.009072571],[-71.528215569,42.008975571],[-71.527957569,42.008815572],[-71.527678569,42.008670572],[-71.527529569,42.008578572],[-71.527384569,42.008526571],[-71.527307569,42.008478572],[-71.527224569,42.008436572],[-71.526924568,42.008266572],[-71.526552568,42.008070572],[-71.526428569,42.007992572],[-71.526295569,42.007923571],[-71.526150568,42.007865571],[-71.526084568,42.007832572],[-71.525898568,42.007721572],[-71.525844569,42.007677572],[-71.525796568,42.007628571],[-71.525747569,42.007586572],[-71.525642568,42.007457571],[-71.525583568,42.007393572],[-71.525453568,42.007195572],[-71.525379569,42.007063571],[-71.525357568,42.007008571],[-71.525321569,42.006869571],[-71.525293568,42.006613572],[-71.525212568,42.006279572],[-71.525160568,42.005962571],[-71.525157568,42.005849572],[-71.525121568,42.005511571],[-71.525115568,42.005381572],[-71.525106568,42.005299571],[-71.524882568,42.005233571],[-71.524628568,42.005158571],[-71.524572568,42.005140571],[-71.524315568,42.005059571],[-71.523643567,42.004818572],[-71.523529567,42.004868571],[-71.522926567,42.005162571],[-71.522812567,42.005227572],[-71.522690567,42.005276571],[-71.522400567,42.005410571],[-71.522041567,42.005566571],[-71.521568567,42.005776571],[-71.521164567,42.005963572],[-71.520837331,42.006105494],[-71.520691104,42.00590369],[-71.520747309,42.005884624],[-71.520673185,42.005798882],[-71.520811138,42.005737876],[-71.520621984,42.005488268],[-71.520931104,42.005368156],[-71.520411994,42.004692573],[-71.519775566,42.004837572],[-71.519569566,42.004895572],[-71.519485566,42.004933572],[-71.519379566,42.005021571],[-71.519211566,42.004921571],[-71.519005566,42.005028572],[-71.518837566,42.005108572],[-71.518799566,42.005131572],[-71.518738566,42.005177571],[-71.518700566,42.005246572],[-71.518684566,42.005288571],[-71.518684566,42.005333571],[-71.518707566,42.005455572],[-71.518746711,42.0056107],[-71.519173121,42.005495904],[-71.51948465,42.005933559],[-71.519815995,42.005891815],[-71.519968429,42.006174363],[-71.520387771,42.006072979],[-71.520523566,42.006241572],[-71.520302567,42.006348571],[-71.520203566,42.006359572],[-71.519958566,42.006375572],[-71.519730566,42.006382572],[-71.519394566,42.006413572],[-71.518959566,42.006470572],[-71.518646566,42.006520571],[-71.517746566,42.006642572],[-71.517525565,42.007054572],[-71.517410565,42.007264572],[-71.517014565,42.007920572],[-71.516830565,42.008221572],[-71.516678566,42.008469572],[-71.516579566,42.008648572],[-71.516464566,42.008839572],[-71.516327566,42.009110572],[-71.516342565,42.009159572],[-71.516022565,42.009205573],[-71.515579565,42.009255572],[-71.515457565,42.009240572],[-71.515297565,42.009182572],[-71.514893565,42.009026572],[-71.514600564,42.008917572],[-71.514137565,42.008744572],[-71.514160565,42.008824572],[-71.513878564,42.008858572],[-71.513741564,42.008881572],[-71.513672565,42.008889572],[-71.513550564,42.008870572],[-71.513474564,42.008839572],[-71.513008564,42.009159572],[-71.512039564,42.009804573]]]]}}"}] diff --git a/data/school.json b/data/school.json new file mode 100644 index 0000000..bb1bef7 --- /dev/null +++ b/data/school.json @@ -0,0 +1 @@ +[{"type":"UNSD","affgeoid":"9700000US4400030","name":"Barrington School District","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.353897,41.75130099906],[-71.351495,41.75263499906],[-71.342395,41.75896499906],[-71.336781,41.76285499906],[-71.332659,41.76571499906],[-71.331997,41.76616499906],[-71.324717,41.77120099906],[-71.31995,41.77450999906],[-71.31792423356,41.77615729326],[-71.317795,41.77610099906],[-71.31638784427,41.77550723089],[-71.29768756485,41.76761639795],[-71.29475805142,41.76638025059],[-71.28440177169,41.76201027988],[-71.286593,41.74240099906],[-71.289002,41.73895899906],[-71.289337,41.73742699906],[-71.2898,41.73380699906],[-71.289494,41.73260099906],[-71.287294,41.72850099906],[-71.287478,41.72380299906],[-71.287604,41.72294899906],[-71.289294,41.71600099906],[-71.292854,41.71175899906],[-71.294039,41.71027999906],[-71.29534369478,41.70720574426],[-71.2988,41.71100799906],[-71.29905,41.70869599906],[-71.301446,41.70644099906],[-71.303804,41.70656699906],[-71.305468,41.70851899906],[-71.307983,41.71275599906],[-71.305759,41.71866199906],[-71.307131,41.72164799906],[-71.31482,41.72380799906],[-71.324188,41.72538199906],[-71.339456,41.72484099906],[-71.341119,41.72909799906],[-71.341119,41.73477399906],[-71.344447,41.73619299906],[-71.34825,41.74204599906],[-71.35229,41.74506099906],[-71.355818,41.74506099906],[-71.353897,41.75130099906]]]]}}},{"type":"UNSD","affgeoid":"9700000US4400065","name":"Bristol-Warren Regional School District","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.306095,41.67257499906],[-71.302627,41.68174699906],[-71.298935,41.68152399906],[-71.293119,41.68834699906],[-71.291217,41.70266599906],[-71.29534369478,41.70720574426],[-71.294039,41.71027999906],[-71.292854,41.71175899906],[-71.289294,41.71600099906],[-71.287604,41.72294899906],[-71.287478,41.72380299906],[-71.287294,41.72850099906],[-71.289494,41.73260099906],[-71.2898,41.73380699906],[-71.289337,41.73742699906],[-71.289002,41.73895899906],[-71.286593,41.74240099906],[-71.28440177169,41.76201027988],[-71.261392,41.75230099906],[-71.25474299447,41.74471835744],[-71.25213074575,41.74173930353],[-71.24533260386,41.73398658421],[-71.24524649557,41.73388838481],[-71.22623673166,41.71220931921],[-71.225791,41.71170099906],[-71.224798,41.71049799906],[-71.227875,41.70549799906],[-71.232975,41.70195299906],[-71.240991,41.69774399906],[-71.243671,41.69840399906],[-71.24581,41.69716199906],[-71.245335,41.69485499906],[-71.242482,41.68793299906],[-71.237635,41.68163499906],[-71.234639,41.67745999906],[-71.235352,41.67213399906],[-71.236778,41.66804999906],[-71.238442,41.66556499906],[-71.240343,41.66556499906],[-71.244384,41.66911599906],[-71.250326,41.66503199906],[-71.253416,41.66059299906],[-71.254604,41.65224699906],[-71.256743,41.65029299906],[-71.257219,41.64674099906],[-71.25956,41.64259499906],[-71.263161,41.64301099906],[-71.267055,41.64494499906],[-71.270075,41.65243899906],[-71.26918,41.65489999906],[-71.267676,41.65739699906],[-71.269103,41.66005999906],[-71.272192,41.66130299906],[-71.277659,41.66627499906],[-71.280366,41.67257499906],[-71.278847,41.67834699906],[-71.282175,41.67958999906],[-71.285502,41.68242999906],[-71.287404,41.68047799906],[-71.289068,41.67958999906],[-71.287637,41.67246299906],[-71.290546,41.66239499906],[-71.293346,41.66023799906],[-71.297862,41.65828399906],[-71.297624,41.65384499906],[-71.299159,41.64953099906],[-71.301396,41.64997799906],[-71.303746,41.65478799906],[-71.304992,41.65934999906],[-71.306095,41.67257499906]]]]}}},{"type":"UNSD","affgeoid":"9700000US4400090","name":"Burrillville School District","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.799242,42.00806499906],[-71.76601,42.00974499906],[-71.75510919805,42.00999592814],[-71.68087581631,42.01170473033],[-71.67802296857,42.01177040095],[-71.66160371444,42.01214836106],[-71.60673402532,42.01341142415],[-71.600443,41.98302699906],[-71.596898,41.96612299906],[-71.590312,41.93366499906],[-71.629387,41.93238099906],[-71.63973,41.93242899906],[-71.662664,41.93185799906],[-71.678472,41.93151599906],[-71.700481,41.93092299906],[-71.709238,41.93072499906],[-71.722423,41.93030399906],[-71.741905,41.92975199906],[-71.79765282895,41.92864647087],[-71.79780125342,41.93236769834],[-71.797922,41.93539499906],[-71.79882688153,41.98521146936],[-71.79886543354,41.98733387436],[-71.799242,42.00806499906]]]]}}},{"type":"UNSD","affgeoid":"9700000US4400120","name":"Central Falls School District","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.407055,41.89190999906],[-71.404691,41.89478399906],[-71.404568,41.89482399906],[-71.397243,41.89678199906],[-71.394296,41.89765199906],[-71.391739,41.89834299906],[-71.39006,41.89931899906],[-71.388268,41.89980499906],[-71.386348,41.89963599906],[-71.3817,41.89706199906],[-71.3817,41.89375174631],[-71.3817,41.89319899906],[-71.38152935439,41.893225767],[-71.381638,41.89269999906],[-71.383093,41.88986999906],[-71.381824,41.88836999906],[-71.380219,41.88792999906],[-71.381008,41.88406699906],[-71.385269,41.88351099906],[-71.386742,41.88331599906],[-71.39231,41.88259899906],[-71.403706,41.88105899906],[-71.405817,41.88723899906],[-71.406227,41.88849099906],[-71.407055,41.89190999906]]]]}}},{"type":"UNSD","affgeoid":"9700000US4400150","name":"Chariho Regional School District","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.803475,41.40406499906],[-71.798805,41.40499499906],[-71.79598,41.40728899906],[-71.797264,41.40724899906],[-71.798374,41.40891899906],[-71.796978,41.41144299906],[-71.797124,41.41369299906],[-71.796318,41.41622399906],[-71.79767369255,41.41691041756],[-71.79723545398,41.42639414864],[-71.79673945896,41.4371277619],[-71.79648590811,41.44261474607],[-71.7956834365,41.45998068665],[-71.79498466265,41.47510254884],[-71.79356831589,41.50575309554],[-71.7925957022,41.52680100701],[-71.79170363083,41.54610593728],[-71.782154,41.54688299906],[-71.751208,41.55112199906],[-71.744267,41.55114399906],[-71.729799,41.55261599906],[-71.715018,41.55420299906],[-71.663399,41.55966899906],[-71.66143,41.55985399906],[-71.620715,41.56423399906],[-71.613042,41.52512099906],[-71.609332,41.50665699906],[-71.608322,41.50262299906],[-71.607724,41.50247999906],[-71.607486,41.50092799906],[-71.609517,41.49802299906],[-71.608745,41.49698199906],[-71.60893,41.49536599906],[-71.60769,41.49380399906],[-71.608645,41.49287399906],[-71.608014,41.48947599906],[-71.608914,41.48773699906],[-71.606264,41.48750399906],[-71.604273,41.48645099906],[-71.60405,41.48521799906],[-71.602006,41.48338499906],[-71.602665,41.48212199906],[-71.60099,41.48065899906],[-71.601182,41.47778599906],[-71.603944,41.47763199906],[-71.605898,41.47566899906],[-71.605019,41.47307199906],[-71.602385,41.47108999906],[-71.602046,41.46942699906],[-71.599174,41.46675499906],[-71.596917,41.46138899906],[-71.598548,41.45981999906],[-71.598628,41.45804199906],[-71.602462,41.45640499906],[-71.604415,41.45506599906],[-71.605182,41.45375499906],[-71.607325,41.45251499906],[-71.608912,41.45222699906],[-71.607136,41.45100499906],[-71.603749,41.45000199906],[-71.602799,41.44933199906],[-71.601283,41.45027799906],[-71.599519,41.44990899906],[-71.596287,41.44751999906],[-71.595141,41.44622499906],[-71.600087,41.43249399906],[-71.606228,41.41540799906],[-71.614031,41.39349499906],[-71.623852,41.36579999906],[-71.62561930959,41.36075527381],[-71.632989,41.35846199906],[-71.638315,41.35543399906],[-71.642851,41.35566199906],[-71.68807,41.34282299906],[-71.696688,41.34097799906],[-71.701631,41.33696799906],[-71.70517,41.33428499906],[-71.716036,41.33108899906],[-71.72074,41.33156699906],[-71.72427,41.33208899906],[-71.72988001776,41.33169829052],[-71.730388,41.34279199906],[-71.730106,41.35165799906],[-71.730777,41.38647099906],[-71.730883,41.39030199906],[-71.731252,41.39851399906],[-71.733637,41.39870099906],[-71.735084,41.39966199906],[-71.731097,41.40080099906],[-71.738349,41.40032899906],[-71.739931,41.40171399906],[-71.742097,41.40130199906],[-71.745364,41.40233299906],[-71.746873,41.40337199906],[-71.748282,41.40519299906],[-71.747855,41.40670799906],[-71.750471,41.40782199906],[-71.755147,41.40797699906],[-71.755945,41.40766099906],[-71.758187,41.40413999906],[-71.761329,41.40169799906],[-71.763317,41.40130499906],[-71.764487,41.39859999906],[-71.765658,41.39625299906],[-71.768069,41.39481799906],[-71.769598,41.39780899906],[-71.769442,41.39679999906],[-71.770547,41.39817199906],[-71.769471,41.39948399906],[-71.76718,41.39920599906],[-71.771103,41.40138999906],[-71.772674,41.40040399906],[-71.771528,41.39705999906],[-71.774179,41.39541199906],[-71.776231,41.39352099906],[-71.777808,41.39325599906],[-71.779007,41.39454599906],[-71.780783,41.39348799906],[-71.778765,41.38963599906],[-71.779222,41.38727699906],[-71.780421,41.38708399906],[-71.780455,41.38871099906],[-71.782037,41.38857699906],[-71.78264,41.38675199906],[-71.784125,41.38694499906],[-71.7852,41.38953199906],[-71.786664,41.38970999906],[-71.788774,41.39107999906],[-71.790029,41.39262299906],[-71.792265,41.39214199906],[-71.796494,41.39286299906],[-71.797223,41.39320899906],[-71.798463,41.39556299906],[-71.798072,41.39669399906],[-71.794371,41.39703499906],[-71.794711,41.39792699906],[-71.797264,41.39853399906],[-71.799756,41.39858899906],[-71.799824,41.39933199906],[-71.800536,41.40110599906],[-71.803475,41.40406499906]]]]}}},{"type":"UNSD","affgeoid":"9700000US4400210","name":"Coventry School District","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.78969211199,41.72519833872],[-71.720111,41.72632599906],[-71.700584,41.72669399906],[-71.669494,41.72737399906],[-71.668434,41.72746999906],[-71.665991,41.72743299906],[-71.644255,41.72779999906],[-71.586186,41.72910499906],[-71.576525,41.72933999906],[-71.562938,41.72967199906],[-71.550038,41.72998499906],[-71.54743,41.73002499906],[-71.547353,41.73120299906],[-71.545807,41.73009699906],[-71.534286,41.73017099906],[-71.534055,41.72220399906],[-71.534015,41.72114199906],[-71.533883,41.71767999906],[-71.533774,41.71372699906],[-71.533541,41.70845899906],[-71.53346,41.70538099906],[-71.533302,41.70094599906],[-71.533113,41.69558999906],[-71.533109,41.69532999906],[-71.533009,41.68849799906],[-71.532875,41.68192099906],[-71.532968,41.68021599906],[-71.532988,41.67977199906],[-71.533182,41.67208599906],[-71.533379,41.66215599906],[-71.541475,41.66197699906],[-71.547113,41.66185099906],[-71.572671,41.66127499906],[-71.589768,41.66051499906],[-71.602958,41.66019099906],[-71.622371,41.65968799906],[-71.622871,41.65968299906],[-71.665939,41.65869199906],[-71.666039,41.65872099906],[-71.694939,41.65842399906],[-71.739624,41.65735199906],[-71.740357,41.65736899906],[-71.78699889568,41.65611738614],[-71.789678,41.72473399906],[-71.78969211199,41.72519833872]]]]}}},{"type":"UNSD","affgeoid":"9700000US4400240","name":"Cranston School District","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.55524,41.78953699906],[-71.54731,41.79212599906],[-71.534225,41.79321299906],[-71.530556,41.79144699906],[-71.526405,41.79032899906],[-71.521797,41.78973799906],[-71.51894,41.78887899906],[-71.516174,41.78858199906],[-71.513844,41.78841699906],[-71.506058,41.78887899906],[-71.503067,41.78914299906],[-71.497426,41.79089299906],[-71.48941,41.79167899906],[-71.487373,41.79322099906],[-71.484276,41.79524599906],[-71.482727,41.79599799906],[-71.481354,41.79649699906],[-71.479736,41.79685199906],[-71.47231,41.79645999906],[-71.471598,41.79830999906],[-71.469597,41.79881199906],[-71.467582,41.79810899906],[-71.466027,41.80374899906],[-71.463665,41.80504599906],[-71.461882,41.80509899906],[-71.457703,41.80556899906],[-71.452314,41.80613299906],[-71.45023,41.80636999906],[-71.447533,41.80661399906],[-71.443678,41.80703199906],[-71.442223,41.80720299906],[-71.442154,41.80657299906],[-71.442015,41.80603999906],[-71.441869,41.80567399906],[-71.441541,41.80506299906],[-71.441318,41.80474999906],[-71.440541,41.80394599906],[-71.440252,41.80370499906],[-71.439938,41.80341499906],[-71.439266,41.80202699906],[-71.43934,41.79724099906],[-71.438541,41.79422899906],[-71.437642,41.79323899906],[-71.436482,41.78841199906],[-71.434046,41.78630699906],[-71.431603,41.78625399906],[-71.421667,41.78618999906],[-71.42061,41.78618399906],[-71.422132,41.78185999906],[-71.42381,41.77726699906],[-71.419437,41.77624299906],[-71.414963,41.77319299906],[-71.413296,41.77283099906],[-71.411947,41.77238099906],[-71.410036,41.77375999906],[-71.408787,41.77812499906],[-71.406397,41.77895699906],[-71.405114,41.77932799906],[-71.403768,41.78095599906],[-71.403051,41.78297899906],[-71.404259,41.78584899906],[-71.401657,41.78588899906],[-71.398247,41.78601099906],[-71.397728,41.78602999906],[-71.395042,41.78614799906],[-71.389413,41.78633499906],[-71.38247156425,41.78509918245],[-71.390557,41.78370799906],[-71.391745,41.78104999906],[-71.389844,41.77644099906],[-71.385495,41.76866399906],[-71.385566,41.76030999906],[-71.38380436647,41.75851169734],[-71.384733,41.75760199906],[-71.385659,41.75842099906],[-71.388517,41.76377499906],[-71.390534,41.76439099906],[-71.394121,41.76403799906],[-71.395628,41.76668399906],[-71.399577,41.76832099906],[-71.401395,41.76655199906],[-71.402355,41.76752399906],[-71.405203,41.76760999906],[-71.410702,41.76655399906],[-71.412183,41.76505799906],[-71.414383,41.76295299906],[-71.415806,41.76290199906],[-71.417848,41.76216699906],[-71.419078,41.76188499906],[-71.420091,41.76174599906],[-71.418715,41.76407599906],[-71.419797,41.76478499906],[-71.421994,41.76457999906],[-71.422957,41.76297099906],[-71.426224,41.76102499906],[-71.42989,41.76076099906],[-71.430969,41.76061699906],[-71.432968,41.75933499906],[-71.433775,41.76144099906],[-71.434069,41.76093599906],[-71.435883,41.75967699906],[-71.437561,41.75982699906],[-71.438829,41.75782899906],[-71.440574,41.75791199906],[-71.43912,41.75638999906],[-71.441165,41.75471199906],[-71.440619,41.75215299906],[-71.446538,41.74888699906],[-71.445327,41.74560699906],[-71.444359,41.74420899906],[-71.444684,41.74015499906],[-71.446198,41.73997899906],[-71.451278,41.73970399906],[-71.453736,41.73742799906],[-71.45285,41.73433499906],[-71.455342,41.73236499906],[-71.460599,41.73226799906],[-71.467939,41.73207899906],[-71.476815,41.73178899906],[-71.48391,41.73160299906],[-71.486568,41.73151899906],[-71.497849,41.73114999906],[-71.516861,41.73060799906],[-71.519413,41.73046899906],[-71.519928,41.73044299906],[-71.525348,41.73032799906],[-71.534286,41.73017099906],[-71.545807,41.73009699906],[-71.547353,41.73120299906],[-71.548775,41.73660699906],[-71.552696,41.75545499906],[-71.553165,41.75698399906],[-71.554766,41.76527099906],[-71.55929,41.78934399906],[-71.55524,41.78953699906]]]]}}},{"type":"UNSD","affgeoid":"9700000US4400270","name":"Cumberland School District","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.487364,41.97908499906],[-71.480327,41.98637799906],[-71.472726,41.99425999906],[-71.463733,42.00358599906],[-71.459891,42.00756999906],[-71.459297,42.01055099906],[-71.458214,42.01747899906],[-71.45811664513,42.01776221097],[-71.45810351919,42.01776238819],[-71.42435692338,42.01821802305],[-71.381401,42.01879799906],[-71.3814657108,41.98508431905],[-71.38147025969,41.98271439138],[-71.38149197829,41.97139921783],[-71.381501,41.96669899906],[-71.381401,41.96479899906],[-71.38145768251,41.95286433955],[-71.38145769228,41.95286228256],[-71.38148189871,41.94776555229],[-71.3816,41.92289899906],[-71.3817,41.92269899906],[-71.3817,41.91557713774],[-71.3817,41.91481599906],[-71.3817,41.91465965229],[-71.3817,41.90359799906],[-71.3817,41.89706199906],[-71.386348,41.89963599906],[-71.388268,41.89980499906],[-71.39006,41.89931899906],[-71.391739,41.89834299906],[-71.394296,41.89765199906],[-71.394782,41.89862499906],[-71.398398,41.90027999906],[-71.399669,41.90167799906],[-71.400479,41.90136699906],[-71.399604,41.90635499906],[-71.397052,41.91061599906],[-71.399053,41.91204999906],[-71.403023,41.91139299906],[-71.405393,41.91099899906],[-71.407214,41.91184199906],[-71.408959,41.91386099906],[-71.416233,41.91780799906],[-71.418425,41.91881899906],[-71.419443,41.92062699906],[-71.4217,41.92214499906],[-71.425322,41.92246299906],[-71.428327,41.92354299906],[-71.430939,41.92698699906],[-71.431287,41.93054099906],[-71.430717,41.93339799906],[-71.430955,41.93463599906],[-71.433982,41.93821899906],[-71.438092,41.94262699906],[-71.439703,41.94377599906],[-71.442549,41.94740999906],[-71.450987,41.94991299906],[-71.452315,41.95310499906],[-71.455219,41.95563399906],[-71.457241,41.95656799906],[-71.461781,41.95741499906],[-71.462227,41.96057299906],[-71.465011,41.96599799906],[-71.464389,41.96809599906],[-71.46536,41.96938899906],[-71.469992,41.97110799906],[-71.474141,41.97262399906],[-71.478657,41.97714099906],[-71.486156,41.97822199906],[-71.487364,41.97908499906]]]]}}},{"type":"UNSD","affgeoid":"9700000US4400300","name":"East Greenwich School District","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.547113,41.66185099906],[-71.541475,41.66197699906],[-71.533379,41.66215599906],[-71.499225,41.66294799906],[-71.490206,41.66319299906],[-71.45853,41.66373399906],[-71.45829,41.66370499906],[-71.451218,41.66392299906],[-71.450127,41.66396399906],[-71.445572,41.66406599906],[-71.44493240215,41.66402899906],[-71.444801,41.66380099906],[-71.443541,41.66301899906],[-71.44237693746,41.66361147598],[-71.443021,41.66019999906],[-71.446018,41.65537599906],[-71.449315,41.65256599906],[-71.450376,41.65144899906],[-71.452157,41.64849199906],[-71.454876,41.64744499906],[-71.458017,41.64980899906],[-71.458654,41.64926599906],[-71.465652,41.64309799906],[-71.464831,41.63890399906],[-71.468692,41.63859399906],[-71.467844,41.63416499906],[-71.469666,41.63453599906],[-71.472535,41.63207699906],[-71.47132,41.62907599906],[-71.479358,41.62419999906],[-71.482482,41.62357999906],[-71.483306,41.62154699906],[-71.486073,41.61983299906],[-71.48631,41.61744699906],[-71.488039,41.61604799906],[-71.487503,41.61348699906],[-71.485451,41.61297399906],[-71.484458,41.60373899906],[-71.484427,41.60259099906],[-71.495697,41.60263399906],[-71.520447,41.60261599906],[-71.522429,41.60256599906],[-71.544807,41.60199299906],[-71.546092,41.62576099906],[-71.546417,41.64208499906],[-71.546625,41.64628299906],[-71.547041,41.65938599906],[-71.547113,41.66185099906]]]]}}},{"type":"UNSD","affgeoid":"9700000US4400330","name":"East Providence School District","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.395258,41.81166899906],[-71.393528,41.81475599906],[-71.387083,41.81637199906],[-71.385572,41.81899599906],[-71.382797,41.82269499906],[-71.377434,41.82928799906],[-71.373587,41.83248599906],[-71.373099,41.83659999906],[-71.372996,41.83806499906],[-71.372247,41.84333699906],[-71.37226,41.84415699906],[-71.372334,41.85054799906],[-71.374526,41.85713599906],[-71.375021,41.85744899906],[-71.365795,41.85834099906],[-71.363744,41.85853999906],[-71.358688,41.85904599906],[-71.354507,41.85946699906],[-71.342969,41.86068399906],[-71.341443,41.86070999906],[-71.339217,41.86073599906],[-71.337776,41.86091699906],[-71.334653,41.86131399906],[-71.33449398868,41.86123948182],[-71.34167342264,41.84591938741],[-71.342198,41.84479999906],[-71.341797,41.84369999906],[-71.34079565848,41.84245590809],[-71.335197,41.83549999906],[-71.33750452,41.83376935906],[-71.337597,41.83369999906],[-71.339597,41.83199999906],[-71.3428393693,41.82955292789],[-71.344897,41.82799999906],[-71.34588873174,41.82588717927],[-71.347197,41.82309999906],[-71.339197,41.80899999906],[-71.3390217069,41.80859098182],[-71.33900374314,41.8085490664],[-71.338897,41.80829999906],[-71.33927361176,41.80660524612],[-71.339297,41.80649999906],[-71.339297,41.80439999906],[-71.340797,41.80019999906],[-71.340697,41.79829999906],[-71.339297,41.79629999906],[-71.335797,41.79479999906],[-71.333896,41.79449999906],[-71.332196,41.79229999906],[-71.33106075427,41.79014694681],[-71.33011616476,41.78835548395],[-71.329296,41.78679999906],[-71.329396,41.78259999906],[-71.327896,41.78050099906],[-71.31792423356,41.77615729326],[-71.31995,41.77450999906],[-71.324717,41.77120099906],[-71.331997,41.76616499906],[-71.332659,41.76571499906],[-71.336781,41.76285499906],[-71.342395,41.75896499906],[-71.351495,41.75263499906],[-71.353897,41.75130099906],[-71.355818,41.74506099906],[-71.35589655376,41.74506099906],[-71.359896,41.74506099906],[-71.359421,41.74665699906],[-71.360134,41.74949399906],[-71.362348,41.75088999906],[-71.360847,41.75516799906],[-71.361798,41.76066399906],[-71.36465,41.76474199906],[-71.369641,41.76456499906],[-71.366076,41.77112399906],[-71.366314,41.77520099906],[-71.365125,41.77750499906],[-71.367977,41.78069499906],[-71.370583,41.78087399906],[-71.371542,41.78335399906],[-71.37168533333,41.78338266573],[-71.369694,41.78305799906],[-71.371008,41.78669399906],[-71.370731,41.78709199906],[-71.372002,41.78982299906],[-71.372711,41.78851799906],[-71.373308,41.79111699906],[-71.377299,41.79469999906],[-71.380799,41.79629999906],[-71.385199,41.80209999906],[-71.390099,41.80519999906],[-71.393499,41.80709999906],[-71.394984,41.81077299906],[-71.395258,41.81166899906]]]]}}},{"type":"UNSD","affgeoid":"9700000US4400540","name":"Johnston School District","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.573608,41.85880699906],[-71.550423,41.86176499906],[-71.545655,41.86252999906],[-71.540216,41.86309499906],[-71.531464,41.86426899906],[-71.514588,41.86648799906],[-71.505093,41.86772399906],[-71.495545,41.86898299906],[-71.494084,41.86827599906],[-71.492353,41.86536499906],[-71.488251,41.86227799906],[-71.487654,41.85960299906],[-71.487421,41.85907299906],[-71.48708,41.85610499906],[-71.486065,41.85431199906],[-71.485636,41.85351899906],[-71.480974,41.85082099906],[-71.48033,41.84504399906],[-71.479521,41.84428299906],[-71.479012,41.84345799906],[-71.478659,41.84236899906],[-71.47764,41.84146899906],[-71.477216,41.83791099906],[-71.47331,41.83898199906],[-71.472459,41.83698099906],[-71.472432,41.83418099906],[-71.470444,41.83291199906],[-71.46759,41.83149099906],[-71.464769,41.83104799906],[-71.462432,41.82741299906],[-71.462423,41.82468699906],[-71.465216,41.82460399906],[-71.471306,41.82413899906],[-71.471077,41.82238399906],[-71.470877,41.82194399906],[-71.470031,41.81982799906],[-71.46965,41.81887599906],[-71.468193,41.81544499906],[-71.466551,41.81074199906],[-71.468703,41.81059999906],[-71.466803,41.80779999906],[-71.469165,41.80486399906],[-71.467072,41.80446999906],[-71.46492,41.80587399906],[-71.464583,41.80499099906],[-71.463665,41.80504599906],[-71.466027,41.80374899906],[-71.467582,41.79810899906],[-71.469597,41.79881199906],[-71.471598,41.79830999906],[-71.47231,41.79645999906],[-71.479736,41.79685199906],[-71.481354,41.79649699906],[-71.482727,41.79599799906],[-71.484276,41.79524599906],[-71.487373,41.79322099906],[-71.48941,41.79167899906],[-71.497426,41.79089299906],[-71.503067,41.78914299906],[-71.506058,41.78887899906],[-71.513844,41.78841699906],[-71.516174,41.78858199906],[-71.51894,41.78887899906],[-71.521797,41.78973799906],[-71.526405,41.79032899906],[-71.530556,41.79144699906],[-71.534225,41.79321299906],[-71.54731,41.79212599906],[-71.55524,41.78953699906],[-71.55929,41.78934399906],[-71.559856,41.78936799906],[-71.561623,41.79722599906],[-71.56563,41.81498699906],[-71.569627,41.83507899906],[-71.570639,41.83856599906],[-71.57188,41.84427699906],[-71.573027,41.85150899906],[-71.574642,41.85874799906],[-71.573608,41.85880699906]]]]}}},{"type":"UNSD","affgeoid":"9700000US4400570","name":"Lincoln School District","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.490788,41.94324099906],[-71.4881,41.94439799906],[-71.484562,41.94277699906],[-71.48397,41.94445499906],[-71.484352,41.94592999906],[-71.487055,41.94644199906],[-71.486717,41.94992599906],[-71.487401,41.95205599906],[-71.488129,41.95487099906],[-71.4852,41.95631199906],[-71.487292,41.95845599906],[-71.486991,41.96123199906],[-71.487221,41.96153599906],[-71.487625,41.96313899906],[-71.486439,41.96591099906],[-71.48826,41.96835399906],[-71.486681,41.96948899906],[-71.487538,41.97295999906],[-71.489096,41.97474299906],[-71.488796,41.97704699906],[-71.487959,41.97753599906],[-71.487364,41.97908499906],[-71.486156,41.97822199906],[-71.478657,41.97714099906],[-71.474141,41.97262399906],[-71.469992,41.97110799906],[-71.46536,41.96938899906],[-71.464389,41.96809599906],[-71.465011,41.96599799906],[-71.462227,41.96057299906],[-71.461781,41.95741499906],[-71.457241,41.95656799906],[-71.455219,41.95563399906],[-71.452315,41.95310499906],[-71.450987,41.94991299906],[-71.442549,41.94740999906],[-71.439703,41.94377599906],[-71.438092,41.94262699906],[-71.433982,41.93821899906],[-71.430955,41.93463599906],[-71.430717,41.93339799906],[-71.431287,41.93054099906],[-71.430939,41.92698699906],[-71.428327,41.92354299906],[-71.425322,41.92246299906],[-71.4217,41.92214499906],[-71.419443,41.92062699906],[-71.418425,41.91881899906],[-71.416233,41.91780799906],[-71.408959,41.91386099906],[-71.407214,41.91184199906],[-71.405393,41.91099899906],[-71.403023,41.91139299906],[-71.399053,41.91204999906],[-71.397052,41.91061599906],[-71.399604,41.90635499906],[-71.400479,41.90136699906],[-71.399669,41.90167799906],[-71.398398,41.90027999906],[-71.394782,41.89862499906],[-71.394296,41.89765199906],[-71.397243,41.89678199906],[-71.404568,41.89482399906],[-71.404691,41.89478399906],[-71.407055,41.89190999906],[-71.406227,41.88849099906],[-71.405817,41.88723899906],[-71.403706,41.88105899906],[-71.405004,41.88089399906],[-71.406403,41.88071599906],[-71.415553,41.87954699906],[-71.4219,41.87869499906],[-71.433654,41.87720999906],[-71.438179,41.87658799906],[-71.449154,41.87524199906],[-71.455584,41.87442899906],[-71.463265,41.87352899906],[-71.466759,41.87276699906],[-71.473389,41.89197499906],[-71.481095,41.91477399906],[-71.482147,41.91768899906],[-71.482705,41.91900199906],[-71.4845,41.92498899906],[-71.489167,41.93846899906],[-71.490788,41.94324099906]]]]}}},{"type":"UNSD","affgeoid":"9700000US4400630","name":"Middletown School District","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.312696,41.53651399906],[-71.308082,41.53937699906],[-71.308082,41.54293499906],[-71.311129,41.54405199906],[-71.310533,41.54691999906],[-71.303652,41.55992499906],[-71.30160652206,41.5620349569],[-71.300256,41.56100799906],[-71.290753,41.55422099906],[-71.280622,41.54697299906],[-71.265663,41.53826899906],[-71.265724,41.53817999906],[-71.2334466872,41.51407038744],[-71.233456,41.51405299906],[-71.240737,41.50555099906],[-71.24074,41.50170399906],[-71.246666,41.49426499906],[-71.247992,41.49028999906],[-71.246855,41.48741499906],[-71.24426,41.48573699906],[-71.242033,41.48534399906],[-71.238112,41.48605699906],[-71.237437,41.48571099906],[-71.237615,41.48227599906],[-71.238326,41.48075899906],[-71.239676,41.48025299906],[-71.240428,41.47614699906],[-71.242285,41.47523899906],[-71.243728,41.47520399906],[-71.244895,41.47383499906],[-71.246427,41.47294799906],[-71.247366,41.47299599906],[-71.247715,41.47368999906],[-71.24524,41.48028499906],[-71.245859,41.48163699906],[-71.252079,41.48592399906],[-71.258192,41.48792099906],[-71.264793,41.48890199906],[-71.26764,41.48821399906],[-71.26886,41.48469799906],[-71.274861,41.47984599906],[-71.27664,41.48003799906],[-71.282314,41.48828599906],[-71.285486,41.48900399906],[-71.28567255988,41.48896754263],[-71.287138,41.49054899906],[-71.289906,41.49350099906],[-71.289946,41.49358899906],[-71.294273,41.49818299906],[-71.294291,41.49826199906],[-71.300274,41.50457099906],[-71.300369,41.50464199906],[-71.301521,41.50594899906],[-71.302421,41.50699799906],[-71.303558,41.50857899906],[-71.306441,41.51271599906],[-71.311141,41.51939599906],[-71.312237,41.52085299906],[-71.31266633346,41.52142511034],[-71.311251,41.52262099906],[-71.311346,41.52422199906],[-71.314151,41.53144599906],[-71.312696,41.53651399906]]]]}}},{"type":"UNSD","affgeoid":"9700000US4400660","name":"Narragansett School District","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.52280361357,41.37668988112],[-71.519392,41.38020399906],[-71.517312,41.38213599906],[-71.51464,41.38478999906],[-71.50839,41.39919799906],[-71.504827,41.40751199906],[-71.503202,41.41760099906],[-71.497101,41.41750199906],[-71.495801,41.42260099906],[-71.495501,41.42410099906],[-71.494802,41.42730099906],[-71.491758,41.42976499906],[-71.491614,41.42997999906],[-71.489991,41.43171399906],[-71.489553,41.43191099906],[-71.487704,41.43214899906],[-71.483326,41.43542099906],[-71.475075,41.43887699906],[-71.474835,41.43889099906],[-71.4727,41.44001499906],[-71.469497,41.44129499906],[-71.46801,41.44177699906],[-71.466022,41.44256299906],[-71.464283,41.44354299906],[-71.4526,41.45220199906],[-71.451617,41.45315699906],[-71.450869,41.45790999906],[-71.451137,41.46160399906],[-71.449924,41.46595199906],[-71.448398,41.46872899906],[-71.4496,41.47240099906],[-71.448703,41.47500699906],[-71.447362,41.48124899906],[-71.447922,41.48644299906],[-71.447047,41.48832999906],[-71.446657,41.48907699906],[-71.450101,41.50180099906],[-71.448148,41.50278999906],[-71.430826,41.50316399906],[-71.420258,41.50337899906],[-71.4195806446,41.50365321875],[-71.421425,41.49862899906],[-71.420858,41.49321499906],[-71.418603,41.49212599906],[-71.420759,41.48997899906],[-71.420267,41.48357999906],[-71.417957,41.48207299906],[-71.417621,41.47793399906],[-71.418404,41.47265199906],[-71.421157,41.46988799906],[-71.422991,41.47268199906],[-71.427635,41.47253999906],[-71.430744,41.47063599906],[-71.430926,41.46565499906],[-71.430012,41.46114099906],[-71.426684,41.45882499906],[-71.425817,41.45600199906],[-71.426855,41.45412699906],[-71.430259,41.45303599906],[-71.432087,41.44938899906],[-71.431137,41.44730099906],[-71.433612,41.44499499906],[-71.438129,41.44165399906],[-71.43833,41.43958499906],[-71.4406,41.43836799906],[-71.442223,41.43972099906],[-71.442788,41.44139799906],[-71.448948,41.43847899906],[-71.455845,41.43298599906],[-71.455004,41.43031799906],[-71.455388,41.42800499906],[-71.45482,41.42182099906],[-71.452643,41.41777999906],[-71.452639,41.41475799906],[-71.452974,41.40967599906],[-71.455371,41.40796199906],[-71.456211,41.40512299906],[-71.459242,41.40311899906],[-71.462325,41.40127599906],[-71.462523,41.39822399906],[-71.463743,41.39575299906],[-71.467312,41.39495099906],[-71.468984,41.39362099906],[-71.474918,41.38610399906],[-71.484203,41.37184199906],[-71.48294,41.36592899906],[-71.480439,41.36241599906],[-71.480875,41.36024799906],[-71.484658,41.36143599906],[-71.487696,41.36148699906],[-71.489218,41.36237299906],[-71.488956,41.36435099906],[-71.494898,41.36827499906],[-71.497275,41.37130699906],[-71.502926,41.37419999906],[-71.513401,41.37523699906],[-71.520163,41.37652299906],[-71.52280361357,41.37668988112]]]]}}},{"type":"UNSD","affgeoid":"9700000US4400690","name":"New Shoreham School District","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.613133,41.16028099907],[-71.610529,41.16264299907],[-71.610572,41.16837399906],[-71.609353,41.17172699906],[-71.607985,41.17286199906],[-71.607794,41.17539899906],[-71.605565,41.18213899906],[-71.601294,41.18321299906],[-71.597457,41.18518599906],[-71.594994,41.18839199906],[-71.593419,41.19144499906],[-71.592944,41.19891099906],[-71.58955,41.19655699906],[-71.585853,41.20024899906],[-71.580634,41.20337399906],[-71.578519,41.20907999906],[-71.576924,41.21102399906],[-71.576725,41.21573799906],[-71.576319,41.22490999906],[-71.577691,41.23123199906],[-71.574376,41.22783799906],[-71.570301,41.22534199906],[-71.567977,41.22467299906],[-71.565785,41.22494999906],[-71.562546,41.22421699906],[-71.55991,41.22163199906],[-71.55862,41.21919299906],[-71.555861,41.21663699906],[-71.554067,41.21295699906],[-71.555564,41.20831499906],[-71.557951,41.20451499906],[-71.561372,41.20060099906],[-71.564119,41.19537199906],[-71.566405,41.18820699906],[-71.566345,41.18427699906],[-71.564667,41.17967399906],[-71.561299,41.17576499906],[-71.55791,41.17301799906],[-71.554627,41.17342299906],[-71.552889,41.16911699906],[-71.550226,41.16678699906],[-71.544446,41.16491199907],[-71.545594,41.16345299907],[-71.543872,41.16132099907],[-71.545434,41.15996099907],[-71.545468,41.15748599907],[-71.547051,41.15368399907],[-71.551953,41.15171799907],[-71.556527,41.15156899907],[-71.561479,41.15049099907],[-71.56589,41.14900899907],[-71.568668,41.14936799907],[-71.575549,41.14824099907],[-71.578573,41.14761999907],[-71.580505,41.14909199907],[-71.584674,41.14822199907],[-71.587375,41.14806199907],[-71.5937,41.14633899907],[-71.595495,41.14737099907],[-71.599993,41.14693199907],[-71.611567,41.15390499907],[-71.613133,41.16028099907]]]]}}},{"type":"UNSD","affgeoid":"9700000US4400720","name":"Newport School District","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.362911,41.46174599906],[-71.361185,41.46461999906],[-71.359559,41.46422899906],[-71.358273,41.46443099906],[-71.357206,41.46612399906],[-71.352766,41.46924499906],[-71.3479,41.47058999906],[-71.341833,41.47601199906],[-71.336442,41.48198499906],[-71.33438,41.47820399906],[-71.336366,41.47173799906],[-71.335992,41.46964699906],[-71.323531,41.47583399906],[-71.316519,41.47755999906],[-71.318065,41.48776399906],[-71.321154,41.48811999906],[-71.322818,41.49114699906],[-71.323125,41.50308799906],[-71.327804,41.50425799906],[-71.330694,41.50769899906],[-71.329315,41.51382899906],[-71.326035,41.51430999906],[-71.325451,41.51727999906],[-71.328031,41.51884799906],[-71.327128,41.52158899906],[-71.323991,41.52240699906],[-71.320901,41.51948899906],[-71.314579,41.51980899906],[-71.31266633346,41.52142511034],[-71.312237,41.52085299906],[-71.311141,41.51939599906],[-71.306441,41.51271599906],[-71.303558,41.50857899906],[-71.302421,41.50699799906],[-71.301521,41.50594899906],[-71.300369,41.50464199906],[-71.300274,41.50457099906],[-71.294291,41.49826199906],[-71.294273,41.49818299906],[-71.289946,41.49358899906],[-71.289906,41.49350099906],[-71.287138,41.49054899906],[-71.28567255988,41.48896754263],[-71.29133,41.48786199906],[-71.296918,41.48552099906],[-71.297392,41.48478999906],[-71.296516,41.47983099906],[-71.297393,41.47344299906],[-71.296851,41.46913099906],[-71.298182,41.46749199906],[-71.301414,41.46727799906],[-71.303981,41.46371599906],[-71.302762,41.45974799906],[-71.303052,41.45908299906],[-71.303911,41.45867999906],[-71.304394,41.45450199906],[-71.307639,41.45243499906],[-71.310168,41.45112399906],[-71.312049,41.45138199906],[-71.311918,41.45288499906],[-71.310983,41.45510599906],[-71.312558,41.45649799906],[-71.314711,41.45638899906],[-71.316908,41.45478799906],[-71.31848,41.45572399906],[-71.319485,41.45838499906],[-71.320326,41.45978299906],[-71.323751,41.46012899906],[-71.326909,41.45894199906],[-71.327536,41.45707199906],[-71.331466,41.45280299906],[-71.334764,41.44951599906],[-71.337483,41.44931699906],[-71.338036,41.44952799906],[-71.337544,41.45097899906],[-71.337933,41.45169299906],[-71.339006,41.45190199906],[-71.339697,41.45257699906],[-71.344177,41.45402799906],[-71.353609,41.44975099906],[-71.356163,41.45053799906],[-71.357245,41.45614599906],[-71.358447,41.45743899906],[-71.358795,41.45966099906],[-71.360038,41.46048599906],[-71.36189,41.46019599906],[-71.362911,41.46174599906]],[[-71.327568,41.45286799906],[-71.326348,41.45470999906],[-71.324955,41.45468999906],[-71.324296,41.45392399906],[-71.325649,41.45210599906],[-71.32689,41.45195999906],[-71.327568,41.45286799906]],[[-71.343126,41.49729199906],[-71.341267,41.50049399906],[-71.33978,41.49882299906],[-71.338665,41.49617899906],[-71.338665,41.49492599906],[-71.343126,41.49492599906],[-71.343126,41.49729199906]],[[-71.328827,41.49233399906],[-71.326957,41.49311599906],[-71.325657,41.49005399906],[-71.325365,41.48760099906],[-71.3264,41.48378899906],[-71.327822,41.48298499906],[-71.329002,41.48712999906],[-71.328827,41.49233399906]]]]}}},{"type":"UNSD","affgeoid":"9700000US4400750","name":"North Kingstown School District","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.522429,41.60256599906],[-71.520447,41.60261599906],[-71.495697,41.60263399906],[-71.484427,41.60259099906],[-71.484458,41.60373899906],[-71.485451,41.61297399906],[-71.487503,41.61348699906],[-71.488039,41.61604799906],[-71.48631,41.61744699906],[-71.486073,41.61983299906],[-71.483306,41.62154699906],[-71.482482,41.62357999906],[-71.479358,41.62419999906],[-71.47132,41.62907599906],[-71.472535,41.63207699906],[-71.469666,41.63453599906],[-71.467844,41.63416499906],[-71.463436,41.63654399906],[-71.462354,41.63837999906],[-71.459123,41.63794599906],[-71.458324,41.63636599906],[-71.45558,41.63510899906],[-71.45423,41.63295299906],[-71.454404,41.63120199906],[-71.45311,41.62985899906],[-71.451366,41.62945499906],[-71.448447,41.63337699906],[-71.449286,41.63672999906],[-71.446277,41.63883699906],[-71.445084,41.64137299906],[-71.441986,41.64327499906],[-71.442717,41.64439799906],[-71.442508,41.64581799906],[-71.440925,41.64617999906],[-71.439301,41.64802299906],[-71.435944,41.64922299906],[-71.432796,41.65132299906],[-71.428941,41.65056899906],[-71.423884,41.65388799906],[-71.417581,41.65495199906],[-71.40887996267,41.65384065613],[-71.408893,41.65146599906],[-71.407525,41.63332599906],[-71.403154,41.62746799906],[-71.403392,41.62551299906],[-71.408621,41.62195999906],[-71.407907,41.61964999906],[-71.402441,41.61556299906],[-71.404342,41.61183199906],[-71.409571,41.61040999906],[-71.411948,41.61112099906],[-71.416939,41.60490099906],[-71.414325,41.60258999906],[-71.403613,41.60295899906],[-71.403392,41.60063499906],[-71.40377,41.58932099906],[-71.410997,41.58659299906],[-71.419584,41.58578099906],[-71.430249,41.58339299906],[-71.439519,41.57734799906],[-71.438806,41.58143699906],[-71.440945,41.58499299906],[-71.446412,41.58321499906],[-71.444272,41.57894799906],[-71.44705,41.57842899906],[-71.446412,41.57450299906],[-71.443322,41.57308099906],[-71.438093,41.57059099906],[-71.444091,41.56804299906],[-71.443831,41.56606799906],[-71.442157,41.56381599906],[-71.439064,41.56367999906],[-71.437356,41.56222299906],[-71.435179,41.56213199906],[-71.434371,41.56163299906],[-71.435227,41.55954099906],[-71.434783,41.55809699906],[-71.432716,41.55738399906],[-71.430175,41.55823699906],[-71.428407,41.55708499906],[-71.427873,41.55547499906],[-71.431045,41.55010299906],[-71.428646,41.54698599906],[-71.424777,41.54943099906],[-71.423357,41.54818199906],[-71.426671,41.54356299906],[-71.423119,41.53875399906],[-71.417652,41.53626299906],[-71.418128,41.53217099906],[-71.415513,41.52985799906],[-71.415911,41.52794099906],[-71.414825,41.52312599906],[-71.414937,41.51630299906],[-71.4195806446,41.50365321875],[-71.420258,41.50337899906],[-71.430826,41.50316399906],[-71.448148,41.50278999906],[-71.450101,41.50180099906],[-71.453721,41.49975699906],[-71.457966,41.49905799906],[-71.458115,41.49906899906],[-71.491864,41.49721899906],[-71.497304,41.49815599906],[-71.503438,41.49970099906],[-71.507886,41.50005999906],[-71.510155,41.50898399906],[-71.512225,41.51531499906],[-71.518298,41.52734799906],[-71.519566,41.52992499906],[-71.519159,41.55791399906],[-71.51886,41.56468399906],[-71.518183,41.57558899906],[-71.517926,41.57726499906],[-71.51812,41.59220799906],[-71.518433,41.59403999906],[-71.521904,41.60084199906],[-71.522429,41.60256599906]]]]}}},{"type":"UNSD","affgeoid":"9700000US4400780","name":"North Providence School District","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.495545,41.86898299906],[-71.492477,41.86946499906],[-71.49128,41.86953399906],[-71.486682,41.87011899906],[-71.475526,41.87156999906],[-71.474826,41.87172699906],[-71.466759,41.87276699906],[-71.463265,41.87352899906],[-71.455584,41.87442899906],[-71.449154,41.87524199906],[-71.438179,41.87658799906],[-71.433654,41.87720999906],[-71.4219,41.87869499906],[-71.419876,41.86977399906],[-71.419594,41.86910999906],[-71.418624,41.86484899906],[-71.417418,41.85966599906],[-71.422155,41.86026599906],[-71.429906,41.86125499906],[-71.434998,41.86182399906],[-71.442986,41.85655599906],[-71.446686,41.85404999906],[-71.448324,41.85298099906],[-71.455905,41.84790299906],[-71.459526,41.84543999906],[-71.460292,41.84495699906],[-71.46456,41.84206599906],[-71.468742,41.83925999906],[-71.472459,41.83698099906],[-71.47331,41.83898199906],[-71.477216,41.83791099906],[-71.47764,41.84146899906],[-71.478659,41.84236899906],[-71.479012,41.84345799906],[-71.479521,41.84428299906],[-71.48033,41.84504399906],[-71.480974,41.85082099906],[-71.485636,41.85351899906],[-71.486065,41.85431199906],[-71.48708,41.85610499906],[-71.487421,41.85907299906],[-71.487654,41.85960299906],[-71.488251,41.86227799906],[-71.492353,41.86536499906],[-71.494084,41.86827599906],[-71.495545,41.86898299906]]]]}}},{"type":"UNSD","affgeoid":"9700000US4400810","name":"North Smithfield School District","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.60673402532,42.01341142415],[-71.59411891923,42.01370181535],[-71.5911031923,42.01377123535],[-71.576908,42.01409799906],[-71.56366502123,42.01428297169],[-71.559439,42.01434199906],[-71.55361486286,42.01446202023],[-71.55336097543,42.01446725223],[-71.53803620617,42.01478305811],[-71.52892806735,42.0149707545],[-71.52999,42.01104499906],[-71.529707,42.00987699906],[-71.540116,42.00980499906],[-71.536049,41.99999699906],[-71.533301,41.99341899906],[-71.531975,41.99026399906],[-71.531694,41.98961399906],[-71.531662,41.98955599906],[-71.528008,41.98840699906],[-71.522354,41.98565299906],[-71.518066,41.98369599906],[-71.515797,41.98327599906],[-71.515503,41.98317399906],[-71.515232,41.98310599906],[-71.515179,41.98307099906],[-71.50706,41.98187699906],[-71.491746,41.97961199906],[-71.487364,41.97908499906],[-71.487959,41.97753599906],[-71.488796,41.97704699906],[-71.489096,41.97474299906],[-71.487538,41.97295999906],[-71.486681,41.96948899906],[-71.48826,41.96835399906],[-71.486439,41.96591099906],[-71.487625,41.96313899906],[-71.487221,41.96153599906],[-71.486991,41.96123199906],[-71.487292,41.95845599906],[-71.4852,41.95631199906],[-71.488129,41.95487099906],[-71.487401,41.95205599906],[-71.486717,41.94992599906],[-71.487055,41.94644199906],[-71.484352,41.94592999906],[-71.48397,41.94445499906],[-71.484562,41.94277699906],[-71.4881,41.94439799906],[-71.490788,41.94324099906],[-71.555328,41.93687399906],[-71.590312,41.93366499906],[-71.596898,41.96612299906],[-71.600443,41.98302699906],[-71.60673402532,42.01341142415]]]]}}},{"type":"UNSD","affgeoid":"9700000US4400840","name":"Pawtucket School District","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.4219,41.87869499906],[-71.415553,41.87954699906],[-71.406403,41.88071599906],[-71.405004,41.88089399906],[-71.403706,41.88105899906],[-71.39231,41.88259899906],[-71.386742,41.88331599906],[-71.385269,41.88351099906],[-71.381008,41.88406699906],[-71.380219,41.88792999906],[-71.381824,41.88836999906],[-71.383093,41.88986999906],[-71.381638,41.89269999906],[-71.38152935439,41.893225767],[-71.3766,41.89399899906],[-71.37649639772,41.8940137941],[-71.37635234406,41.89403436585],[-71.373799,41.89439899906],[-71.37119032656,41.89458533288],[-71.370999,41.89459899906],[-71.365399,41.89529899906],[-71.364699,41.89539899906],[-71.362499,41.89559899906],[-71.354699,41.89649899906],[-71.35451882563,41.8965170165],[-71.352699,41.89669899906],[-71.3490536354,41.89714161886],[-71.34587490942,41.89752757945],[-71.33976318964,41.89826966384],[-71.33876249372,41.89839116824],[-71.338698,41.89839899906],[-71.33917771698,41.89456126321],[-71.339298,41.89359899906],[-71.339298,41.89339899906],[-71.33971575571,41.89011293266],[-71.33971887079,41.89008842943],[-71.340798,41.88159999906],[-71.3388638434,41.8761112147],[-71.33782886617,41.87317413774],[-71.33782668207,41.87316793965],[-71.333997,41.86229999906],[-71.33449398868,41.86123948182],[-71.334653,41.86131399906],[-71.337776,41.86091699906],[-71.339217,41.86073599906],[-71.341443,41.86070999906],[-71.342969,41.86068399906],[-71.354507,41.85946699906],[-71.358688,41.85904599906],[-71.363744,41.85853999906],[-71.365795,41.85834099906],[-71.375021,41.85744899906],[-71.376699,41.85749999906],[-71.379003,41.85747799906],[-71.383719,41.85708599906],[-71.391101,41.85694499906],[-71.399596,41.85678199906],[-71.405543,41.85667199906],[-71.409275,41.85660099906],[-71.411057,41.85891299906],[-71.417418,41.85966599906],[-71.418624,41.86484899906],[-71.419594,41.86910999906],[-71.419876,41.86977399906],[-71.4219,41.87869499906]]]]}}},{"type":"UNSD","affgeoid":"9700000US4400870","name":"Portsmouth School District","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.372238,41.59985399906],[-71.369426,41.60206199906],[-71.36788,41.60395399906],[-71.367317,41.60595199906],[-71.365489,41.60668799906],[-71.36338,41.60668799906],[-71.363943,41.60542599906],[-71.36338,41.60353399906],[-71.364786,41.60143099906],[-71.369426,41.59817199906],[-71.371676,41.59732999906],[-71.373363,41.59743599906],[-71.372238,41.59985399906]],[[-71.288017,41.64557499906],[-71.286471,41.64757099906],[-71.281571,41.64820699906],[-71.278171,41.64730899906],[-71.276634,41.64364899906],[-71.276347,41.64053099906],[-71.272692,41.63853499906],[-71.272129,41.63706399906],[-71.277045,41.63803099906],[-71.283791,41.63779699906],[-71.285346,41.63685299906],[-71.285908,41.63800899906],[-71.285344,41.64037899906],[-71.288158,41.64294799906],[-71.288017,41.64557499906]],[[-71.296673,41.56712399906],[-71.294363,41.57141599906],[-71.288376,41.57327399906],[-71.285142,41.57712699906],[-71.284076,41.57939299906],[-71.28574,41.58277099906],[-71.289073,41.58270599906],[-71.285635,41.59164199906],[-71.285265,41.59236999906],[-71.28065,41.59285399906],[-71.273445,41.60698999906],[-71.272412,41.61504099906],[-71.275234,41.61944399906],[-71.271862,41.62398599906],[-71.264824,41.62524699906],[-71.261021,41.62737899906],[-71.258879,41.63322999906],[-71.251082,41.63877999906],[-71.246285,41.63981399906],[-71.242482,41.63839299906],[-71.23654,41.63839299906],[-71.233234,41.64022999906],[-71.232262,41.64336599906],[-71.225369,41.64709599906],[-71.223706,41.65064799906],[-71.22228,41.65419999906],[-71.220331,41.65557199906],[-71.21919,41.65366699906],[-71.217288,41.64620799906],[-71.217051,41.64283399906],[-71.216575,41.63910299906],[-71.21392957528,41.63910299906],[-71.214127,41.63814199906],[-71.2167439754,41.62558690738],[-71.218018,41.62567199906],[-71.219336,41.62548199906],[-71.220074,41.62493999906],[-71.219972,41.62394399906],[-71.221005,41.62350199906],[-71.224126,41.62288699906],[-71.236487,41.62136799906],[-71.238792,41.62059299906],[-71.240709,41.61922499906],[-71.241056,41.60694499906],[-71.241532,41.60463399906],[-71.2436,41.58750799906],[-71.237788,41.57759499906],[-71.234877,41.57654799906],[-71.23613,41.57476699906],[-71.236259,41.56499299906],[-71.238204,41.55876499906],[-71.237016,41.55485199906],[-71.233844,41.55378999906],[-71.233688,41.55236199906],[-71.234877,41.54916099906],[-71.236523,41.54489099906],[-71.234877,41.54168899906],[-71.236642,41.53585199906],[-71.234775,41.53253799906],[-71.228935,41.53030299906],[-71.227989,41.52829699906],[-71.229444,41.52154399906],[-71.2334466872,41.51407038744],[-71.265724,41.53817999906],[-71.265663,41.53826899906],[-71.280622,41.54697299906],[-71.290753,41.55422099906],[-71.300256,41.56100799906],[-71.30160652206,41.5620349569],[-71.296673,41.56712399906]],[[-71.301515,41.58565799906],[-71.298562,41.58492199906],[-71.298,41.58313399906],[-71.297719,41.58176699906],[-71.297156,41.57976799906],[-71.299125,41.57976799906],[-71.300812,41.58060999906],[-71.301234,41.58302899906],[-71.301515,41.58565799906]],[[-71.367036,41.66070299906],[-71.364786,41.66049299906],[-71.362115,41.66017799906],[-71.360709,41.66112299906],[-71.354663,41.65975699906],[-71.353398,41.65786599906],[-71.354241,41.65608099906],[-71.355507,41.65387499906],[-71.35635,41.65208899906],[-71.358178,41.65124799906],[-71.360006,41.64988199906],[-71.362537,41.65114299906],[-71.364083,41.65587099906],[-71.364646,41.65755099906],[-71.366333,41.65891699906],[-71.367036,41.66070299906]],[[-71.353819,41.64746599906],[-71.352835,41.64925199906],[-71.350304,41.64904199906],[-71.348898,41.65124799906],[-71.347633,41.65282399906],[-71.346367,41.65334899906],[-71.344118,41.65282399906],[-71.343274,41.65376899906],[-71.343836,41.65486099906],[-71.345946,41.65534499906],[-71.350023,41.65713099906],[-71.35157,41.65860199906],[-71.351007,41.65975699906],[-71.348336,41.66122799906],[-71.34693,41.66332899906],[-71.348898,41.66532399906],[-71.344821,41.66700499906],[-71.344258,41.66406399906],[-71.344021,41.66149499906],[-71.33765,41.65797199906],[-71.337515,41.65704899906],[-71.339337,41.65502999906],[-71.338072,41.65082799906],[-71.334979,41.64746599906],[-71.332448,41.64378899906],[-71.333432,41.64179199906],[-71.336525,41.64189699906],[-71.334979,41.64420899906],[-71.335682,41.64578499906],[-71.337088,41.64672999906],[-71.338705,41.64573499906],[-71.342645,41.64423699906],[-71.34468,41.64252799906],[-71.343666,41.63989999906],[-71.340603,41.63969099906],[-71.339056,41.63706399906],[-71.336103,41.63622299906],[-71.334697,41.63443699906],[-71.330711,41.63299199906],[-71.326824,41.63170399906],[-71.317122,41.63138899906],[-71.315247,41.62995199906],[-71.314029,41.62792099906],[-71.308123,41.62623899906],[-71.307321,41.62401699906],[-71.304046,41.61877699906],[-71.303526,41.60963899906],[-71.304327,41.60794899906],[-71.30264,41.60553099906],[-71.30489,41.60447999906],[-71.306093,41.60134299906],[-71.307561,41.59911799906],[-71.307773,41.59740899906],[-71.309517,41.59485299906],[-71.313466,41.58797199906],[-71.315716,41.58450099906],[-71.3167,41.58313399906],[-71.321612,41.58097899906],[-71.326103,41.57858299906],[-71.3312,41.58031799906],[-71.335949,41.58589799906],[-71.337048,41.59468799906],[-71.333751,41.60585899906],[-71.331182,41.60689799906],[-71.329559,41.60909699906],[-71.330057,41.61110299906],[-71.326609,41.61611399906],[-71.325558,41.62413699906],[-71.327386,41.62634399906],[-71.328841,41.62620199906],[-71.333994,41.62928699906],[-71.337369,41.63128399906],[-71.344961,41.63233499906],[-71.347352,41.63128399906],[-71.350726,41.63391099906],[-71.352248,41.63892799906],[-71.353257,41.64084599906],[-71.352976,41.64473399906],[-71.353819,41.64746599906]]]]}}},{"type":"UNSD","affgeoid":"9700000US4400900","name":"Providence School District","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.472459,41.83698099906],[-71.468742,41.83925999906],[-71.46456,41.84206599906],[-71.460292,41.84495699906],[-71.459526,41.84543999906],[-71.455905,41.84790299906],[-71.448324,41.85298099906],[-71.446686,41.85404999906],[-71.442986,41.85655599906],[-71.434998,41.86182399906],[-71.429906,41.86125499906],[-71.422155,41.86026599906],[-71.417418,41.85966599906],[-71.411057,41.85891299906],[-71.409275,41.85660099906],[-71.405543,41.85667199906],[-71.399596,41.85678199906],[-71.391101,41.85694499906],[-71.383719,41.85708599906],[-71.379003,41.85747799906],[-71.376699,41.85749999906],[-71.375021,41.85744899906],[-71.374526,41.85713599906],[-71.372334,41.85054799906],[-71.37226,41.84415699906],[-71.372247,41.84333699906],[-71.372996,41.83806499906],[-71.373099,41.83659999906],[-71.373587,41.83248599906],[-71.377434,41.82928799906],[-71.382797,41.82269499906],[-71.385572,41.81899599906],[-71.387083,41.81637199906],[-71.393528,41.81475599906],[-71.395258,41.81166899906],[-71.394984,41.81077299906],[-71.393499,41.80709999906],[-71.390099,41.80519999906],[-71.385199,41.80209999906],[-71.380799,41.79629999906],[-71.377299,41.79469999906],[-71.373308,41.79111699906],[-71.372711,41.78851799906],[-71.372002,41.78982299906],[-71.370731,41.78709199906],[-71.371008,41.78669399906],[-71.369694,41.78305799906],[-71.37168533333,41.78338266573],[-71.381287,41.78530299906],[-71.38247156425,41.78509918245],[-71.389413,41.78633499906],[-71.395042,41.78614799906],[-71.397728,41.78602999906],[-71.398247,41.78601099906],[-71.401657,41.78588899906],[-71.404259,41.78584899906],[-71.403051,41.78297899906],[-71.403768,41.78095599906],[-71.405114,41.77932799906],[-71.406397,41.77895699906],[-71.408787,41.77812499906],[-71.410036,41.77375999906],[-71.411947,41.77238099906],[-71.413296,41.77283099906],[-71.414963,41.77319299906],[-71.419437,41.77624299906],[-71.42381,41.77726699906],[-71.422132,41.78185999906],[-71.42061,41.78618399906],[-71.421667,41.78618999906],[-71.431603,41.78625399906],[-71.434046,41.78630699906],[-71.436482,41.78841199906],[-71.437642,41.79323899906],[-71.438541,41.79422899906],[-71.43934,41.79724099906],[-71.439266,41.80202699906],[-71.439938,41.80341499906],[-71.440252,41.80370499906],[-71.440541,41.80394599906],[-71.441318,41.80474999906],[-71.441541,41.80506299906],[-71.441869,41.80567399906],[-71.442015,41.80603999906],[-71.442154,41.80657299906],[-71.442223,41.80720299906],[-71.443678,41.80703199906],[-71.447533,41.80661399906],[-71.45023,41.80636999906],[-71.452314,41.80613299906],[-71.457703,41.80556899906],[-71.461882,41.80509899906],[-71.463665,41.80504599906],[-71.464583,41.80499099906],[-71.46492,41.80587399906],[-71.467072,41.80446999906],[-71.469165,41.80486399906],[-71.466803,41.80779999906],[-71.468703,41.81059999906],[-71.466551,41.81074199906],[-71.468193,41.81544499906],[-71.46965,41.81887599906],[-71.470031,41.81982799906],[-71.470877,41.82194399906],[-71.471077,41.82238399906],[-71.471306,41.82413899906],[-71.465216,41.82460399906],[-71.462423,41.82468699906],[-71.462432,41.82741299906],[-71.464769,41.83104799906],[-71.46759,41.83149099906],[-71.470444,41.83291199906],[-71.472432,41.83418099906],[-71.472459,41.83698099906]]]]}}},{"type":"UNSD","affgeoid":"9700000US4400960","name":"Scituate School District","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.69101,41.85645699906],[-71.676808,41.85664999906],[-71.613133,41.85776599906],[-71.604992,41.85799899906],[-71.574642,41.85874799906],[-71.573027,41.85150899906],[-71.57188,41.84427699906],[-71.570639,41.83856599906],[-71.569627,41.83507899906],[-71.56563,41.81498699906],[-71.561623,41.79722599906],[-71.559856,41.78936799906],[-71.55929,41.78934399906],[-71.554766,41.76527099906],[-71.553165,41.75698399906],[-71.552696,41.75545499906],[-71.548775,41.73660699906],[-71.547353,41.73120299906],[-71.54743,41.73002499906],[-71.550038,41.72998499906],[-71.562938,41.72967199906],[-71.576525,41.72933999906],[-71.586186,41.72910499906],[-71.644255,41.72779999906],[-71.665991,41.72743299906],[-71.668434,41.72746999906],[-71.67363,41.75764799906],[-71.675894,41.77036199906],[-71.678029,41.78255199906],[-71.679504,41.79120299906],[-71.679749,41.79259599906],[-71.685311,41.82361699906],[-71.6855,41.82537999906],[-71.688705,41.84336499906],[-71.689076,41.84487899906],[-71.69101,41.85645699906]]]]}}},{"type":"UNSD","affgeoid":"9700000US4400990","name":"Smithfield School District","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.590312,41.93366499906],[-71.555328,41.93687399906],[-71.490788,41.94324099906],[-71.489167,41.93846899906],[-71.4845,41.92498899906],[-71.482705,41.91900199906],[-71.482147,41.91768899906],[-71.481095,41.91477399906],[-71.473389,41.89197499906],[-71.466759,41.87276699906],[-71.474826,41.87172699906],[-71.475526,41.87156999906],[-71.486682,41.87011899906],[-71.49128,41.86953399906],[-71.492477,41.86946499906],[-71.495545,41.86898299906],[-71.505093,41.86772399906],[-71.514588,41.86648799906],[-71.531464,41.86426899906],[-71.540216,41.86309499906],[-71.545655,41.86252999906],[-71.550423,41.86176499906],[-71.573608,41.85880699906],[-71.574642,41.85874799906],[-71.575653,41.86357299906],[-71.579389,41.88181199906],[-71.579908,41.88471999906],[-71.581891,41.89466499906],[-71.590312,41.93366499906]]]]}}},{"type":"UNSD","affgeoid":"9700000US4401020","name":"South Kingstown School District","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.62561930959,41.36075527381],[-71.623852,41.36579999906],[-71.614031,41.39349499906],[-71.606228,41.41540799906],[-71.600087,41.43249399906],[-71.595141,41.44622499906],[-71.596287,41.44751999906],[-71.599519,41.44990899906],[-71.601283,41.45027799906],[-71.602799,41.44933199906],[-71.603749,41.45000199906],[-71.607136,41.45100499906],[-71.608912,41.45222699906],[-71.607325,41.45251499906],[-71.605182,41.45375499906],[-71.604415,41.45506599906],[-71.602462,41.45640499906],[-71.598628,41.45804199906],[-71.598548,41.45981999906],[-71.596917,41.46138899906],[-71.599174,41.46675499906],[-71.602046,41.46942699906],[-71.602385,41.47108999906],[-71.605019,41.47307199906],[-71.605898,41.47566899906],[-71.603944,41.47763199906],[-71.601182,41.47778599906],[-71.60099,41.48065899906],[-71.602665,41.48212199906],[-71.602006,41.48338499906],[-71.60405,41.48521799906],[-71.604273,41.48645099906],[-71.606264,41.48750399906],[-71.608914,41.48773699906],[-71.608014,41.48947599906],[-71.608645,41.49287399906],[-71.60769,41.49380399906],[-71.60893,41.49536599906],[-71.608745,41.49698199906],[-71.609517,41.49802299906],[-71.607486,41.50092799906],[-71.607724,41.50247999906],[-71.608322,41.50262299906],[-71.609332,41.50665699906],[-71.613042,41.52512099906],[-71.592394,41.51989199906],[-71.586982,41.51821299906],[-71.557099,41.51058199906],[-71.530528,41.50375199906],[-71.514896,41.50134099906],[-71.507886,41.50005999906],[-71.503438,41.49970099906],[-71.497304,41.49815599906],[-71.491864,41.49721899906],[-71.458115,41.49906899906],[-71.457966,41.49905799906],[-71.453721,41.49975699906],[-71.450101,41.50180099906],[-71.446657,41.48907699906],[-71.447047,41.48832999906],[-71.447922,41.48644299906],[-71.447362,41.48124899906],[-71.448703,41.47500699906],[-71.4496,41.47240099906],[-71.448398,41.46872899906],[-71.449924,41.46595199906],[-71.451137,41.46160399906],[-71.450869,41.45790999906],[-71.451617,41.45315699906],[-71.4526,41.45220199906],[-71.464283,41.44354299906],[-71.466022,41.44256299906],[-71.46801,41.44177699906],[-71.469497,41.44129499906],[-71.4727,41.44001499906],[-71.474835,41.43889099906],[-71.475075,41.43887699906],[-71.483326,41.43542099906],[-71.487704,41.43214899906],[-71.489553,41.43191099906],[-71.489991,41.43171399906],[-71.491614,41.42997999906],[-71.491758,41.42976499906],[-71.494802,41.42730099906],[-71.495501,41.42410099906],[-71.495801,41.42260099906],[-71.497101,41.41750199906],[-71.503202,41.41760099906],[-71.504827,41.40751199906],[-71.50839,41.39919799906],[-71.51464,41.38478999906],[-71.517312,41.38213599906],[-71.519392,41.38020399906],[-71.52280361357,41.37668988112],[-71.526429,41.37691899906],[-71.531546,41.37649299906],[-71.535372,41.37496399906],[-71.537237,41.37332899906],[-71.540901,41.37301099906],[-71.545289,41.37403899906],[-71.551566,41.37442299906],[-71.586094,41.36808999906],[-71.594756,41.36516199906],[-71.598051,41.36506399906],[-71.606487,41.36394299906],[-71.616506,41.36298899906],[-71.624158,41.36120999906],[-71.62561930959,41.36075527381]]]]}}},{"type":"UNSD","affgeoid":"9700000US4401050","name":"Tiverton School District","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.220998,41.56087699906],[-71.219933,41.56248299906],[-71.218714,41.56267799906],[-71.216863,41.56181899906],[-71.211415,41.55821899906],[-71.209823,41.55870899906],[-71.209563,41.56029199906],[-71.210207,41.56303899906],[-71.20865,41.57102799906],[-71.208352,41.58117199906],[-71.214436,41.58365899906],[-71.214674,41.58597099906],[-71.209445,41.59059299906],[-71.209207,41.59396999906],[-71.205404,41.59432499906],[-71.203741,41.59610299906],[-71.204454,41.59841399906],[-71.20778,41.60065999906],[-71.212656,41.61007199906],[-71.212115,41.61861899906],[-71.211837,41.62352899906],[-71.215308,41.62549099906],[-71.2167439754,41.62558690738],[-71.214127,41.63814199906],[-71.21392957528,41.63910299906],[-71.211822,41.63910299906],[-71.210871,41.64230099906],[-71.208019,41.65313499906],[-71.19564,41.67508999906],[-71.19439,41.67480199906],[-71.191178,41.67421599906],[-71.191175,41.67429199906],[-71.18433318989,41.67305306734],[-71.18432990614,41.67305247271],[-71.18129,41.67250199906],[-71.17599,41.67140199906],[-71.17608658195,41.66860112258],[-71.17609,41.66850199906],[-71.17609,41.66810199906],[-71.1621482835,41.66557872564],[-71.153989,41.66410199906],[-71.15358861219,41.66403754447],[-71.14587,41.66279499906],[-71.135188,41.66050199906],[-71.134688,41.66050199906],[-71.132888,41.66010199906],[-71.13267,41.65874399906],[-71.134478,41.64126199906],[-71.134484,41.64119799906],[-71.13470117132,41.63888992245],[-71.13567574949,41.62853219632],[-71.135688,41.62840199906],[-71.140468,41.62389299906],[-71.141509,41.61607599906],[-71.14091,41.60740499906],[-71.14086788925,41.60710381569],[-71.140588,41.60510199906],[-71.13854907,41.60342857493],[-71.137492,41.60256099906],[-71.13669155952,41.60138323143],[-71.131618,41.59391799906],[-71.13149152643,41.59325256623],[-71.131312,41.59230799906],[-71.12761807958,41.56323081037],[-71.15612,41.55724599906],[-71.159843,41.55630199906],[-71.196739,41.54867699906],[-71.21172242389,41.54544845652],[-71.215995,41.54717799906],[-71.215953,41.54846399906],[-71.215343,41.54929699906],[-71.215701,41.55213099906],[-71.215015,41.55383599906],[-71.213532,41.55474099906],[-71.213778,41.55679499906],[-71.218739,41.55929599906],[-71.220276,41.55958699906],[-71.220998,41.56087699906]]]]}}},{"type":"UNSD","affgeoid":"9700000US4401110","name":"Warwick School District","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.518913,41.69589899906],[-71.513336,41.70569399906],[-71.512764,41.70667499906],[-71.511904,41.70722999906],[-71.506691,41.70948199906],[-71.505188,41.71130699906],[-71.502365,41.71147199906],[-71.500786,41.71160599906],[-71.500253,41.71182299906],[-71.497116,41.71316699906],[-71.492892,41.71782599906],[-71.490539,41.71751599906],[-71.49028,41.72122699906],[-71.489327,41.72283999906],[-71.485802,41.72612499906],[-71.484781,41.72872399906],[-71.48391,41.73160299906],[-71.476815,41.73178899906],[-71.467939,41.73207899906],[-71.460599,41.73226799906],[-71.455342,41.73236499906],[-71.45285,41.73433499906],[-71.453736,41.73742799906],[-71.451278,41.73970399906],[-71.446198,41.73997899906],[-71.444684,41.74015499906],[-71.444359,41.74420899906],[-71.445327,41.74560699906],[-71.446538,41.74888699906],[-71.440619,41.75215299906],[-71.441165,41.75471199906],[-71.43912,41.75638999906],[-71.440574,41.75791199906],[-71.438829,41.75782899906],[-71.437561,41.75982699906],[-71.435883,41.75967699906],[-71.434069,41.76093599906],[-71.433775,41.76144099906],[-71.432968,41.75933499906],[-71.430969,41.76061699906],[-71.42989,41.76076099906],[-71.426224,41.76102499906],[-71.422957,41.76297099906],[-71.421994,41.76457999906],[-71.419797,41.76478499906],[-71.418715,41.76407599906],[-71.420091,41.76174599906],[-71.419078,41.76188499906],[-71.417848,41.76216699906],[-71.415806,41.76290199906],[-71.414383,41.76295299906],[-71.412183,41.76505799906],[-71.410702,41.76655399906],[-71.405203,41.76760999906],[-71.402355,41.76752399906],[-71.401395,41.76655199906],[-71.399577,41.76832099906],[-71.395628,41.76668399906],[-71.394121,41.76403799906],[-71.390534,41.76439099906],[-71.388517,41.76377499906],[-71.385659,41.75842099906],[-71.384733,41.75760199906],[-71.38380436647,41.75851169734],[-71.38118990422,41.75584281537],[-71.38105,41.75569999906],[-71.380099,41.74931599906],[-71.380574,41.74594699906],[-71.376058,41.74417399906],[-71.380812,41.73885299906],[-71.380574,41.73353299906],[-71.38105,41.72732399906],[-71.376534,41.72164799906],[-71.369879,41.71827699906],[-71.363937,41.71738999906],[-71.357282,41.71818799906],[-71.357282,41.71659199906],[-71.365717,41.71161499906],[-71.365717,41.70789799906],[-71.364412,41.70470399906],[-71.365646,41.70062199906],[-71.365601,41.69370099906],[-71.362748,41.69192599906],[-71.364887,41.68837699906],[-71.371542,41.68535899906],[-71.373444,41.67861399906],[-71.372988,41.67257499906],[-71.37791,41.66664599906],[-71.382049,41.66731699906],[-71.386279,41.67097999906],[-71.38988,41.67190299906],[-71.390775,41.68062899906],[-71.389432,41.68342499906],[-71.390551,41.68409599906],[-71.398163,41.68340699906],[-71.418069,41.68420799906],[-71.433815,41.68695699906],[-71.441336,41.68644599906],[-71.443082,41.68830299906],[-71.441896,41.69002499906],[-71.445923,41.69114399906],[-71.44848,41.68841399906],[-71.450198,41.68645899906],[-71.449997,41.68398999906],[-71.447699,41.67786999906],[-71.444574,41.67429799906],[-71.444268,41.67364699906],[-71.444621,41.67301599906],[-71.446573,41.67195899906],[-71.447018,41.67121599906],[-71.446247,41.66630999906],[-71.44493240215,41.66402899906],[-71.445572,41.66406599906],[-71.450127,41.66396399906],[-71.451218,41.66392299906],[-71.45829,41.66370499906],[-71.45853,41.66373399906],[-71.490206,41.66319299906],[-71.499225,41.66294799906],[-71.498932,41.66460699906],[-71.499451,41.66612199906],[-71.499836,41.67377599906],[-71.500062,41.67948099906],[-71.500723,41.68501599906],[-71.50103,41.68758999906],[-71.501679,41.69647399906],[-71.506142,41.69646699906],[-71.511574,41.69608699906],[-71.515419,41.69603899906],[-71.518913,41.69589899906]],[[-71.468692,41.63859399906],[-71.464831,41.63890399906],[-71.465652,41.64309799906],[-71.458654,41.64926599906],[-71.458017,41.64980899906],[-71.454876,41.64744499906],[-71.452157,41.64849199906],[-71.450376,41.65144899906],[-71.449315,41.65256599906],[-71.446018,41.65537599906],[-71.443021,41.66019999906],[-71.44237693746,41.66361147598],[-71.442148,41.66372799906],[-71.440996,41.66623099906],[-71.440153,41.66684299906],[-71.434748,41.66626299906],[-71.430038,41.66754099906],[-71.426647,41.66952599906],[-71.426086,41.67048399906],[-71.424285,41.67027499906],[-71.417652,41.66529799906],[-71.408621,41.66316799906],[-71.408858,41.65784099906],[-71.40887996267,41.65384065613],[-71.417581,41.65495199906],[-71.423884,41.65388799906],[-71.428941,41.65056899906],[-71.432796,41.65132299906],[-71.435944,41.64922299906],[-71.439301,41.64802299906],[-71.440925,41.64617999906],[-71.442508,41.64581799906],[-71.442717,41.64439799906],[-71.441986,41.64327499906],[-71.445084,41.64137299906],[-71.446277,41.63883699906],[-71.449286,41.63672999906],[-71.448447,41.63337699906],[-71.451366,41.62945499906],[-71.45311,41.62985899906],[-71.454404,41.63120199906],[-71.45423,41.63295299906],[-71.45558,41.63510899906],[-71.458324,41.63636599906],[-71.459123,41.63794599906],[-71.462354,41.63837999906],[-71.463436,41.63654399906],[-71.467844,41.63416499906],[-71.468692,41.63859399906]]]]}}},{"type":"UNSD","affgeoid":"9700000US4401140","name":"West Warwick School District","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.534286,41.73017099906],[-71.525348,41.73032799906],[-71.519928,41.73044299906],[-71.519413,41.73046899906],[-71.516861,41.73060799906],[-71.497849,41.73114999906],[-71.486568,41.73151899906],[-71.48391,41.73160299906],[-71.484781,41.72872399906],[-71.485802,41.72612499906],[-71.489327,41.72283999906],[-71.49028,41.72122699906],[-71.490539,41.71751599906],[-71.492892,41.71782599906],[-71.497116,41.71316699906],[-71.500253,41.71182299906],[-71.500786,41.71160599906],[-71.502365,41.71147199906],[-71.505188,41.71130699906],[-71.506691,41.70948199906],[-71.511904,41.70722999906],[-71.512764,41.70667499906],[-71.513336,41.70569399906],[-71.518913,41.69589899906],[-71.515419,41.69603899906],[-71.511574,41.69608699906],[-71.506142,41.69646699906],[-71.501679,41.69647399906],[-71.50103,41.68758999906],[-71.500723,41.68501599906],[-71.500062,41.67948099906],[-71.499836,41.67377599906],[-71.499451,41.66612199906],[-71.498932,41.66460699906],[-71.499225,41.66294799906],[-71.533379,41.66215599906],[-71.533182,41.67208599906],[-71.532988,41.67977199906],[-71.532968,41.68021599906],[-71.532875,41.68192099906],[-71.533009,41.68849799906],[-71.533109,41.69532999906],[-71.533113,41.69558999906],[-71.533302,41.70094599906],[-71.53346,41.70538099906],[-71.533541,41.70845899906],[-71.533774,41.71372699906],[-71.533883,41.71767999906],[-71.534015,41.72114199906],[-71.534055,41.72220399906],[-71.534286,41.73017099906]]]]}}},{"type":"UNSD","affgeoid":"9700000US4401170","name":"Westerly School District","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.862109,41.31661199906],[-71.860513,41.32024799906],[-71.857458,41.32078899906],[-71.851923,41.32466399906],[-71.847709,41.32960399906],[-71.844666,41.33058499906],[-71.836156,41.33601299906],[-71.83061772372,41.34124704635],[-71.829384,41.34241299906],[-71.829902,41.34663599906],[-71.831303,41.35129499906],[-71.835703,41.35356799906],[-71.836768,41.35510299906],[-71.837873,41.36014499906],[-71.83773172145,41.36329668814],[-71.83771339082,41.36370561389],[-71.837633,41.36549899906],[-71.83558816822,41.36706866834],[-71.83494691638,41.36756091094],[-71.832499,41.36943999906],[-71.83210776209,41.37008426103],[-71.83201075958,41.37024399768],[-71.831613,41.37089899906],[-71.83207658003,41.37296217051],[-71.832674,41.37562099906],[-71.83131395979,41.37772482169],[-71.830637,41.37877199906],[-71.83164333776,41.38002244502],[-71.833531,41.38236799906],[-71.83300056282,41.3852672379],[-71.832655,41.38715599906],[-71.835204,41.38955799906],[-71.83817,41.39059499906],[-71.83863230444,41.39115102491],[-71.8410615506,41.39407274384],[-71.842131,41.39535899906],[-71.842244,41.39687899906],[-71.84115,41.39922999906],[-71.841726,41.40324099906],[-71.843256,41.40446099906],[-71.843472,41.40582999906],[-71.84281656981,41.40873220644],[-71.842563,41.40985499906],[-71.839649,41.41211899906],[-71.836883,41.41222799906],[-71.834107,41.41158199906],[-71.827902,41.41433399906],[-71.824573,41.41523499906],[-71.823873,41.41716399906],[-71.82033,41.41938199906],[-71.816904,41.41992699906],[-71.8129,41.41940399906],[-71.806812,41.41667299906],[-71.803684,41.41742799906],[-71.801439,41.41554499906],[-71.797683,41.41670899906],[-71.79767369255,41.41691041756],[-71.796318,41.41622399906],[-71.797124,41.41369299906],[-71.796978,41.41144299906],[-71.798374,41.40891899906],[-71.797264,41.40724899906],[-71.79598,41.40728899906],[-71.798805,41.40499499906],[-71.803475,41.40406499906],[-71.800536,41.40110599906],[-71.799824,41.39933199906],[-71.799756,41.39858899906],[-71.797264,41.39853399906],[-71.794711,41.39792699906],[-71.794371,41.39703499906],[-71.798072,41.39669399906],[-71.798463,41.39556299906],[-71.797223,41.39320899906],[-71.796494,41.39286299906],[-71.792265,41.39214199906],[-71.790029,41.39262299906],[-71.788774,41.39107999906],[-71.786664,41.38970999906],[-71.7852,41.38953199906],[-71.784125,41.38694499906],[-71.78264,41.38675199906],[-71.782037,41.38857699906],[-71.780455,41.38871099906],[-71.780421,41.38708399906],[-71.779222,41.38727699906],[-71.778765,41.38963599906],[-71.780783,41.39348799906],[-71.779007,41.39454599906],[-71.777808,41.39325599906],[-71.776231,41.39352099906],[-71.774179,41.39541199906],[-71.771528,41.39705999906],[-71.772674,41.40040399906],[-71.771103,41.40138999906],[-71.76718,41.39920599906],[-71.769471,41.39948399906],[-71.770547,41.39817199906],[-71.769442,41.39679999906],[-71.769598,41.39780899906],[-71.768069,41.39481799906],[-71.765658,41.39625299906],[-71.764487,41.39859999906],[-71.763317,41.40130499906],[-71.761329,41.40169799906],[-71.758187,41.40413999906],[-71.755945,41.40766099906],[-71.755147,41.40797699906],[-71.750471,41.40782199906],[-71.747855,41.40670799906],[-71.748282,41.40519299906],[-71.746873,41.40337199906],[-71.745364,41.40233299906],[-71.742097,41.40130199906],[-71.739931,41.40171399906],[-71.738349,41.40032899906],[-71.731097,41.40080099906],[-71.735084,41.39966199906],[-71.733637,41.39870099906],[-71.731252,41.39851399906],[-71.730883,41.39030199906],[-71.730777,41.38647099906],[-71.730106,41.35165799906],[-71.730388,41.34279199906],[-71.72988001776,41.33169829052],[-71.730717,41.33163999906],[-71.746758,41.32809499906],[-71.751656,41.32540199906],[-71.761029,41.32849299906],[-71.766395,41.32885799906],[-71.773702,41.32797699906],[-71.785957,41.32573899906],[-71.815337,41.32023799906],[-71.833755,41.31563099906],[-71.845285,41.31186999906],[-71.857432,41.30631799906],[-71.859899,41.30942399906],[-71.862772,41.30979099906],[-71.862109,41.31661199906]]]]}}},{"type":"UNSD","affgeoid":"9700000US4401200","name":"Woonsocket School District","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.540116,42.00980499906],[-71.529707,42.00987699906],[-71.52999,42.01104499906],[-71.52892806735,42.0149707545],[-71.52769996117,42.01499606275],[-71.527606,42.01499799906],[-71.527306,42.01509799906],[-71.52464118753,42.01529987115],[-71.51163339947,42.01628527231],[-71.50205550327,42.01701084302],[-71.50204954111,42.01701129469],[-71.500905,42.01709799906],[-71.499905,42.01719799906],[-71.49825830106,42.01722023222],[-71.49135428024,42.01731344792],[-71.48378311796,42.01741567113],[-71.48371288296,42.01741661942],[-71.45811664513,42.01776221097],[-71.458214,42.01747899906],[-71.459297,42.01055099906],[-71.459891,42.00756999906],[-71.463733,42.00358599906],[-71.472726,41.99425999906],[-71.480327,41.98637799906],[-71.487364,41.97908499906],[-71.491746,41.97961199906],[-71.50706,41.98187699906],[-71.515179,41.98307099906],[-71.515232,41.98310599906],[-71.515503,41.98317399906],[-71.515797,41.98327599906],[-71.518066,41.98369599906],[-71.522354,41.98565299906],[-71.528008,41.98840699906],[-71.531662,41.98955599906],[-71.531694,41.98961399906],[-71.531975,41.99026399906],[-71.533301,41.99341899906],[-71.536049,41.99999699906],[-71.540116,42.00980499906]]]]}}}] \ No newline at end of file diff --git a/data/stateLegisLower.json b/data/stateLegisLower.json new file mode 100644 index 0000000..8b41e2a --- /dev/null +++ b/data/stateLegisLower.json @@ -0,0 +1 @@ +[{"type":"SLDL","affgeoid":"610U800US44001","name":"1","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.440498,41.84309399906],[-71.440102,41.84442899906],[-71.439713,41.84572599906],[-71.438942,41.84920099906],[-71.437912,41.85210399906],[-71.437141,41.85275299906],[-71.43792,41.85327099906],[-71.436264,41.85488099906],[-71.432587,41.85451099906],[-71.431679,41.85439099906],[-71.428825,41.85367599906],[-71.426628,41.85308099906],[-71.429451,41.85922999906],[-71.429906,41.86125499906],[-71.422155,41.86026599906],[-71.417418,41.85966599906],[-71.411057,41.85891299906],[-71.409275,41.85660099906],[-71.405543,41.85667199906],[-71.409729,41.85231399906],[-71.410507,41.85110899906],[-71.411171,41.84894899906],[-71.411186,41.84598499906],[-71.411179,41.84012599906],[-71.41188,41.83880199906],[-71.415021,41.83661599906],[-71.412733,41.83281899906],[-71.41229,41.83146799906],[-71.412148,41.83098299906],[-71.412903,41.82938599906],[-71.412659,41.82922399906],[-71.412132,41.82690399906],[-71.416008,41.82578299906],[-71.418839,41.82602299906],[-71.418152,41.82792499906],[-71.425421,41.82935299906],[-71.426568,41.82915499906],[-71.426605,41.82925799906],[-71.427765,41.83061999906],[-71.42836,41.83148999906],[-71.43177,41.82987199906],[-71.433304,41.82899899906],[-71.434212,41.82999399906],[-71.434723,41.82978099906],[-71.434868,41.82994499906],[-71.435013,41.83020399906],[-71.43515,41.83035299906],[-71.435326,41.83061999906],[-71.435585,41.83093599906],[-71.436409,41.83209599906],[-71.436523,41.83331699906],[-71.438538,41.83258399906],[-71.439117,41.83528099906],[-71.439171,41.83550599906],[-71.439728,41.83751699906],[-71.440552,41.84063299906],[-71.440498,41.84309399906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44010","name":"10","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.2167439754,41.62558690738],[-71.214127,41.63814199906],[-71.21392957528,41.63910299906],[-71.211822,41.63910299906],[-71.210871,41.64230099906],[-71.208019,41.65313499906],[-71.19564,41.67508999906],[-71.19439,41.67480199906],[-71.191178,41.67421599906],[-71.191175,41.67429199906],[-71.18433318989,41.67305306734],[-71.18432990614,41.67305247271],[-71.18129,41.67250199906],[-71.17599,41.67140199906],[-71.17608658195,41.66860112258],[-71.17609,41.66850199906],[-71.17609,41.66810199906],[-71.1621482835,41.66557872564],[-71.153989,41.66410199906],[-71.15358861219,41.66403754447],[-71.14587,41.66279499906],[-71.135188,41.66050199906],[-71.134688,41.66050199906],[-71.132888,41.66010199906],[-71.13267,41.65874399906],[-71.134478,41.64126199906],[-71.134484,41.64119799906],[-71.13470117132,41.63888992245],[-71.138771,41.63896699906],[-71.140899,41.63998999906],[-71.145843,41.64032099906],[-71.145797,41.63938499906],[-71.151687,41.63967999906],[-71.151954,41.63724299906],[-71.150077,41.63566599906],[-71.150367,41.63345399906],[-71.149192,41.63413399906],[-71.147972,41.63225199906],[-71.149749,41.63199799906],[-71.149925,41.62850499906],[-71.152153,41.62722899906],[-71.155128,41.62893799906],[-71.157974,41.63252799906],[-71.161069,41.63275999906],[-71.170573,41.64795299906],[-71.1734,41.65112299906],[-71.179328,41.64368899906],[-71.181663,41.64191599906],[-71.184371,41.64113499906],[-71.187423,41.64146899906],[-71.188224,41.63210499906],[-71.188171,41.63179899906],[-71.186515,41.62962899906],[-71.183227,41.62511599906],[-71.181266,41.62313999906],[-71.184608,41.62163599906],[-71.192581,41.61893999906],[-71.198158,41.61526199906],[-71.201148,41.61685299906],[-71.204911,41.61799199906],[-71.206192,41.61835899906],[-71.207176,41.61755399906],[-71.207628,41.61757099906],[-71.207962,41.61818899906],[-71.21211845546,41.61856440794],[-71.211837,41.62352899906],[-71.215308,41.62549099906],[-71.2167439754,41.62558690738]],[[-71.292854,41.71175899906],[-71.289294,41.71600099906],[-71.287604,41.72294899906],[-71.287478,41.72380299906],[-71.287294,41.72850099906],[-71.289494,41.73260099906],[-71.2898,41.73380699906],[-71.289337,41.73742699906],[-71.289002,41.73895899906],[-71.286593,41.74240099906],[-71.28440177169,41.76201027988],[-71.261392,41.75230099906],[-71.25474299447,41.74471835744],[-71.25213074575,41.74173930353],[-71.24533260386,41.73398658421],[-71.24524649557,41.73388838481],[-71.22623673166,41.71220931921],[-71.225791,41.71170099906],[-71.224798,41.71049799906],[-71.227875,41.70549799906],[-71.232975,41.70195299906],[-71.240991,41.69774399906],[-71.243671,41.69840399906],[-71.24581,41.69716199906],[-71.245335,41.69485499906],[-71.242482,41.68793299906],[-71.2377165786,41.68174099906],[-71.260205,41.67898499906],[-71.260368,41.67973899906],[-71.264931,41.67874399906],[-71.267761,41.67804899906],[-71.268216,41.67913799906],[-71.269814,41.68092199906],[-71.270332,41.68681499906],[-71.262161,41.68769299906],[-71.263628,41.69435199906],[-71.264702,41.69942699906],[-71.265945,41.70544199906],[-71.28006,41.70410399906],[-71.280524,41.71105899906],[-71.291377,41.70954999906],[-71.294039,41.71027999906],[-71.292854,41.71175899906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44011","name":"11","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.301515,41.58565799906],[-71.298562,41.58492199906],[-71.298,41.58313399906],[-71.297719,41.58176699906],[-71.297156,41.57976799906],[-71.299125,41.57976799906],[-71.300812,41.58060999906],[-71.301234,41.58302899906],[-71.301515,41.58565799906]],[[-71.288017,41.64557499906],[-71.286471,41.64757099906],[-71.281571,41.64820699906],[-71.278171,41.64730899906],[-71.276634,41.64364899906],[-71.276347,41.64053099906],[-71.272692,41.63853499906],[-71.272129,41.63706399906],[-71.277045,41.63803099906],[-71.283791,41.63779699906],[-71.285346,41.63685299906],[-71.285908,41.63800899906],[-71.285344,41.64037899906],[-71.288158,41.64294799906],[-71.288017,41.64557499906]],[[-71.353819,41.64746599906],[-71.352835,41.64925199906],[-71.350304,41.64904199906],[-71.348898,41.65124799906],[-71.347633,41.65282399906],[-71.346367,41.65334899906],[-71.344118,41.65282399906],[-71.343274,41.65376899906],[-71.343836,41.65486099906],[-71.345946,41.65534499906],[-71.350023,41.65713099906],[-71.35157,41.65860199906],[-71.351007,41.65975699906],[-71.348336,41.66122799906],[-71.34693,41.66332899906],[-71.348898,41.66532399906],[-71.344821,41.66700499906],[-71.344258,41.66406399906],[-71.344021,41.66149499906],[-71.33765,41.65797199906],[-71.337515,41.65704899906],[-71.339337,41.65502999906],[-71.338072,41.65082799906],[-71.334979,41.64746599906],[-71.332448,41.64378899906],[-71.333432,41.64179199906],[-71.336525,41.64189699906],[-71.334979,41.64420899906],[-71.335682,41.64578499906],[-71.337088,41.64672999906],[-71.338705,41.64573499906],[-71.342645,41.64423699906],[-71.34468,41.64252799906],[-71.343666,41.63989999906],[-71.340603,41.63969099906],[-71.339056,41.63706399906],[-71.336103,41.63622299906],[-71.334697,41.63443699906],[-71.330711,41.63299199906],[-71.326824,41.63170399906],[-71.317122,41.63138899906],[-71.315247,41.62995199906],[-71.314029,41.62792099906],[-71.308123,41.62623899906],[-71.307321,41.62401699906],[-71.304046,41.61877699906],[-71.303526,41.60963899906],[-71.304327,41.60794899906],[-71.30264,41.60553099906],[-71.30489,41.60447999906],[-71.306093,41.60134299906],[-71.307561,41.59911799906],[-71.307773,41.59740899906],[-71.309517,41.59485299906],[-71.313466,41.58797199906],[-71.315716,41.58450099906],[-71.3167,41.58313399906],[-71.321612,41.58097899906],[-71.326103,41.57858299906],[-71.3312,41.58031799906],[-71.335949,41.58589799906],[-71.337048,41.59468799906],[-71.333751,41.60585899906],[-71.331182,41.60689799906],[-71.329559,41.60909699906],[-71.330057,41.61110299906],[-71.326609,41.61611399906],[-71.325558,41.62413699906],[-71.327386,41.62634399906],[-71.328841,41.62620199906],[-71.333994,41.62928699906],[-71.337369,41.63128399906],[-71.344961,41.63233499906],[-71.347352,41.63128399906],[-71.350726,41.63391099906],[-71.352248,41.63892799906],[-71.353257,41.64084599906],[-71.352976,41.64473399906],[-71.353819,41.64746599906]],[[-71.296673,41.56712399906],[-71.294363,41.57141599906],[-71.288376,41.57327399906],[-71.285142,41.57712699906],[-71.284076,41.57939299906],[-71.28574,41.58277099906],[-71.289073,41.58270599906],[-71.285635,41.59164199906],[-71.285265,41.59236999906],[-71.28065,41.59285399906],[-71.273445,41.60698999906],[-71.272412,41.61504099906],[-71.275234,41.61944399906],[-71.271862,41.62398599906],[-71.264824,41.62524699906],[-71.261021,41.62737899906],[-71.258879,41.63322999906],[-71.251082,41.63877999906],[-71.246285,41.63981399906],[-71.242482,41.63839299906],[-71.23654,41.63839299906],[-71.233234,41.64022999906],[-71.232262,41.64336599906],[-71.225369,41.64709599906],[-71.223706,41.65064799906],[-71.22228,41.65419999906],[-71.220331,41.65557199906],[-71.21919,41.65366699906],[-71.217288,41.64620799906],[-71.217051,41.64283399906],[-71.216575,41.63910299906],[-71.21392957528,41.63910299906],[-71.214127,41.63814199906],[-71.2167439754,41.62558690738],[-71.218018,41.62567199906],[-71.219336,41.62548199906],[-71.220074,41.62493999906],[-71.219972,41.62394399906],[-71.221005,41.62350199906],[-71.224126,41.62288699906],[-71.236487,41.62136799906],[-71.238792,41.62059299906],[-71.240709,41.61922499906],[-71.241056,41.60694499906],[-71.241532,41.60463399906],[-71.2436,41.58750799906],[-71.237788,41.57759499906],[-71.234877,41.57654799906],[-71.23613,41.57476699906],[-71.236259,41.56499299906],[-71.238204,41.55876499906],[-71.237016,41.55485199906],[-71.233844,41.55378999906],[-71.233688,41.55236199906],[-71.234877,41.54916099906],[-71.236523,41.54489099906],[-71.234877,41.54168899906],[-71.236642,41.53585199906],[-71.234775,41.53253799906],[-71.228935,41.53030299906],[-71.227989,41.52829699906],[-71.229444,41.52154399906],[-71.2334466872,41.51407038744],[-71.265724,41.53817999906],[-71.265663,41.53826899906],[-71.280622,41.54697299906],[-71.290753,41.55422099906],[-71.300256,41.56100799906],[-71.30160652206,41.5620349569],[-71.296673,41.56712399906]],[[-71.372238,41.59985399906],[-71.369426,41.60206199906],[-71.36788,41.60395399906],[-71.367317,41.60595199906],[-71.365489,41.60668799906],[-71.36338,41.60668799906],[-71.363943,41.60542599906],[-71.36338,41.60353399906],[-71.364786,41.60143099906],[-71.369426,41.59817199906],[-71.371676,41.59732999906],[-71.373363,41.59743599906],[-71.372238,41.59985399906]],[[-71.367036,41.66070299906],[-71.364786,41.66049299906],[-71.362115,41.66017799906],[-71.360709,41.66112299906],[-71.354663,41.65975699906],[-71.353398,41.65786599906],[-71.354241,41.65608099906],[-71.355507,41.65387499906],[-71.35635,41.65208899906],[-71.358178,41.65124799906],[-71.360006,41.64988199906],[-71.362537,41.65114299906],[-71.364083,41.65587099906],[-71.364646,41.65755099906],[-71.366333,41.65891699906],[-71.367036,41.66070299906]],[[-71.27916837403,41.66978776462],[-71.276535,41.67035499906],[-71.278679,41.67630199906],[-71.278717,41.67657999906],[-71.278946,41.68581599906],[-71.270332,41.68681499906],[-71.269814,41.68092199906],[-71.268216,41.67913799906],[-71.267761,41.67804899906],[-71.264931,41.67874399906],[-71.260368,41.67973899906],[-71.260205,41.67898499906],[-71.2377165786,41.68174099906],[-71.237635,41.68163499906],[-71.234639,41.67745999906],[-71.235352,41.67213399906],[-71.236778,41.66804999906],[-71.238442,41.66556499906],[-71.240343,41.66556499906],[-71.244384,41.66911599906],[-71.250326,41.66503199906],[-71.253416,41.66059299906],[-71.254604,41.65224699906],[-71.256743,41.65029299906],[-71.257219,41.64674099906],[-71.25956,41.64259499906],[-71.263161,41.64301099906],[-71.267055,41.64494499906],[-71.270075,41.65243899906],[-71.26918,41.65489999906],[-71.267676,41.65739699906],[-71.269103,41.66005999906],[-71.272192,41.66130299906],[-71.277659,41.66627499906],[-71.27916837403,41.66978776462]]]]}}},{"type":"SLDL","affgeoid":"610U800US44012","name":"12","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.312696,41.53651399906],[-71.308082,41.53937699906],[-71.308082,41.54293499906],[-71.311129,41.54405199906],[-71.310533,41.54691999906],[-71.303652,41.55992499906],[-71.30160652206,41.5620349569],[-71.300256,41.56100799906],[-71.290753,41.55422099906],[-71.280622,41.54697299906],[-71.265663,41.53826899906],[-71.265724,41.53817999906],[-71.2334466872,41.51407038744],[-71.233456,41.51405299906],[-71.240737,41.50555099906],[-71.24074,41.50170399906],[-71.246666,41.49426499906],[-71.247992,41.49028999906],[-71.246855,41.48741499906],[-71.24426,41.48573699906],[-71.242033,41.48534399906],[-71.238112,41.48605699906],[-71.237437,41.48571099906],[-71.237615,41.48227599906],[-71.238326,41.48075899906],[-71.239676,41.48025299906],[-71.240428,41.47614699906],[-71.242285,41.47523899906],[-71.243728,41.47520399906],[-71.244895,41.47383499906],[-71.246427,41.47294799906],[-71.247366,41.47299599906],[-71.247715,41.47368999906],[-71.24524,41.48028499906],[-71.245859,41.48163699906],[-71.252079,41.48592399906],[-71.258192,41.48792099906],[-71.264793,41.48890199906],[-71.26764,41.48821399906],[-71.26886,41.48469799906],[-71.274861,41.47984599906],[-71.27664,41.48003799906],[-71.282314,41.48828599906],[-71.285486,41.48900399906],[-71.28567255988,41.48896754263],[-71.287138,41.49054899906],[-71.291442,41.48938899906],[-71.296257,41.48683399906],[-71.296745,41.48711199906],[-71.297943,41.48893499906],[-71.298973,41.49391699906],[-71.297886,41.49424299906],[-71.301437,41.49379599906],[-71.303314,41.49352899906],[-71.304092,41.49442699906],[-71.305168,41.49339699906],[-71.308824,41.49514199906],[-71.307685,41.49747999906],[-71.307121,41.49862699906],[-71.30516,41.49919299906],[-71.303008,41.49978999906],[-71.302093,41.50001499906],[-71.301666,41.50348699906],[-71.302833,41.50409799906],[-71.301521,41.50594899906],[-71.302421,41.50699799906],[-71.303558,41.50857899906],[-71.306441,41.51271599906],[-71.311141,41.51939599906],[-71.312237,41.52085299906],[-71.31266633346,41.52142511034],[-71.311251,41.52262099906],[-71.311346,41.52422199906],[-71.314151,41.53144599906],[-71.312696,41.53651399906]],[[-71.220998,41.56087699906],[-71.219933,41.56248299906],[-71.218714,41.56267799906],[-71.216863,41.56181899906],[-71.211415,41.55821899906],[-71.209823,41.55870899906],[-71.209563,41.56029199906],[-71.210207,41.56303899906],[-71.20865,41.57102799906],[-71.208352,41.58117199906],[-71.214436,41.58365899906],[-71.214674,41.58597099906],[-71.209445,41.59059299906],[-71.209207,41.59396999906],[-71.205404,41.59432499906],[-71.203741,41.59610299906],[-71.204454,41.59841399906],[-71.20778,41.60065999906],[-71.212656,41.61007199906],[-71.21211845546,41.61856440794],[-71.207962,41.61818899906],[-71.207628,41.61757099906],[-71.207176,41.61755399906],[-71.206192,41.61835899906],[-71.204911,41.61799199906],[-71.201148,41.61685299906],[-71.198158,41.61526199906],[-71.192581,41.61893999906],[-71.184608,41.62163599906],[-71.181266,41.62313999906],[-71.183227,41.62511599906],[-71.186515,41.62962899906],[-71.188171,41.63179899906],[-71.188224,41.63210499906],[-71.187423,41.64146899906],[-71.184371,41.64113499906],[-71.181663,41.64191599906],[-71.179328,41.64368899906],[-71.1734,41.65112299906],[-71.170573,41.64795299906],[-71.161069,41.63275999906],[-71.157974,41.63252799906],[-71.155128,41.62893799906],[-71.152153,41.62722899906],[-71.149925,41.62850499906],[-71.149749,41.63199799906],[-71.147972,41.63225199906],[-71.149192,41.63413399906],[-71.150367,41.63345399906],[-71.150077,41.63566599906],[-71.151954,41.63724299906],[-71.151687,41.63967999906],[-71.145797,41.63938499906],[-71.145843,41.64032099906],[-71.140899,41.63998999906],[-71.138771,41.63896699906],[-71.13470117132,41.63888992245],[-71.13567574949,41.62853219632],[-71.135688,41.62840199906],[-71.140468,41.62389299906],[-71.141509,41.61607599906],[-71.14091,41.60740499906],[-71.14086788925,41.60710381569],[-71.140588,41.60510199906],[-71.13854907,41.60342857493],[-71.137492,41.60256099906],[-71.13669155952,41.60138323143],[-71.131618,41.59391799906],[-71.13149152643,41.59325256623],[-71.131312,41.59230799906],[-71.12761807958,41.56323081037],[-71.12659522283,41.5551792567],[-71.1224,41.52215599906],[-71.12057,41.49744799906],[-71.129229,41.49628399906],[-71.136867,41.49394199906],[-71.141093,41.48993699906],[-71.140224,41.48585499906],[-71.139087,41.48344499906],[-71.142439,41.48121499906],[-71.145747,41.48117599906],[-71.14646,41.47850499906],[-71.148905,41.47705599906],[-71.150859,41.47581899906],[-71.154394,41.47669199906],[-71.159274,41.47598499906],[-71.162086,41.47400899906],[-71.163097,41.47173799906],[-71.167345,41.47140499906],[-71.170233,41.46838099906],[-71.170131,41.46397399906],[-71.168648,41.46145199906],[-71.170444,41.46062099906],[-71.173619,41.46142199906],[-71.175535,41.45985399906],[-71.177916,41.46080999906],[-71.180544,41.45974199906],[-71.186279,41.46028499906],[-71.193979,41.45639599906],[-71.194967,41.45903699906],[-71.196857,41.46111599906],[-71.196607,41.46475599906],[-71.192354,41.46656399906],[-71.192459,41.47044299906],[-71.191924,41.47436299906],[-71.190016,41.47827499906],[-71.190167,41.48428499906],[-71.19939,41.49176899906],[-71.199692,41.49551099906],[-71.202262,41.49838399906],[-71.206382,41.49921499906],[-71.200788,41.51437099906],[-71.202034,41.51706499906],[-71.204773,41.51910399906],[-71.204796,41.52334399906],[-71.207306,41.52638799906],[-71.208257,41.52887999906],[-71.204929,41.54079999906],[-71.20683,41.54346799906],[-71.215995,41.54717799906],[-71.215953,41.54846399906],[-71.215343,41.54929699906],[-71.215701,41.55213099906],[-71.215015,41.55383599906],[-71.213532,41.55474099906],[-71.213778,41.55679499906],[-71.218739,41.55929599906],[-71.220276,41.55958699906],[-71.220998,41.56087699906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44013","name":"13","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.343126,41.49729199906],[-71.341267,41.50049399906],[-71.33978,41.49882299906],[-71.338665,41.49617899906],[-71.338665,41.49492599906],[-71.343126,41.49492599906],[-71.343126,41.49729199906]],[[-71.328827,41.49233399906],[-71.326957,41.49311599906],[-71.325657,41.49005399906],[-71.325365,41.48760099906],[-71.3264,41.48378899906],[-71.327822,41.48298499906],[-71.329002,41.48712999906],[-71.328827,41.49233399906]],[[-71.362911,41.46174599906],[-71.361185,41.46461999906],[-71.359559,41.46422899906],[-71.358273,41.46443099906],[-71.357206,41.46612399906],[-71.352766,41.46924499906],[-71.3479,41.47058999906],[-71.341833,41.47601199906],[-71.336442,41.48198499906],[-71.33438,41.47820399906],[-71.336366,41.47173799906],[-71.335992,41.46964699906],[-71.323531,41.47583399906],[-71.316519,41.47755999906],[-71.318065,41.48776399906],[-71.321154,41.48811999906],[-71.322818,41.49114699906],[-71.323125,41.50308799906],[-71.327804,41.50425799906],[-71.330694,41.50769899906],[-71.329315,41.51382899906],[-71.326035,41.51430999906],[-71.325451,41.51727999906],[-71.328031,41.51884799906],[-71.327128,41.52158899906],[-71.323991,41.52240699906],[-71.320901,41.51948899906],[-71.314579,41.51980899906],[-71.31266633346,41.52142511034],[-71.312237,41.52085299906],[-71.311141,41.51939599906],[-71.306441,41.51271599906],[-71.303558,41.50857899906],[-71.302421,41.50699799906],[-71.301521,41.50594899906],[-71.302833,41.50409799906],[-71.301666,41.50348699906],[-71.302093,41.50001499906],[-71.303008,41.49978999906],[-71.30516,41.49919299906],[-71.307121,41.49862699906],[-71.307685,41.49747999906],[-71.308824,41.49514199906],[-71.305168,41.49339699906],[-71.304092,41.49442699906],[-71.303314,41.49352899906],[-71.301437,41.49379599906],[-71.297886,41.49424299906],[-71.298973,41.49391699906],[-71.297943,41.48893499906],[-71.296745,41.48711199906],[-71.296257,41.48683399906],[-71.291442,41.48938899906],[-71.287138,41.49054899906],[-71.28567255988,41.48896754263],[-71.29133,41.48786199906],[-71.296918,41.48552099906],[-71.297392,41.48478999906],[-71.296516,41.47983099906],[-71.297393,41.47344299906],[-71.296851,41.46913099906],[-71.298182,41.46749199906],[-71.301414,41.46727799906],[-71.303981,41.46371599906],[-71.302762,41.45974799906],[-71.303052,41.45908299906],[-71.303911,41.45867999906],[-71.304394,41.45450199906],[-71.307639,41.45243499906],[-71.310168,41.45112399906],[-71.312049,41.45138199906],[-71.311918,41.45288499906],[-71.310983,41.45510599906],[-71.312558,41.45649799906],[-71.314711,41.45638899906],[-71.316908,41.45478799906],[-71.31848,41.45572399906],[-71.319485,41.45838499906],[-71.320326,41.45978299906],[-71.323751,41.46012899906],[-71.326909,41.45894199906],[-71.327536,41.45707199906],[-71.331466,41.45280299906],[-71.334764,41.44951599906],[-71.337483,41.44931699906],[-71.338036,41.44952799906],[-71.337544,41.45097899906],[-71.337933,41.45169299906],[-71.339006,41.45190199906],[-71.339697,41.45257699906],[-71.344177,41.45402799906],[-71.353609,41.44975099906],[-71.356163,41.45053799906],[-71.357245,41.45614599906],[-71.358447,41.45743899906],[-71.358795,41.45966099906],[-71.360038,41.46048599906],[-71.36189,41.46019599906],[-71.362911,41.46174599906]],[[-71.345913,41.53694999906],[-71.344984,41.53792299906],[-71.343126,41.53583699906],[-71.342382,41.53249799906],[-71.342568,41.52901999906],[-71.344426,41.52915899906],[-71.345913,41.52957699906],[-71.346285,41.53416799906],[-71.345913,41.53694999906]],[[-71.327568,41.45286799906],[-71.326348,41.45470999906],[-71.324955,41.45468999906],[-71.324296,41.45392399906],[-71.325649,41.45210599906],[-71.32689,41.45195999906],[-71.327568,41.45286799906]],[[-71.405096,41.49821399906],[-71.402966,41.50299899906],[-71.403626,41.50456599906],[-71.401407,41.50626699906],[-71.399621,41.50661699906],[-71.397391,41.50619999906],[-71.396276,41.50369499906],[-71.400349,41.50010599906],[-71.401791,41.50009499906],[-71.403238,41.49758299906],[-71.404475,41.49732799906],[-71.405096,41.49821399906]],[[-71.40056,41.46093999906],[-71.399063,41.46387799906],[-71.395904,41.46471299906],[-71.394417,41.46721999906],[-71.39609,41.47139699906],[-71.397577,41.47376399906],[-71.396648,41.47891599906],[-71.398134,41.48490299906],[-71.397507,41.48697899906],[-71.399993,41.48880099906],[-71.40055,41.49033199906],[-71.399435,41.49297699906],[-71.396833,41.49325499906],[-71.395927,41.49221499906],[-71.392373,41.49186299906],[-71.388846,41.49285899906],[-71.386511,41.49307099906],[-71.38401,41.49381199906],[-71.38494,41.49701399906],[-71.383453,41.50104999906],[-71.378914,41.50494799906],[-71.379179,41.50619999906],[-71.382996,41.50819999906],[-71.38494,41.51079199906],[-71.391005,41.51457799906],[-71.392559,41.51761099906],[-71.392137,41.52446799906],[-71.388842,41.53444599906],[-71.385683,41.53903599906],[-71.386613,41.54583199906],[-71.385497,41.54835499906],[-71.384478,41.55673599906],[-71.383734,41.55824099906],[-71.381409,41.55878599906],[-71.38132,41.56312299906],[-71.379021,41.56777199906],[-71.373618,41.57321399906],[-71.370194,41.57396299906],[-71.36356,41.57085999906],[-71.362825,41.56559899906],[-71.361907,41.56434599906],[-71.359868,41.55630799906],[-71.360405,41.54779199906],[-71.362267,41.54376599906],[-71.364683,41.54140099906],[-71.364869,41.53959299906],[-71.36394,41.53541999906],[-71.362639,41.53249799906],[-71.361338,41.52637699906],[-71.361561,41.52358699906],[-71.363382,41.51858499906],[-71.365426,41.51663699906],[-71.365612,41.51399299906],[-71.365233,41.51202599906],[-71.363382,41.51009699906],[-71.361152,41.51009699906],[-71.359851,41.51065299906],[-71.357621,41.50870499906],[-71.358922,41.50327699906],[-71.363175,41.50119099906],[-71.365984,41.49882299906],[-71.366541,41.49478699906],[-71.360867,41.48614799906],[-71.35948,41.48309299906],[-71.355949,41.48114399906],[-71.35409,41.48044799906],[-71.354315,41.47889099906],[-71.357064,41.47919499906],[-71.358736,41.47710599906],[-71.364239,41.47647599906],[-71.368214,41.47780199906],[-71.371745,41.47752399906],[-71.37286,41.47543499906],[-71.37509,41.47376399906],[-71.376763,41.47487799906],[-71.378249,41.47933399906],[-71.378249,41.48281499906],[-71.379179,41.48615599906],[-71.380665,41.48880099906],[-71.383453,41.48866199906],[-71.38624,41.48768699906],[-71.385311,41.48532099906],[-71.384702,41.48282199906],[-71.384754,41.47835899906],[-71.382152,41.47237199906],[-71.381594,41.46805499906],[-71.383586,41.46478199906],[-71.384505,41.46410799906],[-71.386798,41.46457399906],[-71.389028,41.46554899906],[-71.390143,41.46415599906],[-71.389284,41.46060499906],[-71.390275,41.45504299906],[-71.396037,41.45201599906],[-71.399568,41.44859599906],[-71.40078,41.45497499906],[-71.40056,41.46093999906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44014","name":"14","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.395258,41.81166899906],[-71.393528,41.81475599906],[-71.387083,41.81637199906],[-71.385572,41.81899599906],[-71.382797,41.82269499906],[-71.377434,41.82928799906],[-71.373587,41.83248599906],[-71.373099,41.83659999906],[-71.372996,41.83806499906],[-71.372247,41.84333699906],[-71.37226,41.84415699906],[-71.372334,41.85054799906],[-71.374526,41.85713599906],[-71.375021,41.85744899906],[-71.365795,41.85834099906],[-71.363744,41.85853999906],[-71.358688,41.85904599906],[-71.354507,41.85946699906],[-71.354477,41.84775499906],[-71.353867,41.84706099906],[-71.352039,41.84563599906],[-71.355453,41.84083299906],[-71.354973,41.84030199906],[-71.360012,41.83349099906],[-71.360435,41.83295099906],[-71.356369,41.83009699906],[-71.352745,41.82911299906],[-71.352692,41.82735099906],[-71.356075,41.82180799906],[-71.355748,41.81816399906],[-71.35675,41.81641399906],[-71.357658,41.81463999906],[-71.358475,41.81213799906],[-71.351357,41.81067999906],[-71.350037,41.80828499906],[-71.349998,41.80697599906],[-71.351189,41.80318199906],[-71.351982,41.79556699906],[-71.350403,41.79294999906],[-71.353636,41.79339799906],[-71.354156,41.79161399906],[-71.359513,41.79281599906],[-71.359547,41.79036199906],[-71.361158,41.79058899906],[-71.360437,41.78889999906],[-71.363392,41.78910899906],[-71.36454,41.78852099906],[-71.365067,41.79014599906],[-71.369682,41.78941299906],[-71.370652,41.78811699906],[-71.372002,41.78982299906],[-71.372711,41.78851799906],[-71.373308,41.79111699906],[-71.377299,41.79469999906],[-71.380799,41.79629999906],[-71.385199,41.80209999906],[-71.390099,41.80519999906],[-71.393499,41.80709999906],[-71.394984,41.81077299906],[-71.395258,41.81166899906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44015","name":"15","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.4219,41.87869499906],[-71.415553,41.87954699906],[-71.406403,41.88071599906],[-71.405004,41.88089399906],[-71.405365,41.87716299906],[-71.404884,41.87710599906],[-71.40387,41.87356599906],[-71.403152,41.87366499906],[-71.401512,41.87389399906],[-71.398926,41.87431299906],[-71.398025,41.87447599906],[-71.39312,41.87525199906],[-71.391235,41.87555899906],[-71.388596,41.87571699906],[-71.387337,41.87571299906],[-71.387581,41.87350499906],[-71.387611,41.87313799906],[-71.385323,41.87333899906],[-71.384699,41.87342999906],[-71.381973,41.87393999906],[-71.381088,41.87439299906],[-71.380938,41.87394199906],[-71.380341,41.87314599906],[-71.375862,41.86810699906],[-71.372581,41.86471899906],[-71.371479,41.86366999906],[-71.370329,41.86430799906],[-71.366298,41.86556499906],[-71.366226,41.86071799906],[-71.36834,41.86071399906],[-71.374451,41.86060699906],[-71.374276,41.85905099906],[-71.374907,41.85891899906],[-71.375021,41.85744899906],[-71.376699,41.85749999906],[-71.379003,41.85747799906],[-71.383719,41.85708599906],[-71.391101,41.85694499906],[-71.391449,41.85621999906],[-71.393143,41.85289799906],[-71.395187,41.84865199906],[-71.396057,41.84691199906],[-71.397545,41.84389899906],[-71.397621,41.84375399906],[-71.398987,41.84101899906],[-71.400856,41.84155699906],[-71.39959,41.84414699906],[-71.401894,41.84478799906],[-71.400734,41.84645499906],[-71.405052,41.84675999906],[-71.407837,41.84195299906],[-71.407982,41.84199099906],[-71.40873,41.84363599906],[-71.411186,41.84598499906],[-71.411171,41.84894899906],[-71.410507,41.85110899906],[-71.409729,41.85231399906],[-71.405543,41.85667199906],[-71.409275,41.85660099906],[-71.411057,41.85891299906],[-71.417418,41.85966599906],[-71.418624,41.86484899906],[-71.419594,41.86910999906],[-71.419876,41.86977399906],[-71.4219,41.87869499906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44016","name":"16","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.407055,41.89190999906],[-71.404691,41.89478399906],[-71.404568,41.89482399906],[-71.397243,41.89678199906],[-71.394296,41.89765199906],[-71.391739,41.89834299906],[-71.39006,41.89931899906],[-71.388268,41.89980499906],[-71.386348,41.89963599906],[-71.3817,41.89706199906],[-71.3817,41.89375174631],[-71.3817,41.89319899906],[-71.38152935439,41.893225767],[-71.381638,41.89269999906],[-71.383093,41.88986999906],[-71.381824,41.88836999906],[-71.380219,41.88792999906],[-71.381008,41.88406699906],[-71.380991,41.88332399906],[-71.381807,41.87984799906],[-71.385056,41.87988999906],[-71.386391,41.87951999906],[-71.38774,41.87879999906],[-71.387238,41.87810499906],[-71.387337,41.87571299906],[-71.388596,41.87571699906],[-71.391235,41.87555899906],[-71.39312,41.87525199906],[-71.398025,41.87447599906],[-71.398926,41.87431299906],[-71.401512,41.87389399906],[-71.403152,41.87366499906],[-71.40387,41.87356599906],[-71.404884,41.87710599906],[-71.405365,41.87716299906],[-71.405004,41.88089399906],[-71.403706,41.88105899906],[-71.405817,41.88723899906],[-71.406227,41.88849099906],[-71.407055,41.89190999906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44017","name":"17","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.597897,41.98587699906],[-71.596417,41.99054599906],[-71.596008,41.99299799906],[-71.59451,41.99501799906],[-71.592763,41.99434199906],[-71.590538,41.99485199906],[-71.586123,41.99471899906],[-71.583856,41.99562999906],[-71.580633,41.99898999906],[-71.578953,41.99914099906],[-71.580132,41.99986599906],[-71.579109,42.00032399906],[-71.577133,42.00100299906],[-71.56998,41.99967899906],[-71.564827,41.99692199906],[-71.56041,41.99826399906],[-71.55838,42.00059999906],[-71.556966,41.99928999906],[-71.538112,41.98445599906],[-71.535675,41.98561099906],[-71.533806,41.98955499906],[-71.531754,41.98957399906],[-71.531662,41.98955599906],[-71.528008,41.98840699906],[-71.522354,41.98565299906],[-71.518066,41.98369599906],[-71.515797,41.98327599906],[-71.515503,41.98317399906],[-71.515274,41.98306299906],[-71.515232,41.98310599906],[-71.515179,41.98307099906],[-71.50706,41.98187699906],[-71.491746,41.97961199906],[-71.487364,41.97908499906],[-71.486156,41.97822199906],[-71.478657,41.97714099906],[-71.474141,41.97262399906],[-71.469992,41.97110799906],[-71.46536,41.96938899906],[-71.464389,41.96809599906],[-71.465011,41.96599799906],[-71.462227,41.96057299906],[-71.461781,41.95741499906],[-71.457241,41.95656799906],[-71.455219,41.95563399906],[-71.452315,41.95310499906],[-71.450987,41.94991299906],[-71.442549,41.94740999906],[-71.439703,41.94377599906],[-71.438092,41.94262699906],[-71.433982,41.93821899906],[-71.430955,41.93463599906],[-71.430717,41.93339799906],[-71.431287,41.93054099906],[-71.430939,41.92698699906],[-71.428327,41.92354299906],[-71.425322,41.92246299906],[-71.4217,41.92214499906],[-71.419443,41.92062699906],[-71.418425,41.91881899906],[-71.416233,41.91780799906],[-71.408959,41.91386099906],[-71.407214,41.91184199906],[-71.405393,41.91099899906],[-71.403023,41.91139299906],[-71.402695,41.90962599906],[-71.404556,41.90932799906],[-71.405472,41.90696699906],[-71.407402,41.90527699906],[-71.407791,41.90560199906],[-71.408638,41.90817599906],[-71.414589,41.90625399906],[-71.413834,41.90361399906],[-71.414238,41.90298499906],[-71.415016,41.90201599906],[-71.417519,41.90104299906],[-71.416588,41.89961999906],[-71.413444,41.89637899906],[-71.411261,41.89515499906],[-71.410013,41.89340799906],[-71.407722,41.89310499906],[-71.407753,41.89120499906],[-71.407055,41.89190999906],[-71.406227,41.88849099906],[-71.405817,41.88723899906],[-71.403706,41.88105899906],[-71.405004,41.88089399906],[-71.406403,41.88071599906],[-71.415553,41.87954699906],[-71.4219,41.87869499906],[-71.433654,41.87720999906],[-71.431679,41.87340899906],[-71.431236,41.87115899906],[-71.434326,41.87043399906],[-71.437798,41.87063999906],[-71.441116,41.86875499906],[-71.440636,41.86760299906],[-71.442825,41.86761899906],[-71.44416,41.86746599906],[-71.444588,41.86947599906],[-71.445267,41.87049299906],[-71.44735,41.87063199906],[-71.448158,41.87327599906],[-71.449154,41.87524199906],[-71.455584,41.87442899906],[-71.463265,41.87352899906],[-71.464864,41.87572999906],[-71.465283,41.87873899906],[-71.468193,41.88278999906],[-71.467758,41.88820599906],[-71.466621,41.89104099906],[-71.468063,41.89585899906],[-71.465065,41.90421699906],[-71.465027,41.90547199906],[-71.466599,41.90589899906],[-71.470932,41.90897799906],[-71.472931,41.91175099906],[-71.479248,41.91537099906],[-71.481095,41.91477399906],[-71.482147,41.91768899906],[-71.482705,41.91900199906],[-71.4845,41.92498899906],[-71.489167,41.93846899906],[-71.490788,41.94324099906],[-71.555328,41.93687399906],[-71.590312,41.93366499906],[-71.596898,41.96612299906],[-71.600443,41.98302699906],[-71.597897,41.98587699906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44018","name":"18","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.381088,41.87439299906],[-71.380241,41.87512199906],[-71.379539,41.87659499906],[-71.373024,41.87771999906],[-71.372841,41.87898299906],[-71.372803,41.87969599906],[-71.372482,41.88137099906],[-71.371452,41.88426399906],[-71.370834,41.88466299906],[-71.370224,41.88490699906],[-71.367027,41.88522699906],[-71.365471,41.88240699906],[-71.364915,41.88048699906],[-71.362236,41.87997099906],[-71.361122,41.87975899906],[-71.357353,41.87900499906],[-71.354263,41.87839899906],[-71.354294,41.87604099906],[-71.354301,41.87536999906],[-71.353256,41.87534299906],[-71.349663,41.87534299906],[-71.349701,41.87323799906],[-71.349739,41.87159699906],[-71.352347,41.87137299906],[-71.352562,41.86967099906],[-71.354378,41.86975499906],[-71.354413,41.86644799906],[-71.340586,41.86585999906],[-71.339856,41.86416999906],[-71.339221,41.86382199906],[-71.338142,41.86143599906],[-71.337776,41.86091699906],[-71.334653,41.86131399906],[-71.33449398868,41.86123948182],[-71.34167342264,41.84591938741],[-71.342198,41.84479999906],[-71.341797,41.84369999906],[-71.34079565848,41.84245590809],[-71.335197,41.83549999906],[-71.33750452,41.83376935906],[-71.337597,41.83369999906],[-71.339597,41.83199999906],[-71.3428393693,41.82955292789],[-71.344897,41.82799999906],[-71.34588873174,41.82588717927],[-71.347197,41.82309999906],[-71.339197,41.80899999906],[-71.3390217069,41.80859098182],[-71.33900374314,41.8085490664],[-71.338897,41.80829999906],[-71.33927361176,41.80660524612],[-71.339297,41.80649999906],[-71.339297,41.80439999906],[-71.340797,41.80019999906],[-71.340697,41.79829999906],[-71.339297,41.79629999906],[-71.335797,41.79479999906],[-71.333896,41.79449999906],[-71.332196,41.79229999906],[-71.33106075427,41.79014694681],[-71.331861,41.78972499906],[-71.332637,41.78874699906],[-71.333,41.78863099906],[-71.33387,41.78651399906],[-71.347176,41.78643799906],[-71.351839,41.78506999906],[-71.353715,41.78287999906],[-71.353577,41.78253699906],[-71.354291,41.78240099906],[-71.357266,41.78052799906],[-71.356581,41.77879499906],[-71.35862,41.77590599906],[-71.356879,41.77515799906],[-71.35511,41.77445599906],[-71.353813,41.77291499906],[-71.353638,41.77186999906],[-71.353615,41.77119799906],[-71.350822,41.77057999906],[-71.349487,41.76847499906],[-71.34893,41.76710099906],[-71.348068,41.76328699906],[-71.34716,41.75966999906],[-71.350138,41.75973899906],[-71.353602,41.75884199906],[-71.359222,41.75797999906],[-71.359901,41.75807599906],[-71.36127091692,41.75761789117],[-71.361798,41.76066399906],[-71.36465,41.76474199906],[-71.369641,41.76456499906],[-71.366076,41.77112399906],[-71.366314,41.77520099906],[-71.365125,41.77750499906],[-71.367977,41.78069499906],[-71.370583,41.78087399906],[-71.371542,41.78335399906],[-71.37168533333,41.78338266573],[-71.369694,41.78305799906],[-71.371008,41.78669399906],[-71.370731,41.78709199906],[-71.372002,41.78982299906],[-71.370652,41.78811699906],[-71.369682,41.78941299906],[-71.365067,41.79014599906],[-71.36454,41.78852099906],[-71.363392,41.78910899906],[-71.360437,41.78889999906],[-71.361158,41.79058899906],[-71.359547,41.79036199906],[-71.359513,41.79281599906],[-71.354156,41.79161399906],[-71.353636,41.79339799906],[-71.350403,41.79294999906],[-71.351982,41.79556699906],[-71.351189,41.80318199906],[-71.349998,41.80697599906],[-71.350037,41.80828499906],[-71.351357,41.81067999906],[-71.358475,41.81213799906],[-71.357658,41.81463999906],[-71.35675,41.81641399906],[-71.355748,41.81816399906],[-71.356075,41.82180799906],[-71.352692,41.82735099906],[-71.352745,41.82911299906],[-71.356369,41.83009699906],[-71.360435,41.83295099906],[-71.360012,41.83349099906],[-71.354973,41.84030199906],[-71.355453,41.84083299906],[-71.352039,41.84563599906],[-71.353867,41.84706099906],[-71.354477,41.84775499906],[-71.354507,41.85946699906],[-71.358688,41.85904599906],[-71.363744,41.85853999906],[-71.365795,41.85834099906],[-71.375021,41.85744899906],[-71.374907,41.85891899906],[-71.374276,41.85905099906],[-71.374451,41.86060699906],[-71.36834,41.86071399906],[-71.366226,41.86071799906],[-71.366298,41.86556499906],[-71.370329,41.86430799906],[-71.371479,41.86366999906],[-71.372581,41.86471899906],[-71.375862,41.86810699906],[-71.380341,41.87314599906],[-71.380938,41.87394199906],[-71.381088,41.87439299906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44019","name":"19","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.453705,41.96155199906],[-71.45118,41.96294799906],[-71.445007,41.96396299906],[-71.446419,41.96647999906],[-71.447838,41.96767799906],[-71.444191,41.97100399906],[-71.442896,41.97158899906],[-71.442957,41.97205599906],[-71.444391,41.97404399906],[-71.449232,41.97866399906],[-71.445446,41.97873199906],[-71.441231,41.97853499906],[-71.435486,41.97753499906],[-71.433426,41.97749299906],[-71.429932,41.97853499906],[-71.424644,41.98119399906],[-71.42247,41.98197599906],[-71.416077,41.98249099906],[-71.410683,41.98282599906],[-71.40937,41.98276499906],[-71.411446,41.98589299906],[-71.413399,41.99067299906],[-71.415825,41.99587999906],[-71.418716,41.99899299906],[-71.419533,42.00175099906],[-71.418553,42.00604299906],[-71.415863,42.00755699906],[-71.414726,42.01151999906],[-71.415741,42.01583099906],[-71.41441861461,42.01835220665],[-71.381401,42.01879799906],[-71.38143704125,42.00002086862],[-71.3814657108,41.98508431905],[-71.38147025969,41.98271439138],[-71.38149197829,41.97139921783],[-71.381501,41.96669899906],[-71.381401,41.96479899906],[-71.38145768251,41.95286433955],[-71.38145769228,41.95286228256],[-71.38148189871,41.94776555229],[-71.3816,41.92289899906],[-71.3817,41.92269899906],[-71.3817,41.91557713774],[-71.3817,41.91481599906],[-71.3817,41.91465965229],[-71.3817,41.90359799906],[-71.3817,41.89706199906],[-71.386348,41.89963599906],[-71.388268,41.89980499906],[-71.39006,41.89931899906],[-71.391739,41.89834299906],[-71.394296,41.89765199906],[-71.397243,41.89678199906],[-71.404568,41.89482399906],[-71.404691,41.89478399906],[-71.407055,41.89190999906],[-71.407753,41.89120499906],[-71.407722,41.89310499906],[-71.410013,41.89340799906],[-71.411261,41.89515499906],[-71.413444,41.89637899906],[-71.416588,41.89961999906],[-71.417519,41.90104299906],[-71.415016,41.90201599906],[-71.414238,41.90298499906],[-71.413834,41.90361399906],[-71.414589,41.90625399906],[-71.408638,41.90817599906],[-71.407791,41.90560199906],[-71.407402,41.90527699906],[-71.405472,41.90696699906],[-71.404556,41.90932799906],[-71.402695,41.90962599906],[-71.403023,41.91139299906],[-71.405393,41.91099899906],[-71.407214,41.91184199906],[-71.408959,41.91386099906],[-71.416233,41.91780799906],[-71.418425,41.91881899906],[-71.419443,41.92062699906],[-71.4217,41.92214499906],[-71.425322,41.92246299906],[-71.428327,41.92354299906],[-71.430939,41.92698699906],[-71.431287,41.93054099906],[-71.430717,41.93339799906],[-71.430955,41.93463599906],[-71.433982,41.93821899906],[-71.438092,41.94262699906],[-71.439703,41.94377599906],[-71.442549,41.94740999906],[-71.450987,41.94991299906],[-71.452315,41.95310499906],[-71.452027,41.95329399906],[-71.450942,41.95269899906],[-71.4488,41.95391399906],[-71.448223,41.95501499906],[-71.449327,41.95986199906],[-71.451741,41.96006499906],[-71.453705,41.96155199906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44002","name":"2","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.45591,41.81610899906],[-71.455315,41.81794699906],[-71.453804,41.81764999906],[-71.449898,41.81726799906],[-71.448555,41.81713499906],[-71.446163,41.81525999906],[-71.444735,41.81439799906],[-71.44001,41.81381599906],[-71.439534,41.81596199906],[-71.438858,41.81576899906],[-71.437042,41.81585699906],[-71.436916,41.81547399906],[-71.437604,41.81417499906],[-71.438164,41.81188599906],[-71.435684,41.81177099906],[-71.435463,41.81106899906],[-71.435318,41.81067299906],[-71.433105,41.80997099906],[-71.428162,41.80864299906],[-71.42791,41.80849099906],[-71.427864,41.80723999906],[-71.424866,41.80710199906],[-71.424858,41.80717499906],[-71.420242,41.80724699906],[-71.420052,41.80661799906],[-71.420013,41.80647699906],[-71.41935,41.80441699906],[-71.418907,41.80297499906],[-71.418129,41.80114399906],[-71.417435,41.80044899906],[-71.417419,41.80043399906],[-71.415466,41.79885099906],[-71.414665,41.79819899906],[-71.412117,41.79615799906],[-71.409447,41.79399999906],[-71.417591,41.78959199906],[-71.420063,41.78703299906],[-71.42061,41.78618399906],[-71.421667,41.78618999906],[-71.431603,41.78625399906],[-71.434046,41.78630699906],[-71.436482,41.78841199906],[-71.437642,41.79323899906],[-71.438541,41.79422899906],[-71.43934,41.79724099906],[-71.439266,41.80202699906],[-71.439938,41.80341499906],[-71.440252,41.80370499906],[-71.440541,41.80394599906],[-71.441318,41.80474999906],[-71.441541,41.80506299906],[-71.441869,41.80567399906],[-71.442015,41.80603999906],[-71.442154,41.80657299906],[-71.442223,41.80720299906],[-71.443678,41.80703199906],[-71.447533,41.80661399906],[-71.449348,41.81063099906],[-71.449944,41.81191999906],[-71.45079,41.81365999906],[-71.452866,41.81352599906],[-71.453522,41.81344999906],[-71.453888,41.81542999906],[-71.45578,41.81525799906],[-71.45591,41.81610899906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44020","name":"20","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.509872,41.99004399906],[-71.50988,41.99095499906],[-71.505272,41.99185199906],[-71.504036,41.99446899906],[-71.502258,41.99467499906],[-71.500351,41.99430499906],[-71.496544,41.99591399906],[-71.498199,41.99808499906],[-71.499367,42.00000799906],[-71.499088,42.00298299906],[-71.498218,42.00310899906],[-71.497231,42.00319699906],[-71.497757,42.00385999906],[-71.502425,42.00765299906],[-71.503853,42.00883499906],[-71.503532,42.01052099906],[-71.50205550327,42.01701084302],[-71.50204954111,42.01701129469],[-71.500905,42.01709799906],[-71.499905,42.01719799906],[-71.49825830106,42.01722023222],[-71.49135428024,42.01731344792],[-71.48378311796,42.01741567113],[-71.48371288296,42.01741661942],[-71.45811664513,42.01776221097],[-71.45810351919,42.01776238819],[-71.42435692338,42.01821802305],[-71.41441861461,42.01835220665],[-71.415741,42.01583099906],[-71.414726,42.01151999906],[-71.415863,42.00755699906],[-71.418553,42.00604299906],[-71.419533,42.00175099906],[-71.418716,41.99899299906],[-71.415825,41.99587999906],[-71.413399,41.99067299906],[-71.411446,41.98589299906],[-71.40937,41.98276499906],[-71.410683,41.98282599906],[-71.416077,41.98249099906],[-71.42247,41.98197599906],[-71.424644,41.98119399906],[-71.429932,41.97853499906],[-71.433426,41.97749299906],[-71.435486,41.97753499906],[-71.441231,41.97853499906],[-71.445446,41.97873199906],[-71.449232,41.97866399906],[-71.444391,41.97404399906],[-71.442957,41.97205599906],[-71.442896,41.97158899906],[-71.444191,41.97100399906],[-71.447838,41.96767799906],[-71.446419,41.96647999906],[-71.445007,41.96396299906],[-71.45118,41.96294799906],[-71.453705,41.96155199906],[-71.451741,41.96006499906],[-71.449327,41.95986199906],[-71.448223,41.95501499906],[-71.4488,41.95391399906],[-71.450942,41.95269899906],[-71.452027,41.95329399906],[-71.452315,41.95310499906],[-71.455219,41.95563399906],[-71.457241,41.95656799906],[-71.461781,41.95741499906],[-71.462227,41.96057299906],[-71.465011,41.96599799906],[-71.464389,41.96809599906],[-71.46536,41.96938899906],[-71.469992,41.97110799906],[-71.474141,41.97262399906],[-71.478657,41.97714099906],[-71.486156,41.97822199906],[-71.487364,41.97908499906],[-71.491746,41.97961199906],[-71.50706,41.98187699906],[-71.507191,41.98338199906],[-71.510532,41.98840199906],[-71.509872,41.99004399906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44021","name":"21","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.79469178266,41.8544085291],[-71.758215,41.85509299906],[-71.747483,41.85523599906],[-71.737663,41.85572099906],[-71.732079,41.85594899906],[-71.69101,41.85645699906],[-71.676808,41.85664999906],[-71.613133,41.85776599906],[-71.604992,41.85799899906],[-71.574642,41.85874799906],[-71.573027,41.85150899906],[-71.57188,41.84427699906],[-71.570639,41.83856599906],[-71.569627,41.83507899906],[-71.56563,41.81498699906],[-71.561623,41.79722599906],[-71.559856,41.78936799906],[-71.55929,41.78934399906],[-71.554766,41.76527099906],[-71.553165,41.75698399906],[-71.552696,41.75545499906],[-71.548775,41.73660699906],[-71.547353,41.73120299906],[-71.54743,41.73002499906],[-71.550038,41.72998499906],[-71.562938,41.72967199906],[-71.562882,41.72820899906],[-71.560074,41.72415099906],[-71.557739,41.71756599906],[-71.558571,41.71196299906],[-71.557869,41.71000199906],[-71.557533,41.70906899906],[-71.55764,41.70010499906],[-71.557976,41.69600899906],[-71.557785,41.69430599906],[-71.557098,41.69175499906],[-71.558354,41.69102299906],[-71.560041,41.69049299906],[-71.560841,41.68599399906],[-71.560839,41.68591299906],[-71.560707,41.68382599906],[-71.560982,41.68376599906],[-71.564873,41.68454299906],[-71.56974,41.68168299906],[-71.575305,41.67993599906],[-71.580032,41.67904799906],[-71.580783,41.67901799906],[-71.577469,41.68141599906],[-71.578461,41.68656699906],[-71.574997,41.68899099906],[-71.573136,41.68977099906],[-71.572502,41.69014099906],[-71.574692,41.69006099906],[-71.575356,41.69109499906],[-71.574692,41.69248299906],[-71.577141,41.69397699906],[-71.577896,41.69523499906],[-71.579773,41.69511599906],[-71.580833,41.69659199906],[-71.582176,41.69586399906],[-71.581856,41.69478599906],[-71.586388,41.69435099906],[-71.587028,41.69362899906],[-71.589317,41.69351499906],[-71.589897,41.69564899906],[-71.591202,41.69546699906],[-71.591721,41.69478899906],[-71.592194,41.69456599906],[-71.591667,41.69412799906],[-71.592079,41.69347899906],[-71.592575,41.69321599906],[-71.59253,41.69357299906],[-71.593487,41.69304399906],[-71.595156,41.69384599906],[-71.59436,41.69515299906],[-71.593964,41.69900299906],[-71.595487,41.69999699906],[-71.614372,41.70381799906],[-71.620873,41.70429499906],[-71.628391,41.70365199906],[-71.62847,41.70363199906],[-71.628375,41.70341999906],[-71.631271,41.70266599906],[-71.635291,41.70105699906],[-71.650795,41.69380099906],[-71.654625,41.69246099906],[-71.658211,41.69159899906],[-71.662308,41.69105399906],[-71.666061,41.69089899906],[-71.674217,41.69097499906],[-71.67498,41.68784199906],[-71.677742,41.68596799906],[-71.680855,41.68502499906],[-71.687508,41.68162299906],[-71.690369,41.68120099906],[-71.694122,41.68122099906],[-71.694961,41.67542799906],[-71.695046,41.67437699906],[-71.694939,41.65842399906],[-71.666039,41.65872099906],[-71.665939,41.65869199906],[-71.622871,41.65968299906],[-71.622307,41.65755299906],[-71.620399,41.65614199906],[-71.621857,41.65297899906],[-71.623474,41.65213099906],[-71.621216,41.65233599906],[-71.614464,41.64966599906],[-71.613754,41.64886999906],[-71.623238,41.64199999906],[-71.625655,41.63958599906],[-71.629532,41.63509599906],[-71.636665,41.62943999906],[-71.642235,41.62302799906],[-71.646035,41.61942299906],[-71.649155,41.62001199906],[-71.652382,41.62001799906],[-71.657272,41.62127899906],[-71.661156,41.62165299906],[-71.664917,41.62165999906],[-71.667473,41.62281199906],[-71.670296,41.62477299906],[-71.672913,41.62590099906],[-71.676842,41.62521999906],[-71.679062,41.62520799906],[-71.682526,41.62902299906],[-71.686134,41.63523799906],[-71.692329,41.63509799906],[-71.695961,41.63267499906],[-71.69912,41.63246199906],[-71.706368,41.62930099906],[-71.706818,41.62708399906],[-71.705925,41.62564599906],[-71.709343,41.62503899906],[-71.711739,41.62408599906],[-71.71521,41.62389199906],[-71.715592,41.62509799906],[-71.717415,41.62505999906],[-71.716881,41.62591499906],[-71.718239,41.62679699906],[-71.718292,41.62829499906],[-71.719833,41.62926699906],[-71.720299,41.63204799906],[-71.722153,41.63380099906],[-71.723244,41.63300499906],[-71.728722,41.63372599906],[-71.742088,41.63804099906],[-71.744301,41.63916399906],[-71.74781,41.63896699906],[-71.752075,41.63779399906],[-71.755951,41.63499399906],[-71.756843,41.63126699906],[-71.760589,41.62754299906],[-71.763214,41.63358599906],[-71.766098,41.63539399906],[-71.767143,41.63682799906],[-71.771011,41.63355599906],[-71.776367,41.63359799906],[-71.78093,41.63469899906],[-71.781784,41.63343099906],[-71.785248,41.63493199906],[-71.7878551986,41.63445036681],[-71.78763664589,41.63991714536],[-71.786994,41.65599199906],[-71.78699889568,41.65611738614],[-71.78864754066,41.69834210795],[-71.789678,41.72473399906],[-71.78969211199,41.72519833872],[-71.79010633574,41.73882791629],[-71.79105925492,41.77018267528],[-71.791062,41.77027299906],[-71.79125806358,41.77449647297],[-71.79262703816,41.8039860322],[-71.79265663506,41.8046235893],[-71.792767,41.80700099906],[-71.792786,41.80866999906],[-71.79315733695,41.8171691591],[-71.794161,41.84014099906],[-71.794161,41.84110099906],[-71.79448235605,41.84915788492],[-71.79469178266,41.8544085291]]]]}}},{"type":"SLDL","affgeoid":"610U800US44022","name":"22","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.590312,41.93366499906],[-71.555328,41.93687399906],[-71.490788,41.94324099906],[-71.489167,41.93846899906],[-71.4845,41.92498899906],[-71.482705,41.91900199906],[-71.482147,41.91768899906],[-71.481095,41.91477399906],[-71.479248,41.91537099906],[-71.472931,41.91175099906],[-71.470932,41.90897799906],[-71.466599,41.90589899906],[-71.465027,41.90547199906],[-71.465065,41.90421699906],[-71.468063,41.89585899906],[-71.466621,41.89104099906],[-71.467758,41.88820599906],[-71.468193,41.88278999906],[-71.465283,41.87873899906],[-71.464864,41.87572999906],[-71.463265,41.87352899906],[-71.466759,41.87276699906],[-71.474826,41.87172699906],[-71.475526,41.87156999906],[-71.473602,41.87082299906],[-71.473966,41.86891299906],[-71.471573,41.86918699906],[-71.471928,41.86809599906],[-71.475279,41.86561699906],[-71.475763,41.86465199906],[-71.475967,41.86464299906],[-71.475967,41.86327399906],[-71.477722,41.86325799906],[-71.477722,41.86298799906],[-71.478745,41.86299099906],[-71.479988,41.86307099906],[-71.480139,41.86001099906],[-71.480034,41.85872699906],[-71.479385,41.85876799906],[-71.473503,41.85959599906],[-71.473007,41.85819199906],[-71.471931,41.85802499906],[-71.474846,41.85582399906],[-71.475105,41.85477099906],[-71.473638,41.85464899906],[-71.475281,41.85338999906],[-71.473938,41.85221099906],[-71.47345,41.84997899906],[-71.473709,41.84927399906],[-71.472267,41.84563799906],[-71.473892,41.84533699906],[-71.4729,41.84289899906],[-71.476372,41.84211699906],[-71.478659,41.84236899906],[-71.479012,41.84345799906],[-71.479521,41.84428299906],[-71.48033,41.84504399906],[-71.480974,41.85082099906],[-71.485636,41.85351899906],[-71.486065,41.85431199906],[-71.48708,41.85610499906],[-71.487421,41.85907299906],[-71.487654,41.85960299906],[-71.488251,41.86227799906],[-71.492353,41.86536499906],[-71.494084,41.86827599906],[-71.495545,41.86898299906],[-71.505093,41.86772399906],[-71.514588,41.86648799906],[-71.531464,41.86426899906],[-71.540216,41.86309499906],[-71.545655,41.86252999906],[-71.550423,41.86176499906],[-71.573608,41.85880699906],[-71.574642,41.85874799906],[-71.575653,41.86357299906],[-71.579348,41.88161699906],[-71.579389,41.88181199906],[-71.579908,41.88471999906],[-71.581891,41.89466499906],[-71.590312,41.93366499906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44023","name":"23","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.799242,42.00806499906],[-71.76601,42.00974499906],[-71.75510919805,42.00999592814],[-71.68087581631,42.01170473033],[-71.67802296857,42.01177040095],[-71.66160371444,42.01214836106],[-71.60673402532,42.01341142415],[-71.59411891923,42.01370181535],[-71.5911031923,42.01377123535],[-71.576908,42.01409799906],[-71.56366502123,42.01428297169],[-71.559439,42.01434199906],[-71.55361486286,42.01446202023],[-71.55311,42.01330499906],[-71.552113,42.01290199906],[-71.551906,42.01069899906],[-71.551073,42.00833399906],[-71.552199,42.00661899906],[-71.552594,42.00478899906],[-71.552143,42.00444999906],[-71.550578,42.00208899906],[-71.552814,41.99989199906],[-71.552219,41.99869599906],[-71.556966,41.99928999906],[-71.55838,42.00059999906],[-71.56041,41.99826399906],[-71.564827,41.99692199906],[-71.56998,41.99967899906],[-71.577133,42.00100299906],[-71.579109,42.00032399906],[-71.580132,41.99986599906],[-71.578953,41.99914099906],[-71.580633,41.99898999906],[-71.583856,41.99562999906],[-71.586123,41.99471899906],[-71.590538,41.99485199906],[-71.592763,41.99434199906],[-71.59451,41.99501799906],[-71.596008,41.99299799906],[-71.596417,41.99054599906],[-71.597897,41.98587699906],[-71.600443,41.98302699906],[-71.596898,41.96612299906],[-71.590312,41.93366499906],[-71.581891,41.89466499906],[-71.579908,41.88471999906],[-71.579389,41.88181199906],[-71.579348,41.88161699906],[-71.575653,41.86357299906],[-71.574642,41.85874799906],[-71.604992,41.85799899906],[-71.613133,41.85776599906],[-71.676808,41.85664999906],[-71.69101,41.85645699906],[-71.732079,41.85594899906],[-71.737663,41.85572099906],[-71.747483,41.85523599906],[-71.758215,41.85509299906],[-71.79469178266,41.8544085291],[-71.79668779468,41.90445159128],[-71.79715894256,41.91626398655],[-71.79765282895,41.92864647087],[-71.79780125342,41.93236769834],[-71.797922,41.93539499906],[-71.79882688153,41.98521146936],[-71.79886543354,41.98733387436],[-71.799242,42.00806499906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44024","name":"24","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.552219,41.99869599906],[-71.552814,41.99989199906],[-71.550578,42.00208899906],[-71.552143,42.00444999906],[-71.552594,42.00478899906],[-71.552199,42.00661899906],[-71.551073,42.00833399906],[-71.551906,42.01069899906],[-71.552113,42.01290199906],[-71.55311,42.01330499906],[-71.55361486286,42.01446202023],[-71.55336097543,42.01446725223],[-71.53803620617,42.01478305811],[-71.52892806735,42.0149707545],[-71.52769996117,42.01499606275],[-71.527606,42.01499799906],[-71.527306,42.01509799906],[-71.52464118753,42.01529987115],[-71.51163339947,42.01628527231],[-71.50205550327,42.01701084302],[-71.503532,42.01052099906],[-71.503853,42.00883499906],[-71.502425,42.00765299906],[-71.497757,42.00385999906],[-71.497231,42.00319699906],[-71.498218,42.00310899906],[-71.499088,42.00298299906],[-71.499367,42.00000799906],[-71.498199,41.99808499906],[-71.496544,41.99591399906],[-71.500351,41.99430499906],[-71.502258,41.99467499906],[-71.504036,41.99446899906],[-71.505272,41.99185199906],[-71.50988,41.99095499906],[-71.509872,41.99004399906],[-71.510532,41.98840199906],[-71.507191,41.98338199906],[-71.50706,41.98187699906],[-71.515179,41.98307099906],[-71.515232,41.98310599906],[-71.515274,41.98306299906],[-71.515503,41.98317399906],[-71.515797,41.98327599906],[-71.518066,41.98369599906],[-71.522354,41.98565299906],[-71.528008,41.98840699906],[-71.531662,41.98955599906],[-71.531754,41.98957399906],[-71.533806,41.98955499906],[-71.535675,41.98561099906],[-71.538112,41.98445599906],[-71.556966,41.99928999906],[-71.552219,41.99869599906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44025","name":"25","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.573608,41.85880699906],[-71.550423,41.86176499906],[-71.545655,41.86252999906],[-71.540216,41.86309499906],[-71.531464,41.86426899906],[-71.514588,41.86648799906],[-71.505093,41.86772399906],[-71.495545,41.86898299906],[-71.494084,41.86827599906],[-71.492353,41.86536499906],[-71.488251,41.86227799906],[-71.487654,41.85960299906],[-71.487421,41.85907299906],[-71.48708,41.85610499906],[-71.486065,41.85431199906],[-71.485636,41.85351899906],[-71.480974,41.85082099906],[-71.48033,41.84504399906],[-71.479521,41.84428299906],[-71.479012,41.84345799906],[-71.478659,41.84236899906],[-71.47764,41.84146899906],[-71.477216,41.83791099906],[-71.47331,41.83898199906],[-71.472459,41.83698099906],[-71.472432,41.83418099906],[-71.470444,41.83291199906],[-71.46759,41.83149099906],[-71.464769,41.83104799906],[-71.462432,41.82741299906],[-71.462423,41.82468699906],[-71.465216,41.82460399906],[-71.471306,41.82413899906],[-71.471077,41.82238399906],[-71.470877,41.82194399906],[-71.470031,41.81982799906],[-71.46965,41.81887599906],[-71.472481,41.81794399906],[-71.472023,41.81588699906],[-71.473503,41.81569699906],[-71.472168,41.81394999906],[-71.478249,41.81167999906],[-71.482033,41.81168699906],[-71.480186,41.80939099906],[-71.479416,41.80517999906],[-71.478553,41.80130699906],[-71.478017,41.80047899906],[-71.475761,41.80023999906],[-71.474373,41.80127299906],[-71.472847,41.80165099906],[-71.468956,41.80238299906],[-71.467072,41.80446999906],[-71.46492,41.80587399906],[-71.464583,41.80499099906],[-71.463665,41.80504599906],[-71.466027,41.80374899906],[-71.467582,41.79810899906],[-71.469597,41.79881199906],[-71.471598,41.79830999906],[-71.47231,41.79645999906],[-71.479736,41.79685199906],[-71.481354,41.79649699906],[-71.482727,41.79599799906],[-71.484276,41.79524599906],[-71.487373,41.79322099906],[-71.48941,41.79167899906],[-71.497426,41.79089299906],[-71.503067,41.78914299906],[-71.506058,41.78887899906],[-71.513844,41.78841699906],[-71.516174,41.78858199906],[-71.51894,41.78887899906],[-71.521797,41.78973799906],[-71.526405,41.79032899906],[-71.530556,41.79144699906],[-71.534225,41.79321299906],[-71.54731,41.79212599906],[-71.55524,41.78953699906],[-71.55929,41.78934399906],[-71.559856,41.78936799906],[-71.561623,41.79722599906],[-71.56563,41.81498699906],[-71.569627,41.83507899906],[-71.570639,41.83856599906],[-71.57188,41.84427699906],[-71.573027,41.85150899906],[-71.574642,41.85874799906],[-71.573608,41.85880699906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44026","name":"26","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.55524,41.78953699906],[-71.54731,41.79212599906],[-71.534225,41.79321299906],[-71.530556,41.79144699906],[-71.526405,41.79032899906],[-71.521797,41.78973799906],[-71.51894,41.78887899906],[-71.516174,41.78858199906],[-71.513844,41.78841699906],[-71.506058,41.78887899906],[-71.503067,41.78914299906],[-71.497426,41.79089299906],[-71.48941,41.79167899906],[-71.487373,41.79322099906],[-71.484276,41.79524599906],[-71.482727,41.79599799906],[-71.481354,41.79649699906],[-71.479736,41.79685199906],[-71.47231,41.79645999906],[-71.471598,41.79830999906],[-71.469597,41.79881199906],[-71.467582,41.79810899906],[-71.466027,41.80374899906],[-71.463665,41.80504599906],[-71.461882,41.80509899906],[-71.457703,41.80556899906],[-71.452314,41.80613299906],[-71.45023,41.80636999906],[-71.447533,41.80661399906],[-71.443678,41.80703199906],[-71.442223,41.80720299906],[-71.442154,41.80657299906],[-71.442015,41.80603999906],[-71.441869,41.80567399906],[-71.441541,41.80506299906],[-71.441318,41.80474999906],[-71.440541,41.80394599906],[-71.440252,41.80370499906],[-71.441833,41.80301999906],[-71.442604,41.80286799906],[-71.445469,41.79687099906],[-71.448359,41.79325799906],[-71.449475,41.79212099906],[-71.452441,41.78975899906],[-71.456061,41.78714699906],[-71.461105,41.78346999906],[-71.464249,41.78292799906],[-71.464874,41.78269199906],[-71.465836,41.78224199906],[-71.472294,41.78096099906],[-71.474792,41.78040299906],[-71.476532,41.77899899906],[-71.478172,41.77781299906],[-71.481361,41.77361299906],[-71.481522,41.77182399906],[-71.482079,41.76929099906],[-71.482025,41.76678099906],[-71.483521,41.76363399906],[-71.487549,41.75818999906],[-71.486748,41.75387999906],[-71.486984,41.75130499906],[-71.487495,41.75081299906],[-71.488358,41.74987799906],[-71.489105,41.74631499906],[-71.49324,41.74070399906],[-71.494957,41.73530199906],[-71.497711,41.73303599906],[-71.497849,41.73114999906],[-71.516861,41.73060799906],[-71.519413,41.73046899906],[-71.519928,41.73044299906],[-71.525348,41.73032799906],[-71.534286,41.73017099906],[-71.545807,41.73009699906],[-71.547353,41.73120299906],[-71.548775,41.73660699906],[-71.552696,41.75545499906],[-71.553165,41.75698399906],[-71.554766,41.76527099906],[-71.55929,41.78934399906],[-71.55524,41.78953699906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44027","name":"27","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.498739,41.72784399906],[-71.497849,41.73114999906],[-71.497711,41.73303599906],[-71.494957,41.73530199906],[-71.49324,41.74070399906],[-71.489105,41.74631499906],[-71.488358,41.74987799906],[-71.487495,41.75081299906],[-71.486984,41.75130499906],[-71.486748,41.75387999906],[-71.487549,41.75818999906],[-71.483521,41.76363399906],[-71.482025,41.76678099906],[-71.482079,41.76929099906],[-71.481522,41.77182399906],[-71.481361,41.77361299906],[-71.478172,41.77781299906],[-71.476532,41.77899899906],[-71.474792,41.78040299906],[-71.472294,41.78096099906],[-71.465836,41.78224199906],[-71.464874,41.78269199906],[-71.464249,41.78292799906],[-71.461105,41.78346999906],[-71.45726,41.78397399906],[-71.456099,41.78425999906],[-71.454155,41.78465999906],[-71.451134,41.78388599906],[-71.448051,41.78303899906],[-71.445129,41.78240999906],[-71.443413,41.78205499906],[-71.440863,41.78140799906],[-71.436897,41.77922799906],[-71.435837,41.77894199906],[-71.437691,41.77776299906],[-71.43777,41.77700299906],[-71.437393,41.77477599906],[-71.437333,41.77457699906],[-71.436974,41.77225899906],[-71.436943,41.77204899906],[-71.43692,41.77151899906],[-71.439209,41.76842899906],[-71.436729,41.76745599906],[-71.436676,41.76699399906],[-71.438339,41.76596799906],[-71.436433,41.76195999906],[-71.434069,41.76093599906],[-71.435883,41.75967699906],[-71.437561,41.75982699906],[-71.438829,41.75782899906],[-71.440574,41.75791199906],[-71.43912,41.75638999906],[-71.441165,41.75471199906],[-71.440619,41.75215299906],[-71.446538,41.74888699906],[-71.451887,41.74998999906],[-71.455345,41.75071399906],[-71.457976,41.74748199906],[-71.457474,41.74308699906],[-71.462105,41.73960899906],[-71.461494,41.73874699906],[-71.4617,41.73569499906],[-71.460599,41.73226799906],[-71.467939,41.73207899906],[-71.476815,41.73178899906],[-71.48391,41.73160299906],[-71.484781,41.72872399906],[-71.485802,41.72612499906],[-71.489327,41.72283999906],[-71.49028,41.72122699906],[-71.490539,41.71751599906],[-71.492892,41.71782599906],[-71.491562,41.71957399906],[-71.497146,41.72192499906],[-71.496323,41.72377599906],[-71.496973,41.72611699906],[-71.498331,41.72688699906],[-71.498739,41.72784399906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44028","name":"28","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.461105,41.78346999906],[-71.456061,41.78714699906],[-71.452441,41.78975899906],[-71.449475,41.79212099906],[-71.448359,41.79325799906],[-71.445469,41.79687099906],[-71.442604,41.80286799906],[-71.441833,41.80301999906],[-71.440252,41.80370499906],[-71.439938,41.80341499906],[-71.439266,41.80202699906],[-71.43934,41.79724099906],[-71.438541,41.79422899906],[-71.437642,41.79323899906],[-71.436482,41.78841199906],[-71.434046,41.78630699906],[-71.431603,41.78625399906],[-71.421667,41.78618999906],[-71.42061,41.78618399906],[-71.420063,41.78703299906],[-71.417591,41.78959199906],[-71.409447,41.79399999906],[-71.408127,41.79293799906],[-71.40625,41.79142399906],[-71.404404,41.78930299906],[-71.402222,41.78671299906],[-71.40226,41.78694199906],[-71.398766,41.78758999906],[-71.395714,41.78816999906],[-71.392715,41.78872299906],[-71.393097,41.78989399906],[-71.394111,41.79385499906],[-71.393974,41.79465899906],[-71.397926,41.79481099906],[-71.399691,41.79914199906],[-71.398949,41.79948799906],[-71.390099,41.80519999906],[-71.385199,41.80209999906],[-71.380799,41.79629999906],[-71.377299,41.79469999906],[-71.373308,41.79111699906],[-71.372711,41.78851799906],[-71.372002,41.78982299906],[-71.370731,41.78709199906],[-71.371008,41.78669399906],[-71.369694,41.78305799906],[-71.37168533333,41.78338266573],[-71.381287,41.78530299906],[-71.390557,41.78370799906],[-71.391745,41.78104999906],[-71.389844,41.77644099906],[-71.385495,41.76866399906],[-71.385566,41.76030999906],[-71.38380436647,41.75851169734],[-71.384733,41.75760199906],[-71.385659,41.75842099906],[-71.388517,41.76377499906],[-71.390534,41.76439099906],[-71.394121,41.76403799906],[-71.395628,41.76668399906],[-71.399577,41.76832099906],[-71.401395,41.76655199906],[-71.402355,41.76752399906],[-71.405203,41.76760999906],[-71.410702,41.76655399906],[-71.412183,41.76505799906],[-71.414383,41.76295299906],[-71.415806,41.76290199906],[-71.417848,41.76216699906],[-71.419078,41.76188499906],[-71.420091,41.76174599906],[-71.418715,41.76407599906],[-71.419797,41.76478499906],[-71.421994,41.76457999906],[-71.422957,41.76297099906],[-71.426224,41.76102499906],[-71.42989,41.76076099906],[-71.430969,41.76061699906],[-71.432968,41.75933499906],[-71.432503,41.76021599906],[-71.429915,41.76723299906],[-71.427933,41.77267099906],[-71.428818,41.77128599906],[-71.432365,41.77200699906],[-71.434013,41.77270899906],[-71.436974,41.77225899906],[-71.437333,41.77457699906],[-71.437393,41.77477599906],[-71.43777,41.77700299906],[-71.437691,41.77776299906],[-71.435837,41.77894199906],[-71.436897,41.77922799906],[-71.440863,41.78140799906],[-71.443413,41.78205499906],[-71.445129,41.78240999906],[-71.448051,41.78303899906],[-71.451134,41.78388599906],[-71.454155,41.78465999906],[-71.456099,41.78425999906],[-71.45726,41.78397399906],[-71.461105,41.78346999906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44029","name":"29","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.447868,41.71144599906],[-71.444572,41.72051599906],[-71.441696,41.72836199906],[-71.435333,41.74585199906],[-71.433945,41.74484699906],[-71.431274,41.74176899906],[-71.430183,41.74301699906],[-71.427429,41.74546599906],[-71.425331,41.74703299906],[-71.421158,41.74952499906],[-71.418838,41.75065999906],[-71.418305,41.75094499906],[-71.416939,41.75182999906],[-71.416466,41.75216399906],[-71.410965,41.75598499906],[-71.409592,41.75695999906],[-71.409226,41.75661199906],[-71.404411,41.75559099906],[-71.404106,41.74960899906],[-71.404556,41.74854499906],[-71.406548,41.74510399906],[-71.407692,41.74272499906],[-71.408142,41.73740599906],[-71.408104,41.73660999906],[-71.407679,41.73516699906],[-71.40152,41.73504599906],[-71.395058,41.73416699906],[-71.393692,41.73321999906],[-71.392273,41.73379399906],[-71.389209,41.73391899906],[-71.390033,41.73738999906],[-71.38859,41.73684299906],[-71.384468,41.73863699906],[-71.383313,41.73952499906],[-71.382547,41.73590999906],[-71.38069257431,41.73618348374],[-71.380574,41.73353299906],[-71.38105,41.72732399906],[-71.376534,41.72164799906],[-71.369879,41.71827699906],[-71.363937,41.71738999906],[-71.357282,41.71818799906],[-71.357282,41.71659199906],[-71.365717,41.71161499906],[-71.365717,41.70789799906],[-71.364412,41.70470399906],[-71.36467280812,41.70384126102],[-71.36463,41.70442099906],[-71.370071,41.70333499906],[-71.373924,41.70241299906],[-71.374191,41.70432999906],[-71.37973,41.70695799906],[-71.383369,41.70710799906],[-71.384179,41.70391999906],[-71.384521,41.70345499906],[-71.386467,41.70181999906],[-71.386963,41.70141799906],[-71.389649,41.70058299906],[-71.399043,41.70103999906],[-71.40183,41.70134099906],[-71.404157,41.70210999906],[-71.407121,41.70299199906],[-71.417616,41.70559099906],[-71.418281,41.70540299906],[-71.420319,41.70406599906],[-71.421249,41.70374499906],[-71.424301,41.70323899906],[-71.441048,41.70060099906],[-71.441574,41.70509799906],[-71.440717,41.70851799906],[-71.441692,41.70968899906],[-71.443311,41.71076599906],[-71.447334,41.71142399906],[-71.447868,41.71144599906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44003","name":"3","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.411819,41.83595299906],[-71.409904,41.83677299906],[-71.410065,41.83532699906],[-71.405441,41.83560599906],[-71.404625,41.83654799906],[-71.401176,41.83657799906],[-71.398987,41.84101899906],[-71.397621,41.84375399906],[-71.397545,41.84389899906],[-71.396057,41.84691199906],[-71.395187,41.84865199906],[-71.393143,41.85289799906],[-71.391449,41.85621999906],[-71.391101,41.85694499906],[-71.383719,41.85708599906],[-71.379003,41.85747799906],[-71.376699,41.85749999906],[-71.375021,41.85744899906],[-71.374526,41.85713599906],[-71.372334,41.85054799906],[-71.37226,41.84415699906],[-71.372247,41.84333699906],[-71.372996,41.83806499906],[-71.373099,41.83659999906],[-71.373587,41.83248599906],[-71.377434,41.82928799906],[-71.382797,41.82269499906],[-71.385572,41.81899599906],[-71.387083,41.81637199906],[-71.393528,41.81475599906],[-71.395258,41.81166899906],[-71.394984,41.81077299906],[-71.3978,41.80989999906],[-71.401719,41.81551399906],[-71.404888,41.81999699906],[-71.406813,41.82266899906],[-71.408635,41.82549599906],[-71.409804,41.82653899906],[-71.410915,41.82843499906],[-71.411504,41.83122899906],[-71.411507,41.83139399906],[-71.411562,41.83139399906],[-71.411819,41.83595299906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44030","name":"30","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.501679,41.69647399906],[-71.49764,41.69670899906],[-71.497446,41.69671199906],[-71.489632,41.69679899906],[-71.475204,41.69754699906],[-71.46901,41.69798199906],[-71.466499,41.69772499906],[-71.464508,41.69783099906],[-71.463913,41.69804699906],[-71.463298,41.69833799906],[-71.461427,41.69936699906],[-71.460367,41.70030799906],[-71.457634,41.70208499906],[-71.451017,41.70277299906],[-71.450942,41.70298099906],[-71.447868,41.71144599906],[-71.447334,41.71142399906],[-71.443311,41.71076599906],[-71.441692,41.70968899906],[-71.440717,41.70851799906],[-71.441574,41.70509799906],[-71.441048,41.70060099906],[-71.424301,41.70323899906],[-71.421249,41.70374499906],[-71.420319,41.70406599906],[-71.418281,41.70540299906],[-71.417616,41.70559099906],[-71.407121,41.70299199906],[-71.404157,41.70210999906],[-71.40183,41.70134099906],[-71.399043,41.70103999906],[-71.389649,41.70058299906],[-71.386963,41.70141799906],[-71.386467,41.70181999906],[-71.384521,41.70345499906],[-71.384179,41.70391999906],[-71.383369,41.70710799906],[-71.37973,41.70695799906],[-71.374191,41.70432999906],[-71.373924,41.70241299906],[-71.370071,41.70333499906],[-71.36463,41.70442099906],[-71.36467280812,41.70384126102],[-71.36534458357,41.70161906701],[-71.365646,41.70062199906],[-71.365601,41.69370099906],[-71.362748,41.69192599906],[-71.364887,41.68837699906],[-71.371542,41.68535899906],[-71.373444,41.67861399906],[-71.372988,41.67257499906],[-71.37791,41.66664599906],[-71.382049,41.66731699906],[-71.386279,41.67097999906],[-71.38988,41.67190299906],[-71.390775,41.68062899906],[-71.389432,41.68342499906],[-71.390551,41.68409599906],[-71.398163,41.68340699906],[-71.418069,41.68420799906],[-71.433815,41.68695699906],[-71.441336,41.68644599906],[-71.443082,41.68830299906],[-71.441896,41.69002499906],[-71.445923,41.69114399906],[-71.44848,41.68841399906],[-71.450198,41.68645899906],[-71.449997,41.68398999906],[-71.447699,41.67786999906],[-71.444574,41.67429799906],[-71.444268,41.67364699906],[-71.444621,41.67301599906],[-71.446573,41.67195899906],[-71.447018,41.67121599906],[-71.446247,41.66630999906],[-71.44493240215,41.66402899906],[-71.445572,41.66406599906],[-71.450127,41.66396399906],[-71.451218,41.66392299906],[-71.45829,41.66370499906],[-71.45853,41.66373399906],[-71.490206,41.66319299906],[-71.499225,41.66294799906],[-71.498932,41.66460699906],[-71.499451,41.66612199906],[-71.499836,41.67377599906],[-71.500062,41.67948099906],[-71.500723,41.68501599906],[-71.50103,41.68758999906],[-71.501679,41.69647399906]],[[-71.468692,41.63859399906],[-71.464831,41.63890399906],[-71.465652,41.64309799906],[-71.458654,41.64926599906],[-71.458017,41.64980899906],[-71.454876,41.64744499906],[-71.452157,41.64849199906],[-71.450376,41.65144899906],[-71.449315,41.65256599906],[-71.446018,41.65537599906],[-71.443021,41.66019999906],[-71.44237693746,41.66361147598],[-71.442148,41.66372799906],[-71.440996,41.66623099906],[-71.440153,41.66684299906],[-71.434748,41.66626299906],[-71.430038,41.66754099906],[-71.426647,41.66952599906],[-71.426086,41.67048399906],[-71.424285,41.67027499906],[-71.417652,41.66529799906],[-71.408621,41.66316799906],[-71.408858,41.65784099906],[-71.40887996267,41.65384065613],[-71.417581,41.65495199906],[-71.423884,41.65388799906],[-71.428941,41.65056899906],[-71.432796,41.65132299906],[-71.435944,41.64922299906],[-71.439301,41.64802299906],[-71.440925,41.64617999906],[-71.442508,41.64581799906],[-71.442717,41.64439799906],[-71.441986,41.64327499906],[-71.445084,41.64137299906],[-71.446277,41.63883699906],[-71.449286,41.63672999906],[-71.448447,41.63337699906],[-71.451366,41.62945499906],[-71.45311,41.62985899906],[-71.454404,41.63120199906],[-71.45423,41.63295299906],[-71.45558,41.63510899906],[-71.458324,41.63636599906],[-71.459123,41.63794599906],[-71.462354,41.63837999906],[-71.463436,41.63654399906],[-71.467844,41.63416499906],[-71.468692,41.63859399906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44031","name":"31","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.518913,41.69589899906],[-71.513336,41.70569399906],[-71.512764,41.70667499906],[-71.511904,41.70722999906],[-71.506691,41.70948199906],[-71.505188,41.71130699906],[-71.502365,41.71147199906],[-71.500786,41.71160599906],[-71.500253,41.71182299906],[-71.497116,41.71316699906],[-71.492892,41.71782599906],[-71.490539,41.71751599906],[-71.49028,41.72122699906],[-71.489327,41.72283999906],[-71.485802,41.72612499906],[-71.484781,41.72872399906],[-71.48391,41.73160299906],[-71.476815,41.73178899906],[-71.467939,41.73207899906],[-71.460599,41.73226799906],[-71.4617,41.73569499906],[-71.461494,41.73874699906],[-71.462105,41.73960899906],[-71.457474,41.74308699906],[-71.457976,41.74748199906],[-71.455345,41.75071399906],[-71.451887,41.74998999906],[-71.446538,41.74888699906],[-71.440619,41.75215299906],[-71.441165,41.75471199906],[-71.43912,41.75638999906],[-71.440574,41.75791199906],[-71.438829,41.75782899906],[-71.437561,41.75982699906],[-71.435883,41.75967699906],[-71.434069,41.76093599906],[-71.436433,41.76195999906],[-71.438339,41.76596799906],[-71.436676,41.76699399906],[-71.436729,41.76745599906],[-71.439209,41.76842899906],[-71.43692,41.77151899906],[-71.436943,41.77204899906],[-71.436974,41.77225899906],[-71.434013,41.77270899906],[-71.432365,41.77200699906],[-71.428818,41.77128599906],[-71.427933,41.77267099906],[-71.429915,41.76723299906],[-71.432503,41.76021599906],[-71.432968,41.75933499906],[-71.430969,41.76061699906],[-71.42989,41.76076099906],[-71.426224,41.76102499906],[-71.422957,41.76297099906],[-71.421994,41.76457999906],[-71.419797,41.76478499906],[-71.418715,41.76407599906],[-71.420091,41.76174599906],[-71.419078,41.76188499906],[-71.417848,41.76216699906],[-71.415806,41.76290199906],[-71.414383,41.76295299906],[-71.412183,41.76505799906],[-71.410702,41.76655399906],[-71.405203,41.76760999906],[-71.402355,41.76752399906],[-71.401395,41.76655199906],[-71.399577,41.76832099906],[-71.395628,41.76668399906],[-71.394121,41.76403799906],[-71.390534,41.76439099906],[-71.388517,41.76377499906],[-71.385659,41.75842099906],[-71.384733,41.75760199906],[-71.38380436647,41.75851169734],[-71.38118990422,41.75584281537],[-71.38105,41.75569999906],[-71.380099,41.74931599906],[-71.380574,41.74594699906],[-71.376058,41.74417399906],[-71.380812,41.73885299906],[-71.38069257431,41.73618348374],[-71.382547,41.73590999906],[-71.383313,41.73952499906],[-71.384468,41.73863699906],[-71.38859,41.73684299906],[-71.390033,41.73738999906],[-71.389209,41.73391899906],[-71.392273,41.73379399906],[-71.393692,41.73321999906],[-71.395058,41.73416699906],[-71.40152,41.73504599906],[-71.407679,41.73516699906],[-71.408104,41.73660999906],[-71.408142,41.73740599906],[-71.407692,41.74272499906],[-71.406548,41.74510399906],[-71.404556,41.74854499906],[-71.404106,41.74960899906],[-71.404411,41.75559099906],[-71.409226,41.75661199906],[-71.409592,41.75695999906],[-71.410965,41.75598499906],[-71.416466,41.75216399906],[-71.416939,41.75182999906],[-71.418305,41.75094499906],[-71.418838,41.75065999906],[-71.421158,41.74952499906],[-71.425331,41.74703299906],[-71.427429,41.74546599906],[-71.430183,41.74301699906],[-71.431274,41.74176899906],[-71.433945,41.74484699906],[-71.435333,41.74585199906],[-71.441696,41.72836199906],[-71.444572,41.72051599906],[-71.447868,41.71144599906],[-71.450942,41.70298099906],[-71.451017,41.70277299906],[-71.457634,41.70208499906],[-71.460367,41.70030799906],[-71.461427,41.69936699906],[-71.463298,41.69833799906],[-71.463913,41.69804699906],[-71.464508,41.69783099906],[-71.466499,41.69772499906],[-71.46901,41.69798199906],[-71.475204,41.69754699906],[-71.489632,41.69679899906],[-71.497446,41.69671199906],[-71.49764,41.69670899906],[-71.501679,41.69647399906],[-71.506142,41.69646699906],[-71.511574,41.69608699906],[-71.515419,41.69603899906],[-71.518913,41.69589899906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44032","name":"32","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.360847,41.75516799906],[-71.36127091692,41.75761789117],[-71.359901,41.75807599906],[-71.359222,41.75797999906],[-71.353602,41.75884199906],[-71.350138,41.75973899906],[-71.34716,41.75966999906],[-71.348068,41.76328699906],[-71.34893,41.76710099906],[-71.349487,41.76847499906],[-71.350822,41.77057999906],[-71.353615,41.77119799906],[-71.353638,41.77186999906],[-71.353813,41.77291499906],[-71.35511,41.77445599906],[-71.356879,41.77515799906],[-71.35862,41.77590599906],[-71.356581,41.77879499906],[-71.357266,41.78052799906],[-71.354291,41.78240099906],[-71.353577,41.78253699906],[-71.353715,41.78287999906],[-71.351839,41.78506999906],[-71.347176,41.78643799906],[-71.33387,41.78651399906],[-71.333,41.78863099906],[-71.332637,41.78874699906],[-71.331861,41.78972499906],[-71.33106075427,41.79014694681],[-71.33011616476,41.78835548395],[-71.329296,41.78679999906],[-71.329396,41.78259999906],[-71.327896,41.78050099906],[-71.31792423356,41.77615729326],[-71.317795,41.77610099906],[-71.31638784427,41.77550723089],[-71.29768756485,41.76761639795],[-71.29475805142,41.76638025059],[-71.28440177169,41.76201027988],[-71.286593,41.74240099906],[-71.289002,41.73895899906],[-71.289337,41.73742699906],[-71.2898,41.73380699906],[-71.289494,41.73260099906],[-71.287294,41.72850099906],[-71.287478,41.72380299906],[-71.287604,41.72294899906],[-71.289294,41.71600099906],[-71.292854,41.71175899906],[-71.294039,41.71027999906],[-71.291377,41.70954999906],[-71.280524,41.71105899906],[-71.28006,41.70410399906],[-71.265945,41.70544199906],[-71.264702,41.69942699906],[-71.263628,41.69435199906],[-71.262161,41.68769299906],[-71.270332,41.68681499906],[-71.278946,41.68581599906],[-71.278717,41.67657999906],[-71.278679,41.67630199906],[-71.276535,41.67035499906],[-71.27916837403,41.66978776462],[-71.280366,41.67257499906],[-71.278847,41.67834699906],[-71.282175,41.67958999906],[-71.285502,41.68242999906],[-71.287404,41.68047799906],[-71.289068,41.67958999906],[-71.287637,41.67246299906],[-71.290546,41.66239499906],[-71.293346,41.66023799906],[-71.297862,41.65828399906],[-71.297624,41.65384499906],[-71.299159,41.64953099906],[-71.301396,41.64997799906],[-71.303746,41.65478799906],[-71.304992,41.65934999906],[-71.306095,41.67257499906],[-71.302627,41.68174699906],[-71.298935,41.68152399906],[-71.293119,41.68834699906],[-71.291217,41.70266599906],[-71.2988,41.71100799906],[-71.29905,41.70869599906],[-71.301446,41.70644099906],[-71.303804,41.70656699906],[-71.305468,41.70851899906],[-71.307983,41.71275599906],[-71.305759,41.71866199906],[-71.307131,41.72164799906],[-71.31482,41.72380799906],[-71.324188,41.72538199906],[-71.339456,41.72484099906],[-71.341119,41.72909799906],[-71.341119,41.73477399906],[-71.344447,41.73619299906],[-71.34825,41.74204599906],[-71.35229,41.74506099906],[-71.359896,41.74506099906],[-71.359421,41.74665699906],[-71.360134,41.74949399906],[-71.362348,41.75088999906],[-71.360847,41.75516799906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44033","name":"33","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.694961,41.67542799906],[-71.694122,41.68122099906],[-71.690369,41.68120099906],[-71.687508,41.68162299906],[-71.680855,41.68502499906],[-71.677742,41.68596799906],[-71.67498,41.68784199906],[-71.674217,41.69097499906],[-71.666061,41.69089899906],[-71.662308,41.69105399906],[-71.658211,41.69159899906],[-71.654625,41.69246099906],[-71.650795,41.69380099906],[-71.635291,41.70105699906],[-71.631271,41.70266599906],[-71.628375,41.70341999906],[-71.62847,41.70363199906],[-71.628391,41.70365199906],[-71.620873,41.70429499906],[-71.614372,41.70381799906],[-71.595487,41.69999699906],[-71.593964,41.69900299906],[-71.59436,41.69515299906],[-71.595156,41.69384599906],[-71.593487,41.69304399906],[-71.59253,41.69357299906],[-71.592575,41.69321599906],[-71.592079,41.69347899906],[-71.591667,41.69412799906],[-71.592194,41.69456599906],[-71.591721,41.69478899906],[-71.591202,41.69546699906],[-71.589897,41.69564899906],[-71.589317,41.69351499906],[-71.587028,41.69362899906],[-71.586388,41.69435099906],[-71.581856,41.69478599906],[-71.582176,41.69586399906],[-71.580833,41.69659199906],[-71.579773,41.69511599906],[-71.577896,41.69523499906],[-71.577141,41.69397699906],[-71.574692,41.69248299906],[-71.575356,41.69109499906],[-71.574692,41.69006099906],[-71.572502,41.69014099906],[-71.573136,41.68977099906],[-71.574997,41.68899099906],[-71.578461,41.68656699906],[-71.577469,41.68141599906],[-71.580783,41.67901799906],[-71.580032,41.67904799906],[-71.575305,41.67993599906],[-71.56974,41.68168299906],[-71.564873,41.68454299906],[-71.560982,41.68376599906],[-71.560707,41.68382599906],[-71.560839,41.68591299906],[-71.560841,41.68599399906],[-71.560041,41.69049299906],[-71.558354,41.69102299906],[-71.557098,41.69175499906],[-71.557785,41.69430599906],[-71.557976,41.69600899906],[-71.55764,41.70010499906],[-71.557533,41.70906899906],[-71.557869,41.71000199906],[-71.558571,41.71196299906],[-71.557739,41.71756599906],[-71.560074,41.72415099906],[-71.562882,41.72820899906],[-71.562938,41.72967199906],[-71.550038,41.72998499906],[-71.54743,41.73002499906],[-71.547353,41.73120299906],[-71.545807,41.73009699906],[-71.534286,41.73017099906],[-71.534055,41.72220399906],[-71.534015,41.72114199906],[-71.533883,41.71767999906],[-71.533774,41.71372699906],[-71.533541,41.70845899906],[-71.53346,41.70538099906],[-71.533302,41.70094599906],[-71.533113,41.69558999906],[-71.533109,41.69532999906],[-71.533009,41.68849799906],[-71.532875,41.68192099906],[-71.532968,41.68021599906],[-71.532988,41.67977199906],[-71.533182,41.67208599906],[-71.533379,41.66215599906],[-71.541475,41.66197699906],[-71.547113,41.66185099906],[-71.547041,41.65938599906],[-71.546625,41.64628299906],[-71.546417,41.64208499906],[-71.546092,41.62576099906],[-71.544807,41.60199299906],[-71.643354,41.60096199906],[-71.643983,41.60097899906],[-71.653019,41.59882799906],[-71.65357,41.59870099906],[-71.659395,41.59869199906],[-71.657632,41.60350099906],[-71.655098,41.60934499906],[-71.653176,41.61278799906],[-71.650213,41.61591499906],[-71.646035,41.61942299906],[-71.642235,41.62302799906],[-71.636665,41.62943999906],[-71.629532,41.63509599906],[-71.625655,41.63958599906],[-71.623238,41.64199999906],[-71.613754,41.64886999906],[-71.614464,41.64966599906],[-71.621216,41.65233599906],[-71.623474,41.65213099906],[-71.621857,41.65297899906],[-71.620399,41.65614199906],[-71.622307,41.65755299906],[-71.622871,41.65968299906],[-71.665939,41.65869199906],[-71.666039,41.65872099906],[-71.694939,41.65842399906],[-71.695046,41.67437699906],[-71.694961,41.67542799906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44034","name":"34","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.803475,41.40406499906],[-71.798805,41.40499499906],[-71.79598,41.40728899906],[-71.797264,41.40724899906],[-71.798374,41.40891899906],[-71.796978,41.41144299906],[-71.797124,41.41369299906],[-71.796318,41.41622399906],[-71.79767369255,41.41691041756],[-71.79723545398,41.42639414864],[-71.79673945896,41.4371277619],[-71.79648590811,41.44261474607],[-71.7956834365,41.45998068665],[-71.79498466265,41.47510254884],[-71.79356831589,41.50575309554],[-71.7925957022,41.52680100701],[-71.79170363083,41.54610593728],[-71.79050845462,41.57197022784],[-71.78935867274,41.59685215941],[-71.789356,41.59690999906],[-71.7878551986,41.63445036681],[-71.785248,41.63493199906],[-71.781784,41.63343099906],[-71.78093,41.63469899906],[-71.776367,41.63359799906],[-71.771011,41.63355599906],[-71.767143,41.63682799906],[-71.766098,41.63539399906],[-71.763214,41.63358599906],[-71.760589,41.62754299906],[-71.756843,41.63126699906],[-71.755951,41.63499399906],[-71.752075,41.63779399906],[-71.74781,41.63896699906],[-71.744301,41.63916399906],[-71.742088,41.63804099906],[-71.728722,41.63372599906],[-71.723244,41.63300499906],[-71.722153,41.63380099906],[-71.720299,41.63204799906],[-71.719833,41.62926699906],[-71.718292,41.62829499906],[-71.718239,41.62679699906],[-71.716881,41.62591499906],[-71.717415,41.62505999906],[-71.715592,41.62509799906],[-71.71521,41.62389199906],[-71.711739,41.62408599906],[-71.709343,41.62503899906],[-71.705925,41.62564599906],[-71.706818,41.62708399906],[-71.706368,41.62930099906],[-71.69912,41.63246199906],[-71.695961,41.63267499906],[-71.692329,41.63509799906],[-71.686134,41.63523799906],[-71.682526,41.62902299906],[-71.679062,41.62520799906],[-71.676842,41.62521999906],[-71.672913,41.62590099906],[-71.670296,41.62477299906],[-71.667473,41.62281199906],[-71.664917,41.62165999906],[-71.661156,41.62165299906],[-71.657272,41.62127899906],[-71.652382,41.62001799906],[-71.649155,41.62001199906],[-71.646035,41.61942299906],[-71.650213,41.61591499906],[-71.653176,41.61278799906],[-71.655098,41.60934499906],[-71.657632,41.60350099906],[-71.659395,41.59869199906],[-71.65357,41.59870099906],[-71.653019,41.59882799906],[-71.643983,41.60097899906],[-71.643354,41.60096199906],[-71.544807,41.60199299906],[-71.522429,41.60256599906],[-71.521904,41.60084199906],[-71.518433,41.59403999906],[-71.51812,41.59220799906],[-71.517926,41.57726499906],[-71.518183,41.57558899906],[-71.51886,41.56468399906],[-71.519159,41.55791399906],[-71.51918,41.55633199906],[-71.519566,41.52992499906],[-71.518298,41.52734799906],[-71.512225,41.51531499906],[-71.510155,41.50898399906],[-71.507886,41.50005999906],[-71.514896,41.50134099906],[-71.530528,41.50375199906],[-71.557099,41.51058199906],[-71.586982,41.51821299906],[-71.592394,41.51989199906],[-71.613042,41.52512099906],[-71.609332,41.50665699906],[-71.608322,41.50262299906],[-71.607724,41.50247999906],[-71.607486,41.50092799906],[-71.609517,41.49802299906],[-71.608745,41.49698199906],[-71.60893,41.49536599906],[-71.60769,41.49380399906],[-71.608645,41.49287399906],[-71.608014,41.48947599906],[-71.608914,41.48773699906],[-71.606264,41.48750399906],[-71.604273,41.48645099906],[-71.60405,41.48521799906],[-71.602006,41.48338499906],[-71.602665,41.48212199906],[-71.60099,41.48065899906],[-71.601182,41.47778599906],[-71.603944,41.47763199906],[-71.605898,41.47566899906],[-71.605019,41.47307199906],[-71.602385,41.47108999906],[-71.602046,41.46942699906],[-71.599174,41.46675499906],[-71.596917,41.46138899906],[-71.598548,41.45981999906],[-71.598628,41.45804199906],[-71.602462,41.45640499906],[-71.604415,41.45506599906],[-71.605182,41.45375499906],[-71.607325,41.45251499906],[-71.608912,41.45222699906],[-71.607136,41.45100499906],[-71.603749,41.45000199906],[-71.602799,41.44933199906],[-71.601283,41.45027799906],[-71.599519,41.44990899906],[-71.596287,41.44751999906],[-71.595141,41.44622499906],[-71.600087,41.43249399906],[-71.606228,41.41540799906],[-71.614031,41.39349499906],[-71.629379,41.38745499906],[-71.635124,41.38455599906],[-71.636673,41.38409399906],[-71.638206,41.38401399906],[-71.640505,41.38443999906],[-71.642121,41.38480299906],[-71.647717,41.38595799906],[-71.653523,41.38559999906],[-71.657711,41.38513699906],[-71.659784,41.38472599906],[-71.660789,41.38517799906],[-71.661316,41.38539099906],[-71.66426,41.38560999906],[-71.668137,41.38608899906],[-71.670937,41.38727999906],[-71.671654,41.38713799906],[-71.67308,41.38713499906],[-71.67395,41.38742399906],[-71.675774,41.38850399906],[-71.676845,41.38903999906],[-71.678444,41.39033499906],[-71.679489,41.39207199906],[-71.680305,41.39336799906],[-71.680229,41.39399699906],[-71.679703,41.39572899906],[-71.680214,41.39749099906],[-71.680132,41.39802799906],[-71.679611,41.40075199906],[-71.680199,41.40304199906],[-71.679282,41.40653499906],[-71.680199,41.40878299906],[-71.683281,41.41044999906],[-71.686119,41.41028199906],[-71.687511,41.40983299906],[-71.69381,41.40876799906],[-71.69754,41.41061399906],[-71.701103,41.41191099906],[-71.704536,41.41464199906],[-71.706673,41.41936099906],[-71.71257,41.41907099906],[-71.715233,41.42108499906],[-71.716314,41.42093999906],[-71.717876,41.41736899906],[-71.719113,41.41548399906],[-71.721613,41.41327299906],[-71.727412,41.41022199906],[-71.723398,41.40797099906],[-71.723558,41.40435699906],[-71.727462,41.40170299906],[-71.727945,41.39668199906],[-71.728612,41.39779999906],[-71.731252,41.39851399906],[-71.733637,41.39870099906],[-71.735084,41.39966199906],[-71.731097,41.40080099906],[-71.738349,41.40032899906],[-71.739931,41.40171399906],[-71.742097,41.40130199906],[-71.745364,41.40233299906],[-71.746873,41.40337199906],[-71.748282,41.40519299906],[-71.747855,41.40670799906],[-71.750471,41.40782199906],[-71.755147,41.40797699906],[-71.755945,41.40766099906],[-71.758187,41.40413999906],[-71.761329,41.40169799906],[-71.763317,41.40130499906],[-71.764487,41.39859999906],[-71.765658,41.39625299906],[-71.768069,41.39481799906],[-71.769598,41.39780899906],[-71.769442,41.39679999906],[-71.770547,41.39817199906],[-71.769471,41.39948399906],[-71.76718,41.39920599906],[-71.771103,41.40138999906],[-71.772674,41.40040399906],[-71.771528,41.39705999906],[-71.774179,41.39541199906],[-71.776231,41.39352099906],[-71.777808,41.39325599906],[-71.779007,41.39454599906],[-71.780783,41.39348799906],[-71.778765,41.38963599906],[-71.779222,41.38727699906],[-71.780421,41.38708399906],[-71.780455,41.38871099906],[-71.782037,41.38857699906],[-71.78264,41.38675199906],[-71.784125,41.38694499906],[-71.7852,41.38953199906],[-71.786664,41.38970999906],[-71.788774,41.39107999906],[-71.790029,41.39262299906],[-71.792265,41.39214199906],[-71.796494,41.39286299906],[-71.797223,41.39320899906],[-71.798463,41.39556299906],[-71.798072,41.39669399906],[-71.794371,41.39703499906],[-71.794711,41.39792699906],[-71.797264,41.39853399906],[-71.799756,41.39858899906],[-71.799824,41.39933199906],[-71.800536,41.40110599906],[-71.803475,41.40406499906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44035","name":"35","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.547113,41.66185099906],[-71.541475,41.66197699906],[-71.533379,41.66215599906],[-71.499225,41.66294799906],[-71.490206,41.66319299906],[-71.45853,41.66373399906],[-71.45829,41.66370499906],[-71.451218,41.66392299906],[-71.450127,41.66396399906],[-71.445572,41.66406599906],[-71.44493240215,41.66402899906],[-71.444801,41.66380099906],[-71.443541,41.66301899906],[-71.44237693746,41.66361147598],[-71.443021,41.66019999906],[-71.446018,41.65537599906],[-71.449315,41.65256599906],[-71.450376,41.65144899906],[-71.452157,41.64849199906],[-71.454876,41.64744499906],[-71.458017,41.64980899906],[-71.458654,41.64926599906],[-71.465652,41.64309799906],[-71.464831,41.63890399906],[-71.468692,41.63859399906],[-71.467844,41.63416499906],[-71.463436,41.63654399906],[-71.462354,41.63837999906],[-71.459123,41.63794599906],[-71.458324,41.63636599906],[-71.45558,41.63510899906],[-71.45423,41.63295299906],[-71.454404,41.63120199906],[-71.45311,41.62985899906],[-71.453041,41.62743399906],[-71.44854,41.62719699906],[-71.448074,41.62475599906],[-71.446044,41.62247199906],[-71.449169,41.62235699906],[-71.450959,41.62167199906],[-71.452805,41.61937799906],[-71.455963,41.61936599906],[-71.458317,41.62116799906],[-71.457721,41.61462999906],[-71.45764,41.61377999906],[-71.456979,41.61067599906],[-71.455732,41.60716599906],[-71.454637,41.60370699906],[-71.454669,41.60261199906],[-71.454687,41.60229099906],[-71.45491,41.59892999906],[-71.458832,41.58509799906],[-71.459231,41.58361099906],[-71.462374,41.58441999906],[-71.46515,41.58332699906],[-71.468319,41.58462199906],[-71.471906,41.58391199906],[-71.475333,41.58601399906],[-71.479647,41.58660999906],[-71.481017,41.58449299906],[-71.485191,41.58483799906],[-71.486611,41.58381299906],[-71.489727,41.58402499906],[-71.495073,41.57342799906],[-71.492371,41.57063299906],[-71.491296,41.56815499906],[-71.488618,41.55709899906],[-71.488022,41.55523899906],[-71.487302,41.55398499906],[-71.485412,41.55143499906],[-71.485285,41.55149199906],[-71.483864,41.54984999906],[-71.476875,41.54526499906],[-71.469025,41.54051599906],[-71.468605,41.53997799906],[-71.468498,41.53608299906],[-71.465988,41.53005999906],[-71.46258,41.53074899906],[-71.459907,41.53102399906],[-71.45945,41.52794999906],[-71.458832,41.52689799906],[-71.456251,41.52776299906],[-71.454008,41.52514399906],[-71.453281,41.52276299906],[-71.450712,41.52073199906],[-71.447924,41.52185199906],[-71.444457,41.52130799906],[-71.444673,41.51975299906],[-71.447218,41.51748699906],[-71.443916,41.51547999906],[-71.444763,41.51242299906],[-71.448313,41.50981199906],[-71.448522,41.50797399906],[-71.449589,41.50730999906],[-71.447758,41.50590699906],[-71.448148,41.50278999906],[-71.450101,41.50180099906],[-71.446657,41.48907699906],[-71.447047,41.48832999906],[-71.447922,41.48644299906],[-71.447362,41.48124899906],[-71.448703,41.47500699906],[-71.4496,41.47240099906],[-71.448398,41.46872899906],[-71.449924,41.46595199906],[-71.451137,41.46160399906],[-71.450869,41.45790999906],[-71.451617,41.45315699906],[-71.4526,41.45220199906],[-71.464283,41.44354299906],[-71.466022,41.44256299906],[-71.46801,41.44177699906],[-71.469497,41.44129499906],[-71.4727,41.44001499906],[-71.474835,41.43889099906],[-71.475075,41.43887699906],[-71.483326,41.43542099906],[-71.487704,41.43214899906],[-71.489553,41.43191099906],[-71.489991,41.43171399906],[-71.491614,41.42997999906],[-71.491758,41.42976499906],[-71.493622,41.42971799906],[-71.497627,41.43273199906],[-71.500346,41.42971799906],[-71.501733,41.43311399906],[-71.502084,41.43356199906],[-71.502566,41.43499199906],[-71.501403,41.43700899906],[-71.501755,41.43680199906],[-71.502319,41.43925899906],[-71.502289,41.44159299906],[-71.500423,41.44166699906],[-71.498518,41.43913899906],[-71.497872,41.43891199906],[-71.497173,41.43876199906],[-71.496589,41.43873899906],[-71.495183,41.43889299906],[-71.495499,41.44078399906],[-71.488457,41.44151299906],[-71.480339,41.44247799906],[-71.477997,41.44396999906],[-71.4746,41.44725599906],[-71.46965,41.45227799906],[-71.469097,41.45425999906],[-71.468704,41.45600699906],[-71.463613,41.46621199906],[-71.463532,41.46642399906],[-71.461315,41.47089999906],[-71.460968,41.47418999906],[-71.460373,41.47709699906],[-71.456711,41.49201199906],[-71.456512,41.49398799906],[-71.456825,41.49583099906],[-71.458115,41.49906899906],[-71.491864,41.49721899906],[-71.497304,41.49815599906],[-71.503438,41.49970099906],[-71.507886,41.50005999906],[-71.510155,41.50898399906],[-71.512225,41.51531499906],[-71.518298,41.52734799906],[-71.519566,41.52992499906],[-71.51918,41.55633199906],[-71.519159,41.55791399906],[-71.51886,41.56468399906],[-71.518183,41.57558899906],[-71.517926,41.57726499906],[-71.51812,41.59220799906],[-71.518433,41.59403999906],[-71.521904,41.60084199906],[-71.522429,41.60256599906],[-71.544807,41.60199299906],[-71.546092,41.62576099906],[-71.546417,41.64208499906],[-71.546625,41.64628299906],[-71.547041,41.65938599906],[-71.547113,41.66185099906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44036","name":"36","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.52280361357,41.37668988112],[-71.519392,41.38020399906],[-71.517312,41.38213599906],[-71.51464,41.38478999906],[-71.50839,41.39919799906],[-71.504827,41.40751199906],[-71.503202,41.41760099906],[-71.497101,41.41750199906],[-71.495801,41.42260099906],[-71.495501,41.42410099906],[-71.494802,41.42730099906],[-71.491758,41.42976499906],[-71.491614,41.42997999906],[-71.489991,41.43171399906],[-71.489553,41.43191099906],[-71.487704,41.43214899906],[-71.483326,41.43542099906],[-71.475075,41.43887699906],[-71.474835,41.43889099906],[-71.4727,41.44001499906],[-71.469497,41.44129499906],[-71.46801,41.44177699906],[-71.466022,41.44256299906],[-71.464283,41.44354299906],[-71.4526,41.45220199906],[-71.451617,41.45315699906],[-71.450869,41.45790999906],[-71.451137,41.46160399906],[-71.449924,41.46595199906],[-71.448398,41.46872899906],[-71.4496,41.47240099906],[-71.448703,41.47500699906],[-71.447362,41.48124899906],[-71.447922,41.48644299906],[-71.447047,41.48832999906],[-71.446657,41.48907699906],[-71.450101,41.50180099906],[-71.448148,41.50278999906],[-71.447758,41.50590699906],[-71.449589,41.50730999906],[-71.448522,41.50797399906],[-71.448313,41.50981199906],[-71.444763,41.51242299906],[-71.443916,41.51547999906],[-71.447218,41.51748699906],[-71.444673,41.51975299906],[-71.444457,41.52130799906],[-71.447924,41.52185199906],[-71.450712,41.52073199906],[-71.453281,41.52276299906],[-71.454008,41.52514399906],[-71.456251,41.52776299906],[-71.458832,41.52689799906],[-71.45945,41.52794999906],[-71.459907,41.53102399906],[-71.46258,41.53074899906],[-71.465988,41.53005999906],[-71.468498,41.53608299906],[-71.468605,41.53997799906],[-71.469025,41.54051599906],[-71.476875,41.54526499906],[-71.483864,41.54984999906],[-71.485285,41.55149199906],[-71.485412,41.55143499906],[-71.487302,41.55398499906],[-71.488022,41.55523899906],[-71.488618,41.55709899906],[-71.491296,41.56815499906],[-71.492371,41.57063299906],[-71.495073,41.57342799906],[-71.489727,41.58402499906],[-71.486611,41.58381299906],[-71.485191,41.58483799906],[-71.481017,41.58449299906],[-71.479647,41.58660999906],[-71.475333,41.58601399906],[-71.471906,41.58391199906],[-71.468319,41.58462199906],[-71.46515,41.58332699906],[-71.462374,41.58441999906],[-71.459231,41.58361099906],[-71.458832,41.58509799906],[-71.45491,41.59892999906],[-71.454687,41.60229099906],[-71.454669,41.60261199906],[-71.454637,41.60370699906],[-71.455732,41.60716599906],[-71.456979,41.61067599906],[-71.45764,41.61377999906],[-71.457721,41.61462999906],[-71.458317,41.62116799906],[-71.455963,41.61936599906],[-71.452805,41.61937799906],[-71.450959,41.62167199906],[-71.449169,41.62235699906],[-71.446044,41.62247199906],[-71.448074,41.62475599906],[-71.44854,41.62719699906],[-71.453041,41.62743399906],[-71.45311,41.62985899906],[-71.451366,41.62945499906],[-71.448447,41.63337699906],[-71.449286,41.63672999906],[-71.446277,41.63883699906],[-71.445084,41.64137299906],[-71.441986,41.64327499906],[-71.442717,41.64439799906],[-71.442508,41.64581799906],[-71.440925,41.64617999906],[-71.439301,41.64802299906],[-71.435944,41.64922299906],[-71.432796,41.65132299906],[-71.428941,41.65056899906],[-71.423884,41.65388799906],[-71.417581,41.65495199906],[-71.40887996267,41.65384065613],[-71.408893,41.65146599906],[-71.407525,41.63332599906],[-71.403154,41.62746799906],[-71.403392,41.62551299906],[-71.408621,41.62195999906],[-71.407907,41.61964999906],[-71.402441,41.61556299906],[-71.404342,41.61183199906],[-71.409571,41.61040999906],[-71.411948,41.61112099906],[-71.416939,41.60490099906],[-71.414325,41.60258999906],[-71.403613,41.60295899906],[-71.403392,41.60063499906],[-71.40377,41.58932099906],[-71.410997,41.58659299906],[-71.419584,41.58578099906],[-71.430249,41.58339299906],[-71.439519,41.57734799906],[-71.438806,41.58143699906],[-71.440945,41.58499299906],[-71.446412,41.58321499906],[-71.444272,41.57894799906],[-71.44705,41.57842899906],[-71.446412,41.57450299906],[-71.443322,41.57308099906],[-71.438093,41.57059099906],[-71.444091,41.56804299906],[-71.443831,41.56606799906],[-71.442157,41.56381599906],[-71.439064,41.56367999906],[-71.437356,41.56222299906],[-71.435179,41.56213199906],[-71.434371,41.56163299906],[-71.435227,41.55954099906],[-71.434783,41.55809699906],[-71.432716,41.55738399906],[-71.430175,41.55823699906],[-71.428407,41.55708499906],[-71.427873,41.55547499906],[-71.431045,41.55010299906],[-71.428646,41.54698599906],[-71.424777,41.54943099906],[-71.423357,41.54818199906],[-71.426671,41.54356299906],[-71.423119,41.53875399906],[-71.417652,41.53626299906],[-71.418128,41.53217099906],[-71.415513,41.52985799906],[-71.415911,41.52794099906],[-71.414825,41.52312599906],[-71.414937,41.51630299906],[-71.421425,41.49862899906],[-71.420858,41.49321499906],[-71.418603,41.49212599906],[-71.420759,41.48997899906],[-71.420267,41.48357999906],[-71.417957,41.48207299906],[-71.417621,41.47793399906],[-71.418404,41.47265199906],[-71.421157,41.46988799906],[-71.422991,41.47268199906],[-71.427635,41.47253999906],[-71.430744,41.47063599906],[-71.430926,41.46565499906],[-71.430012,41.46114099906],[-71.426684,41.45882499906],[-71.425817,41.45600199906],[-71.426855,41.45412699906],[-71.430259,41.45303599906],[-71.432087,41.44938899906],[-71.431137,41.44730099906],[-71.433612,41.44499499906],[-71.438129,41.44165399906],[-71.43833,41.43958499906],[-71.4406,41.43836799906],[-71.442223,41.43972099906],[-71.442788,41.44139799906],[-71.448948,41.43847899906],[-71.455845,41.43298599906],[-71.455004,41.43031799906],[-71.455388,41.42800499906],[-71.45482,41.42182099906],[-71.452643,41.41777999906],[-71.452639,41.41475799906],[-71.452974,41.40967599906],[-71.455371,41.40796199906],[-71.456211,41.40512299906],[-71.459242,41.40311899906],[-71.462325,41.40127599906],[-71.462523,41.39822399906],[-71.463743,41.39575299906],[-71.467312,41.39495099906],[-71.468984,41.39362099906],[-71.474918,41.38610399906],[-71.484203,41.37184199906],[-71.48294,41.36592899906],[-71.480439,41.36241599906],[-71.480875,41.36024799906],[-71.484658,41.36143599906],[-71.487696,41.36148699906],[-71.489218,41.36237299906],[-71.488956,41.36435099906],[-71.494898,41.36827499906],[-71.497275,41.37130699906],[-71.502926,41.37419999906],[-71.513401,41.37523699906],[-71.520163,41.37652299906],[-71.52280361357,41.37668988112]],[[-71.613133,41.16028099907],[-71.610529,41.16264299907],[-71.610572,41.16837399906],[-71.609353,41.17172699906],[-71.607985,41.17286199906],[-71.607794,41.17539899906],[-71.605565,41.18213899906],[-71.601294,41.18321299906],[-71.597457,41.18518599906],[-71.594994,41.18839199906],[-71.593419,41.19144499906],[-71.592944,41.19891099906],[-71.58955,41.19655699906],[-71.585853,41.20024899906],[-71.580634,41.20337399906],[-71.578519,41.20907999906],[-71.576924,41.21102399906],[-71.576725,41.21573799906],[-71.576319,41.22490999906],[-71.577691,41.23123199906],[-71.574376,41.22783799906],[-71.570301,41.22534199906],[-71.567977,41.22467299906],[-71.565785,41.22494999906],[-71.562546,41.22421699906],[-71.55991,41.22163199906],[-71.55862,41.21919299906],[-71.555861,41.21663699906],[-71.554067,41.21295699906],[-71.555564,41.20831499906],[-71.557951,41.20451499906],[-71.561372,41.20060099906],[-71.564119,41.19537199906],[-71.566405,41.18820699906],[-71.566345,41.18427699906],[-71.564667,41.17967399906],[-71.561299,41.17576499906],[-71.55791,41.17301799906],[-71.554627,41.17342299906],[-71.552889,41.16911699906],[-71.550226,41.16678699906],[-71.544446,41.16491199907],[-71.545594,41.16345299907],[-71.543872,41.16132099907],[-71.545434,41.15996099907],[-71.545468,41.15748599907],[-71.547051,41.15368399907],[-71.551953,41.15171799907],[-71.556527,41.15156899907],[-71.561479,41.15049099907],[-71.56589,41.14900899907],[-71.568668,41.14936799907],[-71.575549,41.14824099907],[-71.578573,41.14761999907],[-71.580505,41.14909199907],[-71.584674,41.14822199907],[-71.587375,41.14806199907],[-71.5937,41.14633899907],[-71.595495,41.14737099907],[-71.599993,41.14693199907],[-71.611567,41.15390499907],[-71.613133,41.16028099907]]]]}}},{"type":"SLDL","affgeoid":"610U800US44037","name":"37","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.613042,41.52512099906],[-71.592394,41.51989199906],[-71.586982,41.51821299906],[-71.557099,41.51058199906],[-71.530528,41.50375199906],[-71.514896,41.50134099906],[-71.507886,41.50005999906],[-71.503438,41.49970099906],[-71.497304,41.49815599906],[-71.491864,41.49721899906],[-71.458115,41.49906899906],[-71.456825,41.49583099906],[-71.456512,41.49398799906],[-71.456711,41.49201199906],[-71.460373,41.47709699906],[-71.460968,41.47418999906],[-71.461315,41.47089999906],[-71.463532,41.46642399906],[-71.463613,41.46621199906],[-71.468704,41.45600699906],[-71.469097,41.45425999906],[-71.46965,41.45227799906],[-71.4746,41.44725599906],[-71.477997,41.44396999906],[-71.480339,41.44247799906],[-71.488457,41.44151299906],[-71.495499,41.44078399906],[-71.495183,41.43889299906],[-71.496589,41.43873899906],[-71.497173,41.43876199906],[-71.497872,41.43891199906],[-71.498518,41.43913899906],[-71.500423,41.44166699906],[-71.502289,41.44159299906],[-71.502319,41.43925899906],[-71.501755,41.43680199906],[-71.501403,41.43700899906],[-71.502566,41.43499199906],[-71.502084,41.43356199906],[-71.501733,41.43311399906],[-71.500346,41.42971799906],[-71.497627,41.43273199906],[-71.493622,41.42971799906],[-71.491758,41.42976499906],[-71.494802,41.42730099906],[-71.495501,41.42410099906],[-71.495801,41.42260099906],[-71.497101,41.41750199906],[-71.503202,41.41760099906],[-71.504827,41.40751199906],[-71.50839,41.39919799906],[-71.51464,41.38478999906],[-71.517312,41.38213599906],[-71.519392,41.38020399906],[-71.52280361357,41.37668988112],[-71.52423907471,41.3767805997],[-71.526429,41.37691899906],[-71.531546,41.37649299906],[-71.535372,41.37496399906],[-71.537237,41.37332899906],[-71.540901,41.37301099906],[-71.545289,41.37403899906],[-71.551566,41.37442299906],[-71.586094,41.36808999906],[-71.594756,41.36516199906],[-71.598051,41.36506399906],[-71.5999408655,41.36481286829],[-71.601143,41.37008699906],[-71.601151,41.37210799906],[-71.601791,41.37549199906],[-71.602165,41.38134799906],[-71.603058,41.38157299906],[-71.603165,41.38537999906],[-71.604485,41.38777899906],[-71.605111,41.39332599906],[-71.600357,41.39467999906],[-71.597604,41.39501599906],[-71.587401,41.39557899906],[-71.57553,41.39477899906],[-71.573463,41.39481199906],[-71.571458,41.39505299906],[-71.576128,41.39500099906],[-71.57561,41.39522399906],[-71.576477,41.40005099906],[-71.575904,41.40151199906],[-71.573522,41.40074699906],[-71.570133,41.40057799906],[-71.569206,41.40313699906],[-71.569191,41.40516299906],[-71.571121,41.40835599906],[-71.574303,41.41097599906],[-71.576057,41.41614899906],[-71.583061,41.41658799906],[-71.582264,41.42079199906],[-71.59583,41.42130599906],[-71.601649,41.41807699906],[-71.603199,41.41660999906],[-71.606228,41.41540799906],[-71.600087,41.43249399906],[-71.595141,41.44622499906],[-71.596287,41.44751999906],[-71.599519,41.44990899906],[-71.601283,41.45027799906],[-71.602799,41.44933199906],[-71.603749,41.45000199906],[-71.607136,41.45100499906],[-71.608912,41.45222699906],[-71.607325,41.45251499906],[-71.605182,41.45375499906],[-71.604415,41.45506599906],[-71.602462,41.45640499906],[-71.598628,41.45804199906],[-71.598548,41.45981999906],[-71.596917,41.46138899906],[-71.599174,41.46675499906],[-71.602046,41.46942699906],[-71.602385,41.47108999906],[-71.605019,41.47307199906],[-71.605898,41.47566899906],[-71.603944,41.47763199906],[-71.601182,41.47778599906],[-71.60099,41.48065899906],[-71.602665,41.48212199906],[-71.602006,41.48338499906],[-71.60405,41.48521799906],[-71.604273,41.48645099906],[-71.606264,41.48750399906],[-71.608914,41.48773699906],[-71.608014,41.48947599906],[-71.608645,41.49287399906],[-71.60769,41.49380399906],[-71.60893,41.49536599906],[-71.608745,41.49698199906],[-71.609517,41.49802299906],[-71.607486,41.50092799906],[-71.607724,41.50247999906],[-71.608322,41.50262299906],[-71.609332,41.50665699906],[-71.613042,41.52512099906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44038","name":"38","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.862109,41.31661199906],[-71.860513,41.32024799906],[-71.857458,41.32078899906],[-71.851923,41.32466399906],[-71.847709,41.32960399906],[-71.844666,41.33058499906],[-71.836156,41.33601299906],[-71.83061772372,41.34124704635],[-71.829384,41.34241299906],[-71.829902,41.34663599906],[-71.831303,41.35129499906],[-71.835703,41.35356799906],[-71.836768,41.35510299906],[-71.837873,41.36014499906],[-71.83773172145,41.36329668814],[-71.83771339082,41.36370561389],[-71.837633,41.36549899906],[-71.83558816822,41.36706866834],[-71.83494691638,41.36756091094],[-71.832499,41.36943999906],[-71.83210776209,41.37008426103],[-71.83201075958,41.37024399768],[-71.831613,41.37089899906],[-71.83207658003,41.37296217051],[-71.832674,41.37562099906],[-71.83131395979,41.37772482169],[-71.830637,41.37877199906],[-71.83164333776,41.38002244502],[-71.833531,41.38236799906],[-71.83300056282,41.3852672379],[-71.832655,41.38715599906],[-71.835204,41.38955799906],[-71.83817,41.39059499906],[-71.83863230444,41.39115102491],[-71.8410615506,41.39407274384],[-71.842131,41.39535899906],[-71.842244,41.39687899906],[-71.84115,41.39922999906],[-71.841726,41.40324099906],[-71.843256,41.40446099906],[-71.843472,41.40582999906],[-71.84281656981,41.40873220644],[-71.842563,41.40985499906],[-71.839649,41.41211899906],[-71.836883,41.41222799906],[-71.834107,41.41158199906],[-71.827902,41.41433399906],[-71.824573,41.41523499906],[-71.823873,41.41716399906],[-71.82033,41.41938199906],[-71.816904,41.41992699906],[-71.8129,41.41940399906],[-71.806812,41.41667299906],[-71.803684,41.41742799906],[-71.801439,41.41554499906],[-71.797683,41.41670899906],[-71.79767369255,41.41691041756],[-71.796318,41.41622399906],[-71.797124,41.41369299906],[-71.796978,41.41144299906],[-71.798374,41.40891899906],[-71.797264,41.40724899906],[-71.79598,41.40728899906],[-71.798805,41.40499499906],[-71.803475,41.40406499906],[-71.800536,41.40110599906],[-71.799824,41.39933199906],[-71.799756,41.39858899906],[-71.797264,41.39853399906],[-71.794711,41.39792699906],[-71.794371,41.39703499906],[-71.798072,41.39669399906],[-71.798463,41.39556299906],[-71.797223,41.39320899906],[-71.796494,41.39286299906],[-71.792265,41.39214199906],[-71.790029,41.39262299906],[-71.788774,41.39107999906],[-71.786664,41.38970999906],[-71.7852,41.38953199906],[-71.784125,41.38694499906],[-71.78264,41.38675199906],[-71.782037,41.38857699906],[-71.780455,41.38871099906],[-71.780421,41.38708399906],[-71.779222,41.38727699906],[-71.778765,41.38963599906],[-71.780783,41.39348799906],[-71.779007,41.39454599906],[-71.777808,41.39325599906],[-71.776231,41.39352099906],[-71.774179,41.39541199906],[-71.771528,41.39705999906],[-71.772674,41.40040399906],[-71.771103,41.40138999906],[-71.76718,41.39920599906],[-71.769471,41.39948399906],[-71.770547,41.39817199906],[-71.769442,41.39679999906],[-71.769598,41.39780899906],[-71.768069,41.39481799906],[-71.765658,41.39625299906],[-71.764487,41.39859999906],[-71.763317,41.40130499906],[-71.761329,41.40169799906],[-71.758187,41.40413999906],[-71.755945,41.40766099906],[-71.755147,41.40797699906],[-71.750471,41.40782199906],[-71.747855,41.40670799906],[-71.748282,41.40519299906],[-71.746873,41.40337199906],[-71.745364,41.40233299906],[-71.742097,41.40130199906],[-71.739931,41.40171399906],[-71.738349,41.40032899906],[-71.731097,41.40080099906],[-71.735084,41.39966199906],[-71.733637,41.39870099906],[-71.731252,41.39851399906],[-71.728612,41.39779999906],[-71.727945,41.39668199906],[-71.727462,41.40170299906],[-71.723558,41.40435699906],[-71.723398,41.40797099906],[-71.727412,41.41022199906],[-71.721613,41.41327299906],[-71.719113,41.41548399906],[-71.717876,41.41736899906],[-71.716314,41.42093999906],[-71.715233,41.42108499906],[-71.71257,41.41907099906],[-71.706673,41.41936099906],[-71.704536,41.41464199906],[-71.701103,41.41191099906],[-71.69754,41.41061399906],[-71.69381,41.40876799906],[-71.687511,41.40983299906],[-71.686119,41.41028199906],[-71.683281,41.41044999906],[-71.680199,41.40878299906],[-71.679282,41.40653499906],[-71.680199,41.40304199906],[-71.679611,41.40075199906],[-71.680132,41.39802799906],[-71.680214,41.39749099906],[-71.679703,41.39572899906],[-71.680229,41.39399699906],[-71.680305,41.39336799906],[-71.679489,41.39207199906],[-71.678444,41.39033499906],[-71.676845,41.38903999906],[-71.675774,41.38850399906],[-71.67395,41.38742399906],[-71.67308,41.38713499906],[-71.671654,41.38713799906],[-71.670937,41.38727999906],[-71.668137,41.38608899906],[-71.66426,41.38560999906],[-71.661316,41.38539099906],[-71.660789,41.38517799906],[-71.659784,41.38472599906],[-71.657711,41.38513699906],[-71.653523,41.38559999906],[-71.647717,41.38595799906],[-71.642121,41.38480299906],[-71.640505,41.38443999906],[-71.638206,41.38401399906],[-71.636673,41.38409399906],[-71.635124,41.38455599906],[-71.629379,41.38745499906],[-71.614031,41.39349499906],[-71.606228,41.41540799906],[-71.603199,41.41660999906],[-71.601649,41.41807699906],[-71.59583,41.42130599906],[-71.582264,41.42079199906],[-71.583061,41.41658799906],[-71.576057,41.41614899906],[-71.574303,41.41097599906],[-71.571121,41.40835599906],[-71.569191,41.40516299906],[-71.569206,41.40313699906],[-71.570133,41.40057799906],[-71.573522,41.40074699906],[-71.575904,41.40151199906],[-71.576477,41.40005099906],[-71.57561,41.39522399906],[-71.576128,41.39500099906],[-71.571458,41.39505299906],[-71.573463,41.39481199906],[-71.57553,41.39477899906],[-71.587401,41.39557899906],[-71.597604,41.39501599906],[-71.600357,41.39467999906],[-71.605111,41.39332599906],[-71.604485,41.38777899906],[-71.603165,41.38537999906],[-71.603058,41.38157299906],[-71.602165,41.38134799906],[-71.601791,41.37549199906],[-71.601151,41.37210799906],[-71.601143,41.37008699906],[-71.5999408655,41.36481286829],[-71.606487,41.36394299906],[-71.616506,41.36298899906],[-71.624158,41.36120999906],[-71.632989,41.35846199906],[-71.638315,41.35543399906],[-71.642851,41.35566199906],[-71.68807,41.34282299906],[-71.696688,41.34097799906],[-71.701631,41.33696799906],[-71.70517,41.33428499906],[-71.716036,41.33108899906],[-71.72074,41.33156699906],[-71.72427,41.33208899906],[-71.730717,41.33163999906],[-71.746758,41.32809499906],[-71.751656,41.32540199906],[-71.761029,41.32849299906],[-71.766395,41.32885799906],[-71.773702,41.32797699906],[-71.785957,41.32573899906],[-71.815337,41.32023799906],[-71.833755,41.31563099906],[-71.845285,41.31186999906],[-71.857432,41.30631799906],[-71.859899,41.30942399906],[-71.862772,41.30979099906],[-71.862109,41.31661199906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44004","name":"4","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.480139,41.86001099906],[-71.479988,41.86307099906],[-71.478745,41.86299099906],[-71.477722,41.86298799906],[-71.477722,41.86325799906],[-71.475967,41.86327399906],[-71.475967,41.86464299906],[-71.475763,41.86465199906],[-71.475279,41.86561699906],[-71.471928,41.86809599906],[-71.471573,41.86918699906],[-71.473966,41.86891299906],[-71.473602,41.87082299906],[-71.475526,41.87156999906],[-71.474826,41.87172699906],[-71.466759,41.87276699906],[-71.463265,41.87352899906],[-71.455584,41.87442899906],[-71.449154,41.87524199906],[-71.448158,41.87327599906],[-71.44735,41.87063199906],[-71.445267,41.87049299906],[-71.444588,41.86947599906],[-71.44416,41.86746599906],[-71.442825,41.86761899906],[-71.440636,41.86760299906],[-71.441116,41.86875499906],[-71.437798,41.87063999906],[-71.434326,41.87043399906],[-71.431236,41.87115899906],[-71.431679,41.87340899906],[-71.433654,41.87720999906],[-71.4219,41.87869499906],[-71.419876,41.86977399906],[-71.419594,41.86910999906],[-71.418624,41.86484899906],[-71.417418,41.85966599906],[-71.422155,41.86026599906],[-71.429906,41.86125499906],[-71.429451,41.85922999906],[-71.426628,41.85308099906],[-71.428825,41.85367599906],[-71.431679,41.85439099906],[-71.432587,41.85451099906],[-71.436264,41.85488099906],[-71.43792,41.85327099906],[-71.437141,41.85275299906],[-71.437912,41.85210399906],[-71.438942,41.84920099906],[-71.443214,41.85080299906],[-71.443985,41.85114699906],[-71.44976,41.85039899906],[-71.451668,41.84600099906],[-71.45211,41.84623299906],[-71.453819,41.84588999906],[-71.460292,41.84495699906],[-71.46456,41.84206599906],[-71.468742,41.83925999906],[-71.472459,41.83698099906],[-71.47331,41.83898199906],[-71.477216,41.83791099906],[-71.47764,41.84146899906],[-71.478659,41.84236899906],[-71.476372,41.84211699906],[-71.4729,41.84289899906],[-71.473892,41.84533699906],[-71.472267,41.84563799906],[-71.473709,41.84927399906],[-71.47345,41.84997899906],[-71.473938,41.85221099906],[-71.475281,41.85338999906],[-71.473638,41.85464899906],[-71.475105,41.85477099906],[-71.474846,41.85582399906],[-71.471931,41.85802499906],[-71.473007,41.85819199906],[-71.473503,41.85959599906],[-71.479385,41.85876799906],[-71.480034,41.85872699906],[-71.480139,41.86001099906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44005","name":"5","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.456497,41.83210799906],[-71.455154,41.83500299906],[-71.453629,41.83581899906],[-71.452911,41.83590699906],[-71.451157,41.83741799906],[-71.451607,41.83866099906],[-71.451706,41.83891299906],[-71.453819,41.84588999906],[-71.45211,41.84623299906],[-71.451668,41.84600099906],[-71.44976,41.85039899906],[-71.443985,41.85114699906],[-71.443214,41.85080299906],[-71.438942,41.84920099906],[-71.439713,41.84572599906],[-71.440102,41.84442899906],[-71.440498,41.84309399906],[-71.440552,41.84063299906],[-71.439728,41.83751699906],[-71.439171,41.83550599906],[-71.439117,41.83528099906],[-71.438538,41.83258399906],[-71.436523,41.83331699906],[-71.436409,41.83209599906],[-71.435585,41.83093599906],[-71.435326,41.83061999906],[-71.43515,41.83035299906],[-71.435013,41.83020399906],[-71.434868,41.82994499906],[-71.434723,41.82978099906],[-71.434212,41.82999399906],[-71.433304,41.82899899906],[-71.43177,41.82987199906],[-71.42836,41.83148999906],[-71.427765,41.83061999906],[-71.426605,41.82925799906],[-71.426568,41.82915499906],[-71.425421,41.82935299906],[-71.418152,41.82792499906],[-71.418839,41.82602299906],[-71.420158,41.82194099906],[-71.420057,41.82109699906],[-71.419351,41.81989499906],[-71.418335,41.81900799906],[-71.421898,41.81747799906],[-71.422333,41.81741299906],[-71.428406,41.81691699906],[-71.426933,41.81395699906],[-71.429588,41.81260299906],[-71.431061,41.81185899906],[-71.431168,41.81188999906],[-71.435684,41.81177099906],[-71.438164,41.81188599906],[-71.437604,41.81417499906],[-71.436916,41.81547399906],[-71.437042,41.81585699906],[-71.438858,41.81576899906],[-71.439534,41.81596199906],[-71.437881,41.81951099906],[-71.435852,41.82248699906],[-71.43364,41.82421899906],[-71.435493,41.82446299906],[-71.439476,41.82456199906],[-71.441566,41.82467999906],[-71.443398,41.82477999906],[-71.444626,41.82485199906],[-71.448631,41.82506599906],[-71.452202,41.82523699906],[-71.452171,41.82570299906],[-71.452255,41.82879599906],[-71.453835,41.82881899906],[-71.45385,41.82901399906],[-71.456131,41.82866299906],[-71.456291,41.83018899906],[-71.456497,41.83210799906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44006","name":"6","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.435684,41.81177099906],[-71.431168,41.81188999906],[-71.431061,41.81185899906],[-71.429588,41.81260299906],[-71.426933,41.81395699906],[-71.428406,41.81691699906],[-71.422333,41.81741299906],[-71.421898,41.81747799906],[-71.418335,41.81900799906],[-71.419351,41.81989499906],[-71.420057,41.82109699906],[-71.420158,41.82194099906],[-71.418839,41.82602299906],[-71.416008,41.82578299906],[-71.412132,41.82690399906],[-71.412659,41.82922399906],[-71.412903,41.82938599906],[-71.412148,41.83098299906],[-71.41229,41.83146799906],[-71.412733,41.83281899906],[-71.415021,41.83661599906],[-71.41188,41.83880199906],[-71.411179,41.84012599906],[-71.411186,41.84598499906],[-71.40873,41.84363599906],[-71.407982,41.84199099906],[-71.407837,41.84195299906],[-71.405052,41.84675999906],[-71.400734,41.84645499906],[-71.401894,41.84478799906],[-71.39959,41.84414699906],[-71.400856,41.84155699906],[-71.398987,41.84101899906],[-71.401176,41.83657799906],[-71.404625,41.83654799906],[-71.405441,41.83560599906],[-71.410065,41.83532699906],[-71.409904,41.83677299906],[-71.411819,41.83595299906],[-71.411562,41.83139399906],[-71.411507,41.83139399906],[-71.411504,41.83122899906],[-71.410915,41.82843499906],[-71.409804,41.82653899906],[-71.408635,41.82549599906],[-71.406813,41.82266899906],[-71.404888,41.81999699906],[-71.401719,41.81551399906],[-71.3978,41.80989999906],[-71.394984,41.81077299906],[-71.393499,41.80709999906],[-71.390099,41.80519999906],[-71.398949,41.79948799906],[-71.399691,41.79914199906],[-71.397926,41.79481099906],[-71.393974,41.79465899906],[-71.394111,41.79385499906],[-71.393097,41.78989399906],[-71.392715,41.78872299906],[-71.395714,41.78816999906],[-71.398766,41.78758999906],[-71.40226,41.78694199906],[-71.402222,41.78671299906],[-71.404404,41.78930299906],[-71.40625,41.79142399906],[-71.408127,41.79293799906],[-71.409447,41.79399999906],[-71.412117,41.79615799906],[-71.414665,41.79819899906],[-71.415466,41.79885099906],[-71.417419,41.80043399906],[-71.417435,41.80044899906],[-71.418129,41.80114399906],[-71.418907,41.80297499906],[-71.41935,41.80441699906],[-71.420013,41.80647699906],[-71.420052,41.80661799906],[-71.420242,41.80724699906],[-71.424858,41.80717499906],[-71.424866,41.80710199906],[-71.427864,41.80723999906],[-71.42791,41.80849099906],[-71.428162,41.80864299906],[-71.433105,41.80997099906],[-71.435318,41.81067299906],[-71.435463,41.81106899906],[-71.435684,41.81177099906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44007","name":"7","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.482033,41.81168699906],[-71.478249,41.81167999906],[-71.472168,41.81394999906],[-71.473503,41.81569699906],[-71.472023,41.81588699906],[-71.472481,41.81794399906],[-71.46965,41.81887599906],[-71.470031,41.81982799906],[-71.470877,41.82194399906],[-71.471077,41.82238399906],[-71.471306,41.82413899906],[-71.465216,41.82460399906],[-71.462423,41.82468699906],[-71.462432,41.82741299906],[-71.464769,41.83104799906],[-71.46759,41.83149099906],[-71.470444,41.83291199906],[-71.472432,41.83418099906],[-71.472459,41.83698099906],[-71.468742,41.83925999906],[-71.46456,41.84206599906],[-71.460292,41.84495699906],[-71.453819,41.84588999906],[-71.451706,41.83891299906],[-71.451607,41.83866099906],[-71.451157,41.83741799906],[-71.452911,41.83590699906],[-71.453629,41.83581899906],[-71.455154,41.83500299906],[-71.456497,41.83210799906],[-71.456291,41.83018899906],[-71.456131,41.82866299906],[-71.45385,41.82901399906],[-71.453835,41.82881899906],[-71.452255,41.82879599906],[-71.452171,41.82570299906],[-71.452202,41.82523699906],[-71.448631,41.82506599906],[-71.444626,41.82485199906],[-71.443398,41.82477999906],[-71.441566,41.82467999906],[-71.439476,41.82456199906],[-71.435493,41.82446299906],[-71.43364,41.82421899906],[-71.435852,41.82248699906],[-71.437881,41.81951099906],[-71.439534,41.81596199906],[-71.44001,41.81381599906],[-71.444735,41.81439799906],[-71.446163,41.81525999906],[-71.448555,41.81713499906],[-71.449898,41.81726799906],[-71.453804,41.81764999906],[-71.455315,41.81794699906],[-71.45591,41.81610899906],[-71.45578,41.81525799906],[-71.453888,41.81542999906],[-71.453522,41.81344999906],[-71.452866,41.81352599906],[-71.45079,41.81365999906],[-71.449944,41.81191999906],[-71.449348,41.81063099906],[-71.447533,41.80661399906],[-71.45023,41.80636999906],[-71.452314,41.80613299906],[-71.457703,41.80556899906],[-71.461882,41.80509899906],[-71.463665,41.80504599906],[-71.464583,41.80499099906],[-71.46492,41.80587399906],[-71.467072,41.80446999906],[-71.468956,41.80238299906],[-71.472847,41.80165099906],[-71.474373,41.80127299906],[-71.475761,41.80023999906],[-71.478017,41.80047899906],[-71.478553,41.80130699906],[-71.479416,41.80517999906],[-71.480186,41.80939099906],[-71.482033,41.81168699906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44008","name":"8","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.38774,41.87879999906],[-71.386391,41.87951999906],[-71.385056,41.87988999906],[-71.381807,41.87984799906],[-71.380991,41.88332399906],[-71.381008,41.88406699906],[-71.380219,41.88792999906],[-71.381824,41.88836999906],[-71.383093,41.88986999906],[-71.381638,41.89269999906],[-71.38152935439,41.893225767],[-71.3766,41.89399899906],[-71.37649639772,41.8940137941],[-71.37635234406,41.89403436585],[-71.373799,41.89439899906],[-71.37119032656,41.89458533288],[-71.370999,41.89459899906],[-71.365399,41.89529899906],[-71.364699,41.89539899906],[-71.362499,41.89559899906],[-71.354699,41.89649899906],[-71.35451882563,41.8965170165],[-71.352699,41.89669899906],[-71.3490536354,41.89714161886],[-71.34587490942,41.89752757945],[-71.33976318964,41.89826966384],[-71.33876249372,41.89839116824],[-71.338698,41.89839899906],[-71.33917771698,41.89456126321],[-71.339298,41.89359899906],[-71.339298,41.89339899906],[-71.33971575571,41.89011293266],[-71.33971887079,41.89008842943],[-71.340798,41.88159999906],[-71.3388638434,41.8761112147],[-71.33782886617,41.87317413774],[-71.33782668207,41.87316793965],[-71.333997,41.86229999906],[-71.33449398868,41.86123948182],[-71.334653,41.86131399906],[-71.337776,41.86091699906],[-71.338142,41.86143599906],[-71.339221,41.86382199906],[-71.339856,41.86416999906],[-71.340586,41.86585999906],[-71.354413,41.86644799906],[-71.354378,41.86975499906],[-71.352562,41.86967099906],[-71.352347,41.87137299906],[-71.349739,41.87159699906],[-71.349701,41.87323799906],[-71.349663,41.87534299906],[-71.353256,41.87534299906],[-71.354301,41.87536999906],[-71.354294,41.87604099906],[-71.354263,41.87839899906],[-71.357353,41.87900499906],[-71.361122,41.87975899906],[-71.362236,41.87997099906],[-71.364915,41.88048699906],[-71.365471,41.88240699906],[-71.367027,41.88522699906],[-71.370224,41.88490699906],[-71.370834,41.88466299906],[-71.371452,41.88426399906],[-71.372482,41.88137099906],[-71.372803,41.87969599906],[-71.372841,41.87898299906],[-71.373024,41.87771999906],[-71.379539,41.87659499906],[-71.380241,41.87512199906],[-71.381088,41.87439299906],[-71.381973,41.87393999906],[-71.384699,41.87342999906],[-71.385323,41.87333899906],[-71.387611,41.87313799906],[-71.387581,41.87350499906],[-71.387337,41.87571299906],[-71.387238,41.87810499906],[-71.38774,41.87879999906]]]]}}},{"type":"SLDL","affgeoid":"610U800US44009","name":"9","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.534286,41.73017099906],[-71.525348,41.73032799906],[-71.519928,41.73044299906],[-71.519413,41.73046899906],[-71.516861,41.73060799906],[-71.497849,41.73114999906],[-71.498739,41.72784399906],[-71.498331,41.72688699906],[-71.496973,41.72611699906],[-71.496323,41.72377599906],[-71.497146,41.72192499906],[-71.491562,41.71957399906],[-71.492892,41.71782599906],[-71.497116,41.71316699906],[-71.500253,41.71182299906],[-71.500786,41.71160599906],[-71.502365,41.71147199906],[-71.505188,41.71130699906],[-71.506691,41.70948199906],[-71.511904,41.70722999906],[-71.512764,41.70667499906],[-71.513336,41.70569399906],[-71.518913,41.69589899906],[-71.515419,41.69603899906],[-71.511574,41.69608699906],[-71.506142,41.69646699906],[-71.501679,41.69647399906],[-71.50103,41.68758999906],[-71.500723,41.68501599906],[-71.500062,41.67948099906],[-71.499836,41.67377599906],[-71.499451,41.66612199906],[-71.498932,41.66460699906],[-71.499225,41.66294799906],[-71.533379,41.66215599906],[-71.533182,41.67208599906],[-71.532988,41.67977199906],[-71.532968,41.68021599906],[-71.532875,41.68192099906],[-71.533009,41.68849799906],[-71.533109,41.69532999906],[-71.533113,41.69558999906],[-71.533302,41.70094599906],[-71.53346,41.70538099906],[-71.533541,41.70845899906],[-71.533774,41.71372699906],[-71.533883,41.71767999906],[-71.534015,41.72114199906],[-71.534055,41.72220399906],[-71.534286,41.73017099906]]]]}}}] \ No newline at end of file diff --git a/data/stateLegisUpper.json b/data/stateLegisUpper.json new file mode 100644 index 0000000..1eca3b1 --- /dev/null +++ b/data/stateLegisUpper.json @@ -0,0 +1 @@ +[{"type":"SLDU","affgeoid":"610U800US44001","name":"1","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.440498,41.84309399906],[-71.440102,41.84442899906],[-71.439713,41.84572599906],[-71.438942,41.84920099906],[-71.437912,41.85210399906],[-71.437141,41.85275299906],[-71.43792,41.85327099906],[-71.436264,41.85488099906],[-71.432587,41.85451099906],[-71.431679,41.85439099906],[-71.428825,41.85367599906],[-71.426628,41.85308099906],[-71.429451,41.85922999906],[-71.429906,41.86125499906],[-71.422155,41.86026599906],[-71.417418,41.85966599906],[-71.411057,41.85891299906],[-71.409275,41.85660099906],[-71.405543,41.85667199906],[-71.409729,41.85231399906],[-71.410507,41.85110899906],[-71.411171,41.84894899906],[-71.411186,41.84598499906],[-71.411179,41.84012599906],[-71.41188,41.83880199906],[-71.415021,41.83661599906],[-71.412733,41.83281899906],[-71.41229,41.83146799906],[-71.412148,41.83098299906],[-71.412903,41.82938599906],[-71.412659,41.82922399906],[-71.412132,41.82690399906],[-71.416008,41.82578299906],[-71.418839,41.82602299906],[-71.418152,41.82792499906],[-71.425421,41.82935299906],[-71.426568,41.82915499906],[-71.426605,41.82925799906],[-71.427765,41.83061999906],[-71.42836,41.83148999906],[-71.43177,41.82987199906],[-71.433304,41.82899899906],[-71.434212,41.82999399906],[-71.434723,41.82978099906],[-71.434868,41.82994499906],[-71.435013,41.83020399906],[-71.43515,41.83035299906],[-71.435326,41.83061999906],[-71.435585,41.83093599906],[-71.436409,41.83209599906],[-71.436523,41.83331699906],[-71.438538,41.83258399906],[-71.439117,41.83528099906],[-71.439171,41.83550599906],[-71.439728,41.83751699906],[-71.440552,41.84063299906],[-71.440498,41.84309399906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44010","name":"10","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.2167439754,41.62558690738],[-71.214127,41.63814199906],[-71.21392957528,41.63910299906],[-71.211822,41.63910299906],[-71.210871,41.64230099906],[-71.208019,41.65313499906],[-71.19564,41.67508999906],[-71.19439,41.67480199906],[-71.191178,41.67421599906],[-71.191175,41.67429199906],[-71.18433318989,41.67305306734],[-71.18432990614,41.67305247271],[-71.18129,41.67250199906],[-71.17599,41.67140199906],[-71.17608658195,41.66860112258],[-71.17609,41.66850199906],[-71.17609,41.66810199906],[-71.1621482835,41.66557872564],[-71.153989,41.66410199906],[-71.15358861219,41.66403754447],[-71.14587,41.66279499906],[-71.135188,41.66050199906],[-71.134688,41.66050199906],[-71.132888,41.66010199906],[-71.13267,41.65874399906],[-71.134478,41.64126199906],[-71.134484,41.64119799906],[-71.13470117132,41.63888992245],[-71.138771,41.63896699906],[-71.140899,41.63998999906],[-71.145843,41.64032099906],[-71.145797,41.63938499906],[-71.151687,41.63967999906],[-71.151954,41.63724299906],[-71.150077,41.63566599906],[-71.150367,41.63345399906],[-71.149192,41.63413399906],[-71.147972,41.63225199906],[-71.149749,41.63199799906],[-71.149925,41.62850499906],[-71.152153,41.62722899906],[-71.155128,41.62893799906],[-71.157974,41.63252799906],[-71.161069,41.63275999906],[-71.170573,41.64795299906],[-71.1734,41.65112299906],[-71.179328,41.64368899906],[-71.181663,41.64191599906],[-71.184371,41.64113499906],[-71.187423,41.64146899906],[-71.188224,41.63210499906],[-71.188171,41.63179899906],[-71.186515,41.62962899906],[-71.183227,41.62511599906],[-71.181266,41.62313999906],[-71.184608,41.62163599906],[-71.192581,41.61893999906],[-71.198158,41.61526199906],[-71.201148,41.61685299906],[-71.204911,41.61799199906],[-71.206192,41.61835899906],[-71.207176,41.61755399906],[-71.207628,41.61757099906],[-71.207962,41.61818899906],[-71.21211845546,41.61856440794],[-71.211837,41.62352899906],[-71.215308,41.62549099906],[-71.2167439754,41.62558690738]],[[-71.292854,41.71175899906],[-71.289294,41.71600099906],[-71.287604,41.72294899906],[-71.287478,41.72380299906],[-71.287294,41.72850099906],[-71.289494,41.73260099906],[-71.2898,41.73380699906],[-71.289337,41.73742699906],[-71.289002,41.73895899906],[-71.286593,41.74240099906],[-71.28440177169,41.76201027988],[-71.261392,41.75230099906],[-71.25474299447,41.74471835744],[-71.25213074575,41.74173930353],[-71.24533260386,41.73398658421],[-71.24524649557,41.73388838481],[-71.22623673166,41.71220931921],[-71.225791,41.71170099906],[-71.224798,41.71049799906],[-71.227875,41.70549799906],[-71.232975,41.70195299906],[-71.240991,41.69774399906],[-71.243671,41.69840399906],[-71.24581,41.69716199906],[-71.245335,41.69485499906],[-71.242482,41.68793299906],[-71.2377165786,41.68174099906],[-71.260205,41.67898499906],[-71.260368,41.67973899906],[-71.264931,41.67874399906],[-71.267761,41.67804899906],[-71.268216,41.67913799906],[-71.269814,41.68092199906],[-71.270332,41.68681499906],[-71.262161,41.68769299906],[-71.263628,41.69435199906],[-71.264702,41.69942699906],[-71.265945,41.70544199906],[-71.28006,41.70410399906],[-71.280524,41.71105899906],[-71.291377,41.70954999906],[-71.294039,41.71027999906],[-71.292854,41.71175899906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44011","name":"11","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.301515,41.58565799906],[-71.298562,41.58492199906],[-71.298,41.58313399906],[-71.297719,41.58176699906],[-71.297156,41.57976799906],[-71.299125,41.57976799906],[-71.300812,41.58060999906],[-71.301234,41.58302899906],[-71.301515,41.58565799906]],[[-71.288017,41.64557499906],[-71.286471,41.64757099906],[-71.281571,41.64820699906],[-71.278171,41.64730899906],[-71.276634,41.64364899906],[-71.276347,41.64053099906],[-71.272692,41.63853499906],[-71.272129,41.63706399906],[-71.277045,41.63803099906],[-71.283791,41.63779699906],[-71.285346,41.63685299906],[-71.285908,41.63800899906],[-71.285344,41.64037899906],[-71.288158,41.64294799906],[-71.288017,41.64557499906]],[[-71.353819,41.64746599906],[-71.352835,41.64925199906],[-71.350304,41.64904199906],[-71.348898,41.65124799906],[-71.347633,41.65282399906],[-71.346367,41.65334899906],[-71.344118,41.65282399906],[-71.343274,41.65376899906],[-71.343836,41.65486099906],[-71.345946,41.65534499906],[-71.350023,41.65713099906],[-71.35157,41.65860199906],[-71.351007,41.65975699906],[-71.348336,41.66122799906],[-71.34693,41.66332899906],[-71.348898,41.66532399906],[-71.344821,41.66700499906],[-71.344258,41.66406399906],[-71.344021,41.66149499906],[-71.33765,41.65797199906],[-71.337515,41.65704899906],[-71.339337,41.65502999906],[-71.338072,41.65082799906],[-71.334979,41.64746599906],[-71.332448,41.64378899906],[-71.333432,41.64179199906],[-71.336525,41.64189699906],[-71.334979,41.64420899906],[-71.335682,41.64578499906],[-71.337088,41.64672999906],[-71.338705,41.64573499906],[-71.342645,41.64423699906],[-71.34468,41.64252799906],[-71.343666,41.63989999906],[-71.340603,41.63969099906],[-71.339056,41.63706399906],[-71.336103,41.63622299906],[-71.334697,41.63443699906],[-71.330711,41.63299199906],[-71.326824,41.63170399906],[-71.317122,41.63138899906],[-71.315247,41.62995199906],[-71.314029,41.62792099906],[-71.308123,41.62623899906],[-71.307321,41.62401699906],[-71.304046,41.61877699906],[-71.303526,41.60963899906],[-71.304327,41.60794899906],[-71.30264,41.60553099906],[-71.30489,41.60447999906],[-71.306093,41.60134299906],[-71.307561,41.59911799906],[-71.307773,41.59740899906],[-71.309517,41.59485299906],[-71.313466,41.58797199906],[-71.315716,41.58450099906],[-71.3167,41.58313399906],[-71.321612,41.58097899906],[-71.326103,41.57858299906],[-71.3312,41.58031799906],[-71.335949,41.58589799906],[-71.337048,41.59468799906],[-71.333751,41.60585899906],[-71.331182,41.60689799906],[-71.329559,41.60909699906],[-71.330057,41.61110299906],[-71.326609,41.61611399906],[-71.325558,41.62413699906],[-71.327386,41.62634399906],[-71.328841,41.62620199906],[-71.333994,41.62928699906],[-71.337369,41.63128399906],[-71.344961,41.63233499906],[-71.347352,41.63128399906],[-71.350726,41.63391099906],[-71.352248,41.63892799906],[-71.353257,41.64084599906],[-71.352976,41.64473399906],[-71.353819,41.64746599906]],[[-71.296673,41.56712399906],[-71.294363,41.57141599906],[-71.288376,41.57327399906],[-71.285142,41.57712699906],[-71.284076,41.57939299906],[-71.28574,41.58277099906],[-71.289073,41.58270599906],[-71.285635,41.59164199906],[-71.285265,41.59236999906],[-71.28065,41.59285399906],[-71.273445,41.60698999906],[-71.272412,41.61504099906],[-71.275234,41.61944399906],[-71.271862,41.62398599906],[-71.264824,41.62524699906],[-71.261021,41.62737899906],[-71.258879,41.63322999906],[-71.251082,41.63877999906],[-71.246285,41.63981399906],[-71.242482,41.63839299906],[-71.23654,41.63839299906],[-71.233234,41.64022999906],[-71.232262,41.64336599906],[-71.225369,41.64709599906],[-71.223706,41.65064799906],[-71.22228,41.65419999906],[-71.220331,41.65557199906],[-71.21919,41.65366699906],[-71.217288,41.64620799906],[-71.217051,41.64283399906],[-71.216575,41.63910299906],[-71.21392957528,41.63910299906],[-71.214127,41.63814199906],[-71.2167439754,41.62558690738],[-71.218018,41.62567199906],[-71.219336,41.62548199906],[-71.220074,41.62493999906],[-71.219972,41.62394399906],[-71.221005,41.62350199906],[-71.224126,41.62288699906],[-71.236487,41.62136799906],[-71.238792,41.62059299906],[-71.240709,41.61922499906],[-71.241056,41.60694499906],[-71.241532,41.60463399906],[-71.2436,41.58750799906],[-71.237788,41.57759499906],[-71.234877,41.57654799906],[-71.23613,41.57476699906],[-71.236259,41.56499299906],[-71.238204,41.55876499906],[-71.237016,41.55485199906],[-71.233844,41.55378999906],[-71.233688,41.55236199906],[-71.234877,41.54916099906],[-71.236523,41.54489099906],[-71.234877,41.54168899906],[-71.236642,41.53585199906],[-71.234775,41.53253799906],[-71.228935,41.53030299906],[-71.227989,41.52829699906],[-71.229444,41.52154399906],[-71.2334466872,41.51407038744],[-71.265724,41.53817999906],[-71.265663,41.53826899906],[-71.280622,41.54697299906],[-71.290753,41.55422099906],[-71.300256,41.56100799906],[-71.30160652206,41.5620349569],[-71.296673,41.56712399906]],[[-71.372238,41.59985399906],[-71.369426,41.60206199906],[-71.36788,41.60395399906],[-71.367317,41.60595199906],[-71.365489,41.60668799906],[-71.36338,41.60668799906],[-71.363943,41.60542599906],[-71.36338,41.60353399906],[-71.364786,41.60143099906],[-71.369426,41.59817199906],[-71.371676,41.59732999906],[-71.373363,41.59743599906],[-71.372238,41.59985399906]],[[-71.367036,41.66070299906],[-71.364786,41.66049299906],[-71.362115,41.66017799906],[-71.360709,41.66112299906],[-71.354663,41.65975699906],[-71.353398,41.65786599906],[-71.354241,41.65608099906],[-71.355507,41.65387499906],[-71.35635,41.65208899906],[-71.358178,41.65124799906],[-71.360006,41.64988199906],[-71.362537,41.65114299906],[-71.364083,41.65587099906],[-71.364646,41.65755099906],[-71.366333,41.65891699906],[-71.367036,41.66070299906]],[[-71.27916837403,41.66978776462],[-71.276535,41.67035499906],[-71.278679,41.67630199906],[-71.278717,41.67657999906],[-71.278946,41.68581599906],[-71.270332,41.68681499906],[-71.269814,41.68092199906],[-71.268216,41.67913799906],[-71.267761,41.67804899906],[-71.264931,41.67874399906],[-71.260368,41.67973899906],[-71.260205,41.67898499906],[-71.2377165786,41.68174099906],[-71.237635,41.68163499906],[-71.234639,41.67745999906],[-71.235352,41.67213399906],[-71.236778,41.66804999906],[-71.238442,41.66556499906],[-71.240343,41.66556499906],[-71.244384,41.66911599906],[-71.250326,41.66503199906],[-71.253416,41.66059299906],[-71.254604,41.65224699906],[-71.256743,41.65029299906],[-71.257219,41.64674099906],[-71.25956,41.64259499906],[-71.263161,41.64301099906],[-71.267055,41.64494499906],[-71.270075,41.65243899906],[-71.26918,41.65489999906],[-71.267676,41.65739699906],[-71.269103,41.66005999906],[-71.272192,41.66130299906],[-71.277659,41.66627499906],[-71.27916837403,41.66978776462]]]]}}},{"type":"SLDU","affgeoid":"610U800US44012","name":"12","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.312696,41.53651399906],[-71.308082,41.53937699906],[-71.308082,41.54293499906],[-71.311129,41.54405199906],[-71.310533,41.54691999906],[-71.303652,41.55992499906],[-71.30160652206,41.5620349569],[-71.300256,41.56100799906],[-71.290753,41.55422099906],[-71.280622,41.54697299906],[-71.265663,41.53826899906],[-71.265724,41.53817999906],[-71.2334466872,41.51407038744],[-71.233456,41.51405299906],[-71.240737,41.50555099906],[-71.24074,41.50170399906],[-71.246666,41.49426499906],[-71.247992,41.49028999906],[-71.246855,41.48741499906],[-71.24426,41.48573699906],[-71.242033,41.48534399906],[-71.238112,41.48605699906],[-71.237437,41.48571099906],[-71.237615,41.48227599906],[-71.238326,41.48075899906],[-71.239676,41.48025299906],[-71.240428,41.47614699906],[-71.242285,41.47523899906],[-71.243728,41.47520399906],[-71.244895,41.47383499906],[-71.246427,41.47294799906],[-71.247366,41.47299599906],[-71.247715,41.47368999906],[-71.24524,41.48028499906],[-71.245859,41.48163699906],[-71.252079,41.48592399906],[-71.258192,41.48792099906],[-71.264793,41.48890199906],[-71.26764,41.48821399906],[-71.26886,41.48469799906],[-71.274861,41.47984599906],[-71.27664,41.48003799906],[-71.282314,41.48828599906],[-71.285486,41.48900399906],[-71.28567255988,41.48896754263],[-71.287138,41.49054899906],[-71.291442,41.48938899906],[-71.296257,41.48683399906],[-71.296745,41.48711199906],[-71.297943,41.48893499906],[-71.298973,41.49391699906],[-71.297886,41.49424299906],[-71.301437,41.49379599906],[-71.303314,41.49352899906],[-71.304092,41.49442699906],[-71.305168,41.49339699906],[-71.308824,41.49514199906],[-71.307685,41.49747999906],[-71.307121,41.49862699906],[-71.30516,41.49919299906],[-71.303008,41.49978999906],[-71.302093,41.50001499906],[-71.301666,41.50348699906],[-71.302833,41.50409799906],[-71.301521,41.50594899906],[-71.302421,41.50699799906],[-71.303558,41.50857899906],[-71.306441,41.51271599906],[-71.311141,41.51939599906],[-71.312237,41.52085299906],[-71.31266633346,41.52142511034],[-71.311251,41.52262099906],[-71.311346,41.52422199906],[-71.314151,41.53144599906],[-71.312696,41.53651399906]],[[-71.220998,41.56087699906],[-71.219933,41.56248299906],[-71.218714,41.56267799906],[-71.216863,41.56181899906],[-71.211415,41.55821899906],[-71.209823,41.55870899906],[-71.209563,41.56029199906],[-71.210207,41.56303899906],[-71.20865,41.57102799906],[-71.208352,41.58117199906],[-71.214436,41.58365899906],[-71.214674,41.58597099906],[-71.209445,41.59059299906],[-71.209207,41.59396999906],[-71.205404,41.59432499906],[-71.203741,41.59610299906],[-71.204454,41.59841399906],[-71.20778,41.60065999906],[-71.212656,41.61007199906],[-71.21211845546,41.61856440794],[-71.207962,41.61818899906],[-71.207628,41.61757099906],[-71.207176,41.61755399906],[-71.206192,41.61835899906],[-71.204911,41.61799199906],[-71.201148,41.61685299906],[-71.198158,41.61526199906],[-71.192581,41.61893999906],[-71.184608,41.62163599906],[-71.181266,41.62313999906],[-71.183227,41.62511599906],[-71.186515,41.62962899906],[-71.188171,41.63179899906],[-71.188224,41.63210499906],[-71.187423,41.64146899906],[-71.184371,41.64113499906],[-71.181663,41.64191599906],[-71.179328,41.64368899906],[-71.1734,41.65112299906],[-71.170573,41.64795299906],[-71.161069,41.63275999906],[-71.157974,41.63252799906],[-71.155128,41.62893799906],[-71.152153,41.62722899906],[-71.149925,41.62850499906],[-71.149749,41.63199799906],[-71.147972,41.63225199906],[-71.149192,41.63413399906],[-71.150367,41.63345399906],[-71.150077,41.63566599906],[-71.151954,41.63724299906],[-71.151687,41.63967999906],[-71.145797,41.63938499906],[-71.145843,41.64032099906],[-71.140899,41.63998999906],[-71.138771,41.63896699906],[-71.13470117132,41.63888992245],[-71.13567574949,41.62853219632],[-71.135688,41.62840199906],[-71.140468,41.62389299906],[-71.141509,41.61607599906],[-71.14091,41.60740499906],[-71.14086788925,41.60710381569],[-71.140588,41.60510199906],[-71.13854907,41.60342857493],[-71.137492,41.60256099906],[-71.13669155952,41.60138323143],[-71.131618,41.59391799906],[-71.13149152643,41.59325256623],[-71.131312,41.59230799906],[-71.12761807958,41.56323081037],[-71.12659522283,41.5551792567],[-71.1224,41.52215599906],[-71.12057,41.49744799906],[-71.129229,41.49628399906],[-71.136867,41.49394199906],[-71.141093,41.48993699906],[-71.140224,41.48585499906],[-71.139087,41.48344499906],[-71.142439,41.48121499906],[-71.145747,41.48117599906],[-71.14646,41.47850499906],[-71.148905,41.47705599906],[-71.150859,41.47581899906],[-71.154394,41.47669199906],[-71.159274,41.47598499906],[-71.162086,41.47400899906],[-71.163097,41.47173799906],[-71.167345,41.47140499906],[-71.170233,41.46838099906],[-71.170131,41.46397399906],[-71.168648,41.46145199906],[-71.170444,41.46062099906],[-71.173619,41.46142199906],[-71.175535,41.45985399906],[-71.177916,41.46080999906],[-71.180544,41.45974199906],[-71.186279,41.46028499906],[-71.193979,41.45639599906],[-71.194967,41.45903699906],[-71.196857,41.46111599906],[-71.196607,41.46475599906],[-71.192354,41.46656399906],[-71.192459,41.47044299906],[-71.191924,41.47436299906],[-71.190016,41.47827499906],[-71.190167,41.48428499906],[-71.19939,41.49176899906],[-71.199692,41.49551099906],[-71.202262,41.49838399906],[-71.206382,41.49921499906],[-71.200788,41.51437099906],[-71.202034,41.51706499906],[-71.204773,41.51910399906],[-71.204796,41.52334399906],[-71.207306,41.52638799906],[-71.208257,41.52887999906],[-71.204929,41.54079999906],[-71.20683,41.54346799906],[-71.215995,41.54717799906],[-71.215953,41.54846399906],[-71.215343,41.54929699906],[-71.215701,41.55213099906],[-71.215015,41.55383599906],[-71.213532,41.55474099906],[-71.213778,41.55679499906],[-71.218739,41.55929599906],[-71.220276,41.55958699906],[-71.220998,41.56087699906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44013","name":"13","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.343126,41.49729199906],[-71.341267,41.50049399906],[-71.33978,41.49882299906],[-71.338665,41.49617899906],[-71.338665,41.49492599906],[-71.343126,41.49492599906],[-71.343126,41.49729199906]],[[-71.328827,41.49233399906],[-71.326957,41.49311599906],[-71.325657,41.49005399906],[-71.325365,41.48760099906],[-71.3264,41.48378899906],[-71.327822,41.48298499906],[-71.329002,41.48712999906],[-71.328827,41.49233399906]],[[-71.362911,41.46174599906],[-71.361185,41.46461999906],[-71.359559,41.46422899906],[-71.358273,41.46443099906],[-71.357206,41.46612399906],[-71.352766,41.46924499906],[-71.3479,41.47058999906],[-71.341833,41.47601199906],[-71.336442,41.48198499906],[-71.33438,41.47820399906],[-71.336366,41.47173799906],[-71.335992,41.46964699906],[-71.323531,41.47583399906],[-71.316519,41.47755999906],[-71.318065,41.48776399906],[-71.321154,41.48811999906],[-71.322818,41.49114699906],[-71.323125,41.50308799906],[-71.327804,41.50425799906],[-71.330694,41.50769899906],[-71.329315,41.51382899906],[-71.326035,41.51430999906],[-71.325451,41.51727999906],[-71.328031,41.51884799906],[-71.327128,41.52158899906],[-71.323991,41.52240699906],[-71.320901,41.51948899906],[-71.314579,41.51980899906],[-71.31266633346,41.52142511034],[-71.312237,41.52085299906],[-71.311141,41.51939599906],[-71.306441,41.51271599906],[-71.303558,41.50857899906],[-71.302421,41.50699799906],[-71.301521,41.50594899906],[-71.302833,41.50409799906],[-71.301666,41.50348699906],[-71.302093,41.50001499906],[-71.303008,41.49978999906],[-71.30516,41.49919299906],[-71.307121,41.49862699906],[-71.307685,41.49747999906],[-71.308824,41.49514199906],[-71.305168,41.49339699906],[-71.304092,41.49442699906],[-71.303314,41.49352899906],[-71.301437,41.49379599906],[-71.297886,41.49424299906],[-71.298973,41.49391699906],[-71.297943,41.48893499906],[-71.296745,41.48711199906],[-71.296257,41.48683399906],[-71.291442,41.48938899906],[-71.287138,41.49054899906],[-71.28567255988,41.48896754263],[-71.29133,41.48786199906],[-71.296918,41.48552099906],[-71.297392,41.48478999906],[-71.296516,41.47983099906],[-71.297393,41.47344299906],[-71.296851,41.46913099906],[-71.298182,41.46749199906],[-71.301414,41.46727799906],[-71.303981,41.46371599906],[-71.302762,41.45974799906],[-71.303052,41.45908299906],[-71.303911,41.45867999906],[-71.304394,41.45450199906],[-71.307639,41.45243499906],[-71.310168,41.45112399906],[-71.312049,41.45138199906],[-71.311918,41.45288499906],[-71.310983,41.45510599906],[-71.312558,41.45649799906],[-71.314711,41.45638899906],[-71.316908,41.45478799906],[-71.31848,41.45572399906],[-71.319485,41.45838499906],[-71.320326,41.45978299906],[-71.323751,41.46012899906],[-71.326909,41.45894199906],[-71.327536,41.45707199906],[-71.331466,41.45280299906],[-71.334764,41.44951599906],[-71.337483,41.44931699906],[-71.338036,41.44952799906],[-71.337544,41.45097899906],[-71.337933,41.45169299906],[-71.339006,41.45190199906],[-71.339697,41.45257699906],[-71.344177,41.45402799906],[-71.353609,41.44975099906],[-71.356163,41.45053799906],[-71.357245,41.45614599906],[-71.358447,41.45743899906],[-71.358795,41.45966099906],[-71.360038,41.46048599906],[-71.36189,41.46019599906],[-71.362911,41.46174599906]],[[-71.345913,41.53694999906],[-71.344984,41.53792299906],[-71.343126,41.53583699906],[-71.342382,41.53249799906],[-71.342568,41.52901999906],[-71.344426,41.52915899906],[-71.345913,41.52957699906],[-71.346285,41.53416799906],[-71.345913,41.53694999906]],[[-71.327568,41.45286799906],[-71.326348,41.45470999906],[-71.324955,41.45468999906],[-71.324296,41.45392399906],[-71.325649,41.45210599906],[-71.32689,41.45195999906],[-71.327568,41.45286799906]],[[-71.405096,41.49821399906],[-71.402966,41.50299899906],[-71.403626,41.50456599906],[-71.401407,41.50626699906],[-71.399621,41.50661699906],[-71.397391,41.50619999906],[-71.396276,41.50369499906],[-71.400349,41.50010599906],[-71.401791,41.50009499906],[-71.403238,41.49758299906],[-71.404475,41.49732799906],[-71.405096,41.49821399906]],[[-71.40056,41.46093999906],[-71.399063,41.46387799906],[-71.395904,41.46471299906],[-71.394417,41.46721999906],[-71.39609,41.47139699906],[-71.397577,41.47376399906],[-71.396648,41.47891599906],[-71.398134,41.48490299906],[-71.397507,41.48697899906],[-71.399993,41.48880099906],[-71.40055,41.49033199906],[-71.399435,41.49297699906],[-71.396833,41.49325499906],[-71.395927,41.49221499906],[-71.392373,41.49186299906],[-71.388846,41.49285899906],[-71.386511,41.49307099906],[-71.38401,41.49381199906],[-71.38494,41.49701399906],[-71.383453,41.50104999906],[-71.378914,41.50494799906],[-71.379179,41.50619999906],[-71.382996,41.50819999906],[-71.38494,41.51079199906],[-71.391005,41.51457799906],[-71.392559,41.51761099906],[-71.392137,41.52446799906],[-71.388842,41.53444599906],[-71.385683,41.53903599906],[-71.386613,41.54583199906],[-71.385497,41.54835499906],[-71.384478,41.55673599906],[-71.383734,41.55824099906],[-71.381409,41.55878599906],[-71.38132,41.56312299906],[-71.379021,41.56777199906],[-71.373618,41.57321399906],[-71.370194,41.57396299906],[-71.36356,41.57085999906],[-71.362825,41.56559899906],[-71.361907,41.56434599906],[-71.359868,41.55630799906],[-71.360405,41.54779199906],[-71.362267,41.54376599906],[-71.364683,41.54140099906],[-71.364869,41.53959299906],[-71.36394,41.53541999906],[-71.362639,41.53249799906],[-71.361338,41.52637699906],[-71.361561,41.52358699906],[-71.363382,41.51858499906],[-71.365426,41.51663699906],[-71.365612,41.51399299906],[-71.365233,41.51202599906],[-71.363382,41.51009699906],[-71.361152,41.51009699906],[-71.359851,41.51065299906],[-71.357621,41.50870499906],[-71.358922,41.50327699906],[-71.363175,41.50119099906],[-71.365984,41.49882299906],[-71.366541,41.49478699906],[-71.360867,41.48614799906],[-71.35948,41.48309299906],[-71.355949,41.48114399906],[-71.35409,41.48044799906],[-71.354315,41.47889099906],[-71.357064,41.47919499906],[-71.358736,41.47710599906],[-71.364239,41.47647599906],[-71.368214,41.47780199906],[-71.371745,41.47752399906],[-71.37286,41.47543499906],[-71.37509,41.47376399906],[-71.376763,41.47487799906],[-71.378249,41.47933399906],[-71.378249,41.48281499906],[-71.379179,41.48615599906],[-71.380665,41.48880099906],[-71.383453,41.48866199906],[-71.38624,41.48768699906],[-71.385311,41.48532099906],[-71.384702,41.48282199906],[-71.384754,41.47835899906],[-71.382152,41.47237199906],[-71.381594,41.46805499906],[-71.383586,41.46478199906],[-71.384505,41.46410799906],[-71.386798,41.46457399906],[-71.389028,41.46554899906],[-71.390143,41.46415599906],[-71.389284,41.46060499906],[-71.390275,41.45504299906],[-71.396037,41.45201599906],[-71.399568,41.44859599906],[-71.40078,41.45497499906],[-71.40056,41.46093999906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44014","name":"14","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.395258,41.81166899906],[-71.393528,41.81475599906],[-71.387083,41.81637199906],[-71.385572,41.81899599906],[-71.382797,41.82269499906],[-71.377434,41.82928799906],[-71.373587,41.83248599906],[-71.373099,41.83659999906],[-71.372996,41.83806499906],[-71.372247,41.84333699906],[-71.37226,41.84415699906],[-71.372334,41.85054799906],[-71.374526,41.85713599906],[-71.375021,41.85744899906],[-71.365795,41.85834099906],[-71.363744,41.85853999906],[-71.358688,41.85904599906],[-71.354507,41.85946699906],[-71.354477,41.84775499906],[-71.353867,41.84706099906],[-71.352039,41.84563599906],[-71.355453,41.84083299906],[-71.354973,41.84030199906],[-71.360012,41.83349099906],[-71.360435,41.83295099906],[-71.356369,41.83009699906],[-71.352745,41.82911299906],[-71.352692,41.82735099906],[-71.356075,41.82180799906],[-71.355748,41.81816399906],[-71.35675,41.81641399906],[-71.357658,41.81463999906],[-71.358475,41.81213799906],[-71.351357,41.81067999906],[-71.350037,41.80828499906],[-71.349998,41.80697599906],[-71.351189,41.80318199906],[-71.351982,41.79556699906],[-71.350403,41.79294999906],[-71.353636,41.79339799906],[-71.354156,41.79161399906],[-71.359513,41.79281599906],[-71.359547,41.79036199906],[-71.361158,41.79058899906],[-71.360437,41.78889999906],[-71.363392,41.78910899906],[-71.36454,41.78852099906],[-71.365067,41.79014599906],[-71.369682,41.78941299906],[-71.370652,41.78811699906],[-71.372002,41.78982299906],[-71.372711,41.78851799906],[-71.373308,41.79111699906],[-71.377299,41.79469999906],[-71.380799,41.79629999906],[-71.385199,41.80209999906],[-71.390099,41.80519999906],[-71.393499,41.80709999906],[-71.394984,41.81077299906],[-71.395258,41.81166899906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44015","name":"15","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.4219,41.87869499906],[-71.415553,41.87954699906],[-71.406403,41.88071599906],[-71.405004,41.88089399906],[-71.405365,41.87716299906],[-71.404884,41.87710599906],[-71.40387,41.87356599906],[-71.403152,41.87366499906],[-71.401512,41.87389399906],[-71.398926,41.87431299906],[-71.398025,41.87447599906],[-71.39312,41.87525199906],[-71.391235,41.87555899906],[-71.388596,41.87571699906],[-71.387337,41.87571299906],[-71.387581,41.87350499906],[-71.387611,41.87313799906],[-71.385323,41.87333899906],[-71.384699,41.87342999906],[-71.381973,41.87393999906],[-71.381088,41.87439299906],[-71.380938,41.87394199906],[-71.380341,41.87314599906],[-71.375862,41.86810699906],[-71.372581,41.86471899906],[-71.371479,41.86366999906],[-71.370329,41.86430799906],[-71.366298,41.86556499906],[-71.366226,41.86071799906],[-71.36834,41.86071399906],[-71.374451,41.86060699906],[-71.374276,41.85905099906],[-71.374907,41.85891899906],[-71.375021,41.85744899906],[-71.376699,41.85749999906],[-71.379003,41.85747799906],[-71.383719,41.85708599906],[-71.391101,41.85694499906],[-71.391449,41.85621999906],[-71.393143,41.85289799906],[-71.395187,41.84865199906],[-71.396057,41.84691199906],[-71.397545,41.84389899906],[-71.397621,41.84375399906],[-71.398987,41.84101899906],[-71.400856,41.84155699906],[-71.39959,41.84414699906],[-71.401894,41.84478799906],[-71.400734,41.84645499906],[-71.405052,41.84675999906],[-71.407837,41.84195299906],[-71.407982,41.84199099906],[-71.40873,41.84363599906],[-71.411186,41.84598499906],[-71.411171,41.84894899906],[-71.410507,41.85110899906],[-71.409729,41.85231399906],[-71.405543,41.85667199906],[-71.409275,41.85660099906],[-71.411057,41.85891299906],[-71.417418,41.85966599906],[-71.418624,41.86484899906],[-71.419594,41.86910999906],[-71.419876,41.86977399906],[-71.4219,41.87869499906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44016","name":"16","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.407055,41.89190999906],[-71.404691,41.89478399906],[-71.404568,41.89482399906],[-71.397243,41.89678199906],[-71.394296,41.89765199906],[-71.391739,41.89834299906],[-71.39006,41.89931899906],[-71.388268,41.89980499906],[-71.386348,41.89963599906],[-71.3817,41.89706199906],[-71.3817,41.89375174631],[-71.3817,41.89319899906],[-71.38152935439,41.893225767],[-71.381638,41.89269999906],[-71.383093,41.88986999906],[-71.381824,41.88836999906],[-71.380219,41.88792999906],[-71.381008,41.88406699906],[-71.380991,41.88332399906],[-71.381807,41.87984799906],[-71.385056,41.87988999906],[-71.386391,41.87951999906],[-71.38774,41.87879999906],[-71.387238,41.87810499906],[-71.387337,41.87571299906],[-71.388596,41.87571699906],[-71.391235,41.87555899906],[-71.39312,41.87525199906],[-71.398025,41.87447599906],[-71.398926,41.87431299906],[-71.401512,41.87389399906],[-71.403152,41.87366499906],[-71.40387,41.87356599906],[-71.404884,41.87710599906],[-71.405365,41.87716299906],[-71.405004,41.88089399906],[-71.403706,41.88105899906],[-71.405817,41.88723899906],[-71.406227,41.88849099906],[-71.407055,41.89190999906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44017","name":"17","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.597897,41.98587699906],[-71.596417,41.99054599906],[-71.596008,41.99299799906],[-71.59451,41.99501799906],[-71.592763,41.99434199906],[-71.590538,41.99485199906],[-71.586123,41.99471899906],[-71.583856,41.99562999906],[-71.580633,41.99898999906],[-71.578953,41.99914099906],[-71.580132,41.99986599906],[-71.579109,42.00032399906],[-71.577133,42.00100299906],[-71.56998,41.99967899906],[-71.564827,41.99692199906],[-71.56041,41.99826399906],[-71.55838,42.00059999906],[-71.556966,41.99928999906],[-71.538112,41.98445599906],[-71.535675,41.98561099906],[-71.533806,41.98955499906],[-71.531754,41.98957399906],[-71.531662,41.98955599906],[-71.528008,41.98840699906],[-71.522354,41.98565299906],[-71.518066,41.98369599906],[-71.515797,41.98327599906],[-71.515503,41.98317399906],[-71.515274,41.98306299906],[-71.515232,41.98310599906],[-71.515179,41.98307099906],[-71.50706,41.98187699906],[-71.491746,41.97961199906],[-71.487364,41.97908499906],[-71.486156,41.97822199906],[-71.478657,41.97714099906],[-71.474141,41.97262399906],[-71.469992,41.97110799906],[-71.46536,41.96938899906],[-71.464389,41.96809599906],[-71.465011,41.96599799906],[-71.462227,41.96057299906],[-71.461781,41.95741499906],[-71.457241,41.95656799906],[-71.455219,41.95563399906],[-71.452315,41.95310499906],[-71.450987,41.94991299906],[-71.442549,41.94740999906],[-71.439703,41.94377599906],[-71.438092,41.94262699906],[-71.433982,41.93821899906],[-71.430955,41.93463599906],[-71.430717,41.93339799906],[-71.431287,41.93054099906],[-71.430939,41.92698699906],[-71.428327,41.92354299906],[-71.425322,41.92246299906],[-71.4217,41.92214499906],[-71.419443,41.92062699906],[-71.418425,41.91881899906],[-71.416233,41.91780799906],[-71.408959,41.91386099906],[-71.407214,41.91184199906],[-71.405393,41.91099899906],[-71.403023,41.91139299906],[-71.402695,41.90962599906],[-71.404556,41.90932799906],[-71.405472,41.90696699906],[-71.407402,41.90527699906],[-71.407791,41.90560199906],[-71.408638,41.90817599906],[-71.414589,41.90625399906],[-71.413834,41.90361399906],[-71.414238,41.90298499906],[-71.415016,41.90201599906],[-71.417519,41.90104299906],[-71.416588,41.89961999906],[-71.413444,41.89637899906],[-71.411261,41.89515499906],[-71.410013,41.89340799906],[-71.407722,41.89310499906],[-71.407753,41.89120499906],[-71.407055,41.89190999906],[-71.406227,41.88849099906],[-71.405817,41.88723899906],[-71.403706,41.88105899906],[-71.405004,41.88089399906],[-71.406403,41.88071599906],[-71.415553,41.87954699906],[-71.4219,41.87869499906],[-71.433654,41.87720999906],[-71.431679,41.87340899906],[-71.431236,41.87115899906],[-71.434326,41.87043399906],[-71.437798,41.87063999906],[-71.441116,41.86875499906],[-71.440636,41.86760299906],[-71.442825,41.86761899906],[-71.44416,41.86746599906],[-71.444588,41.86947599906],[-71.445267,41.87049299906],[-71.44735,41.87063199906],[-71.448158,41.87327599906],[-71.449154,41.87524199906],[-71.455584,41.87442899906],[-71.463265,41.87352899906],[-71.464864,41.87572999906],[-71.465283,41.87873899906],[-71.468193,41.88278999906],[-71.467758,41.88820599906],[-71.466621,41.89104099906],[-71.468063,41.89585899906],[-71.465065,41.90421699906],[-71.465027,41.90547199906],[-71.466599,41.90589899906],[-71.470932,41.90897799906],[-71.472931,41.91175099906],[-71.479248,41.91537099906],[-71.481095,41.91477399906],[-71.482147,41.91768899906],[-71.482705,41.91900199906],[-71.4845,41.92498899906],[-71.489167,41.93846899906],[-71.490788,41.94324099906],[-71.555328,41.93687399906],[-71.590312,41.93366499906],[-71.596898,41.96612299906],[-71.600443,41.98302699906],[-71.597897,41.98587699906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44018","name":"18","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.381088,41.87439299906],[-71.380241,41.87512199906],[-71.379539,41.87659499906],[-71.373024,41.87771999906],[-71.372841,41.87898299906],[-71.372803,41.87969599906],[-71.372482,41.88137099906],[-71.371452,41.88426399906],[-71.370834,41.88466299906],[-71.370224,41.88490699906],[-71.367027,41.88522699906],[-71.365471,41.88240699906],[-71.364915,41.88048699906],[-71.362236,41.87997099906],[-71.361122,41.87975899906],[-71.357353,41.87900499906],[-71.354263,41.87839899906],[-71.354294,41.87604099906],[-71.354301,41.87536999906],[-71.353256,41.87534299906],[-71.349663,41.87534299906],[-71.349701,41.87323799906],[-71.349739,41.87159699906],[-71.352347,41.87137299906],[-71.352562,41.86967099906],[-71.354378,41.86975499906],[-71.354413,41.86644799906],[-71.340586,41.86585999906],[-71.339856,41.86416999906],[-71.339221,41.86382199906],[-71.338142,41.86143599906],[-71.337776,41.86091699906],[-71.334653,41.86131399906],[-71.33449398868,41.86123948182],[-71.34167342264,41.84591938741],[-71.342198,41.84479999906],[-71.341797,41.84369999906],[-71.34079565848,41.84245590809],[-71.335197,41.83549999906],[-71.33750452,41.83376935906],[-71.337597,41.83369999906],[-71.339597,41.83199999906],[-71.3428393693,41.82955292789],[-71.344897,41.82799999906],[-71.34588873174,41.82588717927],[-71.347197,41.82309999906],[-71.339197,41.80899999906],[-71.3390217069,41.80859098182],[-71.33900374314,41.8085490664],[-71.338897,41.80829999906],[-71.33927361176,41.80660524612],[-71.339297,41.80649999906],[-71.339297,41.80439999906],[-71.340797,41.80019999906],[-71.340697,41.79829999906],[-71.339297,41.79629999906],[-71.335797,41.79479999906],[-71.333896,41.79449999906],[-71.332196,41.79229999906],[-71.33106075427,41.79014694681],[-71.331861,41.78972499906],[-71.332637,41.78874699906],[-71.333,41.78863099906],[-71.33387,41.78651399906],[-71.347176,41.78643799906],[-71.351839,41.78506999906],[-71.353715,41.78287999906],[-71.353577,41.78253699906],[-71.354291,41.78240099906],[-71.357266,41.78052799906],[-71.356581,41.77879499906],[-71.35862,41.77590599906],[-71.356879,41.77515799906],[-71.35511,41.77445599906],[-71.353813,41.77291499906],[-71.353638,41.77186999906],[-71.353615,41.77119799906],[-71.350822,41.77057999906],[-71.349487,41.76847499906],[-71.34893,41.76710099906],[-71.348068,41.76328699906],[-71.34716,41.75966999906],[-71.350138,41.75973899906],[-71.353602,41.75884199906],[-71.359222,41.75797999906],[-71.359901,41.75807599906],[-71.36127091692,41.75761789117],[-71.361798,41.76066399906],[-71.36465,41.76474199906],[-71.369641,41.76456499906],[-71.366076,41.77112399906],[-71.366314,41.77520099906],[-71.365125,41.77750499906],[-71.367977,41.78069499906],[-71.370583,41.78087399906],[-71.371542,41.78335399906],[-71.37168533333,41.78338266573],[-71.369694,41.78305799906],[-71.371008,41.78669399906],[-71.370731,41.78709199906],[-71.372002,41.78982299906],[-71.370652,41.78811699906],[-71.369682,41.78941299906],[-71.365067,41.79014599906],[-71.36454,41.78852099906],[-71.363392,41.78910899906],[-71.360437,41.78889999906],[-71.361158,41.79058899906],[-71.359547,41.79036199906],[-71.359513,41.79281599906],[-71.354156,41.79161399906],[-71.353636,41.79339799906],[-71.350403,41.79294999906],[-71.351982,41.79556699906],[-71.351189,41.80318199906],[-71.349998,41.80697599906],[-71.350037,41.80828499906],[-71.351357,41.81067999906],[-71.358475,41.81213799906],[-71.357658,41.81463999906],[-71.35675,41.81641399906],[-71.355748,41.81816399906],[-71.356075,41.82180799906],[-71.352692,41.82735099906],[-71.352745,41.82911299906],[-71.356369,41.83009699906],[-71.360435,41.83295099906],[-71.360012,41.83349099906],[-71.354973,41.84030199906],[-71.355453,41.84083299906],[-71.352039,41.84563599906],[-71.353867,41.84706099906],[-71.354477,41.84775499906],[-71.354507,41.85946699906],[-71.358688,41.85904599906],[-71.363744,41.85853999906],[-71.365795,41.85834099906],[-71.375021,41.85744899906],[-71.374907,41.85891899906],[-71.374276,41.85905099906],[-71.374451,41.86060699906],[-71.36834,41.86071399906],[-71.366226,41.86071799906],[-71.366298,41.86556499906],[-71.370329,41.86430799906],[-71.371479,41.86366999906],[-71.372581,41.86471899906],[-71.375862,41.86810699906],[-71.380341,41.87314599906],[-71.380938,41.87394199906],[-71.381088,41.87439299906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44019","name":"19","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.453705,41.96155199906],[-71.45118,41.96294799906],[-71.445007,41.96396299906],[-71.446419,41.96647999906],[-71.447838,41.96767799906],[-71.444191,41.97100399906],[-71.442896,41.97158899906],[-71.442957,41.97205599906],[-71.444391,41.97404399906],[-71.449232,41.97866399906],[-71.445446,41.97873199906],[-71.441231,41.97853499906],[-71.435486,41.97753499906],[-71.433426,41.97749299906],[-71.429932,41.97853499906],[-71.424644,41.98119399906],[-71.42247,41.98197599906],[-71.416077,41.98249099906],[-71.410683,41.98282599906],[-71.40937,41.98276499906],[-71.411446,41.98589299906],[-71.413399,41.99067299906],[-71.415825,41.99587999906],[-71.418716,41.99899299906],[-71.419533,42.00175099906],[-71.418553,42.00604299906],[-71.415863,42.00755699906],[-71.414726,42.01151999906],[-71.415741,42.01583099906],[-71.41441861461,42.01835220665],[-71.381401,42.01879799906],[-71.38143704125,42.00002086862],[-71.3814657108,41.98508431905],[-71.38147025969,41.98271439138],[-71.38149197829,41.97139921783],[-71.381501,41.96669899906],[-71.381401,41.96479899906],[-71.38145768251,41.95286433955],[-71.38145769228,41.95286228256],[-71.38148189871,41.94776555229],[-71.3816,41.92289899906],[-71.3817,41.92269899906],[-71.3817,41.91557713774],[-71.3817,41.91481599906],[-71.3817,41.91465965229],[-71.3817,41.90359799906],[-71.3817,41.89706199906],[-71.386348,41.89963599906],[-71.388268,41.89980499906],[-71.39006,41.89931899906],[-71.391739,41.89834299906],[-71.394296,41.89765199906],[-71.397243,41.89678199906],[-71.404568,41.89482399906],[-71.404691,41.89478399906],[-71.407055,41.89190999906],[-71.407753,41.89120499906],[-71.407722,41.89310499906],[-71.410013,41.89340799906],[-71.411261,41.89515499906],[-71.413444,41.89637899906],[-71.416588,41.89961999906],[-71.417519,41.90104299906],[-71.415016,41.90201599906],[-71.414238,41.90298499906],[-71.413834,41.90361399906],[-71.414589,41.90625399906],[-71.408638,41.90817599906],[-71.407791,41.90560199906],[-71.407402,41.90527699906],[-71.405472,41.90696699906],[-71.404556,41.90932799906],[-71.402695,41.90962599906],[-71.403023,41.91139299906],[-71.405393,41.91099899906],[-71.407214,41.91184199906],[-71.408959,41.91386099906],[-71.416233,41.91780799906],[-71.418425,41.91881899906],[-71.419443,41.92062699906],[-71.4217,41.92214499906],[-71.425322,41.92246299906],[-71.428327,41.92354299906],[-71.430939,41.92698699906],[-71.431287,41.93054099906],[-71.430717,41.93339799906],[-71.430955,41.93463599906],[-71.433982,41.93821899906],[-71.438092,41.94262699906],[-71.439703,41.94377599906],[-71.442549,41.94740999906],[-71.450987,41.94991299906],[-71.452315,41.95310499906],[-71.452027,41.95329399906],[-71.450942,41.95269899906],[-71.4488,41.95391399906],[-71.448223,41.95501499906],[-71.449327,41.95986199906],[-71.451741,41.96006499906],[-71.453705,41.96155199906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44002","name":"2","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.45591,41.81610899906],[-71.455315,41.81794699906],[-71.453804,41.81764999906],[-71.449898,41.81726799906],[-71.448555,41.81713499906],[-71.446163,41.81525999906],[-71.444735,41.81439799906],[-71.44001,41.81381599906],[-71.439534,41.81596199906],[-71.438858,41.81576899906],[-71.437042,41.81585699906],[-71.436916,41.81547399906],[-71.437604,41.81417499906],[-71.438164,41.81188599906],[-71.435684,41.81177099906],[-71.435463,41.81106899906],[-71.435318,41.81067299906],[-71.433105,41.80997099906],[-71.428162,41.80864299906],[-71.42791,41.80849099906],[-71.427864,41.80723999906],[-71.424866,41.80710199906],[-71.424858,41.80717499906],[-71.420242,41.80724699906],[-71.420052,41.80661799906],[-71.420013,41.80647699906],[-71.41935,41.80441699906],[-71.418907,41.80297499906],[-71.418129,41.80114399906],[-71.417435,41.80044899906],[-71.417419,41.80043399906],[-71.415466,41.79885099906],[-71.414665,41.79819899906],[-71.412117,41.79615799906],[-71.409447,41.79399999906],[-71.417591,41.78959199906],[-71.420063,41.78703299906],[-71.42061,41.78618399906],[-71.421667,41.78618999906],[-71.431603,41.78625399906],[-71.434046,41.78630699906],[-71.436482,41.78841199906],[-71.437642,41.79323899906],[-71.438541,41.79422899906],[-71.43934,41.79724099906],[-71.439266,41.80202699906],[-71.439938,41.80341499906],[-71.440252,41.80370499906],[-71.440541,41.80394599906],[-71.441318,41.80474999906],[-71.441541,41.80506299906],[-71.441869,41.80567399906],[-71.442015,41.80603999906],[-71.442154,41.80657299906],[-71.442223,41.80720299906],[-71.443678,41.80703199906],[-71.447533,41.80661399906],[-71.449348,41.81063099906],[-71.449944,41.81191999906],[-71.45079,41.81365999906],[-71.452866,41.81352599906],[-71.453522,41.81344999906],[-71.453888,41.81542999906],[-71.45578,41.81525799906],[-71.45591,41.81610899906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44020","name":"20","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.509872,41.99004399906],[-71.50988,41.99095499906],[-71.505272,41.99185199906],[-71.504036,41.99446899906],[-71.502258,41.99467499906],[-71.500351,41.99430499906],[-71.496544,41.99591399906],[-71.498199,41.99808499906],[-71.499367,42.00000799906],[-71.499088,42.00298299906],[-71.498218,42.00310899906],[-71.497231,42.00319699906],[-71.497757,42.00385999906],[-71.502425,42.00765299906],[-71.503853,42.00883499906],[-71.503532,42.01052099906],[-71.50205550327,42.01701084302],[-71.50204954111,42.01701129469],[-71.500905,42.01709799906],[-71.499905,42.01719799906],[-71.49825830106,42.01722023222],[-71.49135428024,42.01731344792],[-71.48378311796,42.01741567113],[-71.48371288296,42.01741661942],[-71.45811664513,42.01776221097],[-71.45810351919,42.01776238819],[-71.42435692338,42.01821802305],[-71.41441861461,42.01835220665],[-71.415741,42.01583099906],[-71.414726,42.01151999906],[-71.415863,42.00755699906],[-71.418553,42.00604299906],[-71.419533,42.00175099906],[-71.418716,41.99899299906],[-71.415825,41.99587999906],[-71.413399,41.99067299906],[-71.411446,41.98589299906],[-71.40937,41.98276499906],[-71.410683,41.98282599906],[-71.416077,41.98249099906],[-71.42247,41.98197599906],[-71.424644,41.98119399906],[-71.429932,41.97853499906],[-71.433426,41.97749299906],[-71.435486,41.97753499906],[-71.441231,41.97853499906],[-71.445446,41.97873199906],[-71.449232,41.97866399906],[-71.444391,41.97404399906],[-71.442957,41.97205599906],[-71.442896,41.97158899906],[-71.444191,41.97100399906],[-71.447838,41.96767799906],[-71.446419,41.96647999906],[-71.445007,41.96396299906],[-71.45118,41.96294799906],[-71.453705,41.96155199906],[-71.451741,41.96006499906],[-71.449327,41.95986199906],[-71.448223,41.95501499906],[-71.4488,41.95391399906],[-71.450942,41.95269899906],[-71.452027,41.95329399906],[-71.452315,41.95310499906],[-71.455219,41.95563399906],[-71.457241,41.95656799906],[-71.461781,41.95741499906],[-71.462227,41.96057299906],[-71.465011,41.96599799906],[-71.464389,41.96809599906],[-71.46536,41.96938899906],[-71.469992,41.97110799906],[-71.474141,41.97262399906],[-71.478657,41.97714099906],[-71.486156,41.97822199906],[-71.487364,41.97908499906],[-71.491746,41.97961199906],[-71.50706,41.98187699906],[-71.507191,41.98338199906],[-71.510532,41.98840199906],[-71.509872,41.99004399906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44021","name":"21","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.79469178266,41.8544085291],[-71.758215,41.85509299906],[-71.747483,41.85523599906],[-71.737663,41.85572099906],[-71.732079,41.85594899906],[-71.69101,41.85645699906],[-71.676808,41.85664999906],[-71.613133,41.85776599906],[-71.604992,41.85799899906],[-71.574642,41.85874799906],[-71.573027,41.85150899906],[-71.57188,41.84427699906],[-71.570639,41.83856599906],[-71.569627,41.83507899906],[-71.56563,41.81498699906],[-71.561623,41.79722599906],[-71.559856,41.78936799906],[-71.55929,41.78934399906],[-71.554766,41.76527099906],[-71.553165,41.75698399906],[-71.552696,41.75545499906],[-71.548775,41.73660699906],[-71.547353,41.73120299906],[-71.54743,41.73002499906],[-71.550038,41.72998499906],[-71.562938,41.72967199906],[-71.562882,41.72820899906],[-71.560074,41.72415099906],[-71.557739,41.71756599906],[-71.558571,41.71196299906],[-71.557869,41.71000199906],[-71.557533,41.70906899906],[-71.55764,41.70010499906],[-71.557976,41.69600899906],[-71.557785,41.69430599906],[-71.557098,41.69175499906],[-71.558354,41.69102299906],[-71.560041,41.69049299906],[-71.560841,41.68599399906],[-71.560839,41.68591299906],[-71.560707,41.68382599906],[-71.560982,41.68376599906],[-71.564873,41.68454299906],[-71.56974,41.68168299906],[-71.575305,41.67993599906],[-71.580032,41.67904799906],[-71.580783,41.67901799906],[-71.577469,41.68141599906],[-71.578461,41.68656699906],[-71.574997,41.68899099906],[-71.573136,41.68977099906],[-71.572502,41.69014099906],[-71.574692,41.69006099906],[-71.575356,41.69109499906],[-71.574692,41.69248299906],[-71.577141,41.69397699906],[-71.577896,41.69523499906],[-71.579773,41.69511599906],[-71.580833,41.69659199906],[-71.582176,41.69586399906],[-71.581856,41.69478599906],[-71.586388,41.69435099906],[-71.587028,41.69362899906],[-71.589317,41.69351499906],[-71.589897,41.69564899906],[-71.591202,41.69546699906],[-71.591721,41.69478899906],[-71.592194,41.69456599906],[-71.591667,41.69412799906],[-71.592079,41.69347899906],[-71.592575,41.69321599906],[-71.59253,41.69357299906],[-71.593487,41.69304399906],[-71.595156,41.69384599906],[-71.59436,41.69515299906],[-71.593964,41.69900299906],[-71.595487,41.69999699906],[-71.614372,41.70381799906],[-71.620873,41.70429499906],[-71.628391,41.70365199906],[-71.62847,41.70363199906],[-71.628375,41.70341999906],[-71.631271,41.70266599906],[-71.635291,41.70105699906],[-71.650795,41.69380099906],[-71.654625,41.69246099906],[-71.658211,41.69159899906],[-71.662308,41.69105399906],[-71.666061,41.69089899906],[-71.674217,41.69097499906],[-71.67498,41.68784199906],[-71.677742,41.68596799906],[-71.680855,41.68502499906],[-71.687508,41.68162299906],[-71.690369,41.68120099906],[-71.694122,41.68122099906],[-71.694961,41.67542799906],[-71.695046,41.67437699906],[-71.694939,41.65842399906],[-71.666039,41.65872099906],[-71.665939,41.65869199906],[-71.622871,41.65968299906],[-71.622307,41.65755299906],[-71.620399,41.65614199906],[-71.621857,41.65297899906],[-71.623474,41.65213099906],[-71.621216,41.65233599906],[-71.614464,41.64966599906],[-71.613754,41.64886999906],[-71.623238,41.64199999906],[-71.625655,41.63958599906],[-71.629532,41.63509599906],[-71.636665,41.62943999906],[-71.642235,41.62302799906],[-71.646035,41.61942299906],[-71.649155,41.62001199906],[-71.652382,41.62001799906],[-71.657272,41.62127899906],[-71.661156,41.62165299906],[-71.664917,41.62165999906],[-71.667473,41.62281199906],[-71.670296,41.62477299906],[-71.672913,41.62590099906],[-71.676842,41.62521999906],[-71.679062,41.62520799906],[-71.682526,41.62902299906],[-71.686134,41.63523799906],[-71.692329,41.63509799906],[-71.695961,41.63267499906],[-71.69912,41.63246199906],[-71.706368,41.62930099906],[-71.706818,41.62708399906],[-71.705925,41.62564599906],[-71.709343,41.62503899906],[-71.711739,41.62408599906],[-71.71521,41.62389199906],[-71.715592,41.62509799906],[-71.717415,41.62505999906],[-71.716881,41.62591499906],[-71.718239,41.62679699906],[-71.718292,41.62829499906],[-71.719833,41.62926699906],[-71.720299,41.63204799906],[-71.722153,41.63380099906],[-71.723244,41.63300499906],[-71.728722,41.63372599906],[-71.742088,41.63804099906],[-71.744301,41.63916399906],[-71.74781,41.63896699906],[-71.752075,41.63779399906],[-71.755951,41.63499399906],[-71.756843,41.63126699906],[-71.760589,41.62754299906],[-71.763214,41.63358599906],[-71.766098,41.63539399906],[-71.767143,41.63682799906],[-71.771011,41.63355599906],[-71.776367,41.63359799906],[-71.78093,41.63469899906],[-71.781784,41.63343099906],[-71.785248,41.63493199906],[-71.7878551986,41.63445036681],[-71.78763664589,41.63991714536],[-71.786994,41.65599199906],[-71.78699889568,41.65611738614],[-71.78864754066,41.69834210795],[-71.789678,41.72473399906],[-71.78969211199,41.72519833872],[-71.79010633574,41.73882791629],[-71.79105925492,41.77018267528],[-71.791062,41.77027299906],[-71.79125806358,41.77449647297],[-71.79262703816,41.8039860322],[-71.79265663506,41.8046235893],[-71.792767,41.80700099906],[-71.792786,41.80866999906],[-71.79315733695,41.8171691591],[-71.794161,41.84014099906],[-71.794161,41.84110099906],[-71.79448235605,41.84915788492],[-71.79469178266,41.8544085291]]]]}}},{"type":"SLDU","affgeoid":"610U800US44022","name":"22","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.590312,41.93366499906],[-71.555328,41.93687399906],[-71.490788,41.94324099906],[-71.489167,41.93846899906],[-71.4845,41.92498899906],[-71.482705,41.91900199906],[-71.482147,41.91768899906],[-71.481095,41.91477399906],[-71.479248,41.91537099906],[-71.472931,41.91175099906],[-71.470932,41.90897799906],[-71.466599,41.90589899906],[-71.465027,41.90547199906],[-71.465065,41.90421699906],[-71.468063,41.89585899906],[-71.466621,41.89104099906],[-71.467758,41.88820599906],[-71.468193,41.88278999906],[-71.465283,41.87873899906],[-71.464864,41.87572999906],[-71.463265,41.87352899906],[-71.466759,41.87276699906],[-71.474826,41.87172699906],[-71.475526,41.87156999906],[-71.473602,41.87082299906],[-71.473966,41.86891299906],[-71.471573,41.86918699906],[-71.471928,41.86809599906],[-71.475279,41.86561699906],[-71.475763,41.86465199906],[-71.475967,41.86464299906],[-71.475967,41.86327399906],[-71.477722,41.86325799906],[-71.477722,41.86298799906],[-71.478745,41.86299099906],[-71.479988,41.86307099906],[-71.480139,41.86001099906],[-71.480034,41.85872699906],[-71.479385,41.85876799906],[-71.473503,41.85959599906],[-71.473007,41.85819199906],[-71.471931,41.85802499906],[-71.474846,41.85582399906],[-71.475105,41.85477099906],[-71.473638,41.85464899906],[-71.475281,41.85338999906],[-71.473938,41.85221099906],[-71.47345,41.84997899906],[-71.473709,41.84927399906],[-71.472267,41.84563799906],[-71.473892,41.84533699906],[-71.4729,41.84289899906],[-71.476372,41.84211699906],[-71.478659,41.84236899906],[-71.479012,41.84345799906],[-71.479521,41.84428299906],[-71.48033,41.84504399906],[-71.480974,41.85082099906],[-71.485636,41.85351899906],[-71.486065,41.85431199906],[-71.48708,41.85610499906],[-71.487421,41.85907299906],[-71.487654,41.85960299906],[-71.488251,41.86227799906],[-71.492353,41.86536499906],[-71.494084,41.86827599906],[-71.495545,41.86898299906],[-71.505093,41.86772399906],[-71.514588,41.86648799906],[-71.531464,41.86426899906],[-71.540216,41.86309499906],[-71.545655,41.86252999906],[-71.550423,41.86176499906],[-71.573608,41.85880699906],[-71.574642,41.85874799906],[-71.575653,41.86357299906],[-71.579348,41.88161699906],[-71.579389,41.88181199906],[-71.579908,41.88471999906],[-71.581891,41.89466499906],[-71.590312,41.93366499906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44023","name":"23","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.799242,42.00806499906],[-71.76601,42.00974499906],[-71.75510919805,42.00999592814],[-71.68087581631,42.01170473033],[-71.67802296857,42.01177040095],[-71.66160371444,42.01214836106],[-71.60673402532,42.01341142415],[-71.59411891923,42.01370181535],[-71.5911031923,42.01377123535],[-71.576908,42.01409799906],[-71.56366502123,42.01428297169],[-71.559439,42.01434199906],[-71.55361486286,42.01446202023],[-71.55311,42.01330499906],[-71.552113,42.01290199906],[-71.551906,42.01069899906],[-71.551073,42.00833399906],[-71.552199,42.00661899906],[-71.552594,42.00478899906],[-71.552143,42.00444999906],[-71.550578,42.00208899906],[-71.552814,41.99989199906],[-71.552219,41.99869599906],[-71.556966,41.99928999906],[-71.55838,42.00059999906],[-71.56041,41.99826399906],[-71.564827,41.99692199906],[-71.56998,41.99967899906],[-71.577133,42.00100299906],[-71.579109,42.00032399906],[-71.580132,41.99986599906],[-71.578953,41.99914099906],[-71.580633,41.99898999906],[-71.583856,41.99562999906],[-71.586123,41.99471899906],[-71.590538,41.99485199906],[-71.592763,41.99434199906],[-71.59451,41.99501799906],[-71.596008,41.99299799906],[-71.596417,41.99054599906],[-71.597897,41.98587699906],[-71.600443,41.98302699906],[-71.596898,41.96612299906],[-71.590312,41.93366499906],[-71.581891,41.89466499906],[-71.579908,41.88471999906],[-71.579389,41.88181199906],[-71.579348,41.88161699906],[-71.575653,41.86357299906],[-71.574642,41.85874799906],[-71.604992,41.85799899906],[-71.613133,41.85776599906],[-71.676808,41.85664999906],[-71.69101,41.85645699906],[-71.732079,41.85594899906],[-71.737663,41.85572099906],[-71.747483,41.85523599906],[-71.758215,41.85509299906],[-71.79469178266,41.8544085291],[-71.79668779468,41.90445159128],[-71.79715894256,41.91626398655],[-71.79765282895,41.92864647087],[-71.79780125342,41.93236769834],[-71.797922,41.93539499906],[-71.79882688153,41.98521146936],[-71.79886543354,41.98733387436],[-71.799242,42.00806499906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44024","name":"24","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.552219,41.99869599906],[-71.552814,41.99989199906],[-71.550578,42.00208899906],[-71.552143,42.00444999906],[-71.552594,42.00478899906],[-71.552199,42.00661899906],[-71.551073,42.00833399906],[-71.551906,42.01069899906],[-71.552113,42.01290199906],[-71.55311,42.01330499906],[-71.55361486286,42.01446202023],[-71.55336097543,42.01446725223],[-71.53803620617,42.01478305811],[-71.52892806735,42.0149707545],[-71.52769996117,42.01499606275],[-71.527606,42.01499799906],[-71.527306,42.01509799906],[-71.52464118753,42.01529987115],[-71.51163339947,42.01628527231],[-71.50205550327,42.01701084302],[-71.503532,42.01052099906],[-71.503853,42.00883499906],[-71.502425,42.00765299906],[-71.497757,42.00385999906],[-71.497231,42.00319699906],[-71.498218,42.00310899906],[-71.499088,42.00298299906],[-71.499367,42.00000799906],[-71.498199,41.99808499906],[-71.496544,41.99591399906],[-71.500351,41.99430499906],[-71.502258,41.99467499906],[-71.504036,41.99446899906],[-71.505272,41.99185199906],[-71.50988,41.99095499906],[-71.509872,41.99004399906],[-71.510532,41.98840199906],[-71.507191,41.98338199906],[-71.50706,41.98187699906],[-71.515179,41.98307099906],[-71.515232,41.98310599906],[-71.515274,41.98306299906],[-71.515503,41.98317399906],[-71.515797,41.98327599906],[-71.518066,41.98369599906],[-71.522354,41.98565299906],[-71.528008,41.98840699906],[-71.531662,41.98955599906],[-71.531754,41.98957399906],[-71.533806,41.98955499906],[-71.535675,41.98561099906],[-71.538112,41.98445599906],[-71.556966,41.99928999906],[-71.552219,41.99869599906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44025","name":"25","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.573608,41.85880699906],[-71.550423,41.86176499906],[-71.545655,41.86252999906],[-71.540216,41.86309499906],[-71.531464,41.86426899906],[-71.514588,41.86648799906],[-71.505093,41.86772399906],[-71.495545,41.86898299906],[-71.494084,41.86827599906],[-71.492353,41.86536499906],[-71.488251,41.86227799906],[-71.487654,41.85960299906],[-71.487421,41.85907299906],[-71.48708,41.85610499906],[-71.486065,41.85431199906],[-71.485636,41.85351899906],[-71.480974,41.85082099906],[-71.48033,41.84504399906],[-71.479521,41.84428299906],[-71.479012,41.84345799906],[-71.478659,41.84236899906],[-71.47764,41.84146899906],[-71.477216,41.83791099906],[-71.47331,41.83898199906],[-71.472459,41.83698099906],[-71.472432,41.83418099906],[-71.470444,41.83291199906],[-71.46759,41.83149099906],[-71.464769,41.83104799906],[-71.462432,41.82741299906],[-71.462423,41.82468699906],[-71.465216,41.82460399906],[-71.471306,41.82413899906],[-71.471077,41.82238399906],[-71.470877,41.82194399906],[-71.470031,41.81982799906],[-71.46965,41.81887599906],[-71.472481,41.81794399906],[-71.472023,41.81588699906],[-71.473503,41.81569699906],[-71.472168,41.81394999906],[-71.478249,41.81167999906],[-71.482033,41.81168699906],[-71.480186,41.80939099906],[-71.479416,41.80517999906],[-71.478553,41.80130699906],[-71.478017,41.80047899906],[-71.475761,41.80023999906],[-71.474373,41.80127299906],[-71.472847,41.80165099906],[-71.468956,41.80238299906],[-71.467072,41.80446999906],[-71.46492,41.80587399906],[-71.464583,41.80499099906],[-71.463665,41.80504599906],[-71.466027,41.80374899906],[-71.467582,41.79810899906],[-71.469597,41.79881199906],[-71.471598,41.79830999906],[-71.47231,41.79645999906],[-71.479736,41.79685199906],[-71.481354,41.79649699906],[-71.482727,41.79599799906],[-71.484276,41.79524599906],[-71.487373,41.79322099906],[-71.48941,41.79167899906],[-71.497426,41.79089299906],[-71.503067,41.78914299906],[-71.506058,41.78887899906],[-71.513844,41.78841699906],[-71.516174,41.78858199906],[-71.51894,41.78887899906],[-71.521797,41.78973799906],[-71.526405,41.79032899906],[-71.530556,41.79144699906],[-71.534225,41.79321299906],[-71.54731,41.79212599906],[-71.55524,41.78953699906],[-71.55929,41.78934399906],[-71.559856,41.78936799906],[-71.561623,41.79722599906],[-71.56563,41.81498699906],[-71.569627,41.83507899906],[-71.570639,41.83856599906],[-71.57188,41.84427699906],[-71.573027,41.85150899906],[-71.574642,41.85874799906],[-71.573608,41.85880699906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44026","name":"26","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.55524,41.78953699906],[-71.54731,41.79212599906],[-71.534225,41.79321299906],[-71.530556,41.79144699906],[-71.526405,41.79032899906],[-71.521797,41.78973799906],[-71.51894,41.78887899906],[-71.516174,41.78858199906],[-71.513844,41.78841699906],[-71.506058,41.78887899906],[-71.503067,41.78914299906],[-71.497426,41.79089299906],[-71.48941,41.79167899906],[-71.487373,41.79322099906],[-71.484276,41.79524599906],[-71.482727,41.79599799906],[-71.481354,41.79649699906],[-71.479736,41.79685199906],[-71.47231,41.79645999906],[-71.471598,41.79830999906],[-71.469597,41.79881199906],[-71.467582,41.79810899906],[-71.466027,41.80374899906],[-71.463665,41.80504599906],[-71.461882,41.80509899906],[-71.457703,41.80556899906],[-71.452314,41.80613299906],[-71.45023,41.80636999906],[-71.447533,41.80661399906],[-71.443678,41.80703199906],[-71.442223,41.80720299906],[-71.442154,41.80657299906],[-71.442015,41.80603999906],[-71.441869,41.80567399906],[-71.441541,41.80506299906],[-71.441318,41.80474999906],[-71.440541,41.80394599906],[-71.440252,41.80370499906],[-71.441833,41.80301999906],[-71.442604,41.80286799906],[-71.445469,41.79687099906],[-71.448359,41.79325799906],[-71.449475,41.79212099906],[-71.452441,41.78975899906],[-71.456061,41.78714699906],[-71.461105,41.78346999906],[-71.464249,41.78292799906],[-71.464874,41.78269199906],[-71.465836,41.78224199906],[-71.472294,41.78096099906],[-71.474792,41.78040299906],[-71.476532,41.77899899906],[-71.478172,41.77781299906],[-71.481361,41.77361299906],[-71.481522,41.77182399906],[-71.482079,41.76929099906],[-71.482025,41.76678099906],[-71.483521,41.76363399906],[-71.487549,41.75818999906],[-71.486748,41.75387999906],[-71.486984,41.75130499906],[-71.487495,41.75081299906],[-71.488358,41.74987799906],[-71.489105,41.74631499906],[-71.49324,41.74070399906],[-71.494957,41.73530199906],[-71.497711,41.73303599906],[-71.497849,41.73114999906],[-71.516861,41.73060799906],[-71.519413,41.73046899906],[-71.519928,41.73044299906],[-71.525348,41.73032799906],[-71.534286,41.73017099906],[-71.545807,41.73009699906],[-71.547353,41.73120299906],[-71.548775,41.73660699906],[-71.552696,41.75545499906],[-71.553165,41.75698399906],[-71.554766,41.76527099906],[-71.55929,41.78934399906],[-71.55524,41.78953699906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44027","name":"27","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.498739,41.72784399906],[-71.497849,41.73114999906],[-71.497711,41.73303599906],[-71.494957,41.73530199906],[-71.49324,41.74070399906],[-71.489105,41.74631499906],[-71.488358,41.74987799906],[-71.487495,41.75081299906],[-71.486984,41.75130499906],[-71.486748,41.75387999906],[-71.487549,41.75818999906],[-71.483521,41.76363399906],[-71.482025,41.76678099906],[-71.482079,41.76929099906],[-71.481522,41.77182399906],[-71.481361,41.77361299906],[-71.478172,41.77781299906],[-71.476532,41.77899899906],[-71.474792,41.78040299906],[-71.472294,41.78096099906],[-71.465836,41.78224199906],[-71.464874,41.78269199906],[-71.464249,41.78292799906],[-71.461105,41.78346999906],[-71.45726,41.78397399906],[-71.456099,41.78425999906],[-71.454155,41.78465999906],[-71.451134,41.78388599906],[-71.448051,41.78303899906],[-71.445129,41.78240999906],[-71.443413,41.78205499906],[-71.440863,41.78140799906],[-71.436897,41.77922799906],[-71.435837,41.77894199906],[-71.437691,41.77776299906],[-71.43777,41.77700299906],[-71.437393,41.77477599906],[-71.437333,41.77457699906],[-71.436974,41.77225899906],[-71.436943,41.77204899906],[-71.43692,41.77151899906],[-71.439209,41.76842899906],[-71.436729,41.76745599906],[-71.436676,41.76699399906],[-71.438339,41.76596799906],[-71.436433,41.76195999906],[-71.434069,41.76093599906],[-71.435883,41.75967699906],[-71.437561,41.75982699906],[-71.438829,41.75782899906],[-71.440574,41.75791199906],[-71.43912,41.75638999906],[-71.441165,41.75471199906],[-71.440619,41.75215299906],[-71.446538,41.74888699906],[-71.451887,41.74998999906],[-71.455345,41.75071399906],[-71.457976,41.74748199906],[-71.457474,41.74308699906],[-71.462105,41.73960899906],[-71.461494,41.73874699906],[-71.4617,41.73569499906],[-71.460599,41.73226799906],[-71.467939,41.73207899906],[-71.476815,41.73178899906],[-71.48391,41.73160299906],[-71.484781,41.72872399906],[-71.485802,41.72612499906],[-71.489327,41.72283999906],[-71.49028,41.72122699906],[-71.490539,41.71751599906],[-71.492892,41.71782599906],[-71.491562,41.71957399906],[-71.497146,41.72192499906],[-71.496323,41.72377599906],[-71.496973,41.72611699906],[-71.498331,41.72688699906],[-71.498739,41.72784399906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44028","name":"28","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.461105,41.78346999906],[-71.456061,41.78714699906],[-71.452441,41.78975899906],[-71.449475,41.79212099906],[-71.448359,41.79325799906],[-71.445469,41.79687099906],[-71.442604,41.80286799906],[-71.441833,41.80301999906],[-71.440252,41.80370499906],[-71.439938,41.80341499906],[-71.439266,41.80202699906],[-71.43934,41.79724099906],[-71.438541,41.79422899906],[-71.437642,41.79323899906],[-71.436482,41.78841199906],[-71.434046,41.78630699906],[-71.431603,41.78625399906],[-71.421667,41.78618999906],[-71.42061,41.78618399906],[-71.420063,41.78703299906],[-71.417591,41.78959199906],[-71.409447,41.79399999906],[-71.408127,41.79293799906],[-71.40625,41.79142399906],[-71.404404,41.78930299906],[-71.402222,41.78671299906],[-71.40226,41.78694199906],[-71.398766,41.78758999906],[-71.395714,41.78816999906],[-71.392715,41.78872299906],[-71.393097,41.78989399906],[-71.394111,41.79385499906],[-71.393974,41.79465899906],[-71.397926,41.79481099906],[-71.399691,41.79914199906],[-71.398949,41.79948799906],[-71.390099,41.80519999906],[-71.385199,41.80209999906],[-71.380799,41.79629999906],[-71.377299,41.79469999906],[-71.373308,41.79111699906],[-71.372711,41.78851799906],[-71.372002,41.78982299906],[-71.370731,41.78709199906],[-71.371008,41.78669399906],[-71.369694,41.78305799906],[-71.37168533333,41.78338266573],[-71.381287,41.78530299906],[-71.390557,41.78370799906],[-71.391745,41.78104999906],[-71.389844,41.77644099906],[-71.385495,41.76866399906],[-71.385566,41.76030999906],[-71.38380436647,41.75851169734],[-71.384733,41.75760199906],[-71.385659,41.75842099906],[-71.388517,41.76377499906],[-71.390534,41.76439099906],[-71.394121,41.76403799906],[-71.395628,41.76668399906],[-71.399577,41.76832099906],[-71.401395,41.76655199906],[-71.402355,41.76752399906],[-71.405203,41.76760999906],[-71.410702,41.76655399906],[-71.412183,41.76505799906],[-71.414383,41.76295299906],[-71.415806,41.76290199906],[-71.417848,41.76216699906],[-71.419078,41.76188499906],[-71.420091,41.76174599906],[-71.418715,41.76407599906],[-71.419797,41.76478499906],[-71.421994,41.76457999906],[-71.422957,41.76297099906],[-71.426224,41.76102499906],[-71.42989,41.76076099906],[-71.430969,41.76061699906],[-71.432968,41.75933499906],[-71.432503,41.76021599906],[-71.429915,41.76723299906],[-71.427933,41.77267099906],[-71.428818,41.77128599906],[-71.432365,41.77200699906],[-71.434013,41.77270899906],[-71.436974,41.77225899906],[-71.437333,41.77457699906],[-71.437393,41.77477599906],[-71.43777,41.77700299906],[-71.437691,41.77776299906],[-71.435837,41.77894199906],[-71.436897,41.77922799906],[-71.440863,41.78140799906],[-71.443413,41.78205499906],[-71.445129,41.78240999906],[-71.448051,41.78303899906],[-71.451134,41.78388599906],[-71.454155,41.78465999906],[-71.456099,41.78425999906],[-71.45726,41.78397399906],[-71.461105,41.78346999906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44029","name":"29","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.447868,41.71144599906],[-71.444572,41.72051599906],[-71.441696,41.72836199906],[-71.435333,41.74585199906],[-71.433945,41.74484699906],[-71.431274,41.74176899906],[-71.430183,41.74301699906],[-71.427429,41.74546599906],[-71.425331,41.74703299906],[-71.421158,41.74952499906],[-71.418838,41.75065999906],[-71.418305,41.75094499906],[-71.416939,41.75182999906],[-71.416466,41.75216399906],[-71.410965,41.75598499906],[-71.409592,41.75695999906],[-71.409226,41.75661199906],[-71.404411,41.75559099906],[-71.404106,41.74960899906],[-71.404556,41.74854499906],[-71.406548,41.74510399906],[-71.407692,41.74272499906],[-71.408142,41.73740599906],[-71.408104,41.73660999906],[-71.407679,41.73516699906],[-71.40152,41.73504599906],[-71.395058,41.73416699906],[-71.393692,41.73321999906],[-71.392273,41.73379399906],[-71.389209,41.73391899906],[-71.390033,41.73738999906],[-71.38859,41.73684299906],[-71.384468,41.73863699906],[-71.383313,41.73952499906],[-71.382547,41.73590999906],[-71.38069257431,41.73618348374],[-71.380574,41.73353299906],[-71.38105,41.72732399906],[-71.376534,41.72164799906],[-71.369879,41.71827699906],[-71.363937,41.71738999906],[-71.357282,41.71818799906],[-71.357282,41.71659199906],[-71.365717,41.71161499906],[-71.365717,41.70789799906],[-71.364412,41.70470399906],[-71.36467280812,41.70384126102],[-71.36463,41.70442099906],[-71.370071,41.70333499906],[-71.373924,41.70241299906],[-71.374191,41.70432999906],[-71.37973,41.70695799906],[-71.383369,41.70710799906],[-71.384179,41.70391999906],[-71.384521,41.70345499906],[-71.386467,41.70181999906],[-71.386963,41.70141799906],[-71.389649,41.70058299906],[-71.399043,41.70103999906],[-71.40183,41.70134099906],[-71.404157,41.70210999906],[-71.407121,41.70299199906],[-71.417616,41.70559099906],[-71.418281,41.70540299906],[-71.420319,41.70406599906],[-71.421249,41.70374499906],[-71.424301,41.70323899906],[-71.441048,41.70060099906],[-71.441574,41.70509799906],[-71.440717,41.70851799906],[-71.441692,41.70968899906],[-71.443311,41.71076599906],[-71.447334,41.71142399906],[-71.447868,41.71144599906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44003","name":"3","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.411819,41.83595299906],[-71.409904,41.83677299906],[-71.410065,41.83532699906],[-71.405441,41.83560599906],[-71.404625,41.83654799906],[-71.401176,41.83657799906],[-71.398987,41.84101899906],[-71.397621,41.84375399906],[-71.397545,41.84389899906],[-71.396057,41.84691199906],[-71.395187,41.84865199906],[-71.393143,41.85289799906],[-71.391449,41.85621999906],[-71.391101,41.85694499906],[-71.383719,41.85708599906],[-71.379003,41.85747799906],[-71.376699,41.85749999906],[-71.375021,41.85744899906],[-71.374526,41.85713599906],[-71.372334,41.85054799906],[-71.37226,41.84415699906],[-71.372247,41.84333699906],[-71.372996,41.83806499906],[-71.373099,41.83659999906],[-71.373587,41.83248599906],[-71.377434,41.82928799906],[-71.382797,41.82269499906],[-71.385572,41.81899599906],[-71.387083,41.81637199906],[-71.393528,41.81475599906],[-71.395258,41.81166899906],[-71.394984,41.81077299906],[-71.3978,41.80989999906],[-71.401719,41.81551399906],[-71.404888,41.81999699906],[-71.406813,41.82266899906],[-71.408635,41.82549599906],[-71.409804,41.82653899906],[-71.410915,41.82843499906],[-71.411504,41.83122899906],[-71.411507,41.83139399906],[-71.411562,41.83139399906],[-71.411819,41.83595299906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44030","name":"30","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.501679,41.69647399906],[-71.49764,41.69670899906],[-71.497446,41.69671199906],[-71.489632,41.69679899906],[-71.475204,41.69754699906],[-71.46901,41.69798199906],[-71.466499,41.69772499906],[-71.464508,41.69783099906],[-71.463913,41.69804699906],[-71.463298,41.69833799906],[-71.461427,41.69936699906],[-71.460367,41.70030799906],[-71.457634,41.70208499906],[-71.451017,41.70277299906],[-71.450942,41.70298099906],[-71.447868,41.71144599906],[-71.447334,41.71142399906],[-71.443311,41.71076599906],[-71.441692,41.70968899906],[-71.440717,41.70851799906],[-71.441574,41.70509799906],[-71.441048,41.70060099906],[-71.424301,41.70323899906],[-71.421249,41.70374499906],[-71.420319,41.70406599906],[-71.418281,41.70540299906],[-71.417616,41.70559099906],[-71.407121,41.70299199906],[-71.404157,41.70210999906],[-71.40183,41.70134099906],[-71.399043,41.70103999906],[-71.389649,41.70058299906],[-71.386963,41.70141799906],[-71.386467,41.70181999906],[-71.384521,41.70345499906],[-71.384179,41.70391999906],[-71.383369,41.70710799906],[-71.37973,41.70695799906],[-71.374191,41.70432999906],[-71.373924,41.70241299906],[-71.370071,41.70333499906],[-71.36463,41.70442099906],[-71.36467280812,41.70384126102],[-71.36534458357,41.70161906701],[-71.365646,41.70062199906],[-71.365601,41.69370099906],[-71.362748,41.69192599906],[-71.364887,41.68837699906],[-71.371542,41.68535899906],[-71.373444,41.67861399906],[-71.372988,41.67257499906],[-71.37791,41.66664599906],[-71.382049,41.66731699906],[-71.386279,41.67097999906],[-71.38988,41.67190299906],[-71.390775,41.68062899906],[-71.389432,41.68342499906],[-71.390551,41.68409599906],[-71.398163,41.68340699906],[-71.418069,41.68420799906],[-71.433815,41.68695699906],[-71.441336,41.68644599906],[-71.443082,41.68830299906],[-71.441896,41.69002499906],[-71.445923,41.69114399906],[-71.44848,41.68841399906],[-71.450198,41.68645899906],[-71.449997,41.68398999906],[-71.447699,41.67786999906],[-71.444574,41.67429799906],[-71.444268,41.67364699906],[-71.444621,41.67301599906],[-71.446573,41.67195899906],[-71.447018,41.67121599906],[-71.446247,41.66630999906],[-71.44493240215,41.66402899906],[-71.445572,41.66406599906],[-71.450127,41.66396399906],[-71.451218,41.66392299906],[-71.45829,41.66370499906],[-71.45853,41.66373399906],[-71.490206,41.66319299906],[-71.499225,41.66294799906],[-71.498932,41.66460699906],[-71.499451,41.66612199906],[-71.499836,41.67377599906],[-71.500062,41.67948099906],[-71.500723,41.68501599906],[-71.50103,41.68758999906],[-71.501679,41.69647399906]],[[-71.468692,41.63859399906],[-71.464831,41.63890399906],[-71.465652,41.64309799906],[-71.458654,41.64926599906],[-71.458017,41.64980899906],[-71.454876,41.64744499906],[-71.452157,41.64849199906],[-71.450376,41.65144899906],[-71.449315,41.65256599906],[-71.446018,41.65537599906],[-71.443021,41.66019999906],[-71.44237693746,41.66361147598],[-71.442148,41.66372799906],[-71.440996,41.66623099906],[-71.440153,41.66684299906],[-71.434748,41.66626299906],[-71.430038,41.66754099906],[-71.426647,41.66952599906],[-71.426086,41.67048399906],[-71.424285,41.67027499906],[-71.417652,41.66529799906],[-71.408621,41.66316799906],[-71.408858,41.65784099906],[-71.40887996267,41.65384065613],[-71.417581,41.65495199906],[-71.423884,41.65388799906],[-71.428941,41.65056899906],[-71.432796,41.65132299906],[-71.435944,41.64922299906],[-71.439301,41.64802299906],[-71.440925,41.64617999906],[-71.442508,41.64581799906],[-71.442717,41.64439799906],[-71.441986,41.64327499906],[-71.445084,41.64137299906],[-71.446277,41.63883699906],[-71.449286,41.63672999906],[-71.448447,41.63337699906],[-71.451366,41.62945499906],[-71.45311,41.62985899906],[-71.454404,41.63120199906],[-71.45423,41.63295299906],[-71.45558,41.63510899906],[-71.458324,41.63636599906],[-71.459123,41.63794599906],[-71.462354,41.63837999906],[-71.463436,41.63654399906],[-71.467844,41.63416499906],[-71.468692,41.63859399906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44031","name":"31","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.518913,41.69589899906],[-71.513336,41.70569399906],[-71.512764,41.70667499906],[-71.511904,41.70722999906],[-71.506691,41.70948199906],[-71.505188,41.71130699906],[-71.502365,41.71147199906],[-71.500786,41.71160599906],[-71.500253,41.71182299906],[-71.497116,41.71316699906],[-71.492892,41.71782599906],[-71.490539,41.71751599906],[-71.49028,41.72122699906],[-71.489327,41.72283999906],[-71.485802,41.72612499906],[-71.484781,41.72872399906],[-71.48391,41.73160299906],[-71.476815,41.73178899906],[-71.467939,41.73207899906],[-71.460599,41.73226799906],[-71.4617,41.73569499906],[-71.461494,41.73874699906],[-71.462105,41.73960899906],[-71.457474,41.74308699906],[-71.457976,41.74748199906],[-71.455345,41.75071399906],[-71.451887,41.74998999906],[-71.446538,41.74888699906],[-71.440619,41.75215299906],[-71.441165,41.75471199906],[-71.43912,41.75638999906],[-71.440574,41.75791199906],[-71.438829,41.75782899906],[-71.437561,41.75982699906],[-71.435883,41.75967699906],[-71.434069,41.76093599906],[-71.436433,41.76195999906],[-71.438339,41.76596799906],[-71.436676,41.76699399906],[-71.436729,41.76745599906],[-71.439209,41.76842899906],[-71.43692,41.77151899906],[-71.436943,41.77204899906],[-71.436974,41.77225899906],[-71.434013,41.77270899906],[-71.432365,41.77200699906],[-71.428818,41.77128599906],[-71.427933,41.77267099906],[-71.429915,41.76723299906],[-71.432503,41.76021599906],[-71.432968,41.75933499906],[-71.430969,41.76061699906],[-71.42989,41.76076099906],[-71.426224,41.76102499906],[-71.422957,41.76297099906],[-71.421994,41.76457999906],[-71.419797,41.76478499906],[-71.418715,41.76407599906],[-71.420091,41.76174599906],[-71.419078,41.76188499906],[-71.417848,41.76216699906],[-71.415806,41.76290199906],[-71.414383,41.76295299906],[-71.412183,41.76505799906],[-71.410702,41.76655399906],[-71.405203,41.76760999906],[-71.402355,41.76752399906],[-71.401395,41.76655199906],[-71.399577,41.76832099906],[-71.395628,41.76668399906],[-71.394121,41.76403799906],[-71.390534,41.76439099906],[-71.388517,41.76377499906],[-71.385659,41.75842099906],[-71.384733,41.75760199906],[-71.38380436647,41.75851169734],[-71.38118990422,41.75584281537],[-71.38105,41.75569999906],[-71.380099,41.74931599906],[-71.380574,41.74594699906],[-71.376058,41.74417399906],[-71.380812,41.73885299906],[-71.38069257431,41.73618348374],[-71.382547,41.73590999906],[-71.383313,41.73952499906],[-71.384468,41.73863699906],[-71.38859,41.73684299906],[-71.390033,41.73738999906],[-71.389209,41.73391899906],[-71.392273,41.73379399906],[-71.393692,41.73321999906],[-71.395058,41.73416699906],[-71.40152,41.73504599906],[-71.407679,41.73516699906],[-71.408104,41.73660999906],[-71.408142,41.73740599906],[-71.407692,41.74272499906],[-71.406548,41.74510399906],[-71.404556,41.74854499906],[-71.404106,41.74960899906],[-71.404411,41.75559099906],[-71.409226,41.75661199906],[-71.409592,41.75695999906],[-71.410965,41.75598499906],[-71.416466,41.75216399906],[-71.416939,41.75182999906],[-71.418305,41.75094499906],[-71.418838,41.75065999906],[-71.421158,41.74952499906],[-71.425331,41.74703299906],[-71.427429,41.74546599906],[-71.430183,41.74301699906],[-71.431274,41.74176899906],[-71.433945,41.74484699906],[-71.435333,41.74585199906],[-71.441696,41.72836199906],[-71.444572,41.72051599906],[-71.447868,41.71144599906],[-71.450942,41.70298099906],[-71.451017,41.70277299906],[-71.457634,41.70208499906],[-71.460367,41.70030799906],[-71.461427,41.69936699906],[-71.463298,41.69833799906],[-71.463913,41.69804699906],[-71.464508,41.69783099906],[-71.466499,41.69772499906],[-71.46901,41.69798199906],[-71.475204,41.69754699906],[-71.489632,41.69679899906],[-71.497446,41.69671199906],[-71.49764,41.69670899906],[-71.501679,41.69647399906],[-71.506142,41.69646699906],[-71.511574,41.69608699906],[-71.515419,41.69603899906],[-71.518913,41.69589899906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44032","name":"32","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.360847,41.75516799906],[-71.36127091692,41.75761789117],[-71.359901,41.75807599906],[-71.359222,41.75797999906],[-71.353602,41.75884199906],[-71.350138,41.75973899906],[-71.34716,41.75966999906],[-71.348068,41.76328699906],[-71.34893,41.76710099906],[-71.349487,41.76847499906],[-71.350822,41.77057999906],[-71.353615,41.77119799906],[-71.353638,41.77186999906],[-71.353813,41.77291499906],[-71.35511,41.77445599906],[-71.356879,41.77515799906],[-71.35862,41.77590599906],[-71.356581,41.77879499906],[-71.357266,41.78052799906],[-71.354291,41.78240099906],[-71.353577,41.78253699906],[-71.353715,41.78287999906],[-71.351839,41.78506999906],[-71.347176,41.78643799906],[-71.33387,41.78651399906],[-71.333,41.78863099906],[-71.332637,41.78874699906],[-71.331861,41.78972499906],[-71.33106075427,41.79014694681],[-71.33011616476,41.78835548395],[-71.329296,41.78679999906],[-71.329396,41.78259999906],[-71.327896,41.78050099906],[-71.31792423356,41.77615729326],[-71.317795,41.77610099906],[-71.31638784427,41.77550723089],[-71.29768756485,41.76761639795],[-71.29475805142,41.76638025059],[-71.28440177169,41.76201027988],[-71.286593,41.74240099906],[-71.289002,41.73895899906],[-71.289337,41.73742699906],[-71.2898,41.73380699906],[-71.289494,41.73260099906],[-71.287294,41.72850099906],[-71.287478,41.72380299906],[-71.287604,41.72294899906],[-71.289294,41.71600099906],[-71.292854,41.71175899906],[-71.294039,41.71027999906],[-71.291377,41.70954999906],[-71.280524,41.71105899906],[-71.28006,41.70410399906],[-71.265945,41.70544199906],[-71.264702,41.69942699906],[-71.263628,41.69435199906],[-71.262161,41.68769299906],[-71.270332,41.68681499906],[-71.278946,41.68581599906],[-71.278717,41.67657999906],[-71.278679,41.67630199906],[-71.276535,41.67035499906],[-71.27916837403,41.66978776462],[-71.280366,41.67257499906],[-71.278847,41.67834699906],[-71.282175,41.67958999906],[-71.285502,41.68242999906],[-71.287404,41.68047799906],[-71.289068,41.67958999906],[-71.287637,41.67246299906],[-71.290546,41.66239499906],[-71.293346,41.66023799906],[-71.297862,41.65828399906],[-71.297624,41.65384499906],[-71.299159,41.64953099906],[-71.301396,41.64997799906],[-71.303746,41.65478799906],[-71.304992,41.65934999906],[-71.306095,41.67257499906],[-71.302627,41.68174699906],[-71.298935,41.68152399906],[-71.293119,41.68834699906],[-71.291217,41.70266599906],[-71.2988,41.71100799906],[-71.29905,41.70869599906],[-71.301446,41.70644099906],[-71.303804,41.70656699906],[-71.305468,41.70851899906],[-71.307983,41.71275599906],[-71.305759,41.71866199906],[-71.307131,41.72164799906],[-71.31482,41.72380799906],[-71.324188,41.72538199906],[-71.339456,41.72484099906],[-71.341119,41.72909799906],[-71.341119,41.73477399906],[-71.344447,41.73619299906],[-71.34825,41.74204599906],[-71.35229,41.74506099906],[-71.359896,41.74506099906],[-71.359421,41.74665699906],[-71.360134,41.74949399906],[-71.362348,41.75088999906],[-71.360847,41.75516799906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44033","name":"33","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.694961,41.67542799906],[-71.694122,41.68122099906],[-71.690369,41.68120099906],[-71.687508,41.68162299906],[-71.680855,41.68502499906],[-71.677742,41.68596799906],[-71.67498,41.68784199906],[-71.674217,41.69097499906],[-71.666061,41.69089899906],[-71.662308,41.69105399906],[-71.658211,41.69159899906],[-71.654625,41.69246099906],[-71.650795,41.69380099906],[-71.635291,41.70105699906],[-71.631271,41.70266599906],[-71.628375,41.70341999906],[-71.62847,41.70363199906],[-71.628391,41.70365199906],[-71.620873,41.70429499906],[-71.614372,41.70381799906],[-71.595487,41.69999699906],[-71.593964,41.69900299906],[-71.59436,41.69515299906],[-71.595156,41.69384599906],[-71.593487,41.69304399906],[-71.59253,41.69357299906],[-71.592575,41.69321599906],[-71.592079,41.69347899906],[-71.591667,41.69412799906],[-71.592194,41.69456599906],[-71.591721,41.69478899906],[-71.591202,41.69546699906],[-71.589897,41.69564899906],[-71.589317,41.69351499906],[-71.587028,41.69362899906],[-71.586388,41.69435099906],[-71.581856,41.69478599906],[-71.582176,41.69586399906],[-71.580833,41.69659199906],[-71.579773,41.69511599906],[-71.577896,41.69523499906],[-71.577141,41.69397699906],[-71.574692,41.69248299906],[-71.575356,41.69109499906],[-71.574692,41.69006099906],[-71.572502,41.69014099906],[-71.573136,41.68977099906],[-71.574997,41.68899099906],[-71.578461,41.68656699906],[-71.577469,41.68141599906],[-71.580783,41.67901799906],[-71.580032,41.67904799906],[-71.575305,41.67993599906],[-71.56974,41.68168299906],[-71.564873,41.68454299906],[-71.560982,41.68376599906],[-71.560707,41.68382599906],[-71.560839,41.68591299906],[-71.560841,41.68599399906],[-71.560041,41.69049299906],[-71.558354,41.69102299906],[-71.557098,41.69175499906],[-71.557785,41.69430599906],[-71.557976,41.69600899906],[-71.55764,41.70010499906],[-71.557533,41.70906899906],[-71.557869,41.71000199906],[-71.558571,41.71196299906],[-71.557739,41.71756599906],[-71.560074,41.72415099906],[-71.562882,41.72820899906],[-71.562938,41.72967199906],[-71.550038,41.72998499906],[-71.54743,41.73002499906],[-71.547353,41.73120299906],[-71.545807,41.73009699906],[-71.534286,41.73017099906],[-71.534055,41.72220399906],[-71.534015,41.72114199906],[-71.533883,41.71767999906],[-71.533774,41.71372699906],[-71.533541,41.70845899906],[-71.53346,41.70538099906],[-71.533302,41.70094599906],[-71.533113,41.69558999906],[-71.533109,41.69532999906],[-71.533009,41.68849799906],[-71.532875,41.68192099906],[-71.532968,41.68021599906],[-71.532988,41.67977199906],[-71.533182,41.67208599906],[-71.533379,41.66215599906],[-71.541475,41.66197699906],[-71.547113,41.66185099906],[-71.547041,41.65938599906],[-71.546625,41.64628299906],[-71.546417,41.64208499906],[-71.546092,41.62576099906],[-71.544807,41.60199299906],[-71.643354,41.60096199906],[-71.643983,41.60097899906],[-71.653019,41.59882799906],[-71.65357,41.59870099906],[-71.659395,41.59869199906],[-71.657632,41.60350099906],[-71.655098,41.60934499906],[-71.653176,41.61278799906],[-71.650213,41.61591499906],[-71.646035,41.61942299906],[-71.642235,41.62302799906],[-71.636665,41.62943999906],[-71.629532,41.63509599906],[-71.625655,41.63958599906],[-71.623238,41.64199999906],[-71.613754,41.64886999906],[-71.614464,41.64966599906],[-71.621216,41.65233599906],[-71.623474,41.65213099906],[-71.621857,41.65297899906],[-71.620399,41.65614199906],[-71.622307,41.65755299906],[-71.622871,41.65968299906],[-71.665939,41.65869199906],[-71.666039,41.65872099906],[-71.694939,41.65842399906],[-71.695046,41.67437699906],[-71.694961,41.67542799906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44034","name":"34","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.803475,41.40406499906],[-71.798805,41.40499499906],[-71.79598,41.40728899906],[-71.797264,41.40724899906],[-71.798374,41.40891899906],[-71.796978,41.41144299906],[-71.797124,41.41369299906],[-71.796318,41.41622399906],[-71.79767369255,41.41691041756],[-71.79723545398,41.42639414864],[-71.79673945896,41.4371277619],[-71.79648590811,41.44261474607],[-71.7956834365,41.45998068665],[-71.79498466265,41.47510254884],[-71.79356831589,41.50575309554],[-71.7925957022,41.52680100701],[-71.79170363083,41.54610593728],[-71.79050845462,41.57197022784],[-71.78935867274,41.59685215941],[-71.789356,41.59690999906],[-71.7878551986,41.63445036681],[-71.785248,41.63493199906],[-71.781784,41.63343099906],[-71.78093,41.63469899906],[-71.776367,41.63359799906],[-71.771011,41.63355599906],[-71.767143,41.63682799906],[-71.766098,41.63539399906],[-71.763214,41.63358599906],[-71.760589,41.62754299906],[-71.756843,41.63126699906],[-71.755951,41.63499399906],[-71.752075,41.63779399906],[-71.74781,41.63896699906],[-71.744301,41.63916399906],[-71.742088,41.63804099906],[-71.728722,41.63372599906],[-71.723244,41.63300499906],[-71.722153,41.63380099906],[-71.720299,41.63204799906],[-71.719833,41.62926699906],[-71.718292,41.62829499906],[-71.718239,41.62679699906],[-71.716881,41.62591499906],[-71.717415,41.62505999906],[-71.715592,41.62509799906],[-71.71521,41.62389199906],[-71.711739,41.62408599906],[-71.709343,41.62503899906],[-71.705925,41.62564599906],[-71.706818,41.62708399906],[-71.706368,41.62930099906],[-71.69912,41.63246199906],[-71.695961,41.63267499906],[-71.692329,41.63509799906],[-71.686134,41.63523799906],[-71.682526,41.62902299906],[-71.679062,41.62520799906],[-71.676842,41.62521999906],[-71.672913,41.62590099906],[-71.670296,41.62477299906],[-71.667473,41.62281199906],[-71.664917,41.62165999906],[-71.661156,41.62165299906],[-71.657272,41.62127899906],[-71.652382,41.62001799906],[-71.649155,41.62001199906],[-71.646035,41.61942299906],[-71.650213,41.61591499906],[-71.653176,41.61278799906],[-71.655098,41.60934499906],[-71.657632,41.60350099906],[-71.659395,41.59869199906],[-71.65357,41.59870099906],[-71.653019,41.59882799906],[-71.643983,41.60097899906],[-71.643354,41.60096199906],[-71.544807,41.60199299906],[-71.522429,41.60256599906],[-71.521904,41.60084199906],[-71.518433,41.59403999906],[-71.51812,41.59220799906],[-71.517926,41.57726499906],[-71.518183,41.57558899906],[-71.51886,41.56468399906],[-71.519159,41.55791399906],[-71.51918,41.55633199906],[-71.519566,41.52992499906],[-71.518298,41.52734799906],[-71.512225,41.51531499906],[-71.510155,41.50898399906],[-71.507886,41.50005999906],[-71.514896,41.50134099906],[-71.530528,41.50375199906],[-71.557099,41.51058199906],[-71.586982,41.51821299906],[-71.592394,41.51989199906],[-71.613042,41.52512099906],[-71.609332,41.50665699906],[-71.608322,41.50262299906],[-71.607724,41.50247999906],[-71.607486,41.50092799906],[-71.609517,41.49802299906],[-71.608745,41.49698199906],[-71.60893,41.49536599906],[-71.60769,41.49380399906],[-71.608645,41.49287399906],[-71.608014,41.48947599906],[-71.608914,41.48773699906],[-71.606264,41.48750399906],[-71.604273,41.48645099906],[-71.60405,41.48521799906],[-71.602006,41.48338499906],[-71.602665,41.48212199906],[-71.60099,41.48065899906],[-71.601182,41.47778599906],[-71.603944,41.47763199906],[-71.605898,41.47566899906],[-71.605019,41.47307199906],[-71.602385,41.47108999906],[-71.602046,41.46942699906],[-71.599174,41.46675499906],[-71.596917,41.46138899906],[-71.598548,41.45981999906],[-71.598628,41.45804199906],[-71.602462,41.45640499906],[-71.604415,41.45506599906],[-71.605182,41.45375499906],[-71.607325,41.45251499906],[-71.608912,41.45222699906],[-71.607136,41.45100499906],[-71.603749,41.45000199906],[-71.602799,41.44933199906],[-71.601283,41.45027799906],[-71.599519,41.44990899906],[-71.596287,41.44751999906],[-71.595141,41.44622499906],[-71.600087,41.43249399906],[-71.606228,41.41540799906],[-71.614031,41.39349499906],[-71.629379,41.38745499906],[-71.635124,41.38455599906],[-71.636673,41.38409399906],[-71.638206,41.38401399906],[-71.640505,41.38443999906],[-71.642121,41.38480299906],[-71.647717,41.38595799906],[-71.653523,41.38559999906],[-71.657711,41.38513699906],[-71.659784,41.38472599906],[-71.660789,41.38517799906],[-71.661316,41.38539099906],[-71.66426,41.38560999906],[-71.668137,41.38608899906],[-71.670937,41.38727999906],[-71.671654,41.38713799906],[-71.67308,41.38713499906],[-71.67395,41.38742399906],[-71.675774,41.38850399906],[-71.676845,41.38903999906],[-71.678444,41.39033499906],[-71.679489,41.39207199906],[-71.680305,41.39336799906],[-71.680229,41.39399699906],[-71.679703,41.39572899906],[-71.680214,41.39749099906],[-71.680132,41.39802799906],[-71.679611,41.40075199906],[-71.680199,41.40304199906],[-71.679282,41.40653499906],[-71.680199,41.40878299906],[-71.683281,41.41044999906],[-71.686119,41.41028199906],[-71.687511,41.40983299906],[-71.69381,41.40876799906],[-71.69754,41.41061399906],[-71.701103,41.41191099906],[-71.704536,41.41464199906],[-71.706673,41.41936099906],[-71.71257,41.41907099906],[-71.715233,41.42108499906],[-71.716314,41.42093999906],[-71.717876,41.41736899906],[-71.719113,41.41548399906],[-71.721613,41.41327299906],[-71.727412,41.41022199906],[-71.723398,41.40797099906],[-71.723558,41.40435699906],[-71.727462,41.40170299906],[-71.727945,41.39668199906],[-71.728612,41.39779999906],[-71.731252,41.39851399906],[-71.733637,41.39870099906],[-71.735084,41.39966199906],[-71.731097,41.40080099906],[-71.738349,41.40032899906],[-71.739931,41.40171399906],[-71.742097,41.40130199906],[-71.745364,41.40233299906],[-71.746873,41.40337199906],[-71.748282,41.40519299906],[-71.747855,41.40670799906],[-71.750471,41.40782199906],[-71.755147,41.40797699906],[-71.755945,41.40766099906],[-71.758187,41.40413999906],[-71.761329,41.40169799906],[-71.763317,41.40130499906],[-71.764487,41.39859999906],[-71.765658,41.39625299906],[-71.768069,41.39481799906],[-71.769598,41.39780899906],[-71.769442,41.39679999906],[-71.770547,41.39817199906],[-71.769471,41.39948399906],[-71.76718,41.39920599906],[-71.771103,41.40138999906],[-71.772674,41.40040399906],[-71.771528,41.39705999906],[-71.774179,41.39541199906],[-71.776231,41.39352099906],[-71.777808,41.39325599906],[-71.779007,41.39454599906],[-71.780783,41.39348799906],[-71.778765,41.38963599906],[-71.779222,41.38727699906],[-71.780421,41.38708399906],[-71.780455,41.38871099906],[-71.782037,41.38857699906],[-71.78264,41.38675199906],[-71.784125,41.38694499906],[-71.7852,41.38953199906],[-71.786664,41.38970999906],[-71.788774,41.39107999906],[-71.790029,41.39262299906],[-71.792265,41.39214199906],[-71.796494,41.39286299906],[-71.797223,41.39320899906],[-71.798463,41.39556299906],[-71.798072,41.39669399906],[-71.794371,41.39703499906],[-71.794711,41.39792699906],[-71.797264,41.39853399906],[-71.799756,41.39858899906],[-71.799824,41.39933199906],[-71.800536,41.40110599906],[-71.803475,41.40406499906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44035","name":"35","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.547113,41.66185099906],[-71.541475,41.66197699906],[-71.533379,41.66215599906],[-71.499225,41.66294799906],[-71.490206,41.66319299906],[-71.45853,41.66373399906],[-71.45829,41.66370499906],[-71.451218,41.66392299906],[-71.450127,41.66396399906],[-71.445572,41.66406599906],[-71.44493240215,41.66402899906],[-71.444801,41.66380099906],[-71.443541,41.66301899906],[-71.44237693746,41.66361147598],[-71.443021,41.66019999906],[-71.446018,41.65537599906],[-71.449315,41.65256599906],[-71.450376,41.65144899906],[-71.452157,41.64849199906],[-71.454876,41.64744499906],[-71.458017,41.64980899906],[-71.458654,41.64926599906],[-71.465652,41.64309799906],[-71.464831,41.63890399906],[-71.468692,41.63859399906],[-71.467844,41.63416499906],[-71.463436,41.63654399906],[-71.462354,41.63837999906],[-71.459123,41.63794599906],[-71.458324,41.63636599906],[-71.45558,41.63510899906],[-71.45423,41.63295299906],[-71.454404,41.63120199906],[-71.45311,41.62985899906],[-71.453041,41.62743399906],[-71.44854,41.62719699906],[-71.448074,41.62475599906],[-71.446044,41.62247199906],[-71.449169,41.62235699906],[-71.450959,41.62167199906],[-71.452805,41.61937799906],[-71.455963,41.61936599906],[-71.458317,41.62116799906],[-71.457721,41.61462999906],[-71.45764,41.61377999906],[-71.456979,41.61067599906],[-71.455732,41.60716599906],[-71.454637,41.60370699906],[-71.454669,41.60261199906],[-71.454687,41.60229099906],[-71.45491,41.59892999906],[-71.458832,41.58509799906],[-71.459231,41.58361099906],[-71.462374,41.58441999906],[-71.46515,41.58332699906],[-71.468319,41.58462199906],[-71.471906,41.58391199906],[-71.475333,41.58601399906],[-71.479647,41.58660999906],[-71.481017,41.58449299906],[-71.485191,41.58483799906],[-71.486611,41.58381299906],[-71.489727,41.58402499906],[-71.495073,41.57342799906],[-71.492371,41.57063299906],[-71.491296,41.56815499906],[-71.488618,41.55709899906],[-71.488022,41.55523899906],[-71.487302,41.55398499906],[-71.485412,41.55143499906],[-71.485285,41.55149199906],[-71.483864,41.54984999906],[-71.476875,41.54526499906],[-71.469025,41.54051599906],[-71.468605,41.53997799906],[-71.468498,41.53608299906],[-71.465988,41.53005999906],[-71.46258,41.53074899906],[-71.459907,41.53102399906],[-71.45945,41.52794999906],[-71.458832,41.52689799906],[-71.456251,41.52776299906],[-71.454008,41.52514399906],[-71.453281,41.52276299906],[-71.450712,41.52073199906],[-71.447924,41.52185199906],[-71.444457,41.52130799906],[-71.444673,41.51975299906],[-71.447218,41.51748699906],[-71.443916,41.51547999906],[-71.444763,41.51242299906],[-71.448313,41.50981199906],[-71.448522,41.50797399906],[-71.449589,41.50730999906],[-71.447758,41.50590699906],[-71.448148,41.50278999906],[-71.450101,41.50180099906],[-71.446657,41.48907699906],[-71.447047,41.48832999906],[-71.447922,41.48644299906],[-71.447362,41.48124899906],[-71.448703,41.47500699906],[-71.4496,41.47240099906],[-71.448398,41.46872899906],[-71.449924,41.46595199906],[-71.451137,41.46160399906],[-71.450869,41.45790999906],[-71.451617,41.45315699906],[-71.4526,41.45220199906],[-71.464283,41.44354299906],[-71.466022,41.44256299906],[-71.46801,41.44177699906],[-71.469497,41.44129499906],[-71.4727,41.44001499906],[-71.474835,41.43889099906],[-71.475075,41.43887699906],[-71.483326,41.43542099906],[-71.487704,41.43214899906],[-71.489553,41.43191099906],[-71.489991,41.43171399906],[-71.491614,41.42997999906],[-71.491758,41.42976499906],[-71.493622,41.42971799906],[-71.497627,41.43273199906],[-71.500346,41.42971799906],[-71.501733,41.43311399906],[-71.502084,41.43356199906],[-71.502566,41.43499199906],[-71.501403,41.43700899906],[-71.501755,41.43680199906],[-71.502319,41.43925899906],[-71.502289,41.44159299906],[-71.500423,41.44166699906],[-71.498518,41.43913899906],[-71.497872,41.43891199906],[-71.497173,41.43876199906],[-71.496589,41.43873899906],[-71.495183,41.43889299906],[-71.495499,41.44078399906],[-71.488457,41.44151299906],[-71.480339,41.44247799906],[-71.477997,41.44396999906],[-71.4746,41.44725599906],[-71.46965,41.45227799906],[-71.469097,41.45425999906],[-71.468704,41.45600699906],[-71.463613,41.46621199906],[-71.463532,41.46642399906],[-71.461315,41.47089999906],[-71.460968,41.47418999906],[-71.460373,41.47709699906],[-71.456711,41.49201199906],[-71.456512,41.49398799906],[-71.456825,41.49583099906],[-71.458115,41.49906899906],[-71.491864,41.49721899906],[-71.497304,41.49815599906],[-71.503438,41.49970099906],[-71.507886,41.50005999906],[-71.510155,41.50898399906],[-71.512225,41.51531499906],[-71.518298,41.52734799906],[-71.519566,41.52992499906],[-71.51918,41.55633199906],[-71.519159,41.55791399906],[-71.51886,41.56468399906],[-71.518183,41.57558899906],[-71.517926,41.57726499906],[-71.51812,41.59220799906],[-71.518433,41.59403999906],[-71.521904,41.60084199906],[-71.522429,41.60256599906],[-71.544807,41.60199299906],[-71.546092,41.62576099906],[-71.546417,41.64208499906],[-71.546625,41.64628299906],[-71.547041,41.65938599906],[-71.547113,41.66185099906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44036","name":"36","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.52280361357,41.37668988112],[-71.519392,41.38020399906],[-71.517312,41.38213599906],[-71.51464,41.38478999906],[-71.50839,41.39919799906],[-71.504827,41.40751199906],[-71.503202,41.41760099906],[-71.497101,41.41750199906],[-71.495801,41.42260099906],[-71.495501,41.42410099906],[-71.494802,41.42730099906],[-71.491758,41.42976499906],[-71.491614,41.42997999906],[-71.489991,41.43171399906],[-71.489553,41.43191099906],[-71.487704,41.43214899906],[-71.483326,41.43542099906],[-71.475075,41.43887699906],[-71.474835,41.43889099906],[-71.4727,41.44001499906],[-71.469497,41.44129499906],[-71.46801,41.44177699906],[-71.466022,41.44256299906],[-71.464283,41.44354299906],[-71.4526,41.45220199906],[-71.451617,41.45315699906],[-71.450869,41.45790999906],[-71.451137,41.46160399906],[-71.449924,41.46595199906],[-71.448398,41.46872899906],[-71.4496,41.47240099906],[-71.448703,41.47500699906],[-71.447362,41.48124899906],[-71.447922,41.48644299906],[-71.447047,41.48832999906],[-71.446657,41.48907699906],[-71.450101,41.50180099906],[-71.448148,41.50278999906],[-71.447758,41.50590699906],[-71.449589,41.50730999906],[-71.448522,41.50797399906],[-71.448313,41.50981199906],[-71.444763,41.51242299906],[-71.443916,41.51547999906],[-71.447218,41.51748699906],[-71.444673,41.51975299906],[-71.444457,41.52130799906],[-71.447924,41.52185199906],[-71.450712,41.52073199906],[-71.453281,41.52276299906],[-71.454008,41.52514399906],[-71.456251,41.52776299906],[-71.458832,41.52689799906],[-71.45945,41.52794999906],[-71.459907,41.53102399906],[-71.46258,41.53074899906],[-71.465988,41.53005999906],[-71.468498,41.53608299906],[-71.468605,41.53997799906],[-71.469025,41.54051599906],[-71.476875,41.54526499906],[-71.483864,41.54984999906],[-71.485285,41.55149199906],[-71.485412,41.55143499906],[-71.487302,41.55398499906],[-71.488022,41.55523899906],[-71.488618,41.55709899906],[-71.491296,41.56815499906],[-71.492371,41.57063299906],[-71.495073,41.57342799906],[-71.489727,41.58402499906],[-71.486611,41.58381299906],[-71.485191,41.58483799906],[-71.481017,41.58449299906],[-71.479647,41.58660999906],[-71.475333,41.58601399906],[-71.471906,41.58391199906],[-71.468319,41.58462199906],[-71.46515,41.58332699906],[-71.462374,41.58441999906],[-71.459231,41.58361099906],[-71.458832,41.58509799906],[-71.45491,41.59892999906],[-71.454687,41.60229099906],[-71.454669,41.60261199906],[-71.454637,41.60370699906],[-71.455732,41.60716599906],[-71.456979,41.61067599906],[-71.45764,41.61377999906],[-71.457721,41.61462999906],[-71.458317,41.62116799906],[-71.455963,41.61936599906],[-71.452805,41.61937799906],[-71.450959,41.62167199906],[-71.449169,41.62235699906],[-71.446044,41.62247199906],[-71.448074,41.62475599906],[-71.44854,41.62719699906],[-71.453041,41.62743399906],[-71.45311,41.62985899906],[-71.451366,41.62945499906],[-71.448447,41.63337699906],[-71.449286,41.63672999906],[-71.446277,41.63883699906],[-71.445084,41.64137299906],[-71.441986,41.64327499906],[-71.442717,41.64439799906],[-71.442508,41.64581799906],[-71.440925,41.64617999906],[-71.439301,41.64802299906],[-71.435944,41.64922299906],[-71.432796,41.65132299906],[-71.428941,41.65056899906],[-71.423884,41.65388799906],[-71.417581,41.65495199906],[-71.40887996267,41.65384065613],[-71.408893,41.65146599906],[-71.407525,41.63332599906],[-71.403154,41.62746799906],[-71.403392,41.62551299906],[-71.408621,41.62195999906],[-71.407907,41.61964999906],[-71.402441,41.61556299906],[-71.404342,41.61183199906],[-71.409571,41.61040999906],[-71.411948,41.61112099906],[-71.416939,41.60490099906],[-71.414325,41.60258999906],[-71.403613,41.60295899906],[-71.403392,41.60063499906],[-71.40377,41.58932099906],[-71.410997,41.58659299906],[-71.419584,41.58578099906],[-71.430249,41.58339299906],[-71.439519,41.57734799906],[-71.438806,41.58143699906],[-71.440945,41.58499299906],[-71.446412,41.58321499906],[-71.444272,41.57894799906],[-71.44705,41.57842899906],[-71.446412,41.57450299906],[-71.443322,41.57308099906],[-71.438093,41.57059099906],[-71.444091,41.56804299906],[-71.443831,41.56606799906],[-71.442157,41.56381599906],[-71.439064,41.56367999906],[-71.437356,41.56222299906],[-71.435179,41.56213199906],[-71.434371,41.56163299906],[-71.435227,41.55954099906],[-71.434783,41.55809699906],[-71.432716,41.55738399906],[-71.430175,41.55823699906],[-71.428407,41.55708499906],[-71.427873,41.55547499906],[-71.431045,41.55010299906],[-71.428646,41.54698599906],[-71.424777,41.54943099906],[-71.423357,41.54818199906],[-71.426671,41.54356299906],[-71.423119,41.53875399906],[-71.417652,41.53626299906],[-71.418128,41.53217099906],[-71.415513,41.52985799906],[-71.415911,41.52794099906],[-71.414825,41.52312599906],[-71.414937,41.51630299906],[-71.421425,41.49862899906],[-71.420858,41.49321499906],[-71.418603,41.49212599906],[-71.420759,41.48997899906],[-71.420267,41.48357999906],[-71.417957,41.48207299906],[-71.417621,41.47793399906],[-71.418404,41.47265199906],[-71.421157,41.46988799906],[-71.422991,41.47268199906],[-71.427635,41.47253999906],[-71.430744,41.47063599906],[-71.430926,41.46565499906],[-71.430012,41.46114099906],[-71.426684,41.45882499906],[-71.425817,41.45600199906],[-71.426855,41.45412699906],[-71.430259,41.45303599906],[-71.432087,41.44938899906],[-71.431137,41.44730099906],[-71.433612,41.44499499906],[-71.438129,41.44165399906],[-71.43833,41.43958499906],[-71.4406,41.43836799906],[-71.442223,41.43972099906],[-71.442788,41.44139799906],[-71.448948,41.43847899906],[-71.455845,41.43298599906],[-71.455004,41.43031799906],[-71.455388,41.42800499906],[-71.45482,41.42182099906],[-71.452643,41.41777999906],[-71.452639,41.41475799906],[-71.452974,41.40967599906],[-71.455371,41.40796199906],[-71.456211,41.40512299906],[-71.459242,41.40311899906],[-71.462325,41.40127599906],[-71.462523,41.39822399906],[-71.463743,41.39575299906],[-71.467312,41.39495099906],[-71.468984,41.39362099906],[-71.474918,41.38610399906],[-71.484203,41.37184199906],[-71.48294,41.36592899906],[-71.480439,41.36241599906],[-71.480875,41.36024799906],[-71.484658,41.36143599906],[-71.487696,41.36148699906],[-71.489218,41.36237299906],[-71.488956,41.36435099906],[-71.494898,41.36827499906],[-71.497275,41.37130699906],[-71.502926,41.37419999906],[-71.513401,41.37523699906],[-71.520163,41.37652299906],[-71.52280361357,41.37668988112]],[[-71.613133,41.16028099907],[-71.610529,41.16264299907],[-71.610572,41.16837399906],[-71.609353,41.17172699906],[-71.607985,41.17286199906],[-71.607794,41.17539899906],[-71.605565,41.18213899906],[-71.601294,41.18321299906],[-71.597457,41.18518599906],[-71.594994,41.18839199906],[-71.593419,41.19144499906],[-71.592944,41.19891099906],[-71.58955,41.19655699906],[-71.585853,41.20024899906],[-71.580634,41.20337399906],[-71.578519,41.20907999906],[-71.576924,41.21102399906],[-71.576725,41.21573799906],[-71.576319,41.22490999906],[-71.577691,41.23123199906],[-71.574376,41.22783799906],[-71.570301,41.22534199906],[-71.567977,41.22467299906],[-71.565785,41.22494999906],[-71.562546,41.22421699906],[-71.55991,41.22163199906],[-71.55862,41.21919299906],[-71.555861,41.21663699906],[-71.554067,41.21295699906],[-71.555564,41.20831499906],[-71.557951,41.20451499906],[-71.561372,41.20060099906],[-71.564119,41.19537199906],[-71.566405,41.18820699906],[-71.566345,41.18427699906],[-71.564667,41.17967399906],[-71.561299,41.17576499906],[-71.55791,41.17301799906],[-71.554627,41.17342299906],[-71.552889,41.16911699906],[-71.550226,41.16678699906],[-71.544446,41.16491199907],[-71.545594,41.16345299907],[-71.543872,41.16132099907],[-71.545434,41.15996099907],[-71.545468,41.15748599907],[-71.547051,41.15368399907],[-71.551953,41.15171799907],[-71.556527,41.15156899907],[-71.561479,41.15049099907],[-71.56589,41.14900899907],[-71.568668,41.14936799907],[-71.575549,41.14824099907],[-71.578573,41.14761999907],[-71.580505,41.14909199907],[-71.584674,41.14822199907],[-71.587375,41.14806199907],[-71.5937,41.14633899907],[-71.595495,41.14737099907],[-71.599993,41.14693199907],[-71.611567,41.15390499907],[-71.613133,41.16028099907]]]]}}},{"type":"SLDU","affgeoid":"610U800US44037","name":"37","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.613042,41.52512099906],[-71.592394,41.51989199906],[-71.586982,41.51821299906],[-71.557099,41.51058199906],[-71.530528,41.50375199906],[-71.514896,41.50134099906],[-71.507886,41.50005999906],[-71.503438,41.49970099906],[-71.497304,41.49815599906],[-71.491864,41.49721899906],[-71.458115,41.49906899906],[-71.456825,41.49583099906],[-71.456512,41.49398799906],[-71.456711,41.49201199906],[-71.460373,41.47709699906],[-71.460968,41.47418999906],[-71.461315,41.47089999906],[-71.463532,41.46642399906],[-71.463613,41.46621199906],[-71.468704,41.45600699906],[-71.469097,41.45425999906],[-71.46965,41.45227799906],[-71.4746,41.44725599906],[-71.477997,41.44396999906],[-71.480339,41.44247799906],[-71.488457,41.44151299906],[-71.495499,41.44078399906],[-71.495183,41.43889299906],[-71.496589,41.43873899906],[-71.497173,41.43876199906],[-71.497872,41.43891199906],[-71.498518,41.43913899906],[-71.500423,41.44166699906],[-71.502289,41.44159299906],[-71.502319,41.43925899906],[-71.501755,41.43680199906],[-71.501403,41.43700899906],[-71.502566,41.43499199906],[-71.502084,41.43356199906],[-71.501733,41.43311399906],[-71.500346,41.42971799906],[-71.497627,41.43273199906],[-71.493622,41.42971799906],[-71.491758,41.42976499906],[-71.494802,41.42730099906],[-71.495501,41.42410099906],[-71.495801,41.42260099906],[-71.497101,41.41750199906],[-71.503202,41.41760099906],[-71.504827,41.40751199906],[-71.50839,41.39919799906],[-71.51464,41.38478999906],[-71.517312,41.38213599906],[-71.519392,41.38020399906],[-71.52280361357,41.37668988112],[-71.52423907471,41.3767805997],[-71.526429,41.37691899906],[-71.531546,41.37649299906],[-71.535372,41.37496399906],[-71.537237,41.37332899906],[-71.540901,41.37301099906],[-71.545289,41.37403899906],[-71.551566,41.37442299906],[-71.586094,41.36808999906],[-71.594756,41.36516199906],[-71.598051,41.36506399906],[-71.5999408655,41.36481286829],[-71.601143,41.37008699906],[-71.601151,41.37210799906],[-71.601791,41.37549199906],[-71.602165,41.38134799906],[-71.603058,41.38157299906],[-71.603165,41.38537999906],[-71.604485,41.38777899906],[-71.605111,41.39332599906],[-71.600357,41.39467999906],[-71.597604,41.39501599906],[-71.587401,41.39557899906],[-71.57553,41.39477899906],[-71.573463,41.39481199906],[-71.571458,41.39505299906],[-71.576128,41.39500099906],[-71.57561,41.39522399906],[-71.576477,41.40005099906],[-71.575904,41.40151199906],[-71.573522,41.40074699906],[-71.570133,41.40057799906],[-71.569206,41.40313699906],[-71.569191,41.40516299906],[-71.571121,41.40835599906],[-71.574303,41.41097599906],[-71.576057,41.41614899906],[-71.583061,41.41658799906],[-71.582264,41.42079199906],[-71.59583,41.42130599906],[-71.601649,41.41807699906],[-71.603199,41.41660999906],[-71.606228,41.41540799906],[-71.600087,41.43249399906],[-71.595141,41.44622499906],[-71.596287,41.44751999906],[-71.599519,41.44990899906],[-71.601283,41.45027799906],[-71.602799,41.44933199906],[-71.603749,41.45000199906],[-71.607136,41.45100499906],[-71.608912,41.45222699906],[-71.607325,41.45251499906],[-71.605182,41.45375499906],[-71.604415,41.45506599906],[-71.602462,41.45640499906],[-71.598628,41.45804199906],[-71.598548,41.45981999906],[-71.596917,41.46138899906],[-71.599174,41.46675499906],[-71.602046,41.46942699906],[-71.602385,41.47108999906],[-71.605019,41.47307199906],[-71.605898,41.47566899906],[-71.603944,41.47763199906],[-71.601182,41.47778599906],[-71.60099,41.48065899906],[-71.602665,41.48212199906],[-71.602006,41.48338499906],[-71.60405,41.48521799906],[-71.604273,41.48645099906],[-71.606264,41.48750399906],[-71.608914,41.48773699906],[-71.608014,41.48947599906],[-71.608645,41.49287399906],[-71.60769,41.49380399906],[-71.60893,41.49536599906],[-71.608745,41.49698199906],[-71.609517,41.49802299906],[-71.607486,41.50092799906],[-71.607724,41.50247999906],[-71.608322,41.50262299906],[-71.609332,41.50665699906],[-71.613042,41.52512099906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44038","name":"38","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.862109,41.31661199906],[-71.860513,41.32024799906],[-71.857458,41.32078899906],[-71.851923,41.32466399906],[-71.847709,41.32960399906],[-71.844666,41.33058499906],[-71.836156,41.33601299906],[-71.83061772372,41.34124704635],[-71.829384,41.34241299906],[-71.829902,41.34663599906],[-71.831303,41.35129499906],[-71.835703,41.35356799906],[-71.836768,41.35510299906],[-71.837873,41.36014499906],[-71.83773172145,41.36329668814],[-71.83771339082,41.36370561389],[-71.837633,41.36549899906],[-71.83558816822,41.36706866834],[-71.83494691638,41.36756091094],[-71.832499,41.36943999906],[-71.83210776209,41.37008426103],[-71.83201075958,41.37024399768],[-71.831613,41.37089899906],[-71.83207658003,41.37296217051],[-71.832674,41.37562099906],[-71.83131395979,41.37772482169],[-71.830637,41.37877199906],[-71.83164333776,41.38002244502],[-71.833531,41.38236799906],[-71.83300056282,41.3852672379],[-71.832655,41.38715599906],[-71.835204,41.38955799906],[-71.83817,41.39059499906],[-71.83863230444,41.39115102491],[-71.8410615506,41.39407274384],[-71.842131,41.39535899906],[-71.842244,41.39687899906],[-71.84115,41.39922999906],[-71.841726,41.40324099906],[-71.843256,41.40446099906],[-71.843472,41.40582999906],[-71.84281656981,41.40873220644],[-71.842563,41.40985499906],[-71.839649,41.41211899906],[-71.836883,41.41222799906],[-71.834107,41.41158199906],[-71.827902,41.41433399906],[-71.824573,41.41523499906],[-71.823873,41.41716399906],[-71.82033,41.41938199906],[-71.816904,41.41992699906],[-71.8129,41.41940399906],[-71.806812,41.41667299906],[-71.803684,41.41742799906],[-71.801439,41.41554499906],[-71.797683,41.41670899906],[-71.79767369255,41.41691041756],[-71.796318,41.41622399906],[-71.797124,41.41369299906],[-71.796978,41.41144299906],[-71.798374,41.40891899906],[-71.797264,41.40724899906],[-71.79598,41.40728899906],[-71.798805,41.40499499906],[-71.803475,41.40406499906],[-71.800536,41.40110599906],[-71.799824,41.39933199906],[-71.799756,41.39858899906],[-71.797264,41.39853399906],[-71.794711,41.39792699906],[-71.794371,41.39703499906],[-71.798072,41.39669399906],[-71.798463,41.39556299906],[-71.797223,41.39320899906],[-71.796494,41.39286299906],[-71.792265,41.39214199906],[-71.790029,41.39262299906],[-71.788774,41.39107999906],[-71.786664,41.38970999906],[-71.7852,41.38953199906],[-71.784125,41.38694499906],[-71.78264,41.38675199906],[-71.782037,41.38857699906],[-71.780455,41.38871099906],[-71.780421,41.38708399906],[-71.779222,41.38727699906],[-71.778765,41.38963599906],[-71.780783,41.39348799906],[-71.779007,41.39454599906],[-71.777808,41.39325599906],[-71.776231,41.39352099906],[-71.774179,41.39541199906],[-71.771528,41.39705999906],[-71.772674,41.40040399906],[-71.771103,41.40138999906],[-71.76718,41.39920599906],[-71.769471,41.39948399906],[-71.770547,41.39817199906],[-71.769442,41.39679999906],[-71.769598,41.39780899906],[-71.768069,41.39481799906],[-71.765658,41.39625299906],[-71.764487,41.39859999906],[-71.763317,41.40130499906],[-71.761329,41.40169799906],[-71.758187,41.40413999906],[-71.755945,41.40766099906],[-71.755147,41.40797699906],[-71.750471,41.40782199906],[-71.747855,41.40670799906],[-71.748282,41.40519299906],[-71.746873,41.40337199906],[-71.745364,41.40233299906],[-71.742097,41.40130199906],[-71.739931,41.40171399906],[-71.738349,41.40032899906],[-71.731097,41.40080099906],[-71.735084,41.39966199906],[-71.733637,41.39870099906],[-71.731252,41.39851399906],[-71.728612,41.39779999906],[-71.727945,41.39668199906],[-71.727462,41.40170299906],[-71.723558,41.40435699906],[-71.723398,41.40797099906],[-71.727412,41.41022199906],[-71.721613,41.41327299906],[-71.719113,41.41548399906],[-71.717876,41.41736899906],[-71.716314,41.42093999906],[-71.715233,41.42108499906],[-71.71257,41.41907099906],[-71.706673,41.41936099906],[-71.704536,41.41464199906],[-71.701103,41.41191099906],[-71.69754,41.41061399906],[-71.69381,41.40876799906],[-71.687511,41.40983299906],[-71.686119,41.41028199906],[-71.683281,41.41044999906],[-71.680199,41.40878299906],[-71.679282,41.40653499906],[-71.680199,41.40304199906],[-71.679611,41.40075199906],[-71.680132,41.39802799906],[-71.680214,41.39749099906],[-71.679703,41.39572899906],[-71.680229,41.39399699906],[-71.680305,41.39336799906],[-71.679489,41.39207199906],[-71.678444,41.39033499906],[-71.676845,41.38903999906],[-71.675774,41.38850399906],[-71.67395,41.38742399906],[-71.67308,41.38713499906],[-71.671654,41.38713799906],[-71.670937,41.38727999906],[-71.668137,41.38608899906],[-71.66426,41.38560999906],[-71.661316,41.38539099906],[-71.660789,41.38517799906],[-71.659784,41.38472599906],[-71.657711,41.38513699906],[-71.653523,41.38559999906],[-71.647717,41.38595799906],[-71.642121,41.38480299906],[-71.640505,41.38443999906],[-71.638206,41.38401399906],[-71.636673,41.38409399906],[-71.635124,41.38455599906],[-71.629379,41.38745499906],[-71.614031,41.39349499906],[-71.606228,41.41540799906],[-71.603199,41.41660999906],[-71.601649,41.41807699906],[-71.59583,41.42130599906],[-71.582264,41.42079199906],[-71.583061,41.41658799906],[-71.576057,41.41614899906],[-71.574303,41.41097599906],[-71.571121,41.40835599906],[-71.569191,41.40516299906],[-71.569206,41.40313699906],[-71.570133,41.40057799906],[-71.573522,41.40074699906],[-71.575904,41.40151199906],[-71.576477,41.40005099906],[-71.57561,41.39522399906],[-71.576128,41.39500099906],[-71.571458,41.39505299906],[-71.573463,41.39481199906],[-71.57553,41.39477899906],[-71.587401,41.39557899906],[-71.597604,41.39501599906],[-71.600357,41.39467999906],[-71.605111,41.39332599906],[-71.604485,41.38777899906],[-71.603165,41.38537999906],[-71.603058,41.38157299906],[-71.602165,41.38134799906],[-71.601791,41.37549199906],[-71.601151,41.37210799906],[-71.601143,41.37008699906],[-71.5999408655,41.36481286829],[-71.606487,41.36394299906],[-71.616506,41.36298899906],[-71.624158,41.36120999906],[-71.632989,41.35846199906],[-71.638315,41.35543399906],[-71.642851,41.35566199906],[-71.68807,41.34282299906],[-71.696688,41.34097799906],[-71.701631,41.33696799906],[-71.70517,41.33428499906],[-71.716036,41.33108899906],[-71.72074,41.33156699906],[-71.72427,41.33208899906],[-71.730717,41.33163999906],[-71.746758,41.32809499906],[-71.751656,41.32540199906],[-71.761029,41.32849299906],[-71.766395,41.32885799906],[-71.773702,41.32797699906],[-71.785957,41.32573899906],[-71.815337,41.32023799906],[-71.833755,41.31563099906],[-71.845285,41.31186999906],[-71.857432,41.30631799906],[-71.859899,41.30942399906],[-71.862772,41.30979099906],[-71.862109,41.31661199906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44004","name":"4","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.480139,41.86001099906],[-71.479988,41.86307099906],[-71.478745,41.86299099906],[-71.477722,41.86298799906],[-71.477722,41.86325799906],[-71.475967,41.86327399906],[-71.475967,41.86464299906],[-71.475763,41.86465199906],[-71.475279,41.86561699906],[-71.471928,41.86809599906],[-71.471573,41.86918699906],[-71.473966,41.86891299906],[-71.473602,41.87082299906],[-71.475526,41.87156999906],[-71.474826,41.87172699906],[-71.466759,41.87276699906],[-71.463265,41.87352899906],[-71.455584,41.87442899906],[-71.449154,41.87524199906],[-71.448158,41.87327599906],[-71.44735,41.87063199906],[-71.445267,41.87049299906],[-71.444588,41.86947599906],[-71.44416,41.86746599906],[-71.442825,41.86761899906],[-71.440636,41.86760299906],[-71.441116,41.86875499906],[-71.437798,41.87063999906],[-71.434326,41.87043399906],[-71.431236,41.87115899906],[-71.431679,41.87340899906],[-71.433654,41.87720999906],[-71.4219,41.87869499906],[-71.419876,41.86977399906],[-71.419594,41.86910999906],[-71.418624,41.86484899906],[-71.417418,41.85966599906],[-71.422155,41.86026599906],[-71.429906,41.86125499906],[-71.429451,41.85922999906],[-71.426628,41.85308099906],[-71.428825,41.85367599906],[-71.431679,41.85439099906],[-71.432587,41.85451099906],[-71.436264,41.85488099906],[-71.43792,41.85327099906],[-71.437141,41.85275299906],[-71.437912,41.85210399906],[-71.438942,41.84920099906],[-71.443214,41.85080299906],[-71.443985,41.85114699906],[-71.44976,41.85039899906],[-71.451668,41.84600099906],[-71.45211,41.84623299906],[-71.453819,41.84588999906],[-71.460292,41.84495699906],[-71.46456,41.84206599906],[-71.468742,41.83925999906],[-71.472459,41.83698099906],[-71.47331,41.83898199906],[-71.477216,41.83791099906],[-71.47764,41.84146899906],[-71.478659,41.84236899906],[-71.476372,41.84211699906],[-71.4729,41.84289899906],[-71.473892,41.84533699906],[-71.472267,41.84563799906],[-71.473709,41.84927399906],[-71.47345,41.84997899906],[-71.473938,41.85221099906],[-71.475281,41.85338999906],[-71.473638,41.85464899906],[-71.475105,41.85477099906],[-71.474846,41.85582399906],[-71.471931,41.85802499906],[-71.473007,41.85819199906],[-71.473503,41.85959599906],[-71.479385,41.85876799906],[-71.480034,41.85872699906],[-71.480139,41.86001099906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44005","name":"5","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.456497,41.83210799906],[-71.455154,41.83500299906],[-71.453629,41.83581899906],[-71.452911,41.83590699906],[-71.451157,41.83741799906],[-71.451607,41.83866099906],[-71.451706,41.83891299906],[-71.453819,41.84588999906],[-71.45211,41.84623299906],[-71.451668,41.84600099906],[-71.44976,41.85039899906],[-71.443985,41.85114699906],[-71.443214,41.85080299906],[-71.438942,41.84920099906],[-71.439713,41.84572599906],[-71.440102,41.84442899906],[-71.440498,41.84309399906],[-71.440552,41.84063299906],[-71.439728,41.83751699906],[-71.439171,41.83550599906],[-71.439117,41.83528099906],[-71.438538,41.83258399906],[-71.436523,41.83331699906],[-71.436409,41.83209599906],[-71.435585,41.83093599906],[-71.435326,41.83061999906],[-71.43515,41.83035299906],[-71.435013,41.83020399906],[-71.434868,41.82994499906],[-71.434723,41.82978099906],[-71.434212,41.82999399906],[-71.433304,41.82899899906],[-71.43177,41.82987199906],[-71.42836,41.83148999906],[-71.427765,41.83061999906],[-71.426605,41.82925799906],[-71.426568,41.82915499906],[-71.425421,41.82935299906],[-71.418152,41.82792499906],[-71.418839,41.82602299906],[-71.420158,41.82194099906],[-71.420057,41.82109699906],[-71.419351,41.81989499906],[-71.418335,41.81900799906],[-71.421898,41.81747799906],[-71.422333,41.81741299906],[-71.428406,41.81691699906],[-71.426933,41.81395699906],[-71.429588,41.81260299906],[-71.431061,41.81185899906],[-71.431168,41.81188999906],[-71.435684,41.81177099906],[-71.438164,41.81188599906],[-71.437604,41.81417499906],[-71.436916,41.81547399906],[-71.437042,41.81585699906],[-71.438858,41.81576899906],[-71.439534,41.81596199906],[-71.437881,41.81951099906],[-71.435852,41.82248699906],[-71.43364,41.82421899906],[-71.435493,41.82446299906],[-71.439476,41.82456199906],[-71.441566,41.82467999906],[-71.443398,41.82477999906],[-71.444626,41.82485199906],[-71.448631,41.82506599906],[-71.452202,41.82523699906],[-71.452171,41.82570299906],[-71.452255,41.82879599906],[-71.453835,41.82881899906],[-71.45385,41.82901399906],[-71.456131,41.82866299906],[-71.456291,41.83018899906],[-71.456497,41.83210799906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44006","name":"6","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.435684,41.81177099906],[-71.431168,41.81188999906],[-71.431061,41.81185899906],[-71.429588,41.81260299906],[-71.426933,41.81395699906],[-71.428406,41.81691699906],[-71.422333,41.81741299906],[-71.421898,41.81747799906],[-71.418335,41.81900799906],[-71.419351,41.81989499906],[-71.420057,41.82109699906],[-71.420158,41.82194099906],[-71.418839,41.82602299906],[-71.416008,41.82578299906],[-71.412132,41.82690399906],[-71.412659,41.82922399906],[-71.412903,41.82938599906],[-71.412148,41.83098299906],[-71.41229,41.83146799906],[-71.412733,41.83281899906],[-71.415021,41.83661599906],[-71.41188,41.83880199906],[-71.411179,41.84012599906],[-71.411186,41.84598499906],[-71.40873,41.84363599906],[-71.407982,41.84199099906],[-71.407837,41.84195299906],[-71.405052,41.84675999906],[-71.400734,41.84645499906],[-71.401894,41.84478799906],[-71.39959,41.84414699906],[-71.400856,41.84155699906],[-71.398987,41.84101899906],[-71.401176,41.83657799906],[-71.404625,41.83654799906],[-71.405441,41.83560599906],[-71.410065,41.83532699906],[-71.409904,41.83677299906],[-71.411819,41.83595299906],[-71.411562,41.83139399906],[-71.411507,41.83139399906],[-71.411504,41.83122899906],[-71.410915,41.82843499906],[-71.409804,41.82653899906],[-71.408635,41.82549599906],[-71.406813,41.82266899906],[-71.404888,41.81999699906],[-71.401719,41.81551399906],[-71.3978,41.80989999906],[-71.394984,41.81077299906],[-71.393499,41.80709999906],[-71.390099,41.80519999906],[-71.398949,41.79948799906],[-71.399691,41.79914199906],[-71.397926,41.79481099906],[-71.393974,41.79465899906],[-71.394111,41.79385499906],[-71.393097,41.78989399906],[-71.392715,41.78872299906],[-71.395714,41.78816999906],[-71.398766,41.78758999906],[-71.40226,41.78694199906],[-71.402222,41.78671299906],[-71.404404,41.78930299906],[-71.40625,41.79142399906],[-71.408127,41.79293799906],[-71.409447,41.79399999906],[-71.412117,41.79615799906],[-71.414665,41.79819899906],[-71.415466,41.79885099906],[-71.417419,41.80043399906],[-71.417435,41.80044899906],[-71.418129,41.80114399906],[-71.418907,41.80297499906],[-71.41935,41.80441699906],[-71.420013,41.80647699906],[-71.420052,41.80661799906],[-71.420242,41.80724699906],[-71.424858,41.80717499906],[-71.424866,41.80710199906],[-71.427864,41.80723999906],[-71.42791,41.80849099906],[-71.428162,41.80864299906],[-71.433105,41.80997099906],[-71.435318,41.81067299906],[-71.435463,41.81106899906],[-71.435684,41.81177099906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44007","name":"7","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.482033,41.81168699906],[-71.478249,41.81167999906],[-71.472168,41.81394999906],[-71.473503,41.81569699906],[-71.472023,41.81588699906],[-71.472481,41.81794399906],[-71.46965,41.81887599906],[-71.470031,41.81982799906],[-71.470877,41.82194399906],[-71.471077,41.82238399906],[-71.471306,41.82413899906],[-71.465216,41.82460399906],[-71.462423,41.82468699906],[-71.462432,41.82741299906],[-71.464769,41.83104799906],[-71.46759,41.83149099906],[-71.470444,41.83291199906],[-71.472432,41.83418099906],[-71.472459,41.83698099906],[-71.468742,41.83925999906],[-71.46456,41.84206599906],[-71.460292,41.84495699906],[-71.453819,41.84588999906],[-71.451706,41.83891299906],[-71.451607,41.83866099906],[-71.451157,41.83741799906],[-71.452911,41.83590699906],[-71.453629,41.83581899906],[-71.455154,41.83500299906],[-71.456497,41.83210799906],[-71.456291,41.83018899906],[-71.456131,41.82866299906],[-71.45385,41.82901399906],[-71.453835,41.82881899906],[-71.452255,41.82879599906],[-71.452171,41.82570299906],[-71.452202,41.82523699906],[-71.448631,41.82506599906],[-71.444626,41.82485199906],[-71.443398,41.82477999906],[-71.441566,41.82467999906],[-71.439476,41.82456199906],[-71.435493,41.82446299906],[-71.43364,41.82421899906],[-71.435852,41.82248699906],[-71.437881,41.81951099906],[-71.439534,41.81596199906],[-71.44001,41.81381599906],[-71.444735,41.81439799906],[-71.446163,41.81525999906],[-71.448555,41.81713499906],[-71.449898,41.81726799906],[-71.453804,41.81764999906],[-71.455315,41.81794699906],[-71.45591,41.81610899906],[-71.45578,41.81525799906],[-71.453888,41.81542999906],[-71.453522,41.81344999906],[-71.452866,41.81352599906],[-71.45079,41.81365999906],[-71.449944,41.81191999906],[-71.449348,41.81063099906],[-71.447533,41.80661399906],[-71.45023,41.80636999906],[-71.452314,41.80613299906],[-71.457703,41.80556899906],[-71.461882,41.80509899906],[-71.463665,41.80504599906],[-71.464583,41.80499099906],[-71.46492,41.80587399906],[-71.467072,41.80446999906],[-71.468956,41.80238299906],[-71.472847,41.80165099906],[-71.474373,41.80127299906],[-71.475761,41.80023999906],[-71.478017,41.80047899906],[-71.478553,41.80130699906],[-71.479416,41.80517999906],[-71.480186,41.80939099906],[-71.482033,41.81168699906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44008","name":"8","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.38774,41.87879999906],[-71.386391,41.87951999906],[-71.385056,41.87988999906],[-71.381807,41.87984799906],[-71.380991,41.88332399906],[-71.381008,41.88406699906],[-71.380219,41.88792999906],[-71.381824,41.88836999906],[-71.383093,41.88986999906],[-71.381638,41.89269999906],[-71.38152935439,41.893225767],[-71.3766,41.89399899906],[-71.37649639772,41.8940137941],[-71.37635234406,41.89403436585],[-71.373799,41.89439899906],[-71.37119032656,41.89458533288],[-71.370999,41.89459899906],[-71.365399,41.89529899906],[-71.364699,41.89539899906],[-71.362499,41.89559899906],[-71.354699,41.89649899906],[-71.35451882563,41.8965170165],[-71.352699,41.89669899906],[-71.3490536354,41.89714161886],[-71.34587490942,41.89752757945],[-71.33976318964,41.89826966384],[-71.33876249372,41.89839116824],[-71.338698,41.89839899906],[-71.33917771698,41.89456126321],[-71.339298,41.89359899906],[-71.339298,41.89339899906],[-71.33971575571,41.89011293266],[-71.33971887079,41.89008842943],[-71.340798,41.88159999906],[-71.3388638434,41.8761112147],[-71.33782886617,41.87317413774],[-71.33782668207,41.87316793965],[-71.333997,41.86229999906],[-71.33449398868,41.86123948182],[-71.334653,41.86131399906],[-71.337776,41.86091699906],[-71.338142,41.86143599906],[-71.339221,41.86382199906],[-71.339856,41.86416999906],[-71.340586,41.86585999906],[-71.354413,41.86644799906],[-71.354378,41.86975499906],[-71.352562,41.86967099906],[-71.352347,41.87137299906],[-71.349739,41.87159699906],[-71.349701,41.87323799906],[-71.349663,41.87534299906],[-71.353256,41.87534299906],[-71.354301,41.87536999906],[-71.354294,41.87604099906],[-71.354263,41.87839899906],[-71.357353,41.87900499906],[-71.361122,41.87975899906],[-71.362236,41.87997099906],[-71.364915,41.88048699906],[-71.365471,41.88240699906],[-71.367027,41.88522699906],[-71.370224,41.88490699906],[-71.370834,41.88466299906],[-71.371452,41.88426399906],[-71.372482,41.88137099906],[-71.372803,41.87969599906],[-71.372841,41.87898299906],[-71.373024,41.87771999906],[-71.379539,41.87659499906],[-71.380241,41.87512199906],[-71.381088,41.87439299906],[-71.381973,41.87393999906],[-71.384699,41.87342999906],[-71.385323,41.87333899906],[-71.387611,41.87313799906],[-71.387581,41.87350499906],[-71.387337,41.87571299906],[-71.387238,41.87810499906],[-71.38774,41.87879999906]]]]}}},{"type":"SLDU","affgeoid":"610U800US44009","name":"9","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.534286,41.73017099906],[-71.525348,41.73032799906],[-71.519928,41.73044299906],[-71.519413,41.73046899906],[-71.516861,41.73060799906],[-71.497849,41.73114999906],[-71.498739,41.72784399906],[-71.498331,41.72688699906],[-71.496973,41.72611699906],[-71.496323,41.72377599906],[-71.497146,41.72192499906],[-71.491562,41.71957399906],[-71.492892,41.71782599906],[-71.497116,41.71316699906],[-71.500253,41.71182299906],[-71.500786,41.71160599906],[-71.502365,41.71147199906],[-71.505188,41.71130699906],[-71.506691,41.70948199906],[-71.511904,41.70722999906],[-71.512764,41.70667499906],[-71.513336,41.70569399906],[-71.518913,41.69589899906],[-71.515419,41.69603899906],[-71.511574,41.69608699906],[-71.506142,41.69646699906],[-71.501679,41.69647399906],[-71.50103,41.68758999906],[-71.500723,41.68501599906],[-71.500062,41.67948099906],[-71.499836,41.67377599906],[-71.499451,41.66612199906],[-71.498932,41.66460699906],[-71.499225,41.66294799906],[-71.533379,41.66215599906],[-71.533182,41.67208599906],[-71.532988,41.67977199906],[-71.532968,41.68021599906],[-71.532875,41.68192099906],[-71.533009,41.68849799906],[-71.533109,41.69532999906],[-71.533113,41.69558999906],[-71.533302,41.70094599906],[-71.53346,41.70538099906],[-71.533541,41.70845899906],[-71.533774,41.71372699906],[-71.533883,41.71767999906],[-71.534015,41.72114199906],[-71.534055,41.72220399906],[-71.534286,41.73017099906]]]]}}}] \ No newline at end of file diff --git a/data/uscd.json b/data/uscd.json new file mode 100644 index 0000000..bc80420 --- /dev/null +++ b/data/uscd.json @@ -0,0 +1 @@ +[{"type":"CD","affgeoid":"5001800US4401","name":"Congressional District 1","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.345913,41.53694999906],[-71.344984,41.53792299906],[-71.343126,41.53583699906],[-71.342382,41.53249799906],[-71.342568,41.52901999906],[-71.344426,41.52915899906],[-71.345913,41.52957699906],[-71.346285,41.53416799906],[-71.345913,41.53694999906]],[[-71.405096,41.49821399906],[-71.402966,41.50299899906],[-71.403626,41.50456599906],[-71.401407,41.50626699906],[-71.399621,41.50661699906],[-71.397391,41.50619999906],[-71.396276,41.50369499906],[-71.400349,41.50010599906],[-71.401791,41.50009499906],[-71.403238,41.49758299906],[-71.404475,41.49732799906],[-71.405096,41.49821399906]],[[-71.343126,41.49729199906],[-71.341267,41.50049399906],[-71.33978,41.49882299906],[-71.338665,41.49617899906],[-71.338665,41.49492599906],[-71.343126,41.49492599906],[-71.343126,41.49729199906]],[[-71.301515,41.58565799906],[-71.298562,41.58492199906],[-71.298,41.58313399906],[-71.297719,41.58176699906],[-71.297156,41.57976799906],[-71.299125,41.57976799906],[-71.300812,41.58060999906],[-71.301234,41.58302899906],[-71.301515,41.58565799906]],[[-71.40056,41.46093999906],[-71.399063,41.46387799906],[-71.395904,41.46471299906],[-71.394417,41.46721999906],[-71.39609,41.47139699906],[-71.397577,41.47376399906],[-71.396648,41.47891599906],[-71.398134,41.48490299906],[-71.397507,41.48697899906],[-71.399993,41.48880099906],[-71.40055,41.49033199906],[-71.399435,41.49297699906],[-71.396833,41.49325499906],[-71.395927,41.49221499906],[-71.392373,41.49186299906],[-71.388846,41.49285899906],[-71.386511,41.49307099906],[-71.38401,41.49381199906],[-71.38494,41.49701399906],[-71.383453,41.50104999906],[-71.378914,41.50494799906],[-71.379179,41.50619999906],[-71.382996,41.50819999906],[-71.38494,41.51079199906],[-71.391005,41.51457799906],[-71.392559,41.51761099906],[-71.392137,41.52446799906],[-71.388842,41.53444599906],[-71.385683,41.53903599906],[-71.386613,41.54583199906],[-71.385497,41.54835499906],[-71.384478,41.55673599906],[-71.383734,41.55824099906],[-71.381409,41.55878599906],[-71.38132,41.56312299906],[-71.379021,41.56777199906],[-71.373618,41.57321399906],[-71.370194,41.57396299906],[-71.36356,41.57085999906],[-71.362825,41.56559899906],[-71.361907,41.56434599906],[-71.359868,41.55630799906],[-71.360405,41.54779199906],[-71.362267,41.54376599906],[-71.364683,41.54140099906],[-71.364869,41.53959299906],[-71.36394,41.53541999906],[-71.362639,41.53249799906],[-71.361338,41.52637699906],[-71.361561,41.52358699906],[-71.363382,41.51858499906],[-71.365426,41.51663699906],[-71.365612,41.51399299906],[-71.365233,41.51202599906],[-71.363382,41.51009699906],[-71.361152,41.51009699906],[-71.359851,41.51065299906],[-71.357621,41.50870499906],[-71.358922,41.50327699906],[-71.363175,41.50119099906],[-71.365984,41.49882299906],[-71.366541,41.49478699906],[-71.360867,41.48614799906],[-71.35948,41.48309299906],[-71.355949,41.48114399906],[-71.35409,41.48044799906],[-71.354315,41.47889099906],[-71.357064,41.47919499906],[-71.358736,41.47710599906],[-71.364239,41.47647599906],[-71.368214,41.47780199906],[-71.371745,41.47752399906],[-71.37286,41.47543499906],[-71.37509,41.47376399906],[-71.376763,41.47487799906],[-71.378249,41.47933399906],[-71.378249,41.48281499906],[-71.379179,41.48615599906],[-71.380665,41.48880099906],[-71.383453,41.48866199906],[-71.38624,41.48768699906],[-71.385311,41.48532099906],[-71.384702,41.48282199906],[-71.384754,41.47835899906],[-71.382152,41.47237199906],[-71.381594,41.46805499906],[-71.383586,41.46478199906],[-71.384505,41.46410799906],[-71.386798,41.46457399906],[-71.389028,41.46554899906],[-71.390143,41.46415599906],[-71.389284,41.46060499906],[-71.390275,41.45504299906],[-71.396037,41.45201599906],[-71.399568,41.44859599906],[-71.40078,41.45497499906],[-71.40056,41.46093999906]],[[-71.362911,41.46174599906],[-71.361185,41.46461999906],[-71.359559,41.46422899906],[-71.358273,41.46443099906],[-71.357206,41.46612399906],[-71.352766,41.46924499906],[-71.3479,41.47058999906],[-71.341833,41.47601199906],[-71.336442,41.48198499906],[-71.33438,41.47820399906],[-71.336366,41.47173799906],[-71.335992,41.46964699906],[-71.323531,41.47583399906],[-71.316519,41.47755999906],[-71.318065,41.48776399906],[-71.321154,41.48811999906],[-71.322818,41.49114699906],[-71.323125,41.50308799906],[-71.327804,41.50425799906],[-71.330694,41.50769899906],[-71.329315,41.51382899906],[-71.326035,41.51430999906],[-71.325451,41.51727999906],[-71.328031,41.51884799906],[-71.327128,41.52158899906],[-71.323991,41.52240699906],[-71.320901,41.51948899906],[-71.314579,41.51980899906],[-71.311251,41.52262099906],[-71.311346,41.52422199906],[-71.314151,41.53144599906],[-71.312696,41.53651399906],[-71.308082,41.53937699906],[-71.308082,41.54293499906],[-71.311129,41.54405199906],[-71.310533,41.54691999906],[-71.303652,41.55992499906],[-71.296673,41.56712399906],[-71.294363,41.57141599906],[-71.288376,41.57327399906],[-71.285142,41.57712699906],[-71.284076,41.57939299906],[-71.28574,41.58277099906],[-71.289073,41.58270599906],[-71.285635,41.59164199906],[-71.285265,41.59236999906],[-71.28065,41.59285399906],[-71.273445,41.60698999906],[-71.272412,41.61504099906],[-71.275234,41.61944399906],[-71.271862,41.62398599906],[-71.264824,41.62524699906],[-71.261021,41.62737899906],[-71.258879,41.63322999906],[-71.251082,41.63877999906],[-71.246285,41.63981399906],[-71.242482,41.63839299906],[-71.23654,41.63839299906],[-71.233234,41.64022999906],[-71.232262,41.64336599906],[-71.225369,41.64709599906],[-71.223706,41.65064799906],[-71.22228,41.65419999906],[-71.220331,41.65557199906],[-71.21919,41.65366699906],[-71.217288,41.64620799906],[-71.217051,41.64283399906],[-71.216575,41.63910299906],[-71.211822,41.63910299906],[-71.210871,41.64230099906],[-71.208019,41.65313499906],[-71.19564,41.67508999906],[-71.19439,41.67480199906],[-71.191178,41.67421599906],[-71.191175,41.67429199906],[-71.18433318989,41.67305306734],[-71.18432990614,41.67305247271],[-71.18129,41.67250199906],[-71.17599,41.67140199906],[-71.17608658195,41.66860112258],[-71.17609,41.66850199906],[-71.17609,41.66810199906],[-71.1621482835,41.66557872564],[-71.153989,41.66410199906],[-71.15358861219,41.66403754447],[-71.14587,41.66279499906],[-71.135188,41.66050199906],[-71.134688,41.66050199906],[-71.132888,41.66010199906],[-71.13267,41.65874399906],[-71.134478,41.64126199906],[-71.134484,41.64119799906],[-71.13470117132,41.63888992245],[-71.13567574949,41.62853219632],[-71.135688,41.62840199906],[-71.140468,41.62389299906],[-71.141509,41.61607599906],[-71.14091,41.60740499906],[-71.14086788925,41.60710381569],[-71.140588,41.60510199906],[-71.13854907,41.60342857493],[-71.137492,41.60256099906],[-71.13669155952,41.60138323143],[-71.131618,41.59391799906],[-71.13149152643,41.59325256623],[-71.131312,41.59230799906],[-71.12761807958,41.56323081037],[-71.12659522283,41.5551792567],[-71.1224,41.52215599906],[-71.12057,41.49744799906],[-71.129229,41.49628399906],[-71.136867,41.49394199906],[-71.141093,41.48993699906],[-71.140224,41.48585499906],[-71.139087,41.48344499906],[-71.142439,41.48121499906],[-71.145747,41.48117599906],[-71.14646,41.47850499906],[-71.148905,41.47705599906],[-71.150859,41.47581899906],[-71.154394,41.47669199906],[-71.159274,41.47598499906],[-71.162086,41.47400899906],[-71.163097,41.47173799906],[-71.167345,41.47140499906],[-71.170233,41.46838099906],[-71.170131,41.46397399906],[-71.168648,41.46145199906],[-71.170444,41.46062099906],[-71.173619,41.46142199906],[-71.175535,41.45985399906],[-71.177916,41.46080999906],[-71.180544,41.45974199906],[-71.186279,41.46028499906],[-71.193979,41.45639599906],[-71.194967,41.45903699906],[-71.196857,41.46111599906],[-71.196607,41.46475599906],[-71.192354,41.46656399906],[-71.192459,41.47044299906],[-71.191924,41.47436299906],[-71.190016,41.47827499906],[-71.190167,41.48428499906],[-71.19939,41.49176899906],[-71.199692,41.49551099906],[-71.202262,41.49838399906],[-71.206382,41.49921499906],[-71.200788,41.51437099906],[-71.202034,41.51706499906],[-71.204773,41.51910399906],[-71.204796,41.52334399906],[-71.207306,41.52638799906],[-71.208257,41.52887999906],[-71.204929,41.54079999906],[-71.20683,41.54346799906],[-71.215995,41.54717799906],[-71.215953,41.54846399906],[-71.215343,41.54929699906],[-71.215701,41.55213099906],[-71.215015,41.55383599906],[-71.213532,41.55474099906],[-71.213778,41.55679499906],[-71.218739,41.55929599906],[-71.220276,41.55958699906],[-71.220998,41.56087699906],[-71.219933,41.56248299906],[-71.218714,41.56267799906],[-71.216863,41.56181899906],[-71.211415,41.55821899906],[-71.209823,41.55870899906],[-71.209563,41.56029199906],[-71.210207,41.56303899906],[-71.20865,41.57102799906],[-71.208352,41.58117199906],[-71.214436,41.58365899906],[-71.214674,41.58597099906],[-71.209445,41.59059299906],[-71.209207,41.59396999906],[-71.205404,41.59432499906],[-71.203741,41.59610299906],[-71.204454,41.59841399906],[-71.20778,41.60065999906],[-71.212656,41.61007199906],[-71.212115,41.61861899906],[-71.211837,41.62352899906],[-71.215308,41.62549099906],[-71.218018,41.62567199906],[-71.219336,41.62548199906],[-71.220074,41.62493999906],[-71.219972,41.62394399906],[-71.221005,41.62350199906],[-71.224126,41.62288699906],[-71.236487,41.62136799906],[-71.238792,41.62059299906],[-71.240709,41.61922499906],[-71.241056,41.60694499906],[-71.241532,41.60463399906],[-71.2436,41.58750799906],[-71.237788,41.57759499906],[-71.234877,41.57654799906],[-71.23613,41.57476699906],[-71.236259,41.56499299906],[-71.238204,41.55876499906],[-71.237016,41.55485199906],[-71.233844,41.55378999906],[-71.233688,41.55236199906],[-71.234877,41.54916099906],[-71.236523,41.54489099906],[-71.234877,41.54168899906],[-71.236642,41.53585199906],[-71.234775,41.53253799906],[-71.228935,41.53030299906],[-71.227989,41.52829699906],[-71.229444,41.52154399906],[-71.233456,41.51405299906],[-71.240737,41.50555099906],[-71.24074,41.50170399906],[-71.246666,41.49426499906],[-71.247992,41.49028999906],[-71.246855,41.48741499906],[-71.24426,41.48573699906],[-71.242033,41.48534399906],[-71.238112,41.48605699906],[-71.237437,41.48571099906],[-71.237615,41.48227599906],[-71.238326,41.48075899906],[-71.239676,41.48025299906],[-71.240428,41.47614699906],[-71.242285,41.47523899906],[-71.243728,41.47520399906],[-71.244895,41.47383499906],[-71.246427,41.47294799906],[-71.247366,41.47299599906],[-71.247715,41.47368999906],[-71.24524,41.48028499906],[-71.245859,41.48163699906],[-71.252079,41.48592399906],[-71.258192,41.48792099906],[-71.264793,41.48890199906],[-71.26764,41.48821399906],[-71.26886,41.48469799906],[-71.274861,41.47984599906],[-71.27664,41.48003799906],[-71.282314,41.48828599906],[-71.285486,41.48900399906],[-71.29133,41.48786199906],[-71.296918,41.48552099906],[-71.297392,41.48478999906],[-71.296516,41.47983099906],[-71.297393,41.47344299906],[-71.296851,41.46913099906],[-71.298182,41.46749199906],[-71.301414,41.46727799906],[-71.303981,41.46371599906],[-71.302762,41.45974799906],[-71.303052,41.45908299906],[-71.303911,41.45867999906],[-71.304394,41.45450199906],[-71.307639,41.45243499906],[-71.310168,41.45112399906],[-71.312049,41.45138199906],[-71.311918,41.45288499906],[-71.310983,41.45510599906],[-71.312558,41.45649799906],[-71.314711,41.45638899906],[-71.316908,41.45478799906],[-71.31848,41.45572399906],[-71.319485,41.45838499906],[-71.320326,41.45978299906],[-71.323751,41.46012899906],[-71.326909,41.45894199906],[-71.327536,41.45707199906],[-71.331466,41.45280299906],[-71.334764,41.44951599906],[-71.337483,41.44931699906],[-71.338036,41.44952799906],[-71.337544,41.45097899906],[-71.337933,41.45169299906],[-71.339006,41.45190199906],[-71.339697,41.45257699906],[-71.344177,41.45402799906],[-71.353609,41.44975099906],[-71.356163,41.45053799906],[-71.357245,41.45614599906],[-71.358447,41.45743899906],[-71.358795,41.45966099906],[-71.360038,41.46048599906],[-71.36189,41.46019599906],[-71.362911,41.46174599906]],[[-71.288017,41.64557499906],[-71.286471,41.64757099906],[-71.281571,41.64820699906],[-71.278171,41.64730899906],[-71.276634,41.64364899906],[-71.276347,41.64053099906],[-71.272692,41.63853499906],[-71.272129,41.63706399906],[-71.277045,41.63803099906],[-71.283791,41.63779699906],[-71.285346,41.63685299906],[-71.285908,41.63800899906],[-71.285344,41.64037899906],[-71.288158,41.64294799906],[-71.288017,41.64557499906]],[[-71.353819,41.64746599906],[-71.352835,41.64925199906],[-71.350304,41.64904199906],[-71.348898,41.65124799906],[-71.347633,41.65282399906],[-71.346367,41.65334899906],[-71.344118,41.65282399906],[-71.343274,41.65376899906],[-71.343836,41.65486099906],[-71.345946,41.65534499906],[-71.350023,41.65713099906],[-71.35157,41.65860199906],[-71.351007,41.65975699906],[-71.348336,41.66122799906],[-71.34693,41.66332899906],[-71.348898,41.66532399906],[-71.344821,41.66700499906],[-71.344258,41.66406399906],[-71.344021,41.66149499906],[-71.33765,41.65797199906],[-71.337515,41.65704899906],[-71.339337,41.65502999906],[-71.338072,41.65082799906],[-71.334979,41.64746599906],[-71.332448,41.64378899906],[-71.333432,41.64179199906],[-71.336525,41.64189699906],[-71.334979,41.64420899906],[-71.335682,41.64578499906],[-71.337088,41.64672999906],[-71.338705,41.64573499906],[-71.342645,41.64423699906],[-71.34468,41.64252799906],[-71.343666,41.63989999906],[-71.340603,41.63969099906],[-71.339056,41.63706399906],[-71.336103,41.63622299906],[-71.334697,41.63443699906],[-71.330711,41.63299199906],[-71.326824,41.63170399906],[-71.317122,41.63138899906],[-71.315247,41.62995199906],[-71.314029,41.62792099906],[-71.308123,41.62623899906],[-71.307321,41.62401699906],[-71.304046,41.61877699906],[-71.303526,41.60963899906],[-71.304327,41.60794899906],[-71.30264,41.60553099906],[-71.30489,41.60447999906],[-71.306093,41.60134299906],[-71.307561,41.59911799906],[-71.307773,41.59740899906],[-71.309517,41.59485299906],[-71.313466,41.58797199906],[-71.315716,41.58450099906],[-71.3167,41.58313399906],[-71.321612,41.58097899906],[-71.326103,41.57858299906],[-71.3312,41.58031799906],[-71.335949,41.58589799906],[-71.337048,41.59468799906],[-71.333751,41.60585899906],[-71.331182,41.60689799906],[-71.329559,41.60909699906],[-71.330057,41.61110299906],[-71.326609,41.61611399906],[-71.325558,41.62413699906],[-71.327386,41.62634399906],[-71.328841,41.62620199906],[-71.333994,41.62928699906],[-71.337369,41.63128399906],[-71.344961,41.63233499906],[-71.347352,41.63128399906],[-71.350726,41.63391099906],[-71.352248,41.63892799906],[-71.353257,41.64084599906],[-71.352976,41.64473399906],[-71.353819,41.64746599906]],[[-71.328827,41.49233399906],[-71.326957,41.49311599906],[-71.325657,41.49005399906],[-71.325365,41.48760099906],[-71.3264,41.48378899906],[-71.327822,41.48298499906],[-71.329002,41.48712999906],[-71.328827,41.49233399906]],[[-71.60673402532,42.01341142415],[-71.59411891923,42.01370181535],[-71.5911031923,42.01377123535],[-71.576908,42.01409799906],[-71.56366502123,42.01428297169],[-71.559439,42.01434199906],[-71.55361486286,42.01446202023],[-71.55336097543,42.01446725223],[-71.53803620617,42.01478305811],[-71.52892806735,42.0149707545],[-71.52769996117,42.01499606275],[-71.527606,42.01499799906],[-71.527306,42.01509799906],[-71.52464118753,42.01529987115],[-71.51163339947,42.01628527231],[-71.50205550327,42.01701084302],[-71.50204954111,42.01701129469],[-71.500905,42.01709799906],[-71.499905,42.01719799906],[-71.49825830106,42.01722023222],[-71.49135428024,42.01731344792],[-71.48378311796,42.01741567113],[-71.48371288296,42.01741661942],[-71.45811664513,42.01776221097],[-71.45810351919,42.01776238819],[-71.42435692338,42.01821802305],[-71.41441861461,42.01835220665],[-71.381401,42.01879799906],[-71.38143704125,42.00002086862],[-71.3814657108,41.98508431905],[-71.38147025969,41.98271439138],[-71.38149197829,41.97139921783],[-71.381501,41.96669899906],[-71.381401,41.96479899906],[-71.38145768251,41.95286433955],[-71.38145769228,41.95286228256],[-71.38148189871,41.94776555229],[-71.3816,41.92289899906],[-71.3817,41.92269899906],[-71.3817,41.91557713774],[-71.3817,41.91481599906],[-71.3817,41.91465965229],[-71.3817,41.90359799906],[-71.3817,41.89706199906],[-71.3817,41.89375174631],[-71.3817,41.89319899906],[-71.38152935439,41.893225767],[-71.3766,41.89399899906],[-71.37649639772,41.8940137941],[-71.37635234406,41.89403436585],[-71.373799,41.89439899906],[-71.37119032656,41.89458533288],[-71.370999,41.89459899906],[-71.365399,41.89529899906],[-71.364699,41.89539899906],[-71.362499,41.89559899906],[-71.354699,41.89649899906],[-71.35451882563,41.8965170165],[-71.352699,41.89669899906],[-71.3490536354,41.89714161886],[-71.34587490942,41.89752757945],[-71.33976318964,41.89826966384],[-71.33876249372,41.89839116824],[-71.338698,41.89839899906],[-71.33917771698,41.89456126321],[-71.339298,41.89359899906],[-71.339298,41.89339899906],[-71.33971575571,41.89011293266],[-71.33971887079,41.89008842943],[-71.340798,41.88159999906],[-71.3388638434,41.8761112147],[-71.33782886617,41.87317413774],[-71.33782668207,41.87316793965],[-71.333997,41.86229999906],[-71.33449398868,41.86123948182],[-71.34167342264,41.84591938741],[-71.342198,41.84479999906],[-71.341797,41.84369999906],[-71.34079565848,41.84245590809],[-71.335197,41.83549999906],[-71.33750452,41.83376935906],[-71.337597,41.83369999906],[-71.339597,41.83199999906],[-71.3428393693,41.82955292789],[-71.344897,41.82799999906],[-71.34588873174,41.82588717927],[-71.347197,41.82309999906],[-71.339197,41.80899999906],[-71.3390217069,41.80859098182],[-71.33900374314,41.8085490664],[-71.338897,41.80829999906],[-71.33927361176,41.80660524612],[-71.339297,41.80649999906],[-71.339297,41.80439999906],[-71.340797,41.80019999906],[-71.340697,41.79829999906],[-71.339297,41.79629999906],[-71.335797,41.79479999906],[-71.333896,41.79449999906],[-71.332196,41.79229999906],[-71.33106075427,41.79014694681],[-71.33011616476,41.78835548395],[-71.329296,41.78679999906],[-71.329396,41.78259999906],[-71.327896,41.78050099906],[-71.31792423356,41.77615729326],[-71.317795,41.77610099906],[-71.31638784427,41.77550723089],[-71.29768756485,41.76761639795],[-71.29475805142,41.76638025059],[-71.28440177169,41.76201027988],[-71.261392,41.75230099906],[-71.25474299447,41.74471835744],[-71.25213074575,41.74173930353],[-71.24533260386,41.73398658421],[-71.24524649557,41.73388838481],[-71.22623673166,41.71220931921],[-71.225791,41.71170099906],[-71.224798,41.71049799906],[-71.227875,41.70549799906],[-71.232975,41.70195299906],[-71.240991,41.69774399906],[-71.243671,41.69840399906],[-71.24581,41.69716199906],[-71.245335,41.69485499906],[-71.242482,41.68793299906],[-71.237635,41.68163499906],[-71.234639,41.67745999906],[-71.235352,41.67213399906],[-71.236778,41.66804999906],[-71.238442,41.66556499906],[-71.240343,41.66556499906],[-71.244384,41.66911599906],[-71.250326,41.66503199906],[-71.253416,41.66059299906],[-71.254604,41.65224699906],[-71.256743,41.65029299906],[-71.257219,41.64674099906],[-71.25956,41.64259499906],[-71.263161,41.64301099906],[-71.267055,41.64494499906],[-71.270075,41.65243899906],[-71.26918,41.65489999906],[-71.267676,41.65739699906],[-71.269103,41.66005999906],[-71.272192,41.66130299906],[-71.277659,41.66627499906],[-71.280366,41.67257499906],[-71.278847,41.67834699906],[-71.282175,41.67958999906],[-71.285502,41.68242999906],[-71.287404,41.68047799906],[-71.289068,41.67958999906],[-71.287637,41.67246299906],[-71.290546,41.66239499906],[-71.293346,41.66023799906],[-71.297862,41.65828399906],[-71.297624,41.65384499906],[-71.299159,41.64953099906],[-71.301396,41.64997799906],[-71.303746,41.65478799906],[-71.304992,41.65934999906],[-71.306095,41.67257499906],[-71.302627,41.68174699906],[-71.298935,41.68152399906],[-71.293119,41.68834699906],[-71.291217,41.70266599906],[-71.2988,41.71100799906],[-71.29905,41.70869599906],[-71.301446,41.70644099906],[-71.303804,41.70656699906],[-71.305468,41.70851899906],[-71.307983,41.71275599906],[-71.305759,41.71866199906],[-71.307131,41.72164799906],[-71.31482,41.72380799906],[-71.324188,41.72538199906],[-71.339456,41.72484099906],[-71.341119,41.72909799906],[-71.341119,41.73477399906],[-71.344447,41.73619299906],[-71.34825,41.74204599906],[-71.35229,41.74506099906],[-71.359896,41.74506099906],[-71.359421,41.74665699906],[-71.360134,41.74949399906],[-71.362348,41.75088999906],[-71.360847,41.75516799906],[-71.361798,41.76066399906],[-71.36465,41.76474199906],[-71.369641,41.76456499906],[-71.366076,41.77112399906],[-71.366314,41.77520099906],[-71.365125,41.77750499906],[-71.367977,41.78069499906],[-71.370583,41.78087399906],[-71.371542,41.78335399906],[-71.381287,41.78530299906],[-71.38247156425,41.78509918245],[-71.389413,41.78633499906],[-71.395042,41.78614799906],[-71.397728,41.78602999906],[-71.398247,41.78601099906],[-71.401657,41.78588899906],[-71.404259,41.78584899906],[-71.406639,41.78654099906],[-71.410255,41.78713199906],[-71.413391,41.78613999906],[-71.413948,41.78873799906],[-71.414268,41.78841799906],[-71.415909,41.78964599906],[-71.417412,41.78891799906],[-71.417107,41.78667199906],[-71.418617,41.78596899906],[-71.420063,41.78703299906],[-71.42061,41.78618399906],[-71.421667,41.78618999906],[-71.431603,41.78625399906],[-71.434046,41.78630699906],[-71.436482,41.78841199906],[-71.437642,41.79323899906],[-71.438541,41.79422899906],[-71.43934,41.79724099906],[-71.439266,41.80202699906],[-71.439938,41.80341499906],[-71.440252,41.80370499906],[-71.440541,41.80394599906],[-71.440944,41.80597399906],[-71.440809,41.80864099906],[-71.439835,41.80887599906],[-71.440086,41.80916999906],[-71.440002,41.81127499906],[-71.435463,41.81106899906],[-71.435684,41.81177099906],[-71.431168,41.81188999906],[-71.431061,41.81185899906],[-71.429588,41.81260299906],[-71.426933,41.81395699906],[-71.425895,41.81283099906],[-71.425461,41.81273999906],[-71.422173,41.81276699906],[-71.421631,41.81218299906],[-71.421272,41.81075299906],[-71.421005,41.80977199906],[-71.42086,41.81001699906],[-71.415802,41.80929899906],[-71.414223,41.80920799906],[-71.412758,41.80936399906],[-71.411865,41.80946399906],[-71.407211,41.81013099906],[-71.407181,41.81081799906],[-71.406833,41.81407899906],[-71.410038,41.81453799906],[-71.411874,41.81512999906],[-71.413316,41.81576999906],[-71.415329,41.81692899906],[-71.416509,41.81771999906],[-71.414314,41.82003399906],[-71.412231,41.81912599906],[-71.411462,41.81878699906],[-71.409103,41.81912599906],[-71.408234,41.81793999906],[-71.407478,41.81824899906],[-71.408035,41.81903799906],[-71.408058,41.81935999906],[-71.408508,41.82446699906],[-71.409187,41.82562999906],[-71.410149,41.82634699906],[-71.409804,41.82653899906],[-71.410915,41.82843499906],[-71.411504,41.83122899906],[-71.411507,41.83139399906],[-71.411562,41.83139399906],[-71.41229,41.83146799906],[-71.412148,41.83098299906],[-71.412903,41.82938599906],[-71.41568,41.82939099906],[-71.41629,41.83182499906],[-71.41745,41.83201199906],[-71.416283,41.83473599906],[-71.416756,41.83490399906],[-71.416603,41.83527399906],[-71.417152,41.83549899906],[-71.41716,41.83652899906],[-71.41819,41.83651699906],[-71.419449,41.83639899906],[-71.419662,41.83606699906],[-71.420242,41.83630799906],[-71.422318,41.83718499906],[-71.421401,41.83843399906],[-71.421178,41.83875899906],[-71.424324,41.84023699906],[-71.426659,41.84225799906],[-71.427498,41.84175499906],[-71.42778,41.84347499906],[-71.428993,41.84605399906],[-71.432643,41.84678999906],[-71.433313,41.84693899906],[-71.432793,41.84803399906],[-71.434099,41.85046999906],[-71.435921,41.85195199906],[-71.437141,41.85275299906],[-71.43792,41.85327099906],[-71.436264,41.85488099906],[-71.432587,41.85451099906],[-71.431679,41.85439099906],[-71.428825,41.85367599906],[-71.426628,41.85308099906],[-71.429451,41.85922999906],[-71.429906,41.86125499906],[-71.434998,41.86182399906],[-71.442986,41.85655599906],[-71.446686,41.85404999906],[-71.448324,41.85298099906],[-71.455905,41.84790299906],[-71.459526,41.84543999906],[-71.460292,41.84495699906],[-71.46456,41.84206599906],[-71.468742,41.83925999906],[-71.472459,41.83698099906],[-71.47331,41.83898199906],[-71.477216,41.83791099906],[-71.47764,41.84146899906],[-71.478659,41.84236899906],[-71.479012,41.84345799906],[-71.479521,41.84428299906],[-71.48033,41.84504399906],[-71.480974,41.85082099906],[-71.485636,41.85351899906],[-71.486065,41.85431199906],[-71.48708,41.85610499906],[-71.487421,41.85907299906],[-71.487654,41.85960299906],[-71.488251,41.86227799906],[-71.492353,41.86536499906],[-71.494084,41.86827599906],[-71.495545,41.86898299906],[-71.505093,41.86772399906],[-71.514588,41.86648799906],[-71.531464,41.86426899906],[-71.540216,41.86309499906],[-71.545655,41.86252999906],[-71.550423,41.86176499906],[-71.573608,41.85880699906],[-71.574642,41.85874799906],[-71.575653,41.86357299906],[-71.579348,41.88161699906],[-71.579389,41.88181199906],[-71.579908,41.88471999906],[-71.581891,41.89466499906],[-71.590312,41.93366499906],[-71.596898,41.96612299906],[-71.600443,41.98302699906],[-71.60673402532,42.01341142415]],[[-71.372238,41.59985399906],[-71.369426,41.60206199906],[-71.36788,41.60395399906],[-71.367317,41.60595199906],[-71.365489,41.60668799906],[-71.36338,41.60668799906],[-71.363943,41.60542599906],[-71.36338,41.60353399906],[-71.364786,41.60143099906],[-71.369426,41.59817199906],[-71.371676,41.59732999906],[-71.373363,41.59743599906],[-71.372238,41.59985399906]],[[-71.327568,41.45286799906],[-71.326348,41.45470999906],[-71.324955,41.45468999906],[-71.324296,41.45392399906],[-71.325649,41.45210599906],[-71.32689,41.45195999906],[-71.327568,41.45286799906]],[[-71.367036,41.66070299906],[-71.364786,41.66049299906],[-71.362115,41.66017799906],[-71.360709,41.66112299906],[-71.354663,41.65975699906],[-71.353398,41.65786599906],[-71.354241,41.65608099906],[-71.355507,41.65387499906],[-71.35635,41.65208899906],[-71.358178,41.65124799906],[-71.360006,41.64988199906],[-71.362537,41.65114299906],[-71.364083,41.65587099906],[-71.364646,41.65755099906],[-71.366333,41.65891699906],[-71.367036,41.66070299906]]]]}}},{"type":"CD","affgeoid":"5001800US4402","name":"Congressional District 2","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.862109,41.31661199906],[-71.860513,41.32024799906],[-71.857458,41.32078899906],[-71.851923,41.32466399906],[-71.847709,41.32960399906],[-71.844666,41.33058499906],[-71.836156,41.33601299906],[-71.83061772372,41.34124704635],[-71.829384,41.34241299906],[-71.829902,41.34663599906],[-71.831303,41.35129499906],[-71.835703,41.35356799906],[-71.836768,41.35510299906],[-71.837873,41.36014499906],[-71.83773172145,41.36329668814],[-71.83771339082,41.36370561389],[-71.837633,41.36549899906],[-71.83558816822,41.36706866834],[-71.83494691638,41.36756091094],[-71.832499,41.36943999906],[-71.83210776209,41.37008426103],[-71.83201075958,41.37024399768],[-71.831613,41.37089899906],[-71.83207658003,41.37296217051],[-71.832674,41.37562099906],[-71.83131395979,41.37772482169],[-71.830637,41.37877199906],[-71.83164333776,41.38002244502],[-71.833531,41.38236799906],[-71.83300056282,41.3852672379],[-71.832655,41.38715599906],[-71.835204,41.38955799906],[-71.83817,41.39059499906],[-71.83863230444,41.39115102491],[-71.8410615506,41.39407274384],[-71.842131,41.39535899906],[-71.842244,41.39687899906],[-71.84115,41.39922999906],[-71.841726,41.40324099906],[-71.843256,41.40446099906],[-71.843472,41.40582999906],[-71.84281656981,41.40873220644],[-71.842563,41.40985499906],[-71.839649,41.41211899906],[-71.836883,41.41222799906],[-71.834107,41.41158199906],[-71.827902,41.41433399906],[-71.824573,41.41523499906],[-71.823873,41.41716399906],[-71.82033,41.41938199906],[-71.816904,41.41992699906],[-71.8129,41.41940399906],[-71.806812,41.41667299906],[-71.803684,41.41742799906],[-71.801439,41.41554499906],[-71.797683,41.41670899906],[-71.79767369255,41.41691041756],[-71.79723545398,41.42639414864],[-71.79673945896,41.4371277619],[-71.79648590811,41.44261474607],[-71.7956834365,41.45998068665],[-71.79498466265,41.47510254884],[-71.79356831589,41.50575309554],[-71.7925957022,41.52680100701],[-71.79170363083,41.54610593728],[-71.79050845462,41.57197022784],[-71.78935867274,41.59685215941],[-71.789356,41.59690999906],[-71.7878551986,41.63445036681],[-71.78763664589,41.63991714536],[-71.786994,41.65599199906],[-71.78699889568,41.65611738614],[-71.78864754066,41.69834210795],[-71.789678,41.72473399906],[-71.78969211199,41.72519833872],[-71.79010633574,41.73882791629],[-71.79105925492,41.77018267528],[-71.791062,41.77027299906],[-71.79125806358,41.77449647297],[-71.79262703816,41.8039860322],[-71.79265663506,41.8046235893],[-71.792767,41.80700099906],[-71.792786,41.80866999906],[-71.79315733695,41.8171691591],[-71.794161,41.84014099906],[-71.794161,41.84110099906],[-71.79448235605,41.84915788492],[-71.79469178266,41.8544085291],[-71.79668779468,41.90445159128],[-71.79715894256,41.91626398655],[-71.79765282895,41.92864647087],[-71.79780125342,41.93236769834],[-71.797922,41.93539499906],[-71.79882688153,41.98521146936],[-71.79886543354,41.98733387436],[-71.799242,42.00806499906],[-71.76601,42.00974499906],[-71.75510919805,42.00999592814],[-71.68087581631,42.01170473033],[-71.67802296857,42.01177040095],[-71.66160371444,42.01214836106],[-71.60673402532,42.01341142415],[-71.600443,41.98302699906],[-71.596898,41.96612299906],[-71.590312,41.93366499906],[-71.581891,41.89466499906],[-71.579908,41.88471999906],[-71.579389,41.88181199906],[-71.579348,41.88161699906],[-71.575653,41.86357299906],[-71.574642,41.85874799906],[-71.573608,41.85880699906],[-71.550423,41.86176499906],[-71.545655,41.86252999906],[-71.540216,41.86309499906],[-71.531464,41.86426899906],[-71.514588,41.86648799906],[-71.505093,41.86772399906],[-71.495545,41.86898299906],[-71.494084,41.86827599906],[-71.492353,41.86536499906],[-71.488251,41.86227799906],[-71.487654,41.85960299906],[-71.487421,41.85907299906],[-71.48708,41.85610499906],[-71.486065,41.85431199906],[-71.485636,41.85351899906],[-71.480974,41.85082099906],[-71.48033,41.84504399906],[-71.479521,41.84428299906],[-71.479012,41.84345799906],[-71.478659,41.84236899906],[-71.47764,41.84146899906],[-71.477216,41.83791099906],[-71.47331,41.83898199906],[-71.472459,41.83698099906],[-71.468742,41.83925999906],[-71.46456,41.84206599906],[-71.460292,41.84495699906],[-71.459526,41.84543999906],[-71.455905,41.84790299906],[-71.448324,41.85298099906],[-71.446686,41.85404999906],[-71.442986,41.85655599906],[-71.434998,41.86182399906],[-71.429906,41.86125499906],[-71.429451,41.85922999906],[-71.426628,41.85308099906],[-71.428825,41.85367599906],[-71.431679,41.85439099906],[-71.432587,41.85451099906],[-71.436264,41.85488099906],[-71.43792,41.85327099906],[-71.437141,41.85275299906],[-71.435921,41.85195199906],[-71.434099,41.85046999906],[-71.432793,41.84803399906],[-71.433313,41.84693899906],[-71.432643,41.84678999906],[-71.428993,41.84605399906],[-71.42778,41.84347499906],[-71.427498,41.84175499906],[-71.426659,41.84225799906],[-71.424324,41.84023699906],[-71.421178,41.83875899906],[-71.421401,41.83843399906],[-71.422318,41.83718499906],[-71.420242,41.83630799906],[-71.419662,41.83606699906],[-71.419449,41.83639899906],[-71.41819,41.83651699906],[-71.41716,41.83652899906],[-71.417152,41.83549899906],[-71.416603,41.83527399906],[-71.416756,41.83490399906],[-71.416283,41.83473599906],[-71.41745,41.83201199906],[-71.41629,41.83182499906],[-71.41568,41.82939099906],[-71.412903,41.82938599906],[-71.412148,41.83098299906],[-71.41229,41.83146799906],[-71.411562,41.83139399906],[-71.411507,41.83139399906],[-71.411504,41.83122899906],[-71.410915,41.82843499906],[-71.409804,41.82653899906],[-71.410149,41.82634699906],[-71.409187,41.82562999906],[-71.408508,41.82446699906],[-71.408058,41.81935999906],[-71.408035,41.81903799906],[-71.407478,41.81824899906],[-71.408234,41.81793999906],[-71.409103,41.81912599906],[-71.411462,41.81878699906],[-71.412231,41.81912599906],[-71.414314,41.82003399906],[-71.416509,41.81771999906],[-71.415329,41.81692899906],[-71.413316,41.81576999906],[-71.411874,41.81512999906],[-71.410038,41.81453799906],[-71.406833,41.81407899906],[-71.407181,41.81081799906],[-71.407211,41.81013099906],[-71.411865,41.80946399906],[-71.412758,41.80936399906],[-71.414223,41.80920799906],[-71.415802,41.80929899906],[-71.42086,41.81001699906],[-71.421005,41.80977199906],[-71.421272,41.81075299906],[-71.421631,41.81218299906],[-71.422173,41.81276699906],[-71.425461,41.81273999906],[-71.425895,41.81283099906],[-71.426933,41.81395699906],[-71.429588,41.81260299906],[-71.431061,41.81185899906],[-71.431168,41.81188999906],[-71.435684,41.81177099906],[-71.435463,41.81106899906],[-71.440002,41.81127499906],[-71.440086,41.80916999906],[-71.439835,41.80887599906],[-71.440809,41.80864099906],[-71.440944,41.80597399906],[-71.440541,41.80394599906],[-71.440252,41.80370499906],[-71.439938,41.80341499906],[-71.439266,41.80202699906],[-71.43934,41.79724099906],[-71.438541,41.79422899906],[-71.437642,41.79323899906],[-71.436482,41.78841199906],[-71.434046,41.78630699906],[-71.431603,41.78625399906],[-71.421667,41.78618999906],[-71.42061,41.78618399906],[-71.420063,41.78703299906],[-71.418617,41.78596899906],[-71.417107,41.78667199906],[-71.417412,41.78891799906],[-71.415909,41.78964599906],[-71.414268,41.78841799906],[-71.413948,41.78873799906],[-71.413391,41.78613999906],[-71.410255,41.78713199906],[-71.406639,41.78654099906],[-71.404259,41.78584899906],[-71.401657,41.78588899906],[-71.398247,41.78601099906],[-71.397728,41.78602999906],[-71.395042,41.78614799906],[-71.389413,41.78633499906],[-71.38247156425,41.78509918245],[-71.390557,41.78370799906],[-71.391745,41.78104999906],[-71.389844,41.77644099906],[-71.385495,41.76866399906],[-71.385566,41.76030999906],[-71.38105,41.75569999906],[-71.380099,41.74931599906],[-71.380574,41.74594699906],[-71.376058,41.74417399906],[-71.380812,41.73885299906],[-71.380574,41.73353299906],[-71.38105,41.72732399906],[-71.376534,41.72164799906],[-71.369879,41.71827699906],[-71.363937,41.71738999906],[-71.357282,41.71818799906],[-71.357282,41.71659199906],[-71.365717,41.71161499906],[-71.365717,41.70789799906],[-71.364412,41.70470399906],[-71.365646,41.70062199906],[-71.365601,41.69370099906],[-71.362748,41.69192599906],[-71.364887,41.68837699906],[-71.371542,41.68535899906],[-71.373444,41.67861399906],[-71.372988,41.67257499906],[-71.37791,41.66664599906],[-71.382049,41.66731699906],[-71.386279,41.67097999906],[-71.38988,41.67190299906],[-71.390775,41.68062899906],[-71.389432,41.68342499906],[-71.390551,41.68409599906],[-71.398163,41.68340699906],[-71.418069,41.68420799906],[-71.433815,41.68695699906],[-71.441336,41.68644599906],[-71.443082,41.68830299906],[-71.441896,41.69002499906],[-71.445923,41.69114399906],[-71.44848,41.68841399906],[-71.450198,41.68645899906],[-71.449997,41.68398999906],[-71.447699,41.67786999906],[-71.444574,41.67429799906],[-71.444268,41.67364699906],[-71.444621,41.67301599906],[-71.446573,41.67195899906],[-71.447018,41.67121599906],[-71.446247,41.66630999906],[-71.444801,41.66380099906],[-71.443541,41.66301899906],[-71.442148,41.66372799906],[-71.440996,41.66623099906],[-71.440153,41.66684299906],[-71.434748,41.66626299906],[-71.430038,41.66754099906],[-71.426647,41.66952599906],[-71.426086,41.67048399906],[-71.424285,41.67027499906],[-71.417652,41.66529799906],[-71.408621,41.66316799906],[-71.408858,41.65784099906],[-71.408893,41.65146599906],[-71.407525,41.63332599906],[-71.403154,41.62746799906],[-71.403392,41.62551299906],[-71.408621,41.62195999906],[-71.407907,41.61964999906],[-71.402441,41.61556299906],[-71.404342,41.61183199906],[-71.409571,41.61040999906],[-71.411948,41.61112099906],[-71.416939,41.60490099906],[-71.414325,41.60258999906],[-71.403613,41.60295899906],[-71.403392,41.60063499906],[-71.40377,41.58932099906],[-71.410997,41.58659299906],[-71.419584,41.58578099906],[-71.430249,41.58339299906],[-71.439519,41.57734799906],[-71.438806,41.58143699906],[-71.440945,41.58499299906],[-71.446412,41.58321499906],[-71.444272,41.57894799906],[-71.44705,41.57842899906],[-71.446412,41.57450299906],[-71.443322,41.57308099906],[-71.438093,41.57059099906],[-71.444091,41.56804299906],[-71.443831,41.56606799906],[-71.442157,41.56381599906],[-71.439064,41.56367999906],[-71.437356,41.56222299906],[-71.435179,41.56213199906],[-71.434371,41.56163299906],[-71.435227,41.55954099906],[-71.434783,41.55809699906],[-71.432716,41.55738399906],[-71.430175,41.55823699906],[-71.428407,41.55708499906],[-71.427873,41.55547499906],[-71.431045,41.55010299906],[-71.428646,41.54698599906],[-71.424777,41.54943099906],[-71.423357,41.54818199906],[-71.426671,41.54356299906],[-71.423119,41.53875399906],[-71.417652,41.53626299906],[-71.418128,41.53217099906],[-71.415513,41.52985799906],[-71.415911,41.52794099906],[-71.414825,41.52312599906],[-71.414937,41.51630299906],[-71.421425,41.49862899906],[-71.420858,41.49321499906],[-71.418603,41.49212599906],[-71.420759,41.48997899906],[-71.420267,41.48357999906],[-71.417957,41.48207299906],[-71.417621,41.47793399906],[-71.418404,41.47265199906],[-71.421157,41.46988799906],[-71.422991,41.47268199906],[-71.427635,41.47253999906],[-71.430744,41.47063599906],[-71.430926,41.46565499906],[-71.430012,41.46114099906],[-71.426684,41.45882499906],[-71.425817,41.45600199906],[-71.426855,41.45412699906],[-71.430259,41.45303599906],[-71.432087,41.44938899906],[-71.431137,41.44730099906],[-71.433612,41.44499499906],[-71.438129,41.44165399906],[-71.43833,41.43958499906],[-71.4406,41.43836799906],[-71.442223,41.43972099906],[-71.442788,41.44139799906],[-71.448948,41.43847899906],[-71.455845,41.43298599906],[-71.455004,41.43031799906],[-71.455388,41.42800499906],[-71.45482,41.42182099906],[-71.452643,41.41777999906],[-71.452639,41.41475799906],[-71.452974,41.40967599906],[-71.455371,41.40796199906],[-71.456211,41.40512299906],[-71.459242,41.40311899906],[-71.462325,41.40127599906],[-71.462523,41.39822399906],[-71.463743,41.39575299906],[-71.467312,41.39495099906],[-71.468984,41.39362099906],[-71.474918,41.38610399906],[-71.484203,41.37184199906],[-71.48294,41.36592899906],[-71.480439,41.36241599906],[-71.480875,41.36024799906],[-71.484658,41.36143599906],[-71.487696,41.36148699906],[-71.489218,41.36237299906],[-71.488956,41.36435099906],[-71.494898,41.36827499906],[-71.497275,41.37130699906],[-71.502926,41.37419999906],[-71.513401,41.37523699906],[-71.520163,41.37652299906],[-71.526429,41.37691899906],[-71.531546,41.37649299906],[-71.535372,41.37496399906],[-71.537237,41.37332899906],[-71.540901,41.37301099906],[-71.545289,41.37403899906],[-71.551566,41.37442299906],[-71.586094,41.36808999906],[-71.594756,41.36516199906],[-71.598051,41.36506399906],[-71.606487,41.36394299906],[-71.616506,41.36298899906],[-71.624158,41.36120999906],[-71.632989,41.35846199906],[-71.638315,41.35543399906],[-71.642851,41.35566199906],[-71.68807,41.34282299906],[-71.696688,41.34097799906],[-71.701631,41.33696799906],[-71.70517,41.33428499906],[-71.716036,41.33108899906],[-71.72074,41.33156699906],[-71.72427,41.33208899906],[-71.730717,41.33163999906],[-71.746758,41.32809499906],[-71.751656,41.32540199906],[-71.761029,41.32849299906],[-71.766395,41.32885799906],[-71.773702,41.32797699906],[-71.785957,41.32573899906],[-71.815337,41.32023799906],[-71.833755,41.31563099906],[-71.845285,41.31186999906],[-71.857432,41.30631799906],[-71.859899,41.30942399906],[-71.862772,41.30979099906],[-71.862109,41.31661199906]],[[-71.613133,41.16028099907],[-71.610529,41.16264299907],[-71.610572,41.16837399906],[-71.609353,41.17172699906],[-71.607985,41.17286199906],[-71.607794,41.17539899906],[-71.605565,41.18213899906],[-71.601294,41.18321299906],[-71.597457,41.18518599906],[-71.594994,41.18839199906],[-71.593419,41.19144499906],[-71.592944,41.19891099906],[-71.58955,41.19655699906],[-71.585853,41.20024899906],[-71.580634,41.20337399906],[-71.578519,41.20907999906],[-71.576924,41.21102399906],[-71.576725,41.21573799906],[-71.576319,41.22490999906],[-71.577691,41.23123199906],[-71.574376,41.22783799906],[-71.570301,41.22534199906],[-71.567977,41.22467299906],[-71.565785,41.22494999906],[-71.562546,41.22421699906],[-71.55991,41.22163199906],[-71.55862,41.21919299906],[-71.555861,41.21663699906],[-71.554067,41.21295699906],[-71.555564,41.20831499906],[-71.557951,41.20451499906],[-71.561372,41.20060099906],[-71.564119,41.19537199906],[-71.566405,41.18820699906],[-71.566345,41.18427699906],[-71.564667,41.17967399906],[-71.561299,41.17576499906],[-71.55791,41.17301799906],[-71.554627,41.17342299906],[-71.552889,41.16911699906],[-71.550226,41.16678699906],[-71.544446,41.16491199907],[-71.545594,41.16345299907],[-71.543872,41.16132099907],[-71.545434,41.15996099907],[-71.545468,41.15748599907],[-71.547051,41.15368399907],[-71.551953,41.15171799907],[-71.556527,41.15156899907],[-71.561479,41.15049099907],[-71.56589,41.14900899907],[-71.568668,41.14936799907],[-71.575549,41.14824099907],[-71.578573,41.14761999907],[-71.580505,41.14909199907],[-71.584674,41.14822199907],[-71.587375,41.14806199907],[-71.5937,41.14633899907],[-71.595495,41.14737099907],[-71.599993,41.14693199907],[-71.611567,41.15390499907],[-71.613133,41.16028099907]]]]}}}] \ No newline at end of file diff --git a/geocoder.sh b/geocoder.sh new file mode 100644 index 0000000..c1fe62d --- /dev/null +++ b/geocoder.sh @@ -0,0 +1,26 @@ +sqlite3 data/VoterDB.sqlite3 "select * from voterAddress WHERE latitude IS NULL order by id desc limit 1000" |\ + while read line; do + id="`echo "$line" | cut -d'|' -f1`" + addr="`echo "$line" | cut -d'|' -f4`" + city="`echo "$line" | cut -d'|' -f5`" + state="`echo "$line" | cut -d'|' -f6`" + zip="`echo "$line" | cut -d'|' -f7`" + + url="https://api.geoapify.com/v1/geocode/search?text=${addr} ${city} ${state} ${zip}" + url="`echo "${url}" | sed 's/ /%20/g' | sed 's/#//g'`" + + latlon="`curl "${url}&apiKey=e0ffb38288ea450681a1c134c0f83bc1" 2>/dev/null | \ + tee lastresp.log | \ + sed 's/.*"lon":\([0-9.-]*\)/\1/g' | \ + sed 's/"lat":\([0-9.-]*\).*/\1/g'`" + + lon="`echo "$latlon" | cut -d',' -f1`" + lat="`echo "$latlon" | cut -d',' -f2`" + if [ "`echo "$lon" | grep -v "[a-zA-Z]" | wc -l`" -gt 0 ]; then + query="UPDATE voterAddress SET latitude=$lat, longitude=$lon WHERE id=$id;" + sqlite3 data/VoterDB.sqlite3 "$query" + else + echo "ERROR: ${url}" >> geocoder.err + fi + sleep 2 +done diff --git a/images/AddressLocate.png b/images/AddressLocate.png new file mode 100644 index 0000000000000000000000000000000000000000..0488bad2737e5fabbda4fee782ffc40719a66709 GIT binary patch literal 8784 zcmbVybx<5W@Gq{#i`(HGP$*J3+=~_GfWwQsyHhCc?i7bZ3&q`vwYU}c!=czw^v8GJ zzi;0B=1n%q%uZ%L$!3$yW;aSrMGgmx0t*2F0Y^bzM&q>~`LAN2y|y*FwfP7Lh+#I; z(rOCQ(g0^yCrcZ93j_q#q<|z*`2h*C@QpG>S$14Y*6qYXp+B;+RCdJCYIJj0HA0yN z_vp%c$!|&J`kFR3Cr#)3h9ElVI+FO0h%O#38tzGiJxW;bOhsBdBH-Qdy)$76Ywb+O zn?c02`rqz6bQW$^8VAJ47?LF)ir!c8vy21p;_LiS?gB}7AkQ8_@sjVHxB&oyVaV?v zQ38=x{HGMK0Mn$jw{ds5-u)%mgyOD-H+OMv(-t9C(U#1jsvLw$L!8W!s99*;0iFodweZd%;`!--3Q0>pxJH<4J`3 zrnMvD;)eXCx2SvQ?5OK-dRh4K07q8;?wU0zJYoO3Eoi1naxw@n|CMiDbgriIXGB2x+6%tT6}i5 zFb8k}Zza;~9`V?UjJzDs85t$qEYTOv80rOhCEY2(4U2gNcaLWUX9z&Ws&h1x27Z z!e}bTiUL!-nV2NuU?_?NJ|I${-tWA#{b6_D*O?KAXB29rA=2PKu<}~Ks<3EF$BWy< z;n^W__-C^JEx8ynXrr=^w>;lin0v^=eO1rsTmpQz->hb;v&iqjftgsd`Tkt2NleD6_( zP~WcGJ%!+jS89)st6GBVMRu!7S^6nt__0=_oJmLYB^=QVajs=h`l2F12w>&J_V~KE z$WJlOZ?+KX@%DVcqEw-|Xo^)9jex~`>>D}wjf`#%VavCMQ6H~z__GRZ)sX&7h2T$c zs{(-wJttPOOl~uhLJ?F2+?7md9dhKtbgG)2pFnpO!!1%5^#twAB`l|XJV;5KZ^zut z-efm!H$H0(#i3uV8tagtxe!}PhW*Rt7}v29^GksTu3BYztuufuV~0QaRj>h>_+&Mr zfn{ogWD_3>v!KWK25+{4p<=aTW>68IT?{$#zm2My9TrG!LjPjK13LJ?>7}eyl8!Da zXPzo&@b#XRhm*j9y_Q`FCuINc#KSMYziq>U=&jhQ6;shN3cy5-xkOVeIyIfRaC{?7 zx|2^pkuqokTRY`mg-n^qjQ>G#LXIv6TAObLb^)TD%x(?foOCykpa(elKso$#*lFZS z1iro_BSB1n8dpLl{Gmi08EG3q5Xx(rT z=VL>yLYDQ0I7W^qZeM&0NIx4)y$a-%=f&~75pD(XR88Nrdw6=jTk_@_=Q&?C5h(-~ zW(T7{S#2akFmPqQx%CYSYEfr@voVE2*|aSY%nGtrfSLmdC9Xidvp1 zknt^I+N~FATx}Caa?;*}pg_Kr&*VHf3k>#gik|nCSx0&#zsT&3=@qnNA{sgFFF0?V zBu4H++!ZVMcRt>565x~HQ!2jT^%R(3be89aA;X8Nm9wBRVlC30NWF-?lk~?}gdUSc zkaK)c@cipK*?Y9r&A}Qh?y$rndOeZLI4``Q&4Gk$VxKrr)fc6mpnzjBQUPFb1iXuFE?AFEN)x{|C*qZ48`G1S579C zTNN|Q)!(SU`T_X?b)fZx5z9ECe9nfzErb@0`pM*>~=n=^aWX^!}NWhp1p&r zBj5m;Y29K9AxREY!(~6dqCrmnQRnUmHyRevx6CK!FYJ9(HHa9NL{E7OD!f2t&M7gUe} zcl9lVnJTvMc|3LFOV=C-5=CN~%ib-Yckx~sX%CH9!gdWO{&`*hyg$A-6a8z1A625| z_4lU~wLvC%x2z>I1`O%%AF?i@C|lwF(wJ7$Q)^wyJ7L&GR`JFp6O$pOw10=KNU;L^ zaXRSVL<;a|F5z)kMgQ6w3G&nA_jfGs80c!u*xI@ks%22Ay_?MblG3FaOwVI{1j_La` z_XJf1!mgLt&EbD+ckWET3g~}Ye?a%`S}zOaGERZ}bB!l9r|@I9f*m4AY|PM-sF+w} zz^`euIY1`!!1xmMJzF3A3du-J5ukAD%YYmt9_>b<}u-4%6}HkCYXHUUGb zMM*6K9g3+vOhE!4cCo(0t6B#mKlW+(#lYFL5JkacfZy42#fCVz)0Oh~uTl8X?^$4g zSLA055u!9wMExaeq_)esC;>!DiDnS&>;QfhSO;^d&4XDBpFe^m+dI1DM&+lc!(?Vb z*_OG3dJXGwyN)>YW`@Rf3PNAYQuwy`tR?f2eDcq%0wfsu?B0<5#PR>yerOe5y*n)n5Pl_I{>ca1#5mPl?5?5E`_O{ za$OK_mG;IE^n(|#mjxTG z1SF=PGAbAr150)*qGwZ(7TDkp`T@l*W0FoO zuT5(|Bk&OQapJXGSpS{flmltn_x$8?Br0Om~KhlBP1u-RNQkN1}7b>veb@a?;%W({fjQ zwDb>s`vXZHsjwo9upjxOV6R5YQ(;}Nfv!)r?O7bO0}n=&#Rxu=J5OX?&wBSelm|D9 zF1OdVWs_pcR5XBbSAT(f)ENlpM59p==6s}l2gQ=##_JmAQXL!9`9e4nBvOS3ztfGc zdZ$N)vbs6qkjCmY<>^c@h9y=|j$G>NHr}3Acl>pzhPa`3J!fN&5x9UdQuc`MsuSG4 zKzXQgzj5LcWXtSRZ!f2H%eR|M$f}27M4D%{a=7i#HAo_VZ7RVuhu}{O2(z^8wtc$) z^jM8b=V4bp5hJD-!iWK!;Y%tJ?E1d)ibJDa_eUmO)u8ipgA22cLrEp&M6Pd0S$2sd z8i@9A@5>dgR(s*z6+N>S5&f6RL0H?Tg}7DvqFX>3ruiT5MiAuOO+3kBTV{D{t?l#L zbX1?GwE!>-A9H%=N$=k5n4GdF#OPc(a)eOkaP$g%J-oopABa4($t-1Wo&ANQ*bgBF zb9S@0X2w^yLP9axHbF#Rc46pk#@V`HgMBQAu`=X3Dr$P3-2l`m z1}Cd?`vMx(f|No7>=cMb8WQQ-m^+&j?(@8c7kp};VnfuvrUEL_U1dZvuEHAS1-4kb z15TP7X?edI=stHIBbO_dMGpb?P2c69l0$9Nl7B9+{p#_VR9>!(7t_FohLEwFzA;eA ztcDIQ;Y(vu=pl|h5_dC*A6G~a$5DWrwB`%{oBiH)1++Gv?pEsC`IEdv^;JgZ4<$*I zi|#z?x+)^AJwBk}JyAV38q_ozDuVcFCqP)L)SYwv@v`)$M~f~@2IKoeNjW&H!IBTV z!9em}33&Jy-;`Y17AFh?yQbD*tu|PmejEj+cyxracfkktiJy8S$9!khq-9!NacmPl zFsrr4olBW$v4#tzAk|Izz#F=O#TZ^eH%QMUS{5a}kj$L8M<72F3M|vfX2y}0SLkTc z{?#hXAm?Y55UF|D%`l!uHpxvzWp;F;^ag!c&+D)#y||1+mG_nP9;BjK&})U$l`k#R zLEP&r`L9N7nT%;LRVs4e?TvM`Z?E2~D(qp-fQ_RS{FI3zl${mkAKLuJJ4=}vwImt0 zyOOOG_bIdQEhci8W8CsnQ=>*HM=xD+$M+#s^45yc+kBcZT(|u>?74Y@+ydrFUjKco zjFcZlX;*cHUFS^1ICMj0Q3GVN?4um7X73M2KfK&FDzB%=YT(RCLvq|oNGeP-? zOfs)sK@jQGoO=wT$GSv_d$Dy*%sgKEiD^y5!w@g>r z|Mvou#g_<$lbh}2msn-xiw&9BMqYhTW(AH%KQAqNA{Jo)nU0RAW?@FVCs|#&!dHyI z6H8MKGTO!^>D38d)l752!boa7V7f7w3ex_DlXp@}a!W<(< z8FPTj0CBe~p%|2`J8zF8PKAo}UAI|f3i;(0|8czZPv)4E1n?(Ky|Kwo>E*tBWKAJ@ zFP4-91Jv3Spk_h#c~r?}aHtr+W&%)dlvAXleHEuOYM7J(<8MpKi758?j>^pBEoKL! z@N>Pz8#5f+P5N>7O;KP}ZR7aoE`jpdLJ|-WRl!(^@X7lc)F@)>UZ2nQzqrND$Z6rb zZQBL_n_1C^z^yPvVe3t`u(xUW8qwTf;Gz4BJH>U$e|KEg+oIX+-B?fnlZ_BWr*BbI zfS;e)`&{mJE$`gLrlasniKFpaEGF#mhN_T2%6ieRR14{g8|JwoT;|&*@6bOCl;rT+ zzeY2UsDr$>$ONjNq`;^(P_5ET6)fLaPp4`dJNef$e-Sl#QW*r>SaU=B929G#q|R>! z$-nUpIOl<>6O(K()~?~GN1m?A=cibZFT+db7(O!nylq^!^4<_TV4OMgE9KQTyB;0- zs$Crkm`M3j%u!4tn~BAJsk!+wtz*7ff@(9sCK5d;8fEoB_$D#JvW``J-QS zGz0>T_2$#9kf^og%HT~k|Bjd_49*+~^Ts~j^q*^tnw+vmzlR2E6R}1kcIHA>Q>sq_ zEIC4_pQ5bzMs4gQiAH#^Wy)nNoHWbh6mATkX3EPX{hqSOr5A^&d8Lw2S8EmwXR@fb zgn`*HRXK`gJ zg-}zjbA<;o`xd6jZNEz+kkzzGQ7kU$@yI>&EFgvxLEEy0=hRaLlUp5}oh>v^caZh= z25^K|%7|>&J3f$}&5@)U5U4uBm_J=oS5grnof5AjOSWL42<2(XHSB;53M;+$`lV`> z*q(~E^$0Sv4EO(N4UH*KwPHr+)o|6aP_!Tjrz^?$a2Nxc(5Ib`OuwTfp7&|E_jLf%NbjYb2A4aU1WtP#Euj)*g93zA43}x;J6RAq%Fac zEMcV|_zYU%YghW5p?8E#G!m_o>8u?Flaik#mKD)YRbTmChB|_u;gMzQ;e$soXu%rK z%m${e9INmkE|*HVwNae3QzXgFkqN(QF|=|8Ejztz;tt}a?*%R znsJ<&LzWvQ8ck2)krE&AEy8q8x)O8v$j!>3(Uxdr>{7E}nMjsZ%}Cw5*=ELVR`c(i ziO>*PZV{xzIBh~CaJ+%aVb)^s!2P|v%X?~-4{>6}7kn4dWm-?Gbu>x~rp$@NupPW} z++NJhO8o1?EkG_XJgKZKPImBj8CW09Vv2eFueEC!MfB&nEkHh&q!*HEbV^FW^Byw4 zt3|PH9c}jYn}gZHEoQ9^!}KDLy@Q*TwfP~d#QqWHS)H?d=Hw7xso-{%ISWPQJeATB z6`6c>klDLeztE#p$g50V8AMpzjsJzl{>Z(WRZ|^o$gzFdCK_C8ell%QrFg_To*Mm` zEt{D-P7<%A;$i+@2JQVS=SsvP%H{o~TaPb?O)T*UJM_e!BA@2da7w669JeE|`pHK%s989j*Q*jXizoV+in>n{Y9RYPas)zeZ=`6?{g zy(w&$D9~Xoj@$Rxu1$JL5e14E<<>CSe75jIbMCphIR_4&ht*+=A$kXscwbX@z7KC@ z6$d^Gk$*XpS&B;0#0yw9#UmP-k6mm8t)&%-t?>CmYc(pyN|cL(<@^I7c0ZOyjs>Cl zW!g|4Tg_5t{zEOrcI>*2zrGU`y(q5WtIElf+Ep2mbPZwJX})_`?oR^^C#D3W`*GIq zrn{200gd0~lF*dpy{x;?Urg5SOF!dG6BU2%g zzBr|Lx4OEzmCTH)4_6!{Dqidh28oukWQPwE)1b%y1JmjL&XK6a3_L1ECr+D%p1i?P zC6*Rde@k&3%}=6^*O(Ha6e)V~ifSm$J*WF-Hp+8d+Ve~9^8>A@37$-rL@k}xBxXAc zQvheUdr_^1Au({iG&xz$`rYWKqP!toXAE+n&yhxDG~ZSAztL3pmR>Q*Q=eA}H4RNZ zKAs7={SAY5XBKtiQ;3RCl}V~6YFq;Zc^Y^-NB#}3UeVw(vdF5cCx#F3VZ?QpC=@IX z($#GZvWQ#x8NNcx>Kwa06fuh?rLr99(H7({>#PgCV5z0@L989#cKSI4nhvA0jFx!TD60fwXQLVuT@kF6W@hny=phpg4H-NH#tVE%u-SG=O=+G?8v;0S=v1xc93A4fN@54t zIep?^NNeqcm-j!9XCwva5prrU`(Vp=18oYAgO1OynfiNr>B}J z7Y~@qpYg6P>4w8a_rpE?22<5Z-c#Ay+fp;{WwJd;;956O(e9ge^?4s$b$rQqwvjc~ znC~i_4jl+lA(iI)`G(QTb63&Tbc76dYU_te#7De}BO_Vk%Ng;fDN;|!$!8>=(4X{U z3d)z>*53A@O>gd0ve0tF;+*7iro680fTA*kSmEdKi_Hv z6s}des=c^57(%5*a^P#9%|yLGyhec2o$hYo+TQ|JtBuR^4NqM#JnW+*EiT_A z&jL)81z{k>n%jg8<(8oxeQSgz=vJ_i#!|8t?>Xxmql)eJblJ8O8Vn?s$-MAk?!%jM zg-~F8M0C&eU@>cY`yY;xo39@QW9r!%9Tk(jNJP5=-v0(kaL+Zc?WU!A>m?cTpMOSb zqe0b(TpR%1Rvjckw|`}6ItXhKTWMWm^am0~e28|SyZ6Pb(IxH_^Z&QeeQFfe!`=@U zW^qE7S117Q>9f8(m5X;gkXJFiegW4psjC!;Ku3h)R^NOZG5ePAWr&73@z@ZcP!_z_ z8;7OeE-sGPK*>?phPm5LicyLo=W>GNc>3HKGpG)>$5xM#d=va~UFz42aDEv0RHgcS z;`UIZ{bu0({}+*2C{PZc1{))H-|1m#VBoG_0;u#RxPBn>BgZ&&H(Rh%wf65(Bk;ew zs4G~9C`%7M0acT0MqCG_tL|Tlj)lRkIu?kSfvKU*~}OXSvd=umxEyvK_w-Jfv5erU-61m%cj^tt;KI5lJ>Xku z>BEb^+h5UlFudqSo^@Uv1{f6~{0zUa#LJ<#_pDdY-v}bAhnO&Ia=B(R4FQZ%dvG1A zOd1PxRN(jfUyn?_lbNGG3SNZBu9JpL$}AmzMz233T)9{@w)1aAc{XMDcQ!g{GVod9 zvMy#PK<4T{xBsfzxlG9ke3A^C)U9i8dDCH$l+h6#JOY6@AbF>?I7 z8>PS7wG&=H!^)OTh!+PS*;wxr011xt@{x1k7cdt!9;@?|@Y8{laaj%+iOX~QsAnM@ zpJ=%0U82GrW{7^esp!YMcbnpz7jXDVFx>I$i(6FQC5Ln30!o3GR{aZu^FIARX9hzs za)X4AzCPVi)tjsMpU$*YE~MQ^{*M~Jp5kw>HjFsLN<^2Y1E0sSJ5M(knvIOo*muYL zt?iCAy7dHgO5#XdpGbgC--UWykqGYo$qLPIZ;EqWe&5i%gCS9p+--0niF*P`J8%|i zO`Mx=OmVt2+&vzZmp^H>U{wdzz#f@bsWw%<3Ws!92L%>%-r7B_onE}DCtcbxaS9fd z27!pY*gC80l}(C!KYm?lUyLKjR$@IC72bRSo)9lF)U))hQ{6ryxB-8l212F77c4^Nc3Y#-`WOI2{KF(3J5S9x( zuJ4%`R3}1<0wf1SJ?}2Gzjj#INS$J?BCj&I!2otny#uEX=w{fq4l zXXcpF$4COxxObgST94!ho}g7o>&8m6Ge*68hzODs?nUwV+(LmrN;k+BH;&k2O=~l< zpJut^ejUY6HJu1nqSf)TOvY%RmeZouWp*o;|bC(-`yVRKAB%M z^k(~zcC?2?gap~Fc|gA62lwO?giN#v_{pusojRxVdoi}Yfb3VqV0As6HF4xt|A_81 z7o(5mQRRXM)~FU~<8Pzt2JZQ0vTTH}yf8Z5Di?c@#R@OHf*Fh>7%*`=Zf}moQH&`F zY!`adF`Sg0TXGtm@tm{%9#>)QQohgHv?5X8rsa^OLJ(igo~moOXcK#JxU0cyinHdJ z3?A63$*Xcnf(J|_#G1yn&IfV7bk)X0nGeF@y%cx&455^H9oIT*E^WoSIjCYn8lK0+ zEsGz7qvvl5yVkxx7V8p-amKKpk7sBkhH@PvArZ6|+sicu24Q*;8ukU=oKibc#o6oi zwd;@iKJ>ZM<4Z`{6XCo^SjmD;EEc$j-X zf|I=`_7#jRGn^}&;>>5fJ;U7Sg< zmlGZ->LmWSC4#Ro5}|XQzPivAwxtsj?2FJv#XS3nK(F6k9tt0=lH;;b+t$7DX&_?{ z%}rUU-F)<9J}8dL^*+LnjHlE=*bWU@@0QDe<4;ZMIN}Xm$`@`d&KbQ9LX%G!i--NS zHX)CQvG8v%1fZ*rq%*j8-}+U5VSGlnKWgaYT=LmnzV{XPC13QjWPWPwFFe)*7^A?A zmeTiKSJ&34y%1i=?&6Mnm;BW>XEQECI0d%oLY}b9kT%@j1$=f``xU^G@zY23$f%{y zr4hg@ip;Ed#{g+1tg~qz@WQmuRd5w23PtE?$DuLq2V#Advq9c`nn7E5U^t=eSE99> z6`Vvl+;B_7+DhytGHhP!swL{z28m>g2MGIT*c~6qwHO;2Lf*LIpdBXk{loS0Vz|>$ z5*adf((h+oAl|2aHMlEST*ie$cjZdtL+wZ&9=|bnV}#S+3mX_^HE0U~VHsWqrbV;k z<`6efvfv`XnGGgch~C)3tJg7kOdK*Uz+JB!WD z8(pi{_k=VV^a6D;J}j?2b<#1^O@B+Ee3@>E){1eX?f)5ASJLmHd`%dj`Y#vY|E9Yf bBQNMIH4Ba&ZiLOR;}8^NRb*O=5iUA9w=g<7Vgzr``!4Qy06>QPn5>EJ&=!cCePyU82fHsbpO~-yMNbdz zb|&VQ_y~KsdWOv}7GtX|nLvIMnExZH33V%IRcZu4Jzfqr4R9-E>oF$lhDCP5yvk=y#rDvq_n z6btllKzp~={4czB@uF-v*$IgIcFRWVK=f#%9G8)~lhn?Zx8Lb?t&8+Y@sq1s|9^1AgtVA5>NW@DV+AJ5+(&PDH(gm%Z4s74Q7U(N>ceTAof38eynlq z`B*udO`hu?^?9pW6%X2_tTwG~KWhyFWKApoMk=pu&rJ>3%sdYeS$VL&yZwCfFl+g^ zWi#k&T_Vr0d-b>agU_bS-HqDL^1)x!nUfIO2n^|-g{C?)NH>Wo8o|be;Su{UivFJg zkP$!$+yl!ZZ4x@^KbulhB?IlK|v1-2k`k9NX=MjK!s`9{uUj z&OM&^+NS@z&67`l+UOj`2WfbX3CIz3G}}l8Rap>TV3QxFTDL$7!xnZ_58zM%Dr0@M zgOP1x3hdkSf1#hpnrK3M9pNZMEXD~mF)g;9jH~9>=gwAd4WrT=c7_CzD~C*h(Kz0Ci9pXa~}G~_;r330wy(bL>we9 z!pz-Q(iZb_Yq8#E;LE&QqL!rhCKur-fn$A|SA4095X;A;Q<##D=4?kb5ugYkyi4ah zh+uCeUTw+|6<9KqY-ER#L)6m~nJ|#+P4o}f5Fm=rJ{SB7>Afz0wJE@WZTy^?63f4{ z*aGPICG;9Eb(^E=>M}vznJX#R)cM7G#9u7mE8bllgEVoxgs9Ia0D8d*Z1KH1-+fw^ z6YfeNUhO$%zt1A772jvN7sOUSObXA}w0;U6%IjWj&a~boD;@3#hBO^jr!7>JIrk}4ibSKM}Q`8GT zhf-`27#6m$pZgk-ibOppi9J8WI@TpJ-Rc&$$>SFY@TzOHY`7A>yugP#N%(@e!Xb^;6k^w zvRIL=lQQSr&tM6D?VwmEFrI)dm{g6IPtt{ugV5Pc=rv1(xAvk4Hq#d2!Eyo>dy~t-%;W6KUeTGge`d^fS+ye4er!BJ zlWNQD@#|D~i_1K1?_H#7`gz&MUL1C@hk^Zk&zR}rErYwOO1K;%YQrP;z6@Y zJ;Q?F!#^2B?9CFNT-~#)r9&b2$u1?*$jH{I+OrFx_ii^5C!(2;zXmFcnF!WeS5FZO zayD{SW=icW+L)|u#$6A!Ld!jL>1$EYAO|Bs#g(Mhr{~9QBXv~ZLXl2cLK>)Gj*ZTs zYEgC-cmKO1VfIpMVkpngUu!{0E5%Y*%{>4Yp8RYap#3b>1;vGk&QKTKsBzTIF~al4 zv)t3n4+XY_2UOhfL8pehwDadm1V@H%ITkABHE(@4JLva$ytRD3((EGYk+I%Y7bRts z=11~Q%{wc(PVSL{Ua{N2q~arS!3%Y&m?Xsi=Z{TgUmU%JJXcY9xUwCO#uta0p?3Y* zri&mWDh`($1o5QonPm@@7kRTD^1LpZpLGlNINq4%=k%DYH|fi(o(W-;8yDpU|LX2J z+B1&An3ac{Xh7l-7~t{@Rxw)272a zem`>8HS7;Yb#(0S{P3*!q2h5=uZc|TaeC|bQwsAxYJmA4k4X0O5B_u271XyoLzbMC zy&%uZg-PniU6>g=<8x*7o{PtZ#^unjR)PD|T6ev+&m3!fbuD@N_o#l-avPi`0d9Ub zE(In)wFILsFuo%SFvQ+4TT!_>hedUwskm*@2_?bw@s1W4*wTN7EyUhw^X#?uQjvKZ zL)Bs^p>6A12Y>_M$Ej_qKL-oUcl)Iam*;#GTi{=vo2nj7g^VnjMf6mq-gR$p-a@Gy z@IyV=y-xpdLavE+w^HpdxyW}HT?n)~3LiipcoT;syc45GR1!J*fIRl)uZS|{~t+>G+q zN2#0PyR9=5)1#9C|G+)mYO)VWTAMo-Y4mmmeOiC>c|=FrTdY~@LIZzDe!oXkfL!|2 z%&E6uw!(!97esGTos9SP1E3Wqzx3f!V&u^$mZqmP2#~$K_A02Gtw4RNJK?45xaLB8 z4_|NU-TtuCn#f09ohdoTVWInXvzOXF&J5gKpn0SOL--XsqB$8oNJm;AzdmV~*z;a0 z=aCMWLRT}#-884v-A$`?!gFUl*WVP5+{`7_{VBoaLMjwGnk+3;SHcMp#VV(g{N@Iq zYievkA3yPz1zA-4V5|A<4p2yThr>hE=}RM&-Tr0*uiAawk$U-6&;c@ijyLSvTLsvb1cv=(03Mo^38W>8+`SC42$rrmz-J|C4fv-3;bAsD!^(IVRyM4tbN3JC&Lk-gIzJcC+`{P)eKHKd8Z$t`$ z%}{*%C8};{9AW67j=JxXnp0Tw2~zwLLzYFf5dOF4^nFZB1eG;U3} zIWLO*>$_obQRIQ2jvDjYd9{93pMSP{6zsyWG_PMif$=JUAd>LBe*)qxfuIGwhf`vifX%-4>*DW+? zWL*x&{DVQdI`P2Zxo;v>uR?eF-B3*A(OR|i%Gsx96CpmeyyL>Ny1czk{-;dg6s4-t z5v+@!ZL32Ll*NU>f2&yPvV8f;Ms&~W7N*_vcEMXc#o4+(HcecF#a}g+Esq6IP{q5J zOXR7gcrE4PTBR;jib2ZN8$D;G(=A2=?v0(q80&{JZ#FK1G)Of24i!+M`Xe^zfic|# zm1L63q?GCYT@c<&0p%mme^DMJi8MC45ANTu*gD_^kt zo+@-?O}Ff2aoa>z7;xzMcXrIp&vQsz7ifs?kz{}_E9BMvp zRohOE;VET9$3`!IP6W0x4E;K-9jI(GA_InS55Io3VTl!s| z1vE7SAvzj|_9Q5Q(HjsE+^IYB0SgS`K((PJyck4bM)$M$=Xua69S645NO>yvrLtPP z#6Wzv5`l?u<3eN2*1gV{Bv<~K+TF{R0LfI?(0$?n_Fudpy8#~K=k%G5t_!cFBf6R~ z!m#glCw}Lc*i5sP>?2SnP*xg0Eq#+m8uTaTK177qenW(2y#T-f34HM7^Z3MiS_62~ zE6>g4?nm^*94RF>ymkS>sl5VJ+`F*x;pE2Sc4D(qhOs7i=GfjV=q!(UP*G?B^$jL; zC^B507w(J{M|yNxQ}0Lf<)|e|sVPCxR@xW2xkAa3+Ex)1p%jdRQhe+XMC=)Jw_vom z(-g?vlOs^CD znY3B-wvMNiT5i#v_gJ~g`yVIYcIoRjirNmWiSa^4{1sSElcEyU;@X?HSQF)Gj#Jxc z5Mrn+72?1Y0pLc0BzRVIrC<9yU<+>Q*PEbZYhRm+{S_hpUs~vVjn4+1yzT#?5xn(* zzU)lVX7)k|-oL5@rGIgi_k>4~PRf5}3fptp#D6)8vsA@@YvtYZB+ID0<~q@302nTua%YLbzbb~{~{*(OIl-Cn+E_Oh1$uhPrVQ zF_~gt^ZNR<tB0!&B$2R36`RXayzN`Wb@%noiI}vleugt*5NV}; z62eapa<9_aCqcoKDG@B`jh$e+dqul$#miCf0oh6k-FlW|7e3Bvc*Z*8i4~s+Q}WB@8=2-@!48 z7o0N5L8#<5pN?6OPf@-dH!T-|GLbf*QV{CRYkxp{Z`njyVyHCd(?24$c?WW<+~)Y2 z_!$YfuVpHAL;G-21I);}O6tcdxE^wq91i}${li{(>bha8Nh5guoeK!^u)xB5uk2e~ ztPmeu=(N7sQC#WQyMv4G17k1SRFTP&Ed+Gt&j{@VZAmQSM zoHKyx?mNHLeFHx)Hr-#NXg9cJPK!-BzHAG+rK+MlVEH8n2q-HvcrjQmN=EJg00jX6 zKt6!PplaLy0%Aav)fF)IaIjFY-W5`0W4u5V5Cubs9N5VTsp2-Fp%WNY^JeH_0CJQRLn%5nDnFxt+D-3%k_OpKqPne|!>^wjnwX{~y8k8& z_0knZYm-(UGK3<@{EBSC&jPTa*=hp)qz&Y)Q8P(1(95*Sf@^gxo;C;8%01J_@+LI; z`hO&K(vK!!9-%Fxb|P*^t>%Bh_%+bk^zWEjEH-G*N^j z!FjnLINeXG{5CIDxrEZFCjGG3)pqsF>+Br&I(*h_d8=m3=)ou=R&DvDNLvfKBA7<9 zFHju@(f*)x2T?hYj&u!rbsk)#`PNrW`E$?1nH0xyb+&XZ*3(W`5A*m=*}|7UrTdil ztJ_^YH8Z0Tjp8Q9a7X3cfZsN&ey8}Xk(dluXkRKgl!@3m*vp9Jj)(DC<$&rWAQ1{# z@e0^)nO63@n>HG;r{xGK$CEUy?Za)U)ys53IESusG{K^%tCz5Ao!4p)-}u8(!0yl8 zSX2J|jjroeo6W8fF^srwA%y8?TPJ1v#8CMdW!+coq0&aF#$hfDdY^=cn$&@`3Lf$O z=b>u!-FG|S6|iLk`Sv0G4L?dae!FhysmwNF6ZE+_vku&9^7cY}y6ZYpSPzLrKsFK! zcsGrxJNT7FC;Kd=xSN~clP~0cu~Y#2zO&+dTH9#A{WIf4&sz=HgWF*us0Ju)h8iWL z=LQ9x=6ff!z^X~NaZgt$19p2@#~TfHeOj899a~Id_0w)A=)Z83U}g~m4SNdL%MfOb zoD$$3#$t6`YJ1(ZTGD8u92D0AHhTR^1L8tXsCh-d)hk!c$nzs$WPI=m(F_sP^J#8C zio7~?;!9`Fb=v!SnNT6Xsq0i%cjBHycFk^*^|$5GfIJaI5<^Kv^_o`wr+{?9s*Y;o zRpv{(la*DhPLg3(lN@p<_hav9IgH;aVFNyA-0mn&>3gvgsa^bUeTU2%l*Sd>sBb7g zX46drk{3T%%b1e}-mdnzgn5ELc*C!k1B}wT#HKHQn@pBD2xM)?{t@Z44Q@X2?fh5k zx>%FfUeCtee`A%L>zC&G@fiR-Q$mj_DdcEo!}0B6NCSHChMysb2Y$-m?n>uT-`#?{ z*Q!TV2Y<7-2}pXJrkfSmGjCSmuddl{pHkW4{So-#+-fqJHtx@j%G&Vdy3;RIsM9kA zB!@QDb+gpI5c8+;Q&ueHH!86iOY2!ij?J!g&hf$939&?L6;~suvb^_VR7|(mmK07< zz|A$6tq|GK_nC!E1x(6Z_c{`uy2-}l7Hjy7^ZP7e@hthpnxpfnR%#oU^@}({BhmS- zh@NMP?ydlmZ(dw1Oz~c_@C|?&v8;y!)YVk?msy#B`G*xeHN&b*>00urCgb&*)%#W( zpYHCN(M!&8S8tut&XYW>lfWJFn%#%a?DH`epbLQ0L}z0Bwcn)#W3{RF#o2&rX6Dpc zdvW4U=!XG26^HRgf0I{*@*cCOmdNc44}Y?sG4}@b_LbY1rT#~0z~M0TjVi{hRIvwgl@WrP0Ci`5@Q|)@EHH|;)h~a zuc~G9Ip>y3H8*9Xlb}<+aP+;C;`@IsK>w|yx59zdQ4AH)OtGQFnDkm7M(L>nZieQe2VpUAWg>Ohrun-1gM`($hPkGQ%Jr6gm z!Gj+OT|KdP}B(3BL9}W&0Wp!-0Ojt{ocOAA3_EsZ&Pt zZiiTR1&c-Wv)V*XZR-@d?ux55RQdaoLcrjj%cgg9-Q!>5GO^p75$}=T9}K%28PHq~ zOH*6np6(xGub<3A{LmJqCu*oChm7%4+_383Y`i~xn2haQo`9pvk9537tJ3$}g@kl> zIgw~e@+py^nlhC@nUI|HoAlq-kcixFvKYbR6f7(C=2Too30XK~4V3vtzU34vzVSy; zI<%cqvrdi2aZz)$9qe+?B~yTQM&aR1vC+O^Yr*vd3&6*ojgsavEGv39gCqR3Xr(!k zy%!l}W<=cq)@2ne#JER)_T~ejStW9$Uco5-6b=43WT|@3Wj*o}ZZF?X7y8AA+`OkISrS9ljvt7~v#_y{S?v0#`mlRVX z1c_x(ZpArKqDU;O5Kbjyo=yG8>_?jYyC>YC2Y-e&hXy>cw31ec(0N`!>!YnlbRS4P?p2(-)la6C0W<%+M4#y?Gr4N>WsuAI?TC4E(Ymxlu*OJXaOB8s zb*4Z~47*c(nm`CAv5=T+)w|Q*8aa#$MA`b>Jfn?!tl`5fSyZC)Mf+IY6jAK>%~oTF z=tmaKq1oLIXjRT{EI(HG1ggwnNqPxjxLsI>6Dg{Ezp13Kj=PFvU-utQl#3Oq8NC3Z z#eT4~R*}JHodT`4>O!hQY6Xiy4Wy{r?Fudq@5ab{#>6Z0<{JE$Zzb0J{^9Y7oG52u z^5I*CZGZo9$8vOH+7B}cw|#9YUN~=S!)YNkdiXosu%ku2TM08IRI7-|^MtC%KwL_- z$5B}Zp7{flsZVwHrCTiLnu4xN`M=ACk%9)~wO+o=Goae@^cxLUHW zDxw7<#G})ND2!*UKURc{a|iy)B{Gh7Lr-rZe}QJ8RAWbKa~3A!#6ijVNJzZ=ilHn{5+ek?bx%f4(4rK8J5|a|xE!C)A>jSB9Jn z?U5*{Px2R+Tk%DEF2MyAET*`VeKDPxTYpM5dt5hdo7{|}-}w{iZDnrd(KrwmWgp>u z#b&@I7z^%uTKj02&Y(l3hR6cF8zJaD@{w&53th=D5O=)e3Y{ZK*tG!^Y!me4g9JVXjY!c#kBIz-F z-|pk2thI9*--HG1EU4#pbA)l|kcJqtSBSkkyk-cbXJ=Sn>vS<@RUCJ&35*eQrZv`*(*O9nQ{ENi|SA=im4OctQg%)&KR&5CZ8=2P;0Z|4{jvzH50 zrO0Ttc+cMp*KDT0$`Cbovw9}ycCTPbt0pg)nL6LQiYlo{>4F}d(-bSR2;a?<6OH(m z#0`Kbrfdc=>wG4OYZfofIvS!_KpXfNk@jlz;f5YMP*%b*&Pbz#Fd6yyis3}CGoB(; z2NGEHg?d0vSp2n+^l97K)j#cjlD?sGVw(JJ-bt$vqi-rUXxj>{n^z5XdCTwmPZZQ$cYdLxYz_2Y^QS~<9V^Qu7%Emez@WW_vQLDj^jI*-P-}#A3WxjBgLC6e6Ei+jf`F{i2)z>(x4Uru z#?aP+oXa49eQ=Mo2i;TZkEO30^L3ZstJ73D3}Xb{7^n7-&bT2ld#P?kPKi0C!!P5D z*#@BcZr=dwGiSHYB;Kp2QBj`2Od_M>GbiQOndIOZ8ohAzqxru#R$ouW8)Fh}?yhOV zmN#@~X=!)Na%(38GSb_a*wOM3N;Tw5!l zOID3IC@2$yggnPHb%C(()F#~-J_i}1(f(ojtTK5ki&Pjwd5$uxJF^IVk_oHG<1x;A zk-VSC(WcL zgQ4)u3~5qH+)N}~*4cNxR;e(p!J-XQ+$lzlLwcr1WRZRn-Iuda4NEY)tcd^nfV#-WXW?d?vy2eV#zBQdV3j z@rUnP5SSrT32r}<0OIsv&(R$d_peDz$48szz3$$r$BE1U<~%reKw*0|4YtKFLu%nq ztT%DY3pPoISZgjsJq?e2wp_NPR()8&JU5HDkQ3!MKS>JHLEEw74$#ZYNF|BiV99{L zmp<{GXM3T6Q7vki+;-X?pM@ZrL&RPT9Yl}`j`b|GcFTvUZoG;Dq5{of;(Sg^uOcN0 zLKzpRw~LNuD@oVruy_kjfb&0XE6+b9Q7Ye;iZOGeDi)FpG`|=hpup)2Nc+?=8^y}% zTcp==zL|bavzqM{!N^R2`8LjeSzR{GZFbYR$N7|=(ohcKEH4^<QtU2}u2x(`e*JUE27D^!j+4O!L+frq6G2xtOqPJ3XZ;@pMg zYI|GF4vslF)Y16xi-;Eb1rkD3@J$x`o7ksah>)kHn>O>-gsm}fr}0tD#zGh$Z%pCu zkj8O%=A2AbZh>S9Un+ltY66WmJ_~Gh652xdKTRsx)OffrCaZp*Y zp{2Al#_+Erl@zNE@gpAYfY+^OT@z6ik-DD3kI*6TTj2nX6c2w@o}0`3`8hx6LB=HF zC+fw;MZ|QV_)tYyWFCMT_ht0MnYs#x@*djE$?xQpQpUF|Cp!$La1M+9>9BhCU)d@x z@b2TTmw4F^iN35ohQ+UIU2XXf1fEQ>0}97^+&Ts*B!{!^D1_4$+e2V@?w3s&GX_F7 zOCf~i9%P>P)hnEsfZaq4F5Xu1ZH|tCNR8lQwKoQ6JFEPucJE31{7ic+LerOc7|ib& zJ&%@()zAl#kpiQHs<>&1e; zQjxbi_YBXI)^$uo^JsrdGnZoLinXgo6t4KzOW;cbsBX;{nTj-O$mJo_+5>Us$GIH3 zLPN`jgAM^9j6D4R0In)Y9jl+H{UDkOuLqC^G=v}DlKN#x*B%m8@^9$nsbzVh)o7#} zhx3!XX_ghAZZ}RpG#BaHLCz#>DpCv6uY_4b%LPkWbHCG+^V@NKL~e)O9-k>f^{-fU zsfom?b%gaxoNeBdy0(iOi0=_v;_a2xD($4g;v}q#!i$yXbYbFiam%B1ctP{SrZ3O@ zKy(-;&4;i0FF#z2 zzHW5eeN&xS+ga;G_mUMHqGcW<8*vOCia39Vq!rw-{3UwNd}K2Q>~qFUZ#%;D2t%L@ z2+Ks@V(o!?%mK{L`Ahdm+4vyjc26x3VQLr5&P&a;Nd;&$Xbx)vhMgsY^YNy zv8)rNrV%%!!}QX$2P#WC6cZmSmi+OEMw^GgxX)IVe3a_S`N~;&*p;F>B_|V?mISQs zCW-Kx5l5F3qEb(r&+#_NhavK!R9|TyAI=n2#I{%x9O8IR?zHqE0*N#@dcXZd-|75_ zJ)9G1h@3~0nZCVMJKm59nEm3+39)9Nho;CrVDPG zHILM*xEisY9A-GkaeDvn%;T7#@&$dVVHjYWZnt~%W zzEbHeypDqK+b*!{2$6MOc85$;!*}K$9gWk!m>&)o09g|?I67!I=qeU&cyZhU&cjA% zUv(dhXa(p4uN7WL`2Nb}-iKK~1`=3+xyb}ni6PD9D+dJ&GQgFHi)!#)1CO|KLj>0L zU95se<^DhErNy}^CFSdO!|iJIfPw;|Z=&xAnZ#j5@eDD>$DfefyEU6eLwjrG$!nX0 zwY7<5zKfEM$y@{;%cQD&FDelxcp;z|0p~y75YshIeW?|lAk2lwD2TXi21hg57hf};p3c>bG(yS1=7X;&(bqIou7eq6GwTn? z8w3ipz-kEGD1kCY?;0ddfmua(aH0m!#ujx7PI9g*5>Hgpq|;w}Q4|zHg>U9Nk-aY$ zOD^`2@{CdYkd&0gp?^hUg*X|!xzCbVScw2?m?Y zy-7zgAv-F)Kd?YsZ3ldNTA4iSBcpKW+W+iS^SP;RV(XnIIQRb6%c*uc$_Rgemu#GO zVu+tKSkt-ItSGwO)&g1bj4)oX?h4@_x8N0D^894d-Z$6Dl8`=y6h`NQDhzX(@0$U{ zPat-=e&{W+A%?st&pOiY(1=$XNxF;cH9yw%uA<(%E!}sC8vyjyd)OS6>&-t()Q8;d z+0;;|)8X`6-!#C3f>1BET;RQBTxT@v`jufWRg3XQe?TV%B(}(4LT_CQUQB#@nK;a2 z;8OXcVn`2G{WC_vXD(ahcE<;#8yUkVKuivZAW&_c8jegJ@|xxWje9$tBNWX35Y5F*~L+t>wo*>}Z@UA3S3WSf>al|FR{AzE#C zLo%ef6Q_~DDVIDax6qHM-lp~hR3)`yHxQJ(K)f7bR+qeV>6U&Bl5SezJA5j2m%)X2 zye`^q-uv!4Y5hJYf)h2Dh$;n$;u@NXy}ARk&oaSHzkj1)`e+TZl)(MCW8CV%PvN)G zh+5HyrJrlUiZQfpYHK@WEsKogaW4lF?P|Nn(}(ra3sn=cvY+?RN3&!XOUyvvk+8$L z2u~3C&DrAZ-@~lGX037k=@emy_K(g|*e{HjdlcTW36T>rzR!?0Hy;l1LZL;OUASYW z4IZ03%d8Z2|5x1GT7B?e+4}!T9YdL0)e*Tj1f6436Z1wqy4>je`-T>%vwlhDeY^L5 zAgJq0&{leeUk&UMd!O8Z#w)hUkGBtO`rYQK(R|@S_oY<>=>yb^bl8JFp<8LSmE`Hb ze~otI5?Ri@D`kD;zKZb8@B&Z5q|4g!kO;}sCUWg!oh0h`-p14e{#iUveY}O=8k)T? z`HR#NIaZQ!`^gq~R7&1k^d(_?B5+1>-o|~UF~2m=FzPK;p5{)u{nD_YAY7L8~EyMJ{muw-7x(t`%P2-2~Ouj_A?&(ZoN3T+}zQpR&4e3`pB6)J^ml! zBErf1ABipfSX8SiE5-kI|HS`Kp@%h_-K2(e0+H#a{o#jiT`+45})C+>I8pM1)F z?w!Y2@9yvE&ZPFde-}=Am<>h;Jd;6waw{fIqg8W(ku#l2xXya+7ILR{%3J%NS6}_U zV|iXfs_X2nl??P0X{L&x9ho$=3GKYCoB8$5$gREV9)Gt$b_lc0ILnAb$3Ag|`9 zS2uGwU3s+^8%);&LP7&lg&G4-u>KUYy#MNZ{{OnDP3@kfTJ`Xz9GX+6UmWiMWd#lS JTG@|Z{ts~&mQ(-$ literal 0 HcmV?d00001 diff --git a/images/ManualAdd.png b/images/ManualAdd.png new file mode 100644 index 0000000000000000000000000000000000000000..e5b13ad105be468b02cf633d2698aa713885fbcd GIT binary patch literal 12344 zcmeHscT`i`_Ab36p!6C-?+`)@z1Pq|kRl-j2rUSqH|c_OP^3#oq)Kn1AYB0gY0`@z zND)L(P+s7id+xd8{@!@+j`7}qcPA@*?YZXs=33vHYwo>v;tcgQ$w?SVu&}VmwYAiY zG3UXnLPUW1t+uGi$HKyF93`86R0m)$DV8x^nVqwg%eqsvt(|`6CbNSct@18sxIrA|3kw{flLv2-6fTtJA z5$T4&!t&1zNtM^?RbuYDYoeYS{}f-H8Dz@SaTX1)R-xjLx>IOIn6BIXR9iJ|ZH>2; zmifY>3eqaQyR*Vi6u}0l5!R0vHeS0-Q+Y^Fk#zobe`$T61u!+D*8s7dgY(udf(U=CO(pMR5#(s2PRcy>;F*chd(-| zb*i>TybC&_i}Ct744OeE0m9VDN!oPmHY}9z z869RQeiL?gG##bivNh(tfqp4HI>0;LL<)9EIu7|Fop=jyMrQq4D6I6x+t4&yS7a*3 zQxsEcs|RwJ)w2zkOrGHdUx#r@S;`phfzvmrrQHhcw&ii4>;C#TY%P=9Lrg0xl=K3I z-`mGJIz9%SpXxPqvppm8>a;C4mdAv#Kho3!Z2{GTz)|kPFb9-9LfGHk^LiTP6#YG6 za90ExV2^M@ddLG0I=X=Xq=P*0wgglZ>ZyuwMrs9mAxr}GP2qvAa2W@nq5_GWKLi8d zjzGfz{_bub-VlFz;59A;Q@;|600Gx3Xjgfl1t!>3QCe}`~@|7Gv#Rv5DXMH7v5{3lue(zmOY>*4&pBN+3)aQ{X7 zA7j5(#%MvI5H%Fs=c;?!YVyD<{}2Zh9O(eLu8K=bNl8eFgN5MIU@0LmTvSv@#@<0( z2o8hW!yFwYz%WOtzd>nxc%xw+aKsf923#14!I6*>1xty+9E2PkK;lARX&78c+7Ton zBr4+|2DV2ar0qe{e}gdaLSmv4=JxkqT|qfqK{?ukr9e_*LXwiwa3Qc1Ok7A>OjKM* z0wFFAmXZR&WJJZUp&Z~44V0HV3^ScbcbF4G#M8s+y5Wj&h_a!!JP;%-`cH|W8w~A; zF^~u9Aw7Kj|Jh)QbVrz=VOMO5Nr{4Fz!EYNqEg}#V6fyrmCO-d-k3KOhLoDnnPB8%2a?DsD*I5+hWr{+%$pimN&3`pRG0VvThK8wOk~#+TuViidk7O+* zDghDwqx)BIP?Q7GG2s8CeYJQ1au|Kglxrcq(I~HgYtbJo$^>!mkE=f}-H_Ky2>`fW z6c8Bvk0E%&d=U=U{lsAX(FAvfc{m|3+2hY}{f8X+KZF7t29`wFONk1JN=l1i<_{B1 z_Tplg8YT)P;1c!{5@O(gMfXNIqWxfA2xTV>j~K2n;dy-<1Mpr?6yLvU`#B@7W&uN( zkQhivO!`m4#4!%92^0Bqz#>;U;~yiI6Ztnz&vY zMRp4dz$&7WD1Z?$pw%tVswnrXr*f=++j8Fyzd?tE#pbT9rfljzzn2%3v3T2OSuv>K zxZ`wGi(@EFXr0g^6pt)Q$vi?;i{01Qz9j06G96(T`w1HB3;~>D+ii+> zy5GNDXgfXa*t&Rmn%gy|5EQvCo%C4A8|sPvG03$`YNuw$2ZR&oHq7zfkJo!3s$UmUmcWq^wmt3B)RIlQ zQL;WG(qO61iiarw4MN!_pW%|-2>Y>`EUX;%ytDSFKS`*}nF2VSCUX;V#T}H@$|BatdcDqB?AV=YQ)eoM zJ)#mH@8!4a-@_bD<+rW*fm>U-L1vFQ`5*AJQ=^ND*eN4`s`toF zl%G>@SaI`klqXmcG^FfMXXlQpSyDyhy7mWr^nGKqm1h>9*{YOekZss!u}wn$RaUjo z6;AcCmUk_heVcy-Efi;g0|^IUe^4SyrNmLDXYx1Rw} zqZWUKr#oIE$1E13O8CkXOa(hrk5gtRurCLc-QfE$1!dWVR5NG1a7)rfi)4~+SO7WH zrE+VP!vIl-%|%Ri>56Jz=4jTuR6dssWIIpl;aEEr{t@wb zIt=NjeJ`NJ>cU@ejl!W}a~i-OPS26&ky%02bRRMJj7Gy%zp+-lxeB(oIacTOW5qw{ zVGFJz`)!-1U#17H6cRFezgN=2ru24@E>w{koro_65jofGmD&FYjEjYDFJbhff z5^=TY&cZyiW9&CBcZ)EH;sq`2UE6t5OG}W@q3wYW-5|_g9F2TWOgEtKZzA~Z5d%{L zH1lb)rCz z2Z2bU)s8m~)Fu(sYKeIB?>T1n5`)Kix|*cA;-4yytBey_GG<$wNN^!!>`8a~3s2`o%{^x%nxZZ2w0xWQrh>sPI9c|L-mtoa=Q?X9O~u1Mt)*2^#z?iPaimt5XfK+Ap{hF1$n{IeZON45Odcle z>B!x4KATbUR$>RmT9EABEKRLs7K~#F^11PoQROB1?5_L{j-~VR2TS!@@0SENX0^t;VR^_9)dLp{#IwIwg z{8BMmDO!{CZP|_-dUOMxceq}QLZ{m74U>y?K_ljVGV48Jqn*wPn@&mNOaheQUY)Rm z2HgCRV74&@h0*+gh@19XT(jwby%HB+QXY2CVb`R%XxZuSZ z`w!;C+}H{AsHgFbsyL4mrkI0s^yi6zPmM(1fz8w5+Vu+-p|+U~B6mi!T+Kay%D@w< znF~8OfxwJkF^F<oWgnvfbGz%~GP7|I^EHCg-r_$pT5e7BnmnXv(GPPcD zRxk)Kxe6cEpu+{F?TR(x8fc*^W8q~Rt;t?5!_(3r{=O-K3wSDKOAe$wZUMr2ND zo=dMUAQFUkN9|>a3Ju$f@zte@iZKaCOV-+q+2_Sbb?;;-!bPgBP z*@izT!!8dW`plw{=}Ro8$L0J)gq>fvzdfOPpX#wva}+cX`;)nZz57|04xm)f?1La? zg@+4v(mk}EG6PBlY_k}PhRZF8$ig>+U%>Et1&i^~nHupP;XA7bMkYp(u81WIPV{TR zuMs1k9SLh_*vs{7xC)FrlxPunSz0owN8zhIZ_B=?=gcV&yk^^Ah@dK>j9{K))h{GB zA;xjhs|h8FJ+vpUbp;)XIdNEhXDJa*QHSNY>`Dwj9%^`F1y!7Hl$U(;lwC^0hC3S~ zZ=iHc&Fhm_G3-dsCrCIdH6WzeMk`LOApoK=c)E#WNzD^1bueu>~izgIl-5YMiU8<*}z_#cmug<#MXY~Vjoih^Lm>N zcCS_&d-}N64Hls;DH{MOD)Nau6=}7~__G8cx366nyx-Ygqhlg38bBrR=xZL=x$kM# ztnAa=ih`C<&NVEH22z2E7p=1W~4A1PjL zhjZN!Dj^SjGuX!NDoH#|q1+O173$1XANlP&I*Lzb?NHlx^CW6cQW@oG287B&PtBEX z&9+qA?-qBwuXuuZT+3K0ZcOP|6}RDF8kzkoh~UfYPi6!8mpNPctSLOyiB#mN833t0 zmmhDBNgJPkaoNZi1arFtNent3K5t9_mY2C9WM}Op0m>eDNF|B! z_eKOC3EVDz-uStWTlqD+Vf5}$Wy1hH!)`NcWuda|cUNE3$FXJ}zvGSGv7>J--$5_? zwqvM@sI}50eGIcD1EC*ZJNNEAbkul}t(O-uEKL4l=z2*=YKz-L`C^zo^af+|vr1H(Pq<)=lAGovc$qd;N~&Kc zO^2I&FU5Cxz>PsqkjXq8;0|o7i&6p{2nPIo9r7jESA>H?Gf^0$=7~zljRQ&o}YGqolmU4 z)e;2|Y2oEaG&AKh)^oSZhCQ6c_9-oEA_NmLs=Der$5J7kOW3UsAfHO-ig8{`)!A~O0mo6oX&I@5(e{Bz0VB(HrM z=ceKu=+n|TO-iww%xNK@l!_dxfSnnIljdJb>B1>}^{Rpgsz)IYI&F(`&80SZE!l;U zngleUSp5>aA+7X>4|>NRNyb@QSvwtRjB%T6Qk8*v42~_{G1^STr0EftxDkM1DfXJp z&g_1Ltq*7LUsU)Gw&JxZZU!e4)#{~b4(Ysz;SF%Hc{2e{ek^w&0bl^@F`QLK@QX5R z<|O7);Hl~(J(^nuf?n>y(vVe!qg<9d?L>W%>^q7%4tF`_aO9>O@-IH)DlR)eNPdI} z(QNKqjM(gF95yxHVl+|Z_7jC_oQz7BX+$BH%N@W??@im}V}@$HUD(DZ^N%}c8gOMB z)$mP zyZmu}KEgEn=IavPqbZ`Ji!Hq_bA^vH4ix4qB10?mO6mBI@85aO z+|kbC+oM|K_Txi$XijWfhf-2n{nD(5S(|1QA=fynvFI%>h`gfdS!j$8L7(l49qWMg zSOe}*UHP;^#j}a~8p9>g?qo(NI@t45%j#vnfv` zx=Uf?_a?tghmg#xpo%z-tk@-%^?CG9sr9CDNj~2jap5P=eC+B6eiz+hC06dvd-whK z(z4B>e{!2r66E~!d&{%I+m!n}^G_eADQ5$q^T1wprBAMPV_Wx;(Y`Uo8H{n+pi^X{ zoBeI6etMKiDzy9fa%n$bfNroJHk1D%d3Yu#!$WN1yI|snw%j|B3)Kv5MU7pvajEtvtK-626&GNt5dWAEKD|Bs!1RVIcRWFNlXV=Fz+5z$w=7AX| z&qC2Zxhv^LHnzpkcuzIlab5UJ>Z+o@OaM;%c$d#k3~bv*f`;(D^nM()SeumbEAsWo zv+p!Z1EIHc_;=yiDZD1^oX56IS!3-3qAoLN=b)(2B>8}v?WkC_jrSFL{s)*nG-$(YKCv?L&$vL2t8hiPKs+{Cdsmth6a}?z`4qxfy4GqyXJ!k{9;F?Vy^k7 zlISlP0E#!f6u;(qY8KYzF`M+7Gn8K!PdP*$-}m-|c8LV7bd>_HVcM)uNAf*kdiu3R zc7?E4cs|=(_EGZcQVX?}$#^aD)_?(l6aRSzl{5aH#hb@!Boa+0+Ud<&&b_PnGAbW& z)e;5c`dum)c%mzbqva;}da5g5e5PCc?itQp8~p8efq*P~D94A-j^ZC(*tfE?hjr3E z3{JHVQt8#2j;jC|6F*FurfD20nb3G>@0 z;+Cx@k#ba;B_8o<@d`4WV6t+Z$H255M#%8sx2IH3%VJVNhz!yHyLu9s-VG4Ss zk`H^RWo7K%e`?aKiS;l`hhRfLYwdws@}eh2_<+J;i{j4e7mUyJguO|X?wCU}@WH$K zW{qKA8?_j*JFuN(3I%TWmO8ru1mK|B)5rE@%1T+sA>^ z{p_=b-JJ6c{&ssNkKw zUtO|1`vYJ0DSZsK({?S4b=V&E`lODt-XWqDFa3suaNWz`r*5a&cs)zZr0BV5<`LAY zq^}@2=Mg2#d1$yTrj?g=hk(#66&V{HqjL^c&$2gY>DNDtuaMhsj>Wu2MZE3#t)FoE zWG)lxp4sQXXUbW9$EpO2FQz$mN|mXUfwEOZt&3qqq4IrOnTz(HEN4dUt!i zh>=gxf@ruBGqhk@u&IffR^36`h1EUYJ(9V|_bk41v-Q_#;Nk__cvf%9-d)glM zbByckFm@yD0?1?9AkYIbIfj(j<*-GX9L2LC0r{#o_+Cd1kzP{6Gn}5?zV1c)85tmD zI8CA%*`0N{XsQs9Z;yM0+c$IX@LUjQ{Y#B5Da+qmf&sBK&>A15K0KORV92X@@c4~W zOjK!`E?}}oE+iQ9GP`8S!q3}A@-FR{RLYWJb^GppME5=y9p6Aj5PYik`OYHV$GvLb zFGNdtngu!g-NIeIpEo19;9U)-C!1QV&rP^2nFKVNmiK5V{NmRRmM=dG?6-gZy_?oD zTi-jP#KxiL#x~4CR7=caqw$VDBCWKme5bN)^2OrhXX<3Xpgt)$*{S}o1m93JSgJh;FH|N)Tne5I9X0fW+UM1e{ z$scC<8!kaAm)zCJl0X}MJkwLA`YwlD z5(g!A)t)->uPpD<5+As#k-^N%;{!#zqj*8 zPl6-ZdcBuPOk*i^b7Q4_C-vX!)8mcOwT3CI(f|I%xROjz7l3<_3E!lVGm~+|`TTm5 zL;!!u@lY&MbL(p(-olMwJpXkCY1R1y1F%NYij2U03hvof?3ylO+fOYA+6sN`%>ChG zdJ?2$vCtxoNjumE-zD3 z`Iy=rEIn4=+}%RHH6n`_y0CfArLpw(6G-dvKJBb?FGpiu>odX};mFtE-U)oK_{LIF z2gco%AcM6Qzt4fKUP8g&4Oius9uLGR5sWX7j~dX_o7^iIhtvU zH`wd4=~bV2qSJgz-Y&{{d8^1f6c`W?s9P0R_F-4ft?NW-d;1w&LzaG-)&Q&B)l9 zp69f(nv*fj>6iA8WAiOK4*LS8Mg5wO@cD?mtMGj)@4bDIO=KO6TXih#sozfJfE~bg z_`{?Pmo|`EHsbhhq(LdIFP3Xakn|quH|`Y#_NZ>1MtL5gg}C!BK}>HQ$0xWSbdLJ? z;=FrSw4?eYwaFbe+S|ll;8Y^w^?r0~&QP-$Yp00h&B|?u@5=`wt7F_@p*-IdDcCaS zmZv&AqL$B6Wh!rmu-XC{Xv43D35ZnTvjYh#+y056*ncODeb5^LtHaRvcb(Mt`{5 zDDl1Q(mi#BE_^u`e&ftH1`)S;h~LRVKPX3POVY`B_JsMO<469kj9tzvfeUk6Q(Hak zsk@6<1rH9{mT?S(zY`q^cwZ=x2BT>^Hb0+u=Dq69+LXCmB|SXvEy|A-xDQQ_g`S5o zOLjH91B8(`7|7qa?KXyOpr^RJVbs$v02>Q_Xsj>d89>ysxBB~6=VIqWqi^1Oa*Dd2 zjzhOzN6;wQP={B=ir+8DUf1{;+vJ^z{>}DQIAzi+h~u)hw>3eeItPwtMK;}3pfXDQ zN`+QQ9vDt^!91R`USA-cHcv^=eZ+n?natcbb)Iyr!rYv5D$MKV(X#hY?3Hl)8{Hfk zo_3|?-VZoVLTQ<6Axm7NU*Dwa)rSTo@lCwjz2o;K*zHLe`{7sv(FSyP^<;NN|A28T zib>hyz7$DkXcAp^OSv=4g5%*JGsQWtmxFZ!>&uThtMo|#$ynE!mA0CfZY5!TPfgCpjj{8oO=ItY)Y zt8b-DhV}Q{SkElZLY3p8E=eZi7YNCkG`~7uZA>GrLKE#vHh&IH^LNw#w|Bt*=|(B@ c?8jx_s@c6~(K$fOzw=ny>iTLmDs~b73!haRi2wiq literal 0 HcmV?d00001 diff --git a/images/Menu.png b/images/Menu.png new file mode 100644 index 0000000000000000000000000000000000000000..9d2ec7ce15206a5da2c24a8af90f1e71bb2298a7 GIT binary patch literal 2573 zcmai$c{Cf?7snGNBC&5tQ9>!D$WTk|O02b%DzR^|6C~P1X_L-is;zxrYD=q@sw!=* z4H>o6)rX=}+S^)qvR^XHs7@4k1>``+{Zx%cxu=iPC%x8#FJKmY&$pS6{_ z({b+qYlA_@=M%Sv2LJ%@mrye^M{6@PM06}RC^P~C04QZ9W*S=2OyJ2MAK9Q(_=A)d zGAi``K%u0<#Znz*Cm>Js3Ox6@?cB3OVV2!3492McWOpyxmD|-+@BkPS7vqG_6n{65aqlqX;MAZq zh7RY1ZF|+Owio1HDkT)@)~P;|Q1h)2neO=-*4fDe2`Qsu2@^@UV<@n@VTg|AFp zw&2qCZ=C{B``(Gm&teNl^+zI(#{%-V zwKNAD{k6(FtFw<4o@gsH4gfeQ1OUKkKsnoxo@0?4Z*7O-UWS4N6(kZYgzp?nC-EpZ zycsq!5)*|7n8jlJ@R&fv^-z2W!qVE#(Ur^(JATHrHaEROc)u}=jmUKc_I=qJ7as&` zAP1o@0(G2W@XyMRe}=V<7>90oDWJs7U3*~*o=q@`KIp7?!5ib^VyxAWhCT7Z39;EtLf}*otRgz$CS`Fdbxk45}%>2<&y+3wuT%9b&C<&YOw*CEwbY z4faZwr84BLv;He;t(^q8(PWGX&<)z5e$XN6#!1O%7bmDSEL)I;e8FsemZI-tFbzc6 z^=$^00gXT%FgK3o31@1Y(fMHV5r;Z(6wpca9Wu3+6R^~2JmtpS>^>?nsEY&`fY#Hs zY{dz595tQOmb0tO9x7C18YV!JbXr;C%z6X1Y-DeI?m2o`7bOxrjsEu~5N-WNtu zfWhNVBt2W}r6Nge{++*9n9?E@M~#wuP``q|KFnR+K5FI&A<%MkF8$NVE1fHSrpnQ$ z8l_hNS5K&r>-s^^QvtsowQ5q~EC&XP0Uq=D#g*4;qkEcj8&F5;)s6Mua$=}5)T!RS zKI_L_;_o}8iZf2p>ypoN9DvwSL$aZ1x>AM}la2vl3LYZiL;oY-vybxR!>2UqAT-?sW*EJM2KkDiDank&miZz#;(6l7bYNk3 zJDH1~KZ6z=oFiH7$iE`@^#L|YU{N%hQj|?K_ZmSO2P#br-SzcE8^-Q59H72j=v+3yCfHLEFlEcBgK zydTQR7Rz+Fif?OQ`W{bP-OQI&nnN=Aod02OI8SngT_U+M5pFVb`-$Hxt`8W<-=w7A znk0sG|JWT(7y5GM!QY@X_4ZB>+{t_ub(a)=&-g9gAzrd^IQmmhkt4k!Oye%S%Fr`I zMTX9?kqgdGNPWh27NBFN-8q=_uwn=bqO_4jk4Nu(3=BHCPG#wG4s)|7#;KGm5I*&0 zuuAEz;TsZfQp#6_!Ps;yL?6kSUO1yGHaJ5XlE3$8H`C6{(TEq2m_~8M3KBSUqh>=1 zeP(FOR&6Zq9(N1uO?=bRE@z{hfqT6zA4ZD6KW+D0wpi(A!=DWN9uaH<#1?!_KKlKJ2d${mM#XzZ9J<4wC(hDXKX?d! z$$LMp^4x^~_+iAzQ}*5``(JAa`sTMC!g1Yu;qb^g^^=+Mu3hN+qNYRBu1-$-oOvq_ zrYL_dW9Q}fO78h&&ZrYM0jwBb*@@wx)5AP7M2XGERI^}4=6zOP+0LK5{Y0J)k!eVT zoo^-YsEB*MoI#mqhkEbCRsVOo&DD-J6*<%!pF0^@5vMD*nyFKR(MOjF2f%_xo8|Ke zScnayDlpwkjP1&$Y(nHsi?}`S{Yq`1$5A55LB5f_(JWl?A-Zb~X_vnkB19kkT2!f$ zbV3V+QD|HaV#jk`6P;(_Uw;JN0%eW0NYyNCVaxVSHS;2q157@zkK?%-`KIZR;J2)> ztc{Dgk~|3jUA*AUkG%SN&m(hP))Zq-Nq>_ejgMc+$y4t60z$(!Qj7YpUF+0I@}VFz zM!H+fMH2Lq$QlO+0M7uiQ8cs(tY>eAgS@mi;T|gtEWTmCEcHiPZ3>xonzinvM1S8| zopvvNFAaU?J6YQX}*@vp`Oy``3mytx@?3oxLus)fE~V8 zzf6qc?gFXc?5GFee&Oa~;h zTdx%YQ*nC!qiD}*Fj_Tw5e=V)TYRfqx1H637;{KNel8zx2TYx(!9?6j zgJ4T_GyuZ6x_xM&@(5L4m&KQAR6^AoZStybYXKPLPz6Zp3are5=!sfzV(JoPqy+&C5r<+F?G-&5Oh_bdOJF2;^*1wQ&Z5eWooiLzb^f zf*2bF6R?5GVL+|kUmpd4HOk(+;iB*D F{{b4#q-+2H literal 0 HcmV?d00001 diff --git a/images/NearestVoter.png b/images/NearestVoter.png new file mode 100644 index 0000000000000000000000000000000000000000..63c465bba5dd9971f646d62a32d2f8633c55d562 GIT binary patch literal 8636 zcma)hbxa&U^EMpr9PV-y3dOy+7k4j*6nA$&pohB_cZ%QPTHGCqyO-icTWI<5zWM(B zk~eF~WRux>X6DK4ZnTD)JPsxWCISKij-rCB*6TX@pMj40I@cQ1+53%vCM$c7o+Gp*{flF_?7U@Sj&mf)u+8Hys^t#Bi!9S}@8+ z;GE(($UHfnDE=|mx4#sNK*HVl?lInD&I)1^W6dO{&PJd-#G%)jm9CQKoBh7(1oaTh zFp+=SDECe&ulaJ!lx&)kbpl)=6!V4zj!aIV^Ih`;ihy|&WvPL}f?xlL#NHn(_sWBJ z;mH<=x<53)5|6ac7qz-s*|#bE7=;f*ZsNnCvmCSb@24N&`%P-0JG`z|p3jR+Tu+Mr zB_(o+p+!zRdmSZ}0lkN~_BoBQRk$cJ+c*?jqIaxV-BFMN~ee$%jr1P=! zw55|*RMpUj;F2OB(55NMO6mBno#zE4Q7wBF^mw>DOkM!6lISo}=onLqOBIT(CW=+Z z5_!sEoCuP}qf=wRb?+G&%PLqzqN$ABEHjx!64-joC;V4aCOj*P+n!?>j1a7hl4;Y^ zV&%dT4+#-4lIWsF04pdYBD|YHmqNcwY)E5=!VHoO@DXN4?9IKsz5S22{@n>3i%%nt zxKaIYog;WKXJ_MAw2?q&@7G>?*L>QypH{F7)dGR7)y@_?7p=?|6+qb1{uFgBZ|_5#lf%&8(3MIYEtKRD|zQC(R}i{+hx6 zt%yn3ZjH05@2bLh;uKbamhtG6$n8L1{{CwGx{iqU?kR-tVjrFx$Bi~o+@-EkTc7J{ zQXQ7D+*3cfe0WSC+sDaMYcFSxy*40nh$WM^09wQ$VuVG}^=r^YeJLup72vBrN_!GI zEUC1!uIdoa*4nbNeh7EsKkKtw@4Q@i=-S?7CmsDg#u@lzs>qSuFFOLP!z3^veAC4; z=s@nCZ4`_mm;r@A6LA8BI*7px) zi8*BqlIPufBnOPg$Iib^ftKG@mau+hlMPJ4qqg;lhEB&D+Dg~Y6B0Z>#DGW;fs>NF zSsz)k`BnNnlO+KI7R(uR5xXAHWcQNrDkU#n9Ie!ZqqG7Ap_ic4U)^Twa*jQpx=lNd zBU2wzjFK{cZSi1&8TxY|mw5DDmD(BlUh*9doh6%U{B7tlwxE zh$yK-Q)KVxG|_?P%>662%oA$BpHjv;;Xlj4C&EAzlxJGAYPuN&`R+s$(Yc(R$=^dp z-)I`js_~r@;BCzdEH3AsBK4Hy(W&{>}V72V;rDA61AKoIbsANhG z>c~eBH38h{n`#J-x=K@b**8s<;wIH<%d6f9@?Fbdx?^m) zWvoD-xa)w}hK<>iG%L+CWY8K}``nU!R^ENTi+uGF&19vSRId9wIP(Fj3NM_sU|r` z8{L8#^$TSs1@6hT*tW@U_l@*ykBXy+7G^!}IMF7Ja|QiUZErbUPDP<^h~t8N%ehU@ zjXG}S$z;VvP$s9pC!}U4i}(}&)jPsY7WDdPxecy)YU4$g40CJJaw`?_KeY8}Vk;$5b&_=UZ@9yU&`C#0Gk?|y z{T%m^$qrN|n@XXjX6sxai0zPRLtTLPg_pO*6Pp1vNQO*rIraIAxwUl_lFI$I|6M@& z%cskitI$pMQKckhNHy{|*5SR*51l3Y327zV2C^Ojq^%n<7T1&2$n+Vthe`dTmf7IB z((E(>AsZbdQ@qayoiKa)aXh*=$KMq32Dy*{t?K3JjgR)N$84k&;&RRg+Qk1iwODqTO zz^in0L~>F}m((^^k{KCG zsR5P!-FWlx+G&TQ@7>3`u73m^J=VF`UL~IT#8K$F67ZvWM2qUqI1??c8vgQvIt6Wh zRTOG+`oU1#W0@V_P#4s%^qRfM$+q;!sdUtF6WE&wqCdJ%076gqGPl{F!3i0*4iHdV zt+E!m(cSviW)N)Yxl z1=nFI5%y=EBS25R@p!J}*5@JGN(#t804*`Ke;b9ocFfmWVggFWkFCo#$=9vF&VP-6 zqIz_KB~tDLR18EXL4hgb!W+_xS4Toq#e{?n+0BOMR zBGtMra+o2?jG5&vn{|f+X#cdMrrj|O&QC3?)`RmF`IDvY*iYpT1|F--)f_ox%a-$n zMKV%JzgM0uA+{o0RE)2YZGhiSz}!tale?n|%ca|_lWXgWl50grF?SDaTzF=l2S6gc zKdSRHFbr2sh{V-i5X82zx#jM76GL?Ojfa;L@%6bSl1KX=3|;@V&oD9(6%|Iwk?y(= z)ZOKKVm0spxI5DXRMlAs*7&vUZ(_03+cYA5s0X;T%`r9?QLI|uMDT9+lE0ZHXCWu& zj57YpUhrc%uc=@V`lPzn%>dFusGh1h6*~bKe$ixW(plL3S?PT+t^$q4RL7Ji0oP;B zMSaFE>4M=*OLwX;Vj_!t`a-Il7xLInG6_cIWj$+hh@d7N#cHJ!<2|jiuQZo4=(lI{ zWf$&g)0nm7(`DlK!{BB=-QZI#ubX!*bItOpbc`mm-96Ug*Wu4u?VSw#68#GLijDQY zqIN~ncj7(Q`EWuX%<(Yx24IBbMIT&-xO){*sNgs5N-j_L7ern()_FE$tf=X8L3rvk zr+~}xXtqMOJ%1jL<8bF(_-#7od;x#sSndLy0}r8y_%__P0NSibp+T<%(S@wa5c6sW z`OBl}bRU)ePAy|cfH$o%(-Y@)MA+cb7zDDUc5jffQ6WP2uFufmZ&8=I{BGfh0Tg5H50+)ZGT?wSB}@;aX}A-nO)ij0TK6OKzoAGjVf>YUA@``g2g zOc{9=Hl_D8%mr5;sl~}ZnwOByH zy%6g6P*-)cyhJ!hk=DdFmzqBRX`IG*{AsO>+1gNBt^K6(=xA5=3n@&4chlc9Q|!r!h}E^uke>dyLm%gFU#MvN;V+58l%`~+Wv?Yq^fRGLMbgpn zLAt7$FF#lt4DI>k%JOPbcfTc;@nmID=(QSI#cB}jy#oQobl?wj7a&84l#;3rR9;_>;KIZ zddP|taSkTLqRKDHgJNO!!Y#emb>(g_cCjhXF%$I-vbiP?0pN~~Yej4#*%(Rdf&n=0 zEE`&`#kM}ne#%23|6>q{slfK-^kJv!Q&aFBQ+J@D1Np2x-LP+h#w;v zg`x?X1C>gu6|xj$mAMs3w3?wY6!W#W2oXME(t-@Ggzogd;H1kkZkMm{T~z2{`&x67>h5f*oa^`RyMJk5BH zxrhImO-c8`qbFbNyDjgh9}G}cKfDe}Jpo+qJYe#9ya46*+o{c!MaMBrO{tpA-Ap0w zzV&El3d``pz))IfvqYBBVKwyUhPi?ocpUWBsC)<>8J)srm{$!h>(gnujfipPy|!ZF zNJ>wXv4(8Mh$B%sH7V-W3Dc+Hg9xA}zEEh4 zSw<ZiFDrfshS5v)qa@V2UdMv+t`%nHR-vN?Eu4eO&f= zVxH^4&BJzbH`-=c&HGB0=D0he6+-*pKi}cRgf(cB7-PWkfkNWhUVjRYZbxrkj5}*e zr`EEp@H%2LlC^aH_hdYB*&IYq_-l$lWMkRp>aPo?RY*x=^CifW^mOBw z5nhiV);!vMxL7uy*p_l*?cxVelOmkolJdahqGEMmEc?|$ zl9htRDv7PXK+e6_vgjeue=i8*J-TQbo7jeW_leX+^09ex?=$pWW1}YwHk;5SMjEFw zAo(Pq&^@sF3;C)rimJn5UHx%1z0-h`deu>w3{R#5uzw`1vt%n*`eqRQa}wdX<;d!7 z9kfJ`AhP*GQ~BISN+(=aKj{eh-tz9qjj*m#s{Fb?Uh~HdC)%s?3yP;mx-_?x)t(%S z>IQ0l$A>&NVgRRxQ?u{Fv+wZ!#0xw%92(nqG)A>NG~#XT`uQ5uak7UzpULytRLeR_ ztjIRpx=PH@R5fL?Tc%1MWhRl?j0|Oa)JqewSyI|^KFq_z6>~6Pk)cT3S)`}01vc$Q z^WV1(QB<(mmkXC=>QZ^nS13 z4v0iMq6yEH_aTEb&?SC7WKD5Xu5F$k0u3sVO~+n=j^*AcownduBz|OF^WfKpijxe| zJVZ;i(j8M5`0XSF104&pFD5g57@h8MJZI~j3S}8d239XfE#z#E#mwmq`0Ocd%l?`) zSi1;pmX)iI*rEkL_0iJ$CbmgVi$H^45Mhxi{Dk3wXFF!%B!*lEPk@&k%I*|tSdwF5 zV|zg&_2iN$vpF6DTG$8;N77BYY0m>L@q291G%T`wpgi(xLhqiF{O_$oal>OZTvk@o>d3DSm zM~g|n-Y@7VR4D@{t(9jgPqeK?d9!23w(}p8>f7BRxi4}2ay(glXa7`gBuxX*SWm6u zSEZ>sl-R1Uo3jY-1Df>S5;fh>EKU3s4d62LkXZQ}MNOt`^((^%0>|j*S#z}e04qooe*8y$2p+YCCVKF zexKz=l^h4`CLB7mk{P5C&IQ&U}InT-8?1ic8? z_1{-~v0}HsJYKK4yJ;-uYc5oz2n4)4pUKCMMK)ZEVQZrC==0ODKb;w(nW#(R_fgeD+jI5$J$rO5_zlA4uEJhn(gCs};=r@diy zOr>#g@IpT8xxeJ{?(pnY=gK0*FlcpNrWqGkKtSOOYU(aUZM%UiDYXY&-q9ja#UdU@ zt2TU0#UCAxF-X{##~R4KgjuwrLbUp6MR)aA--nzk^I2dl_b_fzQj2VVKO3{h*nyH= zq}P{NvFzX$QM(lZfVw~EeJdTQsA=w_>jF6oF63OmQNH1Jve$pa9(Ad14%3OP!S^UI zcuS_z$qeb7Ryo7FdKH&<-Pm()mvbW|67Rf2k|R(&Xy$2Zr|^>z;nWgjT21e^VJMEM zmX%+^Z}gf^oE|{0JvV_QBJibV)qdqKYNY5)I@W=C?1zL; z(iaz-#yQpEo()!8x+M}bTfvPmHZ$2DU>_YCI;QDj7;?_-KQrWA&u14CgZ+cYd^6`Y*N;OQw_fcD)fAODe zwxlm|p9LQ2=+IQ#kOc!t!LVaw@l#6Kmo-!t#m{Nbv=0pFx=SwK=drDyxB>`PoXkzO z2f}Y-bJW$kI4KjUem}T8M~d0EuqW418}wjn)x^SyLdX9I!2YSUG!a_l^m-Ho{Rnp! zdu3Tsd}p2^Tyk&I;`UaT##E%7sWJPMMeHAT1*>DS9m}vMY|hOyk^?JfiwAik<2-T9 zH#lr>EoO^ZQZ-~&<5K_j)8Of==_XK1crf281B|fo*#74Uc>+X zMEerF5>o#5NjNaJf6#9FrZHzHv)dte0gmF0xXgZC9nuNB5T-nSzwo_8a|en4Yy}|k zqDyw;?9O3rqTy@;S?uK`f(7wDcP0iTn2w+{lxhf|KW`cBK-gW^PfS86MZ18O$iv+y zd9m+Mh2k}~&^P|_Kc1pX1c`|HW&}=(KoaX+DW5k#_^ub<)ame7_-*@QJ+r%>vY2E- z@T{|FxSGsAm*J~$(9qK(Ot{5)_8>ZdO%Sl{apnYr72D>xu8*r%`mCpQF1pQ&wb z=flooQ)16C_OBXovn#5r++GjV0Dx!(%&U^r1y#c=w-9kxitptaYj+Ox=JfI<|kP4g@^1vVrkCzD# zlD?0KHKx&6$Bw@^zCtP@N0jHCQB4VaYx^85{iM&aU2^MF_b;X9?xkFK9W(DAd(T}T z!xE&RK21K(kXG{N?A|HPLlg@$nFm|S^G&znAbp$Ksc4@?Y3LREZ4`d_ zEd2bnpL2`{&_}vjgwbYG$9vxPW$T~JtP%cO@TV*P&w{G`{%abtPeNyw*fL$K9#&b6;KrDZI_!U^U<`24kx-DYnM zY_^v*D?s+Q!L*-srjyPkLShYl8zoTi>Mi!M-v3BZ|8JWOWAe>icwTugHtGnVYu9@v zi0QJEJQ%#wSn+r#FW6t7J8+;CB z3nl`P#~e@_?Z{_7{lP9sZ_(*f?9uYw{<6gB2BzaAr`&a-lsZZ%Yly}(uHEhmARkL= z?d?JM_nT#FzjX`o;m_d?n2URq06q}kJ5a%_eBUMhWIC{hN|U}c^pP#W82If_Aj`N< zC-e9CuF_1B7?g!3tPHnIP?Y*&v3j{B(f3l~_@ihG97U1Ry;T$KZD{W?Z zd>P1%Va3h5{hM^w)y zwkge$EO;_x1MuRp4_i5cag3d+UF*@VBBydLuRkjhpNUdqz6dr6)>Y%wrQE}@4%lwA zdqsrWnbr9o=LL5&f{mJgNEGxp{~2a_49`ranKta3Ubx16T+Es)x?%_awPKF&(EITn z#hvCFH){p^B@cx`f99Bntm^?_sP?O6>S};;cjk~y#Uy`1y5hBdk3%mQyYI*@aV-jgteY*Z{cN8ZSpWwA z6OAkR1_y4vJKx-NIBl2In_T>ZwKJoB7a%s1nYw}d;==IEy7p;hn=k8HdEtNk!2bVb fPHtw{3m!@*Qr4c!&%xJEd;~=~HQ738v#|dIRMBip literal 0 HcmV?d00001 diff --git a/images/RefreshVoters.png b/images/RefreshVoters.png new file mode 100644 index 0000000000000000000000000000000000000000..3e6ef0253ed9e8bbc4f6b028721c129e4555d8ab GIT binary patch literal 14004 zcmbuGWl$YWw61|*8+Uj2;7$n6#@*fB-Q8V+yE`PfySoS7NYDTqg6rYCf9~IV>#VAo z?&_+p>X~QNx z%*n;k!rIOp0)j5tKUqk6=sRA-Zn=yEBZ>vxeo_(tZwUz^TkIGm@@0fN{!G1RIC-5E zEL^F977%F8WMyDPTN6%G1nm{l+1**iEg7Rv7J=DBu)Qntq4(j>rNDP9jZBBTVaV;q z88>!vbJrS`6YMYWBBfl#tTo)UQ}mAs4ZhHi0k{X+@9u#KBFv6#WMt@L+B413JW-b1 z7X-)tCduho@sGJ)gQbWV!Y=xEkMXVx=E0UR7BoVNOc=5wEE-*z>2i5q*}T=KuzwJ> z6S-z}bMIvGTCOGx@n#7br}QfLVyJMMpz$%(mX#%8xJ{Y~OSPnzya&gG_n*yOsty@K zlT9JjPn7h8A4y*?>(n!|Z&L;Vg%2an-$sMxS>|ncXCImlniYaT98TtLuPZdHFF>D? z5{bm1B74w&XGxWB{~r`I?`rz;eHoE#(ISZMf(4#GL3_G|fivg2FGLln-y?j|J0Vd} zg0Cse8(zA*8oC@mR-0cQz9=`jWX%c8+I`9bYa%Np4)Oc52H{^`uK8I2oTRl~At3P4 zAt3OEASq<620t6&+<@{DaL0%MC;%E%caZ336TX{-mYbNPy}h}E8-$pPxv`tM8JVZG zn-!T9P+mzh7zGysf(!yEE~4hOana+QX8v3K=wb7C%Xin8?MP2uTfLfGR;&h%K}HM7 z2CcbEp0LeY-3Gv8l=NvLh(9*Dr|eC?81z^jSpQ}s*mC1Rz8sxG1Zqb)6k4|t1Z$h9 zq?cxM*p5$6PO?#$`V8gG@@)ogy_if!O^;7jtC){IHP=&6o{ji^ofX*Ke%bUb=pm>0 zf3tn}uwm-2luc=lHs;#KDr3K0iBzhL00QW?$~ zrW=8oOtN)2a2^;85b+_?Pg3}&tHYo}hgH~7C>9Jkvx0l_#T#lxtk5~VK^!9kbo4!v z0n<$~X$V#bO0dvL*ePd_QeR3gW zD~?5trjeGcjqxZSI-!(83gZwml!$GRT%1NCPNWu>4U#RMYo08IfKzJ)jp|X4YZ_)H z6~&--9+&9ZKd%@!_Ka3aDG1)#S((5h&xn&R2-8rXVuWc-hi{~X2+ajWSMZUVp1e~@`Ky3U>d%! z?-_9bE{>NwGqOCbsA7TPh3Ztc~QbjyhTOF-F@wk zg(F{|qhr8j9p<0co*tW15J{UC_`ARNuA0_aS!alPv2qR z@G3~csh=*)uc`hRu85y>xu-U)f$nC^sNjqCyTuuUPEynwkv@<^#6p~xX&fB{8TNwi zAeIHojxG`xC(%*}d7aWub-_Fp49HNBm+usH%5DEKRRWHedtsd;8-`H@puX`_ra#8hSx)?MtI)KjX~(DW@&$qcP47khJ5xkhg8cLjmAo&| zB%%cvQSavzv`Kq*g?qb8FUSIBZ^Qs#IEy_-KfG6y{e>aHIy6S_UBGiSOrhZbX3K3- zWy#x7R@ZSwp;J;sH5cokt5aK%c}es{Ru>z3(*LAqDSuf{CEmZ^M}u4H`HMJTGY9p~ zaAiYm%?%z4;$6UsdI&N!E<8<{ z42R@zXm`u(0M8hoOyx~1OM$ zFYCtm>U!&Hdlwb10x{vX+fU3Q^<{}F>(q_EM`0C+krUK>8U=B%)e39hw=15cp%|O| zgEE9|G3tDH9|i#%A*V@2A-O_71itK)U0_3uXID(e@cZDO^BQ6RWF=aOR!)k^iHrq; zdt1gp&zx;#^8$G?Sywi^@O>8ri@frtSPr#TWgNH&$aR!;MlOS8PH;-DdRA9){bH1 z*ZT<&OZ{n7(ZQ2<_0@aD433nqLjvX63=4|xHimqI<=I!6baBbhQXVjMl(GnfS+h{_}$@|R}nx@pdm%$GB4 z6Xp{A7fwFcVwhz-tF^csLO`q2^nGYnU3`{;0DH3A_#zS|P94lK_Fd?I1_+8$ z@nzDeuddw_JUxHSp=O;R5^JVX0aE)(u1>up!ywL-p*pu?ZNK};MkD??C1`{ zdu?!aB(q~2;*1Cgze=TK@+Wf(G8Q{xQ=)1wg;_2Q@8p+Pt-I-at!j0)Sn_|((xE?9 z7o`PCr(lIrFUK^99V|3UglM`Sk7AQioNF~IR5V`fjI0$7n5qtxM=${ac_?=S{!CjR zC}wlSRKEp)a1BZYd}0ANocH^Jy_2V8RCwQ$nd#V3xMF>nCd0I4T5t)549xbxDyu5TTxNkna0Hv zWJAW@od`T;d^4gd8?nwBa}`c<5SvJLWkx-^y=sV_vY&0yF#M?2PlZUMib@NW_7AdO zkyn8I7#G$FdSK}Q^$7I`;k)3C_$(k206`6K{ zkanz9Cz`4>8Ucv$$l*p9QxfneN`Qc)X$mU!;p>AwefQrAxH7gNX^*tq{RW%I;$Il>Bv_?El|pu=n__1SR7(b- zH&M;3To-*Sd=xOnI{y)?=09LH{tydxu>IRc4ZP{)l)t(%BTjYaU#H^0qudGpCv%Zr zXcU@~mN4-LeTfm9!|XPNM3Q-+jVs7t%|>!{X#t+wo+*+lW=!=ZWka3!7`%fidccUk zWHyVLlSG3bePLt|6>WWo47!ck?5@Vx;+?RX5Y4#p8<|?9%~Sa8d5E?IXCWO*Yh`5K zIC%24SJVJ$qETzGHJH<0D~c>7iVJ_yl_JuHIuW{~Os__m&FVMI4pg^r)BUFJ_RgL{ zMQXWq1YS)G?zO@-iJ#Rtq>(;Z9dTZFu_kmUCcbq_Fb{MEbcJ4WXsQO`I!$EJzH<>x zl$Ze5wwR1(pbY;u`6=hO%!V|d!ZbvZHoXHE>PIYFm0<$8AhbgS*)q;29Q16W=oz{U zq1e#eaNkI*Ap{-{d5=SQ;=+fUskC3JaWN9L!BvIpHRaX>JdBjxir`*hJXMJBDG0bh^ld^p22@jOXbdPP1z{ zg&wted0J`v3i4=#qH^acH?eg!Sulnqen`14RR%t80U7(+z9-&$T;W>MSxJ|88LH1kiZ?}HO) z*1G)R?nI6z3f}xO^S3T5+e%RzEp?Xq4~2~Ok(kafxlTM=c>8Z=MEC}81XxW_40yI| zczR`rLovpEW>*8&aV>5%v{jeAsmgtdPy4ZiKgl=q=$fkKKvjjN>Zo*b;vrj5UTdgA z*-`8C;D?yZ$T}{=wTYiS+NPAB77p5J(=8LDHm7DatRoPJP7DL!!9Y2_-LX*an23V*R1vm~4+05+W=-Tq329LwZ zLaOT0BzQUc3${J!q#R-kgmy!5Qmnl?pb4sHXU_!Hg${1*vVpTPmsA@cKO!u@yZjhq zRx^6}e1t)$1InY_xIMJsH{NcIX_86aS51qK^NSZguQeo0jyz@;4*A6fj^q>%j5s_| zr5`M)`1#D>0ppD`BQ`sx06nQB=jd1?a5%e8y|jw9X;V{@g;$OpZ=o+&NUd)iAStX; z#38_MJJD}P3HhPqCQ1G;Pr0>+Vz!4xtvn``HHCUTv+ypJk3>J-0Kv%*uB^yuLJTHo z>#5~U58Mi@9_tIC+3>R?k|JE-XT>r_nD{ESSE!Z?aJZ2 zq2v;A*5i1sQ8wQF@XI(nO3#SYMJ<@sF`g&|$4VN6|I+N3>KENVn8}tYmO-I5MOOF# zm!&C`g5s?NF!L(a?&9gK!xX30%L4t$C=2O873`8>I-jU{u7z{H6+G0B!OY%Y9&q(;kA zIy6AO`!{sxxxlk4wfagf=k1Ov3Y^;Utm)AaFhr`giRAo)hE|m22f4~hyM+41=K=9= zWsNo{3H|}!^ituM!Wa#{0kQ+)nvHuXrB<*wmRLUuLhXdKeFLzz1xI`+-I&yx#}h&n zJYLG~O=fCR9V-7fVZ3SJLIx>yiMSlqo&JT-{Ze_s-TEQEK{&wBBy5<>!7LoL6qA-9Py-e9Kra<#ILjJ%G;uL`iH9mza*6tfsk za#!tK0#tsqLoE4t&z2j1gz~ozhoD{>Fj5xO#KjgV zq6ovl=UYL9G>C@om>}OrB{Y2?v}HH7Lu0Fs;w5#;@$=NK5W+yzz`Dc6SO4Wt)hy8_ ze<;%;Bo@HYfpBaOS$dPWmU!tU4od?{`U*o|8Q}s&RQmw4NnAKBKw|BP5ZsI{%IK zrqM&z#ZC=arN|oBdwKrp(g6>7*Vh)cX&enx=9IE?7kW`A8GRqUi#D>QmZIwAmI?-a zU3$CKg5sWMz{dP=E(Rui%fa7*H~i3w0?GWqU?5xR#Z~7$g08SU<4!t)Xz&r&G#oGC zr68Lchw(X z;1KkOZg5ZYhYb8lS!nEkITsE(&a+(pdNP;MPL9Vl{^+=#yPUTAlH$zQEmlTTBtD5A zD*Qz892q!lN0-$^9H-UoL!|p~lN?VV&Y&h!d3L1t-0|rLc_a*u=+hS_i$HW+F{@!K zc+DOEv186c7<2_V50`i&Bik7-i=5A#gCu`<>2ctivtMT zv0vGVW$q#JKuS=5xa(Is%gbsgwu6}mI*tUN|MO2$NAzU>)pbDfa3w;(-|X5cw`i!= zXakXc-$?ASe85!iZxr9ZoYrWQPv~WLpyqf6EcU@fD*PReY3eBDYDAgw@U&TB# z1hK@UW}}r(4P9^Ra%~IGC+N3W5b zr;Z^Ha_%6I-Q=>`sGL+&ONtzlGUoSYdgfi3(6IYR4OSbr?2uo#U)6H`jnPx_)V})Q&Q`&a@SiDVZ2v{_ zv%+8x0uoJ+uw`TG$cICOy`Qo+>I5S#-9>v|w)`}nD+;>fRG(=ZF*{nC!6ciYnl(Yx ze(`tbJ?hH$A9Sji^mz({%cUYRkr(s>kLBwWae)#%<+&}_+98<33q;{um{_<73IX2v zep*V%wwLXWq%Ww7OF5UE=+zoY8QwGd;gGln28Vx+k9Y(9!uJ?u#_px5B)SU~H0KH$ zwZF7XWYSFQEx5zHY$f^ED?;(QsizsvOc3fO5uAjwi1dY|_RB)a?!u{m&cDQ@VjF7} zTU*PX27-Kh6nJewX=_ztcJ67hcX(;cKXpuEla}hkm@~sNzVFyJNyCdx`jY`h=GIYj zFG`5&+NroOslJ^x8scI`>tC~kIY5Jmvbo+S(doEE#2g}H9?3>)D3;-M5_dKqa8N9~ z%ea|7QB^<2wHawU2>4bT;-v5y0$^BhPf|(pQD)@CKEsazi0mrOB?KzS3`iqcBokR2*{Yaux4?8Qk%beY@S*0C%aDkH;nd-@JP($`MHwpsPamV!c3nz`h{ z8?p>1wDsum((?hPnL7dlxB7gSaV0wRKuuIu`$dZL=d0&d#^|OHpj`>IoTMU=0+EQ& zK~|O!5)B((j?sw8N-MD{8SgGi%0_3qi(d#jV7Zr~Jr|(KdMd+SklNlsT(_P{#>E=a z2vveH>+7YxS4^(^zRp5$<6YCGRS^nH>gR9S$f8xFu|eFe9TGO5E71l|V?Fqbk#epq z9R2tRZi{=#+~$f3?us#UO13&c!h}700ah3O=vvtSU$;##S>`ggl!?5g1ypc(G8Ct~ zChTTDpS26|0DZ3wiio`}C*OOXYe_j`>y(T!TRlB|t|Lt;U#Vyp)_oY5oYl6FL15cY; zT0bF^0f$d%x~ZXCT;uCi6yCuU&$Ae;Jdw>=r- z1!5xuIH!Y@GcreqyqO%SZc~`lr|ez{;N{M1n6l!3kK;OxgDZVLVjJUXJ=D3;u2IW* zIFEiy++7IXcfdIAiXbCz59O@}fzljo4^BG9H0=6}~+uIpup_Q zboLrm>zKH>MGWhAvs|!+H6od#AadniJ4x=T^dM%dUonJ)q0L5zb*V4I)LnS-&$J_- z9EI&^#V&KnTPAVZvhQjg{Y$Z&JDipku?&zlA#1^oW(1b4Mcug*Z#Vp@Oq5;pJezmK zYyDL}Y3~1!wt=gJnsxKV;tX=zCacsZnntMI^)u;d0g2ZC)m6FAh*^ahr7dj@ zZIVAHk?_QU+@3H!JnQ561~SJO$oj4yKVEH)k{(M`i94=WkcU)G+!t5Eh8`M0g~%lc zTnc=+8T0rJp4}#2G$tEQsn$dKrstt!`~<( zQ)7dlI%e1iT2A0nZVj_&eFRs=4`_ zNdgAi_9V0uj1>H{X#d01B`l39(cmQn>_j%B)bhRC2p0H;A@fqcGOIX@bYSWHQeF$DLcPRvaS(=jla)qAeg#_cB22AVw~6YgG}ZG@x~AS z&Ugjfc$XKn%3yXtKlSKNzEW2#VUUAD7oq}KhR-sKZmD)h(9`k+=J`+3Gt; z=-jp{thw2t7HJ@!U$p&XGbw1NRQHAO_nvQU+QMr^Ru!p_;%SJz!_86Q2M zUnT;f;CEy?n_~uCh?U_bT%O_6ObBTRi87Hdkr<7P94xo}^+LKKy#_yJvSCVnt`emZ zp2DBz<&L*$h0Yezyp3!4t0qr{TH~7cOleO{Vk~~$aJtFzmR;NZV#4YiGqmm=4_kg_ zr3#`#NblL0&O<=NL&Ec6qjcce2L09x{vGA&20GP(`yz@fTKXL2VwjSEFiZw%p!_xk zrG$yPVM;PKDdjf_H=DfogvR9pa=X?dEYvdenfk?orQ)__b+;UkaQHQD1A%yIJdU_# z|JOl3fT8+hjO0a=FB5$K>BsR4){41W!3rqf-MxuOFSrtuGA3C*)S|(q&avYFO(uu^ zOm6YY<3tu%#AhRzGHwHiz65zUc*pZRwA-wCF$hyt;k4JaPY;~2Z~FiMQvydhpA%0E zKD3IsgX7V4zpf5#{jqGGbS&yL=biEOgn`Ux{7}DC67M&^YvHr;=&L%Bqw7S=sZ4)mvua@ju zB^m>czjT*^UEq#-c{(+_=0b8GFGz35_$DRP3IIC7$L9m0U@^zIwc($uI=B1|7wPa{ za#*D~ZkS3MS&K^-q3oT(x29Iiiq29n)&Q}ZS7N(pd_%vP7En44>_B(rDFmuxVBy3>9->mhcSH6Tz<=kd57RT#dnX3J5fENelftMSDQ^k&-=~x zGMl@2tc>s9LSowb2oAK-L`KJwlfp`0=|CPzQ7@KWzAarSS8#LP0>MAi3Jog97HQ!N z6@sGWY=$(iy5yDa@fxRwI3tx{ac3RXa41p+uKIbQ5p#=3%keW?(h7aUv~|bXY*bk< zi9HFB9NbYcMf4|XfEDx~3n1Jr>!U9bq6d@l?V$>^paP;eNez3ZH$?qfL+Hb3fXTSt za-<^AYZKN>g_IH}c#%YF5sJfBRf{~=fpTFSXN2)ZqpD?o1J(9CqF%MZszGl#`i7HR zZwsw=+eT-(a~P!MJDm>pvbr7HdbnJ4xtC62c6we<^bt9N$)5)mAUQOn`PGZYqbIU$ zV6p#XLv^m3icZQ&OTUC>+(z+NRZhaJ9a~>j*SY$oU(zaJRht0(9=|3k)$8;Yp!2m> zF74mWa;%k>_8VCP&8+qk2|pB1SO-EreBFJNS`>j<>QvEGrC{A-D1leQBRjNVG0jM3 ztE6lWL0#UY28@fTwgT;mS-yfg`yL`qWfKjIZ0eYk-ESE4Axz*uEu>0lA}(_}KjNG4 zW}O>r=O)$FSPNOf@(K_aOJ!aX~O&fHvvV01xWt|XY=^6!s~2nf%(g)isRh2?T63td7n=kRaa%0S=hg}c_5Fn*97X7VERlW> zjuA{siX;9!y+mss9j8_+m{+>`cL&;rb&Ztg2o|5_EorS^e9(E&hP#b79xaW>x#lA_ zOsOohWu|GV)D5i6Wrk~(Wt?4sWtb7GdYZ5CrMB`C5%p&{{5o^zPJZ5hh(z_9-AJYp5@#Xn|a(F6g}rJSjYsSSlLM%GWWG+F4U?-!frDg?y&QQ z!XSK$ruLRbE9)=2G$C^_x7{MeVqDwC?Unk4v55VA%2oz{?!Vn=&2TUj8sy z%1Q)yhgj6*T1tCJW9XGe^6}InKAA2edNk(o75C5#^EkoSFtM=b9I;A0uz7Wg499ba z_3=UdFSmwfKHfgKGLT$oZf~nBs z^aKQLp;N>gxeIla_e6z@2+9L`i*p;AYjc;$@pjRM6XvphJ^Qng(5hE9*D^343tj@n z3nbm#O)ETE8-4lY2N6Zul|%yJ9sC3HyHDp0*5)BJNPpisob(?w7rgB_FMbtu;<> z^qf}9wRoc?nk!{xrLZl5I;mhM-~uk10(mDt@4pwrfxul_?NJwvJ#iS?mwD3WjoqdV z@+QL}U@#`saRB^}K;9qe;vwAx-C$keL+rdrFgEf^#tQNgxMYQ(E`l`VOv8A0w22K$ zUMNHJb=+4tcWUIVjOSVFyP}tS1>y`Gb%)L3s@3l!_Nqc)A=R4bzu=|kwCZn(H!&CM zBZlv1iH>M1HxJ5pdMIEmfT2!A2e*#If>q-Dkx=ilP2$wGYJ%|&VMt+Ye`@7sMK5o0 z3h|FpnXq!HE1R4``8{ph{tXRZkO-r?A@AK2Q9EtW0fW!@9-SMf{fL6+g*Zhv#YF`f zpwc~!|E2@wIJbQa%O5F|)HZPj%rylyr{Od|)WzOzi{ZnGQ#!s^99iL(G5Zh&?LC8E z?62$%dFwGUSF>skmMEuM&5j%97V;nJq*p&MP_M$Sy{puKHVi|n)?1ki&L0<4-00s4 zI$x>2s-*5(0-DzX<4fboQ7yK{D;O9jV}rq^@QSYK@fT!@pxWS6gku-2Y+K^VisxKcP$Tl@hlxCG4m&*?a`!06JLQW@s5AK7an`lKs}mA&w}3pH-RFX&*>;9gE~ zUV{NySynBZ8|wVFJAp=o@!BN3-CV@A}ltA*!NS?~dF}8o%Qd8_)z|ld?p7z)5FP1P0#Xj|mHdPH% z?uHrXGBwm{bAVjv*@&Yifk7z(W_GkpOx|q+SJL1Csp9+g;7W^O_3L}o_oX)Yn{QNa z3dw)p*0Wxk;8OT+=_VyZ-2_B!B+-tDjQ>!JzC~7FqAK@3ZdnTZSkxT9EqA>yg!aS1 zJUzr`dO|@X&(S@5gMRhh9wvSx))em4;t8&yo+6toybLP7N>bXPZw1ViSHZwAq7)$z zOr|Iqm=WctUkv?Y zEmQD`B0^$#moNf|+ZJzwbcI8F!~TGUv3c7r>AsucL~kQ-Rl|qyanRC5;_>?)W&zPK z_GiBQsW}Sp`NSatQ4yZj<5wZZsNcm5qJH3#3sM)))qj=k!wEQzR?IJr){*#3qfVO$ z9ai5n1*gX3i%n9yRcQ+|XQPdNVQ+%Qq{l5y{!{DABg`ekUx%NAIWx@Io zD`1RC=OouL;gcOD=8gXB$O5UP<0ys#g_ zyK69|vxEmKg-E?IGvnha`Ku+=%YMw~%b}~^+!8|QgMNL?adu{C*9Y}&9|?aTg8BlW zXD{cmqrCj}u3v-^4QZX8PtNDnkIEa#61huXvevwdK2GTT#@q$p`vf|piI^4Wx{=%E zxl!nzv!vRd2%GVp{sDt&gLmQX4X)x(ZJWL&hV&{lxbG_Swuqs>g+d9h_ZCRlKNB?= zKviHX5c0l3X8JB+9zGOm4hTRAO1r+nwJj1~(D@Z(-`;a>p=?z-(Siw~mNxyyaURDI z!oTxugloq4EN;nQs5PE4A)>zgB)s<;f+h`*`>Gf?7{G6biHTb!PccmjIPV zW6#dl87Uyew%s6^r~#oOSagpWs>in05!DM0oZ$X)#p6{1UkuhC1DyxMG4fIvr4u^# zuAF5T*w36u1qHUQhzdbH>{NDnAoYrYP(6({6u)7@9x*!GUgNAf#cO8lB-+Rw} z3>^=j|2mQS9Vwtv2rKOJdy6f%H+4yr;a(hI@}I+rj$2sq`~4*ryaCV@zx>%OvRHh^V;d2Hhx z^0@S3F1Bencz*pSwPziET()2~hnU+Ar_lBT`^)hcKOU#{o=a#HS=W_@BZ)pZmPNh5 zUKsMgJZ1-(27pMyKto#>AQam_y4R3aQckDgp)@_KW( zqXb{O~{?!xE>%Gf}Ghp6vNF=;rmYax~-du*zojB6dL#?*B0Qx(ytw?O8l62WuV#cV7;C(xH*{J;;s8aaOLys ztIp4%^tbxe(!^M7VRxagE?B*{bbg57hRv=?4X?yV;Wwt&8B}i4oxAZCvuw>JTf;B_}aFo*zk|~()(7P?q)~aYiLypgi6{Yfiu&c{M7^Nh<2}m{&lK` z=`sMdKo~Yq;PNy|Uji-YDrBJt95vWr5KbioT4#G~dPJ8H|6f@*{&hr4b&tjre)!l` z_(MVtq2buScN}mLbN*L6uU)v+I}@KT@1v@mc_Tark)+nyv{GAUtd11r-~68W1qi<( z1llsXG(Y~~Ng+Z{CTsW<>{7WskT&s+Q;z=ihI{TG0(f^gk!Qc0e4LW(fHAzMQv%f> zcxUC=ye=}l0Jq&YNBC^aATc-rT{*Pdm={){sM^l7@8E&eF) ziFE;%#rRPF>g}iZ6#d~@hW+2NJMnt9UmpVHk4pp56a*1I4m2zbKv$oYee}oe>$z{6 z)9H`azq9QE{l31Yo^ySyIelp(YVFY0t#f@-a1Q<4loQ{33tev5vc3Lm@nCE7j=xyF zTcwef4GSy;zuB?zi0^5BL%w=NLn49WgX!yBDP3Ge@ZaCl=YIz|vwj`eh9ybzcsCM= z1sC!3BR=YH3>5blc^thc1U}Fv4j2;7F_gY-1mnKrV4agZeChYECAZt@d!S zVcbdZrVSFGqC_0P|Ap*De&p7E=w*aY9L$h7M$>**5XZXQwE%+1n+@O40 z?JRBx*F;W-6+_b0F(|kJAq3h@bQj@I^}VJrOZ_PW*9JV>Jkyb5%bes|+vypg5lMG1 zLV4E)7VPqoJq-|PFGDyC8F6pvUavTD`vBIc37H=A74XtcA2oE`s zk3aN}n9AS3WVE%HjB|Tt8+v1xY&iHd_daBd4)Ma|KRB8EdRfq*-ns$_C=BFXe4ibH z`nZX&MHYbl(5+FPT|{|ZK05!ngP)EkeSl+Sv*UixM8O-yUfEuKN5GF-_hSIW;hLF<2c(dH(G6 zY4ZM>(f8r&j-CRNzy@LkoYVQmT8|n8N;dq9ll@<Z{7+xUJVy=I75# O5I_k9@p@6CkpBT050Fd% literal 0 HcmV?d00001 diff --git a/images/cccp.png b/images/cccp.png new file mode 100644 index 0000000000000000000000000000000000000000..3f9497e3ac9fef8f1b69eaccb2190c2893a53d64 GIT binary patch literal 1448 zcmaJ=c{tQ*9Dgw}vaV-mjf$n@YDF>YOoN$;Uksy6jtH~O822?4(GHdo(K>pZwJA-< zm{~R3lQ3-Ss4y{%6_Q=Fj9J$@8|Jao)6?_xM^Arz&-eKr&*%GjFA+RlRd?>*2>?)q z+^{EPmi}JgiZb1HG_)H4xvX#uh5%tO`f&-dl<+7r047E0MUHN5PC6aIXsjSFOB1VO z>0{h^AWZSZgh_*z&X!-DeS@ud_OAo*Og(*$xo4jFiHYrE zmwavY!p)`mHlo=Y1u_h()IP8Aa;5+{^P%-y!0Cv{BPyu_7d9XWZ( zN|Zv%@H0!U?|)i%Hllr?-J3XIiY{OEd)wUM&l38HuWw}+HMczMNvgc%M$&ZuS>MH3 zmFyE@aE#@dmyMb;PTMlz1n(g`x~Uv?EmlDjJw zY|A`gWt_GwGstRbU7WSoj@@tt_>RhV!FgVxyzU zF*JZlAcxY(XZ6p8)2RBc5T4+hp@sxNAp^oX`b;4)-nxwuT1x z^VV7#*HV*5o9?;csAiMq`alD~0Sw3kIXZ9xpAYG?;(!@l@eupo+e|M$Uo_QI)yXc= z{aCgrWznYxELz{KAt{nb{w(gtjIaN;mnJZyRT_rJ*hNGhdg~qD-`L^(Bznhnx%;HM zgZ)>BxRpK3Z9Z+>!={HOD1IZH$%q)T|4z@z%XD|tBh)L&)*QPOMTUBNR@yzTa7Bd` zlAYo@B2Y1}L#$r#Ze`?%o3pp4?Clid;IL1&=L?9_9XxmFBt`FxVK+`>Hw{o8Tdk3ahW4T86rc_c9ZETaUe9MpEpk@6`%u1F@X)TXkA9F?H)vb0<@-ZO= zvPWufUSY$*DnqGeHn=GCIG$RbXc!|Fn2aDf&g#+2egDKsMKwKY_0QQ3VfeIaPKrZV z0eRrI+Uu5e+>Dd5bQ0(A`g@IM2o$1$tVJsG*1z8xTg%G5EmiK98^RDN0{r_-FY~ aIJh7;)lRZ#jv#5sek_1+o>-1cNap{fFKz(< literal 0 HcmV?d00001 diff --git a/images/layers-2x.png b/images/layers-2x.png new file mode 100644 index 0000000000000000000000000000000000000000..200c333dca9652ac4cba004d609e5af4eee168c1 GIT binary patch literal 1259 zcmVFhCYNy;#0irRPomHqW|G1C*;4?@4#E?jH>?v@U%cy?3dQAc-DchXVErpOh~ z-jbon+tNbnl6hoEb;)TVk+%hTDDi_G%i3*RZ&15!$Fjr^f;Ke&A@|?=`2&+{zr+3a z{D*=t(`AXyS%X7N z%a#RZw6vD^t_rnM`L4E>m=U&R!A-&}nZIi$BOPvkhrCuUe@BN~-lRD)f44;J%TwgE zcze8u!PQ_NR7?o(NylLXVTfDO zxs5=@|GsYEsNo4M#nT%N!UE(?dnS)t2+{ELYAFp*3=iF=|EQnTp`#vlSXuGVraYo? z+RCzXo6h3qA8{KG?S4nE(lM+;Eb4nT3XV;7gcAxUi5m)`k5tv}cPy()8ZR3TLW3I- zAS^}cq-IJvL7a4RgR!yk@~RT%$lA7{L5ES*hyx)M4(yxI$Ub(4f)K|^v1>zvwQY!_ zIrWw8q9GS^!Dp~}+?mbnB6jDF8mVlbQ!jFKDY;w=7;XO{9bq7>LXGK24WA`;rL)_Z z)&j}pbV(;6gY;VMhbxgvn`X;6x}VUEE-7 z%)7j-%t8S=ZL3yc)HbXDAqJZvBTPoiW_A-+a8m3_Z?v{DN7Tnr#O_VUMT0UBt$;p` zDh6JbGHN8JJ*JN%y2%msb97@_S>9!%Egwk;?PEkU9ntz&3uR}%Fj5d$JHQbQb3}a{ zSzFT^#n=VInPpcAS}CNxj?_ zVscANk5Cfz(51EI1pz};AWWb|kgbYNb4wCEGUn3+eMUMV?1-{=I4TlmLJMot@rd07 zZuo2hk1ccu{YmGkcYdWAVdk{Z4Nm?^cTD&}jGm+Q1SYIXMwmG*oO*83&#>l%nbR`G zhh=lZ%xIb7kU3#;TBbfECrnC9P=-XpL|TG2BoZdj61*XiFbW8?1Z_wp%#;>${SUIy V$8qr;L*)Pf002ovPDHLkV1hYLS~36t literal 0 HcmV?d00001 diff --git a/images/layers.png b/images/layers.png new file mode 100644 index 0000000000000000000000000000000000000000..1a72e5784b2b456eac5d7670738db80697af3377 GIT binary patch literal 696 zcmV;p0!RIcP)*@&l2<6p=!C&s@#ZL+%BQvF&b?w6S%wp=I>1QHj7AP5C)IWy#b znXXB;g;j=$a-tW89K%FbDceHVq&unY*Wx3L#=EGWH=rjqnp|4c_Ulec!ql3#G-5ZF zVlbBA@XP=)C8U&+Lrc)S4O5%1$&{(;7R^K(CSnvSr$v;+B$8q&7Bf|h$#PARo1^%M zf1H^nG-EiXVXr07OH(*8R)xa|FD;lXUlg_-%)~ZGsL2cX0NXaAzN2q%jqLRR6ruVk8`Jb7n#{`T;o@`F= z#3YcynIR^s83UNF3D!f5m#Mg)NJ24&Qfrqb&_z=yF;=B)#9Iq7u-@^O!(mW{D;qvr zPc)gVb%aowtS8m@ElL4A9G>w#ffQ~q{i&_i)*6f^)Sz|C?C>zb4Uo?H<-&Hz@a?J; z$ml@zGygWofb9$ZBj6aLjpLhsT2AzjOu=-*u_gSCUbuOQmZj&ahqf&nXD3(tq?GZfFM@XnaKnqgoG>*5I4jPY!y;m z5JW}ADrj9O7N3GuL@J6KDk7^|m#Sb@>e8q0CLn5Gzwdp%E`OPPH}}lF=lt&3XEG}S zC;8ghxY$4tWGC_S4g&K)Fh*Kif!}gt${8@7rKU;b63HmY8e9NQT2F`uC=(y8iyjGR z3tA7T2bhBjEY0&uK!4Ije+}pnT|6cklx6|hfjI{ZHlUrsyb}z?vd*)P z0NV7iHh=jRkeTE4>?@H5(%DQDVRA4akFYr+6cr&{IvW+ChzR3>^J$yjXkTWx31nSs`K#~6x}Z^aOg#w zBGI}T&n=}cna%@zj}|vKR}!^HE5gHig?ZTj2F2;)f^->!wh)x+xTN_C^#SKnq9I_5b|UZ?YD_1!%ho_~FYF1&fY1IM`0?JN8A3T9~O zx~z#`8nOjD=ZJ3F*7e_&QzD4Ya*1v-mLWNp!`6I1N$V^bL-cm^93A6LQ+f zO2tO#Wn{B|+tXckvpbBBlYG+$(-zm4SLl6%I~Jb$boSG#)zZ4G->@Z~G{g9O)sHl< zk_k~owO`B~QqXt8(o+8hsMoS`L&m<#;>J(!J-FY*x&LxL^lPa`uP!aChaiWZijZl# zY0`-zQl(_#G8I8F4NA2sV37NGgBmBJDIJ}lA{DV>M%$q>23;W&Gs3u1M5^|pq7;5f z8Y(zxQV5w8O$ud<@#AdV4I%)bq;xplpp1#tiVR|g8CL{o(=v-eH?!!X#f)hnkGxbG zijFZcCIb5y6!C1vI2*dVMkW^pd4Jvo0j|W1D4k9%VzCku5|{}brb-jZLWM#h3t_X^ zY#4CB+Qe8LZh&L8t|o|13~x$HY7}anLKRClVd8{JuM;yEV4wb4Kc!kK?S_xlc6kB# zgJr0`luFjy5?Y;4JOJrZ=no~dA&F{=6+~%OdJReW#8a_4*S8^LWVgIpuZc06 zBO_T<45b9DT5u}*&XJ~y>y|LNAX1@Jo27uW-{I6Lry<-{F33 zyO|kqNu?rh6{$C=C-D|DOy`SaDpDa6nMr|ACZup438O+1g)zC1f^n{p4HE(alXC?K zk3h(`pd_(c9UeTQ~(?SS13nNjD&FtmBSd0BQPPvF&O6%7$21raz2K>1u@dYr(0~CSDIIxT)^!2|h& zaDL~&|Jy_q1!jeSn=}Uzae&4Dn29J(qButmb9f{MOyu)mf)Y?LPtKQfgqWPb5dOPy z`BNrxLl9KN1ySU6rTsq;MIld45HbXZg(wIh#^niNA)AlE6w1T-LJZ?`Q9{vZ{6@g4R@}A2MO?8!s>o7=_+oZ@89|9>WhEp5p?>8L*C23AKdl9 zUGL?A_hSB#T_4=_ULJTa<`3ERm$}R4&8rP67W^Yg052|v1(wbLFFmY?0AFwDmFc_b zaDfr5^j7^!6u7ucG#sb(=P_DOdFwx?f2dGyy8E{ zBc***sr44d#JPJN1CC|QoDmj3cjLT`4Y$^7f2ywDlm29Q!+^Yqyr!Eu&vI+lb0X(+ ze9sYm`s9Z1ZvN<8Vc?>Nf|eg1_1*Jn^zg9L32{v=7sUR$GS9&ST0YvAb#D4H`;;|w zYTHGh)XjAELFK8dv-+pr8>^dWyjB`9aweSRpSdP8$fY1^Uh%5svvVuum*j~{d)B4z zI=t`x3cHr2C(F;?;ZBbeq+QpSj0r#A&&Oe0&t!<@X@Ay+v28i#J>9kSo7w`GBkji= zt6b{`-xrGA*vR90uMzsK`|}Iej=3{2X6Q85wX*M`8x!W=i!owTunkgvEjBmdPc&na?PaW}DLul^RTbr-8{ zLErmp$u?E_4*sCmIXY+}*@vPDLDO!acm!wtQ+)i6KHNdHL*zofUwLcdJ9pU>2<@8-{ec$F*k13g3zHY0v-r$v8tNr6ts`)g>x=$Y-`GB{%86EN-kT!$VTr9u;~x7OPqx6%Mr+fA3xsvXj-X zlCKTs#BErun#8R-?QJ!`Cd=ZEUgy2_WG<)As;e7jcAOdLsW!%KT{XiaUR)RLka+ng zqx`_#e&0sj-W4p3;o;8v+I|U5ru5d&m8yaR#RHo*&MEcTW4GbDZN3<9*VOluMZQ`( zrFr4$(I=9^bq=HVrO_I%)-Gr&<>qp_uD7O=kISS*0yj`ZY=5lQT4%F zPwXyC9=c~hc*WMetweED9P=gD-*Er=l4A(cvXsO=2zQ$;>m*#bLyXj zXGGL=xU62gxM-bcY6d!%rRm5^|K4+E_L*o0TKlLZRw{A+&}VM1vOjsIKX@i&|CC1} zksvHjm=Q6#WBTf~o-*d|;80y2R z@ok;fx8Y*mrJGm8hQ|)e$Bof9)^1+(Rpyp+Pu)s<_EMF>^YR);lx^eqKfCp1o^?x3 zv3_N6$j{uWqEBKiqXs6%mN_no$wD%m2Axcudh$|ez?qbedcIZJizyCGqYpZbeZk+Y u;;KA+OYao0E_!~xcLz8}SLvyJ*<+<>vGY-@nrhI^Ac@Z;@7Fh<840_DL^ex_T%weu zrOPTR?VIkRBvNe_wM9v#yKKE@hHm@r=ktDgKkxq6_?$V<@0{=RJG|;93TZvJ&nQEG{TaROuK6o{Cgg)qtKqCO#81z-33DU>bY6Q0O zqoewxs3TN}54|^o>5n8}@Hh;S1pILXA{~#X<48zg5OH)O5v;Ga<5NURChM?A1t7ll z0(W<&Lz zEg3K&34BN7}epdV()g&_ubP&YaHsm^DrcfA6NQTI>}lySIs$x z+A3>8bt6k|9G11dJv}98t8t&SZ(<6@XY_o`jXx-@R_U50Gw=rs;`($B1V3QcXD+|t zpRp%n=f-`;Dnh;O>bt=U^ldHA8NAazdCVa*AXmh)R+|tS`Icj>Go-#hO_((2R_wzG zPh2#XtvDAJp?;`z7lpp!xsHxl!{oXdvs(ir|GsQq2*J{OxZQZ8XV0HmjW!08y44dR zMB+yYMb3!j4{T#JX3tjVSX~T#rI3r|;`b$jSFbdd2qXn*D}{py#N?HNz+hQ0b1|JG z7GfZ-mjqk;|ygs==kDuj_DDP7@&Qt{G(tsKUpkSd5Q!U+`&^2l8*fsrH( z34=p>Dg?0vl(R0J|OSR4UMAfN#P zEsYb&AO%_^wNO%wad^N|jzkb86Np7fB`3rd$H<&eC@_!w5T7uL$^1w!l8&nY^uQ{h zC@da>!wQAi&po6v&sab*9?;)d$aO5iqzThk7{#ZFK!FerkU>f{@njke z@8EzV5-BtS#ew<>6a-78AQP3Gs@kcVQ638&Yz7DmDf1K%sK&uw=SNXYIL!pti3`af4@d?B(vNjG@IxI&<4APeSolghrkE?>#r-$5^70@Z0UjK=k3b66 zk5dhe-KYRKdhBWJF;bwqN=T&YQqUpJ*cPNvEX-BK3Ao0lIN^|p4}Lku)wC_MhJ(7e^zrX&^fZWCF-`8k>NI$YcVV z!{y@HWCD?lBmPCe|9OjeJlNJ>b7Fjpj#y<`{BWp_*#9{8F~Dba6i72R2I?~?_t=m1 zeq1wUW&H;~yrFrLgy!$^pu3n$NU#dM%{;06Fb7}x; z?uIH$O^el@wOZBqO0VhpK_dq?UBC9g#4mB+*DYw^(f!U5WztZ5YVc;q3+6u3k|npD z@6{U-u#>b>Y6;dBRp)%o-oCb*wE%DrrM^D0_jW))H=Jjl^HX-SUe**{et1Ar-~Ka= zOKDG9yba#z_4wvFygPpWP`11zaax9J+vyFP7jR!6kH=_Lgn1r+YFwP1S&rS0My!5m zB6eEi>2kez+a>K5+)#sWwNZmvv&T7>0xIVW#M*aW*bvGxB`uV*QAbX--3V)Zu@n&( zJA@5k^qw8sJD`52varoChVZW$6?=m!s|pQ`T4xU1TVUrhbW+yt)VHZU+-28sG$Gq? z@^bA~zP&+Tn*KC>``ZtqpX>}+cdsXLx14YPauz1+(bIcjHSNVkbLH7pCo}>(FLEhO zGj+^oOHk2gN0JSV8nV64>J+5ByNEJK8cvxV*WdU{{lJBy%ZVe2&d+~HUKUomXMWtA zxeHc#=NTGx@=pi1n&x>|U)X5)_@=fVGbBLK`()lr;l;}I@4A|v@7l9hJ9vJBi+Qrc z@*jpbsAW%{GA+*mZ@a#0ILE*bc`)Y1o31}|!^6`it>Dku$xhIUx@O4?39jgC*n-%g zMG)7u7(BkTxjpOV!!^;2LS2nfn>u}Vn(=Y8xy`n$q{fp6(dXmehnV+fL|+S?bh=LM zXk=jf9Jk7q(q%qw{zZ?Y63XrtznV_b+;+12{_Qtb>$)qLJ7d~5T&ZJf49LAmA-c?t zU}AOk5i5_147bi3O{u?!-5K8UFk*1Y((c3~=W0R|(yO=R7_BK;sS2-YvONZww>@t}+HW+&atn6YY-VR3_zs_4*TH;|x%kS_@{S$yf#*goJYrsmS|%~#AOmUBbH_k~Uz z?Z5OiT`WSVZP<0_0GgSlUvOv^IcENaBJ;Cpru(>ge6Oj}KbvhwA}iOzL)ZJLojk?7 z!+&g=`g}l~@JIjfRwTlUme1b8sy=_#(sc-J6J)u6N}1z zR_c9!$jgi2r_zHPbs5D{7yvJ-;!?KP217+_fy9WK(X_6OZm*!kgv53pzr*H zWZtT)y~Ugy@ngx=x@EAat9*Ayki(%J!kVeipYyJ#9&kkz5v2_C-(K*aYF3QE*Tk-mM527IqaXS-tT77pAr2Sb87NggVvKT(|VjM);Ifo=OPIo v)Vu1tAZ?!*o)4CpB%^tXVv9pTZ)kg+tRcN%Gs;BlQ# zfqv^muC82;t1C{fkO@T+6oW~~S(V}BSutBy{Dz1xypw4K#vaFqKf z{KVQNcerVJsrxtPFFG@~qv(Qq)3K$8j^1*5WmKUjRi{0s&fjuD$ISYxuQyxKxk)J& zg;sX6;Nm^KPmSlS&Io}|(9c~V|7&)DXZrLv#;fDSW;QlW2jr#(XX;;Ewl!(c+Y#G1 z=v?~b!8ntIu}6wa&o*F$&YT~Pmvl}f{Wu{coT2|!ke5taZy*V)i9feiqpsEUV6kV>MJ>;xyg7MBfZ%`y>>)3T_*?CKBW0;|cK;f=m%XB(qp7 zA_*qKFa$Utr8-*0OMs%4Gc*vx7;dN%QHbO!kt`ag!Q}B}u_`A#9_-`Z>L-w6|zu>M`OVd zpUI~RX-pEGPeR^<;zTP|yl4c~Kml-q2;jgh3YEpA@*oz%5JFU#%78S&5QWBrg%lc@ zM5R&RgYZ>|Kvwc3?`x%j5&$TH5au(ebOuBfFqjaP4k$iVK!F4ZU&y30Q3?y?YoP=P z+e4<1@<2F6QeFf~lt)KsH#81syKp&9c$h$Xx5Ab1R6-!&g!d9f$0oen2oOn8e-%&T zO){Oug2`ku%%CtSbkcj$i&2FVWTFOBdv|KZHDO@`V}N6Mnmh#n+I3(H+f{+`R5C?? zOeS%{kKVeY+uop@1Uwbbji*8Z=;%Eh@b(^tz->IDfCkQ6CJ+hL|BG8wJUBKTeu9OK?@jM0U5&`@OdqL7Dx zcv2BahzNKB28~WZDSuTIH73#mNMtsR$p-CUIPL#|C{hp_iolvQ;tBZ>mBvRwj%w0~ z#ALu^l8_=G{gqLq{jst~Omrk_n%mpbbR_;)@eVV**9}2}53hkP3z{}@v}=!KJ}9ie z^EGm5{GCVOaGwtODF1$P*C%&v7W!GQkF2i@f`_X9dbv+*Z zs$Y9PYAX0gU@U*(d^d~<#uzi9%g1~bSQ#hxT%yEaj3#LY7PBMA0xasQINt919Y%VS z^rl2V3}*qs@f5T*iH(kZ+nRwe3>+AjO&3*tX*YEGrPBVA z5V5a;y6fXr-)B#m++`$mFthp^SA_%otfBT*eP#QDC(n0AhpBsa0EwY~3;g~kyPNv@N@`A$A4RTQ z)m$X{-tA9meW{qV=B$fp^#!*Z+K(wzpdieDDD*K zw5Q!o&#+1N5YMXe$$2@;zNZ|i`x*1oudeB5uO$}krgB(e9^Her@B@6hw*fo#+|wV@n_4eA-|P;pepK76Tyq%izcI5oF>%>)3yakcu4G~FXJo7? zb+6c-vdOHYY+Vt(`&BR8lK!Um4!QcAcv5@H2|?P7b#*N+nZn6+jry4WtCzDf4_LNf ztqbDtNAKoYTF(|=u2_qpRFjXD|axS_+a8%lk?>cm&@v~W1O$2-Uy%O!l$m> zfgR7JNylVY{a_Q96jDo#KNrULpOJq2^OHeOx2>(O#Sod4-w}hrcDHQb7(CTGbnW2z zw1=(StdjU^VwGBdFCogy*d{72HMk=i-pZKkEN|Q7(=?#VJ!XFP)%KTNySnot3zW2h ztr$sTV*jh%FWP8r17#h@f@Zbv9~e4q-SgAg$2IpoD5knoD=jXh`Q#<^Hy*#+yNS`* z)v%`NYE^&h-tyPCPa56t-=CjtYf6+1^&Mi^_B6$JojGN5*Pc_l@3TzmqR3>f-m|i< zgQs>4t?W3nrg><^&gT6{z{L}$Z7&w;TJD-o6X%;4`mI@_=I5^{YTkPHa3-hO!Uy-f zxmEX3xb61h#NT8&(}<**V^~+o^v~ z%(mWL-d#El*Q}z|Sx=MVjc%7%otl@renHX7`!8*<2@=)jla4_KrR{vXGXW(NUIrKB z-}fzYT>2x{+6(>C~S< zpSli}>*(V4HS+z-EW|~X4B?9UYbV1Fk0b8d;Z`y*_}fFf{OsIY*NK!ly`6(wD}(bX zrM``YlE&vv#=CxD2%p5?cUSLTeAs=`7cJw|e$QIaP+y;%_4`Btw(_h`U3Gx6in<+r>db-V(h!PRj4m4%jD(M{~Hx8E~p&&QVJ$6RU; z>U#Act!Jeu+*Bg=Pd8tZ=@)dduO+5ce@g7v?2y#i#|W#azqWCGzvVmDmh8dm;uf#Y zS`zAB$Q38Wb@6ZazfMZ3Oh1$y)meG9=gjOS%cY8+g9eO#>=8LF7Zm2yQ}MRV*9pch zNjS4S!}HU+8m^n_;x-PYMNuqWu{ZHCdl7>hxy#&ADpPzI4HpEe!9(JkgC%CAlFlE_ zPpgeO<(av;TGfz7aY%Oe%yDsOxaGACPp_@pGs9rsjtova`^VSW~RmpuRPyVvcLEvigF+uD-hNh|#gJSWi<1zti3-FSRs0 z^t%87N3ZR+<-zV+$?Ji*?z#%Y++7dxc|0PY0giZmLy^BuL&KP z;_930-+$ovPIA=c4c%5u(&2-A`hvR+GiTL%)F=aAmXZUFN@H$4xe>zNvf-uUP=xh~ ziv~nTQdwMILF0ZFO;Ya>DIhFAHS2Z~AsoTz~BB%syxy4G8+_1-^|bvXN;^X>2K^PPP* zxdnks78w~>8bAV+K@Kr*Mf!twi=^umZ%w;z7W`-Pup97?Kq9m0yYVy1sQ>UCun3~n}PliXrgsf zYc&8{{n68W*}zgWzwH-s0s^sQ0tqHisK6g4Qy4IvK_+2I6b6~bppXF?_0wMwshK8^ zMqLFgt3^IOfgB$ntW+iuiV_hBO52&eiOD{{(5fjWn6-QXZmwDKrNGk1dvHaS2CM_d z@oU1Y{RtC!^Nl#)t>4?XO!}06e6a6s`QcTEv3fbGnp&DuExX{&Vgo#nNgHae%iK_> zR0R?#t%Kj8c8GsG=o@uK5Z<&a91W{%(Iy+WBUd;<80+S4W>(he^&{nN4=1g%Kai1Z^Qx-k^>U;S)BsXqtt0I0E&EI+MjR+Ax zjOub%bT|Ld?^}oh_b|F7`P${sYxNE*xsGKO&hpX+j+lrG7`yzyK$br8TYkr(VxBGQ z_3*4olWyXs#kS%4g;s_K7Or~y=eak1%IdJ3_>RQ}O}Rtn&0`kY8L7EnwANvu5QEYatcNG^Hd{@@ALl#Y=5gs%%T%nwAY92h&6$5sHWae+FNY zMBoY}JcN*zBvl_6_JtHw`bA&r?%Oarh!~zDy)lh$LdHnv=_uq$rp;9GJ(xjW0E=iH`5mqW9R?K^!Lco9LFHMmpYPKWb z6OlwD2|(pwRniAbs&Cvo548kwq9m!t3yA#zQXvxlCDsSAsb@6Xc|Q=~{*Lzp^xM5_ zzyK8x!0?suQ`F&ce3>})`V4`DFA^{`CXFtjBV1QLo^6=1M~-bcCm&67U&c zOJqr0aGatfZX80CisLjBYQY&^fgC1|Oqg0#GZL7{RS1Ct6X!1yr=BD{5EEdcNij*gG^L&YHFv(U41MJuo)mMSDmMTKr;^Z!tjwHT!lmy zB9SCAacT-p)qOV|0IrjOtKj-_6$l`GSBFF1)?qwMWx(%5V+2S9B4PS}L#rNX zT)=XV?{*RyOv-m%*0H{AL@=^MJlIxRPAEm%Yfj?!}C%HaKfsX=z%C7&J zTn2x=P9b9OD@X}mmI}ALtOGAvI=sb;d?90KHe~d8iFq~{(U-C#kRKgBr}<6hAEO@1A%EdT_k?BZ8Te~< zXr8v8XGHmIvwa=2F`qm5%*-h#xRIB6fa`qYGNQ1yX{|>Z67!lX6pY;E->}{!qeSP zxhB!_tCTaFX@lv#+6mzm1=iiURjV7xg@_rNhLLVn?M1uWdnLm3^u2rK@`5>@q{%vB zX$`r|I5&*kF7hqOodhjnk+Aqr})XpC8b#(d)lQ-X=Y!4$(ik~5oRM<;k`aS3F8^-V;_#D z+|R(Q$|kIR9X)e3=KKUf=XF%gF6X95ok4tKU;D8Nvnq+@#OOtPT7*yXaS7A2@=h4iS$4!##=lc%u+`BU>9ULnJ5W9J?Cd{kT$AnXn{84z?q6;l z(>R;w-xc6Qn`LH)Y^(n>CJTA3<39GAu&25qui$s|qNUx^#}(#qO~$+hUMgX2p!N4v zO*=wKRx<{iZw;~|6Gt0!?yX%|FKsU}%g>H|anY{fO{+;^_C)Zl%$G-w#NIAi_q6YH z==kIImGH@-&Ol4p#%W8BaXswIeNe>_4(C6*$UXX*|G?$s8Jkm0Cw{&#(Cu+*1uMJX z@blqe_$gtH*owSF^-@Y+sTMfE`xOMy z;}@$;@3zWY+-|JgeFlZGExfZi#wpi*DfG0)u4-jVXI1h(h*IlE@$P%sKi;L&R?j@{ z*jM_pZ1|HN}Sz|ib&MBe(DtWD>Vwe%bo?!Y|27&aVvrGuMs&FvI@`B#}k zTODjlptFfN*Tw$(avf|fV(YNDSiU9IcCfK^c#BG6?v((uON=mJeQX0@k_;*I(3}yA8G%=p)UGWhKK~6_O1zTrO`at(!Y{t+v$DuY;;q!#jo-K)td}id0yl>~!V&;py;*1Vn|H84= z6r!!nddAomGjK9qWX3j5W97yA=K6M&?~k4A+TWik98y6l;p@US%M)e@; z@nfz%^GW7lpDev(O`**f_VAPb@)B0VK!Y>e$+%W)XBXLa#T(vkL#7Xe)%%yp9$v?w zQ^?-2r}1{&=PAZ>ioJd+>cKZh+xD+p#9>d`KAL^v5+ChhoIaCq^j^?#Z{3kS4tmf` ztD7l>2WqY~8I>QZ#ZsC=p6-`d6qXJ&-8Q{vW9)4AeubXblhy**L>CHc4cMw?kIi1=zIoP?uRl4xoZlUQ3)duNwtn{#?>)W4WH zckeg%e)o6p_xry4&E2UlDH@*`pAnB?Sfaf!zZBJjP{}sLqTfR+7rc+EQ?Sgg+U-BW z4Cn!AM)k#_kfiHHwaeK^?h_S_MWcEVD*ceG>*ysTDkfY%kL1Da@{33w*{-9Hp`!X= ziKt$O3XS9esD2F$$+}zpKjim8pkZ* z^It8R_jt;?)9Z{*!<%EbCyg+Fw{S$Fed%+rv`qK?&9(dUmWw;KFWinB{`JhBy?plG z!up%T>(Z#vdzzQs_*nR;Dl@slxkjx#8s&KVWRM=F2DVFoPpviNZOB-)7M`$|#vizP zb!gOqPmYFub$kDqsRtY0PESs*zjT6hUrfBX)^VYwx%jbND|YmIxqtDR5AiRv&ZaK= zgdg}s(pQrXpV-t|A0zEPcX&cv(~4~=#r?ZEfKlIN*wUd+5n`3IuHvjg`_viitQ_81o8{E>8oNg}tcJCkeJtek& zd;O&|ZS%328UFRv6Lt>8u#{HKSr#mFOcG_U+XNJ^1Wh5gPj?uWGbZE%@*Eh%CFs&T zHskeu2aUL<*o;#x4$|SvgXLObjUP^~DRRm+b7Vm=ju{=F6A}@C8wLR$a#wf)V#sC; z>!N`XJ*{}J6n%9Htm_YJY25m+o z>c>0Q=k_@qo$#JOI}3;pa|rm%l!-LE-RABi0>OfL2&8>M-#a4UtoA{3DGYck{W2_= z2R*^8?huOHIo?<4uLzr?$Yxjp-AFZnW~F*esqeVX5jq7f&Fu@1LS*;Q3~Fi@Sv}UK z_k_*qz7RCL6Ss$UhwWiyq~&mk`ChqFU!FbRX4K~w6|bx*Vp!w_MSy^l2}+PDf>i}b z0E<8q5-+i;g(o?Ql)FLMJ%J$b$WVtu;3f^>aI7L&7)l}(06BuCtUMtBnIm{sWgw7g z#sZ{n5XF8CMJ1@{zA7C`K~RcHOIDV%60CwySPn@Nt1yHjODfOtkP%=6N|D8JUcVb4 zcWQ3nf@Yt`6`n&UT+A)8+l;h{>}n~g06`TEuo)+5p2|>Hhf{OI$w8pANpXU}@K&pp zW*C;^sV=1{&>ujNsAGn6XShdqi-?Rt!~#7|5kR;d*&^ooAqaZ?POrDZX6($mo!t(! zofHrR`5*`pXlEXFcI07#Lvd>zi=RW!Bwe`)KR2hTzJ$mNAv0L@<=Zi?)v$#8Du zDe_pMg|`xphc|@?bt0@tms}1!E{L*6d$@MAYu^(JvP@Duph*I#P#{>V z1PH+LfZ(mX#Y)N&$&+kP^nh0lRslcEbs-)RS13HgZzz0Z*iqR%wX4dZ?gc~`K?(#- zIVnb@d68iWlGO<_-+L1kQs5*3MJLVC3c(5zO#qIg30YAniK7{gWd4J||Jy{0LS{M9 zOPV1?23dUHOr(HJ0Y)VlPG*sbR*sM$4+&1Ss*J#@5=&Zp`sD|iXmOI1XhB}&+Qa@n zc#*M^B+HXl0tk#mungb{AR&oFIfh{^iURq&6{xxwEl!FRX-=dq_s>L*g$yKVl|W{q zvHj^xtLo&E#8NK^W0(t`G4IC@@)m^< zSo9jRkTOTn0ss^R?qZ-?JMuH#)5ILJenja=usP=cO2H9@Zf6>lrXp?Vtb~qU=FYQM zd;UT$xtCXa>c5v$;CSyOcf@ZmUA=VO5d(Lm+#6lJblnjHcck1KU3ZPH_^z)v(1ZST zRiSS)O#`{j=(|p=G;w@Bc3ZzU?BBW)wLIV}oEE^ag#LPo!W!14qsF+P-BA$Nnh-bO z0sNzs^i1^ePO|6cI?IlHv5J})ots>DaDPJi=OfGNg{*YrlP<9Qoimw|w(|Ip2WKYt zjk&Ptt)^u=H&0zU;?DMSK3TmG9(O3d1v$*Y4M<;P0Wqh$0FC3l;bS9 zKHfFMWn9&F`HbI;{KZPexT=k*AMth5#+pS}h%Z;K zs9Mv!eSiAEEAP&$w zdf&eHz2E!pecHOh{HaDmngKx&qbt{01p5)NWhBJG-{TES&%*AHpv0xPT;q@g_y9R$ z1|l(#()eOJ=?qB6#tc9Pz>FVt zA#H;FR@l@RqI(^Mw00%vw>=ioIlB6(E_WeHS_s@i(QrLZQanNMxE&>IJkIhq7VaOj zp+_POsp&?n9m@B-nw?$f%FafEp@5=#0fJOEE?(uxJy~d~Etvi0#^iYFMb_Dzzi4_= zYiX_7ldv~yTjCh&w>4vou9seZqpdXfRoTwJw_V=8t!5jV@ZGNt9Aq;N=GNVMyf%fH zaNzJO*DrFPRE!?#^{iFO-;HtaKNBH;s)VZ>xbL#@@;dj0w!;PEe^)Ql8$_NzbIZuKwxOxkqMHZbKlDq!{bonghj*7C zPp5@`TlLhAQ3#UMu6jx$CGKgw6!2LDIUoW{r7x&C49T2W85E=iAcBgZO!Yg=9fyvY zQB`)BXW87iJD3gTtGU%7P+Xnwk*XI+oNS&r!H`+WLjWI$2xz6x>kspl4zrHSLs}cQ zno*r4vcO?3fpL@_2mzF~&=wrasZ&%eL?dF{UsazA!<#d>}{dqYcsWPvVEGKh7U?hy-Bm$!q4q$?fBQcQ` zX~o9kjEGCUpj`fNMDR;MgM#1|72?Q>jN>e4#~2$$VzeMC7$+(m24ux%V`Q3;Xt5VW zK}dyBDR_HJr9sI$6e-$i#*WdloyBMdQX(x=m@J73%dmjrKom-r_$h&qPk`=JeL@+q z2K{CF9-6`V$%QV5nY7?NBZXceqQC_X^EB08UfDC@QGK8|B52km7>=V@yPd}E3}NS( z9;TTf6o!$gVd}M0pV8dHLuH_01uae?fIbd&;j=?Phy+5OK)~xTcURr+X*WzKS%?Tu zAp#(1cOCY0)nN>W1vx6d2ImgQs#5j8xV7X#Ga)~8d9E6U`&a2h(Tpkv3!_ibN3W`< z5{l|c!3$DUg|M&)$hw>mD>^037yM-aR*%kb?HX6VCln+JCs={RF+l+wM%zUJ6KGbz zSUYR8Bm{n7}Y3Cdo1(G9<;|)PET8|5lM8pjsaIlBRH; zf*LLn7~mYMpFWd2_mF$SYs&KCd+_*P=Ts>(dHp&o@98^_UKe(Xg~p+R4}L}gVBJI zF;QV`u%Hr(!pRf~q-ZVe&h#JXMUv1?lQx)(dhvP$USwrT;Ru$3FE3!jXp)vNmXzR& zLlA5NuoHHIeUQ0m*XuI}3r$}YGp*VYrK`YZTK}sAM;UsZX<(U(j={4MJbGEX&t9GN z3%cZCUY(`?VQzt<{hQpEef!PTZ?5~Yzk{I?>cc}-c%=YPrEl9+1vm}1_yJ07DkXE!?hNJtZz((gYglUJ14$2WB&9S_!>893+t)n|KXj2NEGcQ{#EY7Q0nKksxw?8rN-M`N^ zGu$xyW#bpSiPq*(pO5*I*=DN!dVE1m0e*Uyv!;43JLl|?TVHXvTHk&wv+CMs?=?J8 zaIbXAirIh3T0Z_t%d=u>^D3!*TgfGKm?^z=XF}bQthinEmuj1fnk{B`@#l$?u6PeD zInlKLLgR4LAHF$S-)cxaHK=XR&G-p*BWzgxb7^G-d8-d?9DlvAcEq1=FHhQdyYBVh z^I6UpW6!^erlx@B1mr3a_?zqX=bwCMW>xuy+>?pbN8i~xXTS>y`##vYc;2j{PY&m? z@~Y;OOUEumSK!9Aj#2L)S-M;tuy2oX^VN|_Z*7Q4-d{d^<>(oAD=u1+%v=AF-uTA$ zI{e~{rh(T_*REJQ>CnJ&o6nkOPkPVM;Fvxpd8Ub(Xc(N^8$0Xxn^`AZ z^Ayag{oUDHcj7jQ%aprczV$Km3F6Ah KceZ5BTl#PQf^A;_ literal 0 HcmV?d00001 diff --git a/images/marker-icon-cash-red-light.png b/images/marker-icon-cash-red-light.png new file mode 100644 index 0000000000000000000000000000000000000000..2a7401bebd34c13ef9b70cd4229f9a7fa47c8780 GIT binary patch literal 5695 zcmeHLYj6|S6<*mGt1>1$j4_6WMFs*%R@#?V+C}1J8(YS*9isqsLhXIrwRf-{k=C}% zGeFEUGY|qaP(uhI6A0i5BpJXqCe+Y&!Yl10kc3bik{PFvlq9qSD23i#$;NIo)1d)= zS(?>7d+)j5J?A^;p1s-?MFly@rgRg6Aj$6BtYX*>f!A1LZ}|KE%ZpFJ=0h;kExX;1 zBSv@wH4VKG1C%s9LrfkE5m|e?4Z>b z9D`@|{UQIziS6wx5`?{<9LY<3XYJ1Zg#&Y*_Plwk?2NenYHInOVsX#-8%Y_p^TEc; z-i%zK|I{_; z9lI83EFIP^_Ay?GJK6ZtuJ$sz;%Ce`SL#FFd3F2Qb0vQ_rhU@e(r|9mzQkw$ zhGZ5lt^A-NWt%D0^!`7G%%9dbtvO-N+2(`qoqFyjB2`S^Ikc^UT7djIJ+!4ZZ_lF$(!X8t&Qxc5@;Nc!v+zP-jSzx#FxTF$j3)GFPZ-kh5BA zYHBPslqC=jIg&h2&}~*9HrmyX?OUpD?=@hhsz3xRhoJ3ESFhZpOXTjB5}ItU?mptjEE7eNMN+g0*tq@ zBqlfnTDCcGM!>}`P;P%%<^3Yipdh$KfjBfH0Fk$em@G&T!a?GgfYUO@(sr7b36Zkn zWEY6SkOH%kuk31-1|>l#NhSq5&Db$ovO6%Efs#N=6efv+>|h*#Vu7GTNg_8T5c2Ub zoQjVx2iBm!Tp!Q~=Oz`oU1rjP-|Z=?X)3R=NiZx+IqVJs z$898Qi`uN?O$VVc%tQ@SubujIEi4>#1`^9_c?tpae&`FA83Mc-2zdj6N|(8_>UIu$ z;C7ODmCxc;06{zJu(zWQW4MjOqvmUHo`9stwf{?7+dQZf>cf!dDq*;Ot=<*gQPaS4 z(YxqvrJ`>o6xBBc$BR)H!hAK5bUPtdbV#h={pA2wk65~P^eaD+3ZjS;4jv`|F9Q~% z?E;VSw1dYWt2R3>3b+HOyQ7B#vRcE3z@&1>BjgIEr~ZUO$LN6?+g-b+0%%cygkd;~ zk%X6^IMTsUG=|d}Vb%xlqJ*=Iz{2b#8B)S%RvAn^ZokszR3 zUigrvaE^i=KQtE!UL<%*#wbRlp^J6~6MzF?jBJ-FmX-w?w|9@r&vMb`#R<*^qsYY4 z{vkvW)+C&E;C75>DFLG?-huG~lyF#MDB31Tz;VA4Rg0p{OVAw2aHQ?wxyaCf0yrsS z&`k!T0V838%-CQ-C1jbEC=!U#TH3kOe`XX(LOV^`;9k^=*F%UROOT9>r0f_WF+h7} zz$Xu7!!etUf{zW-&ag6b9~0FctIq`9-9@KWJEC+HSf};BN^n%6%b5n2sc0WOE5W0e zwe##1t6wlA5AqW${SR^p6zy5$p7`ydtB0<8V&I;Xd$OyCu6ttOo|JpC>%P%ty8HG9 z_~Drg3CzmbO-b4D_S(CgoTfbd@Xlgv)=l2W$I_RT=rUK!#DKGo{uwmSRo68)H z>W8WMZzLon%ox{n@a)Hb8k#+KN7-t#W!n;qu=nVZC&sL-UpIZtT=cuqBb{HJ9DHechVTY4VJiE9}#e)*M4H@|&s z?ZhY8x3e?%O`Kk4O8a`Bb9GtEqDQWmp2?dv^;Ext-hXUaC5;Q*IF^2?y5^V0`k}i` zWV%uihn+5+4Nj=k<6kHxtIkcNcDp|=8&)|a|8P=n`ZuG{!EH|ayP$XB z-DgcD6>%pg?srx!9Fe!+`u-7RmXtout*L=8ZV%tHFudRbvi$g_qRqy`b{Gr9on4UC JFu82;zX34_V9@{o literal 0 HcmV?d00001 diff --git a/images/marker-icon-cash-red.png b/images/marker-icon-cash-red.png new file mode 100644 index 0000000000000000000000000000000000000000..ef3c2623f659512348a35a3cc43f3fb77159b1da GIT binary patch literal 5711 zcmeHLdsGzH8J`7_hsA&bA;iY*VxqK}-FfZo%*cw!qHJ`5;8uu@m3c06WFPJ>u%Pxt z4JbZpq9sx4gA!X~eT2m0(c&XMV%pOZ^|U#n)kb65lIlr_nyP6`?KitT)11>|qyEM2 zxqH94_q)G)zu))W@7|rp;=*Z(2^k3pf+X4tY$Z@X1|=(QIQ$-2x8x*Lr{yxcVz+-E ziGv5w)D1&)AZdEK9ytr-C|xuX4Rr&QQ6OtNTFKDGgzHrxKi(t%4CDztI@%aq7lkB3 zy%7olathSHhN3Qu%yk%K?GqRNTB4A!MsGdM?kLt1MjSJe6pY6RlEZNhv*>X%hq0WQ zg!y$X{VURtsLumGhxNUv=H(UJ^YZjQzgJN!WdsRrT=cTF;COLLebJA8*_s+lE@y17 z7gj%;{M*^}24~#fDLY0!W%_FAQ;GH!D_^@b+xMC4%`2BK@7%F;hd%D#FYIq;vf2w8 zZ#`L`hELjmaLtVm*b6mdlPaC-m8ugu$G-Q1#P^iI4&ip{qPV=4jHV58hrJ}>@YSnN z=nh{z5qjnBp`6mUoA;$BB{hE3fw?ayUf$q1f9YV+(`{>aj@mN1X#M;8Ynh#?Yc4X6 z&KY@q#?g+gU5zoqn`e(c6T4^a_T-|`(|+jKcBlM|*mNV!wW~zjHR+2HnYD}L4Og9+ z1w!)lm-JI|6J=+4=F|g)E9$9D;}_mJzI(3W)hWA)bT+NHe)ze6F1>rS``qmM?RHbv zTBLpMm@e@6v9xUQSs zo6g+%3G(9%|K{3fc0GY0$z7_mELi54!HHhCk(a!JYz(=5n!}LnoRE(f=gC36AiGqL z)zE$5ZG&EwtcFsv19SND-L-Vr8BdQJfWVlu}q3 z<;^UC3XDK0W(K1LOdJ4Z_XL8xN0c=v05__DqmT@Ri7bZlJkFvN%Sb3gPz*|$F-GPk zf>$JI07Q{rg{b5!2d+wkk^o9l2*EEzP!fqsqM$G|Ba^HwgrOvno9gwu zd2pxd=3TPM=W&HQG{U*uV!PEq7_t7A;z~ZKzyPaZhU%#b^>;W`w>&e*Yi!~)%aV-6 z!kTf4q|N4jrCG8+0FkI+hI41QM{^4Y#sIOr7N-CZZUE9W_&) zA9;#AR;uBxq}PWx1;>jK69Rm-9B~$4MY_Za-s6%Xd-Q~BZ@c;pp&*JF&hP|;f+9mG zSOgyBDTYTG3uCrmqJS|N6=tCiJ>XS>HN0QWbpemS6@+K_gwjt4J1T3ic1?w>c>xGR zF%~6oCr)w%!;utU2XCT;v9!QKbP_ZnL9`15%F{G~ijss2G(plB`85LnZxeAG z%yPmZO=27g7C$r-abCoEQb9>tq`*WAjS4a&qqJgCNS0Cr3bPFM%eOMo?8I=+3|^#r z!u}z6k+fhK#b6ecXGsC2NS;A?0VK#+BuSYiNoMX>plV(;J8_C5XpS&HJQHb3CS{CJ zP%x85DVdf~L7~l%P;o_JC6bWENG|>Mdof}nfor!(Gwj81@_Gnf6v2rCCL;#Zb(B3{*>Re*T&lvrXC+r8mK5oBk^WM-&F!X&_BS+TgAPS1(iF z-K!^mflD6brziD4$SL&tp-JwE-yyn&=(;Bc?n!wlx`ybwCkF0Gc__N>8(j(gZ*OD| z{OPKJcQYLqGT=oXGF+HG&4%37zAcBgt%H_$U%_($1Q{_}D>|fkV>&d(2JMdg*sc+= zDe;!M$2OgXmv@Wowp?e~@lTqp)1z~f8n#?p`@1I{;}T{WD){9sO{??u@o~Z@-EF5o zICHXO*RDUFd*|3+g?}`)KGAGk?l^ty_WUHryT?Y{PF>w#JH3D}chxl1C@xpp!rPyH zczoF-WAA3fbWC5__ILbM>sLn%J7YRlzp?Pky5yD=>{g7udfnFX8}1kzTdP+rP*=2; zB8kBhe{!Gl>`^mcY-r!y_y>pM!(p!Ct5ad%sGXUk8QL^IcKQY-m);#NmDx?Z*gP<_so+ua?; zTw#T0#F!sE9Zy`CwIv1Lc5C^n3AySU!^ix}*ZIO*rR&iAskx6%F3q_fPnG{=^18I# zeUsaUZPaaRsm`!;j`TJkAc~En_BQ=_V(XEW3&_P;Ma6B4H|EqYD7;>C_~Q6mEsd+9 T=D42+-yrt?ZT!Zl8>GHi^PdHMT#zZ5;;G(GI?tFOzfL+fo$J9&y~f66acwb}q1$)JuXTT+Tz zWNCpo(v^pK$a2B%L*DBzbHh6JhUwtbtaZ$azlAR|*P1U>-ehdrbS8hazH{jHg4F2F z$h3f^g@pFwxh^?T&T*N~+~WUf371V)$j|LZnXeFUcsjXF(gvqTWnYm-@1?GBw7SFQ zb3)0KK7Ll#WE#&`d`uKTp@7Rauq!BMhj(9WEF-h63JV4#mad@HA`c1NVO z&x@zVugz}aN>*Ek=@%?O9dyt9>v@~1SN22b=IE}~1|8`mbCpw{X(uP9ue=i9TC}hx zUTd;4{fjdL4cF6e2Xw_?v0|Muq4wOHSk`TACt2D(TQ6rgZ1kGNXj1R1f>wK!;U8LU zl!hM$-TW7)krT>JBaMyIpK8GkGPz8cB2?|=k56d(B#KKjvMv>Y7?krv*itrY4V@#5 zbAq_SNZ3gpCsH36!gYmQ1aV?uDLN94;tLp<$1P_uXg-&L38S#^ERh$yk?)r*hJ%y+ zLpaGX92yt1!p*={P6q^WuoObe<6;F8x}1U0@X~>;?#5xz8i+K8fnkF<@)C++G}(#l zgva{G`H4h~n*rKY%;nM7dasx&bySa0bCk{K0%9ymE9 z!V#SCxVSjn`!gg`pF}`1v!H)FLlTlCf^lnMi7-LTfqfETfpp3H6kN{R`Jx1ItY$l0 z4i1im;{a3wyb?ZeslIVU?Jvw+wiAfu9pSRaL}>=pg3~<$nG6ik3IDDqFcy;XzytV`qkAs7ykXlWG zGmSzbxR5ARJdFez??9ojSOOwZ&8f+qni2J}(7|Sau#h@V0fD9;?1k1HfnbCu9&&8472oarq{phTFfStsC{9^!0-1W_=^9y8(krl0?B zLV?30(@11I2}>lvkyx@b#Kl519u*4_AUv5sCR3<9=tFjikSCQvV%Q@J=m@j|;i>tC zLfdH$%Kk&NY$L2b1t1s}PXkW=uVA>D4dc`~A9?`PpPYP@zMtg!B-ckN@KNAT(e+8Lk5b^Hz@MV)zb2Q#yT>V5 z0Dc9@z{Ap(<)`exgVwCb)xO>cQ-le^=r8}dsh~$+9wF@ZJ-asKYzVVds$w3ej!d1J=!_yVgM%GcIjl0*ZoZa1 z-uCs4jDW7$1mii(7yEI`N@qDbtgR3AXv{Nd+pnXq^S$?CgTptzUR}$&yk@H>i_XkG zzJqHcBg#f@PW=`$CAt&-wODjrL#9Mi(u( zd$@7oFWavcUFtY$k*P>{h0q<4b~iTXbXi3o=6zX*^xu0Ct9X3BqBuQB7tOic84+U>o*bUTli< zu`DZi;5Cv$Jb9773T5WfR-7PNREzO6Xly)L-1Fu7#&eV1-!`0`cxZ4zy`zx4)l2S< z3_sI0N%)74O;W>58LvKi#+;!wO1PwiH!X>LPB0m-UscZTf4fb?d57k8|_b z+;5Sy<~y>VI^HuZtJhLKyBaY<`uWcN%9Ei8{PUqbJVc=`U zyz`Bug6$8L;1d~TdPIDxo8V}bWR}^Uc_e*N>LhM?r50j->MKP;Bg%6#M8p zy_1~QagU~Rf15Nw$4}1n9e<5f$@>-*u1Gd7GD$UZIUrQ5w5oPU9NrmgDR^*BfzEIA z-SY4vw#P9454R1@{^zk59v$-A7w|V{INI`lWvW4s>Luwj@zyHlzJ{wsTU{P^0&-uC&nEm!v;;mcQ%`ZAPOmENj`f z$-!{9ho6^egupr%6YCJ?^F3`g$MEzEFX}7f!D9w!Ro#>91%|(x3MyIz*t;qEh*tSa ziOS*ku-E3!bD~e&DKke}Utd7Df{z&UD16hJ|;$j`cuE=di$9kPPyZ1i9T#oe7-w%pz>kJz1*hZ(s^gM4V9PF zyn@S`C-f23#%8I%6)48KY!9E5l!aevxVHOH-vLFKwIjEE&|xu?;T6iVygRlrYy~py z&{LF)_Y*PkT7jqK@qkOS3Uu_=rO6Li=JxIi4v6@QjpXl28>_{KU(-;kM7n-^d)z$ zzjW`r4TQcsPz`*9slqqeK9~K#_R>DK zCHQBw{p|LgtkLLfg~jsU1YgC|q}8>{f?f!Q#<1i?a0Gz3WDF z&DxeM9$#hU@nCAWDL?2JQ-rClYN0Y|j}W#ygz@HPm4%pX`XY1b34favM|U<*tmkm9 z*@wFdqhc)rm(Q<@Rp#g+bsI^}UG>HR1+1FSvk_^+mrF`VBU_6x*E^1E4g&sB_S9y} zuoh+avtv&EASa^khnJU7tE!$gRrvw$pZc&mViJde+F`&9E=wx|^Mwne{2S$rQK-4h&P3BJV;Odo&mBc5Mp{0pdz B!9V~2 literal 0 HcmV?d00001 diff --git a/images/marker-icon-misc-orange.png b/images/marker-icon-misc-orange.png new file mode 100644 index 0000000000000000000000000000000000000000..6a798e2c02cf186f7c73fdc5114c2ef899e45e80 GIT binary patch literal 5913 zcmeHLc~q0f+J6JcDpC;vl_dl(0vfVH7C>2ruu0ivslFs{VptML0tt&0M7W3`a0OAo zr7pDvs^z+X>YB_(mGDZxcM8413cP+SPywH6q_8so2y%nrqp9ECZ=0Oluz$9)d*Y4W?uhR2 z)NShz5LzzoqhxWcqSK#mjy=2@DVi^nTsy6%xkV5*GoLHGillKeyF?Mks2-cN2ZOlG z0J7x>cO>D64B?bdOdAQr~NNo`Na6NtzEH=dHQE# z<>rs4ZEP4ne=BWZTVEs=D^U1@FR#;&^&F755T`!a;An*e&fe6TO&ETi(`cr){5QF) zmglP6lseI0&(QX7a(Y| z1=#|Rb(V1BiI~l*Xd3~GP4{uyx<~<9wwPTaQ4Af26N|+bVv+@4z`+q{G#U<1#1V;D zfWQh9cp_MW$7Z#)!Cl9$Lx?hx6k^wipZ;N55NNbd0Cx5km4L&Ij*)o*u|GnJxa{|0eY7^|h-^C_E(EwQ@qUDU zw|5yBpgcY4PJCvZba@OXTa0vmI*ZTbvgk6CMhdqgP}yuOn?k{3$t)`xmKq+;##-U6 z@GynSVp1uT52zSCp$O(N5h)cQx8MREghI9?(bx!>(B2qIC+Da)O*5$Une!DfK4ury8qfvg|wh3+UoU=d&7 z$LB}cVwSS*(y%AEPApgiJHa9ZkS^t6zjt{Uizn0Z3k#6adGc9YcEbOKmR=sT4ZwpV zcjXGf{0XwIg&XCI#4fZJno(TYRYId>mx2y67q%dTTjQ)ze>jm*M_vq&-(me_@Swnz*M5PJ^L5oiU% zQ}zvoHkBQe*~e({E<}0?Krk$xh9wf-2}WBK47a#poHS>=+p!Jqe`#VP1ALHVfZswN zNM0Zp;+B%(qGn*d|IOFpS^PJrK%+lT@=5xBmg}=zpQOMifj>vrXSqH}flmT|j;{YV zxm4djP9Z$-D@Y6;md;r3GY1b^is9}qPS6*S2BiMPO9wn9Ln<+@+l3IMwn|!1P)V6C z=u{FhJe`#$R93IlCm3iw*Z>?aGo0-Gf?AFShD3!1t`3`sooHmY9e8@15!&a2;(0Sp zx*8Rj&!uO(?9HE7nXZjzm^Xf@RgkCpg{qdSW|sCh<=438mPStH9{&C({c;uL>>Xmi zG4&j$ItE)`=0xRj9ya#SO7j>d23y+8D&`2{Y0KZIE*MUHmARsSUHgj{#5P6OFAWb? zI&|Di9=p<1Z2jQhxjEUT4(SXzwInHj|~s%?TLFkEL-g?4-I6=A=wsnfW@J zG4@B`iT?`#>lRv%n>BeLb$uPvweP4#YLxy+;_ z-;79k!@+@Z+6qyFDzW@#Ei|fmvN!j;mCOhpefYBO-#0GsJyB58)55j&`8aL;{`mY~ zH{wm?f2gNICU$xiQEjY_$<@@x^zbV8$)Kh?*;-J_+dIe3uWB`ZEuI@R301hL*m1G> z%Cd@H`HEhpW7C=bkJ9}gp(X-K4KHS@=={=ulPN#ayU{V}01A55!qiAq87&Hvw+;=I zqnBTbPLJ7-Ka_qYgT8i-E-JAbi;`TodAUD9dDo+zv8y-uH0OR_THyKZwyn!w(Tbmi zt=k?KpK&4YF!fDHNn7*P9(ekJOTl!L2ArUJhSI|v=~BD%>wWq5t`-HcftQm1{Jqyu zah6Bz4)YPES^@3wCe$xSH8~D)m-8M!UbZ}CCS?B6gdu-m)_STXeTQ}0NJHJsG-*p~ zyJ8~B!j2yK*WpcRrJb;uj}p~5@s1c<>?f%3E8XdFQhV=kiq2+%MADT#IM=H){B$0# zJ&CF*iX1)YHe7e8Gt1zig5IpnIu_1>uR#F?>7tP zPeu&}WS?teQCX&0-gg@1?Gvck zqI5lo=(*)+3Eycb9=Zy7iR~2WK@OM6>PIY2pp833sO{0;(!4q@zEV@E?R$OVB@y|9BpO$A818!fa zv_~JW3_(E;=I2l7Ib~Lzn|-`6O04$8}Hu^Els<- zd2N+LL&2J#e>yujd-3n~Rp-6BSKZm>RzwXy^mUSQ+#$8Q*Dnp2VlsVQb|ju{Jf{qK zd)b6(6n&qedToZD?eH?;mO}>G??}}csluE$o_h+{;JYEyx4)Co`h-nxy-^GP;MD2= znc=kO^-e@9GMh}BoPaA2M&#SSOi0}ord*vGk#BUspOr85_?L6*z(Fu}@_;kc+&9@DTREvVw|uBOJu4vXZo;Npr1ksGb^6&h zO=$)7;K^165$PM;{q?ItNo&1oGuT=NZvOgfo*i^#u6lgP8L}Ikdd>~ko`^KtTgtb_ z?G0&8#yXcwX8-u)=DO|+xj8KpZMi6~LTxkN)|<)Ocjlyzhk}MxtJk@?E4@|V-`mG! z{(~Mp7TlO>$?w?4tRw$WKht$Fzk8tT4b!*afp9c4YxhLD`Srr*&{V3xfahmwG}2Dl zf6{m*q?_>Io|;?f@4~n}MfWoYN{qtUvomUeUrp`3U!eTlzU{|Rih1FBh59Xdw{+v{ zNBKHYaIV3cS@ literal 0 HcmV?d00001 diff --git a/images/marker-icon-misc-yellow.png b/images/marker-icon-misc-yellow.png new file mode 100644 index 0000000000000000000000000000000000000000..f38a37b9b7a4d0c6e2ec53d9f1d1a9efe0c80811 GIT binary patch literal 5906 zcmeHLdpOkF`kz4?BiSyMR4$W5HTS{HWRwtt(S!^NdoJH$TxQ11FxV-&xKoMR3Dr?s zg`Cx_WdY*IsYdmY#`(5kve%8A_>s>EjDGYZf zO@sjg27_tRoE0c<6> zGE5otiJ<8KTaJ-81Na<8pAPKBvvxMH&1W%6z{bIqV49%M0}T&sJQ)`#$nL}BJjuJ2^1`ug2x%-2oyY-LLdM%{MhG+(j8UBD} zH{af#L9@3v7Kw#Cei#IUMd!usr#fFx}&8|3GF|ARJHq7_!HE zsT+E7r`scmXvUmoD zaO-I*JXdh!w8Pe$TxLT7Qw1AuqN2U;Fm#jVp|iB9le%qNZQ58#%cH3!aUm`2_>HES zxU1zU*2zIu;k#bhM*K1#${Ej#zH&lCXRX+ObUZ^+46j)n7>?@Dz2vqt2iPW#A4ca* zX?J4wyP7c7)0b$RTDR-@`}*mAS*7>(kTzFDL&EUFrU`xJ*rN=z`pG!qDE$LXg$Q}yjJI9J4&scXaPHZTL z%tfxXMc71B06{n;Wf@0@hY2K4VZ$s1c%mYMrBV?EgOSN(Xc+-56bE5&WHK3p#bfYz6hNRPF#;(o z8YPe{lT*xaI6xAPm@ks@g#u$aCyOnNlv0sMFmL=ZzHkwp{)t{7nN9Q{=xSUV^qDXO=Vmn+81`311 z0aOB3#eKD;{KkFqkV_E64;LxCfY@IlrF`CJvA&8;KBL&qmw^EHPrP5DKki)t1}Hk6 z;vnQi%EO~MP?7TWDO@3k&!s3#9tn%LA9QG))KBiOZ6*99U8akbbJeULWf)3QMG5XTq1$(S=+-FXlg?<(J3U2H?SwJM$%A z{TRj2%#HGdB4(au9>e&Gt7L4fxD*r?XJ!i$Rusfl#0j`&rZ~YYK@bG0$85TO9OwU= zRItW#2?QLDfMRh;)+i#5Y>6VX<(4%8$HwBx5SPvVnq4B~No6cCWETW<1X_XgRQ!fA zHdh>!#n)(AFeE<(AQ%cuM&WTE1tZQ1hMCM?$`$N|1_~t0KOhraiB6H6in*fewGzU8`pR4(Y{DZeP&2QR4ki8um4ro4a+7!`q#{E?2;`A2= zZTg6q;K$Y{8Qn>3jpp^Vj7eVlX`}UZq9YwBz1-Y&_W4<=s=7KoKX~YPZ1pow8S@AgW9@IZGqDWomkV6^A?>Xzo#rlyI3{^KSx zW|no!i&$9AZ(U(g9~$ZJ7Gwm8tTtRjqT%O`&2M1yw?TU_x@kj ziD-=LShs6+-KqJHV&8W>>n+e+bUfuZO~(1bf>6x5O~*VAU&uN9*_p`5(hZcNt!ZO&e`aNo+;JSSrhy)o8%kP&ZE zJ{rK$o$SA4oF>smRxUqV4&TgWZ%Yhcqjf&AY3Nm`-Ma-*+u!Tor>+_AY&bf0x->36 z$r&#k+PeGbANVbmS|KMN46vDv3sbs1YSot~R{80McZ@c_*yXx1q<^YxliG05uWjpo z?wYq_e=>kET?{*r&sXV5)YOBmwel^?bG73Z8?LvgEs>6Nz4pyzbzku9$C&D+k{#{^ zg$*KLNDE}XzQtbBKecKuSX&D|$|qz6*#OzXWSsAgr; zyWZ5=@_U}%JZ(kHExp$$4k&U7{H3(v+!gz4x2{&{(+}*8tGV7cE#5u7m69e2f0Imd zSymP?)v9_?=(*p`?8@nXUJV@Bl%Fx=b@3;U&_2PTa0yythKXoY>2JN*2*sYNB8#3Lyq&X|?)3%6Gem2M1sGIf)> zcs}2wwy-UO^$k!)_bhcIO~ZG_%%uFdxA)j4g9$RO+5k6^4U(d z4bZAMq+0s>fxj4;cUrPe=>GD2u0PepY>hp;tn#lEasFGshE=C@UCw}#n4(iUk#$Z{m2J=c4xY64v|{ZjP2|IP!4Wv|owx_moT zUe+LuGA!4xc>18U(5Fw3ICex#?#TG{7+t%(WKs9{9Ru~dE+y^ew)Z0nU~{*Rj725{ zxm?X)6f0$2s;E!!p5sz@i_y>AXt*dpz(Hx>hSAnDIX<1C3l6M`((Al`EOLMBEstU| zcbivIr-B7j(PP&imnXk>eB!doOHXL|;_ly9#?$|0J$H`#64JO`xUUWj*W27(5-Hi7 z7KA8Hy~0&~c;;YZ9zD;hb+t!NzOL%L?F?N~1Z0ZH32|C>1C@3mq4l~*FV%Z(6(Myw z4JQ3*$NiF`O%+)`ov**O)5oBo)3GA!c1ZW_XXoqu$6{RR^M;M)mI z;d+ZbZMMt}Sq#QTO)$lzEA9L9ZI^d@2k(Zu-<;&@$l&={Pxs_2<-BXQmCrRLReL6r zl7{Y#d7aKqbg3x(lain0fjEiCcHuwvh}$+jFc5vq6xKN2+Hkzs?GVRCSDLr5ptC_r zHp^_YX#Im)H|QU8vZ3DIzD2#srLZl;sr~Y5^OKvpi-;>xht3SS)}l*tRetxJAaq@_A-vle1P*8Pt=*eR+G|0k62}!s0d^ME{uDoW{iESzbo9Tl9*N zaDDRYkwYbsOu<%N{NXol?j-FO8;sU&dy;c^ye##>?)7<_othGtr|OK0cHi@jl)f23 zhw2v{z5iBVRs8naxw+J+mt(zm-#@9?M=H*|kbA1aVRT1E-_h>v+e&Sxm8Vu{*sR8$ Sn=AkSBF)j=;q3aKcK#n9!0x~R literal 0 HcmV?d00001 diff --git a/images/marker-icon-purple-hollow.png b/images/marker-icon-purple-hollow.png new file mode 100644 index 0000000000000000000000000000000000000000..7536783b7ff9d9205166fa6fbe9819622704a865 GIT binary patch literal 6326 zcmeHLc~}$I79SQtKt(pCs5Jx-gASQVCd;It?2u}dB?>B4CX)$7$U+tfs0a!wD!3pO z6&LFIRH#dl0xG!Rij-EZbuEQj`&uooU@PLg35eR)?|YxG%U>qn%{_DPxxaJI@1ApJ zGWn5{!Ux*A*+LLBP#6&s4f^*$WAwKIzx726nn2e~#R+9Xp%2s_TmVfoOUMjJMm@7$ znE_;TGYiN9^ou}q1hP@b*xbzenfm2G9@ZHWBHIW4(-tYKQLb!_0^E+|!>8m(L9_+ssl=_d{98!OT~ z-%oFc%A$z%mz}J!o7{_Mb4xCiFU^U4yw%=(LI1OjtRFlX{l0jhw;wsHUE+8C*^SL) zz=atD?&qIOm6dQGSUqUmp-|uQF5I_zuj6K?$tAkL*6@lka8_HqZd%Ja2X@gW@4~^$ z8hoeLloU@aFs$eAo-Md-cXh~~(kgy(v0L)DMRiE&mDrD~CuyC9Vw-X8Dwo^(kI?P66%9+U71d%lT-_ zwDi(;^0a&t)ScM!Vf)iP0~0!m9%qIxd*5u~_4)>VcuYt3`4I_E&#n|*E$+hdg3Ju# zx2n#W1y=Ec8a1*A&hOGs4`%GaP!8xIWf8*fk(WHP0rNvK4*(x2X5TSuqKrT+9-jtCK{ zgQ+BWM5cy{$($r6Gm}YNN*_PY*3TdS018S+&Ieg@)Or{pdN4vLEvb>Kb#j%GX2c{UD!tC1P6zX}m-|zwMWQ}< zrM8y^zz5SnsF|oQ!c-`judmSRLel_9?}q+xg;t!QrkK%`R;AaFRA?Hd)OoxPAtn3P ztM!@`lRHw9Nu^Ky5n`XH4$Az7epz z5BCl2m%f{nftE-l2vL!G=4$E7$$a7h@&NfgFpI0X|NoCQnx z5=_S7BU}kWz6K>!YITH?q>NAi+*b~8*b+XQl(A8m%R@03!?_47k)aY8BiJmQgY!ua zPP_&&StAEgNu<2KD`=&)8ouq`02qAP70PU;8;+J(8MmPebXZuDtkxD9;W&AH~WAf1afIc|#2)P#6 z&oB-3WK;~5+H=)&nIbo(5{+g`3IRd(xS%D{D5+_m0IO$;Od^zt6sR7(;reo1{s*Bz zk_gHtSO`qWC>+Lk5&|YLJ^}N2d=3vGB?uqE-bB}`WV&=hLj@)R9syS%JWY2f+Gx{3 zG2YZpPoj*c00@H-9A=?nlr3QK1#ApPFe72izu!eEf^#J}h)x!lB?ZwgVZj8K%YsR% z6qRs6{2=V#5%_<*h@!wPF}O*y5dj-`{ExYa5+q8nWiXpd8WWnwg(Vc9g1IuDjE!S5 z35N6}M_-KmDHl0n1Ql?=DRO(m{vS9+iihz@K34{67LN^MEH)q1ED0Bu@g;nUMREx~ zkNsxo{Ye*5Ou*s^SRhbMnf(vAh;c}g;Ba^_f{?&P9xjD(Ov-_Agu~;bD9$BVe^o9T z1C{gp;??V-AJcgMep!9|nEzFudK6x};e#CR83PXz;JJj^_h8bS+#u@y&QEV${5wt1 zXzz@?6~FK3dPmn=G4NK(@1pA+U2ny}TPeSbuD^^f+gGnPC?)tuk`7*66tRUe@Y2Id zG9f$!dSU!-IkK||jM%6nrfDI_&dJ!!p!KD$V9;786op#fv9mI_9aI0S&m#!3JS_|f z6vv$?zcL|3JjK=e{)=Cm)>X5&r$sJVkv%FcFf}|PDa>=Mj=<1!=0U+uZO8o;{cY?% zIW>5{c&|%=o#R~3OM^YQ2bzoR2e>(SCD2`Rrl&AAj+6b+v{5_qPU#o@4*ASO6nAFa zdi3;Wdsb(bckGr^{L85sE;ciZ_Qh><^i#Sh{VrBkM4q3%zquuGqXo=pwxcPn$$`O1 zbWIcP*s?eKb4KJzZVBl`0Zb^d1uKQCBkbq?Db;V$z;o4evNk0oY3PZ_YSpDqp!oHD~q zIj7@7_@t(wN&5Ji6jAZLTkH?4uYz~ImvHLDjITIHTx-tlDik<-2Z?Uf0fzLuXk+U)DW~wuoUJJwWKEYHX`Hj@6Zp=kr@j8ZIR) zk?7;?)=n1oTXQ9)sbY37F-py<0 z`D?wPI@h7cZ0j$7>Zwj}9coseA^H4bnVl2E@;Ew!=h>0-O&DtTj1&0H!TgJ;C(>Q} zuVK;EN{8y%jq1c=eV2#Fxu7_;xNiNAjD@*d_iE=BUdw#Awecwf87CcKH_~nyy=DJgCc7Vb+uX#ujjW-2z}0u zn4?N=Y)Kz;Xxo#~cB|>re2~YA1*xhVF9M>EK`}V(%Qd)hE>Vc=Ot2^ChuIA37XJ zTdKZacjd+6uC3|Cp@A{$(WjweHqs?p&bV=D(Aru7hLQtAc)iL5}z$&}x+jF)o${Mw%-g$-G{r*q)rZwh60blRh6c-Ye?c=ld z#>QpyKJxf3F0mjpvEl)~N^zw8TFxw=sK5=mQAda&XUtvQ+zLtzFAm+B`Vre4O1U)0 z=5$sz-K(de6aoI)I;eF8@rvWz1~4 ztku8rP-*ChpXSxpy}-SqhdEAas(RvAv;S-TXRf*VohRu-mYtOdQx89CJlat4>#))7 Wd3>*k=Sx79gM^`zLMnn17W@am*SJ~$ literal 0 HcmV?d00001 diff --git a/images/marker-icon-purple-light.png b/images/marker-icon-purple-light.png new file mode 100644 index 0000000000000000000000000000000000000000..854f54f495c46957125c1024db18595c0507794c GIT binary patch literal 5975 zcmeHKc~q0f7Eg$*7AXRvD3ZpF#VlVIvdAKmNFoFQ1BBf#$rp%_g(Q;14MoL@xS?pV zih>Kpy-GczMOsA>70@amqNuo`qD2(3g8C)_xA%I^JHGS!pUIib{bug{&Aq?5bHB{; zu+Sh|8y6cC3T4aVvLir00yGaR3-J5fx~w|TT||UDDUaugvH}l46Fmrp29i+^Js^7k z*$jIjf_^h-WFR|&em7{cW&LZN z0J8C8W%|<1P$rG{eGrcyh9wgq5`jVm_9QZe1wkwl6$=Cki3Ksi`si&RJu)KwxGLlt z@NbDMFffc47>HG=l~P$6f7*IK952@nY}=ZmM71P48gCxZiK%Kh&AY^z)|V8KVt?oNbpO^HbFWum zmPqqUrPD`+(axV8>mVXjdRio1T8-+n632^n`E3j>xy3y3^!A;{3AxFJt-YFW+|Ada z{nj$-w5M>b*uv&AZC!7bebffWHcgxLVgk4C?Cj=y^ty4&%nL_AhYAdBRzC|LiON^R zG>0uOS-w4Icle1lnwZUm?6lzGEOd!+>`5`Q^ zQci#+N)bZP%T>k=L;3jYRj@b}(PBkNvP|KN`}24u4l9%R;-YDM5?>XFq{z5))X0oE zp#t%oR54S6^Y^py(X#-69MQs9y*y2!Vd;HwCR`Sfjl)D7)}*3M^~DK69tA4Z2$o8q z5=eNCUY0?|`PpE7)DkHxf<1Kr0zCQRQnXqXi%8VzbOarRpj0OlAtsYaB$0_^G9GB) zH3o$i*5ehLF-C}f3^t+>t7R&!OsT*cF=3H%w$>Mi1M}GT{>fE*{s(x4W`G622T>2J zh!BB9l*@^qT4=PK3;;6V(BE2U1O^pCj6gKX*=jMu$v_m^F`q(6#2@Tcv(;&)a3o?P zl7`5Ess^kIeYT|W#C@trX8Ty2oSt;*9IFBucSN!ZL}Flp#>B4*&J-Vhnj5Hm%1I+G%mP^l0i zp^83%;wdy*SRqD?Pyn1D130i0VNj`b7%ydbLwG8MLd7!}QW#H`!epvQ0z(X#`3b~y zwG3n>oc5_#Mkon@qKfEJl87$COJNBePZd)ncm^4f;%Q8Xf`~+78l6fvK}p1{sY!4_T!>6DTmNxFAd@3Aw6Kv)$eYQ8 zXfzVUgdi#d>R-r&7lo)bAQO$4rrK#TH*O0H1OteLjd=sZ8_5 zeW>hQhj= zHp=63ZCwgt+yy`wp2WnHApt~Tkr{xh0m6v?e27%Yn?d!aOYjnJhB4bkG(1RJ2+v?j z8Dg?nLX}X(pF90OhX_F+tbfmmfe?L&#2X{#eQE(6&_0D*$q)eFi9CX$yZj1(n8thb80SdC>nj)LCf;zaIsBa10_~DEv^V9& z7PnUOhR)5sp>lRQcc}Q>d0Z`7(EX#wz5|7YOpm#FeSIfWs}J_MtDio_I5>#wVyBGz zexXHJWG*z^vN3DL!~nA`8OfZic)Q(O%QNq{R(5c^PWEjLT~sbO(DdZ0{#0SdifYb`rGbPi#mI1me(_8v+8O?T^Vr7q98@Y;!M;3NDW5UY2_E z2&z8mXje?`0@1uQpHlLZJ6B0}CZ>`+;L|}Z~B(* zNkWnQ=k~>79EMGpFr;yePb4AkWlPqw#Kv*;>akXhF?m&&xkDDZ?AA`&RlK7iF*IBk zH|Sov7@xj=jczwOd806^GzCvLwA`>{X7st{P9L|oY;fzZ$IkjEB}haaSi(y|vqgA; zP0gY~;($Pd&(Ig_4xb3?V;(E_(inEk3L?yhAuEhzu( z%Bv^0CZDoM^!%MU-Tsinu%pC`^aQiTmawg%;7)3`*zM^2l&KYO3IlUpr*WS>k_Zycn!-Sg`L5d#7TN|Axrsrk#8*>wt9qhGDGZdDmmxXFhA+@Wgx1 zq@s2wui{FNDT#_<{tLrwXi3|%UKjuN;mudo4e$0RuikyA^FiFNFYZ+S!5xoflnt*MIhd0_Y}>}| z*sk7foCN#a$6in7Pz%;jT|yd0H7%(4&8t$s_!-8!Lb2+XRf}uB8ya0AY#zE4!*LIc ziO%;QzA(A|-AmoN?ozwP3*ZJOtZ1C<7?+l26&uduNqpJ~!N0DL>(UC9>DhZjO3NMzm4tnJIu~m$o44zta}ojCnKY)`gCmOw4q` zgW%HcVUahs773Lyr(loHSAh@wGEzrcPabi1q=75{j=8{&+02Sh^B7xVRn90`Jw(!e ze_71|4K&`{Ka7eC|f<^?x8SKD*vrPYkvzNWY= zbnEr;#c@e5qKj6So!@!Ia9BrO_$)iBe7(!7*NyJkd8n$kLie2)p08pWlW)H3cH8N_x{egXk8m}Npos} z^VIP%74Gqlcc)H2_NL|TBinS&F)Q_{Ihyo(WyigPF17K|u?5{T$1Lu?xK_Hqy}6=z z_;SGZ%1N2Hvm0^w3@P=JH`TgTk?oJNEwaNrFpNjUTyuJW>hsp0eq`zg@D>c4M Nc$`r7{wXuF{srcJ%jf_A literal 0 HcmV?d00001 diff --git a/images/marker-icon-purple-small.png b/images/marker-icon-purple-small.png new file mode 100644 index 0000000000000000000000000000000000000000..07c726bb0f2fb4f6a1a54421d4ec2904018e84d2 GIT binary patch literal 6448 zcmeHMc|4Ts9v{g`N<>oBH6~jz+dKQ%j(tn^qLkiw=N$%Ph8YZ^XjN#BCP$@kJ4L0m zxkzNGR8H!&DbYnCbfl9O_nD#X-t+m~Pxsz)|7zy*cz*Bm{C?l(w?02JlkUC9MO{r# z4THg`ySY00f_XL=^HqNUe=qJ#yAGzCXrLR<&20fj6+8e=rHL3NK*{-(#_9Qho}i?R zQ3mq{Fth+I=aCORB^AY-0cibkdKaM0#(Cs2WTgohbuj0G0Regjn12R?zj5rWNm|EBh5|TZtYt0No^0Va5>PheCE6=YD zy62rH3!2olnJs4m+sO_*tDza~SE?wz`RRD))MHc(ugUy+~ z&dHk6A4*Q2sk)Eh*|;4)Th=|DbV5Bi_$)0!`PRuQ(tHoptM$?e*A1Dd* zT*yX*0s_nxa!`U)Ad&|RV`VE9!AJxu!E(@0ev~z?zq|^E<#VlZOK6@XPmu!}#&=DO zLH!aJ`6G!D2#brewNbN@vH^eqmB3i3ATmnKmRjQ!xNJbnmx(y6f<+QxjSB>M_sDOd=7niNyH$ctSjdAdCqml36SkkpvMT z2oE^$;)Ey(EX7BO=gA?)FdR`a62lis_`)cx924dUV zsW69&5Yb3f09eJ~RPt9x$}8@Zgxm$8e1S+I1)TjAr-aY@?5wYJlkX_Z`BD)e{t5Rh z?vJ)Bm;slkC)-ho#LCrkbF{|E&u4Rm2%pPVkW3brg~D_MPi7%xJe9{n@i2`A;WLg=W_5&7LS3aF<2xB;h_{3 znfV2TR}3FyB^>#sR&ppVfa3BX4ueW(;Hg{&6F>oqL*-KNT!h18(wP7XZ}J+?!-N ziv^J(a4JNjvY6!0OpDPNF~~$YrsD2Y?8w8y2F3u#!ty)?0E%^B3)>+Eg(bomf1xna z8u#he{j}`~%83h0U`JSj0?<$Qu>Z$<7*C?HNn`5E;XH+0J}=?lam$MbYX$g0$X)qj zaDIYfX{@6B(CD$JvByZhqLi>$MNzO}WXuFH9EWlhdIGGmEhG$%3Pr)~F`lj;*ZF^t z3J5|XGhv8?hj}OqPi1gmJWOT6cqW5MV~`LIiAkb1QB=K+zY8MLp2z&+7Q_-QY zW{N<~|C&2K43$R#I1Eo>;UTg=nZkycYzh@mqRJgc{PRuZl2~*O3uGrmhq!nuiv!_d zkTH0K%O!K@5QR>n{F4L!V-v|_V3t2<(i9S#0xbT2nTS$p3@(>K!;|O?5Jeu0fOt|7 zJP+Z*Tn3F!K`H;MD9TNw`IE?O8j}s$!C2b=AEL-(KnyDAe0T_kz->dNlJFdG4dUqt zN`+ZGl*6R4zD~XWDvGp^l}-QJL@T1axqU26E8@Qt?-;`u-4G=B*c#}vplK67b?x!Y zm-oj%@il&F{D~(3=$|(Y$phcS{5`wAyX%`g@J-C$v+IB6F162}`_U-y z?|MA=RG+Q6(j9yw@B_!g#St?qe;=qQ+6h)Bi(G@m7|axH`B1{ha%X|XNfI|tr%7E? zRJ8R8z54qu13@DyKMhH1yo#>XeBO>}zxC&LD`?TkBA* znZ}OAdg&UKeEW#G{M}N!#6x?Qn*YAW7qOpA<|wDz$YyORSg>2`Bz9Yl+7(IREtdFt z{DUN-K_Pzkqe7DTy~ga`vJX|qDt>*GlzeGw-@VM^1mBYd#f|O$z5cG!o>S#}GOrsg zE}_2J=V`j9s5{%|!J3mT+k69%3?G#q)t4cuYk9-JhYnjL4a%@yS?}C7zPmJCyE40I zy)j>=>z4J*(q=<5J+-Z;Fw(s?vdceaq`W6iz5b|u-aTo%vrnF{=i+O9D;V`h=GAUe zQLR2%V!K6Z_=099v86!_$%v*AMcv2Q#ZKW zTe8mXuX|;(?xIC|RwusRyjt0)D;M`cH(|R@!j9(Qj-cqh{K4p+hM`3jrMB~CIQcHV zO-%K|bW3#RRxR7{d*i`XD;^CSIzKvvf4e~P^89&|siTRv29IMJ4knE@(*#~k{e%}x zk93_?VMhm2di#?yuz2mYeg(CXleiS)X;4%8+SeMGbLh@({AtrPt9&a)0@6FzX_7PU zm1^SBJEgCV`ad~i|1zsAt?4hy5$geUNuV~>RE9Kr^QLQMI*Ql8ugGyqxvAGUCNGZd z*?RKO#VIy-CZ^6phld?6*6X$9=nZNF99wF7DN?3=aB?i7m2%vbdB3i-IyETQNv$RN z=B&Xmt$b@?%Uq+jp)2?1++)2lHXX6kQRN*k*4vxZ_L3NIpzMP7q4!Rhyob`K4QbrL z=LeZvb+VZmHw5}sMf>8b{!XoE&Zxx%*l+6751`#W!|S=Uzsj=nhNVgGY1>#yYfZ!* zvmbYzDDN_LkG@kBQ zHwJ>7s-LUz7Cw_^P91#q3*wb0tDJMTW-oJv?7l-+Ui)twgY!Q~fArEn;tD+}a2cW1 z^>wOLpE%5G6kSn2Yw={mzU&iRfxGJh3%yR2j0Z|-0WI{K^xFCx{QVn`J+^#juyQmf zbB`=_>##a`aoCLD8TpCqDbRDLj+QNTjU`vp(_N-g)i@TDa#o(6m?FKg)y5`n`osh3 z(Mba3V#HH+fgWfT&dZry(lpDGwSLd+rM!iew_UDI-6Fcv^``3mf&5a)o=9?J^eW{a!aO{!S~Vs|#94D0=YV%!%$@E42U4yYG(1O|D$x~Tj5SZm6` zPA6SqzLmdEox8i1@3pcbn%c?fJ1EQVBVv9?jtA6i+>+*89c=kXR+JyEjgFSnh-nYY zk_1GK#-h7nL5Jt>Hn6}dk!#Z6%!OM?6&Xg}mt&q7b?jEvkaP9_thpx3Ynbl)Ye4|F z(&32p+TS8prY=T1KCeCT~t!Oj5x2c_`i=bbV`jO;n0{$Xg1P3zr) z#=`vEz4b4hKKLd=RaLqD)kz!Ev#8q cLhD@Jhz)rB_wcpy-zP9`PKz8%>{q7!0|AU?C;$Ke literal 0 HcmV?d00001 diff --git a/images/marker-icon-purple.png b/images/marker-icon-purple.png new file mode 100644 index 0000000000000000000000000000000000000000..6da50c9f6d05f748f2aa5e6ba0fc4877bf39e927 GIT binary patch literal 5907 zcmeHKX;f257Eah25>a+&8^;)01tnx(n>|E`tg@@EkmUseWFZLzK@d<821aphSsQH? zZEaB-MMV?^T2VkmTUiuwp#?$N90XCAO2F;RoHNIBX8svYrS7Zx?pL?Ix^=_L^7C=m zN6baQU@(2Qhnqj>zXi=kR|kAo?@Vt3T{9HQ7O>e%V7lM|AmLgtIIvVW_>64>Yz??3 zOcV4Opcw&Mg;BM+aBX#;1MKf+>|MaNp227U8xPlj>4UxyGysUf!Y$KlT?Dr3 zqpSY&0G5jReecfp_Cpcu@Hjgn3Haj(Lkf{I-FZmdeiYe$@|6;(h zNyudSv6)PiR3;G!V;~qTp)h&7gGY_CWnEYRYxNSenMv$5zoP#A=&h#_tiuLTn}g?h z*}Y3&q|g3)_Agzlq=USZ&$}KUJG${GN;f6-?0K5ad5^3qPXvbRKzn($GHF|-GSv@D zY<&KAc)qych}(}1{E)ih5G`El0xiSbJg9-~Z#3`fJ%{z{tFniWH9ecOOpa>eruu%r z6<<@HMa_($h&GNm#_lzRc8?V%TseR=a+0kX8vBR*GL#mP(Wre61CUmds5OpH%k));$n+q}|Pjj^B8 zmR5C_-AQZnZHdNUWLmEzn&$T~-ffz8%G5`TnG`5w__oRLx~_LQ7j2NUIyEkn%PRhI z^qHSZirakwK6`fBkOowyOi)UaBvZx0(bt-+c-gM>%{R7z983@fhAKk6y%;=+$d1F8 za3Q+{kyLeHFngy2DTfygDNtM}LMV1X4^&=4qlA11bO_lS=PhMIkwT9|85EG{6Ua-9 z=F$0RCr5;R0s|0;AO#1NAc_&o83_((H7^6$s$nb|rG_Y?9nhg5kC+k}gd*9I>~I)X zf-s(dc0{1;Wqbj{-)-3p1$c5mM=BIj1{SMSD(#d+JBcg;i>K4+SR4UMAYcFjBVQ+0 za1tj`=#0slVDfqk({?a&EjCwnK9u|s$ zL;xxWtKvUfQg!1#c&H?Z5Q?N~FCg}3NQF@FQLN8mQ_ZNi^JyT!{R8i3==Xb9g8|Ch zo8czm#i_z$yE&j$>ofQgo{-N_n|J|{Psb7I7$ToX!;mO=0*1z;b1_spQNSmW@DQKG z{e+4wmMb`79;BiI9L+0Qh3W1W14()A2-z%jJ=&B&wQ<&toi;$V41) zoI(*N0>Vng5$Xw*;0zZ(wgZ}Ahx<6<7sF8qfP(|tODK*@_&54HK#5kZo zRNW8L-rzd%ISP&&M*#uS4|O>3eI3T&NDSO`_$oSY3128!_utT}%Y(89cyQz%LOED} zoqA~cMg>5z(@)cnF+%lKLZQ@`g2CZUZ$Zw9hxqC^0oU{tFOnmUfI#(_N!Rz|!vBy8 zG$M%t(FG8ONTK2}B(eaH;RrYs41r6gLnI;u(ICp_>~e`fq2$OQmk6LE&h@5(STGlf?;Pij8)Z)_dB-7{+lNDYQQH&2KY^nf#L;f zA@)NtoY72GcK(l_nX~vmt^laNF7ieCewFL1TwkQX7lFTK*H^i|NP#Z`f6cD{nOumE zuTzj1{1>DIFH5oAPbR>NmJZj`-3?{{n*-DD_c2cfBYIMgm2wyiX{>5+Sbm`e82m=T z_GW$aOwZKN5*B=``A6V*g6-xK7+O;lvO2RU#B_4B`%*Dc&d6iud)_WjKV*H^sEFi9 zax^hHosM-(VAhh>>LQHN_Z=eNiSjm$&R@POW7Yc1)<}Jf_Rzu5K*D8V!Sc-IMuHvZ z3iIg1h$i~fxFo5pyN2yE9AQU)k};=g{Pml$(e~&Ur|+5d#9DTazbP@`W^?}5;@WWX zMu6{y@gr?(&vH-KGv{19^T6=UQG>S&1)b;vIlK4p_1TLM2Xceph2K9mpYJqMFON1F zA8iV|;d1hyFr?%CdtrZ}W>xuHIMYu>^Nz7vnsVJ<9J|;GBfjIOE#4qi@UahqpAJ2` z*J)*vGI0K7asj1trT;3co4R}pN<=Q?v9QDveni_c1YK(RXMNr^{`kV0x91k$v>zTY zWnH{9;`=k~X>XjS@>*QqJ^GnOj}Ei0KVRQpYIE2xeBYVysMFfW=4Tsd!)+mZGF7_@ z-`f9pO+iJVhLc;;t<+hs^UZTtp^inmv2%Lsv#tfmCU{e04O%b-wGEYYr0i1vL`v%6 zJ!vwHy-0&_U2WaL9rWvZD=^HSiJr1oeYNcmbzI4EkVyTb--DSM1C% zItVvE=wj}|+DGcyPwH}IoC=n5 zA)A-VpEF+Ro&LjiRioK(Lv<|qdbfdQ@^`3XuKr=y>kW9^D0`iC%zVRv+~o^iEst#E zYx61&g!9w0vSRN~4gHqTgPec4`HW+O?=srRmTZghC#;yc_YoCOtwim1*p(z}iM5M0 ze1F20GgoF$tkqkz(BOe?d5eaRwe%om^OpI^PL89yC(g_JD*pLs`+#F=W5+;sua$(; z(VPU=_Dk6)@lWp?&-CJjBFrk8r6#R8D2p}D$nti5Ez_(AVVxIamc1Bz;i zR_8(eJOfxOVQ==c^xT@Iy+Jp(7+Z&0=$2GRbc~DYb&RT4zbMz==eA(pNKVP-ZJxjU z8N{;N8vN+QoThWt=F3Zp&Rp)QIJjU!PyHdLKDR^57T z<=fW{CQB~EcGQ}UEl1X}cXh{f=K8n)zM}maqgZNAvDzCN&RmCF%NW#|OnI&m(`j?U zE9aI|*p(s4q&BnL+aOP;F0c!^(BNS9x8XOVc>NwtE2>ZUt*Y)U%+SxCjME%^v*yB^ zkri)Wx^Jjy{v*YUvOd^YTA7_=2ugKp}8uYOYsOC4C>Q=8YgyHXka zG_f|j?)FmcuAj((Y;>u~5q6hw{?=FFJl7Un$?E5kezzi(Igj&I=yqrJm(9=U;b5BG&rrV65H#oE7^(k-mOsl}YLoPcQ26MLOfRVI}bD zxycNd9h4n))kDj#p(|rbZr5tmKVSGz-(+q*+P{Djgz{A$9UK}-BBZ9!&4YMUzs-R^ zB9GszjEY8Qltdg4t9vlvb}I3BaZ`Ox`yf-hK9p!5wxE7hq#!PjKU#MsSp#;ns!}<( zix;w*cXIYZ+o62t@E$)dVQw~jvMmca5#{LyL)G_hD_FVaj5pGSZLX2{!`XeV9p%l} z3!X-%oX_1youbEb!t~R(c~xBH&AT4`P1)5@Erju{Zi}wc;(70aX9iNcHMk$4)&`5;LeJ~lgD&n zo0d6!*Ad^|&^LJFyx*93b4O`&L!XD2(N8%eZ%@5wk+E z%Y6YE4c*%LEL>N3XA>?H>oCWO9u%=h~sPFCFcVrn$!WuoAC)Yl-(}=d1 za2z|j!u{-=r-fC?{SV3pddAbr%?ypooml9*kL#w$qYpN`?OH{j(%ij)YH7dqKpOZt OgRxmYZpU52)BgpGR@B4* literal 0 HcmV?d00001 diff --git a/images/marker-icon-red-hollow.png b/images/marker-icon-red-hollow.png new file mode 100644 index 0000000000000000000000000000000000000000..6431ca70e1c8283c46f6929f7b8282458e5bdc28 GIT binary patch literal 6308 zcmeHLc~}$I7N0}}1SzYiNJ|JVxJ)uhhHNFsDufb?5CuVBnPes*LKcz$0dYe_5qF9r zQk9BIMcmO!5$F@Ds1>U9QCtwkic2Zj3ffBL-2_B^uiy7RUzfj3zMFgI-gAHVp5Iw! zGCAQhgKex_tRM)o5rzatfPO4!lP%4`Z*5-YMbI@7(L$L}I0do<7eJF_29bbd)FTbb zlYvYo4TFY(J{vR#ARBdz&4o1F)UN^ZxIy`2AbSq#7}qdJWXJ~eMW8W(>;(FKpea@k z>{Sh9=AX$*wMLcw~3$>K8@e8h{wWEcf67TBM(^W}+*NDt)m z8o~Lp6afL@!hisZMyr-75(x-06fN2)2s!QRTK`dG#qK$-KTvLODCV~W1-T}SS{?5G ztyMX{VBW98MJ}71MhAac(bjfGa^=hVxltBTes+COQgTv+expPG7U!5cgXa4B)FG^l#o;GX{wdD7qEBr}@>ATeD zNC78&ziE}dIPdpS!>vMq*>7V?hik9-eh$?Ukp8|)Fx{xYpy|%y_rHB zt&bLk@ug}d4a3zEf@V-^j1GgmryDewG=b1lB!pa{5>UIosG(96xPThvB|=1+03u!y zlCC8p(`SmM=?PLEPMz*!>zGAL4*R39sfw-%T2BLZg(LVzm)HD0gR@ago_)Kpq3i>B7f=?or^M@N`+ zCKCo4ur5ud#|*Ga=V62xzz8ICQmsOxSEyAKBPJ$MC+h`NDwwCdIG<7@5)Hwtbb~Aa zKIjHaLub$sx>8Ahb%jnJlmb8o5A?e$bmBA(L60DG>SV2y2udMTdXHBjaOu!`O|mx8 zWDYK+6N!WpsOrG3jMug_X57#UBL#AWQe#>L$bL;zuaLbY>$S5PXH4e2dJwRD2=_JZ z7q**}ftEL=V!aQ8Ygi#JIfh7`&6eeUif-z+{n}gx6 zKzyiGfT+Y0Upxus}c!Q>c;+FDJwbB@wB|jBGO4JRXz9 z<}gqM;h-GGOQku4RtF-{h-s>wrWvDK_`n!IEM|;T0ALyiw(tYA1g2MO#cFk;fI3ul zho(g!op4N#1!8&vfDYAR@rybPBVK%D;P^&3ks4RX(*BpWF?lH7Kp(g~M4x*&4?}UO>iZHks z6M-=q!2_Wn!C(yKVlbD(_2M8>3BpBC6AMG=I<-unifIWyIp7g+1;W#GhoX3z95wlM z?bLX}=mkI+jPPJ4L(E|DnOr^#g%Q+982zs|5l47z2@gaklg-3olqX@r7@N(6r8v%z zutEGFtp6bJ|2C1q0A`87O`3)9S-|4I%|r$!Wne5B%wkJXU?PVNO9(Cjvt=9^i-*c2 zD8hN&FMr5HFEIk1J%AV4gJJ(Sc#*|H5R{8>V2sC-z$gpj!k7d|2&geE)Cp}!6Fc*3F!v{G$Fa{nZz;g+G=)q(#xxsn=%Fke3{42Mh zP~L9xM*O~|>n&Yx#K0RVzm2Z9biEM+Z>0P-y8bk}tX{s_AXMNVNh)}8p?ThP3B2?$ zmwXT$2=yDkJ5TM+10y3eA#-&QWbJ5dB&e`x3>dV~3q?T|9oFV#Yj)+G)C34Js}KhI ziK9=KH=kF}4sx~V?o!Jxp0rgY80tcXJC0sDF2E&5HSbWA{s?t#n6quk9rCfxdMN>giZug~2g9_weFUu?e5=O<3pTxr;P zrsG0;-$hsdPm;=!L*%TKL(wCC+7OkVW7{Z`t>8tdg<4)^eh+nienn6zz7;(LS zXZ2Of>a$}i$mL~GdnrLbhGN|T(9SXoizAzn%Bl*lU69$qs*ydHrc9fVc-U;w&+OHC zc`=MRR@OI3lkKMr|5thg1eJcTw9F@$WUc73TNfzz992~jCqt)JRaoxM^!R2n)anp= zt~SOj;o7$Bv&WsYHZdW!J)|ub$933MSME`S96J7Pu^8Im*sANjKO=RiohZQblf``H zb{4rdsC}BRL;USRXlar&L>tlAmykH$KQr#kjBVzc#JEj$hPGqfS;c23nnzIIt8PWd zpVW=M8q>bay?%S+xTk9@h9zD1F5$k@z9?Jpk=^`Lzt|)Fv)0;phKmCB9mWuvzUOXm zomlHFUM&@ck}@}syr&B&Sk-=Z**h1;huqgNvAV12<4<(a(sC6KF~ODtoo!8mx(qcbGskqydOx`mi@UvrwW{ceT}E5Y zlm3-q_g8#c;exF?*SPnA`2zXk)A16o<-Omhbe#X08ku|9Ev96hqtnM*i2vIwBF6*(f-}* zs|(9AW|rta+#ze46x3L_Hi&t=`{b|R^u#h8J3Fsm-urOIb{XmU#7FZE@Ul<#HCOrm z@&MVFA0y2-@%=SrZciz8uR`Hz^*1bo=v8csg$eRvOJ${;nKI`0GfQEg`YVPvC0bZ%^Ubpb8 zR_9r}JN{5UMYDtyY?g|i(eO>EixuqEyG zN!u9PBWagU?eK2DTXJ}3Ox7hsj?(pJsYU6y;#BjkIhB*5zj9tP!t-?CjpQ9)x-=Z= zsJ_=9X|FyOwuSxV?)wjv%}pCO=2SXbF2J2~S08<5+k;-c>t=Avz|9;pdO%Hsgh4X{ J5BSGr{u|oW&ny4{ literal 0 HcmV?d00001 diff --git a/images/marker-icon-red-light.png b/images/marker-icon-red-light.png new file mode 100644 index 0000000000000000000000000000000000000000..42cb7da8ed0f89203ba11b122cf7dff617d323be GIT binary patch literal 5726 zcmeHLX;f3!7ETCZl0m_$r0@&@6`@IPLS_h4m?DE1D1wS`b8{0?GGG!WM?^#sRII2K z0Y}s-b)-~8P*lJ=plA_?f?%ya(JCqy6~%WF5cR#T^_FkF{xhtTv+p_I`Oe*7H{Yafc@o=T?A~`A&hdYFvNW>!n+>s}7w{Ep`qOj|vSD$> z&i=;Kj2Fus7ZuNd2$^tpc3(!iI$iy?Oy1Xrn9fWJt%68j7sBjxm1WwrPIj( zLDpufbZ`b)rFGU*3~~gZT0|pH(aF^+qMj2Lt5bD+5(&%`-}$FZ2@fBpS80b-0D4d} z;1nv20#TJp>W3?|y1+C*GUU)-uFytjrl3?2s#T|I5Hv6iRq32Rq>v!P>r+xS3PU&& zgo-LqC4g$duC$M~)Ze(_6?zF|a%GBP6%hL)q)sk1Pb#eCP;RKFs?O`d#b> zFhGTe^8(aJs@^?e0H37apC?fxatY61qBNMzg&~;Crh7=p47M00b6}K1rb95qk+P+1 zNW%GmN~qH6U=@PusQ@`e4tVHd1ZAP9n2c~xn9LA!rDQReEhdBIEL6gg(8V;?2NY8^ za*&m<;zO_WR1!eN^59A&Vwg_$;4ryl286K5Tm=_fM9ei%Nf2I;TBC%) zamtmj45g;1WQGa7;5@%bA)iF2K<`H)6|hbU7Vt@7a#d=^`-y0|5{=TqdNpY*E|r3hUIGXti3wCkOTmMY!4R}?8Y(gP3AhHQkR(_oLqYWzO4oPe^1nz0ngl|m zG*m*SF<4?UgUOPR#Wa{fMj(X2VlpH^U-V;kty-!}hc&354Cn~70_kb^4MlV{9Mt5G z(dkL3{uF>2R9*xd}XhVWg|Nam;FiR?dI38pv|Kr#P0Uy*+AkE+ysL!C>Q-|yQkY@VI z`Zs=t((P~D0Z@P51_j;}f{= z?DM&8HA@oc)i+BwzG?33>u*j^!z&w8FWz+Ba*N0^5Az#w@6W1>tD7r5rdPCbyJ`=& z`ya=}#`GbnUP8eU4^Se4x9?thzROuxJGOmLnJ;f`s$XydX%?(f$UeEJ5ZJNy%+nMy5ufcJ9 zH{YwZB2M($@1Ap#rD$`i-|_(C(wO$0?HIpUC#OdLt~=V^CUep%+UdP_b7I46@zx3v zdTqiQ&U)WT?pT+R!iIp+SNhJURXudfy|5s%1nGLXd6qZ3nPnWYle_-P_jA6&=j|xy zC}&vSEyoFuh_~Pqum4*3?LaN{^7HP2d8O_A3eO&1^$%~tRt+>p1rftSL^UT|8rN8d z9`$m?Tc&S~zvRBcH7gJ)+!xvw+D};Vv;D%wWzTJ<72SWa&ZtGVH6DBF@`+1x9ruZ> zPGm>-T3h;3+M<8tPko#yJe&Kh?ZHT#V2WUDYH90o{POvA4c_PN^5=&Y*ILtkw2ZX-&}Nb{?cPtTTLl!?0KPSXLeZU!*5$!+^TV#bZ6$n>wA8EnTxr5 zJJ4cn+ck$}siX)**aRCb+HKr8Wui5cE{JM}4O#pSPxFzs=xoD)Y0Z3vzZ+?gEe(X7c%7b;s2&joKY zg-2ig7PuYP;tP|I=(D0D)+~e2NqD!03hN8ASW}{WD|5f} z^rgkWFxuUM7M9kHH%hqR-`SJch4C1f#EIdrKv&u?q}gb&2loEi0Uusm%~(fY9Od3@ zm(^b9gD*L<@gS|Q#i5gBd}5cNE@2klsPIH^K2hdjpJr?OT{wQ*+KNsqKYH)>bmE!T zvK3@P)`+n3uU1*U9Pp1SEVyvc_MhVI%@eoM1Mwp#q-+}%+I{USOz_U+qN*6jJ;XS& zcZJOFaD!V9Zuj}BxvMX{l3l5_bA53rt~RD2;+9QT-yTKx>culW(+|x^;*?xSwsAq8 zr5cZD7!$UqW@i1*KNbbsv0%$(yRI-8UbDY|N)K_0s)J-i`7WOQ$@cEL@59%vYbE6x z?N-nDW9!Z}nHTHjuICgf&r3U|#1%0ezUi&L#0ptobcLY$g03d@lXqnO?+aleKZmyO(byI99wg$xIx1@D`g8^vHKYL|hIb z=mv9YOWu`L^E!Mi%2sxrRNcDOnkV?lkr3oRvh=`_{o|e;6O=Z;9Pb<)#V_5&xT>$I N!oY}teg28r{{nQ$D{BA% literal 0 HcmV?d00001 diff --git a/images/marker-icon-red-small.png b/images/marker-icon-red-small.png new file mode 100644 index 0000000000000000000000000000000000000000..a393c5261df9597e73355bdfaf92fce522ed24c7 GIT binary patch literal 6423 zcmeHLd011&7EeF~aS4jDDCvBuNYK zpE=Ul${2&ejO6)x1%loZG)JSM;Pd2~rRPESD>{!S;qj(ojKBlX#16q=fuz;L4#svd+=5*-7NN=Z6u_n>=0UMue4ICdiE(9k?QWPGrJ`&0c>&8K-6y=V1?21bm&TOB>U?PlVQ zO8wqUt@`46ikiC8Ry3&0JNZXJ+TIIKzq&uwMJ-O50vsa$KaDgTsyO$}vV&Ew9c@F=;i(i@DzC zcBu3IFq8P9r3Vh3XvIj}czX{Yd@!0^HZnN)Fg*cxG(lRALDy(93540z7dE5gLt>Ln6h+#ks^$T@oeQ5Gdg!ZH3Tdl z#QjYBgYPU0^lxEfWt({FocLGL)GzODM6Ej&v8UsionwUxyBO(cl!9uBQRHTCv zBOD)vN(O^)N@Z|3N>a+hbrV{`Iqm^GE`j1g{x}j41#2W=0hiz>mB++?oDfK5Xpjch zvI#NRYzjo7(iv0=l|`m~RGNdT)F2bJn7Xr5H=_*;2RH+Wg|&GK0CeNP7mlY2g*6J5 zK%t1@5(ZD*!D&7yCo!ynyDhv$0(_;l<;_6QE*_S-vu=si;8u20<8WiBm$O)qu}%yNY@YJ z(mzQB1R+B#m_jDP5|mA(F-0&DrmK4PA|e(;A_j%ZAXEQ^!2jAs2m)>iz$Hy3bEv@M|Cfs>jm{K{sdOTl!30s1zzB#Z z4IxSpF)U_+@<6Hm#qrmpsCAJpAVVBFivzBM{hRvA~WI7Q|~WDk^Z5w8K1j2jikNYK9uG((!UjNzrrWCAxQB4F>uR*OPe%! zYY${T2+8018aOom&MolxubX@kzhCM4O4k=L@I}gBv+FBeU&O!{DSyqb{~2AzAAk3w za`1IM4*aU$i!XZy{t*}|nmyAC^IrSjT)Arv7#XJYov+4VhMQ^|7L%860R{~dVZAf%(yc@hD+L#s&FqXXRLid$PC;Z=(J<3b@2-4 zRzZmPrgt-GN5SZkBZq7_wPd&L=p`*CHtu-gni*?n`3ko$7arepnXk9VT9~%r($FHa zOA`Z9_Py&m{>Su{YL~RQ8YBO||7tOpnD(day3cN$=%o~)J zB}WRF8~BmpM#(w@WnZfe)m}&!HWzX>j-e)fKO*^xYnd>7S^fl$()|28#_O`G#OOZ= z-Q2vffi-V*B;RnN{~gg zsr#mu_ni6d#J#-G*Uiwx$V>9W2n6Mhc-s>m84TXuFi#@9)7c@^ZI%HpC0mtC2zbJ5|ZhI=lhrUY%$EuDrxQI zVq7L9<(5`BY0}T1JGmZXb8>^HVHMn#ln`Cqd>|G&*k#)^$L%T6?4TL_S!s9UmTX&0 z{ci6Wln44Jri@|n3;)VrXi%$p~m%hHCZv?r>}#W@BFlk7VROt zy0*qP-*^{iU+L3i_c-&mpi}c4^Nn}LmV2mA=MXpSzu@*>*3sT%l+)@O*VkT+FmKja ztX(8u^y8StL5Z&_tF{(jyH2colzO;9`MQIeTD7Jl#5DyM2b;|}$xCwl!z31EZsC8Xox^NuJ za6VGRP8HH~C!bvyvM?Rz*23+a>out;^Z2cAf>T~Td9-)LsI0j$x2;CDU9VivihWam zBI}*xz?N6MVtdw>?=EHDcrm~IMZvc34p~&xiYD$ZVaN5ZEp#3=;kHU>KAAEtY20z? zF{&#od$m*Jsy)@GJyT~lblLkf{L<=b_Pabxc)@3mtXJ=55?A0)7M9Msl!QTx90OH( zPaYg>X~I=z;VKMmtV#my=Kt)dpHphiUp{HIQRBUH?nAsHTta-FPw*Sf4?8w0?7&Kc zviB>F5A9>>>uo;!YOLeYsg7=umlx$zsD5irBJ19(Cj^}qsC9=6rX3f4BM3ZSPIz+ZQ;`%4?ilS~|LW$_pE}m<|CW{Jr=72;|#~J}C<_ zW(%EX-91}X-N&_EX(_QW4zC@5FMFkxJDzj&GA+b^W5mwomA_xPeEp#yVIslHVH@-? zJ+SauY=lpJR_seIhb*t}y2vrhbPfEvroPt!H--EZMVeSBi{x zjy>-%V(UK)%zO7OtUKBq)_rmgU3_NuMJYp1)*g4Cd!H-I{w>RTys2fy#qOGXJB-Uu zcNbN-ZYg64|5!iY9KEtE^=)(f)n&>bu2}5nKN#OqH2HZ8y2jtkO4Bf9Bcd0YcckxH zd5-Cju% zqVMw4f|M5S#r8~o7A`8MxL^bBlvht=euKk`EOc+@H6|;x;JyA2jeZ^Odx^>CR z2@RQLV>#9mhr`(f2Ka}8ehg^S%uT`HhQjm~(49x40;Pe0t~hh>0FZcN93EI04nJs5 z1GW*KfFpoD8?+I?#xPhLi#IX!dB7ewXs-wM)IkikhKe`B*?_(bG#aq&LBA6;*~)>v z>VS=X%ne_*5zc^k-_HsZgc50FDomy`z;GQYuSAaX5Y1vUQ#TjXq8%7la4#-JBl~yVh>*5jl)Xu8y2KBP+~p zUyo3I&w(Ke2#a+xX-&_VkQ-^{5I^5J*2MQQ;l$;Wffx8+y;%^JV0ZgivUmHLO$+|xj0tzgV%NBu9KT=|1hgR!psdXRD?~%8^%`Wq4lV?4>WWSo<@iwn+nyq!a z(XvE^vUgdT7cRQTHHF~hWF($)CazDfQ|grO%4L0hggG*GNp_6<0S-4TMivpJjS>X& z#7a3CktjtdSua;%2Zo#Otydx9L{v)@q46?>C+X3VdJ<74@g#lC6u<(NADSQwSgc0F z7l%ZM7bl9j5|X!<<#as{5Xez2Le$HX6dIo1lVsrK0UH~pkcb9|Hqnz51@g#GsYZzm zGJ_05e7$TDjpSuXoUWEgd13xD2PwdlCn-UzRq-ekolZyA(aB16JcY{Taw#y4LZd+d z0clbdT0{>iG?Orj0S zDQFTZ2T%>zmHNq+*o_-nfk_ZAldBA?fY_fPwKC}ku|Dw)n=yp*u_Ivl5br1G_puwm z03{Ic{FUMq%)LN=PZG92PofmdBs_zOQV}*6ff0yJqe~zLTZBR!1m!?97=bxbwv-J^ zI3H03Dl}R|Ax1GOKu(qc9x4nY5(YyIu^B8BVo=2hB;qi*5S>P2f(aHAVSG$6TP*`w zi6njO6-FfiR4h7IA`u}ph|XbhAqFgFLtHV!f!ItM7lv6W-8Tk1RSSK zj>MxBl_K6SfeFs@4Gr`p(a7+JkibK5G~@5Xi-2qREHzp*I@`|@ZbUWF*<=#B9o^6H#By6h|>Wc9C?6D1NKif3=Q0< za5Q<~Y2YzQX1Gd3qTy2T5b;0=8e|bFG586%2ByRbh$0>Z)nhPS-;c}wEEOcMSV~1D z5S76aK@28K0*R;y0}{hxkOvG2&=>ubU89t0b%+}EjR!gctw4Gj{zDO`8V+jOr)XUQ zik$)w41&23l^sFl@~AW(OdS-A^4Etb6>~VKgwB8vRLq1JD2R^B7EvKFizY&tQkn>s zBA+__KZi)g!ut1|7z}Yb1uKj14|O`_KaPC>@KGHF(hQ7&`V7iFWvJc{YKB$Tzwk4d zZhzqpfcncOpQY~?xxUEtSqgj>_)B(uk?XS*_$=_3?E1gSW%=Qa5mkU6dOGkvc(^&D z6}(HDih^eOCP3W(O=a8@I+hR2nbIf6kmZJ>Z}cGt>;U}t{yR^)LU z&cr#;-!~$vasP(i+=vwWChz(sk8Y%1YrCl?$k&utRI`hWEvIBEXRNApfadh(j($zZ zZ_X(Y+tt>S z#~PQsqjkq@y!uBv(WTQXv|lhP=1Ic2VAn~OuZ%dugaon>_cwpi@Z7G=oDC&sc_JID zQ_rfBDOZk`$LSB-7ENFl)b6Xz-H~bTUhO*Z;x)2(=9znbcb0S>D$VK5YAY)ro^yaT z`e@kgT?MV-PwA4^6~8#fxP4R8akf~W=suolmpFRG&ac)yG8vv&oDdP8Q$m}5m7afc zj{Y9UuIh9{RVaR408JS6_kf>ksk7G&c#iudcPZ*$rCb;F_-uOEN5>&5=r zdw%G1OmuOHqM!e5mP8F`HFkKJb?d`_i=zb?KxrJ%fU z-qR*e+tZg}@1j38elnS{ZQ+Y6&c9WQPo1xNP0?vy z)?8B&@f}6ZqqkMKJufbP-AF0fQW0TM$w)cA-74AUrTkn##Y(fd65rh0w6;s(4w9XB zUBY&UTgFB>JJLs(mtBtKP^n46QCn{~$4jT?g%H%-GkU!SfldHX=~O;n$IUum*6F}%|jUX$pd znzxJ)v?7s`#&T$B+v3T>dz8g+({Lxk1-q;ch1M zwl0gzen~7G#hde>q=qr;LeP|+m3NE0yiPy*s;{rnN9NPr*=UyxMY4>~I<(jbU6)?p zra#y)8J>?$419TW)RU*FSLYe!96M%hpKZ}|=*s$Lf~Irt6-EfIafM(WGTwcKHm$eO zWvg(?tK|j8ku;MQ~d8v4`ImU&(!ZprK{2ka;;K zIAxy&$F{g()_mVH-5HtA{q4pHlaMjwnbtz%@9?**M#hb*wEDrs%h9s!dIgUNp}ieZ$dY%cy>m zQJ#^>cNgLM9S+;c0WP(V8c$iRZEehcc07KvaGeeb-(PQKlVNPy?Pa#x)-2VvJGUy0 z(8@fw%&IBMhqq^$ZQK!~REqKAw24#o=YJWVo6T?c>CHN}z*p+?4SqSrn$`0YQ&ic` zkNwB^^mLP0moCWt=PR=xv+NhVB$(x3 Og*A{L;=g-_F#TU9U@}nv literal 0 HcmV?d00001 diff --git a/images/marker-icon-rose-light.png b/images/marker-icon-rose-light.png new file mode 100644 index 0000000000000000000000000000000000000000..790666247994c965c7ee2223a548cb7518e90ceb GIT binary patch literal 6187 zcmeHKcUV)&7EeIR25E|jfD)oo#G9UwWCKVOA_M`^)isJYxi=6Yg(N`01{MSbQ7K|C zyUMOBAjPhrfMs{ZvKCapf~;6T5J41C-y~prZ@=$-zW4V1W%5nt+?jKJbI$LanaRxv z4GA#C+2Sx5j43bBFC6rvKyx)V1ivS9mRS&uS)=*4 z0$KYp)_vXeFglI*eE^Riil-7OWFn0Y?8#IbheF|y8F&hv17rpptdHIC(IYKVLhI(E zz`x}ZU*AxkuPQRVkDU#Zp5Z-Q~$cw-gVNI$ccI#QQiEc zd7ah|=fp3FX}{l%Js1AnBfGnIEo|JvUTivhYyoG%>)zmBsvMd}D6e3DFQQ;D=AM#> znd+JRV2(&GCBleYh!QnYg*IUru9rpui(*hUUWi6XWFCZ$V^sva1o0qz$KaFs3STr@ z5}2$+rzM9(h>~MOY=q$DiQ{TG06>bWVZ25fD^qba9t0gO2gurC5&^GMQO9@?W`a8M zl`By^ok%B=A%Be|flBbi;kimg%nA3KJO}}vJP6ThwSq$;B_<{k6KO=bGKxfDv)Lpv zl|-dNKm$@G$<(k0lBvdOAqFt~P?bn2QK%(y8D5JC3+3@@4*~(qt{rx1wfgS{eN z8LJBi5s}bXR0>p8U{%UzOKNxA2Ma9)Q4*;_X9dXqOj9ipeK%OjSxiRl>2KdZmRz02Cso3f<{UcZiO-vmiPXNJ2V7gAkEW%wn=o8XFyeLPVU& za-|do>6A#}D3qj-Md{Yi63+1s<#`aOMDoXx&{$Y41_mC4V2LbV^Kl|VB1NaEVJ({! zCYw#AP^okvu$WZZN2M94QUxkei>W(1bu-$ua6mACSXf)906;emV&V8IQCKZkM#$x{ z9)u64?uThU*iHznhW%hQ3P3-c!x8V#VTjD&kO$n?!tv#ZM4a^Rw6&WD&jtD*<$)3v zSU*WOG_a$lp>YFG1COy1-B!Zmb(?|%iv~ha!3ij$^AlhVOo^glSriIRkHK<%KQ8%; zQV@yA6c$V+L$DZSgHjN}pcGgz#Bygb+{q##nMJ05j;@l6)rqhY^^O8O0TW2! zi!M>FpKB*ZquMM0!XPpmqEaF#G!B);q0u2ST}v40?++0nvzbCRs7@-Aia>O>kP5*} zCKVDP2t^30hDoOV6M_G6h!hG4D*{~1G%|+E#&&&z)mB12d9AUF`NuIvZ1$R%k{{`YmuCH+ff4=8+cReBvm^w&kch~KYteWmM*82BRPuhsRHt}kNXi69g4bn3VNie{#sXuGF>MPOxd@DWqX?X(!eC5>Ya14`X^RaQ zG*a{U{zk1P2E%Qzv8_Fkz)+9p=N&P#rak{=wjf}{nI+SEZ&#iO?kGoJTpOkTqSkJ; z5V5p$U6tFC#dpM8kdAjP=`&dOZT;JerMl&#rE;@l9)83QwJwWTsBye zxNdLVhP^rK6%#!Cv1$6*pI$+T)3TrHFL`%wiE%_|t9S8jZFh@{;PZ7m(^guhdDlNV-5|wJ;2+1e+;VC@U6QeK@~(?j#j{ztI0KB& z*){hJeH5)`1lu#*I6Xr{h1AY1$MNNZ&FR~!>yYS@aX&dkPO9o^c)g3-G0MN@-2A)( zbf@)5M=L!?i)+-~L8FGc8sB0**ho_k|7Pf<1pD))mbu~QW*?d-T(dIgrS$4um-%8t z+U6Bm@!c&}eJv6~9fxJMT&VFp9unrd>&mo;3&*VIbstfwO9ZEwP45JnH)jl*hQ3_u z?p6En;N`@p^D1l$iVRQm-mVFj!cW^B?=0CMESk)q%2?lTPgpvdZg2 z3PX%$-6-5T<#KXYka^&Svwq@oBU+E`Z)N1&T$fnksHulm#P#4F{P{a;y1iz5j#N40cm)EkY}Y?bZu9gmK_yAJKZ zFsQ4JRAn13ub;fIWA@ZLLE%NsA$&)R8!4qHvI;hTtH4ZnL|2aI^|s9-JbymKRDZT{ z@Q{NR-PuF$XJ+moSQ`Ei#x2(DZ$9RpU$M8vGC#E^`s8wW})CYW>?vvI~EA1HR34ZOpa(kcs*F>|W)# zMP^SfF3QU~Lh(FTWcl21KR;*d{1x}J>&j-|89T@Ix!*gRthqUY6H_jYY$hdoO+J1g z$=8VQ5Vj<l+`)sBcX2JzC^Rp95){N?UNiiMn%Ua&#-RHX>Jko|Y;SZb)^|TNrw(m(mPu})hWf6zy*Qf M`G@!w`^;PV4-13)4FCWD literal 0 HcmV?d00001 diff --git a/images/marker-icon-rose.png b/images/marker-icon-rose.png new file mode 100644 index 0000000000000000000000000000000000000000..0a8512c9b8cc3b086b81deb3431ef4074bc384ba GIT binary patch literal 6385 zcmeHLXIPWT+77*}R4GeQLU0AdkT->pgeFp>0-?BqVtJFifdC;P2@pg<1z7_uAgB}( zP_P_CgjE4`6%-XLtFnUV+Cii#f>>76^-Kb`bIx_0%kTU4`(?;5&pUI^J@eepGc!q~ z41XUjO;b%23Z+H&^$Y^F2`IMes^EW1!G_DAx{8F-Idu9Qlsb3-NCjn-0 z*oq2DC?!y5fT9m<8Aeu26;$MPHn7d6>@C2ynZn4%;1v{6TA(fkg#c^=P*;P({b_Qp zlfag})a8GUiYPhaL+wNNW1tE4c*vee0^=b9k%q_9AO|#_L<2Sv59U{>__QJ!(+mY) z;G04^*TaKB_wYaqgnSM+20@`DrE534__oe7Kf7{Sw3nTBf^J+pW5?rNK{KKaGZ~hh zng?h_;S-i5u5VDdxk~qjG>fdoYQ_=EXN0S`k1Cz%I!o{HTJUydP^4b(sW`X0cam?P zPYHvr--&d;H9-Kfg7l%mn{SF||j%o-wrQ zXj<4!hIH?y%FOD(lWzULoKDI*wDceK*IizJ*Q&xxk`9x6@=hxnSn{=&PT+@v_ZE_Yakl_*;Lu zHavNxp(|0XJ>1az2a4lLKiGI=Ko6?Z3J-5|NYZJ#t&mYBKA&f9JMY@cxr$FCp8F-O z8Z{bN9-kcjr1!Z(d(e_Wv-|gTzqbo~S<-eqnU?(K)uR2)7CnZ-YYG<+;87?YS8hnC zIMiw-F z^<6DQf>-;8uvSO2sBDaztERJr1_*eF7)DEYF|i_=#04Ygr2$*kjKiSi5OK5%CKTk6 z2VaPwN%kar2LnrLSsn?noo^q!&sPcE29u~ zqA3-C9ykdsz~Sv79FK?le1u5sl>kVl7W5xSh(eMC2rdW_@#BRo#47=b69pI1;qXWDduuMiS@I>iSQ3YdU||O; z0n4N?NgM|XL}o&)$JA~77xLS$5c+@1?~IAkK8gmCa!2bLoROLB0aU||ZLghfb@ z0}L}A9q>f*XA}WKF33ta=JQp_sMvst%^@%yNn}SXi7lfd1B*#w6R~U-lS3g>5F!;} z%Bk2anm1p_gF!gCJU9Zu31TDU9Wudb?hLvMhF}kUYGK5{Vh$MKf?33kjhB4t2;uUO zU@1jtWNNCZ8rBW4Q9IghtCZ1r26Rx*&oR5Vm}sfNQdg6$!^iAmH?v zO4kqV-2adYEEa^Pzyt^ja}X+)@7l zM_5=20&}oPWN;V32l9{Et;{V+oUZu;@+LLi8ocY9nWm{ z%FD7*#RXOqq72eD@5`n~2JI#Cf+|B{_V${7 z_@cCF&Co(PQ*{!>=FD#UY3DVRYr>RFiX|TN>lTMV zbKERimmA;B)I4_YwN-baG1~g_Nt|78b4}26sNry4RAX;gy<$%<-bQm*-<-nkvU!XB z&QQ!lSELlLZ%kn2D~``_eDrv3cuB@DYn?8IDIP&qDoWM8FP5&i#^tUXijut76~=1c zJ>oWN@JBVFKv%EO`@Y%1xE0svD~ht38;nZ*A2#r&#oXT1`sm%Op9_;zo?YMM+j*eb z^F*@Q``YD2$7pqTN7#ZFQ8hj}uv2gr_g&QGBMtd8Epms)tn>V>UzB*a3>Jirk6TiP zPU#kx{J@`k`P}%mayXXP231@;Fg&eu<$SY(mO7uA@IbiB64x5fS8q(5M6;Emuj~Gr zH2t@d3`1z!l2tjHl>tw^{I}aZ#dSX%3(Ya_ufDaB7ozXoXqI~~pkM@kyV35skx|dU zu$6n@=(3j72L$H3)%Hj4yjsw4FL&^q*tmL)0clCE(^Ck9_iB40?<|J=KMLbtsrvMDZYcm)oQH{Lu}ynEN~*pU-u z(_W)V2J5b+nNHKv9RCjdLMSbBm~mvMg2gIz(WuG&nN@wJ zCrix@rYU0rFJ91Hxb42eqIn{^#vV7P*AHKGn;a6`T49Yg7^q}Hy8CR{i^?;iC&bQD zDSOZC>5q+c%KluB)J zOERFF6oR8xc@*Xb^M}3#Znnr)L5*fy?SeJhn^kbW{R^|WoypSr+=`R0^rh?Ti!P~l zS{jf4C7$-a%!L$fs;VptYvY*sIPbV|E-SdpReOa~!0J$&#M`Ee4_FW}P^ngz|I$N2-yav4u&SfgZRS3F z^7K-~xX+vOIevQ&A26yaJZ*A?A#O;&a5>s}t8;-;zgq>BH|wuo6{p$#l*kOq&bBbo zIaa=By|(`8N@~}goK}vNZ;@nwgK9)mR$A&irKkN@dbXNc+wN=?gw||X8O`qN^a@#i zaCg;F>FGGpKvQy7f#XuCR&HN^>bG?HJ1 zDV}VTkLub`-Ly%^#D9xbzGb=EPj|f6-OO&=um3=#8>ut@?$*#X=qd|~4cAU!(@ih! zTVSR(G{=1+jL_j37>{>Jadazw=cnzkNTL+HiT&WCRd%WQHbDCu(`5uRs zu&$hEmIWkhw_Y#4qR%`sc8j>xz<=49j+X_ciCT40&lLR+mv5ZuC^|PQPk(#H2J}_^ z_G4``_g3vMh8)u4^ehb;L+ZprZ8YU&oYJwC5nbsfzfv%1*3Hd&t%<4ixityrw~Myz z985Fkb5{jMnO1jPdT`zDq2Go3uO=cj8)mlP&@FvEKPwqijS91dgn>}f%(O-|#&5HY zs%91JC~Xnkxx&x153U!Fvd~a>f(6%@}I#T^2=<>3;%_DbHQ5PJ~#;d3sUjf$~itgp_Sv!B#hJON< C*iqU5 literal 0 HcmV?d00001 diff --git a/images/marker-icon-tricolor.png b/images/marker-icon-tricolor.png new file mode 100644 index 0000000000000000000000000000000000000000..0032903732ef79778d46017b957421cf206eed0e GIT binary patch literal 6162 zcmeHLc~p}}*H2i&z9S;I#DId-kQK5>*tZBlWGh&-JV~Bl1QJLB21I00kO~L|s|X0_ z3&kpeP%Ab|osT(3LsK_P?i0>pI>Un$4cl^%R{|sj`_nG<4Z|?ogog0!& zUmp)GbrW?20-?q9boB%MBG6W;qQHA=ergx!F2li09+PQ>Pz4VFiBv)$fhEHs=j>I$ zRzNBu6hWU3nm({)7+EtxD$DyUV4Kd_1;DnP!^qYUkO~Mb&=-S71hygQe*%r4F}qhY zuw^e*`5#3AAxFILJ(w(CG|`%Xw`wQP9V|=R5UQ~L^_@V_D7a|@JPl~b9&zj z;9nZw#l@HD;)0GA33>cT7=e%$Z_i_RwmU99`>nrQ-gjlnZi|Tl7EP~rajKp5taffF z4^+wbYAIv7eBak+*+pYN>w`rdu-yvJB4XKMJxod++L zps)VhyPnQYuDr#w(pyNn5qNTN!SXSVu0kcuTO|IzVCT^5Mvvs0t?Lgx-0`Bj=h(n% zl#*+oG0D3~nkMC4v84_fWQ42_%IwbUWHq9P&3YH?y-QsfY9!@d_x^Dpv%P~|p1seO z=jLyA2$NHF(C3ZwInKUOqwwlb_|mqKh3TTn3&dW24m!ncwNt99a$tdPdbVXXeU*{l z&&wu;b()egL)Fi$4eJkfR5s!E>ddILG@TmBH`wH7sV!-yc6C}_KBYn4k~6yf88zDg z{aQ2h33f+?_Qj;{H%0LC%*uqO4GjYRg{9GF6g3%(>Q*)RR#iZu-%Wfk0?~!w(3S1hc&9 z9AT6-#1*n(YiU%p?7R?m4$^3d69G%mY&e`RU|@!tS}UL5(Ac%q`5Ly})DG<}842+zY4s6*l4uh6MBoPcuFi0a8p$JBk zt;yDStecb{N5t5xqwPdo9^KE?eU1V=F)*7Yl4v>(w{`1Q>#Zbfp(q?jpwVbJJP}7E zVgUjxju%KEDOMmhlTplaxWZzNh#xKC3k7HyC&U)UN*EXnm`A_&FDjbFnx_|t=TrcC z;G|GAj$n<)MMdF0ULlsa#Q~BzhyHejI3PY6#`(cwVXTM)yT!o*iP^^#T+aOZ=vYyt zJRB|u2S>tD04fH%5wM4AoNhDf!gQK)3<2T%|!5`#>Xamq`ld`5OGbPx;>7Lw&DAdruPSm-Vy7?KD@ z0YYIU12bQA=cifVI&mQhtj|>aQ}RWBwGk?%VU#4U_1z1 z7!F8LGKq{Oz#KM(fQPvhcs6t91^hpU2<{?*`aUP9b2%{=q8(0F7T+JL9qzx5eHQRh z9Rc~_N6Xh)ZiqgXsWkDEpK!s942D!>teXM-T z3acumtC$#rXSSI|)XbKen(faAw@rw7((B_leTqAHK^`|tZjj!IyNX90notpoYs6(C zwWnNq{;G4lJ!ZURy3=k$=$;cX^=I=F<1^YTJ8j0l{hAzmAoA5}dVtGdJn2`t- zYphG^aEkTH&HpQQO+yRra_#8yxN8sHOb=~2`=eTEkh3jmoxy|t0~n8x{xgRYC*x0V zXlrRmp1c|Vs^pvIAJ0tRr{2~{dy_;ly|s+oBue?kxVJW$nVe>>6Zx;yGFQh;EB{7s zNA1q(;`*{91Im@n-`vYfiNEt&8uRT*N$stol>BXc(NIOt(!2#L)iRN4o&i=!^-R~p z{=)~jn{s@+HwKyMG@8UD8q~yws`Qm7^`_+CO1-4J)Fw-Eg}NZy8G`hV1Ra0vX=r1Y zUdwOiH7WNDFFj}$3{%k9tn@Smb@PUMO7+-8u=njJ`VTNMYN&&F zpWByU^1_A-t9?-e$tKSOs_>n6?Mj{Z1Uijh-~3BobdGAYzl9C9|7E6h;yz}oc}z?C zbJ_-fS3$Gm@ZOhO2AM{8noI4fFA@uPxf9dRYLgXM6&|j&O-r3tWKSI)RY=S3e|)R@ z`oyJ9)#lT?8g947ZVd3ccuuHnH`8I?cKcmNB_cTFx}&~7@+o0=oCb2+E&OO;z`-8o zlYZSq=fbXSalTV)*ZcrO2YD-hfO}p$W-}%d4=u89tF#{9LC_9Vii*c}Y$^|1x5jA3 z?=UjAll`65gy3$buEKJq^gQD*V|Uw$C*6YfBRf+{0#BpJ_TR-hKG)MTL^vC&`w%y~!E$=yI?u;nl{>2_W;=7r{H>1a*B`?T?6df`?d|B|<{<+mWb=^! z_U?xj7CCz3vEe%v4_Y$x6jdzKbtgjfCew(-W#w0r7lkCP)~(A98WHvmuN_wH!(k;N zl~R0HM{-8YPZ^i~I)^t1;qhBrJ?{^U7>_uhS~Y&2neur$G-aqI?N8Qn+!*vmdkI;* zW`Rjzxud5k>8dz~Xdo^4b4w{|0J+z$KJ;2(*DJT_mr2NbW;^1R-i>Iz@N2M%_Hw-k z1;eVAz8+e87oE$K@|UiBRD1PbCb^oE_Z)Q0o9MeK$Ev~(pj(g@ftUZSpHlG5rPZRt z3C5!HDp0TiG3(s16h9QwL-1IqD-TraVLxUdGLTSMKO;Eb|kO|uJr z={tTg>h;+`XM)%6?BHwUhs4I7!V4JBpW7A}?T#_eSLi=Ec<`Fj%9Vzbo(`jj($Y4p zZ($a#J<-3Z2BVN+63*~-s2PcTLeK5sz0GH0)|rfxubyvf@f&zDk zmehoxB=zh9!)Zw_t@~msdcRv}IHVbr3n>u0GnQ68;z=7tF1hB{CeP}pSoJ}i%9_%wY>FX@CC}BO@TN@OxHzm8%oDjG!ck1C!&%;jrv8hW+7-KE& zBI+XwSDC1KuPq)oe0o_q;WwK!^XI+OvHKc`?#ddZx0b<;<|d|l)Hxl}1sabYYnk54 zHcEJd&dSX|9eC-zS~D^$!Wv)5Zq4ub?d@3lAd1;NP_?&s38Zbh=54xnqW<-QMa$bt zjjp%+#^2L?qt9vP1p8`=lY64L@U4lWM*e!#_TAgwow_j8cF;-Rr`~7h`IFGO+LM=) z(=Ji>=kDYvOm$ShYFKgJ>5iZJ_>s}9$*{`i)B|A^Y0VND0>!@7qr2-7qB zX;jQ#F^cc-vk6MWVom~K92OAPABOQ9_X&_m`I!d_oqJ06{h@Es7MZAZ`T} z9o)Bq3xY*FS}9Ug4jyTBKt=|vgMtbUsIAU@0TE|<&K&1V|1+GM`@MUA_jkYVcfb3= zBR?WM#D*}PfWzTzB%z{6&`$%+%hDWtH3B0^|242($Ly`ZCXZpTH4MB7&Ia^lpfQ2%1o|VOp&Lf` zss}dqu{8d0O>joU+df1hjUY0q3_6v?0qf~ZmVm(&FnB~@(0v6gKG+|>_nk)=Q{Asu z?0|o{XmD_ZBsiF;(W(__GJ?Yy%CfcyLoWxq{jefRyk*l~GqD>p`m?%`ui)eJCeQhD zaYc+p$-;|!CBen_?~`ks-F}NdCaB@{{iAD+<@%Y#6V&ic)X4j9isu!$*cH8c+TYpT z|0(fSb6B-Nw(h`P#hl4gS--@5*EeO>5NvO908vcS6>t4=V5Bx=-O02?yL)o_Z?qom z^)a6$y6?gY`__n+V#=`^L1HgSbcFHQv{V-Ee{3SD%%2BAeFI(3Q`M#QOzO7A|ALJp6w*Q98Zjp4{) z8j_4C0aOQeWxTf~cHzcXU=k#vN{w+95c@r(9#y;(>pkDF8DlsT9RbV7dEZ07jok!;;Yv*q6(oa5x+Vg^jRS6d6Otqrh^uuZ+%NAbf~Ff#P#5 z3bGPPp6C@uB?nY&8COADAh3wK`cy8ZWxz z(^7DqfKmz8y#ZAQgBlHV5G= z5DJR}@`3HEU{D|h#Gx={zI=quLJ%Ipd7oXUR_N0pEfSOnbOc&~^fdm0B9e^<<@G)~ zZ54u@0uYQs=Tn%BXa-BbKDbT%d!?avR9fiPem%wkUgV^+5`J5cp$u{omvwynACrRNxQ2 zH1Ix{w#2dxyi1zP7KVsG?}2;MXI6{-kK+?fXo3!hvvR~59=EH^1q@o~B~r1)18c`g zW}of(J_`&@;z&e6(eanhY;Rr&C%RnC3E8;aiPlQJ@42^h$AUo5LpD6CX_lo6yc0GS zv`SAcvwV1!D(J8@&0Xg7D#vLJXW2D!YRr+{`$&_b>Cwp-VjXWtw8zv_b=Pk-ORkEt zy6mrSAATkrNT=O9sQLUB_@tzy_{PS?0HxK&0Gii`>FVP3ufRQHu;OdKywQVPkYOa`^d5ri9bCkJ)D+SeQv6oZR2No z&~GN0gv`@t&WMwey!-n4%69LLjEigR>G7dzOAs(X7c2nJ9gMN(4SxC&-Hm?M~sV$Baw>3X7>ct z)YRB7YZr@-*&iqiPuyR=XT=voy}btx9hvh(U`&j}!$DS+o^kh*RiGM0o02@73!0ui zt9mpr@St>X?f0>>vu)NjcCT6NDRq}OVVN*lHy5nV)>dFfM z;$XXB4}LMvZCh#SlqF*CuO83vJ9g|?D9_Egt-rdsx3_o3x`z)@?ovpr)kq*@` zsk^&-1^#dZS?=22+}wP@%WZR`^7*`qZ*Wba9?U}{nE`1&&UZ~0bb4NquG*E?_RwQ` z;XX3K&(F`z&26QN`H>@4=gx(|@cs@TlaclZgT4v;H-0yd_6d4=dd@!W=;)}dswyri zadgO^gv-jxI$QNnziZPb0{%5Fp!)U(d`sW+YjD@%ftMG1(o$2mnH+pUIBLJ+o;Sqx zT48zz`*8>+2jtHaB*k?S0{XDm3H!&f2BV2OalH!^53>R%T}YRrXYn_|>k? z0tH;S{NlY8FDg_|2scSvLW6AQ&z~<^_4#;)6y1II;T77ck#*yE%n=-`Y zXNwP7+u5m2s!p9EHcUCyw+UF>mGie*xe8(>VYD literal 0 HcmV?d00001 diff --git a/images/marker-icon.png b/images/marker-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..950edf24677ded147df13b26f91baa2b0fa70513 GIT binary patch literal 1466 zcmV;r1x5OaP)P001cn1^@s6z>|W`000GnNklGNuHDcIX17Zdjl&3`L?0sTjIws<{((Dh&g-s0<@jYQyl?D*X^?%13;ml^gy> ziMrY_^1WI=(g@LMizu=zCoA>C`6|QEq1eV92k*7m>G65*&@&6)aC&e}G zI)pf-Za|N`DT&Cn1J|o`19mumxW~hiKiKyc-P`S@q)rdTo84@QI@;0yXrG%9uhI>A zG5QHb6s4=<6xy{1 z@NMxEkryp{LS44%z$3lP^cX!9+2-;CTt3wM4(k*#C{aiIiLuB>jJj;KPhPzIC00bL zU3a#;aJld94lCW=`4&aAy8M7PY=HQ>O%$YEP4c4UY#CRxfgbE~(|uiI=YS8q;O9y6 zmIkXzR`}p7ti|PrM3a}WMnR=3NVnWdAAR>b9X@)DKL6=YsvmH%?I24wdq?Gh54_;# z$?_LvgjEdspdQlft#4CQ z`2Zyvy?*)N1Ftw|{_hakhG9WjS?Az@I@+IZ8JbWewR!XUK4&6346+d#~gsE0SY(LX8&JfY>Aj)RxGy96nwhs2rv zzW6pTnMpFkDSkT*a*6Dx|u@ds6ISVn0@^RmIsKZ5Y;bazbc;tTSq(kg(=481ODrPyNB6n z-$+U}(w$m6U6H$w17Bw+wDaFIe~GvNMYvnw31MpY0eQKT9l>SU``8k7w4)z!GZKMI z#_cEKq7k~i%nlK@6c-K?+R;B#5$?T#YpKD`t_4bAs^#E+@5QW$@OX3*`;(#{U^d-vY)&xEE>n5lYl&T?Amke9$Lam@{1K@O ze*LXqlKQHiv=gx+V^Cbb2?z@ISBQ*3amF;9UJ3SBg(N|710TLamQmYZ&Qjn2LuO<* zCZlB4n%@pc&7NNnY1}x+NWpHlq`OJEo|`aYN9<`RBUB+79g;>dgb6YlfN#kGL?lO_ z!6~M^7sOnbsUkKk<@Ysie&`G>ruxH&Mgy&8;i=A zB9OO!xR{AyODw>DS-q5YM{0ExFEAzt zm>RdS+ssW(-8|?xr0(?$vBVB*%(xDLtq3Hf0I5yFm<_g=W2`QWAax{1rWVH=I!VrP zs(rTFX@W#t$hXNvbgX`gK&^w_YD;CQ!B@e0QbLIWaKAXQe2-kkloo;{iF#6}z!4=W zi$giRj1{ zt;2w`VSCF#WE&*ev7jpsC=6175@(~nTE2;7M-L((0bH@yG}-TB$R~WXd?tA$s3|%y zA`9$sA(>F%J3ioz<-LJl*^o1|w84l>HBR`>3l9c8$5Xr@xCiIQ7{x$fMCzOk_-M=% z+{a_Q#;42`#KfUte@$NT77uaTz?b-fBe)1s5XE$yA79fm?KqM^VgLXD07*qoM6N<$ Ef<_J(9smFU literal 0 HcmV?d00001 diff --git a/images/spritesheet-2x.png b/images/spritesheet-2x.png new file mode 100644 index 0000000000000000000000000000000000000000..c45231aff86b1344333414cdfa7a2a74d38d5304 GIT binary patch literal 3581 zcmb_f`#;nBAOB2clxyUYb<>4Ynk1K8OH(Z&mzm3$Tyx3X$HJB_R+xiO7)ip%jA&_M zl!g=0DI?9L49i_)E<@k-{pI@)d|!{p`}%mjuaEcZ`Fy_bU9q_!y?ys~005+s7ZLUV zAm%Kpn@EU@^7{ODOi{5l!UE|iA+k6LAF`+|8G6wrLge4~CqXPU^I}Aus*#q?kq$V& zNc`1sUjUEC!vjKsBD}AL`oeMH{&}+|yG7mvB;u@NO#aLuF$Lxy3!R_SjbJ6a7tRHv zBz1~*mIVgf1VOjVip+7Z;f4r4FSwLrXXkj}z+=1B1NW~XOT>;Iw+;<}CA@r#lE0(? zd3i0IzewW74Wp>ECohsvqkk$E}Ms%B2GGcE&2IsxA>@@3X3m zDG^w?t(hOXlBT_cpS&2Dn|fFVwPcdu>G`b>)^_?a2;I}xzh~>4em_0}F`+6N=b))5 zLvEh|>p9CCdt9b&^Nrhjjm187ePKOPzjf=DLC&QTs(QE@DG$KNeuI&6ASNZCEEYc) z^=4&drTg>cr(@e`G~Lz)@iTjygDgj_!8H%>P9nM8^sHQdKsdqY=A2N?F-n=V2k=N+ zfT{pCVlg&|RwE;$y}1t`8uq<7bbQgI+mNCQf^{R4P0N-*8sv-e-K#wf)44&Bkv)x} z-`}1E>QMTXP8^-?#Rkp$tp3h{vasOc>3I`eGI`o2V^r3XUao;FTaV2oHxysdT<=-l zAV$OZEDRid@nB)L+Ah%PGbix1ApRKl<#nz!eQMlpHZo`z5XX)hB({%*YvdT{-Uudg z|FL-Ow6wHTIXgSMDMxC8REOLg)GnKxotT&~b#QRV$vM#IC?zAa>6dZn24tYVnVyz? zsRVDn(0*_jOKAvJ-MxD<_t7J!LNnKLR2t~j3T;nTuhEl8 zq+Wdb5#@StSLM2@pHQEk#jOkc{LH#SKlsbMi#)ToX5s;ufI`UB(}f$1pgvZdV7h-v zz2@Jrdp2$H9E>$~WyDvk zt*tp#xz&YWP<4(?*7(wbLLiYg>jn}mgiijyQ;=2i2Uj81L3JtlR_7o)yz zH)gs}C?qm!YZoO*2Jn&UCtw06YS4DCQRI&s0b_pLOIp=OH71JzkH&X$8vcHMA!cza z^MB>VmXx0ik5cSYLSKMfMtLklUNOh{e8;5^c8VLguc!6Bu3amua6D>ybIo{I0huvi zcKY<{xo?yCFrYi>>WXq%S?YUIgMLUlY^>Sz3K2r6EUfqcG`R2H*Ju0k6T5X8Wf(};_CV?wb+smDvO#Pu`cr_B=a3D zCk$?wcQ3w7ZodT(K(3?SKFfb+Ix;6dsd$?K-*h?4AfbsoAnVy>C)pQe>uB3hYcxFB z6gD?)^DsAU=Jm-H7O@oEJVr{UPYK4tnf}UZ#r7%tARkLX1v|w?wo`)j+`zahlb}W6 z&8)^H)VsuTygfZ1UqC!LjM2}vdIAcIHP;+=Jh!j?v|X!v(d?*tVYT8cuH{5Sn?0>Z z#oGk9`eA&A!A51x30pvdr$8UIhy3J6`it=32Rh?!fIfOC0WQ@d+Y>ub1sFl3s;P`l)3e7w zn%~@l5@{fQ3yB=pb3WmW!VVfu8J%@t^sB5_@kxV;Mr!%w9_N*iH|!txcrm5ynDR0$ z_6gxeV%?MEcAj2dFi}6)%`IO3?)NmMud$Sl^C;VUZLmwzk+Ssc%Z&olE*&`X$Zp!^8B9jJ~>PDhha_Ra+2GOEko*&K!KX z<$k*iSI40`>^Zb7aOPfYxxv;`E!vGw?Q#66*r98#lJ@7mu&%c*Z%AtndqyxTDk`Fl zS~461(~tn2EcKPloZjY?oqP;6ob$d9a~`K2w=xK4vaS> z>mxIMzF5SF_YGK&8+LtzC10-Z$dYqm3qH_wf&J%C8fkHkz>O~p%vP+jHDk-2wOk*?e6=`v!$6gD zXD08sxy5Q=GY-`Yuk}>`$mFcmkL60vGtL;unK8Al(&I^EV{dxB;}y>%T7%nOR4(|e zb{oizu%cIL9)pGU99zhW&y4TE_hv6~(WtM1+nWPXdiq{Y+Zoq^OB5cgMqZa;b$iAY zgL1EroM4GatZ8d#W@-%hUaW#mZa)VSwEaxQpPl8SD_uDY+mwJ;bm1NQ@?QxU>Sfm| zUHVjlPHKL(o1!IN&lq}1mTSOuTvAi7VTa|*LRPBI^X|0^9itfF_;u5?6It@KXl**+ z85lTO18x>q#!z_G&4D^1%13bqUyhVd4k{=p@PpY_4)C1Un(E23B*f@JCT7-a_i1@~ z)SqC0#2`_)pYcsa8W%($Rtye_f}Qt;a4NS^tV5-kV}8ftyMK&tSk%*silA!u`xW5O z&=3(ipI;KHRqgsw#4mdtd(Q`aRA77ktW_G(%G)n7dtsFsykw-Z^^G20@nsn{Klx~~ z5*+#AdCuPondXp zTH4~hI|Vabv^^)yZF`$o#WrheYxih(yfVo_`u6E^5bqP}k#WDhaEqZ`8>@80FafGH zIMg6TL1W7%Gtkqv89svd>uvnO^lUXQew###hytMi&4CjtGP`bZK|JwXxuX$j0i4%< z7q)Jbx9Xx@9a!k!W0SLuzti&H1YkJuM2bg4%+DnKg#*HH<^U2kNCR!*0%!SHBV@*L zJ4MF&f>eZL;x`)4@E{O~b1$6PNusXCZEAEp$d;DvBs8|E)c&yfqN1y=-V`H~3;Ox~ z3OVd4q)Y8?`}z7x!n+Txhmf0Gl?XHzJ3M(u=2tw?e=OgOv``~u99-C9kA+rHlPk9G zN^f%DTuX0bYhpd(&Z7$Rb93wSEkb;dik79qwY88bkxtrAO7r}FZ;o#{T3}H$|4530 zX?$CBE{VkxZkB-*NSSGvyHdKjOk#7ZZ;vmpepVzWKN&;T;iM&?HAROH^aw5aQCU3T z!H$W7f`UeYZb^w~pD@u`E)j{pub|O=@gha}NA2UAhE*1$A_luWw0n(Bp602PmQ(vEjZrBI>^%!!+W>I=~TZtF*Peo+n(heqw2o|zfU>yG^`j4kB5k|9F|j&*W=71 z=W_?-9ZS7Vt%W>>7E?d0Mf0xf{queA>-yf`?|on2KR(yzzCYI|^`awYx4gPM0ARPh z9U2D!?2!14kd+qaoK_uw@wFr3ti6k@IAUe5rHE^}P`k?!07!rSd0>c0^AqCce)2gy z**Szrj=mc12cn~+jRQ!55x!SL{ftAx{qt8&tBZg0?a|gQl!9fpN06qQip=Wv)D%Y- z+bg+w(aFW?lgyt1|9)ik>q%L+jrR?%LpEbnIpOt#PI47gtD8Xgkp?04z@vSC?o-yT zs)RLFQ&Mk)a7XZwPQ1fXhWF4FZ(?J55vMD5sr6?s^WZS?6c1xEs1ktlD89lbT4wr7L0U z?Ey%L8UfB3 z6Oo*h^2-)Lt*E^xr-tS4g2z6x4@=;H7tUP;O04r6_s<$_v*!eF15ymD~r9(3MS4qmRge#Kgp?GsW8{XrmeD>HT?B zYsDmcE>bm3*w)sDVF&?Dp~-{b&E1rimUhg+>dm#UI1$hEGX>wex1SLpMe9RhFR<5~;%m8wdW36OCQws-U? zbNLM@^k(Q8_sGqZ=lG#KD_po)L;L4B_Yzc8kXpSterHwlZVn25JZCp>)@&EDDq6c_LRD2YN?%BUQzu*j1W4nA z9ywrRV`C;B)G698=(YVU$kX1a9QR2JR1$cbY<8(uUpe?J6ROf%NZ|G8XPXUqoE5lY zN~-R9YVZdK2M5wk>hL*Djkt=fz&7)NFa!t{v(VA8eseemAE1UD2#Zo0-O;Xw1a{=e zCa0eZ)~<{M-duKg+j}+OpqI`5s~Sd>ra?76Qoz~SdD{hBC{sTGhb%y<${}DTVb1>W zy4h!1VdgNg+bn;0#2~Mc)9~QChvS926L9BiTz@yCOTe4GL4hYvyJ0y`n!2Cjg17|I z6Z|1UfGQFkCH9^uvf9jEue9D~IOsLR8WO&)?r#I#Jhs#P~1v1k(GWp2GNdUiy& zFkVOT{t}{T5Kh1T#hW`m6!3@N<=edW%?CKI=0nKdZO^E!Gp`B?xm+%y|Ks0XLrl`s z*)3Pl@rK#qbaIoDn!>Oc&yh2A)~7Fh7xYvnjD1O4b*Q;ydC#^%0o^lh2|yEs&m7VGd*3r@g*4vB#4OMn2LG^OP=)U z%Q2`;tltV!*h`;LiFz^LwGe6pF^+p_G;C@;AKtdqPD*7I-`(47h>#0xdIt$(MG`dk zj-;Zx30`0vhjSYitI?ZPm&*|5m*EUIG;JAAHMJ%<2 z>h;tap8Q9i@Ja!MZ@7fV8t!>s51Tn)nkiUcU-rtBOfOo<-aBWaoBOZeI|(OHD9+J- zO<4V#$CFY3^X8if#me{Q3N&4=al@ts2J{h`nPYpYt>>Bl03yB@A9L$QC!J0Y0hE1K zH_7C+ALn1T)^@1%3P9{($KnPze2vZH=3p&Ho=K>j1A6+-h~D9OBbsT9V5RH01*1Qf z5O1y6xoAFeQJ=owm&-n7Ts-hmyMyuc>jZCI1`=-7fR#HBJ!>a;3je&1G|Iqa;~@OU zFU2V&e{Ld(%d-`&j|a|4(L^E^+csfMgU~=v&b-S#u zudmR(Iq2qsS45tW+~pasy_~(gwzkGDEiENAPH9TgYTR28V$BxX8nc^wOf4;U9y~>R z=_cYoV~U4^X$~Ghm30w3SbBPl>WTiHVD#iOn_Aw7-7~XdSf_VAR{)g66#YCQJ%5%~ i{eP_FzxHA`84t@4c6%tZ%} + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/index.php b/index.php new file mode 100644 index 0000000..82744c5 --- /dev/null +++ b/index.php @@ -0,0 +1,55 @@ + + + + + + + + + + CCCP: Cargobike Community Canvassing Program + + + + +
+

Research - View stats and cut turf

+

Canvassing - Get a map to knock doors in a selected turf

+

Phonebank - Make calls to voters within a designated turf

+

Settings - Configure CCCP

+
+ + + diff --git a/js/canvassing.js b/js/canvassing.js new file mode 100644 index 0000000..c5ec03f --- /dev/null +++ b/js/canvassing.js @@ -0,0 +1,844 @@ +/* +* This file is part of the Cargobike Community Canvassing Program (CCCP). +* Copyright 2023, Brian Flowers, SlightlyCyberpunk.com +* +* CCCP is free software: you can redistribute it and/or modify it under the terms +* of the GNU Affero General Public License as published by the Free Software +* Foundation, either version 3 of the License, or (at your option) any later version. +* +* CCCP 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 Affero General Public License for more details. + +* You should have received a copy of the Affero GNU General Public License along with CCCP. +* If not, see . +*/ + +// Enable drawing functions for cutting turf +// (Using LeafletJS leaflet-draw plugin +function enableDraw() { + if( document.getElementsByClassName("leaflet-draw").length > 0) { + return; + } + + // precinct/block layers will have a type; layers without a type are probably draw layers + var layerKeys = Object.keys(map._layers); + for(var i = 0; i < layerKeys.length; i++) { + if( typeof map._layers[layerKeys[i]].type != 'undefined' ) { + map.removeLayer(map._layers[layerKeys[i]]); + } + } + + // Add the controls for cutting turf + var drawnItems = new L.FeatureGroup(); + map.addLayer(drawnItems); + var drawControl = new L.Control.Draw({ + draw : { + position : 'topleft', + polyline : false, + rectangle : false, + circle : false, + polygon: { + allowIntersection: false, + drawError: { + color: '#F00', + message: 'Please do not intersect.' + } + }, + marker: false, + circlemarker: false, + }, + edit : false + }); + map.addControl(drawControl); + var polyIcon = document.getElementsByClassName("leaflet-draw-draw-polygon")[0]; + polyIcon.style.width = "auto"; + polyIcon.style.backgroundImage = "none"; + polyIcon.style.padding = "0em 1em"; + polyIcon.innerHTML = "Draw Turf"; + + var toolbar = document.getElementsByClassName("leaflet-draw-toolbar")[0] + var save = document.createElement("a"); + save.innerHTML = "Save Turf"; + save.style.width = "auto"; + save.style.backgroundImage = "none"; + save.style.padding = "0em 1em"; + save.onclick = saveTurf.bind(null, drawControl); + toolbar.appendChild(save); + + var cancel = document.createElement("a"); + cancel.innerHTML = "Cancel"; + cancel.style.width = "auto"; + cancel.style.backgroundImage = "none"; + cancel.style.padding = "0em 1em"; + cancel.onclick = disableDraw.bind(null, drawControl); + toolbar.appendChild(cancel); + + map.on(L.Draw.Event.CREATED, function (e) { + var type = e.layerType, + layer = e.layer; + if (type === 'marker') { + // Do marker specific actions + } + + layer.type = type; + map.addLayer(layer); + }); + + map.on('draw:edited', function (e) { + var layers = e.layers; + layers.eachLayer(function (layer) { + console.log("noop"); + }); + }); +} + +// Disable drawing of turf +function disableDraw(drawControl) { + map.removeControl(drawControl); + var layerKeys = Object.keys(map._layers); + for(var i = 0; i < layerKeys.length; i++) { + if( typeof map._layers[layerKeys[i]].type != 'undefined' ) { + map.removeLayer(map._layers[layerKeys[i]]); + } + } +} + +// Show/hide a particular turf +var turfLayer = null; +function toggleTurf(turf, event) { + if( turfLayer != null ) { + map.removeLayer(turfLayer); + turfLayer = null; + return; + } + + if( event != null && !event.target.checked ) { + return; + } + + var coordinates = []; + var turfjs = JSON.parse(turf.json); + for(var i = 0; i < turfjs.length; i++) { + coordinates.push([turfjs[i]["lng"], turfjs[i]["lat"]]); + } + var geometry = Object(); + geometry.coordinates = [coordinates]; + geometry.type = "Polygon"; + + var featObj = Object(); + featObj.type = "Feature"; + featObj.geometry = geometry; + featObj.properties = Object(); + featObj.properties.NAME = turf.name; + featObj.properties.OBJECTID = 2; + + var geojs = geoJsonBuilder(JSON.stringify(featObj)); + turfLayer = L.geoJSON(geojs).addTo(map); +} + +// Load turfs from the database +function loadTurfs(research = false) { + setLoading(1); + fetch("api.php?get=canvasses").then(data => data.json()) + .then(turfs => { + var turfList = document.getElementById('turfList'); + if( turfList == null) { + return; + } + turfList.innerHTML = ""; + + for(var i = 0; i < turfs.length; i++) { + var label = document.createElement("label"); + label.setAttribute("for", "turf-"+turfs[i].id); + label.innerHTML = turfs[i].name; + turfList.appendChild(label); + + // Create the list of canvasses + var table = document.createElement("table"); + table.setAttribute("class", "subcategory"); + var row = document.createElement("tr"); + var cell = document.createElement("th"); + cell.innerHTML = "Canvass name"; + row.appendChild(cell); + cell = document.createElement("th"); + cell.innerHTML = "contacts"; + row.appendChild(cell); + cell = document.createElement("th"); + if(research == true) { + cell.innerHTML = "[ delete ]"; + } else { + cell.innerHTML = "[ start ]"; + } + row.appendChild(cell); + if(research == true) { + cell = document.createElement("th"); + cell.innerHTML = "[ view ]"; + row.appendChild(cell); + } + table.appendChild(row); + + for(var j = 0; j < turfs[i].canvasses.length; j++) { + var row = document.createElement("tr"); + var cell = document.createElement("td"); + cell.innerHTML = ""+turfs[i].canvasses[j].name+"
"; + var start = turfs[i].canvasses[j].start; + var lastActive = turfs[i].canvasses[j].lastActive; + var end = turfs[i].canvasses[j].end; + + cell.innerHTML += "Started: " + start + "
"; + cell.innerHTML += "Last Activity: " + lastActive; + row.appendChild(cell); + cell = document.createElement("td"); + if(research == true) { + var resLink = document.createElement("a"); + resLink.onclick = showCanvassStats.bind(null, turfs[i].canvasses[j].id, turfs[i].canvasses[j].madeContacts); + resLink.href = "#"; + resLink.innerHTML = turfs[i].canvasses[j].madeContacts+" of ~"+turfs[i].canvasses[j].totalContacts; + cell.appendChild(resLink); + } else { + cell.innerHTML = turfs[i].canvasses[j].madeContacts+" of ~"+turfs[i].canvasses[j].totalContacts; + } + row.appendChild(cell); + cell = document.createElement("td"); + var button = document.createElement("input"); + button.setAttribute("type", "button"); + if(research == true) { + button.value = "delete"; + button.onclick = deleteCanvass.bind(null, turfs[i].canvasses[j], turfs[i]); + } else if(turfs[i].canvasses[j].start == '0000-00-00 00:00:00') { + button.value = "start"; + button.onclick = startCanvass.bind(null, turfs[i].canvasses[j], turfs[i]); + } else if(turfs[i].canvasses[j].end == '0000-00-00 00:00:00') { + button.value = "continue"; + button.onclick = startCanvass.bind(null, turfs[i].canvasses[j], turfs[i]); + } else { + button.value = "resume"; + button.onclick = startCanvass.bind(null, turfs[i].canvasses[j], turfs[i]); + } + cell.appendChild(button); + row.appendChild(cell); + cell = document.createElement("td"); + if(research == true) { + var button = document.createElement("input"); + button.setAttribute("type", "button"); + button.value = "view"; + button.onclick = viewCanvass.bind(null, turfs[i].canvasses[j]); + cell.appendChild(button); + row.appendChild(cell); + } + table.appendChild(row); + } + + if( research == true ) { + var header = document.createElement("div"); + header.setAttribute("class", "header"); + var contacts = document.createElement("a"); + contacts.innerHTML = turfs[i].madeContacts+" of "+turfs[i].totalContacts; + contacts.href = "#"; + header.appendChild(contacts); + var show = document.createElement("input"); + show.setAttribute("type", "button"); + show.setAttribute("value", "Show on map"); + show.onclick = toggleTurf.bind(null, turfs[i], null); + header.appendChild(show); + turfList.appendChild(header); + } + turfList.appendChild(table); + if( research == true ) { + var create = document.createElement("div"); + create.setAttribute("class", "footer"); + var canvassName = document.createElement("input"); + canvassName.setAttribute("type", "text"); + canvassName.setAttribute("placeholder", "Canvass of "+turfs[i].name); + canvassName.setAttribute("id", "new-canvass-"+turfs[i].id); + var canvassButton = document.createElement("input"); + canvassButton.setAttribute("type", "button"); + canvassButton.value = "New Canvass"; + canvassButton.onclick = createCanvass.bind(null, turfs[i].id); + create.appendChild(canvassName); + create.appendChild(canvassButton); + turfList.appendChild(create); + } + } + setLoading(-1); + }); +} + +// Intermediate callback to handle UI portion of saving a turf +// Calls saveTurfToDB to actually persist it +function saveTurf(drawControl) { + var layerKeys = Object.keys(map._layers); + for(var i = 0; i < layerKeys.length; i++) { + if( typeof map._layers[layerKeys[i]].type != 'undefined' ) { + var turfPoints = JSON.stringify(map._layers[layerKeys[i]]._latlngs[0]); + var blackoutElem = document.createElement("div"); + var nameElem = document.createElement("div"); + + blackoutElem.setAttribute("id", "blackout"); + blackoutElem.onclick = function() { + document.getElementById("map").removeChild(document.getElementById("blackout")); + document.getElementById("map").removeChild(document.getElementById("turfNameEntry")); + } + nameElem.setAttribute("id", "turfNameEntry"); + nameElem.innerHTML = "Enter a name for this turf:
"; + var nameInput = document.createElement("input"); + nameInput.setAttribute("type", "text"); + nameInput.setAttribute("id","turfNameInput"); + nameElem.appendChild(nameInput); + nameElem.innerHTML += "
"; + var nameButton = document.createElement("input"); + nameButton.setAttribute("type", "button"); + nameButton.setAttribute("id", "turfNameButton"); + nameButton.setAttribute("value", "Save"); + nameButton.onclick = saveTurfToDB.bind(null, turfPoints); + nameElem.appendChild(nameButton); + + document.getElementById("map").appendChild(blackoutElem); + document.getElementById("map").appendChild(nameElem); + disableDraw(drawControl); + return; + } + } +} + +// Write the turf data to the database +function saveTurfToDB(turfPoints) { + var name = document.getElementById("turfNameInput").value; + + var options = { + method: "POST", + headers: {"Content-Type": "application/x-www-form-urlencoded; charset=UTF-8"}, + body: "name="+encodeURIComponent(name)+"&turfPoints="+encodeURIComponent(turfPoints) + } + fetch("api.php?set=turf", options).then(data => data.json()) + .then(resp => { + loadTurfs(true); + }); + + document.getElementById("map").removeChild(document.getElementById("blackout")); + document.getElementById("map").removeChild(document.getElementById("turfNameEntry")); + +// loadTurfs(); +} + +// Start a new canvass for a given turf +function createCanvass(turfId) { + var name = document.getElementById("new-canvass-"+turfId).value; + if( name == "") { + name = document.getElementById("new-canvass-"+turfId).getAttribute("placeholder"); + } + var options = { + method: "POST", + headers: {"Content-Type": "application/x-www-form-urlencoded; charset=UTF-8"}, + body: "name="+encodeURIComponent(name)+"&turfId="+turfId+"&voterStr="+encodeURIComponent(getVoterString()) + } + fetch("api.php?set=canvass", options).then(data => data.json()) + .then(resp => { + loadTurfs(true); + }); +} + +// Display a canvasses's turf +function viewCanvass(canvass) { + setLoading(1); + fetch("api.php?get=canvasses&id="+canvass.turfId).then(data => data.json()) + .then(turfs => { + + for(var i = 0; i < turfs.length; i++) { + toggleTurf(turfs[i], null); +// document.getElementById("turf-"+turfs[i].id).checked = true; + } + setVoterString(canvass.voterString); + + setLoading(-1); + }); +} + +// Don't feel like figuring out how to bind additional params to updateLocation +// so let's just use a global... +var currentCanvass = null; +var currentMarker = null; + +// Start walking a canvass +function startCanvass(canvass, turf) { + setLoading(1); + map.on("moveend", loadVoters.bind(null, false, window.location.pathname.indexOf("research.php") == -1)); + loadTurfs(); + var json = turf.json; + var turfPoints = JSON.parse(json); + var latTot = 0; + var lonTot = 0; + var i = 0; + for(i = 0; i < turfPoints.length; i++) { + latTot += turfPoints[i].lat; + lonTot += turfPoints[i].lng; + } + + map.setZoom(19); + map.setView([latTot/i, lonTot/i]); + enableCanvassControls(); + currentCanvass = canvass; + viewCanvass(canvass); + + var options = { + method: "POST", + headers: {"Content-Type": "application/x-www-form-urlencoded; charset=UTF-8"}, + body: "id="+canvass.id+"&name="+encodeURIComponent(canvass.name)+"&turfId="+canvass.turfId+ + "&start="+(new Date()).getTime() + } + fetch("api.php?set=canvass", options).then(data => data.json()) + .then(resp => { + loadVoters(false, window.location.pathname.indexOf("research.php") == -1); + }); + + + toggleControls(); + setLoading(-1); +} + +// Delete a canvass +function deleteCanvass(canvass, turf) { + setLoading(1); + + var options = { + method: "POST", + headers: {"Content-Type": "application/x-www-form-urlencoded; charset=UTF-8"}, + body: "id="+canvass.id + } + fetch("api.php?delete=canvass", options).then(data => data.json()) + .then(resp => { + console.log(resp); + loadTurfs(true); + setLoading(-1); + }); +} + + +// +function endCanvass(canvass) { + setLoading(1); + + var options = { + method: "POST", + headers: {"Content-Type": "application/x-www-form-urlencoded; charset=UTF-8"}, + body: "id="+canvass.id+"&name="+encodeURIComponent(canvass.name)+"&turfId="+canvass.turfId+ + "&start="+canvass.start+"&end="+(new Date()).getTime() + } + fetch("api.php?set=canvass", options).then(data => data.json()) + .then(resp => { + console.log(resp); + }); + loadTurfs(); + + setLoading(-1); +} + +// +function updateLocation(position) { +//alert("CHECK2"); + map.setView([position.coords.latitude, position.coords.longitude ]) + if(currentMarker != null) { + map.removeLayer(currentMarker); + currentMarker = null; + } + var markerIcon = L.icon({ + iconUrl: "images/marker-icon-misc-yellow.png", + iconSize: [24, 36], + iconAnchor: [12,36] + }); + currentMarker = new L.marker([position.coords.latitude, position.coords.longitude], {icon: markerIcon, persist: true}).addTo(map); + setTimeout( function() { viewCanvass(currentCanvass); }, 1000); +// setTimeout( function() { navigator.geolocation.getCurrentPosition(updateLocation); }, 60000); +} + +// +function locationFailure(arg) { + toastMessage("Unable to update location:
"+arg.message) + navigator.geolocation.clearWatch(geoWatcher); + this.classList.remove("watching"); + geoWatcher = null; +} + +function toggleControls() { + enableCanvassControls(); +} + +// +var geoWatcher = null; +function enableCanvassControls() { + if( document.getElementById("canvassToolbar") != null) { + return; + } + + var mapElem = document.getElementById("map"); + mapElem.setAttribute("class", "full"); + + document.getElementById("controls").style.display = "none"; + + var coder = L.Control.geocoder({defaultMarkGeocode: false}) + .on('markgeocode', function(e) { + var position = {}; + position.coords = {}; + position.coords.latitude = e.geocode.center.lat; + position.coords.longitude = e.geocode.center.lng; + updateLocation(position); + }) + .addTo(map); + var geoctl = document.getElementsByClassName("leaflet-control-geocoder")[0]; + geoctl.parentElement.removeChild(geoctl); + + + var toolbar = document.createElement("div"); + toolbar.setAttribute("id", "canvassToolbar"); + + var gpsBtn = document.createElement("button"); + gpsBtn.onclick = function() { +// navigator.geolocation.getCurrentPosition(updateLocation, locationFailure); + if(geoWatcher == null) { + geoWatcher = navigator.geolocation.watchPosition(updateLocation, locationFailure); + this.classList.add("watching"); + } else { + navigator.geolocation.clearWatch(geoWatcher); + this.classList.remove("watching"); + geoWatcher = null; + if(currentMarker != null) { + map.removeLayer(currentMarker); + currentMarker = null; + } + } + } + var gpsImg = document.createElement("img"); + gpsImg.src = "images/GPSLocate.png"; + gpsBtn.appendChild(gpsImg); + gpsBtn.setAttribute("id", "geocoderGPSBtn"); + toolbar.appendChild(gpsBtn); + + var addrBtn = document.createElement("button"); + addrBtn.onclick = function() { + document.getElementById("geocoderAddrInput").focus(); + document.getElementById("canvassToolbar").classList.add("addrInput"); + } + var addrImg = document.createElement("img"); + addrImg.src = "images/AddressLocate.png"; + addrBtn.appendChild(addrImg); + addrBtn.setAttribute("id", "geocoderAddrBtn"); + toolbar.appendChild(addrBtn); + + var addrInput = document.createElement("input"); + addrInput.setAttribute("type", "text"); + addrInput.setAttribute("id", "geocoderAddrInput"); + addrInput.addEventListener("keypress", function(event) { + if (event.key === "Enter") { + document.getElementById("geocoderAddrInputSubmit").click(); + } + }); + toolbar.appendChild(addrInput); + + var addrInputSubmit = document.createElement("input"); + addrInputSubmit.setAttribute("type", "submit"); + addrInputSubmit.value = "Search"; + addrInputSubmit.setAttribute("id", "geocoderAddrInputSubmit"); + addrInputSubmit.onclick = function(cdr) { + cdr.setQuery(document.getElementById("geocoderAddrInput").value); + cdr._geocode(); + document.getElementById("canvassToolbar").classList.remove("addrInput"); + }.bind(null, coder); + toolbar.appendChild(addrInputSubmit); + + var addBtn = document.createElement("button"); + // Without the setTimeout here it triggers the map click *after* the button click + // ...which drops the pin immediately, hidden behind the button + addBtn.onclick = function() { setTimeout(manualAdd, 10); }; + var addImg = document.createElement("img"); + addImg.src = "images/ManualAdd.png"; + addBtn.appendChild(addImg); + addBtn.setAttribute("id", "manualAddBtn"); + toolbar.appendChild(addBtn); + + var refreshBtn = document.createElement("button"); + refreshBtn.onclick = function() { + loadVoters(true, window.location.pathname.indexOf("research.php") == -1); + } + var refreshImg = document.createElement("img"); + refreshImg.src = "images/RefreshVoters.png"; + refreshBtn.appendChild(refreshImg); + refreshBtn.setAttribute("id", "geocoderRefreshBtn"); + toolbar.appendChild(refreshBtn); + + var lastBtn = document.createElement("button"); + lastBtn.onclick = function() { + document.getElementById("details").style.display = "block"; + document.getElementById("map").style.display = "none"; + } + var lastImg = document.createElement("img"); + lastImg.src = "images/LastVoter.png"; + lastBtn.appendChild(lastImg); + lastBtn.setAttribute("id", "geocoderLastBtn"); + toolbar.appendChild(lastBtn); + + var menuBtn = document.createElement("button"); + menuBtn.onclick = function() { + loadTurfs(); + document.getElementById("controls").style.display = "block"; + document.getElementById("controls").classList.remove("min"); + var mapElem = document.getElementById("map").classList.remove("full"); + map.invalidateSize(); + var toolbar = document.getElementById("canvassToolbar"); + toolbar.parentElement.removeChild(toolbar); + } + menuBtn.setAttribute("id", "geocoderMenuBtn"); + var menuImg = document.createElement("img"); + menuImg.src = "images/Menu.png"; + menuBtn.appendChild(menuImg); + toolbar.appendChild(menuBtn); + + map.invalidateSize(); + document.getElementById("map").appendChild(toolbar); +} + +function manualAdd() { + map.on('click', manualAddClick); +} + +function manualAddClick(e) { + var markerIcon = L.icon({ + iconUrl: "images/marker-icon-white.png", + iconSize: [24, 36], + iconAnchor: [12,36] + }); + marker = new L.marker(e.latlng, {icon: markerIcon, persist: true, draggable:'true'}); + marker.on('dragend', function(event){ + var marker = event.target; + var position = marker.getLatLng(); + marker.setLatLng(new L.LatLng(position.lat, position.lng),{draggable:'true'}); + map.panTo(new L.LatLng(position.lat, position.lng)) + }); + marker.on('click', manualDetails.bind(null, marker)); + map.addLayer(marker); + map.off('click'); +} + +function manualDetails(marker) { + var results = Object(); + results.firstName = "unknown"; + results.middleName = ""; + results.lastName = "unknown"; + results.birthdate = "YYYY-MM-DD"; + results.sex = "Unknown|Male|Female|Nonbinary".split("|"); + results.age = null; + results.phone = "000-000-0000"; + results.party = "Unknown|Democrat|Republican|Unaffiliated".split("|"); + results.address = null; + results.city = null; + results.state = "RI"; + results.zip = null; + results.lat = marker._latlng.lat; + results.lon = marker._latlng.lng; + + showVoterInfo(results, null, null, true); + + updateMarker(marker); + document.getElementById("voterDetailsparty").onchange = updateMarker.bind(null, marker); +} + +function updateMarker(marker) { + var party = document.getElementById("voterDetailsparty").value; + var url = "images/marker-icon-"; + if(party == "Democrat") { + url += "blue-hollow.png"; + } else if(party == "Republican") { + url += "red-hollow.png"; + } else if(party == "Unaffiliated") { + url += "purple-hollow.png"; + } else if(party == "Unknown") { + url += "tricolor.png"; + } + var markerIcon = L.icon({ + iconUrl: url, + iconSize: [24, 36], + iconAnchor: [12,36] + }); + marker.setIcon(markerIcon); +} + +function showCanvassStats(id, count, page=0) { + if( typeof page == 'object' ) { + page = 0; + } + fetch("api.php?get=canvassResults&id="+id+"&page="+page+"&pageSize=50").then(data => data.json()) + .then(resp => { + // Clear any existing voter details from the panel + var detailsPane = document.getElementById("details"); + detailsPane.innerHTML = '
\ +
\ + '; + + var maxPage = (count/50); + document.getElementById("details").style.display = "block"; + document.getElementById("map").style.display = "none"; + document.getElementById("details").setAttribute("class", "full"); + document.getElementById("controls").style.display = "none"; + + var table = document.getElementById("detailsTable"); + var row = document.createElement("tr"); + var cell = document.createElement("th"); + cell.innerHTML = "Contact Time"; + row.appendChild(cell); + var cell = document.createElement("th"); + cell.innerHTML = "Contact User"; + row.appendChild(cell); + var cell = document.createElement("th"); + cell.innerHTML = "Contact Status"; + row.appendChild(cell); + var cell = document.createElement("th"); + cell.innerHTML = "Contact Method"; + row.appendChild(cell); + var cell = document.createElement("th"); + cell.innerHTML = "Est. Support"; + row.appendChild(cell); + var cell = document.createElement("th"); + cell.innerHTML = "Corrections"; + row.appendChild(cell); + var cell = document.createElement("th"); + cell.innerHTML = "Priority"; + row.appendChild(cell); + var cell = document.createElement("th"); + cell.innerHTML = "Do Not Contact"; + row.appendChild(cell); + table.appendChild(row); + + var row = document.createElement("tr"); + var cell = document.createElement("th"); + cell.innerHTML = "Name"; + row.appendChild(cell); + var cell = document.createElement("th"); + cell.innerHTML = "Birthdate"; + row.appendChild(cell); + var cell = document.createElement("th"); + cell.innerHTML = "Sex"; + row.appendChild(cell); + var cell = document.createElement("th"); + cell.innerHTML = "Party"; + row.appendChild(cell); + var cell = document.createElement("th"); + cell.innerHTML = "Phone"; + row.appendChild(cell); + var cell = document.createElement("th"); + cell.innerHTML = "Address"; + cell.setAttribute("colspan", 2); + row.appendChild(cell); + var cell = document.createElement("th"); + cell.innerHTML = "City"; + row.appendChild(cell); + table.appendChild(row); + + var row = document.createElement("tr"); + var cell = document.createElement("th"); + cell.innerHTML = "Notes"; + cell.setAttribute("colspan", 8); + cell.setAttribute("class", "notesCell"); + row.appendChild(cell); + table.appendChild(row); + + for(var i = 0; i < resp.length; i++) { + var row = document.createElement("tr"); + var cell = document.createElement("td"); + cell.innerHTML = new Date(parseInt(resp[i].timestamp)).toLocaleString(); + row.appendChild(cell); + var cell = document.createElement("td"); + cell.innerHTML = resp[i].contactUser; + row.appendChild(cell); + var cell = document.createElement("td"); + cell.innerHTML = resp[i].contactStatus; + row.appendChild(cell); + var cell = document.createElement("td"); + cell.innerHTML = resp[i].contactMethod; + row.appendChild(cell); + var cell = document.createElement("td"); + cell.innerHTML = resp[i].estSupportPct; + row.appendChild(cell); + var cell = document.createElement("td"); + cell.innerHTML = resp[i].correctionsNeeded; + row.appendChild(cell); + var cell = document.createElement("td"); + cell.innerHTML = resp[i].priority; + row.appendChild(cell); + var cell = document.createElement("td"); + cell.innerHTML = resp[i].noContact; + row.appendChild(cell); + table.appendChild(row); + + var row = document.createElement("tr"); + var cell = document.createElement("td"); + cell.innerHTML = resp[i].name; + row.appendChild(cell); + var cell = document.createElement("td"); + cell.innerHTML = resp[i].birthdate; + row.appendChild(cell); + var cell = document.createElement("td"); + cell.innerHTML = resp[i].sex; + row.appendChild(cell); + var cell = document.createElement("td"); + cell.innerHTML = resp[i].party; + row.appendChild(cell); + var cell = document.createElement("td"); + cell.innerHTML = resp[i].phone; + row.appendChild(cell); + var cell = document.createElement("td"); + cell.innerHTML = resp[i].address; + cell.setAttribute("colspan", 2); + row.appendChild(cell); + var cell = document.createElement("td"); + cell.innerHTML = resp[i].city; + row.appendChild(cell); + table.appendChild(row); + + var row = document.createElement("tr"); + var cell = document.createElement("td"); + cell.innerHTML = "
"+resp[i].notes+"
"; + cell.setAttribute("colspan", 8); + cell.setAttribute("class", "notesCell"); + row.appendChild(cell); + table.appendChild(row); + } + + var paginator = document.createElement("div"); + paginator.setAttribute("id", "paginator"); + + var prevLink = document.createElement("a"); + prevLink.href="#"; + prevLink.innerHTML = "< PREVIOUS"; + prevLink.onclick = showCanvassStats.bind(null, id, count, page-1) + if(page > 0) { + paginator.appendChild(prevLink); + } + + if(maxPage > 0) { + for(var i = 0; i < maxPage; i++) { + var pgLink = document.createElement("a"); + pgLink.href="#"; + pgLink.innerHTML = i; + pgLink.onclick = showCanvassStats.bind(null, id, count, i) + paginator.appendChild(pgLink); + } + } + + var nextLink = document.createElement("a"); + nextLink.href="#"; + nextLink.innerHTML = "NEXT >"; + nextLink.onclick = showCanvassStats.bind(null, id, count, page+1) + if(page < maxPage) { + paginator.appendChild(nextLink); + } + + var downLink = document.createElement("a"); + downLink.href="api.php?get=canvassResults&id="+id+"&format=csv&page=0&pageSize="+(count+5); + downLink.innerHTML = "Download as CSV"; + paginator.appendChild(downLink); + + document.getElementById("detailsControls").prepend(paginator); + }); +} + + diff --git a/js/common.js b/js/common.js new file mode 100644 index 0000000..629f924 --- /dev/null +++ b/js/common.js @@ -0,0 +1,210 @@ +/* +TODO: Comment code more, especially: + - canvass.js + - api.php + + Absolute Demographics + - Number of voters, of each party, of age/sex, of vote history + - Population + + Canvassing + Research + 2) Click a district or census block, get stats + + Canvassing page + 5) Color outside of turf red? validate voters are in turf + 6) "List voters in canvass" button? + + Show stats + - Each DB query should collect some data for the stats panel + + self-enforcing AGPL; left branding + + Users/authorization on common + - Phonebank + - Users have fields for lastQuery, queryStreak, dailyQuery, lifetimeQuery + if query within 5s of lastQuery, queryStreak++ -- set limit on this in settings + also limit daily and lifetime + query = any call to api.php + nightly write daily to a file in audit/queries/year/month/dd-queryCount.log + + Settings + - Configure map center + - Import elections DB + - Date-based areas + - Non-voter limit (vs new voter) + - Redistricting year + + BUGS: + Precinct maps need to have years attached to them so they reflect elections correctly + - Election selector should also have year attached to it? And maybe a notice of redistricting? Year stored = first year in effect? + - Include redistricting warning on stats + Fix import script to block duplicate voters (or make voterId unique?) + Sometimes map tiles don't load (try triggering map.invalidateSize(true); )...sometimes turf doesn't persist when moving map + + INVESTIGATE: + Find a way to map precincts to districts -- can we find a list, or just use turf.js? + (district jsons may need to move into DB) + (Can we plot other districts? Mayors, city council, etc? Find ward geojsons) +*/ + +/* +* This file is part of the Cargobike Community Canvassing Program (CCCP). +* Copyright 2023, Brian Flowers, SlightlyCyberpunk.com +* +* CCCP is free software: you can redistribute it and/or modify it under the terms +* of the GNU Affero General Public License as published by the Free Software +* Foundation, either version 3 of the License, or (at your option) any later version. +* +* CCCP 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 Affero General Public License for more details. + +* You should have received a copy of the Affero GNU General Public License along with CCCP. +* If not, see . +*/ + +// Stores data associated to precincts, blocks, or block groups for display +var displayAreas = []; + +// Default color palette +var colors = ["#FF0000", "#00FF00", "#0000FF", "#FFFF00", "#00FFFF", "#FF00FF", + "#880000", "#008800", "#000088", "#888800", "#008888", "#880088"] + + +// INITIALIZATION +/////////////////////////////////////////////////////////// +function init() { + // Initialize the map -- LeafletJS boilerplate + map = L.map('map').setView([41.5, -71.5 ], 10); + L.tileLayer('https://{s}.tile.osm.org/{z}/{x}/{y}.png' , { maxZoom: 25}).addTo(map); + + if( typeof loadDistrictTypes == "function") { + loadDistrictTypes(); + } + if( typeof loadDemographics == "function") { + loadDemographics(); + } + if( typeof loadTurfs == "function") { + loadTurfs(window.location.pathname.indexOf("research.php") != -1); + } + + if( window.location.pathname.indexOf("research.php") != -1 ) { + // Load display areas + setLoading(1); + fetch("api.php?get=demoAreas") + .then((resp) => resp.json()) + .then((data) => { + displayAreas = data; + setLoading(-1); + }); + } +} + +// Show/Hide Loading Indicator +var loadingElems = 0; +function setLoading(items) { + loadingElems += items; + var indicators = document.getElementsByClassName("loadingIndicator"); + if(loadingElems == 0) { + for(var i = 0; i < indicators.length; i++) { + indicators[i].style.display = "none"; + indicators[i].style.visibility = "hidden"; + } + } else { + for(var i = 0; i < indicators.length; i++) { + indicators[i].style.display = "block"; + indicators[i].style.visibility = "visible"; + } + } + for(var i = 0; i < indicators.length; i++) { + indicators[i].getElementsByTagName("span")[0].innerHTML = loadingElems; + } +} + +// Show/hide one of the major categories +function toggleList(e) { + var list = e.target.parentElement.getElementsByClassName("list")[0]; + if(list.style.display != "block") { + list.style.display = "block"; + e.target.innerHTML = "-"; + } else { + list.style.display = "none"; + e.target.innerHTML = "+"; + } +} + +// Return to the map from stats or voter details +function restoreMap() { + if(document.getElementById("paginator") != null) { + document.getElementById("controls").style.display = "block"; + } + document.getElementById("details").style.display = "none"; + document.getElementById("map").style.display = "block"; +} + +// Utility function to complete geojsons taken from the database +function geoJsonBuilder(jsonStr) { + var geojs = Object(); + geojs.type = "FeatureCollection"; + geojs.name = "demoArea_"; + geojs.crs = Object(); + geojs.crs.type = "name"; + geojs.crs.properties = Object(); + geojs.crs.properties.name = "urn:ogc:def:crs:OGC:1.3:CRS84"; + if(jsonStr == "" || JSON.parse(jsonStr) == null) { + console.log("JSON is null in geoJsonBuilder!"); + console.log(jsonStr); + console.log(this); + console.log(window.event); + return geojs; + } + if(JSON.parse(jsonStr).type == "Feature") { + geojs.features = [JSON.parse(jsonStr)]; + } else { + var features = Object(); + features.type = "Feature"; + features.properties = Object(); + features.properties.OBJECTID = 100; + features.properties.NAME = "District"; + features.geometry = JSON.parse(jsonStr).geometry; + geojs.features = [features]; + } + return geojs; +} + +// Show a "toast" style notification +function toastMessage(message) { + var toastDiv = document.createElement("div"); + toastDiv.innerHTML = message; + toastDiv.setAttribute("id", "toastDiv"); + document.body.appendChild(toastDiv); + + setTimeout(function() { + document.getElementById("toastDiv").style.opacity = "0"; + setTimeout(function() { + document.body.removeChild(document.getElementById("toastDiv")); + }, 1500); + }, message.length * 60); +} + +// Toggle map display +function toggleControls() { + var controlElem = document.getElementById("controls"); + var mapElem = document.getElementById("map"); + if( controlElem.getAttribute("class") == "min") { + controlElem.setAttribute("class", ""); + mapElem.setAttribute("class", ""); + } else { + controlElem.setAttribute("class", "min"); + mapElem.setAttribute("class", "full"); + setTimeout(function() { + var controlElem = document.getElementById("controls"); + controlElem.scrollTop = controlElem.scrollHeight; + }, 500); + } + map.invalidateSize(); + document.body.style.zoom = "100%"; + window.devicePixelRatio = 1; +} + diff --git a/js/contests.js b/js/contests.js new file mode 100644 index 0000000..5e83da2 --- /dev/null +++ b/js/contests.js @@ -0,0 +1,115 @@ +/* +* This file is part of the Cargobike Community Canvassing Program (CCCP). +* Copyright 2023, Brian Flowers, SlightlyCyberpunk.com +* +* CCCP is free software: you can redistribute it and/or modify it under the terms +* of the GNU Affero General Public License as published by the Free Software +* Foundation, either version 3 of the License, or (at your option) any later version. +* +* CCCP 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 Affero General Public License for more details. + +* You should have received a copy of the Affero GNU General Public License along with CCCP. +* If not, see . +*/ + +// Populate the list of contest years/types +function initContests() { + fetch("api.php?get=contests").then(data => data.json()) + .then(contestList => { + console.log(contestList); + var typeSel = document.getElementById("contestTypeSel"); + var yearSel = document.getElementById("contestYearSel"); + var yearList = Object.keys(contestList); + yearSel.innerHTML = ""; + for(var i = 0; i < yearList.length; i++) { + var option = document.createElement("option"); + option.value = yearList[i]; + option.innerHTML = yearList[i]; + yearSel.appendChild(option); + } + var year = document.getElementById("contestYearSel").value; + var contestTypes = Object.keys(contestList[year]); + for(var i = 0; i < contestTypes.length; i++) { + var option = document.createElement("option"); + option.value = contestTypes[i]; + option.innerHTML = contestTypes[i]; + if(contestTypes[i].length > 0) { + typeSel.appendChild(option); + } + } + loadContests(); + }); +} + +// Populate the list of contest types in the menu +function loadContestTypes() { + fetch("api.php?get=contests").then(data => data.json()) + .then(contestList => { + console.log(contestList); + var typeSel = document.getElementById("contestTypeSel"); +// var yearSel = document.getElementById("contestYearSel"); +// var yearList = Object.keys(contestList); +// yearSel.innerHTML = ""; +// for(var i = 0; i < yearList.length; i++) { +// var option = document.createElement("option"); +// option.value = yearList[i]; +// option.innerHTML = yearList[i]; +// yearSel.appendChild(option); +// } + var year = document.getElementById("contestYearSel").value; + var contestTypes = Object.keys(contestList[year]); + typeSel.innerHTML = ""; + for(var i = 0; i < contestTypes.length; i++) { + var option = document.createElement("option"); + option.value = contestTypes[i]; + option.innerHTML = contestTypes[i]; + if(contestTypes[i].length > 0) { + typeSel.appendChild(option); + } + } + loadContests(); + }); +} + +// Populate the list of specific contests +function loadContests() { + fetch("api.php?get=contests").then(data => data.json()) + .then(contestList => { +//console.log(contestList); + var type = document.getElementById("contestTypeSel").value; + var selector = document.getElementById("contestSel"); + var year = document.getElementById("contestYearSel").value; + while(selector.children.length > 0) { + selector.removeChild(selector.children[0]); + } +//console.log(contestList[year]); + for(var i = 0; i < contestList[year][type].length; i++) { + var option = document.createElement("option"); + option.value = contestList[year][type][i].contest; + option.innerHTML = contestList[year][type][i].contest; + selector.appendChild(option); + } + }); +} + +// Enable/disable the display of a particular contests' precincts +function showContest(targetState) { + setLoading(1); + var contest = document.getElementById("contestSel").value; + var options = { + method: "POST", + headers: {"Content-Type": "application/x-www-form-urlencoded; charset=UTF-8"}, + body: "contest="+encodeURIComponent(contest) + } + + fetch("api.php?get=precincts", options).then(data => data.json()) + .then(precincts => { + var keys = Object.keys(precincts); + for(var i = 0; i < keys.length; i++) { + togglePrecincts(precincts[keys[i]], "contest-clr", targetState); + } + setLoading(-1); + }); +} diff --git a/js/demographics.js b/js/demographics.js new file mode 100644 index 0000000..01a9447 --- /dev/null +++ b/js/demographics.js @@ -0,0 +1,222 @@ +/* +* This file is part of the Cargobike Community Canvassing Program (CCCP). +* Copyright 2023, Brian Flowers, SlightlyCyberpunk.com +* +* CCCP is free software: you can redistribute it and/or modify it under the terms +* of the GNU Affero General Public License as published by the Free Software +* Foundation, either version 3 of the License, or (at your option) any later version. +* +* CCCP 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 Affero General Public License for more details. + +* You should have received a copy of the Affero GNU General Public License along with CCCP. +* If not, see . +*/ + +// Load the demographics categories from the database +function loadDemographics() { + setLoading(1); + + // Clear any existing displays + for(var da = 0; da < displayAreas.length; da++) { + for(var ds = 0; ds < displayAreas[da].length; ds++) { + if(displayAreas[da][ds].mapElem != null) { + map.removeLayer(displayAreas[da][ds].mapElem); + displayAreas[da][ds].mapElem = null; + } + } + } + + // Fetch for the selected type and populate the selection list + var type = document.getElementById("demoType").value; + document.getElementById("demoType").setAttribute("disabled", true); + fetch("api.php?get=demoTypes&type="+type).then(data => data.json()) + .then(demoTypes => { + var types = ['Absolute', 'Relative']; + types.forEach( function(typeName) { + typeClassElem = typeName.substring(0,3).toLowerCase(); + var listElem = document.getElementById("demographic-"+typeClassElem+"-list"); + listElem.innerHTML = ""; + var keys = Object.keys(demoTypes[typeName]); + for(var j = 0; j < keys.length; j++) { + var label = document.createElement("label"); + label.setAttribute("for", "demographics-abs-"+keys[j]); + label.innerHTML = keys[j]; + demoClr = document.createElement("input"); + demoClr.setAttribute("type", "color"); + demoClr.value = colors[j % colors.length]; + demoClr.setAttribute("id", 'demo-group-clr-'+keys[j].replaceAll(' ', '_')); + + var table = document.createElement("table"); + table.setAttribute("class", "subcategory"); + for(var k = 0; k < demoTypes[typeName][keys[j]].length; k++) { + var row = document.createElement("tr"); + var cell = document.createElement("td"); + + var icheck = document.createElement("input"); + icheck.setAttribute("type", "checkbox"); + icheck.setAttribute("id", "demographic-"+demoTypes[typeName][keys[j]][k].id); + icheck.onchange = toggleDemo.bind(null, + demoTypes[typeName][keys[j]][k].id, + 'demo-group-clr-'+keys[j].replaceAll(' ', '_')); + cell.appendChild(icheck); + + var ilabel = document.createElement("label"); + ilabel.setAttribute("for", "demographic-"+demoTypes[typeName][keys[j]][k].id); + ilabel.innerHTML = demoTypes[typeName][keys[j]][k].description; + cell.appendChild(ilabel); + + row.appendChild(cell); + table.appendChild(row); + } + if(k > 0) { + listElem.appendChild(label); + listElem.appendChild(demoClr); + listElem.appendChild(table); + } + } + }); + + // Re-enable the type select when done + document.getElementById("demoType").removeAttribute("disabled"); + setLoading(-1); + }); +} + +// TODO: comment; clear or re-check when changing modes +// Enable/disable display of demographic stats +function toggleDemo(demoId, colorId, event) { + setLoading(1); + fetch("api.php?get=demos&id="+demoId).then(data => data.json()) + .then(demos => { + var color = document.getElementById(colorId).value; + + // Match the selected type to the displayAreas list for that type + for(var das = 0; das < displayAreas.length; das++) { + if(displayAreas[das][0].type == document.getElementById("demoType").value) { + break; + } + } + + // Match each stat to the correct display area + for(var da = 0; da < displayAreas[das].length; da++) { + for(var ds = 0; ds < demos.length; ds++) { + if(displayAreas[das][da].areaId == demos[ds].id) { + var stat = {"id": demos[ds].id, "value": parseFloat(demos[ds].value)}; + + // If there's no stats yet for this area, create the array + if(displayAreas[das][da].demoVals == null) { + displayAreas[das][da].demoVals = []; + } + + // If this category isn't set yet, add it; otherwise update the color in case it's changed + if(displayAreas[das][da].demoVals[demos[ds].code] == null) { + displayAreas[das][da].demoVals[demos[ds].code] = { "color": color, "values": []}; + } else { + displayAreas[das][da].demoVals[demos[ds].code].color = color; + } + + // Add or replace the stat in the list + var replaced = false; + for(var i = 0 ; i < displayAreas[das][da].demoVals[demos[ds].code].values.length; i++) { + if(displayAreas[das][da].demoVals[demos[ds].code].values[i].id == stat.id) { + replaced = true; + displayAreas[das][da].demoVals[demos[ds].code].values[i] = stat; + if( !event.target.checked ) { + displayAreas[das][da].demoVals[demos[ds].code].values.splice(i,1); + } + } + } + if( !replaced ) { + displayAreas[das][da].demoVals[demos[ds].code].values.push(stat); + } + + // Calculate the weighted color for this area + var keys = Object.keys(displayAreas[das][da].demoVals); + var weightedColor = Array(0,0,0); + var sum = 0; + var count = 0; + for(var i = 0; i < keys.length; i++) { + var demoVal = displayAreas[das][da].demoVals[keys[i]]; + var originalColor = Array(parseInt(demoVal.color.substring(1,3),16), + parseInt(demoVal.color.substring(3,5),16), + parseInt(demoVal.color.substring(5,7),16)); + + for(var j = 0; j < demoVal.values.length; j++) { + weightedColor[0] += parseFloat(demoVal.values[j].value) * originalColor[0]; + weightedColor[1] += parseFloat(demoVal.values[j].value) * originalColor[1]; + weightedColor[2] += parseFloat(demoVal.values[j].value) * originalColor[2]; + sum += parseFloat(demoVal.values[j].value); + count++; + } + } + + var wcolor = "#"+Number(Math.round(weightedColor[0])).toString(16).padStart(2, "0")+ + Number(Math.round(weightedColor[1])).toString(16).padStart(2, "0")+ + Number(Math.round(weightedColor[2])).toString(16).padStart(2, "0"); + + // Display the area + var geojs = geoJsonBuilder(displayAreas[das][da].json); + if(displayAreas[das][da].json == null) { + console.log("ERROR: feature is null in demo display!"); + console.log(displayAreas[das][da]); + continue; + } else { + if(displayAreas[das][da].mapElem == null) { + displayAreas[das][da].mapElem = L.geoJSON(geojs).addTo(map); + } + var opacity = sum; + if(opacity > 1) { + opacity = 1; + } + opacity = opacity * document.getElementById("demographic-transparency").value / 100; + displayAreas[das][da].mapElem.setStyle({fill: true, weight: 1, + fillOpacity: opacity, strokeOpacity: opacity, + fillColor: wcolor, color: wcolor}); + if(sum == 0) { + map.removeLayer(displayAreas[das][da].mapElem); + displayAreas[das][da].mapElem = null; + } + } + } + } + } + setLoading(-1); + }); +} + +// Update the transparency of demographics areas (onchange event from the slider) +function updateDemoTransparency() { + // Match the selected type to the displayAreas list for that type + for(var das = 0; das < displayAreas.length; das++) { + if(displayAreas[das][0].type == document.getElementById("demoType").value) { + break; + } + } + + // Calculate the weighted opacities and apply the change + for(var da = 0; da < displayAreas[das].length; da++) { + if(displayAreas[das][da].mapElem != null) { + var keys = Object.keys(displayAreas[das][da].demoVals); + var sum = 0; + var count = 0; + for(var i = 0; i < keys.length; i++) { + var demoVal = displayAreas[das][da].demoVals[keys[i]]; + + for(var j = 0; j < demoVal.values.length; j++) { + sum += parseFloat(demoVal.values[j].value); + count++; + } + } + + // Update the opacity + var opacity = sum; + if(opacity > 1) { + opacity = 1; + } + opacity = opacity * document.getElementById("demographic-transparency").value / 100; + displayAreas[das][da].mapElem.setStyle({fillOpacity: opacity, strokeOpacity: opacity}); + } + } +} diff --git a/js/districts.js b/js/districts.js new file mode 100644 index 0000000..3b5ed92 --- /dev/null +++ b/js/districts.js @@ -0,0 +1,123 @@ +/* +* This file is part of the Cargobike Community Canvassing Program (CCCP). +* Copyright 2023, Brian Flowers, SlightlyCyberpunk.com +* +* CCCP is free software: you can redistribute it and/or modify it under the terms +* of the GNU Affero General Public License as published by the Free Software +* Foundation, either version 3 of the License, or (at your option) any later version. +* +* CCCP 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 Affero General Public License for more details. + +* You should have received a copy of the Affero GNU General Public License along with CCCP. +* If not, see . +*/ + +// Populate the list of district types in the menu +function loadDistrictTypes() { + setLoading(1); + fetch("api.php?get=district").then(data => data.json()) + .then(districtTypes => { + + var typeSel = document.getElementById("districtTypeSel"); + for(var i = 0; i < districtTypes.length; i++) { + var option = document.createElement("option"); + option.value = districtTypes[i].type; + option.innerHTML = districtTypes[i].type; + typeSel.appendChild(option); + } + loadDistricts(); + setLoading(-1); + }); +} + +// Populate the list of specific districts +function loadDistricts() { + setLoading(1); + var type = document.getElementById("districtTypeSel").value; + fetch("api.php?get=district&type="+type).then(data => data.json()) + .then(districts => { + var selector = document.getElementById("districtSel"); + selector.innerHTML = ""; + for(var i = 0; i < districts.length; i++) { + var option = document.createElement("option"); + option.value = districts[i].id; + option.innerHTML = districts[i].typeId; + selector.appendChild(option); + } + setLoading(-1); + }); +} + +// Enable/disable the display of a particular district +displayDistricts = Array(); +function showDistrict(targetState) { + setLoading(1); + var districtId = document.getElementById("districtSel").value; + var type = document.getElementById("districtTypeSel").value; + var selector = document.getElementById("districtSel"); + fetch("api.php?get=district&id="+districtId).then(data => data.json()) + .then(districts => { + var geojs = geoJsonBuilder(districts[0].json); + var district = geojs; + if(displayDistricts[districtId] == null) { + displayDistricts[districtId] = Object(); + displayDistricts[districtId].mapElem = null; + } + if(displayDistricts[districtId].mapElem == null && targetState) { +//geojs.features[0].properties.type = "multipolygon"; +//console.log(geojs); + displayDistricts[districtId].mapElem = L.geoJSON(geojs.features[0]).addTo(map); + } else if(displayDistricts[districtId].mapElem != null && !targetState) { + map.removeLayer(displayDistricts[districtId].mapElem); + displayDistricts[districtId].mapElem = null; + } + + if(displayDistricts[districtId].mapElem != null) { + var opacity = document.getElementById("district-transparency").value / 100; + var color = document.getElementById("district-clr").value; + displayDistricts[districtId].mapElem.setStyle({fill: true, weight: 2, + fillOpacity: opacity, strokeOpacity: 1, + fillColor: color, color: color}); + var row = document.createElement("tr"); + var cell = document.createElement("td"); + cell.innerHTML = type + " - " + selector.children[selector.selectedIndex].innerHTML; + row.appendChild(cell); + cell = document.createElement("td"); + var button = document.createElement("input"); + button.setAttribute("type", "button"); + button.setAttribute("value", "hide"); + button.onclick = hideDistrict.bind(row, districtId); + cell.appendChild(button); + row.appendChild(cell); + var cell = document.createElement("td"); + cell.style.width = "2em"; + cell.style.backgroundColor = color; + row.appendChild(cell); + document.getElementById("districtsTable").appendChild(row); + } + setLoading(-1); + }); +} + +function hideDistrict(districtId) { +console.log(districtId); + if(displayDistricts[districtId] != null) { + map.removeLayer(displayDistricts[districtId].mapElem); + displayDistricts[districtId].mapElem = null; + this.parentElement.removeChild(this); + } +} + +// Update the transparency of district areas (onchange event from the slider) +function updateDistrictTransparency() { + var districtKeys = Object.keys(displayDistricts); + for(var i = 0; i < districtKeys.length; i++) { + if(displayDistricts[districtKeys[i]].mapElem != null) { + var opacity = document.getElementById("district-transparency").value / 100; + displayDistricts[districtKeys[i]].mapElem.setStyle({opacity: opacity, fillOpacity: opacity, weight: 2, strokeOpacity: 1}); + } + } +} + diff --git a/js/dups.lst b/js/dups.lst new file mode 100644 index 0000000..49fa9fd --- /dev/null +++ b/js/dups.lst @@ -0,0 +1,107428 @@ +387671|1000457383|3 +161252|1000459346|2 +161147|1000459351|2 +173652|1000459582|2 +179206|1000459690|2 +379760|1000459696|2 +184360|1000459766|2 +186466|1000459817|2 +260808|1000461042|2 +263206|1000461073|2 +263207|1000461074|2 +272205|1000461237|2 +272206|1000461238|2 +272208|1000461242|2 +288948|1000461445|2 +378981|1000461607|2 +307851|1000461815|2 +309148|1000461847|2 +317911|1000462043|2 +317914|1000462046|2 +331430|1000462317|2 +333335|1000462349|2 +337833|1000462417|2 +340128|1000462453|2 +344583|1000462577|2 +344584|1000462579|2 +376771|1000462789|2 +354206|1000462815|2 +374803|1000462873|2 +375158|1000462878|2 +374861|1000462879|2 +810426|1000462880|4 +375449|1000462883|2 +375492|1000462884|2 +375536|1000462885|2 +375426|1000462886|2 +375719|1000462891|2 +375709|1000462892|2 +375710|1000462893|2 +376017|1000462894|2 +376022|1000462895|2 +376020|1000462896|2 +376269|1000462901|2 +376731|1000462902|2 +376650|1000462903|2 +377081|1000462904|2 +377084|1000462905|2 +377097|1000462907|2 +377786|1000462914|2 +377954|1000462915|2 +377955|1000462916|2 +377956|1000462917|2 +377973|1000462919|2 +378314|1000462922|2 +378403|1000462923|2 +378505|1000462924|2 +378509|1000462925|2 +378732|1000462926|2 +378733|1000462927|2 +379030|1000462928|2 +379077|1000462929|2 +379102|1000462931|2 +379297|1000462933|2 +379174|1000462937|2 +379320|1000462938|2 +379677|1000462942|2 +386210|1000462943|2 +379839|1000462945|2 +380075|1000462949|2 +380430|1000462953|2 +380431|1000462957|2 +381060|1000462959|2 +381129|1000462960|2 +381222|1000462961|2 +381218|1000462962|2 +381219|1000462963|2 +381367|1000462967|2 +381436|1000462968|2 +381440|1000462969|2 +381776|1000462972|2 +384058|1000462976|2 +383528|1000462983|2 +820096|1000462984|6 +383529|1000462985|2 +819034|1000462986|6 +820444|1000462987|6 +382584|1000462988|2 +382585|1000462990|2 +383502|1000462992|2 +819652|1000462994|4 +381618|1000462996|2 +819692|1000462998|4 +367241|1000463003|2 +382586|1000463005|2 +383530|1000463007|2 +819620|1000463009|4 +384123|1000463010|2 +383166|1000463012|2 +384508|1000463016|2 +384825|1000463018|2 +384651|1000463020|2 +384841|1000463021|2 +384693|1000463022|2 +384709|1000463023|2 +384652|1000463024|2 +384653|1000463025|2 +385922|1000463028|2 +386211|1000463033|2 +385321|1000463036|2 +386515|1000463037|2 +385658|1000463038|2 +385923|1000463040|2 +385959|1000463042|2 +823106|1000463043|4 +387013|1000463044|2 +387014|1000463045|2 +822962|1000463046|4 +387722|1000463050|2 +387768|1000463051|2 +387948|1000463052|2 +387946|1000463053|2 +388103|1000463054|2 +388079|1000463055|2 +388123|1000463056|2 +388080|1000463057|2 +388544|1000463059|2 +388809|1000463063|2 +388876|1000463065|2 +396165|1000463221|2 +396198|1000463225|2 +401119|1000463323|2 +402569|1000463330|2 +402570|1000463335|2 +410813|1000463530|2 +223712|1000463774|2 +428943|1000463778|2 +432158|1000463805|2 +432170|1000463823|2 +432171|1000463833|2 +439287|1000463937|2 +439809|1000463945|2 +253404|1000467141|2 +174984|1000468717|2 +388873|1000470122|2 +395213|1001020532|2 +329725|1001020791|2 +428136|1001023793|2 +428236|1001034814|2 +385877|1001036720|2 +378970|1001038741|2 +385572|1001039126|2 +382555|1001045866|2 +395326|1001052012|2 +819693|1001052348|4 +823104|1001056385|4 +393768|1001061552|2 +375722|1001062147|2 +395327|1001062718|2 +377860|1001077762|2 +379780|1001081287|2 +18602|1001085581|2 +375390|1001093012|2 +344575|1001105270|2 +379761|1001106014|2 +256055|1001107902|2 +378544|1001108525|2 +378427|1001109638|2 +376041|1001112530|2 +239142|1001112566|2 +239143|1001112567|2 +144603|1001117086|2 +381461|1001118770|2 +378422|1001120628|2 +379731|1001120974|2 +376427|1001127193|2 +376426|1001128506|2 +381240|1001133320|2 +379101|1001137044|2 +141172|1001142148|2 +450204|1001143685|2 +19274|1001151130|2 +376040|1001151439|2 +88730|1001164887|2 +375779|1001171243|2 +257113|1001172332|2 +824110|1001182051|4 +862821|1001185712|4 +317923|1001188251|2 +374899|1001188253|2 +374350|1001188257|2 +396200|1001188260|2 +382749|1001189962|2 +819354|1001189963|4 +388555|1001190468|2 +376010|1001190682|2 +385136|1001197721|2 +215007|1001202888|2 +384628|1001210115|2 +375388|1001210726|2 +292355|1001214329|2 +817213|1001215723|4 +260319|1001217059|2 +819549|1001217661|4 +379438|1001219246|2 +381456|1001219250|2 +378525|1001226764|2 +384826|1001226768|2 +129656|1001233954|2 +88731|1001238807|2 +385609|1001239068|2 +385933|1001244384|2 +387949|1001244388|2 +380076|1001245302|2 +402567|1001245304|2 +214572|1001245394|2 +217060|1001251050|2 +3103|1001255628|2 +90666|1001259700|2 +31751|1001264072|2 +174956|1001266728|2 +386648|1001274026|2 +376908|1001275658|2 +432166|1001276055|2 +388567|1001283220|2 +384854|1001289062|2 +379226|1001289222|2 +158387|1001289971|2 +99382|1001295937|2 +379642|1001296347|2 +388088|1001307830|2 +379369|1001308079|2 +380077|1001310907|2 +382534|1001310967|2 +379732|1001311124|2 +388556|1001311125|2 +379259|1001324666|2 +374642|1001325961|2 +388514|1001329611|2 +385036|1001330218|2 +105253|1001332715|2 +381116|1001336884|2 +18570|1001337942|2 +375187|1001340975|2 +389105|1001340977|2 +384867|1001342772|2 +379823|1001349979|2 +34190|1001350041|2 +384700|1001350229|2 +309149|1001351268|2 +395814|1001354068|2 +376016|1001356373|2 +380072|1001358811|2 +379258|1001359389|2 +379678|1001360388|2 +379733|1001361087|2 +381507|1001362437|2 +378278|1001367932|2 +381895|1001384004|2 +819073|1001384005|4 +375033|1001386436|2 +376689|1001387035|2 +388875|1001387710|2 +329575|1001389054|2 +427994|1001392356|2 +379679|1001393479|2 +382971|1001393722|2 +388098|1001394022|2 +380070|1001394468|2 +264080|1001401011|2 +383520|1001401563|2 +375556|1001404343|2 +302654|1001406747|2 +375389|1001410592|2 +385319|1001410706|2 +386509|1001410707|2 +388874|1001411876|2 +382133|1001412613|2 +214570|1001416048|2 +89321|1001420489|2 +395815|1001423638|2 +246816|1001426807|2 +378077|1001426860|2 +375707|1001430203|2 +379734|1001437204|2 +379227|1001437568|2 +395226|1001437569|2 +384703|1001444338|2 +384681|1001444616|2 +421586|1001445705|2 +378439|1001449238|2 +379260|1001449488|2 +377861|1001450679|2 +378615|1001451654|2 +817809|1001451975|4 +333338|1001453645|2 +819355|1001453976|4 +388139|1001456448|2 +34194|1001458063|2 +377001|1001461515|2 +374676|1001462513|2 +376999|1001463122|2 +155076|1001464677|2 +377000|1001465940|2 +382972|1001466562|2 +823616|1001468121|4 +395816|1001469128|2 +148066|1001471492|2 +375466|1001475339|2 +50473|1001475966|2 +55124|1001478551|2 +374464|1001485669|2 +375743|1001486199|2 +374628|1001490882|2 +378616|1001490943|2 +379188|1001491747|2 +238544|1001492239|2 +377848|1001495192|2 +378420|1001495193|2 +377685|1001495627|2 +381134|1001501779|2 +223717|1001505102|2 +377689|1001505113|2 +385952|1001505758|2 +387994|1001508437|2 +345280|1001508588|2 +819624|1001508594|4 +387094|1001510397|2 +378972|1001510531|2 +386762|1001511470|2 +376425|1001513550|2 +37733|1001514049|2 +37732|1001515292|2 +820299|1001522538|6 +375034|1001523079|2 +151952|1001524888|2 +376033|1001531597|2 +377862|1001533516|2 +376982|1001533521|2 +385935|1001533591|2 +378938|1001534294|2 +385623|1001534451|2 +388171|1001535022|2 +88732|1001538123|2 +50373|1001538276|2 +385934|1001540139|2 +297891|1001541737|2 +377215|1001542017|2 +376021|1001546064|2 +817810|1001546577|4 +340781|1001560925|2 +352081|1001561015|2 +376942|1001561358|2 +434886|1001561723|2 +378421|1001565985|2 +379830|1001568361|2 +384573|1001568374|2 +376034|1001568387|2 +378279|1001568388|2 +379399|1001574937|2 +387177|1001576521|2 +3480|2000602538|2 +3104|2000602542|2 +10805|2000602679|2 +12658|2000602721|2 +12770|2000602738|2 +12771|2000602754|2 +12408|2000602774|2 +12777|2000602802|2 +15127|2000602837|2 +15128|2000602841|2 +16054|2000602933|2 +20237|2000603011|2 +20260|2000603019|2 +20261|2000603036|2 +25452|2000603135|2 +28758|2000603185|2 +384895|2000603390|2 +39224|2000603402|2 +59132|2000603758|2 +59023|2000603766|2 +60178|2000603797|2 +61832|2000603827|2 +72372|2000603993|2 +74477|2000604099|2 +74497|2000604104|2 +74478|2000604106|2 +74498|2000604108|2 +74479|2000604118|2 +82879|2000604288|2 +85422|2000604324|2 +85330|2000604327|2 +90015|2000604370|2 +88534|2000604404|2 +88571|2000604408|2 +96675|2000604550|2 +101639|2000604657|2 +101640|2000604735|2 +16417|2000604862|2 +106366|2000604887|2 +108035|2000604936|2 +113705|2000605025|2 +114860|2000605055|2 +115852|2000605064|2 +116152|2000605087|2 +143403|2000605166|2 +386510|2000605229|2 +387172|2000605542|2 +141223|2000605640|2 +141152|2000605641|2 +147855|2000605755|2 +150352|2000605782|2 +152803|2000605838|2 +156154|2000605913|2 +158363|2000606000|2 +161436|2000606050|2 +160328|2000606070|2 +160329|2000606071|2 +161394|2000606084|2 +161395|2000606087|2 +161393|2000606107|2 +161151|2000606120|2 +160219|2000606121|2 +160327|2000606132|2 +161435|2000606133|2 +92923|2000606264|2 +377246|2000606369|2 +180358|2000606463|2 +181566|2000606543|2 +214613|2000607137|2 +228206|2000607352|2 +238500|2000607539|2 +238501|2000607542|2 +242157|2000607612|2 +862822|2000607731|4 +249408|2000607801|2 +258608|2000607877|2 +264083|2000608149|2 +266019|2000608207|2 +266454|2000608254|2 +268904|2000608296|2 +272447|2000608382|2 +273800|2000608407|2 +277710|2000608459|2 +290559|2000608633|2 +295451|2000608716|2 +301075|2000608794|2 +304896|2000608860|2 +309646|2000608942|2 +312346|2000609001|2 +317910|2000609097|2 +317917|2000609099|2 +320558|2000609133|2 +325625|2000609223|2 +327108|2000609245|2 +331487|2000609302|2 +331435|2000609311|2 +378087|2000609378|2 +374160|2000609405|2 +339825|2000609437|2 +345291|2000609526|2 +345525|2000609537|2 +374328|2000609754|2 +374843|2000609755|2 +374545|2000609759|2 +375323|2000609761|2 +375397|2000609765|2 +375791|2000609766|2 +811808|2000609767|4 +376458|2000609774|2 +376623|2000609775|2 +376459|2000609778|2 +376901|2000609780|2 +376956|2000609781|2 +376959|2000609783|2 +377037|2000609785|2 +377278|2000609787|2 +377273|2000609790|2 +377269|2000609791|2 +377274|2000609792|2 +813415|2000609793|4 +377423|2000609794|2 +377421|2000609797|2 +377415|2000609798|2 +377424|2000609799|2 +377425|2000609801|2 +377708|2000609803|2 +377701|2000609804|2 +377696|2000609805|2 +377734|2000609807|2 +377742|2000609808|2 +377975|2000609810|2 +378394|2000609819|2 +378449|2000609820|2 +379037|2000609821|2 +379075|2000609822|2 +379090|2000609823|2 +379344|2000609825|2 +379439|2000609826|2 +379469|2000609827|2 +379487|2000609828|2 +379475|2000609829|2 +379688|2000609830|2 +379721|2000609831|2 +379607|2000609832|2 +379568|2000609833|2 +379534|2000609834|2 +379722|2000609835|2 +379815|2000609836|2 +379862|2000609837|2 +379828|2000609838|2 +380011|2000609839|2 +380012|2000609841|2 +380013|2000609842|2 +380517|2000609849|2 +380604|2000609850|2 +381115|2000609851|2 +381246|2000609854|2 +381239|2000609856|2 +381247|2000609857|2 +381242|2000609859|2 +381243|2000609861|2 +381298|2000609863|2 +384286|2000609868|2 +383343|2000609870|2 +381641|2000609876|2 +382066|2000609877|2 +382389|2000609884|2 +382531|2000609888|2 +384523|2000609890|2 +385843|2000609897|2 +386502|2000609900|2 +385659|2000609901|2 +385450|2000609902|2 +385132|2000609904|2 +385787|2000609905|2 +385151|2000609906|2 +822172|2000609909|4 +387005|2000609913|2 +387073|2000609916|2 +386932|2000609918|2 +387131|2000609919|2 +387723|2000609923|2 +387715|2000609924|2 +387736|2000609926|2 +387767|2000609927|2 +387853|2000609929|2 +388027|2000609931|2 +388083|2000609932|2 +388067|2000609933|2 +824112|2000609935|4 +388318|2000609937|2 +388320|2000609938|2 +389003|2000609943|2 +388997|2000609944|2 +389031|2000609945|2 +402384|2000610114|2 +402547|2000610115|2 +419349|2000610398|2 +438504|2000610707|2 +441801|2000610749|2 +446889|2000610853|2 +449063|2000610878|2 +387911|2000610966|2 +16301|2000611042|2 +161157|2000612584|2 +376917|2000615186|2 +376550|2001018163|2 +377426|2001018196|2 +383725|2001018197|2 +266010|2001018479|2 +387841|2001018491|2 +56572|2001018582|2 +121552|2001018707|2 +387078|2001018876|2 +378921|2001025455|2 +20269|2001034937|2 +379455|2001034958|2 +368622|2001035388|2 +384710|2001036138|2 +156253|2001042259|2 +180359|2001042264|2 +377433|2001043946|2 +387058|2001043948|2 +272209|2001044624|2 +161437|2001044637|2 +181567|2001047864|2 +377418|2001056092|2 +377428|2001056101|2 +385788|2001056570|2 +385624|2001060859|2 +385953|2001060861|2 +5453|2001062851|2 +822251|2001065525|4 +439821|2001067743|2 +388316|2001073430|2 +380010|2001095388|2 +101410|2001097474|2 +378062|2001100977|2 +278744|2001102754|2 +16418|2001107141|2 +386345|2001113150|2 +147856|2001118093|2 +213764|2001118442|2 +379565|2001118501|2 +272210|2001118599|2 +381610|2001121323|2 +161052|2001123513|2 +388178|2001123850|2 +162726|2001126974|2 +383448|2001128565|2 +818079|2001131947|4 +16436|2001132411|2 +209111|2001140436|2 +375639|2001140909|2 +382241|2001141690|2 +387843|2001146593|2 +378770|2001146736|2 +380031|2001151386|2 +381515|2001151387|2 +49972|2001158021|2 +303246|2001159092|2 +387072|2001159230|2 +387132|2001159232|2 +377435|2001167832|2 +160211|2001174840|2 +91421|2001175258|2 +92671|2001184799|2 +161118|2001186057|2 +1803|2001188879|2 +375792|2001189012|2 +439892|2001190982|2 +181625|2001197220|2 +382922|2001197456|2 +160330|2001197683|2 +346637|2001198010|2 +378771|2001198678|2 +158455|2001199098|2 +377743|2001201194|2 +387855|2001203228|2 +249297|2001204700|2 +16419|2001205004|2 +388031|2001205625|2 +388570|2001210615|2 +377100|2001215321|2 +374329|2001217485|2 +258754|2001218171|2 +238541|2001223622|2 +387580|2001224918|2 +39225|2001227586|2 +41580|2001230829|2 +41581|2001230830|2 +387913|2001233066|2 +265113|2001233430|2 +377275|2001233851|2 +160212|2001236775|2 +382578|2001239881|2 +387422|2001242297|2 +52774|2001245306|2 +384894|2001248108|2 +376827|2001249188|2 +382388|2001254070|2 +811075|2001258273|6 +387444|2001271090|2 +375601|2001271109|2 +379853|2001275756|2 +15325|2001275823|2 +59383|2001278338|2 +382113|2001284806|2 +375598|2001285868|2 +376079|2001287476|2 +379686|2001287741|2 +3481|2001295094|2 +16319|2001295115|2 +74480|2001295260|2 +279858|2001295854|2 +377276|2001295974|2 +382920|2001295976|2 +818553|2001300696|3 +632834|2001312430|3 +825237|2001312811|7 +825238|2001312812|7 +817251|2001314707|3 +812683|2001316393|3 +813650|2001322875|3 +813657|2001322877|3 +472435|2001332208|3 +455583|2001337302|3 +471607|2001339382|3 +821950|2001348065|3 +612213|2001348665|3 +612326|2001349301|3 +817728|2001349736|3 +812541|2001350820|3 +692231|2001353658|3 +607524|2001355328|3 +467615|2001355521|3 +533155|2001357942|3 +815565|2001360167|3 +823157|2001365074|3 +467282|2001367192|3 +836590|2001367201|5 +814081|2001367549|3 +813263|2001372628|3 +883169|2001372899|3 +797856|2001380830|3 +612327|2001385596|3 +826337|2001387079|5 +812472|2001389399|3 +893011|2001389714|3 +815837|2001396642|3 +811518|2001398072|3 +823182|2001400523|3 +690301|2001401276|3 +811177|2001403906|3 +901017|2001406928|3 +463974|2001412323|3 +607525|2001412614|3 +826338|2001412729|5 +613927|2001412947|3 +823169|2001414136|3 +816470|2001424297|3 +816469|2001424302|3 +525690|2001426984|3 +527043|2001426985|3 +571478|2001427000|3 +822571|2001427031|5 +524345|2001431547|3 +812761|2001432535|3 +817047|2001432593|3 +815906|2001433182|3 +810834|2001433237|3 +819905|2001433338|3 +811652|2001438356|3 +811653|2001438357|3 +717683|2001443638|3 +822572|2001445186|5 +814023|2001445669|3 +823570|2001447345|3 +821436|2001447346|3 +853535|2001447395|3 +820885|2001451793|3 +820886|2001452444|3 +813420|2001452811|3 +641989|2001453561|3 +811388|2001455796|3 +646184|2001455960|3 +819344|2001461900|3 +463975|2001464888|3 +817383|2001467064|3 +826054|2001470863|3 +762274|2001472298|3 +812228|2001473215|3 +826339|2001473964|5 +812229|2001475537|3 +815469|2001477055|3 +529754|2001477076|3 +611418|2001478423|3 +780759|2001482370|3 +454717|2001484262|3 +815608|2001484545|3 +597276|2001485803|3 +612214|2001486110|3 +542605|2001493787|3 +822202|2001497452|3 +689351|2001498172|3 +813412|2001498605|3 +883861|2001498607|3 +820862|2001500834|3 +507543|2001501045|3 +507544|2001505104|3 +626154|2001505373|3 +822201|2001515790|3 +818213|2001518485|3 +462512|2001524640|3 +810236|2001525523|3 +813315|2001525702|3 +814433|2001525706|3 +821165|2001525711|3 +525684|2001525848|3 +825074|2001528716|3 +818674|2001531126|3 +837392|2001531756|5 +815762|2001532209|3 +823277|2001535616|3 +822820|2001537433|3 +823284|2001537459|3 +823843|2001538598|3 +822203|2001541142|3 +773709|2001542479|3 +594635|2001543449|3 +609550|2001548650|3 +541047|2001553272|3 +815322|2001553852|3 +822336|2001554019|3 +470163|2001557874|3 +716333|2001563717|3 +847348|2001566768|3 +821782|2001566808|3 +813225|2001572725|3 +462454|3000679366|3 +476929|3000679468|3 +567820|3000679476|3 +698962|3000679553|3 +485395|3000679618|3 +487999|3000679639|3 +487994|3000679645|3 +514103|3000680065|3 +518046|3000680141|3 +526905|3000680308|3 +815218|3000680388|3 +550750|3000680617|3 +567821|3000680830|3 +567822|3000680837|3 +595885|3000681173|3 +599215|3000681209|3 +602636|3000681257|3 +613236|3000681349|3 +672722|3000682054|3 +815477|3000682059|3 +676639|3000682174|3 +824145|3000682381|3 +690788|3000682392|3 +811708|3000682488|3 +703030|3000682500|3 +827004|3000682637|3 +730675|3000682892|3 +762330|3000683338|3 +771926|3000683495|3 +771107|3000683499|3 +773607|3000683516|3 +773608|3000683518|3 +780154|3000683593|3 +784558|3000683653|3 +810354|3000684021|3 +810870|3000684022|3 +810355|3000684025|3 +826001|3000684026|3 +810356|3000684027|3 +825754|3000684028|7 +811711|3000684033|3 +811713|3000684036|3 +811710|3000684037|3 +811705|3000684040|3 +811762|3000684041|3 +811757|3000684043|3 +811872|3000684044|3 +811849|3000684046|3 +811923|3000684048|3 +812265|3000684050|3 +812240|3000684051|3 +812350|3000684052|3 +812308|3000684053|3 +812298|3000684054|3 +813233|3000684058|3 +813490|3000684059|3 +813493|3000684060|3 +813989|3000684066|3 +814120|3000684067|3 +814123|3000684068|3 +814124|3000684070|3 +814122|3000684071|3 +814155|3000684072|3 +814152|3000684073|3 +814156|3000684075|3 +814231|3000684077|3 +814236|3000684078|3 +815147|3000684084|3 +815456|3000684087|3 +815460|3000684088|3 +815473|3000684089|3 +815478|3000684090|3 +815467|3000684091|3 +815461|3000684092|3 +815471|3000684095|3 +815499|3000684097|3 +815500|3000684098|3 +815489|3000684099|3 +815484|3000684101|3 +815494|3000684102|3 +817227|3000684114|3 +817229|3000684115|3 +817228|3000684116|3 +817415|3000684117|3 +817437|3000684118|3 +817438|3000684119|3 +817449|3000684120|3 +820211|3000684121|3 +818113|3000684122|3 +818732|3000684124|3 +819577|3000684125|3 +818135|3000684127|3 +818350|3000684135|3 +819427|3000684139|3 +817714|3000684140|3 +817595|3000684142|3 +820605|3000684147|3 +820911|3000684149|3 +820912|3000684152|3 +821020|3000684156|3 +821010|3000684157|3 +821007|3000684158|3 +821012|3000684159|3 +821015|3000684160|3 +821682|3000684164|3 +821937|3000684169|3 +822296|3000684170|3 +822780|3000684171|3 +823131|3000684176|3 +823531|3000684179|3 +838892|3000684183|5 +823901|3000684185|3 +823914|3000684186|3 +824034|3000684189|3 +824197|3000684191|3 +824196|3000684192|3 +824595|3000684195|3 +824879|3000684196|3 +860197|3000684451|3 +868563|3000684666|3 +869967|3000684695|3 +872817|3000684790|3 +875567|3000684876|3 +877614|3000684927|3 +877562|3000684945|3 +812324|3000685060|3 +883162|3000685068|3 +883809|3000685102|3 +824770|3000685127|3 +539480|3000685177|3 +901360|3000685362|3 +817700|3000686170|3 +891100|3000686499|3 +812345|3000687241|3 +810469|3000688160|3 +613926|3000688395|3 +813934|3000688415|3 +814057|3001014560|3 +679485|3001023523|3 +890919|3001023688|3 +883858|3001026925|3 +819705|3001029645|5 +815495|3001030453|3 +609435|3001042957|3 +813484|3001044721|3 +817841|3001058672|3 +814119|3001061778|3 +810564|3001076837|3 +518045|3001084232|3 +823997|3001090625|3 +824000|3001091087|3 +742780|3001091404|3 +811724|3001099080|3 +817330|3001105359|3 +463966|3001106314|3 +816033|3001107039|3 +599684|3001109571|3 +818223|3001113093|3 +823927|3001117393|3 +651625|3001118715|3 +467607|3001122007|3 +822871|3001124051|3 +812452|3001126344|3 +819428|3001130121|3 +811725|3001141128|3 +825004|3001141137|3 +816305|3001141348|3 +597426|3001143688|3 +526654|3001143961|3 +665788|3001147562|3 +810756|3001147824|3 +868558|3001155584|3 +823436|3001155614|3 +715285|3001155624|3 +552776|3001180747|3 +771891|3001184635|3 +817583|3001191083|3 +821424|3001193313|3 +548695|3001197169|3 +823913|3001200242|3 +872868|3001202169|3 +818803|3001204386|3 +824997|3001209834|3 +810495|3001210721|3 +646186|3001214837|3 +725130|3001214841|3 +825005|3001216550|3 +699527|3001220076|3 +762876|3001220826|3 +534090|3001221143|3 +819765|3001224659|3 +820173|3001228562|3 +877670|3001239538|3 +819914|3001252081|3 +813751|3001263125|3 +811457|3001272177|3 +813491|3001274904|3 +817431|3001279489|3 +838893|3001283092|5 +813316|3001308384|3 +817513|3001316095|3 +817514|3001316108|3 +463822|3001324677|3 +824085|3001326304|3 +820918|3001343267|3 +817503|3001348064|3 +548494|3001348564|3 +812313|3001358870|3 +823507|3001361481|3 +805409|3001363192|3 +811182|3001363687|3 +820212|3001365395|3 +821052|3001370829|3 +551455|3001373475|3 +811709|3001375601|3 +824307|3001375603|3 +821792|3001378551|3 +883857|3001380320|3 +762823|3001380465|3 +824764|3001381298|3 +607530|3001382500|3 +815069|3001385611|3 +810678|3001386879|3 +595886|3001389231|3 +816403|3001394368|3 +810379|3001403909|3 +773603|3001407823|3 +823373|3001411111|3 +811714|3001412639|3 +552780|3001413149|3 +777530|3001415895|3 +816034|3001420353|3 +623830|3001423930|3 +823989|3001425971|3 +476484|3001426713|3 +548704|3001426745|3 +820843|3001431126|3 +842036|3001431133|3 +822329|3001431328|3 +819766|3001431381|3 +815597|3001432531|3 +626161|3001442276|3 +815451|3001446283|3 +811904|3001448157|3 +509252|3001450150|3 +509253|3001451156|3 +559230|3001457432|3 +815458|3001459631|3 +877563|3001461489|3 +811830|3001470491|3 +813485|3001470855|3 +818392|3001477892|3 +834027|3001479990|3 +810763|3001480564|3 +813762|3001491574|3 +813051|3001492387|3 +836942|3001492687|7 +813473|3001496041|3 +814163|3001498210|3 +821130|3001498470|3 +810722|3001499679|3 +681848|3001502552|3 +726157|3001511307|3 +814121|3001513572|3 +783055|3001521669|3 +824759|3001524683|3 +820174|3001527071|3 +815457|3001529922|3 +824993|3001536872|3 +813920|3001536873|3 +885819|3001545949|3 +573436|3001547981|3 +810351|3001549682|3 +810723|3001549685|3 +559231|3001551193|3 +816713|3001552742|3 +815780|3001557900|3 +820919|3001562483|3 +811256|3001566529|3 +755826|3001566825|3 +811951|3001570792|3 +811704|3001571208|3 +818919|3001572131|3 +810483|3001577533|3 +464470|4000424384|3 +466520|4000424423|3 +470164|4000424448|3 +470469|4000424451|3 +471622|4000424453|3 +484882|4000424567|3 +501199|4000424688|3 +501653|4000424704|3 +501654|4000424705|3 +508645|4000424769|3 +539445|4000424976|3 +548693|4000425025|3 +487997|4000425159|3 +821852|4000425189|3 +574434|4000425190|3 +621962|4000425544|3 +823161|4000425615|3 +648872|4000425728|3 +655620|4000425804|3 +655239|4000425816|3 +674932|4000425909|3 +674933|4000425912|3 +677289|4000425941|3 +678238|4000425944|3 +698580|4000426085|3 +714283|4000426210|3 +725016|4000426283|3 +730003|4000426315|3 +731078|4000426348|3 +752259|4000426579|3 +753880|4000426592|3 +769106|4000426703|3 +814706|4000426847|3 +810172|4000426933|3 +811339|4000426941|3 +811337|4000426942|3 +811891|4000426944|3 +813546|4000426953|3 +813547|4000426954|3 +813600|4000426955|3 +813580|4000426958|3 +813588|4000426960|3 +813604|4000426961|3 +813745|4000426963|3 +814054|4000426965|3 +814500|4000426968|3 +814505|4000426970|3 +818240|4000426976|3 +819117|4000426979|5 +819014|4000426987|3 +819015|4000426988|3 +819118|4000426989|5 +836490|4000426993|3 +821579|4000426995|3 +822665|4000426997|3 +823207|4000427001|3 +823691|4000427005|3 +823494|4000427006|3 +823495|4000427009|3 +823417|4000427010|3 +824447|4000427013|3 +711480|4000427052|3 +884818|4000427285|3 +884869|4000427286|3 +900223|4000427396|3 +901264|4000427414|3 +908663|4000427479|2 +908652|4000427480|2 +813619|4000427968|3 +825066|4000429008|3 +788255|4000429143|3 +813750|4000429768|3 +655749|4001012161|3 +819122|4001013625|5 +838888|4001013626|5 +470158|4001013861|3 +815791|4001017354|3 +813564|4001020852|5 +698581|4001025256|3 +698971|4001025822|3 +570832|4001026381|3 +823576|4001036923|3 +816804|4001038291|3 +823245|4001049480|3 +789157|4001059125|3 +621963|4001059372|3 +708936|4001071453|3 +708937|4001072688|3 +901265|4001072809|3 +729628|4001084636|3 +621674|4001093124|3 +748020|4001101050|3 +480485|4001107897|3 +834849|4001108946|5 +813942|4001112118|3 +813609|4001118877|3 +811178|4001118958|3 +655426|4001122920|3 +467603|4001123583|3 +847375|4001127266|3 +823330|4001135606|3 +824001|4001136805|3 +700585|4001136856|3 +541450|4001144808|3 +470825|4001156754|3 +553282|4001156852|3 +666640|4001157048|3 +819291|4001157438|3 +824670|4001161378|3 +609573|4001161894|3 +816756|4001172852|3 +728977|4001173052|3 +815993|4001180534|3 +823371|4001182329|3 +811794|4001183876|3 +901367|4001184458|3 +749579|4001188339|3 +815273|4001188349|3 +901266|4001198423|3 +821980|4001201628|3 +699429|4001204247|3 +824399|4001204293|3 +816837|4001210776|3 +833003|4001212357|5 +708938|4001215028|3 +823977|4001222680|3 +612332|4001223352|3 +836496|4001228925|3 +816877|4001236663|3 +467173|4001245167|3 +749069|4001245214|3 +794508|4001245258|3 +752015|4001245484|3 +512497|4001245753|3 +592359|4001245776|3 +648738|4001245792|3 +812353|4001245903|3 +813611|4001245904|3 +816495|4001245905|3 +823227|4001245906|3 +891085|4001245917|3 +557736|4001249198|3 +820292|4001249654|3 +816434|4001251194|3 +819952|4001251578|3 +814337|4001253006|3 +820816|4001255284|3 +464283|4001256347|3 +818918|4001256509|3 +901267|4001257746|3 +810198|4001258186|3 +708887|4001258406|3 +812059|4001259526|3 +824396|4001262145|3 +823335|4001263809|3 +471413|4001267609|3 +655621|4001267843|3 +816829|4001275953|3 +752315|4001277503|3 +810557|4001283028|3 +823189|4001283278|3 +730022|4001284488|3 +814136|4001285159|3 +816531|4001286645|3 +823496|4001286646|3 +821112|4001286900|3 +751272|4001287029|3 +817889|4001287329|3 +632331|4001289680|3 +823206|4001289685|3 +890570|4001295609|3 +812124|4001298861|3 +461925|4001301106|3 +811908|4001304259|3 +832805|4001314406|7 +810440|4001319071|3 +812127|4001319691|3 +816220|4001323656|3 +749580|4001323960|3 +821116|4001325221|3 +622131|4001326442|3 +815048|4001330957|3 +752266|4001333870|3 +814561|4001335008|3 +816591|4001336321|3 +729732|4001338416|3 +819066|4001342183|3 +815307|4001344046|3 +748101|4001345665|3 +599866|4001346119|3 +671283|4001346194|3 +608535|4001346434|3 +729908|4001346492|3 +817010|4001352010|3 +823349|4001353378|3 +823195|4001353386|3 +812763|4001359807|3 +813471|4001362924|3 +643190|4001363681|3 +816449|4001366705|3 +698822|4001367033|3 +817046|4001368227|3 +812352|4001368594|3 +609232|4001369806|3 +730023|4001374084|3 +789609|4001374442|3 +815967|4001374491|3 +821106|4001375401|3 +777656|4001378088|3 +539447|4001379550|3 +818749|4001380213|3 +819067|4001381739|3 +748222|4001381840|3 +622130|4001381880|3 +655240|4001381897|3 +824677|4001382021|3 +820607|4001384505|3 +751879|4001384819|3 +812122|4001386550|3 +818462|4001386769|3 +816301|4001390275|3 +817164|4001390834|3 +749704|4001391987|3 +822559|4001392026|3 +599735|4001393907|3 +817051|4001399932|3 +570841|4001401584|3 +819950|4001401598|3 +788821|4001402179|3 +489090|4001406207|3 +822741|4001410237|3 +568886|4001411706|3 +621959|4001412245|3 +901268|4001416386|3 +816223|4001417165|3 +816228|4001417166|3 +813572|4001423535|3 +816681|4001425947|3 +455885|4001429120|3 +717685|4001429733|3 +813675|4001429966|3 +823936|4001430106|3 +813482|4001432086|3 +699430|4001435766|3 +693373|4001437327|3 +823350|4001439753|3 +847395|4001445816|3 +749075|4001447703|3 +789052|4001452915|3 +816755|4001453805|3 +821589|4001454316|3 +476322|4001455692|3 +811838|4001458551|3 +609233|4001463540|3 +810193|4001463618|3 +471627|4001465085|3 +814363|4001465644|3 +749728|4001469898|3 +823246|4001473521|3 +750178|4001474257|3 +816231|4001476559|3 +816246|4001478286|3 +900043|4001478288|3 +810270|4001480545|3 +466524|4001485389|3 +818417|4001485732|5 +621956|4001487026|3 +810284|4001493046|3 +811672|4001493047|3 +811678|4001493048|3 +837679|4001493052|7 +463835|4001494174|3 +751877|4001498357|3 +823368|4001498852|3 +823321|4001500968|3 +749076|4001501514|3 +816878|4001510922|3 +816592|4001510953|3 +810196|4001514473|3 +823874|4001514474|3 +824684|4001519219|3 +621964|4001523262|3 +706036|4001526135|3 +825211|4001530900|7 +789053|4001534514|3 +816227|4001536721|3 +813582|4001544198|3 +621878|4001546517|3 +816432|4001549048|3 +817039|4001549907|3 +730024|4001552103|3 +901262|4001554340|3 +819592|4001554440|3 +823539|4001554571|3 +824720|4001559027|3 +817017|4001560908|3 +817890|4001561773|3 +751880|4001562805|3 +729731|4001567124|3 +453831|4001572209|3 +812135|4001572753|3 +454724|5000418312|3 +470454|5000418442|3 +489063|5000418543|3 +491904|5000418577|3 +491905|5000418585|3 +540599|5000418973|3 +539128|5000418988|3 +567932|5000419165|3 +822758|5000419290|3 +591271|5000419308|3 +599336|5000419373|3 +705783|5000420096|3 +709837|5000420143|3 +716132|5000420198|3 +725122|5000420255|3 +771991|5000420644|3 +773054|5000420663|3 +796208|5000420904|3 +802809|5000420982|3 +810238|5000421034|3 +810486|5000421037|3 +810314|5000421038|5 +811892|5000421042|3 +811933|5000421043|3 +811934|5000421044|3 +813828|5000421050|3 +813861|5000421051|3 +813862|5000421052|3 +813840|5000421053|3 +814399|5000421056|3 +814873|5000421058|3 +815127|5000421059|3 +816364|5000421064|3 +817219|5000421065|3 +817443|5000421066|3 +817541|5000421068|3 +817534|5000421069|3 +817533|5000421070|3 +817596|5000421074|3 +832797|5000421075|7 +834017|5000421076|3 +819938|5000421078|3 +818717|5000421079|3 +834018|5000421080|3 +819910|5000421082|3 +818202|5000421086|3 +818360|5000421088|3 +818536|5000421089|3 +833675|5000421091|3 +819300|5000421092|3 +820280|5000421094|3 +820281|5000421097|3 +819911|5000421098|3 +819172|5000421099|3 +835379|5000421100|5 +820282|5000421103|3 +833730|5000421104|3 +821866|5000421108|5 +822297|5000421109|3 +822478|5000421111|3 +822223|5000421113|5 +837610|5000421114|5 +822107|5000421116|3 +822479|5000421117|3 +822315|5000421121|3 +837611|5000421124|5 +821990|5000421125|3 +821306|5000421126|3 +821867|5000421127|5 +821853|5000421130|3 +821868|5000421131|5 +822958|5000421134|3 +822692|5000421135|3 +823077|5000421136|3 +822842|5000421137|3 +822933|5000421140|3 +822981|5000421142|3 +823851|5000421144|3 +824245|5000421146|3 +824277|5000421147|3 +824497|5000421148|3 +890870|5000421551|3 +810289|5000421619|3 +819674|5000423325|5 +883354|5001007574|3 +822105|5001008046|3 +821991|5001008702|3 +824118|5001015038|3 +824064|5001015548|3 +819675|5001018759|5 +821854|5001034641|3 +824298|5001035275|3 +819782|5001035828|3 +835616|5001050081|7 +541163|5001072961|3 +777657|5001104835|3 +816188|5001115502|3 +591804|5001116688|3 +817530|5001127496|3 +470458|5001156239|3 +488928|5001156241|3 +810496|5001171400|3 +812279|5001181556|3 +824231|5001184246|3 +815920|5001215946|3 +811556|5001234096|3 +811567|5001234097|3 +821447|5001248220|3 +812116|5001278367|3 +878403|5001279085|3 +819127|5001280801|3 +812473|5001302498|3 +812522|5001315063|3 +817458|5001319725|3 +824065|5001332982|3 +817297|5001337431|3 +853518|5001337673|3 +834304|5001340206|5 +817298|5001344295|3 +818111|5001344549|3 +810367|5001349738|3 +836493|5001351209|3 +616825|5001360292|3 +812314|5001361692|3 +709838|5001364931|3 +834305|5001381296|5 +821876|5001390209|3 +833723|5001391825|3 +821279|5001393174|3 +819676|5001396338|5 +820781|5001396553|3 +813382|5001401891|3 +824649|5001403983|3 +823934|5001404304|3 +833724|5001406780|3 +823853|5001411116|3 +812660|5001414466|3 +674926|5001419484|3 +819939|5001420071|3 +821930|5001422962|3 +817638|5001423837|3 +811786|5001424383|3 +819912|5001429121|3 +819301|5001429123|3 +810405|5001431983|3 +814904|5001435053|3 +814866|5001446977|3 +814910|5001450920|3 +813933|5001452948|3 +822316|5001453932|3 +847384|5001460868|3 +822482|5001461510|3 +819677|5001466084|5 +470459|5001470712|3 +814820|5001481268|3 +559023|5001487782|3 +819389|5001488442|5 +820286|5001490032|3 +823799|5001491685|3 +507601|5001492783|3 +824244|5001499638|3 +813850|5001501680|3 +879217|5001501724|3 +823852|5001506899|3 +813541|5001508645|3 +813383|5001515229|3 +814853|5001528294|3 +814865|5001528295|3 +817459|5001531596|3 +821678|5001532677|3 +814795|5001539763|3 +817457|5001540234|3 +454134|6000701593|3 +454135|6000701597|3 +462442|6000701750|3 +462185|6000701772|3 +467017|6000701820|3 +467016|6000701848|3 +470407|6000701919|3 +469760|6000701952|3 +469284|6000701972|3 +471579|6000701979|3 +472773|6000702035|3 +476483|6000702111|3 +480834|6000702220|3 +487703|6000702402|3 +487704|6000702411|3 +814249|6000702851|3 +502955|6000702856|3 +504051|6000702909|3 +504052|6000702918|3 +504601|6000702939|3 +507595|6000703041|3 +507805|6000703046|3 +509005|6000703085|3 +743576|6000703192|3 +517555|6000703342|3 +518399|6000703384|3 +811745|6000703548|3 +526351|6000703589|3 +526702|6000703615|3 +526653|6000703621|3 +528301|6000703697|3 +528302|6000703700|3 +531504|6000703800|3 +533902|6000703861|3 +819231|6000703890|3 +540367|6000704020|3 +540365|6000704049|3 +540366|6000704056|3 +541599|6000704058|3 +541650|6000704093|3 +544295|6000704159|3 +544296|6000704161|3 +462334|6000704213|3 +551451|6000704392|3 +559367|6000704591|3 +559355|6000704594|3 +566085|6000704796|3 +566026|6000704816|3 +570924|6000704935|3 +571185|6000704937|3 +580883|6000705194|3 +501650|6000705299|3 +591848|6000705546|3 +591793|6000705554|3 +592431|6000705566|3 +592428|6000705572|3 +592135|6000705573|3 +594286|6000705649|3 +597404|6000705728|3 +597405|6000705735|3 +599086|6000705801|3 +820478|6000705839|3 +603786|6000705938|3 +604385|6000705954|3 +612548|6000706167|3 +613235|6000706207|3 +615034|6000706280|3 +818808|6000706466|3 +620986|6000706532|3 +628389|6000706732|3 +628939|6000706757|3 +645138|6000707158|3 +645139|6000707159|3 +820460|6000707216|3 +467018|6000707479|3 +661084|6000707620|3 +812882|6000707704|3 +665737|6000707747|3 +665733|6000707763|3 +679484|6000708161|3 +681847|6000708227|3 +683722|6000708266|3 +690308|6000708404|3 +690305|6000708405|3 +690304|6000708407|3 +471335|6000708408|3 +695788|6000708555|3 +700137|6000708664|3 +700237|6000708669|3 +705787|6000708812|3 +706836|6000708849|3 +707687|6000708869|3 +707688|6000708870|3 +711684|6000708974|3 +711937|6000708977|3 +712020|6000708980|3 +716321|6000709121|3 +718588|6000709197|3 +723284|6000709321|3 +724080|6000709353|3 +724727|6000709389|3 +725119|6000709392|3 +725027|6000709405|3 +726154|6000709423|3 +727680|6000709495|3 +731168|6000709551|3 +739772|6000709798|3 +749718|6000710069|3 +754480|6000710107|3 +758778|6000710268|3 +760167|6000710310|3 +760168|6000710314|3 +760729|6000710335|3 +760730|6000710345|3 +767130|6000710539|3 +771459|6000710660|3 +775857|6000710776|3 +777536|6000710848|3 +779058|6000710888|3 +779608|6000710907|3 +453033|6000710919|3 +783054|6000711024|3 +794953|6000711299|3 +797848|6000711396|3 +804206|6000711624|3 +825243|6000711760|7 +825253|6000711761|7 +810118|6000711762|3 +810117|6000711763|3 +810221|6000711764|3 +810224|6000711765|3 +810261|6000711766|3 +810294|6000711767|3 +810262|6000711768|3 +810890|6000711772|3 +810577|6000711774|3 +810338|6000711777|3 +811014|6000711780|3 +810711|6000711784|3 +810386|6000711785|3 +810607|6000711786|3 +811248|6000711788|3 +811217|6000711789|3 +811275|6000711790|3 +811274|6000711791|3 +811456|6000711793|3 +811416|6000711796|3 +811621|6000711798|3 +811668|6000711800|3 +811667|6000711801|3 +811695|6000711802|3 +811828|6000711804|3 +811756|6000711807|3 +811886|6000711814|3 +811877|6000711815|3 +811870|6000711816|3 +811730|6000711819|3 +811864|6000711822|5 +811781|6000711823|3 +811851|6000711824|3 +811733|6000711825|3 +811888|6000711826|3 +811753|6000711828|3 +811727|6000711829|3 +811976|6000711836|3 +811963|6000711837|3 +811964|6000711838|3 +812173|6000711841|3 +812174|6000711842|3 +812175|6000711843|3 +812180|6000711844|3 +812275|6000711846|3 +812255|6000711847|3 +812280|6000711848|3 +812237|6000711849|3 +812287|6000711852|3 +812259|6000711853|3 +812638|6000711854|3 +812668|6000711857|3 +812480|6000711858|3 +812477|6000711859|3 +812533|6000711860|3 +812834|6000711861|3 +812868|6000711862|3 +813000|6000711865|3 +813167|6000711867|3 +813173|6000711868|3 +813205|6000711869|3 +813207|6000711871|3 +813220|6000711872|3 +813393|6000711873|3 +813605|6000711874|3 +813591|6000711875|3 +814098|6000711881|3 +813988|6000711882|3 +813979|6000711883|3 +813980|6000711886|3 +814046|6000711887|3 +814047|6000711888|3 +814315|6000711890|3 +814486|6000711894|3 +814715|6000711895|3 +814972|6000711896|3 +814971|6000711897|3 +815079|6000711904|3 +815026|6000711907|3 +815049|6000711908|3 +815099|6000711910|3 +815122|6000711912|3 +815107|6000711913|3 +815101|6000711915|3 +815100|6000711916|3 +815111|6000711917|3 +815108|6000711918|3 +815102|6000711921|3 +815104|6000711922|3 +815463|6000711926|3 +815482|6000711928|3 +815559|6000711930|3 +815604|6000711932|3 +815533|6000711933|3 +815653|6000711934|3 +815806|6000711935|3 +815825|6000711937|3 +815783|6000711938|3 +815785|6000711939|3 +815911|6000711940|3 +815912|6000711942|3 +816090|6000711945|3 +816086|6000711946|3 +816087|6000711950|3 +816083|6000711951|3 +816072|6000711952|3 +816081|6000711954|3 +816480|6000711960|3 +817077|6000711961|3 +817076|6000711963|3 +817285|6000711965|3 +817359|6000711968|3 +817382|6000711969|3 +817680|6000711972|3 +817973|6000711973|5 +817743|6000711976|3 +818406|6000711980|3 +818702|6000711982|3 +818282|6000711984|3 +817815|6000711985|3 +817816|6000711987|3 +835212|6000711988|7 +818313|6000711989|3 +819729|6000711990|3 +819730|6000711991|3 +834855|6000711994|5 +818706|6000711996|3 +834654|6000711999|5 +818385|6000712003|3 +818299|6000712004|3 +819160|6000712005|3 +818082|6000712011|3 +819731|6000712012|3 +818314|6000712013|3 +834840|6000712014|5 +818315|6000712016|3 +818300|6000712019|3 +818681|6000712024|3 +818786|6000712025|3 +819502|6000712026|3 +817688|6000712027|3 +819345|6000712028|3 +819495|6000712037|3 +819880|6000712038|3 +819891|6000712041|3 +820461|6000712043|3 +834887|6000712045|5 +818042|6000712046|3 +818316|6000712050|3 +820479|6000712052|3 +833453|6000712057|5 +817681|6000712058|3 +817682|6000712062|3 +818145|6000712068|3 +819161|6000712069|3 +819881|6000712072|3 +819892|6000712073|3 +820512|6000712075|3 +820676|6000712079|3 +820558|6000712080|3 +820848|6000712081|3 +821056|6000712084|3 +821071|6000712086|3 +821031|6000712087|3 +822286|6000712094|3 +821391|6000712095|3 +821450|6000712100|3 +821672|6000712101|3 +821735|6000712102|3 +821451|6000712104|3 +821736|6000712105|3 +821856|6000712106|3 +822285|6000712109|3 +821251|6000712110|3 +822093|6000712111|3 +821268|6000712113|3 +821673|6000712116|3 +821392|6000712117|3 +823117|6000712119|3 +822899|6000712122|3 +822732|6000712123|3 +822919|6000712124|3 +823120|6000712126|3 +823078|6000712127|3 +822719|6000712130|3 +823121|6000712131|3 +822691|6000712132|3 +822733|6000712133|3 +822972|6000712134|3 +823142|6000712135|3 +823311|6000712136|3 +823310|6000712137|3 +823622|6000712138|3 +823683|6000712139|3 +823500|6000712140|3 +823551|6000712141|3 +823885|6000712145|3 +823929|6000712146|3 +823931|6000712147|3 +823887|6000712150|3 +823998|6000712151|3 +824069|6000712152|3 +824052|6000712153|3 +824042|6000712156|3 +824122|6000712158|3 +824043|6000712159|3 +824235|6000712163|3 +824405|6000712166|3 +824404|6000712167|3 +824457|6000712168|3 +824774|6000712172|3 +824856|6000712174|3 +824859|6000712175|3 +824873|6000712176|3 +824875|6000712177|3 +824909|6000712178|3 +824904|6000712179|3 +824910|6000712180|3 +824905|6000712181|3 +825097|6000712184|3 +825168|6000712187|3 +825123|6000712189|3 +845297|6000712282|3 +846746|6000712314|3 +846747|6000712319|3 +849194|6000712373|3 +853693|6000712476|3 +865467|6000712919|3 +867219|6000712982|3 +816073|6000713140|3 +878409|6000713491|3 +878918|6000713512|3 +883153|6000713634|3 +511805|6000713869|3 +890920|6000713895|3 +908658|6000714295|2 +908636|6000714296|2 +878416|6000714302|3 +494654|6000715094|3 +815054|6000715867|3 +817016|6000715893|3 +821497|6000718135|3 +815106|6000721017|3 +814645|6000721645|3 +820846|6000723256|3 +812186|6001022531|3 +834888|6001023698|5 +609586|6001023739|3 +820758|6001026223|3 +716328|6001028820|3 +676890|6001031254|3 +814908|6001033351|3 +820317|6001034909|5 +814239|6001037001|3 +507604|6001037260|3 +608534|6001043312|3 +815321|6001048891|3 +814392|6001052231|3 +550302|6001055656|3 +816075|6001062552|3 +541049|6001062564|3 +814614|6001070382|3 +754378|6001074424|3 +823506|6001078740|3 +810887|6001081030|3 +822801|6001084103|3 +811768|6001084610|3 +819893|6001085250|3 +815807|6001085515|3 +478835|6001087379|3 +797847|6001087699|3 +811438|6001088899|3 +819056|6001089821|3 +811728|6001093227|3 +824874|6001094106|3 +816416|6001094659|3 +822921|6001095621|3 +665133|6001097630|3 +679186|6001099089|3 +540382|6001103011|3 +811236|6001104318|3 +697886|6001107245|3 +811800|6001107412|3 +818291|6001108243|3 +818301|6001108845|3 +469781|6001109561|3 +553068|6001109691|3 +824330|6001112820|3 +824644|6001115556|3 +816201|6001116676|3 +818043|6001117577|3 +817374|6001117735|3 +818231|6001118741|3 +811743|6001124796|3 +811544|6001126518|3 +786295|6001128173|3 +818804|6001129298|3 +815053|6001131159|3 +818754|6001133346|3 +819454|6001133707|3 +771456|6001139393|3 +821166|6001142432|3 +683712|6001142535|3 +738475|6001146345|3 +783909|6001147094|3 +717275|6001147650|3 +810273|6001147764|3 +469782|6001154495|3 +814443|6001156215|3 +698036|6001157839|3 +505153|6001158510|3 +815767|6001158997|3 +811729|6001163528|3 +570820|6001173198|3 +810134|6001174329|3 +811696|6001177367|3 +814968|6001177417|3 +817380|6001177432|3 +540950|6001177491|3 +815118|6001177515|3 +550303|6001179537|3 +513055|6001184038|3 +681617|6001188190|3 +818682|6001188902|3 +822384|6001188903|3 +511255|6001189314|3 +813398|6001191405|3 +834889|6001191409|5 +811417|6001199150|3 +820828|6001200034|3 +578986|6001200918|3 +489044|6001204209|3 +613924|6001205842|3 +814528|6001207422|3 +540401|6001207687|3 +824253|6001217459|3 +824964|6001217678|3 +821385|6001219657|3 +507224|6001220021|3 +559332|6001220022|3 +815680|6001221696|3 +811669|6001222136|3 +901388|6001226638|3 +810260|6001228375|3 +877509|6001228960|3 +816373|6001228973|3 +837359|6001229105|3 +817370|6001230755|3 +814507|6001231192|3 +749574|6001231565|3 +819229|6001235830|5 +853764|6001236121|3 +591799|6001236804|3 +822628|6001239492|3 +900221|6001242924|3 +816350|6001246864|3 +812460|6001247828|3 +811301|6001248595|3 +818788|6001248873|3 +815038|6001249022|3 +824908|6001250510|3 +817744|6001254640|3 +817075|6001255251|3 +814538|6001255820|3 +612329|6001260741|3 +824902|6001261101|3 +816205|6001261560|3 +479582|6001263762|3 +823911|6001276653|3 +814487|6001279177|3 +820864|6001279222|3 +820865|6001279224|3 +822918|6001279926|3 +816988|6001280898|3 +597421|6001289084|3 +706837|6001289130|3 +821892|6001289301|3 +754430|6001298078|3 +478968|6001299147|3 +838291|6001304405|5 +818544|6001305127|3 +811879|6001308747|3 +812534|6001308748|3 +754476|6001311276|3 +816367|6001317410|3 +540369|6001318412|3 +469783|6001318514|3 +824461|6001318747|3 +820480|6001319058|3 +817477|6001320541|3 +822284|6001324151|5 +811665|6001324521|3 +820666|6001324810|3 +812729|6001325560|3 +821944|6001326171|3 +816374|6001327111|3 +832553|6001329112|7 +810308|6001331513|3 +813168|6001332776|3 +819455|6001334082|3 +683713|6001339406|3 +830648|6001340258|5 +811783|6001341088|3 +499800|6001341144|3 +811418|6001341185|3 +489045|6001349162|3 +606273|6001349312|3 +815606|6001349663|3 +811939|6001350288|3 +813569|6001355396|3 +824334|6001361441|3 +722634|6001361608|3 +822604|6001361609|3 +723285|6001361856|3 +722885|6001363078|3 +811278|6001363499|3 +591277|6001369697|3 +716322|6001371642|3 +726155|6001379045|3 +613930|6001381439|3 +815534|6001381565|3 +820288|6001381613|3 +679856|6001382792|3 +835219|6001386116|7 +814316|6001386415|3 +824631|6001387135|3 +693788|6001388021|3 +815056|6001388855|3 +813172|6001389934|3 +810888|6001390102|3 +812556|6001396204|3 +815789|6001396341|3 +611936|6001396370|3 +821393|6001397924|3 +559327|6001399239|3 +811122|6001400682|3 +593484|6001400940|3 +818683|6001400945|3 +816435|6001405439|3 +824281|6001412515|3 +750080|6001415724|3 +704488|6001419841|3 +824126|6001419916|3 +823005|6001421409|5 +824966|6001426538|3 +810124|6001429456|3 +824912|6001430172|3 +811304|6001434550|3 +722635|6001435917|3 +820694|6001438453|3 +797850|6001441719|3 +811769|6001443960|3 +559328|6001444235|3 +811216|6001445570|3 +819248|6001446244|3 +814687|6001449347|3 +820456|6001449486|3 +815839|6001450230|3 +818303|6001451489|3 +811007|6001452608|3 +815096|6001453677|3 +526704|6001456116|3 +594234|6001457646|3 +812605|6001459567|3 +815105|6001459761|3 +816322|6001465419|3 +815092|6001466686|3 +815798|6001466687|3 +814318|6001467085|3 +825236|6001471927|7 +823029|6001473025|3 +690296|6001476191|3 +813450|6001476195|3 +818441|6001476226|3 +822904|6001478111|3 +697887|6001478693|3 +813969|6001481007|3 +835237|6001484648|7 +811397|6001486105|3 +818789|6001486107|3 +690309|6001489013|3 +690306|6001489015|3 +777746|6001490244|3 +819456|6001490252|3 +813138|6001491771|3 +811545|6001492938|3 +540370|6001493924|3 +815759|6001494347|3 +740780|6001496237|3 +824632|6001496618|3 +847447|6001499279|3 +635455|6001501245|3 +810158|6001501265|3 +810309|6001501267|3 +811247|6001501268|3 +817683|6001501270|3 +811365|6001501496|3 +811793|6001501519|3 +818292|6001503339|3 +824781|6001504296|3 +820569|6001505460|3 +814688|6001507375|3 +526903|6001507592|3 +818831|6001509635|3 +817299|6001510639|3 +810160|6001510920|3 +692037|6001511727|3 +815476|6001512883|3 +824157|6001513748|3 +583423|6001514244|3 +817105|6001517970|3 +815790|6001522062|3 +819457|6001522484|3 +821857|6001522486|3 +768230|6001522499|3 +723409|6001522792|3 +626156|6001523243|3 +825054|6001523245|3 +724728|6001523976|3 +597398|6001526474|3 +815652|6001527589|3 +813436|6001531244|3 +812267|6001531448|3 +818302|6001535499|3 +815777|6001537335|3 +815818|6001537337|3 +712024|6001537777|3 +819894|6001540244|3 +819071|6001540725|3 +786209|6001541046|3 +824462|6001543041|3 +769092|6001545809|3 +816200|6001546433|3 +462443|6001547645|3 +818545|6001549252|3 +834890|6001549263|5 +824911|6001550588|3 +819458|6001551306|3 +823278|6001551310|3 +834891|6001551392|5 +816378|6001554157|3 +817037|6001554166|3 +812285|6001554691|3 +540372|6001554719|3 +815114|6001555051|3 +815845|6001555193|3 +847446|6001557817|3 +821815|6001562787|3 +816185|6001563208|3 +743575|6001563551|3 +810387|6001563705|3 +826003|6001563724|3 +539411|6001563884|3 +818832|6001566650|3 +771487|6001566990|3 +821407|6001569860|3 +821408|6001570297|3 +469784|6001572102|3 +821727|6001572589|3 +815042|6001574174|3 +811412|6001574915|3 +825058|6001575385|3 +451264|7000224958|3 +451265|7000224959|3 +812707|7000225191|3 +455035|7000225206|3 +462326|7000225522|3 +818461|7000225563|3 +464471|7000225624|3 +466498|7000225729|3 +467020|7000225809|3 +467835|7000225834|3 +469773|7000225972|3 +470462|7000225977|3 +471469|7000226037|3 +812120|7000226320|3 +479784|7000226568|3 +485396|7000226848|3 +485397|7000226849|3 +487755|7000227014|3 +541681|7000227030|3 +489073|7000227055|3 +488734|7000227068|3 +489042|7000227086|3 +488933|7000227087|3 +488952|7000227088|3 +488934|7000227090|3 +488894|7000227092|3 +489070|7000227099|3 +494050|7000227378|3 +504752|7000227886|3 +504753|7000227897|3 +541193|7000227932|3 +507199|7000228053|3 +512050|7000228326|3 +519055|7000228737|3 +817312|7000228885|3 +526339|7000229186|3 +527255|7000229226|3 +538652|7000229811|3 +541672|7000229851|3 +579234|7000229855|3 +541682|7000229864|3 +540598|7000229869|3 +541683|7000229883|3 +541164|7000229896|3 +539481|7000229902|3 +539424|7000229906|3 +541192|7000229916|3 +541597|7000229928|3 +541673|7000229930|3 +539425|7000229944|3 +539426|7000229964|3 +539482|7000229975|3 +541684|7000229988|3 +541165|7000230003|3 +543398|7000230061|3 +543401|7000230063|3 +543402|7000230068|3 +543399|7000230087|3 +544152|7000230130|3 +544153|7000230132|3 +544300|7000230137|3 +544302|7000230150|3 +544396|7000230154|3 +544301|7000230173|3 +544397|7000230185|3 +544398|7000230187|3 +548705|7000230488|3 +550631|7000230605|3 +550738|7000230607|3 +550739|7000230620|3 +551886|7000230681|3 +559264|7000231176|3 +499798|7000231382|3 +564935|7000231834|3 +570919|7000232215|3 +571869|7000232255|3 +572731|7000232359|3 +578782|7000232814|3 +581729|7000232958|3 +823334|7000233345|3 +591849|7000233692|3 +592360|7000233716|3 +599104|7000234193|3 +604026|7000234489|3 +604027|7000234515|3 +604028|7000234521|3 +605179|7000234550|3 +605180|7000234577|3 +606201|7000234654|3 +607531|7000234721|3 +608084|7000234771|3 +608736|7000234828|3 +609235|7000234847|3 +611413|7000234994|3 +611421|7000234998|3 +612313|7000235027|3 +613978|7000235091|3 +614885|7000235164|3 +614886|7000235165|3 +620236|7000235515|3 +621937|7000235633|3 +818229|7000235775|3 +629589|7000236116|3 +630839|7000236261|3 +626167|7000236385|3 +633789|7000236456|3 +635505|7000236571|3 +638938|7000236793|3 +639424|7000236846|3 +640040|7000236908|3 +640388|7000236949|3 +640477|7000236954|3 +641979|7000237093|3 +643384|7000237198|3 +823693|7000237490|3 +646488|7000237568|3 +651040|7000237994|3 +651288|7000238046|3 +655069|7000238257|3 +655776|7000238273|3 +656290|7000238360|3 +661538|7000239066|3 +661539|7000239070|3 +665040|7000239399|3 +668137|7000239595|3 +671481|7000239788|3 +676989|7000240047|3 +679827|7000240191|3 +679828|7000240192|3 +679839|7000240194|3 +679829|7000240195|3 +679846|7000240197|3 +679842|7000240199|3 +679857|7000240201|3 +679869|7000240202|3 +679865|7000240203|3 +497902|7000240247|3 +681908|7000240272|3 +681909|7000240286|3 +681917|7000240287|3 +684970|7000240440|3 +685971|7000240483|3 +818537|7000240491|3 +687502|7000240573|3 +689659|7000240685|3 +694528|7000240987|3 +695338|7000241021|3 +696488|7000241117|3 +697087|7000241159|3 +698436|7000241271|3 +699501|7000241289|3 +699520|7000241292|3 +700187|7000241358|3 +700038|7000241372|3 +705785|7000241757|3 +708135|7000241937|3 +710095|7000242040|3 +711522|7000242147|3 +711338|7000242152|3 +711478|7000242171|3 +715282|7000242402|3 +715283|7000242407|3 +722883|7000242822|3 +723283|7000242848|3 +723427|7000242878|3 +725021|7000242949|3 +725019|7000242951|3 +731153|7000243286|3 +732030|7000243364|3 +733679|7000243471|3 +738480|7000243934|3 +528205|7000244004|3 +819764|7000244094|3 +741629|7000244213|3 +748224|7000244693|3 +748016|7000244710|3 +750725|7000244754|3 +751878|7000244767|3 +752318|7000244776|3 +752319|7000244778|3 +752320|7000244779|3 +752321|7000244782|3 +758080|7000245122|3 +758929|7000245170|3 +758870|7000245173|3 +760375|7000245278|3 +764230|7000245565|3 +770458|7000245928|3 +813396|7000245993|3 +773203|7000246100|3 +781009|7000246582|3 +837366|7000246680|3 +783707|7000246748|3 +784535|7000246794|3 +784536|7000246799|3 +784537|7000246807|3 +791502|7000247094|3 +794946|7000247334|3 +795909|7000247409|3 +796502|7000247448|3 +796491|7000247455|3 +797844|7000247504|3 +797857|7000247514|3 +804959|7000247971|3 +805377|7000247988|3 +805379|7000247991|3 +805383|7000247992|3 +805386|7000247994|3 +805384|7000247995|3 +805406|7000248004|3 +805413|7000248006|3 +805414|7000248007|3 +846444|7000248140|3 +809723|7000248407|3 +809623|7000248416|3 +825214|7000248478|7 +825213|7000248480|7 +825212|7000248481|7 +825215|7000248482|7 +825252|7000248483|7 +810066|7000248484|3 +810128|7000248485|3 +810192|7000248487|3 +810680|7000248496|3 +810506|7000248497|3 +810394|7000248498|3 +810312|7000248502|3 +810677|7000248504|3 +810671|7000248507|3 +811063|7000248510|3 +810418|7000248514|3 +810853|7000248516|3 +810358|7000248517|3 +810773|7000248523|3 +810825|7000248524|3 +810826|7000248525|3 +825988|7000248526|3 +811237|7000248528|3 +811263|7000248529|3 +811267|7000248530|3 +811214|7000248532|3 +811268|7000248533|3 +811262|7000248534|3 +811254|7000248535|3 +811220|7000248536|3 +811212|7000248537|3 +811369|7000248543|3 +811625|7000248548|3 +811636|7000248550|3 +811605|7000248553|3 +811691|7000248556|3 +811697|7000248558|3 +811694|7000248561|3 +811863|7000248562|3 +811850|7000248565|3 +811885|7000248566|3 +811875|7000248567|3 +811897|7000248568|3 +811736|7000248569|3 +811834|7000248570|3 +812001|7000248573|3 +812051|7000248577|3 +812086|7000248579|3 +812087|7000248580|3 +812083|7000248582|3 +812152|7000248583|3 +812143|7000248584|3 +812203|7000248586|3 +812246|7000248587|3 +812672|7000248588|3 +812506|7000248594|3 +812773|7000248596|3 +812808|7000248598|3 +812807|7000248600|3 +812799|7000248601|3 +812816|7000248604|3 +812837|7000248607|3 +812928|7000248610|3 +812996|7000248613|3 +813056|7000248616|3 +813144|7000248621|3 +813148|7000248623|3 +813149|7000248624|3 +813150|7000248625|3 +813197|7000248631|3 +813226|7000248633|3 +813350|7000248641|3 +813505|7000248646|3 +813740|7000248653|3 +813799|7000248656|3 +813883|7000248657|3 +813919|7000248660|3 +813944|7000248661|3 +829305|7000248664|3 +814235|7000248673|3 +814245|7000248674|3 +814251|7000248675|3 +814305|7000248677|3 +814398|7000248679|3 +814402|7000248680|3 +814405|7000248681|3 +814421|7000248682|3 +814546|7000248686|3 +814638|7000248688|3 +814636|7000248689|3 +814774|7000248693|3 +814791|7000248694|3 +814805|7000248695|3 +814815|7000248696|3 +814812|7000248697|3 +814894|7000248698|3 +814835|7000248700|3 +814869|7000248701|3 +814895|7000248702|3 +814852|7000248703|3 +814981|7000248708|3 +814978|7000248709|3 +815159|7000248713|3 +815157|7000248714|3 +815265|7000248719|3 +815377|7000248720|3 +815306|7000248724|3 +815171|7000248727|3 +815378|7000248728|3 +815466|7000248730|3 +815631|7000248731|3 +815704|7000248732|3 +815538|7000248733|3 +815569|7000248735|3 +815673|7000248737|3 +815530|7000248746|3 +823428|7000248748|3 +815539|7000248751|3 +815705|7000248752|3 +815570|7000248755|3 +815718|7000248757|3 +815850|7000248758|3 +815832|7000248762|3 +815808|7000248763|3 +816013|7000248768|3 +816014|7000248769|3 +816066|7000248771|3 +816080|7000248773|3 +816104|7000248774|3 +816121|7000248775|3 +816176|7000248778|3 +816162|7000248779|3 +816172|7000248781|3 +816262|7000248783|3 +816310|7000248786|3 +816324|7000248790|3 +816428|7000248793|3 +816490|7000248794|3 +816479|7000248795|3 +816912|7000248796|3 +816615|7000248797|3 +816657|7000248798|3 +816576|7000248799|3 +832155|7000248804|3 +816733|7000248807|3 +817058|7000248808|3 +817074|7000248809|3 +817069|7000248814|3 +817070|7000248815|3 +817244|7000248819|3 +817245|7000248820|3 +817275|7000248821|3 +817262|7000248822|3 +817276|7000248823|3 +817327|7000248827|3 +817326|7000248828|3 +817389|7000248832|3 +817398|7000248835|3 +817402|7000248836|3 +817407|7000248837|3 +817423|7000248838|3 +817436|7000248845|3 +817473|7000248846|3 +817509|7000248847|3 +817528|7000248848|3 +819390|7000248854|3 +834847|7000248856|5 +817869|7000248859|3 +820117|7000248864|3 +820468|7000248869|3 +818386|7000248870|3 +834807|7000248873|3 +818973|7000248874|3 +818643|7000248876|3 +819959|7000248878|3 +819421|7000248879|3 +818437|7000248880|3 +817870|7000248881|3 +817881|7000248883|3 +819472|7000248886|3 +818833|7000248888|3 +835618|7000248890|7 +820062|7000248893|3 +833676|7000248894|3 +818644|7000248899|3 +818670|7000248904|3 +818004|7000248906|3 +818407|7000248907|3 +835261|7000248908|5 +819310|7000248909|3 +834230|7000248911|7 +817577|7000248914|3 +817851|7000248916|3 +818178|7000248920|3 +820063|7000248924|3 +818189|7000248927|3 +819960|7000248929|3 +819422|7000248931|3 +833004|7000248932|5 +817648|7000248933|3 +817578|7000248935|3 +818307|7000248939|3 +820198|7000248942|3 +834808|7000248944|3 +818671|7000248948|3 +818438|7000248949|3 +817774|7000248953|3 +835262|7000248959|5 +818611|7000248960|3 +819423|7000248962|3 +835388|7000248966|5 +820064|7000248968|3 +817701|7000248970|3 +818179|7000248975|3 +834809|7000248980|3 +818811|7000248982|3 +819228|7000248986|5 +835619|7000248989|7 +818190|7000248990|3 +817775|7000248993|3 +817832|7000248996|3 +819099|7000248997|3 +818645|7000248998|3 +817702|7000249002|3 +818171|7000249003|3 +820760|7000249011|3 +820578|7000249017|3 +820672|7000249019|3 +820877|7000249020|3 +820976|7000249021|3 +820993|7000249022|3 +820995|7000249023|3 +820997|7000249024|3 +820999|7000249026|3 +821060|7000249027|3 +821053|7000249028|3 +836705|7000249034|5 +821417|7000249036|3 +822509|7000249039|3 +821347|7000249041|3 +821721|7000249042|3 +837365|7000249044|5 +822110|7000249045|3 +822510|7000249047|3 +822511|7000249055|3 +821547|7000249056|3 +836701|7000249057|5 +821762|7000249058|3 +821971|7000249061|3 +821310|7000249064|3 +822208|7000249065|3 +836396|7000249066|7 +822362|7000249067|3 +821311|7000249069|3 +822209|7000249075|3 +821247|7000249076|3 +821799|7000249077|3 +821373|7000249079|3 +821945|7000249080|3 +821290|7000249082|3 +837291|7000249083|5 +822210|7000249087|3 +821838|7000249094|3 +821807|7000249097|3 +822630|7000249105|3 +822678|7000249108|3 +822684|7000249109|3 +822821|7000249112|3 +822822|7000249114|3 +823096|7000249115|3 +822811|7000249116|3 +822959|7000249118|3 +822812|7000249119|3 +823097|7000249120|3 +822796|7000249122|3 +823098|7000249124|3 +822966|7000249130|3 +822956|7000249131|3 +823050|7000249136|3 +822823|7000249137|3 +822913|7000249138|3 +823111|7000249141|3 +823237|7000249147|3 +823171|7000249148|3 +823180|7000249149|3 +823168|7000249150|3 +823268|7000249151|3 +823327|7000249155|3 +823469|7000249158|3 +823672|7000249161|3 +823613|7000249162|3 +823746|7000249163|3 +823753|7000249165|3 +823754|7000249167|3 +823720|7000249168|3 +823830|7000249172|3 +823839|7000249173|3 +823827|7000249174|3 +823847|7000249175|3 +823915|7000249176|3 +823919|7000249177|3 +823917|7000249178|3 +823903|7000249179|3 +824030|7000249182|3 +824108|7000249184|3 +824095|7000249185|3 +823027|7000249186|3 +824249|7000249187|3 +824148|7000249191|3 +824149|7000249192|3 +824295|7000249196|3 +824318|7000249198|3 +824433|7000249201|3 +824561|7000249205|3 +824545|7000249206|3 +839801|7000249209|5 +824560|7000249213|3 +824546|7000249214|3 +824570|7000249215|3 +824569|7000249216|3 +824658|7000249217|3 +824660|7000249218|3 +824808|7000249221|3 +824829|7000249223|3 +824828|7000249224|3 +824864|7000249226|3 +824940|7000249229|3 +824986|7000249231|3 +825021|7000249233|3 +825139|7000249241|3 +825180|7000249242|3 +825171|7000249244|3 +825143|7000249245|3 +840496|7000249247|3 +840494|7000249249|3 +840495|7000249250|3 +842031|7000249359|3 +844997|7000249571|3 +816465|7000249625|3 +846740|7000249640|3 +847392|7000249651|3 +848438|7000249757|3 +852338|7000249972|3 +853090|7000250012|3 +856394|7000250192|3 +541166|7000250472|3 +865463|7000250667|3 +865464|7000250678|3 +867220|7000250747|3 +870814|7000250956|3 +874818|7000251235|3 +875562|7000251278|3 +876270|7000251315|3 +877512|7000251404|3 +877520|7000251421|3 +878414|7000251470|3 +883166|7000251730|3 +883154|7000251740|3 +882952|7000251780|3 +883810|7000251797|3 +884870|7000251863|3 +892470|7000252312|3 +895567|7000252454|3 +895719|7000252460|3 +897020|7000252542|3 +898763|7000252712|3 +898818|7000252737|3 +898810|7000252748|3 +899017|7000252764|3 +899018|7000252765|3 +900023|7000252792|3 +900228|7000252799|3 +901305|7000252816|3 +908638|7000253227|2 +544154|7000254712|3 +814388|7000254761|3 +823892|7000255648|3 +471382|7000258600|3 +820213|7000259165|3 +823546|7000260298|3 +795757|7000260364|3 +821643|7000260579|3 +818044|7000261629|3 +815627|7000264158|3 +824257|7000264182|3 +824646|7000264664|3 +823721|7000271191|3 +824928|7000272450|3 +469762|7000273337|3 +810459|7000274078|3 +883350|7000274506|3 +810543|7000274617|3 +622124|7000274638|3 +818005|7000275276|3 +818958|7000275671|3 +551702|7000275935|3 +815454|7000275963|3 +814650|7000276484|3 +471580|7001001341|3 +613975|7001001560|3 +826272|7001002572|7 +811175|7001002578|3 +812883|7001002581|3 +814132|7001002586|3 +814252|7001002588|3 +814386|7001002590|3 +814549|7001002596|3 +816012|7001002605|3 +816430|7001002608|3 +816814|7001002609|3 +818045|7001002615|3 +818961|7001002620|3 +822379|7001002630|3 +823342|7001002634|3 +823510|7001002638|3 +824941|7001002642|3 +852339|7001002683|3 +824952|7001003902|3 +471631|7001005002|3 +715188|7001005068|3 +810298|7001005408|3 +813047|7001005416|3 +813523|7001005417|3 +817057|7001005422|3 +817068|7001005426|3 +819141|7001005431|3 +842040|7001005443|3 +889705|7001005506|3 +817547|7001006512|3 +815211|7001006956|3 +810444|7001008084|3 +462514|7001008087|3 +813769|7001008120|3 +812224|7001008122|3 +817073|7001008123|3 +834019|7001008125|3 +495951|7001012056|3 +836422|7001012570|5 +751427|7001012976|3 +709120|7001013007|3 +726480|7001013046|3 +823424|7001013055|3 +815148|7001013351|3 +818610|7001013371|5 +818310|7001013373|3 +817579|7001013377|3 +819424|7001013382|3 +818006|7001013385|3 +788784|7001013582|3 +823154|7001013588|3 +690331|7001014371|3 +473379|7001015230|3 +790559|7001024578|3 +540640|7001024595|3 +825169|7001024683|3 +815024|7001024701|3 +725015|7001026062|3 +824696|7001027467|3 +813349|7001029118|3 +812805|7001031732|3 +883150|7001032747|3 +698956|7001033522|3 +812814|7001035591|3 +669570|7001035640|3 +471610|7001039392|3 +451246|7001040795|3 +823010|7001041694|5 +825084|7001042147|3 +541678|7001042603|3 +726680|7001047990|3 +824880|7001048532|3 +816094|7001049196|3 +672277|7001051917|3 +822824|7001051948|3 +814881|7001053933|3 +822729|7001053938|3 +824637|7001055043|3 +740930|7001055609|3 +824809|7001056012|3 +818959|7001056089|3 +541442|7001056375|3 +622093|7001057359|3 +816507|7001057546|3 +751571|7001059158|3 +816496|7001059878|3 +816652|7001060626|3 +820986|7001063964|3 +454725|7001064478|3 +516955|7001064758|3 +821487|7001065028|3 +462327|7001066702|3 +679859|7001068698|3 +811535|7001069114|3 +817852|7001069142|3 +836494|7001069152|3 +822987|7001069156|3 +822626|7001069244|3 +741630|7001070633|3 +823604|7001070773|3 +814417|7001077402|3 +592433|7001077538|3 +526342|7001077550|3 +824248|7001077701|3 +810544|7001077703|3 +818261|7001084299|3 +689767|7001086156|3 +686469|7001086588|3 +814409|7001087938|3 +824519|7001089106|3 +736579|7001089598|3 +879215|7001090748|3 +789014|7001091186|3 +818646|7001091190|3 +820983|7001091191|3 +612290|7001091418|3 +469778|7001094802|3 +819962|7001094828|3 +817543|7001095842|3 +811720|7001100613|3 +559378|7001101120|3 +821241|7001101302|3 +813003|7001101868|3 +815613|7001102546|3 +814672|7001103768|3 +712884|7001105103|3 +816770|7001109035|3 +810529|7001110511|3 +777635|7001111514|3 +797849|7001112708|3 +814321|7001113019|3 +817144|7001113060|3 +466515|7001118844|3 +812157|7001119176|3 +812156|7001119178|3 +811019|7001119248|5 +714233|7001119265|3 +655596|7001119315|3 +811801|7001119386|3 +814612|7001119475|3 +593179|7001119497|3 +540347|7001120894|3 +832147|7001120916|3 +810504|7001122553|3 +812590|7001123090|3 +811367|7001123694|3 +569784|7001123873|3 +516600|7001123964|3 +836537|7001125561|3 +805381|7001127904|3 +813571|7001128177|3 +524491|7001129119|3 +816928|7001129370|3 +699411|7001129803|3 +810313|7001132808|3 +814551|7001132810|3 +824369|7001134600|3 +488903|7001134607|3 +823419|7001134960|3 +813514|7001134965|3 +622125|7001135232|3 +813665|7001135499|3 +810304|7001135914|3 +814855|7001136278|3 +810652|7001137630|3 +752260|7001138088|3 +812819|7001138092|3 +823099|7001138094|3 +822501|7001138111|3 +837633|7001138343|5 +825144|7001138519|3 +819145|7001138901|5 +823610|7001139199|3 +823439|7001139200|3 +812768|7001140932|3 +812802|7001141042|3 +814613|7001141127|3 +818950|7001141522|3 +717686|7001141529|3 +883366|7001142029|3 +765880|7001142181|3 +655285|7001143745|3 +825083|7001144127|3 +820718|7001146720|3 +541167|7001147204|3 +812833|7001149010|3 +813151|7001149827|3 +699412|7001150844|3 +751158|7001152254|3 +825022|7001152297|3 +821955|7001154238|3 +539472|7001157245|3 +580880|7001157603|3 +699533|7001158817|3 +725118|7001159191|3 +765972|7001159214|3 +813887|7001159409|3 +814618|7001159433|3 +817007|7001159519|3 +819742|7001159528|3 +818498|7001159539|3 +819200|7001159547|3 +821533|7001159566|5 +821910|7001159572|3 +853534|7001159743|3 +534285|7001162456|3 +818333|7001162898|3 +817982|7001169414|5 +824900|7001169415|3 +898758|7001169416|3 +823244|7001170112|3 +757580|7001170520|3 +610429|7001171813|3 +814769|7001172048|3 +822894|7001173257|3 +813513|7001173449|3 +805400|7001178686|3 +824899|7001178974|3 +821871|7001179435|3 +822988|7001181072|3 +464469|7001181280|3 +812964|7001182301|3 +818311|7001182303|3 +819556|7001182400|3 +853702|7001185054|3 +709183|7001185621|3 +813188|7001187446|3 +599584|7001187831|3 +729685|7001189655|3 +823744|7001189780|3 +908631|7001190314|2 +816759|7001190903|3 +610430|7001191930|3 +811134|7001192533|3 +510205|7001193286|3 +798252|7001195508|3 +817083|7001195755|3 +816016|7001195835|3 +810653|7001196055|3 +821722|7001196425|3 +847357|7001196538|3 +630888|7001198096|3 +908640|7001198559|2 +878404|7001198925|3 +835403|7001199478|5 +816929|7001200752|3 +453785|7001202371|3 +814422|7001202409|3 +821534|7001203779|5 +824942|7001203841|3 +815472|7001212123|3 +821121|7001212127|3 +837630|7001212169|5 +901174|7001212199|3 +559220|7001212979|3 +813581|7001215520|3 +814656|7001215549|3 +824898|7001215552|3 +837370|7001216468|3 +816482|7001216551|3 +814658|7001217092|3 +823250|7001217098|3 +557334|7001221248|3 +817243|7001222382|3 +816658|7001224431|3 +838743|7001226535|3 +470452|7001227765|3 +811782|7001228050|3 +908651|7001228052|2 +459335|7001228286|3 +654735|7001228448|3 +810567|7001228549|3 +679872|7001229002|3 +816234|7001229172|3 +822039|7001229340|3 +643385|7001230853|3 +756327|7001231410|3 +679843|7001232488|3 +813147|7001233327|3 +817397|7001234127|3 +487351|7001234784|3 +811726|7001235072|3 +699409|7001236608|3 +783109|7001236609|3 +824370|7001237860|3 +817580|7001238463|3 +814646|7001239170|3 +816342|7001240350|3 +817581|7001241248|3 +816102|7001242286|3 +679830|7001243933|3 +679850|7001244796|3 +540660|7001245119|3 +813154|7001247258|3 +813152|7001247260|3 +814089|7001247369|3 +749714|7001247833|3 +825060|7001248172|3 +811261|7001250048|3 +818230|7001250286|3 +899019|7001251131|3 +665134|7001251164|3 +466522|7001251932|3 +709121|7001251942|3 +544395|7001255441|3 +816483|7001256043|3 +810460|7001256399|3 +469280|7001257040|3 +824626|7001258473|3 +635453|7001259965|3 +824897|7001259996|3 +817425|7001260912|3 +751428|7001262100|3 +751875|7001263550|3 +818007|7001263647|3 +881313|7001264185|3 +749054|7001265185|3 +540386|7001265355|3 +580878|7001267610|3 +626170|7001267613|3 +814880|7001267760|3 +825010|7001269527|3 +883151|7001269843|3 +823978|7001271751|3 +817426|7001272273|3 +800505|7001272846|3 +819150|7001276934|5 +729686|7001277627|3 +773204|7001278325|3 +815955|7001278791|3 +821325|7001279256|3 +809624|7001280389|3 +816501|7001282139|3 +814382|7001286120|3 +810382|7001286193|3 +621677|7001287690|3 +819743|7001288178|3 +729025|7001288483|3 +814373|7001288818|3 +814517|7001288819|3 +622129|7001291827|3 +814322|7001292360|3 +817983|7001292367|5 +834822|7001292715|5 +890819|7001292747|3 +698437|7001294350|3 +812148|7001295263|3 +818612|7001295271|3 +824744|7001295281|3 +466174|7001295781|3 +635454|7001296485|3 +816020|7001296863|3 +814515|7001299553|3 +893114|7001300864|3 +823112|7001302782|3 +668237|7001302893|3 +470420|7001303360|3 +824725|7001304001|3 +609581|7001304658|3 +544704|7001306077|3 +816813|7001307063|3 +485401|7001307899|3 +514147|7001308354|3 +816540|7001308562|3 +690336|7001309460|3 +816245|7001310076|3 +825014|7001310077|3 +821239|7001311800|3 +819151|7001311886|5 +616175|7001312957|3 +819016|7001313357|3 +820984|7001313446|3 +599736|7001315185|3 +788640|7001315373|3 +815521|7001315821|3 +898811|7001316176|3 +822560|7001317482|3 +814654|7001318474|3 +679849|7001318563|3 +823450|7001318774|3 +816614|7001319070|5 +820520|7001321924|3 +819219|7001322754|5 +813155|7001322820|3 +812475|7001322846|3 +812721|7001322857|3 +654736|7001322964|3 +819875|7001324243|3 +769107|7001326105|3 +817020|7001326245|3 +812125|7001326484|3 +822624|7001327242|3 +565786|7001327597|3 +824918|7001328309|3 +817421|7001328687|3 +813145|7001328778|3 +815665|7001329055|3 +810938|7001329753|3 +815964|7001330084|3 +822849|7001332407|3 +822212|7001334782|3 +814360|7001334832|3 +824783|7001335663|3 +824371|7001335717|3 +814556|7001336425|3 +820608|7001336427|3 +811255|7001336565|3 +811521|7001336822|3 +821900|7001337306|3 +821901|7001337629|3 +810461|7001338226|3 +821634|7001338676|3 +471383|7001339078|3 +817639|7001339296|3 +836843|7001340129|5 +820524|7001343072|3 +768748|7001343992|3 +751156|7001344039|3 +908662|7001345232|2 +908657|7001345235|2 +451236|7001345496|3 +816671|7001345511|3 +810278|7001347370|3 +476183|7001347726|3 +679838|7001349149|3 +824317|7001349275|3 +540661|7001350590|3 +687504|7001350888|3 +823323|7001350947|3 +824739|7001350950|3 +485402|7001351803|3 +822968|7001352169|3 +816487|7001353031|3 +817175|7001353053|3 +824521|7001354076|3 +674937|7001354121|3 +485399|7001355092|3 +485400|7001355093|3 +815841|7001356409|3 +719782|7001357734|3 +592181|7001359576|3 +816784|7001360401|3 +814782|7001360499|3 +817328|7001361153|3 +817065|7001361627|3 +729761|7001361978|3 +567934|7001363627|3 +768750|7001364018|3 +817984|7001364375|5 +719988|7001366071|3 +816719|7001366128|3 +891003|7001366367|3 +815963|7001369146|3 +812929|7001369585|3 +835484|7001372799|5 +816464|7001372817|3 +856296|7001373556|3 +699134|7001373717|3 +754380|7001375191|3 +822623|7001375195|3 +822320|7001376798|3 +541180|7001376992|3 +700579|7001377889|3 +814574|7001380291|3 +823762|7001380506|3 +699413|7001381099|3 +825078|7001381339|3 +813146|7001382576|3 +826746|7001382833|5 +821072|7001383938|3 +836643|7001383940|5 +818982|7001384193|3 +816521|7001384629|5 +751157|7001385537|3 +715281|7001385988|3 +813297|7001387172|3 +883159|7001387175|3 +893119|7001387692|3 +760772|7001388469|3 +474278|7001388883|3 +810462|7001388889|3 +689667|7001391892|3 +816914|7001392322|3 +618024|7001393065|3 +812210|7001393148|3 +816237|7001393150|3 +622088|7001393327|3 +814035|7001393560|3 +570928|7001393707|3 +728928|7001393753|3 +654738|7001395211|3 +816553|7001395737|3 +825173|7001398043|3 +817173|7001398526|3 +816021|7001399762|3 +789018|7001401371|3 +569786|7001401476|3 +459333|7001402567|3 +789013|7001402594|3 +812149|7001402818|3 +859897|7001402821|3 +683721|7001402896|3 +642937|7001403540|3 +816967|7001403550|3 +811795|7001404169|3 +788209|7001404687|3 +818983|7001404690|3 +814567|7001405480|3 +818984|7001406394|3 +811818|7001406579|3 +485405|7001407015|3 +451237|7001407044|3 +544399|7001408194|3 +551728|7001408197|3 +813403|7001408212|3 +813405|7001408213|3 +816516|7001408249|5 +812076|7001410007|3 +821864|7001410231|3 +814615|7001410340|3 +822321|7001411925|3 +823730|7001412431|3 +824360|7001412600|3 +788790|7001412927|3 +485404|7001413627|3 +699135|7001413860|3 +792359|7001413922|3 +816401|7001413928|3 +816402|7001413930|3 +791906|7001414394|3 +817975|7001416279|5 +821519|7001416305|3 +699521|7001417427|3 +813826|7001417460|3 +814376|7001417466|3 +814584|7001417468|3 +816636|7001417469|3 +819420|7001417473|3 +814292|7001417765|3 +816225|7001420966|3 +570930|7001420989|3 +679868|7001421395|3 +813806|7001422285|3 +485403|7001422654|3 +687503|7001424843|3 +570929|7001425339|3 +820507|7001429715|3 +817814|7001430154|3 +818985|7001430159|3 +653290|7001431496|3 +810574|7001431596|3 +820829|7001431832|3 +824271|7001433295|3 +824373|7001433301|3 +862908|7001433353|5 +883325|7001433389|3 +816542|7001435346|3 +816983|7001435347|3 +550742|7001438286|3 +708335|7001438289|3 +825008|7001438857|3 +815109|7001439537|3 +820550|7001439901|3 +812708|7001440526|3 +816543|7001440775|3 +757627|7001444213|3 +814366|7001444456|3 +814573|7001445108|3 +811448|7001445291|3 +810593|7001446258|3 +674928|7001446335|3 +836838|7001446555|5 +814170|7001447069|3 +581730|7001448018|3 +581673|7001448332|3 +723414|7001448334|3 +811759|7001450936|3 +813550|7001451342|3 +825989|7001452695|3 +551729|7001452917|3 +823888|7001453229|3 +812927|7001454230|3 +655773|7001454325|3 +815782|7001454345|3 +814649|7001455359|3 +824276|7001456317|3 +488000|7001457133|3 +900317|7001458431|3 +478983|7001461312|3 +816380|7001461325|3 +642938|7001461467|3 +661534|7001462473|3 +825069|7001462540|3 +773559|7001462682|3 +814679|7001464270|3 +822905|7001464512|3 +825174|7001464513|3 +825009|7001464514|3 +824067|7001465156|3 +883348|7001465937|3 +820027|7001467028|3 +816926|7001467137|3 +814621|7001467347|3 +879197|7001467956|3 +466510|7001468213|3 +699414|7001468659|3 +471445|7001469174|3 +820521|7001470112|3 +451249|7001471364|3 +451248|7001471368|3 +690332|7001471591|3 +853523|7001471596|3 +801458|7001472348|3 +817060|7001472765|3 +821716|7001473866|3 +820988|7001474498|3 +819733|7001474643|3 +825070|7001475434|3 +881319|7001475446|3 +816088|7001475710|3 +814816|7001476602|3 +661540|7001477429|3 +775859|7001477491|3 +823326|7001477526|3 +479969|7001477543|3 +811221|7001478417|3 +658732|7001480283|3 +812963|7001481406|3 +810143|7001481657|3 +820966|7001481686|3 +824639|7001481700|3 +478683|7001481978|3 +889707|7001481999|3 +879216|7001483482|3 +621876|7001483913|3 +812447|7001483920|3 +811780|7001487148|3 +463413|7001488320|3 +559263|7001488496|3 +630390|7001488663|3 +640481|7001488711|3 +817422|7001489105|3 +822518|7001489109|5 +821375|7001489111|3 +821659|7001489151|3 +825013|7001489155|3 +818597|7001489199|5 +893818|7001490596|3 +811853|7001490797|3 +824471|7001491005|3 +608086|7001491611|3 +789064|7001492063|3 +814410|7001492350|3 +495954|7001493239|3 +822517|7001494553|5 +824651|7001494667|3 +825085|7001495055|3 +817027|7001495700|3 +789065|7001496149|3 +812052|7001499056|3 +822026|7001500067|3 +812991|7001500087|3 +671290|7001500359|3 +810324|7001500476|3 +814317|7001500477|3 +816541|7001500727|3 +820551|7001501824|3 +836682|7001502424|5 +834231|7001503462|7 +816852|7001504595|3 +824016|7001504890|3 +570824|7001505556|3 +816536|7001505722|3 +686466|7001505955|3 +812070|7001506341|3 +836551|7001506552|3 +816731|7001507615|3 +853547|7001507807|3 +612320|7001509006|3 +552777|7001509857|3 +814860|7001509880|3 +818449|7001510325|3 +817329|7001510550|3 +823831|7001511480|3 +805380|7001511601|3 +814781|7001512975|3 +812053|7001513557|3 +816980|7001514292|3 +524555|7001515299|3 +818499|7001516013|3 +810243|7001516384|3 +536955|7001517415|3 +821951|7001518461|3 +822363|7001519189|3 +753873|7001519468|3 +824881|7001519693|3 +840467|7001519781|3 +893118|7001520589|3 +817059|7001520816|3 +816444|7001520845|3 +805382|7001522067|3 +679834|7001523307|3 +791501|7001523589|3 +823228|7001525287|3 +821096|7001526386|3 +642740|7001526730|3 +608486|7001528062|3 +706832|7001528328|3 +819380|7001529357|3 +819418|7001530409|3 +541179|7001530597|3 +824490|7001532841|3 +817296|7001535829|3 +824389|7001538205|3 +739774|7001538980|3 +754379|7001539583|3 +813384|7001539737|3 +654737|7001540072|3 +819081|7001540736|3 +814403|7001541092|3 +818755|7001542206|3 +818180|7001542207|3 +817876|7001542457|3 +812515|7001542861|3 +814620|7001543210|3 +671490|7001543262|3 +699525|7001543279|3 +811986|7001543300|3 +824896|7001543474|3 +814069|7001543639|3 +823160|7001543689|3 +679841|7001543955|3 +815936|7001544060|3 +823722|7001544155|3 +818181|7001544911|3 +822588|7001544912|3 +606282|7001544956|3 +812745|7001545010|3 +822652|7001549376|3 +485398|7001550486|3 +655777|7001550759|3 +699522|7001550806|3 +816275|7001550944|3 +820643|7001550951|3 +466512|7001553782|3 +580881|7001554096|3 +818805|7001554123|3 +816812|7001554240|3 +815515|7001555445|3 +817325|7001555446|3 +862910|7001555582|5 +817724|7001555713|3 +536647|7001556254|3 +812673|7001557144|3 +817282|7001558458|3 +821124|7001558477|3 +810982|7001559853|3 +816981|7001559854|3 +819419|7001559958|3 +901175|7001559959|3 +813009|7001561507|3 +470821|7001561560|3 +813008|7001561612|3 +605933|7001561754|3 +816429|7001562953|3 +840464|7001563023|3 +822323|7001563632|3 +816760|7001564133|3 +824504|7001565375|3 +699282|7001565688|3 +499799|7001565835|3 +814619|7001566602|3 +821345|7001568209|3 +816997|7001569657|3 +819732|7001570312|3 +811523|7001570444|3 +816419|7001570684|3 +821097|7001570771|3 +816597|7001571371|3 +714277|7001571844|3 +816412|7001572533|3 +813336|7001574849|3 +834232|7001576093|7 +816944|7001576204|3 +816265|7001576872|3 +815439|7001577435|3 +820791|7001577438|3 +810828|7001577564|3 +461532|8000832241|3 +461533|8000832250|3 +463825|8000832316|3 +463956|8000832326|3 +463824|8000832357|3 +466502|8000832389|3 +467488|8000832452|3 +467630|8000832456|3 +467604|8000832471|3 +467601|8000832474|3 +467373|8000832477|3 +467012|8000832478|3 +775856|8000832504|3 +469774|8000832519|3 +469775|8000832534|3 +470152|8000832537|3 +469680|8000832560|3 +469451|8000832562|3 +471635|8000832566|3 +471634|8000832575|3 +471426|8000832590|3 +472429|8000832627|3 +485365|8000832962|3 +488155|8000833028|3 +495500|8000833218|3 +495501|8000833222|3 +789509|8000833241|3 +816341|8000833384|3 +502047|8000833476|3 +501905|8000833496|3 +507594|8000833686|3 +508650|8000833725|3 +510600|8000833797|3 +514955|8000833980|3 +518396|8000834117|3 +519655|8000834163|3 +520755|8000834189|3 +527903|8000834473|3 +538655|8000834864|3 +810837|8000834867|3 +540641|8000834893|3 +541680|8000834899|3 +540388|8000834926|3 +539483|8000834929|3 +540669|8000834940|3 +540670|8000834956|3 +544852|8000835034|3 +836155|8000835179|3 +550251|8000835216|3 +550355|8000835225|3 +550252|8000835226|3 +550253|8000835231|3 +813864|8000835338|3 +570818|8000835746|3 +570819|8000835748|3 +571885|8000835793|3 +571886|8000835803|3 +771493|8000835854|3 +588534|8000836280|3 +591779|8000836337|3 +591780|8000836357|3 +599133|8000836523|3 +604685|8000836751|3 +605184|8000836762|3 +609176|8000836858|3 +612336|8000836922|3 +612304|8000836928|3 +612575|8000836934|3 +612576|8000836951|3 +612310|8000836968|3 +612305|8000836975|3 +612577|8000836982|3 +612604|8000836983|3 +612311|8000836991|3 +612306|8000837000|3 +612307|8000837011|3 +612578|8000837014|3 +613981|8000837045|3 +614685|8000837069|3 +622115|8000837377|3 +622116|8000837385|3 +624484|8000837437|3 +624485|8000837444|3 +624585|8000837449|3 +627188|8000837559|3 +628938|8000837640|3 +811582|8000837675|3 +630889|8000837699|3 +637236|8000837877|3 +638639|8000837900|3 +813848|8000837945|3 +658039|8000838383|3 +660190|8000838456|3 +663488|8000838554|3 +664888|8000838597|3 +664889|8000838601|3 +665731|8000838627|3 +667616|8000838683|3 +667630|8000838685|3 +667617|8000838686|3 +671335|8000838856|3 +671476|8000838863|3 +671336|8000838867|3 +724624|8000839095|3 +686722|8000839519|3 +853765|8000839564|3 +690298|8000839597|3 +690297|8000839598|3 +695533|8000839753|3 +698734|8000839824|3 +698818|8000839841|3 +698819|8000839842|3 +698816|8000839848|3 +701534|8000839899|3 +702338|8000839936|3 +817796|8000840051|3 +706830|8000840075|3 +711528|8000840211|3 +713938|8000840296|3 +813923|8000840335|3 +823694|8000840401|3 +718787|8000840452|3 +719784|8000840500|3 +816304|8000840566|3 +724625|8000840619|3 +725017|8000840642|3 +729948|8000840751|3 +737178|8000841012|3 +749060|8000841370|3 +749061|8000841374|3 +749062|8000841377|3 +810640|8000841396|3 +762280|8000841741|3 +539229|8000841790|3 +771933|8000842048|3 +771930|8000842057|3 +773200|8000842103|3 +774959|8000842182|3 +777632|8000842266|3 +781309|8000842374|3 +784544|8000842473|3 +784458|8000842578|3 +791907|8000842674|3 +791908|8000842676|3 +823628|8000842775|3 +796509|8000842848|3 +796490|8000842849|3 +807874|8000843186|3 +810166|8000843237|3 +810165|8000843239|3 +810167|8000843240|3 +810169|8000843241|3 +810170|8000843242|3 +810168|8000843243|3 +810187|8000843245|3 +810190|8000843246|3 +810186|8000843248|3 +810525|8000843252|3 +810449|8000843253|3 +810641|8000843255|3 +810450|8000843256|3 +810487|8000843257|3 +810821|8000843258|3 +810743|8000843260|3 +810873|8000843261|3 +810838|8000843263|3 +810717|8000843266|3 +810642|8000843267|3 +810874|8000843271|3 +810526|8000843273|3 +810718|8000843275|3 +810752|8000843276|3 +810663|8000843277|3 +810708|8000843278|3 +810480|8000843280|3 +811225|8000843283|3 +811245|8000843285|3 +811249|8000843286|3 +811226|8000843288|3 +811233|8000843289|3 +811250|8000843290|3 +811488|8000843291|3 +811775|8000843296|3 +811776|8000843297|3 +811920|8000843299|3 +811774|8000843300|3 +811804|8000843302|3 +811938|8000843305|3 +811940|8000843306|3 +812153|8000843311|3 +812204|8000843313|3 +812207|8000843314|3 +812263|8000843316|3 +812256|8000843319|3 +812311|8000843320|3 +812329|8000843322|3 +812318|8000843323|3 +812665|8000843326|3 +812704|8000843328|3 +812575|8000843329|3 +812694|8000843333|3 +812439|8000843334|3 +812491|8000843337|3 +812767|8000843339|3 +812785|8000843342|3 +812932|8000843344|3 +812933|8000843345|3 +812941|8000843346|3 +812972|8000843347|3 +812970|8000843348|3 +812971|8000843349|3 +812982|8000843350|3 +812978|8000843352|3 +812980|8000843353|3 +813053|8000843358|3 +813052|8000843359|3 +813231|8000843364|3 +813230|8000843365|3 +813228|8000843367|3 +813229|8000843369|3 +813236|8000843370|3 +813234|8000843371|3 +813474|8000843375|3 +813706|8000843378|3 +813711|8000843380|3 +813744|8000843381|3 +813743|8000843382|3 +813758|8000843385|3 +813760|8000843386|3 +813838|8000843390|3 +813839|8000843391|3 +813929|8000843393|3 +813940|8000843395|3 +813930|8000843396|3 +813915|8000843397|3 +813922|8000843398|3 +813941|8000843399|3 +813999|8000843403|3 +814062|8000843405|3 +814100|8000843406|3 +814079|8000843408|3 +814185|8000843410|3 +814181|8000843412|3 +814201|8000843413|3 +814191|8000843414|3 +814670|8000843417|3 +814671|8000843418|3 +814683|8000843419|3 +814872|8000843421|3 +815041|8000843423|3 +815070|8000843424|5 +815071|8000843427|5 +815029|8000843428|3 +815060|8000843431|3 +815123|8000843432|3 +815351|8000843437|3 +815201|8000843439|3 +815198|8000843440|3 +815251|8000843441|3 +815630|8000843442|3 +815788|8000843446|3 +815843|8000843447|3 +815844|8000843448|3 +815858|8000843451|3 +815859|8000843453|3 +816037|8000843457|3 +816218|8000843458|3 +816291|8000843462|3 +816311|8000843463|3 +816321|8000843464|3 +816356|8000843465|3 +816466|8000843468|3 +817119|8000843471|3 +817125|8000843473|3 +817136|8000843475|3 +817135|8000843476|3 +817272|8000843480|3 +817269|8000843481|3 +817305|8000843482|3 +819302|8000843485|3 +834885|8000843489|5 +834132|8000843491|5 +819748|8000843493|3 +819506|8000843494|3 +820060|8000843496|3 +819664|8000843497|5 +818812|8000843499|3 +835626|8000843502|7 +818937|8000843503|3 +818200|8000843508|3 +818635|8000843509|3 +817640|8000843510|3 +819665|8000843514|5 +820190|8000843515|3 +817641|8000843522|3 +833947|8000843523|5 +818627|8000843524|3 +820426|8000843527|3 +818974|8000843531|3 +818355|8000843532|3 +819220|8000843534|5 +834848|8000843536|5 +817764|8000843538|3 +473381|8000843540|3 +818320|8000843542|3 +820545|8000843548|3 +820662|8000843550|3 +820978|8000843555|3 +821084|8000843560|3 +821398|8000843566|3 +821376|8000843570|3 +821671|8000843571|3 +821399|8000843574|3 +822298|8000843576|3 +821400|8000843579|3 +821899|8000843580|3 +822650|8000843581|3 +821679|8000843582|3 +821680|8000843583|3 +836448|8000843588|5 +821786|8000843593|3 +822900|8000843595|3 +822757|8000843596|3 +822935|8000843598|3 +823024|8000843601|3 +823130|8000843604|3 +823143|8000843607|3 +823185|8000843609|3 +823293|8000843611|3 +823302|8000843612|3 +823493|8000843615|3 +823391|8000843616|3 +823431|8000843617|3 +823455|8000843618|3 +823587|8000843619|3 +823473|8000843620|3 +823409|8000843621|3 +823679|8000843622|3 +823743|8000843626|3 +823755|8000843627|3 +823745|8000843628|3 +823725|8000843629|3 +823728|8000843630|3 +823900|8000843633|3 +824002|8000843635|3 +824090|8000843637|3 +824211|8000843639|3 +824189|8000843641|3 +824179|8000843642|3 +824224|8000843643|3 +824229|8000843644|3 +824208|8000843645|3 +824174|8000843646|3 +824146|8000843649|3 +824435|8000843651|3 +824513|8000843655|3 +824557|8000843656|3 +824724|8000843660|3 +824825|8000843661|3 +824845|8000843662|3 +824877|8000843663|3 +824878|8000843664|3 +824949|8000843667|3 +825120|8000843669|3 +846526|8000843853|3 +846964|8000843872|3 +853517|8000844052|3 +852995|8000844055|3 +873019|8000844942|3 +877511|8000845170|3 +877717|8000845194|3 +815666|8000845532|3 +889716|8000845674|3 +895220|8000845824|3 +895318|8000845831|3 +900224|8000845927|3 +900240|8000845940|3 +900241|8000845944|3 +900242|8000845966|3 +900243|8000845967|3 +817302|8000846715|3 +818582|8000846805|3 +825127|8000849502|3 +638640|8000850893|3 +559359|8000851252|3 +470455|8000853031|3 +470147|8000853228|3 +818766|8000854393|3 +820546|8000854420|3 +830504|8000855838|5 +612579|8001020060|3 +810794|8001023368|3 +817124|8001025649|3 +824216|8001025988|3 +819734|8001028418|3 +672274|8001028431|3 +811833|8001032837|3 +812331|8001035516|3 +823766|8001038868|3 +814739|8001040751|3 +581580|8001040877|3 +814059|8001044569|3 +673679|8001046579|3 +817014|8001048861|3 +825242|8001049907|7 +821831|8001055139|3 +811520|8001058931|3 +486354|8001060348|3 +821305|8001068764|3 +819211|8001068985|3 +818131|8001069358|3 +467374|8001073144|3 +611412|8001075539|3 +823752|8001076294|3 +786108|8001076370|3 +810064|8001076970|3 +812249|8001080295|3 +840480|8001089691|3 +834886|8001089760|5 +819133|8001089786|3 +822301|8001092071|3 +821119|8001093625|3 +817247|8001096041|3 +813018|8001100805|3 +816112|8001102545|3 +820977|8001103992|3 +817997|8001104740|3 +840481|8001105374|3 +476234|8001108655|3 +540671|8001110930|3 +671471|8001111351|3 +900225|8001112784|3 +487648|8001113322|3 +510601|8001115022|3 +689766|8001115023|3 +811224|8001116484|3 +835479|8001116514|5 +626929|8001116791|3 +582232|8001117697|3 +661790|8001117703|3 +812115|8001117710|3 +820165|8001117861|3 +812335|8001120593|3 +820166|8001124253|3 +821723|8001126384|3 +822299|8001127891|3 +837674|8001133311|7 +541693|8001133575|3 +823737|8001133983|3 +822927|8001138059|3 +822928|8001138060|3 +814180|8001138850|3 +463957|8001140591|3 +813710|8001146382|3 +833454|8001148119|5 +711887|8001148592|3 +823686|8001148724|3 +451280|8001148919|3 +818813|8001152243|3 +548034|8001152712|3 +813901|8001153492|3 +548696|8001154697|3 +813032|8001154924|3 +612580|8001155006|3 +485367|8001155832|3 +822616|8001160929|3 +821714|8001168114|3 +551726|8001169878|3 +551727|8001170322|3 +612316|8001181927|3 +635490|8001183382|3 +815370|8001184073|3 +606284|8001186790|3 +825249|8001187411|7 +814158|8001187686|3 +824222|8001189024|3 +626171|8001193041|3 +824265|8001194978|3 +817286|8001196438|3 +681846|8001198261|3 +822617|8001198547|3 +559375|8001200590|3 +559376|8001201877|3 +812440|8001203205|3 +825206|8001204120|7 +769209|8001207529|3 +821789|8001209163|3 +824430|8001211626|3 +816352|8001213268|3 +811059|8001214247|3 +814416|8001214283|3 +818094|8001214734|3 +541731|8001215572|3 +813759|8001215611|3 +665136|8001216509|3 +823912|8001218381|3 +811921|8001219960|3 +820495|8001221119|3 +817120|8001221437|3 +818358|8001222978|3 +599134|8001224175|3 +507541|8001224748|3 +844996|8001227839|3 +815314|8001227840|3 +823569|8001229365|3 +824178|8001232555|3 +814195|8001234142|3 +824068|8001235720|3 +813888|8001238111|3 +815842|8001238222|3 +811257|8001238331|3 +823876|8001242385|3 +819134|8001242861|3 +810530|8001246867|3 +606285|8001247358|3 +898762|8001248343|3 +664983|8001251145|3 +812343|8001251303|3 +715836|8001256026|3 +812631|8001258538|3 +811251|8001259805|3 +812890|8001259806|3 +558836|8001260191|3 +836839|8001264381|5 +823562|8001265866|3 +810532|8001265955|3 +820914|8001275597|3 +810531|8001277046|3 +716315|8001279556|3 +824109|8001280536|3 +810875|8001283545|3 +463970|8001284985|3 +753867|8001285000|3 +632771|8001285184|3 +825207|8001286804|7 +820973|8001293981|3 +842497|8001297545|3 +889715|8001300605|3 +833738|8001301036|3 +824254|8001302525|3 +821829|8001302804|3 +821085|8001303324|3 +626152|8001303937|3 +812257|8001307176|3 +795799|8001307879|3 +811060|8001310681|3 +812632|8001315351|3 +821074|8001316222|3 +485380|8001316724|3 +868418|8001319319|3 +840469|8001319626|3 +611522|8001321858|3 +470174|8001323062|3 +812344|8001324782|3 +820936|8001326093|3 +824767|8001326320|3 +824766|8001327712|3 +813033|8001327782|3 +671990|8001331811|3 +818730|8001332218|3 +813031|8001332821|3 +835480|8001334192|5 +818737|8001337600|3 +852996|8001340094|3 +822839|8001342022|3 +824525|8001342306|3 +469779|8001343970|3 +606686|8001344484|3 +868556|8001344671|3 +694529|8001350144|3 +541732|8001355691|3 +786299|8001359351|3 +539485|8001363311|3 +820945|8001363615|3 +814125|8001365546|3 +812302|8001373889|3 +817388|8001373890|3 +817771|8001373891|3 +537598|8001376860|3 +725018|8001377099|3 +811922|8001378135|3 +824830|8001378436|3 +501703|8001378883|3 +813189|8001379090|3 +819290|8001379614|3 +612308|8001381017|3 +476334|8001381466|3 +810297|8001381718|3 +723407|8001382254|3 +723416|8001382940|3 +810295|8001386886|3 +824948|8001388419|3 +812658|8001388544|3 +772809|8001388639|3 +812633|8001389853|3 +813907|8001389970|3 +824539|8001394195|3 +824374|8001394797|3 +813025|8001395448|3 +679848|8001398132|3 +824951|8001399076|3 +813693|8001399819|3 +900244|8001401131|3 +840468|8001401225|3 +825244|8001407657|7 +752017|8001408440|3 +612593|8001409891|3 +838285|8001411154|5 +539486|8001413082|3 +597424|8001413757|3 +814525|8001413809|3 +815163|8001413811|3 +815165|8001413812|3 +822045|8001415631|3 +822858|8001419973|3 +597425|8001422011|3 +669573|8001422031|3 +674938|8001422036|3 +819916|8001422137|3 +821065|8001422140|3 +846522|8001422149|3 +825246|8001424202|7 +817306|8001424203|3 +818731|8001424205|3 +698966|8001426186|3 +812946|8001426395|3 +812945|8001426397|3 +816344|8001426400|3 +773201|8001435468|3 +817281|8001435480|3 +823854|8001435481|3 +817772|8001436229|3 +883353|8001440041|3 +769068|8001441251|3 +816443|8001441565|3 +824831|8001441570|3 +817406|8001442332|3 +671477|8001445119|3 +823999|8001445754|3 +819449|8001448004|3 +853738|8001452763|3 +818923|8001454379|3 +810285|8001455560|3 +811129|8001456009|3 +512485|8001456597|3 +819450|8001456976|3 +824833|8001457964|3 +592357|8001460923|3 +810729|8001461111|3 +822803|8001462177|3 +810606|8001463453|3 +456668|8001466116|3 +824554|8001467498|3 +823352|8001468397|3 +822834|8001468993|3 +810275|8001469363|3 +821790|8001472552|3 +810296|8001473172|3 +824432|8001473453|3 +711529|8001474290|3 +751573|8001474412|3 +812206|8001474666|3 +517505|8001474858|3 +901142|8001474888|3 +823769|8001476976|3 +672288|8001477786|3 +665138|8001479151|3 +791058|8001480557|3 +817283|8001480565|3 +789025|8001481437|3 +811252|8001481447|3 +823855|8001481449|3 +510602|8001482712|3 +660733|8001486343|3 +762828|8001488154|3 +812258|8001489006|3 +900245|8001489078|3 +875565|8001489950|3 +559228|8001492042|3 +820496|8001494605|3 +810194|8001495112|3 +492805|8001496571|3 +752472|8001496984|3 +824142|8001499350|3 +655772|8001499438|3 +813330|8001500661|3 +820271|8001502804|3 +811941|8001503379|3 +540643|8001504216|3 +819749|8001507836|3 +616936|8001509330|3 +495504|8001509921|3 +810067|8001510668|3 +729982|8001511640|3 +819212|8001511669|3 +540642|8001516041|3 +539484|8001516952|3 +816202|8001517735|3 +816204|8001517736|3 +821018|8001518218|3 +752016|8001519218|3 +862919|8001520705|5 +816718|8001522127|3 +824615|8001524931|3 +814545|8001525801|3 +674940|8001525828|3 +817270|8001525834|3 +784459|8001526280|3 +821011|8001526545|3 +815164|8001526574|3 +814540|8001528210|3 +485366|8001528358|3 +698825|8001529046|3 +757628|8001529293|3 +811465|8001529469|3 +810200|8001529655|3 +824225|8001530080|3 +812205|8001530375|3 +823637|8001531639|3 +818628|8001531739|3 +816362|8001531901|3 +470175|8001531906|3 +811279|8001535329|3 +815886|8001537252|3 +824434|8001538032|3 +819915|8001538107|3 +559377|8001538328|3 +700583|8001538641|3 +621772|8001543847|3 +495503|8001544194|3 +815315|8001544374|3 +824950|8001545704|3 +681612|8001549786|3 +672275|8001549835|3 +703684|8001549891|3 +811380|8001550156|3 +823655|8001551887|3 +812114|8001552941|3 +611577|8001552952|3 +813298|8001553418|3 +708136|8001553507|3 +575177|8001553511|3 +823264|8001557597|3 +825020|8001558323|3 +823511|8001558329|3 +819147|8001558580|3 +812016|8001559449|3 +813353|8001559452|3 +825161|8001559455|3 +825181|8001559456|3 +812106|8001562286|3 +633086|8001562392|3 +811945|8001563330|3 +813102|8001564028|3 +814705|8001564223|3 +813193|8001566184|3 +729983|8001567465|3 +777739|8001567588|3 +846519|8001568020|3 +883369|8001569116|3 +835482|8001569767|3 +540395|8001569904|3 +665137|8001571716|3 +818359|8001571720|3 +540672|8001572718|3 +470141|9000581569|3 +470422|9000581571|3 +812880|9000581573|3 +470423|9000581574|3 +470142|9000581580|3 +470456|9000581588|3 +469785|9000581596|3 +470457|9000581601|3 +470143|9000581612|3 +482981|9000581729|3 +488735|9000581799|3 +488736|9000581801|3 +539703|9000582475|3 +550744|9000582607|3 +559219|9000582688|3 +569730|9000582845|3 +586685|9000583028|3 +593482|9000583113|3 +597583|9000583183|3 +597584|9000583185|3 +610134|9000583355|3 +616176|9000583406|3 +637239|9000583659|3 +818703|9000583793|3 +689717|9000584350|3 +690325|9000584362|3 +690317|9000584363|3 +690314|9000584364|3 +695531|9000584441|3 +705888|9000584563|3 +708333|9000584616|3 +726164|9000584832|3 +820513|9000585153|3 +760172|9000585229|3 +771489|9000585392|3 +773198|9000585415|3 +781102|9000585546|3 +870870|9000585603|3 +787057|9000585655|3 +787256|9000585664|3 +787859|9000585676|3 +794550|9000585742|3 +798253|9000585801|3 +810374|9000586023|3 +811235|9000586028|3 +811447|9000586032|3 +812064|9000586037|3 +812448|9000586038|3 +812595|9000586039|3 +812918|9000586041|3 +812917|9000586042|3 +813170|9000586043|3 +813335|9000586046|3 +813322|9000586047|3 +813337|9000586048|3 +813476|9000586051|3 +813638|9000586052|3 +813625|9000586053|3 +814016|9000586055|3 +814075|9000586058|3 +814076|9000586059|3 +814833|9000586063|3 +814862|9000586064|3 +814935|9000586065|3 +816064|9000586078|3 +833395|9000586086|5 +818986|9000586087|3 +834690|9000586089|5 +819369|9000586093|5 +819307|9000586095|3 +818775|9000586097|3 +833397|9000586101|5 +819382|9000586104|3 +818987|9000586105|3 +835199|9000586108|7 +819381|9000586110|3 +834233|9000586113|7 +835198|9000586114|7 +818391|9000586116|3 +835200|9000586121|7 +818773|9000586124|3 +834234|9000586129|7 +818774|9000586132|3 +833396|9000586133|5 +820706|9000586135|3 +820573|9000586137|3 +821104|9000586138|3 +821839|9000586140|3 +822046|9000586142|3 +822519|9000586143|5 +821840|9000586144|3 +822322|9000586145|3 +821842|9000586148|3 +821535|9000586151|3 +822047|9000586152|3 +821536|9000586153|3 +821811|9000586155|3 +821841|9000586156|3 +822308|9000586158|3 +822040|9000586160|3 +822119|9000586161|3 +822885|9000586165|3 +823008|9000586168|3 +823360|9000586174|3 +823362|9000586175|3 +823457|9000586176|3 +823441|9000586177|3 +823395|9000586180|3 +823442|9000586181|3 +823731|9000586183|3 +823751|9000586186|3 +823821|9000586187|3 +823820|9000586188|3 +824204|9000586195|3 +824203|9000586196|3 +824474|9000586198|3 +824455|9000586201|3 +824464|9000586204|3 +824855|9000586211|3 +881320|9000586812|3 +890070|9000586917|3 +893720|9000586980|3 +777529|9000589869|3 +847130|9000590897|3 +823358|9001014187|3 +812564|9001014198|3 +814884|9001017011|3 +814903|9001035579|3 +833398|9001037259|5 +773202|9001040090|3 +813321|9001041042|3 +824472|9001044197|3 +816189|9001049099|3 +597428|9001070578|3 +817812|9001076898|3 +833399|9001080460|5 +881318|9001085826|3 +824489|9001087543|3 +819383|9001092666|3 +810880|9001101002|3 +685861|9001105392|3 +786296|9001108331|3 +624674|9001112354|3 +825218|9001114914|7 +824903|9001133510|3 +823392|9001136241|3 +471414|9001137071|3 +610133|9001137547|3 +824107|9001151043|3 +821340|9001151354|3 +815895|9001159569|3 +824475|9001173644|3 +835476|9001178766|3 +835477|9001178940|3 +470416|9001180325|3 +814832|9001183140|3 +824998|9001184444|3 +824858|9001187879|3 +758927|9001188736|3 +812065|9001197694|3 +820711|9001201150|3 +739773|9001204304|3 +819121|9001207701|5 +810163|9001212904|3 +681845|9001218216|3 +704737|9001222075|3 +821810|9001224647|3 +823822|9001235134|3 +813821|9001235418|3 +811699|9001236468|3 +816161|9001238767|3 +881317|9001240688|3 +820548|9001244695|3 +821105|9001244887|3 +817836|9001267222|3 +818530|9001285586|3 +816431|9001285589|3 +819135|9001295124|3 +771923|9001295217|3 +812066|9001300274|3 +616636|9001302436|3 +814861|9001307121|3 +540359|9001312673|3 +824850|9001315303|3 +814483|9001318399|3 +818393|9001323154|3 +580879|9001325435|3 +489067|9001330495|3 +463826|9001334676|3 +488953|9001336844|3 +470421|9001337798|3 +559364|9001339873|3 +822473|9001341773|3 +471608|9001347915|3 +817672|9001347934|3 +834792|9001347936|3 +812067|9001360687|3 +488945|9001363949|3 +470417|9001370081|3 +559224|9001372192|3 +835478|9001374173|3 +818394|9001376513|3 +566186|9001377241|3 +609534|9001379976|3 +538799|9001381237|3 +681911|9001385047|3 +817837|9001385332|3 +470418|9001392725|3 +559365|9001404203|3 +817290|9001404418|3 +817268|9001408042|3 +817097|9001417848|3 +550741|9001417983|3 +819735|9001418268|3 +819736|9001418270|3 +817101|9001428841|3 +824665|9001430556|3 +814284|9001436499|3 +893113|9001437882|3 +820549|9001447946|3 +777527|9001453114|3 +469759|9001454760|3 +810859|9001460831|3 +824220|9001462210|3 +824176|9001462211|3 +815750|9001464919|3 +820861|9001465341|3 +810741|9001466442|3 +908648|9001466864|2 +813822|9001467458|3 +530248|9001468866|3 +818182|9001471923|3 +771916|9001474023|3 +819473|9001475485|3 +771917|9001475908|3 +813813|9001477269|3 +815877|9001482231|3 +810546|9001482875|3 +530249|9001486683|3 +812521|9001488367|3 +815751|9001488728|3 +822688|9001488732|3 +822213|9001489658|3 +451260|9001494561|3 +819930|9001502063|3 +559225|9001504100|3 +559368|9001507475|3 +814427|9001521739|3 +818395|9001528807|3 +823823|9001531119|3 +538252|9001532632|3 +762228|9001538865|3 +815752|9001539298|3 +818396|9001539728|3 +813811|9001559728|3 +660290|9001566233|3 +777528|9001566256|3 +833401|9001568615|5 +814285|9001570140|3 +814286|9001570141|3 +597429|9001571180|3 +454835|10000470448|3 +456644|10000470528|3 +459685|10000470619|3 +809722|10000470655|3 +462135|10000470689|3 +461934|10000470705|3 +463932|10000470800|3 +463424|10000470804|3 +466529|10000470845|3 +467496|10000470908|3 +467229|10000470910|3 +467032|10000470959|3 +467177|10000470973|3 +467178|10000470976|3 +467283|10000470983|3 +467447|10000470995|3 +467448|10000471007|3 +467174|10000471009|3 +467180|10000471016|3 +467175|10000471023|3 +467176|10000471027|3 +467449|10000471030|3 +470093|10000471095|3 +470408|10000471101|3 +725100|10000471121|3 +470826|10000471142|3 +470827|10000471148|3 +470808|10000471160|3 +470828|10000471163|3 +471619|10000471175|3 +470829|10000471185|3 +471620|10000471208|3 +470809|10000471211|3 +470810|10000471214|3 +471621|10000471217|3 +471384|10000471243|3 +472670|10000471282|3 +472783|10000471295|3 +472485|10000471308|3 +472335|10000471316|3 +474280|10000471408|3 +813370|10000471416|3 +476184|10000471465|3 +476321|10000471479|3 +479719|10000471569|3 +479720|10000471575|3 +479981|10000471585|3 +479970|10000471597|3 +487697|10000471821|3 +488001|10000471824|3 +488751|10000471865|3 +489064|10000471869|3 +494053|10000472082|3 +495502|10000472124|3 +497899|10000472211|3 +499801|10000472269|3 +501651|10000472298|3 +818672|10000472317|3 +504049|10000472345|3 +506155|10000472406|3 +816316|10000472415|3 +507241|10000472424|3 +507242|10000472430|3 +511804|10000472591|3 +512351|10000472614|3 +512405|10000472617|3 +512953|10000472641|3 +513051|10000472645|3 +513050|10000472651|3 +513052|10000472659|3 +516604|10000472765|3 +525679|10000473023|3 +525305|10000473029|3 +525605|10000473047|3 +525304|10000473049|3 +525682|10000473075|3 +527254|10000473158|3 +531541|10000473322|3 +531542|10000473324|3 +531543|10000473328|3 +531505|10000473329|3 +531549|10000473341|3 +534295|10000473474|3 +534297|10000473475|3 +536654|10000473545|3 +536650|10000473549|3 +540375|10000473627|3 +541553|10000473631|3 +541554|10000473667|3 +540542|10000473672|3 +541736|10000473684|3 +541741|10000473689|3 +547905|10000473868|3 +548495|10000473901|3 +549805|10000473948|3 +552764|10000474029|3 +552252|10000474031|3 +552730|10000474032|3 +552765|10000474043|3 +552731|10000474067|3 +552241|10000474082|3 +552242|10000474092|3 +552732|10000474099|3 +552244|10000474113|3 +552225|10000474139|3 +552253|10000474154|3 +552245|10000474158|3 +552254|10000474172|3 +552246|10000474176|3 +552243|10000474196|3 +552733|10000474213|3 +556385|10000474304|3 +811137|10000474338|5 +557434|10000474359|3 +559218|10000474385|3 +559356|10000474395|3 +564631|10000474567|3 +564586|10000474574|3 +567823|10000474696|3 +570833|10000474763|3 +571479|10000474787|3 +571486|10000474810|3 +571865|10000474820|3 +579135|10000474997|3 +583428|10000475136|3 +583424|10000475140|3 +583425|10000475150|3 +590984|10000475330|3 +591794|10000475350|3 +591932|10000475380|3 +596236|10000475524|3 +599218|10000475581|3 +598677|10000475583|3 +598628|10000475591|3 +551735|10000475725|3 +605162|10000475794|3 +605165|10000475802|3 +608186|10000475906|3 +608531|10000475909|3 +558917|10000475937|3 +609523|10000475968|3 +609653|10000475995|3 +612333|10000476037|3 +612334|10000476042|3 +612335|10000476092|3 +611531|10000476109|3 +612291|10000476136|3 +611411|10000476169|3 +613982|10000476259|3 +613935|10000476262|3 +621886|10000476558|3 +622072|10000476563|3 +621681|10000476564|3 +627336|10000476789|3 +629786|10000476915|3 +629789|10000476926|3 +631336|10000476974|3 +631338|10000476976|3 +626166|10000476986|3 +635461|10000477156|3 +635439|10000477162|3 +637675|10000477237|3 +641883|10000477410|3 +645390|10000477491|3 +648739|10000477622|3 +651940|10000477695|3 +658090|10000477907|3 +663489|10000478045|3 +664939|10000478079|3 +664989|10000478083|3 +664937|10000478087|3 +632328|10000478094|3 +665833|10000478108|3 +665584|10000478116|3 +672282|10000478361|3 +672214|10000478367|3 +822303|10000478593|3 +681833|10000478668|3 +685859|10000478803|3 +685968|10000478816|3 +689752|10000478943|3 +689567|10000478948|3 +692888|10000479050|3 +693358|10000479082|3 +694838|10000479187|3 +695523|10000479208|3 +698919|10000479301|3 +698914|10000479306|3 +698915|10000479315|3 +698916|10000479316|3 +700487|10000479336|3 +700488|10000479345|3 +700485|10000479367|3 +711465|10000479728|3 +714226|10000479820|3 +820874|10000479835|3 +716938|10000479923|3 +719887|10000480041|3 +722680|10000480106|3 +728713|10000480297|3 +728714|10000480302|3 +734077|10000480388|3 +737275|10000480461|3 +740178|10000480533|3 +745630|10000480655|3 +746430|10000480688|3 +748021|10000480747|3 +748006|10000480750|3 +748007|10000480752|3 +748022|10000480754|3 +748003|10000480811|3 +749077|10000480827|3 +748002|10000480835|3 +750429|10000480855|3 +750430|10000480863|3 +750727|10000480894|3 +748023|10000480910|3 +751995|10000480929|3 +755427|10000481017|3 +759275|10000481185|3 +759724|10000481204|3 +760169|10000481212|3 +760194|10000481218|3 +760868|10000481237|3 +760869|10000481243|3 +760680|10000481244|3 +761878|10000481273|3 +771488|10000481527|3 +773601|10000481558|3 +591933|10000481606|3 +777357|10000481672|3 +778247|10000481707|3 +780157|10000481754|3 +814496|10000481784|3 +782158|10000481827|3 +783056|10000481858|3 +783057|10000481862|3 +783653|10000481878|3 +784455|10000481907|3 +784456|10000481913|3 +787209|10000481978|3 +791006|10000482042|3 +791049|10000482043|3 +791355|10000482055|3 +794947|10000482127|3 +748008|10000482262|3 +802109|10000482387|3 +804200|10000482471|3 +814407|10000482494|3 +825304|10000482603|7 +810156|10000482604|3 +810154|10000482605|3 +810157|10000482606|3 +810162|10000482607|3 +811121|10000482610|3 +810539|10000482620|3 +811138|10000482621|5 +810700|10000482622|3 +810419|10000482624|3 +810357|10000482625|3 +810340|10000482627|3 +810683|10000482628|3 +810967|10000482629|3 +810558|10000482630|3 +810786|10000482631|3 +811280|10000482633|3 +811399|10000482637|3 +811531|10000482638|3 +811442|10000482639|3 +811425|10000482641|3 +811437|10000482642|3 +811432|10000482644|3 +811553|10000482645|3 +812179|10000482652|3 +812222|10000482655|3 +812520|10000482657|3 +812742|10000482658|3 +812430|10000482659|3 +812803|10000482660|3 +813017|10000482664|3 +813016|10000482666|3 +813021|10000482667|3 +813022|10000482668|3 +813029|10000482669|3 +813045|10000482671|3 +813086|10000482673|3 +813240|10000482675|3 +813241|10000482676|3 +813242|10000482677|3 +813265|10000482680|3 +813333|10000482682|3 +813325|10000482683|3 +813338|10000482685|3 +813533|10000482691|3 +813676|10000482693|3 +813780|10000482695|3 +813781|10000482696|3 +813778|10000482697|3 +813823|10000482698|3 +813817|10000482699|3 +813856|10000482700|3 +814050|10000482701|3 +814068|10000482702|3 +829304|10000482703|3 +814169|10000482706|3 +814175|10000482707|3 +814168|10000482709|3 +814184|10000482710|3 +814394|10000482711|3 +814450|10000482713|3 +814445|10000482714|3 +814463|10000482715|3 +814746|10000482720|3 +814892|10000482722|3 +814893|10000482723|3 +814999|10000482726|3 +815177|10000482728|3 +815397|10000482730|3 +815224|10000482732|3 +815188|10000482733|3 +815658|10000482740|3 +815749|10000482745|3 +815761|10000482748|3 +815829|10000482749|3 +816171|10000482753|3 +816298|10000482755|3 +816317|10000482756|3 +816383|10000482757|3 +816399|10000482758|3 +816398|10000482759|3 +817055|10000482760|3 +817178|10000482766|3 +817238|10000482767|3 +817248|10000482768|3 +817250|10000482769|3 +817279|10000482770|3 +817263|10000482771|3 +817322|10000482772|3 +817354|10000482773|3 +817357|10000482774|3 +817366|10000482775|3 +817361|10000482776|3 +818103|10000482784|3 +819491|10000482786|3 +818298|10000482795|3 +834047|10000482796|3 +819392|10000482797|5 +835275|10000482798|5 +818796|10000482799|3 +819393|10000482803|5 +820538|10000482805|3 +818283|10000482809|3 +819295|10000482810|3 +834048|10000482811|3 +819394|10000482813|5 +818209|10000482814|3 +819503|10000482816|3 +835229|10000482817|7 +817939|10000482818|3 +834892|10000482819|5 +818598|10000482820|5 +835276|10000482821|5 +833001|10000482824|5 +819492|10000482828|3 +833402|10000482829|5 +819395|10000482834|5 +818797|10000482845|3 +818491|10000482847|3 +818362|10000482849|3 +819431|10000482853|3 +819504|10000482854|3 +817882|10000482856|3 +819493|10000482857|3 +835215|10000482861|7 +817675|10000482862|3 +819778|10000482864|3 +818335|10000482868|3 +818680|10000482869|3 +817883|10000482871|3 +835216|10000482873|7 +818363|10000482876|3 +818798|10000482877|3 +819829|10000482878|3 +835279|10000482879|5 +819432|10000482881|3 +818364|10000482888|3 +817732|10000482889|3 +817718|10000482890|3 +818799|10000482891|3 +817719|10000482892|3 +818365|10000482894|3 +817708|10000482896|3 +820723|10000482898|3 +835957|10000482899|5 +820817|10000482900|3 +820724|10000482902|3 +820659|10000482903|3 +820579|10000482906|3 +821890|10000482909|3 +822573|10000482910|5 +821750|10000482912|3 +821543|10000482914|3 +822090|10000482917|3 +821657|10000482918|3 +822094|10000482919|3 +821667|10000482920|3 +821495|10000482922|3 +822484|10000482923|3 +821644|10000482926|3 +822051|10000482928|3 +836944|10000482929|7 +821460|10000482931|3 +837629|10000482933|5 +822574|10000482938|5 +822157|10000482940|3 +822091|10000482941|3 +821520|10000482943|3 +822629|10000482945|3 +822876|10000482947|3 +822883|10000482948|3 +822908|10000482950|3 +822857|10000482951|3 +822877|10000482952|3 +822909|10000482953|3 +823113|10000482954|3 +822878|10000482956|3 +823072|10000482959|3 +823201|10000482960|3 +823239|10000482962|3 +823156|10000482963|3 +823331|10000482965|3 +838841|10000482967|5 +823634|10000482968|3 +823633|10000482970|3 +823579|10000482971|3 +838842|10000482973|5 +823382|10000482974|3 +823383|10000482975|3 +823682|10000482977|3 +823369|10000482978|3 +823712|10000482979|3 +823713|10000482980|3 +823717|10000482981|3 +823996|10000482985|3 +824013|10000482987|3 +824005|10000482988|3 +824351|10000482991|3 +824398|10000482992|3 +824813|10000482997|3 +824816|10000482998|3 +825007|10000482999|3 +825041|10000483003|3 +825046|10000483004|3 +842030|10000483048|3 +845146|10000483129|3 +846743|10000483181|3 +846744|10000483190|3 +846745|10000483197|3 +848446|10000483234|3 +637288|10000483285|3 +853703|10000483370|3 +852997|10000483385|3 +853338|10000483389|3 +853096|10000483390|3 +857696|10000483507|3 +849443|10000483669|3 +868567|10000483749|3 +870320|10000483799|3 +874417|10000483899|3 +883326|10000484149|3 +883367|10000484156|3 +883148|10000484157|3 +883125|10000484159|3 +883149|10000484170|3 +884867|10000484224|3 +885158|10000484261|3 +887019|10000484319|3 +889680|10000484391|3 +890670|10000484421|3 +891105|10000484424|3 +890905|10000484427|3 +891092|10000484441|3 +893020|10000484474|3 +893091|10000484498|3 +892612|10000484509|3 +892613|10000484523|3 +895270|10000484594|3 +897715|10000484665|3 +898812|10000484682|3 +898759|10000484695|3 +899566|10000484717|3 +899567|10000484758|3 +900249|10000484765|3 +900314|10000484770|3 +899568|10000484784|3 +818146|10000484982|3 +908670|10000485060|2 +908669|10000485061|2 +819474|10000485258|3 +812620|10000485323|3 +814176|10000485952|3 +751171|10000486559|3 +813423|10000487394|3 +631337|10000488108|3 +810974|10000488309|3 +805392|10000488477|3 +822840|10000489905|3 +463933|10000492510|3 +835241|10000494459|7 +467490|10001010919|3 +467132|10001010921|3 +479980|10001010997|3 +534103|10001011038|3 +563233|10001011088|3 +716935|10001011291|3 +716936|10001011293|3 +717236|10001011295|3 +716937|10001011297|3 +749178|10001011414|3 +811408|10001011479|3 +813027|10001011484|3 +810839|10001011486|3 +813019|10001011494|3 +814027|10001011504|3 +814142|10001011511|3 +816867|10001011524|3 +834851|10001018634|5 +672290|10001019757|3 +541555|10001019818|3 +609547|10001020247|3 +812561|10001020868|3 +834016|10001021994|3 +821437|10001022110|3 +815543|10001024489|3 +467181|10001024863|3 +812354|10001024900|3 +548498|10001028793|3 +663490|10001032085|3 +539448|10001032945|3 +552766|10001032971|3 +813329|10001034732|3 +571483|10001035328|3 +769081|10001036407|3 +813718|10001036963|3 +761880|10001038070|3 +484876|10001038083|3 +822337|10001038394|3 +812829|10001040007|3 +460484|10001042291|3 +823709|10001042517|3 +812582|10001043821|3 +893092|10001044280|3 +525695|10001046512|3 +824484|10001047845|3 +819404|10001054852|5 +818288|10001059400|3 +817249|10001059898|3 +814848|10001059902|3 +824390|10001061784|3 +815787|10001061912|3 +632333|10001062072|3 +835277|10001064720|5 +471935|10001065918|3 +566236|10001067554|3 +813334|10001070246|3 +891101|10001072419|3 +791007|10001076614|3 +818289|10001078253|3 +679487|10001078363|3 +821865|10001078434|3 +811433|10001078435|3 +637989|10001078593|3 +824691|10001079404|3 +635460|10001081547|3 +788005|10001081548|3 +813024|10001082103|3 +812397|10001082757|3 +694526|10001082793|3 +814885|10001083160|3 +821259|10001083465|3 +615833|10001083952|3 +824685|10001084011|3 +815241|10001087392|3 +676740|10001087992|3 +898760|10001087998|3 +705788|10001089244|3 +632770|10001089498|3 +698917|10001089756|3 +825051|10001089897|3 +822884|10001091011|3 +819505|10001091034|3 +853339|10001091759|3 +470812|10001091809|3 +758101|10001097313|3 +714230|10001097712|3 +814036|10001097793|3 +558918|10001098213|3 +900040|10001098354|3 +810832|10001099886|3 +813424|10001100607|3 +470822|10001104367|3 +823011|10001108636|5 +822485|10001109989|3 +821986|10001112691|3 +815522|10001114724|3 +895969|10001117371|3 +835242|10001117630|7 +818492|10001117632|3 +823248|10001117635|3 +526651|10001120413|3 +571484|10001120787|3 +817900|10001120854|3 +815523|10001121337|3 +834853|10001121933|5 +541696|10001125151|3 +698918|10001125499|3 +818216|10001125562|3 +813819|10001125670|3 +815398|10001125672|3 +648740|10001125871|3 +822713|10001125938|3 +737276|10001130708|3 +824294|10001131191|3 +815290|10001132833|3 +811394|10001134368|3 +738030|10001135887|3 +609236|10001137345|3 +823514|10001138174|3 +812806|10001138668|3 +891102|10001138870|3 +812546|10001138982|3 +805390|10001139343|3 +898761|10001139784|3 +571485|10001141576|3 +466523|10001145017|3 +698429|10001146146|3 +714263|10001146885|3 +542355|10001147116|3 +900229|10001148670|3 +810668|10001148875|3 +900041|10001150072|3 +552767|10001154228|3 +824004|10001156442|3 +513053|10001156444|3 +541738|10001156724|3 +559333|10001156841|3 +551733|10001157086|3 +611585|10001157244|3 +622073|10001157359|3 +810300|10001159070|3 +810730|10001159071|3 +813681|10001159079|3 +816308|10001159084|3 +817332|10001159089|3 +818800|10001159093|3 +836387|10001159104|7 +823635|10001159107|3 +822382|10001169527|3 +823575|10001176723|3 +820795|10001177090|3 +470409|10001177132|3 +539206|10001177150|3 +811010|10001177263|3 +817358|10001177265|3 +541677|10001179726|3 +813677|10001181915|3 +813680|10001181916|3 +891106|10001182748|3 +811208|10001182752|3 +670487|10001183727|3 +812597|10001183729|3 +813339|10001183862|3 +824392|10001184854|3 +891103|10001186810|3 +820987|10001187405|3 +479982|10001189531|3 +597406|10001190555|3 +837393|10001191376|5 +813081|10001191697|3 +815598|10001193511|3 +540543|10001193525|3 +606267|10001193952|3 +815531|10001194293|3 +816348|10001194294|3 +816349|10001194295|3 +611409|10001197426|3 +719526|10001197807|3 +510604|10001198399|3 +822080|10001200705|3 +552370|10001201774|3 +525683|10001202244|3 +541655|10001206329|3 +463934|10001206378|3 +552768|10001206404|3 +552333|10001206809|3 +748225|10001208617|3 +820989|10001208654|3 +821575|10001208655|3 +818217|10001208782|3 +492800|10001212427|3 +712329|10001212945|3 +814028|10001212967|3 +820799|10001212970|3 +821927|10001212971|3 +771892|10001213119|3 +749261|10001214197|3 +835220|10001217521|7 +900250|10001217529|3 +513054|10001219202|3 +611586|10001219438|3 +622079|10001219514|3 +630840|10001219675|3 +748004|10001219736|3 +749713|10001219738|3 +769079|10001219757|3 +817111|10001219772|3 +835255|10001219773|7 +821260|10001219776|3 +893000|10001219799|3 +748018|10001220977|3 +893112|10001222573|3 +865468|10001223009|3 +814829|10001223151|3 +817636|10001223153|3 +479983|10001224633|3 +494655|10001225075|3 +557526|10001227331|3 +811209|10001227382|3 +771915|10001227443|3 +891104|10001227455|3 +512955|10001227507|3 +822214|10001228396|5 +824453|10001228785|3 +818000|10001232250|3 +771893|10001232792|3 +823356|10001233598|3 +885165|10001233599|3 +822930|10001235661|3 +816458|10001237150|3 +824458|10001237152|3 +825191|10001237503|3 +816224|10001237919|3 +470161|10001237924|3 +814888|10001238080|3 +822715|10001238885|3 +810776|10001240861|3 +815338|10001241302|3 +815583|10001241303|3 +821888|10001244118|3 +834091|10001244491|5 +755680|10001248526|3 +838752|10001248551|3 +822955|10001250372|3 +612347|10001250410|3 +814029|10001251708|3 +892668|10001251986|3 +821749|10001252838|3 +760175|10001253374|3 +470823|10001254553|3 +489040|10001255046|3 +821747|10001255058|3 +632325|10001255400|3 +609579|10001255403|3 +821748|10001256590|3 +715279|10001257209|3 +533900|10001257416|3 +815234|10001257722|3 +748010|10001263591|3 +813028|10001263702|3 +821501|10001263775|3 +822808|10001264068|3 +542104|10001264124|3 +791547|10001264645|3 +811533|10001264762|3 +834209|10001268202|7 +824423|10001269702|3 +539940|10001269856|3 +597578|10001269913|3 +658835|10001270998|3 +823840|10001271182|3 +823841|10001271185|3 +693127|10001272708|3 +748005|10001272731|3 +822838|10001272795|3 +891015|10001272818|3 +834299|10001280033|5 +583426|10001280733|3 +810956|10001282807|3 +812388|10001282810|3 +500804|10001286214|3 +748162|10001293246|3 +825234|10001293466|7 +815563|10001293474|3 +822057|10001293494|3 +840448|10001293500|3 +813020|10001294811|3 +771894|10001298266|3 +834029|10001298883|3 +540544|10001300692|3 +836488|10001302141|3 +597278|10001303689|3 +698837|10001304014|3 +777358|10001304254|3 +547203|10001305325|3 +748019|10001305714|3 +605169|10001305754|3 +818801|10001305867|3 +734078|10001305910|3 +823636|10001305933|3 +816587|10001306229|3 +800090|10001306296|3 +467491|10001307461|3 +816537|10001310635|3 +818371|10001311758|3 +812966|10001311764|3 +761879|10001313801|3 +539941|10001314077|3 +820100|10001316703|3 +892610|10001318519|3 +534296|10001320006|3 +820571|10001321406|3 +898767|10001321467|3 +518552|10001326271|3 +813258|10001326772|3 +507203|10001328244|3 +595284|10001328706|3 +822340|10001331550|3 +835423|10001333766|5 +812496|10001335552|3 +821635|10001335682|3 +817367|10001335886|3 +823758|10001336381|3 +817221|10001338752|3 +456662|10001339852|3 +846741|10001340501|3 +575236|10001343836|3 +815180|10001344089|3 +773197|10001351062|3 +908660|10001351165|2 +812830|10001351578|3 +891008|10001351598|3 +845947|10001354622|3 +470159|10001356202|3 +693368|10001356608|3 +820559|10001356727|3 +813288|10001356977|3 +819583|10001357557|3 +821962|10001360602|3 +816230|10001360665|3 +699508|10001360734|3 +821791|10001362044|3 +836425|10001363064|5 +813139|10001366199|3 +815205|10001370358|3 +717237|10001370368|3 +817378|10001371702|3 +817241|10001372686|3 +835424|10001373045|5 +846738|10001375120|3 +821261|10001377156|3 +469768|10001378234|3 +597636|10001378820|3 +815299|10001378824|3 +456663|10001379127|3 +820560|10001379141|3 +810833|10001379498|3 +820118|10001379675|3 +818478|10001382971|3 +814809|10001384597|3 +817676|10001386097|3 +820719|10001387114|3 +788800|10001387693|3 +824733|10001388093|3 +470406|10001390153|3 +749073|10001390684|3 +835230|10001390999|7 +789041|10001391453|3 +789028|10001391775|3 +559381|10001393672|3 +810742|10001393678|3 +823136|10001396888|3 +881312|10001397699|3 +815529|10001401949|3 +470128|10001403099|3 +817673|10001403299|3 +820285|10001403693|3 +816368|10001404123|3 +818290|10001404125|3 +462438|10001405653|3 +471381|10001405656|3 +811443|10001406231|3 +786297|10001408683|3 +814810|10001408685|3 +637688|10001414997|3 +689355|10001415005|3 +823381|10001415034|3 +824634|10001415035|3 +820566|10001415158|3 +823316|10001416006|3 +456664|10001417707|3 +777533|10001418723|3 +822097|10001419216|3 +810263|10001421497|3 +811395|10001424474|3 +823492|10001424501|3 +824023|10001424503|3 +819232|10001425497|3 +673682|10001426488|3 +686972|10001426765|3 +814601|10001426938|3 +693369|10001427253|3 +835238|10001431260|7 +749022|10001431292|3 +821870|10001431300|5 +814547|10001431590|3 +698430|10001437005|3 +823225|10001438269|3 +890717|10001438507|3 +810881|10001441608|3 +813101|10001442523|3 +822868|10001442993|3 +712538|10001443756|3 +646385|10001443996|3 +780158|10001445786|3 +815745|10001446057|3 +810951|10001448108|5 +711483|10001448706|3 +475531|10001449495|3 +540376|10001452481|3 +822300|10001453818|3 +853193|10001454201|3 +698950|10001454431|3 +713287|10001454449|3 +817395|10001454498|3 +817396|10001454500|3 +824247|10001454502|3 +824151|10001454503|3 +836426|10001455578|5 +551736|10001457484|3 +813366|10001457541|3 +820617|10001457542|3 +820618|10001457546|3 +789042|10001459246|3 +810583|10001460671|3 +817137|10001460879|3 +817990|10001461756|3 +467033|10001462389|3 +821518|10001462685|3 +471624|10001463330|3 +810547|10001464351|3 +816299|10001466618|3 +554382|10001467432|3 +542455|10001468105|3 +710936|10001468533|3 +813026|10001468594|3 +534298|10001469524|3 +467475|10001470579|3 +813770|10001471746|3 +693370|10001471852|3 +711484|10001472014|3 +819497|10001475308|3 +817405|10001475502|3 +887208|10001476050|3 +908649|10001476707|2 +819296|10001478711|3 +817734|10001479242|3 +737277|10001479698|3 +471623|10001479872|3 +822611|10001479981|3 +875319|10001480028|3 +749074|10001482563|3 +810561|10001484784|3 +539207|10001486316|3 +810970|10001486346|3 +818814|10001486347|3 +824659|10001487074|3 +554583|10001489000|3 +559382|10001489005|3 +824368|10001489342|3 +816623|10001491125|5 +824501|10001491674|3 +824547|10001493909|3 +812947|10001494372|3 +708337|10001494666|3 +788801|10001494891|3 +811537|10001494898|3 +541048|10001496498|3 +810584|10001496639|3 +470813|10001497323|3 +810549|10001497380|3 +834090|10001498045|5 +559383|10001499442|3 +810562|10001499852|3 +817256|10001499855|3 +698967|10001500117|3 +471428|10001500233|3 +814786|10001500259|3 +812826|10001501389|3 +655617|10001502120|3 +823757|10001502728|3 +820580|10001503230|3 +820751|10001503231|3 +816923|10001504189|3 +817237|10001504198|3 +719888|10001504389|3 +789043|10001504634|3 +471625|10001507016|3 +813360|10001508606|3 +714282|10001514535|3 +559235|10001514997|3 +813679|10001516690|3 +824026|10001516692|3 +736929|10001518857|3 +816154|10001518859|3 +729949|10001519028|3 +665838|10001519034|3 +825902|10001520072|5 +544951|10001521288|3 +822818|10001521305|3 +822486|10001521702|3 +758099|10001522301|3 +467446|10001523400|3 +817677|10001523529|3 +711485|10001524000|3 +463935|10001527126|3 +818945|10001527152|3 +820930|10001527157|3 +456665|10001527584|3 +556386|10001528812|3 +821889|10001528828|3 +612602|10001529696|3 +817717|10001529766|3 +814724|10001530032|3 +683768|10001532069|3 +823304|10001532900|3 +636587|10001535139|3 +463810|10001535360|3 +729904|10001535468|3 +824205|10001535489|3 +777534|10001535637|3 +789044|10001535669|3 +810482|10001535687|3 +812438|10001535695|3 +812948|10001535706|3 +813237|10001535710|3 +694534|10001536833|3 +470824|10001537016|3 +779109|10001538360|3 +698968|10001539107|3 +815621|10001539127|3 +822383|10001539128|3 +539306|10001539436|3 +818041|10001540979|3 +665785|10001541628|3 +814761|10001541743|3 +815428|10001541744|3 +820101|10001542646|3 +822704|10001543442|3 +818051|10001543712|3 +810721|10001545058|3 +814219|10001545230|3 +814983|10001545252|3 +821441|10001546576|3 +803509|10001552144|3 +814408|10001552264|3 +507800|10001552973|3 +811207|10001556037|3 +815873|10001556038|3 +816382|10001556040|3 +817331|10001556042|3 +823292|10001556046|3 +824350|10001556050|3 +822648|10001556179|3 +612603|10001557178|3 +817162|10001558506|3 +835425|10001558508|5 +818960|10001558510|3 +825016|10001558511|3 +469769|10001562822|3 +811492|10001563209|3 +813805|10001563211|3 +814020|10001563460|3 +815240|10001563770|3 +871370|10001565737|3 +814566|10001567696|3 +816141|10001568117|3 +697081|10001569140|3 +823828|10001569307|3 +836427|10001571963|5 +815411|10001572187|3 +810585|10001573533|3 +788769|10001575043|3 +815684|10001577527|3 +462450|11000277065|3 +462032|11000277070|3 +462033|11000277071|3 +462034|11000277080|3 +470453|11000277124|3 +472324|11000277144|3 +478484|11000277182|3 +478923|11000277189|3 +488948|11000277220|3 +508648|11000277310|3 +539790|11000277479|3 +539791|11000277480|3 +542102|11000277481|3 +542103|11000277482|3 +543003|11000277489|3 +556383|11000277544|3 +569336|11000277596|3 +580585|11000277634|3 +580586|11000277635|3 +592333|11000277682|3 +624677|11000277843|3 +689747|11000278096|3 +718037|11000278215|3 +731072|11000278288|3 +769103|11000278443|3 +776459|11000278494|3 +777740|11000278504|3 +777759|11000278509|3 +787988|11000278573|3 +795708|11000278609|3 +810303|11000278693|3 +811291|11000278696|3 +811292|11000278697|3 +811439|11000278698|3 +811470|11000278699|3 +811497|11000278700|3 +811642|11000278701|3 +811748|11000278702|3 +812499|11000278705|3 +812577|11000278706|3 +812507|11000278707|3 +813626|11000278708|3 +813804|11000278710|3 +814312|11000278711|3 +815088|11000278713|3 +815744|11000278718|3 +815740|11000278719|3 +815746|11000278720|3 +816294|11000278722|3 +816295|11000278724|3 +817226|11000278726|3 +835233|11000278729|7 +817694|11000278730|3 +820392|11000278732|3 +818588|11000278733|3 +818017|11000278734|3 +818293|11000278738|3 +819499|11000278739|3 +819475|11000278742|3 +820831|11000278743|3 +822054|11000278747|3 +822038|11000278749|3 +823036|11000278751|3 +822690|11000278752|3 +822932|11000278753|3 +823812|11000278755|3 +824590|11000278759|3 +824593|11000278760|3 +824694|11000278761|3 +877519|11000278952|3 +881220|11000278975|3 +891009|11000279009|3 +811664|11001007360|3 +815016|11001008273|3 +810107|11001010183|3 +810130|11001010185|3 +471427|11001027894|3 +814876|11001028747|3 +818620|11001038566|5 +811910|11001046847|3 +815209|11001046851|3 +806374|11001048530|3 +817210|11001061405|3 +815554|11001071193|3 +891010|11001072962|3 +818294|11001085439|3 +451261|11001088396|3 +890518|11001089968|3 +823265|11001096229|3 +626146|11001110229|3 +541444|11001111217|3 +849195|11001118031|3 +820832|11001129957|3 +880369|11001154072|3 +754479|11001154091|3 +819399|11001155707|5 +824036|11001178531|3 +812855|11001184845|3 +821346|11001192620|3 +751179|11001195862|3 +556384|11001197537|3 +817548|11001197575|3 +815636|11001200419|3 +731073|11001201094|3 +817948|11001216358|3 +598909|11001225059|3 +810120|11001226258|3 +818818|11001234983|3 +815660|11001242138|3 +812196|11001267804|3 +820833|11001270710|3 +816288|11001280005|3 +864020|11001281669|3 +820628|11001286776|3 +818018|11001300447|3 +810095|11001300790|3 +660339|11001303546|3 +820393|11001304600|3 +818782|11001306629|3 +813309|11001337675|3 +890978|11001340646|3 +815013|11001347092|3 +813992|11001347993|3 +812197|11001357552|3 +812198|11001357555|3 +788709|11001372216|3 +815033|11001373356|3 +815052|11001375115|3 +804202|11001392653|3 +817259|11001398287|3 +819400|11001408715|5 +811512|11001415912|3 +814210|11001416013|3 +810613|11001426861|3 +635513|11001434013|3 +818212|11001445839|3 +837612|11001451128|5 +818019|11001451748|3 +817695|11001454232|3 +592185|11001455583|3 +788464|11001459699|3 +825231|11001471615|7 +825229|11001471616|7 +539792|11001476399|3 +771498|11001486523|3 +482178|11001486535|3 +811303|11001492721|3 +824322|11001499039|3 +817308|11001506761|3 +780159|11001510084|3 +788463|11001514388|3 +592334|11001517145|3 +822663|11001518464|3 +811334|11001530632|3 +537939|11001534234|3 +817485|11001542524|3 +817507|11001542527|3 +781359|11001544352|3 +849196|11001553409|3 +759277|11001554425|3 +813085|11001559604|3 +811852|11001560208|3 +482985|12000618211|3 +817504|12000618261|3 +513355|12000618364|3 +530655|12000618456|3 +531550|12000618459|3 +550297|12000618551|3 +550298|12000618552|3 +565324|12000618621|3 +565325|12000618622|3 +591800|12000618733|3 +591801|12000618734|3 +591802|12000618740|3 +612348|12000618851|3 +620336|12000618900|3 +626177|12000618923|3 +626290|12000618937|3 +639430|12000618987|3 +658738|12000619086|3 +672781|12000619152|3 +672782|12000619156|3 +817153|12000619203|3 +710107|12000619329|3 +714437|12000619355|3 +757177|12000619539|3 +786304|12000619706|3 +797758|12000619776|3 +810988|12000619874|5 +810858|12000619876|3 +810751|12000619877|3 +811020|12000619878|5 +811907|12000619880|3 +811997|12000619882|3 +811998|12000619883|3 +811995|12000619885|3 +812000|12000619886|3 +813179|12000619894|3 +813692|12000619896|3 +814940|12000619899|3 +814941|12000619900|3 +815216|12000619902|3 +815217|12000619903|3 +815852|12000619904|3 +815857|12000619907|3 +816015|12000619908|3 +816269|12000619910|3 +816264|12000619911|3 +817418|12000619912|3 +817416|12000619914|3 +819287|12000619922|3 +818102|12000619924|3 +820492|12000619931|3 +817901|12000619933|3 +819888|12000619936|3 +817902|12000619938|3 +835975|12000619939|5 +820604|12000619940|3 +835976|12000619941|5 +820805|12000619943|3 +837677|12000619945|7 +821826|12000619948|3 +823621|12000619951|3 +824130|12000619952|3 +824288|12000619954|3 +824491|12000619955|3 +824722|12000619956|3 +825175|12000619957|3 +825176|12000619958|3 +856295|12000620045|3 +897769|12000620263|3 +815733|12000620297|3 +692232|12000621764|3 +815112|12001017914|3 +811994|12001019619|3 +524434|12001047875|3 +815293|12001125887|3 +812300|12001126255|3 +812876|12001129693|3 +815121|12001151271|3 +813460|12001159496|3 +813459|12001178626|3 +823300|12001179908|3 +822843|12001182311|3 +814257|12001184601|3 +524435|12001185677|3 +762821|12001191330|3 +817399|12001192499|3 +672726|12001195451|3 +814939|12001200420|3 +814258|12001210002|3 +822669|12001213533|3 +811992|12001217773|3 +812321|12001221346|3 +739879|12001227318|3 +819288|12001237778|3 +813176|12001251830|3 +883349|12001270646|3 +512496|12001303778|3 +811996|12001313008|3 +825187|12001319129|3 +812235|12001356882|3 +825162|12001357477|3 +834793|12001378652|3 +817855|12001393195|3 +786305|12001429404|3 +818414|12001432286|5 +818727|12001437413|3 +837678|12001438240|7 +811827|12001443254|3 +719530|12001458406|3 +820779|12001463429|3 +815113|12001478177|3 +818728|12001492484|3 +714436|12001497319|3 +820493|12001514072|3 +825142|12001568008|3 +820683|12001570412|3 +458935|13000502110|3 +459833|13000502124|3 +472775|13000502205|3 +472774|13000502215|3 +473378|13000502222|3 +487691|13000502344|3 +488705|13000502350|3 +488892|13000502357|3 +488704|13000502361|3 +502455|13000502563|3 +508554|13000502621|3 +513905|13000502661|3 +540384|13000502941|3 +543005|13000502958|3 +544297|13000502973|3 +544298|13000502974|3 +544299|13000502981|3 +547897|13000503009|3 +547898|13000503013|3 +550596|13000503037|3 +597079|13000503405|3 +606217|13000503502|3 +611931|13000503551|3 +616386|13000503593|3 +635167|13000503748|3 +653186|13000503919|3 +660540|13000503975|3 +664933|13000504012|3 +670537|13000504073|3 +684968|13000504204|3 +692438|13000504262|3 +693284|13000504267|3 +694088|13000504273|3 +723405|13000504497|3 +811270|13000504610|3 +758105|13000504787|3 +758377|13000504790|3 +758378|13000504793|3 +784559|13000505091|3 +791509|13000505129|3 +800507|13000505248|3 +810144|13000505348|3 +810116|13000505349|3 +810829|13000505354|3 +811611|13000505356|3 +811693|13000505358|3 +811761|13000505361|3 +812327|13000505364|3 +812337|13000505365|3 +812296|13000505366|3 +812294|13000505367|3 +812317|13000505368|3 +812319|13000505369|3 +812295|13000505370|3 +812693|13000505371|3 +812554|13000505372|3 +812689|13000505373|3 +812934|13000505375|3 +812936|13000505376|3 +813486|13000505380|3 +813495|13000505381|3 +813481|13000505382|3 +813756|13000505383|3 +814173|13000505385|3 +814167|13000505386|3 +814255|13000505388|3 +814404|13000505391|3 +814996|13000505394|3 +815155|13000505396|3 +815364|13000505397|3 +815447|13000505398|3 +815893|13000505402|3 +815914|13000505404|3 +817079|13000505407|3 +817067|13000505408|3 +817585|13000505416|3 +819867|13000505418|5 +818783|13000505421|3 +818981|13000505423|3 +818262|13000505424|3 +818687|13000505427|3 +819868|13000505431|5 +817813|13000505432|3 +819940|13000505433|3 +817674|13000505434|3 +818688|13000505435|3 +819737|13000505436|3 +819476|13000505438|3 +819842|13000505439|3 +817853|13000505440|3 +821046|13000505444|3 +821047|13000505445|3 +822477|13000505446|3 +836544|13000505447|3 +821835|13000505448|3 +821970|13000505451|3 +837391|13000505455|3 +822805|13000505456|3 +823938|13000505461|3 +823937|13000505462|3 +824286|13000505464|3 +824177|13000505465|3 +824337|13000505470|3 +824333|13000505471|3 +824506|13000505472|3 +824523|13000505474|3 +846441|13000505525|3 +817854|13000505596|3 +817080|13000505638|3 +887210|13000506016|3 +898219|13000506113|3 +810280|13000508036|3 +591552|13001015532|3 +488936|13001016490|3 +817271|13001016542|3 +881314|13001016553|3 +454834|13001016751|3 +817490|13001026464|3 +488895|13001035778|3 +705281|13001037192|3 +722020|13001038238|3 +818701|13001041601|3 +714786|13001047071|3 +784452|13001056524|3 +466511|13001072299|3 +818969|13001076574|3 +810109|13001085673|3 +815902|13001092694|3 +504604|13001093111|3 +822356|13001093765|3 +822378|13001099232|3 +819724|13001111482|3 +815191|13001117320|3 +812856|13001117804|3 +878619|13001122132|3 +661239|13001138588|3 +816954|13001142836|3 +597431|13001162458|3 +812706|13001171130|3 +812524|13001174538|3 +635522|13001190104|3 +823299|13001192580|3 +811841|13001204835|3 +846391|13001208688|3 +637683|13001224026|3 +817745|13001224027|3 +723411|13001230872|3 +723412|13001230873|3 +811767|13001243863|3 +555435|13001248279|3 +812625|13001250869|3 +812315|13001258381|3 +868564|13001262937|3 +811009|13001263726|3 +719338|13001285685|3 +814174|13001296369|3 +818769|13001300730|3 +833400|13001306040|5 +819480|13001307931|3 +823739|13001307933|3 +810104|13001322353|3 +818770|13001323203|3 +671469|13001332036|3 +822236|13001332530|5 +820276|13001347228|3 +559357|13001355980|3 +810644|13001359980|3 +460384|13001386413|3 +559358|13001389341|3 +604681|13001389621|3 +901920|13001419449|3 +818249|13001419630|3 +814166|13001443340|3 +665787|13001455502|3 +825232|13001459559|7 +815343|13001466818|3 +811881|13001473163|3 +789756|13001494862|3 +813568|13001498506|3 +810371|13001513616|3 +824175|13001515332|3 +613434|13001516972|3 +613435|13001516974|3 +818686|13001520043|3 +690321|13001528656|3 +824683|13001531466|3 +550597|13001534897|3 +810884|13001536691|5 +823281|13001539652|3 +811181|13001540534|3 +856446|13001548492|3 +817348|13001560805|3 +550598|13001565039|3 +462458|14000591774|3 +470149|14000591796|3 +487354|14000591924|3 +499604|14000592004|3 +507534|14000592069|3 +509250|14000592089|3 +527053|14000592210|3 +530705|14000592233|3 +550400|14000592442|3 +559386|14000592480|3 +600633|14000592740|3 +821525|14000592758|3 +611419|14000592821|3 +674740|14000593212|3 +674939|14000593216|3 +689471|14000593300|3 +710103|14000593426|3 +835969|14000593566|5 +730676|14000593578|3 +771932|14000593861|3 +800209|14000594091|3 +811353|14000594162|3 +811350|14000594163|3 +811588|14000594164|3 +551687|14000594165|3 +812201|14000594178|3 +812587|14000594180|3 +812509|14000594181|3 +812736|14000594183|3 +812652|14000594184|3 +812457|14000594185|3 +812444|14000594186|3 +812445|14000594188|3 +812446|14000594189|3 +812732|14000594190|3 +812733|14000594191|3 +812458|14000594194|3 +812510|14000594195|3 +812511|14000594196|3 +812588|14000594198|3 +812847|14000594199|3 +812838|14000594200|3 +813703|14000594201|3 +813709|14000594202|3 +814107|14000594204|3 +814108|14000594205|3 +814663|14000594210|3 +814662|14000594211|3 +817400|14000594218|3 +817432|14000594219|3 +818767|14000594220|3 +818704|14000594221|3 +819593|14000594222|3 +817943|14000594224|3 +818554|14000594227|3 +817550|14000594229|3 +819128|14000594231|3 +819405|14000594232|3 +817797|14000594235|3 +818768|14000594237|3 +817798|14000594238|3 +817964|14000594239|5 +819594|14000594240|3 +819129|14000594241|3 +820199|14000594245|3 +818806|14000594246|3 +817799|14000594252|3 +819595|14000594254|3 +819130|14000594257|3 +818418|14000594258|5 +818951|14000594259|3 +820620|14000594262|3 +821016|14000594265|3 +822505|14000594270|3 +822917|14000594275|3 +823088|14000594276|3 +823787|14000594280|3 +823785|14000594282|3 +823791|14000594283|3 +823815|14000594285|3 +824630|14000594286|3 +849445|14000594362|3 +878417|14000594625|3 +890515|14000594698|3 +900948|14000594768|3 +810339|14000595955|3 +812737|14001013903|3 +489089|14001013913|3 +823789|14001015577|3 +811813|14001015602|3 +814034|14001021151|3 +814109|14001033601|3 +811458|14001047092|3 +518047|14001072145|3 +812512|14001076322|3 +821214|14001078108|3 +811320|14001081967|3 +822419|14001085835|3 +637690|14001087988|3 +812508|14001090309|3 +816074|14001092056|3 +750724|14001094897|3 +811317|14001099676|3 +811309|14001099821|3 +518048|14001104288|3 +815810|14001111435|3 +812456|14001111652|3 +820264|14001115501|3 +539737|14001130615|3 +635554|14001150541|3 +591543|14001168553|3 +497304|14001171519|3 +818323|14001172585|3 +818324|14001173269|3 +708338|14001174278|3 +729744|14001181971|3 +811352|14001183372|3 +637637|14001187802|3 +817788|14001190282|3 +591788|14001194861|3 +812653|14001196131|3 +815708|14001205623|3 +825195|14001215142|3 +479835|14001216537|3 +820721|14001225091|3 +822420|14001234024|3 +823790|14001238010|3 +812867|14001238639|3 +812675|14001241096|3 +812645|14001245183|3 +535855|14001246536|3 +798102|14001252312|3 +811760|14001259504|3 +819377|14001261271|5 +815628|14001269315|3 +811294|14001282555|3 +478984|14001293960|3 +812650|14001301207|3 +681765|14001302491|3 +463834|14001302711|3 +811351|14001304280|3 +811295|14001307229|3 +824886|14001324401|3 +813210|14001340915|3 +820670|14001343284|3 +819131|14001351899|3 +819132|14001351905|3 +883862|14001357596|3 +817965|14001357833|5 +883365|14001360486|3 +736930|14001361294|3 +723385|14001368258|3 +655769|14001375815|3 +817551|14001379480|3 +823089|14001384445|3 +552287|14001397326|3 +811810|14001404158|3 +820602|14001408955|3 +835974|14001414196|5 +835456|14001420181|3 +812459|14001421146|3 +819596|14001423130|3 +681851|14001423821|3 +823817|14001425965|3 +813889|14001441698|3 +762824|14001452198|3 +699529|14001457719|3 +813341|14001467011|3 +813331|14001467190|3 +822421|14001473112|3 +812283|14001496078|3 +467486|14001497633|3 +820675|14001535388|3 +753730|14001536760|3 +816156|14001540987|3 +816076|14001544110|3 +591789|14001545075|3 +541205|14001546135|3 +470165|14001548236|3 +539343|14001553478|3 +817776|14001555601|3 +791909|14001560639|3 +813876|14001561682|3 +812513|14001563402|3 +690310|14001563410|3 +811402|14001563492|3 +847397|14001570660|3 +812651|14001574997|3 +470148|15000430236|3 +489077|15000430336|3 +489078|15000430342|3 +489071|15000430344|3 +492053|15000430368|3 +567885|15000430561|3 +530905|15000430612|3 +559261|15000430849|3 +591840|15000430997|3 +591841|15000431000|3 +592336|15000431021|3 +599106|15000431070|3 +606215|15000431108|3 +626149|15000431222|3 +697937|15000431585|3 +722688|15000431706|3 +724477|15000431722|3 +798100|15000432170|3 +810065|15000432233|3 +811639|15000432238|3 +811692|15000432241|3 +812617|15000432244|3 +812488|15000432245|3 +812895|15000432247|3 +812915|15000432249|3 +812907|15000432251|3 +813728|15000432255|3 +815721|15000432262|3 +815903|15000432264|3 +815904|15000432265|3 +815909|15000432266|3 +818356|15000432273|3 +819571|15000432275|3 +821168|15000432282|3 +821793|15000432284|3 +821371|15000432285|3 +822721|15000432288|3 +822722|15000432289|3 +822898|15000432290|3 +823234|15000432292|3 +824262|15000432294|3 +824289|15000432295|3 +824214|15000432296|5 +824215|15000432297|5 +824551|15000432298|3 +824505|15000432299|3 +824498|15000432301|3 +824645|15000432302|3 +825150|15000432305|3 +825185|15000432306|3 +853537|15000432392|3 +811926|15000432697|3 +818750|15000433676|3 +815547|15000434281|3 +853536|15000434313|3 +900256|15001059984|3 +840463|15001067282|3 +879214|15001075405|3 +823922|15001081198|3 +818357|15001085077|3 +847136|15001089383|3 +823923|15001155013|3 +599236|15001168919|3 +550751|15001179219|3 +819398|15001180136|3 +813171|15001213795|3 +813356|15001262014|3 +743825|15001262042|3 +812916|15001285805|3 +836446|15001305735|5 +877019|15001309394|3 +697938|15001312257|3 +812908|15001312263|3 +573486|15001313819|3 +489001|15001321385|3 +813359|15001321780|3 +469831|15001336862|3 +815385|15001358342|3 +822774|15001360416|3 +771495|15001372448|3 +824192|15001375995|3 +812904|15001438160|3 +821794|15001457031|3 +824290|15001465751|3 +819572|15001477101|3 +613676|15001484465|3 +613636|15001485797|3 +824791|15001493658|3 +695532|15001498883|3 +726166|15001504048|3 +847131|15001511974|3 +847132|15001511975|3 +815131|15001514083|3 +815132|15001514179|3 +835971|15001525093|5 +810173|15001529463|3 +816345|15001530146|3 +816353|15001530148|3 +898765|15001533144|3 +823009|15001542722|3 +815894|15001542732|3 +810174|15001544157|3 +710098|15001560890|3 +824792|15001564038|3 +479535|15001567880|3 +824790|15001573165|3 +815130|15001574555|3 +853769|16000873133|3 +462453|16000873389|3 +464472|16000873421|3 +466506|16000873452|3 +466435|16000873454|3 +467605|16000873484|3 +467230|16000873492|3 +473483|16000873655|3 +822618|16000873837|3 +484135|16000873995|3 +487655|16000874097|3 +820052|16000874098|3 +492795|16000874221|3 +492796|16000874230|3 +494052|16000874278|3 +497305|16000874338|3 +499755|16000874391|3 +504054|16000874490|3 +531948|16000875124|3 +814982|16000875218|3 +541571|16000875291|3 +540405|16000875292|3 +539720|16000875297|3 +541727|16000875301|3 +539344|16000875306|3 +539412|16000875323|3 +550618|16000875564|3 +550619|16000875567|3 +559236|16000875875|3 +566936|16000876335|3 +569814|16000876458|3 +577936|16000876703|3 +578584|16000876753|3 +591636|16000877099|3 +597423|16000877295|3 +599229|16000877338|3 +612292|16000877732|3 +818317|16000877862|3 +623384|16000878067|3 +623534|16000878069|3 +625935|16000878119|3 +630486|16000878325|3 +637684|16000878468|3 +640483|16000878622|3 +642940|16000878668|3 +660736|16000879644|3 +660732|16000879649|3 +669568|16000879965|3 +669939|16000879973|3 +670839|16000879987|3 +672721|16000880027|3 +675871|16000880097|3 +677739|16000880125|3 +679831|16000880152|3 +679851|16000880153|3 +679845|16000880154|3 +679852|16000880155|3 +679853|16000880156|3 +686472|16000880235|3 +689765|16000880299|3 +853091|16000880300|3 +693371|16000880417|3 +823657|16000880554|3 +700633|16000880600|3 +705932|16000880767|3 +818327|16000880783|3 +716388|16000881083|3 +717238|16000881100|3 +724627|16000881310|3 +730004|16000881405|3 +736475|16000881624|3 +739630|16000881764|3 +739679|16000881767|3 +739777|16000881775|3 +739680|16000881778|3 +749006|16000881997|3 +757209|16000882120|3 +889618|16000882127|3 +757626|16000882144|3 +760720|16000882219|3 +766430|16000882378|3 +777302|16000882548|3 +777524|16000882550|3 +780707|16000882610|3 +783606|16000882668|3 +788946|16000882739|3 +805385|16000883027|3 +645088|16000883112|3 +816085|16000883216|3 +810145|16000883343|3 +810112|16000883344|3 +810129|16000883345|3 +810096|16000883347|3 +810101|16000883348|3 +810113|16000883350|3 +810110|16000883351|3 +810123|16000883352|3 +810136|16000883353|3 +810122|16000883354|3 +810125|16000883355|3 +810146|16000883356|3 +810114|16000883357|3 +810138|16000883358|3 +810141|16000883359|3 +810099|16000883360|3 +810102|16000883362|3 +810105|16000883364|3 +810097|16000883365|3 +810139|16000883367|3 +810094|16000883368|3 +810137|16000883369|3 +810115|16000883371|3 +810111|16000883372|3 +810983|16000883373|3 +811023|16000883376|3 +810586|16000883377|3 +811243|16000883380|3 +811239|16000883382|3 +811272|16000883385|3 +811258|16000883386|3 +811464|16000883387|3 +811509|16000883388|3 +811486|16000883389|3 +811771|16000883393|3 +811844|16000883394|3 +811803|16000883395|3 +812322|16000883397|3 +812514|16000883399|3 +812573|16000883400|3 +812940|16000883405|3 +812938|16000883406|3 +813035|16000883410|3 +813036|16000883411|3 +813646|16000883420|3 +813631|16000883421|3 +813993|16000883428|3 +814091|16000883429|3 +813975|16000883431|3 +814183|16000883433|3 +814182|16000883434|3 +814179|16000883436|3 +814200|16000883439|3 +814244|16000883440|3 +814248|16000883441|3 +814241|16000883442|3 +814234|16000883444|3 +814314|16000883445|3 +814640|16000883449|3 +814641|16000883450|3 +814896|16000883453|3 +814857|16000883454|3 +814979|16000883456|3 +830505|16000883458|5 +815208|16000883460|3 +815311|16000883461|3 +815889|16000883467|3 +816099|16000883470|3 +816173|16000883475|3 +816377|16000883479|3 +817202|16000883484|3 +817224|16000883485|3 +817216|16000883486|3 +817343|16000883489|3 +818826|16000883493|3 +818235|16000883496|3 +817784|16000883497|3 +819830|16000883501|3 +818962|16000883502|3 +818334|16000883505|3 +818479|16000883508|3 +818827|16000883510|3 +818480|16000883518|3 +819587|16000883519|3 +819588|16000883521|3 +832997|16000883522|5 +819240|16000883523|3 +819241|16000883524|3 +818328|16000883525|3 +817729|16000883526|3 +818953|16000883528|3 +819051|16000883529|3 +819402|16000883531|3 +817730|16000883534|3 +820109|16000883535|3 +818673|16000883537|3 +820624|16000883540|3 +820552|16000883541|3 +820736|16000883542|3 +820673|16000883543|3 +820698|16000883544|3 +820660|16000883545|3 +820756|16000883546|3 +820717|16000883547|3 +820926|16000883552|3 +820944|16000883553|3 +820996|16000883554|3 +821099|16000883556|3 +821111|16000883559|3 +836454|16000883560|5 +822651|16000883562|3 +821813|16000883566|3 +821395|16000883567|3 +836391|16000883569|7 +822423|16000883570|3 +822561|16000883571|3 +821255|16000883573|3 +821814|16000883574|3 +822783|16000883577|3 +823054|16000883578|3 +822870|16000883580|3 +822705|16000883581|3 +823002|16000883582|3 +838287|16000883584|5 +823285|16000883588|3 +823301|16000883589|3 +823345|16000883590|3 +823333|16000883591|3 +823617|16000883594|3 +823414|16000883595|3 +823396|16000883597|3 +838889|16000883598|5 +823630|16000883601|3 +823593|16000883602|3 +823658|16000883603|3 +823902|16000883608|3 +823890|16000883609|3 +823880|16000883610|3 +824097|16000883612|3 +824172|16000883614|3 +824173|16000883615|3 +824221|16000883617|3 +824335|16000883620|3 +825100|16000883625|3 +825186|16000883628|3 +825125|16000883629|3 +825178|16000883630|3 +825131|16000883631|3 +846143|16000883722|3 +846529|16000883724|3 +846967|16000883753|3 +853533|16000883829|3 +862914|16000883992|5 +883852|16000884530|3 +887020|16000884587|3 +889619|16000884678|3 +895269|16000884754|3 +818970|16000885594|3 +823659|16000886006|3 +806024|16000886387|3 +889703|16000888511|3 +710688|16000892563|3 +541664|16001015188|3 +817871|16001016294|3 +810147|16001037467|3 +813283|16001037576|3 +818147|16001037580|3 +834070|16001039262|5 +810103|16001040998|3 +469763|16001041083|3 +679835|16001041513|3 +817481|16001041884|3 +822590|16001049002|3 +820200|16001054804|3 +817773|16001054933|3 +612536|16001055454|3 +821938|16001056293|3 +824125|16001056728|3 +708935|16001057332|3 +661532|16001059725|3 +879219|16001059785|3 +541665|16001063383|3 +681907|16001064715|3 +814308|16001065703|3 +813635|16001070405|3 +813108|16001070805|3 +554386|16001074185|3 +813607|16001077186|3 +814237|16001081246|3 +821262|16001092716|3 +824735|16001092719|3 +824736|16001093142|3 +751273|16001095190|3 +823607|16001096164|3 +810276|16001098340|3 +811787|16001100037|3 +612330|16001100085|3 +900230|16001103395|3 +810126|16001103598|3 +810550|16001105055|3 +822974|16001107777|3 +822730|16001110526|3 +839604|16001112008|5 +739771|16001112049|3 +817335|16001112361|3 +814426|16001114216|3 +835483|16001115704|3 +815611|16001115716|3 +810376|16001116391|3 +824098|16001117004|3 +824388|16001118206|3 +813044|16001121755|3 +853740|16001123681|3 +821248|16001124225|3 +813281|16001126920|3 +723387|16001134227|3 +810248|16001135262|3 +898169|16001137499|3 +824737|16001137530|3 +539931|16001140464|3 +810119|16001140668|3 +492405|16001141296|3 +891016|16001152299|3 +541702|16001154666|3 +467231|16001156836|3 +550722|16001159512|3 +889620|16001167586|3 +816674|16001172796|3 +810100|16001179019|3 +618232|16001179868|3 +609548|16001181000|3 +814229|16001187181|3 +824083|16001187182|3 +824533|16001199920|3 +853511|16001206984|3 +723388|16001212261|3 +817198|16001216990|3 +679836|16001218783|3 +805388|16001218785|3 +539218|16001220335|3 +810108|16001222719|3 +467021|16001228293|3 +814871|16001233957|3 +853746|16001234401|3 +815890|16001236138|3 +823056|16001238613|3 +621955|16001238894|3 +824734|16001240321|3 +667587|16001242216|3 +492797|16001243180|3 +548703|16001249028|3 +823452|16001249724|3 +814856|16001250088|3 +893014|16001250260|3 +817785|16001251819|3 +787994|16001252198|3 +599230|16001254607|3 +824035|16001255125|3 +812888|16001255438|3 +814617|16001255440|3 +817344|16001267642|3 +821529|16001270107|3 +822980|16001270484|3 +699421|16001271801|3 +805420|16001271811|3 +836455|16001272734|5 +453828|16001276097|3 +658889|16001276111|3 +466507|16001276116|3 +635635|16001276225|3 +816677|16001276581|3 +813783|16001280379|3 +823608|16001282496|3 +823727|16001282663|3 +717671|16001286454|3 +805408|16001286524|3 +811199|16001286526|3 +679844|16001292989|3 +626148|16001297829|3 +626159|16001297834|3 +814590|16001301922|3 +846968|16001302212|3 +815656|16001305220|3 +823118|16001307673|3 +819507|16001307802|3 +476933|16001311144|3 +822380|16001312406|3 +824810|16001319357|3 +815420|16001320185|3 +850846|16001325402|3 +786298|16001326242|3 +817072|16001326507|3 +889704|16001329049|3 +853541|16001330487|3 +817188|16001334484|3 +853766|16001334485|3 +539351|16001334762|3 +824345|16001335341|3 +824978|16001336583|3 +789056|16001337195|3 +816678|16001337794|3 +507593|16001341821|3 +543397|16001343442|3 +812166|16001343696|3 +797839|16001345130|3 +817289|16001351239|3 +811845|16001351939|3 +901368|16001352036|3 +824400|16001353873|3 +655527|16001353881|3 +550754|16001356417|3 +814897|16001357346|3 +834071|16001360224|5 +823842|16001361092|3 +824113|16001363437|3 +579233|16001365958|3 +679847|16001366070|3 +815421|16001366350|3 +689655|16001368409|3 +819913|16001368839|3 +816375|16001369602|3 +768747|16001373698|3 +813602|16001380241|3 +823041|16001380242|3 +816174|16001380569|3 +813785|16001382896|3 +816457|16001389302|3 +812171|16001390093|3 +814375|16001390919|3 +824428|16001391038|3 +817786|16001391641|3 +818308|16001391642|3 +641886|16001392317|3 +814591|16001394310|3 +814592|16001394311|3 +812168|16001396091|3 +812169|16001396094|3 +812167|16001397279|3 +821530|16001401967|3 +612293|16001403575|3 +750726|16001403661|3 +847188|16001404569|3 +553285|16001408784|3 +622117|16001412610|3 +816725|16001421191|3 +813284|16001421199|3 +606216|16001424649|3 +819498|16001429024|3 +838753|16001431241|3 +816358|16001433564|3 +817203|16001433572|3 +853092|16001433589|3 +817731|16001438775|3 +813282|16001441668|3 +814103|16001445941|3 +816751|16001455001|3 +823563|16001456428|3 +811882|16001458061|3 +471458|16001467750|3 +816163|16001468243|3 +823631|16001471593|3 +812359|16001472526|3 +817872|16001474123|3 +789057|16001476628|3 +816203|16001476630|3 +612331|16001477271|3 +813784|16001477306|3 +816175|16001477320|3 +824377|16001477653|3 +491055|16001480955|3 +539352|16001480979|3 +824814|16001481197|3 +765879|16001481439|3 +818956|16001482400|3 +823216|16001483395|3 +823172|16001483408|3 +759177|16001485208|3 +814849|16001492602|3 +812884|16001493389|3 +810135|16001494177|3 +726170|16001495374|3 +901369|16001500685|3 +821035|16001501550|3 +818948|16001501859|3 +812891|16001503810|3 +824614|16001505723|3 +822726|16001507681|3 +771934|16001507721|3 +495903|16001508536|3 +823465|16001510024|3 +815590|16001512589|3 +822975|16001514865|3 +821896|16001515266|3 +813617|16001516415|3 +815136|16001518740|3 +814980|16001518998|3 +816842|16001519478|3 +821021|16001526632|3 +826336|16001527397|5 +817309|16001528431|3 +817959|16001529308|3 +759880|16001532549|3 +821940|16001534435|3 +789058|16001537198|3 +820494|16001537770|3 +812172|16001538375|3 +581582|16001539276|3 +816182|16001541804|3 +789059|16001542994|3 +822897|16001544299|3 +816581|16001547730|3 +587435|16001548027|3 +847189|16001548341|3 +820201|16001548431|3 +810380|16001549623|3 +699418|16001549976|3 +824346|16001550823|3 +813222|16001551020|3 +824815|16001558640|3 +824619|16001559887|3 +810098|16001560117|3 +813812|16001560974|3 +813824|16001560983|3 +819123|16001560986|5 +821812|16001561108|3 +812606|16001564757|3 +901128|16001565242|3 +820535|16001565246|3 +816471|16001565720|3 +838055|16001565723|5 +728700|16001565744|3 +819124|16001568360|3 +814400|16001569403|3 +824296|16001569404|3 +824321|16001572766|3 +816982|16001577053|3 +453032|17000856574|3 +454718|17000856600|3 +454719|17000856602|3 +462444|17000856755|3 +463958|17000856777|3 +464466|17000856804|3 +466503|17000856827|3 +466504|17000856830|3 +466530|17000856831|3 +470438|17000856879|3 +471466|17000856889|3 +482174|17000857080|3 +482485|17000857090|3 +488926|17000857208|3 +502045|17000857500|3 +526655|17000858088|3 +535354|17000858337|3 +540605|17000858434|3 +541654|17000858451|3 +539793|17000858472|3 +541740|17000858489|3 +626185|17000858666|3 +550652|17000858672|3 +550653|17000858673|3 +550644|17000858677|3 +550651|17000858682|3 +554436|17000858719|3 +557675|17000858760|3 +559221|17000858801|3 +570834|17000859015|3 +570835|17000859018|3 +572031|17000859045|3 +580877|17000859199|3 +587085|17000859332|3 +592374|17000859442|3 +599092|17000859546|3 +609712|17000859699|3 +609549|17000859701|3 +609574|17000859702|3 +609575|17000859707|3 +609585|17000859709|3 +610132|17000859721|3 +613971|17000859764|3 +624535|17000860010|3 +625486|17000860019|3 +646489|17000860406|3 +646490|17000860417|3 +821066|17000860622|3 +664984|17000860815|3 +667937|17000860881|3 +671484|17000860941|3 +674138|17000861014|3 +678235|17000861151|3 +679861|17000861187|3 +698037|17000861523|3 +698238|17000861540|3 +698963|17000861552|3 +698964|17000861555|3 +700584|17000861586|3 +708133|17000861699|3 +710038|17000861725|3 +710686|17000861729|3 +716332|17000861843|3 +716438|17000861852|3 +723424|17000861984|3 +723426|17000861985|3 +723421|17000861986|3 +723425|17000861987|3 +723422|17000861988|3 +724478|17000862036|3 +725125|17000862068|3 +724880|17000862075|3 +725126|17000862082|3 +731080|17000862157|3 +759178|17000862761|3 +776959|17000863156|3 +782642|17000863317|3 +791489|17000863484|3 +792375|17000863490|3 +794959|17000863558|3 +796497|17000863589|3 +822631|17000863668|3 +825228|17000863879|7 +825227|17000863880|7 +810271|17000863884|3 +826000|17000863888|3 +810809|17000863890|3 +810427|17000863894|3 +810551|17000863895|3 +810778|17000863897|3 +810779|17000863898|3 +810629|17000863901|3 +810446|17000863902|3 +810628|17000863903|3 +810447|17000863907|3 +811215|17000863909|3 +811232|17000863910|3 +811496|17000863911|3 +811407|17000863912|3 +811530|17000863914|3 +811541|17000863915|3 +811645|17000863916|3 +811593|17000863917|3 +811679|17000863918|3 +811796|17000863920|3 +811874|17000863921|3 +811918|17000863922|3 +811909|17000863923|3 +811749|17000863926|3 +811924|17000863930|3 +811755|17000863933|3 +812109|17000863937|3 +812104|17000863938|3 +812146|17000863939|3 +812284|17000863940|3 +812253|17000863941|3 +812307|17000863943|3 +812355|17000863947|3 +812494|17000863949|3 +812526|17000863951|3 +812801|17000863953|3 +812878|17000863957|3 +812846|17000863958|3 +812851|17000863960|3 +812943|17000863961|3 +813129|17000863964|3 +813162|17000863965|3 +813161|17000863966|3 +813213|17000863967|3 +813204|17000863968|3 +813203|17000863969|3 +813227|17000863974|3 +813245|17000863975|3 +813246|17000863977|3 +813244|17000863978|3 +813561|17000863983|3 +813596|17000863984|3 +813594|17000863985|3 +813565|17000863987|3 +813610|17000863988|3 +813566|17000863989|3 +813647|17000863990|3 +813661|17000863991|3 +813794|17000863997|3 +813802|17000863998|3 +813789|17000863999|3 +814385|17000864005|3 +814401|17000864009|3 +814396|17000864010|3 +814766|17000864011|3 +814777|17000864012|3 +814831|17000864014|3 +814870|17000864015|3 +814867|17000864016|3 +814846|17000864017|3 +814836|17000864018|3 +814844|17000864023|3 +814879|17000864024|3 +814891|17000864026|3 +814878|17000864027|3 +814883|17000864028|3 +814907|17000864029|3 +815283|17000864037|3 +815629|17000864038|3 +815711|17000864040|3 +815765|17000864043|3 +815795|17000864044|3 +815811|17000864045|3 +815881|17000864046|3 +815882|17000864047|3 +816027|17000864051|3 +816139|17000864054|3 +816136|17000864055|3 +816312|17000864057|3 +817342|17000864061|3 +817345|17000864062|3 +818473|17000864066|3 +834236|17000864070|7 +818400|17000864072|3 +820484|17000864073|3 +818733|17000864076|3 +820018|17000864083|3 +818487|17000864085|3 +832993|17000864091|5 +833256|17000864098|5 +832994|17000864103|5 +817976|17000864104|5 +819298|17000864105|3 +820826|17000864107|3 +820757|17000864108|3 +820588|17000864111|3 +820804|17000864112|3 +820762|17000864113|3 +820603|17000864115|3 +820893|17000864116|3 +820892|17000864118|3 +821030|17000864121|3 +821681|17000864125|3 +821257|17000864126|3 +822481|17000864127|3 +821258|17000864128|3 +822027|17000864130|3 +821877|17000864131|3 +822621|17000864137|3 +823230|17000864143|3 +823167|17000864144|5 +823468|17000864148|3 +823770|17000864153|3 +823771|17000864154|3 +823966|17000864155|3 +823968|17000864156|3 +823969|17000864158|3 +823970|17000864159|3 +823972|17000864160|3 +824033|17000864161|3 +824187|17000864163|3 +824147|17000864164|3 +824250|17000864165|3 +824183|17000864166|3 +824136|17000864167|3 +824403|17000864170|3 +824439|17000864171|3 +824440|17000864172|3 +824442|17000864173|3 +824441|17000864175|3 +824834|17000864177|3 +824832|17000864178|3 +825121|17000864179|3 +825179|17000864181|3 +825172|17000864184|3 +825204|17000864185|3 +825205|17000864186|3 +846516|17000864293|3 +846407|17000864302|3 +847376|17000864350|3 +853147|17000864447|3 +878269|17000865192|3 +891467|17000865521|3 +900251|17000865683|3 +908635|17000865835|2 +908653|17000865837|2 +813130|17000866437|3 +810792|17000866841|3 +890993|17000869713|3 +812286|17000871722|3 +815390|17000872118|3 +900252|17000872966|3 +805417|17001021182|3 +825132|17001036057|3 +814785|17001038905|3 +814263|17001045300|3 +814780|17001045301|3 +811296|17001046283|3 +567926|17001048681|3 +810428|17001059498|3 +817403|17001062895|3 +538654|17001063573|3 +811454|17001070412|3 +626147|17001075883|3 +816243|17001076108|3 +821075|17001077731|3 +559372|17001078195|3 +853768|17001090681|3 +818836|17001097135|3 +771920|17001108536|3 +814828|17001113537|3 +821014|17001117036|3 +825133|17001117358|3 +818631|17001119974|3 +823921|17001120365|3 +819517|17001120579|3 +877507|17001122548|3 +500655|17001123912|3 +815800|17001133524|3 +820827|17001135142|3 +813577|17001135162|3 +462439|17001135165|3 +541697|17001135198|3 +888918|17001138325|3 +825048|17001141723|3 +814577|17001149261|3 +814799|17001154157|3 +810830|17001154594|3 +816239|17001154652|3 +877568|17001155053|3 +815812|17001155062|3 +798254|17001155620|3 +613436|17001159421|3 +825230|17001160314|7 +821538|17001163572|3 +816138|17001168368|3 +810448|17001176809|3 +853514|17001180806|3 +723418|17001183671|3 +470424|17001183824|3 +810790|17001193251|3 +817960|17001195423|3 +550655|17001199475|3 +816307|17001201024|3 +901341|17001202967|3 +823976|17001205603|3 +507532|17001209200|3 +816140|17001209492|3 +756574|17001214909|3 +541054|17001216140|3 +813595|17001217577|3 +822077|17001222111|3 +823971|17001222334|3 +541195|17001222336|3 +832144|17001222342|3 +812151|17001222344|3 +825039|17001222362|3 +810630|17001222818|3 +813906|17001223263|3 +813567|17001225278|3 +824259|17001231402|3 +813249|17001233219|3 +815871|17001236408|3 +507598|17001237843|3 +824438|17001239521|3 +814144|17001242126|3 +814145|17001242541|3 +852796|17001244025|3 +626927|17001245834|3 +812387|17001252854|3 +821878|17001255472|3 +817318|17001268986|3 +639290|17001269138|3 +633087|17001272179|3 +823905|17001273506|3 +667938|17001274450|3 +752025|17001274456|3 +908671|17001278126|2 +819064|17001281764|3 +812299|17001283409|3 +811860|17001296094|3 +822653|17001296095|3 +825138|17001296097|3 +820894|17001301646|3 +823692|17001312370|3 +814859|17001313588|3 +810481|17001317146|3 +847491|17001317154|3 +824227|17001317155|3 +817886|17001317776|3 +823435|17001319510|3 +816440|17001321182|3 +698817|17001328336|3 +613534|17001333854|3 +541181|17001340137|3 +541698|17001340753|3 +813667|17001340943|3 +901019|17001341557|3 +883851|17001344332|3 +821088|17001344983|3 +900226|17001345270|3 +744128|17001348573|3 +816448|17001348745|3 +716319|17001348751|3 +893120|17001348991|3 +541703|17001350750|3 +812398|17001351278|3 +813251|17001354195|3 +822862|17001355355|3 +867420|17001357386|3 +823967|17001361568|3 +550654|17001364064|3 +814834|17001366518|3 +669572|17001368375|3 +847377|17001370584|3 +541656|17001372965|3 +822539|17001376278|3 +821350|17001376279|3 +853197|17001379781|3 +816992|17001383327|3 +813924|17001383367|3 +824437|17001384543|3 +813131|17001385952|3 +814765|17001385953|3 +814830|17001389147|3 +810665|17001389571|3 +823247|17001389816|3 +815875|17001397294|3 +817830|17001400090|3 +900222|17001407271|3 +470482|17001407465|3 +466497|17001409709|3 +816991|17001413209|3 +541196|17001418760|3 +726167|17001419897|3 +823596|17001420159|3 +853519|17001420168|3 +820584|17001420569|3 +621958|17001422606|3 +822662|17001422645|3 +771921|17001423082|3 +609554|17001424974|3 +820895|17001424978|3 +813250|17001428852|3 +847378|17001429516|3 +813669|17001429631|3 +818052|17001429865|3 +813666|17001430445|3 +820528|17001435629|3 +824152|17001435630|3 +821089|17001448359|3 +816360|17001452225|3 +568326|17001458109|3 +901020|17001464301|3 +817529|17001464864|3 +812105|17001465326|3 +813125|17001468958|3 +814772|17001469455|3 +872862|17001471371|3 +670540|17001474976|3 +816438|17001477967|3 +812666|17001479180|3 +717674|17001479859|3 +813128|17001484385|3 +543004|17001485666|3 +823231|17001490364|3 +811594|17001490664|3 +814395|17001490992|3 +811948|17001496923|3 +813939|17001496924|3 +823343|17001498848|3 +814383|17001501168|3 +818821|17001501170|3 +571884|17001502205|3 +613979|17001504567|3 +562385|17001505823|3 +791904|17001506484|3 +883343|17001509888|3 +466500|17001512848|3 +811825|17001513114|3 +613970|17001515460|3 +723419|17001518749|3 +821600|17001518850|3 +541699|17001519376|3 +752328|17001529643|3 +813612|17001533804|3 +889702|17001534312|3 +812990|17001534536|3 +862896|17001539254|5 +492804|17001540239|3 +869966|17001543288|3 +714434|17001544358|3 +812530|17001546984|3 +805418|17001547255|3 +814384|17001547854|3 +805404|17001552509|3 +805403|17001553247|3 +805419|17001553389|3 +612301|17001553408|3 +818346|17001557124|3 +812021|17001557997|3 +815828|17001558128|3 +872863|17001558130|3 +626935|17001560041|3 +612606|17001563496|3 +633085|17001565488|3 +865611|17001565495|3 +648859|17001570905|3 +815005|17001574608|3 +626162|17001575740|3 +731149|17001576980|3 +527047|18000497570|3 +534089|18000497599|3 +539230|18000497642|3 +557671|18000497710|3 +557672|18000497711|3 +557673|18000497712|3 +558833|18000497718|3 +558834|18000497719|3 +558835|18000497721|3 +617384|18000497952|3 +665132|18000498074|3 +671790|18000498088|3 +672289|18000498089|3 +705784|18000498257|3 +725020|18000498321|3 +731065|18000498336|3 +749686|18000498393|3 +749687|18000498396|3 +795798|18000498634|3 +795754|18000498636|3 +795608|18000498637|3 +825223|18000498705|7 +810960|18000498706|5 +810787|18000498707|3 +810612|18000498709|3 +812272|18000498710|3 +812245|18000498711|3 +812560|18000498712|3 +812451|18000498713|3 +813218|18000498717|3 +813202|18000498718|3 +814220|18000498719|3 +816030|18000498720|3 +833735|18000498723|3 +835377|18000498724|7 +834810|18000498725|3 +833736|18000498726|3 +833737|18000498729|3 +835378|18000498733|7 +821592|18000498736|3 +822880|18000498737|3 +823084|18000498738|3 +822750|18000498739|3 +823408|18000498741|3 +823895|18000498745|3 +823896|18000498746|3 +846419|18000498771|3 +853525|18000498802|3 +879209|18000498880|3 +882853|18000498904|3 +814287|18000499260|3 +813687|18000499661|3 +820585|18001018434|3 +795609|18001046257|3 +819558|18001061611|3 +819559|18001072956|3 +824863|18001117672|3 +557674|18001127913|3 +846242|18001130584|3 +823474|18001145283|3 +815643|18001203146|3 +815702|18001206178|3 +815581|18001206179|3 +893520|18001267587|3 +824768|18001271892|3 +825221|18001274311|7 +823910|18001279526|3 +825222|18001292755|7 +812058|18001297738|3 +819560|18001322686|3 +706828|18001364564|3 +811985|18001365136|3 +813307|18001379566|3 +824305|18001398466|3 +612309|18001403788|3 +617383|18001407022|3 +570486|18001430947|3 +853524|18001440740|3 +824765|18001450399|3 +817647|18001457047|3 +716323|18001464283|3 +819561|18001465611|3 +820636|18001468900|3 +820586|18001475992|3 +813437|18001476454|3 +817985|18001494723|5 +817986|18001494725|5 +847037|18001502145|3 +817347|18001506971|3 +837654|18001536613|5 +833744|18001542893|3 +819562|18001544483|3 +824653|18001548978|3 +462451|19000509293|3 +463963|19000509314|3 +467483|19000509352|3 +471420|19000509399|3 +488939|19000509577|3 +488940|19000509578|3 +524493|19000509960|3 +539715|19000510145|3 +541158|19000510151|3 +541159|19000510153|3 +539716|19000510156|3 +539717|19000510160|3 +539718|19000510165|3 +539719|19000510171|3 +541492|19000510179|3 +545304|19000510230|3 +572084|19000510519|3 +572085|19000510520|3 +821005|19000510712|3 +824870|19000510736|3 +815375|19000510797|3 +836545|19000510929|3 +605934|19000510940|3 +607366|19000510967|3 +609561|19000511004|3 +622985|19000511147|3 +815446|19000511536|3 +669940|19000511566|3 +675940|19000511631|3 +825192|19000511660|3 +759278|19000511685|3 +686465|19000511776|3 +700576|19000511916|3 +704788|19000511975|3 +705886|19000511988|3 +706823|19000512005|3 +719188|19000512130|3 +753872|19000512489|3 +769093|19000512667|3 +771919|19000512719|3 +488938|19000512810|3 +779157|19000512829|3 +814942|19000513046|3 +793459|19000513055|3 +825239|19000513279|7 +810841|19000513286|3 +810795|19000513287|3 +810962|19000513288|3 +810497|19000513289|3 +810882|19000513290|3 +810842|19000513293|3 +811314|19000513295|3 +811419|19000513297|3 +811536|19000513298|3 +811549|19000513300|3 +811671|19000513303|3 +812747|19000513308|3 +812542|19000513311|3 +812748|19000513312|3 +812781|19000513313|3 +813175|19000513315|3 +813224|19000513320|3 +813365|19000513325|3 +813432|19000513326|3 +813668|19000513327|3 +813713|19000513329|3 +814043|19000513331|3 +814067|19000513332|3 +814129|19000513333|3 +814277|19000513334|3 +814279|19000513335|3 +814309|19000513336|3 +814825|19000513339|3 +814823|19000513340|3 +814917|19000513342|3 +814918|19000513343|3 +814990|19000513344|3 +814991|19000513345|3 +814987|19000513346|3 +814989|19000513348|3 +815158|19000513349|3 +830646|19000513351|5 +815401|19000513353|3 +815334|19000513354|3 +815213|19000513355|3 +815353|19000513356|3 +815644|19000513358|3 +815997|19000513363|3 +815998|19000513364|3 +816137|19000513366|3 +816199|19000513371|3 +816210|19000513373|3 +816215|19000513374|3 +817246|19000513376|3 +817467|19000513377|3 +817520|19000513378|3 +817542|19000513379|3 +817658|19000513380|3 +834024|19000513381|3 +834867|19000513383|5 +835648|19000513384|7 +818978|19000513386|3 +819178|19000513388|3 +817996|19000513389|3 +819311|19000513391|3 +818010|19000513392|3 +819773|19000513395|3 +818596|19000513397|3 +818117|19000513400|3 +818595|19000513401|3 +819843|19000513407|3 +818834|19000513409|3 +819084|19000513411|3 +819222|19000513412|5 +817821|19000513417|3 +834242|19000513418|7 +834243|19000513420|7 +834820|19000513421|5 +819223|19000513423|5 +818397|19000513426|3 +820290|19000513427|3 +835647|19000513429|7 +834655|19000513430|5 +834244|19000513432|7 +820457|19000513435|3 +835646|19000513437|7 +818398|19000513438|3 +835263|19000513444|5 +819772|19000513447|3 +818009|19000513448|3 +837367|19000513457|3 +836939|19000513461|7 +821419|19000513463|3 +837614|19000513464|5 +821423|19000513465|3 +822246|19000513468|5 +821941|19000513469|3 +821624|19000513470|3 +836576|19000513474|5 +822655|19000513475|3 +822907|19000513483|3 +822967|19000513485|3 +823198|19000513488|3 +823214|19000513490|3 +823826|19000513493|3 +823824|19000513495|3 +823837|19000513496|3 +824162|19000513497|3 +824650|19000513501|3 +824662|19000513502|3 +824748|19000513503|3 +824747|19000513505|3 +847385|19000513601|3 +853544|19000513715|3 +867570|19000513930|3 +883316|19000514069|3 +900201|19000514289|3 +901010|19000514296|3 +539429|19000514735|3 +820845|19000515721|3 +810121|19000516275|3 +823825|19000516600|3 +815084|19000518616|3 +820370|19001011119|3 +811670|19001013058|3 +813192|19001013301|3 +690334|19001018027|3 +852994|19001018717|3 +675939|19001033321|3 +819774|19001038031|3 +836940|19001039952|7 +821605|19001047084|3 +817873|19001059496|3 +816211|19001061437|3 +810676|19001072951|3 +784554|19001076226|3 +813462|19001076290|3 +666225|19001078177|3 +852993|19001080293|3 +834685|19001101268|5 +820534|19001111878|3 +812230|19001112936|3 +818118|19001113321|3 +826306|19001115242|5 +810579|19001115243|3 +834025|19001116680|3 +723417|19001129464|3 +716988|19001130022|3 +813332|19001133366|3 +821998|19001136156|3 +837362|19001139101|3 +812788|19001144001|3 +581185|19001146978|3 +898815|19001149676|3 +815303|19001152263|3 +821537|19001159912|3 +816953|19001160496|3 +812427|19001160583|3 +541191|19001160590|3 +771889|19001161879|3 +758872|19001168569|3 +710097|19001174496|3 +769109|19001174604|3 +673680|19001175631|3 +815369|19001180888|3 +541172|19001183197|3 +621773|19001185319|3 +837368|19001189907|3 +814278|19001194938|3 +815412|19001198139|3 +819180|19001205765|3 +825031|19001211064|3 +728902|19001212077|3 +812790|19001217863|3 +834030|19001226969|3 +817604|19001231202|3 +495505|19001232964|3 +836945|19001234487|7 +822784|19001234765|3 +814992|19001235623|3 +823832|19001236033|3 +524494|19001236295|3 +749706|19001245256|3 +817605|19001248879|3 +815335|19001255427|3 +835613|19001257585|7 +819308|19001258921|3 +836946|19001258999|7 +820369|19001261218|3 +836947|19001261219|7 +788782|19001264569|3 +815444|19001264671|3 +812539|19001270381|3 +541173|19001273791|3 +822330|19001275333|3 +818592|19001279200|3 +823681|19001281323|3 +810804|19001281572|3 +820531|19001285314|3 +815599|19001291538|3 +821999|19001291542|3 +728903|19001304424|3 +817822|19001305405|3 +635437|19001307352|3 +581676|19001310942|3 +820514|19001311745|3 +550748|19001314571|3 +836948|19001322025|7 +818593|19001350934|3 +821984|19001350936|3 +815799|19001351864|3 +581581|19001354105|3 +819386|19001354483|3 +826048|19001357308|3 +823134|19001360286|3 +886469|19001365694|3 +826276|19001366395|7 +812985|19001366775|3 +886470|19001369108|3 +471421|19001369153|3 +814994|19001369847|3 +541174|19001373081|3 +717230|19001377664|3 +837402|19001381775|5 +812791|19001384984|3 +815544|19001386776|3 +622065|19001386902|3 +725024|19001390355|3 +824610|19001390356|3 +824609|19001391356|3 +825208|19001392310|7 +815286|19001394751|3 +834821|19001396817|5 +811201|19001397673|3 +822104|19001399303|3 +549604|19001401543|3 +471422|19001404613|3 +815318|19001413262|3 +821621|19001413265|3 +891086|19001413276|3 +819226|19001414758|5 +826277|19001415326|7 +822000|19001415330|3 +470145|19001420272|3 +621676|19001421784|3 +837403|19001422629|5 +635510|19001427728|3 +559239|19001427874|3 +716324|19001427889|3 +822772|19001427907|3 +565317|19001428737|3 +782646|19001429541|3 +782647|19001429542|3 +541175|19001430436|3 +815445|19001430443|3 +811546|19001430672|3 +811422|19001430677|3 +818450|19001430681|3 +797858|19001436178|3 +816768|19001436273|3 +819775|19001436275|3 +818008|19001436276|3 +815413|19001437136|3 +819227|19001439847|5 +822516|19001442072|5 +780155|19001444577|3 +813376|19001444923|3 +890990|19001446082|3 +821296|19001450460|3 +813223|19001452741|3 +824776|19001453612|3 +834245|19001458775|7 +890985|19001459152|3 +847388|19001461189|3 +816097|19001465096|3 +823688|19001469161|3 +822331|19001469623|3 +813465|19001471677|3 +539721|19001472206|3 +821250|19001472650|3 +819085|19001472837|3 +782644|19001475603|3 +592429|19001476122|3 +641881|19001477304|3 +810377|19001486650|3 +837369|19001491249|3 +777538|19001493366|3 +694518|19001497230|3 +631589|19001500620|3 +815170|19001500969|3 +710030|19001503793|3 +821425|19001507811|3 +863470|19001509072|3 +824710|19001510539|3 +729579|19001510837|3 +815319|19001511689|3 +817474|19001512549|3 +817497|19001512550|3 +890991|19001512672|3 +820114|19001513890|3 +827855|19001514739|5 +570186|19001520936|3 +821960|19001521269|3 +817874|19001523642|3 +467684|19001526827|3 +821426|19001527723|3 +821348|19001527824|3 +823030|19001530394|3 +822243|19001535672|5 +813319|19001536529|3 +813174|19001536637|3 +823629|19001540265|3 +818121|19001540494|3 +846432|19001540613|3 +836949|19001540842|7 +823833|19001541622|3 +812924|19001543673|3 +812782|19001545442|3 +821131|19001547768|3 +815153|19001548627|3 +815219|19001551895|3 +705887|19001556316|3 +541176|19001556794|3 +790958|19001562608|3 +817839|19001562690|3 +834884|19001566355|5 +891087|19001569368|3 +835614|19001571379|7 +795756|19001571929|3 +836950|19001573247|7 +820599|19001575288|3 +817253|19001575497|3 +816351|19001575662|3 +813091|19001577108|3 +813092|19001577109|3 +459834|20000519231|3 +463930|20000519284|3 +470162|20000519343|3 +473376|20000519382|3 +487255|20000519557|3 +487350|20000519559|3 +488731|20000519584|3 +488730|20000519589|3 +530251|20000520311|3 +534092|20000520378|3 +539748|20000520475|3 +539749|20000520489|3 +558534|20000520762|3 +565233|20000520879|3 +575233|20000521083|3 +541445|20000521091|3 +575683|20000521092|3 +591929|20000521370|3 +591930|20000521371|3 +591775|20000521390|3 +593084|20000521419|3 +818707|20000521455|3 +605160|20000521642|3 +616828|20000521809|3 +818132|20000521929|3 +655748|20000522446|3 +664985|20000522623|3 +679140|20000522879|3 +690320|20000523069|3 +690315|20000523070|3 +705285|20000523297|3 +705286|20000523298|3 +710104|20000523394|3 +719886|20000523550|3 +723420|20000523606|3 +575481|20000523607|3 +723423|20000523608|3 +734073|20000523771|3 +747721|20000524060|3 +816420|20000524072|3 +762827|20000524255|3 +762826|20000524256|3 +764830|20000524295|3 +813378|20000524415|3 +775408|20000524507|3 +777653|20000524541|3 +786159|20000524709|3 +792386|20000524818|3 +792387|20000524821|3 +812117|20000524947|3 +801809|20000525039|3 +805424|20000525122|3 +809716|20000525189|3 +810844|20000525197|3 +810384|20000525200|3 +810332|20000525201|3 +811477|20000525210|3 +811460|20000525212|3 +811630|20000525214|3 +811617|20000525215|3 +811675|20000525216|3 +812251|20000525221|3 +812320|20000525222|3 +812671|20000525223|3 +812667|20000525226|3 +812779|20000525228|3 +813377|20000525232|3 +813446|20000525233|3 +813447|20000525234|3 +813834|20000525238|3 +813870|20000525240|3 +814116|20000525244|3 +814304|20000525246|3 +814313|20000525247|3 +814471|20000525248|3 +814818|20000525253|3 +815012|20000525256|3 +815150|20000525258|3 +815277|20000525259|3 +815278|20000525260|3 +815731|20000525261|3 +815619|20000525262|3 +815700|20000525265|3 +815519|20000525266|3 +815567|20000525268|3 +815860|20000525270|3 +815940|20000525272|3 +815935|20000525273|3 +816058|20000525274|3 +816413|20000525277|3 +816414|20000525279|3 +832604|20000525280|7 +832605|20000525283|7 +819895|20000525286|3 +819896|20000525290|3 +818708|20000525293|3 +818957|20000525301|3 +819309|20000525304|3 +819289|20000525306|3 +819897|20000525308|3 +820265|20000525309|3 +818099|20000525311|3 +819898|20000525312|3 +818709|20000525315|3 +819041|20000525317|3 +820576|20000525319|3 +820553|20000525321|3 +837249|20000525328|7 +822292|20000525329|3 +837250|20000525330|7 +822612|20000525333|3 +821433|20000525334|3 +821387|20000525335|3 +837251|20000525341|7 +821133|20000525343|3 +821775|20000525348|3 +823025|20000525355|3 +822929|20000525356|3 +822895|20000525361|3 +823267|20000525362|3 +823567|20000525364|3 +823623|20000525365|3 +823427|20000525367|3 +823850|20000525369|3 +823858|20000525371|3 +823861|20000525372|3 +823859|20000525373|3 +824014|20000525375|3 +824397|20000525376|3 +824851|20000525383|3 +842041|20000525414|3 +842042|20000525425|3 +815835|20000525481|3 +883347|20000526198|3 +908634|20000526617|2 +908659|20000526618|2 +891089|20000528156|3 +736927|20000528892|3 +760724|20000529135|3 +685863|20000530539|3 +597628|20000530908|3 +819332|20000532563|3 +821666|20000532587|3 +811431|20000532701|3 +820363|20001019437|5 +757029|20001019506|3 +689718|20001021167|3 +820625|20001024548|3 +473377|20001027966|3 +811446|20001031551|3 +470483|20001041955|3 +834036|20001041963|3 +630882|20001063609|3 +820490|20001073513|3 +815304|20001075370|3 +824193|20001075533|3 +832995|20001080096|5 +567928|20001089174|3 +591797|20001092676|3 +591791|20001097972|3 +821847|20001109541|3 +821622|20001109545|3 +810734|20001124055|3 +815937|20001124061|3 +819143|20001130342|5 +810385|20001131366|3 +810788|20001133476|3 +810968|20001133477|3 +908666|20001133490|2 +487305|20001133731|3 +591776|20001141784|3 +820771|20001147261|3 +810847|20001147899|3 +818083|20001152139|3 +814668|20001161439|3 +810679|20001161445|3 +539936|20001161571|3 +821832|20001161676|3 +815393|20001161728|3 +813584|20001161987|3 +816276|20001161988|3 +820119|20001161992|3 +819889|20001161998|3 +824642|20001169040|3 +811677|20001171832|3 +707082|20001177099|3 +820589|20001181546|3 +478685|20001184077|3 +863269|20001189097|3 +811403|20001191567|3 +815848|20001191568|3 +470171|20001195087|3 +759730|20001197083|3 +819292|20001206236|3 +821541|20001206242|3 +810282|20001208927|3 +467232|20001217136|3 +820786|20001220839|3 +550755|20001225042|3 +810252|20001225262|3 +534094|20001227664|3 +707084|20001231111|3 +813387|20001245043|3 +823756|20001253336|3 +822700|20001258434|3 +815625|20001259247|3 +820784|20001271055|3 +715837|20001275361|3 +605185|20001288678|3 +820785|20001298245|3 +815703|20001303998|3 +815582|20001303999|3 +815520|20001314851|3 +626144|20001316529|3 +575232|20001319491|3 +762825|20001322593|3 +813730|20001324951|3 +878470|20001327486|3 +812278|20001345244|3 +669578|20001350880|3 +712328|20001358472|3 +811572|20001358486|3 +811919|20001358488|3 +812254|20001360773|3 +815781|20001362854|3 +470156|20001364692|3 +746677|20001365306|3 +811869|20001366203|3 +833262|20001368600|5 +811603|20001369275|3 +810688|20001382544|3 +717234|20001382800|3 +890906|20001382809|3 +822923|20001385445|3 +815698|20001386892|3 +815743|20001390184|3 +815722|20001406871|3 +695535|20001421291|3 +813732|20001421328|3 +818133|20001422230|3 +821776|20001422231|3 +823684|20001422531|3 +847493|20001436474|3 +817338|20001436513|3 +820120|20001438361|3 +890987|20001443205|3 +818696|20001445364|3 +863270|20001447323|3 +810334|20001451064|3 +773206|20001452997|3 +824301|20001455736|3 +812113|20001459322|3 +534286|20001472831|3 +811502|20001485430|3 +815934|20001491157|3 +813379|20001491973|3 +821833|20001495100|3 +824674|20001497891|3 +817544|20001501307|3 +817545|20001501308|3 +822225|20001502358|5 +818538|20001504161|3 +822029|20001509126|3 +824664|20001513106|3 +819516|20001515697|3 +815642|20001530476|3 +818100|20001531208|3 +819293|20001531227|3 +822424|20001532479|3 +705287|20001544533|3 +816418|20001558944|3 +815741|20001562549|3 +818387|20001562645|3 +817254|20001565858|3 +626172|20001565910|3 +823568|20001566912|3 +773609|20001570423|3 +459835|20001572240|3 +661740|20001573206|3 +462019|21000434916|3 +462029|21000434919|3 +467611|21000434977|3 +471605|21000435059|3 +472084|21000435061|3 +476634|21000435108|3 +476932|21000435117|3 +478979|21000435142|3 +488937|21000435279|3 +488935|21000435305|3 +820873|21000435399|3 +812449|21000435887|3 +539488|21000436215|3 +540360|21000436240|3 +541668|21000436244|3 +548020|21000436401|3 +548255|21000436415|3 +549605|21000436460|3 +551724|21000437041|3 +551725|21000437042|3 +588535|21000437071|3 +591550|21000437116|3 +597080|21000437253|3 +604686|21000437408|3 +606203|21000437434|3 +612350|21000437527|3 +624676|21000437741|3 +635640|21000437901|3 +666224|21000438305|3 +819500|21000438379|3 +671789|21000438474|3 +674036|21000438520|3 +674935|21000438540|3 +675876|21000438560|3 +689672|21000438862|3 +689660|21000438877|3 +810237|21000439053|3 +700630|21000439080|3 +710208|21000439280|3 +729927|21000439586|3 +748226|21000439910|3 +757210|21000440000|3 +763980|21000440172|3 +769086|21000440244|3 +773108|21000440324|3 +777647|21000440411|3 +777648|21000440413|3 +791905|21000440719|3 +812585|21000440932|3 +810176|21000441080|3 +810175|21000441081|3 +810235|21000441082|3 +810302|21000441085|3 +810597|21000441095|3 +810368|21000441097|3 +810933|21000441098|5 +810598|21000441099|3 +810934|21000441101|5 +825650|21000441106|5 +826355|21000441112|5 +810747|21000441119|3 +810657|21000441121|3 +811196|21000441122|3 +811554|21000441127|3 +811555|21000441128|3 +812080|21000441132|3 +812079|21000441133|3 +812450|21000441137|3 +827705|21000441139|5 +812604|21000441144|3 +812674|21000441149|3 +812482|21000441150|3 +812603|21000441153|3 +812769|21000441157|3 +812787|21000441159|3 +812794|21000441160|3 +812954|21000441161|3 +812953|21000441164|3 +813062|21000441167|3 +813072|21000441170|3 +813077|21000441171|3 +813066|21000441172|3 +813061|21000441173|3 +813180|21000441175|3 +813278|21000441177|3 +813279|21000441178|3 +813340|21000441181|3 +813351|21000441182|3 +813352|21000441183|3 +813837|21000441188|3 +814189|21000441191|3 +814202|21000441192|3 +814281|21000441193|3 +814282|21000441194|3 +815326|21000441202|3 +830501|21000441203|5 +815228|21000441206|3 +815373|21000441210|3 +815195|21000441214|3 +815313|21000441215|3 +815424|21000441216|3 +815237|21000441218|3 +815249|21000441220|3 +815575|21000441226|3 +815576|21000441227|3 +815664|21000441230|3 +815707|21000441231|3 +815578|21000441232|3 +815901|21000441234|3 +815887|21000441235|3 +815891|21000441236|3 +816009|21000441237|3 +816010|21000441238|3 +816018|21000441239|3 +816133|21000441243|3 +816151|21000441246|3 +816366|21000441251|3 +816478|21000441252|3 +817341|21000441255|3 +817480|21000441257|3 +820115|21000441262|3 +819095|21000441263|3 +834239|21000441266|7 +818507|21000441269|3 +818613|21000441270|5 +818980|21000441271|3 +820291|21000441274|3 +819501|21000441278|3 +818197|21000441288|3 +819086|21000441289|3 +819563|21000441293|3 +819758|21000441294|3 +817606|21000441295|3 +818325|21000441298|3 +818122|21000441299|3 +834806|21000441303|3 +818198|21000441304|3 +818508|21000441306|3 +817607|21000441308|3 +820537|21000441310|3 +820509|21000441311|3 +820810|21000441312|3 +835977|21000441315|5 +820663|21000441316|3 +820709|21000441317|3 +820649|21000441318|3 +820741|21000441319|3 +820958|21000441323|3 +820957|21000441324|3 +821797|21000441327|3 +821127|21000441329|3 +821563|21000441331|3 +821361|21000441332|3 +821585|21000441333|3 +821404|21000441336|3 +837623|21000441340|5 +822469|21000441341|3 +821897|21000441342|3 +822545|21000441343|3 +821359|21000441344|3 +821360|21000441345|3 +821420|21000441348|3 +821692|21000441349|3 +821291|21000441351|3 +821562|21000441352|3 +821691|21000441353|3 +822546|21000441354|3 +821126|21000441355|3 +822111|21000441357|3 +821444|21000441358|3 +837404|21000441360|5 +822001|21000441362|3 +837622|21000441366|5 +821349|21000441371|3 +822751|21000441373|3 +822936|21000441374|3 +822948|21000441377|3 +823031|21000441378|3 +823017|21000441380|3 +823795|21000441389|3 +823829|21000441390|3 +824135|21000441394|3 +824500|21000441397|3 +824994|21000441402|3 +825200|21000441403|3 +813737|21000441494|3 +846433|21000441535|3 +847389|21000441577|3 +849997|21000441632|3 +822795|21000442112|3 +879211|21000442174|3 +879520|21000442181|3 +883324|21000442233|3 +890501|21000442322|3 +890992|21000442327|3 +893004|21000442355|3 +900055|21000442468|3 +908677|21000442579|2 +813064|21000443791|3 +469764|21000444499|3 +539489|21000444780|3 +810614|21000444897|3 +820972|21000445824|3 +868559|21000446455|3 +815146|21000447779|3 +815813|21000448115|3 +815379|21000448597|3 +815287|21001015882|3 +836542|21001015890|3 +824628|21001015945|3 +478980|21001016094|3 +778507|21001016285|3 +814659|21001016341|3 +821824|21001017593|3 +597585|21001017882|3 +813500|21001029702|3 +821879|21001030778|3 +819087|21001039133|3 +837624|21001042046|5 +454726|21001043627|3 +837363|21001047668|5 +817608|21001054421|3 +821564|21001058779|3 +837401|21001061978|5 +897018|21001061999|3 +822048|21001062576|3 +566309|21001064166|3 +816019|21001069402|3 +815212|21001070281|3 +700181|21001082921|3 +581672|21001088267|3 +837625|21001090591|5 +821510|21001090597|3 +810709|21001090959|3 +825196|21001090966|3 +821893|21001095999|3 +816343|21001096678|3 +606275|21001098230|3 +824242|21001101764|3 +451238|21001103199|3 +847386|21001105725|3 +810325|21001108598|3 +613234|21001109156|3 +451239|21001110470|3 +815380|21001111336|3 +551723|21001112874|3 +788824|21001114013|3 +636182|21001115737|3 +813499|21001116408|3 +815336|21001117179|3 +822161|21001119197|3 +848187|21001126673|3 +822470|21001127915|3 +474635|21001127924|3 +820532|21001128457|3 +550650|21001129457|3 +612351|21001130324|3 +697082|21001131274|3 +812183|21001131405|3 +816388|21001137242|3 +541162|21001138243|3 +814985|21001143278|3 +820991|21001145375|3 +830650|21001146342|5 +819319|21001147256|3 +830651|21001147875|5 +815417|21001147883|3 +819096|21001151296|3 +810599|21001154052|3 +539490|21001156232|3 +622087|21001156538|3 +847387|21001157479|3 +788783|21001157565|3 +812914|21001157753|5 +813069|21001157754|3 +815418|21001157755|3 +830502|21001157756|5 +830553|21001157757|3 +830503|21001157758|5 +815381|21001157767|3 +817104|21001157769|3 +877569|21001157843|3 +706834|21001159370|3 +818433|21001160105|3 +815374|21001167917|3 +825096|21001172319|3 +810800|21001172731|3 +900206|21001175420|3 +813078|21001175553|3 +821693|21001176442|3 +825094|21001176840|3 +819759|21001177032|3 +810601|21001177383|3 +495404|21001179494|3 +810600|21001182481|3 +777847|21001186924|3 +642935|21001189386|3 +820867|21001192440|3 +822668|21001197983|3 +795759|21001199608|3 +570927|21001203384|3 +599105|21001204446|3 +818924|21001205088|3 +818689|21001205640|3 +837364|21001209170|5 +588536|21001209966|3 +820850|21001209985|3 +541669|21001214022|3 +818208|21001215301|3 +596586|21001221642|3 +782704|21001224568|3 +810401|21001227412|3 +675389|21001232842|3 +704487|21001234176|3 +822912|21001234616|3 +814280|21001234636|3 +813178|21001237842|3 +821894|21001242077|3 +811413|21001242888|3 +624882|21001243039|3 +822901|21001243148|3 +814899|21001243348|3 +824789|21001250994|3 +798257|21001251244|3 +454727|21001252488|3 +454728|21001253022|3 +834498|21001253236|5 +815632|21001255930|3 +782559|21001258514|3 +810697|21001261893|3 +710209|21001262199|3 +826340|21001262754|5 +817525|21001267088|3 +813067|21001267596|3 +819146|21001267618|5 +815196|21001274116|3 +819387|21001274388|3 +815419|21001281591|3 +526650|21001281702|3 +699410|21001282419|3 +762822|21001282667|3 +818326|21001286126|3 +810402|21001286256|3 +810323|21001286258|3 +810441|21001286259|3 +813404|21001286261|3 +821601|21001288065|3 +826278|21001289846|7 +731074|21001293191|3 +847394|21001299357|3 +818199|21001301733|3 +822112|21001302433|3 +821895|21001302787|3 +513354|21001303307|3 +822687|21001305453|3 +817980|21001307402|5 +815794|21001308566|3 +820870|21001308662|3 +811114|21001309346|3 +837626|21001310067|5 +810189|21001322508|3 +769085|21001324717|3 +583086|21001325523|3 +836499|21001327263|3 +821421|21001327859|3 +813372|21001330340|3 +606276|21001331374|3 +824261|21001340408|3 +541670|21001344790|3 +821242|21001345595|3 +592376|21001348231|3 +723408|21001348259|3 +824892|21001348353|3 +813277|21001350517|3 +824888|21001350715|3 +824889|21001350716|3 +824890|21001350717|3 +821025|21001352348|3 +821602|21001352367|3 +821928|21001352945|3 +817319|21001353060|3 +820529|21001353129|3 +819388|21001353782|3 +823571|21001353986|3 +786306|21001355400|3 +853542|21001355489|3 +752002|21001355569|3 +817909|21001356027|3 +816017|21001359848|3 +818434|21001362010|3 +820854|21001364345|3 +812467|21001366127|3 +471133|21001368125|3 +470467|21001368913|3 +815250|21001373927|3 +792357|21001374793|3 +815449|21001376051|3 +820266|21001377081|3 +822863|21001378264|3 +524483|21001380557|3 +818541|21001381103|3 +824591|21001381104|3 +592379|21001381438|3 +470468|21001381987|3 +821806|21001383122|3 +819093|21001384074|3 +824592|21001385577|3 +815256|21001385902|3 +813275|21001386799|3 +675878|21001390092|3 +822997|21001390973|3 +814283|21001393759|3 +837356|21001395826|3 +812531|21001396753|3 +823550|21001397353|3 +541744|21001399369|3 +817337|21001400732|3 +814822|21001406258|3 +823233|21001406281|3 +814531|21001409056|3 +621428|21001409103|3 +822227|21001409105|5 +815991|21001411105|3 +815141|21001412216|3 +824757|21001414789|3 +821208|21001415891|3 +604886|21001422476|3 +810738|21001423739|3 +812090|21001423743|3 +820857|21001424299|3 +825901|21001426092|5 +813776|21001426095|3 +514953|21001427893|3 +529155|21001427895|3 +836500|21001427959|3 +815513|21001430274|3 +541671|21001430644|3 +593485|21001430692|3 +821209|21001430792|3 +822162|21001432953|3 +822644|21001432955|3 +819951|21001439395|3 +599122|21001441693|3 +817981|21001441704|5 +826311|21001448554|5 +606277|21001448772|3 +782653|21001449416|3 +814223|21001450318|3 +531551|21001451003|3 +823209|21001451556|3 +813276|21001452691|3 +812536|21001453565|3 +819391|21001455593|3 +612543|21001458183|3 +825095|21001459507|3 +823803|21001460560|3 +708334|21001460907|3 +835386|21001463804|5 +825093|21001464238|3 +817532|21001465357|3 +816198|21001472928|3 +818979|21001473950|3 +818090|21001475772|3 +822163|21001475873|3 +598481|21001476687|3 +810935|21001476865|5 +822244|21001476867|5 +812955|21001478526|3 +467499|21001480181|3 +812601|21001481694|3 +823226|21001483272|3 +836501|21001485089|3 +819752|21001485383|3 +818765|21001485612|3 +822319|21001485738|3 +541598|21001488119|3 +837627|21001488190|5 +822228|21001491429|5 +813775|21001491694|3 +467629|21001493142|3 +835387|21001494619|5 +814949|21001495269|3 +812644|21001497243|3 +782701|21001497656|3 +814945|21001497996|3 +837628|21001498153|5 +810602|21001501028|3 +836538|21001501800|3 +822832|21001502354|3 +469765|21001502417|3 +451269|21001503796|3 +821880|21001509634|3 +620082|21001512463|3 +634490|21001515629|3 +821292|21001516151|3 +821881|21001516373|3 +810796|21001520140|3 +812798|21001520592|3 +835970|21001521151|5 +818971|21001521550|3 +816347|21001522135|3 +769098|21001531503|3 +825193|21001532121|3 +810603|21001534062|3 +830554|21001534124|3 +811290|21001539886|3 +815197|21001543951|3 +810936|21001545051|5 +672731|21001545087|3 +817910|21001545149|3 +896020|21001548427|3 +470178|21001548472|3 +821825|21001549025|3 +815302|21001555505|3 +470179|21001556182|3 +501643|21001561085|3 +821565|21001561704|3 +815362|21001565047|3 +488955|21001566947|3 +592380|21001569269|3 +822229|21001569933|5 +836502|21001570748|3 +815831|21001572254|3 +826312|21001575272|5 +822230|21001576446|5 +706829|21001576940|3 +821934|21001576942|3 +540378|22000500596|3 +539213|22000500597|3 +540377|22000500598|3 +540379|22000500602|3 +540380|22000500605|3 +675925|22000500829|3 +704088|22000500880|3 +771491|22000501016|3 +771492|22000501020|3 +773558|22000501024|3 +810218|22000501143|3 +810207|22000501145|3 +811318|22000501149|3 +811972|22000501151|3 +813960|22000501153|3 +815296|22000501155|3 +818257|22000501159|3 +817678|22000501161|3 +851897|22000501196|3 +819858|22000502024|3 +835243|22001285960|7 +811973|22001370537|3 +824169|22001371355|3 +779609|22001394892|3 +485394|22001417498|3 +811562|22001424037|3 +817941|22001458605|3 +818256|22001493606|3 +540383|22001497997|3 +635440|22001526232|3 +469751|23000533043|3 +470484|23000533048|3 +472432|23000533105|3 +472334|23000533112|3 +473484|23000533128|3 +853529|23000533153|3 +476782|23000533177|3 +476934|23000533184|3 +479976|23000533235|3 +824584|23000533305|3 +485704|23000533379|3 +489050|23000533448|3 +489053|23000533465|3 +491304|23000533529|3 +499155|23000533729|3 +507205|23000533946|3 +509004|23000534000|3 +533898|23000534695|3 +539214|23000534831|3 +539215|23000534833|3 +539711|23000534849|3 +539395|23000534850|3 +541446|23000534855|3 +539738|23000534859|3 +541447|23000534860|3 +541448|23000534872|3 +539216|23000534873|3 +539712|23000534892|3 +541449|23000534896|3 +540361|23000534912|3 +540374|23000534917|3 +544853|23000535000|3 +547204|23000535068|3 +554434|23000535240|3 +559234|23000535355|3 +821114|23000535418|3 +562686|23000535424|3 +570830|23000535602|3 +591787|23000536041|3 +591842|23000536064|3 +591925|23000536067|3 +592377|23000536090|3 +605056|23000536459|3 +612328|23000536622|3 +617583|23000536770|3 +617736|23000536777|3 +620729|23000536895|3 +624486|23000536963|3 +624636|23000536966|3 +635636|23000537181|3 +634587|23000537195|3 +635637|23000537208|3 +637289|23000537262|3 +651790|23000537585|3 +665836|23000537897|3 +665837|23000537898|3 +672276|23000538079|3 +675590|23000538167|3 +679486|23000538276|3 +689360|23000538624|3 +689665|23000538640|3 +693129|23000538734|3 +693288|23000538737|3 +824601|23000538907|3 +706831|23000539059|3 +890567|23000539358|3 +728699|23000539653|3 +730678|23000539683|3 +462437|23000539804|3 +746680|23000540100|3 +758925|23000540325|3 +759877|23000540356|3 +762877|23000540463|3 +769065|23000540602|3 +769077|23000540603|3 +769080|23000540604|3 +771502|23000540728|3 +774708|23000540841|3 +777535|23000540941|3 +779050|23000540986|3 +783607|23000541166|3 +789408|23000541279|3 +789409|23000541280|3 +792309|23000541352|3 +797854|23000541572|3 +801657|23000541713|3 +821405|23000541926|3 +810223|23000541936|3 +810246|23000541938|3 +810287|23000541939|3 +810256|23000541940|3 +810272|23000541942|3 +810265|23000541943|3 +810524|23000541944|3 +811024|23000541945|3 +810316|23000541946|3 +810360|23000541949|3 +810695|23000541955|3 +810359|23000541956|3 +810872|23000541961|3 +810508|23000541962|3 +810523|23000541963|3 +810706|23000541964|3 +811344|23000541966|3 +811286|23000541967|3 +811450|23000541970|3 +811451|23000541971|3 +811539|23000541972|3 +811681|23000541977|3 +811916|23000541978|3 +811884|23000541980|3 +811737|23000541983|3 +811741|23000541985|3 +811799|23000541986|3 +811953|23000541988|3 +811954|23000541989|3 +811957|23000541991|3 +811991|23000541993|3 +812043|23000541994|3 +812037|23000541995|3 +812038|23000541996|3 +812040|23000541997|3 +812036|23000541998|3 +812223|23000542000|3 +812433|23000542004|3 +812578|23000542005|3 +812712|23000542007|3 +812474|23000542009|3 +812498|23000542013|3 +812774|23000542016|3 +812804|23000542017|3 +812835|23000542018|3 +812911|23000542021|3 +812898|23000542024|3 +812896|23000542025|3 +812899|23000542026|3 +813006|23000542028|3 +813217|23000542029|3 +813232|23000542030|3 +813257|23000542033|3 +813409|23000542034|3 +813422|23000542035|3 +813410|23000542036|3 +813487|23000542037|3 +813489|23000542038|3 +813497|23000542039|3 +813496|23000542040|3 +813648|23000542041|3 +813624|23000542042|3 +813719|23000542044|3 +813712|23000542045|3 +813891|23000542047|3 +813874|23000542049|3 +813913|23000542051|3 +813914|23000542053|3 +813958|23000542055|3 +814128|23000542059|3 +814165|23000542062|3 +814429|23000542066|3 +814430|23000542067|3 +814458|23000542068|3 +814675|23000542069|3 +814674|23000542070|3 +814694|23000542071|3 +814692|23000542072|3 +814898|23000542074|3 +814906|23000542075|3 +814933|23000542076|3 +815232|23000542081|3 +815410|23000542083|3 +815284|23000542084|3 +815225|23000542085|3 +815175|23000542086|3 +815348|23000542087|3 +476663|23000542088|3 +815626|23000542090|3 +815649|23000542091|3 +815638|23000542092|3 +815694|23000542093|3 +815552|23000542095|3 +815553|23000542097|3 +815536|23000542098|3 +815695|23000542099|3 +815771|23000542100|3 +815772|23000542101|3 +816195|23000542104|3 +816395|23000542107|3 +816394|23000542108|3 +816404|23000542110|3 +816610|23000542111|3 +817273|23000542116|3 +817392|23000542119|3 +817401|23000542120|3 +817460|23000542121|3 +817527|23000542124|3 +817531|23000542125|3 +817521|23000542126|3 +819401|23000542127|3 +817856|23000542130|3 +819953|23000542132|3 +818697|23000542135|3 +818632|23000542139|3 +817612|23000542140|3 +818250|23000542143|3 +818752|23000542145|3 +820016|23000542152|3 +818159|23000542157|3 +818753|23000542159|3 +832794|23000542161|7 +817880|23000542166|3 +818633|23000542167|3 +832795|23000542169|7 +819941|23000542172|3 +818160|23000542173|3 +819125|23000542177|5 +818532|23000542178|3 +817642|23000542184|3 +818792|23000542185|3 +818793|23000542187|3 +818251|23000542189|3 +832796|23000542190|7 +833679|23000542191|3 +832833|23000542192|5 +819126|23000542199|5 +818916|23000542200|3 +818751|23000542201|3 +817725|23000542203|3 +819841|23000542205|3 +832834|23000542206|5 +817726|23000542208|3 +819942|23000542209|3 +818252|23000542210|3 +818161|23000542211|3 +819244|23000542212|3 +818162|23000542214|3 +818794|23000542215|3 +834687|23000542216|5 +835245|23000542224|7 +835246|23000542228|7 +818698|23000542230|3 +818163|23000542231|3 +834686|23000542233|5 +818164|23000542235|3 +835247|23000542237|7 +817727|23000542238|3 +819954|23000542241|3 +819245|23000542242|3 +819246|23000542244|3 +819247|23000542245|3 +820511|23000542251|3 +820811|23000542252|3 +820561|23000542255|3 +820708|23000542256|3 +820782|23000542257|3 +820739|23000542258|3 +820713|23000542260|3 +820790|23000542261|3 +820890|23000542263|3 +820896|23000542264|3 +820916|23000542265|3 +820927|23000542266|3 +820928|23000542267|3 +821059|23000542270|3 +822055|23000542273|3 +821249|23000542274|3 +837388|23000542279|3 +821834|23000542283|3 +837389|23000542284|3 +836703|23000542286|5 +822343|23000542287|3 +836390|23000542288|7 +821554|23000542291|3 +822082|23000542296|3 +821872|23000542297|3 +821740|23000542298|3 +822044|23000542300|3 +822089|23000542304|3 +822865|23000542307|3 +822939|23000542308|3 +822940|23000542310|3 +822736|23000542311|3 +822874|23000542313|3 +822941|23000542315|3 +822954|23000542316|3 +822782|23000542318|3 +822976|23000542320|3 +822797|23000542321|3 +823363|23000542324|3 +823357|23000542325|3 +823359|23000542326|3 +823361|23000542327|3 +823867|23000542330|3 +824008|23000542335|3 +824009|23000542336|3 +824018|23000542337|3 +824232|23000542343|3 +824198|23000542344|3 +824199|23000542345|3 +824293|23000542346|3 +824167|23000542348|3 +824420|23000542351|3 +824532|23000542353|3 +824566|23000542354|3 +824567|23000542355|3 +824568|23000542356|3 +824822|23000542357|3 +824823|23000542358|3 +824826|23000542359|3 +825027|23000542360|3 +825050|23000542361|3 +825037|23000542362|3 +825044|23000542363|3 +825154|23000542366|3 +825170|23000542367|3 +825137|23000542368|3 +846096|23000542528|3 +846430|23000542538|3 +846097|23000542542|3 +847444|23000542548|3 +847445|23000542573|3 +848190|23000542595|3 +853530|23000542778|3 +852847|23000542785|3 +853531|23000542801|3 +853532|23000542805|3 +865616|23000543140|3 +866270|23000543160|3 +880170|23000543493|3 +883812|23000543584|3 +822636|23000543727|3 +891097|23000543735|3 +890568|23000543743|3 +892607|23000543792|3 +908655|23000544119|2 +908665|23000544120|2 +820523|23000544303|3 +812637|23000544832|3 +847190|23000545327|3 +817991|23000545408|3 +758930|23000546617|3 +809622|23000547104|3 +782396|23000547780|3 +818590|23000552869|3 +591548|23001012057|3 +689666|23001012551|3 +812563|23001013034|3 +812624|23001013038|3 +817643|23001013049|3 +824401|23001013087|3 +862903|23001018030|5 +819403|23001018040|3 +812863|23001018174|3 +820540|23001019878|3 +813273|23001022416|3 +617986|23001022563|3 +820267|23001025945|3 +818690|23001037287|3 +817644|23001041462|3 +820606|23001042459|3 +821982|23001044760|3 +759878|23001045902|3 +820761|23001054509|3 +883317|23001063940|3 +816717|23001064281|5 +818795|23001064284|3 +822681|23001064286|3 +469455|23001069670|3 +663890|23001069949|3 +810443|23001073889|3 +824655|23001079894|3 +820889|23001080090|3 +823314|23001082481|3 +824233|23001082819|3 +824160|23001084256|3 +833005|23001085437|5 +837631|23001085445|5 +824138|23001090381|3 +814920|23001092817|3 +537537|23001092903|3 +820891|23001094205|3 +815773|23001094596|3 +730680|23001099348|3 +818824|23001100497|3 +816566|23001102173|5 +816785|23001105903|3 +813492|23001107973|3 +813342|23001108729|3 +475532|23001108905|3 +818172|23001109799|3 +819054|23001109967|3 +769078|23001114172|3 +673686|23001120194|3 +757178|23001120244|3 +824168|23001120297|3 +823772|23001121119|3 +544854|23001124996|3 +818626|23001129425|5 +853694|23001130069|3 +818825|23001131065|3 +811903|23001134264|3 +823661|23001139034|3 +815350|23001159275|3 +816393|23001159294|3 +592364|23001162303|3 +816408|23001162834|3 +819378|23001162837|5 +819379|23001162840|5 +821448|23001163308|3 +810250|23001163600|3 +824092|23001167040|3 +820609|23001171163|3 +539733|23001177689|3 +833678|23001178425|3 +824150|23001180985|3 +818253|23001186669|3 +868119|23001186671|3 +769066|23001194944|3 +825126|23001195377|3 +566024|23001195607|3 +476935|23001199852|3 +812500|23001209953|3 +822381|23001210330|3 +815344|23001210375|3 +812185|23001210956|3 +451256|23001214717|3 +820539|23001218333|3 +814902|23001218870|3 +818734|23001218874|3 +818173|23001218876|3 +836388|23001218955|7 +821744|23001218956|3 +823445|23001218957|3 +818254|23001219547|3 +811651|23001220493|3 +823767|23001221246|3 +814695|23001223593|3 +815622|23001224504|3 +823258|23001224989|3 +822304|23001224997|3 +823133|23001225664|3 +818255|23001228067|3 +771481|23001228236|3 +541600|23001230514|3 +818691|23001233390|3 +823132|23001235058|3 +773208|23001236087|3 +813391|23001240485|3 +810317|23001242736|3 +811449|23001242813|3 +814013|23001243406|3 +779051|23001254249|3 +826347|23001255289|5 +812039|23001255599|3 +815391|23001258348|3 +811025|23001264449|3 +541601|23001267708|3 +599124|23001272343|3 +812041|23001272540|3 +817721|23001272542|3 +820913|23001272803|3 +822943|23001274369|3 +822079|23001278661|3 +810068|23001280911|3 +824819|23001282395|3 +707083|23001285875|3 +810318|23001285920|3 +780708|23001291013|3 +810866|23001291276|3 +812629|23001298455|3 +821489|23001298522|3 +811466|23001298817|3 +681910|23001299422|3 +818264|23001299446|3 +823768|23001299559|3 +822831|23001299560|3 +818735|23001302886|3 +539734|23001304241|3 +815342|23001304244|3 +822944|23001304427|3 +788806|23001304747|3 +472310|23001309933|3 +689722|23001311913|3 +812695|23001314644|3 +719524|23001317580|3 +613936|23001318830|3 +818151|23001322337|3 +811959|23001322904|3 +814693|23001322905|3 +853734|23001326429|3 +820458|23001327270|3 +637290|23001327585|3 +497605|23001328125|3 +777741|23001329795|3 +822826|23001334417|3 +836389|23001343603|7 +818016|23001344971|3 +792307|23001349727|3 +488995|23001356077|3 +832835|23001356480|5 +819943|23001357952|3 +821498|23001362719|3 +825029|23001362980|3 +596636|23001363049|3 +838288|23001363815|5 +823289|23001364783|3 +527041|23001365182|3 +787993|23001367293|3 +818247|23001369850|3 +823801|23001370778|3 +819249|23001371802|3 +822113|23001375908|3 +820740|23001376753|3 +812044|23001377089|3 +812042|23001380007|3 +880669|23001383675|3 +821293|23001387051|3 +817461|23001388134|3 +819375|23001390941|5 +812346|23001391231|3 +822471|23001392355|3 +544845|23001393318|3 +862890|23001393938|5 +810274|23001394563|3 +853723|23001396107|3 +813328|23001397444|3 +819931|23001397876|3 +818746|23001400116|3 +591535|23001401221|3 +819250|23001402622|3 +788739|23001403639|3 +810990|23001404575|5 +817722|23001405258|3 +815365|23001407643|3 +719138|23001408638|3 +821033|23001412772|3 +813896|23001416830|3 +539210|23001424854|3 +539713|23001424994|3 +820110|23001427197|3 +823137|23001427215|3 +814713|23001439172|3 +817735|23001440490|3 +825561|23001441104|5 +821062|23001441130|3 +896320|23001441788|3 +819932|23001443460|3 +822945|23001444075|3 +821449|23001444639|3 +823899|23001445059|3 +815034|23001445934|3 +822056|23001446622|3 +819933|23001446623|3 +826292|23001447436|7 +811022|23001448890|3 +817205|23001454667|3 +822540|23001454668|3 +883318|23001454720|3 +824531|23001459055|3 +780153|23001459778|3 +575484|23001462632|3 +824017|23001464248|3 +853695|23001465990|3 +626179|23001466485|3 +810283|23001466809|3 +810266|23001468276|3 +822344|23001468475|3 +812999|23001469272|3 +824003|23001471791|3 +815162|23001476381|3 +823991|23001476382|3 +797855|23001478317|3 +810855|23001478320|3 +818747|23001483355|3 +728698|23001485109|3 +810395|23001485140|3 +731075|23001486453|3 +825934|23001496814|3 +821386|23001497062|3 +825248|23001499954|7 +819376|23001501377|5 +825241|23001509685|7 +812623|23001509686|3 +817536|23001509696|3 +821055|23001509700|3 +823262|23001509704|3 +823279|23001509705|3 +823296|23001510036|3 +814014|23001511209|3 +815793|23001511505|3 +825240|23001513300|7 +812100|23001514841|3 +823875|23001517986|3 +821442|23001518399|3 +635452|23001519500|3 +813483|23001521093|3 +823057|23001522329|3 +816396|23001523335|3 +824024|23001523338|3 +825254|23001526286|7 +817094|23001526287|3 +823583|23001526292|3 +823280|23001528578|3 +816411|23001530239|3 +812432|23001530417|3 +823865|23001530539|3 +673684|23001534918|3 +811977|23001534955|3 +647040|23001535746|3 +815167|23001537123|3 +541443|23001537712|3 +815178|23001538997|3 +815450|23001539011|3 +673685|23001539268|3 +820283|23001539755|3 +812557|23001540889|3 +835259|23001540894|7 +798250|23001542289|3 +812566|23001545729|3 +488944|23001546209|3 +812101|23001546958|3 +771102|23001551628|3 +817095|23001551637|3 +751136|23001555106|3 +811494|23001558282|3 +811429|23001558291|3 +811430|23001558292|3 +817516|23001560614|3 +815264|23001562284|3 +836702|23001562892|5 +824827|23001564102|3 +557833|23001567792|3 +534755|23001574260|3 +749575|23001576008|3 +771503|23001576916|3 +451273|24000622107|3 +458685|24000622340|3 +464335|24000622502|3 +467479|24000622564|3 +467433|24000622567|3 +467628|24000622576|3 +469770|24000622644|3 +469771|24000622652|3 +470172|24000622665|3 +470819|24000622722|3 +470820|24000622723|3 +474680|24000622889|3 +479977|24000623089|3 +486353|24000623338|3 +547205|24000623481|3 +491005|24000623517|3 +492255|24000623563|3 +506702|24000623983|3 +507533|24000623998|3 +512049|24000624121|3 +517504|24000624323|3 +459785|24000624376|3 +522355|24000624482|3 +530252|24000624725|3 +533896|24000624864|3 +533897|24000624866|3 +639429|24000624872|3 +539714|24000625014|3 +541657|24000625037|3 +541658|24000625058|3 +541183|24000625074|3 +544846|24000625186|3 +552778|24000625390|3 +552779|24000625394|3 +552226|24000625403|3 +818361|24000625473|3 +557882|24000625615|3 +557782|24000625622|3 +557783|24000625625|3 +557883|24000625631|3 +557784|24000625635|3 +559380|24000625695|3 +562386|24000625865|3 +563483|24000625979|3 +563484|24000625982|3 +812655|24000626401|3 +587436|24000626938|3 +596634|24000627389|3 +601484|24000627540|3 +820503|24000627720|3 +611932|24000627891|3 +612537|24000627908|3 +613672|24000627949|3 +616935|24000628063|3 +619435|24000628144|3 +622135|24000628189|3 +624181|24000628232|3 +624678|24000628248|3 +625936|24000628305|3 +626175|24000628312|3 +626176|24000628315|3 +626180|24000628318|3 +626184|24000628324|3 +626182|24000628328|3 +626187|24000628348|3 +626189|24000628351|3 +626190|24000628352|3 +629840|24000628405|3 +632290|24000628514|3 +637685|24000628735|3 +639639|24000628846|3 +640480|24000628878|3 +652690|24000629158|3 +652239|24000629478|3 +660940|24000629894|3 +661290|24000629943|3 +669574|24000630367|3 +669575|24000630383|3 +679854|24000630610|3 +699488|24000631189|3 +700184|24000631230|3 +700185|24000631236|3 +700125|24000631243|3 +709836|24000631548|3 +712877|24000631642|3 +824408|24000631808|3 +725010|24000631987|3 +726168|24000632011|3 +726169|24000632016|3 +737278|24000632410|3 +738479|24000632483|3 +744130|24000632809|3 +748012|24000632954|3 +773205|24000633586|3 +786300|24000633863|3 +791488|24000633954|3 +794857|24000634042|3 +797507|24000634092|3 +797843|24000634096|3 +810085|24000634553|3 +810180|24000634554|3 +810877|24000634560|3 +810865|24000634562|3 +810793|24000634563|3 +811164|24000634566|3 +826291|24000634567|7 +810976|24000634571|3 +810975|24000634573|3 +810522|24000634575|3 +811265|24000634581|3 +811244|24000634583|3 +811213|24000634587|3 +811354|24000634589|3 +811355|24000634591|3 +811686|24000634597|3 +812247|24000634605|3 +812349|24000634607|3 +812370|24000634608|3 +812369|24000634610|3 +812412|24000634612|3 +812413|24000634613|3 +812562|24000634615|3 +812772|24000634617|3 +813007|24000634619|3 +813243|24000634625|3 +813357|24000634627|3 +813445|24000634628|3 +813558|24000634630|3 +813578|24000634631|3 +813559|24000634632|3 +813601|24000634633|3 +813684|24000634637|3 +813708|24000634638|3 +813911|24000634646|3 +814093|24000634647|3 +814146|24000634648|3 +814178|24000634650|3 +814205|24000634651|3 +814197|24000634652|3 +814306|24000634654|3 +814381|24000634655|3 +814380|24000634657|3 +814468|24000634659|3 +814644|24000634661|3 +814600|24000634662|3 +814937|24000634664|3 +815001|24000634665|3 +815383|24000634669|3 +815651|24000634675|3 +815863|24000634677|3 +815924|24000634678|3 +815925|24000634679|3 +816011|24000634680|3 +816044|24000634682|3 +816098|24000634684|3 +816114|24000634686|3 +816100|24000634688|3 +816106|24000634689|3 +816101|24000634691|3 +816232|24000634693|3 +816253|24000634694|3 +816248|24000634695|3 +817052|24000634697|3 +817313|24000634701|3 +817260|24000634703|3 +817261|24000634704|3 +817414|24000634708|3 +817487|24000634710|3 +817844|24000634716|3 +817699|24000634719|3 +819934|24000634723|3 +819320|24000634725|3 +818748|24000634726|3 +834072|24000634730|5 +820191|24000634734|3 +834301|24000634735|5 +817575|24000634736|3 +835244|24000634739|7 +818975|24000634745|3 +818472|24000634746|3 +818591|24000634747|3 +820111|24000634750|3 +818201|24000634754|3 +820720|24000634758|3 +820622|24000634760|3 +820943|24000634764|3 +820980|24000634767|3 +821001|24000634769|3 +821063|24000634773|3 +821038|24000634774|3 +821443|24000634779|3 +821505|24000634780|3 +836644|24000634781|5 +821715|24000634782|3 +821539|24000634783|3 +822156|24000634784|3 +837667|24000634785|7 +837607|24000634791|5 +821553|24000634795|3 +821540|24000634798|3 +822675|24000634799|3 +822731|24000634803|3 +823128|24000634804|3 +823102|24000634805|3 +822994|24000634806|3 +822765|24000634807|3 +822937|24000634810|3 +822853|24000634812|3 +822846|24000634813|3 +822942|24000634816|3 +822737|24000634817|3 +823215|24000634821|3 +823288|24000634822|3 +823269|24000634823|3 +823624|24000634825|3 +823429|24000634827|3 +823491|24000634828|3 +823483|24000634829|3 +823625|24000634830|3 +824120|24000634835|3 +824212|24000634839|3 +824223|24000634841|3 +824255|24000634842|3 +824402|24000634847|3 +824512|24000634848|3 +846434|24000635011|3 +847393|24000635046|3 +862892|24000635433|5 +862898|24000635434|5 +862917|24000635449|5 +862916|24000635452|5 +862920|24000635463|5 +865460|24000635491|3 +865617|24000635633|3 +870167|24000635766|3 +870316|24000635779|3 +870309|24000635782|3 +877570|24000635967|3 +877515|24000635969|3 +890989|24000636327|3 +895970|24000636470|3 +750427|24000636618|3 +901391|24000636652|3 +749023|24000637118|3 +817410|24000639350|3 +700573|24000641401|3 +700126|24000641621|3 +862899|24000646079|5 +816485|24000646701|3 +812793|24000648241|3 +814938|24001012816|3 +469457|24001016729|3 +559385|24001023167|3 +816247|24001023168|3 +835385|24001027220|5 +813153|24001027809|3 +814254|24001033879|3 +698952|24001036218|3 +813156|24001036858|3 +823188|24001046080|3 +501646|24001046228|3 +897713|24001046866|3 +817652|24001047541|3 +692230|24001055956|3 +810886|24001056292|3 +814642|24001062939|3 +734074|24001069577|3 +811612|24001070052|3 +511955|24001073989|3 +473374|24001083047|3 +817274|24001084744|3 +892608|24001086177|3 +823992|24001087643|3 +812874|24001089018|3 +813613|24001092090|3 +812234|24001097756|3 +772906|24001101187|3 +824729|24001101190|3 +820981|24001103059|3 +821120|24001105335|3 +752330|24001107737|3 +862895|24001108493|5 +817307|24001109178|3 +815004|24001112946|3 +698970|24001113525|3 +463821|24001114715|3 +575175|24001115299|3 +541602|24001116230|3 +752257|24001116455|3 +811969|24001116469|3 +649040|24001116997|3 +555529|24001117025|3 +812364|24001119091|3 +612574|24001119151|3 +827005|24001119588|3 +823183|24001119589|3 +453185|24001119718|3 +643790|24001120873|3 +838286|24001122966|5 +821068|24001123941|3 +748013|24001125344|3 +672723|24001125417|3 +453827|24001133835|3 +751998|24001136227|3 +825220|24001137803|7 +813741|24001137831|3 +815372|24001146163|3 +788818|24001148595|3 +822995|24001148632|3 +823653|24001148665|3 +612547|24001149038|3 +557785|24001149697|3 +822537|24001165808|3 +812057|24001166588|3 +451275|24001168426|3 +812944|24001168715|3 +822714|24001168786|3 +814431|24001170422|3 +817903|24001170423|3 +814998|24001172594|3 +784548|24001173804|3 +554136|24001178684|3 +581484|24001187929|3 +813143|24001197989|3 +816187|24001198268|3 +823103|24001201759|3 +813455|24001208858|3 +813452|24001208859|3 +822875|24001208864|3 +817315|24001209810|3 +862891|24001209902|5 +823426|24001213968|3 +541596|24001219072|3 +812158|24001219174|3 +813705|24001219176|3 +834854|24001219178|5 +818248|24001219180|3 +810822|24001222790|3 +599859|24001227401|3 +541194|24001227938|3 +729997|24001228480|3 +789048|24001232604|3 +846531|24001233300|3 +813742|24001236122|3 +897720|24001236124|3 +788797|24001237734|3 +478884|24001240101|3 +834037|24001240682|3 +612532|24001243034|3 +815770|24001243418|3 +814350|24001245122|3 +818939|24001245123|3 +769659|24001246246|3 +614536|24001247580|3 +811219|24001249078|3 +812023|24001251593|3 +564628|24001252702|3 +620086|24001254574|3 +814481|24001254789|3 +837616|24001257754|5 +816160|24001258353|3 +464468|24001258860|3 +825116|24001259245|3 +539735|24001259825|3 +451274|24001260386|3 +812877|24001260556|3 +816570|24001265233|3 +813614|24001265339|3 +814470|24001270226|3 +786303|24001283271|3 +824379|24001286413|3 +471450|24001286453|3 +611924|24001286514|3 +810217|24001289366|3 +789047|24001292096|3 +811378|24001292102|3 +489068|24001295764|3 +489069|24001297586|3 +813587|24001301192|3 +689362|24001301620|3 +822538|24001301825|3 +812602|24001303310|3 +613934|24001309977|3 +810840|24001315020|3 +853628|24001319824|3 +748014|24001321794|3 +862909|24001322139|5 +806520|24001324352|3 +834883|24001326000|5 +813899|24001326095|3 +698836|24001326268|3 +818940|24001326408|3 +812766|24001327381|3 +816254|24001327382|3 +817887|24001327469|3 +816701|24001328784|3 +578686|24001333141|3 +812410|24001333385|3 +811319|24001336574|3 +821064|24001337707|3 +819196|24001340428|3 +815179|24001342747|3 +821745|24001343731|3 +812211|24001346408|3 +592980|24001347201|3 +615834|24001349234|3 +812212|24001356381|3 +825018|24001356937|3 +823240|24001358773|3 +835253|24001366166|7 +824256|24001369035|3 +729998|24001370190|3 +820802|24001372105|3 +612539|24001372277|3 +706833|24001372964|3 +817877|24001374980|3 +823994|24001375928|3 +816850|24001376517|3 +810442|24001380522|3 +814467|24001381142|3 +811338|24001383381|3 +811476|24001384736|3 +832844|24001384858|5 +821683|24001389201|3 +663289|24001390448|3 +812029|24001391239|3 +709123|24001391643|3 +811532|24001392503|3 +820391|24001396720|3 +699338|24001397953|3 +752316|24001397955|3 +878415|24001400922|3 +816293|24001403957|3 +824213|24001403967|3 +822672|24001404394|3 +901016|24001404404|3 +810615|24001406352|3 +818241|24001408626|3 +814293|24001408932|3 +817031|24001410170|3 +693130|24001410444|3 +816278|24001412270|3 +729993|24001413633|3 +598627|24001413683|3 +814196|24001413720|3 +797759|24001420194|3 +806318|24001420654|3 +816629|24001420811|3 +536653|24001422482|3 +816226|24001422544|3 +816571|24001423120|3 +820923|24001423122|3 +824380|24001423123|3 +819936|24001423787|3 +815368|24001423956|3 +824384|24001427725|3 +609582|24001429500|3 +607635|24001431111|3 +690318|24001432571|3 +729992|24001432577|3 +814188|24001432589|3 +817252|24001432992|3 +814204|24001439815|3 +463960|24001440100|3 +811297|24001440104|3 +810202|24001441951|3 +823290|24001441952|3 +820350|24001445276|5 +824680|24001447184|3 +834879|24001447483|5 +820583|24001449105|3 +510755|24001453375|3 +818941|24001454404|3 +819935|24001454411|3 +622081|24001454524|3 +821552|24001454969|3 +541704|24001456001|3 +824679|24001456806|3 +728980|24001458981|3 +748015|24001463397|3 +786106|24001464046|3 +815645|24001465329|3 +823263|24001466510|3 +810288|24001466673|3 +815416|24001467095|3 +820902|24001469844|3 +822671|24001471456|3 +668189|24001473151|3 +816252|24001474891|3 +825151|24001475088|3 +816843|24001475634|3 +672724|24001482690|3 +814190|24001483569|3 +816387|24001483571|3 +823690|24001483574|3 +812024|24001490122|3 +812411|24001490123|3 +820469|24001493374|3 +541728|24001493425|3 +816523|24001493494|5 +690319|24001494908|3 +866970|24001495263|3 +825056|24001495801|3 +509251|24001495912|3 +816400|24001497098|3 +552786|24001498144|3 +680869|24001502599|3 +823512|24001505981|3 +823387|24001505983|3 +823105|24001507397|3 +817733|24001511958|3 +820394|24001516311|3 +816584|24001516553|3 +825023|24001518243|3 +814541|24001518609|3 +823456|24001520189|3 +836395|24001520219|7 +815756|24001520325|3 +812006|24001522657|3 +816522|24001524496|3 +816831|24001526222|3 +820906|24001526402|3 +814594|24001527162|3 +811835|24001528694|3 +814319|24001529150|3 +814553|24001533758|3 +813686|24001536602|3 +812409|24001536714|3 +580884|24001539193|3 +812375|24001540439|3 +559331|24001541150|3 +609583|24001545086|3 +816816|24001551539|3 +812676|24001552493|3 +749007|24001553311|3 +822844|24001555964|3 +824341|24001556741|3 +810407|24001556746|3 +815000|24001557407|3 +811687|24001557506|3 +789037|24001557536|3 +814599|24001557556|3 +750424|24001559023|3 +810977|24001559025|5 +815227|24001559519|3 +817155|24001559902|3 +820129|24001560043|3 +722018|24001563321|3 +813107|24001567285|3 +824382|24001568130|3 +813872|24001569048|3 +817845|24001571568|3 +485360|24001571816|3 +470180|25000648536|3 +470181|25000648538|3 +476785|25000648595|3 +509405|25000649024|3 +813041|25000649143|3 +526698|25000649304|3 +550740|25000649591|3 +551454|25000649605|3 +570845|25000649783|3 +596135|25000650080|3 +599981|25000650098|3 +602284|25000650124|3 +612352|25000650200|3 +616179|25000650292|3 +635450|25000650504|3 +672187|25000650916|3 +672189|25000650933|3 +678590|25000651082|3 +821036|25000651161|3 +814406|25000651339|3 +710108|25000651363|3 +711738|25000651392|3 +712037|25000651393|3 +729915|25000651591|3 +743826|25000651741|3 +810301|25000652480|3 +810867|25000652483|3 +810498|25000652485|3 +810465|25000652489|3 +825753|25000652490|7 +810656|25000652491|3 +826274|25000652492|7 +810353|25000652493|3 +810978|25000652494|5 +826289|25000652496|7 +811472|25000652499|3 +811426|25000652500|3 +811650|25000652501|3 +811585|25000652502|3 +811826|25000652503|3 +811798|25000652505|3 +811871|25000652506|3 +812107|25000652509|3 +812108|25000652510|3 +812305|25000652514|3 +823916|25000652516|3 +812304|25000652517|3 +812951|25000652523|3 +812952|25000652524|3 +813844|25000652526|3 +813937|25000652528|3 +813931|25000652529|3 +814161|25000652531|3 +814160|25000652533|3 +814157|25000652534|3 +814162|25000652536|3 +814154|25000652538|3 +814950|25000652540|3 +815739|25000652547|3 +816484|25000652553|3 +816488|25000652554|3 +817356|25000652555|3 +817369|25000652556|3 +819238|25000652559|3 +835704|25000652561|5 +819859|25000652562|3 +818660|25000652564|3 +820533|25000652567|3 +819239|25000652569|3 +819104|25000652570|3 +818260|25000652572|3 +820042|25000652577|3 +818426|25000652578|3 +818661|25000652580|3 +833942|25000652582|5 +819860|25000652584|3 +819406|25000652585|3 +819005|25000652586|3 +818228|25000652588|3 +818662|25000652589|3 +819407|25000652590|3 +818073|25000652591|3 +820630|25000652596|3 +820920|25000652598|3 +820947|25000652599|3 +820952|25000652601|3 +821048|25000652611|3 +821032|25000652612|3 +837653|25000652613|5 +821734|25000652614|3 +836936|25000652615|7 +821304|25000652617|3 +821898|25000652618|3 +822595|25000652620|5 +821380|25000652621|3 +822830|25000652625|3 +822938|25000652627|3 +823122|25000652628|3 +823490|25000652630|3 +823432|25000652631|3 +824101|25000652635|3 +824053|25000652637|3 +824040|25000652638|3 +824048|25000652639|3 +824049|25000652640|3 +824054|25000652642|3 +824055|25000652643|3 +824074|25000652644|3 +824050|25000652645|3 +824104|25000652647|3 +824084|25000652649|3 +824606|25000652651|3 +824607|25000652652|3 +825102|25000652654|3 +825136|25000652655|3 +846739|25000652742|3 +870812|25000653166|3 +883155|25000653438|3 +883853|25000653448|3 +883808|25000653450|3 +889719|25000653604|3 +889706|25000653608|3 +889720|25000653618|3 +862905|25000653636|5 +900057|25000653697|3 +824059|25001019960|3 +823509|25001029400|3 +821077|25001030106|3 +821039|25001030108|3 +821050|25001030111|3 +823447|25001030113|3 +823489|25001051567|3 +824046|25001055698|3 +500053|25001071626|3 +526305|25001072442|3 +626188|25001076529|3 +672725|25001076555|3 +849697|25001077628|3 +812501|25001083534|3 +814193|25001087383|3 +824603|25001091517|3 +482180|25001106238|3 +814038|25001107317|3 +873620|25001112917|3 +824056|25001113837|3 +820806|25001115690|3 +777808|25001120238|3 +777809|25001120489|3 +823040|25001122603|3 +712019|25001127306|3 +734076|25001127336|3 +569436|25001140082|3 +760721|25001162141|3 +814097|25001162209|3 +824100|25001162310|3 +517446|25001163854|3 +824617|25001170126|3 +821009|25001170470|3 +556284|25001172898|3 +836423|25001195949|5 +824051|25001196322|3 +822281|25001200407|3 +838290|25001200409|5 +824604|25001207721|3 +820824|25001210961|3 +517605|25001216024|3 +817317|25001216075|3 +570916|25001222375|3 +820807|25001230700|3 +474772|25001232753|3 +813023|25001233280|3 +816007|25001235224|3 +672188|25001236962|3 +539798|25001278395|3 +822709|25001279521|3 +669569|25001285122|3 +686071|25001287200|3 +813048|25001307312|3 +672278|25001307663|3 +811646|25001309035|3 +812642|25001313917|3 +824057|25001315708|3 +812325|25001319119|3 +821078|25001319120|3 +877017|25001327866|3 +824608|25001330646|3 +748992|25001331030|3 +688922|25001334480|3 +813909|25001340751|3 +814411|25001342152|3 +812347|25001349205|3 +812406|25001361357|3 +820949|25001361519|3 +613635|25001363110|3 +811947|25001364974|3 +818589|25001366748|3 +883308|25001368769|3 +819197|25001368933|3 +822276|25001369508|3 +482385|25001371098|3 +824894|25001376815|3 +837601|25001378758|5 +810349|25001384903|3 +818427|25001391675|3 +818074|25001421052|3 +818976|25001422252|3 +479974|25001425275|3 +813054|25001430046|3 +811597|25001436363|3 +833941|25001440434|5 +836497|25001440983|3 +820921|25001446131|3 +812405|25001447387|3 +812341|25001449481|3 +826290|25001454963|7 +812416|25001454964|3 +712038|25001456511|3 +812099|25001460067|3 +470182|25001460489|3 +814412|25001460494|3 +820948|25001463362|3 +817368|25001466387|3 +634489|25001469001|3 +821808|25001469415|3 +609671|25001469960|3 +820935|25001477906|3 +787995|25001480358|3 +787996|25001483089|3 +822915|25001488314|3 +822710|25001491255|3 +810655|25001491585|3 +810739|25001503890|3 +820937|25001504933|3 +812103|25001507144|3 +821646|25001510098|3 +672190|25001511076|3 +812691|25001511077|3 +837602|25001514915|5 +814529|25001516870|3 +812552|25001518709|3 +842032|25001520523|3 +825751|25001520699|7 +823039|25001535786|3 +813235|25001535857|3 +814682|25001536298|3 +552770|25001539629|3 +847390|25001554893|3 +820990|25001557078|3 +479972|25001560797|3 +812055|25001562558|3 +701688|25001562790|3 +811792|25001563307|3 +612530|25001564124|3 +883854|25001566696|3 +818822|25001566766|3 +820925|25001567998|3 +815678|25001569975|3 +822776|25001573495|3 +836498|25001574405|3 +451253|26000324926|3 +452635|26000324958|3 +456660|26000325077|3 +456666|26000325079|3 +819770|26000325126|3 +462183|26000325281|3 +462445|26000325286|3 +462446|26000325294|3 +819767|26000325308|3 +463815|26000325352|3 +466173|26000325490|3 +470157|26000325591|3 +470133|26000325600|3 +471616|26000325642|3 +471463|26000325678|3 +472885|26000325702|3 +483835|26000326142|3 +485381|26000326221|3 +485382|26000326222|3 +485387|26000326223|3 +485384|26000326224|3 +485386|26000326225|3 +814021|26000326264|3 +487003|26000326283|3 +489065|26000326340|3 +489066|26000326347|3 +794957|26000326843|3 +501645|26000326949|3 +502043|26000326967|3 +467489|26000327085|3 +505553|26000327160|3 +507237|26000327225|3 +507590|26000327238|3 +511405|26000327398|3 +511398|26000327399|3 +511399|26000327401|3 +511850|26000327453|3 +512395|26000327483|3 +512484|26000327513|3 +514455|26000327605|3 +515355|26000327638|3 +798459|26000327670|3 +521249|26000327901|3 +541156|26000328026|3 +524347|26000328049|3 +524348|26000328054|3 +525581|26000328092|3 +526855|26000328160|3 +531548|26000328407|3 +536605|26000328585|3 +540373|26000328715|3 +541659|26000328721|3 +541182|26000328725|3 +539937|26000328751|3 +540055|26000328783|3 +541660|26000328816|3 +539938|26000328818|3 +539939|26000328819|3 +542855|26000328873|3 +550649|26000329181|3 +550632|26000329182|3 +550737|26000329200|3 +552769|26000329276|3 +553478|26000329317|3 +557485|26000329455|3 +825038|26000329472|3 +564630|26000329691|3 +566336|26000329765|3 +835254|26000329770|7 +568334|26000329856|3 +570731|26000329951|3 +570732|26000329954|3 +570917|26000329955|3 +571883|26000330002|3 +571866|26000330021|3 +575182|26000330159|3 +590035|26000330696|3 +591935|26000330728|3 +592372|26000330750|3 +592373|26000330754|3 +592286|26000330768|3 +597422|26000330963|3 +598636|26000331042|3 +607470|26000331365|3 +609674|26000331440|3 +609676|26000331458|3 +609570|26000331468|3 +612533|26000331542|3 +834905|26000331564|5 +612534|26000331583|3 +612597|26000331585|3 +613931|26000331649|3 +614736|26000331666|3 +621684|26000331917|3 +622136|26000331920|3 +621585|26000331922|3 +633932|26000332535|3 +635560|26000332563|3 +639427|26000332781|3 +648860|26000333108|3 +655770|26000333374|3 +817192|26000333504|3 +489082|26000333582|3 +664890|26000333642|3 +667631|26000333772|3 +673687|26000334063|3 +674931|26000334125|3 +675870|26000334178|3 +684971|26000334562|3 +686918|26000334652|3 +687515|26000334662|3 +690335|26000334786|3 +810667|26000334878|3 +693286|26000334887|3 +693364|26000334892|3 +693287|26000334894|3 +694438|26000334935|3 +698953|26000335132|3 +698954|26000335136|3 +698428|26000335148|3 +698955|26000335173|3 +698587|26000335177|3 +698965|26000335184|3 +699419|26000335209|3 +699286|26000335214|3 +820284|26000335256|3 +706821|26000335470|3 +706822|26000335475|3 +711482|26000335688|3 +797755|26000335782|3 +714236|26000335850|3 +714087|26000335853|3 +714225|26000335860|3 +714686|26000335910|3 +715834|26000335986|3 +722887|26000336259|3 +722884|26000336261|3 +846521|26000336371|3 +725123|26000336372|3 +726162|26000336433|3 +727578|26000336493|3 +729756|26000336581|3 +728982|26000336587|3 +729718|26000336595|3 +737274|26000336896|3 +757980|26000336955|3 +470814|26000336964|3 +743529|26000337114|3 +747722|26000337297|3 +748171|26000337337|3 +748172|26000337343|3 +748169|26000337347|3 +748690|26000337374|3 +748173|26000337379|3 +749009|26000337394|3 +748174|26000337413|3 +749055|26000337421|3 +748170|26000337422|3 +749008|26000337424|3 +749056|26000337426|3 +749057|26000337432|3 +749058|26000337456|3 +749059|26000337460|3 +750425|26000337507|3 +750275|26000337583|3 +752020|26000337630|3 +751575|26000337639|3 +752175|26000337652|3 +752009|26000337654|3 +756572|26000337853|3 +757216|26000337873|3 +758107|26000337900|3 +758108|26000337903|3 +760179|26000337977|3 +760828|26000337987|3 +771490|26000338413|3 +771501|26000338414|3 +771918|26000338450|3 +772806|26000338494|3 +773604|26000338525|3 +786301|26000338978|3 +789038|26000339042|3 +789158|26000339045|3 +787989|26000339061|3 +789015|26000339067|3 +789159|26000339071|3 +789757|26000339098|3 +791557|26000339171|3 +792351|26000339191|3 +803308|26000339618|3 +805397|26000339677|3 +805396|26000339678|3 +821989|26000339790|3 +825250|26000339798|7 +810088|26000339799|3 +810171|26000339801|3 +810177|26000339802|3 +810219|26000339803|3 +826313|26000339807|5 +810939|26000339810|3 +810344|26000339811|3 +811210|26000339815|3 +810331|26000339816|3 +810485|26000339817|3 +810984|26000339819|5 +811000|26000339825|3 +810471|26000339826|3 +810835|26000339827|3 +811176|26000339829|3 +810643|26000339830|3 +810969|26000339836|3 +810985|26000339838|5 +810720|26000339843|3 +810582|26000339850|3 +811229|26000339852|3 +811242|26000339853|3 +811271|26000339854|3 +811346|26000339857|3 +811347|26000339858|3 +811321|26000339859|3 +811329|26000339861|3 +811288|26000339862|3 +811543|26000339869|3 +811604|26000339872|3 +811656|26000339873|3 +811914|26000339875|3 +811807|26000339876|3 +811859|26000339877|3 +811915|26000339879|3 +811868|26000339880|3 +811944|26000339884|3 +811943|26000339886|3 +811937|26000339887|3 +811956|26000339888|3 +812111|26000339890|3 +812392|26000339894|3 +812517|26000339895|3 +812492|26000339896|3 +812751|26000339897|3 +812471|26000339899|3 +812771|26000339900|3 +812784|26000339903|3 +812797|26000339904|3 +812775|26000339905|3 +812776|26000339906|3 +812839|26000339907|3 +812852|26000339908|3 +812872|26000339910|3 +812973|26000339914|3 +812984|26000339915|3 +812981|26000339916|3 +812983|26000339917|3 +812979|26000339918|3 +813049|26000339921|3 +813037|26000339922|3 +813038|26000339923|3 +813043|26000339925|3 +813137|26000339927|3 +813134|26000339928|3 +813259|26000339938|3 +813291|26000339939|3 +813299|26000339940|3 +813287|26000339941|3 +813293|26000339942|3 +813289|26000339944|3 +813303|26000339945|3 +813317|26000339946|3 +813314|26000339948|3 +813448|26000339951|3 +813449|26000339952|3 +813466|26000339953|3 +813467|26000339954|3 +813590|26000339960|3 +813562|26000339963|3 +813639|26000339964|3 +813642|26000339965|3 +813683|26000339967|3 +813699|26000339968|3 +813707|26000339969|3 +813721|26000339971|3 +828955|26000339972|3 +813723|26000339973|3 +813717|26000339974|3 +813738|26000339975|3 +813792|26000339982|3 +814082|26000339986|3 +814063|26000339987|3 +814052|26000339990|3 +814137|26000339994|3 +814141|26000339996|3 +814138|26000339997|3 +814143|26000339998|3 +814444|26000340005|3 +814446|26000340006|3 +814436|26000340007|3 +814447|26000340008|3 +814439|26000340009|3 +814513|26000340012|3 +814542|26000340015|3 +814494|26000340018|3 +814489|26000340019|3 +814651|26000340020|3 +814737|26000340021|3 +814740|26000340022|3 +814755|26000340023|3 +814771|26000340024|3 +814787|26000340025|3 +814801|26000340027|3 +814814|26000340029|3 +814797|26000340033|3 +814929|26000340038|3 +814928|26000340039|3 +814930|26000340040|3 +814997|26000340041|3 +815006|26000340044|3 +815009|26000340045|3 +815011|26000340046|3 +815076|26000340047|3 +815140|26000340049|3 +815190|26000340051|3 +815422|26000340052|3 +830645|26000340053|5 +815215|26000340054|3 +815757|26000340064|3 +815840|26000340065|3 +816047|26000340073|3 +816052|26000340076|3 +816056|26000340077|3 +816059|26000340078|3 +816057|26000340079|3 +816111|26000340080|3 +816150|26000340081|3 +816222|26000340082|3 +816221|26000340083|3 +816217|26000340084|3 +816240|26000340087|3 +816244|26000340089|3 +816263|26000340090|3 +816314|26000340092|5 +816300|26000340093|3 +816289|26000340095|3 +816489|26000340105|3 +816481|26000340107|3 +816589|26000340109|3 +816696|26000340111|3 +816552|26000340113|3 +816840|26000340115|3 +816601|26000340116|3 +817107|26000340117|3 +817139|26000340119|3 +817154|26000340122|3 +817301|26000340124|3 +817258|26000340125|3 +817408|26000340128|3 +817448|26000340129|3 +819252|26000340132|3 +817833|26000340136|3 +818242|26000340139|3 +820454|26000340146|3 +819781|26000340149|3 +817846|26000340154|3 +817777|26000340157|3 +819253|26000340165|3 +818336|26000340167|3 +819582|26000340169|3 +817847|26000340170|3 +819907|26000340172|3 +820125|26000340173|3 +819094|26000340180|3 +818415|26000340181|3 +818942|26000340194|3 +818337|26000340196|3 +817823|26000340198|3 +834828|26000340203|5 +818421|26000340204|3 +818995|26000340209|3 +833263|26000340210|5 +818338|26000340212|3 +817738|26000340216|3 +817848|26000340217|3 +817878|26000340220|3 +820268|26000340222|3 +817849|26000340223|3 +818092|26000340229|3 +818416|26000340231|3 +820684|26000340238|3 +820614|26000340242|5 +820680|26000340243|3 +820572|26000340248|3 +820563|26000340249|3 +820574|26000340250|3 +820627|26000340252|3 +820801|26000340253|3 +820613|26000340256|3 +820575|26000340257|3 +820746|26000340261|3 +820859|26000340263|3 +820884|26000340265|3 +820882|26000340266|3 +820883|26000340268|3 +820971|26000340269|3 +821000|26000340273|3 +820994|26000340274|3 +821082|26000340276|3 +821067|26000340277|3 +821550|26000340279|3 +821827|26000340281|3 +821229|26000340282|3 +837613|26000340283|5 +821992|26000340285|3 +821397|26000340286|3 +821263|26000340287|3 +836355|26000340289|7 +821308|26000340290|3 +836447|26000340296|5 +822052|26000340300|3 +821828|26000340301|3 +822215|26000340302|5 +821195|26000340303|3 +837554|26000340310|3 +823012|26000340313|3 +822920|26000340315|3 +822770|26000340317|3 +822699|26000340319|3 +823021|26000340320|3 +822990|26000340321|3 +822947|26000340322|3 +822727|26000340324|3 +823037|26000340325|3 +823007|26000340326|3 +822991|26000340328|3 +823038|26000340329|3 +823196|26000340331|3 +838454|26000340334|7 +823252|26000340336|3 +823588|26000340338|3 +823529|26000340340|3 +823475|26000340341|3 +823530|26000340342|3 +823589|26000340345|3 +823541|26000340346|3 +823695|26000340347|3 +823527|26000340348|3 +823393|26000340350|3 +823430|26000340352|3 +823505|26000340354|3 +823732|26000340357|3 +823995|26000340364|3 +824078|26000340367|3 +824180|26000340369|3 +824228|26000340371|3 +824144|26000340373|3 +824195|26000340374|3 +824332|26000340377|3 +824331|26000340378|3 +824329|26000340379|3 +824336|26000340380|3 +824605|26000340389|3 +824728|26000340392|3 +824771|26000340393|3 +824818|26000340395|3 +824842|26000340398|3 +824947|26000340400|3 +824954|26000340401|3 +825015|26000340404|3 +825011|26000340405|3 +825157|26000340408|3 +825158|26000340409|3 +825182|26000340411|3 +825140|26000340416|3 +825183|26000340420|3 +825152|26000340421|3 +825167|26000340423|3 +825124|26000340424|3 +825201|26000340433|3 +825202|26000340434|3 +846442|26000340685|3 +846166|26000340695|3 +846144|26000340698|3 +847496|26000340728|3 +852797|26000340954|3 +853741|26000340989|3 +853742|26000340992|3 +856387|26000341104|3 +856344|26000341110|3 +870315|26000341706|3 +872866|26000341838|3 +613932|26000341913|3 +875563|26000342017|3 +879210|26000342152|3 +883158|26000342342|3 +883152|26000342344|3 +890820|26000342726|3 +893115|26000342773|3 +893015|26000342786|3 +893016|26000342820|3 +900048|26000343028|3 +900258|26000343066|3 +900239|26000343068|3 +900049|26000343069|3 +899716|26000343085|3 +899962|26000343095|3 +900237|26000343105|3 +900949|26000343142|3 +901179|26000343163|3 +901190|26000343170|3 +811130|26000344300|3 +822581|26000345008|3 +748687|26000345979|3 +820455|26000346073|3 +819768|26000346997|3 +817181|26000348997|3 +536648|26000349411|3 +819908|26000349674|3 +820522|26000351618|3 +820661|26000352172|3 +824230|26000352948|3 +814221|26000353902|3 +824773|26000353941|3 +877516|26000354911|3 +816757|26000355841|3 +868557|26000356631|3 +814554|26001001985|3 +520055|26001002025|3 +762624|26001002046|3 +810089|26001002122|3 +663889|26001002253|3 +726163|26001002267|3 +471355|26001002308|3 +819055|26001002337|3 +723381|26001002464|3 +729672|26001003059|3 +789022|26001004220|3 +811180|26001004246|3 +612598|26001004664|3 +814172|26001004690|3 +834897|26001005060|5 +834384|26001005418|5 +777537|26001007250|3 +788787|26001007380|3 +823476|26001007726|3 +813796|26001007736|3 +825030|26001008282|3 +621531|26001008467|3 +628640|26001008580|3 +517199|26001008592|3 +820269|26001008776|3 +728981|26001008911|3 +748011|26001008933|3 +751400|26001008961|3 +772807|26001009024|3 +810744|26001009063|3 +810470|26001009064|3 +810378|26001009065|3 +813695|26001009068|3 +815849|26001009069|3 +817062|26001009070|3 +823186|26001009076|3 +824038|26001009077|3 +824436|26001009080|3 +824841|26001009081|3 +875564|26001009106|3 +883718|26001009116|3 +814424|26001009213|3 +822896|26001009220|3 +900234|26001009241|3 +771935|26001009481|3 +559226|26001016117|3 +825245|26001017719|7 +815667|26001018865|3 +729994|26001019094|3 +819304|26001021003|3 +814140|26001021042|3 +893017|26001021045|3 +714285|26001021047|3 +814448|26001022302|3 +573785|26001022537|3 +816491|26001023953|3 +815002|26001024003|3 +813549|26001024134|3 +671284|26001024418|3 +751267|26001024475|3 +825045|26001024517|3 +469776|26001025350|3 +823800|26001028009|3 +813451|26001028104|3 +814776|26001028344|3 +697888|26001028617|3 +814593|26001029229|3 +727229|26001029242|3 +823835|26001029552|3 +471449|26001030522|3 +840475|26001030971|3 +818353|26001037827|3 +813468|26001038285|3 +729629|26001038286|3 +814583|26001038874|3 +833674|26001039734|3 +812715|26001040610|3 +698826|26001041045|3 +609571|26001042203|3 +818112|26001043035|3 +756573|26001044081|3 +824243|26001045395|3 +821875|26001045927|3 +818729|26001046288|3 +815659|26001048874|3 +526649|26001048913|3 +709124|26001049040|3 +822996|26001050390|3 +748688|26001051525|3 +752235|26001054391|3 +782700|26001054633|3 +736573|26001054664|3 +541685|26001058732|3 +833733|26001060219|3 +507235|26001063223|3 +824116|26001063479|3 +711534|26001065128|3 +810197|26001068038|3 +789039|26001068044|3 +698588|26001070870|3 +816280|26001071732|3 +835485|26001072006|5 +714227|26001072026|3 +814194|26001072545|3 +820700|26001072578|3 +820192|26001072785|3 +813248|26001076319|3 +485385|26001077212|3 +818452|26001077217|3 +877517|26001077769|3 +788798|26001078793|3 +667590|26001078916|3 +818339|26001081938|3 +812137|26001082065|3 +816123|26001083468|3 +817919|26001083881|3 +899963|26001083883|3 +901389|26001085930|3 +814438|26001086978|3 +610636|26001087398|3 +752322|26001087406|3 +811322|26001088067|3 +462455|26001088437|3 +819303|26001089068|3 +788788|26001089127|3 +540603|26001092429|3 +811206|26001093262|3 +815003|26001093821|3 +824323|26001093846|3 +856388|26001094619|3 +472784|26001095620|3 +571867|26001097946|3 +822695|26001097971|3 +698832|26001098386|3 +900520|26001099627|3 +823566|26001099630|3 +824777|26001099633|3 +889713|26001099850|3 +823243|26001100544|3 +815600|26001101035|3 +815696|26001101041|3 +818340|26001101123|3 +632769|26001102070|3 +820570|26001103566|3 +810753|26001104852|3 +819451|26001104901|3 +811398|26001105764|3 +816793|26001106151|3 +900235|26001106509|3 +812391|26001107225|3 +810669|26001107770|3 +823662|26001108160|3 +813576|26001108211|3 +818419|26001112320|5 +811230|26001113011|3 +820616|26001113020|3 +714228|26001114017|3 +621571|26001117829|3 +471604|26001119625|3 +814139|26001121921|3 +810987|26001122060|5 +813285|26001122081|3 +823545|26001122088|3 +823778|26001122089|3 +823775|26001122198|3 +899717|26001122267|3 +816236|26001122743|3 +564635|26001122928|3 +570823|26001123169|3 +818996|26001123616|3 +709122|26001124066|3 +862911|26001124767|5 +789016|26001125143|3 +541686|26001127332|3 +814548|26001127342|3 +823689|26001128383|3 +817645|26001129269|3 +813715|26001130122|3 +474135|26001130325|3 +890999|26001132597|3 +759279|26001133515|3 +823777|26001134534|3 +820275|26001136092|3 +611422|26001136247|3 +469450|26001136249|3 +638040|26001136337|3 +748689|26001136419|3 +813469|26001137720|3 +814926|26001138363|3 +612346|26001140961|3 +810754|26001141836|3 +823581|26001141947|3 +836647|26001142958|5 +815609|26001143010|3 +816271|26001143011|3 +833725|26001143013|3 +813292|26001143427|3 +752323|26001143437|3 +747679|26001143483|3 +821464|26001144255|3 +811231|26001145202|3 +541687|26001145524|3 +471418|26001145640|3 +622128|26001145929|3 +813575|26001145935|3 +609436|26001146085|3 +824955|26001146122|3 +751153|26001146661|3 +749168|26001146715|3 +816241|26001147310|3 +812726|26001149857|3 +792338|26001149960|3 +812786|26001150175|3 +476181|26001150698|3 +823564|26001150979|3 +788789|26001151957|3 +812770|26001152678|3 +812931|26001160936|3 +575180|26001161030|3 +800198|26001161041|3 +728702|26001161067|3 +476182|26001161081|3 +900946|26001161635|3 +812677|26001161935|3 +819769|26001161977|3 +710935|26001162220|3 +751137|26001162350|3 +456661|26001162367|3 +813961|26001162388|3 +834097|26001162390|5 +901184|26001162411|3 +714229|26001162492|3 +900951|26001162865|3 +467228|26001163077|3 +820681|26001163083|3 +813286|26001163139|3 +812796|26001163149|3 +816229|26001163242|3 +900050|26001163318|3 +597535|26001163550|3 +749049|26001163619|3 +617385|26001165665|3 +822582|26001167844|3 +824154|26001171006|3 +824278|26001171071|3 +810745|26001174372|3 +489083|26001174684|3 +814660|26001174817|3 +671483|26001176062|3 +814003|26001176072|3 +823297|26001177043|3 +517200|26001178064|3 +893005|26001179225|3 +714279|26001179252|3 +813793|26001179623|3 +812493|26001179992|3 +730828|26001180282|3 +900051|26001182184|3 +688921|26001182782|3 +900052|26001182971|3 +818629|26001183351|5 +820682|26001184083|3 +823685|26001184614|3 +810755|26001185261|3 +752021|26001185463|3 +711337|26001186131|3 +485383|26001186383|3 +823687|26001187059|3 +813560|26001187634|3 +534104|26001187665|3 +816233|26001188388|3 +825075|26001188714|3 +632890|26001189551|3 +814582|26001189558|3 +815856|26001189648|3 +816242|26001190116|3 +612599|26001190719|3 +812380|26001191891|3 +822866|26001193749|3 +900236|26001193993|3 +817264|26001195194|3 +812443|26001195899|3 +571868|26001196080|3 +814625|26001198054|3 +833726|26001199488|3 +528905|26001199615|3 +893018|26001200009|3 +694437|26001201179|3 +524349|26001201738|3 +815951|26001201919|3 +810608|26001202091|3 +815921|26001202093|3 +813690|26001202942|3 +802208|26001204451|3 +813318|26001204463|3 +824117|26001204470|3 +899718|26001204487|3 +515801|26001204662|3 +748175|26001205041|3 +823472|26001205112|3 +813126|26001206133|3 +813121|26001206139|3 +814568|26001208230|3 +510605|26001209172|3 +814449|26001209660|3 +814730|26001209661|3 +812795|26001210987|3 +816676|26001211304|3 +749169|26001213126|3 +817824|26001213193|3 +812906|26001214370|3 +687516|26001214452|3 +671482|26001214498|3 +823639|26001215752|3 +749171|26001215956|3 +820669|26001215984|3 +632329|26001216711|3 +698957|26001216841|3 +815587|26001216847|3 +749170|26001218081|3 +816456|26001218746|3 +820904|26001218747|3 +821570|26001218849|3 +641981|26001219814|3 +687517|26001219933|3 +463968|26001220029|3 +655039|26001221791|3 +688171|26001221905|3 +819276|26001222157|3 +824956|26001223562|3 +814647|26001223709|3 +818093|26001224236|3 +655771|26001225329|3 +693367|26001226504|3 +870317|26001226989|3 +812382|26001227359|3 +813618|26001228719|3 +471611|26001229014|3 +599986|26001231031|3 +815061|26001231574|3 +787990|26001231580|3 +495298|26001232096|3 +716987|26001232563|3 +471612|26001234128|3 +729630|26001234629|3 +687368|26001235202|3 +726230|26001236275|3 +821254|26001236279|3 +599636|26001237421|3 +699281|26001237668|3 +821118|26001238584|3 +819181|26001240555|3 +752314|26001240722|3 +612600|26001240742|3 +700582|26001240941|3 +451247|26001241328|3 +822196|26001241597|3 +816370|26001242342|3 +751268|26001242587|3 +748691|26001242688|3 +751401|26001242691|3 +492799|26001242815|3 +816763|26001242870|3 +810589|26001243229|3 +814653|26001244140|3 +811942|26001244762|3 +817180|26001245184|3 +824358|26001245526|3 +552633|26001245659|3 +792352|26001245822|3 +812372|26001247337|3 +463967|26001247594|3 +751154|26001247595|3 +814673|26001248310|3 +814626|26001249358|3 +817176|26001249507|3 +559360|26001249859|3 +817789|26001251889|3 +751974|26001252998|3 +821454|26001253161|3 +784551|26001253169|3 +821551|26001253802|3 +749274|26001253860|3 +817884|26001253886|3 +823446|26001254041|3 +671478|26001254495|3 +749010|26001255025|3 +725129|26001255042|3 +814927|26001255364|3 +816557|26001255754|3 +822867|26001256267|3 +900947|26001256701|3 +853632|26001257363|3 +810762|26001258237|3 +714231|26001258266|3 +815713|26001259056|3 +811021|26001259199|5 +655040|26001259205|3 +539354|26001260788|3 +817177|26001261661|3 +899964|26001261924|3 +817483|26001262011|3 +814669|26001262535|3 +810568|26001262612|3 +814745|26001264482|3 +814970|26001264696|3 +471464|26001264702|3 +489072|26001264712|3 +463959|26001264867|3 +892915|26001266864|3 +609572|26001267203|3 +648864|26001267629|3 +552784|26001267898|3 +610431|26001268505|3 +877518|26001268509|3 +893019|26001269729|3 +777655|26001270341|3 +823565|26001272199|3 +461935|26001272634|3 +825153|26001272641|3 +823764|26001272765|3 +826352|26001273768|5 +489084|26001273790|3 +822708|26001274085|3 +609669|26001274111|3 +612312|26001274174|3 +817230|26001274186|3 +811716|26001274540|3 +822949|26001274930|3 +817183|26001275977|3 +749050|26001276544|3 +833727|26001276574|3 +812378|26001276692|3 +749053|26001277025|3 +819725|26001277922|3 +812922|26001279006|3 +812202|26001279362|3 +812384|26001281071|3 +815972|26001282049|3 +814523|26001282063|3 +712288|26001283292|3 +817087|26001284124|3 +812357|26001284163|3 +814793|26001287070|3 +471613|26001287149|3 +816611|26001291448|3 +471614|26001292134|3 +612605|26001292609|3 +816994|26001293207|3 +612531|26001294549|3 +821658|26001294553|3 +814274|26001294852|3 +814587|26001295047|3 +816825|26001295104|3 +835248|26001295133|7 +813556|26001295213|3 +819776|26001295679|3 +810350|26001295977|3 +591936|26001296159|3 +569879|26001296921|3 +814550|26001297539|3 +810876|26001297630|3 +834689|26001299010|5 +821087|26001299292|3 +817456|26001299769|3 +821024|26001299794|3 +815134|26001300072|3 +816774|26001300707|3 +749051|26001302633|3 +814749|26001303087|3 +816742|26001303530|3 +816526|26001303531|3 +550254|26001304172|3 +893116|26001304181|3 +564834|26001304866|3 +751402|26001304876|3 +812402|26001305120|3 +512489|26001305371|3 +814510|26001305458|3 +899965|26001305498|3 +816040|26001305513|3 +748102|26001305521|3 +812385|26001306458|3 +470146|26001306463|3 +711523|26001307200|3 +889709|26001307777|3 +749052|26001309298|3 +552785|26001311160|3 +818399|26001311629|3 +846142|26001311790|3 +698830|26001312581|3 +612601|26001312612|3 +856697|26001312784|3 +834852|26001312877|5 +816750|26001313374|3 +463961|26001314734|3 +812091|26001315235|3 +711481|26001315380|3 +815657|26001316071|3 +559370|26001317341|3 +525582|26001317825|3 +812518|26001317958|3 +815958|26001318338|3 +823162|26001320362|3 +485372|26001320410|3 +811375|26001320597|3 +811550|26001320701|3 +751269|26001320941|3 +819031|26001321095|3 +646140|26001321359|3 +816743|26001322149|3 +820526|26001322308|3 +812138|26001322996|3 +824340|26001322997|3 +816868|26001323236|3 +489085|26001323490|3 +825019|26001324573|3 +643386|26001325329|3 +609673|26001325601|3 +540604|26001327360|3 +698833|26001328399|3 +812376|26001328406|3 +822674|26001328830|3 +749011|26001330867|3 +812777|26001331172|3 +810999|26001331211|3 +471465|26001331229|3 +824395|26001331255|3 +823990|26001331261|3 +541690|26001331263|3 +822657|26001332516|3 +812503|26001332538|3 +814482|26001333138|3 +618836|26001333895|3 +489048|26001334330|3 +821226|26001334584|3 +645140|26001335358|3 +725124|26001336280|3 +465678|26001337888|3 +607469|26001340324|3 +714280|26001340734|3 +787954|26001341097|3 +821590|26001341239|3 +675938|26001343839|3 +740180|26001345302|3 +451284|26001345817|3 +463931|26001345879|3 +578735|26001345925|3 +816798|26001346226|3 +810649|26001346261|3 +813573|26001346273|3 +823388|26001347240|3 +748176|26001347269|3 +612535|26001347310|3 +823849|26001347323|3 +817295|26001347335|3 +606281|26001347356|3 +705282|26001348511|3 +613670|26001348851|3 +632777|26001348984|3 +712036|26001349315|3 +750323|26001349369|3 +813574|26001349404|3 +816978|26001349406|3 +812923|26001349407|3 +811379|26001349584|3 +822083|26001349599|3 +822496|26001349600|3 +821409|26001349602|3 +822497|26001349603|3 +822771|26001349605|3 +823257|26001349607|3 +751576|26001350133|3 +748121|26001351105|3 +471615|26001351429|3 +821227|26001352371|3 +849442|26001352441|3 +729995|26001352468|3 +819489|26001353804|3 +813755|26001354842|3 +749172|26001354843|3 +824958|26001354856|3 +632334|26001356088|3 +812417|26001356665|3 +812759|26001356667|3 +816272|26001357242|3 +813304|26001357313|3 +818236|26001357314|3 +823459|26001357929|3 +812161|26001358386|3 +813620|26001358720|3 +815982|26001360382|3 +813305|26001361406|3 +849197|26001361851|3 +821939|26001361944|3 +752022|26001362226|3 +835249|26001362392|7 +787991|26001362552|3 +564835|26001362590|3 +817287|26001363445|3 +525604|26001364908|3 +463820|26001365858|3 +752317|26001366020|3 +471617|26001366619|3 +728880|26001367153|3 +612588|26001367614|3 +748099|26001367623|3 +792353|26001367637|3 +690022|26001367845|3 +665139|26001367894|3 +749013|26001368889|3 +752000|26001369203|3 +815327|26001369683|3 +816124|26001369905|3 +699530|26001370230|3 +811895|26001370820|3 +840472|26001370831|3 +820621|26001371807|3 +748122|26001373120|3 +810090|26001373596|3 +899719|26001373604|3 +810758|26001373977|3 +645785|26001374698|3 +823095|26001374985|3 +570733|26001375032|3 +752324|26001375054|3 +814652|26001376715|3 +823224|26001377365|3 +817355|26001377466|3 +812030|26001378856|3 +877508|26001379005|3 +899619|26001379449|3 +814751|26001380374|3 +669571|26001380779|3 +812408|26001380785|3 +540052|26001381001|3 +749012|26001381032|3 +817102|26001381664|3 +879195|26001381673|3 +813300|26001382814|3 +823178|26001386278|3 +824746|26001386991|3 +699415|26001387360|3 +814437|26001387385|3 +814440|26001388175|3 +820685|26001388176|3 +811377|26001391230|3 +814588|26001391242|3 +817834|26001391296|3 +748100|26001391402|3 +813583|26001391436|3 +813439|26001391717|3 +626150|26001392742|3 +901191|26001393108|3 +815766|26001393631|3 +824058|26001393639|3 +752325|26001394674|3 +812743|26001395225|3 +814734|26001395705|3 +813688|26001396363|3 +816379|26001396794|3 +812395|26001396926|3 +749576|26001397207|3 +665585|26001397889|3 +762278|26001398855|3 +744129|26001399296|3 +813301|26001399310|3 +821968|26001399366|3 +749024|26001399380|3 +829805|26001399382|5 +758069|26001399495|3 +748692|26001399510|3 +714281|26001399809|3 +748123|26001401941|3 +728894|26001403210|3 +819452|26001403402|3 +751270|26001403817|3 +613671|26001404656|3 +789040|26001404691|3 +634488|26001405298|3 +599127|26001405926|3 +816363|26001406413|3 +540053|26001406957|3 +824688|26001407573|3 +810159|26001407841|3 +749063|26001408930|3 +624180|26001411038|3 +711533|26001411215|3 +813296|26001411235|3 +816653|26001411236|3 +671788|26001411250|3 +749014|26001412236|3 +724628|26001412866|3 +698820|26001413603|3 +752023|26001414281|3 +757078|26001414285|3 +817915|26001414516|3 +573786|26001414822|3 +823085|26001415559|3 +813585|26001417102|3 +823174|26001418565|3 +525583|26001418683|3 +655287|26001418967|3 +711479|26001420058|3 +814954|26001420158|3 +748124|26001420221|3 +822280|26001420233|3 +825226|26001420400|7 +818630|26001420460|5 +824194|26001420465|3 +729757|26001421634|3 +811008|26001421704|3 +812112|26001421705|3 +817770|26001421706|3 +838652|26001423488|7 +464282|26001425023|3 +814465|26001425067|3 +471618|26001425535|3 +752171|26001425573|3 +816749|26001425593|3 +823204|26001425595|3 +821396|26001425859|3 +812920|26001426732|3 +812919|26001426736|3 +811374|26001427572|3 +823460|26001429759|3 +901361|26001430040|3 +671285|26001431004|3 +609670|26001432342|3 +817831|26001432448|3 +667633|26001432548|3 +822634|26001433062|3 +816832|26001433063|3 +813557|26001433065|3 +540054|26001433404|3 +667390|26001434218|3 +569880|26001435718|3 +823048|26001435743|3 +760477|26001435902|3 +813306|26001435936|3 +815481|26001435938|3 +788799|26001437730|3 +814441|26001437736|3 +816376|26001439643|3 +822738|26001439867|3 +814522|26001440121|3 +748220|26001440843|3 +811495|26001441564|3 +728703|26001442244|3 +723400|26001442719|3 +812374|26001442723|3 +559371|26001443111|3 +698821|26001443484|3 +878418|26001443509|3 +825105|26001443969|3 +671286|26001445371|3 +671473|26001445500|3 +463969|26001445815|3 +810554|26001445864|3 +814559|26001446310|3 +824283|26001446730|3 +813527|26001447215|3 +743530|26001448031|3 +901182|26001448746|3 +817112|26001449878|3 +470433|26001450102|3 +773209|26001450267|3 +749015|26001450411|3 +816659|26001450967|3 +817201|26001451164|3 +823537|26001451168|3 +810439|26001451434|3 +817646|26001451727|3 +890806|26001452697|3 +714218|26001452875|3 +771759|26001453203|3 +759280|26001453815|3 +818809|26001454076|3 +821278|26001455377|3 +792354|26001455829|3 +794958|26001456210|3 +814323|26001456763|3 +749729|26001456916|3 +599585|26001457062|3 +819396|26001458482|3 +900246|26001458735|3 +811993|26001459861|3 +813075|26001459863|3 +813076|26001460241|3 +816588|26001460242|3 +818675|26001461200|3 +824589|26001463499|3 +816808|26001463567|3 +821717|26001463568|3 +815305|26001463675|3 +815246|26001463678|3 +811332|26001464778|3 +671474|26001465716|3 +711521|26001465925|3 +811179|26001466971|3 +821830|26001467198|3 +751155|26001467645|3 +811811|26001467651|3 +823159|26001467832|3 +900247|26001469772|3 +714276|26001469837|3 +813294|26001469853|3 +823187|26001469857|3 +748125|26001473088|3 +823543|26001473092|3 +541691|26001473218|3 +819453|26001473487|3 +811188|26001473568|3 +812470|26001473569|3 +814677|26001473570|3 +823461|26001473574|3 +822576|26001473638|3 +813529|26001475105|3 +815824|26001475846|3 +485133|26001477140|3 +526205|26001477159|3 +749173|26001477244|3 +835251|26001477284|7 +840470|26001477287|3 +610783|26001478909|3 +698831|26001478944|3 +815347|26001479164|3 +819032|26001479173|3 +789017|26001479181|3 +816590|26001482665|3 +599232|26001482671|3 +814635|26001482796|3 +819022|26001484443|3 +687369|26001485478|3 +820474|26001485562|3 +900259|26001485581|3 +612321|26001485781|3 +643390|26001486410|3 +824182|26001486435|3 +815399|26001486662|3 +821588|26001486714|3 +815555|26001489736|3 +550743|26001490074|3 +637687|26001490279|3 +818244|26001492755|3 +823582|26001492757|3 +893117|26001493336|3 +692188|26001493465|3 +812092|26001493720|3 +824686|26001493723|3 +899966|26001493942|3 +821549|26001494245|3 +824701|26001494609|3 +535699|26001495283|3 +451259|26001495572|3 +749064|26001495915|3 +611529|26001496701|3 +820184|26001496793|3 +835250|26001497737|7 +476226|26001497935|3 +814555|26001497982|3 +840465|26001498273|3 +893003|26001498274|3 +589936|26001499482|3 +541692|26001500005|3 +824343|26001500188|3 +729946|26001500640|3 +632835|26001500732|3 +814689|26001500733|3 +609557|26001501221|3 +815682|26001502213|3 +559336|26001502298|3 +651621|26001502766|3 +817697|26001503629|3 +632778|26001503963|3 +817040|26001504007|3 +812594|26001504436|3 +814623|26001505793|3 +820876|26001505798|3 +478969|26001505899|3 +812965|26001505904|3 +813362|26001506867|3 +823599|26001507434|3 +820121|26001507768|3 +823508|26001508126|3 +813302|26001508519|3 +817182|26001509070|3 +813295|26001509087|3 +821253|26001509246|3 +819580|26001509495|3 +752326|26001510045|3 +816238|26001510791|3 +475530|26001513126|3 +748165|26001513279|3 +825184|26001513807|3 +817765|26001514096|3 +462452|26001515217|3 +803108|26001515742|3 +821969|26001515833|3 +821677|26001515880|3 +816918|26001516910|3 +812160|26001518207|3 +812162|26001518314|3 +570921|26001518348|3 +821228|26001518468|3 +815926|26001518654|3 +835252|26001518901|7 +814790|26001519047|3 +816861|26001519736|3 +823152|26001519760|3 +820967|26001520397|3 +751138|26001520407|3 +817916|26001520459|3 +488941|26001520460|3 +749016|26001520479|3 +900248|26001520485|3 +813059|26001520770|3 +750276|26001520957|3 +821083|26001520960|3 +472418|26001521380|3 +669190|26001521386|3 +823544|26001521503|3 +893012|26001522713|3 +769087|26001522767|3 +818245|26001524466|3 +811682|26001524679|3 +816746|26001525202|3 +749174|26001525302|3 +729723|26001525430|3 +893001|26001525633|3 +815922|26001526846|3 +811529|26001528321|3 +816781|26001529436|3 +484134|26001529686|3 +816869|26001530156|3 +823444|26001530226|3 +749715|26001530249|3 +812441|26001530290|3 +470460|26001531436|3 +552781|26001532101|3 +893013|26001532938|3 +760726|26001533162|3 +485373|26001536015|3 +883356|26001536264|3 +816684|26001536912|3 +824721|26001537862|3 +889710|26001537904|3 +594185|26001538039|3 +812525|26001538792|3 +818938|26001538850|3 +774958|26001538877|3 +893006|26001539167|3 +817439|26001539274|3 +686470|26001539382|3 +592383|26001540476|3 +815974|26001541257|3 +816000|26001541321|3 +812921|26001542085|3 +817452|26001543997|3 +820287|26001546612|3 +812377|26001548498|3 +471423|26001549113|3 +698969|26001549191|3 +812022|26001549211|3 +815690|26001549557|3 +817913|26001549727|3 +681766|26001549784|3 +816919|26001549827|3 +813795|26001549883|3 +709184|26001549952|3 +813361|26001549975|3 +812574|26001549993|3 +525697|26001550852|3 +676990|26001553792|3 +813454|26001554894|3 +811905|26001555049|3 +823845|26001556801|3 +811218|26001556826|3 +893007|26001556894|3 +717675|26001556935|3 +893008|26001556948|3 +818341|26001557021|3 +823135|26001557349|3 +823453|26001557430|3 +805398|26001557643|3 +463962|26001557659|3 +814788|26001557788|3 +813593|26001557915|3 +823974|26001557933|3 +814493|26001557999|3 +813908|26001558166|3 +822198|26001559141|3 +812977|26001559669|3 +813290|26001559670|3 +812110|26001560035|3 +648866|26001560089|3 +696888|26001560756|3 +698958|26001560874|3 +681906|26001560881|3 +814602|26001560883|3 +815830|26001562062|3 +574435|26001562306|3 +699523|26001562448|3 +830644|26001562501|5 +489049|26001562653|3 +751271|26001563016|3 +834240|26001563272|7 +823886|26001563316|3 +633110|26001564471|3 +628890|26001564682|3 +612540|26001565117|3 +570918|26001565164|3 +797845|26001565657|3 +814539|26001565774|3 +748166|26001566612|3 +816650|26001566845|3 +466172|26001567350|3 +750277|26001567351|3 +462511|26001567495|3 +550745|26001567839|3 +811061|26001569798|3 +834241|26001570105|7 +612322|26001571429|3 +788785|26001571432|3 +501855|26001572032|3 +570922|26001574016|3 +821902|26001574089|3 +641978|26001574352|3 +817817|26001574362|3 +814564|26001574981|3 +818342|26001575955|3 +810072|26001577526|3 +460274|27000558888|3 +469780|27000559164|3 +471633|27000559197|3 +472675|27000559214|3 +472779|27000559215|3 +474279|27000559274|3 +814131|27000559446|3 +494049|27000559835|3 +507047|27000560168|3 +529303|27000560804|3 +535692|27000561016|3 +535693|27000561018|3 +537705|27000561078|3 +539239|27000561165|3 +543705|27000561242|3 +548801|27000561439|3 +548694|27000561441|3 +554686|27000561596|3 +569785|27000561998|3 +599085|27000562794|3 +599135|27000562806|3 +599136|27000562811|3 +598905|27000562818|3 +605163|27000562973|3 +605164|27000562974|3 +818850|27000563238|3 +615282|27000563305|3 +632772|27000563710|3 +632773|27000563711|3 +634190|27000563742|3 +635511|27000563778|3 +635449|27000563799|3 +652340|27000564136|3 +665834|27000564398|3 +665588|27000564406|3 +672279|27000564623|3 +800508|27000565082|3 +699518|27000565494|3 +704738|27000565683|3 +708134|27000565823|3 +710988|27000565902|3 +715088|27000565996|3 +716325|27000566010|3 +722886|27000566207|3 +723404|27000566229|3 +723410|27000566232|3 +748730|27000566807|3 +752170|27000566837|3 +753780|27000566877|3 +757825|27000567003|3 +813540|27000567197|3 +769089|27000567285|3 +777756|27000567654|3 +515952|27000567845|3 +791504|27000568105|3 +795800|27000568264|3 +795753|27000568266|3 +805874|27000568605|3 +810127|27000568696|3 +810345|27000568698|3 +810420|27000568702|3 +810740|27000568703|3 +810617|27000568704|3 +810893|27000568708|3 +810710|27000568715|3 +810959|27000568723|3 +811284|27000568731|3 +812089|27000568742|3 +812085|27000568743|3 +812088|27000568746|3 +812084|27000568747|3 +812208|27000568750|3 +812209|27000568752|3 +812607|27000568759|3 +812725|27000568760|3 +812670|27000568761|3 +812986|27000568773|3 +812988|27000568775|3 +813127|27000568782|3 +813123|27000568783|3 +813124|27000568786|3 +813141|27000568787|3 +813166|27000568788|3 +813164|27000568789|3 +813158|27000568792|3 +813157|27000568793|3 +813252|27000568796|3 +813374|27000568797|3 +813368|27000568798|3 +813425|27000568800|3 +813429|27000568801|3 +813434|27000568802|3 +813435|27000568803|3 +813438|27000568804|3 +813994|27000568807|3 +813978|27000568808|3 +814096|27000568809|3 +814019|27000568811|3 +813986|27000568813|3 +814117|27000568816|3 +814298|27000568819|3 +814720|27000568825|3 +815425|27000568829|3 +815382|27000568830|3 +815276|27000568833|3 +815235|27000568848|3 +815502|27000568857|3 +815633|27000568862|3 +815880|27000568873|3 +815878|27000568874|3 +816118|27000568883|3 +816213|27000568887|3 +816212|27000568889|3 +816477|27000568895|3 +816475|27000568896|3 +816476|27000568897|3 +817149|27000568903|3 +817150|27000568904|3 +817151|27000568907|3 +817523|27000568923|3 +817522|27000568924|3 +817696|27000568929|3 +818134|27000568930|3 +819437|27000568931|3 +818351|27000568936|3 +835225|27000568947|7 +820193|27000568952|3 +819193|27000568954|3 +835226|27000568955|7 +817689|27000568958|3 +819179|27000568959|3 +820450|27000568966|3 +835227|27000568970|7 +835228|27000568975|7 +818263|27000568978|3 +834871|27000568979|5 +818851|27000568984|3 +817690|27000568991|3 +817691|27000568992|3 +820705|27000569005|3 +820564|27000569007|3 +820863|27000569010|3 +820869|27000569011|3 +820956|27000569013|3 +820960|27000569015|3 +820959|27000569016|3 +820964|27000569018|3 +822578|27000569022|3 +821491|27000569023|3 +821911|27000569024|3 +822075|27000569025|3 +822095|27000569026|3 +822579|27000569030|3 +821383|27000569050|3 +821492|27000569051|3 +821929|27000569052|3 +822221|27000569053|5 +821384|27000569056|3 +821357|27000569063|3 +822580|27000569067|3 +822096|27000569074|3 +822706|27000569082|3 +822810|27000569090|3 +823645|27000569098|3 +823811|27000569102|3 +824156|27000569104|3 +824707|27000569112|3 +824708|27000569114|3 +824915|27000569118|3 +824914|27000569119|3 +824972|27000569120|3 +840458|27000569122|3 +840459|27000569123|3 +842039|27000569167|3 +815732|27000569221|3 +847396|27000569388|3 +853745|27000569605|3 +817385|27000569768|3 +881020|27000570339|3 +882711|27000570391|3 +885163|27000570425|3 +816117|27000570969|3 +812756|27000572482|3 +738180|27000579769|3 +823819|27000580119|3 +539240|27001025566|3 +539241|27001025572|3 +814301|27001031393|3 +824885|27001035359|3 +822856|27001042106|3 +823366|27001045676|3 +814302|27001047308|3 +820194|27001049953|3 +817103|27001061662|3 +693132|27001062553|3 +890918|27001062892|3 +820853|27001070524|3 +815491|27001083731|3 +811003|27001095321|3 +810824|27001097181|3 +817156|27001098790|3 +820961|27001117206|3 +813140|27001118946|3 +814722|27001119839|3 +763930|27001120744|3 +824971|27001123903|3 +823367|27001138133|3 +821173|27001139374|3 +767879|27001141534|3 +824916|27001145373|3 +539242|27001145398|3 +462985|27001145545|3 +747077|27001148214|3 +769091|27001155530|3 +769090|27001155534|3 +815430|27001166210|3 +823364|27001170489|3 +817518|27001175491|3 +818265|27001177083|3 +612317|27001181728|3 +605168|27001189577|3 +598906|27001196301|3 +557685|27001199142|3 +729581|27001201970|3 +813373|27001206869|3 +540397|27001208919|3 +819162|27001209937|3 +817692|27001216793|3 +690294|27001226165|3 +817160|27001230024|3 +811829|27001235119|3 +824702|27001237628|3 +835224|27001240822|7 +816339|27001242055|3 +791499|27001244319|3 +812182|27001246808|3 +824704|27001251824|3 +821488|27001253628|3 +811479|27001258811|3 +769101|27001263208|3 +813768|27001265252|3 +811469|27001274444|3 +815221|27001282803|3 +840456|27001283548|3 +817324|27001290154|3 +815395|27001296958|3 +818035|27001296961|3 +816131|27001297576|3 +771505|27001300336|3 +771497|27001300337|3 +605167|27001301634|3 +835234|27001301643|7 +583185|27001310486|3 +757826|27001311225|3 +813190|27001311226|3 +663581|27001312197|3 +818239|27001313014|3 +814726|27001313187|3 +624680|27001318659|3 +584676|27001322823|3 +813670|27001325346|3 +892611|27001339718|3 +816029|27001340062|3 +846742|27001340201|3 +847292|27001340702|3 +847293|27001340703|3 +880668|27001345055|3 +822278|27001349795|5 +822848|27001349799|3 +814299|27001353160|3 +822279|27001354172|3 +716337|27001355958|3 +811960|27001355976|3 +541184|27001360742|3 +820445|27001360745|3 +635435|27001364773|3 +815330|27001364909|3 +816214|27001369577|3 +821170|27001373573|3 +810346|27001379046|3 +595786|27001380449|3 +822367|27001382586|3 +583186|27001384692|3 +818050|27001387599|3 +820446|27001387602|3 +823365|27001390106|3 +815883|27001390742|3 +810712|27001390827|3 +813196|27001395903|3 +710085|27001396850|3 +882958|27001401198|3 +814721|27001401215|3 +812181|27001401217|3 +700838|27001401683|3 +908680|27001401744|2 +635434|27001408710|3 +810152|27001410545|3 +488949|27001411798|3 +880667|27001412632|3 +834503|27001414509|5 +819833|27001419326|3 +813163|27001422844|3 +817974|27001422873|5 +815501|27001423885|3 +815275|27001424139|3 +485377|27001425927|3 +816209|27001427010|3 +821169|27001427179|3 +810991|27001434496|3 +526703|27001440096|3 +846436|27001441448|3 +460275|27001445303|3 +834504|27001445345|5 +813972|27001445736|3 +818634|27001447284|3 +821171|27001449809|3 +817209|27001451089|3 +840491|27001452602|3 +840493|27001452603|3 +823282|27001453834|3 +810540|27001457252|3 +882959|27001459067|3 +820447|27001459856|3 +816116|27001464548|3 +810541|27001468335|3 +782557|27001470355|3 +814300|27001471747|3 +814962|27001472173|3 +814958|27001472176|3 +819834|27001476017|3 +748693|27001476110|3 +814064|27001477114|3 +624684|27001478077|3 +816132|27001478441|3 +810651|27001485458|3 +822625|27001486504|3 +810347|27001489762|3 +820770|27001490880|3 +635436|27001492240|3 +635555|27001492875|3 +534054|27001496167|3 +817693|27001497087|3 +539211|27001501612|3 +758112|27001502314|3 +813427|27001504776|3 +812481|27001505345|3 +818852|27001506425|3 +820448|27001509224|3 +847134|27001510514|3 +581485|27001510645|3 +818304|27001511967|3 +541200|27001515278|3 +819438|27001517115|3 +817739|27001517355|3 +818305|27001518693|3 +471356|27001519979|3 +817740|27001521614|3 +813159|27001522648|3 +814723|27001526247|3 +817159|27001527936|3 +521055|27001531200|3 +810871|27001535970|3 +812035|27001539990|3 +477285|27001541769|3 +816892|27001545623|3 +467031|27001549379|3 +819163|27001550103|3 +813369|27001553296|3 +824159|27001557572|3 +824303|27001559860|3 +814343|27001561361|3 +814961|27001567395|3 +555286|27001567609|3 +818091|27001569520|3 +819835|27001569521|3 +796504|27001572036|3 +451255|28000724423|3 +451257|28000724424|3 +451258|28000724426|3 +451262|28000724427|3 +453829|28000724842|3 +453833|28000724845|3 +454581|28000725000|3 +457035|28000725348|3 +461922|28000726007|3 +463785|28000726220|3 +464473|28000726275|3 +464474|28000726297|3 +464334|28000726298|3 +464465|28000726306|3 +464467|28000726307|3 +466531|28000726571|3 +467019|28000726679|3 +467632|28000726694|3 +467608|28000726713|3 +469834|28000726909|3 +469281|28000726938|3 +470442|28000726948|3 +470443|28000726986|3 +469772|28000726989|3 +469752|28000726994|3 +470153|28000727007|3 +470150|28000727026|3 +469753|28000727086|3 +471412|28000727132|3 +466509|28000727160|3 +471425|28000727183|3 +472321|28000727258|3 +472322|28000727291|3 +472876|28000727316|3 +472323|28000727317|3 +474679|28000727560|3 +476328|28000727792|3 +478966|28000728100|3 +479583|28000728190|3 +479973|28000728232|3 +480981|28000728342|3 +817303|28000728832|3 +485392|28000728905|3 +485391|28000728906|3 +486948|28000729109|3 +486949|28000729125|3 +817197|28000729160|3 +487991|28000729225|3 +489054|28000729321|3 +489074|28000729334|3 +488929|28000729347|3 +488930|28000729356|3 +489079|28000729370|3 +488942|28000729383|3 +488733|28000729411|3 +490454|28000729590|3 +637686|28000730103|3 +497903|28000730524|3 +497904|28000730525|3 +814461|28000731153|3 +507201|28000731720|3 +507535|28000731770|3 +507600|28000731777|3 +823532|28000731799|3 +509255|28000732012|3 +511855|28000732358|3 +513805|28000732594|3 +514255|28000732634|3 +516699|28000732913|3 +518554|28000733090|3 +518505|28000733093|3 +518503|28000733108|3 +819836|28000733113|3 +523653|28000733751|3 +526699|28000734016|3 +527044|28000734041|3 +822078|28000734629|3 +534055|28000734841|3 +534291|28000734853|3 +534289|28000734885|3 +535683|28000735037|3 +537600|28000735322|3 +541705|28000735541|3 +541603|28000735542|3 +539409|28000735585|3 +539743|28000735595|3 +541185|28000735599|3 +540398|28000735614|3 +540602|28000735631|3 +540644|28000735633|3 +541661|28000735644|3 +541742|28000735652|3 +539744|28000735662|3 +541186|28000735668|3 +539355|28000735670|3 +541189|28000735714|3 +539410|28000735761|3 +540645|28000735786|3 +539473|28000735790|3 +539396|28000735815|3 +540389|28000735834|3 +540404|28000735846|3 +540600|28000735861|3 +541202|28000735862|3 +541187|28000735864|3 +539745|28000735872|3 +540362|28000735874|3 +541160|28000735888|3 +541662|28000735928|3 +541743|28000735934|3 +540399|28000735994|3 +539237|28000736014|3 +539474|28000736018|3 +541161|28000736027|3 +541188|28000736059|3 +541201|28000736062|3 +549505|28000736950|3 +550749|28000737054|3 +550753|28000737086|3 +550397|28000737098|3 +553127|28000737311|3 +698959|28000737348|3 +552214|28000737360|3 +729749|28000737404|3 +553485|28000737431|3 +557331|28000737952|3 +557676|28000737961|3 +559379|28000738154|3 +559369|28000738156|3 +559233|28000738186|3 +564636|28000738998|3 +576886|28000739050|3 +567935|28000739385|3 +569832|28000739667|3 +570821|28000739742|3 +570826|28000739781|3 +570931|28000739794|3 +729956|28000740334|3 +575181|28000740384|3 +577986|28000740742|3 +583180|28000741374|3 +551730|28000741674|3 +818500|28000742125|3 +722687|28000742326|3 +591230|28000742409|3 +591231|28000742446|3 +591792|28000742451|3 +591232|28000742489|3 +592378|28000742530|3 +592358|28000742546|3 +819508|28000743237|3 +597430|28000743300|3 +599227|28000743530|3 +598678|28000743533|3 +599849|28000743611|3 +599850|28000743615|3 +599851|28000743632|3 +599852|28000743658|3 +599785|28000743659|3 +599786|28000743689|3 +599781|28000743698|3 +599782|28000743704|3 +599819|28000743707|3 +599853|28000743717|3 +599861|28000743724|3 +599731|28000743726|3 +599862|28000743727|3 +604031|28000744237|3 +604035|28000744250|3 +604032|28000744275|3 +605175|28000744405|3 +606286|28000744517|3 +606213|28000744530|3 +811946|28000744893|3 +816425|28000744913|3 +609707|28000744923|3 +609677|28000744927|3 +612314|28000745193|3 +611530|28000745202|3 +611523|28000745219|3 +612594|28000745281|3 +615086|28000745504|3 +620135|28000746035|3 +622132|28000746194|3 +622089|28000746202|3 +622080|28000746213|3 +621932|28000746214|3 +622180|28000746216|3 +622069|28000746220|3 +621774|28000746233|3 +621930|28000746240|3 +621940|28000746255|3 +621941|28000746276|3 +622120|28000746297|3 +621679|28000746299|3 +621942|28000746309|3 +819082|28000746326|3 +621943|28000746328|3 +621933|28000746332|3 +622070|28000746350|3 +621957|28000746362|3 +621469|28000746370|3 +621432|28000746371|3 +621944|28000746375|3 +621419|28000746382|3 +622035|28000746409|3 +623826|28000746600|3 +624679|28000746684|3 +624685|28000746691|3 +592981|28000746864|3 +626173|28000746919|3 +626937|28000746952|3 +627938|28000747060|3 +627939|28000747076|3 +629787|28000747271|3 +630090|28000747308|3 +630789|28000747401|3 +632332|28000747581|3 +811198|28000747855|3 +634588|28000747979|3 +634589|28000747983|3 +635442|28000748003|3 +635456|28000748019|3 +635459|28000748027|3 +635561|28000748032|3 +637287|28000748193|3 +639426|28000748466|3 +641289|28000748723|3 +641980|28000748809|3 +641882|28000748845|3 +643378|28000749058|3 +815579|28000749609|3 +815672|28000749610|3 +651037|28000750162|3 +813256|28000750479|3 +655086|28000750579|3 +655087|28000750587|3 +655774|28000750598|3 +655775|28000750619|3 +655611|28000750648|3 +815979|28000750688|3 +655618|28000750711|3 +655088|28000750712|3 +655600|28000750724|3 +655754|28000750725|3 +655595|28000750726|3 +655427|28000750755|3 +655619|28000750780|3 +660735|28000751505|3 +662140|28000751718|3 +665839|28000752128|3 +813453|28000752334|3 +667632|28000752354|3 +668140|28000752426|3 +671475|28000752817|3 +671479|28000752828|3 +671487|28000752831|3 +810388|28000752927|3 +673683|28000753054|3 +675868|28000753245|3 +675869|28000753264|3 +678339|28000753488|3 +679477|28000753629|3 +679825|28000753689|3 +679826|28000753690|3 +679832|28000753691|3 +679840|28000753692|3 +680870|28000753837|3 +681915|28000753968|3 +681912|28000753969|3 +681916|28000754002|3 +683719|28000754259|3 +683720|28000754262|3 +812130|28000754784|3 +688222|28000754952|3 +689749|28000755146|3 +689753|28000755161|3 +690293|28000755261|3 +690292|28000755262|3 +690295|28000755263|3 +690303|28000755264|3 +690312|28000755267|3 +694516|28000755751|3 +697088|28000756153|3 +698035|28000756283|3 +699072|28000756355|3 +699422|28000756361|3 +699524|28000756365|3 +699420|28000756379|3 +699531|28000756406|3 +699532|28000756407|3 +699423|28000756422|3 +699280|28000756458|3 +699073|28000756471|3 +703838|28000756945|3 +703687|28000756952|3 +705284|28000757182|3 +705786|28000757240|3 +709182|28000757601|3 +709187|28000757609|3 +710226|28000757774|3 +711488|28000757965|3 +711530|28000757973|3 +711531|28000757979|3 +822302|28000758236|3 +714286|28000758294|3 +714234|28000758297|3 +714235|28000758300|3 +714287|28000758303|3 +714219|28000758309|3 +714284|28000758311|3 +714217|28000758314|3 +714278|28000758323|3 +714431|28000758353|3 +714435|28000758355|3 +715287|28000758417|3 +716338|28000758551|3 +716335|28000758558|3 +716384|28000758561|3 +716237|28000758575|3 +717679|28000758763|3 +717687|28000758783|3 +717676|28000758795|3 +717672|28000758797|3 +835468|28000758828|3 +719527|28000759032|3 +719528|28000759051|3 +719488|28000759067|3 +721387|28000759337|3 +721738|28000759392|3 +723392|28000759570|3 +724729|28000759689|3 +725025|28000759696|3 +730051|28000760103|3 +729747|28000760110|3 +729750|28000760117|3 +729751|28000760128|3 +728879|28000760133|3 +730052|28000760138|3 +729748|28000760145|3 +612586|28000760147|3 +728978|28000760156|3 +729985|28000760160|3 +729721|28000760192|3 +729957|28000760196|3 +729752|28000760199|3 +730053|28000760228|3 +729986|28000760237|3 +729582|28000760241|3 +728712|28000760242|3 +730000|28000760249|3 +729580|28000760263|3 +728919|28000760293|3 +729719|28000760306|3 +729720|28000760309|3 +728711|28000760313|3 +730007|28000760316|3 +728922|28000760323|3 +729999|28000760328|3 +728976|28000760349|3 +730001|28000760373|3 +730002|28000760376|3 +728923|28000760381|3 +730008|28000760387|3 +728924|28000760428|3 +734072|28000760829|3 +737780|28000761274|3 +812351|28000761647|3 +812002|28000761930|3 +744127|28000762076|3 +746678|28000762383|3 +747720|28000762571|3 +749017|28000762659|3 +749067|28000762672|3 +748126|28000762685|3 +748127|28000762691|3 +749070|28000762732|3 +749065|28000762756|3 +749712|28000762794|3 +518553|28000762801|3 +749271|28000762852|3 +749703|28000762870|3 +749723|28000762881|3 +749272|28000762934|3 +749273|28000762939|3 +750174|28000762955|3 +750175|28000762965|3 +752236|28000763095|3 +751979|28000763108|3 +752237|28000763109|3 +751274|28000763116|3 +751160|28000763164|3 +751572|28000763190|3 +751980|28000763191|3 +752272|28000763198|3 +751569|28000763208|3 +752172|28000763251|3 +752026|28000763255|3 +752238|28000763287|3 +751161|28000763299|3 +752239|28000763304|3 +752027|28000763330|3 +752004|28000763346|3 +751865|28000763363|3 +752240|28000763377|3 +752241|28000763395|3 +752003|28000763398|3 +752242|28000763430|3 +842043|28000763565|3 +753870|28000763618|3 +753876|28000763620|3 +753777|28000763632|3 +753869|28000763651|3 +753874|28000763654|3 +760165|28000764449|3 +760177|28000764472|3 +760173|28000764476|3 +760376|28000764518|3 +760480|28000764569|3 +762878|28000764810|3 +762879|28000764826|3 +762665|28000764829|3 +815511|28000764936|3 +764730|28000765052|3 +768752|28000765555|3 +768751|28000765572|3 +768745|28000765576|3 +768746|28000765611|3 +768719|28000765664|3 +769070|28000765686|3 +771509|28000765951|3 +771753|28000765961|3 +771931|28000765996|3 +771754|28000766032|3 +771927|28000766063|3 +771924|28000766070|3 +773602|28000766299|3 +777523|28000766758|3 +777525|28000766760|3 +777650|28000766764|3 +777649|28000766772|3 +777540|28000766779|3 +777651|28000766786|3 +777541|28000766787|3 +777542|28000766788|3 +777757|28000766908|3 +778470|28000766938|3 +778471|28000766942|3 +778472|28000766992|3 +780609|28000767244|3 +784553|28000767692|3 +853726|28000767853|3 +786109|28000767894|3 +788809|28000768160|3 +789029|28000768164|3 +789055|28000768172|3 +788247|28000768183|3 +787956|28000768194|3 +788309|28000768197|3 +789030|28000768202|3 +789020|28000768208|3 +789031|28000768212|3 +789060|28000768221|3 +789061|28000768237|3 +789062|28000768242|3 +788450|28000768261|3 +788248|28000768268|3 +788249|28000768284|3 +788817|28000768285|3 +788807|28000768288|3 +787998|28000768289|3 +788451|28000768293|3 +788452|28000768299|3 +788453|28000768318|3 +789021|28000768322|3 +788650|28000768359|3 +788454|28000768368|3 +788250|28000768370|3 +788651|28000768371|3 +789010|28000768372|3 +789032|28000768378|3 +788455|28000768380|3 +787992|28000768383|3 +788786|28000768384|3 +789063|28000768398|3 +788652|28000768401|3 +788456|28000768414|3 +789033|28000768417|3 +787955|28000768430|3 +789049|28000768447|3 +788810|28000768448|3 +789508|28000768481|3 +789755|28000768509|3 +791559|28000768749|3 +792358|28000768896|3 +792335|28000768906|3 +795308|28000769322|3 +796501|28000769439|3 +823271|28000769443|3 +901169|28000769549|3 +797859|28000769604|3 +798205|28000769672|3 +800101|28000769885|3 +818422|28000769958|3 +802759|28000770252|3 +805393|28000770568|3 +805395|28000770571|3 +806324|28000770709|3 +822414|28000771079|3 +808724|28000771131|3 +698951|28000771209|3 +825216|28000771354|7 +825233|28000771356|7 +825251|28000771357|7 +810069|28000771363|3 +810070|28000771365|3 +810081|28000771366|3 +810079|28000771367|3 +810082|28000771368|3 +810084|28000771370|3 +810083|28000771371|3 +810091|28000771372|3 +810133|28000771373|3 +810148|28000771374|3 +810182|28000771376|3 +810230|28000771380|3 +811131|28000771387|3 +810555|28000771389|3 +810971|28000771390|3 +810945|28000771396|5 +810860|28000771399|3 +811132|28000771401|3 +810565|28000771402|3 +826341|28000771403|5 +826348|28000771408|5 +811139|28000771411|5 +810375|28000771414|3 +810372|28000771417|3 +810610|28000771418|3 +810789|28000771419|3 +810662|28000771428|3 +810735|28000771430|3 +810937|28000771434|5 +810572|28000771435|3 +811191|28000771439|3 +810590|28000771445|3 +810704|28000771450|3 +810618|28000771455|3 +810494|28000771459|3 +810391|28000771460|3 +810563|28000771462|3 +810979|28000771464|5 +810777|28000771467|3 +810861|28000771470|3 +826353|28000771471|5 +811127|28000771472|3 +811001|28000771474|3 +826282|28000771475|7 +826404|28000771478|3 +810621|28000771481|3 +810389|28000771483|3 +810986|28000771484|5 +811133|28000771489|3 +810479|28000771490|3 +810545|28000771492|3 +810451|28000771493|3 +810843|28000771497|3 +810696|28000771499|3 +810559|28000771501|3 +810392|28000771504|3 +810406|28000771511|3 +810611|28000771512|3 +810502|28000771513|3 +810992|28000771516|3 +810591|28000771518|3 +810760|28000771519|3 +810434|28000771522|3 +810946|28000771523|5 +810868|28000771524|3 +810306|28000771532|3 +811062|28000771534|3 +810622|28000771535|3 +810566|28000771537|3 +811004|28000771540|3 +810719|28000771545|3 +811202|28000771552|3 +811234|28000771556|3 +811300|28000771558|3 +811287|28000771561|3 +811345|28000771563|3 +811358|28000771567|3 +811356|28000771568|3 +811370|28000771572|3 +811455|28000771580|3 +811441|28000771583|3 +811384|28000771585|3 +811489|28000771586|3 +811551|28000771587|3 +811386|28000771588|3 +811452|28000771592|3 +811542|28000771593|3 +811410|28000771596|3 +811406|28000771597|3 +811578|28000771602|3 +811601|28000771603|3 +811579|28000771606|3 +811644|28000771608|3 +811586|28000771612|3 +811633|28000771621|3 +811608|28000771625|3 +811654|28000771630|3 +811685|28000771632|3 +811742|28000771638|3 +811824|28000771640|3 +811722|28000771641|3 +811821|28000771645|3 +811928|28000771648|3 +811925|28000771649|3 +811930|28000771652|3 +811949|28000771656|3 +811987|28000771658|3 +811990|28000771659|3 +812011|28000771662|3 +812007|28000771666|3 +812008|28000771667|3 +812005|28000771670|3 +812012|28000771673|3 +812047|28000771678|3 +812046|28000771679|3 +812045|28000771680|3 +836840|28000771682|5 +812082|28000771685|3 +812081|28000771686|3 +812129|28000771690|3 +812132|28000771691|3 +812133|28000771692|3 +812176|28000771698|3 +812216|28000771702|3 +812214|28000771703|3 +812219|28000771705|3 +812236|28000771707|3 +812268|28000771708|3 +812289|28000771709|3 +812360|28000771712|3 +812421|28000771715|3 +812547|28000771718|3 +812720|28000771719|3 +812428|28000771721|3 +812626|28000771723|3 +812639|28000771727|3 +812497|28000771729|3 +812705|28000771730|3 +812744|28000771731|3 +812461|28000771732|3 +812755|28000771733|3 +812741|28000771735|3 +812760|28000771736|3 +812739|28000771739|3 +812723|28000771740|3 +812529|28000771742|3 +812565|28000771747|3 +812646|28000771748|3 +812696|28000771749|3 +812680|28000771750|3 +812558|28000771753|3 +812757|28000771755|3 +812436|28000771756|3 +812548|28000771758|3 +812678|28000771759|3 +812537|28000771763|3 +812584|28000771767|3 +812611|28000771768|3 +812576|28000771770|3 +812634|28000771772|3 +812697|28000771774|3 +812663|28000771778|3 +812664|28000771785|3 +812532|28000771786|3 +812647|28000771787|3 +812778|28000771790|3 +812792|28000771791|3 +812862|28000771797|3 +812905|28000771799|3 +813015|28000771805|3 +813034|28000771808|3 +813058|28000771810|3 +813201|28000771817|3 +813348|28000771832|3 +813375|28000771834|3 +813457|28000771841|3 +813518|28000771845|3 +813515|28000771846|3 +813512|28000771847|3 +813508|28000771848|3 +813525|28000771849|3 +813517|28000771850|3 +813672|28000771857|3 +813673|28000771858|3 +813716|28000771860|3 +813767|28000771862|3 +813885|28000771871|3 +813898|28000771875|3 +813875|28000771877|3 +813895|28000771881|3 +814008|28000771886|3 +814060|28000771888|3 +814015|28000771891|3 +814000|28000771895|3 +814106|28000771897|3 +814110|28000771898|3 +814113|28000771900|3 +814147|28000771902|3 +814203|28000771906|3 +814213|28000771907|3 +814294|28000771910|3 +814273|28000771911|3 +814270|28000771912|3 +814289|28000771913|3 +814326|28000771917|3 +814331|28000771918|3 +814333|28000771920|3 +814335|28000771921|3 +814367|28000771922|3 +814357|28000771923|3 +814334|28000771924|3 +814475|28000771934|3 +814472|28000771935|3 +814477|28000771936|3 +814476|28000771937|3 +814519|28000771939|3 +814492|28000771941|3 +814536|28000771942|3 +814533|28000771944|3 +814632|28000771946|3 +814571|28000771950|3 +814572|28000771951|3 +814579|28000771954|3 +814585|28000771955|3 +814603|28000771956|3 +814595|28000771958|3 +814661|28000771962|3 +814665|28000771964|3 +814678|28000771972|3 +814684|28000771974|3 +814719|28000771979|3 +814728|28000771980|3 +814741|28000771983|3 +814733|28000771984|3 +814736|28000771993|3 +814808|28000771995|3 +814794|28000771999|3 +814807|28000772000|3 +814839|28000772004|3 +814827|28000772005|3 +814877|28000772006|3 +814851|28000772007|3 +814890|28000772010|3 +814847|28000772011|3 +814901|28000772017|3 +814909|28000772020|3 +814911|28000772025|3 +814960|28000772030|3 +814967|28000772032|3 +815007|28000772036|3 +815051|28000772038|3 +815097|28000772040|3 +815185|28000772045|3 +815186|28000772047|3 +815376|28000772049|3 +815358|28000772050|3 +815166|28000772051|3 +815244|28000772054|3 +815361|28000772062|3 +815331|28000772064|3 +815247|28000772069|3 +815427|28000772071|3 +815243|28000772074|3 +815238|28000772077|3 +815192|28000772078|3 +815254|28000772083|3 +815359|28000772085|3 +815194|28000772087|3 +815291|28000772094|3 +815173|28000772095|3 +815493|28000772100|3 +815566|28000772103|3 +815709|28000772104|3 +815571|28000772107|3 +815518|28000772108|3 +815591|28000772110|3 +815596|28000772111|3 +815683|28000772113|3 +815728|28000772116|3 +815593|28000772118|3 +815568|28000772122|3 +815524|28000772126|3 +815647|28000772128|3 +815676|28000772129|3 +815612|28000772130|3 +815646|28000772131|3 +815674|28000772132|3 +815572|28000772134|3 +815545|28000772135|3 +815719|28000772138|3 +815564|28000772143|3 +815729|28000772145|3 +815556|28000772147|3 +815655|28000772148|3 +815594|28000772150|3 +815514|28000772154|3 +815573|28000772156|3 +815548|28000772158|3 +815588|28000772159|3 +815689|28000772160|3 +815737|28000772161|3 +815854|28000772167|3 +815826|28000772170|3 +815774|28000772173|3 +815769|28000772174|3 +815764|28000772175|3 +815796|28000772178|3 +815885|28000772184|3 +815927|28000772187|3 +815932|28000772188|3 +815930|28000772189|3 +813344|28000772190|3 +815959|28000772191|3 +815975|28000772192|3 +815946|28000772193|3 +815945|28000772195|3 +815970|28000772196|3 +815984|28000772197|3 +816092|28000772207|3 +816096|28000772209|3 +816119|28000772211|3 +816168|28000772214|3 +816196|28000772217|3 +816193|28000772218|3 +816207|28000772219|3 +816208|28000772221|3 +816270|28000772224|3 +816282|28000772225|3 +816287|28000772226|3 +816277|28000772229|3 +816266|28000772232|3 +816268|28000772233|3 +816283|28000772234|3 +816302|28000772238|3 +816332|28000772241|3 +816336|28000772242|3 +816335|28000772243|3 +816337|28000772244|3 +816359|28000772250|3 +816381|28000772253|3 +816397|28000772258|3 +816453|28000772261|3 +816461|28000772263|3 +816468|28000772265|3 +816728|28000772268|3 +816518|28000772269|3 +817042|28000772270|3 +816747|28000772272|3 +816907|28000772273|3 +816628|28000772276|3 +816764|28000772278|3 +816729|28000772279|3 +816795|28000772280|3 +816544|28000772281|3 +816554|28000772282|3 +816734|28000772284|3 +816497|28000772286|3 +816675|28000772287|3 +816945|28000772288|3 +816691|28000772290|3 +816824|28000772292|3 +816712|28000772297|3 +816616|28000772299|3 +816897|28000772302|3 +816534|28000772304|3 +816503|28000772305|3 +816646|28000772307|3 +816666|28000772308|3 +816962|28000772309|3 +816720|28000772310|3 +816565|28000772311|3 +816818|28000772312|3 +832004|28000772313|3 +816692|28000772314|3 +816736|28000772315|3 +816660|28000772319|3 +816723|28000772320|3 +816693|28000772322|3 +816572|28000772324|3 +816504|28000772327|3 +816946|28000772328|3 +816893|28000772329|3 +816796|28000772330|3 +816545|28000772332|3 +816608|28000772334|3 +816898|28000772335|3 +816726|28000772336|3 +816776|28000772337|3 +816573|28000772338|3 +816546|28000772340|3 +816920|28000772341|3 +816686|28000772342|3 +816647|28000772343|3 +816574|28000772344|3 +816617|28000772345|3 +816687|28000772346|3 +816973|28000772347|3 +816547|28000772348|3 +816799|28000772349|3 +816604|28000772351|3 +816593|28000772352|3 +816873|28000772353|3 +816959|28000772355|3 +816596|28000772356|3 +816915|28000772360|3 +816921|28000772362|3 +816977|28000772363|3 +816505|28000772364|3 +816685|28000772365|3 +816758|28000772366|3 +816860|28000772367|3 +816709|28000772368|3 +816519|28000772370|3 +816871|28000772371|3 +816819|28000772372|3 +816730|28000772374|3 +816535|28000772375|3 +817018|28000772376|3 +816809|28000772377|3 +816927|28000772378|3 +816800|28000772380|3 +816595|28000772382|3 +816661|28000772383|3 +816936|28000772384|3 +816884|28000772386|3 +816844|28000772387|3 +816520|28000772389|3 +816600|28000772390|3 +816874|28000772391|3 +816530|28000772393|3 +832005|28000772394|3 +816987|28000772395|3 +817086|28000772398|3 +817091|28000772399|3 +817096|28000772400|3 +817110|28000772403|3 +817116|28000772404|3 +817117|28000772405|3 +817145|28000772407|3 +817140|28000772408|3 +817146|28000772409|3 +817147|28000772412|3 +817148|28000772413|3 +817184|28000772414|3 +817186|28000772415|3 +817193|28000772416|3 +817320|28000772421|3 +823763|28000772422|3 +817340|28000772423|3 +817424|28000772432|3 +817435|28000772434|3 +817455|28000772441|3 +817349|28000772442|3 +817468|28000772443|3 +817469|28000772444|3 +817505|28000772445|3 +817510|28000772448|3 +817506|28000772450|3 +817538|28000772451|3 +817524|28000772452|3 +818636|28000772454|3 +818639|28000772459|3 +820304|28000772460|3 +818022|28000772462|3 +819837|28000772463|3 +817751|28000772472|3 +818509|28000772475|3 +818423|28000772476|3 +818784|28000772477|3 +819494|28000772481|3 +820305|28000772488|3 +817653|28000772489|3 +817667|28000772492|3 +820171|28000772495|3 +817766|28000772496|3 +820395|28000772497|3 +818949|28000772499|3 +818096|28000772503|3 +835672|28000772508|5 +818763|28000772509|3 +835625|28000772514|7 +818046|28000772515|3 +817977|28000772516|5 +818856|28000772518|5 +818424|28000772522|3 +834038|28000772523|3 +818738|28000772526|3 +818152|28000772531|3 +819762|28000772534|3 +818026|28000772535|3 +835380|28000772539|5 +834880|28000772541|5 +818640|28000772544|3 +835389|28000772546|7 +820475|28000772553|3 +819681|28000772555|5 +835457|28000772557|3 +818222|28000772558|3 +834868|28000772559|5 +818329|28000772562|3 +818153|28000772564|3 +820205|28000772565|3 +834039|28000772566|3 +834856|28000772567|5 +835264|28000772569|5 +819279|28000772570|3 +819699|28000772584|5 +818442|28000772587|3 +817790|28000772588|3 +818027|28000772592|3 +818154|28000772599|3 +818275|28000772603|3 +818510|28000772618|3 +811140|28000772624|5 +819482|28000772627|3 +817668|28000772628|3 +834903|28000772635|5 +834881|28000772640|5 +820476|28000772644|3 +819838|28000772645|3 +817863|28000772646|3 +817637|28000772648|3 +819702|28000772652|5 +817613|28000772655|3 +819209|28000772657|3 +818276|28000772658|3 +817818|28000772661|3 +819567|28000772662|3 +819922|28000772663|3 +835390|28000772680|7 +835406|28000772686|5 +817736|28000772687|3 +817864|28000772690|3 +835235|28000772691|7 +819568|28000772692|3 +817698|28000772693|3 +818183|28000772697|3 +818443|28000772698|3 +818488|28000772700|3 +818028|28000772703|3 +817791|28000772713|3 +817792|28000772714|3 +818802|28000772718|3 +818184|28000772720|3 +819581|28000772722|3 +834041|28000772723|3 +819280|28000772724|3 +818390|28000772725|3 +819210|28000772728|3 +817669|28000772730|3 +834869|28000772732|5 +835265|28000772734|5 +818837|28000772735|3 +818023|28000772739|3 +834505|28000772742|5 +817752|28000772743|3 +834864|28000772745|5 +819700|28000772748|5 +835391|28000772751|7 +820196|28000772753|3 +835236|28000772755|7 +820172|28000772756|3 +818925|28000772758|3 +819004|28000772762|3 +818511|28000772767|3 +833257|28000772773|5 +818581|28000772776|3 +819042|28000772778|3 +818425|28000772788|3 +832830|28000772790|5 +818306|28000772791|3 +820061|28000772793|3 +818246|28000772799|3 +834496|28000772800|5 +818047|28000772803|3 +818641|28000772808|3 +833002|28000772810|5 +818277|28000772813|3 +819321|28000772815|3 +819044|28000772820|3 +817918|28000772824|3 +820195|28000772829|3 +819165|28000772838|3 +818372|28000772839|3 +819887|28000772842|3 +820449|28000772845|3 +834870|28000772849|5 +819045|28000772850|3 +819569|28000772851|3 +818764|28000772852|3 +834208|28000772853|7 +819264|28000772856|3 +835458|28000772858|3 +818489|28000772860|3 +819466|28000772863|3 +819105|28000772867|3 +819046|28000772868|3 +818373|28000772869|3 +817917|28000772871|3 +835396|28000772874|5 +835673|28000772876|5 +818580|28000772877|3 +820185|28000772880|3 +834895|28000772884|5 +819166|28000772885|3 +820508|28000772889|3 +818169|28000772891|3 +817670|28000772898|3 +818587|28000772899|3 +818403|28000772900|3 +818374|28000772902|3 +818838|28000772903|3 +835459|28000772904|3 +819281|28000772905|3 +820122|28000772906|3 +819043|28000772910|3 +820542|28000772911|3 +835674|28000772912|5 +818444|28000772915|3 +818445|28000772917|3 +819923|28000772923|3 +835221|28000772925|7 +834096|28000772931|5 +818642|28000772939|3 +818435|28000772940|3 +817671|28000772950|3 +817737|28000772951|3 +834882|28000772952|5 +819771|28000772954|3 +820024|28000772956|3 +817767|28000772958|3 +819433|28000772960|3 +819242|28000772964|3 +819364|28000772967|3 +834040|28000772973|3 +834303|28000772974|5 +820197|28000772977|3 +817629|28000772980|3 +820357|28000772981|5 +818029|28000772982|3 +819924|28000772983|3 +819414|28000772986|3 +818097|28000772991|3 +819928|28000772995|3 +820306|28000772996|3 +819570|28000772997|3 +819415|28000772998|3 +819701|28000773001|5 +818278|28000773006|3 +818375|28000773007|3 +818376|28000773010|3 +820504|28000773013|3 +820747|28000773018|3 +820590|28000773021|3 +820582|28000773023|3 +820642|28000773024|3 +820792|28000773025|3 +820835|28000773027|3 +820793|28000773043|3 +820629|28000773044|3 +820841|28000773045|3 +820722|28000773048|3 +820650|28000773050|3 +820689|28000773051|3 +820752|28000773052|3 +820690|28000773056|3 +820648|28000773058|3 +820903|28000773065|3 +820933|28000773066|3 +820940|28000773067|3 +820992|28000773069|3 +820998|28000773071|3 +821004|28000773072|3 +821019|28000773073|3 +821061|28000773076|3 +821054|28000773078|3 +821069|28000773079|3 +821081|28000773080|3 +821095|28000773082|3 +821101|28000773085|3 +821466|28000773086|3 +822053|28000773091|3 +821521|28000773095|3 +822059|28000773098|3 +821406|28000773100|3 +821499|28000773101|3 +837357|28000773105|3 +821964|28000773106|3 +821637|28000773109|3 +821410|28000773112|3 +822599|28000773120|3 +821777|28000773124|3 +822030|28000773125|3 +821952|28000773126|3 +822238|28000773129|5 +822086|28000773133|3 +821467|28000773136|3 +821194|28000773137|3 +822593|28000773141|5 +821942|28000773142|3 +822260|28000773144|5 +822372|28000773146|3 +822418|28000773149|3 +821445|28000773151|3 +821413|28000773153|3 +837617|28000773154|5 +821718|28000773155|3 +837375|28000773157|3 +821237|28000773163|3 +821983|28000773165|3 +821684|28000773166|3 +822547|28000773167|3 +822031|28000773168|3 +836392|28000773169|7 +822307|28000773171|3 +822465|28000773172|3 +822606|28000773173|3 +822261|28000773175|5 +821559|28000773180|3 +821351|28000773182|3 +821182|28000773184|3 +821431|28000773185|3 +837371|28000773192|3 +822333|28000773195|3 +836449|28000773201|5 +821665|28000773202|3 +821468|28000773204|3 +822489|28000773205|3 +821778|28000773209|3 +821787|28000773210|3 +822360|28000773213|3 +822649|28000773215|3 +821333|28000773216|3 +821215|28000773219|3 +821522|28000773221|3 +822385|28000773225|3 +822548|28000773230|3 +822587|28000773232|3 +821461|28000773233|3 +822422|28000773235|3 +837372|28000773238|3 +822373|28000773239|3 +822022|28000773240|3 +821336|28000773244|3 +821455|28000773246|3 +822416|28000773247|3 +821636|28000773249|3 +837615|28000773252|5 +822277|28000773254|3 +821958|28000773255|3 +822032|28000773261|3 +821137|28000773262|3 +822087|28000773264|3 +821548|28000773265|3 +822147|28000773266|3 +822498|28000773269|3 +821411|28000773275|3 +821469|28000773277|3 +821576|28000773279|3 +821334|28000773282|3 +821725|28000773288|3 +821390|28000773290|3 +837399|28000773295|5 +821887|28000773300|3 +821439|28000773307|3 +837400|28000773309|5 +821217|28000773310|3 +822374|28000773312|3 +822085|28000773314|3 +836937|28000773317|7 +822060|28000773321|3 +821685|28000773325|3 +821503|28000773327|3 +821943|28000773328|3 +821674|28000773336|3 +822375|28000773343|3 +822499|28000773353|3 +821738|28000773356|3 +821560|28000773360|3 +836704|28000773361|5 +821719|28000773365|3 +821720|28000773369|3 +822338|28000773375|3 +821337|28000773376|3 +821965|28000773377|3 +837668|28000773380|7 +821772|28000773383|3 +822480|28000773385|3 +821730|28000773386|3 +821352|28000773387|3 +822633|28000773389|3 +822645|28000773391|3 +822660|28000773392|3 +822661|28000773393|3 +822677|28000773396|3 +822679|28000773398|3 +823035|28000773400|3 +822716|28000773402|3 +822703|28000773404|3 +822816|28000773407|3 +822992|28000773408|3 +822910|28000773411|3 +822850|28000773413|3 +823067|28000773415|3 +822993|28000773416|3 +822717|28000773421|3 +823100|28000773422|3 +822779|28000773423|3 +823107|28000773431|3 +823049|28000773433|3 +822951|28000773434|3 +822906|28000773435|3 +822845|28000773437|3 +823101|28000773442|3 +823052|28000773443|3 +822781|28000773445|3 +822718|28000773446|3 +823028|28000773447|3 +823138|28000773449|3 +822804|28000773453|3 +823094|28000773454|3 +822890|28000773456|3 +823018|28000773457|3 +822742|28000773458|3 +823223|28000773461|3 +823175|28000773462|3 +823213|28000773466|3 +823208|28000773468|3 +823177|28000773469|3 +823251|28000773470|3 +823203|28000773471|3 +823272|28000773472|3 +823261|28000773473|3 +823308|28000773475|3 +823339|28000773479|3 +823346|28000773480|3 +823319|28000773481|3 +823354|28000773485|3 +823638|28000773489|3 +838884|28000773491|5 +823553|28000773492|3 +823389|28000773503|3 +823605|28000773504|3 +823513|28000773505|3 +823486|28000773510|3 +823480|28000773511|3 +823390|28000773514|3 +823503|28000773515|3 +823466|28000773516|3 +823577|28000773517|3 +823573|28000773519|3 +823640|28000773521|3 +823680|28000773526|3 +823462|28000773528|3 +838748|28000773529|3 +823437|28000773530|3 +823463|28000773532|3 +838749|28000773533|3 +823538|28000773536|3 +823561|28000773538|3 +823741|28000773541|3 +823774|28000773546|3 +823794|28000773547|3 +823860|28000773551|3 +823945|28000773558|3 +823943|28000773560|3 +823959|28000773561|3 +823958|28000773563|3 +824202|28000773573|3 +824246|28000773574|3 +824191|28000773575|3 +824239|28000773579|3 +824282|28000773581|3 +824190|28000773582|3 +824155|28000773584|3 +824320|28000773587|3 +824352|28000773592|3 +824429|28000773594|3 +824444|28000773595|3 +824468|28000773596|3 +824465|28000773597|3 +824487|28000773598|3 +824478|28000773599|3 +824496|28000773602|3 +824499|28000773609|3 +824635|28000773622|3 +824636|28000773623|3 +824671|28000773628|3 +824669|28000773631|3 +824711|28000773632|3 +824715|28000773634|3 +824717|28000773635|3 +824754|28000773636|3 +824760|28000773637|3 +824755|28000773638|3 +824763|28000773639|3 +824799|28000773644|3 +824798|28000773645|3 +824796|28000773646|3 +824801|28000773647|3 +824793|28000773648|3 +824795|28000773649|3 +824817|28000773650|3 +824821|28000773652|3 +824839|28000773655|3 +824843|28000773656|3 +824883|28000773663|3 +824884|28000773664|3 +824882|28000773665|3 +824925|28000773668|3 +824929|28000773670|3 +824931|28000773671|3 +824938|28000773672|3 +824959|28000773676|3 +825072|28000773679|3 +825073|28000773680|3 +825082|28000773681|3 +825090|28000773682|3 +825091|28000773683|3 +825089|28000773684|3 +825203|28000773691|3 +840461|28000773694|3 +840462|28000773695|3 +840473|28000773697|3 +845140|28000774430|3 +820025|28000774457|3 +847391|28000774614|3 +847356|28000774621|3 +847497|28000774704|3 +847490|28000774709|3 +848447|28000774809|3 +850847|28000775098|3 +853521|28000775385|3 +853520|28000775392|3 +853522|28000775423|3 +853545|28000775437|3 +853696|28000775479|3 +853526|28000775496|3 +856285|28000775830|3 +470444|28000775912|3 +861394|28000776546|3 +821724|28000776622|3 +863267|28000776746|3 +826314|28000777223|5 +875320|28000777744|3 +875566|28000777759|3 +877506|28000778016|3 +836489|28000778298|3 +883163|28000778574|3 +882719|28000778655|3 +883355|28000778670|3 +883360|28000778685|3 +883370|28000778688|3 +883344|28000778693|3 +882820|28000778695|3 +883359|28000778702|3 +885164|28000778873|3 +885315|28000778891|3 +886420|28000778988|3 +891098|28000779572|3 +891094|28000779575|3 +891012|28000779591|3 +891095|28000779636|3 +890988|28000779639|3 +890998|28000779659|3 +891099|28000779698|3 +893002|28000779975|3 +895268|28000780298|3 +898764|28000780815|3 +900207|28000780899|3 +900208|28000780909|3 +900315|28000780998|3 +900260|28000781000|3 +900316|28000781003|3 +901011|28000781082|3 +901187|28000781094|3 +900659|28000781098|3 +901183|28000781120|3 +901064|28000781123|3 +901173|28000781124|3 +901263|28000781125|3 +901392|28000781139|3 +901170|28000781155|3 +901393|28000781159|3 +901394|28000781160|3 +901012|28000781177|3 +901171|28000781201|3 +901172|28000781208|3 +901379|28000781209|3 +901065|28000781244|3 +901380|28000781245|3 +901359|28000781246|3 +825061|28000781329|3 +814596|28000781384|3 +908650|28000782187|2 +908673|28000782188|2 +811559|28000784229|3 +820080|28000786467|3 +823380|28000786536|3 +813884|28000789708|3 +469429|28000790968|3 +629290|28000791676|3 +890818|28000791816|3 +469777|28000796271|3 +813936|28000798844|3 +853739|28000802082|3 +810573|28000803732|3 +681272|28000806110|3 +729753|28000806527|3 +812487|28000807300|3 +814854|28000807306|3 +816594|28000808295|3 +817336|28000809609|3 +541720|28000811466|3 +817800|28000811687|3 +820043|28000811932|3 +817978|28000811940|5 +698823|28000812493|3 +818857|28000816025|5 +815738|28000818856|3 +823205|28000820158|3 +681914|28000821188|3 +815931|28000822577|3 +725127|28000824200|3 +816910|28000826246|3 +729959|28000826398|3 +812657|28000829158|3 +818185|28000829664|3 +817255|28001014307|3 +811595|28001014439|3 +822033|28001014446|3 +824279|28001014637|3 +819467|28001014883|3 +817486|28001014912|3 +815639|28001014936|3 +822854|28001014997|3 +812464|28001015040|3 +817679|28001015063|3 +821689|28001015089|3 +821804|28001015127|3 +822600|28001015646|3 +812698|28001015778|3 +834050|28001015822|3 +815947|28001016074|3 +814798|28001016362|3 +814265|28001016546|3 +816462|28001017032|3 +818447|28001017077|3 +541168|28001017089|3 +817333|28001017118|3 +823611|28001017197|3 +815605|28001017440|3 +816826|28001017453|3 +826403|28001017828|3 +748167|28001018964|3 +651038|28001019426|3 +820497|28001019512|3 +816525|28001019855|3 +824015|28001020545|3 +819305|28001020554|3 +621938|28001021344|3 +818921|28001021441|3 +814738|28001021659|3 +821909|28001021956|3 +668190|28001022220|3 +812431|28001022651|3 +820081|28001023649|3 +812656|28001023719|3 +534290|28001024027|3 +824088|28001024052|3 +559232|28001024079|3 +470451|28001024092|3 +824800|28001024202|3 +815592|28001024231|3 +814708|28001025436|3 +473375|28001026998|3 +823535|28001027011|3 +811507|28001027159|3 +819695|28001027164|5 +789050|28001027278|3 +813506|28001027334|3 +816567|28001027543|3 +898769|28001028856|3 +471609|28001028863|3 +559325|28001028949|3 +815641|28001029589|3 +814586|28001029984|3 +835381|28001029985|5 +817649|28001030026|3 +816558|28001031127|3 +599586|28001031239|3 +818839|28001031424|3 +815357|28001031494|3 +813754|28001032221|3 +820307|28001033150|3 +823957|28001033157|3 +815355|28001033273|3 +817470|28001033430|3 +819483|28001033750|3 +752173|28001034009|3 +811005|28001035664|3 +824934|28001035898|3 +699405|28001036264|3 +664440|28001036995|3 +634487|28001037240|3 +751304|28001037464|3 +818669|28001037628|3 +816441|28001038962|3 +810310|28001039020|3 +813104|28001039219|3 +627684|28001039280|3 +535696|28001039618|3 +814504|28001041270|3 +823710|28001042235|3 +814824|28001042668|3 +813592|28001043444|3 +853736|28001043708|3 +813502|28001044149|3 +817234|28001045064|3 +816261|28001045887|3 +812426|28001046028|3 +814826|28001046447|3 +815864|28001047250|3 +471628|28001047254|3 +470470|28001047447|3 +823241|28001047601|3 +817512|28001047609|3 +819565|28001047637|3 +822964|28001047741|3 +812415|28001048008|3 +817115|28001048178|3 +819214|28001048343|3 +709185|28001048520|3 +824741|28001048660|3 +823481|28001048965|3 +621877|28001049077|3 +749730|28001049442|3 +824070|28001050105|3 +818401|28001050112|3 +730009|28001050132|3 +816771|28001050333|3 +810181|28001050373|3 +621470|28001050396|3 +818954|28001050426|3 +655081|28001050512|3 +536854|28001050565|3 +791008|28001050596|3 +812177|28001050612|3 +819017|28001050707|3 +820175|28001050746|3 +729987|28001050756|3 +817143|28001050845|3 +823881|28001050870|3 +821479|28001050920|3 +822819|28001051017|3 +788457|28001051050|3 +819215|28001051080|3 +621433|28001051092|3 +815616|28001051137|3 +824712|28001051148|3 +792336|28001051156|3 +824366|28001051164|3 +834872|28001051172|5 +822891|28001051308|3 +567234|28001051688|3 +810980|28001051739|5 +824470|28001051772|3 +817866|28001052059|3 +820176|28001052068|3 +816618|28001052167|3 +821138|28001052205|3 +823857|28001052511|3 +800097|28001052521|3 +812568|28001052532|3 +817482|28001052537|3 +819202|28001052693|3 +699528|28001052734|3 +729910|28001052865|3 +686471|28001052936|3 +789034|28001053125|3 +541737|28001053171|3 +816279|28001053231|3 +818920|28001053233|3 +817498|28001053317|3 +823776|28001053421|3 +837671|28001053434|7 +821848|28001053439|3 +818186|28001053440|3 +822061|28001053792|3 +824492|28001053799|3 +820389|28001053816|3 +819468|28001053904|3 +816830|28001053905|3 +823403|28001053907|3 +813881|28001053931|3 +813608|28001053964|3 +822062|28001054093|3 +729996|28001054246|3 +815971|28001054255|3 +815125|28001054300|3 +599732|28001055016|3 +825189|28001055435|3 +825188|28001055438|3 +730010|28001055634|3 +816331|28001055789|3 +817907|28001055829|3 +818238|28001055852|3 +814031|28001055986|3 +816649|28001056173|3 +654734|28001056193|3 +812579|28001056222|3 +818284|28001056229|3 +812485|28001056436|3 +813606|28001056488|3 +817875|28001056568|3 +821956|28001056575|3 +819008|28001056590|3 +810521|28001056707|3 +539336|28001056744|3 +816548|28001057157|3 +811658|28001057306|3 +812165|28001057456|3 +810645|28001057599|3 +885161|28001057824|3 +818637|28001057881|3 +818001|28001057949|3 +819265|28001057977|3 +823674|28001058114|3 +821985|28001058429|3 +838755|28001058463|3 +816170|28001058468|3 +817172|28001058491|3 +635430|28001058539|3 +816899|28001058550|3 +635447|28001058555|3 +812569|28001058562|3 +823014|28001058749|3 +816862|28001058897|3 +824445|28001058937|3 +822828|28001058942|3 +816947|28001058996|3 +816948|28001059183|3 +815827|28001059436|3 +837383|28001059482|3 +818446|28001059701|3 +821470|28001059854|3 +883319|28001059864|3 +823336|28001059920|3 +822859|28001060830|3 +814460|28001061355|3 +768227|28001061635|3 +821508|28001063714|3 +814742|28001063770|3 +814756|28001064415|3 +824328|28001064417|3 +822563|28001064427|3 +488950|28001064854|3 +820390|28001065357|3 +451251|28001065391|3 +862918|28001065497|5 +818237|28001065663|3 +606278|28001065952|3 +823627|28001065969|3 +821354|28001066083|3 +834873|28001066169|5 +612296|28001066172|3 +837553|28001066178|3 +819566|28001066262|3 +537943|28001066301|3 +617882|28001066399|3 +541739|28001066782|3 +818467|28001066849|3 +823173|28001066854|3 +814347|28001066898|3 +883156|28001066916|3 +835460|28001066926|3 +815962|28001066935|3 +815699|28001067041|3 +821381|28001067474|3 +840483|28001067540|3 +823266|28001067866|3 +818002|28001068099|3 +822211|28001068478|3 +729722|28001068656|3 +752005|28001070068|3 +820177|28001070759|3 +820562|28001070775|3 +541688|28001070909|3 +820178|28001070974|3 +820742|28001070983|3 +821849|28001071129|3 +825028|28001071804|3 +823386|28001071820|3 +824837|28001071832|3 +815978|28001071844|3 +815981|28001072034|3 +471629|28001072056|3 +810492|28001072073|3 +819365|28001072085|3 +840479|28001072109|3 +821946|28001072294|3 +810580|28001072653|3 +814516|28001072832|3 +819282|28001072982|3 +813764|28001073150|3 +821886|28001073360|3 +810453|28001073697|3 +819486|28001073996|3 +492839|28001074040|3 +811115|28001074098|3 +822861|28001074152|3 +822793|28001074323|3 +818638|28001074355|3 +814637|28001074480|3 +882955|28001074560|3 +819366|28001074856|3 +777304|28001074886|3 +557332|28001074922|3 +816609|28001074924|3 +810199|28001074956|3 +768754|28001075118|3 +729758|28001075124|3 +821690|28001075166|3 +819929|28001075243|3 +814466|28001075321|3 +814845|28001075500|3 +883168|28001075567|3 +815938|28001075625|3 +813221|28001075638|3 +551721|28001075644|3 +567933|28001075706|3 +812476|28001075782|3 +606202|28001075829|3 +824751|28001075957|3 +824338|28001075963|3 +811750|28001075976|3 +814976|28001076056|3 +812407|28001076065|3 +837384|28001076210|3 +817231|28001076229|3 +758878|28001076553|3 +819509|28001076583|3 +900257|28001076666|3 +818785|28001076711|3 +863268|28001076823|3 +811387|28001076877|3 +811467|28001076879|3 +571482|28001077946|3 +819072|28001078001|3 +813313|28001078246|3 +901364|28001078298|3 +815693|28001078548|3 +818071|28001078576|3 +819343|28001078652|3 +836503|28001078845|3 +824327|28001079780|3 +895820|28001079846|3 +622063|28001079987|3 +559330|28001082381|3 +812679|28001082642|3 +822601|28001082643|3 +834499|28001083827|5 +823963|28001083831|3 +817782|28001084480|3 +819048|28001084919|3 +822361|28001085010|3 +820491|28001085271|3 +818810|28001085272|3 +749725|28001085599|3 +819598|28001086146|3 +541050|28001086571|3 +816632|28001086632|3 +816206|28001088228|3 +814624|28001088326|3 +472320|28001089318|3 +749071|28001089426|3 +823351|28001089722|3 +518555|28001091252|3 +814459|28001091923|3 +820536|28001092069|3 +824367|28001092495|3 +818459|28001092870|3 +454732|28001092995|3 +454733|28001092996|3 +817001|28001093161|3 +835397|28001093454|5 +642925|28001093461|3 +817409|28001094058|3 +817049|28001094286|3 +817894|28001094505|3 +824448|28001095696|3 +489080|28001096168|3 +575179|28001096531|3 +814759|28001096845|3 +822720|28001097505|3 +788791|28001097528|3 +812261|28001097662|3 +822241|28001097665|5 +822833|28001097773|3 +821218|28001099509|3 +485361|28001100142|3 +834051|28001100156|3 +816682|28001100238|3 +751168|28001100307|3 +820985|28001100432|3 +812662|28001100543|3 +820556|28001100550|3 +632788|28001100579|3 +824594|28001100737|3 +823193|28001101186|3 +825197|28001102189|3 +687319|28001102427|3 +824953|28001102569|3 +816638|28001103650|3 +822659|28001103703|3 +669840|28001103722|3 +820812|28001103733|3 +824488|28001103778|3 +817914|28001103966|3 +752176|28001103977|3 +816820|28001103981|3 +460273|28001104275|3 +820953|28001104506|3 +621471|28001104607|3 +815786|28001104651|3 +550746|28001104654|3 +752177|28001104871|3 +518044|28001104894|3 +814754|28001104923|3 +814610|28001105116|3 +729988|28001105534|3 +621420|28001105734|3 +699406|28001105897|3 +824541|28001106323|3 +632686|28001106800|3 +816048|28001106802|3 +816786|28001107194|3 +811445|28001107383|3 +591777|28001107675|3 +810674|28001107873|3 +824794|28001108096|3 +729924|28001108405|3 +634484|28001108643|3 +817865|28001108646|3 +817979|28001109239|5 +821773|28001109241|3 +813897|28001109255|3 +609485|28001109288|3 +818512|28001109418|3 +821330|28001110098|3 +818840|28001110101|3 +835621|28001110124|7 +814743|28001110143|3 +820525|28001110682|3 +817394|28001111012|3 +814336|28001111052|3 +821788|28001111131|3 +824740|28001111202|3 +813095|28001111287|3 +539337|28001111407|3 +824924|28001111680|3 +814611|28001111850|3 +824240|28001112070|3 +805376|28001112199|3 +878620|28001112531|3 +752251|28001112592|3 +811927|28001113132|3 +832996|28001113134|5 +604036|28001113388|3 +810466|28001114197|3 +788755|28001114204|3 +622121|28001114353|3 +755475|28001114357|3 +641485|28001114827|3 +900238|28001114939|3 +485393|28001115067|3 +606266|28001115142|3 +699424|28001115212|3 +813570|28001115296|3 +816426|28001116281|3 +821414|28001116401|3 +822242|28001116403|5 +823652|28001116432|3 +788808|28001116545|3 +823542|28001116783|3 +812434|28001116793|3 +824344|28001116863|3 +621939|28001116865|3 +824353|28001116877|3 +476335|28001117238|3 +816853|28001117295|3 +821172|28001117296|3 +821456|28001117298|3 +814581|28001117518|3 +820358|28001117969|5 +824988|28001118398|3 +535697|28001119802|3 +553236|28001119820|3 +812163|28001120618|3 +821139|28001120762|3 +451282|28001120807|3 +709186|28001121536|3 +810533|28001122181|3 +621953|28001122813|3 +540655|28001123181|3 +824695|28001123240|3 +834052|28001123520|3 +824982|28001123626|3 +814558|28001124017|3 +819294|28001124258|3 +818486|28001124259|3 +814105|28001124413|3 +679867|28001125250|3 +821801|28001125330|3 +813548|28001125365|3 +892669|28001126447|3 +817842|28001126550|3 +824028|28001126559|3 +539417|28001126700|3 +574486|28001126886|3 +758096|28001127088|3 +788792|28001127115|3 +710102|28001127684|3 +810191|28001127918|3 +540363|28001128157|3 +679871|28001128228|3 +775409|28001128326|3 +819927|28001128342|3 +823675|28001128344|3 +817801|28001128347|3 +815325|28001128546|3 +736473|28001128791|3 +818343|28001129009|3 +539418|28001129170|3 +815490|28001129330|3 +814597|28001129407|3 +821193|28001129408|3 +824648|28001129409|3 +816894|28001129596|3 +816963|28001129599|3 +818101|28001129711|3 +821164|28001129827|3 +816585|28001129863|3 +814295|28001129903|3 +814964|28001130256|3 +811481|28001130519|3 +777799|28001130724|3 +816916|28001130727|3 +816627|28001130793|3 +814752|28001130924|3 +822154|28001130935|3 +541169|28001131106|3 +823332|28001131376|3 +823328|28001131398|3 +626153|28001131454|3 +812144|28001131531|3 +818760|28001131912|3 +697038|28001132430|3 +811405|28001132436|3 +816292|28001132438|3 +824622|28001133008|3 +901188|28001133167|3 +466513|28001133574|3 +824923|28001133576|3 +823656|28001133735|3 +815949|28001134068|3 +822596|28001134367|5 +673090|28001134675|3 +821122|28001134900|3 +818344|28001135011|3 +814750|28001135257|3 +749705|28001136068|3 +810759|28001136178|3 +821584|28001136405|3 +825247|28001136709|7 +824718|28001136857|3 +825012|28001136860|3 +817006|28001137053|3 +819167|28001137160|3 +665790|28001137398|3 +666190|28001137648|3 +824611|28001137725|3 +824612|28001137730|3 +883346|28001137733|3 +901362|28001137771|3 +570932|28001139569|3 +815976|28001139579|3 +823558|28001139597|3 +821851|28001139721|3 +814804|28001139843|3 +811401|28001139932|3 +779059|28001139946|3 +824530|28001139947|3 +812218|28001140307|3 +821739|28001140738|3 +824836|28001140791|3 +834896|28001141759|5 +655613|28001141993|3 +621960|28001142154|3 +823962|28001142229|3 +540358|28001142651|3 +819579|28001142669|3 +818003|28001142675|3 +812519|28001142691|3 +816890|28001142756|3 +789035|28001142808|3 +820038|28001142829|3 +817138|28001143224|3 +811965|28001143568|3 +815093|28001143613|3 +813461|28001143931|3 +826004|28001144110|3 +812097|28001144675|3 +846527|28001144678|3 +540400|28001144965|3 +813097|28001145183|3 +709119|28001145201|3 +901306|28001145410|3 +824381|28001145430|3 +820671|28001145470|3 +655187|28001145561|3 +818024|28001145607|3 +818564|28001145732|3 +641983|28001146052|3 +846528|28001146064|3 +485358|28001146318|3 +812363|28001146913|3 +818922|28001147592|3 +729730|28001147792|3 +901365|28001148009|3 +821615|28001148352|3 +813280|28001148930|3 +814578|28001149295|3 +816922|28001149680|3 +813181|28001149989|3 +823533|28001150022|3 +814986|28001150236|3 +814342|28001150286|3 +823451|28001150369|3 +810080|28001150664|3 +763430|28001150672|3 +823166|28001150931|3 +813765|28001151032|3 +810856|28001151091|3 +813622|28001151690|3 +810073|28001151692|3 +812150|28001151723|3 +815577|28001151766|3 +815620|28001151771|3 +816668|28001151825|3 +824234|28001152180|3 +835100|28001152336|5 +729989|28001152502|3 +812358|28001152581|3 +621434|28001152582|3 +815496|28001152695|3 +462014|28001152820|3 +821300|28001152903|3 +810493|28001152980|3 +824705|28001152992|3 +817493|28001153000|3 +821412|28001153125|3 +816436|28001153202|3 +698788|28001153207|3 +813890|28001153224|3 +819590|28001153225|3 +812361|28001153313|3 +823660|28001153363|3 +822063|28001153407|3 +812123|28001153416|3 +818841|28001154268|3 +824237|28001157657|3 +908642|28001159190|2 +883320|28001159319|3 +811758|28001160605|3 +824860|28001164241|3 +728925|28001164264|3 +813894|28001164312|3 +825047|28001164397|3 +818448|28001164478|3 +816273|28001164550|3 +813733|28001164554|3 +823454|28001164625|3 +814729|28001164656|3 +883357|28001164659|3 +765973|28001164709|3 +835461|28001164715|3 +823952|28001164775|3 +823197|28001164797|3 +789045|28001164805|3 +822466|28001164878|3 +812610|28001164895|3 +891013|28001164949|3 +816454|28001164972|3 +901168|28001165065|3 +823083|28001165198|3 +821805|28001165230|3 +810869|28001165254|3 +655188|28001165272|3 +814327|28001165325|3 +819203|28001165386|3 +817665|28001165431|3 +822492|28001165433|3 +825217|28001165445|7 +815952|28001165492|3 +835652|28001165553|7 +908668|28001165570|2 +825071|28001165582|3 +722486|28001165598|3 +796500|28001165620|3 +818030|28001165623|3 +821446|28001165827|3 +816857|28001165949|3 +816046|28001165957|3 +822934|28001166012|3 +822024|28001166214|3 +552782|28001166270|3 +824552|28001166322|3 +824784|28001166400|3 +816875|28001166482|3 +824835|28001166612|3 +817129|28001166614|3 +818504|28001166636|3 +723406|28001166667|3 +813323|28001166699|3 +592427|28001166771|3 +688321|28001166868|3 +823663|28001167077|3 +825209|28001167119|7 +817904|28001167151|3 +816532|28001167193|3 +788945|28001167292|3 +539233|28001167367|3 +723402|28001167378|3 +835622|28001167604|7 +819204|28001167655|3 +749072|28001167740|3 +824703|28001167817|3 +811981|28001167908|3 +812126|28001167968|3 +552376|28001167994|3 +592231|28001168097|3 +616783|28001168218|3 +495955|28001168256|3 +811501|28001168313|3 +823779|28001168406|3 +813094|28001168428|3 +821817|28001168455|3 +823549|28001168457|3 +813801|28001168531|3 +824779|28001168578|3 +674540|28001168716|3 +823423|28001168774|3 +558086|28001168777|3 +812812|28001168892|3 +729759|28001168907|3 +697083|28001168976|3 +688217|28001169052|3 +814511|28001169277|3 +637237|28001169352|3 +824431|28001169505|3 +592365|28001169516|3 +824785|28001169565|3 +749630|28001169571|3 +814150|28001169633|3 +814762|28001169799|3 +810805|28001169832|3 +823458|28001169841|3 +814821|28001169949|3 +550647|28001169980|3 +819205|28001170010|3 +811409|28001170116|3 +814502|28001170237|3 +810702|28001170248|3 +816407|28001170284|3 +606204|28001170300|3 +655614|28001170483|3 +814570|28001170590|3 +818565|28001170754|3 +814474|28001170830|3 +602486|28001170872|3 +810164|28001170985|3 +817427|28001171008|3 +819397|28001171083|3 +815809|28001171166|3 +821353|28001171195|3 +811183|28001171250|3 +694530|28001171282|3 +824326|28001171324|3 +822025|28001171865|3 +703686|28001171882|3 +818566|28001171999|3 +819206|28001172079|3 +812071|28001172129|3 +815248|28001172146|3 +823497|28001172187|3 +901098|28001172220|3 +817475|28001172224|3 +813777|28001172232|3 +823597|28001172516|3 +823337|28001173861|3 +816582|28001173925|3 +703837|28001173976|3 +811855|28001173977|3 +821981|28001174283|3 +817650|28001174290|3 +814425|28001174562|3 +836399|28001174722|7 +811932|28001175250|3 +818031|28001175466|3 +817029|28001175566|3 +816639|28001175706|3 +812141|28001177766|3 +728707|28001178405|3 +820527|28001178578|3 +821957|28001178898|3 +728708|28001179195|3 +814266|28001179334|3 +815617|28001179951|3 +816721|28001180030|3 +777522|28001180919|3 +818567|28001181353|3 +819236|28001181612|3 +817666|28001181692|3 +821774|28001181693|3 +821440|28001181696|3 +507202|28001181747|3 +818505|28001181827|3 +814267|28001182087|3 +812004|28001182168|3 +810071|28001182910|3 +818929|28001183282|3 +819599|28001183307|3 +823559|28001183469|3 +813878|28001183564|3 +729911|28001183653|3 +729912|28001183655|3 +815252|28001183891|3 +818780|28001184110|3 +818568|28001184132|3 +824919|28001184475|3 +816821|28001184657|3 +856097|28001184926|3 +816876|28001185219|3 +810646|28001186160|3 +817843|28001186254|3 +835623|28001186311|7 +771922|28001186828|3 +729913|28001186871|3 +823488|28001186874|3 +814922|28001187373|3 +818271|28001188184|3 +817635|28001188314|3 +752311|28001189226|3 +811018|28001189343|3 +822491|28001189344|3 +751399|28001189394|3 +818032|28001189636|3 +751376|28001190058|3 +816787|28001190357|3 +810183|28001191239|3 +765974|28001191448|3 +840497|28001191576|3 +823110|28001191984|3 +815980|28001192217|3 +771937|28001192496|3 +824738|28001192618|3 +658834|28001192695|3 +812282|28001192707|3 +679837|28001192915|3 +816810|28001192922|3 +816790|28001192923|3 +760719|28001192932|3 +898770|28001193119|3 +467634|28001193444|3 +817511|28001194091|3 +823484|28001194217|3 +821297|28001195167|3 +898757|28001195349|3 +810155|28001195838|3 +822791|28001197182|3 +817540|28001197760|3 +814151|28001197977|3 +717677|28001199213|3 +819207|28001199681|3 +819600|28001199788|3 +747078|28001199914|3 +788948|28001199921|3 +814580|28001200532|3 +818048|28001200613|3 +818930|28001201298|3 +847359|28001201414|3 +901390|28001201708|3 +822760|28001201735|3 +752010|28001202891|3 +621950|28001203079|3 +810885|28001203582|3 +816802|28001203583|3 +812567|28001203594|3 +837405|28001203648|5 +687771|28001203692|3 +823806|28001203707|3 +823807|28001203711|3 +834877|28001203783|5 +821356|28001203788|3 +599733|28001203832|3 +836400|28001203896|7 +816506|28001203916|3 +816695|28001203936|3 +751169|28001203947|3 +635238|28001204016|3 +810806|28001204104|3 +643377|28001204175|3 +820594|28001204342|3 +751174|28001204756|3 +814955|28001205032|3 +788461|28001205101|3 +823045|28001205807|3 +822989|28001205810|3 +814622|28001206311|3 +643389|28001206413|3 +621776|28001206559|3 +752252|28001206658|3 +792390|28001207039|3 +908679|28001207156|2 +816697|28001207199|3 +810705|28001207289|3 +749266|28001207649|3 +814353|28001207679|3 +599855|28001207713|3 +451283|28001207757|3 +688172|28001207857|3 +815535|28001208038|3 +749268|28001208054|3 +822370|28001208064|3 +819591|28001208066|3 +819611|28001208239|3 +816737|28001208306|3 +814631|28001208338|3 +818033|28001208368|3 +655189|28001208371|3 +816858|28001208372|3 +552636|28001208507|3 +813494|28001208511|3 +821098|28001208528|3 +810335|28001210660|3 +610784|28001210662|3 +812134|28001210663|3 +816957|28001210666|3 +822676|28001210670|3 +822739|28001210671|3 +815210|28001210699|3 +853512|28001210710|3 +901356|28001210768|3 +816866|28001210903|3 +821480|28001211023|3 +789026|28001211067|3 +697188|28001211134|3 +817905|28001211184|3 +832154|28001211431|3 +752024|28001211455|3 +606176|28001211510|3 +816651|28001211563|3 +816603|28001211565|3 +823956|28001211785|3 +814923|28001212350|3 +728926|28001212581|3 +451281|28001212800|3 +728709|28001213400|3 +823283|28001213405|3 +821355|28001213458|3 +816958|28001213523|3 +821102|28001213627|3 +824762|28001213946|3 +729767|28001214014|3 +811673|28001214031|3 +834119|28001214078|5 +815996|28001214131|3 +826346|28001214134|5 +815874|28001214167|3 +462506|28001215457|3 +655175|28001216117|3 +769097|28001216223|3 +788794|28001216247|3 +814338|28001216331|3 +816568|28001216339|3 +819696|28001216347|5 +818170|28001216349|3 +837673|28001216353|7 +823961|28001216798|3 +820982|28001217055|3 +817041|28001217056|3 +621948|28001217285|3 +765975|28001217560|3 +815838|28001217623|3 +821428|28001217659|3 +816586|28001217729|3 +823926|28001218132|3 +479585|28001218197|3 +642936|28001218551|3 +633787|28001219945|3 +898768|28001219979|3 +814198|28001220172|3 +470449|28001220318|3 +814731|28001220559|3 +816455|28001220560|3 +655598|28001220800|3 +591934|28001221451|3 +836401|28001221514|7 +816285|28001221601|3 +817204|28001222318|3 +819416|28001222600|3 +824391|28001222672|3 +467633|28001222947|3 +821244|28001223060|3 +812738|28001223254|3 +813524|28001223783|3 +821818|28001224305|3 +810943|28001224324|3 +814365|28001224713|3 +815778|28001224728|3 +728927|28001224817|3 +811195|28001224836|3 +824672|28001225163|3 +847128|28001225494|3 +901099|28001225500|3 +824339|28001225611|3 +812031|28001225754|3 +810188|28001225981|3 +819487|28001226173|3 +813520|28001226396|3 +818352|28001227000|3 +822607|28001227056|3 +612592|28001227101|3 +816260|28001227228|3 +621435|28001228146|3 +814984|28001228730|3 +708886|28001228855|3 +824935|28001229315|3 +816355|28001229790|3 +901189|28001229791|3 +819306|28001229831|3 +816738|28001229834|3 +655612|28001229886|3 +540364|28001230208|3 +812121|28001230226|3 +834497|28001230592|5 +748223|28001231180|3 +818034|28001231367|3 +821388|28001231915|3 +641988|28001232107|3 +815557|28001232120|3 +611930|28001232135|3 +816775|28001232172|3 +723399|28001232184|3 +811734|28001232194|3 +814349|28001232198|3 +823141|28001232238|3 +539724|28001232320|3 +819144|28001232355|5 +820897|28001233137|3 +811002|28001234628|3 +814092|28001234675|3 +485357|28001234711|3 +485362|28001234753|3 +612294|28001234875|3 +812630|28001234877|3 +823953|28001234885|3 +818098|28001234900|3 +541729|28001234962|3 +815253|28001235011|3 +814268|28001235012|3 +824456|28001235037|3 +819009|28001235090|3 +671489|28001235143|3 +818931|28001235175|3 +539736|28001235340|3 +814218|28001235610|3 +621777|28001235763|3 +882956|28001235929|3 +725026|28001236059|3 +823256|28001236125|3 +818285|28001236205|3 +469660|28001236322|3 +834904|28001236338|5 +788756|28001236373|3 +751570|28001236375|3 +752253|28001236378|3 +819997|28001236388|3 +559343|28001236478|3 +812528|28001236820|3 +815272|28001237326|3 +816517|28001237686|3 +459434|28001238017|3 +814753|28001238096|3 +788759|28001239009|3 +635445|28001239042|3 +814344|28001239149|3 +821465|28001239212|3 +810315|28001239276|3 +811880|28001239277|3 +822076|28001239282|3 +821023|28001239348|3 +679824|28001239443|3 +818377|28001239490|3 +814628|28001239498|3 +810609|28001239559|3 +810954|28001239561|3 +820638|28001239562|3 +818084|28001239694|3 +815138|28001239907|3 +814356|28001239946|3 +824719|28001239955|3 +729754|28001241027|3 +535550|28001241127|3 +788256|28001241488|3 +814562|28001241507|3 +825945|28001241708|3 +819010|28001241717|3 +749179|28001241800|3 +814530|28001241805|3 +816679|28001241806|3 +821523|28001241875|3 +824706|28001241879|3 +892606|28001241919|3 +819208|28001241928|3 +816559|28001242021|3 +834865|28001242036|5 +816859|28001242985|3 +819362|28001243033|3 +690337|28001243140|3 +748221|28001243533|3 +728679|28001243889|3 +489051|28001243959|3 +717673|28001244194|3 +788795|28001244198|3 +788243|28001244256|3 +621779|28001244622|3 +835222|28001244630|7 +622082|28001244996|3 +821331|28001245049|3 +699384|28001245189|3 +816498|28001245285|3 +810931|28001246190|5 +816637|28001246329|3 +812119|28001246449|3 +813877|28001246500|3 +824354|28001246525|3 +599865|28001246837|3 +818569|28001246849|3 +710086|28001247004|3 +621682|28001247122|3 +816762|28001247292|3 +816575|28001247409|3 +814947|28001247541|3 +810536|28001247761|3 +460485|28001247881|3 +788649|28001247883|3 +811931|28001247929|3 +748072|28001248036|3 +788244|28001248708|3 +816715|28001248875|5 +818570|28001250108|3 +816602|28001250822|3 +535551|28001251098|3 +815965|28001251229|3 +818955|28001251230|3 +824359|28001251350|3 +817802|28001251388|3 +834500|28001251390|5 +749267|28001251541|3 +813943|28001251687|3 +788239|28001251860|3 +749709|28001251866|3 +819417|28001252617|3 +818107|28001253054|3 +541051|28001253605|3 +815735|28001253967|3 +822371|28001254288|3 +815866|28001254470|3 +815943|28001254479|3 +690311|28001254583|3 +812731|28001254720|3 +824540|28001254808|3 +825053|28001254897|3 +825057|28001256202|3 +826349|28001256217|5 +818378|28001256230|3 +816624|28001256361|3 +469758|28001256962|3 +816680|28001257675|3 +883161|28001257714|3 +821726|28001257775|3 +825080|28001258118|3 +816524|28001258179|5 +540704|28001258563|3 +821301|28001258594|3 +788757|28001258603|3 +816754|28001258691|3 +581186|28001258772|3 +655755|28001258779|3 +825042|28001259181|3 +899569|28001259259|3 +882720|28001260111|3 +699425|28001260304|3 +730011|28001260555|3 +635486|28001260891|3 +810993|28001261181|3 +812215|28001261185|3 +815675|28001261192|3 +816284|28001261194|3 +820396|28001261196|3 +834120|28001261198|5 +820167|28001261200|3 +822293|28001261202|3 +823673|28001261206|3 +825109|28001261207|3 +816328|28001261917|3 +822658|28001261921|3 +834878|28001262750|5 +822869|28001262814|3 +819573|28001262924|3 +812572|28001263492|3 +489030|28001264191|3 +812032|28001264246|3 +834836|28001264250|5 +655176|28001264987|3 +837608|28001265726|5 +788648|28001265827|3 +815394|28001265849|3 +821332|28001266043|3 +749710|28001266452|3 +814803|28001266781|3 +816633|28001266782|3 +817011|28001266783|3 +816625|28001266819|3 +816803|28001266828|3 +818368|28001266829|3 +824477|28001266832|3 +540250|28001266891|3 +816807|28001266914|3 +812356|28001266985|3 +811372|28001267139|3 +815239|28001267526|3 +818575|28001267541|3 +823176|28001267542|3 +824378|28001267543|3 +837603|28001267689|5 +816838|28001268338|3 +488931|28001268676|3 +900664|28001269036|3 +749724|28001269269|3 +812139|28001269456|3 +816739|28001270180|3 +818506|28001270189|3 +821256|28001270191|3 +822753|28001270212|3 +539865|28001270257|3 +824486|28001270700|3 +749269|28001270720|3 +635433|28001270771|3 +816722|28001270813|3 +821389|28001270818|3 +810581|28001270951|3 +685072|28001271147|3 +840474|28001271253|3 +814657|28001271264|3 +825092|28001271529|3 +699426|28001271537|3 +822608|28001271934|3 +823140|28001272373|3 +813254|28001272376|3 +789027|28001272388|3 +823158|28001272422|3 +820186|28001272456|3 +816549|28001272469|3 +816846|28001272492|3 +811174|28001272525|3 +810445|28001272949|3 +900665|28001272953|3 +599856|28001273207|3 +597234|28001273221|3 +641486|28001273236|3 +811423|28001273246|3 +826745|28001273248|5 +817316|28001273250|3 +835462|28001273251|3 +621586|28001273252|3 +812479|28001273685|3 +655190|28001274604|3 +798206|28001274615|3 +470447|28001275093|3 +749711|28001275919|3 +752312|28001275926|3 +810231|28001277158|3 +899219|28001277163|3 +812909|28001277187|3 +813183|28001277189|3 +813464|28001277191|3 +815181|28001277193|3 +815797|28001277194|3 +816655|28001277197|3 +816778|28001277200|3 +819363|28001277211|3 +834053|28001277223|3 +822199|28001277232|3 +822023|28001277239|3 +821438|28001277255|3 +815985|28001278175|3 +679833|28001278810|3 +788000|28001278901|3 +811283|28001278906|3 +821506|28001278908|3 +822567|28001278910|3 +832798|28001278912|7 +822852|28001278913|3 +825653|28001278917|5 +751999|28001279610|3 +789051|28001279659|3 +810857|28001280189|3 +813912|28001280193|3 +819469|28001280206|3 +813346|28001280246|3 +824673|28001280278|3 +575184|28001280324|3 +688471|28001280544|3 +641885|28001280621|3 +819706|28001280701|5 +823547|28001280809|3 +823591|28001280819|3 +810087|28001281200|3 +810807|28001281204|3 +812897|28001281207|3 +832002|28001281213|3 +816854|28001281214|3 +816951|28001281218|3 +816815|28001281222|3 +816822|28001281224|3 +834898|28001281236|5 +822664|28001281237|3 +824459|28001281254|3 +819899|28001281296|3 +823306|28001281300|3 +729939|28001281766|3 +901307|28001281829|3 +812290|28001281875|3 +598684|28001281877|3 +485371|28001281916|3 +901177|28001281925|3 +813509|28001281950|3 +789046|28001281968|3 +825055|28001281991|3 +824385|28001282921|3 +821845|28001282947|3 +813598|28001283327|3 +655290|28001283594|3 +813630|28001283645|3 +820126|28001283652|3 +788814|28001283725|3 +816990|28001283867|3 +777652|28001283958|3 +822766|28001284084|3 +811718|28001284183|3 +622094|28001284563|3 +470400|28001284578|3 +812368|28001286036|3 +553486|28001288869|3 +470445|28001289208|3 +570822|28001289350|3 +581734|28001289450|3 +591286|28001289561|3 +592232|28001289562|3 +815948|28001289640|3 +539419|28001289745|3 +550648|28001289806|3 +811341|28001289845|3 +817479|28001289852|3 +810995|28001289873|3 +811473|28001289874|3 +811683|28001289878|3 +812028|28001289881|3 +812131|28001289883|3 +812226|28001289884|3 +812373|28001289887|3 +812555|28001289901|3 +812688|28001289906|3 +812925|28001289910|3 +812976|28001289913|3 +813511|28001289919|3 +813579|28001289921|3 +814216|28001289924|3 +814680|28001289929|3 +814760|28001289932|3 +814767|28001289933|3 +815292|28001289938|3 +815910|28001289943|3 +815968|28001289958|3 +816446|28001289961|3 +816805|28001289966|3 +816634|28001289969|3 +816839|28001289975|3 +817419|28001289985|3 +820168|28001290001|3 +818781|28001290017|3 +819574|28001290025|3 +819900|28001290027|3 +837360|28001290034|3 +667618|28001290035|3 +821123|28001290069|3 +823046|28001290075|3 +823249|28001290079|3 +823560|28001290091|3 +823498|28001290093|3 +823467|28001290100|3 +823862|28001290103|3 +824241|28001290106|3 +824184|28001290107|3 +824780|28001290109|3 +699279|28001290196|3 +699074|28001290237|3 +788245|28001290258|3 +908654|28001290409|2 +908678|28001290411|2 +728680|28001290416|3 +890986|28001290456|3 +901120|28001290551|3 +901014|28001290564|3 +749683|28001290568|3 +752258|28001290578|3 +752313|28001290595|3 +752029|28001290757|3 +749707|28001291134|3 +729981|28001291691|3 +752254|28001292487|3 +749270|28001292536|3 +461981|28001293648|3 +815280|28001293760|3 +541177|28001293788|3 +837380|28001294187|3 +593483|28001294206|3 +609580|28001294231|3 +853546|28001294375|3 +699285|28001294698|3 +788246|28001295004|3 +815526|28001295021|3 +816669|28001295022|3 +817949|28001295024|3 +834300|28001295026|5 +821614|28001295029|3 +901176|28001295299|3 +751170|28001295496|3 +751577|28001295500|3 +778555|28001295531|3 +816560|28001295757|3 +817412|28001295759|3 +833954|28001295763|5 +836487|28001295771|3 +908672|28001296062|2 +816933|28001296939|3 +771936|28001297082|3 +823863|28001297203|3 +812074|28001297688|3 +466514|28001297853|3 +812170|28001297891|3 +814732|28001297893|3 +536655|28001298084|3 +729984|28001298112|3 +729729|28001298458|3 +752011|28001298505|3 +816002|28001299654|3 +820899|28001300025|3 +817444|28001300307|3 +769104|28001300614|3 +788949|28001300785|3 +788001|28001300912|3 +728710|28001301005|3 +820710|28001301054|3 +622126|28001301060|3 +823191|28001301327|3 +814345|28001301470|3 +822686|28001301502|3 +816626|28001301962|3 +835972|28001301963|5 +824638|28001301968|3 +821846|28001302273|3 +730126|28001302362|3 +709113|28001302441|3 +752255|28001302561|3 +679187|28001302839|3 +812504|28001302859|3 +816274|28001302938|3 +822541|28001302939|3 +622091|28001303021|3 +835624|28001303303|7 +655597|28001303534|3 +814478|28001303571|3 +826307|28001304120|5 +813463|28001304167|3 +541689|28001304314|3 +814744|28001304322|3 +729768|28001304572|3 +788002|28001304576|3 +814924|28001304788|3 +681849|28001304868|3 +816740|28001304873|3 +824355|28001305178|3 +609234|28001305185|3 +689363|28001305297|3 +823856|28001305541|3 +823108|28001305571|3 +730679|28001305625|3 +835393|28001305953|7 +810587|28001307158|3 +771257|28001308147|3 +819488|28001308151|3 +824383|28001308390|3 +836402|28001308493|7 +814995|28001308649|3 +819707|28001308708|5 +671488|28001308823|3 +816811|28001309078|3 +814355|28001309137|3 +471448|28001309231|3 +819708|28001309555|5 +817064|28001309702|3 +811453|28001309909|3 +812875|28001309911|3 +655236|28001310184|3 +811635|28001310256|3 +820169|28001310259|3 +824891|28001310260|3 +838750|28001310449|3 +823220|28001310460|3 +687500|28001310626|3 +816909|28001311527|3 +622122|28001311946|3 +816417|28001311952|3 +760166|28001311987|3 +823370|28001312021|3 +824922|28001312139|3 +751162|28001312463|3 +810477|28001312480|3 +817803|28001312873|3 +730127|28001313197|3 +816267|28001313236|3 +788458|28001313324|3 +824797|28001313521|3 +810812|28001314059|3 +817747|28001314667|3 +908632|28001315116|2 +816724|28001315315|3 +815624|28001315365|3 +753875|28001315437|3 +788240|28001315533|3 +812654|28001315571|3 +901357|28001315582|3 +823501|28001315851|3 +832146|28001315890|3 +882713|28001315981|3 +486950|28001316128|3 +817895|28001316256|3 +465285|28001316280|3 +822310|28001316298|3 +539338|28001316584|3 +587086|28001316746|3 +816578|28001316788|3 +487996|28001317019|3 +823946|28001317129|3 +817004|28001317221|3 +816334|28001317289|3 +822543|28001317449|3 +729914|28001317754|3 +824480|28001317966|3 +788003|28001317990|3 +816855|28001317991|3 +826308|28001318025|5 +751164|28001318081|3 +714220|28001318279|3 +813623|28001318280|3 +489029|28001318348|3 +814598|28001318450|3 +605031|28001318618|3 +818932|28001318695|3 +823470|28001319278|3 +824927|28001319449|3 +812628|28001319468|3 +787957|28001319472|3 +751163|28001319593|3 +817054|28001319652|3 +837361|28001319654|3 +824714|28001320072|3 +824756|28001320095|3 +814521|28001320280|3 +816569|28001320322|3 +819230|28001320401|5 +622123|28001320893|3 +655615|28001320905|3 +813530|28001320931|3 +813522|28001320932|3 +816744|28001321709|3 +789156|28001321920|3 +812686|28001321955|3 +621952|28001322372|3 +462015|28001322653|3 +575178|28001323076|3 +817121|28001323131|3 +818650|28001323212|3 +822569|28001323259|5 +724730|28001323363|3 +643383|28001323510|3 +599734|28001323633|3 +811315|28001324024|3 +824749|28001324182|3 +789153|28001324292|3 +813119|28001325531|3 +818468|28001325797|3 +822637|28001325937|3 +816791|28001326198|3 +812390|28001326546|3 +810233|28001326729|3 +451279|28001326765|3 +824349|28001326863|3 +690333|28001327035|3 +816095|28001327098|3 +819575|28001327383|3 +822542|28001327464|3 +816619|28001327727|3 +813345|28001328020|3 +510105|28001328100|3 +752244|28001328194|3 +690313|28001328341|3 +817038|28001328346|3 +816847|28001328457|3 +816934|28001328528|3 +817036|28001328563|3 +816529|28001328570|3 +821947|28001328618|3 +599857|28001329186|3 +810534|28001329188|3 +788459|28001329207|3 +819470|28001329216|3 +822597|28001329298|5 +818188|28001329308|3 +717688|28001329343|3 +823221|28001329386|3 +817063|28001329485|3 +823930|28001329498|3 +816550|28001329514|3 +687320|28001329536|3 +822570|28001329659|5 +824727|28001329913|3 +752245|28001330048|3 +555336|28001330071|3 +729627|28001330074|3 +622092|28001330092|3 +814643|28001330161|3 +824745|28001330311|3 +822825|28001330329|3 +822916|28001330332|3 +819194|28001330359|3 +825755|28001330439|7 +810675|28001330440|3 +816848|28001330442|3 +539212|28001330600|3 +814434|28001330664|3 +819576|28001330806|3 +810161|28001330807|3 +900517|28001330817|3 +820399|28001330873|3 +824493|28001330908|3 +815562|28001330980|3 +817746|28001331042|3 +788950|28001331205|3 +788641|28001331208|3 +751175|28001331775|3 +699428|28001331975|3 +823697|28001331987|3 +749708|28001331999|3 +752030|28001332005|3 +815329|28001332095|3 +816952|28001332244|3 +635457|28001332394|3 +825076|28001332608|3 +815950|28001332786|3 +814101|28001332823|3 +816935|28001332912|3 +621778|28001333021|3 +814747|28001333039|3 +541663|28001333114|3 +699510|28001333219|3 +820544|28001333570|3 +817441|28001333576|3 +823528|28001333580|3 +818933|28001333612|3 +823184|28001333637|3 +900970|28001333711|3 +824310|28001333827|3 +728920|28001333872|3 +808522|28001334063|3 +539236|28001334219|3 +690338|28001334447|3 +749260|28001334530|3 +788208|28001334550|3 +819471|28001334598|3 +821542|28001334599|3 +824624|28001334731|3 +814627|28001334851|3 +825199|28001334907|3 +816509|28001334909|3 +812681|28001334979|3 +540646|28001335043|3 +819484|28001335064|3 +699408|28001335412|3 +747714|28001335572|3 +814748|28001335633|3 +687122|28001335697|3 +816905|28001335868|3 +840453|28001335878|3 +813510|28001335885|3 +814607|28001335950|3 +816906|28001336032|3 +821475|28001336034|3 +816599|28001336123|3 +815214|28001336222|3 +824758|28001336240|3 +810748|28001336243|3 +655756|28001336340|3 +768530|28001336455|3 +768753|28001336497|3 +822577|28001336499|3 +570828|28001336775|3 +824753|28001336790|3 +817896|28001336792|3 +816642|28001337143|3 +815867|28001337328|3 +817056|28001337419|3 +811620|28001337766|3 +836555|28001337837|3 +812926|28001337937|3 +812593|28001338028|3 +485369|28001338417|3 +821524|28001338455|3 +808474|28001338691|3 +901358|28001338697|3 +819998|28001338704|3 +819890|28001338747|3 +819040|28001338751|3 +900670|28001338758|3 +687501|28001338827|3 +655752|28001338877|3 +819955|28001338887|3 +821850|28001338888|3 +820692|28001338942|3 +817126|28001339060|3 +729925|28001339061|3 +810488|28001339069|3 +812746|28001339183|3 +621949|28001339216|3 +609675|28001339251|3 +816459|28001339368|3 +810952|28001339428|5 +815618|28001339449|3 +830649|28001339526|5 +812291|28001339549|3 +815944|28001339594|3 +815349|28001339776|3 +815133|28001339953|3 +749727|28001340120|3 +777755|28001340184|3 +749716|28001340227|3 +824252|28001340391|3 +575235|28001340506|3 +812367|28001340587|3 +818756|28001341644|3 +814757|28001341693|3 +752246|28001341725|3 +672213|28001341870|3 +759179|28001341907|3 +811436|28001341909|3 +764829|28001341923|3 +816406|28001341927|3 +810528|28001342120|3 +811832|28001342121|3 +821660|28001342126|3 +801902|28001342487|3 +835395|28001342908|7 +820039|28001342992|3 +655757|28001343168|3 +824347|28001343362|3 +820477|28001343490|3 +817515|28001343500|3 +621713|28001343563|3 +816886|28001343622|3 +824483|28001343639|3 +816870|28001343869|3 +787958|28001344096|3 +817032|28001344149|3 +814462|28001344161|3 +818369|28001344162|3 +821873|28001344402|5 +818667|28001344593|3 +812469|28001344823|3 +726165|28001344926|3 +822377|28001344931|3 +824463|28001344941|3 +818280|28001345250|3 +823320|28001345283|3 +898766|28001345441|3 +816670|28001345442|3 +820641|28001345603|3 +814339|28001345693|3 +818460|28001345710|3 +818388|28001345774|3 +816792|28001345781|3 +822305|28001345784|3 +729916|28001346055|3 +818647|28001346114|3 +814629|28001346133|3 +837373|28001346139|3 +834876|28001346223|5 +847129|28001346244|3 +768529|28001346562|3 +818862|28001346627|5 +814520|28001346646|3 +837374|28001346743|3 +901178|28001346792|3 +816410|28001346815|3 +535552|28001346849|3 +811674|28001346886|3 +818761|28001346923|3 +824357|28001346929|3 +820084|28001346942|3 +813621|28001346955|3 +817048|28001347043|3 +836601|28001347152|5 +813103|28001347459|3 +812414|28001347460|3 +822386|28001347465|3 +823678|28001347466|3 +817897|28001347479|3 +469283|28001347651|3 +816856|28001347711|3 +818757|28001349881|3 +814655|28001349884|3 +813308|28001349885|3 +815989|28001349910|3 +815137|28001349926|3 +750428|28001349941|3 +814361|28001349993|3 +815973|28001350068|3 +752247|28001350349|3 +815953|28001350530|3 +813216|28001350627|3 +820170|28001350641|3 +822155|28001350650|3 +837381|28001350651|3 +823402|28001350654|3 +635431|28001350656|3 +825194|28001350658|3 +453826|28001350969|3 +817034|28001351180|3 +816001|28001351289|3 +823235|28001351290|3 +769060|28001351763|3 +518550|28001351777|3 +825049|28001351780|3 +814544|28001351903|3 +819925|28001352079|3 +824732|28001352195|3 +788253|28001352775|3 +900420|28001352859|3 +816883|28001352930|3 +813507|28001353096|3 +816827|28001353194|3 +816667|28001353241|3 +822806|28001353321|3 +818379|28001353354|3 +816620|28001353371|3 +814811|28001353430|3 +817123|28001353459|3 +622074|28001353469|3 +812750|28001353576|3 +810185|28001353693|3 +597401|28001353989|3 +901381|28001354270|3 +540601|28001354387|3 +810535|28001354430|3 +811657|28001354431|3 +834899|28001354432|5 +823129|28001354433|3 +823557|28001354434|3 +823421|28001354435|3 +824726|28001354436|3 +815999|28001354804|3 +822357|28001354810|3 +719529|28001355967|3 +470170|28001356427|3 +708127|28001357556|3 +752178|28001357644|3 +812903|28001357693|3 +813320|28001357777|3 +816290|28001357778|3 +836549|28001357785|3 +816622|28001357808|3 +824372|28001357809|3 +824522|28001357810|3 +823305|28001357814|3 +822646|28001357857|3 +813589|28001358243|3 +563935|28001358788|3 +752179|28001358824|3 +820505|28001359115|3 +570827|28001359454|3 +717938|28001359622|3 +818380|28001360881|3 +814324|28001361080|3 +818481|28001361085|3 +814506|28001361257|3 +815994|28001361258|3 +817025|28001361259|3 +816662|28001361261|3 +823641|28001361325|3 +687513|28001361367|3 +748017|28001361547|3 +749719|28001361610|3 +816561|28001361712|3 +817748|28001361721|3 +821086|28001361722|3 +815442|28001361899|3 +818370|28001362657|3 +810813|28001363085|3 +810398|28001363099|3 +752019|28001363206|3 +817804|28001363215|3 +813526|28001363245|3 +816409|28001363272|3 +819367|28001363339|3 +641990|28001363487|3 +655084|28001363640|3 +775858|28001363709|3 +822740|28001363710|3 +816533|28001363791|3 +655607|28001363854|3 +812722|28001363993|3 +816872|28001364103|3 +557680|28001364158|3 +813516|28001364169|3 +818469|28001364184|3 +816950|28001364448|3 +822034|28001364618|3 +823210|28001364645|3 +816863|28001364650|3 +818389|28001365233|3 +752018|28001365477|3 +823536|28001365777|3 +815939|28001365836|3 +824723|28001365886|3 +817191|28001366112|3 +789036|28001366155|3 +812159|28001366264|3 +816908|28001366396|3 +815817|28001366406|3 +788642|28001366408|3 +687514|28001366547|3 +822689|28001366571|3 +810783|28001366590|3 +814340|28001366725|3 +815242|28001366895|3 +823217|28001366928|3 +814843|28001366978|3 +820362|28001366986|5 +816635|28001367060|3 +820905|28001367061|3 +789023|28001367126|3 +466527|28001367265|3 +820631|28001367687|3 +844696|28001367780|3 +621780|28001368239|3 +451276|28001368297|3 +810633|28001368307|3 +823448|28001368346|3 +816901|28001368347|3 +690290|28001368357|3 +825999|28001368513|3 +814858|28001368664|3 +817546|28001368741|3 +854746|28001368943|3 +818762|28001368958|3 +812227|28001369121|3 +901308|28001369695|3 +814569|28001369776|3 +730128|28001370004|3 +753630|28001370159|3 +749720|28001370283|3 +811510|28001370627|3 +816949|28001370630|3 +813199|28001370784|3 +567927|28001371091|3 +823464|28001371198|3 +591536|28001371227|3 +817450|28001371250|3 +816502|28001371272|3 +822685|28001371325|3 +813616|28001371582|3 +812692|28001371604|3 +816779|28001371620|3 +823935|28001371666|3 +749265|28001371723|3 +729990|28001371775|3 +575283|28001372029|3 +837382|28001372165|3 +816996|28001372263|3 +752248|28001372266|3 +464454|28001372331|3 +622075|28001372793|3 +632687|28001372812|3 +819485|28001372825|3 +454720|28001373017|3 +814192|28001373315|3 +816663|28001373844|3 +709171|28001374165|3 +819459|28001374324|3 +816976|28001374575|3 +814464|28001374704|3 +820803|28001374738|3 +816960|28001374771|3 +814269|28001374852|3 +816828|28001374871|3 +563936|28001374924|3 +814932|28001375208|3 +817023|28001375442|3 +824633|28001375703|3 +729917|28001375748|3 +730005|28001375765|3 +812128|28001375877|3 +810489|28001375887|3 +708888|28001376066|3 +812702|28001376092|3 +622036|28001376243|3 +535698|28001376504|3 +727230|28001376535|3 +810605|28001376537|3 +810403|28001376539|3 +824481|28001376582|3 +816789|28001377235|3 +817950|28001377555|3 +824713|28001377556|3 +451245|28001378057|3 +812025|28001378723|3 +810725|28001378872|3 +820400|28001379030|3 +822490|28001379033|3 +898813|28001379217|3 +488951|28001379259|3 +643387|28001379641|3 +812580|28001379732|3 +824871|28001379801|3 +578077|28001379827|3 +699283|28001380247|3 +816555|28001380251|3 +728693|28001380289|3 +751165|28001380364|3 +750426|28001380368|3 +814485|28001380481|3 +814819|28001380810|3 +824661|28001381203|3 +821382|28001381217|3 +820901|28001381360|3 +883351|28001381609|3 +834861|28001381629|5 +814118|28001381780|3 +792340|28001383091|3 +655085|28001383093|3 +818648|28001383095|3 +817703|28001383229|3 +824893|28001383933|3 +823482|28001385016|3 +812858|28001385149|3 +751166|28001385166|3 +816606|28001385470|3 +816885|28001385474|3 +810803|28001385492|3 +834900|28001385630|5 +832148|28001385728|3 +832003|28001385803|3 +824361|28001385983|3 +823422|28001386462|3 +597402|28001386485|3 +485370|28001387138|3 +812609|28001387153|3 +833955|28001387157|5 +823315|28001387470|3 +814341|28001387521|3 +699284|28001387540|3 +816761|28001387601|3 +815960|28001387649|3 +824932|28001387817|3 +815969|28001387938|3 +824697|28001388363|3 +824698|28001388367|3 +748168|28001388645|3 +791508|28001388656|3 +814936|28001388660|3 +466528|28001388973|3 +611527|28001389078|3 +811952|28001389434|3 +816499|28001389729|3 +823552|28001389730|3 +541178|28001389837|3 +461924|28001389981|3 +635432|28001390008|3 +622181|28001390272|3 +621683|28001390312|3 +621675|28001390335|3 +824012|28001390442|3 +835206|28001390574|7 +908643|28001390668|2 +824348|28001390790|3 +709114|28001390796|3 +817003|28001390812|3 +815110|28001392191|3 +822851|28001392363|3 +824699|28001392553|3 +811684|28001392862|3 +820898|28001393056|3 +768228|28001393326|3 +813976|28001393915|3 +811310|28001393988|3 +901100|28001394000|3 +815433|28001394169|3 +820289|28001394176|3 +816801|28001394661|3 +816060|28001394748|3 +752249|28001395345|3 +825067|28001395508|3 +812233|28001395767|3 +817867|28001395768|3 +655747|28001396027|3 +811634|28001396061|3 +788643|28001396285|3 +821216|28001396389|3 +816881|28001396397|3 +816579|28001396448|3 +811498|28001396530|3 +749721|28001396574|3 +821028|28001396728|3 +835207|28001396934|7 +816694|28001397017|3 +816556|28001397065|3 +729763|28001397257|3 +815966|28001397295|3 +818281|28001397438|3 +800100|28001397625|3 +800206|28001397775|3 +788951|28001397800|3 +814320|28001397885|3 +814332|28001398189|3 +819283|28001398246|3 +814330|28001398291|3 +788644|28001398295|3 +817179|28001398300|3 +824454|28001398302|3 +816515|28001398333|3 +813098|28001399249|3 +816631|28001399251|3 +824846|28001399926|3 +824838|28001399969|3 +788645|28001400073|3 +820308|28001400112|3 +816961|28001400179|3 +812147|28001400204|3 +758877|28001400209|3 +821883|28001400217|3 +818602|28001400219|3 +816433|28001400342|3 +769062|28001400362|3 +817015|28001400708|3 +655608|28001400722|3 +883345|28001400867|3 +816716|28001401785|5 +813253|28001401789|3 +769064|28001401796|3 +901363|28001401994|3 +812703|28001402030|3 +451277|28001402135|3 +822358|28001402391|3 +812136|28001402393|3 +810195|28001402394|3 +752012|28001402734|3 +814389|28001403269|3 +823385|28001403273|3 +823944|28001403274|3 +469756|28001403294|3 +815193|28001404748|3 +837632|28001404832|5 +811142|28001405035|5 +817794|28001405117|3 +834501|28001405119|5 +821526|28001405230|3 +728704|28001405611|3 +901309|28001405727|3 +743572|28001405786|3 +816656|28001405911|3 +822598|28001406577|5 +823948|28001407029|3 +815988|28001407038|3 +728694|28001407086|3 +835208|28001407088|7 +816607|28001407554|3 +472423|28001407610|3 +621472|28001407754|3 +470434|28001407764|3 +814153|28001407862|3 +815229|28001407893|3 +655609|28001407942|3 +749701|28001407965|3 +540356|28001408128|3 +575185|28001408131|3 +817582|28001408260|3 +811015|28001408294|3 +814532|28001408450|3 +810232|28001408495|3 +814707|28001408498|3 +823194|28001408539|3 +580136|28001408541|3 +824933|28001408881|3 +838751|28001409271|3 +853527|28001409301|3 +834901|28001410614|5 +819201|28001410794|3 +822311|28001411066|3 +823479|28001411086|3 +622076|28001411151|3 +816698|28001411278|3 +814325|28001411282|3 +470446|28001411365|3 +810393|28001411543|3 +788004|28001411595|3 +729926|28001411645|3 +726171|28001411672|3 +816823|28001411883|3 +812220|28001412022|3 +815736|28001412024|3 +820755|28001412026|3 +824375|28001412027|3 +901300|28001412053|3 +816888|28001412233|3 +787959|28001414056|3 +820601|28001414115|3 +642933|28001414143|3 +823255|28001414379|3 +622077|28001414484|3 +816689|28001414575|3 +816683|28001414664|3 +821920|28001414747|3 +812362|28001414783|3 +814276|28001414828|3 +824930|28001414901|3 +811528|28001414933|3 +752250|28001414992|3 +817660|28001415021|3 +820691|28001415162|3 +819844|28001415163|3 +825068|28001415165|3 +816788|28001416680|3 +823229|28001416912|3 +599863|28001417885|3 +548492|28001418121|3 +823864|28001418162|3 +816690|28001418196|3 +486951|28001418314|3 +810595|28001418349|3 +824803|28001418379|3 +814966|28001418429|3 +824804|28001418432|3 +810698|28001418471|3 +788257|28001418504|3 +813177|28001418524|3 +814773|28001418525|3 +816472|28001418526|3 +810086|28001418527|3 +817787|28001418528|3 +819195|28001418529|3 +819168|28001418530|3 +823236|28001418531|3 +824775|28001418532|3 +817044|28001418726|3 +811493|28001419295|3 +816144|28001419425|3 +535549|28001419458|3 +605931|28001419501|3 +814372|28001419545|3 +908645|28001419552|2 +788646|28001419949|3 +681771|28001421698|3 +823499|28001422046|3 +822583|28001422259|3 +816794|28001422631|3 +597403|28001422641|3 +752013|28001422778|3 +474385|28001423276|3 +730129|28001423427|3 +580935|28001423428|3 +621945|28001423615|3 +822643|28001423847|3 +821527|28001423849|3 +823347|28001423853|3 +811484|28001424176|3 +788647|28001424287|3 +821416|28001424677|3 +819284|28001424721|3 +825059|28001424737|3 +825219|28001424844|7 +751176|28001425104|3 +824652|28001426429|3 +810560|28001426704|3 +824443|28001426784|3 +825043|28001426916|3 +908661|28001426953|2 +608532|28001427338|3 +823064|28001427469|3 +621951|28001427818|3 +821676|28001428126|3 +816621|28001428274|3 +819738|28001428324|3 +812073|28001428424|3 +812393|28001428427|3 +823340|28001428462|3 +824185|28001428463|3 +824274|28001428464|3 +751866|28001428610|3 +760207|28001428872|3 +599583|28001428910|3 +816583|28001428933|3 +836602|28001429477|5 +819711|28001430583|5 +815126|28001430705|3 +824844|28001430812|3 +655540|28001430828|3 +818502|28001430945|3 +820412|28001431406|3 +826315|28001432373|5 +824812|28001433148|3 +813187|28001433196|3 +812589|28001433219|3 +816851|28001433222|3 +824788|28001433327|3 +821566|28001433341|3 +496403|28001433392|3 +818758|28001433469|3 +665540|28001433561|3 +816120|28001433630|3 +811016|28001433699|3 +824596|28001433769|3 +840486|28001433794|3 +488932|28001433847|3 +769074|28001433870|3 +814428|28001433910|3 +819709|28001434024|5 +812486|28001434185|3 +811974|28001434222|3 +821959|28001434235|3 +821567|28001434241|3 +814943|28001434373|3 +819213|28001434380|3 +788754|28001434699|3 +621685|28001434767|3 +820187|28001434783|3 +816644|28001434878|3 +815992|28001434880|3 +813599|28001435004|3 +813763|28001435057|3 +551304|28001435329|3 +752271|28001438088|3 +812232|28001438227|3 +692221|28001438284|3 +472778|28001438325|3 +599864|28001438329|3 +729930|28001438467|3 +729991|28001438470|3 +752014|28001438523|3 +758926|28001438621|3 +626142|28001438726|3 +810944|28001438765|3 +810996|28001438767|3 +816437|28001438784|3 +817951|28001438791|3 +820179|28001438792|3 +822472|28001438793|3 +822312|28001438795|3 +836847|28001438796|5 +823119|28001438802|3 +813537|28001439027|3 +814589|28001439465|3 +626938|28001439693|3 +821167|28001440001|3 +824621|28001440059|3 +901382|28001440966|3 +815768|28001441497|3 +819442|28001443391|3 +821618|28001443394|3 +822807|28001443395|3 +825035|28001443396|3 +819285|28001443847|3 +826309|28001444190|5 +823780|28001444466|3 +819216|28001444945|3 +812684|28001445098|3 +818684|28001445181|3 +822415|28001445209|3 +840484|28001445279|3 +819049|28001445936|3 +812164|28001446199|3 +744830|28001447874|3 +819347|28001447876|3 +599854|28001447960|3 +611928|28001448370|3 +819224|28001448455|5 +877018|28001448461|3 +823026|28001448679|3 +816514|28001448785|3 +812913|28001449186|3 +815990|28001449188|3 +819368|28001449189|3 +810578|28001449258|3 +815983|28001449614|3 +824787|28001449615|3 +900966|28001449983|3 +813380|28001450027|3 +811323|28001450142|3 +811340|28001450143|3 +811968|28001450145|3 +816640|28001450202|3 +791949|28001450331|3 +835649|28001450336|7 +451272|28001450522|3 +818668|28001450532|3 +459984|28001450707|3 +771925|28001451021|3 +812685|28001451209|3 +819918|28001451560|3 +818482|28001451562|3 +816902|28001451899|3 +908637|28001452028|2 +816995|28001452143|3 +817026|28001453007|3 +537942|28001453175|3 +816500|28001453218|3 +819901|28001453219|3 +819902|28001453220|3 +824716|28001453221|3 +823348|28001453697|3 +552783|28001455000|3 +817434|28001455448|3 +816966|28001455452|3 +819710|28001455772|5 +820754|28001455774|3 +633933|28001455945|3 +788802|28001456008|3 +810862|28001456359|3 +810311|28001456360|3 +812250|28001456361|3 +812967|28001456362|3 +814576|28001456363|3 +824308|28001456365|3 +825113|28001456366|3 +557330|28001457282|3 +814354|28001457526|3 +816115|28001457536|3 +749722|28001457669|3 +641982|28001457785|3 +812968|28001457836|3 +819712|28001457840|5 +709172|28001457863|3 +812709|28001458020|3 +821100|28001458217|3 +817152|28001458672|3 +824936|28001458673|3 +815977|28001458763|3 +632766|28001458858|3 +810690|28001458947|3 +825079|28001458948|3 +821966|28001459035|3 +853515|28001459086|3 +823254|28001459180|3 +818863|28001459188|5 +823253|28001459189|3 +823883|28001459338|3 +788793|28001459546|3 +816924|28001459550|3 +811306|28001459731|3 +789758|28001460113|3 +811626|28001460258|3 +823773|28001460438|3 +812505|28001461696|3 +822971|28001461700|3 +823502|28001461901|3 +816447|28001462069|3 +816329|28001462185|3 +681918|28001462238|3 +816494|28001462443|3 +825198|28001462582|3 +810421|28001462851|3 +671988|28001463154|3 +822667|28001463468|3 +823809|28001463501|3 +817043|28001463708|3 +792959|28001463956|3 +812780|28001464067|3 +901303|28001464142|3 +822088|28001464173|3 +901015|28001464556|3 +813886|28001464711|3 +550645|28001464993|3 +813106|28001465174|3 +622182|28001465263|3 +819713|28001465683|5 +591796|28001465857|3 +818576|28001465877|3 +834095|28001465988|5 +812381|28001466044|3 +816903|28001466351|3 +811204|28001466703|3 +811389|28001466747|3 +818572|28001466994|3 +824778|28001467226|3 +816971|28001467313|3 +815654|28001467755|3 +533953|28001467940|3 +818815|28001468474|3 +819011|28001468476|3 +817141|28001468663|3 +908644|28001468741|2 +814275|28001468835|3 +536652|28001468976|3 +729920|28001469370|3 +813456|28001469484|3 +814783|28001469485|3 +819286|28001469597|3 +822802|28001469671|3 +817868|28001469800|3 +908647|28001470034|2 +749684|28001470164|3 +811524|28001470339|3 +812365|28001470410|3 +635448|28001470484|3 +824393|28001470779|3 +810576|28001470820|3 +729921|28001470852|3 +729922|28001470985|3 +815309|28001471209|3 +818125|28001471215|3 +819753|28001471216|3 +496401|28001471235|3 +821686|28001471558|3 +840482|28001471678|3 +901387|28001471780|3 +826005|28001471832|3 +507225|28001471851|3 +816895|28001471862|3 +822487|28001471909|3 +813458|28001471991|3 +819119|28001472130|5 +818453|28001472175|3 +811385|28001472308|3 +729918|28001472458|3 +822306|28001472823|3 +819607|28001473058|3 +816979|28001473442|3 +838846|28001473560|5 +814800|28001473716|3 +539750|28001473871|3 +900967|28001473952|3 +814473|28001474092|3 +752243|28001474117|3 +835639|28001474124|7 +699427|28001474143|3 +816551|28001474241|3 +821987|28001474736|3 +823200|28001474894|3 +822656|28001474928|3 +626168|28001474953|3 +816964|28001475063|3 +821326|28001475097|3 +699416|28001475566|3 +550624|28001475924|3 +817471|28001475940|3 +816986|28001476027|3 +820821|28001476040|3 +823329|28001476043|3 +835627|28001476233|7 +616829|28001476520|3 +823153|28001476609|3 +816710|28001476679|3 +834863|28001476790|5 +814214|28001477403|3 +816845|28001477406|3 +823218|28001477410|3 +824342|28001477412|3 +824616|28001477413|3 +598626|28001477425|3 +816664|28001478793|3 +816665|28001478794|3 +506703|28001478831|3 +810672|28001478979|3 +811461|28001478981|3 +814310|28001478983|3 +815459|28001478985|3 +816055|28001478988|3 +817093|28001478992|3 +817391|28001478994|3 +817372|28001478996|3 +818927|28001478998|3 +822339|28001479006|3 +824895|28001479011|3 +473035|28001479467|3 +810953|28001479646|5 +812690|28001479649|3 +814104|28001479655|3 +825190|28001479658|3 +815734|28001479666|3 +788803|28001479802|3 +818039|28001480216|3 +817005|28001481158|3 +819608|28001481167|3 +690289|28001481412|3 +824709|28001481509|3 +816984|28001481653|3 +753779|28001481682|3 +591285|28001482058|3 +814364|28001482446|3 +600632|28001483507|3 +823711|28001483833|3 +553481|28001484062|3 +796498|28001484306|3 +810212|28001484421|3 +819477|28001484424|3 +815879|28001484936|3 +816333|28001485229|3 +788251|28001485289|3 +816765|28001485502|3 +812394|28001486256|3 +901383|28001486263|3 +824752|28001486303|3 +819926|28001486806|3 +823947|28001486990|3 +824786|28001487143|3 +824743|28001487155|3 +811141|28001487345|5 +813206|28001487348|3 +814370|28001487350|3 +815510|28001487354|3 +816955|28001487357|3 +818649|28001487360|3 +822294|28001487363|3 +823405|28001487367|3 +834850|28001487394|5 +814369|28001487439|3 +815986|28001487469|3 +819460|28001487471|3 +821837|28001487472|3 +823238|28001487474|3 +890981|28001487490|3 +811676|28001487526|3 +823765|28001487640|3 +539413|28001487677|3 +791555|28001487921|3 +815987|28001487946|3 +816780|28001489550|3 +822313|28001489745|3 +812570|28001491268|3 +813470|28001491577|3 +823199|28001491588|3 +824742|28001491948|3 +900231|28001491952|3 +679823|28001491995|3 +816061|28001492163|3 +819436|28001492581|3 +820900|28001492848|3 +814135|28001492950|3 +571873|28001493044|3 +817061|28001493099|3 +821688|28001493324|3 +816917|28001493441|3 +817898|28001494423|3 +835223|28001494440|7 +818759|28001495446|3 +813720|28001495584|3 +823324|28001495804|3 +816777|28001495956|3 +824550|28001496253|3 +813916|28001496418|3 +824376|28001496419|3 +820658|28001496917|3 +716326|28001497030|3 +816385|28001497049|3 +496402|28001497157|3 +810852|28001497650|3 +621946|28001497706|3 +816645|28001497736|3 +847366|28001497738|3 +810208|28001497868|3 +824275|28001497974|3 +788655|28001498021|3 +824446|28001498440|3 +814469|28001498779|3 +901166|28001498802|3 +699075|28001498896|3 +836592|28001498934|5 +816741|28001499155|3 +823986|28001499157|3 +814495|28001499283|3 +817749|28001499709|3 +751275|28001499763|3 +817165|28001500145|3 +815281|28001500304|3 +728878|28001500563|3 +541203|28001500614|3 +823707|28001500664|3 +840471|28001500665|3 +511401|28001500700|3 +824618|28001501992|3 +818383|28001502137|3 +879213|28001502140|3 +810784|28001502226|3 +768226|28001502234|3 +709181|28001502384|3 +819754|28001502603|3 +816711|28001502791|3 +818816|28001502793|3 +471446|28001503038|3 +714688|28001503163|3 +814604|28001503283|3 +816735|28001503406|3 +812389|28001503578|3 +817092|28001504199|3 +818187|28001504468|3 +811490|28001504482|3 +819012|28001504525|3 +690324|28001504589|3 +817000|28001504622|3 +853538|28001505037|3 +805375|28001505086|3 +815245|28001505088|3 +655593|28001505117|3 +832831|28001505256|5 +752028|28001505469|3 +810414|28001505740|3 +816904|28001505853|3 +518504|28001506245|3 +780608|28001506492|3 +769061|28001506493|3 +816297|28001506656|3 +805389|28001506989|3 +813014|28001507066|3 +787257|28001507271|3 +540647|28001507363|3 +815474|28001507447|3 +821568|28001507448|3 +812453|28001507584|3 +879212|28001507663|3 +540648|28001507838|3 +621473|28001507859|3 +817795|28001507959|3 +820413|28001507969|3 +822326|28001508029|3 +729923|28001508114|3 +821591|28001508275|3 +813965|28001508712|3 +821569|28001508773|3 +818483|28001508958|3 +816985|28001509476|3 +751177|28001509541|3 +811349|28001509798|3 +749276|28001510087|3 +810673|28001510094|3 +817021|28001510388|3 +824503|28001510416|3 +539231|28001510490|3 +883815|28001510693|3 +891096|28001510694|3 +811017|28001510752|3 +824917|28001510827|3 +815833|28001511039|3 +810596|28001511254|3 +814352|28001511255|3 +822872|28001511259|3 +810883|28001511353|3 +826310|28001511365|5 +835398|28001511384|5 +817857|28001511552|3 +834829|28001511553|5 +819154|28001511561|3 +837376|28001511563|3 +814796|28001511781|3 +821140|28001511900|3 +824319|28001511901|3 +813814|28001512845|3 +820253|28001513016|5 +810234|28001513018|3 +823291|28001513100|3 +811135|28001513182|5 +817501|28001513191|3 +771452|28001513463|3 +818928|28001513581|3 +457335|28001513588|3 +621947|28001513656|3 +824387|28001513761|3 +812640|28001513778|3 +814792|28001513970|3 +816641|28001513992|3 +818714|28001514007|3 +817008|28001514166|3 +766180|28001514207|3 +729755|28001514446|3 +823219|28001514591|3 +814149|28001514636|3 +824872|28001514638|3 +814664|28001514752|3 +871320|28001515125|3 +820293|28001515314|3 +819243|28001515929|3 +501198|28001515962|3 +811462|28001516420|3 +812217|28001516978|3 +810150|28001516979|3 +818573|28001517012|3 +823869|28001517015|3 +773606|28001517233|3 +818108|28001517412|3 +813539|28001517718|3 +815957|28001517719|3 +822887|28001517721|3 +816937|28001518101|3 +810210|28001518644|3 +811313|28001519163|3 +898814|28001519430|3 +816538|28001519712|3 +633934|28001520010|3 +673681|28001520230|3 +681122|28001520385|3 +812930|28001520681|3 +769076|28001521031|3 +813099|28001521081|3 +810691|28001521246|3 +835273|28001521249|5 +821891|28001521256|3 +821511|28001521257|3 +900518|28001521362|3 +541204|28001521654|3 +811463|28001521714|3 +817323|28001521715|3 +901304|28001521805|3 +814288|28001522613|3 +822670|28001522619|3 +824625|28001523635|3 +814925|28001523700|3 +464475|28001523920|3 +469755|28001524052|3 +812098|28001524269|3 +835628|28001524270|7 +822037|28001524273|3 +821583|28001524274|3 +822638|28001524276|3 +824386|28001524278|3 +810363|28001524363|3 +815323|28001524644|3 +817030|28001524717|3 +819478|28001524814|3 +823211|28001524938|3 +823303|28001525006|3 +825062|28001525007|3 +825063|28001525008|3 +825064|28001525009|3 +824676|28001525145|3 +811955|28001525388|3 +547594|28001525574|3 +815706|28001525996|3 +466404|28001525999|3 +816974|28001526064|3 +836550|28001526164|3 +535546|28001526415|3 +823584|28001526441|3 +823993|28001526445|3 +817631|28001526690|3 +814946|28001526807|3 +709173|28001527204|3 +748219|28001527245|3 +901301|28001527369|3 +794552|28001528174|3 +820123|28001528244|3 +817446|28001528377|3 +817430|28001528378|3 +815884|28001528401|3 +819919|28001528412|3 +785258|28001528696|3 +787997|28001528905|3 +812096|28001528910|3 +820502|28001529151|3 +719885|28001529506|3 +821504|28001529729|3 +788006|28001529743|3 +699526|28001529841|3 +816970|28001530310|3 +705283|28001530330|3 +812371|28001530360|3 +539751|28001530572|3 +620136|28001530712|3 +621929|28001530713|3 +825052|28001531316|3 +815453|28001531319|3 +812102|28001531949|3 +821967|28001531952|3 +814560|28001532107|3 +821556|28001532108|3 +900666|28001532111|3 +814605|28001532221|3 +837395|28001532446|5 +679482|28001533051|3 +811435|28001533355|3 +813055|28001533357|3 +822327|28001533361|3 +788816|28001533889|3 +817472|28001534719|3 +824824|28001535992|3 +533899|28001537332|3 +489028|28001541435|3 +540252|28001541689|3 +821795|28001542517|3 +616830|28001542699|3 +791556|28001542751|3 +626936|28001542771|3 +635523|28001542804|3 +655594|28001543223|3 +813893|28001543235|3 +901167|28001543385|3 +814368|28001543836|3 +757217|28001544313|3 +701086|28001544543|3 +720438|28001544633|3 +451252|28001544701|3 +819217|28001544709|3 +461985|28001544725|3 +821973|28001544763|3 +626174|28001544835|3 +816605|28001545118|3 +819348|28001545120|3 +815716|28001545213|3 +821687|28001545279|3 +815352|28001545434|3 +821026|28001545457|3 +823411|28001545573|3 +769075|28001545740|3 +810588|28001545822|3 +816727|28001545824|3 +823401|28001545827|3 +816439|28001545837|3 +810490|28001546074|3 +723403|28001546154|3 +813932|28001546201|3 +821619|28001546262|3 +824449|28001546270|3 +823619|28001546371|3 +812231|28001546392|3 +823416|28001546485|3 +813766|28001546563|3 +812549|28001546634|3 +821022|28001546716|3 +821800|28001546719|3 +519355|28001546762|3 +836397|28001546804|7 +559366|28001546807|3 +689715|28001546811|3 +821027|28001546818|3 +840478|28001546837|3 +488943|28001546945|3 +824536|28001546956|3 +822815|28001547056|3 +816562|28001547146|3 +823353|28001547236|3 +811580|28001547292|3 +822632|28001547293|3 +749021|28001547391|3 +824750|28001547406|3 +812553|28001547417|3 +815512|28001547423|3 +823698|28001547428|3 +824324|28001547469|3 +813100|28001547534|3 +812648|28001547556|3 +836943|28001547576|7 +816925|28001547579|3 +811717|28001547601|3 +816463|28001547634|3 +835650|28001547679|7 +891014|28001547685|3 +815328|28001547764|3 +813671|28001547772|3 +862913|28001547802|5 +824876|28001547840|3 +823975|28001547842|3 +836504|28001547843|3 +817630|28001547862|3 +812887|28001547889|3 +824166|28001547894|3 +811929|28001547936|3 +810422|28001547977|3 +553479|28001548054|3 +812200|28001548615|3 +821245|28001548655|3 +814261|28001548704|3 +597427|28001548882|3 +825002|28001549884|3 +900232|28001549998|3 +751867|28001550108|3 +814484|28001550210|3 +642934|28001550223|3 +812366|28001550318|3 +810650|28001550367|3 +677087|28001550375|3 +812118|28001550519|3 +825077|28001550531|3 +816688|28001550617|3 +821557|28001550642|3 +817009|28001550651|3 +824692|28001550714|3 +823783|28001550799|3 +820459|28001551049|3 +818952|28001551080|3 +825087|28001551180|3 +815135|28001551187|3 +797846|28001551231|3 +816896|28001551236|3 +824325|28001551256|3 +824597|28001551709|3 +824681|28001551729|3 +816965|28001551763|3 +824304|28001551772|3 +818156|28001551773|3 +822565|28001551775|3 +810527|28001551853|3 +694532|28001551948|3 +598907|28001553080|3 +811474|28001553319|3 +815434|28001553344|3 +816450|28001553345|3 +816493|28001553346|3 +816539|28001553359|3 +817106|28001553361|3 +834502|28001553362|5 +817750|28001553367|3 +820871|28001553406|3 +820872|28001553413|3 +821141|28001553672|3 +823866|28001553679|3 +824620|28001553715|3 +824989|28001553744|3 +622183|28001553835|3 +716136|28001555727|3 +815814|28001555985|3 +818040|28001556016|3 +816817|28001556067|3 +818279|28001556397|3 +821819|28001556399|3 +622118|28001556638|3 +631640|28001556777|3 +541052|28001556879|3 +777800|28001557069|3 +789012|28001557191|3 +777844|28001557615|3 +819697|28001557707|5 +824682|28001558139|3 +606280|28001558690|3 +551731|28001558705|3 +551732|28001558707|3 +601483|28001558725|3 +621736|28001558797|3 +816806|28001558972|3 +815549|28001559378|3 +822882|28001559389|3 +847367|28001559396|3 +845097|28001559610|3 +769100|28001559614|3 +818470|28001559710|3 +813371|28001560429|3 +810478|28001560508|3 +810400|28001560509|3 +816452|28001560584|3 +622078|28001561178|3 +451250|28001561590|3 +812765|28001561758|3 +813200|28001561761|3 +813528|28001561762|3 +832153|28001561787|3 +816833|28001561812|3 +816972|28001561814|3 +820202|28001561830|3 +476332|28001561853|3 +819920|28001561877|3 +820798|28001561888|3 +837669|28001561890|7 +821142|28001561894|3 +611927|28001562388|3 +687321|28001564252|3 +749685|28001564534|3 +783108|28001564615|3 +817835|28001564713|3 +791009|28001564792|3 +814346|28001564843|3 +818685|28001564888|3 +819921|28001565172|3 +824675|28001565201|3 +469471|28001565351|3 +816630|28001565381|3 +816766|28001565382|3 +470160|28001565392|3 +746180|28001565599|3 +824906|28001565636|3 +824761|28001565810|3 +716387|28001566328|3 +823898|28001566379|3 +824926|28001566458|3 +771484|28001566480|3 +816911|28001566493|3 +568834|28001566590|3 +819155|28001566965|3 +813089|28001566966|3 +741779|28001566999|3 +690291|28001567086|3 +817442|28001567251|3 +810798|28001567253|3 +814371|28001567933|3 +811632|28001567934|3 +751996|28001568198|3 +824306|28001568312|3 +816975|28001568424|3 +812627|28001568467|3 +810458|28001568590|3 +811558|28001569107|3 +862907|28001569206|5 +758104|28001569583|3 +815701|28001569604|3 +816281|28001569634|3 +621686|28001569742|3 +728705|28001570205|3 +752180|28001570260|3 +810474|28001570592|3 +834902|28001570594|5 +823585|28001570595|3 +818817|28001570754|3 +823723|28001570874|3 +816699|28001571036|3 +711486|28001571089|3 +749702|28001571237|3 +591282|28001571555|3 +816467|28001571697|3 +822697|28001571777|3 +817012|28001572024|3 +817970|28001572241|5 +821402|28001572394|3 +723679|28001573128|3 +817420|28001573326|3 +810216|28001573328|3 +751167|28001573399|3 +824124|28001573567|3 +812142|28001573568|3 +816256|28001573839|3 +821783|28001573857|3 +824656|28001573941|3 +462509|28001574007|3 +540649|28001574023|3 +817028|28001574197|3 +901384|28001574457|3 +461982|28001574463|3 +599103|28001574500|3 +824700|28001574504|3 +817099|28001574518|3 +816451|28001574522|3 +817440|28001574631|3 +840454|28001574655|3 +816258|28001574664|3 +817549|28001574667|3 +816492|28001575156|3 +816865|28001575364|3 +815509|28001575416|3 +816887|28001575792|3 +816797|28001575902|3 +840485|28001576056|3 +819755|28001576550|3 +758879|28001576551|3 +811491|28001576671|3 +820753|28001576674|3 +729726|28001577169|3 +709636|28001577358|3 +817793|28001577569|3 +812379|28001577572|3 +469661|29000597317|3 +469452|29000597324|3 +495297|29000597470|3 +507204|29000597548|3 +512054|29000597594|3 +543899|29000597827|3 +824772|29000597863|3 +822952|29000597946|3 +551697|29000598048|3 +592384|29000598078|3 +825006|29000598254|3 +634590|29000598323|3 +681870|29000598636|3 +689763|29000598693|3 +836452|29000598719|5 +762911|29000599095|3 +810203|29000599400|3 +810205|29000599401|3 +810963|29000599403|3 +811822|29000599408|3 +811950|29000599409|3 +812338|29000599410|3 +812293|29000599411|3 +812727|29000599412|3 +812424|29000599415|3 +812483|29000599416|3 +812484|29000599417|3 +812728|29000599420|3 +812987|29000599422|3 +813869|29000599424|3 +814915|29000599426|3 +815055|29000599429|3 +815078|29000599430|3 +815669|29000599433|3 +815687|29000599434|3 +815550|29000599435|3 +815585|29000599436|3 +815586|29000599437|3 +815551|29000599438|3 +816062|29000599440|3 +816130|29000599441|3 +819946|29000599447|3 +818165|29000599448|3 +818742|29000599449|3 +819947|29000599450|3 +819136|29000599453|3 +818166|29000599454|3 +818743|29000599458|3 +832800|29000599459|7 +819948|29000599460|3 +819949|29000599462|3 +817768|29000599463|3 +818167|29000599464|3 +818622|29000599465|5 +832801|29000599466|7 +818168|29000599468|3 +818744|29000599470|3 +820787|29000599475|3 +820707|29000599476|3 +820856|29000599477|3 +820866|29000599478|3 +820855|29000599479|3 +820965|29000599480|3 +820963|29000599481|3 +822041|29000599482|3 +822081|29000599483|3 +821963|29000599485|3 +822504|29000599487|3 +822767|29000599490|3 +823000|29000599493|3 +822860|29000599494|3 +823273|29000599496|3 +823274|29000599497|3 +823804|29000599500|3 +823792|29000599501|3 +824045|29000599503|3 +824524|29000599507|3 +824571|29000599508|3 +824573|29000599509|3 +824583|29000599511|3 +824579|29000599512|3 +824663|29000599513|3 +824857|29000599515|3 +824861|29000599516|3 +824999|29000599517|3 +825000|29000599518|3 +824643|29000600060|3 +811906|29000602365|3 +819944|29001014617|3 +818224|29001014618|3 +820640|29001014747|3 +541730|29001023359|3 +816183|29001034509|3 +547592|29001035314|3 +608533|29001035754|3 +823086|29001040452|3 +822999|29001062501|3 +818286|29001070429|3 +815339|29001073662|3 +548702|29001085395|3 +812621|29001090943|3 +564934|29001095165|3 +832799|29001096263|7 +810215|29001102628|3 +599131|29001126738|3 +811747|29001130004|3 +815022|29001135177|3 +810213|29001136446|3 +814914|29001156302|3 +507538|29001171225|3 +819173|29001173384|3 +817609|29001175845|3 +819945|29001187765|3 +810214|29001196998|3 +815584|29001198654|3 +835486|29001200953|3 +811655|29001219888|3 +823706|29001221338|3 +811896|29001231155|3 +817610|29001233046|3 +834028|29001233047|3 +823704|29001234340|3 +901385|29001243464|3 +812292|29001269921|3 +817993|29001294668|3 +823793|29001299539|3 +823275|29001304895|3 +823705|29001306885|3 +564933|29001311128|3 +835488|29001318065|3 +815648|29001319462|3 +811856|29001321745|3 +594231|29001327921|3 +823703|29001355891|3 +813945|29001365905|3 +813946|29001365909|3 +823788|29001386839|3 +777459|29001394172|3 +823786|29001394175|3 +811619|29001407500|3 +815595|29001409506|3 +814977|29001419364|3 +605886|29001422846|3 +818745|29001424109|3 +813641|29001424121|3 +810955|29001431420|3 +833698|29001435418|3 +814905|29001437657|3 +820045|29001450574|3 +862873|29001457022|5 +819370|29001457026|5 +823276|29001462711|3 +883368|29001463638|3 +810639|29001465142|3 +815340|29001475313|3 +815341|29001476610|3 +832803|29001477943|7 +822769|29001477944|3 +816216|29001482540|3 +733429|29001490983|3 +814666|29001494480|3 +823797|29001494798|3 +818191|29001497512|3 +810247|29001500632|3 +795709|29001500831|3 +626145|29001503296|3 +821328|29001504557|3 +469671|29001517445|3 +835487|29001522059|3 +810452|29001528117|3 +816082|29001529058|3 +822792|29001529078|3 +815285|29001534812|3 +814667|29001535686|3 +782655|29001539674|3 +810206|29001548257|3 +816077|29001552802|3 +824563|29001552806|3 +812864|29001561875|3 +812841|29001561876|3 +824586|29001564623|3 +824585|29001564624|3 +549151|29001567847|3 +814209|29001568923|3 +818623|29001571358|5 +824011|29001572467|3 +810638|29001573306|3 +832802|29001577179|7 +454729|30000280792|3 +494805|30000281121|3 +504053|30000281196|3 +515800|30000281316|3 +800506|30000281423|3 +539752|30000281525|3 +539753|30000281527|3 +544303|30000281597|3 +604029|30000281645|3 +558535|30000281709|3 +592134|30000282042|3 +598908|30000282091|3 +616173|30000282248|3 +616178|30000282250|3 +672280|30000282783|3 +675874|30000282819|3 +687772|30000282954|3 +707534|30000283126|3 +741730|30000283381|3 +753676|30000283429|3 +755827|30000283461|3 +777845|30000283727|3 +780156|30000283758|3 +780706|30000283766|3 +797853|30000283934|3 +822102|30000284009|3 +805410|30000284030|3 +810178|30000284067|3 +810179|30000284068|3 +810548|30000284071|3 +810505|30000284072|3 +826287|30000284073|7 +811253|30000284075|3 +811264|30000284077|3 +811427|30000284080|3 +811428|30000284082|3 +811569|30000284083|3 +811560|30000284084|3 +811873|30000284087|3 +811719|30000284089|3 +811967|30000284091|3 +811966|30000284093|3 +813364|30000284097|3 +813389|30000284098|3 +813820|30000284099|3 +813816|30000284100|3 +813845|30000284101|3 +829105|30000284102|5 +814032|30000284103|3 +814186|30000284104|3 +814187|30000284106|3 +814225|30000284108|3 +814226|30000284109|3 +814242|30000284110|3 +830105|30000284111|5 +814993|30000284112|3 +814988|30000284115|3 +815077|30000284117|3 +815288|30000284121|3 +815174|30000284122|3 +815289|30000284123|3 +816089|30000284128|3 +817265|30000284130|3 +817278|30000284132|3 +817379|30000284134|3 +819218|30000284136|3 +833699|30000284140|3 +819346|30000284145|3 +818109|30000284146|3 +817632|30000284147|3 +833700|30000284154|3 +818148|30000284157|3 +820677|30000284159|3 +820737|30000284160|3 +820738|30000284167|3 +820934|30000284170|3 +820942|30000284171|3 +821415|30000284172|3 +837619|30000284174|5 +821820|30000284175|3 +821779|30000284179|3 +837620|30000284181|5 +821561|30000284183|3 +821821|30000284184|3 +822309|30000284186|3 +823181|30000284190|3 +823286|30000284191|3 +823287|30000284192|3 +823534|30000284194|3 +823808|30000284196|3 +824538|30000284199|3 +825026|30000284203|3 +825141|30000284205|3 +825114|30000284206|3 +856797|30000284370|3 +870318|30000284485|3 +900047|30000284804|3 +470169|30000285850|3 +817906|30000287268|3 +817633|30000288038|3 +810142|30001001142|3 +683172|30001004330|3 +823295|30001006965|3 +813815|30001010912|3 +570925|30001010954|3 +820908|30001022816|3 +813433|30001024694|3 +815057|30001025240|3 +637238|30001027367|3 +665140|30001041438|3 +817266|30001044886|3 +818716|30001055854|3 +604336|30001056914|3 +454730|30001072383|3 +729902|30001085462|3 +815913|30001087702|3 +810761|30001090858|3 +823626|30001091129|3 +508555|30001096207|3 +582932|30001100195|3 +811970|30001117226|3 +567824|30001117648|3 +818095|30001129717|3 +849433|30001131847|3 +825033|30001131848|3 +819052|30001134564|3 +826002|30001147121|3 +815366|30001147327|3 +609708|30001149367|3 +824527|30001149557|3 +666639|30001155920|3 +820962|30001155943|3 +836492|30001157247|3 +811917|30001171333|3 +824514|30001178553|3 +837377|30001198682|3 +813825|30001201671|3 +811898|30001210213|3 +782702|30001221055|3 +658040|30001224966|3 +811227|30001237433|3 +823950|30001239250|3 +526652|30001246993|3 +823814|30001250350|3 +811889|30001255345|3 +454580|30001263369|3 +897719|30001265425|3 +813818|30001268881|3 +811238|30001268918|3 +820633|30001269814|3 +810140|30001304144|3 +591931|30001309997|3 +570926|30001312096|3 +811689|30001313808|3 +820679|30001314587|3 +810333|30001316148|3 +686070|30001316673|3 +810689|30001324897|3 +823802|30001326534|3 +659339|30001329763|3 +825115|30001334852|3 +811246|30001346899|3 +810106|30001348890|3 +547647|30001351317|3 +815508|30001352477|3 +811563|30001359710|3 +811564|30001362609|3 +805411|30001365033|3 +563584|30001371504|3 +525255|30001375996|3 +814230|30001381014|3 +694533|30001383140|3 +823949|30001383373|3 +849434|30001394988|3 +853528|30001396068|3 +671989|30001398377|3 +810131|30001399677|3 +753677|30001406238|3 +590983|30001409031|3 +811203|30001415601|3 +645789|30001416306|3 +878970|30001418427|3 +753530|30001421876|3 +778554|30001434415|3 +810749|30001439056|3 +810396|30001445702|3 +819601|30001461802|3 +820909|30001462476|3 +810964|30001480770|3 +811478|30001483666|3 +818126|30001488958|3 +815301|30001489025|3 +811228|30001492002|3 +811006|30001503525|3 +755828|30001507707|3 +624182|30001510564|3 +797756|30001512951|3 +825099|30001512956|3 +810132|30001522959|3 +812699|30001531586|3 +837543|30001532541|3 +805422|30001537674|3 +475135|30001543619|3 +813798|30001546035|3 +811831|30001546062|3 +824960|30001548676|3 +526705|30001549482|3 +571871|30001549487|3 +821855|30001553313|3 +820910|30001561383|3 +819053|30001577062|3 +451270|31000288096|3 +463964|31000288305|3 +467606|31000288342|3 +485390|31000288678|3 +485388|31000288679|3 +496505|31000288861|3 +499754|31000288941|3 +507539|31000289102|3 +507540|31000289107|3 +511953|31000289178|3 +522153|31000289374|3 +815226|31000289428|3 +525698|31000289466|3 +526340|31000289484|3 +530247|31000289586|3 +531949|31000289615|3 +539439|31000289733|3 +539440|31000289743|3 +540996|31000289762|3 +540997|31000289767|3 +540391|31000289769|3 +543400|31000289812|3 +544844|31000289858|3 +821555|31000289884|3 +559361|31000290124|3 +559260|31000290127|3 +580885|31000290582|3 +591534|31000290812|3 +594183|31000290864|3 +606279|31000291119|3 +609672|31000291164|3 +612341|31000291198|3 +612318|31000291199|3 +612342|31000291204|3 +612340|31000291206|3 +613675|31000291217|3 +613943|31000291224|3 +624179|31000291440|3 +632330|31000291636|3 +639990|31000291780|3 +641286|31000291800|3 +645940|31000291900|3 +649739|31000291973|3 +664940|31000292311|3 +688821|31000292711|3 +690316|31000292744|3 +698237|31000292954|3 +704787|31000293037|3 +717274|31000293303|3 +591798|31000293427|3 +726161|31000293452|3 +729940|31000293497|3 +733425|31000293573|3 +736574|31000293651|3 +736575|31000293652|3 +842033|31000293767|3 +758079|31000293952|3 +771494|31000294183|3 +778758|31000294333|3 +790209|31000294503|3 +814840|31000294768|3 +805401|31000294797|3 +805399|31000294798|3 +805402|31000294799|3 +809724|31000294887|3 +810211|31000294899|3 +810220|31000294900|3 +810942|31000294901|5 +810965|31000294905|3 +810966|31000294909|3 +811269|31000294910|3 +811222|31000294911|3 +811266|31000294914|3 +811260|31000294915|3 +811259|31000294916|3 +811311|31000294917|3 +811285|31000294918|3 +811688|31000294920|3 +812178|31000294925|3 +812309|31000294928|3 +812857|31000294930|3 +812840|31000294931|3 +812939|31000294932|3 +812942|31000294934|3 +813238|31000294939|3 +813478|31000294940|3 +813479|31000294941|3 +813691|31000294945|3 +813698|31000294946|3 +813753|31000294949|3 +814022|31000294952|3 +813995|31000294954|3 +814056|31000294955|3 +814102|31000294956|3 +814126|31000294957|3 +814238|31000294958|3 +814232|31000294959|3 +814228|31000294960|3 +814243|31000294961|3 +814789|31000294963|3 +814841|31000294964|3 +814886|31000294965|3 +814934|31000294967|3 +815312|31000294969|3 +815230|31000294970|3 +815298|31000294977|3 +815483|31000294978|3 +815498|31000294979|3 +815603|31000294980|3 +816107|31000294987|3 +816303|31000294989|3 +816486|31000294992|3 +833000|31000294993|5 +818110|31000294997|3 +818624|31000294998|5 +834830|31000295000|5 +818858|31000295005|5 +817879|31000295006|3 +820044|31000295011|3 +834831|31000295013|5 +817586|31000295016|3 +818583|31000295022|3 +819384|31000295023|3 +815233|31000295033|3 +820979|31000295040|3 +821903|31000295046|3 +821211|31000295051|3 +821507|31000295056|3 +822666|31000295057|3 +822768|31000295058|3 +823015|31000295059|3 +823016|31000295061|3 +822847|31000295063|3 +823554|31000295068|3 +823609|31000295069|3 +823443|31000295070|3 +823548|31000295072|3 +838885|31000295074|5 +824226|31000295077|3 +824260|31000295078|3 +824158|31000295079|3 +824153|31000295080|3 +824133|31000295081|3 +824284|31000295083|3 +824251|31000295084|3 +824516|31000295085|3 +824542|31000295086|3 +824687|31000295087|3 +824806|31000295088|3 +824807|31000295089|3 +825159|31000295090|3 +825160|31000295091|3 +847135|31000295235|3 +865618|31000295607|3 +870815|31000295706|3 +559025|31000298445|3 +812225|31000298447|3 +817334|31000301179|3 +548493|31001004154|3 +816108|31001006757|3 +599635|31001006772|3 +815371|31001006835|3 +811273|31001007634|3 +559362|31001014763|3 +853735|31001015261|3 +597232|31001016354|3 +815363|31001019156|3 +834858|31001020283|5 +818157|31001024569|3 +769208|31001028766|3 +762830|31001034436|3 +530250|31001036294|3 +609560|31001039587|3 +814084|31001041428|3 +469670|31001045983|3 +736576|31001051593|3 +467482|31001060543|3 +817190|31001063599|3 +839405|31001081390|3 +811223|31001082556|3 +725128|31001082989|3 +540998|31001084803|3 +814247|31001086487|3 +725120|31001088865|3 +778059|31001091142|3 +501754|31001093360|3 +804207|31001094043|3 +835481|31001094397|3 +820270|31001095807|3 +612319|31001099508|3 +789011|31001099780|3 +811971|31001104609|3 +816186|31001110032|3 +818413|31001110347|3 +814240|31001115913|3 +818658|31001126615|3 +566484|31001129318|3 +762880|31001138169|3 +813480|31001140373|3 +824105|31001145467|3 +812810|31001148469|3 +824200|31001152730|3 +670488|31001161064|3 +813477|31001166514|3 +824515|31001166571|3 +540381|31001172199|3 +571870|31001174917|3 +816105|31001180072|3 +818584|31001189822|3 +822745|31001191150|3 +685472|31001193709|3 +810774|31001198298|3 +824502|31001199433|3 +507355|31001199819|3 +811128|31001212082|3 +870169|31001223283|3 +820046|31001229410|3 +812056|31001232988|3 +772909|31001237812|3 +813685|31001240650|3 +812861|31001241813|3 +822098|31001244451|3 +470144|31001244527|3 +616174|31001244600|3 +853727|31001247426|3 +810926|31001249297|3 +815487|31001250114|3 +815488|31001255738|3 +810731|31001271674|3 +842038|31001271987|3 +812811|31001277311|3 +812866|31001281431|3 +678340|31001282321|3 +815560|31001286033|3 +817199|31001286038|3 +818195|31001286044|3 +728979|31001288168|3 +814130|31001296987|3 +815120|31001299296|3 +810404|31001300135|3 +815346|31001301550|3 +813722|31001304350|3 +810201|31001310153|3 +605186|31001311403|3 +815231|31001320628|3 +583436|31001321292|3 +817587|31001321383|3 +811876|31001322427|3 +539441|31001322845|3 +818330|31001326703|3 +820127|31001326706|3 +540392|31001327303|3 +736472|31001333700|3 +811240|31001337267|3 +798955|31001341072|3 +817187|31001342462|3 +822777|31001347873|3 +823406|31001349351|3 +819961|31001357710|3 +820796|31001358430|3 +507537|31001360924|3 +613944|31001362408|3 +810732|31001362876|3 +823190|31001369772|3 +451271|31001377918|3 +814133|31001378850|3 +811376|31001379402|3 +825177|31001381342|3 +540393|31001382236|3 +815396|31001382759|3 +821802|31001387776|3 +814882|31001388517|3 +817200|31001392759|3 +821435|31001395674|3 +824559|31001397114|3 +824186|31001397672|3 +811373|31001410812|3 +908641|31001412873|2 +812700|31001419929|3 +815360|31001419931|3 +690322|31001420527|3 +838289|31001425726|5 +813917|31001432445|3 +826344|31001436179|5 +870168|31001438297|3 +817194|31001438442|3 +824805|31001439026|3 +633738|31001439930|3 +511400|31001440426|3 +811327|31001440623|3 +865466|31001443565|3 +760727|31001449659|3 +883157|31001449661|3 +813247|31001450887|3 +811328|31001453095|3 +485389|31001458080|3 +812848|31001460846|3 +898168|31001461638|3 +824543|31001465207|3 +823606|31001466181|3 +824134|31001466806|3 +842034|31001469723|3 +812523|31001469866|3 +729941|31001475072|3 +824217|31001475802|3 +815464|31001477790|3 +512487|31001479911|3 +814253|31001480058|3 +824266|31001481077|3 +469663|31001488431|3 +822977|31001488639|3 +823940|31001489644|3 +678490|31001490297|3 +796495|31001499179|3 +821509|31001500762|3 +812332|31001503313|3 +812800|31001503820|3 +690323|31001504474|3 +816460|31001507294|3 +812701|31001510570|3 +814616|31001511195|3 +815479|31001512859|3 +825135|31001519754|3 +810571|31001520156|3 +540394|31001520158|3 +668133|31001527788|3 +819385|31001528527|3 +811241|31001530351|3 +559223|31001530381|3 +816110|31001535399|3 +810961|31001538155|3 +881316|31001539751|3 +824037|31001545243|3 +818614|31001545418|5 +853728|31001553033|3 +816835|31001558399|3 +812323|31001562140|3 +812849|31001571221|3 +540390|31001571732|3 +878419|31001573607|3 +878420|31001573757|3 +451268|32000832021|3 +451263|32000832022|3 +451266|32000832024|3 +451267|32000832025|3 +462333|32000832218|3 +469282|32000832382|3 +470410|32000832386|3 +472772|32000832400|3 +478981|32000832512|3 +478982|32000832517|3 +482184|32000832596|3 +487992|32000832712|3 +501697|32000833047|3 +511854|32000833294|3 +512486|32000833304|3 +512341|32000833309|3 +526341|32000833628|3 +527049|32000833642|3 +534091|32000833821|3 +534282|32000833825|3 +535547|32000833872|3 +540705|32000833997|3 +539804|32000834038|3 +539730|32000834055|3 +539731|32000834062|3 +544855|32000834129|3 +555530|32000834365|3 +561286|32000834476|3 +570920|32000834689|3 +570815|32000834694|3 +572726|32000834734|3 +837239|32000835235|7 +599128|32000835337|3 +599228|32000835339|3 +599129|32000835341|3 +599130|32000835345|3 +599858|32000835355|3 +602282|32000835438|3 +603164|32000835463|3 +604684|32000835508|3 +611933|32000835620|3 +611934|32000835623|3 +613229|32000835650|3 +558915|32000836067|3 +628935|32000836071|3 +782253|32000836115|3 +635524|32000836187|3 +635525|32000836193|3 +634485|32000836195|3 +635889|32000836224|3 +820028|32000836497|3 +820254|32000836660|5 +662990|32000836771|3 +665135|32000836817|3 +665786|32000836827|3 +668188|32000836903|3 +672035|32000837006|3 +679139|32000837163|3 +679434|32000837172|3 +679478|32000837177|3 +679862|32000837200|3 +679863|32000837201|3 +679855|32000837202|3 +681844|32000837266|3 +681853|32000837271|3 +535548|32000837324|3 +689754|32000837465|3 +690685|32000837491|3 +512342|32000837583|3 +635429|32000837609|3 +696736|32000837625|3 +700387|32000837668|3 +706838|32000837842|3 +821240|32000837884|3 +715835|32000838037|3 +722338|32000838212|3 +726229|32000838295|3 +730013|32000838366|3 +730674|32000838381|3 +623532|32000838393|3 +731165|32000838406|3 +731166|32000838413|3 +731167|32000838414|3 +735029|32000838519|3 +746730|32000838788|3 +747180|32000838802|3 +750723|32000838829|3 +757820|32000838978|3 +759274|32000839003|3 +821921|32000839032|3 +760206|32000839035|3 +760171|32000839036|3 +762874|32000839116|3 +762875|32000839120|3 +762829|32000839122|3 +769088|32000839244|3 +771485|32000839328|3 +771914|32000839332|3 +775854|32000839429|3 +783208|32000839670|3 +788811|32000839857|3 +788812|32000839859|3 +794553|32000840019|3 +795802|32000840071|3 +800307|32000840231|3 +817615|32000840416|3 +810184|32000840478|3 +810222|32000840481|3 +810328|32000840488|3 +810797|32000840490|3 +811117|32000840491|3 +810957|32000840498|3 +810958|32000840500|3 +810878|32000840503|3 +810879|32000840504|3 +810634|32000840505|3 +810619|32000840506|3 +826283|32000840508|7 +811513|32000840517|3 +811568|32000840518|3 +811607|32000840519|3 +811615|32000840520|3 +811614|32000840521|3 +811624|32000840522|3 +811616|32000840523|3 +827001|32000840524|3 +811958|32000840526|3 +812060|32000840529|3 +812221|32000840531|3 +812260|32000840532|3 +812248|32000840533|3 +812281|32000840534|3 +812266|32000840536|3 +812714|32000840541|3 +812478|32000840542|3 +812543|32000840544|3 +812544|32000840546|3 +812717|32000840547|3 +812545|32000840548|3 +812893|32000840553|3 +813060|32000840554|3 +813080|32000840555|3 +813402|32000840557|3 +813659|32000840560|3 +813632|32000840561|3 +813731|32000840562|3 +813729|32000840563|3 +813748|32000840564|3 +814148|32000840568|3 +814639|32000840570|3 +814703|32000840571|3 +814701|32000840572|3 +814784|32000840573|3 +814850|32000840575|3 +814874|32000840576|3 +814875|32000840577|3 +814916|32000840579|3 +815144|32000840583|3 +815189|32000840587|3 +815516|32000840589|3 +815542|32000840590|3 +815640|32000840592|3 +815723|32000840593|3 +815517|32000840596|3 +815670|32000840597|3 +815888|32000840601|3 +815900|32000840602|3 +815908|32000840603|3 +815907|32000840604|3 +816152|32000840607|3 +816369|32000840608|3 +816473|32000840613|3 +817100|32000840615|3 +817142|32000840616|3 +817257|32000840619|3 +817519|32000840622|3 +818603|32000840627|3 +818604|32000840631|3 +819612|32000840632|3 +834032|32000840633|3 +817661|32000840638|3 +818605|32000840639|3 +818140|32000840640|3 +817998|32000840648|3 +818141|32000840650|3 +835469|32000840651|3 +817617|32000840653|3 +818080|32000840654|3 +818142|32000840655|3 +819120|32000840656|5 +819613|32000840657|3 +834893|32000840659|5 +819322|32000840660|3 +817618|32000840662|3 +817616|32000840664|3 +819461|32000840665|3 +819479|32000840668|3 +817619|32000840669|3 +819158|32000840670|3 +835399|32000840675|5 +818384|32000840680|3 +819323|32000840683|3 +835400|32000840686|5 +817966|32000840687|5 +817967|32000840690|5 +818606|32000840694|3 +835401|32000840695|5 +818143|32000840696|3 +817968|32000840700|5 +817620|32000840701|3 +817621|32000840702|3 +818149|32000840703|3 +818309|32000840705|3 +818607|32000840706|3 +818608|32000840707|3 +818609|32000840708|3 +819137|32000840711|3 +834033|32000840712|3 +819371|32000840713|5 +818859|32000840715|5 +818192|32000840723|3 +834034|32000840724|3 +835402|32000840725|5 +820515|32000840726|3 +820750|32000840727|3 +820759|32000840729|3 +820844|32000840731|3 +820554|32000840733|3 +820778|32000840734|3 +822218|32000840736|5 +822219|32000840737|5 +822002|32000840739|3 +821912|32000840742|3 +836842|32000840743|5 +836848|32000840744|5 +822334|32000840745|3 +821587|32000840748|3 +822220|32000840752|5 +836953|32000840753|7 +836482|32000840755|3 +821728|32000840756|3 +821913|32000840759|3 +821288|32000840766|3 +822364|32000840767|3 +821403|32000840768|3 +836849|32000840769|5 +821471|32000840770|3 +836483|32000840771|3 +822003|32000840772|3 +822004|32000840773|3 +821432|32000840774|3 +822042|32000840775|3 +821312|32000840776|3 +821135|32000840778|3 +836954|32000840779|7 +821914|32000840784|3 +821545|32000840785|3 +836955|32000840786|7 +836484|32000840787|3 +822698|32000840788|3 +822787|32000840789|3 +822798|32000840791|3 +823047|32000840797|3 +822931|32000840804|3 +823093|32000840805|3 +823378|32000840811|3 +823572|32000840812|3 +823738|32000840815|3 +823726|32000840816|3 +823740|32000840817|3 +823733|32000840818|3 +823872|32000840819|3 +823918|32000840820|3 +824010|32000840823|3 +824021|32000840825|3 +824007|32000840826|3 +824086|32000840827|3 +824131|32000840828|3 +824139|32000840829|3 +824287|32000840830|3 +824140|32000840831|3 +824207|32000840832|3 +824218|32000840835|3 +824450|32000840842|3 +824452|32000840844|3 +824485|32000840846|3 +824508|32000840847|3 +824553|32000840848|3 +824509|32000840849|3 +824535|32000840850|3 +824510|32000840851|3 +824526|32000840853|3 +824511|32000840854|3 +824588|32000840856|3 +824587|32000840857|3 +824854|32000840860|3 +824862|32000840861|3 +824995|32000840863|3 +825032|32000840865|3 +825025|32000840866|3 +825165|32000840867|3 +825145|32000840868|3 +825146|32000840869|3 +840487|32000840871|3 +847133|32000841084|3 +849444|32000841168|3 +849441|32000841174|3 +823471|32000841679|3 +821639|32000841696|3 +867620|32000841697|3 +870568|32000841745|3 +877567|32000841918|3 +878498|32000841938|3 +883361|32000842026|3 +883352|32000842032|3 +891088|32000842179|3 +891000|32000842191|3 +891001|32000842200|3 +908676|32000842521|2 +503454|32000846194|3 +817969|32000846738|5 +824580|32000847783|3 +835463|32000849613|3 +823478|32001017076|3 +541197|32001017682|3 +822005|32001018070|3 +634486|32001020987|3 +818105|32001020988|3 +603171|32001023046|3 +821580|32001028674|3 +819324|32001037265|3 +817539|32001039270|3 +818144|32001039324|3 +846438|32001039510|3 +849446|32001039761|3 +812571|32001042497|3 +822507|32001043321|3 +821252|32001044893|3 +817704|32001045270|3 +516302|32001056952|3 +852340|32001062437|3 +820079|32001062914|3 +470448|32001063757|3 +826284|32001064677|7 +658736|32001070450|3 +570816|32001070620|3 +675388|32001070753|3 +819325|32001072093|3 +817686|32001072104|3 +543403|32001072339|3 +687322|32001072665|3 +814017|32001072761|3 +559326|32001080029|3 +816157|32001080455|3 +540700|32001080525|3 +819326|32001087862|3 +812622|32001090270|3 +613533|32001090883|3 +824258|32001091610|3 +824181|32001091611|3 +834035|32001092860|3 +669440|32001096937|3 +815717|32001096959|3 +822788|32001098125|3 +823032|32001098128|3 +813772|32001102795|3 +540650|32001102805|3 +822610|32001104707|3 +810415|32001107147|3 +817971|32001107203|5 +811638|32001108878|3 +494048|32001109087|3 +815865|32001109101|3 +821299|32001111189|3 +599233|32001112050|3 +832832|32001115989|5 +824163|32001116108|3 +835464|32001121611|3 +810373|32001122396|3 +811961|32001122397|3 +817535|32001122399|3 +823742|32001122401|3 +824031|32001124521|3 +535553|32001125590|3 +821136|32001126375|3 +629788|32001128273|3 +819602|32001128291|3 +540701|32001141822|3 +535554|32001141940|3 +559262|32001142017|3 +822341|32001142109|3 +818321|32001142283|3 +815143|32001142379|3 +810864|32001143081|3 +535555|32001146152|3 +818081|32001146490|3 +812669|32001147779|3 +821915|32001149543|3 +762623|32001150883|3 +811123|32001157854|3 +753673|32001158078|3 +627340|32001158683|3 +556586|32001166301|3 +811028|32001176081|3 +653187|32001176253|3 +800306|32001176771|3 +818221|32001177709|3 +825034|32001179109|3 +815010|32001179812|3 +540702|32001186023|3 +818599|32001190730|5 +820772|32001191923|3 +668640|32001193965|3 +818150|32001193968|3 +822006|32001194433|3 +822794|32001196897|3 +817952|32001197608|3 +816159|32001197689|3 +771496|32001201107|3 +811988|32001202365|3 +810307|32001202571|3 +812956|32001210352|3 +816415|32001210359|3 +864218|32001215968|3 +526352|32001216197|3 +825130|32001216973|3 +813774|32001217727|3 +821916|32001218255|3 +822217|32001223329|5 +824299|32001223980|3 +824987|32001226285|3 +771928|32001230669|3 +526353|32001231808|3 +810361|32001233792|3 +824848|32001235056|3 +812885|32001235960|3 +672186|32001236866|3 +821917|32001236895|3 +541451|32001240858|3 +736928|32001240959|3 +834043|32001240979|3 +813773|32001241756|3 +837252|32001242871|7 +810362|32001244436|3 +824473|32001245393|3 +899369|32001246554|3 +818136|32001246898|3 +622067|32001247954|3 +521251|32001249562|3 +816841|32001252730|3 +812889|32001254151|3 +825166|32001254602|3 +570836|32001257740|3 +821918|32001258908|3 +819462|32001259367|3 +824849|32001267738|3 +815017|32001268064|3 +824853|32001268065|3 +908674|32001275254|2 +588684|32001275559|3 +811989|32001276755|3 +524490|32001277973|3 +478985|32001287622|3 +824666|32001288004|3 +675873|32001288497|3 +818600|32001291616|3 +834044|32001291617|3 +823033|32001291621|3 +815015|32001294065|3 +817614|32001296463|3 +823873|32001297823|3 +837253|32001298607|7 +814699|32001299047|3 +819463|32001303514|3 +821429|32001304773|3 +822693|32001306411|3 +819153|32001306741|3 +834045|32001307722|3 +559026|32001309350|3 +730012|32001311003|3 +818137|32001313674|3 +819333|32001320803|3 +540703|32001321860|3 +827883|32001322600|4 +466990|32001322822|2 +601044|32001322828|2 +712897|32001322831|2 +720912|32001322832|2 +770021|32001322833|2 +874223|32001322834|2 +526214|32001323290|2 +596848|32001323391|2 +770579|32001323430|2 +874221|32001323431|2 +586539|32001323537|2 +860164|32001323539|2 +860160|32001323540|2 +799876|32001323707|2 +572736|32001323771|2 +598448|32001323772|2 +606770|32001323773|2 +638572|32001323774|2 +699120|32001324049|2 +714994|32001324056|2 +1249287|32001324112|2 +563734|32001324232|2 +846749|32001324235|2 +456194|32001324495|2 +539288|32001324496|2 +575557|32001324554|2 +658606|32001324834|2 +601917|32001324854|2 +679029|32001324863|2 +773184|32001324865|2 +860866|32001325038|2 +570073|32001325072|2 +873762|32001325140|2 +783650|32001325281|2 +785942|32001325282|2 +1101834|32001325398|2 +455293|32001325415|2 +887312|32001325515|2 +1182730|32001325516|2 +455506|32001325650|2 +576300|32001325651|2 +710465|32001325930|2 +721545|32001326043|2 +798975|32001326044|2 +530367|32001326079|2 +527172|32001326291|2 +512359|32001326373|4 +780029|32001326427|2 +537045|32001326432|2 +527188|32001326439|2 +527185|32001326444|2 +792834|32001326525|2 +534135|32001326683|2 +787579|32001326745|2 +613397|32001326955|2 +713222|32001326956|2 +740441|32001326960|2 +761540|32001326961|2 +825865|32001326962|4 +841140|32001326965|2 +771115|32001327147|2 +598687|32001327274|2 +675607|32001327276|2 +865164|32001327281|2 +533521|32001327355|2 +634403|32001327357|2 +668077|32001327384|2 +668013|32001327387|2 +711882|32001327407|2 +584813|32001327539|2 +715305|32001327609|2 +529902|32001327642|2 +759892|32001327644|2 +544443|32001327997|2 +589787|32001327998|2 +659217|32001328001|2 +692671|32001328002|2 +732372|32001328003|2 +860572|32001328037|2 +891124|32001328038|4 +776153|32001328171|2 +666867|32001328260|2 +666866|32001328273|2 +530349|32001328659|2 +677103|32001328848|2 +551935|32001329144|2 +712845|32001329155|2 +856074|32001329161|2 +584783|32001329550|2 +614738|32001329552|2 +660151|32001329578|2 +679575|32001329583|2 +841167|32001329586|2 +852568|32001329743|2 +724820|32001329888|2 +615063|32001330165|2 +615066|32001330167|2 +774101|32001330168|2 +669027|32001330400|2 +575361|32001330501|2 +861246|32001330504|2 +802778|32001330733|2 +758698|32001331412|2 +845410|32001331427|2 +506077|32001331524|2 +796046|32001331526|2 +510742|32001331641|2 +588172|32001331643|2 +694980|32001331646|2 +711039|32001331647|2 +711040|32001331913|2 +500829|32001332139|2 +567401|32001332141|2 +603156|32001332143|2 +713121|32001332160|2 +727022|32001332333|2 +662264|32001332588|2 +637982|32001332747|2 +681528|32001332748|2 +760031|32001332749|4 +567031|32001332996|2 +652912|32001332998|2 +478437|32001333177|2 +747297|32001333375|2 +844375|32001333377|2 +625376|32001333743|2 +501437|32001334616|2 +511669|32001334617|2 +535761|32001334618|2 +556456|32001334619|2 +601609|32001334620|2 +624069|32001334622|2 +673138|32001334623|2 +675750|32001334624|2 +793721|32001334627|2 +830161|32001334628|4 +833843|32001334630|4 +857764|32001334631|2 +857765|32001334633|2 +896730|32001334634|2 +535762|32001334635|2 +794541|32001334655|2 +775729|32001334754|2 +675942|32001334756|4 +861197|32001335249|2 +892422|32001335262|2 +1006878|32001335265|2 +548167|32001335310|2 +581780|32001335320|2 +678710|32001335590|2 +750694|32001335591|2 +638328|32001335916|2 +843980|32001335919|2 +891809|32001335921|2 +893634|32001335922|2 +783220|32001336098|2 +719564|32001336696|2 +529394|32001336836|2 +660683|32001336837|2 +769543|32001336839|2 +457058|32001337102|2 +491108|32001337103|2 +502805|32001337105|2 +684872|32001337108|2 +569699|32001337149|2 +778312|32001337432|2 +858192|32001337669|2 +859649|32001337670|2 +874677|32001337671|2 +511975|32001337875|2 +780694|32001337879|2 +806090|32001337893|2 +529406|32001337996|2 +540959|32001338108|2 +722336|32001338109|2 +698003|32001338957|2 +591053|32001339828|2 +721535|32001339832|2 +745391|32001339833|2 +844982|32001339838|2 +858600|32001339861|2 +861742|32001339862|2 +712635|32001339950|2 +848329|32001339951|2 +623371|32001340196|2 +839736|32001340197|4 +899293|32001340199|2 +538327|32001340287|2 +534762|32001340377|2 +534763|32001340397|2 +613025|32001340429|2 +843151|32001340439|2 +861527|32001340441|2 +711311|32001340463|2 +677705|32001340485|2 +516448|32001340487|2 +474668|32001340568|2 +796080|32001340569|2 +852679|32001340640|2 +831368|32001340645|4 +530621|32001340806|2 +796047|32001340808|2 +695692|32001340878|2 +783287|32001340879|2 +791960|32001340880|4 +484291|32001341280|2 +490103|32001341281|2 +497023|32001341282|2 +674108|32001341289|2 +694019|32001341290|2 +695421|32001341293|2 +846898|32001341295|2 +739711|32001341331|2 +730964|32001341355|2 +596046|32001341374|2 +669248|32001342836|2 +682437|32001342838|2 +730654|32001342840|2 +789952|32001342846|2 +790195|32001342847|2 +828128|32001342848|4 +837597|32001342850|4 +858817|32001342852|2 +893867|32001342853|2 +799966|32001343089|2 +768355|32001343114|2 +796067|32001343118|2 +635150|32001343371|2 +769423|32001343372|2 +837258|32001344298|8 +566079|32001344344|2 +675802|32001344351|2 +529097|32001344375|2 +843097|32001344428|2 +529098|32001345523|2 +660488|32001345532|2 +681219|32001345541|2 +681791|32001346321|2 +716000|32001347764|2 +474014|32001350154|2 +477191|32001350158|2 +495312|32001350166|2 +496352|32001350167|2 +496353|32001350169|2 +555297|32001350176|2 +575764|32001350181|2 +587966|32001350213|2 +606592|32001350218|2 +617963|32001350222|2 +623518|32001350230|2 +659503|32001350235|2 +665717|32001350240|2 +683977|32001350244|2 +685226|32001350245|2 +702167|32001350250|2 +718554|32001350252|2 +721300|32001350256|2 +721479|32001350258|2 +756648|32001350279|2 +770364|32001350287|2 +790850|32001350289|2 +801686|32001350292|2 +838991|32001350295|4 +843464|32001350296|2 +738225|32001350426|2 +860341|32001350428|2 +882049|32001350433|2 +1022274|32001350477|2 +687682|32001350963|2 +833177|32001351081|6 +603353|32001351116|2 +603354|32001351129|2 +469791|32001351146|2 +770780|32001351163|2 +765538|32001351319|2 +662628|32001351336|2 +731181|32001351339|4 +764299|32001351353|2 +795725|32001351359|2 +795726|32001351360|2 +804533|32001351361|2 +690179|32001351392|2 +608171|32001352331|2 +638388|32001352333|2 +638377|32001352335|2 +638881|32001352337|2 +768840|32001352338|2 +809377|32001352339|2 +828254|32001352340|4 +843152|32001352341|2 +504256|32001353635|2 +840371|32001353744|4 +672482|32001353745|2 +794308|32001354649|2 +794404|32001354660|2 +809378|32001354662|2 +567091|32001354699|2 +464657|32001355579|2 +474417|32001355580|2 +474350|32001355581|2 +478292|32001355583|2 +480912|32001355584|2 +511495|32001355585|2 +528622|32001355586|2 +529865|32001355587|2 +559761|32001355590|2 +590961|32001355592|2 +626017|32001355595|2 +640134|32001355597|2 +647224|32001355599|2 +650781|32001355601|2 +672111|32001355602|2 +676470|32001355603|2 +702602|32001355605|2 +711048|32001355606|2 +713703|32001355607|2 +720706|32001355608|2 +721426|32001355612|2 +733140|32001355613|2 +744572|32001355615|2 +857548|32001355765|2 +576815|32001355777|2 +895292|32001355779|2 +866856|32001355780|2 +862473|32001355782|2 +858377|32001355783|2 +828255|32001355787|4 +825658|32001355788|4 +787575|32001355795|2 +787574|32001355796|2 +781580|32001355799|2 +779254|32001355807|2 +777160|32001355809|2 +775998|32001355812|2 +760460|32001355816|2 +756649|32001355817|2 +581751|32001356059|2 +590965|32001356062|2 +600925|32001356065|2 +843435|32001356066|2 +713219|32001356964|2 +654448|32001357065|2 +685914|32001357083|2 +766482|32001357327|2 +690677|32001357492|2 +705050|32001357494|2 +825973|32001357576|4 +825784|32001357580|4 +455295|32001357582|2 +648347|32001357591|2 +859016|32001357592|2 +459699|32001358263|2 +747280|32001358395|2 +733139|32001358974|2 +866311|32001359043|2 +645882|32001359157|2 +680374|32001359159|2 +868497|32001359545|2 +519051|32001359717|2 +779278|32001359905|2 +779096|32001359906|2 +784669|32001360150|2 +472237|32001360200|2 +626004|32001360201|2 +645448|32001360202|2 +784678|32001360511|2 +697834|32001360753|2 +720092|32001360754|2 +540067|32001360816|2 +745132|32001360818|2 +710954|32001360879|2 +606551|32001361171|2 +731296|32001361172|2 +672925|32001361277|2 +787573|32001361279|2 +803060|32001361280|2 +481973|32001361533|2 +517937|32001361583|2 +754123|32001361587|2 +791237|32001361588|2 +755910|32001361672|2 +755912|32001361673|2 +772584|32001361674|2 +1239441|32001361685|2 +501543|32001361781|2 +591052|32001361782|2 +591049|32001361783|2 +623035|32001361940|2 +872076|32001362071|2 +629205|32001362268|2 +693924|32001362269|2 +493656|32001362314|2 +593175|32001362315|2 +478734|32001362391|2 +726078|32001362576|2 +733130|32001362577|2 +767970|32001362579|2 +855448|32001362580|2 +540725|32001362764|2 +672894|32001362766|2 +695582|32001362767|2 +585807|32001363114|2 +589044|32001363195|2 +571103|32001363361|2 +763393|32001363362|2 +844904|32001363363|2 +675557|32001363659|2 +759513|32001363671|2 +840538|32001363672|4 +873763|32001363692|2 +882476|32001363843|2 +663814|32001363847|2 +488273|32001363910|2 +887240|32001363926|2 +990403|32001363930|2 +695377|32001364036|2 +782738|32001364037|2 +539506|32001364571|2 +647441|32001364573|2 +629851|32001364802|2 +854982|32001364832|2 +893798|32001364923|2 +577588|32001365266|2 +690923|32001365267|2 +466989|32001365562|2 +673631|32001365576|2 +740575|32001365579|2 +796332|32001365580|2 +844382|32001365581|2 +581837|32001365718|2 +645458|32001365725|2 +594641|32001365981|2 +601538|32001365983|2 +723066|32001365996|2 +826653|32001365999|4 +575765|32001366024|2 +542366|32001366253|4 +1107071|32001366255|2 +839771|32001366259|4 +604413|32001366560|2 +716762|32001366561|2 +602355|32001366899|2 +519005|32001366996|2 +590543|32001366997|2 +793390|32001366999|2 +826724|32001367000|4 +594582|32001367227|2 +594065|32001367530|2 +802182|32001367531|2 +510234|32001369299|2 +575390|32001369304|2 +591905|32001369305|2 +596123|32001369306|2 +602444|32001369307|2 +619213|32001369308|2 +639860|32001369310|2 +711028|32001369314|2 +717829|32001369315|2 +721398|32001369316|2 +728596|32001369320|2 +778838|32001369322|2 +807062|32001369323|2 +849821|32001369330|2 +607675|32001369331|2 +533618|32001369372|2 +762137|32001369373|2 +780146|32001369528|2 +769272|32001369538|2 +534428|32001369542|2 +783940|32001369545|2 +851459|32001369622|2 +462025|32001372461|2 +493806|32001372462|2 +500594|32001372463|2 +508939|32001372464|2 +516291|32001372465|2 +542138|32001372466|2 +548488|32001372468|2 +565808|32001372469|2 +587999|32001372470|2 +599952|32001372472|2 +602454|32001372473|2 +606099|32001372474|2 +606289|32001372475|2 +629105|32001372476|2 +629176|32001372477|2 +629155|32001372478|2 +631118|32001372479|2 +649024|32001372480|2 +658622|32001372496|2 +666832|32001372498|2 +695579|32001372500|2 +704775|32001372503|2 +722337|32001372505|2 +737155|32001372506|2 +772764|32001372513|2 +784831|32001372514|2 +806822|32001372530|2 +825866|32001372531|4 +878523|32001372535|4 +878625|32001372536|2 +784141|32001372543|2 +1028621|32001372549|2 +534723|32001372621|2 +617871|32001372641|2 +766256|32001372644|2 +558920|32001372664|2 +566123|32001372675|2 +688072|32001372677|2 +508187|32001372781|2 +554632|32001372962|2 +739271|32001373032|2 +739282|32001373033|2 +634619|32001373034|2 +854071|32001373040|2 +793023|32001373044|2 +711363|32001373054|2 +503025|32001373060|2 +758432|32001373102|2 +463140|32001373349|2 +736720|32001373351|2 +784021|32001373565|2 +853089|32001373566|2 +896434|32001373567|2 +491942|32001374368|2 +521687|32001374369|2 +573080|32001374370|2 +638761|32001374371|2 +672926|32001374372|2 +672883|32001374373|2 +708621|32001374374|2 +708622|32001374377|2 +724316|32001374378|2 +726253|32001374379|2 +738234|32001374380|2 +758431|32001374381|2 +457157|32001374534|2 +523100|32001374535|2 +730655|32001374536|2 +785648|32001374537|2 +871136|32001374538|2 +843726|32001374683|2 +582655|32001374952|2 +843727|32001374958|2 +860571|32001374959|2 +502798|32001375034|2 +634923|32001375259|2 +569647|32001375650|2 +796514|32001375787|4 +840794|32001375788|2 +673677|32001375790|2 +621284|32001375804|2 +797513|32001375809|2 +519350|32001375947|2 +789417|32001375948|2 +795599|32001375949|2 +845194|32001375982|2 +520955|32001376057|2 +837479|32001376383|6 +648697|32001376494|2 +535566|32001376677|2 +558446|32001376678|2 +566188|32001376680|2 +502731|32001376790|2 +705914|32001376831|2 +760595|32001376832|2 +507153|32001377080|2 +781080|32001377187|2 +797502|32001377188|2 +746807|32001377313|2 +630519|32001377557|2 +456509|32001377850|2 +517296|32001377867|2 +621520|32001377870|2 +760783|32001377875|2 +795577|32001377895|2 +798721|32001377900|2 +871137|32001377901|2 +777869|32001378044|2 +612822|32001378060|2 +530431|32001378137|2 +530432|32001378173|2 +836779|32001378187|4 +499238|32001378268|2 +859394|32001378568|2 +623587|32001378689|2 +856706|32001378690|2 +698047|32001378763|2 +829406|32001378858|4 +685195|32001379107|2 +758430|32001379118|2 +482857|32001382036|2 +499893|32001382037|2 +510636|32001382039|2 +530622|32001382041|2 +555917|32001382044|2 +557140|32001382045|2 +560682|32001382048|2 +573017|32001382050|2 +574717|32001382051|2 +583684|32001382052|2 +630335|32001382055|2 +635151|32001382056|2 +660577|32001382058|2 +705038|32001382063|2 +706053|32001382064|2 +711171|32001382065|2 +618459|32001382066|2 +730539|32001382067|2 +755066|32001382068|2 +785857|32001382069|2 +798769|32001382070|2 +805102|32001382071|2 +825974|32001382072|4 +846091|32001382094|2 +852556|32001382096|2 +862052|32001382100|2 +566771|32001382120|2 +1106025|32001382166|2 +583166|32001382243|2 +839795|32001382245|4 +765112|32001382279|2 +886440|32001382322|2 +630342|32001382334|2 +589562|32001382347|2 +493549|32001382384|2 +596980|32001382385|2 +682714|32001382386|2 +852452|32001382391|2 +779659|32001382399|2 +870704|32001382491|2 +457495|32001382668|2 +599359|32001382669|2 +682353|32001382777|2 +600592|32001382804|2 +685091|32001382805|2 +736864|32001382807|2 +872556|32001382811|2 +779175|32001383096|2 +606598|32001383224|2 +624311|32001383349|2 +645910|32001383350|2 +736654|32001383354|2 +896136|32001383355|2 +896089|32001383356|2 +638277|32001383494|2 +770227|32001383496|2 +786666|32001383530|2 +838619|32001383544|4 +529082|32001383547|2 +482889|32001383943|2 +520813|32001383945|2 +707123|32001384028|2 +724723|32001384029|2 +494113|32001384092|2 +1101835|32001384162|2 +727076|32001384388|2 +682438|32001384495|2 +675602|32001384634|2 +786649|32001384636|2 +517047|32001385540|2 +700276|32001385789|2 +890937|32001386013|2 +649134|32001386262|2 +838762|32001386433|4 +661815|32001386538|2 +540183|32001386597|2 +497962|32001387184|2 +572861|32001387196|2 +735747|32001387242|2 +793384|32001387243|2 +648181|32001387358|2 +895569|32001387359|2 +619149|32001387682|2 +771405|32001387762|2 +525056|32001387769|2 +492068|32001387835|2 +502396|32001387838|2 +596915|32001387995|2 +469940|32001388000|2 +492822|32001388258|2 +773093|32001388266|2 +845588|32001388546|2 +845577|32001388547|2 +516111|32001388785|2 +761541|32001388786|2 +805168|32001388836|2 +721524|32001388850|2 +482858|32001388863|2 +1047498|32001389226|2 +738954|32001389329|2 +783087|32001389489|2 +888033|32001389782|2 +650867|32001390532|2 +785940|32001390536|2 +805103|32001390538|2 +843824|32001390543|2 +659226|32001390632|2 +970231|32001390634|2 +535928|32001390713|2 +608843|32001390762|2 +785394|32001390763|2 +883946|32001390767|2 +754102|32001390770|2 +519304|32001390772|2 +472269|32001390951|2 +645783|32001390953|2 +802084|32001390954|2 +494456|32001391057|2 +779759|32001391076|2 +610880|32001391454|2 +623923|32001391456|2 +681529|32001391459|2 +556857|32001391473|2 +556856|32001391476|2 +625384|32001391554|2 +797583|32001391555|2 +494508|32001391795|2 +678879|32001391798|2 +861345|32001391799|2 +861347|32001391802|2 +723380|32001392018|2 +871380|32001392022|2 +866306|32001392127|2 +624317|32001392311|2 +862378|32001392314|2 +901957|32001392316|2 +843868|32001392442|2 +538374|32001392476|2 +1083364|32001392601|2 +528698|32001392700|2 +474642|32001392970|2 +508149|32001393198|2 +583491|32001393199|2 +857002|32001393201|2 +787577|32001393322|2 +569148|32001394319|2 +602215|32001394320|2 +672042|32001394324|4 +682713|32001394325|2 +769545|32001394326|2 +888034|32001394329|2 +451871|32001394471|2 +541219|32001394515|2 +474011|32001394523|2 +518785|32001394533|2 +682077|32001394704|2 +702075|32001394705|2 +852562|32001394707|2 +669691|32001394984|2 +606339|32001395202|2 +764155|32001395204|2 +665853|32001395308|2 +453134|32001395325|2 +675603|32001395477|2 +1092621|32001395531|2 +583939|32001395532|2 +537780|32001395535|2 +834996|32001395540|2 +1204589|32001395547|2 +779097|32001395571|2 +657446|32001395573|2 +638854|32001395575|2 +458553|32001395811|2 +735022|32001396004|2 +496870|32001396006|2 +790891|32001396012|2 +629204|32001396079|2 +516449|32001396113|2 +807206|32001396115|2 +807207|32001396117|2 +522282|32001396343|2 +538325|32001396344|2 +846826|32001396345|2 +588802|32001396468|2 +838961|32001396470|4 +672181|32001396479|2 +747644|32001396550|2 +797140|32001396552|2 +546134|32001396873|2 +704907|32001396886|2 +775804|32001396887|2 +649435|32001397120|2 +750853|32001397384|2 +595855|32001397448|2 +628400|32001397569|2 +719270|32001397570|2 +620041|32001397639|2 +488876|32001397893|2 +551341|32001397898|2 +794604|32001397899|2 +644314|32001398317|2 +725261|32001398325|2 +777769|32001398326|4 +581832|32001398358|2 +583683|32001398424|2 +507375|32001398425|2 +852400|32001398428|2 +532915|32001398433|2 +862267|32001398434|2 +660000|32001398440|2 +872694|32001398446|2 +523858|32001398447|2 +691213|32001398746|2 +711364|32001398748|2 +799879|32001398749|2 +839112|32001398751|4 +839113|32001398753|4 +557430|32001399160|2 +887479|32001399163|2 +794909|32001399776|2 +850047|32001399918|2 +1222842|32001399925|2 +695308|32001400019|2 +855808|32001400026|2 +656957|32001400057|2 +656988|32001400061|2 +691844|32001400084|2 +887430|32001400093|2 +602404|32001400099|2 +558394|32001400106|2 +745842|32001400120|2 +540592|32001400137|2 +684220|32001400142|2 +745671|32001400160|2 +649444|32001400434|2 +711525|32001400447|2 +607091|32001400449|2 +542538|32001400450|2 +519165|32001400451|2 +519164|32001400452|2 +772879|32001400737|2 +784328|32001400739|2 +793593|32001400740|2 +704123|32001400935|2 +862474|32001400936|2 +764646|32001401009|2 +635895|32001401016|2 +582996|32001401019|2 +874681|32001401020|2 +478291|32001401084|2 +853179|32001401088|2 +772985|32001401156|2 +588574|32001401212|2 +705728|32001401256|2 +478263|32001401365|2 +677159|32001401366|2 +693808|32001401477|2 +890319|32001401478|2 +526571|32001401537|2 +580053|32001401546|2 +709328|32001401641|2 +645802|32001401675|2 +804542|32001401676|2 +670531|32001401752|2 +639810|32001402060|2 +479026|32001402307|2 +600834|32001402308|2 +490169|32001403895|2 +519844|32001403901|2 +527154|32001403902|2 +537986|32001403910|2 +537987|32001403911|2 +560953|32001403913|2 +621083|32001403917|2 +678935|32001403924|2 +695706|32001403926|2 +744811|32001403938|2 +774054|32001403942|2 +764647|32001404007|2 +804494|32001404051|2 +753968|32001404055|2 +746171|32001404070|2 +512565|32001404090|2 +491960|32001404151|2 +733821|32001404235|2 +826725|32001404236|4 +730603|32001404509|2 +769291|32001404510|2 +529725|32001404644|2 +562240|32001404658|2 +731870|32001404753|2 +619722|32001404971|2 +767307|32001405203|2 +590962|32001405497|2 +620944|32001405499|2 +865182|32001405500|2 +502452|32001405565|2 +859465|32001405885|2 +739000|32001406149|2 +496683|32001406351|2 +657222|32001406353|2 +502482|32001406482|2 +888346|32001406509|2 +888345|32001406511|2 +662262|32001406735|2 +808802|32001406847|2 +834062|32001406848|4 +577528|32001406959|2 +616272|32001407007|2 +584810|32001407130|2 +775450|32001407148|2 +827877|32001407286|4 +800053|32001407377|2 +622837|32001407445|2 +548489|32001407593|2 +896733|32001407595|2 +680336|32001407771|2 +782528|32001407772|2 +790130|32001407773|2 +726101|32001408002|2 +702419|32001408292|2 +526246|32001408630|2 +646935|32001408632|2 +518689|32001408639|2 +673792|32001408833|2 +720320|32001408834|2 +657018|32001408974|2 +652517|32001409159|2 +524770|32001409684|2 +711197|32001409686|2 +801963|32001409689|2 +840539|32001409690|4 +1101836|32001409695|2 +469180|32001409785|2 +568233|32001409786|2 +464662|32001409844|2 +523703|32001409845|2 +635256|32001409846|2 +495266|32001410173|2 +613398|32001410314|2 +634483|32001410315|2 +665570|32001410316|2 +669554|32001410317|2 +852675|32001410398|2 +461404|32001410479|2 +635012|32001410481|2 +722328|32001410483|2 +784453|32001410484|2 +534247|32001410814|2 +795684|32001410815|2 +528910|32001410944|2 +629432|32001410972|2 +673791|32001411845|2 +714728|32001411927|2 +753785|32001412091|4 +473201|32001412222|2 +670129|32001412253|2 +670130|32001412256|2 +705442|32001412258|2 +895736|32001412259|2 +485576|32001412413|2 +737356|32001412525|2 +737250|32001412527|2 +707138|32001412546|2 +765031|32001412547|2 +858814|32001412578|2 +520512|32001412670|2 +633715|32001412671|2 +690919|32001412672|2 +795436|32001412673|2 +890297|32001412773|2 +657171|32001412777|2 +657228|32001412814|2 +621128|32001412966|2 +846782|32001412972|2 +624062|32001413103|2 +741128|32001413150|2 +741286|32001413151|2 +489825|32001413160|2 +489786|32001413215|2 +631301|32001413375|2 +761005|32001413378|2 +549007|32001413468|2 +526813|32001413469|2 +482537|32001413560|2 +1158038|32001413668|2 +860718|32001413671|2 +507491|32001413802|2 +532388|32001413901|2 +566623|32001413915|2 +882974|32001413939|4 +849364|32001414308|2 +490098|32001414603|2 +600270|32001414606|2 +600611|32001414609|2 +669802|32001414613|2 +735023|32001414615|2 +887314|32001414625|2 +504557|32001414883|2 +680118|32001414889|2 +520382|32001414949|2 +854151|32001414954|2 +526069|32001415235|2 +854152|32001415328|2 +482674|32001415403|2 +540184|32001415408|2 +680710|32001415409|2 +836557|32001415412|4 +864506|32001415415|2 +613447|32001415418|2 +709662|32001415849|2 +774743|32001415850|2 +974893|32001415857|2 +840596|32001415888|2 +669809|32001415910|2 +804251|32001416234|2 +893796|32001416235|2 +586818|32001416240|2 +826852|32001416242|4 +484292|32001418275|2 +572674|32001418321|2 +615168|32001418332|2 +677008|32001418350|2 +719423|32001418909|2 +648926|32001418912|2 +490534|32001418914|2 +462556|32001420512|4 +462772|32001420513|2 +483995|32001420514|2 +496466|32001420516|2 +511700|32001420517|2 +515342|32001420519|2 +515343|32001420521|2 +520516|32001420525|2 +539855|32001420526|2 +542818|32001420528|2 +602524|32001420533|2 +609796|32001420538|2 +619515|32001420539|2 +633518|32001420541|2 +634934|32001420544|2 +673289|32001420548|2 +674247|32001420549|2 +679526|32001420550|2 +679573|32001420551|2 +681821|32001420552|2 +689409|32001420553|2 +691215|32001420555|2 +704016|32001420559|2 +719203|32001420561|2 +719275|32001420563|2 +719272|32001420564|2 +720324|32001420566|2 +730658|32001420568|2 +741182|32001420570|2 +756820|32001420571|2 +781781|32001420649|2 +782215|32001420650|2 +843363|32001420655|2 +859015|32001420657|2 +887403|32001420678|2 +1158039|32001420748|2 +794704|32001420997|2 +852688|32001420998|2 +472305|32001421111|2 +472831|32001421112|2 +493857|32001421117|2 +556453|32001421130|2 +579421|32001421137|2 +591725|32001421142|2 +594801|32001421147|2 +600861|32001421149|2 +628323|32001421160|2 +632418|32001421162|2 +677929|32001421205|2 +683359|32001421208|2 +702478|32001421215|2 +704701|32001421224|2 +713046|32001421226|2 +718549|32001421230|2 +731787|32001421235|2 +766464|32001421245|2 +793567|32001421358|2 +825743|32001421362|4 +846290|32001421363|2 +849904|32001421367|2 +874189|32001421372|2 +886158|32001421374|2 +887809|32001421376|2 +893689|32001421378|2 +896555|32001421380|2 +621129|32001421870|2 +682220|32001421871|2 +568527|32001421881|2 +719117|32001421884|2 +561128|32001422257|2 +804440|32001422758|2 +725251|32001422924|2 +888873|32001422928|2 +459201|32001422936|2 +705706|32001422958|2 +833434|32001423004|4 +573695|32001423038|2 +857219|32001423131|2 +468458|32001423172|2 +478116|32001423288|2 +688778|32001423460|2 +785034|32001423464|2 +785035|32001423467|2 +493832|32001423933|2 +854933|32001423939|2 +895570|32001423942|2 +518755|32001424274|2 +783084|32001424454|2 +777641|32001424458|2 +763522|32001424583|2 +763530|32001424589|2 +684489|32001424676|2 +508203|32001424943|2 +775391|32001424947|2 +775492|32001424963|2 +775392|32001424967|2 +451969|32001425629|2 +452808|32001425630|2 +476147|32001425631|2 +479460|32001425634|2 +500583|32001425651|2 +504826|32001425654|2 +544456|32001425662|4 +572439|32001425666|2 +834138|32001425753|4 +681733|32001425837|2 +688790|32001425856|2 +746800|32001425882|2 +777263|32001425958|2 +798774|32001425964|2 +846092|32001425996|2 +858804|32001426048|2 +685476|32001426342|4 +736759|32001427212|2 +809525|32001427230|2 +741280|32001427387|2 +677731|32001427389|2 +677692|32001427401|2 +653058|32001427767|2 +589567|32001428816|2 +579649|32001429347|2 +499737|32001429777|2 +783849|32001429811|2 +755529|32001429813|2 +489384|32001429816|2 +802385|32001429819|2 +843974|32001429820|2 +595672|32001429861|2 +457584|32001431480|2 +471433|32001431484|2 +478921|32001431485|2 +514896|32001431487|2 +529444|32001431491|2 +544617|32001431492|2 +548426|32001431493|2 +548625|32001431495|2 +562247|32001431502|2 +562524|32001431503|2 +566151|32001431505|2 +628114|32001431507|2 +652913|32001431508|2 +661213|32001431509|2 +684221|32001431511|2 +697880|32001431513|2 +697879|32001431516|2 +730826|32001431517|2 +744176|32001431519|2 +758025|32001431522|2 +759110|32001431524|2 +781348|32001431525|2 +783187|32001431527|2 +803842|32001431528|2 +772319|32001431529|2 +827671|32001431530|4 +993158|32001431543|2 +461849|32001431782|2 +491305|32001431784|2 +521136|32001431785|2 +539464|32001431788|4 +580565|32001431790|2 +847512|32001431792|2 +619116|32001431794|2 +635728|32001431795|2 +668837|32001431796|2 +682188|32001431797|2 +684769|32001431798|2 +684770|32001431799|2 +705043|32001431801|2 +716176|32001431802|2 +719565|32001431803|2 +721354|32001431804|2 +737414|32001431806|2 +796822|32001431810|2 +801116|32001431820|2 +803323|32001431821|2 +834576|32001431823|4 +842584|32001431824|2 +872433|32001431825|2 +885843|32001431826|2 +451752|32001431928|2 +516425|32001431943|2 +690692|32001431975|2 +706033|32001431976|2 +733341|32001431978|2 +734197|32001431980|2 +849341|32001431986|2 +849362|32001431987|2 +876574|32001431991|2 +542773|32001432459|2 +753944|32001432460|2 +587321|32001432463|2 +781189|32001432517|2 +530820|32001432823|2 +548381|32001432824|2 +778608|32001432826|2 +778839|32001432827|2 +786818|32001433457|2 +845029|32001434793|2 +556229|32001435271|2 +589983|32001435339|2 +589984|32001435340|2 +860713|32001435971|2 +894065|32001435972|2 +881842|32001436173|2 +530976|32001436559|2 +661757|32001436663|2 +723067|32001436820|2 +741094|32001436821|2 +727952|32001436939|2 +796125|32001437120|2 +470130|32001437895|2 +664269|32001437902|2 +691615|32001437903|2 +757323|32001437909|2 +560023|32001438117|2 +828252|32001438118|4 +673142|32001438305|2 +470546|32001438454|4 +770176|32001438538|2 +579605|32001438689|2 +544620|32001438826|2 +590881|32001438827|2 +744854|32001439250|2 +585830|32001439317|2 +756512|32001439319|2 +639814|32001439565|2 +799068|32001439664|2 +709830|32001439731|2 +857790|32001439733|2 +516826|32001439739|2 +457070|32001439811|2 +514444|32001439812|2 +514445|32001439813|2 +604351|32001439825|2 +650093|32001439826|2 +650094|32001439828|2 +690574|32001439829|2 +730869|32001439831|2 +506021|32001439850|2 +679527|32001439895|2 +715205|32001440013|2 +852239|32001440014|2 +554199|32001440093|2 +781944|32001440094|2 +521157|32001440139|2 +517234|32001440395|2 +601218|32001440396|2 +852476|32001440397|2 +543442|32001440512|2 +716488|32001440514|2 +537426|32001440711|2 +806810|32001440712|2 +454513|32001440893|2 +766980|32001440894|2 +473681|32001441009|2 +530358|32001441270|2 +666109|32001441272|2 +478117|32001441760|2 +570288|32001441762|2 +586978|32001441763|2 +704014|32001441765|2 +841072|32001441770|2 +705739|32001441895|2 +753482|32001441896|2 +522232|32001442029|2 +747333|32001442053|2 +829281|32001442054|4 +593210|32001442182|2 +632368|32001442250|2 +522228|32001442262|2 +533926|32001442316|2 +540185|32001442373|2 +829330|32001442401|4 +587762|32001442444|2 +489659|32001442469|2 +782577|32001442717|2 +586852|32001442770|2 +634808|32001442771|2 +735292|32001442772|2 +876572|32001442774|2 +516575|32001443013|2 +560931|32001443014|2 +673297|32001443016|2 +684486|32001443017|2 +840716|32001443071|2 +899305|32001443072|2 +515656|32001443192|2 +638765|32001443193|2 +866449|32001443444|2 +542347|32001443603|2 +555146|32001443695|2 +560932|32001443773|2 +745187|32001443887|2 +722058|32001443941|2 +478434|32001444031|2 +618878|32001444033|2 +855414|32001444034|2 +758046|32001444237|2 +454514|32001444382|2 +616976|32001444383|2 +704873|32001444384|2 +745150|32001444386|2 +806894|32001444387|2 +834997|32001444389|2 +753146|32001444439|2 +520595|32001444520|2 +739045|32001444521|2 +769183|32001444581|2 +623938|32001444682|2 +846783|32001444935|2 +487848|32001445065|2 +634397|32001445067|2 +596906|32001445302|2 +886734|32001445304|2 +893973|32001445308|2 +504558|32001445446|2 +654405|32001445447|2 +733498|32001445448|2 +503914|32001445681|2 +767966|32001445851|2 +889107|32001445852|2 +561749|32001446087|2 +508989|32001446133|2 +704851|32001446428|2 +542774|32001446602|2 +567800|32001446690|2 +572027|32001446692|2 +691278|32001446693|2 +715611|32001446695|2 +775509|32001446696|2 +1166114|32001446700|2 +627055|32001446995|2 +706469|32001446998|2 +479475|32001447001|2 +900939|32001447002|2 +586982|32001447035|2 +644240|32001447037|2 +777642|32001447214|2 +796009|32001447216|2 +886699|32001447289|2 +489840|32001447337|2 +477108|32001447592|2 +593415|32001447593|2 +680379|32001447594|2 +685380|32001447595|2 +535482|32001447619|2 +784832|32001447669|2 +470131|32001447748|2 +716411|32001447749|2 +711190|32001447818|2 +898365|32001448309|2 +539910|32001448478|4 +627804|32001448481|2 +750837|32001448485|2 +708378|32001448565|2 +765327|32001448629|2 +777823|32001448631|2 +476617|32001448704|2 +601996|32001448868|2 +587946|32001448992|2 +703136|32001448993|2 +461916|32001449127|2 +603237|32001449128|2 +649023|32001449130|2 +649010|32001449131|2 +864184|32001449132|2 +872559|32001449134|2 +854275|32001449354|2 +886490|32001449356|2 +513527|32001449608|2 +806067|32001449678|2 +458776|32001450034|2 +667079|32001450035|2 +569777|32001450153|2 +856207|32001450154|2 +514691|32001450329|2 +639878|32001450547|2 +728176|32001450610|2 +644294|32001450680|2 +894417|32001450682|2 +894416|32001450683|2 +618019|32001451025|2 +840795|32001451027|2 +656952|32001451046|2 +794970|32001451079|4 +797952|32001451080|2 +868087|32001451081|2 +840886|32001451188|2 +652994|32001451258|2 +459736|32001451851|2 +467900|32001451854|2 +520669|32001451858|2 +549590|32001451863|2 +586913|32001451864|2 +650198|32001451865|2 +732371|32001451866|2 +750794|32001451867|2 +780092|32001451868|2 +535360|32001452101|2 +622994|32001452102|2 +680175|32001452202|2 +732906|32001452203|2 +804499|32001452212|2 +832340|32001452213|4 +898511|32001452214|2 +499914|32001452306|2 +548845|32001452307|2 +776846|32001452308|2 +763494|32001452545|2 +888222|32001452581|2 +854230|32001452638|2 +679942|32001452698|2 +860346|32001452829|2 +889881|32001452918|2 +889882|32001452919|2 +459200|32001453098|2 +898876|32001453099|2 +494425|32001453454|2 +681449|32001453456|2 +681424|32001453457|2 +852681|32001453459|2 +499603|32001453525|2 +468566|32001453772|2 +468565|32001453773|2 +500522|32001453774|2 +1052423|32001453830|2 +868337|32001453913|2 +740056|32001453962|2 +860368|32001454028|2 +731205|32001454212|2 +454391|32001454439|4 +457875|32001454445|2 +513522|32001454463|2 +586910|32001454465|2 +593481|32001454467|2 +640106|32001454469|2 +657344|32001454470|2 +664270|32001454471|2 +665449|32001454472|2 +727826|32001454473|2 +754271|32001454475|2 +803041|32001454476|2 +836654|32001454477|4 +857220|32001454478|2 +873317|32001454480|2 +879593|32001454481|2 +614739|32001454748|2 +707349|32001454834|2 +574709|32001455084|2 +614740|32001455085|2 +785292|32001455086|2 +897619|32001455176|2 +524531|32001455341|2 +688625|32001455342|2 +902256|32001455343|2 +758859|32001455459|2 +659201|32001455536|2 +720229|32001455537|2 +742391|32001455721|2 +776791|32001455722|2 +776792|32001455724|2 +884137|32001455725|2 +784104|32001455854|2 +523649|32001455917|2 +825568|32001455919|4 +737751|32001456051|2 +603238|32001456110|2 +621084|32001456112|2 +665452|32001456113|2 +699974|32001456115|2 +720225|32001456321|2 +724306|32001456322|2 +521804|32001456472|2 +893602|32001456554|2 +781190|32001456750|2 +591051|32001457011|2 +757489|32001457012|2 +856715|32001457013|2 +724307|32001457177|2 +487300|32001457367|2 +530824|32001457369|2 +624176|32001457370|2 +470623|32001457684|2 +607156|32001457686|2 +625283|32001457856|2 +705187|32001457858|2 +487958|32001458069|2 +564032|32001458070|2 +455296|32001458107|2 +744298|32001458143|2 +497269|32001458233|2 +511999|32001458234|2 +720080|32001458236|2 +870224|32001458318|2 +876240|32001458320|2 +713047|32001458612|2 +762837|32001458613|2 +786642|32001458614|2 +499924|32001458693|2 +639879|32001458695|2 +716467|32001458697|2 +659556|32001458840|2 +483148|32001458976|2 +509845|32001458978|2 +626205|32001459068|4 +647742|32001459069|2 +527407|32001459365|2 +506685|32001459366|2 +891924|32001459369|2 +1185126|32001459374|2 +536224|32001459560|2 +795569|32001459563|2 +770041|32001459686|2 +860347|32001459752|2 +470132|32001460115|2 +841466|32001460116|2 +455298|32001460156|2 +460814|32001460352|2 +629080|32001460415|2 +553852|32001460625|2 +846355|32001460629|2 +650795|32001460698|2 +619857|32001460776|2 +839461|32001460779|4 +737625|32001460870|2 +494300|32001460921|2 +596853|32001460930|2 +606588|32001460932|2 +469181|32001460981|2 +721025|32001461044|2 +570505|32001461184|2 +570506|32001461185|2 +737632|32001461186|2 +546297|32001461299|2 +548289|32001461302|2 +779473|32001461306|2 +567030|32001461457|2 +793035|32001461502|2 +663180|32001461508|2 +674605|32001461545|2 +844905|32001461604|2 +581965|32001461809|2 +485796|32001461870|2 +760426|32001461933|2 +589992|32001462239|2 +606589|32001462241|2 +675340|32001462247|2 +770391|32001462252|2 +681753|32001462423|2 +583308|32001462611|2 +614652|32001462654|2 +675751|32001462665|2 +750923|32001462669|2 +1101082|32001462673|2 +584928|32001462728|2 +699119|32001462731|2 +635980|32001463034|2 +514871|32001463373|2 +538447|32001463376|2 +534838|32001463500|2 +792580|32001463503|2 +567922|32001463707|2 +567756|32001463710|2 +672893|32001463711|2 +687977|32001463712|2 +704743|32001463852|2 +743165|32001463853|2 +800679|32001463854|2 +520514|32001463982|2 +567196|32001463983|2 +572532|32001463984|2 +859742|32001463986|2 +759993|32001464000|2 +689238|32001464071|2 +514874|32001464210|2 +804669|32001464211|2 +600763|32001464220|2 +697643|32001464389|2 +512560|32001464417|2 +512555|32001464419|2 +727837|32001464576|2 +881724|32001464578|2 +770589|32001464641|2 +486061|32001464959|2 +519595|32001464960|2 +717951|32001464963|2 +467583|32001465157|2 +491922|32001465159|2 +839329|32001465160|4 +778116|32001465163|2 +743798|32001465390|2 +800172|32001465391|2 +847866|32001465393|2 +847869|32001465394|2 +458552|32001465505|2 +525107|32001465506|2 +586974|32001465507|2 +543713|32001465806|2 +743019|32001465815|2 +862470|32001465819|2 +801683|32001465913|2 +826090|32001465914|4 +548399|32001466164|2 +809855|32001466165|2 +837086|32001466166|4 +472529|32001466276|2 +623799|32001466348|2 +839816|32001466354|4 +548413|32001466629|2 +859999|32001466630|2 +596706|32001466909|2 +766135|32001466910|2 +898569|32001466911|2 +630680|32001467056|2 +743127|32001467058|2 +772407|32001467059|2 +573636|32001467071|2 +699605|32001467734|2 +883095|32001467736|2 +859457|32001467741|2 +929260|32001467746|2 +700235|32001467749|2 +459750|32001467791|2 +490510|32001467792|2 +510461|32001467794|2 +838028|32001467806|4 +852307|32001467808|2 +865187|32001467810|2 +873097|32001467811|2 +878724|32001467812|2 +515252|32001468060|2 +530368|32001468061|2 +534837|32001468062|2 +561583|32001468063|2 +672884|32001468064|2 +709646|32001468066|2 +709656|32001468067|2 +1166684|32001468074|2 +519538|32001468494|2 +624490|32001468683|2 +754113|32001468695|2 +769309|32001468696|2 +845598|32001468697|2 +878232|32001468698|2 +527202|32001468758|2 +652609|32001468907|2 +780686|32001468909|2 +782216|32001468910|2 +452313|32001469022|2 +457071|32001469059|2 +801030|32001469063|2 +762922|32001469407|2 +855700|32001469408|2 +487836|32001469683|2 +487616|32001469684|2 +482878|32001469719|2 +541759|32001469720|2 +738482|32001469726|2 +784767|32001469727|2 +801041|32001469730|2 +857018|32001469734|2 +532791|32001469976|2 +532792|32001469978|2 +606642|32001469980|2 +809881|32001469986|2 +567629|32001470228|2 +567630|32001470231|2 +659539|32001470232|2 +669555|32001470239|2 +669405|32001470242|2 +787918|32001470249|2 +791542|32001470251|2 +870273|32001470256|2 +531844|32001470348|2 +535483|32001470349|2 +569454|32001470352|2 +738381|32001470359|2 +484355|32001470605|2 +697748|32001470616|2 +867475|32001470752|2 +630151|32001470813|2 +630150|32001470816|2 +791371|32001470914|2 +461762|32001471577|2 +485725|32001471580|2 +496606|32001471582|2 +569451|32001471585|2 +608842|32001471592|2 +619297|32001471594|2 +804900|32001471623|2 +850578|32001471625|2 +883950|32001471649|2 +856425|32001471662|2 +568528|32001471699|2 +733414|32001471700|2 +452888|32001471797|2 +533387|32001471798|2 +519526|32001473176|2 +580690|32001473177|2 +589851|32001473178|2 +604176|32001473179|2 +704606|32001473180|2 +733069|32001473181|2 +473202|32001473277|2 +504773|32001473278|2 +542578|32001473279|2 +481512|32001473598|2 +534176|32001473599|2 +455299|32001473645|2 +548490|32001473646|2 +674175|32001473655|2 +719809|32001473658|2 +772765|32001473673|2 +793237|32001473680|2 +855671|32001473697|2 +855796|32001473699|2 +883759|32001473706|2 +892636|32001473713|2 +520658|32001474035|2 +712849|32001474106|2 +454392|32001474109|4 +632098|32001474114|2 +752597|32001474116|2 +502308|32001474305|2 +761052|32001474307|2 +860344|32001474310|2 +571279|32001474380|2 +452218|32001474831|2 +452198|32001474832|2 +486470|32001474833|2 +520024|32001474834|2 +657257|32001474842|2 +745398|32001474843|2 +487906|32001475847|2 +573240|32001475848|2 +573242|32001475852|2 +702067|32001475860|2 +855084|32001475888|2 +512180|32001476139|2 +530112|32001476146|2 +636019|32001476183|2 +835179|32001476206|4 +681223|32001476336|2 +457320|32001477705|2 +474013|32001477708|2 +494183|32001477713|2 +509759|32001477717|2 +544618|32001477737|2 +549508|32001477738|2 +567760|32001477747|2 +594066|32001477752|2 +613399|32001477778|2 +625804|32001477783|2 +663925|32001477807|2 +723588|32001477829|2 +742432|32001477848|2 +742436|32001477851|2 +585395|32001477870|2 +833435|32001477924|4 +860431|32001477927|2 +1073448|32001478025|2 +779764|32001478355|2 +735163|32001478746|2 +650129|32001478761|2 +617666|32001479875|2 +713802|32001479895|2 +807933|32001479965|2 +852701|32001480042|2 +581097|32001480258|2 +658945|32001480444|2 +457350|32001480748|2 +459771|32001480749|2 +462841|32001480750|2 +464831|32001480751|2 +472239|32001480753|2 +485726|32001480760|2 +490950|32001480763|2 +508271|32001480784|2 +518889|32001480787|2 +539776|32001480814|4 +550319|32001480818|2 +556235|32001480834|2 +560875|32001480836|2 +561175|32001480837|2 +569987|32001480838|2 +569843|32001480840|2 +572652|32001480843|2 +594068|32001480853|2 +595537|32001480855|2 +600870|32001480858|2 +602150|32001480860|2 +604821|32001480862|2 +629397|32001480872|2 +634082|32001480873|2 +642720|32001480876|2 +656209|32001480879|2 +702599|32001480895|2 +733148|32001480905|2 +741260|32001480908|2 +741406|32001480912|2 +741908|32001480914|2 +771402|32001480963|2 +786636|32001480967|2 +794576|32001480969|2 +794456|32001480971|2 +837755|32001480978|4 +841680|32001480980|2 +857781|32001480986|2 +857785|32001480989|2 +861088|32001480993|2 +864772|32001480995|2 +877867|32001481005|2 +896137|32001481016|2 +874682|32001481233|2 +634575|32001481258|2 +778506|32001481259|2 +674569|32001482390|2 +706202|32001482485|2 +548282|32001482845|2 +451974|32001482944|2 +626062|32001482951|2 +535524|32001482955|2 +567768|32001482963|2 +580382|32001482968|2 +623351|32001482974|2 +635441|32001482982|2 +643148|32001483003|2 +666467|32001483019|2 +686168|32001483056|2 +765029|32001483098|2 +776162|32001483121|2 +794705|32001483130|2 +805048|32001483137|2 +845657|32001483146|2 +851222|32001483152|2 +855203|32001483154|2 +861189|32001483156|2 +491695|32001483297|2 +502574|32001483536|2 +534320|32001483537|2 +503705|32001483540|2 +741940|32001483682|2 +870065|32001483688|2 +870058|32001483689|2 +495013|32001484026|2 +686492|32001484114|2 +775510|32001484121|2 +828916|32001484175|4 +836742|32001484182|4 +847528|32001484185|4 +893847|32001484190|2 +528304|32001484415|2 +854699|32001484418|2 +509512|32001484480|2 +645296|32001484484|2 +694979|32001484488|2 +983625|32001484525|3 +1114465|32001484557|2 +710845|32001485403|2 +481050|32001486484|2 +519748|32001486488|2 +572801|32001486498|2 +651719|32001486508|2 +509807|32001487110|2 +659999|32001487113|2 +462500|32001489778|2 +479035|32001489782|2 +493574|32001489783|2 +502440|32001489785|2 +505170|32001489786|2 +509846|32001489789|2 +515641|32001489793|2 +519003|32001489797|2 +539777|32001489824|4 +551432|32001489845|2 +571993|32001489921|2 +616607|32001489929|2 +628332|32001489933|2 +633527|32001489936|2 +644231|32001489937|2 +674267|32001489940|2 +683759|32001489943|2 +687006|32001489944|2 +690803|32001489946|2 +691473|32001489947|2 +710913|32001490014|2 +728895|32001490018|2 +730873|32001490020|2 +742392|32001490021|2 +753824|32001490025|2 +772053|32001490036|2 +794046|32001490045|2 +796694|32001490049|2 +829552|32001490058|4 +838077|32001490059|4 +846071|32001490061|2 +854338|32001490090|2 +881661|32001490102|2 +896517|32001490104|2 +1258163|32001490311|2 +611167|32001490358|2 +524959|32001490565|2 +540721|32001490577|2 +613029|32001490592|2 +879339|32001490642|2 +879429|32001490646|2 +846211|32001491088|2 +457150|32001491375|2 +574660|32001491391|2 +608853|32001491396|2 +625755|32001491398|2 +672930|32001491402|2 +675570|32001491403|2 +710659|32001491408|2 +724783|32001491413|2 +843506|32001491426|2 +859546|32001491431|2 +489387|32001491613|2 +528699|32001491614|2 +535364|32001491618|2 +569933|32001491631|2 +662863|32001491643|2 +673567|32001491644|2 +711661|32001491651|2 +751206|32001491666|4 +831371|32001491692|4 +888843|32001491712|2 +506028|32001491871|2 +541027|32001491872|2 +558921|32001491874|2 +600186|32001491876|2 +695761|32001491878|2 +877938|32001491919|2 +476689|32001492210|2 +530821|32001492211|2 +627499|32001492214|2 +785199|32001492246|2 +786426|32001492247|2 +851460|32001492253|2 +858816|32001492255|2 +892078|32001492272|2 +792415|32001492287|4 +786669|32001492964|2 +560365|32001493223|2 +530847|32001493254|2 +700327|32001493274|2 +753727|32001493281|2 +827000|32001493304|4 +889880|32001493308|2 +769652|32001493480|2 +769684|32001493481|2 +667777|32001493621|2 +746598|32001493624|2 +837994|32001493628|4 +692677|32001493793|2 +778728|32001493893|2 +737098|32001494376|2 +484647|32001494385|2 +489896|32001494388|2 +581603|32001494391|2 +522541|32001494788|2 +617844|32001494793|2 +756779|32001494794|2 +489944|32001494881|2 +509847|32001494959|2 +672885|32001494964|2 +687782|32001495064|2 +687783|32001495066|2 +667784|32001495405|2 +795677|32001495407|2 +792217|32001495719|2 +794903|32001495720|2 +593967|32001496094|2 +635594|32001496099|4 +452353|32001496119|2 +524956|32001496120|2 +713581|32001496129|2 +715950|32001496131|2 +726102|32001496132|2 +715206|32001496215|2 +684869|32001496217|2 +715357|32001496219|2 +828338|32001496228|4 +899148|32001496432|2 +741414|32001496951|2 +773806|32001496952|2 +741405|32001496958|2 +508015|32001496962|2 +538460|32001496964|2 +546343|32001496969|2 +551010|32001496970|2 +641226|32001496980|2 +729117|32001496987|2 +667372|32001497291|2 +547093|32001497759|2 +550771|32001497762|2 +585827|32001497771|2 +595627|32001497772|2 +718552|32001497780|2 +727065|32001497782|2 +807063|32001497787|2 +847559|32001497791|2 +869571|32001497793|4 +891162|32001497795|2 +860050|32001498001|2 +928916|32001498002|2 +618243|32001498340|4 +626859|32001498341|2 +500218|32001498363|2 +695218|32001498365|2 +695219|32001498371|2 +778815|32001498373|2 +855204|32001499249|2 +1121976|32001499321|2 +518071|32001499733|2 +519394|32001499734|2 +690117|32001499736|2 +767720|32001499737|2 +492025|32001499742|2 +566304|32001499743|2 +829944|32001499747|4 +569991|32001499767|2 +489352|32001499945|2 +498469|32001499947|2 +594398|32001500019|2 +601834|32001500020|2 +635155|32001500025|2 +706203|32001500033|2 +714983|32001500034|2 +474586|32001500148|2 +783829|32001500152|2 +866922|32001500153|2 +757019|32001500160|2 +529901|32001500401|2 +540476|32001500405|4 +772984|32001500406|2 +847560|32001500411|2 +503227|32001500820|2 +613059|32001500824|2 +767310|32001500836|2 +772986|32001500838|2 +781436|32001500839|2 +783406|32001500840|2 +825489|32001500847|4 +607061|32001500967|2 +563709|32001501215|2 +761634|32001501217|2 +783416|32001501219|2 +737690|32001501423|2 +741995|32001501426|2 +741996|32001501428|2 +546667|32001502031|2 +459472|32001502244|2 +687251|32001502302|2 +491698|32001502320|2 +657025|32001502321|2 +502213|32001502691|2 +487724|32001502922|2 +503944|32001502923|2 +532463|32001502927|2 +545684|32001502928|2 +711181|32001502947|2 +720081|32001502948|2 +730551|32001502959|2 +460676|32001502985|2 +682481|32001502996|2 +784298|32001502999|2 +856492|32001503021|2 +856902|32001503027|2 +527738|32001503213|2 +527739|32001503214|2 +739999|32001503215|2 +566280|32001503381|2 +705063|32001503827|2 +467781|32001505580|2 +478840|32001505582|2 +488104|32001505583|2 +491678|32001505586|2 +496681|32001505587|2 +507620|32001505600|4 +512848|32001505601|2 +528823|32001505602|2 +536337|32001505604|2 +541284|32001505605|2 +551932|32001505609|2 +570688|32001505618|2 +595480|32001505623|2 +599205|32001505624|2 +609734|32001505625|2 +619517|32001505626|2 +649055|32001505653|2 +660546|32001505655|2 +682483|32001505658|2 +692582|32001505660|2 +695469|32001505674|2 +695545|32001505675|4 +709798|32001505678|2 +711735|32001505681|2 +711838|32001505682|2 +715374|32001505686|2 +740529|32001505693|2 +758244|32001505696|2 +783475|32001505707|2 +505169|32001505883|2 +580341|32001505887|2 +798332|32001505891|2 +828031|32001505892|4 +578252|32001505914|2 +785068|32001505965|2 +715677|32001506021|2 +809652|32001506023|2 +484294|32001506121|2 +512594|32001506123|2 +889098|32001506184|2 +680128|32001506214|2 +514833|32001506408|2 +515220|32001506932|2 +544059|32001506992|2 +551577|32001506993|2 +695054|32001507063|2 +835752|32001507097|4 +874595|32001507117|2 +601672|32001507234|2 +475705|32001507948|2 +504257|32001507951|2 +508272|32001507953|2 +600573|32001507961|2 +631922|32001507965|2 +658730|32001507971|2 +774742|32001507976|2 +795617|32001507979|2 +809430|32001507984|2 +860714|32001507988|2 +874901|32001507989|2 +896895|32001507991|2 +896889|32001507992|2 +521993|32001508043|2 +645957|32001508071|2 +619142|32001508269|2 +769908|32001508277|2 +769906|32001508278|2 +691815|32001508405|2 +666643|32001510007|4 +563096|32001510028|2 +473194|32001510051|2 +492223|32001510055|2 +509025|32001510062|2 +619495|32001510103|2 +785271|32001510225|2 +785266|32001510226|2 +835833|32001510248|4 +854602|32001510257|2 +862180|32001510278|2 +882763|32001510279|2 +896151|32001510280|2 +613098|32001510344|2 +1164847|32001510361|2 +658690|32001510486|2 +859765|32001510736|2 +863030|32001510738|2 +566501|32001510758|2 +510523|32001510783|2 +526674|32001510784|2 +711526|32001510853|2 +730696|32001510855|2 +753307|32001510856|2 +612970|32001511305|2 +461121|32001511607|2 +486482|32001512040|2 +502624|32001512041|2 +503597|32001512042|2 +560002|32001512048|2 +677839|32001512085|2 +742393|32001512088|2 +753306|32001512089|2 +836376|32001512098|4 +862728|32001512101|2 +888036|32001512103|2 +510743|32001512324|2 +665644|32001512681|2 +521278|32001512854|2 +734715|32001512858|2 +542237|32001513088|2 +660794|32001513094|2 +705981|32001513101|2 +705951|32001513107|2 +880771|32001513431|2 +983583|32001513441|3 +532434|32001513598|2 +697901|32001513639|2 +745584|32001513640|2 +857902|32001513641|2 +876553|32001513643|2 +533214|32001513908|2 +589912|32001513909|2 +692202|32001513911|2 +640107|32001514028|2 +784828|32001514463|2 +515657|32001514551|2 +736638|32001514744|2 +647708|32001514981|2 +1241733|32001515008|2 +689507|32001515012|2 +873429|32001515159|2 +633530|32001515277|2 +686237|32001515414|2 +769907|32001515416|2 +872249|32001515504|2 +726272|32001515865|2 +459473|32001515939|2 +542544|32001515940|2 +785684|32001516162|2 +891504|32001516176|2 +842745|32001516233|2 +1209089|32001516378|2 +779660|32001516379|2 +505242|32001516428|2 +856488|32001516542|2 +843109|32001516624|2 +601964|32001516763|2 +854571|32001516764|2 +695580|32001516836|2 +827260|32001516936|4 +876207|32001516939|2 +851463|32001517479|2 +732428|32001517515|2 +752349|32001517518|2 +752350|32001517532|2 +767967|32001517596|2 +665448|32001517871|2 +705767|32001517873|2 +891529|32001517967|2 +623239|32001518070|2 +484342|32001518149|2 +642722|32001518156|2 +799864|32001518157|2 +697374|32001518228|2 +764213|32001518242|2 +560637|32001518431|2 +1241787|32001518447|2 +514991|32001518553|2 +849405|32001518670|2 +787143|32001518961|2 +894079|32001518966|2 +760427|32001519289|2 +793437|32001519290|2 +665290|32001519311|2 +689090|32001519313|2 +872430|32001519323|2 +549555|32001519393|2 +644731|32001519466|2 +886879|32001519470|2 +874372|32001519514|2 +634045|32001519517|2 +847847|32001519521|2 +898844|32001519522|2 +898845|32001519523|2 +457687|32001519817|2 +489486|32001520002|2 +490526|32001520003|2 +506664|32001520004|2 +736627|32001520011|2 +491680|32001520018|2 +569700|32001520019|2 +834398|32001520020|4 +835576|32001520021|2 +624644|32001520025|2 +828897|32001520030|4 +897271|32001520596|2 +678616|32001520906|2 +770250|32001520908|2 +661816|32001520940|2 +776902|32001520943|2 +599260|32001520951|2 +881755|32001520953|2 +555489|32001521452|2 +926713|32001521569|2 +510420|32001521579|2 +510421|32001521580|2 +736743|32001521607|2 +532461|32001521639|2 +554946|32001521640|2 +696229|32001521641|2 +997459|32001521644|2 +568482|32001521681|2 +743799|32001521683|2 +826140|32001521812|2 +623917|32001521966|2 +684107|32001522427|2 +690575|32001522428|2 +574855|32001522448|2 +535160|32001522963|2 +544629|32001522964|2 +559481|32001522968|2 +695511|32001522977|2 +767311|32001522988|2 +594625|32001523041|2 +596069|32001523043|2 +595856|32001523045|2 +869601|32001523181|2 +613390|32001523201|2 +781637|32001523204|2 +504858|32001523216|2 +770384|32001524042|2 +874971|32001524043|2 +705221|32001524059|2 +736248|32001524060|2 +797059|32001524144|2 +583014|32001524282|2 +488980|32001524284|2 +511971|32001524287|2 +644103|32001524536|2 +694586|32001524539|2 +659558|32001524540|2 +478682|32001524547|2 +680530|32001524622|2 +1046689|32001524629|2 +572080|32001524714|2 +570704|32001524794|2 +655513|32001524830|2 +693509|32001524879|2 +732508|32001524890|2 +794398|32001524895|2 +811156|32001524964|2 +852700|32001525088|2 +746307|32001525089|2 +883038|32001525159|2 +787273|32001525267|2 +732493|32001525398|2 +731881|32001525402|2 +519565|32001525403|2 +645716|32001525476|2 +792365|32001525573|4 +541004|32001525728|2 +728634|32001525729|2 +606555|32001525731|2 +789969|32001525888|2 +789968|32001525890|2 +680217|32001525895|2 +712546|32001525898|2 +460615|32001525901|2 +529950|32001525902|2 +554202|32001525910|2 +535725|32001525911|2 +712592|32001525933|2 +803188|32001526045|2 +858409|32001526074|2 +507838|32001526152|2 +548816|32001526153|2 +781708|32001526178|2 +751578|32001526191|2 +468680|32001526200|2 +697626|32001526229|2 +739046|32001526250|2 +871228|32001526294|2 +554310|32001526403|2 +682264|32001526470|2 +1105978|32001526499|2 +711721|32001526516|2 +851440|32001526524|2 +780181|32001526531|2 +623392|32001526743|2 +806803|32001526798|2 +521235|32001527698|2 +599951|32001527711|2 +781655|32001527751|2 +476681|32001530809|2 +794079|32001530828|2 +644778|32001530912|2 +515658|32001530916|2 +541760|32001530919|2 +660604|32001530921|2 +753483|32001531032|2 +474630|32001531173|2 +480603|32001531179|2 +481430|32001531182|2 +490802|32001531199|2 +478392|32001531203|2 +481477|32001531362|2 +515637|32001531382|2 +523616|32001531387|2 +530998|32001531394|2 +555853|32001531419|2 +555929|32001531421|2 +568529|32001531422|2 +892079|32001531434|2 +887450|32001531469|2 +867802|32001531471|2 +860337|32001531472|2 +859543|32001531474|2 +794587|32001531478|2 +847703|32001531480|2 +586914|32001531481|2 +595304|32001531486|2 +601103|32001531487|2 +603219|32001531488|2 +840796|32001531489|2 +839817|32001531490|4 +837155|32001531492|4 +791234|32001531514|2 +674359|32001531528|2 +624107|32001531532|2 +677583|32001531540|2 +803237|32001531547|2 +710997|32001531548|2 +685358|32001531553|2 +658731|32001531557|2 +696437|32001531562|2 +735295|32001531569|2 +495071|32001531663|2 +670148|32001531707|2 +717150|32001531711|2 +808723|32001531717|2 +645784|32001531729|2 +636138|32001531731|2 +659696|32001531733|2 +772396|32001531734|2 +837156|32001531735|4 +668154|32001531738|2 +468045|32001531744|2 +567402|32001531745|2 +987331|32001531746|2 +632413|32001531751|2 +786218|32001531772|2 +884453|32001531773|2 +503015|32001531838|2 +545006|32001531842|2 +595857|32001531844|2 +684179|32001531845|2 +690779|32001531853|2 +695653|32001531855|2 +700429|32001531857|2 +769676|32001531860|2 +794430|32001531866|2 +826091|32001531916|4 +553966|32001532092|2 +588710|32001532129|2 +613956|32001532130|4 +844709|32001532140|2 +736895|32001532875|2 +642190|32001532894|2 +868145|32001532899|2 +560661|32001532902|2 +472363|32001532940|2 +537233|32001532944|2 +539198|32001532945|2 +548260|32001532946|2 +599206|32001532947|2 +607805|32001532950|2 +636689|32001532957|2 +659215|32001532958|2 +685233|32001532961|2 +710520|32001532962|2 +720195|32001532964|2 +756824|32001532973|2 +784770|32001532978|2 +790093|32001532980|2 +830989|32001532982|4 +844106|32001532984|2 +859547|32001532987|2 +887746|32001532989|2 +575711|32001533212|2 +534342|32001533216|2 +534026|32001533219|2 +629207|32001533309|2 +847296|32001533311|2 +842758|32001533324|2 +629203|32001533348|2 +725131|32001534978|2 +648920|32001535016|2 +770234|32001535043|2 +794279|32001535056|2 +826321|32001535070|8 +825569|32001535075|4 +840713|32001535652|2 +456932|32001535664|2 +768999|32001535674|2 +898933|32001535678|2 +740031|32001535751|2 +843460|32001535771|2 +716435|32001535789|2 +504259|32001536688|2 +727947|32001536698|2 +779963|32001536701|2 +862779|32001536709|2 +550846|32001536724|2 +752909|32001536743|2 +804699|32001536744|2 +668688|32001536754|2 +597659|32001536778|2 +1204561|32001536782|2 +515234|32001536911|2 +665284|32001536914|2 +681746|32001536915|2 +793486|32001536917|2 +461964|32001537099|2 +465180|32001537127|2 +471771|32001537166|2 +796758|32001537214|2 +515436|32001537277|2 +593757|32001537400|2 +594137|32001537403|2 +623204|32001537461|2 +783350|32001537825|2 +783557|32001537937|2 +895522|32001537984|2 +896190|32001537986|2 +759695|32001538089|2 +776400|32001538090|2 +852719|32001538092|2 +852723|32001538093|2 +454837|32001538115|2 +877278|32001538118|2 +600249|32001538453|2 +761230|32001538460|2 +899086|32001538464|2 +460151|32001538485|2 +517832|32001538689|2 +881727|32001538697|2 +532819|32001538718|2 +851601|32001538736|2 +476737|32001538747|2 +851602|32001538808|2 +859042|32001538810|2 +537235|32001539350|2 +700561|32001539353|2 +592895|32001539453|2 +861194|32001539469|2 +668689|32001539503|2 +870929|32001539513|2 +867011|32001539535|2 +613615|32001539542|2 +470050|32001539546|2 +469182|32001539547|2 +470051|32001539548|2 +491906|32001539550|2 +678854|32001539611|2 +707565|32001539623|2 +783326|32001539628|2 +490849|32001539684|2 +596044|32001539720|2 +634700|32001539732|2 +657451|32001539752|2 +660470|32001539783|2 +486490|32001539790|2 +525813|32001539803|2 +723650|32001539820|2 +461166|32001539823|2 +661138|32001539831|2 +663517|32001539850|2 +797112|32001539861|2 +806616|32001539863|2 +555880|32001539945|2 +711198|32001539954|2 +682319|32001540129|2 +687804|32001540166|2 +649505|32001540291|2 +843579|32001540300|2 +684689|32001540427|2 +572653|32001540712|2 +777162|32001541129|2 +866634|32001541135|2 +805372|32001541242|2 +834289|32001541273|4 +840874|32001541292|2 +844360|32001541307|2 +856499|32001541313|2 +856501|32001541315|2 +477235|32001541783|2 +462844|32001541991|2 +736891|32001542101|2 +500301|32001542347|2 +500300|32001542355|2 +893935|32001542391|2 +702669|32001542496|2 +715805|32001542503|2 +543592|32001542535|2 +663518|32001542538|2 +742048|32001542564|2 +792182|32001542566|2 +887205|32001542569|2 +530430|32001542573|2 +686505|32001542588|2 +793438|32001542605|2 +745915|32001542606|2 +765448|32001542610|2 +804072|32001542612|2 +855029|32001542627|2 +727080|32001542629|2 +890215|32001542640|2 +705810|32001542657|2 +705740|32001542658|2 +576495|32001542661|2 +591162|32001542677|2 +786660|32001542681|2 +535734|32001542742|2 +544128|32001543128|2 +801980|32001543141|2 +609277|32001543314|2 +827878|32001543581|4 +702908|32001543659|2 +835761|32001543697|4 +856651|32001543723|2 +558936|32001543754|2 +594387|32001543755|2 +871861|32001543771|2 +478627|32001543786|2 +620106|32001543789|2 +802988|32001543799|2 +476667|32001543848|2 +479111|32001543853|2 +625332|32001543883|2 +569469|32001543885|2 +526070|32001543887|2 +458905|32001543889|2 +832704|32001543890|4 +832705|32001543891|4 +862175|32001544214|2 +862179|32001544219|2 +900650|32001544229|2 +900421|32001544258|2 +805057|32001544266|2 +554645|32001544267|2 +646096|32001544282|2 +646097|32001544283|2 +625754|32001544296|2 +484790|32001544499|2 +511344|32001544508|2 +512857|32001544524|2 +640120|32001544540|2 +636077|32001544550|2 +571019|32001544553|2 +636078|32001544554|2 +565167|32001544561|2 +884305|32001544571|2 +970521|32001544582|2 +504774|32001544619|2 +970522|32001544711|2 +491488|32001544903|2 +504873|32001544921|2 +647206|32001544944|2 +769944|32001544946|2 +782609|32001545015|2 +697772|32001545031|2 +696436|32001545036|2 +604414|32001545452|2 +684678|32001545468|2 +684679|32001545471|2 +598043|32001545549|2 +606756|32001545554|2 +620611|32001545583|2 +803437|32001545594|2 +641243|32001545673|2 +796197|32001545710|2 +541502|32001546155|2 +627282|32001546177|2 +627281|32001546190|2 +616610|32001546236|2 +629348|32001546259|2 +511343|32001546469|2 +759495|32001546855|2 +545099|32001546856|2 +722320|32001546857|2 +796196|32001546858|2 +696438|32001546866|2 +769113|32001546887|4 +781624|32001546903|2 +728091|32001546913|2 +753162|32001546915|2 +785289|32001546916|2 +499839|32001546971|2 +781625|32001546979|2 +780662|32001546989|2 +787186|32001547035|2 +546150|32001547039|2 +862255|32001548321|2 +526287|32001548337|2 +573333|32001548340|2 +865286|32001548421|2 +786854|32001548995|2 +515970|32001550047|2 +616963|32001550100|2 +692816|32001550104|2 +738881|32001550106|2 +856717|32001550110|2 +534840|32001550146|2 +554746|32001550149|2 +567128|32001550150|2 +592736|32001550152|2 +735300|32001550155|2 +797056|32001550163|2 +827955|32001550165|4 +666359|32001551904|2 +469678|32001552883|2 +508104|32001552902|2 +508268|32001552912|2 +512580|32001552921|2 +540722|32001552936|2 +540186|32001552939|2 +548342|32001552960|2 +570554|32001553035|2 +582253|32001553036|2 +586856|32001553044|2 +615499|32001553047|2 +619332|32001553049|2 +663312|32001553070|2 +672902|32001553099|2 +670899|32001553236|2 +684736|32001553256|2 +691721|32001553262|2 +692994|32001553264|2 +717902|32001553276|2 +765324|32001553278|2 +767350|32001553279|2 +774837|32001553289|2 +786245|32001553291|2 +786324|32001553295|4 +796701|32001553432|2 +798331|32001553437|2 +801797|32001553444|2 +803970|32001553445|2 +837770|32001553490|8 +851581|32001553508|2 +867078|32001553525|2 +472256|32001553550|2 +1046690|32001553652|2 +1234189|32001553902|2 +696767|32001554932|2 +690140|32001554939|2 +843694|32001554945|2 +591133|32001555056|2 +855089|32001555105|2 +659124|32001556922|2 +659109|32001556925|2 +897006|32001556936|2 +490963|32001556991|2 +757816|32001557047|2 +642749|32001557105|2 +802987|32001557269|2 +565365|32001557286|2 +766642|32001557292|2 +503417|32001557327|2 +569300|32001557340|2 +733950|32001557345|2 +744872|32001557346|2 +771332|32001557365|2 +503418|32001557385|2 +523766|32001557395|2 +603216|32001557437|2 +543045|32001557442|2 +592864|32001557443|2 +852768|32001557445|2 +508810|32001557448|2 +865650|32001557449|2 +825745|32001557500|4 +459827|32001557516|2 +487637|32001557521|2 +705554|32001557523|2 +715022|32001557525|2 +742054|32001557529|2 +877168|32001557563|2 +690902|32001557568|2 +839818|32001557569|4 +705525|32001557578|2 +782805|32001557595|2 +624646|32001557610|2 +703269|32001557629|2 +709055|32001557632|2 +763334|32001557633|2 +543345|32001557645|2 +580717|32001557647|2 +610099|32001557648|2 +884095|32001557655|2 +625096|32001557676|2 +867522|32001557679|2 +763335|32001557718|2 +472362|32001557743|2 +625139|32001557745|2 +736772|32001557753|2 +736771|32001557755|2 +759510|32001557756|2 +647205|32001557778|2 +858380|32001557801|2 +766215|32001557807|2 +775643|32001557808|2 +928917|32001557809|2 +895494|32001557811|2 +861284|32001557818|2 +861283|32001557819|2 +723065|32001557820|2 +487731|32001557825|2 +720056|32001557826|2 +513532|32001557829|2 +666241|32001557864|4 +685191|32001557865|2 +513533|32001557885|2 +639304|32001557964|2 +627338|32001557988|2 +883677|32001557989|2 +660547|32001558101|2 +565526|32001558103|2 +629875|32001558104|2 +596541|32001558957|2 +793563|32001559105|2 +852618|32001559107|2 +773467|32001559121|2 +544619|32001559123|2 +762099|32001559133|2 +588308|32001559398|2 +588309|32001559399|2 +588327|32001559400|2 +769821|32001559515|2 +782109|32001559528|2 +882176|32001559537|2 +755111|32001560231|2 +860430|32001560235|2 +501606|32001560676|2 +666169|32001560681|2 +721998|32001560682|2 +715023|32001560686|2 +715207|32001560687|2 +681993|32001560717|2 +770574|32001560732|2 +861082|32001560733|2 +733503|32001560741|2 +678410|32001560744|2 +621153|32001560767|2 +805177|32001560773|2 +805178|32001560774|2 +727955|32001560777|2 +558978|32001560889|2 +616611|32001563063|2 +681991|32001563090|2 +727095|32001563094|2 +860985|32001563095|2 +860984|32001563096|2 +681992|32001563103|2 +549545|32001563123|2 +688777|32001563125|2 +884456|32001563148|2 +771674|32001563218|2 +796819|32001563220|2 +650868|32001563242|2 +542597|32001563497|2 +660669|32001563499|2 +508290|32001563515|2 +726486|32001563519|2 +770044|32001563574|2 +1131729|32001563580|2 +533131|32001563584|2 +581400|32001563591|2 +642665|32001563592|2 +683432|32001563593|2 +778791|32001563594|2 +898877|32001563624|2 +538871|32001563627|2 +608830|32001563628|2 +835325|32001563637|8 +572570|32001563773|2 +620955|32001563812|2 +860995|32001563813|2 +478974|32001563819|2 +478975|32001563820|2 +515027|32001563821|2 +838031|32001563834|4 +540187|32001563836|2 +674270|32001563838|2 +860333|32001563842|2 +749218|32001563855|2 +490022|32001563862|2 +492071|32001563863|2 +727404|32001563870|2 +762175|32001563881|2 +549720|32001563918|2 +781856|32001563919|2 +681655|32001563922|2 +875812|32001563923|2 +696692|32001563925|2 +713230|32001564371|2 +535361|32001564375|2 +686426|32001564393|2 +785784|32001565419|2 +454666|32001566672|2 +723577|32001566674|2 +725843|32001566675|2 +1260430|32001566934|2 +794408|32001567090|2 +850898|32001567093|2 +611191|32001567096|2 +604123|32001567107|2 +640974|32001567108|2 +693807|32001567109|2 +893862|32001567122|2 +795154|32001567174|2 +569309|32001567197|2 +668551|32001567238|2 +727377|32001567272|2 +457672|32001567280|2 +634531|32001567282|2 +746790|32001567300|2 +493511|32001567555|2 +898231|32001567562|2 +737292|32001567950|2 +474572|32001567953|2 +737674|32001567954|2 +744871|32001567955|2 +747826|32001567956|2 +786616|32001567958|2 +846827|32001567959|2 +895262|32001567962|2 +796265|32001567978|2 +659771|32001568000|2 +898230|32001568003|2 +614697|32001568254|2 +649869|32001568255|2 +834399|32001568272|4 +863687|32001568273|2 +896890|32001568281|2 +543595|32001568300|2 +467970|32001568446|2 +504857|32001568449|2 +743800|32001568454|2 +753485|32001568464|2 +589814|32001568497|2 +521992|32001568505|2 +850894|32001568509|2 +527836|32001568557|2 +687699|32001568567|2 +657069|32001568577|2 +678282|32001568579|2 +626883|32001568591|2 +735374|32001568592|2 +634217|32001568662|2 +565180|32001568664|2 +702668|32001568668|2 +737673|32001568669|2 +452877|32001568709|2 +663908|32001568711|2 +698655|32001568713|2 +526873|32001568805|2 +601939|32001568808|2 +638164|32001568811|2 +638160|32001568820|2 +638165|32001568821|2 +756964|32001568833|2 +757186|32001568834|2 +537240|32001568875|2 +631777|32001568879|2 +690812|32001568880|2 +517756|32001568888|2 +675895|32001568895|4 +705708|32001568904|2 +828253|32001568914|4 +584927|32001568975|2 +796269|32001568978|2 +586857|32001569046|2 +510591|32001569106|2 +826392|32001569118|4 +687983|32001569293|2 +747832|32001569487|2 +888028|32001569503|2 +600927|32001569512|2 +623036|32001569516|2 +720996|32001569534|2 +587895|32001569619|2 +713514|32001569622|2 +741238|32001569623|2 +456328|32001570343|2 +513502|32001570353|2 +588323|32001570361|2 +620569|32001570397|2 +585322|32001570418|2 +662875|32001570419|2 +836558|32001570484|4 +764273|32001570492|2 +518697|32001570494|2 +504593|32001570549|2 +559251|32001571545|2 +847676|32001572643|2 +600251|32001572720|2 +505171|32001572780|2 +700110|32001572781|2 +721392|32001572820|2 +563214|32001572906|2 +785570|32001572924|2 +804249|32001572927|2 +480918|32001572928|2 +859395|32001572929|2 +485755|32001572939|2 +500206|32001572959|2 +500204|32001572961|2 +695492|32001573022|2 +840774|32001573031|2 +840775|32001573032|2 +644725|32001573045|2 +750017|32001573047|2 +1234399|32001573052|2 +542510|32001573054|2 +558906|32001573092|2 +591960|32001573093|4 +742486|32001573095|2 +522666|32001573142|2 +593151|32001573150|2 +691497|32001573153|2 +797765|32001573208|2 +745891|32001573427|2 +798939|32001573430|2 +569891|32001573733|2 +569992|32001573735|2 +862642|32001573741|2 +587575|32001573764|2 +546151|32001573835|2 +513975|32001573952|2 +631773|32001574417|2 +495796|32001574759|2 +742561|32001574762|2 +742530|32001574763|2 +743081|32001574764|2 +743121|32001574765|2 +778840|32001574767|2 +780232|32001574780|2 +619868|32001574952|2 +686149|32001574953|2 +736750|32001575045|2 +736758|32001575047|2 +707072|32001575055|2 +826883|32001575167|4 +894523|32001575396|2 +476780|32001575398|2 +686643|32001575411|2 +875930|32001575484|2 +469883|32001575611|2 +542511|32001575614|2 +542512|32001575615|2 +517158|32001575632|2 +546758|32001575633|2 +659576|32001575634|2 +659575|32001575635|2 +469884|32001575637|2 +546547|32001575696|2 +740010|32001575749|2 +646292|32001576052|2 +871859|32001576248|2 +503464|32001576372|2 +809882|32001576386|2 +871860|32001576393|2 +546748|32001576648|2 +460555|32001576701|2 +516378|32001576788|2 +516386|32001576789|2 +884779|32001576808|2 +884810|32001576924|2 +792609|32001576926|2 +811151|32001577032|2 +826141|32001577033|2 +893767|32001577081|2 +669203|32001577088|2 +646471|32001577190|2 +646524|32001577192|2 +691494|32001577457|2 +495785|32001577500|2 +550441|32001577610|2 +451370|33000689788|2 +451362|33000689791|2 +451363|33000689792|2 +454237|33000689806|2 +454949|33000689807|2 +454341|33000689809|2 +455535|33000689812|2 +455808|33000689813|2 +456013|33000689816|2 +456450|33000689819|2 +858799|33000689823|2 +456492|33000689828|2 +456548|33000689830|2 +456624|33000689831|2 +456480|33000689832|2 +456683|33000689833|2 +456755|33000689834|2 +456625|33000689837|2 +456748|33000689839|2 +456626|33000689845|2 +456684|33000689846|2 +456493|33000689850|2 +456756|33000689851|2 +456719|33000689853|2 +456615|33000689854|2 +456563|33000689856|2 +456496|33000689857|2 +456549|33000689861|2 +456494|33000689863|2 +457128|33000689868|2 +457508|33000689871|2 +457492|33000689872|2 +457578|33000689873|2 +457657|33000689876|2 +458991|33000689880|2 +458993|33000689881|2 +458997|33000689882|2 +458998|33000689883|2 +458992|33000689884|2 +459002|33000689886|2 +458999|33000689888|2 +458989|33000689889|2 +459040|33000689890|2 +459086|33000689892|2 +459054|33000689893|2 +459043|33000689894|2 +459118|33000689896|2 +459317|33000689897|2 +459843|33000689899|2 +459764|33000689900|2 +460650|33000689902|2 +461199|33000689905|2 +461431|33000689906|2 +461771|33000689909|2 +461776|33000689910|2 +461780|33000689911|2 +461781|33000689912|2 +462229|33000689919|2 +462719|33000689923|2 +462621|33000689925|2 +463238|33000689926|2 +463611|33000689928|2 +464063|33000689930|2 +464043|33000689931|2 +464064|33000689933|2 +463704|33000689934|2 +463529|33000689935|2 +463386|33000689936|2 +463441|33000689938|4 +463387|33000689939|2 +463275|33000689944|2 +463442|33000689947|4 +463272|33000689950|2 +463880|33000689951|2 +693682|33000689953|2 +463437|33000689956|2 +463438|33000689957|2 +463494|33000689958|2 +463347|33000689959|2 +464629|33000689966|2 +464633|33000689968|2 +464618|33000689969|2 +464622|33000689970|2 +464625|33000689971|2 +464620|33000689972|2 +465590|33000689975|2 +465591|33000689976|2 +465592|33000689977|2 +465739|33000689978|2 +465884|33000689979|2 +466575|33000689984|2 +466184|33000689985|2 +466056|33000689987|2 +466181|33000689989|2 +466057|33000689990|2 +466044|33000689992|2 +466702|33000689993|2 +466703|33000689994|2 +467117|33000689998|2 +467118|33000690000|2 +467677|33000690002|2 +467276|33000690005|2 +467119|33000690008|2 +467277|33000690009|2 +467120|33000690011|2 +467278|33000690012|2 +467105|33000690013|2 +467678|33000690014|2 +467106|33000690016|2 +467279|33000690017|2 +467741|33000690019|2 +467747|33000690020|2 +468059|33000690026|2 +523709|33000690027|2 +468606|33000690028|2 +468608|33000690029|2 +470346|33000690033|2 +470385|33000690040|2 +469382|33000690043|2 +470594|33000690044|2 +469206|33000690045|2 +469958|33000690047|2 +471121|33000690050|2 +471665|33000690051|4 +470964|33000690052|2 +471141|33000690055|2 +471487|33000690057|4 +471396|33000690063|2 +471048|33000690066|2 +471530|33000690067|2 +470984|33000690068|2 +568318|33000690071|2 +471556|33000690072|2 +472455|33000690077|2 +472688|33000690079|2 +472958|33000690081|2 +473357|33000690085|2 +473254|33000690086|2 +473411|33000690087|2 +473817|33000690090|2 +474085|33000690096|2 +474078|33000690097|2 +474077|33000690098|2 +474120|33000690099|2 +475702|33000690102|2 +475766|33000690104|2 +476216|33000690107|2 +476261|33000690108|2 +476229|33000690109|2 +476268|33000690112|2 +476760|33000690114|2 +476648|33000690116|2 +476892|33000690118|2 +476924|33000690119|2 +477075|33000690120|2 +477099|33000690123|2 +478491|33000690128|2 +478755|33000690129|2 +478756|33000690130|2 +478893|33000690132|2 +890855|33000690136|2 +479909|33000690140|2 +479779|33000690141|2 +479938|33000690144|2 +479773|33000690146|2 +479810|33000690148|2 +479642|33000690153|2 +479724|33000690157|2 +479643|33000690159|2 +479789|33000690160|2 +480011|33000690163|2 +479644|33000690164|2 +479774|33000690165|2 +479780|33000690167|2 +479806|33000690170|2 +480012|33000690173|2 +480041|33000690179|2 +479800|33000690181|2 +479874|33000690183|2 +479869|33000690184|2 +481204|33000690193|2 +481196|33000690194|2 +481558|33000690195|2 +481557|33000690196|2 +481778|33000690198|2 +481805|33000690199|2 +481756|33000690201|2 +481816|33000690204|2 +481934|33000690206|2 +482272|33000690209|2 +482488|33000690213|2 +482643|33000690217|2 +482799|33000690220|2 +483057|33000690223|2 +483077|33000690224|2 +483072|33000690225|2 +483073|33000690226|2 +483605|33000690232|2 +483603|33000690233|2 +483606|33000690234|2 +484607|33000690236|2 +484752|33000690238|2 +484833|33000690239|2 +484887|33000690240|4 +485055|33000690245|2 +485168|33000690246|2 +485189|33000690247|2 +485554|33000690253|2 +791289|33000690259|2 +487962|33000690268|2 +488981|33000690270|2 +488559|33000690273|2 +489233|33000690275|2 +489234|33000690276|2 +489752|33000690280|2 +489760|33000690281|2 +489746|33000690282|2 +490001|33000690288|2 +490617|33000690296|2 +490618|33000690297|2 +491262|33000690305|2 +491261|33000690306|2 +491263|33000690309|2 +491269|33000690310|2 +491285|33000690311|2 +491478|33000690312|2 +491327|33000690313|2 +609668|33000690314|2 +492340|33000690318|2 +492538|33000690319|2 +492593|33000690320|2 +492341|33000690321|2 +492846|33000690322|2 +492671|33000690324|2 +492672|33000690325|2 +492858|33000690326|2 +492769|33000690327|2 +492710|33000690331|2 +492787|33000690333|2 +492673|33000690335|2 +492691|33000690336|2 +492744|33000690337|2 +492748|33000690338|2 +492790|33000690340|2 +492954|33000690341|2 +493295|33000690348|2 +493661|33000690349|2 +494505|33000690355|2 +494495|33000690356|2 +495413|33000690364|2 +495530|33000690365|2 +495548|33000690366|2 +495925|33000690367|2 +496309|33000690368|2 +496310|33000690369|2 +497092|33000690372|2 +497134|33000690373|2 +497792|33000690376|2 +497793|33000690377|2 +498332|33000690379|2 +498419|33000690381|2 +499738|33000690386|2 +499910|33000690388|2 +499908|33000690389|2 +499907|33000690390|2 +499909|33000690391|2 +500048|33000690392|2 +500090|33000690393|2 +500468|33000690397|2 +500474|33000690401|2 +500653|33000690402|2 +500639|33000690406|2 +500597|33000690407|2 +501255|33000690408|2 +501185|33000690411|2 +501159|33000690412|2 +501523|33000690415|2 +501545|33000690416|2 +501683|33000690417|2 +501474|33000690418|2 +501620|33000690419|2 +501579|33000690420|2 +501475|33000690421|2 +501587|33000690422|2 +501647|33000690427|2 +501833|33000690428|2 +501846|33000690429|2 +502527|33000690434|2 +502609|33000690436|2 +502685|33000690437|2 +502783|33000690438|2 +502791|33000690439|2 +502978|33000690446|2 +503419|33000690453|2 +503567|33000690457|2 +503581|33000690458|2 +503720|33000690464|2 +503723|33000690467|2 +503910|33000690470|2 +503894|33000690471|2 +503876|33000690472|2 +503980|33000690474|2 +503983|33000690476|2 +504023|33000690477|2 +503930|33000690478|2 +503951|33000690479|2 +504083|33000690480|2 +504080|33000690481|2 +504185|33000690483|2 +504398|33000690484|2 +504454|33000690485|2 +504423|33000690486|2 +504352|33000690488|2 +504528|33000690489|2 +505267|33000690495|2 +506061|33000690498|2 +506259|33000690501|2 +506260|33000690502|2 +506258|33000690503|2 +506366|33000690504|2 +506301|33000690505|2 +627651|33000690506|2 +506381|33000690509|2 +506320|33000690511|2 +506429|33000690513|2 +506428|33000690514|2 +507303|33000690518|2 +507560|33000690521|4 +508090|33000690528|2 +508161|33000690529|2 +508162|33000690532|2 +508099|33000690533|2 +508125|33000690535|2 +508112|33000690536|2 +508148|33000690537|2 +508091|33000690539|2 +508113|33000690541|2 +508109|33000690542|2 +508772|33000690543|2 +508771|33000690544|2 +509017|33000690545|2 +509021|33000690549|2 +509236|33000690553|2 +509218|33000690554|2 +509521|33000690555|2 +509522|33000690557|2 +509360|33000690558|2 +509437|33000690559|2 +509523|33000690560|2 +872431|33000690561|2 +509721|33000690562|2 +510497|33000690565|2 +510596|33000690567|2 +510527|33000690568|2 +510807|33000690570|2 +510853|33000690572|2 +510808|33000690573|2 +510804|33000690574|2 +511369|33000690585|2 +511641|33000690587|2 +511922|33000690589|2 +511987|33000690591|2 +512043|33000690592|2 +512070|33000690594|2 +512060|33000690601|4 +512020|33000690602|2 +511972|33000690603|2 +512056|33000690604|4 +511988|33000690605|2 +511957|33000690606|2 +512087|33000690607|2 +511986|33000690608|2 +512021|33000690609|2 +512071|33000690610|2 +512089|33000690613|2 +511948|33000690614|2 +512022|33000690615|2 +511958|33000690616|2 +512038|33000690617|2 +511923|33000690618|2 +512440|33000690619|2 +512441|33000690620|2 +514499|33000690636|2 +514542|33000690637|2 +514671|33000690639|2 +514659|33000690640|2 +514744|33000690646|2 +514745|33000690647|2 +514737|33000690649|2 +515561|33000690657|2 +516041|33000690661|2 +516085|33000690662|2 +515887|33000690664|2 +516204|33000690675|2 +516239|33000690676|2 +516250|33000690677|2 +516293|33000690678|2 +516343|33000690679|2 +516348|33000690682|2 +516347|33000690683|2 +516345|33000690684|2 +516339|33000690686|2 +516340|33000690688|2 +516356|33000690689|2 +516351|33000690690|2 +516352|33000690692|2 +567529|33000690693|2 +516436|33000690694|2 +516441|33000690695|2 +516555|33000690697|2 +516552|33000690698|2 +516551|33000690699|2 +516553|33000690700|2 +516723|33000690702|2 +516587|33000690703|2 +516588|33000690704|2 +516680|33000690705|2 +516849|33000690706|2 +516839|33000690707|2 +517217|33000690708|2 +517283|33000690710|2 +517582|33000690712|2 +517546|33000690714|2 +517479|33000690715|2 +517583|33000690716|2 +517684|33000690717|2 +517720|33000690718|2 +887879|33000690719|2 +518435|33000690722|2 +518194|33000690723|2 +518436|33000690725|2 +518195|33000690726|2 +518196|33000690727|2 +518262|33000690728|2 +518437|33000690730|2 +518319|33000690731|2 +518259|33000690732|2 +518320|33000690733|2 +518375|33000690734|2 +516075|33000690735|2 +518989|33000690738|2 +546280|33000690740|2 +519218|33000690743|2 +519402|33000690747|2 +519491|33000690748|2 +519497|33000690749|2 +519842|33000690753|2 +519927|33000690754|2 +519926|33000690757|2 +519920|33000690758|2 +519918|33000690759|2 +520393|33000690761|2 +520384|33000690762|2 +520440|33000690763|2 +520441|33000690764|2 +520462|33000690765|2 +521115|33000690772|2 +713717|33000690773|2 +521332|33000690775|2 +755845|33000690779|2 +521562|33000690780|2 +521551|33000690781|2 +521556|33000690782|2 +521555|33000690784|2 +521837|33000690786|2 +521811|33000690790|2 +830079|33000690791|4 +521825|33000690794|2 +522003|33000690804|2 +522413|33000690809|2 +522419|33000690810|2 +522417|33000690811|2 +522421|33000690813|2 +522433|33000690814|2 +522472|33000690815|2 +522488|33000690817|2 +522448|33000690819|2 +522467|33000690820|2 +522462|33000690821|2 +523252|33000690826|2 +523250|33000690827|2 +523256|33000690828|4 +523997|33000690833|2 +523991|33000690835|2 +523979|33000690836|2 +523929|33000690837|2 +523974|33000690839|2 +523913|33000690840|2 +524028|33000690842|2 +523995|33000690843|2 +524316|33000690849|2 +524253|33000690850|2 +524317|33000690855|2 +524576|33000690859|2 +525561|33000690867|2 +525642|33000690870|2 +525680|33000690873|2 +525507|33000690876|2 +884054|33000690884|2 +525982|33000690885|2 +525971|33000690886|2 +526368|33000690887|2 +526193|33000690889|2 +526096|33000690890|2 +526296|33000690891|2 +526317|33000690892|2 +526369|33000690894|2 +526095|33000690896|2 +526318|33000690897|2 +526041|33000690898|2 +526258|33000690900|2 +526370|33000690901|2 +526097|33000690902|2 +526098|33000690903|2 +526297|33000690904|2 +526027|33000690906|2 +526319|33000690907|2 +526127|33000690908|2 +526249|33000690913|2 +526371|33000690915|2 +526217|33000690917|2 +526320|33000690918|2 +526028|33000690920|2 +526639|33000690922|2 +526640|33000690926|2 +526995|33000690929|2 +526942|33000690930|2 +526943|33000690931|2 +527034|33000690932|2 +526858|33000690933|4 +527105|33000690935|2 +527109|33000690936|2 +742051|33000690937|2 +527132|33000690939|2 +527321|33000690940|2 +527293|33000690942|2 +527330|33000690943|2 +527317|33000690945|2 +527282|33000690947|2 +528038|33000690951|2 +528040|33000690952|2 +528134|33000690953|2 +528255|33000690955|2 +528277|33000690959|2 +528498|33000690960|2 +528858|33000690964|2 +528859|33000690965|2 +529194|33000690967|2 +529185|33000690968|2 +529206|33000690969|2 +529369|33000690971|2 +529368|33000690972|2 +529763|33000690976|2 +529764|33000690978|2 +529839|33000690979|2 +530094|33000690982|2 +530642|33000690987|2 +531053|33000690990|2 +530834|33000690993|2 +530835|33000690994|2 +531351|33000690997|2 +531321|33000690998|2 +531240|33000690999|2 +531401|33000691001|2 +531554|33000691003|2 +531531|33000691014|2 +531508|33000691016|2 +531835|33000691018|2 +531836|33000691019|2 +532118|33000691021|2 +532137|33000691022|2 +532432|33000691024|2 +532782|33000691027|2 +533118|33000691028|2 +533133|33000691029|2 +533097|33000691030|2 +533153|33000691034|2 +533184|33000691038|2 +533805|33000691041|2 +533966|33000691045|2 +534389|33000691046|2 +534474|33000691047|2 +534636|33000691048|2 +535348|33000691051|2 +535484|33000691053|2 +535485|33000691054|2 +535567|33000691055|2 +535568|33000691056|2 +535796|33000691058|2 +535789|33000691060|2 +535858|33000691062|2 +535936|33000691066|2 +536014|33000691067|2 +536015|33000691068|2 +536132|33000691070|2 +536964|33000691080|2 +536965|33000691081|2 +537628|33000691086|2 +537482|33000691087|2 +537611|33000691092|2 +537553|33000691093|2 +537431|33000691095|2 +537430|33000691097|2 +537428|33000691098|2 +537500|33000691100|2 +537432|33000691101|2 +537528|33000691102|2 +537721|33000691104|2 +613849|33000691107|2 +538044|33000691112|2 +538045|33000691113|2 +538130|33000691114|2 +538947|33000691118|2 +539076|33000691119|2 +539107|33000691120|2 +539119|33000691121|2 +539108|33000691122|2 +539109|33000691123|2 +539112|33000691124|2 +540233|33000691130|2 +540198|33000691131|2 +540723|33000691132|2 +541968|33000691134|2 +540481|33000691137|2 +541341|33000691138|2 +539911|33000691139|4 +540781|33000691140|2 +539573|33000691141|2 +540234|33000691142|2 +540477|33000691145|4 +542195|33000691147|2 +542208|33000691148|2 +542175|33000691149|2 +542250|33000691151|2 +542323|33000691152|2 +542727|33000691155|2 +542676|33000691156|2 +542711|33000691157|2 +542661|33000691158|2 +543911|33000691162|2 +543872|33000691164|2 +544541|33000691167|2 +544498|33000691170|2 +544580|33000691172|2 +544517|33000691174|2 +544608|33000691176|2 +684958|33000691177|2 +544946|33000691181|2 +545072|33000691182|2 +545073|33000691184|2 +545087|33000691185|2 +545139|33000691187|2 +545135|33000691188|2 +546000|33000691193|2 +546274|33000691198|2 +546275|33000691199|2 +546512|33000691200|2 +547059|33000691204|2 +547564|33000691205|2 +547938|33000691211|2 +547636|33000691212|2 +548002|33000691213|2 +548374|33000691216|2 +548332|33000691217|2 +548711|33000691218|2 +549022|33000691219|2 +548568|33000691220|2 +548601|33000691226|2 +548843|33000691227|2 +548935|33000691229|2 +548836|33000691230|2 +549023|33000691231|2 +548659|33000691232|2 +549512|33000691237|2 +549546|33000691239|2 +549547|33000691240|2 +549525|33000691241|2 +549562|33000691242|2 +549722|33000691244|2 +549721|33000691245|2 +549948|33000691248|2 +549956|33000691249|2 +550689|33000691251|2 +550941|33000691254|2 +551413|33000691256|2 +551491|33000691257|2 +551493|33000691260|2 +551395|33000691261|2 +551414|33000691263|2 +551461|33000691264|4 +551639|33000691265|2 +551675|33000691267|2 +551678|33000691269|2 +551930|33000691271|2 +551933|33000691272|2 +551940|33000691273|2 +552817|33000691279|2 +553144|33000691280|2 +552406|33000691281|2 +552841|33000691282|2 +552914|33000691283|2 +552818|33000691284|2 +552407|33000691285|2 +552627|33000691291|2 +552176|33000691294|2 +552275|33000691295|2 +552177|33000691296|2 +553145|33000691297|2 +552077|33000691298|2 +552819|33000691299|2 +552408|33000691302|2 +552646|33000691304|4 +552820|33000691305|2 +552498|33000691309|2 +552270|33000691310|2 +603341|33000691311|2 +552178|33000691313|2 +552821|33000691314|2 +552744|33000691320|2 +552023|33000691322|2 +552842|33000691325|2 +552822|33000691328|2 +552851|33000691331|2 +552024|33000691332|2 +552843|33000691338|2 +552409|33000691340|2 +552179|33000691343|2 +552743|33000691345|2 +552396|33000691346|2 +552852|33000691347|2 +552410|33000691348|2 +552313|33000691350|2 +552628|33000691351|2 +553188|33000691352|2 +553588|33000691353|2 +553586|33000691354|2 +553587|33000691355|2 +553897|33000691364|2 +553967|33000691365|2 +554559|33000691368|2 +554540|33000691369|2 +555022|33000691373|2 +555012|33000691374|2 +555898|33000691381|2 +555867|33000691382|2 +556050|33000691383|2 +556051|33000691384|2 +556434|33000691385|2 +556437|33000691386|2 +557460|33000691390|2 +557620|33000691392|2 +557696|33000691395|4 +557647|33000691396|2 +557418|33000691397|2 +557589|33000691398|2 +557591|33000691402|2 +557592|33000691403|2 +557660|33000691404|2 +557419|33000691407|2 +557563|33000691408|2 +557480|33000691409|2 +557420|33000691414|2 +557502|33000691415|2 +557612|33000691416|2 +557421|33000691417|2 +557562|33000691419|2 +557475|33000691421|2 +557503|33000691422|2 +557613|33000691423|2 +557648|33000691424|2 +557702|33000691428|2 +557661|33000691429|2 +557461|33000691432|2 +557561|33000691433|2 +557952|33000691438|2 +557946|33000691442|2 +557947|33000691444|2 +558171|33000691447|2 +558059|33000691450|2 +558863|33000691453|2 +559005|33000691455|2 +559561|33000691460|2 +559568|33000691462|2 +559537|33000691463|2 +559562|33000691465|2 +559544|33000691467|2 +559555|33000691468|2 +561104|33000691485|2 +561966|33000691490|2 +562087|33000691491|2 +562088|33000691492|2 +562089|33000691493|2 +562553|33000691494|2 +563175|33000691495|2 +563135|33000691496|2 +563167|33000691497|2 +563215|33000691499|2 +564611|33000691501|2 +564605|33000691502|2 +564955|33000691504|2 +564956|33000691505|2 +564876|33000691507|2 +565361|33000691509|2 +565360|33000691511|2 +565579|33000691513|2 +565580|33000691515|2 +565582|33000691516|2 +565587|33000691517|4 +565659|33000691518|2 +827739|33000691519|4 +565796|33000691523|2 +565797|33000691524|2 +566797|33000691527|2 +567327|33000691532|2 +567323|33000691535|2 +567346|33000691536|2 +567356|33000691538|2 +567475|33000691539|2 +567357|33000691540|2 +567720|33000691544|2 +567880|33000691545|2 +568093|33000691548|2 +568072|33000691549|2 +568312|33000691552|2 +456485|33000691553|2 +590552|33000691554|2 +568448|33000691555|2 +568279|33000691556|2 +568571|33000691559|2 +568226|33000691560|2 +568313|33000691561|2 +568414|33000691562|2 +568530|33000691563|2 +568402|33000691566|2 +568966|33000691573|2 +568976|33000691575|2 +568957|33000691576|2 +568954|33000691577|2 +568967|33000691578|2 +568971|33000691579|2 +569043|33000691591|2 +569209|33000691592|2 +569115|33000691593|2 +569210|33000691597|2 +569116|33000691599|2 +569072|33000691600|2 +569117|33000691601|2 +569073|33000691603|2 +569118|33000691604|2 +569167|33000691605|2 +570105|33000691609|2 +570204|33000691613|2 +569993|33000691614|2 +569994|33000691618|2 +570656|33000691621|2 +570501|33000691622|2 +570597|33000691623|2 +571098|33000691624|2 +571099|33000691625|2 +571095|33000691626|2 +571199|33000691629|2 +571206|33000691630|2 +571190|33000691631|2 +571294|33000691632|2 +571823|33000691638|2 +571761|33000691640|2 +571569|33000691643|2 +571813|33000691649|2 +571764|33000691650|2 +571570|33000691654|2 +571847|33000691658|2 +571765|33000691659|2 +571660|33000691660|2 +571540|33000691664|2 +571613|33000691665|2 +571571|33000691667|2 +571766|33000691669|2 +571848|33000691670|2 +571728|33000691671|2 +571919|33000691673|2 +572355|33000691677|2 +572558|33000691678|2 +572494|33000691679|2 +484750|33000691680|2 +572616|33000691681|2 +572610|33000691682|2 +572614|33000691683|2 +572700|33000691684|2 +572862|33000691687|2 +573821|33000691688|2 +573824|33000691689|2 +573820|33000691690|2 +574813|33000691692|2 +574814|33000691693|2 +575193|33000691695|2 +575239|33000691697|2 +574985|33000691698|2 +575448|33000691699|2 +575494|33000691700|2 +576269|33000691702|2 +576357|33000691704|2 +576360|33000691705|2 +576376|33000691708|2 +576373|33000691709|2 +576652|33000691717|2 +576649|33000691718|2 +576650|33000691719|2 +577023|33000691720|2 +577032|33000691721|2 +577065|33000691723|2 +577014|33000691724|2 +577059|33000691726|2 +577646|33000691727|2 +577651|33000691729|2 +577643|33000691730|2 +577647|33000691731|2 +579076|33000691734|2 +579077|33000691735|2 +579127|33000691737|2 +633968|33000691738|2 +579180|33000691739|2 +579227|33000691740|2 +579228|33000691745|2 +579128|33000691746|2 +579219|33000691752|2 +579198|33000691756|2 +579181|33000691759|2 +579547|33000691762|2 +579589|33000691763|2 +580122|33000691764|2 +580099|33000691766|2 +580403|33000691769|2 +862551|33000691774|2 +580562|33000691776|2 +581465|33000691779|2 +581440|33000691781|2 +581640|33000691786|2 +581713|33000691788|2 +582132|33000691789|2 +582122|33000691790|2 +582151|33000691791|2 +582140|33000691792|2 +582152|33000691793|2 +582291|33000691794|2 +582160|33000691795|2 +582254|33000691796|2 +582315|33000691797|2 +582257|33000691799|2 +582163|33000691800|2 +582225|33000691801|2 +582255|33000691802|2 +582161|33000691803|2 +582164|33000691806|2 +582325|33000691807|2 +582258|33000691808|2 +582974|33000691811|2 +583227|33000691813|2 +583278|33000691815|2 +583860|33000691818|2 +584001|33000691820|2 +584073|33000691826|2 +584080|33000691828|2 +584025|33000691829|2 +584413|33000691837|2 +584906|33000691840|2 +584904|33000691841|2 +585049|33000691842|2 +585552|33000691846|2 +585553|33000691847|2 +586153|33000691849|2 +586352|33000691850|2 +587444|33000691853|2 +587467|33000691855|2 +587465|33000691858|2 +587437|33000691860|2 +569211|33000691861|2 +587438|33000691862|2 +587443|33000691863|2 +587797|33000691869|2 +587808|33000691870|2 +587943|33000691871|2 +587937|33000691872|2 +587941|33000691873|2 +589360|33000691880|2 +589353|33000691881|2 +589699|33000691882|2 +589695|33000691883|2 +589698|33000691886|2 +707136|33000691887|2 +589853|33000691888|2 +590593|33000691890|2 +590892|33000691892|2 +590923|33000691894|2 +590924|33000691895|2 +591586|33000691898|2 +591499|33000691899|2 +591393|33000691904|2 +592090|33000691910|2 +592240|33000691915|4 +592352|33000691916|2 +592165|33000691917|2 +592314|33000691919|2 +592241|33000691920|4 +592498|33000691921|2 +592664|33000691922|2 +592920|33000691923|2 +593052|33000691925|2 +593080|33000691926|2 +593086|33000691928|2 +593170|33000691930|2 +593122|33000691931|2 +593236|33000691932|2 +593299|33000691934|2 +593279|33000691935|2 +593402|33000691938|2 +593943|33000691942|2 +593935|33000691943|2 +593965|33000691944|2 +593964|33000691945|2 +594023|33000691948|2 +594021|33000691949|2 +666128|33000691955|2 +594463|33000691957|2 +594457|33000691958|2 +594654|33000691959|2 +594584|33000691961|2 +594739|33000691962|2 +651570|33000691963|2 +594972|33000691964|2 +595217|33000691966|2 +595238|33000691967|4 +595346|33000691968|2 +595205|33000691970|2 +595395|33000691971|2 +595266|33000691973|2 +595396|33000691975|2 +595237|33000691976|2 +595367|33000691977|2 +595563|33000691979|2 +595536|33000691980|2 +595723|33000691985|2 +595939|33000691988|2 +596812|33000691993|2 +597302|33000691996|2 +597737|33000691998|4 +597676|33000691999|2 +598277|33000692001|2 +598265|33000692002|2 +598247|33000692003|2 +598278|33000692004|2 +598244|33000692005|2 +598294|33000692006|2 +599171|33000692007|2 +598757|33000692009|2 +598847|33000692010|2 +598758|33000692013|2 +600532|33000692019|2 +600527|33000692020|2 +600533|33000692021|2 +600579|33000692023|2 +600577|33000692024|2 +600596|33000692026|2 +600630|33000692029|2 +796968|33000692032|2 +600912|33000692033|2 +600910|33000692035|2 +600958|33000692036|2 +601159|33000692039|2 +601160|33000692040|2 +619971|33000692041|2 +601512|33000692042|2 +602585|33000692053|2 +602613|33000692055|2 +602612|33000692056|2 +602963|33000692057|2 +602928|33000692058|2 +602964|33000692059|2 +889777|33000692060|2 +602929|33000692063|2 +602981|33000692068|2 +603392|33000692070|2 +603351|33000692072|2 +603393|33000692073|2 +603494|33000692077|2 +603791|33000692079|2 +604361|33000692081|2 +604641|33000692083|2 +753106|33000692085|2 +604666|33000692086|2 +605261|33000692093|2 +604841|33000692094|2 +604758|33000692095|2 +605022|33000692096|2 +605262|33000692098|2 +726340|33000692100|2 +604776|33000692103|2 +605298|33000692106|2 +605449|33000692107|2 +605442|33000692108|2 +605441|33000692109|2 +605445|33000692110|2 +605447|33000692112|2 +605561|33000692114|2 +605602|33000692116|2 +606001|33000692117|2 +606241|33000692119|4 +606178|33000692120|2 +606142|33000692121|2 +606002|33000692122|2 +606389|33000692125|2 +607198|33000692130|2 +607201|33000692131|2 +607202|33000692133|2 +607199|33000692134|2 +607212|33000692138|2 +607376|33000692139|2 +607377|33000692143|2 +607512|33000692146|2 +607378|33000692148|2 +607502|33000692151|2 +607503|33000692154|2 +607427|33000692155|2 +607548|33000692158|2 +607460|33000692159|2 +607504|33000692160|2 +607461|33000692161|2 +607379|33000692163|2 +607339|33000692164|2 +607303|33000692166|2 +607951|33000692169|2 +607912|33000692170|2 +608008|33000692171|2 +608006|33000692172|2 +608271|33000692175|2 +608202|33000692176|2 +608225|33000692177|2 +608304|33000692178|2 +608879|33000692184|2 +608869|33000692185|2 +608895|33000692186|2 +609211|33000692189|2 +609343|33000692193|2 +609338|33000692194|2 +609758|33000692196|2 +609122|33000692198|2 +609212|33000692202|2 +609344|33000692204|2 +609735|33000692205|2 +609752|33000692207|2 +609345|33000692208|2 +609476|33000692213|2 +609623|33000692217|4 +609736|33000692219|2 +609753|33000692221|2 +609267|33000692222|2 +609134|33000692224|2 +609822|33000692228|2 +609820|33000692230|2 +610278|33000692239|2 +501536|33000692243|2 +611036|33000692244|2 +611046|33000692246|2 +611045|33000692250|2 +611025|33000692251|2 +611052|33000692252|2 +611021|33000692253|2 +611125|33000692255|2 +611140|33000692256|2 +611825|33000692258|2 +611524|33000692261|2 +612527|33000692264|2 +612270|33000692265|2 +611838|33000692266|2 +612721|33000692267|2 +612271|33000692271|2 +611839|33000692275|2 +612272|33000692277|2 +611826|33000692278|2 +612501|33000692279|2 +611544|33000692282|2 +611981|33000692289|4 +612722|33000692296|2 +612277|33000692299|2 +612278|33000692300|2 +611658|33000692302|2 +611525|33000692303|2 +611659|33000692304|2 +612502|33000692308|2 +612435|33000692310|2 +611545|33000692313|2 +611827|33000692314|2 +611840|33000692315|2 +612156|33000692316|2 +612723|33000692323|2 +612724|33000692326|2 +612142|33000692327|2 +612503|33000692330|2 +612528|33000692331|2 +611405|33000692332|2 +612704|33000692333|2 +611406|33000692334|2 +611824|33000692336|2 +611654|33000692337|2 +611497|33000692338|2 +612157|33000692342|2 +613264|33000692346|2 +613082|33000692348|2 +613060|33000692349|2 +613343|33000692350|2 +613342|33000692351|2 +613567|33000692352|2 +613420|33000692356|2 +613557|33000692361|2 +613755|33000692363|2 +613891|33000692364|2 +613558|33000692366|2 +613491|33000692368|2 +614005|33000692369|2 +613761|33000692370|2 +613492|33000692371|2 +613433|33000692372|2 +613669|33000692373|2 +613756|33000692376|2 +613869|33000692379|2 +613493|33000692383|2 +613762|33000692384|2 +614346|33000692389|2 +614334|33000692390|2 +614340|33000692392|2 +614330|33000692393|2 +614337|33000692394|4 +614338|33000692395|4 +614639|33000692398|4 +614657|33000692400|2 +614675|33000692401|2 +614676|33000692402|2 +614641|33000692407|2 +614982|33000692413|2 +615011|33000692416|2 +615044|33000692417|2 +615699|33000692418|2 +615783|33000692422|2 +615784|33000692424|2 +615852|33000692428|2 +615997|33000692429|2 +615886|33000692430|2 +616238|33000692433|2 +616319|33000692435|2 +616368|33000692440|2 +616374|33000692441|2 +616354|33000692442|2 +616467|33000692445|2 +616542|33000692446|2 +616547|33000692447|2 +616767|33000692450|2 +616704|33000692451|2 +616734|33000692452|2 +617187|33000692455|2 +617188|33000692456|2 +617430|33000692457|2 +617431|33000692458|2 +617933|33000692460|2 +618020|33000692461|2 +617927|33000692465|2 +618466|33000692469|2 +618531|33000692471|2 +618505|33000692473|2 +618537|33000692476|2 +618536|33000692478|2 +618518|33000692479|2 +618519|33000692481|2 +618513|33000692482|2 +618514|33000692483|2 +619108|33000692488|2 +619110|33000692489|2 +619109|33000692490|2 +619415|33000692494|2 +619418|33000692495|2 +619419|33000692497|2 +619425|33000692498|2 +619379|33000692499|2 +619423|33000692500|2 +619439|33000692501|2 +619568|33000692502|2 +613665|33000692504|2 +620160|33000692505|2 +620107|33000692506|2 +620179|33000692507|2 +620326|33000692508|2 +620327|33000692509|2 +620372|33000692510|2 +620469|33000692511|2 +620474|33000692512|2 +621067|33000692515|2 +621088|33000692516|2 +621807|33000692520|2 +621633|33000692522|2 +621634|33000692523|2 +621808|33000692525|2 +621768|33000692527|2 +623279|33000692531|2 +624099|33000692537|2 +800827|33000692538|2 +624046|33000692539|2 +624741|33000692545|2 +624696|33000692547|4 +624878|33000692549|2 +624835|33000692550|2 +624852|33000692551|2 +624895|33000692554|2 +624896|33000692555|2 +625053|33000692558|2 +625307|33000692560|2 +625344|33000692561|2 +625499|33000692565|2 +625560|33000692566|2 +625589|33000692567|2 +625600|33000692568|2 +625809|33000692570|2 +625805|33000692571|2 +625806|33000692572|2 +625807|33000692573|2 +626007|33000692580|2 +627028|33000692583|2 +626840|33000692586|2 +627026|33000692589|2 +627172|33000692590|2 +627240|33000692592|2 +627241|33000692593|2 +627565|33000692595|2 +627569|33000692596|2 +627568|33000692597|2 +627567|33000692598|2 +628361|33000692604|2 +628465|33000692606|2 +628555|33000692608|2 +628556|33000692609|2 +629284|33000692610|2 +629826|33000692612|2 +630690|33000692613|2 +630691|33000692614|2 +630689|33000692615|2 +631103|33000692616|2 +631143|33000692618|2 +631145|33000692619|2 +631150|33000692620|2 +631173|33000692621|2 +631181|33000692622|2 +631531|33000692625|2 +631611|33000692626|2 +631626|33000692627|2 +631598|33000692628|2 +631584|33000692629|2 +631532|33000692630|2 +631574|33000692631|2 +631747|33000692632|2 +565097|33000692633|2 +631989|33000692634|2 +631991|33000692635|2 +632522|33000692639|2 +632603|33000692640|2 +632725|33000692641|2 +632604|33000692642|2 +633111|33000692643|2 +632953|33000692644|2 +632724|33000692645|2 +633431|33000692648|2 +633644|33000692649|2 +633776|33000692651|2 +633846|33000692652|2 +633950|33000692653|2 +633868|33000692656|2 +633970|33000692657|2 +635088|33000692662|2 +634579|33000692664|2 +634932|33000692665|2 +635361|33000692666|2 +634825|33000692669|2 +634826|33000692670|2 +634863|33000692671|2 +635199|33000692672|2 +635200|33000692673|2 +634424|33000692674|2 +635628|33000692675|2 +635201|33000692677|2 +634683|33000692680|2 +635367|33000692681|2 +635089|33000692682|2 +634442|33000692684|2 +635090|33000692686|2 +634580|33000692688|2 +635377|33000692689|2 +635744|33000692692|2 +635743|33000692693|2 +636064|33000692697|2 +636279|33000692700|2 +637250|33000692702|2 +637488|33000692706|2 +637492|33000692709|2 +637498|33000692710|2 +637489|33000692711|2 +638561|33000692714|2 +639147|33000692718|2 +639422|33000692721|2 +639341|33000692722|2 +639335|33000692724|2 +639444|33000692726|2 +639325|33000692728|2 +639484|33000692729|2 +639485|33000692731|2 +639374|33000692733|2 +639569|33000692737|2 +639551|33000692738|2 +639704|33000692739|2 +640319|33000692742|2 +640340|33000692743|2 +640556|33000692744|2 +640563|33000692745|2 +836895|33000692749|4 +642643|33000692750|2 +642633|33000692755|2 +642638|33000692756|2 +642647|33000692757|2 +641643|33000692758|2 +642640|33000692760|2 +643823|33000692767|2 +643810|33000692768|2 +643811|33000692771|2 +643833|33000692773|2 +643834|33000692776|2 +643836|33000692777|2 +644063|33000692778|2 +644697|33000692781|2 +644694|33000692782|2 +645112|33000692783|2 +645539|33000692784|2 +646117|33000692792|2 +646189|33000692793|2 +646241|33000692795|2 +646190|33000692796|2 +646212|33000692797|2 +646262|33000692798|2 +646263|33000692799|2 +646248|33000692800|2 +646251|33000692803|2 +646227|33000692805|2 +646298|33000692807|2 +646211|33000692808|2 +646273|33000692809|2 +646285|33000692811|2 +646208|33000692813|2 +646360|33000692816|2 +636842|33000692817|2 +636841|33000692818|2 +646392|33000692819|2 +677684|33000692828|2 +647120|33000692833|2 +647129|33000692834|2 +647197|33000692835|2 +647175|33000692836|2 +647198|33000692837|2 +647745|33000692838|2 +647715|33000692840|2 +647710|33000692841|2 +647632|33000692845|2 +649279|33000692863|2 +650001|33000692867|2 +506157|33000692870|2 +650465|33000692872|2 +650462|33000692875|2 +650491|33000692878|2 +650506|33000692879|2 +650492|33000692881|2 +650512|33000692882|2 +650691|33000692883|2 +650692|33000692884|2 +650750|33000692885|2 +650751|33000692886|2 +651296|33000692887|2 +651224|33000692888|2 +651225|33000692889|2 +651269|33000692890|2 +651613|33000692891|2 +651636|33000692893|2 +651595|33000692894|2 +651690|33000692900|2 +651524|33000692901|2 +651809|33000692902|2 +651808|33000692903|2 +651816|33000692905|2 +651817|33000692906|2 +651907|33000692909|2 +651989|33000692911|2 +651988|33000692912|2 +652018|33000692913|2 +652019|33000692915|2 +652005|33000692916|2 +652435|33000692922|2 +652483|33000692925|2 +652272|33000692927|2 +652613|33000692929|2 +652644|33000692933|2 +652649|33000692934|2 +652645|33000692935|2 +652650|33000692939|2 +652654|33000692940|2 +798239|33000692942|2 +652813|33000692943|2 +652848|33000692947|2 +653379|33000692949|2 +654748|33000692959|2 +654518|33000692961|2 +654571|33000692962|2 +656136|33000692969|2 +615853|33000692976|2 +659104|33000692980|2 +659349|33000692981|2 +659352|33000692982|2 +660111|33000692984|2 +660368|33000692986|2 +660321|33000692987|2 +660208|33000692990|2 +660509|33000692992|2 +660817|33000692993|2 +661336|33000692997|2 +661337|33000692998|2 +661924|33000693000|2 +662032|33000693001|2 +662619|33000693005|2 +662892|33000693006|2 +662931|33000693007|2 +662847|33000693008|2 +662849|33000693009|2 +663267|33000693010|2 +663774|33000693020|2 +664028|33000693022|2 +663865|33000693024|2 +663864|33000693025|2 +664261|33000693030|2 +665043|33000693031|2 +665067|33000693032|2 +664882|33000693033|2 +664876|33000693034|2 +664993|33000693035|4 +664886|33000693036|2 +665881|33000693040|2 +665791|33000693046|2 +666261|33000693050|2 +666539|33000693055|2 +666542|33000693056|2 +666545|33000693057|2 +666547|33000693058|2 +666546|33000693060|2 +666785|33000693062|2 +666780|33000693063|2 +666772|33000693064|2 +667699|33000693069|2 +667701|33000693070|2 +668179|33000693075|2 +668393|33000693077|2 +668396|33000693078|2 +668619|33000693081|2 +668709|33000693082|2 +668903|33000693083|2 +669065|33000693086|2 +669238|33000693089|2 +669281|33000693093|2 +669310|33000693094|2 +669311|33000693097|2 +670008|33000693098|2 +669999|33000693099|2 +670000|33000693100|2 +670024|33000693101|2 +670017|33000693103|2 +670025|33000693107|2 +670342|33000693109|2 +670343|33000693111|2 +670416|33000693113|2 +670971|33000693116|2 +671343|33000693119|2 +671527|33000693120|2 +671277|33000693122|2 +671425|33000693130|2 +671365|33000693132|2 +671528|33000693133|2 +671529|33000693134|2 +671266|33000693136|2 +671293|33000693138|2 +671804|33000693139|2 +672182|33000693144|2 +672234|33000693147|2 +672183|33000693148|2 +672206|33000693150|2 +672408|33000693152|2 +672867|33000693155|2 +672872|33000693156|2 +672891|33000693157|2 +673000|33000693160|2 +672974|33000693162|2 +672978|33000693164|2 +673234|33000693169|2 +673251|33000693170|2 +673211|33000693171|2 +673932|33000693177|2 +674281|33000693178|2 +674282|33000693179|2 +674595|33000693180|2 +674592|33000693181|2 +674680|33000693182|2 +674681|33000693183|2 +674818|33000693184|2 +674910|33000693185|2 +674851|33000693187|2 +675112|33000693191|2 +675092|33000693193|2 +675190|33000693194|2 +675865|33000693199|2 +675753|33000693200|2 +676156|33000693203|2 +676258|33000693204|2 +676252|33000693206|2 +676432|33000693208|2 +676316|33000693209|2 +676420|33000693210|2 +676413|33000693212|2 +763082|33000693216|2 +676324|33000693219|2 +676349|33000693221|2 +676325|33000693222|2 +676380|33000693224|2 +676452|33000693232|2 +676625|33000693234|2 +785554|33000693235|2 +676550|33000693236|2 +677346|33000693237|2 +677245|33000693238|2 +677241|33000693241|2 +677660|33000693243|2 +677688|33000693245|2 +677709|33000693247|2 +677669|33000693250|2 +677668|33000693251|2 +677723|33000693254|2 +677685|33000693256|2 +677719|33000693257|2 +677686|33000693259|2 +677707|33000693261|2 +677689|33000693262|2 +677710|33000693263|2 +677905|33000693266|2 +677976|33000693269|2 +677978|33000693270|2 +514738|33000693271|2 +678189|33000693272|2 +678428|33000693274|2 +678476|33000693276|2 +678438|33000693279|2 +678532|33000693280|2 +678829|33000693283|2 +679408|33000693284|2 +679321|33000693285|2 +679320|33000693286|2 +679530|33000693287|2 +679619|33000693288|2 +679743|33000693289|2 +679975|33000693291|2 +679976|33000693292|2 +680068|33000693293|2 +680072|33000693294|2 +680076|33000693295|2 +680139|33000693296|2 +680630|33000693297|2 +680953|33000693301|2 +680954|33000693302|2 +681142|33000693306|2 +681205|33000693308|2 +681347|33000693310|2 +681348|33000693311|2 +832963|33000693313|4 +681425|33000693315|2 +681716|33000693318|2 +681876|33000693320|2 +681966|33000693322|2 +681902|33000693323|2 +681626|33000693324|2 +682079|33000693325|2 +682314|33000693326|2 +682715|33000693327|2 +682716|33000693328|2 +682806|33000693330|2 +682807|33000693332|2 +682830|33000693334|2 +683056|33000693335|2 +683055|33000693336|2 +683131|33000693338|2 +683132|33000693339|2 +683170|33000693340|2 +683176|33000693341|2 +683228|33000693342|2 +683433|33000693346|2 +683851|33000693349|2 +683930|33000693352|2 +684010|33000693356|2 +684931|33000693364|2 +685252|33000693367|2 +685473|33000693368|2 +685598|33000693374|2 +685599|33000693375|2 +685892|33000693376|2 +685854|33000693377|2 +685784|33000693378|2 +685778|33000693384|2 +686106|33000693389|2 +686102|33000693391|2 +686112|33000693392|2 +686110|33000693393|2 +686876|33000693397|2 +686915|33000693401|2 +686889|33000693402|2 +687183|33000693404|2 +772379|33000693406|2 +687182|33000693407|2 +688037|33000693408|2 +688083|33000693409|2 +688101|33000693411|2 +688640|33000693413|2 +688617|33000693414|2 +501524|33000693415|2 +688634|33000693416|2 +688979|33000693417|2 +688937|33000693419|2 +689246|33000693422|2 +535923|33000693426|2 +689782|33000693428|4 +689375|33000693429|4 +689829|33000693433|2 +689963|33000693434|2 +689962|33000693435|2 +690074|33000693437|2 +639536|33000693440|2 +691060|33000693443|2 +691111|33000693445|2 +691528|33000693449|2 +691524|33000693450|2 +691545|33000693451|2 +691980|33000693453|2 +692678|33000693455|2 +692748|33000693460|2 +692773|33000693462|2 +692870|33000693463|2 +693414|33000693465|2 +693328|33000693468|2 +693386|33000693470|2 +693415|33000693471|2 +693614|33000693473|2 +693571|33000693474|2 +693503|33000693476|2 +693545|33000693478|2 +693524|33000693480|2 +693678|33000693481|2 +693615|33000693482|2 +693572|33000693484|2 +693640|33000693486|2 +693659|33000693488|2 +693567|33000693495|2 +693680|33000693500|2 +693628|33000693501|2 +693546|33000693503|2 +693629|33000693505|2 +693532|33000693506|2 +693568|33000693507|2 +693683|33000693514|2 +693616|33000693515|2 +693504|33000693517|2 +693753|33000693520|2 +693766|33000693521|2 +635630|33000693522|2 +694011|33000693523|2 +694107|33000693524|2 +694108|33000693525|2 +694106|33000693526|2 +694102|33000693527|2 +694686|33000693532|2 +695512|33000693537|2 +695850|33000693540|2 +597410|33000693542|2 +695852|33000693543|2 +695851|33000693544|2 +696635|33000693547|2 +696645|33000693548|2 +696708|33000693550|2 +696752|33000693551|2 +641646|33000693553|2 +697021|33000693554|2 +697257|33000693558|2 +697256|33000693560|2 +697283|33000693561|2 +697022|33000693563|2 +697542|33000693565|2 +697549|33000693566|2 +698142|33000693568|2 +698264|33000693569|2 +698233|33000693570|2 +698217|33000693571|2 +698494|33000693577|2 +754406|33000693578|2 +698620|33000693583|2 +698937|33000693588|2 +698744|33000693594|2 +698406|33000693598|2 +698678|33000693601|2 +698869|33000693604|4 +700461|33000693607|2 +700462|33000693609|2 +701280|33000693618|2 +701348|33000693620|2 +701281|33000693622|2 +638278|33000693623|2 +701282|33000693625|2 +701513|33000693627|2 +700924|33000693628|2 +700716|33000693630|2 +701049|33000693635|2 +700650|33000693636|2 +701447|33000693643|2 +700717|33000693644|2 +701253|33000693647|2 +700903|33000693648|2 +701050|33000693649|2 +701159|33000693652|2 +701349|33000693653|2 +701283|33000693654|2 +700651|33000693655|2 +701051|33000693657|2 +700858|33000693658|2 +701514|33000693659|2 +701042|33000693660|2 +700652|33000693663|2 +595560|33000693665|2 +701052|33000693666|2 +700859|33000693667|2 +701053|33000693668|2 +700690|33000693670|2 +700624|33000693672|2 +701054|33000693673|2 +701515|33000693675|2 +700726|33000693676|2 +700807|33000693677|2 +700860|33000693678|2 +701160|33000693679|2 +700679|33000693680|2 +701284|33000693683|2 +701071|33000693686|2 +700847|33000693688|2 +700904|33000693689|2 +700848|33000693691|2 +700653|33000693693|2 +701350|33000693694|2 +700600|33000693697|2 +480048|33000693698|2 +701589|33000693699|4 +701629|33000693700|2 +701585|33000693701|2 +702691|33000693713|2 +887675|33000693714|2 +702687|33000693715|2 +702688|33000693716|2 +702690|33000693717|2 +702975|33000693721|2 +703037|33000693722|2 +702976|33000693723|2 +703022|33000693724|2 +703038|33000693725|2 +703349|33000693728|2 +703436|33000693729|2 +703493|33000693730|2 +553890|33000693731|2 +704177|33000693732|2 +704560|33000693735|2 +704562|33000693736|2 +704834|33000693739|2 +704765|33000693740|2 +704842|33000693742|2 +704924|33000693744|2 +704883|33000693745|2 +704856|33000693746|2 +704926|33000693747|2 +705110|33000693749|2 +705732|33000693751|2 +705733|33000693753|2 +705780|33000693756|2 +706012|33000693757|2 +706178|33000693758|2 +705928|33000693759|2 +706084|33000693760|2 +706179|33000693761|2 +705877|33000693762|2 +706140|33000693764|2 +706453|33000693769|2 +706463|33000693770|2 +706969|33000693776|2 +706997|33000693777|2 +707137|33000693778|2 +707589|33000693781|4 +707540|33000693784|4 +707742|33000693785|2 +707743|33000693786|2 +707913|33000693788|2 +790841|33000693789|2 +708034|33000693791|2 +708317|33000693792|2 +708485|33000693798|2 +708486|33000693799|2 +708515|33000693800|2 +708513|33000693801|2 +708774|33000693802|2 +709495|33000693803|2 +709519|33000693804|2 +709437|33000693805|2 +710177|33000693810|2 +710947|33000693815|2 +710874|33000693816|2 +711110|33000693818|2 +711130|33000693820|2 +711251|33000693825|2 +711406|33000693826|2 +711354|33000693827|2 +878764|33000693828|2 +711872|33000693829|2 +711807|33000693830|2 +711873|33000693831|2 +712097|33000693834|2 +711782|33000693836|2 +712093|33000693837|2 +712094|33000693838|2 +712182|33000693839|2 +712443|33000693840|2 +712316|33000693843|2 +712317|33000693844|2 +712623|33000693845|2 +712570|33000693847|2 +712670|33000693849|2 +712666|33000693850|2 +712702|33000693852|2 +712703|33000693853|2 +712743|33000693856|2 +713321|33000693862|2 +713627|33000693864|2 +713678|33000693866|2 +713662|33000693869|2 +713679|33000693870|2 +713639|33000693871|2 +713628|33000693873|2 +713720|33000693874|2 +713812|33000693876|2 +714099|33000693877|2 +714252|33000693878|4 +714309|33000693879|2 +714491|33000693880|2 +714463|33000693882|2 +714624|33000693883|2 +714595|33000693886|2 +714527|33000693887|2 +714963|33000693889|2 +715656|33000693896|2 +715721|33000693897|2 +715801|33000693898|2 +715580|33000693900|2 +715695|33000693901|2 +715696|33000693902|2 +715614|33000693905|2 +715722|33000693908|2 +715723|33000693909|2 +715699|33000693910|2 +715883|33000693911|2 +715759|33000693912|2 +716364|33000693915|4 +716796|33000693916|2 +716810|33000693917|2 +651986|33000693924|2 +717922|33000693926|2 +718154|33000693929|2 +718188|33000693930|2 +718525|33000693933|2 +718773|33000693934|2 +718854|33000693938|2 +718798|33000693939|2 +719814|33000693955|2 +719729|33000693959|2 +719963|33000693966|2 +720383|33000693970|2 +721111|33000693977|2 +721194|33000693979|2 +721162|33000693980|2 +721450|33000693981|2 +721455|33000693982|2 +722481|33000693983|2 +722485|33000693984|2 +722478|33000693985|2 +722479|33000693986|2 +723041|33000693991|2 +722941|33000693995|2 +723030|33000693998|2 +506382|33000694001|2 +722622|33000694006|2 +722731|33000694007|2 +722743|33000694010|2 +722670|33000694016|2 +722934|33000694017|2 +722629|33000694018|2 +722942|33000694022|2 +722744|33000694023|2 +722732|33000694027|2 +723073|33000694028|2 +723068|33000694029|2 +723072|33000694030|2 +723069|33000694031|2 +723270|33000694032|2 +723508|33000694037|2 +723579|33000694040|2 +723662|33000694044|2 +723654|33000694045|2 +723724|33000694047|2 +723696|33000694048|2 +723961|33000694050|2 +723966|33000694052|2 +724365|33000694056|2 +724638|33000694062|2 +724639|33000694066|2 +724958|33000694069|2 +724692|33000694070|2 +724856|33000694072|2 +724962|33000694073|2 +724695|33000694077|2 +725070|33000694078|2 +725007|33000694079|2 +725168|33000694082|2 +724761|33000694088|2 +725166|33000694089|2 +725169|33000694091|2 +725008|33000694093|2 +725659|33000694099|2 +725662|33000694100|2 +726204|33000694103|2 +726205|33000694104|2 +725908|33000694106|2 +726331|33000694111|2 +769458|33000694120|2 +727787|33000694122|2 +727989|33000694123|2 +727990|33000694125|2 +727988|33000694126|2 +728562|33000694129|2 +730042|33000694132|2 +730444|33000694133|2 +731094|33000694135|4 +730928|33000694136|2 +731313|33000694137|2 +731319|33000694138|2 +731315|33000694139|2 +731486|33000694140|2 +731503|33000694141|2 +732227|33000694144|2 +732195|33000694145|2 +732403|33000694147|2 +732458|33000694148|2 +826226|33000694150|2 +732404|33000694152|2 +732376|33000694153|2 +732808|33000694156|2 +732809|33000694157|2 +732845|33000694160|2 +732846|33000694161|2 +732810|33000694163|2 +732847|33000694164|2 +733541|33000694165|2 +733584|33000694168|2 +733611|33000694169|2 +733607|33000694170|2 +733614|33000694171|2 +733929|33000694179|2 +733871|33000694182|2 +733960|33000694187|2 +734320|33000694189|2 +734243|33000694190|2 +734464|33000694191|2 +734583|33000694192|2 +734585|33000694193|2 +734628|33000694194|2 +734629|33000694196|2 +734631|33000694197|2 +734690|33000694200|2 +735309|33000694208|2 +735340|33000694209|2 +735434|33000694213|2 +735435|33000694214|2 +736344|33000694217|2 +736347|33000694218|2 +736300|33000694219|2 +736301|33000694221|2 +736358|33000694223|2 +736302|33000694224|2 +736322|33000694225|2 +736566|33000694226|2 +736792|33000694228|2 +736796|33000694229|2 +737183|33000694231|4 +737165|33000694232|2 +737287|33000694233|4 +833082|33000694235|4 +737961|33000694239|2 +737949|33000694241|2 +738282|33000694244|2 +738615|33000694246|2 +739461|33000694252|2 +739462|33000694253|2 +739808|33000694256|2 +740425|33000694259|2 +740396|33000694262|2 +740364|33000694264|2 +740550|33000694266|2 +740630|33000694268|2 +740775|33000694270|2 +740781|33000694271|4 +741670|33000694276|2 +741816|33000694277|2 +741678|33000694279|2 +742232|33000694284|2 +742916|33000694292|2 +743128|33000694295|2 +743635|33000694299|2 +743692|33000694300|2 +743599|33000694301|2 +744225|33000694302|2 +744205|33000694304|2 +744258|33000694306|2 +744259|33000694307|2 +745090|33000694311|2 +745115|33000694312|2 +745114|33000694313|2 +745652|33000694316|2 +745648|33000694317|2 +745658|33000694318|2 +745646|33000694319|2 +746015|33000694321|2 +745991|33000694322|2 +746071|33000694323|2 +746093|33000694327|2 +746156|33000694329|2 +746178|33000694331|2 +746440|33000694332|2 +746446|33000694333|2 +746611|33000694334|2 +746612|33000694336|2 +747373|33000694338|2 +747374|33000694339|2 +747454|33000694341|2 +747944|33000694346|2 +748398|33000694347|2 +748399|33000694348|2 +748487|33000694350|2 +748914|33000694351|2 +748400|33000694352|2 +748647|33000694353|2 +748507|33000694357|2 +748961|33000694358|2 +749175|33000694359|2 +748154|33000694360|2 +750029|33000694362|2 +750025|33000694366|2 +750033|33000694367|2 +750040|33000694368|2 +750952|33000694369|2 +750916|33000694374|2 +750644|33000694376|2 +751054|33000694381|2 +754366|33000694388|2 +754332|33000694391|2 +754272|33000694392|2 +754367|33000694393|2 +754370|33000694395|2 +754874|33000694397|2 +754911|33000694398|2 +754844|33000694399|2 +754938|33000694400|2 +755429|33000694402|2 +755853|33000694404|2 +755748|33000694405|2 +755920|33000694408|2 +755934|33000694410|2 +755985|33000694411|2 +756040|33000694413|2 +756030|33000694416|2 +756289|33000694420|2 +756281|33000694421|2 +756268|33000694422|2 +756338|33000694423|2 +756291|33000694424|2 +756312|33000694425|2 +756313|33000694427|2 +756626|33000694429|2 +756627|33000694430|2 +757374|33000694431|2 +757381|33000694433|2 +757387|33000694435|2 +757462|33000694436|2 +871765|33000694437|2 +758688|33000694443|2 +759109|33000694447|2 +759245|33000694454|2 +759000|33000694455|2 +759007|33000694456|2 +760687|33000694462|4 +760780|33000694463|2 +760757|33000694466|2 +760812|33000694467|2 +761206|33000694468|2 +761413|33000694469|2 +761410|33000694470|2 +761431|33000694471|4 +761429|33000694472|2 +761432|33000694473|2 +761450|33000694475|2 +761793|33000694477|2 +761844|33000694478|2 +761897|33000694481|2 +761812|33000694483|2 +762250|33000694485|2 +762100|33000694486|2 +762164|33000694487|2 +762212|33000694488|2 +762838|33000694489|2 +762839|33000694491|2 +762737|33000694492|2 +762767|33000694493|2 +762715|33000694494|2 +762604|33000694496|2 +762974|33000694500|2 +763063|33000694503|2 +763479|33000694508|2 +764070|33000694517|2 +764072|33000694518|2 +764219|33000694519|2 +764388|33000694520|2 +764392|33000694523|2 +764394|33000694524|2 +764393|33000694525|2 +764387|33000694526|2 +764853|33000694527|2 +764850|33000694528|2 +765059|33000694529|2 +765622|33000694537|2 +765624|33000694538|2 +765863|33000694539|2 +765865|33000694540|2 +765864|33000694541|2 +765870|33000694542|2 +766243|33000694544|2 +766831|33000694547|2 +766823|33000694548|2 +766814|33000694549|2 +766912|33000694552|2 +766913|33000694555|2 +766957|33000694556|2 +766969|33000694557|2 +767027|33000694558|2 +767028|33000694559|2 +767059|33000694563|2 +767054|33000694564|2 +767075|33000694567|2 +767053|33000694570|2 +767062|33000694571|2 +767055|33000694572|2 +767057|33000694573|2 +724854|33000694574|2 +767140|33000694575|2 +767861|33000694578|2 +767888|33000694580|2 +769508|33000694581|2 +769495|33000694582|2 +653652|33000694585|2 +769820|33000694586|2 +769817|33000694589|2 +769834|33000694590|2 +769910|33000694592|2 +770139|33000694595|2 +770155|33000694596|2 +770815|33000694601|2 +770872|33000694604|2 +770960|33000694607|4 +771002|33000694608|2 +771903|33000694610|2 +771817|33000694612|2 +771633|33000694614|2 +771733|33000694615|2 +771323|33000694616|2 +771413|33000694617|2 +771141|33000694618|2 +772366|33000694623|2 +772470|33000694624|2 +772840|33000694630|2 +772877|33000694631|2 +773038|33000694635|2 +773062|33000694636|2 +773082|33000694639|2 +773246|33000694640|2 +773033|33000694641|2 +773217|33000694642|2 +773299|33000694644|2 +773919|33000694649|2 +773920|33000694650|2 +773914|33000694651|2 +774042|33000694652|2 +774307|33000694653|2 +774937|33000694654|2 +775000|33000694655|2 +775331|33000694657|2 +775385|33000694659|2 +775360|33000694660|2 +776040|33000694665|2 +776281|33000694667|2 +776278|33000694668|2 +776311|33000694669|2 +776473|33000694675|2 +777456|33000694679|2 +777354|33000694680|2 +777765|33000694686|4 +778035|33000694687|2 +778316|33000694688|2 +778397|33000694689|2 +777766|33000694692|4 +778182|33000694693|2 +778393|33000694695|2 +583545|33000694696|2 +778617|33000694699|2 +779066|33000694702|2 +779156|33000694703|2 +779124|33000694704|2 +779300|33000694707|2 +779153|33000694708|2 +779787|33000694714|2 +779788|33000694715|2 +779793|33000694717|2 +779801|33000694718|2 +779878|33000694720|2 +780101|33000694723|2 +780126|33000694724|2 +780134|33000694725|2 +780030|33000694726|2 +780439|33000694728|2 +780396|33000694729|2 +780471|33000694730|2 +780529|33000694731|2 +780592|33000694732|2 +780824|33000694736|2 +780988|33000694744|2 +781069|33000694747|2 +781658|33000694754|2 +781834|33000694755|2 +782274|33000694758|2 +782183|33000694759|2 +782199|33000694763|2 +782229|33000694764|2 +782246|33000694766|2 +782247|33000694768|2 +782498|33000694769|2 +782393|33000694770|2 +782499|33000694771|2 +782581|33000694772|2 +651698|33000694773|2 +782959|33000694774|2 +783023|33000694778|2 +784167|33000694786|2 +784227|33000694787|2 +784199|33000694789|2 +518321|33000694791|2 +784422|33000694795|2 +784571|33000694796|4 +464065|33000694797|2 +784495|33000694798|2 +784423|33000694801|2 +784659|33000694803|2 +784660|33000694804|2 +784803|33000694807|2 +785201|33000694811|2 +785393|33000694813|2 +785544|33000694814|2 +785531|33000694817|2 +785505|33000694819|2 +785528|33000694821|2 +785539|33000694822|2 +785540|33000694823|2 +785514|33000694825|2 +785548|33000694826|2 +785520|33000694830|2 +785537|33000694831|2 +785532|33000694834|2 +785530|33000694835|2 +785508|33000694836|2 +706870|33000694837|2 +785792|33000694842|2 +785828|33000694843|2 +785834|33000694846|2 +785835|33000694847|2 +785836|33000694848|2 +786207|33000694852|2 +786919|33000694858|2 +786918|33000694859|2 +786970|33000694860|2 +786971|33000694861|2 +787398|33000694866|2 +787434|33000694868|2 +789883|33000694873|2 +790030|33000694875|2 +790444|33000694876|2 +790682|33000694881|2 +790717|33000694883|2 +790716|33000694885|2 +790738|33000694886|2 +790729|33000694887|2 +790740|33000694888|2 +790726|33000694892|2 +790905|33000694893|2 +791294|33000694898|2 +791290|33000694899|2 +791307|33000694900|2 +791296|33000694901|2 +791304|33000694902|2 +791407|33000694906|2 +791462|33000694907|2 +791583|33000694908|2 +791463|33000694911|2 +791710|33000694913|2 +791712|33000694915|2 +791709|33000694916|2 +791927|33000694917|2 +792212|33000694922|2 +792297|33000694923|2 +792149|33000694924|2 +791994|33000694925|2 +792229|33000694926|2 +792432|33000694927|2 +792510|33000694930|2 +792577|33000694931|2 +792555|33000694932|2 +792578|33000694933|2 +792691|33000694935|2 +792692|33000694936|2 +792688|33000694937|2 +792675|33000694938|2 +792699|33000694939|2 +792689|33000694940|2 +792620|33000694941|2 +793041|33000694945|2 +792965|33000694947|2 +793130|33000694948|2 +793131|33000694949|2 +793419|33000694951|2 +793452|33000694952|2 +793788|33000694953|2 +794321|33000694957|2 +794322|33000694958|2 +794432|33000694959|2 +794548|33000694960|2 +795199|33000694964|2 +614640|33000694965|2 +795489|33000694970|2 +795636|33000694974|2 +795637|33000694975|2 +795791|33000694976|2 +795638|33000694978|2 +795859|33000694979|2 +795861|33000694980|2 +796544|33000694981|2 +796545|33000694982|2 +796410|33000694983|2 +796411|33000694984|2 +796962|33000694987|2 +797033|33000694991|2 +797055|33000694994|2 +797402|33000695003|2 +797420|33000695004|2 +797421|33000695005|2 +798324|33000695012|2 +798703|33000695018|2 +798699|33000695019|2 +798760|33000695021|2 +799434|33000695024|2 +800043|33000695026|2 +800045|33000695027|2 +800805|33000695030|2 +800936|33000695033|2 +801194|33000695035|2 +801870|33000695041|2 +802129|33000695046|2 +802269|33000695047|2 +802532|33000695048|2 +802196|33000695049|2 +802533|33000695050|2 +802451|33000695052|2 +802353|33000695053|2 +802657|33000695058|2 +802658|33000695059|2 +802874|33000695060|2 +803064|33000695061|2 +803105|33000695066|2 +803973|33000695077|2 +804103|33000695078|2 +804201|33000695079|2 +804551|33000695080|2 +805083|33000695082|2 +805183|33000695084|2 +805354|33000695087|2 +805350|33000695088|2 +805457|33000695090|4 +805477|33000695091|2 +806647|33000695092|2 +806643|33000695093|2 +806648|33000695095|2 +806638|33000695097|2 +806879|33000695098|2 +806886|33000695099|2 +808548|33000695111|2 +809024|33000695114|2 +615045|33000695115|2 +809008|33000695117|2 +809047|33000695118|2 +809405|33000695121|2 +809406|33000695122|2 +809518|33000695125|2 +809516|33000695126|2 +826221|33000695128|2 +825677|33000695130|4 +825924|33000695132|4 +826222|33000695133|2 +826043|33000695136|4 +826220|33000695138|2 +826223|33000695140|2 +826224|33000695143|2 +826275|33000695144|4 +825697|33000695145|4 +826044|33000695147|4 +827178|33000695149|4 +827305|33000695153|4 +827303|33000695155|4 +827929|33000695161|4 +827952|33000695162|4 +827678|33000695163|4 +827781|33000695164|4 +828102|33000695165|4 +828086|33000695167|4 +828095|33000695168|4 +828211|33000695170|4 +828282|33000695174|4 +828305|33000695175|4 +828352|33000695176|4 +828351|33000695177|4 +828359|33000695178|4 +828358|33000695179|4 +828436|33000695181|4 +828795|33000695187|4 +829733|33000695190|4 +829754|33000695191|6 +829776|33000695193|4 +829734|33000695194|4 +829743|33000695195|4 +830112|33000695196|4 +831017|33000695200|4 +831095|33000695201|4 +831165|33000695204|4 +831264|33000695206|4 +831273|33000695207|4 +831267|33000695209|4 +831270|33000695210|4 +831268|33000695211|4 +831278|33000695212|4 +831265|33000695213|4 +831275|33000695216|4 +831274|33000695217|4 +831634|33000695218|4 +831631|33000695219|4 +831948|33000695221|6 +832448|33000695222|4 +832450|33000695223|4 +832467|33000695225|4 +832595|33000695226|4 +832592|33000695227|4 +833245|33000695229|4 +833573|33000695231|4 +835046|33000695233|6 +833244|33000695234|4 +834721|33000695237|4 +835840|33000695239|4 +836349|33000695241|4 +836351|33000695242|4 +837406|33000695245|4 +836559|33000695248|4 +837154|33000695249|4 +836896|33000695250|4 +837191|33000695253|4 +836971|33000695255|4 +837192|33000695256|4 +837804|33000695260|4 +838015|33000695264|4 +838253|33000695265|4 +839046|33000695269|4 +839121|33000695271|4 +839556|33000695277|4 +839557|33000695278|4 +840221|33000695283|4 +612004|33000695284|2 +840215|33000695285|4 +840582|33000695290|2 +840715|33000695292|2 +840799|33000695294|2 +841522|33000695299|2 +712801|33000695301|2 +841531|33000695303|2 +841501|33000695304|2 +841550|33000695305|2 +842026|33000695311|2 +841953|33000695312|2 +841960|33000695314|2 +842692|33000695316|2 +842694|33000695318|2 +842697|33000695319|2 +842892|33000695322|2 +842895|33000695323|2 +843253|33000695327|2 +843274|33000695328|2 +843644|33000695330|2 +843645|33000695331|2 +843829|33000695332|2 +843825|33000695333|2 +844065|33000695334|2 +844103|33000695335|2 +844624|33000695338|2 +844643|33000695339|2 +844794|33000695340|2 +844819|33000695341|2 +844875|33000695343|2 +829249|33000695351|4 +845822|33000695355|2 +846350|33000695357|2 +846365|33000695358|2 +846576|33000695359|2 +846366|33000695360|2 +847633|33000695361|2 +846869|33000695370|2 +847244|33000695373|2 +847438|33000695374|4 +847060|33000695375|2 +847339|33000695378|2 +847669|33000695380|2 +848002|33000695381|2 +848004|33000695382|2 +848040|33000695383|2 +848041|33000695384|2 +848893|33000695389|2 +848811|33000695393|2 +849083|33000695394|2 +849986|33000695397|2 +850131|33000695399|2 +850100|33000695402|2 +850575|33000695406|2 +850593|33000695407|2 +851626|33000695409|2 +851717|33000695410|2 +851721|33000695412|2 +851838|33000695414|2 +851848|33000695416|2 +851895|33000695420|2 +851865|33000695422|2 +852210|33000695424|2 +852211|33000695425|2 +852693|33000695429|2 +853395|33000695432|2 +853240|33000695433|2 +853624|33000695434|2 +852896|33000695435|2 +853499|33000695437|2 +853016|33000695440|2 +853396|33000695441|2 +853078|33000695444|2 +853590|33000695445|2 +854049|33000695446|2 +854039|33000695450|2 +854404|33000695452|2 +854709|33000695456|2 +855378|33000695460|2 +855427|33000695461|2 +855601|33000695463|2 +855823|33000695467|2 +855914|33000695468|2 +855917|33000695469|2 +855995|33000695471|2 +855998|33000695472|2 +856146|33000695473|2 +856270|33000695474|2 +858058|33000695483|2 +858164|33000695484|2 +858510|33000695490|2 +858689|33000695491|2 +894262|33000695495|2 +853771|33000695497|4 +858801|33000695499|2 +859206|33000695502|2 +859288|33000695503|2 +859495|33000695504|2 +859848|33000695505|2 +859851|33000695506|2 +859853|33000695507|2 +859855|33000695508|2 +859930|33000695509|2 +571614|33000695519|2 +860993|33000695521|2 +861146|33000695523|2 +861147|33000695524|2 +861162|33000695526|2 +861237|33000695527|2 +861245|33000695528|2 +861244|33000695529|2 +861827|33000695531|2 +861820|33000695532|2 +861828|33000695533|2 +862209|33000695537|2 +862409|33000695539|2 +863383|33000695542|2 +863513|33000695544|2 +863518|33000695545|2 +863485|33000695546|2 +863928|33000695551|2 +863929|33000695554|2 +864382|33000695561|2 +864499|33000695563|2 +864603|33000695566|2 +864604|33000695568|2 +864591|33000695571|2 +865063|33000695572|2 +865064|33000695576|2 +865142|33000695577|2 +865792|33000695581|2 +865884|33000695582|2 +866052|33000695585|2 +866069|33000695588|2 +866081|33000695589|2 +866111|33000695590|2 +866247|33000695591|2 +866575|33000695593|2 +866566|33000695595|2 +866567|33000695596|2 +980735|33000695603|2 +867160|33000695605|2 +867176|33000695606|2 +867381|33000695609|2 +867368|33000695610|2 +868098|33000695613|2 +868427|33000695614|2 +868208|33000695615|2 +868391|33000695616|2 +868212|33000695617|2 +868261|33000695620|2 +868327|33000695621|2 +868338|33000695623|2 +868630|33000695625|2 +868342|33000695627|2 +869076|33000695630|2 +869071|33000695631|2 +869145|33000695633|2 +869144|33000695634|2 +869112|33000695635|2 +869132|33000695637|2 +869111|33000695638|2 +869390|33000695641|2 +880964|33000695642|2 +870089|33000695643|2 +870232|33000695644|2 +870230|33000695645|2 +870229|33000695646|2 +870430|33000695648|2 +870365|33000695650|2 +870402|33000695652|2 +870362|33000695653|2 +870523|33000695655|2 +870489|33000695657|2 +870799|33000695658|2 +871427|33000695662|2 +871543|33000695665|2 +871845|33000695666|2 +872419|33000695670|2 +872425|33000695671|2 +873303|33000695673|2 +873333|33000695675|2 +873325|33000695676|2 +873315|33000695677|2 +873262|33000695681|2 +873250|33000695682|2 +873334|33000695684|2 +873674|33000695695|2 +873684|33000695696|2 +873828|33000695698|2 +874212|33000695699|2 +874215|33000695700|2 +875016|33000695701|2 +875017|33000695702|2 +875268|33000695707|2 +875269|33000695708|2 +875289|33000695709|2 +875293|33000695710|2 +875400|33000695711|2 +875401|33000695715|2 +875628|33000695717|2 +876474|33000695725|2 +876475|33000695726|2 +876590|33000695731|2 +876584|33000695732|2 +876730|33000695733|2 +876731|33000695736|2 +876736|33000695737|2 +876732|33000695738|2 +876961|33000695739|2 +877187|33000695740|2 +877181|33000695741|2 +877439|33000695743|2 +877720|33000695747|2 +877910|33000695749|2 +877890|33000695751|2 +877954|33000695752|2 +877957|33000695753|2 +878364|33000695755|2 +878185|33000695758|2 +878527|33000695761|2 +878304|33000695768|2 +878436|33000695769|2 +878528|33000695770|2 +878268|33000695772|2 +878305|33000695773|2 +878521|33000695776|4 +878186|33000695777|2 +878306|33000695781|2 +878763|33000695783|2 +879159|33000695785|2 +879569|33000695786|2 +879618|33000695788|2 +879665|33000695790|2 +879686|33000695792|2 +879763|33000695795|2 +879765|33000695796|2 +879757|33000695798|2 +880601|33000695799|2 +880573|33000695800|2 +880693|33000695801|2 +880628|33000695802|2 +880570|33000695803|2 +880905|33000695807|2 +880991|33000695808|2 +880876|33000695810|2 +880932|33000695811|2 +880906|33000695812|2 +880872|33000695813|2 +880965|33000695814|2 +880966|33000695816|2 +881355|33000695821|2 +881447|33000695826|2 +881436|33000695827|2 +881448|33000695828|2 +881438|33000695831|2 +881443|33000695832|2 +881437|33000695833|2 +881446|33000695834|2 +881439|33000695835|2 +881988|33000695838|2 +881976|33000695839|2 +881985|33000695840|2 +881996|33000695842|2 +881975|33000695843|2 +882492|33000695849|2 +882546|33000695850|2 +882527|33000695852|2 +882528|33000695853|2 +882461|33000695855|2 +883513|33000695862|2 +851699|33000695866|2 +884045|33000695871|2 +884046|33000695872|2 +884262|33000695879|2 +884683|33000695885|2 +884682|33000695886|2 +884798|33000695890|2 +884828|33000695892|2 +884873|33000695894|2 +884856|33000695895|2 +885208|33000695897|2 +886157|33000695898|2 +887248|33000695901|2 +887058|33000695903|2 +887059|33000695904|2 +887088|33000695905|2 +887451|33000695910|2 +887481|33000695911|2 +887613|33000695914|2 +887630|33000695915|2 +887631|33000695916|2 +887676|33000695917|2 +887667|33000695919|2 +887677|33000695921|2 +887634|33000695925|2 +887673|33000695927|2 +887668|33000695930|2 +887654|33000695938|2 +887669|33000695939|2 +887678|33000695940|2 +887660|33000695941|2 +888134|33000695942|2 +888676|33000695952|2 +889142|33000695953|2 +889160|33000695955|2 +889727|33000695958|2 +889653|33000695961|2 +889588|33000695963|2 +889489|33000695969|2 +889481|33000695973|2 +889471|33000695976|2 +479790|33000695978|2 +889558|33000695979|2 +889813|33000695981|2 +889844|33000695982|2 +889826|33000695985|2 +889814|33000695986|2 +889647|33000695987|2 +889850|33000695989|2 +889845|33000695991|2 +889648|33000695993|2 +889553|33000695997|2 +890594|33000696000|2 +890517|33000696001|2 +890856|33000696005|2 +890664|33000696006|2 +890944|33000696007|2 +890846|33000696009|2 +890948|33000696010|2 +891120|33000696012|2 +890584|33000696013|2 +890665|33000696014|2 +890945|33000696015|2 +891902|33000696017|2 +891903|33000696018|2 +892018|33000696019|2 +892796|33000696024|2 +893101|33000696029|2 +892670|33000696030|2 +892803|33000696031|2 +892944|33000696037|2 +892945|33000696038|2 +892946|33000696039|2 +893055|33000696041|2 +892856|33000696042|2 +892706|33000696044|2 +892797|33000696045|2 +892947|33000696047|2 +893102|33000696048|2 +892729|33000696050|2 +893506|33000696051|2 +893551|33000696053|2 +893540|33000696054|2 +893566|33000696055|2 +893830|33000696056|2 +893913|33000696057|2 +893895|33000696058|2 +894245|33000696060|2 +894266|33000696061|2 +894246|33000696063|2 +894501|33000696070|2 +894505|33000696071|2 +894499|33000696072|2 +894807|33000696073|2 +895163|33000696083|2 +895305|33000696085|2 +895255|33000696086|2 +895256|33000696087|2 +896068|33000696089|2 +896071|33000696090|2 +896365|33000696091|2 +896358|33000696092|2 +896529|33000696094|2 +897043|33000696095|2 +896999|33000696096|2 +897182|33000696098|2 +898581|33000696103|2 +898882|33000696104|2 +899055|33000696106|2 +899107|33000696108|2 +899242|33000696109|2 +899238|33000696111|2 +899216|33000696112|2 +899331|33000696113|2 +899329|33000696114|2 +899520|33000696115|2 +899489|33000696119|2 +899521|33000696126|2 +899505|33000696130|2 +900340|33000696131|2 +900403|33000696133|2 +900600|33000696135|2 +902232|33000696141|2 +902235|33000696143|2 +902233|33000696144|2 +663804|33000696146|2 +983596|33000696204|3 +910356|33000696214|2 +720342|33000696279|2 +651287|33000696402|2 +927235|33000696421|2 +929099|33000696428|2 +929108|33000696434|2 +928924|33000696436|2 +929274|33000696437|2 +791624|33000696570|2 +941435|33000696582|2 +878856|33000696589|2 +860120|33000696604|2 +943581|33000696610|2 +619384|33000696639|2 +785549|33000696650|2 +536369|33000696668|2 +990786|33000696673|2 +949385|33000696696|2 +950534|33000696704|2 +953591|33000696724|2 +953592|33000696731|2 +954322|33000696749|2 +954323|33000696751|2 +954682|33000696753|2 +953593|33000696759|2 +954459|33000696767|2 +954683|33000696770|2 +953594|33000696772|2 +494620|33000696801|2 +953595|33000696852|2 +954460|33000696873|2 +954324|33000696876|2 +954684|33000696885|2 +954461|33000696889|2 +954462|33000696892|2 +957896|33000696931|2 +957912|33000696935|2 +957897|33000696939|2 +957898|33000696954|2 +957899|33000696977|2 +690080|33000696979|2 +957900|33000696982|2 +957901|33000696991|2 +957902|33000697019|2 +957903|33000697021|2 +961585|33000697056|2 +750044|33000697167|2 +969243|33000697205|2 +541511|33000697225|2 +974902|33000697301|2 +977533|33000697318|2 +456571|33000697377|2 +761620|33000697394|2 +992332|33000697536|2 +725706|33000697574|2 +501009|33000697634|2 +518192|33000697702|2 +1008405|33000697707|2 +780472|33000697757|2 +485203|33000697758|2 +842492|33000697779|2 +632116|33000697787|2 +1012523|33000697792|2 +853807|33000697860|4 +519921|33000697870|2 +729421|33000697885|2 +693598|33000697976|2 +1031433|33000697983|2 +694813|33000698062|2 +649351|33000698067|2 +1037820|33000698088|2 +1039198|33000698111|2 +893813|33000698127|2 +729523|33000698156|2 +724855|33000698186|2 +504945|33000698196|2 +1047182|33000698213|2 +612005|33000698247|2 +1056119|33000698380|2 +705268|33000698398|2 +780784|33000698557|2 +664482|33000698568|2 +858690|33000698651|2 +1079466|33000698674|2 +1079415|33000698678|2 +1079416|33000698680|2 +1079469|33000698698|2 +506888|33000698700|2 +463873|33000698800|2 +1083578|33000698801|2 +1083527|33000698805|2 +899334|33000698943|2 +695140|33000698949|2 +1101723|33000699053|2 +1101724|33000699055|2 +1101725|33000699066|2 +463773|33000699081|2 +870228|33000699123|2 +1113117|33000699224|2 +1113367|33000699225|2 +1113375|33000699226|2 +1113368|33000699231|2 +1113369|33000699239|2 +723692|33000699304|2 +1117273|33000699314|2 +1117274|33000699322|2 +1117275|33000699324|2 +745755|33000699334|2 +1120281|33000699340|2 +1120282|33000699342|2 +1121979|33000699361|2 +702442|33000699404|2 +1128876|33000699432|2 +1131822|33000699498|2 +899217|33000699516|2 +538859|33000699535|2 +1136476|33000699541|2 +595406|33000699558|2 +688144|33000699598|2 +632793|33000699671|4 +1154334|33000699687|2 +722824|33000699715|2 +612504|33000699744|2 +836608|33000699779|6 +567335|33000699819|2 +713626|33000699888|2 +1162914|33000699899|2 +1164685|33000699909|2 +1117276|33000699923|2 +848523|33000699939|2 +1164686|33000699944|2 +733281|33000699949|2 +635129|33000700002|2 +1173416|33000700066|2 +1173279|33000700072|2 +1173129|33000700076|2 +1173130|33000700078|2 +561105|33000700080|2 +1173417|33000700083|2 +1173418|33000700093|2 +1173131|33000700105|2 +1173132|33000700134|2 +1173133|33000700153|2 +613618|33000700159|2 +1173280|33000700163|2 +1173281|33000700165|2 +1173405|33000700167|2 +1173406|33000700168|2 +1177578|33000700229|2 +884676|33000700259|2 +883329|33000700435|2 +651983|33000700438|2 +1196840|33000700560|2 +659105|33000700684|2 +1209091|33000700727|2 +756786|33000700763|2 +660816|33000700777|2 +667695|33000700803|2 +706596|33000700822|2 +875294|33000700886|2 +609824|33000700903|2 +548948|33000700952|2 +1227040|33000700984|2 +1227041|33000700985|2 +1231837|33000701012|2 +642736|33000701040|2 +1234410|33000701056|2 +1234411|33000701058|2 +1241289|33000701169|2 +818867|33000701191|4 +713613|33000701287|2 +720723|33000701301|2 +1252828|33000701312|2 +1252802|33000701313|2 +1258160|33000701388|2 +1190527|33000701422|2 +1259772|33000701425|2 +676399|33000701490|2 +1265868|33000701506|2 +1265877|33000701509|2 +1266301|33000701511|2 +546081|33001014047|2 +567328|33001014050|2 +569021|33001014051|2 +596813|33001014052|2 +609731|33001014053|2 +611538|33001014054|2 +615933|33001014056|2 +620862|33001014057|2 +632660|33001014059|2 +698544|33001014079|2 +698407|33001014082|2 +736348|33001014089|2 +744590|33001014092|2 +461405|33001015674|2 +462474|33001015677|2 +467121|33001015719|2 +471969|33001015723|2 +479875|33001015724|2 +479781|33001015725|2 +484384|33001015727|2 +484383|33001015728|2 +539508|33001015746|2 +586755|33001015752|2 +552823|33001015758|2 +552824|33001015761|2 +575495|33001015763|2 +593331|33001015767|2 +596977|33001015774|2 +608007|33001015789|2 +615447|33001015793|2 +618526|33001015796|2 +623401|33001015798|2 +632723|33001015799|2 +654572|33001015823|2 +672868|33001015828|2 +690092|33001015863|2 +693660|33001015864|2 +701285|33001015865|2 +700619|33001015866|2 +702443|33001015869|2 +730860|33001015960|2 +754875|33001015967|2 +758638|33001015968|2 +761404|33001015969|2 +782671|33001015972|4 +773169|33001015973|2 +775551|33001015974|2 +776282|33001015975|2 +780397|33001015978|2 +796953|33001016006|2 +562252|33001016008|2 +807186|33001016011|2 +894503|33001016023|2 +651987|33001016274|2 +1154335|33001016304|2 +691967|33001016381|2 +676381|33001016464|2 +781071|33001016468|2 +884809|33001016469|2 +478403|33001016633|2 +609388|33001016635|2 +800042|33001016638|2 +890733|33001016642|2 +675263|33001016668|2 +501677|33001016673|2 +830448|33001017099|4 +830516|33001017101|4 +646286|33001017126|2 +889561|33001017705|2 +807187|33001017714|2 +841517|33001017784|2 +463555|33001017850|2 +777563|33001018112|2 +650005|33001018164|2 +701055|33001018165|2 +887641|33001018166|2 +777689|33001018201|2 +736310|33001019944|2 +700654|33001019946|2 +551674|33001019986|2 +741635|33001020367|2 +741636|33001020368|2 +593064|33001020656|2 +538768|33001020984|2 +750818|33001021062|2 +605263|33001022413|2 +705200|33001022466|2 +465883|33001025258|2 +565660|33001025261|2 +769121|33001025386|4 +781184|33001025402|2 +490572|33001025469|2 +527322|33001025506|2 +631599|33001025509|2 +639598|33001025511|2 +662895|33001025515|2 +775356|33001025569|2 +888570|33001025570|2 +456506|33001025621|2 +482642|33001025622|2 +676542|33001025634|2 +703470|33001025636|2 +874615|33001025665|2 +899243|33001025895|2 +757157|33001026251|2 +481152|33001026519|2 +775386|33001026540|2 +827953|33001026624|4 +524514|33001027312|2 +560952|33001027313|2 +482573|33001027560|2 +785541|33001027563|2 +889843|33001027755|2 +550957|33001028715|2 +569989|33001028720|2 +787773|33001029010|2 +711127|33001029460|2 +719791|33001030229|2 +570488|33001030373|2 +581004|33001030379|2 +842696|33001030382|2 +854047|33001030403|2 +688153|33001030431|2 +750045|33001030437|2 +764766|33001030924|2 +576372|33001031139|2 +488982|33001032202|2 +843571|33001032203|2 +843572|33001032204|2 +1173134|33001032207|2 +883172|33001032834|2 +758648|33001032905|2 +852274|33001033168|2 +769122|33001033305|4 +884895|33001033463|2 +527329|33001033615|2 +846870|33001033619|2 +551604|33001033903|2 +463270|33001033904|2 +725170|33001033908|2 +831588|33001033912|4 +880992|33001033924|2 +890512|33001033931|2 +479691|33001034219|2 +736332|33001034491|2 +856117|33001034553|2 +799335|33001035085|2 +479939|33001035279|2 +492298|33001035284|2 +673052|33001035344|2 +615843|33001035777|2 +700840|33001036053|4 +700620|33001036054|2 +681801|33001036715|2 +697943|33001036718|4 +681997|33001036855|2 +866252|33001036863|2 +552395|33001037113|2 +552136|33001037116|2 +615928|33001037542|2 +784188|33001037749|2 +542853|33001037980|2 +878958|33001038272|2 +880901|33001038317|2 +755796|33001038654|2 +892993|33001039146|2 +879105|33001039223|2 +954325|33001039314|2 +569168|33001039449|2 +792648|33001039453|2 +595194|33001039519|2 +771522|33001040471|4 +533152|33001041343|2 +652020|33001041574|2 +549723|33001041849|2 +520594|33001041972|2 +890946|33001042055|2 +571615|33001042140|2 +769624|33001042146|2 +1079467|33001042180|2 +646313|33001042470|2 +892994|33001042473|2 +897942|33001042937|2 +537722|33001043190|2 +685604|33001043193|2 +892048|33001043194|2 +552825|33001043281|2 +828794|33001044080|4 +729764|33001044101|2 +723636|33001044167|2 +848287|33001044313|2 +848399|33001044333|2 +595239|33001044881|2 +850011|33001045043|2 +715788|33001045076|2 +669239|33001045078|2 +573034|33001045081|2 +525100|33001045098|2 +726057|33001045103|2 +838332|33001045195|4 +698408|33001045200|2 +708514|33001045201|2 +806877|33001045206|2 +754217|33001045231|2 +899696|33001045858|2 +899917|33001045892|2 +461285|33001045965|2 +660589|33001045967|2 +571806|33001046484|2 +547735|33001046570|2 +612430|33001047423|2 +611844|33001049781|2 +666129|33001049782|2 +706902|33001049783|2 +771736|33001049821|2 +794325|33001049846|2 +873283|33001049848|2 +726058|33001050669|2 +831596|33001051410|4 +806649|33001051889|2 +457515|33001051910|2 +707748|33001051915|2 +862793|33001052087|2 +701254|33001052349|2 +576270|33001053103|2 +764527|33001053120|2 +764550|33001053122|2 +809517|33001053387|2 +693695|33001054171|2 +761266|33001054545|2 +826217|33001054551|2 +881444|33001054554|2 +884348|33001054556|2 +705201|33001054696|2 +862795|33001054957|2 +861281|33001054977|2 +654567|33001054981|2 +571905|33001055066|2 +893705|33001055081|2 +600583|33001056922|2 +654833|33001057684|2 +503577|33001058921|2 +728320|33001058924|2 +892995|33001058943|2 +565825|33001060180|2 +491265|33001060523|2 +652815|33001062414|2 +732713|33001062416|2 +514487|33001062531|2 +735483|33001062550|2 +472290|33001062648|2 +472268|33001062650|2 +557459|33001062652|2 +882557|33001062803|2 +575449|33001063055|2 +828357|33001063061|4 +626687|33001063406|2 +547744|33001063494|2 +849966|33001063531|2 +501186|33001064617|2 +692829|33001064929|2 +692768|33001064938|2 +858695|33001065134|2 +954316|33001065178|2 +701274|33001065361|2 +741255|33001065434|2 +770293|33001065675|2 +693528|33001066683|2 +521917|33001067092|2 +545137|33001067097|2 +480899|33001067316|2 +886329|33001067350|2 +849955|33001069248|2 +506379|33001069276|2 +696872|33001069316|2 +502802|33001069340|2 +852394|33001069540|2 +521854|33001069550|2 +651818|33001069582|2 +957893|33001069746|2 +571647|33001069761|2 +884347|33001069772|2 +693599|33001069783|2 +803062|33001069822|2 +711248|33001069856|2 +701056|33001070149|2 +782230|33001070164|2 +877883|33001070189|2 +718876|33001070202|2 +464634|33001070315|2 +693600|33001070325|2 +624367|33001072571|2 +774612|33001072577|2 +616318|33001072587|2 +884457|33001072654|2 +695860|33001072699|2 +864645|33001072767|2 +700501|33001076271|2 +711109|33001076700|2 +892992|33001076701|2 +463276|33001076707|2 +727420|33001076739|2 +509109|33001076746|2 +587145|33001079116|2 +592917|33001079118|2 +524577|33001079208|2 +526086|33001079250|2 +722930|33001079260|2 +604672|33001079269|2 +490575|33001079537|2 +549952|33001079544|2 +567923|33001079545|2 +577012|33001079546|2 +722931|33001079559|2 +882525|33001079564|2 +957731|33001079588|2 +779013|33001079770|2 +735491|33001079776|2 +832134|33001079785|4 +693877|33001079791|2 +880907|33001079796|2 +803078|33001080566|2 +785824|33001080666|2 +493890|33001081019|2 +507325|33001081053|2 +756233|33001081059|2 +670711|33001081060|2 +617937|33001081068|2 +737120|33001081072|2 +883137|33001081097|2 +653153|33001081351|2 +851039|33001081352|2 +871523|33001081533|2 +864565|33001081699|2 +660183|33001081772|2 +878299|33001081888|2 +842695|33001082184|2 +726317|33001082527|2 +615932|33001082914|2 +802280|33001082938|2 +842896|33001082953|2 +715761|33001082971|2 +585226|33001083324|2 +957884|33001083606|2 +593963|33001083788|2 +530728|33001083939|2 +519770|33001083941|2 +652234|33001084181|2 +843254|33001084579|2 +552612|33001084809|2 +756017|33001084815|2 +717079|33001084926|2 +722627|33001085030|2 +577045|33001085122|2 +598276|33001085276|2 +466054|33001085644|2 +652648|33001085718|2 +528250|33001085919|2 +463517|33001086031|2 +1182431|33001086096|2 +492299|33001086234|2 +722977|33001086465|2 +507861|33001086658|2 +748649|33001086659|2 +881986|33001086938|2 +900341|33001086942|2 +646264|33001087312|2 +611494|33001087431|2 +843668|33001087432|2 +889692|33001087697|2 +587392|33001087917|2 +754705|33001087921|2 +861829|33001087980|2 +526454|33001088250|2 +553871|33001088537|2 +863362|33001088542|2 +670755|33001089115|2 +603802|33001089354|2 +800046|33001089366|2 +927627|33001090126|2 +612431|33001090386|2 +680270|33001090802|2 +804624|33001091141|2 +1022275|33001091280|2 +809514|33001091281|2 +701057|33001091298|2 +563299|33001091345|2 +887480|33001091391|2 +474076|33001091393|2 +471684|33001091398|2 +463874|33001091491|2 +708072|33001091602|2 +568451|33001091604|2 +607203|33001091605|2 +524451|33001091916|2 +568539|33001092366|2 +890796|33001092372|2 +501862|33001093491|2 +516000|33001093650|2 +844544|33001094181|2 +675696|33001095183|2 +675866|33001095184|2 +551415|33001095227|2 +705302|33001095234|2 +555375|33001095235|2 +721039|33001095434|2 +626688|33001095594|2 +664221|33001095595|2 +701255|33001096397|2 +863335|33001096398|2 +616706|33001096771|2 +669498|33001096815|2 +571572|33001097074|2 +454965|33001097427|2 +842669|33001098316|2 +588596|33001098961|2 +867427|33001098962|2 +454484|33001099048|2 +494501|33001099051|2 +693632|33001099182|2 +764601|33001099364|2 +868443|33001099515|2 +833921|33001099687|4 +650112|33001100453|2 +718877|33001100454|2 +512353|33001101554|2 +879198|33001101830|2 +603188|33001102562|4 +704874|33001102741|2 +529885|33001102748|2 +609823|33001102853|2 +696024|33001102920|2 +754324|33001103091|2 +854469|33001103872|2 +702470|33001104045|2 +559447|33001104337|2 +901998|33001104339|2 +852208|33001104544|2 +508990|33001104620|2 +618725|33001104711|2 +1113366|33001104715|2 +632998|33001104962|2 +591502|33001105513|2 +860992|33001105517|2 +887651|33001105523|2 +552578|33001105922|2 +604852|33001107159|2 +808404|33001107217|2 +792690|33001107382|2 +652341|33001107434|2 +828087|33001108215|4 +509718|33001108415|2 +602575|33001108417|2 +1173200|33001108470|2 +803088|33001109168|2 +871150|33001109174|2 +928487|33001109180|2 +754525|33001109329|2 +518322|33001109951|2 +750881|33001109968|2 +461647|33001109978|2 +707121|33001110189|2 +612737|33001110256|4 +625808|33001110262|2 +711129|33001110266|2 +840797|33001110272|2 +829694|33001110772|4 +779436|33001110842|2 +847114|33001111225|2 +584486|33001111231|2 +626772|33001111257|2 +861818|33001111504|2 +522411|33001111518|2 +634577|33001111520|2 +519147|33001111536|2 +605192|33001111537|4 +836587|33001112297|4 +501607|33001112394|2 +676323|33001112432|2 +691540|33001113361|2 +776317|33001113364|2 +779243|33001113523|2 +859929|33001113546|2 +660369|33001113574|2 +954317|33001113605|2 +692192|33001113620|2 +692193|33001113621|2 +581371|33001113629|2 +722621|33001113663|2 +722920|33001113667|2 +774097|33001113709|2 +782137|33001113870|2 +472447|33001113986|2 +571609|33001113987|2 +511424|33001115420|2 +535807|33001115426|2 +711674|33001115481|2 +841829|33001115531|2 +853399|33001115547|2 +686111|33001117266|2 +614620|33001119246|2 +618060|33001119249|2 +626008|33001119254|2 +631206|33001119424|2 +646252|33001119429|2 +670181|33001119430|2 +685685|33001119431|2 +701637|33001119432|2 +708623|33001119435|2 +719765|33001119437|2 +732459|33001119439|2 +754505|33001119445|2 +790912|33001119453|2 +855999|33001119457|2 +858693|33001119458|2 +882329|33001119459|2 +486079|33001119463|2 +480883|33001119548|2 +848845|33001119634|2 +466194|33001119723|2 +481753|33001119725|2 +763556|33001119726|2 +737124|33001119729|2 +667829|33001119827|2 +452156|33001119838|2 +802575|33001119850|2 +703390|33001119851|2 +700502|33001119856|2 +557115|33001119875|2 +858787|33001119881|2 +954636|33001120007|2 +647072|33001120012|2 +545862|33001120023|2 +893835|33001120071|2 +782162|33001120112|2 +502409|33001120199|2 +631527|33001120201|2 +745596|33001120203|2 +800985|33001120215|2 +542127|33001121144|2 +616369|33001121145|2 +700332|33001121146|2 +599324|33001121157|2 +484608|33001121469|2 +491590|33001121470|2 +706901|33001121471|2 +715884|33001121659|2 +646374|33001121683|2 +476345|33001122277|4 +551391|33001122281|2 +646930|33001122282|2 +464142|33001123074|2 +741484|33001123078|2 +586551|33001123361|2 +479801|33001123383|2 +728504|33001123387|2 +528467|33001123918|2 +667840|33001123919|2 +756051|33001123920|2 +1173282|33001123922|2 +510854|33001124194|2 +646283|33001124196|2 +518288|33001124700|2 +706715|33001124760|2 +706653|33001124761|2 +900800|33001124762|2 +467748|33001124893|2 +611044|33001124939|2 +861159|33001124943|2 +602900|33001125096|2 +597568|33001125772|2 +969241|33001125776|2 +458996|33001126334|2 +613341|33001126481|2 +854922|33001126482|2 +552736|33001126836|2 +566940|33001126852|2 +723697|33001126853|2 +637501|33001126865|2 +569764|33001126866|2 +756292|33001126867|2 +463271|33001126868|2 +853620|33001126878|4 +681689|33001126879|2 +852897|33001126894|2 +693573|33001126916|2 +828113|33001126918|4 +790701|33001126925|2 +471985|33001127005|2 +492770|33001127305|2 +577033|33001127307|2 +583815|33001127308|2 +784169|33001127310|2 +516609|33001127876|2 +526222|33001127881|2 +516805|33001127882|2 +516704|33001127884|2 +677429|33001127887|2 +607505|33001128379|2 +785504|33001128390|2 +838239|33001128393|4 +865097|33001128818|2 +865001|33001128819|2 +886209|33001128928|2 +889649|33001128930|2 +1239468|33001128966|2 +455601|33001129491|2 +614631|33001129495|2 +698938|33001129497|2 +698143|33001131233|2 +583447|33001131263|2 +1234409|33001131363|2 +492837|33001132218|2 +521337|33001132220|2 +650165|33001132223|2 +536159|33001132225|2 +569020|33001132229|2 +604663|33001132230|2 +607506|33001132231|2 +607913|33001132233|2 +700813|33001132236|2 +736316|33001132238|2 +759286|33001132240|4 +769669|33001132243|2 +769641|33001132245|2 +802818|33001132250|2 +890189|33001132820|2 +890188|33001132827|2 +758951|33001132909|2 +651637|33001133048|2 +750757|33001133072|2 +715867|33001133514|2 +502311|33001133517|2 +587458|33001133519|2 +681207|33001133527|2 +646297|33001133793|2 +573819|33001134482|2 +587143|33001134484|2 +592184|33001134485|2 +704888|33001134487|2 +721452|33001134489|2 +714526|33001134491|2 +516341|33001134678|2 +602438|33001135376|2 +529201|33001135596|2 +557711|33001135605|2 +861243|33001135609|2 +893823|33001135619|2 +510765|33001135629|2 +1012524|33001135633|2 +597866|33001135753|2 +492711|33001139677|2 +545705|33001139682|2 +850081|33001139746|2 +827304|33001139785|4 +471531|33001139788|2 +475765|33001139791|2 +476262|33001140006|2 +514485|33001140012|2 +616289|33001140031|2 +626851|33001140032|2 +684930|33001140074|2 +750026|33001140084|2 +773883|33001140093|2 +784210|33001140097|2 +786914|33001140105|2 +533163|33001141101|2 +877715|33001141371|2 +849985|33001141394|2 +801729|33001141400|2 +659346|33001141478|2 +654747|33001141499|4 +608514|33001141575|2 +608466|33001141588|2 +619067|33001141691|2 +734630|33001144298|2 +846291|33001144315|2 +484266|33001145612|2 +484258|33001145619|2 +500405|33001145621|2 +558844|33001145624|2 +591259|33001145625|2 +603495|33001145627|2 +875788|33001145646|2 +700905|33001145825|2 +650003|33001146230|2 +757378|33001146252|2 +669241|33001146264|2 +873665|33001147293|2 +561731|33001147299|2 +728092|33001147319|2 +728085|33001147323|2 +859289|33001147329|2 +540790|33001147619|2 +468989|33001147643|2 +455804|33001147659|2 +716367|33001147679|2 +838333|33001147686|4 +467390|33001148189|2 +465880|33001148265|2 +651614|33001148340|2 +619106|33001148401|2 +784804|33001148447|2 +700406|33001148486|2 +761869|33001148538|2 +889562|33001148544|2 +613811|33001148626|2 +765421|33001148631|2 +985232|33001148642|2 +685893|33001148779|2 +706716|33001148785|2 +842601|33001149157|2 +899340|33001150932|2 +773845|33001152267|2 +705178|33001153817|2 +654568|33001153863|2 +602971|33001154296|2 +726257|33001154298|2 +1173283|33001154300|2 +662271|33001154824|2 +893062|33001154828|2 +455081|33001156664|2 +456556|33001156667|2 +456491|33001156674|2 +467115|33001156686|2 +479967|33001156690|2 +541985|33001156758|2 +547337|33001156765|2 +547851|33001156776|2 +563153|33001156784|2 +575528|33001156934|2 +579548|33001156937|2 +587944|33001156949|2 +597414|33001156960|2 +612158|33001156963|2 +612432|33001156966|2 +611845|33001156971|2 +614667|33001156977|2 +614682|33001156987|2 +654530|33001157009|2 +676445|33001157013|2 +671267|33001157019|2 +676446|33001157022|2 +670030|33001157024|2 +690084|33001157043|2 +705233|33001157055|2 +711121|33001157066|2 +718729|33001157071|2 +739804|33001157081|2 +754277|33001157103|2 +774345|33001157129|2 +775486|33001157154|2 +782775|33001157168|2 +791623|33001157173|2 +791711|33001157182|2 +849282|33001157210|2 +534617|33001157230|2 +870227|33001157241|2 +874980|33001157251|2 +880993|33001157395|2 +889473|33001157415|2 +895320|33001157427|2 +957732|33001157514|2 +1031432|33001157567|2 +1035876|33001157574|2 +1102767|33001157632|2 +462051|33001157764|2 +504251|33001157823|2 +569016|33001157848|2 +587592|33001157863|2 +632661|33001157879|2 +647683|33001157885|2 +683148|33001157925|2 +684945|33001157932|2 +701192|33001157938|2 +719311|33001157944|2 +762681|33001157957|2 +853625|33001157961|2 +881441|33001157964|2 +464056|33001158015|2 +623494|33001159711|2 +481948|33001159714|2 +758639|33001159717|2 +557693|33001160785|4 +802786|33001160786|2 +852451|33001160787|2 +581458|33001162040|2 +631768|33001162084|2 +676155|33001162089|2 +805750|33001162112|2 +881972|33001162122|2 +583832|33001162631|2 +534284|33001163969|2 +543820|33001163973|2 +595800|33001164603|2 +483061|33001165271|2 +861145|33001165279|2 +492695|33001166057|2 +563176|33001166060|2 +739151|33001166075|2 +463883|33001166816|2 +848400|33001166951|2 +611047|33001167290|2 +492838|33001168136|2 +632999|33001168137|2 +698803|33001168140|2 +750030|33001168153|2 +502806|33001169585|2 +466042|33001169611|2 +501860|33001169613|2 +523257|33001169616|2 +700463|33001169620|2 +798715|33001169624|2 +744137|33001169625|2 +959097|33001169632|2 +580560|33001170692|2 +606526|33001170696|2 +785529|33001170727|2 +503575|33001171114|2 +513016|33001171151|2 +621635|33001171694|2 +759049|33001172307|2 +571648|33001172375|2 +766902|33001172386|2 +646265|33001172633|2 +612738|33001172896|4 +698545|33001172897|2 +850496|33001173324|2 +482671|33001173325|2 +660237|33001173334|2 +639360|33001173806|2 +537725|33001173807|2 +646209|33001174175|2 +646210|33001174184|2 +701155|33001174198|2 +784959|33001174217|2 +683059|33001174606|2 +456572|33001174641|2 +1247580|33001174643|2 +571920|33001174964|2 +545069|33001175362|2 +612002|33001175371|2 +612570|33001175863|2 +772471|33001176109|2 +792666|33001176113|2 +890947|33001176708|2 +495780|33001176786|2 +632117|33001176835|2 +889754|33001176894|2 +639404|33001176902|2 +847245|33001177873|2 +617887|33001177876|4 +773282|33001177878|2 +514679|33001177937|2 +723698|33001177943|2 +499911|33001177948|2 +557926|33001177953|2 +457977|33001178249|2 +470980|33001178251|2 +705724|33001178317|2 +792676|33001178327|2 +887449|33001178328|2 +894238|33001178331|2 +632621|33001178401|2 +484989|33001178760|2 +755835|33001178778|2 +854962|33001178779|2 +857005|33001178783|2 +615714|33001178790|2 +553146|33001180762|2 +608868|33001180765|2 +615700|33001180769|2 +725734|33001180773|2 +747424|33001180774|2 +691433|33001181533|2 +523978|33001181568|2 +632651|33001181585|2 +646256|33001181589|2 +1231890|33001181631|2 +496898|33001181991|2 +537580|33001181992|2 +557945|33001182362|2 +706025|33001182374|2 +523980|33001182508|2 +663261|33001182516|2 +665380|33001182541|2 +540744|33001182959|2 +608708|33001182975|2 +608712|33001182985|2 +685829|33001183531|2 +776322|33001183535|2 +786915|33001183537|2 +847673|33001183542|2 +488832|33001184043|2 +539564|33001184046|2 +577642|33001184056|2 +627566|33001184079|2 +792222|33001184086|2 +488524|33001184364|2 +840217|33001184366|4 +853500|33001184368|2 +491283|33001185089|2 +618944|33001185250|2 +671206|33001185259|2 +488699|33001185698|2 +535934|33001185701|2 +659842|33001185710|2 +839261|33001186593|4 +639782|33001186963|2 +608662|33001187447|2 +679741|33001187480|2 +679730|33001187483|2 +463277|33001187838|2 +560968|33001187847|2 +782120|33001187869|2 +479692|33001188325|2 +602580|33001188327|2 +745306|33001188734|2 +455807|33001189446|2 +493296|33001189451|2 +493297|33001189453|2 +506650|33001189454|2 +853169|33001189468|2 +541986|33001189741|2 +612159|33001189746|2 +677724|33001189747|2 +703268|33001189748|2 +878808|33001189750|2 +512027|33001190060|2 +742575|33001190066|2 +572364|33001190345|2 +474771|33001190346|2 +688711|33001190347|2 +535933|33001191037|2 +468615|33001191045|2 +880933|33001191154|2 +479769|33001191570|2 +571828|33001191573|2 +609254|33001191964|2 +469531|33001191988|2 +556795|33001191991|2 +802408|33001191996|2 +469202|33001192286|2 +557652|33001192287|2 +560973|33001192310|2 +625706|33001192313|2 +739475|33001192317|2 +705911|33001192423|2 +504378|33001192760|2 +847625|33001192782|2 +454935|33001192789|2 +632743|33001193107|2 +840996|33001193114|2 +882559|33001193116|2 +807799|33001193174|2 +804104|33001193876|2 +721457|33001193892|2 +570181|33001194004|2 +479722|33001194863|2 +720371|33001194870|2 +512989|33001195179|2 +549740|33001195183|2 +587547|33001195196|2 +632374|33001195200|2 +646149|33001195204|2 +664228|33001195208|2 +522414|33001195283|2 +533106|33001195532|2 +652653|33001195538|2 +693389|33001195543|2 +546977|33001195948|2 +745113|33001195957|2 +610183|33001195974|2 +1042655|33001196338|2 +458956|33001196382|2 +456550|33001196402|2 +492470|33001196410|2 +515107|33001196420|2 +837825|33001196448|4 +524389|33001196930|2 +853269|33001198308|2 +902468|33001198690|2 +463703|33001199036|2 +500610|33001199037|2 +582259|33001199047|2 +611539|33001199048|2 +675830|33001199736|2 +687053|33001199738|2 +718772|33001199743|2 +778185|33001199757|2 +852816|33001199759|2 +870363|33001199792|2 +881442|33001199801|2 +711096|33001200204|2 +745651|33001200211|2 +669060|33001200220|2 +832459|33001200285|4 +585548|33001200293|2 +679410|33001200298|2 +671292|33001200309|2 +492697|33001200310|2 +708517|33001200311|2 +577060|33001200312|2 +746436|33001200315|2 +856943|33001200318|2 +520372|33001200582|2 +527281|33001200630|2 +869737|33001200993|2 +468573|33001201184|2 +468571|33001201191|2 +515946|33001201193|2 +662698|33001201201|2 +859203|33001201253|2 +884675|33001201281|2 +899448|33001201285|2 +1046769|33001201333|2 +771327|33001201387|2 +771154|33001201388|2 +737557|33001201691|2 +890872|33001201694|4 +732196|33001201875|2 +612410|33001201902|2 +494139|33001202918|2 +494086|33001202923|2 +576267|33001202924|2 +613812|33001202926|2 +698748|33001202927|2 +699023|33001202928|2 +552980|33001203457|2 +615964|33001203500|2 +755428|33001203504|2 +761256|33001203507|2 +875006|33001203513|2 +510691|33001203548|2 +510689|33001203550|2 +858440|33001203556|2 +521563|33001203571|2 +642629|33001203578|2 +533107|33001204839|2 +786815|33001205497|2 +739150|33001205847|2 +659248|33001206278|2 +842606|33001206838|2 +885127|33001206893|2 +884719|33001207031|2 +509049|33001207698|2 +605446|33001208567|2 +505015|33001208932|2 +637499|33001208933|2 +880934|33001208936|2 +767052|33001208999|2 +611154|33001209063|2 +726367|33001209064|2 +535878|33001209100|2 +653264|33001209686|2 +723312|33001209687|2 +694836|33001209737|2 +695141|33001209738|2 +841762|33001210056|2 +711675|33001210113|2 +926634|33001210124|2 +851068|33001210229|2 +595790|33001210459|2 +553024|33001211432|2 +620471|33001212337|2 +880526|33001212377|2 +460967|33001212659|2 +838938|33001212720|4 +900218|33001212787|2 +750043|33001212818|2 +587638|33001212862|2 +620937|33001213295|2 +730968|33001213297|2 +502951|33001213384|2 +760537|33001213387|2 +769370|33001213389|2 +569022|33001214657|2 +491767|33001214672|2 +456627|33001214674|2 +471397|33001215106|2 +602409|33001215109|2 +851069|33001215121|2 +785542|33001215128|2 +780013|33001215171|2 +463345|33001215258|2 +463802|33001215259|2 +479770|33001215263|2 +525360|33001215265|2 +526298|33001215266|2 +571097|33001215269|2 +571732|33001215273|2 +627636|33001215276|2 +639405|33001215312|2 +662304|33001215319|2 +700591|33001215324|4 +726274|33001215332|2 +739245|33001215337|2 +742708|33001215340|2 +779818|33001215345|2 +709795|33001215347|2 +639332|33001215351|2 +709750|33001215354|2 +853445|33001215356|2 +877543|33001215361|2 +957913|33001215378|2 +1231838|33001215435|2 +607549|33001215554|2 +514478|33001215833|2 +677342|33001215994|2 +467698|33001216154|2 +631990|33001216649|2 +732700|33001216653|2 +607254|33001217350|2 +632875|33001217357|2 +612740|33001217359|4 +695204|33001217782|2 +758751|33001217965|2 +992433|33001217968|2 +528039|33001218052|2 +590034|33001218360|2 +924231|33001218428|2 +646144|33001218620|2 +538048|33001218661|2 +650472|33001218664|2 +793918|33001218769|2 +521929|33001219264|2 +693597|33001219271|2 +571531|33001219510|2 +579107|33001220002|2 +456707|33001220338|2 +510683|33001220339|2 +533193|33001220340|2 +651879|33001220345|2 +785517|33001220351|2 +746439|33001220434|2 +851698|33001220435|2 +1234412|33001220439|2 +537298|33001220593|2 +526295|33001220867|2 +569067|33001220868|2 +773081|33001220869|2 +663562|33001221022|2 +569026|33001221148|2 +715900|33001221676|2 +840216|33001221677|4 +711726|33001221775|2 +533198|33001221853|2 +607550|33001221957|2 +754075|33001221966|2 +837862|33001222614|4 +585867|33001222757|4 +715839|33001222909|2 +660176|33001222919|2 +618915|33001223243|2 +652379|33001223698|2 +569188|33001223920|2 +895304|33001224074|2 +582463|33001225010|2 +724362|33001225011|2 +828360|33001225012|4 +615824|33001225435|2 +685785|33001225447|2 +688762|33001225457|2 +698551|33001225508|2 +1035875|33001225535|2 +863588|33001225651|2 +660250|33001225783|2 +525395|33001225850|2 +804060|33001226112|2 +454537|33001227849|2 +523586|33001227850|2 +609754|33001227853|2 +611601|33001227856|2 +671516|33001227857|4 +696920|33001227858|2 +702521|33001227859|2 +721184|33001227861|2 +796956|33001227862|2 +844342|33001227863|2 +888148|33001227865|2 +521855|33001228663|2 +668291|33001228673|4 +761428|33001228675|2 +791847|33001228677|2 +791971|33001228682|2 +792360|33001229176|4 +867776|33001229177|2 +1265869|33001229187|2 +639537|33001229244|2 +555914|33001229260|2 +858699|33001229272|2 +520426|33001229322|2 +693617|33001229326|2 +800044|33001229420|2 +595286|33001229463|2 +525193|33001229620|2 +710875|33001229643|2 +597607|33001230234|2 +595366|33001230393|2 +571994|33001230955|2 +593131|33001231177|2 +863560|33001232594|2 +454274|33001232786|2 +560925|33001232791|2 +560926|33001232793|2 +781185|33001232817|2 +507278|33001232976|2 +833246|33001232994|4 +676635|33001233067|2 +632670|33001233312|2 +609136|33001233548|2 +588348|33001233877|2 +588349|33001233883|2 +607216|33001233884|2 +526288|33001233911|2 +725746|33001233921|2 +784560|33001233924|4 +795634|33001233926|2 +875461|33001233927|2 +894574|33001233928|2 +722932|33001233934|2 +503584|33001233976|2 +526350|33001234114|2 +607429|33001234733|2 +671956|33001235036|2 +872416|33001235396|2 +887657|33001235964|2 +887658|33001235965|2 +523251|33001236371|2 +738567|33001236374|2 +672977|33001236695|2 +545049|33001236932|2 +479912|33001237528|2 +597304|33001238055|2 +614509|33001238056|2 +502109|33001238543|2 +879222|33001238544|4 +671517|33001238545|4 +742194|33001238548|2 +493670|33001238796|2 +682463|33001238799|2 +551673|33001239635|2 +548896|33001239724|2 +590689|33001240097|2 +777828|33001240537|2 +863532|33001240538|2 +738933|33001240549|2 +784419|33001240876|2 +721059|33001241008|2 +880902|33001241210|2 +526223|33001241270|2 +526170|33001241273|2 +661335|33001241480|2 +750038|33001241970|2 +568264|33001242111|2 +701058|33001242159|2 +743170|33001242167|2 +833296|33001242359|4 +772578|33001242672|2 +516346|33001242673|2 +607486|33001243162|2 +607430|33001243164|2 +647514|33001243333|2 +603352|33001243391|2 +740905|33001243506|2 +893914|33001243868|2 +620473|33001244228|2 +672986|33001244233|2 +466055|33001244507|2 +756288|33001244773|2 +795594|33001244919|2 +600485|33001245811|2 +583979|33001245845|2 +670707|33001245848|2 +861163|33001245856|2 +491273|33001246058|2 +544053|33001246064|2 +701276|33001246066|2 +563432|33001246083|2 +511320|33001246736|2 +842691|33001246930|2 +854056|33001246931|2 +545136|33001247028|2 +747102|33001247342|2 +929101|33001247723|2 +795314|33001247961|4 +843255|33001247971|2 +859281|33001247973|2 +888248|33001247975|2 +471138|33001248131|2 +676593|33001248135|2 +457964|33001248253|2 +806633|33001248349|2 +954455|33001248731|2 +707752|33001249294|2 +874965|33001249298|2 +861830|33001249696|2 +521054|33001250206|2 +723509|33001250207|2 +677687|33001250273|2 +827177|33001250431|4 +502552|33001250691|2 +863661|33001250764|2 +469672|33001251107|2 +470473|33001251109|2 +492955|33001252087|2 +683060|33001252098|2 +796221|33001252101|2 +858509|33001252228|2 +483767|33001252880|2 +713531|33001253600|2 +755004|33001253601|2 +859931|33001253640|2 +779437|33001253730|2 +567881|33001254015|2 +713530|33001254018|2 +480951|33001254235|2 +954685|33001254277|2 +792151|33001254280|2 +724156|33001254482|2 +724155|33001254486|2 +869142|33001255121|2 +695187|33001255299|2 +773891|33001255305|2 +576268|33001255491|2 +646229|33001255508|2 +673245|33001255714|2 +654676|33001255851|2 +902311|33001255854|2 +1079417|33001256272|2 +576415|33001256567|2 +853241|33001256783|2 +736317|33001257053|2 +773921|33001257055|2 +465511|33001257294|2 +647505|33001257300|2 +460164|33001257344|2 +596245|33001257346|2 +583475|33001257769|2 +682718|33001257783|2 +878295|33001257804|2 +662826|33001258323|2 +508092|33001258366|2 +604917|33001258474|2 +845824|33001258994|2 +792649|33001259113|2 +635205|33001259395|2 +521330|33001259562|2 +533024|33001259563|2 +555860|33001259564|2 +802351|33001259567|2 +839737|33001259568|4 +615929|33001259712|2 +465737|33001261068|2 +686886|33001261099|2 +710022|33001261102|2 +727911|33001261104|2 +881987|33001261109|2 +893466|33001261111|2 +1172896|33001262359|2 +1172897|33001262360|2 +642988|33001262530|2 +458988|33001263948|2 +735535|33001263955|2 +848586|33001263957|2 +593013|33001263972|2 +734319|33001264076|2 +893921|33001264077|4 +902046|33001264078|2 +532752|33001264347|2 +734118|33001264677|2 +451367|33001264995|2 +600882|33001265027|2 +608294|33001265028|2 +668395|33001265029|2 +887055|33001265030|2 +701256|33001265387|2 +549459|33001265442|2 +685880|33001265449|2 +544571|33001265455|2 +517816|33001265457|2 +854923|33001265458|2 +660128|33001265460|2 +736333|33001265463|2 +780500|33001265466|2 +480008|33001265468|2 +524007|33001265589|2 +668394|33001265590|2 +682719|33001266705|2 +755343|33001266808|2 +479865|33001267342|2 +546147|33001267344|2 +612973|33001267345|2 +670023|33001267346|2 +707236|33001267356|2 +775642|33001267381|2 +650481|33001269246|2 +670003|33001269247|2 +616042|33001269451|2 +740294|33001269458|2 +490720|33001269459|2 +492791|33001270003|2 +516231|33001270120|2 +530465|33001270123|2 +533484|33001270124|2 +544868|33001270125|2 +639266|33001270130|2 +647570|33001270174|2 +647569|33001270175|2 +699455|33001270178|4 +702520|33001270179|2 +486273|33001270181|2 +853830|33001270183|2 +864340|33001270184|2 +881961|33001270187|2 +514408|33001270193|2 +579203|33001270789|2 +590712|33001270790|2 +639783|33001270792|2 +497794|33001271168|2 +545999|33001271270|2 +560462|33001271294|2 +730145|33001271301|2 +663893|33001271401|4 +723711|33001271914|2 +489865|33001272319|2 +615661|33001272324|2 +596023|33001272652|2 +701257|33001272655|2 +609186|33001272701|2 +803152|33001272704|2 +887666|33001272719|2 +619989|33001273010|2 +902005|33001273012|2 +594663|33001273578|2 +608873|33001273579|2 +700834|33001273580|2 +566577|33001273585|2 +843098|33001273592|2 +843099|33001273593|2 +1173407|33001273596|2 +900120|33001273708|2 +594751|33001273938|2 +558135|33001274435|2 +604546|33001274584|2 +583476|33001274589|2 +681717|33001274591|2 +693684|33001274592|2 +693751|33001274593|2 +698621|33001274594|2 +761331|33001274595|2 +552940|33001274880|2 +579974|33001274881|2 +645173|33001274882|2 +800510|33001274883|2 +857239|33001274884|2 +860080|33001274886|2 +888153|33001274888|2 +1047223|33001274957|2 +600079|33001275518|2 +770874|33001275575|2 +533190|33001275577|2 +600918|33001275587|2 +608228|33001275678|2 +608272|33001275681|2 +677419|33001275687|2 +772569|33001275702|2 +772575|33001275703|2 +902047|33001275706|2 +992432|33001275724|2 +639311|33001276700|2 +683679|33001276702|2 +536148|33001279107|2 +569023|33001279207|2 +516342|33001279423|2 +676404|33001279427|2 +750048|33001279435|2 +783880|33001279679|2 +839080|33001279682|4 +727237|33001279713|2 +491278|33001279932|2 +481199|33001280047|2 +523928|33001280323|2 +1211592|33001280341|2 +780530|33001280585|2 +576354|33001281049|2 +733895|33001281463|2 +506971|33001281564|2 +667144|33001282015|2 +743129|33001282132|2 +743112|33001282135|2 +521606|33001282580|2 +541753|33001282681|2 +514492|33001283529|2 +791298|33001283530|2 +882491|33001284390|2 +456628|33001284475|2 +878437|33001285326|2 +783983|33001285329|2 +488388|33001285738|2 +479694|33001285740|2 +735614|33001285743|2 +557959|33001285746|2 +531402|33001285764|2 +676361|33001285767|2 +886156|33001285770|2 +1164704|33001287024|2 +471322|33001287430|2 +470981|33001287431|2 +471857|33001287435|2 +471828|33001287441|2 +456451|33001287442|2 +488387|33001287451|2 +523253|33001287452|2 +611540|33001287501|2 +587920|33001287503|2 +558458|33001287505|2 +646245|33001287519|2 +649937|33001287521|2 +784802|33001287544|2 +861821|33001287653|2 +858441|33001287658|2 +890342|33001287661|2 +1073445|33001287812|2 +681426|33001287951|2 +463346|33001288464|2 +479786|33001288466|4 +491256|33001288469|2 +525226|33001288472|2 +579967|33001288488|2 +525227|33001288632|2 +1256895|33001288648|2 +602898|33001288759|2 +632409|33001288760|2 +739149|33001288763|2 +759125|33001288765|2 +845823|33001288767|2 +879067|33001288769|2 +714490|33001290336|2 +629777|33001291325|2 +672874|33001291326|2 +571723|33001292600|2 +602576|33001292635|2 +610281|33001292681|2 +587370|33001292708|2 +595326|33001293530|2 +853503|33001293532|2 +492792|33001294056|2 +890604|33001294059|2 +704178|33001295541|2 +1024428|33001295569|2 +693138|33001295767|2 +693752|33001296125|2 +854332|33001296127|2 +532115|33001296231|2 +742300|33001296354|2 +782961|33001296356|2 +740777|33001296471|2 +757408|33001296856|2 +571616|33001297800|2 +571657|33001297805|2 +825696|33001298707|4 +893138|33001298708|2 +769927|33001298712|2 +593944|33001298735|2 +703441|33001299041|2 +484859|33001299382|2 +549695|33001299387|2 +560461|33001299391|2 +652138|33001299703|2 +495782|33001299833|2 +745162|33001299835|2 +695178|33001300114|2 +853170|33001300397|2 +763801|33001300399|2 +626443|33001300430|2 +1211593|33001300478|2 +848526|33001300551|2 +785558|33001300801|2 +770769|33001300934|2 +504149|33001300946|2 +574973|33001301011|2 +880680|33001301012|2 +492297|33001301092|2 +505285|33001301904|2 +571952|33001301970|2 +863326|33001302981|2 +899901|33001303017|2 +452523|33001303163|2 +722727|33001303288|2 +454776|33001303391|2 +646230|33001303392|2 +516399|33001303844|2 +516400|33001303845|2 +685723|33001303848|2 +703455|33001303898|2 +773811|33001304005|2 +512019|33001304732|2 +773821|33001304733|2 +703415|33001304943|2 +804741|33001304945|2 +582226|33001305169|2 +508093|33001305333|2 +670741|33001305334|2 +492359|33001305651|2 +626006|33001305652|2 +791302|33001305653|2 +889846|33001305661|2 +493681|33001306367|2 +672878|33001306368|2 +726233|33001306369|2 +722679|33001306452|2 +458985|33001306910|2 +651815|33001306912|2 +472967|33001307022|2 +593934|33001307023|2 +466307|33001307538|2 +852893|33001307541|2 +614599|33001307542|2 +612140|33001307545|2 +627238|33001307553|2 +526169|33001307554|2 +675191|33001307558|2 +635093|33001307559|2 +512442|33001307561|2 +808547|33001307565|2 +863381|33001307567|2 +650166|33001308118|2 +672879|33001308466|2 +828793|33001308472|4 +571724|33001309127|2 +531128|33001309207|2 +531149|33001309208|2 +882349|33001309209|2 +471490|33001309433|4 +718796|33001309437|2 +587452|33001310156|2 +596819|33001310216|2 +596851|33001310217|2 +596839|33001310218|2 +740778|33001310339|2 +851709|33001310343|2 +574984|33001310651|2 +728505|33001310842|2 +710176|33001310945|2 +492788|33001311246|2 +785560|33001311475|2 +523981|33001311717|2 +617964|33001311767|2 +532143|33001312830|2 +608854|33001312831|2 +829295|33001312832|4 +629636|33001312842|2 +502414|33001312850|2 +557615|33001312935|2 +572280|33001312936|2 +496589|33001313209|2 +536358|33001313211|2 +802534|33001313216|2 +571617|33001313647|2 +633599|33001313649|2 +861816|33001313650|2 +618916|33001313873|2 +874400|33001313874|2 +884067|33001314311|2 +1193152|33001314327|2 +1193153|33001314339|2 +538202|33001314774|2 +570192|33001314776|2 +592067|33001314777|2 +801151|33001314778|2 +785538|33001315041|2 +770004|33001315323|2 +769991|33001315324|2 +472560|33001315587|2 +612495|33001315625|2 +640231|33001315626|2 +854924|33001315628|2 +897393|33001315631|2 +547792|33001315657|2 +521334|33001316236|2 +849064|33001316237|2 +861824|33001316238|2 +721458|33001316389|2 +580734|33001316575|2 +580726|33001316576|2 +482838|33001317222|2 +661338|33001317223|2 +695859|33001317230|2 +461777|33001317567|2 +517537|33001317573|2 +745649|33001317834|2 +693506|33001318115|2 +858974|33001318270|2 +646266|33001318548|2 +603155|33001318648|2 +833537|33001318649|4 +805251|33001319187|2 +660435|33001319429|2 +532116|33001319611|2 +836588|33001319709|4 +768979|33001319768|2 +851111|33001320313|2 +1046682|33001320524|2 +569024|33001320841|2 +851133|33001320850|2 +853954|33001320854|2 +643755|33001321104|2 +701598|33001321433|2 +713682|33001321435|2 +502110|33001321753|2 +577738|33001322101|2 +571650|33001322246|2 +580561|33001322415|2 +478445|33001322549|2 +673928|33001322550|2 +479693|33001322696|2 +593318|33001323125|2 +774620|33001323166|2 +834102|33001323581|6 +646187|33001323654|2 +781096|33001323988|2 +652652|33001324189|2 +711123|33001324193|2 +651507|33001324468|2 +737107|33001324469|2 +754079|33001324475|2 +1132529|33001324671|2 +584907|33001324742|2 +612433|33001325100|2 +467564|33001325137|2 +613346|33001325247|2 +670029|33001325272|2 +755007|33001325554|2 +528135|33001325760|2 +540470|33001325861|4 +552256|33001325888|2 +634827|33001326030|2 +611541|33001326152|2 +1154336|33001326193|2 +734633|33001326194|2 +776879|33001326401|2 +603484|33001326945|2 +612974|33001326946|2 +714367|33001326947|2 +802352|33001327136|2 +560466|33001327491|2 +514672|33001328113|2 +609114|33001328114|2 +721041|33001328486|2 +508079|33001328902|2 +515704|33001328903|2 +656146|33001328915|2 +496855|33001329064|2 +668963|33001329065|2 +784145|33001329072|2 +878757|33001329075|2 +893661|33001329076|2 +750885|33001329530|2 +581228|33001330292|2 +490573|33001330485|2 +614902|33001330493|2 +573544|33001330557|2 +515982|33001330741|2 +722728|33001330748|2 +747625|33001331426|2 +783037|33001331510|2 +553147|33001331572|2 +552652|33001331575|2 +626022|33001332291|2 +881992|33001332293|2 +736334|33001332499|2 +547939|33001332951|2 +990454|33001332959|2 +763102|33001333078|2 +843731|33001333081|2 +760972|33001333272|2 +762267|33001333345|2 +672973|33001334669|2 +768703|33001334670|2 +781762|33001334671|2 +899232|33001334673|2 +524809|33001334711|2 +503909|33001335387|2 +595365|33001335390|2 +701586|33001335391|2 +867145|33001335392|2 +492823|33001335959|2 +492951|33001335962|2 +681727|33001336265|2 +487596|33001336912|2 +651819|33001336915|2 +703280|33001336916|2 +1253059|33001337189|2 +633633|33001337289|2 +462501|33001338571|2 +497475|33001338572|2 +526372|33001338574|2 +531530|33001338575|2 +536359|33001338576|2 +598921|33001338577|2 +605448|33001338578|2 +642758|33001338581|2 +662940|33001338670|2 +682464|33001338672|2 +693522|33001338674|2 +754078|33001338683|2 +801861|33001338685|2 +701587|33001338686|2 +825622|33001338921|4 +528906|33001339426|2 +528956|33001339427|2 +843655|33001339440|2 +869165|33001339443|2 +780180|33001339554|2 +756061|33001339908|2 +516556|33001340302|2 +530943|33001340307|2 +618917|33001340309|2 +865046|33001340310|2 +497474|33001340313|2 +509520|33001341409|2 +542194|33001341411|2 +625044|33001341424|2 +642750|33001341427|2 +696632|33001341437|2 +455103|33001341447|2 +455097|33001341452|2 +796535|33001341504|2 +861825|33001341596|2 +868652|33001341599|2 +870623|33001341601|2 +557566|33001342190|2 +563107|33001342418|2 +858691|33001342449|2 +678712|33001342636|2 +518378|33001342863|2 +523254|33001342865|2 +471393|33001343462|2 +793387|33001343664|2 +859204|33001343670|2 +669560|33001344197|2 +675724|33001344363|2 +784989|33001344976|2 +991231|33001346448|2 +884744|33001348113|2 +741806|33001348117|2 +710129|33001348154|2 +502317|33001348155|2 +526326|33001348158|2 +888152|33001348159|2 +455098|33001348667|2 +489758|33001348678|2 +503893|33001348679|2 +537711|33001348697|2 +594908|33001348706|2 +602965|33001348709|2 +604527|33001348710|2 +606963|33001348722|2 +525506|33001348758|2 +605289|33001348774|2 +883041|33001348798|2 +889488|33001348802|2 +606958|33001348818|2 +618044|33001348833|2 +666784|33001348836|2 +676400|33001348838|2 +732945|33001348841|2 +747743|33001348846|2 +770114|33001348850|2 +775440|33001348853|2 +1173135|33001349156|2 +729058|33001350913|2 +471824|33001351043|2 +560463|33001351044|2 +747326|33001351048|2 +747300|33001351051|2 +747279|33001351052|2 +470112|33001351271|2 +531705|33001351273|2 +531704|33001351275|2 +626020|33001351307|2 +537610|33001352100|2 +525417|33001354629|2 +567354|33001354632|2 +571573|33001354633|2 +575240|33001354635|2 +618154|33001354637|2 +651820|33001354638|2 +739805|33001354679|2 +741213|33001354681|2 +819816|33001354723|2 +693633|33001354724|2 +851711|33001354725|2 +474561|33001356010|2 +512091|33001356011|2 +565574|33001356012|2 +611542|33001356018|2 +568978|33001356043|2 +605288|33001356046|2 +697530|33001356052|2 +857469|33001356564|2 +509608|33001356579|2 +509609|33001356582|2 +803671|33001356730|2 +524314|33001356756|2 +524486|33001356760|2 +721161|33001357160|2 +611846|33001358403|2 +609732|33001358867|2 +531703|33001359044|2 +498641|33001359235|2 +498819|33001359238|2 +509438|33001359360|2 +675244|33001359368|2 +583044|33001359858|2 +587453|33001360106|2 +561646|33001360846|2 +726135|33001360861|2 +715806|33001361328|2 +537299|33001361561|2 +602614|33001361666|2 +841965|33001361691|2 +459060|33001361713|2 +557449|33001361770|2 +830018|33001361773|4 +832594|33001362150|4 +717373|33001362203|2 +700870|33001362578|2 +855824|33001362763|2 +569563|33001362879|2 +569557|33001362881|2 +850769|33001362895|2 +770507|33001363004|2 +461770|33001363333|2 +581587|33001363343|4 +581712|33001363352|2 +632874|33001363618|2 +609755|33001363686|2 +463798|33001363848|2 +854918|33001363861|2 +453961|33001363908|2 +835127|33001363934|4 +626423|33001364471|2 +790655|33001364887|2 +845738|33001365191|2 +877759|33001365193|2 +732020|33001365196|2 +613886|33001365564|2 +820766|33001365570|2 +732071|33001365668|2 +646239|33001365767|2 +514557|33001365962|2 +746613|33001365964|2 +785543|33001366170|2 +571101|33001366595|2 +635749|33001367041|2 +467104|33001367337|2 +618530|33001367340|2 +604612|33001367727|2 +525925|33001367788|2 +697863|33001370787|2 +457493|33001370846|2 +460947|33001370847|2 +493931|33001370849|2 +532646|33001370853|2 +567554|33001370855|2 +603008|33001370857|2 +618045|33001370864|2 +552412|33001370913|2 +682313|33001371024|2 +701039|33001371026|2 +701358|33001371027|2 +705267|33001371028|2 +707441|33001371029|2 +708681|33001371030|2 +749237|33001371032|2 +767068|33001371034|2 +843827|33001371035|2 +844129|33001371036|2 +858976|33001371037|2 +868207|33001371040|2 +886770|33001371074|2 +452525|33001371099|2 +671426|33001371100|2 +668869|33001371153|2 +520442|33001371196|2 +520425|33001371200|2 +731278|33001371224|2 +576993|33001372014|2 +692749|33001372161|2 +735548|33001372290|2 +559569|33001372491|2 +887283|33001372619|2 +552653|33001373052|2 +1154337|33001373196|2 +703408|33001373796|2 +497476|33001374677|2 +500268|33001374679|2 +508139|33001374699|2 +593051|33001374707|2 +794324|33001374719|2 +799408|33001374721|2 +510809|33001375288|2 +611372|33001375466|2 +795622|33001375467|2 +863514|33001375592|2 +549945|33001376457|2 +556048|33001376534|2 +593067|33001376609|2 +676382|33001376611|2 +676433|33001376614|2 +694104|33001376937|2 +796946|33001377115|2 +693539|33001377248|2 +617044|33001377638|2 +639548|33001377736|2 +780240|33001377772|2 +786046|33001377984|2 +863589|33001377985|2 +878442|33001377986|4 +551938|33001378026|4 +801171|33001378047|2 +459001|33001378150|2 +552828|33001378200|2 +615865|33001378205|2 +636838|33001378367|2 +740363|33001378379|2 +502472|33001378888|2 +470982|33001378892|2 +607200|33001378915|2 +853242|33001378920|2 +530833|33001379012|2 +525923|33001379154|2 +698809|33001379242|2 +724959|33001379412|2 +870231|33001379672|2 +832593|33001380051|4 +456613|33001380186|2 +826891|33001380310|4 +582271|33001380426|2 +498642|33001380523|2 +591119|33001380770|2 +521557|33001381110|2 +584908|33001381223|2 +785535|33001381224|2 +1241405|33001381236|2 +891896|33001381669|2 +481781|33001381975|2 +887197|33001381992|2 +712736|33001382130|2 +868905|33001382158|2 +544511|33001382374|2 +521866|33001382486|2 +542921|33001382498|2 +745144|33001382588|2 +898242|33001382796|2 +785556|33001382951|2 +856476|33001382955|2 +856371|33001382959|2 +750821|33001383408|2 +605023|33001383475|2 +651984|33001383477|2 +539295|33001384032|2 +847648|33001384043|2 +502738|33001384061|2 +471525|33001384392|2 +770791|33001384472|2 +651812|33001384802|2 +618051|33001384935|2 +737104|33001385261|2 +748747|33001385489|2 +876476|33001385494|2 +551939|33001385506|2 +705160|33001385619|2 +929100|33001385622|2 +525952|33001386125|2 +611203|33001386354|2 +889645|33001386355|2 +889725|33001386356|2 +954454|33001386358|2 +650521|33001386549|2 +719046|33001386792|2 +466705|33001386959|2 +538203|33001386960|2 +861148|33001387167|2 +671626|33001387330|2 +790730|33001387332|2 +489793|33001387771|2 +571725|33001387772|2 +957894|33001388125|2 +743738|33001388237|2 +876480|33001388399|2 +565717|33001388592|2 +793012|33001388684|2 +797398|33001388693|2 +787376|33001388737|2 +569119|33001388999|2 +674596|33001389004|2 +1052419|33001389008|2 +490574|33001389139|2 +575497|33001389177|2 +583534|33001389196|2 +859705|33001389459|2 +888551|33001389464|2 +792817|33001389664|2 +871705|33001390028|2 +525191|33001390458|2 +683621|33001390699|2 +645178|33001390711|2 +652226|33001390712|2 +686167|33001390714|2 +677428|33001390981|2 +799115|33001390997|2 +1241134|33001391041|2 +894273|33001391201|2 +894274|33001391203|2 +612739|33001391320|4 +852026|33001391843|2 +676157|33001392111|2 +606324|33001392473|2 +859207|33001392685|2 +889093|33001392722|2 +898660|33001392771|2 +456757|33001392837|2 +779126|33001393129|2 +639375|33001393136|2 +892679|33001393390|2 +467472|33001393422|2 +663597|33001393582|2 +649289|33001393911|2 +649288|33001393913|2 +725663|33001394013|2 +637483|33001394024|2 +892805|33001394044|2 +893178|33001394047|2 +892680|33001394049|2 +649280|33001394191|2 +568447|33001394298|2 +676352|33001394370|2 +684529|33001394416|2 +543194|33001394482|2 +534733|33001394760|2 +650494|33001394775|2 +1084581|33001394776|2 +878750|33001394974|2 +506427|33001396231|2 +789971|33001396339|2 +500085|33001396400|2 +618517|33001396406|2 +628299|33001396415|2 +638545|33001396434|2 +641710|33001396437|2 +696155|33001396442|2 +755939|33001396445|2 +761753|33001396446|2 +787416|33001396452|2 +890673|33001396456|4 +866019|33001396483|2 +865944|33001396485|2 +666302|33001396625|2 +492793|33001397229|2 +520324|33001397261|2 +627032|33001397425|2 +462379|33001397475|2 +508110|33001397485|2 +794498|33001397488|2 +700729|33001397506|2 +527615|33001397575|2 +474878|33001397888|2 +763088|33001397965|2 +801369|33001397969|2 +890844|33001398013|2 +890337|33001398182|2 +685455|33001398406|2 +623860|33001398413|2 +480051|33001399004|2 +490727|33001399006|2 +495348|33001399007|2 +580564|33001399009|2 +552025|33001399011|2 +850130|33001399013|2 +573030|33001399061|2 +456758|33001399141|2 +628554|33001400345|2 +924281|33001400357|2 +607340|33001400381|2 +537475|33001401453|2 +617198|33001401456|2 +1120917|33001401473|2 +510345|33001401839|2 +1128878|33001401845|2 +467746|33001401925|2 +501676|33001401926|2 +501661|33001401927|4 +485601|33001401928|2 +520814|33001401930|2 +542422|33001401932|2 +495349|33001401977|2 +636872|33001402011|2 +723070|33001402023|2 +806637|33001402033|2 +844823|33001402037|2 +858788|33001402038|2 +894086|33001402041|2 +830012|33001402124|4 +609756|33001402454|2 +676362|33001402486|2 +701441|33001402489|2 +1187677|33001402491|2 +633005|33001402782|2 +612409|33001403333|2 +527510|33001403346|2 +615947|33001403348|2 +797589|33001403353|2 +799896|33001403403|2 +504084|33001403474|2 +452792|33001403767|2 +632407|33001403770|2 +473301|33001404616|2 +619118|33001404840|2 +796780|33001404843|2 +858697|33001404845|2 +894066|33001404847|2 +673807|33001404935|2 +673808|33001404936|2 +675062|33001404937|2 +1188538|33001404953|2 +713127|33001405198|2 +825583|33001405199|4 +871564|33001405487|2 +750691|33001405735|2 +579258|33001406497|2 +587144|33001406498|2 +694110|33001406500|2 +887082|33001406707|2 +495651|33001406905|2 +729059|33001406940|2 +959090|33001406942|2 +544557|33001406971|2 +466195|33001406974|2 +677649|33001406976|2 +769384|33001406980|2 +659103|33001406986|2 +633777|33001406999|2 +753021|33001407000|2 +479771|33001407011|2 +510850|33001407014|2 +804244|33001407023|2 +890674|33001407024|4 +719261|33001407378|2 +871602|33001407384|2 +954318|33001407539|2 +805455|33001407607|4 +522459|33001408111|2 +522489|33001408112|2 +571814|33001408193|2 +481817|33001408973|2 +482714|33001409575|2 +532635|33001409577|2 +593966|33001409578|2 +630153|33001409580|2 +787039|33001409701|2 +611230|33001409715|2 +647735|33001410005|2 +647663|33001410006|2 +587430|33001410058|2 +693529|33001410422|2 +637209|33001410864|2 +826218|33001410935|2 +509292|33001410942|2 +467396|33001411032|2 +484988|33001411033|2 +496423|33001411034|2 +517584|33001411041|2 +521575|33001411043|2 +551626|33001411092|2 +557646|33001411093|2 +682460|33001411099|2 +707590|33001411113|2 +709779|33001411114|2 +748888|33001411117|2 +748146|33001411118|2 +750028|33001411119|2 +604411|33001411289|2 +481615|33001411637|2 +630612|33001411640|2 +609210|33001411843|2 +778255|33001411918|2 +862809|33001412269|2 +889415|33001412271|2 +463384|33001412296|2 +467597|33001412555|2 +847812|33001412560|2 +491868|33001412612|2 +551625|33001412661|2 +569212|33001412697|2 +503721|33001412701|2 +673933|33001412706|2 +673936|33001412709|2 +825884|33001412718|4 +524733|33001412985|2 +1079470|33001413039|2 +755961|33001413043|2 +533485|33001413051|2 +844558|33001413068|2 +466704|33001413108|2 +895234|33001413116|2 +552654|33001413260|2 +552175|33001413270|2 +571951|33001413502|2 +897007|33001413619|2 +691199|33001413675|2 +874984|33001413677|2 +620373|33001413734|2 +710873|33001413750|2 +794323|33001413752|2 +835909|33001414326|4 +856427|33001414327|2 +625815|33001414423|2 +836352|33001414426|4 +585916|33001414514|2 +585915|33001414518|2 +517900|33001415209|2 +532246|33001415210|2 +664502|33001415211|2 +673055|33001415212|2 +838626|33001415213|4 +603335|33001415217|2 +670027|33001415222|2 +823515|33001415247|4 +840218|33001415255|4 +624853|33001415479|2 +471685|33001415908|2 +694285|33001416491|2 +792361|33001416498|4 +542988|33001416632|2 +524771|33001416781|2 +569025|33001416784|2 +847983|33001416786|2 +518001|33001416798|2 +569213|33001416831|2 +802535|33001416833|2 +510938|33001416939|2 +896975|33001416994|2 +547074|33001416996|2 +790351|33001416998|2 +873823|33001416999|2 +733612|33001417004|2 +723074|33001417009|2 +700648|33001417022|2 +545676|33001417023|2 +545689|33001417024|2 +545677|33001417025|2 +700861|33001417026|2 +510841|33001417029|2 +563860|33001417041|2 +856145|33001417069|2 +674076|33001417074|2 +506367|33001417076|2 +791299|33001417134|2 +847342|33001417176|2 +701626|33001417191|2 +830787|33001417214|4 +473136|33001417225|2 +878396|33001417234|2 +516215|33001417246|2 +647824|33001417247|2 +693547|33001417248|2 +477068|33001417252|2 +455076|33001417377|2 +652030|33001417552|2 +482561|33001417609|2 +696639|33001417813|4 +505676|33001418782|2 +732265|33001418784|2 +854330|33001418785|2 +757743|33001418831|2 +773485|33001418833|2 +792433|33001418835|2 +471408|33001418980|2 +504947|33001418981|2 +465238|33001419027|2 +894261|33001419063|2 +518193|33001419590|2 +723510|33001419592|2 +737105|33001419594|2 +842690|33001419598|2 +467391|33001420306|2 +899622|33001420623|2 +454273|33001420978|2 +653323|33001421811|2 +833538|33001421813|4 +606269|33001421839|2 +580123|33001422500|2 +494996|33001422744|2 +761737|33001423344|2 +761770|33001423348|2 +477320|33001424153|2 +492862|33001424771|2 +583518|33001424773|2 +778013|33001424786|2 +867798|33001424787|2 +595564|33001424846|2 +676253|33001424847|2 +721456|33001424848|2 +488700|33001426122|2 +529304|33001426132|2 +529287|33001426134|2 +607499|33001426157|2 +656160|33001426160|2 +677743|33001426163|2 +689689|33001426165|4 +742046|33001426167|2 +756267|33001426171|2 +756611|33001426172|2 +765293|33001426175|2 +770508|33001426179|2 +777997|33001426181|2 +802281|33001426201|2 +806880|33001426203|2 +552941|33001426362|2 +880500|33001427019|2 +890871|33001427087|4 +852014|33001427107|2 +1037821|33001427113|2 +467280|33001429393|2 +498248|33001429395|2 +490135|33001430286|2 +549439|33001430289|2 +549440|33001430291|2 +793392|33001430294|2 +457678|33001430442|2 +457679|33001430448|2 +467738|33001430460|2 +502988|33001430516|2 +507862|33001430536|2 +507703|33001430541|2 +525380|33001430564|2 +532684|33001430569|2 +535624|33001430574|2 +542153|33001430645|2 +544602|33001430648|2 +566593|33001430652|2 +569214|33001430655|2 +577742|33001430659|2 +577744|33001430665|2 +581850|33001430671|2 +585646|33001430679|2 +592780|33001430685|2 +593209|33001430691|2 +600911|33001430694|2 +686121|33001430723|2 +686124|33001430726|2 +708512|33001430729|2 +721040|33001430730|2 +748959|33001430753|2 +778186|33001430869|2 +841612|33001430881|2 +892614|33001430923|2 +924282|33001430943|2 +535288|33001431162|2 +652296|33001431206|2 +502630|33001431211|2 +583511|33001431219|2 +609115|33001431299|2 +609389|33001431301|2 +681665|33001431303|2 +842612|33001431305|2 +472886|33001431401|4 +549513|33001431410|2 +565362|33001431411|2 +571618|33001431412|2 +573823|33001431413|2 +580732|33001431414|2 +581539|33001431415|2 +635071|33001431416|2 +640564|33001431417|2 +666774|33001431419|2 +670725|33001431451|2 +745653|33001431453|2 +863951|33001431454|2 +865093|33001431455|2 +1262733|33001431473|2 +531992|33001431494|2 +479931|33001434439|2 +489232|33001434444|2 +650470|33001434486|2 +650473|33001434575|2 +528468|33001434932|2 +664945|33001434981|2 +667700|33001434986|2 +676441|33001435000|2 +688896|33001435051|2 +701275|33001435066|2 +704961|33001435073|2 +719945|33001435083|2 +787097|33001435180|2 +864960|33001435219|2 +1134176|33001435359|2 +774768|33001436002|2 +488381|33001436169|2 +722921|33001436847|2 +706654|33001436868|2 +739159|33001436940|2 +683189|33001437108|2 +769828|33001437122|2 +465953|33001437677|2 +533199|33001437685|2 +892828|33001437688|2 +698411|33001437691|2 +677872|33001438321|2 +706708|33001438327|2 +525192|33001438537|2 +551627|33001439363|2 +553142|33001439368|2 +591756|33001439467|2 +865351|33001439735|2 +615930|33001439832|2 +591169|33001440029|2 +730443|33001440030|2 +884302|33001440223|2 +1234400|33001440225|2 +451421|33001440313|2 +565802|33001440511|2 +582510|33001440635|2 +763542|33001440702|2 +581116|33001440806|2 +856375|33001440812|2 +530355|33001441260|2 +614591|33001441265|2 +780782|33001441365|2 +889413|33001441622|2 +615931|33001441696|2 +698676|33001441889|2 +693530|33001442055|2 +502316|33001442192|2 +704957|33001442195|2 +492824|33001442616|2 +478406|33001442647|2 +652001|33001442778|2 +652002|33001442779|2 +544489|33001442958|2 +770878|33001442959|2 +869143|33001442960|2 +607462|33001443005|2 +750031|33001443061|2 +847587|33001443062|2 +847254|33001443064|2 +536156|33001443219|2 +627189|33001443319|2 +470383|33001443797|2 +954319|33001444039|2 +583448|33001444264|2 +544921|33001444365|2 +720771|33001444367|2 +523511|33001444674|2 +569114|33001444676|2 +852329|33001444681|2 +701516|33001444863|2 +889726|33001444953|2 +477581|33001445124|2 +508813|33001447342|2 +511952|33001447511|2 +463385|33001447620|2 +479876|33001447621|2 +571651|33001447623|2 +582209|33001447624|2 +591511|33001447626|2 +601349|33001447627|2 +636870|33001447725|2 +673837|33001447729|2 +693618|33001447730|2 +697580|33001447732|2 +723967|33001447737|2 +1131787|33001447763|2 +646145|33001447779|2 +853014|33001447792|2 +864621|33001447793|2 +750035|33001447807|2 +1008253|33001447842|2 +853400|33001448486|2 +506887|33001448555|2 +506979|33001448557|2 +802536|33001448907|2 +572896|33001449122|2 +536966|33001449336|2 +617367|33001449338|2 +650736|33001449340|2 +677906|33001449487|2 +674187|33001449583|2 +848003|33001449588|2 +527391|33001449863|2 +730362|33001449899|2 +516554|33001449948|2 +701277|33001450211|2 +725791|33001450315|2 +626228|33001450321|4 +596815|33001450442|2 +763561|33001450443|2 +509433|33001450670|2 +689694|33001450671|4 +554753|33001450717|2 +856938|33001450772|2 +901470|33001450874|2 +703486|33001450938|2 +707749|33001451344|2 +559898|33001451393|2 +678350|33001451505|2 +898633|33001451632|2 +898664|33001451633|2 +535931|33001451816|2 +473946|33001452085|2 +792978|33001452135|2 +718797|33001452336|2 +671276|33001452395|2 +774346|33001452606|2 +809371|33001452623|2 +840219|33001452632|4 +573578|33001452645|2 +568401|33001453015|2 +879544|33001453020|2 +773245|33001453421|2 +684471|33001453851|2 +684468|33001453856|2 +802142|33001453861|2 +803747|33001453863|2 +465360|33001453929|2 +510939|33001454040|2 +597057|33001454041|2 +529946|33001454122|2 +605286|33001454336|2 +650515|33001454764|2 +508812|33001455079|2 +972531|33001455093|2 +581483|33001455346|2 +1256896|33001455451|2 +678176|33001455561|2 +880651|33001455564|2 +467397|33001455935|2 +498284|33001456396|2 +894036|33001456400|2 +617061|33001456452|2 +700172|33001456560|2 +676964|33001456752|2 +585651|33001456954|2 +674597|33001456961|2 +730038|33001456967|2 +703385|33001457050|2 +688671|33001457107|2 +616858|33001457148|2 +629563|33001457150|2 +884263|33001457281|2 +684007|33001457368|2 +492702|33001457537|2 +725661|33001457557|2 +509355|33001457850|2 +519922|33001457866|2 +612741|33001457876|4 +621815|33001457881|2 +665929|33001457994|2 +457451|33001458722|2 +764144|33001458724|2 +533661|33001458726|2 +754320|33001458943|2 +530032|33001459028|2 +693180|33001459201|2 +741793|33001459202|2 +557933|33001459465|2 +619571|33001459466|2 +557957|33001459640|2 +711890|33001459641|4 +727443|33001459644|2 +899096|33001459645|2 +772359|33001459653|2 +566240|33001459897|2 +737950|33001459916|2 +651931|33001460140|2 +497270|33001460197|2 +652646|33001460200|2 +496860|33001461994|2 +499661|33001461995|2 +627679|33001461998|2 +629984|33001462083|2 +629985|33001462084|2 +669032|33001462085|2 +669059|33001462086|2 +700730|33001462087|2 +704667|33001462088|2 +776948|33001462133|2 +792774|33001462135|2 +899094|33001462137|2 +685511|33001462142|2 +591122|33001462280|2 +456685|33001462773|2 +483765|33001462776|2 +522483|33001462782|2 +524321|33001462785|2 +646188|33001462796|2 +783033|33001462799|2 +854649|33001462803|2 +623216|33001463145|2 +582873|33001463317|2 +680079|33001463318|2 +754979|33001463333|2 +858686|33001463378|2 +859864|33001463442|2 +583509|33001463790|2 +750880|33001463948|2 +894973|33001463949|2 +489986|33001463958|2 +737099|33001463959|2 +737114|33001463960|2 +525190|33001464214|2 +571191|33001464216|2 +589694|33001464218|2 +845988|33001464225|2 +532122|33001464312|2 +825885|33001464590|4 +855291|33001464667|2 +514196|33001464721|2 +677824|33001464925|2 +1164687|33001464930|2 +728418|33001465276|2 +888732|33001465277|2 +532320|33001465412|2 +557976|33001465431|2 +585149|33001465439|2 +887619|33001465666|2 +481614|33001466126|2 +552413|33001466187|2 +745498|33001466304|2 +489753|33001466368|2 +640320|33001466560|2 +731953|33001466561|2 +889805|33001466564|2 +708073|33001466575|2 +547455|33001466651|2 +837494|33001466656|6 +500611|33001466820|2 +573579|33001466821|2 +732399|33001466828|2 +468609|33001467018|2 +712485|33001467019|2 +501840|33001467204|2 +601157|33001467205|2 +580232|33001467217|2 +509029|33001467500|2 +472561|33001467569|2 +507430|33001467570|2 +498206|33001467772|2 +744617|33001467773|2 +796947|33001467883|2 +670717|33001467947|2 +693619|33001468033|2 +720054|33001468088|2 +878300|33001468314|2 +712779|33001468430|2 +614680|33001468549|2 +669266|33001468552|2 +647184|33001468853|2 +660298|33001468861|2 +720382|33001468862|2 +853504|33001468991|2 +521558|33001469081|2 +636808|33001469082|2 +737493|33001469178|2 +561096|33001469280|2 +623212|33001469305|2 +696722|33001469433|2 +555946|33001469507|2 +576580|33001470038|2 +800758|33001470143|2 +596816|33001470764|2 +779286|33001471037|2 +546717|33001471234|2 +771241|33001471342|2 +693523|33001471485|2 +693677|33001471487|2 +895054|33001471885|2 +496708|33001471979|2 +549026|33001471981|2 +526132|33001472060|2 +600625|33001472065|2 +890845|33001472076|2 +646732|33001472402|2 +854660|33001472406|2 +825867|33001472525|4 +599807|33001472668|2 +600637|33001472978|2 +472717|33001472979|2 +843845|33001472980|2 +560947|33001473101|2 +615866|33001473104|2 +490032|33001473282|2 +696694|33001473284|2 +636843|33001473405|2 +720443|33001473415|2 +1076750|33001473423|2 +587457|33001473620|2 +567721|33001473836|2 +734113|33001473974|2 +758630|33001474167|2 +570696|33001474265|2 +616288|33001474522|2 +765866|33001475169|2 +769494|33001475192|2 +614007|33001475445|2 +632800|33001475760|4 +653545|33001475889|2 +757692|33001475997|2 +878125|33001476403|2 +872412|33001476591|2 +560951|33001476722|2 +552443|33001476810|2 +455099|33001476880|2 +471212|33001476881|2 +1111671|33001476893|2 +611667|33001477004|2 +750822|33001477005|2 +798707|33001477006|2 +835839|33001477007|4 +795432|33001477037|2 +495498|33001477064|2 +606103|33001477085|2 +895800|33001477324|2 +471323|33001478389|2 +470830|33001478390|2 +525807|33001478392|2 +535800|33001478393|2 +607423|33001478395|2 +568073|33001478396|2 +605024|33001478397|2 +611543|33001478398|2 +609651|33001478399|2 +648162|33001478400|2 +724550|33001478401|2 +841178|33001478402|2 +739170|33001478403|2 +880994|33001478410|2 +546560|33001480619|2 +529766|33001480764|2 +869166|33001480943|2 +471793|33001481035|2 +490619|33001481189|2 +501472|33001481192|2 +527104|33001481195|2 +597305|33001481204|2 +777244|33001481278|2 +777690|33001481285|2 +852913|33001481301|2 +870433|33001481306|2 +899577|33001481314|4 +1131788|33001481385|2 +484997|33001481939|2 +533640|33001481969|2 +544512|33001482179|2 +553185|33001482245|2 +610280|33001482257|2 +612427|33001482258|2 +616655|33001482260|2 +617995|33001482262|2 +732826|33001482364|2 +804174|33001482367|2 +877809|33001482388|2 +489997|33001482830|2 +557694|33001482834|4 +557695|33001482837|4 +591996|33001482904|2 +495436|33001483111|2 +462160|33001483708|2 +504057|33001483711|4 +542312|33001484007|2 +456622|33001484043|2 +489143|33001484050|2 +701062|33001484087|2 +709029|33001484105|2 +511829|33001484119|2 +557462|33001484519|2 +606319|33001484520|2 +674218|33001484524|2 +673017|33001484627|2 +900194|33001484633|2 +847255|33001484985|2 +570504|33001484997|2 +462159|33001485878|2 +500640|33001485880|2 +583519|33001485892|2 +665944|33001485914|2 +672241|33001485918|4 +690122|33001485925|2 +700740|33001485932|2 +786777|33001485953|2 +894778|33001485982|2 +720113|33001487089|2 +726282|33001487123|2 +525309|33001488491|2 +532133|33001488503|2 +532575|33001488507|2 +556062|33001488513|2 +593074|33001488559|2 +605462|33001488570|2 +605463|33001488574|2 +662027|33001488647|2 +662026|33001488649|2 +682717|33001488692|2 +701059|33001488705|2 +712863|33001488720|2 +771830|33001488729|2 +533108|33001489500|2 +553331|33001489505|2 +587921|33001489514|2 +672146|33001489528|2 +676249|33001489530|2 +857908|33001489566|2 +873468|33001489601|2 +888673|33001489605|2 +887056|33001489607|2 +1020280|33001489960|2 +1154330|33001489983|2 +702689|33001490352|2 +673841|33001490525|4 +720285|33001490527|2 +798720|33001490530|2 +805138|33001490533|2 +703424|33001490858|2 +792932|33001490860|2 +756544|33001491083|2 +458560|33001491612|2 +521333|33001491633|2 +563110|33001491641|2 +649278|33001491650|2 +652228|33001491652|2 +600580|33001491655|2 +705111|33001491663|2 +709248|33001491673|2 +802466|33001491684|2 +809042|33001491730|2 +859926|33001491735|2 +954305|33001491886|2 +873489|33001491993|2 +567793|33001492286|2 +496216|33001492564|2 +527294|33001492566|2 +535801|33001492568|2 +579848|33001492569|2 +669034|33001492573|2 +496238|33001492590|2 +670742|33001493236|2 +456746|33001493237|2 +844552|33001493244|2 +654677|33001493360|2 +607217|33001493434|2 +809040|33001493435|2 +809041|33001493436|2 +673227|33001493607|2 +552414|33001493680|2 +794463|33001493685|2 +456759|33001493834|2 +611526|33001493995|2 +554399|33001494098|2 +866385|33001494863|2 +866386|33001494906|2 +733048|33001495259|2 +693526|33001495362|2 +530657|33001495575|2 +785552|33001495591|2 +844747|33001495753|2 +530639|33001495856|2 +719792|33001495859|2 +719878|33001495860|2 +733127|33001495864|2 +605015|33001496053|2 +609809|33001496109|2 +651932|33001496214|2 +523098|33001496413|2 +864564|33001496493|2 +1012522|33001496501|2 +493171|33001496566|2 +493172|33001496567|2 +497191|33001496786|2 +594773|33001496798|2 +612003|33001496904|2 +695170|33001496905|2 +825698|33001497161|4 +887672|33001497166|2 +460477|33001497225|2 +460449|33001497226|2 +834425|33001497255|4 +754232|33001497457|2 +726292|33001497460|2 +744357|33001497463|2 +658325|33001497473|2 +754365|33001497479|2 +862281|33001497483|2 +627173|33001498178|2 +593039|33001498259|2 +480009|33001498344|2 +686047|33001498355|2 +706801|33001498415|2 +761738|33001498420|2 +735360|33001498812|2 +859284|33001498828|2 +589696|33001498928|2 +579268|33001499010|2 +873348|33001499012|2 +880497|33001499121|2 +880501|33001499122|2 +529906|33001499268|2 +557595|33001499324|2 +619380|33001499328|2 +862989|33001499331|2 +862990|33001499334|2 +463610|33001499405|2 +519928|33001499408|2 +460456|33001501227|2 +477428|33001501230|2 +488452|33001501299|2 +505025|33001501302|2 +565581|33001501364|2 +604757|33001501369|2 +605654|33001501372|2 +700409|33001501392|2 +724438|33001501396|2 +724610|33001501397|2 +725728|33001501398|2 +735705|33001501399|2 +785852|33001501440|2 +785851|33001501441|2 +791308|33001501442|2 +577037|33001501801|4 +806628|33001501807|2 +710883|33001501809|2 +871565|33001502413|2 +873451|33001502415|2 +829918|33001502719|4 +756619|33001502725|2 +718742|33001502860|2 +803050|33001502870|2 +859292|33001502874|2 +1047183|33001503173|2 +889094|33001503216|2 +622536|33001503319|2 +682456|33001503321|2 +712280|33001503322|2 +451366|33001503325|2 +534806|33001503358|2 +884567|33001503614|2 +805146|33001503624|2 +467689|33001504780|2 +844344|33001504785|2 +565782|33001504859|2 +604210|33001504948|2 +610891|33001504952|2 +663711|33001504960|2 +675453|33001504963|2 +713675|33001504968|2 +733124|33001504970|2 +754278|33001504971|2 +572524|33001505029|2 +957890|33001506606|2 +513017|33001506613|2 +597608|33001506619|2 +603009|33001506621|2 +611668|33001506624|2 +636807|33001506647|2 +673929|33001506651|2 +681816|33001506652|2 +681817|33001506653|2 +683202|33001506654|2 +720773|33001506670|2 +757883|33001506672|2 +854914|33001506735|2 +693897|33001506766|2 +755005|33001507012|2 +619381|33001507028|2 +668004|33001507033|2 +563108|33001507121|2 +494293|33001507445|2 +529968|33001507446|2 +839086|33001507457|4 +700649|33001507517|2 +631541|33001507580|2 +530658|33001507634|2 +990455|33001508049|2 +779223|33001508061|2 +753217|33001508107|2 +681838|33001508350|2 +479464|33001508440|2 +588442|33001508700|2 +742093|33001508807|2 +796712|33001508808|2 +575498|33001508902|2 +867201|33001508966|2 +743087|33001509044|2 +574367|33001509301|2 +469392|33001509305|2 +539029|33001509311|2 +899704|33001509313|2 +667693|33001509405|2 +711883|33001509406|2 +455950|33001510016|2 +693630|33001510034|2 +881984|33001510115|2 +725591|33001510173|2 +494500|33001510246|2 +957891|33001510249|2 +646139|33001510423|2 +840241|33001510425|4 +840233|33001510426|4 +572756|33001510584|2 +796779|33001511021|2 +775288|33001511072|2 +552258|33001511258|2 +529767|33001511261|2 +552026|33001511262|2 +563710|33001511264|2 +563711|33001511266|2 +696214|33001511272|2 +539113|33001511650|2 +604482|33001511699|2 +701040|33001511701|2 +517683|33001511725|2 +652023|33001511740|2 +479870|33001512022|2 +564929|33001512105|2 +495451|33001512298|2 +696631|33001512299|2 +723962|33001512300|2 +761790|33001512305|2 +772362|33001512308|2 +499282|33001512323|2 +737898|33001512357|2 +480037|33001512617|2 +538874|33001513197|2 +552257|33001513200|2 +740064|33001513201|2 +650040|33001513225|2 +725660|33001513268|2 +462826|33001513355|2 +662944|33001513356|2 +674217|33001513562|2 +770990|33001513578|2 +456479|33001513688|2 +837574|33001513690|4 +494352|33001513789|2 +579267|33001513790|2 +463884|33001513975|2 +587454|33001513979|2 +604436|33001513981|2 +744174|33001513982|2 +766818|33001513984|2 +587445|33001514088|2 +774999|33001514192|2 +696959|33001514278|2 +635641|33001514411|4 +732775|33001514412|2 +853493|33001514869|2 +769784|33001515199|2 +693818|33001515489|2 +791295|33001515501|2 +505261|33001515517|2 +680069|33001515519|2 +879762|33001515577|2 +736997|33001515812|2 +508755|33001516019|2 +674245|33001516481|2 +745325|33001516538|2 +644067|33001516835|2 +644065|33001516837|2 +602663|33001516860|2 +888674|33001516867|2 +1079465|33001516996|2 +569765|33001516998|2 +508961|33001517289|2 +674008|33001517486|2 +466967|33001517490|2 +517786|33001517492|2 +798713|33001517506|2 +1154338|33001517508|2 +464041|33001517519|2 +649166|33001517520|2 +716363|33001517531|4 +533179|33001517657|2 +505007|33001517658|2 +741567|33001517678|2 +479807|33001517681|2 +858696|33001517698|2 +979431|33001517781|2 +556063|33001517795|2 +525469|33001517797|2 +608184|33001517834|2 +677825|33001517840|2 +800326|33001517992|2 +676843|33001518040|2 +565821|33001518107|2 +592479|33001518193|2 +535153|33001518289|2 +896680|33001518455|2 +556056|33001519073|2 +675451|33001519360|2 +843674|33001519361|2 +501577|33001519364|2 +612274|33001519655|2 +775120|33001519657|2 +786403|33001519658|2 +786412|33001519660|2 +700841|33001519905|4 +633337|33001520112|2 +594643|33001520132|2 +612508|33001520133|2 +757385|33001520134|2 +587446|33001520136|2 +862412|33001520164|2 +551056|33001520557|2 +829775|33001520559|4 +849939|33001520560|2 +876473|33001520561|2 +1165200|33001520564|2 +584905|33001520639|2 +669077|33001520640|2 +871831|33001520641|2 +528535|33001520717|2 +482645|33001521014|2 +688157|33001521016|2 +858650|33001521017|2 +686418|33001521027|2 +895148|33001521063|2 +454238|33001521357|2 +458986|33001521465|2 +677242|33001521497|2 +954456|33001521792|2 +610888|33001521891|2 +725792|33001521958|2 +880871|33001522089|2 +758625|33001522264|2 +571921|33001522340|2 +502312|33001522494|2 +530470|33001522720|2 +688226|33001522725|4 +469673|33001522910|2 +902409|33001522913|2 +702471|33001522975|2 +615446|33001523438|2 +620564|33001523442|2 +756293|33001523446|2 +741715|33001523478|2 +495350|33001523952|2 +597867|33001524022|2 +875810|33001524025|2 +484295|33001524091|2 +537297|33001524092|2 +613418|33001524206|2 +745340|33001524207|2 +868343|33001524377|2 +537629|33001524392|2 +593171|33001524498|2 +844811|33001524548|2 +690085|33001524669|2 +755008|33001524808|2 +660116|33001525025|2 +718164|33001525026|2 +827996|33001525105|4 +776855|33001525106|2 +840212|33001525553|4 +501213|33001526751|2 +479640|33001526758|2 +609817|33001526759|2 +572973|33001526931|2 +469386|33001526971|2 +479737|33001527151|2 +533598|33001527213|2 +954686|33001527298|2 +891226|33001527673|2 +599224|33001527717|2 +785129|33001527718|2 +528857|33001527755|2 +646240|33001527793|2 +486222|33001527817|2 +654609|33001527818|2 +859282|33001527833|2 +473323|33001527848|2 +632595|33001527934|2 +510802|33001527943|2 +646641|33001527944|2 +619107|33001527961|2 +527305|33001527972|2 +498334|33001528577|2 +750047|33001528611|2 +722933|33001528627|2 +763663|33001528628|2 +611495|33001528668|2 +620401|33001528677|2 +714951|33001528678|2 +467749|33001528681|2 +780553|33001528753|2 +545974|33001528797|2 +714628|33001530155|2 +623510|33001530358|2 +854127|33001530361|2 +632876|33001530367|2 +701278|33001530368|2 +646231|33001530373|2 +604918|33001530390|2 +672403|33001530655|2 +726483|33001530658|2 +766036|33001530659|2 +836897|33001530666|4 +790734|33001530750|2 +807422|33001530761|2 +564850|33001530764|2 +873353|33001530854|2 +784155|33001530865|2 +780048|33001530897|2 +669265|33001530908|2 +730440|33001530909|2 +715885|33001530913|2 +651999|33001530915|2 +743171|33001530929|2 +881965|33001530930|2 +479695|33001530931|2 +577052|33001530933|2 +889095|33001531117|2 +613489|33001531306|2 +873817|33001531320|2 +559557|33001531350|2 +501131|33001531573|2 +853371|33001531661|2 +531882|33001531662|2 +703010|33001531788|2 +890547|33001531789|2 +625029|33001532008|2 +697420|33001532011|2 +842668|33001532105|2 +494499|33001532385|2 +548353|33001532387|2 +678568|33001532416|2 +889812|33001532560|2 +877799|33001532570|2 +514491|33001532694|2 +525651|33001532762|2 +625664|33001532763|2 +896561|33001533436|2 +793787|33001533657|2 +454236|33001533667|2 +969281|33001533686|2 +722628|33001533687|2 +526481|33001533688|2 +780133|33001533694|2 +533610|33001533695|2 +503645|33001534030|2 +852164|33001534817|2 +594126|33001534842|2 +601462|33001534880|2 +844132|33001534900|2 +775364|33001534904|2 +682300|33001535301|2 +895805|33001535403|2 +895802|33001535410|2 +557616|33001535781|2 +614852|33001535797|2 +479913|33001535863|2 +836606|33001535867|6 +673762|33001536224|2 +605287|33001536333|2 +845747|33001536341|2 +895065|33001536379|2 +530646|33001536392|2 +612141|33001536395|2 +799791|33001536512|2 +835684|33001536679|8 +582133|33001537938|2 +460457|33001538543|2 +680231|33001538555|2 +731556|33001538566|2 +701060|33001538579|2 +687968|33001538701|2 +552415|33001538717|2 +608229|33001538757|2 +608230|33001538774|2 +748960|33001538793|2 +491834|33001538849|2 +471308|33001539145|2 +632521|33001539312|2 +856000|33001539361|2 +652655|33001539424|2 +713128|33001539456|2 +737552|33001539487|2 +765871|33001539526|2 +867817|33001539541|2 +568319|33001539577|2 +691542|33001539588|2 +700513|33001539597|2 +479641|33001539647|2 +563109|33001539669|2 +569017|33001539740|2 +715762|33001539768|2 +880018|33001539851|2 +676350|33001539912|2 +900342|33001539967|2 +608213|33001540028|2 +873332|33001540768|2 +785527|33001540769|2 +747375|33001540777|2 +724858|33001540780|2 +471526|33001540792|2 +799319|33001540794|2 +595305|33001540795|2 +764764|33001540796|2 +842670|33001540800|2 +887057|33001540803|2 +725729|33001540806|2 +891159|33001540812|2 +501521|33001540815|2 +676597|33001540816|2 +663573|33001540819|2 +676378|33001540883|2 +884765|33001541118|2 +583345|33001541311|2 +609116|33001541312|2 +542695|33001541360|2 +590584|33001541363|2 +707750|33001541366|2 +572283|33001541367|2 +891847|33001541371|2 +685894|33001541373|2 +557621|33001541377|2 +574805|33001541378|2 +769818|33001541379|2 +853401|33001541380|2 +877719|33001541381|2 +568323|33001541384|2 +544543|33001541388|2 +532577|33001541389|2 +587916|33001541394|2 +525361|33001541397|2 +546533|33001541399|2 +898865|33001541403|2 +766079|33001541405|2 +693634|33001541408|2 +573385|33001541409|2 +608687|33001541412|2 +693635|33001541414|2 +583346|33001541419|2 +552655|33001541422|2 +870673|33001541727|2 +870806|33001541738|2 +589616|33001541961|2 +558025|33001541985|2 +678381|33001542041|2 +869746|33001542734|2 +606375|33001543095|2 +456614|33001543710|2 +851888|33001543749|2 +503249|33001543759|2 +627190|33001543764|2 +456747|33001544357|2 +709668|33001544429|2 +496635|33001544440|2 +748748|33001545336|2 +611818|33001547063|2 +544882|33001547145|2 +873304|33001547259|2 +834103|33001547266|6 +553139|33001547280|4 +666820|33001547281|2 +577042|33001547729|2 +557701|33001547734|2 +532566|33001548101|2 +553140|33001548127|4 +553141|33001548130|2 +494135|33001548185|2 +609390|33001548364|2 +673984|33001548365|2 +479723|33001548367|2 +656539|33001548381|2 +656541|33001548382|4 +778736|33001548384|2 +612496|33001548480|2 +830873|33001548482|4 +510674|33001548510|2 +585086|33001548519|2 +607431|33001548523|2 +620437|33001548526|2 +666548|33001548543|2 +866502|33001548544|2 +614355|33001548549|2 +465237|33001548550|2 +463445|33001548558|4 +766839|33001548823|2 +585913|33001548861|2 +635086|33001550580|2 +489897|33001550591|2 +454615|33001550614|2 +854378|33001550620|2 +701061|33001550636|2 +767778|33001550653|2 +632934|33001550659|2 +603423|33001550661|2 +696919|33001550668|2 +765626|33001550677|2 +611819|33001550693|2 +890012|33001551502|2 +526099|33001551507|2 +481792|33001551525|2 +954304|33001551527|2 +893433|33001551535|2 +629059|33001551538|2 +535289|33001551542|2 +773219|33001551547|2 +734112|33001551562|2 +886168|33001551566|2 +609117|33001551576|2 +532531|33001551585|2 +676158|33001551650|2 +698409|33001551666|2 +844707|33001551668|2 +666821|33001551674|2 +467750|33001551676|2 +840211|33001551681|4 +758722|33001551682|2 +868110|33001551683|2 +662695|33001551689|2 +569028|33001551695|2 +836173|33001551696|4 +836190|33001551697|4 +482413|33001551698|2 +611666|33001552136|2 +479866|33001552147|2 +873416|33001552149|2 +791876|33001552152|2 +746617|33001552155|2 +652647|33001552158|2 +719966|33001552164|2 +707491|33001552215|2 +780199|33001552329|2 +845432|33001552330|2 +609347|33001552343|2 +461714|33001552364|2 +514682|33001552392|2 +607480|33001552396|2 +607481|33001552397|2 +701272|33001552403|2 +602845|33001552472|2 +674033|33001552484|2 +695442|33001552488|2 +701590|33001552640|2 +836350|33001552647|4 +1020281|33001552648|2 +515843|33001552754|2 +534157|33001552878|4 +564851|33001552880|2 +501578|33001552906|2 +769476|33001552914|2 +750847|33001552916|2 +828142|33001552943|4 +716681|33001552965|2 +466356|33001552972|2 +837179|33001553072|4 +758652|33001553108|2 +868597|33001553132|2 +473728|33001553177|2 +536987|33001553178|2 +536998|33001553180|2 +652273|33001553214|2 +551070|33001553261|2 +485176|33001553562|2 +641644|33001553594|2 +732407|33001553595|2 +613094|33001553598|2 +867809|33001553627|2 +593027|33001553629|2 +1211815|33001553636|2 +576303|33001553714|2 +482487|33001553717|2 +778928|33001553966|2 +685606|33001556105|2 +890605|33001556111|2 +503555|33001556656|2 +620577|33001556662|2 +864031|33001556665|2 +899093|33001557137|2 +899097|33001557138|2 +1164688|33001557255|2 +536994|33001557429|2 +832449|33001557431|4 +651676|33001557967|2 +651638|33001557968|2 +735036|33001557976|2 +735038|33001557977|2 +1162915|33001558095|2 +677670|33001559068|2 +479867|33001559088|2 +782752|33001559098|2 +782582|33001559100|2 +796952|33001559101|2 +600879|33001559505|2 +609213|33001559535|2 +615847|33001559536|2 +590561|33001559751|2 +841356|33001559753|2 +518197|33001559770|2 +576405|33001559775|2 +506411|33001560302|2 +615965|33001560672|2 +954457|33001561277|2 +642121|33001561278|2 +702897|33001561310|2 +572822|33001561311|2 +553662|33001561668|2 +889650|33001561671|2 +716916|33001561882|2 +650495|33001561886|2 +571820|33001561896|2 +677373|33001561897|2 +890009|33001561904|2 +645656|33001561916|2 +653566|33001561917|2 +590031|33001562016|2 +762428|33001562398|2 +762441|33001562408|2 +524319|33001562410|2 +524386|33001562413|2 +524320|33001562416|2 +723181|33001562546|2 +479772|33001562562|2 +889490|33001562570|2 +688246|33001562576|2 +549778|33001562581|2 +801728|33001562623|2 +619848|33001562659|2 +889651|33001562663|2 +513476|33001562686|2 +609133|33001562687|2 +500275|33001562698|2 +600344|33001562700|2 +741634|33001562715|2 +790818|33001562717|2 +537950|33001562725|2 +706267|33001562726|2 +806646|33001562729|2 +609746|33001562737|2 +609745|33001562740|2 +693527|33001562745|2 +524254|33001562772|2 +755378|33001563404|2 +552180|33001563462|2 +693271|33001563527|2 +828347|33001563528|4 +633254|33001563546|2 +473220|33001563615|2 +844504|33001563617|2 +886537|33001563618|2 +676030|33001563951|2 +791465|33001563954|2 +497173|33001564082|2 +677243|33001564085|2 +537377|33001564136|2 +646735|33001564137|2 +688706|33001564292|2 +848625|33001564391|2 +848210|33001564392|2 +674477|33001564783|2 +674433|33001564784|2 +551076|33001565237|2 +843690|33001565446|2 +488833|33001565594|2 +580736|33001565595|2 +860610|33001565596|2 +506665|33001565650|2 +611842|33001565652|2 +838274|33001565763|4 +882493|33001565764|2 +882558|33001565940|2 +650007|33001565945|2 +682241|33001565947|2 +660233|33001566002|2 +660317|33001566004|2 +720067|33001566108|2 +757917|33001566287|2 +683027|33001566730|2 +580486|33001566878|2 +678460|33001566980|2 +899690|33001566983|2 +647182|33001567067|2 +593379|33001567129|2 +803709|33001567265|2 +839544|33001567266|4 +864546|33001567273|2 +683229|33001567401|2 +730039|33001567405|2 +612716|33001567547|2 +722677|33001567752|2 +790146|33001567756|2 +883050|33001567766|2 +524468|33001567767|2 +593069|33001567862|2 +517903|33001567908|2 +631596|33001567909|2 +742709|33001567910|2 +615894|33001568218|2 +894782|33001568220|2 +662635|33001568222|2 +582350|33001568252|2 +462977|33001568494|2 +571913|33001568616|2 +519818|33001568680|2 +764297|33001568993|2 +581771|33001571186|2 +741254|33001571202|2 +456621|33001571203|2 +890063|33001571216|2 +672877|33001571258|2 +529352|33001571263|2 +640555|33001571265|2 +750692|33001571266|2 +609657|33001571292|2 +511976|33001571314|2 +886227|33001571317|2 +556061|33001571444|2 +784168|33001571445|2 +590039|33001571460|2 +758997|33001571464|2 +759220|33001571468|2 +857768|33001571470|2 +766824|33001571472|2 +808807|33001571654|2 +808790|33001571655|2 +856001|33001571656|2 +612426|33001571659|2 +531723|33001571662|2 +531728|33001571664|2 +608265|33001571666|2 +612497|33001571751|2 +680077|33001571945|2 +568537|33001572016|2 +782235|33001572028|2 +866020|33001572080|2 +698410|33001572417|2 +754783|33001572432|2 +530792|33001572679|2 +530791|33001572681|2 +554373|33001572684|2 +576560|33001572685|2 +478824|33001572690|2 +478954|33001572691|2 +862009|33001572696|2 +491587|33001573646|2 +457871|33001574078|2 +524842|33001574079|2 +524846|33001574080|2 +772497|33001574302|2 +772504|33001574303|2 +844748|33001574883|2 +524845|33001574887|2 +557653|33001575003|2 +523533|33001575092|2 +737121|33001575247|2 +760686|33001575257|4 +1215189|33001575765|2 +635800|33001575767|2 +611843|33001575776|2 +711132|33001575789|2 +888715|33001575929|2 +740904|33001576030|2 +654575|33001576239|2 +620599|33001576484|2 +543708|33001576616|2 +576964|33001576743|2 +501522|33001577152|2 +635750|33001577390|2 +451368|34000449126|2 +451364|34000449127|2 +451409|34000449128|2 +451393|34000449129|2 +451813|34000449131|2 +451820|34000449132|2 +452045|34000449135|2 +452046|34000449136|2 +452388|34000449138|2 +452392|34000449139|2 +452596|34000449140|2 +452897|34000449143|2 +452910|34000449144|2 +452900|34000449145|2 +452914|34000449146|2 +452902|34000449147|2 +452893|34000449148|2 +452905|34000449149|2 +453031|34000449150|2 +453012|34000449151|2 +453468|34000449154|2 +453472|34000449156|2 +453467|34000449157|2 +453473|34000449158|2 +453612|34000449161|2 +453636|34000449162|2 +453630|34000449163|2 +454964|34000449172|2 +455515|34000449177|2 +456037|34000449179|2 +456338|34000449182|2 +456564|34000449183|2 +456704|34000449186|2 +456522|34000449187|2 +770009|34000449188|2 +457085|34000449190|2 +457983|34000449194|2 +457989|34000449195|2 +457990|34000449196|2 +458412|34000449197|2 +459110|34000449198|2 +459947|34000449206|2 +460230|34000449210|2 +460570|34000449211|2 +460554|34000449212|2 +460573|34000449213|2 +460574|34000449214|2 +460560|34000449215|2 +460579|34000449216|2 +460563|34000449217|2 +460577|34000449218|2 +460690|34000449221|2 +460695|34000449223|2 +460762|34000449224|2 +460770|34000449225|2 +469141|34000449227|2 +461567|34000449228|2 +461568|34000449229|2 +462521|34000449233|4 +462535|34000449234|4 +462298|34000449236|2 +463044|34000449237|2 +463045|34000449239|2 +463235|34000449240|2 +463233|34000449241|2 +517510|34000449244|2 +463568|34000449248|2 +463486|34000449249|2 +463331|34000449253|2 +463899|34000449255|4 +463900|34000449256|4 +463391|34000449259|2 +463460|34000449261|2 +463916|34000449265|2 +463746|34000449266|2 +464035|34000449268|2 +463336|34000449271|2 +463563|34000449272|2 +463309|34000449273|2 +463747|34000449275|2 +463310|34000449276|2 +464078|34000449277|2 +466488|34000449280|2 +466078|34000449282|2 +466079|34000449283|2 +466489|34000449284|2 +465940|34000449285|2 +466264|34000449288|2 +466484|34000449289|2 +466490|34000449290|2 +466080|34000449291|2 +466491|34000449292|2 +466466|34000449294|2 +467134|34000449299|2 +467216|34000449302|2 +467426|34000449303|2 +467313|34000449304|2 +467136|34000449305|4 +467704|34000449308|2 +467041|34000449309|4 +467674|34000449310|2 +467623|34000449315|2 +467011|34000449316|2 +467427|34000449318|2 +467352|34000449319|2 +775337|34000449321|2 +467109|34000449323|2 +467565|34000449324|2 +467217|34000449328|2 +468311|34000449332|2 +468303|34000449335|2 +469012|34000449337|2 +469075|34000449338|2 +469076|34000449340|2 +470304|34000449341|2 +471711|34000449349|2 +471712|34000449352|2 +471591|34000449354|2 +471014|34000449355|2 +890092|34000449356|2 +666694|34000449357|2 +471592|34000449358|2 +471713|34000449359|2 +471200|34000449360|2 +471316|34000449362|2 +471349|34000449364|2 +471015|34000449365|2 +471201|34000449366|2 +471790|34000449368|2 +471869|34000449369|2 +472413|34000449370|2 +472592|34000449375|2 +472756|34000449376|2 +473872|34000449381|2 +473874|34000449383|2 +473873|34000449385|2 +473877|34000449386|2 +473988|34000449388|2 +473990|34000449389|2 +474734|34000449395|2 +475979|34000449402|2 +477118|34000449410|2 +477296|34000449412|2 +477298|34000449413|2 +478245|34000449415|2 +478244|34000449417|2 +479325|34000449418|2 +479712|34000449419|2 +480045|34000449420|2 +479700|34000449421|2 +480027|34000449424|2 +479960|34000449425|2 +479994|34000449427|4 +479886|34000449431|2 +479857|34000449433|2 +480125|34000449434|2 +480330|34000449436|2 +480326|34000449437|2 +480332|34000449438|2 +480626|34000449440|2 +481437|34000449443|2 +481419|34000449444|2 +481427|34000449445|2 +481428|34000449446|2 +481465|34000449447|2 +481871|34000449448|2 +482167|34000449449|2 +482213|34000449450|2 +482063|34000449451|2 +482060|34000449452|2 +482171|34000449453|2 +676706|34000449454|2 +482278|34000449455|2 +482293|34000449457|2 +482507|34000449459|2 +482508|34000449460|2 +482582|34000449463|2 +482583|34000449464|2 +482958|34000449466|2 +483521|34000449469|2 +483948|34000449470|2 +484075|34000449471|2 +484093|34000449478|2 +484070|34000449480|2 +484345|34000449483|2 +484692|34000449485|2 +484711|34000449486|2 +484712|34000449487|2 +485130|34000449488|2 +485308|34000449490|2 +485309|34000449491|2 +485322|34000449492|2 +487224|34000449494|2 +488020|34000449495|4 +487694|34000449496|2 +489154|34000449502|2 +489152|34000449504|2 +489306|34000449505|2 +489307|34000449506|2 +489634|34000449507|2 +490648|34000449509|2 +490792|34000449515|2 +490964|34000449520|2 +491469|34000449522|2 +491337|34000449523|2 +491470|34000449524|2 +491365|34000449525|2 +492158|34000449528|2 +492048|34000449529|2 +492719|34000449531|2 +492780|34000449532|2 +492665|34000449533|2 +492781|34000449534|2 +492851|34000449536|2 +492676|34000449537|2 +492716|34000449539|2 +492699|34000449540|2 +492720|34000449542|2 +493104|34000449543|2 +493536|34000449545|2 +493571|34000449546|2 +493676|34000449547|2 +493672|34000449549|2 +493776|34000449551|2 +493836|34000449552|2 +885927|34000449556|2 +494515|34000449557|2 +494531|34000449558|2 +494528|34000449559|2 +675028|34000449560|2 +494532|34000449561|2 +495216|34000449565|2 +495213|34000449566|2 +495286|34000449568|2 +496355|34000449570|2 +496527|34000449571|2 +496602|34000449573|2 +496566|34000449574|2 +496439|34000449578|2 +496365|34000449579|2 +497402|34000449583|2 +761116|34000449589|2 +498320|34000449590|2 +498449|34000449591|2 +533172|34000449593|2 +499440|34000449600|2 +500224|34000449602|2 +500698|34000449605|2 +501427|34000449607|2 +501724|34000449608|2 +501690|34000449609|2 +501621|34000449610|2 +501508|34000449612|2 +501670|34000449613|2 +501680|34000449614|2 +501560|34000449616|2 +501679|34000449619|2 +501556|34000449620|4 +501611|34000449621|2 +501957|34000449622|2 +501932|34000449623|2 +501958|34000449626|2 +502141|34000449633|2 +502532|34000449634|2 +502995|34000449638|2 +502982|34000449639|2 +503653|34000449641|2 +503649|34000449642|2 +504310|34000449644|2 +504925|34000449646|2 +505100|34000449647|2 +505253|34000449648|2 +505552|34000449649|2 +506151|34000449653|2 +506168|34000449654|2 +506180|34000449655|2 +506139|34000449656|2 +506372|34000449661|2 +506292|34000449662|2 +506289|34000449663|2 +506862|34000449667|2 +507261|34000449668|4 +507764|34000449672|2 +507803|34000449673|2 +508114|34000449674|2 +508116|34000449675|2 +508117|34000449676|2 +508130|34000449677|2 +508118|34000449678|2 +508119|34000449680|2 +508120|34000449681|2 +508095|34000449682|2 +508451|34000449684|2 +508975|34000449687|2 +508998|34000449688|2 +509041|34000449689|2 +509392|34000449692|2 +509548|34000449693|2 +510150|34000449697|2 +510284|34000449698|2 +510432|34000449700|2 +676245|34000449701|2 +510575|34000449702|2 +674975|34000449703|2 +511043|34000449705|2 +512609|34000449707|2 +512621|34000449708|2 +512613|34000449709|2 +512861|34000449710|2 +512859|34000449711|2 +512860|34000449712|2 +513001|34000449716|2 +513041|34000449717|2 +512902|34000449719|2 +512949|34000449721|2 +513034|34000449724|2 +512964|34000449725|4 +513002|34000449727|2 +513042|34000449728|2 +513065|34000449729|4 +513093|34000449730|2 +513772|34000449736|2 +513812|34000449737|2 +513968|34000449738|2 +513936|34000449739|2 +513943|34000449741|2 +513986|34000449742|2 +513982|34000449743|2 +514227|34000449744|2 +514228|34000449746|2 +515130|34000449748|2 +515461|34000449749|2 +515710|34000449751|2 +515705|34000449753|2 +515983|34000449755|2 +516409|34000449758|2 +516852|34000449760|2 +516863|34000449761|2 +517319|34000449763|2 +517290|34000449764|2 +517305|34000449765|2 +517174|34000449766|2 +517340|34000449767|2 +517608|34000449770|2 +518741|34000449775|2 +518728|34000449777|2 +518717|34000449778|2 +519207|34000449780|2 +519201|34000449782|2 +519243|34000449783|2 +519351|34000449784|2 +519672|34000449787|2 +519697|34000449788|2 +519665|34000449790|2 +519681|34000449791|2 +519698|34000449794|2 +519680|34000449799|2 +519687|34000449800|2 +519666|34000449802|2 +519667|34000449804|2 +519696|34000449805|2 +519702|34000449806|2 +521807|34000449821|2 +521803|34000449823|2 +845589|34000449824|2 +521824|34000449825|2 +522060|34000449826|2 +522248|34000449828|2 +522622|34000449832|2 +522623|34000449833|2 +523641|34000449837|2 +524184|34000449842|2 +524203|34000449843|2 +524215|34000449847|2 +524311|34000449848|4 +878871|34000449849|2 +524415|34000449850|2 +524403|34000449852|2 +772848|34000449853|2 +524460|34000449857|2 +524524|34000449860|2 +524258|34000449861|2 +524259|34000449863|2 +525408|34000449865|2 +525493|34000449873|2 +525336|34000449874|2 +474891|34000449875|2 +525973|34000449879|2 +525970|34000449880|2 +525975|34000449881|2 +526306|34000449882|4 +526380|34000449883|2 +526241|34000449885|2 +526114|34000449887|2 +526516|34000449888|2 +526473|34000449897|2 +526474|34000449899|2 +526984|34000449901|2 +527134|34000449909|2 +527130|34000449911|2 +527270|34000449914|2 +527240|34000449915|2 +527241|34000449917|2 +527242|34000449918|2 +527219|34000449920|2 +527220|34000449922|2 +527271|34000449923|2 +528168|34000449925|2 +529747|34000449931|2 +530473|34000449937|2 +530474|34000449938|2 +530475|34000449939|2 +530586|34000449940|2 +530572|34000449941|2 +531116|34000449945|2 +531615|34000449946|2 +531689|34000449948|2 +532259|34000449953|2 +532799|34000449959|2 +532807|34000449960|2 +532824|34000449961|2 +533160|34000449964|2 +533148|34000449967|2 +533259|34000449968|2 +645094|34000449969|2 +535644|34000449974|2 +536022|34000449977|2 +536027|34000449980|2 +536028|34000449983|2 +536160|34000449987|2 +536349|34000449991|2 +536370|34000449994|2 +837529|34000449995|4 +536550|34000449997|2 +486143|34000449998|2 +537356|34000450003|2 +537355|34000450004|2 +537441|34000450005|2 +537442|34000450007|2 +538330|34000450009|2 +537974|34000450011|2 +543389|34000450014|2 +540665|34000450015|2 +540008|34000450016|2 +541872|34000450017|4 +541407|34000450019|2 +539389|34000450021|2 +540862|34000450022|2 +540892|34000450025|2 +542006|34000450026|2 +540893|34000450027|2 +542007|34000450030|2 +539674|34000450031|2 +540894|34000450035|2 +542639|34000450041|2 +542645|34000450042|2 +542646|34000450043|2 +542642|34000450045|2 +542648|34000450046|2 +542647|34000450048|2 +542610|34000450049|2 +542604|34000450051|2 +542629|34000450052|2 +542707|34000450053|2 +542734|34000450054|2 +542738|34000450058|2 +542672|34000450059|2 +543246|34000450064|2 +543347|34000450065|2 +543468|34000450066|2 +543890|34000450068|2 +543761|34000450069|2 +543762|34000450070|2 +543961|34000450071|2 +543958|34000450072|2 +545285|34000450079|2 +545918|34000450081|2 +545919|34000450082|2 +545948|34000450083|2 +546010|34000450087|2 +546008|34000450091|2 +546041|34000450092|2 +546404|34000450097|2 +546402|34000450098|2 +547808|34000450106|2 +547797|34000450112|2 +547796|34000450113|2 +548079|34000450114|2 +547876|34000450115|2 +548325|34000450118|2 +548523|34000450120|2 +549049|34000450122|2 +548579|34000450127|2 +549936|34000450131|2 +550359|34000450135|2 +550962|34000450136|2 +550978|34000450137|2 +550985|34000450139|2 +550984|34000450140|2 +551148|34000450142|2 +551266|34000450143|2 +551396|34000450145|2 +551523|34000450146|2 +551950|34000450149|2 +551948|34000450150|2 +551945|34000450151|2 +552702|34000450152|2 +552703|34000450154|2 +552083|34000450156|2 +552340|34000450159|4 +552341|34000450160|2 +552084|34000450163|2 +552198|34000450165|2 +552961|34000450167|2 +552215|34000450168|2 +552525|34000450169|2 +552704|34000450171|2 +553013|34000450174|2 +552199|34000450175|2 +552796|34000450176|2 +552035|34000450179|2 +552008|34000450180|2 +552545|34000450185|2 +553109|34000450186|2 +552009|34000450187|2 +531479|34000450188|2 +552010|34000450190|2 +552691|34000450191|2 +552320|34000450192|2 +552546|34000450194|2 +553869|34000450196|2 +553867|34000450197|2 +553870|34000450199|2 +553868|34000450201|2 +554103|34000450202|2 +554880|34000450206|2 +554904|34000450208|2 +554971|34000450211|2 +554972|34000450212|2 +855556|34000450213|2 +555448|34000450215|2 +555833|34000450218|2 +556003|34000450221|2 +555988|34000450222|2 +555998|34000450223|2 +555982|34000450224|2 +555983|34000450225|2 +556002|34000450226|2 +556228|34000450227|2 +556204|34000450228|2 +556198|34000450229|2 +556470|34000450231|2 +556844|34000450233|2 +556826|34000450234|2 +557517|34000450237|2 +557467|34000450238|2 +557596|34000450242|2 +557987|34000450246|2 +557988|34000450247|2 +627683|34000450248|2 +557992|34000450249|2 +558616|34000450251|2 +558631|34000450252|2 +625090|34000450256|2 +559952|34000450258|2 +559963|34000450259|2 +559953|34000450260|2 +559968|34000450261|2 +1172540|34000450262|2 +559945|34000450263|2 +559998|34000450264|2 +560459|34000450266|2 +561103|34000450269|2 +561757|34000450270|2 +562262|34000450274|2 +562567|34000450276|2 +563345|34000450277|2 +563292|34000450278|2 +463897|34000450284|4 +564948|34000450285|2 +564980|34000450287|2 +565260|34000450289|2 +565232|34000450291|2 +566179|34000450297|2 +566020|34000450298|2 +566331|34000450299|2 +566254|34000450300|2 +1005767|34000450301|2 +566600|34000450302|2 +567107|34000450304|2 +568003|34000450308|2 +567739|34000450310|2 +568639|34000450311|2 +568385|34000450313|2 +832466|34000450316|4 +568949|34000450318|2 +568988|34000450320|2 +569173|34000450321|2 +569189|34000450322|2 +568991|34000450324|2 +569082|34000450326|2 +569190|34000450328|2 +569030|34000450329|2 +570211|34000450330|2 +570940|34000450331|2 +570716|34000450332|2 +570495|34000450333|2 +570527|34000450336|2 +570496|34000450338|2 +571256|34000450340|2 +571546|34000450344|2 +571687|34000450346|2 +571649|34000450347|2 +571965|34000450350|2 +572621|34000450352|2 +572622|34000450353|2 +572679|34000450354|2 +573131|34000450357|2 +573135|34000450358|2 +573592|34000450360|2 +574168|34000450361|2 +574135|34000450362|2 +574153|34000450363|2 +574136|34000450364|2 +574993|34000450370|2 +575291|34000450373|2 +575570|34000450377|2 +575591|34000450378|2 +575914|34000450381|2 +575917|34000450382|2 +575915|34000450385|2 +576025|34000450387|2 +576145|34000450388|2 +576153|34000450390|2 +576146|34000450391|2 +576127|34000450392|2 +576154|34000450393|2 +576135|34000450394|2 +757424|34000450395|2 +576470|34000450398|2 +576543|34000450399|2 +576721|34000450403|2 +577367|34000450404|2 +577765|34000450405|2 +577766|34000450406|2 +577767|34000450407|2 +578220|34000450410|2 +578239|34000450411|2 +579239|34000450413|2 +579213|34000450414|2 +579534|34000450418|2 +579758|34000450420|2 +580316|34000450421|2 +581109|34000450427|2 +581552|34000450429|2 +581745|34000450430|2 +581596|34000450433|2 +581633|34000450434|2 +582113|34000450436|2 +583409|34000450445|2 +583888|34000450450|2 +583864|34000450451|2 +583875|34000450453|2 +583914|34000450454|2 +583881|34000450455|2 +583981|34000450456|2 +584404|34000450457|2 +584423|34000450458|2 +584418|34000450459|2 +584414|34000450460|2 +584490|34000450462|2 +584540|34000450463|2 +587148|34000450471|2 +587448|34000450473|2 +587712|34000450475|2 +587713|34000450476|2 +587711|34000450477|2 +588141|34000450479|2 +588150|34000450483|2 +588517|34000450484|2 +588461|34000450485|2 +589169|34000450487|2 +589546|34000450488|2 +550953|34000450489|2 +589538|34000450490|2 +589541|34000450491|2 +589731|34000450493|2 +589733|34000450495|2 +590574|34000450499|2 +590590|34000450500|2 +590596|34000450501|2 +463898|34000450502|4 +590577|34000450504|2 +590554|34000450505|2 +590783|34000450507|2 +590971|34000450508|2 +590937|34000450509|2 +591080|34000450510|2 +591961|34000450513|4 +591962|34000450514|4 +591474|34000450515|2 +592079|34000450516|2 +591358|34000450517|2 +591871|34000450518|4 +591902|34000450523|2 +591348|34000450524|2 +592279|34000450525|2 +593118|34000450528|2 +593162|34000450529|2 +593377|34000450535|2 +593380|34000450536|2 +593775|34000450537|2 +593720|34000450538|2 +593809|34000450539|2 +594251|34000450542|2 +594308|34000450544|2 +594592|34000450545|2 +594839|34000450547|2 +594848|34000450548|2 +594950|34000450550|2 +594943|34000450551|2 +800202|34000450554|2 +595189|34000450555|2 +595281|34000450556|2 +595356|34000450558|2 +595361|34000450559|2 +595287|34000450560|4 +595490|34000450561|2 +596094|34000450568|2 +596318|34000450569|2 +596419|34000450570|2 +597679|34000450575|2 +684742|34000450577|2 +597768|34000450578|2 +789418|34000450579|2 +597856|34000450580|2 +597804|34000450581|2 +598232|34000450582|2 +598231|34000450583|2 +599050|34000450585|2 +599051|34000450587|2 +599203|34000450588|2 +598730|34000450592|2 +599293|34000450593|4 +598731|34000450595|2 +600507|34000450597|2 +600896|34000450598|2 +600895|34000450599|2 +600923|34000450604|2 +602025|34000450609|2 +602009|34000450610|2 +602010|34000450611|2 +601849|34000450613|2 +601878|34000450615|2 +489255|34000450616|2 +601879|34000450617|2 +602148|34000450618|2 +602093|34000450619|2 +602153|34000450621|2 +602696|34000450626|2 +555347|34000450627|2 +602831|34000450629|2 +602806|34000450630|2 +602871|34000450632|2 +602951|34000450633|2 +602952|34000450634|2 +602832|34000450635|2 +603135|34000450637|2 +603012|34000450640|2 +604404|34000450646|2 +604578|34000450647|2 +604494|34000450648|2 +604488|34000450650|4 +604491|34000450651|2 +676326|34000450655|2 +607527|34000450662|2 +607345|34000450663|2 +607562|34000450665|2 +607551|34000450666|2 +607286|34000450667|2 +608268|34000450671|2 +608249|34000450672|2 +609033|34000450676|2 +609305|34000450681|2 +609373|34000450683|2 +609638|34000450686|4 +609639|34000450688|4 +610991|34000450699|2 +612673|34000450703|2 +611605|34000450705|2 +611445|34000450706|2 +611606|34000450707|2 +612674|34000450708|2 +565164|34000450711|2 +611856|34000450712|2 +611687|34000450715|2 +611341|34000450716|2 +611889|34000450717|2 +611579|34000450719|2 +612625|34000450720|4 +612461|34000450721|2 +611894|34000450722|2 +612559|34000450725|2 +902147|34000450726|2 +611937|34000450727|2 +611747|34000450728|2 +612717|34000450731|2 +792170|34000450732|2 +611340|34000450733|2 +612560|34000450734|2 +612059|34000450737|2 +611607|34000450738|2 +611608|34000450740|2 +612220|34000450741|2 +612773|34000450742|2 +612968|34000450744|2 +612978|34000450745|2 +613791|34000450749|2 +613516|34000450750|2 +614030|34000450752|2 +613898|34000450753|2 +613779|34000450754|2 +613955|34000450756|4 +614031|34000450758|2 +614308|34000450760|2 +614860|34000450765|2 +614931|34000450767|2 +615136|34000450769|2 +615242|34000450770|2 +615938|34000450775|2 +615939|34000450776|2 +616691|34000450778|2 +616791|34000450779|2 +616674|34000450780|2 +616894|34000450781|2 +616895|34000450782|2 +617027|34000450784|2 +616964|34000450785|2 +617669|34000450787|2 +618284|34000450789|2 +618394|34000450790|2 +618406|34000450791|2 +618433|34000450792|2 +618395|34000450793|2 +618407|34000450794|2 +736664|34000450796|2 +619593|34000450797|2 +619628|34000450799|2 +619646|34000450800|2 +620361|34000450802|2 +620650|34000450804|2 +620639|34000450805|2 +620612|34000450807|2 +620665|34000450808|2 +620636|34000450809|2 +620839|34000450811|2 +620805|34000450812|2 +622190|34000450817|2 +621871|34000450819|2 +623776|34000450823|2 +623852|34000450825|2 +623777|34000450827|2 +623939|34000450829|2 +624640|34000450833|2 +624789|34000450835|2 +624782|34000450836|2 +624781|34000450839|2 +624785|34000450840|2 +625173|34000450842|2 +625585|34000450846|2 +625931|34000450847|2 +625953|34000450851|2 +626493|34000450855|2 +626491|34000450856|2 +626741|34000450859|2 +626818|34000450860|2 +626707|34000450862|2 +896925|34000450864|2 +626756|34000450865|2 +626847|34000450866|2 +626780|34000450868|2 +626757|34000450869|2 +627274|34000450874|2 +627759|34000450877|2 +627734|34000450881|2 +627822|34000450884|2 +627880|34000450885|2 +628065|34000450886|2 +628493|34000450891|2 +628474|34000450893|2 +628482|34000450894|2 +628479|34000450896|2 +628483|34000450898|2 +628484|34000450901|2 +628468|34000450902|2 +628494|34000450903|2 +628467|34000450904|2 +628830|34000450906|2 +628902|34000450907|2 +629277|34000450910|2 +629282|34000450911|2 +629264|34000450914|2 +629725|34000450915|2 +630695|34000450920|2 +630696|34000450921|2 +630957|34000450923|2 +630865|34000450924|2 +631012|34000450925|2 +631561|34000450927|2 +631603|34000450928|2 +631568|34000450931|2 +631515|34000450933|2 +631604|34000450934|2 +631565|34000450935|2 +631537|34000450936|2 +632902|34000450939|2 +633128|34000450941|2 +632637|34000450943|2 +633078|34000450944|2 +633079|34000450946|2 +633131|34000450948|2 +633016|34000450949|2 +632551|34000450950|2 +632958|34000450953|2 +633080|34000450954|2 +633017|34000450955|2 +632979|34000450958|2 +632751|34000450961|2 +633213|34000450962|2 +633243|34000450964|2 +633245|34000450966|2 +633614|34000450967|2 +634182|34000450970|2 +634884|34000450974|2 +635735|34000450978|2 +637710|34000450991|2 +637728|34000450992|2 +638263|34000450995|2 +638302|34000450997|2 +638333|34000450998|2 +638355|34000450999|2 +638427|34000451001|2 +638740|34000451002|2 +638698|34000451003|2 +638699|34000451006|2 +639047|34000451007|2 +639597|34000451010|2 +639603|34000451011|2 +639851|34000451012|2 +640257|34000451015|2 +640254|34000451017|2 +640432|34000451019|2 +640467|34000451021|2 +640527|34000451023|2 +640914|34000451025|2 +640976|34000451026|2 +642151|34000451028|2 +642681|34000451032|2 +642692|34000451033|2 +642691|34000451034|2 +642689|34000451037|2 +642697|34000451038|2 +642698|34000451039|2 +642726|34000451041|2 +643359|34000451042|2 +676456|34000451044|2 +644185|34000451045|2 +601881|34000451048|2 +645213|34000451049|2 +645476|34000451051|2 +646021|34000451052|2 +646022|34000451053|2 +646029|34000451054|2 +646309|34000451057|2 +646183|34000451058|2 +646220|34000451060|2 +646243|34000451061|2 +646197|34000451062|4 +647641|34000451066|2 +647674|34000451067|2 +647617|34000451068|2 +648213|34000451069|2 +648195|34000451070|2 +648395|34000451071|2 +648428|34000451072|2 +648392|34000451073|2 +648448|34000451076|2 +648393|34000451078|2 +648410|34000451079|2 +648750|34000451080|2 +648862|34000451081|2 +648967|34000451083|2 +648968|34000451084|2 +649406|34000451086|2 +649410|34000451087|2 +649415|34000451088|2 +700946|34000451091|2 +650080|34000451092|2 +650539|34000451094|2 +650540|34000451095|2 +650669|34000451096|2 +650675|34000451097|2 +650746|34000451098|2 +650742|34000451099|2 +651642|34000451102|4 +651529|34000451104|2 +651757|34000451108|2 +651763|34000451109|2 +652077|34000451112|2 +652081|34000451113|2 +652938|34000451118|2 +653419|34000451120|2 +653412|34000451121|2 +653479|34000451122|2 +653502|34000451124|2 +653499|34000451125|2 +653682|34000451127|2 +653754|34000451128|2 +653867|34000451129|2 +653800|34000451131|2 +658118|34000451133|2 +654399|34000451135|2 +654379|34000451136|2 +654380|34000451137|2 +654740|34000451141|2 +654531|34000451143|2 +654702|34000451144|2 +655792|34000451146|4 +655477|34000451147|2 +659145|34000451160|2 +659139|34000451161|2 +659302|34000451162|2 +659308|34000451163|2 +659467|34000451167|2 +570781|34000451169|2 +659888|34000451171|2 +659887|34000451172|2 +659904|34000451173|2 +659889|34000451174|2 +659890|34000451175|2 +660090|34000451176|2 +660331|34000451177|2 +660282|34000451178|2 +660229|34000451179|2 +660586|34000451182|2 +660507|34000451183|2 +660587|34000451184|2 +660763|34000451185|2 +660705|34000451186|2 +660652|34000451187|2 +661705|34000451192|2 +661881|34000451195|2 +661828|34000451196|2 +661830|34000451198|2 +662008|34000451200|2 +649059|34000451202|2 +662651|34000451204|2 +662939|34000451205|2 +662937|34000451206|2 +662938|34000451207|2 +662936|34000451208|2 +663169|34000451210|2 +663170|34000451211|2 +663409|34000451212|2 +663932|34000451218|2 +664467|34000451220|2 +664462|34000451221|2 +664461|34000451222|2 +664459|34000451223|2 +664976|34000451225|2 +665166|34000451226|2 +665223|34000451227|2 +665298|34000451228|2 +665295|34000451230|2 +665358|34000451231|2 +665357|34000451232|2 +667171|34000451240|2 +667339|34000451242|2 +667532|34000451244|2 +667383|34000451245|2 +455798|34000451247|2 +669261|34000451249|2 +669325|34000451250|2 +669551|34000451251|2 +669467|34000451252|2 +669445|34000451253|2 +669915|34000451257|2 +669858|34000451259|2 +669869|34000451260|2 +669974|34000451261|2 +669973|34000451262|2 +669972|34000451264|2 +670730|34000451268|2 +670746|34000451270|2 +670970|34000451273|2 +671357|34000451279|2 +671538|34000451281|2 +671280|34000451282|2 +671628|34000451284|2 +671611|34000451285|2 +671690|34000451287|2 +671750|34000451288|2 +470985|34000451292|2 +672451|34000451295|2 +672896|34000451297|2 +674079|34000451300|2 +674018|34000451302|2 +674820|34000451306|2 +675673|34000451311|2 +676264|34000451313|2 +676263|34000451314|2 +676605|34000451315|2 +676514|34000451316|2 +676520|34000451317|2 +676610|34000451318|2 +677450|34000451321|2 +677255|34000451322|2 +677451|34000451323|2 +677647|34000451327|2 +677634|34000451328|2 +677678|34000451333|2 +678349|34000451334|2 +678352|34000451335|2 +678351|34000451336|2 +678534|34000451337|2 +678565|34000451339|2 +679158|34000451343|2 +679005|34000451345|2 +679342|34000451347|2 +679747|34000451348|2 +681103|34000451353|2 +787301|34000451363|2 +683425|34000451364|2 +683662|34000451366|2 +683645|34000451368|2 +683729|34000451370|2 +683730|34000451371|2 +683857|34000451372|2 +684252|34000451376|2 +684674|34000451379|2 +686013|34000451385|2 +686411|34000451388|2 +686599|34000451389|2 +686603|34000451391|2 +686639|34000451392|2 +687199|34000451394|2 +687263|34000451396|2 +687266|34000451398|2 +688675|34000451400|2 +590576|34000451402|2 +688705|34000451403|2 +688676|34000451404|2 +689429|34000451409|2 +689838|34000451410|2 +689952|34000451412|2 +690250|34000451413|2 +690253|34000451415|2 +690741|34000451417|2 +692612|34000451425|2 +693029|34000451426|2 +693276|34000451428|2 +693236|34000451429|2 +693480|34000451430|2 +766080|34000451431|2 +693755|34000451436|2 +694553|34000451450|2 +694773|34000451451|2 +695182|34000451454|2 +695828|34000451455|2 +695809|34000451456|2 +695829|34000451457|2 +695823|34000451459|2 +695857|34000451460|2 +696025|34000451461|2 +696016|34000451462|2 +696017|34000451465|2 +696122|34000451466|2 +696591|34000451469|2 +696587|34000451470|2 +573990|34000451472|2 +697062|34000451473|2 +697376|34000451476|2 +697912|34000451479|2 +698110|34000451480|2 +698887|34000451484|2 +699932|34000451489|2 +699902|34000451491|2 +700061|34000451494|2 +700039|34000451498|2 +700081|34000451499|2 +700175|34000451500|2 +700122|34000451502|2 +700040|34000451503|2 +700176|34000451504|2 +700214|34000451505|2 +700036|34000451507|2 +700127|34000451509|2 +700215|34000451511|2 +700428|34000451515|2 +700437|34000451517|2 +700943|34000451519|2 +700944|34000451521|2 +701208|34000451522|2 +701364|34000451523|2 +701420|34000451524|2 +700681|34000451525|2 +700945|34000451526|2 +700483|34000451528|2 +700553|34000451529|2 +700779|34000451530|2 +532811|34000451531|2 +700888|34000451532|2 +701401|34000451533|2 +701402|34000451534|2 +700551|34000451536|2 +701527|34000451539|2 +700889|34000451540|2 +701528|34000451542|2 +701442|34000451543|2 +700739|34000451544|2 +700682|34000451545|2 +700973|34000451547|2 +701529|34000451548|2 +700683|34000451552|2 +532315|34000451554|2 +700974|34000451555|2 +701209|34000451558|2 +701104|34000451559|2 +700890|34000451562|2 +701443|34000451563|2 +701217|34000451565|2 +701372|34000451566|2 +700465|34000451567|2 +701105|34000451568|2 +701530|34000451569|2 +701531|34000451571|2 +701816|34000451580|2 +701933|34000451584|2 +701846|34000451589|2 +702222|34000451591|2 +702279|34000451592|2 +702195|34000451593|2 +702196|34000451594|2 +702717|34000451596|2 +703961|34000451602|2 +703978|34000451605|2 +703976|34000451606|2 +704191|34000451609|2 +704192|34000451610|2 +704194|34000451611|2 +705765|34000451614|2 +705857|34000451615|2 +705939|34000451616|4 +705994|34000451617|2 +706189|34000451621|2 +706474|34000451628|2 +706476|34000451630|2 +706728|34000451633|2 +707756|34000451634|2 +707770|34000451635|2 +708763|34000451641|2 +708781|34000451643|2 +709608|34000451644|2 +709625|34000451645|2 +710199|34000451646|2 +710054|34000451647|2 +710333|34000451651|2 +710334|34000451652|2 +710341|34000451653|2 +710343|34000451654|2 +711160|34000451657|2 +712341|34000451659|2 +712273|34000451660|2 +713139|34000451662|2 +713132|34000451663|2 +712876|34000451664|2 +713760|34000451673|2 +713761|34000451674|2 +713758|34000451675|2 +713762|34000451677|2 +713763|34000451678|2 +714209|34000451680|2 +714577|34000451681|2 +714504|34000451686|2 +714603|34000451687|2 +714638|34000451688|2 +714720|34000451690|2 +714532|34000451694|2 +714601|34000451695|2 +714578|34000451696|2 +714514|34000451697|2 +714781|34000451698|2 +865848|34000451700|2 +715422|34000451701|2 +715081|34000451702|2 +715258|34000451704|2 +715208|34000451708|2 +715474|34000451710|2 +715735|34000451712|2 +715772|34000451714|2 +716037|34000451715|2 +715972|34000451717|2 +716691|34000451718|2 +716692|34000451719|2 +716813|34000451721|2 +716814|34000451722|2 +716822|34000451723|2 +717114|34000451724|2 +716996|34000451728|2 +717151|34000451730|2 +717003|34000451731|2 +717250|34000451733|4 +717222|34000451735|2 +716959|34000451736|2 +717304|34000451738|2 +717305|34000451740|2 +717050|34000451742|2 +717152|34000451744|2 +717043|34000451745|2 +717182|34000451746|2 +717153|34000451747|2 +717080|34000451751|2 +716934|34000451754|2 +717004|34000451757|2 +717005|34000451759|2 +717183|34000451760|2 +717006|34000451761|2 +893152|34000451762|2 +716997|34000451763|2 +718204|34000451768|2 +718726|34000451770|2 +719055|34000451774|2 +719912|34000451778|2 +719870|34000451779|2 +719771|34000451780|2 +719772|34000451781|2 +720201|34000451783|2 +720204|34000451784|2 +720203|34000451786|2 +720273|34000451787|2 +720288|34000451788|2 +720412|34000451790|2 +720976|34000451792|2 +720977|34000451793|2 +525635|34000451794|2 +721070|34000451795|2 +721068|34000451796|2 +721067|34000451797|2 +721071|34000451798|2 +721065|34000451799|2 +721965|34000451803|2 +722172|34000451804|2 +722183|34000451805|2 +722254|34000451807|2 +722777|34000451809|2 +722850|34000451811|2 +722837|34000451813|2 +722652|34000451814|2 +722593|34000451815|2 +722791|34000451816|2 +722573|34000451817|2 +722842|34000451818|2 +588260|34000451819|2 +722843|34000451820|2 +722776|34000451821|2 +722685|34000451823|2 +723046|34000451825|2 +723294|34000451827|4 +723446|34000451828|4 +723736|34000451831|2 +724302|34000451832|2 +724449|34000451836|2 +724773|34000451837|2 +725564|34000451840|2 +725574|34000451841|2 +725716|34000451842|2 +725719|34000451843|2 +725718|34000451846|2 +725714|34000451847|2 +725717|34000451848|2 +726009|34000451850|2 +726585|34000451851|2 +727033|34000451852|2 +726959|34000451853|2 +727011|34000451854|2 +727131|34000451857|2 +727151|34000451859|2 +727149|34000451860|2 +727238|34000451861|2 +727285|34000451864|2 +727601|34000451866|2 +727966|34000451867|2 +727967|34000451868|2 +727973|34000451869|2 +728283|34000451873|2 +728479|34000451876|2 +728478|34000451878|2 +728480|34000451879|2 +730929|34000451887|2 +732200|34000451889|2 +732229|34000451890|2 +860859|34000451894|2 +733161|34000451898|2 +733455|34000451900|2 +733458|34000451901|2 +733594|34000451902|2 +660374|34000451905|2 +734843|34000451908|2 +735210|34000451909|2 +736087|34000451913|2 +736082|34000451914|2 +736093|34000451915|2 +736091|34000451916|2 +736088|34000451917|2 +736327|34000451919|2 +736340|34000451921|2 +736769|34000451922|2 +737061|34000451923|2 +737871|34000451927|2 +738406|34000451930|2 +738374|34000451931|2 +738502|34000451932|2 +739478|34000451935|2 +739479|34000451936|2 +740297|34000451938|2 +740281|34000451939|2 +740613|34000451940|2 +740660|34000451941|2 +740661|34000451942|2 +740857|34000451943|2 +742224|34000451948|2 +611955|34000451949|2 +742223|34000451950|2 +742543|34000451952|2 +743653|34000451956|2 +760565|34000451957|2 +743673|34000451959|2 +743608|34000451960|2 +743710|34000451964|2 +743791|34000451966|2 +743654|34000451967|2 +744420|34000451972|2 +744542|34000451974|2 +744540|34000451975|2 +744814|34000451976|2 +744834|34000451977|2 +744995|34000451978|2 +745068|34000451982|2 +745183|34000451983|2 +745551|34000451984|2 +746083|34000451986|2 +746102|34000451989|2 +746127|34000451990|2 +746128|34000451993|2 +746581|34000451995|2 +746575|34000451996|2 +746570|34000451997|2 +700205|34000451998|2 +746736|34000451999|2 +746721|34000452000|2 +746841|34000452001|2 +746900|34000452002|2 +746899|34000452003|2 +747015|34000452005|2 +747145|34000452009|2 +747930|34000452011|2 +747934|34000452012|2 +748156|34000452014|2 +748555|34000452018|2 +748421|34000452020|2 +748310|34000452022|2 +749192|34000452024|2 +750189|34000452025|2 +750924|34000452029|2 +750896|34000452030|2 +750925|34000452033|2 +750972|34000452035|2 +750974|34000452036|2 +753060|34000452038|2 +753314|34000452039|2 +753845|34000452042|2 +753936|34000452043|2 +753771|34000452044|2 +753915|34000452045|2 +754351|34000452047|2 +754294|34000452048|2 +519649|34000452049|2 +754537|34000452050|2 +754766|34000452052|2 +754793|34000452054|2 +754849|34000452056|2 +754982|34000452057|2 +754920|34000452058|2 +755070|34000452059|2 +755069|34000452060|2 +755068|34000452062|2 +755431|34000452063|4 +755404|34000452064|2 +755388|34000452065|2 +755952|34000452067|2 +756392|34000452070|2 +756391|34000452071|2 +756395|34000452072|2 +756402|34000452073|2 +559484|34000452074|2 +757515|34000452082|2 +757564|34000452083|2 +757611|34000452084|2 +774536|34000452085|2 +757565|34000452086|2 +757672|34000452087|2 +758166|34000452089|2 +758011|34000452090|2 +760200|34000452092|2 +761456|34000452098|2 +532813|34000452099|2 +761760|34000452103|2 +762756|34000452107|2 +762805|34000452111|2 +762985|34000452112|2 +763205|34000452113|2 +579191|34000452114|2 +763913|34000452116|2 +763914|34000452117|2 +764424|34000452121|2 +902267|34000452123|2 +765296|34000452124|2 +766152|34000452128|2 +766587|34000452129|2 +766597|34000452131|2 +647286|34000452133|2 +767050|34000452134|2 +767063|34000452137|2 +768989|34000452139|2 +769551|34000452142|2 +769558|34000452144|2 +769753|34000452146|2 +769992|34000452147|2 +770523|34000452148|2 +770627|34000452149|2 +770901|34000452150|2 +770902|34000452151|2 +601222|34000452152|2 +772021|34000452153|2 +772207|34000452158|2 +772353|34000452159|2 +772369|34000452160|2 +772495|34000452161|2 +772523|34000452162|2 +772815|34000452164|2 +772874|34000452165|2 +772757|34000452167|2 +772799|34000452168|2 +772849|34000452170|2 +773679|34000452173|2 +774002|34000452175|2 +774363|34000452179|2 +774351|34000452180|2 +774416|34000452181|2 +774401|34000452182|2 +774359|34000452186|2 +774537|34000452187|2 +775420|34000452191|2 +775448|34000452192|2 +775493|34000452193|2 +775451|34000452194|2 +775338|34000452196|2 +775426|34000452197|2 +776865|34000452205|2 +777888|34000452208|2 +778374|34000452209|2 +777732|34000452210|2 +777784|34000452212|2 +778529|34000452214|2 +778701|34000452215|2 +778702|34000452216|2 +778950|34000452218|2 +779164|34000452221|2 +779458|34000452223|2 +779543|34000452224|2 +780044|34000452229|2 +780482|34000452233|2 +780510|34000452235|2 +780467|34000452236|2 +780511|34000452237|2 +780518|34000452238|2 +781873|34000452241|2 +781752|34000452243|2 +781753|34000452245|2 +781766|34000452246|2 +781997|34000452249|2 +737062|34000452250|2 +782547|34000452253|2 +782422|34000452256|2 +782893|34000452257|2 +783690|34000452263|2 +784322|34000452271|2 +784481|34000452276|2 +784323|34000452278|2 +784713|34000452281|2 +784866|34000452282|2 +785245|34000452283|2 +785533|34000452284|2 +785644|34000452287|2 +785645|34000452288|2 +786659|34000452289|2 +786629|34000452290|2 +786759|34000452291|2 +576487|34000452292|2 +787857|34000452295|2 +789419|34000452296|2 +789594|34000452298|2 +790625|34000452300|2 +790626|34000452301|2 +790934|34000452304|2 +791941|34000452308|2 +792267|34000452310|2 +792870|34000452312|2 +793367|34000452316|2 +793704|34000452318|2 +793698|34000452319|2 +794427|34000452323|2 +794542|34000452325|2 +794514|34000452326|4 +794646|34000452327|2 +795543|34000452334|2 +795546|34000452335|2 +796301|34000452338|2 +796577|34000452341|2 +796451|34000452342|2 +796390|34000452343|2 +796533|34000452344|2 +797404|34000452351|2 +797544|34000452353|2 +798841|34000452355|2 +798900|34000452357|2 +799061|34000452359|2 +799047|34000452360|2 +800948|34000452368|2 +801328|34000452370|2 +801326|34000452372|2 +801329|34000452373|2 +801343|34000452374|2 +801366|34000452376|2 +801563|34000452378|2 +801769|34000452380|2 +801773|34000452381|2 +801806|34000452383|2 +802101|34000452384|2 +802096|34000452386|2 +802119|34000452390|2 +802116|34000452391|2 +802517|34000452393|2 +802503|34000452395|2 +803280|34000452399|2 +803479|34000452400|2 +803342|34000452401|2 +803299|34000452402|2 +803563|34000452403|2 +803545|34000452407|2 +803646|34000452409|2 +804335|34000452411|2 +804806|34000452412|2 +804824|34000452413|2 +804814|34000452416|2 +805709|34000452417|2 +806114|34000452418|2 +806650|34000452419|2 +806640|34000452420|2 +807524|34000452426|2 +807525|34000452427|2 +807709|34000452428|2 +807816|34000452431|2 +807778|34000452433|2 +807817|34000452434|2 +808894|34000452437|2 +809069|34000452439|2 +809384|34000452440|2 +826092|34000452444|4 +825969|34000452445|4 +826163|34000452446|6 +826433|34000452447|4 +825675|34000452448|4 +825623|34000452449|4 +825717|34000452450|4 +825950|34000452453|4 +826320|34000452454|8 +825970|34000452455|4 +825659|34000452458|4 +825607|34000452459|6 +825928|34000452460|4 +826453|34000452461|4 +826717|34000452462|4 +826753|34000452463|4 +827397|34000452468|4 +827396|34000452469|4 +828070|34000452471|4 +828069|34000452473|4 +828057|34000452475|4 +828063|34000452477|4 +828066|34000452478|4 +828064|34000452479|4 +828060|34000452481|4 +679760|34000452482|2 +828179|34000452487|4 +828310|34000452489|4 +828503|34000452490|4 +828506|34000452494|4 +828512|34000452495|4 +828502|34000452498|4 +828514|34000452499|4 +828682|34000452503|4 +828683|34000452505|4 +620604|34000452508|2 +829197|34000452509|4 +829195|34000452510|4 +829194|34000452511|4 +829198|34000452512|4 +829199|34000452515|4 +830630|34000452518|4 +830521|34000452519|4 +830745|34000452523|4 +831022|34000452524|4 +831049|34000452527|4 +831175|34000452529|4 +831667|34000452530|4 +832460|34000452532|4 +832464|34000452534|4 +832733|34000452535|4 +832865|34000452536|4 +833429|34000452539|4 +833430|34000452540|4 +833431|34000452541|4 +819802|34000452551|4 +834569|34000452554|4 +835148|34000452556|4 +836197|34000452560|4 +836193|34000452561|4 +837533|34000452566|4 +837534|34000452568|4 +837230|34000452570|4 +838362|34000452573|4 +838168|34000452574|4 +838262|34000452575|4 +717216|34000452576|2 +838363|34000452577|4 +838106|34000452578|4 +838130|34000452579|4 +838441|34000452580|4 +838681|34000452581|4 +839884|34000452584|4 +840995|34000452590|2 +841007|34000452593|2 +841049|34000452594|2 +841008|34000452596|2 +842205|34000452599|2 +842498|34000452600|2 +842385|34000452601|2 +842866|34000452607|2 +843023|34000452608|2 +843527|34000452613|2 +843743|34000452615|2 +843777|34000452616|2 +844021|34000452620|2 +844740|34000452622|2 +844799|34000452623|2 +844893|34000452627|2 +633205|34000452629|2 +844896|34000452631|2 +807522|34000452632|2 +494530|34000452633|2 +845079|34000452636|2 +845123|34000452639|2 +845088|34000452640|2 +845222|34000452641|2 +845994|34000452648|2 +846586|34000452650|2 +846468|34000452651|2 +847465|34000452657|2 +846890|34000452658|2 +847284|34000452659|2 +847810|34000452661|2 +847834|34000452662|2 +847835|34000452663|2 +870909|34000452664|2 +848092|34000452665|2 +848089|34000452666|2 +848310|34000452670|2 +719773|34000452672|2 +662014|34000452675|2 +849285|34000452678|2 +850097|34000452680|2 +850098|34000452681|2 +850613|34000452683|2 +850610|34000452684|2 +851036|34000452685|2 +851662|34000452688|2 +851686|34000452689|2 +852155|34000452693|2 +852710|34000452695|2 +852728|34000452696|2 +852820|34000452697|2 +852817|34000452698|2 +853684|34000452700|2 +853652|34000452701|2 +853290|34000452702|2 +853085|34000452709|2 +853871|34000452710|2 +854109|34000452712|2 +854110|34000452715|2 +854364|34000452719|2 +854365|34000452720|2 +854541|34000452721|2 +538257|34000452723|2 +855191|34000452725|2 +855200|34000452726|2 +855205|34000452727|2 +855520|34000452732|2 +856357|34000452738|2 +856521|34000452739|2 +857038|34000452743|2 +857199|34000452745|2 +857396|34000452750|2 +857797|34000452754|2 +857842|34000452756|2 +857853|34000452757|2 +857848|34000452758|2 +857856|34000452760|2 +858269|34000452761|2 +858261|34000452762|2 +858268|34000452764|2 +858264|34000452765|2 +798124|34000452767|2 +858363|34000452770|2 +858416|34000452771|2 +858415|34000452772|2 +859065|34000452775|2 +859424|34000452778|2 +859440|34000452779|2 +859504|34000452780|2 +859505|34000452781|2 +859506|34000452782|2 +859835|34000452783|2 +860208|34000452784|2 +860209|34000452787|2 +860214|34000452788|2 +860403|34000452789|2 +860862|34000452792|2 +860929|34000452793|2 +860909|34000452794|2 +861484|34000452799|2 +861533|34000452801|2 +861592|34000452802|2 +862204|34000452805|2 +862449|34000452809|2 +863580|34000452815|2 +863579|34000452816|2 +863581|34000452817|2 +864357|34000452819|2 +828516|34000452820|4 +864472|34000452821|2 +864948|34000452829|2 +865342|34000452831|2 +865331|34000452832|2 +865336|34000452833|2 +865340|34000452834|2 +865817|34000452837|2 +866372|34000452845|2 +867024|34000452848|2 +867025|34000452849|2 +540300|34000452850|2 +867245|34000452854|2 +867546|34000452859|2 +867891|34000452861|2 +867951|34000452863|2 +867943|34000452864|2 +868004|34000452868|2 +868009|34000452870|2 +868047|34000452871|2 +868081|34000452872|2 +868368|34000452874|2 +868611|34000452875|2 +868348|34000452876|2 +868542|34000452877|2 +868543|34000452879|2 +868904|34000452882|2 +869072|34000452884|2 +869063|34000452891|2 +875490|34000452892|2 +869215|34000452896|2 +869679|34000452899|2 +870010|34000452902|2 +870470|34000452904|2 +870410|34000452907|2 +870644|34000452911|2 +871199|34000452914|2 +871205|34000452917|2 +871204|34000452920|2 +871194|34000452923|2 +872082|34000452927|2 +872115|34000452928|2 +873695|34000452933|2 +873696|34000452934|2 +873685|34000452936|2 +873697|34000452937|2 +873667|34000452938|2 +873820|34000452939|2 +873902|34000452940|2 +874424|34000452942|2 +874874|34000452949|2 +874789|34000452950|2 +874911|34000452952|2 +874813|34000452954|2 +874823|34000452958|2 +874840|34000452959|2 +874759|34000452960|2 +875277|34000452961|2 +875257|34000452962|2 +875276|34000452964|2 +875794|34000452972|2 +876204|34000452974|2 +876218|34000452977|2 +876222|34000452978|2 +876550|34000452980|2 +876521|34000452981|2 +876509|34000452982|2 +876510|34000452983|2 +877129|34000452985|2 +877150|34000452986|2 +877369|34000452987|2 +877945|34000452991|2 +877937|34000452992|2 +878142|34000452995|2 +879168|34000453000|2 +663268|34000453001|2 +878834|34000453002|2 +879007|34000453003|2 +879008|34000453005|2 +879384|34000453008|2 +880261|34000453020|2 +881091|34000453024|2 +881580|34000453027|2 +881546|34000453028|2 +882747|34000453033|2 +883900|34000453035|2 +883901|34000453036|2 +883902|34000453037|2 +883899|34000453038|2 +884050|34000453039|2 +884034|34000453040|2 +884638|34000453042|2 +884748|34000453044|2 +884736|34000453045|2 +884843|34000453046|2 +884934|34000453049|2 +885322|34000453050|2 +885667|34000453053|2 +885679|34000453054|2 +644538|34000453056|2 +886574|34000453057|2 +886767|34000453058|2 +886763|34000453059|2 +886760|34000453061|2 +886768|34000453062|2 +886909|34000453063|2 +887934|34000453069|2 +887893|34000453070|2 +833965|34000453071|6 +676267|34000453072|2 +888196|34000453073|2 +888203|34000453075|2 +888213|34000453077|2 +888563|34000453082|2 +888555|34000453083|2 +888912|34000453085|2 +889273|34000453087|2 +889266|34000453088|2 +889442|34000453092|2 +889495|34000453093|2 +889851|34000453094|2 +889855|34000453095|2 +889901|34000453097|2 +890358|34000453099|2 +890748|34000453100|2 +890654|34000453105|2 +890896|34000453107|2 +891029|34000453108|4 +890744|34000453111|2 +891608|34000453119|2 +892134|34000453121|2 +480620|34000453123|2 +895240|34000453135|2 +895300|34000453136|2 +895172|34000453138|2 +895310|34000453139|2 +895164|34000453140|2 +895235|34000453141|2 +895751|34000453142|2 +895957|34000453143|2 +896732|34000453147|2 +897180|34000453149|2 +897265|34000453151|2 +897346|34000453152|2 +897414|34000453153|2 +897594|34000453159|2 +897889|34000453160|2 +897890|34000453161|2 +897679|34000453162|2 +897860|34000453164|2 +897595|34000453166|2 +897908|34000453170|2 +897616|34000453171|2 +897617|34000453172|2 +897783|34000453174|2 +898034|34000453178|2 +898053|34000453179|2 +898179|34000453180|2 +898024|34000453181|2 +898054|34000453183|2 +898088|34000453184|2 +898159|34000453188|2 +899004|34000453191|2 +898966|34000453192|2 +898965|34000453193|2 +900351|34000453195|2 +899616|34000453196|2 +900352|34000453197|2 +899956|34000453198|2 +900353|34000453200|2 +899957|34000453201|2 +900149|34000453203|2 +899376|34000453204|2 +899958|34000453205|2 +899375|34000453206|4 +899420|34000453207|2 +899396|34000453209|2 +899754|34000453210|2 +899968|34000453211|2 +900124|34000453215|4 +899969|34000453216|2 +901905|34000453218|2 +902006|34000453220|2 +902094|34000453221|2 +902364|34000453222|2 +910181|34000453313|2 +910352|34000453317|2 +838032|34000453334|4 +719512|34000453342|2 +717031|34000453353|2 +725715|34000453358|2 +584795|34000453371|2 +461569|34000453500|2 +930739|34000453514|2 +683868|34000453650|2 +504581|34000453663|2 +792171|34000453694|2 +639409|34000453703|2 +490448|34000453747|2 +954244|34000453756|2 +953762|34000453770|2 +953134|34000453771|2 +953763|34000453773|2 +955033|34000453807|2 +958051|34000453858|2 +805205|34000453881|2 +895210|34000453886|2 +566596|34000453887|2 +970232|34000453975|2 +649159|34000454005|2 +700554|34000454024|2 +976399|34000454050|2 +834140|34000454061|4 +487674|34000454078|2 +998819|34000454206|2 +831559|34000454224|4 +604957|34000454244|2 +1013011|34000454308|2 +1013074|34000454318|2 +1013481|34000454332|2 +609717|34000454355|2 +1022298|34000454384|2 +620613|34000454479|2 +1034269|34000454510|2 +1042656|34000454619|2 +1042631|34000454634|2 +700182|34000454646|2 +1052100|34000454707|2 +1058574|34000454762|2 +574149|34000454787|2 +628986|34000454952|2 +521607|34000455042|2 +1096822|34000455154|2 +1101743|34000455176|2 +1104824|34000455219|2 +474000|34000455221|2 +480173|34000455379|2 +703962|34000455413|2 +528491|34000455472|2 +524653|34000455532|2 +1141403|34000455542|2 +887607|34000455549|2 +1154331|34000455667|2 +1155244|34000455685|2 +1156978|34000455721|2 +645884|34000455776|2 +1166441|34000455796|2 +539069|34000455803|2 +1167982|34000455820|2 +1172346|34000455858|2 +1171926|34000455887|2 +1172541|34000455889|2 +742481|34000455890|4 +1171927|34000455896|2 +489512|34000455903|2 +1187730|34000456100|2 +836678|34000456110|4 +1191276|34000456120|2 +1192542|34000456152|2 +607232|34000456207|2 +864403|34000456251|2 +773358|34000456320|2 +506350|34000456374|2 +850365|34000456385|2 +536023|34000456469|2 +669798|34000456559|2 +793913|34000456570|2 +801214|34001010370|2 +498361|34001010372|2 +516281|34001010380|2 +594970|34001010739|2 +830560|34001010747|4 +694554|34001010750|2 +841054|34001010762|2 +648751|34001010798|2 +648863|34001010801|2 +641741|34001010804|2 +713512|34001016587|2 +713523|34001017121|2 +717027|34001017142|2 +717090|34001017144|2 +562569|34001017145|2 +618416|34001017158|2 +650075|34001017615|2 +661875|34001018228|2 +776629|34001018666|2 +501509|34001018733|2 +888212|34001019358|2 +562257|34001021773|2 +717919|34001021785|2 +831664|34001021853|4 +825951|34001022500|4 +781989|34001022502|2 +616980|34001022840|2 +482451|34001025338|2 +631290|34001025725|2 +458805|34001027537|2 +659906|34001027572|2 +475142|34001027584|2 +510311|34001027585|2 +484392|34001027587|2 +476243|34001027598|2 +593200|34001028241|2 +631547|34001028244|2 +842523|34001028294|2 +560631|34001028296|2 +553110|34001028300|2 +574174|34001032940|2 +455496|34001032941|2 +638514|34001032943|2 +753772|34001033003|2 +723740|34001033213|2 +678321|34001033217|2 +568999|34001033262|2 +776947|34001033290|2 +567181|34001033299|2 +482941|34001033310|2 +687267|34001033312|2 +854530|34001033313|2 +617513|34001034004|2 +886065|34001034013|2 +1239462|34001034051|2 +633200|34001034063|2 +673121|34001034065|2 +701333|34001034165|2 +897706|34001034177|2 +510576|34001034180|2 +1155542|34001034181|2 +653747|34001034272|2 +697573|34001034356|2 +470032|34001034674|2 +842926|34001035539|2 +607388|34001036313|4 +705858|34001036323|2 +599416|34001036344|2 +704668|34001036734|2 +622568|34001036735|2 +650670|34001036736|2 +490650|34001037077|2 +761533|34001037078|2 +669262|34001037105|2 +881690|34001037197|2 +493803|34001037751|2 +536475|34001039030|2 +559842|34001039032|2 +579265|34001039033|2 +669696|34001039036|2 +716196|34001039041|2 +779298|34001039043|2 +726742|34001039810|2 +796809|34001039837|2 +701532|34001040095|2 +588522|34001041206|2 +695191|34001041209|2 +864622|34001041218|2 +506630|34001041716|2 +570941|34001041717|2 +595399|34001041719|2 +883219|34001041728|4 +482976|34001043211|2 +642728|34001043217|2 +722513|34001043220|2 +754239|34001043360|2 +455906|34001043362|2 +455881|34001043363|2 +719329|34001043372|2 +485579|34001043773|2 +590004|34001044646|2 +660230|34001044647|2 +773837|34001044709|2 +572157|34001044796|2 +525337|34001044803|2 +711852|34001044804|2 +696594|34001044809|2 +486270|34001044810|2 +631624|34001045335|2 +676358|34001045977|2 +459682|34001048332|2 +722173|34001048602|2 +886305|34001048704|2 +482618|34001048716|2 +874258|34001048720|2 +783338|34001050904|2 +763201|34001051872|2 +465712|34001051874|2 +665925|34001051878|2 +546051|34001052758|2 +550505|34001052762|2 +574162|34001052764|2 +790623|34001052781|2 +660104|34001053591|2 +783339|34001053600|2 +538517|34001053982|2 +621037|34001054914|2 +712882|34001054921|2 +842771|34001054932|2 +847824|34001054944|2 +664751|34001055320|2 +605928|34001055453|2 +651830|34001057689|2 +805202|34001058662|2 +647263|34001060592|2 +899728|34001062220|2 +738027|34001062221|2 +836181|34001062263|4 +482500|34001062264|2 +482973|34001062272|2 +683244|34001062274|2 +699451|34001062275|4 +548841|34001062291|2 +581634|34001062311|2 +613400|34001062507|2 +595288|34001062626|4 +638303|34001062649|2 +863582|34001062752|2 +900125|34001062777|4 +701609|34001062792|2 +651033|34001062809|2 +649913|34001062818|2 +845590|34001062819|2 +727265|34001065399|2 +886765|34001065414|2 +705002|34001065657|2 +624787|34001067028|2 +550261|34001067966|2 +787270|34001068028|2 +1155543|34001068138|2 +513969|34001068156|2 +572601|34001068476|2 +506065|34001068481|2 +722960|34001068502|2 +864623|34001068514|2 +550972|34001068522|2 +701533|34001068600|2 +654168|34001068609|2 +803445|34001070835|2 +527264|34001071230|2 +632627|34001071394|2 +696073|34001071400|2 +663898|34001071439|2 +663973|34001071443|2 +524404|34001073592|2 +867239|34001073663|2 +669468|34001073846|2 +524009|34001073852|2 +493647|34001073880|2 +628496|34001073885|2 +727150|34001073886|2 +797368|34001073897|2 +640255|34001076514|2 +719330|34001076521|2 +883898|34001076524|2 +645475|34001082068|2 +857392|34001082070|2 +623391|34001082071|2 +612669|34001082072|4 +638280|34001082074|2 +486023|34001082110|2 +700975|34001082111|2 +609811|34001082115|2 +893496|34001082117|2 +509903|34001082125|2 +511802|34001082144|2 +496349|34001082145|2 +654400|34001082147|2 +603112|34001082151|2 +722851|34001082161|2 +452048|34001082166|2 +640528|34001082172|2 +689463|34001082177|2 +720724|34001082178|2 +855311|34001082179|2 +672029|34001082733|2 +801265|34001082734|2 +591716|34001082735|2 +843020|34001082803|2 +561939|34001082807|2 +722190|34001083747|2 +512847|34001083760|2 +885837|34001083761|2 +737129|34001083763|2 +801807|34001083765|2 +693306|34001083772|2 +890713|34001084019|2 +773122|34001084020|2 +1156976|34001084023|2 +623808|34001085144|2 +550943|34001085145|2 +525637|34001085553|2 +894601|34001085750|2 +494999|34001086214|2 +628485|34001086683|2 +987334|34001086793|2 +639589|34001086797|2 +543599|34001086809|2 +755029|34001088162|2 +886761|34001088173|2 +676547|34001088848|2 +673476|34001088849|2 +526225|34001088854|2 +769772|34001090521|2 +894602|34001091586|2 +555984|34001091587|2 +519703|34001091588|2 +509906|34001091591|2 +506354|34001092051|2 +572026|34001092167|2 +790973|34001092410|2 +567660|34001092416|2 +471898|34001092441|2 +463664|34001092456|2 +509921|34001092496|2 +863084|34001092499|2 +555513|34001092502|2 +632867|34001092631|2 +722250|34001092632|2 +579566|34001093063|2 +700021|34001093531|2 +659896|34001093534|2 +714602|34001094585|2 +676845|34001094587|2 +607236|34001094588|2 +783590|34001094815|2 +825678|34001095083|4 +880563|34001095088|2 +666940|34001095769|2 +535935|34001095770|2 +781767|34001096538|2 +497421|34001096552|2 +515007|34001096573|2 +513191|34001096576|2 +474131|34001096577|2 +651853|34001096580|2 +628495|34001097299|2 +876519|34001097344|2 +830629|34001097349|4 +648970|34001097350|2 +497420|34001097351|2 +958046|34001098279|2 +663266|34001098286|2 +533079|34001099284|2 +606225|34001099871|2 +786916|34001099890|2 +657202|34001100424|2 +482395|34001100425|2 +691491|34001102116|2 +717144|34001102204|2 +857953|34001103100|2 +857950|34001103103|2 +513813|34001103127|2 +456515|34001103132|2 +751728|34001103481|2 +953135|34001104140|2 +717091|34001105304|2 +492159|34001105317|2 +638429|34001105332|2 +471791|34001106992|2 +873646|34001107108|2 +669210|34001107110|2 +626565|34001107111|2 +790633|34001107120|2 +524505|34001107121|2 +551502|34001107976|2 +579175|34001107982|2 +696463|34001107996|2 +782236|34001107997|2 +689549|34001107998|2 +837530|34001108006|4 +661116|34001109396|2 +796770|34001109405|2 +460565|34001109408|2 +522920|34001109465|2 +859083|34001109482|2 +471434|34001109483|2 +503796|34001109811|2 +707154|34001110600|2 +650526|34001110770|2 +508999|34001110771|2 +501173|34001110773|2 +548491|34001110786|2 +508978|34001110790|2 +473859|34001111711|2 +829196|34001111781|4 +686633|34001111789|2 +639413|34001111797|2 +525182|34001111819|2 +553014|34001112643|2 +640372|34001112651|2 +494535|34001112664|2 +463605|34001115380|2 +467347|34001115383|2 +497573|34001115400|2 +646314|34001115425|2 +680015|34001115440|2 +839711|34001115447|4 +467589|34001115546|2 +700086|34001117512|2 +616240|34001117539|2 +781992|34001120546|2 +639366|34001120547|2 +638746|34001120555|2 +628469|34001120607|2 +558170|34001120644|2 +857854|34001120649|2 +472599|34001120656|2 +1173435|34001120662|2 +623460|34001120673|2 +607528|34001120676|2 +700709|34001120694|2 +501495|34001120704|2 +517175|34001120941|2 +573136|34001120991|2 +804881|34001120994|2 +463881|34001121325|2 +576817|34001121332|2 +579119|34001121353|2 +738407|34001121372|2 +780362|34001121374|2 +646729|34001121377|2 +738408|34001121379|2 +550110|34001121381|2 +694441|34001121382|2 +547763|34001121383|2 +666103|34001121386|2 +501183|34001121388|2 +679064|34001121552|2 +622100|34001121555|4 +601925|34001121558|2 +770254|34001121559|2 +697063|34001121568|2 +479921|34001121569|2 +519212|34001121570|2 +498377|34001121571|2 +701377|34001121578|2 +884728|34001121581|2 +495524|34001122532|2 +676980|34001123470|2 +778217|34001123481|2 +870278|34001123494|2 +853905|34001123507|2 +471016|34001123511|2 +471593|34001123512|2 +468829|34001123514|2 +466081|34001123515|2 +738023|34001124432|2 +835118|34001128015|4 +870376|34001128797|2 +517241|34001128820|2 +568654|34001128824|2 +525586|34001128825|2 +606258|34001128826|2 +628300|34001128827|2 +683731|34001128834|2 +791301|34001128859|2 +886269|34001128864|2 +779090|34001131335|2 +571717|34001131336|2 +569145|34001131337|2 +530140|34001131338|2 +459697|34001131973|2 +590597|34001131975|2 +590598|34001131978|2 +900126|34001132184|4 +647612|34001132188|2 +577100|34001132190|2 +892785|34001133725|2 +869069|34001133726|2 +633543|34001133728|2 +633544|34001133729|2 +460258|34001134052|2 +847285|34001134700|2 +665304|34001134704|2 +559969|34001134705|2 +544550|34001134706|2 +544551|34001134707|2 +492160|34001134709|2 +458408|34001134715|2 +1222883|34001135305|2 +723969|34001136182|2 +853216|34001136190|2 +853044|34001136196|2 +898835|34001138797|4 +900150|34001138800|2 +452908|34001138801|2 +513066|34001138807|4 +760287|34001138831|2 +745431|34001138832|2 +684327|34001138835|2 +642727|34001138839|2 +634429|34001138841|2 +592414|34001138842|2 +544492|34001138843|2 +510151|34001138844|2 +467189|34001141811|2 +694141|34001142003|2 +452639|34001142038|2 +712190|34001142514|2 +522774|34001143008|2 +487643|34001144287|2 +569039|34001144998|2 +678535|34001145623|2 +484701|34001146183|2 +506678|34001146563|2 +552416|34001146639|2 +512616|34001146641|2 +717251|34001147298|4 +626799|34001147377|2 +626338|34001147383|2 +760289|34001147672|2 +533138|34001147727|2 +471806|34001147742|2 +576082|34001147789|2 +727302|34001147831|2 +730426|34001147846|2 +795395|34001149172|2 +628931|34001149181|2 +864624|34001149183|2 +859443|34001149262|2 +576128|34001149344|2 +454515|34001149347|2 +559587|34001149403|2 +576138|34001149413|2 +803343|34001149453|2 +773027|34001149481|2 +760288|34001150750|2 +485571|34001150780|2 +637014|34001150819|2 +712690|34001151313|2 +851497|34001151323|2 +637012|34001151975|2 +555822|34001156171|2 +688690|34001156174|2 +746853|34001156190|2 +480832|34001156195|2 +746850|34001156208|2 +820315|34001156214|2 +456641|34001157497|2 +701312|34001157505|2 +779723|34001157537|2 +463901|34001157543|4 +887220|34001157650|2 +900100|34001158235|2 +822141|34001158239|2 +836318|34001158254|4 +464079|34001158698|2 +688735|34001158708|2 +729171|34001158714|2 +634603|34001158724|2 +683426|34001158740|2 +466247|34001158747|2 +640433|34001158791|2 +886965|34001158795|2 +612655|34001158812|2 +784510|34001158865|2 +569465|34001159051|2 +701482|34001159076|2 +845080|34001159083|2 +701483|34001159113|2 +487978|34001159289|2 +566021|34001159291|2 +861485|34001159331|2 +537858|34001159335|2 +717217|34001163300|2 +875282|34001163419|2 +539675|34001163430|2 +488682|34001163451|2 +469185|34001163466|2 +463237|34001163473|2 +701355|34001164718|2 +524502|34001169336|2 +855193|34001170215|2 +877973|34001170651|2 +876353|34001171353|2 +711707|34001171354|2 +723737|34001171358|2 +686602|34001171361|2 +623274|34001171363|2 +616913|34001171364|2 +575710|34001171366|2 +556113|34001171369|2 +552547|34001171370|2 +549556|34001171371|2 +524260|34001171372|2 +472712|34001171374|2 +864665|34001172231|2 +686014|34001172236|2 +1091965|34001173394|2 +681675|34001173396|2 +897707|34001173399|2 +714680|34001173406|2 +659402|34001173407|2 +568004|34001173408|2 +507795|34001173409|2 +778210|34001174578|2 +638304|34001174580|2 +623768|34001174587|2 +601960|34001174593|2 +574762|34001174595|2 +492369|34001174597|2 +632959|34001175135|2 +471870|34001175137|2 +651898|34001175145|2 +640978|34001177122|2 +588620|34001177137|2 +892760|34001177154|2 +465989|34001177165|2 +606751|34001177168|2 +584541|34001177179|2 +574154|34001177184|2 +828067|34001177189|4 +733568|34001177193|2 +844532|34001177194|2 +746091|34001177195|2 +489278|34001177197|2 +571798|34001177207|2 +898013|34001177218|2 +476490|34001177227|2 +866241|34001177228|2 +897067|34001177463|2 +840181|34001177476|4 +746851|34001177493|2 +642694|34001177497|2 +626394|34001177499|2 +467292|34001177616|2 +459661|34001179132|2 +858417|34001179134|2 +825952|34001179139|4 +459065|34001179459|2 +785905|34001179461|2 +775343|34001179462|2 +737378|34001179463|2 +689548|34001179464|2 +686164|34001179465|2 +686165|34001179466|2 +686142|34001179467|2 +598795|34001179473|2 +492049|34001179477|2 +480010|34001179478|2 +490651|34001179775|2 +519678|34001179781|2 +898160|34001180061|2 +712986|34001181047|2 +549447|34001181048|2 +549078|34001181069|2 +784376|34001182577|2 +863462|34001183099|2 +857352|34001183100|2 +851910|34001183135|2 +619811|34001183137|2 +469573|34001183138|2 +846115|34001183650|2 +661945|34001185858|2 +886187|34001185859|2 +758853|34001185863|2 +757708|34001185864|2 +717007|34001185872|2 +499724|34001185876|2 +461380|34001185878|2 +460291|34001185879|2 +534396|34001186528|2 +482270|34001186530|2 +805130|34001186594|2 +893710|34001187188|2 +793105|34001187189|2 +689839|34001187192|2 +701118|34001187947|2 +470863|34001187948|2 +595570|34001187949|2 +562256|34001187950|2 +486022|34001187952|2 +793106|34001188933|2 +940632|34001188936|2 +590784|34001188944|2 +830707|34001189317|4 +463569|34001189319|2 +876069|34001190277|2 +546042|34001190279|2 +540765|34001190280|2 +510627|34001190991|2 +1153666|34001193425|2 +882230|34001193428|2 +576471|34001193434|2 +851906|34001193435|2 +665969|34001193438|2 +618438|34001193439|2 +598230|34001193440|2 +543694|34001193441|2 +842169|34001193988|2 +845596|34001193995|2 +632960|34001193997|2 +492180|34001193998|2 +859031|34001195011|2 +859032|34001195014|2 +735109|34001195016|2 +735110|34001195017|2 +776839|34001195018|2 +696588|34001195019|2 +882231|34001195697|2 +676244|34001196935|2 +470540|34001196936|4 +754227|34001197047|2 +774449|34001197051|2 +899377|34001198664|2 +730616|34001198667|2 +602086|34001198671|2 +539676|34001198672|2 +681603|34001199224|2 +612221|34001199229|2 +898161|34001199236|2 +640975|34001199237|2 +683486|34001199241|2 +603067|34001199242|2 +748896|34001199249|2 +834577|34001199252|4 +524265|34001199254|2 +875270|34001199256|2 +700216|34001199259|2 +690252|34001199260|2 +524462|34001199270|2 +888562|34001199271|2 +633145|34001199277|2 +479887|34001199280|2 +884729|34001199538|2 +460564|34001199539|2 +644413|34001199580|2 +937081|34001201003|2 +897663|34001201004|2 +781885|34001201012|2 +767986|34001201016|2 +722194|34001201020|2 +611342|34001201025|2 +479326|34001201026|2 +557989|34001201974|2 +569453|34001201978|2 +631964|34001201979|2 +512030|34001201980|2 +484032|34001201981|2 +588476|34001202552|2 +701403|34001203992|2 +659381|34001203996|2 +861482|34001204002|2 +631697|34001204126|2 +604360|34001204127|2 +512971|34001204128|2 +468310|34001204130|2 +790828|34001205138|2 +747101|34001205139|2 +597777|34001205141|2 +885865|34001205147|2 +714721|34001205148|2 +794472|34001205149|2 +767666|34001205154|2 +848068|34001205703|2 +716960|34001205704|2 +571949|34001206651|2 +490737|34001206770|2 +763915|34001208709|2 +506296|34001208733|2 +867028|34001211912|2 +784475|34001211915|2 +769761|34001211918|2 +566047|34001211942|2 +468422|34001211953|2 +466545|34001211955|4 +646784|34001212113|2 +559631|34001212129|2 +639150|34001212135|2 +669913|34001212145|2 +672409|34001212151|2 +707678|34001212153|2 +802518|34001212195|2 +1155544|34001212233|2 +953768|34001212264|2 +463564|34001213288|2 +516824|34001213293|2 +555973|34001213296|2 +569042|34001213445|2 +668335|34001214076|2 +458879|34001216303|2 +804825|34001216414|2 +509613|34001216457|2 +1172368|34001216459|2 +926538|34001216675|2 +892597|34001216678|2 +826549|34001216698|4 +861483|34001216699|2 +750926|34001216701|2 +722844|34001216702|2 +706056|34001216703|2 +599294|34001216712|4 +579103|34001216714|2 +567939|34001216719|2 +556004|34001216724|2 +970233|34001218195|2 +838263|34001218203|4 +689868|34001218207|2 +656553|34001218208|2 +673946|34001219181|2 +632898|34001219183|2 +571809|34001219190|2 +524364|34001219193|2 +478976|34001219196|2 +753672|34001220993|2 +732483|34001220994|2 +677952|34001220995|2 +521839|34001220997|2 +473906|34001220998|2 +464007|34001221001|4 +710194|34001221002|2 +807710|34001221819|2 +524034|34001221822|2 +778955|34001221984|2 +768315|34001221988|2 +662699|34001222027|2 +688647|34001222898|2 +484067|34001222907|2 +832618|34001222928|4 +651916|34001222929|2 +602279|34001222936|2 +868095|34001223539|2 +700100|34001223540|2 +671612|34001225315|2 +866349|34001225365|2 +756276|34001225367|2 +728481|34001225368|2 +717252|34001225369|4 +686015|34001225375|2 +684939|34001225388|2 +530537|34001225391|2 +459402|34001225401|2 +800345|34001226169|2 +678433|34001226170|2 +662700|34001226171|2 +452051|34001226172|2 +472017|34001226196|2 +653646|34001226701|2 +837847|34001226769|4 +603056|34001226770|2 +477273|34001227770|2 +463236|34001227792|2 +506314|34001227797|2 +463368|34001228278|2 +677639|34001229651|2 +649416|34001229695|2 +696057|34001229778|2 +649916|34001229780|2 +899755|34001230385|2 +693145|34001230389|2 +701238|34001230391|2 +561019|34001230392|2 +828065|34001230396|4 +492721|34001230401|2 +647618|34001230407|2 +774474|34001230408|2 +704193|34001230785|2 +492834|34001230793|2 +463748|34001230795|2 +714579|34001230797|2 +528530|34001230798|2 +677312|34001230816|2 +598796|34001230818|2 +552200|34001230821|2 +872083|34001230826|2 +549013|34001230827|2 +602141|34001231200|2 +844878|34001231201|2 +471868|34001231204|2 +588505|34001231206|2 +618339|34001231213|2 +863583|34001231214|2 +839198|34001231217|4 +584032|34001231219|2 +682248|34001231221|2 +607294|34001231222|2 +682246|34001231228|2 +747121|34001231233|2 +800227|34001231234|2 +652285|34001231236|2 +471871|34001231240|2 +517609|34001231244|2 +822401|34001231250|2 +591291|34001231266|2 +855597|34001232416|2 +598797|34001232418|2 +669552|34001232458|2 +683792|34001232460|2 +587998|34001233208|2 +792725|34001233305|2 +805109|34001234078|2 +566146|34001234165|2 +626742|34001234200|2 +799948|34001235648|2 +701404|34001237129|2 +603699|34001237133|2 +599770|34001237135|2 +539013|34001237138|2 +604020|34001238030|2 +1156977|34001238038|2 +882426|34001238043|2 +546084|34001238739|2 +746842|34001238747|2 +722181|34001238750|2 +703853|34001238751|2 +670663|34001238755|2 +487222|34001238758|2 +687208|34001239553|2 +884917|34001239580|2 +597007|34001239582|2 +463887|34001239586|4 +867605|34001241278|2 +664355|34001241280|2 +725527|34001241299|2 +481916|34001241300|2 +467566|34001241878|2 +571476|34001242524|2 +797369|34001243014|2 +607274|34001243016|2 +574771|34001243535|2 +862201|34001243552|2 +862203|34001243554|2 +625683|34001243557|2 +852874|34001244540|2 +717056|34001244541|2 +601045|34001244550|2 +565129|34001245498|2 +632699|34001246620|2 +546037|34001246621|2 +864663|34001246625|2 +675532|34001246698|2 +769925|34001248010|2 +654597|34001248022|2 +470806|34001248602|2 +623882|34001249472|2 +567426|34001249473|2 +671390|34001249482|2 +490024|34001250809|2 +486162|34001250810|2 +784363|34001252961|2 +763451|34001252964|2 +585850|34001252968|4 +538103|34001252969|2 +866038|34001254988|2 +670653|34001254993|2 +890094|34001256455|2 +640915|34001256467|2 +830195|34001257806|4 +717154|34001257810|2 +771019|34001257860|2 +687071|34001258799|2 +927289|34001260651|2 +770993|34001260663|2 +655143|34001260677|2 +606076|34001260679|2 +465941|34001260708|2 +771464|34001261038|2 +781768|34001262575|2 +522208|34001262577|2 +517341|34001262581|2 +835119|34001265363|4 +514548|34001265366|2 +461352|34001265367|2 +772758|34001267290|2 +717092|34001267371|2 +708453|34001267864|2 +611343|34001269179|2 +611333|34001269180|2 +800933|34001269293|2 +773520|34001269294|2 +723447|34001269298|4 +689871|34001269305|2 +654489|34001269431|2 +591973|34001269432|2 +535470|34001269434|2 +875280|34001271193|2 +1167026|34001272816|2 +696123|34001272822|2 +847705|34001273495|2 +793096|34001273931|2 +671160|34001274717|2 +709840|34001274719|2 +1274022|34001274763|2 +864556|34001274794|2 +856281|34001274795|2 +825718|34001274796|4 +714661|34001274797|2 +695816|34001274799|2 +660375|34001274800|2 +632752|34001274801|2 +628475|34001274802|2 +597954|34001274804|2 +545963|34001274832|2 +530539|34001274833|2 +515457|34001274835|2 +502439|34001274836|2 +480046|34001274837|2 +654459|34001274839|2 +506351|34001275725|2 +570213|34001276090|2 +481042|34001276321|2 +529044|34001278010|2 +456780|34001278024|2 +717094|34001278036|2 +590018|34001278041|2 +784409|34001278212|2 +683516|34001278253|2 +684842|34001278259|2 +877037|34001278265|2 +560527|34001278271|2 +803448|34001278676|2 +756397|34001279463|2 +647616|34001279471|2 +566147|34001279473|2 +559409|34001279475|2 +685897|34001279487|2 +805074|34001280092|2 +826088|34001281140|4 +777960|34001281142|2 +478363|34001281679|2 +478426|34001281681|2 +603979|34001281687|2 +866551|34001282040|2 +468830|34001282061|2 +690251|34001282064|2 +713759|34001282079|2 +769745|34001282081|2 +489714|34001282103|2 +747120|34001282108|2 +583176|34001282114|2 +750860|34001282118|2 +716001|34001282124|2 +492008|34001282137|2 +454665|34001282168|2 +557985|34001282170|2 +786658|34001282194|2 +790630|34001282199|2 +634560|34001282205|2 +804801|34001282213|2 +531617|34001282215|2 +633020|34001282217|2 +702287|34001282247|2 +741380|34001282250|2 +627111|34001282253|2 +627094|34001282254|2 +755009|34001282727|2 +461081|34001283540|2 +590998|34001283544|2 +1140886|34001283546|2 +763912|34001285280|2 +654605|34001285287|2 +518668|34001285301|2 +499805|34001285302|2 +606637|34001285553|4 +803449|34001287873|2 +857762|34001287877|2 +857761|34001287879|2 +755010|34001287896|2 +722643|34001287909|2 +612562|34001287920|2 +556432|34001287962|2 +869518|34001287964|2 +632813|34001288143|2 +671536|34001288146|2 +665078|34001288183|2 +626492|34001288202|2 +693152|34001288215|2 +671437|34001288223|2 +601107|34001288225|2 +846212|34001288232|2 +953766|34001293420|2 +848645|34001293471|2 +679724|34001293476|2 +654810|34001293477|2 +465679|34001294300|2 +675738|34001294333|2 +856328|34001296050|2 +658763|34001296051|2 +630707|34001296052|2 +673098|34001297050|2 +762432|34001297091|2 +534397|34001298703|2 +794499|34001299537|2 +626332|34001299538|2 +834394|34001299557|6 +873370|34001299580|2 +785209|34001300428|2 +553111|34001300431|2 +482273|34001300434|2 +477743|34001300437|2 +826524|34001300438|4 +846558|34001300439|4 +850032|34001301232|2 +691489|34001301235|2 +570782|34001301799|2 +982818|34001303142|2 +899756|34001303145|2 +853457|34001303147|2 +636970|34001303148|2 +470993|34001303149|2 +628886|34001303664|2 +614329|34001304410|2 +474592|34001304411|2 +693809|34001304417|2 +792141|34001305013|2 +848087|34001305526|2 +791042|34001305798|2 +687926|34001305799|2 +547427|34001306272|2 +672053|34001306275|2 +861569|34001307363|2 +715644|34001307365|2 +724395|34001307366|2 +630775|34001307932|2 +591156|34001307934|2 +838131|34001308179|4 +837680|34001308180|6 +479632|34001308181|2 +552006|34001308979|2 +631539|34001309290|2 +891301|34001310037|2 +607272|34001310040|2 +791053|34001310079|2 +679777|34001310080|2 +479952|34001310425|2 +843985|34001310808|2 +608073|34001310809|2 +1239460|34001311868|2 +561106|34001311876|2 +791999|34001311877|2 +470642|34001311878|2 +627510|34001313259|2 +508902|34001313261|2 +482352|34001313396|2 +773361|34001314618|2 +705086|34001314619|2 +654696|34001314623|2 +573124|34001314640|2 +555600|34001314641|2 +508121|34001314642|2 +503366|34001314649|2 +506110|34001314650|2 +636478|34001315330|2 +723004|34001316653|2 +614882|34001316668|2 +868866|34001317378|2 +559960|34001317382|2 +462383|34001317383|2 +875258|34001317946|2 +597623|34001317949|2 +596000|34001317950|2 +661817|34001317957|2 +626701|34001319237|2 +850090|34001320498|2 +574144|34001320500|2 +546021|34001320502|2 +525448|34001320503|2 +497839|34001320504|2 +876072|34001321102|2 +698109|34001321993|2 +611958|34001321994|2 +630635|34001322064|2 +630609|34001322065|2 +851687|34001323278|2 +722586|34001323279|2 +706131|34001323280|2 +542524|34001323281|2 +472179|34001323282|2 +1234408|34001324409|2 +894451|34001324411|2 +847827|34001324412|2 +845709|34001324413|2 +618341|34001324415|2 +518792|34001324416|2 +664282|34001326505|2 +633695|34001326934|2 +796416|34001327904|2 +723047|34001328265|2 +627503|34001328801|2 +644869|34001328811|2 +706767|34001329573|2 +507715|34001329580|2 +460702|34001329584|2 +518737|34001330388|2 +782884|34001330680|2 +543579|34001330681|2 +537304|34001330682|2 +825572|34001331566|4 +518987|34001331567|2 +772701|34001333314|2 +716818|34001333316|2 +878833|34001334029|2 +687184|34001334030|2 +638404|34001334031|2 +489286|34001334034|2 +867023|34001334696|2 +695406|34001334698|2 +695407|34001334699|2 +888554|34001335481|2 +518985|34001335483|2 +665423|34001335484|2 +691486|34001335485|2 +715911|34001335486|2 +863466|34001335493|2 +608511|34001336598|2 +898060|34001336942|2 +502346|34001337361|2 +462532|34001337364|4 +631533|34001337950|2 +739447|34001337953|2 +635119|34001337957|2 +537360|34001337958|2 +885404|34001338818|2 +594076|34001340529|2 +594079|34001340530|2 +506326|34001340555|2 +841055|34001341591|2 +607448|34001341639|2 +502533|34001341648|2 +608074|34001341651|2 +859433|34001342241|2 +648147|34001342242|2 +512841|34001342244|2 +526199|34001342773|2 +496690|34001342774|2 +484174|34001343277|2 +616770|34001344226|2 +665338|34001344243|2 +891966|34001344246|2 +626426|34001344287|2 +1110516|34001345090|2 +713653|34001345094|2 +482502|34001345476|2 +452405|34001345477|2 +1166944|34001348823|2 +885014|34001349007|2 +860219|34001349008|2 +766791|34001349011|2 +718070|34001349013|2 +687282|34001349014|2 +605567|34001349020|2 +602498|34001349021|2 +524261|34001349029|2 +520160|34001349030|2 +455493|34001349035|2 +454377|34001349431|2 +891679|34001349450|2 +697027|34001349453|2 +773816|34001349655|2 +856185|34001349661|2 +883096|34001349664|2 +603818|34001349790|2 +494533|34001350109|2 +900217|34001350112|2 +714580|34001350121|2 +755357|34001350852|2 +530145|34001350853|2 +453474|34001351236|2 +712712|34001351891|2 +477263|34001351894|2 +479962|34001351895|2 +492416|34001351897|2 +501704|34001351900|2 +524402|34001351901|2 +531488|34001351906|2 +533258|34001351908|2 +595774|34001351916|2 +602087|34001351921|2 +626489|34001351925|2 +626677|34001351926|2 +626830|34001351927|2 +633223|34001352068|2 +646367|34001352072|2 +649409|34001352075|2 +652445|34001352077|2 +670662|34001352080|2 +671981|34001352081|2 +674016|34001352086|2 +689695|34001352088|4 +695808|34001352093|2 +703979|34001352097|2 +766192|34001352098|2 +746688|34001352099|2 +792382|34001352101|2 +801594|34001352102|2 +802121|34001352106|2 +805717|34001352112|2 +834292|34001352115|4 +838621|34001352128|4 +848088|34001352132|2 +856186|34001352135|2 +859500|34001352136|2 +866015|34001352139|2 +882617|34001353172|2 +899052|34001353175|2 +572058|34001353703|2 +756393|34001354189|2 +716299|34001354190|2 +672394|34001354192|2 +607494|34001354193|2 +889827|34001354527|2 +836299|34001354528|4 +880278|34001354529|2 +479891|34001354530|2 +524478|34001354533|2 +498362|34001354534|2 +775843|34001355351|2 +659905|34001355432|2 +524525|34001355437|2 +505189|34001355440|2 +882127|34001355443|2 +559619|34001357447|2 +513773|34001357455|2 +700677|34001357466|2 +646234|34001357762|2 +460694|34001358730|2 +602278|34001358736|2 +722951|34001359851|2 +467636|34001359876|2 +857619|34001360942|2 +857618|34001360999|2 +637817|34001361000|2 +550473|34001361003|2 +628921|34001361019|2 +700814|34001361584|2 +603987|34001361585|2 +557713|34001361586|2 +473569|34001362833|2 +611602|34001362836|2 +478818|34001363262|2 +777485|34001363994|2 +630719|34001363995|2 +576020|34001364393|2 +664146|34001365301|2 +594288|34001365305|2 +508649|34001365307|2 +671192|34001366137|2 +651937|34001366138|2 +465904|34001366141|2 +703765|34001366147|2 +539677|34001367657|2 +481045|34001367741|2 +756128|34001367775|2 +703977|34001368385|2 +664527|34001368386|2 +664520|34001368387|2 +609785|34001368388|2 +557912|34001368389|2 +878790|34001370110|2 +650497|34001370122|2 +638687|34001370123|2 +557708|34001370124|2 +514549|34001370126|2 +483960|34001370128|2 +453501|34001370763|2 +588002|34001370767|2 +787693|34001372575|2 +648445|34001372576|2 +630866|34001372577|2 +526338|34001372579|2 +890223|34001372587|2 +890224|34001372588|2 +501601|34001372589|2 +483979|34001372590|2 +822402|34001372908|2 +794535|34001372915|2 +754850|34001374216|2 +624786|34001374218|2 +618689|34001374219|2 +533011|34001374220|2 +477640|34001374221|2 +888716|34001374226|2 +837012|34001376354|8 +790624|34001376355|2 +659891|34001376356|2 +613046|34001376364|2 +557714|34001376365|2 +752044|34001376370|2 +674913|34001377077|2 +716887|34001377712|2 +637027|34001378337|2 +791065|34001378344|2 +690808|34001378750|2 +706133|34001381235|2 +1006892|34001381245|2 +715103|34001381255|2 +524183|34001381259|2 +715104|34001381303|2 +742197|34001381874|2 +878949|34001383267|2 +493563|34001384226|2 +874758|34001384230|2 +809307|34001384232|2 +809306|34001384233|2 +688612|34001384234|2 +666352|34001384235|2 +659898|34001384236|2 +613033|34001384237|2 +651147|34001384945|2 +701484|34001385539|2 +609781|34001385541|2 +512946|34001385543|2 +580616|34001386216|2 +629837|34001386217|2 +693655|34001386218|2 +1172365|34001387382|2 +899028|34001387397|4 +857850|34001387400|2 +617780|34001387405|2 +452754|34001387427|2 +714552|34001387430|2 +847817|34001387514|2 +880608|34001388247|2 +774188|34001388251|2 +728992|34001388252|2 +612199|34001388256|2 +611070|34001388828|2 +592027|34001388829|2 +783601|34001390237|2 +753846|34001390239|2 +690874|34001390253|2 +652033|34001390257|2 +493874|34001390284|2 +762458|34001390979|2 +754983|34001390980|2 +801168|34001392047|2 +473970|34001392065|2 +453499|34001392549|2 +775613|34001393852|2 +775615|34001393853|2 +659035|34001393854|2 +586844|34001393855|2 +468421|34001393858|2 +623894|34001393879|2 +694774|34001393880|2 +863347|34001396385|2 +686154|34001396390|2 +613899|34001396392|2 +527511|34001396395|2 +473975|34001396496|2 +743906|34001396503|2 +769419|34001396504|2 +837292|34001396507|4 +684191|34001397470|2 +518986|34001398346|2 +691672|34001398400|2 +470807|34001398420|2 +1167983|34001398438|2 +476222|34001400033|2 +570212|34001400038|2 +627603|34001400043|2 +685672|34001400049|2 +719513|34001400054|2 +777389|34001400103|2 +873668|34001400113|2 +741371|34001400115|2 +543889|34001401877|2 +1188570|34001402628|2 +896542|34001402668|2 +700795|34001402681|2 +659884|34001402682|2 +659056|34001402685|2 +659036|34001402686|2 +700464|34001402745|2 +687206|34001402749|2 +884002|34001402753|2 +837881|34001402757|4 +1172542|34001404731|2 +543862|34001404744|2 +478652|34001404747|2 +475500|34001404762|2 +602878|34001404769|2 +658119|34001404822|2 +667650|34001404824|2 +672328|34001404825|2 +722189|34001404830|2 +730780|34001404833|2 +851757|34001404850|2 +888084|34001404853|2 +716232|34001406723|2 +679294|34001406724|2 +652350|34001406752|2 +686679|34001406762|2 +723809|34001406764|2 +846734|34001406765|2 +791998|34001407294|2 +874535|34001408223|2 +742610|34001408239|2 +546403|34001408242|2 +487979|34001408243|2 +587541|34001408255|2 +693237|34001409087|2 +635720|34001409088|2 +472757|34001409089|2 +717540|34001409142|2 +715179|34001409423|2 +890365|34001410201|2 +657272|34001410211|2 +525178|34001410219|2 +884404|34001411477|2 +748082|34001411479|4 +744483|34001411481|2 +681123|34001411483|4 +640535|34001411485|2 +615660|34001411490|2 +552085|34001411495|2 +492483|34001411497|2 +489713|34001411498|2 +485509|34001411544|2 +896543|34001412369|2 +891886|34001412370|2 +860949|34001412371|2 +760154|34001412372|2 +583128|34001412373|2 +844874|34001413174|2 +781932|34001413175|2 +626300|34001413206|2 +467474|34001413438|2 +501869|34001413439|2 +496273|34001413620|2 +837013|34001415473|8 +722845|34001415477|2 +640536|34001415480|2 +590052|34001415486|2 +502427|34001415488|2 +737012|34001415516|2 +715472|34001415522|2 +544190|34001415524|2 +529209|34001415940|2 +508096|34001415946|2 +471398|34001415948|2 +722949|34001415949|2 +802118|34001418758|2 +766083|34001418763|2 +714574|34001418766|2 +704813|34001418767|2 +695742|34001418768|2 +644823|34001418771|2 +640035|34001418775|2 +607567|34001418778|2 +598516|34001418780|2 +564743|34001418783|2 +526400|34001418793|2 +506290|34001419378|2 +844579|34001419441|2 +804435|34001419442|2 +773669|34001419453|2 +756399|34001419455|2 +698108|34001419456|2 +683474|34001419459|2 +683501|34001419460|2 +518988|34001419467|2 +497422|34001419469|2 +708060|34001419721|2 +588219|34001419731|2 +521791|34001419918|2 +512161|34001419922|2 +477514|34001419951|2 +590049|34001419976|2 +746087|34001420093|2 +753333|34001420105|2 +762383|34001420142|2 +794516|34001420162|2 +854366|34001422180|2 +471017|34001422181|2 +882045|34001422200|2 +618741|34001422297|2 +486114|34001422301|2 +661028|34001422314|2 +882136|34001422317|2 +660706|34001425862|2 +480777|34001425914|2 +487746|34001425933|2 +510328|34001425939|2 +531030|34001425950|2 +532512|34001425952|2 +560465|34001426052|2 +583169|34001426055|2 +603019|34001426059|2 +611748|34001426062|2 +660099|34001426070|2 +669601|34001426073|4 +706132|34001426091|2 +717126|34001426096|2 +775722|34001426101|2 +790974|34001426102|2 +791305|34001426103|2 +855242|34001426108|2 +884761|34001426124|2 +706078|34001427153|2 +769497|34001428990|2 +583432|34001429043|2 +858265|34001429138|2 +675898|34001429457|4 +774864|34001429459|2 +742747|34001429627|2 +953764|34001429696|2 +637394|34001429983|2 +492352|34001430534|2 +607404|34001430540|2 +848094|34001430553|2 +653775|34001430555|2 +836284|34001430573|4 +706768|34001430581|2 +892104|34001430653|2 +740629|34001430670|2 +630591|34001430674|2 +455507|34001435709|2 +470648|34001435717|2 +499347|34001435732|2 +502590|34001435733|2 +543839|34001435736|2 +656493|34001435747|2 +676260|34001435748|2 +677631|34001435750|2 +689707|34001435751|2 +702152|34001435752|2 +717306|34001435755|2 +846317|34001435759|2 +517925|34001436053|2 +780112|34001436269|2 +558617|34001439917|2 +701106|34001439922|2 +720215|34001439923|2 +720216|34001439924|2 +797181|34001439925|2 +836094|34001439926|4 +881785|34001439927|2 +898023|34001439928|2 +737324|34001439965|2 +794517|34001439967|2 +519688|34001440285|2 +518600|34001440927|2 +748803|34001440930|2 +736353|34001441721|2 +553016|34001441725|2 +590041|34001442535|2 +675816|34001442536|2 +754984|34001442537|2 +576400|34001442957|2 +654589|34001443660|2 +1167027|34001443662|2 +1164075|34001443663|2 +602651|34001443910|2 +659590|34001443911|2 +756398|34001443912|2 +676453|34001444342|2 +756048|34001444344|2 +652819|34001445524|2 +716932|34001445573|2 +728097|34001445574|2 +878926|34001445579|2 +654629|34001445887|2 +516206|34001446785|2 +552692|34001446786|2 +854618|34001446788|2 +969249|34001446789|2 +492684|34001446924|2 +644496|34001446926|2 +457984|34001447227|2 +529856|34001447231|2 +558632|34001447232|2 +559980|34001447233|2 +583173|34001447234|2 +673989|34001447235|2 +675027|34001447236|2 +696462|34001447237|2 +698774|34001447238|2 +719050|34001447239|2 +746905|34001447240|2 +822142|34001447243|2 +838837|34001447245|4 +1013075|34001447307|2 +612698|34001447340|2 +699986|34001447341|2 +706769|34001447347|2 +614535|34001449898|2 +705136|34001449925|2 +604549|34001450529|2 +472316|34001450732|2 +508507|34001450734|4 +537964|34001450736|2 +563678|34001450737|2 +584050|34001450738|2 +599207|34001450740|2 +602791|34001450741|2 +612798|34001450742|2 +630765|34001450744|2 +634868|34001450745|2 +659900|34001450749|2 +675689|34001450750|2 +848167|34001450755|2 +865874|34001450756|2 +673604|34001451070|2 +688874|34001451071|2 +766224|34001451138|2 +510842|34001451173|2 +474606|34001451202|2 +735802|34001451243|2 +719817|34001451680|2 +652444|34001451812|2 +836334|34001451813|4 +858891|34001452123|2 +649483|34001452832|2 +716038|34001452834|2 +696387|34001452902|2 +583410|34001453225|2 +793778|34001453226|2 +793700|34001453488|2 +715913|34001453606|2 +716432|34001453607|2 +724432|34001453608|2 +705933|34001453627|2 +653108|34001453628|2 +888201|34001453813|2 +646937|34001454192|2 +850840|34001454193|2 +806441|34001454548|2 +498188|34001455490|2 +543528|34001455504|2 +716961|34001455505|2 +725581|34001455506|2 +751405|34001456594|2 +860205|34001456862|2 +472421|34001456863|2 +882322|34001456864|2 +1168460|34001456867|2 +454974|34001457028|2 +783595|34001457029|2 +667651|34001457306|2 +874614|34001457311|2 +515904|34001457540|2 +779888|34001457649|2 +828025|34001457650|4 +512507|34001458860|4 +507468|34001459090|2 +608888|34001459091|2 +598902|34001459335|2 +864535|34001459427|2 +494534|34001459544|2 +529096|34001460598|2 +540301|34001460600|2 +544121|34001460602|2 +564969|34001460603|2 +766075|34001460604|2 +777730|34001460606|2 +780773|34001460607|2 +892276|34001460608|2 +1008334|34001460611|2 +542934|34001460684|2 +893186|34001460893|2 +542968|34001461367|2 +544189|34001461368|2 +659551|34001461384|2 +805700|34001461538|2 +522437|34001462300|2 +826943|34001462695|4 +574173|34001462788|2 +580029|34001462790|2 +629202|34001462792|2 +604318|34001464797|2 +688547|34001464798|2 +795834|34001464799|2 +765320|34001464802|2 +806183|34001464803|2 +865365|34001465382|2 +734081|34001465513|4 +594252|34001465740|2 +1047478|34001465787|2 +472916|34001466124|2 +637711|34001466557|2 +683671|34001466631|2 +867213|34001466984|2 +510665|34001467002|2 +466365|34001467171|2 +765359|34001467904|2 +492835|34001468113|2 +664030|34001468115|2 +663515|34001468348|2 +603663|34001468449|2 +717832|34001468496|2 +617231|34001468770|2 +835866|34001468891|4 +473248|34001469143|2 +489252|34001469144|2 +508865|34001469145|2 +508866|34001469146|2 +527314|34001469147|2 +639034|34001469148|2 +833428|34001469149|4 +590591|34001469278|2 +697559|34001469298|2 +455072|34001471386|2 +675237|34001471597|2 +722162|34001471620|2 +722159|34001471621|2 +838027|34001471626|4 +547506|34001471740|2 +601275|34001471741|2 +888815|34001471742|2 +730706|34001471993|4 +545341|34001473959|2 +545339|34001473961|2 +560724|34001473962|2 +540296|34001474190|2 +542599|34001474210|2 +672235|34001474214|2 +592496|34001474533|2 +683502|34001474534|2 +732218|34001474547|2 +745394|34001474550|2 +799821|34001474554|2 +827226|34001474557|4 +836039|34001474559|4 +884544|34001475034|2 +556825|34001475087|2 +865364|34001475407|2 +623657|34001475568|2 +705584|34001476364|2 +548401|34001476509|2 +688689|34001476765|2 +497419|34001476929|2 +639370|34001476932|2 +756793|34001476933|2 +887781|34001476934|2 +513005|34001478069|2 +635401|34001478360|2 +654861|34001478362|2 +785244|34001478363|2 +736341|34001478365|2 +570626|34001479884|2 +597360|34001479886|2 +719295|34001479898|2 +738421|34001479903|2 +850016|34001479904|2 +879356|34001479910|2 +491041|34001480626|2 +492852|34001480636|2 +573137|34001480647|2 +576144|34001480648|2 +598650|34001480656|2 +491858|34001480662|2 +801496|34001480731|2 +853904|34001480733|2 +526398|34001481134|2 +463311|34001481808|2 +719297|34001482047|2 +587631|34001482528|2 +524192|34001482539|2 +611938|34001482555|2 +677966|34001482559|2 +657183|34001482631|2 +502856|34001482640|2 +677962|34001482667|2 +837532|34001482691|4 +466492|34001482694|2 +740468|34001482701|2 +670672|34001482719|2 +879076|34001482726|2 +633019|34001482727|2 +675025|34001482729|2 +875657|34001482732|2 +675026|34001482739|2 +523372|34001482743|2 +898120|34001482748|2 +700091|34001482756|2 +623951|34001482759|2 +490660|34001482773|2 +890308|34001482792|2 +756714|34001483318|2 +756760|34001483319|2 +719286|34001483322|2 +547969|34001483331|2 +685027|34001483337|2 +558462|34001483635|2 +578921|34001483794|2 +598903|34001483797|2 +787984|34001483800|2 +862977|34001483802|2 +644484|34001484562|2 +670282|34001486351|2 +672334|34001486353|2 +835106|34001486356|6 +719296|34001486670|2 +478809|34001488032|2 +489261|34001488033|2 +663880|34001488063|2 +717093|34001488064|2 +746637|34001488065|2 +750512|34001488068|2 +751146|34001488070|2 +753769|34001488072|2 +789593|34001488075|2 +801562|34001488077|2 +536353|34001488301|2 +647720|34001488480|2 +584884|34001488801|2 +616979|34001488929|2 +756790|34001488933|2 +753770|34001491082|2 +797050|34001492262|2 +663525|34001492263|2 +700780|34001492455|2 +754064|34001492479|2 +716933|34001492557|2 +777886|34001492559|2 +822143|34001492580|2 +868613|34001492589|2 +899042|34001492595|2 +661131|34001492696|2 +540846|34001493220|2 +531437|34001493450|2 +638747|34001493471|2 +691490|34001493701|2 +730947|34001493708|2 +848698|34001493761|2 +642226|34001494491|2 +604459|34001494754|2 +894055|34001494888|2 +483974|34001495472|2 +523984|34001495473|2 +753266|34001495474|2 +734162|34001495643|2 +587463|34001495833|2 +543910|34001496171|2 +630706|34001496172|2 +743344|34001496173|2 +525573|34001496206|2 +467435|34001496288|2 +549864|34001496289|2 +584607|34001496290|2 +623879|34001496440|2 +453558|34001496621|2 +561150|34001496624|2 +705207|34001496625|2 +517829|34001497165|2 +601298|34001497167|2 +615144|34001497169|2 +842453|34001497172|2 +470262|34001497679|4 +566737|34001498176|2 +1234190|34001498305|2 +531394|34001498778|2 +623569|34001498780|2 +488489|34001499446|2 +717499|34001499448|2 +493640|34001499759|2 +681410|34001500481|2 +550105|34001500521|2 +668258|34001500522|2 +808421|34001500588|2 +807414|34001500593|2 +763106|34001501185|2 +635587|34001501374|2 +614075|34001501429|2 +628151|34001501430|2 +679604|34001501431|2 +895008|34001501849|2 +484763|34001501862|2 +484769|34001501863|2 +780370|34001501885|2 +553986|34001502215|2 +557397|34001502297|2 +460208|34001502822|2 +708603|34001502823|2 +796656|34001502826|2 +676457|34001502981|2 +571364|34001504139|2 +629647|34001504258|2 +673474|34001504572|2 +711594|34001504573|2 +838766|34001504576|4 +893268|34001504580|2 +654163|34001504877|2 +722849|34001504879|2 +536029|34001505137|2 +646257|34001505641|2 +785335|34001505736|2 +886764|34001505739|2 +635736|34001506409|2 +741557|34001506574|2 +528984|34001507436|2 +629942|34001507441|2 +665183|34001507442|2 +754196|34001507463|2 +547970|34001507607|2 +769312|34001508048|2 +504041|34001508687|2 +884011|34001508709|2 +681509|34001508814|2 +522364|34001508914|2 +614783|34001509306|2 +463918|34001510578|2 +498404|34001510579|2 +887527|34001510588|2 +452057|34001511027|2 +626700|34001511145|2 +689891|34001511151|2 +766074|34001511193|2 +780430|34001511197|2 +502544|34001511286|2 +827514|34001511407|4 +546422|34001512635|2 +479329|34001513124|2 +525449|34001513127|2 +497285|34001513274|2 +688560|34001513495|2 +802392|34001513600|2 +698569|34001513604|2 +802393|34001513722|2 +854975|34001513726|2 +461245|34001513900|2 +455893|34001514062|2 +836777|34001514074|4 +760575|34001514196|2 +525483|34001515080|2 +651761|34001515104|2 +891387|34001515191|2 +884542|34001515534|2 +556109|34001515553|2 +505933|34001516331|2 +688546|34001516353|2 +467072|34001516919|2 +1006873|34001516930|2 +882137|34001517042|2 +786277|34001517264|2 +802428|34001517265|2 +802360|34001517266|2 +882397|34001517267|2 +535937|34001517330|2 +569612|34001517919|2 +775467|34001518111|2 +801877|34001518114|2 +611338|34001518203|2 +464743|34001518216|2 +531559|34001518372|4 +459274|34001518375|2 +649484|34001518395|2 +764442|34001518763|2 +764443|34001518767|2 +621740|34001518927|2 +634882|34001518928|2 +789694|34001518929|2 +790621|34001518936|2 +521931|34001519184|2 +976731|34001519188|2 +552005|34001519222|2 +556118|34001519227|2 +1204559|34001519231|2 +483063|34001519642|2 +628132|34001519836|2 +762667|34001519838|2 +499074|34001520398|2 +555989|34001520631|2 +719808|34001520633|2 +638137|34001520636|2 +899967|34001521109|2 +756877|34001521216|2 +637015|34001521337|2 +678567|34001521542|2 +557523|34001521682|2 +625242|34001521684|2 +775893|34001521823|2 +618475|34001521942|2 +546036|34001521955|2 +550888|34001521984|2 +612561|34001521985|2 +724075|34001521993|2 +875633|34001522187|2 +875639|34001522188|2 +565948|34001522189|2 +837851|34001522324|4 +897457|34001522658|2 +630138|34001522903|2 +883619|34001523100|2 +801188|34001523346|2 +523240|34001523712|2 +660333|34001523786|2 +1204560|34001523995|2 +826686|34001523996|4 +460472|34001524034|2 +807707|34001524708|2 +717223|34001525109|2 +787867|34001525519|2 +794569|34001525560|2 +542698|34001526565|2 +494527|34001526566|2 +459955|34001526793|2 +552195|34001526813|2 +718385|34001527181|2 +839726|34001527219|4 +643174|34001527222|2 +679605|34001527223|2 +663336|34001527302|2 +710052|34001527303|2 +554348|34001527314|2 +674286|34001528074|2 +674287|34001528075|2 +969783|34001528550|2 +894023|34001528562|2 +849207|34001528564|2 +586719|34001528849|2 +756022|34001528859|2 +590765|34001528861|2 +547103|34001529061|2 +558251|34001529062|2 +891604|34001529079|2 +506416|34001529288|2 +522363|34001529290|2 +508151|34001529296|2 +648477|34001529370|2 +742606|34001529592|2 +680582|34001530149|4 +524526|34001530150|2 +856944|34001530415|2 +527249|34001530823|2 +853043|34001530959|2 +541419|34001531268|2 +843997|34001531612|2 +692214|34001531620|2 +678462|34001532077|2 +696469|34001532191|2 +759666|34001532193|2 +877138|34001532199|2 +637708|34001532290|4 +829441|34001532410|4 +767064|34001533283|2 +476500|34001533290|2 +742964|34001533764|2 +632700|34001533841|2 +529382|34001533842|2 +869101|34001533850|2 +709609|34001533988|2 +532444|34001534027|2 +532451|34001534028|2 +574331|34001534029|2 +750934|34001534057|2 +487612|34001534058|2 +581717|34001534059|2 +850392|34001534223|2 +853296|34001534224|2 +741231|34001534229|2 +717214|34001534237|2 +467010|34001534238|2 +495696|34001534447|2 +495182|34001534462|2 +785661|34001534465|2 +479327|34001534470|2 +510248|34001534474|2 +489285|34001534477|2 +559962|34001534481|2 +468827|34001534488|2 +569034|34001534492|2 +767086|34001534560|2 +883216|34001534780|4 +899421|34001534802|2 +467073|34001535719|2 +600254|34001535933|2 +558638|34001536263|2 +753503|34001536864|2 +635007|34001536897|2 +765658|34001536909|2 +693193|34001536921|2 +886967|34001536927|2 +563647|34001538339|2 +563648|34001538454|2 +939834|34001538597|2 +493804|34001538603|2 +510152|34001538619|2 +740580|34001538654|2 +853855|34001538755|2 +750159|34001538783|2 +594224|34001539889|2 +553575|34001540340|2 +719347|34001540346|2 +719352|34001540348|2 +512160|34001540366|2 +480783|34001540472|2 +581497|34001540473|2 +893749|34001540478|2 +869255|34001540485|2 +702206|34001540486|2 +487817|34001540488|2 +548199|34001540522|2 +792709|34001540523|2 +696261|34001540708|2 +557090|34001541207|2 +650077|34001542091|2 +537224|34001542539|2 +464081|34001542551|2 +803438|34001542568|2 +858669|34001542593|2 +590051|34001542680|2 +478452|34001542686|2 +643308|34001542736|2 +652592|34001543233|2 +802372|34001543252|2 +576568|34001543718|2 +841634|34001544055|2 +628491|34001544065|2 +1013076|34001544213|2 +750859|34001546616|2 +789478|34001546622|2 +595376|34001546679|2 +523368|34001546682|2 +791364|34001546978|2 +490970|34001546985|2 +763204|34001548687|2 +790157|34001548855|2 +467553|34001548883|4 +697103|34001549188|2 +735415|34001549269|2 +554736|34001551800|2 +728314|34001551804|2 +502652|34001551807|2 +502575|34001551821|2 +699303|34001551852|2 +530591|34001551861|2 +701477|34001551900|2 +454376|34001551910|2 +763146|34001551914|2 +567410|34001551921|2 +502576|34001551932|2 +733696|34001552275|2 +453475|34001552294|2 +533203|34001552747|2 +801804|34001553707|2 +599049|34001553711|2 +742587|34001553811|2 +469227|34001554329|2 +538019|34001554590|2 +525394|34001555099|2 +498297|34001555176|2 +611749|34001555178|2 +463989|34001555181|2 +537352|34001555226|2 +625848|34001555227|2 +884860|34001555228|2 +750324|34001555234|2 +452812|34001555453|2 +682747|34001555460|2 +685708|34001555466|2 +899945|34001555470|2 +547971|34001555538|2 +584822|34001555543|2 +641697|34001555722|2 +897461|34001555766|2 +779816|34001555767|2 +481255|34001555794|2 +785969|34001556255|2 +610713|34001556256|2 +610711|34001556258|2 +546401|34001556498|2 +554047|34001556524|2 +854653|34001556576|2 +854655|34001556577|2 +651535|34001556584|2 +619364|34001556588|2 +842003|34001557261|2 +609763|34001557550|2 +620653|34001558084|2 +496018|34001558401|2 +648971|34001558528|2 +559538|34001558979|2 +452050|34001559275|2 +724076|34001559685|2 +762363|34001560077|2 +468754|34001560214|2 +468753|34001560216|2 +575088|34001560307|2 +681081|34001560308|2 +873071|34001560311|2 +602905|34001560721|2 +588868|34001560723|2 +576123|34001561274|2 +510433|34001561411|2 +591526|34001561644|2 +592083|34001561645|2 +557524|34001561648|2 +1172535|34001561672|2 +552900|34001561963|2 +526103|34001562328|2 +752873|34001562333|2 +869715|34001562647|2 +838678|34001562650|4 +468244|34001562654|2 +803447|34001562676|2 +636504|34001562680|2 +790972|34001562943|2 +466068|34001562948|2 +840259|34001562950|4 +854614|34001562951|2 +696080|34001564093|2 +574772|34001564096|2 +700427|34001564097|2 +865630|34001564154|2 +554964|34001564209|2 +674634|34001564300|2 +548193|34001564506|2 +628480|34001564516|2 +666918|34001564517|2 +770940|34001564976|2 +586444|34001565618|2 +586380|34001565619|2 +579338|34001565621|2 +692854|34001565622|2 +727976|34001565623|2 +569001|34001565795|2 +458377|34001565798|2 +512927|34001566290|2 +865893|34001566291|2 +865806|34001566292|2 +666312|34001566303|2 +519692|34001566421|2 +565191|34001566422|2 +631555|34001566425|2 +826087|34001566474|4 +609028|34001566667|2 +1155537|34001566671|2 +793270|34001566737|2 +793269|34001566738|2 +892973|34001566854|2 +667358|34001567056|2 +548970|34001567144|2 +548856|34001567146|2 +492814|34001567459|4 +651743|34001567480|2 +579173|34001567483|2 +510923|34001567655|2 +510835|34001567658|2 +704581|34001567666|2 +756828|34001567669|2 +791658|34001568217|2 +595314|34001568445|2 +681411|34001568511|2 +897089|34001568738|2 +800673|34001568776|2 +704582|34001568970|2 +612774|34001569237|2 +725519|34001569695|2 +595102|34001569703|2 +669773|34001569704|2 +787853|34001569705|2 +802066|34001569707|2 +732938|34001569708|2 +609371|34001569978|2 +620620|34001569987|2 +643223|34001569988|2 +797929|34001569989|2 +602668|34001570091|2 +790212|34001570093|2 +510286|34001570245|2 +629063|34001570548|2 +953138|34001570603|2 +864227|34001570913|2 +520987|34001570915|2 +772753|34001571450|2 +735005|34001571646|2 +539199|34001571730|2 +573294|34001571960|2 +654588|34001571961|2 +675029|34001571962|2 +652232|34001572140|2 +864582|34001572164|2 +783165|34001572365|2 +678049|34001572372|2 +678045|34001572373|2 +741337|34001572375|2 +471359|34001572489|2 +796442|34001572509|2 +796391|34001572816|2 +804598|34001572883|2 +545953|34001572898|2 +552901|34001573214|2 +614837|34001573220|4 +687910|34001573599|2 +578978|34001573600|2 +478651|34001573608|2 +653313|34001573808|2 +872693|34001574144|2 +776862|34001574147|2 +536904|34001574588|2 +693307|34001574597|2 +650674|34001574881|2 +719198|34001574882|2 +554015|34001575070|2 +720692|34001575071|2 +787829|34001575135|2 +610714|34001575238|2 +493899|34001575493|2 +689882|34001575540|2 +493900|34001575545|2 +676439|34001575555|2 +511740|34001575707|2 +547104|34001575708|2 +490925|34001576126|2 +585836|34001576434|2 +529855|34001576714|2 +646087|34001576716|2 +614787|34001576888|2 +855544|34001576896|2 +516327|34001577257|2 +516328|34001577258|2 +546303|34001577262|2 +791439|34001577270|2 +535641|34001577539|2 +550908|34001577540|2 +653233|34001577551|2 +722560|34001577607|2 +845965|34001577609|2 +451291|35000363345|4 +451304|35000363346|4 +451401|35000363350|2 +451392|35000363351|2 +451404|35000363355|2 +451465|35000363357|2 +451450|35000363358|2 +451472|35000363359|2 +451470|35000363363|2 +451468|35000363364|2 +451455|35000363367|2 +451524|35000363370|2 +451521|35000363371|2 +451525|35000363372|2 +451599|35000363375|2 +451605|35000363376|2 +451722|35000363377|2 +451675|35000363379|2 +451663|35000363382|2 +451679|35000363383|2 +451684|35000363385|2 +451672|35000363390|2 +451734|35000363391|2 +451676|35000363394|2 +451816|35000363397|2 +451847|35000363399|2 +451883|35000363402|2 +451980|35000363405|2 +451979|35000363407|2 +451982|35000363408|2 +452028|35000363414|2 +452168|35000363416|2 +452166|35000363417|2 +452170|35000363418|2 +452234|35000363422|2 +452238|35000363424|2 +452251|35000363425|2 +452255|35000363426|2 +452254|35000363427|2 +452258|35000363428|2 +452259|35000363429|2 +452293|35000363431|2 +452334|35000363433|2 +452337|35000363435|2 +452360|35000363436|2 +452359|35000363437|2 +452412|35000363438|2 +452396|35000363439|2 +452399|35000363440|2 +452486|35000363441|2 +452474|35000363443|2 +452462|35000363445|2 +452487|35000363451|2 +452473|35000363452|2 +452517|35000363455|2 +452512|35000363456|2 +452783|35000363459|2 +452956|35000363461|2 +452978|35000363462|2 +452965|35000363463|2 +452979|35000363464|2 +452957|35000363465|2 +453157|35000363468|2 +453127|35000363469|2 +453140|35000363470|2 +453404|35000363471|2 +453507|35000363472|2 +453534|35000363473|2 +453624|35000363483|2 +453623|35000363484|2 +453897|35000363485|2 +453903|35000363488|2 +453900|35000363489|2 +453976|35000363491|2 +453970|35000363492|2 +453968|35000363493|2 +454039|35000363495|2 +454036|35000363496|4 +454049|35000363497|2 +454050|35000363498|2 +454044|35000363499|2 +454048|35000363500|2 +454078|35000363501|2 +454200|35000363503|2 +454125|35000363504|2 +454201|35000363506|2 +454213|35000363509|2 +454206|35000363510|2 +454736|35000363511|2 +454602|35000363512|2 +454461|35000363513|2 +454438|35000363514|2 +454470|35000363515|2 +454632|35000363516|2 +454790|35000363521|2 +454808|35000363524|2 +454405|35000363525|2 +454606|35000363528|2 +454544|35000363531|2 +454864|35000363532|2 +454406|35000363533|2 +454442|35000363534|2 +454910|35000363535|2 +454959|35000363536|2 +454952|35000363538|2 +454588|35000363539|2 +454439|35000363540|2 +454755|35000363543|4 +454603|35000363547|2 +454452|35000363550|2 +454328|35000363552|2 +454364|35000363553|2 +454545|35000363554|2 +454901|35000363557|2 +454789|35000363558|2 +454803|35000363559|2 +454909|35000363561|2 +455052|35000363568|2 +455068|35000363569|2 +473438|35000363570|2 +455071|35000363571|2 +455093|35000363572|2 +455329|35000363575|2 +455353|35000363577|2 +455620|35000363582|2 +455619|35000363583|2 +455621|35000363584|2 +455654|35000363587|2 +455708|35000363588|2 +455707|35000363589|2 +455773|35000363590|2 +455966|35000363592|2 +455964|35000363593|2 +455965|35000363594|2 +455967|35000363595|2 +456067|35000363596|2 +456068|35000363597|2 +456118|35000363602|2 +456114|35000363603|2 +456117|35000363604|2 +456132|35000363606|2 +456134|35000363609|2 +456126|35000363611|2 +456116|35000363612|2 +456104|35000363613|2 +456279|35000363614|2 +456348|35000363616|2 +456352|35000363617|2 +456351|35000363620|2 +456392|35000363622|2 +456429|35000363623|2 +456433|35000363624|2 +456518|35000363627|2 +456546|35000363628|2 +456655|35000363629|2 +787884|35000363631|2 +456593|35000363632|2 +456733|35000363633|2 +456913|35000363635|2 +456925|35000363638|2 +456959|35000363643|2 +457059|35000363644|2 +457078|35000363647|2 +457083|35000363649|2 +457096|35000363650|2 +457100|35000363651|2 +457101|35000363654|2 +457097|35000363655|2 +457227|35000363659|2 +457243|35000363665|2 +457253|35000363668|2 +457355|35000363672|2 +683666|35000363676|2 +457464|35000363680|2 +457570|35000363682|2 +457651|35000363686|2 +457674|35000363687|2 +457748|35000363691|2 +457931|35000363693|2 +457929|35000363694|2 +457950|35000363695|2 +457954|35000363696|2 +457939|35000363698|2 +458110|35000363700|2 +458276|35000363703|2 +458497|35000363710|2 +458533|35000363711|2 +458512|35000363713|2 +458629|35000363719|2 +458598|35000363720|2 +458640|35000363721|2 +458676|35000363723|2 +458682|35000363725|2 +458816|35000363728|2 +458762|35000363729|2 +458978|35000363731|2 +458963|35000363733|2 +458975|35000363734|2 +459056|35000363735|2 +459109|35000363736|2 +459106|35000363737|2 +459133|35000363739|2 +459141|35000363741|2 +459157|35000363742|2 +459156|35000363743|2 +459161|35000363744|2 +582110|35000363745|2 +459160|35000363746|2 +459173|35000363748|2 +459190|35000363749|2 +459267|35000363750|2 +459287|35000363751|2 +459336|35000363755|4 +459842|35000363756|2 +459819|35000363758|2 +459857|35000363759|2 +459793|35000363760|2 +459758|35000363761|2 +459789|35000363763|2 +459814|35000363764|2 +459828|35000363765|2 +459865|35000363766|2 +459761|35000363767|2 +459840|35000363768|2 +459868|35000363769|2 +459907|35000363770|2 +459900|35000363771|2 +459896|35000363772|2 +459901|35000363773|2 +459893|35000363774|2 +460033|35000363776|2 +460027|35000363778|2 +460038|35000363780|2 +460079|35000363782|2 +460097|35000363783|2 +460077|35000363785|2 +460086|35000363786|2 +460342|35000363790|2 +460404|35000363791|2 +460327|35000363794|2 +460131|35000363795|2 +460132|35000363797|2 +460219|35000363798|2 +460220|35000363799|2 +460172|35000363801|2 +460206|35000363803|2 +460224|35000363804|2 +460416|35000363805|2 +460290|35000363806|2 +460223|35000363807|2 +460248|35000363809|2 +460397|35000363810|2 +460225|35000363812|2 +460396|35000363815|2 +460566|35000363818|2 +460576|35000363819|2 +460552|35000363820|2 +460572|35000363821|2 +512392|35000363824|2 +460661|35000363826|2 +460705|35000363831|2 +460744|35000363832|2 +460742|35000363833|2 +460809|35000363835|2 +460877|35000363837|2 +460902|35000363838|2 +461174|35000363845|2 +461269|35000363851|2 +461273|35000363852|2 +461276|35000363855|2 +461317|35000363856|2 +461321|35000363859|2 +461299|35000363860|2 +461312|35000363861|2 +461342|35000363862|2 +461343|35000363863|2 +461322|35000363864|2 +461388|35000363870|2 +461609|35000363872|2 +461535|35000363877|2 +461651|35000363881|2 +461796|35000363889|2 +461799|35000363892|2 +461801|35000363894|2 +461802|35000363895|2 +462636|35000363898|2 +461840|35000363904|2 +462594|35000363906|2 +461838|35000363909|2 +462191|35000363910|2 +462673|35000363915|2 +461956|35000363916|2 +462482|35000363917|2 +462427|35000363918|2 +461906|35000363920|2 +462386|35000363921|2 +462656|35000363922|2 +462684|35000363923|2 +461942|35000363924|2 +462231|35000363926|2 +462432|35000363932|2 +462077|35000363935|2 +461903|35000363937|2 +462657|35000363940|2 +462276|35000363941|2 +462294|35000363942|2 +462635|35000363946|2 +462516|35000363947|4 +462078|35000363949|2 +462685|35000363950|2 +549847|35000363951|2 +461839|35000363953|2 +462079|35000363955|2 +461878|35000363956|2 +462503|35000363959|2 +462336|35000363960|2 +461957|35000363962|2 +462232|35000363966|2 +462750|35000363970|2 +462643|35000363973|2 +462716|35000363975|2 +462132|35000363976|2 +462473|35000363977|2 +462776|35000363980|2 +462800|35000363982|2 +462811|35000363983|2 +462817|35000363984|2 +462904|35000363985|2 +462902|35000363988|2 +462927|35000363989|2 +462956|35000363992|2 +462966|35000363993|2 +462988|35000363994|2 +463015|35000363995|2 +463030|35000363998|2 +463031|35000363999|2 +463029|35000364000|2 +463039|35000364001|2 +463036|35000364002|4 +463040|35000364003|2 +463052|35000364004|2 +463057|35000364007|2 +463073|35000364010|2 +463114|35000364011|2 +463118|35000364012|2 +463198|35000364013|2 +463532|35000364015|2 +464016|35000364017|2 +463878|35000364018|2 +463681|35000364020|2 +463636|35000364023|2 +463509|35000364025|2 +463637|35000364026|2 +463847|35000364027|2 +742611|35000364030|2 +755161|35000364032|2 +464188|35000364033|2 +464187|35000364034|2 +664909|35000364036|2 +464538|35000364037|2 +464432|35000364040|2 +464528|35000364041|2 +464405|35000364043|2 +464489|35000364044|2 +464332|35000364045|2 +464333|35000364046|2 +464539|35000364047|2 +464550|35000364048|2 +464511|35000364049|2 +464340|35000364050|2 +464603|35000364056|2 +464636|35000364058|2 +464682|35000364060|2 +464781|35000364061|2 +464798|35000364063|2 +464784|35000364064|2 +464903|35000364067|2 +464909|35000364068|2 +464894|35000364069|2 +464912|35000364070|2 +465072|35000364080|2 +465093|35000364081|2 +465107|35000364083|2 +465099|35000364084|2 +465094|35000364085|2 +465075|35000364088|2 +465050|35000364089|2 +465198|35000364095|2 +465212|35000364096|2 +465229|35000364097|2 +465227|35000364098|2 +465594|35000364101|2 +465915|35000364102|2 +466156|35000364106|2 +466364|35000364108|2 +466157|35000364109|2 +466460|35000364112|2 +466516|35000364113|2 +466237|35000364114|2 +466028|35000364115|2 +466014|35000364116|2 +466223|35000364118|2 +466122|35000364119|2 +466756|35000364123|2 +466867|35000364129|2 +466926|35000364131|2 +466927|35000364133|2 +466940|35000364135|2 +466947|35000364138|2 +669038|35000364141|2 +467101|35000364142|2 +467506|35000364144|2 +467590|35000364145|2 +467591|35000364147|2 +467194|35000364148|2 +467358|35000364149|2 +467393|35000364150|2 +467379|35000364152|2 +467413|35000364155|2 +467138|35000364156|4 +467249|35000364159|2 +467410|35000364160|2 +467394|35000364161|2 +467342|35000364162|2 +467507|35000364163|2 +467247|35000364167|2 +467090|35000364169|2 +467411|35000364171|2 +467525|35000364172|2 +467561|35000364173|2 +467350|35000364174|2 +467579|35000364176|2 +467543|35000364177|4 +467301|35000364179|2 +467764|35000364182|2 +467786|35000364183|2 +467844|35000364185|2 +467796|35000364186|2 +467861|35000364189|2 +467860|35000364190|2 +467839|35000364191|2 +467832|35000364192|2 +467868|35000364193|2 +467977|35000364198|2 +467978|35000364199|2 +468037|35000364202|2 +468043|35000364203|2 +468063|35000364204|2 +468159|35000364210|2 +468305|35000364214|2 +468301|35000364215|2 +468302|35000364216|2 +468375|35000364218|2 +468355|35000364220|2 +468475|35000364224|2 +468536|35000364225|2 +468518|35000364226|2 +468512|35000364227|2 +468493|35000364228|2 +468556|35000364229|2 +468522|35000364230|2 +468561|35000364231|2 +468489|35000364233|2 +468559|35000364234|2 +468569|35000364235|2 +468570|35000364236|2 +546346|35000364237|2 +468657|35000364239|2 +468631|35000364241|2 +468636|35000364242|2 +468654|35000364245|2 +468658|35000364246|2 +468655|35000364247|2 +468646|35000364248|2 +468901|35000364255|2 +468939|35000364258|2 +468971|35000364261|2 +469096|35000364267|2 +469085|35000364269|2 +469103|35000364272|2 +469123|35000364273|2 +470006|35000364275|2 +470610|35000364278|2 +575482|35000364280|2 +469490|35000364283|2 +470522|35000364287|2 +470120|35000364288|2 +470390|35000364295|2 +470245|35000364300|4 +470428|35000364302|2 +469441|35000364303|4 +470302|35000364304|2 +470372|35000364307|2 +469380|35000364323|2 +469483|35000364324|2 +469645|35000364325|2 +469442|35000364331|4 +469689|35000364332|4 +470611|35000364333|2 +469183|35000364336|2 +470116|35000364340|2 +469935|35000364350|2 +470391|35000364351|2 +470007|35000364352|2 +469194|35000364354|2 +590019|35000364357|2 +566462|35000364360|2 +469484|35000364361|2 +470197|35000364365|2 +469229|35000364370|2 +469322|35000364371|2 +470246|35000364373|4 +470573|35000364374|2 +469690|35000364375|4 +470392|35000364382|2 +469929|35000364383|2 +469540|35000364384|4 +469171|35000364385|2 +469541|35000364387|4 +470565|35000364390|2 +469930|35000364392|2 +742923|35000364393|2 +469413|35000364397|2 +469828|35000364398|2 +612128|35000364400|2 +469341|35000364403|2 +470533|35000364408|2 +469170|35000364410|2 +469796|35000364418|4 +470373|35000364419|2 +469700|35000364421|2 +469928|35000364427|2 +469514|35000364428|2 +469578|35000364429|2 +470661|35000364437|2 +470682|35000364438|2 +470752|35000364442|2 +470751|35000364443|2 +470753|35000364444|2 +470917|35000364446|2 +470805|35000364448|2 +471332|35000364449|2 +471697|35000364453|2 +471454|35000364454|2 +470990|35000364456|2 +471453|35000364461|2 +471340|35000364462|2 +471228|35000364463|2 +471691|35000364464|2 +471705|35000364465|2 +471552|35000364467|2 +470957|35000364470|2 +471539|35000364472|2 +471287|35000364473|2 +471232|35000364476|2 +471878|35000364478|2 +471958|35000364486|2 +472047|35000364489|2 +472063|35000364490|2 +472215|35000364491|2 +472216|35000364493|2 +472209|35000364494|2 +472117|35000364496|2 +472186|35000364499|2 +472034|35000364500|2 +472076|35000364501|2 +472099|35000364502|2 +472112|35000364503|2 +472016|35000364507|2 +472154|35000364508|2 +472150|35000364509|2 +764287|35000364510|2 +472024|35000364511|2 +472286|35000364513|2 +472295|35000364514|2 +472285|35000364515|2 +472733|35000364519|2 +472786|35000364520|2 +472875|35000364521|2 +472853|35000364522|2 +472406|35000364523|2 +472407|35000364525|2 +472693|35000364530|2 +472840|35000364531|2 +472803|35000364534|4 +472449|35000364536|2 +472470|35000364538|2 +472350|35000364539|2 +472694|35000364541|2 +472403|35000364542|2 +472826|35000364543|2 +472630|35000364547|2 +472494|35000364548|2 +472450|35000364550|2 +472659|35000364552|2 +472498|35000364555|2 +472518|35000364556|2 +472495|35000364557|2 +472954|35000364560|2 +472952|35000364561|2 +472993|35000364565|2 +472994|35000364566|2 +473107|35000364570|2 +473229|35000364578|2 +473217|35000364579|2 +473280|35000364580|2 +473431|35000364581|2 +473358|35000364582|2 +473282|35000364591|2 +473418|35000364593|2 +473430|35000364596|2 +473319|35000364597|2 +473371|35000364598|2 +473285|35000364602|2 +473380|35000364603|2 +473449|35000364608|2 +473469|35000364609|2 +473450|35000364610|2 +473452|35000364611|2 +473509|35000364613|2 +473510|35000364614|2 +473525|35000364617|2 +473504|35000364620|2 +473538|35000364625|2 +473540|35000364626|2 +473556|35000364628|2 +473597|35000364630|2 +473633|35000364631|2 +473618|35000364634|2 +473632|35000364635|2 +473630|35000364638|2 +473620|35000364640|2 +473626|35000364641|2 +473636|35000364643|2 +473619|35000364644|2 +473652|35000364645|2 +473646|35000364647|2 +473653|35000364648|2 +473669|35000364651|2 +473673|35000364652|2 +473687|35000364653|2 +473762|35000364654|2 +473766|35000364655|2 +473932|35000364656|2 +473936|35000364659|2 +473937|35000364660|2 +473949|35000364662|2 +474053|35000364668|2 +474121|35000364672|2 +474122|35000364673|2 +474154|35000364674|2 +474198|35000364676|2 +474424|35000364677|2 +474418|35000364678|2 +474401|35000364679|2 +474374|35000364680|2 +474444|35000364681|2 +474377|35000364682|2 +474455|35000364684|2 +474394|35000364690|2 +474276|35000364691|2 +474378|35000364692|2 +474460|35000364693|2 +474456|35000364695|2 +474312|35000364696|2 +474352|35000364697|2 +474442|35000364698|2 +474480|35000364699|2 +474318|35000364700|2 +474373|35000364701|2 +474487|35000364706|2 +474488|35000364707|2 +474602|35000364708|2 +474603|35000364709|2 +849890|35000364711|2 +474704|35000364712|2 +474840|35000364715|2 +474700|35000364716|2 +474810|35000364717|2 +474833|35000364719|2 +474757|35000364720|2 +474689|35000364721|2 +474939|35000364723|2 +474980|35000364725|2 +474985|35000364726|2 +475078|35000364730|2 +475257|35000364732|2 +475373|35000364736|2 +475368|35000364737|2 +475378|35000364739|2 +475383|35000364740|2 +475385|35000364741|2 +475391|35000364742|2 +475466|35000364743|2 +475611|35000364745|2 +475612|35000364746|2 +475618|35000364748|2 +475681|35000364750|2 +475688|35000364751|2 +475781|35000364758|2 +475795|35000364759|2 +475882|35000364761|2 +475917|35000364762|2 +578214|35000364768|2 +475973|35000364770|2 +476466|35000364773|2 +476537|35000364778|2 +476513|35000364780|2 +476531|35000364781|2 +476620|35000364787|2 +476641|35000364788|2 +476669|35000364789|2 +476921|35000364791|2 +476923|35000364792|2 +476944|35000364796|2 +476914|35000364798|2 +476945|35000364799|2 +476887|35000364800|2 +476966|35000364802|2 +476953|35000364803|2 +476997|35000364808|2 +476989|35000364812|2 +477077|35000364814|2 +477101|35000364816|2 +477155|35000364817|2 +477156|35000364818|2 +477157|35000364819|2 +477210|35000364821|2 +477330|35000364822|2 +477413|35000364824|2 +477412|35000364825|2 +477449|35000364826|2 +477453|35000364827|2 +477454|35000364828|2 +477458|35000364829|2 +477457|35000364830|2 +477456|35000364832|2 +477756|35000364837|2 +477862|35000364838|2 +477677|35000364839|2 +477963|35000364842|2 +477964|35000364843|2 +477970|35000364844|2 +478063|35000364846|2 +478075|35000364847|2 +478094|35000364848|2 +478086|35000364849|2 +478082|35000364850|2 +478095|35000364852|2 +478109|35000364854|2 +478110|35000364855|2 +478113|35000364856|2 +478115|35000364858|2 +478126|35000364859|2 +478175|35000364860|2 +478171|35000364861|2 +478173|35000364865|2 +478209|35000364869|2 +478204|35000364870|2 +478195|35000364872|2 +478196|35000364874|2 +478268|35000364881|2 +478267|35000364882|2 +478277|35000364883|2 +478280|35000364884|2 +478474|35000364889|2 +478475|35000364890|2 +478413|35000364891|2 +478554|35000364895|2 +478533|35000364896|2 +478498|35000364899|2 +478476|35000364900|2 +478395|35000364903|2 +478511|35000364905|2 +646816|35000364906|2 +478450|35000364907|2 +478340|35000364908|2 +550462|35000364909|2 +478502|35000364910|2 +478464|35000364911|2 +478451|35000364912|2 +478417|35000364913|2 +478458|35000364917|2 +478416|35000364926|2 +624500|35000364929|2 +478799|35000364931|2 +478826|35000364932|2 +478834|35000364933|2 +478795|35000364934|2 +478794|35000364936|2 +478788|35000364937|2 +479015|35000364941|2 +478909|35000364945|2 +478857|35000364946|2 +478671|35000364947|2 +478823|35000364950|2 +478924|35000364952|2 +478880|35000364953|2 +478781|35000364954|2 +478707|35000364958|2 +478779|35000364961|2 +478900|35000364962|2 +478711|35000364965|2 +479009|35000364967|2 +806956|35000364968|2 +478646|35000364969|2 +478831|35000364970|2 +478922|35000364972|2 +478899|35000364973|2 +479033|35000364975|2 +479078|35000364980|2 +479077|35000364981|2 +479146|35000364983|2 +479150|35000364984|2 +479152|35000364985|2 +601095|35000364986|2 +479170|35000364987|2 +479203|35000364988|2 +479253|35000364989|2 +479242|35000364990|2 +479214|35000364993|2 +479217|35000364994|2 +479289|35000364995|2 +479323|35000364997|2 +479322|35000364998|2 +479396|35000364999|2 +479412|35000365000|2 +479410|35000365001|2 +479459|35000365003|2 +479463|35000365004|2 +479461|35000365005|2 +479480|35000365006|2 +479482|35000365007|2 +479787|35000365012|4 +479954|35000365015|2 +479759|35000365017|2 +479904|35000365019|2 +479984|35000365020|2 +479862|35000365023|2 +479856|35000365024|2 +480050|35000365026|2 +480197|35000365027|2 +588910|35000365032|2 +480182|35000365035|2 +493316|35000365036|2 +480153|35000365038|2 +480101|35000365039|2 +480104|35000365042|2 +480175|35000365043|2 +480143|35000365044|2 +480178|35000365045|2 +480136|35000365046|2 +480208|35000365050|2 +480084|35000365051|2 +480065|35000365052|2 +480111|35000365053|2 +480102|35000365054|2 +480080|35000365055|2 +480160|35000365056|2 +480126|35000365057|2 +480231|35000365058|2 +480227|35000365059|2 +480229|35000365060|2 +480333|35000365062|2 +480321|35000365063|2 +480340|35000365065|2 +480351|35000365066|2 +480353|35000365067|2 +480354|35000365068|2 +480394|35000365070|2 +480395|35000365072|2 +480396|35000365073|2 +480420|35000365075|2 +480425|35000365077|2 +480423|35000365078|2 +480424|35000365080|2 +480470|35000365084|2 +480472|35000365085|2 +480473|35000365086|2 +480517|35000365088|2 +480522|35000365089|2 +480528|35000365090|2 +480525|35000365091|2 +480551|35000365094|2 +480568|35000365095|2 +770207|35000365096|2 +480640|35000365099|2 +480662|35000365102|2 +480661|35000365103|2 +480670|35000365104|2 +480672|35000365105|2 +480775|35000365107|2 +480757|35000365108|2 +480795|35000365109|2 +480786|35000365110|2 +825706|35000365113|4 +480857|35000365115|2 +480890|35000365118|2 +480928|35000365120|2 +481012|35000365121|2 +481015|35000365122|2 +481029|35000365124|2 +481031|35000365125|2 +481030|35000365127|2 +481059|35000365129|2 +481095|35000365130|2 +481080|35000365131|2 +481069|35000365132|2 +481130|35000365134|2 +481106|35000365135|2 +481113|35000365137|2 +481135|35000365138|2 +481151|35000365139|2 +801871|35000365143|2 +481143|35000365144|2 +481124|35000365145|2 +481126|35000365148|2 +481155|35000365149|2 +481216|35000365150|2 +481253|35000365151|2 +481252|35000365152|2 +481284|35000365154|2 +481285|35000365155|2 +481290|35000365156|2 +481292|35000365157|2 +481306|35000365162|2 +481309|35000365163|2 +481307|35000365164|2 +481305|35000365166|2 +481583|35000365174|2 +481715|35000365178|2 +481799|35000365182|2 +481895|35000365186|2 +481894|35000365188|2 +481913|35000365190|2 +481903|35000365196|2 +481981|35000365202|2 +481986|35000365203|2 +482188|35000365204|4 +482142|35000365207|2 +482040|35000365208|2 +482220|35000365210|2 +482217|35000365211|2 +482128|35000365212|2 +482250|35000365214|2 +482251|35000365216|2 +482129|35000365217|2 +482096|35000365219|2 +482225|35000365221|2 +482077|35000365222|2 +482113|35000365224|2 +482203|35000365226|2 +482267|35000365229|2 +482404|35000365232|2 +482376|35000365233|2 +482365|35000365234|2 +482353|35000365237|2 +482354|35000365238|2 +482494|35000365244|2 +482586|35000365246|2 +482617|35000365248|2 +482675|35000365249|2 +482559|35000365250|2 +482700|35000365253|2 +482695|35000365255|2 +482663|35000365257|2 +482640|35000365259|2 +482628|35000365260|2 +482646|35000365261|2 +482649|35000365262|2 +482703|35000365264|2 +482579|35000365265|2 +482598|35000365268|2 +482779|35000365271|2 +482785|35000365272|2 +482781|35000365279|2 +482782|35000365280|2 +482778|35000365281|2 +482855|35000365282|2 +482892|35000365284|2 +482886|35000365285|2 +482888|35000365286|2 +482804|35000365288|2 +482859|35000365290|2 +482839|35000365291|2 +482936|35000365294|4 +483037|35000365295|2 +483111|35000365299|2 +483106|35000365300|2 +483130|35000365301|2 +483134|35000365303|2 +483175|35000365305|2 +483177|35000365307|2 +483182|35000365308|2 +483206|35000365313|2 +483205|35000365314|2 +483207|35000365315|2 +483199|35000365316|2 +483203|35000365317|2 +483251|35000365319|2 +483241|35000365320|2 +483257|35000365321|2 +483236|35000365322|2 +483242|35000365323|2 +483258|35000365324|2 +483278|35000365325|2 +483273|35000365326|2 +483276|35000365327|2 +483379|35000365330|2 +483347|35000365331|2 +483448|35000365332|2 +483348|35000365333|2 +483417|35000365337|2 +483481|35000365339|2 +483374|35000365340|2 +483328|35000365341|2 +483522|35000365343|2 +483528|35000365345|2 +483540|35000365346|2 +483647|35000365349|2 +483713|35000365350|2 +483731|35000365352|2 +483737|35000365353|2 +483781|35000365356|2 +483795|35000365359|2 +483776|35000365361|2 +483809|35000365366|2 +483810|35000365367|2 +483866|35000365369|2 +483867|35000365372|2 +483879|35000365373|2 +483966|35000365374|2 +483958|35000365375|2 +483953|35000365376|2 +483984|35000365378|2 +484244|35000365380|2 +484285|35000365381|2 +484284|35000365382|2 +484353|35000365384|2 +484695|35000365390|2 +484694|35000365392|2 +484679|35000365394|2 +484700|35000365395|2 +484754|35000365396|2 +484814|35000365398|2 +484818|35000365399|2 +484864|35000365401|2 +484865|35000365402|2 +652857|35000365404|2 +484867|35000365405|2 +484837|35000365406|4 +484807|35000365408|2 +484868|35000365409|2 +484820|35000365410|2 +485077|35000365414|2 +485076|35000365415|2 +485118|35000365418|2 +485170|35000365419|2 +485234|35000365421|2 +485235|35000365422|2 +485236|35000365423|2 +485292|35000365425|2 +485497|35000365428|2 +485496|35000365429|2 +485603|35000365434|2 +485751|35000365441|2 +485758|35000365442|2 +485752|35000365443|2 +485753|35000365444|2 +485772|35000365447|2 +485784|35000365449|2 +485789|35000365451|2 +485786|35000365452|2 +485850|35000365455|2 +485853|35000365456|2 +485867|35000365457|2 +485869|35000365458|2 +485984|35000365459|2 +486005|35000365461|2 +485985|35000365463|2 +668860|35000365465|2 +486053|35000365466|2 +486073|35000365467|2 +486329|35000365476|2 +486261|35000365478|2 +486350|35000365479|2 +486306|35000365480|2 +486335|35000365481|2 +486325|35000365484|2 +486276|35000365486|2 +486356|35000365487|4 +486251|35000365488|2 +486363|35000365489|2 +486249|35000365490|2 +486383|35000365492|2 +486457|35000365496|2 +486504|35000365499|2 +486520|35000365501|2 +486505|35000365503|2 +486550|35000365504|2 +486548|35000365506|2 +486613|35000365508|2 +486612|35000365509|2 +486652|35000365510|2 +486778|35000365512|2 +486775|35000365513|2 +487178|35000365515|2 +487177|35000365517|2 +487171|35000365520|2 +487170|35000365521|2 +487211|35000365523|2 +487203|35000365524|2 +487210|35000365526|2 +487214|35000365529|2 +487206|35000365530|4 +487231|35000365532|2 +487237|35000365533|2 +487239|35000365534|2 +487319|35000365537|2 +487356|35000365538|4 +487302|35000365539|2 +487312|35000365541|2 +487259|35000365542|2 +487320|35000365544|2 +487288|35000365546|2 +487317|35000365547|2 +487360|35000365548|2 +487321|35000365549|2 +487344|35000365550|2 +487352|35000365551|2 +487285|35000365552|2 +487282|35000365553|2 +487286|35000365554|2 +487283|35000365556|2 +487409|35000365559|2 +487427|35000365560|2 +487428|35000365561|2 +487501|35000365563|2 +487580|35000365565|2 +873006|35000365566|2 +487584|35000365568|2 +487927|35000365572|2 +487948|35000365573|2 +487719|35000365591|2 +487942|35000365593|2 +487820|35000365595|2 +487928|35000365599|2 +487641|35000365604|2 +487821|35000365606|2 +487943|35000365610|2 +488048|35000365612|2 +487762|35000365614|2 +487647|35000365617|2 +487971|35000365618|2 +487716|35000365623|2 +488101|35000365624|2 +488244|35000365626|2 +488246|35000365627|2 +488258|35000365628|2 +488391|35000365638|2 +488394|35000365639|2 +488482|35000365641|2 +488825|35000365644|2 +488629|35000365645|2 +488834|35000365646|2 +488660|35000365650|2 +488831|35000365651|2 +488651|35000365652|2 +488793|35000365661|2 +488436|35000365662|2 +489004|35000365665|2 +488963|35000365669|4 +488790|35000365670|2 +488633|35000365671|2 +488701|35000365673|2 +488642|35000365674|2 +488515|35000365677|2 +488860|35000365679|2 +488976|35000365683|4 +488767|35000365686|2 +488476|35000365687|2 +488668|35000365689|2 +489005|35000365690|2 +488774|35000365694|2 +489421|35000365701|2 +489420|35000365703|2 +489448|35000365704|2 +489452|35000365705|2 +489453|35000365706|2 +489455|35000365707|2 +489511|35000365708|2 +489509|35000365709|2 +837038|35000365711|4 +489705|35000365712|2 +489720|35000365715|2 +489718|35000365716|2 +489776|35000365720|2 +489817|35000365723|2 +489818|35000365724|2 +692386|35000365725|2 +489821|35000365726|2 +489822|35000365728|2 +489889|35000365729|2 +489919|35000365730|2 +489849|35000365731|2 +489923|35000365732|2 +598833|35000365733|2 +489907|35000365737|2 +830697|35000365738|4 +489918|35000365739|2 +489869|35000365740|2 +489941|35000365741|2 +489924|35000365743|2 +489960|35000365747|2 +489985|35000365749|2 +489994|35000365751|2 +490187|35000365752|2 +490211|35000365753|2 +490233|35000365757|2 +490363|35000365759|2 +490369|35000365761|2 +490422|35000365764|2 +490461|35000365766|2 +678635|35000365769|2 +490541|35000365773|2 +490605|35000365778|2 +490649|35000365779|2 +490657|35000365780|2 +490652|35000365781|2 +490681|35000365782|2 +490682|35000365783|2 +490808|35000365788|2 +490842|35000365790|2 +491045|35000365796|2 +491062|35000365797|2 +491047|35000365798|2 +791543|35000365799|2 +491063|35000365800|2 +491077|35000365801|2 +491083|35000365802|2 +491103|35000365803|2 +491086|35000365804|2 +491101|35000365805|2 +491102|35000365809|2 +491082|35000365810|2 +491098|35000365811|2 +491099|35000365814|2 +491156|35000365817|2 +491162|35000365819|2 +491124|35000365820|2 +491163|35000365822|2 +491189|35000365823|2 +491225|35000365824|2 +491235|35000365825|2 +491226|35000365826|2 +491287|35000365827|2 +491288|35000365828|2 +491406|35000365831|2 +491407|35000365832|2 +491696|35000365837|2 +491753|35000365839|2 +491784|35000365840|2 +491844|35000365843|2 +491850|35000365844|2 +491990|35000365847|2 +491946|35000365849|2 +492127|35000365850|2 +492136|35000365853|2 +492017|35000365854|2 +492032|35000365855|2 +492155|35000365856|2 +492072|35000365857|4 +491913|35000365858|2 +492202|35000365862|2 +492644|35000365871|2 +492621|35000365873|2 +492620|35000365874|2 +492625|35000365876|2 +492693|35000365877|2 +492694|35000365879|2 +492840|35000365880|2 +492850|35000365886|2 +492876|35000365887|2 +492911|35000365888|2 +492973|35000365889|2 +493026|35000365890|2 +493016|35000365892|2 +493081|35000365893|2 +493086|35000365894|2 +493087|35000365896|2 +493092|35000365899|2 +493256|35000365906|2 +493304|35000365908|2 +732575|35000365909|2 +493317|35000365913|2 +493330|35000365914|2 +493318|35000365915|2 +493425|35000365920|2 +493426|35000365921|2 +493444|35000365922|2 +493518|35000365927|2 +493634|35000365934|2 +493635|35000365935|2 +493596|35000365942|2 +493576|35000365943|2 +493631|35000365944|2 +493566|35000365945|2 +493567|35000365947|2 +493683|35000365949|2 +493684|35000365951|2 +493746|35000365952|2 +493926|35000365954|2 +493879|35000365955|2 +493810|35000365956|2 +493936|35000365957|2 +493845|35000365960|2 +493927|35000365961|2 +493797|35000365963|2 +493870|35000365966|2 +493767|35000365967|2 +493846|35000365971|2 +493906|35000365972|2 +493781|35000365974|2 +493878|35000365975|2 +493765|35000365977|2 +493956|35000365980|2 +493987|35000365983|2 +493988|35000365984|2 +494171|35000365990|2 +494281|35000365994|2 +494144|35000365995|2 +494095|35000365996|2 +494072|35000365997|2 +494172|35000366000|2 +494410|35000366002|2 +494371|35000366005|2 +494472|35000366007|2 +494484|35000366009|2 +494439|35000366010|2 +494429|35000366012|2 +494453|35000366014|2 +494514|35000366016|2 +494536|35000366019|2 +494607|35000366021|2 +494800|35000366022|2 +494799|35000366024|2 +494789|35000366026|2 +494763|35000366027|2 +494710|35000366029|2 +494786|35000366030|2 +494840|35000366033|2 +494846|35000366037|2 +494896|35000366038|2 +494900|35000366039|2 +494897|35000366040|2 +494923|35000366041|2 +494875|35000366042|2 +494904|35000366043|2 +494990|35000366045|2 +677380|35000366046|2 +495047|35000366048|2 +495048|35000366049|2 +495068|35000366050|2 +495052|35000366052|2 +660497|35000366053|2 +495141|35000366054|2 +495186|35000366057|2 +495383|35000366064|2 +495525|35000366065|2 +495468|35000366068|2 +495282|35000366069|2 +495473|35000366071|2 +495362|35000366073|2 +495333|35000366075|2 +495293|35000366076|2 +495323|35000366078|2 +495441|35000366080|2 +495435|35000366081|2 +495388|35000366082|2 +495526|35000366083|2 +495636|35000366084|2 +495593|35000366086|2 +495624|35000366087|2 +495625|35000366088|2 +495626|35000366090|2 +495582|35000366092|2 +495578|35000366093|2 +495638|35000366094|2 +495645|35000366095|2 +495964|35000366098|2 +500635|35000366100|2 +495914|35000366102|2 +495944|35000366103|2 +496197|35000366105|2 +496263|35000366106|2 +496253|35000366110|2 +496330|35000366112|2 +496437|35000366115|2 +496576|35000366117|2 +496556|35000366118|2 +496697|35000366120|2 +523973|35000366121|2 +496488|35000366123|2 +496440|35000366127|2 +496453|35000366129|2 +496447|35000366130|2 +496481|35000366132|2 +496640|35000366134|2 +496454|35000366140|2 +496615|35000366142|2 +708872|35000366143|2 +496382|35000366144|2 +496546|35000366145|2 +496405|35000366146|2 +496420|35000366147|2 +496664|35000366148|2 +496733|35000366151|2 +496768|35000366155|2 +496774|35000366156|2 +496792|35000366158|2 +901714|35000366159|2 +496785|35000366160|2 +496806|35000366161|2 +496819|35000366162|2 +496859|35000366163|2 +496862|35000366164|2 +496854|35000366166|2 +496857|35000366168|2 +496900|35000366170|2 +496941|35000366172|2 +496940|35000366173|2 +496939|35000366174|2 +496920|35000366176|2 +496943|35000366177|2 +496969|35000366178|2 +496985|35000366180|2 +496975|35000366181|2 +497026|35000366182|2 +497024|35000366183|2 +497090|35000366184|2 +497064|35000366185|2 +497040|35000366188|2 +497107|35000366191|2 +497214|35000366193|2 +497230|35000366195|2 +497242|35000366196|2 +497290|35000366198|2 +497391|35000366200|2 +497410|35000366201|2 +497406|35000366202|2 +497492|35000366204|2 +497501|35000366207|2 +497550|35000366209|2 +497567|35000366210|2 +497621|35000366212|2 +497615|35000366213|2 +497767|35000366217|2 +497726|35000366218|2 +497752|35000366219|2 +497819|35000366221|2 +497890|35000366223|2 +497883|35000366225|2 +497814|35000366228|2 +497958|35000366236|2 +497983|35000366239|2 +498000|35000366240|2 +498007|35000366241|2 +498005|35000366242|2 +647587|35000366243|2 +498014|35000366244|2 +498047|35000366245|2 +498067|35000366248|2 +498074|35000366249|2 +498082|35000366250|2 +498084|35000366252|2 +498048|35000366253|2 +498159|35000366256|2 +498156|35000366258|2 +498158|35000366259|2 +498185|35000366260|2 +498194|35000366261|2 +498205|35000366262|2 +498204|35000366263|2 +498200|35000366264|2 +498271|35000366266|2 +498239|35000366267|2 +498246|35000366268|2 +646916|35000366270|2 +498357|35000366273|2 +755211|35000366274|2 +826657|35000366275|4 +498534|35000366277|2 +498533|35000366279|2 +498529|35000366281|2 +696723|35000366282|2 +498994|35000366283|2 +499065|35000366286|2 +499057|35000366287|2 +499083|35000366291|2 +499086|35000366292|2 +499090|35000366293|2 +499144|35000366294|2 +499093|35000366296|2 +499130|35000366301|2 +499105|35000366303|2 +499096|35000366304|2 +499139|35000366305|2 +499141|35000366306|2 +499142|35000366307|2 +499171|35000366308|2 +499187|35000366311|2 +499248|35000366315|2 +499263|35000366318|2 +499411|35000366322|2 +499409|35000366323|2 +499419|35000366325|2 +499420|35000366326|2 +499643|35000366330|2 +499814|35000366331|2 +499766|35000366332|2 +697688|35000366333|2 +499732|35000366336|2 +499658|35000366338|2 +499629|35000366339|2 +499769|35000366340|2 +499630|35000366342|2 +499707|35000366343|2 +499741|35000366344|2 +499687|35000366348|2 +499775|35000366349|2 +499699|35000366351|2 +499711|35000366352|2 +499742|35000366353|2 +499746|35000366354|2 +499735|35000366355|2 +499745|35000366356|2 +499781|35000366357|2 +499677|35000366358|2 +499708|35000366360|2 +499880|35000366361|2 +499881|35000366362|2 +499878|35000366363|2 +499875|35000366364|2 +499882|35000366365|2 +499884|35000366366|2 +499883|35000366367|2 +499885|35000366368|2 +499990|35000366374|2 +499995|35000366375|2 +500012|35000366376|2 +500022|35000366377|2 +500060|35000366378|2 +500029|35000366379|2 +500071|35000366380|2 +500072|35000366382|2 +500139|35000366387|2 +500162|35000366390|2 +500159|35000366391|2 +500180|35000366393|2 +500173|35000366394|2 +500171|35000366395|2 +500166|35000366396|2 +500191|35000366398|2 +500192|35000366399|2 +797744|35000366401|2 +500170|35000366403|2 +500211|35000366404|2 +500209|35000366405|2 +500255|35000366410|2 +500326|35000366412|2 +882060|35000366414|2 +500392|35000366415|2 +500412|35000366419|2 +500423|35000366420|2 +500443|35000366421|2 +500485|35000366423|2 +500556|35000366425|2 +500564|35000366426|2 +500579|35000366427|2 +500584|35000366428|2 +500647|35000366429|2 +500601|35000366430|2 +500602|35000366431|2 +500606|35000366435|2 +500609|35000366438|2 +500648|35000366439|2 +500614|35000366441|2 +500595|35000366442|2 +500646|35000366443|2 +500781|35000366451|2 +866642|35000366452|2 +500809|35000366453|2 +500876|35000366454|2 +500990|35000366458|2 +500956|35000366459|4 +500931|35000366460|2 +500976|35000366462|2 +500912|35000366463|2 +501021|35000366466|2 +501030|35000366467|2 +501041|35000366468|2 +501037|35000366469|2 +501078|35000366471|2 +501146|35000366477|2 +501277|35000366479|2 +501278|35000366480|2 +501299|35000366481|2 +501410|35000366482|2 +501376|35000366484|2 +501430|35000366486|2 +501435|35000366487|2 +501394|35000366488|2 +501445|35000366496|2 +501452|35000366497|2 +501453|35000366498|2 +501482|35000366503|2 +501685|35000366505|2 +501665|35000366506|4 +501616|35000366507|2 +501598|35000366511|2 +501504|35000366512|2 +501505|35000366513|2 +501483|35000366517|2 +501599|35000366519|2 +501600|35000366521|2 +501479|35000366523|2 +501734|35000366526|2 +753083|35000366527|2 +501793|35000366529|2 +501801|35000366530|2 +502021|35000366534|2 +501980|35000366535|2 +502007|35000366539|2 +502087|35000366541|2 +502170|35000366542|2 +502158|35000366543|2 +502190|35000366544|2 +502133|35000366545|2 +502228|35000366547|2 +502299|35000366548|2 +502280|35000366549|2 +502296|35000366550|2 +502345|35000366551|2 +502367|35000366554|2 +502362|35000366555|2 +502365|35000366556|2 +502366|35000366557|2 +502408|35000366564|2 +502567|35000366565|2 +502615|35000366567|2 +502665|35000366568|2 +502645|35000366569|2 +502597|35000366570|2 +502598|35000366572|2 +502589|35000366573|2 +502744|35000366575|2 +502745|35000366577|2 +502740|35000366579|2 +503006|35000366585|4 +502893|35000366586|2 +502971|35000366587|2 +502879|35000366588|2 +502970|35000366590|2 +784876|35000366592|2 +503035|35000366594|2 +503031|35000366595|2 +503045|35000366596|2 +503088|35000366598|2 +503172|35000366599|2 +503177|35000366600|2 +503168|35000366604|2 +503180|35000366605|2 +886267|35000366606|2 +503204|35000366608|2 +503217|35000366609|2 +503237|35000366610|2 +503287|35000366614|2 +503281|35000366617|2 +503352|35000366625|2 +503353|35000366626|2 +503349|35000366627|2 +503351|35000366628|2 +503354|35000366629|2 +503442|35000366631|2 +503472|35000366633|2 +503638|35000366644|2 +503637|35000366645|2 +503623|35000366648|2 +849320|35000366651|2 +503716|35000366652|2 +503713|35000366653|2 +503760|35000366656|2 +503807|35000366659|2 +503858|35000366661|2 +503846|35000366662|2 +503826|35000366663|2 +503960|35000366664|2 +503988|35000366666|2 +504062|35000366673|2 +503937|35000366674|2 +503962|35000366675|2 +504074|35000366676|2 +503971|35000366678|2 +504108|35000366679|2 +504125|35000366682|2 +504132|35000366684|2 +504134|35000366686|2 +504151|35000366688|2 +771383|35000366692|2 +504295|35000366693|2 +504272|35000366695|2 +504267|35000366696|2 +504786|35000366710|2 +504707|35000366711|2 +504761|35000366713|2 +504747|35000366714|2 +504760|35000366715|2 +504652|35000366718|2 +504614|35000366721|4 +466175|35000366722|2 +504813|35000366724|2 +504570|35000366725|2 +504849|35000366726|2 +504664|35000366729|2 +504615|35000366733|2 +504677|35000366734|2 +504693|35000366737|2 +504598|35000366739|2 +504665|35000366740|2 +504917|35000366743|2 +504921|35000366744|2 +504994|35000366747|2 +505013|35000366750|2 +505111|35000366754|2 +505126|35000366755|2 +505214|35000366757|2 +505223|35000366758|2 +505411|35000366761|2 +505416|35000366762|2 +505451|35000366763|2 +505450|35000366764|2 +505441|35000366765|2 +505470|35000366768|2 +505474|35000366769|2 +505500|35000366770|2 +529448|35000366771|2 +505481|35000366772|2 +505490|35000366773|2 +505524|35000366774|2 +505522|35000366776|2 +505523|35000366777|2 +505592|35000366781|2 +505625|35000366783|2 +505627|35000366785|2 +505630|35000366786|2 +505654|35000366787|2 +505737|35000366789|2 +505701|35000366791|2 +505742|35000366792|2 +505800|35000366793|2 +505807|35000366795|2 +505895|35000366799|2 +505938|35000366800|2 +505954|35000366801|2 +505956|35000366803|2 +506086|35000366804|2 +506079|35000366806|2 +506080|35000366808|2 +506030|35000366811|2 +506113|35000366813|2 +506146|35000366814|2 +750978|35000366816|2 +506123|35000366817|2 +506150|35000366818|2 +506232|35000366820|2 +506220|35000366821|2 +506254|35000366823|2 +506255|35000366824|2 +506709|35000366831|4 +506683|35000366834|2 +506684|35000366835|2 +507098|35000366837|2 +507124|35000366838|2 +507236|35000366841|2 +507137|35000366842|2 +507050|35000366843|2 +506849|35000366845|2 +507063|35000366846|2 +506894|35000366847|2 +506844|35000366848|2 +507027|35000366855|2 +506871|35000366857|2 +506872|35000366858|2 +507105|35000366860|2 +507080|35000366863|2 +506980|35000366866|2 +507075|35000366868|2 +521001|35000366872|2 +507273|35000366875|2 +507138|35000366876|2 +507253|35000366878|2 +507210|35000366880|2 +507084|35000366881|2 +507083|35000366882|2 +507140|35000366884|2 +506974|35000366886|2 +506902|35000366887|2 +507159|35000366888|2 +507228|35000366891|4 +507111|35000366892|2 +506873|35000366894|2 +506883|35000366898|2 +507288|35000366900|2 +507472|35000366903|2 +507420|35000366904|2 +507373|35000366905|2 +507493|35000366909|2 +507481|35000366910|2 +507438|35000366913|2 +507638|35000366916|2 +507571|35000366919|4 +507324|35000366920|2 +507572|35000366921|4 +507431|35000366924|2 +507674|35000366925|2 +507839|35000366928|2 +507684|35000366929|2 +507852|35000366930|2 +507789|35000366931|2 +507756|35000366936|2 +507794|35000366937|2 +507685|35000366939|2 +507782|35000366941|2 +507734|35000366943|2 +507902|35000366945|2 +507998|35000366946|2 +508008|35000366947|4 +508030|35000366948|2 +507924|35000366949|2 +507956|35000366950|2 +507965|35000366952|2 +507947|35000366953|2 +507945|35000366955|2 +507919|35000366956|2 +657668|35000366958|2 +508047|35000366959|2 +508038|35000366960|2 +507948|35000366962|2 +508147|35000366966|2 +508191|35000366967|2 +508170|35000366968|2 +508182|35000366969|2 +508213|35000366971|2 +508234|35000366974|2 +508227|35000366975|2 +508220|35000366976|2 +508225|35000366977|2 +508230|35000366979|2 +508305|35000366982|2 +508321|35000366983|2 +508332|35000366985|2 +508327|35000366986|2 +508431|35000366992|2 +508646|35000366996|2 +508546|35000366998|2 +508655|35000367000|2 +508493|35000367001|2 +508703|35000367007|2 +508706|35000367009|2 +508756|35000367013|2 +508757|35000367014|2 +509073|35000367020|2 +509089|35000367021|2 +509114|35000367022|2 +509115|35000367023|2 +509113|35000367024|2 +536781|35000367025|2 +509128|35000367026|2 +509133|35000367027|2 +509136|35000367029|2 +509170|35000367030|2 +509171|35000367031|2 +509219|35000367034|2 +509385|35000367037|2 +509484|35000367038|2 +509401|35000367040|2 +509591|35000367041|2 +509588|35000367043|2 +509482|35000367044|2 +509301|35000367045|2 +509590|35000367046|2 +509579|35000367047|2 +509469|35000367048|2 +509284|35000367049|2 +509568|35000367050|2 +509470|35000367051|2 +509272|35000367052|2 +509569|35000367056|2 +509348|35000367057|2 +509649|35000367062|2 +509669|35000367066|2 +509670|35000367067|2 +509673|35000367068|2 +509678|35000367069|2 +509735|35000367071|2 +509725|35000367072|2 +509740|35000367073|2 +509731|35000367074|2 +509741|35000367075|2 +509789|35000367084|2 +509782|35000367085|2 +509835|35000367087|2 +509863|35000367091|2 +510056|35000367101|2 +510038|35000367102|2 +510058|35000367104|2 +510052|35000367106|2 +510189|35000367109|2 +510179|35000367112|2 +510215|35000367114|2 +510231|35000367115|2 +510232|35000367116|2 +510369|35000367118|2 +510431|35000367120|2 +510295|35000367122|2 +510376|35000367123|2 +510385|35000367125|2 +822137|35000367126|2 +510378|35000367128|2 +510423|35000367129|2 +508535|35000367130|2 +510339|35000367132|2 +510330|35000367133|2 +510415|35000367136|2 +510296|35000367137|2 +510579|35000367140|2 +510542|35000367141|2 +510646|35000367145|2 +510647|35000367146|2 +510582|35000367147|2 +510834|35000367151|2 +510760|35000367154|2 +510906|35000367155|2 +510862|35000367156|2 +510932|35000367157|2 +511017|35000367166|2 +511030|35000367167|2 +511025|35000367168|2 +511178|35000367170|2 +511082|35000367174|2 +511085|35000367175|2 +511106|35000367176|2 +511426|35000367179|2 +511298|35000367181|2 +511452|35000367186|2 +511465|35000367188|2 +511515|35000367190|2 +511530|35000367191|2 +511542|35000367192|2 +511752|35000367199|2 +511755|35000367200|2 +511763|35000367201|2 +511857|35000367204|4 +511777|35000367205|2 +511847|35000367207|2 +511840|35000367208|2 +511806|35000367209|2 +511887|35000367211|2 +699993|35000367213|2 +651767|35000367216|2 +512016|35000367217|2 +511936|35000367218|2 +511997|35000367222|2 +512072|35000367224|2 +511937|35000367227|2 +512085|35000367229|2 +512187|35000367232|2 +512192|35000367233|2 +512193|35000367234|2 +512188|35000367235|2 +512242|35000367237|2 +512246|35000367238|2 +512451|35000367239|2 +512374|35000367242|2 +512388|35000367244|2 +512241|35000367245|2 +512432|35000367246|2 +512385|35000367250|2 +512247|35000367251|2 +512428|35000367252|2 +512554|35000367254|2 +512825|35000367257|2 +512822|35000367258|2 +512815|35000367259|2 +512816|35000367260|2 +512854|35000367263|2 +512855|35000367265|2 +512918|35000367268|2 +513072|35000367269|2 +513085|35000367270|2 +497730|35000367272|2 +513107|35000367273|2 +513152|35000367274|2 +513151|35000367276|2 +513279|35000367281|2 +513365|35000367284|2 +513353|35000367286|2 +552974|35000367293|2 +513428|35000367295|2 +513503|35000367296|2 +513575|35000367301|2 +513637|35000367303|2 +513638|35000367304|2 +513639|35000367305|2 +513640|35000367306|2 +513743|35000367307|2 +513749|35000367308|2 +513696|35000367309|2 +513677|35000367312|2 +513691|35000367313|2 +513909|35000367317|2 +484849|35000367318|2 +513897|35000367319|2 +513778|35000367320|2 +513931|35000367321|2 +513902|35000367322|2 +513831|35000367323|2 +513934|35000367324|2 +513913|35000367326|2 +513932|35000367327|2 +513952|35000367328|2 +454365|35000367329|2 +912532|35000367330|2 +513879|35000367331|2 +513883|35000367333|2 +513873|35000367335|2 +513832|35000367337|2 +513992|35000367340|2 +513997|35000367341|2 +514016|35000367343|2 +514066|35000367344|2 +514059|35000367346|2 +514056|35000367347|2 +514189|35000367349|2 +514186|35000367351|2 +514209|35000367354|2 +639275|35000367355|2 +514220|35000367356|2 +514217|35000367358|2 +514281|35000367362|2 +514280|35000367365|2 +514402|35000367369|2 +514527|35000367373|2 +514590|35000367378|2 +514622|35000367383|2 +514642|35000367385|2 +514842|35000367397|2 +515229|35000367409|2 +515279|35000367410|2 +515275|35000367411|2 +515289|35000367414|2 +515310|35000367416|2 +515358|35000367417|2 +515491|35000367423|2 +515489|35000367424|2 +515509|35000367425|2 +515511|35000367426|2 +515540|35000367428|2 +515564|35000367429|2 +515608|35000367430|2 +515634|35000367431|2 +515692|35000367434|2 +515729|35000367435|2 +515972|35000367440|2 +515917|35000367442|2 +515985|35000367444|2 +515944|35000367445|2 +516046|35000367446|2 +772104|35000367447|2 +516056|35000367450|2 +515831|35000367452|2 +516047|35000367453|2 +516035|35000367454|2 +515950|35000367455|2 +515981|35000367456|2 +516010|35000367458|2 +515889|35000367462|2 +515984|35000367463|2 +515841|35000367464|2 +516081|35000367465|2 +515910|35000367468|2 +516137|35000367471|2 +739343|35000367480|2 +516475|35000367481|2 +516477|35000367482|2 +516476|35000367483|2 +516499|35000367484|2 +516500|35000367485|2 +516507|35000367486|2 +516505|35000367488|2 +516741|35000367493|2 +516782|35000367495|2 +516732|35000367496|2 +516746|35000367501|2 +516737|35000367506|2 +516742|35000367508|2 +516818|35000367509|2 +516899|35000367514|2 +516902|35000367517|2 +516938|35000367520|2 +516979|35000367522|2 +516961|35000367527|2 +516994|35000367530|2 +516998|35000367531|2 +516990|35000367533|2 +516995|35000367534|2 +517059|35000367535|2 +517066|35000367536|2 +517094|35000367538|2 +517092|35000367540|2 +517105|35000367541|2 +517088|35000367542|2 +642564|35000367543|2 +517095|35000367544|2 +517101|35000367545|2 +517160|35000367548|2 +517252|35000367552|2 +517219|35000367559|2 +517218|35000367562|2 +517186|35000367564|2 +517224|35000367565|2 +517276|35000367569|2 +517327|35000367570|2 +517265|35000367571|2 +517330|35000367572|2 +517270|35000367573|2 +517264|35000367574|2 +517331|35000367575|2 +517645|35000367578|2 +517647|35000367581|2 +517473|35000367583|2 +517509|35000367584|2 +517652|35000367585|2 +517430|35000367588|2 +517599|35000367589|2 +517444|35000367590|2 +517348|35000367593|2 +517613|35000367596|2 +517762|35000367600|2 +517705|35000367602|2 +517750|35000367605|2 +517772|35000367606|2 +517782|35000367607|2 +517805|35000367609|2 +517893|35000367613|2 +517894|35000367615|2 +518018|35000367617|2 +517993|35000367618|2 +517956|35000367622|2 +864987|35000367623|2 +517964|35000367624|2 +517967|35000367627|2 +518020|35000367628|2 +518062|35000367630|4 +518089|35000367632|2 +518028|35000367634|2 +518077|35000367636|2 +518112|35000367638|2 +518111|35000367639|2 +518188|35000367640|2 +518329|35000367641|2 +518270|35000367642|2 +518290|35000367643|2 +518257|35000367644|2 +518410|35000367650|2 +518355|35000367651|2 +518411|35000367654|2 +518316|35000367655|2 +518312|35000367660|2 +518400|35000367664|2 +518453|35000367667|2 +518522|35000367672|2 +518549|35000367673|2 +518531|35000367674|2 +518644|35000367675|2 +518658|35000367678|2 +518745|35000367682|2 +518782|35000367686|2 +518855|35000367688|2 +518841|35000367689|2 +518966|35000367693|2 +518997|35000367694|2 +519019|35000367696|2 +519096|35000367699|2 +519097|35000367700|2 +519114|35000367701|2 +519104|35000367702|2 +519121|35000367703|2 +519108|35000367705|2 +519107|35000367707|2 +519135|35000367708|2 +519133|35000367709|2 +519142|35000367711|2 +517302|35000367712|2 +519155|35000367713|2 +519156|35000367714|2 +519175|35000367716|2 +519176|35000367717|2 +519185|35000367718|2 +519188|35000367719|2 +519235|35000367722|2 +519285|35000367723|2 +519499|35000367730|2 +519542|35000367731|2 +519544|35000367732|2 +519535|35000367735|2 +519560|35000367736|2 +519536|35000367737|2 +519589|35000367738|2 +519637|35000367743|2 +519634|35000367744|2 +519750|35000367746|2 +519760|35000367748|2 +519758|35000367751|2 +519759|35000367752|2 +519764|35000367753|2 +519761|35000367754|2 +519776|35000367755|2 +519821|35000367756|2 +519870|35000367759|2 +519864|35000367760|2 +519882|35000367763|2 +520073|35000367769|2 +520077|35000367771|2 +520074|35000367772|2 +520093|35000367773|2 +520094|35000367774|2 +520118|35000367775|2 +520184|35000367776|2 +520176|35000367777|2 +520192|35000367778|2 +520233|35000367784|2 +520234|35000367786|2 +520255|35000367787|2 +520251|35000367788|2 +520272|35000367789|2 +520303|35000367790|2 +706396|35000367791|2 +520447|35000367796|2 +520448|35000367797|2 +520487|35000367801|2 +520520|35000367804|2 +520515|35000367805|2 +520538|35000367808|2 +520563|35000367809|2 +520573|35000367813|2 +520698|35000367824|2 +520737|35000367825|2 +520788|35000367826|2 +520810|35000367827|2 +520811|35000367828|2 +520829|35000367830|2 +868845|35000367831|2 +520825|35000367832|2 +520818|35000367833|2 +520877|35000367836|2 +520875|35000367838|2 +520874|35000367840|2 +520909|35000367841|4 +520910|35000367844|2 +520893|35000367846|2 +521064|35000367853|2 +521071|35000367854|2 +521075|35000367856|2 +521073|35000367857|2 +521078|35000367858|2 +521205|35000367863|2 +521393|35000367864|2 +521390|35000367866|2 +673726|35000367868|2 +521459|35000367869|2 +521395|35000367870|2 +521614|35000367872|2 +521632|35000367875|2 +521780|35000367878|2 +521775|35000367879|2 +521774|35000367881|2 +582638|35000367884|2 +565860|35000367885|2 +521833|35000367886|2 +521887|35000367887|2 +521914|35000367891|2 +521947|35000367892|2 +521980|35000367896|2 +521981|35000367897|2 +522024|35000367899|2 +522197|35000367901|2 +522187|35000367904|2 +522283|35000367905|2 +522286|35000367906|2 +522284|35000367908|2 +522320|35000367915|2 +522321|35000367916|2 +522326|35000367917|2 +522325|35000367918|2 +522352|35000367919|2 +522371|35000367921|2 +522366|35000367922|2 +522372|35000367925|2 +762134|35000367926|2 +768143|35000367928|2 +522373|35000367930|2 +522490|35000367931|2 +522501|35000367932|2 +522499|35000367933|2 +522543|35000367934|2 +888609|35000367935|2 +522568|35000367936|2 +522580|35000367940|2 +522579|35000367943|2 +522604|35000367944|2 +522609|35000367945|2 +522602|35000367947|2 +522887|35000367951|2 +522942|35000367952|2 +522904|35000367953|2 +523012|35000367954|2 +523007|35000367955|2 +523025|35000367959|2 +523035|35000367960|2 +523028|35000367962|2 +523030|35000367965|2 +523026|35000367968|2 +523054|35000367970|2 +523057|35000367971|2 +523048|35000367974|2 +523210|35000367979|2 +523202|35000367980|2 +523229|35000367981|2 +523224|35000367982|2 +523241|35000367984|2 +523233|35000367985|2 +523297|35000367989|2 +523337|35000367990|2 +523378|35000367991|2 +523391|35000367993|2 +523390|35000367994|2 +523416|35000367995|2 +523424|35000367996|2 +523456|35000368000|2 +523458|35000368001|2 +523717|35000368011|2 +523596|35000368012|2 +523758|35000368018|2 +523769|35000368019|2 +523792|35000368020|2 +786652|35000368021|2 +523793|35000368023|2 +523794|35000368024|2 +523891|35000368031|2 +524027|35000368033|2 +523918|35000368035|2 +523926|35000368036|2 +523954|35000368037|2 +524015|35000368038|2 +524123|35000368042|2 +524155|35000368044|2 +524156|35000368045|2 +524425|35000368048|2 +524432|35000368049|2 +524225|35000368050|2 +524297|35000368051|2 +524643|35000368053|2 +524718|35000368054|2 +524714|35000368055|2 +524721|35000368056|2 +524767|35000368058|2 +524779|35000368061|2 +524815|35000368062|2 +524806|35000368063|2 +524808|35000368064|2 +524766|35000368066|2 +525007|35000368070|2 +525037|35000368071|2 +525030|35000368072|2 +724164|35000368074|2 +525050|35000368075|2 +525022|35000368076|2 +525036|35000368078|2 +525066|35000368079|2 +525163|35000368083|2 +525118|35000368086|2 +525168|35000368087|2 +525249|35000368089|2 +525248|35000368090|2 +525273|35000368094|2 +525281|35000368100|2 +525267|35000368101|2 +525388|35000368105|2 +525525|35000368106|2 +525531|35000368108|2 +525514|35000368110|2 +525439|35000368111|2 +525332|35000368112|2 +525375|35000368113|2 +525726|35000368117|2 +525440|35000368118|2 +525617|35000368121|2 +525720|35000368122|2 +525762|35000368125|2 +525800|35000368130|2 +568359|35000368136|2 +525889|35000368137|2 +525892|35000368139|2 +525878|35000368140|2 +525897|35000368141|2 +525881|35000368142|2 +525875|35000368143|2 +525913|35000368148|2 +525921|35000368149|2 +525927|35000368150|2 +525938|35000368153|2 +525961|35000368154|2 +526153|35000368159|2 +526202|35000368161|2 +526329|35000368162|2 +526065|35000368163|2 +526210|35000368164|2 +526374|35000368166|2 +526348|35000368170|2 +526343|35000368172|2 +526231|35000368173|2 +526300|35000368177|2 +526171|35000368178|2 +526377|35000368179|2 +526275|35000368181|2 +526176|35000368186|2 +526226|35000368187|2 +526104|35000368188|2 +526156|35000368190|2 +526077|35000368191|2 +526363|35000368192|2 +526218|35000368193|2 +526302|35000368194|2 +526137|35000368195|2 +526087|35000368196|2 +526259|35000368198|4 +526025|35000368199|2 +526269|35000368201|2 +526344|35000368202|2 +526345|35000368203|2 +526586|35000368205|2 +526502|35000368208|2 +526442|35000368210|2 +526458|35000368211|2 +526524|35000368212|2 +526476|35000368214|2 +526397|35000368216|2 +529784|35000368217|2 +526517|35000368219|2 +526459|35000368221|2 +526627|35000368223|2 +526753|35000368224|2 +526562|35000368225|2 +526501|35000368227|2 +526408|35000368228|2 +526443|35000368229|2 +526802|35000368231|2 +526801|35000368232|2 +526803|35000368233|2 +526911|35000368234|2 +526839|35000368235|2 +526965|35000368236|2 +527059|35000368237|4 +527058|35000368241|4 +526963|35000368244|2 +724641|35000368245|2 +526851|35000368247|2 +527060|35000368248|4 +526852|35000368249|2 +527199|35000368251|2 +527203|35000368252|2 +527360|35000368258|2 +527350|35000368259|2 +527390|35000368260|2 +527392|35000368262|2 +527427|35000368263|2 +527408|35000368264|2 +527429|35000368266|2 +527507|35000368267|2 +527546|35000368269|2 +527587|35000368272|2 +527616|35000368277|2 +527627|35000368278|2 +527630|35000368280|2 +527631|35000368282|2 +527628|35000368283|2 +527744|35000368291|2 +527742|35000368292|2 +527747|35000368294|2 +527776|35000368296|2 +527779|35000368297|2 +527763|35000368298|2 +527770|35000368299|2 +527777|35000368302|2 +527780|35000368304|2 +527767|35000368305|2 +527778|35000368306|2 +527782|35000368307|2 +527784|35000368308|2 +527766|35000368309|2 +527837|35000368311|2 +527828|35000368313|2 +527827|35000368314|2 +527865|35000368315|2 +527986|35000368321|2 +528086|35000368325|2 +528122|35000368326|2 +528133|35000368327|2 +528102|35000368329|2 +583530|35000368332|2 +528115|35000368334|2 +528151|35000368337|2 +528426|35000368342|2 +528407|35000368343|2 +528425|35000368344|2 +528438|35000368345|2 +528521|35000368356|2 +528516|35000368357|2 +528612|35000368358|2 +528662|35000368360|2 +528681|35000368362|2 +528684|35000368363|2 +528711|35000368364|2 +528694|35000368365|2 +528703|35000368366|2 +528706|35000368368|2 +528709|35000368369|2 +528697|35000368370|2 +528712|35000368371|2 +872099|35000368372|2 +528787|35000368379|2 +528794|35000368381|2 +528797|35000368382|2 +528788|35000368384|2 +528785|35000368388|2 +528896|35000368391|2 +528870|35000368393|2 +529004|35000368395|2 +529090|35000368398|2 +528968|35000368399|2 +528913|35000368400|4 +529050|35000368402|2 +528979|35000368403|2 +529010|35000368404|2 +528999|35000368405|2 +529021|35000368406|2 +528960|35000368412|2 +529139|35000368416|2 +529136|35000368418|2 +529135|35000368419|2 +560341|35000368422|2 +529137|35000368423|2 +529197|35000368424|2 +529248|35000368427|2 +529241|35000368429|2 +529243|35000368430|2 +529321|35000368431|2 +529316|35000368432|2 +529358|35000368436|2 +529359|35000368437|2 +529362|35000368438|2 +529385|35000368444|2 +529519|35000368447|2 +529539|35000368448|2 +529548|35000368450|2 +529549|35000368451|2 +529562|35000368453|2 +529563|35000368454|2 +529577|35000368458|2 +529578|35000368459|2 +529616|35000368460|2 +529623|35000368461|2 +529596|35000368462|2 +529597|35000368467|2 +529602|35000368468|2 +529608|35000368470|2 +529588|35000368471|2 +529603|35000368472|2 +529619|35000368473|2 +529590|35000368474|2 +529595|35000368475|2 +529620|35000368476|2 +529598|35000368477|2 +529591|35000368478|2 +529573|35000368480|2 +529599|35000368482|2 +529579|35000368483|2 +529600|35000368484|2 +529624|35000368485|2 +529669|35000368489|2 +529702|35000368492|2 +529736|35000368493|2 +851317|35000368494|2 +529724|35000368495|2 +529916|35000368496|2 +529869|35000368497|2 +529850|35000368499|2 +529927|35000368505|2 +529994|35000368512|2 +529942|35000368513|2 +529957|35000368514|2 +530038|35000368521|2 +530091|35000368524|2 +530101|35000368526|2 +530100|35000368529|2 +530096|35000368530|2 +530246|35000368531|2 +530141|35000368532|2 +530233|35000368533|2 +530207|35000368536|2 +530282|35000368537|2 +530225|35000368538|2 +530176|35000368539|2 +530381|35000368542|2 +530365|35000368543|2 +530366|35000368544|2 +530340|35000368546|2 +530371|35000368547|2 +530359|35000368549|2 +530341|35000368550|2 +530452|35000368551|2 +530538|35000368553|2 +530544|35000368555|2 +530568|35000368557|2 +530614|35000368560|2 +530616|35000368561|2 +530640|35000368563|2 +530645|35000368564|2 +530727|35000368567|2 +530712|35000368568|2 +530723|35000368571|2 +530743|35000368572|2 +530737|35000368574|2 +530864|35000368577|2 +530880|35000368578|2 +530940|35000368581|2 +530818|35000368584|2 +530865|35000368585|2 +530984|35000368587|2 +531097|35000368588|2 +531100|35000368590|2 +531096|35000368591|2 +531109|35000368592|2 +531082|35000368593|2 +531099|35000368594|2 +531073|35000368596|2 +531066|35000368598|2 +531119|35000368599|2 +531150|35000368600|2 +531110|35000368602|2 +531206|35000368603|2 +531207|35000368604|2 +531195|35000368605|2 +531381|35000368606|2 +531247|35000368607|2 +531406|35000368610|2 +531329|35000368611|2 +531185|35000368612|2 +531260|35000368613|2 +531273|35000368614|2 +531407|35000368615|2 +531196|35000368616|2 +827047|35000368617|4 +531447|35000368618|2 +531578|35000368619|2 +531575|35000368621|2 +531631|35000368623|2 +531643|35000368624|2 +531640|35000368625|2 +531785|35000368632|2 +531841|35000368636|2 +531864|35000368639|2 +531865|35000368640|2 +531862|35000368641|2 +531866|35000368642|2 +531869|35000368643|2 +531884|35000368644|2 +531972|35000368645|2 +531926|35000368646|2 +531921|35000368647|2 +531984|35000368649|2 +532026|35000368650|2 +532123|35000368651|2 +532139|35000368654|2 +532208|35000368656|2 +532209|35000368657|2 +532274|35000368658|2 +532279|35000368661|2 +532331|35000368664|2 +532319|35000368665|2 +532355|35000368668|2 +532354|35000368669|2 +532358|35000368670|2 +532371|35000368673|2 +532488|35000368677|2 +532492|35000368678|2 +532498|35000368679|2 +532499|35000368680|2 +532590|35000368681|2 +591806|35000368682|2 +532688|35000368683|2 +532664|35000368685|2 +532652|35000368686|2 +532732|35000368687|2 +532766|35000368689|2 +532764|35000368690|2 +532767|35000368691|2 +532771|35000368692|2 +532781|35000368693|2 +532784|35000368696|2 +532789|35000368697|2 +532921|35000368700|2 +532925|35000368702|2 +532926|35000368703|2 +532923|35000368704|2 +532920|35000368705|2 +532922|35000368706|2 +532934|35000368708|2 +532930|35000368709|2 +532994|35000368710|2 +532991|35000368711|2 +532977|35000368712|2 +532997|35000368714|2 +533114|35000368715|2 +533125|35000368717|2 +533104|35000368718|2 +533216|35000368719|2 +533218|35000368720|2 +533313|35000368726|2 +533341|35000368727|2 +533374|35000368732|2 +533370|35000368734|2 +533368|35000368736|2 +533369|35000368737|2 +533412|35000368738|2 +533432|35000368740|2 +533435|35000368742|2 +533430|35000368744|2 +533481|35000368747|2 +533517|35000368748|2 +533560|35000368749|2 +533582|35000368751|2 +533580|35000368752|2 +533592|35000368756|2 +533764|35000368760|2 +533765|35000368761|2 +533777|35000368763|2 +533868|35000368766|2 +533883|35000368767|2 +534369|35000368776|2 +534130|35000368777|2 +534316|35000368780|2 +534310|35000368781|2 +534148|35000368787|2 +534022|35000368788|2 +533971|35000368791|4 +533936|35000368792|2 +533944|35000368794|2 +533919|35000368796|2 +534117|35000368798|2 +534218|35000368799|2 +534366|35000368800|4 +534311|35000368801|2 +533901|35000368802|2 +533950|35000368803|2 +533927|35000368804|2 +534040|35000368807|2 +534367|35000368812|4 +534041|35000368814|2 +534006|35000368816|2 +534265|35000368819|2 +634837|35000368820|2 +534351|35000368821|2 +533998|35000368824|2 +534233|35000368825|2 +534027|35000368826|2 +534159|35000368827|2 +533972|35000368829|2 +533952|35000368830|2 +534206|35000368831|2 +534301|35000368833|2 +534368|35000368834|2 +534160|35000368836|2 +533945|35000368838|2 +533928|35000368841|2 +534380|35000368842|2 +534454|35000368847|2 +534459|35000368848|2 +534466|35000368849|2 +534464|35000368850|2 +534485|35000368852|2 +534482|35000368853|2 +534481|35000368854|2 +534505|35000368855|2 +534490|35000368856|2 +534504|35000368859|2 +534590|35000368860|2 +534674|35000368861|2 +534707|35000368862|2 +534717|35000368863|2 +534782|35000368865|2 +534783|35000368867|2 +534727|35000368870|2 +534729|35000368871|2 +534778|35000368872|2 +534756|35000368873|2 +534764|35000368874|2 +534804|35000368876|2 +534811|35000368880|2 +534800|35000368881|2 +534825|35000368882|2 +534849|35000368883|2 +534848|35000368884|2 +534882|35000368887|2 +534881|35000368888|2 +534892|35000368889|2 +534926|35000368890|2 +534941|35000368892|2 +534968|35000368895|2 +534992|35000368896|2 +535019|35000368897|2 +535020|35000368898|2 +535047|35000368902|2 +535059|35000368903|2 +535083|35000368906|2 +535164|35000368907|2 +535162|35000368908|2 +535202|35000368909|2 +535220|35000368912|2 +535350|35000368916|2 +535353|35000368917|2 +535346|35000368918|2 +535369|35000368919|2 +535371|35000368920|2 +535370|35000368921|2 +535509|35000368925|2 +535607|35000368927|2 +535518|35000368931|2 +535394|35000368932|2 +535770|35000368934|2 +535637|35000368936|2 +535442|35000368939|2 +535844|35000368940|2 +535850|35000368941|2 +535857|35000368942|2 +696705|35000368946|2 +536088|35000368949|2 +536081|35000368950|2 +559353|35000368953|4 +536114|35000368955|2 +536187|35000368957|2 +536232|35000368958|2 +536342|35000368960|2 +536398|35000368965|2 +536427|35000368967|2 +536775|35000368969|2 +536780|35000368970|2 +536876|35000368971|2 +536875|35000368972|2 +536841|35000368973|2 +536866|35000368974|2 +536933|35000368975|2 +536939|35000368976|2 +536980|35000368977|2 +537098|35000368978|2 +537113|35000368979|2 +537111|35000368981|2 +537067|35000368982|2 +791823|35000368983|2 +537063|35000368984|2 +874951|35000368987|2 +537212|35000368990|2 +537269|35000368993|2 +537258|35000368994|2 +537315|35000368996|2 +537313|35000368997|2 +537395|35000369001|2 +537471|35000369004|2 +537417|35000369006|2 +537621|35000369008|4 +537567|35000369010|2 +537577|35000369011|2 +537492|35000369013|2 +537519|35000369014|2 +537422|35000369015|2 +537623|35000369017|2 +537570|35000369019|2 +537473|35000369020|2 +537480|35000369021|2 +537536|35000369022|2 +537478|35000369025|2 +537556|35000369026|2 +537622|35000369027|4 +537459|35000369028|2 +537616|35000369030|2 +537530|35000369031|2 +537613|35000369032|2 +537402|35000369033|2 +537727|35000369042|2 +537756|35000369043|2 +757258|35000369044|2 +537742|35000369045|2 +537771|35000369049|2 +537785|35000369050|2 +537786|35000369051|2 +537790|35000369053|2 +537787|35000369054|2 +537796|35000369055|2 +537803|35000369059|2 +537823|35000369061|2 +537821|35000369062|2 +537894|35000369067|2 +537898|35000369069|2 +537905|35000369071|2 +537906|35000369073|2 +537916|35000369076|2 +537915|35000369077|2 +538298|35000369079|2 +538052|35000369082|2 +538337|35000369086|2 +538344|35000369088|2 +537933|35000369089|2 +537980|35000369091|2 +538302|35000369092|2 +537997|35000369093|2 +537970|35000369094|2 +538287|35000369095|2 +538071|35000369096|2 +538271|35000369097|2 +538211|35000369101|2 +538324|35000369102|2 +538173|35000369103|2 +538296|35000369104|2 +538338|35000369109|2 +538364|35000369110|2 +538367|35000369112|2 +538370|35000369113|2 +538368|35000369114|2 +538369|35000369115|2 +538402|35000369119|2 +538403|35000369120|2 +538445|35000369123|2 +538478|35000369124|2 +538438|35000369126|2 +538534|35000369128|2 +538545|35000369129|2 +538546|35000369130|2 +538584|35000369131|2 +538583|35000369133|2 +538585|35000369134|2 +538646|35000369136|2 +538635|35000369138|2 +538623|35000369139|2 +538631|35000369141|2 +796010|35000369142|2 +538721|35000369143|2 +538723|35000369144|2 +538757|35000369148|2 +538792|35000369150|2 +538793|35000369151|2 +538775|35000369152|2 +538899|35000369154|2 +539021|35000369155|2 +538952|35000369156|2 +538989|35000369158|2 +539047|35000369159|2 +538917|35000369160|2 +538920|35000369162|2 +539008|35000369164|4 +603530|35000369165|2 +881027|35000369166|2 +538990|35000369167|2 +539014|35000369168|2 +538921|35000369169|2 +538953|35000369171|2 +538981|35000369172|2 +538983|35000369173|2 +539022|35000369174|2 +539073|35000369176|2 +540112|35000369182|2 +541782|35000369186|2 +540763|35000369187|2 +541931|35000369190|2 +540132|35000369192|2 +495915|35000369195|2 +547026|35000369198|2 +542050|35000369199|2 +541585|35000369201|2 +540752|35000369209|2 +686204|35000369211|2 +541385|35000369212|2 +540753|35000369214|2 +541820|35000369215|4 +540110|35000369216|2 +541055|35000369218|2 +539217|35000369219|2 +539526|35000369223|4 +540297|35000369224|2 +541231|35000369225|2 +540288|35000369226|2 +541938|35000369227|2 +541821|35000369228|4 +540409|35000369229|2 +539683|35000369230|2 +540815|35000369234|2 +539787|35000369240|2 +540106|35000369241|2 +539827|35000369243|2 +700425|35000369244|2 +645311|35000369245|2 +540160|35000369246|2 +540532|35000369248|2 +540690|35000369253|4 +541524|35000369255|2 +539580|35000369258|2 +541933|35000369260|2 +539975|35000369262|2 +542005|35000369265|2 +540810|35000369269|4 +540983|35000369271|2 +539171|35000369272|2 +540261|35000369273|2 +541700|35000369275|2 +541029|35000369276|2 +541822|35000369277|4 +540482|35000369279|2 +539964|35000369280|2 +755690|35000369281|2 +540895|35000369282|2 +541823|35000369283|4 +539914|35000369285|4 +604047|35000369286|2 +541824|35000369287|4 +540507|35000369292|2 +540812|35000369293|4 +539173|35000369297|2 +541825|35000369298|4 +539174|35000369299|2 +539468|35000369302|4 +541644|35000369304|4 +541387|35000369305|2 +541512|35000369307|2 +539175|35000369310|2 +540101|35000369312|2 +539601|35000369313|2 +541645|35000369314|4 +541124|35000369315|2 +540429|35000369316|4 +541935|35000369317|2 +541461|35000369318|4 +539915|35000369321|4 +800404|35000369324|2 +540859|35000369326|2 +541584|35000369327|2 +565750|35000369330|2 +541946|35000369338|2 +540693|35000369339|4 +539131|35000369341|2 +541936|35000369344|2 +540816|35000369345|2 +539916|35000369349|4 +540133|35000369350|2 +541107|35000369351|2 +540813|35000369357|2 +540036|35000369358|2 +529583|35000369360|2 +542064|35000369364|2 +715322|35000369367|4 +540995|35000369368|2 +539172|35000369369|2 +541619|35000369372|2 +540811|35000369374|4 +541398|35000369376|2 +539600|35000369380|2 +541082|35000369381|2 +541642|35000369382|4 +539433|35000369384|2 +540762|35000369385|2 +540236|35000369386|2 +541945|35000369387|2 +540691|35000369391|4 +540237|35000369392|2 +540828|35000369393|2 +539581|35000369395|2 +540754|35000369396|2 +540809|35000369398|4 +541386|35000369399|2 +539912|35000369406|4 +541675|35000369408|2 +541798|35000369410|4 +539465|35000369413|4 +539846|35000369415|2 +540692|35000369417|4 +541934|35000369418|2 +541643|35000369421|4 +540563|35000369422|2 +541676|35000369425|2 +539913|35000369427|4 +542059|35000369429|2 +542146|35000369430|2 +721771|35000369436|2 +542362|35000369440|2 +542358|35000369441|2 +542352|35000369442|2 +542287|35000369444|2 +542311|35000369447|2 +542313|35000369448|2 +542360|35000369451|2 +542333|35000369452|2 +542279|35000369456|2 +542251|35000369457|2 +542449|35000369461|2 +542420|35000369462|2 +542437|35000369463|2 +542507|35000369464|2 +542554|35000369470|2 +542567|35000369471|2 +542565|35000369472|2 +542566|35000369473|2 +542588|35000369474|2 +542690|35000369475|2 +542677|35000369476|2 +542888|35000369482|2 +542976|35000369485|2 +542978|35000369488|2 +542919|35000369490|2 +543077|35000369492|2 +543078|35000369494|2 +543191|35000369496|2 +543192|35000369497|2 +543202|35000369498|2 +543216|35000369499|2 +543250|35000369501|2 +543217|35000369502|2 +543251|35000369504|2 +543331|35000369505|2 +543394|35000369506|2 +543218|35000369507|2 +543459|35000369509|2 +543461|35000369512|2 +543498|35000369513|2 +543499|35000369514|2 +543501|35000369515|2 +543504|35000369516|2 +543500|35000369517|2 +543484|35000369518|2 +543488|35000369519|2 +543613|35000369526|2 +543631|35000369527|2 +543629|35000369528|2 +543645|35000369530|2 +543638|35000369531|2 +543707|35000369533|2 +543675|35000369534|2 +543744|35000369535|2 +543753|35000369536|2 +543811|35000369537|2 +543881|35000369538|2 +543896|35000369539|2 +543865|35000369540|2 +543922|35000369544|2 +543938|35000369546|2 +543939|35000369547|2 +543949|35000369549|2 +682383|35000369550|2 +543946|35000369551|2 +544022|35000369556|2 +544015|35000369558|2 +544033|35000369560|2 +544088|35000369563|2 +544141|35000369564|2 +544162|35000369566|2 +544163|35000369567|2 +544149|35000369568|2 +544201|35000369569|2 +544277|35000369576|2 +544257|35000369577|2 +544411|35000369579|2 +544348|35000369581|2 +544430|35000369584|2 +544357|35000369586|2 +544412|35000369588|2 +544407|35000369589|2 +544212|35000369590|2 +544259|35000369591|2 +544377|35000369593|2 +544448|35000369596|2 +544453|35000369597|2 +544464|35000369599|2 +544457|35000369600|2 +544479|35000369605|2 +544515|35000369606|2 +544500|35000369609|2 +544477|35000369610|2 +544516|35000369611|2 +544795|35000369618|2 +544803|35000369621|2 +544926|35000369625|2 +545058|35000369626|2 +545028|35000369628|2 +545034|35000369629|2 +544972|35000369632|2 +545011|35000369641|2 +544973|35000369642|2 +544960|35000369646|4 +545088|35000369648|2 +545104|35000369651|2 +545146|35000369653|2 +545183|35000369654|2 +545147|35000369655|2 +545163|35000369656|2 +545238|35000369659|2 +545236|35000369660|2 +545290|35000369664|2 +545284|35000369665|2 +545288|35000369667|2 +545390|35000369669|2 +545392|35000369670|2 +545406|35000369672|2 +545405|35000369673|2 +545456|35000369675|2 +545567|35000369676|2 +545565|35000369677|2 +545603|35000369679|2 +556563|35000369680|2 +545608|35000369681|2 +545599|35000369682|2 +545602|35000369684|2 +545597|35000369685|2 +545616|35000369686|2 +545652|35000369687|2 +545656|35000369688|2 +545741|35000369690|2 +545863|35000369692|2 +641771|35000369693|2 +545875|35000369694|2 +545883|35000369697|2 +545893|35000369698|2 +546076|35000369700|2 +546024|35000369701|2 +546077|35000369702|2 +546203|35000369706|2 +546230|35000369708|2 +546256|35000369709|2 +546289|35000369712|2 +546317|35000369714|2 +546337|35000369719|2 +546338|35000369720|2 +546378|35000369724|2 +546370|35000369725|2 +546366|35000369726|2 +546399|35000369727|2 +546415|35000369728|2 +546416|35000369729|2 +546426|35000369730|2 +546443|35000369732|2 +546434|35000369733|2 +546481|35000369736|2 +546483|35000369737|2 +546491|35000369738|2 +546493|35000369741|2 +546494|35000369743|2 +546508|35000369744|2 +546543|35000369745|2 +546544|35000369746|2 +546550|35000369753|2 +546557|35000369754|2 +546554|35000369755|2 +546728|35000369759|2 +546739|35000369762|2 +546899|35000369764|2 +546812|35000369766|2 +546813|35000369767|2 +546894|35000369768|2 +546841|35000369769|2 +546832|35000369772|2 +546895|35000369774|2 +546913|35000369775|2 +546853|35000369776|2 +546906|35000369777|2 +546907|35000369778|2 +546825|35000369779|2 +546799|35000369780|2 +546947|35000369781|2 +546955|35000369782|2 +546949|35000369783|2 +546951|35000369784|2 +546952|35000369785|2 +760485|35000369786|2 +546956|35000369787|2 +546964|35000369788|2 +546978|35000369790|2 +546986|35000369791|2 +844826|35000369793|2 +547230|35000369795|2 +547233|35000369798|2 +547185|35000369800|2 +547043|35000369802|2 +547099|35000369803|2 +547168|35000369804|2 +547213|35000369807|4 +547241|35000369808|2 +547133|35000369809|2 +547042|35000369810|2 +547187|35000369811|2 +547108|35000369813|2 +547231|35000369814|2 +547255|35000369815|2 +547271|35000369816|2 +547278|35000369817|2 +547284|35000369818|2 +547280|35000369819|2 +547642|35000369823|2 +547846|35000369824|2 +547847|35000369826|2 +547872|35000369828|2 +548033|35000369831|2 +547588|35000369834|2 +547995|35000369838|2 +547590|35000369842|2 +547844|35000369843|2 +548046|35000369844|2 +547959|35000369845|2 +547944|35000369846|2 +547639|35000369849|2 +547729|35000369850|2 +547848|35000369853|2 +547722|35000369856|2 +547658|35000369858|2 +547777|35000369860|2 +548074|35000369863|2 +547723|35000369865|2 +547806|35000369866|2 +547724|35000369869|2 +547725|35000369871|2 +547754|35000369872|2 +547952|35000369873|2 +548150|35000369879|2 +548329|35000369887|2 +548411|35000369888|2 +548441|35000369890|2 +548424|35000369892|2 +548468|35000369897|2 +548470|35000369898|2 +548963|35000369903|2 +548907|35000369904|2 +548736|35000369905|2 +548626|35000369906|2 +548638|35000369907|2 +549005|35000369908|2 +548606|35000369911|2 +548640|35000369912|2 +548796|35000369915|2 +548797|35000369918|2 +548753|35000369919|2 +548908|35000369921|2 +548967|35000369922|2 +548608|35000369923|2 +548722|35000369924|4 +548860|35000369926|2 +548916|35000369929|2 +548552|35000369930|2 +549014|35000369933|2 +548966|35000369937|2 +548723|35000369939|4 +548865|35000369942|2 +548866|35000369943|2 +549066|35000369945|2 +549077|35000369947|2 +549075|35000369948|2 +549105|35000369949|2 +549141|35000369950|2 +549108|35000369951|2 +549106|35000369953|2 +549148|35000369955|2 +549238|35000369956|2 +549239|35000369958|2 +549305|35000369959|2 +549306|35000369960|2 +549290|35000369962|2 +549277|35000369963|2 +549268|35000369965|2 +549286|35000369967|2 +549352|35000369969|2 +549358|35000369971|2 +549430|35000369973|2 +549379|35000369974|2 +549552|35000369981|2 +549475|35000369982|2 +549533|35000369984|2 +646993|35000369988|2 +549667|35000369993|2 +549815|35000369999|2 +549786|35000370001|2 +549795|35000370002|2 +549796|35000370003|2 +549787|35000370005|2 +549865|35000370011|2 +549863|35000370012|2 +549978|35000370017|2 +549981|35000370018|2 +549979|35000370019|2 +550020|35000370020|2 +550021|35000370021|2 +550137|35000370025|2 +550169|35000370027|2 +550166|35000370028|2 +550190|35000370030|2 +550187|35000370031|2 +550170|35000370032|2 +550162|35000370033|2 +550326|35000370034|2 +550616|35000370036|2 +550362|35000370037|2 +550529|35000370042|2 +550562|35000370043|2 +550282|35000370046|2 +550694|35000370049|2 +550289|35000370050|2 +550271|35000370051|4 +550530|35000370052|2 +550272|35000370053|4 +550659|35000370057|4 +562024|35000370059|2 +550778|35000370061|2 +550811|35000370062|4 +550633|35000370063|2 +550666|35000370064|2 +550453|35000370066|2 +550507|35000370067|2 +550555|35000370068|2 +550704|35000370069|2 +550499|35000370071|2 +550783|35000370077|4 +550691|35000370078|2 +550276|35000370084|2 +550660|35000370088|4 +550571|35000370089|2 +550277|35000370090|2 +550273|35000370091|4 +550832|35000370096|2 +550918|35000370097|2 +550907|35000370099|2 +550895|35000370102|2 +550925|35000370103|2 +550880|35000370104|2 +550921|35000370106|2 +550922|35000370107|2 +482039|35000370108|2 +551059|35000370114|2 +551054|35000370115|2 +551049|35000370116|2 +551060|35000370117|2 +551041|35000370120|2 +551044|35000370122|2 +551029|35000370123|2 +551074|35000370124|2 +551030|35000370125|2 +551078|35000370126|2 +551079|35000370127|2 +551092|35000370128|2 +551086|35000370129|2 +551091|35000370130|2 +551087|35000370131|2 +551233|35000370132|2 +551230|35000370133|2 +551322|35000370138|2 +551323|35000370139|2 +551508|35000370140|2 +551410|35000370142|2 +551494|35000370144|2 +551551|35000370148|2 +551552|35000370151|2 +551599|35000370154|2 +551569|35000370157|2 +551553|35000370159|2 +551679|35000370163|2 +551681|35000370164|2 +551937|35000370168|2 +551929|35000370169|2 +551946|35000370170|2 +551947|35000370171|2 +551949|35000370172|2 +552385|35000370173|2 +552724|35000370175|2 +552343|35000370177|2 +552903|35000370181|2 +552804|35000370182|2 +488245|35000370184|2 +552548|35000370186|2 +552202|35000370189|2 +553037|35000370190|2 +552119|35000370191|2 +552426|35000370192|2 +552805|35000370193|2 +553094|35000370195|2 +552537|35000370196|2 +552631|35000370197|2 +552549|35000370199|2 +552203|35000370200|2 +552310|35000370201|2 +552550|35000370202|2 +552958|35000370203|2 +552289|35000370204|2 +553095|35000370205|2 +553617|35000370209|2 +553750|35000370213|2 +553748|35000370214|2 +553745|35000370215|2 +553751|35000370216|2 +624892|35000370217|2 +553763|35000370218|2 +553760|35000370219|2 +553878|35000370222|2 +553904|35000370224|2 +553903|35000370225|2 +553906|35000370226|2 +553937|35000370227|2 +553996|35000370228|2 +553963|35000370231|2 +554043|35000370232|2 +554097|35000370235|2 +554162|35000370236|2 +554207|35000370238|2 +554195|35000370239|2 +554212|35000370245|2 +554250|35000370246|2 +554255|35000370248|2 +554242|35000370249|2 +554244|35000370250|2 +554238|35000370252|2 +546327|35000370253|2 +554344|35000370256|2 +554339|35000370258|2 +554341|35000370259|2 +554424|35000370260|2 +554479|35000370261|2 +554447|35000370264|2 +554448|35000370265|2 +554475|35000370266|2 +554417|35000370267|2 +554387|35000370269|2 +554388|35000370270|2 +554389|35000370271|2 +554518|35000370274|2 +554496|35000370278|2 +554511|35000370279|2 +554497|35000370281|2 +554526|35000370284|2 +554543|35000370285|2 +554542|35000370286|2 +554554|35000370287|2 +554595|35000370289|2 +554598|35000370290|2 +554534|35000370291|2 +554592|35000370293|4 +554527|35000370295|2 +554597|35000370296|2 +554561|35000370297|2 +554654|35000370304|2 +554722|35000370309|2 +554721|35000370316|2 +554770|35000370319|2 +554771|35000370321|2 +554803|35000370322|2 +554951|35000370328|2 +554959|35000370329|2 +554958|35000370331|2 +554960|35000370332|2 +554922|35000370334|2 +554932|35000370335|2 +555143|35000370336|2 +555085|35000370338|2 +555080|35000370341|2 +555126|35000370343|2 +555054|35000370344|2 +555174|35000370345|2 +555063|35000370347|2 +555055|35000370349|2 +555082|35000370350|2 +555180|35000370351|2 +555181|35000370352|2 +555191|35000370354|2 +555199|35000370357|2 +555200|35000370358|2 +555296|35000370359|2 +688274|35000370361|2 +555281|35000370362|2 +555349|35000370363|2 +555502|35000370365|2 +555458|35000370368|2 +555510|35000370371|2 +555485|35000370372|2 +555566|35000370373|2 +555559|35000370374|2 +555561|35000370375|2 +555837|35000370377|2 +555838|35000370378|2 +555893|35000370381|2 +555924|35000370385|2 +702575|35000370387|2 +555896|35000370388|2 +555953|35000370390|2 +555897|35000370392|2 +555963|35000370393|2 +555975|35000370394|2 +556008|35000370395|2 +555979|35000370396|2 +555999|35000370397|2 +555976|35000370398|2 +555986|35000370399|2 +555987|35000370400|2 +555993|35000370401|2 +555991|35000370402|2 +556045|35000370403|2 +556143|35000370405|2 +556220|35000370410|2 +556200|35000370411|2 +556417|35000370413|2 +556339|35000370414|2 +556361|35000370415|2 +556400|35000370416|2 +556304|35000370419|2 +556371|35000370420|2 +556403|35000370423|2 +556340|35000370424|2 +556418|35000370425|2 +556365|35000370427|2 +556256|35000370429|2 +556603|35000370436|2 +556592|35000370440|2 +556599|35000370441|2 +556578|35000370443|2 +556600|35000370444|2 +556634|35000370448|2 +487499|35000370450|2 +556731|35000370451|2 +556685|35000370454|2 +556732|35000370455|2 +556705|35000370456|2 +556780|35000370457|2 +556715|35000370458|2 +556621|35000370459|2 +556650|35000370463|2 +556700|35000370464|2 +556750|35000370465|2 +556816|35000370467|2 +556810|35000370468|2 +556847|35000370469|2 +556859|35000370472|2 +556926|35000370473|2 +556920|35000370476|2 +556925|35000370478|2 +556934|35000370479|2 +556954|35000370480|2 +538537|35000370483|2 +557008|35000370486|2 +557019|35000370487|2 +557002|35000370488|2 +557015|35000370489|2 +557012|35000370490|2 +557160|35000370491|2 +557162|35000370492|2 +557500|35000370497|2 +557501|35000370499|2 +557838|35000370504|2 +557896|35000370505|2 +557846|35000370506|2 +557826|35000370507|2 +557864|35000370508|2 +557832|35000370509|2 +557974|35000370514|2 +557972|35000370515|2 +633682|35000370516|2 +557986|35000370518|2 +558050|35000370520|2 +558039|35000370521|2 +558038|35000370522|2 +558053|35000370523|2 +558051|35000370524|2 +558042|35000370525|2 +558203|35000370529|2 +558204|35000370531|2 +558178|35000370533|2 +558096|35000370535|2 +558097|35000370536|2 +558215|35000370537|2 +558154|35000370538|2 +558136|35000370540|2 +558103|35000370541|2 +558125|35000370545|2 +558239|35000370547|2 +558240|35000370548|2 +550703|35000370551|2 +558232|35000370553|2 +558187|35000370554|2 +558194|35000370555|2 +558104|35000370556|2 +558188|35000370557|2 +558374|35000370558|2 +558377|35000370559|2 +495594|35000370565|2 +558559|35000370567|2 +558566|35000370568|2 +558569|35000370569|2 +558515|35000370570|2 +558551|35000370571|2 +558561|35000370573|2 +558545|35000370574|2 +558587|35000370577|2 +558673|35000370583|2 +558694|35000370584|2 +558718|35000370588|2 +558713|35000370589|2 +559053|35000370592|2 +559200|35000370594|2 +559134|35000370596|2 +558937|35000370597|2 +559048|35000370599|2 +558827|35000370601|2 +559054|35000370603|2 +559125|35000370604|2 +558887|35000370605|4 +559118|35000370606|2 +559456|35000370607|2 +559119|35000370608|2 +559461|35000370609|2 +558962|35000370612|2 +559058|35000370613|2 +559427|35000370614|2 +558846|35000370616|2 +559253|35000370618|2 +880432|35000370619|2 +559254|35000370621|2 +558910|35000370622|2 +558847|35000370623|2 +559259|35000370625|2 +559075|35000370626|2 +558965|35000370633|2 +559344|35000370637|4 +559398|35000370638|4 +559404|35000370642|4 +559291|35000370644|2 +559127|35000370645|2 +504790|35000370646|2 +558969|35000370651|2 +559013|35000370653|2 +559508|35000370656|2 +559502|35000370657|2 +559548|35000370658|2 +559543|35000370660|2 +559545|35000370661|2 +559739|35000370663|2 +559729|35000370666|2 +559706|35000370667|2 +559727|35000370668|2 +559766|35000370670|2 +559774|35000370672|2 +559844|35000370674|2 +559946|35000370676|2 +560220|35000370679|2 +560234|35000370681|2 +560243|35000370682|2 +560241|35000370683|2 +560244|35000370684|2 +560255|35000370685|2 +560261|35000370686|2 +560258|35000370687|2 +560296|35000370691|2 +560304|35000370692|2 +560360|35000370695|2 +560430|35000370699|2 +560421|35000370700|2 +560415|35000370701|2 +560540|35000370704|2 +560580|35000370707|2 +560574|35000370708|2 +560588|35000370711|2 +560575|35000370713|2 +560587|35000370714|2 +560613|35000370715|2 +560576|35000370716|2 +560564|35000370718|2 +560618|35000370719|2 +560619|35000370720|2 +560633|35000370722|2 +560649|35000370723|2 +560655|35000370724|2 +560748|35000370727|2 +560746|35000370729|2 +844739|35000370730|2 +560754|35000370731|2 +560758|35000370733|2 +560978|35000370736|2 +560983|35000370738|2 +560991|35000370739|2 +561021|35000370740|2 +561133|35000370743|2 +561292|35000370744|2 +561374|35000370746|2 +561311|35000370747|2 +561429|35000370749|2 +561534|35000370754|2 +561538|35000370755|2 +561529|35000370756|2 +561561|35000370757|2 +561562|35000370758|2 +561571|35000370759|2 +561636|35000370761|2 +561615|35000370762|2 +561665|35000370763|2 +561722|35000370764|2 +561723|35000370765|2 +561724|35000370767|2 +561812|35000370770|2 +561813|35000370771|2 +561809|35000370772|2 +561923|35000370773|2 +561904|35000370774|2 +561870|35000370775|2 +888104|35000370777|2 +561860|35000370778|2 +561838|35000370781|2 +561847|35000370782|2 +561878|35000370783|2 +561879|35000370784|2 +561877|35000370785|2 +561918|35000370786|2 +561953|35000370790|2 +562017|35000370791|2 +562018|35000370792|2 +562028|35000370793|2 +562218|35000370802|2 +562347|35000370809|2 +562391|35000370810|2 +562348|35000370812|2 +562439|35000370814|2 +562414|35000370815|2 +562466|35000370816|2 +562427|35000370817|2 +562453|35000370819|2 +562472|35000370822|2 +562471|35000370823|2 +562505|35000370827|2 +562513|35000370829|2 +562595|35000370833|2 +562532|35000370834|2 +562658|35000370837|2 +681564|35000370838|2 +562603|35000370839|2 +562599|35000370841|2 +562588|35000370842|2 +562598|35000370843|2 +562580|35000370845|2 +562558|35000370846|2 +562529|35000370847|2 +562604|35000370848|2 +562533|35000370849|2 +562586|35000370851|2 +562623|35000370852|2 +562655|35000370854|2 +801830|35000370857|2 +562796|35000370860|2 +562923|35000370863|2 +562918|35000370864|2 +562946|35000370866|2 +562939|35000370867|2 +562930|35000370868|2 +562938|35000370870|2 +562953|35000370871|2 +562950|35000370872|2 +563026|35000370873|2 +563027|35000370874|2 +563055|35000370877|2 +563048|35000370878|2 +563084|35000370880|2 +563085|35000370881|2 +563094|35000370884|2 +563086|35000370885|2 +563090|35000370886|2 +563122|35000370888|2 +563150|35000370891|2 +563139|35000370893|2 +563132|35000370894|2 +563137|35000370896|2 +563173|35000370897|2 +563134|35000370899|2 +563157|35000370900|2 +563197|35000370901|2 +563354|35000370902|2 +563342|35000370903|2 +563333|35000370905|2 +563261|35000370906|2 +563295|35000370907|2 +563343|35000370909|2 +563382|35000370913|2 +563194|35000370914|2 +563258|35000370915|2 +563213|35000370916|2 +563276|35000370917|2 +563393|35000370920|2 +563442|35000370923|2 +563499|35000370925|2 +563474|35000370926|2 +563545|35000370927|2 +563498|35000370929|2 +563548|35000370934|2 +563467|35000370935|2 +563611|35000370940|2 +563576|35000370943|2 +563663|35000370945|2 +563674|35000370947|2 +563798|35000370948|2 +859554|35000370949|2 +563732|35000370950|2 +563781|35000370952|2 +563915|35000370957|2 +563981|35000370958|2 +564000|35000370960|2 +563962|35000370961|2 +564047|35000370963|2 +564050|35000370964|2 +564089|35000370965|2 +564078|35000370966|2 +564094|35000370967|2 +564096|35000370969|2 +564188|35000370970|2 +564159|35000370973|2 +564245|35000370979|2 +564235|35000370981|2 +564179|35000370982|2 +850244|35000370983|2 +564277|35000370985|2 +564343|35000370986|2 +564386|35000370988|2 +564388|35000370989|2 +564598|35000370990|2 +564590|35000370991|2 +564775|35000370992|2 +564954|35000370993|2 +564910|35000370994|2 +564911|35000370995|2 +564912|35000370996|2 +564863|35000370997|2 +564894|35000370998|2 +564861|35000370999|2 +565000|35000371000|2 +565069|35000371002|2 +565109|35000371005|2 +565105|35000371006|2 +565110|35000371007|2 +565108|35000371008|2 +565299|35000371013|2 +565252|35000371016|2 +565332|35000371018|2 +565246|35000371019|2 +565335|35000371020|2 +565213|35000371022|2 +565247|35000371023|2 +565220|35000371024|2 +565298|35000371029|2 +565185|35000371030|2 +565341|35000371031|2 +565541|35000371040|2 +565548|35000371042|2 +565604|35000371045|2 +565614|35000371046|2 +565629|35000371047|2 +565669|35000371048|2 +565710|35000371049|2 +692488|35000371051|2 +565765|35000371052|2 +565833|35000371053|2 +565870|35000371054|2 +565877|35000371055|2 +565878|35000371056|2 +565895|35000371057|2 +565844|35000371058|2 +566001|35000371061|2 +565959|35000371062|2 +565976|35000371063|2 +565986|35000371064|2 +565973|35000371065|2 +566198|35000371067|2 +566237|35000371070|4 +566301|35000371075|2 +566080|35000371077|2 +740148|35000371081|2 +777578|35000371083|4 +566290|35000371087|4 +566190|35000371088|2 +566065|35000371089|2 +566042|35000371091|2 +566401|35000371093|2 +566137|35000371095|2 +566046|35000371098|2 +566066|35000371101|2 +566362|35000371104|2 +566400|35000371105|2 +566295|35000371106|2 +566081|35000371110|2 +566435|35000371112|2 +566442|35000371113|2 +566541|35000371119|2 +566548|35000371120|2 +566583|35000371124|2 +566588|35000371125|2 +566612|35000371129|2 +566628|35000371130|2 +566633|35000371131|2 +566641|35000371132|2 +566619|35000371135|2 +566783|35000371138|2 +566776|35000371139|2 +566817|35000371140|2 +566922|35000371149|2 +566947|35000371150|2 +712710|35000371151|2 +566992|35000371153|2 +566998|35000371155|2 +567080|35000371157|2 +567140|35000371158|2 +567205|35000371160|2 +567044|35000371161|2 +567114|35000371162|2 +567199|35000371163|2 +567283|35000371167|2 +567270|35000371168|2 +567274|35000371169|2 +567281|35000371170|2 +567287|35000371171|2 +567313|35000371174|2 +567309|35000371176|2 +567302|35000371177|2 +567408|35000371179|2 +567541|35000371185|2 +567571|35000371192|2 +567587|35000371193|2 +567560|35000371194|2 +567572|35000371195|2 +567962|35000371196|2 +567782|35000371198|2 +567654|35000371199|2 +567875|35000371201|2 +567963|35000371202|2 +567727|35000371203|2 +567766|35000371204|2 +567886|35000371210|2 +567761|35000371211|2 +568017|35000371212|2 +567856|35000371214|2 +568057|35000371215|2 +567777|35000371216|2 +567966|35000371220|2 +567783|35000371221|2 +567728|35000371223|2 +567956|35000371227|2 +567743|35000371228|2 +567937|35000371232|2 +567795|35000371234|2 +873515|35000371235|2 +957589|35000371237|2 +567730|35000371238|2 +567982|35000371239|2 +568152|35000371241|2 +568143|35000371242|2 +568432|35000371244|2 +568415|35000371246|2 +568617|35000371248|2 +568212|35000371250|2 +568286|35000371252|2 +568376|35000371253|2 +568440|35000371254|2 +568416|35000371255|2 +568457|35000371256|2 +568531|35000371257|2 +568234|35000371259|2 +568534|35000371260|2 +568633|35000371261|2 +568476|35000371262|2 +568517|35000371263|4 +568240|35000371265|2 +568360|35000371266|2 +568444|35000371267|2 +568533|35000371268|2 +568417|35000371269|2 +568365|35000371273|2 +568507|35000371275|2 +568275|35000371276|2 +568561|35000371277|2 +568622|35000371278|2 +568653|35000371279|2 +568666|35000371280|2 +568713|35000371282|2 +568707|35000371283|2 +568696|35000371285|2 +568716|35000371286|2 +568714|35000371287|2 +568831|35000371288|2 +568924|35000371290|2 +568936|35000371292|2 +568933|35000371293|2 +568937|35000371294|2 +568947|35000371295|2 +569003|35000371298|2 +569068|35000371299|2 +568989|35000371300|2 +569088|35000371301|2 +569558|35000371304|2 +569547|35000371307|2 +569542|35000371308|2 +569568|35000371310|2 +569609|35000371311|2 +569648|35000371312|2 +569664|35000371314|2 +569665|35000371315|2 +569654|35000371316|2 +569685|35000371318|2 +570002|35000371319|2 +569774|35000371323|2 +570169|35000371326|2 +470080|35000371328|2 +570043|35000371330|2 +569905|35000371331|2 +569780|35000371334|2 +569781|35000371335|2 +569771|35000371345|2 +570163|35000371347|2 +571125|35000371349|2 +701954|35000371350|2 +569782|35000371353|2 +570108|35000371354|2 +569732|35000371356|2 +569772|35000371358|2 +569946|35000371360|2 +569874|35000371361|2 +570035|35000371363|2 +570187|35000371365|2 +570054|35000371367|2 +569839|35000371369|4 +569760|35000371370|2 +569825|35000371373|2 +569906|35000371376|2 +569783|35000371377|2 +570075|35000371378|2 +569802|35000371380|2 +570209|35000371382|2 +570055|35000371383|2 +570120|35000371384|2 +570170|35000371385|2 +569861|35000371386|2 +570218|35000371388|2 +570226|35000371389|2 +570242|35000371391|2 +570265|35000371392|2 +570261|35000371393|2 +570263|35000371394|2 +570264|35000371395|2 +570310|35000371399|2 +570359|35000371402|2 +570391|35000371404|2 +570390|35000371405|2 +570471|35000371406|2 +570913|35000371407|2 +570544|35000371408|2 +570889|35000371409|4 +570678|35000371410|2 +570625|35000371415|2 +570728|35000371417|2 +570667|35000371419|2 +570914|35000371420|2 +570993|35000371422|2 +570724|35000371423|2 +570896|35000371427|2 +571003|35000371429|2 +570576|35000371430|2 +570755|35000371434|2 +570651|35000371435|2 +570773|35000371436|2 +570524|35000371438|2 +570711|35000371439|2 +570725|35000371440|2 +570984|35000371441|2 +570756|35000371442|2 +570539|35000371443|2 +570619|35000371444|2 +570949|35000371445|2 +570549|35000371446|2 +570516|35000371447|2 +570976|35000371448|2 +570557|35000371449|2 +570869|35000371450|2 +571080|35000371451|2 +571044|35000371453|2 +571113|35000371454|2 +571150|35000371455|2 +571177|35000371456|2 +571178|35000371457|2 +571216|35000371458|2 +571198|35000371459|2 +571219|35000371460|2 +571230|35000371463|2 +571378|35000371467|2 +571321|35000371468|2 +571356|35000371469|2 +571392|35000371471|2 +571330|35000371473|2 +571374|35000371475|2 +551475|35000371476|2 +571373|35000371477|2 +571414|35000371479|2 +571336|35000371480|2 +571436|35000371483|2 +488349|35000371484|2 +571519|35000371485|2 +571707|35000371486|2 +571708|35000371487|2 +571887|35000371488|4 +571794|35000371489|2 +571626|35000371490|2 +1155627|35000371491|2 +571523|35000371492|2 +571580|35000371494|2 +571678|35000371496|2 +571691|35000371498|2 +571709|35000371499|2 +571785|35000371501|2 +571489|35000371502|4 +571593|35000371503|2 +571636|35000371506|2 +571888|35000371508|4 +571756|35000371509|2 +572002|35000371513|2 +572028|35000371514|2 +572013|35000371515|2 +572174|35000371518|2 +572114|35000371519|2 +572309|35000371523|2 +572313|35000371524|2 +572311|35000371525|2 +610175|35000371526|2 +572416|35000371527|2 +572432|35000371528|2 +572423|35000371529|2 +572430|35000371531|2 +576113|35000371536|2 +572627|35000371538|2 +572631|35000371539|2 +572715|35000371543|2 +572901|35000371545|2 +573009|35000371546|2 +572933|35000371548|2 +572780|35000371549|2 +573046|35000371550|2 +573001|35000371551|2 +572845|35000371555|2 +572824|35000371559|2 +572705|35000371560|2 +573002|35000371561|2 +573003|35000371563|2 +572859|35000371564|2 +572871|35000371565|2 +572741|35000371566|2 +573010|35000371568|2 +572742|35000371569|2 +537137|35000371574|2 +572902|35000371577|2 +572825|35000371578|2 +572809|35000371579|2 +573037|35000371582|2 +572870|35000371583|2 +572945|35000371585|2 +573011|35000371586|2 +572965|35000371587|2 +572727|35000371588|2 +572723|35000371589|2 +572743|35000371590|2 +572946|35000371592|2 +572781|35000371594|2 +573087|35000371603|2 +573085|35000371606|2 +573236|35000371608|2 +573231|35000371609|2 +573221|35000371610|2 +573276|35000371614|2 +573302|35000371615|2 +573317|35000371618|2 +520276|35000371620|2 +573320|35000371621|2 +573391|35000371625|2 +573420|35000371626|2 +573531|35000371629|2 +573465|35000371631|2 +600677|35000371633|2 +701067|35000371634|2 +573546|35000371635|2 +573468|35000371636|2 +794529|35000371637|2 +573527|35000371639|2 +573524|35000371642|2 +573635|35000371644|2 +573642|35000371645|2 +573643|35000371646|2 +573657|35000371647|2 +573655|35000371648|2 +573706|35000371650|2 +573725|35000371651|2 +645334|35000371652|2 +573745|35000371656|2 +573925|35000371659|2 +573948|35000371661|2 +573970|35000371665|2 +573950|35000371666|2 +574027|35000371667|2 +574021|35000371668|2 +574068|35000371669|2 +574074|35000371671|2 +534149|35000371673|2 +574181|35000371675|2 +574347|35000371678|2 +574525|35000371679|2 +574251|35000371681|2 +574457|35000371682|2 +574832|35000371686|2 +574842|35000371687|2 +574830|35000371690|2 +574840|35000371694|2 +574861|35000371695|2 +574862|35000371696|2 +574863|35000371697|2 +575223|35000371703|2 +575067|35000371704|2 +574968|35000371705|2 +575435|35000371706|2 +575412|35000371708|2 +575402|35000371710|2 +575379|35000371711|2 +575553|35000371712|2 +575584|35000371719|2 +575593|35000371720|2 +575572|35000371723|2 +575559|35000371724|2 +575598|35000371725|2 +575612|35000371727|2 +575644|35000371730|2 +886270|35000371731|2 +575727|35000371733|2 +575766|35000371735|2 +575768|35000371736|2 +575880|35000371742|2 +575827|35000371743|2 +575816|35000371744|2 +575817|35000371745|2 +575828|35000371746|2 +575840|35000371747|2 +575947|35000371749|2 +575955|35000371751|2 +575968|35000371755|2 +575990|35000371756|2 +575993|35000371757|2 +575972|35000371760|2 +575975|35000371761|2 +576071|35000371765|2 +576079|35000371766|2 +576201|35000371772|2 +576262|35000371774|2 +576272|35000371775|2 +576356|35000371782|2 +576359|35000371783|2 +576399|35000371785|2 +576386|35000371786|2 +576411|35000371787|2 +576384|35000371788|2 +576454|35000371791|2 +576553|35000371795|2 +576590|35000371796|2 +576667|35000371797|2 +576634|35000371798|2 +576697|35000371799|2 +576615|35000371800|2 +576704|35000371801|2 +576669|35000371803|2 +576655|35000371804|2 +576668|35000371806|2 +576660|35000371809|2 +576674|35000371810|2 +576693|35000371811|2 +576670|35000371812|2 +576638|35000371813|2 +576766|35000371817|2 +576799|35000371818|2 +576772|35000371820|2 +576718|35000371821|2 +576712|35000371823|2 +576729|35000371824|2 +576787|35000371825|2 +576822|35000371828|2 +576719|35000371829|2 +576842|35000371833|2 +576841|35000371834|2 +576852|35000371835|2 +576858|35000371838|2 +576882|35000371840|2 +576916|35000371845|2 +577040|35000371849|2 +577205|35000371854|2 +577245|35000371861|2 +577246|35000371862|2 +577262|35000371863|2 +577256|35000371864|2 +577312|35000371865|2 +577389|35000371866|2 +577443|35000371868|2 +577512|35000371871|2 +577507|35000371872|2 +577640|35000371873|2 +577649|35000371874|2 +577710|35000371877|2 +577700|35000371878|2 +577776|35000371881|2 +577801|35000371883|2 +577807|35000371886|2 +577812|35000371887|2 +577818|35000371888|2 +577822|35000371889|2 +577973|35000371893|2 +577950|35000371894|2 +577971|35000371895|2 +577946|35000371898|2 +578215|35000371900|2 +578221|35000371901|2 +578226|35000371903|2 +578225|35000371904|2 +578242|35000371905|2 +578241|35000371906|2 +578235|35000371907|2 +578236|35000371908|2 +578289|35000371909|2 +578286|35000371910|2 +578301|35000371911|2 +578314|35000371912|2 +578357|35000371917|2 +578352|35000371919|2 +578370|35000371921|2 +578354|35000371925|2 +578413|35000371927|2 +578481|35000371928|2 +578473|35000371930|2 +578475|35000371931|2 +578482|35000371933|2 +578487|35000371934|2 +578469|35000371935|2 +578491|35000371938|2 +578548|35000371941|2 +578595|35000371942|2 +578550|35000371943|2 +578561|35000371944|2 +578573|35000371945|2 +578596|35000371946|2 +578678|35000371952|2 +578677|35000371953|2 +578751|35000371956|2 +578801|35000371959|2 +578832|35000371962|2 +578920|35000371970|2 +579015|35000371972|2 +578997|35000371973|2 +579189|35000371977|2 +579260|35000371979|2 +704501|35000371980|2 +579236|35000371981|2 +579146|35000371983|2 +579231|35000371984|2 +579134|35000371986|2 +579147|35000371988|2 +579110|35000371990|2 +579249|35000371991|2 +579150|35000371992|2 +579322|35000371993|2 +579345|35000371997|2 +579352|35000371998|2 +579346|35000371999|2 +793869|35000372000|2 +579347|35000372001|2 +579392|35000372003|2 +579381|35000372005|2 +579530|35000372011|2 +579500|35000372012|2 +579515|35000372013|2 +579501|35000372014|2 +579503|35000372016|2 +579521|35000372017|2 +579504|35000372019|2 +579519|35000372020|2 +579493|35000372023|2 +579477|35000372024|2 +579508|35000372025|2 +579551|35000372027|2 +579573|35000372028|2 +579577|35000372029|2 +579627|35000372032|2 +579629|35000372033|2 +579630|35000372035|2 +555848|35000372039|2 +579723|35000372041|2 +579738|35000372045|2 +579749|35000372046|2 +579768|35000372049|2 +579993|35000372056|2 +580034|35000372061|2 +580073|35000372062|2 +580055|35000372066|2 +580124|35000372068|2 +580153|35000372070|2 +580228|35000372072|2 +580482|35000372074|2 +580424|35000372077|2 +580463|35000372079|2 +580425|35000372084|2 +580389|35000372086|2 +580481|35000372088|2 +580340|35000372090|2 +580489|35000372092|2 +656602|35000372093|2 +580517|35000372094|2 +580518|35000372095|2 +580671|35000372100|2 +580636|35000372101|2 +580749|35000372105|2 +580776|35000372107|2 +581084|35000372109|2 +725736|35000372111|2 +581090|35000372112|2 +581088|35000372113|2 +581106|35000372116|2 +581112|35000372117|2 +581104|35000372118|2 +581105|35000372121|2 +581168|35000372122|2 +581181|35000372124|2 +581218|35000372126|2 +581222|35000372127|2 +581216|35000372128|2 +581215|35000372129|2 +581221|35000372130|2 +581249|35000372133|2 +581248|35000372134|2 +581466|35000372140|2 +581447|35000372141|2 +581436|35000372142|2 +581462|35000372143|2 +581473|35000372144|2 +581657|35000372146|2 +581555|35000372147|2 +581617|35000372153|2 +581654|35000372159|2 +581658|35000372160|2 +581607|35000372161|2 +581756|35000372164|2 +581752|35000372167|2 +581806|35000372168|2 +581840|35000372169|2 +581764|35000372170|2 +581827|35000372172|2 +581817|35000372173|2 +581776|35000372174|2 +581781|35000372175|2 +581847|35000372177|2 +613437|35000372178|2 +581853|35000372182|2 +581852|35000372183|2 +581867|35000372185|2 +869351|35000372186|2 +581868|35000372190|2 +581931|35000372191|2 +582148|35000372194|2 +582171|35000372195|2 +791390|35000372198|2 +582240|35000372202|2 +582353|35000372204|2 +582387|35000372205|2 +582524|35000372213|2 +582528|35000372214|2 +582614|35000372222|2 +582648|35000372223|2 +582838|35000372224|2 +582790|35000372225|2 +582708|35000372227|2 +582682|35000372229|2 +582695|35000372231|2 +582750|35000372234|2 +582776|35000372235|2 +582817|35000372236|2 +582768|35000372240|2 +582962|35000372241|2 +582938|35000372242|4 +583004|35000372243|2 +583012|35000372244|2 +582978|35000372247|2 +582958|35000372249|2 +583003|35000372250|2 +582927|35000372253|2 +582943|35000372254|2 +583000|35000372256|2 +564822|35000372257|2 +582935|35000372258|2 +582925|35000372260|2 +582929|35000372261|2 +583084|35000372263|2 +583095|35000372266|2 +583035|35000372267|2 +583116|35000372269|2 +583029|35000372271|2 +583089|35000372274|2 +583062|35000372275|2 +583465|35000372277|2 +583395|35000372280|2 +583190|35000372281|4 +583218|35000372282|2 +583292|35000372284|2 +583320|35000372288|2 +583327|35000372289|2 +679017|35000372297|2 +583377|35000372300|2 +583202|35000372303|2 +583404|35000372305|2 +583538|35000372307|2 +802199|35000372317|2 +583816|35000372320|2 +583819|35000372321|2 +583820|35000372322|2 +583902|35000372328|2 +583891|35000372329|2 +896950|35000372331|2 +584041|35000372334|2 +584282|35000372337|2 +584278|35000372338|2 +584343|35000372340|2 +584339|35000372341|2 +584342|35000372342|2 +584345|35000372344|2 +584338|35000372345|2 +584341|35000372347|2 +584431|35000372348|2 +584557|35000372352|2 +584844|35000372356|2 +584833|35000372357|2 +584828|35000372358|2 +584954|35000372360|2 +584959|35000372361|2 +585029|35000372363|2 +585036|35000372365|2 +585040|35000372366|2 +585041|35000372367|2 +585039|35000372368|2 +585075|35000372371|2 +585105|35000372373|2 +585161|35000372374|2 +585102|35000372376|2 +585120|35000372377|2 +585139|35000372379|2 +585119|35000372380|2 +585103|35000372381|2 +585142|35000372382|2 +585104|35000372383|2 +585143|35000372385|2 +585134|35000372387|2 +585185|35000372389|2 +585180|35000372390|2 +585184|35000372391|2 +585314|35000372394|2 +585301|35000372395|2 +585509|35000372399|2 +585510|35000372400|2 +585511|35000372401|2 +585503|35000372402|2 +585802|35000372405|2 +585808|35000372406|2 +585870|35000372407|4 +585885|35000372408|4 +585888|35000372409|2 +585890|35000372411|2 +585926|35000372413|2 +585927|35000372414|2 +586016|35000372418|2 +586063|35000372420|2 +586072|35000372421|2 +586108|35000372422|2 +586109|35000372423|2 +586110|35000372425|2 +586189|35000372428|2 +586190|35000372429|2 +586231|35000372432|2 +586272|35000372434|2 +586269|35000372435|2 +586267|35000372437|2 +586405|35000372441|2 +586440|35000372442|2 +586330|35000372446|2 +586506|35000372449|2 +586493|35000372450|2 +586596|35000372456|2 +586601|35000372457|2 +586652|35000372458|2 +586702|35000372460|2 +586723|35000372462|2 +586980|35000372469|2 +587062|35000372470|2 +587120|35000372471|2 +587043|35000372472|2 +587080|35000372473|2 +587051|35000372474|2 +587113|35000372475|2 +587115|35000372476|2 +587300|35000372483|2 +587308|35000372485|2 +587362|35000372487|2 +587363|35000372489|2 +587239|35000372490|2 +587304|35000372491|2 +587349|35000372493|2 +587290|35000372495|2 +587271|35000372497|2 +587325|35000372501|2 +587296|35000372502|2 +587238|35000372503|2 +587267|35000372504|2 +587368|35000372506|2 +587257|35000372507|2 +587348|35000372509|2 +587309|35000372511|2 +587310|35000372512|2 +587350|35000372517|2 +587243|35000372518|2 +587385|35000372520|2 +587387|35000372521|2 +587391|35000372522|2 +587386|35000372524|2 +587394|35000372525|2 +587396|35000372526|2 +587390|35000372528|2 +587451|35000372529|2 +587460|35000372530|2 +587490|35000372532|2 +587677|35000372534|2 +587643|35000372535|2 +587679|35000372536|2 +587701|35000372537|2 +587680|35000372538|2 +587629|35000372539|2 +720725|35000372540|2 +587683|35000372541|2 +587678|35000372542|2 +587624|35000372543|2 +587793|35000372546|2 +587817|35000372548|2 +587818|35000372549|2 +587825|35000372552|2 +587813|35000372553|2 +587877|35000372555|2 +587852|35000372557|2 +587878|35000372559|2 +798184|35000372560|2 +587953|35000372562|2 +587971|35000372563|2 +587949|35000372564|2 +587981|35000372568|2 +588083|35000372572|2 +588084|35000372573|2 +588078|35000372574|2 +588032|35000372575|2 +588040|35000372578|2 +588048|35000372583|2 +588104|35000372584|2 +588107|35000372585|2 +588199|35000372588|2 +588176|35000372589|2 +588198|35000372590|2 +588495|35000372591|2 +588616|35000372592|2 +588610|35000372593|2 +588613|35000372594|2 +588614|35000372595|2 +588607|35000372596|2 +588685|35000372598|2 +588665|35000372599|2 +588743|35000372600|2 +588748|35000372601|2 +588749|35000372602|2 +588779|35000372603|2 +588769|35000372605|2 +588785|35000372606|2 +588789|35000372607|2 +588794|35000372608|2 +588807|35000372609|2 +588809|35000372610|2 +588828|35000372611|2 +588834|35000372614|2 +588927|35000372622|2 +588928|35000372623|2 +588952|35000372625|2 +588961|35000372626|2 +588962|35000372627|2 +589001|35000372630|2 +589028|35000372631|2 +589045|35000372633|2 +589015|35000372635|2 +589096|35000372636|2 +589087|35000372637|2 +589102|35000372638|2 +589114|35000372639|2 +589111|35000372640|2 +589124|35000372642|2 +589126|35000372644|2 +589155|35000372646|2 +589212|35000372648|2 +589205|35000372649|2 +589229|35000372651|2 +589221|35000372652|2 +589283|35000372655|2 +589282|35000372656|2 +589280|35000372657|2 +589281|35000372658|2 +589316|35000372660|2 +589334|35000372661|2 +589332|35000372663|2 +589320|35000372664|2 +589335|35000372665|2 +589329|35000372666|2 +589338|35000372667|2 +589339|35000372668|2 +589348|35000372669|2 +589349|35000372670|2 +589449|35000372671|2 +589457|35000372674|2 +589463|35000372676|2 +589461|35000372677|2 +589508|35000372679|2 +589568|35000372681|2 +589570|35000372682|2 +589604|35000372684|2 +589634|35000372685|2 +589591|35000372686|2 +842490|35000372687|2 +589602|35000372688|2 +589571|35000372689|2 +589572|35000372691|2 +589635|35000372692|2 +589642|35000372695|2 +589691|35000372696|2 +589724|35000372699|2 +589723|35000372700|2 +589727|35000372702|2 +589776|35000372705|2 +589775|35000372706|2 +589841|35000372709|2 +589833|35000372710|2 +589857|35000372714|2 +590043|35000372716|2 +590047|35000372717|2 +590048|35000372719|2 +590078|35000372721|2 +590080|35000372722|2 +590103|35000372724|2 +590104|35000372727|2 +590111|35000372728|2 +590105|35000372729|2 +590094|35000372731|2 +590144|35000372733|2 +590151|35000372736|2 +590208|35000372739|2 +590279|35000372740|2 +590234|35000372741|2 +590242|35000372743|2 +590224|35000372744|2 +856141|35000372745|2 +590369|35000372751|2 +590424|35000372752|2 +590382|35000372754|2 +590423|35000372756|2 +590451|35000372758|2 +590448|35000372759|2 +590419|35000372761|2 +590460|35000372764|2 +590461|35000372765|2 +590467|35000372766|2 +590472|35000372767|2 +590488|35000372768|2 +590489|35000372769|2 +590478|35000372770|2 +590505|35000372771|2 +590514|35000372772|2 +590500|35000372773|2 +658341|35000372776|2 +590720|35000372777|2 +590763|35000372779|2 +590760|35000372783|2 +590815|35000372785|2 +590826|35000372788|2 +590832|35000372789|2 +590828|35000372790|2 +590829|35000372792|2 +590851|35000372793|2 +590889|35000372796|2 +590940|35000372797|2 +590968|35000372798|2 +590987|35000372799|2 +590931|35000372802|2 +591019|35000372804|2 +591073|35000372807|2 +591092|35000372808|2 +591095|35000372809|2 +591115|35000372810|2 +591114|35000372811|2 +591112|35000372812|2 +591108|35000372814|2 +591100|35000372815|2 +591101|35000372816|2 +591134|35000372819|2 +592041|35000372821|2 +591512|35000372826|2 +591985|35000372827|2 +591624|35000372829|2 +591889|35000372830|4 +591612|35000372831|2 +591404|35000372833|2 +592009|35000372834|2 +591296|35000372835|4 +591613|35000372836|2 +591894|35000372840|4 +591695|35000372841|2 +591828|35000372843|4 +591461|35000372845|2 +591314|35000372850|2 +591693|35000372854|2 +690408|35000372856|2 +591707|35000372857|2 +591297|35000372860|4 +591472|35000372861|2 +591606|35000372862|2 +591591|35000372866|4 +591664|35000372867|2 +591298|35000372868|4 +591225|35000372869|2 +591260|35000372870|2 +591946|35000372872|2 +591947|35000372876|2 +592021|35000372877|2 +591555|35000372878|2 +591821|35000372879|4 +591986|35000372880|2 +591987|35000372881|2 +591674|35000372882|2 +591237|35000372886|4 +591708|35000372889|2 +591859|35000372893|2 +591238|35000372895|4 +592042|35000372896|2 +591350|35000372898|2 +591605|35000372899|2 +775330|35000372902|2 +591887|35000372903|2 +591514|35000372908|2 +591220|35000372909|2 +592355|35000372912|2 +592370|35000372914|2 +592103|35000372918|2 +592402|35000372919|4 +592206|35000372923|2 +592207|35000372924|2 +592230|35000372927|2 +592371|35000372929|2 +592469|35000372935|2 +592104|35000372936|2 +592158|35000372937|2 +592159|35000372938|2 +592595|35000372943|2 +592611|35000372945|2 +592608|35000372946|2 +592603|35000372947|2 +592746|35000372948|2 +592738|35000372949|2 +592745|35000372951|2 +592865|35000372959|2 +592882|35000372961|2 +592982|35000372964|2 +592986|35000372965|2 +592987|35000372967|2 +593070|35000372968|2 +593126|35000372972|2 +593135|35000372977|2 +593172|35000372979|2 +593173|35000372981|2 +593295|35000372986|2 +593310|35000372987|2 +593321|35000372988|2 +593320|35000372991|2 +593397|35000372992|2 +593398|35000372993|2 +593361|35000372995|2 +593457|35000372996|2 +593454|35000372998|2 +593449|35000373000|2 +593538|35000373002|2 +593536|35000373004|2 +593549|35000373006|2 +593563|35000373007|2 +593562|35000373008|2 +593584|35000373010|2 +593580|35000373011|2 +593674|35000373017|2 +593703|35000373019|2 +593699|35000373020|2 +593700|35000373021|2 +593743|35000373025|2 +593780|35000373026|2 +593723|35000373027|2 +593781|35000373028|2 +593762|35000373032|2 +593787|35000373033|2 +593870|35000373035|2 +593873|35000373037|2 +593909|35000373038|2 +593910|35000373039|2 +593949|35000373041|2 +593952|35000373042|2 +593950|35000373044|2 +594025|35000373046|2 +594105|35000373049|2 +594117|35000373050|2 +594133|35000373051|2 +594134|35000373052|2 +594212|35000373054|2 +594311|35000373056|2 +594318|35000373057|2 +512401|35000373059|2 +594351|35000373060|2 +594374|35000373062|2 +594382|35000373066|2 +594379|35000373068|2 +594381|35000373069|2 +594421|35000373071|2 +594532|35000373076|2 +594541|35000373077|2 +594529|35000373078|2 +594519|35000373080|2 +680105|35000373082|2 +594591|35000373086|2 +594634|35000373087|2 +594656|35000373089|2 +594578|35000373092|2 +594653|35000373095|2 +594624|35000373097|2 +594573|35000373098|2 +594657|35000373099|2 +594627|35000373100|2 +594605|35000373101|2 +594750|35000373106|2 +594868|35000373111|2 +594909|35000373116|2 +594911|35000373117|2 +594907|35000373118|2 +594958|35000373119|2 +594993|35000373120|2 +594994|35000373121|2 +595025|35000373124|2 +595036|35000373128|2 +595029|35000373129|2 +595040|35000373132|2 +595133|35000373134|2 +595132|35000373135|2 +595140|35000373136|2 +595187|35000373141|2 +595369|35000373142|2 +595483|35000373149|2 +595469|35000373150|2 +595519|35000373151|2 +595603|35000373153|2 +595506|35000373154|2 +595487|35000373155|2 +595566|35000373156|2 +595488|35000373163|2 +595716|35000373169|2 +595793|35000373173|2 +595779|35000373174|2 +511056|35000373178|2 +595933|35000373179|2 +595957|35000373186|2 +595966|35000373189|2 +595937|35000373190|2 +595968|35000373191|2 +596028|35000373192|2 +595839|35000373199|2 +595892|35000373203|2 +595866|35000373205|2 +596174|35000373213|2 +596149|35000373214|2 +596172|35000373215|2 +596173|35000373216|2 +596250|35000373219|2 +596251|35000373220|2 +596260|35000373221|2 +596264|35000373222|2 +596259|35000373224|2 +596265|35000373228|2 +596267|35000373231|2 +596272|35000373233|2 +596282|35000373234|2 +596289|35000373235|2 +596278|35000373236|2 +596293|35000373237|2 +596305|35000373238|2 +596308|35000373240|2 +596309|35000373241|2 +596329|35000373245|2 +596404|35000373249|2 +596407|35000373251|2 +596517|35000373254|2 +596531|35000373256|2 +596574|35000373260|2 +596607|35000373261|2 +596593|35000373262|2 +596630|35000373264|2 +596626|35000373266|2 +714923|35000373267|2 +692998|35000373268|2 +596657|35000373269|2 +596676|35000373270|2 +596841|35000373273|2 +597478|35000373281|2 +597354|35000373282|2 +597251|35000373283|2 +577802|35000373284|2 +597092|35000373287|4 +597221|35000373293|2 +597346|35000373295|2 +597114|35000373297|2 +597364|35000373298|2 +597075|35000373299|2 +597152|35000373306|2 +597344|35000373309|2 +597122|35000373310|2 +597260|35000373311|2 +597031|35000373314|2 +597347|35000373316|2 +597243|35000373317|4 +597308|35000373319|2 +597365|35000373321|2 +597123|35000373325|2 +597383|35000373327|2 +597016|35000373332|2 +597076|35000373334|2 +597033|35000373335|2 +597334|35000373336|2 +597222|35000373337|2 +597338|35000373339|2 +597436|35000373341|2 +596973|35000373342|2 +597407|35000373343|2 +597263|35000373344|2 +597037|35000373346|2 +597339|35000373347|2 +597388|35000373350|2 +597061|35000373351|2 +597340|35000373354|2 +597857|35000373360|2 +597698|35000373361|2 +597848|35000373362|2 +597739|35000373364|2 +597862|35000373367|2 +597601|35000373368|2 +597622|35000373370|2 +597666|35000373371|2 +597681|35000373372|2 +597841|35000373374|2 +597788|35000373375|2 +597798|35000373377|2 +597863|35000373378|2 +597885|35000373382|2 +597972|35000373385|2 +871661|35000373386|2 +597928|35000373388|2 +597904|35000373389|2 +597905|35000373390|2 +597993|35000373391|2 +597941|35000373392|2 +597912|35000373394|2 +596573|35000373395|2 +597983|35000373396|2 +598002|35000373397|2 +597960|35000373398|2 +597920|35000373399|2 +598001|35000373400|2 +597952|35000373401|2 +597915|35000373406|2 +598017|35000373408|2 +598006|35000373410|2 +488630|35000373411|2 +598059|35000373414|2 +598077|35000373416|2 +598096|35000373417|2 +598095|35000373418|2 +598102|35000373421|2 +598134|35000373422|2 +598133|35000373423|2 +598250|35000373424|2 +598302|35000373425|2 +598495|35000373430|2 +598479|35000373431|2 +598534|35000373433|2 +598554|35000373434|2 +598563|35000373436|2 +599242|35000373437|2 +599317|35000373438|2 +599013|35000373439|2 +599278|35000373443|2 +598693|35000373444|4 +599008|35000373449|2 +599014|35000373451|2 +598642|35000373452|2 +598823|35000373454|2 +599117|35000373455|2 +598934|35000373457|2 +599279|35000373460|2 +598700|35000373463|2 +598808|35000373464|2 +599154|35000373465|4 +599355|35000373469|2 +598964|35000373470|2 +598840|35000373473|2 +599271|35000373474|4 +598953|35000373475|2 +598863|35000373476|2 +598834|35000373477|2 +516720|35000373479|2 +598861|35000373480|2 +599155|35000373481|2 +599264|35000373482|2 +599172|35000373485|2 +598947|35000373486|2 +599153|35000373487|4 +599158|35000373490|4 +598774|35000373492|2 +598886|35000373493|2 +598609|35000373498|2 +599139|35000373501|4 +599012|35000373502|2 +599282|35000373503|2 +598643|35000373507|2 +598739|35000373508|2 +599308|35000373510|2 +599284|35000373511|2 +598990|35000373512|2 +598685|35000373513|2 +598948|35000373514|2 +598973|35000373515|2 +599344|35000373517|2 +599450|35000373523|2 +599447|35000373524|2 +599460|35000373526|2 +599458|35000373527|2 +599463|35000373528|2 +599464|35000373529|2 +599470|35000373531|2 +599499|35000373532|2 +599547|35000373534|2 +599979|35000373535|2 +599814|35000373536|2 +599551|35000373537|2 +599753|35000373538|2 +600240|35000373541|2 +600242|35000373543|2 +600233|35000373544|2 +600232|35000373545|2 +600281|35000373546|2 +600410|35000373549|2 +600374|35000373551|2 +600350|35000373552|2 +600411|35000373553|2 +600353|35000373554|2 +600399|35000373556|2 +600377|35000373557|2 +600396|35000373559|2 +600356|35000373562|2 +600458|35000373565|2 +600420|35000373567|2 +600466|35000373569|2 +600467|35000373571|2 +600488|35000373572|2 +600525|35000373573|2 +600516|35000373575|2 +600517|35000373576|2 +600523|35000373578|2 +600618|35000373579|2 +600589|35000373581|2 +600643|35000373582|2 +600675|35000373583|2 +600653|35000373584|2 +600682|35000373585|2 +600652|35000373586|2 +600678|35000373587|2 +600727|35000373588|2 +600728|35000373590|2 +600900|35000373592|2 +844825|35000373593|2 +600906|35000373594|2 +600908|35000373595|2 +600977|35000373599|2 +601054|35000373601|2 +601059|35000373603|2 +601096|35000373604|2 +601189|35000373608|2 +601229|35000373611|2 +601243|35000373613|2 +601270|35000373614|2 +601416|35000373615|2 +601421|35000373618|2 +601395|35000373619|2 +601414|35000373620|2 +601473|35000373623|2 +601461|35000373624|2 +601460|35000373625|2 +601459|35000373626|2 +601486|35000373627|2 +483494|35000373628|2 +601503|35000373630|2 +601470|35000373631|2 +601521|35000373632|2 +601536|35000373633|2 +601629|35000373636|2 +601604|35000373637|2 +601648|35000373638|2 +601642|35000373639|2 +601637|35000373640|2 +601650|35000373642|2 +601643|35000373645|2 +601632|35000373647|2 +601640|35000373649|2 +601641|35000373650|2 +681366|35000373651|2 +601665|35000373653|2 +601711|35000373655|2 +601726|35000373658|2 +601724|35000373659|2 +601727|35000373660|2 +601712|35000373661|2 +601779|35000373663|2 +601786|35000373664|2 +601799|35000373667|2 +601778|35000373668|2 +601733|35000373669|2 +601791|35000373671|2 +601770|35000373672|2 +601816|35000373673|2 +601949|35000373676|2 +601869|35000373677|2 +601845|35000373678|2 +601987|35000373679|2 +601920|35000373680|2 +601904|35000373681|2 +601874|35000373683|2 +601827|35000373685|2 +601988|35000373687|2 +602004|35000373688|2 +601955|35000373690|2 +601855|35000373691|2 +602022|35000373692|2 +601915|35000373695|2 +601978|35000373696|2 +602006|35000373697|2 +601875|35000373699|2 +601999|35000373700|2 +601986|35000373702|2 +602072|35000373703|2 +602129|35000373711|2 +602182|35000373712|2 +602202|35000373716|2 +602222|35000373719|2 +602342|35000373721|2 +602260|35000373722|2 +602289|35000373723|4 +602308|35000373724|2 +602273|35000373726|2 +602335|35000373727|2 +602401|35000373729|2 +602429|35000373732|2 +602452|35000373733|2 +602468|35000373734|2 +602430|35000373735|2 +602571|35000373740|2 +602568|35000373741|2 +602569|35000373742|2 +602596|35000373744|2 +602759|35000373747|2 +602781|35000373748|2 +602789|35000373749|2 +789934|35000373753|2 +480342|35000373754|2 +602838|35000373755|2 +602846|35000373756|2 +602914|35000373757|2 +602858|35000373758|2 +602920|35000373761|2 +602926|35000373762|2 +602814|35000373763|2 +602923|35000373764|2 +602815|35000373765|2 +603133|35000373772|2 +603118|35000373774|2 +603023|35000373778|2 +603107|35000373780|2 +603086|35000373781|2 +603033|35000373782|2 +603129|35000373783|2 +603000|35000373784|2 +668790|35000373785|2 +603119|35000373787|2 +602530|35000373788|2 +603105|35000373789|2 +603181|35000373790|2 +603034|35000373791|2 +603204|35000373792|2 +603275|35000373793|2 +603248|35000373794|2 +603283|35000373795|2 +603301|35000373796|2 +603377|35000373802|2 +603396|35000373804|2 +603420|35000373805|2 +603388|35000373806|2 +603325|35000373807|2 +491523|35000373811|2 +603555|35000373812|2 +603556|35000373813|2 +603552|35000373814|2 +603536|35000373815|2 +603560|35000373816|2 +603546|35000373817|2 +603558|35000373818|2 +603539|35000373819|2 +603563|35000373822|2 +603562|35000373823|2 +603600|35000373826|2 +603629|35000373827|2 +603627|35000373828|2 +603684|35000373829|2 +603656|35000373832|2 +603700|35000373833|2 +603645|35000373834|2 +603716|35000373837|2 +603778|35000373838|2 +603777|35000373839|2 +604045|35000373844|2 +603885|35000373846|2 +744431|35000373847|2 +761515|35000373848|2 +604052|35000373849|2 +603887|35000373850|4 +603833|35000373852|2 +603996|35000373853|2 +879627|35000373854|2 +604057|35000373855|2 +603886|35000373857|2 +603891|35000373860|2 +603856|35000373861|2 +603994|35000373862|2 +603915|35000373864|2 +604058|35000373865|2 +659379|35000373866|2 +604251|35000373867|2 +604321|35000373870|2 +604322|35000373871|2 +604352|35000373873|2 +604383|35000373876|2 +604390|35000373878|2 +790564|35000373879|2 +604579|35000373880|2 +604476|35000373881|2 +604377|35000373883|2 +604517|35000373884|2 +604434|35000373886|2 +604540|35000373887|2 +604432|35000373889|2 +604391|35000373890|2 +604541|35000373891|2 +604480|35000373892|2 +604539|35000373893|2 +604525|35000373894|2 +604384|35000373898|2 +604448|35000373900|2 +604530|35000373901|2 +604485|35000373903|2 +685981|35000373904|2 +604518|35000373905|2 +604379|35000373906|2 +604566|35000373907|2 +604481|35000373908|2 +604675|35000373910|2 +604649|35000373911|2 +604620|35000373912|2 +604647|35000373913|2 +604635|35000373914|2 +604764|35000373915|2 +604962|35000373917|2 +605126|35000373918|2 +604793|35000373919|2 +604765|35000373923|2 +605213|35000373925|2 +605272|35000373926|2 +604766|35000373927|2 +605012|35000373928|2 +604902|35000373930|2 +604988|35000373931|2 +604923|35000373932|2 +605142|35000373942|2 +582913|35000373945|2 +605144|35000373947|2 +605115|35000373948|2 +604987|35000373949|2 +604751|35000373950|2 +604927|35000373954|2 +604903|35000373955|2 +605097|35000373956|2 +604767|35000373957|2 +605034|35000373958|2 +604768|35000373963|2 +605256|35000373964|2 +604769|35000373968|2 +604840|35000373969|2 +604779|35000373970|2 +605124|35000373971|2 +605098|35000373973|2 +604724|35000373974|2 +604897|35000373976|2 +605293|35000373979|2 +605397|35000373981|2 +605418|35000373983|2 +605330|35000373985|2 +605347|35000373986|2 +605375|35000373990|2 +605369|35000373991|2 +605378|35000373993|2 +605381|35000373994|2 +605405|35000373995|2 +605366|35000373996|2 +605370|35000373997|2 +605474|35000373998|2 +605497|35000374001|2 +605498|35000374002|2 +605520|35000374004|2 +605521|35000374005|2 +605517|35000374007|2 +605522|35000374008|2 +605536|35000374009|2 +605587|35000374010|4 +605565|35000374011|2 +605582|35000374012|2 +605698|35000374014|2 +605679|35000374016|2 +605699|35000374017|2 +605710|35000374021|2 +605825|35000374028|2 +605713|35000374029|2 +605732|35000374030|2 +605821|35000374032|2 +605776|35000374033|2 +605711|35000374036|2 +605744|35000374037|2 +605822|35000374038|2 +605838|35000374039|2 +605864|35000374040|2 +605863|35000374042|2 +605869|35000374043|2 +605865|35000374045|2 +606270|35000374047|2 +606186|35000374048|2 +606071|35000374050|2 +606093|35000374051|2 +606254|35000374052|2 +605968|35000374053|2 +606294|35000374059|4 +606255|35000374060|2 +606208|35000374063|2 +606062|35000374064|2 +771269|35000374065|2 +606477|35000374068|2 +606448|35000374069|2 +606473|35000374070|2 +606441|35000374071|2 +606437|35000374073|2 +702730|35000374074|2 +606508|35000374075|2 +606511|35000374076|2 +606505|35000374077|2 +606509|35000374079|2 +606536|35000374081|2 +606527|35000374082|2 +606606|35000374084|2 +606615|35000374088|2 +606563|35000374089|2 +606691|35000374090|2 +606695|35000374092|2 +606766|35000374094|2 +606783|35000374096|2 +606831|35000374099|2 +606798|35000374100|2 +606814|35000374101|2 +606809|35000374102|2 +606828|35000374103|2 +606913|35000374104|2 +606927|35000374106|2 +606967|35000374109|2 +607009|35000374110|2 +606990|35000374111|2 +606995|35000374112|2 +607005|35000374113|2 +607087|35000374116|2 +607110|35000374117|2 +607116|35000374118|2 +607177|35000374121|2 +607161|35000374122|2 +607126|35000374123|2 +607102|35000374125|2 +607115|35000374129|2 +607137|35000374130|4 +607084|35000374133|2 +607127|35000374134|2 +607181|35000374135|2 +607176|35000374136|2 +607275|35000374140|2 +607243|35000374142|2 +607544|35000374143|4 +607484|35000374144|2 +607261|35000374145|2 +607313|35000374146|2 +607314|35000374147|2 +607482|35000374148|2 +607517|35000374149|2 +607487|35000374150|2 +607385|35000374151|2 +607407|35000374153|2 +607568|35000374157|2 +607703|35000374158|2 +607704|35000374159|2 +607961|35000374163|2 +607932|35000374164|2 +607933|35000374165|2 +607969|35000374166|2 +607934|35000374167|2 +608144|35000374175|2 +766416|35000374176|2 +608145|35000374177|2 +608165|35000374178|2 +608149|35000374179|2 +608159|35000374180|2 +608141|35000374181|2 +608156|35000374182|2 +608212|35000374184|2 +608222|35000374185|2 +608293|35000374189|2 +608193|35000374191|2 +608502|35000374198|2 +608614|35000374203|2 +608641|35000374206|2 +608679|35000374208|2 +608678|35000374211|2 +608688|35000374212|2 +608694|35000374213|2 +608692|35000374214|2 +608741|35000374217|2 +608831|35000374219|2 +608835|35000374220|2 +772332|35000374223|2 +608902|35000374224|2 +609542|35000374227|2 +609206|35000374229|2 +609141|35000374230|2 +609437|35000374231|4 +609474|35000374233|2 +609718|35000374234|2 +609742|35000374235|2 +609555|35000374236|2 +609475|35000374237|2 +609647|35000374239|2 +609357|35000374241|2 +609189|35000374242|4 +609190|35000374244|4 +609617|35000374248|4 +609253|35000374250|2 +609525|35000374252|2 +609818|35000374254|2 +609853|35000374258|2 +609884|35000374261|2 +609858|35000374262|2 +609892|35000374263|2 +609877|35000374264|2 +609938|35000374265|2 +609957|35000374268|2 +610009|35000374271|2 +610055|35000374273|2 +610129|35000374274|2 +610127|35000374275|2 +610109|35000374276|2 +610083|35000374280|2 +610084|35000374282|2 +610173|35000374284|2 +610245|35000374285|2 +610269|35000374290|2 +610312|35000374293|2 +610352|35000374294|2 +610358|35000374295|2 +610318|35000374298|2 +518996|35000374299|2 +610407|35000374300|2 +610408|35000374302|2 +610544|35000374304|2 +610605|35000374309|2 +610907|35000374312|2 +610940|35000374313|2 +610914|35000374314|2 +454749|35000374316|2 +610927|35000374317|2 +610997|35000374319|2 +611012|35000374320|2 +611069|35000374321|2 +611080|35000374322|2 +611099|35000374323|2 +611095|35000374324|2 +611113|35000374328|2 +611143|35000374331|2 +651284|35000374335|2 +611307|35000374340|2 +612106|35000374341|2 +612783|35000374345|2 +612056|35000374347|2 +611356|35000374348|2 +611441|35000374350|4 +611559|35000374354|2 +612413|35000374355|2 +611865|35000374356|2 +611451|35000374361|4 +611791|35000374362|2 +612009|35000374363|2 +611597|35000374364|2 +612665|35000374366|2 +612591|35000374367|2 +612701|35000374368|2 +612107|35000374371|2 +612219|35000374372|2 +844098|35000374373|2 +611833|35000374376|2 +612108|35000374377|2 +611792|35000374378|2 +611505|35000374380|2 +612364|35000374381|4 +612010|35000374382|2 +611652|35000374385|2 +612167|35000374388|2 +612634|35000374391|2 +612635|35000374392|2 +611709|35000374393|2 +612446|35000374397|4 +612960|35000374400|2 +612876|35000374404|2 +612896|35000374405|2 +612912|35000374406|2 +612907|35000374413|2 +612951|35000374414|2 +613206|35000374422|2 +613086|35000374425|2 +613104|35000374426|2 +613143|35000374427|2 +613135|35000374429|2 +613119|35000374430|2 +613248|35000374431|2 +613158|35000374432|2 +613270|35000374434|2 +613175|35000374435|2 +613222|35000374437|2 +613159|35000374438|2 +613160|35000374439|2 +613146|35000374441|2 +613061|35000374443|2 +613874|35000374450|2 +613483|35000374451|2 +613541|35000374453|2 +613696|35000374454|2 +613937|35000374456|2 +613470|35000374458|2 +613765|35000374459|2 +613875|35000374460|2 +765505|35000374462|2 +614001|35000374465|2 +613743|35000374466|4 +613835|35000374467|2 +613484|35000374469|2 +613476|35000374470|2 +613880|35000374472|2 +613485|35000374473|2 +613839|35000374475|2 +613831|35000374479|2 +613710|35000374480|2 +613830|35000374482|2 +613748|35000374484|2 +613749|35000374486|2 +613642|35000374489|2 +613995|35000374492|4 +613643|35000374494|2 +613965|35000374495|4 +614002|35000374496|2 +462650|35000374497|2 +804867|35000374499|2 +614073|35000374503|2 +614071|35000374504|2 +614229|35000374506|2 +614150|35000374507|2 +614176|35000374509|2 +614143|35000374510|2 +614188|35000374511|2 +614190|35000374512|2 +614210|35000374513|2 +614248|35000374516|2 +614260|35000374517|2 +614353|35000374518|2 +614363|35000374520|2 +614368|35000374521|2 +614459|35000374522|2 +614475|35000374523|2 +614460|35000374525|2 +614489|35000374526|2 +614447|35000374527|2 +614410|35000374529|2 +614480|35000374530|2 +614594|35000374536|2 +614611|35000374537|2 +614626|35000374539|2 +614658|35000374545|2 +614724|35000374546|2 +614723|35000374547|2 +614725|35000374548|2 +614726|35000374549|2 +614731|35000374551|2 +600141|35000374555|2 +614880|35000374556|2 +614875|35000374557|2 +614803|35000374561|2 +614877|35000374562|2 +520703|35000374567|2 +615048|35000374572|2 +615085|35000374574|2 +615094|35000374575|2 +615106|35000374581|2 +550695|35000374582|2 +615137|35000374584|2 +615138|35000374585|2 +615164|35000374586|2 +615166|35000374588|2 +615170|35000374589|2 +615171|35000374590|2 +615393|35000374592|2 +615198|35000374596|2 +615192|35000374600|2 +615422|35000374601|2 +615462|35000374604|2 +615456|35000374605|2 +615503|35000374607|2 +615602|35000374609|2 +615583|35000374610|2 +615584|35000374611|2 +615617|35000374614|2 +615587|35000374615|2 +615595|35000374616|2 +615618|35000374618|2 +615603|35000374619|2 +615622|35000374620|2 +615683|35000374626|2 +615707|35000374627|2 +615704|35000374628|2 +615966|35000374643|2 +615994|35000374644|2 +616137|35000374645|2 +833080|35000374647|4 +616023|35000374648|2 +616191|35000374651|4 +616136|35000374652|2 +616108|35000374655|2 +616101|35000374656|2 +616172|35000374657|2 +616085|35000374658|2 +616123|35000374660|2 +616056|35000374662|2 +616273|35000374668|2 +616360|35000374671|2 +616451|35000374678|2 +616494|35000374679|2 +616483|35000374680|2 +616479|35000374682|2 +616485|35000374683|2 +616471|35000374684|2 +616472|35000374685|2 +616586|35000374686|2 +616587|35000374690|2 +616648|35000374693|2 +616775|35000374694|2 +616769|35000374695|2 +616776|35000374698|2 +616649|35000374700|2 +616806|35000374702|2 +616805|35000374703|2 +616702|35000374708|2 +616737|35000374710|2 +616835|35000374713|2 +616969|35000374716|2 +617050|35000374717|2 +617068|35000374718|2 +617123|35000374722|2 +617159|35000374727|2 +617171|35000374729|2 +617174|35000374730|2 +617164|35000374731|2 +617166|35000374732|2 +617169|35000374733|2 +617258|35000374738|2 +617379|35000374740|2 +617288|35000374741|2 +617346|35000374742|2 +617432|35000374743|2 +617270|35000374744|2 +617366|35000374747|2 +617370|35000374748|2 +617411|35000374749|2 +617457|35000374753|2 +617456|35000374754|2 +754208|35000374755|2 +617519|35000374756|2 +617510|35000374758|2 +617496|35000374760|2 +617678|35000374761|2 +617689|35000374763|2 +617690|35000374765|2 +617687|35000374767|2 +617686|35000374768|2 +617688|35000374769|2 +617700|35000374770|2 +617729|35000374771|2 +617730|35000374772|2 +617750|35000374774|2 +617767|35000374776|2 +617813|35000374778|2 +576616|35000374779|2 +617826|35000374780|2 +617874|35000374782|2 +617876|35000374784|2 +618029|35000374786|2 +617971|35000374788|2 +618056|35000374789|2 +617891|35000374790|4 +618082|35000374792|2 +618134|35000374794|2 +618210|35000374796|2 +618192|35000374797|2 +618225|35000374798|2 +618254|35000374799|2 +618252|35000374800|2 +618234|35000374802|2 +618215|35000374804|2 +618239|35000374805|2 +618235|35000374806|2 +618201|35000374808|2 +618264|35000374809|2 +618291|35000374811|2 +618286|35000374812|2 +618292|35000374816|2 +638341|35000374821|2 +618332|35000374823|2 +618337|35000374826|2 +618360|35000374827|2 +534883|35000374829|2 +618441|35000374830|2 +618402|35000374831|2 +618397|35000374832|2 +618387|35000374833|2 +618390|35000374834|2 +618439|35000374835|2 +618388|35000374836|2 +618382|35000374837|2 +618385|35000374838|2 +618437|35000374840|2 +618434|35000374842|2 +618383|35000374843|2 +618562|35000374848|2 +618571|35000374850|2 +618699|35000374851|2 +618698|35000374853|2 +618697|35000374855|2 +618718|35000374856|2 +618710|35000374857|2 +618719|35000374858|2 +618702|35000374859|2 +618706|35000374860|2 +618716|35000374861|2 +618717|35000374862|2 +618759|35000374863|2 +618755|35000374864|2 +618743|35000374865|2 +618756|35000374866|2 +618744|35000374867|2 +618796|35000374868|2 +618797|35000374869|2 +618880|35000374874|2 +618886|35000374876|2 +619014|35000374880|2 +619015|35000374881|2 +619225|35000374884|2 +619206|35000374885|2 +619166|35000374887|2 +619180|35000374888|2 +619150|35000374889|2 +619293|35000374890|2 +619261|35000374891|2 +619266|35000374894|2 +619313|35000374896|2 +619432|35000374899|2 +619407|35000374900|2 +619405|35000374901|2 +619383|35000374903|2 +619426|35000374905|2 +619450|35000374909|2 +619478|35000374911|2 +619496|35000374912|2 +619498|35000374913|2 +619499|35000374914|2 +619501|35000374915|2 +619512|35000374916|2 +619513|35000374917|2 +619529|35000374920|2 +605087|35000374921|4 +619640|35000374923|2 +619636|35000374924|2 +619633|35000374925|2 +619632|35000374928|2 +619677|35000374931|2 +619802|35000374932|2 +619747|35000374934|2 +619653|35000374936|2 +619669|35000374938|2 +619733|35000374940|2 +619810|35000374941|2 +619706|35000374942|2 +619809|35000374944|2 +619663|35000374946|2 +619748|35000374949|2 +619749|35000374950|2 +619854|35000374953|2 +619942|35000374955|2 +619928|35000374956|2 +619953|35000374958|2 +619948|35000374959|2 +897998|35000374960|2 +619961|35000374963|2 +620001|35000374964|2 +619957|35000374967|2 +620048|35000374969|2 +619960|35000374974|2 +620039|35000374976|2 +620134|35000374979|2 +620220|35000374980|2 +620245|35000374989|2 +620276|35000374991|2 +620319|35000374995|2 +620343|35000374996|2 +620313|35000374997|2 +620414|35000375001|2 +620419|35000375004|2 +620425|35000375005|2 +620420|35000375006|2 +620472|35000375007|2 +620551|35000375012|2 +620722|35000375018|2 +620907|35000375024|2 +620748|35000375025|2 +620803|35000375026|2 +620874|35000375028|2 +620727|35000375029|2 +620746|35000375030|2 +620701|35000375031|2 +620726|35000375033|2 +620804|35000375035|2 +620792|35000375036|2 +620800|35000375037|2 +620691|35000375038|2 +620875|35000375041|2 +620824|35000375042|2 +620915|35000375043|2 +620991|35000375049|2 +621030|35000375051|2 +621046|35000375053|2 +621089|35000375058|2 +621097|35000375059|2 +621144|35000375062|2 +621140|35000375063|2 +621136|35000375064|2 +621177|35000375066|2 +621181|35000375068|2 +621245|35000375069|2 +621494|35000375070|2 +622152|35000375076|4 +621770|35000375077|2 +621508|35000375078|2 +621537|35000375079|4 +621303|35000375081|2 +621340|35000375082|2 +622428|35000375083|2 +622435|35000375084|2 +622437|35000375085|2 +622469|35000375088|2 +622528|35000375091|2 +622549|35000375093|2 +622556|35000375094|2 +622624|35000375095|2 +622625|35000375096|2 +622683|35000375100|2 +622666|35000375101|2 +786362|35000375102|2 +622671|35000375103|2 +622668|35000375104|2 +622654|35000375106|2 +622681|35000375108|2 +622688|35000375111|2 +622698|35000375112|2 +622706|35000375113|2 +622704|35000375114|2 +622707|35000375115|2 +623078|35000375117|2 +623053|35000375121|2 +623149|35000375124|2 +623090|35000375127|2 +623107|35000375129|2 +623007|35000375130|2 +623079|35000375131|2 +623245|35000375135|2 +623454|35000375145|2 +623516|35000375146|2 +623541|35000375149|4 +623438|35000375151|2 +623558|35000375152|2 +623596|35000375154|2 +623597|35000375155|2 +623682|35000375156|2 +623680|35000375157|2 +623729|35000375162|2 +623863|35000375163|2 +623780|35000375164|2 +623853|35000375165|2 +623760|35000375167|2 +623886|35000375168|2 +623877|35000375169|2 +623761|35000375170|2 +623781|35000375172|2 +623980|35000375179|2 +533639|35000375180|2 +624094|35000375186|2 +624157|35000375189|2 +623991|35000375192|2 +623992|35000375193|2 +624220|35000375195|2 +624221|35000375197|2 +624136|35000375199|2 +624194|35000375200|2 +624102|35000375201|2 +624168|35000375202|2 +623947|35000375203|4 +624158|35000375204|2 +624222|35000375205|2 +624171|35000375207|2 +624118|35000375208|2 +624237|35000375209|2 +624238|35000375210|2 +624242|35000375211|2 +624283|35000375213|2 +624314|35000375216|2 +624316|35000375217|2 +624305|35000375218|2 +624319|35000375221|2 +624315|35000375222|2 +624324|35000375223|2 +624335|35000375226|2 +624327|35000375227|2 +624438|35000375229|2 +624461|35000375230|2 +624444|35000375231|2 +624462|35000375232|2 +624465|35000375235|2 +624630|35000375238|2 +624608|35000375241|2 +624623|35000375242|2 +624666|35000375243|2 +624496|35000375244|2 +624624|35000375246|2 +624727|35000375248|2 +624609|35000375250|2 +624831|35000375251|2 +624804|35000375253|2 +624885|35000375257|2 +624874|35000375258|2 +625021|35000375260|2 +624920|35000375261|2 +625001|35000375262|2 +625025|35000375263|2 +624975|35000375265|2 +624947|35000375266|2 +625022|35000375267|2 +624916|35000375269|2 +625116|35000375272|2 +625221|35000375275|2 +625207|35000375277|2 +673645|35000375278|2 +625317|35000375279|2 +625354|35000375281|2 +625261|35000375285|2 +625314|35000375286|2 +625183|35000375288|2 +625172|35000375289|2 +625397|35000375291|2 +625441|35000375292|2 +625492|35000375294|2 +625459|35000375295|2 +625484|35000375296|2 +625482|35000375297|2 +625465|35000375298|2 +625476|35000375299|2 +625471|35000375300|2 +625467|35000375301|2 +625468|35000375302|2 +625489|35000375303|2 +625509|35000375304|2 +625510|35000375306|2 +625512|35000375307|2 +625552|35000375309|2 +625641|35000375312|2 +625688|35000375313|2 +625733|35000375314|2 +625702|35000375315|2 +625703|35000375316|2 +625751|35000375320|2 +625782|35000375321|2 +625785|35000375322|2 +625837|35000375323|2 +625834|35000375325|2 +625844|35000375326|2 +625925|35000375329|2 +625972|35000375331|2 +625910|35000375332|2 +625959|35000375333|2 +625951|35000375334|2 +625981|35000375336|2 +625982|35000375338|2 +625980|35000375339|2 +625998|35000375342|2 +625994|35000375343|2 +626029|35000375348|2 +626069|35000375351|2 +626076|35000375352|2 +626131|35000375357|2 +626543|35000375359|2 +626540|35000375361|2 +626545|35000375364|2 +626515|35000375365|2 +626533|35000375366|2 +626537|35000375368|2 +626553|35000375369|2 +626554|35000375370|2 +626572|35000375372|2 +626573|35000375373|2 +626613|35000375374|2 +626605|35000375375|2 +626594|35000375376|2 +626610|35000375377|2 +626593|35000375380|2 +626599|35000375382|2 +626606|35000375385|2 +626620|35000375386|2 +626671|35000375387|2 +626684|35000375388|2 +626689|35000375389|2 +626962|35000375391|2 +627011|35000375393|2 +627016|35000375394|2 +627321|35000375401|2 +627295|35000375402|2 +627296|35000375404|2 +929340|35000375406|2 +627288|35000375407|2 +627289|35000375408|2 +627358|35000375409|2 +627290|35000375410|2 +627327|35000375411|2 +627373|35000375414|2 +627508|35000375415|2 +627613|35000375416|2 +627616|35000375418|2 +627723|35000375419|2 +627664|35000375420|2 +627665|35000375423|2 +627724|35000375424|2 +627783|35000375427|2 +627784|35000375429|2 +627786|35000375432|2 +627785|35000375433|2 +627827|35000375434|2 +627834|35000375435|2 +627811|35000375436|2 +627841|35000375439|2 +627806|35000375440|2 +627799|35000375442|2 +627848|35000375443|2 +627854|35000375444|2 +627849|35000375445|2 +627911|35000375446|2 +627921|35000375447|2 +627936|35000375453|2 +1012997|35000375456|2 +627922|35000375457|2 +627886|35000375458|2 +627896|35000375459|2 +628062|35000375462|2 +628071|35000375463|2 +628072|35000375464|2 +628073|35000375466|2 +628069|35000375467|2 +628098|35000375470|2 +628129|35000375471|2 +628144|35000375472|2 +628120|35000375473|2 +628150|35000375474|2 +628113|35000375475|2 +628125|35000375478|2 +628105|35000375480|2 +628122|35000375482|2 +628111|35000375483|2 +628104|35000375484|2 +628115|35000375487|2 +628145|35000375488|2 +628126|35000375489|2 +628079|35000375490|2 +628107|35000375491|2 +628165|35000375492|2 +628166|35000375494|2 +628256|35000375495|2 +796142|35000375496|2 +628316|35000375498|2 +628382|35000375499|2 +628309|35000375501|2 +628348|35000375503|2 +628447|35000375505|2 +628488|35000375508|2 +628731|35000375512|2 +628893|35000375523|4 +628875|35000375524|2 +628861|35000375525|2 +628930|35000375526|2 +629047|35000375527|2 +629005|35000375528|2 +629214|35000375533|2 +629212|35000375534|2 +629283|35000375536|2 +629322|35000375537|2 +629321|35000375538|2 +629306|35000375542|2 +629324|35000375543|2 +629298|35000375545|2 +629310|35000375547|2 +629328|35000375548|2 +629480|35000375550|2 +629394|35000375553|2 +629470|35000375557|2 +629433|35000375559|2 +629506|35000375560|2 +629481|35000375561|2 +629516|35000375562|2 +629491|35000375564|2 +629427|35000375565|2 +629361|35000375566|2 +629521|35000375569|2 +629551|35000375570|2 +629542|35000375571|2 +629543|35000375573|2 +629546|35000375574|2 +629579|35000375577|2 +629834|35000375579|2 +629891|35000375580|2 +629801|35000375582|2 +629859|35000375583|2 +629846|35000375586|2 +629807|35000375587|2 +629760|35000375588|2 +781792|35000375591|2 +629797|35000375599|2 +629774|35000375600|2 +629885|35000375601|2 +629848|35000375602|2 +629761|35000375604|2 +629906|35000375605|2 +629936|35000375607|2 +629964|35000375608|2 +629973|35000375609|2 +630006|35000375611|2 +1011622|35000375613|2 +630135|35000375618|2 +630128|35000375619|2 +630129|35000375621|2 +630208|35000375624|2 +630231|35000375627|2 +630199|35000375629|2 +630233|35000375632|2 +630221|35000375633|2 +630261|35000375634|2 +630213|35000375635|2 +630234|35000375638|2 +630279|35000375639|2 +630246|35000375640|2 +630274|35000375641|2 +630278|35000375642|2 +854430|35000375643|2 +630266|35000375644|2 +630306|35000375646|2 +630304|35000375647|2 +459908|35000375648|2 +630318|35000375649|2 +630344|35000375651|2 +459790|35000375653|2 +630364|35000375654|2 +630430|35000375655|2 +630509|35000375657|2 +630538|35000375659|2 +630484|35000375660|2 +630482|35000375661|2 +630510|35000375662|2 +630543|35000375664|2 +630499|35000375665|2 +630619|35000375670|2 +630620|35000375671|2 +630641|35000375672|4 +484970|35000375673|2 +630783|35000375674|2 +630761|35000375676|2 +630968|35000375677|2 +630942|35000375680|2 +630810|35000375685|2 +630946|35000375687|2 +630756|35000375690|2 +630797|35000375691|2 +630837|35000375692|2 +630767|35000375693|2 +630926|35000375695|2 +630781|35000375696|2 +630891|35000375698|4 +630861|35000375699|2 +630903|35000375700|2 +631053|35000375703|2 +631059|35000375704|2 +631071|35000375706|2 +631122|35000375707|2 +631126|35000375708|2 +631217|35000375710|2 +631208|35000375714|2 +631182|35000375715|2 +631187|35000375718|2 +631192|35000375719|2 +631168|35000375720|2 +631175|35000375721|2 +631221|35000375722|2 +631172|35000375724|2 +631191|35000375725|2 +631222|35000375726|2 +631232|35000375728|2 +631293|35000375730|2 +631297|35000375732|2 +631294|35000375733|2 +631291|35000375734|2 +631318|35000375738|2 +631309|35000375739|2 +631308|35000375742|2 +631339|35000375744|2 +631357|35000375745|2 +631368|35000375746|2 +631323|35000375751|2 +631379|35000375753|2 +631410|35000375756|2 +631415|35000375758|2 +631467|35000375763|2 +631463|35000375764|2 +631453|35000375765|2 +631462|35000375766|2 +631483|35000375767|2 +631512|35000375768|2 +631504|35000375770|2 +597309|35000375773|2 +631701|35000375775|2 +631725|35000375776|2 +631745|35000375778|2 +631741|35000375780|2 +631751|35000375784|2 +631770|35000375785|2 +631778|35000375787|2 +631788|35000375789|2 +631784|35000375790|2 +631892|35000375796|2 +631904|35000375797|2 +631882|35000375801|2 +631951|35000375805|2 +631956|35000375807|2 +632024|35000375809|2 +632260|35000375812|2 +632250|35000375813|2 +632414|35000375815|2 +632461|35000375816|2 +632502|35000375818|2 +633089|35000375820|2 +633001|35000375822|2 +632944|35000375825|2 +633166|35000375827|2 +633127|35000375828|2 +632965|35000375830|2 +633038|35000375831|2 +633398|35000375836|2 +633495|35000375839|2 +633511|35000375840|2 +633665|35000375844|2 +633662|35000375846|2 +633641|35000375848|4 +633607|35000375849|2 +633681|35000375850|2 +633635|35000375851|2 +633615|35000375853|2 +633619|35000375857|2 +633702|35000375859|2 +633646|35000375861|2 +633779|35000375866|2 +633762|35000375867|2 +633780|35000375868|2 +633790|35000375869|2 +633745|35000375874|2 +633774|35000375875|2 +633895|35000375877|2 +633937|35000375880|2 +633876|35000375882|2 +633938|35000375883|2 +633842|35000375888|2 +633902|35000375889|2 +633841|35000375891|2 +634072|35000375898|2 +633993|35000375899|2 +634044|35000375901|2 +633989|35000375902|2 +634099|35000375903|2 +634164|35000375919|2 +634238|35000375920|2 +634240|35000375921|2 +634235|35000375922|2 +634253|35000375924|2 +634351|35000375925|2 +635172|35000375926|2 +635347|35000375928|2 +634464|35000375933|2 +634547|35000375934|2 +635559|35000375935|2 +635526|35000375936|2 +634450|35000375937|2 +635072|35000375938|2 +634971|35000375945|2 +635463|35000375947|4 +635314|35000375948|4 +634538|35000375949|2 +634981|35000375950|2 +634701|35000375951|2 +635348|35000375955|2 +635527|35000375956|2 +635156|35000375957|2 +635506|35000375960|2 +635572|35000375962|2 +635483|35000375963|2 +635528|35000375965|2 +635315|35000375967|4 +634439|35000375968|2 +634818|35000375969|2 +634847|35000375972|2 +634855|35000375973|2 +635388|35000375975|2 +635316|35000375976|4 +635351|35000375977|2 +635660|35000375979|4 +634595|35000375980|2 +635295|35000375982|2 +635055|35000375983|2 +635484|35000375984|2 +635056|35000375985|2 +635529|35000375986|2 +634444|35000375987|2 +635317|35000375988|4 +634616|35000375991|2 +634776|35000375993|2 +634602|35000375994|2 +635264|35000375996|2 +635049|35000375997|2 +634935|35000375998|2 +635282|35000375999|2 +634630|35000376000|2 +635283|35000376002|2 +634786|35000376003|2 +634436|35000376004|2 +635206|35000376005|2 +635349|35000376006|2 +635530|35000376009|2 +634548|35000376012|2 +635531|35000376013|2 +634807|35000376015|2 +635389|35000376016|2 +635189|35000376018|2 +634982|35000376021|2 +635532|35000376024|2 +635687|35000376028|2 +635759|35000376031|2 +635788|35000376033|2 +635780|35000376034|2 +635789|35000376035|2 +635781|35000376036|2 +635784|35000376037|2 +635790|35000376039|2 +635866|35000376040|2 +635841|35000376041|2 +635867|35000376043|2 +635840|35000376045|2 +649611|35000376046|2 +636041|35000376051|2 +636176|35000376052|2 +636213|35000376053|2 +636218|35000376054|2 +636060|35000376055|2 +636075|35000376056|2 +627852|35000376057|2 +636058|35000376059|2 +575659|35000376060|2 +636127|35000376062|2 +636253|35000376067|2 +637049|35000376070|2 +637056|35000376073|2 +637167|35000376075|2 +637219|35000376078|2 +637405|35000376080|2 +637364|35000376082|2 +637360|35000376084|2 +637277|35000376085|2 +637270|35000376086|2 +637430|35000376087|2 +637271|35000376089|2 +637211|35000376090|2 +637310|35000376091|2 +637221|35000376092|2 +637262|35000376093|2 +637367|35000376095|2 +637299|35000376096|2 +702361|35000376100|2 +637278|35000376102|2 +637365|35000376104|2 +637418|35000376105|2 +637487|35000376107|2 +637778|35000376109|2 +637520|35000376110|2 +637639|35000376111|2 +637738|35000376114|2 +863856|35000376115|2 +637606|35000376116|2 +637556|35000376117|2 +637782|35000376118|2 +637857|35000376121|2 +637894|35000376123|2 +637941|35000376125|2 +638105|35000376127|2 +638139|35000376128|2 +638146|35000376129|2 +638138|35000376130|2 +638149|35000376132|2 +638143|35000376133|2 +638141|35000376134|2 +638144|35000376137|2 +638207|35000376139|2 +638200|35000376140|2 +638251|35000376142|2 +638329|35000376145|2 +638495|35000376146|2 +638568|35000376147|2 +636373|35000376148|2 +638942|35000376152|2 +638948|35000376154|2 +638995|35000376155|2 +638996|35000376157|2 +638958|35000376158|2 +638873|35000376162|2 +638878|35000376163|2 +638943|35000376164|2 +638984|35000376165|2 +638972|35000376168|2 +638875|35000376169|2 +638977|35000376170|2 +639081|35000376171|2 +639079|35000376172|2 +639076|35000376173|2 +639111|35000376177|2 +639123|35000376179|2 +639128|35000376182|2 +639126|35000376183|2 +700168|35000376184|2 +639162|35000376185|2 +639297|35000376190|2 +639486|35000376193|2 +639385|35000376194|2 +639305|35000376195|2 +639386|35000376197|2 +639315|35000376198|2 +639448|35000376200|4 +782397|35000376202|2 +639491|35000376205|2 +639527|35000376207|2 +639522|35000376208|2 +639523|35000376209|2 +639599|35000376217|2 +522675|35000376222|2 +639683|35000376223|2 +639735|35000376225|2 +639802|35000376228|2 +639823|35000376229|2 +639838|35000376231|2 +639844|35000376233|2 +639842|35000376234|2 +639845|35000376235|2 +639871|35000376237|2 +639877|35000376239|2 +639863|35000376241|2 +639955|35000376245|2 +640020|35000376247|2 +640037|35000376248|2 +640083|35000376249|2 +640074|35000376250|2 +640090|35000376251|2 +640099|35000376252|2 +640079|35000376253|2 +640072|35000376254|2 +640144|35000376258|2 +640129|35000376259|2 +636434|35000376260|2 +640150|35000376261|2 +640132|35000376262|2 +640145|35000376263|2 +640260|35000376265|2 +640270|35000376267|2 +640291|35000376269|2 +640309|35000376270|2 +640306|35000376271|2 +640347|35000376272|2 +640327|35000376273|2 +640457|35000376274|2 +640405|35000376275|2 +640513|35000376277|2 +640442|35000376279|2 +640409|35000376282|2 +640395|35000376285|2 +640464|35000376286|2 +640495|35000376287|4 +640502|35000376289|2 +640516|35000376290|2 +640396|35000376291|2 +640465|35000376292|2 +640403|35000376294|2 +640562|35000376297|2 +640615|35000376301|2 +640612|35000376302|2 +640662|35000376304|2 +640669|35000376305|2 +640676|35000376308|2 +640691|35000376310|2 +640720|35000376311|2 +640687|35000376315|2 +640796|35000376316|2 +640718|35000376319|2 +640786|35000376322|2 +640816|35000376323|2 +640824|35000376324|2 +502596|35000376327|2 +640951|35000376331|2 +640950|35000376332|2 +640952|35000376333|2 +640954|35000376334|2 +640949|35000376335|2 +640958|35000376338|2 +640948|35000376339|2 +641026|35000376341|2 +641048|35000376344|2 +641049|35000376345|2 +636471|35000376346|2 +641092|35000376348|2 +641119|35000376350|2 +641116|35000376351|2 +641134|35000376354|2 +774964|35000376355|2 +641150|35000376356|2 +641124|35000376358|2 +641114|35000376359|2 +641140|35000376360|2 +455622|35000376363|2 +641118|35000376364|2 +641156|35000376365|2 +641182|35000376367|2 +641224|35000376369|2 +641219|35000376370|2 +641223|35000376371|2 +594371|35000376372|2 +550701|35000376376|2 +641867|35000376377|2 +641861|35000376378|2 +641868|35000376379|2 +642280|35000376390|2 +642311|35000376391|2 +642469|35000376392|2 +642492|35000376393|2 +478489|35000376394|2 +642519|35000376395|2 +642505|35000376396|2 +642548|35000376398|2 +642549|35000376399|2 +642558|35000376400|2 +642668|35000376408|2 +642710|35000376409|2 +642709|35000376410|2 +642772|35000376412|2 +642822|35000376413|2 +642914|35000376414|2 +643022|35000376415|2 +643015|35000376418|2 +643016|35000376419|2 +643026|35000376421|2 +643075|35000376424|2 +643067|35000376425|2 +643063|35000376426|2 +643115|35000376427|2 +643280|35000376428|2 +643418|35000376429|2 +643346|35000376430|2 +643149|35000376431|2 +643212|35000376432|2 +643615|35000376433|2 +643588|35000376438|2 +643603|35000376439|2 +643596|35000376440|2 +643617|35000376441|2 +643584|35000376442|2 +643586|35000376443|2 +643618|35000376445|2 +643629|35000376446|2 +643640|35000376447|2 +643639|35000376448|2 +643684|35000376454|2 +643936|35000376461|2 +643978|35000376466|2 +643946|35000376468|2 +643900|35000376472|2 +643906|35000376475|2 +644095|35000376482|2 +644106|35000376488|2 +644114|35000376489|2 +644168|35000376495|2 +644195|35000376498|2 +644198|35000376501|2 +644196|35000376502|2 +644403|35000376508|2 +644478|35000376510|2 +644485|35000376511|2 +644505|35000376512|2 +644503|35000376513|2 +644506|35000376514|2 +644535|35000376515|2 +644536|35000376516|2 +644540|35000376518|2 +644544|35000376519|2 +644542|35000376520|2 +644537|35000376521|2 +644541|35000376523|2 +644703|35000376524|2 +644747|35000376525|2 +644727|35000376527|2 +644748|35000376530|2 +487959|35000376533|2 +644772|35000376534|2 +641684|35000376536|2 +644791|35000376537|2 +644797|35000376538|2 +644775|35000376539|2 +644782|35000376540|2 +644788|35000376541|2 +644817|35000376542|2 +644908|35000376545|2 +644909|35000376546|2 +644944|35000376547|2 +644894|35000376549|2 +644941|35000376550|2 +644937|35000376552|2 +644983|35000376555|2 +644971|35000376556|2 +644965|35000376557|2 +645025|35000376559|2 +641731|35000376563|2 +645092|35000376564|2 +645038|35000376565|2 +645086|35000376566|2 +622997|35000376567|2 +645082|35000376568|2 +645362|35000376569|2 +645277|35000376571|2 +645164|35000376573|2 +645363|35000376574|2 +645284|35000376575|2 +645143|35000376576|4 +645364|35000376577|2 +645144|35000376578|4 +645312|35000376581|2 +645335|35000376582|2 +645336|35000376583|2 +645313|35000376584|2 +645253|35000376586|2 +645365|35000376590|2 +645331|35000376591|2 +645158|35000376593|2 +645160|35000376594|2 +491087|35000376595|2 +645254|35000376596|2 +645165|35000376597|2 +645314|35000376598|2 +645315|35000376599|2 +645241|35000376600|2 +645192|35000376601|2 +645262|35000376602|2 +645412|35000376604|2 +645430|35000376605|2 +645413|35000376607|2 +645422|35000376608|2 +645414|35000376609|2 +645418|35000376610|2 +645443|35000376611|2 +645469|35000376612|2 +645459|35000376613|2 +645474|35000376614|2 +645453|35000376615|2 +645451|35000376616|2 +645470|35000376617|2 +645464|35000376618|2 +645594|35000376623|2 +645584|35000376624|2 +645578|35000376625|2 +645598|35000376626|2 +645590|35000376627|2 +645689|35000376632|2 +645687|35000376633|2 +645726|35000376635|2 +645735|35000376636|2 +645833|35000376640|2 +645880|35000376641|2 +645842|35000376642|2 +517600|35000376643|2 +645900|35000376648|2 +645917|35000376652|2 +645918|35000376653|2 +645995|35000376654|2 +645996|35000376655|2 +646002|35000376656|2 +646058|35000376657|2 +646044|35000376658|2 +646064|35000376660|2 +646244|35000376662|2 +646242|35000376663|2 +701356|35000376664|2 +646358|35000376667|2 +646420|35000376668|2 +646419|35000376669|2 +646506|35000376670|2 +646540|35000376671|2 +646559|35000376672|2 +646704|35000376675|2 +646601|35000376676|2 +702415|35000376677|2 +646546|35000376678|2 +646607|35000376679|2 +646507|35000376680|2 +646620|35000376681|2 +646508|35000376682|2 +646733|35000376683|2 +646736|35000376684|2 +608125|35000376685|2 +646804|35000376686|2 +646795|35000376687|2 +646796|35000376689|2 +646799|35000376690|2 +646814|35000376691|2 +646821|35000376693|2 +646800|35000376694|2 +646842|35000376695|2 +646847|35000376696|2 +646845|35000376697|2 +646929|35000376702|2 +646915|35000376703|2 +647006|35000376705|2 +647053|35000376706|2 +646980|35000376709|2 +647051|35000376710|2 +647049|35000376711|2 +647047|35000376712|2 +646994|35000376713|2 +646981|35000376714|2 +647082|35000376718|2 +647214|35000376720|2 +647215|35000376721|2 +647272|35000376724|2 +647270|35000376726|2 +647366|35000376735|2 +730508|35000376737|2 +647354|35000376738|2 +647358|35000376739|2 +647401|35000376741|2 +647387|35000376742|2 +647409|35000376744|2 +647508|35000376747|2 +647544|35000376753|2 +647528|35000376754|2 +647564|35000376758|2 +647563|35000376759|2 +647571|35000376760|2 +647605|35000376762|2 +647681|35000376763|2 +647835|35000376765|2 +647848|35000376767|2 +647894|35000376769|2 +647879|35000376771|2 +647880|35000376772|2 +647878|35000376773|2 +647876|35000376774|2 +647893|35000376775|2 +647900|35000376777|2 +647897|35000376779|2 +647888|35000376782|2 +647901|35000376783|2 +647927|35000376784|2 +647928|35000376786|2 +647944|35000376793|2 +647956|35000376794|2 +648039|35000376796|2 +648041|35000376798|2 +648076|35000376804|2 +648101|35000376805|2 +648104|35000376806|2 +648092|35000376809|2 +648095|35000376810|2 +636860|35000376811|2 +648153|35000376813|2 +648225|35000376814|2 +648303|35000376815|2 +648299|35000376816|2 +648273|35000376818|2 +648356|35000376819|2 +648400|35000376822|2 +648440|35000376824|2 +648404|35000376825|2 +593493|35000376826|2 +648543|35000376829|2 +648577|35000376830|2 +648620|35000376831|2 +649215|35000376833|2 +649201|35000376834|2 +649184|35000376835|2 +649224|35000376837|2 +649226|35000376838|2 +649252|35000376839|2 +649235|35000376844|2 +649460|35000376847|2 +649469|35000376848|2 +649480|35000376849|2 +649493|35000376853|2 +649546|35000376857|2 +649547|35000376858|2 +649548|35000376859|2 +649605|35000376861|2 +649679|35000376864|2 +462553|35000376865|4 +649640|35000376866|2 +649645|35000376867|2 +649699|35000376869|2 +649696|35000376870|2 +649743|35000376871|2 +649732|35000376872|2 +649713|35000376873|2 +649771|35000376875|2 +649876|35000376881|2 +649899|35000376884|2 +649907|35000376887|2 +649933|35000376889|2 +649934|35000376890|2 +649936|35000376891|2 +649959|35000376894|2 +649966|35000376895|2 +649967|35000376896|2 +649982|35000376897|2 +650122|35000376902|2 +650191|35000376905|2 +650153|35000376906|2 +650182|35000376908|2 +650138|35000376909|2 +650226|35000376913|2 +650234|35000376914|2 +650220|35000376915|2 +650229|35000376916|2 +650538|35000376920|2 +650534|35000376921|2 +650496|35000376922|2 +650677|35000376926|2 +650832|35000376930|2 +650810|35000376931|2 +650799|35000376932|2 +651047|35000376936|4 +650869|35000376938|2 +651032|35000376939|2 +650912|35000376941|2 +651062|35000376942|2 +651068|35000376943|2 +651063|35000376945|2 +651066|35000376948|2 +483531|35000376949|2 +651124|35000376953|2 +651132|35000376955|2 +651133|35000376956|2 +651134|35000376958|2 +651148|35000376959|2 +651116|35000376960|2 +651412|35000376969|2 +651450|35000376970|2 +651496|35000376972|2 +651505|35000376974|2 +651673|35000376977|2 +651682|35000376978|2 +651683|35000376979|2 +651616|35000376981|2 +651542|35000376982|2 +651717|35000376987|2 +651724|35000376990|2 +651768|35000376994|2 +651769|35000376995|2 +651772|35000376996|2 +651785|35000376998|2 +651863|35000376999|2 +651885|35000377000|2 +651971|35000377002|2 +651892|35000377003|2 +668787|35000377004|2 +652043|35000377005|2 +652048|35000377006|2 +652122|35000377008|2 +652214|35000377010|2 +652220|35000377011|2 +652217|35000377013|2 +652203|35000377017|2 +652213|35000377018|2 +652318|35000377019|2 +652245|35000377020|4 +652452|35000377022|2 +652358|35000377024|2 +652319|35000377025|2 +652290|35000377026|2 +652451|35000377027|2 +652507|35000377031|2 +652514|35000377032|2 +652502|35000377035|2 +652509|35000377036|2 +652506|35000377037|2 +652503|35000377038|2 +652575|35000377040|2 +652571|35000377041|2 +652579|35000377042|2 +591694|35000377044|2 +652586|35000377045|2 +652673|35000377049|2 +652748|35000377055|2 +652791|35000377058|4 +652792|35000377059|2 +652793|35000377060|2 +652794|35000377062|2 +652798|35000377063|2 +652825|35000377066|2 +652910|35000377069|2 +652889|35000377070|2 +652960|35000377071|2 +652958|35000377072|2 +653019|35000377075|2 +653060|35000377076|2 +653061|35000377077|2 +653167|35000377082|2 +653239|35000377083|2 +653169|35000377085|2 +644545|35000377089|2 +653305|35000377090|2 +653158|35000377092|2 +653309|35000377093|2 +653284|35000377094|2 +653299|35000377095|2 +653308|35000377096|2 +653326|35000377100|2 +653298|35000377103|2 +653219|35000377105|2 +653348|35000377107|2 +653375|35000377108|2 +653369|35000377109|2 +653447|35000377110|2 +653421|35000377111|2 +653435|35000377112|2 +653406|35000377114|2 +653461|35000377115|2 +653463|35000377116|2 +653593|35000377125|2 +653607|35000377126|2 +653656|35000377127|2 +653702|35000377128|2 +653715|35000377130|2 +653712|35000377132|2 +653758|35000377138|2 +653809|35000377142|2 +653827|35000377143|2 +653832|35000377145|2 +653865|35000377146|2 +653813|35000377148|2 +653806|35000377149|2 +653846|35000377150|2 +653788|35000377154|2 +653789|35000377159|2 +653858|35000377160|2 +654438|35000377164|2 +654439|35000377165|2 +654437|35000377166|2 +654449|35000377168|2 +623162|35000377169|2 +654464|35000377170|2 +654878|35000377174|2 +654795|35000377175|2 +654645|35000377178|2 +654614|35000377181|2 +655561|35000377187|2 +655278|35000377189|2 +655666|35000377190|4 +655002|35000377191|2 +655645|35000377194|4 +655267|35000377197|2 +655297|35000377198|2 +656061|35000377200|2 +656062|35000377203|2 +656067|35000377205|2 +656112|35000377207|2 +656132|35000377211|2 +656181|35000377212|2 +656179|35000377213|2 +656248|35000377215|2 +656385|35000377218|2 +656306|35000377219|2 +654022|35000377220|2 +656380|35000377221|2 +656386|35000377223|2 +656406|35000377224|2 +656458|35000377225|2 +656464|35000377226|2 +656460|35000377227|2 +656459|35000377228|2 +656469|35000377230|2 +656511|35000377234|2 +656508|35000377236|2 +656545|35000377238|2 +656491|35000377239|2 +656503|35000377241|2 +656585|35000377243|2 +656636|35000377246|2 +656667|35000377248|2 +656656|35000377249|2 +656717|35000377250|2 +656747|35000377254|2 +656799|35000377255|2 +656791|35000377256|4 +656788|35000377259|2 +845364|35000377260|2 +622682|35000377262|2 +656823|35000377263|2 +860468|35000377264|2 +656865|35000377265|2 +656860|35000377266|2 +656874|35000377267|2 +656848|35000377268|2 +656862|35000377269|2 +656866|35000377270|2 +656875|35000377271|2 +657216|35000377275|2 +657213|35000377278|2 +657163|35000377280|2 +656932|35000377282|2 +656930|35000377283|2 +656947|35000377289|2 +656969|35000377293|2 +656966|35000377294|2 +745659|35000377296|2 +657000|35000377297|2 +657032|35000377298|2 +657064|35000377305|2 +657107|35000377306|2 +651742|35000377310|2 +657164|35000377312|2 +657181|35000377313|2 +657182|35000377314|2 +657271|35000377316|2 +657281|35000377318|2 +657404|35000377320|2 +657407|35000377321|2 +657396|35000377324|2 +657385|35000377326|2 +657474|35000377329|2 +657501|35000377330|2 +657502|35000377331|2 +657521|35000377332|2 +657499|35000377333|2 +657599|35000377337|2 +657621|35000377338|2 +657624|35000377339|2 +657633|35000377340|2 +657648|35000377341|2 +657649|35000377343|2 +657716|35000377345|2 +657771|35000377346|2 +657779|35000377348|2 +657765|35000377349|2 +657768|35000377354|2 +657782|35000377355|2 +657791|35000377357|2 +657804|35000377358|2 +657818|35000377359|2 +657788|35000377360|2 +657856|35000377362|2 +657865|35000377365|2 +657867|35000377366|2 +657871|35000377367|2 +657928|35000377375|2 +657955|35000377377|2 +657984|35000377381|2 +657982|35000377383|2 +658043|35000377386|2 +658028|35000377387|2 +658014|35000377388|2 +658034|35000377389|2 +658103|35000377391|2 +658137|35000377392|2 +658127|35000377393|2 +658175|35000377394|2 +658157|35000377396|2 +658197|35000377398|2 +658227|35000377399|2 +658217|35000377400|2 +658262|35000377403|2 +658307|35000377405|2 +658344|35000377406|2 +658375|35000377407|2 +658396|35000377408|2 +658394|35000377409|2 +658400|35000377413|2 +658391|35000377414|2 +658421|35000377417|2 +658422|35000377418|2 +658460|35000377420|2 +658496|35000377422|2 +658473|35000377424|2 +658490|35000377425|2 +658563|35000377426|2 +658578|35000377429|2 +658583|35000377434|2 +658625|35000377435|2 +658626|35000377437|2 +658628|35000377439|2 +868600|35000377440|2 +658708|35000377442|2 +658696|35000377446|2 +658697|35000377448|2 +658669|35000377449|2 +658876|35000377451|2 +658833|35000377452|2 +658893|35000377453|2 +658890|35000377456|2 +658922|35000377458|2 +659048|35000377461|4 +658996|35000377462|2 +658997|35000377464|2 +659084|35000377467|2 +659132|35000377470|2 +659138|35000377471|2 +659224|35000377474|2 +659210|35000377476|2 +659185|35000377477|2 +659244|35000377479|2 +659262|35000377481|2 +659280|35000377482|2 +659297|35000377485|2 +659294|35000377489|2 +659344|35000377492|2 +659334|35000377493|2 +659343|35000377494|4 +659370|35000377498|2 +659371|35000377500|2 +659359|35000377503|2 +659428|35000377513|2 +659397|35000377516|2 +659476|35000377519|2 +659468|35000377520|2 +659471|35000377524|2 +659489|35000377525|2 +659565|35000377526|2 +659584|35000377527|2 +506078|35000377530|2 +659626|35000377531|2 +659628|35000377532|2 +659614|35000377533|2 +659691|35000377536|2 +659705|35000377537|2 +659753|35000377538|2 +659760|35000377539|2 +659762|35000377540|2 +659763|35000377541|2 +659775|35000377544|2 +659881|35000377547|2 +659876|35000377548|2 +659938|35000377552|2 +659922|35000377553|2 +659963|35000377554|2 +659974|35000377557|2 +659992|35000377559|2 +660005|35000377560|2 +660272|35000377564|2 +660261|35000377565|2 +660348|35000377570|2 +660217|35000377571|2 +660322|35000377572|2 +660364|35000377573|2 +660326|35000377574|2 +660394|35000377575|2 +660407|35000377577|2 +660574|35000377578|2 +660594|35000377583|2 +660593|35000377584|2 +660527|35000377587|2 +660521|35000377588|2 +660472|35000377593|2 +660468|35000377595|2 +660469|35000377598|2 +660674|35000377601|2 +660761|35000377602|2 +660779|35000377603|2 +660688|35000377604|2 +660656|35000377608|2 +660659|35000377609|2 +660766|35000377610|2 +660657|35000377611|2 +660853|35000377612|2 +660847|35000377613|2 +660882|35000377614|2 +660863|35000377615|2 +660888|35000377616|2 +660889|35000377617|2 +660910|35000377619|2 +660912|35000377622|2 +660944|35000377623|2 +660948|35000377624|2 +660968|35000377625|2 +660986|35000377626|2 +660969|35000377628|2 +660981|35000377629|2 +661041|35000377634|2 +661095|35000377635|2 +661042|35000377636|2 +661062|35000377637|2 +661046|35000377638|2 +661063|35000377639|2 +661110|35000377640|2 +661232|35000377644|2 +661276|35000377645|2 +661277|35000377646|2 +661260|35000377649|2 +661312|35000377652|2 +661322|35000377653|2 +661339|35000377654|2 +661340|35000377655|2 +661367|35000377657|2 +661427|35000377659|2 +661435|35000377661|2 +661440|35000377663|2 +661459|35000377664|2 +661493|35000377666|2 +661569|35000377667|2 +661580|35000377669|2 +661581|35000377671|2 +661653|35000377675|2 +661610|35000377676|2 +661604|35000377678|2 +767865|35000377681|2 +661615|35000377683|2 +661605|35000377684|2 +654188|35000377685|2 +553610|35000377688|2 +661712|35000377690|2 +661706|35000377691|2 +661713|35000377692|2 +661710|35000377695|2 +661730|35000377697|2 +639941|35000377698|2 +661801|35000377700|2 +661877|35000377705|2 +661809|35000377707|2 +661847|35000377708|2 +661946|35000377710|2 +661935|35000377711|2 +661915|35000377713|2 +661938|35000377714|2 +661923|35000377717|2 +661963|35000377718|2 +662017|35000377719|2 +662069|35000377721|2 +662241|35000377723|2 +662276|35000377726|2 +662291|35000377728|2 +662277|35000377729|2 +662283|35000377730|2 +662292|35000377731|2 +662305|35000377732|2 +662330|35000377733|2 +662321|35000377734|2 +662303|35000377736|2 +662398|35000377739|2 +662396|35000377740|2 +662460|35000377744|2 +662471|35000377747|2 +662468|35000377748|2 +662469|35000377749|2 +662491|35000377751|2 +662502|35000377752|2 +662565|35000377754|2 +662551|35000377755|2 +662741|35000377759|2 +662800|35000377760|2 +662801|35000377761|2 +663217|35000377769|2 +663221|35000377770|2 +552909|35000377775|2 +663222|35000377777|2 +663171|35000377780|2 +663263|35000377784|2 +663394|35000377786|2 +663403|35000377788|2 +663405|35000377789|2 +663431|35000377791|2 +663551|35000377798|2 +572923|35000377799|2 +663662|35000377801|2 +663655|35000377804|2 +663663|35000377805|2 +663658|35000377806|2 +663758|35000377810|2 +663778|35000377811|2 +663796|35000377812|2 +664006|35000377814|2 +663816|35000377815|2 +663797|35000377817|2 +663989|35000377820|2 +663824|35000377821|2 +663951|35000377822|2 +663963|35000377824|2 +663971|35000377827|2 +663800|35000377828|2 +663825|35000377829|2 +664119|35000377832|2 +664122|35000377834|2 +664123|35000377835|2 +664096|35000377836|2 +664133|35000377838|2 +664138|35000377840|2 +664188|35000377841|2 +664189|35000377842|2 +664193|35000377843|2 +664229|35000377844|2 +664223|35000377846|2 +664224|35000377847|2 +664308|35000377852|2 +664375|35000377853|2 +664360|35000377854|2 +664359|35000377855|2 +664372|35000377856|2 +664444|35000377858|2 +664445|35000377859|2 +664455|35000377861|2 +664456|35000377862|2 +664524|35000377867|2 +664518|35000377868|2 +664760|35000377869|2 +664797|35000377871|2 +664811|35000377872|2 +664809|35000377873|2 +664812|35000377875|2 +664853|35000377878|2 +664854|35000377879|2 +664857|35000377880|2 +665029|35000377882|2 +587360|35000377884|2 +665083|35000377886|2 +664971|35000377889|2 +664917|35000377890|2 +664903|35000377891|2 +665042|35000377892|2 +665114|35000377895|2 +523036|35000377896|2 +665118|35000377899|2 +665084|35000377902|2 +664972|35000377903|2 +665228|35000377906|2 +665212|35000377907|2 +665224|35000377908|2 +524646|35000377909|2 +665377|35000377910|2 +665459|35000377912|2 +665495|35000377914|2 +665494|35000377915|2 +665537|35000377916|2 +665532|35000377918|2 +665840|35000377920|2 +665622|35000377923|2 +665630|35000377924|2 +665772|35000377927|2 +665855|35000377928|2 +665682|35000377933|2 +665683|35000377935|2 +665579|35000377936|2 +665751|35000377937|2 +665595|35000377938|2 +665672|35000377940|2 +665665|35000377941|2 +665601|35000377943|2 +665671|35000377944|2 +755630|35000377945|2 +665681|35000377946|2 +665782|35000377947|2 +460143|35000377949|2 +665970|35000377950|2 +666021|35000377953|2 +665985|35000377954|2 +666267|35000377957|2 +666268|35000377958|2 +666280|35000377959|2 +666134|35000377963|2 +666133|35000377965|2 +666149|35000377966|2 +666167|35000377967|2 +666295|35000377968|2 +666227|35000377970|2 +666238|35000377973|2 +666070|35000377975|2 +666249|35000377977|2 +666074|35000377978|2 +666060|35000377979|2 +666296|35000377981|2 +666340|35000377984|2 +666350|35000377987|2 +666411|35000377988|2 +666358|35000377989|2 +666453|35000377991|2 +666380|35000377993|2 +666436|35000377996|2 +468624|35000378002|2 +666525|35000378004|2 +666529|35000378005|2 +666487|35000378006|2 +666503|35000378007|2 +666516|35000378009|2 +666559|35000378010|2 +666623|35000378011|2 +666622|35000378012|2 +666633|35000378014|2 +666599|35000378016|2 +666624|35000378018|2 +666653|35000378019|2 +666701|35000378020|2 +666962|35000378026|2 +666958|35000378027|2 +666978|35000378031|2 +666977|35000378032|2 +666996|35000378034|2 +667003|35000378035|2 +667005|35000378037|2 +667072|35000378041|2 +667060|35000378043|2 +667054|35000378044|2 +667051|35000378045|2 +888922|35000378047|2 +667104|35000378049|2 +667149|35000378054|2 +667193|35000378055|2 +667182|35000378058|2 +667166|35000378060|2 +667183|35000378061|2 +667213|35000378062|2 +667161|35000378063|2 +667472|35000378069|2 +667489|35000378071|2 +667490|35000378072|2 +667491|35000378073|2 +667493|35000378076|2 +667494|35000378077|2 +667530|35000378078|2 +667822|35000378080|2 +667828|35000378081|2 +667852|35000378083|2 +667909|35000378086|2 +667963|35000378093|2 +667968|35000378094|2 +738803|35000378096|2 +667990|35000378097|2 +668092|35000378099|2 +668104|35000378100|2 +668117|35000378102|2 +668105|35000378106|2 +856142|35000378108|2 +668206|35000378110|2 +668226|35000378111|2 +754561|35000378112|2 +668311|35000378113|2 +668497|35000378114|2 +668498|35000378116|2 +668494|35000378117|2 +668604|35000378119|2 +668599|35000378120|2 +668638|35000378122|2 +668613|35000378123|2 +668654|35000378124|2 +668655|35000378126|2 +668779|35000378128|2 +499879|35000378129|2 +668751|35000378131|2 +668748|35000378133|2 +668774|35000378134|2 +668757|35000378136|2 +668788|35000378137|2 +668752|35000378139|2 +668776|35000378142|2 +668749|35000378143|2 +668745|35000378144|2 +668772|35000378147|2 +668866|35000378151|2 +668910|35000378154|2 +668893|35000378156|2 +668899|35000378158|2 +669055|35000378159|2 +669063|35000378161|2 +669083|35000378164|2 +669089|35000378165|2 +669085|35000378166|2 +669094|35000378167|2 +669229|35000378173|2 +669251|35000378175|2 +669596|35000378176|4 +669607|35000378181|2 +669421|35000378182|2 +669374|35000378183|2 +669454|35000378184|2 +669339|35000378186|2 +669263|35000378187|2 +669378|35000378191|2 +669455|35000378192|2 +669321|35000378194|2 +669386|35000378195|2 +669379|35000378202|2 +669508|35000378204|2 +669497|35000378205|2 +669587|35000378206|2 +669317|35000378208|2 +669597|35000378209|4 +669542|35000378211|4 +669588|35000378212|2 +669456|35000378215|2 +669457|35000378216|2 +669280|35000378219|2 +669343|35000378220|2 +669616|35000378221|2 +669626|35000378223|2 +669706|35000378235|2 +669763|35000378239|2 +669813|35000378240|2 +669806|35000378241|2 +669922|35000378242|2 +669860|35000378249|2 +669926|35000378250|2 +669985|35000378251|2 +669983|35000378253|2 +670039|35000378254|2 +670063|35000378256|2 +670082|35000378258|2 +670110|35000378261|2 +670172|35000378262|2 +670178|35000378264|2 +670207|35000378265|2 +670213|35000378267|2 +670214|35000378268|2 +670240|35000378270|2 +670304|35000378272|2 +670296|35000378274|2 +670317|35000378275|2 +670228|35000378276|2 +670328|35000378277|2 +670297|35000378279|2 +670312|35000378280|2 +670234|35000378281|2 +670316|35000378283|2 +670245|35000378285|2 +670288|35000378286|2 +670365|35000378288|2 +670376|35000378289|2 +670359|35000378290|2 +670355|35000378291|2 +670367|35000378292|2 +486530|35000378299|2 +670561|35000378300|2 +670563|35000378301|2 +670562|35000378303|2 +670510|35000378304|2 +670558|35000378306|2 +670613|35000378308|2 +670614|35000378309|2 +670654|35000378311|2 +670691|35000378312|2 +670685|35000378313|2 +670762|35000378314|2 +563501|35000378317|2 +670816|35000378318|2 +670825|35000378319|2 +670846|35000378320|2 +670943|35000378321|2 +670935|35000378323|2 +670937|35000378324|2 +670940|35000378325|2 +670942|35000378327|2 +670945|35000378328|2 +671059|35000378330|2 +671017|35000378332|2 +671074|35000378334|2 +671121|35000378338|2 +553038|35000378339|2 +671123|35000378341|2 +671122|35000378342|2 +671414|35000378343|2 +671661|35000378344|2 +671817|35000378345|2 +589314|35000378350|2 +671793|35000378353|4 +671850|35000378355|2 +671839|35000378357|2 +671846|35000378358|2 +671912|35000378363|2 +671922|35000378365|2 +671921|35000378366|2 +672156|35000378367|2 +671960|35000378369|2 +672005|35000378370|2 +672095|35000378372|2 +672125|35000378373|2 +671994|35000378376|2 +622867|35000378377|2 +671961|35000378378|2 +672260|35000378379|2 +672126|35000378382|2 +672717|35000378387|2 +672633|35000378388|2 +672582|35000378389|2 +672653|35000378390|2 +672798|35000378391|2 +672845|35000378397|2 +672945|35000378402|2 +673009|35000378404|2 +672997|35000378405|2 +672984|35000378407|2 +672987|35000378408|2 +673029|35000378410|2 +672971|35000378411|2 +673018|35000378412|2 +672988|35000378413|2 +651389|35000378416|2 +673109|35000378417|2 +673144|35000378419|2 +673201|35000378420|2 +673193|35000378421|2 +673230|35000378423|2 +673246|35000378426|2 +673356|35000378429|2 +673396|35000378432|2 +673406|35000378433|2 +673593|35000378435|2 +673594|35000378437|2 +673624|35000378438|2 +673417|35000378439|2 +673714|35000378440|2 +673701|35000378446|2 +673434|35000378448|2 +673461|35000378450|2 +673462|35000378452|2 +673715|35000378453|2 +673488|35000378456|2 +673717|35000378457|2 +673431|35000378458|2 +673495|35000378460|2 +673656|35000378461|2 +673657|35000378466|2 +673463|35000378468|2 +673705|35000378469|2 +673589|35000378471|2 +673658|35000378476|2 +673418|35000378477|2 +673891|35000378483|2 +673868|35000378487|2 +674039|35000378490|2 +673964|35000378491|2 +673939|35000378493|2 +673947|35000378494|2 +674054|35000378496|2 +673993|35000378497|2 +674043|35000378498|2 +674044|35000378500|2 +674114|35000378503|2 +674198|35000378508|2 +674180|35000378509|2 +674216|35000378513|2 +674222|35000378515|2 +674253|35000378516|2 +674186|35000378517|2 +674181|35000378518|2 +500227|35000378519|2 +674230|35000378522|2 +674277|35000378524|2 +674530|35000378529|2 +674536|35000378530|2 +674523|35000378531|2 +674637|35000378534|2 +674648|35000378535|2 +674707|35000378537|2 +674987|35000378539|2 +580004|35000378541|2 +675033|35000378546|2 +675032|35000378547|2 +675034|35000378548|2 +675063|35000378549|2 +675064|35000378551|2 +675053|35000378552|2 +675049|35000378554|2 +675335|35000378559|2 +675439|35000378562|2 +675400|35000378564|2 +675348|35000378565|2 +675420|35000378566|2 +675464|35000378570|2 +675486|35000378571|2 +675489|35000378572|2 +675572|35000378573|2 +675642|35000378578|4 +675637|35000378579|2 +675634|35000378580|2 +776301|35000378582|2 +675791|35000378585|4 +675948|35000378589|2 +675832|35000378591|2 +675779|35000378595|2 +675880|35000378596|2 +675821|35000378598|2 +675978|35000378599|2 +675923|35000378600|2 +675924|35000378604|2 +675881|35000378607|2 +675904|35000378609|2 +675968|35000378611|2 +676046|35000378615|2 +676073|35000378620|2 +676062|35000378622|2 +676162|35000378625|2 +676190|35000378626|2 +676197|35000378627|2 +630464|35000378628|2 +530574|35000378629|2 +676216|35000378630|2 +676247|35000378631|2 +646182|35000378633|2 +676425|35000378635|2 +676353|35000378636|2 +676405|35000378637|2 +676402|35000378638|2 +676408|35000378639|2 +676509|35000378645|2 +676502|35000378648|2 +790911|35000378650|2 +676629|35000378651|2 +676664|35000378653|2 +676733|35000378655|2 +676694|35000378658|2 +676782|35000378659|2 +676761|35000378660|2 +676680|35000378661|2 +676681|35000378663|2 +677025|35000378664|2 +677015|35000378666|2 +676997|35000378667|4 +676937|35000378669|2 +676878|35000378670|2 +676879|35000378672|2 +676880|35000378673|2 +676950|35000378677|2 +677036|35000378678|2 +677020|35000378679|2 +676998|35000378680|4 +676960|35000378682|2 +677037|35000378684|2 +677062|35000378686|2 +677146|35000378687|2 +677374|35000378690|2 +677449|35000378691|2 +677307|35000378692|2 +677395|35000378693|2 +677491|35000378694|2 +677492|35000378696|2 +677561|35000378700|2 +677576|35000378701|2 +677749|35000378702|2 +677746|35000378703|2 +677747|35000378704|2 +677780|35000378705|2 +677789|35000378706|2 +677783|35000378707|2 +677935|35000378712|2 +677948|35000378713|2 +677943|35000378714|2 +656980|35000378716|2 +678044|35000378718|2 +678036|35000378719|2 +678275|35000378723|2 +678255|35000378724|2 +678265|35000378726|2 +678348|35000378730|2 +678422|35000378734|2 +678502|35000378735|2 +678498|35000378736|2 +678486|35000378738|2 +678509|35000378739|2 +678423|35000378744|2 +678511|35000378745|2 +678562|35000378747|2 +678557|35000378749|2 +678479|35000378750|2 +678527|35000378754|2 +678570|35000378755|2 +678538|35000378756|2 +678599|35000378758|2 +678803|35000378760|2 +678814|35000378762|2 +678813|35000378764|2 +678919|35000378765|2 +679093|35000378766|2 +679100|35000378768|2 +679105|35000378769|2 +678947|35000378770|2 +679036|35000378772|2 +679039|35000378774|2 +679134|35000378776|2 +679152|35000378779|2 +679013|35000378780|2 +679193|35000378781|2 +679164|35000378783|2 +678980|35000378785|2 +679153|35000378787|2 +679154|35000378790|2 +708729|35000378791|2 +678920|35000378792|2 +679113|35000378793|2 +600656|35000378796|2 +679204|35000378797|4 +679006|35000378798|2 +678909|35000378799|2 +679177|35000378800|2 +679173|35000378803|2 +678878|35000378804|2 +679114|35000378805|2 +679205|35000378807|4 +679385|35000378811|2 +679506|35000378812|2 +534384|35000378813|2 +679413|35000378816|2 +679386|35000378817|2 +679439|35000378818|2 +679297|35000378820|2 +520915|35000378821|2 +679516|35000378824|2 +679457|35000378826|2 +679337|35000378828|2 +679601|35000378831|2 +679627|35000378833|2 +679634|35000378835|2 +679677|35000378836|2 +679684|35000378837|2 +679718|35000378839|2 +679717|35000378840|2 +679791|35000378844|2 +679822|35000378846|2 +679914|35000378849|4 +679977|35000378854|2 +679964|35000378856|2 +680010|35000378857|2 +680013|35000378858|2 +680093|35000378860|2 +680110|35000378861|2 +686009|35000378862|2 +680178|35000378865|2 +680163|35000378866|2 +680208|35000378868|2 +680200|35000378869|2 +680206|35000378870|2 +680202|35000378872|2 +680291|35000378873|2 +680282|35000378874|2 +680297|35000378875|2 +680380|35000378877|2 +680386|35000378879|2 +680375|35000378880|2 +680427|35000378887|2 +680409|35000378888|2 +680412|35000378890|2 +680425|35000378891|2 +680599|35000378895|2 +680560|35000378896|2 +680588|35000378897|2 +680553|35000378898|2 +680594|35000378899|2 +680473|35000378900|2 +680499|35000378901|2 +680629|35000378903|2 +681035|35000378911|2 +681172|35000378913|2 +681176|35000378915|2 +681164|35000378918|2 +681104|35000378919|2 +681090|35000378920|2 +681127|35000378923|2 +681155|35000378924|2 +681165|35000378925|2 +681119|35000378926|2 +681135|35000378930|2 +681120|35000378932|2 +681317|35000378936|2 +681294|35000378938|2 +681337|35000378939|2 +681368|35000378940|2 +681985|35000378945|2 +681857|35000378946|2 +681948|35000378947|2 +681936|35000378948|2 +681882|35000378949|4 +681681|35000378950|2 +681602|35000378954|2 +681581|35000378960|2 +681854|35000378961|2 +681888|35000378963|4 +681858|35000378965|2 +681805|35000378967|2 +681652|35000378968|2 +681755|35000378969|2 +681867|35000378970|2 +682005|35000378973|2 +682006|35000378975|2 +682083|35000378976|2 +682195|35000378978|2 +682084|35000378980|2 +682039|35000378982|2 +682166|35000378983|2 +682192|35000378984|2 +682174|35000378985|2 +682023|35000378988|2 +682051|35000378989|2 +682060|35000378990|2 +682161|35000378991|2 +682088|35000378992|2 +682191|35000378993|2 +682175|35000378994|2 +682132|35000378998|2 +682165|35000378999|2 +682232|35000379001|2 +682235|35000379002|2 +682271|35000379003|2 +682272|35000379004|2 +682281|35000379006|2 +682330|35000379008|2 +682346|35000379010|2 +894427|35000379014|2 +682380|35000379015|2 +682384|35000379017|2 +682408|35000379021|2 +682406|35000379022|2 +682413|35000379023|2 +682411|35000379024|2 +682405|35000379025|2 +682421|35000379026|2 +682420|35000379027|2 +682467|35000379029|2 +682468|35000379031|2 +682470|35000379032|2 +682535|35000379037|2 +682563|35000379040|2 +682564|35000379041|2 +682560|35000379042|2 +682565|35000379043|2 +682566|35000379044|2 +682558|35000379045|2 +682575|35000379047|2 +682574|35000379048|2 +682596|35000379056|2 +682658|35000379059|2 +682657|35000379060|2 +682704|35000379061|2 +682701|35000379062|2 +682703|35000379063|2 +682700|35000379064|2 +682974|35000379074|2 +683007|35000379075|2 +682960|35000379076|2 +682958|35000379077|2 +682940|35000379079|2 +682961|35000379080|2 +683039|35000379081|2 +683040|35000379082|2 +683061|35000379083|2 +683072|35000379088|2 +683074|35000379090|2 +683066|35000379091|2 +683073|35000379092|2 +683089|35000379093|2 +683221|35000379095|2 +683241|35000379100|2 +683242|35000379101|2 +683341|35000379105|2 +683400|35000379107|2 +683429|35000379108|2 +683458|35000379112|2 +683478|35000379113|2 +683484|35000379115|2 +683463|35000379117|2 +683472|35000379118|2 +683737|35000379119|2 +683680|35000379122|2 +683563|35000379123|2 +683661|35000379127|2 +683605|35000379128|2 +683695|35000379129|2 +683558|35000379131|2 +683547|35000379132|2 +683632|35000379133|2 +683716|35000379134|2 +876151|35000379136|2 +683663|35000379138|2 +683564|35000379140|2 +684038|35000379145|2 +683797|35000379146|2 +683774|35000379147|4 +683783|35000379149|2 +683892|35000379150|2 +683875|35000379151|2 +683775|35000379154|4 +683824|35000379155|2 +684026|35000379157|2 +684049|35000379158|2 +684061|35000379160|2 +683966|35000379161|2 +684001|35000379162|2 +746110|35000379165|2 +683871|35000379166|2 +683812|35000379169|2 +683866|35000379170|2 +684086|35000379172|2 +684111|35000379174|2 +684123|35000379176|2 +684124|35000379178|2 +684130|35000379179|2 +606903|35000379180|2 +684127|35000379181|2 +684133|35000379182|2 +684198|35000379189|2 +684199|35000379190|2 +684197|35000379191|2 +684202|35000379192|2 +684222|35000379197|2 +684227|35000379200|2 +684225|35000379201|2 +684299|35000379202|2 +684315|35000379204|2 +684317|35000379205|2 +684320|35000379208|2 +684319|35000379209|2 +684318|35000379210|2 +684351|35000379212|2 +684365|35000379214|2 +684367|35000379215|2 +697086|35000379216|2 +848458|35000379217|2 +684423|35000379218|2 +684415|35000379222|2 +684428|35000379224|2 +684405|35000379225|2 +684430|35000379226|2 +684431|35000379227|2 +684437|35000379228|2 +684512|35000379229|2 +684612|35000379233|2 +684600|35000379234|2 +684665|35000379237|2 +684676|35000379238|2 +684775|35000379239|2 +684798|35000379241|2 +684803|35000379242|2 +684891|35000379247|2 +684901|35000379248|2 +685154|35000379254|2 +685156|35000379255|2 +685155|35000379256|2 +685238|35000379257|2 +685292|35000379261|2 +685452|35000379263|2 +685451|35000379264|2 +685450|35000379266|2 +685464|35000379269|2 +685520|35000379270|2 +685533|35000379273|2 +685495|35000379274|2 +685491|35000379276|2 +685749|35000379286|2 +685856|35000379287|2 +685879|35000379288|2 +685756|35000379289|2 +685833|35000379293|2 +685866|35000379296|2 +685810|35000379297|2 +685706|35000379298|2 +685758|35000379299|2 +685663|35000379301|2 +685730|35000379302|2 +758559|35000379306|2 +685722|35000379309|2 +685724|35000379311|2 +685834|35000379313|2 +685873|35000379316|4 +685973|35000379317|2 +685924|35000379319|2 +685974|35000379320|2 +685916|35000379321|2 +686060|35000379324|2 +686163|35000379331|2 +686183|35000379333|2 +686248|35000379335|2 +686249|35000379337|2 +686236|35000379341|2 +686264|35000379342|2 +686263|35000379343|2 +686280|35000379345|2 +686313|35000379348|2 +686303|35000379349|2 +686317|35000379350|2 +686350|35000379352|2 +686351|35000379354|2 +686346|35000379355|2 +686377|35000379357|2 +686511|35000379359|2 +686512|35000379363|2 +686460|35000379365|2 +686385|35000379366|2 +686504|35000379377|2 +686447|35000379379|2 +686561|35000379384|2 +686708|35000379391|2 +686709|35000379392|2 +686765|35000379395|2 +686789|35000379400|2 +686790|35000379402|2 +686788|35000379404|2 +808663|35000379406|2 +687149|35000379408|2 +687672|35000379409|2 +687673|35000379410|2 +687667|35000379411|2 +687669|35000379412|2 +687739|35000379414|2 +687823|35000379415|4 +687766|35000379416|2 +687740|35000379417|2 +687787|35000379420|2 +687759|35000379422|2 +687741|35000379428|2 +687904|35000379429|2 +687929|35000379430|2 +687957|35000379432|2 +687975|35000379434|2 +688098|35000379437|2 +688129|35000379438|2 +688130|35000379439|2 +688265|35000379442|2 +688275|35000379443|2 +688272|35000379444|2 +688641|35000379448|2 +688780|35000379450|2 +688815|35000379454|2 +688801|35000379455|2 +688795|35000379456|2 +688830|35000379458|2 +688833|35000379459|2 +689048|35000379461|2 +689022|35000379464|2 +689061|35000379468|2 +689155|35000379471|2 +689275|35000379478|2 +689771|35000379481|2 +771947|35000379483|2 +689495|35000379489|2 +689609|35000379490|2 +689675|35000379491|4 +689676|35000379492|4 +689494|35000379494|2 +689473|35000379495|2 +689637|35000379496|2 +689353|35000379498|2 +689562|35000379504|2 +689788|35000379507|2 +689889|35000379508|2 +690013|35000379511|2 +690069|35000379512|2 +690100|35000379514|2 +690169|35000379516|2 +690193|35000379517|2 +690189|35000379519|2 +690198|35000379520|2 +690199|35000379521|2 +690350|35000379525|4 +690357|35000379526|4 +690462|35000379527|2 +690493|35000379529|2 +690530|35000379530|2 +487020|35000379531|2 +690541|35000379532|2 +690580|35000379533|2 +690592|35000379535|2 +690618|35000379537|2 +690654|35000379539|2 +690655|35000379540|2 +690710|35000379541|2 +690673|35000379542|2 +690924|35000379544|2 +690925|35000379545|2 +690790|35000379546|2 +690840|35000379549|2 +672227|35000379550|2 +690903|35000379552|2 +690800|35000379554|2 +690863|35000379555|2 +690937|35000379556|2 +872987|35000379558|2 +691006|35000379559|2 +690988|35000379560|2 +690981|35000379561|2 +691102|35000379562|2 +691068|35000379566|2 +691124|35000379567|2 +691109|35000379569|2 +691113|35000379570|2 +691100|35000379571|2 +691105|35000379572|2 +691065|35000379573|2 +691120|35000379576|2 +691088|35000379577|2 +643021|35000379579|2 +691183|35000379581|2 +691300|35000379588|2 +691292|35000379591|2 +691293|35000379592|2 +691285|35000379593|2 +691361|35000379597|2 +691343|35000379598|2 +691375|35000379601|2 +691368|35000379602|2 +691325|35000379603|2 +691398|35000379604|2 +691344|35000379606|2 +691366|35000379607|2 +691367|35000379608|2 +691346|35000379609|2 +691326|35000379610|2 +691430|35000379611|2 +691431|35000379612|2 +691434|35000379614|2 +691437|35000379615|2 +691463|35000379618|2 +691567|35000379622|2 +691632|35000379623|2 +691641|35000379624|2 +691633|35000379625|2 +691640|35000379626|2 +691777|35000379629|2 +691778|35000379630|2 +691776|35000379631|2 +691893|35000379634|2 +691873|35000379635|2 +691824|35000379636|2 +691825|35000379637|2 +633411|35000379638|2 +691994|35000379639|2 +692016|35000379640|2 +692025|35000379641|2 +692022|35000379643|2 +692014|35000379644|2 +692038|35000379645|2 +692045|35000379646|2 +692266|35000379650|2 +692122|35000379653|2 +692168|35000379654|2 +692185|35000379656|2 +692165|35000379658|2 +692128|35000379661|2 +692170|35000379662|2 +692364|35000379666|2 +692365|35000379667|2 +692384|35000379670|2 +692441|35000379671|2 +692414|35000379673|2 +692433|35000379675|2 +692476|35000379677|2 +692472|35000379679|2 +692468|35000379680|2 +692473|35000379682|2 +692474|35000379683|2 +692617|35000379686|2 +692618|35000379687|2 +651943|35000379691|2 +692662|35000379692|2 +692669|35000379695|2 +692667|35000379697|2 +692690|35000379698|2 +692687|35000379699|2 +692796|35000379704|2 +475605|35000379706|2 +692788|35000379708|2 +692771|35000379709|2 +692853|35000379713|2 +692879|35000379714|2 +692881|35000379715|2 +692995|35000379717|2 +692997|35000379718|2 +693001|35000379719|2 +692981|35000379720|2 +692986|35000379721|2 +692967|35000379722|2 +693162|35000379726|2 +693248|35000379728|2 +693315|35000379729|2 +693478|35000379731|2 +633687|35000379732|2 +693512|35000379733|2 +558210|35000379736|2 +693621|35000379737|2 +693551|35000379738|2 +693644|35000379739|2 +693602|35000379740|2 +693508|35000379741|2 +693565|35000379742|2 +693585|35000379743|2 +693706|35000379747|2 +693710|35000379748|2 +693880|35000379752|2 +693912|35000379754|2 +693945|35000379762|2 +693978|35000379763|2 +693988|35000379766|2 +694058|35000379767|2 +694048|35000379768|2 +694066|35000379769|2 +772479|35000379771|2 +694179|35000379774|2 +694267|35000379775|2 +694595|35000379776|2 +694596|35000379777|2 +694506|35000379778|2 +694317|35000379781|2 +694584|35000379782|2 +694425|35000379786|2 +694414|35000379787|2 +694403|35000379788|2 +694325|35000379789|2 +694398|35000379790|2 +694322|35000379791|2 +694503|35000379792|2 +694389|35000379794|2 +694622|35000379795|2 +694597|35000379796|2 +694598|35000379797|2 +694599|35000379798|2 +694404|35000379800|2 +694378|35000379801|2 +694640|35000379802|2 +694645|35000379803|2 +694670|35000379804|2 +531863|35000379805|2 +694649|35000379808|2 +694760|35000379813|2 +694762|35000379814|2 +694764|35000379816|2 +694835|35000379818|2 +694881|35000379820|2 +694942|35000379823|2 +694945|35000379824|2 +694941|35000379825|2 +694943|35000379826|2 +695024|35000379830|2 +563118|35000379833|2 +695041|35000379834|2 +695042|35000379835|2 +695144|35000379838|2 +695172|35000379839|2 +695231|35000379844|2 +695255|35000379845|2 +695306|35000379846|2 +695302|35000379847|2 +695296|35000379848|2 +695312|35000379849|2 +695349|35000379852|2 +695350|35000379853|2 +695352|35000379854|2 +695358|35000379855|2 +695359|35000379856|2 +695404|35000379861|2 +695405|35000379862|2 +695551|35000379864|2 +695452|35000379870|2 +695428|35000379874|2 +695651|35000379875|2 +695755|35000379881|2 +841941|35000379882|2 +695974|35000379887|2 +696027|35000379889|2 +696028|35000379892|2 +696109|35000379896|2 +696190|35000379901|2 +696191|35000379902|2 +696176|35000379903|2 +696219|35000379906|2 +696194|35000379907|2 +696278|35000379911|2 +696250|35000379912|2 +696329|35000379913|2 +696306|35000379914|2 +696256|35000379915|2 +696274|35000379916|2 +696323|35000379918|2 +696248|35000379919|2 +696338|35000379922|2 +696246|35000379923|2 +696383|35000379927|2 +696390|35000379928|2 +696402|35000379930|2 +696511|35000379937|2 +696534|35000379938|2 +696553|35000379941|2 +696551|35000379942|2 +696563|35000379943|2 +696647|35000379947|2 +696725|35000379949|2 +696737|35000379950|2 +696724|35000379954|2 +696720|35000379955|2 +696729|35000379957|2 +696758|35000379958|2 +697069|35000379964|2 +697269|35000379965|2 +697277|35000379966|2 +697318|35000379969|2 +697416|35000379974|2 +697418|35000379976|2 +697417|35000379977|2 +697479|35000379980|2 +697513|35000379984|2 +697494|35000379985|2 +697562|35000379989|2 +697598|35000379995|2 +697714|35000380000|2 +697684|35000380001|2 +697675|35000380002|2 +697700|35000380004|2 +697741|35000380006|2 +697735|35000380007|2 +697740|35000380008|2 +697752|35000380009|2 +697780|35000380011|2 +697811|35000380012|2 +697813|35000380014|2 +505575|35000380015|2 +698101|35000380017|2 +698015|35000380021|2 +698016|35000380022|2 +698005|35000380023|2 +697899|35000380024|2 +698102|35000380025|2 +698049|35000380028|2 +514948|35000380030|2 +697948|35000380033|2 +697991|35000380034|2 +531639|35000380035|2 +698022|35000380036|2 +697918|35000380038|2 +698131|35000380042|2 +698136|35000380043|2 +698138|35000380044|2 +698130|35000380046|2 +698242|35000380050|2 +698191|35000380051|2 +698201|35000380052|2 +698225|35000380053|2 +698304|35000380054|2 +698373|35000380056|2 +698374|35000380057|2 +698375|35000380058|2 +698376|35000380060|2 +698624|35000380064|2 +698438|35000380066|2 +698497|35000380069|2 +698719|35000380075|2 +698658|35000380076|2 +698759|35000380077|2 +699018|35000380078|2 +698907|35000380079|2 +698760|35000380080|2 +699440|35000380083|2 +699256|35000380084|2 +699358|35000380086|2 +699659|35000380087|2 +699705|35000380089|2 +699701|35000380090|2 +699697|35000380093|2 +699687|35000380094|2 +525898|35000380096|2 +699694|35000380098|2 +699733|35000380103|2 +699747|35000380106|2 +699744|35000380107|2 +699768|35000380108|2 +699875|35000380111|2 +699881|35000380113|2 +699861|35000380114|2 +570111|35000380116|2 +699878|35000380118|2 +699864|35000380123|2 +699865|35000380124|2 +699833|35000380126|2 +700190|35000380132|4 +700208|35000380133|2 +700209|35000380136|2 +700013|35000380139|2 +700031|35000380140|2 +700156|35000380141|2 +700147|35000380142|2 +699996|35000380143|2 +700171|35000380145|2 +700032|35000380146|2 +700080|35000380148|2 +700076|35000380149|2 +535657|35000380150|2 +700260|35000380152|2 +700262|35000380153|2 +700273|35000380156|2 +554858|35000380157|2 +700416|35000380161|2 +700413|35000380162|2 +700441|35000380164|2 +700442|35000380167|2 +701201|35000380169|2 +701134|35000380170|2 +875178|35000380172|2 +700789|35000380173|2 +701490|35000380174|2 +701064|35000380176|2 +700997|35000380177|2 +700910|35000380178|2 +700823|35000380179|2 +700491|35000380180|2 +700933|35000380181|2 +700638|35000380182|2 +700715|35000380183|2 +700493|35000380184|2 +701007|35000380185|2 +701227|35000380187|2 +700989|35000380188|2 +700934|35000380189|2 +701450|35000380191|2 +701305|35000380193|2 +701771|35000380207|2 +701808|35000380209|2 +701834|35000380211|2 +701949|35000380215|2 +701880|35000380216|2 +701864|35000380217|2 +701971|35000380218|2 +701927|35000380219|2 +701916|35000380220|2 +701917|35000380221|2 +701870|35000380222|2 +701851|35000380223|2 +702018|35000380224|2 +702022|35000380225|2 +702017|35000380226|2 +704039|35000380228|2 +702086|35000380229|2 +702179|35000380235|2 +702193|35000380239|2 +702190|35000380240|2 +702272|35000380241|2 +702215|35000380242|2 +702282|35000380244|2 +702331|35000380246|2 +702358|35000380248|2 +702377|35000380252|2 +702439|35000380261|2 +547996|35000380266|2 +702551|35000380267|2 +702554|35000380268|2 +702597|35000380270|2 +702596|35000380272|2 +702642|35000380276|2 +580243|35000380277|2 +702749|35000380280|2 +702748|35000380281|2 +702756|35000380282|2 +702858|35000380283|2 +702903|35000380285|2 +702911|35000380286|2 +703035|35000380291|2 +703036|35000380295|2 +703011|35000380297|2 +703093|35000380298|2 +703084|35000380299|2 +703082|35000380300|2 +703089|35000380301|2 +703077|35000380304|2 +703070|35000380305|2 +703080|35000380306|2 +703090|35000380307|2 +703073|35000380308|2 +703069|35000380310|2 +703129|35000380312|2 +703106|35000380313|2 +703107|35000380314|2 +703104|35000380316|2 +703134|35000380317|2 +703119|35000380318|2 +703114|35000380320|2 +703115|35000380321|2 +598598|35000380322|2 +703145|35000380323|2 +703094|35000380324|2 +703116|35000380326|2 +703126|35000380327|2 +703131|35000380329|2 +703147|35000380331|2 +703214|35000380335|2 +703307|35000380336|2 +703325|35000380337|2 +703328|35000380338|2 +703333|35000380339|2 +703332|35000380340|2 +703346|35000380341|2 +703479|35000380343|2 +703747|35000380344|2 +704031|35000380347|2 +704065|35000380348|2 +704067|35000380350|2 +704064|35000380351|2 +704066|35000380352|2 +704063|35000380354|2 +704070|35000380357|2 +704137|35000380359|2 +704131|35000380360|2 +704136|35000380361|2 +601482|35000380364|2 +704294|35000380365|2 +575868|35000380366|2 +704427|35000380369|2 +704450|35000380371|2 +704446|35000380372|2 +704423|35000380373|2 +704462|35000380377|2 +776211|35000380385|2 +704520|35000380386|2 +704512|35000380388|2 +704613|35000380393|2 +704618|35000380394|2 +704609|35000380396|2 +893667|35000380398|2 +704580|35000380399|2 +704637|35000380401|2 +704673|35000380403|2 +704720|35000380405|2 +704818|35000380406|2 +704753|35000380407|2 +704819|35000380408|2 +704721|35000380411|2 +704930|35000380417|2 +704942|35000380419|2 +704941|35000380420|2 +704943|35000380421|2 +704953|35000380422|2 +704980|35000380424|2 +704993|35000380425|2 +704990|35000380427|2 +705014|35000380429|2 +705009|35000380430|2 +895630|35000380432|2 +705031|35000380434|2 +705046|35000380435|2 +705042|35000380436|2 +705048|35000380438|2 +705061|35000380439|2 +705059|35000380440|2 +705085|35000380441|2 +705222|35000380442|2 +705296|35000380444|2 +705202|35000380445|2 +705277|35000380448|2 +705320|35000380449|2 +705334|35000380452|2 +705392|35000380457|2 +705460|35000380460|2 +705461|35000380461|2 +705474|35000380462|2 +705483|35000380463|2 +705497|35000380464|2 +705550|35000380468|2 +705537|35000380469|2 +705538|35000380470|2 +705610|35000380472|2 +705675|35000380475|2 +705663|35000380476|2 +705650|35000380477|2 +705824|35000380480|2 +705812|35000380482|2 +705744|35000380488|2 +705884|35000380496|2 +706166|35000380498|2 +705899|35000380505|2 +705977|35000380509|2 +706032|35000380510|2 +706208|35000380512|2 +706206|35000380513|2 +706204|35000380515|2 +706205|35000380517|2 +706207|35000380518|2 +706240|35000380522|2 +706268|35000380523|2 +670949|35000380525|2 +706304|35000380526|2 +706371|35000380528|2 +706324|35000380530|2 +706376|35000380531|2 +706333|35000380534|2 +706303|35000380537|2 +706425|35000380540|2 +706497|35000380543|2 +706542|35000380548|2 +706840|35000380549|2 +706818|35000380550|2 +706796|35000380551|2 +706761|35000380552|2 +706616|35000380555|2 +706710|35000380556|2 +706593|35000380557|2 +706567|35000380561|2 +707103|35000380566|2 +706948|35000380568|2 +706992|35000380571|2 +707031|35000380572|2 +706985|35000380573|2 +706937|35000380574|2 +707007|35000380575|2 +707055|35000380577|2 +707042|35000380579|2 +707101|35000380580|2 +707095|35000380581|2 +707086|35000380582|2 +706965|35000380583|2 +706975|35000380585|2 +803296|35000380586|2 +707125|35000380587|2 +707143|35000380588|2 +707124|35000380589|2 +707160|35000380590|2 +707133|35000380591|2 +707156|35000380593|2 +707146|35000380594|2 +707144|35000380595|2 +706534|35000380596|2 +706537|35000380599|2 +707231|35000380602|2 +707239|35000380603|2 +707284|35000380604|2 +707352|35000380605|2 +707335|35000380606|2 +707285|35000380607|2 +707357|35000380610|2 +707322|35000380611|2 +707346|35000380613|2 +707339|35000380614|2 +707358|35000380615|2 +707300|35000380617|2 +707380|35000380618|2 +707371|35000380619|2 +707277|35000380620|2 +707295|35000380621|2 +707340|35000380622|2 +707389|35000380624|2 +707398|35000380627|2 +707404|35000380628|2 +707421|35000380630|2 +707412|35000380631|2 +707408|35000380632|2 +707402|35000380633|2 +707416|35000380634|2 +707405|35000380636|2 +707613|35000380639|2 +707472|35000380640|2 +707660|35000380641|2 +852587|35000380642|2 +707555|35000380643|2 +707508|35000380644|2 +707493|35000380645|2 +707514|35000380646|2 +707641|35000380647|2 +707680|35000380649|2 +707621|35000380651|2 +707509|35000380654|2 +707595|35000380655|2 +707500|35000380656|2 +707558|35000380657|2 +707654|35000380658|2 +707608|35000380660|2 +707494|35000380661|2 +707519|35000380663|2 +707661|35000380664|2 +707594|35000380666|2 +707674|35000380667|2 +707596|35000380670|2 +707597|35000380672|2 +726748|35000380673|2 +707536|35000380674|2 +707569|35000380675|2 +707738|35000380676|2 +707722|35000380677|2 +707734|35000380678|2 +707737|35000380679|2 +707739|35000380680|2 +707716|35000380681|2 +707724|35000380682|2 +707747|35000380683|2 +707801|35000380686|2 +707797|35000380687|2 +707799|35000380688|2 +707866|35000380689|2 +707852|35000380690|2 +707872|35000380691|2 +642147|35000380693|2 +848255|35000380694|2 +707909|35000380696|2 +707983|35000380701|2 +707989|35000380703|2 +707994|35000380704|2 +707993|35000380705|2 +708039|35000380706|2 +708082|35000380707|2 +708053|35000380709|2 +708083|35000380711|2 +708077|35000380712|2 +708156|35000380713|2 +708152|35000380714|2 +708145|35000380716|4 +708258|35000380719|2 +708325|35000380723|2 +708351|35000380725|2 +708369|35000380726|2 +708320|35000380728|2 +708365|35000380731|2 +708250|35000380732|2 +708428|35000380733|2 +708470|35000380735|2 +708491|35000380736|2 +708500|35000380737|2 +708550|35000380740|2 +708553|35000380741|2 +708585|35000380744|2 +708671|35000380749|2 +708718|35000380751|2 +708749|35000380753|2 +708822|35000380756|2 +709023|35000380758|2 +709097|35000380759|2 +709024|35000380760|2 +709025|35000380761|2 +709026|35000380762|2 +709543|35000380768|2 +709496|35000380773|2 +709569|35000380779|2 +709586|35000380781|2 +709650|35000380785|2 +709727|35000380787|2 +710281|35000380788|2 +710161|35000380792|2 +710112|35000380793|4 +710049|35000380795|2 +710026|35000380796|2 +709911|35000380798|2 +710010|35000380799|2 +709817|35000380800|2 +709981|35000380802|2 +710192|35000380804|2 +710244|35000380805|2 +710016|35000380809|2 +710232|35000380812|2 +709788|35000380814|2 +710214|35000380815|2 +709806|35000380818|2 +709904|35000380819|2 +710113|35000380823|4 +709796|35000380824|2 +709863|35000380830|2 +710014|35000380833|2 +555981|35000380834|2 +709739|35000380835|2 +709811|35000380837|2 +710023|35000380838|2 +709765|35000380839|2 +710241|35000380840|4 +781675|35000380841|2 +709912|35000380842|2 +709797|35000380845|2 +709913|35000380847|2 +709802|35000380848|2 +709914|35000380849|2 +709933|35000380850|2 +710253|35000380851|2 +710027|35000380852|2 +709818|35000380853|2 +710310|35000380855|2 +710349|35000380856|2 +710346|35000380857|2 +710464|35000380859|2 +710518|35000380860|2 +710516|35000380861|2 +710501|35000380863|2 +710545|35000380864|2 +710433|35000380866|2 +710494|35000380867|2 +675715|35000380869|2 +710571|35000380874|2 +710572|35000380875|2 +710570|35000380877|2 +710579|35000380878|2 +710564|35000380879|2 +710565|35000380880|2 +710631|35000380883|2 +710632|35000380885|2 +710786|35000380890|2 +710956|35000380893|2 +710943|35000380896|2 +711104|35000380898|2 +710878|35000380901|2 +711089|35000380902|2 +710944|35000380903|2 +710945|35000380905|2 +486300|35000380907|2 +711014|35000380908|2 +710957|35000380912|2 +711077|35000380913|2 +710907|35000380914|2 +710861|35000380915|2 +711098|35000380922|2 +711078|35000380923|2 +711012|35000380925|2 +711084|35000380927|2 +711015|35000380928|2 +711149|35000380930|2 +711233|35000380937|2 +711236|35000380938|2 +711291|35000380940|2 +711288|35000380941|2 +765851|35000380945|2 +754865|35000380948|2 +712129|35000380949|2 +711913|35000380950|2 +712032|35000380952|2 +711871|35000380958|2 +711696|35000380960|2 +711618|35000380961|2 +711758|35000380963|2 +712033|35000380964|2 +711914|35000380966|2 +711985|35000380967|2 +711864|35000380968|2 +711979|35000380969|2 +711770|35000380971|2 +712056|35000380972|2 +712074|35000380974|2 +711647|35000380975|2 +711880|35000380976|2 +711815|35000380977|2 +711986|35000380978|2 +711590|35000380979|2 +711750|35000380980|2 +711881|35000380982|2 +711747|35000380983|2 +591699|35000380986|2 +712162|35000380987|2 +712178|35000380988|2 +712163|35000380989|2 +712235|35000380992|2 +712253|35000380995|2 +712351|35000380996|2 +712335|35000380997|2 +712400|35000380998|2 +712431|35000380999|2 +712432|35000381000|2 +712408|35000381002|2 +712383|35000381005|2 +712272|35000381006|2 +712495|35000381008|2 +712496|35000381010|2 +712516|35000381012|2 +712524|35000381013|2 +712544|35000381015|2 +712556|35000381016|2 +712616|35000381017|2 +622663|35000381019|2 +712645|35000381020|2 +712572|35000381023|2 +712642|35000381025|2 +712746|35000381032|2 +712857|35000381041|2 +712874|35000381044|2 +713138|35000381045|2 +713119|35000381048|2 +712933|35000381049|2 +712851|35000381050|2 +712806|35000381052|2 +713054|35000381053|2 +713055|35000381054|2 +713000|35000381056|2 +712971|35000381057|2 +713052|35000381058|2 +712945|35000381062|2 +713167|35000381068|2 +713168|35000381070|2 +713174|35000381071|2 +713180|35000381072|2 +713185|35000381073|2 +713200|35000381074|2 +713221|35000381075|2 +713235|35000381076|2 +713236|35000381077|2 +713460|35000381081|2 +713461|35000381082|2 +713462|35000381084|2 +713567|35000381091|2 +713711|35000381094|2 +713729|35000381096|2 +713728|35000381097|2 +713737|35000381098|2 +713747|35000381099|2 +713768|35000381101|2 +713787|35000381102|2 +713792|35000381107|2 +713789|35000381109|2 +713824|35000381110|2 +713825|35000381111|2 +713846|35000381112|2 +713831|35000381113|2 +713865|35000381115|2 +714006|35000381120|2 +713982|35000381121|2 +713933|35000381123|2 +713874|35000381125|2 +713990|35000381126|2 +713953|35000381127|2 +714211|35000381128|2 +714455|35000381133|2 +714460|35000381135|2 +714371|35000381136|2 +714456|35000381137|2 +714493|35000381139|2 +714530|35000381141|2 +714575|35000381142|2 +714568|35000381143|2 +714632|35000381144|2 +714617|35000381146|2 +714565|35000381147|2 +714534|35000381148|2 +714719|35000381149|2 +714566|35000381150|2 +714665|35000381152|2 +714498|35000381153|2 +714606|35000381156|2 +714622|35000381157|2 +714731|35000381158|2 +714736|35000381159|2 +714747|35000381161|2 +714749|35000381162|2 +714745|35000381163|2 +692115|35000381164|2 +670560|35000381166|2 +714788|35000381167|2 +714973|35000381172|2 +714917|35000381173|2 +714916|35000381174|2 +714936|35000381177|2 +714947|35000381179|2 +714977|35000381181|2 +714972|35000381182|2 +714971|35000381183|2 +714920|35000381184|2 +714954|35000381185|2 +714966|35000381186|2 +715132|35000381190|2 +656246|35000381191|2 +715311|35000381192|2 +715091|35000381193|2 +715121|35000381194|2 +715350|35000381197|2 +715401|35000381200|2 +715235|35000381201|2 +715351|35000381202|2 +715416|35000381203|2 +715236|35000381204|2 +715158|35000381205|2 +715381|35000381206|2 +715306|35000381207|2 +715113|35000381209|2 +715071|35000381210|2 +473650|35000381211|2 +715297|35000381213|2 +715298|35000381214|2 +715159|35000381215|2 +715299|35000381219|2 +715483|35000381225|2 +715534|35000381226|2 +715535|35000381227|2 +715536|35000381228|2 +715713|35000381231|2 +715704|35000381232|2 +715693|35000381233|2 +715729|35000381235|2 +715725|35000381236|2 +715622|35000381237|2 +715630|35000381239|2 +715631|35000381243|2 +715604|35000381244|2 +715726|35000381245|2 +715694|35000381250|2 +715720|35000381251|2 +715623|35000381252|2 +715634|35000381253|2 +715624|35000381254|2 +715914|35000381255|2 +716056|35000381258|2 +716023|35000381262|2 +716283|35000381263|2 +716400|35000381265|4 +716330|35000381266|2 +716096|35000381269|2 +716190|35000381270|2 +716210|35000381273|2 +716123|35000381274|2 +716125|35000381275|2 +716149|35000381276|2 +716217|35000381277|2 +716379|35000381278|2 +716389|35000381279|4 +716417|35000381280|2 +716218|35000381281|2 +716188|35000381284|2 +716408|35000381285|2 +716242|35000381287|2 +716095|35000381288|2 +716189|35000381290|2 +716426|35000381291|2 +716431|35000381292|2 +716329|35000381293|2 +716513|35000381297|2 +716520|35000381298|2 +716522|35000381299|2 +716527|35000381300|2 +716525|35000381301|2 +716608|35000381304|2 +716628|35000381305|2 +716629|35000381306|2 +703393|35000381307|2 +716693|35000381308|2 +716695|35000381309|2 +716718|35000381311|2 +716719|35000381312|2 +716757|35000381316|2 +716774|35000381317|2 +716773|35000381318|2 +716770|35000381319|2 +716775|35000381321|2 +716786|35000381323|2 +716785|35000381324|2 +716882|35000381325|2 +716879|35000381326|2 +716885|35000381327|2 +716884|35000381329|2 +716874|35000381331|2 +717180|35000381333|2 +716952|35000381334|2 +716995|35000381335|2 +717174|35000381336|2 +717264|35000381337|2 +717198|35000381338|2 +716993|35000381341|4 +717032|35000381343|2 +717282|35000381344|2 +717037|35000381345|2 +717172|35000381346|2 +717110|35000381347|2 +716984|35000381348|2 +716990|35000381350|2 +717109|35000381352|2 +717188|35000381353|2 +716985|35000381354|2 +717089|35000381355|2 +717431|35000381357|2 +717713|35000381359|2 +717775|35000381360|2 +717719|35000381361|2 +717776|35000381362|2 +717773|35000381364|2 +717506|35000381365|2 +808945|35000381367|2 +717619|35000381369|2 +717693|35000381370|4 +717558|35000381372|2 +717888|35000381378|2 +717910|35000381379|2 +717915|35000381383|2 +718035|35000381384|2 +718079|35000381386|2 +718094|35000381387|2 +718167|35000381388|2 +718115|35000381389|2 +718180|35000381390|2 +718185|35000381393|2 +718116|35000381394|2 +718168|35000381395|2 +894180|35000381396|2 +718123|35000381397|2 +718201|35000381398|2 +718195|35000381399|2 +718215|35000381400|2 +718247|35000381401|2 +718282|35000381402|2 +718281|35000381405|2 +718278|35000381406|2 +718328|35000381407|2 +718466|35000381411|2 +718403|35000381414|2 +718371|35000381418|2 +718404|35000381419|2 +718422|35000381420|2 +718372|35000381422|2 +718392|35000381423|2 +718402|35000381424|2 +718408|35000381425|2 +737118|35000381426|2 +718442|35000381427|2 +718465|35000381429|2 +718459|35000381431|2 +718449|35000381432|2 +718395|35000381433|2 +718439|35000381435|2 +718428|35000381437|2 +718502|35000381438|2 +718559|35000381439|2 +718571|35000381440|2 +718569|35000381441|2 +718626|35000381443|2 +718604|35000381445|2 +718648|35000381448|2 +718638|35000381453|2 +718650|35000381454|2 +718653|35000381455|2 +718609|35000381460|2 +718644|35000381461|2 +718856|35000381469|2 +718792|35000381470|2 +718871|35000381472|2 +718804|35000381473|2 +718794|35000381474|2 +718863|35000381476|2 +718898|35000381477|2 +718982|35000381480|2 +719059|35000381483|2 +719085|35000381485|2 +719075|35000381489|2 +719080|35000381490|2 +719136|35000381492|2 +719200|35000381494|2 +719195|35000381495|2 +719172|35000381497|2 +719180|35000381499|2 +719289|35000381500|2 +719306|35000381501|2 +719292|35000381502|2 +719336|35000381507|2 +719597|35000381513|2 +719434|35000381515|2 +719575|35000381517|2 +719576|35000381520|2 +801901|35000381523|2 +719877|35000381525|2 +719868|35000381526|2 +719816|35000381528|2 +719908|35000381532|2 +719957|35000381534|2 +720005|35000381536|2 +720023|35000381538|2 +719969|35000381540|2 +720072|35000381541|2 +720069|35000381543|2 +719992|35000381545|2 +505626|35000381546|2 +720013|35000381547|2 +720036|35000381551|2 +719964|35000381552|2 +863205|35000381555|2 +720100|35000381557|2 +719965|35000381558|2 +719991|35000381559|2 +720091|35000381560|2 +720101|35000381561|2 +719949|35000381563|2 +720042|35000381564|2 +720095|35000381565|2 +720096|35000381566|2 +719982|35000381567|2 +720183|35000381569|2 +720178|35000381570|2 +720184|35000381571|2 +720191|35000381573|2 +720176|35000381574|2 +720185|35000381575|2 +720169|35000381577|2 +720292|35000381578|2 +720280|35000381579|2 +720355|35000381582|2 +720489|35000381584|2 +720546|35000381586|2 +720586|35000381589|2 +720595|35000381593|2 +720596|35000381594|2 +720627|35000381600|2 +720691|35000381603|2 +720652|35000381604|2 +720684|35000381605|2 +720707|35000381607|2 +720755|35000381608|2 +720739|35000381609|2 +720729|35000381610|2 +720732|35000381613|2 +720740|35000381614|2 +720746|35000381616|2 +720716|35000381617|2 +720745|35000381618|2 +720731|35000381619|2 +720752|35000381621|2 +720778|35000381622|2 +720798|35000381623|2 +720796|35000381624|2 +880276|35000381626|2 +720799|35000381627|2 +720821|35000381629|2 +720828|35000381632|2 +720962|35000381642|2 +721097|35000381645|2 +721098|35000381646|2 +721122|35000381647|2 +721228|35000381649|2 +721187|35000381652|2 +721165|35000381654|2 +721168|35000381656|2 +721197|35000381658|2 +533597|35000381659|2 +721233|35000381660|2 +721248|35000381661|2 +721357|35000381663|2 +721303|35000381664|2 +721332|35000381665|2 +721371|35000381666|2 +721370|35000381667|2 +721373|35000381668|2 +721377|35000381669|2 +721374|35000381670|2 +721375|35000381671|2 +721662|35000381673|2 +721687|35000381676|2 +721818|35000381679|2 +721834|35000381682|2 +721960|35000381683|2 +721964|35000381685|2 +756685|35000381688|2 +721880|35000381690|2 +721910|35000381691|2 +722001|35000381694|2 +722019|35000381695|2 +721908|35000381697|2 +721896|35000381699|2 +722104|35000381705|2 +722177|35000381707|2 +722152|35000381708|2 +722178|35000381709|2 +722218|35000381710|2 +722243|35000381711|2 +505502|35000381713|2 +722296|35000381715|2 +722351|35000381716|2 +722367|35000381717|2 +722414|35000381719|2 +722440|35000381720|2 +722455|35000381722|2 +722448|35000381723|2 +722458|35000381726|2 +722462|35000381727|2 +722488|35000381729|2 +722537|35000381731|2 +722518|35000381732|2 +722527|35000381734|2 +722530|35000381735|2 +722531|35000381737|2 +722543|35000381740|2 +722660|35000381743|2 +722836|35000381744|2 +722912|35000381747|4 +723011|35000381748|2 +722894|35000381749|2 +722661|35000381750|2 +722636|35000381751|2 +722637|35000381752|2 +722608|35000381754|2 +722689|35000381755|4 +722575|35000381757|2 +722872|35000381760|2 +722696|35000381762|4 +722959|35000381764|2 +722906|35000381765|4 +723137|35000381768|2 +723169|35000381772|2 +723238|35000381773|2 +723263|35000381774|2 +723209|35000381775|2 +723193|35000381776|2 +723206|35000381779|2 +723214|35000381780|2 +707612|35000381781|2 +723332|35000381783|2 +723434|35000381784|4 +723433|35000381785|4 +723439|35000381787|4 +723465|35000381788|4 +723463|35000381789|4 +723600|35000381792|2 +723623|35000381795|2 +723675|35000381796|2 +723657|35000381797|2 +723659|35000381801|2 +723721|35000381802|2 +723788|35000381805|2 +723751|35000381806|2 +587625|35000381808|2 +723831|35000381811|2 +723848|35000381813|2 +724009|35000381816|2 +724012|35000381817|2 +724049|35000381820|2 +724103|35000381821|2 +724269|35000381827|2 +724212|35000381828|2 +724282|35000381829|2 +724230|35000381831|2 +724273|35000381832|2 +724214|35000381833|2 +724242|35000381834|2 +724233|35000381837|2 +724257|35000381838|2 +724262|35000381839|2 +724314|35000381841|2 +724333|35000381842|2 +724318|35000381845|2 +724322|35000381846|2 +724325|35000381847|2 +588394|35000381848|2 +724329|35000381851|2 +724327|35000381854|2 +724319|35000381855|2 +724334|35000381856|2 +724315|35000381857|2 +724340|35000381858|2 +724366|35000381862|2 +724363|35000381864|2 +724589|35000381873|2 +724642|35000381875|2 +724497|35000381876|2 +725193|35000381878|2 +724736|35000381879|2 +725164|35000381884|2 +724841|35000381885|2 +724710|35000381889|2 +724871|35000381890|2 +724970|35000381891|2 +724965|35000381892|2 +724764|35000381893|2 +505055|35000381894|2 +724971|35000381895|2 +725145|35000381897|4 +725140|35000381899|2 +724817|35000381900|2 +725159|35000381902|2 +724833|35000381903|2 +724709|35000381904|2 +724818|35000381905|2 +724840|35000381906|2 +724731|35000381910|2 +725075|35000381912|2 +724969|35000381913|2 +724754|35000381914|2 +725260|35000381918|2 +725298|35000381919|2 +725309|35000381920|2 +725315|35000381921|2 +725326|35000381922|2 +725324|35000381923|2 +725328|35000381924|2 +725414|35000381925|2 +725415|35000381926|2 +725425|35000381927|2 +725428|35000381928|2 +725427|35000381929|2 +725424|35000381932|2 +725494|35000381935|2 +725514|35000381937|2 +725513|35000381938|2 +725506|35000381939|2 +725624|35000381940|2 +725625|35000381941|2 +725762|35000381942|2 +725753|35000381943|2 +725798|35000381948|2 +725941|35000381952|2 +726041|35000381953|2 +725860|35000381954|2 +726139|35000381955|2 +725886|35000381957|2 +726173|35000381958|2 +726207|35000381959|2 +726005|35000381960|2 +726051|35000381961|2 +726033|35000381962|2 +725861|35000381965|2 +726034|35000381968|2 +725842|35000381969|2 +726075|35000381970|2 +725840|35000381971|2 +725955|35000381973|2 +725887|35000381978|2 +725987|35000381980|2 +725885|35000381986|2 +725985|35000381989|2 +726181|35000381990|2 +726148|35000381992|2 +725891|35000381995|2 +725833|35000381996|2 +725969|35000381997|2 +726286|35000382001|2 +726244|35000382008|2 +726321|35000382010|2 +726245|35000382012|2 +726275|35000382013|2 +726299|35000382014|2 +726459|35000382018|2 +726494|35000382023|2 +726527|35000382025|2 +726545|35000382026|2 +726579|35000382030|2 +726505|35000382031|2 +1259287|35000382032|2 +726522|35000382035|2 +726567|35000382036|2 +726625|35000382039|2 +726622|35000382040|2 +726721|35000382043|2 +726707|35000382045|2 +726695|35000382048|2 +726744|35000382053|2 +848743|35000382054|2 +726647|35000382056|2 +726766|35000382057|2 +726869|35000382060|2 +726839|35000382063|2 +726861|35000382064|2 +730540|35000382066|2 +726840|35000382069|2 +726862|35000382070|2 +726855|35000382071|2 +726927|35000382075|2 +726920|35000382076|2 +727013|35000382077|2 +727023|35000382079|2 +726990|35000382080|2 +727010|35000382082|2 +727006|35000382084|2 +727038|35000382087|2 +726979|35000382089|2 +726983|35000382090|2 +727043|35000382091|2 +726958|35000382092|2 +726967|35000382094|2 +727106|35000382099|2 +727136|35000382102|2 +727364|35000382104|2 +727309|35000382105|2 +727274|35000382106|2 +727320|35000382107|2 +727365|35000382108|2 +727316|35000382109|2 +727346|35000382111|2 +727390|35000382112|2 +727520|35000382113|2 +727447|35000382115|2 +727553|35000382116|2 +727591|35000382118|2 +727607|35000382120|2 +727596|35000382123|2 +727788|35000382126|2 +727807|35000382127|2 +727806|35000382128|2 +727840|35000382130|2 +727842|35000382131|2 +727832|35000382132|2 +727839|35000382133|2 +727834|35000382135|2 +727847|35000382136|2 +727926|35000382142|2 +887625|35000382145|2 +727942|35000382147|2 +727964|35000382148|2 +728012|35000382150|2 +728014|35000382151|2 +474421|35000382153|2 +728139|35000382154|2 +728248|35000382155|2 +728186|35000382157|2 +728192|35000382158|2 +728219|35000382161|2 +742217|35000382162|2 +728227|35000382163|2 +728220|35000382164|2 +728206|35000382165|2 +728286|35000382167|2 +728326|35000382170|2 +728327|35000382172|2 +728331|35000382175|2 +728367|35000382177|2 +728420|35000382179|2 +728421|35000382180|2 +728398|35000382181|2 +728434|35000382182|2 +728564|35000382184|2 +728565|35000382185|2 +728571|35000382186|2 +728572|35000382187|2 +728586|35000382191|2 +728611|35000382193|2 +728641|35000382197|2 +728648|35000382199|2 +729449|35000382200|2 +729492|35000382203|2 +730041|35000382204|2 +729106|35000382205|2 +729542|35000382206|2 +730026|35000382207|4 +729928|35000382208|2 +729450|35000382209|2 +730168|35000382210|4 +728893|35000382215|2 +728863|35000382216|2 +705489|35000382217|2 +730456|35000382222|2 +730532|35000382223|2 +730767|35000382225|2 +730533|35000382226|2 +730768|35000382227|2 +730592|35000382232|2 +730583|35000382235|2 +730773|35000382236|2 +730526|35000382238|2 +640147|35000382239|2 +730715|35000382240|2 +730665|35000382241|2 +730601|35000382245|2 +730550|35000382249|2 +730714|35000382252|2 +730722|35000382253|2 +730761|35000382255|2 +730769|35000382257|2 +730732|35000382261|2 +730541|35000382264|2 +730617|35000382268|2 +730701|35000382270|2 +730495|35000382271|2 +730593|35000382272|2 +730602|35000382273|2 +730753|35000382276|2 +730600|35000382277|2 +731113|35000382280|2 +731059|35000382281|2 +731177|35000382284|2 +479432|35000382285|2 +730825|35000382290|2 +730914|35000382291|2 +730941|35000382292|2 +730916|35000382294|2 +730791|35000382295|2 +731122|35000382303|2 +731087|35000382304|2 +731179|35000382305|2 +731155|35000382306|2 +730838|35000382307|2 +730845|35000382308|2 +731049|35000382309|2 +731020|35000382310|2 +730917|35000382314|2 +731188|35000382315|4 +730911|35000382321|2 +731224|35000382322|2 +731225|35000382323|2 +731340|35000382326|2 +731365|35000382330|2 +731356|35000382331|2 +460296|35000382332|2 +731448|35000382333|2 +731451|35000382335|2 +731453|35000382336|2 +731454|35000382337|2 +731521|35000382338|2 +731470|35000382340|2 +731533|35000382341|2 +731572|35000382344|2 +731575|35000382345|2 +731656|35000382346|2 +831159|35000382347|4 +731679|35000382350|2 +731702|35000382351|2 +731723|35000382353|2 +731736|35000382354|2 +731757|35000382355|2 +731831|35000382356|4 +806381|35000382357|2 +731856|35000382358|2 +731797|35000382360|2 +731827|35000382361|2 +731835|35000382362|2 +731846|35000382363|2 +731804|35000382365|2 +731807|35000382366|2 +731805|35000382367|2 +731828|35000382368|2 +731871|35000382370|2 +731933|35000382371|2 +732059|35000382372|2 +846966|35000382375|2 +732149|35000382376|2 +732155|35000382378|2 +732233|35000382379|2 +732193|35000382381|2 +732212|35000382385|2 +732194|35000382386|2 +732319|35000382387|2 +732318|35000382388|2 +732424|35000382389|2 +732451|35000382391|2 +732394|35000382397|2 +732444|35000382398|2 +732450|35000382400|2 +732378|35000382401|2 +732389|35000382403|2 +732377|35000382405|2 +732492|35000382406|2 +732557|35000382407|2 +732573|35000382408|2 +732577|35000382409|2 +732578|35000382410|2 +732647|35000382411|2 +732685|35000382413|2 +732818|35000382418|2 +732838|35000382421|2 +732780|35000382423|2 +732768|35000382424|2 +732839|35000382426|2 +732893|35000382427|2 +715227|35000382429|2 +887323|35000382437|2 +733134|35000382442|2 +733128|35000382444|2 +733065|35000382445|2 +733066|35000382448|2 +733083|35000382449|2 +733082|35000382450|2 +733104|35000382451|2 +733097|35000382453|2 +733214|35000382459|2 +733340|35000382461|2 +733347|35000382463|2 +733331|35000382464|2 +733321|35000382465|2 +733314|35000382466|2 +733320|35000382467|2 +733618|35000382475|2 +733631|35000382476|4 +733649|35000382478|2 +733651|35000382479|2 +733655|35000382480|2 +733662|35000382481|2 +733664|35000382482|2 +733707|35000382486|2 +733775|35000382487|2 +733916|35000382489|2 +734015|35000382490|2 +733859|35000382491|2 +734066|35000382492|2 +733860|35000382493|2 +733962|35000382498|2 +733967|35000382499|2 +733887|35000382500|2 +733890|35000382501|2 +734037|35000382503|2 +734007|35000382505|2 +733992|35000382506|2 +734103|35000382508|2 +733927|35000382511|2 +733861|35000382512|2 +733949|35000382513|2 +734067|35000382514|2 +734079|35000382516|2 +733963|35000382517|2 +733928|35000382520|2 +505472|35000382526|2 +734291|35000382527|2 +734316|35000382528|2 +691919|35000382530|2 +734226|35000382531|2 +734285|35000382532|2 +734277|35000382533|2 +734317|35000382534|2 +734344|35000382535|2 +734392|35000382536|2 +734334|35000382537|2 +734352|35000382538|2 +734438|35000382541|2 +734519|35000382542|2 +734454|35000382543|2 +734483|35000382544|2 +734506|35000382547|2 +734467|35000382550|2 +734468|35000382552|2 +734558|35000382555|2 +734576|35000382556|2 +734577|35000382557|2 +734575|35000382558|2 +734553|35000382559|2 +734674|35000382561|2 +734678|35000382562|2 +734661|35000382563|2 +734675|35000382564|2 +734709|35000382566|2 +734783|35000382568|2 +734782|35000382569|2 +734784|35000382570|2 +734787|35000382571|2 +734786|35000382572|2 +734860|35000382576|2 +734832|35000382577|2 +734857|35000382578|2 +735154|35000382584|2 +735120|35000382585|2 +735099|35000382586|2 +735121|35000382588|2 +791827|35000382591|2 +735118|35000382592|2 +735129|35000382593|2 +735108|35000382594|2 +735135|35000382596|2 +735239|35000382598|2 +735234|35000382599|2 +735270|35000382601|2 +735268|35000382602|2 +735371|35000382607|2 +735392|35000382608|2 +735487|35000382613|2 +735552|35000382615|2 +735569|35000382617|2 +735557|35000382618|2 +735574|35000382619|2 +735564|35000382620|2 +735562|35000382621|2 +735559|35000382622|2 +735587|35000382623|2 +735586|35000382624|2 +735585|35000382625|2 +735591|35000382626|2 +735602|35000382628|2 +735603|35000382629|2 +735690|35000382631|2 +735700|35000382632|2 +735686|35000382635|2 +735728|35000382637|2 +735719|35000382638|2 +735759|35000382640|2 +735768|35000382641|2 +735782|35000382643|2 +735860|35000382644|2 +736020|35000382645|2 +735944|35000382646|2 +769900|35000382648|2 +735903|35000382649|2 +736012|35000382650|2 +735880|35000382651|2 +735930|35000382655|2 +735931|35000382657|2 +736016|35000382658|2 +735976|35000382659|2 +735981|35000382665|2 +735912|35000382666|2 +513651|35000382667|2 +736048|35000382668|2 +736018|35000382669|2 +735934|35000382670|2 +736081|35000382674|2 +736109|35000382675|2 +736173|35000382676|2 +736152|35000382678|2 +736287|35000382679|2 +736285|35000382680|2 +736288|35000382681|2 +736286|35000382682|2 +736448|35000382687|2 +736394|35000382689|2 +736644|35000382694|2 +736651|35000382695|2 +736634|35000382697|2 +736635|35000382698|2 +736609|35000382699|2 +736676|35000382702|2 +736679|35000382704|2 +736705|35000382706|2 +736706|35000382707|2 +736707|35000382708|2 +736704|35000382709|2 +736839|35000382713|2 +493775|35000382715|2 +736921|35000382716|2 +761307|35000382721|2 +736984|35000382722|2 +736909|35000382723|2 +736908|35000382724|2 +736862|35000382725|2 +737023|35000382730|2 +737046|35000382731|2 +737045|35000382733|2 +737048|35000382734|2 +737044|35000382735|2 +737069|35000382736|2 +737066|35000382739|2 +737081|35000382740|2 +737113|35000382741|2 +737393|35000382745|2 +737256|35000382748|2 +737257|35000382749|2 +737204|35000382751|2 +737344|35000382752|2 +737394|35000382757|2 +737364|35000382759|2 +737252|35000382761|2 +737384|35000382763|2 +737359|35000382765|2 +737330|35000382767|2 +737434|35000382768|2 +737205|35000382769|2 +737259|35000382770|2 +733155|35000382771|2 +737417|35000382773|2 +737700|35000382779|2 +737756|35000382780|2 +737738|35000382781|2 +737819|35000382784|2 +737776|35000382785|2 +737783|35000382786|4 +737806|35000382787|2 +737847|35000382791|2 +737849|35000382792|2 +737886|35000382793|2 +737906|35000382795|2 +737919|35000382796|2 +737963|35000382797|2 +737929|35000382798|2 +737934|35000382800|2 +737943|35000382801|2 +737967|35000382803|2 +737968|35000382804|2 +738053|35000382809|2 +738056|35000382810|2 +738038|35000382812|2 +738048|35000382814|2 +738205|35000382818|2 +738241|35000382820|2 +780648|35000382821|2 +738247|35000382824|2 +738249|35000382825|2 +738246|35000382826|2 +738245|35000382827|2 +738250|35000382828|2 +738260|35000382830|2 +738271|35000382831|2 +738275|35000382833|2 +738281|35000382835|2 +738280|35000382836|2 +738314|35000382838|2 +738318|35000382839|2 +738321|35000382840|2 +738323|35000382841|2 +738320|35000382843|2 +738325|35000382845|2 +738495|35000382846|2 +738399|35000382851|2 +738397|35000382853|2 +738359|35000382854|2 +738442|35000382855|2 +738352|35000382856|2 +738646|35000382858|2 +738745|35000382862|2 +738760|35000382866|2 +738683|35000382867|2 +738782|35000382869|2 +738785|35000382871|2 +738787|35000382872|2 +738783|35000382874|2 +738781|35000382875|2 +738808|35000382876|2 +738809|35000382877|2 +738834|35000382878|2 +738919|35000382882|2 +738917|35000382883|2 +738934|35000382884|2 +738937|35000382885|2 +739010|35000382886|2 +739019|35000382887|2 +739035|35000382891|2 +739036|35000382892|2 +739078|35000382893|2 +739077|35000382894|2 +739079|35000382896|2 +739136|35000382902|2 +739174|35000382904|2 +739265|35000382905|2 +739364|35000382912|2 +739385|35000382913|2 +739453|35000382916|2 +739454|35000382917|2 +739501|35000382919|2 +739520|35000382922|2 +739554|35000382923|2 +739562|35000382924|2 +739553|35000382925|2 +739559|35000382926|2 +739560|35000382927|2 +739555|35000382928|2 +739556|35000382930|2 +739561|35000382931|2 +739572|35000382932|2 +739581|35000382934|4 +739597|35000382937|2 +739663|35000382940|2 +739666|35000382943|2 +739669|35000382944|2 +739664|35000382945|2 +739692|35000382947|2 +739769|35000382949|2 +739762|35000382951|2 +739775|35000382953|2 +739707|35000382954|2 +739781|35000382956|4 +739749|35000382958|2 +739801|35000382959|2 +739898|35000382961|2 +739864|35000382962|2 +740027|35000382963|2 +739961|35000382964|2 +739942|35000382967|2 +740019|35000382973|2 +739928|35000382975|2 +739993|35000382976|2 +740054|35000382979|2 +740024|35000382980|2 +539050|35000382981|2 +740034|35000382982|2 +740062|35000382985|2 +739958|35000382988|2 +739991|35000382989|2 +740162|35000382992|2 +740130|35000382993|2 +809613|35000382995|2 +740073|35000382997|2 +740201|35000382998|2 +740206|35000382999|2 +740239|35000383002|2 +740258|35000383004|2 +740269|35000383007|2 +740296|35000383009|2 +740272|35000383010|2 +740223|35000383011|2 +740224|35000383013|2 +740255|35000383014|2 +517065|35000383015|2 +740302|35000383016|2 +740355|35000383021|2 +740357|35000383022|2 +740546|35000383026|2 +740563|35000383028|2 +740562|35000383029|2 +865646|35000383030|2 +740592|35000383031|2 +740606|35000383032|2 +740672|35000383033|2 +740634|35000383035|2 +740611|35000383039|2 +740648|35000383040|2 +740687|35000383041|2 +740707|35000383043|2 +740965|35000383047|2 +740999|35000383051|2 +740988|35000383053|2 +740993|35000383054|2 +741266|35000383057|2 +741166|35000383060|2 +741310|35000383063|2 +741115|35000383064|2 +535963|35000383067|2 +741201|35000383068|2 +741149|35000383070|2 +741096|35000383072|2 +741181|35000383074|2 +741177|35000383076|2 +741269|35000383077|2 +741202|35000383078|2 +741274|35000383079|2 +741112|35000383081|2 +741124|35000383083|2 +741105|35000383085|2 +741203|35000383086|2 +741308|35000383090|2 +741394|35000383094|2 +741390|35000383095|2 +741387|35000383097|2 +741435|35000383100|2 +741396|35000383101|2 +741562|35000383103|2 +741501|35000383104|2 +741551|35000383105|2 +741546|35000383107|2 +741590|35000383110|2 +741587|35000383111|2 +741622|35000383113|2 +741642|35000383114|2 +741686|35000383115|2 +741831|35000383116|2 +741778|35000383117|2 +741736|35000383121|2 +741724|35000383126|2 +741681|35000383129|2 +741772|35000383130|2 +741819|35000383131|2 +741697|35000383132|2 +741759|35000383133|2 +741737|35000383134|2 +741822|35000383136|2 +741698|35000383137|2 +741725|35000383138|2 +741773|35000383139|2 +741733|35000383140|2 +741888|35000383144|2 +741894|35000383146|2 +741927|35000383148|2 +741954|35000383150|2 +742006|35000383153|2 +741992|35000383154|2 +742005|35000383155|2 +742014|35000383156|2 +742021|35000383158|2 +742041|35000383160|2 +742142|35000383162|2 +742234|35000383164|4 +742178|35000383165|2 +742254|35000383167|2 +742204|35000383169|2 +742222|35000383173|2 +742270|35000383174|2 +742268|35000383175|2 +742266|35000383176|2 +742291|35000383177|2 +742294|35000383179|2 +742310|35000383180|2 +742301|35000383181|2 +742292|35000383182|2 +742305|35000383183|2 +742420|35000383189|2 +742416|35000383191|2 +1141382|35000383192|2 +742345|35000383193|2 +742398|35000383198|2 +742444|35000383199|2 +742435|35000383200|2 +742430|35000383201|2 +742421|35000383202|2 +742538|35000383205|2 +742539|35000383207|2 +742572|35000383208|2 +742528|35000383211|2 +742602|35000383212|2 +742603|35000383215|2 +742630|35000383216|2 +742628|35000383217|2 +742660|35000383218|2 +742635|35000383219|2 +742706|35000383220|2 +742705|35000383221|2 +742702|35000383222|2 +742699|35000383223|2 +742707|35000383224|2 +742700|35000383225|2 +742703|35000383226|2 +742738|35000383228|2 +742741|35000383229|2 +742735|35000383230|2 +742733|35000383232|2 +742742|35000383233|2 +742731|35000383234|2 +742736|35000383235|2 +742904|35000383239|2 +742888|35000383242|2 +742852|35000383243|2 +742850|35000383244|2 +742947|35000383247|2 +742944|35000383249|2 +742952|35000383251|2 +743070|35000383254|2 +743062|35000383255|2 +743119|35000383260|2 +743231|35000383262|2 +888712|35000383263|2 +743254|35000383264|2 +743239|35000383265|2 +743265|35000383266|2 +743266|35000383267|2 +743311|35000383270|2 +743319|35000383271|2 +743379|35000383272|2 +743378|35000383273|2 +743568|35000383277|2 +743695|35000383279|2 +743784|35000383280|2 +743735|35000383282|2 +743856|35000383283|2 +743851|35000383285|2 +605116|35000383286|2 +743873|35000383287|2 +743872|35000383288|2 +744087|35000383292|2 +744168|35000383296|2 +744226|35000383297|2 +744160|35000383298|2 +744248|35000383299|2 +891428|35000383301|2 +744238|35000383304|2 +744191|35000383309|2 +744268|35000383311|2 +744344|35000383313|2 +744360|35000383315|2 +744456|35000383317|2 +744498|35000383324|2 +744469|35000383326|2 +744470|35000383327|2 +744489|35000383329|2 +744539|35000383330|2 +744550|35000383332|2 +744553|35000383333|2 +744581|35000383334|4 +744588|35000383336|2 +744583|35000383337|2 +744592|35000383338|2 +744593|35000383340|2 +744615|35000383342|2 +744649|35000383345|2 +744645|35000383347|2 +744629|35000383348|2 +744780|35000383351|2 +744782|35000383352|2 +745020|35000383356|2 +745084|35000383359|2 +691574|35000383363|2 +745112|35000383364|2 +745186|35000383365|2 +745156|35000383366|2 +745219|35000383367|2 +745214|35000383370|2 +745210|35000383374|2 +745221|35000383375|2 +745209|35000383376|2 +745211|35000383379|2 +745258|35000383381|2 +745278|35000383384|2 +745274|35000383385|2 +745437|35000383391|2 +745460|35000383392|2 +745445|35000383393|2 +745639|35000383399|2 +745654|35000383400|2 +745672|35000383401|2 +745684|35000383402|2 +745679|35000383403|2 +745680|35000383404|2 +745738|35000383405|2 +745696|35000383406|2 +745708|35000383407|2 +745959|35000383410|2 +745987|35000383412|2 +746072|35000383414|2 +746160|35000383417|2 +746191|35000383420|2 +746165|35000383424|2 +746226|35000383425|2 +793977|35000383427|2 +746337|35000383428|2 +746295|35000383433|2 +746433|35000383437|2 +746508|35000383440|2 +746512|35000383441|2 +746536|35000383442|2 +746562|35000383443|2 +746567|35000383446|2 +746580|35000383447|2 +746576|35000383448|2 +746569|35000383449|2 +746740|35000383451|2 +746710|35000383454|2 +746723|35000383456|2 +746669|35000383459|2 +746649|35000383460|2 +746666|35000383462|2 +746754|35000383464|2 +746670|35000383466|2 +746764|35000383471|2 +746778|35000383472|2 +746797|35000383473|2 +746870|35000383477|2 +746931|35000383482|2 +746917|35000383483|2 +746916|35000383484|2 +746992|35000383487|2 +746988|35000383489|2 +746982|35000383492|2 +747049|35000383494|2 +747069|35000383495|2 +747081|35000383496|4 +747057|35000383497|2 +747064|35000383499|2 +747070|35000383500|2 +747014|35000383502|2 +747071|35000383504|2 +891656|35000383506|2 +747094|35000383507|2 +747190|35000383508|2 +747119|35000383509|2 +747215|35000383511|2 +747228|35000383515|2 +747231|35000383516|2 +747223|35000383518|2 +825798|35000383519|4 +747302|35000383520|2 +747282|35000383521|2 +747258|35000383525|2 +747259|35000383526|2 +747330|35000383527|2 +747277|35000383528|2 +747340|35000383529|2 +747353|35000383530|2 +747253|35000383531|2 +747399|35000383539|2 +747400|35000383540|2 +747488|35000383541|2 +747545|35000383543|2 +747546|35000383544|2 +747513|35000383549|2 +747527|35000383552|2 +747529|35000383554|2 +747498|35000383555|2 +747514|35000383557|2 +747528|35000383558|2 +747617|35000383565|2 +747614|35000383566|2 +747716|35000383569|2 +747697|35000383570|2 +747759|35000383574|2 +747745|35000383575|2 +747718|35000383578|2 +747702|35000383580|2 +747772|35000383581|2 +747855|35000383584|2 +747853|35000383585|2 +747849|35000383586|2 +747852|35000383587|2 +747850|35000383588|2 +747875|35000383589|2 +748443|35000383594|2 +749103|35000383596|4 +748081|35000383599|4 +748982|35000383606|2 +749342|35000383612|2 +749558|35000383614|2 +750016|35000383616|2 +750400|35000383618|2 +750246|35000383619|2 +750055|35000383621|2 +750619|35000383629|2 +750747|35000383632|2 +750677|35000383633|2 +750955|35000383635|2 +750678|35000383639|2 +750994|35000383642|2 +751020|35000383645|2 +751069|35000383646|2 +751056|35000383647|2 +752447|35000383648|2 +751619|35000383650|2 +752635|35000383652|2 +751495|35000383653|2 +752188|35000383654|4 +751234|35000383655|2 +751799|35000383657|2 +752716|35000383660|2 +752717|35000383661|2 +752750|35000383663|2 +752723|35000383664|2 +752798|35000383667|2 +752800|35000383668|2 +752801|35000383669|2 +752811|35000383670|2 +752942|35000383677|2 +752984|35000383679|2 +752995|35000383680|2 +753133|35000383684|2 +753067|35000383685|2 +753131|35000383687|2 +753097|35000383688|2 +753137|35000383691|2 +753182|35000383694|2 +753187|35000383695|2 +753179|35000383696|2 +753226|35000383697|2 +753211|35000383700|2 +753290|35000383702|2 +753277|35000383703|2 +753446|35000383709|2 +753489|35000383712|2 +753473|35000383713|2 +753447|35000383715|2 +753521|35000383717|2 +753539|35000383718|2 +753598|35000383721|2 +753602|35000383725|2 +753595|35000383728|2 +753603|35000383729|2 +753835|35000383732|2 +753819|35000383734|2 +753888|35000383735|4 +753804|35000383740|2 +753884|35000383742|4 +753836|35000383743|2 +753975|35000383744|2 +753951|35000383745|2 +753911|35000383747|2 +753707|35000383748|2 +753797|35000383749|2 +753781|35000383750|2 +753805|35000383753|2 +753689|35000383754|2 +753972|35000383755|2 +753976|35000383758|2 +753704|35000383759|2 +753983|35000383763|2 +753902|35000383765|4 +754076|35000383769|2 +754077|35000383771|2 +754200|35000383773|2 +754226|35000383774|2 +754388|35000383777|2 +754211|35000383782|2 +754371|35000383784|2 +754405|35000383785|2 +754201|35000383789|2 +754245|35000383790|2 +754255|35000383792|2 +754456|35000383798|2 +754419|35000383799|2 +754471|35000383800|2 +754433|35000383802|2 +754440|35000383803|2 +754491|35000383804|2 +754452|35000383805|2 +754510|35000383808|2 +754513|35000383809|2 +754512|35000383812|2 +754516|35000383813|2 +754531|35000383814|2 +754541|35000383815|2 +754557|35000383817|2 +754563|35000383818|2 +754579|35000383820|2 +754578|35000383821|2 +754630|35000383823|2 +754645|35000383824|2 +754629|35000383825|2 +754648|35000383827|2 +754735|35000383833|2 +754744|35000383834|2 +754738|35000383835|2 +754736|35000383836|2 +754749|35000383837|2 +754815|35000383839|2 +736893|35000383843|2 +754957|35000383844|2 +754909|35000383846|2 +754966|35000383848|2 +754876|35000383849|2 +754935|35000383850|2 +754889|35000383851|2 +754855|35000383852|2 +754958|35000383853|2 +754890|35000383854|2 +754951|35000383856|2 +754859|35000383857|2 +755011|35000383862|2 +755055|35000383864|2 +755060|35000383866|2 +755065|35000383867|2 +755100|35000383868|2 +755163|35000383870|2 +755164|35000383872|2 +755166|35000383873|2 +755168|35000383874|2 +804772|35000383878|2 +755323|35000383879|2 +755607|35000383880|2 +755626|35000383882|2 +755577|35000383883|2 +755480|35000383884|2 +755599|35000383886|2 +755618|35000383887|2 +755613|35000383888|2 +755494|35000383889|2 +755495|35000383891|2 +755574|35000383892|2 +755591|35000383893|2 +755487|35000383894|2 +755458|35000383895|2 +755650|35000383898|2 +755728|35000383902|2 +755729|35000383903|2 +755775|35000383904|2 +755865|35000383906|2 +755876|35000383907|2 +755877|35000383908|2 +755875|35000383909|2 +755936|35000383914|2 +755927|35000383915|2 +756006|35000383916|2 +756010|35000383918|2 +755951|35000383920|2 +756118|35000383923|2 +756152|35000383925|2 +756198|35000383926|2 +756192|35000383927|2 +756214|35000383928|2 +756249|35000383931|2 +756335|35000383933|2 +756344|35000383934|2 +756345|35000383935|2 +756405|35000383937|2 +756542|35000383941|2 +756482|35000383943|2 +756524|35000383945|2 +756638|35000383946|2 +756644|35000383948|2 +756782|35000383950|2 +756740|35000383951|2 +756713|35000383952|2 +756733|35000383954|2 +756683|35000383955|2 +756731|35000383957|2 +756754|35000383958|2 +756759|35000383960|2 +756721|35000383964|2 +756669|35000383965|2 +756735|35000383966|2 +756716|35000383967|2 +756768|35000383968|2 +756781|35000383969|2 +756818|35000383974|2 +756837|35000383976|2 +756833|35000383977|2 +757004|35000383986|2 +756971|35000383987|2 +757167|35000383991|2 +757251|35000383994|2 +757436|35000383999|2 +757444|35000384001|2 +757449|35000384003|2 +757451|35000384004|2 +757438|35000384005|2 +757521|35000384006|2 +757512|35000384007|2 +757600|35000384008|2 +757578|35000384009|2 +757605|35000384011|2 +757577|35000384013|2 +757647|35000384014|2 +757551|35000384015|2 +757562|35000384016|2 +757557|35000384017|2 +757634|35000384018|2 +757653|35000384020|2 +757785|35000384025|2 +757787|35000384026|2 +757806|35000384027|2 +757844|35000384029|2 +758199|35000384031|2 +758068|35000384032|2 +758114|35000384033|2 +758183|35000384034|2 +758115|35000384035|2 +758178|35000384037|2 +757966|35000384038|2 +757945|35000384039|2 +757932|35000384040|2 +757866|35000384046|2 +757970|35000384047|2 +530780|35000384051|2 +757971|35000384054|2 +757837|35000384056|2 +758043|35000384057|2 +758116|35000384059|2 +757851|35000384061|2 +758128|35000384062|2 +757948|35000384064|2 +841004|35000384066|2 +757865|35000384070|2 +758179|35000384071|2 +758298|35000384074|2 +758317|35000384076|2 +758313|35000384077|2 +758351|35000384079|2 +758452|35000384081|2 +758653|35000384089|2 +758692|35000384091|2 +758729|35000384094|2 +758645|35000384097|2 +758727|35000384098|2 +758662|35000384099|2 +758718|35000384100|2 +758728|35000384101|2 +523743|35000384105|2 +758679|35000384106|2 +758670|35000384107|2 +758731|35000384108|2 +758768|35000384111|2 +521797|35000384112|2 +758793|35000384113|2 +758788|35000384114|2 +758784|35000384115|2 +758804|35000384116|2 +758805|35000384118|2 +758802|35000384119|2 +759317|35000384121|2 +759185|35000384124|2 +759318|35000384125|2 +759036|35000384126|2 +758978|35000384128|2 +759319|35000384130|2 +758919|35000384131|2 +759248|35000384133|2 +759301|35000384137|2 +758820|35000384138|2 +759155|35000384139|2 +758848|35000384142|2 +759298|35000384144|2 +759268|35000384145|2 +758933|35000384146|4 +759193|35000384147|2 +759106|35000384148|2 +759320|35000384149|2 +759133|35000384152|2 +759134|35000384153|2 +759363|35000384155|2 +758846|35000384156|2 +759002|35000384158|2 +758873|35000384159|2 +759321|35000384160|2 +758959|35000384162|2 +759226|35000384164|2 +758896|35000384165|2 +759135|35000384167|2 +758888|35000384170|4 +759322|35000384173|2 +758984|35000384174|2 +758974|35000384175|2 +759400|35000384177|2 +759463|35000384181|2 +759534|35000384188|2 +759540|35000384191|2 +759580|35000384193|2 +759602|35000384197|2 +759603|35000384199|2 +759715|35000384200|2 +759686|35000384201|2 +759716|35000384202|2 +759642|35000384203|2 +759722|35000384205|2 +759623|35000384207|2 +759628|35000384210|2 +759693|35000384211|2 +759654|35000384215|2 +759605|35000384216|2 +759672|35000384218|2 +759705|35000384221|2 +759624|35000384222|2 +759637|35000384223|2 +759731|35000384224|2 +759891|35000384228|4 +760011|35000384230|2 +760145|35000384233|2 +759807|35000384239|2 +759808|35000384242|2 +760030|35000384243|2 +760205|35000384247|2 +759894|35000384251|2 +760113|35000384257|2 +760098|35000384259|2 +760269|35000384263|2 +760274|35000384264|2 +760270|35000384266|2 +760338|35000384271|2 +760319|35000384274|2 +760355|35000384278|2 +760314|35000384279|2 +832635|35000384280|4 +760904|35000384281|2 +760634|35000384282|2 +760466|35000384283|2 +760621|35000384284|2 +760657|35000384292|2 +761084|35000384294|2 +760754|35000384295|2 +760447|35000384296|2 +760681|35000384299|4 +760934|35000384305|2 +760993|35000384309|2 +760963|35000384310|2 +760883|35000384312|2 +760572|35000384315|2 +760658|35000384316|2 +760743|35000384317|4 +760408|35000384318|2 +761056|35000384319|2 +761068|35000384320|2 +760954|35000384322|2 +760691|35000384323|2 +760750|35000384324|2 +577122|35000384325|2 +760884|35000384326|2 +760810|35000384329|2 +761048|35000384331|2 +760576|35000384334|2 +761125|35000384339|2 +760470|35000384341|2 +760955|35000384345|2 +760905|35000384347|2 +760826|35000384350|2 +761085|35000384354|2 +760409|35000384355|2 +760558|35000384356|2 +760872|35000384359|2 +761147|35000384361|2 +761211|35000384362|2 +761212|35000384363|2 +761240|35000384366|2 +761280|35000384367|2 +761286|35000384371|2 +761284|35000384374|2 +761350|35000384376|2 +761386|35000384381|2 +761376|35000384382|2 +761394|35000384385|2 +761414|35000384386|2 +761411|35000384387|2 +761405|35000384388|2 +761409|35000384389|2 +761416|35000384390|2 +761418|35000384391|2 +761455|35000384393|2 +761438|35000384394|2 +761473|35000384395|2 +761516|35000384396|2 +761487|35000384397|2 +761448|35000384398|2 +761449|35000384400|2 +761488|35000384403|2 +761507|35000384404|2 +761498|35000384405|2 +761554|35000384406|2 +761609|35000384414|2 +761602|35000384415|2 +761616|35000384416|2 +761614|35000384417|2 +761670|35000384418|2 +761691|35000384421|2 +761645|35000384422|2 +761840|35000384426|2 +761860|35000384428|2 +761841|35000384429|2 +761816|35000384430|2 +761834|35000384434|2 +761836|35000384436|2 +761748|35000384437|2 +761861|35000384438|2 +761842|35000384440|2 +702188|35000384443|2 +761942|35000384444|2 +761937|35000384449|2 +765627|35000384450|2 +761916|35000384451|2 +761922|35000384454|2 +761911|35000384456|2 +761928|35000384457|2 +761917|35000384458|2 +761923|35000384460|2 +761945|35000384461|2 +761984|35000384462|2 +761985|35000384463|2 +762039|35000384465|2 +762032|35000384466|2 +762043|35000384469|2 +762044|35000384470|2 +762055|35000384474|2 +762079|35000384475|2 +762064|35000384476|2 +762224|35000384478|2 +659568|35000384479|2 +762271|35000384480|2 +762290|35000384481|4 +719334|35000384483|2 +762202|35000384485|2 +762311|35000384489|2 +762317|35000384490|2 +762314|35000384491|2 +762315|35000384493|2 +762342|35000384494|2 +762332|35000384495|2 +762385|35000384497|2 +762387|35000384498|2 +762388|35000384499|2 +762411|35000384501|2 +762405|35000384502|2 +924182|35000384507|2 +762704|35000384512|2 +762634|35000384519|4 +762612|35000384521|2 +762618|35000384522|2 +762644|35000384523|2 +762937|35000384524|2 +762699|35000384525|2 +762944|35000384527|2 +762858|35000384530|2 +762917|35000384531|2 +762653|35000384532|2 +762757|35000384533|2 +762960|35000384539|2 +708521|35000384540|2 +762978|35000384542|2 +762968|35000384543|2 +763023|35000384545|2 +763075|35000384546|2 +763059|35000384547|2 +763094|35000384548|2 +763045|35000384549|2 +763081|35000384550|4 +763191|35000384554|2 +763236|35000384560|2 +763308|35000384561|2 +763339|35000384562|2 +763340|35000384563|2 +763377|35000384564|2 +763352|35000384565|2 +763381|35000384566|4 +763362|35000384568|2 +763511|35000384575|2 +763433|35000384577|2 +763483|35000384578|2 +763460|35000384580|2 +763471|35000384581|2 +763427|35000384582|2 +763472|35000384583|2 +763409|35000384584|2 +763410|35000384585|2 +763438|35000384586|2 +763519|35000384587|2 +763528|35000384588|2 +763536|35000384589|2 +763549|35000384590|2 +763562|35000384591|2 +763597|35000384592|2 +763605|35000384593|2 +763612|35000384595|2 +763677|35000384597|2 +763657|35000384598|2 +546470|35000384601|2 +763658|35000384604|2 +763691|35000384606|2 +763787|35000384607|2 +763788|35000384608|2 +763795|35000384609|2 +763905|35000384616|2 +763901|35000384617|2 +763899|35000384618|2 +763923|35000384623|2 +763939|35000384625|2 +763948|35000384626|2 +763938|35000384630|2 +763979|35000384631|2 +763969|35000384632|2 +763974|35000384633|2 +763967|35000384634|2 +763977|35000384635|2 +763968|35000384636|2 +763971|35000384637|2 +763973|35000384639|2 +763963|35000384640|2 +763986|35000384641|2 +763987|35000384642|2 +763989|35000384643|2 +764028|35000384648|2 +764175|35000384649|2 +764140|35000384652|2 +764165|35000384653|2 +764129|35000384655|2 +764166|35000384656|2 +764195|35000384659|2 +764190|35000384660|2 +764289|35000384662|2 +764231|35000384663|2 +764242|35000384665|2 +764232|35000384666|2 +764236|35000384667|2 +764254|35000384668|2 +764290|35000384671|2 +764310|35000384673|2 +764514|35000384678|2 +764484|35000384679|2 +764489|35000384680|2 +764633|35000384686|2 +764815|35000384689|2 +764844|35000384691|2 +764843|35000384692|2 +764852|35000384693|2 +764849|35000384694|2 +764925|35000384697|2 +764944|35000384698|2 +764977|35000384700|2 +764978|35000384701|2 +764971|35000384702|2 +764979|35000384706|2 +764974|35000384707|2 +765041|35000384708|2 +765034|35000384709|2 +765061|35000384710|2 +765065|35000384711|2 +765087|35000384712|2 +765084|35000384713|2 +765134|35000384714|2 +765204|35000384716|2 +765202|35000384717|2 +765276|35000384718|2 +765239|35000384719|2 +765309|35000384721|2 +765305|35000384722|2 +765334|35000384724|2 +765415|35000384725|2 +765416|35000384726|2 +765440|35000384727|2 +765437|35000384728|2 +765486|35000384733|2 +765546|35000384736|2 +765612|35000384742|2 +765769|35000384744|2 +765736|35000384745|2 +765832|35000384746|2 +766072|35000384747|2 +766069|35000384748|2 +766076|35000384749|2 +766236|35000384751|2 +647078|35000384754|2 +766196|35000384756|2 +766105|35000384757|2 +766109|35000384758|2 +766142|35000384759|2 +766282|35000384760|2 +766287|35000384762|2 +766286|35000384763|2 +766344|35000384764|2 +766345|35000384766|2 +766360|35000384767|2 +477450|35000384768|2 +766393|35000384770|2 +766395|35000384771|2 +766411|35000384774|2 +766438|35000384781|2 +766592|35000384785|2 +766581|35000384788|2 +766599|35000384789|2 +766601|35000384790|2 +766789|35000384800|2 +766840|35000384801|2 +766841|35000384803|2 +766816|35000384804|2 +766817|35000384805|2 +766875|35000384808|2 +766952|35000384814|2 +767179|35000384815|2 +767169|35000384816|2 +767196|35000384817|2 +767195|35000384818|2 +603874|35000384820|2 +767276|35000384822|2 +767438|35000384825|2 +767440|35000384826|2 +767466|35000384827|2 +767470|35000384828|2 +767472|35000384831|2 +767487|35000384832|2 +767546|35000384834|2 +767529|35000384835|2 +767593|35000384838|2 +767677|35000384840|2 +767705|35000384842|2 +767735|35000384844|2 +675936|35000384845|2 +767732|35000384846|2 +767756|35000384847|2 +767755|35000384848|2 +767856|35000384850|2 +767853|35000384852|2 +744870|35000384853|2 +767826|35000384854|2 +767827|35000384855|2 +767813|35000384857|2 +767850|35000384858|2 +767876|35000384861|2 +767838|35000384866|2 +767869|35000384867|2 +767854|35000384869|2 +897808|35000384870|2 +767950|35000384873|2 +768060|35000384878|2 +768262|35000384879|2 +768108|35000384880|2 +768398|35000384882|2 +768370|35000384884|2 +768378|35000384885|2 +768382|35000384887|2 +768404|35000384888|2 +768473|35000384898|2 +768478|35000384899|2 +768479|35000384900|2 +768597|35000384902|2 +768835|35000384903|2 +768973|35000384905|2 +768972|35000384906|2 +769169|35000384909|2 +769179|35000384911|2 +769175|35000384912|2 +769155|35000384913|4 +769248|35000384914|2 +769347|35000384916|2 +769331|35000384917|2 +769339|35000384918|2 +769357|35000384920|2 +769355|35000384922|2 +769367|35000384926|2 +769380|35000384927|2 +769381|35000384928|2 +769403|35000384931|2 +769443|35000384935|2 +769446|35000384936|2 +769447|35000384938|2 +769503|35000384939|2 +769523|35000384941|2 +769450|35000384944|2 +769461|35000384945|2 +769532|35000384946|2 +769560|35000384952|2 +769564|35000384953|2 +769563|35000384957|2 +769566|35000384959|2 +769561|35000384960|2 +769570|35000384962|2 +769562|35000384963|2 +769726|35000384967|2 +769729|35000384968|2 +769727|35000384969|2 +769730|35000384970|2 +769742|35000384972|2 +769731|35000384973|2 +769732|35000384976|2 +769750|35000384979|2 +769764|35000384981|2 +769744|35000384982|2 +769739|35000384983|2 +769743|35000384984|2 +769767|35000384985|2 +696514|35000384988|2 +769762|35000384989|2 +769798|35000384990|2 +769853|35000384993|2 +769867|35000384998|2 +770005|35000385001|2 +769955|35000385005|2 +613362|35000385007|2 +867630|35000385008|2 +770053|35000385009|2 +770089|35000385010|2 +770087|35000385012|2 +770097|35000385014|2 +770103|35000385015|2 +770123|35000385018|2 +770113|35000385019|2 +770166|35000385022|2 +770196|35000385023|2 +770197|35000385024|2 +770167|35000385025|2 +770153|35000385026|2 +770220|35000385027|2 +770214|35000385028|2 +770256|35000385029|2 +770285|35000385030|2 +702382|35000385033|2 +770406|35000385035|2 +770405|35000385036|2 +770452|35000385038|2 +770518|35000385041|2 +770519|35000385043|2 +766788|35000385044|2 +770490|35000385045|2 +770494|35000385050|2 +770483|35000385051|2 +770541|35000385052|2 +770545|35000385053|2 +770567|35000385054|2 +770563|35000385055|2 +770599|35000385057|2 +770582|35000385058|2 +770600|35000385059|2 +770606|35000385060|2 +770598|35000385061|2 +770577|35000385062|2 +770602|35000385063|2 +770609|35000385065|2 +770625|35000385066|2 +770626|35000385067|2 +770662|35000385068|2 +770694|35000385070|2 +770695|35000385072|2 +770693|35000385073|2 +770696|35000385074|2 +770698|35000385075|2 +770773|35000385077|2 +770782|35000385079|2 +770783|35000385080|2 +770811|35000385081|2 +771027|35000385085|2 +771059|35000385088|2 +771000|35000385089|2 +771018|35000385091|2 +771043|35000385092|2 +771001|35000385093|2 +771011|35000385094|4 +771025|35000385095|2 +771047|35000385096|2 +771044|35000385098|2 +771029|35000385099|2 +771056|35000385100|2 +771076|35000385101|2 +771208|35000385102|2 +771252|35000385103|2 +771297|35000385104|2 +771469|35000385105|2 +771124|35000385106|2 +771209|35000385109|2 +771169|35000385110|2 +771785|35000385117|4 +771307|35000385119|2 +771948|35000385120|2 +771838|35000385122|2 +771811|35000385126|2 +771774|35000385132|2 +771639|35000385134|2 +771969|35000385136|4 +771440|35000385137|2 +772047|35000385138|2 +695232|35000385139|2 +771272|35000385140|2 +771450|35000385143|2 +771180|35000385145|2 +461451|35000385147|2 +771451|35000385150|2 +772073|35000385158|2 +772123|35000385162|2 +772107|35000385163|2 +772156|35000385164|2 +772165|35000385165|2 +772170|35000385166|2 +772171|35000385167|2 +772188|35000385170|2 +772216|35000385171|2 +772223|35000385172|2 +772234|35000385173|2 +772242|35000385174|2 +772294|35000385178|2 +772344|35000385180|2 +772351|35000385181|2 +772355|35000385182|2 +772368|35000385183|2 +772356|35000385185|2 +528737|35000385186|2 +772371|35000385187|2 +772373|35000385190|2 +637880|35000385192|2 +772395|35000385195|2 +772477|35000385200|2 +772484|35000385202|2 +772486|35000385203|2 +772518|35000385205|2 +772537|35000385209|2 +772542|35000385210|2 +772536|35000385211|2 +772538|35000385213|2 +772571|35000385216|2 +772552|35000385217|2 +772559|35000385218|2 +772608|35000385219|2 +772624|35000385221|2 +772639|35000385226|2 +772707|35000385230|2 +772714|35000385231|2 +772709|35000385232|2 +772718|35000385233|2 +772716|35000385234|2 +772756|35000385241|2 +772895|35000385242|2 +772920|35000385243|2 +772908|35000385244|2 +772883|35000385247|2 +772822|35000385251|2 +772910|35000385252|4 +773163|35000385257|2 +773024|35000385259|2 +773256|35000385267|2 +773057|35000385271|2 +773134|35000385272|2 +773162|35000385274|2 +773257|35000385275|2 +773188|35000385279|2 +773068|35000385280|2 +773167|35000385281|2 +773264|35000385282|2 +773265|35000385286|2 +773333|35000385288|2 +773336|35000385289|2 +773310|35000385290|2 +773308|35000385291|2 +773320|35000385292|2 +773366|35000385293|2 +773427|35000385296|2 +773442|35000385300|2 +773445|35000385301|2 +773450|35000385302|2 +773585|35000385305|2 +773508|35000385306|2 +773636|35000385308|2 +773639|35000385309|2 +773586|35000385311|2 +773517|35000385312|2 +773518|35000385313|2 +773703|35000385314|2 +773786|35000385315|2 +773788|35000385316|2 +773841|35000385318|2 +773873|35000385320|2 +773922|35000385322|2 +773917|35000385323|2 +773925|35000385325|2 +773895|35000385326|2 +773980|35000385327|2 +773951|35000385332|2 +774009|35000385334|2 +774152|35000385338|2 +774142|35000385339|2 +774140|35000385340|2 +774155|35000385342|2 +774127|35000385343|2 +774237|35000385346|2 +774260|35000385348|2 +774274|35000385349|2 +774298|35000385350|2 +774300|35000385352|2 +774290|35000385353|2 +774288|35000385354|2 +774289|35000385356|2 +774496|35000385357|2 +774492|35000385358|2 +774438|35000385359|2 +774514|35000385360|2 +774460|35000385361|4 +774371|35000385363|2 +643092|35000385364|2 +774422|35000385365|2 +774544|35000385367|2 +774552|35000385368|2 +774372|35000385369|2 +774497|35000385371|2 +774435|35000385373|2 +774471|35000385374|2 +774373|35000385376|2 +774557|35000385379|2 +774527|35000385380|2 +774611|35000385386|2 +774585|35000385387|2 +774706|35000385388|2 +774692|35000385389|2 +774724|35000385391|2 +774671|35000385392|2 +774713|35000385394|2 +774691|35000385397|2 +774714|35000385400|2 +774804|35000385404|2 +774810|35000385405|2 +774813|35000385407|2 +774811|35000385410|2 +774796|35000385411|2 +774917|35000385414|2 +774915|35000385415|2 +774965|35000385416|2 +774924|35000385417|2 +774966|35000385418|2 +774941|35000385420|2 +774918|35000385421|2 +774936|35000385427|2 +774977|35000385428|2 +774957|35000385429|2 +774916|35000385432|2 +774949|35000385433|2 +774969|35000385434|2 +775004|35000385438|2 +775041|35000385440|2 +775075|35000385441|2 +775076|35000385443|2 +775130|35000385445|2 +775241|35000385447|2 +775182|35000385449|2 +775228|35000385451|2 +775252|35000385454|2 +775245|35000385455|2 +775444|35000385458|2 +775519|35000385459|2 +775544|35000385460|2 +775523|35000385461|2 +775538|35000385462|2 +775297|35000385464|2 +775445|35000385465|2 +775564|35000385469|2 +775565|35000385471|2 +775592|35000385473|2 +775593|35000385474|2 +775662|35000385475|2 +775663|35000385476|2 +775762|35000385477|2 +775868|35000385481|2 +775823|35000385483|2 +775899|35000385485|2 +775898|35000385486|2 +776037|35000385492|2 +776093|35000385493|2 +776094|35000385495|2 +776048|35000385496|2 +776059|35000385497|2 +775955|35000385499|2 +775970|35000385502|2 +776071|35000385503|2 +776010|35000385504|2 +776126|35000385506|2 +776191|35000385507|2 +776189|35000385510|2 +776213|35000385511|2 +776217|35000385512|2 +776224|35000385513|2 +776262|35000385514|2 +776263|35000385515|2 +776404|35000385522|2 +776455|35000385524|2 +776446|35000385525|2 +776441|35000385526|2 +776463|35000385530|2 +776462|35000385531|2 +776480|35000385532|2 +776601|35000385537|2 +776604|35000385538|2 +776609|35000385539|2 +776607|35000385540|2 +776618|35000385542|2 +776620|35000385543|2 +776757|35000385545|2 +776780|35000385550|2 +776808|35000385551|2 +776928|35000385552|2 +776869|35000385554|2 +776989|35000385555|2 +777015|35000385557|2 +777098|35000385561|2 +777118|35000385563|2 +543213|35000385566|2 +777168|35000385567|2 +777448|35000385568|2 +777329|35000385569|2 +777301|35000385570|2 +777545|35000385576|2 +777190|35000385579|2 +777480|35000385580|2 +777571|35000385581|2 +777476|35000385585|2 +777330|35000385586|2 +777570|35000385588|2 +777549|35000385590|2 +777335|35000385591|2 +777169|35000385592|2 +777667|35000385595|4 +777698|35000385597|2 +777315|35000385598|2 +777629|35000385601|2 +777544|35000385602|2 +777207|35000385605|2 +777259|35000385606|2 +777271|35000385610|2 +777546|35000385615|2 +777224|35000385616|2 +777413|35000385617|2 +777234|35000385618|2 +777455|35000385620|2 +777242|35000385621|2 +777945|35000385624|2 +778041|35000385625|2 +778498|35000385626|2 +778015|35000385627|2 +778342|35000385628|2 +777771|35000385630|4 +777833|35000385636|2 +778408|35000385639|2 +778016|35000385640|2 +778178|35000385642|2 +777810|35000385643|4 +777790|35000385645|2 +777944|35000385646|2 +777980|35000385647|2 +777839|35000385652|2 +778202|35000385653|2 +778042|35000385656|2 +778123|35000385657|2 +777761|35000385659|4 +778539|35000385664|2 +778923|35000385667|2 +778862|35000385668|2 +778902|35000385669|2 +778781|35000385672|2 +778924|35000385673|2 +778593|35000385679|2 +893597|35000385681|2 +778773|35000385682|2 +778695|35000385683|2 +778826|35000385685|2 +778605|35000385686|2 +778659|35000385692|2 +778606|35000385694|2 +778954|35000385696|2 +778958|35000385697|2 +778957|35000385698|2 +778959|35000385700|2 +778984|35000385702|2 +778985|35000385703|2 +779007|35000385709|2 +779019|35000385714|2 +779020|35000385715|2 +779219|35000385717|2 +779091|35000385718|2 +779202|35000385719|2 +779087|35000385723|2 +779309|35000385724|2 +779229|35000385725|2 +779319|35000385726|2 +779293|35000385728|2 +779083|35000385729|2 +779232|35000385732|2 +779266|35000385733|2 +779194|35000385735|2 +779428|35000385739|2 +779429|35000385740|2 +779448|35000385744|2 +779453|35000385745|2 +779449|35000385746|2 +779490|35000385748|2 +779570|35000385750|2 +779491|35000385752|2 +779492|35000385754|2 +779586|35000385757|2 +779557|35000385758|2 +779484|35000385760|2 +779471|35000385761|2 +779691|35000385764|2 +779706|35000385765|2 +779621|35000385768|2 +779679|35000385769|2 +779707|35000385770|2 +779665|35000385773|2 +779676|35000385775|2 +779680|35000385776|2 +779708|35000385777|2 +779663|35000385782|2 +779750|35000385783|2 +779726|35000385784|2 +779879|35000385787|2 +779890|35000385788|2 +779925|35000385790|2 +779923|35000385792|2 +780121|35000385795|2 +779987|35000385796|2 +780105|35000385798|2 +780137|35000385799|2 +780174|35000385801|2 +780032|35000385803|2 +780110|35000385804|2 +780085|35000385805|2 +779993|35000385806|2 +693513|35000385808|2 +780138|35000385809|2 +780111|35000385810|2 +780224|35000385813|2 +780267|35000385815|2 +780228|35000385816|2 +780488|35000385820|2 +780498|35000385821|2 +780475|35000385824|2 +780527|35000385825|2 +780499|35000385827|2 +780494|35000385829|2 +780508|35000385830|2 +780509|35000385831|2 +780621|35000385834|2 +780649|35000385839|2 +780713|35000385840|4 +780650|35000385841|2 +780668|35000385843|2 +780651|35000385847|2 +780697|35000385849|2 +780755|35000385852|2 +780729|35000385854|2 +780813|35000385859|2 +780833|35000385863|2 +780907|35000385866|2 +780871|35000385869|2 +780872|35000385870|2 +780975|35000385873|2 +780951|35000385874|2 +780974|35000385875|2 +781082|35000385876|2 +781013|35000385877|2 +781104|35000385878|2 +781078|35000385879|2 +780987|35000385880|2 +781085|35000385882|2 +781043|35000385884|2 +781039|35000385885|2 +781044|35000385886|2 +781111|35000385888|4 +780996|35000385890|2 +781149|35000385892|2 +781162|35000385894|2 +781174|35000385895|2 +781181|35000385896|2 +781178|35000385897|2 +781182|35000385898|2 +842111|35000385903|2 +781282|35000385905|2 +781290|35000385906|2 +781280|35000385907|2 +781381|35000385909|2 +781346|35000385910|2 +781404|35000385911|2 +781400|35000385912|2 +781452|35000385914|2 +781491|35000385915|2 +781520|35000385917|2 +781557|35000385918|2 +781525|35000385919|2 +781554|35000385920|2 +570571|35000385921|2 +781532|35000385922|2 +807687|35000385924|2 +781567|35000385925|2 +781577|35000385926|2 +781585|35000385927|2 +781907|35000385931|2 +781683|35000385933|2 +781859|35000385938|2 +781918|35000385939|2 +781860|35000385940|2 +781839|35000385941|2 +781886|35000385944|2 +781680|35000385946|2 +781760|35000385948|2 +781761|35000385949|2 +781969|35000385951|2 +781945|35000385952|2 +781960|35000385956|2 +781958|35000385957|2 +781956|35000385958|2 +782046|35000385960|2 +782076|35000385965|2 +782070|35000385966|2 +782100|35000385968|2 +782155|35000385970|2 +782115|35000385971|2 +782134|35000385972|2 +782209|35000385973|2 +782286|35000385979|2 +782293|35000385980|2 +782292|35000385982|2 +782302|35000385986|2 +782629|35000385987|2 +782359|35000385988|2 +782337|35000385989|2 +782579|35000385991|2 +782769|35000385996|2 +782757|35000386001|2 +782376|35000386002|2 +782507|35000386004|2 +782770|35000386006|2 +782472|35000386008|2 +782490|35000386010|2 +782350|35000386011|2 +782544|35000386012|2 +782891|35000386017|2 +782870|35000386019|2 +782896|35000386020|2 +783227|35000386024|2 +783160|35000386025|4 +783306|35000386027|2 +783294|35000386028|2 +783295|35000386029|2 +873198|35000386035|2 +783409|35000386037|2 +783413|35000386038|2 +783411|35000386039|2 +783415|35000386040|2 +783404|35000386041|2 +783469|35000386044|2 +783509|35000386046|2 +783486|35000386048|2 +783535|35000386049|2 +783540|35000386051|2 +783658|35000386054|2 +783702|35000386055|2 +783729|35000386057|2 +783727|35000386064|2 +783799|35000386065|2 +783780|35000386068|2 +783646|35000386069|2 +783762|35000386070|4 +773889|35000386071|2 +783773|35000386076|2 +554536|35000386077|2 +783781|35000386080|2 +783798|35000386085|2 +783815|35000386087|2 +783987|35000386091|2 +783885|35000386092|2 +783914|35000386093|2 +783924|35000386094|2 +630542|35000386095|2 +783881|35000386096|2 +783946|35000386097|2 +783969|35000386100|2 +784034|35000386102|2 +784016|35000386105|2 +784157|35000386108|2 +784209|35000386110|2 +784314|35000386114|2 +784311|35000386115|2 +784361|35000386119|2 +784490|35000386121|2 +784578|35000386123|2 +784621|35000386124|2 +784332|35000386125|2 +784354|35000386128|2 +784647|35000386129|2 +784492|35000386131|2 +784416|35000386133|2 +784616|35000386134|2 +784579|35000386135|2 +784648|35000386136|2 +784671|35000386137|2 +784710|35000386138|2 +784708|35000386139|2 +784712|35000386140|2 +784726|35000386141|2 +784727|35000386142|2 +784771|35000386143|2 +784779|35000386144|2 +784772|35000386146|2 +784794|35000386148|2 +784851|35000386150|2 +784849|35000386151|2 +784852|35000386152|2 +732396|35000386153|2 +784854|35000386154|2 +784888|35000386155|2 +784900|35000386160|2 +784897|35000386161|2 +784979|35000386163|2 +784977|35000386164|2 +785015|35000386170|2 +785021|35000386174|2 +473303|35000386175|2 +785108|35000386176|2 +785153|35000386181|2 +785154|35000386182|2 +785162|35000386185|2 +785168|35000386186|2 +785175|35000386187|2 +785173|35000386188|2 +785217|35000386191|2 +785348|35000386195|2 +785389|35000386196|2 +785392|35000386197|2 +785390|35000386198|2 +785423|35000386199|2 +785416|35000386200|2 +785413|35000386201|2 +785407|35000386202|2 +785411|35000386206|2 +785631|35000386216|2 +785649|35000386220|2 +785662|35000386222|2 +785663|35000386223|2 +785769|35000386225|2 +785773|35000386226|2 +785830|35000386230|2 +785832|35000386232|2 +785821|35000386233|2 +785878|35000386237|2 +786080|35000386241|2 +786090|35000386243|2 +689370|35000386246|2 +786364|35000386247|2 +786175|35000386248|2 +786268|35000386249|2 +786328|35000386250|2 +786212|35000386251|2 +786258|35000386256|2 +786382|35000386257|2 +786383|35000386259|2 +786163|35000386262|2 +786367|35000386263|2 +786219|35000386264|2 +786213|35000386265|2 +786259|35000386269|2 +786463|35000386271|2 +786464|35000386272|2 +786501|35000386273|2 +786482|35000386274|2 +786493|35000386275|2 +786470|35000386276|2 +786465|35000386277|2 +786495|35000386278|2 +786471|35000386279|2 +786513|35000386280|2 +786526|35000386281|2 +786527|35000386282|2 +786534|35000386283|2 +786665|35000386289|2 +786684|35000386290|2 +786680|35000386291|2 +786731|35000386299|2 +786807|35000386300|2 +786863|35000386303|2 +786859|35000386304|2 +786860|35000386306|2 +786901|35000386307|2 +786954|35000386309|2 +786936|35000386311|2 +786932|35000386312|2 +787219|35000386314|2 +787082|35000386317|2 +787203|35000386318|2 +787238|35000386320|2 +787236|35000386322|2 +787233|35000386327|2 +787178|35000386330|2 +787239|35000386331|2 +787250|35000386332|2 +787241|35000386333|2 +787140|35000386334|2 +787296|35000386335|2 +787234|35000386336|2 +787275|35000386337|2 +787085|35000386339|2 +787172|35000386340|2 +787355|35000386342|2 +787353|35000386343|2 +787354|35000386344|2 +787396|35000386346|2 +787414|35000386347|2 +787432|35000386348|2 +787431|35000386349|2 +787445|35000386350|2 +787479|35000386353|2 +787472|35000386354|2 +787615|35000386359|2 +787647|35000386361|2 +787753|35000386365|2 +788703|35000386371|2 +788629|35000386373|2 +789387|35000386378|2 +782161|35000386383|4 +789442|35000386384|2 +789479|35000386386|2 +789580|35000386387|2 +789581|35000386390|2 +789579|35000386391|2 +789680|35000386392|2 +789828|35000386393|2 +789886|35000386399|2 +789888|35000386400|2 +789891|35000386401|2 +789924|35000386403|2 +789937|35000386405|2 +789922|35000386407|2 +790076|35000386409|2 +790096|35000386410|2 +623389|35000386411|2 +790125|35000386412|2 +790231|35000386414|2 +790221|35000386415|2 +790264|35000386416|2 +790265|35000386417|2 +790314|35000386419|2 +790491|35000386425|2 +790555|35000386427|2 +790565|35000386428|2 +790543|35000386430|2 +790671|35000386437|2 +790705|35000386440|2 +790821|35000386441|2 +680651|35000386445|2 +790869|35000386446|2 +790839|35000386447|2 +790901|35000386450|2 +790904|35000386451|2 +790857|35000386452|2 +528767|35000386453|2 +790813|35000386456|2 +790838|35000386459|2 +790902|35000386461|2 +790823|35000386464|2 +790852|35000386465|2 +790842|35000386466|2 +790864|35000386467|2 +790836|35000386468|2 +790831|35000386470|2 +790840|35000386471|2 +790835|35000386472|2 +790871|35000386473|2 +790903|35000386474|2 +790837|35000386476|2 +790978|35000386479|2 +790938|35000386480|2 +791019|35000386481|2 +791094|35000386490|2 +790979|35000386491|2 +791228|35000386492|2 +791396|35000386496|2 +791389|35000386497|2 +791487|35000386498|2 +791428|35000386501|2 +791340|35000386505|2 +791446|35000386506|2 +774945|35000386507|2 +791537|35000386508|2 +791561|35000386509|2 +791313|35000386511|2 +606155|35000386512|2 +791513|35000386514|4 +791448|35000386515|2 +791519|35000386516|2 +791367|35000386518|2 +791484|35000386519|2 +791429|35000386521|2 +791397|35000386523|2 +791477|35000386526|2 +791454|35000386527|2 +791787|35000386533|2 +791828|35000386539|2 +791829|35000386540|2 +792344|35000386543|2 +792268|35000386545|2 +792148|35000386548|2 +792414|35000386549|4 +792087|35000386555|2 +792373|35000386558|2 +792225|35000386560|2 +791877|35000386566|2 +792118|35000386567|2 +792587|35000386574|2 +792586|35000386575|2 +792590|35000386576|2 +792630|35000386578|2 +792628|35000386579|2 +792674|35000386580|2 +792745|35000386582|2 +792747|35000386583|2 +792746|35000386584|2 +792843|35000386588|2 +792845|35000386590|2 +792875|35000386592|2 +792857|35000386593|2 +792867|35000386595|2 +792960|35000386596|4 +793128|35000386603|2 +793124|35000386604|2 +793135|35000386606|2 +793272|35000386613|2 +793273|35000386614|2 +793289|35000386618|2 +793292|35000386619|2 +793483|35000386623|2 +650655|35000386624|2 +793479|35000386625|2 +793482|35000386626|2 +793480|35000386628|2 +793537|35000386631|2 +793538|35000386632|2 +793540|35000386633|2 +793539|35000386634|2 +793674|35000386638|2 +793692|35000386639|2 +793722|35000386641|2 +793770|35000386643|2 +793771|35000386644|2 +793772|35000386645|2 +793776|35000386646|2 +793775|35000386647|2 +793796|35000386648|2 +793820|35000386649|2 +793831|35000386650|2 +793861|35000386651|2 +793845|35000386655|2 +793850|35000386656|2 +793856|35000386657|2 +793848|35000386658|2 +793926|35000386668|2 +793923|35000386671|2 +793932|35000386673|2 +793933|35000386675|2 +793949|35000386676|2 +793946|35000386680|2 +793950|35000386682|2 +478555|35000386683|2 +793935|35000386684|2 +793954|35000386685|2 +793955|35000386687|2 +793953|35000386688|2 +794012|35000386695|2 +794007|35000386699|2 +794118|35000386702|2 +794096|35000386704|2 +794125|35000386705|2 +794114|35000386706|2 +794169|35000386707|2 +794161|35000386710|2 +794163|35000386711|2 +794180|35000386712|2 +794155|35000386713|2 +794177|35000386714|2 +794405|35000386725|2 +794582|35000386727|2 +794486|35000386728|2 +794539|35000386729|2 +500459|35000386731|2 +794566|35000386732|2 +794556|35000386734|2 +794453|35000386735|2 +794609|35000386737|2 +741559|35000386738|2 +794668|35000386739|2 +794663|35000386740|2 +794721|35000386741|2 +794763|35000386742|2 +794843|35000386743|2 +794708|35000386744|2 +794854|35000386747|2 +794782|35000386748|2 +794711|35000386749|2 +794783|35000386750|2 +794920|35000386751|2 +794859|35000386752|2 +794796|35000386753|2 +794918|35000386755|2 +794683|35000386756|2 +794972|35000386757|4 +794750|35000386758|2 +794813|35000386759|2 +794712|35000386760|2 +794764|35000386761|2 +1251581|35000386764|2 +794722|35000386766|2 +794797|35000386767|2 +794816|35000386768|2 +794975|35000386772|2 +460774|35000386773|2 +794795|35000386775|2 +794754|35000386776|2 +794817|35000386777|2 +795082|35000386784|2 +795120|35000386785|2 +795286|35000386789|2 +795280|35000386791|2 +795284|35000386794|2 +795358|35000386798|2 +795424|35000386800|2 +795444|35000386802|2 +1001654|35000386803|2 +795507|35000386804|2 +795715|35000386810|2 +795692|35000386815|2 +795748|35000386818|2 +795611|35000386822|2 +795574|35000386823|2 +795774|35000386824|2 +795665|35000386827|2 +795575|35000386829|2 +795749|35000386833|2 +795853|35000386834|2 +795854|35000386835|2 +795920|35000386836|2 +795991|35000386838|2 +796094|35000386850|2 +796153|35000386851|2 +796166|35000386853|2 +796112|35000386854|2 +796154|35000386857|2 +794515|35000386859|2 +796146|35000386860|2 +796130|35000386862|2 +856906|35000386863|2 +796183|35000386864|2 +796227|35000386865|2 +796235|35000386866|2 +796242|35000386867|2 +796237|35000386868|2 +796255|35000386869|2 +796274|35000386871|2 +796262|35000386872|2 +796288|35000386875|2 +796279|35000386876|2 +796289|35000386878|2 +796458|35000386882|2 +796355|35000386883|2 +796473|35000386886|2 +796580|35000386887|2 +796530|35000386888|2 +796597|35000386889|2 +796478|35000386890|2 +796400|35000386891|2 +796479|35000386892|2 +796359|35000386893|2 +796546|35000386894|2 +796519|35000386895|4 +796440|35000386896|2 +796401|35000386898|2 +796553|35000386902|2 +796569|35000386904|2 +796605|35000386905|2 +796608|35000386906|2 +796630|35000386907|2 +796634|35000386909|2 +796840|35000386918|2 +796855|35000386919|2 +796831|35000386920|2 +796876|35000386921|2 +796886|35000386922|2 +796880|35000386923|2 +797038|35000386926|2 +797039|35000386927|2 +797110|35000386929|2 +798304|35000386931|2 +797361|35000386932|2 +797325|35000386934|2 +797351|35000386936|2 +797323|35000386937|2 +797395|35000386938|2 +797409|35000386939|2 +797415|35000386940|2 +797452|35000386941|2 +797453|35000386942|2 +797487|35000386943|2 +797490|35000386944|2 +797679|35000386948|2 +797975|35000386951|2 +797618|35000386952|2 +797518|35000386955|2 +591517|35000386959|2 +797961|35000386960|2 +797802|35000386962|2 +625627|35000386963|2 +797664|35000386964|2 +586020|35000386965|2 +797636|35000386967|2 +797619|35000386968|2 +797962|35000386969|2 +797692|35000386972|2 +797515|35000386973|2 +797817|35000386974|2 +797701|35000386975|2 +797535|35000386976|2 +797916|35000386978|2 +797942|35000386979|2 +797891|35000386980|2 +797749|35000386981|2 +797789|35000386983|2 +845370|35000386984|2 +798063|35000386985|2 +798064|35000386986|2 +798088|35000386989|2 +798110|35000386990|4 +798150|35000386993|2 +798151|35000386994|2 +798152|35000386995|2 +798160|35000386996|2 +798154|35000386997|2 +798173|35000386998|2 +798202|35000387000|2 +798198|35000387002|2 +569326|35000387004|2 +798223|35000387005|2 +798435|35000387009|2 +798388|35000387010|2 +798418|35000387012|2 +798444|35000387014|2 +798449|35000387015|2 +798453|35000387017|2 +798525|35000387019|2 +798484|35000387020|2 +798487|35000387021|2 +798564|35000387024|2 +798635|35000387027|2 +798630|35000387028|2 +798637|35000387029|2 +798685|35000387035|2 +798666|35000387036|2 +798706|35000387039|2 +799909|35000387041|2 +798710|35000387044|2 +798712|35000387045|2 +798754|35000387047|2 +798755|35000387048|2 +798790|35000387049|2 +798836|35000387051|2 +798832|35000387052|2 +798823|35000387053|2 +798816|35000387054|2 +798935|35000387059|2 +798908|35000387061|2 +799036|35000387062|2 +798943|35000387063|2 +798897|35000387065|2 +798893|35000387067|2 +798922|35000387068|2 +798974|35000387070|2 +798915|35000387071|2 +799151|35000387075|2 +482469|35000387077|2 +799209|35000387080|2 +799221|35000387081|2 +799353|35000387091|2 +799313|35000387092|2 +799378|35000387096|2 +799387|35000387099|2 +799388|35000387100|2 +799396|35000387102|2 +799412|35000387103|2 +799421|35000387107|2 +799392|35000387108|2 +799395|35000387110|2 +799406|35000387112|2 +799417|35000387113|2 +799573|35000387121|2 +799618|35000387124|2 +799536|35000387126|2 +799600|35000387129|2 +799574|35000387130|2 +799658|35000387131|2 +799451|35000387132|2 +799577|35000387133|2 +799639|35000387141|2 +799709|35000387142|2 +799656|35000387146|2 +628263|35000387147|2 +799790|35000387148|2 +799807|35000387151|2 +799804|35000387152|2 +799808|35000387153|2 +799799|35000387154|2 +799800|35000387156|2 +628127|35000387157|2 +799843|35000387158|2 +799850|35000387159|2 +799933|35000387161|2 +799949|35000387162|2 +799950|35000387163|2 +800079|35000387172|2 +800075|35000387174|2 +800068|35000387175|2 +800078|35000387176|2 +800081|35000387177|2 +800193|35000387179|2 +800088|35000387180|2 +800253|35000387182|2 +800234|35000387183|2 +800143|35000387184|2 +800363|35000387185|2 +800250|35000387186|2 +800235|35000387187|2 +800236|35000387192|2 +800203|35000387194|2 +800321|35000387196|2 +800375|35000387197|2 +800273|35000387199|2 +800486|35000387201|2 +800268|35000387202|2 +834479|35000387204|4 +852043|35000387205|2 +800191|35000387206|2 +800445|35000387207|2 +800186|35000387208|2 +800361|35000387209|2 +800487|35000387210|2 +800092|35000387211|2 +800254|35000387212|2 +800575|35000387217|2 +800559|35000387220|2 +800570|35000387221|2 +800593|35000387222|2 +800566|35000387224|2 +800617|35000387226|2 +800694|35000387227|2 +800745|35000387228|2 +800728|35000387230|2 +800667|35000387232|2 +800661|35000387233|2 +800732|35000387235|2 +800708|35000387236|2 +800723|35000387237|2 +800837|35000387238|2 +800778|35000387240|2 +800945|35000387247|2 +801002|35000387248|2 +800967|35000387249|2 +800963|35000387250|2 +801107|35000387252|2 +801085|35000387254|2 +801165|35000387258|2 +801177|35000387260|2 +567887|35000387262|2 +801285|35000387264|2 +801288|35000387265|2 +801336|35000387268|2 +801334|35000387269|2 +801558|35000387272|2 +801544|35000387275|2 +801571|35000387276|2 +801588|35000387278|2 +801548|35000387279|2 +801598|35000387280|2 +801645|35000387281|2 +801707|35000387282|2 +801713|35000387283|2 +801704|35000387285|2 +801759|35000387289|2 +801761|35000387290|2 +801889|35000387300|2 +801920|35000387301|2 +801819|35000387304|2 +520871|35000387306|2 +801945|35000387307|2 +801948|35000387309|2 +802037|35000387313|2 +802170|35000387320|2 +802502|35000387321|2 +802545|35000387322|2 +802234|35000387323|2 +802332|35000387326|2 +802529|35000387327|2 +802570|35000387328|2 +802411|35000387329|2 +802462|35000387330|2 +802564|35000387331|2 +802320|35000387332|2 +802496|35000387334|2 +802549|35000387336|2 +802576|35000387338|2 +802264|35000387340|2 +802243|35000387342|2 +802311|35000387346|2 +802484|35000387348|2 +802211|35000387349|4 +802221|35000387352|2 +802415|35000387354|2 +500563|35000387356|2 +802416|35000387357|2 +802212|35000387361|2 +802184|35000387364|2 +802326|35000387366|2 +802546|35000387367|2 +802647|35000387371|2 +802711|35000387372|2 +802725|35000387374|2 +802727|35000387376|2 +802704|35000387378|2 +802716|35000387380|2 +802730|35000387381|2 +802743|35000387385|2 +802742|35000387386|2 +802828|35000387387|2 +802839|35000387388|2 +802790|35000387389|2 +802872|35000387392|2 +802932|35000387398|2 +802941|35000387399|2 +802933|35000387400|2 +802964|35000387401|2 +802969|35000387402|2 +802970|35000387403|2 +802968|35000387404|2 +803008|35000387408|2 +803031|35000387411|2 +803091|35000387414|2 +803099|35000387416|2 +803083|35000387419|2 +803163|35000387421|2 +803167|35000387422|2 +803171|35000387423|2 +803193|35000387425|2 +803221|35000387429|2 +803215|35000387430|2 +803256|35000387434|2 +803251|35000387435|2 +803467|35000387436|2 +803464|35000387437|2 +803605|35000387442|2 +803319|35000387443|2 +803575|35000387444|2 +803512|35000387445|2 +803297|35000387449|2 +803320|35000387451|2 +803313|35000387452|2 +803373|35000387454|2 +803420|35000387455|2 +803595|35000387458|2 +803755|35000387462|2 +803721|35000387465|2 +803665|35000387466|2 +803805|35000387468|2 +803745|35000387469|2 +803664|35000387475|2 +803645|35000387477|2 +803746|35000387478|2 +803809|35000387479|2 +803637|35000387481|2 +803666|35000387483|2 +803823|35000387484|2 +803832|35000387487|2 +803911|35000387488|2 +803908|35000387489|2 +803995|35000387494|2 +803986|35000387495|2 +804028|35000387496|2 +804031|35000387497|2 +803987|35000387498|2 +804065|35000387501|2 +804128|35000387502|2 +507056|35000387504|4 +804067|35000387510|2 +804177|35000387511|2 +804068|35000387513|2 +804106|35000387515|2 +804148|35000387516|2 +738578|35000387517|2 +804163|35000387518|2 +804142|35000387520|2 +804235|35000387521|2 +804234|35000387523|2 +804273|35000387524|2 +804277|35000387525|2 +804333|35000387527|2 +804287|35000387529|2 +677406|35000387533|2 +804264|35000387534|2 +804315|35000387536|2 +804418|35000387539|2 +804417|35000387540|2 +804416|35000387543|2 +804421|35000387544|2 +804420|35000387545|2 +804444|35000387546|2 +804610|35000387553|2 +804627|35000387555|2 +804632|35000387557|2 +804622|35000387563|2 +804628|35000387564|2 +804677|35000387568|2 +804738|35000387569|2 +804792|35000387570|2 +804760|35000387571|2 +804761|35000387572|2 +804762|35000387575|2 +804733|35000387577|2 +804901|35000387580|2 +804930|35000387583|2 +804911|35000387585|2 +805159|35000387589|2 +805204|35000387594|2 +805269|35000387598|2 +805363|35000387605|2 +805371|35000387606|2 +805437|35000387607|4 +805444|35000387611|4 +805489|35000387612|2 +805484|35000387613|2 +805577|35000387615|2 +805568|35000387617|2 +805575|35000387618|2 +805529|35000387621|2 +805618|35000387623|2 +805670|35000387625|2 +805665|35000387626|2 +805658|35000387627|2 +805660|35000387628|2 +805697|35000387629|2 +805678|35000387630|2 +805689|35000387632|2 +805663|35000387633|2 +805699|35000387636|2 +805792|35000387639|2 +805789|35000387640|2 +805843|35000387642|2 +805816|35000387643|2 +805842|35000387644|2 +805809|35000387646|2 +805834|35000387649|2 +805829|35000387651|2 +805811|35000387652|2 +805814|35000387655|2 +805836|35000387657|2 +805805|35000387658|2 +805798|35000387659|2 +805847|35000387660|2 +805911|35000387666|2 +805972|35000387669|2 +806109|35000387671|2 +806110|35000387673|2 +806105|35000387674|2 +806119|35000387675|2 +806166|35000387681|2 +806233|35000387682|2 +806205|35000387683|2 +806236|35000387684|2 +806218|35000387685|2 +806229|35000387688|2 +806256|35000387689|2 +806222|35000387690|2 +806223|35000387692|2 +806311|35000387694|2 +806386|35000387696|2 +806497|35000387704|2 +806549|35000387708|2 +806583|35000387710|2 +806553|35000387711|2 +806544|35000387714|2 +806571|35000387715|2 +806590|35000387716|2 +806657|35000387718|2 +806754|35000387721|2 +806759|35000387722|2 +806776|35000387723|2 +806826|35000387725|2 +806854|35000387726|2 +806929|35000387729|2 +806925|35000387732|2 +806924|35000387733|2 +806971|35000387734|2 +806977|35000387735|2 +806978|35000387736|2 +806979|35000387737|2 +807195|35000387741|2 +807250|35000387742|2 +807254|35000387743|2 +807251|35000387744|2 +807322|35000387749|2 +807331|35000387750|2 +807300|35000387751|2 +807340|35000387752|2 +807334|35000387753|2 +807325|35000387754|4 +807509|35000387764|2 +807567|35000387767|2 +807564|35000387768|2 +807568|35000387771|2 +807622|35000387774|2 +807618|35000387775|2 +807644|35000387776|2 +807636|35000387777|2 +807640|35000387778|2 +807721|35000387779|2 +807717|35000387780|2 +807726|35000387782|2 +807747|35000387785|2 +807824|35000387789|2 +807857|35000387793|2 +807854|35000387794|2 +807965|35000387796|2 +807970|35000387798|2 +808004|35000387799|2 +807989|35000387800|2 +807983|35000387801|2 +807993|35000387804|2 +807984|35000387806|2 +808070|35000387810|2 +808163|35000387811|2 +808195|35000387814|2 +808192|35000387815|2 +808197|35000387817|2 +808193|35000387819|2 +808205|35000387820|2 +808200|35000387821|2 +808239|35000387822|2 +808269|35000387823|2 +808257|35000387825|2 +808270|35000387826|2 +887409|35000387827|2 +778071|35000387829|2 +808247|35000387830|2 +808259|35000387831|2 +808252|35000387833|2 +808261|35000387837|2 +808249|35000387838|2 +808241|35000387839|2 +808333|35000387840|2 +808334|35000387841|2 +808349|35000387842|2 +808381|35000387844|2 +808424|35000387848|2 +808423|35000387849|2 +808427|35000387850|2 +808425|35000387851|2 +808579|35000387853|2 +808565|35000387855|2 +808583|35000387859|2 +808601|35000387860|2 +808607|35000387861|2 +808604|35000387864|2 +808676|35000387869|2 +808816|35000387872|2 +808882|35000387875|2 +808890|35000387876|2 +808883|35000387878|2 +808884|35000387879|2 +808902|35000387880|2 +808946|35000387882|2 +808944|35000387884|2 +809038|35000387885|2 +809003|35000387886|2 +809020|35000387887|2 +809036|35000387888|2 +809026|35000387889|2 +809012|35000387890|2 +809113|35000387892|2 +809112|35000387894|2 +809414|35000387897|2 +532381|35000387901|2 +809575|35000387902|2 +809571|35000387903|2 +809570|35000387905|2 +809659|35000387910|2 +809632|35000387911|2 +764241|35000387912|2 +809669|35000387915|2 +809700|35000387918|2 +809668|35000387922|2 +809691|35000387923|2 +809670|35000387924|2 +809681|35000387926|2 +809945|35000387930|2 +809754|35000387931|2 +809875|35000387932|2 +809861|35000387933|2 +809812|35000387934|2 +809909|35000387935|2 +809946|35000387937|2 +809825|35000387939|2 +809809|35000387944|2 +809822|35000387947|2 +809791|35000387949|2 +825496|35000387953|4 +825483|35000387954|4 +825511|35000387955|4 +825535|35000387956|4 +825506|35000387957|4 +825532|35000387958|4 +825528|35000387959|4 +825497|35000387960|4 +825486|35000387961|4 +825509|35000387962|4 +825521|35000387964|4 +825666|35000387968|6 +825584|35000387970|4 +826033|35000387972|4 +825679|35000387973|4 +825680|35000387974|4 +826034|35000387975|4 +826381|35000387976|6 +826040|35000387978|4 +826035|35000387980|4 +826408|35000387983|4 +826182|35000387984|6 +811143|35000387985|2 +826273|35000387986|4 +825937|35000387988|4 +893731|35000387990|2 +825893|35000387994|4 +825741|35000387995|4 +826234|35000387996|2 +825629|35000387997|4 +826206|35000387999|2 +810771|35000388002|4 +825938|35000388004|4 +825620|35000388006|4 +825562|35000388008|4 +825858|35000388014|4 +825859|35000388015|4 +825709|35000388016|4 +825794|35000388017|4 +825779|35000388018|4 +810411|35000388021|2 +826366|35000388023|6 +825726|35000388028|4 +825667|35000388034|6 +825630|35000388035|4 +825968|35000388036|4 +826409|35000388037|4 +826365|35000388040|6 +825978|35000388041|4 +826169|35000388042|4 +825890|35000388044|4 +826372|35000388045|6 +825873|35000388048|4 +826235|35000388049|2 +825961|35000388050|4 +825860|35000388052|4 +826518|35000388060|4 +826531|35000388062|4 +826583|35000388063|4 +826566|35000388065|4 +826567|35000388066|4 +826554|35000388067|4 +826603|35000388068|4 +826601|35000388069|4 +826613|35000388070|4 +826642|35000388072|4 +826784|35000388074|4 +826638|35000388075|4 +826756|35000388076|6 +826714|35000388077|4 +826764|35000388078|4 +826757|35000388080|6 +826803|35000388082|4 +826807|35000388083|4 +826826|35000388086|4 +826851|35000388087|4 +826813|35000388088|4 +826829|35000388089|4 +826908|35000388092|4 +827133|35000388095|4 +826984|35000388097|4 +827109|35000388099|4 +827060|35000388100|4 +827141|35000388101|4 +827009|35000388103|4 +827061|35000388105|4 +478693|35000388109|2 +827021|35000388111|4 +827079|35000388114|4 +827134|35000388115|4 +827062|35000388116|4 +827015|35000388117|4 +827220|35000388119|4 +827223|35000388120|4 +827225|35000388121|4 +827221|35000388122|4 +827224|35000388123|4 +827576|35000388130|4 +827578|35000388131|4 +827960|35000388140|4 +827854|35000388142|4 +827783|35000388143|4 +828073|35000388148|4 +828059|35000388149|4 +828121|35000388150|4 +828084|35000388151|4 +828101|35000388152|4 +478108|35000388153|2 +828078|35000388154|4 +828144|35000388155|4 +828240|35000388158|4 +828239|35000388159|4 +828353|35000388160|4 +828364|35000388161|4 +828378|35000388163|4 +828411|35000388165|4 +828437|35000388167|4 +828453|35000388169|4 +828461|35000388172|4 +828456|35000388173|4 +828552|35000388174|4 +828553|35000388175|4 +828554|35000388176|4 +828569|35000388178|4 +828584|35000388179|4 +828567|35000388181|4 +828589|35000388183|4 +828600|35000388184|4 +828596|35000388187|4 +828623|35000388190|4 +828639|35000388191|4 +828672|35000388193|4 +828686|35000388195|4 +828685|35000388196|4 +678032|35000388197|2 +828785|35000388200|4 +828797|35000388201|4 +828896|35000388202|4 +828870|35000388203|4 +828879|35000388205|4 +828886|35000388208|4 +828904|35000388209|4 +828871|35000388210|4 +828905|35000388211|4 +828939|35000388213|4 +828991|35000388216|4 +829028|35000388219|4 +829033|35000388220|4 +829204|35000388222|4 +829206|35000388223|4 +829237|35000388224|4 +829286|35000388228|4 +829268|35000388230|4 +829336|35000388231|4 +829234|35000388232|4 +829325|35000388234|4 +829241|35000388235|4 +829223|35000388236|4 +760374|35000388238|2 +814072|35000388239|4 +829224|35000388241|4 +829266|35000388243|4 +829320|35000388244|4 +829267|35000388246|4 +829298|35000388247|4 +829308|35000388248|4 +829235|35000388249|4 +829332|35000388250|4 +829356|35000388252|4 +829354|35000388253|4 +829448|35000388255|4 +829616|35000388258|4 +829661|35000388263|4 +829665|35000388264|4 +829751|35000388265|4 +829890|35000388267|4 +829927|35000388268|4 +829928|35000388269|4 +829959|35000388270|4 +829956|35000388272|4 +829953|35000388273|4 +829958|35000388274|4 +830155|35000388282|4 +830250|35000388283|4 +830256|35000388284|4 +830260|35000388285|4 +830262|35000388287|4 +830270|35000388288|4 +830263|35000388290|4 +830309|35000388291|4 +830292|35000388292|4 +830308|35000388293|4 +830267|35000388294|4 +830328|35000388295|4 +830274|35000388296|4 +538779|35000388297|2 +830329|35000388300|4 +830327|35000388302|4 +830402|35000388304|4 +830403|35000388305|4 +830396|35000388307|4 +830393|35000388308|4 +830631|35000388311|4 +830485|35000388316|4 +830441|35000388319|4 +830616|35000388320|4 +830438|35000388321|4 +830442|35000388322|4 +830851|35000388326|4 +883383|35000388330|4 +830962|35000388331|4 +830868|35000388332|4 +830770|35000388333|4 +830930|35000388334|4 +830997|35000388337|4 +831061|35000388338|4 +831000|35000388339|4 +831118|35000388343|4 +831111|35000388344|4 +831138|35000388346|4 +831157|35000388347|4 +831158|35000388348|4 +831171|35000388349|4 +831170|35000388350|4 +831291|35000388351|4 +831293|35000388353|4 +684903|35000388354|2 +641184|35000388356|2 +831351|35000388357|4 +831355|35000388358|4 +704496|35000388359|2 +831345|35000388360|4 +831369|35000388363|4 +831377|35000388366|4 +831387|35000388367|4 +831390|35000388368|4 +831422|35000388370|4 +831419|35000388371|4 +831420|35000388372|4 +831408|35000388373|4 +831426|35000388374|4 +831434|35000388375|4 +831407|35000388377|4 +831433|35000388378|4 +831432|35000388379|4 +831421|35000388380|4 +831557|35000388381|4 +832264|35000388388|4 +832405|35000388391|4 +832484|35000388393|4 +832646|35000388397|4 +832656|35000388398|4 +698882|35000388399|2 +832670|35000388401|4 +832707|35000388402|4 +832706|35000388403|4 +832708|35000388404|4 +832720|35000388405|4 +834255|35000388408|4 +833857|35000388409|6 +833309|35000388410|6 +833150|35000388412|4 +835108|35000388422|6 +835107|35000388424|6 +834381|35000388425|4 +833328|35000388430|4 +833858|35000388433|6 +820249|35000388435|2 +835205|35000388437|4 +833859|35000388441|6 +834188|35000388443|4 +833702|35000388445|4 +819849|35000388446|2 +833127|35000388447|4 +834325|35000388449|2 +833310|35000388450|6 +833195|35000388451|4 +833539|35000388453|4 +834788|35000388456|4 +835695|35000388458|4 +833196|35000388460|4 +834467|35000388461|6 +819850|35000388462|2 +835011|35000388463|2 +833719|35000388465|4 +835559|35000388467|6 +833020|35000388468|4 +835725|35000388470|4 +833589|35000388475|4 +835018|35000388486|2 +834326|35000388487|2 +833564|35000388491|4 +833166|35000388493|4 +819851|35000388497|2 +834391|35000388498|4 +834789|35000388499|4 +833197|35000388500|4 +833936|35000388503|4 +833937|35000388505|4 +833683|35000388511|4 +833025|35000388512|4 +834556|35000388514|4 +833021|35000388515|4 +835565|35000388518|4 +819852|35000388519|2 +833898|35000388522|4 +835012|35000388524|2 +832927|35000388525|4 +818525|35000388526|4 +834347|35000388528|4 +833404|35000388529|4 +833277|35000388530|4 +819726|35000388532|4 +832891|35000388533|4 +833420|35000388534|4 +833901|35000388536|4 +835748|35000388537|4 +833314|35000388541|4 +833554|35000388542|4 +833229|35000388547|2 +834913|35000388548|6 +820256|35000388552|2 +834476|35000388553|4 +835562|35000388554|4 +834324|35000388555|2 +819521|35000388556|2 +833135|35000388558|4 +820339|35000388561|2 +835009|35000388562|2 +820255|35000388566|2 +835282|35000388569|4 +834390|35000388571|4 +819522|35000388573|2 +833897|35000388575|4 +833308|35000388577|6 +820221|35000388579|2 +832836|35000388580|4 +819848|35000388582|2 +819523|35000388586|2 +834020|35000388587|2 +835563|35000388588|4 +833276|35000388589|4 +834260|35000388591|4 +833141|35000388592|4 +834477|35000388595|4 +818719|35000388598|2 +819524|35000388599|2 +832884|35000388600|4 +834312|35000388604|6 +835564|35000388605|4 +833419|35000388610|4 +833327|35000388611|4 +834554|35000388612|4 +834570|35000388613|4 +833501|35000388617|4 +835010|35000388619|2 +835694|35000388628|4 +833701|35000388629|4 +834555|35000388631|4 +834021|35000388632|2 +834475|35000388634|4 +833827|35000388636|4 +834380|35000388637|4 +835566|35000388638|4 +819831|35000388639|2 +736102|35000388640|2 +817754|35000388641|2 +833757|35000388644|4 +819727|35000388646|4 +819853|35000388648|2 +833860|35000388651|6 +817755|35000388652|2 +820257|35000388653|2 +835567|35000388654|4 +834022|35000388655|2 +833861|35000388659|6 +833022|35000388660|4 +833658|35000388661|2 +833828|35000388662|4 +835617|35000388665|4 +834154|35000388672|4 +833133|35000388674|4 +833329|35000388679|4 +833230|35000388680|2 +835662|35000388681|8 +834998|35000388682|2 +834189|35000388684|4 +834382|35000388688|4 +820258|35000388689|2 +835772|35000388693|4 +836050|35000388694|4 +835837|35000388695|4 +836079|35000388699|4 +836056|35000388700|4 +835986|35000388701|4 +836081|35000388702|4 +835939|35000388706|4 +835896|35000388707|4 +835958|35000388708|4 +836080|35000388709|4 +835854|35000388711|6 +835897|35000388712|4 +820765|35000388714|2 +835987|35000388717|4 +836062|35000388719|4 +739588|35000388721|2 +835824|35000388723|4 +836025|35000388724|4 +835930|35000388726|4 +835943|35000388729|4 +835825|35000388730|4 +835973|35000388732|4 +835891|35000388733|4 +836055|35000388734|4 +820774|35000388736|2 +835823|35000388737|4 +835985|35000388738|4 +835937|35000388739|4 +836030|35000388741|4 +836078|35000388742|4 +835876|35000388743|4 +835929|35000388744|4 +836120|35000388745|4 +836149|35000388747|4 +836183|35000388749|4 +836166|35000388750|4 +836211|35000388751|4 +836279|35000388754|4 +836815|35000388759|4 +837236|35000388762|4 +822351|35000388765|2 +837709|35000388767|4 +837166|35000388778|4 +836831|35000388785|4 +658755|35000388789|2 +837167|35000388790|4 +836993|35000388800|4 +837105|35000388801|6 +821327|35000388802|4 +836832|35000388803|4 +822122|35000388807|2 +837045|35000388808|4 +694424|35000388809|2 +837481|35000388810|6 +821339|35000388813|2 +837511|35000388816|4 +836855|35000388818|4 +821315|35000388819|4 +837466|35000388822|6 +837710|35000388824|4 +821607|35000388825|2 +837774|35000388826|6 +836370|35000388828|4 +837475|35000388830|6 +836821|35000388831|4 +836543|35000388833|4 +837842|35000388837|4 +837742|35000388839|4 +836438|35000388840|4 +837598|35000388847|4 +837512|35000388850|4 +836357|35000388851|4 +837877|35000388852|4 +624231|35000388854|2 +837925|35000388855|4 +838006|35000388856|4 +838004|35000388858|4 +838156|35000388859|4 +837970|35000388861|4 +838142|35000388863|4 +838247|35000388868|4 +838195|35000388869|4 +837991|35000388872|4 +838215|35000388873|4 +838133|35000388875|4 +838081|35000388877|4 +838334|35000388879|4 +838277|35000388880|4 +838216|35000388882|4 +838150|35000388887|4 +726645|35000388892|2 +838397|35000388893|4 +838536|35000388896|4 +838564|35000388898|4 +838580|35000388899|4 +838581|35000388900|4 +838829|35000388901|4 +838646|35000388903|4 +838677|35000388904|4 +838907|35000388905|6 +838830|35000388906|4 +838916|35000388909|4 +838660|35000388912|4 +838831|35000388914|4 +838614|35000388915|4 +838642|35000388916|4 +838978|35000388918|4 +839110|35000388921|4 +839169|35000388924|4 +797815|35000388925|2 +839193|35000388927|4 +839202|35000388928|4 +839215|35000388929|4 +839221|35000388930|4 +839223|35000388932|4 +839225|35000388933|4 +839322|35000388938|4 +839283|35000388939|4 +839344|35000388940|4 +839345|35000388941|4 +839530|35000388950|4 +839381|35000388954|4 +839558|35000388956|4 +839663|35000388957|4 +839654|35000388958|4 +839655|35000388959|4 +839651|35000388960|4 +839656|35000388964|4 +839649|35000388966|4 +839658|35000388967|4 +839660|35000388968|4 +839807|35000388979|4 +839776|35000388980|4 +839762|35000388981|4 +839844|35000388982|4 +839882|35000388983|4 +839935|35000388986|4 +840149|35000388991|4 +504140|35000388992|2 +840223|35000388993|4 +840226|35000388994|4 +840234|35000388995|4 +840245|35000388996|4 +1125431|35000388997|2 +840330|35000388999|4 +840328|35000389000|4 +840360|35000389001|4 +840391|35000389003|4 +840406|35000389005|4 +840361|35000389007|4 +840510|35000389009|4 +840507|35000389010|4 +840563|35000389012|2 +840573|35000389013|2 +840579|35000389014|2 +840594|35000389015|2 +840593|35000389018|2 +840592|35000389019|2 +840595|35000389020|2 +840610|35000389021|2 +840642|35000389022|2 +840641|35000389023|2 +840687|35000389026|2 +840690|35000389027|2 +840692|35000389028|2 +840696|35000389029|2 +840698|35000389030|2 +840812|35000389034|2 +840905|35000389037|2 +840877|35000389038|2 +840878|35000389039|2 +840921|35000389040|2 +840975|35000389046|2 +840980|35000389049|2 +840992|35000389052|2 +841091|35000389054|2 +841093|35000389055|2 +841092|35000389056|2 +841193|35000389061|2 +841206|35000389062|2 +841201|35000389063|2 +841258|35000389066|2 +841333|35000389069|2 +841332|35000389070|2 +841334|35000389071|2 +841380|35000389074|2 +841381|35000389075|2 +841384|35000389076|2 +841405|35000389079|2 +841409|35000389080|2 +841601|35000389084|2 +841650|35000389090|2 +841694|35000389095|2 +842027|35000389096|2 +841921|35000389097|2 +841930|35000389098|2 +842071|35000389099|2 +841825|35000389101|2 +842059|35000389102|4 +841804|35000389103|2 +841754|35000389104|2 +841880|35000389106|2 +841955|35000389108|2 +841931|35000389109|2 +841841|35000389111|2 +841881|35000389112|2 +841918|35000389114|2 +841966|35000389117|2 +842018|35000389119|2 +841852|35000389120|2 +841932|35000389121|2 +841846|35000389122|2 +842067|35000389124|2 +841853|35000389125|2 +841854|35000389126|2 +841998|35000389127|2 +841870|35000389128|2 +842109|35000389131|2 +842112|35000389132|2 +842110|35000389133|2 +842108|35000389134|2 +842151|35000389135|2 +842180|35000389138|2 +842174|35000389139|2 +842272|35000389142|2 +842484|35000389143|2 +842435|35000389145|2 +842436|35000389148|2 +842491|35000389157|2 +842485|35000389158|2 +842458|35000389159|2 +842425|35000389160|2 +842746|35000389165|2 +842821|35000389166|2 +842838|35000389169|2 +842855|35000389170|2 +842877|35000389171|2 +842931|35000389172|2 +842932|35000389173|2 +527540|35000389174|2 +842939|35000389175|2 +842998|35000389177|2 +843014|35000389178|2 +843024|35000389179|2 +843106|35000389182|2 +843101|35000389183|2 +843146|35000389185|2 +843208|35000389187|2 +843258|35000389188|2 +843339|35000389191|2 +843340|35000389192|2 +843349|35000389193|2 +843419|35000389195|2 +843410|35000389196|2 +843420|35000389200|2 +843422|35000389201|2 +843423|35000389202|2 +843427|35000389203|2 +843428|35000389204|2 +843449|35000389206|2 +843446|35000389208|2 +843479|35000389210|2 +843552|35000389212|2 +843556|35000389213|2 +843566|35000389214|2 +843822|35000389220|2 +843816|35000389221|2 +843818|35000389222|2 +843803|35000389224|2 +843898|35000389228|2 +843902|35000389231|2 +843833|35000389233|2 +843849|35000389234|2 +844012|35000389235|2 +843989|35000389236|2 +843999|35000389239|2 +844022|35000389240|2 +844002|35000389241|2 +844003|35000389242|2 +844000|35000389244|2 +844105|35000389247|2 +844080|35000389249|2 +844161|35000389255|2 +844207|35000389259|2 +844181|35000389260|2 +844195|35000389261|2 +844182|35000389262|2 +844308|35000389268|2 +844309|35000389269|2 +844305|35000389271|2 +844383|35000389272|2 +844391|35000389273|2 +844388|35000389274|2 +844420|35000389276|2 +844443|35000389278|2 +844444|35000389280|2 +844467|35000389284|2 +844498|35000389286|2 +844497|35000389289|2 +844468|35000389291|2 +844499|35000389292|2 +844472|35000389293|2 +844461|35000389294|2 +844513|35000389298|2 +844518|35000389299|2 +844511|35000389300|2 +844571|35000389302|2 +844563|35000389303|2 +844661|35000389305|2 +844682|35000389308|2 +844816|35000389310|2 +844815|35000389311|2 +844760|35000389312|2 +844818|35000389313|2 +844812|35000389314|2 +844805|35000389315|2 +844795|35000389316|2 +844868|35000389317|2 +844872|35000389318|2 +844880|35000389320|2 +795704|35000389325|2 +845001|35000389326|2 +844931|35000389330|2 +845026|35000389331|2 +844924|35000389332|2 +845009|35000389334|2 +845019|35000389335|2 +845027|35000389336|2 +845073|35000389339|2 +845116|35000389340|2 +845154|35000389342|4 +845155|35000389346|2 +845139|35000389347|2 +845175|35000389349|2 +845199|35000389352|2 +845385|35000389353|2 +845427|35000389355|2 +845326|35000389356|2 +845422|35000389360|2 +845408|35000389362|2 +845404|35000389364|2 +730907|35000389365|2 +845295|35000389366|2 +845336|35000389368|2 +845423|35000389370|2 +845475|35000389374|2 +845466|35000389376|2 +845612|35000389380|2 +845624|35000389381|2 +845660|35000389382|2 +845666|35000389383|2 +845667|35000389384|2 +845804|35000389387|2 +845808|35000389388|2 +845810|35000389389|2 +845842|35000389391|2 +845867|35000389392|2 +679115|35000389394|2 +845954|35000389398|2 +845955|35000389403|2 +846026|35000389404|2 +846039|35000389406|2 +845995|35000389407|2 +846043|35000389408|2 +846052|35000389409|2 +846168|35000389411|2 +846408|35000389412|2 +846256|35000389413|2 +846246|35000389414|2 +846581|35000389417|2 +846114|35000389422|2 +846592|35000389423|2 +846551|35000389424|4 +846233|35000389428|2 +846405|35000389429|2 +846113|35000389435|2 +846409|35000389436|2 +846234|35000389437|2 +846565|35000389438|2 +846414|35000389443|2 +846340|35000389444|2 +846540|35000389446|2 +846512|35000389448|2 +846611|35000389451|2 +846608|35000389452|2 +846619|35000389453|2 +846620|35000389454|2 +846626|35000389455|2 +846705|35000389460|2 +846729|35000389461|2 +847045|35000389463|2 +847558|35000389465|2 +847414|35000389466|2 +847263|35000389472|2 +847161|35000389474|2 +847309|35000389476|2 +847504|35000389478|4 +847053|35000389479|2 +847458|35000389481|4 +847240|35000389482|2 +671905|35000389483|2 +847539|35000389484|2 +846772|35000389491|2 +847529|35000389492|4 +847613|35000389495|2 +847636|35000389496|2 +847074|35000389497|2 +846773|35000389498|2 +846885|35000389500|2 +847270|35000389501|2 +846886|35000389502|2 +847498|35000389503|2 +846975|35000389506|2 +847068|35000389509|2 +847164|35000389510|2 +846976|35000389511|2 +846778|35000389515|2 +803585|35000389521|2 +846817|35000389526|2 +772342|35000389529|2 +847536|35000389537|2 +846981|35000389538|2 +865744|35000389542|2 +847326|35000389545|2 +846854|35000389546|2 +847626|35000389547|2 +847564|35000389548|2 +847288|35000389549|2 +847610|35000389553|2 +846894|35000389557|2 +847289|35000389558|2 +847578|35000389563|2 +847269|35000389564|2 +847614|35000389565|2 +847459|35000389566|4 +847696|35000389568|2 +847694|35000389570|2 +847752|35000389573|2 +669878|35000389575|2 +847789|35000389577|2 +847829|35000389583|2 +847815|35000389585|2 +847861|35000389587|2 +847864|35000389588|2 +847862|35000389589|2 +847898|35000389590|2 +847904|35000389591|2 +847907|35000389592|2 +847914|35000389593|2 +847944|35000389594|2 +848000|35000389599|2 +848132|35000389602|2 +848116|35000389603|2 +459327|35000389604|2 +848469|35000389606|2 +848502|35000389607|2 +848330|35000389608|2 +848474|35000389616|2 +848610|35000389619|2 +848566|35000389622|2 +848459|35000389623|2 +848617|35000389628|2 +848475|35000389629|2 +848547|35000389635|2 +848251|35000389636|2 +848612|35000389638|2 +848604|35000389639|2 +848164|35000389640|2 +848567|35000389645|2 +848221|35000389649|2 +699715|35000389653|2 +848551|35000389654|2 +848615|35000389656|2 +848272|35000389658|2 +848160|35000389659|2 +848577|35000389661|2 +848318|35000389662|2 +848319|35000389665|2 +848354|35000389666|2 +632358|35000389671|2 +848536|35000389673|2 +848489|35000389674|2 +848353|35000389675|2 +848609|35000389676|2 +848355|35000389678|2 +848590|35000389682|2 +848591|35000389683|2 +848332|35000389684|2 +848548|35000389685|2 +848642|35000389689|2 +848643|35000389690|2 +848666|35000389692|2 +848682|35000389693|2 +848667|35000389694|2 +848687|35000389695|2 +848688|35000389696|2 +848782|35000389699|2 +848754|35000389701|2 +848867|35000389704|2 +848916|35000389706|2 +848776|35000389709|2 +848742|35000389710|2 +848913|35000389711|2 +848880|35000389712|2 +848907|35000389713|2 +848826|35000389714|2 +848921|35000389715|2 +848887|35000389716|2 +848983|35000389717|2 +545424|35000389718|2 +849002|35000389720|2 +848968|35000389721|2 +848980|35000389723|2 +848966|35000389724|2 +849003|35000389725|2 +849036|35000389727|2 +848967|35000389731|2 +849052|35000389733|2 +849155|35000389737|2 +849205|35000389738|2 +849156|35000389739|2 +849145|35000389740|2 +849208|35000389741|2 +849301|35000389742|2 +849321|35000389743|2 +849337|35000389745|2 +849390|35000389746|2 +849361|35000389748|2 +849322|35000389749|2 +849532|35000389750|2 +849552|35000389752|2 +849571|35000389753|2 +849575|35000389754|2 +849567|35000389755|2 +849674|35000389756|2 +849631|35000389757|2 +849659|35000389759|2 +849702|35000389762|2 +849704|35000389763|2 +849740|35000389764|2 +849741|35000389765|2 +849765|35000389767|2 +849764|35000389768|2 +849816|35000389769|2 +849908|35000389770|2 +849910|35000389771|2 +849912|35000389772|2 +849911|35000389774|2 +849919|35000389776|2 +849949|35000389779|2 +850039|35000389783|2 +850078|35000389785|2 +850142|35000389786|2 +850121|35000389788|2 +850124|35000389790|2 +850143|35000389792|2 +850205|35000389794|2 +850291|35000389805|2 +850397|35000389808|2 +850405|35000389809|2 +850441|35000389813|2 +850691|35000389818|2 +850692|35000389819|2 +850694|35000389820|2 +869647|35000389821|2 +850789|35000389823|2 +851106|35000389827|2 +851128|35000389828|2 +851231|35000389831|2 +851232|35000389832|2 +851247|35000389834|2 +851348|35000389835|2 +851333|35000389837|2 +851336|35000389838|2 +851319|35000389839|2 +851291|35000389842|2 +851337|35000389843|2 +851308|35000389844|2 +851370|35000389845|2 +851393|35000389847|2 +851402|35000389848|2 +851422|35000389850|2 +764348|35000389851|2 +851444|35000389852|2 +851443|35000389854|2 +851442|35000389855|2 +851596|35000389860|2 +851513|35000389862|2 +851547|35000389863|2 +851607|35000389864|2 +851502|35000389866|2 +851536|35000389867|2 +851553|35000389871|2 +851537|35000389872|2 +851523|35000389873|2 +851610|35000389874|2 +851588|35000389875|2 +851589|35000389876|2 +851574|35000389877|2 +851532|35000389878|2 +851590|35000389879|2 +851634|35000389881|2 +851675|35000389883|2 +851703|35000389885|2 +851736|35000389889|2 +851731|35000389890|2 +851767|35000389891|2 +851768|35000389892|2 +851808|35000389894|2 +851826|35000389900|2 +851835|35000389901|2 +851796|35000389902|2 +851840|35000389904|2 +851845|35000389905|2 +851969|35000389908|2 +851940|35000389909|2 +851992|35000389913|2 +851994|35000389915|2 +852010|35000389917|2 +851999|35000389919|2 +852101|35000389922|2 +852120|35000389923|2 +807712|35000389924|2 +852094|35000389925|2 +852140|35000389926|2 +661571|35000389927|2 +852135|35000389928|2 +852131|35000389929|2 +852168|35000389934|2 +852165|35000389936|2 +852166|35000389937|2 +852183|35000389940|2 +852371|35000389941|2 +852326|35000389942|2 +852486|35000389943|2 +852534|35000389946|2 +852544|35000389949|2 +852537|35000389950|2 +852754|35000389956|2 +852814|35000389958|2 +852832|35000389961|2 +852828|35000389962|2 +853292|35000389965|2 +853635|35000389969|2 +853159|35000389970|2 +853406|35000389973|2 +853556|35000389974|2 +853788|35000389977|4 +853093|35000389981|2 +853629|35000389984|2 +853171|35000389986|2 +852926|35000389990|2 +853816|35000389991|2 +853838|35000389993|2 +852979|35000389994|2 +853104|35000389997|2 +853729|35000389999|2 +853704|35000390001|2 +853256|35000390002|2 +853636|35000390003|2 +853610|35000390007|2 +853105|35000390008|2 +852935|35000390009|2 +853282|35000390013|2 +853637|35000390014|2 +515572|35000390016|2 +614796|35000390017|2 +852985|35000390018|2 +853195|35000390019|2 +853803|35000390021|4 +853407|35000390027|2 +853360|35000390029|2 +853789|35000390030|4 +853463|35000390032|2 +852981|35000390033|2 +853600|35000390035|2 +742483|35000390036|2 +853642|35000390037|2 +853361|35000390040|2 +853084|35000390041|2 +853638|35000390043|2 +853362|35000390047|2 +853408|35000390048|2 +853889|35000390049|2 +853891|35000390051|2 +853892|35000390053|2 +853919|35000390056|2 +853977|35000390059|2 +853984|35000390061|2 +853994|35000390063|2 +854092|35000390064|2 +854104|35000390065|2 +854094|35000390066|2 +854099|35000390067|2 +854098|35000390068|2 +854122|35000390069|2 +854123|35000390070|2 +854111|35000390071|2 +854219|35000390072|2 +854241|35000390073|2 +854242|35000390074|2 +854282|35000390075|2 +854324|35000390076|2 +854431|35000390077|2 +854334|35000390078|2 +854335|35000390079|2 +854410|35000390081|2 +854342|35000390083|2 +854327|35000390084|2 +854462|35000390085|2 +854478|35000390086|2 +854473|35000390087|2 +697548|35000390088|2 +854508|35000390089|2 +854589|35000390091|2 +854568|35000390092|2 +854549|35000390093|2 +854564|35000390095|2 +854558|35000390096|2 +854554|35000390097|2 +640945|35000390098|2 +854592|35000390100|2 +854575|35000390101|2 +854622|35000390102|2 +854652|35000390103|2 +854648|35000390107|2 +497999|35000390108|2 +854710|35000390109|2 +854750|35000390114|2 +854769|35000390116|2 +854795|35000390117|2 +854793|35000390118|2 +854792|35000390119|2 +854849|35000390124|2 +854850|35000390125|2 +854827|35000390126|2 +551168|35000390129|2 +855049|35000390131|2 +855044|35000390132|2 +855064|35000390133|2 +581818|35000390134|2 +855079|35000390138|2 +855174|35000390143|2 +855194|35000390145|2 +855216|35000390147|2 +855330|35000390151|2 +855329|35000390152|2 +855350|35000390153|2 +855361|35000390154|2 +855368|35000390156|2 +855379|35000390157|2 +855469|35000390160|2 +855470|35000390161|2 +855558|35000390165|2 +855530|35000390168|2 +855635|35000390174|2 +855778|35000390177|2 +855782|35000390178|2 +855784|35000390180|2 +855779|35000390181|2 +709715|35000390187|2 +855904|35000390190|2 +855928|35000390191|2 +856021|35000390194|2 +856051|35000390196|2 +856061|35000390197|2 +856101|35000390198|2 +856102|35000390200|2 +739551|35000390201|2 +856139|35000390204|2 +856149|35000390206|2 +856182|35000390209|2 +856250|35000390214|2 +856277|35000390215|2 +856278|35000390216|2 +856319|35000390218|2 +856231|35000390220|2 +856407|35000390221|2 +856325|35000390222|2 +856289|35000390223|2 +856353|35000390224|2 +856416|35000390228|2 +856484|35000390230|2 +856430|35000390231|2 +856354|35000390232|2 +856461|35000390237|2 +856583|35000390247|2 +856589|35000390249|2 +856625|35000390250|2 +686240|35000390252|2 +856616|35000390253|2 +856641|35000390254|2 +856657|35000390255|2 +856730|35000390257|2 +856749|35000390258|2 +759201|35000390259|4 +856725|35000390261|2 +856691|35000390263|2 +856667|35000390264|2 +856675|35000390266|2 +856662|35000390267|2 +856668|35000390271|2 +856692|35000390275|2 +856746|35000390277|2 +856660|35000390278|2 +856788|35000390280|2 +856786|35000390281|2 +856806|35000390283|2 +534222|35000390284|2 +856879|35000390289|2 +856880|35000390291|2 +856894|35000390292|2 +856895|35000390293|2 +856904|35000390297|2 +857012|35000390302|2 +857000|35000390304|2 +857022|35000390306|2 +857021|35000390311|2 +857003|35000390315|2 +857013|35000390316|2 +857024|35000390317|2 +857214|35000390329|2 +857222|35000390332|2 +857260|35000390336|2 +857261|35000390337|2 +857262|35000390338|2 +857275|35000390339|2 +857273|35000390340|2 +857283|35000390341|2 +857335|35000390343|2 +857343|35000390344|2 +857337|35000390347|2 +857368|35000390348|2 +857376|35000390349|2 +857377|35000390350|2 +857459|35000390355|2 +857455|35000390357|2 +857499|35000390358|2 +857509|35000390360|2 +857511|35000390361|2 +857512|35000390362|2 +857510|35000390363|2 +857552|35000390364|2 +857541|35000390365|2 +857538|35000390366|2 +857561|35000390367|2 +857555|35000390368|2 +857553|35000390369|2 +857542|35000390370|2 +857577|35000390372|2 +857624|35000390374|2 +857698|35000390378|2 +857812|35000390386|2 +857824|35000390387|2 +857826|35000390388|2 +857828|35000390390|2 +857935|35000390392|2 +857934|35000390393|2 +858168|35000390396|2 +858194|35000390397|2 +858202|35000390399|2 +858208|35000390401|2 +858209|35000390402|2 +858222|35000390405|2 +858306|35000390408|2 +858307|35000390409|2 +858308|35000390410|2 +794932|35000390411|2 +858480|35000390414|2 +858501|35000390415|2 +774008|35000390416|2 +858497|35000390417|2 +858498|35000390418|2 +858521|35000390422|2 +858580|35000390423|2 +858578|35000390424|2 +858590|35000390426|2 +858633|35000390429|2 +858634|35000390430|2 +858648|35000390432|2 +858658|35000390434|2 +858706|35000390437|2 +858707|35000390438|2 +858710|35000390439|2 +858709|35000390440|2 +858712|35000390441|2 +858725|35000390442|2 +858722|35000390443|2 +502412|35000390444|2 +858735|35000390445|2 +858835|35000390447|2 +859023|35000390451|2 +859026|35000390452|2 +859030|35000390453|2 +859153|35000390455|2 +859219|35000390457|2 +859230|35000390458|2 +859231|35000390459|2 +859232|35000390464|2 +859345|35000390466|2 +859337|35000390467|2 +859372|35000390469|2 +859350|35000390471|2 +859416|35000390473|2 +859406|35000390475|2 +859430|35000390476|2 +859431|35000390477|2 +859548|35000390478|2 +859616|35000390480|2 +859653|35000390482|2 +859661|35000390483|2 +859694|35000390484|2 +859702|35000390485|2 +859824|35000390489|2 +859827|35000390492|2 +859910|35000390494|2 +859906|35000390495|2 +859911|35000390496|2 +839899|35000390497|4 +859921|35000390498|2 +859955|35000390499|2 +701865|35000390503|2 +859997|35000390504|2 +530987|35000390505|2 +860000|35000390506|2 +860011|35000390513|2 +860212|35000390518|2 +860220|35000390519|2 +860217|35000390520|2 +860223|35000390521|2 +860275|35000390522|2 +860279|35000390523|2 +860286|35000390524|2 +860285|35000390525|2 +487860|35000390526|2 +860359|35000390530|2 +860385|35000390531|2 +860382|35000390533|2 +860417|35000390535|2 +860418|35000390536|2 +860415|35000390537|2 +860416|35000390538|2 +860419|35000390539|2 +860541|35000390542|2 +860554|35000390544|2 +860586|35000390546|2 +860620|35000390549|2 +860644|35000390550|2 +860651|35000390551|2 +860734|35000390555|2 +860760|35000390557|2 +860757|35000390558|2 +860777|35000390559|2 +860769|35000390562|2 +860790|35000390563|2 +860791|35000390564|2 +860958|35000390567|2 +860982|35000390569|2 +860983|35000390570|2 +470002|35000390572|2 +856107|35000390573|2 +861119|35000390574|2 +861120|35000390575|2 +861234|35000390577|2 +861247|35000390579|2 +861248|35000390580|2 +861362|35000390586|2 +779461|35000390587|2 +861496|35000390593|2 +861497|35000390594|2 +861495|35000390595|2 +861530|35000390596|2 +861531|35000390597|2 +861558|35000390600|2 +861570|35000390603|2 +861566|35000390604|2 +861599|35000390606|2 +861713|35000390610|2 +861800|35000390615|2 +861926|35000390620|2 +861968|35000390622|2 +861966|35000390623|2 +862000|35000390628|2 +862026|35000390630|2 +862021|35000390633|2 +862075|35000390636|2 +862090|35000390638|2 +862093|35000390639|2 +862092|35000390640|2 +862128|35000390642|2 +862140|35000390643|2 +862135|35000390644|2 +862240|35000390648|2 +862247|35000390651|2 +862284|35000390652|2 +862296|35000390653|2 +862342|35000390656|2 +862367|35000390657|2 +862368|35000390658|2 +862554|35000390664|2 +862670|35000390673|2 +862730|35000390675|2 +862732|35000390678|2 +862741|35000390679|2 +862739|35000390681|2 +862772|35000390682|2 +862773|35000390683|2 +863068|35000390688|2 +863072|35000390689|2 +863225|35000390693|2 +623811|35000390694|2 +863237|35000390695|2 +863238|35000390697|2 +863244|35000390698|2 +863239|35000390699|2 +863240|35000390700|2 +863360|35000390702|2 +863395|35000390703|2 +863393|35000390704|2 +863572|35000390709|2 +863573|35000390711|2 +863567|35000390712|2 +863545|35000390713|2 +525796|35000390714|2 +863563|35000390716|2 +863694|35000390719|2 +863734|35000390720|2 +863998|35000390724|2 +864044|35000390725|2 +863994|35000390726|2 +864066|35000390728|2 +864095|35000390733|2 +864098|35000390734|2 +864142|35000390735|2 +864143|35000390736|2 +492210|35000390737|2 +864195|35000390740|2 +864443|35000390742|2 +864399|35000390743|2 +864533|35000390745|2 +864587|35000390748|2 +864672|35000390758|2 +864726|35000390759|2 +864727|35000390760|2 +864725|35000390761|2 +864828|35000390765|2 +864834|35000390766|2 +864867|35000390767|2 +864860|35000390768|2 +864888|35000390769|2 +864889|35000390771|2 +864972|35000390773|2 +864930|35000390774|2 +865095|35000390776|2 +865032|35000390777|2 +864997|35000390779|2 +865104|35000390780|2 +865052|35000390782|2 +865040|35000390784|2 +865123|35000390786|2 +865133|35000390787|2 +865121|35000390789|2 +865129|35000390790|2 +865139|35000390791|2 +865122|35000390792|2 +865157|35000390793|2 +865158|35000390794|2 +865159|35000390796|2 +865252|35000390799|2 +865309|35000390801|2 +865295|35000390802|2 +865310|35000390803|2 +865381|35000390807|2 +865410|35000390812|2 +865411|35000390813|2 +865461|35000390814|2 +865469|35000390815|2 +647405|35000390817|2 +865453|35000390819|2 +865434|35000390820|2 +865415|35000390823|2 +865679|35000390828|2 +865880|35000390836|2 +865750|35000390837|2 +865762|35000390839|2 +865856|35000390840|2 +865826|35000390841|2 +804830|35000390845|2 +865976|35000390846|2 +866024|35000390847|2 +865996|35000390848|2 +865913|35000390850|2 +866135|35000390853|2 +866064|35000390855|2 +866171|35000390856|2 +866177|35000390858|2 +866140|35000390859|2 +866202|35000390860|2 +866180|35000390864|2 +866152|35000390865|2 +866158|35000390868|2 +866212|35000390870|2 +866213|35000390871|2 +866389|35000390876|2 +866340|35000390877|2 +866341|35000390879|2 +866339|35000390881|2 +497184|35000390882|2 +866367|35000390884|2 +866422|35000390888|2 +577500|35000390889|2 +866459|35000390890|2 +866549|35000390892|2 +866607|35000390893|2 +866547|35000390894|2 +866587|35000390895|2 +866552|35000390896|2 +866590|35000390897|2 +866578|35000390898|2 +866594|35000390899|2 +866614|35000390900|2 +866626|35000390901|2 +866619|35000390906|2 +866613|35000390907|2 +866627|35000390908|2 +866615|35000390909|2 +866644|35000390911|2 +866638|35000390913|2 +866735|35000390916|2 +866747|35000390917|2 +866751|35000390918|2 +866793|35000390919|2 +866779|35000390920|2 +866794|35000390921|2 +866790|35000390922|2 +867038|35000390928|2 +867058|35000390929|2 +867054|35000390930|2 +867052|35000390931|2 +867044|35000390932|2 +867124|35000390934|2 +867109|35000390937|2 +867253|35000390938|2 +867254|35000390939|2 +867191|35000390944|2 +867210|35000390946|2 +867208|35000390947|2 +867183|35000390949|2 +867494|35000390955|2 +867391|35000390957|2 +867357|35000390958|2 +867330|35000390960|2 +867337|35000390961|2 +867448|35000390962|2 +867383|35000390964|2 +867454|35000390965|2 +867476|35000390966|2 +867507|35000390967|2 +867508|35000390968|2 +867449|35000390969|2 +867572|35000390972|2 +689874|35000390973|2 +867645|35000390974|2 +867706|35000390975|2 +867692|35000390976|2 +867736|35000390977|2 +867743|35000390978|2 +867836|35000390980|2 +867868|35000390983|2 +867876|35000390985|2 +867894|35000390987|2 +867897|35000390989|2 +867929|35000390990|2 +867909|35000390991|2 +867919|35000390992|2 +867936|35000390994|2 +867968|35000390996|2 +867966|35000390997|2 +867964|35000390998|2 +867967|35000390999|2 +867961|35000391000|2 +867985|35000391002|2 +868035|35000391003|2 +867999|35000391005|2 +868054|35000391006|2 +867986|35000391007|2 +867987|35000391008|2 +868061|35000391013|2 +868162|35000391014|2 +868436|35000391015|2 +868417|35000391016|2 +868620|35000391017|2 +868525|35000391020|2 +868431|35000391021|2 +868530|35000391022|2 +868526|35000391023|2 +868527|35000391033|2 +868249|35000391034|2 +868214|35000391035|2 +868554|35000391036|2 +868599|35000391037|2 +868679|35000391042|2 +868689|35000391046|2 +868703|35000391047|2 +868694|35000391049|2 +868725|35000391050|2 +868734|35000391051|2 +868815|35000391053|2 +868816|35000391054|2 +868794|35000391055|2 +868817|35000391056|2 +868854|35000391059|2 +868921|35000391062|2 +868994|35000391068|2 +868968|35000391070|2 +869016|35000391071|2 +868969|35000391072|2 +869044|35000391073|2 +869179|35000391076|2 +869181|35000391077|2 +869172|35000391082|2 +869180|35000391083|2 +869182|35000391085|2 +869240|35000391087|2 +869410|35000391093|2 +869308|35000391094|2 +869471|35000391096|2 +869481|35000391099|2 +869482|35000391100|2 +869445|35000391101|2 +869488|35000391114|2 +869420|35000391117|2 +869273|35000391119|2 +869430|35000391120|2 +869495|35000391121|2 +869402|35000391123|2 +869528|35000391125|2 +869554|35000391127|2 +869555|35000391131|2 +869646|35000391135|2 +869655|35000391136|2 +869759|35000391139|2 +869809|35000391141|2 +869774|35000391144|2 +869785|35000391146|2 +869783|35000391147|2 +869852|35000391148|2 +869903|35000391150|2 +869877|35000391151|2 +869904|35000391152|2 +869890|35000391153|2 +869910|35000391154|2 +869889|35000391155|2 +869991|35000391156|2 +869960|35000391157|2 +870014|35000391159|2 +870021|35000391160|2 +870004|35000391161|2 +870011|35000391162|2 +870008|35000391163|2 +870062|35000391168|2 +870100|35000391173|2 +870170|35000391176|2 +870137|35000391177|2 +870122|35000391182|2 +870237|35000391184|2 +741125|35000391185|2 +870367|35000391188|2 +870371|35000391191|2 +870406|35000391204|2 +870497|35000391207|2 +870468|35000391210|2 +870664|35000391213|2 +870663|35000391214|2 +870658|35000391215|2 +870660|35000391216|2 +870656|35000391218|2 +870776|35000391223|2 +870709|35000391224|2 +870710|35000391225|2 +870736|35000391226|2 +870756|35000391227|2 +870727|35000391229|2 +870726|35000391230|2 +870777|35000391234|2 +870811|35000391235|2 +870831|35000391236|2 +870798|35000391237|2 +549750|35000391242|2 +870916|35000391243|2 +870986|35000391246|2 +870974|35000391247|2 +870880|35000391250|2 +870967|35000391251|2 +870935|35000391252|2 +871021|35000391253|2 +870961|35000391258|2 +870881|35000391260|2 +870899|35000391262|2 +870932|35000391263|2 +870882|35000391264|2 +871012|35000391265|2 +871013|35000391266|2 +871054|35000391268|2 +871086|35000391270|2 +871181|35000391274|2 +871176|35000391275|2 +546332|35000391276|2 +871232|35000391278|2 +871306|35000391279|2 +871233|35000391280|2 +871291|35000391281|2 +871277|35000391282|2 +871290|35000391283|2 +871256|35000391284|2 +871284|35000391285|2 +871266|35000391286|2 +871305|35000391287|2 +871237|35000391288|2 +871239|35000391289|2 +871278|35000391290|2 +871227|35000391291|2 +871264|35000391292|2 +871265|35000391294|2 +871344|35000391295|2 +871502|35000391300|2 +871401|35000391302|2 +871473|35000391303|2 +871455|35000391304|2 +871431|35000391305|2 +871472|35000391306|2 +871510|35000391308|2 +871529|35000391311|2 +871570|35000391314|2 +871571|35000391316|2 +871635|35000391317|2 +871673|35000391318|2 +871595|35000391321|2 +871724|35000391324|2 +871723|35000391325|2 +871746|35000391326|2 +871757|35000391330|2 +871823|35000391335|2 +871942|35000391341|2 +871914|35000391343|2 +872041|35000391344|2 +872067|35000391349|2 +872075|35000391350|2 +872052|35000391353|2 +872079|35000391357|2 +872066|35000391358|2 +872259|35000391365|2 +872307|35000391366|2 +872312|35000391367|2 +872384|35000391368|2 +872482|35000391374|2 +872461|35000391375|2 +872478|35000391376|2 +872459|35000391377|2 +872456|35000391379|2 +872467|35000391380|2 +872483|35000391381|2 +872494|35000391382|2 +872487|35000391383|2 +872512|35000391385|2 +872545|35000391386|2 +872608|35000391389|2 +872701|35000391390|2 +872716|35000391393|2 +872827|35000391394|2 +872753|35000391398|2 +872754|35000391399|2 +776536|35000391404|2 +873074|35000391405|2 +873122|35000391407|2 +873034|35000391408|2 +873157|35000391409|2 +873017|35000391410|2 +873067|35000391412|2 +873018|35000391413|2 +873155|35000391414|2 +873020|35000391416|2 +873111|35000391417|2 +873085|35000391422|2 +873174|35000391424|2 +873168|35000391425|2 +873175|35000391430|2 +873176|35000391432|2 +873177|35000391433|2 +873191|35000391436|2 +873227|35000391437|2 +873241|35000391438|2 +873242|35000391440|2 +873340|35000391446|2 +873341|35000391447|2 +873329|35000391448|2 +873309|35000391449|2 +873284|35000391450|2 +873310|35000391453|2 +873278|35000391455|2 +873316|35000391456|2 +873356|35000391457|2 +873361|35000391458|2 +873351|35000391459|2 +873453|35000391460|2 +873475|35000391461|2 +873413|35000391462|2 +873455|35000391463|2 +873414|35000391465|2 +873469|35000391467|2 +873454|35000391468|2 +873525|35000391471|2 +873521|35000391472|2 +873530|35000391473|2 +873540|35000391474|2 +873537|35000391475|2 +873555|35000391478|2 +846199|35000391480|4 +873573|35000391481|2 +873691|35000391482|2 +873756|35000391483|2 +873754|35000391484|2 +873752|35000391486|2 +873757|35000391488|2 +873747|35000391489|2 +873758|35000391490|2 +873764|35000391491|2 +873765|35000391492|2 +873782|35000391493|2 +873781|35000391494|2 +873808|35000391495|2 +873809|35000391496|2 +873805|35000391497|2 +873807|35000391498|2 +873796|35000391499|2 +794887|35000391500|2 +873806|35000391501|2 +859875|35000391506|2 +873989|35000391508|2 +874031|35000391509|2 +874040|35000391510|2 +874064|35000391511|2 +874065|35000391514|2 +874131|35000391516|2 +874110|35000391517|2 +874198|35000391518|2 +874196|35000391519|2 +874211|35000391520|2 +874255|35000391521|2 +874250|35000391523|2 +874344|35000391527|2 +874345|35000391529|2 +874360|35000391531|2 +874435|35000391532|2 +874591|35000391533|2 +874555|35000391534|2 +874659|35000391535|2 +874622|35000391536|2 +874589|35000391537|2 +874573|35000391542|2 +874651|35000391546|2 +874627|35000391547|2 +874588|35000391550|2 +874570|35000391551|2 +874660|35000391552|2 +874604|35000391554|2 +874673|35000391555|2 +874711|35000391556|2 +874703|35000391557|2 +874717|35000391559|2 +874728|35000391561|2 +874753|35000391563|2 +874754|35000391565|2 +874756|35000391566|2 +874752|35000391567|2 +874805|35000391569|2 +874762|35000391570|2 +874803|35000391573|2 +874871|35000391574|4 +874854|35000391575|2 +897591|35000391576|2 +874922|35000391579|2 +535438|35000391580|2 +874975|35000391583|2 +875140|35000391586|2 +875136|35000391587|2 +875068|35000391590|2 +875127|35000391591|2 +875187|35000391595|2 +875248|35000391596|2 +875340|35000391600|2 +875325|35000391603|2 +875323|35000391604|2 +875328|35000391607|2 +875339|35000391609|2 +875442|35000391612|2 +875481|35000391614|2 +875663|35000391618|2 +875664|35000391619|2 +875661|35000391621|2 +875703|35000391622|2 +875721|35000391623|2 +875687|35000391624|2 +482074|35000391625|2 +875824|35000391627|2 +875823|35000391628|2 +875914|35000391630|2 +875913|35000391631|2 +875912|35000391632|2 +875926|35000391633|2 +875927|35000391634|2 +876001|35000391635|2 +876063|35000391638|2 +876150|35000391641|2 +876162|35000391643|2 +876131|35000391644|2 +876129|35000391645|2 +876088|35000391646|2 +876093|35000391647|2 +876087|35000391648|2 +876120|35000391649|2 +876237|35000391653|2 +876231|35000391655|2 +876349|35000391657|2 +876354|35000391658|2 +876364|35000391659|2 +876406|35000391662|2 +876413|35000391664|2 +876503|35000391666|2 +876495|35000391667|2 +876559|35000391670|2 +876561|35000391671|2 +876644|35000391674|2 +876655|35000391676|2 +876779|35000391678|2 +876773|35000391679|2 +876792|35000391682|2 +876791|35000391683|2 +876796|35000391684|2 +876803|35000391685|2 +876911|35000391688|2 +876924|35000391689|2 +876933|35000391690|2 +876929|35000391691|2 +876978|35000391697|2 +877031|35000391699|2 +877042|35000391701|2 +877089|35000391702|2 +877210|35000391704|2 +877207|35000391705|2 +877204|35000391706|2 +877194|35000391707|2 +877283|35000391709|2 +877544|35000391713|2 +877377|35000391715|2 +877399|35000391716|2 +877406|35000391717|2 +877318|35000391719|2 +877407|35000391723|2 +877480|35000391726|2 +877657|35000391728|2 +877669|35000391729|2 +877642|35000391730|2 +877754|35000391732|2 +877752|35000391735|2 +877758|35000391737|2 +877897|35000391741|2 +877888|35000391742|2 +877993|35000391747|2 +877964|35000391750|2 +878007|35000391751|2 +878073|35000391752|2 +878135|35000391753|2 +878113|35000391754|2 +878192|35000391756|2 +878312|35000391758|2 +878340|35000391761|2 +878423|35000391762|4 +878302|35000391763|2 +878484|35000391766|2 +878354|35000391768|2 +878524|35000391770|4 +878256|35000391771|2 +878481|35000391772|4 +878171|35000391773|2 +878337|35000391774|2 +878534|35000391775|2 +878438|35000391778|2 +878246|35000391780|2 +878525|35000391781|4 +878526|35000391784|4 +878410|35000391786|2 +878201|35000391787|2 +878441|35000391789|4 +878586|35000391792|2 +878612|35000391793|2 +878587|35000391795|2 +878606|35000391796|2 +878591|35000391797|2 +878570|35000391800|2 +878588|35000391801|2 +878590|35000391802|2 +878762|35000391803|2 +878793|35000391805|2 +878794|35000391806|2 +878799|35000391808|2 +878875|35000391810|2 +878876|35000391814|2 +879121|35000391815|2 +879225|35000391819|2 +879061|35000391820|2 +878979|35000391823|2 +879074|35000391824|2 +879062|35000391830|2 +879138|35000391832|2 +879036|35000391834|2 +878908|35000391836|2 +878972|35000391837|2 +879096|35000391840|2 +879249|35000391841|2 +879269|35000391842|2 +879330|35000391843|2 +879341|35000391845|2 +879389|35000391847|2 +868927|35000391848|2 +879346|35000391850|2 +879298|35000391851|2 +879419|35000391853|2 +879430|35000391854|2 +879334|35000391855|2 +879280|35000391857|2 +879613|35000391859|2 +879586|35000391864|2 +879477|35000391865|2 +879549|35000391866|2 +879550|35000391867|2 +879551|35000391868|2 +879587|35000391872|2 +879499|35000391873|2 +872511|35000391874|2 +879668|35000391876|2 +879685|35000391881|2 +879683|35000391882|2 +469334|35000391885|2 +879758|35000391888|2 +879836|35000391900|2 +880068|35000391905|2 +880200|35000391906|2 +880137|35000391907|2 +880136|35000391912|2 +880176|35000391916|4 +880104|35000391921|2 +880194|35000391922|2 +880085|35000391923|2 +880105|35000391924|2 +880173|35000391925|2 +880149|35000391929|2 +880243|35000391936|2 +880255|35000391938|2 +880240|35000391939|2 +880244|35000391940|2 +880271|35000391943|2 +880312|35000391944|2 +880272|35000391945|2 +880332|35000391947|2 +880301|35000391948|2 +880302|35000391949|2 +880259|35000391951|2 +880260|35000391952|2 +880315|35000391954|2 +880263|35000391955|2 +880379|35000391959|2 +880395|35000391961|2 +880375|35000391962|2 +880419|35000391969|2 +880444|35000391970|2 +880420|35000391972|2 +880416|35000391973|2 +880445|35000391978|2 +880474|35000391980|2 +880476|35000391981|2 +674491|35000391982|2 +880488|35000391983|2 +880499|35000391984|2 +880513|35000391986|2 +880689|35000391990|2 +880611|35000391994|2 +880561|35000391995|2 +880739|35000391997|2 +880738|35000391998|2 +880737|35000392000|2 +880751|35000392002|2 +880804|35000392008|2 +880792|35000392009|2 +880790|35000392010|2 +880793|35000392011|2 +880801|35000392014|2 +880836|35000392015|2 +880823|35000392016|2 +880835|35000392018|2 +880869|35000392019|2 +880956|35000392020|2 +776205|35000392021|2 +880984|35000392022|2 +880909|35000392025|2 +880928|35000392026|2 +880953|35000392027|2 +880963|35000392029|2 +880935|35000392030|2 +880936|35000392032|2 +880970|35000392033|2 +880969|35000392034|2 +880924|35000392035|2 +881015|35000392036|2 +881057|35000392039|2 +881289|35000392043|2 +881263|35000392044|2 +881255|35000392045|2 +881342|35000392046|2 +881254|35000392048|2 +881256|35000392051|2 +881353|35000392052|2 +881082|35000392054|2 +881135|35000392056|2 +881179|35000392058|2 +881274|35000392059|2 +881216|35000392062|2 +881061|35000392064|2 +881231|35000392065|2 +881153|35000392066|2 +881251|35000392067|2 +863063|35000392068|2 +881396|35000392069|2 +881389|35000392070|2 +881434|35000392073|2 +891407|35000392075|2 +881641|35000392076|2 +881666|35000392078|2 +881669|35000392079|2 +881719|35000392080|2 +881752|35000392081|2 +881725|35000392082|2 +881945|35000392087|2 +881954|35000392088|2 +882071|35000392091|2 +882072|35000392092|2 +882342|35000392094|2 +882371|35000392098|4 +882385|35000392100|2 +882386|35000392101|2 +882526|35000392102|2 +882561|35000392103|2 +882566|35000392104|2 +882589|35000392105|2 +883091|35000392106|2 +882618|35000392107|2 +883176|35000392108|2 +883415|35000392113|2 +882598|35000392114|2 +882836|35000392116|4 +882591|35000392117|2 +882874|35000392121|2 +882825|35000392122|4 +883211|35000392123|4 +882838|35000392129|2 +883460|35000392130|2 +883495|35000392132|2 +699685|35000392133|2 +883531|35000392138|2 +883532|35000392139|2 +883588|35000392146|2 +883589|35000392147|2 +883604|35000392148|2 +883590|35000392149|2 +883627|35000392151|2 +883624|35000392152|2 +883674|35000392155|2 +883746|35000392157|2 +883789|35000392158|2 +883880|35000392159|2 +883747|35000392160|2 +883678|35000392162|2 +883824|35000392163|4 +883819|35000392164|2 +883782|35000392165|2 +883865|35000392166|2 +883896|35000392169|2 +883933|35000392172|2 +883929|35000392173|2 +883937|35000392174|2 +883938|35000392175|2 +884029|35000392179|2 +884087|35000392181|2 +884097|35000392182|2 +884189|35000392184|2 +884284|35000392186|2 +884288|35000392188|2 +884291|35000392189|2 +884292|35000392190|2 +884301|35000392192|2 +884350|35000392198|2 +884385|35000392200|2 +884419|35000392202|2 +884543|35000392204|2 +884545|35000392206|2 +884546|35000392207|2 +884597|35000392212|2 +884588|35000392213|2 +884660|35000392215|2 +884662|35000392218|2 +884630|35000392219|2 +884624|35000392220|2 +884692|35000392222|2 +884757|35000392225|2 +884735|35000392227|2 +884752|35000392228|2 +884753|35000392229|2 +884745|35000392232|2 +884782|35000392235|2 +884812|35000392236|2 +884931|35000392238|2 +884932|35000392239|2 +884935|35000392240|2 +885006|35000392242|2 +885001|35000392243|2 +885036|35000392244|2 +885039|35000392245|2 +885042|35000392246|2 +686311|35000392247|2 +885086|35000392249|2 +885076|35000392250|2 +885162|35000392251|2 +885087|35000392253|2 +885126|35000392254|2 +885346|35000392255|2 +885343|35000392259|2 +885325|35000392261|2 +885294|35000392262|2 +885336|35000392264|2 +885398|35000392267|2 +885389|35000392268|2 +885390|35000392269|2 +885430|35000392270|2 +885616|35000392271|2 +885587|35000392273|2 +885465|35000392276|2 +885588|35000392277|2 +885473|35000392278|2 +885615|35000392279|2 +885507|35000392281|2 +885579|35000392284|2 +885698|35000392286|2 +885638|35000392292|2 +885812|35000392299|2 +885906|35000392301|2 +885892|35000392303|2 +886206|35000392310|2 +886207|35000392311|2 +886242|35000392313|2 +886277|35000392314|2 +886271|35000392315|2 +886278|35000392318|2 +886280|35000392319|2 +886402|35000392320|2 +886374|35000392321|2 +886424|35000392323|2 +886487|35000392326|2 +886520|35000392327|2 +886460|35000392328|2 +886546|35000392330|2 +886544|35000392331|2 +886618|35000392332|2 +886620|35000392333|2 +886659|35000392335|2 +886678|35000392336|2 +886687|35000392339|2 +886755|35000392341|2 +886723|35000392342|2 +886726|35000392343|2 +886744|35000392344|2 +603205|35000392345|2 +886880|35000392347|2 +772446|35000392349|2 +887096|35000392351|2 +887100|35000392352|2 +887069|35000392353|2 +887263|35000392356|2 +887110|35000392359|2 +887286|35000392361|2 +887277|35000392362|2 +886974|35000392367|2 +887227|35000392371|4 +887048|35000392374|2 +887246|35000392375|2 +887216|35000392377|2 +886972|35000392378|2 +887258|35000392379|2 +887121|35000392380|2 +887200|35000392381|2 +886971|35000392382|2 +887010|35000392384|2 +887078|35000392386|2 +887217|35000392387|2 +887219|35000392388|2 +887104|35000392390|2 +887122|35000392391|2 +887063|35000392393|2 +887045|35000392395|2 +726025|35000392396|2 +887365|35000392399|2 +887529|35000392402|2 +887664|35000392407|2 +887650|35000392408|2 +713974|35000392410|2 +887728|35000392413|2 +887712|35000392414|2 +887833|35000392416|2 +887915|35000392419|2 +887936|35000392421|2 +887966|35000392423|2 +887976|35000392425|2 +887881|35000392426|2 +888007|35000392427|2 +888012|35000392428|2 +887993|35000392429|2 +888120|35000392436|2 +888128|35000392442|2 +888154|35000392443|2 +888166|35000392444|2 +741164|35000392445|2 +888159|35000392448|2 +888291|35000392450|2 +888292|35000392451|2 +888450|35000392457|2 +888484|35000392458|2 +888494|35000392459|2 +888472|35000392461|2 +888448|35000392462|2 +888504|35000392464|2 +888505|35000392465|2 +888490|35000392466|2 +888491|35000392467|2 +830125|35000392468|4 +888618|35000392470|2 +884930|35000392471|2 +888727|35000392472|2 +888788|35000392475|2 +888776|35000392476|2 +888895|35000392479|2 +888929|35000392480|2 +888927|35000392484|4 +888902|35000392485|2 +888825|35000392487|2 +888960|35000392488|2 +889007|35000392491|2 +889040|35000392494|2 +889049|35000392495|2 +889078|35000392497|2 +889081|35000392498|2 +889100|35000392500|2 +889096|35000392501|2 +889137|35000392504|2 +889171|35000392506|2 +889211|35000392507|2 +889136|35000392508|2 +889187|35000392509|2 +692420|35000392511|2 +889197|35000392513|2 +889353|35000392515|2 +889335|35000392516|2 +889328|35000392517|2 +889294|35000392518|2 +889309|35000392520|2 +889312|35000392522|2 +889371|35000392523|2 +889366|35000392524|2 +889372|35000392525|2 +889802|35000392527|2 +889543|35000392531|2 +889436|35000392532|2 +889756|35000392533|2 +889487|35000392534|2 +889655|35000392537|2 +889838|35000392539|2 +889522|35000392540|2 +889614|35000392541|2 +889402|35000392545|2 +889816|35000392549|2 +517077|35000392554|2 +889938|35000392555|2 +889939|35000392556|2 +889980|35000392558|2 +889955|35000392559|2 +889961|35000392560|2 +890144|35000392568|2 +890324|35000392569|2 +890331|35000392570|2 +890312|35000392571|2 +890313|35000392572|2 +890325|35000392574|2 +890263|35000392575|2 +890266|35000392577|2 +890264|35000392578|2 +890344|35000392579|2 +890962|35000392580|2 +891019|35000392582|2 +890803|35000392583|2 +890558|35000392584|2 +891243|35000392585|2 +890455|35000392586|2 +890477|35000392587|2 +890887|35000392588|2 +890410|35000392591|2 +890626|35000392594|2 +890478|35000392596|2 +890463|35000392598|2 +890479|35000392599|2 +890963|35000392605|2 +890620|35000392606|2 +890480|35000392607|2 +890660|35000392611|2 +890641|35000392615|2 +890864|35000392619|2 +890606|35000392620|2 +891032|35000392621|4 +890443|35000392627|2 +890661|35000392631|2 +891235|35000392634|2 +890880|35000392636|2 +890967|35000392639|2 +891300|35000392642|2 +891297|35000392643|2 +891334|35000392644|2 +891406|35000392646|2 +891418|35000392648|2 +891478|35000392649|2 +891480|35000392650|2 +891479|35000392651|2 +891614|35000392652|2 +891866|35000392658|2 +891865|35000392659|2 +891872|35000392660|2 +891873|35000392661|2 +891915|35000392662|2 +891923|35000392666|2 +891945|35000392667|2 +891994|35000392669|2 +891995|35000392670|2 +892004|35000392671|2 +892060|35000392673|2 +892053|35000392674|2 +892061|35000392675|2 +892054|35000392676|2 +892055|35000392677|2 +892118|35000392679|2 +892137|35000392680|2 +892135|35000392681|2 +892162|35000392686|2 +892158|35000392687|2 +892187|35000392688|2 +892188|35000392689|2 +892299|35000392692|2 +892300|35000392693|2 +845185|35000392694|2 +892384|35000392696|2 +892402|35000392700|2 +892443|35000392706|2 +892444|35000392707|2 +892515|35000392708|2 +892513|35000392709|2 +892505|35000392710|2 +892708|35000392713|2 +892956|35000392715|2 +893032|35000392717|2 +892895|35000392718|2 +893021|35000392719|2 +892923|35000392720|2 +893080|35000392721|2 +892788|35000392725|2 +892725|35000392726|2 +892712|35000392729|2 +892662|35000392732|2 +893279|35000392738|2 +893248|35000392739|2 +893261|35000392740|2 +666973|35000392741|2 +893264|35000392742|2 +893275|35000392744|2 +893241|35000392745|2 +763428|35000392746|2 +893263|35000392748|2 +893330|35000392750|2 +893296|35000392751|2 +893431|35000392752|2 +893489|35000392754|2 +893490|35000392755|2 +893480|35000392756|2 +893508|35000392757|2 +893512|35000392758|2 +893452|35000392759|2 +893461|35000392761|2 +893448|35000392762|2 +893552|35000392763|2 +893593|35000392767|2 +893657|35000392769|2 +893672|35000392770|2 +893696|35000392773|2 +893739|35000392776|2 +893733|35000392779|2 +893743|35000392780|2 +893756|35000392781|2 +893761|35000392782|2 +893740|35000392783|2 +893736|35000392784|2 +893792|35000392785|2 +893791|35000392786|2 +893839|35000392787|2 +893836|35000392788|2 +893972|35000392792|2 +893989|35000392795|2 +894034|35000392799|2 +894037|35000392803|2 +894098|35000392805|2 +894128|35000392808|2 +894115|35000392809|2 +894140|35000392810|2 +894142|35000392811|2 +894148|35000392812|2 +894172|35000392816|2 +894161|35000392819|2 +894173|35000392820|2 +894237|35000392826|2 +894300|35000392827|2 +894284|35000392828|2 +894365|35000392829|2 +894423|35000392834|2 +894513|35000392836|2 +894529|35000392837|2 +894590|35000392838|2 +894588|35000392839|2 +894594|35000392840|2 +894595|35000392841|2 +894593|35000392842|2 +894908|35000392849|2 +894937|35000392852|2 +894974|35000392856|2 +895022|35000392858|2 +895024|35000392859|2 +895013|35000392860|2 +895134|35000392863|2 +895137|35000392864|2 +895236|35000392865|2 +895282|35000392869|2 +597067|35000392873|2 +895485|35000392874|2 +895517|35000392875|2 +895559|35000392876|2 +895590|35000392877|2 +895659|35000392882|2 +895678|35000392883|2 +895695|35000392887|2 +895760|35000392888|2 +895781|35000392889|2 +895806|35000392890|2 +895836|35000392891|2 +895832|35000392892|2 +895949|35000392893|2 +895925|35000392894|2 +896009|35000392898|2 +896096|35000392901|2 +896264|35000392903|2 +896268|35000392904|2 +896272|35000392905|2 +896273|35000392906|2 +896271|35000392907|2 +896475|35000392912|2 +896450|35000392913|2 +896468|35000392914|2 +896480|35000392915|2 +896484|35000392918|2 +896479|35000392919|2 +896464|35000392920|2 +896518|35000392922|2 +896523|35000392923|2 +896568|35000392925|2 +896559|35000392927|2 +896622|35000392930|2 +896615|35000392931|2 +896623|35000392932|2 +896661|35000392933|2 +896670|35000392936|2 +896677|35000392938|2 +896681|35000392939|2 +896705|35000392941|2 +896729|35000392942|2 +896731|35000392943|2 +896761|35000392944|2 +896791|35000392945|2 +897019|35000392951|2 +897045|35000392952|2 +897063|35000392953|2 +896959|35000392954|2 +897094|35000392956|2 +897075|35000392958|2 +896960|35000392959|2 +897052|35000392960|2 +897217|35000392961|2 +897213|35000392962|2 +897208|35000392963|2 +897209|35000392965|2 +897223|35000392966|2 +897229|35000392968|2 +897253|35000392971|2 +897243|35000392972|2 +897263|35000392975|2 +897291|35000392976|2 +897244|35000392978|2 +897252|35000392979|2 +897230|35000392980|2 +897317|35000392981|2 +897279|35000392983|2 +897401|35000392987|2 +897411|35000392988|2 +897409|35000392989|2 +897430|35000392990|2 +897438|35000392991|2 +897550|35000392996|2 +897551|35000392997|2 +897917|35000392998|2 +897978|35000392999|2 +897814|35000393000|2 +898003|35000393002|2 +897849|35000393003|2 +897651|35000393006|2 +897831|35000393008|2 +897865|35000393009|2 +897785|35000393011|2 +897920|35000393012|2 +897918|35000393013|2 +897759|35000393014|2 +897698|35000393019|2 +897893|35000393020|2 +897913|35000393022|2 +897985|35000393023|2 +897949|35000393024|2 +897861|35000393025|2 +898044|35000393027|2 +898162|35000393028|2 +557504|35000393030|2 +898084|35000393032|2 +898022|35000393034|2 +764457|35000393038|2 +898203|35000393039|2 +898196|35000393041|2 +898213|35000393042|2 +898232|35000393043|2 +898306|35000393044|2 +898357|35000393045|2 +898254|35000393048|2 +898267|35000393050|2 +898379|35000393053|2 +898386|35000393054|2 +898378|35000393055|2 +898411|35000393056|2 +898431|35000393057|2 +898498|35000393058|2 +898549|35000393059|2 +898499|35000393060|2 +898516|35000393061|2 +898554|35000393064|2 +898514|35000393065|2 +898566|35000393066|2 +898802|35000393068|2 +898808|35000393069|2 +898849|35000393072|2 +898595|35000393073|2 +898610|35000393078|2 +898841|35000393080|2 +898705|35000393081|2 +898838|35000393083|2 +898667|35000393084|2 +898738|35000393085|2 +898611|35000393086|2 +898901|35000393091|2 +898905|35000393092|2 +898995|35000393097|2 +898950|35000393100|2 +898971|35000393102|2 +898979|35000393103|2 +899139|35000393114|2 +899119|35000393115|2 +899123|35000393116|2 +899156|35000393118|2 +899201|35000393121|2 +899200|35000393123|2 +899301|35000393129|2 +900042|35000393130|2 +899508|35000393131|2 +900014|35000393133|2 +900271|35000393136|4 +900193|35000393139|2 +899423|35000393140|2 +900272|35000393141|4 +899925|35000393142|2 +899654|35000393143|2 +899937|35000393144|2 +900111|35000393145|2 +901411|35000393148|4 +901318|35000393149|2 +901313|35000393150|2 +901205|35000393153|2 +901150|35000393154|2 +901376|35000393158|2 +900728|35000393159|2 +901925|35000393163|2 +901913|35000393167|2 +471011|35000393169|2 +902007|35000393171|2 +902050|35000393174|2 +902051|35000393175|2 +638407|35000393178|2 +902066|35000393180|2 +902064|35000393183|2 +902067|35000393186|2 +902118|35000393187|2 +902241|35000393193|2 +902238|35000393194|2 +902265|35000393197|2 +770995|35000393198|2 +902266|35000393199|2 +902253|35000393200|2 +902249|35000393203|2 +902351|35000393204|2 +902352|35000393205|2 +902404|35000393207|2 +594315|35000393262|2 +472098|35000393322|2 +710223|35000393373|2 +591614|35000393396|2 +905682|35000393448|2 +542564|35000393542|2 +851779|35000393545|2 +544936|35000393614|2 +907877|35000393645|2 +983617|35000393715|3 +895205|35000393770|2 +639225|35000393879|2 +686755|35000393887|2 +580066|35000393897|2 +740254|35000393898|2 +585789|35000394029|2 +913685|35000394091|2 +913691|35000394096|2 +563328|35000394116|2 +472330|35000394118|2 +694306|35000394123|2 +733903|35000394142|2 +724095|35000394200|2 +892159|35000394260|2 +917833|35000394421|2 +706325|35000394533|2 +633874|35000394648|2 +515537|35000394665|2 +601989|35000394753|2 +784614|35000394758|2 +858887|35000394850|2 +597341|35000394854|2 +844781|35000394880|2 +508102|35000394923|2 +926710|35000395012|2 +592833|35000395052|2 +782450|35000395076|2 +927681|35000395088|2 +928938|35000395095|2 +929104|35000395109|2 +469060|35000395133|2 +854879|35000395170|2 +928932|35000395171|2 +536108|35000395200|2 +929093|35000395208|2 +929094|35000395214|2 +928934|35000395216|2 +651741|35000395220|2 +929092|35000395222|2 +756662|35000395230|2 +928939|35000395248|2 +654586|35000395260|2 +661096|35000395270|2 +931381|35000395323|2 +931881|35000395334|2 +570088|35000395354|2 +747227|35000395402|2 +729354|35000395547|2 +562922|35000395595|2 +708498|35000395634|2 +799524|35000395705|2 +602932|35000395714|2 +939791|35000395884|2 +939988|35000395923|2 +520612|35000395934|2 +939983|35000395937|2 +683554|35000395957|2 +707348|35000396025|2 +720175|35000396034|2 +613834|35000396117|2 +482620|35000396182|2 +549251|35000396186|2 +517267|35000396193|2 +866704|35000396233|2 +943432|35000396279|2 +943583|35000396298|2 +943831|35000396325|2 +944281|35000396382|2 +773272|35000396383|2 +566064|35000396388|2 +769345|35000396468|2 +664205|35000396557|2 +946190|35000396569|2 +946385|35000396597|2 +568700|35000396606|2 +756641|35000396619|2 +713392|35000396670|2 +565470|35000396774|2 +720129|35000396792|2 +526898|35000396849|2 +707201|35000396851|2 +948681|35000396857|2 +690501|35000396901|2 +672228|35000396917|2 +949641|35000396926|2 +949643|35000396976|2 +949648|35000396991|2 +865148|35000397009|2 +754299|35000397010|2 +710020|35000397025|2 +880201|35000397026|2 +647083|35000397041|2 +879068|35000397061|2 +950536|35000397082|2 +950532|35000397084|2 +563610|35000397116|2 +789941|35000397126|2 +761359|35000397166|2 +887159|35000397175|2 +798632|35000397194|2 +552877|35000397256|4 +492811|35000397276|4 +738109|35000397285|2 +954602|35000397292|2 +954306|35000397295|2 +552128|35000397298|2 +954604|35000397306|2 +954300|35000397355|2 +489008|35000397398|4 +553771|35000397421|2 +558735|35000397429|2 +502825|35000397468|2 +875095|35000397530|2 +563535|35000397568|2 +1221087|35000397607|2 +837237|35000397801|4 +653792|35000397958|2 +967418|35000397999|2 +967419|35000398008|2 +967417|35000398056|2 +522358|35000398058|2 +466454|35000398116|2 +833996|35000398180|4 +670554|35000398188|2 +858493|35000398190|2 +582960|35000398277|2 +970499|35000398294|2 +745200|35000398307|2 +537645|35000398366|2 +740591|35000398409|2 +732245|35000398436|2 +732390|35000398504|2 +501432|35000398608|2 +976443|35000398662|2 +793274|35000398798|2 +576872|35000398920|2 +616488|35000398935|2 +982541|35000399000|2 +982436|35000399034|2 +982534|35000399037|2 +982813|35000399062|2 +983903|35000399122|2 +983781|35000399128|2 +473542|35000399234|2 +637110|35000399331|2 +803584|35000399377|2 +739794|35000399400|2 +808250|35000399403|2 +987381|35000399431|2 +987382|35000399439|2 +738628|35000399447|2 +544082|35000399455|2 +556318|35000399468|2 +772649|35000399493|2 +510663|35000399580|2 +990743|35000399593|2 +990439|35000399601|2 +736054|35000399635|2 +989545|35000399651|2 +562103|35000399652|2 +990087|35000399697|2 +620563|35000399706|2 +463558|35000399769|2 +644689|35000399874|2 +992759|35000399898|2 +992757|35000399899|2 +777193|35000399964|2 +762201|35000400035|2 +723140|35000400124|2 +781037|35000400144|2 +781331|35000400169|2 +997004|35000400185|2 +772592|35000400196|2 +628363|35000400207|2 +997750|35000400246|2 +845802|35000400247|2 +997912|35000400256|2 +1165823|35000400274|2 +839666|35000400346|4 +882518|35000400354|2 +597366|35000400380|2 +508779|35000400381|2 +999957|35000400426|2 +1001754|35000400522|2 +509495|35000400528|2 +558137|35000400541|2 +1002455|35000400558|2 +635284|35000400751|2 +1005555|35000400764|2 +1005765|35000400772|2 +1005556|35000400775|2 +475756|35000400777|2 +715138|35000400819|2 +1008338|35000400848|2 +649543|35000400854|2 +805428|35000400891|4 +1007731|35000400895|2 +1008237|35000400925|2 +1006876|35000400932|2 +1006901|35000401024|2 +761522|35000401025|2 +700386|35000401082|2 +1006917|35000401133|2 +1011122|35000401138|2 +1013018|35000401221|2 +620572|35000401267|2 +534171|35000401274|2 +1013484|35000401277|2 +503320|35000401285|2 +779447|35000401308|2 +759559|35000401313|2 +841801|35000401337|2 +870653|35000401436|2 +559428|35000401460|2 +1083164|35000401466|2 +884743|35000401515|2 +690423|35000401563|2 +542910|35000401620|2 +846623|35000401659|2 +1021323|35000401692|2 +564308|35000401694|2 +1022104|35000401707|2 +1023019|35000401781|2 +1025520|35000401939|2 +752941|35000401946|2 +1026683|35000401978|2 +1026632|35000401983|2 +1026684|35000401990|2 +506868|35000402006|2 +1026633|35000402014|2 +852998|35000402083|2 +458362|35000402085|2 +871969|35000402115|2 +853969|35000402134|2 +1028825|35000402207|2 +1029920|35000402277|2 +880402|35000402341|2 +846606|35000402349|2 +1031181|35000402391|2 +1031425|35000402403|2 +1031369|35000402405|2 +525668|35000402409|2 +516542|35000402633|2 +1100114|35000402642|2 +461286|35000402720|2 +621257|35000402765|2 +700621|35000402881|2 +1039292|35000402886|2 +608646|35000402959|2 +607493|35000403024|2 +596581|35000403026|2 +773261|35000403070|2 +712353|35000403097|2 +1043597|35000403103|2 +652070|35000403207|2 +791670|35000403230|2 +590706|35000403236|2 +1047167|35000403240|2 +1046519|35000403241|2 +1047156|35000403268|2 +726085|35000403292|2 +1047462|35000403303|2 +1046705|35000403310|2 +611309|35000403316|2 +467291|35000403434|2 +661503|35000403605|2 +540735|35000403632|2 +801550|35000403667|2 +513270|35000403668|2 +809616|35000403693|2 +803374|35000403731|2 +491232|35000403797|2 +672477|35000403933|2 +1054519|35000403961|2 +750893|35000403979|2 +593535|35000404022|2 +1056078|35000404041|2 +490063|35000404113|2 +1057724|35000404116|2 +629323|35000404177|2 +581970|35000404220|2 +734442|35000404231|2 +1060069|35000404240|2 +1060144|35000404247|2 +1060137|35000404263|2 +1060138|35000404282|2 +1060149|35000404286|2 +639818|35000404343|2 +625048|35000404344|2 +674278|35000404368|2 +662681|35000404373|2 +876083|35000404447|2 +626279|35000404503|2 +747028|35000404511|2 +786909|35000404518|2 +732800|35000404585|2 +797695|35000404597|2 +833899|35000404733|4 +784069|35000404748|2 +784046|35000404755|2 +576044|35000404756|2 +494504|35000404855|2 +740641|35000404968|2 +713135|35000404970|2 +800981|35000405021|2 +582813|35000405079|2 +896775|35000405081|2 +1071836|35000405138|2 +802371|35000405167|2 +487603|35000405184|2 +629706|35000405191|2 +741896|35000405197|2 +1072692|35000405198|2 +569803|35000405283|2 +1073085|35000405290|2 +1074230|35000405334|2 +799370|35000405376|2 +646037|35000405471|2 +807088|35000405489|2 +705539|35000405550|2 +659278|35000405613|2 +615250|35000405617|2 +578893|35000405618|2 +582630|35000405624|2 +547849|35000405666|2 +756726|35000405734|2 +715030|35000405848|2 +459456|35000405903|2 +705494|35000405988|2 +846274|35000406007|2 +888625|35000406015|2 +1085565|35000406020|2 +518440|35000406078|2 +510379|35000406089|2 +885345|35000406134|2 +767820|35000406186|2 +605483|35000406205|2 +1088967|35000406219|2 +709420|35000406240|2 +613109|35000406252|2 +778581|35000406272|2 +1090065|35000406297|2 +1091106|35000406317|2 +1090614|35000406340|2 +776758|35000406415|2 +1092367|35000406443|2 +1092366|35000406444|2 +1067271|35000406458|2 +875561|35000406480|2 +588937|35000406522|2 +569166|35000406535|2 +761205|35000406596|2 +1095014|35000406634|2 +546565|35000406664|2 +648293|35000406675|2 +894139|35000406704|2 +722590|35000406750|2 +613542|35000406755|2 +627828|35000406773|2 +1099482|35000406839|2 +1099471|35000406842|2 +482852|35000406874|2 +1100115|35000406875|2 +1100116|35000406891|2 +493315|35000406935|2 +1101870|35000406969|2 +1101728|35000406985|2 +671545|35000406995|2 +1101438|35000406996|2 +1101874|35000407014|2 +1101739|35000407023|2 +538072|35000407145|2 +1106249|35000407156|2 +501321|35000407184|2 +1110219|35000407255|2 +799902|35000407270|2 +528731|35000407277|2 +1111214|35000407298|2 +620036|35000407328|2 +1113115|35000407343|2 +845290|35000407360|2 +1113389|35000407363|2 +1113119|35000407365|2 +886291|35000407372|2 +1113020|35000407379|2 +548548|35000407410|2 +674656|35000407412|2 +815259|35000407444|2 +1114521|35000407485|2 +487403|35000407511|2 +1257482|35000407575|2 +899157|35000407607|2 +765351|35000407667|2 +738110|35000407679|2 +528065|35000407740|2 +1117315|35000407753|2 +736961|35000407784|2 +758232|35000407800|2 +478742|35000407828|2 +494558|35000407837|2 +1118725|35000407877|2 +829469|35000407941|4 +798960|35000407943|4 +460428|35000407946|2 +1120269|35000407957|2 +1120271|35000407958|2 +872990|35000407974|2 +588841|35000407983|2 +1120870|35000407993|2 +1120875|35000407996|2 +1120871|35000408016|2 +647041|35000408024|2 +760893|35000408057|2 +1121714|35000408059|2 +1122018|35000408064|2 +712889|35000408065|2 +1121464|35000408068|2 +1121715|35000408071|2 +1122032|35000408073|2 +1121716|35000408079|2 +1121917|35000408086|2 +656682|35000408087|2 +739661|35000408095|2 +1122033|35000408096|2 +576879|35000408105|2 +756180|35000408107|2 +1122041|35000408111|2 +1122019|35000408120|2 +1122031|35000408126|2 +644942|35000408193|2 +472829|35000408265|2 +798977|35000408315|2 +1125388|35000408321|2 +772540|35000408348|2 +737757|35000408351|2 +574056|35000408393|2 +579491|35000408398|2 +742599|35000408405|2 +532780|35000408435|2 +780239|35000408438|2 +1132575|35000408574|2 +537017|35000408578|2 +1132536|35000408585|2 +667603|35000408586|2 +1131826|35000408587|2 +1132537|35000408589|2 +1132538|35000408595|2 +728276|35000408601|2 +1131590|35000408607|2 +1131789|35000408610|2 +694545|35000408620|4 +873539|35000408629|2 +767274|35000408691|2 +797727|35000408695|2 +540257|35000408740|4 +766522|35000408765|2 +659394|35000408831|2 +1136526|35000408856|2 +836529|35000408865|4 +484722|35000408903|2 +746663|35000408908|2 +723210|35000408940|2 +593701|35000409017|2 +537872|35000409041|2 +1139728|35000409070|2 +727367|35000409074|2 +554933|35000409076|2 +1141383|35000409204|2 +649811|35000409477|2 +620790|35000409582|2 +658663|35000409589|2 +525797|35000409667|2 +1148578|35000409668|2 +720027|35000409672|2 +637165|35000409847|2 +451480|35000409889|2 +871700|35000409891|2 +600744|35000410039|2 +1121985|35000410046|2 +761024|35000410051|2 +692656|35000410056|2 +1155234|35000410066|2 +1153829|35000410068|2 +1155628|35000410073|2 +1153830|35000410098|2 +1155531|35000410103|2 +1155092|35000410111|2 +1154332|35000410117|2 +1154339|35000410129|2 +1154157|35000410138|2 +828944|35000410143|4 +1157030|35000410188|2 +498083|35000410204|2 +1157029|35000410211|2 +534318|35000410219|2 +1158076|35000410283|2 +846984|35000410351|2 +793222|35000410395|2 +739747|35000410515|2 +762180|35000410538|2 +628297|35000410616|2 +1165863|35000410661|2 +1166124|35000410671|2 +1165140|35000410687|2 +856177|35000410700|2 +1163167|35000410715|2 +1166685|35000410716|2 +1165232|35000410717|2 +1165824|35000410718|2 +1163146|35000410724|2 +1163147|35000410729|2 +1166686|35000410756|2 +1163148|35000410760|2 +1163168|35000410775|2 +1165142|35000410788|2 +877352|35000410798|2 +673585|35000410821|2 +1163655|35000410828|2 +1163020|35000410831|2 +1166900|35000410839|2 +720094|35000410844|2 +537755|35000410856|2 +1165912|35000410857|2 +1163027|35000410864|2 +1164705|35000410865|2 +1165913|35000410875|2 +1165825|35000410876|2 +1165848|35000410890|2 +520687|35000410922|2 +1166687|35000410929|2 +1165141|35000410942|2 +1163733|35000410945|2 +478958|35000410948|2 +878008|35000410950|2 +1165826|35000410952|2 +866440|35000410963|2 +1166691|35000410965|2 +1165914|35000410970|2 +1165233|35000410977|2 +1166692|35000410979|2 +1165827|35000410980|2 +718702|35000411013|2 +867516|35000411018|2 +1167826|35000411040|2 +538641|35000411043|2 +541399|35000411077|2 +1168447|35000411081|2 +1168226|35000411092|2 +674311|35000411134|2 +742659|35000411153|2 +1172580|35000411251|2 +1172528|35000411254|2 +646363|35000411256|2 +1172579|35000411277|2 +538823|35000411341|2 +490671|35000411368|2 +826987|35000411397|4 +762037|35000411416|2 +648068|35000411437|2 +861962|35000411551|2 +1176377|35000411570|2 +735499|35000411642|2 +805268|35000411660|2 +554947|35000411680|2 +565307|35000411689|2 +801281|35000411720|2 +1117316|35000411760|2 +696698|35000411771|2 +590008|35000411776|2 +762042|35000411839|2 +628333|35000411861|2 +1182141|35000411898|2 +761267|35000411967|2 +856198|35000412013|2 +520697|35000412014|2 +731359|35000412031|2 +762768|35000412034|2 +761930|35000412060|2 +593334|35000412085|2 +703314|35000412154|2 +847912|35000412159|2 +853082|35000412173|2 +515276|35000412208|2 +731837|35000412210|2 +664856|35000412214|2 +639608|35000412276|2 +579453|35000412302|2 +652835|35000412333|2 +1186626|35000412336|2 +1187726|35000412377|2 +652542|35000412396|2 +1188548|35000412397|2 +1188178|35000412411|2 +1188928|35000412421|2 +1187737|35000412438|2 +1188179|35000412481|2 +1188537|35000412495|2 +1188180|35000412514|2 +691435|35000412537|2 +875856|35000412560|2 +831819|35000412583|4 +718603|35000412659|2 +1190484|35000412696|2 +1190679|35000412702|2 +1191729|35000412823|2 +1191730|35000412834|2 +1120864|35000412845|2 +1193139|35000412917|2 +826062|35000412929|4 +680634|35000412951|2 +577538|35000413110|2 +841636|35000413112|2 +533465|35000413161|2 +1198654|35000413238|2 +1198644|35000413239|2 +1198790|35000413247|2 +1198939|35000413254|2 +1198645|35000413261|2 +542869|35000413271|2 +1198114|35000413278|2 +1198846|35000413279|2 +1198847|35000413301|2 +1198848|35000413311|2 +676386|35000413314|2 +562443|35000413462|2 +761281|35000413510|2 +746231|35000413579|2 +500169|35000413652|2 +1204846|35000413666|2 +1205254|35000413668|2 +1205211|35000413688|2 +628880|35000413691|2 +1205976|35000413718|2 +1205442|35000413722|2 +902320|35000413729|2 +743251|35000413735|2 +1206120|35000413764|2 +1205998|35000413770|2 +807565|35000413792|2 +727102|35000413851|2 +563158|35000413859|2 +656561|35000413989|2 +1209339|35000413995|2 +555503|35000414018|2 +553444|35000414072|2 +1210590|35000414084|2 +771036|35000414121|2 +531057|35000414127|2 +1212213|35000414142|2 +1213239|35000414199|2 +1213240|35000414202|2 +782398|35000414242|2 +730811|35000414306|2 +558075|35000414355|2 +1217339|35000414491|2 +646703|35000414501|2 +873593|35000414579|2 +680136|35000414690|2 +656941|35000414704|2 +1222861|35000414870|2 +475613|35000414944|2 +515231|35000414955|2 +763727|35000414984|2 +580652|35000414996|2 +570031|35000415050|2 +560632|35000415060|2 +588501|35000415118|2 +627356|35000415197|2 +514371|35000415293|2 +1231894|35000415300|2 +630188|35000415312|2 +827317|35000415319|4 +593042|35000415333|2 +744209|35000415345|2 +890327|35000415349|2 +741440|35000415395|2 +1233037|35000415400|2 +678503|35000415443|2 +1234402|35000415454|2 +624802|35000415475|2 +733583|35000415551|2 +604782|35000415582|2 +648309|35000415661|2 +737191|35000415872|2 +766882|35000415913|2 +1243040|35000415949|2 +1242680|35000416006|2 +1243052|35000416008|2 +674143|35000416020|2 +695515|35000416065|2 +669506|35000416069|2 +563716|35000416132|2 +741741|35000416151|2 +529997|35000416155|2 +522384|35000416181|2 +790114|35000416282|2 +790990|35000416284|2 +733635|35000416350|2 +854608|35000416358|2 +1248731|35000416431|2 +1248732|35000416437|2 +672151|35000416469|2 +1249336|35000416474|2 +598836|35000416498|2 +474313|35000416599|2 +800554|35000416637|2 +856471|35000416644|2 +691961|35000416670|2 +487867|35000416680|2 +1253056|35000416716|2 +1252780|35000416731|2 +1252781|35000416756|2 +1252782|35000416766|2 +1253045|35000416774|2 +1252584|35000416777|2 +1253055|35000416797|2 +577446|35000416839|2 +754928|35000416848|2 +1253631|35000416850|2 +747000|35000416884|2 +530081|35000416951|2 +787469|35000416982|2 +1255130|35000417016|2 +1255131|35000417026|2 +717133|35000417044|2 +571735|35000417058|2 +513708|35000417074|2 +827667|35000417092|4 +711044|35000417122|2 +1257876|35000417163|2 +1258185|35000417169|2 +1257483|35000417181|2 +1257820|35000417183|2 +782576|35000417196|2 +1257831|35000417258|2 +1259433|35000417306|2 +1259434|35000417309|2 +1259685|35000417312|2 +1259641|35000417314|2 +1259435|35000417368|2 +1259618|35000417388|2 +478203|35000417480|2 +756226|35000417482|2 +663831|35000417494|2 +620908|35000417561|2 +763245|35000417599|2 +853413|35000417622|2 +761746|35000417634|2 +767263|35000417656|2 +497032|35000417686|2 +1264481|35000417744|2 +621145|35000417765|2 +780916|35000417778|2 +1266307|35000417848|2 +754260|35000417890|2 +663106|35000417924|2 +1268438|35000417965|2 +1268530|35000417968|2 +1268819|35000417973|2 +1268820|35000417986|2 +631700|35000418002|2 +475069|35000418077|2 +857027|35000418082|2 +578202|35000418109|2 +747467|35000418154|2 +587039|35000418165|2 +848888|35000418200|2 +462530|35001002196|4 +462247|35001002197|2 +469870|35001002200|2 +481906|35001002203|2 +491270|35001002205|2 +497855|35001002206|2 +501408|35001002208|2 +650937|35001002209|2 +524133|35001002214|2 +524730|35001002216|2 +546500|35001002220|2 +554756|35001002222|2 +553805|35001002224|2 +569380|35001002233|2 +570365|35001002235|2 +572120|35001002236|2 +573459|35001002238|2 +575596|35001002242|2 +576256|35001002243|2 +546153|35001002245|2 +537576|35001002254|2 +471863|35001002273|2 +583842|35001002281|2 +586653|35001002283|2 +589323|35001002288|2 +504509|35001002291|2 +593475|35001002299|2 +593514|35001002303|2 +596998|35001002309|2 +597629|35001002313|2 +598086|35001002314|2 +598560|35001002316|2 +600903|35001002319|2 +602002|35001002322|2 +603329|35001002324|2 +887596|35001002325|2 +608481|35001002327|2 +609942|35001002328|2 +614400|35001002331|2 +615724|35001002333|2 +617448|35001002334|2 +618709|35001002343|2 +618700|35001002345|2 +622456|35001002353|2 +622626|35001002354|2 +626535|35001002358|2 +626621|35001002360|2 +627275|35001002363|2 +629335|35001002365|2 +629319|35001002366|2 +784880|35001002379|2 +632666|35001002381|2 +633692|35001002388|2 +637411|35001002397|2 +643643|35001002407|2 +641133|35001002408|2 +643071|35001002419|2 +646469|35001002436|2 +655697|35001002441|2 +656195|35001002445|2 +656196|35001002446|2 +659433|35001002457|2 +661988|35001002479|2 +662737|35001002480|2 +662729|35001002481|2 +663216|35001002483|2 +663842|35001002484|2 +664410|35001002487|2 +664862|35001002488|2 +685296|35001002489|2 +685364|35001002491|2 +686315|35001002494|2 +691363|35001002502|2 +692811|35001002505|2 +673649|35001002508|2 +677026|35001002512|2 +571337|35001002513|2 +678533|35001002515|2 +694756|35001002520|2 +694731|35001002524|2 +679674|35001002545|2 +696525|35001002546|2 +465058|35001002556|2 +699860|35001002564|2 +700925|35001002569|2 +705556|35001002571|2 +708206|35001002576|2 +711787|35001002591|2 +470020|35001002613|2 +475678|35001002625|2 +716999|35001002628|2 +717308|35001002635|2 +717331|35001002640|2 +717332|35001002643|2 +718467|35001002655|2 +718983|35001002660|2 +721817|35001002672|2 +1047190|35001002678|2 +723645|35001002679|2 +723704|35001002681|2 +513412|35001002685|2 +897286|35001002690|2 +732411|35001002695|2 +514875|35001002698|2 +515562|35001002705|2 +733629|35001002715|2 +519689|35001002737|2 +739013|35001002741|2 +795190|35001002746|2 +739229|35001003213|2 +739715|35001003222|2 +746973|35001003241|2 +747551|35001003267|2 +747684|35001003274|4 +753806|35001003310|2 +683076|35001003335|2 +760224|35001003339|2 +666151|35001003341|2 +761244|35001003342|2 +763069|35001003343|2 +766421|35001003345|2 +770539|35001003347|2 +804797|35001003360|2 +779008|35001003362|2 +783315|35001003367|2 +784013|35001003374|2 +786087|35001003376|2 +793214|35001003386|2 +797728|35001003398|2 +799363|35001003402|2 +800030|35001003404|2 +800072|35001003407|2 +800970|35001003409|2 +800938|35001003412|2 +1117265|35001003488|2 +881005|35001003490|2 +665378|35001003497|2 +838322|35001003515|4 +537128|35001003523|2 +473524|35001003536|2 +890618|35001003560|2 +497835|35001003567|2 +826605|35001003570|4 +826602|35001003573|4 +830330|35001003574|4 +827241|35001003576|4 +831112|35001003584|4 +836005|35001003592|4 +833500|35001003595|4 +837771|35001003608|4 +836865|35001003616|4 +837487|35001003617|6 +837685|35001003623|6 +601937|35001003624|2 +837421|35001003626|4 +837922|35001003636|4 +501226|35001003639|2 +869128|35001003645|2 +827558|35001003649|4 +840978|35001003662|2 +846269|35001003667|2 +847160|35001003713|2 +846830|35001003717|2 +596167|35001003737|2 +481291|35001003743|2 +848249|35001003752|2 +849554|35001003760|2 +849572|35001003763|2 +849675|35001003772|2 +850240|35001003781|2 +850400|35001003783|2 +853196|35001003799|2 +854283|35001003804|2 +854445|35001003818|2 +490833|35001003833|2 +880328|35001003961|2 +860096|35001003974|2 +861064|35001003990|2 +866574|35001004009|2 +869523|35001004012|2 +585928|35001004014|2 +870771|35001004020|2 +872062|35001004021|2 +876645|35001004025|2 +877490|35001004031|2 +877431|35001004033|2 +880441|35001004038|2 +880437|35001004044|2 +888512|35001004078|2 +891308|35001004085|2 +891619|35001004091|2 +507292|35001004093|2 +896097|35001004102|2 +457504|35001004264|2 +527379|35001004286|2 +653585|35001004329|2 +470237|35001004361|4 +862694|35001004584|2 +1047238|35001004696|2 +518590|35001004743|2 +889833|35001004784|2 +722087|35001004855|2 +456517|35001004857|2 +854464|35001004874|2 +1231290|35001004881|2 +1046699|35001004927|2 +502064|35001004932|4 +564957|35001004935|2 +1058519|35001004938|2 +734032|35001004966|2 +722482|35001005048|2 +846605|35001005147|2 +628585|35001005153|2 +1255030|35001005174|2 +455351|35001005239|2 +454757|35001005242|4 +457572|35001005244|2 +459348|35001005245|2 +459889|35001005248|2 +463194|35001005262|2 +463213|35001005265|2 +471561|35001005267|2 +472811|35001005272|2 +471893|35001005275|2 +624234|35001005277|2 +505697|35001005288|2 +474459|35001005295|2 +475170|35001005306|2 +475122|35001005309|2 +482599|35001005315|2 +468639|35001005328|2 +483940|35001005330|2 +485933|35001005339|2 +489621|35001005349|2 +644510|35001005397|2 +489683|35001005399|2 +552905|35001005400|2 +493889|35001005404|2 +556100|35001005415|2 +556840|35001005420|2 +498209|35001005424|2 +557799|35001005427|2 +559140|35001005439|2 +559141|35001005444|2 +562536|35001005450|2 +805493|35001005451|2 +501637|35001005453|2 +562454|35001005454|2 +504611|35001005456|4 +459772|35001005457|2 +558284|35001005459|2 +558465|35001005462|2 +511784|35001005464|2 +561650|35001005468|2 +569935|35001005477|2 +518518|35001005481|2 +517989|35001005487|2 +573418|35001005488|2 +573868|35001005490|2 +517277|35001005492|2 +576196|35001005493|2 +576199|35001005496|2 +520646|35001005497|2 +576261|35001005498|2 +568997|35001005500|2 +521065|35001005501|2 +578230|35001005507|2 +533585|35001005508|2 +753228|35001005509|2 +533655|35001005510|2 +583107|35001005512|2 +583096|35001005515|2 +582673|35001005520|2 +583883|35001005523|2 +513849|35001005528|2 +587525|35001005530|2 +517089|35001005535|2 +586842|35001005537|2 +525532|35001005545|2 +530453|35001005548|2 +589474|35001005551|2 +528587|35001005555|2 +537476|35001005569|2 +595529|35001005570|2 +595523|35001005571|2 +595525|35001005573|2 +597597|35001005576|2 +603315|35001005580|2 +531125|35001005581|2 +531143|35001005584|2 +605484|35001005586|2 +532770|35001005587|2 +606826|35001005591|2 +599184|35001005597|2 +564914|35001005600|2 +564915|35001005602|2 +678499|35001005604|2 +489674|35001005611|2 +613680|35001005612|2 +507801|35001005615|2 +666924|35001005620|2 +804029|35001005623|2 +616777|35001005624|2 +607408|35001005634|2 +620470|35001005641|2 +624240|35001005653|2 +539132|35001005668|2 +542269|35001005677|2 +612519|35001005686|2 +624607|35001005904|2 +773570|35001005916|2 +773740|35001005917|2 +773719|35001005919|2 +774697|35001005920|2 +780658|35001005938|2 +781267|35001005941|2 +782832|35001005948|2 +786873|35001005959|2 +786872|35001005962|2 +790037|35001005972|2 +791069|35001005975|2 +793545|35001005978|2 +793546|35001005980|2 +794690|35001005982|2 +794675|35001005983|2 +807192|35001006077|2 +809783|35001006079|2 +825795|35001006081|4 +829041|35001006087|4 +829247|35001006088|4 +1228837|35001006089|2 +830186|35001006090|4 +830784|35001006092|4 +834771|35001006094|4 +834772|35001006095|4 +833894|35001006096|4 +837132|35001006101|4 +838636|35001006104|4 +842349|35001006108|2 +627319|35001006109|2 +633647|35001006115|2 +633693|35001006118|2 +1241300|35001006124|2 +876875|35001006126|2 +637233|35001006134|2 +638801|35001006136|2 +651606|35001006141|2 +558211|35001006142|2 +642947|35001006144|4 +644519|35001006145|2 +860126|35001006147|2 +867089|35001006155|2 +867269|35001006158|2 +658376|35001006162|2 +659316|35001006164|2 +871670|35001006165|2 +520816|35001006167|2 +660762|35001006168|2 +873135|35001006169|2 +669476|35001006172|2 +673419|35001006175|2 +874593|35001006176|2 +676428|35001006177|2 +878146|35001006183|2 +880073|35001006184|2 +558283|35001006187|2 +680691|35001006188|2 +761389|35001006189|2 +885218|35001006193|2 +684128|35001006194|2 +887972|35001006195|2 +888295|35001006196|2 +888309|35001006198|2 +889305|35001006201|2 +682623|35001006202|2 +888999|35001006204|2 +890529|35001006206|2 +588977|35001006207|2 +685350|35001006209|2 +688687|35001006211|2 +891280|35001006212|2 +893276|35001006217|2 +686745|35001006218|2 +686746|35001006220|2 +893701|35001006221|2 +687716|35001006222|2 +691238|35001006228|2 +893692|35001006229|2 +697641|35001006233|2 +897910|35001006234|2 +699684|35001006236|2 +898107|35001006237|2 +701647|35001006239|2 +701832|35001006240|2 +705194|35001006242|2 +705605|35001006243|2 +704952|35001006245|2 +709810|35001006250|2 +710254|35001006251|2 +711681|35001006254|2 +742017|35001006256|2 +1249630|35001006258|2 +712548|35001006260|2 +713165|35001006263|2 +715300|35001006267|2 +715697|35001006269|2 +721286|35001006271|2 +716428|35001006272|2 +847579|35001006274|2 +718928|35001006289|2 +867962|35001006295|2 +825335|35001006298|4 +725416|35001006299|2 +1252783|35001006302|2 +726363|35001006304|2 +726358|35001006306|2 +732886|35001006317|2 +733956|35001006318|2 +735631|35001006320|2 +739650|35001006322|2 +740728|35001006325|2 +742297|35001006327|2 +742506|35001006333|2 +746381|35001006338|2 +746518|35001006341|2 +753977|35001006355|2 +755891|35001006357|2 +757933|35001006364|2 +758171|35001006375|2 +758314|35001006377|2 +761932|35001006383|2 +716133|35001006389|2 +766451|35001006390|2 +766917|35001006393|2 +456177|35001006397|2 +456184|35001006398|2 +458504|35001006403|2 +475609|35001006411|2 +724512|35001006414|2 +553103|35001006416|2 +476901|35001006417|2 +553761|35001006421|2 +477968|35001006422|2 +481221|35001006423|2 +887633|35001006424|2 +558698|35001006425|2 +481910|35001006426|2 +484216|35001006429|2 +561958|35001006431|2 +485199|35001006433|2 +485702|35001006435|2 +563066|35001006439|2 +989563|35001006440|2 +565672|35001006443|2 +568934|35001006445|2 +501263|35001006446|2 +570977|35001006447|2 +502564|35001006448|2 +571208|35001006449|2 +572636|35001006462|2 +573344|35001006463|2 +576257|35001006465|2 +576558|35001006466|2 +502764|35001006613|2 +506923|35001006615|2 +507155|35001006616|2 +512393|35001006622|2 +515890|35001006625|2 +515876|35001006626|2 +523718|35001006631|2 +517757|35001006632|2 +536729|35001006633|2 +523810|35001006634|2 +532353|35001006639|2 +536382|35001006642|2 +536389|35001006643|2 +536392|35001006646|2 +536849|35001006647|2 +536731|35001006651|2 +873061|35001006669|2 +669532|35001006670|2 +679049|35001006676|2 +678894|35001006679|2 +583008|35001006680|2 +680098|35001006681|2 +680104|35001006683|2 +681217|35001006687|2 +584640|35001006688|4 +857160|35001006691|2 +592437|35001006697|2 +689009|35001006701|2 +690195|35001006703|2 +594676|35001006704|2 +483933|35001006706|2 +698227|35001006708|2 +545448|35001006709|2 +702672|35001006712|2 +704071|35001006713|2 +597827|35001006715|2 +704072|35001006716|2 +598960|35001006717|2 +600422|35001006719|2 +710612|35001006726|2 +602110|35001006729|2 +721285|35001006731|2 +712508|35001006734|2 +712507|35001006736|2 +715347|35001006738|2 +715348|35001006740|2 +607095|35001006741|2 +716128|35001006742|2 +716514|35001006745|2 +607131|35001006747|2 +716787|35001006750|2 +718873|35001006752|2 +720650|35001006755|2 +724513|35001006756|2 +620329|35001006763|2 +730702|35001006765|2 +734562|35001006767|2 +737697|35001006769|2 +627220|35001006770|2 +537783|35001006779|2 +629585|35001006780|2 +629580|35001006782|2 +742196|35001006783|2 +742295|35001006784|2 +744736|35001006791|2 +746332|35001006792|2 +544804|35001006794|2 +747552|35001006795|2 +630551|35001006800|2 +757517|35001006802|2 +758398|35001006804|2 +758790|35001006807|2 +550204|35001006809|2 +759612|35001006812|2 +534118|35001006814|2 +536409|35001006818|2 +483967|35001006819|2 +537288|35001006821|2 +645162|35001006824|2 +645369|35001006825|2 +649676|35001006826|2 +544143|35001006827|2 +607701|35001006828|2 +767156|35001006830|2 +544672|35001006831|2 +650827|35001006834|2 +653196|35001006838|2 +545309|35001006842|2 +775566|35001006846|2 +545743|35001006847|2 +860787|35001006850|2 +547838|35001006853|2 +778986|35001006855|2 +656166|35001006857|2 +780528|35001006858|2 +550371|35001006859|2 +657086|35001006860|2 +784562|35001006862|4 +784700|35001006863|2 +786085|35001006866|2 +679121|35001006867|2 +661423|35001006870|2 +664391|35001006872|2 +668667|35001006873|2 +798194|35001006879|2 +793925|35001006881|2 +800964|35001006884|2 +803361|35001006886|2 +522453|35001006888|2 +804743|35001006891|2 +808783|35001006895|2 +828684|35001006904|4 +828878|35001006905|4 +830163|35001006907|4 +532674|35001006910|2 +834023|35001006912|2 +833982|35001006914|4 +833574|35001006916|4 +819854|35001006917|2 +689010|35001006919|2 +839207|35001006921|4 +841410|35001006922|2 +845349|35001006927|2 +852810|35001006934|2 +853059|35001006935|2 +853975|35001006936|2 +854480|35001006937|2 +855637|35001006938|2 +669895|35001006939|2 +481429|35001006940|2 +856259|35001006941|2 +852538|35001006944|2 +864051|35001006946|2 +866591|35001006947|2 +870879|35001006949|2 +871443|35001006950|2 +871464|35001006951|2 +872615|35001006952|2 +876511|35001006995|2 +876520|35001006996|2 +878482|35001007000|4 +880968|35001007004|2 +880873|35001007006|2 +883092|35001007007|2 +883234|35001007009|2 +883372|35001007010|4 +882760|35001007011|2 +886023|35001007012|2 +889652|35001007014|2 +889457|35001007015|2 +889864|35001007017|2 +889865|35001007019|2 +894533|35001007021|2 +895524|35001007025|2 +897485|35001007030|2 +901899|35001007034|2 +901953|35001007037|2 +902240|35001007040|2 +999457|35001007145|2 +752934|35001007169|2 +693299|35001007189|2 +898530|35001007203|2 +463183|35001007204|2 +786945|35001007296|2 +831005|35001007374|4 +634067|35001007392|2 +1141404|35001007429|2 +602021|35001007430|2 +583154|35001007434|2 +643429|35001007509|2 +565002|35001007523|2 +619410|35001007541|2 +760114|35001007550|2 +740507|35001007565|2 +736057|35001007566|2 +727912|35001007567|2 +669376|35001007655|2 +603326|35001007703|2 +846477|35001007704|2 +809557|35001007708|2 +517821|35001007711|2 +731803|35001007818|2 +775536|35001007885|2 +504555|35001007897|2 +806458|35001007946|2 +884156|35001007948|2 +801253|35001008118|2 +465067|35001008441|2 +465044|35001008442|2 +505241|35001008447|2 +507187|35001008454|2 +530604|35001008519|2 +539020|35001008539|2 +1026634|35001008822|2 +604158|35001009432|2 +617894|35001009439|2 +630512|35001009456|2 +667657|35001009505|2 +668597|35001009509|2 +668591|35001009518|2 +479868|35001009520|2 +680367|35001009559|2 +746697|35001009620|2 +757450|35001009621|2 +799899|35001009628|2 +686518|35001009647|2 +726970|35001009684|2 +631772|35001009700|2 +642522|35001009702|2 +734111|35001009716|2 +833384|35001009724|4 +601893|35001009733|2 +838966|35001009736|4 +839001|35001009738|4 +838976|35001009739|4 +880556|35001009787|2 +466227|35001009817|2 +802971|35001009821|2 +488637|35001009822|2 +493957|35001009823|2 +803700|35001009824|2 +835967|35001009830|4 +514559|35001009832|2 +556047|35001009839|2 +847213|35001009840|2 +557881|35001009841|2 +560596|35001009845|2 +731001|35001009846|2 +862578|35001009847|2 +566230|35001009850|2 +867320|35001009851|2 +567420|35001009852|2 +802991|35001009853|2 +572893|35001009855|2 +870728|35001009856|2 +880817|35001009860|2 +803496|35001009864|2 +673855|35001009872|2 +690233|35001009873|2 +700079|35001009877|2 +709824|35001009880|2 +720561|35001009881|2 +733932|35001009883|2 +734417|35001009884|2 +744011|35001009886|2 +757648|35001009890|2 +753410|35001009893|2 +754613|35001009895|2 +758643|35001009896|2 +780182|35001009902|2 +798176|35001009909|2 +820776|35001009919|2 +776760|35001009930|4 +898748|35001009942|2 +645896|35001009945|2 +663009|35001009958|2 +809073|35001009985|2 +607489|35001009987|4 +772468|35001009989|2 +897708|35001009994|2 +473347|35001010006|2 +873981|35001010021|2 +732189|35001010028|2 +838512|35001010039|4 +756491|35001010040|2 +733915|35001010041|2 +849943|35001010043|2 +844545|35001010045|2 +1121986|35001010046|2 +827030|35001010047|4 +737254|35001010058|2 +630371|35001010061|2 +1241423|35001010091|2 +510309|35001010094|2 +689449|35001010096|2 +622558|35001010097|2 +864181|35001010099|2 +626071|35001010114|2 +582725|35001010116|2 +756776|35001010117|2 +825470|35001010121|4 +567078|35001010124|2 +849033|35001010125|2 +646592|35001010129|2 +678930|35001010131|2 +506328|35001010150|2 +608446|35001010152|2 +595475|35001010155|2 +510392|35001010160|2 +556374|35001010171|2 +685725|35001010206|2 +746673|35001010207|2 +573961|35001010208|2 +635192|35001010217|4 +487419|35001010219|2 +799647|35001010220|2 +1013478|35001010221|2 +516701|35001010223|2 +697661|35001010228|2 +511362|35001010230|2 +742633|35001010231|2 +614789|35001010232|2 +794530|35001010238|2 +529744|35001010254|2 +555901|35001010256|2 +846855|35001010259|2 +589794|35001010292|2 +714855|35001010300|2 +499044|35001010304|2 +454130|35001010309|2 +454212|35001010310|2 +454531|35001010313|2 +454710|35001010314|2 +455656|35001010315|2 +583908|35001010316|2 +460226|35001010317|2 +460880|35001010318|2 +624137|35001010319|2 +465509|35001010336|2 +467785|35001010340|2 +471354|35001010341|2 +473780|35001010342|2 +478721|35001010351|2 +479021|35001010353|2 +481222|35001010356|2 +482019|35001010358|2 +482863|35001010361|2 +484382|35001010364|2 +551385|35001010373|2 +489099|35001010374|4 +488657|35001010375|2 +491094|35001010381|2 +566312|35001010388|2 +494198|35001010391|2 +495506|35001010393|2 +614180|35001010394|2 +685801|35001010396|2 +589038|35001010397|2 +594900|35001010403|2 +499670|35001010409|2 +500308|35001010412|2 +500310|35001010414|2 +501490|35001010416|2 +501938|35001010419|2 +870332|35001010425|2 +670438|35001010431|2 +504875|35001010433|2 +504952|35001010438|2 +506972|35001010441|2 +508659|35001010445|4 +508747|35001010446|2 +515178|35001010454|2 +516991|35001010458|2 +517706|35001010460|2 +524697|35001010470|2 +527361|35001010473|2 +527401|35001010474|2 +753832|35001010475|2 +528921|35001010477|2 +605241|35001010478|2 +614376|35001010482|2 +532773|35001010484|2 +581869|35001010489|2 +627853|35001010492|2 +585922|35001010494|2 +628951|35001010495|2 +595868|35001010497|2 +872718|35001010499|2 +569910|35001010501|2 +629418|35001010502|2 +629549|35001010506|2 +561714|35001010507|2 +630904|35001010510|2 +533089|35001010512|2 +631412|35001010513|2 +558041|35001010514|2 +668119|35001010515|2 +633752|35001010516|2 +634787|35001010520|2 +538092|35001010521|2 +636215|35001010522|2 +538104|35001010523|2 +637323|35001010524|2 +538908|35001010525|2 +539178|35001010527|2 +540824|35001010529|2 +761979|35001010530|2 +540825|35001010532|2 +642823|35001010533|2 +643692|35001010536|2 +546424|35001010537|2 +644688|35001010538|2 +645014|35001010539|2 +644969|35001010540|2 +559521|35001010541|2 +562498|35001010543|2 +645706|35001010545|2 +734068|35001010546|2 +551462|35001010550|2 +652321|35001010551|2 +570681|35001010552|2 +561841|35001010553|2 +652258|35001010554|2 +654550|35001010555|2 +656590|35001010557|2 +576813|35001010558|2 +657401|35001010559|2 +657721|35001010560|2 +657777|35001010561|2 +681106|35001010562|2 +657836|35001010563|2 +682883|35001010565|2 +784953|35001010567|2 +688695|35001010572|2 +579395|35001010573|2 +599149|35001010574|4 +663907|35001010575|2 +689909|35001010576|2 +663873|35001010577|2 +581754|35001010579|2 +663874|35001010580|2 +666182|35001010581|2 +583564|35001010582|2 +690043|35001010583|2 +584846|35001010584|2 +691290|35001010585|2 +666037|35001010586|2 +668106|35001010587|2 +669057|35001010588|2 +591068|35001010589|2 +591948|35001010591|2 +696493|35001010592|2 +593861|35001010594|2 +697008|35001010597|2 +669849|35001010598|2 +674515|35001010600|2 +679014|35001010602|2 +594601|35001010605|2 +704500|35001010606|2 +594879|35001010607|2 +756488|35001010608|2 +570221|35001010609|2 +704649|35001010611|2 +753596|35001010612|2 +746264|35001010614|2 +762433|35001010616|2 +732767|35001010618|2 +748449|35001010619|2 +825510|35001010621|4 +706951|35001010622|2 +724571|35001010623|2 +741906|35001010625|2 +754284|35001010629|2 +714876|35001010630|2 +715338|35001010631|2 +733951|35001010636|2 +760740|35001010640|4 +731203|35001010641|2 +610270|35001010642|2 +731086|35001010643|2 +611117|35001010644|2 +724872|35001010645|2 +717303|35001010646|2 +619490|35001010648|2 +739712|35001010649|2 +718248|35001010650|2 +763022|35001010652|2 +621867|35001010653|2 +622609|35001010654|2 +718461|35001010655|2 +723601|35001010656|2 +623677|35001010657|2 +772952|35001010659|2 +614833|35001010662|2 +756972|35001010668|2 +736365|35001010670|2 +754542|35001010671|2 +751869|35001010673|2 +762323|35001010674|2 +742225|35001010675|2 +767862|35001010677|2 +599018|35001010679|2 +770127|35001010680|2 +802495|35001010687|2 +800240|35001010688|2 +782321|35001010692|2 +800070|35001010695|2 +791976|35001010702|2 +782133|35001010710|2 +803788|35001010713|2 +786732|35001010716|2 +786781|35001010719|2 +786262|35001010725|2 +800978|35001010730|2 +890140|35001010742|2 +787905|35001010743|2 +771228|35001010749|2 +775111|35001010756|2 +800167|35001010757|2 +778759|35001010763|2 +775187|35001010764|2 +833358|35001010773|4 +808435|35001010775|2 +828115|35001010776|4 +835607|35001010780|6 +835064|35001010781|4 +878156|35001010782|2 +826544|35001010784|4 +807601|35001010786|2 +502146|35001010788|2 +844755|35001011078|2 +858359|35001011091|2 +856106|35001011093|2 +853167|35001011096|2 +859711|35001011103|2 +846341|35001011118|2 +856041|35001011121|2 +852012|35001011124|2 +851766|35001011137|2 +848524|35001011147|2 +843514|35001011150|2 +843516|35001011154|2 +854939|35001011166|2 +858494|35001011171|2 +858500|35001011192|2 +880256|35001011231|2 +872522|35001011249|2 +870671|35001011309|2 +866200|35001011339|2 +865451|35001011350|2 +865430|35001011362|2 +658288|35001011383|2 +878181|35001011384|2 +870113|35001011387|2 +863042|35001011390|2 +888471|35001011394|2 +876196|35001011396|2 +886453|35001011399|2 +873012|35001011405|2 +870129|35001011409|2 +870130|35001011410|2 +876399|35001011418|2 +872351|35001011419|2 +852766|35001011428|2 +888160|35001011432|2 +803764|35001011572|2 +583052|35001011597|2 +736187|35001011600|2 +1006897|35001011631|2 +983615|35001011656|3 +1008922|35001011658|2 +700531|35001011679|2 +691117|35001011682|2 +1081315|35001011689|2 +570044|35001011690|2 +693676|35001011700|2 +611595|35001011712|2 +609814|35001011751|2 +509256|35001011763|2 +954241|35001011764|2 +1046520|35001011769|2 +853301|35001011796|2 +718981|35001011797|2 +661194|35001011804|2 +601867|35001011839|2 +671493|35001011841|4 +747582|35001011859|2 +479763|35001011887|2 +483225|35001011895|2 +470485|35001011898|2 +470286|35001011902|2 +722244|35001011908|2 +1242785|35001011910|2 +598946|35001011912|2 +889079|35001011930|2 +512490|35001011931|2 +503852|35001011933|2 +490602|35001011937|2 +505213|35001011939|2 +525663|35001011942|2 +542611|35001011946|2 +474839|35001011950|2 +715851|35001011952|4 +622461|35001011953|2 +520817|35001011955|2 +578571|35001011956|2 +522005|35001011960|2 +572016|35001011963|2 +603226|35001011966|2 +590690|35001011968|2 +1266306|35001011969|2 +605352|35001011971|2 +599984|35001011975|2 +590691|35001011978|2 +619642|35001012004|2 +658114|35001012005|2 +874069|35001012009|2 +682926|35001012011|2 +647585|35001012014|2 +662641|35001012017|2 +542840|35001012019|2 +723280|35001012029|2 +720356|35001012036|2 +699702|35001012039|2 +694623|35001012042|2 +699364|35001012045|2 +690242|35001012048|2 +797983|35001012083|2 +801831|35001012086|2 +724069|35001012088|2 +777663|35001012090|4 +725851|35001012091|2 +657011|35001012103|2 +836072|35001012107|4 +738466|35001012109|2 +605786|35001012111|2 +759119|35001012114|2 +806859|35001012115|2 +767277|35001012127|2 +829353|35001012128|4 +847863|35001012148|2 +846909|35001012163|2 +569155|35001012188|2 +885536|35001012192|2 +902338|35001012198|2 +678558|35001012202|2 +883606|35001012203|2 +872155|35001012206|2 +866201|35001012214|2 +892057|35001012217|2 +885922|35001012225|2 +870149|35001012230|2 +859482|35001012341|2 +478728|35001012349|2 +722766|35001012411|2 +1251432|35001012434|2 +888191|35001012475|2 +631464|35001013305|2 +537568|35001013380|2 +741159|35001013393|2 +878329|35001013412|2 +586984|35001013477|2 +460977|35001013484|2 +731031|35001013498|4 +833228|35001013976|4 +468851|35001014126|2 +620423|35001014153|2 +840143|35001014314|4 +546004|35001014701|2 +869902|35001014876|2 +784789|35001014878|2 +491604|35001014881|2 +873532|35001014882|2 +707098|35001015060|2 +789930|35001015062|2 +888121|35001015064|2 +538783|35001015065|2 +493693|35001015067|2 +835885|35001015069|4 +513774|35001015072|2 +893699|35001015073|2 +656923|35001015150|2 +864614|35001016044|2 +898674|35001016289|2 +581653|35001016330|2 +778392|35001016332|2 +581125|35001016745|2 +526482|35001016748|2 +678981|35001016767|2 +857380|35001016771|2 +724747|35001016772|2 +640997|35001016817|2 +588599|35001016834|2 +691799|35001017185|2 +695976|35001017307|2 +713561|35001017388|2 +860588|35001017390|2 +583081|35001018015|2 +614794|35001018016|2 +805315|35001018019|2 +453333|35001018020|2 +777630|35001018024|2 +700727|35001018028|2 +711959|35001018034|2 +578778|35001018083|2 +837434|35001019435|4 +647538|35001019467|2 +476718|35001019482|2 +691791|35001019485|2 +573726|35001019488|2 +573700|35001019489|2 +880111|35001019491|2 +470008|35001019517|2 +481952|35001019526|2 +753391|35001019539|2 +530090|35001019543|2 +763637|35001019730|2 +763636|35001019731|2 +754581|35001020512|2 +529517|35001020522|2 +517076|35001020524|2 +586594|35001020647|2 +572420|35001020653|2 +500107|35001020655|2 +548406|35001020660|2 +577734|35001020664|2 +508603|35001020665|2 +640530|35001020667|2 +676983|35001020670|2 +589303|35001020676|2 +770561|35001020684|2 +841605|35001020685|2 +662562|35001020692|2 +781938|35001020693|2 +566111|35001020695|2 +826057|35001020697|4 +875098|35001020698|2 +507732|35001020703|2 +659255|35001020708|2 +1016272|35001020713|2 +773848|35001020714|2 +484982|35001020715|2 +885527|35001020721|2 +585152|35001020727|2 +493344|35001020739|2 +710141|35001020742|4 +613695|35001020745|2 +987333|35001020749|2 +803899|35001020762|2 +829282|35001020767|4 +929267|35001020769|2 +730872|35001020780|2 +581089|35001020782|2 +504810|35001020817|2 +511675|35001020818|2 +773046|35001020875|2 +589755|35001020944|2 +678762|35001020945|2 +745529|35001020947|2 +661121|35001020949|2 +556009|35001021059|2 +541947|35001021231|2 +518217|35001021241|2 +887563|35001021245|2 +734820|35001021248|2 +669458|35001021249|2 +768974|35001021253|2 +659443|35001021254|2 +714789|35001021258|2 +899130|35001021260|2 +707356|35001021701|2 +894363|35001021708|2 +494832|35001021755|2 +663387|35001021842|2 +724430|35001021843|2 +494745|35001021848|2 +780256|35001021854|2 +846029|35001022000|2 +682666|35001022168|2 +726743|35001022335|2 +778700|35001022342|2 +666647|35001022343|2 +647359|35001022344|2 +762797|35001022352|2 +768424|35001022354|2 +856614|35001022449|2 +466761|35001022750|2 +672972|35001022762|2 +677009|35001022765|2 +453895|35001022766|2 +795361|35001022772|2 +869162|35001022782|2 +451486|35001022787|2 +550565|35001022908|2 +835742|35001023225|4 +683683|35001023256|2 +722715|35001023390|2 +793819|35001023414|2 +751486|35001023421|2 +662400|35001023422|2 +646364|35001023457|2 +734819|35001023784|2 +653224|35001023799|2 +676982|35001023806|2 +529237|35001023819|2 +773431|35001023822|2 +901203|35001024369|2 +634853|35001024777|2 +617692|35001024812|2 +868344|35001024837|2 +495552|35001024845|2 +653145|35001024852|2 +708706|35001024858|2 +875468|35001024859|2 +474282|35001024861|2 +554993|35001024895|2 +856136|35001024920|2 +839534|35001024921|4 +839521|35001024923|4 +803253|35001024924|2 +695262|35001024925|2 +837698|35001024927|6 +552916|35001024939|2 +454208|35001024942|2 +1220212|35001024943|2 +599414|35001024949|2 +576642|35001024953|2 +752935|35001024956|2 +492209|35001025006|2 +782678|35001025010|2 +990440|35001025017|2 +764358|35001025018|2 +751527|35001025032|2 +556536|35001025043|2 +608155|35001025044|2 +621090|35001025047|2 +556841|35001025048|2 +766756|35001025056|2 +678960|35001025058|2 +830289|35001025061|4 +577779|35001025062|2 +791586|35001025063|2 +791587|35001025064|2 +662557|35001025067|2 +721419|35001025168|2 +855384|35001025183|2 +791647|35001025193|2 +689570|35001025197|2 +744332|35001025282|2 +826985|35001025361|4 +797343|35001025364|2 +607092|35001025434|2 +763084|35001025435|2 +542291|35001025930|2 +759261|35001025933|2 +707804|35001025946|2 +554537|35001025960|2 +772853|35001025964|2 +899147|35001026106|2 +1171728|35001026279|2 +477512|35001026285|2 +523686|35001026287|2 +534161|35001026292|2 +638750|35001026293|2 +472611|35001026294|2 +481281|35001026307|2 +561112|35001026317|2 +782563|35001026321|2 +828074|35001026327|4 +566631|35001026358|2 +597126|35001026364|2 +879440|35001026365|2 +514633|35001026369|2 +773545|35001026664|2 +736314|35001026679|2 +633700|35001026692|2 +520345|35001026695|2 +807107|35001026715|2 +471336|35001026718|2 +673661|35001026751|2 +578945|35001026770|2 +900415|35001026791|2 +825710|35001026798|4 +724487|35001026814|2 +806329|35001026968|4 +535868|35001026974|2 +1252185|35001026979|2 +451487|35001026981|2 +685524|35001027003|2 +759418|35001027216|2 +720940|35001027264|2 +488055|35001027269|2 +1091271|35001027271|2 +1162911|35001027277|2 +792736|35001027280|2 +503040|35001027387|2 +531323|35001027388|2 +472109|35001027392|2 +472035|35001027400|2 +801811|35001027432|2 +554342|35001027443|2 +700417|35001027456|2 +829357|35001027457|4 +604466|35001027460|2 +767447|35001027464|2 +775043|35001027470|2 +860384|35001027497|2 +875488|35001027500|2 +1181480|35001027501|2 +741870|35001027507|2 +827290|35001027513|4 +619927|35001027608|2 +495041|35001027618|2 +492094|35001027619|2 +515251|35001027622|2 +739615|35001027633|2 +537571|35001027688|2 +647935|35001027702|2 +481930|35001027728|2 +570669|35001027729|2 +646321|35001027776|2 +527807|35001027778|2 +713231|35001027779|2 +659481|35001027781|2 +860952|35001027782|2 +721685|35001027783|2 +465086|35001027784|2 +862013|35001027786|2 +615125|35001027847|2 +492886|35001027854|2 +653149|35001027855|2 +658505|35001027856|2 +549472|35001027857|2 +472667|35001027879|2 +775846|35001027883|2 +452970|35001027889|2 +876373|35001027903|2 +775927|35001027911|2 +560986|35001027913|2 +488716|35001027919|2 +515382|35001027936|2 +709706|35001027944|2 +679625|35001027946|2 +592363|35001027948|2 +617524|35001027975|2 +833361|35001028003|4 +506698|35001028005|2 +777423|35001028013|2 +466750|35001028207|2 +602140|35001028210|2 +855603|35001028367|2 +714846|35001028457|2 +536456|35001028529|2 +700830|35001028531|2 +773457|35001028538|2 +457739|35001028539|2 +777424|35001028595|2 +825674|35001028607|4 +785419|35001028609|2 +899330|35001028612|2 +631359|35001028615|2 +851776|35001028643|2 +537351|35001028646|2 +754485|35001028647|2 +550769|35001028654|2 +703154|35001028665|2 +510581|35001028741|2 +605870|35001028742|2 +463023|35001028744|2 +771583|35001028745|2 +715584|35001029104|2 +786125|35001029105|2 +878371|35001029109|4 +637275|35001029123|2 +800178|35001029134|2 +870290|35001029137|2 +693058|35001029144|2 +806353|35001029149|2 +644019|35001029158|2 +804878|35001029161|2 +706891|35001029212|2 +687972|35001029282|2 +469965|35001029286|2 +883412|35001029298|2 +707097|35001029303|2 +736056|35001029309|2 +860829|35001029311|2 +773907|35001029312|2 +534046|35001029317|2 +546910|35001029356|2 +650197|35001029520|2 +656282|35001029527|2 +770962|35001029536|2 +863529|35001029568|2 +873798|35001029572|2 +544384|35001029633|2 +454305|35001029634|2 +866387|35001029640|2 +613258|35001029641|2 +473289|35001029652|2 +707400|35001029653|2 +631352|35001029801|2 +802652|35001029805|2 +878740|35001029807|2 +614133|35001029818|2 +597890|35001029882|2 +661991|35001029883|2 +875033|35001030052|2 +798022|35001030056|2 +710062|35001030062|2 +528268|35001030069|2 +646226|35001030072|2 +652212|35001030124|2 +560756|35001030125|2 +600979|35001030126|2 +741897|35001030128|2 +798023|35001030129|2 +490680|35001030402|2 +569367|35001030483|2 +761127|35001030485|2 +661878|35001030486|2 +842104|35001030489|2 +597519|35001030491|2 +879113|35001030492|2 +631158|35001030499|2 +466748|35001030500|2 +732786|35001030510|2 +825578|35001030514|4 +664870|35001030530|2 +504568|35001030531|2 +473725|35001030532|2 +865124|35001030539|2 +727951|35001030575|2 +684588|35001030590|2 +798155|35001030593|2 +852448|35001030596|2 +732832|35001030619|2 +601850|35001030731|2 +644411|35001030765|2 +528170|35001030793|2 +667186|35001030797|2 +708209|35001030805|2 +740548|35001030808|2 +783330|35001030811|2 +553886|35001030814|2 +875931|35001030818|2 +885334|35001030839|2 +1081214|35001030941|2 +545562|35001030998|2 +543842|35001031068|2 +552298|35001031069|2 +707003|35001031071|2 +887272|35001031074|2 +484707|35001031132|2 +558049|35001031134|2 +671857|35001031135|2 +857937|35001031137|2 +486365|35001031141|2 +608936|35001031295|2 +682587|35001031337|2 +730512|35001031339|2 +722597|35001031341|2 +839909|35001031344|4 +536457|35001031357|2 +927628|35001031359|2 +549738|35001031531|2 +658837|35001031532|2 +527331|35001031533|2 +713115|35001031534|2 +630312|35001031575|2 +699759|35001031576|2 +784791|35001031580|2 +694611|35001031585|2 +829487|35001031593|4 +548410|35001031715|2 +759427|35001031718|2 +809712|35001031758|2 +485708|35001031789|4 +851415|35001031790|2 +514654|35001031819|2 +613737|35001031820|4 +853797|35001031821|4 +684168|35001031930|2 +692685|35001031931|2 +882471|35001032002|2 +766567|35001032005|2 +596693|35001032014|2 +525962|35001032015|2 +868168|35001032020|2 +622660|35001032056|2 +692974|35001032527|2 +742739|35001032539|2 +763074|35001032546|2 +856490|35001032547|2 +473634|35001032554|2 +839026|35001032566|4 +617867|35001032568|2 +594528|35001032573|2 +757446|35001032575|2 +675072|35001032576|2 +723175|35001032581|2 +843605|35001032582|2 +509726|35001032583|2 +645725|35001032588|2 +755575|35001032589|2 +879797|35001032599|2 +718608|35001032621|2 +513348|35001032628|2 +484217|35001032633|2 +1198849|35001032636|2 +835494|35001032639|6 +562862|35001032640|2 +571543|35001032657|2 +493736|35001032662|2 +790949|35001032666|2 +839840|35001032762|4 +617515|35001032875|2 +631468|35001032876|2 +494081|35001032880|2 +560406|35001032930|2 +760956|35001032947|2 +690889|35001033370|2 +837966|35001033374|4 +510751|35001033383|2 +884786|35001033384|2 +773850|35001033385|2 +838164|35001033391|4 +675016|35001033404|2 +537449|35001033466|2 +560032|35001033490|2 +722532|35001033495|2 +735481|35001033498|2 +528069|35001033504|2 +481711|35001033680|2 +614448|35001033683|2 +879314|35001033699|2 +681130|35001033747|2 +897216|35001033756|2 +494513|35001033757|2 +674657|35001033775|2 +696764|35001033827|2 +871852|35001033829|2 +507630|35001033841|2 +518801|35001033976|2 +802437|35001033977|2 +658358|35001033986|2 +697210|35001033996|2 +871392|35001034015|2 +572868|35001034016|2 +534216|35001034017|2 +770409|35001034023|2 +856100|35001034033|2 +620992|35001034158|2 +567288|35001034168|2 +763934|35001034170|2 +454637|35001034171|2 +792440|35001034253|2 +842915|35001034289|2 +588050|35001034298|2 +622711|35001034300|2 +765076|35001034302|2 +829952|35001034303|4 +892052|35001034315|2 +620756|35001034320|2 +472278|35001034325|2 +473523|35001034366|2 +511944|35001034432|2 +541754|35001034434|2 +455043|35001034439|2 +452226|35001034440|2 +565690|35001034558|2 +474389|35001034605|2 +683970|35001034609|2 +760831|35001034612|4 +584652|35001034614|2 +538223|35001034627|2 +590481|35001034753|2 +639681|35001034754|2 +687185|35001034755|2 +883524|35001034757|2 +526172|35001034918|2 +593058|35001034926|2 +652131|35001034927|2 +800395|35001034934|2 +491898|35001035057|2 +500044|35001035060|2 +601280|35001035074|2 +627359|35001035075|2 +762243|35001035079|2 +781143|35001035082|2 +702096|35001035240|2 +627890|35001035366|2 +769052|35001035367|2 +837988|35001035368|4 +668753|35001035369|2 +847181|35001035372|2 +577966|35001035379|2 +462923|35001035429|2 +530720|35001035436|2 +628952|35001035439|2 +726850|35001035445|2 +884424|35001035459|2 +553971|35001035536|2 +578201|35001035724|2 +553157|35001035734|4 +809054|35001035735|2 +889568|35001035736|2 +507731|35001035737|2 +518277|35001035738|2 +836476|35001035740|4 +539577|35001035834|2 +772535|35001035838|2 +503125|35001035853|2 +486547|35001035893|2 +567311|35001035918|2 +654636|35001035920|2 +545604|35001035922|2 +691703|35001035923|2 +617460|35001035927|2 +877476|35001035928|2 +554733|35001035934|2 +746705|35001035999|2 +530662|35001036063|2 +518261|35001036064|2 +795721|35001036109|2 +884006|35001036111|2 +451740|35001036115|2 +696360|35001036245|2 +846235|35001036249|2 +866179|35001036282|2 +786357|35001036295|2 +500832|35001036322|2 +887109|35001036396|2 +586413|35001036442|2 +804619|35001036445|2 +753660|35001036446|2 +873181|35001036447|2 +856459|35001036448|2 +546917|35001036449|2 +894141|35001036543|2 +529752|35001036546|2 +607927|35001036547|2 +519150|35001036661|2 +532995|35001036665|2 +544568|35001036667|2 +727589|35001036673|2 +737851|35001036675|2 +806448|35001036755|2 +549691|35001036756|2 +691306|35001036762|2 +555371|35001036775|2 +461808|35001036778|2 +597230|35001037043|2 +680628|35001037046|2 +712763|35001037048|2 +727568|35001037049|2 +889700|35001037052|2 +694587|35001037169|2 +836887|35001037176|4 +576309|35001037186|2 +619041|35001037214|2 +509439|35001037296|2 +852762|35001037297|2 +487277|35001037466|2 +644815|35001037468|2 +646442|35001037475|2 +838567|35001037476|4 +779149|35001037534|2 +568245|35001037684|2 +623736|35001037687|2 +599428|35001037700|2 +663078|35001037702|2 +694940|35001037703|2 +804656|35001037704|2 +870355|35001037868|2 +519633|35001037872|2 +541097|35001037964|2 +645727|35001037967|2 +478947|35001038086|2 +545613|35001038155|2 +735189|35001038175|2 +684993|35001038303|2 +808426|35001038399|2 +898195|35001038403|2 +531776|35001038425|2 +614458|35001038442|2 +644248|35001038581|2 +727371|35001038694|2 +765673|35001038695|2 +797319|35001038697|2 +642091|35001038704|2 +593400|35001038792|2 +606777|35001038794|2 +774240|35001038799|2 +607139|35001038938|2 +700083|35001038940|2 +847867|35001038941|2 +781201|35001038951|2 +720073|35001038963|2 +836509|35001038987|4 +619998|35001039156|2 +721664|35001039178|2 +496477|35001039225|2 +501864|35001039226|2 +869148|35001039229|2 +631171|35001039342|2 +859342|35001039423|2 +784357|35001039425|2 +534767|35001039427|2 +579514|35001039568|2 +507112|35001039570|2 +869924|35001039583|2 +772196|35001039591|2 +869566|35001039630|2 +712044|35001039631|2 +782351|35001039680|2 +880948|35001039685|2 +483538|35001039688|2 +710831|35001039806|2 +757923|35001039808|2 +647540|35001039809|2 +780402|35001039813|2 +844017|35001039816|2 +473454|35001039860|2 +500732|35001039861|2 +531089|35001039863|2 +532769|35001039864|2 +539279|35001039865|2 +566893|35001039866|2 +571146|35001039869|2 +572310|35001039870|2 +596310|35001039871|2 +603102|35001039872|2 +866477|35001039873|2 +604389|35001039874|2 +746435|35001039876|2 +638142|35001039878|2 +773785|35001039879|2 +796079|35001039880|2 +661922|35001039881|2 +669009|35001039882|2 +676603|35001039886|2 +679965|35001039887|2 +710242|35001039889|4 +712552|35001039890|2 +713100|35001039891|2 +515428|35001039892|2 +728957|35001039893|2 +743377|35001039894|2 +762844|35001039896|2 +773441|35001039897|2 +777560|35001039899|2 +784855|35001039901|2 +807045|35001039905|2 +804931|35001039906|2 +853753|35001039909|2 +869310|35001039912|2 +897320|35001039913|2 +501979|35001039926|2 +791741|35001039946|2 +474588|35001040043|2 +787437|35001040045|2 +803257|35001040047|2 +875019|35001040048|2 +596157|35001040096|2 +468313|35001040151|2 +849029|35001040157|2 +800599|35001040176|2 +1264482|35001040279|2 +895296|35001040316|2 +502380|35001040318|2 +712244|35001040323|2 +515846|35001040495|2 +457656|35001040504|2 +478418|35001040561|2 +571971|35001040563|2 +618208|35001040565|2 +688043|35001040571|2 +696710|35001040572|2 +787673|35001040575|2 +863419|35001040578|2 +489032|35001040598|2 +855317|35001040608|2 +737197|35001040701|2 +631914|35001040703|2 +864783|35001040819|2 +635173|35001040821|2 +718234|35001040824|2 +619687|35001040833|2 +834643|35001040932|4 +635592|35001040935|4 +658448|35001040941|2 +658451|35001040942|2 +703143|35001040945|2 +708828|35001040955|2 +678606|35001041154|2 +720756|35001041163|2 +730871|35001041167|2 +716926|35001041222|2 +700831|35001041223|2 +631284|35001041325|2 +877705|35001041327|2 +486002|35001041355|2 +878260|35001041360|2 +540238|35001041472|2 +646060|35001041475|2 +786528|35001041477|2 +840778|35001041507|2 +871244|35001041514|2 +727789|35001041603|2 +567093|35001041620|2 +884938|35001041633|2 +658572|35001041652|2 +526150|35001041691|2 +576808|35001041693|2 +863749|35001041705|2 +509780|35001041854|2 +753176|35001041864|2 +601921|35001041869|2 +866748|35001041870|2 +807216|35001041877|2 +829799|35001041879|4 +594533|35001041925|2 +515463|35001041964|2 +1122044|35001041969|2 +550525|35001042047|2 +871654|35001042070|2 +888651|35001042074|2 +566815|35001042158|2 +624997|35001042159|2 +764402|35001042161|2 +768305|35001042329|2 +809706|35001042330|2 +557991|35001042475|2 +728167|35001042485|2 +803996|35001042493|2 +474379|35001042656|2 +714887|35001042661|2 +871542|35001042664|2 +897606|35001042667|2 +571937|35001042779|2 +804532|35001042786|2 +587121|35001042831|2 +782411|35001042947|2 +495581|35001043051|2 +557353|35001043055|2 +690922|35001043064|2 +869652|35001043206|2 +545173|35001043295|2 +546260|35001043431|2 +841076|35001043558|2 +780831|35001043600|2 +898921|35001043602|2 +897000|35001043604|2 +652437|35001043699|2 +675148|35001043709|2 +686494|35001043712|2 +839271|35001043720|4 +579405|35001043725|2 +628172|35001043746|2 +718332|35001043800|2 +842441|35001043803|2 +878274|35001043807|2 +901446|35001043813|4 +737122|35001043822|2 +861967|35001043827|2 +867238|35001043831|2 +877608|35001043839|2 +510580|35001043863|2 +483650|35001044002|2 +544007|35001044011|2 +544260|35001044017|2 +635033|35001044021|2 +652322|35001044025|2 +729578|35001044031|2 +739139|35001044034|2 +868627|35001044037|2 +892149|35001044038|2 +928435|35001044041|2 +954471|35001044045|2 +646841|35001044066|2 +548754|35001044171|2 +774166|35001044178|2 +783495|35001044207|2 +564814|35001044287|2 +660920|35001044290|2 +474412|35001044302|2 +617146|35001044310|2 +601078|35001044326|2 +572301|35001044397|2 +754592|35001044401|2 +645283|35001044403|2 +471144|35001044521|2 +735308|35001044529|2 +591615|35001044542|2 +662553|35001044654|2 +527125|35001044655|2 +664289|35001044657|2 +726767|35001044658|2 +770076|35001044659|2 +833561|35001044660|4 +883932|35001044661|2 +506020|35001044714|2 +611078|35001044758|2 +795817|35001044962|4 +538090|35001044979|2 +890651|35001044984|2 +716604|35001044994|2 +452461|35001044998|2 +875180|35001045002|2 +798843|35001045024|2 +620428|35001045155|2 +685483|35001045156|2 +666477|35001045157|2 +573219|35001045159|2 +738802|35001045160|2 +888756|35001045279|2 +545817|35001045312|2 +644334|35001045391|2 +703149|35001045392|2 +827554|35001045396|4 +881715|35001045428|2 +652259|35001045525|2 +669477|35001045530|2 +772566|35001045539|2 +478654|35001045679|2 +535940|35001045696|2 +678607|35001045828|2 +703112|35001045829|2 +600512|35001045961|2 +630127|35001045964|2 +745785|35001045966|2 +763709|35001045973|2 +802892|35001045976|2 +638919|35001046019|2 +570736|35001046076|2 +717072|35001046113|2 +511527|35001046156|2 +613824|35001046161|2 +761909|35001046162|2 +578769|35001046165|2 +892363|35001046166|2 +1166090|35001046171|2 +700731|35001046241|2 +733622|35001046244|2 +761883|35001046245|2 +540960|35001046337|2 +642829|35001046374|2 +544463|35001046424|2 +691046|35001046425|2 +754056|35001046427|2 +459869|35001046428|2 +508805|35001046462|2 +532186|35001046464|2 +825939|35001046465|4 +481134|35001046472|2 +724201|35001046577|2 +706957|35001046578|2 +465726|35001046617|2 +777431|35001046622|2 +1187334|35001046661|2 +458109|35001047174|2 +695239|35001047178|2 +749189|35001047179|2 +807217|35001047183|2 +808065|35001047212|2 +529503|35001047269|2 +529504|35001047270|2 +709763|35001047283|2 +786089|35001047379|2 +803706|35001047380|2 +864057|35001047384|2 +718971|35001047516|2 +652936|35001047522|2 +886398|35001047526|2 +555604|35001048016|2 +500737|35001048028|2 +651779|35001048060|2 +791342|35001048061|2 +807345|35001048062|2 +497880|35001048072|2 +781186|35001048077|2 +718438|35001048209|2 +615881|35001048238|2 +734144|35001048254|2 +764492|35001048367|2 +846127|35001048369|2 +730230|35001048377|2 +529160|35001048380|2 +577441|35001048474|2 +565326|35001048548|2 +659480|35001048597|2 +778926|35001048604|2 +794356|35001048796|2 +670781|35001048803|2 +772119|35001048812|2 +640440|35001048948|2 +640487|35001048950|2 +650980|35001049020|2 +770404|35001049041|2 +682869|35001049044|2 +481317|35001049209|2 +678500|35001049211|2 +830285|35001049228|4 +888833|35001049229|2 +760964|35001049235|2 +774005|35001049276|2 +494466|35001049312|2 +773617|35001049314|4 +496916|35001049331|2 +787516|35001049333|2 +705236|35001049368|2 +770989|35001049372|2 +724359|35001049382|2 +830193|35001049391|4 +826519|35001049399|4 +720831|35001049505|2 +854509|35001049519|2 +929247|35001049521|2 +619979|35001049531|2 +758644|35001049532|2 +520165|35001049594|2 +712236|35001049600|2 +722582|35001049648|2 +862740|35001049668|2 +762033|35001049706|2 +708429|35001049721|2 +534067|35001049856|2 +804415|35001049859|2 +467867|35001049861|2 +549700|35001049865|2 +889757|35001049871|2 +460326|35001049880|2 +697651|35001049958|2 +698137|35001049960|2 +704052|35001049963|2 +829039|35001050000|4 +668093|35001050178|2 +530838|35001050183|2 +800958|35001050197|2 +672577|35001050227|2 +548641|35001050482|2 +1154129|35001050486|2 +595983|35001050488|2 +669747|35001050492|2 +594180|35001050495|2 +638147|35001050793|2 +633417|35001050794|2 +828742|35001050795|4 +497894|35001050798|2 +886664|35001050844|2 +859363|35001050848|2 +579483|35001050863|2 +784640|35001051332|2 +622585|35001051414|2 +770941|35001051417|2 +769132|35001051437|4 +590475|35001051444|2 +674467|35001051448|2 +761074|35001051459|2 +648105|35001051625|2 +713851|35001051631|2 +778704|35001051632|2 +726129|35001051639|2 +480199|35001051644|2 +799359|35001051649|2 +672140|35001051653|2 +596999|35001051793|2 +493603|35001051815|2 +838143|35001051818|4 +838233|35001051826|2 +544796|35001051827|2 +714610|35001051829|2 +801142|35001051832|2 +507829|35001052161|2 +599505|35001052480|2 +692423|35001052485|2 +844339|35001052547|2 +616241|35001052666|2 +717850|35001052675|2 +532516|35001052679|2 +807438|35001052686|2 +848276|35001052746|2 +689612|35001052759|2 +488898|35001052803|2 +640274|35001052805|2 +652884|35001052943|2 +692762|35001052973|2 +718599|35001053000|2 +1074231|35001053109|2 +779095|35001053331|2 +556517|35001053380|2 +472809|35001053644|2 +514528|35001053645|2 +729118|35001053654|2 +465074|35001053658|2 +796113|35001053917|2 +881782|35001053971|2 +887400|35001054194|2 +836816|35001054196|4 +833023|35001054215|4 +561912|35001054297|2 +744769|35001054322|2 +718824|35001054342|2 +663699|35001054355|2 +871214|35001054365|2 +518015|35001054366|2 +715149|35001054368|2 +693611|35001054373|2 +504339|35001054374|2 +480666|35001054384|2 +867912|35001054443|2 +799469|35001054457|2 +775967|35001054459|2 +651130|35001054462|2 +780497|35001054463|2 +583468|35001054464|2 +496921|35001054468|2 +587791|35001054482|2 +558558|35001054485|2 +860179|35001054493|2 +602403|35001054499|2 +590841|35001054515|2 +752872|35001054523|2 +489975|35001054542|2 +473407|35001054557|2 +895900|35001054560|2 +618223|35001054582|2 +575068|35001054698|2 +538404|35001054710|2 +630736|35001054718|2 +676941|35001054720|2 +651738|35001054862|2 +505488|35001055065|2 +612958|35001055069|2 +724586|35001055097|2 +890103|35001055099|2 +707377|35001055194|2 +740270|35001055883|2 +829794|35001056014|4 +671062|35001056022|2 +694303|35001056028|2 +835430|35001056042|4 +486511|35001056066|2 +635849|35001056068|2 +550566|35001056070|2 +770140|35001056095|2 +632605|35001056188|2 +532617|35001056209|2 +488061|35001056259|2 +697415|35001056260|2 +532384|35001057610|2 +669592|35001057632|2 +666061|35001057634|2 +645444|35001057659|2 +799561|35001057695|2 +787075|35001057701|2 +759335|35001057703|2 +596974|35001057708|2 +593438|35001057712|2 +590526|35001057748|2 +795261|35001057749|2 +664328|35001057750|2 +567843|35001057751|2 +763279|35001057766|2 +601876|35001057776|2 +706849|35001057781|4 +1071788|35001057788|2 +539819|35001057792|4 +853302|35001057797|2 +718622|35001057851|2 +888824|35001058059|2 +877201|35001058066|2 +653577|35001058113|2 +481896|35001058140|2 +469090|35001058158|2 +807637|35001058167|2 +554788|35001058172|2 +714654|35001058178|2 +515881|35001058190|2 +610776|35001058193|2 +805818|35001058195|2 +572589|35001058219|2 +572518|35001058222|2 +853262|35001058225|2 +873243|35001058797|2 +740188|35001058819|2 +565745|35001058821|2 +894882|35001058993|2 +567586|35001058997|2 +607754|35001059009|2 +537242|35001059092|2 +500347|35001059096|2 +1252184|35001059097|2 +630465|35001059228|2 +896255|35001059297|2 +480843|35001059298|2 +491186|35001059299|2 +570721|35001059316|2 +747695|35001059821|2 +857567|35001059905|2 +579496|35001059914|2 +544993|35001059918|2 +514743|35001060063|2 +838474|35001060098|4 +483142|35001060100|2 +757547|35001060107|2 +531334|35001060126|2 +712517|35001060128|2 +866483|35001060130|2 +548275|35001060131|2 +869332|35001060146|2 +683978|35001060752|2 +805837|35001060758|2 +467512|35001060766|2 +876139|35001060768|2 +685484|35001060774|2 +610128|35001060783|2 +530551|35001060787|2 +745786|35001060789|2 +560707|35001060790|2 +856933|35001060797|2 +662173|35001060804|2 +501993|35001060805|2 +596390|35001060806|2 +714048|35001060807|2 +590648|35001060824|2 +865378|35001060832|2 +510548|35001060847|2 +884047|35001060939|2 +526968|35001060990|2 +786083|35001060991|2 +786084|35001060992|2 +596649|35001061047|2 +764787|35001061055|2 +658570|35001061058|2 +845502|35001061069|2 +534775|35001061072|2 +791271|35001061075|2 +505495|35001061076|2 +838559|35001061089|4 +757168|35001061091|2 +719369|35001061094|2 +848668|35001061096|2 +689037|35001061097|2 +591678|35001061099|2 +676914|35001061101|2 +855197|35001061106|2 +546724|35001061109|2 +832840|35001061111|4 +860224|35001061121|2 +551997|35001061123|2 +712871|35001061124|2 +477260|35001061131|2 +700596|35001061502|2 +553806|35001061507|2 +642761|35001061510|2 +617272|35001061734|2 +590480|35001061736|2 +520413|35001061738|2 +786274|35001061740|2 +727206|35001061741|2 +707706|35001061742|2 +678598|35001061745|2 +805360|35001061747|2 +776586|35001061748|2 +755159|35001061749|2 +853106|35001061752|2 +740274|35001061757|2 +567696|35001061758|2 +878240|35001061759|2 +468344|35001061760|2 +526914|35001061763|2 +558045|35001061765|2 +530876|35001062100|2 +534768|35001062102|2 +713609|35001062103|2 +726720|35001062104|2 +869368|35001062177|2 +712230|35001062182|2 +534824|35001062187|2 +530926|35001062188|2 +835608|35001062206|6 +711045|35001062209|2 +584556|35001062223|2 +554702|35001062225|2 +678539|35001062282|2 +893246|35001062304|2 +565306|35001062344|2 +601843|35001062347|2 +706792|35001062352|2 +567774|35001062357|2 +552551|35001062358|2 +857681|35001062363|2 +657854|35001062364|2 +559164|35001062365|2 +596071|35001062366|2 +576825|35001062367|2 +804156|35001062375|2 +885968|35001062378|2 +842113|35001062379|2 +597342|35001062380|2 +551036|35001062381|2 +805089|35001062386|2 +745291|35001062388|2 +597415|35001062389|2 +879545|35001062407|2 +670642|35001062413|2 +879505|35001062503|2 +657594|35001062510|2 +597748|35001062511|2 +589757|35001062529|2 +774383|35001062604|2 +731145|35001062610|2 +730973|35001062612|2 +700207|35001062617|2 +1221082|35001062622|2 +531078|35001062632|2 +830194|35001062638|4 +775457|35001062640|2 +755234|35001062655|2 +628876|35001062657|2 +770482|35001062665|2 +571805|35001062672|2 +778409|35001062678|2 +761296|35001062695|2 +634465|35001062697|2 +625439|35001062701|2 +523982|35001062707|2 +470711|35001062708|2 +711781|35001062710|2 +666419|35001062717|2 +820261|35001062761|2 +606152|35001062855|2 +829029|35001062860|4 +671126|35001062903|2 +488566|35001062907|2 +593529|35001062908|2 +471037|35001062918|2 +461806|35001062921|2 +578488|35001062922|2 +474605|35001062926|2 +480392|35001062927|2 +514373|35001062946|2 +859752|35001062970|2 +507920|35001062971|2 +513798|35001062972|2 +771712|35001062977|2 +692175|35001062989|2 +587293|35001062994|2 +722441|35001062996|2 +691651|35001062997|2 +1060139|35001063001|2 +739693|35001063005|2 +706276|35001063009|2 +869879|35001063013|2 +842359|35001063019|2 +747964|35001063022|2 +553435|35001063033|2 +739075|35001063035|2 +582076|35001063037|2 +622812|35001063043|2 +747377|35001063045|2 +451981|35001063047|2 +683864|35001063136|2 +787876|35001063740|2 +665202|35001063752|2 +593158|35001063756|2 +795723|35001063773|2 +707220|35001063782|2 +785843|35001063786|2 +732420|35001063787|2 +590005|35001063790|2 +902120|35001063795|2 +764975|35001063802|2 +826949|35001063839|4 +891830|35001063873|2 +578467|35001063881|2 +770068|35001063923|2 +847466|35001063984|2 +742492|35001063985|2 +544449|35001064001|2 +564882|35001064044|2 +684129|35001064077|2 +806548|35001064081|2 +628096|35001064145|2 +707542|35001064146|2 +508660|35001064152|2 +649700|35001064169|2 +872617|35001064175|2 +772733|35001064179|2 +792072|35001064206|2 +585891|35001064214|2 +546231|35001064243|2 +800689|35001064245|2 +667495|35001064246|2 +524370|35001064250|2 +676438|35001064253|2 +624042|35001064262|2 +720374|35001064273|2 +680748|35001064279|2 +833359|35001064287|4 +741871|35001064317|2 +858193|35001064377|2 +620853|35001064383|2 +501968|35001064397|2 +590839|35001064401|2 +510405|35001064403|2 +855189|35001064416|2 +889135|35001064418|2 +651181|35001064428|2 +552448|35001064692|2 +682857|35001064711|2 +474888|35001064813|2 +607361|35001064815|2 +470402|35001064928|2 +459992|35001064935|2 +484248|35001064939|2 +527066|35001064941|4 +580268|35001064947|2 +685301|35001064957|2 +594521|35001064972|2 +1165828|35001064976|2 +523018|35001064982|2 +776907|35001064983|2 +674310|35001064985|2 +549125|35001064992|2 +856076|35001064998|2 +546365|35001065003|2 +720010|35001065010|2 +839708|35001065011|4 +649519|35001065012|2 +809050|35001065015|2 +881163|35001065019|2 +715703|35001065023|2 +720854|35001065034|2 +562543|35001065061|2 +764252|35001065089|2 +853183|35001065095|2 +680522|35001065103|2 +601965|35001065118|2 +713199|35001065184|2 +566979|35001065443|2 +793049|35001065450|2 +576656|35001065459|2 +605434|35001065472|2 +864099|35001065614|2 +709880|35001065621|2 +553028|35001065746|2 +760277|35001065816|2 +571420|35001065879|2 +643805|35001065914|2 +809692|35001065920|2 +597288|35001066199|2 +871169|35001066215|2 +745315|35001066588|2 +808346|35001066591|2 +745450|35001066598|2 +807319|35001066780|2 +725365|35001066789|2 +882267|35001066837|2 +715302|35001066847|2 +597137|35001066858|2 +639285|35001066861|2 +830269|35001066865|4 +578043|35001066868|2 +929082|35001066874|2 +545167|35001066878|2 +777324|35001066882|2 +845346|35001066885|2 +873086|35001066886|2 +769134|35001066893|4 +766233|35001066896|2 +500184|35001066918|2 +566774|35001066934|2 +794732|35001066936|2 +586244|35001066942|2 +844956|35001066946|2 +1205996|35001066949|2 +614278|35001066958|2 +499117|35001066962|2 +860997|35001067030|2 +792885|35001067031|2 +685684|35001067082|2 +772593|35001067108|2 +519500|35001067111|2 +527629|35001067125|2 +545739|35001067140|2 +543606|35001067151|2 +751496|35001067153|2 +692154|35001067186|2 +779327|35001067209|2 +702398|35001067216|2 +806570|35001067237|2 +612866|35001067445|2 +493331|35001067462|2 +505525|35001067778|2 +468492|35001067788|2 +454638|35001067793|2 +860215|35001067800|2 +679041|35001067813|2 +616104|35001067818|2 +851841|35001067871|2 +851674|35001067920|2 +597416|35001067952|2 +712856|35001068224|2 +597138|35001068225|2 +806471|35001068431|2 +530179|35001068436|2 +753094|35001068503|2 +753056|35001068504|2 +474423|35001068626|2 +474092|35001068631|2 +669306|35001068638|2 +806361|35001068659|2 +628881|35001068663|2 +891158|35001068665|2 +583524|35001068671|2 +1120288|35001068686|2 +1120289|35001068697|2 +777024|35001068785|2 +479194|35001068811|2 +721427|35001068818|2 +652803|35001068842|2 +668605|35001068847|2 +557266|35001068853|2 +681502|35001068856|2 +666228|35001068866|2 +582759|35001068872|2 +717290|35001068881|4 +798708|35001068884|2 +874997|35001068887|2 +485679|35001068900|2 +897505|35001068901|2 +510185|35001068903|2 +733867|35001068907|2 +623659|35001068913|2 +860226|35001068942|2 +807853|35001068949|2 +888605|35001069168|2 +495909|35001069182|2 +840974|35001069192|2 +569327|35001069200|2 +871413|35001069204|2 +897190|35001069434|2 +491164|35001069447|2 +1172347|35001069454|2 +842150|35001069462|2 +790103|35001069498|2 +697074|35001069499|2 +619673|35001069500|2 +865051|35001069508|2 +773594|35001069511|2 +659393|35001069536|2 +460276|35001069539|2 +797696|35001069541|2 +543925|35001069546|2 +547100|35001069548|2 +501099|35001069571|2 +520727|35001069585|2 +876138|35001069607|2 +641641|35001069619|2 +587155|35001069621|2 +739348|35001069630|2 +587119|35001069635|2 +564154|35001069642|2 +605026|35001069652|2 +741206|35001069654|2 +715714|35001069666|2 +474125|35001069686|2 +873100|35001069688|2 +586202|35001069702|2 +744212|35001069711|2 +481926|35001069716|2 +481949|35001069718|2 +615816|35001069721|2 +557499|35001069723|2 +692477|35001069725|2 +506989|35001069729|2 +681092|35001069738|2 +897203|35001069748|2 +722449|35001069766|2 +722450|35001069768|2 +502636|35001069782|2 +872645|35001069786|2 +504998|35001069787|2 +675466|35001069813|2 +701912|35001069814|2 +851783|35001069815|2 +694948|35001069824|2 +598999|35001070601|2 +856911|35001070663|2 +535904|35001070664|2 +686245|35001070666|2 +640531|35001070706|2 +828898|35001070732|4 +484406|35001070749|2 +758176|35001070768|2 +690637|35001071249|2 +763665|35001071372|2 +726728|35001071395|2 +581273|35001071398|2 +554418|35001071405|2 +654668|35001071429|2 +772375|35001071430|2 +566014|35001071437|2 +804297|35001071444|2 +502682|35001071451|2 +683692|35001071460|2 +725412|35001071480|2 +616083|35001071484|2 +661630|35001071491|2 +872906|35001071497|2 +873035|35001071498|2 +678553|35001071501|2 +809962|35001071563|2 +494431|35001071578|2 +1006904|35001071591|2 +497704|35001071628|2 +766113|35001071694|2 +667647|35001071721|4 +804393|35001071725|2 +455415|35001071728|2 +518433|35001071735|2 +696349|35001071756|2 +870863|35001071767|2 +638606|35001071772|2 +896961|35001071774|2 +792824|35001071785|2 +866342|35001072127|2 +670401|35001072863|2 +783261|35001072912|2 +491837|35001072920|2 +858286|35001074195|2 +739929|35001074808|2 +641104|35001076260|2 +546546|35001076516|2 +854133|35001076539|2 +920782|35001076573|2 +860379|35001076589|2 +830277|35001076631|4 +684582|35001076702|2 +870157|35001076706|2 +902052|35001076807|2 +565254|35001076828|2 +583463|35001076941|2 +623679|35001076945|2 +634513|35001076948|2 +516602|35001076958|2 +709905|35001076981|2 +639195|35001077005|2 +498071|35001077009|2 +503197|35001077011|2 +879032|35001077012|2 +1188176|35001077013|2 +578700|35001077014|2 +826049|35001077019|4 +854545|35001077020|2 +518414|35001077025|2 +601910|35001077028|2 +880218|35001077140|2 +669491|35001077142|2 +656466|35001077143|2 +602997|35001077144|2 +529016|35001077145|2 +851293|35001077149|2 +834609|35001077150|2 +763652|35001077156|2 +897224|35001077161|2 +796464|35001077162|2 +769318|35001077163|2 +685342|35001077164|2 +571676|35001077165|2 +657785|35001077166|2 +571889|35001077169|4 +872650|35001077170|2 +796041|35001077171|2 +733893|35001077172|2 +669714|35001077173|2 +510508|35001077174|2 +706065|35001077175|2 +770808|35001077224|2 +769746|35001077226|2 +706927|35001077228|2 +659473|35001077229|2 +869380|35001077263|2 +861360|35001077264|2 +527253|35001077266|2 +527236|35001077267|2 +865738|35001077273|2 +691327|35001077276|2 +882447|35001077286|2 +513973|35001077288|2 +707067|35001077298|2 +587822|35001077299|2 +537440|35001077303|2 +642540|35001077327|2 +650175|35001077336|2 +712075|35001077340|2 +503431|35001077397|2 +593190|35001077441|2 +775656|35001077446|2 +775657|35001077449|2 +851830|35001077513|2 +520822|35001077520|2 +763664|35001077532|2 +560453|35001077539|2 +857248|35001077563|2 +855201|35001077564|2 +1198850|35001077570|2 +868786|35001077576|2 +768435|35001077577|2 +869791|35001077589|2 +754747|35001077597|2 +871253|35001077603|2 +798694|35001077617|2 +686369|35001077619|2 +639284|35001077649|2 +679146|35001077651|2 +1044040|35001077688|2 +827292|35001077710|4 +853976|35001077714|2 +555990|35001077716|2 +712350|35001077718|2 +786793|35001077719|2 +786794|35001077720|2 +766673|35001077722|2 +763158|35001077723|2 +713035|35001077725|2 +685175|35001077726|2 +683038|35001077727|2 +630958|35001077728|2 +512504|35001077741|2 +480043|35001077743|2 +551406|35001077745|2 +571416|35001077750|2 +545808|35001077751|2 +645200|35001077753|2 +677407|35001077756|2 +713885|35001077773|2 +624076|35001077779|2 +488909|35001077784|4 +759649|35001077802|2 +582363|35001077807|2 +582364|35001077809|2 +835065|35001077817|4 +620895|35001077819|2 +770546|35001077822|2 +637417|35001077842|2 +456919|35001077844|2 +587462|35001077858|2 +884142|35001077862|2 +868942|35001077866|2 +835539|35001077916|4 +543053|35001077924|2 +893139|35001078236|2 +512426|35001078252|2 +478174|35001078255|2 +689551|35001078263|2 +653176|35001078266|2 +462283|35001078278|2 +712251|35001078357|2 +873335|35001078369|2 +838832|35001078370|4 +672831|35001078371|2 +700070|35001078474|2 +877770|35001078477|2 +675856|35001078503|2 +653462|35001078513|2 +1166091|35001078519|2 +826812|35001078520|4 +525095|35001078671|2 +759302|35001078672|2 +769687|35001078674|2 +669863|35001078679|2 +777781|35001078680|2 +865108|35001078691|2 +845282|35001078700|2 +484955|35001078713|2 +780532|35001078864|2 +740022|35001078866|2 +722453|35001078868|2 +505952|35001079088|2 +883804|35001079105|2 +520876|35001079117|2 +698867|35001079121|4 +688832|35001079122|2 +687820|35001079124|2 +797922|35001079129|2 +732208|35001079141|2 +473960|35001079144|2 +486501|35001079160|2 +699371|35001079163|2 +579505|35001079233|2 +495509|35001079490|2 +625644|35001079507|2 +656843|35001079509|2 +762390|35001079514|2 +486345|35001079616|2 +747380|35001079618|2 +584605|35001079621|2 +839668|35001079622|4 +839661|35001079626|4 +785786|35001079629|2 +585109|35001079631|2 +678505|35001079871|2 +606214|35001079872|2 +506126|35001079873|2 +842913|35001079876|2 +672038|35001079878|2 +665484|35001079879|2 +657663|35001079890|2 +809870|35001079918|2 +803258|35001079919|2 +801180|35001079920|2 +622466|35001079921|2 +590110|35001079926|2 +725972|35001079931|2 +532586|35001079936|2 +839842|35001080165|4 +694396|35001080166|2 +476915|35001080170|2 +489542|35001080171|2 +559299|35001080173|2 +794176|35001080176|2 +567844|35001080179|2 +735409|35001080348|2 +527748|35001080349|2 +574344|35001080351|2 +601417|35001080352|2 +664230|35001080353|2 +696783|35001080355|2 +488375|35001080374|2 +488370|35001080376|2 +847756|35001080605|2 +639331|35001080609|2 +696902|35001080611|2 +743750|35001080619|2 +614896|35001080625|2 +598185|35001080697|2 +628152|35001080701|2 +505721|35001080725|2 +554182|35001080731|2 +599459|35001080812|2 +610950|35001080813|2 +481159|35001080816|2 +762386|35001080939|2 +873214|35001080951|2 +635854|35001080952|2 +490672|35001080954|2 +667162|35001080962|2 +639199|35001080967|2 +611622|35001080969|2 +615774|35001080970|2 +798860|35001080982|2 +474601|35001081037|2 +652801|35001081040|2 +702860|35001081169|2 +867434|35001081175|2 +783766|35001081258|2 +882395|35001081296|2 +573806|35001081306|2 +490010|35001081320|2 +608197|35001081330|2 +873986|35001081372|2 +769364|35001081373|2 +779615|35001081383|2 +546249|35001081391|2 +758527|35001081402|2 +666181|35001081474|2 +506295|35001081475|2 +502449|35001081586|2 +758249|35001081743|2 +499692|35001081744|2 +516584|35001081750|2 +774702|35001081880|2 +774678|35001081881|2 +714792|35001081949|2 +799178|35001082049|2 +676164|35001082050|2 +566857|35001082132|2 +848569|35001082133|2 +466392|35001082265|2 +853882|35001082290|2 +686243|35001082299|2 +668769|35001082301|2 +841602|35001082553|2 +888173|35001082567|2 +709922|35001082572|2 +573230|35001082574|2 +462741|35001082580|2 +776599|35001082632|2 +896971|35001082633|2 +658176|35001082650|2 +517939|35001082653|2 +858316|35001082655|2 +801836|35001082656|2 +691637|35001082662|2 +727915|35001082663|2 +713003|35001082673|2 +692686|35001082675|2 +872953|35001082693|2 +868441|35001082694|2 +594522|35001082696|2 +709548|35001082704|2 +633612|35001082705|2 +808000|35001082717|2 +534492|35001082720|2 +548026|35001082721|2 +488138|35001082724|2 +779021|35001082778|2 +653026|35001082789|2 +546750|35001082979|2 +500027|35001082982|2 +840612|35001082986|2 +704635|35001082999|2 +577602|35001083000|2 +485296|35001083001|2 +552223|35001083002|2 +669733|35001083003|2 +715791|35001083004|2 +769515|35001083126|2 +686857|35001083136|2 +559215|35001083142|2 +505468|35001083143|2 +500193|35001083144|2 +644773|35001083147|2 +496364|35001083192|2 +523198|35001083195|2 +643581|35001083196|2 +769567|35001083290|2 +767883|35001083401|2 +662805|35001083440|2 +599429|35001083443|2 +577860|35001083444|2 +469138|35001083454|2 +929344|35001083457|2 +571164|35001083608|2 +653933|35001083661|2 +887279|35001083666|2 +643732|35001083667|2 +898384|35001083736|2 +513275|35001083743|2 +808418|35001083748|2 +863339|35001083749|2 +877773|35001083751|2 +743380|35001083840|2 +659545|35001083943|2 +775901|35001083945|2 +783907|35001083946|2 +801174|35001083947|2 +505588|35001084027|2 +522323|35001084028|2 +896348|35001084032|2 +613795|35001084035|2 +483777|35001084134|2 +726524|35001084142|2 +874755|35001084151|2 +786502|35001084153|2 +548882|35001084155|2 +478513|35001084180|2 +760556|35001084199|2 +678262|35001084202|2 +642824|35001084204|2 +483891|35001084207|2 +656486|35001084618|2 +743153|35001084632|2 +556368|35001084634|2 +865937|35001084642|2 +844470|35001084643|2 +808602|35001084644|2 +534013|35001084646|2 +699827|35001084647|2 +690683|35001084648|2 +572539|35001084649|2 +572566|35001084650|2 +726857|35001084651|2 +532380|35001084697|2 +612913|35001084698|2 +692860|35001084702|2 +702440|35001084705|2 +828649|35001084706|4 +451763|35001084707|2 +628408|35001084733|2 +503569|35001084740|2 +846940|35001084782|2 +572588|35001084784|2 +576545|35001084916|2 +595503|35001084922|2 +619021|35001084931|2 +855328|35001085020|2 +843768|35001085021|2 +763983|35001085023|2 +668883|35001085035|2 +778846|35001085037|2 +833306|35001085042|6 +709815|35001085208|2 +728161|35001085211|2 +709816|35001085212|2 +683065|35001085213|2 +707209|35001085215|2 +490142|35001085216|2 +594876|35001085221|2 +761407|35001085223|2 +865149|35001085227|2 +1022299|35001085228|2 +842118|35001085292|2 +634404|35001085328|2 +630317|35001085384|2 +632167|35001085517|2 +757262|35001085522|2 +752365|35001085538|2 +491012|35001085539|2 +716390|35001085579|4 +784815|35001085707|2 +531780|35001085711|2 +743140|35001085712|2 +478541|35001085773|2 +539058|35001085774|2 +493782|35001085776|2 +522370|35001085778|2 +612058|35001085782|2 +738059|35001085792|2 +610913|35001085887|2 +894948|35001085889|2 +773969|35001085965|2 +456430|35001086093|2 +871425|35001086106|2 +614412|35001086109|2 +581503|35001086110|2 +631756|35001086114|2 +880171|35001086116|2 +884323|35001086165|2 +722463|35001086167|2 +558181|35001086178|2 +799208|35001086190|2 +1100119|35001086191|2 +563492|35001086262|2 +540113|35001086264|2 +503990|35001086341|2 +681779|35001086348|2 +586245|35001086466|2 +841604|35001086594|2 +797010|35001086595|2 +784015|35001086597|2 +661187|35001086598|2 +578609|35001086600|2 +857654|35001086656|2 +576635|35001086674|2 +628324|35001086675|2 +689274|35001086676|2 +868995|35001086680|2 +785157|35001086698|2 +453672|35001086730|2 +483197|35001086778|2 +495053|35001086780|2 +595500|35001086783|2 +799777|35001086907|2 +478890|35001086910|2 +490511|35001086911|2 +691782|35001086935|2 +834966|35001086937|4 +862657|35001086940|2 +548456|35001086960|4 +853252|35001086988|2 +717989|35001087042|2 +828055|35001087043|4 +864120|35001087047|2 +744114|35001087110|2 +564390|35001087143|2 +731050|35001087144|2 +454840|35001087149|2 +583296|35001087159|2 +488692|35001087161|2 +767070|35001087162|2 +853259|35001087212|2 +587739|35001087215|2 +677194|35001087287|2 +646355|35001087289|2 +848600|35001087290|2 +638415|35001087317|2 +892176|35001087433|2 +601437|35001087436|2 +501537|35001087437|2 +1187678|35001087444|2 +873957|35001087447|2 +484699|35001087450|2 +726683|35001087456|2 +755871|35001087458|2 +737556|35001087459|2 +732899|35001087465|2 +602752|35001087466|2 +603472|35001087509|2 +979232|35001087579|2 +700174|35001087581|2 +639169|35001087588|2 +792425|35001087591|2 +693948|35001087649|2 +762813|35001087754|2 +462102|35001087765|2 +783568|35001087769|2 +713053|35001087770|2 +466293|35001087772|2 +658437|35001087773|2 +763589|35001087775|2 +607475|35001087851|2 +886702|35001087968|2 +565279|35001087970|2 +560777|35001087971|2 +707497|35001087984|2 +466153|35001088000|2 +502642|35001088113|2 +595011|35001088115|2 +608656|35001088117|2 +628118|35001088120|2 +662799|35001088206|2 +508971|35001088209|2 +762038|35001088212|2 +808002|35001088214|2 +847115|35001088293|2 +691388|35001088318|2 +1055919|35001088340|2 +479392|35001088467|2 +837151|35001088496|4 +800971|35001088497|2 +568719|35001088571|2 +794058|35001088573|2 +831558|35001088574|4 +595153|35001088665|2 +621018|35001088682|2 +668127|35001088687|2 +581499|35001088701|2 +516645|35001088706|2 +534797|35001088710|2 +651770|35001088715|2 +632464|35001088717|2 +802622|35001088727|2 +775594|35001088733|2 +735050|35001088755|2 +704507|35001088757|2 +787460|35001088759|2 +529091|35001088790|2 +497546|35001088806|2 +847753|35001088819|2 +677328|35001088908|2 +740512|35001088910|2 +777084|35001088912|2 +871000|35001089024|2 +778544|35001089029|2 +563491|35001089043|2 +595379|35001089045|2 +716291|35001089046|2 +883617|35001089053|2 +753842|35001089118|2 +718221|35001089236|2 +668594|35001089239|2 +494401|35001089241|2 +569562|35001089242|2 +859983|35001089243|2 +538231|35001089325|2 +523199|35001089328|2 +485116|35001089334|2 +629340|35001089340|2 +588916|35001089357|2 +459906|35001089404|2 +477733|35001089405|2 +761288|35001089485|2 +476319|35001089488|2 +513432|35001089489|2 +851902|35001089500|2 +805800|35001089699|2 +805824|35001089700|2 +805256|35001089701|2 +793595|35001089703|2 +545208|35001089714|2 +625883|35001089715|2 +739558|35001089822|2 +501538|35001089826|2 +568562|35001089833|2 +781169|35001089846|2 +612867|35001089848|2 +859025|35001089855|2 +657029|35001090043|2 +597810|35001090044|2 +513129|35001090045|2 +848568|35001090048|2 +540679|35001090049|4 +835895|35001090239|4 +895996|35001090249|2 +688031|35001090251|2 +547281|35001090260|2 +871456|35001090311|2 +848866|35001090473|2 +702581|35001090480|2 +634112|35001090481|2 +634030|35001090482|2 +895297|35001090490|2 +829215|35001090493|4 +689439|35001090528|2 +563972|35001090529|2 +500495|35001090637|2 +700154|35001090651|2 +620749|35001090739|2 +584966|35001090857|2 +513457|35001090859|2 +702066|35001091100|2 +617002|35001091103|2 +528188|35001091111|2 +800382|35001091219|2 +897870|35001091230|2 +853154|35001091231|2 +565422|35001091232|2 +885305|35001091331|2 +875857|35001091383|2 +853579|35001091385|4 +513121|35001091388|2 +790960|35001091406|2 +1266283|35001091408|2 +513938|35001091416|2 +805856|35001091514|2 +641151|35001091520|2 +452409|35001091523|2 +682478|35001091642|2 +485930|35001091644|2 +481293|35001091646|2 +456125|35001091647|2 +628953|35001091790|2 +787885|35001091800|2 +650844|35001091801|2 +476967|35001091896|2 +612747|35001091982|2 +604633|35001091983|2 +843257|35001092028|2 +652448|35001092031|2 +537489|35001092036|2 +537873|35001092137|2 +708738|35001092138|2 +1262791|35001092175|2 +741866|35001092177|2 +678907|35001092178|2 +725331|35001092190|2 +549316|35001092191|2 +549284|35001092192|2 +698742|35001092243|4 +608216|35001092265|2 +587486|35001092266|2 +459403|35001092269|2 +804120|35001092276|2 +633059|35001092311|2 +530102|35001092312|2 +898626|35001092642|2 +854142|35001092649|2 +847998|35001092704|2 +714641|35001093032|2 +547022|35001093034|2 +516796|35001093036|2 +513991|35001093039|2 +777418|35001093046|2 +679795|35001093047|2 +492958|35001093065|2 +465001|35001093066|2 +518280|35001093075|2 +785968|35001093088|2 +891375|35001093136|2 +881916|35001093139|2 +716216|35001093141|2 +635106|35001093148|2 +487191|35001093151|2 +728191|35001093174|2 +517087|35001093176|2 +477207|35001093177|2 +707551|35001093189|2 +784957|35001093216|2 +701229|35001093238|2 +619013|35001093244|2 +524383|35001093247|2 +478304|35001093249|2 +510530|35001093252|2 +898612|35001093261|2 +767903|35001093297|2 +506981|35001093299|2 +610925|35001093306|2 +798293|35001093526|2 +678600|35001093530|2 +563067|35001093532|2 +483480|35001093533|2 +787877|35001093538|2 +832320|35001093539|4 +826207|35001093540|2 +467162|35001093623|2 +531986|35001093624|2 +990937|35001093630|2 +765785|35001093728|2 +609946|35001093732|2 +1043066|35001093739|2 +673428|35001093742|2 +680968|35001093743|2 +926139|35001093744|2 +721376|35001093807|2 +870796|35001093812|2 +581848|35001093814|2 +508482|35001093816|2 +757855|35001093869|2 +875884|35001093894|2 +772018|35001093895|4 +676573|35001093896|2 +645163|35001093897|2 +739708|35001094126|2 +707783|35001094127|2 +667388|35001094128|2 +607338|35001094217|2 +605848|35001094219|2 +683331|35001094320|2 +1155629|35001094344|2 +799558|35001094347|2 +799505|35001094360|2 +862731|35001094367|2 +720626|35001094371|2 +587431|35001094378|2 +572706|35001094380|2 +731251|35001094435|2 +848412|35001094439|2 +848298|35001094440|4 +494465|35001094443|2 +685613|35001094476|2 +605273|35001094492|2 +897371|35001094543|2 +498514|35001094544|2 +686265|35001094550|2 +507791|35001094643|2 +859874|35001094645|2 +570568|35001094732|2 +862291|35001094785|2 +776465|35001094889|2 +602431|35001094892|2 +530715|35001094898|2 +806213|35001094920|2 +782227|35001095090|2 +549293|35001095109|2 +720562|35001095143|2 +595709|35001095152|2 +559881|35001095154|2 +507417|35001095232|2 +713907|35001095277|2 +808288|35001095287|2 +753715|35001095288|2 +832815|35001095530|8 +837990|35001095558|4 +838987|35001095561|4 +710628|35001095562|2 +526845|35001095563|2 +491014|35001095564|2 +706687|35001095577|2 +646671|35001095578|2 +543647|35001095579|2 +849703|35001095585|2 +779738|35001095587|2 +658393|35001095588|2 +619715|35001095589|2 +572690|35001095590|2 +853754|35001095672|2 +517220|35001095693|2 +465106|35001095714|2 +830051|35001095720|4 +619497|35001095947|2 +624433|35001095979|2 +635757|35001095981|2 +783761|35001095982|4 +631613|35001096004|2 +675109|35001096006|2 +793531|35001096008|2 +650764|35001096063|2 +651970|35001096100|2 +572345|35001096109|2 +474599|35001096114|2 +680782|35001096117|2 +775106|35001096193|2 +741295|35001096206|2 +849553|35001096221|2 +458671|35001096495|2 +1046521|35001096504|2 +617298|35001096507|2 +506869|35001096520|2 +594472|35001096544|2 +557847|35001096556|2 +707727|35001096564|2 +533584|35001096591|2 +709920|35001096675|2 +701779|35001096683|2 +672519|35001096685|2 +843809|35001096689|2 +730850|35001096691|2 +897225|35001096792|2 +477209|35001096795|2 +556768|35001096796|2 +596830|35001096797|2 +597891|35001096798|2 +896072|35001096799|2 +896877|35001096800|2 +722526|35001096902|2 +602758|35001096904|2 +562539|35001096905|2 +672374|35001096906|2 +679329|35001096907|2 +1022111|35001096909|2 +791402|35001096943|2 +510863|35001096944|2 +640443|35001096945|2 +655562|35001096947|2 +734712|35001096954|2 +593530|35001096960|2 +632086|35001096997|2 +670948|35001097073|2 +653818|35001097078|2 +512199|35001097085|2 +593446|35001097087|2 +808815|35001097097|2 +629318|35001097238|2 +764031|35001097246|2 +719553|35001097248|2 +708207|35001097250|2 +524851|35001097259|2 +488848|35001097382|2 +454424|35001097390|2 +524717|35001097395|2 +493995|35001097405|2 +790272|35001097444|2 +882244|35001097527|2 +531470|35001097652|2 +688788|35001097667|2 +598101|35001097673|2 +533505|35001097676|2 +883300|35001097786|2 +873534|35001097789|2 +572918|35001097797|2 +550570|35001097801|2 +647886|35001097887|2 +868785|35001098015|2 +570009|35001098039|2 +610446|35001098114|2 +602924|35001098115|2 +647144|35001098158|2 +856753|35001098165|2 +838993|35001098168|4 +782712|35001098170|2 +550602|35001098175|2 +772525|35001098196|2 +720964|35001098197|2 +668756|35001098199|2 +569511|35001098205|2 +524914|35001098207|2 +744170|35001098273|2 +837477|35001098289|6 +805823|35001098291|2 +770562|35001098295|2 +685013|35001098297|2 +594489|35001098318|2 +769053|35001098397|2 +893321|35001098421|2 +843421|35001098422|2 +794275|35001098425|2 +795533|35001098537|2 +457971|35001098539|2 +754801|35001098602|2 +846000|35001098710|2 +602727|35001098717|2 +504811|35001098741|2 +501547|35001098742|2 +479229|35001098743|2 +488474|35001098749|2 +488849|35001098757|2 +853203|35001098761|2 +758404|35001098763|2 +660299|35001098767|2 +501499|35001098773|2 +743011|35001098779|2 +897260|35001098784|2 +677334|35001098828|2 +471142|35001098829|2 +543268|35001098832|2 +707850|35001098833|2 +747851|35001098834|2 +758403|35001098876|2 +692689|35001098931|2 +656568|35001098932|2 +675517|35001098938|2 +708291|35001098939|2 +610941|35001098996|2 +568424|35001099000|2 +837422|35001099001|4 +461163|35001099083|2 +671356|35001099216|2 +549116|35001099330|2 +469747|35001099332|2 +632855|35001099434|2 +554523|35001099496|2 +830366|35001099544|4 +583366|35001099560|2 +598046|35001099561|2 +593714|35001099611|2 +495416|35001099664|2 +696350|35001099665|2 +872090|35001099677|2 +801776|35001099702|2 +898237|35001099704|2 +1065169|35001099705|2 +764847|35001099731|2 +794960|35001099733|2 +766390|35001099734|2 +778215|35001099783|2 +522820|35001099909|2 +1085120|35001099911|2 +584646|35001099969|4 +737840|35001100021|2 +752910|35001100025|2 +724853|35001100026|2 +467340|35001100065|2 +601415|35001100068|2 +683238|35001100137|2 +797378|35001100141|2 +849853|35001100143|2 +614240|35001100186|2 +891621|35001100210|2 +1207690|35001100278|2 +608283|35001100342|2 +608232|35001100343|2 +451292|35001100347|4 +657741|35001100351|2 +709505|35001100352|2 +674268|35001100403|2 +722793|35001100405|2 +831184|35001100406|4 +819273|35001100407|2 +839841|35001100519|4 +800501|35001100521|2 +728013|35001100523|2 +686386|35001100524|2 +549611|35001100526|2 +522375|35001100528|2 +500127|35001100590|2 +752988|35001100591|2 +798655|35001100593|2 +693566|35001100616|2 +560989|35001100621|2 +597799|35001100735|2 +515828|35001100739|2 +491308|35001100809|2 +713164|35001100812|2 +495393|35001100928|2 +867529|35001100983|2 +884293|35001101151|2 +839657|35001101152|4 +797425|35001101154|2 +795812|35001101155|4 +735136|35001101173|2 +850770|35001101183|2 +848188|35001101213|2 +845273|35001101215|2 +545744|35001101299|2 +485501|35001101300|2 +452958|35001101304|2 +672849|35001101532|2 +836031|35001101572|4 +761348|35001101574|2 +926702|35001101645|2 +613328|35001101648|2 +867392|35001101665|2 +632474|35001101670|2 +755800|35001101671|2 +488047|35001101771|2 +885268|35001101773|2 +697778|35001101786|2 +756746|35001101866|2 +606044|35001101954|2 +891417|35001101958|2 +484741|35001102053|2 +484738|35001102055|2 +471166|35001102084|2 +605044|35001102092|2 +617520|35001102168|2 +649520|35001102206|2 +712983|35001102217|2 +712502|35001102219|2 +553884|35001102220|2 +604367|35001102224|2 +478914|35001102231|2 +481932|35001102281|2 +588105|35001102282|2 +802550|35001102289|2 +590061|35001102290|2 +834176|35001102436|4 +690778|35001102438|2 +642543|35001102439|2 +601392|35001102441|2 +754609|35001102443|2 +882354|35001102616|2 +782187|35001102617|2 +762606|35001102618|2 +504340|35001102619|2 +679626|35001102620|2 +691103|35001102621|2 +727048|35001102622|2 +725039|35001102624|4 +724966|35001102638|2 +899685|35001102639|2 +670545|35001102646|2 +524398|35001102648|2 +708739|35001102710|2 +854117|35001102711|2 +826991|35001102819|4 +787682|35001102827|2 +828988|35001102829|4 +796581|35001102890|2 +834177|35001102892|4 +844901|35001102977|2 +763047|35001102978|2 +518415|35001102980|2 +686407|35001102982|2 +861950|35001102984|2 +628099|35001103201|2 +882380|35001103205|2 +742756|35001103206|2 +570947|35001103207|2 +518198|35001103208|2 +499082|35001103209|2 +677276|35001103212|2 +682976|35001103344|2 +509514|35001103523|2 +572707|35001103651|2 +801799|35001103760|2 +716614|35001103761|2 +494227|35001103762|2 +674077|35001103779|2 +596713|35001103782|2 +494766|35001103787|2 +724274|35001103807|2 +508499|35001103813|2 +745452|35001103919|2 +827901|35001103924|4 +513998|35001103934|2 +707417|35001103937|2 +734579|35001103940|2 +743864|35001103942|2 +802313|35001103974|2 +698769|35001103998|2 +802738|35001104000|2 +711915|35001104170|2 +472514|35001104233|2 +612573|35001104234|2 +646054|35001104267|2 +819832|35001104298|2 +457629|35001104460|2 +534659|35001104483|2 +599096|35001104489|2 +748948|35001104572|2 +613856|35001104575|2 +467052|35001104584|2 +518332|35001104586|2 +793140|35001104588|2 +686354|35001104734|2 +589048|35001104735|2 +727104|35001104749|2 +651316|35001104751|2 +622452|35001104752|2 +600362|35001104755|2 +507833|35001104756|2 +779395|35001104767|2 +610541|35001104778|2 +830513|35001104789|4 +726583|35001104790|2 +684804|35001104792|2 +696108|35001104799|2 +757555|35001104801|2 +849766|35001104803|2 +746584|35001104817|2 +742701|35001104818|2 +562400|35001104819|2 +878099|35001104825|2 +856564|35001105119|2 +758290|35001105147|2 +651569|35001105187|2 +779572|35001105188|2 +493779|35001105316|2 +689472|35001105341|2 +877102|35001105548|2 +714662|35001105558|2 +553714|35001105572|2 +891697|35001105586|2 +712132|35001105598|2 +641125|35001105600|2 +643017|35001105604|2 +726974|35001105610|2 +761755|35001105625|2 +829216|35001105627|4 +611096|35001105631|2 +838616|35001105637|4 +703118|35001105643|2 +513967|35001105658|2 +689499|35001105670|2 +808260|35001105671|2 +844662|35001105674|2 +478170|35001105675|2 +557852|35001105677|2 +700120|35001105680|2 +531376|35001105688|2 +737896|35001105692|2 +719523|35001105693|2 +601737|35001105694|2 +643018|35001105695|2 +534319|35001105696|2 +528311|35001105698|2 +557629|35001105746|2 +591287|35001105759|2 +873285|35001105762|2 +726778|35001105850|2 +451795|35001105867|2 +759839|35001105872|2 +877772|35001105991|2 +668775|35001106078|2 +743322|35001106079|2 +706356|35001106117|2 +487930|35001106198|2 +712834|35001106221|2 +646055|35001106276|2 +873062|35001106295|2 +879951|35001106297|2 +848881|35001106298|2 +844686|35001106302|2 +723026|35001106303|2 +745317|35001106304|2 +528410|35001106370|2 +695286|35001106407|2 +482759|35001106410|2 +511526|35001106417|2 +462089|35001106418|2 +519636|35001106431|2 +896560|35001106432|2 +527745|35001106435|2 +498008|35001106438|2 +745451|35001106446|2 +756025|35001106447|2 +693728|35001106452|2 +637788|35001106455|2 +587672|35001106456|2 +644533|35001106457|2 +734260|35001106458|2 +537761|35001106459|2 +586342|35001106461|2 +753668|35001106462|2 +625607|35001106463|2 +780754|35001106464|2 +849097|35001106467|2 +586507|35001106468|2 +808699|35001106469|2 +532865|35001106470|2 +887191|35001106474|2 +455968|35001106478|2 +897391|35001106481|2 +633822|35001106621|2 +628070|35001106625|2 +491943|35001106626|2 +641095|35001106632|2 +780466|35001106637|2 +766227|35001106638|2 +527775|35001106639|2 +858576|35001106641|2 +469459|35001106645|2 +460251|35001106648|2 +646844|35001106650|2 +643625|35001106657|2 +521336|35001106732|2 +855346|35001106775|2 +731085|35001106882|2 +653096|35001106885|2 +668978|35001106887|2 +844234|35001106889|2 +774679|35001106902|2 +529730|35001106974|2 +469840|35001106976|4 +667167|35001106998|2 +686573|35001106999|2 +735122|35001107002|2 +786462|35001107052|2 +806383|35001107054|2 +718639|35001107056|2 +464740|35001107057|2 +553770|35001107058|2 +764876|35001107061|2 +531922|35001107090|2 +525041|35001107091|2 +852455|35001107172|2 +712390|35001107178|2 +713143|35001107179|2 +564093|35001107198|2 +464716|35001107247|2 +746956|35001107248|2 +604394|35001107249|2 +719281|35001107280|2 +481104|35001107440|2 +482757|35001107442|2 +786644|35001107444|2 +626797|35001107490|2 +802222|35001107491|2 +741750|35001107493|2 +741701|35001107494|2 +574001|35001107542|2 +835877|35001107597|4 +585098|35001107661|2 +580794|35001107663|2 +617727|35001107664|2 +848504|35001107667|2 +538470|35001107672|2 +537904|35001107972|2 +893277|35001107987|2 +684298|35001107990|2 +678563|35001107992|2 +646688|35001107993|2 +459134|35001108011|2 +490230|35001108012|2 +833774|35001108020|4 +899295|35001108023|2 +620580|35001108042|2 +862091|35001108084|2 +601863|35001108086|2 +478722|35001108296|2 +770150|35001108314|2 +846050|35001108319|2 +742296|35001108320|2 +735864|35001108321|2 +728754|35001108322|2 +800452|35001108325|2 +702273|35001108326|2 +653142|35001108328|2 +553375|35001108329|2 +507859|35001108451|2 +695321|35001108488|2 +714596|35001108489|2 +490658|35001108497|2 +899002|35001108601|2 +656834|35001108611|2 +733361|35001108617|2 +711950|35001108696|2 +451811|35001108698|2 +844476|35001108787|2 +795930|35001108796|2 +514050|35001108797|2 +619502|35001108798|2 +724101|35001108800|2 +668764|35001108885|2 +825933|35001109064|4 +752940|35001109084|2 +474199|35001109085|2 +688834|35001109157|2 +855857|35001109243|2 +575958|35001109259|2 +572668|35001109261|2 +697668|35001109317|2 +829290|35001109400|4 +532604|35001109564|2 +542991|35001109565|2 +683283|35001109569|2 +493080|35001109576|2 +725077|35001109580|2 +584225|35001109582|2 +615502|35001109583|2 +629507|35001109584|2 +739116|35001109589|2 +635140|35001109591|2 +613738|35001109598|4 +665580|35001109599|2 +688950|35001109600|2 +487315|35001109651|2 +881290|35001109705|2 +1115193|35001109711|2 +777510|35001109723|2 +750486|35001109724|2 +750826|35001109782|2 +692654|35001109784|2 +825705|35001109864|4 +576703|35001109919|2 +713770|35001109925|2 +831391|35001109928|4 +881291|35001109933|2 +791622|35001109944|2 +670180|35001110025|2 +826070|35001110026|4 +716696|35001110030|2 +628566|35001110045|2 +579877|35001110049|2 +491989|35001110174|2 +636128|35001110175|2 +881219|35001110216|2 +628758|35001110356|2 +773434|35001110372|2 +786529|35001110382|2 +775171|35001110538|2 +709734|35001110551|2 +758270|35001110751|2 +621707|35001110821|2 +790708|35001110827|2 +721311|35001110899|2 +649635|35001110901|2 +786858|35001110904|2 +474445|35001110911|2 +561488|35001110914|2 +624192|35001110916|2 +767912|35001110946|2 +658395|35001110949|2 +902082|35001110967|2 +787530|35001110969|2 +707128|35001110970|2 +596564|35001110971|2 +515488|35001110972|2 +465204|35001110973|2 +704747|35001111166|2 +545209|35001111168|2 +700250|35001111176|2 +678952|35001111215|2 +658584|35001111375|2 +689425|35001111383|2 +731447|35001111386|2 +642090|35001111396|2 +658885|35001111497|2 +773565|35001111498|2 +690200|35001111499|2 +641936|35001111506|2 +720061|35001111562|2 +707321|35001111570|2 +726052|35001111573|2 +588618|35001111597|2 +760979|35001111599|2 +837491|35001111602|6 +608923|35001111730|2 +579048|35001111733|2 +762524|35001111853|2 +752863|35001111858|2 +802915|35001111865|2 +468973|35001111866|2 +467202|35001111945|2 +606403|35001111991|2 +857752|35001112003|2 +666309|35001112031|2 +619641|35001112059|2 +600482|35001112065|2 +575890|35001112086|2 +890077|35001112113|2 +725413|35001112114|2 +750684|35001112123|2 +613120|35001112337|2 +801219|35001112401|2 +901919|35001112561|2 +744052|35001112562|2 +661460|35001112563|2 +747338|35001112608|2 +684057|35001112612|2 +793201|35001112622|2 +587661|35001112628|2 +1163149|35001112630|2 +861213|35001112633|2 +624822|35001112675|2 +833100|35001112688|4 +485117|35001112694|2 +652907|35001112721|2 +605236|35001112725|2 +878096|35001112809|2 +759409|35001112992|2 +658814|35001113404|2 +728045|35001113411|2 +577836|35001113520|2 +846056|35001113521|2 +549124|35001113723|2 +597131|35001113726|2 +885492|35001113727|2 +691095|35001113728|2 +743731|35001113822|2 +698630|35001113892|2 +899886|35001113893|2 +552449|35001113957|2 +666736|35001114092|2 +567061|35001114097|2 +694621|35001114098|2 +631656|35001114099|2 +744595|35001114100|2 +720043|35001114110|2 +493443|35001114111|2 +623801|35001114112|2 +847997|35001114114|2 +593858|35001114115|2 +728453|35001114117|2 +753379|35001114119|2 +587294|35001114211|2 +710577|35001114280|2 +609944|35001114290|2 +670175|35001114294|2 +576403|35001114303|2 +767571|35001114312|2 +804621|35001114375|2 +561889|35001114383|2 +844491|35001114538|2 +861494|35001114562|2 +883578|35001114575|2 +598161|35001114592|2 +781959|35001114684|2 +590515|35001114687|2 +792957|35001114688|2 +783636|35001114689|2 +660827|35001114690|2 +571961|35001114692|2 +781403|35001114768|2 +547023|35001114770|2 +766804|35001114773|2 +857750|35001114775|2 +1163150|35001114781|2 +890930|35001114864|2 +872995|35001114901|2 +767829|35001114906|2 +668213|35001114907|2 +727035|35001114911|2 +726961|35001114912|2 +718600|35001115018|2 +466663|35001115020|2 +631454|35001115030|2 +609289|35001115032|2 +765042|35001115086|2 +638978|35001115115|2 +876136|35001115126|2 +601613|35001115128|2 +658523|35001115135|2 +787352|35001115282|2 +615071|35001115284|2 +656178|35001115286|2 +726220|35001115287|2 +472515|35001115289|2 +464450|35001115384|2 +478214|35001115399|2 +496882|35001115405|2 +501407|35001115580|2 +512853|35001115596|2 +534162|35001115640|2 +546339|35001115698|2 +566497|35001115743|2 +575702|35001115744|2 +584613|35001115753|2 +595717|35001115755|2 +613664|35001115761|2 +616080|35001115765|2 +665492|35001115797|2 +682221|35001115805|2 +683243|35001115807|2 +701232|35001115812|2 +711346|35001115818|2 +713564|35001115819|2 +730716|35001115822|2 +763365|35001115829|2 +861583|35001115831|2 +871270|35001115832|2 +883877|35001115833|4 +774169|35001115834|2 +866630|35001115839|2 +847418|35001115847|2 +850801|35001115850|2 +883732|35001115852|2 +796308|35001115853|2 +855065|35001115855|2 +839770|35001115857|4 +798973|35001115863|2 +848908|35001115870|2 +826658|35001115877|4 +841651|35001115886|2 +691798|35001116138|2 +757109|35001116379|2 +674234|35001116407|2 +583825|35001116687|2 +781791|35001116701|2 +773529|35001116702|2 +759836|35001116703|2 +708661|35001116705|2 +518418|35001116709|2 +469274|35001116712|2 +541146|35001116720|2 +785148|35001116730|2 +898575|35001116848|2 +710989|35001116855|4 +656334|35001116858|2 +510631|35001116861|2 +693593|35001116963|2 +804164|35001116969|2 +611488|35001116972|2 +720445|35001116982|2 +666110|35001116983|2 +645554|35001116984|2 +594420|35001116986|2 +587040|35001116987|2 +593749|35001116988|2 +528103|35001116989|2 +522324|35001116990|2 +494003|35001117052|2 +478299|35001117056|2 +800214|35001117059|2 +822115|35001117066|2 +888739|35001117067|2 +467338|35001117071|2 +828627|35001117073|4 +546760|35001117074|2 +640307|35001117075|2 +797641|35001117096|2 +764403|35001117097|2 +526375|35001117101|2 +482189|35001117102|4 +479226|35001117103|2 +851123|35001117117|2 +928431|35001117258|2 +879676|35001117260|2 +713072|35001117264|2 +514035|35001117303|2 +584587|35001117304|2 +495717|35001117305|2 +742627|35001117310|2 +600370|35001117312|2 +629194|35001117325|2 +628060|35001117328|2 +669530|35001117335|2 +834644|35001117345|4 +654771|35001117346|2 +619791|35001117399|2 +1243043|35001117401|2 +849817|35001117426|2 +784189|35001117427|2 +688035|35001117428|2 +479148|35001117429|2 +809159|35001117444|2 +775591|35001117446|2 +869149|35001117448|2 +783672|35001117455|2 +625898|35001117459|2 +741744|35001117460|2 +625134|35001117479|2 +886343|35001117588|2 +657165|35001117593|2 +628167|35001117594|2 +692041|35001117773|2 +473651|35001117780|2 +545385|35001117782|2 +852031|35001117792|2 +728644|35001117793|2 +563034|35001117796|2 +563131|35001117799|2 +732365|35001117926|2 +703133|35001117927|2 +652512|35001117928|2 +607178|35001117929|2 +584553|35001117930|2 +529363|35001117931|2 +493420|35001117941|2 +653441|35001118136|2 +690578|35001118141|2 +754494|35001118142|2 +619755|35001118147|2 +739557|35001118148|2 +1047322|35001118158|2 +694603|35001118168|2 +464631|35001118169|2 +1257873|35001118513|2 +889165|35001118523|2 +888890|35001118525|2 +801246|35001118529|2 +672273|35001118530|2 +778868|35001118531|2 +617835|35001118536|2 +543026|35001118538|2 +479225|35001118639|2 +675103|35001118646|2 +542343|35001118649|2 +654839|35001118650|2 +504199|35001118651|2 +629309|35001118655|2 +877914|35001118656|2 +570517|35001118660|2 +735702|35001118662|2 +573132|35001118739|2 +797577|35001118748|2 +722262|35001118829|2 +888854|35001118831|2 +540502|35001118832|2 +530615|35001118883|2 +623720|35001118955|2 +743024|35001119200|2 +589333|35001119204|2 +765241|35001119253|2 +654685|35001119368|2 +863285|35001119804|2 +849555|35001119807|2 +782008|35001119809|2 +759613|35001119810|2 +706336|35001119829|2 +627975|35001119841|2 +472460|35001119843|2 +467847|35001119844|2 +460198|35001119846|2 +982811|35001119962|2 +545463|35001119969|2 +708028|35001119971|2 +640959|35001119978|2 +898909|35001119998|2 +840688|35001120324|2 +664963|35001120326|2 +458261|35001120378|2 +864047|35001120382|2 +837634|35001120404|4 +692850|35001120416|2 +848756|35001120570|2 +635032|35001120880|2 +706196|35001120891|2 +530356|35001120908|2 +494680|35001121094|2 +718874|35001121133|2 +718875|35001121134|2 +491092|35001121139|2 +764639|35001121260|2 +719680|35001121262|2 +695446|35001121263|2 +673019|35001121264|2 +549766|35001121267|2 +591158|35001121270|2 +890751|35001121275|2 +669713|35001121402|2 +569200|35001121407|2 +658190|35001121456|2 +830424|35001121608|4 +684656|35001121613|2 +626595|35001121614|2 +570269|35001121617|2 +517771|35001121713|2 +557677|35001121971|2 +1187397|35001122022|2 +516070|35001122024|2 +583318|35001122033|2 +869873|35001122120|2 +520683|35001122123|2 +895998|35001122285|2 +902334|35001122365|2 +666994|35001122366|2 +637390|35001122368|2 +616309|35001122369|2 +510310|35001122372|2 +461807|35001122374|2 +713060|35001122481|2 +473468|35001122565|2 +569828|35001122566|2 +799662|35001122567|2 +825484|35001122570|4 +841378|35001122571|2 +887184|35001122573|2 +600623|35001122584|2 +553641|35001122586|2 +838560|35001122726|4 +863504|35001122727|2 +497008|35001122889|2 +619559|35001122893|2 +797642|35001122903|2 +474160|35001122917|2 +898724|35001123040|2 +836292|35001123043|4 +809619|35001123045|2 +787298|35001123046|2 +770434|35001123047|2 +490854|35001123049|2 +716147|35001123054|4 +763666|35001123057|2 +647998|35001123197|2 +518281|35001123233|2 +619413|35001123238|2 +664904|35001123239|2 +699321|35001123242|2 +574013|35001123397|2 +758735|35001123400|2 +799058|35001123444|2 +645106|35001123491|2 +676923|35001123496|2 +549107|35001123717|2 +775323|35001123719|2 +802956|35001123721|2 +826859|35001123722|4 +757907|35001123800|2 +776578|35001123843|2 +776568|35001123844|2 +486314|35001123881|2 +654576|35001123882|2 +546751|35001123884|2 +585191|35001124050|2 +836300|35001124057|4 +485036|35001124230|2 +671495|35001124233|4 +752994|35001124235|2 +888806|35001124254|2 +695738|35001124309|2 +846711|35001124310|2 +501539|35001124390|2 +538898|35001124391|2 +554547|35001124469|2 +560235|35001124470|2 +565289|35001124471|2 +722054|35001124475|2 +830300|35001124476|4 +742488|35001124646|2 +869347|35001124649|2 +673403|35001124870|2 +469841|35001124873|2 +675373|35001124875|2 +515541|35001124877|2 +642704|35001124880|2 +774974|35001124899|2 +498040|35001124984|2 +670319|35001124988|2 +662250|35001125043|2 +777150|35001125060|2 +480521|35001125126|2 +451353|35001125136|2 +576338|35001125352|2 +713207|35001125354|2 +498168|35001125357|2 +829192|35001125420|4 +851345|35001125421|2 +666310|35001125423|2 +675197|35001125426|2 +722366|35001125427|2 +532280|35001125501|2 +843553|35001125502|2 +639264|35001125554|2 +879248|35001125556|2 +871170|35001125563|2 +631386|35001125688|2 +805198|35001125691|2 +899161|35001125694|2 +476911|35001125754|2 +654335|35001125755|2 +571512|35001125822|2 +631420|35001125824|2 +780820|35001125858|2 +1205980|35001125996|2 +672150|35001125998|2 +628393|35001126005|4 +896161|35001126134|2 +710009|35001126136|2 +541388|35001126137|2 +566977|35001126138|2 +1172356|35001126141|2 +599792|35001126213|2 +1046687|35001126369|2 +829621|35001126427|4 +475614|35001126537|2 +818911|35001126554|2 +557285|35001126688|2 +759736|35001126692|4 +779693|35001126694|2 +856690|35001126696|2 +662533|35001126800|2 +769766|35001126802|2 +893694|35001126850|2 +458970|35001126859|2 +742868|35001126860|2 +552575|35001126897|2 +819274|35001126900|2 +868940|35001126904|2 +472713|35001126906|2 +875061|35001126998|2 +537609|35001127000|2 +769876|35001127001|2 +874737|35001127004|2 +515299|35001127195|2 +674271|35001127197|2 +730976|35001127199|2 +856279|35001127200|2 +514025|35001127357|2 +493648|35001127559|2 +798902|35001127765|2 +787880|35001127767|2 +612209|35001127768|2 +504077|35001127772|2 +745862|35001127773|2 +588708|35001127775|2 +873112|35001127778|2 +522063|35001127784|2 +809900|35001127787|2 +798094|35001127788|2 +710207|35001127789|2 +454227|35001127791|2 +493882|35001127793|2 +589456|35001127799|2 +679908|35001127801|4 +468041|35001127803|2 +474323|35001127831|2 +555864|35001127836|2 +687393|35001127838|2 +806857|35001127950|2 +1256748|35001128003|2 +699829|35001128053|2 +633534|35001128060|2 +670251|35001128089|2 +854572|35001128091|2 +636040|35001128103|2 +887484|35001128335|2 +881217|35001128337|2 +880424|35001128338|2 +873308|35001128339|2 +866456|35001128343|2 +851618|35001128444|2 +844117|35001128450|2 +828887|35001128452|4 +779694|35001128521|2 +713881|35001128547|2 +576800|35001128556|2 +569911|35001128558|2 +798549|35001128579|2 +686364|35001128583|2 +683282|35001128585|2 +647035|35001128590|2 +625864|35001128601|2 +620000|35001128603|2 +614028|35001128610|2 +591224|35001128616|2 +566543|35001128620|2 +564395|35001128626|2 +538158|35001128643|2 +533221|35001128645|2 +514545|35001128648|2 +507076|35001128650|2 +498380|35001128657|2 +469626|35001128676|2 +492946|35001128679|2 +830301|35001128706|4 +642515|35001128779|2 +528974|35001129126|2 +796725|35001129131|2 +509516|35001129133|2 +745222|35001129136|2 +763509|35001129137|2 +844016|35001129138|2 +701065|35001129210|2 +715537|35001129212|2 +560122|35001129215|2 +490467|35001129300|2 +674296|35001129301|2 +469931|35001129302|2 +1107197|35001129320|2 +676767|35001129399|2 +516952|35001129421|2 +562470|35001129434|2 +579160|35001129438|2 +575802|35001129445|2 +737578|35001129525|2 +884737|35001129526|2 +542441|35001129552|2 +680958|35001129612|2 +659693|35001129613|2 +672112|35001129616|2 +1256497|35001129651|2 +801337|35001129843|2 +601239|35001129911|2 +706319|35001129923|2 +898534|35001129924|2 +881800|35001129960|2 +602537|35001130027|2 +612901|35001130035|2 +630125|35001130038|2 +778370|35001130039|2 +803129|35001130041|2 +658310|35001130067|2 +776605|35001130191|2 +739593|35001130192|2 +495344|35001130195|2 +873533|35001130228|2 +802432|35001130347|2 +520193|35001130351|2 +474309|35001130967|2 +917233|35001130975|2 +867863|35001130977|2 +852218|35001130978|2 +850386|35001130979|2 +806224|35001130984|2 +743866|35001131000|2 +735866|35001131004|2 +631160|35001131006|2 +725785|35001131007|2 +694326|35001131009|2 +668781|35001131013|2 +632319|35001131014|2 +630715|35001131016|2 +624451|35001131026|2 +476920|35001131028|2 +508589|35001131030|2 +557981|35001131031|2 +524747|35001131043|2 +664845|35001131046|2 +515949|35001131135|2 +833330|35001131145|4 +677940|35001131305|2 +659268|35001131371|2 +1188789|35001131374|2 +471043|35001131378|2 +575956|35001131379|2 +686075|35001131380|2 +769755|35001131381|2 +829032|35001131384|4 +883605|35001131385|2 +657939|35001131437|2 +829193|35001131438|4 +829239|35001131458|4 +548519|35001131525|2 +784901|35001131579|2 +456762|35001131585|2 +740233|35001131600|2 +743903|35001131601|2 +764623|35001131603|2 +837672|35001131607|6 +503313|35001131633|2 +795687|35001131645|2 +461164|35001131653|2 +766671|35001131679|2 +809019|35001131680|2 +580458|35001131685|2 +914382|35001131704|2 +807189|35001131705|2 +693112|35001131816|2 +529065|35001131818|2 +871379|35001131819|2 +459748|35001131855|2 +533504|35001131856|2 +742494|35001131858|2 +859407|35001131859|2 +595270|35001131995|2 +892383|35001131997|2 +539184|35001132033|2 +539185|35001132045|2 +867039|35001132067|2 +846927|35001132068|2 +847302|35001132069|2 +762977|35001132070|2 +728168|35001132071|2 +678891|35001132072|2 +605006|35001132085|2 +672304|35001132087|2 +472041|35001132089|2 +472153|35001132091|2 +712034|35001132094|2 +725295|35001132095|2 +533373|35001132097|2 +697957|35001132108|2 +766825|35001132110|2 +556848|35001132113|2 +614277|35001132114|2 +617364|35001132116|2 +623654|35001132117|2 +665229|35001132119|2 +486227|35001132165|2 +862962|35001132194|6 +893868|35001132199|2 +1141027|35001132204|2 +894531|35001132206|2 +685687|35001132210|2 +545738|35001132212|2 +801370|35001132215|2 +829205|35001132533|4 +826590|35001132534|4 +756007|35001132536|2 +510782|35001132540|2 +546195|35001132561|2 +884098|35001132685|2 +846616|35001132870|2 +606901|35001132876|2 +663832|35001132888|2 +594380|35001133091|2 +603038|35001133093|2 +630313|35001133094|2 +659267|35001133108|2 +676574|35001133109|2 +701453|35001133110|2 +570979|35001133303|2 +578351|35001133304|2 +633260|35001133333|2 +840574|35001133335|2 +723533|35001133365|2 +604990|35001133367|2 +567945|35001133398|4 +831528|35001133399|4 +732028|35001133468|2 +781887|35001133704|2 +842876|35001133719|2 +839522|35001133720|4 +707567|35001133746|2 +798933|35001133752|2 +535352|35001133815|2 +561703|35001133817|2 +618548|35001133823|2 +556260|35001133832|2 +486202|35001133841|2 +842552|35001133852|2 +700906|35001133860|2 +554116|35001133862|2 +720741|35001133866|2 +465962|35001134005|2 +929258|35001134032|2 +665199|35001134033|2 +727322|35001134037|2 +776598|35001134038|2 +807042|35001134039|2 +831633|35001134040|4 +850687|35001134041|2 +471848|35001134043|2 +563143|35001134046|2 +759156|35001134054|2 +552695|35001134055|2 +777195|35001134070|2 +558723|35001134073|2 +872958|35001134090|2 +846203|35001134107|2 +602911|35001134313|2 +770831|35001134320|2 +760791|35001134436|2 +738206|35001134438|2 +512389|35001134548|2 +556849|35001134549|2 +583059|35001134551|2 +627653|35001134552|2 +886692|35001134631|2 +768543|35001134637|2 +1221076|35001134733|2 +597289|35001134827|2 +832356|35001134837|4 +879370|35001134953|2 +663174|35001134961|2 +838484|35001134966|4 +554027|35001134968|2 +541404|35001134973|2 +539642|35001134974|2 +839669|35001135019|4 +602523|35001135078|2 +746984|35001135111|2 +758051|35001135470|2 +710188|35001135481|2 +781720|35001135483|2 +670362|35001135541|2 +692301|35001135546|2 +854861|35001135594|2 +1093226|35001135616|2 +516816|35001135632|2 +635648|35001135635|4 +651555|35001135636|2 +754489|35001135640|2 +763085|35001135641|2 +629293|35001135780|2 +657654|35001135783|2 +659754|35001135785|2 +890376|35001135792|2 +688159|35001135798|2 +874825|35001135803|2 +881732|35001135809|2 +478501|35001135829|2 +581786|35001135945|2 +633864|35001135946|2 +807677|35001135955|2 +826170|35001136100|6 +1026635|35001136134|2 +540355|35001136137|2 +869461|35001136382|2 +538709|35001136422|2 +1026636|35001136470|2 +780495|35001136729|2 +1101869|35001136817|2 +826158|35001136834|6 +784704|35001136836|2 +524775|35001136843|2 +565392|35001136845|2 +718058|35001136846|2 +562362|35001136957|2 +844256|35001136959|2 +853630|35001136961|2 +680927|35001137235|2 +857245|35001137255|2 +897829|35001137257|2 +853598|35001137259|2 +794245|35001137262|2 +736425|35001137263|2 +545477|35001137264|2 +554823|35001137265|2 +591718|35001137266|2 +663521|35001137268|2 +707791|35001137269|2 +712817|35001137270|2 +766836|35001138281|2 +488818|35001138443|2 +466930|35001138445|2 +605035|35001138874|2 +693113|35001138875|2 +462544|35001138887|4 +469381|35001138897|2 +478076|35001138899|2 +513278|35001138910|2 +515362|35001138912|2 +529795|35001138917|2 +530235|35001138919|2 +533947|35001138921|2 +539565|35001138926|2 +541969|35001138928|2 +553426|35001138940|2 +568519|35001138959|2 +572669|35001138960|2 +574951|35001138964|2 +583291|35001138967|2 +592829|35001138968|2 +611285|35001138972|2 +648110|35001138999|2 +651864|35001139002|2 +699859|35001139069|2 +714714|35001139073|2 +690461|35001139110|2 +735262|35001139118|2 +747587|35001139124|2 +748616|35001139125|2 +766700|35001139146|2 +770115|35001139148|2 +773321|35001139150|2 +778518|35001139153|2 +638145|35001139154|2 +786313|35001139158|4 +793694|35001139163|2 +796441|35001139171|2 +828284|35001139184|4 +829026|35001139187|4 +836829|35001139196|4 +593381|35001139253|2 +638150|35001140108|2 +760356|35001140162|2 +1251440|35001140168|2 +1206119|35001140200|2 +654838|35001140224|2 +597743|35001140442|2 +982806|35001140682|2 +886667|35001140886|2 +864805|35001140891|2 +866609|35001140892|2 +873799|35001140905|2 +875919|35001140908|2 +878592|35001140916|2 +846821|35001140920|2 +496935|35001140921|2 +857391|35001140926|2 +675723|35001140944|2 +834784|35001140958|4 +835370|35001140960|4 +840390|35001140964|4 +799022|35001140967|2 +799347|35001140968|2 +799657|35001140969|2 +802715|35001140971|2 +809756|35001140972|2 +454132|35001140973|2 +795214|35001140976|2 +458969|35001140977|2 +779714|35001140981|2 +779450|35001140982|2 +476757|35001140985|2 +754838|35001140986|2 +744721|35001140987|2 +740549|35001140988|2 +493961|35001140990|2 +727936|35001140992|2 +504666|35001140994|2 +717159|35001140995|2 +713895|35001140997|2 +707435|35001140998|2 +705880|35001140999|2 +515126|35001141000|2 +699773|35001141001|2 +517801|35001141002|2 +697414|35001141003|2 +684066|35001141004|2 +683827|35001141005|2 +682597|35001141006|2 +531500|35001141008|2 +532929|35001141009|2 +666073|35001141010|2 +665143|35001141011|4 +658423|35001141013|2 +656360|35001141014|2 +538245|35001141017|2 +538659|35001141018|2 +619511|35001141019|2 +541939|35001141020|2 +617602|35001141021|2 +605114|35001141022|2 +545155|35001141026|2 +549909|35001141029|2 +555823|35001141031|2 +570744|35001141033|2 +844343|35001141069|2 +804740|35001141548|2 +661808|35001141553|2 +859359|35001141603|2 +869535|35001141612|2 +714519|35001141613|2 +550147|35001141618|2 +672049|35001141623|2 +510316|35001141627|2 +738207|35001141629|2 +589306|35001141630|2 +534877|35001141633|2 +743066|35001141638|2 +754262|35001141655|2 +650725|35001141657|2 +842912|35001141662|2 +462683|35001141694|2 +710352|35001141697|2 +775431|35001141699|2 +843793|35001141701|2 +871319|35001142019|2 +849409|35001142107|2 +893075|35001142108|2 +878303|35001142111|2 +528363|35001142200|2 +695958|35001142261|2 +710796|35001142265|2 +530399|35001142268|2 +637553|35001142332|2 +859721|35001142334|2 +898917|35001142336|2 +537908|35001142358|2 +593888|35001142376|2 +803535|35001142414|2 +641148|35001142460|2 +839598|35001142472|4 +545805|35001142475|2 +679402|35001142482|2 +483416|35001142483|2 +579653|35001142485|2 +801335|35001142492|2 +705685|35001142528|2 +1012584|35001143420|2 +499826|35001143431|2 +707568|35001143435|2 +872181|35001143446|2 +468554|35001143476|2 +468502|35001143487|2 +673760|35001143503|2 +850447|35001143571|2 +700020|35001143598|2 +785441|35001143601|2 +523314|35001143606|2 +890279|35001143612|2 +483797|35001143616|2 +1183931|35001143617|2 +570644|35001143623|2 +700474|35001143626|2 +542415|35001143633|2 +581519|35001143636|2 +650711|35001143656|2 +644143|35001143659|2 +501368|35001143662|2 +591596|35001143671|2 +681144|35001143696|2 +621258|35001143698|2 +758518|35001143720|2 +675257|35001143750|2 +842659|35001143754|2 +799452|35001143789|2 +623978|35001143810|2 +624223|35001143813|2 +583139|35001143821|2 +487635|35001143845|2 +583061|35001143848|2 +614045|35001143876|2 +584432|35001143899|2 +467801|35001143901|2 +633120|35001143910|2 +866160|35001144004|2 +518539|35001144220|2 +804708|35001144393|2 +658633|35001144410|2 +633648|35001144433|2 +706185|35001144575|2 +638148|35001144594|2 +515381|35001144754|2 +485037|35001144756|2 +839120|35001144757|4 +531441|35001144809|2 +662899|35001144815|2 +689758|35001144818|2 +784154|35001144819|2 +624215|35001144839|2 +763921|35001145292|2 +797788|35001145308|2 +486328|35001145323|2 +509281|35001145326|2 +597442|35001145328|2 +651803|35001145334|2 +643855|35001145469|2 +508381|35001145628|2 +667138|35001145713|2 +894847|35001145730|2 +609603|35001145736|4 +619441|35001145737|2 +673727|35001145750|2 +507256|35001145754|4 +616890|35001145757|2 +794235|35001145770|2 +673255|35001145773|2 +742920|35001145781|2 +611864|35001145783|2 +495115|35001146381|2 +675929|35001146386|2 +681321|35001146387|2 +684662|35001146395|2 +582211|35001146396|2 +546732|35001146400|2 +880252|35001146425|2 +516203|35001146426|2 +797791|35001146453|2 +775334|35001146474|2 +829722|35001146479|4 +545612|35001146482|2 +726882|35001146511|2 +695959|35001146524|2 +614197|35001146528|2 +508382|35001146548|2 +498134|35001146576|2 +851117|35001146590|2 +780526|35001146647|2 +701213|35001146808|2 +845138|35001146825|2 +553387|35001146844|2 +739020|35001146846|2 +798164|35001146850|2 +843558|35001146853|2 +739930|35001146854|2 +880989|35001146857|2 +880353|35001146871|2 +747041|35001146893|2 +830680|35001146895|4 +660726|35001146898|2 +603270|35001146909|2 +637852|35001146914|2 +779088|35001146926|2 +518739|35001146936|2 +629463|35001146949|2 +650632|35001146953|2 +670274|35001146954|2 +505446|35001146955|2 +830454|35001146964|4 +600444|35001146966|2 +661956|35001146967|2 +605762|35001146970|2 +518819|35001146972|2 +537985|35001146973|2 +466370|35001146996|2 +548877|35001146999|2 +702960|35001147000|2 +705943|35001147002|2 +849144|35001147007|2 +580510|35001147196|2 +834757|35001147835|4 +795445|35001147966|2 +613647|35001148136|2 +582977|35001148140|2 +457241|35001148157|2 +457242|35001148161|2 +546427|35001148172|2 +981797|35001148198|2 +773954|35001148244|2 +755158|35001148412|2 +555469|35001148413|2 +620541|35001148420|2 +1190581|35001148476|2 +869091|35001148482|2 +680965|35001148506|2 +619861|35001148508|2 +744639|35001148510|2 +737944|35001148512|2 +802744|35001148519|2 +716756|35001148530|2 +806447|35001148534|2 +487410|35001148566|2 +568209|35001148570|2 +532423|35001148578|2 +700103|35001148603|2 +581224|35001148615|2 +671339|35001148667|2 +721186|35001148669|2 +778626|35001148679|2 +488076|35001148681|2 +529510|35001148689|2 +642593|35001148698|2 +642596|35001148699|2 +530744|35001148706|2 +530762|35001148711|2 +802422|35001148731|2 +575680|35001148734|2 +648089|35001148748|2 +611013|35001148756|2 +670643|35001149059|2 +776258|35001149087|2 +781291|35001149090|2 +555824|35001149094|2 +552876|35001149097|4 +572499|35001149106|2 +650409|35001149139|2 +483785|35001149158|2 +509285|35001149161|2 +509662|35001149163|2 +539578|35001149177|2 +543969|35001149184|2 +516344|35001149316|2 +703231|35001149383|2 +467593|35001149556|2 +857560|35001149584|2 +799927|35001149588|2 +805070|35001149598|2 +837889|35001149604|4 +782131|35001149661|2 +801220|35001149688|2 +755496|35001149703|2 +507767|35001149718|2 +793909|35001149725|2 +844340|35001149732|2 +534878|35001149756|2 +885220|35001149837|2 +541324|35001149840|4 +528613|35001149916|2 +620051|35001150047|2 +1013111|35001150060|2 +846324|35001150087|2 +491468|35001150135|2 +781144|35001150136|2 +529511|35001150139|2 +639001|35001150145|2 +594510|35001150146|2 +631159|35001150151|2 +634912|35001150153|2 +452488|35001150156|2 +567995|35001150163|2 +706986|35001150167|2 +493332|35001150181|2 +872872|35001150182|4 +801635|35001150189|2 +727448|35001150200|2 +750621|35001150213|2 +716104|35001150224|2 +650411|35001150227|2 +611600|35001150228|2 +634346|35001150234|2 +540549|35001150237|2 +841194|35001150245|2 +523537|35001150250|2 +706898|35001150265|2 +566143|35001150270|2 +879528|35001150271|2 +708302|35001150287|2 +745687|35001150291|2 +745688|35001150294|2 +726584|35001150296|2 +734033|35001150303|2 +526256|35001150308|2 +688160|35001150312|2 +633928|35001150321|2 +633929|35001150324|2 +454750|35001150393|2 +744099|35001150394|2 +659589|35001150628|2 +717291|35001151310|4 +778909|35001151718|2 +762981|35001151730|2 +763021|35001151732|2 +817756|35001151745|2 +489603|35001151749|2 +579652|35001151866|2 +457176|35001151870|2 +705633|35001151874|2 +714508|35001151883|2 +785408|35001151886|2 +603395|35001151889|2 +854584|35001151894|2 +992758|35001151896|2 +662960|35001151928|2 +695569|35001151934|2 +527013|35001151936|2 +833061|35001151954|4 +603376|35001152045|2 +760574|35001152058|2 +825944|35001152346|4 +648900|35001152365|2 +597044|35001152367|2 +797379|35001152381|2 +608116|35001152406|2 +807091|35001152410|2 +844442|35001152437|2 +550351|35001152456|2 +878048|35001152457|2 +886753|35001152459|2 +608371|35001152515|2 +583599|35001152516|2 +686266|35001152520|2 +720020|35001152530|2 +696680|35001152532|2 +834688|35001153620|4 +495046|35001153622|2 +780977|35001153625|2 +759249|35001153711|2 +694004|35001153713|2 +676938|35001153774|2 +679716|35001154123|2 +645471|35001154125|2 +528922|35001154127|2 +525105|35001154128|2 +730847|35001154130|2 +486774|35001154151|2 +794407|35001154153|2 +847510|35001154164|2 +522911|35001154165|2 +535385|35001154185|2 +666974|35001154193|2 +837748|35001154200|4 +588158|35001154227|2 +875932|35001154248|2 +800144|35001154307|2 +825594|35001154310|4 +741820|35001154318|2 +546251|35001154323|2 +507414|35001154326|2 +849335|35001154338|2 +461707|35001154356|2 +681427|35001154368|2 +717592|35001154420|2 +794977|35001154462|2 +801777|35001154465|2 +880621|35001155190|2 +876570|35001155195|2 +564122|35001155197|2 +850988|35001155277|2 +518091|35001155284|2 +451597|35001155292|2 +686564|35001155293|2 +508633|35001155318|2 +632187|35001155321|2 +763070|35001155324|2 +761273|35001155332|2 +630492|35001155335|2 +603801|35001155414|2 +700644|35001155443|4 +537928|35001155445|2 +605177|35001155451|2 +490584|35001155452|2 +570065|35001155454|2 +886099|35001155457|2 +651650|35001155459|2 +757838|35001155463|2 +561619|35001155810|2 +467810|35001155887|2 +1117317|35001155893|2 +622587|35001155897|2 +545206|35001155898|2 +722011|35001155899|2 +756248|35001155900|2 +870353|35001155901|2 +786533|35001155902|2 +765643|35001155904|2 +1105394|35001155907|2 +847070|35001155909|2 +737501|35001155910|2 +885518|35001155912|2 +873095|35001156360|2 +723261|35001156362|2 +546918|35001156369|2 +798669|35001156377|2 +835899|35001156379|4 +483821|35001156389|2 +577383|35001156395|2 +564257|35001156487|2 +889491|35001156498|2 +454696|35001156574|2 +848394|35001156577|2 +636596|35001156604|2 +878383|35001156614|2 +889567|35001156617|2 +704766|35001156635|2 +783402|35001156642|2 +549396|35001156649|2 +661722|35001156658|2 +642309|35001156666|2 +639125|35001156672|2 +716292|35001156695|2 +702189|35001156702|2 +691077|35001156715|2 +695080|35001156716|2 +546334|35001156721|2 +610402|35001156731|2 +865816|35001156820|2 +505723|35001156872|2 +509303|35001156880|2 +753372|35001156887|2 +485246|35001156891|2 +770923|35001156894|2 +690418|35001156901|2 +600564|35001156904|2 +494310|35001156906|2 +787684|35001156910|2 +867064|35001156915|2 +888821|35001156921|2 +602109|35001156923|2 +455776|35001156924|2 +703326|35001156925|2 +577530|35001156974|2 +488797|35001156992|2 +654537|35001157010|2 +599658|35001157017|2 +617313|35001157026|2 +543261|35001157030|2 +835515|35001157083|4 +752069|35001157106|2 +649688|35001157111|2 +829848|35001157115|4 +734237|35001157145|2 +783872|35001157152|2 +657853|35001157165|2 +753407|35001157214|2 +800983|35001157447|2 +738729|35001157461|2 +805367|35001157470|2 +1076465|35001157472|2 +687670|35001157474|2 +469073|35001157476|2 +628490|35001157481|2 +473963|35001157483|2 +479880|35001157485|2 +713304|35001157488|2 +624329|35001157536|2 +669069|35001157613|2 +881257|35001157641|2 +779666|35001157711|2 +835812|35001157714|4 +858922|35001157715|2 +634292|35001157719|2 +867614|35001157721|2 +528419|35001157723|2 +612396|35001157730|4 +1047491|35001157732|2 +1265937|35001157733|2 +576944|35001157735|2 +882263|35001157738|2 +839535|35001157739|4 +657941|35001157740|2 +581556|35001157742|2 +721318|35001157744|2 +543741|35001157973|2 +601912|35001157985|2 +661617|35001157993|2 +655409|35001158003|2 +631647|35001158010|2 +658158|35001158014|2 +723190|35001158018|4 +505739|35001158023|2 +887622|35001158316|2 +451852|35001158319|2 +683236|35001158322|2 +722719|35001158323|2 +614627|35001158326|2 +681868|35001158327|2 +860555|35001158329|2 +715373|35001158330|2 +878533|35001158334|2 +545431|35001158335|2 +538988|35001158337|2 +878454|35001158338|2 +645183|35001158343|2 +523056|35001158348|2 +877707|35001158349|2 +590846|35001158352|2 +529130|35001158356|2 +745964|35001158360|2 +458274|35001158362|2 +781948|35001158364|2 +742585|35001158366|2 +643482|35001158368|2 +861305|35001158369|2 +693291|35001158372|4 +847071|35001158373|2 +758517|35001158375|2 +715915|35001158376|2 +852217|35001158380|2 +595704|35001158383|2 +731189|35001158384|4 +685768|35001158388|2 +584836|35001158389|2 +587253|35001158390|2 +666199|35001158392|2 +789925|35001158393|2 +801276|35001158396|2 +455719|35001158556|2 +761342|35001158603|2 +745855|35001158626|2 +745673|35001158647|2 +602248|35001158649|2 +831295|35001158656|4 +501622|35001158657|2 +866365|35001158663|2 +862030|35001158664|2 +879820|35001158667|2 +786081|35001158680|2 +555516|35001158681|2 +726672|35001158693|2 +526264|35001158694|2 +776740|35001158723|2 +742309|35001158726|2 +459459|35001158728|2 +761388|35001158749|2 +831160|35001158751|4 +880552|35001158758|2 +610860|35001158807|2 +876130|35001158813|2 +713202|35001158815|2 +481086|35001158831|2 +868622|35001158851|2 +742482|35001158857|2 +835080|35001158866|2 +862314|35001158875|2 +493185|35001158881|2 +762035|35001158889|2 +764823|35001158943|2 +604580|35001158946|2 +486309|35001158965|2 +459486|35001159124|2 +694049|35001159128|2 +688781|35001159149|2 +888454|35001159156|2 +865519|35001159172|2 +585460|35001159175|2 +516751|35001159248|2 +620969|35001159255|2 +712829|35001159260|2 +698270|35001159274|2 +469599|35001159297|2 +894384|35001159299|2 +747092|35001159350|2 +534203|35001159355|2 +784978|35001159501|2 +970488|35001159663|2 +677077|35001159665|2 +641050|35001159670|2 +658608|35001159704|2 +869569|35001159707|2 +796431|35001159709|2 +578315|35001159720|2 +844804|35001159731|2 +541213|35001159732|2 +746872|35001159738|2 +838896|35001159763|4 +837659|35001159779|4 +651951|35001159819|2 +600913|35001159821|2 +888437|35001159828|2 +618209|35001159836|2 +763198|35001159843|2 +859334|35001159853|2 +513458|35001160013|2 +698139|35001160243|2 +1122045|35001160435|2 +647052|35001160479|2 +641137|35001160562|2 +884294|35001160715|2 +852034|35001160734|2 +854920|35001160736|2 +857210|35001160739|2 +593068|35001160741|2 +839222|35001160840|4 +839286|35001160841|4 +796427|35001160847|2 +798873|35001160850|2 +782399|35001160871|2 +783968|35001160877|2 +786653|35001160878|2 +790876|35001160882|2 +764969|35001160902|2 +740564|35001160913|2 +753460|35001160917|2 +758701|35001160920|2 +714943|35001160924|2 +734777|35001160957|2 +737534|35001160958|2 +697701|35001160964|2 +702473|35001160970|2 +705297|35001160972|2 +668778|35001160973|2 +673397|35001160975|2 +674745|35001160977|2 +679191|35001160979|2 +685560|35001161000|2 +646765|35001161003|2 +662802|35001161006|2 +663161|35001161008|2 +713232|35001161167|2 +638296|35001161199|2 +601928|35001161203|2 +603654|35001161205|2 +609871|35001161206|2 +612891|35001161209|2 +590608|35001161219|2 +593532|35001161220|2 +564978|35001161256|2 +573220|35001161261|2 +577935|35001161262|2 +580699|35001161265|2 +660182|35001161307|2 +546229|35001161327|2 +548396|35001161332|2 +557545|35001161349|2 +558727|35001161352|2 +530531|35001161360|2 +534534|35001161361|2 +509377|35001161379|2 +523925|35001161391|2 +490653|35001161408|2 +491980|35001161409|2 +492698|35001161411|2 +493958|35001161414|2 +496435|35001161415|2 +500733|35001161418|2 +457496|35001161424|2 +464794|35001161426|2 +482144|35001161428|2 +486044|35001161431|2 +542575|35001161461|2 +827480|35001161463|4 +866159|35001161464|2 +549250|35001161944|2 +890093|35001162783|2 +548028|35001162844|2 +547837|35001162847|2 +735865|35001162948|2 +716615|35001162958|2 +611702|35001162959|2 +589488|35001163202|2 +501390|35001163532|2 +750140|35001163558|2 +628879|35001163941|2 +766167|35001163942|2 +731979|35001163971|2 +585144|35001164046|2 +673457|35001164049|2 +842253|35001164052|2 +897828|35001164053|2 +609438|35001164322|2 +594513|35001164465|2 +846452|35001164466|4 +878486|35001164611|2 +628908|35001164812|2 +515891|35001164844|2 +660300|35001164850|2 +615161|35001164853|2 +873008|35001164855|2 +673084|35001165175|2 +678601|35001165177|2 +722523|35001165183|2 +732225|35001165184|2 +651497|35001165404|2 +566627|35001165564|2 +573006|35001165566|2 +597045|35001165766|2 +622720|35001165767|2 +656926|35001165769|2 +719095|35001165770|2 +894120|35001166071|2 +561961|35001166144|2 +579443|35001166145|2 +709332|35001166150|2 +882117|35001166151|2 +728146|35001166276|2 +657180|35001166294|2 +762078|35001166296|2 +766598|35001166297|2 +771280|35001166298|2 +696467|35001166491|2 +567789|35001166673|2 +628080|35001166675|2 +756279|35001166678|2 +893843|35001166941|2 +805768|35001166947|2 +481019|35001167212|2 +519564|35001167633|2 +829243|35001167760|4 +647603|35001167942|2 +728325|35001167944|2 +884125|35001168214|2 +805844|35001168245|2 +863062|35001168246|2 +917234|35001168248|2 +504060|35001168255|2 +504726|35001168257|2 +518092|35001168264|2 +535198|35001168468|2 +643100|35001168736|2 +871271|35001168743|2 +578896|35001168948|2 +807942|35001168956|2 +488871|35001169120|2 +772998|35001169137|2 +621400|35001169218|2 +484669|35001169391|2 +591384|35001169392|2 +625999|35001169393|2 +834645|35001169395|4 +571181|35001169606|2 +527010|35001169761|2 +897273|35001169927|2 +874016|35001169928|2 +620411|35001169931|2 +769844|35001170120|2 +581788|35001170316|2 +489895|35001170317|2 +779667|35001170318|2 +773432|35001170547|2 +859446|35001170548|2 +472753|35001170714|2 +867226|35001170715|2 +854550|35001171016|2 +657979|35001171026|2 +730648|35001171030|2 +525185|35001171129|2 +566935|35001171133|2 +773018|35001171136|2 +781089|35001171137|2 +1115205|35001171431|2 +846547|35001171450|2 +799317|35001171451|2 +794921|35001171454|2 +748668|35001171456|2 +747857|35001171457|2 +738961|35001171464|2 +665713|35001171466|2 +774003|35001171468|2 +615117|35001171469|2 +657491|35001171471|2 +547232|35001171472|2 +482190|35001171480|4 +549318|35001171526|2 +571167|35001171527|2 +571897|35001171529|4 +742447|35001171537|2 +526140|35001171564|2 +601443|35001171565|2 +828247|35001171567|4 +776606|35001171613|2 +838586|35001171614|4 +624431|35001171704|2 +631876|35001171705|2 +842451|35001171838|2 +885913|35001171839|2 +1249632|35001171842|2 +777871|35001171844|2 +560404|35001171858|2 +560402|35001171859|2 +579618|35001171860|2 +596313|35001171862|2 +576620|35001172297|2 +661671|35001172298|2 +668032|35001172299|2 +900829|35001172302|4 +644408|35001172340|2 +857697|35001172344|2 +872530|35001172403|2 +765203|35001172405|2 +459158|35001172406|2 +527159|35001172409|2 +664905|35001172413|2 +733375|35001172414|2 +591333|35001172495|2 +895249|35001172496|2 +627463|35001172550|2 +513362|35001172600|2 +854590|35001172601|2 +636184|35001172603|2 +469152|35001172682|2 +851397|35001172709|2 +694604|35001172740|2 +701262|35001172741|2 +518993|35001172752|2 +456314|35001172836|2 +573224|35001172837|2 +606560|35001172838|2 +879155|35001172839|2 +714693|35001172894|4 +575796|35001172926|2 +871725|35001172927|2 +508666|35001172980|2 +537782|35001172981|2 +584280|35001172982|2 +611793|35001172983|2 +656850|35001172984|2 +794313|35001172985|2 +530858|35001173027|2 +606463|35001173029|2 +662314|35001173032|2 +893137|35001173088|2 +705885|35001173090|2 +460735|35001173091|2 +482612|35001173092|2 +513123|35001173093|2 +580383|35001173095|2 +632736|35001173097|2 +650818|35001173098|2 +576698|35001173172|2 +460277|35001173244|2 +507170|35001173247|2 +667229|35001173351|2 +683461|35001173352|2 +769490|35001173474|2 +874310|35001173475|2 +565537|35001173527|2 +807038|35001173528|2 +712553|35001173532|2 +1212160|35001173606|2 +805555|35001173625|2 +474446|35001173627|2 +517532|35001173744|2 +669303|35001173749|2 +578375|35001173787|2 +700094|35001173790|2 +558812|35001173791|2 +464135|35001173852|2 +474281|35001173854|2 +472131|35001173875|2 +472155|35001173878|2 +494254|35001173879|2 +474593|35001173882|2 +633625|35001173883|2 +805806|35001173885|2 +560355|35001173886|2 +479795|35001173914|2 +748401|35001173916|2 +734011|35001173960|2 +755472|35001173962|2 +785414|35001173963|2 +776972|35001174093|2 +705491|35001174151|2 +622577|35001174236|2 +718447|35001174239|2 +795607|35001174367|2 +530369|35001174379|2 +735592|35001174384|2 +688055|35001174724|2 +1105229|35001174749|2 +836006|35001174755|6 +503639|35001174758|2 +525142|35001174759|2 +535002|35001174760|2 +544894|35001174761|2 +610043|35001174784|2 +651016|35001174785|2 +653591|35001174787|2 +531913|35001174797|2 +596797|35001174899|2 +527605|35001175033|2 +559425|35001175035|2 +802029|35001175036|2 +873052|35001175038|2 +694007|35001175075|2 +593834|35001175129|2 +727619|35001175130|2 +856598|35001175153|2 +758250|35001175274|2 +572881|35001175403|2 +539841|35001175447|2 +599461|35001175450|2 +756834|35001175451|2 +796841|35001175453|2 +852367|35001175454|2 +566642|35001175507|2 +762688|35001175508|2 +801771|35001175509|2 +872622|35001175510|2 +705855|35001175562|2 +843766|35001175676|2 +852927|35001175677|2 +462259|35001175733|2 +785639|35001175734|2 +452640|35001175737|2 +478793|35001175738|2 +829244|35001175739|4 +733323|35001175740|2 +801739|35001175741|2 +517719|35001175746|2 +881329|35001175749|2 +562492|35001175750|2 +501972|35001175753|2 +603087|35001175754|2 +658435|35001175755|2 +529609|35001175756|2 +554556|35001175757|2 +467220|35001175758|2 +666976|35001175760|2 +597027|35001175763|2 +894126|35001175767|2 +649534|35001175769|2 +702579|35001175772|2 +689692|35001175773|2 +1268788|35001175774|2 +707301|35001175783|2 +474308|35001175784|2 +459155|35001175785|2 +697652|35001175786|2 +651774|35001175789|2 +615620|35001175794|2 +514817|35001175795|2 +573937|35001175796|2 +628058|35001175799|2 +672194|35001175801|2 +780501|35001175802|2 +704020|35001175804|2 +753294|35001175807|2 +554258|35001175809|2 +588487|35001175810|2 +602423|35001175829|2 +892059|35001175830|2 +481034|35001175915|2 +732423|35001175920|2 +536405|35001175921|2 +628907|35001175923|2 +524778|35001175924|2 +805838|35001175932|2 +466957|35001175945|2 +705041|35001175950|2 +710069|35001175952|2 +744596|35001175954|2 +540137|35001175955|2 +536832|35001175957|2 +894879|35001175960|2 +480245|35001176036|2 +693830|35001176037|2 +843100|35001176038|2 +864638|35001176039|2 +757279|35001176040|2 +494315|35001176130|2 +603394|35001176131|2 +707269|35001176132|2 +897283|35001176134|2 +530773|35001176137|2 +550627|35001176199|2 +602038|35001176201|2 +629337|35001176204|2 +608908|35001176205|2 +764278|35001176206|2 +549099|35001176288|2 +604483|35001176302|2 +730543|35001176327|2 +891026|35001176329|4 +674182|35001176381|2 +658207|35001176385|2 +808771|35001176386|2 +871638|35001176394|2 +759549|35001176396|2 +477965|35001176399|2 +646550|35001176402|2 +581500|35001176416|2 +745665|35001176427|2 +805820|35001176429|2 +722520|35001176430|2 +901037|35001176436|4 +878046|35001176437|2 +471503|35001176520|4 +550758|35001176526|2 +807739|35001176559|2 +807858|35001176561|2 +694354|35001176563|2 +786681|35001176853|2 +858589|35001176854|2 +657803|35001177257|2 +777688|35001177258|2 +478112|35001177552|2 +540258|35001177553|2 +679916|35001177554|4 +781841|35001177556|2 +488542|35001177735|2 +554588|35001177740|2 +848512|35001177744|2 +492177|35001177861|2 +529581|35001177862|2 +565529|35001177863|2 +588862|35001177864|2 +665859|35001177865|2 +722876|35001177890|2 +774294|35001177891|2 +507257|35001177999|4 +562659|35001178000|2 +667068|35001178003|2 +780131|35001178068|2 +895829|35001178070|2 +895838|35001178131|2 +522125|35001178217|2 +585197|35001178264|2 +671510|35001178265|2 +717263|35001178266|2 +736518|35001178380|2 +560994|35001178386|2 +580067|35001178387|2 +617004|35001178388|2 +722528|35001178391|2 +542051|35001178483|2 +772074|35001178490|2 +547242|35001178512|2 +580283|35001178607|2 +643519|35001178608|2 +669916|35001178609|2 +877385|35001178614|2 +470362|35001178651|2 +560480|35001178656|2 +567104|35001178657|2 +597299|35001178683|2 +858016|35001178752|2 +749416|35001178805|2 +801943|35001178806|2 +750569|35001178869|2 +725280|35001178870|2 +725266|35001178871|2 +639731|35001178872|2 +590930|35001178873|2 +875165|35001178874|2 +451702|35001178877|2 +856138|35001178888|2 +640324|35001179005|2 +658167|35001179025|2 +725335|35001179060|2 +752959|35001179064|2 +869577|35001179067|2 +494346|35001179190|2 +802917|35001179197|2 +884665|35001179309|2 +804019|35001179310|2 +550591|35001179312|2 +639882|35001179313|2 +721929|35001179325|2 +729551|35001179327|2 +793947|35001179425|2 +805498|35001179426|2 +832841|35001179428|4 +869580|35001179429|2 +550834|35001179517|2 +623705|35001179518|2 +704991|35001179519|2 +782758|35001179520|2 +893255|35001179586|2 +588178|35001179588|2 +618342|35001179589|2 +867931|35001179596|2 +610421|35001179600|2 +1258010|35001179601|2 +797946|35001179602|2 +666997|35001179605|2 +501593|35001179721|2 +898558|35001179730|2 +843021|35001179733|2 +771499|35001179734|2 +733307|35001179736|2 +715865|35001179738|2 +710760|35001179740|2 +667705|35001179742|2 +635995|35001179743|2 +506530|35001179750|2 +468533|35001179752|2 +790797|35001179901|2 +498812|35001179904|2 +452513|35001179906|2 +795067|35001179912|2 +475787|35001180105|2 +889563|35001180108|2 +494158|35001180150|2 +558071|35001180235|2 +568045|35001180240|2 +714646|35001180241|2 +851989|35001180244|2 +889256|35001180245|2 +594615|35001180354|2 +660091|35001180355|2 +681699|35001180358|2 +730851|35001180415|2 +612748|35001180435|2 +604548|35001180484|2 +646658|35001180485|2 +787513|35001180486|2 +890469|35001180487|2 +479205|35001180585|2 +489921|35001180586|2 +763621|35001180594|2 +838502|35001180607|4 +833685|35001180608|4 +683011|35001180611|2 +576622|35001180804|2 +766683|35001180808|2 +801036|35001180809|2 +880141|35001180811|2 +577458|35001180867|2 +583887|35001180870|2 +721166|35001180872|2 +508221|35001180897|2 +664513|35001180898|2 +766115|35001180933|2 +665238|35001181086|2 +682998|35001181089|2 +791669|35001181090|2 +896716|35001181093|2 +669387|35001181140|2 +747235|35001181141|2 +872146|35001181143|2 +676783|35001181216|2 +798704|35001181217|2 +514566|35001181302|2 +611257|35001181303|2 +614832|35001181311|2 +628804|35001181313|2 +697733|35001181382|2 +659358|35001181497|2 +510183|35001181628|2 +550352|35001181644|2 +651628|35001181645|2 +835706|35001181647|2 +642784|35001181754|2 +647949|35001181755|2 +743975|35001181757|2 +846214|35001181758|2 +553266|35001181790|2 +854417|35001181792|2 +508708|35001181877|2 +743255|35001181879|2 +679910|35001181881|4 +456056|35001181887|2 +796518|35001181902|4 +830881|35001181910|4 +765597|35001181981|2 +765603|35001181982|2 +548070|35001182143|2 +960231|35001182282|2 +482756|35001182283|2 +538246|35001182287|2 +684813|35001182289|2 +685453|35001182291|2 +868859|35001182295|2 +691564|35001182411|2 +737977|35001182486|2 +803393|35001182489|2 +767164|35001182791|2 +472915|35001182792|2 +487642|35001182793|2 +514212|35001182794|2 +534750|35001182795|2 +639281|35001182796|2 +767167|35001182797|2 +622436|35001182856|2 +850248|35001182857|2 +674269|35001183005|2 +887752|35001183011|2 +848273|35001183013|2 +827082|35001183015|4 +827081|35001183016|4 +734038|35001183018|2 +683070|35001183019|2 +466396|35001183021|2 +576672|35001183326|2 +652289|35001183327|2 +733882|35001183328|2 +777904|35001183329|2 +867818|35001183330|2 +859454|35001183342|2 +878275|35001183452|2 +511514|35001183453|2 +518511|35001183455|2 +566613|35001183456|2 +835354|35001183459|6 +863718|35001183461|2 +490313|35001183500|2 +596169|35001183501|2 +658526|35001183502|2 +741985|35001183505|2 +665366|35001183507|2 +504979|35001183608|2 +518798|35001183610|2 +555167|35001183611|2 +609873|35001183614|2 +691365|35001183615|2 +767166|35001183617|2 +776718|35001183690|2 +702055|35001183693|2 +604771|35001183747|2 +469462|35001183805|2 +526112|35001183806|2 +884117|35001183809|2 +607001|35001183903|2 +1252046|35001184025|2 +894174|35001184030|2 +681666|35001184032|2 +534197|35001184034|2 +769344|35001184153|2 +849168|35001184307|2 +483248|35001184315|2 +581366|35001184380|2 +635111|35001184381|2 +598136|35001184556|2 +1246181|35001184589|2 +453797|35001184590|2 +453848|35001184591|2 +492920|35001184592|2 +572637|35001184699|2 +635011|35001184703|2 +745313|35001184704|2 +752879|35001184706|2 +475792|35001184816|2 +706353|35001184818|2 +740023|35001184820|2 +834571|35001184821|4 +462658|35001184965|2 +484963|35001184967|2 +548779|35001184968|2 +795795|35001184969|2 +708367|35001185029|2 +1076464|35001185031|2 +499068|35001185052|2 +560562|35001185077|2 +806574|35001185151|2 +576706|35001185206|2 +493186|35001185233|2 +532605|35001185328|2 +599000|35001185329|2 +746196|35001185330|2 +462957|35001185496|2 +680739|35001185500|2 +653171|35001185630|2 +663653|35001185632|2 +825757|35001185634|8 +560825|35001185747|2 +573238|35001185751|2 +619565|35001185752|2 +844393|35001185754|2 +845334|35001185755|2 +717968|35001185757|2 +569182|35001185841|2 +613075|35001185842|2 +645287|35001185843|2 +666677|35001185844|2 +676852|35001185845|2 +719800|35001185846|2 +457441|35001185935|2 +574728|35001185936|2 +640714|35001186109|2 +482801|35001186179|2 +580870|35001186181|2 +697005|35001186182|2 +498275|35001186301|2 +707539|35001186306|4 +804296|35001186308|2 +494267|35001186394|2 +805488|35001186398|2 +877896|35001186400|2 +632601|35001186596|2 +682475|35001186599|2 +787529|35001186601|2 +787510|35001186602|2 +848793|35001186660|2 +860018|35001186661|2 +861600|35001186662|2 +483529|35001186712|2 +456135|35001186779|2 +476671|35001186781|2 +533577|35001186879|2 +660864|35001186880|2 +707490|35001186881|2 +505593|35001186925|2 +879681|35001186993|2 +850197|35001187025|2 +507522|35001187129|2 +577518|35001187130|2 +895426|35001187198|2 +585754|35001187307|2 +585753|35001187308|2 +592004|35001187309|2 +513336|35001187363|2 +495187|35001187465|2 +662954|35001187466|2 +1206125|35001187501|2 +535779|35001187524|2 +772539|35001187587|2 +531944|35001187590|2 +605176|35001187593|2 +684224|35001187595|2 +771342|35001187597|2 +773908|35001187598|2 +881218|35001187601|2 +500306|35001187682|2 +620429|35001187690|2 +640671|35001187691|2 +836898|35001187754|4 +666637|35001187760|2 +828123|35001187806|4 +1060235|35001187824|2 +593729|35001187830|2 +896570|35001187915|2 +801182|35001187916|2 +704135|35001187917|2 +800080|35001187998|2 +648026|35001188007|2 +507171|35001188013|2 +870160|35001188233|2 +468042|35001188240|2 +562236|35001188303|2 +705253|35001188443|2 +648275|35001188492|2 +518459|35001188658|2 +533410|35001188659|2 +806302|35001188730|2 +885508|35001188758|2 +562568|35001188799|2 +595020|35001188800|2 +776625|35001188801|2 +799778|35001188802|2 +830314|35001188846|4 +865800|35001188847|2 +834433|35001188848|4 +825334|35001188849|4 +462742|35001188850|2 +733983|35001188854|2 +884093|35001188955|2 +777430|35001189147|2 +728566|35001189150|2 +719090|35001189155|2 +711698|35001189156|2 +700071|35001189158|2 +493543|35001189165|2 +551324|35001189168|2 +603003|35001189170|2 +796844|35001189171|2 +759564|35001189279|2 +843560|35001189280|2 +757950|35001189342|2 +835081|35001189377|2 +870203|35001189384|2 +731061|35001189456|2 +489408|35001189526|2 +759668|35001189532|2 +851347|35001189534|2 +805774|35001189595|2 +489464|35001189652|2 +552611|35001189757|2 +494796|35001189783|2 +678272|35001189855|2 +863188|35001189856|2 +884738|35001189857|2 +632430|35001189866|2 +674616|35001189867|2 +471097|35001190011|2 +860383|35001190014|2 +892678|35001190015|2 +595784|35001190189|2 +740424|35001190192|2 +768675|35001190193|2 +801105|35001190194|2 +466191|35001190195|2 +500660|35001190196|2 +514218|35001190197|2 +533228|35001190198|2 +649397|35001190270|2 +655280|35001190300|2 +726452|35001190302|2 +737846|35001190303|2 +464981|35001190306|2 +479207|35001190542|2 +710580|35001190626|2 +555293|35001190630|2 +464328|35001190698|2 +519098|35001190699|2 +603032|35001190700|2 +624568|35001190701|2 +720726|35001190703|2 +880158|35001190704|2 +860778|35001190745|2 +803697|35001190863|2 +807426|35001190941|2 +781526|35001191098|2 +640315|35001191111|2 +469460|35001191117|2 +479188|35001191118|2 +502895|35001191120|2 +563406|35001191129|2 +610105|35001191132|2 +647532|35001191133|2 +684972|35001191136|2 +510343|35001191225|2 +529049|35001191253|2 +776707|35001191257|2 +844321|35001191260|2 +763619|35001191486|2 +807071|35001191488|2 +596183|35001191515|2 +803784|35001191518|2 +1163983|35001191642|2 +700111|35001191669|2 +844847|35001191671|2 +939832|35001191675|2 +475132|35001191678|2 +493321|35001191679|2 +570770|35001191681|2 +583219|35001191682|2 +619509|35001191683|2 +454787|35001191734|2 +646556|35001191742|2 +647604|35001191744|2 +715187|35001191746|2 +787466|35001191750|2 +805347|35001191751|2 +653848|35001191868|2 +859713|35001191954|2 +583267|35001192055|2 +658527|35001192057|2 +782102|35001192154|2 +833242|35001192173|4 +565719|35001192175|2 +479185|35001192176|2 +580983|35001192185|2 +580985|35001192191|2 +685509|35001192255|2 +773579|35001192268|2 +874214|35001192409|2 +543058|35001192414|2 +544378|35001192416|2 +855605|35001192427|2 +865145|35001192428|2 +754637|35001192468|2 +761301|35001192469|2 +853034|35001192470|2 +554275|35001192548|2 +770301|35001192654|2 +779203|35001192655|2 +880421|35001192659|2 +843550|35001192687|2 +576406|35001192691|2 +747724|35001192736|2 +632401|35001192761|2 +737972|35001192809|2 +585895|35001192886|2 +727950|35001192888|2 +756280|35001192890|2 +879600|35001192892|2 +881753|35001192893|2 +887267|35001192894|2 +842887|35001192910|2 +581775|35001192913|2 +798982|35001193092|2 +853979|35001193093|2 +853992|35001193095|2 +463396|35001193104|2 +585169|35001193110|2 +595234|35001193111|2 +601636|35001193112|2 +889841|35001193131|2 +847828|35001193148|2 +742417|35001193161|2 +928925|35001193181|2 +491230|35001193200|2 +769054|35001193215|2 +774978|35001193216|2 +790794|35001193290|2 +601617|35001193292|2 +894147|35001193293|2 +510368|35001193297|2 +715919|35001193304|2 +763337|35001193308|2 +452950|35001193495|2 +522130|35001193496|2 +582239|35001193497|2 +604747|35001193505|2 +783627|35001193506|2 +460247|35001193559|2 +686378|35001193570|2 +718222|35001193571|2 +752186|35001193572|2 +751616|35001193573|2 +577151|35001193669|2 +811506|35001193670|2 +499081|35001193720|2 +1104821|35001193739|2 +873240|35001193812|2 +759014|35001193954|2 +668789|35001193956|2 +876485|35001193959|2 +763982|35001194013|2 +766582|35001194014|2 +780489|35001194015|2 +792526|35001194017|2 +625630|35001194025|2 +695998|35001194030|2 +825959|35001194123|4 +677642|35001194125|2 +827441|35001194282|4 +515693|35001194367|2 +507079|35001194369|2 +657934|35001194371|2 +658765|35001194372|2 +791455|35001194373|2 +786271|35001194375|2 +545302|35001194489|2 +651194|35001194491|2 +854176|35001194492|2 +857936|35001194493|2 +479181|35001194537|2 +509496|35001194539|2 +587823|35001194541|2 +595171|35001194544|2 +737933|35001194548|2 +518380|35001194723|2 +612839|35001194724|2 +651204|35001194788|2 +515690|35001194853|2 +741914|35001194857|2 +852277|35001194924|2 +884027|35001194926|2 +555369|35001194958|2 +562629|35001194960|2 +588733|35001194961|2 +704521|35001195046|2 +786648|35001195052|2 +897143|35001195054|2 +564790|35001195057|2 +617873|35001195142|2 +724063|35001195143|2 +741679|35001195144|2 +744705|35001195195|2 +845904|35001195197|2 +519134|35001195383|2 +560990|35001195385|2 +608866|35001195386|2 +611772|35001195388|2 +722082|35001195389|2 +808557|35001195392|2 +892687|35001195393|2 +614764|35001195498|2 +875607|35001195500|2 +569626|35001195550|2 +810412|35001195777|2 +485120|35001195805|2 +505798|35001195806|2 +532765|35001195807|2 +691784|35001195824|2 +855318|35001195825|2 +470683|35001195943|2 +530374|35001195944|2 +665990|35001195969|2 +589128|35001196024|2 +766539|35001196029|2 +773588|35001196079|2 +485942|35001196176|2 +889019|35001196180|2 +832581|35001196389|4 +625860|35001196394|2 +754520|35001196397|2 +807385|35001196398|2 +891651|35001196399|2 +462971|35001196542|2 +484684|35001196543|2 +529851|35001196544|2 +853964|35001196545|2 +895543|35001196546|2 +558952|35001196624|2 +764482|35001196625|2 +764451|35001196626|2 +898507|35001196628|2 +844347|35001196707|2 +635289|35001196709|2 +864144|35001196854|2 +571115|35001196990|2 +839378|35001196993|4 +498536|35001197086|2 +581219|35001197088|2 +610067|35001197089|2 +541220|35001197090|2 +451696|35001197202|2 +488062|35001197211|2 +625204|35001197212|2 +1071827|35001197214|2 +777228|35001197250|2 +835990|35001197314|4 +665187|35001197470|2 +898843|35001197592|2 +799913|35001197593|2 +734551|35001197594|2 +716625|35001197595|2 +703689|35001197596|4 +559079|35001197597|2 +549315|35001197598|2 +604050|35001197601|2 +848532|35001197602|2 +731102|35001197630|2 +735402|35001197634|2 +569663|35001197637|2 +559546|35001197638|2 +605406|35001197774|2 +647213|35001197775|2 +715705|35001197892|2 +648249|35001197894|2 +873535|35001197968|2 +525012|35001197969|2 +502381|35001198053|2 +657052|35001198055|2 +661453|35001198059|2 +539347|35001198227|2 +763366|35001198419|2 +540564|35001198433|2 +743887|35001198435|2 +847047|35001198437|2 +506312|35001198565|2 +693393|35001198567|4 +773593|35001198568|2 +474192|35001198655|2 +705670|35001198857|2 +716358|35001198858|2 +757084|35001198859|2 +456111|35001198863|2 +507494|35001198867|2 +558200|35001198870|2 +627917|35001198871|2 +668089|35001198873|2 +834541|35001198995|4 +901102|35001199024|2 +487578|35001199055|2 +534850|35001199084|2 +573869|35001199085|2 +582345|35001199086|2 +758713|35001199088|2 +513840|35001199134|2 +491585|35001199261|2 +476902|35001199354|2 +538371|35001199355|2 +737215|35001199357|2 +796287|35001199358|2 +776252|35001199480|2 +847556|35001199532|2 +613590|35001199643|2 +605836|35001199719|2 +507289|35001199764|2 +550696|35001199765|2 +787473|35001199766|2 +862119|35001199879|2 +732393|35001199881|2 +664454|35001199883|2 +664079|35001199884|2 +618788|35001199885|2 +576675|35001199886|2 +876424|35001199894|2 +876426|35001199896|2 +517103|35001199997|2 +554151|35001199999|2 +570567|35001200000|2 +616102|35001200001|2 +703102|35001200002|2 +711567|35001200007|2 +875024|35001200067|2 +856574|35001200112|2 +559292|35001200120|2 +742851|35001200121|2 +759560|35001200124|2 +483265|35001200256|2 +826436|35001200288|4 +543957|35001200361|2 +691364|35001200364|2 +541116|35001200398|2 +529224|35001200513|2 +543463|35001200533|2 +578878|35001200535|2 +883883|35001200539|2 +763439|35001200644|2 +830687|35001200968|4 +883567|35001200970|2 +506228|35001200975|2 +525179|35001200977|2 +558857|35001200978|2 +759576|35001201058|2 +674309|35001201060|2 +533867|35001201212|2 +630850|35001201213|2 +650823|35001201214|2 +856020|35001201217|2 +502302|35001201312|2 +640038|35001201313|2 +710437|35001201314|2 +714640|35001201315|2 +744864|35001201316|2 +857049|35001201380|2 +640259|35001201554|2 +855248|35001201569|2 +849569|35001201573|2 +510306|35001201585|2 +601940|35001201586|2 +1258181|35001201597|2 +1157427|35001201754|2 +877711|35001201806|2 +578251|35001201809|2 +629186|35001201813|2 +756952|35001201814|2 +756953|35001201815|2 +771765|35001201818|2 +778977|35001201819|2 +629852|35001201963|2 +747578|35001201964|2 +453418|35001202062|2 +463037|35001202063|2 +550661|35001202067|4 +611393|35001202071|2 +631654|35001202073|2 +652629|35001202074|2 +601652|35001202082|2 +885238|35001202177|2 +691399|35001202207|2 +753601|35001202210|2 +772594|35001202213|2 +845986|35001202215|2 +846787|35001202217|2 +487238|35001202218|2 +503061|35001202220|2 +625995|35001202223|2 +694450|35001202613|2 +848488|35001202614|2 +882531|35001202615|2 +593399|35001202623|2 +715166|35001202628|2 +735571|35001202629|2 +467203|35001202630|2 +564862|35001202643|2 +569773|35001202645|2 +574991|35001202646|2 +590013|35001202649|2 +586111|35001202706|2 +722963|35001202741|2 +529015|35001202772|2 +860781|35001202773|2 +736615|35001202962|2 +505229|35001203044|2 +513098|35001203046|2 +605040|35001203047|2 +679003|35001203048|2 +863319|35001203051|2 +741379|35001203052|2 +741374|35001203053|2 +687315|35001203073|2 +664468|35001203145|2 +854323|35001203178|2 +732199|35001203190|2 +722964|35001203191|2 +836036|35001203199|4 +543456|35001203202|2 +558238|35001203204|2 +654647|35001203208|2 +661613|35001203210|2 +673795|35001203211|2 +839321|35001203213|4 +828000|35001203215|4 +707253|35001203234|2 +793477|35001203236|2 +579351|35001203266|2 +771003|35001203306|2 +799682|35001203322|2 +831389|35001203325|4 +472189|35001203329|2 +525437|35001203331|2 +618786|35001203333|2 +651123|35001203335|2 +674052|35001203336|2 +759638|35001203343|2 +658284|35001203370|2 +494320|35001203385|2 +538232|35001203387|2 +877764|35001203415|2 +645316|35001203433|2 +518139|35001203487|2 +591953|35001203488|2 +897030|35001203524|2 +728417|35001203525|2 +668506|35001203538|2 +893631|35001203972|2 +1089425|35001203975|2 +704666|35001204007|2 +487646|35001204424|2 +571383|35001204431|2 +683058|35001204432|2 +573306|35001204460|2 +538696|35001204573|2 +658334|35001204574|2 +763545|35001204576|2 +589340|35001204790|2 +895581|35001204856|2 +657527|35001204924|2 +659591|35001204925|2 +770681|35001204926|2 +799114|35001205074|2 +454329|35001205092|2 +711195|35001205093|2 +757269|35001205094|2 +782190|35001205095|2 +506612|35001205286|2 +735671|35001205290|2 +742298|35001205291|2 +882268|35001205297|2 +899121|35001205299|2 +854510|35001205304|2 +473962|35001205345|2 +799796|35001205389|2 +1140935|35001205537|2 +629923|35001205539|2 +659388|35001205670|2 +601862|35001205691|2 +676153|35001205692|2 +502923|35001205723|2 +689716|35001205725|2 +766214|35001206058|2 +788634|35001206061|2 +598544|35001206171|2 +672644|35001206172|2 +786682|35001206174|2 +787949|35001206175|2 +797600|35001206205|2 +598558|35001206598|2 +605301|35001206599|2 +649557|35001206604|2 +735935|35001206687|2 +523902|35001206819|2 +744164|35001207002|2 +488374|35001207403|2 +657757|35001207404|2 +699672|35001207405|2 +741397|35001207406|2 +747483|35001207407|2 +834557|35001207408|4 +697566|35001207415|2 +716445|35001207502|2 +734638|35001207513|2 +488312|35001207630|2 +480471|35001207887|2 +676965|35001207889|2 +799000|35001207892|2 +880808|35001207893|2 +566433|35001208464|2 +779012|35001208505|2 +652836|35001208670|2 +652837|35001208671|2 +684727|35001208672|2 +747976|35001208673|2 +778322|35001208674|2 +731781|35001208746|2 +793821|35001208751|2 +841360|35001208975|2 +451294|35001208985|4 +527794|35001208986|2 +623591|35001208989|2 +680517|35001209050|2 +882445|35001209079|2 +709707|35001209093|2 +460696|35001209099|2 +859754|35001209118|2 +796520|35001209147|4 +675345|35001209148|2 +784909|35001209149|2 +897303|35001209151|2 +884967|35001209371|2 +1181676|35001209456|2 +883257|35001209472|2 +876448|35001209473|2 +705377|35001209474|2 +802857|35001209475|2 +580347|35001209476|2 +836621|35001209477|4 +781248|35001209478|2 +736533|35001209480|2 +681367|35001209482|2 +670827|35001209483|2 +669846|35001209484|2 +610942|35001209485|2 +608556|35001209486|2 +467686|35001209489|2 +781904|35001209493|2 +783768|35001209494|2 +880824|35001209496|2 +839607|35001209506|6 +848499|35001209523|2 +537469|35001209524|2 +495755|35001209533|2 +716572|35001209570|2 +612104|35001209571|2 +589465|35001209573|2 +558339|35001209574|2 +546755|35001209575|2 +763830|35001209601|2 +598983|35001209604|2 +778960|35001209618|2 +754635|35001209619|2 +724414|35001209620|2 +616088|35001209623|2 +641253|35001209624|2 +734343|35001209627|2 +774158|35001209628|2 +796570|35001209629|2 +539349|35001209684|2 +743521|35001209724|2 +829045|35001209872|4 +740574|35001209901|2 +901699|35001209907|2 +724270|35001209909|2 +556405|35001209910|2 +452509|35001209914|2 +548336|35001209916|2 +884960|35001210084|2 +884977|35001210088|2 +871124|35001210097|2 +705270|35001210118|2 +883575|35001210127|2 +567573|35001210207|2 +568702|35001210208|2 +595466|35001210209|2 +733777|35001210211|2 +668219|35001210304|2 +666209|35001210441|2 +715399|35001210777|2 +466113|35001210778|2 +959082|35001210786|2 +845329|35001210931|2 +711454|35001210968|2 +523550|35001211012|2 +795650|35001211356|2 +702824|35001211371|2 +602233|35001211666|2 +616105|35001211669|2 +847454|35001211899|2 +794910|35001211902|2 +779640|35001211907|2 +585554|35001211911|2 +689647|35001212218|2 +846774|35001212221|2 +573563|35001212284|2 +459144|35001212397|2 +474808|35001212400|2 +901708|35001212404|2 +860221|35001212435|2 +846845|35001212566|2 +531715|35001212595|2 +805369|35001212602|2 +634854|35001212617|2 +611519|35001212630|2 +555508|35001212647|2 +804045|35001212650|2 +620117|35001212656|2 +510624|35001212662|2 +626619|35001212674|2 +728079|35001212676|2 +589506|35001212694|2 +586266|35001212699|2 +586270|35001212700|2 +773293|35001212742|2 +454961|35001212750|2 +615180|35001212753|2 +495722|35001212754|2 +482696|35001212820|2 +546833|35001212821|2 +481922|35001212931|2 +571795|35001212943|2 +496762|35001213066|2 +897378|35001213308|2 +684726|35001213553|2 +727391|35001213836|2 +488850|35001214020|2 +616410|35001214317|2 +864046|35001214553|2 +515691|35001214557|2 +518496|35001214564|2 +586494|35001214568|2 +560999|35001214585|2 +869183|35001214588|2 +774268|35001214590|2 +884112|35001214603|2 +851642|35001214616|2 +537772|35001214644|2 +664816|35001214713|2 +682417|35001216762|2 +743120|35001216767|2 +484966|35001216791|2 +765198|35001216801|2 +726076|35001216804|2 +601608|35001216863|2 +843894|35001216875|2 +1054724|35001217029|2 +892840|35001217039|2 +718211|35001217093|2 +894520|35001217226|2 +900565|35001217234|2 +892488|35001217235|2 +468691|35001217236|2 +890265|35001217237|2 +457136|35001217240|2 +865141|35001217241|2 +863041|35001217242|2 +479391|35001217243|2 +874751|35001217244|2 +462144|35001217245|2 +883313|35001217246|2 +844716|35001217249|2 +844466|35001217252|2 +844436|35001217253|2 +840689|35001217256|2 +836786|35001217259|4 +479838|35001217260|2 +836841|35001217261|4 +833331|35001217263|4 +829272|35001217264|4 +826837|35001217266|4 +828457|35001217271|4 +826604|35001217272|4 +628685|35001217273|2 +792523|35001217274|2 +510666|35001217275|2 +512316|35001217276|2 +790598|35001217278|2 +518204|35001217287|2 +519157|35001217289|2 +522285|35001217290|2 +533520|35001217291|2 +784216|35001217293|2 +783412|35001217294|2 +780730|35001217299|2 +779635|35001217300|2 +537195|35001217301|2 +537896|35001217302|2 +777235|35001217303|2 +541117|35001217306|2 +773175|35001217307|2 +771045|35001217309|2 +770597|35001217310|2 +764610|35001217312|2 +549687|35001217323|2 +552968|35001217325|2 +556411|35001217326|2 +561640|35001217331|2 +565886|35001217333|2 +568041|35001217335|2 +571114|35001217338|2 +571176|35001217339|2 +580812|35001217342|2 +589137|35001217347|4 +590232|35001217348|2 +598284|35001217379|2 +600361|35001217380|2 +759324|35001217382|2 +601448|35001217384|2 +602453|35001217387|2 +613501|35001217390|2 +617139|35001217396|2 +624711|35001217398|2 +735553|35001217400|2 +730577|35001217404|2 +637856|35001217405|2 +649308|35001217409|2 +650998|35001217410|2 +567320|35001217413|2 +599904|35001217414|4 +617025|35001217415|2 +652740|35001217417|2 +652746|35001217418|2 +663199|35001217421|2 +674544|35001217425|2 +677010|35001217426|2 +892838|35001217428|2 +684119|35001217430|2 +685283|35001217432|2 +686425|35001217433|2 +744516|35001217434|2 +718191|35001217436|2 +693717|35001217437|2 +717777|35001217438|2 +695257|35001217441|2 +695468|35001217442|2 +707132|35001217443|2 +712239|35001217444|2 +710050|35001217447|2 +722074|35001217448|2 +704540|35001217449|2 +827958|35001217491|4 +891286|35001217492|2 +554365|35001217636|2 +790141|35001217638|2 +694749|35001217714|2 +858726|35001217918|2 +614072|35001217919|2 +698631|35001217982|2 +599140|35001217985|4 +518809|35001217986|2 +655166|35001218005|2 +874201|35001218042|2 +856804|35001218044|2 +718051|35001218047|2 +657002|35001218048|2 +571962|35001218090|2 +651311|35001218091|2 +693951|35001218454|2 +852748|35001218455|2 +788053|35001218457|2 +778783|35001218458|2 +775447|35001218459|2 +772101|35001218460|2 +647499|35001218464|2 +558138|35001218502|2 +546345|35001218504|2 +504903|35001218505|2 +503605|35001218515|2 +494212|35001218518|2 +880675|35001218643|2 +722535|35001218646|2 +640329|35001218647|2 +608161|35001218648|2 +516984|35001218649|2 +709214|35001218865|4 +846896|35001218927|2 +700201|35001218930|2 +489868|35001218934|2 +500649|35001218936|2 +548464|35001218937|2 +651674|35001218940|2 +691492|35001218941|2 +711308|35001218942|2 +723142|35001218952|2 +522974|35001219122|2 +554266|35001219123|2 +608308|35001219357|2 +791362|35001219367|4 +807412|35001219368|2 +597647|35001219381|2 +590007|35001219573|2 +620751|35001219577|2 +799454|35001219579|2 +797783|35001219684|2 +482218|35001219686|2 +726821|35001219696|2 +471455|35001219809|2 +766284|35001219812|2 +853757|35001219815|2 +719170|35001219952|2 +725862|35001219955|2 +783952|35001219956|2 +707549|35001220065|2 +837182|35001220066|4 +507515|35001220113|2 +668027|35001220115|2 +762060|35001220116|2 +1046770|35001220204|2 +453971|35001220215|2 +855196|35001220382|2 +486289|35001220410|2 +638903|35001220413|2 +668770|35001220414|2 +882223|35001220452|2 +674158|35001220455|2 +878176|35001220458|2 +739732|35001220459|2 +707694|35001220600|2 +514404|35001220634|2 +783231|35001220635|2 +595995|35001220649|2 +469699|35001220689|2 +673552|35001220768|2 +730043|35001220770|2 +491505|35001220925|2 +567762|35001220926|2 +885858|35001220950|2 +563105|35001220968|2 +660093|35001221029|2 +461854|35001221099|2 +470571|35001221100|2 +505710|35001221101|2 +736985|35001221102|2 +760372|35001221150|2 +482752|35001221173|2 +579232|35001221175|2 +598849|35001221189|2 +647586|35001221358|2 +656501|35001221359|2 +684438|35001221360|2 +844345|35001221396|2 +894353|35001221461|2 +802902|35001221467|2 +802791|35001221468|2 +725255|35001221470|2 +628068|35001221471|2 +595476|35001221568|2 +531978|35001221645|2 +605809|35001221646|2 +834026|35001221647|2 +597438|35001221732|2 +543727|35001221755|2 +719159|35001221756|2 +885591|35001221757|2 +453070|35001221760|2 +493258|35001221761|2 +511617|35001221764|2 +524795|35001221766|2 +668618|35001221880|2 +739594|35001221929|2 +874625|35001222030|2 +482024|35001222034|2 +559847|35001222036|2 +564092|35001222037|2 +757882|35001222043|2 +799516|35001222044|2 +471252|35001222306|2 +629093|35001222307|2 +604872|35001222308|2 +844281|35001222320|2 +560590|35001222451|2 +579102|35001222452|2 +688432|35001222456|2 +559849|35001222538|2 +856244|35001222539|2 +878795|35001222540|2 +892273|35001222626|2 +847143|35001222627|2 +593852|35001222630|2 +559848|35001222738|2 +559850|35001222739|2 +884603|35001222746|2 +660276|35001222825|2 +878262|35001222864|2 +470234|35001222924|2 +781042|35001222930|2 +640125|35001223073|2 +683064|35001223076|2 +523955|35001223139|2 +750640|35001223150|2 +817757|35001223156|2 +669906|35001223251|2 +483435|35001223253|2 +471127|35001223259|2 +790982|35001223265|2 +620990|35001223418|2 +547293|35001223500|2 +702474|35001223504|2 +732449|35001223506|2 +636104|35001223617|2 +841902|35001223618|2 +1258145|35001223662|2 +668785|35001223730|2 +657175|35001223796|2 +758357|35001223800|2 +761443|35001223802|2 +764641|35001223881|2 +790940|35001223883|2 +460903|35001223975|2 +707622|35001224050|2 +729451|35001224051|2 +768313|35001224144|2 +509873|35001224146|2 +679921|35001224149|4 +766819|35001224155|2 +528153|35001224208|2 +808422|35001224290|2 +506042|35001224293|2 +650435|35001224294|2 +763557|35001224295|2 +807137|35001224296|2 +732080|35001224314|2 +539657|35001224527|2 +637254|35001224529|2 +583868|35001224530|2 +554789|35001224587|2 +455721|35001224588|2 +731450|35001224589|2 +733977|35001224594|2 +618424|35001224611|2 +630226|35001224613|2 +488687|35001224703|2 +587050|35001224706|2 +870720|35001224710|2 +476917|35001224777|2 +516559|35001224778|2 +538680|35001224779|2 +576676|35001224780|2 +664021|35001224782|2 +739689|35001224783|2 +778136|35001224877|2 +829951|35001224879|4 +455382|35001224890|2 +475549|35001224892|2 +479016|35001224893|2 +557927|35001224894|2 +527772|35001225135|2 +833671|35001225137|4 +1044110|35001225141|2 +647895|35001225227|2 +854212|35001225229|2 +701264|35001225312|2 +710221|35001225313|2 +853204|35001225314|2 +897398|35001225316|2 +607496|35001225349|2 +493032|35001225353|2 +773153|35001225468|2 +720319|35001225469|2 +733930|35001225471|2 +613076|35001225476|2 +683822|35001225590|2 +633725|35001225593|2 +806206|35001225600|2 +501451|35001225623|2 +516040|35001225624|2 +516820|35001225625|2 +488618|35001225637|2 +742954|35001225727|2 +598860|35001225739|2 +756769|35001225855|2 +588469|35001225856|2 +476248|35001225858|2 +685777|35001226078|2 +683199|35001226178|2 +668935|35001226185|2 +671537|35001226194|2 +858456|35001226228|2 +568556|35001226239|2 +769251|35001226241|2 +898613|35001226341|2 +557715|35001226391|2 +732353|35001226392|2 +801636|35001226393|2 +647134|35001226447|2 +753700|35001226448|2 +758818|35001226449|2 +768343|35001226451|2 +1268787|35001226674|2 +894591|35001226696|2 +802903|35001226698|2 +789465|35001226700|2 +724313|35001226702|2 +474604|35001226709|2 +603506|35001226732|2 +617118|35001226741|2 +749775|35001226743|2 +784728|35001226747|2 +857379|35001226816|2 +792660|35001226827|2 +573223|35001226828|2 +576258|35001226829|2 +651857|35001226830|2 +830311|35001226833|2 +828786|35001227071|4 +493883|35001227201|2 +607707|35001227204|2 +621638|35001227206|2 +659375|35001227207|2 +478352|35001227293|2 +489409|35001227295|2 +827138|35001227486|4 +526201|35001227494|2 +739100|35001227601|2 +786497|35001227602|2 +546535|35001227640|2 +606769|35001227786|2 +509208|35001227928|2 +640109|35001228044|2 +500163|35001228075|2 +667155|35001228081|2 +770565|35001228082|2 +482515|35001228208|2 +598699|35001228209|2 +723952|35001228210|2 +800130|35001228211|2 +855568|35001228212|2 +890287|35001228213|2 +571170|35001228222|2 +897382|35001228253|2 +698757|35001228334|2 +841630|35001228336|2 +851643|35001228337|2 +543655|35001228399|2 +834348|35001228407|4 +867063|35001228408|2 +888874|35001228409|2 +691956|35001228492|2 +526604|35001228537|2 +714614|35001228538|2 +837390|35001228540|4 +872646|35001228542|2 +599041|35001228555|2 +608576|35001228702|2 +771343|35001228704|2 +561440|35001228867|2 +662919|35001228870|2 +779052|35001229039|2 +899289|35001229101|2 +790964|35001229166|2 +629443|35001229189|2 +767262|35001229205|2 +850145|35001229238|2 +589217|35001229239|2 +679781|35001229373|2 +1107058|35001229378|2 +580077|35001229403|2 +673910|35001229421|2 +902119|35001229511|2 +692357|35001229524|2 +865427|35001229525|2 +597673|35001229529|2 +663941|35001229532|2 +739565|35001229534|2 +658499|35001229536|2 +488056|35001229538|2 +590822|35001229541|2 +560757|35001229542|2 +734552|35001229548|2 +612025|35001229556|2 +762811|35001229559|2 +873766|35001229561|2 +677333|35001229562|2 +694736|35001229564|2 +774694|35001229568|2 +739668|35001229570|2 +500862|35001229572|2 +873675|35001229573|2 +892829|35001229577|2 +831400|35001229579|4 +756843|35001229580|2 +876557|35001229585|2 +678379|35001229588|2 +844232|35001229592|2 +568370|35001229594|2 +551061|35001229595|2 +747088|35001229598|2 +711422|35001229599|2 +518747|35001229600|2 +870999|35001229601|2 +503036|35001229603|2 +574042|35001229611|2 +564095|35001229615|2 +594574|35001229617|2 +798179|35001229618|2 +716427|35001229621|2 +527774|35001229622|2 +707640|35001229623|2 +573734|35001229624|2 +606506|35001229626|2 +717158|35001229631|2 +676877|35001229632|2 +616089|35001229633|2 +704672|35001229638|2 +899445|35001229640|2 +691180|35001229641|2 +827861|35001229642|4 +844237|35001229645|2 +784902|35001229646|2 +542260|35001229647|2 +470343|35001229648|2 +663656|35001229649|2 +532703|35001229652|2 +452952|35001229655|2 +759802|35001229660|2 +480390|35001229663|2 +667994|35001229664|2 +885940|35001229667|2 +697682|35001229668|2 +670853|35001229674|2 +618191|35001229677|2 +698023|35001229681|2 +532713|35001229684|2 +599471|35001229685|2 +569662|35001229686|2 +623089|35001229696|2 +512826|35001229701|2 +888496|35001229703|2 +658225|35001229704|2 +762535|35001229705|2 +710348|35001229706|2 +791314|35001229710|2 +535387|35001229718|2 +780485|35001229719|2 +530360|35001229722|2 +782108|35001229726|2 +780642|35001229729|2 +547417|35001229730|2 +573909|35001229732|2 +555515|35001229736|2 +669459|35001229738|2 +658488|35001229739|2 +867921|35001229744|2 +759673|35001229745|2 +763900|35001229746|2 +655303|35001229749|2 +624139|35001229750|2 +759064|35001229752|2 +695353|35001229753|2 +772595|35001229754|2 +670203|35001229757|2 +678397|35001229764|2 +612935|35001229765|2 +711592|35001229766|2 +847580|35001229786|2 +699982|35001229796|2 +886260|35001229799|2 +809098|35001229810|2 +640902|35001229814|2 +730197|35001229815|2 +808692|35001229816|2 +880179|35001229826|4 +731937|35001229829|2 +854529|35001229841|2 +615594|35001229843|2 +462836|35001230022|2 +1047163|35001230035|2 +888078|35001230185|2 +674322|35001230187|2 +455380|35001230188|2 +583526|35001230374|2 +583196|35001230376|2 +496772|35001230377|2 +631484|35001230380|2 +777104|35001230381|2 +576950|35001230384|2 +799805|35001230520|2 +867056|35001230521|2 +893329|35001230523|2 +496743|35001230533|2 +549062|35001230543|2 +560544|35001230552|2 +660117|35001230556|2 +741291|35001230604|2 +794961|35001230605|2 +625457|35001230645|2 +635509|35001230646|2 +822352|35001230649|2 +888492|35001230650|2 +604467|35001230750|2 +550449|35001230754|2 +538430|35001230756|2 +672846|35001230854|2 +533518|35001230856|2 +500613|35001230858|2 +514226|35001230906|2 +873576|35001230909|2 +699096|35001231122|2 +885699|35001231124|2 +642053|35001231176|2 +759803|35001231179|2 +559819|35001231230|2 +546288|35001231343|2 +713520|35001231344|2 +733152|35001231345|2 +876594|35001231346|2 +603192|35001231408|2 +558219|35001231430|2 +846270|35001231675|2 +563168|35001231860|2 +581870|35001232042|2 +738790|35001232044|2 +707523|35001232302|2 +793534|35001232303|2 +1147776|35001232316|2 +870262|35001232662|2 +718379|35001232666|2 +684705|35001232667|2 +682576|35001232668|2 +529621|35001232672|2 +519527|35001232673|2 +509280|35001232674|2 +707676|35001232690|2 +745720|35001232747|2 +772132|35001232749|2 +574672|35001232755|2 +685876|35001232763|4 +675302|35001232778|2 +675256|35001232779|2 +681438|35001232781|2 +684975|35001232782|4 +732510|35001232882|2 +696313|35001232885|2 +684758|35001232886|2 +684397|35001232887|2 +506361|35001233029|2 +573899|35001233030|2 +601804|35001233032|2 +870659|35001233033|2 +589175|35001233058|2 +529587|35001233122|2 +738791|35001233165|2 +838994|35001233167|4 +653065|35001233252|2 +605057|35001233254|2 +558786|35001233255|2 +462940|35001233259|2 +576758|35001233262|2 +630218|35001233263|2 +723941|35001233528|2 +713905|35001233529|2 +675663|35001233531|2 +593851|35001233533|2 +834321|35001233649|4 +802921|35001233650|2 +556637|35001233654|2 +495583|35001233696|2 +556721|35001233697|2 +738645|35001233699|2 +961737|35001233700|2 +552672|35001233821|2 +628290|35001233823|2 +844955|35001233827|2 +516714|35001233842|2 +555290|35001233850|2 +742238|35001233945|2 +767013|35001233946|2 +836575|35001233947|4 +898749|35001233948|2 +468297|35001233949|2 +469018|35001234054|2 +662361|35001234055|2 +674183|35001234056|2 +1158043|35001234158|2 +735687|35001234160|2 +500734|35001234173|2 +501632|35001234174|2 +538310|35001234175|2 +669014|35001234177|2 +679004|35001234178|2 +718450|35001234179|2 +897013|35001234186|2 +829296|35001234321|4 +596598|35001234332|2 +685557|35001234334|2 +757604|35001234335|2 +796631|35001234367|2 +495622|35001234371|2 +551482|35001234372|2 +598781|35001234375|2 +558961|35001234464|2 +661355|35001234467|2 +789212|35001234497|2 +523606|35001234710|4 +869888|35001234801|2 +886208|35001234802|2 +672127|35001234821|2 +671995|35001234822|2 +625390|35001234828|2 +1023020|35001234991|2 +841090|35001234996|2 +852247|35001235003|2 +852245|35001235018|2 +852246|35001235019|2 +701987|35001235042|2 +558564|35001235153|2 +572574|35001235154|2 +548149|35001235252|2 +834432|35001235253|4 +472149|35001235376|2 +657954|35001235383|2 +771004|35001235384|2 +693980|35001235505|2 +1029819|35001235506|2 +888414|35001235583|2 +892841|35001235584|2 +1031370|35001235619|2 +982916|35001235668|2 +540736|35001235673|2 +596806|35001235677|2 +542852|35001235833|2 +689369|35001235834|2 +802380|35001235835|2 +752975|35001235942|2 +554012|35001235943|2 +490423|35001235944|2 +471890|35001235945|2 +859907|35001236023|2 +720735|35001236025|2 +593391|35001236173|2 +697497|35001236175|2 +773661|35001236177|4 +820340|35001236178|2 +884183|35001236181|2 +690711|35001236261|2 +593773|35001236267|2 +795698|35001236451|2 +793478|35001236452|2 +830620|35001236458|4 +650824|35001236627|2 +657386|35001236628|2 +754161|35001236633|2 +619055|35001236649|2 +885945|35001236651|2 +455030|35001236703|2 +663192|35001236706|2 +866143|35001236709|2 +478848|35001237021|2 +639136|35001237025|2 +675789|35001237070|2 +691627|35001237072|2 +801572|35001237080|2 +828882|35001237082|4 +837778|35001237084|4 +900072|35001237100|2 +492614|35001237260|2 +707925|35001237267|2 +865160|35001237272|2 +472247|35001237490|2 +493950|35001237492|2 +602249|35001237496|2 +802708|35001237567|2 +809004|35001237571|2 +871643|35001237573|2 +661948|35001237608|2 +487262|35001237611|2 +805796|35001237792|2 +839367|35001237794|4 +880428|35001237831|2 +493712|35001237882|2 +575376|35001237902|2 +589819|35001237996|2 +645263|35001238000|2 +795074|35001238001|2 +848601|35001238002|2 +785601|35001238225|2 +608276|35001238229|2 +608892|35001238230|2 +633899|35001238231|2 +706509|35001238232|2 +739945|35001238236|2 +467862|35001238237|2 +468514|35001238238|2 +528431|35001238242|2 +542066|35001238243|2 +546963|35001238244|2 +602946|35001238319|2 +679201|35001238320|2 +745513|35001238322|2 +762389|35001238323|2 +856094|35001238440|2 +543830|35001238444|2 +898533|35001238651|2 +753271|35001238654|2 +753272|35001238655|2 +604674|35001238662|2 +617125|35001238663|2 +760417|35001238749|2 +550806|35001238763|2 +583855|35001238773|2 +580921|35001238775|2 +668326|35001238777|2 +1188563|35001238778|2 +672966|35001238779|2 +462779|35001238781|2 +612182|35001238782|2 +712789|35001238783|2 +695642|35001238784|2 +657572|35001238795|2 +498470|35001238801|2 +874790|35001238802|2 +666336|35001238803|2 +563218|35001238808|2 +475261|35001238850|2 +502896|35001238851|2 +643116|35001238862|2 +778956|35001238863|2 +856942|35001238864|2 +527348|35001238919|2 +706387|35001238921|2 +897077|35001239037|2 +607422|35001239048|2 +500030|35001239193|2 +546261|35001239333|2 +898186|35001239346|2 +487953|35001239362|2 +657805|35001239422|2 +827387|35001239432|4 +833659|35001239433|2 +540984|35001239640|2 +564307|35001239641|2 +591858|35001239643|2 +617286|35001239644|2 +665010|35001239646|2 +480086|35001239731|2 +480179|35001239732|2 +604378|35001239734|2 +543439|35001239789|2 +728461|35001239794|2 +466935|35001240030|2 +593499|35001240033|2 +852541|35001240233|2 +858207|35001240234|2 +859706|35001240236|2 +515927|35001240243|2 +632190|35001240246|2 +693584|35001240247|2 +715171|35001240248|2 +723845|35001240249|2 +556225|35001240334|2 +634466|35001240433|2 +594811|35001240452|2 +686707|35001240454|2 +686706|35001240455|2 +1131584|35001240660|2 +695224|35001240696|2 +473536|35001240700|2 +530767|35001240710|2 +884179|35001240713|2 +643620|35001240842|2 +802548|35001240847|2 +843476|35001240877|2 +666457|35001240882|2 +683973|35001240908|2 +584670|35001240910|2 +1252008|35001241009|2 +669086|35001241010|2 +659383|35001241018|2 +512381|35001241086|2 +591300|35001241088|4 +636692|35001241090|2 +781721|35001241091|2 +857980|35001241103|2 +518282|35001241235|2 +615107|35001241236|2 +663182|35001241240|2 +794319|35001241241|2 +858414|35001241337|2 +711974|35001241459|2 +763715|35001241460|2 +763945|35001241463|2 +533893|35001241566|2 +576871|35001241568|2 +587542|35001241626|2 +632943|35001241627|2 +579360|35001241669|2 +454567|35001241776|2 +599875|35001241777|2 +760318|35001241779|2 +795324|35001241897|2 +826401|35001241898|4 +532045|35001241902|2 +548986|35001241903|2 +653350|35001241904|2 +653372|35001241905|2 +482020|35001241978|2 +524206|35001241979|2 +783977|35001242000|2 +455657|35001242002|2 +783978|35001242003|2 +510609|35001242099|2 +767674|35001242108|2 +851018|35001242116|2 +860770|35001242291|2 +883631|35001242296|2 +507081|35001242304|2 +508778|35001242306|2 +491231|35001242346|2 +476907|35001242469|2 +496634|35001242470|2 +535512|35001242472|2 +806771|35001242475|2 +534961|35001242622|2 +777336|35001242627|2 +463910|35001242640|2 +585376|35001242646|2 +801248|35001242947|2 +831292|35001242948|4 +686474|35001242956|4 +713690|35001242957|2 +766600|35001242958|2 +451687|35001242963|2 +487973|35001242964|2 +653446|35001242967|2 +713693|35001243084|2 +729372|35001243085|2 +725641|35001243118|2 +747680|35001243167|2 +942382|35001243170|2 +838617|35001243323|4 +500422|35001243329|2 +826752|35001243330|4 +779641|35001243399|2 +467908|35001243402|2 +656217|35001243408|2 +570645|35001243412|2 +597408|35001243417|2 +710012|35001243423|2 +884968|35001243425|2 +805815|35001243587|2 +828942|35001243722|4 +841606|35001243805|2 +533219|35001243848|2 +549094|35001243849|2 +764848|35001243876|2 +566118|35001243972|2 +826966|35001243980|4 +860264|35001243981|2 +860263|35001243982|2 +630713|35001243991|2 +497981|35001243993|2 +595021|35001244003|2 +826159|35001244004|6 +709490|35001244120|4 +573447|35001244147|2 +569455|35001244149|2 +838549|35001244403|4 +497761|35001244407|2 +538020|35001244409|2 +605722|35001244413|2 +650726|35001244414|2 +655289|35001244415|2 +539031|35001244416|2 +858591|35001244529|2 +472728|35001244553|2 +482089|35001244554|2 +482359|35001244555|2 +548469|35001244557|2 +664522|35001244567|2 +766712|35001244709|2 +844261|35001244711|2 +459998|35001244716|2 +500309|35001244717|2 +508437|35001244718|2 +582279|35001244720|2 +588081|35001244721|2 +797943|35001244816|2 +851478|35001244820|2 +484348|35001244822|2 +581243|35001244824|2 +703968|35001244825|2 +809091|35001244826|2 +455611|35001244827|2 +624415|35001244910|2 +656934|35001244911|2 +772078|35001245010|2 +792716|35001245011|2 +507901|35001245014|2 +776438|35001245102|2 +498274|35001245359|2 +553323|35001245360|2 +596625|35001245361|2 +688696|35001245362|2 +853347|35001245364|2 +684063|35001245418|2 +854118|35001245456|2 +549994|35001245464|2 +490430|35001245517|2 +859753|35001245518|2 +540918|35001245618|2 +685468|35001245723|2 +701884|35001245828|2 +538427|35001245852|2 +602816|35001245853|2 +649257|35001245855|2 +701023|35001245857|2 +791010|35001245859|2 +878424|35001245860|4 +587149|35001245938|2 +697516|35001245939|2 +546916|35001245942|2 +655630|35001245944|2 +645225|35001245948|2 +1077824|35001246011|2 +558195|35001246032|2 +650120|35001246033|2 +476140|35001246325|2 +632135|35001246349|2 +763955|35001246350|2 +554590|35001246460|4 +595341|35001246487|2 +769133|35001246488|4 +868513|35001246491|2 +752220|35001246583|2 +531471|35001246664|2 +579182|35001246665|2 +616392|35001246666|2 +657753|35001246738|2 +849459|35001246742|4 +851538|35001246743|2 +723083|35001247201|2 +774295|35001247211|2 +777670|35001247221|2 +829449|35001247225|4 +602895|35001247227|2 +617740|35001247229|2 +707145|35001247230|2 +470344|35001247231|2 +517961|35001247246|2 +520577|35001247247|2 +526755|35001247248|2 +466542|35001247354|4 +537582|35001247408|2 +804308|35001247413|2 +499267|35001247427|2 +622693|35001247428|2 +675447|35001247430|2 +713417|35001247431|2 +454805|35001247439|2 +878172|35001247442|2 +535582|35001247532|2 +862078|35001247536|2 +884148|35001247545|2 +637790|35001247549|2 +576639|35001247878|2 +896466|35001247880|2 +474492|35001248027|2 +526228|35001248031|2 +732058|35001248048|2 +593423|35001248087|2 +772428|35001248091|2 +483369|35001248095|2 +577031|35001248103|2 +617455|35001248168|2 +668771|35001248169|2 +887353|35001248181|2 +592490|35001248189|2 +542951|35001248271|2 +540037|35001248334|2 +542363|35001248336|2 +554871|35001248337|2 +737125|35001248378|2 +538398|35001248527|2 +759037|35001248561|2 +527551|35001248573|2 +486203|35001248574|2 +706759|35001248690|2 +714755|35001248692|2 +798011|35001248694|2 +640030|35001248767|2 +741554|35001248768|2 +806791|35001248769|2 +549986|35001248837|2 +549100|35001248973|2 +655717|35001248975|2 +670933|35001248976|2 +841591|35001248977|2 +841590|35001248978|2 +491088|35001249004|2 +804796|35001249010|2 +482635|35001249114|2 +856576|35001249126|2 +867860|35001249129|2 +874652|35001249143|2 +485637|35001249161|2 +746197|35001249166|2 +1058571|35001249169|2 +472270|35001249379|2 +702347|35001249381|2 +766090|35001249382|2 +805255|35001249672|2 +840199|35001249777|4 +734471|35001249778|2 +632733|35001249780|2 +617905|35001249781|2 +588765|35001249783|2 +766610|35001249887|2 +603976|35001249895|2 +545317|35001249898|2 +471473|35001249900|4 +874568|35001250019|2 +706626|35001250021|2 +632597|35001250023|2 +529592|35001250026|2 +488835|35001250107|2 +741328|35001250117|2 +730652|35001250120|2 +794129|35001250129|2 +1043601|35001250136|2 +500599|35001250147|2 +551931|35001250256|2 +583269|35001250257|2 +771392|35001250491|2 +581244|35001250524|2 +623555|35001250526|2 +743023|35001250529|2 +666861|35001250611|2 +498033|35001250658|2 +485349|35001250659|2 +825517|35001250720|4 +485348|35001250726|2 +799302|35001250728|2 +826242|35001250899|4 +485629|35001250903|2 +631674|35001250904|2 +635605|35001250905|4 +661054|35001250906|2 +831995|35001250925|4 +868450|35001250926|2 +462659|35001251079|2 +553978|35001251081|2 +554734|35001251082|2 +603655|35001251083|2 +884927|35001251121|2 +804009|35001251202|2 +825579|35001251203|4 +485121|35001251376|2 +734573|35001251396|2 +654902|35001251405|2 +598638|35001251412|2 +581238|35001251504|2 +688004|35001251506|2 +706271|35001251509|2 +803819|35001251510|2 +894121|35001251530|2 +760471|35001251651|2 +483533|35001251657|2 +519116|35001251659|2 +618376|35001251661|2 +843480|35001251662|2 +677414|35001251679|2 +590342|35001251800|2 +725450|35001251822|2 +478766|35001251991|2 +711099|35001252000|2 +765037|35001252059|2 +664852|35001252108|2 +650907|35001252150|2 +583119|35001252271|2 +601718|35001252273|2 +644796|35001252274|2 +674136|35001252282|2 +526785|35001252386|2 +560602|35001252390|2 +841654|35001252394|2 +496679|35001252536|2 +596270|35001252538|2 +637648|35001252540|2 +705115|35001252541|2 +694250|35001252542|2 +782419|35001252544|2 +796849|35001252546|2 +576472|35001252552|2 +784707|35001252651|2 +556711|35001252664|2 +537179|35001252704|2 +684681|35001252715|2 +846112|35001252724|4 +716187|35001252806|2 +764919|35001252927|2 +807087|35001252929|2 +557931|35001253075|2 +685163|35001253101|2 +581955|35001253151|2 +1039622|35001253192|2 +560219|35001253284|2 +898136|35001253286|2 +864214|35001253426|2 +742271|35001253429|2 +790463|35001253430|2 +643524|35001253438|2 +732559|35001253472|2 +889935|35001253475|2 +760792|35001253518|2 +652511|35001253532|2 +781743|35001253584|2 +754517|35001253612|2 +762034|35001253723|2 +767855|35001253724|2 +604916|35001253727|2 +779002|35001253748|2 +775169|35001253749|2 +900733|35001253762|2 +787201|35001253787|2 +735722|35001253791|2 +562547|35001253939|2 +718475|35001253941|2 +474299|35001254047|2 +864715|35001254056|2 +583555|35001254125|2 +702308|35001254126|2 +537750|35001254127|2 +510504|35001254129|2 +879678|35001254189|2 +871581|35001254247|2 +803711|35001254519|2 +719906|35001254543|2 +544450|35001254660|2 +457141|35001254663|2 +702318|35001254664|2 +761855|35001254665|2 +598606|35001254764|2 +534510|35001254836|2 +533702|35001254853|2 +651131|35001254855|2 +760690|35001254856|2 +738456|35001254862|2 +481072|35001254931|2 +660524|35001254943|2 +673597|35001254946|2 +696498|35001254949|2 +757439|35001255099|2 +862113|35001255100|2 +468429|35001255323|2 +516536|35001255326|2 +604462|35001255328|2 +697484|35001255329|2 +781540|35001255333|2 +735710|35001255418|2 +898214|35001255420|2 +759804|35001255593|2 +546769|35001255608|2 +882332|35001255810|2 +703218|35001255822|2 +718641|35001255823|4 +746750|35001255824|2 +758161|35001255826|2 +882279|35001255933|2 +487960|35001255938|2 +551231|35001255942|2 +625863|35001255943|2 +866620|35001255944|2 +707254|35001255986|2 +806579|35001255987|2 +479029|35001256004|2 +541304|35001256027|2 +566886|35001256028|2 +458494|35001256030|2 +689524|35001256114|4 +720002|35001256115|2 +751743|35001256117|2 +832327|35001256121|4 +536372|35001256134|2 +536360|35001256137|2 +590688|35001256142|2 +613478|35001256144|2 +758753|35001256270|2 +729559|35001256274|2 +694248|35001256568|2 +570271|35001256569|2 +893323|35001256570|2 +481728|35001256618|2 +579488|35001256619|2 +737606|35001256708|2 +677277|35001256709|2 +562681|35001256754|2 +740612|35001256760|2 +488765|35001256790|2 +694947|35001256792|2 +655174|35001256796|2 +843022|35001256910|2 +878861|35001256914|2 +493512|35001256918|2 +566271|35001256922|2 +706920|35001256924|2 +614156|35001256928|2 +1242681|35001257005|2 +613502|35001257007|4 +715848|35001257008|2 +876560|35001257109|2 +897644|35001257110|2 +619986|35001257120|2 +873206|35001257132|2 +680192|35001257153|2 +680198|35001257155|2 +543719|35001257271|2 +579435|35001257272|2 +830398|35001257276|4 +741133|35001257396|2 +547354|35001257399|2 +706987|35001257410|2 +710877|35001257411|2 +728199|35001257412|2 +454410|35001257426|2 +495513|35001257512|2 +685695|35001257513|2 +628584|35001257646|2 +847518|35001257648|2 +698528|35001257822|2 +899706|35001257868|2 +779323|35001257956|2 +775778|35001257977|2 +746915|35001257978|2 +833779|35001257979|4 +874420|35001258017|2 +538521|35001258025|2 +586602|35001258030|2 +490172|35001258035|2 +801297|35001258045|2 +1233592|35001258046|2 +688155|35001258051|2 +586887|35001258068|2 +634873|35001258096|2 +639584|35001258275|2 +506134|35001258284|2 +563835|35001258444|2 +758750|35001258451|2 +675366|35001258583|2 +708747|35001258584|2 +712870|35001258585|2 +763984|35001258586|2 +786456|35001258587|2 +888009|35001258588|2 +892154|35001258589|2 +690548|35001258601|2 +556658|35001258631|2 +738938|35001258741|2 +786082|35001258911|2 +475694|35001258916|2 +617827|35001258917|2 +727870|35001258922|2 +893183|35001259069|2 +475390|35001259080|2 +489847|35001259103|2 +755868|35001259105|2 +855217|35001259107|2 +885081|35001259147|2 +515530|35001259169|2 +640941|35001259170|2 +633159|35001259278|2 +644245|35001259279|2 +705337|35001259315|2 +842160|35001259316|2 +558376|35001259356|2 +859707|35001259357|2 +533003|35001259435|2 +673012|35001259437|2 +844827|35001259438|2 +561439|35001259439|2 +707442|35001259457|2 +855002|35001259458|2 +533985|35001259460|2 +501090|35001259461|2 +697769|35001259464|2 +804657|35001259465|2 +647090|35001259470|2 +623170|35001259478|2 +669694|35001259479|2 +608667|35001259480|2 +1259620|35001259482|2 +501792|35001259488|2 +543739|35001259490|2 +676921|35001259491|2 +702644|35001259492|2 +759360|35001259493|2 +683485|35001259510|2 +783851|35001259511|2 +817761|35001259524|2 +854725|35001259545|2 +798238|35001259547|2 +538475|35001260574|2 +846030|35001260718|2 +871121|35001260848|2 +483277|35001260850|2 +487576|35001260852|2 +494491|35001260855|2 +496769|35001260858|2 +530055|35001260883|2 +533691|35001260886|2 +544513|35001260893|2 +548613|35001260894|2 +549128|35001260895|2 +550051|35001260897|2 +757250|35001260902|2 +565150|35001260904|2 +636479|35001260928|2 +641263|35001260930|2 +573557|35001260933|2 +579299|35001260935|2 +587301|35001260938|2 +593384|35001260940|2 +604487|35001260942|2 +617459|35001260952|2 +454865|35001261005|2 +550052|35001261138|2 +682164|35001261273|2 +721089|35001261276|2 +1071789|35001261332|2 +600680|35001261333|2 +550728|35001261431|2 +652911|35001261606|2 +493649|35001261656|2 +894383|35001261660|2 +551325|35001261667|2 +878276|35001261673|2 +866207|35001261678|2 +646567|35001261683|2 +650221|35001261684|2 +840693|35001261693|2 +670303|35001261704|2 +682231|35001261708|2 +682414|35001261710|2 +705692|35001261714|2 +710768|35001261724|2 +712698|35001261725|2 +722545|35001261734|2 +807260|35001261753|2 +802737|35001261764|2 +801429|35001261766|2 +793481|35001261772|2 +792842|35001261775|2 +787948|35001261778|2 +774439|35001261788|2 +764256|35001261791|2 +749332|35001261795|2 +466406|35001262021|2 +728853|35001262027|2 +865825|35001262031|2 +881756|35001262112|2 +766058|35001262113|2 +866754|35001262154|2 +845979|35001262417|2 +875331|35001262418|2 +805199|35001262557|2 +749185|35001262568|2 +862022|35001262817|2 +888631|35001262818|2 +493434|35001262829|2 +573501|35001262830|2 +647500|35001262832|2 +685704|35001263007|2 +729780|35001263008|4 +785382|35001263009|2 +455414|35001263039|2 +590818|35001263046|2 +607965|35001263052|2 +881157|35001263059|2 +790239|35001263060|2 +790236|35001263061|2 +468527|35001263115|2 +469705|35001263116|2 +590967|35001263117|2 +604063|35001263118|2 +670380|35001263529|2 +451731|35001263533|2 +467306|35001263534|2 +551235|35001263535|2 +716359|35001263589|2 +794735|35001263626|2 +595377|35001263729|2 +474724|35001263892|2 +630048|35001263893|2 +848468|35001263896|2 +871147|35001263911|2 +525829|35001263915|2 +856758|35001263917|2 +802357|35001263922|2 +889971|35001264043|2 +535134|35001264046|2 +668900|35001264047|2 +871102|35001264221|2 +696946|35001264401|2 +755505|35001264408|2 +684286|35001264433|2 +745212|35001264434|2 +662724|35001264435|2 +834434|35001264538|4 +605204|35001264548|2 +496727|35001264608|2 +496726|35001264609|2 +791493|35001264644|2 +889972|35001264691|2 +567957|35001264703|2 +809029|35001264763|2 +613244|35001264803|2 +706536|35001264804|2 +733997|35001264806|2 +840898|35001264833|2 +546138|35001264836|2 +730774|35001264870|2 +614858|35001264917|2 +772844|35001264930|2 +590647|35001264942|2 +691628|35001265007|2 +891412|35001265401|2 +632151|35001265403|2 +523597|35001265504|2 +572183|35001265505|2 +581609|35001265506|2 +634420|35001265507|2 +652135|35001265508|2 +728502|35001265525|2 +501573|35001265529|2 +467783|35001265533|2 +484975|35001265549|2 +734778|35001265554|2 +526349|35001265711|2 +526289|35001265717|2 +806830|35001265789|2 +847303|35001265790|2 +567853|35001265799|2 +468968|35001265917|2 +895561|35001265927|2 +1122443|35001265928|2 +533933|35001266001|2 +637366|35001266002|2 +531418|35001266179|2 +651386|35001266180|2 +727118|35001266181|2 +686718|35001266195|2 +599783|35001266231|2 +871092|35001266246|2 +875295|35001266319|2 +884163|35001266320|2 +673184|35001266327|2 +755165|35001266331|2 +615782|35001266385|2 +633422|35001266390|2 +595610|35001266491|2 +657356|35001266494|2 +879205|35001266497|2 +503829|35001266586|2 +883484|35001266726|2 +573891|35001266816|2 +609237|35001266818|2 +861754|35001266890|2 +659389|35001266896|2 +883683|35001266926|2 +610085|35001266943|2 +635259|35001266944|2 +481178|35001266952|2 +506253|35001266955|2 +526784|35001266958|2 +472378|35001267013|2 +825953|35001267053|4 +572578|35001267063|2 +722503|35001267065|2 +460174|35001267102|2 +648029|35001267201|2 +767445|35001267206|2 +780465|35001267303|2 +827155|35001267359|4 +895099|35001267364|2 +598310|35001267503|2 +722022|35001267505|2 +866204|35001267507|2 +652802|35001267600|2 +727561|35001267616|2 +610141|35001267633|2 +844390|35001267683|2 +659703|35001267707|2 +746925|35001267709|2 +554219|35001267755|2 +589831|35001267758|2 +592978|35001267761|2 +620040|35001267766|2 +856623|35001267907|2 +669029|35001267918|2 +893881|35001267922|2 +893888|35001267924|2 +470287|35001267925|2 +685270|35001267934|2 +697506|35001267935|2 +839403|35001268083|4 +452536|35001268087|2 +477137|35001268088|2 +645288|35001268090|2 +710974|35001268135|2 +551037|35001268152|2 +775148|35001268189|2 +828237|35001268191|4 +487778|35001268193|2 +555157|35001268194|2 +580584|35001268195|2 +467480|35001268236|2 +851785|35001268266|2 +866214|35001268267|2 +885623|35001268268|2 +895801|35001268269|2 +568049|35001268271|2 +713873|35001268333|2 +860771|35001268357|2 +784467|35001268388|2 +901594|35001268389|2 +481856|35001268400|2 +662543|35001268402|2 +686852|35001268403|2 +901924|35001268419|2 +522281|35001268428|2 +830908|35001268457|4 +804798|35001268533|2 +867198|35001268534|2 +556875|35001268540|2 +716788|35001268543|2 +761873|35001268548|2 +701904|35001268569|2 +518417|35001268631|2 +566528|35001268632|2 +523109|35001268656|2 +901124|35001268724|4 +512012|35001268798|2 +618580|35001268800|2 +630728|35001268801|2 +742228|35001268802|2 +855367|35001268805|2 +603525|35001268947|2 +632090|35001268948|2 +773584|35001268951|2 +786272|35001268999|2 +619442|35001269090|2 +662544|35001269204|2 +792255|35001269286|2 +690581|35001269402|2 +850407|35001269403|2 +867246|35001269405|2 +613477|35001269440|2 +486873|35001269452|2 +790795|35001269532|2 +835707|35001269538|2 +511908|35001269583|2 +748515|35001269598|2 +541839|35001269615|4 +808570|35001269682|2 +678863|35001269715|2 +517999|35001269800|2 +631781|35001269802|2 +647476|35001269803|2 +598887|35001269820|2 +630541|35001269823|2 +645586|35001269860|2 +495610|35001269862|2 +497284|35001269867|2 +534962|35001269877|2 +541303|35001269879|2 +807715|35001270043|2 +729796|35001270047|2 +478460|35001270233|2 +755527|35001270234|2 +792536|35001270375|2 +481545|35001270399|2 +631223|35001270401|2 +701411|35001270404|2 +707217|35001270406|2 +543219|35001270409|2 +530334|35001270668|2 +582042|35001270694|2 +512893|35001270723|2 +831320|35001270843|4 +630974|35001271112|2 +530105|35001271328|2 +639078|35001271334|2 +656376|35001271421|2 +859393|35001271424|2 +475140|35001271470|2 +591318|35001271528|2 +604051|35001271530|2 +727350|35001271533|2 +552388|35001271586|2 +895515|35001271589|2 +711973|35001271591|2 +703015|35001271593|2 +614976|35001271595|2 +864654|35001271602|2 +889286|35001271655|2 +603120|35001271658|2 +767822|35001271661|2 +930283|35001271702|2 +723490|35001271728|2 +759015|35001271754|2 +683335|35001271858|2 +588644|35001272073|2 +756050|35001272083|2 +856816|35001272085|2 +577450|35001272091|2 +498922|35001272105|2 +730169|35001272107|4 +498921|35001272113|2 +468390|35001272119|2 +596632|35001272208|2 +741821|35001272212|2 +757790|35001272234|2 +1060136|35001272235|2 +561413|35001272246|2 +537683|35001272249|2 +841146|35001272321|2 +863835|35001272331|2 +873235|35001272351|2 +481797|35001272657|2 +855916|35001272680|2 +881825|35001272681|2 +764452|35001272699|2 +463241|35001272805|2 +802117|35001272807|2 +701635|35001272834|2 +577819|35001272848|2 +886535|35001273430|2 +862014|35001273442|2 +770436|35001273456|2 +718706|35001273465|2 +720177|35001273466|2 +886536|35001274035|2 +710949|35001274041|2 +598637|35001274218|2 +706793|35001274619|2 +658990|35001274977|2 +640479|35001275538|2 +843991|35001275542|2 +712349|35001275543|2 +606664|35001275545|2 +685549|35001275549|2 +880174|35001275619|4 +795237|35001275661|2 +809102|35001275662|2 +669001|35001275663|2 +462863|35001275665|2 +507113|35001275668|2 +594915|35001275672|2 +477299|35001275675|2 +500307|35001275691|2 +790308|35001275693|2 +587961|35001275697|2 +577385|35001275707|2 +520744|35001275712|2 +781489|35001275714|2 +461811|35001275719|2 +795528|35001275721|2 +645723|35001275733|2 +803254|35001275750|2 +497746|35001275751|2 +540755|35001275752|2 +608651|35001275835|2 +635825|35001275975|2 +721938|35001275976|2 +600275|35001276003|2 +547915|35001276014|2 +791349|35001276019|2 +878455|35001276027|2 +843475|35001276066|2 +539101|35001276110|2 +741080|35001276118|2 +648030|35001276120|2 +728144|35001276131|2 +605468|35001276140|2 +657354|35001276143|2 +873123|35001276147|2 +508489|35001276148|2 +690740|35001276149|2 +666375|35001276197|2 +917834|35001276211|2 +804301|35001276218|2 +650002|35001276222|2 +497142|35001276239|2 +878896|35001276269|2 +547431|35001276270|2 +457233|35001276410|2 +458456|35001276411|2 +478361|35001276416|2 +482280|35001276420|2 +483228|35001276422|2 +458333|35001276424|2 +487803|35001276427|2 +506613|35001276562|2 +717906|35001276569|2 +587005|35001276576|2 +620300|35001276583|2 +470021|35001276587|2 +506615|35001276611|2 +502794|35001276652|2 +504856|35001276654|2 +504770|35001276658|2 +744565|35001276662|2 +521128|35001276683|2 +524921|35001276686|2 +531943|35001276691|2 +835740|35001276717|4 +556970|35001276740|2 +479201|35001276741|2 +617911|35001276743|2 +548848|35001276746|2 +566302|35001276748|2 +572919|35001276753|2 +552431|35001276782|2 +573521|35001276792|2 +582500|35001276800|2 +582491|35001276805|2 +586869|35001276810|2 +527123|35001276815|2 +588772|35001276819|2 +590354|35001276821|2 +603961|35001276828|2 +604519|35001276831|2 +619993|35001276834|2 +642318|35001276843|2 +651501|35001276848|2 +665181|35001276868|2 +667394|35001276871|2 +669622|35001276873|2 +670378|35001276874|2 +673401|35001276876|2 +689798|35001276891|2 +708648|35001276895|2 +737918|35001276916|2 +742740|35001276917|2 +744551|35001276919|2 +754265|35001276921|2 +727017|35001276922|2 +732062|35001276923|2 +766609|35001276926|2 +770801|35001276929|2 +759616|35001276935|2 +799212|35001276940|2 +779375|35001276942|2 +804411|35001276945|2 +804682|35001276954|2 +805004|35001276957|2 +831632|35001276977|4 +808614|35001276982|2 +830217|35001276984|4 +841823|35001276986|2 +846582|35001276992|2 +853027|35001276995|2 +853605|35001276996|2 +878886|35001277009|2 +883716|35001277020|2 +889556|35001277032|2 +893078|35001277041|2 +903571|35001277053|2 +510297|35001277115|2 +717845|35001277286|2 +831296|35001277354|4 +851832|35001277386|2 +499443|35001277405|2 +848999|35001277410|2 +587008|35001277422|2 +835516|35001277433|4 +470403|35001277440|2 +827120|35001277488|4 +761164|35001277491|2 +649513|35001277522|2 +761071|35001277530|2 +578446|35001277543|2 +472810|35001277552|2 +635251|35001277556|2 +586604|35001277561|2 +724948|35001277571|2 +555918|35001277590|2 +555919|35001277592|2 +872956|35001277595|2 +692374|35001277606|2 +606878|35001277679|2 +797357|35001277779|2 +532704|35001277894|2 +472266|35001277899|2 +675456|35001277963|2 +582910|35001277970|2 +463817|35001277980|2 +641632|35001277987|2 +1141317|35001278094|2 +682096|35001278204|2 +899124|35001278234|2 +762318|35001278342|2 +862191|35001278347|2 +738177|35001278555|2 +705575|35001278556|2 +585902|35001278577|2 +532277|35001278788|2 +800255|35001279102|2 +860855|35001279106|2 +563543|35001279211|2 +576648|35001279254|2 +837351|35001279318|2 +494098|35001279329|2 +685835|35001279386|2 +557357|35001279414|2 +831364|35001279532|4 +858913|35001279594|2 +688104|35001279706|2 +705378|35001279711|2 +617622|35001279760|2 +490518|35001279820|2 +643990|35001279863|2 +570518|35001279915|2 +466332|35001279988|2 +695348|35001279996|2 +792073|35001280003|2 +792522|35001280302|2 +599101|35001280303|2 +713739|35001280304|2 +716113|35001280381|2 +508585|35001280394|2 +544327|35001280411|2 +576630|35001280476|2 +901521|35001280665|2 +603242|35001280722|2 +560617|35001280842|2 +631960|35001280861|2 +847637|35001280867|2 +507913|35001280874|2 +752039|35001280917|2 +880146|35001280978|2 +489007|35001281124|2 +868681|35001281129|2 +477182|35001281133|2 +554396|35001281376|2 +743831|35001281391|2 +856178|35001281400|2 +866941|35001281401|2 +698247|35001281422|4 +627076|35001281438|2 +727395|35001281449|2 +531942|35001281456|2 +653205|35001281475|2 +471887|35001281536|2 +775800|35001281541|2 +569548|35001281553|2 +462839|35001281555|2 +890334|35001281565|2 +713179|35001281566|2 +676429|35001281571|2 +572150|35001281580|2 +565686|35001281581|2 +840053|35001281623|4 +1166125|35001281647|2 +486212|35001282360|2 +710560|35001282365|2 +704445|35001282406|2 +748502|35001282413|2 +643621|35001282489|2 +700820|35001282499|2 +631455|35001282500|2 +628264|35001282528|2 +611258|35001282563|2 +550683|35001282577|4 +735659|35001282582|2 +466297|35001282584|2 +515732|35001282605|2 +896862|35001282773|2 +635652|35001282779|2 +850113|35001282785|2 +665262|35001282802|2 +745667|35001282806|2 +866565|35001282809|2 +494478|35001282812|2 +684002|35001282818|2 +800627|35001282825|2 +534513|35001282831|2 +809187|35001282846|2 +673031|35001282847|2 +652858|35001283035|2 +876024|35001283038|2 +691391|35001283109|2 +858912|35001283121|2 +618476|35001283133|2 +592156|35001283143|2 +837508|35001283146|4 +499444|35001283155|2 +899826|35001283157|2 +558072|35001283503|2 +881327|35001283517|2 +773009|35001283753|2 +608647|35001285419|2 +688149|35001285617|2 +765922|35001285690|2 +548465|35001285695|2 +533372|35001285697|2 +753298|35001285723|2 +593702|35001285751|2 +496893|35001285759|2 +893147|35001286107|2 +726128|35001286167|2 +772226|35001286218|2 +471196|35001286219|2 +569959|35001286221|2 +693641|35001286222|2 +848759|35001286223|2 +731327|35001286229|2 +731328|35001286230|2 +597493|35001286231|2 +570799|35001286233|2 +743073|35001286235|2 +758100|35001286245|2 +499045|35001286251|2 +788164|35001286792|2 +753281|35001286805|2 +462801|35001286807|2 +831114|35001286823|4 +575082|35001286832|2 +883033|35001286842|2 +460934|35001286848|2 +541948|35001286850|2 +771646|35001286864|2 +771251|35001286866|2 +831203|35001286917|4 +537420|35001286919|2 +854783|35001286934|2 +910353|35001286946|2 +689159|35001286957|2 +710463|35001286968|2 +848265|35001286975|2 +492864|35001286977|2 +470288|35001286978|2 +645916|35001286985|2 +552552|35001286991|2 +1093468|35001287003|2 +459147|35001287010|2 +756182|35001287013|2 +861361|35001287018|2 +641463|35001287021|2 +707543|35001287034|2 +625862|35001287041|2 +504036|35001287045|2 +552433|35001287047|2 +729856|35001287051|2 +488658|35001287054|2 +786630|35001287059|2 +695322|35001287075|2 +838434|35001287085|4 +850987|35001287088|2 +650121|35001287141|2 +754661|35001287143|2 +556188|35001287159|2 +859659|35001287168|2 +891728|35001287170|2 +785105|35001287172|2 +843817|35001287179|2 +559771|35001287180|2 +730279|35001287189|2 +585775|35001287229|2 +741718|35001287234|2 +459420|35001287238|2 +679101|35001287259|2 +710132|35001287336|2 +622701|35001287366|2 +752939|35001287370|2 +592272|35001287382|2 +861520|35001287383|2 +518236|35001287385|2 +518295|35001287387|2 +739576|35001287389|2 +509339|35001287396|2 +1106018|35001287399|2 +686241|35001287403|2 +899984|35001287413|2 +892174|35001287416|2 +640688|35001287419|2 +768075|35001287429|2 +842045|35001287432|2 +888168|35001287436|2 +487310|35001287464|2 +733844|35001287543|2 +870988|35001287556|2 +467000|35001287558|2 +590002|35001287560|2 +834322|35001287587|4 +690465|35001287592|2 +877623|35001287597|4 +808240|35001287608|2 +882073|35001287614|2 +882133|35001287617|2 +849783|35001287640|2 +523720|35001287657|2 +854538|35001287659|2 +854588|35001287662|2 +887412|35001287666|2 +847982|35001287669|2 +847993|35001287671|2 +647273|35001287677|2 +829539|35001287691|4 +892171|35001287696|2 +525218|35001287700|2 +475137|35001287715|2 +537421|35001287726|2 +710561|35001287733|2 +683611|35001287743|2 +619958|35001287747|2 +584832|35001287757|2 +670179|35001287769|2 +898704|35001287772|2 +784181|35001287782|2 +780578|35001287786|2 +850444|35001287796|2 +773248|35001287837|2 +611703|35001287841|2 +710354|35001287846|2 +755459|35001287849|2 +749577|35001288100|2 +873492|35001288163|2 +490149|35001288167|2 +623039|35001288177|2 +517266|35001288191|2 +592202|35001288195|2 +640185|35001288204|2 +884416|35001288207|2 +668728|35001288221|2 +785204|35001288226|2 +623015|35001288229|2 +637595|35001288233|2 +1173184|35001288240|2 +609419|35001288245|2 +575832|35001288249|2 +454570|35001288262|2 +555497|35001290157|2 +530936|35001290929|2 +692463|35001290941|2 +709330|35001290959|2 +1220229|35001290972|2 +484736|35001291180|2 +493625|35001291200|2 +510928|35001291206|2 +514635|35001291207|2 +520342|35001291216|2 +533361|35001291218|2 +541568|35001291258|4 +500801|35001291266|2 +579635|35001291292|2 +582389|35001291293|2 +878234|35001291324|2 +544234|35001291363|2 +630890|35001291372|2 +540634|35001291373|2 +656780|35001291385|2 +540778|35001291406|2 +539186|35001291408|2 +546545|35001291409|2 +563646|35001291415|2 +568618|35001291433|2 +569658|35001291437|2 +571086|35001291442|2 +572419|35001291453|2 +575069|35001291457|2 +580809|35001291477|2 +597090|35001291502|2 +601504|35001291505|2 +601639|35001291508|2 +609844|35001291556|2 +611794|35001291792|2 +615854|35001291793|2 +621167|35001291794|2 +718446|35001291887|2 +670595|35001291900|2 +856132|35001291901|2 +542568|35001291908|2 +674078|35001291913|2 +680627|35001291918|2 +491851|35001291922|2 +641108|35001291928|2 +687860|35001291929|2 +489163|35001291931|2 +692688|35001291932|2 +554042|35001291933|2 +896641|35001291935|2 +700987|35001291936|2 +561000|35001291942|2 +474443|35001291951|2 +566296|35001291958|2 +834493|35001291975|4 +740699|35001291979|2 +742655|35001291982|2 +542508|35001291990|2 +705439|35001291994|2 +714851|35001291998|2 +723586|35001292005|2 +503034|35001292007|2 +725472|35001292009|2 +602326|35001292018|2 +604610|35001292032|2 +663942|35001292033|2 +452511|35001292036|2 +756065|35001292039|2 +716301|35001292040|2 +719362|35001292042|2 +758816|35001292043|2 +758957|35001292044|2 +761176|35001292046|2 +761797|35001292049|2 +770473|35001292062|2 +761285|35001292063|2 +771048|35001292064|2 +735763|35001292067|2 +781558|35001292086|2 +781816|35001292089|2 +475524|35001292090|2 +782508|35001292092|2 +794718|35001292099|2 +800929|35001292100|2 +801098|35001292101|2 +835605|35001292119|4 +835955|35001292121|4 +844441|35001292124|2 +844844|35001292127|2 +847030|35001292128|2 +856125|35001292166|2 +870885|35001292235|2 +875042|35001292239|2 +875717|35001292243|2 +878952|35001292250|2 +880060|35001292256|2 +887908|35001292265|2 +889560|35001292269|2 +891287|35001292274|2 +933631|35001292337|2 +457372|35001292369|2 +872432|35001292382|2 +997914|35001292415|2 +655118|35001292808|2 +511511|35001292894|2 +786385|35001292924|2 +800984|35001293323|2 +878341|35001293879|2 +481889|35001293901|2 +1022286|35001293989|2 +673192|35001294013|2 +493021|35001294686|2 +539655|35001294696|2 +688949|35001294700|2 +713004|35001294703|2 +794250|35001294704|2 +892063|35001294736|2 +541214|35001295168|2 +872982|35001295201|2 +500128|35001295221|2 +487332|35001295459|2 +635762|35001295461|2 +835320|35001295463|8 +466999|35001295560|2 +702416|35001295565|2 +778566|35001296116|2 +458106|35001296120|2 +666245|35001296123|4 +786908|35001296139|2 +804299|35001296142|2 +836248|35001296144|4 +866585|35001296145|2 +500576|35001296249|2 +529614|35001296353|2 +781283|35001296355|2 +793433|35001296357|2 +487651|35001296489|2 +501261|35001296493|2 +544760|35001296494|2 +633747|35001296495|2 +697653|35001296496|2 +795483|35001296499|2 +844189|35001296500|2 +853194|35001296501|2 +853866|35001296502|2 +881563|35001296503|2 +484951|35001296725|2 +549109|35001296726|2 +694507|35001296733|2 +718109|35001296735|2 +727860|35001296738|2 +500860|35001296845|2 +805643|35001296846|2 +880333|35001296850|2 +512605|35001297013|2 +780643|35001297014|2 +659064|35001297208|2 +682138|35001297211|2 +489117|35001297285|4 +460169|35001297309|2 +738088|35001297315|2 +684776|35001297360|2 +485943|35001297505|2 +713565|35001297578|2 +544802|35001297584|2 +1071791|35001297830|2 +451836|35001297835|2 +508262|35001297836|2 +657894|35001297990|2 +529996|35001298070|2 +473242|35001298207|2 +873182|35001298379|2 +515563|35001298384|2 +771645|35001298552|2 +1259880|35001298553|2 +690455|35001298554|2 +697958|35001298556|2 +697959|35001298558|2 +477988|35001298588|2 +620965|35001298589|2 +866347|35001298592|2 +739034|35001298609|2 +793221|35001298744|2 +468485|35001298787|2 +683057|35001298789|2 +808760|35001298790|2 +474800|35001298911|2 +610951|35001298912|2 +836276|35001298915|4 +836293|35001298916|4 +758890|35001299060|4 +781849|35001299062|2 +802387|35001299063|2 +860143|35001299064|2 +458104|35001299246|2 +747856|35001299254|2 +804300|35001299255|2 +679792|35001299491|2 +681683|35001299492|2 +720822|35001299493|2 +527610|35001299652|2 +584430|35001299653|2 +601423|35001299741|2 +793610|35001299744|2 +893579|35001299745|2 +563104|35001299852|2 +630773|35001299881|2 +510625|35001299889|2 +803912|35001299890|2 +894676|35001299910|2 +1009559|35001299911|2 +740547|35001299916|2 +711965|35001300117|2 +795333|35001300118|2 +799905|35001300131|2 +730036|35001300409|2 +471738|35001300464|2 +848282|35001300465|2 +866911|35001300466|2 +496942|35001300474|2 +854449|35001300573|2 +725852|35001300589|2 +765664|35001300747|2 +893022|35001300748|2 +763829|35001300794|2 +613938|35001300797|2 +470345|35001300872|2 +657215|35001300886|2 +677493|35001300887|2 +684182|35001300888|2 +694484|35001300889|2 +726296|35001300890|2 +869465|35001300894|2 +505842|35001300904|2 +712718|35001300911|2 +744589|35001300958|2 +769901|35001300959|2 +858190|35001300960|2 +624352|35001301037|2 +635902|35001301038|2 +711157|35001301039|2 +876558|35001301040|2 +596529|35001301120|2 +616149|35001301121|2 +766830|35001301125|2 +759100|35001301234|2 +587461|35001301307|2 +708750|35001301391|2 +755528|35001301392|2 +618798|35001301517|2 +709803|35001301518|2 +742737|35001301519|2 +538622|35001301521|2 +750333|35001301544|2 +516285|35001301545|2 +857695|35001301548|2 +873404|35001301549|2 +879315|35001301660|2 +660184|35001301668|2 +598950|35001301784|2 +682707|35001301786|2 +885595|35001301788|2 +636638|35001301837|2 +632744|35001301917|2 +750758|35001301918|2 +607993|35001302031|2 +464806|35001302222|2 +643821|35001302224|2 +717655|35001302227|2 +723842|35001302229|2 +862253|35001302231|2 +809492|35001302253|2 +800952|35001302258|2 +503622|35001302410|2 +744555|35001302411|2 +767192|35001302509|2 +855423|35001302513|2 +514555|35001302653|2 +530228|35001302655|2 +551055|35001302657|2 +641468|35001302659|2 +869429|35001302664|2 +493592|35001302724|2 +785158|35001302795|2 +712035|35001302798|2 +503054|35001302815|2 +857483|35001302822|2 +500502|35001302912|2 +603962|35001302913|2 +845353|35001302914|2 +479149|35001302990|2 +649652|35001302991|2 +737850|35001303077|2 +758847|35001303078|2 +774279|35001303080|2 +807855|35001303082|2 +452172|35001303191|2 +537911|35001303192|2 +505594|35001303203|2 +645558|35001303206|2 +701184|35001303235|2 +677508|35001303267|2 +575225|35001303309|2 +747854|35001303311|2 +854882|35001303313|2 +897392|35001303375|2 +579192|35001303380|2 +778632|35001303385|2 +626673|35001303498|2 +673961|35001303500|2 +867051|35001303634|2 +483523|35001303739|2 +636447|35001303741|2 +865763|35001303742|2 +796222|35001303764|2 +519803|35001303808|2 +855142|35001303812|2 +522405|35001303832|2 +746739|35001303930|2 +835066|35001303936|4 +571074|35001304351|2 +624974|35001304352|2 +639037|35001304354|2 +726984|35001304356|2 +519783|35001304436|2 +599666|35001304439|2 +624119|35001304441|2 +764958|35001304448|2 +819783|35001304451|4 +874826|35001304454|2 +496415|35001304496|2 +772873|35001304498|2 +485122|35001304524|2 +650488|35001304525|2 +547243|35001304653|2 +877440|35001304727|2 +663660|35001304758|2 +664290|35001304901|2 +653283|35001304950|2 +670371|35001304951|2 +697906|35001304952|2 +703021|35001304954|2 +710578|35001304956|2 +837861|35001304957|4 +861118|35001304958|2 +532592|35001305090|2 +564153|35001305091|2 +867581|35001305096|2 +620973|35001305188|2 +782132|35001305190|2 +493783|35001305267|2 +481376|35001305315|2 +809733|35001305322|2 +706452|35001305412|2 +780264|35001305414|2 +1172581|35001305429|2 +702472|35001305554|2 +703124|35001305642|2 +761899|35001305643|2 +827708|35001305644|4 +663554|35001305885|2 +682699|35001305894|2 +479348|35001305985|2 +893995|35001305988|2 +723602|35001306096|2 +768330|35001306205|2 +489508|35001306316|2 +722828|35001306319|2 +850977|35001306321|2 +1093227|35001306472|2 +565084|35001306475|2 +728078|35001306526|2 +750681|35001306533|2 +561835|35001306586|2 +646092|35001306587|2 +866500|35001306625|2 +459423|35001306670|2 +581505|35001306776|2 +780479|35001306777|2 +486257|35001306871|2 +523893|35001306872|2 +737978|35001306878|2 +756853|35001306880|2 +758052|35001306881|2 +716812|35001306931|2 +530969|35001307026|2 +592454|35001307027|4 +597161|35001307028|2 +632865|35001307029|2 +713568|35001307030|2 +839368|35001307032|4 +1056421|35001307160|2 +462284|35001307254|2 +505906|35001307255|2 +562502|35001307256|2 +645565|35001307381|2 +676364|35001307382|2 +487946|35001307438|2 +742743|35001307439|2 +613573|35001307511|2 +734713|35001307518|2 +575780|35001307519|2 +885646|35001307594|2 +646091|35001307664|2 +805080|35001307666|2 +597310|35001307735|2 +545391|35001307791|2 +632210|35001307873|2 +830455|35001307876|4 +474138|35001307950|2 +547540|35001307951|2 +547538|35001307952|2 +673044|35001307956|2 +676387|35001307957|2 +854115|35001307958|2 +593388|35001307959|2 +884118|35001307962|2 +581773|35001307998|2 +511751|35001308014|2 +804477|35001308016|2 +605099|35001308112|2 +647892|35001308113|2 +651664|35001308114|2 +518464|35001308224|2 +848161|35001308226|2 +558139|35001308284|2 +716768|35001308288|2 +765423|35001308293|2 +627882|35001308350|2 +802235|35001308352|2 +672208|35001308360|2 +460655|35001308377|2 +496260|35001308380|2 +800184|35001308394|2 +639825|35001308447|2 +800065|35001308449|2 +953982|35001308450|2 +589884|35001308468|2 +487002|35001308469|2 +873213|35001308616|2 +515689|35001308622|2 +558964|35001308623|2 +722348|35001308648|2 +835941|35001308650|4 +784592|35001308664|2 +573528|35001308726|2 +835520|35001308729|4 +1083517|35001308731|2 +567419|35001308761|2 +482169|35001308763|2 +768617|35001308864|2 +785104|35001308867|2 +801778|35001308869|2 +738928|35001308972|2 +474527|35001308975|2 +504922|35001309067|2 +773515|35001309069|2 +567794|35001309138|2 +571347|35001309139|2 +647957|35001309142|2 +806496|35001309144|2 +494010|35001309145|2 +842152|35001309146|2 +870219|35001309147|2 +693671|35001309215|2 +901522|35001309217|2 +1104822|35001309219|2 +497375|35001309432|2 +533697|35001309434|2 +686954|35001309435|2 +726551|35001309436|2 +868692|35001309439|2 +881869|35001309440|2 +902295|35001309530|2 +520087|35001309544|2 +619398|35001309545|2 +870737|35001309546|2 +873013|35001309547|2 +1123128|35001309552|2 +471436|35001309657|2 +596532|35001309659|2 +604531|35001309660|2 +630905|35001309662|2 +673602|35001309664|2 +841882|35001309668|2 +732443|35001309765|2 +538300|35001309812|2 +873267|35001309816|2 +461165|35001309877|2 +661405|35001309878|2 +717835|35001309879|2 +718052|35001309880|2 +772354|35001309881|2 +779682|35001309882|2 +766149|35001309891|2 +478387|35001310044|2 +619970|35001310047|2 +885440|35001310050|2 +667132|35001310233|2 +861405|35001310236|2 +865720|35001310237|2 +674205|35001310277|2 +501454|35001310355|2 +715922|35001310364|2 +826183|35001310369|6 +848371|35001310371|2 +505639|35001310440|2 +621402|35001310445|2 +697945|35001310447|2 +847954|35001310450|2 +837221|35001310455|4 +662490|35001310509|2 +614593|35001310584|2 +728567|35001310585|2 +808341|35001310587|2 +878584|35001310588|2 +507208|35001310687|2 +691075|35001310688|2 +870223|35001310689|2 +479839|35001310713|2 +542996|35001310715|2 +557924|35001310716|2 +609610|35001310718|2 +630646|35001310719|2 +645675|35001310720|2 +667181|35001310721|2 +683975|35001310853|2 +765194|35001310858|2 +794870|35001310861|2 +607188|35001310935|2 +632583|35001310936|2 +659662|35001310937|2 +788977|35001310938|2 +718285|35001311049|2 +850203|35001311050|2 +871245|35001311051|2 +900525|35001311052|2 +682379|35001311068|2 +619019|35001311085|2 +882602|35001311086|2 +770119|35001311137|2 +770168|35001311138|2 +800955|35001311139|2 +478341|35001311289|2 +620430|35001311290|2 +666812|35001311294|2 +666813|35001311295|2 +870597|35001311412|2 +456796|35001311586|2 +551928|35001311587|2 +576640|35001311588|2 +602586|35001311633|2 +786857|35001311638|2 +793978|35001311694|2 +490771|35001311769|2 +639243|35001311770|2 +838804|35001311772|4 +902024|35001311773|2 +538681|35001311895|2 +674755|35001311959|2 +772166|35001311992|2 +481194|35001311993|2 +503355|35001312001|2 +604827|35001312004|2 +755212|35001312010|2 +898526|35001312011|2 +570314|35001312126|2 +587824|35001312127|2 +633616|35001312131|2 +667170|35001312133|2 +893324|35001312169|2 +489012|35001312297|2 +572051|35001312299|2 +592957|35001312301|2 +599462|35001312302|2 +691328|35001312303|2 +732216|35001312306|2 +807090|35001312307|2 +537788|35001312351|2 +576097|35001312353|2 +765193|35001312358|2 +851514|35001312486|2 +855219|35001312488|2 +870809|35001312489|2 +518663|35001312643|2 +710489|35001312644|2 +640302|35001312647|2 +689452|35001312655|2 +873526|35001312658|2 +710353|35001312815|2 +628562|35001312816|2 +819275|35001312817|2 +460269|35001312858|2 +606788|35001312860|2 +715808|35001312862|2 +715621|35001312863|2 +509286|35001313049|2 +550782|35001313052|4 +715359|35001313058|2 +868500|35001313069|2 +898381|35001313070|2 +632271|35001313256|2 +651624|35001313257|2 +493169|35001313390|2 +473980|35001313465|2 +826410|35001313474|4 +1071787|35001313482|2 +483870|35001313486|2 +689691|35001313560|2 +764920|35001313564|2 +853839|35001313598|2 +736387|35001313606|2 +572509|35001313659|2 +719574|35001313661|2 +845613|35001313662|2 +633618|35001313730|2 +593968|35001313773|2 +747469|35001313775|2 +729733|35001313913|2 +809944|35001313914|2 +844249|35001313915|2 +697816|35001313954|2 +570360|35001314120|2 +700645|35001314125|4 +764088|35001314126|2 +764089|35001314128|2 +878887|35001314249|2 +468430|35001314450|2 +764221|35001314453|2 +832078|35001314454|4 +871618|35001314455|2 +503655|35001314810|2 +678060|35001314812|2 +696332|35001314813|2 +709463|35001314814|2 +881792|35001314817|2 +470925|35001314910|2 +473938|35001314911|2 +478188|35001314912|2 +452223|35001314985|2 +655281|35001314991|2 +718643|35001314993|2 +787883|35001314995|2 +503868|35001315100|2 +546290|35001315101|2 +683852|35001315104|2 +881795|35001315108|2 +465911|35001315206|2 +509269|35001315207|2 +691527|35001315208|2 +790921|35001315213|2 +634955|35001315264|2 +847137|35001315272|2 +484610|35001315337|2 +502361|35001315338|2 +865721|35001315341|2 +792472|35001315370|2 +498261|35001315410|2 +504700|35001315411|2 +518736|35001315412|2 +889755|35001315413|2 +485696|35001315641|2 +553155|35001315642|4 +609290|35001315644|2 +645454|35001315658|2 +658220|35001315659|2 +679790|35001315660|2 +715757|35001315662|2 +828730|35001315665|4 +505289|35001315763|2 +658474|35001315767|2 +784412|35001315768|2 +892726|35001315814|2 +601981|35001315849|2 +467787|35001315879|2 +479284|35001315947|2 +621323|35001315948|2 +662348|35001315949|2 +514187|35001316018|2 +530552|35001316020|2 +826799|35001316021|4 +463041|35001316114|2 +604980|35001316117|2 +738042|35001316118|2 +572508|35001316197|2 +459838|35001316211|2 +625996|35001316212|2 +784115|35001316213|2 +795805|35001316214|2 +861535|35001316216|2 +506068|35001316316|2 +535121|35001316317|2 +815431|35001316322|2 +1145430|35001316327|2 +461173|35001316363|2 +519624|35001316364|2 +613136|35001316365|2 +787679|35001316366|2 +902138|35001316367|2 +475656|35001316524|2 +483201|35001316525|2 +787526|35001316526|2 +889824|35001316527|2 +544466|35001316536|2 +848955|35001316537|2 +715419|35001316634|2 +889149|35001316691|2 +455781|35001316742|2 +581046|35001316744|2 +597311|35001316747|2 +740273|35001316748|2 +828288|35001316749|4 +889555|35001316750|2 +889468|35001316751|2 +890417|35001316752|2 +525106|35001316794|2 +826769|35001316901|4 +874668|35001316904|2 +801482|35001316948|2 +614249|35001316949|2 +693519|35001316950|2 +656040|35001317018|2 +803274|35001317020|2 +674251|35001317077|2 +658528|35001317244|2 +800576|35001317264|2 +456103|35001317320|2 +726994|35001317321|2 +775797|35001317322|2 +894171|35001317323|2 +757257|35001317500|2 +743310|35001317502|2 +596314|35001317514|2 +888197|35001317516|2 +617757|35001317550|2 +640764|35001317552|2 +562929|35001317720|2 +649850|35001317723|2 +755787|35001317725|2 +878166|35001317728|2 +733925|35001317861|2 +770124|35001317863|2 +773526|35001317864|2 +801781|35001317866|2 +659469|35001317867|2 +478189|35001317912|2 +659663|35001317915|2 +873767|35001317917|2 +664819|35001317982|2 +857495|35001318036|2 +878017|35001318037|2 +707139|35001318162|2 +771725|35001318163|2 +468896|35001318217|2 +834428|35001318218|4 +653218|35001318308|2 +640178|35001318374|2 +533970|35001318433|4 +739931|35001318434|2 +539559|35001318465|2 +503656|35001318520|2 +578497|35001318522|2 +647896|35001318523|2 +846564|35001318526|2 +887009|35001318617|2 +894759|35001318619|2 +731938|35001318681|2 +685705|35001318783|2 +879862|35001318785|2 +1052420|35001318788|2 +489992|35001318797|2 +756035|35001318858|2 +489118|35001318967|4 +542324|35001319031|2 +562342|35001319032|2 +891624|35001319035|2 +775184|35001319182|2 +799934|35001319183|2 +597252|35001319364|2 +691626|35001319365|2 +696284|35001319408|2 +575199|35001319499|2 +552668|35001319502|2 +520922|35001319507|2 +520923|35001319509|2 +595544|35001319512|2 +647397|35001319531|2 +887120|35001319532|2 +868326|35001319533|2 +718665|35001319539|2 +570198|35001319543|2 +887280|35001319551|2 +673721|35001319552|2 +799375|35001319554|2 +464418|35001319555|2 +464532|35001319556|2 +786554|35001319557|2 +1168449|35001319560|2 +454697|35001319561|2 +549983|35001319563|2 +794693|35001319564|2 +798990|35001319566|2 +599042|35001319567|2 +649236|35001319569|2 +779724|35001319570|2 +698489|35001319572|2 +661636|35001319574|2 +469681|35001319575|2 +507270|35001319578|2 +670372|35001319582|2 +859714|35001319583|2 +862298|35001319630|2 +579506|35001319635|2 +494476|35001319638|2 +498704|35001319645|2 +750018|35001319646|2 +649689|35001319648|2 +612887|35001319658|2 +628590|35001319659|2 +762056|35001319660|2 +461175|35001319664|2 +737940|35001319667|2 +585872|35001319761|4 +1163835|35001319766|2 +487126|35001319795|2 +737785|35001319797|2 +469966|35001319870|2 +657983|35001319871|2 +730286|35001319941|2 +653351|35001319947|2 +799453|35001320011|2 +869442|35001320012|2 +590300|35001320016|2 +880816|35001320043|2 +700135|35001320166|2 +786719|35001320168|2 +786717|35001320169|2 +658510|35001320177|2 +649470|35001320268|2 +806112|35001320270|2 +563028|35001320323|2 +898268|35001320326|2 +772597|35001320390|2 +772603|35001320393|2 +865597|35001320396|2 +465228|35001320548|2 +645016|35001320748|2 +567877|35001320752|2 +454088|35001320816|2 +474643|35001320817|2 +496513|35001320818|2 +526520|35001320819|2 +546948|35001320820|2 +584792|35001320825|2 +595512|35001320826|2 +595513|35001320828|2 +657657|35001320838|2 +695570|35001320840|2 +720597|35001320843|2 +741708|35001320847|2 +755150|35001320848|2 +772511|35001320849|2 +826599|35001320856|4 +873746|35001320858|2 +800635|35001320891|2 +587819|35001321077|2 +666379|35001321080|2 +707359|35001321082|2 +764458|35001321084|2 +468021|35001321164|2 +493343|35001321251|2 +583203|35001321323|2 +627660|35001321324|2 +676351|35001321326|2 +602465|35001321328|2 +834595|35001321480|6 +515766|35001321487|2 +558060|35001321488|2 +732554|35001321489|2 +879863|35001321490|2 +560827|35001321573|2 +602348|35001321574|2 +489685|35001321661|2 +576925|35001321664|2 +658087|35001321665|2 +756885|35001321667|2 +845425|35001321668|2 +514005|35001321775|2 +526525|35001321778|2 +603166|35001321779|2 +552872|35001321845|4 +524579|35001321893|2 +691107|35001321894|2 +626587|35001321895|2 +624434|35001321896|2 +712839|35001321908|2 +640769|35001321909|2 +801938|35001321935|2 +669848|35001321980|2 +850738|35001321981|2 +834908|35001321985|6 +878456|35001321986|2 +463038|35001322005|2 +637923|35001322006|2 +752467|35001322007|2 +833203|35001322010|4 +848589|35001322012|2 +844733|35001322013|2 +664453|35001322066|2 +863394|35001322070|2 +877397|35001322072|2 +490547|35001322079|2 +507091|35001322090|2 +741247|35001322122|2 +886279|35001322125|2 +1031371|35001322128|2 +614126|35001322269|2 +848797|35001322271|2 +467943|35001322332|2 +490542|35001322403|2 +840062|35001322406|4 +540239|35001322487|2 +809345|35001322488|2 +475502|35001322568|2 +629581|35001322570|2 +656640|35001322571|2 +853868|35001322572|2 +603534|35001322690|2 +607063|35001322691|2 +656674|35001322692|2 +860358|35001322693|2 +786706|35001322717|2 +833307|35001322722|6 +537142|35001322826|2 +571328|35001322827|2 +776784|35001322829|2 +872996|35001322837|2 +585145|35001322891|2 +624375|35001322892|2 +624376|35001322893|2 +624374|35001322894|2 +646927|35001322895|2 +715165|35001322896|2 +735906|35001322898|2 +580978|35001323084|2 +876668|35001323307|2 +452828|35001323406|2 +576618|35001323411|2 +623379|35001323412|2 +871254|35001323418|2 +887753|35001323420|2 +829450|35001323436|4 +570388|35001323484|2 +828989|35001323488|4 +493964|35001323593|2 +661522|35001323596|2 +879588|35001323599|2 +664860|35001323742|2 +833485|35001323746|4 +464020|35001323819|2 +661050|35001323822|2 +698979|35001323825|2 +718377|35001323826|2 +568888|35001323882|2 +856951|35001323932|2 +872253|35001323961|2 +677823|35001324079|2 +576424|35001324190|2 +892194|35001324194|2 +646334|35001324195|2 +695643|35001324197|2 +769768|35001324201|2 +666999|35001324239|2 +857592|35001324241|2 +642265|35001324408|2 +870139|35001324512|2 +478322|35001324532|2 +573086|35001324534|2 +581930|35001324535|2 +764486|35001324541|2 +1266312|35001324566|2 +506127|35001324607|2 +480634|35001324608|2 +667156|35001324702|2 +469722|35001324731|2 +674742|35001324740|2 +688811|35001324748|2 +1047323|35001324761|2 +697412|35001324866|2 +607991|35001324999|2 +671762|35001325002|2 +507610|35001325076|4 +645184|35001325078|2 +677422|35001325079|2 +634549|35001325274|2 +676764|35001325275|2 +745201|35001325276|2 +830370|35001325277|4 +841547|35001325278|2 +541652|35001325418|2 +634562|35001325421|2 +880803|35001325422|2 +491814|35001325501|2 +534935|35001325502|2 +695661|35001325503|2 +851332|35001325504|2 +946432|35001325507|2 +534243|35001325581|2 +696782|35001325583|2 +546854|35001325599|2 +585106|35001325696|2 +614256|35001325704|2 +585992|35001325728|2 +660437|35001325731|2 +672839|35001325732|2 +865753|35001325786|2 +761489|35001325853|2 +498822|35001326016|2 +729119|35001326020|2 +778427|35001326021|2 +833204|35001326022|4 +537520|35001326068|2 +537991|35001326069|2 +649475|35001326070|2 +705715|35001326165|2 +500149|35001326275|2 +599099|35001326278|2 +860960|35001326283|2 +691636|35001326403|2 +775042|35001326436|2 +464131|35001326441|2 +671906|35001326519|2 +700002|35001326520|2 +736520|35001326573|2 +561622|35001326641|2 +563549|35001326642|2 +673203|35001326645|2 +732556|35001326647|2 +846982|35001326648|2 +459561|35001326738|2 +582636|35001326739|2 +654523|35001326740|2 +697693|35001326741|2 +871559|35001326742|2 +623585|35001327050|2 +738485|35001327054|4 +772357|35001327055|2 +880971|35001327059|2 +738101|35001327089|2 +494438|35001327092|2 +543607|35001327145|2 +594539|35001327146|2 +482046|35001327410|2 +593712|35001327411|2 +714918|35001327425|2 +652173|35001327428|2 +652165|35001327429|2 +649683|35001327497|2 +701296|35001327498|2 +866640|35001327499|2 +783726|35001327766|2 +707166|35001327838|2 +662904|35001327894|2 +786656|35001327900|2 +679202|35001328004|2 +718701|35001328005|2 +890527|35001328006|4 +1257874|35001328011|2 +661186|35001328054|2 +837786|35001328056|6 +487756|35001328111|4 +487278|35001328115|2 +489525|35001328116|2 +635760|35001328118|2 +702972|35001328119|2 +847913|35001328121|2 +693903|35001328222|2 +469412|35001328245|2 +699686|35001328247|2 +567045|35001328299|2 +767821|35001328313|2 +673766|35001328365|2 +683860|35001328515|2 +741162|35001328518|2 +675687|35001328566|2 +494131|35001328622|2 +618443|35001328624|2 +862136|35001328626|2 +556413|35001328767|2 +565615|35001328768|2 +654396|35001328769|2 +657270|35001328770|2 +895575|35001328772|2 +572866|35001328995|2 +458505|35001329104|2 +649861|35001329107|2 +756632|35001329131|2 +869915|35001329226|2 +508593|35001329227|2 +853005|35001329228|2 +839175|35001329287|4 +727334|35001329289|2 +603160|35001329405|2 +785159|35001329406|2 +785894|35001329407|2 +845191|35001329409|2 +767439|35001329577|2 +458632|35001329629|2 +847138|35001329738|2 +455709|35001330006|2 +616827|35001330007|2 +739727|35001330008|2 +809614|35001330009|2 +465823|35001330178|2 +1098464|35001330186|2 +520572|35001330343|2 +602037|35001330404|2 +642626|35001330537|2 +554163|35001330651|2 +555871|35001330654|2 +725426|35001330655|2 +763268|35001330656|2 +729711|35001330689|2 +678369|35001330737|2 +723432|35001330740|4 +735312|35001330742|2 +826230|35001330746|4 +898180|35001330749|2 +807826|35001331008|2 +505732|35001331011|2 +743546|35001331019|2 +834785|35001331024|4 +480200|35001331103|2 +509291|35001331105|2 +604587|35001331106|2 +717225|35001331107|2 +718822|35001331108|2 +759416|35001331109|2 +854197|35001331110|2 +455330|35001331154|2 +547731|35001331411|2 +796353|35001331413|2 +856114|35001331416|2 +554024|35001331529|2 +618721|35001331532|2 +639876|35001331533|2 +639874|35001331534|2 +865509|35001331569|2 +764960|35001331632|2 +743852|35001331881|2 +651896|35001331990|2 +820226|35001331992|2 +456437|35001331993|2 +831161|35001331998|4 +499404|35001332134|2 +520878|35001332214|2 +492737|35001332288|2 +874569|35001332292|2 +467065|35001332397|2 +503539|35001332399|2 +637269|35001332400|2 +741081|35001332401|2 +462133|35001332554|2 +470708|35001332704|2 +558162|35001332706|2 +643733|35001332708|2 +670828|35001332710|2 +682055|35001332712|2 +751367|35001332714|2 +781156|35001332716|2 +835015|35001332718|2 +836082|35001332722|4 +833423|35001333016|4 +896723|35001333020|2 +519110|35001333026|2 +554923|35001333027|2 +564913|35001333028|2 +582726|35001333029|2 +675822|35001333030|2 +689160|35001333035|2 +692348|35001333037|2 +666341|35001333055|2 +689552|35001333118|2 +459146|35001333145|2 +646421|35001333148|2 +711753|35001333151|2 +569512|35001333336|2 +770120|35001333337|2 +794011|35001333338|2 +828940|35001333339|4 +555910|35001333423|2 +855013|35001333425|2 +773637|35001333548|2 +879922|35001333588|4 +889369|35001333595|2 +481572|35001333633|2 +489416|35001333635|2 +677327|35001333636|2 +700059|35001333638|2 +517445|35001333664|2 +843161|35001333720|2 +748463|35001333734|2 +579461|35001333849|2 +645059|35001333850|2 +715261|35001333852|2 +729254|35001333853|2 +687936|35001333983|2 +876871|35001333984|2 +694209|35001334062|2 +727366|35001334308|2 +879060|35001334320|2 +796462|35001334343|2 +883305|35001334346|2 +953985|35001334348|2 +888685|35001334561|2 +740058|35001334723|2 +767173|35001334724|2 +784437|35001334728|2 +480684|35001334861|2 +755974|35001334863|2 +799404|35001334864|2 +869446|35001334865|2 +841281|35001334902|2 +621837|35001334914|2 +461607|35001334948|2 +594150|35001334953|2 +702249|35001334955|2 +781722|35001334960|2 +809030|35001334967|2 +758063|35001334980|2 +667484|35001335006|2 +665230|35001335013|2 +556803|35001335082|2 +567717|35001335104|2 +597139|35001335105|2 +692470|35001335106|2 +468635|35001335242|2 +545742|35001335243|2 +744570|35001335245|2 +604699|35001335444|2 +652320|35001335445|2 +671949|35001335446|2 +694210|35001335601|2 +801352|35001335815|2 +542075|35001335924|2 +715070|35001336170|2 +718823|35001336171|2 +758704|35001336282|2 +465992|35001336296|2 +466022|35001336299|2 +528616|35001336305|2 +571429|35001336442|2 +579380|35001336443|2 +586892|35001336444|2 +633775|35001336446|2 +648360|35001336449|2 +896461|35001336451|2 +468534|35001336590|2 +492028|35001336594|2 +693642|35001336736|2 +790800|35001336738|2 +472696|35001336848|2 +737877|35001336945|2 +857576|35001336956|2 +786375|35001336982|2 +700821|35001336990|2 +462748|35001337215|2 +779328|35001337220|2 +846036|35001337350|2 +884945|35001337351|2 +572156|35001337423|2 +797955|35001337424|2 +838977|35001337426|4 +844264|35001337427|2 +1071832|35001337428|2 +580609|35001337559|2 +646206|35001337563|2 +729191|35001337565|2 +800185|35001337566|2 +888898|35001337569|2 +471177|35001337647|2 +769485|35001337660|2 +575953|35001337702|2 +719005|35001337748|2 +588201|35001337773|2 +580763|35001337776|2 +580764|35001337780|2 +699735|35001337881|2 +544326|35001338026|2 +462743|35001338091|2 +685779|35001338093|2 +833134|35001338158|4 +541441|35001338160|2 +864254|35001338161|2 +722013|35001338164|2 +748809|35001338165|2 +579485|35001338168|2 +800731|35001338182|2 +668786|35001338187|2 +456428|35001338317|2 +617875|35001338324|2 +646222|35001338327|2 +569984|35001338345|2 +761417|35001338356|2 +902102|35001338363|2 +834261|35001338368|4 +774703|35001338388|2 +759250|35001338566|2 +789378|35001338567|2 +531792|35001338634|2 +485868|35001338798|2 +706540|35001338799|2 +895140|35001338802|2 +791471|35001339126|2 +497815|35001339561|2 +505578|35001339807|2 +564322|35001339809|2 +877521|35001339815|2 +695354|35001339896|2 +726568|35001340023|2 +594093|35001340276|2 +718651|35001340279|2 +567204|35001340359|2 +579353|35001340372|2 +884961|35001340459|2 +674252|35001340575|2 +464796|35001340577|2 +732975|35001340599|2 +501790|35001340601|2 +723114|35001340603|2 +790268|35001340604|2 +483487|35001340620|2 +545389|35001340621|2 +736075|35001340622|2 +781352|35001340623|2 +847468|35001340624|2 +851412|35001340626|2 +564950|35001340782|2 +469647|35001340783|2 +563174|35001340787|2 +568611|35001340788|2 +491024|35001340816|2 +499226|35001340818|2 +503712|35001340819|2 +508988|35001340820|2 +600418|35001340821|2 +838805|35001340906|4 +617540|35001340921|2 +766359|35001340932|2 +510159|35001340933|2 +554251|35001340936|2 +634797|35001340937|2 +635593|35001340939|4 +637465|35001340940|2 +673496|35001340941|2 +737376|35001340942|2 +772380|35001340944|2 +476264|35001340949|2 +478503|35001341013|2 +509628|35001341014|2 +699991|35001341015|2 +880430|35001341016|2 +832308|35001341044|4 +787874|35001341075|2 +683991|35001341117|2 +742586|35001341120|2 +825467|35001341121|4 +723648|35001341154|2 +537344|35001341259|2 +554221|35001341270|2 +622427|35001341272|2 +633743|35001341274|2 +806612|35001341279|2 +673830|35001341442|2 +533381|35001341485|2 +533382|35001341486|2 +508611|35001341512|2 +653217|35001341514|2 +527024|35001341562|2 +546745|35001341564|2 +581079|35001341568|2 +593565|35001341570|2 +874583|35001341576|2 +732806|35001341584|2 +608126|35001341607|2 +545372|35001341794|2 +601505|35001341977|2 +714757|35001341978|2 +784312|35001341979|2 +799521|35001341980|2 +857436|35001341982|2 +877886|35001341983|2 +900618|35001341984|2 +900356|35001342041|2 +615291|35001342053|4 +672801|35001342057|2 +672807|35001342058|2 +467979|35001342160|2 +538116|35001342161|2 +590452|35001342163|2 +494256|35001342427|2 +548953|35001342428|2 +656474|35001342431|2 +853029|35001342457|2 +828787|35001342692|4 +850786|35001342834|2 +781967|35001342888|2 +455817|35001343039|2 +684125|35001343045|2 +741984|35001343047|2 +702056|35001343071|2 +881195|35001343082|2 +669760|35001343084|2 +486243|35001343086|2 +886258|35001343208|2 +537144|35001343412|2 +555041|35001343420|2 +564396|35001343421|2 +483803|35001343588|2 +537917|35001343593|2 +674283|35001343746|2 +500797|35001343748|2 +569755|35001343751|2 +496986|35001343785|2 +887968|35001343786|2 +618785|35001343788|2 +851436|35001343794|2 +534960|35001343929|2 +551589|35001343932|2 +617536|35001343934|2 +646083|35001343937|2 +747937|35001343940|2 +780496|35001343944|2 +713988|35001344210|2 +720864|35001344211|2 +779150|35001344212|2 +747174|35001344235|2 +738049|35001344242|2 +888165|35001344264|2 +793862|35001344272|2 +589077|35001344432|2 +793630|35001344437|2 +581246|35001344610|2 +640075|35001344611|2 +658269|35001344612|2 +727986|35001344613|2 +857435|35001344618|2 +866172|35001344620|2 +610540|35001344627|2 +684420|35001344630|2 +697621|35001344703|2 +855062|35001344709|2 +687627|35001344711|2 +884185|35001344720|2 +572683|35001345043|2 +627509|35001345046|2 +534489|35001345166|2 +779257|35001345177|2 +743168|35001345211|2 +699359|35001345458|2 +889129|35001345492|2 +488496|35001345822|2 +615592|35001345824|2 +617322|35001345825|2 +667980|35001345827|2 +751023|35001345836|2 +644960|35001345898|2 +591974|35001346300|2 +591803|35001346301|2 +741538|35001346308|2 +866091|35001346381|2 +682418|35001346838|2 +625750|35001347093|2 +745670|35001347744|2 +854493|35001347777|2 +901033|35001347785|4 +901449|35001347786|2 +462103|35001347875|2 +471889|35001348266|2 +482122|35001348271|2 +490425|35001348274|2 +494030|35001348275|2 +499793|35001348281|2 +508049|35001348285|2 +510054|35001348286|2 +511346|35001348287|2 +517834|35001348288|2 +519852|35001348289|2 +532657|35001348293|2 +547274|35001348297|2 +550574|35001348298|2 +552917|35001348300|2 +553995|35001348301|2 +568665|35001348308|2 +575210|35001348309|4 +576211|35001348311|2 +579202|35001348313|2 +581082|35001348315|2 +581081|35001348320|2 +591518|35001348329|2 +600015|35001348332|2 +603035|35001348334|2 +604509|35001348336|2 +604380|35001348338|2 +605815|35001348341|2 +605753|35001348343|2 +610666|35001348346|2 +618071|35001348348|2 +622287|35001348355|2 +624660|35001348357|2 +644549|35001348367|2 +656824|35001348368|2 +662431|35001348370|2 +669410|35001348372|2 +670934|35001348373|2 +684292|35001348375|2 +685737|35001348376|2 +691381|35001348384|2 +721876|35001348386|2 +732787|35001348387|2 +735059|35001348388|2 +738317|35001348389|2 +738798|35001348390|2 +747047|35001348391|2 +762272|35001348395|2 +780669|35001348399|2 +794719|35001348400|2 +801287|35001348402|2 +802302|35001348403|2 +831423|35001348407|4 +854057|35001348412|2 +860079|35001348413|2 +860928|35001348414|2 +860962|35001348415|2 +875077|35001348417|2 +877196|35001348418|2 +879163|35001348419|2 +884641|35001348421|2 +896986|35001348427|2 +751566|35001348534|2 +761525|35001348549|2 +591969|35001348586|2 +493424|35001348592|2 +694029|35001348612|2 +1120270|35001348675|2 +716258|35001348676|2 +879772|35001348688|2 +664291|35001348695|2 +591487|35001348699|2 +601077|35001348700|2 +513736|35001348701|2 +515565|35001348702|2 +456942|35001348704|2 +537899|35001348713|2 +571474|35001348731|2 +484866|35001348756|2 +491097|35001348757|2 +639269|35001348972|2 +586809|35001349009|2 +586796|35001349010|2 +528510|35001349012|2 +651312|35001349037|2 +847455|35001349064|2 +758943|35001349178|2 +857434|35001349204|2 +774241|35001349255|2 +764621|35001349556|2 +779620|35001349559|2 +800710|35001349560|4 +829954|35001349561|4 +615118|35001350025|2 +522392|35001350061|2 +469111|35001350400|2 +469078|35001350402|2 +623155|35001350413|2 +679460|35001350417|2 +701066|35001350418|2 +735062|35001350419|2 +830356|35001350423|4 +856232|35001350446|2 +490915|35001350713|2 +583268|35001350714|2 +895565|35001351057|2 +891484|35001351060|2 +893299|35001351063|2 +713860|35001351096|2 +555154|35001351316|2 +683154|35001351330|2 +515842|35001351784|2 +462994|35001351785|2 +747260|35001351871|2 +869173|35001351872|2 +510230|35001352032|2 +641838|35001353672|2 +805607|35001353680|2 +662889|35001353690|2 +893298|35001354069|2 +783070|35001354173|2 +562185|35001354538|2 +887052|35001354539|2 +718317|35001354542|2 +578814|35001354606|2 +777208|35001354628|2 +502286|35001354650|2 +720068|35001354710|2 +455250|35001355641|2 +1162977|35001355690|2 +1114466|35001355730|2 +587927|35001355767|2 +461974|35001356135|2 +467341|35001356136|2 +468308|35001356139|2 +470541|35001356141|4 +475495|35001356146|2 +477985|35001356148|2 +478931|35001356150|2 +480950|35001356151|2 +480935|35001356153|2 +483275|35001356154|2 +642127|35001356156|2 +485843|35001356158|2 +485846|35001356161|2 +497863|35001356165|2 +879342|35001356177|2 +501439|35001356180|2 +503263|35001356183|2 +505493|35001356185|2 +507093|35001356186|2 +512314|35001356190|2 +514387|35001356192|2 +524693|35001356195|2 +711767|35001356206|2 +884971|35001356343|2 +470525|35001356371|2 +458771|35001356422|2 +829570|35001356542|4 +572465|35001356550|2 +531474|35001356567|2 +877453|35001356605|2 +514618|35001356609|2 +674024|35001356610|2 +566573|35001356611|2 +826809|35001356612|4 +860125|35001356614|2 +769594|35001356622|2 +891196|35001356624|2 +771170|35001356628|2 +880082|35001356629|2 +861952|35001356643|2 +844203|35001356648|2 +534938|35001356650|2 +700675|35001356652|2 +620688|35001356653|2 +500115|35001356656|2 +797489|35001356740|2 +586414|35001356747|2 +560264|35001356748|2 +542367|35001356788|2 +604429|35001356791|2 +545947|35001356804|2 +528889|35001356813|2 +530344|35001356814|2 +531249|35001356817|2 +851636|35001356819|2 +533842|35001356821|2 +547997|35001356830|2 +550692|35001356841|2 +551326|35001356848|2 +552268|35001356849|2 +556754|35001356856|2 +569344|35001356876|2 +569914|35001356877|2 +582455|35001356879|2 +599758|35001356883|2 +600414|35001356884|2 +616785|35001356912|2 +623156|35001356951|2 +625783|35001356953|2 +625861|35001356954|2 +626210|35001356956|4 +627669|35001356987|2 +638023|35001356991|2 +638634|35001356993|2 +643887|35001356999|2 +646917|35001357000|2 +649301|35001357001|2 +652743|35001357003|2 +671127|35001357008|2 +677494|35001357009|2 +678454|35001357010|2 +678608|35001357012|2 +679283|35001357014|2 +683222|35001357016|2 +701024|35001357017|2 +784670|35001357018|2 +713136|35001357019|2 +716493|35001357020|2 +731519|35001357021|2 +716494|35001357022|2 +734443|35001357024|2 +735902|35001357026|2 +752075|35001357029|2 +752964|35001357079|2 +753312|35001357080|2 +753886|35001357081|4 +755929|35001357082|2 +763139|35001357084|2 +763130|35001357085|2 +774892|35001357086|2 +769249|35001357088|2 +770722|35001357089|2 +786329|35001357090|2 +786866|35001357091|2 +792315|35001357093|4 +792731|35001357094|2 +794571|35001357095|2 +794545|35001357096|2 +800225|35001357097|2 +828200|35001357099|4 +828201|35001357100|4 +828384|35001357101|4 +833867|35001357102|4 +839226|35001357103|4 +839648|35001357104|4 +842250|35001357105|2 +851616|35001357106|2 +853425|35001357107|2 +523983|35001357123|2 +854490|35001357124|2 +869714|35001357125|2 +875351|35001357126|2 +876104|35001357128|2 +882257|35001357131|2 +886617|35001357135|2 +889956|35001357139|2 +893426|35001357142|2 +897691|35001357161|2 +898781|35001357162|2 +757454|35001357198|2 +698214|35001357317|2 +802150|35001357318|2 +459899|35001357359|2 +575789|35001357583|4 +999958|35001357915|2 +663922|35001357984|2 +783782|35001357985|2 +553975|35001358425|2 +728242|35001358436|2 +580741|35001358446|2 +631204|35001358449|2 +783632|35001358450|2 +791517|35001358451|4 +873488|35001358454|2 +559193|35001358512|2 +710347|35001358513|2 +542341|35001358641|2 +870808|35001358643|2 +892243|35001358644|2 +580708|35001358838|2 +513923|35001358898|2 +703137|35001358899|2 +845949|35001358900|2 +875188|35001358901|2 +1203941|35001358935|2 +560993|35001359046|2 +699232|35001359047|2 +567888|35001359065|2 +591890|35001359081|4 +496621|35001359120|2 +755052|35001359121|2 +803931|35001359122|2 +574037|35001359267|2 +638635|35001359268|2 +696823|35001359269|2 +696830|35001359270|2 +794103|35001359271|2 +876498|35001359272|2 +649263|35001359301|2 +652665|35001359356|2 +803909|35001359358|2 +875181|35001359359|2 +877577|35001359362|4 +694539|35001359441|4 +469524|35001359647|2 +542849|35001359648|2 +559799|35001359649|2 +683097|35001359652|2 +789377|35001359653|2 +809585|35001359654|2 +890335|35001359658|2 +467126|35001359744|2 +503925|35001359789|2 +595210|35001359790|2 +1106981|35001359912|2 +736011|35001359917|2 +832024|35001359923|4 +604259|35001359925|2 +650673|35001359926|2 +453445|35001359929|2 +788140|35001360041|2 +807461|35001360049|2 +519982|35001360185|2 +577257|35001360186|2 +587487|35001360187|2 +892386|35001360188|2 +796845|35001360364|2 +471786|35001360504|2 +576552|35001360506|2 +513692|35001360710|2 +535877|35001360711|2 +542056|35001360712|2 +624224|35001360713|2 +760821|35001360835|2 +698598|35001360934|2 +711847|35001360964|2 +733880|35001360966|2 +772544|35001360968|2 +804537|35001360969|2 +869909|35001360973|2 +570893|35001361168|2 +622659|35001361169|2 +696106|35001361186|2 +781167|35001361267|2 +801160|35001361268|2 +839196|35001361271|4 +471064|35001361373|2 +519151|35001361374|2 +857694|35001361380|2 +867042|35001361381|2 +891644|35001361382|2 +519627|35001361461|2 +536429|35001361462|2 +552669|35001361463|2 +891870|35001361464|2 +470289|35001361655|2 +519503|35001361656|2 +634777|35001361657|2 +711309|35001361658|2 +841046|35001361684|2 +710089|35001361823|2 +737049|35001361826|2 +535626|35001361852|2 +595032|35001361928|2 +619975|35001361929|2 +641216|35001361930|2 +746725|35001361931|2 +841855|35001361932|2 +847072|35001361933|2 +853494|35001362039|2 +544458|35001362141|2 +657062|35001362152|2 +773058|35001362154|2 +868638|35001362201|2 +610264|35001362205|2 +670233|35001362245|2 +752977|35001362267|2 +532212|35001362271|2 +870962|35001362308|2 +655768|35001362323|2 +511095|35001362384|2 +680085|35001362385|2 +759382|35001362446|2 +499269|35001362584|2 +513737|35001362585|2 +540837|35001362587|2 +547098|35001362589|2 +548803|35001362591|2 +618206|35001362594|2 +625027|35001362597|2 +633617|35001362599|2 +640665|35001362606|2 +641201|35001362608|2 +781060|35001362612|2 +805910|35001362614|2 +619096|35001362670|2 +895591|35001362817|2 +480114|35001362861|2 +757531|35001362865|2 +778365|35001362867|2 +847291|35001362869|2 +717725|35001362959|2 +836515|35001362960|4 +580533|35001363025|2 +626070|35001363027|2 +800937|35001363029|2 +862018|35001363033|2 +715184|35001363132|2 +846846|35001363133|2 +866185|35001363135|2 +532227|35001363306|2 +619277|35001363308|2 +809352|35001363504|2 +665318|35001363510|2 +458445|35001363568|2 +499446|35001363569|2 +567583|35001363570|2 +772561|35001363571|2 +526229|35001363658|2 +673392|35001363662|2 +696552|35001363667|2 +744738|35001363668|2 +818060|35001363669|2 +849918|35001363670|2 +539528|35001363831|4 +869812|35001363832|2 +472846|35001363894|2 +535003|35001363895|2 +456391|35001364024|2 +841866|35001364055|2 +777851|35001364105|2 +801159|35001364107|2 +488483|35001364119|2 +578082|35001364139|2 +580330|35001364144|2 +701569|35001364148|2 +706372|35001364151|2 +783783|35001364397|2 +792844|35001364399|2 +712445|35001364520|2 +739455|35001364714|2 +759039|35001364715|2 +884414|35001364723|2 +787415|35001364724|2 +1198852|35001364728|2 +785014|35001364729|2 +460270|35001364781|2 +549855|35001364785|2 +554301|35001364789|2 +704074|35001364793|2 +464515|35001364942|2 +489410|35001364944|2 +509950|35001364946|2 +537918|35001364947|2 +594903|35001364950|2 +493333|35001364954|2 +762261|35001364959|2 +849385|35001364963|2 +645949|35001365050|2 +722075|35001365051|2 +893762|35001365053|2 +804707|35001365055|2 +625410|35001365198|2 +480085|35001365252|2 +500569|35001365254|2 +572434|35001365255|2 +722797|35001365259|2 +742185|35001365260|2 +854535|35001365264|2 +495607|35001365420|2 +511273|35001365421|2 +573576|35001365422|2 +669352|35001365423|2 +726506|35001365424|2 +765995|35001365425|2 +563360|35001365519|2 +734515|35001365520|2 +756711|35001365521|2 +887647|35001365522|2 +598694|35001365531|4 +523196|35001365568|2 +579422|35001365569|2 +719390|35001365577|2 +877706|35001365616|2 +529610|35001365749|4 +699163|35001365753|2 +566778|35001365755|2 +552566|35001365834|2 +631271|35001365844|2 +694747|35001365851|2 +802553|35001365891|2 +872932|35001365892|2 +547137|35001366007|2 +500658|35001366187|4 +622179|35001366191|2 +713126|35001366195|2 +830427|35001366197|4 +1140876|35001366201|2 +674237|35001366213|2 +608664|35001366215|2 +556243|35001366217|2 +657698|35001366220|2 +809942|35001366221|2 +883314|35001366223|2 +867603|35001366224|2 +882673|35001366225|2 +838261|35001366237|4 +456604|35001366445|2 +716391|35001366449|4 +746396|35001366451|2 +830411|35001366454|4 +837642|35001366455|4 +516897|35001366639|2 +851124|35001366641|2 +865152|35001366643|2 +615610|35001366773|2 +663406|35001366774|2 +830688|35001366779|4 +491017|35001367182|2 +747022|35001367195|2 +782390|35001367196|2 +862393|35001367199|2 +478356|35001367308|2 +518722|35001367309|2 +712972|35001367311|2 +759866|35001367313|2 +886674|35001367315|2 +886666|35001367316|2 +726526|35001367428|2 +753296|35001367430|2 +474062|35001367576|2 +514219|35001367635|2 +696351|35001367643|2 +842812|35001367715|2 +722241|35001367824|2 +772545|35001367826|2 +849094|35001368171|2 +805830|35001368175|2 +862753|35001368177|2 +891538|35001368179|2 +598961|35001368260|2 +657099|35001368261|2 +844486|35001368262|2 +864653|35001368263|2 +807730|35001368377|2 +864774|35001368381|2 +477746|35001368470|2 +551850|35001368471|2 +854140|35001368479|2 +623563|35001368614|2 +633705|35001368616|2 +700252|35001368617|2 +848104|35001368619|2 +885969|35001368627|2 +463355|35001368685|2 +547541|35001368687|2 +806181|35001368691|2 +836022|35001368692|4 +604778|35001368777|2 +733531|35001368779|2 +800407|35001368780|2 +616334|35001368918|2 +769897|35001368920|2 +854551|35001368921|2 +678065|35001369051|2 +528920|35001369162|2 +618062|35001369163|2 +661374|35001369165|2 +661356|35001369166|2 +521985|35001369257|2 +658370|35001369258|2 +714819|35001369259|2 +610693|35001369429|2 +689497|35001369440|2 +702598|35001369442|2 +564581|35001369516|2 +796513|35001369519|4 +803352|35001369520|2 +546255|35001369551|2 +546257|35001369552|2 +499356|35001369651|2 +499349|35001369652|2 +534999|35001369653|2 +567079|35001369655|2 +675378|35001369658|2 +859865|35001369668|2 +500758|35001369748|2 +688897|35001369751|2 +504504|35001369866|2 +507447|35001369867|2 +791253|35001369869|2 +597372|35001370010|2 +653327|35001370011|2 +474218|35001370023|2 +893765|35001370026|2 +475223|35001370108|2 +594094|35001370114|2 +598435|35001370116|2 +867055|35001370118|2 +880639|35001370120|2 +482127|35001370192|2 +502638|35001370193|2 +808776|35001370198|2 +865854|35001370199|2 +467508|35001370350|2 +524662|35001370351|2 +794984|35001370355|2 +871664|35001370356|2 +577726|35001370442|2 +900929|35001370443|2 +617070|35001370552|2 +760131|35001370553|2 +480529|35001370566|2 +529253|35001370569|2 +576621|35001370571|2 +583655|35001370573|2 +588200|35001370574|2 +733995|35001370575|2 +772475|35001370576|2 +774296|35001370577|2 +541462|35001370665|2 +682884|35001370666|2 +737595|35001370667|2 +495878|35001370786|2 +727074|35001370791|2 +880289|35001370795|2 +564493|35001370967|2 +692426|35001370982|2 +868437|35001370995|2 +649647|35001371045|2 +792252|35001371063|2 +877029|35001371067|2 +1193142|35001371069|2 +870982|35001371134|2 +621197|35001371142|2 +627625|35001371143|2 +670177|35001371178|2 +757066|35001371185|2 +830326|35001371188|4 +645273|35001371278|2 +785571|35001371280|2 +837591|35001371282|4 +843885|35001371284|2 +863848|35001371286|2 +537096|35001371503|2 +551234|35001371507|2 +668124|35001371508|2 +707876|35001371509|2 +756457|35001371511|2 +848890|35001371722|2 +548467|35001371822|2 +750995|35001371829|2 +563739|35001371868|2 +478653|35001371898|2 +581351|35001371903|2 +530726|35001372229|2 +600907|35001372230|2 +581443|35001372296|2 +620178|35001372430|2 +714001|35001372431|2 +564516|35001372495|2 +853978|35001372502|2 +600603|35001372523|2 +605798|35001372609|2 +609880|35001372611|2 +712427|35001372613|2 +599019|35001372727|2 +576911|35001372729|2 +838020|35001372730|4 +877466|35001372731|2 +551953|35001372869|2 +1022107|35001372877|2 +658128|35001372977|2 +706273|35001372981|2 +733966|35001372983|2 +747620|35001372985|2 +851349|35001372988|2 +467658|35001373095|2 +495162|35001373097|2 +829225|35001373099|4 +870574|35001373100|4 +884604|35001373101|2 +556303|35001373127|2 +829254|35001373212|4 +856137|35001373213|2 +524248|35001373386|2 +586396|35001373387|2 +669422|35001373389|2 +851772|35001373390|2 +613439|35001373510|2 +610488|35001373512|2 +674497|35001373513|2 +741152|35001373514|2 +724389|35001373570|2 +890418|35001373571|2 +846047|35001373683|2 +1268436|35001373684|2 +482805|35001373777|2 +711448|35001373780|2 +465226|35001373962|2 +502637|35001373964|2 +519623|35001373969|2 +677944|35001373978|2 +694234|35001373979|2 +854349|35001373980|2 +454211|35001374092|2 +585508|35001374094|2 +640793|35001374096|2 +576663|35001374243|2 +636701|35001374333|2 +649512|35001374334|2 +734012|35001374338|2 +761948|35001374339|2 +735681|35001374405|2 +790917|35001374406|2 +454878|35001374411|2 +483259|35001374587|2 +672229|35001374593|2 +683534|35001374594|2 +722838|35001374595|2 +777946|35001374597|2 +570590|35001374708|2 +787455|35001374709|2 +733993|35001374803|2 +741945|35001374806|2 +758138|35001374807|4 +785125|35001374808|2 +533535|35001374866|2 +843160|35001374869|2 +702825|35001374870|2 +510386|35001374925|2 +594481|35001374926|2 +623897|35001374927|2 +692373|35001374928|2 +722994|35001374929|2 +754743|35001374930|2 +564893|35001375064|2 +778694|35001375070|2 +616090|35001375291|2 +703135|35001375292|2 +775381|35001375294|2 +775437|35001375295|2 +888730|35001375300|2 +902204|35001375301|2 +464185|35001375414|2 +481183|35001375415|2 +661064|35001375428|2 +900553|35001375561|2 +527186|35001375638|2 +595392|35001375639|2 +630195|35001375642|2 +630336|35001375643|2 +703130|35001375645|2 +741389|35001375646|2 +871445|35001375647|2 +466412|35001375696|2 +466257|35001375697|2 +587868|35001375700|2 +586368|35001375720|2 +804693|35001375847|2 +547292|35001375931|2 +616519|35001375932|2 +780570|35001375933|2 +489820|35001376074|2 +736110|35001376078|2 +770316|35001376079|2 +620836|35001376135|2 +468227|35001376138|2 +583290|35001376324|2 +653676|35001376330|2 +777905|35001376331|2 +729431|35001376432|2 +805801|35001376435|2 +840352|35001376436|4 +893925|35001376437|2 +474981|35001376553|2 +554610|35001376554|2 +608725|35001376620|2 +888328|35001376622|2 +578361|35001376623|2 +630216|35001376624|2 +768335|35001376626|2 +861837|35001376627|2 +870350|35001376629|2 +887399|35001376635|2 +482877|35001376862|2 +577821|35001376863|2 +712487|35001376930|2 +495454|35001376939|2 +495305|35001376940|2 +552503|35001376941|2 +627059|35001376943|2 +639472|35001376944|2 +660923|35001376947|2 +663870|35001376953|2 +800930|35001376960|2 +788704|35001376997|2 +632261|35001377002|2 +563103|35001377140|2 +587010|35001377142|2 +720948|35001377145|2 +769358|35001377146|2 +770125|35001377149|2 +844255|35001377151|2 +532603|35001377494|2 +625391|35001377495|2 +720014|35001377497|2 +747082|35001377498|2 +769850|35001377499|2 +518449|35001377728|2 +497924|35001377807|2 +711178|35001377813|2 +576912|35001377947|2 +623979|35001377948|2 +625002|35001377949|2 +648345|35001377951|2 +764506|35001377952|2 +652957|35001378035|2 +663115|35001378036|2 +674333|35001378037|2 +846844|35001378043|2 +858935|35001378045|2 +763622|35001378058|2 +569779|35001378166|2 +642470|35001378169|2 +700862|35001378171|2 +700863|35001378175|2 +738322|35001378178|2 +454299|35001378297|2 +527839|35001378299|2 +576619|35001378302|2 +672572|35001378303|2 +672573|35001378304|2 +745224|35001378307|2 +860524|35001378311|2 +887916|35001378312|2 +539625|35001378407|2 +558677|35001378408|2 +890863|35001378588|2 +900036|35001378590|2 +531217|35001378707|2 +735578|35001378709|2 +558725|35001378795|2 +544490|35001378886|2 +564211|35001378887|2 +639450|35001378889|4 +800972|35001378890|2 +809285|35001378913|2 +859169|35001378934|2 +883040|35001378936|2 +839759|35001378941|4 +560017|35001378966|2 +544476|35001379038|2 +759038|35001379042|2 +797923|35001379222|2 +499087|35001379223|2 +505292|35001379376|2 +597617|35001379377|2 +599811|35001379378|2 +548987|35001379381|2 +737693|35001379382|2 +482887|35001379463|2 +571331|35001379468|2 +650717|35001379475|2 +659928|35001379478|2 +677413|35001379481|2 +757179|35001379483|2 +880346|35001379488|2 +880344|35001379490|2 +730547|35001379504|2 +598697|35001379533|2 +703439|35001379547|2 +658519|35001379600|2 +645328|35001379765|2 +478797|35001379906|2 +826032|35001379908|4 +576641|35001379979|2 +607143|35001379980|2 +740070|35001379996|2 +836117|35001379998|4 +471706|35001380001|2 +808268|35001380090|2 +875440|35001380092|2 +673394|35001380329|2 +700253|35001380330|2 +739694|35001380441|2 +778993|35001380442|2 +898055|35001380459|2 +793777|35001380460|2 +549246|35001380469|2 +473939|35001380474|2 +747165|35001380479|2 +485785|35001380525|2 +528807|35001380526|2 +539048|35001380527|2 +596644|35001380529|2 +640813|35001380620|2 +668932|35001380622|2 +771500|35001380630|2 +770985|35001380751|2 +519984|35001380837|2 +692623|35001380840|2 +733515|35001380841|2 +507701|35001380877|2 +576664|35001380880|2 +689383|35001380884|2 +848283|35001380885|2 +640866|35001380889|2 +732448|35001380925|2 +883593|35001380930|2 +480671|35001380932|2 +645034|35001380991|2 +676272|35001380992|2 +808844|35001380993|2 +871879|35001380996|2 +871874|35001380997|2 +895744|35001380998|2 +474761|35001381135|2 +497016|35001381136|2 +667364|35001381268|2 +835946|35001381269|4 +453455|35001381385|2 +519307|35001381386|2 +537372|35001381388|2 +645274|35001381390|2 +870217|35001381551|2 +608413|35001381553|2 +789559|35001381558|2 +500528|35001381560|2 +628676|35001381561|2 +854911|35001381591|2 +604652|35001381599|2 +832737|35001381608|4 +557126|35001381676|2 +659494|35001381680|2 +805912|35001381687|2 +712142|35001381802|2 +716968|35001381803|2 +727109|35001381804|2 +836057|35001381805|4 +569941|35001381978|2 +688041|35001382003|2 +793114|35001382004|2 +802734|35001382006|2 +589304|35001382187|2 +708111|35001382188|2 +863617|35001382190|2 +524689|35001382197|2 +841897|35001382199|2 +898216|35001382201|2 +456923|35001382272|2 +807829|35001382304|2 +871298|35001382305|2 +627523|35001382407|2 +977184|35001382422|2 +787678|35001382515|2 +841916|35001382518|2 +513124|35001382612|2 +545207|35001382613|2 +554657|35001382614|2 +707457|35001382615|2 +868060|35001382617|2 +523446|35001382653|2 +668636|35001382698|2 +478885|35001382704|2 +843372|35001382720|2 +465203|35001382728|2 +894385|35001382732|2 +672981|35001382733|2 +673013|35001382734|2 +664465|35001382818|2 +575888|35001382935|2 +650022|35001382936|2 +732889|35001382937|2 +896349|35001382941|2 +639607|35001383109|2 +716114|35001383110|2 +732791|35001383125|2 +856254|35001383132|2 +646922|35001383278|2 +738243|35001383281|2 +896265|35001383286|2 +564192|35001383401|2 +612937|35001383403|2 +774895|35001383406|2 +797491|35001383407|2 +841803|35001383409|4 +737725|35001383629|2 +678331|35001383720|2 +729416|35001383721|2 +747466|35001383722|2 +458524|35001383953|2 +503459|35001383954|2 +721808|35001383964|2 +730846|35001383965|2 +807856|35001383966|2 +898562|35001383967|2 +535383|35001384069|2 +678019|35001384073|2 +511912|35001384200|2 +591597|35001384201|2 +707669|35001384202|2 +848284|35001384204|2 +854931|35001384296|2 +601800|35001384389|2 +467544|35001384461|4 +873093|35001384523|2 +1268940|35001384532|2 +474537|35001384773|2 +483804|35001384774|2 +675088|35001384775|2 +569756|35001385033|2 +657846|35001385034|2 +681748|35001385035|2 +859748|35001385038|2 +730124|35001385063|2 +714333|35001385084|2 +612233|35001385085|2 +498734|35001385411|2 +678022|35001385412|2 +590521|35001385523|2 +697734|35001385526|2 +774291|35001385682|2 +825836|35001385683|4 +546834|35001385740|2 +492845|35001385880|2 +520644|35001385881|2 +1060239|35001385899|2 +456130|35001386055|2 +495748|35001386056|2 +596266|35001386058|2 +604048|35001386337|2 +580321|35001386420|2 +831628|35001386423|4 +928940|35001386429|2 +781001|35001386457|2 +466792|35001386530|2 +469294|35001386532|2 +713604|35001386536|2 +461821|35001386794|2 +490372|35001386802|2 +664065|35001386806|2 +688714|35001386808|2 +697980|35001386809|2 +750745|35001386814|2 +772488|35001386833|2 +856251|35001386834|2 +879046|35001386837|2 +900761|35001386838|2 +607750|35001386855|2 +687385|35001386858|2 +551926|35001387089|2 +559201|35001387091|2 +730798|35001387094|2 +929338|35001387100|2 +498385|35001387206|2 +502015|35001387207|2 +552162|35001387208|2 +600754|35001387209|2 +772491|35001387211|2 +1091092|35001387341|2 +605712|35001387529|2 +804442|35001387530|2 +840389|35001387531|4 +499545|35001387688|2 +659395|35001387700|2 +861081|35001387784|2 +882842|35001387785|2 +458363|35001387832|2 +463014|35001387834|2 +598632|35001387839|2 +603328|35001387840|2 +640373|35001387842|2 +738647|35001387848|2 +699997|35001387935|2 +506025|35001388107|2 +521677|35001388108|2 +526895|35001388110|2 +837482|35001388112|6 +668128|35001388188|2 +753993|35001388189|2 +764184|35001388190|2 +778371|35001388192|2 +857595|35001388199|2 +530558|35001388285|2 +839539|35001388290|4 +573631|35001388296|2 +562627|35001388410|2 +979533|35001388423|2 +643194|35001388685|2 +534248|35001388807|2 +571750|35001388808|2 +772312|35001388812|2 +786975|35001388813|2 +794888|35001388814|2 +891913|35001388816|2 +613767|35001388892|2 +624259|35001388893|2 +886806|35001388897|2 +747216|35001388931|2 +552534|35001389024|2 +1071790|35001389028|2 +542938|35001389119|2 +543668|35001389120|2 +657274|35001389122|2 +871572|35001389124|2 +461336|35001389197|2 +497561|35001389200|2 +453731|35001389293|2 +495700|35001389294|2 +511110|35001389295|2 +554847|35001389296|2 +574520|35001389297|2 +581220|35001389298|2 +654850|35001389299|2 +692471|35001389300|2 +743628|35001389311|2 +493305|35001389353|2 +861840|35001389366|2 +799394|35001389492|2 +870753|35001389497|2 +639616|35001389599|2 +739456|35001389600|2 +1008381|35001389604|2 +646415|35001389736|2 +665177|35001389737|2 +694370|35001389739|2 +716727|35001389741|2 +799779|35001389742|2 +642471|35001389826|2 +493997|35001390088|2 +674047|35001390121|2 +684064|35001390122|2 +794978|35001390124|2 +562944|35001390236|2 +863844|35001390245|2 +527354|35001390420|2 +639861|35001390423|2 +620870|35001390451|2 +502792|35001390542|2 +560577|35001390545|2 +626596|35001390548|2 +487179|35001390629|2 +541532|35001390637|2 +567147|35001390640|2 +569340|35001390641|2 +1259642|35001390651|2 +698187|35001390776|2 +836540|35001390780|4 +753808|35001390871|2 +1253032|35001390876|2 +753282|35001391020|2 +758693|35001391021|2 +866331|35001391022|2 +850833|35001391035|2 +818529|35001391037|4 +554082|35001391043|2 +527765|35001391162|2 +578752|35001391164|2 +580363|35001391166|2 +634088|35001391167|2 +881258|35001391170|2 +893251|35001391289|2 +468306|35001391357|2 +659366|35001391373|2 +669148|35001391375|2 +766987|35001391383|2 +850150|35001391386|2 +534172|35001391588|2 +766262|35001391593|2 +770333|35001391595|2 +808728|35001391596|2 +797090|35001391726|2 +758746|35001391808|2 +608536|35001391813|2 +601856|35001391814|2 +756139|35001391818|2 +583499|35001391861|2 +657696|35001391864|2 +754453|35001391870|2 +778467|35001391997|2 +466333|35001392051|2 +483204|35001392052|2 +531218|35001392054|2 +896452|35001392060|2 +575889|35001392088|2 +711834|35001392091|2 +505204|35001392148|2 +830306|35001392151|4 +865452|35001392152|2 +640817|35001392180|2 +463018|35001392335|2 +540550|35001392336|2 +682932|35001392337|2 +747060|35001392339|2 +766733|35001392340|2 +869086|35001392341|2 +896460|35001392342|2 +652204|35001392416|2 +690868|35001392419|2 +510903|35001392420|2 +843990|35001392422|2 +665200|35001392447|2 +710222|35001392448|2 +709805|35001392449|2 +489943|35001392531|2 +492214|35001392532|2 +502193|35001392533|2 +767592|35001392560|2 +528883|35001392594|2 +888652|35001392599|2 +465139|35001392661|2 +542339|35001392712|2 +695233|35001392713|2 +795239|35001392714|2 +787570|35001392802|2 +548520|35001392803|2 +586055|35001392821|2 +704156|35001392826|2 +841872|35001392827|2 +482399|35001392860|2 +596057|35001392863|2 +818062|35001392864|2 +884706|35001392865|2 +724060|35001392885|2 +454453|35001392965|2 +844392|35001392991|2 +1093220|35001393054|2 +1214689|35001393055|2 +1119289|35001393156|2 +484512|35001393317|2 +505462|35001393319|2 +614879|35001393320|2 +700599|35001393321|2 +615731|35001393421|2 +778040|35001393423|2 +841047|35001393424|2 +510307|35001393443|2 +794059|35001393509|2 +495055|35001393591|2 +706973|35001393592|2 +900984|35001393595|2 +901204|35001393621|2 +538489|35001393625|2 +804508|35001393640|2 +633736|35001393679|2 +666485|35001393680|2 +466271|35001393869|2 +539059|35001393873|2 +611555|35001393897|2 +704937|35001393899|2 +792846|35001393901|2 +495056|35001393963|2 +646327|35001393966|2 +652458|35001393967|2 +755062|35001393972|2 +632108|35001394152|2 +632109|35001394153|2 +689157|35001394156|2 +711715|35001394157|2 +868928|35001394161|2 +876144|35001394215|2 +575810|35001394406|2 +832842|35001394419|4 +847246|35001394420|2 +852127|35001394422|2 +496812|35001394572|2 +610908|35001394622|2 +641696|35001394623|2 +655206|35001394624|2 +666498|35001394625|2 +496936|35001394791|2 +550809|35001394806|2 +662493|35001394808|2 +662501|35001394809|2 +685390|35001394811|2 +790599|35001394812|2 +856391|35001394813|2 +686441|35001394828|2 +469602|35001394911|2 +560100|35001394912|2 +766551|35001394915|2 +885748|35001394922|2 +555470|35001394927|2 +468314|35001395034|2 +507897|35001395048|2 +501441|35001395051|2 +595705|35001395052|2 +737479|35001395055|2 +469340|35001395081|2 +490287|35001395198|2 +548964|35001395200|2 +628097|35001395203|2 +781406|35001395207|2 +630236|35001395297|2 +454802|35001395298|2 +591620|35001395300|2 +803988|35001395301|2 +498002|35001395302|2 +502580|35001395303|2 +649267|35001395304|2 +552075|35001395307|2 +519628|35001395310|2 +878078|35001395326|2 +514190|35001395613|2 +663339|35001395616|2 +701972|35001395617|2 +712404|35001395618|2 +875877|35001395621|2 +1026637|35001395699|2 +592029|35001395792|2 +625500|35001395794|2 +760112|35001395802|2 +657358|35001395884|2 +849218|35001395885|2 +470952|35001395886|2 +747811|35001395891|2 +785032|35001395897|2 +801909|35001395910|2 +857554|35001395913|2 +715411|35001395915|2 +809826|35001396007|2 +486513|35001396124|2 +492905|35001396126|2 +567967|35001396129|2 +769144|35001396133|4 +885257|35001396139|2 +868932|35001396213|2 +507157|35001396221|2 +835879|35001396227|4 +836042|35001396228|4 +764029|35001396230|2 +593458|35001396234|2 +750622|35001396235|2 +599335|35001396366|2 +835842|35001396373|4 +745218|35001396568|2 +733459|35001396757|2 +869813|35001396857|2 +503961|35001396863|2 +575961|35001396868|2 +686751|35001396869|2 +513827|35001397235|2 +672967|35001397237|2 +570171|35001397252|2 +712319|35001397253|2 +484381|35001397259|2 +521279|35001397262|2 +862489|35001397267|2 +651746|35001397274|2 +501859|35001397275|2 +733050|35001397301|2 +1172895|35001397310|2 +544025|35001397358|2 +649559|35001397359|2 +796429|35001397522|2 +1219541|35001397532|2 +759694|35001397602|2 +580480|35001397703|2 +820341|35001397704|2 +499994|35001397837|2 +538523|35001397838|2 +774689|35001397840|2 +792514|35001397841|2 +876635|35001397843|2 +490427|35001397992|2 +504063|35001397994|2 +607520|35001398002|2 +641200|35001398004|2 +648272|35001398009|2 +825468|35001398097|4 +452173|35001398105|2 +534524|35001398108|2 +901855|35001398111|2 +863684|35001398112|2 +843263|35001398122|2 +546465|35001398123|2 +807676|35001398127|2 +518013|35001398130|2 +860360|35001398134|2 +668139|35001398136|2 +516993|35001398137|2 +682603|35001398147|2 +747821|35001398161|2 +469079|35001398304|2 +472516|35001398308|2 +514213|35001398310|2 +870244|35001398552|2 +691394|35001398556|2 +725451|35001398567|2 +495351|35001398584|2 +698134|35001398586|2 +819536|35001398587|2 +833467|35001398588|4 +544531|35001398852|2 +718613|35001398854|2 +760212|35001398857|2 +866137|35001398859|2 +881030|35001398860|2 +714341|35001398917|2 +828568|35001398950|4 +885256|35001398951|2 +728212|35001398953|2 +628061|35001398955|2 +861925|35001398958|2 +560418|35001399173|2 +803917|35001399177|2 +861923|35001399178|2 +510133|35001399667|2 +551334|35001399669|2 +696550|35001399676|2 +786678|35001399696|2 +804367|35001399699|2 +884177|35001399701|2 +870797|35001399852|2 +503027|35001399855|2 +586294|35001399949|2 +510861|35001399963|2 +780506|35001399988|2 +475813|35001399992|2 +564941|35001399995|2 +568272|35001400000|2 +864944|35001400014|2 +1120275|35001400023|2 +760928|35001400039|2 +751868|35001400044|2 +494830|35001400046|2 +587915|35001400053|2 +783677|35001400058|2 +711672|35001400064|2 +600394|35001400067|2 +877624|35001400551|4 +536137|35001401046|2 +602906|35001401055|2 +691372|35001401056|2 +691647|35001401057|2 +739577|35001401060|2 +760771|35001401063|2 +850712|35001401065|2 +886801|35001401066|2 +763670|35001401071|2 +591675|35001401081|2 +701452|35001401082|2 +770942|35001401083|2 +471704|35001401259|2 +520498|35001401260|2 +564889|35001401261|2 +579961|35001401262|2 +630914|35001401263|2 +672129|35001401264|2 +720041|35001401265|2 +745217|35001401267|2 +754807|35001401268|2 +793653|35001401269|2 +867043|35001401271|2 +554243|35001401341|2 +718373|35001401342|2 +521897|35001401354|2 +834061|35001401358|4 +902260|35001401361|2 +861303|35001401408|2 +560603|35001401443|2 +724013|35001401458|2 +833199|35001401459|4 +547282|35001401564|2 +551601|35001401565|2 +611704|35001401566|2 +653870|35001401567|2 +677169|35001401569|2 +679669|35001401570|2 +713104|35001401571|2 +722787|35001401572|2 +825998|35001401573|4 +871877|35001401574|2 +899273|35001401576|2 +775317|35001401968|2 +568948|35001401969|2 +679084|35001402089|2 +750015|35001402090|2 +477764|35001402092|2 +488402|35001402093|2 +518977|35001402094|2 +531535|35001402096|2 +542258|35001402097|2 +547253|35001402098|2 +569201|35001402099|2 +586203|35001402101|2 +591807|35001402102|2 +612869|35001402103|2 +684800|35001402106|2 +726541|35001402107|2 +742601|35001402108|2 +762181|35001402110|2 +768728|35001402115|2 +794601|35001402119|2 +795963|35001402120|2 +803355|35001402121|2 +842813|35001402122|2 +847304|35001402123|2 +855386|35001402125|2 +857378|35001402126|2 +861188|35001402127|2 +885423|35001402128|2 +897830|35001402129|2 +779619|35001402285|2 +521755|35001402306|2 +499891|35001403694|2 +614876|35001404592|2 +496092|35001404593|2 +828796|35001404595|4 +649474|35001404597|2 +462236|35001404598|2 +704893|35001404599|2 +734110|35001404600|2 +742493|35001404602|2 +742564|35001404603|2 +1154780|35001404610|2 +892017|35001404612|2 +460271|35001405448|2 +473004|35001405449|2 +486217|35001405451|2 +486305|35001405452|2 +490846|35001405453|2 +497758|35001405454|2 +519836|35001405455|2 +521578|35001405456|2 +528171|35001405457|2 +818061|35001405511|2 +529638|35001405574|2 +547275|35001405578|2 +553158|35001405581|4 +554703|35001405583|2 +556234|35001405587|2 +581677|35001405590|2 +586577|35001405591|2 +587497|35001405593|2 +593274|35001405601|2 +601794|35001405602|2 +601771|35001405603|2 +618054|35001405607|2 +619083|35001405609|2 +619094|35001405610|2 +673458|35001405612|2 +721521|35001405616|2 +459342|35001405686|2 +737678|35001405688|2 +744088|35001405694|2 +759652|35001405699|2 +775837|35001405701|2 +558804|35001405707|2 +836100|35001405712|4 +480845|35001405714|2 +586709|35001405721|2 +1165136|35001405722|2 +469207|35001405745|2 +468415|35001405751|2 +546155|35001405760|2 +524911|35001405763|2 +500505|35001405765|2 +514546|35001405784|2 +791083|35001405791|2 +792993|35001405794|2 +794812|35001405796|2 +806189|35001405800|2 +573356|35001405807|2 +822133|35001405809|2 +560124|35001405814|2 +853758|35001405815|2 +555474|35001405816|2 +871243|35001405821|2 +872895|35001405822|2 +874526|35001405825|2 +622870|35001405827|2 +891715|35001405835|2 +898803|35001405837|2 +642182|35001405891|2 +637604|35001405917|2 +636087|35001405918|2 +707651|35001405925|2 +706541|35001405932|2 +708183|35001405935|2 +744290|35001405938|2 +728323|35001405945|2 +734785|35001405949|2 +730485|35001405952|2 +727949|35001405957|2 +757755|35001405960|2 +773523|35001405981|2 +783755|35001405983|2 +781015|35001405984|2 +798330|35001405986|2 +848846|35001405988|2 +885303|35001405990|2 +624919|35001406005|2 +654732|35001406006|2 +721222|35001406008|2 +798926|35001406009|2 +890798|35001406011|2 +1187727|35001406112|2 +467982|35001406431|2 +761380|35001406432|2 +761373|35001406433|2 +682024|35001406510|2 +887064|35001406513|2 +460239|35001406611|2 +521068|35001406621|2 +510434|35001406817|2 +706797|35001406818|2 +782954|35001406820|2 +800725|35001406821|2 +606604|35001406865|2 +462946|35001406866|2 +784048|35001406884|2 +485039|35001407064|2 +537587|35001407065|2 +688818|35001407069|2 +830384|35001407071|4 +830642|35001407072|4 +857497|35001407073|2 +1022108|35001407074|2 +693111|35001407081|2 +791184|35001407083|2 +686172|35001407116|2 +666360|35001407127|2 +491018|35001407129|2 +775741|35001407347|2 +785026|35001407644|2 +703071|35001407665|2 +729120|35001407670|2 +703321|35001407835|2 +454432|35001408045|2 +579241|35001408048|2 +807670|35001408050|2 +846983|35001408051|2 +657589|35001408053|2 +561376|35001408250|2 +795327|35001408252|2 +844908|35001408253|2 +464905|35001408340|2 +516433|35001408342|2 +516434|35001408343|2 +693950|35001408346|2 +701824|35001408347|2 +839251|35001408348|4 +847747|35001408363|2 +860002|35001408364|2 +739021|35001408500|2 +526157|35001408507|2 +462925|35001408669|2 +644229|35001408720|2 +668278|35001408721|2 +739578|35001408722|2 +866934|35001408723|2 +494182|35001409019|2 +535419|35001409152|2 +527102|35001409154|2 +820246|35001409156|2 +572582|35001409161|2 +878148|35001409165|2 +569757|35001409172|2 +579550|35001409173|2 +587032|35001409174|2 +603001|35001409175|2 +647274|35001409177|2 +681479|35001409178|2 +697805|35001409179|2 +761472|35001409180|2 +889840|35001409185|2 +898826|35001409186|2 +587364|35001409293|2 +640310|35001409294|2 +650301|35001409295|2 +725265|35001409329|2 +845178|35001409336|2 +876633|35001409494|2 +897407|35001409495|2 +522572|35001409675|2 +653777|35001409677|2 +734450|35001409678|2 +789637|35001409680|2 +831388|35001409681|4 +882740|35001409687|4 +894884|35001409688|2 +478829|35001409756|2 +554028|35001409757|2 +717684|35001409822|2 +793065|35001409857|2 +552963|35001409858|2 +618400|35001409859|2 +730799|35001409863|2 +860973|35001409864|2 +637858|35001409870|2 +792163|35001409894|2 +708314|35001409898|2 +465281|35001409920|2 +589975|35001410122|2 +590416|35001410123|2 +467269|35001410284|2 +702363|35001410288|2 +782608|35001410289|2 +662345|35001410291|2 +560608|35001410328|2 +646435|35001410329|2 +745169|35001410330|2 +766786|35001410332|2 +880249|35001410333|2 +885008|35001410334|2 +467570|35001410446|2 +562196|35001410447|2 +589083|35001410448|2 +614265|35001410449|2 +683372|35001410450|2 +860405|35001410452|2 +524853|35001410486|2 +601330|35001410487|2 +671054|35001410490|2 +716530|35001410491|2 +732421|35001410493|2 +506877|35001410587|2 +533530|35001410588|2 +555902|35001410590|2 +670360|35001410598|2 +744548|35001410599|2 +848647|35001410600|2 +522576|35001410657|2 +866621|35001410671|2 +662346|35001410761|2 +706535|35001410762|2 +805179|35001410763|2 +686855|35001410837|2 +732235|35001410840|2 +746749|35001410842|2 +887097|35001410843|2 +742529|35001410940|2 +839206|35001410941|4 +761283|35001410945|2 +872059|35001410952|2 +464551|35001410954|2 +461282|35001411008|2 +830142|35001411091|4 +886613|35001411098|2 +743845|35001411104|2 +473318|35001411338|2 +505896|35001411339|2 +505897|35001411341|2 +587009|35001411343|2 +610920|35001411345|2 +693946|35001411348|2 +709804|35001411349|2 +868056|35001411357|2 +744734|35001411363|2 +737583|35001411632|2 +759030|35001411633|2 +878079|35001411899|2 +551901|35001411919|2 +727431|35001411962|2 +757924|35001411963|2 +593842|35001412297|2 +692663|35001412306|2 +798339|35001412310|2 +497547|35001412417|2 +759627|35001412579|2 +575989|35001412665|2 +749298|35001412666|2 +780519|35001412779|2 +499143|35001412787|2 +457082|35001412807|2 +639843|35001412914|2 +786543|35001412981|2 +859197|35001412982|2 +518097|35001413005|2 +636637|35001413015|2 +657304|35001413016|2 +677933|35001413017|2 +479928|35001413020|2 +854269|35001413028|2 +883860|35001413162|2 +631036|35001413229|2 +540038|35001413234|2 +527632|35001413242|2 +735689|35001413243|2 +546409|35001413339|2 +552352|35001413340|2 +802973|35001413558|2 +630754|35001413623|2 +588156|35001413647|2 +896185|35001413648|2 +591301|35001413649|4 +619803|35001413659|2 +785591|35001413667|2 +497565|35001413674|2 +573633|35001413688|2 +712362|35001413694|2 +761594|35001413699|2 +765258|35001413700|2 +476593|35001413714|2 +477447|35001413715|2 +490679|35001413719|2 +571632|35001413728|2 +597025|35001413735|2 +603263|35001413739|2 +617917|35001413745|2 +634997|35001413748|2 +645381|35001413749|2 +656530|35001413755|2 +657537|35001413756|2 +695025|35001413777|2 +729556|35001413781|2 +767175|35001413782|2 +769193|35001413783|2 +772311|35001413785|2 +849647|35001413794|2 +1253031|35001413832|2 +478478|35001414094|2 +601647|35001414098|2 +550013|35001414100|2 +517326|35001414212|2 +462560|35001414316|2 +452758|35001414437|2 +505579|35001414438|2 +540985|35001414440|2 +611339|35001414441|2 +625140|35001414442|2 +637924|35001414443|2 +673767|35001414444|2 +455538|35001414448|2 +761408|35001414449|2 +774293|35001414450|2 +794976|35001414452|2 +860807|35001414455|2 +860805|35001414457|2 +728080|35001414458|2 +876363|35001414460|2 +692609|35001414697|2 +548398|35001414862|2 +551951|35001414863|2 +666923|35001414866|2 +719943|35001414867|2 +775541|35001414870|2 +493809|35001415233|2 +518218|35001415240|2 +522891|35001415243|2 +493638|35001415354|2 +545723|35001415356|2 +597312|35001415377|2 +608509|35001415379|2 +717209|35001415381|2 +719363|35001415383|2 +544546|35001415432|2 +550678|35001415435|2 +557471|35001415446|2 +575803|35001415447|2 +592322|35001415450|2 +595053|35001415452|2 +598103|35001415455|2 +606402|35001415456|2 +608163|35001415458|2 +612892|35001415459|2 +615730|35001415460|2 +617545|35001415461|2 +619017|35001415462|2 +654454|35001415466|2 +557006|35001415523|2 +668777|35001415526|2 +750937|35001415529|2 +760208|35001415558|4 +782463|35001415566|2 +790302|35001415567|2 +806573|35001415570|2 +833895|35001415572|4 +837455|35001415573|4 +871770|35001415605|2 +899536|35001415608|2 +1049269|35001415634|2 +1117264|35001415643|2 +534759|35001415651|2 +1252186|35001415686|2 +1234240|35001415987|2 +612877|35001416271|2 +846046|35001416273|2 +853414|35001416275|2 +873804|35001416276|2 +1122427|35001416286|2 +559753|35001416292|2 +591312|35001416293|2 +649473|35001416294|2 +635730|35001416295|2 +787461|35001416296|2 +465013|35001416642|2 +513046|35001416902|2 +572424|35001416938|2 +875055|35001417121|2 +577607|35001417122|2 +471098|35001417141|2 +515296|35001417146|2 +580280|35001417207|2 +613939|35001417256|2 +825493|35001418939|4 +464778|35001419681|2 +466866|35001419682|2 +469591|35001419687|2 +471507|35001419689|2 +474889|35001419691|2 +478704|35001419697|2 +483527|35001419730|2 +499623|35001419757|2 +500195|35001419760|2 +503251|35001419763|2 +505760|35001419767|2 +506986|35001419769|2 +508306|35001419772|2 +509952|35001419774|2 +510260|35001419775|2 +516563|35001419776|2 +516968|35001419779|2 +527459|35001419785|2 +527681|35001419786|2 +528657|35001419787|2 +529571|35001419788|2 +532725|35001419844|2 +669045|35001419959|2 +537407|35001419995|2 +537677|35001419996|2 +538174|35001419998|2 +539949|35001420004|2 +543329|35001420006|2 +554102|35001420030|2 +554171|35001420031|2 +554596|35001420034|2 +562949|35001420045|2 +570020|35001420111|2 +572154|35001420119|2 +574345|35001420123|2 +584049|35001420145|2 +597618|35001420161|2 +602797|35001420178|2 +603167|35001420182|2 +606574|35001420185|2 +607796|35001420205|2 +613703|35001420209|2 +621161|35001420213|2 +527259|35001420330|2 +595324|35001420332|2 +625404|35001420334|2 +696258|35001420338|2 +590021|35001420345|2 +896987|35001420438|2 +856949|35001420467|2 +633964|35001420497|2 +635851|35001420498|2 +644169|35001420504|2 +645011|35001420509|2 +657027|35001420515|2 +659527|35001420520|2 +665927|35001420537|2 +665928|35001420540|2 +476368|35001420576|2 +476369|35001420578|2 +667355|35001420586|2 +675139|35001420593|2 +692876|35001420594|2 +694173|35001420597|2 +704655|35001420599|2 +705509|35001420600|2 +705562|35001420601|2 +713050|35001420602|2 +715102|35001420604|2 +553665|35001420656|2 +1022332|35001420659|2 +802438|35001420660|2 +488041|35001420661|2 +723851|35001420682|2 +726571|35001420685|2 +730662|35001420689|2 +733849|35001420694|2 +734168|35001420695|2 +734183|35001420696|2 +734672|35001420697|2 +744653|35001420702|2 +749203|35001420703|2 +756840|35001420707|2 +761139|35001420708|2 +761239|35001420710|2 +767634|35001420715|2 +769359|35001420716|2 +779622|35001420725|2 +783344|35001420735|2 +785823|35001420736|2 +662959|35001420737|2 +793577|35001420738|2 +793740|35001420739|2 +795806|35001420747|2 +880720|35001420792|2 +805736|35001420794|2 +825673|35001420798|4 +826819|35001420800|4 +826870|35001420801|4 +828609|35001420803|4 +828740|35001420805|4 +831411|35001420808|4 +835991|35001420810|4 +822393|35001420814|2 +846247|35001420834|2 +847934|35001420835|2 +854018|35001420836|2 +860910|35001420839|2 +870455|35001420840|2 +874354|35001420841|2 +879130|35001420842|2 +880721|35001420844|2 +881488|35001420845|2 +882494|35001420846|2 +884776|35001420848|2 +886693|35001420849|2 +624667|35001420850|2 +780213|35001420876|2 +522416|35001420896|2 +460278|35001420995|2 +510384|35001421006|2 +780666|35001421007|2 +531867|35001421008|2 +1046700|35001421042|2 +1084415|35001421060|2 +596039|35001421103|2 +1198954|35001421150|2 +1241291|35001421172|2 +518137|35001421187|2 +502129|35001421237|2 +828051|35001421247|4 +457999|35001421249|2 +462237|35001421252|2 +465116|35001421256|2 +466254|35001421258|2 +473649|35001421262|2 +474201|35001421263|2 +475733|35001421265|2 +475734|35001421266|2 +484023|35001421270|2 +495635|35001421273|2 +503347|35001421275|2 +506519|35001421277|2 +507086|35001421279|2 +508444|35001421280|2 +512323|35001421283|2 +522615|35001421288|2 +528667|35001421316|2 +530142|35001421317|2 +530643|35001421318|2 +536166|35001421322|2 +537131|35001421324|2 +543464|35001421333|2 +510366|35001421348|2 +548466|35001421349|2 +557358|35001421354|2 +559553|35001421377|2 +566229|35001421384|2 +578720|35001421387|2 +571209|35001421389|2 +867865|35001421390|2 +867861|35001421392|2 +579376|35001421404|2 +745320|35001421407|2 +587844|35001421410|2 +591837|35001421415|2 +596075|35001421416|2 +598175|35001421417|2 +598828|35001421419|2 +608525|35001421429|2 +619265|35001421434|2 +620418|35001421435|2 +624580|35001421437|2 +631583|35001421440|2 +638394|35001421441|2 +642313|35001421443|2 +643059|35001421446|2 +644191|35001421447|2 +703216|35001421451|2 +650180|35001421453|2 +653172|35001421455|2 +653208|35001421456|2 +660277|35001421457|2 +661040|35001421458|2 +661052|35001421459|2 +663281|35001421462|2 +481410|35001421465|2 +671593|35001421466|2 +673843|35001421468|2 +685659|35001421527|2 +705162|35001421554|2 +825480|35001421557|4 +710189|35001421559|2 +710073|35001421560|2 +720736|35001421564|2 +1121977|35001421568|2 +733386|35001421574|2 +738047|35001421576|2 +738660|35001421578|2 +739457|35001421579|2 +744339|35001421580|2 +745976|35001421581|2 +747705|35001421584|2 +755546|35001421585|2 +757118|35001421586|2 +761980|35001421587|2 +762958|35001421588|2 +779017|35001421590|2 +781288|35001421591|2 +781524|35001421592|2 +790560|35001421594|2 +791940|35001421595|2 +795447|35001421597|2 +636974|35001421600|2 +798156|35001421601|2 +802285|35001421605|2 +495576|35001421797|2 +616021|35001421798|2 +711167|35001421799|2 +856644|35001421800|2 +799250|35001421825|2 +828635|35001421831|4 +820342|35001421832|2 +835789|35001421834|4 +837843|35001421838|4 +842107|35001421841|2 +844488|35001421842|2 +847568|35001421846|2 +852530|35001421853|2 +466459|35001421854|2 +854586|35001421856|2 +854796|35001421859|2 +856240|35001421861|2 +857622|35001421864|2 +859746|35001421869|2 +860998|35001421873|2 +862556|35001421877|2 +863224|35001421880|2 +869118|35001421886|2 +872392|35001421889|2 +872468|35001421891|2 +645713|35001421892|2 +874356|35001421894|2 +879629|35001421897|2 +886675|35001421903|2 +890611|35001421911|2 +892536|35001421916|2 +894530|35001421921|2 +896269|35001421923|2 +898751|35001421925|2 +631432|35001421967|2 +682532|35001422063|2 +612522|35001422215|2 +500133|35001422232|2 +611993|35001422244|2 +883742|35001422267|2 +901780|35001422271|2 +756738|35001422408|2 +472596|35001422682|2 +590344|35001422683|2 +597229|35001422685|2 +635693|35001422686|2 +726544|35001422688|2 +737042|35001422689|2 +873690|35001422691|2 +503615|35001422699|2 +1177326|35001422872|2 +606553|35001423203|2 +496644|35001423357|2 +456299|35001423461|2 +467646|35001423465|4 +470374|35001423466|2 +775753|35001423471|2 +453456|35001423475|2 +476373|35001423478|2 +502108|35001423479|2 +735083|35001423484|2 +844519|35001423485|2 +900171|35001423749|2 +799422|35001423752|2 +710417|35001423829|2 +516071|35001424038|2 +538973|35001424040|2 +595923|35001424041|2 +1077663|35001424043|2 +521565|35001424047|2 +561901|35001424048|2 +634049|35001424050|2 +769733|35001424055|2 +872830|35001424057|2 +780280|35001424325|2 +774860|35001424331|2 +576305|35001424342|2 +902028|35001424353|2 +735778|35001424354|2 +653209|35001424355|2 +865739|35001424356|2 +893168|35001424357|2 +613230|35001424360|2 +569735|35001424571|2 +594115|35001424572|2 +661273|35001424573|2 +616787|35001424585|4 +568038|35001424588|2 +768971|35001424592|2 +864566|35001424593|2 +893869|35001424674|2 +671083|35001424707|2 +460314|35001424792|2 +728338|35001424799|2 +773115|35001424809|2 +790907|35001424927|2 +851846|35001424959|2 +510380|35001425608|2 +613231|35001425609|2 +643547|35001425610|2 +799087|35001425615|2 +800062|35001425616|2 +830990|35001425617|4 +451293|35001425625|4 +451887|35001425626|2 +457364|35001425627|2 +465326|35001425633|2 +486450|35001425789|2 +488847|35001425842|2 +497009|35001425884|2 +498341|35001425888|2 +854248|35001425930|2 +854243|35001425936|2 +518357|35001425944|2 +518820|35001425945|2 +523377|35001426133|2 +526842|35001426136|2 +530379|35001426140|2 +835708|35001426156|2 +1050419|35001426169|2 +510113|35001426215|2 +736633|35001426219|2 +536458|35001426238|2 +577721|35001426244|2 +567315|35001426281|2 +773104|35001426288|2 +583849|35001426294|2 +461797|35001426297|2 +591893|35001426319|2 +883382|35001426320|4 +593625|35001426321|2 +605007|35001426328|2 +615621|35001426353|2 +616190|35001426357|2 +620021|35001426361|2 +637371|35001426369|2 +643673|35001426373|2 +647874|35001426376|2 +648556|35001426378|2 +654528|35001426381|2 +657950|35001426384|2 +671674|35001426388|2 +684157|35001426707|2 +684186|35001426708|2 +558048|35001426871|2 +708242|35001427053|2 +709062|35001427055|2 +712869|35001427060|2 +713994|35001427062|2 +718053|35001427066|2 +718607|35001427071|2 +720937|35001427073|2 +735550|35001427100|2 +741946|35001427103|2 +768077|35001427122|2 +772308|35001427129|2 +808686|35001427132|2 +809583|35001427133|2 +829593|35001427136|4 +830278|35001427137|4 +839659|35001427145|4 +840564|35001427146|2 +845180|35001427147|2 +848428|35001427150|2 +850802|35001427151|2 +858724|35001427156|2 +866380|35001427160|2 +746282|35001427162|2 +798980|35001427163|2 +871509|35001427164|2 +876430|35001427168|2 +879562|35001427170|2 +717726|35001427172|2 +894517|35001427176|2 +896660|35001427178|2 +747700|35001427181|2 +807718|35001427182|2 +830279|35001427184|4 +831110|35001427185|4 +757048|35001427186|2 +934082|35001427199|2 +1173387|35001427462|2 +626470|35001427558|2 +569990|35001427976|2 +452338|35001427980|2 +778870|35001428787|2 +645372|35001429333|2 +678970|35001429334|2 +883779|35001429352|2 +674167|35001429411|2 +760178|35001429653|2 +887131|35001429808|2 +786819|35001429814|2 +661037|35001429821|2 +882262|35001429918|2 +574616|35001430058|2 +623673|35001430093|2 +751321|35001430194|2 +558158|35001430198|2 +752097|35001430201|4 +646495|35001430204|2 +533278|35001430207|2 +464481|35001430218|2 +730037|35001430240|2 +543406|35001430243|2 +591995|35001430265|2 +656999|35001430292|2 +880392|35001430316|2 +701025|35001430331|2 +661311|35001430340|2 +554374|35001430342|2 +886975|35001430346|2 +809615|35001430348|2 +482615|35001431611|2 +473997|35001431612|2 +489933|35001431613|2 +491187|35001431614|2 +497879|35001431615|2 +502027|35001431616|2 +524960|35001431617|2 +533894|35001431619|2 +565340|35001431623|2 +575480|35001431624|2 +586989|35001431625|2 +592315|35001431627|2 +592585|35001431628|2 +635761|35001431631|2 +876062|35001431637|2 +458367|35001431638|2 +458678|35001431639|2 +461413|35001431640|2 +466037|35001431641|2 +591598|35001431642|2 +467713|35001431643|2 +471796|35001431644|2 +473257|35001431645|2 +477019|35001431646|2 +482964|35001431647|2 +487128|35001431648|2 +489604|35001431649|2 +494594|35001431650|2 +510312|35001431652|2 +514045|35001431653|2 +514221|35001431654|2 +516495|35001431655|2 +525967|35001431657|2 +547732|35001431658|2 +549612|35001431659|2 +556392|35001431661|4 +558856|35001431662|2 +573389|35001431663|2 +578350|35001431664|2 +578547|35001431665|2 +579486|35001431666|2 +587353|35001431667|2 +601829|35001431668|2 +609832|35001431672|2 +610964|35001431673|2 +612976|35001431674|2 +616407|35001431675|2 +624304|35001431677|2 +633763|35001431678|2 +652666|35001431681|2 +653269|35001431682|2 +657102|35001431683|2 +663612|35001431684|2 +667224|35001431686|2 +682146|35001431688|2 +684706|35001431690|2 +688928|35001431691|2 +690547|35001431693|2 +699695|35001431694|2 +700676|35001431695|2 +700988|35001431696|2 +701721|35001431697|2 +710810|35001431699|2 +711772|35001431700|2 +718401|35001431701|2 +725739|35001431702|2 +735673|35001431703|2 +736658|35001431704|2 +759714|35001431726|2 +760793|35001431728|2 +774940|35001431729|2 +782560|35001431731|2 +784489|35001431732|2 +791201|35001431734|2 +794315|35001431736|2 +797320|35001431737|2 +802355|35001431738|2 +828828|35001431739|4 +829209|35001431740|4 +819855|35001431741|2 +837716|35001431742|4 +838960|35001431743|4 +844341|35001431744|2 +848337|35001431745|2 +528345|35001431752|2 +713666|35001431755|2 +759148|35001431756|2 +764803|35001431758|2 +859449|35001431760|2 +859954|35001431761|2 +871875|35001431763|2 +873183|35001431766|2 +880471|35001431767|2 +887957|35001431769|2 +890304|35001431772|2 +893564|35001431774|2 +741479|35001431781|2 +505595|35001431875|2 +783586|35001432185|2 +705493|35001432186|2 +858060|35001432193|2 +606187|35001432194|2 +728184|35001432195|2 +840697|35001432197|2 +692922|35001432199|2 +610453|35001432201|2 +772305|35001432203|2 +611556|35001432204|4 +682790|35001432206|2 +887840|35001432211|2 +850798|35001432212|4 +803249|35001432215|2 +678227|35001432218|2 +858218|35001432220|2 +623749|35001432221|2 +634068|35001432224|2 +601716|35001432229|2 +874545|35001432231|2 +873590|35001432237|2 +848513|35001432243|2 +844902|35001432244|2 +790179|35001432248|2 +882479|35001432253|2 +495191|35001432255|2 +509663|35001432257|2 +715491|35001432258|2 +678412|35001432270|2 +538903|35001432271|2 +542118|35001432276|2 +722026|35001432294|2 +573949|35001432296|2 +688948|35001432297|2 +783572|35001432299|2 +758798|35001432300|2 +658112|35001432302|2 +622467|35001432303|2 +596280|35001432308|2 +745458|35001432311|2 +692851|35001432313|2 +629014|35001432317|2 +707818|35001432318|2 +800669|35001432326|2 +728583|35001432337|2 +873015|35001432357|2 +550779|35001432358|2 +890039|35001432363|2 +537853|35001432370|2 +531365|35001432379|2 +578724|35001432387|2 +498390|35001432391|2 +498429|35001432394|2 +884606|35001432396|2 +533375|35001432397|2 +758672|35001432406|2 +533591|35001432408|2 +486802|35001432412|2 +532924|35001432419|2 +560242|35001432420|2 +503927|35001432422|2 +758319|35001432425|2 +601429|35001432427|2 +857099|35001432428|2 +793522|35001432430|2 +661092|35001432437|4 +570190|35001434588|2 +571038|35001434816|2 +514607|35001434821|2 +773707|35001434834|2 +566722|35001434838|2 +783407|35001434841|2 +783414|35001434843|2 +628059|35001434849|2 +637815|35001434858|2 +645566|35001434862|2 +646228|35001434863|2 +653424|35001434870|2 +797964|35001434873|2 +832653|35001434877|4 +837430|35001434892|4 +738486|35001434902|4 +703076|35001434915|2 +704420|35001434916|2 +705881|35001435011|2 +852039|35001435095|2 +742732|35001435099|2 +468139|35001435114|2 +468417|35001435116|2 +490596|35001435121|2 +508563|35001435130|2 +521856|35001435134|2 +787980|35001435137|2 +530540|35001435138|2 +546072|35001435145|2 +548780|35001435146|2 +799354|35001435148|2 +552189|35001435151|2 +554714|35001435152|2 +809586|35001435153|2 +560565|35001435155|2 +835431|35001435160|4 +589148|35001435162|2 +842413|35001435165|2 +589624|35001435166|2 +847007|35001435170|2 +623706|35001435174|2 +642447|35001435182|2 +642753|35001435184|2 +648112|35001435186|2 +651771|35001435187|2 +663642|35001435188|2 +667958|35001435190|2 +675754|35001435191|2 +688025|35001435193|2 +698133|35001435195|2 +761466|35001435202|2 +833896|35001435204|4 +861117|35001435210|2 +880910|35001435211|2 +890900|35001435213|2 +890484|35001435214|2 +902451|35001435221|2 +1183976|35001435297|2 +854307|35001435352|2 +856494|35001435354|2 +858911|35001435355|2 +608189|35001435370|2 +668670|35001435371|2 +746918|35001435373|2 +803053|35001435375|2 +841202|35001435376|2 +882388|35001435379|2 +894892|35001435386|2 +1091272|35001435486|2 +456213|35001435528|2 +604924|35001435636|2 +872563|35001435690|2 +867285|35001435701|2 +570840|35001435727|4 +762046|35001435944|2 +784606|35001435945|2 +865578|35001435946|2 +874066|35001435947|2 +874973|35001435948|2 +896263|35001435949|2 +585367|35001436061|2 +709347|35001436092|2 +895298|35001436111|2 +607729|35001436157|2 +662728|35001436158|2 +781988|35001436164|2 +868239|35001436165|2 +501270|35001436351|2 +502582|35001436352|2 +562561|35001436354|2 +565646|35001436355|2 +695223|35001436357|2 +568655|35001436560|2 +607130|35001436562|2 +649008|35001436563|2 +647588|35001436830|2 +738157|35001436834|2 +506861|35001436948|2 +852070|35001436949|2 +1269466|35001437010|2 +633967|35001437106|2 +645029|35001437107|2 +651398|35001437109|2 +481409|35001437111|2 +621922|35001437182|2 +640560|35001437183|2 +684778|35001437184|2 +739601|35001437246|2 +740854|35001437247|2 +776293|35001437248|2 +793107|35001437437|2 +844626|35001437438|2 +894059|35001437439|2 +474809|35001437743|2 +507523|35001437745|2 +513482|35001437750|2 +531114|35001437751|2 +770692|35001437757|2 +785638|35001437855|2 +528808|35001437896|2 +566406|35001437898|2 +827291|35001437905|4 +850990|35001437908|2 +881097|35001437915|2 +468015|35001438113|2 +513120|35001438115|2 +879422|35001438121|2 +464482|35001438312|2 +881090|35001438315|2 +519843|35001438533|2 +536614|35001438695|2 +459159|35001438881|2 +1023824|35001438884|2 +513481|35001439008|2 +779958|35001439011|2 +939984|35001439134|2 +613725|35001439135|2 +643686|35001439136|2 +794784|35001439137|2 +866610|35001439138|2 +618255|35001439386|2 +721819|35001439388|2 +808940|35001439389|2 +894296|35001439423|2 +1193166|35001439430|2 +570720|35001439547|2 +586894|35001439548|2 +639175|35001439549|2 +726062|35001439550|2 +830952|35001439551|4 +583974|35001439659|2 +980281|35001439668|2 +746753|35001439725|2 +840370|35001439726|4 +475212|35001439777|2 +638273|35001439806|2 +729089|35001439808|2 +874853|35001439809|2 +516817|35001439951|2 +670752|35001440031|2 +745223|35001440032|2 +870211|35001440033|2 +573393|35001440170|2 +581535|35001440171|2 +592030|35001440172|2 +666998|35001440174|2 +679737|35001440175|2 +759999|35001440176|2 +796660|35001440178|2 +800959|35001440179|2 +763671|35001440187|2 +587893|35001440347|2 +750863|35001440361|2 +804236|35001440362|2 +875265|35001440365|2 +543814|35001440388|2 +840323|35001440444|4 +718321|35001440515|2 +570509|35001440626|2 +601991|35001440627|2 +485627|35001440695|2 +613018|35001440696|2 +746198|35001440697|2 +746159|35001440698|2 +764243|35001440699|2 +882761|35001440700|2 +525948|35001440787|2 +737343|35001440788|2 +643019|35001440887|2 +884422|35001440888|2 +717530|35001441010|2 +769796|35001441011|2 +809447|35001441013|2 +667076|35001441143|2 +673497|35001441144|2 +675336|35001441145|2 +865494|35001441146|2 +889982|35001441147|2 +721417|35001441239|2 +809663|35001441240|2 +879415|35001441241|2 +601610|35001441428|2 +681725|35001441429|2 +786953|35001441430|2 +803536|35001441431|2 +887784|35001441432|2 +469249|35001441438|2 +676163|35001441439|2 +723857|35001441440|2 +838956|35001441441|4 +1104174|35001441443|2 +581217|35001441566|2 +618205|35001441567|2 +685776|35001441568|2 +774462|35001441571|2 +809109|35001441573|2 +808950|35001441628|2 +787420|35001441860|2 +889065|35001441861|2 +474728|35001441932|2 +519625|35001441933|2 +532482|35001442011|2 +594964|35001442012|2 +608451|35001442013|2 +759841|35001442014|2 +868252|35001442015|2 +603251|35001442040|2 +783725|35001442041|2 +882258|35001442042|2 +885359|35001442043|2 +885357|35001442044|2 +614835|35001442132|2 +781093|35001442133|2 +567659|35001442278|2 +599100|35001442279|2 +462919|35001442309|2 +524701|35001442310|2 +746411|35001442312|2 +789303|35001442313|2 +1115187|35001442318|2 +592612|35001442387|2 +653213|35001442388|2 +745152|35001442389|2 +772384|35001442390|2 +891245|35001442391|2 +512883|35001442476|2 +637696|35001442478|2 +737245|35001442479|2 +793319|35001442480|2 +490141|35001442481|2 +857152|35001442482|2 +871753|35001442483|2 +717727|35001442585|2 +494193|35001442599|2 +499070|35001442642|2 +630230|35001442643|2 +501084|35001442760|2 +608157|35001442762|2 +692107|35001442859|2 +713137|35001442860|2 +851771|35001442861|2 +749040|35001442890|2 +466835|35001442898|2 +954307|35001442899|2 +471953|35001442981|2 +670652|35001442982|2 +721429|35001442983|2 +749618|35001442984|2 +890221|35001442985|2 +513846|35001443030|2 +530550|35001443031|2 +537784|35001443032|2 +624689|35001443033|4 +610533|35001443112|2 +746533|35001443115|2 +783536|35001443194|2 +566409|35001443220|2 +566410|35001443221|2 +735155|35001443223|2 +541940|35001443310|2 +484379|35001443436|2 +502191|35001443437|2 +555464|35001443438|2 +572522|35001443439|2 +579411|35001443485|2 +545429|35001443501|2 +534173|35001443572|2 +624560|35001443718|2 +516996|35001443815|2 +825446|35001443816|4 +457226|35001443877|2 +792737|35001443878|2 +567484|35001443881|2 +532730|35001443936|2 +799092|35001443937|2 +880784|35001443938|2 +451444|35001444009|2 +521000|35001444010|2 +678256|35001444011|2 +711000|35001444012|2 +785138|35001444013|2 +563546|35001444144|2 +592616|35001444145|2 +600318|35001444146|2 +852334|35001444150|2 +743016|35001444233|2 +697666|35001444339|2 +792402|35001444340|2 +808656|35001444341|2 +779172|35001444394|2 +796636|35001444395|2 +624426|35001444435|2 +662272|35001444552|2 +832287|35001444553|4 +579279|35001444568|2 +551199|35001444570|2 +563309|35001444571|2 +867079|35001444572|2 +507158|35001444726|2 +555155|35001444728|2 +553747|35001444806|2 +587412|35001444807|2 +651976|35001444808|2 +714734|35001444809|2 +803056|35001444812|2 +842502|35001444813|2 +854507|35001444814|2 +976396|35001444821|2 +776788|35001444988|2 +838649|35001444989|4 +976449|35001444990|2 +680967|35001445101|2 +877214|35001445103|2 +567706|35001445172|2 +722150|35001445174|2 +655100|35001445257|2 +510217|35001445313|2 +594934|35001445315|2 +705557|35001445319|2 +884978|35001445322|2 +666354|35001445380|2 +584974|35001445390|2 +552864|35001445409|2 +1127831|35001445411|2 +486864|35001445478|2 +640339|35001445480|2 +666353|35001445481|2 +529521|35001445631|2 +569804|35001445632|2 +739782|35001445633|4 +842401|35001445634|2 +478183|35001445679|2 +593850|35001445680|2 +774128|35001445787|2 +539105|35001445817|2 +610142|35001445819|2 +885041|35001445824|2 +1097480|35001445828|2 +584277|35001445898|2 +631009|35001445899|2 +730634|35001445900|2 +614455|35001446024|2 +605237|35001446122|2 +509630|35001446123|2 +657772|35001446124|2 +892362|35001446126|2 +476478|35001446220|2 +550458|35001446221|2 +670809|35001446222|2 +474212|35001446362|2 +516743|35001446363|2 +682930|35001446366|2 +876529|35001446367|2 +584765|35001446420|2 +459883|35001446497|2 +809005|35001446498|2 +809016|35001446500|2 +646328|35001446590|2 +780727|35001446591|2 +454149|35001446667|2 +536544|35001446668|2 +552638|35001446670|2 +570110|35001446671|2 +484956|35001446798|2 +664930|35001446799|2 +455864|35001446868|2 +625741|35001446869|2 +870245|35001446872|2 +601259|35001446910|2 +578552|35001446912|2 +711835|35001446916|2 +830055|35001446930|4 +502649|35001446934|2 +598000|35001447029|2 +709379|35001447030|2 +890622|35001447031|2 +631018|35001447125|2 +668656|35001447126|2 +836650|35001447127|4 +850231|35001447128|2 +898632|35001447265|2 +579623|35001447359|2 +603217|35001447361|2 +770169|35001447363|2 +792973|35001447364|2 +801205|35001447480|2 +721407|35001447481|2 +684187|35001447560|2 +705177|35001447563|2 +825285|35001447566|8 +797564|35001447567|2 +650140|35001447634|2 +797592|35001447635|2 +851871|35001447636|2 +1173397|35001447640|2 +544603|35001447773|2 +759202|35001447774|2 +879221|35001447775|4 +572048|35001447797|2 +602953|35001447798|2 +777094|35001447799|2 +981798|35001447800|2 +630196|35001447895|2 +529830|35001448007|2 +577444|35001448008|2 +577442|35001448009|2 +458656|35001448136|2 +597189|35001448137|4 +661058|35001448138|2 +537578|35001448226|2 +756635|35001448228|2 +767202|35001448229|2 +888177|35001448230|2 +826442|35001448299|4 +479606|35001448300|2 +774652|35001448302|2 +869053|35001448303|2 +459263|35001448381|2 +495370|35001448383|2 +753313|35001448384|2 +763341|35001448386|2 +573441|35001448448|2 +809324|35001448449|2 +608227|35001448527|2 +704447|35001448528|2 +858914|35001448529|2 +502516|35001448636|2 +636798|35001448639|2 +735742|35001448640|2 +859657|35001448641|2 +499776|35001448696|2 +726822|35001448697|2 +751487|35001448727|2 +863562|35001448729|2 +860819|35001448733|2 +487172|35001448895|2 +634688|35001448896|2 +673357|35001448897|2 +793934|35001448898|2 +506801|35001448977|2 +707517|35001448978|2 +755668|35001448979|2 +842927|35001448980|2 +513919|35001449142|2 +582909|35001449143|2 +646348|35001449145|2 +728169|35001449146|2 +769757|35001449150|2 +864504|35001449151|2 +867108|35001449152|2 +572935|35001449245|2 +802736|35001449334|2 +497998|35001449462|2 +498247|35001449463|2 +533656|35001449468|2 +534735|35001449469|2 +668905|35001449470|2 +691094|35001449471|2 +776347|35001449473|2 +898944|35001449474|2 +711506|35001449715|2 +493729|35001449717|2 +493322|35001449750|2 +497825|35001449751|2 +499876|35001449752|2 +568361|35001449753|2 +606789|35001449754|2 +615989|35001449755|2 +650617|35001449759|2 +717076|35001449760|2 +738805|35001449761|2 +799123|35001449762|2 +804322|35001449763|2 +881745|35001449764|2 +781412|35001449803|2 +798862|35001449805|2 +837051|35001449806|4 +720307|35001449860|2 +554234|35001449980|2 +781413|35001449982|2 +864597|35001449985|2 +891304|35001449986|2 +458334|35001449993|2 +707535|35001450174|2 +573100|35001450176|2 +831035|35001450182|4 +546418|35001450183|2 +686220|35001450184|2 +617141|35001450191|2 +505220|35001450259|2 +597077|35001450260|2 +709512|35001450261|2 +710045|35001450262|2 +471675|35001450356|2 +609699|35001450358|2 +895077|35001450360|2 +545864|35001450508|2 +553591|35001450509|2 +578414|35001450510|2 +624209|35001450511|2 +623965|35001450512|2 +631077|35001450513|2 +696087|35001450514|2 +709090|35001450515|2 +791770|35001450516|2 +549110|35001450548|2 +875044|35001450550|2 +684801|35001450594|2 +749742|35001450604|4 +770997|35001450722|2 +541569|35001450833|4 +716497|35001450834|2 +841603|35001450835|2 +675351|35001450877|2 +498359|35001450948|2 +597864|35001450949|2 +828199|35001450950|4 +453910|35001451012|2 +481697|35001451072|2 +681777|35001451075|2 +695347|35001451076|2 +839665|35001451077|4 +601262|35001451216|2 +889464|35001451244|2 +672071|35001451245|2 +837270|35001451246|4 +750921|35001451251|2 +495088|35001451252|2 +461810|35001451297|2 +654607|35001451298|2 +831062|35001451333|4 +508082|35001451378|2 +745208|35001451379|2 +889948|35001451383|2 +1172526|35001451387|2 +597000|35001451523|2 +460429|35001451732|2 +474220|35001451766|2 +538471|35001451769|2 +668203|35001451770|2 +684132|35001451771|2 +724304|35001451772|2 +756177|35001451773|2 +761714|35001451774|2 +884859|35001451775|2 +885624|35001451776|2 +895076|35001451777|2 +616651|35001451849|2 +616738|35001451850|2 +638135|35001451852|2 +692347|35001451853|2 +874419|35001451856|2 +510771|35001452069|2 +830286|35001452070|4 +506445|35001452074|2 +597376|35001452075|2 +745215|35001452076|2 +882869|35001452077|2 +893871|35001452078|2 +462724|35001452170|2 +522973|35001452171|2 +840699|35001452172|2 +863204|35001452173|2 +631075|35001452176|2 +764608|35001452261|2 +786018|35001452262|2 +746782|35001452556|2 +594467|35001452557|2 +653675|35001452647|2 +717069|35001452649|2 +716983|35001452650|2 +720598|35001452651|2 +877891|35001452653|2 +464516|35001452709|2 +466262|35001452711|2 +685836|35001452720|2 +720670|35001452721|2 +542576|35001452803|2 +797488|35001452807|2 +572584|35001452853|2 +852073|35001452854|2 +608415|35001452994|2 +500859|35001453050|2 +632466|35001453052|2 +673408|35001453053|2 +717908|35001453054|2 +837238|35001453055|4 +837600|35001453056|4 +865743|35001453067|2 +779482|35001453069|2 +480779|35001453180|2 +624286|35001453304|2 +719079|35001453305|2 +463032|35001453350|2 +673395|35001453351|2 +852074|35001453352|2 +475940|35001453361|2 +523659|35001453362|2 +572547|35001453363|2 +471885|35001453445|2 +699094|35001453446|2 +835893|35001453447|4 +835894|35001453448|4 +608643|35001453550|2 +791767|35001453552|2 +498919|35001453613|2 +551808|35001453614|2 +724743|35001453707|2 +522966|35001453768|2 +539771|35001453769|4 +746161|35001453771|2 +598087|35001453799|2 +678346|35001453837|2 +502517|35001453905|2 +563922|35001453906|2 +568431|35001453907|2 +604772|35001453951|2 +499991|35001454107|2 +1173436|35001454110|2 +478805|35001454112|2 +882694|35001454113|2 +886323|35001454114|2 +648361|35001454266|2 +655089|35001454272|2 +865882|35001454319|2 +880931|35001454320|2 +533731|35001454689|2 +563476|35001454692|2 +575998|35001454693|2 +601509|35001454694|2 +620685|35001454696|2 +753308|35001454704|2 +794357|35001454705|2 +831333|35001454707|4 +861715|35001454709|2 +861716|35001454710|2 +678338|35001454735|2 +678332|35001454736|2 +789604|35001454737|2 +670361|35001454770|2 +820319|35001454771|2 +735289|35001454922|2 +872796|35001454973|2 +1033826|35001454975|2 +566574|35001455048|2 +592412|35001455049|2 +759186|35001455051|2 +784584|35001455052|2 +622459|35001455090|2 +554651|35001455168|2 +528735|35001455332|2 +712308|35001455337|2 +808819|35001455338|2 +642427|35001455427|2 +601516|35001455521|2 +555968|35001455703|2 +693785|35001455704|2 +739992|35001455705|2 +847256|35001455706|2 +653020|35001455841|2 +781555|35001455842|2 +635399|35001455906|2 +547706|35001456100|2 +559671|35001456101|2 +614908|35001456102|2 +555216|35001456238|2 +659952|35001456239|2 +711993|35001456244|2 +552014|35001456435|2 +604381|35001456436|2 +680497|35001456437|2 +860213|35001456440|2 +486624|35001456451|2 +461809|35001456489|2 +508808|35001456490|2 +513730|35001456491|2 +569421|35001456493|2 +590346|35001456494|2 +574256|35001456535|2 +873926|35001456536|2 +860758|35001456572|2 +639376|35001456654|2 +730192|35001456730|2 +861841|35001456731|2 +512603|35001456817|2 +661995|35001456818|2 +758184|35001456819|2 +552981|35001456869|2 +679980|35001456870|2 +1256614|35001456876|2 +534519|35001456929|2 +803945|35001456930|2 +846137|35001456931|2 +779908|35001456936|2 +452492|35001457034|2 +506937|35001457036|2 +751919|35001457037|2 +835920|35001457039|4 +836822|35001457040|4 +701815|35001457117|2 +807092|35001457119|2 +558736|35001457178|2 +767897|35001457180|2 +598203|35001457226|2 +679981|35001457227|2 +794624|35001457228|2 +806658|35001457229|2 +855055|35001457230|2 +627058|35001457341|2 +740356|35001457342|2 +740855|35001457343|2 +799815|35001457344|2 +830322|35001457345|4 +518766|35001457422|2 +580054|35001457423|2 +835843|35001457513|4 +528944|35001457658|2 +888981|35001457659|2 +602250|35001457660|2 +738077|35001457661|2 +747670|35001457662|2 +758602|35001457663|2 +787624|35001457664|2 +787623|35001457665|2 +808804|35001457666|2 +870781|35001457679|2 +475774|35001457716|2 +831599|35001457759|4 +616996|35001457864|2 +808342|35001457865|2 +591485|35001457937|2 +787281|35001457938|2 +787284|35001457939|2 +791311|35001457940|4 +794937|35001457941|2 +624558|35001458021|2 +647381|35001458022|2 +764270|35001458023|2 +783417|35001458024|2 +854184|35001458031|2 +888892|35001458032|2 +924932|35001458035|2 +806469|35001458138|2 +838618|35001458139|4 +858051|35001458140|2 +644104|35001458225|2 +646909|35001458226|2 +743111|35001458227|2 +492105|35001458252|2 +598198|35001458302|2 +606872|35001458303|2 +669430|35001458304|2 +728158|35001458305|2 +803084|35001458306|2 +902010|35001458307|2 +627901|35001458317|2 +763688|35001458524|2 +873750|35001458525|2 +878851|35001458526|2 +711792|35001458603|2 +756841|35001458604|2 +890799|35001458608|2 +476742|35001458774|2 +898685|35001458777|2 +898809|35001458778|2 +755335|35001458825|2 +884587|35001458826|2 +737484|35001459047|2 +801944|35001459048|2 +901280|35001459143|2 +647539|35001459222|2 +902084|35001459223|2 +657535|35001459260|2 +684126|35001459354|2 +599312|35001459483|2 +501939|35001459553|2 +548805|35001459554|2 +1268941|35001459558|2 +539772|35001459604|4 +587268|35001459605|2 +716115|35001459607|2 +548909|35001459648|2 +565342|35001459649|2 +755167|35001459650|2 +625906|35001459746|2 +774456|35001459747|2 +801780|35001459748|2 +615070|35001459835|2 +885909|35001459837|2 +809940|35001459842|2 +626193|35001459895|4 +655302|35001459898|2 +480934|35001460044|2 +884165|35001460048|2 +892218|35001460049|2 +895136|35001460051|2 +632465|35001460083|2 +478551|35001460216|2 +494782|35001460218|2 +871856|35001460219|2 +522032|35001460221|2 +545737|35001460223|2 +625369|35001460225|2 +848153|35001460231|2 +650174|35001460246|2 +537327|35001460302|2 +503356|35001460346|2 +563463|35001460478|2 +563464|35001460479|2 +662388|35001460481|2 +787839|35001460482|2 +787840|35001460483|2 +717062|35001460502|2 +722995|35001460676|2 +571393|35001460688|2 +613850|35001460689|2 +617071|35001460690|2 +852579|35001460759|2 +556686|35001460859|2 +625784|35001460860|2 +719999|35001460912|2 +865751|35001460962|2 +705629|35001461037|2 +532495|35001461158|2 +626988|35001461159|2 +454072|35001461283|2 +482522|35001461284|2 +507038|35001461285|2 +545393|35001461286|2 +647689|35001461287|2 +656997|35001461288|2 +555361|35001461331|2 +897431|35001461339|2 +1165837|35001461341|2 +765983|35001461435|4 +507125|35001461436|2 +693587|35001461437|2 +895222|35001461439|2 +511380|35001461627|2 +615604|35001461628|2 +719086|35001461629|2 +642277|35001461662|2 +852411|35001461680|2 +665035|35001461734|2 +665157|35001461735|2 +696779|35001461736|2 +771006|35001461737|2 +594047|35001461822|2 +473023|35001461909|2 +570729|35001461912|2 +510972|35001462012|2 +765545|35001462013|2 +552150|35001462100|2 +645275|35001462101|2 +856124|35001462153|2 +466212|35001462166|2 +637419|35001462168|2 +783345|35001462235|2 +731392|35001462332|2 +616747|35001462410|2 +566216|35001462519|2 +725883|35001462521|2 +885986|35001462522|2 +514507|35001462617|2 +665605|35001462619|2 +671971|35001462620|2 +799366|35001462621|2 +801826|35001462622|2 +890064|35001462624|2 +1093221|35001462627|2 +498886|35001462691|2 +803641|35001462692|2 +549636|35001462714|2 +787823|35001462715|2 +831949|35001462751|4 +478732|35001462757|2 +518335|35001462812|2 +653274|35001462813|2 +890793|35001462814|2 +489719|35001462932|2 +849223|35001462935|2 +853198|35001462936|2 +602492|35001462963|2 +681318|35001462966|2 +735808|35001462967|2 +735807|35001462968|2 +530398|35001463093|2 +769486|35001463098|2 +488472|35001463222|2 +564079|35001463223|2 +710627|35001463224|2 +842298|35001463225|2 +500913|35001463310|2 +609150|35001463311|2 +589302|35001463409|2 +847790|35001463410|2 +479236|35001463412|2 +716392|35001463462|4 +721298|35001463463|2 +896562|35001463464|2 +850362|35001463551|2 +758189|35001463553|2 +885406|35001463554|2 +475933|35001463697|2 +486327|35001463698|2 +877208|35001463703|2 +587811|35001463845|2 +586893|35001463846|2 +611266|35001463848|2 +714464|35001463849|2 +615455|35001463904|2 +472729|35001463990|2 +498595|35001463991|2 +684670|35001463994|2 +723879|35001464034|2 +456108|35001464160|2 +869346|35001464161|2 +487911|35001464339|2 +688065|35001464343|2 +576701|35001464365|2 +736624|35001464366|2 +871279|35001464367|2 +490280|35001464426|2 +570153|35001464453|2 +577541|35001464454|2 +724846|35001464461|2 +705213|35001464589|2 +511111|35001464626|2 +642858|35001464639|2 +775477|35001464643|2 +797563|35001464644|2 +831915|35001464645|4 +887757|35001464646|2 +687069|35001464973|2 +529317|35001464978|2 +564059|35001464979|2 +581643|35001464980|2 +692028|35001464981|2 +695539|35001464982|2 +544451|35001465019|2 +456121|35001465094|2 +600566|35001465095|2 +797585|35001465188|2 +803055|35001465298|2 +990390|35001465299|2 +774960|35001465383|4 +554811|35001465444|2 +554815|35001465446|2 +581247|35001465447|2 +834909|35001465449|6 +893432|35001465450|2 +453183|35001465518|2 +548714|35001465609|4 +531126|35001465663|2 +656226|35001465664|2 +1097722|35001465665|2 +741588|35001465824|2 +660185|35001465890|2 +666343|35001465891|2 +474795|35001466016|2 +551418|35001466017|2 +581978|35001466019|2 +784313|35001466020|2 +633620|35001466072|2 +602065|35001466073|2 +742773|35001466078|2 +514684|35001466118|2 +723688|35001466119|2 +803642|35001466183|2 +828966|35001466184|4 +694286|35001466293|2 +661746|35001466369|2 +470831|35001466486|2 +568612|35001466487|2 +575963|35001466488|2 +602597|35001466490|2 +748190|35001466491|2 +801356|35001466492|2 +692486|35001466602|2 +713073|35001466603|2 +854202|35001466604|2 +509595|35001466607|2 +665606|35001466649|2 +684777|35001466650|2 +757953|35001466743|2 +591149|35001466827|2 +598433|35001466829|2 +734304|35001466830|2 +1008243|35001466833|2 +540313|35001466874|2 +498095|35001466919|2 +508144|35001466920|2 +585030|35001466921|2 +615095|35001466922|2 +460729|35001467048|2 +533519|35001467049|2 +1165915|35001467050|2 +701844|35001467051|2 +674691|35001467074|2 +492947|35001467075|2 +577996|35001467076|2 +828294|35001467077|4 +867290|35001467078|2 +485311|35001467096|2 +495116|35001467314|2 +534645|35001467367|2 +666589|35001467368|2 +885881|35001467369|2 +567501|35001467410|2 +645758|35001467412|2 +901479|35001467413|2 +474200|35001467494|2 +572949|35001467564|2 +592714|35001467565|2 +608386|35001467662|2 +611158|35001467663|2 +619786|35001467664|2 +642630|35001467665|2 +693701|35001467716|2 +720574|35001467719|2 +1218409|35001467721|2 +492277|35001467763|2 +661113|35001467765|2 +757280|35001467766|2 +845460|35001467848|2 +568520|35001467925|2 +584829|35001467926|2 +698639|35001467986|2 +762996|35001467987|2 +696636|35001468024|2 +459252|35001468075|2 +480409|35001468076|2 +494261|35001468077|2 +662612|35001468078|2 +670829|35001468079|2 +671318|35001468080|2 +855821|35001468081|2 +527838|35001468179|2 +704656|35001468180|2 +534646|35001468303|2 +567296|35001468304|2 +708932|35001468305|2 +884913|35001468369|2 +682656|35001468422|2 +836778|35001468423|4 +875266|35001468424|2 +571221|35001468498|2 +706588|35001468499|2 +874010|35001468500|2 +498802|35001468619|2 +457435|35001468637|2 +477779|35001468722|2 +550177|35001468723|2 +556569|35001468724|2 +649476|35001468725|2 +795121|35001468727|2 +741624|35001468748|2 +606458|35001468847|2 +493602|35001468849|2 +577445|35001468850|2 +879555|35001468979|2 +801353|35001468982|2 +574559|35001468983|2 +727658|35001468984|2 +519554|35001469115|2 +469463|35001469179|2 +502392|35001469180|2 +869777|35001469183|2 +781294|35001469269|2 +497969|35001469301|2 +478182|35001469308|2 +482209|35001469309|2 +522452|35001469310|2 +648499|35001469331|2 +850605|35001469332|2 +887880|35001469333|2 +1008240|35001469334|2 +897300|35001469378|2 +897278|35001469381|2 +641040|35001469426|2 +839369|35001469427|4 +637657|35001469611|2 +479196|35001469616|2 +609831|35001469618|2 +611387|35001469619|2 +826608|35001469627|4 +539016|35001469732|2 +682201|35001469735|2 +741309|35001469738|2 +806722|35001469739|2 +684283|35001469891|2 +885035|35001469963|2 +657531|35001470064|2 +635262|35001470065|2 +634750|35001470066|2 +771773|35001470067|2 +539529|35001470319|4 +769950|35001470333|2 +847505|35001470372|4 +891853|35001470463|2 +891851|35001470464|2 +594289|35001470492|2 +741057|35001470566|2 +569749|35001470568|2 +527315|35001470570|2 +633728|35001470574|2 +639458|35001470575|2 +722519|35001470577|2 +830281|35001470695|4 +488956|35001470698|2 +803495|35001470703|2 +547408|35001470795|2 +651393|35001470954|2 +651396|35001470955|2 +776445|35001470957|2 +786330|35001470958|2 +838782|35001470960|4 +660752|35001470965|4 +568172|35001470992|2 +703171|35001470994|2 +793507|35001470997|2 +892251|35001470999|2 +461973|35001471006|2 +521150|35001471007|2 +558442|35001471072|2 +784756|35001471174|2 +512403|35001471177|2 +470350|35001471252|2 +473390|35001471253|2 +497968|35001471255|2 +785338|35001471264|2 +830464|35001471268|4 +880303|35001471270|2 +976391|35001471274|2 +500093|35001471360|2 +558110|35001471362|2 +640121|35001471365|2 +762045|35001471367|2 +724739|35001471370|2 +979731|35001471373|2 +557306|35001471457|2 +576265|35001471458|2 +661368|35001471460|2 +782448|35001471461|2 +782532|35001471462|2 +548883|35001471604|2 +761324|35001471614|2 +538615|35001471709|2 +670076|35001471714|2 +734578|35001471716|2 +799587|35001471718|2 +614279|35001471871|2 +719087|35001471873|2 +893996|35001472031|2 +629937|35001472112|2 +581041|35001472135|2 +680604|35001472138|2 +748776|35001472139|2 +874729|35001472140|2 +566051|35001472196|2 +590408|35001472197|2 +732452|35001472198|2 +754615|35001472199|2 +765044|35001472253|2 +678707|35001472267|2 +1193178|35001472304|2 +742261|35001472305|2 +847077|35001472324|2 +739895|35001472327|2 +739877|35001472330|2 +537668|35001472357|2 +537658|35001472358|2 +588629|35001472360|2 +652260|35001472361|2 +544814|35001472367|2 +482149|35001472411|2 +515153|35001472412|2 +1234403|35001472428|2 +604443|35001472443|2 +702904|35001472444|2 +650955|35001472512|2 +532330|35001472513|2 +524255|35001472517|2 +629355|35001472519|2 +883373|35001472585|4 +511049|35001472595|2 +524397|35001472596|2 +593871|35001472597|2 +789111|35001472598|4 +827128|35001472599|4 +827129|35001472600|4 +542865|35001472677|2 +842157|35001472682|2 +856718|35001472683|2 +593413|35001473019|2 +649658|35001473021|2 +806545|35001473027|2 +869506|35001473028|2 +897772|35001473147|2 +497845|35001473445|2 +514636|35001473622|2 +640088|35001473623|2 +640154|35001473624|2 +845392|35001473627|2 +896511|35001473628|2 +859198|35001473720|2 +593770|35001473800|2 +892387|35001473804|2 +634778|35001473879|2 +479189|35001474046|2 +735229|35001474051|2 +978176|35001474053|2 +871231|35001474163|2 +464690|35001474249|2 +731472|35001474323|2 +797762|35001474385|4 +520497|35001474394|2 +777821|35001474541|2 +646072|35001474621|2 +659376|35001474622|2 +856133|35001474623|2 +753278|35001474629|2 +628466|35001474631|2 +899054|35001474634|2 +742697|35001474719|2 +673520|35001474721|2 +545030|35001474724|2 +726799|35001474739|2 +514214|35001474860|2 +797965|35001474865|2 +856643|35001474866|2 +891871|35001474867|2 +604900|35001474877|2 +656716|35001474879|2 +776346|35001474884|2 +792591|35001474885|2 +678642|35001474910|2 +678928|35001475002|2 +805164|35001475055|2 +693074|35001475144|2 +461394|35001475151|2 +514643|35001475155|2 +550223|35001475159|2 +682705|35001475164|2 +693699|35001475166|2 +714623|35001475173|2 +774740|35001475179|2 +842826|35001475182|2 +481491|35001475381|2 +640689|35001475395|2 +877411|35001475396|2 +537757|35001475399|2 +594340|35001475400|2 +630948|35001475401|2 +523809|35001475482|2 +457765|35001475484|2 +640510|35001475572|2 +679925|35001475573|2 +845959|35001475575|2 +774525|35001475789|2 +532927|35001475804|2 +721497|35001475902|2 +710233|35001475928|2 +477822|35001475984|2 +490246|35001475987|2 +529985|35001475989|2 +539492|35001475990|4 +595712|35001476006|2 +602916|35001476013|2 +614137|35001476015|2 +634353|35001476016|2 +640814|35001476019|2 +657767|35001476026|2 +739989|35001476049|2 +800302|35001476053|2 +804757|35001476054|2 +829538|35001476055|4 +842279|35001476058|2 +833863|35001476060|4 +871854|35001476072|2 +527633|35001476087|2 +575757|35001476141|2 +656983|35001476147|2 +744549|35001476157|2 +753622|35001476159|2 +848799|35001476164|2 +782506|35001476443|2 +630998|35001476445|2 +699581|35001476743|2 +455041|35001477682|2 +470269|35001477695|4 +480170|35001477702|2 +494236|35001477706|2 +501074|35001477709|2 +711186|35001477720|2 +545379|35001477724|2 +548075|35001477726|2 +567680|35001477776|2 +580815|35001477784|2 +596590|35001477792|2 +601375|35001477798|2 +602716|35001477803|2 +604382|35001477809|2 +616723|35001477813|2 +623833|35001477821|2 +624284|35001477823|2 +634050|35001477831|2 +666285|35001477846|2 +672046|35001477854|2 +673359|35001477860|2 +673020|35001477863|2 +496295|35001477874|2 +696130|35001477882|2 +696367|35001477890|2 +722466|35001477899|2 +735682|35001477914|2 +758121|35001477919|2 +766552|35001477923|2 +767931|35001477925|2 +770154|35001477939|2 +781490|35001477945|2 +745323|35001477952|2 +829600|35001477957|4 +836973|35001477962|8 +853798|35001477984|2 +861045|35001477998|2 +864753|35001478000|2 +872877|35001478004|2 +878087|35001478009|2 +879304|35001478014|2 +883919|35001478019|2 +885625|35001478021|2 +894145|35001478022|2 +501540|35001478034|2 +505208|35001478067|2 +559199|35001478083|2 +781685|35001478165|2 +547755|35001478702|2 +837212|35001478719|4 +471197|35001478720|2 +759052|35001479915|2 +701641|35001479919|2 +829003|35001479935|4 +610309|35001479952|2 +882224|35001479970|2 +503209|35001479989|2 +540954|35001479993|2 +643594|35001480008|2 +682147|35001480012|2 +616661|35001480173|2 +762762|35001480194|2 +891475|35001480234|2 +549191|35001480240|2 +647346|35001480262|2 +700764|35001480278|2 +454108|35001480280|2 +474307|35001480284|2 +480007|35001480285|2 +489465|35001480287|2 +511104|35001480290|2 +515939|35001480291|2 +535073|35001480297|2 +557930|35001480301|2 +558544|35001480303|2 +586382|35001480309|2 +587489|35001480310|2 +604704|35001480319|2 +609288|35001480333|2 +615450|35001480336|2 +500487|35001480349|2 +648032|35001480385|2 +669883|35001480391|2 +684291|35001480400|2 +690579|35001480402|2 +691456|35001480403|2 +695926|35001480406|2 +703125|35001480409|2 +704543|35001480410|2 +711211|35001480413|2 +491116|35001480418|2 +718293|35001480421|2 +721663|35001480422|2 +725038|35001480424|4 +726050|35001480427|2 +752541|35001480438|2 +772106|35001480443|2 +784991|35001480446|2 +796293|35001480451|2 +797342|35001480454|2 +805751|35001480459|2 +806659|35001480460|2 +832326|35001480463|4 +870832|35001480493|2 +874933|35001480494|2 +893732|35001480503|2 +888986|35001480608|2 +472188|35001480618|2 +457244|35001480755|2 +586780|35001480757|2 +643707|35001480759|2 +643708|35001480762|2 +767935|35001480769|2 +870296|35001480775|2 +901787|35001480776|2 +465162|35001480804|2 +1071816|35001480841|2 +1087914|35001480849|2 +468519|35001480874|2 +473119|35001480878|2 +473644|35001480880|2 +480171|35001480884|2 +480532|35001480885|2 +488040|35001480894|2 +491068|35001480899|2 +491764|35001480902|2 +1166669|35001480904|2 +495701|35001480910|2 +501776|35001480916|2 +503761|35001480918|2 +504894|35001480920|2 +505759|35001480921|2 +510342|35001480922|2 +1234404|35001480970|2 +515497|35001481206|2 +516647|35001481207|2 +516872|35001481208|2 +528969|35001481210|2 +529564|35001481211|2 +531914|35001481212|2 +556107|35001481220|2 +577016|35001481226|2 +582311|35001481228|2 +582212|35001481229|2 +584669|35001481231|2 +587354|35001481232|2 +594153|35001481237|2 +597144|35001481240|2 +599043|35001481241|2 +613058|35001481248|2 +614019|35001481250|2 +633651|35001481269|2 +635393|35001481271|2 +647271|35001481274|2 +659544|35001481277|2 +662953|35001481280|2 +663283|35001481282|2 +663550|35001481283|2 +665327|35001481290|2 +665955|35001481291|2 +672178|35001481292|2 +673636|35001481296|2 +850408|35001481299|2 +678375|35001481302|2 +687452|35001481308|2 +690635|35001481311|2 +694223|35001481313|2 +702252|35001481323|2 +711780|35001481326|2 +713595|35001481327|2 +718799|35001481350|2 +723126|35001481351|2 +725540|35001481352|2 +728551|35001481360|2 +554051|35001481511|2 +613232|35001481516|2 +715918|35001481520|2 +741167|35001481535|2 +797510|35001481536|2 +866165|35001481538|2 +696307|35001481715|2 +502604|35001481870|2 +532634|35001481871|2 +579023|35001481940|2 +718953|35001481943|2 +722720|35001481946|2 +787237|35001481950|2 +798294|35001481951|2 +760515|35001481955|2 +893745|35001481957|2 +601064|35001482052|2 +769596|35001482053|2 +898531|35001482054|2 +538808|35001482061|4 +589491|35001482069|2 +622618|35001482084|2 +663871|35001482113|2 +702191|35001482116|2 +716139|35001482126|2 +741518|35001482135|2 +743904|35001482137|2 +749318|35001482146|2 +751042|35001482147|2 +752388|35001482148|4 +753309|35001482149|2 +753632|35001482150|2 +779511|35001482167|2 +767465|35001482170|2 +788982|35001482188|4 +790792|35001482190|2 +791526|35001482194|2 +792972|35001482195|2 +860421|35001482213|2 +795564|35001482220|2 +883580|35001482227|2 +751891|35001482238|2 +686694|35001482244|2 +541389|35001482254|2 +761271|35001482255|2 +832843|35001482256|4 +848205|35001482273|2 +848206|35001482275|2 +848620|35001482277|2 +851338|35001482278|2 +851723|35001482279|2 +756687|35001482299|2 +858257|35001482315|2 +634459|35001482317|2 +860422|35001482318|2 +871878|35001482326|2 +878814|35001482385|2 +880472|35001482391|2 +882701|35001482392|2 +884369|35001482393|2 +884661|35001482398|2 +886673|35001482401|2 +894827|35001482409|2 +897528|35001482412|2 +1166126|35001482495|2 +1164991|35001482498|2 +702900|35001482551|2 +793718|35001482736|2 +1033827|35001482813|2 +526827|35001482852|2 +880877|35001482855|2 +491956|35001482909|4 +580495|35001483024|2 +888451|35001483025|2 +766473|35001483080|2 +487982|35001483194|2 +764561|35001483198|2 +896553|35001483199|2 +850795|35001483354|2 +880291|35001483362|2 +457073|35001483386|2 +720305|35001483389|2 +893726|35001483422|2 +778689|35001483424|2 +473003|35001483651|2 +495539|35001483683|2 +745731|35001483690|2 +878377|35001483691|2 +679594|35001483697|2 +679600|35001483699|2 +794898|35001483717|2 +496836|35001483724|2 +515495|35001483725|2 +827153|35001483792|4 +772310|35001483826|2 +515493|35001484031|2 +515490|35001484033|2 +548899|35001484042|2 +649488|35001484068|2 +657511|35001484075|2 +694555|35001484103|2 +704568|35001484124|2 +722549|35001484150|2 +829591|35001484176|4 +873354|35001484187|2 +876987|35001484188|2 +885849|35001484191|2 +891800|35001484195|2 +893958|35001484199|2 +734322|35001484201|2 +958435|35001484205|2 +580777|35001484234|2 +573729|35001484307|2 +466390|35001484320|2 +780984|35001484361|2 +798445|35001484362|2 +887770|35001484364|2 +560609|35001484911|2 +586365|35001485030|2 +622927|35001485036|2 +638338|35001485037|2 +633669|35001485077|2 +561475|35001485541|2 +745384|35001485545|2 +639412|35001485572|2 +581098|35001485587|2 +732552|35001485594|2 +625977|35001485596|2 +512764|35001485609|2 +893463|35001485653|2 +481891|35001485707|2 +901848|35001485748|2 +451911|35001485884|2 +462471|35001485894|2 +476287|35001485895|2 +478194|35001485897|2 +479222|35001485905|2 +506227|35001485922|2 +484697|35001485923|2 +511101|35001485927|2 +487205|35001485929|2 +528914|35001485931|2 +586783|35001485936|2 +557226|35001485942|2 +602751|35001485944|2 +604049|35001485947|2 +631299|35001485957|2 +616135|35001485961|2 +687539|35001485968|2 +709915|35001485996|2 +725402|35001485997|2 +731032|35001485998|4 +737395|35001486002|2 +741823|35001486004|2 +767558|35001486006|2 +779208|35001486007|2 +791351|35001486008|2 +827078|35001486010|4 +862290|35001486011|2 +849762|35001486012|2 +869797|35001486013|2 +883527|35001486014|2 +898590|35001486019|2 +893764|35001486120|2 +796903|35001486127|2 +587756|35001486190|2 +587757|35001486191|2 +559012|35001486606|2 +529318|35001486617|2 +608616|35001486644|2 +881045|35001486686|2 +898382|35001486699|2 +713181|35001486778|2 +567417|35001486799|2 +576575|35001486800|2 +745339|35001486803|2 +896467|35001486807|2 +799376|35001486894|2 +597041|35001486899|2 +893644|35001486931|2 +545117|35001486996|2 +1205041|35001487008|2 +714921|35001487011|2 +710007|35001487041|2 +472695|35001487045|2 +684514|35001487084|2 +844427|35001488337|2 +552609|35001488344|2 +577820|35001488360|2 +887909|35001488362|2 +458679|35001488364|2 +465295|35001488366|2 +476804|35001488370|2 +734094|35001488371|2 +496553|35001488372|2 +456997|35001488375|2 +457942|35001488377|2 +457943|35001488378|2 +462342|35001488379|2 +468270|35001488383|2 +675711|35001488386|2 +536895|35001488388|2 +475926|35001488389|2 +459509|35001488391|2 +479338|35001488392|2 +454595|35001488393|2 +487301|35001488396|2 +497861|35001488398|2 +503594|35001488399|2 +544527|35001488411|2 +588861|35001488414|2 +644858|35001488421|2 +659319|35001488423|2 +681938|35001488424|2 +558805|35001488441|2 +560375|35001488443|2 +563523|35001488449|2 +566083|35001488451|2 +568170|35001488464|2 +1106977|35001488468|2 +576264|35001488470|2 +712937|35001488472|2 +809110|35001488477|2 +885403|35001488479|2 +591700|35001488500|2 +594213|35001488502|2 +1103514|35001488548|2 +602798|35001488585|2 +555605|35001488654|2 +561459|35001488670|2 +578614|35001488689|2 +597046|35001488698|2 +598932|35001488699|2 +615580|35001488737|2 +641121|35001488755|2 +645159|35001488758|2 +649485|35001488762|2 +649549|35001488764|2 +653756|35001488766|2 +666038|35001488768|2 +612338|35001488780|2 +614859|35001488782|2 +619987|35001488787|2 +694754|35001488794|2 +709345|35001488802|2 +712853|35001488803|2 +629929|35001488812|2 +638408|35001488815|2 +735263|35001488822|2 +740560|35001488830|2 +656161|35001488832|2 +742734|35001488833|2 +743869|35001488834|2 +756995|35001488844|2 +763187|35001488848|2 +779704|35001488883|2 +783174|35001488884|2 +802817|35001488885|2 +803656|35001488887|2 +828092|35001488888|4 +828451|35001488889|4 +835907|35001488890|4 +837924|35001488891|4 +853180|35001488892|2 +859951|35001488893|2 +878120|35001488898|2 +880383|35001488900|2 +880479|35001488901|2 +887143|35001488903|2 +661944|35001488911|2 +670465|35001488912|2 +891506|35001488919|2 +897385|35001488943|2 +900878|35001488944|2 +679789|35001489115|2 +680737|35001489118|2 +691360|35001489307|2 +692424|35001489309|2 +697865|35001489314|2 +707200|35001489318|2 +524298|35001489362|2 +568346|35001489381|2 +582508|35001489384|2 +714908|35001489386|2 +716146|35001489387|4 +687567|35001489390|2 +725751|35001489395|2 +735450|35001489422|2 +738589|35001489423|2 +749521|35001489428|2 +752076|35001489430|2 +753931|35001489433|2 +756486|35001489436|2 +759129|35001489438|2 +766553|35001489446|2 +776407|35001489451|2 +776401|35001489452|2 +776395|35001489453|2 +786574|35001489463|2 +787173|35001489464|2 +791430|35001489465|2 +791480|35001489466|2 +838555|35001489488|4 +803625|35001489489|2 +851586|35001489496|2 +866939|35001489498|2 +885239|35001489519|2 +892140|35001489520|2 +899368|35001489531|2 +825533|35001489545|4 +826610|35001489548|4 +835910|35001489555|4 +854503|35001489583|2 +856077|35001489584|2 +868948|35001489636|2 +876922|35001489637|2 +879265|35001489638|2 +880422|35001489639|2 +891051|35001489641|4 +528328|35001489709|2 +893544|35001489763|2 +535768|35001489862|2 +535769|35001489863|2 +567845|35001489864|2 +706382|35001489866|2 +724100|35001489867|2 +544939|35001490072|2 +719984|35001490073|2 +891561|35001490076|2 +715352|35001490283|2 +791062|35001490749|4 +856381|35001490754|2 +730937|35001490772|2 +688629|35001490796|2 +721767|35001490799|2 +742382|35001490803|2 +784984|35001490806|2 +787636|35001490808|2 +769055|35001490914|2 +771026|35001490915|2 +454620|35001491013|2 +579502|35001491016|2 +669207|35001491019|2 +767718|35001491151|2 +775542|35001491152|2 +838192|35001491156|4 +517093|35001491230|2 +745316|35001491235|2 +768256|35001491237|2 +883830|35001491248|4 +498649|35001491311|2 +537318|35001491312|2 +685811|35001491313|2 +787634|35001491314|2 +744956|35001491466|2 +556891|35001491497|2 +563473|35001491502|2 +457665|35001491544|2 +463024|35001491546|2 +504161|35001491548|2 +550012|35001491554|2 +568450|35001491559|2 +575628|35001491563|2 +583853|35001491566|2 +585037|35001491567|2 +598091|35001491568|2 +607483|35001491569|2 +611306|35001491570|2 +631614|35001491572|2 +703258|35001491591|2 +785127|35001491604|2 +475352|35001491677|2 +684156|35001491686|2 +799751|35001491690|2 +851773|35001491701|2 +858037|35001491702|2 +883307|35001491739|2 +883831|35001491740|4 +1005558|35001491781|2 +462761|35001491998|2 +512606|35001491999|2 +611180|35001492003|2 +462023|35001492160|2 +774420|35001492267|2 +736069|35001492303|2 +794110|35001492305|2 +1233901|35001492307|2 +838218|35001492310|4 +851411|35001492314|2 +718415|35001492328|2 +498372|35001492357|2 +503414|35001492358|2 +678066|35001492361|2 +681234|35001492362|2 +793183|35001492364|2 +793178|35001492365|2 +875534|35001492367|2 +882396|35001492368|2 +473778|35001492439|2 +560826|35001492465|2 +459424|35001492546|2 +540325|35001492547|2 +543793|35001492548|2 +601777|35001492549|2 +514780|35001492662|2 +514778|35001492663|2 +515525|35001492664|2 +771149|35001492672|2 +844583|35001492673|2 +551680|35001492734|2 +571348|35001492735|2 +603572|35001492736|2 +473089|35001492955|2 +516126|35001492956|2 +805799|35001492960|2 +857580|35001492961|2 +543510|35001493034|2 +685874|35001493035|4 +739446|35001493036|2 +757030|35001493037|2 +488685|35001493119|2 +522486|35001493120|2 +878107|35001493127|2 +857579|35001493130|2 +694115|35001493247|2 +635541|35001493258|2 +694993|35001493326|2 +454944|35001493335|2 +885659|35001493368|2 +542772|35001493437|2 +547127|35001493438|2 +785208|35001493521|2 +670771|35001493532|2 +759840|35001493535|2 +501418|35001493538|2 +512090|35001493546|2 +782069|35001493557|2 +458105|35001493592|2 +639277|35001493678|2 +1085121|35001493687|2 +754549|35001493830|2 +770170|35001493831|2 +660691|35001493966|2 +733324|35001493970|2 +775248|35001493972|2 +480343|35001494071|2 +637420|35001494073|2 +895685|35001494076|2 +573983|35001494220|2 +454033|35001494313|2 +527866|35001494314|2 +581445|35001494315|2 +656197|35001494316|2 +660773|35001494318|2 +779531|35001494319|2 +793298|35001494320|2 +860001|35001494321|2 +462151|35001494379|2 +517950|35001494380|2 +590831|35001494381|2 +716598|35001494382|2 +880554|35001494383|2 +757811|35001494384|2 +880330|35001494386|2 +690349|35001494441|4 +1131585|35001494443|2 +1101871|35001494449|2 +629938|35001494516|2 +512777|35001494584|2 +776543|35001494585|2 +489879|35001494733|2 +878817|35001494744|2 +966213|35001494747|2 +563916|35001494822|2 +827833|35001494828|4 +493562|35001494910|2 +522566|35001494911|2 +544810|35001494912|2 +643642|35001494914|2 +794860|35001495013|2 +646828|35001495014|2 +678276|35001495056|2 +766809|35001495059|2 +456036|35001495081|2 +500925|35001495082|2 +719194|35001495084|2 +606853|35001495085|2 +777318|35001495087|2 +884653|35001495090|2 +773387|35001495091|2 +859041|35001495218|2 +549126|35001495229|2 +780058|35001495232|2 +650841|35001495233|2 +528869|35001495334|2 +570465|35001495335|2 +577253|35001495336|2 +652830|35001495339|2 +851544|35001495340|2 +492866|35001495530|2 +835760|35001495531|4 +501300|35001495569|2 +555662|35001495570|2 +635107|35001495785|2 +832324|35001495786|4 +967140|35001495787|2 +536322|35001495854|2 +493880|35001495930|2 +575221|35001495931|2 +658671|35001495937|2 +715133|35001495939|2 +895684|35001495940|2 +793967|35001496018|2 +840204|35001496021|4 +465002|35001496033|2 +617530|35001496098|2 +481013|35001496101|2 +739797|35001496102|2 +899310|35001496106|2 +478199|35001496244|2 +554641|35001496245|2 +819267|35001496407|2 +880004|35001496408|2 +895625|35001496409|2 +633698|35001496429|2 +877818|35001496430|2 +478391|35001496550|2 +487925|35001496551|2 +799083|35001496553|2 +894910|35001496558|2 +619851|35001496636|2 +527457|35001496700|2 +702559|35001496784|2 +570464|35001496865|2 +606784|35001496866|2 +672499|35001496867|2 +781094|35001496868|2 +879119|35001496869|2 +898087|35001496872|2 +839693|35001496949|4 +467057|35001497189|2 +509064|35001497191|2 +538093|35001497194|2 +591442|35001497198|2 +693075|35001497203|2 +833424|35001497205|4 +601943|35001497231|2 +697634|35001497232|2 +667233|35001497396|2 +510064|35001497397|2 +555730|35001497399|2 +506054|35001497401|2 +492819|35001497422|2 +666520|35001497426|2 +841294|35001497434|2 +855438|35001497435|2 +537316|35001497575|2 +547262|35001497576|2 +840758|35001497578|2 +539950|35001497646|2 +479037|35001497680|2 +709059|35001497681|2 +897141|35001497683|2 +643038|35001497693|2 +1167878|35001497803|2 +492637|35001497815|2 +667109|35001497816|2 +827054|35001497827|4 +889761|35001497830|2 +882912|35001497831|2 +834559|35001497835|4 +482765|35001497836|2 +453453|35001497839|2 +655516|35001497841|2 +826236|35001497842|2 +696135|35001497923|2 +699798|35001497924|2 +728755|35001497926|2 +527814|35001497984|2 +769998|35001497987|2 +847990|35001497989|2 +471099|35001497993|2 +495881|35001498074|2 +833703|35001498075|4 +892109|35001498076|2 +1221091|35001498082|2 +496552|35001498111|2 +502666|35001498112|2 +511384|35001498113|2 +678756|35001498114|2 +732422|35001498117|2 +745032|35001498118|2 +834558|35001498119|4 +506100|35001498199|2 +507921|35001498200|2 +725505|35001498203|2 +490472|35001498302|2 +674244|35001498303|2 +877774|35001498304|2 +600679|35001498383|2 +798553|35001498386|2 +861877|35001498387|2 +795110|35001498455|2 +548715|35001498485|4 +687499|35001498487|2 +857687|35001498488|2 +555507|35001498591|2 +595349|35001498592|2 +608558|35001498593|2 +871917|35001498594|2 +521498|35001498667|2 +573863|35001498668|2 +462834|35001498822|2 +470078|35001498898|2 +470364|35001498899|2 +586205|35001498900|2 +753122|35001498901|2 +787185|35001498902|2 +806176|35001498903|2 +990936|35001498904|2 +456844|35001498985|2 +599243|35001498986|2 +616698|35001498987|2 +749253|35001498988|2 +1268237|35001498992|2 +779871|35001499099|2 +629325|35001499139|2 +578399|35001499140|2 +667230|35001499188|2 +674168|35001499189|2 +569655|35001499240|2 +758827|35001499275|2 +494007|35001499422|4 +617501|35001499427|2 +489350|35001499471|2 +496778|35001499472|2 +517776|35001499475|2 +533351|35001499477|2 +584125|35001499479|2 +767775|35001499494|2 +819268|35001499495|2 +540259|35001499615|2 +779159|35001499616|2 +779329|35001499687|2 +830613|35001499688|4 +533698|35001499744|2 +555847|35001499745|2 +635984|35001499746|2 +634798|35001499887|2 +454639|35001500002|2 +736591|35001500004|2 +1268939|35001500105|2 +778801|35001500200|2 +862187|35001500203|2 +862186|35001500205|2 +607450|35001500278|2 +680181|35001500280|2 +622454|35001500295|2 +640411|35001500348|2 +554688|35001500349|2 +616699|35001500451|2 +856179|35001500454|2 +481812|35001500509|2 +548976|35001500510|2 +546285|35001500578|2 +549377|35001500580|2 +718080|35001500582|2 +707511|35001500629|2 +886040|35001500630|2 +747208|35001500725|2 +765209|35001500728|2 +884310|35001500735|2 +1187380|35001500746|2 +669736|35001500795|2 +849431|35001500817|2 +615464|35001500876|2 +807786|35001500959|2 +884627|35001500960|2 +681388|35001500963|2 +809432|35001501021|2 +549456|35001501124|2 +549457|35001501125|2 +669737|35001501128|2 +712428|35001501232|2 +1266308|35001501233|2 +648058|35001501235|2 +624071|35001501237|2 +836440|35001501240|8 +481735|35001501254|2 +644501|35001501256|2 +459427|35001501263|2 +841737|35001501266|2 +516464|35001501276|2 +704411|35001501277|2 +858221|35001501294|2 +861448|35001501424|2 +716174|35001501460|2 +890359|35001501464|2 +670280|35001501472|2 +506197|35001501483|2 +556460|35001501487|2 +730371|35001501489|2 +600899|35001501497|2 +658420|35001501498|2 +716116|35001501517|2 +479672|35001501623|2 +580027|35001501624|2 +870795|35001501631|2 +926555|35001501632|2 +514569|35001501742|2 +714937|35001501747|2 +727608|35001501748|2 +797071|35001501749|2 +730848|35001501866|2 +731147|35001501867|2 +754597|35001501868|2 +458300|35001501973|2 +551669|35001501981|2 +697597|35001501986|2 +720949|35001501987|2 +872565|35001501988|2 +589592|35001502093|2 +681897|35001502095|2 +689163|35001502096|2 +756536|35001502097|2 +826369|35001502099|4 +839230|35001502100|4 +625401|35001502105|2 +635726|35001502172|2 +819777|35001502223|4 +743008|35001502225|2 +745430|35001502230|2 +754866|35001502231|2 +691537|35001502394|2 +681714|35001502427|2 +695057|35001502429|2 +785239|35001502431|2 +864853|35001502432|2 +896625|35001502433|2 +782358|35001502509|2 +461772|35001502516|2 +455048|35001502545|2 +513877|35001502560|2 +774162|35001502565|2 +770756|35001502566|2 +870842|35001502572|2 +520450|35001502664|2 +598083|35001502665|2 +754353|35001502666|2 +866948|35001502668|2 +555904|35001502746|2 +656998|35001502747|2 +681937|35001502748|2 +517232|35001502831|2 +628211|35001502832|2 +776787|35001502834|2 +778733|35001502836|2 +848117|35001502840|2 +671514|35001502908|2 +788770|35001502912|2 +590827|35001502938|2 +787844|35001502939|2 +833153|35001502943|4 +571574|35001503065|2 +614495|35001503066|2 +689221|35001503068|2 +692252|35001503069|2 +880362|35001503074|2 +456702|35001503164|2 +461337|35001503165|2 +657067|35001503166|2 +797936|35001503268|2 +895525|35001503329|2 +895580|35001503331|2 +1073440|35001503349|2 +765931|35001503493|2 +588455|35001503615|2 +774248|35001503616|2 +853181|35001503620|2 +694212|35001503621|2 +886686|35001503622|2 +471694|35001503759|2 +495434|35001503761|2 +667981|35001503771|2 +706697|35001503772|2 +831614|35001503774|4 +886689|35001503775|2 +593240|35001503834|2 +634460|35001503842|2 +875231|35001503844|2 +673202|35001503845|2 +556088|35001503846|2 +598755|35001503851|2 +852678|35001503852|2 +488179|35001503939|2 +516141|35001504077|2 +565319|35001504083|2 +772138|35001504086|2 +645982|35001504156|2 +468117|35001504157|2 +886335|35001504160|2 +760557|35001504239|2 +803957|35001504240|2 +767815|35001504299|2 +835128|35001504324|4 +826047|35001504329|4 +551229|35001504411|2 +651836|35001504413|2 +478061|35001504554|2 +480573|35001504555|2 +671420|35001504558|2 +700251|35001504559|2 +726810|35001504560|2 +767895|35001504565|2 +794274|35001504566|2 +864693|35001504569|2 +587488|35001504649|2 +572718|35001504737|2 +832142|35001504742|4 +1006909|35001504748|2 +759961|35001504755|2 +542850|35001504839|2 +772328|35001504841|2 +761471|35001504979|2 +613946|35001505154|2 +756681|35001505156|2 +802065|35001505157|2 +678983|35001505211|2 +492213|35001505325|2 +841366|35001505326|2 +576197|35001505391|2 +494178|35001505403|2 +536070|35001505404|2 +544536|35001505405|2 +778667|35001505564|2 +531194|35001505571|2 +578895|35001505572|2 +661618|35001505576|2 +620366|35001505651|2 +880815|35001505652|2 +569471|35001505827|2 +607101|35001505829|2 +791346|35001505831|2 +791403|35001505832|2 +873843|35001505833|2 +454402|35001505906|2 +767702|35001505908|2 +801828|35001505910|2 +898658|35001505912|2 +732942|35001505994|2 +800850|35001505996|2 +455385|35001506042|2 +594935|35001506046|2 +599737|35001506047|2 +611711|35001506049|2 +778104|35001506056|2 +970506|35001506062|2 +724960|35001506197|2 +459154|35001506301|2 +459153|35001506302|2 +605797|35001506307|2 +762559|35001506309|2 +1164677|35001506319|2 +491096|35001506399|2 +491229|35001506498|2 +953986|35001506501|2 +472083|35001506604|2 +502608|35001506605|2 +879111|35001506611|2 +727662|35001506728|2 +779320|35001506729|2 +612900|35001506830|2 +790728|35001506878|2 +725534|35001506915|2 +496976|35001506943|2 +587240|35001506944|2 +794208|35001506945|2 +592043|35001507080|2 +592044|35001507081|2 +598085|35001507299|2 +618834|35001507300|2 +657275|35001507303|2 +679075|35001507304|2 +662263|35001507342|2 +459142|35001507386|2 +727015|35001507390|2 +662268|35001507391|2 +786968|35001507393|2 +883306|35001507395|2 +521066|35001507639|2 +539823|35001507734|2 +620114|35001507735|2 +665251|35001507736|2 +665252|35001507740|2 +676261|35001507741|2 +676262|35001507743|2 +544023|35001507793|2 +589285|35001507800|2 +775045|35001507801|2 +491763|35001507812|2 +493403|35001507894|2 +493800|35001507895|2 +518580|35001507896|2 +563881|35001507898|2 +772541|35001507901|2 +567462|35001508058|2 +604727|35001508072|2 +640525|35001508075|2 +720189|35001508082|2 +748788|35001508085|2 +770039|35001508088|2 +885186|35001508132|2 +487668|35001508235|4 +609787|35001508239|2 +615082|35001508240|2 +754862|35001508244|2 +803670|35001508245|2 +844947|35001508247|2 +725874|35001508351|2 +750618|35001508353|2 +861408|35001508355|2 +861430|35001508356|2 +494333|35001508482|2 +513636|35001508483|2 +615770|35001508484|2 +721163|35001508486|2 +722600|35001508487|2 +871481|35001508488|2 +636839|35001508673|2 +652513|35001508674|2 +663373|35001508675|2 +683488|35001508685|2 +753152|35001508745|2 +833468|35001508746|4 +504562|35001508936|2 +791612|35001508939|2 +875279|35001508940|2 +483773|35001509099|2 +577707|35001509100|2 +655453|35001509103|2 +728511|35001509104|2 +790719|35001509105|2 +844148|35001509107|4 +883662|35001509108|2 +832960|35001509217|4 +504859|35001509235|2 +783767|35001509240|2 +793822|35001509241|2 +879601|35001509242|2 +835078|35001509243|2 +851164|35001509244|2 +510404|35001509316|2 +570712|35001509317|2 +643348|35001509424|2 +901631|35001509429|2 +515492|35001509521|2 +666046|35001509522|2 +688058|35001509527|2 +844834|35001509537|2 +698265|35001509609|2 +716956|35001509612|2 +507585|35001509674|2 +575974|35001509675|2 +651921|35001509677|2 +805105|35001509681|2 +474213|35001509753|2 +486644|35001509754|2 +597395|35001509757|2 +494203|35001509793|2 +532294|35001509794|2 +730712|35001509795|2 +471695|35001509850|2 +517738|35001509855|2 +726809|35001509862|2 +653791|35001509956|4 +764472|35001509959|2 +833660|35001509966|4 +1259619|35001509968|2 +668706|35001509999|2 +664531|35001510125|2 +717979|35001510130|2 +773894|35001510134|2 +773923|35001510135|2 +582478|35001510184|2 +548430|35001510268|2 +558562|35001510269|2 +595041|35001510270|2 +605161|35001510286|2 +705796|35001510332|4 +742634|35001510333|2 +878804|35001510336|2 +888599|35001510338|2 +696940|35001510342|2 +809048|35001510409|2 +487875|35001510449|2 +554019|35001510450|2 +607807|35001510453|2 +831436|35001510454|4 +741640|35001510462|2 +831439|35001510463|4 +466592|35001510586|2 +584171|35001510587|2 +834560|35001510589|4 +856276|35001510595|2 +573995|35001510635|2 +800238|35001510636|2 +616818|35001510673|2 +511441|35001510675|2 +890623|35001510722|2 +708543|35001510860|2 +739058|35001510863|2 +782228|35001510969|2 +505636|35001511083|2 +653541|35001511084|2 +598237|35001511085|4 +887492|35001511086|2 +710540|35001511144|2 +603630|35001511170|2 +781983|35001511171|2 +646578|35001511172|2 +851554|35001511241|2 +563520|35001511342|2 +605763|35001511423|2 +640815|35001511425|2 +469192|35001511427|2 +532665|35001511499|2 +474768|35001511583|2 +646387|35001511590|2 +591770|35001511591|2 +797893|35001511681|2 +883685|35001511683|2 +467647|35001511803|4 +853307|35001511804|2 +627054|35001511836|2 +467687|35001511886|2 +892936|35001511897|2 +607799|35001512059|2 +629326|35001512060|2 +713624|35001512061|2 +670469|35001512070|2 +800010|35001512216|2 +990391|35001512224|2 +670375|35001512275|2 +681392|35001512276|2 +555156|35001512485|2 +556869|35001512486|2 +773351|35001512495|2 +852727|35001512496|2 +604929|35001512519|2 +725429|35001512629|2 +872377|35001512630|2 +878811|35001512631|2 +560589|35001512792|2 +648350|35001512803|2 +667195|35001512806|2 +672475|35001512809|2 +708023|35001512812|2 +739016|35001512816|2 +762930|35001512818|2 +552854|35001512965|2 +777996|35001512967|2 +778169|35001512968|2 +786376|35001512974|2 +714178|35001513112|2 +792459|35001513164|2 +478618|35001513178|2 +498640|35001513228|2 +657859|35001513229|2 +826606|35001513230|4 +570125|35001513246|2 +735293|35001513259|2 +884062|35001513260|2 +640297|35001513309|2 +694717|35001513311|2 +537281|35001513344|2 +707034|35001513346|2 +635194|35001513408|2 +473798|35001513409|2 +546287|35001513410|2 +564098|35001513411|2 +622899|35001513412|2 +681391|35001513414|2 +783807|35001513418|2 +604327|35001513527|2 +659251|35001513528|2 +683746|35001513529|2 +890055|35001513534|2 +748979|35001513623|2 +800397|35001513625|2 +1008415|35001513629|2 +877946|35001513631|2 +745181|35001513724|2 +520086|35001513731|2 +527534|35001513732|2 +534970|35001513734|2 +800117|35001513738|2 +800356|35001513739|2 +808593|35001513768|2 +872839|35001513770|2 +600604|35001513771|2 +536598|35001513772|2 +569694|35001513785|2 +791882|35001513870|2 +642472|35001513983|2 +856316|35001513985|2 +856417|35001513986|2 +635030|35001514075|2 +634556|35001514076|2 +650801|35001514142|2 +740200|35001514145|2 +809455|35001514150|2 +836019|35001514152|4 +854766|35001514154|2 +521878|35001514249|2 +523146|35001514250|2 +841382|35001514270|2 +885225|35001514271|2 +752189|35001514273|2 +635689|35001514274|2 +837026|35001514275|4 +707370|35001514330|2 +552240|35001514439|2 +699688|35001514444|2 +699706|35001514445|2 +562948|35001514701|2 +483484|35001514858|2 +509885|35001514859|2 +695371|35001514895|2 +683091|35001514900|2 +571362|35001514930|2 +606478|35001514931|2 +760945|35001514932|2 +885633|35001514934|2 +784714|35001514936|2 +465432|35001515067|2 +505747|35001515068|2 +950533|35001515073|2 +777992|35001515077|2 +624978|35001515079|2 +668668|35001515081|2 +774246|35001515083|2 +511807|35001515130|4 +874985|35001515133|2 +630451|35001515163|2 +706744|35001515328|2 +792629|35001515333|2 +1198648|35001515349|2 +566682|35001515353|2 +475236|35001515354|2 +499688|35001515355|2 +645348|35001515360|2 +495062|35001515366|2 +704628|35001515367|2 +867301|35001515454|2 +501800|35001515456|2 +696634|35001515588|2 +483988|35001515637|2 +581563|35001515644|2 +581508|35001515646|2 +721507|35001515650|2 +747161|35001515653|2 +707338|35001515855|2 +1258183|35001515861|2 +803483|35001515862|2 +884311|35001515912|2 +627871|35001515915|2 +787873|35001515918|2 +1006907|35001515922|2 +479147|35001515977|2 +585914|35001515979|2 +747918|35001515982|2 +758893|35001516124|4 +700761|35001516142|2 +782064|35001516222|2 +874194|35001516229|2 +496390|35001516234|2 +555839|35001516259|2 +674660|35001516265|2 +474992|35001516271|2 +606929|35001516275|2 +633649|35001516277|2 +876134|35001516315|2 +696244|35001516363|2 +716734|35001516364|2 +644322|35001516366|2 +498741|35001516416|2 +549140|35001516418|2 +758453|35001516421|2 +1155093|35001516486|2 +831477|35001516544|4 +868700|35001516545|2 +681415|35001516584|2 +773223|35001516585|2 +887297|35001516587|2 +770988|35001516681|2 +861304|35001516682|2 +862292|35001516683|2 +628928|35001516895|2 +849825|35001516900|2 +492643|35001516980|2 +533456|35001516983|4 +649857|35001516986|2 +778901|35001516988|2 +830307|35001517040|4 +458100|35001517044|2 +711093|35001517133|2 +578785|35001517179|2 +680381|35001517181|2 +736657|35001517182|2 +832235|35001517213|4 +587485|35001517214|2 +485639|35001517268|2 +740693|35001517270|2 +778151|35001517271|2 +513298|35001517327|2 +581669|35001517328|2 +640091|35001517329|2 +800698|35001517446|2 +520095|35001517676|2 +539602|35001517711|2 +577941|35001517715|2 +763999|35001517724|2 +794861|35001517725|2 +844266|35001517730|2 +496842|35001517845|2 +645793|35001517847|2 +759528|35001517851|2 +773007|35001517852|2 +487675|35001517863|2 +781246|35001517921|2 +869295|35001517926|2 +543902|35001518027|2 +627360|35001518030|2 +708170|35001518032|2 +760969|35001518033|2 +794772|35001518034|2 +713596|35001518057|2 +555272|35001518128|2 +552118|35001518262|2 +664698|35001518267|2 +703151|35001518269|2 +801914|35001518280|2 +899134|35001518281|2 +1122448|35001518285|2 +1221069|35001518287|2 +613187|35001518353|2 +637322|35001518355|2 +867653|35001518359|2 +884269|35001518366|2 +676738|35001518387|2 +455780|35001518391|2 +883093|35001518394|2 +761986|35001518660|2 +789223|35001518715|2 +808743|35001518719|2 +801333|35001518773|2 +704422|35001518909|2 +840700|35001518910|2 +670773|35001518933|2 +675290|35001519012|2 +541578|35001519084|2 +464158|35001519085|2 +779828|35001519087|2 +470856|35001519094|2 +521069|35001519097|2 +669598|35001519099|4 +777241|35001519100|2 +498801|35001519115|2 +455502|35001519235|2 +585135|35001519237|2 +606621|35001519238|2 +870124|35001519239|2 +462968|35001519247|2 +508169|35001519248|2 +580843|35001519250|2 +682953|35001519254|2 +713074|35001519256|2 +846598|35001519257|2 +1092770|35001519259|2 +680975|35001519261|2 +486384|35001519380|2 +488798|35001519381|2 +844510|35001519384|2 +876304|35001519388|2 +472812|35001519450|2 +781840|35001519452|2 +718825|35001519459|2 +895206|35001519659|2 +790241|35001519662|2 +856199|35001519663|2 +565991|35001519668|2 +603288|35001519669|2 +619819|35001519673|2 +888713|35001519675|2 +898747|35001519683|2 +652200|35001519787|2 +847908|35001519788|2 +680722|35001519791|2 +565992|35001519793|2 +620426|35001519854|2 +873942|35001519859|2 +917232|35001519860|2 +546790|35001519935|2 +596457|35001519939|2 +546073|35001519940|2 +879636|35001520061|2 +530826|35001520070|2 +578607|35001520071|2 +844734|35001520081|2 +808690|35001520091|2 +545942|35001520243|2 +545943|35001520244|2 +550191|35001520245|2 +572593|35001520246|2 +664222|35001520247|2 +671707|35001520302|2 +557935|35001520343|2 +637111|35001520347|2 +742381|35001520356|2 +840731|35001520362|2 +840730|35001520365|2 +847600|35001520371|2 +681815|35001520521|2 +785010|35001520524|2 +899752|35001520619|2 +556717|35001520647|2 +572774|35001520648|2 +690907|35001520650|2 +829279|35001520651|4 +759653|35001520658|2 +831772|35001520660|4 +527781|35001520778|2 +785902|35001520779|2 +790900|35001520780|2 +889205|35001520781|2 +461539|35001520783|4 +768275|35001520784|2 +539579|35001520878|2 +572704|35001520879|2 +728501|35001520881|2 +650211|35001520882|2 +672317|35001520885|2 +884382|35001520889|2 +513108|35001521010|2 +502120|35001521023|2 +683987|35001521025|2 +697822|35001521028|2 +866113|35001521078|2 +879242|35001521079|2 +486290|35001521096|2 +807675|35001521100|2 +771709|35001521202|2 +575081|35001521209|2 +787240|35001521339|2 +830919|35001521348|4 +510509|35001521349|2 +603550|35001521350|2 +717589|35001521352|2 +784785|35001521437|2 +575777|35001521438|2 +861847|35001521446|2 +718640|35001521451|4 +854491|35001521531|2 +857156|35001521532|2 +1007922|35001521533|2 +1007923|35001521534|2 +769599|35001521538|2 +831287|35001521539|4 +682056|35001521540|2 +463682|35001521541|2 +493187|35001521651|2 +697361|35001521652|2 +1165446|35001521656|2 +514544|35001521658|2 +915335|35001521767|2 +464623|35001521770|2 +762235|35001521853|2 +697764|35001521855|2 +636688|35001521938|2 +844482|35001521943|2 +1166127|35001521946|2 +488604|35001521948|2 +657465|35001521960|2 +657466|35001521962|2 +534234|35001521973|2 +585506|35001521975|2 +674204|35001521976|2 +840359|35001521999|4 +550893|35001522000|2 +588211|35001522001|2 +754706|35001522004|2 +534042|35001522011|2 +687083|35001522109|2 +696630|35001522110|2 +696954|35001522111|2 +696860|35001522112|2 +713001|35001522113|2 +542289|35001522118|2 +643020|35001522191|2 +782662|35001522192|4 +516009|35001522195|2 +791038|35001522214|2 +720360|35001522228|2 +538770|35001522250|2 +803325|35001522262|2 +803403|35001522263|2 +574030|35001522270|2 +475857|35001522302|2 +568649|35001522305|2 +797393|35001522308|2 +858834|35001522310|2 +491875|35001522431|2 +899131|35001522433|2 +580865|35001522435|2 +681170|35001522436|2 +584663|35001522437|2 +739172|35001522438|2 +881323|35001522596|2 +599491|35001522607|2 +791473|35001522749|2 +461315|35001522794|2 +539122|35001522801|2 +593665|35001522862|2 +553623|35001522872|2 +646269|35001522881|2 +795664|35001522885|2 +561799|35001522924|2 +601206|35001522925|2 +875970|35001522937|2 +746987|35001523076|2 +801689|35001523077|2 +706711|35001523113|2 +881302|35001523177|2 +889270|35001523178|2 +536756|35001523322|2 +631440|35001523325|2 +713637|35001523326|2 +830134|35001523328|4 +762421|35001523342|2 +707407|35001523356|2 +672006|35001523358|2 +715353|35001523364|2 +887117|35001523365|2 +567463|35001523370|2 +602036|35001523509|2 +709563|35001523510|2 +519556|35001523555|4 +462926|35001523674|2 +851134|35001523676|2 +877595|35001523685|2 +850139|35001523687|2 +751762|35001523698|2 +496255|35001523799|2 +771111|35001523828|4 +657464|35001523960|2 +767693|35001523961|2 +772949|35001523963|2 +772950|35001523964|2 +587559|35001523965|2 +794314|35001524061|2 +454440|35001524063|2 +549121|35001524064|2 +475351|35001524109|2 +478798|35001524326|2 +586116|35001524330|2 +770121|35001524331|2 +851708|35001524332|2 +757867|35001524378|2 +757955|35001524380|2 +509204|35001524382|2 +803375|35001524383|2 +492758|35001524437|2 +793830|35001524441|2 +845775|35001524442|2 +489624|35001524446|2 +549259|35001524447|2 +649701|35001524448|2 +849946|35001524449|2 +475126|35001524450|2 +537588|35001524631|2 +586204|35001524632|2 +726619|35001524655|2 +505907|35001524748|2 +648122|35001524842|2 +652829|35001524844|2 +800830|35001525037|2 +678459|35001525043|2 +507422|35001525044|2 +773702|35001525045|2 +636617|35001525046|2 +717752|35001525047|2 +845873|35001525053|2 +761038|35001525054|2 +891586|35001525055|2 +668763|35001525056|2 +549122|35001525058|2 +600585|35001525060|2 +612997|35001525061|2 +612979|35001525063|2 +545407|35001525065|2 +671672|35001525146|2 +790307|35001525153|2 +586077|35001525154|2 +761550|35001525155|2 +480533|35001525258|2 +529741|35001525261|2 +878088|35001525264|2 +551511|35001525265|2 +825471|35001525266|4 +793634|35001525290|2 +786177|35001525306|2 +786126|35001525311|2 +599097|35001525556|2 +474914|35001525650|2 +767673|35001525852|2 +562202|35001525859|2 +732342|35001525862|2 +826932|35001525863|4 +848679|35001525869|2 +487939|35001525874|2 +511287|35001525876|2 +754521|35001525879|2 +731148|35001525883|2 +787981|35001525885|2 +679085|35001525894|2 +876400|35001525897|2 +491573|35001525950|2 +888499|35001525956|2 +651901|35001525971|2 +666966|35001525972|2 +687085|35001525973|2 +805907|35001525976|2 +628820|35001526003|2 +628823|35001526005|2 +695004|35001526008|2 +627006|35001526066|2 +853182|35001526072|2 +458236|35001526083|2 +642315|35001526109|2 +585938|35001526112|2 +738918|35001526119|2 +711677|35001526122|2 +700056|35001526127|2 +537883|35001526131|2 +791283|35001526133|2 +480537|35001526142|2 +683077|35001526150|2 +669192|35001526163|2 +684300|35001526166|2 +468423|35001526199|2 +715562|35001526207|2 +728274|35001526259|2 +852445|35001526261|2 +487804|35001526263|2 +757796|35001526264|2 +487857|35001526270|2 +781724|35001526271|2 +877984|35001526290|2 +859854|35001526561|2 +573751|35001526596|2 +827103|35001526600|4 +702084|35001526606|2 +712940|35001526619|2 +732035|35001526622|2 +599809|35001526631|2 +632339|35001526635|2 +467076|35001526637|2 +534905|35001526639|2 +772436|35001526642|2 +872208|35001526649|2 +666308|35001526655|2 +858015|35001526661|2 +560123|35001526664|2 +517193|35001526674|2 +598723|35001526676|2 +647877|35001526679|2 +893269|35001526682|2 +894938|35001526686|2 +768279|35001526687|2 +878439|35001526688|2 +899309|35001526696|2 +516989|35001526697|2 +482654|35001526698|2 +636728|35001526702|2 +734507|35001526711|2 +558683|35001526716|2 +864156|35001526776|2 +562322|35001526885|2 +632394|35001526893|2 +485543|35001526897|2 +850223|35001526903|2 +556084|35001526904|2 +855576|35001526906|2 +486531|35001526916|2 +628824|35001526922|2 +468039|35001526986|2 +845333|35001526994|2 +790908|35001526996|2 +1018124|35001526998|2 +656208|35001527000|2 +673139|35001527001|2 +538186|35001527047|2 +803939|35001527051|2 +730819|35001527150|2 +785787|35001527155|2 +876527|35001527167|2 +673481|35001527186|2 +850528|35001527187|2 +604128|35001527206|2 +490396|35001527226|2 +649312|35001527383|2 +451466|35001527394|2 +580621|35001527396|2 +622588|35001527400|2 +844619|35001527436|2 +665434|35001527439|2 +884654|35001527440|2 +703414|35001527444|2 +632270|35001527446|2 +493892|35001527806|2 +537460|35001527808|2 +685891|35001527834|2 +756008|35001527851|2 +899142|35001527856|2 +479145|35001527868|2 +554305|35001527874|2 +554299|35001527875|2 +505801|35001527937|2 +547439|35001527940|2 +838554|35001527946|4 +763313|35001528002|2 +718755|35001528012|2 +582321|35001528018|2 +572001|35001528020|2 +764025|35001528028|2 +594586|35001528030|2 +518174|35001528052|2 +741207|35001528053|2 +1060250|35001528091|2 +716735|35001528124|2 +861951|35001528125|2 +774919|35001528126|2 +1030671|35001528127|2 +1253030|35001528130|2 +512315|35001528225|2 +541949|35001528226|2 +630852|35001528227|2 +850810|35001528230|2 +782136|35001528235|2 +486166|35001528451|2 +638246|35001528463|2 +664226|35001528468|2 +882246|35001528469|2 +896527|35001528471|2 +581583|35001528493|2 +739896|35001528494|2 +831183|35001528503|4 +594852|35001528531|2 +687604|35001528547|2 +490198|35001528549|2 +705657|35001528552|2 +471780|35001528724|2 +848321|35001528725|2 +648675|35001528875|2 +777213|35001528878|2 +851475|35001528881|2 +851476|35001528882|2 +469406|35001528883|2 +755866|35001529033|2 +501402|35001529363|2 +650989|35001529374|2 +1163145|35001529380|2 +606914|35001529386|2 +710434|35001529387|2 +711194|35001529388|2 +732770|35001529389|2 +809657|35001529391|2 +893205|35001529395|2 +528494|35001529396|2 +838393|35001529498|4 +776259|35001529504|2 +465087|35001529522|2 +502132|35001529537|2 +625907|35001529539|2 +797091|35001529540|2 +915336|35001529541|2 +706006|35001529542|2 +671913|35001529648|2 +716498|35001529677|2 +605768|35001529788|2 +605769|35001529789|2 +703454|35001529793|2 +776898|35001529800|2 +555840|35001529829|2 +554306|35001529833|2 +756643|35001529834|2 +764470|35001529835|2 +835016|35001529837|2 +868402|35001529839|2 +488281|35001529844|2 +522224|35001529845|2 +572429|35001529849|2 +477989|35001529850|2 +593447|35001529852|2 +593448|35001529853|2 +720754|35001529859|2 +512112|35001529884|2 +515494|35001529886|2 +735498|35001529898|2 +533223|35001529902|2 +574488|35001529904|2 +648009|35001529907|2 +763312|35001529908|2 +766569|35001529909|2 +885626|35001529913|2 +500932|35001529944|2 +468520|35001529945|2 +458526|35001529946|2 +556761|35001530013|2 +626308|35001530015|2 +638513|35001530021|2 +711619|35001530025|2 +718419|35001530027|2 +758801|35001530033|2 +807742|35001530042|2 +598709|35001530078|2 +682981|35001530079|2 +736041|35001530081|2 +846417|35001530085|2 +458527|35001530088|2 +626439|35001530092|2 +636057|35001530093|2 +692092|35001530095|2 +790622|35001530097|2 +838072|35001530098|4 +553508|35001530392|2 +803620|35001530395|2 +466213|35001530407|2 +825469|35001530495|4 +873558|35001530496|2 +1173386|35001530498|2 +735488|35001530499|2 +513038|35001530674|2 +852112|35001530675|2 +1221050|35001530676|2 +1221051|35001530686|2 +782749|35001530690|2 +707410|35001530691|2 +576702|35001530920|2 +744309|35001530935|2 +799846|35001530937|2 +864540|35001530940|2 +678713|35001530961|2 +880054|35001530965|2 +510637|35001531175|2 +510638|35001531176|2 +524421|35001531177|2 +884033|35001531190|2 +878367|35001531192|2 +560566|35001531383|2 +769250|35001531388|2 +629006|35001531389|2 +710942|35001531584|2 +496555|35001531599|2 +645531|35001531600|2 +643942|35001531605|2 +764336|35001531624|2 +1092769|35001531640|2 +742605|35001531642|2 +517453|35001531653|2 +699952|35001531655|2 +505598|35001531811|2 +768858|35001531814|2 +691650|35001531820|2 +873236|35001531900|2 +744993|35001531919|2 +662643|35001531921|2 +879880|35001531922|2 +900707|35001531923|2 +1253071|35001531932|2 +455602|35001532102|2 +746147|35001532139|2 +477363|35001532141|2 +513878|35001532277|2 +650168|35001532296|2 +675185|35001532304|2 +697301|35001532305|2 +680787|35001532322|2 +495192|35001532460|2 +632891|35001532470|2 +731100|35001532488|2 +1022287|35001532498|2 +851103|35001532533|2 +595520|35001532582|2 +612063|35001532691|2 +558046|35001532716|2 +529322|35001532727|2 +546631|35001532746|2 +734788|35001532851|2 +868667|35001532877|2 +528091|35001532886|2 +594501|35001532903|2 +671117|35001532907|2 +570871|35001533115|2 +765150|35001533116|2 +800149|35001533117|2 +530223|35001533272|2 +469492|35001533284|2 +690430|35001533294|2 +831562|35001533322|4 +482576|35001533365|2 +781330|35001533377|2 +809957|35001533528|2 +802540|35001533875|2 +489094|35001533910|4 +554784|35001533911|2 +651400|35001533912|2 +769510|35001533918|2 +888515|35001533920|2 +1000004|35001533923|2 +555110|35001533924|2 +636862|35001533925|2 +705702|35001533926|2 +706283|35001533927|2 +836823|35001533928|4 +832138|35001533940|4 +831945|35001533942|4 +853799|35001533945|2 +566091|35001533950|2 +457804|35001533952|2 +849695|35001533959|2 +827033|35001533969|4 +682140|35001533970|2 +831647|35001533971|4 +767386|35001533972|2 +783479|35001533973|2 +705007|35001533974|2 +514136|35001533976|2 +583305|35001534032|2 +541779|35001534574|2 +728160|35001534591|2 +801223|35001534597|2 +902302|35001534598|2 +902303|35001534599|2 +467912|35001534738|2 +473291|35001534740|2 +501866|35001534741|2 +603372|35001534742|2 +694033|35001534745|2 +894989|35001534764|2 +458528|35001534766|2 +860037|35001534778|2 +901912|35001534782|2 +731157|35001534796|2 +476459|35001534808|2 +476450|35001534809|2 +782598|35001534816|2 +462674|35001534833|2 +520271|35001534841|2 +532863|35001534855|2 +547643|35001534857|2 +551590|35001534858|2 +587633|35001534859|2 +730992|35001534861|2 +587684|35001534868|2 +467855|35001534888|2 +700146|35001534889|2 +771448|35001534923|2 +651135|35001534925|2 +762346|35001534927|2 +491122|35001534931|2 +791347|35001534939|2 +514374|35001534960|2 +496331|35001534965|2 +612930|35001534972|2 +771112|35001534977|4 +605267|35001534980|2 +614799|35001534981|2 +648997|35001534984|2 +648996|35001534985|2 +895479|35001535003|2 +694422|35001535030|2 +468419|35001535036|2 +843771|35001535048|2 +758141|35001535059|2 +852412|35001535062|2 +680331|35001535071|2 +736851|35001535081|2 +773180|35001535096|2 +452031|35001535102|2 +648123|35001535104|2 +855655|35001535106|2 +591313|35001535134|2 +596976|35001535151|2 +747209|35001535155|2 +683781|35001535157|2 +567418|35001535159|2 +732375|35001535170|2 +884550|35001535174|2 +775253|35001535183|2 +881014|35001535186|2 +600423|35001535189|2 +689678|35001535191|4 +831409|35001535216|4 +484914|35001535223|2 +737930|35001535234|2 +549980|35001535239|2 +832734|35001535269|4 +777194|35001535275|2 +631466|35001535279|2 +639521|35001535282|2 +565159|35001535285|2 +696070|35001535288|2 +636366|35001535291|2 +581620|35001535296|2 +848136|35001535305|2 +672645|35001535312|2 +863750|35001535318|2 +548716|35001535536|4 +843377|35001535599|2 +537608|35001535608|2 +761398|35001535615|2 +761403|35001535621|2 +742015|35001535638|2 +545702|35001535643|2 +540551|35001535649|2 +714898|35001535689|2 +768236|35001535692|2 +581087|35001535741|2 +525169|35001535795|2 +488686|35001535816|2 +529366|35001535822|2 +454756|35001535852|4 +514390|35001535860|2 +611442|35001535898|4 +896571|35001535934|2 +896572|35001535935|2 +853641|35001536003|2 +691031|35001536016|2 +629377|35001536047|2 +829677|35001536126|4 +674661|35001536270|2 +772602|35001536275|2 +805373|35001536281|2 +852408|35001536282|2 +746608|35001536467|2 +594665|35001536471|2 +667354|35001536476|2 +900700|35001536478|2 +490030|35001536493|2 +558408|35001536517|2 +848140|35001536518|2 +611653|35001536521|2 +496817|35001536556|2 +547208|35001536562|4 +586215|35001536564|2 +690645|35001536567|2 +653307|35001536591|2 +603564|35001536604|2 +546641|35001536607|2 +486609|35001536610|2 +728147|35001536616|2 +575833|35001536631|2 +746674|35001536644|2 +670950|35001536648|2 +837989|35001536675|4 +838136|35001536680|4 +579527|35001536707|2 +808706|35001536717|2 +741039|35001536729|2 +634431|35001536767|2 +486456|35001536775|2 +692836|35001536843|2 +562916|35001536854|2 +597250|35001536878|2 +790446|35001536901|2 +707030|35001536904|2 +492212|35001536918|2 +678547|35001536920|2 +707064|35001536923|2 +703117|35001536925|2 +764629|35001536928|2 +900842|35001536956|2 +544507|35001536959|2 +893242|35001536960|2 +550224|35001536963|2 +559492|35001536965|2 +631458|35001536968|2 +534014|35001536969|2 +529778|35001536971|2 +656778|35001536972|2 +682349|35001536974|2 +836051|35001536976|4 +807201|35001536977|2 +651315|35001536978|2 +501737|35001536979|2 +809275|35001536981|2 +637231|35001536982|2 +867854|35001536984|2 +603374|35001537006|2 +635792|35001537013|2 +600628|35001537025|2 +458529|35001537028|2 +657778|35001537045|2 +1012728|35001537051|2 +880080|35001537052|2 +793798|35001537074|2 +607287|35001537087|4 +782594|35001537113|2 +569762|35001537167|2 +831771|35001537266|4 +485112|35001537270|2 +485113|35001537274|2 +845347|35001537346|2 +728253|35001537380|2 +475152|35001537384|2 +616211|35001537398|2 +512245|35001537412|2 +792527|35001537416|2 +896645|35001537418|2 +793737|35001537423|2 +841511|35001537424|2 +679178|35001537429|2 +666963|35001537430|2 +846822|35001537435|2 +555565|35001537437|2 +641333|35001537942|2 +589835|35001538117|2 +531132|35001538163|2 +854308|35001538164|2 +780563|35001538166|2 +758118|35001538167|2 +651766|35001538369|2 +843256|35001538381|2 +744308|35001538386|2 +835759|35001538389|4 +861302|35001538420|2 +544026|35001538429|2 +514335|35001538468|2 +514339|35001538508|2 +700291|35001538519|2 +802475|35001538525|2 +596988|35001538553|2 +708849|35001538556|2 +500739|35001538558|2 +606656|35001538591|2 +862647|35001538595|2 +880195|35001538596|2 +1191731|35001538606|2 +505651|35001538611|2 +605704|35001538625|2 +1047324|35001538628|2 +726279|35001538629|2 +685726|35001538648|2 +652330|35001538651|2 +489930|35001538655|2 +562076|35001538658|2 +713887|35001538671|2 +513652|35001538672|2 +578196|35001538675|2 +614144|35001538677|2 +653455|35001538678|2 +805726|35001538681|2 +1039572|35001538703|2 +479373|35001538719|2 +830776|35001538800|4 +744778|35001538826|2 +826844|35001538829|4 +832839|35001538840|4 +530469|35001538854|2 +849947|35001538860|2 +878277|35001538866|2 +593767|35001538882|2 +728166|35001538883|2 +550078|35001538906|2 +603948|35001538959|2 +800777|35001538960|2 +848422|35001538961|2 +890460|35001538962|2 +508048|35001538967|2 +529196|35001538968|2 +862341|35001538970|2 +467170|35001538971|2 +876402|35001538973|2 +567066|35001538976|2 +567878|35001538977|2 +490031|35001538979|2 +753218|35001539010|2 +614530|35001539062|2 +803311|35001539068|2 +894825|35001539106|2 +1091091|35001539123|2 +492680|35001539179|2 +699582|35001539188|2 +680616|35001539211|2 +529061|35001539271|2 +849151|35001539287|2 +529030|35001539288|2 +624693|35001539300|4 +705010|35001539324|2 +549535|35001539327|2 +469126|35001539356|2 +516970|35001539363|2 +647511|35001539367|2 +643876|35001539401|2 +673521|35001539405|2 +499992|35001539415|2 +750938|35001539427|2 +570872|35001539438|2 +691610|35001539447|2 +507267|35001539455|4 +712899|35001539457|2 +861366|35001539474|2 +657588|35001539492|2 +633768|35001539507|2 +663183|35001539579|2 +479648|35001540038|2 +580364|35001540039|2 +782166|35001540040|2 +638291|35001540042|2 +740577|35001540044|2 +645631|35001540046|2 +648927|35001540050|2 +1025874|35001540052|2 +876232|35001540053|2 +510282|35001540057|2 +562559|35001540061|2 +468487|35001540062|2 +844140|35001540192|2 +898383|35001540197|2 +800881|35001540209|2 +666344|35001540269|2 +718339|35001540307|2 +844095|35001540309|2 +618200|35001540318|2 +673647|35001540320|2 +528078|35001540324|2 +471888|35001540342|2 +609694|35001540343|2 +651145|35001540356|2 +751870|35001540357|2 +758633|35001540371|2 +856134|35001540402|2 +743617|35001540404|2 +803379|35001540407|2 +517553|35001540410|2 +451328|35001540426|4 +451335|35001540428|4 +782926|35001540508|2 +799865|35001540511|2 +873418|35001540517|2 +878969|35001540518|2 +795751|35001540533|2 +1258182|35001540594|2 +475867|35001540600|2 +778594|35001540673|2 +550011|35001540676|2 +799364|35001540681|2 +894877|35001540685|2 +802997|35001540693|2 +458575|35001540698|2 +854600|35001540701|2 +458331|35001540702|2 +646829|35001540703|2 +494523|35001540983|2 +791860|35001541131|2 +808988|35001541139|2 +493377|35001541290|2 +875070|35001541300|2 +544188|35001541502|2 +612365|35001541653|4 +461257|35001541687|2 +840773|35001541745|2 +490089|35001541789|2 +759867|35001541800|2 +521273|35001541824|2 +719543|35001542232|4 +525694|35001542233|2 +667385|35001542490|2 +827039|35001542491|4 +871285|35001542499|2 +457518|35001542515|2 +894536|35001542545|2 +858625|35001542608|2 +761780|35001542870|2 +692155|35001542875|2 +819538|35001542882|2 +842249|35001542883|2 +611571|35001542892|2 +701182|35001542894|2 +799262|35001542906|2 +868059|35001542910|2 +856355|35001542912|2 +721939|35001542921|2 +666971|35001542927|2 +722443|35001542932|2 +545193|35001542933|2 +740565|35001542945|2 +639038|35001542948|2 +711001|35001542950|2 +887551|35001542954|2 +712606|35001542957|2 +888254|35001542975|2 +563380|35001542990|2 +805765|35001542996|2 +774181|35001542998|2 +807890|35001543000|2 +468647|35001543003|2 +663843|35001543009|2 +504838|35001543012|2 +632303|35001543014|2 +474395|35001543017|2 +694757|35001543020|2 +723811|35001543021|2 +723812|35001543022|2 +527158|35001543026|2 +528924|35001543027|2 +655980|35001543053|2 +740055|35001543054|2 +615116|35001543056|2 +532347|35001543058|2 +601060|35001543061|2 +800396|35001543062|2 +582674|35001543071|2 +486375|35001543077|2 +717653|35001543081|2 +614942|35001543089|2 +467261|35001543100|2 +539597|35001543103|2 +451713|35001543105|2 +792075|35001543172|2 +836974|35001543176|4 +586462|35001543207|2 +826948|35001543245|4 +521226|35001543253|2 +770785|35001543257|2 +457367|35001543567|2 +780119|35001543985|2 +860582|35001544014|2 +579259|35001544092|2 +630363|35001544153|2 +699220|35001544253|2 +531852|35001544268|2 +597865|35001544276|2 +593753|35001544305|2 +520718|35001544334|2 +496668|35001544383|2 +735492|35001544405|2 +766876|35001544414|2 +633655|35001544465|2 +650139|35001544467|2 +605703|35001544515|2 +658665|35001544525|2 +636494|35001544526|2 +522198|35001544536|2 +645113|35001544541|2 +514844|35001544563|2 +661398|35001544564|2 +1198651|35001544579|2 +843137|35001544580|2 +501759|35001544584|2 +504796|35001544955|2 +575256|35001544965|2 +617980|35001545048|2 +820775|35001545057|2 +660383|35001545085|2 +662372|35001545134|2 +585034|35001545236|2 +611071|35001545289|2 +580100|35001545291|2 +721636|35001545312|2 +798971|35001545335|2 +769353|35001545341|2 +803441|35001545345|2 +601089|35001545354|2 +789611|35001545391|2 +805320|35001545393|2 +727398|35001545396|2 +658439|35001545532|2 +526446|35001545533|2 +901712|35001545564|2 +577648|35001545587|2 +618448|35001545610|2 +833224|35001545620|4 +521070|35001545659|2 +894612|35001545663|2 +511760|35001545695|2 +809021|35001545701|2 +502750|35001545724|2 +734006|35001545727|2 +694031|35001545736|2 +711371|35001545743|2 +493639|35001545850|2 +554032|35001545868|2 +876191|35001545871|2 +836882|35001545879|4 +639283|35001545883|2 +735977|35001545884|2 +596198|35001545885|2 +728015|35001545899|2 +784850|35001545902|2 +761695|35001545913|2 +801560|35001545915|4 +899129|35001545917|2 +478663|35001545923|2 +451290|35001545945|4 +604904|35001545950|2 +767420|35001545952|2 +882216|35001545955|2 +497651|35001545965|2 +479200|35001545967|2 +685933|35001545969|2 +901711|35001545976|2 +889793|35001545977|2 +896126|35001545978|2 +509871|35001545979|2 +507277|35001545980|2 +879438|35001545981|2 +766568|35001545982|2 +585761|35001545983|2 +848930|35001545988|2 +689508|35001545990|2 +640205|35001546400|2 +631726|35001547051|2 +590840|35001547404|2 +730034|35001547501|2 +511345|35001547502|2 +891787|35001547508|2 +676999|35001547511|4 +506103|35001547548|2 +566411|35001547554|2 +867855|35001547562|2 +620042|35001547622|2 +550117|35001547627|2 +783335|35001547628|2 +501701|35001547631|2 +629766|35001547639|2 +488473|35001547642|2 +701082|35001547656|2 +707152|35001547657|2 +788834|35001547669|2 +693698|35001547670|2 +593401|35001547694|2 +488393|35001547697|2 +470037|35001547706|2 +566034|35001547711|2 +709402|35001547712|2 +769740|35001547714|2 +754580|35001547716|2 +543936|35001547744|2 +464899|35001547873|2 +635320|35001547877|4 +531476|35001547903|2 +688828|35001547904|2 +463360|35001547906|2 +725141|35001547914|2 +698100|35001547919|2 +500418|35001547920|2 +831395|35001547923|4 +737187|35001547925|4 +622365|35001547949|2 +460144|35001547951|2 +548402|35001547952|2 +609927|35001547953|2 +850004|35001547955|2 +673710|35001547960|2 +833154|35001547963|4 +775757|35001547966|2 +612523|35001547971|2 +611388|35001547972|2 +624863|35001547973|2 +795633|35001547975|2 +759574|35001547978|2 +715307|35001548318|2 +592961|35001548419|2 +658433|35001548459|2 +782673|35001548563|4 +735978|35001548618|2 +697360|35001548748|2 +532621|35001548756|2 +705008|35001548961|2 +761300|35001548973|2 +516757|35001548977|2 +751637|35001549231|2 +681113|35001549347|2 +648991|35001549402|2 +499177|35001549421|2 +499176|35001549424|2 +489916|35001549435|2 +505729|35001549456|2 +573797|35001549519|2 +742728|35001549587|2 +1012823|35001549592|2 +865128|35001549613|2 +474732|35001549616|2 +456778|35001549619|2 +747952|35001549692|2 +554839|35001549777|2 +1155227|35001549794|2 +495879|35001549800|2 +600050|35001549822|2 +867858|35001549831|2 +451457|35001549852|2 +739704|35001549923|2 +529617|35001549937|2 +848471|35001549938|2 +746994|35001549953|2 +658080|35001549959|2 +750683|35001549974|2 +674624|35001549977|2 +500815|35001549994|2 +631058|35001549997|2 +631065|35001550000|2 +849964|35001550001|2 +466369|35001550018|2 +497010|35001550026|2 +789638|35001550031|2 +776107|35001550041|2 +729506|35001550044|2 +881716|35001550053|2 +637229|35001550064|2 +625176|35001550065|2 +707719|35001550079|2 +743072|35001550084|2 +865153|35001550115|2 +468798|35001550148|2 +505944|35001550153|2 +785424|35001550157|2 +880286|35001550158|2 +595319|35001550159|2 +531336|35001550160|2 +471894|35001550161|2 +723753|35001550299|2 +890020|35001551088|2 +515964|35001551153|2 +711094|35001551161|2 +458268|35001551162|2 +749562|35001551511|2 +682799|35001552131|2 +476730|35001552432|2 +865390|35001552437|2 +771335|35001552442|2 +930646|35001552464|2 +463177|35001552468|2 +694737|35001552482|2 +534706|35001552485|2 +465310|35001552571|2 +454576|35001552581|2 +868954|35001552597|2 +737488|35001552599|2 +488359|35001552612|2 +666483|35001552624|2 +697457|35001552630|2 +701813|35001553105|2 +570268|35001554015|2 +839119|35001554020|4 +694581|35001554040|2 +801865|35001554057|2 +551536|35001554071|2 +773160|35001554076|2 +486981|35001554078|2 +881071|35001554092|2 +678064|35001554094|2 +896476|35001554130|2 +484986|35001554136|2 +490824|35001554137|2 +672835|35001554152|2 +704190|35001554155|2 +504105|35001554161|2 +896582|35001554162|2 +619883|35001554164|2 +653515|35001554165|2 +613498|35001554167|2 +737956|35001554177|2 +534235|35001554186|2 +633941|35001554195|2 +688089|35001554197|2 +750610|35001554208|2 +748643|35001554223|2 +886313|35001554228|2 +610520|35001554229|2 +794736|35001554239|2 +594514|35001554246|2 +892175|35001554259|2 +634461|35001554265|2 +754994|35001554276|2 +677051|35001554295|2 +470988|35001554302|2 +689892|35001554316|2 +1022105|35001554322|2 +535027|35001554331|2 +728610|35001554332|2 +734005|35001554337|2 +886281|35001554342|2 +502639|35001554346|2 +775261|35001554367|2 +578458|35001554370|2 +1172529|35001554381|2 +649377|35001554382|2 +787978|35001554386|2 +615786|35001554399|2 +632231|35001554450|2 +456617|35001554455|2 +842419|35001554458|2 +759569|35001554463|2 +515847|35001554471|2 +899431|35001554475|2 +711572|35001554483|2 +781668|35001554496|2 +760943|35001554507|2 +744199|35001554525|2 +721743|35001554528|2 +677214|35001554537|2 +768119|35001554542|2 +881794|35001554552|2 +887257|35001554556|2 +576490|35001554573|2 +722536|35001554574|2 +615909|35001554577|2 +722524|35001554578|2 +893034|35001554588|2 +838501|35001554608|4 +883832|35001554615|4 +1150329|35001554617|2 +608659|35001554633|2 +468532|35001554642|2 +463527|35001554647|2 +677282|35001554648|2 +593442|35001554656|2 +502725|35001554660|2 +469575|35001554665|2 +654433|35001554682|2 +518014|35001554683|2 +826777|35001554686|4 +772376|35001554695|2 +534736|35001554696|2 +689792|35001554718|2 +871246|35001554721|2 +777834|35001554724|2 +549597|35001554785|2 +585099|35001554841|2 +452572|35001554843|2 +599280|35001554849|2 +663610|35001554856|2 +541329|35001554876|2 +780659|35001554884|2 +688509|35001554885|2 +892142|35001554906|2 +753953|35001555087|2 +806130|35001555091|2 +692156|35001555148|2 +456827|35001555157|2 +628940|35001555222|2 +495466|35001555269|2 +677343|35001555323|2 +709382|35001555361|2 +607121|35001555376|2 +716886|35001555380|2 +570077|35001555395|2 +865777|35001555398|2 +469234|35001555429|2 +483031|35001555433|2 +557925|35001555434|2 +548521|35001555437|2 +494078|35001555441|2 +477987|35001555450|2 +483944|35001555457|2 +468005|35001555517|2 +688028|35001555520|2 +562541|35001555567|2 +617907|35001555572|2 +703317|35001555577|2 +683459|35001555603|2 +807199|35001555609|2 +893149|35001555620|2 +526896|35001555645|2 +796138|35001555654|2 +712826|35001555657|2 +509966|35001555670|2 +570248|35001555671|2 +677347|35001555678|2 +644512|35001555694|2 +469233|35001555711|2 +891686|35001555732|2 +483025|35001555739|2 +484967|35001555740|2 +794512|35001555743|4 +1204555|35001555748|2 +487644|35001555791|2 +477990|35001555808|2 +609291|35001555818|2 +612982|35001555820|2 +715965|35001555823|2 +902134|35001555843|2 +456107|35001555882|2 +760927|35001555885|2 +565240|35001555896|2 +550955|35001555898|2 +545627|35001555904|2 +714743|35001555905|2 +744731|35001555906|2 +753006|35001555912|2 +807761|35001555916|2 +518258|35001555946|2 +637433|35001555950|2 +647890|35001555977|2 +730945|35001555983|2 +741738|35001555984|2 +484654|35001556033|2 +538479|35001556049|2 +602634|35001556060|2 +719679|35001556061|2 +865002|35001556063|2 +892858|35001556066|2 +897852|35001556068|2 +650608|35001556125|2 +726021|35001556129|2 +772455|35001556169|2 +678254|35001556174|2 +752647|35001556176|2 +503282|35001556180|2 +700909|35001556187|2 +682737|35001556188|2 +724525|35001556190|2 +764288|35001556192|2 +770965|35001556193|2 +887938|35001556194|2 +467302|35001556227|2 +588065|35001556232|2 +808605|35001556257|2 +899417|35001556260|2 +718912|35001556282|2 +462687|35001556314|2 +465065|35001556317|2 +481033|35001556318|2 +493668|35001556321|2 +547574|35001556324|2 +539364|35001556326|4 +582339|35001556327|2 +622468|35001556329|2 +622924|35001556335|2 +629297|35001556338|2 +678411|35001556339|2 +690915|35001556341|2 +707598|35001556342|2 +803712|35001556348|2 +791183|35001556349|2 +844083|35001556350|2 +742729|35001556380|2 +479279|35001556418|2 +491589|35001556444|2 +521901|35001556450|2 +571575|35001556454|2 +531565|35001556469|2 +854306|35001556472|2 +577808|35001556476|2 +720453|35001556496|2 +689927|35001556502|2 +648359|35001556503|2 +842049|35001556504|2 +773795|35001556511|2 +729462|35001556529|2 +767383|35001556530|2 +574287|35001556533|2 +577427|35001556535|2 +509961|35001556536|2 +653358|35001556539|2 +699746|35001556547|2 +663659|35001556549|2 +454349|35001556561|2 +518138|35001556562|2 +600402|35001556564|2 +636973|35001556581|2 +541835|35001556582|4 +479966|35001556590|2 +796488|35001556595|2 +458429|35001556692|2 +900805|35001556695|2 +650609|35001556700|2 +769378|35001556702|2 +830080|35001556704|4 +499678|35001556715|2 +634557|35001556733|2 +770938|35001556742|2 +628375|35001556748|2 +480852|35001556758|2 +566586|35001556760|2 +758162|35001556780|2 +522491|35001556781|2 +545865|35001556782|2 +534725|35001556797|2 +671078|35001556805|2 +765317|35001556813|2 +764279|35001556842|2 +565171|35001556866|2 +799194|35001556873|2 +505725|35001556886|2 +524613|35001556887|2 +791202|35001556889|2 +616022|35001556895|2 +797424|35001556897|2 +563833|35001556899|2 +900930|35001556903|2 +1150330|35001556905|2 +847677|35001556911|2 +472519|35001556912|2 +851557|35001556923|2 +510211|35001556933|2 +665939|35001556934|2 +532293|35001556945|2 +526681|35001556951|2 +551058|35001556952|2 +771667|35001556960|2 +829721|35001556961|4 +497326|35001556975|2 +753392|35001556977|2 +753422|35001556978|2 +836905|35001556980|6 +523392|35001556986|2 +700586|35001556994|2 +769442|35001557044|2 +555550|35001557051|2 +468177|35001557055|2 +484311|35001557477|2 +655633|35001557479|2 +757839|35001557481|2 +572944|35001557483|2 +703458|35001557495|2 +731198|35001557497|2 +837967|35001557498|4 +787881|35001557646|2 +455427|35001557652|2 +684321|35001557654|2 +484698|35001557951|2 +667492|35001557953|2 +723549|35001557955|2 +525843|35001558098|2 +763403|35001558100|2 +475936|35001558226|2 +537477|35001558228|2 +551232|35001558229|2 +569695|35001558230|2 +719150|35001558232|2 +719176|35001558234|2 +735539|35001558236|2 +795203|35001558237|2 +809120|35001558238|2 +735540|35001558248|2 +644550|35001558330|2 +472426|35001558390|2 +717873|35001558599|2 +489194|35001558608|2 +778690|35001558616|2 +641574|35001558796|2 +616650|35001558804|2 +780250|35001558806|2 +772343|35001558816|2 +718668|35001558912|2 +683688|35001558978|2 +802409|35001558984|2 +863222|35001559269|2 +455354|35001560071|2 +483485|35001560078|2 +507437|35001560080|2 +508739|35001560084|2 +517127|35001560087|2 +517126|35001560088|2 +531155|35001560091|2 +531157|35001560093|2 +531156|35001560094|2 +547815|35001560098|2 +636204|35001560114|2 +694677|35001560121|2 +747398|35001560128|2 +832106|35001560132|4 +798698|35001560137|2 +833205|35001560139|4 +851671|35001560140|2 +883090|35001560141|2 +882677|35001560142|2 +853934|35001560151|2 +580994|35001560206|2 +852549|35001560209|2 +833765|35001560223|4 +667943|35001560236|2 +541836|35001560239|4 +532489|35001560249|2 +652569|35001560250|2 +887118|35001560254|2 +598135|35001560265|2 +619542|35001560267|2 +522567|35001560269|2 +1164655|35001560278|2 +1164656|35001560280|2 +542145|35001560284|2 +660770|35001560300|2 +573339|35001560322|2 +608658|35001560323|2 +735593|35001560329|2 +627090|35001560345|2 +638088|35001560346|2 +880293|35001560358|2 +643671|35001560412|2 +474433|35001560413|2 +730339|35001560473|2 +455720|35001560488|2 +857092|35001560503|2 +635606|35001560625|4 +826400|35001560630|4 +629928|35001560635|2 +769758|35001560636|2 +593420|35001560647|2 +487944|35001560808|2 +694946|35001562063|2 +845997|35001562065|2 +543214|35001562071|2 +888620|35001562075|2 +623955|35001562079|2 +724947|35001562083|2 +806241|35001562084|2 +573272|35001562096|2 +644190|35001562099|2 +640607|35001562108|2 +736289|35001562109|2 +615935|35001562110|2 +617182|35001562153|2 +858105|35001562155|2 +490708|35001562171|2 +494901|35001562173|2 +501026|35001562174|2 +492477|35001562259|2 +685298|35001562263|2 +774257|35001562269|2 +856566|35001562272|2 +1165916|35001562278|2 +489884|35001562281|2 +489903|35001562283|2 +716453|35001562300|2 +731369|35001562304|2 +738075|35001562305|2 +613001|35001562326|2 +859387|35001562334|2 +827553|35001562344|4 +795703|35001562360|2 +970498|35001562389|2 +613237|35001562412|4 +568563|35001562418|2 +679355|35001562422|2 +705071|35001562425|2 +720957|35001562484|2 +777882|35001562487|2 +806921|35001562490|2 +826967|35001562491|4 +787795|35001562502|2 +847615|35001562503|2 +579654|35001562522|2 +500212|35001562538|2 +520408|35001562540|2 +700033|35001562547|2 +745371|35001562556|2 +787777|35001562557|2 +465936|35001562566|2 +467751|35001562567|2 +502383|35001562568|2 +679358|35001562571|2 +850527|35001562573|2 +928933|35001562574|2 +484739|35001562582|2 +502534|35001562583|2 +647470|35001562596|2 +647479|35001562597|2 +525798|35001562618|2 +705745|35001562619|2 +535589|35001562625|2 +618449|35001562626|2 +618450|35001562627|2 +980481|35001562667|2 +657463|35001562682|2 +729129|35001562702|2 +547539|35001562706|2 +836645|35001562707|4 +858254|35001562708|2 +884972|35001562710|2 +468537|35001562738|2 +558666|35001562743|2 +670826|35001562744|2 +680738|35001562746|2 +619488|35001562749|4 +644826|35001562751|2 +839224|35001562752|4 +854288|35001562753|2 +625190|35001562754|4 +682559|35001562761|2 +639145|35001562762|2 +630248|35001562764|2 +471065|35001562771|2 +839667|35001562773|4 +515701|35001562775|2 +534705|35001562798|2 +843139|35001562799|2 +711783|35001562801|2 +752671|35001562815|2 +888616|35001562817|2 +645632|35001562824|2 +647472|35001562830|2 +538824|35001562847|2 +567818|35001562849|2 +831582|35001562853|4 +658699|35001562864|2 +512750|35001562888|2 +590387|35001562890|2 +670144|35001562896|2 +791476|35001562897|2 +699815|35001563755|2 +706137|35001563789|2 +740885|35001563811|2 +539643|35001563822|2 +851670|35001563846|2 +845348|35001563847|2 +668759|35001563858|2 +561620|35001563860|2 +466786|35001563865|4 +471066|35001563866|2 +787167|35001563868|2 +893098|35001563873|2 +491538|35001563874|2 +673805|35001563876|2 +636048|35001563889|2 +871272|35001563893|2 +640011|35001563894|2 +522502|35001563897|2 +598550|35001563939|2 +764009|35001563941|2 +644539|35001564145|2 +673913|35001564151|2 +853098|35001564152|2 +859984|35001564153|2 +673583|35001564222|2 +517123|35001564263|2 +681017|35001564264|2 +847075|35001564265|2 +479387|35001564376|2 +668617|35001564377|2 +877819|35001564459|2 +858915|35001564461|2 +483200|35001564637|2 +495937|35001564707|2 +517166|35001564708|2 +570873|35001564710|2 +517161|35001564711|2 +782570|35001564714|2 +554183|35001564763|2 +652797|35001564773|2 +609815|35001564787|2 +558161|35001564846|2 +627414|35001564854|2 +701499|35001564857|2 +719395|35001564858|2 +629813|35001564859|2 +743395|35001564860|2 +563099|35001564861|2 +460195|35001564869|2 +454334|35001564943|2 +702918|35001564945|2 +758220|35001564965|2 +866577|35001565024|2 +503295|35001565028|2 +561245|35001565054|2 +617590|35001565057|2 +617621|35001565058|2 +680158|35001565115|2 +680156|35001565116|2 +697724|35001565119|2 +793988|35001565122|2 +849481|35001565123|2 +515526|35001565132|2 +624104|35001565133|2 +590616|35001565135|2 +599306|35001565241|2 +809757|35001565243|2 +621497|35001565355|2 +646803|35001565356|2 +549800|35001565362|2 +888304|35001565363|2 +890559|35001565364|2 +605432|35001565439|2 +711591|35001565440|2 +760946|35001565442|2 +632827|35001565585|2 +676125|35001565586|2 +484685|35001565587|2 +572018|35001565696|2 +499200|35001565705|2 +541837|35001565706|4 +734518|35001565707|2 +794963|35001565709|2 +797075|35001565731|2 +683012|35001565812|2 +896783|35001565813|2 +715334|35001565952|2 +894297|35001565957|2 +897477|35001565958|2 +636049|35001566034|2 +529219|35001566087|2 +771786|35001566170|4 +739438|35001566238|2 +628116|35001566240|2 +721485|35001566245|2 +888230|35001566246|2 +887538|35001566258|2 +537080|35001566296|2 +669105|35001566300|2 +889940|35001566301|2 +1166128|35001566310|2 +790712|35001566314|2 +517125|35001566396|2 +867116|35001566399|2 +893148|35001566401|2 +800150|35001566443|2 +529186|35001566468|2 +573282|35001566644|2 +573288|35001566645|2 +573273|35001566646|2 +528872|35001566648|2 +612176|35001566651|2 +601944|35001566652|2 +588140|35001566663|2 +612177|35001566779|2 +719942|35001566780|2 +809111|35001566782|2 +465109|35001566859|2 +544202|35001566860|2 +741923|35001566871|2 +525618|35001566874|2 +547813|35001567011|2 +752060|35001567012|2 +591553|35001567393|2 +794336|35001567398|2 +522667|35001567416|2 +611152|35001567417|2 +489349|35001567435|2 +612989|35001567436|2 +664194|35001567437|2 +783403|35001567439|2 +797092|35001567440|2 +487012|35001567443|2 +620027|35001567444|2 +626215|35001567445|4 +684659|35001567446|2 +514838|35001567452|2 +612263|35001567461|2 +720467|35001567474|2 +568835|35001567476|2 +672769|35001567477|2 +684660|35001567481|2 +566092|35001567498|2 +734156|35001567499|2 +841203|35001567502|2 +520575|35001567516|2 +503412|35001567517|2 +496325|35001567518|2 +773385|35001567622|2 +756163|35001567623|2 +656211|35001567625|2 +551879|35001567627|2 +457279|35001567629|2 +876923|35001567665|2 +711302|35001567687|2 +683473|35001567688|2 +584656|35001567689|2 +884667|35001567751|2 +865280|35001567753|2 +862002|35001567754|2 +618256|35001567757|2 +587404|35001567758|2 +495882|35001567759|2 +483264|35001567760|2 +647365|35001567797|2 +1208289|35001567798|2 +632232|35001567803|2 +611994|35001567804|2 +517097|35001567805|2 +780957|35001567889|2 +560209|35001567906|2 +874974|35001567942|2 +523242|35001568160|2 +825451|35001568163|4 +687889|35001568188|2 +699703|35001568189|2 +774654|35001568190|2 +851482|35001568191|2 +482415|35001568199|2 +798626|35001568258|2 +716512|35001568259|2 +676141|35001568260|2 +663503|35001568261|2 +663641|35001568262|2 +566363|35001568263|2 +827104|35001568431|4 +785774|35001568433|2 +649380|35001568435|2 +606535|35001568436|2 +582861|35001568437|2 +580650|35001568438|2 +730077|35001568548|2 +639209|35001568552|2 +616575|35001568652|2 +859526|35001568717|2 +857198|35001568718|2 +833959|35001568720|6 +828354|35001568721|4 +649518|35001568726|2 +458311|35001568730|2 +799724|35001568806|2 +662343|35001568810|2 +596027|35001568976|2 +677495|35001568988|2 +873154|35001569034|2 +702296|35001569133|2 +874247|35001569223|2 +547612|35001569228|2 +547613|35001569229|2 +1165816|35001569330|2 +831572|35001569334|4 +558258|35001569335|2 +469998|35001569336|2 +462021|35001569337|2 +806191|35001569422|2 +511848|35001569424|2 +481300|35001569425|2 +861705|35001569547|2 +721385|35001569548|2 +686948|35001569551|2 +544594|35001569552|2 +759566|35001569674|2 +702253|35001569693|2 +548911|35001569696|2 +888231|35001569794|2 +848947|35001569797|2 +894852|35001569886|2 +599007|35001569887|2 +527793|35001569889|2 +693391|35001569980|2 +645564|35001569983|2 +570262|35001569984|2 +569064|35001569986|2 +646936|35001570066|2 +520449|35001570067|2 +472459|35001570068|2 +843432|35001570069|2 +549880|35001570071|2 +675976|35001570243|2 +627927|35001570244|2 +696564|35001570402|2 +858741|35001570405|2 +828597|35001570407|4 +696562|35001570409|2 +897576|35001570571|2 +858949|35001570572|2 +602688|35001570577|2 +570572|35001570578|2 +617699|35001570679|2 +507276|35001570688|2 +1083518|35001570802|2 +697378|35001570806|2 +697379|35001570807|2 +626828|35001570810|2 +504727|35001570812|2 +534959|35001570833|2 +760464|35001570900|2 +739452|35001570902|2 +726028|35001570903|2 +467541|35001570941|4 +865281|35001570944|2 +825501|35001570945|4 +630027|35001570946|2 +526767|35001570948|2 +453686|35001571075|2 +891545|35001571093|2 +850989|35001571096|2 +827048|35001571099|4 +728756|35001571101|2 +696679|35001571110|2 +619925|35001571111|2 +509223|35001571112|2 +467001|35001571113|2 +508231|35001571117|2 +503499|35001571192|2 +708467|35001571212|2 +761243|35001571437|2 +887053|35001571452|2 +616425|35001571467|2 +673452|35001571570|2 +478936|35001571576|4 +884801|35001571584|2 +879711|35001571585|2 +838727|35001571587|4 +801814|35001571589|2 +801895|35001571590|2 +556515|35001571591|2 +709678|35001571703|2 +774943|35001571864|2 +694547|35001571865|4 +677787|35001571868|2 +531151|35001571885|2 +743313|35001571994|2 +698470|35001572002|2 +532471|35001572010|2 +480401|35001572012|2 +834219|35001572090|4 +718932|35001572098|2 +844418|35001572142|2 +506942|35001572145|2 +518353|35001572257|2 +675937|35001572258|2 +794487|35001572262|2 +893759|35001572263|2 +773179|35001572288|2 +593373|35001572289|2 +707039|35001572380|2 +722451|35001572381|2 +584180|35001572456|2 +747555|35001572459|2 +509566|35001572462|2 +453440|35001572463|2 +783264|35001572470|2 +752190|35001572472|2 +757925|35001572495|2 +833587|35001572506|4 +809880|35001572527|2 +613480|35001572590|2 +718200|35001572594|2 +836875|35001572596|6 +833223|35001572739|4 +864439|35001572741|2 +557390|35001572748|2 +526328|35001572749|2 +454972|35001572750|2 +626233|35001572831|4 +576000|35001572840|2 +861707|35001572862|2 +546514|35001572885|2 +546515|35001572886|2 +624210|35001572899|2 +788994|35001573014|2 +669337|35001573113|2 +793547|35001573115|2 +855653|35001573118|2 +893610|35001573120|2 +492760|35001573126|2 +785036|35001573215|2 +859049|35001573216|2 +1241425|35001573224|2 +541533|35001573227|2 +662975|35001573255|2 +662973|35001573256|2 +733264|35001573259|2 +741523|35001573260|2 +832695|35001573261|4 +895336|35001573262|2 +533774|35001573310|2 +595719|35001573374|2 +726341|35001573375|2 +521948|35001573381|2 +479324|35001573514|2 +582502|35001573516|2 +623681|35001573517|2 +871357|35001573520|2 +871359|35001573521|2 +528886|35001573524|2 +720223|35001573528|2 +689130|35001573532|2 +880386|35001573535|2 +468482|35001573573|2 +620871|35001573576|2 +827142|35001573580|4 +774739|35001573650|2 +521822|35001573673|2 +776588|35001573742|2 +776587|35001573743|2 +844446|35001573746|2 +762650|35001573858|2 +780825|35001573859|2 +752427|35001573914|4 +666484|35001574122|2 +734817|35001574177|2 +778024|35001574178|2 +858763|35001574179|2 +776868|35001574285|2 +502059|35001574288|2 +483768|35001574289|2 +477196|35001574333|2 +709807|35001574341|2 +786363|35001574348|2 +534043|35001574370|2 +792874|35001574380|2 +976450|35001574383|2 +781401|35001574392|2 +522368|35001574453|2 +793906|35001574776|2 +845584|35001574778|2 +511261|35001574820|2 +792813|35001574825|2 +1120874|35001574846|2 +860530|35001574963|2 +594433|35001574972|2 +651348|35001574973|2 +685662|35001574978|2 +620062|35001575064|2 +487849|35001575065|2 +793719|35001575137|2 +831663|35001575140|4 +851017|35001575141|2 +474497|35001575154|2 +868416|35001575155|2 +621031|35001575225|2 +666652|35001575226|2 +854309|35001575227|2 +457264|35001575228|2 +465005|35001575235|2 +555699|35001575236|2 +643219|35001575275|2 +753335|35001575276|2 +781682|35001575277|2 +796203|35001575278|2 +796204|35001575279|2 +475438|35001575286|2 +780050|35001575376|2 +844848|35001575380|2 +628906|35001575455|2 +791835|35001575456|2 +855351|35001575457|2 +884568|35001575458|2 +558801|35001575462|2 +791659|35001575554|2 +701500|35001575560|2 +506111|35001575698|2 +522102|35001575718|2 +726901|35001575727|2 +570126|35001575802|2 +605874|35001575815|2 +621550|35001575816|2 +496777|35001575837|2 +671866|35001575871|2 +540756|35001576010|2 +617895|35001576017|2 +672699|35001576020|2 +712099|35001576024|2 +483262|35001576031|2 +458233|35001576033|2 +478349|35001576034|2 +1033620|35001576045|2 +860194|35001576197|2 +860202|35001576198|2 +842909|35001576199|2 +758799|35001576200|2 +722035|35001576201|2 +683932|35001576202|2 +829872|35001576292|4 +776910|35001576293|2 +735420|35001576294|2 +543057|35001576295|2 +711987|35001576366|2 +539544|35001576368|4 +553201|35001576379|2 +686506|35001576380|2 +673499|35001576381|2 +696309|35001576384|2 +662508|35001576506|2 +490772|35001576508|2 +506828|35001576509|2 +499993|35001576512|2 +990820|35001576643|2 +885240|35001576652|2 +851365|35001576870|2 +521258|35001576877|2 +550836|35001576922|2 +646422|35001576957|2 +622602|35001576963|2 +563462|35001576964|2 +709896|35001576966|2 +514870|35001576983|2 +540503|35001576993|2 +648124|35001577039|2 +684628|35001577112|2 +843441|35001577116|2 +851140|35001577118|2 +545229|35001577260|2 +670688|35001577298|2 +832276|35001577327|4 +637434|35001577336|2 +558118|35001577408|2 +767816|35001577419|2 +530793|35001577420|2 +853376|35001577436|2 +838853|35001577490|4 +453849|35001577507|2 +672998|35001577611|2 +451423|36000018142|2 +451418|36000018143|2 +451595|36000018149|2 +451613|36000018150|2 +451612|36000018151|2 +451683|36000018152|2 +451749|36000018153|2 +451725|36000018154|2 +451768|36000018158|2 +452260|36000018162|2 +452265|36000018165|2 +452261|36000018166|2 +803998|36000018169|2 +452781|36000018173|2 +452784|36000018175|2 +452778|36000018176|2 +452780|36000018178|2 +453143|36000018179|2 +453890|36000018182|2 +454166|36000018187|2 +454151|36000018188|2 +454126|36000018189|2 +454219|36000018194|2 +454300|36000018198|2 +454957|36000018199|2 +454521|36000018201|2 +454378|36000018202|2 +454640|36000018205|2 +454427|36000018206|2 +454451|36000018207|2 +454478|36000018208|2 +454641|36000018209|2 +454842|36000018211|2 +454958|36000018214|2 +454344|36000018215|2 +454505|36000018216|2 +454522|36000018218|2 +705790|36000018219|2 +455472|36000018220|2 +455718|36000018225|2 +455717|36000018227|2 +456060|36000018231|2 +457132|36000018236|2 +457179|36000018238|2 +457155|36000018240|2 +457133|36000018241|2 +457180|36000018242|2 +457139|36000018244|2 +457161|36000018246|2 +457181|36000018247|2 +457182|36000018248|2 +457146|36000018249|2 +457197|36000018250|2 +457178|36000018252|2 +457500|36000018254|2 +457529|36000018255|2 +457487|36000018257|2 +457519|36000018259|2 +457479|36000018260|2 +457459|36000018261|2 +457460|36000018266|2 +457534|36000018268|2 +457525|36000018270|2 +457649|36000018271|2 +669716|36000018273|2 +457987|36000018275|2 +458670|36000018278|2 +458669|36000018283|2 +458661|36000018284|2 +458663|36000018285|2 +458958|36000018286|2 +458960|36000018287|2 +458961|36000018290|2 +458959|36000018291|2 +459085|36000018294|2 +690283|36000018295|2 +459143|36000018296|2 +459678|36000018298|2 +459671|36000018300|2 +690928|36000018301|2 +459679|36000018302|2 +459670|36000018303|2 +459765|36000018304|2 +459823|36000018305|2 +459822|36000018306|2 +460119|36000018316|2 +460121|36000018318|2 +460111|36000018319|2 +460117|36000018321|2 +460116|36000018322|2 +460114|36000018323|2 +460148|36000018327|2 +460529|36000018329|2 +460631|36000018330|2 +460630|36000018331|2 +460627|36000018332|2 +460636|36000018333|4 +460632|36000018336|2 +460817|36000018340|2 +460826|36000018342|2 +460824|36000018343|2 +460821|36000018346|2 +460818|36000018347|2 +460868|36000018351|2 +460858|36000018356|2 +460859|36000018357|2 +460884|36000018362|2 +460840|36000018363|2 +460848|36000018364|2 +460860|36000018365|2 +460869|36000018366|2 +460861|36000018368|2 +460849|36000018373|2 +460870|36000018374|2 +460833|36000018375|2 +460850|36000018376|2 +460842|36000018377|2 +460843|36000018378|2 +460862|36000018380|2 +460878|36000018384|2 +460841|36000018385|2 +460885|36000018387|2 +460834|36000018390|2 +460891|36000018392|2 +460851|36000018393|2 +460864|36000018394|2 +460890|36000018397|2 +460893|36000018399|2 +461012|36000018404|2 +461013|36000018408|2 +461009|36000018409|2 +461010|36000018410|2 +461016|36000018413|2 +461018|36000018414|2 +461669|36000018420|2 +461741|36000018423|2 +461744|36000018424|2 +461742|36000018425|2 +462567|36000018426|2 +462345|36000018433|2 +462752|36000018434|2 +462602|36000018435|2 +461986|36000018436|4 +462749|36000018437|2 +462170|36000018438|2 +462242|36000018441|2 +461879|36000018442|2 +462561|36000018444|2 +462539|36000018446|2 +462105|36000018448|2 +462401|36000018449|2 +462463|36000018454|2 +462362|36000018456|2 +462568|36000018461|2 +462540|36000018463|2 +542487|36000018464|2 +461992|36000018465|2 +462182|36000018466|2 +462402|36000018467|2 +462608|36000018471|2 +462997|36000018473|2 +462998|36000018474|2 +463000|36000018476|2 +463780|36000018481|2 +463985|36000018482|2 +464108|36000018485|2 +464627|36000018486|2 +587883|36000018488|2 +465014|36000018489|2 +465120|36000018490|2 +465124|36000018493|2 +465125|36000018496|2 +465122|36000018498|2 +465123|36000018499|2 +465244|36000018506|2 +465243|36000018507|2 +465959|36000018509|2 +466597|36000018510|2 +465935|36000018511|2 +465960|36000018512|2 +466618|36000018513|2 +466638|36000018514|2 +467703|36000018515|2 +467827|36000018519|2 +467828|36000018520|2 +468044|36000018521|2 +468249|36000018528|2 +468667|36000018531|2 +469020|36000018532|2 +469074|36000018535|2 +469114|36000018536|2 +469063|36000018537|2 +469230|36000018538|2 +469970|36000018540|2 +469407|36000018543|2 +469348|36000018546|2 +470013|36000018548|2 +907871|36000018549|2 +470014|36000018550|2 +469706|36000018553|2 +470572|36000018554|2 +469707|36000018556|2 +470084|36000018557|2 +470085|36000018558|2 +470534|36000018561|4 +470015|36000018564|2 +469592|36000018575|2 +472238|36000018580|2 +472668|36000018591|2 +473147|36000018595|2 +473443|36000018597|2 +473462|36000018598|2 +473466|36000018599|2 +473733|36000018601|2 +474261|36000018606|2 +474366|36000018610|2 +474548|36000018618|2 +474552|36000018619|2 +474555|36000018620|2 +474540|36000018621|2 +474547|36000018624|2 +474541|36000018627|2 +474539|36000018628|2 +474551|36000018629|2 +474543|36000018634|2 +474549|36000018635|2 +474758|36000018639|2 +474723|36000018640|2 +474973|36000018643|2 +474978|36000018644|2 +475105|36000018645|2 +475275|36000018647|2 +475719|36000018650|2 +476871|36000018658|2 +476903|36000018661|2 +478264|36000018669|2 +478534|36000018670|2 +478419|36000018672|2 +478556|36000018673|2 +478420|36000018676|2 +478440|36000018680|2 +478421|36000018682|2 +478606|36000018684|2 +478617|36000018685|2 +478871|36000018686|2 +478937|36000018687|4 +478941|36000018689|2 +478802|36000018692|2 +478803|36000018693|2 +478872|36000018694|2 +479014|36000018695|2 +478773|36000018697|2 +478716|36000018698|2 +478804|36000018699|2 +478874|36000018701|2 +479013|36000018702|2 +478873|36000018703|2 +478774|36000018704|2 +478717|36000018705|2 +768949|36000018706|2 +479753|36000018716|2 +479934|36000018718|2 +479673|36000018719|2 +479840|36000018721|2 +479998|36000018723|4 +480209|36000018724|2 +480210|36000018726|2 +480359|36000018731|2 +480360|36000018732|2 +480923|36000018735|2 +481532|36000018740|2 +481737|36000018744|2 +481943|36000018745|2 +481972|36000018746|2 +482616|36000018748|2 +482816|36000018749|2 +482841|36000018750|2 +482905|36000018752|2 +482915|36000018753|2 +482907|36000018755|2 +482910|36000018756|2 +482912|36000018760|2 +482911|36000018761|2 +483398|36000018764|2 +483361|36000018767|2 +483495|36000018770|2 +608561|36000018772|2 +483387|36000018774|2 +483518|36000018776|2 +483517|36000018777|2 +483515|36000018778|2 +483513|36000018779|2 +483771|36000018781|2 +483782|36000018782|2 +483968|36000018784|2 +483969|36000018785|2 +484299|36000018793|2 +484836|36000018801|2 +484949|36000018802|2 +485178|36000018803|2 +485332|36000018804|2 +485335|36000018807|2 +485339|36000018812|2 +485327|36000018815|2 +485330|36000018816|2 +485340|36000018818|2 +485326|36000018819|2 +485331|36000018821|2 +485329|36000018824|2 +485351|36000018825|2 +485604|36000018831|2 +485605|36000018832|2 +485710|36000018833|2 +485623|36000018834|2 +485697|36000018835|2 +485691|36000018837|2 +485650|36000018839|2 +485870|36000018841|2 +859527|36000018843|2 +486577|36000018846|2 +486578|36000018847|2 +487871|36000018853|2 +487630|36000018854|2 +487767|36000018855|2 +487732|36000018859|2 +487784|36000018861|2 +488084|36000018863|2 +487733|36000018867|2 +488357|36000018877|2 +488957|36000018883|2 +728578|36000018885|2 +489137|36000018886|2 +489150|36000018888|2 +488738|36000018892|2 +488899|36000018893|2 +489329|36000018896|2 +489330|36000018897|2 +489335|36000018900|2 +489534|36000018901|2 +489633|36000018903|2 +489723|36000018904|2 +489766|36000018906|2 +489767|36000018907|2 +489765|36000018908|2 +489768|36000018910|2 +489815|36000018911|2 +489898|36000018913|2 +490041|36000018915|2 +490044|36000018919|2 +490872|36000018934|2 +491123|36000018935|2 +491803|36000018938|2 +491825|36000018939|2 +491845|36000018940|2 +491813|36000018941|2 +491949|36000018943|2 +492110|36000018945|2 +491973|36000018946|2 +492038|36000018948|2 +491950|36000018949|2 +491974|36000018952|2 +492039|36000018953|2 +492111|36000018954|2 +492040|36000018955|2 +492153|36000018956|2 +491982|36000018958|2 +492154|36000018959|2 +492103|36000018962|2 +491927|36000018963|2 +491993|36000018964|2 +491928|36000018965|2 +492097|36000018966|2 +491975|36000018968|2 +492278|36000018969|2 +492901|36000018975|2 +492899|36000018976|2 +493105|36000018979|2 +493477|36000018980|2 +493483|36000018981|2 +493504|36000018986|2 +493618|36000018987|2 +493528|36000018988|2 +493650|36000018989|2 +493501|36000018991|2 +493529|36000018992|2 +493689|36000018995|2 +494001|36000018998|2 +493989|36000019000|2 +494204|36000019008|2 +494207|36000019009|2 +494247|36000019011|2 +494450|36000019013|2 +494485|36000019014|2 +494422|36000019015|2 +494444|36000019016|2 +494451|36000019018|2 +494477|36000019019|2 +494765|36000019021|2 +495037|36000019024|2 +495373|36000019029|2 +495653|36000019032|2 +495654|36000019033|2 +495801|36000019035|2 +496978|36000019041|2 +496979|36000019042|2 +496968|36000019043|2 +497033|36000019044|2 +497025|36000019045|2 +497149|36000019046|2 +497071|36000019049|2 +497315|36000019052|2 +497356|36000019054|2 +497318|36000019056|2 +497504|36000019060|2 +497616|36000019061|2 +497633|36000019063|2 +498432|36000019075|2 +498425|36000019076|2 +498485|36000019079|2 +498914|36000019082|2 +499223|36000019083|2 +499224|36000019084|2 +499225|36000019085|2 +841512|36000019086|2 +499605|36000019091|2 +499608|36000019092|2 +499609|36000019094|2 +500073|36000019096|2 +506975|36000019098|2 +500126|36000019100|2 +500121|36000019101|2 +500237|36000019104|2 +487896|36000019105|2 +500293|36000019109|2 +500302|36000019110|2 +500304|36000019111|2 +500303|36000019113|2 +500429|36000019118|2 +500488|36000019121|2 +500629|36000019125|2 +500620|36000019128|2 +500667|36000019129|2 +500624|36000019130|2 +500888|36000019132|2 +500836|36000019133|2 +500894|36000019134|2 +500889|36000019135|2 +500919|36000019136|2 +500985|36000019137|2 +494926|36000019140|2 +501289|36000019141|2 +501286|36000019142|2 +501301|36000019143|2 +501369|36000019144|2 +501609|36000019147|2 +501491|36000019148|2 +501669|36000019151|2 +501847|36000019152|2 +501848|36000019153|2 +501849|36000019154|2 +501827|36000019155|2 +502494|36000019160|2 +561218|36000019162|2 +502451|36000019163|2 +858678|36000019165|2 +502583|36000019166|2 +502650|36000019167|2 +502702|36000019168|2 +502690|36000019169|2 +502619|36000019170|2 +502675|36000019171|2 +502584|36000019172|2 +502614|36000019174|2 +502703|36000019177|2 +502610|36000019178|2 +502620|36000019180|2 +502810|36000019181|2 +502843|36000019182|2 +502901|36000019190|2 +503072|36000019194|2 +503490|36000019197|2 +503491|36000019198|2 +503498|36000019201|2 +503573|36000019202|2 +503585|36000019203|2 +503607|36000019205|2 +503664|36000019206|2 +504088|36000019208|2 +504091|36000019209|2 +504002|36000019210|2 +504580|36000019215|2 +504738|36000019217|2 +504898|36000019218|2 +504765|36000019219|2 +504861|36000019220|2 +505066|36000019224|2 +505087|36000019225|2 +505091|36000019226|2 +617592|36000019230|2 +505396|36000019231|2 +505400|36000019232|2 +505403|36000019234|2 +505401|36000019235|2 +505402|36000019236|2 +505394|36000019237|2 +505489|36000019239|2 +506024|36000019240|2 +506118|36000019241|2 +506207|36000019243|2 +506198|36000019244|2 +506391|36000019245|2 +506306|36000019247|2 +506750|36000019249|2 +506996|36000019250|2 +506976|36000019251|2 +507167|36000019253|2 +507222|36000019255|2 +507693|36000019262|2 +507768|36000019263|2 +507769|36000019265|2 +508033|36000019267|2 +508254|36000019270|2 +508714|36000019274|2 +508711|36000019275|2 +508715|36000019277|2 +509129|36000019280|2 +509134|36000019281|2 +509338|36000019282|2 +509367|36000019284|2 +509535|36000019287|2 +509937|36000019292|2 +509933|36000019293|2 +509932|36000019294|2 +510685|36000019298|2 +510686|36000019299|2 +510856|36000019302|2 +510937|36000019303|2 +511330|36000019305|2 +511264|36000019306|2 +511893|36000019310|2 +511885|36000019311|2 +512529|36000019318|2 +512553|36000019319|2 +523248|36000019320|2 +512724|36000019321|2 +512820|36000019322|2 +512808|36000019325|2 +512851|36000019326|2 +513385|36000019338|2 +513386|36000019339|2 +513648|36000019343|2 +514803|36000019353|2 +514887|36000019356|2 +514891|36000019357|2 +514901|36000019358|2 +514983|36000019359|2 +515038|36000019362|2 +515084|36000019364|2 +515053|36000019365|2 +515124|36000019366|2 +515129|36000019367|2 +515232|36000019369|2 +515290|36000019371|2 +515411|36000019372|2 +515407|36000019375|2 +515412|36000019377|2 +515483|36000019378|2 +515856|36000019382|2 +515895|36000019384|2 +515878|36000019385|2 +515919|36000019388|2 +516708|36000019394|2 +516718|36000019395|2 +516669|36000019396|2 +517080|36000019398|2 +517206|36000019400|2 +517238|36000019401|2 +517207|36000019402|2 +517768|36000019404|2 +518030|36000019407|2 +518114|36000019409|2 +518246|36000019412|2 +518336|36000019414|2 +518278|36000019415|2 +518199|36000019416|2 +518163|36000019419|2 +518452|36000019423|2 +518624|36000019428|2 +518627|36000019429|2 +518796|36000019430|2 +518956|36000019434|2 +519152|36000019440|2 +519149|36000019441|2 +519197|36000019443|2 +519382|36000019445|2 +519383|36000019446|2 +519371|36000019447|2 +519397|36000019448|2 +519389|36000019450|2 +519373|36000019451|2 +519370|36000019453|2 +519377|36000019454|2 +519367|36000019456|2 +519384|36000019460|2 +519372|36000019461|2 +519390|36000019462|2 +519391|36000019463|2 +519369|36000019464|2 +519398|36000019466|2 +519528|36000019467|2 +519529|36000019468|2 +519804|36000019469|2 +519809|36000019470|2 +519820|36000019472|2 +519888|36000019476|2 +519974|36000019478|2 +520546|36000019484|2 +520545|36000019485|2 +520548|36000019486|2 +520614|36000019487|2 +520615|36000019488|2 +520616|36000019489|2 +691876|36000019493|2 +520937|36000019495|2 +520925|36000019497|2 +521187|36000019501|2 +521189|36000019502|2 +521208|36000019504|2 +521489|36000019507|2 +521422|36000019508|2 +521627|36000019509|2 +521799|36000019511|2 +521800|36000019512|2 +521906|36000019513|2 +521970|36000019514|2 +522156|36000019517|4 +522397|36000019519|2 +522385|36000019520|2 +522398|36000019521|2 +522399|36000019522|2 +522456|36000019525|2 +522468|36000019526|2 +522565|36000019528|2 +522562|36000019529|2 +523003|36000019530|2 +523131|36000019535|2 +523247|36000019536|2 +523357|36000019537|2 +523358|36000019538|2 +523453|36000019542|2 +523454|36000019546|2 +523473|36000019548|2 +523489|36000019549|2 +524013|36000019555|2 +524615|36000019556|2 +524666|36000019558|2 +524895|36000019560|2 +525162|36000019562|2 +525653|36000019568|2 +525379|36000019569|2 +525944|36000019571|2 +526376|36000019572|2 +526567|36000019574|2 +526451|36000019575|2 +526452|36000019576|2 +676006|36000019577|2 +526936|36000019578|2 +526989|36000019579|2 +527307|36000019585|2 +527337|36000019586|2 +527508|36000019589|2 +527506|36000019591|2 +527505|36000019592|2 +527504|36000019594|2 +527512|36000019595|2 +527618|36000019596|2 +527619|36000019597|2 +528313|36000019598|2 +528243|36000019599|2 +528862|36000019604|2 +528866|36000019605|2 +528867|36000019606|2 +529029|36000019607|2 +528938|36000019608|2 +529056|36000019609|2 +529060|36000019611|2 +529221|36000019615|2 +529234|36000019616|2 +529292|36000019618|2 +529335|36000019620|2 +529336|36000019621|2 +529440|36000019623|2 +529455|36000019625|2 +529788|36000019626|2 +787637|36000019629|2 +530097|36000019634|2 +530219|36000019635|2 +530413|36000019636|2 +530410|36000019637|2 +530774|36000019640|2 +531005|36000019641|2 +531042|36000019646|2 +530946|36000019647|2 +531004|36000019651|2 +530809|36000019652|2 +531152|36000019653|2 +531133|36000019654|2 +531284|36000019658|2 +531979|36000019663|2 +531985|36000019664|2 +531988|36000019666|2 +531976|36000019668|2 +531983|36000019670|2 +531982|36000019671|2 +531981|36000019674|2 +532426|36000019679|2 +532427|36000019680|2 +532428|36000019681|2 +532587|36000019684|2 +532585|36000019685|2 +532618|36000019687|2 +532919|36000019688|2 +532910|36000019689|2 +533075|36000019690|2 +533087|36000019692|2 +857137|36000019695|2 +533094|36000019696|2 +533332|36000019701|2 +533359|36000019705|2 +533473|36000019706|2 +533392|36000019707|2 +533967|36000019708|2 +534228|36000019709|2 +534365|36000019711|2 +533959|36000019712|2 +533968|36000019713|2 +534309|36000019714|4 +534073|36000019715|2 +534028|36000019716|2 +534097|36000019724|2 +534074|36000019725|2 +534075|36000019727|2 +534407|36000019730|2 +534497|36000019731|2 +534507|36000019732|2 +534574|36000019734|2 +710298|36000019739|2 +534563|36000019742|2 +534671|36000019743|2 +534744|36000019744|2 +535000|36000019746|2 +535001|36000019747|2 +535144|36000019751|2 +535151|36000019755|2 +535146|36000019756|2 +535166|36000019757|2 +535269|36000019758|2 +535437|36000019761|2 +535866|36000019762|2 +536019|36000019771|2 +536178|36000019773|2 +536176|36000019774|2 +536264|36000019776|2 +536239|36000019777|2 +536344|36000019780|2 +536395|36000019781|2 +536519|36000019783|2 +536914|36000019786|2 +537032|36000019788|2 +537035|36000019789|2 +537026|36000019790|2 +537033|36000019791|2 +537160|36000019792|2 +537154|36000019793|2 +537169|36000019794|2 +537164|36000019795|2 +537161|36000019796|2 +537158|36000019797|2 +537167|36000019800|2 +537155|36000019801|2 +537168|36000019802|2 +537152|36000019803|2 +537157|36000019804|2 +537506|36000019811|4 +537545|36000019812|2 +537640|36000019813|2 +537641|36000019814|2 +537734|36000019817|2 +537739|36000019818|2 +537762|36000019819|2 +537752|36000019820|2 +537746|36000019822|2 +537937|36000019825|2 +538094|36000019828|2 +538477|36000019831|2 +538481|36000019832|2 +538441|36000019833|2 +538563|36000019837|2 +538648|36000019839|2 +538632|36000019840|2 +538706|36000019842|2 +538890|36000019844|2 +538858|36000019845|2 +539117|36000019850|2 +539118|36000019851|2 +541412|36000019852|2 +541405|36000019853|2 +540042|36000019858|2 +540566|36000019859|2 +539658|36000019865|2 +540043|36000019866|2 +541350|36000019869|4 +540567|36000019870|2 +541941|36000019874|2 +541758|36000019876|2 +540326|36000019877|2 +539620|36000019878|2 +541130|36000019892|2 +540525|36000019893|2 +540737|36000019895|2 +542097|36000019896|2 +541406|36000019898|2 +539219|36000019900|2 +539385|36000019902|4 +539270|36000019908|2 +539220|36000019909|2 +541529|36000019910|2 +539826|36000019911|2 +539221|36000019915|2 +539513|36000019923|2 +540838|36000019924|2 +540568|36000019926|2 +541411|36000019927|2 +540738|36000019928|2 +523107|36000019931|2 +480039|36000019934|2 +542488|36000019943|2 +542489|36000019944|2 +542492|36000019945|2 +542759|36000019948|2 +542956|36000019952|2 +543025|36000019954|2 +543032|36000019955|2 +542889|36000019956|2 +541942|36000019957|2 +542920|36000019960|2 +542957|36000019962|2 +543222|36000019969|2 +543424|36000019971|2 +543407|36000019972|2 +543349|36000019973|2 +543247|36000019975|2 +543248|36000019976|2 +543374|36000019977|2 +543376|36000019979|2 +543281|36000019980|2 +543375|36000019982|2 +543334|36000019985|2 +543358|36000019987|2 +543249|36000019988|2 +543420|36000019989|2 +543551|36000019991|2 +543569|36000019992|2 +543570|36000019993|2 +543574|36000019994|2 +543577|36000019995|2 +543679|36000019997|2 +543663|36000020000|2 +543716|36000020001|2 +543856|36000020003|2 +543975|36000020005|2 +543974|36000020006|2 +544125|36000020009|2 +544126|36000020010|2 +544182|36000020011|2 +544183|36000020012|2 +544697|36000020015|2 +544737|36000020016|2 +544724|36000020019|2 +544750|36000020021|2 +544698|36000020022|2 +544679|36000020028|2 +499313|36000020030|2 +544913|36000020034|2 +545102|36000020037|2 +545278|36000020039|2 +545414|36000020041|2 +545670|36000020048|2 +545687|36000020049|2 +545688|36000020050|2 +545941|36000020053|2 +545939|36000020054|2 +546278|36000020055|2 +546276|36000020056|2 +546295|36000020058|2 +546293|36000020059|2 +546476|36000020063|2 +546592|36000020069|2 +546749|36000020072|2 +546903|36000020073|2 +546786|36000020075|2 +546871|36000020076|2 +546817|36000020077|2 +546863|36000020081|2 +546843|36000020083|2 +546835|36000020084|2 +546862|36000020085|2 +546831|36000020088|2 +546844|36000020089|2 +546898|36000020090|2 +547195|36000020096|2 +547147|36000020097|2 +547154|36000020098|2 +547148|36000020099|2 +547061|36000020100|2 +547591|36000020101|2 +547661|36000020105|2 +547707|36000020108|2 +548072|36000020109|2 +548073|36000020110|2 +547674|36000020111|2 +548123|36000020116|2 +548124|36000020117|2 +548144|36000020119|2 +548141|36000020120|2 +548137|36000020121|2 +829052|36000020122|4 +548142|36000020123|2 +548281|36000020125|2 +548287|36000020126|2 +548285|36000020127|2 +548294|36000020128|2 +548655|36000020130|2 +549029|36000020131|2 +548900|36000020132|2 +548562|36000020134|2 +549050|36000020135|2 +548782|36000020136|2 +549041|36000020138|2 +548570|36000020139|2 +549042|36000020140|2 +548522|36000020141|2 +548914|36000020142|2 +549060|36000020145|2 +549097|36000020146|2 +549098|36000020147|2 +549167|36000020150|2 +549227|36000020152|2 +549307|36000020153|2 +549289|36000020154|2 +549477|36000020158|2 +549498|36000020159|2 +549517|36000020160|2 +549480|36000020161|2 +549577|36000020162|2 +549540|36000020164|2 +549598|36000020165|2 +549706|36000020172|2 +549866|36000020174|2 +550332|36000020183|2 +550603|36000020184|2 +561238|36000020185|2 +550353|36000020186|2 +550604|36000020190|2 +728466|36000020191|2 +551269|36000020193|2 +551302|36000020195|2 +551512|36000020200|2 +551654|36000020204|2 +551968|36000020205|2 +551967|36000020206|2 +551974|36000020207|2 +551980|36000020208|2 +551981|36000020210|2 +552920|36000020215|2 +553974|36000020218|2 +554324|36000020219|2 +554530|36000020221|2 +554581|36000020222|2 +554545|36000020223|2 +554628|36000020224|2 +554625|36000020225|2 +554633|36000020226|2 +554614|36000020227|2 +554629|36000020228|2 +554612|36000020229|2 +555105|36000020233|2 +555246|36000020237|2 +555483|36000020240|2 +556105|36000020246|2 +556452|36000020247|2 +556548|36000020248|2 +556549|36000020249|2 +556597|36000020250|2 +556607|36000020251|2 +556752|36000020253|2 +556776|36000020254|2 +556741|36000020255|2 +556794|36000020256|2 +556753|36000020257|2 +556961|36000020260|2 +556959|36000020261|2 +556986|36000020262|2 +558422|36000020268|2 +558486|36000020270|2 +558487|36000020271|2 +559287|36000020273|4 +559142|36000020279|2 +559002|36000020288|2 +558875|36000020290|2 +559444|36000020295|2 +559583|36000020296|2 +596004|36000020300|2 +560727|36000020303|2 +560751|36000020304|2 +560762|36000020307|2 +560963|36000020310|2 +560962|36000020311|2 +561054|36000020315|2 +561092|36000020317|2 +561136|36000020319|2 +561186|36000020322|2 +561285|36000020323|2 +929339|36000020324|2 +561247|36000020327|2 +561249|36000020328|2 +561261|36000020330|2 +561237|36000020334|2 +585859|36000020335|4 +561256|36000020339|2 +561265|36000020340|2 +561242|36000020341|2 +561250|36000020343|2 +561251|36000020344|2 +561248|36000020345|2 +561297|36000020349|2 +561229|36000020352|2 +561287|36000020353|2 +561283|36000020355|2 +561264|36000020356|2 +561257|36000020357|2 +561226|36000020358|2 +561266|36000020361|2 +561227|36000020364|2 +561407|36000020365|2 +561688|36000020368|2 +561744|36000020370|2 +561769|36000020371|2 +561772|36000020372|2 +561742|36000020373|2 +561754|36000020375|2 +561761|36000020376|2 +561745|36000020377|2 +561758|36000020378|2 +561750|36000020379|2 +561762|36000020380|2 +561755|36000020381|2 +561764|36000020382|2 +718290|36000020383|2 +561765|36000020384|2 +561747|36000020386|2 +561756|36000020387|2 +561768|36000020388|2 +561959|36000020391|2 +562129|36000020392|2 +562124|36000020393|2 +562269|36000020394|2 +562272|36000020396|2 +562267|36000020397|2 +562281|36000020401|2 +562275|36000020403|2 +562277|36000020405|2 +562710|36000020407|2 +562705|36000020408|2 +562942|36000020414|2 +562935|36000020416|2 +563079|36000020417|2 +563400|36000020419|2 +563398|36000020420|2 +563677|36000020423|2 +563571|36000020424|2 +563613|36000020425|2 +563991|36000020429|2 +564382|36000020431|2 +564379|36000020433|2 +564366|36000020434|2 +564539|36000020437|2 +542923|36000020439|2 +564927|36000020440|2 +565039|36000020441|2 +565040|36000020442|2 +565311|36000020443|2 +565312|36000020444|2 +565266|36000020445|2 +565267|36000020448|2 +565313|36000020449|2 +565724|36000020453|2 +565721|36000020454|2 +566337|36000020457|4 +566062|36000020458|2 +566178|36000020460|2 +566769|36000020465|2 +566820|36000020466|2 +567481|36000020469|2 +567434|36000020470|2 +567350|36000020472|2 +567435|36000020475|2 +567538|36000020476|2 +567636|36000020477|2 +567637|36000020478|2 +567751|36000020479|2 +567970|36000020480|2 +567971|36000020483|2 +568047|36000020486|2 +568048|36000020489|2 +567825|36000020492|2 +568601|36000020493|2 +568383|36000020495|2 +568449|36000020496|2 +568504|36000020498|2 +568635|36000020499|2 +568623|36000020503|2 +568636|36000020504|2 +568461|36000020505|2 +568637|36000020506|2 +569175|36000020513|2 +569033|36000020514|2 +569218|36000020515|2 +569171|36000020516|2 +569122|36000020517|2 +569325|36000020518|2 +569343|36000020519|2 +569398|36000020520|2 +569727|36000020524|2 +711184|36000020526|2 +570334|36000020528|2 +570397|36000020531|2 +570394|36000020532|2 +570999|36000020535|2 +570654|36000020539|2 +570659|36000020540|2 +781638|36000020544|2 +572187|36000020548|4 +572111|36000020549|2 +572123|36000020550|2 +572176|36000020552|2 +572124|36000020553|2 +572152|36000020555|2 +572142|36000020557|2 +572153|36000020558|2 +572665|36000020559|2 +572660|36000020565|2 +572878|36000020566|2 +572997|36000020568|2 +573324|36000020573|2 +573331|36000020575|2 +500091|36000020576|2 +573326|36000020577|2 +573573|36000020586|2 +573496|36000020589|2 +573621|36000020594|2 +573660|36000020595|2 +573665|36000020597|2 +573671|36000020598|2 +573672|36000020599|2 +573663|36000020600|2 +573668|36000020605|2 +573678|36000020608|2 +573677|36000020609|2 +573728|36000020611|2 +573730|36000020612|2 +573709|36000020613|2 +573822|36000020614|2 +574107|36000020621|2 +574108|36000020623|2 +574103|36000020625|2 +575466|36000020632|2 +575387|36000020633|2 +575544|36000020637|2 +576276|36000020642|2 +576427|36000020645|2 +576428|36000020647|2 +576439|36000020648|2 +576829|36000020653|2 +576955|36000020654|2 +576956|36000020657|2 +577455|36000020659|2 +577459|36000020660|2 +577456|36000020661|2 +577562|36000020665|2 +577569|36000020667|2 +577575|36000020669|2 +577589|36000020673|2 +577583|36000020674|2 +577590|36000020675|2 +577587|36000020676|2 +577571|36000020677|2 +577572|36000020678|2 +577573|36000020679|2 +577584|36000020682|2 +577577|36000020683|2 +577557|36000020684|2 +577555|36000020685|2 +577592|36000020686|2 +577560|36000020688|2 +577585|36000020690|2 +773596|36000020692|2 +577594|36000020693|2 +577586|36000020695|2 +577591|36000020699|2 +577815|36000020700|2 +578165|36000020704|2 +578164|36000020705|2 +578272|36000020708|2 +579570|36000020716|2 +579585|36000020717|2 +579592|36000020718|2 +580226|36000020720|2 +580230|36000020721|2 +580236|36000020722|2 +580299|36000020724|2 +580349|36000020725|2 +580556|36000020726|2 +580535|36000020730|2 +580590|36000020732|2 +580694|36000020733|2 +580707|36000020737|2 +580674|36000020739|2 +580611|36000020742|2 +580675|36000020746|2 +580580|36000020748|2 +580679|36000020749|2 +580695|36000020750|2 +580591|36000020755|2 +580640|36000020756|2 +580641|36000020757|2 +580823|36000020760|2 +580738|36000020762|2 +580860|36000020763|2 +580820|36000020764|2 +580861|36000020765|2 +580939|36000020766|2 +580936|36000020767|2 +580824|36000020768|2 +580862|36000020770|2 +580866|36000020771|2 +580859|36000020773|2 +580863|36000020774|2 +580821|36000020776|2 +580900|36000020778|2 +581739|36000020786|4 +581536|36000020787|2 +581516|36000020791|2 +581514|36000020793|2 +581703|36000020794|2 +581621|36000020796|2 +581537|36000020798|2 +581744|36000020801|2 +581599|36000020802|2 +581517|36000020803|2 +650118|36000020805|2 +581841|36000020808|2 +582452|36000020812|2 +582608|36000020815|2 +583821|36000020820|2 +584285|36000020822|2 +584462|36000020823|2 +584745|36000020826|2 +584746|36000020827|2 +584642|36000020829|2 +584671|36000020830|2 +584978|36000020831|2 +584979|36000020832|2 +584977|36000020834|2 +585007|36000020839|2 +584991|36000020840|2 +584992|36000020841|2 +584993|36000020843|2 +584984|36000020846|2 +585044|36000020850|2 +585302|36000020853|2 +585290|36000020854|2 +585824|36000020859|2 +585841|36000020861|4 +585840|36000020864|4 +585868|36000020865|4 +585869|36000020868|4 +585860|36000020870|4 +585851|36000020874|4 +585866|36000020877|4 +585855|36000020878|4 +585862|36000020882|4 +585863|36000020883|4 +734644|36000020884|2 +585864|36000020886|4 +585856|36000020888|4 +587898|36000020889|2 +585838|36000020891|4 +720922|36000020893|2 +585834|36000020894|2 +585858|36000020897|4 +585842|36000020899|4 +585861|36000020902|4 +585966|36000020905|2 +585967|36000020906|2 +586034|36000020910|2 +586032|36000020911|2 +586028|36000020912|2 +586033|36000020914|2 +586097|36000020916|2 +586285|36000020917|2 +586286|36000020920|2 +559454|36000020921|2 +586287|36000020922|2 +586288|36000020923|2 +586407|36000020924|2 +586378|36000020925|2 +586408|36000020926|2 +586339|36000020930|2 +586377|36000020931|2 +586531|36000020936|2 +586617|36000020938|2 +586616|36000020939|2 +587131|36000020943|2 +587132|36000020944|2 +587331|36000020946|2 +587270|36000020949|2 +587237|36000020950|2 +587399|36000020954|2 +587706|36000020957|2 +587723|36000020959|2 +587910|36000020967|2 +587902|36000020968|2 +587892|36000020973|2 +587911|36000020974|2 +587912|36000020975|2 +587887|36000020979|2 +587889|36000020982|2 +587964|36000020983|2 +588044|36000020986|2 +588052|36000020988|2 +588028|36000020989|2 +588239|36000020991|2 +588448|36000020994|2 +588447|36000020995|2 +588405|36000020997|2 +588426|36000020998|2 +588480|36000021000|2 +588541|36000021005|2 +588881|36000021009|2 +589239|36000021010|2 +589477|36000021012|2 +589479|36000021014|2 +589481|36000021015|2 +589475|36000021017|2 +589478|36000021018|2 +589482|36000021020|2 +589484|36000021021|2 +589519|36000021022|2 +589516|36000021023|2 +589523|36000021024|2 +589514|36000021027|2 +589515|36000021028|2 +589527|36000021030|2 +589511|36000021031|2 +589517|36000021032|2 +589526|36000021033|2 +589512|36000021034|2 +589525|36000021037|2 +589520|36000021038|2 +589524|36000021039|2 +589518|36000021040|2 +589977|36000021042|2 +589978|36000021044|2 +589979|36000021045|2 +590068|36000021047|2 +590079|36000021048|2 +590072|36000021049|2 +590929|36000021052|2 +590976|36000021053|2 +591034|36000021056|2 +591029|36000021057|2 +591032|36000021058|2 +591030|36000021059|2 +591031|36000021060|2 +591564|36000021061|2 +591288|36000021062|2 +591588|36000021065|4 +591470|36000021070|2 +592062|36000021071|2 +591339|36000021072|2 +591516|36000021073|2 +591616|36000021074|2 +591194|36000021077|2 +591704|36000021078|2 +591679|36000021079|2 +591680|36000021080|2 +591329|36000021082|2 +592063|36000021083|2 +591484|36000021084|2 +591496|36000021085|2 +591617|36000021086|2 +591971|36000021089|2 +591901|36000021090|2 +591497|36000021093|2 +592100|36000021094|2 +592287|36000021096|2 +592486|36000021100|2 +592172|36000021103|2 +592413|36000021104|2 +592511|36000021107|2 +592641|36000021110|2 +592834|36000021111|2 +592835|36000021112|2 +592919|36000021115|2 +592923|36000021116|2 +592940|36000021117|2 +593260|36000021119|2 +593250|36000021120|2 +593539|36000021122|2 +593716|36000021126|2 +593864|36000021127|2 +593846|36000021128|2 +593946|36000021131|2 +594329|36000021140|2 +594415|36000021141|2 +594431|36000021144|2 +778722|36000021145|2 +594713|36000021148|2 +594702|36000021149|2 +594703|36000021150|2 +594714|36000021151|2 +594732|36000021153|2 +594762|36000021156|2 +594902|36000021159|2 +595131|36000021162|2 +595130|36000021163|2 +595149|36000021166|2 +595157|36000021167|2 +595583|36000021168|2 +595673|36000021170|2 +595658|36000021173|2 +595678|36000021179|2 +595671|36000021182|2 +595659|36000021186|2 +595665|36000021187|2 +595686|36000021190|2 +595688|36000021191|2 +595684|36000021192|2 +596610|36000021199|2 +596613|36000021200|2 +596905|36000021204|2 +597175|36000021205|2 +597135|36000021207|2 +597394|36000021210|2 +597291|36000021211|2 +597069|36000021212|2 +597500|36000021215|2 +597498|36000021216|2 +597499|36000021217|2 +597716|36000021220|2 +598129|36000021226|2 +598422|36000021229|2 +598571|36000021233|2 +598577|36000021234|2 +598864|36000021236|2 +598910|36000021239|2 +599338|36000021240|4 +599030|36000021241|2 +598719|36000021244|2 +598865|36000021246|2 +598846|36000021247|2 +598720|36000021248|2 +599177|36000021249|2 +599311|36000021250|2 +599237|36000021252|4 +599322|36000021258|2 +599173|36000021259|2 +599238|36000021260|4 +599031|36000021261|2 +598866|36000021263|2 +599368|36000021267|2 +599370|36000021268|2 +600154|36000021273|2 +600155|36000021274|2 +600193|36000021275|2 +600188|36000021276|2 +600194|36000021277|2 +600313|36000021281|2 +600314|36000021285|2 +600593|36000021287|2 +600578|36000021289|2 +600627|36000021290|2 +600826|36000021292|2 +600813|36000021293|2 +600815|36000021295|2 +600820|36000021297|2 +600822|36000021298|2 +600814|36000021301|2 +600827|36000021302|2 +600823|36000021304|2 +600811|36000021305|2 +600816|36000021307|2 +600824|36000021308|2 +600940|36000021309|2 +600943|36000021312|2 +601019|36000021315|2 +601021|36000021316|2 +601061|36000021318|2 +601066|36000021319|2 +601750|36000021326|2 +601877|36000021328|2 +602383|36000021330|2 +602239|36000021334|4 +602690|36000021337|2 +602793|36000021338|2 +603200|36000021339|2 +603256|36000021344|2 +603384|36000021347|2 +603327|36000021348|2 +603316|36000021349|2 +603553|36000021351|2 +603688|36000021353|2 +604009|36000021356|2 +604010|36000021357|2 +603890|36000021359|2 +604011|36000021360|2 +604112|36000021361|2 +604576|36000021363|2 +605069|36000021367|2 +605260|36000021375|2 +605121|36000021376|2 +605371|36000021380|2 +605329|36000021381|2 +605413|36000021382|2 +605412|36000021383|2 +605701|36000021387|2 +605700|36000021392|2 +605661|36000021393|2 +605884|36000021394|2 +605885|36000021395|2 +605964|36000021397|2 +606154|36000021398|2 +606052|36000021399|2 +606424|36000021401|2 +606744|36000021403|2 +606839|36000021405|2 +606870|36000021407|2 +899015|36000021408|2 +606815|36000021410|2 +607025|36000021413|2 +607690|36000021418|2 +607691|36000021419|2 +608040|36000021426|2 +608043|36000021427|2 +608048|36000021429|2 +608038|36000021432|2 +608044|36000021433|2 +608045|36000021435|2 +608041|36000021438|2 +608049|36000021439|2 +608194|36000021441|2 +608321|36000021443|2 +608324|36000021444|2 +608323|36000021445|2 +608438|36000021447|2 +608431|36000021448|2 +608432|36000021449|2 +608574|36000021450|2 +608571|36000021451|2 +608544|36000021455|2 +608771|36000021462|2 +610310|36000021467|2 +610356|36000021468|2 +610345|36000021469|2 +610346|36000021470|2 +611038|36000021472|2 +611048|36000021473|2 +611075|36000021474|2 +611077|36000021475|2 +611094|36000021478|2 +611184|36000021479|2 +611185|36000021480|2 +612252|36000021482|2 +611760|36000021487|2 +612755|36000021488|2 +612996|36000021490|2 +613255|36000021494|2 +613889|36000021496|2 +614044|36000021500|2 +613890|36000021501|2 +613798|36000021502|2 +613616|36000021504|2 +613499|36000021507|2 +613546|36000021508|2 +613813|36000021509|2 +613515|36000021511|2 +614660|36000021514|2 +614661|36000021515|2 +614864|36000021517|2 +615613|36000021524|2 +615606|36000021526|2 +861034|36000021531|2 +616239|36000021532|2 +616621|36000021538|2 +616629|36000021540|2 +616667|36000021542|2 +616703|36000021543|2 +616778|36000021546|2 +616724|36000021547|2 +616725|36000021548|2 +617104|36000021554|2 +617112|36000021555|2 +617111|36000021556|2 +617092|36000021558|2 +617099|36000021564|2 +617094|36000021565|2 +617114|36000021566|2 +617115|36000021567|2 +617100|36000021570|2 +617107|36000021571|2 +617101|36000021572|2 +617109|36000021573|2 +617106|36000021575|2 +617096|36000021576|2 +617110|36000021579|2 +617150|36000021580|2 +617205|36000021581|2 +617292|36000021583|2 +617331|36000021584|2 +617293|36000021585|2 +617294|36000021586|2 +617334|36000021587|2 +617506|36000021588|2 +617584|36000021590|2 +617617|36000021592|2 +617560|36000021593|2 +617597|36000021595|2 +617571|36000021596|2 +617614|36000021598|2 +617566|36000021600|2 +497319|36000021602|2 +617612|36000021604|2 +617593|36000021605|2 +617559|36000021606|2 +617624|36000021607|2 +617553|36000021610|2 +617567|36000021611|2 +617585|36000021612|2 +617547|36000021613|2 +617811|36000021620|2 +617889|36000021621|2 +617954|36000021622|2 +618068|36000021623|2 +617955|36000021624|2 +617967|36000021625|2 +618136|36000021626|2 +618137|36000021627|2 +618184|36000021628|2 +618263|36000021629|2 +797318|36000021630|2 +618739|36000021631|2 +618760|36000021632|2 +618835|36000021633|2 +618847|36000021635|2 +618845|36000021636|2 +618838|36000021637|2 +618938|36000021639|2 +618962|36000021641|2 +618993|36000021642|2 +619359|36000021650|2 +619366|36000021651|2 +620358|36000021662|2 +512340|36000021663|2 +620345|36000021664|2 +620367|36000021666|2 +620593|36000021670|2 +620566|36000021671|2 +620621|36000021672|2 +620844|36000021674|2 +620732|36000021676|2 +620725|36000021677|2 +620733|36000021679|2 +620783|36000021681|2 +620866|36000021682|2 +620886|36000021683|2 +620924|36000021685|2 +720765|36000021687|2 +620845|36000021688|2 +620882|36000021690|2 +620909|36000021692|2 +620855|36000021693|2 +620976|36000021695|2 +621094|36000021696|2 +621098|36000021697|2 +621264|36000021702|2 +621266|36000021703|2 +621262|36000021704|2 +621275|36000021706|2 +621276|36000021707|2 +621274|36000021708|2 +622553|36000021712|2 +622619|36000021713|2 +622620|36000021714|2 +622633|36000021715|2 +622628|36000021716|2 +622629|36000021717|2 +622631|36000021718|2 +622692|36000021719|2 +622908|36000021720|2 +622916|36000021721|2 +622912|36000021722|2 +622906|36000021723|2 +622914|36000021725|2 +623237|36000021728|2 +623246|36000021729|2 +623247|36000021731|2 +623328|36000021733|2 +623538|36000021736|4 +623539|36000021744|4 +624574|36000021748|2 +515037|36000021751|2 +624833|36000021752|2 +624812|36000021753|2 +624912|36000021756|2 +625016|36000021757|2 +624957|36000021758|2 +624962|36000021759|2 +625120|36000021760|2 +625199|36000021762|2 +625462|36000021765|2 +625924|36000021769|2 +626496|36000021772|2 +627363|36000021774|2 +627530|36000021777|2 +627760|36000021778|2 +627773|36000021779|2 +627943|36000021780|2 +628856|36000021784|2 +629086|36000021785|2 +629301|36000021787|2 +629313|36000021788|2 +629314|36000021789|2 +629315|36000021791|2 +629927|36000021794|2 +629962|36000021796|2 +629982|36000021797|2 +630575|36000021808|2 +630970|36000021815|2 +631028|36000021817|2 +631025|36000021818|2 +631282|36000021820|2 +632892|36000021821|2 +633129|36000021823|2 +633283|36000021826|2 +633347|36000021827|2 +633409|36000021830|2 +633451|36000021834|2 +633458|36000021835|2 +633472|36000021836|2 +633509|36000021838|2 +633778|36000021840|2 +633904|36000021841|2 +634089|36000021842|2 +633987|36000021843|2 +633988|36000021845|2 +634856|36000021849|2 +634939|36000021851|2 +634879|36000021853|2 +635265|36000021857|2 +635112|36000021859|2 +634405|36000021865|2 +635398|36000021866|2 +635871|36000021875|2 +807909|36000021878|2 +635991|36000021879|2 +636050|36000021881|2 +636118|36000021882|2 +636157|36000021883|2 +636106|36000021886|2 +636142|36000021887|2 +636158|36000021888|2 +637324|36000021897|2 +637490|36000021900|2 +637891|36000021903|2 +637895|36000021904|2 +638109|36000021905|2 +638114|36000021906|2 +638125|36000021907|2 +638112|36000021909|2 +638113|36000021910|2 +638120|36000021912|2 +638107|36000021914|2 +638122|36000021915|2 +638223|36000021917|2 +638222|36000021918|2 +638631|36000021923|2 +638614|36000021924|2 +638625|36000021925|2 +638621|36000021926|2 +638632|36000021927|2 +638616|36000021928|2 +638626|36000021929|2 +638629|36000021930|2 +638620|36000021931|2 +638622|36000021932|2 +638617|36000021933|2 +638835|36000021936|2 +639122|36000021937|2 +639120|36000021938|2 +639127|36000021939|2 +639121|36000021940|2 +639124|36000021941|2 +639185|36000021946|2 +639504|36000021948|2 +639505|36000021950|2 +639713|36000021952|2 +639689|36000021953|2 +639942|36000021957|2 +639964|36000021959|2 +639962|36000021960|2 +640162|36000021961|2 +640288|36000021966|2 +640292|36000021967|2 +640521|36000021971|2 +640423|36000021972|2 +640619|36000021973|2 +640620|36000021974|2 +640626|36000021975|2 +640627|36000021976|2 +640631|36000021977|2 +769463|36000021978|2 +640622|36000021980|2 +640634|36000021981|2 +640628|36000021982|2 +640953|36000021989|2 +641002|36000021992|2 +642227|36000022003|2 +457137|36000022004|2 +642454|36000022009|2 +642457|36000022010|2 +642453|36000022011|2 +643719|36000022016|2 +643718|36000022017|2 +643715|36000022020|2 +643714|36000022021|2 +643796|36000022022|2 +643797|36000022024|2 +644342|36000022026|2 +644344|36000022027|2 +644336|36000022028|2 +644337|36000022030|2 +644349|36000022032|2 +644685|36000022035|2 +645646|36000022041|2 +645644|36000022042|2 +645872|36000022048|2 +645921|36000022051|2 +645924|36000022054|2 +645922|36000022057|2 +645923|36000022058|2 +646747|36000022063|2 +646966|36000022067|2 +646964|36000022069|2 +646963|36000022070|2 +646965|36000022072|2 +646982|36000022074|2 +457196|36000022077|2 +647287|36000022078|2 +647337|36000022083|2 +647621|36000022090|2 +647756|36000022092|2 +647785|36000022093|2 +647818|36000022096|2 +648532|36000022099|2 +648529|36000022102|2 +648528|36000022106|2 +648612|36000022109|2 +648919|36000022110|2 +648921|36000022111|2 +649452|36000022121|2 +649453|36000022122|2 +649454|36000022123|2 +649574|36000022125|2 +649575|36000022126|2 +649675|36000022129|2 +649744|36000022130|2 +649727|36000022131|2 +649792|36000022133|2 +649930|36000022134|2 +649928|36000022135|2 +650148|36000022138|2 +650141|36000022139|2 +650155|36000022140|2 +495793|36000022141|2 +650142|36000022142|2 +650212|36000022144|2 +650119|36000022146|2 +650192|36000022151|2 +650143|36000022153|2 +650248|36000022155|2 +650249|36000022156|2 +650264|36000022157|2 +650269|36000022158|2 +650260|36000022159|2 +537414|36000022163|2 +650787|36000022164|2 +650788|36000022167|2 +650786|36000022168|2 +650941|36000022171|4 +651441|36000022174|2 +652521|36000022179|2 +652759|36000022185|2 +652947|36000022188|2 +652955|36000022189|2 +653009|36000022190|2 +653010|36000022191|2 +653005|36000022192|2 +653113|36000022194|2 +653192|36000022197|2 +653220|36000022200|2 +653180|36000022202|2 +653491|36000022205|2 +653906|36000022207|2 +654359|36000022211|2 +654356|36000022212|2 +654358|36000022213|2 +655016|36000022215|2 +656455|36000022219|2 +656560|36000022220|2 +656546|36000022221|2 +656582|36000022222|2 +656587|36000022223|2 +657001|36000022225|2 +657021|36000022226|2 +863246|36000022228|2 +657210|36000022231|2 +657187|36000022233|2 +657422|36000022234|2 +657417|36000022235|2 +657426|36000022236|2 +657429|36000022237|2 +657430|36000022238|2 +657423|36000022239|2 +657592|36000022243|2 +657636|36000022244|2 +657733|36000022247|2 +657758|36000022250|2 +657761|36000022251|2 +657891|36000022254|2 +657957|36000022256|2 +657956|36000022257|2 +657961|36000022259|2 +657962|36000022260|2 +640598|36000022261|2 +658275|36000022262|2 +658261|36000022263|2 +658757|36000022267|2 +658756|36000022268|2 +658985|36000022269|2 +658988|36000022271|2 +658981|36000022274|2 +658982|36000022277|2 +658989|36000022279|2 +658979|36000022280|2 +659057|36000022281|2 +563112|36000022282|2 +654107|36000022283|2 +659129|36000022284|2 +659130|36000022285|2 +659121|36000022286|2 +659133|36000022287|2 +659122|36000022288|2 +659174|36000022289|2 +654114|36000022290|2 +659622|36000022293|2 +659623|36000022294|2 +659650|36000022295|2 +659679|36000022296|2 +723272|36000022303|2 +660070|36000022305|2 +660066|36000022307|2 +660061|36000022308|2 +660236|36000022310|2 +660608|36000022312|2 +660534|36000022313|2 +660493|36000022319|2 +660486|36000022323|2 +660742|36000022325|2 +660697|36000022326|2 +660956|36000022328|2 +660958|36000022329|2 +661026|36000022333|2 +661182|36000022334|2 +661198|36000022335|2 +661165|36000022336|2 +661320|36000022339|2 +661316|36000022340|2 +661317|36000022341|2 +661658|36000022342|2 +661659|36000022343|2 +662065|36000022351|2 +662059|36000022353|2 +662056|36000022354|2 +662245|36000022355|2 +662214|36000022356|2 +662301|36000022358|2 +663021|36000022364|2 +663034|36000022365|2 +663278|36000022367|2 +663287|36000022368|2 +663297|36000022370|2 +663291|36000022371|4 +663437|36000022372|2 +663439|36000022373|2 +663440|36000022374|2 +663505|36000022376|2 +663576|36000022377|2 +663590|36000022378|2 +479002|36000022379|2 +663591|36000022381|2 +663577|36000022382|2 +663929|36000022384|2 +663879|36000022386|2 +663846|36000022387|2 +663845|36000022389|2 +664094|36000022392|2 +664102|36000022393|2 +664210|36000022395|2 +664914|36000022399|2 +665090|36000022400|2 +665044|36000022401|2 +664974|36000022403|2 +664990|36000022405|2 +665045|36000022406|2 +664872|36000022407|2 +665320|36000022409|2 +759678|36000022410|2 +665297|36000022411|2 +665311|36000022412|2 +665885|36000022417|2 +665799|36000022418|2 +665977|36000022421|2 +665966|36000022424|2 +666135|36000022426|2 +666198|36000022431|2 +666606|36000022433|2 +667237|36000022437|2 +667297|36000022439|2 +667298|36000022440|2 +667299|36000022441|2 +667300|36000022442|2 +667743|36000022447|2 +667744|36000022448|2 +667742|36000022449|2 +667747|36000022453|2 +667787|36000022457|2 +668327|36000022461|2 +668227|36000022462|2 +668180|36000022464|2 +668299|36000022465|2 +668257|36000022466|2 +668300|36000022469|2 +668400|36000022470|2 +668566|36000022472|2 +668679|36000022476|2 +668700|36000022477|2 +668682|36000022478|2 +668755|36000022479|2 +668782|36000022480|2 +668825|36000022481|2 +668830|36000022482|2 +669205|36000022486|2 +669234|36000022487|2 +669613|36000022488|2 +669318|36000022494|2 +669732|36000022496|2 +670170|36000022509|2 +670323|36000022513|2 +670617|36000022514|2 +671011|36000022521|2 +671010|36000022522|2 +671016|36000022523|2 +671102|36000022525|2 +671101|36000022526|2 +671732|36000022527|2 +672130|36000022529|2 +673050|36000022536|2 +673042|36000022538|2 +673068|36000022539|2 +673097|36000022541|2 +673122|36000022542|2 +827976|36000022547|4 +673169|36000022548|2 +673167|36000022551|2 +673533|36000022553|2 +673669|36000022554|2 +673728|36000022555|2 +673871|36000022558|2 +674092|36000022563|2 +674127|36000022564|2 +674117|36000022565|2 +674118|36000022567|2 +674427|36000022575|2 +674470|36000022576|2 +674567|36000022579|2 +674795|36000022581|2 +674786|36000022584|2 +675202|36000022591|2 +675230|36000022592|2 +675536|36000022596|2 +675537|36000022597|2 +675834|36000022598|2 +675989|36000022599|2 +675905|36000022601|2 +676497|36000022605|2 +677575|36000022609|2 +501716|36000022611|2 +677679|36000022616|2 +551417|36000022617|2 +677721|36000022618|2 +677700|36000022619|2 +677718|36000022622|2 +678291|36000022627|2 +679132|36000022632|2 +679966|36000022641|2 +679954|36000022642|2 +680034|36000022644|2 +680095|36000022645|2 +680407|36000022648|2 +460366|36000022649|2 +680426|36000022650|2 +680503|36000022651|2 +680480|36000022653|2 +680643|36000022655|2 +680755|36000022658|2 +680794|36000022659|2 +530150|36000022660|2 +680937|36000022662|2 +680940|36000022664|2 +680939|36000022665|2 +680934|36000022666|2 +680949|36000022668|2 +680952|36000022670|2 +681327|36000022676|2 +681329|36000022678|2 +681401|36000022685|2 +681979|36000022687|2 +681569|36000022688|2 +681641|36000022691|2 +681829|36000022692|2 +681807|36000022694|2 +669524|36000022695|2 +682170|36000022697|2 +682215|36000022699|2 +682296|36000022702|2 +682444|36000022706|2 +682439|36000022707|2 +682920|36000022709|2 +683005|36000022711|2 +682975|36000022715|2 +682942|36000022716|2 +683022|36000022719|2 +683020|36000022722|2 +683021|36000022723|2 +683634|36000022729|2 +683698|36000022730|2 +683600|36000022731|2 +683718|36000022732|2 +683601|36000022733|2 +683902|36000022735|2 +683789|36000022736|2 +684078|36000022737|2 +683769|36000022739|2 +683811|36000022740|2 +683984|36000022741|2 +683816|36000022747|2 +618842|36000022754|2 +685269|36000022756|2 +685418|36000022761|2 +685431|36000022762|2 +685449|36000022765|2 +685899|36000022771|2 +686062|36000022774|2 +686551|36000022777|2 +686553|36000022778|2 +687705|36000022784|2 +687706|36000022785|2 +687712|36000022787|2 +687825|36000022788|2 +687870|36000022790|2 +687707|36000022791|2 +689515|36000022797|2 +689728|36000022799|2 +689540|36000022800|2 +689361|36000022802|2 +689705|36000022807|2 +689621|36000022808|2 +689696|36000022809|4 +572998|36000022811|2 +689743|36000022812|4 +689877|36000022815|2 +689880|36000022816|2 +690277|36000022821|2 +690282|36000022825|2 +690507|36000022828|2 +691019|36000022831|2 +581005|36000022832|2 +691145|36000022834|2 +691382|36000022835|2 +691389|36000022836|4 +691409|36000022838|2 +691543|36000022842|2 +691570|36000022844|2 +691571|36000022845|2 +691658|36000022847|2 +691849|36000022851|2 +691831|36000022853|2 +691861|36000022854|2 +691832|36000022856|2 +691820|36000022857|2 +691862|36000022858|2 +691899|36000022859|2 +691926|36000022861|2 +691834|36000022862|2 +691863|36000022863|2 +691927|36000022864|2 +691877|36000022865|2 +691922|36000022867|2 +691850|36000022870|2 +691829|36000022872|2 +691928|36000022873|2 +691900|36000022875|2 +795659|36000022878|2 +692103|36000022879|2 +692104|36000022880|2 +692272|36000022881|2 +692607|36000022886|2 +692606|36000022887|2 +692931|36000022891|2 +693580|36000022895|2 +693734|36000022898|2 +693737|36000022899|2 +694005|36000022902|2 +693977|36000022903|2 +694035|36000022905|2 +694196|36000022910|2 +695062|36000022917|2 +695064|36000022918|2 +695081|36000022919|2 +695070|36000022920|2 +695067|36000022921|2 +695076|36000022922|2 +695071|36000022923|2 +695156|36000022924|2 +695697|36000022928|2 +695704|36000022929|2 +696069|36000022935|2 +696015|36000022938|2 +696013|36000022940|2 +696060|36000022942|2 +696052|36000022943|2 +696078|36000022944|2 +696031|36000022945|2 +696032|36000022947|2 +696053|36000022950|2 +696054|36000022951|2 +696071|36000022952|2 +696034|36000022953|2 +696033|36000022954|2 +696152|36000022957|2 +696546|36000022960|2 +696548|36000022962|2 +696545|36000022963|2 +696576|36000022964|2 +837219|36000022965|4 +696601|36000022967|2 +696618|36000022968|2 +696817|36000022975|2 +696816|36000022978|2 +696831|36000022979|2 +696828|36000022985|2 +697773|36000022992|2 +697776|36000022994|2 +697795|36000022997|2 +697799|36000022999|2 +697796|36000023000|2 +697803|36000023002|2 +697801|36000023006|2 +697797|36000023007|2 +697802|36000023009|2 +698062|36000023015|2 +698249|36000023020|2 +699817|36000023025|2 +700242|36000023029|2 +700306|36000023030|2 +700320|36000023031|2 +700323|36000023035|2 +700358|36000023037|2 +700351|36000023038|2 +700337|36000023039|2 +700311|36000023040|2 +700321|36000023042|2 +700314|36000023044|2 +700394|36000023045|2 +700379|36000023048|2 +700307|36000023049|2 +700368|36000023050|2 +700389|36000023052|2 +700287|36000023056|2 +700308|36000023058|2 +700390|36000023059|2 +700338|36000023060|2 +700315|36000023061|2 +700302|36000023062|2 +700322|36000023063|2 +700350|36000023065|2 +701502|36000023068|2 +700696|36000023069|2 +701503|36000023077|2 +700790|36000023078|2 +702070|36000023079|2 +702108|36000023081|2 +702746|36000023087|2 +702885|36000023089|2 +702892|36000023090|2 +702894|36000023092|2 +702895|36000023094|2 +702896|36000023095|2 +703041|36000023098|4 +703005|36000023103|2 +702994|36000023104|2 +703026|36000023105|2 +704280|36000023108|2 +704379|36000023111|2 +704373|36000023112|2 +704381|36000023113|2 +704576|36000023116|2 +704579|36000023117|2 +704577|36000023118|2 +704602|36000023121|2 +704603|36000023122|2 +704616|36000023123|2 +704601|36000023126|2 +704693|36000023128|2 +704740|36000023130|2 +705044|36000023138|2 +705237|36000023140|2 +705198|36000023141|2 +705205|36000023142|2 +705280|36000023144|2 +705216|36000023145|2 +705165|36000023148|2 +705239|36000023149|2 +705179|36000023150|2 +705217|36000023154|2 +705161|36000023156|2 +705301|36000023157|2 +705143|36000023160|2 +705304|36000023162|2 +705718|36000023166|2 +705722|36000023169|2 +705791|36000023172|2 +705697|36000023173|2 +706019|36000023175|2 +705991|36000023176|2 +705905|36000023177|2 +705906|36000023178|2 +706232|36000023182|2 +706223|36000023183|2 +706225|36000023184|2 +706358|36000023186|2 +706359|36000023187|2 +706400|36000023188|2 +706399|36000023189|2 +706610|36000023192|2 +706970|36000023196|2 +707194|36000023197|2 +707192|36000023198|2 +707653|36000023203|2 +707471|36000023204|2 +707585|36000023205|2 +707470|36000023206|2 +707904|36000023210|2 +708211|36000023213|2 +708253|36000023214|2 +708343|36000023215|2 +708254|36000023216|2 +708804|36000023219|2 +709974|36000023226|2 +710297|36000023230|2 +710304|36000023231|2 +710301|36000023232|2 +711101|36000023240|2 +711264|36000023243|2 +711265|36000023244|2 +711299|36000023245|2 +711303|36000023246|2 +711304|36000023247|2 +711301|36000023248|2 +711300|36000023249|2 +711578|36000023251|2 +712181|36000023253|2 +712161|36000023254|2 +725078|36000023265|2 +713381|36000023269|2 +713373|36000023270|2 +713701|36000023274|2 +713746|36000023278|2 +714774|36000023285|2 +714772|36000023286|2 +714824|36000023290|2 +714945|36000023293|2 +714956|36000023294|2 +714939|36000023295|2 +715108|36000023297|2 +776834|36000023300|2 +715131|36000023303|2 +715086|36000023304|2 +715486|36000023309|2 +715923|36000023310|2 +715924|36000023311|2 +716024|36000023312|2 +716159|36000023321|2 +716160|36000023324|2 +716227|36000023325|2 +716215|36000023326|2 +716553|36000023327|2 +716547|36000023328|2 +716859|36000023329|2 +716860|36000023331|2 +716854|36000023332|2 +716865|36000023334|2 +716870|36000023337|2 +716862|36000023339|2 +716863|36000023340|2 +866839|36000023341|2 +717296|36000023342|2 +717201|36000023343|2 +717179|36000023344|2 +717297|36000023347|2 +717053|36000023348|2 +718177|36000023351|2 +718802|36000023367|2 +718774|36000023368|2 +718803|36000023370|2 +718775|36000023371|2 +719460|36000023373|2 +719463|36000023375|2 +719509|36000023377|2 +719541|36000023379|2 +719608|36000023381|2 +719603|36000023382|2 +719604|36000023384|2 +719627|36000023385|2 +719661|36000023386|2 +719662|36000023387|2 +719660|36000023388|2 +720103|36000023391|2 +720104|36000023392|2 +719995|36000023393|2 +720127|36000023398|2 +720190|36000023400|2 +720298|36000023404|2 +720535|36000023407|2 +720533|36000023408|2 +720769|36000023409|2 +720775|36000023412|2 +720845|36000023415|2 +720862|36000023416|2 +720863|36000023417|2 +720851|36000023418|2 +720900|36000023419|2 +720896|36000023420|2 +720974|36000023422|2 +720975|36000023423|2 +721000|36000023424|2 +721139|36000023425|2 +721155|36000023426|2 +721540|36000023429|2 +721958|36000023432|2 +470494|36000023436|4 +722335|36000023439|2 +722329|36000023440|2 +722483|36000023448|2 +722480|36000023449|2 +722601|36000023451|2 +722798|36000023452|2 +723099|36000023455|2 +723163|36000023457|2 +723087|36000023458|2 +723117|36000023459|2 +723084|36000023460|2 +723118|36000023461|2 +723129|36000023463|2 +723115|36000023464|2 +723159|36000023465|2 +723160|36000023466|2 +723138|36000023468|2 +723078|36000023469|2 +723110|36000023470|2 +723106|36000023472|2 +723079|36000023473|2 +723095|36000023474|2 +723144|36000023475|2 +723086|36000023477|2 +723088|36000023479|2 +723145|36000023483|2 +723119|36000023485|2 +723120|36000023486|2 +723089|36000023487|2 +723107|36000023488|2 +723121|36000023489|2 +723164|36000023490|2 +723104|36000023491|2 +723130|36000023492|2 +723080|36000023495|2 +723131|36000023496|2 +723105|36000023497|2 +723122|36000023500|2 +723139|36000023503|2 +723146|36000023504|2 +723162|36000023505|2 +723090|36000023506|2 +723187|36000023508|2 +723215|36000023509|2 +723255|36000023510|2 +723205|36000023512|2 +723369|36000023513|2 +723370|36000023520|2 +723360|36000023522|2 +723365|36000023523|2 +723730|36000023524|2 +723706|36000023525|2 +723733|36000023526|2 +723748|36000023530|2 +461995|36000023531|2 +723749|36000023532|2 +723745|36000023533|2 +723804|36000023534|2 +723789|36000023535|2 +723785|36000023536|2 +723786|36000023537|2 +723754|36000023538|2 +723772|36000023539|2 +739395|36000023540|2 +723829|36000023542|2 +723832|36000023543|2 +723914|36000023550|2 +723891|36000023551|2 +723913|36000023553|2 +723935|36000023554|2 +723896|36000023555|2 +723921|36000023556|2 +723948|36000023558|2 +723929|36000023561|2 +723950|36000023563|2 +723931|36000023569|2 +723932|36000023570|2 +723904|36000023573|2 +723930|36000023576|2 +723943|36000023577|2 +723897|36000023581|2 +723949|36000023582|2 +723898|36000023584|2 +723944|36000023587|2 +723936|36000023588|2 +723937|36000023593|2 +723895|36000023596|2 +723894|36000023599|2 +723885|36000023601|2 +723901|36000023602|2 +723922|36000023604|2 +723902|36000023606|2 +724663|36000023618|2 +725142|36000023621|2 +724975|36000023622|2 +725181|36000023624|4 +724875|36000023625|2 +724876|36000023628|2 +725321|36000023630|2 +725314|36000023631|2 +725318|36000023633|2 +725370|36000023634|2 +725484|36000023636|2 +725541|36000023637|2 +725894|36000023641|2 +726069|36000023642|2 +726096|36000023646|2 +726462|36000023649|2 +726697|36000023650|2 +726663|36000023651|2 +726694|36000023652|2 +726640|36000023654|2 +726677|36000023655|2 +726727|36000023656|2 +726698|36000023658|2 +726729|36000023659|2 +726678|36000023660|2 +727061|36000023662|2 +727154|36000023663|2 +727813|36000023664|2 +728392|36000023670|2 +728407|36000023672|2 +728470|36000023674|2 +728467|36000023676|2 +728471|36000023678|2 +728469|36000023679|2 +728576|36000023681|2 +728630|36000023685|2 +728631|36000023686|2 +728640|36000023687|2 +728599|36000023688|2 +728731|36000023691|4 +730457|36000023694|2 +730507|36000023695|2 +730736|36000023696|2 +730506|36000023697|2 +730735|36000023702|2 +730663|36000023703|2 +730595|36000023704|2 +730742|36000023705|2 +730621|36000023707|2 +730908|36000023713|2 +731103|36000023714|2 +730859|36000023716|2 +730837|36000023717|4 +731678|36000023720|2 +731823|36000023723|2 +732185|36000023731|2 +732246|36000023732|2 +732241|36000023734|2 +732460|36000023737|2 +732866|36000023740|2 +732996|36000023742|2 +733028|36000023744|2 +733011|36000023745|2 +733087|36000023746|2 +733105|36000023747|2 +733062|36000023748|2 +733125|36000023751|2 +733356|36000023753|2 +734052|36000023757|2 +734053|36000023758|2 +734054|36000023763|2 +733901|36000023765|2 +734400|36000023768|2 +734364|36000023769|2 +734565|36000023773|2 +734567|36000023774|2 +734568|36000023776|2 +734547|36000023778|2 +867673|36000023779|2 +734548|36000023781|2 +734549|36000023782|2 +734569|36000023785|2 +734580|36000023786|2 +734653|36000023787|2 +734829|36000023788|2 +735115|36000023790|2 +735116|36000023791|2 +735235|36000023792|2 +735238|36000023794|2 +735317|36000023795|2 +735358|36000023796|2 +735361|36000023797|2 +735372|36000023798|2 +735366|36000023799|2 +735376|36000023804|2 +735423|36000023805|2 +736208|36000023811|2 +736178|36000023812|2 +736177|36000023818|2 +736198|36000023820|2 +736199|36000023821|2 +736179|36000023822|2 +736184|36000023827|2 +736204|36000023828|2 +736197|36000023831|2 +736185|36000023832|2 +736196|36000023834|2 +736209|36000023836|2 +736190|36000023838|2 +736210|36000023839|2 +538692|36000023840|2 +736192|36000023842|2 +736247|36000023845|2 +736225|36000023846|2 +736234|36000023847|2 +736224|36000023848|2 +736256|36000023850|2 +800275|36000023851|2 +736218|36000023854|2 +736231|36000023855|2 +736264|36000023856|2 +736243|36000023857|2 +736258|36000023858|2 +736257|36000023860|2 +736238|36000023861|2 +736219|36000023862|2 +736265|36000023864|2 +707193|36000023865|2 +736244|36000023866|2 +736253|36000023867|2 +736259|36000023868|2 +736233|36000023870|2 +736240|36000023871|2 +736270|36000023875|2 +736226|36000023877|2 +736249|36000023879|2 +736237|36000023881|2 +736271|36000023882|2 +736250|36000023883|2 +736221|36000023884|2 +736266|36000023885|2 +736230|36000023888|2 +736227|36000023889|2 +736235|36000023890|2 +736272|36000023892|2 +736260|36000023893|2 +736597|36000023895|2 +736592|36000023896|2 +736598|36000023897|2 +736692|36000023899|2 +736702|36000023900|2 +736698|36000023901|2 +736694|36000023903|2 +736794|36000023904|2 +736789|36000023905|2 +736790|36000023906|2 +736798|36000023907|2 +736795|36000023908|2 +736783|36000023909|2 +736976|36000023915|2 +736880|36000023916|2 +736922|36000023917|2 +736898|36000023918|2 +736954|36000023921|2 +736940|36000023923|2 +736965|36000023924|2 +736923|36000023925|2 +736869|36000023926|2 +736977|36000023927|2 +736894|36000023928|2 +736848|36000023930|2 +736924|36000023931|2 +736941|36000023933|2 +737373|36000023938|2 +737433|36000023940|2 +737659|36000023947|2 +737703|36000023948|2 +737704|36000023949|2 +737705|36000023950|2 +737876|36000023951|2 +738192|36000023955|2 +738197|36000023957|2 +498412|36000023961|2 +738519|36000023962|2 +738512|36000023963|2 +738529|36000023964|2 +738524|36000023965|2 +738513|36000023968|2 +738520|36000023969|2 +738531|36000023970|4 +531977|36000023971|2 +738532|36000023972|2 +738517|36000023976|2 +738525|36000023979|2 +738521|36000023980|2 +738522|36000023981|2 +738669|36000023984|2 +738836|36000023987|2 +739295|36000023996|2 +739294|36000023998|2 +739298|36000023999|2 +739443|36000024000|2 +739444|36000024001|2 +739441|36000024002|2 +739883|36000024005|2 +740369|36000024013|2 +740508|36000024015|2 +740514|36000024016|2 +740513|36000024018|2 +740743|36000024020|2 +740753|36000024021|2 +740862|36000024024|2 +741363|36000024027|2 +741384|36000024035|2 +741575|36000024037|2 +741577|36000024038|2 +741683|36000024039|2 +741879|36000024041|2 +741883|36000024044|2 +742115|36000024048|2 +742114|36000024049|2 +742337|36000024055|2 +742335|36000024056|2 +742331|36000024057|2 +742355|36000024058|2 +742387|36000024060|2 +742356|36000024061|2 +742388|36000024062|2 +742389|36000024063|2 +742411|36000024065|2 +742684|36000024068|2 +742817|36000024069|2 +742832|36000024073|4 +742810|36000024074|2 +742803|36000024076|2 +742796|36000024080|2 +742826|36000024082|2 +742795|36000024083|2 +899058|36000024085|2 +742822|36000024086|2 +742794|36000024089|2 +742815|36000024090|2 +742791|36000024092|2 +742798|36000024094|2 +742799|36000024095|2 +742808|36000024097|2 +742825|36000024098|2 +742800|36000024101|2 +742812|36000024102|2 +742790|36000024104|2 +742837|36000024106|2 +742838|36000024107|2 +743148|36000024115|2 +743091|36000024117|2 +743172|36000024118|2 +743092|36000024119|2 +743351|36000024122|2 +743359|36000024123|2 +743369|36000024124|2 +743353|36000024125|2 +743355|36000024126|2 +743370|36000024129|2 +743349|36000024131|2 +743352|36000024132|2 +743360|36000024134|2 +743345|36000024137|2 +717302|36000024140|2 +743382|36000024141|2 +743383|36000024142|2 +743396|36000024145|2 +743392|36000024146|2 +743393|36000024147|2 +743398|36000024148|2 +743397|36000024149|2 +743649|36000024157|2 +743876|36000024158|2 +744333|36000024161|2 +744337|36000024162|2 +744341|36000024165|2 +744342|36000024166|2 +744391|36000024169|2 +744386|36000024170|2 +744406|36000024173|2 +744419|36000024179|2 +744742|36000024181|2 +744743|36000024182|2 +745692|36000024189|2 +745956|36000024194|2 +745950|36000024195|2 +745962|36000024197|2 +746075|36000024199|2 +746041|36000024200|2 +746060|36000024201|2 +746069|36000024203|2 +746094|36000024205|2 +746109|36000024206|2 +746757|36000024207|2 +746726|36000024208|2 +606249|36000024209|2 +746810|36000024210|2 +746811|36000024211|2 +747061|36000024212|2 +747602|36000024215|2 +747763|36000024217|2 +747829|36000024218|2 +747824|36000024219|2 +748905|36000024220|2 +748184|36000024223|2 +748659|36000024225|2 +748724|36000024226|2 +748638|36000024228|2 +748937|36000024229|2 +748488|36000024230|2 +748448|36000024231|2 +748940|36000024232|2 +749905|36000024235|2 +750750|36000024236|2 +750689|36000024237|2 +542003|36000024238|2 +751715|36000024241|2 +752714|36000024243|2 +752956|36000024252|2 +753140|36000024253|2 +753077|36000024255|2 +753095|36000024256|2 +753141|36000024258|2 +753121|36000024259|2 +753317|36000024260|2 +753492|36000024262|2 +753386|36000024263|2 +753493|36000024265|2 +753458|36000024266|2 +753839|36000024268|2 +753840|36000024271|2 +753914|36000024277|2 +504089|36000024278|2 +754329|36000024284|2 +754436|36000024286|2 +754506|36000024288|2 +516702|36000024289|2 +754848|36000024292|2 +754915|36000024293|2 +755215|36000024300|2 +714927|36000024302|2 +829227|36000024304|4 +755744|36000024310|2 +755745|36000024311|2 +755903|36000024313|2 +755906|36000024314|2 +756102|36000024318|2 +756087|36000024321|2 +756082|36000024322|2 +756209|36000024326|2 +756217|36000024327|2 +756655|36000024335|2 +756653|36000024336|2 +756652|36000024339|2 +756654|36000024340|2 +756677|36000024344|2 +756736|36000024345|2 +756804|36000024346|2 +756809|36000024347|2 +756920|36000024349|2 +757253|36000024353|2 +757254|36000024356|2 +758243|36000024372|2 +758247|36000024373|2 +758387|36000024375|2 +758341|36000024377|2 +758354|36000024378|2 +758342|36000024379|2 +758680|36000024383|2 +758702|36000024384|2 +758726|36000024385|2 +758654|36000024387|2 +759258|36000024388|2 +759361|36000024392|2 +759143|36000024394|2 +759283|36000024399|2 +759362|36000024402|2 +759499|36000024410|2 +759585|36000024412|2 +759582|36000024413|2 +760051|36000024415|2 +760037|36000024419|2 +760038|36000024421|2 +760153|36000024422|2 +759962|36000024424|2 +760977|36000024432|2 +760693|36000024434|2 +760738|36000024437|4 +761011|36000024438|2 +760865|36000024441|2 +760553|36000024442|2 +761138|36000024445|2 +760588|36000024447|2 +760814|36000024449|2 +760866|36000024450|2 +760830|36000024452|2 +895739|36000024454|2 +760978|36000024460|2 +760704|36000024463|2 +761246|36000024469|2 +761250|36000024470|2 +550354|36000024478|2 +761480|36000024479|2 +761597|36000024482|2 +761596|36000024483|2 +761653|36000024484|2 +761871|36000024485|2 +761801|36000024486|2 +761875|36000024489|2 +762300|36000024491|2 +762190|36000024493|2 +762536|36000024502|2 +762746|36000024503|2 +763232|36000024510|2 +763296|36000024516|2 +763298|36000024517|2 +763301|36000024518|2 +763288|36000024521|2 +763463|36000024523|2 +763487|36000024524|2 +763875|36000024531|2 +764108|36000024533|2 +764178|36000024534|2 +764130|36000024535|2 +764134|36000024537|2 +764205|36000024538|2 +454366|36000024539|2 +764206|36000024540|2 +764362|36000024542|2 +764367|36000024544|2 +764368|36000024545|2 +764668|36000024549|2 +765246|36000024553|2 +765279|36000024554|2 +765280|36000024559|2 +765306|36000024561|2 +765302|36000024562|2 +765311|36000024563|2 +765307|36000024565|2 +765318|36000024566|2 +765363|36000024569|2 +765563|36000024571|2 +765560|36000024572|2 +765694|36000024573|2 +765733|36000024574|2 +766626|36000024578|2 +766619|36000024579|2 +536020|36000024580|2 +766628|36000024582|2 +766638|36000024583|2 +766620|36000024584|2 +766632|36000024585|2 +766776|36000024587|2 +766802|36000024588|2 +766803|36000024589|2 +766984|36000024591|2 +767021|36000024592|2 +767246|36000024593|2 +767250|36000024594|2 +767249|36000024595|2 +767245|36000024596|2 +767288|36000024599|2 +767287|36000024602|2 +767289|36000024603|2 +767291|36000024604|2 +767284|36000024605|2 +767294|36000024606|2 +767303|36000024607|2 +767299|36000024608|2 +767305|36000024610|2 +767300|36000024611|2 +767367|36000024613|2 +767363|36000024614|2 +767357|36000024616|2 +767359|36000024617|2 +767365|36000024618|2 +767352|36000024619|2 +767351|36000024620|2 +767369|36000024621|2 +767370|36000024622|2 +767354|36000024623|2 +767364|36000024624|2 +767366|36000024625|2 +479841|36000024627|2 +767358|36000024628|2 +767356|36000024629|2 +767444|36000024633|2 +767511|36000024637|2 +768940|36000024640|2 +768960|36000024641|2 +768956|36000024642|2 +768947|36000024643|2 +768957|36000024644|2 +768954|36000024645|2 +768944|36000024647|2 +768945|36000024648|2 +768946|36000024649|2 +768948|36000024650|2 +768961|36000024651|2 +769119|36000024653|4 +769219|36000024654|2 +769221|36000024655|2 +769270|36000024656|2 +769262|36000024657|2 +769279|36000024658|2 +769467|36000024663|2 +769540|36000024664|2 +769797|36000024667|2 +770132|36000024671|2 +770306|36000024674|2 +770275|36000024675|2 +770258|36000024676|2 +770282|36000024678|2 +770283|36000024679|2 +770289|36000024680|2 +770245|36000024681|2 +770246|36000024682|2 +770265|36000024683|2 +770273|36000024685|2 +770620|36000024690|2 +770621|36000024692|2 +770618|36000024694|2 +770663|36000024695|2 +770672|36000024697|2 +770741|36000024698|2 +771250|36000024700|2 +771465|36000024702|4 +772016|36000024703|4 +772017|36000024704|4 +476813|36000024709|2 +771449|36000024710|2 +771710|36000024711|2 +771259|36000024712|2 +771851|36000024713|2 +772029|36000024714|2 +771442|36000024720|2 +771660|36000024722|2 +771466|36000024724|4 +772030|36000024726|2 +772031|36000024727|2 +635501|36000024732|4 +772520|36000024734|2 +772731|36000024736|2 +772939|36000024740|2 +773224|36000024742|2 +773137|36000024745|2 +773355|36000024747|2 +773495|36000024752|2 +773755|36000024754|2 +714950|36000024759|2 +774038|36000024761|2 +774062|36000024762|2 +774061|36000024763|2 +774297|36000024764|2 +774364|36000024767|2 +774551|36000024770|2 +561738|36000024771|2 +774927|36000024779|2 +775393|36000024786|2 +775446|36000024788|2 +775549|36000024790|2 +775547|36000024792|2 +775626|36000024793|2 +775624|36000024794|2 +775627|36000024795|2 +775699|36000024799|2 +776185|36000024800|2 +776339|36000024801|2 +776340|36000024803|2 +776360|36000024804|2 +776349|36000024805|2 +776361|36000024806|2 +776341|36000024808|2 +776430|36000024811|2 +776772|36000024817|2 +776767|36000024820|2 +776781|36000024821|2 +777144|36000024825|2 +777572|36000024829|2 +777506|36000024830|2 +777351|36000024832|2 +777664|36000024833|4 +777697|36000024835|2 +777573|36000024837|2 +777646|36000024838|2 +778236|36000024841|2 +778428|36000024843|2 +778237|36000024847|2 +778076|36000024848|2 +778723|36000024849|2 +778766|36000024850|2 +778886|36000024852|2 +863173|36000024853|2 +779414|36000024857|2 +779524|36000024860|2 +779522|36000024861|2 +779555|36000024862|2 +779584|36000024863|2 +779523|36000024865|2 +779556|36000024866|2 +779497|36000024867|2 +779606|36000024869|2 +779607|36000024871|2 +780168|36000024873|2 +780169|36000024874|2 +780135|36000024877|2 +780097|36000024880|2 +537317|36000024882|2 +780259|36000024883|2 +780238|36000024884|2 +780241|36000024887|2 +780260|36000024888|2 +780286|36000024890|2 +780272|36000024893|2 +780273|36000024894|2 +780287|36000024895|2 +780227|36000024896|2 +780384|36000024897|2 +780958|36000024901|2 +780970|36000024902|2 +780971|36000024903|2 +781027|36000024907|2 +781198|36000024908|2 +781391|36000024912|2 +781349|36000024914|2 +781442|36000024919|2 +781634|36000024923|2 +781632|36000024924|2 +781920|36000024926|2 +781811|36000024929|2 +781871|36000024930|2 +781691|36000024931|2 +781998|36000024932|2 +782240|36000024937|2 +782268|36000024940|2 +604113|36000024941|2 +782412|36000024942|2 +782505|36000024943|2 +543298|36000024944|2 +782761|36000024945|2 +782763|36000024946|2 +782932|36000024950|2 +782962|36000024953|2 +783938|36000024957|2 +783926|36000024958|2 +784024|36000024961|2 +784067|36000024962|2 +784333|36000024968|2 +784518|36000024970|2 +633028|36000024971|2 +784501|36000024972|2 +785139|36000024979|2 +785140|36000024980|2 +785151|36000024982|2 +785180|36000024983|2 +785432|36000024986|2 +785433|36000024988|2 +785582|36000024989|2 +785629|36000024991|2 +785627|36000024992|2 +785687|36000024994|2 +785731|36000024996|2 +786069|36000024998|2 +786151|36000025000|2 +786388|36000025001|2 +787152|36000025010|2 +787392|36000025014|2 +787403|36000025016|2 +787580|36000025020|2 +787801|36000025027|2 +787793|36000025028|2 +787796|36000025029|2 +787797|36000025030|2 +787804|36000025031|2 +787790|36000025032|2 +787819|36000025036|2 +790375|36000025042|2 +790384|36000025043|2 +790356|36000025044|2 +790357|36000025045|2 +790343|36000025046|2 +790385|36000025047|2 +572071|36000025048|2 +790484|36000025049|2 +790490|36000025050|2 +790486|36000025051|2 +790518|36000025052|2 +790620|36000025054|2 +790636|36000025055|2 +790844|36000025056|2 +791324|36000025061|2 +791406|36000025062|2 +791594|36000025063|2 +791580|36000025064|2 +791581|36000025066|2 +791654|36000025071|2 +791824|36000025076|2 +792201|36000025078|2 +791900|36000025079|2 +792393|36000025085|4 +792050|36000025086|2 +791967|36000025087|2 +792423|36000025088|2 +792260|36000025091|2 +792107|36000025097|2 +792416|36000025098|2 +792445|36000025100|2 +792607|36000025104|2 +792608|36000025105|2 +792717|36000025106|2 +792718|36000025107|2 +792855|36000025113|2 +792856|36000025114|2 +792988|36000025118|2 +793619|36000025127|2 +793769|36000025130|2 +793951|36000025136|2 +793938|36000025138|2 +793993|36000025141|2 +793995|36000025144|2 +794042|36000025147|2 +794285|36000025150|2 +794286|36000025151|2 +794284|36000025152|2 +794591|36000025155|2 +794595|36000025156|2 +794471|36000025157|2 +794579|36000025158|2 +794537|36000025160|2 +794580|36000025161|2 +794596|36000025162|2 +794523|36000025163|2 +794452|36000025164|2 +794873|36000025166|2 +795376|36000025171|2 +587906|36000025172|2 +795340|36000025173|2 +795301|36000025175|2 +795437|36000025176|2 +795438|36000025177|2 +795439|36000025178|2 +859214|36000025179|2 +795646|36000025180|2 +795587|36000025183|2 +795658|36000025184|2 +795733|36000025185|2 +795679|36000025186|2 +795718|36000025191|2 +795697|36000025193|2 +795835|36000025197|2 +795878|36000025198|2 +795950|36000025200|2 +795951|36000025202|2 +795964|36000025204|2 +795962|36000025205|2 +795944|36000025206|2 +795955|36000025208|2 +796102|36000025214|2 +796103|36000025215|2 +796157|36000025217|2 +796393|36000025218|2 +796447|36000025220|2 +691353|36000025221|2 +796483|36000025222|2 +796320|36000025224|2 +796377|36000025225|2 +796649|36000025228|2 +796713|36000025230|2 +796709|36000025232|2 +796733|36000025233|2 +796710|36000025234|2 +796852|36000025235|2 +796937|36000025237|2 +796939|36000025238|2 +796940|36000025239|2 +797025|36000025240|2 +797029|36000025241|2 +797026|36000025242|2 +797027|36000025243|2 +797341|36000025244|2 +797367|36000025245|2 +797433|36000025251|2 +797747|36000025253|2 +797652|36000025254|2 +797519|36000025255|2 +798240|36000025261|2 +798469|36000025266|2 +798695|36000025270|2 +798883|36000025274|2 +798884|36000025276|2 +799269|36000025284|2 +799744|36000025294|2 +458307|36000025296|2 +781366|36000025297|2 +799954|36000025298|2 +799971|36000025301|2 +800077|36000025304|2 +800094|36000025306|2 +800181|36000025310|2 +800468|36000025315|2 +800274|36000025316|2 +800838|36000025319|2 +800782|36000025320|2 +800786|36000025322|2 +801081|36000025323|2 +801306|36000025332|2 +801483|36000025333|2 +801721|36000025338|2 +801723|36000025340|2 +801746|36000025342|2 +801864|36000025344|2 +801896|36000025348|2 +802239|36000025352|2 +802792|36000025361|2 +802812|36000025363|2 +802860|36000025364|2 +802862|36000025365|2 +802901|36000025368|2 +803103|36000025372|2 +803081|36000025373|2 +803082|36000025376|2 +803450|36000025379|2 +803336|36000025380|2 +878567|36000025382|2 +803500|36000025383|2 +803397|36000025384|2 +803384|36000025385|2 +803364|36000025386|2 +803292|36000025387|2 +803471|36000025388|2 +803785|36000025389|2 +803828|36000025391|2 +803830|36000025392|2 +803835|36000025393|2 +803990|36000025394|2 +804025|36000025396|2 +593071|36000025401|2 +804168|36000025402|2 +804126|36000025403|2 +804314|36000025405|2 +804478|36000025406|2 +804482|36000025407|2 +804485|36000025409|2 +804601|36000025411|2 +804681|36000025415|2 +804694|36000025416|2 +804769|36000025417|2 +805030|36000025423|2 +805121|36000025425|2 +805592|36000025430|2 +805591|36000025432|2 +805594|36000025435|2 +805601|36000025436|2 +805595|36000025437|2 +805602|36000025438|2 +805598|36000025439|2 +805593|36000025441|2 +665331|36000025442|2 +805637|36000025443|2 +805758|36000025446|2 +805759|36000025447|2 +805761|36000025448|2 +806415|36000025450|2 +807156|36000025455|2 +807232|36000025458|2 +807280|36000025459|2 +807279|36000025460|2 +807595|36000025462|2 +807598|36000025463|2 +807642|36000025464|2 +807669|36000025466|2 +807898|36000025469|2 +807949|36000025471|2 +807947|36000025472|2 +808017|36000025474|2 +808126|36000025476|2 +808137|36000025477|2 +808130|36000025478|2 +808150|36000025480|2 +808146|36000025482|2 +808142|36000025483|2 +808144|36000025484|2 +808151|36000025485|2 +808127|36000025487|2 +808138|36000025488|2 +808131|36000025489|2 +808132|36000025490|2 +808133|36000025492|2 +808152|36000025493|2 +808139|36000025494|2 +808181|36000025495|2 +808392|36000025497|2 +808662|36000025505|2 +808695|36000025507|2 +808860|36000025510|2 +809365|36000025516|2 +809364|36000025517|2 +809363|36000025518|2 +809366|36000025519|2 +809688|36000025522|2 +809713|36000025523|2 +809714|36000025524|2 +809888|36000025526|2 +825759|36000025531|8 +826065|36000025534|4 +826662|36000025536|4 +826633|36000025538|4 +826712|36000025539|4 +826792|36000025542|4 +826663|36000025543|4 +826634|36000025544|4 +826825|36000025546|4 +826885|36000025547|4 +826818|36000025548|4 +826831|36000025549|4 +826832|36000025550|4 +826902|36000025552|4 +826905|36000025553|4 +826922|36000025556|4 +827065|36000025558|4 +826973|36000025560|4 +827032|36000025563|4 +827433|36000025567|4 +827429|36000025568|4 +827435|36000025569|4 +827436|36000025570|4 +827431|36000025571|4 +827434|36000025572|4 +636399|36000025573|2 +827455|36000025574|4 +827515|36000025575|4 +827494|36000025576|4 +827991|36000025581|4 +827744|36000025582|4 +649451|36000025584|2 +827977|36000025585|4 +827860|36000025587|4 +828203|36000025589|4 +828324|36000025591|4 +828312|36000025592|4 +828313|36000025593|4 +828329|36000025594|4 +828426|36000025597|4 +828427|36000025598|4 +828976|36000025604|4 +829283|36000025609|4 +829292|36000025610|4 +829660|36000025615|4 +829697|36000025617|4 +829698|36000025618|4 +829739|36000025619|4 +829960|36000025621|4 +830010|36000025622|4 +830846|36000025633|4 +830855|36000025634|4 +830933|36000025638|4 +831103|36000025639|4 +831104|36000025640|4 +832563|36000025645|4 +832625|36000025647|4 +832726|36000025648|4 +832718|36000025649|4 +832738|36000025652|4 +833801|36000025653|2 +834650|36000025654|4 +835372|36000025655|4 +818059|36000025656|2 +835124|36000025659|4 +833908|36000025660|4 +835084|36000025661|2 +835050|36000025662|6 +834651|36000025663|4 +835111|36000025664|6 +835051|36000025665|6 +832895|36000025670|4 +833785|36000025671|2 +835373|36000025675|8 +835568|36000025676|2 +835112|36000025678|6 +835125|36000025681|4 +833294|36000025682|4 +835374|36000025683|8 +834435|36000025684|4 +835126|36000025690|4 +831551|36000025691|4 +833560|36000025694|4 +833295|36000025695|4 +835113|36000025697|6 +834065|36000025700|4 +832896|36000025702|4 +835785|36000025710|4 +835852|36000025715|4 +836983|36000025720|4 +821612|36000025722|2 +836619|36000025723|4 +837579|36000025725|4 +837531|36000025726|4 +836984|36000025728|4 +837040|36000025730|4 +837686|36000025733|6 +837519|36000025734|4 +837823|36000025735|4 +822271|36000025737|4 +837222|36000025738|4 +836620|36000025739|4 +837520|36000025740|4 +837776|36000025741|6 +837839|36000025743|4 +837300|36000025744|4 +836891|36000025745|4 +836418|36000025748|8 +837864|36000025749|4 +836419|36000025751|8 +836883|36000025753|4 +837652|36000025755|4 +836985|36000025758|4 +837521|36000025759|4 +821613|36000025762|2 +837896|36000025763|4 +837953|36000025770|4 +838551|36000025771|4 +838847|36000025775|4 +893230|36000025777|2 +839038|36000025780|4 +839510|36000025784|4 +840350|36000025789|4 +840348|36000025790|4 +840353|36000025791|4 +840354|36000025792|4 +840349|36000025793|4 +840584|36000025794|2 +840585|36000025795|2 +840586|36000025797|2 +840714|36000025799|2 +841491|36000025803|2 +841513|36000025806|2 +743346|36000025807|2 +841597|36000025811|2 +841779|36000025814|2 +842328|36000025817|2 +842326|36000025818|2 +842568|36000025821|2 +842570|36000025822|2 +842571|36000025823|2 +842578|36000025825|2 +842579|36000025826|2 +843015|36000025831|2 +843292|36000025833|2 +843871|36000025842|2 +844084|36000025845|2 +844539|36000025847|2 +844566|36000025848|2 +844621|36000025849|2 +844703|36000025850|4 +844640|36000025851|2 +844720|36000025852|2 +844935|36000025854|2 +844987|36000025855|2 +845150|36000025856|2 +845092|36000025857|2 +845099|36000025860|2 +845071|36000025861|2 +845264|36000025868|2 +845261|36000025869|2 +845263|36000025870|2 +845269|36000025871|2 +691026|36000025873|2 +845371|36000025874|2 +845306|36000025875|2 +845335|36000025877|2 +845493|36000025878|2 +845639|36000025880|2 +845669|36000025882|2 +845739|36000025889|2 +846006|36000025890|2 +846186|36000025894|2 +846152|36000025898|2 +846381|36000025899|2 +846382|36000025900|2 +846467|36000025903|4 +846153|36000025904|2 +846628|36000025905|2 +846687|36000025908|2 +846688|36000025909|2 +847279|36000025912|2 +847517|36000025915|2 +846879|36000025917|2 +846819|36000025920|2 +847076|36000025922|2 +847011|36000025923|2 +846936|36000025926|2 +847922|36000025932|2 +848046|36000025935|2 +848048|36000025936|2 +636469|36000025938|2 +848057|36000025939|2 +848340|36000025943|2 +848479|36000025946|2 +848341|36000025947|2 +848303|36000025948|2 +848423|36000025949|2 +848618|36000025952|2 +848766|36000025953|2 +848849|36000025954|2 +848952|36000025957|2 +849019|36000025959|2 +849374|36000025966|2 +849347|36000025971|2 +849293|36000025976|2 +849882|36000025980|2 +849881|36000025981|2 +850021|36000025984|2 +849995|36000025985|2 +850076|36000025986|2 +850306|36000025988|2 +850385|36000025991|2 +850419|36000025996|2 +850509|36000025998|2 +850499|36000025999|2 +850503|36000026000|2 +682472|36000026004|2 +851387|36000026005|2 +852063|36000026015|2 +852067|36000026016|2 +852234|36000026017|2 +852552|36000026018|2 +852560|36000026019|2 +852589|36000026021|2 +852602|36000026022|2 +852622|36000026023|2 +852665|36000026025|2 +853644|36000026030|2 +853418|36000026032|2 +853481|36000026034|2 +853213|36000026035|2 +853591|36000026039|2 +853815|36000026042|4 +853829|36000026046|2 +853129|36000026047|2 +853263|36000026048|2 +853419|36000026051|2 +853645|36000026055|2 +853417|36000026060|2 +853557|36000026061|2 +853214|36000026062|2 +854113|36000026066|2 +854135|36000026067|2 +854204|36000026072|2 +854231|36000026073|2 +854264|36000026074|2 +854266|36000026075|2 +854406|36000026079|2 +854619|36000026082|2 +855097|36000026086|2 +855087|36000026087|2 +855095|36000026088|2 +855582|36000026097|2 +855627|36000026098|2 +856035|36000026101|2 +856029|36000026102|2 +856118|36000026104|2 +856127|36000026106|2 +856228|36000026110|2 +856229|36000026112|2 +856227|36000026113|2 +856483|36000026118|2 +856439|36000026121|2 +856275|36000026122|2 +856472|36000026124|2 +856535|36000026125|2 +856834|36000026128|2 +856981|36000026130|2 +857008|36000026131|2 +857139|36000026139|2 +857421|36000026142|2 +857992|36000026147|2 +857982|36000026148|2 +858383|36000026152|2 +858465|36000026153|2 +858471|36000026156|2 +858476|36000026157|2 +858477|36000026158|2 +858486|36000026159|2 +858615|36000026160|2 +1044819|36000026163|2 +858679|36000026164|2 +534059|36000026166|2 +858675|36000026167|2 +859152|36000026172|2 +859148|36000026174|2 +859150|36000026177|2 +859182|36000026180|2 +859460|36000026183|2 +859472|36000026184|2 +859829|36000026188|2 +859856|36000026189|2 +859859|36000026190|2 +859896|36000026192|2 +859876|36000026193|2 +859914|36000026197|2 +505398|36000026200|2 +860666|36000026202|2 +860916|36000026205|2 +861035|36000026206|2 +861032|36000026207|2 +861143|36000026212|2 +861192|36000026213|2 +861252|36000026214|2 +861253|36000026215|2 +861352|36000026217|2 +861545|36000026224|2 +861548|36000026225|2 +861568|36000026227|2 +861580|36000026228|2 +861590|36000026229|2 +861560|36000026230|2 +620872|36000026231|2 +861944|36000026232|2 +862169|36000026234|2 +862568|36000026241|2 +862585|36000026242|2 +862584|36000026243|2 +862727|36000026246|2 +863195|36000026248|2 +863214|36000026252|2 +863791|36000026256|2 +864052|36000026261|2 +864054|36000026262|2 +864302|36000026266|2 +864359|36000026268|2 +864346|36000026269|2 +864593|36000026270|2 +864568|36000026272|2 +865320|36000026275|2 +865361|36000026276|2 +865698|36000026279|2 +865714|36000026281|2 +865847|36000026282|2 +865936|36000026283|2 +865999|36000026284|2 +866363|36000026286|2 +866350|36000026287|2 +866522|36000026288|2 +866657|36000026291|2 +866831|36000026294|2 +866830|36000026295|2 +866946|36000026296|2 +866972|36000026298|2 +866973|36000026299|2 +866967|36000026300|2 +867671|36000026304|4 +867674|36000026305|2 +867641|36000026307|2 +867640|36000026308|2 +867649|36000026312|2 +867666|36000026314|2 +867639|36000026324|2 +867792|36000026329|2 +867969|36000026331|2 +868130|36000026336|2 +868093|36000026338|2 +868121|36000026339|2 +868143|36000026340|2 +868137|36000026343|2 +868180|36000026344|2 +868148|36000026346|2 +868164|36000026347|2 +868165|36000026348|2 +868709|36000026350|2 +868712|36000026351|2 +868766|36000026355|2 +625442|36000026358|2 +869100|36000026363|2 +869204|36000026367|2 +869197|36000026368|2 +868862|36000026369|2 +869195|36000026370|2 +869198|36000026371|2 +869186|36000026372|2 +532588|36000026373|2 +869544|36000026375|2 +869549|36000026376|2 +869712|36000026380|2 +869745|36000026383|2 +869767|36000026385|2 +870101|36000026388|2 +870717|36000026399|2 +870718|36000026400|2 +871088|36000026404|2 +871094|36000026405|2 +871695|36000026409|2 +872013|36000026413|2 +872044|36000026415|2 +872045|36000026416|2 +872105|36000026417|2 +765353|36000026418|2 +872256|36000026421|2 +872257|36000026422|2 +872242|36000026423|2 +872275|36000026426|2 +872586|36000026430|2 +872673|36000026431|2 +872672|36000026433|2 +872675|36000026434|2 +872933|36000026439|2 +872925|36000026441|2 +872934|36000026442|2 +466086|36000026446|2 +873102|36000026448|2 +873028|36000026449|2 +873094|36000026450|2 +873269|36000026451|2 +873345|36000026455|2 +873432|36000026456|2 +874398|36000026459|2 +874470|36000026460|2 +874358|36000026462|2 +874509|36000026463|2 +874645|36000026465|2 +874609|36000026467|2 +874548|36000026469|2 +874644|36000026473|2 +874960|36000026475|2 +875100|36000026477|2 +875356|36000026480|2 +875365|36000026481|2 +875366|36000026482|2 +713215|36000026483|2 +875581|36000026484|2 +875509|36000026486|2 +875422|36000026488|2 +875405|36000026492|2 +875423|36000026493|2 +875536|36000026494|2 +875667|36000026497|2 +875885|36000026499|2 +875916|36000026500|2 +875917|36000026501|2 +875920|36000026502|2 +876244|36000026506|2 +876228|36000026508|2 +876261|36000026511|2 +876257|36000026512|2 +876263|36000026514|2 +876268|36000026515|2 +876452|36000026519|2 +876466|36000026520|2 +876487|36000026523|2 +876504|36000026524|2 +876532|36000026525|2 +876505|36000026527|2 +876516|36000026528|2 +876497|36000026529|2 +876533|36000026530|2 +876534|36000026531|2 +876535|36000026532|2 +876585|36000026533|2 +876601|36000026534|2 +876608|36000026537|2 +876611|36000026538|2 +876617|36000026539|2 +876606|36000026541|2 +876620|36000026543|2 +876602|36000026545|2 +876621|36000026546|4 +876607|36000026548|2 +876613|36000026550|2 +876609|36000026551|2 +540569|36000026556|2 +876623|36000026557|2 +876943|36000026561|2 +633748|36000026562|2 +876951|36000026568|2 +877261|36000026570|2 +877390|36000026572|2 +877656|36000026574|2 +877677|36000026575|2 +877696|36000026577|2 +877776|36000026578|2 +878452|36000026583|2 +878629|36000026585|2 +878589|36000026586|2 +878744|36000026588|2 +878818|36000026590|2 +878822|36000026592|2 +878819|36000026593|2 +879255|36000026595|2 +879256|36000026597|2 +879169|36000026598|2 +879003|36000026599|2 +691817|36000026600|2 +879257|36000026602|2 +879207|36000026603|2 +878837|36000026604|2 +879502|36000026606|2 +879607|36000026607|2 +879476|36000026610|2 +880123|36000026620|2 +880065|36000026621|2 +880154|36000026622|2 +880219|36000026623|2 +880220|36000026624|2 +880221|36000026625|2 +880270|36000026627|2 +880361|36000026628|2 +881093|36000026637|2 +881235|36000026638|2 +881192|36000026639|2 +881348|36000026640|2 +881190|36000026641|2 +881783|36000026642|2 +881685|36000026643|2 +881784|36000026645|2 +882088|36000026652|2 +882075|36000026653|2 +883341|36000026654|2 +883197|36000026663|2 +882785|36000026664|2 +883342|36000026666|2 +883235|36000026667|2 +883064|36000026669|2 +884132|36000026677|2 +884527|36000026679|2 +884529|36000026680|2 +884531|36000026681|2 +884589|36000026683|2 +884688|36000026684|2 +884689|36000026685|2 +884690|36000026686|2 +884919|36000026690|2 +829328|36000026692|4 +886411|36000026698|2 +886394|36000026700|2 +886380|36000026701|2 +886408|36000026704|2 +886403|36000026705|2 +886377|36000026707|2 +886375|36000026711|2 +886395|36000026712|2 +886637|36000026719|2 +493478|36000026721|2 +887168|36000026724|2 +887541|36000026726|2 +887537|36000026727|2 +887545|36000026729|2 +887546|36000026730|2 +887535|36000026732|2 +887536|36000026733|2 +887556|36000026734|2 +887552|36000026737|2 +887707|36000026739|2 +887860|36000026746|2 +887951|36000026747|2 +888138|36000026748|2 +888139|36000026750|2 +888297|36000026751|2 +888308|36000026752|2 +888543|36000026756|2 +888769|36000026759|2 +888943|36000026763|2 +888949|36000026766|2 +889221|36000026774|2 +889224|36000026775|2 +889227|36000026776|2 +889225|36000026778|2 +889228|36000026780|2 +889357|36000026781|2 +890350|36000026788|2 +890591|36000026791|2 +890586|36000026792|2 +890710|36000026795|2 +891185|36000026799|2 +891047|36000026804|4 +890931|36000026805|2 +890865|36000026810|2 +890804|36000026812|2 +891271|36000026813|2 +891272|36000026814|2 +891270|36000026815|2 +891269|36000026816|2 +891298|36000026818|2 +891511|36000026820|2 +891643|36000026822|2 +891861|36000026827|2 +892068|36000026830|2 +892190|36000026832|2 +892191|36000026833|2 +892266|36000026836|2 +892272|36000026837|2 +892350|36000026841|2 +892352|36000026842|2 +892321|36000026845|2 +892317|36000026846|2 +892335|36000026847|2 +892347|36000026848|2 +892341|36000026850|2 +892342|36000026851|2 +892336|36000026853|2 +892344|36000026854|2 +892329|36000026857|2 +892351|36000026860|2 +892348|36000026861|2 +892345|36000026862|2 +892318|36000026863|2 +892316|36000026867|2 +892327|36000026870|2 +892353|36000026871|2 +892343|36000026872|2 +892322|36000026873|2 +892357|36000026876|2 +892483|36000026878|2 +892510|36000026879|2 +893177|36000026881|2 +892721|36000026882|2 +892937|36000026884|2 +892798|36000026885|2 +893063|36000026886|2 +892683|36000026887|2 +892799|36000026889|2 +893211|36000026894|2 +893213|36000026896|2 +893212|36000026897|2 +893215|36000026899|2 +893228|36000026903|2 +893285|36000026907|2 +893341|36000026908|2 +893361|36000026909|2 +893573|36000026911|2 +893574|36000026912|2 +893945|36000026914|2 +894438|36000026919|2 +894431|36000026920|2 +894439|36000026921|2 +894428|36000026922|2 +895059|36000026927|2 +895060|36000026928|2 +895452|36000026932|2 +895492|36000026934|2 +895738|36000026935|2 +895700|36000026937|2 +896148|36000026942|2 +795871|36000026944|2 +754518|36000026946|2 +896165|36000026947|2 +897066|36000026953|2 +897080|36000026956|2 +897096|36000026957|2 +897297|36000026959|2 +897659|36000026960|2 +897854|36000026961|2 +897922|36000026963|2 +897855|36000026964|2 +898052|36000026965|2 +898041|36000026966|2 +898068|36000026971|2 +898266|36000026974|2 +898563|36000026975|2 +898836|36000026978|4 +898699|36000026982|2 +898620|36000026984|2 +899027|36000026987|2 +899014|36000026989|2 +898935|36000026990|2 +898982|36000026991|2 +899089|36000026996|2 +899090|36000026999|2 +899087|36000027000|2 +899563|36000027005|2 +899944|36000027006|2 +901715|36000027009|2 +901754|36000027010|2 +901758|36000027011|2 +901769|36000027015|2 +901770|36000027016|2 +901771|36000027017|2 +901768|36000027018|2 +901763|36000027020|2 +901954|36000027021|2 +901973|36000027022|2 +901963|36000027024|2 +902034|36000027026|2 +901955|36000027028|2 +901964|36000027029|2 +902083|36000027031|2 +902092|36000027032|2 +585849|36000027096|4 +742089|36000027106|2 +743356|36000027154|2 +865166|36000027156|2 +533062|36000027300|2 +570014|36000027306|2 +883907|36000027430|2 +513971|36000027524|2 +929261|36000027607|2 +866775|36000027608|2 +554622|36000027689|2 +583068|36000027740|2 +743361|36000027758|2 +483696|36000027805|2 +632735|36000027818|2 +800829|36000027821|2 +830694|36000027875|4 +899233|36000027908|2 +868090|36000027918|2 +947031|36000027923|2 +951185|36000027971|2 +779498|36000027992|2 +805772|36000028050|2 +958981|36000028052|2 +958982|36000028053|2 +647038|36000028072|2 +540919|36000028143|2 +781921|36000028148|2 +675604|36000028181|2 +585848|36000028189|4 +773589|36000028190|2 +671013|36000028204|2 +605372|36000028216|2 +969681|36000028228|2 +565153|36000028233|2 +969782|36000028240|2 +604726|36000028370|2 +1250282|36000028409|2 +874172|36000028419|2 +799972|36000028434|2 +658980|36000028601|2 +587909|36000028605|2 +992796|36000028740|2 +992793|36000028742|2 +992794|36000028743|2 +850637|36000028753|2 +454217|36000028761|2 +756595|36000028880|2 +738536|36000028898|2 +780262|36000028900|2 +460844|36000028918|2 +784184|36000028972|2 +795815|36000029072|2 +1013025|36000029120|2 +1013272|36000029128|2 +1021873|36000029235|2 +587332|36000029449|2 +1036369|36000029522|2 +851304|36000029524|2 +880066|36000029608|2 +1044097|36000029623|2 +756078|36000029795|2 +1054725|36000029813|2 +723165|36000029866|2 +735388|36000029983|2 +460838|36000030066|2 +667697|36000030079|2 +493034|36000030171|2 +844584|36000030182|2 +762558|36000030222|2 +691677|36000030237|2 +780234|36000030280|2 +622425|36000030284|2 +620856|36000030309|2 +1083539|36000030344|2 +462106|36000030409|2 +474545|36000030414|2 +1089478|36000030420|2 +572329|36000030467|2 +1096118|36000030542|2 +1097481|36000030581|2 +561763|36000030597|2 +1101867|36000030640|2 +1101868|36000030652|2 +746025|36000030927|2 +796219|36000030994|2 +465138|36000031009|2 +608440|36000031028|2 +555007|36000031048|2 +696008|36000031068|2 +1134626|36000031099|2 +617598|36000031194|2 +653024|36000031240|2 +1139827|36000031249|2 +569183|36000031262|2 +623926|36000031377|2 +898732|36000031404|2 +543335|36000031406|2 +462737|36000031434|2 +554818|36000031498|2 +1149386|36000031538|2 +641534|36000031616|2 +1154159|36000031652|2 +1155622|36000031654|2 +1155623|36000031659|2 +1157012|36000031678|2 +560558|36000031692|2 +684951|36000031709|2 +1166129|36000031846|2 +664126|36000031861|2 +521431|36000031863|2 +1163178|36000031921|2 +1163179|36000031942|2 +1166130|36000031943|2 +1165143|36000031945|2 +1163180|36000031949|2 +1166131|36000031956|2 +462922|36000032006|2 +1172373|36000032023|2 +1173127|36000032032|2 +1174026|36000032036|2 +829134|36000032070|4 +958087|36000032124|2 +773548|36000032162|2 +892198|36000032228|2 +801131|36000032367|2 +1186577|36000032409|2 +1188937|36000032424|2 +1188567|36000032428|2 +481730|36000032431|2 +876939|36000032535|2 +638624|36000032591|2 +829122|36000032594|4 +461011|36000032702|2 +500619|36000032726|2 +886491|36000032798|2 +760981|36000032821|2 +1006879|36000032907|2 +684477|36000032911|2 +791697|36000033000|2 +855093|36000033009|2 +836892|36000033032|4 +520713|36000033096|2 +855456|36000033098|2 +1218146|36000033099|2 +1218147|36000033113|2 +668881|36000033149|2 +841021|36000033166|2 +591515|36000033174|2 +534001|36000033208|2 +652519|36000033228|2 +789869|36000033252|2 +1222884|36000033322|2 +1222872|36000033323|2 +1222863|36000033324|2 +1222859|36000033325|2 +1222879|36000033326|2 +1222885|36000033333|2 +620828|36000033336|2 +1222873|36000033338|2 +505110|36000033339|2 +1222882|36000033343|2 +608577|36000033344|2 +1222868|36000033346|2 +551048|36000033349|2 +928906|36000033391|2 +538557|36000033406|2 +497027|36000033523|2 +863533|36000033599|2 +585978|36000033613|2 +967143|36000033614|2 +1241407|36000033636|2 +1243044|36000033679|2 +757891|36000033685|2 +780098|36000033733|2 +1250080|36000033839|2 +1250283|36000033844|2 +1250081|36000033849|2 +1250284|36000033850|2 +533082|36000033873|2 +608484|36000033940|2 +1257880|36000034015|2 +852203|36000034023|2 +1268380|36000034243|2 +1268381|36000034244|2 +1268987|36000034255|2 +1268805|36000034256|2 +1268988|36000034257|2 +1268822|36000034263|2 +494092|36000034300|2 +469915|36001001046|2 +466634|36001001047|2 +455179|36001001048|2 +845889|36001001049|2 +494497|36001001050|2 +513924|36001001053|2 +519198|36001001054|2 +523004|36001001055|2 +558142|36001001056|2 +558242|36001001057|2 +577816|36001001058|2 +579579|36001001059|2 +643128|36001001062|2 +702743|36001001063|2 +753946|36001001066|2 +771693|36001001069|2 +786111|36001001071|2 +800064|36001001072|2 +861567|36001001075|2 +888772|36001001077|2 +888767|36001001079|2 +860680|36001001097|2 +468254|36001001103|2 +513925|36001001114|2 +557492|36001001115|2 +556727|36001001160|2 +580656|36001001162|2 +581565|36001001163|2 +757267|36001001165|2 +760564|36001001166|2 +779499|36001001168|2 +872674|36001001170|2 +454646|36001001171|2 +454812|36001001172|2 +529875|36001001175|2 +846184|36001001177|2 +849371|36001001178|2 +858348|36001001182|2 +860947|36001001184|2 +898304|36001001188|2 +601751|36001001190|2 +614014|36001001196|2 +630671|36001001199|2 +803359|36001001201|2 +803360|36001001202|2 +893591|36001001204|2 +638192|36001001223|2 +630632|36001001230|2 +633760|36001001231|2 +674408|36001001234|2 +686849|36001001235|2 +700371|36001001236|2 +601963|36001001237|2 +723925|36001001238|2 +779495|36001001241|2 +791782|36001001248|2 +791783|36001001249|2 +832626|36001001250|4 +792707|36001001251|2 +592190|36001001253|2 +861144|36001001261|2 +600999|36001001267|2 +522388|36001001301|2 +503011|36001001425|2 +503010|36001001426|2 +742117|36001001531|2 +570257|36001001533|2 +714010|36001001534|2 +669896|36001001586|2 +1044098|36001001587|2 +757678|36001001601|2 +854580|36001001667|2 +641440|36001001683|2 +776414|36001001689|2 +641301|36001001693|2 +636488|36001001694|2 +798181|36001001699|2 +647296|36001001816|2 +758216|36001001952|2 +619078|36001002005|2 +1083582|36001002007|2 +528214|36001002036|2 +710116|36001002043|2 +710979|36001002048|2 +562706|36001002904|2 +681890|36001002930|4 +606072|36001003009|2 +510732|36001003338|2 +868716|36001003356|2 +807101|36001003371|2 +490077|36001003372|2 +490080|36001003375|2 +502845|36001003382|2 +617113|36001003385|2 +702946|36001003391|2 +826901|36001003392|4 +797599|36001003403|2 +793620|36001003406|2 +791936|36001003421|2 +736261|36001003424|2 +647817|36001003426|2 +681971|36001003427|2 +563080|36001003429|2 +739860|36001003432|2 +501020|36001003433|2 +874970|36001003452|2 +875027|36001003453|2 +474064|36001003456|2 +853035|36001003461|2 +723154|36001003508|2 +881717|36001003516|2 +657892|36001003526|2 +614453|36001003541|2 +853036|36001003544|2 +826904|36001003551|4 +681972|36001003553|2 +1163181|36001003596|2 +1166132|36001003607|2 +785578|36001003714|2 +557706|36001003745|2 +716831|36001003767|2 +842333|36001003839|2 +791656|36001003934|2 +543981|36001003938|2 +541232|36001003981|2 +798470|36001004024|2 +740362|36001004059|2 +497461|36001004104|2 +757268|36001004152|2 +478590|36001004172|2 +736245|36001004174|2 +561225|36001004670|2 +886390|36001004676|2 +875918|36001005056|2 +686786|36001005124|2 +860725|36001005810|2 +802358|36001005812|2 +848619|36001005823|2 +685614|36001005829|2 +468666|36001005877|2 +874390|36001005884|2 +591746|36001006957|2 +773113|36001006961|2 +775625|36001006964|2 +801450|36001006968|2 +619772|36001007667|2 +542490|36001007669|2 +829248|36001007670|4 +668160|36001007671|2 +882501|36001007675|2 +530888|36001007677|2 +761178|36001007741|2 +761220|36001007742|2 +784434|36001007765|2 +699743|36001007821|2 +832615|36001007888|4 +662246|36001007893|2 +600184|36001007929|2 +528863|36001008306|2 +898741|36001008886|2 +451783|36001009020|2 +465149|36001009300|2 +468906|36001009301|2 +491774|36001009303|2 +493666|36001009306|2 +493593|36001009307|2 +494643|36001009308|2 +566725|36001009311|2 +503875|36001009315|2 +504647|36001009317|2 +515810|36001009352|2 +519810|36001009354|2 +530771|36001009362|2 +542238|36001009364|2 +543336|36001009365|2 +548656|36001009393|2 +551270|36001009395|2 +555010|36001009402|2 +561246|36001009403|2 +868178|36001009405|2 +580642|36001009424|2 +580622|36001009429|2 +588102|36001009613|2 +597732|36001009616|2 +602108|36001009618|2 +603177|36001009619|2 +617324|36001009623|2 +619657|36001009625|2 +662075|36001009641|2 +674758|36001009644|2 +668784|36001009650|2 +680408|36001009653|2 +683023|36001009655|2 +686056|36001009657|2 +539005|36001009660|2 +705399|36001009663|2 +708699|36001009666|2 +708700|36001009668|2 +844310|36001009671|2 +723113|36001009672|2 +725529|36001009675|2 +726489|36001009677|2 +736899|36001009689|2 +759446|36001009693|2 +759473|36001009694|2 +768938|36001009697|2 +777253|36001009701|2 +785597|36001009706|2 +787101|36001009710|2 +799082|36001009714|2 +800886|36001009718|2 +831045|36001009778|4 +831046|36001009788|4 +839052|36001009790|4 +849284|36001009798|2 +852235|36001009799|2 +855941|36001009802|2 +864138|36001009804|2 +873831|36001009806|2 +878884|36001009808|2 +767286|36001010323|2 +926672|36001010329|2 +653494|36001010389|2 +864147|36001010437|2 +808801|36001010442|2 +736216|36001010698|2 +743348|36001010714|2 +1257236|36001010765|2 +720774|36001010770|2 +564097|36001015050|2 +474546|36001015052|2 +853687|36001015288|2 +457183|36001015343|2 +890711|36001015942|2 +559302|36001016399|2 +619361|36001016438|2 +454642|36001016671|2 +454785|36001017528|2 +801121|36001017543|2 +543572|36001017548|2 +488065|36001017549|2 +611286|36001017661|2 +538431|36001017663|2 +589522|36001017667|2 +847460|36001017669|2 +677579|36001017673|2 +677578|36001017675|2 +573818|36001017676|2 +608042|36001017883|2 +706723|36001019115|2 +769123|36001019132|4 +749366|36001019134|2 +618843|36001019147|2 +620821|36001019152|2 +720859|36001020156|2 +577581|36001020158|2 +791698|36001020168|2 +538565|36001020172|2 +752154|36001020173|2 +522564|36001020294|2 +593223|36001020305|2 +1166092|36001020321|2 +802447|36001020388|2 +663059|36001020402|2 +781011|36001020681|2 +731964|36001021221|2 +731965|36001021222|2 +720031|36001021285|2 +493505|36001021287|2 +576789|36001021288|2 +762096|36001021291|2 +829051|36001021292|4 +593216|36001021295|2 +592064|36001021300|2 +929337|36001021303|2 +892800|36001021490|2 +534364|36001021671|2 +738541|36001021795|2 +535897|36001021798|2 +835741|36001021801|4 +543448|36001021802|2 +736788|36001021986|2 +587582|36001022126|2 +546596|36001022132|2 +799172|36001022133|2 +794246|36001022709|2 +535898|36001022929|2 +460626|36001022933|2 +721443|36001022936|2 +761593|36001022937|2 +885320|36001022975|2 +756753|36001022993|2 +854401|36001022998|2 +530132|36001023012|2 +890932|36001023120|2 +716201|36001023121|2 +786899|36001023126|2 +479012|36001023128|2 +495210|36001023142|2 +1173128|36001023276|2 +521011|36001023282|2 +881114|36001023290|2 +774235|36001023296|2 +478715|36001023340|2 +462541|36001023352|2 +723911|36001023355|2 +854402|36001023374|2 +763631|36001023404|2 +753773|36001023405|2 +490130|36001023410|2 +605505|36001024263|2 +482913|36001024576|2 +547672|36001024579|2 +1071801|36001024873|2 +761592|36001024980|2 +675794|36001025083|2 +829695|36001025129|4 +576602|36001025280|2 +611287|36001025329|2 +744343|36001025332|2 +883437|36001025335|2 +640461|36001025342|2 +757358|36001025344|2 +885289|36001025578|2 +1222867|36001025582|2 +501304|36001025753|2 +546477|36001025797|2 +549266|36001025800|2 +670189|36001026100|2 +537156|36001026178|2 +571040|36001026180|2 +868945|36001026891|2 +517180|36001026896|2 +771565|36001026903|2 +753116|36001027082|2 +758655|36001027088|2 +800638|36001027089|2 +740336|36001027093|2 +490132|36001027113|2 +490131|36001027114|2 +573662|36001027123|2 +451394|36001028688|2 +600225|36001028691|2 +634360|36001028693|2 +1155624|36001028731|2 +534791|36001029244|2 +742833|36001029245|4 +841312|36001029508|2 +738527|36001029933|2 +630973|36001030098|2 +452777|36001030374|2 +979881|36001030637|2 +752963|36001030802|2 +599323|36001031094|2 +887560|36001031095|2 +548681|36001031615|2 +681808|36001031616|2 +620424|36001031671|2 +680444|36001032110|2 +882119|36001032112|2 +681326|36001032630|2 +515995|36001032658|2 +600892|36001032659|2 +852023|36001032661|2 +659598|36001032893|2 +732175|36001032901|2 +736205|36001032903|2 +828981|36001032907|4 +852024|36001032908|2 +794434|36001033355|2 +876506|36001033427|2 +609215|36001033472|2 +876275|36001033688|2 +500887|36001034097|2 +545998|36001034105|2 +526168|36001034108|2 +636219|36001034111|2 +707100|36001034114|4 +781924|36001034118|2 +876614|36001034122|2 +874613|36001034124|2 +681894|36001034470|2 +829696|36001034471|4 +884532|36001034472|2 +484726|36001035026|2 +484725|36001035028|2 +585004|36001035037|2 +870393|36001035044|2 +747143|36001035255|2 +572362|36001035786|2 +730861|36001035788|2 +835682|36001035789|8 +454809|36001035867|2 +599631|36001035871|2 +583759|36001036299|2 +599277|36001036303|4 +748212|36001036306|2 +522157|36001036591|2 +781812|36001036940|2 +559393|36001037044|4 +728588|36001037047|2 +534099|36001037306|2 +872931|36001037307|2 +742834|36001037310|2 +877919|36001037374|2 +657595|36001037404|2 +580779|36001037564|2 +566592|36001038118|2 +695157|36001038121|2 +551063|36001038333|2 +572572|36001038336|2 +759407|36001038338|2 +594710|36001038781|2 +490904|36001038782|2 +716179|36001038837|2 +634001|36001039022|2 +702889|36001039026|2 +477587|36001039413|2 +454647|36001039417|2 +631029|36001040527|2 +795735|36001040550|2 +839264|36001040551|4 +634027|36001040682|2 +640426|36001040684|2 +722068|36001040873|2 +523451|36001040874|2 +455182|36001041148|2 +860820|36001041149|2 +785630|36001041158|2 +785387|36001041458|2 +859149|36001041461|2 +474268|36001041464|2 +510676|36001041819|2 +734489|36001042101|2 +793569|36001042104|2 +603385|36001042108|2 +875571|36001042109|4 +636681|36001042110|2 +696050|36001042112|2 +647622|36001042115|2 +760405|36001042117|2 +863012|36001042119|2 +585865|36001042121|4 +770337|36001042122|2 +457962|36001042123|2 +650133|36001042125|2 +663553|36001042130|2 +862148|36001042132|2 +456137|36001042135|2 +598074|36001042136|2 +635656|36001042186|2 +621095|36001042634|2 +665522|36001042635|2 +600937|36001042781|2 +723012|36001042784|2 +848082|36001042788|2 +862629|36001042789|2 +577568|36001043181|2 +587265|36001043794|2 +560347|36001043796|2 +682928|36001043798|2 +685567|36001043901|2 +861576|36001043903|2 +662279|36001043904|2 +542295|36001044159|2 +681726|36001044162|2 +509962|36001044394|2 +801448|36001044402|2 +635115|36001044611|2 +859147|36001045119|2 +468909|36001045825|2 +586098|36001046651|2 +863463|36001046659|2 +951186|36001046662|2 +612068|36001046663|2 +546601|36001046667|2 +742116|36001046676|2 +720278|36001046678|2 +621271|36001046681|2 +735085|36001046687|2 +552511|36001046853|2 +657421|36001047099|2 +694463|36001047107|2 +737875|36001047126|2 +753318|36001047167|2 +522635|36001047314|2 +520934|36001047531|2 +493506|36001048100|2 +680443|36001048226|2 +711102|36001048228|2 +528860|36001048360|2 +475349|36001048365|2 +503497|36001048382|2 +568259|36001048384|2 +768950|36001048388|2 +886463|36001048390|2 +617548|36001048551|2 +490591|36001048643|2 +869203|36001048652|2 +488749|36001049004|2 +647816|36001049182|2 +512034|36001049357|2 +503001|36001049847|2 +852020|36001050005|2 +519385|36001050305|2 +796248|36001050306|2 +468908|36001051861|2 +509785|36001051863|2 +703983|36001051865|2 +683580|36001052021|2 +621101|36001052182|2 +603549|36001052937|2 +781639|36001053487|2 +541549|36001053513|2 +772325|36001053516|2 +780890|36001053519|2 +831321|36001053520|4 +711103|36001053743|2 +653669|36001054154|2 +658180|36001054155|2 +618925|36001054655|2 +681809|36001054660|2 +721919|36001054671|2 +502827|36001055266|2 +519352|36001055267|2 +662063|36001055269|2 +721918|36001055273|2 +515955|36001056135|2 +543245|36001056935|2 +660079|36001056937|2 +660591|36001057177|2 +794592|36001057739|2 +595666|36001058016|2 +765310|36001058325|2 +474907|36001059143|2 +716425|36001059146|4 +843935|36001059149|2 +855724|36001059150|2 +663432|36001059749|2 +773590|36001059761|2 +481682|36001059777|2 +560729|36001059924|2 +554179|36001060248|2 +554178|36001060250|2 +851398|36001060535|2 +685256|36001060606|2 +803864|36001060664|2 +663407|36001060673|2 +826411|36001060677|4 +513807|36001061836|2 +603537|36001061839|2 +680404|36001061850|2 +886404|36001061851|2 +695715|36001061853|2 +849253|36001061854|2 +696574|36001061857|2 +561224|36001061866|2 +561299|36001061869|2 +723892|36001061870|2 +786185|36001061871|2 +1268806|36001061880|2 +783293|36001061954|2 +803223|36001061960|2 +895053|36001061982|2 +759862|36001062006|2 +886405|36001062047|2 +551483|36001062215|2 +793774|36001062217|2 +844725|36001062222|2 +522633|36001063353|2 +567952|36001063394|2 +495913|36001063528|2 +596648|36001063530|2 +851390|36001063534|2 +515131|36001063891|2 +584726|36001063893|2 +763876|36001063898|2 +899059|36001063901|2 +460839|36001064796|2 +470535|36001064826|4 +605016|36001064910|2 +568950|36001064918|2 +780214|36001064927|2 +572375|36001065217|2 +472062|36001065420|2 +731850|36001065613|2 +528864|36001066200|2 +584981|36001066237|2 +561766|36001066473|2 +877351|36001066495|2 +713538|36001066577|2 +544687|36001066740|2 +753989|36001067005|2 +887553|36001067612|2 +872111|36001067630|2 +859942|36001067638|2 +832903|36001067645|4 +781022|36001067647|2 +740747|36001067652|2 +702291|36001067654|2 +675839|36001067658|2 +655537|36001067672|2 +485782|36001067698|2 +595602|36001068061|2 +787408|36001068345|2 +653260|36001068373|2 +829284|36001068412|4 +784768|36001068531|2 +784769|36001068535|2 +523081|36001068723|2 +723886|36001068729|2 +797030|36001069136|2 +535820|36001069175|2 +660072|36001069269|2 +519566|36001070298|2 +519537|36001070300|2 +624832|36001070303|2 +747198|36001070320|2 +834108|36001070378|6 +495322|36001070499|2 +852621|36001070514|2 +662074|36001072853|2 +867697|36001072868|2 +513750|36001072881|2 +603011|36001072885|2 +742987|36001072888|2 +650117|36001072889|2 +469495|36001072890|2 +645645|36001072901|2 +613548|36001076481|2 +560763|36001078440|2 +495483|36001078446|2 +837777|36001078472|6 +470495|36001078493|4 +561267|36001078502|2 +700692|36001078539|2 +657212|36001078602|2 +843291|36001078603|2 +876264|36001078604|2 +585960|36001078605|2 +767537|36001078609|2 +836988|36001078611|4 +681895|36001078629|2 +774695|36001078658|2 +795816|36001078659|2 +762231|36001078683|2 +725793|36001078688|2 +725790|36001078689|2 +764097|36001078695|2 +538867|36001078696|2 +512809|36001078716|2 +728468|36001079295|2 +857015|36001079297|2 +736988|36001079504|2 +591895|36001079864|4 +763729|36001080310|2 +539110|36001080766|2 +548143|36001080772|2 +692102|36001080775|2 +739897|36001080778|2 +785462|36001081100|2 +790032|36001081101|2 +530947|36001081102|2 +483514|36001081103|2 +486033|36001081104|2 +849471|36001081105|2 +890551|36001081106|2 +626495|36001081732|2 +783853|36001081986|2 +662237|36001081987|2 +691821|36001082307|2 +855583|36001082314|2 +548283|36001082545|2 +657759|36001082761|2 +743769|36001082765|2 +830083|36001082767|4 +848181|36001082769|2 +696818|36001083079|2 +668762|36001083204|2 +457491|36001083655|2 +469496|36001083656|2 +548018|36001083658|2 +624395|36001083660|2 +686294|36001083728|2 +588383|36001083998|2 +470598|36001084224|2 +569174|36001084225|2 +978940|36001084229|2 +602921|36001084331|2 +895503|36001084491|2 +590975|36001084504|2 +507471|36001084554|2 +496346|36001084559|2 +724865|36001084564|2 +637381|36001084565|2 +685419|36001084566|2 +876274|36001084581|2 +827437|36001085118|4 +829260|36001085119|4 +794287|36001085447|2 +511723|36001085520|2 +511718|36001085523|2 +515818|36001085529|2 +622632|36001085632|2 +769529|36001086203|2 +638615|36001086438|2 +716532|36001086441|2 +732159|36001086442|2 +896569|36001086483|2 +803015|36001086617|2 +826855|36001086622|4 +1222866|36001086972|2 +748906|36001087163|2 +791653|36001087454|2 +895701|36001087457|2 +485783|36001087525|2 +798479|36001087526|2 +594711|36001087778|2 +1218148|36001087781|2 +613847|36001087785|2 +778080|36001087786|2 +554618|36001087797|2 +785142|36001087799|2 +493667|36001087801|2 +514982|36001087802|2 +541983|36001087803|2 +674435|36001087804|2 +783919|36001087805|2 +509787|36001087807|2 +719605|36001087809|2 +896423|36001087812|2 +848056|36001087813|2 +484398|36001087821|2 +1091822|36001087822|2 +876604|36001087823|2 +716541|36001087825|2 +605340|36001087962|2 +486318|36001088170|2 +715984|36001088171|2 +638116|36001088298|2 +681338|36001088463|2 +537173|36001088566|2 +854268|36001088567|2 +548657|36001088870|2 +474553|36001088871|2 +665332|36001088872|2 +736201|36001088874|2 +649270|36001088884|2 +786339|36001089182|2 +570361|36001089207|2 +855005|36001089367|2 +669120|36001089386|2 +697016|36001089631|2 +697019|36001089635|2 +498986|36001089649|2 +762299|36001089858|2 +1222874|36001089859|2 +893286|36001089873|2 +872671|36001090011|2 +635626|36001090183|2 +525125|36001090501|2 +602741|36001090502|2 +570368|36001090513|2 +894579|36001091127|2 +529655|36001091133|2 +834667|36001091979|4 +899050|36001091981|2 +576601|36001092029|2 +518621|36001092185|2 +723934|36001092475|2 +521761|36001092478|2 +537151|36001092839|2 +562925|36001092840|2 +702184|36001092842|2 +738539|36001092843|2 +742571|36001092845|2 +777184|36001092847|2 +785975|36001092848|2 +796394|36001092849|2 +609427|36001092850|2 +562940|36001093120|2 +623060|36001093333|2 +710888|36001093337|2 +550708|36001093978|2 +625871|36001094337|2 +757679|36001094340|2 +518964|36001094342|2 +797694|36001094349|2 +842331|36001094447|2 +619024|36001094735|2 +634409|36001094859|2 +854617|36001094862|2 +689869|36001094966|2 +584902|36001095017|2 +563394|36001095163|2 +703437|36001095362|2 +479935|36001095419|2 +848825|36001095681|2 +855181|36001095684|2 +590651|36001096124|2 +473526|36001096470|2 +543337|36001096471|2 +543372|36001096473|2 +728575|36001096476|2 +891862|36001096633|2 +476045|36001096829|2 +582328|36001096831|2 +488284|36001096958|2 +794794|36001096966|2 +665998|36001097055|2 +725447|36001097059|2 +702141|36001097696|2 +665509|36001097822|2 +868704|36001097827|2 +559445|36001098184|2 +665512|36001098309|2 +561268|36001098315|2 +622915|36001098670|2 +861945|36001099253|2 +878579|36001099254|2 +874962|36001099367|2 +537518|36001100217|2 +762124|36001100224|2 +483356|36001100248|2 +896837|36001100249|2 +901939|36001100250|2 +636809|36001100462|2 +614645|36001100471|2 +709940|36001100491|2 +709161|36001101230|2 +890585|36001101324|2 +548563|36001101747|2 +567522|36001101749|2 +533331|36001102255|2 +604142|36001102683|2 +606064|36001102685|2 +585839|36001102690|4 +736228|36001102693|2 +831326|36001102697|4 +885470|36001102707|2 +792443|36001102709|2 +460628|36001102721|2 +777864|36001102723|2 +723226|36001102777|2 +721275|36001102858|2 +515879|36001102860|2 +506835|36001103026|2 +692932|36001103029|2 +903271|36001103031|2 +542241|36001103349|2 +677697|36001103350|2 +624923|36001103929|2 +807240|36001103933|2 +834356|36001103935|6 +876624|36001103936|2 +795276|36001104040|2 +665978|36001105238|2 +623284|36001105242|2 +864058|36001105243|2 +808233|36001105248|2 +452015|36001105655|2 +469021|36001105657|2 +1257881|36001105662|2 +572077|36001105668|2 +493544|36001106096|2 +1249331|36001106605|2 +650151|36001106606|2 +728379|36001106607|2 +556663|36001106884|2 +549053|36001107691|2 +869205|36001107696|2 +736967|36001108170|2 +736191|36001108209|2 +486758|36001108427|2 +1164626|36001108446|2 +490927|36001108560|2 +774741|36001108706|2 +858133|36001108712|2 +783196|36001109025|2 +882739|36001109027|2 +826328|36001109371|8 +825742|36001109372|4 +462180|36001109373|2 +534576|36001109374|2 +733072|36001109378|2 +731570|36001109379|2 +762809|36001109380|2 +764319|36001109382|2 +723037|36001109384|2 +665938|36001109696|2 +665934|36001109697|2 +768943|36001109720|2 +546840|36001109822|2 +795680|36001109824|2 +797028|36001109826|2 +460887|36001110199|2 +457138|36001110393|2 +524098|36001110740|2 +529458|36001110742|2 +689864|36001110743|2 +835271|36001110947|4 +488074|36001110980|2 +608047|36001110983|2 +892192|36001111463|2 +738161|36001111494|2 +599174|36001111553|2 +784117|36001111836|2 +742801|36001111857|2 +796272|36001112277|2 +489814|36001112588|2 +680795|36001112778|2 +787886|36001112825|2 +544683|36001112830|2 +487807|36001112926|2 +462171|36001112929|2 +462045|36001112938|2 +887432|36001112945|2 +737874|36001113199|2 +682297|36001113329|2 +736752|36001113330|2 +605070|36001113474|2 +675232|36001113937|2 +697800|36001113985|2 +805760|36001113994|2 +886391|36001113996|2 +1006911|36001113999|2 +604913|36001114015|2 +793664|36001114083|2 +513718|36001114650|2 +517032|36001115202|2 +456138|36001115499|2 +462107|36001115504|2 +503568|36001115513|2 +537165|36001116167|2 +539102|36001116169|2 +539114|36001116177|2 +548288|36001116190|2 +573674|36001116202|2 +580711|36001116208|2 +587400|36001116210|2 +608645|36001116216|2 +616256|36001116219|2 +624803|36001116226|2 +766618|36001116253|2 +784583|36001116288|2 +802861|36001116293|2 +839267|36001116309|4 +872929|36001116338|2 +454621|36001117814|2 +519378|36001117815|2 +525130|36001117816|2 +526920|36001117817|2 +537163|36001117818|2 +582428|36001117819|2 +606090|36001117823|2 +653670|36001117833|2 +655168|36001117834|2 +670589|36001117835|2 +736236|36001117839|2 +826573|36001117849|4 +833460|36001117853|4 +872585|36001117879|2 +460856|36001118125|2 +504916|36001118455|2 +583649|36001118459|2 +588527|36001118460|2 +622552|36001118463|2 +663177|36001118465|2 +753859|36001118468|2 +844100|36001118476|2 +738533|36001118521|2 +848047|36001118826|2 +777352|36001119033|2 +792868|36001119036|2 +541045|36001119074|2 +569120|36001119983|2 +802418|36001119986|2 +786199|36001120038|2 +621096|36001120441|2 +828315|36001120460|4 +892069|36001120634|2 +876612|36001120982|2 +638618|36001121080|2 +736834|36001121343|2 +845966|36001122533|2 +670481|36001122572|2 +764320|36001122598|2 +458348|36001122822|2 +634114|36001123556|2 +864507|36001123565|2 +478581|36001123945|2 +478584|36001123951|2 +517804|36001123983|2 +609495|36001123986|2 +804279|36001124001|2 +598518|36001124367|2 +882098|36001124368|2 +855006|36001124825|2 +656526|36001124850|2 +734570|36001124852|2 +509578|36001125012|2 +892338|36001125016|2 +459126|36001125117|2 +730737|36001125119|2 +595654|36001125122|2 +517835|36001125606|2 +764179|36001125635|2 +764135|36001125636|2 +523354|36001125734|2 +595501|36001125735|2 +891860|36001125747|2 +728577|36001126279|2 +738916|36001126281|2 +712888|36001126404|2 +526531|36001126765|2 +680766|36001127213|2 +741884|36001127218|2 +595484|36001127362|2 +614911|36001128845|2 +700383|36001128855|2 +705231|36001128857|2 +709038|36001128860|2 +761282|36001128862|2 +761270|36001128863|2 +761277|36001128865|2 +845628|36001128874|2 +724877|36001128903|2 +858350|36001129049|2 +587908|36001129541|2 +547162|36001129756|2 +565268|36001129770|2 +864076|36001129774|2 +767371|36001129936|2 +742836|36001130126|2 +819526|36001130127|2 +970496|36001130128|2 +802266|36001130440|2 +808143|36001130441|2 +738461|36001130593|2 +537246|36001130683|2 +764329|36001131110|2 +852659|36001131165|2 +557073|36001131677|2 +557074|36001131678|2 +574092|36001131724|2 +763443|36001131725|2 +783634|36001131794|2 +674481|36001132201|2 +529464|36001132296|2 +762217|36001132297|2 +841036|36001132299|2 +854477|36001132300|2 +653286|36001132333|2 +621270|36001132334|2 +738535|36001133624|2 +796207|36001133628|2 +580957|36001133989|2 +665521|36001134314|2 +746805|36001134316|2 +893572|36001134324|2 +899074|36001134325|2 +720530|36001134788|2 +872163|36001134818|2 +895325|36001135145|2 +760552|36001135181|2 +797451|36001135195|2 +491812|36001135203|2 +689571|36001135205|2 +491811|36001135207|2 +856036|36001135240|2 +674475|36001136193|2 +566419|36001136395|2 +734204|36001136400|2 +785519|36001136404|2 +899073|36001137025|2 +500441|36001137109|2 +808134|36001137111|2 +474972|36001137154|2 +600195|36001137161|2 +620342|36001137370|2 +892346|36001137565|2 +543449|36001137584|2 +669141|36001137586|2 +452247|36001137789|2 +452253|36001137790|2 +585825|36001137806|2 +884687|36001137851|2 +561771|36001137866|2 +485341|36001137952|2 +668768|36001137961|2 +783985|36001137963|2 +836123|36001137966|4 +888342|36001137970|2 +876536|36001138054|2 +796190|36001138213|2 +574093|36001138264|2 +784395|36001138269|2 +801476|36001138270|2 +561282|36001138409|2 +667159|36001138640|2 +465245|36001138710|2 +540027|36001138711|2 +678836|36001138720|2 +678837|36001138721|2 +698385|36001138722|2 +657963|36001138759|2 +483949|36001138762|2 +586290|36001139284|2 +550552|36001139398|2 +734474|36001139401|2 +802528|36001139403|2 +1056419|36001139410|2 +721420|36001139640|2 +694675|36001140004|2 +715212|36001140736|2 +459266|36001141169|2 +491183|36001141170|2 +802527|36001141523|2 +576425|36001142018|2 +740038|36001142105|2 +864569|36001142147|2 +523005|36001142150|2 +718781|36001142355|2 +603317|36001142530|2 +875512|36001143039|2 +490048|36001143182|2 +587888|36001143197|2 +492012|36001143331|2 +898956|36001143334|2 +739971|36001143574|2 +785187|36001144190|2 +644351|36001144192|2 +754487|36001144582|2 +655836|36001144587|2 +513664|36001144588|2 +805239|36001144893|2 +805249|36001144896|2 +570890|36001145586|4 +892328|36001145591|2 +652767|36001145924|2 +682156|36001145966|2 +483392|36001145968|2 +841506|36001146012|2 +733837|36001146027|2 +491962|36001146039|2 +512806|36001146047|2 +512813|36001146049|2 +580720|36001146051|2 +538336|36001146160|2 +680031|36001146175|2 +587284|36001146179|2 +551386|36001146494|2 +562936|36001146599|2 +741555|36001146603|2 +619752|36001146617|2 +636266|36001146635|2 +558983|36001146698|2 +533694|36001147024|2 +777477|36001147240|2 +733506|36001147505|2 +731995|36001147661|2 +692077|36001147666|2 +901024|36001149140|4 +685900|36001149144|2 +707910|36001149296|2 +891061|36001149408|2 +734203|36001149420|2 +730594|36001149428|2 +647288|36001149479|2 +740756|36001149492|2 +595584|36001149515|2 +736262|36001149529|2 +657427|36001149537|2 +848762|36001149573|2 +657424|36001149752|2 +829932|36001149784|4 +829933|36001149785|4 +801747|36001149909|2 +723907|36001149946|2 +516079|36001150668|2 +512807|36001150925|2 +460866|36001151570|2 +882735|36001151634|2 +1097482|36001151662|2 +550628|36001152031|2 +720985|36001152060|2 +562271|36001152093|2 +746709|36001153751|2 +575399|36001153989|2 +511864|36001154135|2 +455509|36001157040|2 +460819|36001157050|2 +474265|36001157079|2 +483447|36001157087|2 +498438|36001157135|2 +507848|36001157159|2 +510951|36001157166|2 +516617|36001157172|2 +517042|36001157178|2 +538697|36001157198|2 +540262|36001157201|2 +562931|36001157231|2 +562932|36001157235|2 +567969|36001157237|2 +578394|36001157291|2 +584858|36001157294|2 +584621|36001157296|2 +456136|36001157301|2 +587995|36001157303|2 +588004|36001157305|2 +736703|36001157310|2 +606741|36001157316|2 +608498|36001157319|2 +610822|36001157323|2 +617599|36001157326|2 +620883|36001157329|2 +634133|36001157396|2 +635004|36001157397|2 +638193|36001157403|2 +643129|36001157408|2 +645959|36001157412|2 +623350|36001157414|2 +663930|36001157418|2 +664125|36001157421|2 +675231|36001157425|2 +682322|36001157431|2 +682581|36001157434|2 +685634|36001157439|2 +689879|36001157440|2 +697794|36001157444|2 +702156|36001157448|2 +700362|36001157453|2 +724795|36001157462|2 +728472|36001157464|2 +736214|36001157581|2 +741535|36001157591|2 +743874|36001157592|2 +766629|36001157622|2 +777051|36001157625|2 +770295|36001157627|2 +771131|36001157629|2 +774196|36001157631|2 +783333|36001157636|2 +787116|36001157638|2 +797967|36001157649|2 +829337|36001157678|4 +634907|36001157682|2 +822066|36001159447|2 +840129|36001159450|4 +848342|36001159455|2 +849308|36001159456|2 +849835|36001159461|2 +853037|36001159462|2 +523767|36001159463|2 +862726|36001159515|2 +864467|36001159517|2 +540044|36001159525|2 +868114|36001159531|2 +891584|36001159543|2 +891652|36001159546|2 +742341|36001159579|2 +884131|36001159650|2 +498402|36001159681|2 +679776|36001159774|2 +1022283|36001159778|2 +529465|36001159808|2 +892486|36001159844|2 +1047467|36001159967|2 +723156|36001159978|2 +1188181|36001160028|2 +558787|36001160368|2 +798527|36001160453|2 +829466|36001160455|4 +869570|36001160456|2 +533690|36001160914|2 +669877|36001160919|2 +554322|36001160997|2 +503104|36001161139|2 +607112|36001161142|2 +681284|36001161149|2 +702886|36001161157|2 +739296|36001161160|2 +804136|36001161173|2 +508567|36001161279|2 +548286|36001161470|2 +872254|36001161477|2 +576339|36001162072|2 +801551|36001163597|2 +540739|36001164193|2 +794497|36001164195|2 +590685|36001164332|2 +697461|36001164337|2 +774980|36001164343|2 +891637|36001164828|2 +738540|36001165134|2 +533960|36001165826|2 +807117|36001165832|2 +890545|36001165833|2 +567390|36001166360|2 +1205244|36001166363|2 +479940|36001167240|2 +776428|36001167936|2 +776397|36001167937|2 +603257|36001168145|2 +522061|36001168589|2 +707522|36001168987|2 +592922|36001169075|2 +479290|36001169076|2 +516018|36001169483|2 +711507|36001169484|2 +893301|36001170183|2 +893339|36001170184|2 +833802|36001170185|2 +573377|36001171289|2 +768941|36001171291|2 +861524|36001171292|2 +727485|36001171402|2 +746461|36001171829|2 +552402|36001172271|2 +623238|36001172304|2 +836255|36001172333|4 +836259|36001172335|4 +691854|36001172432|2 +733080|36001172484|2 +483382|36001172485|2 +512814|36001172560|2 +538568|36001172561|2 +662315|36001172969|2 +677741|36001172970|4 +855024|36001172973|2 +516445|36001173025|2 +461014|36001173130|2 +489812|36001173270|2 +562933|36001173340|2 +757270|36001173341|2 +587401|36001173618|2 +899088|36001173705|2 +774236|36001173864|2 +725079|36001174101|2 +723908|36001174532|2 +872050|36001174534|2 +497211|36001174535|2 +843028|36001175082|2 +872589|36001175127|2 +758914|36001175231|2 +577576|36001175345|2 +869088|36001175346|2 +561306|36001175434|2 +723933|36001175980|2 +591618|36001176033|2 +647335|36001176538|2 +723926|36001176834|2 +774933|36001176934|2 +465119|36001176993|2 +614015|36001177289|2 +745312|36001177332|2 +645971|36001177671|2 +534789|36001177909|2 +1172577|36001178161|2 +622550|36001178367|2 +704326|36001178368|2 +723830|36001178489|2 +522041|36001178562|2 +767368|36001179155|2 +634060|36001179575|2 +705310|36001179610|2 +864314|36001179611|2 +879170|36001179612|2 +492149|36001179613|2 +876265|36001179616|2 +487985|36001179791|2 +779984|36001179902|2 +728591|36001180022|2 +861946|36001180024|2 +885483|36001180025|2 +691676|36001180186|2 +840722|36001180188|2 +840721|36001180189|2 +901815|36001180295|2 +705699|36001180304|2 +700395|36001180434|2 +535167|36001180463|2 +804730|36001180504|2 +520634|36001180568|2 +579640|36001180628|2 +650135|36001180629|2 +584722|36001180735|2 +790028|36001180736|2 +849349|36001181444|2 +462563|36001181521|2 +462364|36001181574|2 +484297|36001181658|2 +684074|36001181659|2 +864093|36001182018|2 +618245|36001182025|2 +629965|36001182026|2 +799258|36001182027|2 +479696|36001182058|2 +537148|36001182059|2 +794426|36001182118|2 +519889|36001182150|2 +892984|36001182387|2 +528809|36001182495|2 +782667|36001182497|4 +795096|36001182499|2 +1262030|36001182503|2 +869543|36001182993|2 +767600|36001183194|2 +474908|36001183232|2 +791327|36001183237|2 +783982|36001183448|2 +546810|36001183664|2 +593981|36001183762|2 +723132|36001183819|2 +740523|36001183945|2 +720534|36001184047|2 +845433|36001184048|2 +756805|36001184142|2 +516110|36001184393|2 +876458|36001184396|2 +892065|36001184542|2 +460820|36001184570|2 +647342|36001184571|2 +826863|36001184597|4 +633406|36001184714|2 +758703|36001184718|2 +522561|36001184841|2 +657419|36001184847|2 +534569|36001184919|2 +624963|36001185133|2 +858472|36001185149|2 +507362|36001185263|2 +507363|36001185264|2 +476912|36001185408|2 +476926|36001185409|2 +640621|36001185646|2 +529057|36001185730|2 +739396|36001186264|2 +468663|36001186521|2 +591681|36001186839|2 +592065|36001186840|2 +697460|36001186841|2 +568374|36001187331|2 +457170|36001187473|2 +534359|36001187474|2 +693613|36001187527|2 +763870|36001187751|2 +785474|36001188000|2 +459066|36001188252|2 +459067|36001188254|2 +527558|36001188255|2 +587374|36001188259|2 +643717|36001188608|2 +534564|36001188700|2 +843484|36001188701|2 +470567|36001188860|2 +544694|36001188861|2 +591682|36001188862|2 +870788|36001188864|2 +474916|36001189032|2 +882734|36001189034|2 +585046|36001189125|2 +691024|36001189228|2 +828424|36001189230|4 +882902|36001189309|2 +684715|36001189474|2 +773527|36001189475|2 +853844|36001189476|2 +460835|36001189623|2 +580705|36001189729|2 +827204|36001189851|4 +625080|36001190132|2 +625082|36001190133|2 +842330|36001190135|2 +881735|36001190136|2 +596612|36001190583|2 +770278|36001190591|2 +836121|36001190872|4 +836122|36001190874|4 +517063|36001190947|2 +702088|36001191035|2 +542239|36001191162|2 +547094|36001191205|2 +608479|36001191633|2 +739985|36001191634|2 +778429|36001191635|2 +599309|36001191732|2 +460183|36001191950|2 +714011|36001191952|2 +877482|36001191953|2 +896424|36001191961|2 +852722|36001192033|2 +763233|36001192231|2 +584893|36001192479|2 +537174|36001192653|2 +487872|36001192794|2 +587333|36001192798|2 +844121|36001192879|2 +506890|36001192974|2 +541838|36001192976|4 +767601|36001193091|2 +514911|36001193622|2 +702537|36001193625|2 +854985|36001193626|2 +868863|36001193627|2 +901759|36001193629|2 +523452|36001193791|2 +803612|36001193883|2 +483464|36001193920|2 +1205245|36001194066|2 +696832|36001194116|2 +623126|36001194728|2 +721925|36001194807|2 +489100|36001194808|4 +497377|36001194809|2 +510692|36001194810|2 +557059|36001194811|2 +691724|36001194879|2 +563572|36001195209|2 +561759|36001195315|2 +663438|36001195316|2 +797573|36001195485|2 +843582|36001195539|2 +709036|36001196886|2 +492098|36001196978|2 +606743|36001196979|2 +567852|36001196980|2 +742813|36001197192|2 +548139|36001197296|2 +771726|36001197297|2 +801466|36001197412|2 +772954|36001197796|2 +990785|36001197988|2 +519153|36001198168|2 +827217|36001198169|4 +765688|36001198263|2 +677661|36001198336|2 +1011624|36001198503|2 +568427|36001198884|2 +535595|36001199015|2 +651080|36001199069|2 +787642|36001199072|2 +495756|36001199219|2 +561735|36001199385|2 +654420|36001199956|2 +745140|36001199958|2 +760970|36001199959|2 +891864|36001199961|2 +535817|36001200308|2 +488217|36001200424|2 +864050|36001200438|2 +882047|36001200439|2 +490873|36001200768|2 +618903|36001200774|2 +792598|36001200777|2 +661282|36001201070|2 +704685|36001201071|2 +740658|36001201393|2 +504464|36001201498|2 +707672|36001201499|2 +723828|36001201867|2 +497418|36001201869|2 +472999|36001201871|2 +493480|36001202068|2 +586291|36001202070|2 +723816|36001202072|2 +719915|36001202092|2 +642237|36001202263|2 +668713|36001202494|2 +791326|36001202498|2 +474696|36001202861|2 +896035|36001202994|2 +657959|36001203222|2 +685568|36001203223|2 +580445|36001203256|2 +738956|36001203313|2 +478479|36001203372|2 +759397|36001203461|2 +759398|36001203462|2 +764141|36001203467|2 +480185|36001203491|2 +657428|36001203492|2 +759865|36001204074|2 +460815|36001204295|2 +522105|36001204296|2 +765299|36001204298|2 +576030|36001204398|2 +875173|36001204400|2 +875103|36001204401|2 +797042|36001204928|2 +863464|36001205024|2 +843669|36001205133|2 +506417|36001205228|2 +558874|36001205491|2 +499069|36001205767|2 +644513|36001205768|2 +644511|36001205769|2 +592642|36001205906|2 +525129|36001205955|2 +730560|36001205957|2 +861586|36001205958|2 +454347|36001207548|2 +760491|36001207572|2 +585504|36001207591|2 +585507|36001207597|2 +454994|36001208145|2 +771403|36001208149|2 +675835|36001208485|2 +535537|36001208585|2 +696029|36001208678|2 +519386|36001209244|2 +723899|36001209261|2 +548009|36001209262|2 +663361|36001209264|2 +733836|36001209265|2 +496354|36001209276|2 +737435|36001209277|2 +855185|36001209280|2 +875079|36001209281|2 +558433|36001209310|2 +523421|36001209347|2 +651244|36001209349|2 +462666|36001209410|2 +843670|36001209414|2 +512116|36001209497|2 +512113|36001209498|2 +567482|36001209502|2 +567483|36001209505|2 +460625|36001209508|2 +733546|36001209534|2 +541026|36001209595|2 +454301|36001209630|2 +488203|36001209631|2 +469728|36001209943|2 +756483|36001209947|2 +763694|36001209948|2 +856953|36001209949|2 +1188568|36001209987|2 +630913|36001210109|2 +593855|36001210246|2 +780888|36001210248|2 +594918|36001210772|2 +519203|36001210800|2 +570402|36001210988|2 +528861|36001211340|2 +742816|36001211344|2 +731129|36001211920|2 +604365|36001212378|2 +683927|36001212419|2 +647347|36001212456|2 +728574|36001212555|2 +579242|36001213234|2 +537166|36001214473|2 +700659|36001214474|2 +876615|36001214482|2 +470569|36001214483|2 +773872|36001214490|2 +632094|36001215037|4 +691155|36001215039|2 +693601|36001215040|2 +472555|36001215075|2 +465164|36001215079|2 +766983|36001215083|2 +563402|36001215084|2 +578044|36001215086|2 +586094|36001215087|2 +602330|36001215088|2 +653112|36001215091|2 +658592|36001215092|2 +686613|36001215094|2 +756822|36001215095|2 +808136|36001215096|2 +843693|36001215097|2 +849292|36001215098|2 +861513|36001215099|2 +890885|36001215100|2 +733466|36001215149|2 +1205246|36001215190|2 +494175|36001215507|2 +578362|36001215522|2 +723919|36001215531|2 +743362|36001215533|2 +500250|36001215763|2 +723116|36001215765|2 +550348|36001216064|2 +595689|36001216067|2 +600153|36001216068|2 +636024|36001216069|2 +635937|36001216070|2 +867672|36001216079|4 +776409|36001216332|2 +869504|36001216691|2 +732997|36001216944|2 +705964|36001216946|2 +452264|36001217311|2 +605681|36001217469|2 +460181|36001217496|2 +586031|36001217498|2 +859630|36001217499|2 +587603|36001217809|2 +618906|36001217811|2 +650256|36001218142|2 +602331|36001218262|2 +718801|36001218323|2 +546599|36001218465|2 +629302|36001218466|2 +723152|36001218467|2 +899253|36001218468|2 +497735|36001218835|2 +585846|36001218837|4 +702745|36001218839|2 +707516|36001218855|2 +794871|36001218858|2 +849854|36001218863|2 +864567|36001218866|2 +690280|36001219397|2 +875217|36001219415|2 +533076|36001219436|2 +888539|36001219539|2 +892330|36001219653|2 +621622|36001220314|2 +804480|36001220315|2 +544668|36001220417|2 +469703|36001220468|2 +470285|36001220469|2 +696030|36001220610|2 +605691|36001220658|2 +736593|36001220662|2 +738523|36001220701|2 +835017|36001220784|2 +452248|36001221110|2 +746158|36001221215|2 +599714|36001221232|2 +601412|36001221320|2 +828428|36001221321|4 +452084|36001221491|2 +829341|36001221492|4 +707515|36001221673|2 +755079|36001221675|2 +564847|36001221682|2 +500129|36001221707|2 +854267|36001221709|2 +640617|36001221776|2 +521188|36001221983|2 +562280|36001221985|2 +585843|36001222383|4 +720237|36001222385|2 +872930|36001222721|2 +774839|36001222726|2 +738538|36001222871|2 +673093|36001222873|2 +776782|36001222962|2 +703197|36001223126|2 +489738|36001223230|2 +704206|36001223342|2 +461745|36001223395|2 +724762|36001223396|2 +725167|36001223397|2 +511891|36001223505|2 +488614|36001223625|2 +772945|36001223626|2 +780635|36001223686|2 +546597|36001223821|2 +474759|36001223823|2 +879171|36001223825|2 +546864|36001223826|2 +804011|36001223828|2 +736835|36001223830|2 +700396|36001223831|2 +587899|36001223835|2 +589476|36001223849|2 +656505|36001223850|2 +901940|36001223852|2 +720868|36001223854|2 +743363|36001223857|2 +743357|36001223858|2 +605680|36001223861|2 +876625|36001223863|2 +755907|36001223864|2 +771650|36001223868|2 +692559|36001223875|2 +742840|36001223880|2 +705312|36001223884|2 +588350|36001223888|2 +777897|36001223890|2 +555242|36001223891|2 +858676|36001223892|2 +901974|36001223893|2 +534571|36001223894|2 +479683|36001223895|2 +604577|36001223897|2 +691020|36001223901|2 +479936|36001223904|2 +594961|36001223906|2 +545105|36001223907|2 +549030|36001223911|2 +657418|36001223919|2 +876464|36001223922|2 +506763|36001223924|2 +730993|36001223925|2 +899194|36001223926|2 +736861|36001223928|2 +622691|36001223936|2 +863814|36001223940|2 +804486|36001223941|2 +580119|36001224088|2 +622836|36001224118|2 +638110|36001224508|2 +518628|36001224570|2 +608434|36001224739|2 +808306|36001224740|2 +736246|36001224898|2 +787591|36001224899|2 +504195|36001225235|2 +568031|36001225236|2 +576429|36001225237|2 +662080|36001225451|2 +736357|36001225452|2 +743877|36001225454|2 +460872|36001225757|2 +795778|36001225766|2 +668228|36001225956|2 +829498|36001225996|4 +644479|36001226652|2 +752776|36001226928|2 +862347|36001227035|2 +520535|36001227320|2 +584976|36001227322|2 +611978|36001227324|2 +716157|36001227325|2 +767353|36001227326|2 +826073|36001227328|4 +854489|36001227330|2 +864055|36001227332|2 +518886|36001227444|2 +850500|36001227487|2 +594135|36001227868|2 +761209|36001228105|2 +602370|36001228131|2 +549479|36001228157|2 +540969|36001228207|2 +570891|36001228341|4 +466616|36001228505|2 +889226|36001228506|2 +842292|36001228539|2 +554604|36001228900|2 +509642|36001229029|2 +524720|36001229099|2 +743354|36001229221|2 +487858|36001229969|2 +732283|36001230145|2 +732284|36001230147|2 +732282|36001230148|2 +776255|36001230150|2 +465163|36001230473|2 +797748|36001230480|2 +723887|36001230482|2 +881581|36001230483|2 +891650|36001230484|2 +549054|36001230652|2 +502993|36001230769|2 +494015|36001230861|2 +554626|36001230863|2 +869558|36001230965|2 +645759|36001231225|2 +683877|36001231304|2 +742371|36001231753|2 +835116|36001231905|6 +700370|36001232435|2 +690811|36001232756|2 +997467|36001232788|2 +532453|36001232826|2 +792310|36001232857|4 +771780|36001232958|2 +648818|36001232961|2 +746030|36001233228|2 +802100|36001233303|2 +783081|36001233304|2 +531006|36001233421|2 +583773|36001233873|2 +603993|36001233905|2 +799260|36001233906|2 +796191|36001234027|2 +860487|36001234071|2 +460857|36001234193|2 +690209|36001234194|2 +736738|36001234379|2 +736736|36001234380|2 +1164627|36001234385|2 +460665|36001234660|2 +898149|36001234791|2 +634779|36001234936|2 +763749|36001235187|2 +485735|36001235422|2 +549977|36001235423|2 +785143|36001235427|2 +868150|36001235428|2 +828745|36001235613|4 +893360|36001235614|2 +455181|36001235817|2 +713021|36001235820|2 +849276|36001235977|2 +867661|36001235979|2 +740803|36001236040|2 +890933|36001236042|2 +844120|36001236043|2 +548901|36001236101|2 +514984|36001236337|2 +557047|36001236417|2 +485734|36001236614|2 +765294|36001236745|2 +765295|36001236746|2 +881894|36001236830|2 +540970|36001236831|2 +483496|36001237268|2 +537828|36001237269|2 +845008|36001237276|2 +864475|36001237277|2 +836889|36001237639|4 +858014|36001237644|2 +894083|36001237645|2 +643127|36001237720|2 +692176|36001237721|2 +680081|36001237804|2 +633408|36001237851|2 +733848|36001237852|2 +493485|36001238100|2 +546600|36001238101|2 +792109|36001238104|2 +593193|36001238106|2 +741765|36001238109|2 +487645|36001238281|2 +649572|36001238282|2 +742172|36001238283|2 +540082|36001238448|2 +640629|36001238449|2 +641090|36001238450|2 +681285|36001238452|2 +887697|36001238612|2 +690830|36001238726|2 +804074|36001238728|2 +876292|36001238730|2 +580897|36001238943|2 +637325|36001238947|2 +648527|36001238948|2 +707927|36001238949|2 +465252|36001239197|2 +835312|36001239198|8 +627995|36001239339|2 +675727|36001239398|2 +738518|36001239399|2 +529457|36001239457|2 +849339|36001239460|2 +533979|36001239810|2 +587751|36001240382|2 +742835|36001240501|2 +594971|36001240645|2 +850508|36001240695|2 +752166|36001240698|2 +631031|36001240702|2 +577864|36001240704|2 +551904|36001240736|2 +489813|36001240780|2 +828746|36001240781|4 +533260|36001241189|2 +474976|36001241474|2 +665617|36001241583|2 +680227|36001241584|2 +723833|36001241585|2 +795719|36001241586|2 +742804|36001241632|2 +586532|36001241654|2 +681964|36001241822|2 +539775|36001241938|4 +746123|36001241939|2 +454336|36001242089|4 +584581|36001242090|2 +657965|36001242091|2 +876628|36001242097|2 +587996|36001242278|2 +543573|36001242281|2 +696468|36001242584|2 +807648|36001242728|2 +844240|36001242839|2 +737436|36001242905|2 +769046|36001243156|2 +619843|36001243267|2 +858473|36001243268|2 +488648|36001243320|2 +595668|36001243379|2 +653481|36001243732|2 +521165|36001243850|2 +854265|36001243927|2 +866660|36001243928|2 +581835|36001244069|2 +647267|36001244070|2 +863174|36001244071|2 +563113|36001244214|2 +613364|36001244334|2 +892320|36001244336|2 +828760|36001244515|4 +581622|36001244570|2 +638627|36001244768|2 +596725|36001244771|2 +863465|36001244936|2 +893064|36001244973|2 +742806|36001245098|2 +760444|36001245099|2 +585962|36001245148|2 +540971|36001245250|2 +719609|36001245251|2 +739403|36001245252|2 +763866|36001245410|2 +749900|36001245441|2 +573327|36001245590|2 +771649|36001245592|2 +462484|36001245716|2 +538085|36001245717|2 +857238|36001245812|2 +677702|36001245884|2 +804506|36001245886|2 +723133|36001245945|2 +734247|36001246016|2 +465040|36001246237|2 +506315|36001246327|2 +542054|36001246448|2 +608439|36001246450|2 +674526|36001246451|2 +829253|36001246648|4 +496350|36001246649|2 +516368|36001246667|2 +898246|36001246746|2 +465121|36001246912|2 +542098|36001247035|2 +611186|36001247036|2 +596614|36001247173|2 +808147|36001247702|2 +897095|36001247704|2 +691902|36001247861|2 +874218|36001248167|2 +529710|36001248231|2 +874391|36001248261|2 +808308|36001248266|2 +506395|36001248358|2 +779312|36001248359|2 +787099|36001248482|2 +712172|36001248669|2 +487897|36001248749|2 +681339|36001248775|2 +848238|36001248909|2 +650599|36001248940|2 +795666|36001248956|2 +795720|36001248958|2 +866841|36001248959|2 +496989|36001249021|2 +516002|36001249058|2 +876605|36001249138|2 +458666|36001249386|2 +704215|36001249389|2 +892095|36001249390|2 +767552|36001249582|2 +718412|36001249611|2 +585820|36001249881|2 +586289|36001249883|2 +713743|36001250033|2 +774903|36001250034|2 +523355|36001250516|2 +539560|36001250517|2 +565198|36001250518|2 +728608|36001250667|2 +721603|36001250680|2 +620759|36001250772|2 +777508|36001250775|2 +759554|36001250950|2 +569792|36001251032|2 +767372|36001251033|2 +728602|36001251130|2 +487873|36001251198|2 +742818|36001251219|2 +689827|36001251220|2 +578494|36001251493|2 +453889|36001251496|2 +893302|36001251797|2 +475728|36001251806|2 +562278|36001251809|2 +731030|36001251970|2 +787852|36001251972|2 +530283|36001252036|2 +864081|36001252037|2 +544739|36001252219|2 +514885|36001252345|2 +488606|36001252652|2 +516850|36001252653|2 +808759|36001252717|2 +849858|36001252728|2 +511886|36001252798|2 +537159|36001252901|2 +675375|36001252902|2 +783769|36001252975|2 +721366|36001253451|2 +858888|36001253744|2 +858478|36001254030|2 +867656|36001254031|2 +718471|36001254254|2 +881517|36001254255|2 +620867|36001254487|2 +458461|36001254621|2 +629350|36001254820|2 +678623|36001254821|2 +702923|36001254822|2 +713744|36001255138|2 +770073|36001255210|2 +479010|36001255292|2 +618839|36001255294|2 +593640|36001255437|2 +791359|36001255443|2 +826676|36001255448|4 +763241|36001255781|2 +845262|36001255783|2 +469254|36001255918|2 +480554|36001255919|2 +827430|36001255920|4 +723909|36001255996|2 +557378|36001256090|2 +570719|36001256275|2 +856037|36001256276|2 +541915|36001256365|4 +537149|36001256402|2 +805112|36001256652|2 +777966|36001256779|2 +673145|36001256862|2 +660065|36001256875|2 +604343|36001256979|2 +574085|36001257218|2 +780255|36001257349|2 +620542|36001257415|2 +999458|36001257417|2 +715254|36001257640|2 +537639|36001257665|2 +614701|36001257753|2 +886410|36001257756|2 +629327|36001257934|2 +771513|36001258384|2 +842288|36001258512|2 +595450|36001258524|2 +673670|36001258526|2 +706741|36001258933|2 +784230|36001258955|2 +755900|36001259153|2 +776636|36001259407|2 +771281|36001259417|2 +460871|36001260045|2 +503223|36001260058|2 +524814|36001260060|2 +578278|36001260069|2 +581470|36001260070|2 +732034|36001260090|2 +851356|36001260093|2 +830371|36001260100|4 +887706|36001260102|2 +868937|36001260103|2 +483502|36001260181|2 +803007|36001260195|2 +763265|36001260197|2 +765303|36001260822|2 +804799|36001260823|2 +736268|36001261347|2 +650938|36001262331|2 +594327|36001262941|2 +549228|36001263138|2 +855455|36001263140|2 +844717|36001263318|2 +692327|36001263501|2 +837183|36001263667|4 +736860|36001263782|2 +862351|36001263784|2 +886533|36001263785|2 +655360|36001264026|2 +799509|36001264027|2 +544684|36001264369|2 +575468|36001264370|2 +734248|36001264934|2 +929335|36001264936|2 +620884|36001265049|2 +598665|36001265143|2 +795869|36001265190|2 +451777|36001265215|2 +544732|36001265420|2 +476415|36001265519|2 +653228|36001265601|2 +828763|36001265605|4 +743650|36001265776|2 +805041|36001265777|2 +545904|36001266003|2 +473861|36001266160|2 +600933|36001266230|2 +505728|36001266232|2 +886218|36001266310|2 +460825|36001267014|2 +536127|36001267015|2 +886216|36001267017|2 +762603|36001267040|2 +596950|36001267056|2 +864333|36001267265|2 +776766|36001267268|2 +534190|36001267272|2 +570395|36001267274|2 +680783|36001267283|2 +484275|36001267414|2 +901761|36001267422|2 +512181|36001267482|2 +536128|36001267486|2 +647788|36001267488|2 +702408|36001267648|2 +839060|36001267654|4 +835730|36001267923|6 +792719|36001267971|2 +877766|36001267972|2 +735093|36001268124|2 +515486|36001268174|2 +683599|36001268175|2 +891649|36001268182|2 +1060232|36001268185|2 +593758|36001268299|2 +528290|36001268394|2 +667142|36001268611|2 +882582|36001268612|2 +619886|36001268710|2 +642807|36001268711|2 +663343|36001268712|2 +663341|36001268713|2 +684394|36001268722|2 +625151|36001269244|2 +479637|36001269706|2 +532454|36001269707|2 +723166|36001269721|2 +861255|36001269724|2 +896034|36001269726|2 +694191|36001269880|2 +898993|36001270013|2 +740370|36001270453|2 +598201|36001270605|2 +683305|36001271335|2 +659892|36001271851|2 +659899|36001271852|2 +743347|36001271854|2 +792507|36001271856|2 +802982|36001271857|2 +802985|36001271859|2 +807800|36001271860|2 +497265|36001272352|2 +724976|36001272687|2 +802978|36001272688|2 +857609|36001272689|2 +680094|36001272909|2 +485622|36001273035|2 +734205|36001273039|2 +857955|36001273348|2 +517545|36001273355|2 +690508|36001273357|2 +680126|36001273706|2 +506363|36001273859|2 +528972|36001273860|2 +534496|36001273861|2 +638628|36001273863|2 +723817|36001273871|2 +493637|36001274742|2 +544666|36001274753|2 +544696|36001274755|2 +548658|36001274756|2 +585845|36001274760|4 +592399|36001274762|4 +594453|36001274765|2 +635031|36001274774|2 +689446|36001274808|2 +689544|36001274811|2 +752965|36001274813|2 +755402|36001274814|2 +539226|36001274899|2 +720529|36001274901|2 +800163|36001274912|2 +800529|36001274913|2 +848710|36001274921|2 +850318|36001274923|2 +461020|36001274927|2 +872252|36001274933|2 +492063|36001274934|2 +874575|36001274936|2 +558871|36001274938|2 +587466|36001274940|2 +663342|36001274949|2 +714395|36001274951|2 +462693|36001274983|2 +730517|36001275287|2 +738514|36001275290|2 +753841|36001275292|2 +764370|36001275295|2 +779535|36001275296|2 +780197|36001275297|2 +782242|36001275298|2 +827840|36001275300|4 +833905|36001275301|4 +837840|36001275303|2 +851893|36001275305|2 +877989|36001275307|2 +877968|36001275308|2 +898042|36001275310|2 +898247|36001275311|2 +898936|36001275312|2 +1021874|36001275327|2 +612069|36001275424|2 +749855|36001275531|2 +483912|36001275729|2 +826635|36001275986|4 +872255|36001275988|2 +888541|36001276030|2 +608132|36001277051|2 +1191228|36001277140|2 +691723|36001277145|2 +460118|36001277153|2 +836910|36001277293|4 +696575|36001277451|2 +483476|36001277945|2 +635657|36001278707|2 +644434|36001278711|2 +840712|36001279283|2 +832526|36001279337|4 +605666|36001279341|2 +569172|36001279398|2 +597245|36001279399|2 +856017|36001279402|2 +696077|36001279404|2 +744417|36001280856|2 +668581|36001280923|2 +663408|36001280925|2 +576029|36001280937|2 +762914|36001280940|2 +756104|36001281181|2 +845126|36001281184|2 +545427|36001281417|2 +545428|36001281421|2 +649719|36001281477|2 +681670|36001281561|2 +511892|36001281568|2 +757977|36001281573|2 +576732|36001281692|2 +869208|36001282421|2 +869572|36001282441|2 +489961|36001282517|2 +658590|36001282550|2 +650116|36001282664|2 +723676|36001282676|2 +736595|36001282695|2 +641478|36001283482|2 +1070319|36001284444|2 +495200|36001284646|2 +608861|36001284647|2 +668108|36001284698|2 +586281|36001284905|2 +570768|36001285101|2 +506977|36001285117|2 +653954|36001285119|2 +712180|36001285134|2 +808148|36001285181|2 +760282|36001285187|2 +497417|36001285195|2 +756091|36001285201|2 +452080|36001285292|2 +497122|36001285293|2 +653023|36001285294|2 +765561|36001285295|2 +783476|36001285296|2 +689697|36001285364|4 +457413|36001285425|2 +719835|36001285426|2 +723805|36001285428|2 +795448|36001285429|2 +563303|36001285441|2 +737599|36001285455|2 +663892|36001285504|2 +857983|36001285517|2 +729619|36001285523|2 +550293|36001285538|2 +550605|36001285540|2 +673051|36001285543|2 +684461|36001285544|2 +591568|36001285615|2 +671883|36001285632|2 +698750|36001285667|2 +457462|36001288278|2 +466200|36001288279|2 +466615|36001288280|2 +470568|36001288282|2 +491972|36001288283|2 +500136|36001288286|2 +515467|36001288289|2 +523768|36001288292|2 +533398|36001288293|2 +580940|36001288302|2 +585829|36001288305|2 +593631|36001288306|2 +595655|36001288308|2 +599987|36001288310|2 +598202|36001288311|2 +601952|36001288369|2 +621452|36001288372|2 +622230|36001288373|2 +623135|36001288375|2 +658060|36001288390|2 +640632|36001288392|2 +663044|36001288395|2 +663430|36001288396|2 +675544|36001288398|2 +689476|36001288405|2 +692859|36001288406|2 +718565|36001288407|2 +723893|36001288409|2 +742814|36001288410|2 +766801|36001288413|2 +780629|36001288415|2 +792758|36001288417|2 +801577|36001288421|2 +845434|36001288422|2 +861525|36001288447|2 +869519|36001288450|2 +892323|36001288453|2 +898245|36001288459|2 +490042|36001288602|2 +718420|36001290116|2 +856656|36001290344|2 +511866|36001290346|2 +519138|36001290348|2 +534063|36001290349|2 +545697|36001290351|2 +548279|36001290352|2 +586277|36001290353|2 +653261|36001290354|2 +669948|36001290355|2 +686076|36001290833|2 +516366|36001290838|2 +677676|36001291003|2 +691569|36001291008|2 +692560|36001291009|2 +738537|36001291245|2 +754896|36001291246|2 +756806|36001291247|2 +795829|36001291270|2 +808232|36001291273|2 +833906|36001291277|4 +852068|36001291279|2 +868864|36001291281|2 +875455|36001291283|2 +778522|36001291797|4 +505391|36001293906|2 +513918|36001293907|2 +544706|36001293909|4 +544722|36001293911|2 +667785|36001293912|2 +723918|36001293915|2 +1022292|36001293918|2 +710302|36001293988|2 +514029|36001295285|2 +617569|36001295286|2 +763887|36001295287|2 +678984|36001295622|2 +454479|36001295653|2 +535012|36001295895|2 +618069|36001295898|2 +763739|36001295959|2 +593734|36001296151|2 +571139|36001296534|2 +574101|36001296535|2 +585853|36001296536|4 +784975|36001296537|2 +764994|36001296539|2 +546136|36001296829|2 +583554|36001296830|2 +583553|36001296831|2 +586027|36001296832|2 +594328|36001296833|2 +756079|36001296835|2 +771441|36001297130|2 +544667|36001297195|2 +787421|36001297196|2 +575195|36001297479|2 +763276|36001297484|2 +678203|36001298120|2 +533961|36001298176|2 +715413|36001298581|2 +536783|36001298692|2 +478512|36001298809|2 +589464|36001298902|2 +767361|36001299238|2 +501306|36001299383|4 +516168|36001299385|2 +705166|36001299390|2 +763587|36001299392|2 +585356|36001299716|2 +705308|36001299942|2 +720526|36001299943|2 +881686|36001299950|2 +742334|36001300065|2 +804169|36001300066|2 +537150|36001300405|2 +849419|36001300408|2 +672793|36001300411|2 +518451|36001300716|2 +550512|36001300718|2 +595620|36001300719|2 +789799|36001300855|2 +730750|36001301008|2 +485787|36001301091|2 +479899|36001301162|2 +867662|36001301255|2 +894823|36001301396|2 +647293|36001301527|2 +837223|36001301581|4 +592581|36001301676|2 +662816|36001301830|2 +891642|36001301832|2 +868710|36001301905|2 +587334|36001302023|2 +636988|36001302198|2 +541550|36001302398|2 +455178|36001302470|2 +610521|36001302476|2 +674751|36001302479|2 +551532|36001302605|2 +738515|36001302934|2 +715926|36001303104|2 +718800|36001303105|2 +627761|36001303362|2 +544731|36001303477|2 +638313|36001303620|2 +596675|36001303736|2 +540972|36001303900|2 +605871|36001303901|2 +584989|36001304196|2 +584687|36001304273|2 +864334|36001304274|2 +732355|36001304468|2 +854887|36001304470|2 +620187|36001304500|2 +707079|36001304762|2 +803224|36001304855|2 +464772|36001304972|2 +464770|36001304974|2 +702744|36001304986|2 +705802|36001304987|2 +775552|36001304989|2 +854892|36001304991|2 +548433|36001305194|2 +833907|36001305524|4 +700223|36001305572|2 +452035|36001306009|2 +548405|36001306010|2 +689770|36001306011|2 +737440|36001306012|2 +637295|36001306115|2 +731202|36001306116|2 +853482|36001306118|2 +502701|36001306216|2 +874465|36001306340|2 +724146|36001306417|2 +785686|36001306418|2 +517054|36001306497|2 +546607|36001306500|2 +561767|36001306502|2 +578863|36001306503|2 +696035|36001306744|2 +636824|36001306956|2 +834111|36001306957|6 +895480|36001306959|2 +641003|36001307064|2 +628909|36001307164|2 +483729|36001307472|2 +804458|36001307473|2 +829229|36001307474|4 +835676|36001307476|8 +837528|36001307477|4 +584598|36001307754|2 +504842|36001307842|2 +680730|36001307846|2 +844719|36001307849|2 +490039|36001307917|2 +886217|36001308012|2 +898019|36001308023|2 +720537|36001308278|2 +876269|36001308289|2 +535869|36001308457|2 +493487|36001308657|2 +736055|36001308676|2 +457251|36001308716|2 +692561|36001308750|2 +798201|36001308751|2 +693656|36001308821|2 +560260|36001309091|2 +757357|36001309156|2 +779427|36001309307|2 +469971|36001309376|2 +759259|36001309795|2 +869200|36001309796|2 +690279|36001310271|2 +717298|36001310273|2 +691925|36001310286|2 +764156|36001310287|2 +867118|36001310288|2 +1222860|36001310297|2 +834112|36001310527|6 +566112|36001310782|2 +667983|36001310785|2 +667991|36001310786|2 +682441|36001310787|2 +795670|36001310788|2 +795671|36001310789|2 +785279|36001310791|2 +568046|36001311042|2 +690906|36001311048|2 +605617|36001311201|2 +509182|36001311794|2 +805596|36001311825|2 +845987|36001311904|2 +845958|36001312015|2 +592176|36001312305|2 +670607|36001312387|2 +769224|36001312388|2 +782504|36001312389|2 +860292|36001312391|2 +546593|36001312563|2 +458667|36001313060|2 +460852|36001313061|2 +704129|36001313065|2 +766010|36001313067|2 +825942|36001313081|4 +883227|36001313083|2 +890552|36001313085|2 +847920|36001313385|2 +657760|36001313388|2 +492064|36001313490|2 +892332|36001313572|2 +872497|36001313622|2 +872498|36001313625|2 +736222|36001313672|2 +684845|36001313768|2 +732248|36001313770|2 +875482|36001314000|2 +539638|36001314002|2 +756089|36001314004|2 +850315|36001314005|2 +857610|36001314006|2 +600825|36001314102|2 +705986|36001314190|2 +461008|36001314213|2 +454342|36001314315|2 +665758|36001314317|2 +717893|36001314318|2 +462244|36001314524|2 +536017|36001314525|2 +719594|36001314526|2 +781373|36001314528|2 +809715|36001314531|2 +857142|36001314542|2 +518625|36001314633|2 +541413|36001314634|2 +489189|36001314965|2 +585266|36001314966|2 +763242|36001314967|2 +716864|36001315178|2 +583378|36001315274|2 +806703|36001315426|2 +515845|36001315638|2 +684892|36001315904|2 +474556|36001316154|2 +581719|36001316261|2 +725371|36001316398|2 +644340|36001316490|2 +521262|36001316604|2 +779646|36001316821|2 +496980|36001316922|2 +551416|36001316924|2 +725536|36001316926|2 +792311|36001316928|4 +505660|36001316981|2 +693712|36001317134|2 +762490|36001317212|2 +646757|36001317324|2 +890521|36001317325|4 +482580|36001317418|2 +537765|36001317804|2 +586336|36001317806|2 +594946|36001317807|2 +770332|36001317808|2 +770331|36001317810|2 +869521|36001317813|2 +500837|36001317820|2 +634880|36001317908|2 +886392|36001318268|2 +889127|36001318323|2 +763516|36001318601|2 +765315|36001318722|2 +804827|36001318742|2 +1150530|36001318744|2 +628567|36001318892|2 +892234|36001318998|2 +686661|36001319094|2 +507753|36001319311|2 +663058|36001319315|2 +899198|36001319844|2 +764107|36001319936|2 +1154161|36001319937|2 +870841|36001320030|2 +525831|36001320911|2 +618004|36001320914|2 +725080|36001320917|2 +509435|36001320958|2 +619825|36001321264|2 +844751|36001321267|2 +625373|36001321330|2 +580942|36001321447|2 +614672|36001321606|2 +872558|36001321608|2 +887559|36001321625|2 +547742|36001322015|2 +587264|36001322018|2 +723793|36001322023|2 +619862|36001322559|2 +653325|36001322560|2 +491961|36001323333|2 +507573|36001323334|2 +514886|36001323398|2 +539659|36001323399|2 +561057|36001323400|2 +653476|36001323401|2 +664141|36001323402|2 +670657|36001323403|2 +732239|36001323404|2 +742333|36001323405|2 +744336|36001323407|2 +853422|36001323408|2 +884107|36001323410|2 +853781|36001323569|4 +712868|36001323650|2 +495308|36001323866|2 +565200|36001323867|2 +737894|36001323868|2 +990423|36001323873|2 +897577|36001323876|2 +724148|36001324198|2 +516844|36001324331|2 +615682|36001324825|2 +716158|36001324826|2 +561258|36001324985|2 +619824|36001325071|2 +530624|36001325312|2 +631166|36001325317|2 +777913|36001325322|2 +802646|36001325323|2 +852095|36001325325|2 +897247|36001325698|2 +485791|36001325766|2 +496356|36001325768|2 +660060|36001325770|2 +548587|36001325865|2 +845267|36001326326|2 +490153|36001326418|2 +785179|36001326623|2 +808153|36001326755|2 +572208|36001326967|2 +586618|36001327138|2 +684944|36001327329|2 +680440|36001327374|2 +737901|36001327589|2 +799296|36001328044|2 +832736|36001328046|4 +724420|36001328337|2 +845266|36001328501|2 +637558|36001328517|2 +723923|36001328631|2 +686777|36001328985|2 +765312|36001328986|2 +502506|36001329209|2 +636105|36001329311|2 +511664|36001329442|2 +533008|36001329443|2 +584975|36001329445|2 +742664|36001329448|2 +645930|36001329579|2 +460112|36001329589|2 +835898|36001329755|4 +602787|36001329791|2 +570137|36001329903|2 +867786|36001329909|2 +705764|36001330227|2 +742342|36001330256|2 +561230|36001330349|2 +783219|36001330960|2 +715079|36001330961|2 +1132781|36001330963|2 +829369|36001331716|4 +686858|36001333437|2 +503677|36001333760|2 +693719|36001333777|2 +488564|36001333780|2 +548140|36001333782|2 +593769|36001333783|2 +607692|36001333784|2 +637887|36001333785|2 +648533|36001333786|2 +668712|36001333788|2 +675234|36001333789|2 +708952|36001333791|2 +781196|36001333792|2 +832744|36001333795|4 +534332|36001334065|4 +680731|36001334066|2 +665510|36001334176|2 +675558|36001334201|2 +685901|36001334202|2 +855726|36001334204|2 +891628|36001334205|2 +512990|36001334474|2 +524541|36001334686|2 +586095|36001334687|2 +697798|36001334690|2 +851920|36001334791|2 +851856|36001334794|2 +660529|36001334956|2 +809249|36001334957|2 +809247|36001334958|2 +891225|36001334992|2 +517085|36001335055|2 +892236|36001335112|2 +801464|36001335114|2 +662779|36001335278|2 +700329|36001335454|2 +767516|36001335455|2 +862431|36001335456|2 +862432|36001335457|2 +497644|36001335728|2 +1036370|36001335735|2 +785141|36001336108|2 +864425|36001336110|2 +531007|36001336274|2 +547812|36001336275|2 +837225|36001336588|4 +587140|36001336826|2 +660076|36001337172|2 +794606|36001337174|2 +617098|36001337186|2 +556960|36001337235|2 +519332|36001337316|2 +689622|36001337409|2 +524633|36001337456|2 +460845|36001337495|2 +561288|36001337496|2 +593771|36001337497|2 +660071|36001337500|2 +756526|36001337504|2 +593737|36001337663|2 +801477|36001337719|2 +876517|36001337725|2 +801445|36001337727|2 +891601|36001337730|2 +586113|36001337732|2 +584596|36001338043|2 +580819|36001338049|2 +837064|36001338051|4 +637266|36001338201|2 +807641|36001338204|2 +876216|36001338205|2 +663271|36001338613|2 +796177|36001338615|2 +682370|36001338649|2 +507421|36001339104|2 +756527|36001339111|2 +876217|36001339113|2 +538564|36001339286|2 +513751|36001339710|2 +736251|36001339820|2 +855243|36001339822|2 +460830|36001339979|2 +460867|36001339980|2 +517056|36001339981|4 +792300|36001339987|2 +844593|36001339991|2 +489328|36001340588|2 +636496|36001340656|2 +706525|36001340658|2 +680789|36001340744|2 +786335|36001340748|2 +799079|36001340750|2 +452074|36001340786|2 +527493|36001340860|2 +532399|36001340981|2 +678294|36001340982|2 +757582|36001340983|2 +861254|36001340984|2 +888944|36001340986|2 +723910|36001341023|2 +802589|36001341322|2 +704578|36001341434|2 +529870|36001341556|2 +585267|36001341558|2 +646863|36001341559|2 +527225|36001341992|2 +527487|36001341993|2 +624396|36001341995|2 +639496|36001341996|2 +653177|36001342251|2 +603407|36001342425|2 +884940|36001342426|2 +715925|36001342663|2 +825393|36001342665|4 +843888|36001342841|2 +608500|36001343064|2 +766314|36001343133|2 +686869|36001343416|2 +497448|36001343589|2 +741327|36001343594|2 +756859|36001343595|2 +805603|36001344215|2 +452119|36001345049|2 +461007|36001345051|2 +549282|36001345056|2 +577565|36001345057|2 +577574|36001345058|2 +874999|36001345063|2 +890624|36001345586|2 +650265|36001346378|2 +454677|36001347274|2 +539621|36001347275|2 +484671|36001347352|2 +454822|36001347526|2 +716041|36001347529|2 +736241|36001347530|2 +795297|36001347531|2 +720276|36001347557|2 +891790|36001347590|2 +528391|36001347713|2 +517997|36001347939|2 +550440|36001347940|2 +599028|36001347941|2 +667292|36001347988|2 +854372|36001348025|2 +493167|36001348045|2 +493168|36001348046|2 +504711|36001348047|2 +529009|36001348049|2 +594141|36001348075|2 +623503|36001348085|2 +623567|36001348086|2 +657420|36001348087|2 +695179|36001348089|2 +780217|36001348090|2 +847456|36001348587|2 +479697|36001348815|2 +599619|36001348820|2 +872564|36001348829|2 +720869|36001349024|2 +459849|36001349177|2 +601220|36001349179|2 +683013|36001349180|2 +683001|36001349181|2 +869573|36001350008|2 +702786|36001350014|2 +682445|36001350138|2 +515484|36001350291|2 +619845|36001350293|2 +770746|36001350297|2 +520496|36001350745|2 +700523|36001350747|2 +721463|36001350949|2 +502804|36001352393|2 +663344|36001352406|2 +515547|36001352412|2 +866964|36001352413|2 +638619|36001353065|2 +879075|36001353640|2 +456077|36001353956|2 +530883|36001353957|2 +679131|36001354131|2 +764142|36001354132|2 +795344|36001354257|2 +847781|36001354258|2 +600189|36001354354|2 +846548|36001354355|4 +778228|36001354366|2 +461743|36001354456|2 +599310|36001354531|2 +832731|36001355114|4 +452079|36001355120|2 +554623|36001355124|2 +529459|36001355144|2 +537153|36001355146|2 +580589|36001355177|2 +705309|36001355178|2 +645979|36001355179|2 +657596|36001355180|2 +667884|36001355181|2 +718004|36001355182|2 +718014|36001355183|2 +734574|36001355184|2 +736849|36001355185|2 +761137|36001355189|2 +779873|36001355191|2 +795095|36001355193|2 +800921|36001355194|2 +800904|36001355195|2 +832741|36001355202|4 +842569|36001355204|2 +862297|36001355205|2 +866312|36001355206|2 +866313|36001355207|2 +862305|36001355218|2 +672857|36001355624|2 +594985|36001355801|2 +679200|36001355804|4 +773276|36001355834|2 +762795|36001356089|2 +775550|36001356090|2 +834109|36001356092|6 +477111|36001356331|2 +697579|36001356867|2 +581076|36001356980|2 +568386|36001357339|2 +566037|36001357345|4 +640566|36001357348|2 +654894|36001357349|2 +654539|36001357350|2 +601945|36001357402|2 +558078|36001357692|2 +510703|36001358062|2 +702079|36001358291|2 +721539|36001358293|2 +782436|36001358294|2 +782437|36001358295|2 +621267|36001358521|2 +666313|36001358523|2 +868124|36001358875|2 +864306|36001358957|2 +638117|36001359113|2 +791617|36001359114|2 +462566|36001359138|2 +513040|36001359139|2 +554615|36001359140|2 +570762|36001359141|2 +574098|36001359142|2 +579802|36001359143|2 +585317|36001359284|2 +863921|36001359307|2 +646156|36001359455|2 +647336|36001359456|2 +531987|36001359677|2 +560703|36001359685|2 +663031|36001359686|2 +723014|36001359687|2 +776471|36001359688|2 +830000|36001359797|4 +547761|36001359973|2 +891653|36001359976|2 +657453|36001360005|2 +486693|36001360072|2 +498473|36001360073|2 +547662|36001360074|2 +888945|36001360077|2 +525818|36001360234|2 +869199|36001360235|2 +594960|36001360516|2 +740039|36001360676|2 +799127|36001360677|2 +872657|36001360678|2 +837977|36001360738|4 +462128|36001360833|2 +787074|36001360836|2 +633761|36001360986|2 +886465|36001360987|2 +528975|36001361414|2 +663060|36001361415|2 +696014|36001361417|2 +714799|36001361418|2 +742828|36001361419|2 +801890|36001361510|2 +700299|36001361651|2 +697616|36001361743|2 +759578|36001361784|2 +844239|36001361786|2 +875402|36001361788|2 +875537|36001361789|2 +643126|36001361867|2 +692297|36001361966|2 +860290|36001361967|2 +748907|36001362162|2 +679456|36001362213|2 +680678|36001362215|2 +680679|36001362216|2 +699717|36001362217|2 +600932|36001362375|2 +805040|36001362377|2 +581564|36001362483|2 +504865|36001362484|2 +536324|36001362643|2 +867761|36001362659|2 +734554|36001362742|2 +702893|36001362888|2 +540412|36001362934|2 +617956|36001363021|2 +636191|36001363028|4 +1009337|36001363030|2 +774244|36001363147|2 +640614|36001363599|2 +749327|36001363602|2 +781353|36001363906|2 +581532|36001364001|2 +800750|36001364060|2 +528940|36001364540|2 +515857|36001364725|2 +833705|36001364957|4 +1154160|36001364960|2 +565199|36001365404|2 +623727|36001365405|2 +700336|36001365407|2 +767491|36001365408|2 +545698|36001365553|2 +759241|36001365585|2 +677665|36001365804|2 +779416|36001365822|2 +755261|36001366481|2 +490934|36001366635|2 +501488|36001366636|2 +483468|36001366737|2 +504204|36001366738|2 +771198|36001366916|2 +503687|36001367022|2 +571075|36001367068|2 +565720|36001367266|2 +754877|36001367267|2 +548783|36001367374|2 +541351|36001368194|4 +844580|36001368195|2 +1239474|36001368198|2 +686609|36001368394|2 +502079|36001368435|2 +511873|36001368437|2 +558058|36001368448|2 +742663|36001368452|2 +774249|36001368454|2 +774250|36001368458|2 +795779|36001368461|2 +458378|36001368881|2 +584289|36001368984|2 +713257|36001368986|2 +789839|36001369003|2 +577566|36001369076|2 +1174027|36001369236|2 +727495|36001369484|2 +593759|36001369768|2 +535014|36001369891|2 +573710|36001370139|2 +772940|36001370141|2 +667143|36001370251|2 +476348|36001370320|2 +723167|36001370389|2 +605662|36001370646|2 +668301|36001370654|2 +918731|36001370657|2 +586112|36001370978|2 +649749|36001370985|2 +742390|36001370988|2 +847921|36001371375|2 +549130|36001371536|2 +742336|36001371537|2 +754845|36001371706|2 +657230|36001371999|2 +697771|36001372003|2 +859097|36001372005|2 +859095|36001372007|2 +1252582|36001372012|2 +832904|36001372180|4 +883904|36001372199|2 +549469|36001372655|2 +673047|36001372656|2 +721448|36001372659|2 +796465|36001373029|2 +507131|36001373278|2 +567260|36001373287|2 +721128|36001373288|2 +764441|36001373320|2 +842327|36001373321|2 +857596|36001373322|2 +517057|36001373401|2 +581100|36001373402|2 +792720|36001373403|2 +895564|36001373404|2 +804196|36001373799|2 +878783|36001373801|2 +893711|36001373803|2 +477966|36001375145|2 +497442|36001375146|2 +497440|36001375147|2 +516829|36001375148|2 +520469|36001375149|2 +533334|36001375150|2 +587141|36001375151|2 +594660|36001375152|2 +644338|36001375156|2 +714494|36001375157|2 +714369|36001375158|2 +777353|36001375159|2 +805763|36001375160|2 +877768|36001375162|2 +881407|36001375163|2 +534790|36001375185|2 +725067|36001375449|2 +771563|36001375450|2 +549031|36001375657|2 +710042|36001375658|2 +512817|36001375684|2 +744334|36001375685|2 +508716|36001375686|2 +513674|36001375710|2 +572112|36001375711|2 +487874|36001376374|2 +590147|36001376415|2 +620512|36001376417|2 +675379|36001376418|2 +707921|36001376419|2 +808145|36001376601|2 +546807|36001376817|2 +590437|36001376891|2 +691878|36001376938|2 +660318|36001377102|2 +826995|36001377106|4 +828648|36001377485|4 +656920|36001377671|2 +737334|36001377724|2 +519557|36001378013|2 +666202|36001378015|2 +808154|36001378017|2 +545266|36001378100|2 +462367|36001378118|2 +876496|36001378292|2 +759221|36001378392|2 +895513|36001378410|2 +520536|36001378531|2 +714449|36001378532|2 +732998|36001378534|2 +893532|36001378535|2 +472051|36001378786|2 +706360|36001378789|2 +489539|36001378951|2 +720238|36001378955|2 +740861|36001378956|2 +766637|36001378958|2 +846549|36001378959|4 +538700|36001379076|2 +511871|36001379082|2 +683817|36001379084|2 +796658|36001379085|2 +495788|36001379252|2 +531768|36001379595|2 +653590|36001379602|2 +696055|36001379603|2 +770272|36001379604|2 +856031|36001379608|2 +560851|36001379668|2 +862527|36001379670|2 +600817|36001379831|2 +681340|36001379837|2 +536129|36001379953|2 +755240|36001380024|2 +520533|36001380061|2 +599175|36001380063|2 +796805|36001380064|2 +804075|36001380066|2 +796806|36001380223|2 +1222886|36001380338|2 +698378|36001380359|2 +757356|36001380421|2 +489425|36001380510|2 +528918|36001380621|2 +601020|36001380968|2 +704352|36001380971|2 +769489|36001380972|2 +497512|36001381600|2 +691843|36001381654|2 +658976|36001381734|2 +562127|36001381827|2 +864056|36001381828|2 +761124|36001381999|2 +737425|36001382301|2 +622231|36001382665|2 +630100|36001382755|2 +478714|36001382775|2 +625613|36001382780|2 +738528|36001382781|2 +679992|36001382954|2 +635658|36001383069|2 +460853|36001385632|2 +474927|36001385633|2 +502676|36001385635|2 +505392|36001385636|2 +519276|36001385637|2 +519530|36001385638|2 +534225|36001385640|2 +537824|36001385642|2 +561298|36001385645|2 +592343|36001385646|2 +616816|36001385652|2 +792871|36001385663|2 +720924|36001385667|2 +722700|36001385668|2 +723093|36001385669|2 +733166|36001385670|2 +764587|36001385672|2 +856273|36001385684|2 +876273|36001385685|2 +878035|36001385686|2 +880016|36001385687|2 +529058|36001385716|2 +1006900|36001385750|2 +862193|36001385810|2 +647313|36001385839|2 +708255|36001386034|2 +856714|36001386631|2 +511872|36001386675|2 +539227|36001386936|2 +623504|36001386937|2 +799868|36001386943|2 +454644|36001387012|2 +736252|36001387016|2 +896168|36001387020|2 +876006|36001387083|2 +710946|36001387141|2 +647290|36001387542|2 +617435|36001387670|2 +725377|36001387792|2 +876629|36001388058|2 +455016|36001388276|2 +856157|36001388287|2 +497260|36001388384|2 +512182|36001388385|2 +527273|36001388386|2 +549131|36001388387|2 +743373|36001388390|2 +856731|36001388391|2 +899297|36001388392|2 +594523|36001388519|2 +451410|36001388629|2 +709565|36001388630|2 +770898|36001388635|2 +615734|36001388716|2 +572531|36001388906|2 +804481|36001388984|2 +610823|36001388987|2 +877775|36001388989|2 +763747|36001389107|2 +531769|36001389229|2 +561752|36001389385|2 +772013|36001389386|4 +580864|36001389542|2 +455470|36001389857|2 +502485|36001389859|2 +653817|36001390065|2 +663927|36001390133|2 +663928|36001390291|2 +846303|36001390400|2 +454348|36001390481|2 +519148|36001390482|2 +711825|36001390485|2 +756741|36001390486|2 +787412|36001390656|2 +871558|36001390748|2 +721601|36001390830|2 +861921|36001390929|2 +543588|36001390985|2 +539639|36001391066|2 +549603|36001391068|2 +459850|36001391312|2 +588346|36001391313|2 +872290|36001391314|2 +872284|36001391316|2 +589480|36001391427|2 +658512|36001391568|2 +893312|36001391626|2 +620708|36001391753|2 +606171|36001391769|2 +512901|36001391863|2 +600818|36001391903|2 +893707|36001391921|2 +769216|36001391991|2 +681810|36001392216|2 +858613|36001392236|2 +842332|36001392423|2 +857597|36001392434|2 +604344|36001392436|2 +777350|36001392437|2 +834110|36001392438|6 +484678|36001392440|2 +591256|36001392497|2 +633773|36001392500|2 +893581|36001392527|2 +777416|36001392644|2 +741576|36001392958|2 +1117323|36001393186|2 +680732|36001393228|2 +467559|36001393802|2 +507364|36001393804|2 +611187|36001393807|2 +643758|36001393808|2 +808129|36001393810|2 +844954|36001393811|2 +869196|36001393812|2 +594652|36001394371|2 +774997|36001394373|2 +786073|36001394386|2 +804130|36001394387|2 +857231|36001394389|2 +997908|36001394394|2 +724078|36001394457|2 +483614|36001394496|2 +772201|36001394902|2 +713005|36001395277|2 +497257|36001395443|2 +588339|36001395510|2 +877649|36001395511|2 +565079|36001395536|2 +494423|36001395598|2 +826890|36001395717|4 +720916|36001395718|2 +577558|36001395724|2 +641001|36001395725|2 +849903|36001395728|2 +876610|36001395732|2 +656918|36001395914|2 +696819|36001396122|2 +455053|36001396254|2 +675627|36001396269|2 +855835|36001396273|2 +571567|36001396274|2 +544692|36001396326|2 +617091|36001396647|2 +803550|36001396652|2 +501610|36001396858|2 +668582|36001397004|2 +680754|36001397005|2 +529077|36001397020|2 +774153|36001397030|2 +644499|36001397238|2 +720921|36001397255|2 +675629|36001397598|2 +577567|36001397622|2 +602984|36001397754|2 +778804|36001397844|2 +646902|36001397849|2 +832693|36001397943|4 +595499|36001397986|2 +600287|36001397987|2 +600301|36001397988|2 +607689|36001397991|2 +774379|36001397995|2 +675630|36001398061|2 +826783|36001398385|4 +741378|36001398559|2 +771775|36001398594|2 +756865|36001398602|2 +534165|36001398603|2 +556473|36001398604|2 +570727|36001398606|2 +584597|36001398609|2 +673598|36001398616|2 +710327|36001398621|2 +707902|36001398623|2 +717892|36001398624|2 +720850|36001398625|2 +742211|36001398627|2 +801478|36001398628|2 +802478|36001398630|2 +807233|36001398632|2 +853024|36001398634|2 +889220|36001398635|2 +724339|36001398735|2 +981102|36001398754|2 +790435|36001399027|2 +514703|36001399090|2 +769472|36001399102|2 +563422|36001399678|2 +726730|36001399681|2 +693713|36001399873|2 +550705|36001399877|2 +667746|36001399897|2 +491021|36001399933|2 +653660|36001400006|2 +782596|36001400017|2 +782502|36001400022|2 +559443|36001400259|2 +530297|36001400424|2 +488458|36001400753|2 +537507|36001400814|4 +545996|36001400850|2 +549698|36001401091|2 +560849|36001401092|2 +617558|36001401094|2 +630969|36001401095|2 +785685|36001401097|2 +529105|36001401128|2 +537403|36001401404|2 +765696|36001401406|2 +892675|36001401407|2 +454260|36001401413|2 +647344|36001401417|2 +781385|36001401418|2 +839972|36001401421|4 +660756|36001401632|2 +599307|36001401633|2 +517111|36001401684|2 +609043|36001401687|2 +618267|36001401688|2 +625891|36001401689|2 +649418|36001401690|2 +723947|36001401697|2 +899051|36001401702|2 +803713|36001401732|2 +689034|36001401760|2 +468770|36001403129|2 +606550|36001403135|2 +669897|36001403161|2 +644348|36001403190|2 +478708|36001403202|2 +792860|36001403330|2 +733900|36001403356|2 +628544|36001403360|2 +677777|36001403364|2 +653681|36001403424|2 +763737|36001403430|2 +856019|36001403833|2 +876213|36001403835|2 +492222|36001403995|2 +500100|36001403997|2 +805039|36001404003|2 +509640|36001404011|2 +544910|36001404028|2 +555232|36001404036|2 +558957|36001404037|2 +561221|36001404038|2 +573890|36001404039|2 +580826|36001404041|2 +590888|36001404042|2 +601838|36001404043|2 +612188|36001404044|2 +623505|36001404106|2 +646779|36001404107|2 +706313|36001404109|2 +736740|36001404160|2 +742073|36001404162|2 +742821|36001404163|2 +761799|36001404164|2 +777600|36001404165|2 +780219|36001404167|2 +796432|36001404174|2 +529106|36001404189|2 +801056|36001404197|2 +802501|36001404198|2 +841686|36001404205|2 +858673|36001404209|2 +864092|36001404211|2 +580941|36001404242|2 +683770|36001404563|2 +610539|36001404659|2 +653661|36001404660|2 +684079|36001404663|2 +772474|36001404664|2 +619545|36001404791|2 +453521|36001404954|2 +772048|36001404955|2 +785182|36001405410|2 +495204|36001405970|2 +523552|36001405972|2 +723920|36001405973|2 +738516|36001405975|2 +762796|36001405976|2 +848074|36001406014|2 +862583|36001406015|2 +619482|36001406215|2 +708182|36001406479|2 +884474|36001406480|2 +854373|36001406483|2 +869565|36001406492|2 +547741|36001406727|2 +585391|36001406728|2 +759504|36001406769|2 +796158|36001406770|2 +831313|36001406777|4 +546904|36001407013|2 +668503|36001407179|2 +493486|36001407186|2 +554607|36001407187|2 +836616|36001407189|4 +837224|36001407191|4 +525817|36001407326|2 +489599|36001407455|2 +723927|36001407457|2 +728592|36001407458|2 +736513|36001407460|2 +763731|36001407462|2 +792152|36001407463|2 +513141|36001407701|2 +854986|36001407702|2 +658978|36001407870|2 +541427|36001408738|2 +584301|36001408739|2 +669898|36001408748|2 +676582|36001408749|2 +736514|36001408750|2 +751366|36001408751|2 +623249|36001408867|2 +734232|36001408868|2 +460854|36001409135|2 +578907|36001409143|2 +512531|36001409195|2 +512533|36001409196|2 +469704|36001409240|2 +540740|36001409242|2 +587891|36001409243|2 +720111|36001409253|2 +797123|36001409254|2 +844722|36001409256|2 +856732|36001409258|2 +901978|36001409259|2 +902049|36001409260|2 +883071|36001409443|4 +890709|36001409444|2 +875441|36001409873|2 +594423|36001409874|2 +801213|36001409877|2 +460829|36001409902|2 +657960|36001409903|2 +847457|36001410108|2 +871408|36001410109|2 +871508|36001410111|2 +581856|36001410386|2 +893322|36001410577|2 +454888|36001410619|2 +540192|36001410623|2 +666480|36001410624|2 +743439|36001410625|2 +496483|36001410650|2 +839973|36001410652|4 +571513|36001410675|2 +1040472|36001411160|2 +479011|36001411196|2 +526093|36001411198|2 +618265|36001411199|2 +691335|36001411200|2 +719727|36001411201|2 +792205|36001411202|2 +845516|36001411203|2 +855003|36001411204|2 +892235|36001411205|2 +581241|36001411567|2 +581242|36001411568|2 +761241|36001411569|2 +455471|36001412150|2 +565302|36001412151|2 +648341|36001412152|2 +648342|36001412153|2 +723928|36001412154|2 +874373|36001412156|2 +892233|36001412157|2 +896601|36001412400|2 +535895|36001412404|2 +868720|36001412405|2 +662602|36001412454|2 +839506|36001412457|6 +839478|36001412458|4 +707487|36001413222|2 +567796|36001413226|2 +901979|36001413231|2 +538877|36001413233|2 +497463|36001413392|2 +545029|36001413395|2 +689042|36001413396|2 +736273|36001413399|2 +794184|36001413402|2 +845352|36001413403|2 +862610|36001413404|2 +648535|36001413432|2 +489151|36001413879|2 +654355|36001413880|2 +654357|36001413881|2 +667982|36001413882|2 +742797|36001413884|2 +792318|36001413887|2 +888770|36001413890|2 +796532|36001413907|2 +725968|36001414163|2 +539228|36001414756|2 +580772|36001414762|2 +636192|36001414763|4 +723127|36001414764|2 +742405|36001414766|2 +835675|36001414767|8 +1119236|36001414772|2 +1268785|36001414773|2 +591479|36001414775|2 +623349|36001414776|2 +723128|36001415249|2 +833182|36001415254|4 +460822|36001416032|2 +491030|36001416036|2 +571041|36001416043|2 +583829|36001416062|2 +640633|36001416065|2 +786072|36001416097|2 +530748|36001416243|2 +634009|36001416248|2 +776362|36001416249|2 +848949|36001416807|2 +872258|36001416931|2 +837527|36001417327|4 +637883|36001417334|2 +605659|36001417337|2 +537330|36001417338|2 +736878|36001417342|2 +547019|36001417381|2 +631447|36001417437|2 +734365|36001417438|2 +534100|36001417463|2 +696909|36001417464|2 +864353|36001417465|2 +492903|36001417470|2 +521592|36001417471|2 +901947|36001417507|2 +462181|36001417527|2 +473964|36001417528|2 +519790|36001417529|2 +527498|36001417530|2 +527625|36001417532|2 +527624|36001417533|2 +548804|36001417534|2 +549478|36001417537|2 +551513|36001417544|2 +592916|36001417546|2 +872660|36001417554|2 +657017|36001417555|2 +668734|36001417558|2 +668720|36001417559|2 +710372|36001417561|2 +726731|36001417562|2 +736762|36001417567|2 +732461|36001417568|2 +743133|36001417570|2 +746920|36001417572|2 +753390|36001417573|2 +764369|36001417580|2 +773475|36001417581|2 +825274|36001417586|8 +867665|36001417587|2 +893582|36001417590|2 +648922|36001417606|2 +862586|36001417614|2 +487663|36001417628|2 +487664|36001417629|2 +502070|36001417695|2 +461015|36001417801|2 +473517|36001417802|2 +497506|36001417803|2 +530411|36001417805|2 +535896|36001417806|2 +585963|36001417807|2 +594715|36001417808|2 +603733|36001417809|2 +618735|36001417810|2 +657173|36001417811|2 +521971|36001418889|2 +521972|36001418901|2 +629303|36001418917|2 +584643|36001418956|2 +593387|36001418994|4 +600812|36001418995|2 +632421|36001418997|2 +670656|36001418998|2 +708737|36001419001|2 +854055|36001419006|2 +522714|36001419084|2 +530157|36001419328|2 +480349|36001420078|2 +559884|36001420082|2 +538084|36001420307|2 +584673|36001420316|2 +588457|36001420319|2 +608499|36001420321|2 +623062|36001420347|2 +634643|36001420350|2 +643798|36001420357|2 +662603|36001420367|2 +680301|36001420368|2 +694194|36001420383|2 +668560|36001420501|2 +619782|36001420774|2 +783035|36001420790|2 +765149|36001420793|2 +776776|36001420796|2 +778191|36001420797|2 +783269|36001420799|2 +784353|36001420802|2 +792319|36001420806|2 +859880|36001420817|2 +864049|36001420818|2 +875656|36001420819|2 +888478|36001420821|2 +892096|36001420827|2 +673085|36001421542|2 +779605|36001421544|2 +605702|36001421988|2 +804425|36001421993|2 +853070|36001421995|2 +680228|36001422103|2 +804158|36001422105|2 +1252583|36001422123|2 +587749|36001422129|2 +648405|36001422131|2 +660040|36001422132|2 +718182|36001422136|2 +795954|36001422138|2 +852887|36001422139|2 +861678|36001422142|2 +844718|36001422227|2 +613774|36001422251|2 +726140|36001422308|2 +781197|36001423084|2 +893588|36001423085|2 +600088|36001423128|2 +793585|36001423135|2 +479046|36001423708|2 +666022|36001423710|2 +849866|36001423712|2 +689800|36001424238|2 +844689|36001424240|2 +531990|36001424251|2 +538991|36001424508|2 +691428|36001424653|2 +772548|36001424654|2 +546818|36001424657|2 +618451|36001425756|2 +618452|36001425757|2 +740682|36001425796|2 +876451|36001426404|2 +791775|36001426922|2 +919981|36001427360|2 +459709|36001427379|2 +468189|36001427382|2 +484705|36001427385|2 +491885|36001427386|2 +650354|36001427430|2 +681447|36001427443|2 +681896|36001427453|2 +691568|36001427456|2 +692101|36001427459|2 +723096|36001427471|2 +479792|36001427474|2 +739047|36001427476|2 +521595|36001427483|2 +777696|36001427486|2 +534331|36001427487|4 +827823|36001427489|4 +850051|36001427497|2 +858475|36001427501|2 +869503|36001427511|2 +874629|36001427513|2 +876009|36001427517|2 +876616|36001427519|2 +884666|36001427522|2 +568982|36001427539|2 +572760|36001428414|2 +523825|36001428790|2 +771014|36001428940|2 +585854|36001428944|4 +545852|36001428945|2 +523827|36001428946|2 +782503|36001428972|2 +830854|36001428973|4 +700367|36001428994|2 +747194|36001428995|2 +894580|36001428999|2 +539816|36001429182|2 +600821|36001429183|2 +668401|36001429184|2 +458664|36001429185|2 +573661|36001429186|2 +622907|36001429187|2 +600196|36001429338|2 +460122|36001429346|2 +675644|36001429401|2 +1117324|36001429469|2 +836491|36001429518|4 +668044|36001429562|2 +560245|36001429586|2 +869193|36001429600|2 +774044|36001429708|2 +479005|36001430083|2 +868091|36001430230|2 +533005|36001430241|2 +893595|36001430254|2 +981103|36001430259|2 +706087|36001430343|2 +879167|36001431724|2 +457463|36001431789|2 +488712|36001431800|2 +490176|36001431807|2 +514530|36001431809|2 +516362|36001431814|2 +519154|36001431815|2 +756849|36001431817|2 +541300|36001431860|4 +545938|36001431861|2 +553927|36001431863|2 +576205|36001431866|2 +576204|36001431867|2 +578392|36001431868|2 +595662|36001431869|2 +645972|36001431871|2 +661101|36001431872|2 +669237|36001431979|2 +703632|36001432818|2 +718000|36001432820|2 +743384|36001433014|2 +747118|36001433064|2 +757414|36001433080|2 +763132|36001433081|2 +792320|36001433082|2 +800873|36001433084|2 +801506|36001433085|2 +852242|36001433088|2 +855182|36001433091|2 +857539|36001433092|2 +873328|36001433094|2 +896099|36001433096|2 +760886|36001433209|2 +486173|36001433286|2 +509790|36001433296|2 +540973|36001433307|2 +544728|36001433324|2 +563346|36001433330|2 +573375|36001433334|2 +617625|36001433347|2 +622245|36001433352|2 +625869|36001433357|2 +682298|36001433401|2 +705773|36001434494|2 +708745|36001434562|2 +585961|36001434701|2 +601435|36001434732|2 +569121|36001434733|2 +779595|36001434909|2 +844311|36001434913|2 +617611|36001434917|2 +866976|36001434920|2 +883108|36001434952|2 +462368|36001435342|2 +469286|36001435343|4 +569892|36001435458|2 +487977|36001435987|2 +581099|36001435990|2 +489855|36001435991|2 +490072|36001435992|2 +510678|36001435993|2 +525671|36001435995|2 +525825|36001435996|2 +584980|36001436010|2 +586250|36001436011|2 +600192|36001436013|2 +600819|36001436014|2 +600809|36001436015|2 +601434|36001436016|2 +604107|36001436017|2 +604108|36001436018|2 +605660|36001436019|2 +629951|36001436021|2 +659112|36001436023|2 +692136|36001436026|2 +728626|36001436027|2 +730751|36001436028|2 +734602|36001436029|2 +737836|36001436030|2 +781802|36001436031|2 +782340|36001436036|2 +795434|36001436040|2 +830934|36001436044|4 +841894|36001436045|2 +507103|36001436047|2 +846618|36001436048|2 +854988|36001436049|2 +883894|36001436054|2 +677650|36001436644|2 +619005|36001436984|2 +881414|36001437241|2 +712550|36001438053|2 +836890|36001438059|4 +551176|36001438381|2 +677932|36001438382|2 +723123|36001438383|2 +736242|36001438384|2 +736594|36001438385|2 +772551|36001438386|2 +795172|36001438387|2 +493008|36001438926|2 +454954|36001438933|2 +517739|36001438934|2 +580121|36001438935|2 +605663|36001438936|2 +870368|36001438945|2 +836692|36001438979|4 +553704|36001439310|2 +672514|36001439311|2 +719626|36001439406|2 +782535|36001439407|2 +794416|36001439408|2 +598457|36001439566|2 +607826|36001439567|2 +457158|36001439937|2 +558980|36001439938|2 +764995|36001439940|2 +870650|36001439941|2 +528865|36001440207|2 +795833|36001440209|2 +483941|36001440325|2 +524636|36001440326|2 +884939|36001440470|2 +764116|36001440493|2 +727641|36001440610|2 +536333|36001440989|2 +808135|36001441190|2 +591195|36001441197|2 +591569|36001441335|2 +870651|36001441464|2 +458147|36001441524|2 +477240|36001441525|2 +477239|36001441526|2 +489540|36001441527|2 +569123|36001441530|2 +716036|36001441543|2 +720239|36001441545|2 +855966|36001441735|2 +855967|36001441736|2 +561301|36001441754|2 +792431|36001441755|2 +603178|36001441905|2 +461991|36001441983|2 +794418|36001441984|2 +802105|36001441985|2 +581533|36001442121|2 +850543|36001442188|2 +492147|36001442271|2 +465350|36001442306|2 +537673|36001442333|2 +896547|36001442334|2 +460068|36001442501|2 +706511|36001442651|2 +786270|36001442655|2 +863315|36001442837|2 +848071|36001442839|2 +838358|36001443039|6 +614633|36001443080|2 +705238|36001443082|2 +710028|36001443083|2 +727640|36001443085|2 +730492|36001443086|2 +592921|36001443434|2 +463423|36001443628|2 +577559|36001443630|2 +668701|36001443631|2 +795097|36001443635|2 +587398|36001443703|2 +809823|36001443705|2 +516363|36001443713|2 +504841|36001443734|2 +594944|36001443795|2 +689421|36001444077|2 +591332|36001444078|2 +581101|36001444200|2 +693745|36001444201|2 +491135|36001444355|2 +868879|36001444359|2 +493481|36001444449|2 +550481|36001444450|2 +616616|36001444451|2 +781398|36001444452|2 +794435|36001444905|2 +577580|36001444962|2 +795435|36001444963|2 +827484|36001444964|4 +845670|36001445062|2 +700288|36001445241|2 +882019|36001445243|2 +579543|36001445429|2 +772049|36001445430|2 +801367|36001445431|2 +845084|36001445432|2 +854987|36001445433|2 +565314|36001445451|2 +800912|36001445452|2 +668504|36001445756|2 +677666|36001445757|2 +707206|36001445758|2 +848239|36001445759|2 +856382|36001445760|2 +517248|36001445951|2 +716484|36001446176|2 +763730|36001446177|2 +840906|36001446413|2 +458660|36001446445|2 +489546|36001446527|2 +856155|36001446529|2 +550345|36001446626|2 +567073|36001446627|2 +696002|36001446853|2 +585844|36001446975|4 +579542|36001447054|2 +594645|36001447055|2 +689861|36001447056|2 +774506|36001447058|2 +774381|36001447060|2 +877015|36001447061|2 +834205|36001447491|4 +714896|36001447578|2 +856673|36001447580|2 +877249|36001447582|2 +717852|36001447746|2 +474974|36001447881|2 +670448|36001447886|2 +847322|36001447887|2 +894544|36001447888|2 +642452|36001447889|2 +487740|36001448013|2 +882206|36001448014|2 +862433|36001448211|2 +457239|36001448404|2 +521652|36001448405|2 +664398|36001448408|2 +723148|36001448409|2 +630877|36001448495|2 +580668|36001448647|2 +743173|36001448648|2 +862623|36001448700|2 +836091|36001448844|4 +540413|36001448902|2 +781112|36001448904|2 +553086|36001449001|2 +462164|36001449277|2 +515125|36001449279|2 +654015|36001449282|2 +841937|36001449283|2 +842074|36001449284|2 +853421|36001449285|2 +691535|36001449311|2 +807247|36001449383|2 +853647|36001449384|2 +531717|36001449836|2 +607185|36001449837|2 +640611|36001449838|2 +646819|36001449839|2 +842204|36001449840|2 +863004|36001449841|2 +593686|36001449947|2 +602885|36001450010|2 +736229|36001450011|2 +737033|36001450038|2 +766123|36001450069|2 +766094|36001450070|2 +865772|36001450273|2 +893238|36001450274|2 +894693|36001450324|2 +854517|36001450347|2 +855849|36001450349|2 +675643|36001450441|2 +795624|36001450718|2 +795776|36001450719|2 +875194|36001450720|2 +883895|36001450721|2 +829099|36001450743|4 +829100|36001450746|4 +648348|36001450774|2 +518454|36001451131|2 +684046|36001451132|2 +870920|36001451133|2 +662820|36001451217|2 +771306|36001451304|2 +593633|36001451596|2 +672521|36001451597|2 +870921|36001451974|2 +454261|36001451982|2 +489742|36001451985|2 +504028|36001451986|2 +604795|36001451987|2 +605146|36001451988|2 +605274|36001451989|2 +628505|36001451990|2 +673596|36001451993|2 +771506|36001451997|2 +860438|36001451998|2 +694922|36001452006|2 +534226|36001452156|2 +650203|36001452159|2 +683862|36001452414|2 +853208|36001452415|2 +865167|36001452416|2 +865168|36001452417|2 +619555|36001452528|2 +684047|36001452531|2 +583379|36001452664|2 +583446|36001452665|2 +733045|36001452667|2 +853209|36001452668|2 +862582|36001452669|2 +483972|36001452687|2 +673465|36001452753|2 +853845|36001452754|2 +462343|36001453136|2 +488563|36001453138|2 +506687|36001453139|2 +522389|36001453140|2 +534266|36001453142|2 +690953|36001453143|2 +794419|36001453144|2 +858217|36001453146|2 +875195|36001453147|2 +509035|36001453374|2 +623537|36001453396|2 +786269|36001453398|2 +860443|36001453401|2 +700192|36001453483|4 +843844|36001453674|2 +779201|36001453892|2 +844687|36001453893|2 +480774|36001454181|2 +786958|36001454182|2 +825391|36001454183|4 +665800|36001454715|2 +738187|36001455179|2 +738188|36001455181|2 +773470|36001455183|2 +892319|36001455184|2 +677690|36001455197|2 +727438|36001455200|2 +522851|36001455417|2 +842891|36001455455|2 +523356|36001455582|2 +626079|36001455776|2 +748250|36001455972|2 +753597|36001455973|2 +864830|36001455974|2 +868125|36001455983|2 +730620|36001456122|2 +775256|36001456123|2 +767595|36001456415|2 +795039|36001456416|2 +800252|36001456417|2 +874144|36001456418|2 +874130|36001456419|2 +850383|36001456470|2 +858932|36001456471|2 +1205247|36001456480|2 +829115|36001456671|4 +707255|36001456900|2 +551174|36001457130|2 +613044|36001457131|2 +767594|36001457132|2 +776145|36001457134|2 +495188|36001457184|2 +546891|36001457185|2 +834668|36001457190|4 +530427|36001457415|2 +723168|36001457416|2 +742819|36001457417|2 +587442|36001457421|2 +500604|36001458462|2 +580229|36001458464|2 +619352|36001458465|2 +690598|36001458475|2 +705069|36001458476|2 +705084|36001458477|2 +730505|36001458478|2 +767082|36001458479|2 +779883|36001458480|2 +794417|36001458499|2 +619357|36001458553|2 +495260|36001458574|2 +617653|36001458876|2 +509131|36001458924|2 +581849|36001458925|2 +845069|36001458926|2 +501851|36001459036|2 +738534|36001459037|2 +653490|36001459178|2 +525206|36001459247|2 +868821|36001459252|2 +765290|36001459386|2 +492043|36001459442|2 +834077|36001459687|4 +758831|36001459801|2 +891031|36001459802|4 +519401|36001460092|2 +460589|36001460188|2 +460946|36001460190|2 +530098|36001460191|2 +598714|36001460193|2 +598715|36001460195|2 +630178|36001460196|2 +791250|36001460198|2 +868830|36001460199|2 +526094|36001460201|2 +771849|36001460533|2 +506770|36001460540|2 +792847|36001460542|2 +836420|36001460543|8 +538851|36001460818|2 +737030|36001460821|2 +840761|36001460822|2 +762845|36001461102|2 +524097|36001461456|2 +614914|36001461460|2 +846149|36001461464|2 +881416|36001461465|2 +633294|36001461478|2 +502556|36001461798|2 +571204|36001461810|2 +578908|36001461818|2 +565269|36001461834|2 +663042|36001461836|2 +711295|36001462147|2 +753139|36001462324|2 +807597|36001462326|2 +807603|36001462327|2 +795823|36001462392|2 +831626|36001462607|4 +832198|36001462608|4 +781337|36001462837|2 +489652|36001462901|2 +633242|36001462902|2 +892676|36001462903|2 +529035|36001463210|2 +746589|36001463295|2 +765406|36001463296|2 +837689|36001463297|6 +496944|36001463558|2 +724759|36001463781|2 +509644|36001463926|2 +616850|36001463974|2 +526536|36001464269|2 +526776|36001464271|2 +601018|36001464591|2 +807245|36001464592|2 +770660|36001464699|2 +605527|36001464865|2 +592074|36001465057|2 +891234|36001465072|2 +891057|36001465073|4 +803004|36001465231|2 +470983|36001465372|2 +675609|36001465468|2 +778725|36001465845|2 +556085|36001465917|2 +668736|36001465927|2 +881415|36001465931|2 +780473|36001465969|2 +497709|36001465971|2 +742831|36001465972|2 +500436|36001465973|2 +667939|36001465974|2 +854138|36001465976|2 +866521|36001465977|2 +502521|36001466158|2 +827320|36001466212|4 +827319|36001466213|4 +643745|36001466467|2 +687745|36001466468|2 +804013|36001466563|2 +763726|36001466788|2 +640116|36001467012|2 +868101|36001467020|2 +586334|36001467185|2 +876007|36001467186|2 +670655|36001467195|2 +684311|36001467196|2 +684310|36001467197|2 +1156529|36001467199|2 +501489|36001467370|2 +735408|36001467374|2 +488431|36001467437|2 +635395|36001467438|2 +640126|36001467440|2 +576437|36001467517|2 +780358|36001467518|2 +454992|36001467556|2 +858382|36001467697|2 +827031|36001467783|4 +462781|36001468143|2 +507302|36001468144|2 +719459|36001468148|2 +762861|36001468152|2 +768978|36001468155|2 +845265|36001468156|2 +1060233|36001468160|2 +884108|36001468344|2 +683878|36001468495|2 +526773|36001468514|2 +673466|36001468516|2 +894543|36001468517|2 +630972|36001468568|2 +884609|36001468570|2 +534523|36001468898|2 +828845|36001468914|4 +673983|36001468971|2 +830831|36001469012|4 +902291|36001469018|2 +560640|36001469295|2 +535013|36001469403|2 +710328|36001469404|2 +754375|36001469405|2 +587789|36001469443|2 +538099|36001469663|2 +481942|36001470162|2 +596611|36001470178|2 +614700|36001470180|2 +718938|36001470181|2 +782341|36001470182|2 +803218|36001470184|2 +845270|36001470185|2 +860591|36001470431|2 +836979|36001470433|4 +459911|36001470501|2 +638108|36001470512|2 +723147|36001470513|2 +726141|36001470514|2 +580138|36001470741|2 +844865|36001470746|2 +861517|36001470747|2 +455051|36001470881|2 +841254|36001470882|2 +529031|36001471008|2 +860146|36001471046|2 +877668|36001471047|2 +507628|36001471124|2 +686848|36001471127|2 +898103|36001471275|2 +517898|36001471495|2 +795101|36001471600|2 +695844|36001471653|2 +536785|36001472192|2 +559300|36001472193|2 +618064|36001472194|2 +692152|36001472220|2 +1164628|36001472222|2 +506349|36001472284|2 +508788|36001472285|2 +565054|36001472286|2 +592628|36001472287|2 +608891|36001472288|2 +616779|36001472289|2 +683938|36001472290|2 +715987|36001472291|2 +716858|36001472292|2 +799987|36001472293|2 +510672|36001472629|2 +577578|36001472631|2 +581691|36001472632|2 +695082|36001472634|2 +827096|36001472635|4 +780942|36001472923|2 +466317|36001473126|2 +670789|36001473137|2 +770623|36001473140|2 +620304|36001473143|2 +533251|36001473338|2 +867647|36001473844|2 +867664|36001473845|2 +470592|36001473925|2 +520926|36001473939|2 +858469|36001473958|2 +464878|36001474211|2 +534573|36001474212|2 +537914|36001474213|2 +794298|36001474220|2 +849863|36001474221|2 +863404|36001474222|2 +472919|36001474335|2 +511392|36001474368|2 +636832|36001474501|2 +681929|36001475096|4 +856087|36001475101|2 +523856|36001475110|2 +680915|36001475111|2 +696079|36001475112|2 +794872|36001475114|2 +665171|36001475127|2 +673046|36001475130|2 +844097|36001475132|2 +779594|36001475350|2 +779496|36001475352|2 +600810|36001475355|2 +763297|36001475364|2 +461728|36001475970|2 +540291|36001475971|2 +634653|36001475973|2 +636680|36001475974|2 +672541|36001475975|2 +705219|36001475976|2 +867657|36001476100|2 +844625|36001476948|2 +844690|36001476949|2 +882207|36001476951|2 +595657|36001476952|2 +598663|36001476953|2 +672545|36001476954|2 +674556|36001476955|2 +842577|36001476956|2 +851420|36001476957|2 +851421|36001476958|2 +874522|36001476959|2 +874521|36001476960|2 +779540|36001476988|2 +484974|36001477009|2 +674558|36001477010|2 +754328|36001477011|2 +779445|36001477014|2 +460873|36001477648|2 +478801|36001477650|2 +541628|36001477654|2 +540974|36001477655|2 +546780|36001477658|2 +586443|36001477725|2 +663012|36001477739|2 +669612|36001477740|2 +676575|36001477741|2 +677735|36001477797|2 +680938|36001477799|2 +785974|36001478071|2 +795098|36001478095|2 +829121|36001478104|4 +892340|36001478129|2 +796188|36001478130|2 +844714|36001478145|2 +848557|36001478151|2 +848950|36001478153|2 +878571|36001478155|2 +852623|36001478158|2 +500214|36001479078|2 +519931|36001479080|2 +580231|36001479082|2 +586096|36001479083|2 +625870|36001479085|2 +645984|36001479087|2 +657597|36001479088|2 +667745|36001479090|2 +705167|36001479091|2 +741156|36001479092|2 +761479|36001479094|2 +771890|36001479095|2 +776908|36001479096|2 +779910|36001479097|2 +803724|36001479099|2 +803725|36001479100|2 +804678|36001479101|2 +805282|36001479103|2 +855595|36001479104|2 +899033|36001479533|2 +899034|36001479537|2 +540232|36001479539|2 +543373|36001479624|2 +529046|36001479625|2 +708644|36001479626|2 +562689|36001479627|2 +732456|36001479688|2 +588924|36001479689|2 +456765|36001479706|2 +460120|36001479708|2 +537642|36001479709|2 +736263|36001479710|2 +757052|36001479711|2 +607187|36001479712|2 +858384|36001479714|2 +893583|36001479715|2 +619875|36001479857|2 +836884|36001481034|4 +790373|36001481116|2 +708573|36001481347|2 +772008|36001481473|2 +483355|36001482434|2 +519341|36001482438|2 +569076|36001482443|2 +723806|36001482447|2 +747782|36001482450|2 +776882|36001482451|2 +829219|36001482454|4 +684700|36001482470|2 +896000|36001482484|2 +1198791|36001482585|2 +454337|36001483046|4 +488023|36001483054|4 +500095|36001483055|2 +521645|36001483057|2 +632091|36001483058|2 +632419|36001483060|2 +633293|36001483061|2 +657211|36001483063|2 +726941|36001483066|2 +736254|36001483067|2 +743358|36001483073|2 +765292|36001483075|2 +771132|36001483079|2 +537162|36001483149|2 +770677|36001483282|2 +864832|36001483570|2 +505399|36001483700|2 +457747|36001484069|2 +581584|36001484081|2 +618301|36001484092|2 +847938|36001484295|2 +527170|36001484371|2 +838862|36001484374|4 +838667|36001484380|4 +584651|36001484490|2 +626074|36001484491|2 +846877|36001484495|2 +856482|36001484500|2 +856274|36001484502|2 +544669|36001484507|2 +620105|36001484509|2 +857327|36001484510|2 +540840|36001484825|2 +584628|36001485060|2 +584614|36001485069|2 +584775|36001485072|2 +468467|36001485100|2 +510352|36001485101|2 +789209|36001485102|2 +889138|36001485104|2 +705621|36001485321|2 +562125|36001485510|2 +509130|36001485511|2 +523500|36001485512|2 +584672|36001485513|2 +590066|36001485514|2 +760321|36001485515|2 +784334|36001485516|2 +803750|36001485517|2 +808149|36001485518|2 +869574|36001485519|2 +891587|36001485520|2 +746119|36001485531|2 +853025|36001485532|2 +586376|36001485657|2 +457165|36001485658|2 +716545|36001485660|2 +807119|36001485664|2 +671889|36001485665|2 +481561|36001485759|2 +876311|36001485760|2 +896539|36001485761|2 +558819|36001485764|2 +700849|36001485819|2 +832332|36001485821|4 +868445|36001485822|2 +624293|36001485824|2 +479818|36001485906|2 +498413|36001485907|2 +607677|36001485909|2 +695066|36001485912|2 +700376|36001485915|2 +707903|36001485943|2 +715874|36001485945|2 +717894|36001485946|2 +736753|36001485950|2 +792863|36001485952|2 +826431|36001485954|4 +829124|36001485956|4 +830020|36001485959|4 +876549|36001485960|2 +888768|36001485963|2 +1044099|36001485994|2 +772404|36001486015|2 +630402|36001486612|2 +753916|36001486613|2 +541478|36001486638|2 +786721|36001486648|2 +784152|36001486962|2 +861947|36001488125|2 +533860|36001488136|2 +473732|36001488139|2 +635000|36001488237|2 +682214|36001488239|2 +657481|36001488242|2 +801748|36001488243|2 +845214|36001488246|2 +515685|36001488248|2 +864732|36001488252|2 +770260|36001488254|2 +770619|36001488257|2 +828202|36001488263|4 +743367|36001488373|2 +460827|36001488419|2 +460846|36001488420|2 +587281|36001488430|2 +624160|36001488433|2 +723900|36001488514|2 +778515|36001488587|2 +780417|36001488590|2 +857993|36001488621|2 +893328|36001488644|2 +1076844|36001488813|2 +496351|36001489001|2 +496696|36001489003|2 +517081|36001489031|2 +457145|36001489084|2 +546914|36001489085|2 +581137|36001489087|2 +601079|36001489089|2 +602742|36001489090|2 +617093|36001489091|2 +619127|36001489093|2 +666553|36001489098|2 +691443|36001489100|2 +698216|36001489102|2 +704884|36001489104|2 +707926|36001489106|2 +778355|36001489110|2 +780385|36001489112|2 +786068|36001489114|2 +793943|36001489117|2 +803818|36001489138|2 +807120|36001489141|2 +870394|36001489154|2 +875811|36001489156|2 +876518|36001489158|2 +888771|36001489159|2 +833209|36001489481|2 +488131|36001489653|2 +593544|36001489713|2 +846276|36001489714|2 +549699|36001490156|2 +578942|36001490666|2 +677554|36001490667|2 +508849|36001490851|2 +760968|36001490865|2 +700393|36001491120|4 +720172|36001491318|2 +522393|36001491475|2 +532201|36001491476|2 +587567|36001491478|2 +587798|36001491479|2 +588528|36001491517|2 +647529|36001491518|2 +707256|36001491520|2 +522861|36001491681|2 +801722|36001491691|2 +832330|36001491700|4 +832331|36001491703|4 +895563|36001491717|2 +890553|36001491718|2 +892337|36001491721|2 +891030|36001491722|4 +902132|36001491790|2 +548652|36001492048|2 +691903|36001492050|2 +848078|36001492051|2 +666552|36001492354|2 +692044|36001492355|2 +713558|36001492356|2 +713559|36001492359|2 +841874|36001492360|2 +747439|36001492460|2 +480384|36001492544|2 +664788|36001492545|2 +605684|36001492674|2 +622926|36001492675|2 +693750|36001492744|2 +668737|36001492747|2 +832915|36001492748|4 +507223|36001492793|2 +792862|36001492915|2 +680600|36001493029|2 +537674|36001493148|2 +548594|36001493149|2 +676735|36001493151|2 +880292|36001493152|2 +483159|36001493158|2 +741273|36001493347|2 +524032|36001493545|2 +735493|36001493736|2 +794793|36001494088|2 +780275|36001494138|2 +567972|36001494305|2 +567973|36001494306|2 +606073|36001494648|2 +706398|36001494654|2 +455637|36001494734|2 +565670|36001494738|2 +1250281|36001494750|2 +776856|36001495063|2 +859958|36001495096|2 +861370|36001495143|2 +656912|36001495328|2 +733046|36001495358|2 +730416|36001495613|2 +592644|36001496016|2 +829226|36001496020|4 +849324|36001496022|2 +511884|36001496188|2 +599611|36001496385|2 +520464|36001496405|2 +709566|36001496406|2 +580678|36001496456|2 +587836|36001496459|2 +601682|36001496460|2 +691865|36001496581|2 +874504|36001496583|2 +850382|36001496604|2 +777914|36001496871|2 +742406|36001496963|2 +845068|36001497010|2 +523568|36001497355|2 +619126|36001497359|2 +695072|36001497419|2 +581760|36001497625|2 +893214|36001497626|2 +510687|36001497817|2 +510688|36001497818|2 +570775|36001497819|2 +727437|36001497820|2 +856550|36001497821|2 +479932|36001497939|2 +534424|36001497940|2 +605125|36001497986|2 +770346|36001498065|2 +839786|36001498066|4 +675204|36001498126|2 +850297|36001498127|2 +584998|36001498182|2 +691819|36001498207|2 +538340|36001498618|2 +869551|36001498744|2 +643880|36001498866|2 +845766|36001498893|2 +797966|36001499059|2 +548653|36001499073|2 +779683|36001499078|2 +791003|36001499079|2 +875193|36001499080|2 +876465|36001499081|2 +557072|36001499190|2 +736269|36001499194|2 +797031|36001499575|2 +976397|36001499693|2 +632008|36001499812|2 +683818|36001499892|2 +866836|36001499906|2 +618649|36001499999|2 +856780|36001500012|2 +696051|36001500178|2 +576756|36001500339|2 +719595|36001500342|2 +719508|36001500343|2 +475762|36001500439|2 +593239|36001500440|2 +765298|36001500516|2 +868123|36001500517|4 +767630|36001500581|2 +762384|36001500583|2 +501312|36001500655|2 +723303|36001500658|2 +469972|36001500726|2 +546839|36001500729|2 +686136|36001500730|2 +653408|36001500794|2 +507429|36001500878|2 +767058|36001500962|2 +875937|36001501122|2 +540012|36001501433|2 +669054|36001501434|2 +538647|36001501482|2 +681267|36001501484|2 +681271|36001501485|2 +681289|36001501486|2 +556177|36001501596|2 +590808|36001501754|2 +590809|36001501756|2 +591527|36001501757|2 +873829|36001501908|2 +460666|36001502076|2 +624044|36001502305|2 +693869|36001502373|2 +705215|36001502466|2 +504186|36001502467|2 +579390|36001502518|2 +543333|36001502562|2 +575406|36001502563|2 +708720|36001502569|2 +732242|36001502570|2 +732243|36001502571|2 +459877|36001502704|2 +895705|36001502856|2 +460590|36001502966|2 +747673|36001502968|2 +545094|36001503070|2 +760279|36001503071|2 +859117|36001503072|2 +859116|36001503073|2 +705311|36001503180|2 +736986|36001503181|2 +647566|36001503264|2 +538892|36001503362|2 +548595|36001503499|2 +731955|36001503657|2 +606336|36001503763|2 +736600|36001503766|2 +827432|36001503768|4 +835606|36001503769|6 +694112|36001503789|2 +461955|36001503836|2 +663545|36001503837|2 +663508|36001503838|2 +506191|36001503974|2 +506189|36001503975|2 +516108|36001503977|2 +516107|36001503978|2 +548830|36001503979|2 +612147|36001503980|2 +612148|36001503981|2 +713804|36001503984|2 +617160|36001504360|2 +762794|36001504405|2 +667883|36001504417|2 +856324|36001504426|2 +519284|36001504431|2 +865163|36001504578|2 +895740|36001504579|2 +884608|36001504735|2 +468020|36001504736|2 +859027|36001504738|2 +558488|36001504828|2 +681277|36001504829|2 +848076|36001504831|2 +890124|36001504832|2 +895715|36001504833|2 +580902|36001504913|2 +890128|36001504914|2 +767355|36001505067|2 +728647|36001505073|2 +883435|36001505304|2 +667752|36001505305|2 +677708|36001505306|2 +747935|36001505307|2 +857322|36001505312|2 +579372|36001505313|2 +732400|36001505423|2 +757261|36001505424|2 +777863|36001505425|2 +661166|36001505487|2 +537445|36001505533|2 +693010|36001505534|2 +843846|36001505536|2 +874872|36001505538|4 +536177|36001505635|2 +861922|36001505640|2 +510288|36001505821|2 +623276|36001505822|2 +829287|36001505824|4 +880820|36001505836|2 +767362|36001505929|2 +695847|36001506153|2 +713040|36001506156|2 +720867|36001506157|2 +858239|36001506158|2 +858247|36001506160|2 +490070|36001506290|2 +570806|36001506291|2 +520651|36001506298|2 +759257|36001506303|2 +877998|36001506516|2 +546656|36001506743|2 +633473|36001506744|2 +459135|36001506836|2 +623335|36001506933|2 +746932|36001506934|2 +877275|36001507107|2 +818055|36001507113|2 +846185|36001507115|2 +776429|36001507116|2 +546865|36001507119|2 +591896|36001507188|4 +529104|36001507298|2 +882192|36001507301|2 +640613|36001507440|2 +830917|36001507459|4 +836345|36001507569|4 +544714|36001507659|2 +584688|36001507660|2 +753155|36001507661|2 +848951|36001507773|2 +515002|36001507828|2 +574096|36001507831|2 +721538|36001507844|2 +547779|36001508108|2 +547673|36001508109|2 +588313|36001508110|2 +687869|36001508242|2 +796722|36001508385|2 +705176|36001508386|2 +599321|36001508468|2 +836614|36001508469|4 +849338|36001508471|2 +856793|36001508472|2 +856768|36001508473|2 +534164|36001508904|2 +648408|36001508907|2 +779866|36001508909|2 +773136|36001509063|2 +481772|36001509136|2 +620142|36001509139|2 +623511|36001509140|2 +665992|36001510155|2 +584940|36001510156|2 +704994|36001510157|2 +561276|36001510159|2 +587343|36001510160|2 +681328|36001510162|2 +720538|36001510349|2 +742235|36001510353|4 +837835|36001510360|4 +874646|36001510362|2 +893584|36001510364|2 +795451|36001510368|2 +886328|36001510571|2 +634586|36001510572|2 +675793|36001510573|2 +679793|36001510574|2 +691725|36001510575|2 +782677|36001510576|2 +844509|36001510577|2 +579451|36001511733|2 +761016|36001511737|2 +498317|36001511985|2 +858467|36001511989|2 +554809|36001511990|2 +852662|36001511994|2 +689852|36001511999|2 +522319|36001512000|2 +899254|36001512002|2 +573673|36001512005|2 +478664|36001512006|2 +462565|36001512013|2 +675227|36001512016|2 +580227|36001512018|2 +844932|36001512039|2 +555000|36001512055|2 +858616|36001512057|2 +723124|36001512067|2 +723125|36001512075|2 +707611|36001512077|2 +536175|36001512100|2 +876514|36001512106|2 +577570|36001512113|2 +469139|36001512241|2 +547101|36001512242|2 +643716|36001512243|2 +761134|36001512244|4 +799745|36001512247|2 +874447|36001512248|2 +890346|36001512251|2 +466637|36001512289|2 +473734|36001512290|2 +479174|36001512291|2 +485594|36001512292|2 +491190|36001512295|2 +470012|36001512343|2 +543858|36001512344|2 +550568|36001512348|2 +561815|36001512350|2 +598716|36001512353|2 +627366|36001512358|2 +644345|36001512360|2 +631026|36001512362|2 +677722|36001512367|2 +706439|36001512372|2 +806020|36001512379|2 +878030|36001512390|2 +771507|36001512394|2 +790120|36001512396|2 +863190|36001512427|2 +869575|36001512433|2 +692078|36001512489|2 +800098|36001512514|2 +807231|36001512516|2 +756332|36001512518|2 +836421|36001512521|8 +585857|36001512580|4 +786875|36001512583|2 +786877|36001512584|2 +789978|36001512597|2 +790374|36001512598|2 +803997|36001512612|2 +686086|36001512701|2 +843290|36001512706|2 +887455|36001512715|2 +887503|36001512716|2 +888946|36001512717|2 +613415|36001512811|2 +537311|36001512822|2 +466633|36001512897|2 +599025|36001512900|2 +693870|36001512925|2 +560652|36001513048|2 +576274|36001513196|2 +856866|36001513264|2 +723942|36001513278|2 +562268|36001513359|2 +692147|36001513360|2 +719610|36001513361|2 +765567|36001513365|2 +765568|36001513367|2 +808140|36001513377|2 +595669|36001513476|2 +764110|36001513478|2 +840726|36001513480|2 +806743|36001513561|2 +579172|36001513696|2 +847644|36001513707|2 +598914|36001513802|2 +736596|36001513804|2 +480438|36001513863|2 +589877|36001513864|2 +664097|36001513866|2 +803989|36001513867|2 +748491|36001513980|2 +551173|36001514073|2 +894082|36001514092|2 +841022|36001514340|2 +592645|36001514414|2 +886538|36001514695|2 +561222|36001514769|2 +736274|36001514806|2 +683677|36001514955|2 +624161|36001514956|2 +807278|36001515055|2 +791328|36001515318|2 +682398|36001515404|2 +853850|36001515557|2 +736255|36001515735|2 +730649|36001515757|2 +792394|36001516038|4 +556762|36001516215|2 +872250|36001516220|2 +586708|36001516290|2 +891623|36001516299|2 +589315|36001516471|2 +664327|36001516473|2 +585334|36001516640|2 +663043|36001516642|2 +720528|36001516644|2 +892020|36001516648|2 +892021|36001516649|2 +795949|36001516652|2 +549625|36001516844|2 +520467|36001516938|2 +854518|36001516942|2 +596220|36001517229|2 +663017|36001517240|2 +734233|36001517252|2 +841936|36001517253|2 +515155|36001517292|2 +549048|36001517293|2 +531289|36001517360|2 +710263|36001517381|2 +722248|36001517382|2 +902091|36001517563|2 +624045|36001517649|2 +783956|36001517650|2 +898957|36001517850|2 +624893|36001518003|2 +891486|36001518019|2 +734545|36001518039|2 +664873|36001518044|2 +561231|36001518069|2 +687790|36001518108|2 +530289|36001518501|2 +556071|36001518776|2 +540193|36001518937|2 +833461|36001519062|4 +550935|36001519063|2 +801463|36001519067|2 +846150|36001519157|2 +581534|36001519291|2 +730493|36001519293|2 +539035|36001519562|2 +705748|36001519599|2 +760054|36001519704|2 +757726|36001519713|2 +585567|36001519766|2 +644500|36001519807|2 +580612|36001519924|2 +490960|36001520118|2 +592170|36001520119|2 +725651|36001520122|2 +468469|36001520248|2 +468468|36001520249|2 +801947|36001520250|2 +876508|36001520252|2 +566536|36001520336|2 +602382|36001520337|2 +553911|36001520601|2 +625801|36001520603|2 +806993|36001520686|2 +639171|36001520875|2 +593632|36001521243|2 +466617|36001521295|2 +668783|36001521299|2 +459410|36001521351|2 +781354|36001521615|2 +561277|36001521696|2 +531991|36001521935|2 +768017|36001521939|2 +765562|36001522042|2 +742805|36001522103|2 +578440|36001522120|2 +651402|36001522121|2 +799202|36001522129|2 +647218|36001522145|2 +597547|36001522345|2 +837476|36001522493|6 +695700|36001522506|2 +489628|36001522518|2 +525816|36001522597|2 +594223|36001522599|2 +833297|36001522606|4 +608284|36001522719|2 +790358|36001522722|2 +692562|36001523044|2 +891535|36001523051|2 +531288|36001523159|2 +846624|36001523160|2 +575568|36001523163|2 +475333|36001523166|2 +549709|36001523447|2 +577556|36001523448|2 +486610|36001523450|2 +891654|36001523452|2 +736754|36001523453|2 +490885|36001523454|2 +641948|36001523455|2 +568384|36001523566|2 +882580|36001523567|2 +882581|36001523568|2 +687276|36001523792|2 +885362|36001523793|2 +629945|36001523794|2 +560924|36001523856|2 +901512|36001523857|2 +580899|36001523858|2 +472249|36001523975|2 +647562|36001523978|2 +741221|36001523981|2 +626258|36001524018|2 +598913|36001524152|2 +700309|36001524322|2 +700310|36001524323|2 +618820|36001524502|2 +653431|36001524505|2 +685653|36001524507|2 +478978|36001524541|2 +717078|36001524661|2 +505751|36001524662|2 +500233|36001524663|2 +561067|36001524664|2 +849422|36001524665|2 +550569|36001524739|2 +927836|36001524745|2 +460113|36001524805|2 +732045|36001524828|2 +849464|36001524907|2 +581755|36001524910|2 +726723|36001525232|2 +756080|36001525443|2 +750594|36001525618|2 +637005|36001525783|2 +586521|36001525789|2 +835120|36001525791|4 +835121|36001525792|4 +844030|36001525802|2 +537446|36001526256|2 +704760|36001526489|2 +680472|36001526765|2 +640616|36001526774|2 +584747|36001526787|2 +592627|36001526790|2 +762556|36001526839|2 +548915|36001527271|2 +549047|36001527273|2 +548573|36001527274|2 +548682|36001527275|2 +554555|36001527279|2 +1222862|36001527282|2 +683441|36001527300|2 +874015|36001527347|2 +598568|36001527348|2 +605145|36001527351|2 +890866|36001527413|2 +900436|36001527645|2 +884362|36001527646|2 +753055|36001527683|2 +678139|36001527692|2 +721343|36001527696|2 +700232|36001527700|2 +508787|36001527895|2 +832730|36001528072|4 +863790|36001528077|2 +885375|36001528080|2 +667187|36001528094|2 +1148581|36001528105|2 +774601|36001528106|2 +678202|36001528114|2 +845085|36001528115|2 +662645|36001528332|2 +662727|36001528333|2 +896128|36001528335|2 +605628|36001528370|2 +588529|36001528437|2 +655321|36001528459|2 +881691|36001528461|2 +507728|36001528671|2 +507840|36001528672|2 +849423|36001528685|2 +849465|36001528687|2 +782510|36001528689|2 +509948|36001528782|2 +517072|36001528784|2 +720960|36001529089|2 +747936|36001529090|2 +624724|36001529161|2 +481779|36001529414|2 +506205|36001529415|2 +785683|36001529419|2 +604489|36001529425|2 +604490|36001529426|2 +704594|36001529439|2 +524936|36001529446|2 +784645|36001529450|2 +582495|36001529451|2 +638103|36001529453|2 +534035|36001529457|2 +747187|36001529649|2 +633432|36001529650|2 +741157|36001529652|2 +741158|36001529810|2 +863571|36001529812|2 +635647|36001530551|2 +634585|36001530553|2 +683006|36001530673|2 +862628|36001531401|2 +580233|36001531409|2 +580234|36001531410|2 +580237|36001531412|2 +599024|36001531413|2 +525087|36001531465|2 +850384|36001531467|2 +870067|36001531468|2 +560559|36001531470|2 +646746|36001531737|2 +571890|36001531743|4 +480500|36001531934|2 +484336|36001531935|2 +457986|36001531939|2 +472554|36001531940|2 +852812|36001531945|2 +692430|36001531946|2 +458946|36001532016|2 +473128|36001532017|2 +660395|36001532018|2 +721239|36001532019|2 +721240|36001532020|2 +493998|36001532033|2 +849373|36001532035|2 +808015|36001532038|2 +652849|36001532597|2 +504209|36001532598|2 +504206|36001532599|2 +504208|36001532600|2 +467866|36001532601|2 +691830|36001532661|2 +778192|36001532711|2 +591480|36001532713|2 +673590|36001532725|2 +741532|36001532726|4 +901980|36001532753|2 +565046|36001532754|2 +808016|36001532758|2 +882052|36001532759|2 +586726|36001532823|2 +586717|36001532825|2 +700193|36001533614|2 +849860|36001533615|2 +653838|36001533616|2 +546135|36001533617|2 +469402|36001533619|2 +499250|36001533627|2 +762846|36001533628|2 +602966|36001533640|2 +602826|36001533641|2 +495207|36001533645|2 +735098|36001533646|2 +607669|36001533658|2 +782602|36001533663|2 +847537|36001536290|2 +672248|36001536291|4 +741227|36001536292|2 +741275|36001536294|2 +632049|36001536303|2 +584727|36001536409|2 +710329|36001536411|2 +733899|36001536421|2 +635109|36001536424|2 +783927|36001536428|2 +454477|36001537163|2 +753829|36001537164|2 +856128|36001537239|2 +567635|36001537241|2 +726469|36001537245|2 +710330|36001537264|2 +488013|36001537276|2 +535949|36001537278|2 +902080|36001537291|2 +869522|36001537295|2 +732238|36001537298|2 +639499|36001537316|2 +856794|36001537451|2 +898151|36001537452|2 +967144|36001537464|2 +455058|36001537810|2 +508712|36001537826|2 +544615|36001537840|2 +544616|36001537854|2 +847635|36001537897|2 +756088|36001537945|2 +691729|36001538310|2 +826246|36001538346|4 +872269|36001538350|2 +489527|36001539569|2 +543044|36001539572|2 +636935|36001539573|2 +723480|36001539574|4 +803066|36001539580|2 +604787|36001539590|2 +518822|36001539595|2 +580704|36001539635|2 +797896|36001539638|2 +875437|36001539704|2 +631082|36001539705|2 +667863|36001539708|2 +667913|36001539711|2 +529776|36001539726|2 +641949|36001539735|2 +586411|36001539774|2 +775896|36001539805|2 +832916|36001539809|4 +591566|36001539877|2 +858132|36001539925|2 +736987|36001539930|2 +650193|36001539936|2 +736211|36001539938|2 +754025|36001539939|2 +838259|36001539948|4 +838260|36001539949|4 +494004|36001539955|2 +784335|36001539958|2 +589521|36001539959|2 +470987|36001539974|2 +589483|36001539976|2 +516109|36001539979|2 +780254|36001541717|2 +734572|36001541756|2 +862428|36001541763|2 +892406|36001541772|2 +660953|36001541810|2 +720037|36001541814|2 +534194|36001541817|2 +696411|36001541892|2 +770028|36001541894|2 +827485|36001541899|4 +546806|36001541900|2 +511381|36001541904|2 +723478|36001541910|4 +723479|36001541917|4 +559206|36001541943|2 +548136|36001541945|2 +602309|36001542359|2 +586029|36001542368|2 +587730|36001542401|2 +587759|36001542405|2 +572198|36001542422|2 +662674|36001542424|2 +779823|36001542428|2 +531713|36001542448|2 +540283|36001542454|2 +804381|36001542467|2 +508850|36001542469|2 +895481|36001542476|2 +525552|36001542536|2 +833298|36001542542|4 +839824|36001542548|4 +558859|36001542552|2 +515897|36001542581|2 +829699|36001542592|4 +658347|36001542594|2 +465153|36001542617|2 +495477|36001542623|2 +835082|36001542633|2 +847738|36001542634|2 +514786|36001543216|2 +514785|36001543272|2 +534192|36001543617|2 +551580|36001543691|2 +551581|36001543695|2 +763240|36001545113|2 +689422|36001545212|2 +561733|36001545475|2 +493999|36001545485|2 +606975|36001545499|2 +480117|36001545524|2 +896001|36001545572|2 +460886|36001545581|4 +477169|36001545593|2 +504197|36001545634|2 +523828|36001545998|2 +668496|36001546146|2 +658179|36001546156|2 +508785|36001546162|2 +494011|36001546169|2 +543052|36001546186|2 +591481|36001546200|2 +592059|36001546211|2 +792078|36001546214|2 +785628|36001546235|2 +597871|36001546238|2 +726578|36001546293|2 +798127|36001546304|2 +792571|36001546311|2 +621091|36001546348|2 +893327|36001546352|2 +828857|36001546412|4 +675235|36001546419|2 +884832|36001546431|2 +1083531|36001546434|2 +840723|36001546442|2 +772948|36001546444|2 +772947|36001546454|2 +722350|36001546470|2 +533732|36001546490|2 +538184|36001546493|2 +586284|36001546508|2 +575417|36001546518|2 +731956|36001546525|2 +467955|36001546548|2 +509959|36001546572|2 +790087|36001546591|2 +802337|36001546593|2 +763291|36001546602|2 +718456|36001546604|2 +763287|36001546605|2 +691308|36001546610|2 +691296|36001546611|2 +584641|36001546618|2 +731389|36001546630|2 +743132|36001546638|2 +548274|36001546642|2 +734556|36001546652|2 +585835|36001546655|2 +481569|36001546658|2 +776308|36001546678|2 +878575|36001546687|2 +723906|36001546706|2 +859419|36001546731|2 +856769|36001546734|2 +846151|36001546737|2 +887494|36001546744|2 +876603|36001546749|2 +808913|36001546766|2 +708545|36001546864|2 +577454|36001546870|2 +782943|36001546875|2 +500229|36001546918|2 +832588|36001546944|4 +809919|36001546962|2 +796338|36001546964|2 +706505|36001546965|2 +451377|36001546972|2 +833462|36001546998|4 +783955|36001547001|2 +535893|36001547020|2 +579582|36001547022|2 +479044|36001547032|2 +891059|36001547054|2 +1148582|36001547081|2 +525594|36001547091|2 +580639|36001547095|2 +737112|36001547097|2 +616630|36001547101|2 +544911|36001547186|2 +593802|36001547190|2 +559301|36001548057|2 +643740|36001548572|2 +888462|36001548573|2 +667892|36001548580|2 +799952|36001548581|2 +854935|36001548582|2 +738957|36001548585|2 +545782|36001548587|2 +633405|36001548588|2 +844585|36001548589|2 +771510|36001548798|4 +523760|36001550077|2 +851672|36001550082|2 +681323|36001550096|2 +532829|36001550099|2 +597615|36001550105|2 +503009|36001550114|2 +774255|36001550116|2 +726221|36001550118|2 +737408|36001551473|2 +855942|36001551478|2 +893571|36001551489|2 +546852|36001551494|2 +736232|36001551496|2 +533329|36001551570|2 +549321|36001551574|2 +640625|36001551575|2 +510351|36001551577|2 +494424|36001551622|2 +496703|36001551639|2 +617578|36001551661|2 +585397|36001551663|2 +653016|36001552048|2 +832687|36001552050|4 +726477|36001552072|2 +662030|36001552075|2 +572552|36001552087|2 +759861|36001552097|2 +760152|36001552105|2 +840663|36001552122|2 +741990|36001552190|2 +770899|36001552202|2 +653063|36001552242|2 +544123|36001552258|2 +738526|36001552352|2 +733846|36001552510|2 +881423|36001552516|2 +723359|36001552533|2 +723784|36001552554|2 +634764|36001552983|2 +663259|36001553015|2 +723100|36001553089|2 +501003|36001553102|2 +515239|36001553127|2 +774602|36001553159|2 +753456|36001553182|2 +776857|36001553222|2 +522322|36001553226|2 +869201|36001553392|2 +480853|36001553399|2 +533327|36001553402|2 +533325|36001553403|2 +794466|36001553462|2 +685346|36001553464|2 +526597|36001553643|2 +853846|36001553674|2 +883436|36001554249|2 +508000|36001554274|2 +569215|36001554277|2 +702292|36001554284|2 +689098|36001555338|2 +797288|36001555391|2 +457174|36001555895|2 +827486|36001555901|4 +894100|36001555919|2 +599026|36001555927|2 +542474|36001555936|2 +835376|36001555944|8 +790249|36001555948|2 +491760|36001555980|2 +850504|36001555987|2 +858535|36001556001|2 +522252|36001556007|2 +525481|36001556008|2 +736914|36001556009|2 +621265|36001556010|2 +892778|36001556011|2 +798237|36001556020|2 +798217|36001556022|2 +852362|36001556027|2 +594425|36001556047|2 +880377|36001556064|2 +695068|36001556069|2 +474862|36001556085|2 +1107074|36001556093|2 +677551|36001556103|2 +894354|36001556104|2 +686451|36001556106|2 +493700|36001556109|2 +706397|36001556117|2 +481762|36001556121|2 +732038|36001556122|2 +534193|36001556165|2 +837184|36001556166|4 +493701|36001556167|2 +510441|36001556168|2 +547037|36001556170|2 +645779|36001556171|2 +731954|36001556172|2 +476300|36001556537|2 +488745|36001556795|2 +725481|36001556798|2 +484969|36001556817|2 +839871|36001556832|4 +699805|36001557134|2 +699806|36001557135|2 +647219|36001557636|2 +501834|36001558638|2 +726457|36001558643|2 +797987|36001558657|2 +478455|36001558658|2 +685186|36001558688|2 +503383|36001558722|2 +847274|36001558723|2 +856781|36001558740|2 +458074|36001558878|2 +481775|36001558880|2 +504709|36001558881|2 +803798|36001558882|2 +525645|36001559129|2 +506147|36001559198|2 +539423|36001559244|2 +462192|36001559540|2 +503335|36001559545|2 +548564|36001559547|2 +740542|36001559555|2 +740543|36001559556|2 +744744|36001559557|2 +747586|36001559558|2 +776768|36001559560|2 +839896|36001559561|4 +844328|36001559562|2 +875782|36001559571|2 +899081|36001559572|2 +899244|36001559575|2 +580613|36001559635|2 +723143|36001559638|2 +782755|36001559653|2 +483424|36001559654|2 +746960|36001559782|2 +795087|36001559826|2 +635396|36001559987|2 +635397|36001559988|2 +776274|36001560557|2 +712529|36001560563|2 +489102|36001560570|2 +496835|36001560571|2 +808730|36001560573|2 +636439|36001560643|2 +783901|36001560644|2 +524665|36001560955|2 +763077|36001560956|2 +743368|36001560959|2 +859151|36001560963|2 +868094|36001560964|2 +728465|36001560966|2 +458962|36001560967|2 +854519|36001560968|2 +500787|36001560995|2 +800866|36001560997|2 +835693|36001560998|4 +836904|36001560999|6 +853038|36001561000|2 +745758|36001562069|2 +633407|36001562531|2 +486696|36001562721|2 +559143|36001562735|2 +605361|36001562736|2 +752808|36001562742|2 +548683|36001562777|2 +578910|36001562778|2 +464702|36001562884|2 +704005|36001562887|2 +558981|36001562910|2 +795446|36001562917|2 +836903|36001562918|4 +785146|36001562922|2 +862212|36001562924|2 +531823|36001562930|2 +650620|36001562933|2 +705307|36001562958|2 +791251|36001562959|2 +837058|36001562960|4 +745344|36001562962|2 +485790|36001562963|2 +496491|36001562964|2 +559009|36001562989|2 +741573|36001563044|2 +571001|36001563047|2 +840772|36001563088|2 +601027|36001563111|2 +677927|36001563113|2 +704188|36001563114|2 +876626|36001563116|2 +506466|36001563117|2 +675721|36001563118|2 +803783|36001563119|2 +515132|36001563121|2 +629211|36001563122|2 +723103|36001563124|2 +1268786|36001563130|2 +551605|36001563131|2 +548596|36001563142|2 +770350|36001563147|2 +665916|36001563264|2 +665924|36001563265|2 +730391|36001563267|2 +753646|36001563268|2 +520554|36001563308|2 +530406|36001563315|2 +548720|36001563513|2 +572841|36001563514|2 +629304|36001563517|2 +847083|36001563529|2 +649630|36001563533|2 +744335|36001563553|2 +673667|36001563559|2 +673668|36001563560|2 +828204|36001563562|4 +802986|36001564101|2 +896002|36001564114|2 +539661|36001564170|2 +587607|36001564171|2 +609046|36001564176|2 +612180|36001564177|2 +675564|36001564183|2 +893231|36001564184|2 +555578|36001564185|2 +599077|36001564186|2 +598624|36001564187|2 +657020|36001564202|2 +768937|36001564204|2 +543548|36001564365|2 +696081|36001564368|2 +795136|36001564499|2 +637735|36001566418|2 +638630|36001566419|2 +519022|36001566535|2 +716855|36001566536|2 +783292|36001566537|2 +681583|36001566538|2 +876627|36001566568|2 +500786|36001566669|2 +528213|36001566670|2 +639228|36001566677|2 +677882|36001566682|2 +836093|36001566683|4 +868867|36001566684|2 +518623|36001566687|2 +768977|36001566688|2 +549961|36001566695|2 +595687|36001566697|2 +595683|36001566698|2 +826903|36001566699|4 +893786|36001566700|2 +795088|36001566707|2 +479933|36001566769|2 +785581|36001566795|2 +892689|36001566796|2 +695061|36001566800|2 +796202|36001566801|2 +700226|36001566805|2 +599001|36001566863|2 +519023|36001566864|2 +475668|36001566889|2 +715489|36001566890|2 +740827|36001566891|2 +759985|36001566892|2 +483852|36001566896|2 +536784|36001566907|2 +516649|36001566909|2 +457536|36001567089|2 +756389|36001567091|2 +538698|36001567157|2 +720106|36001567160|2 +862434|36001567164|2 +668493|36001567173|2 +1257882|36001567187|2 +866320|36001567294|2 +691318|36001567567|2 +560850|36001567596|2 +735112|36001567719|2 +457248|36001567720|2 +868587|36001567744|4 +549366|36001567832|2 +693525|36001567833|2 +657425|36001567896|2 +783905|36001567900|2 +856018|36001567901|2 +504017|36001568210|2 +504018|36001568211|2 +504019|36001568212|2 +843395|36001568318|2 +461717|36001568515|2 +678865|36001568517|2 +888542|36001568518|2 +565047|36001568588|2 +517866|36001568665|2 +747973|36001568666|2 +535525|36001568755|2 +572530|36001568756|2 +859497|36001568758|2 +850678|36001568826|2 +647343|36001568901|2 +716729|36001568902|2 +747706|36001568903|2 +486159|36001569258|2 +646962|36001569498|2 +889207|36001569686|2 +513039|36001569998|2 +517872|36001569999|2 +865807|36001570458|2 +634608|36001570467|2 +683637|36001570468|2 +709777|36001570469|2 +756808|36001570470|2 +836285|36001570516|4 +869616|36001570517|2 +667090|36001570690|2 +808014|36001570700|2 +563629|36001570795|2 +744323|36001570796|2 +902011|36001570801|2 +497208|36001570882|2 +658751|36001571082|2 +658658|36001571083|2 +491725|36001571189|2 +497224|36001571363|2 +497225|36001571364|2 +628607|36001571365|2 +497210|36001571471|2 +509880|36001571611|2 +550210|36001571619|2 +474106|36001571621|2 +658752|36001571622|2 +669427|36001571623|2 +466437|36001571781|4 +834519|36001571797|4 +853646|36001571828|2 +520455|36001571912|2 +574097|36001572193|2 +690376|36001572211|4 +518468|36001572313|2 +680028|36001572395|2 +680025|36001572396|2 +684015|36001572397|2 +833963|36001572398|6 +683448|36001572437|2 +683452|36001572438|2 +716492|36001572442|2 +483766|36001572519|2 +568629|36001572764|2 +496779|36001572765|2 +691023|36001572772|2 +630589|36001572942|2 +491027|36001573030|2 +891487|36001573135|2 +759001|36001573351|2 +764073|36001573353|2 +474975|36001573367|2 +588103|36001573369|2 +560961|36001573775|2 +770615|36001573780|2 +501419|36001573785|2 +573222|36001573786|2 +697804|36001573787|2 +480186|36001573854|2 +602069|36001573856|2 +493223|36001573997|2 +523685|36001573999|2 +669290|36001574000|2 +720155|36001574265|2 +496424|36001574283|2 +560960|36001574398|2 +643048|36001574399|2 +754408|36001574400|2 +851419|36001574793|2 +595685|36001574811|2 +687791|36001574950|2 +565234|36001574960|2 +775548|36001575004|2 +645491|36001575165|2 +716298|36001575221|2 +689602|36001575325|2 +862181|36001575326|2 +556763|36001575473|2 +645428|36001575474|2 +645419|36001575475|2 +702970|36001575618|2 +597399|36001575918|2 +835956|36001575919|4 +866517|36001575920|2 +623312|36001576057|2 +705145|36001576058|2 +745334|36001576166|2 +850542|36001576168|2 +582347|36001576224|2 +672032|36001576263|2 +733115|36001576286|2 +874520|36001576413|2 +465239|36001576540|2 +799937|36001576614|2 +799938|36001576615|2 +474105|36001576836|2 +535716|36001576925|4 +902079|36001577023|2 +519586|36001577027|2 +856345|36001577029|2 +597066|36001577066|2 +753093|36001577069|2 +796189|36001577070|2 +719224|36001577087|2 +835799|36001577091|6 +577655|36001577097|2 +769426|36001577247|2 +585398|36001577353|2 +755598|36001577356|2 +805994|36001577431|2 +792164|36001577584|2 +807587|36001577585|2 +869559|36001577591|2 +452339|37000657321|2 +452342|37000657322|2 +453123|37000657323|2 +453176|37000657324|2 +454702|37000657326|2 +454993|37000657328|2 +455255|37000657329|2 +455259|37000657330|2 +456679|37000657333|2 +456607|37000657334|2 +459326|37000657341|2 +459294|37000657342|2 +459321|37000657343|2 +459340|37000657345|2 +459300|37000657346|2 +459322|37000657347|2 +459308|37000657348|2 +459332|37000657349|2 +459290|37000657351|2 +459292|37000657352|2 +461189|37000657356|2 +461345|37000657357|2 +461304|37000657358|2 +462419|37000657359|2 +527460|37000657360|2 +462224|37000657363|2 +463069|37000657364|2 +465916|37000657370|2 +467067|37000657371|2 +467453|37000657374|2 +644884|37000657378|2 +467992|37000657380|2 +470101|37000657382|2 +471554|37000657385|2 +471046|37000657386|2 +471222|37000657388|2 +471832|37000657389|2 +472795|37000657391|4 +472697|37000657394|2 +472673|37000657396|2 +472684|37000657397|2 +472612|37000657398|2 +472739|37000657399|2 +472698|37000657401|2 +472569|37000657404|2 +472791|37000657406|2 +472570|37000657407|2 +472767|37000657409|2 +472841|37000657411|2 +472462|37000657412|2 +472842|37000657413|2 +472699|37000657414|2 +472463|37000657417|2 +472843|37000657418|2 +472584|37000657419|2 +472411|37000657420|2 +472493|37000657422|2 +472464|37000657423|2 +472371|37000657424|2 +472337|37000657426|4 +472700|37000657428|2 +472856|37000657429|2 +472807|37000657430|4 +472338|37000657431|4 +473141|37000657433|2 +473152|37000657434|2 +473276|37000657436|2 +473311|37000657437|2 +473370|37000657439|2 +473777|37000657440|2 +474370|37000657441|2 +474904|37000657442|2 +474905|37000657443|2 +474906|37000657444|2 +475706|37000657446|2 +475968|37000657448|2 +476666|37000657449|2 +476790|37000657450|2 +476741|37000657451|2 +476982|37000657452|2 +476983|37000657453|2 +796790|37000657454|2 +478287|37000657455|2 +478286|37000657457|2 +478288|37000657459|2 +478787|37000657462|2 +478929|37000657463|2 +478825|37000657464|2 +479709|37000657465|2 +480304|37000657466|2 +480305|37000657467|2 +480803|37000657468|2 +480805|37000657469|2 +480956|37000657470|2 +481103|37000657471|2 +481116|37000657472|2 +481479|37000657473|2 +481544|37000657475|2 +482318|37000657481|2 +482776|37000657490|2 +482909|37000657492|2 +482904|37000657493|2 +485992|37000657499|2 +487333|37000657503|2 +488250|37000657508|2 +489126|37000657510|4 +489831|37000657511|2 +489888|37000657512|2 +490101|37000657513|2 +490104|37000657514|2 +491562|37000657515|2 +491934|37000657516|2 +492634|37000657521|2 +492997|37000657523|2 +493047|37000657524|2 +493049|37000657525|2 +493205|37000657526|2 +494226|37000657527|2 +494167|37000657528|2 +494729|37000657530|2 +494730|37000657531|2 +495340|37000657532|2 +495330|37000657533|2 +495376|37000657534|2 +495401|37000657536|2 +495438|37000657537|2 +495569|37000657539|2 +495591|37000657540|2 +496274|37000657541|2 +863278|37000657542|2 +496266|37000657543|2 +496271|37000657544|2 +496519|37000657545|2 +496583|37000657546|2 +497072|37000657547|2 +497124|37000657549|2 +497036|37000657550|2 +497874|37000657552|2 +867112|37000657553|2 +498226|37000657555|2 +498224|37000657556|2 +498215|37000657557|2 +498214|37000657558|2 +498220|37000657559|2 +498312|37000657563|2 +498519|37000657565|2 +498918|37000657567|2 +498911|37000657569|2 +498897|37000657570|2 +499362|37000657571|2 +499363|37000657572|2 +499456|37000657573|2 +501224|37000657575|2 +501167|37000657576|2 +501225|37000657577|2 +501433|37000657578|2 +501395|37000657579|2 +501384|37000657580|2 +502061|37000657581|4 +501879|37000657582|2 +502273|37000657583|2 +503715|37000657587|2 +503958|37000657588|4 +503997|37000657589|2 +503881|37000657591|2 +504715|37000657596|2 +504973|37000657597|2 +505020|37000657598|2 +505530|37000657601|2 +505644|37000657602|2 +506661|37000657603|2 +506637|37000657604|2 +506662|37000657605|2 +506638|37000657606|2 +506710|37000657607|4 +506787|37000657608|2 +506788|37000657609|2 +506783|37000657610|2 +506785|37000657611|2 +507001|37000657613|2 +507418|37000657614|2 +507854|37000657616|2 +507889|37000657618|2 +507928|37000657620|2 +508035|37000657621|2 +508423|37000657622|2 +508773|37000657623|2 +508777|37000657624|2 +509398|37000657625|2 +509483|37000657626|2 +509713|37000657627|2 +511326|37000657629|2 +511299|37000657630|2 +511368|37000657631|2 +511267|37000657633|2 +511461|37000657635|2 +512313|37000657639|2 +513334|37000657641|2 +513308|37000657642|2 +513375|37000657643|2 +513443|37000657644|2 +616279|37000657645|2 +513444|37000657646|2 +513703|37000657647|2 +515485|37000657650|2 +516003|37000657652|2 +515882|37000657653|2 +517324|37000657655|2 +517449|37000657656|2 +517370|37000657657|2 +517450|37000657659|2 +517823|37000657660|2 +691397|37000657662|4 +518799|37000657663|2 +520279|37000657669|2 +520280|37000657670|2 +521983|37000657673|2 +521984|37000657674|2 +522234|37000657675|2 +523022|37000657678|2 +523008|37000657679|2 +523140|37000657680|2 +523123|37000657683|2 +523141|37000657684|2 +523139|37000657685|2 +523142|37000657686|2 +523449|37000657687|2 +523710|37000657690|2 +523580|37000657691|2 +524089|37000657694|2 +524207|37000657695|2 +524208|37000657696|2 +524474|37000657697|2 +524281|37000657698|2 +525822|37000657701|2 +525820|37000657702|2 +526444|37000657703|2 +527456|37000657707|2 +527791|37000657708|2 +527826|37000657709|2 +527902|37000657710|2 +527858|37000657711|2 +528422|37000657713|2 +528789|37000657715|2 +529068|37000657717|2 +529069|37000657718|2 +529070|37000657719|2 +529072|37000657721|2 +529227|37000657722|2 +529367|37000657723|2 +529364|37000657724|2 +529956|37000657727|2 +530005|37000657728|2 +530625|37000657730|2 +530629|37000657731|2 +531106|37000657732|2 +533279|37000657735|2 +533675|37000657736|2 +533684|37000657737|2 +533677|37000657738|2 +533683|37000657739|2 +533666|37000657740|2 +837965|37000657741|4 +533767|37000657742|2 +533768|37000657743|2 +533770|37000657744|2 +705719|37000657746|2 +534299|37000657747|2 +534198|37000657749|2 +535573|37000657754|2 +535574|37000657756|2 +535515|37000657757|2 +535658|37000657760|2 +535819|37000657761|2 +536751|37000657762|2 +537101|37000657765|2 +537730|37000657767|2 +541871|37000657768|2 +540458|37000657769|4 +540988|37000657772|2 +540989|37000657773|2 +539866|37000657774|2 +541558|37000657778|2 +540990|37000657779|2 +539332|37000657780|4 +539852|37000657781|2 +541207|37000657782|2 +540460|37000657783|4 +539285|37000657784|2 +539286|37000657785|2 +539834|37000657786|2 +540635|37000657787|2 +542202|37000657788|2 +542641|37000657789|2 +542598|37000657790|2 +542793|37000657791|2 +542802|37000657792|2 +542803|37000657793|2 +543101|37000657795|2 +543079|37000657796|2 +543093|37000657797|2 +543735|37000657801|2 +543736|37000657802|2 +486522|37000657803|2 +544459|37000657804|2 +544937|37000657806|2 +545026|37000657807|2 +544917|37000657808|2 +544958|37000657809|4 +544959|37000657810|4 +545055|37000657812|2 +545001|37000657813|2 +545773|37000657816|2 +545994|37000657818|2 +545997|37000657819|2 +546055|37000657820|2 +546411|37000657821|2 +547239|37000657825|2 +548862|37000657826|2 +549249|37000657827|2 +549235|37000657828|2 +549245|37000657829|2 +550403|37000657830|2 +551281|37000657834|2 +553060|37000657839|2 +553061|37000657840|2 +553583|37000657841|2 +553584|37000657842|2 +702235|37000657843|2 +553674|37000657844|2 +555006|37000657847|2 +555019|37000657848|2 +555957|37000657849|2 +555956|37000657850|2 +556095|37000657851|2 +557261|37000657856|2 +557262|37000657857|2 +559083|37000657861|2 +495391|37000657862|2 +559274|37000657863|4 +559394|37000657865|4 +560601|37000657866|2 +560573|37000657867|2 +561555|37000657872|2 +561560|37000657873|2 +561900|37000657874|2 +561914|37000657875|2 +561859|37000657877|2 +562189|37000657879|2 +562735|37000657880|2 +562764|37000657881|2 +562736|37000657884|2 +562749|37000657885|2 +562750|37000657886|2 +564039|37000657887|2 +564086|37000657888|2 +564048|37000657889|2 +564068|37000657890|2 +564459|37000657892|2 +564483|37000657893|2 +564595|37000657896|2 +564596|37000657897|2 +565594|37000657899|2 +565595|37000657900|2 +565647|37000657901|2 +565606|37000657902|2 +566093|37000657903|2 +568032|37000657906|2 +567919|37000657913|2 +567754|37000657914|2 +568508|37000657915|2 +568605|37000657916|2 +569667|37000657917|2 +570008|37000657918|2 +569982|37000657919|2 +570081|37000657920|2 +570398|37000657923|2 +666446|37000657927|2 +571035|37000657928|2 +571054|37000657929|2 +572164|37000657930|2 +572496|37000657933|2 +573585|37000657934|2 +573664|37000657935|2 +574770|37000657936|2 +574788|37000657937|2 +576736|37000657939|2 +580071|37000657940|2 +580050|37000657941|2 +580306|37000657942|2 +1164657|37000657943|2 +580343|37000657944|2 +580344|37000657945|2 +580404|37000657946|2 +580429|37000657947|2 +581034|37000657949|2 +580995|37000657950|2 +871462|37000657951|2 +581035|37000657952|2 +581708|37000657953|2 +581682|37000657954|2 +581727|37000657955|2 +581590|37000657956|4 +581557|37000657957|2 +581683|37000657960|2 +581782|37000657961|2 +582233|37000657966|2 +582380|37000657968|2 +582554|37000657969|2 +582705|37000657970|2 +582785|37000657971|2 +582820|37000657972|2 +582742|37000657973|2 +583611|37000657974|2 +583610|37000657975|2 +583612|37000657976|2 +583613|37000657977|2 +584525|37000657978|2 +584502|37000657979|2 +584526|37000657980|2 +584830|37000657981|2 +586385|37000657984|2 +586453|37000657985|2 +521476|37000657988|2 +586763|37000657989|2 +587951|37000657990|2 +587954|37000657994|2 +589106|37000657995|2 +589601|37000657996|2 +589588|37000657997|2 +589990|37000657999|2 +590812|37000658000|2 +591171|37000658003|2 +592423|37000658007|2 +592271|37000658008|2 +592871|37000658009|2 +593191|37000658012|2 +582557|37000658013|2 +594767|37000658015|2 +594763|37000658016|2 +594753|37000658017|2 +595439|37000658018|2 +595421|37000658019|2 +595697|37000658021|2 +596547|37000658024|2 +596559|37000658025|2 +597087|37000658027|4 +597141|37000658029|2 +598928|37000658032|2 +600213|37000658033|2 +600206|37000658034|2 +600780|37000658037|2 +600784|37000658038|2 +601679|37000658039|2 +601678|37000658040|2 +601868|37000658042|2 +602398|37000658044|2 +602399|37000658045|2 +602681|37000658046|2 +603218|37000658047|2 +603228|37000658048|2 +603622|37000658050|2 +604408|37000658054|2 +604362|37000658055|2 +604366|37000658056|2 +605380|37000658057|2 +605355|37000658058|2 +606227|37000658060|2 +606108|37000658061|2 +608174|37000658063|2 +610895|37000658067|2 +613612|37000658073|2 +613428|37000658076|2 +614250|37000658077|2 +614274|37000658078|2 +614273|37000658079|2 +614245|37000658080|2 +614268|37000658081|2 +614515|37000658083|2 +614510|37000658084|2 +615165|37000658085|2 +615411|37000658086|2 +615219|37000658087|2 +615762|37000658091|2 +616077|37000658093|2 +616198|37000658094|2 +616235|37000658096|2 +616456|37000658098|2 +616465|37000658099|2 +617312|37000658101|2 +617387|37000658102|2 +619103|37000658105|2 +619549|37000658106|2 +619566|37000658108|2 +619567|37000658109|2 +620126|37000658111|2 +620951|37000658113|2 +620964|37000658114|2 +624183|37000658115|2 +624322|37000658117|2 +624478|37000658118|2 +624713|37000658119|2 +624714|37000658120|2 +625169|37000658121|2 +625246|37000658122|2 +625845|37000658123|2 +625846|37000658124|2 +626527|37000658127|2 +626236|37000658130|4 +627284|37000658131|2 +627337|37000658132|2 +628330|37000658133|2 +628359|37000658134|2 +628507|37000658135|2 +628514|37000658136|2 +629527|37000658138|2 +615467|37000658139|2 +630347|37000658140|2 +630345|37000658141|2 +631277|37000658145|2 +631366|37000658146|2 +631754|37000658147|2 +631761|37000658148|2 +631780|37000658149|2 +631787|37000658150|2 +631905|37000658151|2 +631833|37000658152|2 +633499|37000658154|2 +633501|37000658155|2 +633772|37000658157|2 +634552|37000658158|2 +635699|37000658159|2 +635829|37000658160|2 +635830|37000658161|2 +637041|37000658162|2 +637042|37000658163|2 +637217|37000658165|2 +637410|37000658166|2 +637577|37000658168|2 +638166|37000658169|2 +638290|37000658171|2 +638305|37000658173|2 +638935|37000658174|2 +639800|37000658180|2 +639801|37000658181|2 +640435|37000658184|2 +640599|37000658186|2 +640601|37000658187|2 +642518|37000658189|2 +642506|37000658190|2 +642507|37000658191|2 +643681|37000658193|2 +643973|37000658195|2 +643893|37000658196|2 +643927|37000658197|2 +643926|37000658198|2 +644267|37000658199|2 +644431|37000658200|2 +644766|37000658202|2 +644771|37000658203|2 +644764|37000658205|2 +645022|37000658206|2 +645009|37000658207|2 +646272|37000658210|2 +646216|37000658211|2 +647045|37000658214|2 +647189|37000658215|2 +647180|37000658216|2 +647469|37000658217|2 +647466|37000658218|2 +605757|37000658219|2 +648429|37000658222|2 +649139|37000658223|2 +649147|37000658224|2 +649141|37000658225|4 +649160|37000658226|2 +649457|37000658228|2 +649459|37000658229|2 +649610|37000658230|2 +650160|37000658233|2 +650238|37000658234|2 +650375|37000658236|2 +650373|37000658237|2 +651023|37000658238|2 +651140|37000658239|2 +651610|37000658241|2 +651579|37000658242|2 +651740|37000658243|2 +651725|37000658244|2 +652261|37000658246|2 +653207|37000658249|2 +653173|37000658252|2 +654619|37000658253|2 +654620|37000658254|2 +656512|37000658258|2 +656719|37000658259|2 +657169|37000658260|2 +657204|37000658261|2 +657170|37000658262|2 +657519|37000658265|2 +657496|37000658267|2 +657497|37000658268|2 +658294|37000658270|2 +658489|37000658273|2 +658509|37000658274|2 +638716|37000658275|2 +658701|37000658276|2 +658670|37000658277|2 +659193|37000658279|2 +659855|37000658281|2 +659872|37000658282|2 +659866|37000658283|2 +660252|37000658284|2 +660253|37000658285|2 +660164|37000658286|2 +660165|37000658287|2 +660444|37000658292|2 +660551|37000658293|2 +661139|37000658295|2 +661635|37000658296|2 +661651|37000658297|2 +661747|37000658298|2 +661756|37000658299|2 +661748|37000658300|2 +661840|37000658301|2 +663860|37000658306|2 +665249|37000658307|2 +666258|37000658308|2 +666098|37000658309|2 +668015|37000658312|2 +669516|37000658315|2 +669277|37000658316|2 +669559|37000658317|2 +669928|37000658318|2 +669947|37000658319|2 +669884|37000658320|2 +669885|37000658321|2 +670052|37000658323|2 +670330|37000658326|2 +670229|37000658327|2 +670255|37000658329|2 +670363|37000658331|2 +670879|37000658332|2 +670878|37000658333|2 +671559|37000658334|2 +672853|37000658335|2 +672854|37000658336|2 +672837|37000658337|2 +672882|37000658339|2 +673548|37000658340|2 +673918|37000658344|2 +673853|37000658345|2 +674040|37000658346|2 +673970|37000658347|2 +674065|37000658348|2 +674276|37000658349|2 +675073|37000658350|2 +675393|37000658352|2 +675394|37000658353|2 +675497|37000658356|2 +675498|37000658357|2 +675612|37000658358|2 +675614|37000658359|2 +675932|37000658362|2 +676475|37000658363|2 +677371|37000658365|2 +763418|37000658367|2 +677659|37000658368|2 +678209|37000658369|2 +678309|37000658370|2 +678303|37000658371|2 +678370|37000658373|2 +680364|37000658379|2 +680357|37000658380|2 +680349|37000658381|2 +680343|37000658382|2 +680663|37000658386|2 +680669|37000658387|2 +680700|37000658388|2 +680785|37000658389|2 +680747|37000658390|2 +680749|37000658391|2 +681061|37000658394|2 +681588|37000658395|2 +681835|37000658396|2 +681836|37000658398|2 +681743|37000658400|2 +681589|37000658401|2 +682706|37000658403|2 +682702|37000658404|2 +683641|37000658405|2 +683865|37000658406|2 +684632|37000658408|2 +684687|37000658409|2 +684917|37000658413|2 +684933|37000658414|2 +684918|37000658415|2 +685035|37000658416|2 +685038|37000658417|2 +685037|37000658418|2 +685406|37000658419|2 +685408|37000658420|2 +826742|37000658421|4 +685552|37000658422|2 +686230|37000658423|2 +686762|37000658425|2 +686773|37000658426|2 +686778|37000658427|2 +687991|37000658429|2 +691050|37000658432|2 +691053|37000658433|2 +691322|37000658434|2 +691968|37000658435|2 +691971|37000658436|2 +692201|37000658437|2 +692125|37000658438|2 +692189|37000658439|4 +692254|37000658440|2 +692416|37000658441|2 +692439|37000658442|2 +692642|37000658443|2 +693562|37000658444|2 +693563|37000658445|2 +694174|37000658446|2 +694497|37000658447|2 +694421|37000658448|2 +695526|37000658449|2 +695527|37000658450|2 +695424|37000658451|2 +695784|37000658452|2 +695790|37000658454|2 +696800|37000658455|2 +697592|37000658456|2 +697593|37000658457|2 +698291|37000658459|2 +698292|37000658460|2 +699873|37000658461|2 +699855|37000658462|2 +700022|37000658463|2 +700150|37000658464|2 +700151|37000658465|2 +700068|37000658466|2 +700595|37000658467|2 +701653|37000658468|2 +701667|37000658469|2 +701682|37000658470|2 +701677|37000658471|2 +701666|37000658472|2 +701673|37000658473|2 +704204|37000658476|2 +704207|37000658477|2 +704334|37000658478|2 +704361|37000658479|2 +704541|37000658480|2 +705329|37000658483|2 +705742|37000658484|2 +705777|37000658485|2 +627227|37000658488|2 +705736|37000658489|2 +705814|37000658490|2 +705823|37000658491|2 +705772|37000658492|2 +706483|37000658498|2 +706942|37000658500|2 +707050|37000658501|2 +708098|37000658505|2 +708364|37000658506|2 +708234|37000658507|2 +708732|37000658510|2 +708709|37000658511|2 +709354|37000658512|2 +709436|37000658514|2 +709466|37000658515|2 +710201|37000658518|2 +710601|37000658520|2 +710607|37000658521|2 +712493|37000658525|2 +712494|37000658526|2 +712727|37000658527|2 +712765|37000658528|2 +713176|37000658529|2 +714511|37000658533|2 +714600|37000658534|2 +714705|37000658536|2 +717026|37000658539|2 +716965|37000658541|2 +717240|37000658543|2 +717086|37000658544|2 +717824|37000658545|2 +717811|37000658546|2 +718036|37000658547|2 +718072|37000658548|2 +718098|37000658549|2 +718132|37000658550|2 +718262|37000658552|2 +718388|37000658554|2 +500164|37000658555|2 +718752|37000658556|2 +718753|37000658557|2 +719082|37000658560|2 +719083|37000658561|2 +719091|37000658562|2 +720541|37000658567|2 +721234|37000658570|2 +721496|37000658571|2 +721683|37000658572|2 +721684|37000658573|2 +723621|37000658575|2 +723622|37000658576|2 +724062|37000658578|2 +724373|37000658579|2 +724378|37000658580|2 +724838|37000658581|2 +725630|37000658584|2 +725632|37000658585|2 +725629|37000658586|2 +725626|37000658587|2 +726666|37000658590|2 +726702|37000658591|2 +726662|37000658593|2 +726802|37000658594|2 +726703|37000658595|2 +605767|37000658596|2 +726832|37000658599|2 +727014|37000658602|2 +726977|37000658603|2 +727092|37000658604|2 +727090|37000658606|2 +727524|37000658607|2 +727563|37000658608|2 +727579|37000658610|2 +727580|37000658611|2 +728194|37000658612|2 +728177|37000658613|2 +728149|37000658614|2 +728148|37000658615|2 +728279|37000658617|2 +728198|37000658618|2 +728540|37000658619|2 +730596|37000658620|2 +731004|37000658621|2 +731872|37000658623|2 +731876|37000658624|2 +731877|37000658625|2 +731998|37000658626|2 +732046|37000658628|2 +732285|37000658630|2 +732286|37000658631|2 +732382|37000658633|2 +664000|37000658634|2 +733312|37000658636|2 +733695|37000658637|2 +733711|37000658638|2 +734390|37000658643|2 +734332|37000658644|4 +734244|37000658645|2 +734293|37000658646|2 +734278|37000658647|2 +734206|37000658649|2 +735555|37000658654|2 +736328|37000658655|2 +736784|37000658658|2 +736791|37000658659|2 +737755|37000658660|2 +738487|37000658661|4 +738414|37000658662|2 +739662|37000658665|2 +739660|37000658666|2 +740156|37000658667|2 +740685|37000658670|2 +741620|37000658672|2 +741824|37000658673|2 +741825|37000658674|2 +741747|37000658675|2 +831367|37000658676|4 +741663|37000658677|2 +742090|37000658679|2 +742087|37000658680|2 +742111|37000658681|2 +742108|37000658682|2 +742886|37000658685|2 +743163|37000658686|2 +743162|37000658687|2 +744753|37000658688|2 +745145|37000658689|2 +745392|37000658692|2 +745557|37000658693|2 +747256|37000658695|2 +747281|37000658698|2 +747883|37000658699|2 +747886|37000658700|2 +747881|37000658701|2 +748512|37000658702|2 +754955|37000658710|2 +755025|37000658711|2 +755027|37000658712|2 +755333|37000658713|2 +755640|37000658715|2 +756553|37000658718|2 +756764|37000658719|2 +756724|37000658720|2 +756811|37000658723|2 +756844|37000658724|2 +756842|37000658725|2 +758767|37000658730|2 +758850|37000658732|2 +759300|37000658733|2 +759645|37000658734|2 +759737|37000658735|4 +760603|37000658737|2 +760598|37000658738|2 +760953|37000658740|2 +760604|37000658744|2 +760511|37000658745|2 +760737|37000658746|4 +760794|37000658747|2 +760526|37000658748|2 +761218|37000658750|2 +761311|37000658751|2 +761313|37000658752|2 +761421|37000658753|2 +762684|37000658756|4 +762610|37000658757|2 +763024|37000658758|2 +763097|37000658759|2 +763138|37000658760|2 +763199|37000658761|2 +763262|37000658762|2 +763720|37000658763|2 +763719|37000658764|2 +763721|37000658765|2 +764152|37000658766|2 +764167|37000658767|2 +526736|37000658768|2 +764584|37000658769|2 +764585|37000658770|2 +764757|37000658771|2 +764761|37000658772|2 +764798|37000658773|2 +764812|37000658774|2 +764824|37000658775|2 +896728|37000658776|2 +764914|37000658777|2 +764918|37000658778|2 +764915|37000658779|2 +764922|37000658780|2 +766954|37000658785|2 +766976|37000658786|2 +767116|37000658787|2 +767090|37000658788|2 +767135|37000658789|2 +769591|37000658790|2 +769580|37000658791|2 +772692|37000658794|2 +773386|37000658795|2 +773389|37000658797|2 +773462|37000658799|2 +773461|37000658800|2 +774301|37000658804|2 +774674|37000658805|2 +774715|37000658806|2 +774858|37000658807|2 +775095|37000658812|2 +775060|37000658813|2 +775740|37000658815|2 +776257|37000658818|2 +777038|37000658821|2 +777026|37000658823|2 +777037|37000658824|2 +777668|37000658826|4 +777331|37000658829|2 +777408|37000658831|2 +777581|37000658832|4 +777403|37000658833|2 +777392|37000658834|2 +777305|37000658836|2 +777306|37000658839|2 +777924|37000658841|2 +778094|37000658842|2 +779071|37000658846|2 +779241|37000658847|2 +779404|37000658850|2 +779487|37000658851|2 +779515|37000658852|2 +780574|37000658859|2 +780567|37000658860|2 +780568|37000658861|2 +781293|37000658863|2 +781714|37000658865|2 +781759|37000658866|2 +781898|37000658867|2 +782005|37000658869|2 +782077|37000658873|2 +782068|37000658874|2 +782604|37000658876|2 +783569|37000658877|2 +783763|37000658878|4 +783622|37000658879|2 +783903|37000658880|2 +784055|37000658884|2 +784214|37000658888|2 +784701|37000658891|2 +785174|37000658892|2 +785664|37000658895|2 +785659|37000658897|2 +786745|37000658898|2 +786924|37000658899|2 +786934|37000658900|2 +787272|37000658901|2 +787491|37000658902|2 +790611|37000658904|2 +790596|37000658905|2 +792316|37000658906|2 +793092|37000658908|2 +793338|37000658910|2 +793725|37000658913|2 +793734|37000658914|2 +794099|37000658915|2 +794130|37000658916|2 +795730|37000658917|2 +795796|37000658918|2 +795876|37000658919|2 +796280|37000658923|2 +796277|37000658925|2 +796730|37000658926|2 +797216|37000658929|2 +798071|37000658931|2 +798072|37000658932|2 +798543|37000658933|2 +798511|37000658934|2 +798512|37000658935|2 +798497|37000658936|2 +798464|37000658937|2 +798738|37000658939|2 +798746|37000658940|2 +799386|37000658943|2 +799385|37000658944|2 +799617|37000658945|2 +799464|37000658946|2 +800011|37000658947|2 +801623|37000658953|2 +801624|37000658954|2 +801844|37000658955|2 +801928|37000658956|2 +802951|37000658957|2 +802953|37000658958|2 +802949|37000658959|2 +803569|37000658963|2 +803430|37000658964|2 +803366|37000658965|2 +803286|37000658969|2 +478655|37000658970|2 +803539|37000658971|2 +803748|37000658972|2 +804403|37000658975|2 +804422|37000658977|2 +804702|37000658978|2 +804688|37000658979|2 +804639|37000658980|2 +804818|37000658981|2 +805545|37000658984|2 +805531|37000658985|2 +806089|37000658987|2 +806752|37000658988|2 +809293|37000658992|2 +809380|37000658993|2 +809379|37000658994|2 +809666|37000658996|2 +826865|37000658999|4 +826815|37000659002|4 +828893|37000659007|4 +828902|37000659008|4 +829946|37000659010|4 +829940|37000659011|4 +830345|37000659013|4 +830928|37000659014|4 +831406|37000659019|4 +831397|37000659021|4 +832619|37000659022|4 +832781|37000659023|4 +818887|37000659026|4 +835067|37000659027|4 +819818|37000659029|2 +835289|37000659030|4 +833590|37000659031|4 +544942|37000659033|2 +835290|37000659034|4 +835446|37000659035|4 +817762|37000659036|2 +832966|37000659039|4 +817763|37000659040|2 +832967|37000659041|4 +833591|37000659043|4 +836244|37000659047|4 +836246|37000659048|4 +837423|37000659049|4 +837595|37000659050|4 +836714|37000659051|4 +837315|37000659052|4 +836432|37000659055|8 +838188|37000659059|4 +839709|37000659063|4 +839718|37000659064|4 +840222|37000659065|4 +842879|37000659070|2 +844047|37000659074|2 +844534|37000659076|2 +845382|37000659079|2 +845383|37000659080|2 +845320|37000659081|2 +845494|37000659083|2 +846103|37000659084|2 +512998|37000659086|2 +846371|37000659088|2 +846192|37000659089|2 +793838|37000659090|2 +846138|37000659091|2 +846557|37000659092|4 +846613|37000659094|2 +847119|37000659095|2 +847139|37000659096|2 +847502|37000659097|2 +848627|37000659100|2 +848508|37000659101|2 +848490|37000659103|2 +848545|37000659104|2 +848491|37000659105|2 +848146|37000659106|2 +848191|37000659107|2 +849010|37000659108|2 +850109|37000659109|2 +850129|37000659110|2 +850114|37000659111|2 +851780|37000659119|2 +851777|37000659120|2 +854080|37000659124|2 +854083|37000659125|2 +854371|37000659126|2 +854405|37000659127|2 +855048|37000659130|2 +855057|37000659131|2 +855781|37000659132|2 +856351|37000659135|2 +856397|37000659136|2 +856252|37000659137|2 +856622|37000659138|2 +856580|37000659139|2 +856977|37000659141|2 +860732|37000659145|2 +860735|37000659146|2 +861668|37000659147|2 +862100|37000659148|2 +862103|37000659149|2 +862729|37000659150|2 +863422|37000659151|2 +863435|37000659152|2 +863423|37000659153|2 +863497|37000659154|2 +863735|37000659155|2 +863660|37000659156|2 +519523|37000659157|2 +863930|37000659158|2 +864112|37000659160|2 +864767|37000659161|2 +864788|37000659162|2 +864789|37000659163|2 +865587|37000659164|2 +865639|37000659166|2 +865640|37000659167|2 +865993|37000659168|2 +866008|37000659170|2 +866384|37000659171|2 +866358|37000659172|2 +835783|37000659173|4 +866453|37000659174|2 +866559|37000659175|2 +866695|37000659176|2 +866938|37000659177|2 +866929|37000659178|2 +867200|37000659179|2 +867376|37000659181|2 +867941|37000659182|2 +867917|37000659183|2 +868925|37000659185|2 +582821|37000659186|2 +868931|37000659187|2 +868939|37000659188|2 +869459|37000659191|2 +869337|37000659192|2 +711267|37000659193|2 +869372|37000659194|2 +869338|37000659195|2 +869598|37000659196|2 +869593|37000659197|2 +870652|37000659198|2 +870690|37000659199|2 +871435|37000659200|2 +871436|37000659201|2 +871491|37000659202|2 +872092|37000659208|2 +873212|37000659210|2 +873196|37000659211|2 +873197|37000659212|2 +874107|37000659213|2 +874104|37000659214|2 +874544|37000659216|2 +874621|37000659217|2 +787194|37000659218|2 +875158|37000659222|2 +875166|37000659223|2 +875164|37000659224|2 +877932|37000659228|2 +877940|37000659229|2 +878118|37000659231|2 +878289|37000659234|2 +878695|37000659236|2 +878699|37000659237|2 +878697|37000659238|2 +879025|37000659242|2 +879687|37000659243|2 +879695|37000659244|2 +880203|37000659245|2 +880283|37000659246|2 +880670|37000659247|2 +880548|37000659248|2 +880732|37000659250|2 +880837|37000659253|2 +880950|37000659254|2 +880865|37000659255|2 +881543|37000659256|2 +881544|37000659257|2 +881621|37000659258|2 +881777|37000659259|2 +881881|37000659260|2 +881925|37000659261|2 +881862|37000659262|2 +881905|37000659263|2 +881971|37000659264|2 +881994|37000659265|2 +883036|37000659266|2 +882593|37000659267|2 +882699|37000659268|2 +882798|37000659269|2 +883129|37000659271|2 +882855|37000659272|2 +883666|37000659273|2 +883758|37000659274|2 +884193|37000659275|2 +884166|37000659276|2 +884359|37000659277|2 +884747|37000659279|2 +885193|37000659280|2 +885188|37000659282|2 +885907|37000659285|2 +885878|37000659286|2 +885953|37000659290|2 +886119|37000659291|2 +886503|37000659293|2 +886502|37000659295|2 +563863|37000659296|2 +886458|37000659297|2 +887028|37000659298|2 +887098|37000659299|2 +887260|37000659301|2 +887214|37000659302|2 +887659|37000659305|2 +887632|37000659306|2 +887612|37000659307|2 +887644|37000659308|2 +887629|37000659309|2 +887682|37000659310|2 +887684|37000659311|2 +888031|37000659316|2 +888035|37000659317|2 +888060|37000659318|2 +888064|37000659319|2 +888333|37000659321|2 +888789|37000659322|2 +888793|37000659323|2 +889291|37000659325|2 +889320|37000659327|2 +889292|37000659328|2 +889475|37000659329|2 +889476|37000659330|2 +889994|37000659331|2 +890784|37000659332|2 +891273|37000659334|2 +891316|37000659335|2 +891325|37000659336|2 +892983|37000659339|2 +893136|37000659340|2 +892820|37000659342|2 +893105|37000659343|2 +893725|37000659344|2 +893741|37000659345|2 +893742|37000659346|2 +894649|37000659347|2 +895274|37000659350|2 +895783|37000659352|2 +895780|37000659354|2 +895785|37000659355|2 +896860|37000659360|2 +897396|37000659361|2 +897841|37000659363|2 +898523|37000659364|2 +898555|37000659366|2 +898550|37000659367|2 +898556|37000659368|2 +898750|37000659369|2 +898819|37000659370|2 +899154|37000659373|2 +628943|37000659374|4 +899152|37000659375|2 +899177|37000659376|2 +899180|37000659377|2 +899182|37000659378|2 +899592|37000659379|2 +902254|37000659382|2 +902274|37000659383|2 +902272|37000659384|2 +674289|37000659385|2 +902361|37000659386|2 +494434|37000659409|2 +648430|37000659417|2 +830927|37000659430|4 +760873|37000659449|2 +929088|37000659479|2 +940132|37000659512|2 +952282|37000659570|2 +782605|37000659574|2 +966713|37000659626|2 +981110|37000659679|2 +867323|37000659687|2 +698211|37000659745|2 +731162|37000659771|2 +488586|37000659858|2 +1028828|37000659874|2 +772937|37000659921|2 +1037219|37000659928|2 +698245|37000659956|2 +615776|37000659981|2 +682668|37000660111|2 +514081|37000660140|2 +605518|37000660154|2 +1091133|37000660159|2 +1092627|37000660179|2 +1093222|37000660181|2 +1095114|37000660206|2 +605596|37000660243|2 +559078|37000660261|2 +1121987|37000660301|2 +718864|37000660347|2 +1147726|37000660394|2 +715888|37000660401|2 +1150185|37000660403|2 +1155539|37000660422|2 +473773|37000660467|2 +586076|37000660470|2 +878400|37000660473|2 +1164676|37000660487|2 +1165829|37000660489|2 +902449|37000660554|2 +459087|37000660574|2 +797567|37000660611|2 +725627|37000660619|2 +1187339|37000660623|2 +1205990|37000660720|2 +613203|37000660749|2 +478540|37000660856|2 +1241297|37000660864|2 +1242782|37000660881|2 +508858|37000660885|2 +459282|37000660886|2 +1256501|37000660977|2 +1258990|37000660982|2 +601797|37000660989|2 +1268937|37000661022|2 +545277|37001012938|2 +853966|37001012942|2 +754668|37001016954|2 +680350|37001016958|2 +796963|37001016960|2 +847461|37001016961|2 +781903|37001016965|2 +487424|37001016969|2 +856462|37001016972|2 +546855|37001016974|2 +487176|37001016976|2 +829316|37001016977|4 +538553|37001016978|2 +468339|37001016980|2 +784054|37001016981|2 +896333|37001016984|2 +800951|37001016986|2 +523678|37001016987|2 +832628|37001016990|4 +600214|37001016992|2 +516781|37001016993|2 +541103|37001016996|2 +602790|37001017012|2 +886521|37001017018|2 +511577|37001017023|2 +829875|37001019308|4 +819543|37001019309|2 +835033|37001019310|6 +868778|37001019311|2 +533672|37001019312|2 +866600|37001019314|2 +474615|37001019663|2 +474607|37001019665|2 +586384|37001020428|2 +784053|37001020473|2 +625727|37001024483|2 +785230|37001024491|2 +692306|37001024493|2 +513361|37001024563|2 +745393|37001025889|2 +531964|37001027179|2 +855046|37001027185|2 +798741|37001027204|2 +695055|37001027213|2 +728543|37001027266|2 +594392|37001029180|2 +574841|37001032812|2 +648610|37001033104|2 +679147|37001033105|2 +680332|37001033106|2 +681059|37001033109|2 +461305|37001033112|2 +669438|37001033113|2 +858666|37001033115|2 +486003|37001033116|2 +517957|37001033117|2 +832759|37001033118|4 +691045|37001033124|2 +878265|37001033125|2 +878144|37001033130|2 +896469|37001033131|2 +1253035|37001033136|2 +517418|37001036192|2 +644946|37001036193|2 +874704|37001036195|2 +1241418|37001036196|2 +460642|37001036198|2 +464293|37001036199|2 +555024|37001036200|2 +702324|37001036203|2 +896870|37001036505|2 +747427|37001036635|2 +711224|37001037055|2 +724369|37001037223|2 +510960|37001037594|2 +832768|37001037947|4 +513368|37001038756|2 +832530|37001038758|4 +790612|37001038768|2 +646279|37001038839|2 +734395|37001039354|2 +760624|37001039355|2 +826877|37001039457|4 +616463|37001039512|2 +615906|37001041092|2 +497102|37001041753|2 +899181|37001043054|2 +705470|37001043076|2 +705469|37001043077|2 +616312|37001045928|2 +780772|37001045931|2 +802042|37001045933|2 +680319|37001045934|2 +499877|37001045938|2 +820263|37001045939|2 +885488|37001045940|2 +896439|37001045941|2 +871314|37001046206|2 +743174|37001047435|2 +826547|37001047436|4 +678156|37001047691|2 +680334|37001048464|2 +740473|37001050070|2 +750176|37001050074|2 +533769|37001050494|2 +452336|37001052204|2 +498219|37001055994|2 +775380|37001056039|2 +554575|37001057336|2 +489911|37001058712|2 +492044|37001059105|2 +695486|37001059534|2 +736797|37001059838|2 +736787|37001059839|2 +741972|37001060503|2 +896865|37001060972|2 +782512|37001061259|2 +525196|37001061270|2 +468505|37001066765|2 +637058|37001066766|2 +723953|37001066768|2 +760994|37001066775|2 +846345|37001066777|2 +513330|37001068260|2 +606109|37001069018|2 +831335|37001073561|4 +893754|37001073591|2 +472820|37001073740|2 +803394|37001073766|2 +877306|37001076297|2 +885295|37001076344|2 +784327|37001076349|2 +502275|37001076351|2 +796077|37001076352|2 +866641|37001076953|2 +553672|37001077115|2 +591576|37001077117|2 +627283|37001077119|2 +507886|37001077805|2 +770853|37001077806|2 +485949|37001077813|2 +591833|37001079432|2 +770966|37001079433|2 +851503|37001079438|2 +670223|37001079449|2 +838005|37001079451|4 +777511|37001079452|2 +711813|37001080637|2 +453593|37001080683|2 +677732|37001080685|2 +837575|37001080687|4 +672829|37001080737|2 +758119|37001080870|2 +806271|37001080871|2 +587970|37001080930|2 +826816|37001081413|4 +519326|37001081488|2 +866931|37001081490|2 +674066|37001082568|2 +701689|37001082571|2 +850144|37001082581|2 +503912|37001082588|2 +777582|37001083491|4 +471348|37001083984|2 +539535|37001084477|4 +530314|37001084619|2 +673959|37001084621|2 +587952|37001085033|2 +503959|37001086014|2 +888323|37001086019|2 +784364|37001087336|2 +607384|37001087738|2 +650360|37001087740|2 +791706|37001088528|2 +893093|37001088530|2 +669350|37001089250|2 +862733|37001090104|2 +482496|37001090203|2 +705743|37001090227|2 +723954|37001090342|2 +572137|37001091553|4 +665248|37001091554|2 +496451|37001094753|2 +546621|37001094754|2 +758307|37001094757|2 +764133|37001094993|2 +613204|37001095925|2 +796225|37001095926|2 +639828|37001096660|2 +851579|37001097452|2 +880807|37001099244|2 +660481|37001099655|2 +517332|37001099994|2 +701026|37001100283|2 +506092|37001100332|2 +832968|37001100610|4 +1130983|37001101161|2 +614139|37001101559|2 +809291|37001101562|2 +630511|37001102509|2 +630527|37001102512|2 +776371|37001103842|2 +771366|37001104037|2 +507419|37001104190|2 +651592|37001104606|2 +485941|37001104989|2 +665870|37001105710|2 +900768|37001105711|2 +827700|37001106562|4 +706383|37001108484|2 +669408|37001108794|2 +795973|37001109030|2 +888695|37001109222|2 +464149|37001109224|2 +524085|37001109737|2 +801586|37001109738|2 +836725|37001109740|4 +580969|37001109754|2 +514345|37001111018|2 +546408|37001111535|2 +500767|37001111583|2 +464148|37001111654|2 +505201|37001112937|2 +728541|37001112960|2 +492970|37001113062|2 +828895|37001113387|4 +605309|37001115187|2 +554729|37001116213|2 +633915|37001116225|2 +745216|37001116233|2 +772946|37001116235|2 +864771|37001116239|2 +452980|37001116246|2 +545791|37001117373|2 +479827|37001121206|2 +513442|37001121801|2 +521248|37001121802|2 +542302|37001121803|2 +548637|37001121804|2 +654808|37001121805|2 +762969|37001121807|2 +866353|37001121809|2 +691979|37001121823|2 +624905|37001121835|2 +624757|37001121838|2 +747890|37001122437|2 +521204|37001123923|2 +693802|37001126638|2 +778105|37001126639|2 +886500|37001126640|2 +729245|37001126655|2 +866937|37001126658|2 +665667|37001126663|2 +783408|37001126666|2 +673854|37001126667|2 +885437|37001126671|2 +580342|37001127718|2 +692419|37001129951|2 +784051|37001129953|2 +886477|37001129955|2 +740998|37001130001|2 +802952|37001130002|2 +620189|37001130101|2 +736786|37001130389|2 +889180|37001130506|2 +720137|37001132549|2 +1155236|37001132553|2 +661001|37001134186|2 +670308|37001134188|2 +470242|37001134189|4 +546945|37001134276|2 +691732|37001134286|2 +485705|37001134616|2 +540123|37001137143|2 +571307|37001137144|2 +838598|37001137147|4 +673124|37001137149|2 +730528|37001137151|2 +779142|37001137152|2 +545793|37001137218|2 +827982|37001137319|4 +741749|37001137353|2 +866343|37001137461|2 +835159|37001137580|4 +803570|37001137660|2 +730667|37001137896|2 +704209|37001138432|2 +886505|37001138442|2 +861581|37001138473|2 +637045|37001138878|2 +649148|37001138879|2 +801545|37001138880|2 +459296|37001145525|2 +507439|37001147233|2 +540991|37001147236|2 +786093|37001147241|2 +786776|37001147242|2 +1268437|37001147249|2 +471223|37001148852|2 +603940|37001150524|2 +693564|37001150928|2 +871437|37001151474|2 +603872|37001151631|2 +617441|37001151643|2 +547081|37001151651|2 +526191|37001152687|2 +474283|37001152690|2 +829876|37001152866|4 +668841|37001152880|2 +634432|37001152888|2 +732357|37001152894|2 +780046|37001152915|2 +637522|37001152919|2 +511729|37001152950|2 +497407|37001152951|2 +727089|37001152958|2 +897842|37001153972|2 +508632|37001154025|2 +545038|37001154026|2 +715774|37001154027|2 +846630|37001154028|2 +569653|37001154441|2 +503528|37001158971|2 +508069|37001158978|2 +596560|37001158986|2 +535414|37001158990|2 +638860|37001160052|2 +798272|37001160060|2 +770968|37001160066|2 +716416|37001160069|2 +616313|37001160083|2 +762512|37001160085|2 +741860|37001160306|2 +838914|37001160346|6 +672828|37001160375|2 +495398|37001163365|2 +510488|37001163366|2 +533668|37001163368|2 +677667|37001163373|2 +731782|37001163375|2 +742070|37001163376|2 +483143|37001164703|2 +510477|37001164704|2 +698290|37001165855|2 +883668|37001166899|2 +453151|37001171648|2 +488185|37001171649|2 +553667|37001171651|2 +599274|37001171652|4 +674490|37001171654|2 +893735|37001171659|2 +731388|37001171663|2 +726449|37001171666|2 +640698|37001172461|2 +602704|37001173676|2 +521162|37001174034|2 +554257|37001174035|2 +888336|37001174272|2 +981105|37001174274|2 +877410|37001174730|2 +585387|37001175243|2 +704542|37001175244|2 +867146|37001175502|2 +765248|37001175917|2 +727093|37001176300|2 +752905|37001177855|2 +665247|37001179444|2 +854312|37001180118|2 +661628|37001180252|2 +647465|37001181609|2 +798313|37001181613|2 +564738|37001181615|2 +893755|37001181617|2 +735567|37001181653|2 +868938|37001181660|2 +582556|37001181913|2 +564468|37001182881|2 +657176|37001182884|2 +675491|37001182988|2 +674545|37001183581|2 +853251|37001183582|2 +745122|37001183676|2 +665743|37001186125|2 +728257|37001187345|2 +454019|37001187376|2 +901130|37001187586|2 +759482|37001188928|2 +567829|37001189679|2 +795635|37001190088|2 +848533|37001191029|2 +451884|37001191036|2 +651090|37001191324|2 +651736|37001191522|2 +473153|37001191804|2 +544859|37001191899|2 +637303|37001192674|2 +801929|37001192973|2 +683912|37001193271|2 +589110|37001193558|2 +728546|37001193560|2 +548265|37001193982|2 +848835|37001194036|2 +533766|37001194314|2 +834168|37001195030|4 +670236|37001195117|2 +631996|37001195912|2 +1217389|37001195920|2 +454003|37001198794|2 +471371|37001198795|2 +681115|37001198796|2 +670287|37001198799|2 +832617|37001198803|4 +897413|37001198804|2 +501426|37001201159|2 +533667|37001201160|2 +658445|37001201161|2 +828994|37001201162|4 +499717|37001201245|2 +878128|37001201246|2 +683990|37001201248|2 +781586|37001201249|2 +531230|37001201618|2 +675492|37001201622|2 +879190|37001202100|2 +891309|37001202104|2 +882686|37001202596|2 +613566|37001205255|2 +647467|37001205257|2 +669278|37001205259|2 +698541|37001205260|2 +1245633|37001205262|2 +517828|37001205264|2 +1173384|37001205275|2 +733640|37001205694|2 +527880|37001208607|2 +757204|37001208608|2 +698289|37001208610|2 +784052|37001208611|2 +575349|37001208614|2 +685556|37001208622|2 +644551|37001208623|2 +525821|37001208624|2 +777337|37001208627|2 +604495|37001208630|2 +523010|37001208631|2 +531946|37001208633|2 +523033|37001208636|2 +715860|37001208638|2 +883667|37001208644|2 +732358|37001208648|2 +1083615|37001209112|2 +533964|37001211488|2 +714666|37001211489|2 +747422|37001211490|2 +773388|37001211491|2 +835498|37001211499|6 +869411|37001211502|2 +483145|37001213633|2 +889337|37001213645|2 +864768|37001213692|2 +567693|37001214321|2 +527773|37001214429|2 +602419|37001214432|2 +567830|37001214723|2 +568009|37001214729|2 +487797|37001219282|2 +516861|37001219287|2 +516870|37001219289|2 +802095|37001219294|2 +858772|37001219295|2 +900817|37001219296|2 +723367|37001219307|2 +569668|37001219308|2 +616284|37001219310|2 +679116|37001219311|2 +738097|37001219313|2 +510166|37001219784|2 +846950|37001219785|2 +899183|37001219786|2 +635828|37001221168|2 +782449|37001222222|2 +864798|37001222230|2 +747428|37001222235|2 +523083|37001222774|2 +605924|37001222776|2 +614267|37001222778|2 +760931|37001223520|2 +495474|37001225173|2 +576099|37001225174|2 +798095|37001225181|2 +825947|37001225183|4 +745399|37001227899|2 +453594|37001228974|2 +657917|37001228986|2 +701940|37001228990|2 +541559|37001228991|2 +798616|37001231038|2 +866383|37001231040|2 +582688|37001231356|2 +734058|37001232975|2 +524268|37001233632|2 +523851|37001233658|2 +738471|37001233920|2 +778435|37001234366|2 +581652|37001234557|2 +900559|37001235234|2 +708299|37001236435|2 +566396|37001236656|2 +558923|37001238048|2 +650802|37001238049|2 +761070|37001238051|2 +651089|37001239278|2 +809292|37001239279|2 +804703|37001239283|2 +885195|37001240475|2 +691214|37001240532|2 +819465|37001241697|2 +860404|37001242318|2 +530009|37001244006|2 +643952|37001244007|2 +840163|37001244009|4 +476680|37001244021|2 +726794|37001244022|2 +616348|37001244090|2 +527621|37001246121|2 +634553|37001246123|2 +875096|37001246805|2 +480658|37001247403|2 +616576|37001247405|2 +638385|37001247406|2 +660838|37001247592|2 +761066|37001247593|2 +553673|37001248684|2 +607233|37001248685|2 +541547|37001248931|2 +606229|37001249136|2 +645123|37001249142|2 +867149|37001249144|2 +727091|37001249167|2 +521160|37001249172|2 +558802|37001249177|2 +673823|37001249388|2 +826882|37001249398|4 +628508|37001249404|2 +646065|37001249407|2 +527905|37001249427|2 +628511|37001249444|2 +634675|37001249451|2 +849073|37001249452|2 +473154|37001249454|2 +724742|37001249455|2 +480306|37001249458|2 +647192|37001249468|2 +626214|37001249474|4 +568292|37001249477|2 +468013|37001249483|2 +675501|37001249491|2 +836726|37001250323|4 +863159|37001250325|2 +900576|37001250326|2 +538515|37001250331|2 +718263|37001250425|2 +679034|37001250752|2 +713169|37001251844|2 +737506|37001251851|2 +769386|37001251852|2 +840225|37001251854|4 +710598|37001252709|2 +711263|37001252714|2 +712077|37001253415|2 +898820|37001254963|2 +785472|37001254975|2 +743202|37001254984|2 +835291|37001256610|4 +866935|37001256612|2 +844414|37001257213|2 +614259|37001257932|2 +525195|37001259058|2 +469209|37001261998|2 +652875|37001262012|2 +664034|37001262015|2 +714520|37001262030|2 +806070|37001262036|2 +882808|37001262041|2 +619561|37001262980|2 +788347|37001263746|2 +853492|37001266335|2 +688496|37001266346|2 +829817|37001266359|4 +887215|37001266360|2 +548263|37001267026|2 +895787|37001267029|2 +533678|37001267793|2 +661614|37001267794|2 +835422|37001267796|4 +588017|37001268309|2 +500130|37001269684|2 +635203|37001269692|2 +556277|37001269704|2 +795790|37001269716|2 +649143|37001269717|2 +581589|37001270654|4 +589108|37001270655|2 +589109|37001270657|2 +731292|37001272568|2 +590284|37001272581|2 +891393|37001277600|2 +891392|37001277603|2 +544556|37001277647|2 +479197|37001279739|2 +701654|37001279767|2 +748263|37001279779|2 +840023|37001279787|4 +899174|37001279800|2 +749864|37001282265|2 +634528|37001282276|2 +545792|37001282296|2 +870454|37001282302|2 +771951|37001285014|2 +541560|37001285779|2 +832613|37001286125|4 +541829|37001288023|4 +730343|37001289049|2 +546620|37001289058|2 +589809|37001289065|2 +594769|37001289070|2 +546886|37001289073|2 +896440|37001289075|2 +1246032|37001289077|2 +566043|37001291743|2 +622017|37001291751|4 +636271|37001291774|2 +854126|37001291775|2 +534033|37001294288|2 +572906|37001294292|2 +649167|37001294298|2 +657775|37001294302|2 +794572|37001294324|2 +798614|37001294326|2 +834999|37001294334|4 +846193|37001294343|2 +888039|37001294351|2 +465496|37001297600|2 +472844|37001297602|2 +569291|37001297608|2 +785454|37001297615|2 +524860|37001300241|2 +571341|37001300381|2 +797024|37001300382|2 +836727|37001300390|4 +981111|37001300394|2 +581487|37001301561|4 +518061|37001302034|4 +891313|37001302036|2 +1148078|37001302039|2 +498355|37001302477|2 +799757|37001302482|2 +850141|37001302483|2 +780770|37001302495|2 +848192|37001302497|2 +697594|37001302503|2 +799712|37001302507|2 +798618|37001302510|2 +548269|37001302529|2 +740167|37001302531|2 +481128|37001302541|2 +581651|37001302542|2 +830360|37001302544|4 +628021|37001302567|2 +860731|37001302572|2 +598613|37001302717|2 +535611|37001302748|2 +802950|37001302757|2 +777433|37001302759|2 +724949|37001302760|2 +720594|37001302764|2 +719028|37001302766|2 +468386|37001302769|2 +888061|37001302845|2 +895779|37001302851|2 +680696|37001302852|2 +799990|37001302853|2 +722361|37001302854|2 +541208|37001302860|2 +480307|37001302861|2 +737498|37001302862|2 +634433|37001303877|2 +670923|37001303878|2 +686646|37001303879|2 +888337|37001303884|2 +740157|37001304000|2 +529857|37001305158|2 +504889|37001305872|2 +468340|37001305916|2 +501923|37001306829|2 +568661|37001306830|2 +544067|37001306831|2 +596561|37001307991|2 +856405|37001307992|2 +707066|37001308980|2 +888338|37001308984|2 +599082|37001309000|2 +525823|37001309885|2 +779122|37001309897|2 +777669|37001310899|4 +505250|37001312536|2 +531314|37001312539|2 +703487|37001312543|2 +794131|37001312545|2 +876857|37001312550|2 +836715|37001312551|4 +889295|37001312553|2 +887645|37001313619|2 +607234|37001315119|2 +746857|37001315123|2 +850236|37001315129|2 +459313|37001315309|2 +504564|37001316070|2 +657780|37001316090|2 +704164|37001316091|2 +672989|37001316978|2 +845496|37001316979|2 +719323|37001317906|2 +671092|37001318814|2 +825926|37001318817|4 +666550|37001319978|2 +774690|37001319981|2 +714564|37001323555|2 +841596|37001323556|2 +888075|37001323557|2 +1205991|37001323615|2 +530628|37001325465|2 +576499|37001325467|2 +591824|37001325468|4 +630209|37001325469|2 +637043|37001325470|2 +650374|37001325471|2 +800373|37001325472|2 +783760|37001325473|4 +497831|37001327530|2 +563834|37001327533|2 +630245|37001327535|2 +790219|37001327544|2 +764464|37001327559|2 +616582|37001328912|2 +546889|37001330407|2 +616577|37001330408|2 +635831|37001330409|2 +766646|37001330411|2 +818531|37001330412|4 +735242|37001331274|2 +835514|37001331277|4 +545056|37001331856|2 +840227|37001331857|4 +553230|37001334386|2 +656685|37001334388|2 +826584|37001334392|4 +830340|37001334419|4 +697595|37001335163|2 +472798|37001337163|4 +473277|37001337164|2 +527817|37001337167|2 +693586|37001337168|2 +728150|37001337191|2 +652692|37001337193|2 +517695|37001339662|2 +565138|37001339663|2 +613619|37001339664|2 +712766|37001339667|2 +524285|37001339668|2 +628509|37001339672|2 +848198|37001339674|4 +595242|37001339679|2 +875121|37001339682|2 +602472|37001339683|2 +633851|37001339686|2 +504011|37001340173|2 +543684|37001340174|2 +774668|37001340185|2 +589284|37001340188|2 +708266|37001340852|2 +705266|37001340853|2 +459314|37001342760|2 +471555|37001342761|2 +566241|37001342762|2 +566421|37001342763|2 +640061|37001342764|2 +678305|37001342765|2 +693521|37001342767|2 +640062|37001342769|2 +545000|37001344994|2 +459312|37001350945|2 +467999|37001352475|2 +478846|37001352479|2 +531315|37001352490|2 +544860|37001352491|2 +551619|37001352498|2 +551634|37001352499|2 +572337|37001352505|2 +647181|37001352508|2 +735636|37001352747|2 +740104|37001352751|2 +806099|37001352754|2 +835292|37001352756|4 +839412|37001352759|4 +840748|37001352760|2 +840751|37001352761|2 +847355|37001352762|2 +462225|37001354147|2 +611029|37001354559|2 +513335|37001356438|2 +547083|37001356443|2 +571363|37001356447|2 +767976|37001356463|2 +793749|37001356469|2 +848744|37001356478|2 +899593|37001356492|2 +774675|37001357521|2 +660097|37001357525|2 +607301|37001357545|2 +703181|37001359310|2 +643897|37001359312|2 +841524|37001359568|2 +753747|37001360249|2 +535266|37001361898|2 +830839|37001361900|4 +799465|37001362908|2 +891314|37001362919|2 +669349|37001362920|2 +501096|37001366673|2 +597824|37001367156|2 +671592|37001367159|2 +871386|37001367251|2 +760874|37001369085|2 +775070|37001369088|2 +581488|37001370085|4 +633994|37001370086|2 +712029|37001370094|2 +565616|37001371215|2 +646049|37001371216|2 +836084|37001371232|4 +524284|37001372836|2 +693550|37001372837|2 +777434|37001372838|2 +835658|37001372840|8 +565139|37001373250|2 +803624|37001373641|2 +615777|37001373955|2 +851528|37001373956|2 +899184|37001373959|2 +567324|37001375045|2 +740158|37001375047|2 +558764|37001375326|2 +901605|37001375328|2 +882306|37001375530|2 +485231|37001377384|2 +768024|37001377462|2 +556159|37001378224|2 +641799|37001378225|2 +582652|37001379622|2 +699999|37001379623|2 +899179|37001379624|2 +899175|37001380182|2 +642198|37001380691|2 +532804|37001381855|2 +535486|37001381856|2 +556154|37001381859|2 +556162|37001381860|2 +594158|37001381861|2 +758851|37001381863|2 +854084|37001381865|2 +594164|37001382795|2 +754819|37001382801|2 +754818|37001382802|2 +754820|37001382803|2 +539536|37001384321|4 +606015|37001384323|2 +848031|37001384326|2 +981112|37001384329|2 +455003|37001386061|2 +556355|37001386072|2 +860733|37001386995|2 +652843|37001387232|2 +826817|37001388351|4 +453982|37001389470|2 +454004|37001389471|2 +746514|37001389477|2 +568606|37001390181|2 +505012|37001390455|2 +505030|37001390457|2 +470354|37001391678|2 +762463|37001391679|2 +869432|37001391680|2 +869339|37001391681|2 +736561|37001391957|2 +881995|37001391958|2 +774870|37001392567|2 +928731|37001393088|2 +856352|37001394494|2 +712790|37001395627|2 +754884|37001395630|2 +766057|37001395631|2 +525111|37001395647|2 +660254|37001395648|2 +846748|37001396669|2 +886522|37001396708|2 +507434|37001396710|2 +523738|37001396711|2 +523737|37001396712|2 +798147|37001396713|2 +679148|37001397171|2 +866571|37001397180|2 +544957|37001397264|4 +571402|37001398164|2 +710599|37001398280|2 +762740|37001398281|2 +897880|37001398286|2 +797782|37001399349|2 +681883|37001399350|4 +733948|37001399362|2 +846316|37001399786|2 +471224|37001399887|2 +616147|37001404033|2 +881957|37001404061|2 +547188|37001404074|2 +615767|37001404075|2 +546458|37001404077|2 +706496|37001404082|2 +864821|37001404083|2 +1148079|37001404092|2 +702557|37001404770|2 +830361|37001404775|4 +600324|37001404798|2 +540124|37001404926|2 +523071|37001405868|2 +867377|37001405871|2 +895777|37001405873|2 +474610|37001408756|2 +559044|37001408757|2 +881966|37001408759|2 +902275|37001408760|2 +492067|37001408776|2 +887017|37001408778|2 +808784|37001410165|2 +769585|37001410166|2 +482906|37001410923|2 +616285|37001410924|2 +601323|37001412654|2 +731911|37001412656|2 +864764|37001412657|2 +527246|37001413085|2 +564402|37001413086|2 +628510|37001413087|2 +649149|37001413089|2 +756193|37001413091|2 +1099917|37001413096|2 +527245|37001413672|2 +855012|37001413723|2 +730353|37001414073|2 +669517|37001415682|2 +563193|37001415720|2 +652704|37001421213|2 +652702|37001421223|2 +549210|37001421321|2 +589574|37001421323|2 +602913|37001421325|2 +602847|37001421326|2 +631708|37001421329|2 +631704|37001421330|2 +631883|37001421331|2 +633907|37001421334|2 +663010|37001421336|2 +713445|37001421338|2 +775096|37001421339|2 +795866|37001421340|2 +833248|37001421341|4 +494731|37001421436|2 +518190|37001421474|2 +572911|37001421483|2 +646305|37001421490|2 +703207|37001421491|2 +739506|37001421494|2 +798745|37001421496|2 +798739|37001421498|2 +799991|37001421499|2 +851399|37001421512|2 +1188790|37001421555|2 +706778|37001422187|2 +826523|37001423129|4 +643072|37001423139|2 +762462|37001425741|2 +849011|37001425907|2 +848992|37001425934|2 +780406|37001425992|2 +845525|37001425999|2 +472912|37001426043|2 +497804|37001426088|2 +511574|37001426237|2 +546824|37001426260|2 +600441|37001426293|2 +801090|37001426322|2 +846621|37001426339|2 +589802|37001429681|2 +508774|37001430113|2 +856985|37001430147|2 +841685|37001430232|2 +841684|37001430238|2 +646280|37001430686|2 +646225|37001431013|2 +688567|37001431037|2 +885498|37001431747|2 +494660|37001431748|2 +797886|37001432000|2 +476622|37001437307|2 +492653|37001437312|2 +523023|37001437349|2 +625629|37001437352|2 +550488|37001438177|2 +565145|37001438237|2 +602450|37001438489|2 +651280|37001438499|2 +652703|37001438500|2 +747923|37001438506|2 +783614|37001438584|2 +1165447|37001438602|2 +891394|37001438660|2 +890444|37001438662|2 +884186|37001438663|2 +507524|37001438961|2 +634434|37001439706|2 +698082|37001440228|2 +524088|37001440503|2 +635204|37001440984|2 +480591|37001441822|2 +652852|37001441832|2 +767884|37001441858|2 +826842|37001441863|4 +641070|37001441947|2 +508426|37001442302|2 +864765|37001442722|2 +670925|37001442734|2 +706978|37001442998|2 +538043|37001443894|2 +595416|37001443895|2 +588057|37001444487|2 +748513|37001444488|2 +855276|37001444489|2 +855731|37001444490|2 +855732|37001444491|2 +866643|37001444492|2 +866639|37001444493|2 +887099|37001444514|2 +572568|37001444550|2 +762461|37001444551|2 +762611|37001445479|2 +535604|37001445536|2 +617273|37001445537|2 +793851|37001445538|2 +562147|37001446269|2 +795626|37001446272|2 +802960|37001446274|2 +552312|37001447648|2 +613687|37001447656|4 +826841|37001447659|4 +652854|37001448121|2 +481117|37001448882|2 +671260|37001449236|2 +606819|37001450368|2 +756190|37001450372|2 +686780|37001452787|2 +498201|37001452793|2 +679339|37001455701|2 +679303|37001455702|2 +742195|37001455896|2 +588485|37001455897|2 +658702|37001455898|2 +692946|37001455899|2 +702905|37001455900|2 +837424|37001455901|4 +878103|37001455902|2 +890078|37001455903|2 +483937|37001456064|2 +499060|37001456065|2 +574112|37001456066|2 +676882|37001456068|2 +681532|37001456069|2 +681533|37001456070|2 +718593|37001456071|2 +761020|37001456072|2 +777172|37001456073|2 +779590|37001456074|2 +790421|37001456075|2 +855786|37001456077|2 +885564|37001456078|2 +888896|37001456079|2 +472613|37001456565|2 +657781|37001456568|2 +663008|37001456569|2 +542520|37001456576|2 +796944|37001456578|2 +568589|37001457802|2 +726936|37001457804|2 +777628|37001457807|2 +874289|37001457809|2 +710595|37001458755|2 +748734|37001458756|2 +797170|37001458757|2 +1268938|37001458758|2 +606510|37001458762|2 +672489|37001459302|2 +858939|37001459305|2 +601291|37001459332|2 +699834|37001459536|2 +617775|37001460319|2 +483978|37001460327|2 +764773|37001460991|2 +764770|37001460993|2 +646198|37001462262|2 +890123|37001462272|2 +738484|37001463337|4 +769589|37001463339|2 +806762|37001463340|2 +828946|37001463341|4 +589950|37001464255|2 +884718|37001464257|2 +804696|37001464356|2 +807654|37001465886|2 +802946|37001465887|2 +481543|37001465963|2 +780436|37001465982|2 +806076|37001465983|2 +827753|37001465984|4 +622309|37001466007|2 +632389|37001466008|2 +694364|37001466010|2 +727993|37001466587|2 +777238|37001466588|2 +798118|37001466590|2 +727991|37001467123|2 +564505|37001467441|2 +566335|37001467727|2 +727992|37001468139|2 +688552|37001468462|2 +524632|37001468779|2 +891391|37001470125|2 +628513|37001470619|2 +700000|37001470624|2 +470538|37001470751|4 +779173|37001470755|2 +890127|37001470757|2 +548766|37001471024|2 +806427|37001471025|2 +778649|37001471033|2 +778811|37001471034|2 +556236|37001472232|2 +602955|37001472236|2 +699874|37001472771|2 +861657|37001474076|2 +758039|37001474583|2 +757951|37001474585|2 +1173385|37001474586|2 +497073|37001475074|2 +551280|37001475534|2 +668842|37001476282|2 +736534|37001476289|2 +736543|37001476632|2 +736562|37001476634|2 +718786|37001476770|2 +770311|37001476774|2 +496268|37001477212|2 +781569|37001477240|2 +796232|37001477265|2 +866540|37001477272|2 +891817|37001477279|2 +601835|37001480928|2 +615768|37001480932|2 +725107|37001480944|2 +888161|37001481874|2 +899411|37001481878|2 +484661|37001482772|2 +866447|37001483040|2 +886504|37001483043|2 +759063|37001483582|2 +841652|37001483585|2 +788833|37001485087|2 +472792|37001485769|2 +548550|37001486367|2 +854421|37001486372|2 +718133|37001486576|2 +486188|37001486837|2 +862101|37001490031|2 +531345|37001490893|2 +717820|37001490926|2 +556839|37001491077|2 +552738|37001491081|2 +746259|37001491293|2 +504959|37001491457|2 +565617|37001491459|2 +780381|37001492075|2 +475972|37001492397|2 +794849|37001492486|2 +828325|37001493814|4 +828326|37001494185|4 +474608|37001495234|2 +647195|37001495285|2 +703230|37001495287|2 +743875|37001495614|2 +493210|37001496886|2 +568358|37001496887|2 +778250|37001496891|2 +798465|37001496894|2 +898542|37001496898|2 +465165|37001498619|2 +544461|37001498623|2 +851600|37001498634|2 +624193|37001498653|2 +499758|37001498732|2 +677992|37001499043|2 +501880|37001499824|2 +541916|37001499825|4 +557486|37001499828|2 +672632|37001499832|2 +698921|37001499833|2 +711814|37001499835|2 +715519|37001499837|2 +823816|37001499840|4 +556390|37001499933|2 +828454|37001499961|4 +769575|37001500386|2 +860420|37001500759|2 +860414|37001500760|2 +795016|37001502647|2 +456836|37001502654|2 +521831|37001502655|2 +850595|37001502671|2 +871438|37001502673|2 +893976|37001502678|2 +564597|37001503601|2 +514263|37001505044|2 +552078|37001505049|2 +657626|37001505052|2 +657634|37001505053|2 +778251|37001505054|2 +778412|37001505055|2 +657910|37001505769|2 +666099|37001505770|2 +706979|37001505771|2 +806425|37001505773|2 +760599|37001506539|2 +791644|37001506546|2 +838061|37001506548|4 +838127|37001506550|4 +482914|37001507408|2 +559638|37001507555|2 +864770|37001507574|2 +538550|37001508701|2 +718810|37001508703|2 +733772|37001508754|2 +777291|37001508755|2 +797185|37001508881|2 +851781|37001508882|2 +884721|37001508887|2 +625017|37001509413|2 +535165|37001510234|2 +546959|37001510239|2 +545811|37001510817|2 +596503|37001511146|2 +781793|37001511156|2 +712497|37001511760|2 +807645|37001512188|2 +634022|37001512689|2 +715209|37001512693|2 +586672|37001513535|2 +617738|37001513537|2 +665442|37001513538|2 +586681|37001513563|2 +892359|37001513799|2 +867441|37001513974|2 +651611|37001514134|2 +871315|37001514137|2 +786615|37001515078|2 +879767|37001515082|2 +902273|37001515600|2 +469133|37001516400|2 +842343|37001517209|2 +636854|37001517961|2 +568660|37001518586|2 +557178|37001518726|2 +557173|37001518729|2 +663007|37001518733|2 +649156|37001518738|2 +745180|37001518742|2 +888335|37001519210|2 +715520|37001519501|2 +495070|37001519813|2 +805532|37001519814|2 +511509|37001520613|2 +788621|37001520617|2 +879324|37001522140|2 +879365|37001522142|2 +472928|37001522822|2 +659221|37001522823|2 +829942|37001523500|4 +829939|37001523502|4 +511510|37001524315|2 +489284|37001524316|2 +622925|37001524317|2 +885203|37001525148|2 +851401|37001525330|2 +589505|37001526030|2 +774805|37001526060|2 +508775|37001526065|2 +555511|37001526108|2 +590823|37001526829|2 +520079|37001527952|2 +681697|37001527956|2 +520076|37001528292|2 +738102|37001528443|2 +667047|37001528643|2 +864780|37001528647|2 +748514|37001528746|2 +704434|37001528847|2 +796243|37001529606|2 +499718|37001529607|2 +562737|37001529612|2 +854422|37001529620|2 +582740|37001529629|2 +897238|37001530260|2 +781842|37001530301|2 +675933|37001531044|2 +614673|37001531055|2 +750177|37001531060|2 +866560|37001531138|2 +472356|37001531141|2 +472821|37001531142|2 +485993|37001531610|2 +687973|37001531614|2 +898551|37001532040|2 +469068|37001532697|2 +752680|37001532918|2 +717825|37001534520|2 +888172|37001534575|2 +966714|37001534576|2 +727551|37001534639|2 +592863|37001534642|2 +480579|37001534773|2 +489341|37001535482|2 +701440|37001535573|2 +598929|37001535636|2 +589821|37001535688|2 +469041|37001535729|2 +471225|37001538258|2 +721062|37001538262|2 +657936|37001538288|2 +604705|37001538352|2 +597100|37001538392|2 +745414|37001538400|2 +878266|37001538408|2 +885205|37001538688|2 +613688|37001538702|4 +688536|37001538712|2 +697540|37001540575|2 +727995|37001540580|2 +727994|37001540584|2 +583244|37001540603|2 +684711|37001541106|2 +874288|37001541109|2 +590834|37001542274|2 +483140|37001542316|2 +717831|37001542324|2 +626534|37001543066|2 +497875|37001544373|2 +781568|37001544380|2 +478989|37001544529|4 +864822|37001546397|2 +870571|37001546404|2 +753566|37001546512|2 +560642|37001546516|2 +492273|37001546546|2 +706005|37001548888|2 +626207|37001555652|4 +877504|37001555653|2 +581710|37001555662|2 +479610|37001555745|2 +739720|37001556124|2 +779267|37001556132|2 +590825|37001556134|2 +700415|37001556136|2 +623579|37001556137|2 +866606|37001556140|2 +740976|37001556141|2 +467204|37001556142|2 +566142|37001556146|2 +857403|37001556147|2 +857404|37001556149|2 +566044|37001556150|2 +826878|37001556151|4 +705150|37001556156|2 +901671|37001556157|2 +749955|37001556740|2 +510223|37001556757|2 +890129|37001556803|2 +475001|37001556883|2 +585024|37001557016|2 +456324|37001557024|2 +583315|37001557036|2 +581021|37001557059|2 +623586|37001557061|2 +785658|37001557066|2 +862102|37001557068|2 +847120|37001557128|2 +583197|37001557262|2 +529557|37001557276|2 +535163|37001557280|2 +776914|37001557282|2 +462420|37001557285|2 +777171|37001557674|2 +765024|37001558303|2 +783410|37001558613|2 +774317|37001559380|2 +585809|37001560410|2 +888322|37001562373|2 +720249|37001562378|2 +793323|37001562382|2 +616134|37001562399|2 +647063|37001562406|2 +646482|37001562439|2 +850603|37001562450|2 +616415|37001562474|2 +657770|37001562482|2 +528080|37001562509|2 +720248|37001562515|2 +809325|37001562524|2 +617311|37001562899|2 +808396|37001562905|2 +564404|37001562919|2 +678157|37001566257|2 +705409|37001566259|2 +774306|37001566269|2 +779210|37001566280|2 +792558|37001566488|2 +568333|37001566497|2 +544027|37001566906|2 +804344|37001569549|2 +804345|37001569550|2 +633852|37001569553|2 +828307|37001569555|4 +544999|37001569557|2 +609666|37001569561|2 +718754|37001569563|2 +784365|37001569566|2 +840089|37001569768|4 +840095|37001569769|4 +738155|37001570804|2 +733408|37001570813|2 +522362|37001570817|2 +495895|37001570824|2 +778810|37001570830|2 +836824|37001570831|4 +786725|37001571586|2 +624313|37001571596|2 +848607|37001571629|2 +782839|37001573739|2 +589705|37001573755|2 +848379|37001573783|2 +624906|37001573846|2 +476791|37001573878|2 +562237|37001573879|2 +562238|37001573880|2 +808800|37001573881|2 +720097|37001575291|2 +745400|37001575294|2 +611790|37001575295|2 +716307|37001575296|2 +735563|37001575297|2 +883302|37001575302|2 +886596|37001576253|2 +451355|38000661054|2 +451354|38000661055|2 +451769|38000661061|2 +451927|38000661062|2 +451996|38000661063|2 +452058|38000661065|2 +452468|38000661070|2 +452524|38000661071|2 +452527|38000661072|2 +453163|38000661074|2 +453491|38000661078|2 +453570|38000661079|2 +453941|38000661080|2 +454894|38000661083|2 +454895|38000661084|2 +454691|38000661085|2 +454625|38000661087|2 +454807|38000661088|2 +454591|38000661090|2 +454414|38000661091|4 +454312|38000661092|2 +454890|38000661098|2 +454747|38000661101|2 +454592|38000661106|2 +455106|38000661109|2 +455107|38000661111|2 +455105|38000661112|2 +456054|38000661117|2 +456745|38000661119|2 +456725|38000661120|2 +456686|38000661123|2 +456500|38000661124|2 +456605|38000661125|2 +456981|38000661127|2 +457067|38000661128|2 +457068|38000661129|2 +457408|38000661131|2 +457682|38000661137|2 +457970|38000661140|2 +457966|38000661142|2 +461242|38000661144|2 +458500|38000661146|2 +458756|38000661148|2 +458811|38000661149|2 +459254|38000661153|2 +459257|38000661156|2 +459720|38000661157|2 +459724|38000661158|2 +460193|38000661162|2 +460317|38000661163|2 +460243|38000661166|2 +460263|38000661168|2 +460246|38000661170|2 +460312|38000661171|2 +460465|38000661172|2 +461272|38000661178|2 +461323|38000661179|2 +461324|38000661180|2 +461357|38000661181|2 +461395|38000661182|2 +461659|38000661183|2 +461601|38000661185|2 +461660|38000661186|2 +461705|38000661187|2 +461500|38000661188|2 +462094|38000661190|2 +462389|38000661191|2 +461905|38000661193|2 +461947|38000661196|4 +462394|38000661197|2 +462692|38000661200|2 +462576|38000661204|2 +462317|38000661206|2 +462395|38000661207|2 +462610|38000661211|2 +462906|38000661217|2 +462909|38000661218|2 +596394|38000661221|2 +463200|38000661223|2 +463571|38000661225|2 +463915|38000661227|2 +464357|38000661229|2 +464453|38000661232|2 +464897|38000661233|2 +465054|38000661237|2 +465126|38000661238|2 +478442|38000661239|2 +465545|38000661243|2 +465909|38000661244|2 +465917|38000661246|2 +466309|38000661252|2 +466127|38000661254|2 +466411|38000661256|2 +640852|38000661257|2 +466128|38000661261|2 +466029|38000661262|2 +466240|38000661263|2 +466241|38000661264|2 +465976|38000661265|2 +466345|38000661267|2 +467094|38000661271|2 +467669|38000661272|4 +467697|38000661273|2 +467009|38000661275|2 +467364|38000661276|2 +467365|38000661278|2 +467095|38000661280|2 +467556|38000661282|4 +467382|38000661283|2 +467522|38000661285|2 +467530|38000661286|2 +467222|38000661292|2 +467236|38000661293|2 +467599|38000661294|2 +467523|38000661297|2 +467581|38000661299|2 +467859|38000661304|2 +467820|38000661305|2 +467869|38000661307|2 +467926|38000661308|2 +468081|38000661312|2 +468079|38000661313|2 +468073|38000661314|2 +468078|38000661315|2 +468080|38000661317|2 +468225|38000661320|2 +468550|38000661321|2 +468643|38000661322|2 +468633|38000661323|2 +468645|38000661324|2 +468644|38000661325|2 +468920|38000661327|2 +469000|38000661329|2 +469013|38000661330|2 +468992|38000661331|2 +757315|38000661332|2 +469014|38000661333|2 +990096|38000661334|2 +469515|38000661341|2 +470497|38000661342|4 +469907|38000661348|2 +469574|38000661349|2 +469403|38000661364|2 +470889|38000661366|2 +471242|38000661369|2 +471075|38000661374|2 +471375|38000661377|2 +470855|38000661379|2 +840622|38000661380|2 +471191|38000661386|2 +471708|38000661387|2 +471807|38000661389|2 +471785|38000661391|2 +471812|38000661392|2 +471835|38000661393|2 +471860|38000661394|2 +471853|38000661395|2 +471840|38000661396|2 +471866|38000661397|2 +471841|38000661398|2 +472176|38000661402|2 +472081|38000661403|2 +897404|38000661409|2 +472897|38000661410|4 +472851|38000661411|2 +472663|38000661412|2 +472740|38000661415|2 +472705|38000661416|2 +472308|38000661418|2 +472399|38000661420|2 +472453|38000661421|2 +472689|38000661422|2 +472976|38000661425|2 +472970|38000661426|2 +472975|38000661429|2 +472977|38000661430|2 +472973|38000661431|2 +472971|38000661432|2 +472978|38000661433|2 +472974|38000661434|2 +473389|38000661437|2 +473635|38000661438|2 +473642|38000661439|2 +473643|38000661441|2 +473672|38000661443|2 +474061|38000661450|2 +474052|38000661452|2 +474139|38000661453|2 +474162|38000661455|2 +474163|38000661456|2 +474230|38000661457|2 +474344|38000661458|2 +474618|38000661460|2 +474623|38000661462|2 +474835|38000661466|2 +474725|38000661469|2 +474849|38000661470|2 +474853|38000661473|2 +474851|38000661474|2 +474855|38000661475|2 +474852|38000661476|2 +475084|38000661480|2 +475184|38000661482|2 +475120|38000661483|2 +645795|38000661484|2 +475625|38000661486|2 +475630|38000661487|2 +475753|38000661491|2 +475748|38000661493|2 +475747|38000661494|2 +475757|38000661496|2 +476049|38000661498|2 +476046|38000661499|2 +476067|38000661502|2 +476337|38000661503|4 +476227|38000661504|2 +476178|38000661505|2 +476746|38000661509|2 +476764|38000661510|2 +476747|38000661512|2 +476801|38000661514|2 +476788|38000661515|2 +476705|38000661517|2 +476706|38000661519|2 +476643|38000661525|2 +476713|38000661526|2 +476771|38000661527|2 +477159|38000661530|2 +477146|38000661531|2 +477278|38000661532|2 +477267|38000661533|2 +477742|38000661535|2 +477856|38000661536|2 +478092|38000661537|2 +478097|38000661538|2 +478148|38000661540|2 +478557|38000661543|2 +478393|38000661544|2 +495193|38000661545|2 +478762|38000661552|2 +479073|38000661553|2 +479072|38000661554|2 +479089|38000661556|2 +479237|38000661558|2 +479210|38000661560|2 +479231|38000661561|2 +479199|38000661563|2 +479259|38000661564|2 +479266|38000661565|2 +584649|38000661579|2 +480064|38000661581|2 +480075|38000661582|2 +480385|38000661583|2 +480564|38000661584|2 +480566|38000661585|2 +480567|38000661586|2 +481022|38000661593|2 +481438|38000661597|2 +481447|38000661598|2 +481471|38000661599|2 +481459|38000661600|2 +481475|38000661603|2 +481474|38000661604|2 +481422|38000661605|2 +481448|38000661607|2 +481625|38000661609|2 +481654|38000661610|2 +481911|38000661614|2 +481912|38000661615|2 +481914|38000661616|2 +481976|38000661617|2 +481974|38000661618|2 +481969|38000661619|2 +481997|38000661620|2 +481984|38000661621|2 +482140|38000661622|2 +482090|38000661623|2 +482036|38000661624|4 +482037|38000661625|2 +482196|38000661626|2 +482253|38000661627|2 +482433|38000661629|2 +482434|38000661630|2 +482441|38000661631|2 +482440|38000661632|2 +482435|38000661633|2 +482532|38000661639|2 +482680|38000661644|2 +482688|38000661645|2 +482607|38000661646|2 +482811|38000661648|2 +482896|38000661651|2 +482821|38000661652|2 +483047|38000661659|2 +483104|38000661662|2 +483288|38000661663|2 +483611|38000661666|2 +483610|38000661667|2 +483815|38000661671|2 +483878|38000661673|2 +483981|38000661678|2 +484236|38000661679|2 +484243|38000661680|2 +484246|38000661681|2 +484247|38000661682|2 +484539|38000661684|2 +484504|38000661685|2 +484515|38000661687|2 +484611|38000661688|2 +484665|38000661689|2 +484853|38000661691|2 +485091|38000661692|2 +485210|38000661693|2 +485238|38000661695|2 +485245|38000661696|2 +485299|38000661697|2 +485297|38000661698|2 +485586|38000661699|2 +485633|38000661700|2 +485643|38000661701|2 +485712|38000661702|2 +485744|38000661706|2 +486218|38000661712|2 +486219|38000661714|2 +486441|38000661715|2 +486540|38000661716|2 +486495|38000661717|2 +486535|38000661719|2 +487072|38000661721|2 +487348|38000661723|2 +487272|38000661724|2 +487388|38000661726|2 +487389|38000661727|2 +487607|38000661733|2 +487661|38000661734|4 +487861|38000661735|2 +488030|38000661736|2 +487722|38000661738|4 +487952|38000661739|2 +487770|38000661742|2 +488068|38000661744|2 +487936|38000661745|2 +488896|38000661748|2 +855061|38000661749|2 +489091|38000661754|4 +489412|38000661761|2 +485533|38000661762|2 +489749|38000661764|2 +490013|38000661768|2 +490014|38000661769|2 +1209989|38000661770|2 +490409|38000661773|2 +490589|38000661774|2 +490585|38000661775|2 +490755|38000661777|2 +490758|38000661779|2 +491093|38000661784|2 +491147|38000661786|2 +491366|38000661788|2 +491758|38000661791|2 +491896|38000661795|2 +492088|38000661798|2 +492026|38000661799|2 +491908|38000661800|2 +563493|38000661801|2 +492275|38000661810|2 +492415|38000661811|2 +753353|38000661816|2 +467036|38000661817|4 +493019|38000661818|2 +493013|38000661820|2 +493058|38000661821|2 +493446|38000661828|2 +493440|38000661830|2 +493441|38000661831|2 +493448|38000661832|2 +493695|38000661836|2 +493916|38000661840|2 +493815|38000661841|2 +494319|38000661843|2 +494044|38000661844|2 +494821|38000661845|2 +494692|38000661846|2 +494822|38000661847|2 +494664|38000661848|2 +494881|38000661849|2 +494952|38000661850|2 +494997|38000661853|2 +495006|38000661854|2 +495008|38000661855|2 +495063|38000661856|2 +495089|38000661858|2 +495090|38000661859|2 +495253|38000661860|2 +495240|38000661861|2 +495227|38000661862|2 +495252|38000661863|2 +495272|38000661864|2 +496433|38000661874|2 +496638|38000661879|2 +496818|38000661881|2 +496825|38000661882|2 +496826|38000661883|2 +497120|38000661886|2 +497121|38000661887|2 +497068|38000661888|2 +497192|38000661892|2 +682774|38000661893|2 +497344|38000661894|2 +497881|38000661900|2 +497802|38000661904|2 +497925|38000661907|2 +497926|38000661908|2 +497929|38000661909|2 +497933|38000661910|2 +498273|38000661914|2 +498342|38000661918|2 +498447|38000661920|2 +498389|38000661921|2 +498415|38000661923|2 +498531|38000661924|2 +498524|38000661925|2 +499063|38000661929|2 +499030|38000661930|2 +499052|38000661931|2 +499025|38000661932|2 +499505|38000661940|2 +499594|38000661941|2 +499595|38000661942|2 +499831|38000661943|2 +499682|38000661944|2 +499729|38000661945|2 +499829|38000661947|2 +500319|38000661955|2 +500377|38000661956|2 +500320|38000661957|2 +500748|38000661962|2 +500789|38000661966|2 +500790|38000661969|2 +500788|38000661975|2 +500774|38000661976|2 +500796|38000661977|2 +500939|38000661980|2 +500974|38000661981|2 +500921|38000661983|2 +500966|38000661984|2 +501092|38000661985|2 +501234|38000661986|2 +501241|38000661988|2 +501200|38000661990|2 +501256|38000661993|4 +501206|38000661994|4 +501179|38000661996|2 +501295|38000661998|2 +501266|38000661999|2 +501267|38000662002|2 +501377|38000662007|2 +501378|38000662008|2 +501428|38000662009|2 +501707|38000662010|4 +501635|38000662011|2 +501706|38000662012|4 +501565|38000662015|2 +501918|38000662018|2 +502063|38000662020|4 +693931|38000662025|2 +502406|38000662029|2 +502536|38000662031|2 +502405|38000662032|2 +502585|38000662034|2 +502950|38000662037|2 +502920|38000662039|2 +502868|38000662041|2 +502949|38000662042|2 +502885|38000662045|2 +502894|38000662047|2 +502924|38000662048|2 +503087|38000662049|2 +503203|38000662052|2 +503205|38000662053|2 +503323|38000662058|2 +503518|38000662066|2 +503527|38000662067|2 +503750|38000662074|2 +504058|38000662082|4 +503953|38000662084|2 +503978|38000662089|2 +504078|38000662090|2 +503874|38000662096|2 +504111|38000662099|2 +504212|38000662102|2 +504219|38000662103|2 +504213|38000662104|2 +504305|38000662107|2 +504396|38000662108|2 +504374|38000662109|2 +504513|38000662111|2 +504612|38000662117|4 +505095|38000662119|2 +505124|38000662123|2 +505158|38000662125|2 +505135|38000662126|2 +505125|38000662127|2 +505379|38000662131|2 +505316|38000662132|2 +505471|38000662134|2 +505528|38000662135|2 +505532|38000662138|2 +505657|38000662140|2 +505656|38000662141|2 +505696|38000662142|2 +582219|38000662144|2 +505690|38000662145|2 +505691|38000662146|2 +505882|38000662147|2 +505876|38000662148|2 +505880|38000662149|2 +506071|38000662150|2 +506183|38000662153|2 +506423|38000662157|2 +506426|38000662158|2 +506430|38000662159|2 +506696|38000662161|2 +506659|38000662162|2 +506729|38000662163|2 +506618|38000662165|2 +507285|38000662167|2 +507211|38000662168|4 +507146|38000662169|2 +507127|38000662172|2 +507258|38000662173|4 +506874|38000662175|2 +507048|38000662176|2 +506953|38000662178|2 +506938|38000662179|2 +507114|38000662181|2 +507182|38000662182|2 +507462|38000662187|2 +507483|38000662189|2 +507350|38000662191|2 +507808|38000662195|2 +507963|38000662200|2 +507964|38000662206|2 +507937|38000662208|2 +508140|38000662210|2 +508184|38000662212|2 +508185|38000662213|2 +508233|38000662214|2 +508228|38000662215|2 +508516|38000662216|2 +508445|38000662217|2 +508647|38000662223|2 +508861|38000662224|2 +509238|38000662233|2 +650848|38000662236|2 +509565|38000662238|2 +509408|38000662242|2 +509567|38000662244|2 +510051|38000662247|2 +510365|38000662249|2 +510416|38000662251|2 +510577|38000662254|2 +510614|38000662255|2 +510569|38000662256|2 +510503|38000662257|2 +510615|38000662258|2 +511328|38000662271|2 +511702|38000662272|2 +511789|38000662274|2 +511815|38000662275|2 +511778|38000662277|2 +809581|38000662279|2 +511826|38000662285|2 +511800|38000662286|2 +511960|38000662289|4 +512062|38000662290|4 +512238|38000662294|2 +512248|38000662295|2 +512249|38000662296|2 +512637|38000662299|2 +512921|38000662303|2 +512928|38000662305|2 +512984|38000662306|2 +512889|38000662309|2 +513146|38000662315|2 +513128|38000662317|2 +513166|38000662318|2 +513134|38000662324|2 +513157|38000662325|2 +545462|38000662326|2 +513289|38000662327|2 +513293|38000662329|2 +513297|38000662330|2 +513304|38000662331|2 +513378|38000662332|2 +513486|38000662336|2 +513685|38000662339|2 +513686|38000662342|2 +513945|38000662345|2 +514036|38000662348|2 +514232|38000662353|2 +514233|38000662355|2 +514625|38000662361|2 +514690|38000662362|2 +514753|38000662363|2 +514811|38000662364|2 +514850|38000662365|2 +515186|38000662369|2 +515321|38000662371|2 +515316|38000662372|2 +515531|38000662376|2 +515527|38000662377|2 +515568|38000662380|2 +515676|38000662384|2 +515739|38000662385|2 +515808|38000662390|2 +515977|38000662393|2 +516095|38000662396|2 +516094|38000662397|2 +516232|38000662400|2 +516213|38000662401|2 +516214|38000662403|2 +516506|38000662405|2 +516532|38000662410|2 +516797|38000662411|2 +516834|38000662412|2 +516871|38000662413|2 +516830|38000662414|2 +516900|38000662415|2 +516901|38000662416|2 +516927|38000662417|2 +517287|38000662422|2 +517524|38000662427|2 +517367|38000662428|2 +517387|38000662429|2 +517619|38000662431|2 +517368|38000662434|2 +517654|38000662435|2 +517588|38000662441|2 +517486|38000662443|2 +522952|38000662445|2 +517399|38000662446|2 +517603|38000662447|2 +518009|38000662454|2 +517995|38000662455|2 +517996|38000662457|2 +518098|38000662459|2 +518055|38000662462|2 +518331|38000662463|2 +518413|38000662464|2 +518250|38000662468|2 +518241|38000662469|2 +518408|38000662473|2 +518397|38000662475|2 +518405|38000662476|2 +518409|38000662477|2 +518647|38000662480|2 +518650|38000662481|2 +518694|38000662482|2 +518705|38000662483|2 +518874|38000662486|2 +519016|38000662487|2 +519064|38000662489|2 +519241|38000662493|2 +519504|38000662495|2 +519505|38000662497|2 +519594|38000662498|2 +519610|38000662501|2 +888646|38000662502|2 +519629|38000662503|2 +519639|38000662504|2 +520194|38000662510|2 +520188|38000662511|2 +520172|38000662512|2 +520173|38000662516|2 +520581|38000662518|2 +520568|38000662519|2 +520569|38000662520|2 +520613|38000662521|2 +520699|38000662523|2 +520721|38000662524|2 +520700|38000662525|2 +803472|38000662530|2 +521239|38000662532|2 +521178|38000662536|2 +521238|38000662538|2 +521217|38000662539|2 +521419|38000662543|2 +521368|38000662547|2 +521373|38000662549|2 +521883|38000662556|2 +521900|38000662559|2 +522007|38000662564|2 +522008|38000662565|2 +891206|38000662568|2 +611775|38000662571|2 +522575|38000662572|2 +522627|38000662575|2 +522944|38000662577|2 +522875|38000662578|2 +522962|38000662579|2 +522910|38000662580|2 +522888|38000662581|2 +522890|38000662582|2 +522921|38000662583|2 +522901|38000662584|2 +522925|38000662585|2 +523050|38000662587|2 +523209|38000662589|2 +517396|38000662593|2 +523719|38000662595|2 +523623|38000662596|2 +523722|38000662597|2 +523573|38000662598|2 +523800|38000662601|2 +523799|38000662602|2 +523905|38000662603|2 +523903|38000662604|2 +523895|38000662606|2 +524719|38000662613|2 +524728|38000662614|2 +525271|38000662621|2 +525290|38000662623|2 +525292|38000662624|2 +525704|38000662625|2 +544415|38000662626|4 +525458|38000662627|2 +525775|38000662629|2 +525773|38000662631|2 +525886|38000662634|2 +525932|38000662636|2 +525943|38000662637|2 +525941|38000662638|2 +526173|38000662640|2 +526196|38000662642|2 +526019|38000662644|2 +526051|38000662648|2 +526036|38000662649|2 +526598|38000662651|2 +526448|38000662652|2 +526438|38000662653|2 +526658|38000662654|2 +526553|38000662655|2 +526439|38000662657|2 +710685|38000662659|2 +526683|38000662663|2 +527015|38000662667|2 +527027|38000662669|2 +526960|38000662671|2 +526972|38000662672|2 +527026|38000662674|2 +527062|38000662676|4 +526900|38000662679|2 +526906|38000662680|2 +527005|38000662682|2 +527174|38000662683|2 +527252|38000662684|2 +527218|38000662685|2 +527286|38000662686|2 +527411|38000662688|2 +527918|38000662694|2 +527949|38000662695|2 +527991|38000662698|2 +527999|38000662700|2 +527988|38000662701|2 +570357|38000662702|2 +528107|38000662703|2 +528157|38000662706|2 +528310|38000662707|2 +528236|38000662709|2 +528413|38000662719|2 +528664|38000662725|2 +528719|38000662726|2 +528718|38000662727|2 +528796|38000662729|2 +528925|38000662730|2 +528900|38000662732|2 +528951|38000662733|2 +528926|38000662735|2 +529051|38000662736|2 +529132|38000662738|2 +529249|38000662741|2 +529250|38000662742|2 +529298|38000662743|2 +529290|38000662744|2 +529291|38000662745|2 +529574|38000662750|2 +529580|38000662751|2 +529810|38000662753|2 +529760|38000662754|2 +529743|38000662756|2 +530021|38000662757|2 +529999|38000662758|2 +530036|38000662759|2 +530039|38000662760|2 +530046|38000662761|2 +530263|38000662762|4 +530137|38000662763|2 +530377|38000662770|2 +530350|38000662772|2 +531158|38000662777|2 +531161|38000662778|2 +531159|38000662779|2 +531208|38000662780|2 +578906|38000662781|2 +531484|38000662782|2 +531512|38000662783|2 +531593|38000662787|2 +531529|38000662788|2 +531629|38000662790|2 +620045|38000662792|2 +531675|38000662794|2 +531673|38000662795|2 +531676|38000662796|2 +531677|38000662797|2 +532130|38000662803|2 +532126|38000662804|2 +532547|38000662809|2 +532650|38000662810|2 +1031089|38000662813|2 +532783|38000662814|2 +533060|38000662816|2 +533077|38000662818|2 +533254|38000662823|2 +533255|38000662824|2 +533283|38000662825|2 +533263|38000662826|2 +533262|38000662828|2 +533275|38000662830|2 +533282|38000662831|2 +533338|38000662833|2 +533355|38000662834|2 +533461|38000662835|2 +533507|38000662838|2 +533787|38000662840|2 +533949|38000662841|2 +534276|38000662842|2 +534277|38000662843|2 +534134|38000662844|2 +533890|38000662845|2 +534125|38000662848|2 +534036|38000662850|2 +534629|38000662851|2 +534623|38000662852|2 +534697|38000662853|2 +534700|38000662854|2 +885930|38000662859|2 +535219|38000662860|2 +535355|38000662863|2 +535451|38000662865|2 +535606|38000662866|2 +535542|38000662867|2 +535452|38000662870|2 +535495|38000662872|2 +535614|38000662874|2 +535833|38000662879|2 +727000|38000662880|2 +536095|38000662881|2 +536055|38000662882|2 +536067|38000662883|2 +536075|38000662886|2 +536103|38000662888|2 +536236|38000662892|2 +536818|38000662895|2 +536930|38000662897|2 +536931|38000662898|2 +536981|38000662900|2 +537015|38000662903|2 +537021|38000662905|2 +537023|38000662906|2 +537231|38000662907|2 +537216|38000662908|2 +537228|38000662911|2 +537287|38000662912|2 +547252|38000662913|2 +537617|38000662914|4 +537461|38000662915|2 +537546|38000662918|2 +537539|38000662919|2 +537562|38000662921|2 +537508|38000662923|2 +537424|38000662925|2 +537462|38000662926|2 +537425|38000662927|2 +537618|38000662928|4 +537524|38000662929|2 +537971|38000662935|2 +538023|38000662936|2 +538157|38000662937|2 +538405|38000662938|2 +538457|38000662939|2 +538516|38000662941|2 +794400|38000662944|2 +538725|38000662946|2 +538790|38000662947|2 +538794|38000662951|2 +538789|38000662954|2 +538731|38000662960|2 +538750|38000662962|2 +759443|38000662965|2 +538832|38000662968|2 +538884|38000662973|2 +538880|38000662974|2 +538923|38000662977|2 +538924|38000662980|2 +538950|38000662982|2 +538997|38000662983|2 +538998|38000662985|2 +539057|38000662986|2 +541706|38000662988|2 +541243|38000662994|2 +539561|38000662998|2 +540587|38000662999|2 +539370|38000663002|4 +539987|38000663007|2 +539527|38000663008|2 +540031|38000663009|2 +539494|38000663010|4 +539188|38000663015|2 +540673|38000663016|4 +540032|38000663017|2 +540979|38000663018|2 +541463|38000663022|2 +541846|38000663027|4 +541586|38000663030|2 +727934|38000663031|2 +784575|38000663036|4 +539369|38000663040|4 +539493|38000663041|4 +541845|38000663049|4 +539835|38000663054|2 +539921|38000663055|2 +541263|38000663056|4 +539986|38000663058|2 +542176|38000663062|2 +542259|38000663063|2 +542286|38000663064|2 +542391|38000663065|2 +542472|38000663067|2 +542808|38000663074|2 +543069|38000663078|2 +543063|38000663082|2 +543060|38000663083|2 +543087|38000663087|2 +543355|38000663093|2 +543244|38000663095|2 +543289|38000663099|2 +543460|38000663102|2 +543549|38000663103|2 +543550|38000663104|2 +543894|38000663106|2 +543831|38000663108|2 +543843|38000663110|2 +543916|38000663111|2 +544010|38000663112|2 +544005|38000663113|2 +544057|38000663115|2 +544058|38000663116|2 +544055|38000663117|2 +544263|38000663129|2 +544264|38000663131|2 +544335|38000663132|2 +544191|38000663133|2 +544287|38000663134|2 +544288|38000663135|2 +544351|38000663136|2 +544211|38000663137|2 +544465|38000663138|2 +544521|38000663139|2 +544688|38000663140|2 +544726|38000663141|2 +544689|38000663142|2 +787939|38000663146|2 +544978|38000663147|2 +545282|38000663150|2 +545308|38000663152|2 +545395|38000663153|2 +545401|38000663155|2 +545902|38000663168|2 +546075|38000663172|2 +782866|38000663173|2 +546152|38000663174|2 +546482|38000663181|2 +546511|38000663182|2 +546866|38000663187|2 +547158|38000663189|2 +547110|38000663190|2 +547056|38000663191|2 +547558|38000663195|2 +548088|38000663196|2 +547963|38000663197|2 +547827|38000663198|2 +547704|38000663199|2 +547746|38000663201|2 +547705|38000663202|2 +547843|38000663204|2 +547964|38000663205|2 +547857|38000663207|2 +547828|38000663208|2 +549044|38000663213|2 +548847|38000663214|2 +548583|38000663215|2 +548551|38000663216|2 +548749|38000663217|2 +548904|38000663220|2 +548671|38000663221|2 +549664|38000663230|2 +549694|38000663231|2 +549708|38000663232|2 +549745|38000663235|2 +549744|38000663236|2 +549982|38000663239|2 +550087|38000663241|2 +550088|38000663242|2 +550203|38000663245|2 +550585|38000663246|2 +550526|38000663247|2 +550636|38000663248|2 +550536|38000663250|2 +550580|38000663253|2 +550767|38000663255|2 +550465|38000663258|2 +550426|38000663260|2 +550760|38000663262|2 +550865|38000663265|2 +550900|38000663266|2 +550912|38000663267|2 +550883|38000663268|2 +550937|38000663271|2 +551062|38000663272|2 +551042|38000663273|2 +551126|38000663275|2 +551294|38000663277|2 +551295|38000663278|2 +551921|38000663284|2 +553052|38000663285|2 +552521|38000663286|2 +553053|38000663287|2 +552790|38000663288|2 +552322|38000663289|4 +552368|38000663293|2 +552975|38000663294|2 +552622|38000663297|2 +552597|38000663298|2 +552102|38000663300|2 +552663|38000663301|2 +553030|38000663305|2 +553592|38000663307|2 +553835|38000663308|2 +553834|38000663309|2 +553942|38000663312|2 +553987|38000663313|2 +554030|38000663314|2 +553961|38000663316|2 +554366|38000663324|2 +554414|38000663325|2 +554634|38000663326|2 +554744|38000663332|2 +554804|38000663334|2 +554792|38000663335|2 +554800|38000663336|2 +554798|38000663337|2 +554943|38000663345|2 +554991|38000663346|2 +554992|38000663347|2 +555125|38000663348|2 +555151|38000663349|2 +555262|38000663351|2 +555304|38000663352|2 +555260|38000663353|2 +555263|38000663354|2 +555276|38000663355|2 +555283|38000663356|2 +555284|38000663357|2 +555360|38000663358|2 +555376|38000663359|2 +555370|38000663360|2 +555353|38000663361|2 +555364|38000663362|2 +555365|38000663363|2 +555350|38000663364|2 +555356|38000663366|2 +555378|38000663368|2 +555362|38000663371|2 +555381|38000663372|2 +555363|38000663373|2 +555352|38000663374|2 +555351|38000663375|2 +555759|38000663380|2 +555935|38000663381|2 +555886|38000663382|2 +556055|38000663386|2 +556059|38000663388|2 +556189|38000663389|2 +556195|38000663390|2 +556226|38000663391|2 +556208|38000663392|2 +556230|38000663393|2 +556336|38000663395|2 +556313|38000663397|2 +556254|38000663399|2 +556300|38000663400|2 +556590|38000663401|2 +556568|38000663402|2 +556614|38000663406|2 +556701|38000663408|2 +556957|38000663410|2 +557196|38000663411|2 +557454|38000663414|2 +557433|38000663415|2 +557831|38000663417|2 +557798|38000663419|2 +557943|38000663421|2 +558218|38000663425|2 +558359|38000663426|2 +558780|38000663432|2 +559152|38000663433|2 +840558|38000663434|2 +559388|38000663442|4 +559339|38000663444|2 +559001|38000663445|2 +559482|38000663447|2 +559516|38000663449|2 +559580|38000663450|2 +559602|38000663451|2 +559745|38000663452|2 +560361|38000663453|2 +560368|38000663454|2 +560367|38000663455|2 +554652|38000663456|2 +560475|38000663458|2 +560549|38000663460|2 +560717|38000663463|2 +561394|38000663468|2 +561404|38000663469|2 +561776|38000663471|2 +561777|38000663472|2 +561791|38000663473|2 +561908|38000663476|2 +763877|38000663477|2 +561857|38000663479|2 +561994|38000663480|2 +561995|38000663481|2 +562188|38000663482|2 +562209|38000663483|2 +610944|38000663484|2 +562542|38000663485|2 +562584|38000663487|2 +562684|38000663488|2 +562693|38000663489|2 +562756|38000663491|2 +562734|38000663492|2 +563038|38000663494|2 +563068|38000663496|2 +563121|38000663498|2 +563337|38000663499|2 +563198|38000663500|2 +563356|38000663503|2 +563465|38000663504|2 +563504|38000663505|2 +563595|38000663507|2 +563633|38000663508|2 +563668|38000663510|2 +563672|38000663511|2 +563722|38000663514|2 +563721|38000663515|2 +564026|38000663518|2 +564171|38000663520|2 +798986|38000663522|2 +564368|38000663524|2 +564403|38000663525|2 +564405|38000663526|2 +565026|38000663529|2 +565016|38000663530|2 +565099|38000663531|2 +565113|38000663532|2 +565112|38000663535|2 +565128|38000663536|2 +565189|38000663537|2 +565538|38000663540|2 +565524|38000663541|2 +565562|38000663542|2 +565637|38000663546|2 +565638|38000663547|2 +565625|38000663549|2 +565619|38000663551|2 +565648|38000663552|2 +565639|38000663554|2 +565611|38000663555|2 +565640|38000663559|2 +565777|38000663562|2 +565728|38000663563|2 +565841|38000663564|2 +565917|38000663566|2 +585539|38000663567|2 +802896|38000663568|2 +565963|38000663569|2 +565964|38000663575|2 +566102|38000663576|2 +566060|38000663578|2 +566201|38000663581|2 +566415|38000663583|2 +566220|38000663584|2 +566315|38000663585|2 +566412|38000663586|2 +566154|38000663587|2 +566082|38000663589|2 +566061|38000663592|2 +566305|38000663593|2 +566366|38000663594|2 +566279|38000663595|2 +566318|38000663597|2 +566467|38000663599|2 +566532|38000663600|2 +566636|38000663601|2 +566603|38000663604|2 +566618|38000663605|2 +566812|38000663606|2 +566813|38000663607|2 +566814|38000663608|2 +566803|38000663609|2 +566821|38000663610|2 +567019|38000663611|2 +567214|38000663613|2 +567154|38000663616|2 +567421|38000663619|2 +567758|38000663626|2 +567767|38000663628|2 +567938|38000663632|4 +567837|38000663633|4 +567993|38000663636|2 +567882|38000663637|2 +568455|38000663643|2 +505962|38000663644|2 +590482|38000663646|2 +568557|38000663649|2 +568542|38000663650|2 +568505|38000663651|2 +568355|38000663652|2 +568697|38000663655|2 +568720|38000663656|2 +568985|38000663657|2 +569196|38000663660|2 +569057|38000663661|2 +569010|38000663662|2 +569883|38000663668|2 +570136|38000663669|2 +569819|38000663670|2 +569988|38000663672|4 +569953|38000663679|2 +570239|38000663682|2 +570237|38000663683|2 +570283|38000663685|2 +570279|38000663686|2 +570339|38000663687|2 +570350|38000663688|2 +570403|38000663689|2 +570545|38000663693|2 +570529|38000663696|2 +755218|38000663697|2 +570859|38000663699|4 +570672|38000663700|2 +570652|38000663702|2 +570750|38000663704|2 +571060|38000663710|2 +571084|38000663711|2 +571085|38000663712|2 +571220|38000663713|2 +571203|38000663714|2 +571413|38000663715|2 +571697|38000663718|2 +571592|38000663719|2 +571563|38000663720|2 +572034|38000663722|2 +572022|38000663723|2 +572388|38000663725|2 +572348|38000663726|2 +572503|38000663728|2 +572611|38000663729|2 +572688|38000663731|2 +572874|38000663732|2 +572730|38000663733|2 +572914|38000663734|2 +573189|38000663736|2 +573232|38000663740|2 +573736|38000663746|2 +573711|38000663747|2 +573739|38000663748|2 +573691|38000663749|2 +573683|38000663751|2 +573701|38000663752|2 +573699|38000663753|2 +573718|38000663755|2 +573715|38000663757|2 +573712|38000663758|2 +573687|38000663762|4 +574022|38000663764|2 +574031|38000663765|2 +574581|38000663766|2 +764769|38000663771|2 +574962|38000663774|2 +575457|38000663777|2 +575458|38000663780|2 +575839|38000663781|2 +575854|38000663783|2 +576005|38000663786|2 +576078|38000663787|2 +576413|38000663792|2 +576483|38000663796|2 +576484|38000663797|2 +745746|38000663798|2 +576508|38000663799|2 +576866|38000663801|2 +576901|38000663802|2 +577006|38000663811|2 +577090|38000663815|2 +577082|38000663817|2 +577083|38000663818|2 +577087|38000663820|2 +577239|38000663821|2 +577480|38000663822|2 +577473|38000663823|2 +577749|38000663824|2 +577748|38000663825|2 +577928|38000663827|2 +577924|38000663828|2 +577948|38000663829|2 +577976|38000663836|2 +578219|38000663837|2 +578472|38000663840|2 +578579|38000663842|2 +578592|38000663843|2 +578593|38000663844|2 +578562|38000663845|2 +578557|38000663846|2 +578588|38000663847|2 +777602|38000663848|2 +579011|38000663853|2 +579075|38000663855|2 +583387|38000663858|2 +579166|38000663859|2 +579409|38000663863|2 +579413|38000663865|2 +579387|38000663868|2 +579487|38000663870|2 +579775|38000663875|2 +579998|38000663878|2 +580152|38000663882|2 +580135|38000663883|2 +580096|38000663884|2 +580174|38000663887|2 +580421|38000663891|2 +580295|38000663893|2 +580453|38000663894|2 +580305|38000663895|2 +580449|38000663899|2 +773448|38000663901|2 +580474|38000663902|2 +580385|38000663905|2 +580319|38000663906|2 +580791|38000663910|2 +581372|38000663916|2 +715800|38000663917|2 +581417|38000663918|2 +581757|38000663921|2 +581843|38000663923|2 +581770|38000663925|2 +581815|38000663926|2 +581820|38000663927|2 +581925|38000663928|2 +805586|38000663933|2 +582285|38000663935|2 +582237|38000663936|2 +582266|38000663937|2 +582312|38000663938|2 +582170|38000663939|2 +582376|38000663941|2 +582386|38000663942|2 +582577|38000663945|2 +582605|38000663946|2 +582612|38000663947|2 +582635|38000663948|2 +582837|38000663949|2 +582781|38000663950|2 +582729|38000663951|2 +582843|38000663952|2 +582670|38000663954|2 +582800|38000663955|2 +582795|38000663956|2 +582992|38000663959|2 +582939|38000663961|2 +582940|38000663962|2 +582993|38000663963|2 +582988|38000663964|2 +551250|38000663969|2 +583449|38000663972|2 +583458|38000663974|4 +583403|38000663977|2 +583321|38000663978|2 +463799|38000663979|2 +583358|38000663980|2 +583556|38000663984|2 +583590|38000663992|2 +583588|38000663994|2 +583669|38000663997|2 +583672|38000663998|2 +583856|38000664001|2 +583837|38000664002|2 +731848|38000664003|2 +583946|38000664006|2 +584151|38000664007|2 +584119|38000664008|2 +584366|38000664011|2 +584370|38000664012|2 +584487|38000664013|2 +584484|38000664014|2 +584571|38000664015|2 +584589|38000664016|4 +584713|38000664018|2 +584799|38000664020|2 +584841|38000664023|2 +584826|38000664026|2 +584837|38000664027|2 +585231|38000664030|2 +585269|38000664032|2 +585275|38000664034|2 +585458|38000664035|2 +585385|38000664036|2 +585473|38000664038|2 +623719|38000664044|2 +586067|38000664050|2 +586061|38000664051|2 +586058|38000664052|2 +586064|38000664054|2 +586192|38000664055|2 +586256|38000664059|2 +586257|38000664060|2 +586471|38000664061|2 +586496|38000664062|2 +586492|38000664063|2 +586490|38000664064|2 +586498|38000664067|2 +586504|38000664068|2 +586491|38000664069|2 +586933|38000664075|2 +587102|38000664076|2 +587031|38000664077|2 +587018|38000664080|2 +587558|38000664085|2 +587869|38000664089|2 +587918|38000664091|2 +588051|38000664092|2 +588228|38000664093|2 +588229|38000664094|2 +588626|38000664096|2 +588628|38000664099|2 +588627|38000664100|2 +588902|38000664101|2 +588920|38000664103|2 +588921|38000664104|2 +588917|38000664105|2 +588960|38000664108|2 +664661|38000664111|2 +589259|38000664112|2 +589256|38000664114|2 +589262|38000664115|2 +589252|38000664116|2 +589729|38000664125|2 +589917|38000664135|2 +590148|38000664139|2 +590275|38000664141|2 +590418|38000664142|2 +590336|38000664143|2 +590835|38000664148|2 +590833|38000664149|2 +591373|38000664150|2 +591278|38000664151|2 +683437|38000664152|2 +591884|38000664153|4 +591744|38000664156|2 +591424|38000664157|2 +591989|38000664158|2 +591751|38000664160|2 +591631|38000664163|2 +591215|38000664166|2 +591834|38000664171|2 +591245|38000664172|2 +592295|38000664175|2 +592467|38000664177|4 +592607|38000664179|2 +592604|38000664180|2 +592726|38000664181|2 +592722|38000664182|2 +592739|38000664183|2 +592740|38000664184|2 +593302|38000664194|2 +593389|38000664197|2 +593668|38000664201|2 +593670|38000664202|2 +593698|38000664205|2 +593954|38000664210|2 +594114|38000664212|2 +594130|38000664213|2 +594276|38000664215|2 +594281|38000664217|2 +594179|38000664218|2 +594515|38000664221|2 +594535|38000664222|2 +594516|38000664223|2 +594540|38000664224|2 +594650|38000664226|2 +594737|38000664227|2 +594764|38000664228|2 +594990|38000664231|2 +595147|38000664234|2 +595195|38000664235|2 +595524|38000664240|2 +595639|38000664241|2 +596017|38000664244|2 +595840|38000664245|2 +596083|38000664246|2 +596082|38000664247|2 +596134|38000664248|2 +596187|38000664249|2 +596292|38000664253|2 +596377|38000664255|2 +596382|38000664256|2 +596381|38000664257|2 +596461|38000664259|2 +596460|38000664260|2 +596471|38000664261|2 +596469|38000664262|2 +596603|38000664263|2 +596608|38000664265|2 +596651|38000664267|2 +596686|38000664270|2 +596664|38000664272|2 +596823|38000664276|2 +597118|38000664278|2 +597220|38000664279|2 +597214|38000664281|2 +597191|38000664286|2 +597192|38000664287|2 +597594|38000664291|2 +597986|38000664296|2 +597967|38000664297|2 +597907|38000664303|2 +597935|38000664305|2 +597936|38000664307|2 +597906|38000664308|2 +597942|38000664309|2 +597959|38000664310|2 +597910|38000664311|2 +597991|38000664312|2 +597937|38000664313|2 +597938|38000664315|2 +598047|38000664316|2 +598080|38000664319|2 +598082|38000664321|2 +598090|38000664322|2 +598288|38000664326|2 +598262|38000664328|2 +598471|38000664329|2 +599315|38000664335|2 +599161|38000664338|2 +598844|38000664339|2 +598966|38000664341|2 +599162|38000664345|2 +599188|38000664347|2 +599112|38000664348|2 +599113|38000664350|2 +599275|38000664351|4 +598784|38000664356|2 +599881|38000664363|2 +600169|38000664368|2 +600383|38000664371|2 +600387|38000664372|4 +600359|38000664373|2 +600598|38000664377|2 +600575|38000664379|2 +600974|38000664380|2 +627837|38000664382|2 +601207|38000664383|2 +601248|38000664384|2 +601264|38000664385|2 +601258|38000664386|2 +601329|38000664387|2 +601351|38000664389|2 +601352|38000664390|2 +640027|38000664391|2 +601472|38000664394|2 +601547|38000664396|2 +601570|38000664397|2 +601725|38000664399|2 +601789|38000664400|2 +601811|38000664402|2 +601820|38000664404|2 +601936|38000664405|2 +601896|38000664406|2 +524684|38000664408|2 +602411|38000664409|2 +602408|38000664410|2 +602657|38000664414|2 +628252|38000664420|2 +603041|38000664421|2 +603514|38000664426|2 +603526|38000664427|2 +603631|38000664428|2 +603844|38000664431|2 +604062|38000664432|2 +603830|38000664433|2 +603967|38000664434|2 +603888|38000664441|2 +604121|38000664442|2 +604127|38000664443|2 +604168|38000664444|2 +604164|38000664446|2 +604184|38000664448|2 +604513|38000664450|2 +604722|38000664452|2 +604958|38000664453|2 +605136|38000664455|2 +605182|38000664458|2 +605029|38000664459|2 +605054|38000664460|2 +604837|38000664461|2 +605077|38000664462|2 +604770|38000664463|2 +605080|38000664464|2 +604863|38000664465|2 +606182|38000664474|2 +606349|38000664477|2 +606410|38000664481|2 +606471|38000664483|2 +606484|38000664484|2 +606496|38000664486|2 +606875|38000664498|2 +606873|38000664499|2 +606874|38000664500|2 +607075|38000664504|2 +607319|38000664505|2 +607539|38000664507|4 +607540|38000664508|4 +607495|38000664509|2 +607332|38000664510|2 +607564|38000664511|2 +607355|38000664512|2 +607541|38000664513|4 +607866|38000664516|2 +608001|38000664518|2 +607867|38000664521|2 +608200|38000664525|2 +608201|38000664527|2 +608437|38000664528|2 +849759|38000664529|2 +608529|38000664530|2 +608468|38000664535|2 +608565|38000664536|2 +608469|38000664537|2 +608524|38000664538|2 +608603|38000664540|2 +608606|38000664541|2 +608599|38000664542|2 +608600|38000664544|2 +608846|38000664549|2 +608845|38000664550|2 +608855|38000664551|2 +608893|38000664552|2 +608883|38000664553|2 +609188|38000664555|2 +609223|38000664556|2 +609722|38000664558|2 +609313|38000664560|2 +609626|38000664561|2 +609329|38000664562|2 +609468|38000664563|2 +609299|38000664564|2 +609723|38000664565|2 +609618|38000664568|2 +609200|38000664571|2 +609178|38000664573|2 +609179|38000664575|2 +609531|38000664576|2 +609312|38000664577|2 +609154|38000664578|2 +609595|38000664579|4 +609630|38000664580|2 +609328|38000664582|2 +609487|38000664583|2 +609259|38000664584|2 +609467|38000664585|2 +609855|38000664590|2 +610004|38000664592|2 +610137|38000664594|4 +610424|38000664602|2 +610646|38000664603|2 +610656|38000664605|2 +610792|38000664607|2 +611171|38000664610|2 +611174|38000664611|2 +612234|38000664612|2 +612647|38000664616|2 +612440|38000664618|2 +612121|38000664619|2 +611612|38000664621|2 +611353|38000664622|2 +612235|38000664627|2 +611643|38000664629|2 +612122|38000664630|2 +611516|38000664631|2 +612648|38000664633|2 +611464|38000664634|2 +611507|38000664638|2 +612161|38000664639|2 +611436|38000664640|2 +612441|38000664642|2 +612476|38000664643|2 +611725|38000664644|2 +612649|38000664645|2 +611465|38000664650|2 +612442|38000664653|4 +612380|38000664654|4 +750742|38000664655|2 +612938|38000664656|2 +612878|38000664658|2 +613020|38000664665|2 +613021|38000664666|2 +613002|38000664668|2 +613015|38000664669|2 +613022|38000664671|2 +613249|38000664672|2 +613188|38000664673|2 +613069|38000664676|2 +613127|38000664677|2 +613181|38000664678|2 +613128|38000664679|2 +613121|38000664680|2 +613462|38000664681|2 +613463|38000664684|2 +537789|38000664688|2 +613858|38000664694|2 +613464|38000664696|2 +613698|38000664700|2 +613465|38000664701|2 +614123|38000664704|2 +778785|38000664707|2 +614262|38000664708|2 +614387|38000664709|2 +614394|38000664710|2 +614472|38000664711|2 +614606|38000664712|2 +614688|38000664713|2 +614664|38000664714|2 +614689|38000664716|2 +614746|38000664717|2 +614802|38000664718|2 +614804|38000664721|2 +615167|38000664728|2 +615352|38000664732|2 +615217|38000664737|2 +615529|38000664740|2 +516697|38000664741|2 +615558|38000664742|2 +615546|38000664743|2 +615779|38000664746|2 +615771|38000664747|2 +615764|38000664748|2 +615772|38000664749|2 +615814|38000664751|2 +615920|38000664757|2 +615927|38000664762|2 +616139|38000664766|2 +616203|38000664767|2 +616068|38000664770|2 +616053|38000664771|2 +616187|38000664772|2 +616055|38000664773|2 +616049|38000664776|2 +616151|38000664781|2 +616020|38000664782|2 +616146|38000664786|2 +616188|38000664788|2 +616180|38000664790|2 +616308|38000664799|2 +616335|38000664800|2 +616339|38000664801|2 +616210|38000664802|2 +616376|38000664803|2 +616364|38000664804|2 +616520|38000664810|2 +616891|38000664816|2 +617058|38000664817|2 +856320|38000664818|2 +617059|38000664819|2 +617422|38000664824|2 +617290|38000664825|2 +617395|38000664826|4 +617291|38000664827|2 +617423|38000664828|2 +617475|38000664830|2 +617478|38000664832|2 +617683|38000664837|2 +550181|38000664838|2 +617752|38000664839|2 +617805|38000664841|2 +617778|38000664842|2 +618033|38000664843|2 +618238|38000664845|2 +618186|38000664846|2 +618228|38000664847|2 +618595|38000664850|2 +618707|38000664851|2 +619098|38000664858|2 +619437|38000664859|2 +619533|38000664861|2 +620123|38000664872|2 +620095|38000664873|2 +620864|38000664881|2 +620817|38000664884|2 +620865|38000664885|2 +620753|38000664887|2 +620848|38000664889|2 +620975|38000664892|2 +621048|38000664894|2 +621064|38000664895|2 +621591|38000664896|4 +621498|38000664899|2 +622051|38000664901|2 +622525|38000664904|2 +622530|38000664905|2 +622526|38000664906|2 +622531|38000664907|2 +622817|38000664908|2 +622840|38000664909|2 +623054|38000664910|2 +623159|38000664911|2 +623093|38000664912|2 +623017|38000664913|2 +623085|38000664916|2 +623289|38000664917|2 +623604|38000664920|2 +623605|38000664922|2 +623581|38000664925|2 +623594|38000664926|2 +623795|38000664928|2 +623982|38000664930|2 +697742|38000664931|2 +624084|38000664934|2 +623987|38000664936|2 +624172|38000664939|2 +623936|38000664940|2 +623952|38000664942|2 +624039|38000664943|2 +624254|38000664945|2 +624260|38000664946|2 +624596|38000664950|2 +624702|38000664952|2 +624507|38000664954|2 +625150|38000664957|2 +625107|38000664958|2 +625299|38000664960|2 +625437|38000664961|2 +625714|38000664965|2 +1200449|38000664967|2 +625878|38000664971|2 +626026|38000664973|2 +626124|38000664975|2 +626123|38000664976|2 +886691|38000664977|2 +626485|38000664978|2 +626486|38000664979|2 +626538|38000664981|2 +626520|38000664982|2 +626519|38000664985|2 +626525|38000664986|2 +626550|38000664987|2 +626659|38000664989|2 +626657|38000664990|2 +626660|38000664994|2 +626877|38000664995|2 +626952|38000664996|2 +626998|38000664997|2 +627079|38000664998|2 +627080|38000664999|2 +627083|38000665000|2 +627119|38000665001|2 +627160|38000665002|2 +627515|38000665004|2 +627526|38000665006|2 +627527|38000665007|2 +627937|38000665010|2 +628452|38000665015|2 +628850|38000665017|2 +628945|38000665018|2 +628987|38000665022|2 +629030|38000665023|2 +629001|38000665024|2 +629201|38000665026|2 +629490|38000665029|2 +629420|38000665030|2 +629528|38000665036|2 +629522|38000665037|2 +629524|38000665038|2 +629526|38000665040|2 +626201|38000665041|4 +629574|38000665043|2 +629559|38000665046|2 +629657|38000665047|2 +629862|38000665050|2 +629915|38000665052|2 +629863|38000665053|2 +629747|38000665054|2 +630105|38000665057|2 +630104|38000665058|2 +630170|38000665060|2 +630197|38000665064|2 +630427|38000665066|2 +630428|38000665067|2 +630435|38000665068|2 +630876|38000665070|2 +630863|38000665071|2 +630991|38000665072|2 +630992|38000665073|2 +631067|38000665079|2 +631054|38000665081|2 +631155|38000665084|2 +631631|38000665085|2 +632004|38000665090|2 +632157|38000665091|2 +632142|38000665092|2 +632153|38000665093|2 +632482|38000665094|2 +633013|38000665095|2 +632704|38000665097|2 +632705|38000665098|2 +632920|38000665099|2 +632564|38000665100|2 +633231|38000665101|2 +633232|38000665102|2 +633362|38000665104|2 +633368|38000665105|2 +633359|38000665106|2 +633470|38000665109|2 +633498|38000665115|2 +633503|38000665117|2 +633829|38000665122|2 +633853|38000665123|2 +675752|38000665124|2 +633960|38000665130|2 +633962|38000665132|2 +634033|38000665133|2 +634093|38000665134|2 +634094|38000665135|2 +634004|38000665136|2 +634210|38000665138|2 +634226|38000665140|2 +727310|38000665143|2 +634836|38000665154|2 +635304|38000665155|2 +637291|38000665168|2 +637382|38000665169|2 +637272|38000665171|2 +637362|38000665176|2 +637345|38000665177|2 +637563|38000665182|2 +637975|38000665185|2 +637969|38000665186|2 +638024|38000665187|2 +665552|38000665191|2 +638271|38000665192|2 +638311|38000665195|2 +638396|38000665197|2 +638966|38000665202|2 +638894|38000665204|2 +520630|38000665205|2 +638962|38000665206|2 +638967|38000665207|2 +489365|38000665209|2 +638991|38000665210|2 +639018|38000665212|2 +639022|38000665213|2 +639013|38000665214|2 +639084|38000665215|2 +639100|38000665216|2 +639085|38000665220|2 +777998|38000665226|2 +639188|38000665227|2 +639529|38000665231|2 +639817|38000665239|2 +639886|38000665241|2 +639956|38000665243|2 +639924|38000665244|2 +640048|38000665245|2 +640049|38000665246|2 +640050|38000665247|2 +640242|38000665253|2 +640247|38000665255|2 +640381|38000665257|2 +640524|38000665258|2 +640592|38000665259|2 +640863|38000665261|2 +640868|38000665264|2 +615719|38000665269|2 +640910|38000665270|2 +577382|38000665271|2 +640946|38000665273|2 +640962|38000665274|2 +640964|38000665276|2 +641093|38000665279|2 +641099|38000665280|2 +641103|38000665281|2 +642056|38000665286|2 +642057|38000665288|2 +642058|38000665290|2 +642061|38000665291|2 +642196|38000665292|2 +642594|38000665296|2 +642641|38000665298|2 +642667|38000665299|2 +643010|38000665302|2 +643014|38000665304|2 +643024|38000665305|2 +643054|38000665306|2 +643074|38000665307|2 +643114|38000665308|2 +643485|38000665310|2 +643575|38000665313|2 +643981|38000665316|2 +643889|38000665317|2 +643977|38000665318|2 +644059|38000665319|2 +644055|38000665321|2 +644057|38000665322|2 +644061|38000665325|2 +644241|38000665329|4 +644252|38000665330|2 +644546|38000665334|2 +644663|38000665335|2 +827961|38000665338|4 +644674|38000665340|2 +644681|38000665341|2 +644867|38000665343|2 +645393|38000665344|2 +645154|38000665345|2 +645270|38000665346|2 +645166|38000665347|2 +645222|38000665348|2 +645373|38000665349|2 +645231|38000665350|2 +645318|38000665351|2 +645623|38000665354|2 +645772|38000665358|2 +645827|38000665361|2 +645854|38000665363|2 +645836|38000665364|2 +645849|38000665365|2 +645843|38000665367|2 +646041|38000665368|2 +646109|38000665371|2 +646315|38000665373|2 +646293|38000665375|2 +646699|38000665378|2 +630370|38000665380|2 +646700|38000665381|2 +646558|38000665384|2 +646701|38000665385|2 +646722|38000665387|2 +647000|38000665391|2 +647253|38000665394|2 +647311|38000665395|2 +647315|38000665396|2 +647555|38000665406|2 +647559|38000665407|2 +647762|38000665409|2 +647773|38000665410|2 +647770|38000665411|2 +647763|38000665412|2 +647822|38000665414|2 +647865|38000665415|2 +829495|38000665416|4 +647866|38000665417|2 +647869|38000665418|2 +647868|38000665419|2 +647955|38000665420|2 +565261|38000665421|2 +648043|38000665425|2 +647999|38000665427|2 +648014|38000665429|2 +648062|38000665430|2 +648000|38000665431|2 +648063|38000665434|2 +648049|38000665435|2 +648292|38000665441|2 +648264|38000665442|2 +648370|38000665443|2 +648607|38000665444|2 +648609|38000665445|2 +648978|38000665447|2 +648975|38000665448|2 +648976|38000665449|2 +649155|38000665450|2 +649238|38000665452|2 +649233|38000665453|2 +649222|38000665455|2 +649220|38000665456|2 +649448|38000665460|2 +649436|38000665461|2 +766998|38000665463|2 +649530|38000665464|2 +649551|38000665465|2 +649604|38000665466|2 +649661|38000665467|2 +649694|38000665468|2 +649672|38000665469|2 +649669|38000665472|2 +649788|38000665475|2 +649798|38000665476|2 +649893|38000665478|2 +649889|38000665479|2 +649906|38000665480|2 +649891|38000665481|2 +649921|38000665482|2 +649900|38000665484|2 +650095|38000665490|2 +650156|38000665491|2 +650179|38000665494|2 +650114|38000665496|2 +897202|38000665497|2 +650438|38000665499|2 +650439|38000665501|2 +650458|38000665503|2 +650722|38000665506|2 +650720|38000665507|2 +650816|38000665510|2 +650796|38000665511|2 +650992|38000665516|2 +650847|38000665517|2 +650950|38000665518|2 +650981|38000665520|2 +651045|38000665521|2 +758781|38000665525|2 +580447|38000665528|2 +651472|38000665529|2 +651549|38000665532|2 +652134|38000665540|2 +652136|38000665541|2 +652195|38000665545|2 +652216|38000665546|2 +652287|38000665548|2 +652409|38000665550|2 +652316|38000665554|2 +652367|38000665555|2 +652302|38000665558|2 +652408|38000665559|2 +652412|38000665560|2 +652413|38000665561|2 +652263|38000665562|2 +652229|38000665563|2 +652297|38000665564|2 +652464|38000665565|2 +657615|38000665570|2 +652734|38000665571|2 +652720|38000665572|2 +652724|38000665573|2 +652728|38000665574|2 +652721|38000665575|2 +652747|38000665576|2 +652871|38000665579|2 +652853|38000665580|2 +652842|38000665582|2 +652865|38000665583|2 +652877|38000665584|2 +652872|38000665585|2 +652850|38000665586|2 +652859|38000665587|2 +652860|38000665589|2 +652863|38000665590|2 +845403|38000665591|2 +652991|38000665592|2 +653422|38000665594|2 +653433|38000665595|2 +653718|38000665596|2 +653810|38000665604|2 +654323|38000665606|2 +654432|38000665608|2 +654816|38000665614|2 +654809|38000665615|2 +654639|38000665616|2 +654666|38000665617|2 +654577|38000665619|2 +655272|38000665621|2 +655767|38000665622|2 +656422|38000665628|2 +656427|38000665629|2 +656428|38000665630|2 +656461|38000665635|2 +656465|38000665636|2 +656462|38000665637|2 +656463|38000665639|2 +656468|38000665641|2 +656467|38000665646|2 +656482|38000665650|2 +656533|38000665651|2 +656534|38000665652|2 +656518|38000665653|2 +656500|38000665656|2 +656483|38000665657|2 +656476|38000665659|2 +656520|38000665661|2 +656532|38000665663|2 +656507|38000665664|2 +656517|38000665665|2 +656521|38000665667|2 +654027|38000665669|2 +656504|38000665670|2 +656477|38000665674|2 +656547|38000665678|2 +656535|38000665679|2 +656569|38000665681|2 +656579|38000665683|2 +656605|38000665685|2 +656594|38000665686|2 +656794|38000665689|2 +656793|38000665697|2 +656872|38000665701|2 +656893|38000665702|2 +889028|38000665703|2 +657313|38000665709|2 +657307|38000665712|2 +657312|38000665713|2 +657336|38000665714|2 +775796|38000665721|2 +657769|38000665722|2 +657766|38000665723|2 +657886|38000665725|2 +657913|38000665726|2 +657914|38000665727|2 +658000|38000665729|2 +658315|38000665730|2 +658331|38000665732|2 +658568|38000665735|2 +658710|38000665736|2 +658627|38000665738|2 +658782|38000665739|2 +658783|38000665740|2 +658894|38000665741|2 +658841|38000665742|4 +658955|38000665744|2 +659013|38000665746|2 +659190|38000665749|2 +659181|38000665750|2 +659211|38000665751|2 +659208|38000665752|2 +659212|38000665753|2 +659191|38000665755|2 +659179|38000665756|2 +659200|38000665757|2 +659186|38000665758|2 +659192|38000665759|2 +659247|38000665763|2 +659305|38000665766|2 +659298|38000665768|2 +659307|38000665770|2 +659309|38000665771|2 +659585|38000665777|2 +659695|38000665779|2 +659761|38000665780|2 +659766|38000665782|2 +659777|38000665783|2 +660054|38000665785|2 +660094|38000665786|2 +660167|38000665789|2 +660234|38000665792|2 +660200|38000665797|2 +660169|38000665800|2 +660216|38000665802|2 +660275|38000665803|2 +660201|38000665804|2 +660220|38000665806|2 +660188|38000665807|2 +660202|38000665809|2 +660187|38000665810|2 +660463|38000665811|2 +660538|38000665812|2 +660531|38000665813|2 +660680|38000665814|2 +660658|38000665816|2 +660837|38000665820|2 +660846|38000665822|2 +660843|38000665826|2 +853073|38000665827|2 +660895|38000665830|2 +660952|38000665831|2 +660942|38000665832|2 +661051|38000665833|2 +661070|38000665834|2 +661251|38000665836|2 +661297|38000665838|2 +868029|38000665839|2 +661254|38000665840|2 +661385|38000665841|2 +661370|38000665842|2 +661342|38000665843|2 +661419|38000665845|2 +661392|38000665847|2 +661504|38000665850|2 +768299|38000665852|2 +661804|38000665854|2 +661805|38000665855|2 +661855|38000665856|2 +661856|38000665857|2 +676967|38000665859|2 +662338|38000665860|2 +662382|38000665861|2 +662417|38000665862|2 +662427|38000665863|2 +662684|38000665867|2 +662677|38000665869|2 +662597|38000665870|2 +662719|38000665872|2 +663002|38000665876|2 +663005|38000665877|2 +663200|38000665880|2 +663152|38000665881|2 +663329|38000665882|2 +663914|38000665890|2 +663975|38000665891|2 +664026|38000665892|2 +664007|38000665893|2 +663966|38000665894|2 +664099|38000665895|2 +664257|38000665898|2 +664427|38000665902|2 +664913|38000665907|2 +664938|38000665908|2 +665222|38000665910|2 +688609|38000665911|2 +665491|38000665913|2 +665809|38000665915|2 +665768|38000665917|2 +665701|38000665918|2 +665591|38000665920|2 +665750|38000665921|2 +665631|38000665923|2 +665897|38000665924|2 +665915|38000665925|2 +665973|38000665928|2 +665974|38000665929|2 +666016|38000665931|2 +666399|38000665932|2 +666857|38000665938|2 +666842|38000665940|2 +666860|38000665941|2 +666862|38000665942|2 +666863|38000665943|2 +666887|38000665944|2 +667152|38000665945|2 +667232|38000665946|2 +667247|38000665947|2 +667274|38000665948|2 +667758|38000665950|2 +667806|38000665952|2 +667807|38000665953|2 +668047|38000665960|2 +668071|38000665961|2 +668072|38000665962|2 +668568|38000665963|2 +668703|38000665964|2 +668818|38000665971|2 +668817|38000665972|2 +669075|38000665978|2 +669287|38000665981|2 +669272|38000665982|2 +669305|38000665983|2 +669504|38000665985|2 +669450|38000665986|2 +669475|38000665988|2 +669288|38000665990|2 +669355|38000665991|2 +669621|38000665992|2 +669672|38000665993|2 +669631|38000665994|2 +669632|38000665995|2 +670326|38000666003|2 +670279|38000666004|2 +670307|38000666005|2 +670250|38000666006|2 +670356|38000666010|2 +670366|38000666012|2 +670494|38000666016|2 +670571|38000666017|2 +670506|38000666018|2 +670453|38000666019|2 +670732|38000666020|2 +670705|38000666021|2 +828632|38000666022|4 +670855|38000666023|2 +670875|38000666025|2 +670876|38000666026|2 +670993|38000666027|2 +670972|38000666028|2 +670986|38000666029|2 +671428|38000666030|2 +671771|38000666034|2 +671676|38000666035|2 +671821|38000666036|2 +671738|38000666040|2 +671802|38000666042|2 +671706|38000666043|2 +671796|38000666044|4 +671858|38000666047|2 +672060|38000666048|2 +672242|38000666050|4 +672078|38000666052|2 +672155|38000666054|2 +672175|38000666056|2 +671942|38000666058|2 +672424|38000666062|2 +672466|38000666063|2 +672449|38000666064|2 +672581|38000666071|2 +672836|38000666074|2 +672843|38000666078|2 +673066|38000666088|2 +673149|38000666089|2 +673217|38000666092|2 +673512|38000666094|2 +673435|38000666095|2 +673635|38000666096|2 +673485|38000666100|2 +673702|38000666102|2 +673770|38000666105|2 +673757|38000666106|2 +674111|38000666107|2 +674166|38000666113|2 +630354|38000666115|2 +674243|38000666116|2 +674254|38000666118|2 +674248|38000666122|2 +674381|38000666124|2 +674527|38000666129|2 +674643|38000666130|2 +674642|38000666131|2 +674688|38000666133|2 +674685|38000666134|2 +674846|38000666138|2 +674946|38000666139|4 +675186|38000666143|2 +675444|38000666145|2 +675359|38000666146|2 +675619|38000666147|2 +675963|38000666149|2 +676098|38000666152|2 +676201|38000666155|2 +676412|38000666159|2 +676426|38000666160|2 +676561|38000666165|2 +676602|38000666168|2 +676646|38000666169|2 +676660|38000666170|2 +676651|38000666171|2 +676647|38000666172|2 +801045|38000666173|2 +676772|38000666174|2 +676737|38000666175|2 +676994|38000666177|2 +676956|38000666178|2 +676911|38000666179|2 +677204|38000666180|2 +677378|38000666182|2 +677319|38000666184|2 +467907|38000666186|2 +677467|38000666188|2 +677562|38000666189|2 +677577|38000666190|2 +678001|38000666195|2 +678181|38000666198|2 +678230|38000666199|2 +678759|38000666207|2 +678763|38000666208|2 +678867|38000666209|2 +678968|38000666211|2 +795022|38000666212|2 +678942|38000666213|2 +679688|38000666216|2 +680147|38000666220|2 +680306|38000666224|2 +680354|38000666226|2 +680342|38000666227|2 +629278|38000666229|2 +680767|38000666232|2 +680771|38000666233|2 +681168|38000666241|2 +877100|38000666245|2 +681220|38000666247|2 +681227|38000666248|2 +681296|38000666251|2 +681307|38000666252|2 +681414|38000666253|2 +681434|38000666255|2 +681467|38000666256|2 +681625|38000666257|2 +681826|38000666258|2 +681925|38000666259|4 +681899|38000666260|2 +681783|38000666261|2 +682145|38000666263|2 +682064|38000666264|2 +682358|38000666265|2 +882338|38000666266|2 +682355|38000666267|2 +682896|38000666272|2 +682843|38000666273|2 +682925|38000666277|2 +683408|38000666285|2 +683409|38000666286|2 +683410|38000666287|2 +683449|38000666290|2 +683443|38000666293|2 +683450|38000666295|2 +683699|38000666298|2 +683649|38000666299|2 +683686|38000666301|2 +683872|38000666303|2 +684043|38000666305|2 +683934|38000666306|2 +684160|38000666308|2 +684504|38000666310|2 +684522|38000666311|2 +684885|38000666312|2 +684886|38000666314|2 +684940|38000666315|2 +685430|38000666316|2 +685412|38000666317|2 +685460|38000666318|2 +685713|38000666323|2 +685872|38000666325|2 +685755|38000666329|2 +685818|38000666330|2 +685765|38000666334|2 +685699|38000666336|2 +685851|38000666338|2 +685977|38000666339|4 +686140|38000666342|2 +686405|38000666346|2 +686576|38000666352|2 +686581|38000666354|2 +686578|38000666355|2 +702391|38000666358|2 +687522|38000666359|2 +687612|38000666360|2 +687619|38000666361|2 +553071|38000666368|2 +688532|38000666369|2 +688584|38000666370|2 +688540|38000666371|2 +688541|38000666373|2 +852928|38000666374|2 +688557|38000666375|2 +688814|38000666377|2 +688796|38000666381|2 +689124|38000666385|2 +689398|38000666386|2 +689932|38000666391|2 +690481|38000666399|2 +690480|38000666400|2 +690527|38000666402|2 +690540|38000666403|2 +690562|38000666406|2 +690609|38000666408|2 +690610|38000666409|2 +690619|38000666410|2 +690897|38000666412|2 +690926|38000666413|2 +690838|38000666415|2 +690798|38000666416|2 +713991|38000666417|2 +691048|38000666418|2 +691192|38000666421|2 +691150|38000666422|2 +691362|38000666426|2 +691838|38000666429|2 +691839|38000666430|2 +692040|38000666431|2 +692233|38000666433|2 +557854|38000666437|2 +692379|38000666439|2 +692387|38000666440|2 +692388|38000666442|2 +692382|38000666443|2 +692489|38000666445|2 +692622|38000666447|2 +692621|38000666448|2 +692660|38000666449|2 +692681|38000666450|2 +692791|38000666451|2 +692938|38000666456|2 +716680|38000666458|2 +692963|38000666459|2 +692973|38000666460|2 +692980|38000666461|2 +693066|38000666463|2 +693172|38000666466|2 +693260|38000666467|2 +693151|38000666468|2 +693171|38000666469|2 +693243|38000666471|2 +693439|38000666472|2 +693235|38000666475|2 +693157|38000666477|2 +693244|38000666478|2 +693169|38000666479|2 +693390|38000666480|2 +693149|38000666481|2 +693333|38000666483|2 +693268|38000666484|2 +693209|38000666486|2 +693440|38000666487|2 +693251|38000666488|2 +693665|38000666490|2 +693675|38000666491|2 +693582|38000666492|2 +693542|38000666493|2 +693741|38000666494|2 +693939|38000666499|2 +531678|38000666500|2 +693815|38000666501|2 +693968|38000666502|2 +693967|38000666503|2 +693975|38000666505|2 +694511|38000666508|2 +694453|38000666510|2 +694454|38000666512|2 +694541|38000666513|4 +694302|38000666514|2 +694710|38000666516|2 +694784|38000666518|2 +694857|38000666519|2 +835102|38000666522|4 +695458|38000666525|2 +695544|38000666527|4 +695422|38000666528|2 +695786|38000666529|2 +695782|38000666530|2 +696285|38000666539|2 +696260|38000666540|2 +696283|38000666544|2 +696275|38000666545|2 +696415|38000666546|2 +696701|38000666548|2 +696711|38000666550|2 +696811|38000666554|2 +696797|38000666555|2 +696851|38000666556|2 +696847|38000666558|2 +696841|38000666561|2 +509054|38000666562|2 +697291|38000666563|2 +697356|38000666565|2 +697354|38000666566|2 +697355|38000666567|2 +697765|38000666574|2 +882472|38000666576|2 +697809|38000666578|2 +697814|38000666579|2 +697951|38000666584|2 +697905|38000666585|2 +734407|38000666586|2 +698451|38000666591|2 +698473|38000666593|2 +698871|38000666595|2 +698495|38000666598|2 +699908|38000666602|2 +700385|38000666607|2 +700290|38000666608|2 +700345|38000666609|2 +700384|38000666610|2 +701344|38000666613|2 +700587|38000666615|2 +700812|38000666616|2 +700607|38000666617|2 +701337|38000666622|2 +701199|38000666623|2 +701633|38000666624|2 +701756|38000666628|2 +701760|38000666631|2 +701777|38000666632|2 +701772|38000666633|2 +701803|38000666636|2 +701935|38000666639|2 +701978|38000666640|2 +701952|38000666643|2 +701969|38000666644|2 +701938|38000666645|2 +702020|38000666646|2 +702671|38000666651|2 +702674|38000666652|2 +702874|38000666653|2 +702987|38000666657|2 +702934|38000666659|2 +702966|38000666660|2 +703049|38000666661|2 +703078|38000666664|2 +704171|38000666675|2 +704218|38000666677|2 +704931|38000666682|2 +704861|38000666686|2 +704876|38000666687|2 +704989|38000666689|2 +704988|38000666692|2 +705089|38000666694|2 +705401|38000666700|2 +705402|38000666701|2 +705510|38000666702|2 +705501|38000666703|2 +705500|38000666704|2 +705508|38000666705|2 +705976|38000666710|2 +706106|38000666712|2 +706028|38000666714|2 +706044|38000666715|2 +706109|38000666716|2 +706220|38000666717|2 +706349|38000666720|2 +706460|38000666723|2 +706461|38000666724|2 +706491|38000666726|2 +706485|38000666727|2 +706495|38000666730|2 +760966|38000666732|2 +516096|38000666733|2 +706526|38000666734|2 +706519|38000666735|2 +706802|38000666736|2 +706612|38000666737|2 +706717|38000666741|2 +706764|38000666742|2 +706656|38000666743|2 +707063|38000666748|2 +707347|38000666752|2 +707406|38000666756|2 +707419|38000666757|2 +707579|38000666759|2 +707452|38000666760|2 +707576|38000666761|2 +707479|38000666762|2 +707605|38000666766|2 +707504|38000666767|2 +707580|38000666770|2 +707784|38000666773|2 +707882|38000666774|2 +707883|38000666775|2 +708104|38000666781|2 +708499|38000666787|2 +708460|38000666789|2 +708464|38000666790|2 +708462|38000666791|2 +708448|38000666792|2 +708452|38000666793|2 +708496|38000666794|2 +708481|38000666795|2 +708449|38000666796|2 +708454|38000666797|2 +708540|38000666799|2 +708626|38000666800|2 +708753|38000666803|2 +708911|38000666805|2 +709333|38000666808|2 +709338|38000666809|2 +709405|38000666813|2 +709449|38000666814|2 +709486|38000666817|2 +709719|38000666818|2 +710148|38000666820|4 +709782|38000666822|2 +710245|38000666824|2 +710162|38000666825|2 +710142|38000666827|4 +710024|38000666828|2 +709812|38000666829|2 +709783|38000666831|2 +709760|38000666832|2 +709875|38000666833|2 +710149|38000666834|4 +709859|38000666837|2 +709902|38000666840|2 +710060|38000666841|2 +709784|38000666842|2 +710270|38000666843|2 +710289|38000666844|2 +710287|38000666845|2 +710585|38000666850|2 +710590|38000666851|2 +711863|38000666856|2 +711604|38000666861|2 +711975|38000666863|2 +711998|38000666865|2 +711801|38000666867|2 +711999|38000666868|2 +711936|38000666869|2 +711978|38000666870|2 +711673|38000666871|2 +712089|38000666873|2 +660504|38000666874|2 +711802|38000666876|2 +711669|38000666877|2 +711892|38000666878|2 +711768|38000666880|2 +711651|38000666882|2 +712701|38000666893|2 +712748|38000666896|2 +712735|38000666897|2 +808682|38000666898|2 +712720|38000666899|2 +712760|38000666900|2 +712737|38000666901|2 +712694|38000666903|2 +712799|38000666904|2 +712835|38000666907|2 +713030|38000666908|2 +712987|38000666910|2 +712921|38000666913|2 +712941|38000666914|2 +712977|38000666916|2 +713448|38000666921|2 +713444|38000666922|2 +713554|38000666923|2 +713999|38000666930|2 +713920|38000666931|2 +714327|38000666932|2 +714362|38000666934|2 +714387|38000666938|2 +714474|38000666939|2 +714618|38000666940|2 +714709|38000666942|2 +714707|38000666943|2 +714560|38000666944|2 +770001|38000666948|2 +714849|38000666949|2 +714890|38000666950|2 +715245|38000666952|2 +715246|38000666956|2 +715516|38000666959|2 +715660|38000666960|2 +715617|38000666965|2 +715640|38000666967|2 +715641|38000666969|2 +716279|38000666973|2 +716183|38000666974|2 +716372|38000666975|2 +716124|38000666977|2 +716404|38000666978|2 +717269|38000666983|2 +717187|38000666984|2 +717011|38000666986|2 +688586|38000666988|2 +717861|38000666991|2 +718127|38000666993|2 +718151|38000666996|2 +718108|38000666998|2 +718128|38000666999|2 +718295|38000667003|2 +718619|38000667012|2 +718621|38000667014|2 +718642|38000667016|4 +718673|38000667017|2 +718929|38000667020|2 +718970|38000667021|2 +718987|38000667022|2 +718950|38000667023|2 +719134|38000667025|2 +719339|38000667026|2 +719345|38000667028|2 +719342|38000667029|2 +719446|38000667030|2 +719492|38000667031|2 +719447|38000667034|2 +719761|38000667036|2 +719889|38000667037|2 +719742|38000667039|2 +719843|38000667040|2 +720107|38000667045|2 +720130|38000667047|2 +720138|38000667048|2 +720150|38000667049|2 +720234|38000667051|2 +720268|38000667052|2 +720301|38000667053|2 +720315|38000667054|2 +720660|38000667058|2 +720876|38000667060|2 +720932|38000667062|2 +720928|38000667063|2 +721011|38000667064|2 +721302|38000667068|2 +721299|38000667069|2 +721353|38000667070|2 +731291|38000667075|2 +722371|38000667077|2 +722370|38000667078|2 +722376|38000667080|2 +722373|38000667081|2 +722379|38000667082|2 +877252|38000667083|2 +722500|38000667084|2 +722771|38000667087|2 +722775|38000667089|2 +722598|38000667090|2 +722802|38000667091|2 +722664|38000667095|2 +723045|38000667097|2 +722665|38000667098|2 +722972|38000667100|2 +722950|38000667102|2 +722948|38000667103|2 +722614|38000667105|2 +723009|38000667106|2 +722909|38000667108|4 +723135|38000667111|2 +723111|38000667112|2 +723085|38000667113|2 +723136|38000667114|2 +723241|38000667118|2 +723239|38000667122|2 +723227|38000667123|2 +723581|38000667127|2 +723755|38000667128|2 +724099|38000667137|2 +724425|38000667141|2 +724426|38000667142|2 +724576|38000667144|2 +724496|38000667145|2 +724544|38000667146|2 +724888|38000667149|2 +724756|38000667150|2 +724796|38000667151|2 +615917|38000667154|2 +725135|38000667161|4 +724788|38000667162|2 +724707|38000667163|2 +724889|38000667164|2 +725330|38000667168|2 +725333|38000667169|2 +726241|38000667178|2 +726577|38000667181|2 +726503|38000667182|2 +726563|38000667184|2 +726955|38000667189|2 +726981|38000667192|2 +727001|38000667193|2 +727012|38000667195|2 +727026|38000667196|2 +727050|38000667197|2 +726956|38000667201|2 +727046|38000667202|2 +727057|38000667203|2 +727528|38000667206|2 +727827|38000667210|2 +727845|38000667211|2 +728003|38000667214|2 +728507|38000667219|2 +728536|38000667221|2 +729480|38000667223|2 +729428|38000667224|2 +730014|38000667225|4 +729481|38000667226|2 +856415|38000667227|2 +729964|38000667229|2 +730015|38000667231|4 +730608|38000667234|2 +730564|38000667236|2 +731070|38000667239|2 +731226|38000667243|2 +731227|38000667244|2 +731241|38000667247|2 +731250|38000667248|2 +858443|38000667250|2 +731252|38000667251|2 +731303|38000667253|2 +668116|38000667254|2 +731364|38000667255|2 +731354|38000667256|2 +731508|38000667257|2 +731509|38000667258|2 +731573|38000667259|2 +731574|38000667260|2 +731632|38000667261|2 +846637|38000667263|2 +731834|38000667264|2 +731851|38000667265|2 +731844|38000667266|2 +731808|38000667267|2 +731833|38000667268|2 +731924|38000667269|2 +731927|38000667272|2 +732085|38000667274|2 +732084|38000667275|2 +684465|38000667276|2 +732088|38000667278|2 +732083|38000667279|2 +732089|38000667281|2 +732429|38000667284|2 +732441|38000667286|2 +732453|38000667287|2 +732481|38000667288|2 +732676|38000667292|2 +732730|38000667295|2 +732729|38000667296|2 +732946|38000667299|2 +732948|38000667300|2 +732947|38000667301|2 +733079|38000667303|2 +733112|38000667305|2 +733047|38000667306|2 +733088|38000667307|2 +733240|38000667308|2 +733514|38000667311|2 +734116|38000667316|2 +734117|38000667317|2 +734080|38000667318|2 +733959|38000667323|2 +734273|38000667327|2 +734246|38000667328|2 +734339|38000667329|2 +897648|38000667334|2 +734348|38000667336|2 +734267|38000667337|2 +734396|38000667338|2 +734251|38000667340|2 +734227|38000667342|2 +734259|38000667343|2 +734274|38000667344|2 +734420|38000667345|2 +734462|38000667348|2 +734473|38000667350|2 +794995|38000667352|2 +734648|38000667354|2 +734714|38000667358|2 +734686|38000667360|2 +734936|38000667362|2 +735148|38000667364|2 +735144|38000667365|2 +735111|38000667367|2 +735236|38000667370|2 +735237|38000667371|2 +735245|38000667373|2 +735458|38000667374|2 +838228|38000667380|4 +863852|38000667381|2 +735750|38000667382|2 +735743|38000667383|2 +735876|38000667385|2 +735929|38000667386|2 +735911|38000667388|2 +735893|38000667390|2 +736303|38000667392|2 +736467|38000667394|2 +736436|38000667395|2 +736468|38000667396|2 +736389|38000667397|2 +736466|38000667398|2 +736409|38000667399|2 +736479|38000667401|2 +736376|38000667402|2 +736639|38000667403|2 +736646|38000667404|2 +736632|38000667405|2 +736767|38000667406|2 +736770|38000667407|2 +736845|38000667412|2 +736874|38000667413|2 +869802|38000667418|2 +737072|38000667420|2 +737093|38000667421|2 +737345|38000667422|2 +737346|38000667423|2 +737186|38000667426|4 +737371|38000667427|2 +456499|38000667431|2 +737724|38000667433|2 +737722|38000667434|2 +737719|38000667435|2 +737721|38000667436|2 +737723|38000667437|2 +737720|38000667438|2 +737883|38000667439|2 +737885|38000667440|2 +737882|38000667442|2 +696853|38000667448|2 +738561|38000667450|2 +738603|38000667451|2 +738607|38000667452|2 +738608|38000667453|2 +738754|38000667456|2 +738710|38000667457|2 +739001|38000667460|2 +739230|38000667463|2 +573936|38000667464|2 +739231|38000667465|2 +739324|38000667468|2 +739323|38000667469|2 +739466|38000667470|2 +739619|38000667472|2 +739610|38000667473|2 +739608|38000667474|2 +739621|38000667475|2 +739702|38000667477|2 +739872|38000667480|2 +740050|38000667483|2 +739969|38000667484|2 +740009|38000667485|2 +739970|38000667486|2 +740121|38000667487|2 +740214|38000667490|2 +740283|38000667492|2 +740268|38000667493|2 +740561|38000667495|2 +740573|38000667496|2 +740877|38000667502|2 +740892|38000667506|2 +740868|38000667507|2 +740771|38000667509|2 +740830|38000667510|2 +740798|38000667511|2 +740991|38000667512|2 +740957|38000667513|2 +741027|38000667517|2 +741036|38000667518|2 +741223|38000667519|2 +741331|38000667520|4 +741208|38000667521|2 +741353|38000667525|2 +741354|38000667527|2 +741355|38000667528|2 +741362|38000667529|2 +741373|38000667530|2 +741364|38000667531|2 +741415|38000667533|2 +741400|38000667537|2 +741537|38000667540|2 +741549|38000667541|2 +741784|38000667547|2 +638267|38000667548|2 +741943|38000667555|2 +741934|38000667557|2 +741948|38000667558|2 +741949|38000667559|2 +742027|38000667560|2 +742072|38000667561|2 +742201|38000667563|2 +742318|38000667566|2 +742299|38000667568|2 +743017|38000667573|2 +743303|38000667575|2 +743334|38000667576|2 +743314|38000667577|2 +743333|38000667578|2 +743292|38000667579|2 +743374|38000667581|2 +743375|38000667582|2 +743452|38000667583|2 +845538|38000667584|2 +743560|38000667588|2 +743684|38000667591|2 +743748|38000667592|2 +743665|38000667593|2 +743640|38000667594|2 +705866|38000667596|2 +744216|38000667597|2 +744172|38000667598|2 +744223|38000667599|2 +744188|38000667600|2 +744224|38000667603|2 +744162|38000667604|2 +744207|38000667606|2 +744173|38000667607|2 +744146|38000667609|2 +744485|38000667614|2 +744464|38000667616|2 +744499|38000667618|2 +744465|38000667619|2 +744518|38000667620|2 +744524|38000667623|2 +744799|38000667627|2 +744793|38000667628|2 +744805|38000667629|2 +744800|38000667630|2 +744970|38000667633|2 +745129|38000667639|2 +745166|38000667640|2 +745207|38000667644|2 +745296|38000667647|2 +745601|38000667648|2 +586258|38000667650|2 +745885|38000667652|2 +745878|38000667653|2 +745886|38000667654|2 +745879|38000667655|2 +745887|38000667656|2 +745880|38000667657|2 +745998|38000667658|2 +745979|38000667659|2 +745982|38000667660|2 +746012|38000667661|2 +746137|38000667663|2 +746179|38000667664|2 +746451|38000667666|2 +746860|38000667670|2 +747192|38000667676|2 +747382|38000667680|2 +747535|38000667682|2 +747584|38000667686|2 +747615|38000667688|2 +747712|38000667690|2 +747677|38000667692|2 +747822|38000667693|2 +747877|38000667696|2 +748686|38000667700|2 +749041|38000667703|2 +750789|38000667706|2 +750790|38000667708|2 +750903|38000667709|2 +750823|38000667710|2 +750807|38000667711|2 +750886|38000667713|2 +750712|38000667714|2 +750858|38000667715|2 +751892|38000667720|2 +752840|38000667721|2 +752866|38000667723|2 +752861|38000667724|2 +753265|38000667734|2 +753216|38000667735|2 +753321|38000667736|2 +753697|38000667741|2 +653709|38000667744|2 +753947|38000667745|2 +754372|38000667749|2 +754356|38000667751|2 +754407|38000667754|2 +754301|38000667756|2 +754234|38000667758|2 +754327|38000667760|2 +754545|38000667761|2 +754546|38000667762|2 +754565|38000667763|2 +754656|38000667764|2 +754669|38000667765|2 +754624|38000667767|2 +754616|38000667770|2 +754657|38000667771|2 +754670|38000667774|2 +754607|38000667778|2 +754973|38000667784|2 +754975|38000667785|2 +754912|38000667789|2 +754968|38000667790|2 +755231|38000667792|2 +755225|38000667794|2 +457574|38000667795|2 +755236|38000667796|2 +755247|38000667798|2 +755219|38000667799|2 +755252|38000667800|2 +755241|38000667801|2 +755492|38000667804|2 +454610|38000667805|2 +755615|38000667806|2 +755506|38000667807|2 +755658|38000667809|2 +755616|38000667812|2 +755822|38000667813|2 +755889|38000667818|2 +755887|38000667820|2 +755890|38000667821|2 +755885|38000667823|2 +755893|38000667825|2 +755915|38000667826|2 +756072|38000667827|2 +755980|38000667828|2 +480053|38000667831|2 +756551|38000667832|2 +756613|38000667833|2 +756614|38000667834|2 +756609|38000667835|2 +756610|38000667836|2 +756798|38000667840|2 +756881|38000667843|2 +757218|38000667844|2 +757000|38000667845|2 +756931|38000667846|2 +757077|38000667847|2 +757138|38000667848|2 +757081|38000667849|2 +756932|38000667852|2 +757001|38000667853|2 +757079|38000667854|2 +757136|38000667855|2 +757165|38000667857|2 +757219|38000667858|2 +864558|38000667859|2 +757135|38000667860|2 +757228|38000667864|2 +757498|38000667866|2 +757518|38000667870|2 +757519|38000667871|2 +757509|38000667872|2 +757503|38000667878|2 +757533|38000667879|4 +758129|38000667880|2 +757884|38000667881|2 +758130|38000667885|2 +757942|38000667886|2 +758299|38000667887|2 +758300|38000667888|2 +758297|38000667889|2 +758457|38000667893|2 +540057|38000667894|2 +758681|38000667896|2 +758714|38000667897|2 +758772|38000667900|2 +758774|38000667902|2 +758803|38000667904|2 +758809|38000667905|2 +759237|38000667907|2 +759273|38000667908|2 +759471|38000667910|2 +759449|38000667911|2 +759439|38000667912|2 +759543|38000667915|2 +759556|38000667916|2 +759557|38000667917|2 +759640|38000667919|2 +759998|38000667926|2 +760298|38000667927|2 +760438|38000667935|2 +761060|38000667937|2 +760649|38000667939|2 +761076|38000667940|2 +760646|38000667941|2 +761075|38000667946|2 +761242|38000667954|2 +761275|38000667956|2 +761315|38000667957|2 +761356|38000667958|2 +761360|38000667959|2 +806980|38000667960|2 +761371|38000667961|2 +761374|38000667963|2 +761569|38000667965|2 +518053|38000667966|2 +761825|38000667969|2 +761749|38000667970|2 +761829|38000667971|2 +761750|38000667973|2 +762221|38000667974|2 +762105|38000667978|2 +762148|38000667979|2 +762242|38000667980|2 +762302|38000667981|2 +762336|38000667984|2 +762393|38000667986|2 +762469|38000667988|2 +762679|38000667990|2 +829413|38000667991|4 +762910|38000667994|2 +763197|38000667996|2 +763218|38000667997|2 +763372|38000667998|2 +763406|38000668001|2 +763676|38000668008|2 +763865|38000668009|2 +763874|38000668010|2 +763942|38000668011|2 +763954|38000668013|2 +764090|38000668014|2 +764199|38000668015|2 +764194|38000668016|2 +764203|38000668017|2 +764204|38000668018|2 +764269|38000668019|2 +764331|38000668020|2 +764364|38000668021|2 +764356|38000668022|2 +764431|38000668024|2 +764453|38000668025|2 +764473|38000668026|2 +764592|38000668027|2 +764589|38000668028|2 +764771|38000668030|2 +764816|38000668031|2 +764945|38000668034|2 +764946|38000668035|2 +453152|38000668038|2 +765784|38000668039|2 +663702|38000668040|2 +765856|38000668042|2 +765852|38000668045|2 +765853|38000668046|2 +766432|38000668048|2 +766488|38000668050|2 +766684|38000668060|2 +766779|38000668063|2 +766780|38000668064|2 +766793|38000668065|2 +766821|38000668067|2 +766832|38000668068|2 +766822|38000668069|2 +766834|38000668070|2 +766929|38000668072|2 +767089|38000668073|2 +767172|38000668075|2 +767170|38000668076|2 +767218|38000668078|2 +767220|38000668079|2 +767331|38000668082|2 +767338|38000668083|2 +767485|38000668086|2 +767483|38000668087|2 +767591|38000668089|2 +767906|38000668090|2 +767905|38000668091|2 +768012|38000668092|2 +768212|38000668093|2 +768347|38000668095|2 +768397|38000668096|2 +768452|38000668097|2 +769164|38000668101|2 +769340|38000668103|2 +769356|38000668105|2 +769437|38000668107|2 +769752|38000668113|2 +769873|38000668115|2 +769970|38000668116|2 +770000|38000668117|2 +770007|38000668118|2 +486536|38000668119|2 +770069|38000668120|2 +536288|38000668125|2 +770548|38000668129|2 +770682|38000668131|2 +770683|38000668132|2 +770784|38000668136|2 +770787|38000668137|2 +770789|38000668138|2 +770875|38000668139|2 +770967|38000668144|2 +771790|38000668145|2 +771791|38000668147|2 +771598|38000668152|2 +771365|38000668156|2 +771792|38000668157|4 +772142|38000668164|2 +772098|38000668165|2 +772172|38000668168|2 +772333|38000668169|2 +772338|38000668171|2 +772349|38000668172|2 +772330|38000668173|2 +772329|38000668174|2 +772483|38000668177|2 +772543|38000668180|2 +772549|38000668181|2 +772729|38000668184|2 +772774|38000668185|2 +772863|38000668186|2 +772831|38000668187|2 +772802|38000668188|2 +772894|38000668189|2 +772881|38000668190|2 +772824|38000668193|2 +772882|38000668195|2 +773242|38000668199|2 +773279|38000668201|2 +773222|38000668202|2 +773229|38000668205|4 +773243|38000668206|2 +773311|38000668207|2 +773329|38000668209|2 +773323|38000668210|2 +773326|38000668211|2 +773331|38000668213|2 +773446|38000668215|2 +773727|38000668217|2 +773912|38000668220|2 +773927|38000668221|2 +774014|38000668223|2 +774015|38000668224|2 +774018|38000668225|2 +774055|38000668227|2 +774081|38000668229|2 +774149|38000668232|2 +774136|38000668233|2 +774159|38000668234|2 +774256|38000668235|2 +774410|38000668236|2 +774509|38000668237|2 +774510|38000668239|2 +774535|38000668240|2 +774494|38000668241|2 +774803|38000668244|2 +774851|38000668245|2 +774850|38000668246|2 +774878|38000668247|2 +774873|38000668248|2 +640754|38000668249|2 +774982|38000668250|2 +775039|38000668251|2 +775040|38000668252|2 +775264|38000668254|2 +775307|38000668257|2 +775474|38000668259|2 +775813|38000668262|2 +776169|38000668265|2 +776418|38000668267|2 +776525|38000668270|2 +776545|38000668271|2 +776558|38000668272|2 +777010|38000668281|2 +777011|38000668282|2 +777086|38000668283|2 +777082|38000668284|2 +777093|38000668285|2 +777132|38000668287|2 +777665|38000668288|4 +777177|38000668290|2 +777281|38000668293|2 +777212|38000668294|2 +777712|38000668295|2 +777574|38000668296|2 +777432|38000668298|2 +778361|38000668301|2 +777857|38000668303|2 +778380|38000668304|2 +777892|38000668306|2 +778096|38000668309|2 +778351|38000668313|2 +778578|38000668314|2 +778763|38000668315|2 +778820|38000668316|2 +778767|38000668319|2 +779179|38000668330|2 +779224|38000668331|2 +779346|38000668332|2 +779258|38000668333|2 +779273|38000668334|2 +779225|38000668336|2 +779105|38000668337|2 +779069|38000668338|2 +779347|38000668342|2 +779250|38000668343|2 +779288|38000668344|2 +779289|38000668345|2 +779452|38000668347|2 +779508|38000668348|2 +779582|38000668349|2 +779512|38000668350|2 +779485|38000668351|2 +779699|38000668352|2 +779630|38000668356|2 +779930|38000668359|2 +779932|38000668360|2 +779983|38000668361|2 +780109|38000668362|2 +780114|38000668363|2 +779979|38000668364|2 +780171|38000668365|2 +780546|38000668367|2 +780535|38000668368|2 +781166|38000668369|2 +781165|38000668370|2 +781172|38000668371|2 +781163|38000668372|2 +781899|38000668380|2 +781727|38000668385|2 +781984|38000668389|2 +781990|38000668390|2 +782045|38000668391|2 +782072|38000668392|2 +782440|38000668396|2 +782591|38000668402|2 +782347|38000668405|2 +782553|38000668406|2 +594098|38000668408|2 +782887|38000668411|2 +782863|38000668413|2 +783011|38000668414|2 +783504|38000668419|2 +783597|38000668422|2 +783589|38000668424|2 +783628|38000668425|2 +783797|38000668426|2 +783625|38000668429|2 +783777|38000668432|2 +783613|38000668433|4 +783715|38000668436|2 +783803|38000668439|2 +783942|38000668442|2 +783890|38000668443|2 +784125|38000668444|2 +516060|38000668447|2 +784242|38000668448|2 +784241|38000668449|2 +784248|38000668450|2 +784257|38000668452|2 +784315|38000668453|2 +784355|38000668458|2 +784574|38000668460|4 +784413|38000668463|2 +784480|38000668465|2 +784414|38000668467|2 +784415|38000668471|2 +784533|38000668472|2 +784691|38000668473|2 +800459|38000668476|2 +784924|38000668481|2 +785028|38000668484|2 +785022|38000668487|2 +785231|38000668489|2 +954583|38000668490|2 +785226|38000668492|2 +785257|38000668493|2 +785267|38000668494|2 +785345|38000668495|2 +785780|38000668502|2 +785777|38000668503|2 +785779|38000668504|2 +786033|38000668506|2 +786048|38000668512|2 +786034|38000668513|2 +786020|38000668516|2 +786411|38000668521|4 +787216|38000668526|2 +787184|38000668527|2 +787217|38000668528|2 +787079|38000668530|2 +787189|38000668531|2 +787130|38000668534|2 +787344|38000668535|2 +693855|38000668536|2 +787375|38000668538|2 +787590|38000668542|2 +787620|38000668543|2 +787667|38000668544|2 +787658|38000668546|2 +787675|38000668547|2 +787681|38000668548|2 +787680|38000668549|2 +787786|38000668550|2 +787811|38000668551|2 +787843|38000668553|2 +787941|38000668556|2 +787937|38000668557|2 +788398|38000668558|2 +788868|38000668559|4 +789149|38000668561|2 +482636|38000668562|2 +577462|38000668565|2 +789431|38000668566|2 +789491|38000668567|2 +789464|38000668568|2 +789476|38000668570|2 +789534|38000668572|2 +727626|38000668573|2 +789856|38000668574|2 +789881|38000668577|2 +789919|38000668578|2 +789949|38000668580|2 +790441|38000668585|2 +790439|38000668586|2 +790512|38000668587|2 +790499|38000668588|2 +790493|38000668589|2 +790583|38000668590|2 +790866|38000668591|2 +790868|38000668592|2 +790814|38000668593|2 +791037|38000668597|2 +791545|38000668599|2 +791546|38000668600|2 +791450|38000668602|2 +791341|38000668603|2 +792422|38000668607|2 +791972|38000668608|2 +792006|38000668609|2 +791888|38000668611|2 +792562|38000668614|2 +792569|38000668615|2 +792820|38000668617|2 +792859|38000668618|2 +792850|38000668619|2 +792851|38000668620|2 +793287|38000668622|2 +793505|38000668624|2 +793503|38000668626|2 +793529|38000668628|2 +793524|38000668629|2 +793711|38000668631|2 +793859|38000668635|2 +793870|38000668636|2 +793874|38000668637|2 +794049|38000668639|2 +794050|38000668641|2 +794122|38000668642|2 +794291|38000668648|2 +794573|38000668650|2 +794850|38000668653|2 +794746|38000668655|2 +794851|38000668656|2 +794852|38000668657|2 +795024|38000668660|2 +795092|38000668661|2 +795091|38000668662|2 +795555|38000668668|2 +795554|38000668670|2 +795562|38000668671|2 +795885|38000668680|2 +795886|38000668681|2 +796449|38000668685|2 +796511|38000668686|4 +796426|38000668687|2 +684143|38000668688|2 +796555|38000668692|2 +796403|38000668696|2 +796337|38000668697|2 +796540|38000668698|2 +796404|38000668699|2 +796595|38000668700|2 +478343|38000668701|2 +796792|38000668704|2 +797167|38000668705|2 +503680|38000668707|2 +797135|38000668708|2 +797627|38000668712|2 +797628|38000668713|2 +797869|38000668716|4 +797554|38000668717|2 +797868|38000668722|4 +797500|38000668723|2 +797973|38000668726|2 +797924|38000668727|2 +797801|38000668729|2 +534695|38000668731|2 +797676|38000668733|2 +798091|38000668736|2 +798106|38000668737|2 +798073|38000668739|2 +798077|38000668740|2 +798131|38000668743|2 +798129|38000668744|2 +798128|38000668745|2 +798165|38000668746|2 +798166|38000668747|2 +798208|38000668748|2 +798246|38000668749|2 +798241|38000668750|2 +798343|38000668753|2 +798336|38000668754|2 +798559|38000668761|2 +798573|38000668762|2 +798810|38000668767|2 +798807|38000668768|2 +798837|38000668769|2 +798826|38000668771|2 +798819|38000668773|2 +798850|38000668774|2 +799224|38000668779|2 +799266|38000668781|2 +799314|38000668783|2 +799344|38000668784|2 +799308|38000668785|2 +799309|38000668786|2 +799399|38000668787|2 +799588|38000668789|2 +799529|38000668790|2 +799651|38000668791|2 +799582|38000668792|2 +799470|38000668793|2 +799725|38000668795|2 +799739|38000668797|2 +799783|38000668798|2 +799866|38000668800|2 +799890|38000668801|2 +800569|38000668811|2 +801065|38000668814|2 +801075|38000668815|2 +801127|38000668818|2 +801119|38000668819|2 +801240|38000668820|2 +801252|38000668821|2 +801199|38000668822|2 +801824|38000668825|2 +801910|38000668826|4 +801918|38000668827|2 +801825|38000668828|2 +801886|38000668829|2 +802080|38000668833|2 +802488|38000668834|2 +802342|38000668835|2 +596591|38000668836|2 +802489|38000668837|2 +802333|38000668839|2 +802187|38000668840|2 +802490|38000668842|2 +802330|38000668843|2 +802188|38000668844|2 +668958|38000668846|2 +802923|38000668848|2 +802924|38000668849|2 +803043|38000668852|2 +803349|38000668859|2 +803528|38000668860|2 +803314|38000668861|4 +803332|38000668865|2 +803561|38000668867|2 +803331|38000668868|2 +803662|38000668870|2 +803779|38000668872|2 +803841|38000668875|2 +804152|38000668877|2 +804321|38000668878|2 +804278|38000668879|2 +804340|38000668880|2 +804341|38000668881|2 +804342|38000668882|2 +804339|38000668883|2 +804687|38000668886|2 +804924|38000668888|2 +805188|38000668892|2 +805290|38000668896|2 +805312|38000668897|2 +805278|38000668899|2 +805262|38000668900|2 +805316|38000668901|2 +805277|38000668902|2 +805288|38000668903|2 +805346|38000668905|2 +805646|38000668912|2 +805647|38000668913|2 +805752|38000668914|2 +805781|38000668915|2 +805997|38000668916|2 +806022|38000668918|2 +806038|38000668921|2 +805812|38000668922|2 +806132|38000668923|2 +806134|38000668924|2 +806131|38000668925|2 +806141|38000668927|2 +806149|38000668930|2 +806144|38000668932|2 +754012|38000668934|2 +806272|38000668935|2 +806197|38000668936|2 +806221|38000668938|2 +806207|38000668939|2 +806300|38000668942|2 +806303|38000668943|2 +806382|38000668945|2 +806465|38000668947|2 +806529|38000668948|2 +806513|38000668949|2 +806498|38000668950|2 +806530|38000668951|2 +806575|38000668954|2 +806624|38000668955|2 +806625|38000668957|2 +807096|38000668961|2 +807229|38000668963|2 +807257|38000668964|2 +807482|38000668968|2 +807481|38000668969|2 +807557|38000668972|2 +807558|38000668973|2 +807748|38000668975|2 +808196|38000668979|2 +808202|38000668980|2 +808237|38000668982|2 +808273|38000668983|2 +808451|38000668986|2 +808560|38000668987|2 +808657|38000668988|2 +808658|38000668989|2 +808978|38000668992|2 +808969|38000668993|2 +808979|38000668994|2 +809241|38000668996|2 +809271|38000668997|2 +809417|38000668998|2 +809418|38000668999|2 +809426|38000669000|2 +809645|38000669004|2 +809743|38000669005|2 +809638|38000669006|2 +506969|38000669008|2 +809730|38000669009|2 +809834|38000669012|2 +825481|38000669018|4 +826402|38000669021|4 +826297|38000669026|6 +825761|38000669028|4 +825626|38000669029|4 +825671|38000669031|6 +825817|38000669035|4 +826419|38000669036|4 +826058|38000669037|4 +826840|38000669041|4 +827020|38000669043|4 +827084|38000669048|4 +827088|38000669050|4 +827089|38000669051|4 +826986|38000669056|4 +826990|38000669061|4 +827296|38000669066|4 +827512|38000669069|4 +827516|38000669070|4 +827481|38000669071|4 +827513|38000669073|4 +827857|38000669076|4 +827891|38000669078|4 +827825|38000669079|4 +827972|38000669080|4 +827841|38000669081|4 +828243|38000669083|4 +828377|38000669086|4 +828440|38000669087|4 +828433|38000669088|4 +828643|38000669089|4 +828630|38000669090|4 +828634|38000669091|4 +828628|38000669093|4 +828641|38000669094|4 +828642|38000669095|4 +828869|38000669098|4 +828885|38000669100|4 +828875|38000669101|4 +828876|38000669102|4 +828891|38000669103|4 +828967|38000669106|4 +829329|38000669108|4 +829475|38000669110|4 +829620|38000669112|4 +829938|38000669116|4 +830021|38000669117|4 +830282|38000669123|4 +830333|38000669126|4 +830316|38000669127|4 +830357|38000669128|4 +830689|38000669135|4 +830564|38000669137|4 +830717|38000669139|4 +830816|38000669144|4 +869119|38000669145|2 +830767|38000669147|4 +830772|38000669148|4 +831064|38000669151|4 +831147|38000669152|4 +831139|38000669153|4 +831134|38000669154|4 +831370|38000669159|4 +831384|38000669162|4 +831607|38000669163|4 +831989|38000669165|4 +832143|38000669166|4 +832323|38000669168|4 +832314|38000669169|4 +832411|38000669172|4 +832412|38000669173|4 +832408|38000669174|4 +832416|38000669175|4 +832413|38000669176|4 +833101|38000669179|4 +819817|38000669180|2 +833650|38000669184|4 +833748|38000669189|4 +834446|38000669190|2 +835151|38000669195|4 +833749|38000669196|4 +835072|38000669197|4 +835536|38000669203|4 +832928|38000669205|4 +819799|38000669206|4 +833102|38000669209|4 +835537|38000669211|4 +834349|38000669212|4 +835714|38000669220|2 +835715|38000669221|2 +833200|38000669223|4 +833684|38000669226|4 +834463|38000669227|6 +834940|38000669230|6 +836064|38000669233|4 +835827|38000669234|4 +836067|38000669237|4 +835906|38000669238|4 +836065|38000669240|4 +836110|38000669241|4 +836250|38000669243|4 +836283|38000669244|4 +836321|38000669245|4 +836332|38000669247|4 +836315|38000669248|4 +836322|38000669250|4 +836999|38000669251|8 +837438|38000669253|4 +836744|38000669254|4 +821295|38000669255|4 +837277|38000669256|4 +837869|38000669257|4 +837439|38000669259|4 +837522|38000669260|4 +837772|38000669262|6 +837856|38000669267|6 +837278|38000669268|4 +837730|38000669270|4 +837884|38000669271|4 +884063|38000669280|2 +837943|38000669281|4 +838116|38000669282|4 +837954|38000669283|4 +838209|38000669284|4 +838365|38000669286|4 +837996|38000669287|4 +837949|38000669289|4 +838069|38000669290|4 +838729|38000669299|4 +838640|38000669301|4 +839057|38000669306|4 +839135|38000669307|4 +839166|38000669308|4 +839131|38000669309|4 +839136|38000669311|4 +839139|38000669313|4 +839305|38000669316|4 +839281|38000669317|4 +839319|38000669323|4 +839441|38000669327|4 +839542|38000669328|4 +839652|38000669332|4 +839653|38000669333|4 +839720|38000669335|4 +839760|38000669336|4 +704198|38000669337|2 +840208|38000669343|4 +840209|38000669344|4 +625343|38000669345|2 +840203|38000669346|4 +840282|38000669348|4 +840686|38000669352|2 +840841|38000669354|2 +841031|38000669356|2 +841066|38000669357|2 +841241|38000669360|2 +609538|38000669362|4 +841797|38000669365|2 +841954|38000669366|2 +841982|38000669367|2 +841845|38000669370|2 +841819|38000669371|2 +842161|38000669374|2 +842221|38000669375|2 +842219|38000669376|2 +842220|38000669378|2 +842354|38000669380|2 +842462|38000669381|2 +842389|38000669385|2 +842395|38000669387|2 +842369|38000669388|2 +843058|38000669390|2 +770195|38000669391|2 +844364|38000669400|2 +844365|38000669401|2 +844434|38000669402|2 +844425|38000669403|2 +844437|38000669404|2 +844650|38000669406|2 +844713|38000669407|2 +844605|38000669408|2 +844750|38000669409|2 +844785|38000669410|2 +845179|38000669413|2 +845192|38000669415|2 +845311|38000669416|2 +845368|38000669419|2 +845406|38000669422|2 +845314|38000669424|2 +845301|38000669425|2 +845363|38000669426|2 +845384|38000669427|2 +845644|38000669428|2 +846010|38000669433|2 +846474|38000669435|2 +846533|38000669437|2 +846367|38000669438|2 +846475|38000669441|2 +846571|38000669442|2 +846101|38000669444|2 +846447|38000669445|2 +846602|38000669449|2 +846610|38000669450|2 +846603|38000669451|2 +846693|38000669452|2 +846915|38000669456|2 +846839|38000669459|2 +847401|38000669462|4 +847073|38000669464|2 +847402|38000669465|4 +847227|38000669466|2 +847095|38000669469|2 +846779|38000669470|2 +846757|38000669471|2 +846831|38000669472|2 +846716|38000669473|2 +846916|38000669474|2 +847038|38000669477|2 +847211|38000669480|2 +847310|38000669481|2 +846758|38000669483|2 +847311|38000669487|2 +846717|38000669489|2 +846792|38000669490|2 +847623|38000669491|2 +847039|38000669492|2 +847262|38000669493|2 +847853|38000669495|2 +847924|38000669496|2 +847929|38000669497|2 +847941|38000669499|2 +847945|38000669500|2 +847961|38000669501|2 +847971|38000669502|2 +848122|38000669503|2 +848241|38000669504|2 +848299|38000669506|2 +848227|38000669508|2 +848421|38000669511|2 +848320|38000669512|2 +848859|38000669513|2 +848827|38000669516|2 +848807|38000669517|2 +678155|38000669518|2 +848905|38000669519|2 +848724|38000669520|2 +848931|38000669521|2 +848995|38000669524|2 +848973|38000669525|2 +849031|38000669526|2 +849018|38000669527|2 +661406|38000669529|2 +849396|38000669532|2 +849397|38000669533|2 +849310|38000669534|2 +849398|38000669535|2 +849270|38000669536|2 +849546|38000669537|2 +849547|38000669538|2 +849763|38000669541|2 +849761|38000669542|2 +639566|38000669548|2 +850112|38000669550|2 +850122|38000669554|2 +850095|38000669555|2 +850234|38000669558|2 +850233|38000669559|2 +850276|38000669560|2 +850586|38000669563|2 +850589|38000669564|2 +850684|38000669565|2 +839814|38000669567|4 +851051|38000669569|2 +851351|38000669575|2 +851534|38000669579|2 +851591|38000669580|2 +851630|38000669582|2 +851632|38000669583|2 +851689|38000669584|2 +851822|38000669587|2 +851854|38000669589|2 +851884|38000669590|2 +851996|38000669591|2 +852006|38000669592|2 +851997|38000669593|2 +852007|38000669594|2 +852038|38000669595|2 +852365|38000669601|2 +852406|38000669603|2 +852666|38000669604|2 +852808|38000669606|2 +853772|38000669613|4 +853270|38000669614|2 +853773|38000669615|4 +852892|38000669617|2 +853350|38000669621|2 +853068|38000669623|2 +853403|38000669624|2 +853551|38000669625|2 +853139|38000669626|2 +853140|38000669627|2 +703027|38000669628|2 +852851|38000669629|2 +853626|38000669630|2 +853239|38000669634|2 +852937|38000669636|2 +853914|38000669640|2 +854132|38000669641|2 +854337|38000669644|2 +854442|38000669645|2 +854659|38000669648|2 +854791|38000669651|2 +854820|38000669652|2 +854902|38000669654|2 +854901|38000669657|2 +854991|38000669659|2 +854990|38000669660|2 +854992|38000669661|2 +854994|38000669662|2 +855043|38000669663|2 +855348|38000669666|2 +855349|38000669667|2 +855546|38000669668|2 +855538|38000669669|2 +855561|38000669670|2 +855747|38000669675|2 +855811|38000669679|2 +855799|38000669680|2 +855908|38000669682|2 +855905|38000669683|2 +856058|38000669684|2 +856450|38000669693|2 +856292|38000669694|2 +856315|38000669696|2 +856449|38000669697|2 +856628|38000669702|2 +856575|38000669703|2 +856629|38000669704|2 +856630|38000669706|2 +856661|38000669708|2 +856685|38000669710|2 +857159|38000669712|2 +857151|38000669713|2 +857405|38000669715|2 +857665|38000669718|2 +857666|38000669719|2 +857800|38000669721|2 +857913|38000669723|2 +858442|38000669725|2 +858632|38000669729|2 +858627|38000669730|2 +858746|38000669732|2 +858747|38000669734|2 +858761|38000669736|2 +858800|38000669737|2 +858966|38000669743|2 +859005|38000669750|2 +859124|38000669751|2 +859329|38000669755|2 +859375|38000669756|2 +859338|38000669758|2 +859339|38000669759|2 +859381|38000669761|2 +859410|38000669766|2 +859414|38000669767|2 +859417|38000669768|2 +859408|38000669769|2 +859412|38000669770|2 +859483|38000669772|2 +859499|38000669773|2 +859601|38000669774|2 +859609|38000669776|2 +859867|38000669778|2 +859868|38000669779|2 +859977|38000669780|2 +860082|38000669783|2 +860336|38000669786|2 +860630|38000669789|2 +860656|38000669790|2 +860688|38000669792|2 +860766|38000669797|2 +860783|38000669798|2 +861012|38000669801|2 +861026|38000669805|2 +861125|38000669806|2 +861424|38000669810|2 +861459|38000669811|2 +861425|38000669812|2 +861720|38000669816|2 +861718|38000669818|2 +861722|38000669819|2 +861719|38000669820|2 +861721|38000669821|2 +861802|38000669823|2 +861803|38000669824|2 +861801|38000669825|2 +861799|38000669826|2 +861906|38000669827|2 +861903|38000669828|2 +861960|38000669832|2 +861954|38000669833|2 +861953|38000669835|2 +861955|38000669836|2 +1190729|38000669837|2 +862036|38000669838|2 +862037|38000669839|2 +862398|38000669848|2 +863039|38000669852|2 +863040|38000669853|2 +863125|38000669854|2 +863230|38000669855|2 +863448|38000669860|2 +863449|38000669861|2 +863479|38000669864|2 +863570|38000669866|2 +863654|38000669870|2 +864039|38000669873|2 +864153|38000669875|2 +864160|38000669877|2 +864497|38000669883|2 +864434|38000669886|2 +864498|38000669888|2 +864607|38000669891|2 +864637|38000669896|2 +864557|38000669897|2 +864541|38000669898|2 +865017|38000669901|2 +864982|38000669905|2 +805808|38000669907|2 +865206|38000669910|2 +865207|38000669911|2 +865226|38000669912|2 +865643|38000669915|2 +865522|38000669916|2 +865528|38000669918|2 +865613|38000669919|2 +865558|38000669921|2 +865594|38000669924|2 +865559|38000669925|2 +865741|38000669928|2 +865921|38000669930|2 +866026|38000669931|2 +865985|38000669932|2 +865972|38000669933|2 +866001|38000669935|2 +865928|38000669936|2 +865989|38000669937|2 +865950|38000669938|2 +865922|38000669939|2 +866105|38000669940|2 +866080|38000669941|2 +866116|38000669942|2 +866121|38000669943|2 +862994|38000669945|2 +866334|38000669946|2 +866348|38000669949|2 +866408|38000669954|2 +866418|38000669955|2 +866709|38000669964|2 +866707|38000669967|2 +739222|38000669968|2 +866702|38000669969|2 +866780|38000669972|2 +866789|38000669974|2 +866774|38000669976|2 +866797|38000669977|2 +866772|38000669979|2 +866778|38000669980|2 +866966|38000669981|2 +867041|38000669982|2 +867049|38000669983|2 +867050|38000669984|2 +867046|38000669985|2 +867092|38000669986|2 +867244|38000669988|2 +867251|38000669989|2 +867652|38000669993|2 +867663|38000669994|2 +867714|38000669995|2 +867715|38000669996|2 +867871|38000669997|2 +867874|38000670000|2 +867926|38000670003|2 +868019|38000670007|2 +868155|38000670008|2 +868085|38000670012|2 +868128|38000670014|2 +868410|38000670018|2 +868303|38000670019|2 +868345|38000670020|2 +868323|38000670021|2 +868234|38000670024|2 +868603|38000670026|4 +868420|38000670028|2 +868595|38000670030|2 +868516|38000670033|2 +868765|38000670036|2 +868763|38000670037|2 +869122|38000670039|2 +869123|38000670040|2 +869154|38000670045|2 +869141|38000670046|2 +869124|38000670047|2 +869243|38000670049|2 +869226|38000670050|2 +869230|38000670052|2 +869244|38000670054|2 +869239|38000670056|2 +869217|38000670058|2 +869246|38000670059|2 +869307|38000670061|2 +869417|38000670062|2 +869393|38000670064|2 +558396|38000670069|2 +869375|38000670071|2 +869343|38000670072|2 +869327|38000670073|2 +869803|38000670077|2 +869798|38000670078|2 +869799|38000670079|2 +869765|38000670082|2 +869756|38000670085|2 +869782|38000670086|2 +869749|38000670087|2 +869768|38000670088|2 +869761|38000670090|2 +869892|38000670092|2 +865740|38000670093|2 +869875|38000670094|2 +870059|38000670095|2 +870257|38000670101|2 +870284|38000670103|2 +870285|38000670104|2 +870293|38000670105|2 +870289|38000670106|2 +870297|38000670110|2 +870291|38000670111|2 +870669|38000670115|2 +870655|38000670116|2 +870979|38000670120|2 +896577|38000670121|2 +870969|38000670122|2 +871053|38000670123|2 +871031|38000670124|2 +870867|38000670125|2 +870980|38000670126|2 +871262|38000670130|2 +871293|38000670132|2 +871338|38000670135|2 +871327|38000670137|2 +871453|38000670138|2 +871393|38000670139|2 +871501|38000670140|2 +871493|38000670141|2 +871470|38000670142|2 +871454|38000670143|2 +871479|38000670145|2 +871459|38000670146|2 +871404|38000670147|2 +871394|38000670149|2 +871395|38000670150|2 +770538|38000670151|2 +871419|38000670153|2 +871389|38000670155|2 +871387|38000670156|2 +871475|38000670157|2 +871480|38000670160|2 +702316|38000670165|2 +871601|38000670166|2 +871858|38000670169|2 +871848|38000670170|2 +560455|38000670171|2 +871970|38000670172|2 +871907|38000670173|2 +871955|38000670175|2 +872014|38000670176|2 +871954|38000670178|2 +871994|38000670179|2 +872034|38000670180|2 +548913|38000670181|2 +872037|38000670182|2 +872031|38000670183|2 +872039|38000670184|2 +872040|38000670185|2 +872042|38000670186|2 +872033|38000670187|2 +872073|38000670188|4 +872074|38000670189|4 +872127|38000670192|2 +872109|38000670193|2 +872306|38000670196|2 +872471|38000670197|2 +872481|38000670199|2 +872719|38000670201|2 +873002|38000670207|2 +873010|38000670209|2 +609592|38000670210|4 +873068|38000670211|2 +873042|38000670212|2 +873109|38000670213|2 +873149|38000670214|2 +873129|38000670218|2 +873075|38000670220|2 +873090|38000670223|2 +873003|38000670225|2 +808204|38000670234|2 +873478|38000670237|2 +873462|38000670238|2 +873442|38000670239|2 +873422|38000670240|2 +873472|38000670241|2 +873749|38000670247|2 +873759|38000670248|2 +873830|38000670249|2 +874011|38000670251|2 +873977|38000670252|2 +873962|38000670254|2 +873963|38000670255|2 +874070|38000670260|2 +874071|38000670262|2 +874453|38000670270|2 +874411|38000670271|2 +874539|38000670273|2 +874592|38000670275|2 +874869|38000670282|2 +874807|38000670283|2 +874796|38000670285|2 +874870|38000670286|2 +874860|38000670288|2 +874808|38000670290|2 +874910|38000670291|2 +874831|38000670292|2 +874891|38000670294|2 +874897|38000670296|2 +875039|38000670299|2 +875018|38000670300|2 +874994|38000670302|2 +875005|38000670304|2 +875032|38000670305|2 +874991|38000670306|2 +875124|38000670309|2 +875125|38000670310|2 +875198|38000670316|2 +875197|38000670317|2 +875326|38000670318|2 +847441|38000670320|2 +875665|38000670321|2 +876219|38000670323|2 +876335|38000670326|2 +876597|38000670330|2 +876600|38000670331|2 +876711|38000670332|2 +876804|38000670334|2 +876876|38000670337|2 +876856|38000670338|2 +876852|38000670339|2 +876849|38000670340|2 +876881|38000670341|2 +876858|38000670342|2 +876874|38000670343|2 +523201|38000670344|2 +876940|38000670345|2 +643994|38000670349|2 +877213|38000670351|2 +877188|38000670354|2 +877255|38000670355|2 +877264|38000670356|2 +735783|38000670359|2 +877472|38000670361|2 +877533|38000670363|4 +877462|38000670369|2 +877346|38000670370|2 +546923|38000670373|2 +877551|38000670381|2 +877807|38000670382|2 +877808|38000670383|2 +878544|38000670395|2 +753007|38000670396|2 +878425|38000670397|4 +878174|38000670398|2 +878217|38000670401|2 +878308|38000670405|2 +878286|38000670406|2 +878216|38000670409|2 +878218|38000670416|2 +878180|38000670418|2 +878290|38000670419|2 +878339|38000670421|2 +878219|38000670423|2 +878421|38000670424|4 +878291|38000670426|2 +878358|38000670429|2 +878426|38000670431|4 +878309|38000670432|2 +878350|38000670437|2 +878261|38000670438|2 +878223|38000670439|2 +878359|38000670440|2 +878360|38000670441|2 +540874|38000670446|2 +878777|38000670448|2 +879049|38000670454|2 +879084|38000670455|2 +879127|38000670461|2 +879192|38000670463|2 +879141|38000670465|2 +878852|38000670468|2 +878973|38000670469|2 +878867|38000670472|2 +879142|38000670473|2 +879230|38000670474|4 +879069|38000670476|2 +878924|38000670477|4 +879193|38000670478|2 +879250|38000670480|2 +879125|38000670481|2 +878974|38000670482|2 +879106|38000670483|2 +879162|38000670485|2 +878915|38000670486|2 +879140|38000670487|2 +878942|38000670489|2 +879395|38000670491|2 +879570|38000670493|2 +879637|38000670496|2 +879617|38000670498|2 +879480|38000670499|2 +879610|38000670500|2 +879611|38000670501|2 +880038|38000670503|2 +880083|38000670507|2 +880138|38000670508|2 +880061|38000670509|2 +880102|38000670510|2 +880103|38000670511|2 +880266|38000670515|2 +880267|38000670516|2 +880305|38000670517|2 +880413|38000670519|2 +880414|38000670521|2 +880440|38000670522|2 +880463|38000670523|2 +880453|38000670524|2 +880465|38000670525|2 +880458|38000670526|2 +880466|38000670527|2 +880459|38000670528|2 +880462|38000670530|2 +880460|38000670531|2 +880486|38000670532|2 +880487|38000670533|2 +880481|38000670535|2 +880503|38000670537|2 +880780|38000670539|2 +881025|38000670546|2 +881178|38000670550|2 +881087|38000670556|2 +881078|38000670557|2 +881088|38000670559|2 +881099|38000670561|2 +881559|38000670564|2 +881589|38000670565|2 +881590|38000670566|2 +881582|38000670567|2 +695160|38000670570|2 +881779|38000670572|2 +881684|38000670573|2 +882039|38000670576|2 +882219|38000670581|2 +882228|38000670582|2 +882225|38000670583|2 +882287|38000670584|2 +882255|38000670586|2 +882394|38000670590|2 +882529|38000670594|2 +882513|38000670595|2 +882495|38000670597|2 +882670|38000670598|2 +882997|38000670599|2 +882695|38000670603|2 +882729|38000670606|4 +883672|38000670609|4 +883828|38000670612|4 +883863|38000670615|2 +883673|38000670616|4 +883884|38000670617|2 +883780|38000670618|2 +883971|38000670620|2 +883982|38000670621|2 +884068|38000670622|2 +884069|38000670623|2 +884127|38000670625|2 +884182|38000670626|2 +884192|38000670628|2 +884176|38000670630|2 +885348|38000670631|2 +884190|38000670632|2 +508859|38000670634|2 +884143|38000670636|2 +884194|38000670637|2 +884187|38000670639|2 +884140|38000670640|2 +884178|38000670641|2 +884160|38000670642|2 +884444|38000670646|2 +884446|38000670647|2 +884582|38000670648|2 +884808|38000670651|2 +885342|38000670656|2 +885401|38000670661|2 +885397|38000670662|2 +885393|38000670664|2 +885431|38000670668|2 +885604|38000670670|2 +885821|38000670672|2 +885822|38000670675|2 +885803|38000670676|2 +885792|38000670678|2 +885823|38000670680|2 +885799|38000670681|2 +885836|38000670683|2 +885840|38000670684|2 +885929|38000670685|2 +885877|38000670687|2 +885861|38000670692|2 +885873|38000670695|2 +885925|38000670696|2 +885954|38000670698|2 +885854|38000670699|2 +885846|38000670700|2 +886010|38000670701|2 +886066|38000670703|2 +762339|38000670705|2 +886067|38000670706|2 +886080|38000670707|2 +886078|38000670708|2 +886068|38000670710|2 +886063|38000670711|2 +886292|38000670713|2 +886386|38000670715|2 +886406|38000670716|2 +886407|38000670717|2 +886595|38000670720|2 +886676|38000670723|2 +886746|38000670724|2 +886712|38000670725|2 +886976|38000670728|2 +887173|38000670729|2 +887136|38000670730|2 +887226|38000670732|4 +887051|38000670734|2 +887235|38000670735|2 +887465|38000670739|2 +887495|38000670740|2 +887566|38000670741|2 +887575|38000670743|2 +887570|38000670744|2 +887571|38000670745|2 +887590|38000670746|2 +887655|38000670747|2 +887662|38000670748|2 +887686|38000670749|2 +887689|38000670750|2 +888117|38000670751|2 +888352|38000670754|2 +888357|38000670755|2 +888535|38000670757|2 +888540|38000670758|2 +888604|38000670759|2 +888569|38000670760|2 +888711|38000670762|2 +888829|38000670765|2 +889010|38000670769|2 +889076|38000670771|2 +889075|38000670772|2 +889157|38000670775|2 +889307|38000670777|2 +889350|38000670779|2 +889321|38000670781|2 +889317|38000670782|2 +889322|38000670784|2 +889334|38000670785|2 +889352|38000670787|2 +889299|38000670788|2 +889540|38000670792|2 +889729|38000670794|2 +889603|38000670795|2 +889450|38000670796|2 +889642|38000670797|2 +889632|38000670799|2 +889654|38000670802|2 +889551|38000670803|2 +889853|38000670805|2 +889581|38000670808|2 +835552|38000670810|8 +889458|38000670811|2 +889728|38000670814|2 +889546|38000670816|2 +889469|38000670817|2 +889459|38000670819|2 +889504|38000670823|2 +890116|38000670828|2 +890580|38000670832|4 +891146|38000670834|2 +891431|38000670840|2 +891436|38000670841|2 +891829|38000670845|2 +891936|38000670846|2 +891952|38000670848|2 +892015|38000670850|2 +892013|38000670851|2 +892028|38000670852|2 +892026|38000670853|2 +892067|38000670854|2 +892458|38000670858|2 +892459|38000670859|2 +892448|38000670860|2 +892445|38000670862|2 +892645|38000670864|2 +892871|38000670866|2 +892927|38000670867|4 +892830|38000670871|2 +892773|38000670872|2 +892646|38000670876|2 +892819|38000670877|2 +892774|38000670879|2 +892762|38000670881|2 +892928|38000670883|4 +892593|38000670886|2 +893565|38000670892|2 +893625|38000670893|2 +893673|38000670895|2 +893659|38000670896|2 +893956|38000670901|2 +893963|38000670902|2 +893979|38000670903|2 +894081|38000670905|2 +894099|38000670907|2 +894074|38000670908|2 +894093|38000670909|2 +894158|38000670910|2 +894159|38000670912|2 +894254|38000670914|2 +894271|38000670915|2 +894553|38000670917|2 +894615|38000670920|2 +894939|38000670922|2 +894861|38000670923|2 +895518|38000670930|2 +895908|38000670933|2 +895986|38000670935|2 +895972|38000670936|4 +896253|38000670940|2 +896258|38000670941|2 +896251|38000670943|2 +896250|38000670944|2 +896259|38000670945|2 +896260|38000670946|2 +896754|38000670951|2 +896836|38000670952|2 +896822|38000670953|2 +896917|38000670958|2 +680483|38000670959|2 +896993|38000670960|2 +896994|38000670961|2 +897212|38000670964|2 +897408|38000670967|2 +897405|38000670968|2 +897437|38000670969|2 +897553|38000670971|2 +897943|38000670972|2 +897645|38000670973|2 +897609|38000670975|2 +898005|38000670979|2 +897914|38000670982|2 +897950|38000670984|2 +897948|38000670985|2 +897879|38000670988|2 +897951|38000670989|2 +897633|38000670991|2 +897750|38000670992|2 +897919|38000670995|2 +897905|38000670996|2 +898020|38000670997|2 +898030|38000671001|2 +898031|38000671004|2 +898116|38000671006|2 +898170|38000671008|2 +898086|38000671010|2 +898235|38000671016|2 +898236|38000671017|2 +898931|38000671022|2 +898989|38000671023|2 +898937|38000671025|2 +898955|38000671027|2 +898984|38000671029|2 +898959|38000671032|2 +899035|38000671033|2 +899335|38000671035|2 +899337|38000671037|2 +899556|38000671038|2 +900331|38000671039|2 +899815|38000671042|2 +899961|38000671043|2 +899783|38000671048|2 +899845|38000671049|2 +900407|38000671053|2 +900694|38000671055|2 +901482|38000671056|2 +903472|38000671084|2 +1006884|38000671130|2 +801609|38000671138|2 +906627|38000671152|2 +908488|38000671195|2 +908427|38000671197|2 +910346|38000671239|2 +570090|38000671282|2 +894164|38000671314|2 +613349|38000671326|2 +734560|38000671428|2 +797637|38000671437|2 +618819|38000671510|2 +744359|38000671539|2 +692138|38000671546|2 +852885|38000671548|2 +928482|38000671596|2 +929238|38000671597|2 +928904|38000671601|2 +929270|38000671606|2 +927744|38000671617|2 +781004|38000671618|2 +590174|38000671620|2 +929239|38000671621|2 +929240|38000671623|2 +929113|38000671637|2 +929348|38000671643|2 +819779|38000671647|4 +846281|38000671661|2 +757080|38000671753|2 +938097|38000671820|2 +938084|38000671832|2 +583597|38000671836|2 +761910|38000671898|2 +759468|38000672006|2 +528164|38000672076|2 +710563|38000672084|2 +618401|38000672121|2 +557086|38000672131|2 +954582|38000672169|2 +953785|38000672184|2 +953786|38000672192|2 +775791|38000672227|2 +595445|38000672228|2 +469691|38000672233|4 +848346|38000672244|2 +847611|38000672246|2 +901969|38000672359|2 +568490|38000672380|2 +967432|38000672440|2 +967433|38000672453|2 +954253|38000672499|2 +672649|38000672591|2 +513946|38000672611|2 +977638|38000672647|2 +874723|38000672668|2 +769704|38000672674|2 +980639|38000672705|2 +980749|38000672717|2 +787340|38000672722|2 +981785|38000672751|2 +474617|38000672757|2 +570639|38000672792|2 +807764|38000672814|2 +483987|38000672905|2 +990381|38000672924|2 +990001|38000672942|2 +717642|38000673074|2 +868129|38000673103|2 +848728|38000673133|2 +873925|38000673165|2 +493778|38000673220|2 +1005769|38000673264|2 +646574|38000673265|2 +1008383|38000673301|2 +1008228|38000673305|2 +1008384|38000673310|2 +542397|38000673311|2 +1006890|38000673330|2 +1009555|38000673351|2 +884590|38000673364|2 +1006921|38000673398|2 +572884|38000673405|2 +1013115|38000673413|2 +1013134|38000673426|2 +518456|38000673428|2 +1020322|38000673576|2 +689929|38000673577|2 +1020122|38000673578|2 +698301|38000673606|2 +1022278|38000673611|2 +690090|38000673660|2 +488014|38000673753|2 +654633|38000673763|2 +1028823|38000673829|2 +1031223|38000673925|2 +1033921|38000673963|2 +1035369|38000673993|2 +843360|38000674007|2 +487709|38000674040|2 +515631|38000674075|2 +833997|38000674114|4 +488546|38000674156|2 +1042661|38000674157|2 +1044089|38000674166|2 +1047410|38000674218|2 +902252|38000674288|2 +637284|38000674297|2 +507717|38000674351|2 +1049819|38000674416|2 +479493|38000674469|2 +683691|38000674482|2 +668519|38000674501|2 +1051992|38000674505|2 +616019|38000674564|2 +808673|38000674581|2 +871826|38000674609|2 +623134|38000674616|2 +747790|38000674704|2 +481624|38000674833|2 +738605|38000674886|2 +504462|38000674888|2 +614851|38000674902|2 +669927|38000674905|2 +851603|38000675000|2 +516530|38000675021|2 +554073|38000675075|2 +853372|38000675115|2 +726811|38000675117|2 +897567|38000675145|2 +583175|38000675164|2 +657192|38000675183|2 +589112|38000675194|2 +1081427|38000675252|2 +591839|38000675259|2 +1084619|38000675317|2 +612264|38000675337|2 +866785|38000675390|2 +558077|38000675411|2 +898938|38000675424|2 +1091101|38000675438|2 +1091246|38000675440|2 +683672|38000675458|2 +1092767|38000675499|2 +1093465|38000675516|2 +879486|38000675517|2 +745151|38000675675|2 +802750|38000675722|2 +1107063|38000675741|2 +486237|38000675852|2 +1115188|38000675854|2 +1115189|38000675856|2 +1118714|38000675956|2 +826059|38000675970|4 +1120283|38000675981|2 +691036|38000676083|2 +715863|38000676135|2 +804549|38000676146|2 +1132563|38000676210|2 +805524|38000676226|2 +676576|38000676265|2 +473765|38000676399|2 +1141876|38000676414|2 +653202|38000676456|2 +589627|38000676503|2 +786494|38000676513|2 +867478|38000676526|2 +877430|38000676641|2 +1154781|38000676683|2 +1155538|38000676699|2 +1154782|38000676724|2 +724178|38000676810|2 +1158979|38000676811|2 +1160386|38000676837|2 +1165817|38000676898|2 +1164750|38000676911|2 +1165917|38000676916|2 +1164836|38000676952|2 +1165081|38000676953|2 +1165918|38000676959|2 +1165919|38000676973|2 +570307|38000677008|2 +1172177|38000677094|2 +1172582|38000677099|2 +1173392|38000677144|2 +711794|38000677189|2 +623255|38000677294|2 +1182726|38000677302|2 +483405|38000677461|2 +1187786|38000677491|2 +619980|38000677493|2 +656492|38000677527|4 +795379|38000677537|2 +1193157|38000677617|2 +1193158|38000677618|2 +541844|38000677623|4 +847176|38000677650|2 +606597|38000677652|2 +830984|38000677657|4 +897610|38000677671|2 +892374|38000677680|2 +1200447|38000677746|2 +1200448|38000677756|2 +621312|38000677824|2 +503770|38000677846|2 +1164083|38000677862|2 +1163933|38000677932|2 +520908|38000677988|2 +662118|38000677992|2 +775262|38000678024|2 +1219498|38000678145|2 +1219499|38000678147|2 +600328|38000678181|2 +883572|38000678224|2 +609298|38000678346|2 +652880|38000678383|2 +561709|38000678442|2 +859599|38000678467|2 +1234414|38000678482|2 +1234406|38000678491|2 +578234|38000678504|2 +886052|38000678505|2 +783676|38000678514|2 +591954|38000678620|2 +1243036|38000678629|2 +1242684|38000678632|2 +561997|38000678635|2 +583411|38000678646|2 +1246180|38000678701|2 +741917|38000678719|2 +804564|38000678756|2 +1249780|38000678770|2 +661507|38000678783|2 +1253036|38000678800|2 +1252009|38000678802|2 +1252010|38000678819|2 +1254680|38000678856|2 +1258140|38000678920|2 +1258119|38000678926|2 +1257854|38000678929|2 +1257230|38000678930|2 +1256615|38000678931|2 +646274|38000678981|2 +639023|38000679005|2 +742031|38000679039|2 +586950|38000679087|2 +889674|38000679117|2 +502611|38000679237|2 +660025|38001014191|2 +531090|38001015880|2 +840011|38001016070|4 +575119|38001016683|2 +611863|38001016684|2 +458193|38001016774|2 +683925|38001016781|4 +500763|38001016788|2 +776840|38001017625|2 +881208|38001017849|2 +711870|38001019460|2 +712078|38001019461|2 +754544|38001019970|2 +480565|38001019971|2 +601440|38001019977|2 +577922|38001020014|2 +639190|38001020047|2 +868086|38001020048|2 +704186|38001020077|2 +601494|38001020091|2 +711668|38001020094|2 +842353|38001020098|2 +712107|38001020102|2 +694855|38001020103|2 +670543|38001020109|2 +758807|38001020120|2 +578544|38001020123|2 +683648|38001020126|2 +600595|38001020131|2 +795556|38001020148|2 +554011|38001020153|2 +805687|38001020179|2 +472768|38001020180|2 +875026|38001020181|2 +714710|38001020182|2 +788092|38001020183|2 +875737|38001020184|2 +639884|38001020190|2 +763226|38001020193|2 +873760|38001020198|2 +837085|38001020379|4 +896338|38001020381|2 +873491|38001020410|2 +847948|38001020413|2 +735905|38001020680|2 +829766|38001020843|4 +660750|38001020968|2 +794100|38001020975|2 +827108|38001021006|4 +860631|38001021008|2 +468226|38001021201|2 +712800|38001022026|2 +891188|38001022031|2 +832969|38001022266|4 +484350|38001022409|2 +484354|38001022410|2 +654562|38001022431|2 +668042|38001022485|2 +668043|38001022493|2 +500784|38001022724|2 +632160|38001022741|2 +735405|38001023009|2 +528207|38001023045|2 +754619|38001023058|2 +764192|38001023182|2 +885790|38001023189|2 +482254|38001023222|2 +778505|38001023250|2 +655205|38001023257|2 +665566|38001023476|2 +564027|38001023631|2 +501544|38001023632|2 +533286|38001023634|2 +591981|38001023646|2 +757319|38001023656|2 +530652|38001023662|2 +1038919|38001023714|2 +808398|38001024254|2 +560416|38001024833|2 +879579|38001025072|2 +488662|38001025144|2 +575050|38001025285|2 +784933|38001025384|2 +656499|38001025597|2 +888502|38001025679|2 +607147|38001025814|2 +681139|38001026068|2 +690608|38001026078|2 +741536|38001026144|2 +687608|38001026638|2 +700160|38001026644|2 +505585|38001026645|2 +772149|38001026672|2 +653868|38001026681|2 +893624|38001026761|2 +668747|38001026819|2 +686966|38001026823|2 +726999|38001026837|2 +521326|38001026838|2 +887574|38001026874|2 +748326|38001026898|2 +536069|38001027641|2 +616160|38001027642|2 +562284|38001027691|2 +691140|38001027791|2 +899239|38001027793|2 +623983|38001028310|2 +606170|38001028314|2 +744625|38001028585|2 +708008|38001028596|2 +452171|38001028599|2 +786736|38001028604|2 +786758|38001028606|2 +880502|38001028616|2 +573708|38001028620|2 +871810|38001028669|2 +591257|38001028670|2 +693591|38001028673|2 +629534|38001028703|2 +1089480|38001028710|2 +851457|38001028797|2 +605512|38001028800|2 +832409|38001028809|4 +725789|38001028894|2 +527993|38001029493|2 +633365|38001029635|2 +498290|38001029662|2 +829419|38001029665|4 +685709|38001029789|2 +602635|38001029901|2 +565960|38001030040|2 +529898|38001030160|2 +683217|38001030356|2 +862034|38001030357|2 +877606|38001030358|2 +844419|38001031072|2 +711052|38001031412|2 +546603|38001031814|2 +724467|38001031815|2 +657737|38001031858|2 +827903|38001031893|4 +784217|38001031981|2 +1164085|38001031988|2 +579293|38001032234|2 +899494|38001032235|2 +843357|38001032484|2 +870225|38001032802|2 +550877|38001032872|2 +645858|38001032873|2 +475504|38001032900|2 +745660|38001033363|2 +678210|38001033366|2 +745884|38001033689|2 +884159|38001033695|2 +787936|38001033709|2 +577923|38001033906|2 +778666|38001033907|2 +554074|38001034375|2 +846692|38001034378|2 +537011|38001034586|2 +790513|38001034587|2 +563659|38001035294|2 +769884|38001035300|2 +583589|38001035374|2 +884164|38001035465|2 +543223|38001035595|2 +966937|38001035596|2 +621467|38001035655|2 +718427|38001035657|2 +722701|38001035826|2 +486632|38001036377|2 +471662|38001036378|4 +616453|38001036379|2 +899160|38001036381|2 +665587|38001036493|2 +1164084|38001036495|2 +535710|38001036607|4 +457069|38001036812|2 +634239|38001036840|2 +561316|38001036962|2 +597846|38001037183|2 +737188|38001037267|2 +616865|38001037400|2 +779950|38001037506|2 +598299|38001037605|2 +624038|38001037608|2 +745298|38001037609|2 +770455|38001037951|2 +660218|38001038074|2 +807489|38001038146|2 +641653|38001038328|2 +652873|38001038655|2 +565546|38001038788|2 +778107|38001038800|2 +870221|38001038801|2 +881671|38001038804|2 +757525|38001038805|2 +615871|38001038889|2 +633366|38001038890|2 +639519|38001038895|2 +739177|38001038896|2 +893054|38001038903|4 +806054|38001038982|2 +608884|38001039204|2 +628872|38001039222|2 +846633|38001039464|2 +638516|38001039515|2 +892022|38001039612|2 +527987|38001039958|2 +891739|38001039960|2 +739944|38001040033|2 +892372|38001040133|2 +857184|38001040178|2 +692753|38001040427|2 +588157|38001040492|2 +503977|38001040494|2 +639896|38001040511|2 +885916|38001040596|2 +580271|38001040660|2 +495584|38001040841|2 +487382|38001040927|2 +772136|38001041282|2 +781380|38001041308|2 +799872|38001041328|2 +878997|38001041337|2 +882239|38001041562|2 +458310|38001042609|2 +493847|38001042751|2 +615830|38001042770|2 +465768|38001042811|2 +847003|38001042812|2 +794025|38001042819|2 +610763|38001043038|2 +725234|38001043057|2 +877597|38001043061|2 +724605|38001043449|2 +838641|38001043452|4 +808397|38001043524|2 +830381|38001043549|4 +857256|38001043635|2 +544677|38001043646|2 +589326|38001043927|2 +650186|38001043928|2 +808589|38001043934|2 +497905|38001044155|2 +878445|38001044158|2 +627081|38001044183|2 +892468|38001044268|2 +593370|38001044504|2 +557197|38001044598|2 +659153|38001045097|2 +591310|38001045257|2 +833893|38001045731|4 +644038|38001045733|2 +573694|38001045734|2 +656948|38001045735|2 +498462|38001045911|2 +841710|38001046057|2 +580095|38001046072|2 +489033|38001046349|2 +534195|38001046354|2 +494771|38001046366|2 +701036|38001046399|2 +733456|38001046410|2 +517386|38001046415|2 +616406|38001046591|2 +654235|38001046595|2 +835313|38001046599|8 +879638|38001046958|2 +595985|38001046991|2 +771415|38001047020|2 +866944|38001047022|2 +879584|38001047023|2 +850092|38001047027|2 +682791|38001047282|2 +871426|38001047523|2 +746541|38001049890|2 +684331|38001049891|2 +782992|38001049892|2 +702138|38001049893|2 +702162|38001049894|2 +806174|38001050022|2 +453334|38001050026|2 +827668|38001050029|4 +466455|38001050032|2 +807492|38001050044|2 +874012|38001050077|2 +684330|38001050088|2 +782348|38001050092|2 +526671|38001050974|4 +754650|38001050982|2 +531691|38001050986|2 +480389|38001051360|2 +573689|38001051367|2 +571136|38001051374|2 +658802|38001051379|2 +540978|38001051382|2 +883715|38001051390|2 +861387|38001051463|2 +750887|38001051469|2 +769260|38001051699|2 +759154|38001051977|2 +759269|38001051979|2 +789385|38001052237|2 +847471|38001052238|2 +865057|38001052247|2 +588999|38001052362|2 +741412|38001052478|2 +511769|38001052559|2 +497889|38001052573|2 +773662|38001052580|4 +685409|38001052691|2 +639888|38001052694|2 +464787|38001052695|2 +1098033|38001052696|2 +886076|38001052749|2 +809775|38001052751|2 +795123|38001052798|2 +663396|38001052827|2 +550886|38001052966|2 +645065|38001053136|2 +870158|38001053277|2 +898062|38001053291|2 +579995|38001053322|2 +502272|38001053325|2 +766498|38001053370|2 +626880|38001053533|2 +639891|38001053539|4 +866568|38001054564|2 +468611|38001054567|2 +866569|38001054569|2 +829069|38001054572|4 +865125|38001054575|2 +802331|38001054585|2 +853415|38001054653|2 +660949|38001055082|2 +612083|38001055225|2 +678154|38001055229|2 +626453|38001055434|2 +769439|38001055459|2 +614867|38001055478|2 +572303|38001055508|2 +499681|38001055533|2 +696245|38001055576|2 +514687|38001055920|2 +773892|38001055925|2 +576482|38001055928|2 +864247|38001055936|2 +728090|38001055939|2 +479956|38001056008|2 +639895|38001056122|2 +551888|38001056269|2 +568496|38001056270|2 +694783|38001056273|2 +869793|38001057288|2 +572852|38001057556|2 +786063|38001058094|2 +712928|38001058306|2 +500793|38001058308|2 +690899|38001059539|2 +652184|38001060264|2 +739943|38001060275|2 +573690|38001060291|2 +490929|38001060359|2 +616257|38001060370|2 +638914|38001060377|2 +712942|38001060385|2 +709363|38001060387|2 +889806|38001060396|2 +517195|38001060405|2 +752933|38001060406|2 +809680|38001060408|2 +863903|38001060413|2 +656903|38001060420|2 +548773|38001060421|2 +798548|38001060422|2 +504217|38001060507|2 +754599|38001061019|2 +664528|38001061052|2 +664510|38001061053|2 +454557|38001061062|2 +644665|38001061084|2 +494824|38001061092|2 +898469|38001061093|2 +776537|38001061314|2 +497841|38001061315|2 +482186|38001061318|4 +761864|38001061326|2 +494825|38001061327|2 +512081|38001061330|2 +788438|38001061334|2 +732052|38001061335|2 +840676|38001061346|2 +495045|38001061347|2 +840678|38001061372|2 +513349|38001062659|2 +723964|38001062673|2 +726960|38001062683|2 +727850|38001062685|2 +851998|38001062726|2 +871248|38001063140|2 +608609|38001063156|2 +538311|38001063161|2 +456610|38001063193|2 +786056|38001063244|2 +663195|38001063247|2 +808659|38001063382|2 +745888|38001063554|2 +789484|38001063724|2 +591036|38001064203|2 +628588|38001064229|2 +850108|38001064251|2 +1060132|38001064272|2 +526593|38001064335|2 +702357|38001064360|2 +471505|38001064749|4 +587549|38001064858|2 +488724|38001064886|2 +489018|38001064936|2 +528813|38001065078|2 +718952|38001065802|2 +856356|38001065806|2 +693165|38001065807|2 +896261|38001065832|2 +516540|38001065883|2 +781045|38001066232|2 +703485|38001066355|2 +902340|38001066606|2 +591235|38001066639|2 +823595|38001066655|2 +838891|38001066663|4 +873313|38001067353|2 +859444|38001067400|2 +481357|38001067434|2 +838199|38001067446|4 +806805|38001067574|2 +476105|38001068084|2 +841388|38001068326|2 +468921|38001068376|2 +483118|38001068396|2 +483609|38001068639|2 +535494|38001068795|2 +551994|38001068802|2 +669643|38001068824|2 +878220|38001068836|2 +827483|38001069009|4 +892442|38001069103|2 +484847|38001069169|2 +673063|38001069355|2 +732070|38001069362|2 +635307|38001069371|4 +793095|38001069374|2 +513261|38001069387|2 +709341|38001069415|2 +526641|38001069494|2 +562326|38001069509|2 +495710|38001069543|2 +741033|38001069552|2 +1149626|38001069567|2 +644465|38001069632|2 +451889|38001069677|2 +671181|38001069680|2 +847947|38001069736|2 +869477|38001069751|2 +453492|38001069833|2 +480252|38001069839|2 +665863|38001069847|2 +710025|38001069848|2 +728499|38001069926|2 +857246|38001069953|2 +673774|38001069992|2 +766594|38001070005|2 +503926|38001070024|2 +712359|38001070039|2 +569158|38001070044|2 +658654|38001070048|2 +605526|38001070204|2 +839362|38001070206|4 +757869|38001070208|2 +526885|38001070817|2 +892981|38001070836|2 +619631|38001071066|2 +837857|38001071114|6 +628873|38001071178|2 +536943|38001071278|2 +665068|38001071350|2 +479268|38001071436|2 +721012|38001071448|2 +486307|38001071531|2 +481887|38001071544|2 +582044|38001071555|2 +525968|38001071587|2 +1155129|38001071633|2 +850116|38001071657|2 +508046|38001071685|2 +727024|38001071729|2 +745779|38001071769|2 +656907|38001072751|2 +791203|38001073547|2 +884152|38001073558|2 +683795|38001073861|2 +926545|38001076722|2 +868254|38001076731|2 +877465|38001076747|2 +517451|38001076748|2 +739211|38001076852|2 +505881|38001076876|2 +583767|38001076918|2 +458507|38001076922|2 +475258|38001076929|2 +543441|38001077021|2 +555355|38001077023|2 +644407|38001077032|2 +651355|38001077039|2 +586357|38001077043|2 +740823|38001077050|2 +557167|38001077053|2 +761941|38001077058|2 +763100|38001077061|2 +808501|38001077067|2 +873160|38001077069|2 +543437|38001077086|2 +470370|38001077129|2 +493095|38001077130|2 +705774|38001077189|2 +485281|38001077190|2 +527889|38001077194|2 +827259|38001077195|4 +793164|38001077196|2 +668033|38001077198|2 +859452|38001077200|2 +480005|38001077203|2 +876789|38001077239|2 +793192|38001077325|2 +731259|38001077359|2 +880205|38001077421|2 +497878|38001077457|2 +476656|38001077462|2 +863486|38001077496|2 +792140|38001077605|2 +515740|38001077609|2 +693234|38001077618|2 +621374|38001077623|2 +556058|38001077736|2 +504472|38001078205|2 +499789|38001078206|2 +579992|38001078207|2 +498491|38001078459|2 +510079|38001078944|2 +882993|38001078947|2 +546842|38001079038|2 +502780|38001079077|2 +652861|38001079241|2 +723042|38001079648|2 +676850|38001079824|2 +803694|38001079826|2 +888972|38001080143|2 +478435|38001080282|2 +502378|38001080689|2 +525959|38001080855|2 +452262|38001080914|2 +566511|38001080994|2 +1107566|38001081001|2 +492478|38001081124|2 +493589|38001081125|2 +736434|38001081240|2 +522021|38001081241|2 +579953|38001081360|2 +619639|38001081363|2 +624408|38001081569|2 +533937|38001081866|2 +549639|38001081869|2 +843442|38001082284|2 +507049|38001082327|2 +640822|38001082329|2 +598339|38001082376|2 +526083|38001082445|2 +634092|38001082449|2 +633982|38001082450|2 +493559|38001082511|2 +610801|38001082512|2 +878231|38001082513|2 +807977|38001082740|2 +828362|38001083010|4 +612232|38001083082|2 +724664|38001083183|2 +543562|38001083292|2 +600576|38001083293|2 +498298|38001083609|2 +850467|38001083614|2 +861956|38001083615|2 +878471|38001083616|2 +619651|38001083715|2 +888140|38001083716|2 +958044|38001083809|2 +555985|38001084045|2 +557970|38001084054|2 +878310|38001084182|2 +703974|38001084193|2 +555573|38001084466|2 +550899|38001084515|2 +731068|38001084518|2 +828245|38001084519|4 +871396|38001084522|2 +562422|38001084660|2 +793742|38001084662|2 +804949|38001084663|2 +704596|38001084731|2 +605687|38001084772|2 +728282|38001084773|4 +514065|38001084890|2 +567360|38001084979|2 +692915|38001084980|2 +692914|38001084981|2 +819537|38001084982|2 +609879|38001085088|2 +681235|38001085106|2 +885529|38001085167|2 +647601|38001085183|2 +471854|38001085260|2 +690607|38001085262|2 +558474|38001085360|2 +780620|38001085572|2 +704366|38001086312|2 +744559|38001086317|2 +777472|38001086318|2 +575237|38001086328|2 +578982|38001086340|2 +809450|38001086343|2 +513601|38001086353|2 +693981|38001086357|2 +504876|38001086359|2 +504656|38001086360|2 +635692|38001086363|2 +874780|38001086364|2 +462125|38001086367|2 +883378|38001086368|4 +676168|38001086376|2 +471178|38001086380|2 +1163023|38001086394|2 +477418|38001086396|2 +492786|38001086397|2 +649537|38001086406|2 +661292|38001086409|4 +475750|38001086452|2 +509053|38001086453|2 +787940|38001086454|2 +882285|38001086455|2 +700003|38001086679|2 +896252|38001086736|2 +1008251|38001086737|2 +483539|38001086884|2 +526783|38001086885|2 +568567|38001086886|2 +603980|38001086887|2 +736765|38001086888|2 +798821|38001086889|2 +807451|38001086890|2 +710500|38001086991|2 +471243|38001087004|2 +781728|38001087006|2 +579889|38001087976|2 +746365|38001088006|2 +616867|38001088008|2 +796307|38001088009|2 +615358|38001088010|2 +981681|38001088013|2 +725522|38001088015|2 +577461|38001088027|2 +739751|38001088029|2 +867394|38001088033|2 +513598|38001088038|2 +866050|38001088047|2 +550635|38001089568|2 +605682|38001089570|2 +638535|38001089572|2 +546578|38001089576|2 +761195|38001089577|2 +498370|38001089580|2 +754057|38001089582|2 +892783|38001089903|2 +533270|38001089910|2 +885948|38001089911|2 +860658|38001090021|2 +581588|38001090022|4 +801332|38001090026|2 +828900|38001090192|4 +647303|38001090217|2 +746713|38001090224|2 +871809|38001090225|2 +627808|38001090328|2 +633229|38001090410|2 +864543|38001090412|2 +836781|38001090416|4 +871283|38001090422|2 +466456|38001092257|2 +506243|38001092277|2 +506244|38001092278|2 +548577|38001092279|2 +498305|38001092280|2 +854137|38001092285|2 +855736|38001092286|2 +863327|38001092287|2 +863223|38001092288|2 +619601|38001092291|2 +523213|38001092545|2 +535605|38001092549|2 +864635|38001092550|2 +483629|38001092556|2 +825523|38001092568|4 +794383|38001092569|2 +492167|38001092571|2 +1188791|38001092576|2 +744560|38001092579|2 +581506|38001092585|2 +803250|38001092592|2 +528784|38001092597|2 +732705|38001092610|2 +502442|38001092697|2 +487416|38001092765|2 +740240|38001092777|2 +797764|38001092796|2 +667214|38001092820|2 +484228|38001093317|2 +657201|38001093320|2 +673773|38001093322|2 +544520|38001093323|2 +732414|38001093639|2 +522923|38001093642|2 +670766|38001093644|2 +607318|38001093645|2 +614252|38001093657|2 +563037|38001093658|2 +563031|38001093660|2 +798686|38001093918|2 +854858|38001093920|2 +588959|38001094232|2 +658249|38001094233|2 +795560|38001094251|2 +743020|38001094260|2 +472522|38001094446|2 +505465|38001094513|2 +568321|38001094514|2 +746142|38001094517|2 +969295|38001094904|2 +607816|38001095009|2 +566386|38001095062|2 +712347|38001095064|2 +782425|38001095194|2 +832536|38001095195|4 +889837|38001095264|2 +492772|38001095415|2 +490726|38001095508|2 +561993|38001095511|2 +867872|38001095512|2 +639885|38001095628|2 +724499|38001095631|2 +926546|38001095633|2 +530045|38001095799|2 +605674|38001095804|2 +1084573|38001095823|2 +496432|38001095937|2 +836804|38001095939|4 +637593|38001096019|2 +661812|38001096021|2 +544210|38001096105|2 +728834|38001099786|2 +526964|38001099825|2 +508399|38001099933|2 +865699|38001100004|2 +731373|38001100009|2 +865110|38001100012|2 +618179|38001100017|2 +495837|38001100018|2 +641157|38001101277|2 +586069|38001101343|2 +544504|38001101363|2 +839855|38001101500|4 +597741|38001101514|2 +784275|38001101845|2 +518873|38001101846|2 +508124|38001101847|2 +625816|38001101926|2 +711620|38001101934|2 +793037|38001101939|2 +802449|38001101997|2 +707420|38001101998|2 +639189|38001102006|2 +642214|38001102009|2 +569195|38001102012|2 +885559|38001102139|2 +774264|38001102140|2 +580173|38001102142|2 +877969|38001102143|2 +520611|38001102147|2 +658332|38001102461|2 +570671|38001102463|2 +662545|38001102464|2 +666342|38001102466|2 +745407|38001102838|2 +571972|38001102870|2 +636008|38001102874|2 +611476|38001102942|2 +792256|38001102943|2 +803459|38001102946|2 +606247|38001102948|4 +794026|38001102949|2 +458260|38001102950|2 +820227|38001102952|2 +888356|38001102954|2 +559692|38001102958|2 +874720|38001102960|2 +604834|38001102962|2 +601819|38001102963|2 +566144|38001102964|2 +499014|38001103169|2 +471262|38001103170|2 +558701|38001103176|2 +1006919|38001103178|2 +670743|38001103179|2 +608914|38001103180|2 +580938|38001103181|2 +645367|38001103187|2 +807086|38001103191|2 +580476|38001103192|2 +583666|38001103221|2 +733109|38001103383|2 +800555|38001103573|2 +833960|38001103794|6 +470791|38001103808|2 +511618|38001103854|2 +573358|38001104005|2 +626984|38001104007|2 +668505|38001104012|2 +889767|38001104014|2 +846930|38001104235|2 +535245|38001104305|2 +864861|38001104306|2 +866195|38001104310|2 +616405|38001104455|2 +725076|38001104459|2 +818464|38001104464|4 +880042|38001104583|2 +608911|38001104604|2 +620014|38001104669|2 +650222|38001104708|2 +539400|38001104716|2 +528810|38001104964|2 +745465|38001104975|2 +793875|38001105614|2 +607547|38001105624|2 +557192|38001105628|2 +758683|38001105635|2 +877971|38001105640|2 +896759|38001105642|2 +1018145|38001105647|2 +679633|38001105846|2 +453174|38001105857|2 +630033|38001105861|2 +889239|38001105895|2 +461634|38001106060|2 +554795|38001106068|2 +639520|38001106072|2 +869548|38001106118|2 +503773|38001106176|2 +590768|38001106178|2 +498309|38001106484|2 +525636|38001106493|2 +825733|38001106524|4 +885917|38001106602|2 +638524|38001106956|2 +871932|38001106965|2 +889290|38001106966|2 +743080|38001107095|2 +586936|38001107443|2 +518534|38001107446|2 +895968|38001107455|2 +549543|38001107462|2 +626692|38001107530|2 +467765|38001107593|2 +488882|38001107625|2 +534622|38001107626|2 +551923|38001107628|2 +887174|38001107947|2 +882770|38001107948|2 +458518|38001108126|2 +647042|38001108128|4 +721679|38001108130|2 +859357|38001108133|2 +510501|38001108416|2 +616906|38001108421|2 +716892|38001108424|2 +742147|38001108481|2 +833836|38001108765|4 +847926|38001108767|2 +821316|38001108986|4 +472804|38001108995|4 +869214|38001109074|2 +887679|38001109209|2 +772658|38001109333|2 +896944|38001109341|2 +663081|38001109501|2 +696270|38001109547|2 +510032|38001109549|2 +633961|38001109748|2 +790461|38001109758|2 +861455|38001109760|2 +469980|38001109769|2 +564248|38001109772|2 +677567|38001109773|2 +861418|38001109785|2 +1122457|38001109786|2 +637944|38001109787|2 +632545|38001109788|2 +670726|38001109869|2 +766813|38001109872|2 +479079|38001110584|2 +887452|38001110592|2 +483043|38001110978|2 +723010|38001110981|2 +744803|38001110982|2 +635519|38001111000|2 +474781|38001111637|2 +536242|38001111671|2 +607053|38001111714|2 +503206|38001111719|2 +523422|38001111906|2 +635368|38001111908|2 +696741|38001111910|2 +835869|38001111911|4 +569063|38001112131|2 +654452|38001112186|2 +648204|38001112370|2 +550878|38001112587|2 +650308|38001112589|2 +642808|38001112593|2 +834676|38001112602|4 +548500|38001112819|2 +615562|38001112821|2 +739641|38001112827|2 +567294|38001112847|2 +567295|38001112853|2 +746496|38001112859|2 +751228|38001113324|2 +451651|38001113802|2 +534034|38001113803|2 +836880|38001113804|4 +700255|38001113809|2 +787373|38001113811|2 +1160387|38001113826|2 +492999|38001113931|2 +557001|38001114165|2 +569217|38001114167|2 +690994|38001114170|2 +665912|38001114179|2 +770770|38001114180|2 +759997|38001114186|2 +707675|38001114190|2 +762686|38001114191|2 +718093|38001114703|2 +730463|38001114758|2 +724660|38001114760|2 +883209|38001114764|4 +540354|38001114766|2 +802702|38001114767|2 +634881|38001114771|2 +884613|38001114772|2 +590409|38001114807|2 +625763|38001114812|2 +632488|38001114872|2 +747640|38001114885|2 +747727|38001114891|2 +648047|38001114897|2 +528428|38001114988|2 +696731|38001114997|2 +708024|38001115036|2 +730016|38001115252|4 +473887|38001116172|2 +490866|38001116227|2 +533348|38001116366|2 +539348|38001116369|2 +585923|38001116370|2 +561392|38001116371|2 +568320|38001116373|2 +587769|38001116376|2 +519301|38001116437|2 +647864|38001116444|2 +682496|38001116459|2 +708445|38001116488|2 +741228|38001116502|2 +767739|38001116567|2 +806863|38001116593|2 +829250|38001116598|4 +860689|38001116605|2 +863134|38001116612|2 +880284|38001116627|2 +880485|38001116632|2 +887137|38001116634|2 +663322|38001116698|2 +889748|38001116713|4 +891953|38001116718|2 +892616|38001116719|2 +760590|38001116736|2 +559098|38001116829|2 +690141|38001116830|2 +708371|38001116840|2 +804620|38001116908|2 +1106348|38001116910|2 +894613|38001116993|2 +476862|38001117142|2 +567514|38001117143|2 +591658|38001117232|2 +567872|38001117396|2 +611506|38001117403|2 +643012|38001117405|2 +649540|38001117407|2 +594239|38001117408|4 +737630|38001117413|2 +508680|38001118124|2 +534637|38001118213|2 +549484|38001118366|2 +580114|38001118433|2 +644548|38001118478|2 +862814|38001118498|2 +754936|38001118499|2 +488031|38001118556|2 +803672|38001118589|2 +899989|38001118605|2 +1164658|38001118628|2 +482340|38001118720|2 +559010|38001118722|2 +865923|38001118998|2 +555727|38001119131|2 +557422|38001119142|2 +566655|38001119187|2 +467422|38001119256|2 +730785|38001119258|2 +656964|38001119408|2 +693166|38001119421|2 +526994|38001119456|2 +527989|38001119514|2 +871616|38001119527|2 +560214|38001119561|2 +580166|38001119608|2 +454596|38001119770|2 +491079|38001119917|2 +515539|38001119919|2 +604215|38001119923|2 +734337|38001119925|2 +736957|38001119926|2 +825994|38001119927|4 +606404|38001119931|2 +646541|38001119934|2 +504237|38001119948|2 +852837|38001119975|2 +552432|38001119979|2 +830783|38001120226|4 +517525|38001120275|2 +490410|38001120881|2 +652683|38001120882|2 +643890|38001120905|2 +675934|38001120909|2 +879547|38001121084|2 +804523|38001121191|2 +804514|38001121193|2 +519734|38001121235|2 +540013|38001121236|2 +688585|38001121297|2 +889617|38001121305|2 +503411|38001121308|2 +639282|38001121421|2 +872795|38001121505|2 +488725|38001121766|2 +709963|38001122503|2 +783302|38001122510|2 +809208|38001122513|2 +892631|38001122514|2 +781423|38001122703|2 +874914|38001122730|2 +733978|38001122862|2 +686010|38001123055|2 +526084|38001123388|2 +535434|38001123396|2 +672844|38001123405|2 +795705|38001123411|2 +890873|38001123416|4 +776403|38001123419|2 +776391|38001123609|2 +778069|38001123613|2 +839227|38001123779|4 +491806|38001123955|2 +692869|38001123957|2 +909733|38001123961|2 +537014|38001124336|2 +487582|38001124962|2 +500198|38001124964|2 +509173|38001124971|2 +540515|38001124983|2 +569056|38001124985|2 +606025|38001124991|2 +640848|38001124992|2 +674673|38001124997|2 +709362|38001124998|2 +755662|38001125003|2 +471122|38001125035|2 +659022|38001125058|2 +474242|38001125084|2 +668038|38001125085|2 +700254|38001125104|2 +894094|38001125109|2 +703072|38001125114|2 +519282|38001125425|2 +643073|38001125544|2 +701997|38001125833|2 +802346|38001125834|2 +782454|38001125957|2 +454879|38001126782|2 +507868|38001126784|2 +511679|38001126785|2 +583673|38001126787|2 +653622|38001126788|2 +675218|38001126789|2 +705359|38001126790|2 +749114|38001126792|4 +707881|38001126990|2 +714447|38001126996|4 +718945|38001126997|2 +831684|38001127019|4 +834156|38001127021|4 +868286|38001127022|2 +807089|38001127061|2 +576073|38001127203|2 +577659|38001127210|2 +800541|38001127211|2 +698657|38001127215|2 +530959|38001127246|2 +576569|38001127251|2 +609327|38001127265|2 +632046|38001127270|2 +895971|38001127393|2 +898825|38001127411|2 +772891|38001127551|2 +890703|38001127570|2 +566387|38001127652|2 +566155|38001127660|2 +467776|38001128055|2 +471301|38001128068|2 +520652|38001128264|2 +539401|38001128293|2 +581704|38001128322|2 +649608|38001128341|2 +690622|38001128346|2 +740443|38001128423|2 +837308|38001128429|4 +841867|38001128431|2 +511537|38001128533|2 +594834|38001128581|2 +1089481|38001128632|2 +1091237|38001128639|2 +741184|38001128649|2 +1206113|38001128661|2 +646024|38001128831|2 +460656|38001129027|2 +617472|38001129030|2 +613992|38001129031|4 +774484|38001129350|2 +603375|38001129575|2 +492617|38001129580|2 +516093|38001129619|2 +672929|38001129622|2 +771088|38001129624|2 +727855|38001129789|2 +498459|38001129899|2 +470096|38001130141|2 +731242|38001130143|2 +451877|38001130274|2 +497108|38001130275|4 +642449|38001130279|2 +854789|38001130376|2 +519661|38001130428|2 +544032|38001130431|2 +740248|38001130436|2 +767484|38001130442|2 +791933|38001130443|2 +869216|38001130444|2 +709465|38001130599|2 +889825|38001130600|2 +481996|38001130719|2 +574541|38001130722|2 +645946|38001130728|2 +496391|38001130799|2 +475740|38001131309|2 +654463|38001131316|2 +745196|38001131339|2 +828906|38001131343|4 +869769|38001131344|2 +583760|38001131399|2 +730175|38001131418|2 +474619|38001131433|2 +601506|38001131490|2 +893757|38001131491|2 +544181|38001131638|2 +565643|38001131658|2 +792956|38001131692|2 +807104|38001131694|2 +461895|38001132005|2 +503995|38001132006|2 +683166|38001132007|2 +773672|38001132009|2 +638348|38001132018|2 +771212|38001132219|2 +531849|38001132221|2 +899163|38001132224|2 +475525|38001132226|2 +744534|38001132232|2 +624267|38001132239|2 +869815|38001132242|2 +1150186|38001132247|2 +869234|38001132248|2 +650216|38001132257|2 +466041|38001132259|2 +1165830|38001132260|2 +805175|38001132380|2 +494902|38001132660|2 +522498|38001132665|2 +534180|38001132667|2 +687717|38001132673|2 +735648|38001132675|2 +798838|38001132677|2 +852427|38001132678|2 +693610|38001132702|2 +468077|38001132841|2 +477442|38001133385|2 +623091|38001133387|2 +783751|38001133388|2 +463168|38001133909|2 +476876|38001133911|2 +545618|38001133916|2 +554814|38001133918|2 +715756|38001133923|2 +849309|38001133927|2 +881591|38001133932|2 +885833|38001133933|2 +898164|38001133934|2 +482491|38001134134|2 +725520|38001134142|2 +741947|38001134326|2 +612475|38001134328|2 +843802|38001134338|2 +887244|38001134758|2 +771723|38001134764|2 +453178|38001135341|2 +478832|38001135342|2 +563975|38001135345|2 +847415|38001135525|4 +550549|38001135529|2 +589258|38001135532|2 +633966|38001135533|2 +780775|38001135539|2 +455073|38001135760|2 +702942|38001135761|4 +649564|38001135766|2 +534068|38001135771|2 +528148|38001135773|2 +680307|38001135787|2 +709296|38001135808|2 +523949|38001136928|2 +524729|38001136935|2 +551854|38001136937|2 +663423|38001136940|2 +722866|38001136951|2 +838310|38001136962|6 +882840|38001136965|2 +891500|38001136966|2 +868266|38001137873|2 +868764|38001137941|2 +885572|38001137995|2 +865712|38001138000|2 +885435|38001138010|2 +834214|38001138023|4 +749831|38001138578|2 +488663|38001139205|2 +687042|38001139217|2 +515877|38001139218|2 +542667|38001139220|2 +559063|38001139222|2 +567711|38001139224|2 +642625|38001139232|2 +552791|38001139235|2 +791278|38001139237|2 +803796|38001139238|2 +851310|38001139240|2 +877338|38001139293|2 +854822|38001139296|2 +886360|38001140800|2 +456539|38001141634|2 +472808|38001141635|4 +484909|38001141637|2 +771035|38001141644|2 +623154|38001141668|2 +600600|38001141669|2 +528001|38001141839|2 +803412|38001141847|2 +494029|38001142392|2 +502429|38001142429|2 +517231|38001142545|2 +854475|38001142560|2 +528820|38001142562|2 +529899|38001142564|2 +572365|38001142566|2 +542394|38001142568|2 +553717|38001142569|2 +571980|38001142572|2 +609461|38001142575|2 +614637|38001142578|2 +615152|38001142579|2 +653611|38001142580|2 +792101|38001142581|2 +663003|38001142584|2 +887077|38001142586|2 +825498|38001142587|4 +609597|38001143772|4 +638279|38001143774|2 +644391|38001143776|2 +666801|38001143796|2 +714672|38001143818|2 +728825|38001143823|2 +747613|38001143825|2 +695711|38001143832|2 +797776|38001143842|2 +888122|38001143858|2 +517482|38001143872|2 +611917|38001143877|2 +522312|38001143888|2 +690352|38001143895|4 +581899|38001143909|2 +703969|38001144370|2 +647254|38001144376|2 +821515|38001144380|4 +605135|38001144386|2 +802660|38001144399|2 +707581|38001144407|2 +828107|38001144426|4 +829601|38001144428|4 +829571|38001144431|4 +858574|38001144439|2 +858575|38001144440|2 +863655|38001144442|2 +885420|38001144447|2 +644056|38001144453|2 +660553|38001144455|2 +892472|38001144459|2 +686952|38001144463|2 +565636|38001145024|2 +893951|38001145029|2 +894947|38001145030|2 +685857|38001145038|2 +647962|38001145044|2 +837882|38001145045|4 +476789|38001145574|2 +582903|38001146227|2 +1141318|38001146228|2 +795093|38001146229|2 +458155|38001146237|2 +528307|38001146247|4 +878955|38001146249|2 +562360|38001146258|2 +773327|38001146261|2 +767398|38001146272|2 +829030|38001146275|4 +799329|38001146284|2 +799323|38001146285|2 +630154|38001147008|2 +633448|38001147009|2 +614621|38001147132|2 +1010249|38001147141|2 +520195|38001147635|2 +871904|38001148089|2 +763031|38001148090|2 +640326|38001148113|2 +866424|38001148144|2 +579572|38001148160|2 +703826|38001148166|2 +737478|38001148179|2 +457946|38001148185|2 +667808|38001148222|2 +492349|38001148256|2 +752857|38001148274|2 +876785|38001148310|2 +727056|38001148610|2 +643737|38001148644|2 +550842|38001148710|2 +777565|38001148900|2 +681173|38001148934|2 +754404|38001148984|2 +659345|38001148985|2 +673127|38001148986|2 +800841|38001149871|2 +832897|38001149884|4 +480615|38001150752|2 +480613|38001150753|2 +503624|38001151646|2 +569357|38001152189|2 +547169|38001152594|2 +647867|38001152603|2 +701326|38001152614|2 +700673|38001152616|2 +709761|38001152628|2 +832076|38001152662|4 +551147|38001154114|2 +684696|38001154988|2 +625135|38001154999|2 +539015|38001155110|2 +868039|38001155442|2 +897897|38001155449|2 +896376|38001160080|2 +510268|38001160086|2 +775210|38001160087|2 +513306|38001160093|2 +770794|38001160094|2 +720956|38001160095|2 +1042745|38001160097|2 +579571|38001160098|2 +616292|38001160102|2 +708794|38001160103|2 +818056|38001160603|2 +851891|38001160614|2 +851874|38001160616|2 +879052|38001160618|2 +788653|38001160620|2 +605683|38001160622|2 +591258|38001160623|2 +588153|38001160625|2 +706589|38001160626|2 +647277|38001160627|2 +703322|38001160628|2 +741292|38001160629|2 +806275|38001160630|2 +626658|38001160632|2 +886282|38001160633|2 +500814|38001160634|2 +664755|38001160635|2 +615990|38001160638|2 +726138|38001160639|2 +614375|38001160640|2 +569197|38001161449|2 +731925|38001161451|2 +626546|38001161453|2 +456540|38001161455|2 +456541|38001161456|2 +531696|38001161997|2 +483129|38001162104|2 +615872|38001162139|2 +831689|38001162297|4 +644254|38001162361|2 +492413|38001162717|2 +568724|38001162722|2 +616531|38001162723|2 +580816|38001162724|2 +495828|38001162728|2 +772724|38001162732|2 +685718|38001162733|2 +626656|38001162735|2 +741919|38001162736|2 +598246|38001162740|2 +659183|38001162748|2 +583595|38001162756|2 +620433|38001162760|2 +884146|38001162764|2 +750659|38001162765|2 +557198|38001162766|2 +514949|38001162770|2 +583701|38001162771|2 +560434|38001163155|2 +743666|38001163159|2 +885451|38001163160|2 +731912|38001163161|2 +783599|38001163163|2 +591289|38001163587|2 +628087|38001163588|2 +715864|38001163599|2 +695323|38001163620|2 +594054|38001163621|2 +576541|38001163629|2 +589758|38001163637|2 +471562|38001163642|2 +520013|38001163646|2 +740352|38001163662|2 +487367|38001163671|2 +570280|38001163684|2 +507172|38001163701|2 +770792|38001163707|2 +794157|38001163719|2 +530676|38001163721|2 +534016|38001163727|4 +642703|38001163734|2 +569137|38001163745|2 +570389|38001163747|2 +573199|38001163749|2 +573750|38001163750|2 +557193|38001163759|2 +596640|38001163761|2 +623294|38001163815|2 +531520|38001163820|2 +625836|38001163825|2 +863228|38001163828|2 +523423|38001163830|2 +637391|38001163831|2 +701444|38001163850|2 +717635|38001163851|2 +753291|38001163855|2 +569146|38001163860|2 +673324|38001163866|2 +625209|38001163868|2 +569112|38001163880|2 +864806|38001163884|2 +580013|38001163885|2 +807102|38001163890|2 +835105|38001163893|4 +546264|38001163894|2 +859602|38001163899|2 +785858|38001163901|2 +875104|38001163902|2 +1065780|38001163922|2 +825491|38001163940|4 +1234392|38001163952|2 +868628|38001164028|2 +877211|38001164029|2 +928432|38001164036|2 +725137|38001164037|4 +725138|38001164038|4 +519334|38001164504|2 +1046835|38001164505|2 +670586|38001164702|2 +605508|38001166939|2 +875069|38001166940|2 +757528|38001170952|2 +469601|38001171072|2 +472424|38001171073|2 +504490|38001171074|2 +505428|38001171076|2 +510915|38001171078|2 +525899|38001171079|2 +535580|38001171089|2 +546263|38001171097|2 +555275|38001171098|2 +562941|38001171099|2 +574952|38001171100|2 +518042|38001171102|2 +607908|38001171103|2 +626521|38001171104|2 +630355|38001171107|2 +633230|38001171109|2 +683613|38001171115|2 +697819|38001171118|2 +665188|38001171254|2 +763213|38001171261|2 +781530|38001171265|2 +702545|38001171269|2 +829201|38001171273|4 +841387|38001171279|2 +838003|38001171475|4 +850428|38001171483|2 +867059|38001171503|2 +885341|38001171505|2 +889744|38001171507|4 +896279|38001171508|2 +1008131|38001171547|2 +538228|38001171551|2 +470919|38001171554|2 +1107021|38001171557|2 +1191137|38001171608|2 +493814|38001172310|2 +557436|38001172311|2 +713234|38001172313|2 +456698|38001172875|4 +627084|38001172881|2 +802203|38001172883|2 +644200|38001172886|2 +650718|38001173074|2 +842352|38001173292|2 +591451|38001173322|2 +489872|38001173346|2 +532117|38001173348|2 +660539|38001173369|2 +688875|38001173421|2 +582359|38001174017|2 +782824|38001174020|2 +883427|38001174024|2 +736411|38001174030|2 +859413|38001174032|2 +724246|38001174044|2 +778895|38001174045|2 +828968|38001174047|4 +621879|38001174049|2 +874559|38001174050|2 +895932|38001174051|2 +887594|38001174053|2 +467400|38001174055|2 +783713|38001174061|2 +516235|38001174108|2 +504618|38001174111|2 +856702|38001174112|2 +756012|38001174117|2 +495042|38001174120|2 +898032|38001174123|2 +465977|38001174126|2 +886732|38001174127|2 +493837|38001174128|2 +880484|38001174131|2 +889455|38001174133|2 +888358|38001174134|2 +455089|38001174135|2 +479275|38001174137|2 +807549|38001174138|2 +581789|38001174142|2 +796351|38001174146|2 +538941|38001174167|2 +887565|38001174168|2 +753424|38001174179|2 +462321|38001174183|2 +706124|38001174194|2 +857165|38001174196|2 +717955|38001174197|2 +774846|38001174199|2 +754048|38001174201|2 +773915|38001174207|2 +737558|38001174215|2 +505445|38001174402|2 +606897|38001174414|2 +643011|38001174419|2 +830323|38001174421|4 +709457|38001174439|2 +710812|38001174440|2 +739752|38001174441|2 +746647|38001174443|2 +864318|38001174451|2 +893626|38001174463|2 +760818|38001174474|2 +660453|38001174530|2 +462344|38001174533|2 +489858|38001175021|2 +596935|38001175032|2 +488864|38001175047|2 +591416|38001175048|2 +752334|38001175090|2 +499632|38001175093|2 +690488|38001175094|2 +532877|38001175471|2 +831250|38001175473|4 +664919|38001177802|2 +471076|38001177808|2 +506402|38001178018|2 +533384|38001178020|2 +633373|38001178043|2 +575051|38001178044|2 +591752|38001178053|2 +711786|38001178054|2 +668823|38001178058|2 +788489|38001178059|2 +777322|38001178082|2 +774603|38001178095|2 +875022|38001178101|2 +886708|38001178103|2 +894170|38001178126|2 +854120|38001178128|2 +833225|38001178149|4 +1237641|38001178166|2 +589000|38001178274|2 +848356|38001178284|2 +625764|38001180103|2 +633369|38001180178|2 +544070|38001180377|2 +569159|38001180385|2 +580078|38001180388|2 +667896|38001180392|2 +798833|38001180401|2 +735695|38001180407|2 +747242|38001180408|2 +780145|38001180409|2 +794041|38001180413|2 +452290|38001180666|2 +566214|38001180708|2 +720963|38001180787|2 +533383|38001180830|2 +615921|38001180835|2 +838017|38001180994|4 +752756|38001180996|2 +708755|38001180997|2 +784927|38001181003|2 +580360|38001181027|2 +711924|38001181031|2 +919589|38001181108|2 +537007|38001181127|2 +784976|38001181160|2 +863454|38001181162|2 +638930|38001181200|2 +479260|38001181697|2 +562019|38001181699|2 +460245|38001181919|2 +498345|38001181932|2 +685337|38001181940|2 +765201|38001181942|2 +737087|38001181951|2 +585232|38001181954|2 +889351|38001181956|2 +526908|38001182597|2 +505467|38001182687|2 +688570|38001183368|2 +646973|38001183492|2 +711869|38001183493|2 +747386|38001183523|2 +756646|38001183525|2 +778681|38001183539|2 +778639|38001183540|2 +784479|38001183541|2 +805813|38001183547|2 +827059|38001183548|4 +846609|38001183549|2 +865897|38001183550|2 +892925|38001183553|2 +663153|38001183609|2 +688848|38001183612|2 +487937|38001183689|2 +465315|38001183739|2 +1268809|38001183794|2 +549183|38001183924|2 +764428|38001183953|2 +473654|38001184232|2 +582787|38001184233|2 +827995|38001184234|4 +682792|38001184273|2 +470371|38001184973|2 +889775|38001184975|2 +580979|38001184979|2 +759575|38001185159|2 +764429|38001185160|2 +875126|38001185166|2 +872966|38001185237|2 +621199|38001185339|2 +511128|38001185659|2 +547834|38001185782|2 +628218|38001186082|2 +492276|38001186455|2 +556335|38001186458|2 +568391|38001186463|2 +458330|38001186474|2 +864486|38001186504|2 +680610|38001186698|2 +874987|38001186715|2 +710211|38001187088|2 +510247|38001187172|2 +523804|38001187175|2 +538595|38001187197|2 +532318|38001187199|2 +665829|38001187203|2 +692872|38001187204|2 +700424|38001187205|2 +700418|38001187207|2 +722571|38001187694|2 +878292|38001187699|2 +634908|38001187801|2 +826940|38001187804|4 +729538|38001187843|2 +573704|38001188168|2 +737021|38001188172|2 +839331|38001188442|4 +831089|38001188581|4 +801650|38001188785|2 +566207|38001189030|2 +756489|38001189042|2 +693000|38001189166|2 +862114|38001189179|2 +725448|38001189359|2 +582131|38001189411|2 +638315|38001189596|2 +606579|38001189671|2 +740025|38001189674|2 +885046|38001189790|2 +543234|38001189791|2 +722875|38001189874|2 +501328|38001189925|2 +846868|38001190025|2 +459011|38001190168|2 +642308|38001190171|2 +872114|38001190207|2 +656643|38001190434|2 +891555|38001190435|2 +837985|38001190549|4 +805025|38001190550|2 +840205|38001190822|4 +739996|38001190859|2 +738606|38001191130|2 +516492|38001191252|2 +857247|38001191270|2 +541961|38001191460|2 +504150|38001191541|2 +773316|38001191547|2 +613085|38001191833|2 +767125|38001191834|2 +559165|38001191836|2 +543104|38001191894|2 +593667|38001191895|2 +498532|38001192208|2 +538806|38001192209|4 +513658|38001192325|2 +462824|38001192728|2 +541147|38001193064|2 +565609|38001193066|2 +597107|38001193068|2 +687124|38001193069|2 +719493|38001193070|2 +725521|38001193071|2 +552323|38001193072|4 +850474|38001193073|2 +1198881|38001193078|2 +752858|38001193081|2 +752862|38001193082|2 +610567|38001193166|2 +727005|38001193167|2 +467288|38001193358|4 +758564|38001193371|2 +630604|38001193404|2 +616034|38001193405|2 +572373|38001193531|2 +539842|38001193533|2 +603954|38001193534|2 +850799|38001193863|2 +783041|38001194170|2 +886048|38001194171|2 +889530|38001194173|2 +714962|38001194296|2 +771379|38001194551|2 +720108|38001194646|2 +677005|38001194851|2 +671069|38001194993|2 +852831|38001195128|2 +714984|38001195218|2 +730150|38001195274|2 +828894|38001195299|4 +618218|38001195496|2 +898173|38001195506|4 +898174|38001195510|4 +653319|38001195594|2 +727848|38001195707|2 +468994|38001195883|2 +746495|38001196137|2 +792288|38001196190|2 +754977|38001196242|2 +603531|38001196357|2 +884147|38001196501|2 +580028|38001196581|2 +552976|38001196679|2 +555374|38001196680|2 +765571|38001196689|2 +492599|38001197070|2 +792557|38001197084|2 +632234|38001197176|2 +735341|38001197281|2 +584367|38001197407|2 +831461|38001197418|4 +926548|38001197520|2 +702041|38001197625|2 +675854|38001197808|2 +730646|38001197809|2 +768118|38001197818|2 +488851|38001197833|2 +478124|38001197987|2 +801242|38001198157|2 +499967|38001198341|2 +773893|38001198350|2 +603889|38001198480|2 +846457|38001198549|4 +892023|38001198551|2 +547563|38001198642|2 +512934|38001198725|2 +777556|38001198811|2 +567748|38001199549|2 +857171|38001199553|2 +685454|38001199555|2 +825495|38001199557|4 +954089|38001199561|2 +681695|38001199562|2 +674516|38001199567|2 +605419|38001199570|2 +645380|38001199571|2 +650235|38001199575|2 +791931|38001199586|2 +522943|38001199587|2 +713889|38001199591|2 +852826|38001199594|2 +531538|38001199598|2 +861127|38001199599|2 +862395|38001199616|2 +513159|38001199957|2 +668623|38001199970|2 +796145|38001200199|2 +667805|38001200201|2 +454692|38001200328|2 +737019|38001200625|2 +733535|38001200660|2 +663300|38001200700|2 +520472|38001201050|2 +596555|38001201055|2 +833918|38001201062|4 +885893|38001201063|2 +531160|38001201319|2 +535071|38001201425|2 +525910|38001201827|2 +513666|38001201910|2 +663301|38001202137|2 +743247|38001202138|2 +1024875|38001202140|2 +896845|38001202189|2 +650460|38001202359|2 +482095|38001202787|2 +702986|38001202820|2 +712840|38001202837|2 +713847|38001202839|2 +788314|38001202856|2 +875002|38001202869|2 +893056|38001203171|2 +659223|38001203229|2 +575438|38001203230|2 +660962|38001203240|2 +612568|38001203277|2 +873104|38001203417|2 +510033|38001203418|2 +878499|38001203419|2 +592037|38001203420|2 +650878|38001204193|2 +559981|38001204203|2 +762518|38001204311|2 +704528|38001204454|2 +898204|38001204717|2 +898220|38001204719|2 +471862|38001204770|2 +452375|38001205100|2 +514851|38001205420|2 +884031|38001205428|2 +857120|38001205441|2 +763566|38001205443|2 +867978|38001205444|2 +570309|38001205555|2 +479257|38001205592|2 +879245|38001205594|2 +852154|38001205749|2 +839151|38001206157|4 +644201|38001206668|2 +467208|38001206710|4 +647309|38001207371|2 +567130|38001207435|2 +577496|38001207438|2 +886690|38001208680|2 +523067|38001209012|2 +863701|38001209044|2 +642528|38001209201|2 +787780|38001209202|2 +787779|38001209203|2 +869126|38001209206|2 +881180|38001209207|2 +536511|38001209209|2 +644060|38001209236|2 +858748|38001209271|2 +885347|38001209274|2 +631052|38001209367|2 +507566|38001209384|4 +802227|38001209387|2 +457411|38001209614|2 +606603|38001209615|2 +843532|38001209617|2 +874489|38001209633|2 +873159|38001209647|2 +754639|38001209651|2 +668639|38001209976|2 +454469|38001209993|2 +463758|38001209996|2 +599568|38001209997|2 +518666|38001210323|2 +899527|38001210343|2 +772858|38001210644|2 +776920|38001210783|2 +699951|38001211735|2 +809587|38001211739|2 +827426|38001211740|4 +818474|38001211743|4 +853718|38001211746|2 +645425|38001212138|2 +586265|38001212370|2 +544589|38001212380|2 +565146|38001212382|2 +736751|38001212383|2 +611561|38001212385|4 +840636|38001212388|2 +613250|38001212391|2 +847004|38001212540|2 +464931|38001212583|2 +521222|38001212593|2 +657622|38001212615|2 +488032|38001212766|2 +523181|38001212767|2 +781596|38001213038|2 +689775|38001213516|4 +647638|38001213518|2 +731058|38001213556|2 +502364|38001213921|2 +876873|38001213927|2 +740824|38001214571|2 +633117|38001214572|2 +575465|38001214573|2 +505132|38001214576|2 +788925|38001214577|2 +652106|38001214578|2 +486265|38001214579|2 +604024|38001214580|2 +495168|38001214581|2 +716948|38001214582|2 +531645|38001214583|2 +717279|38001214584|2 +595637|38001214589|2 +608435|38001214591|2 +698653|38001214596|2 +722615|38001214613|2 +743213|38001214615|2 +745999|38001214617|2 +759422|38001214618|2 +840207|38001214621|4 +1164086|38001214635|2 +1198858|38001214637|2 +674160|38001214785|2 +454671|38001215170|2 +651955|38001215174|2 +833385|38001215176|4 +893601|38001215177|2 +562600|38001215204|2 +625687|38001215208|2 +865563|38001215215|2 +872394|38001215216|2 +587057|38001215286|2 +796397|38001215898|2 +511076|38001216366|2 +549829|38001216367|2 +593297|38001216385|2 +619926|38001216389|2 +691163|38001216411|2 +767339|38001216438|2 +843662|38001216693|2 +560647|38001216819|2 +579220|38001216934|2 +774686|38001217180|2 +761572|38001217254|2 +953292|38001217262|2 +787145|38001217502|2 +861444|38001217504|2 +1004456|38001217507|2 +540516|38001217988|2 +563980|38001218224|2 +565610|38001218225|2 +747126|38001218298|2 +521192|38001218317|2 +674775|38001218429|2 +592221|38001218818|2 +648673|38001218825|2 +852967|38001218832|2 +877702|38001218857|2 +470948|38001218949|2 +853484|38001218962|2 +659044|38001219105|2 +754930|38001219350|2 +870295|38001219530|2 +551052|38001220084|2 +622320|38001220087|2 +503998|38001220300|2 +539140|38001220606|2 +791207|38001220607|2 +537012|38001220729|2 +616082|38001220963|2 +784193|38001221147|2 +616534|38001221378|2 +503198|38001221543|2 +708628|38001221544|2 +837797|38001221573|6 +565556|38001221903|2 +527163|38001221944|2 +897454|38001222120|2 +555639|38001222374|2 +631011|38001222634|2 +533284|38001222771|2 +873479|38001223194|2 +487298|38001223659|2 +864799|38001223720|2 +795896|38001223782|2 +842370|38001223952|2 +525888|38001224025|2 +733942|38001224083|2 +762631|38001224197|2 +807585|38001224256|2 +510551|38001224459|2 +496525|38001224571|2 +588230|38001224573|2 +840677|38001224574|2 +736463|38001224787|2 +697560|38001225030|2 +807946|38001225445|2 +485825|38001225548|2 +467023|38001225713|2 +612650|38001225716|2 +469425|38001225963|2 +872149|38001226025|2 +777613|38001226038|2 +733517|38001226047|2 +591213|38001226049|2 +595426|38001226056|2 +851688|38001226147|2 +522563|38001227240|2 +545075|38001227241|2 +644249|38001227244|2 +697558|38001227246|2 +784362|38001227248|2 +775476|38001227267|2 +559035|38001227268|2 +481978|38001228069|2 +580477|38001228073|2 +842145|38001228083|2 +878208|38001228089|2 +648025|38001228169|2 +712054|38001228186|2 +655401|38001228204|2 +771776|38001228347|2 +887363|38001228469|2 +484047|38001228569|2 +535172|38001228590|2 +878285|38001228623|2 +887175|38001228830|2 +525893|38001228884|2 +647005|38001228891|2 +652558|38001229122|2 +654554|38001229123|2 +758736|38001229128|2 +685994|38001229211|2 +1265870|38001229217|2 +554796|38001229341|2 +873078|38001229396|2 +617476|38001229767|2 +876794|38001229974|2 +698444|38001230068|4 +604195|38001230304|2 +774275|38001230315|2 +644547|38001230459|2 +846647|38001230475|2 +888566|38001231551|2 +474331|38001231881|2 +797551|38001231890|2 +774847|38001232069|2 +779244|38001232268|2 +872061|38001232272|2 +493917|38001232422|2 +638316|38001232944|2 +667327|38001232945|2 +889035|38001232947|2 +625895|38001233101|2 +690473|38001233138|2 +764417|38001233140|2 +779344|38001233142|2 +726249|38001233235|2 +866360|38001233339|2 +799215|38001233341|2 +732368|38001233622|2 +509394|38001233628|2 +852959|38001233661|2 +670414|38001233688|2 +771010|38001233691|4 +609483|38001233713|2 +762106|38001233815|2 +572021|38001233943|2 +597324|38001233951|2 +455331|38001234139|2 +600567|38001234242|2 +605509|38001234460|2 +882359|38001234482|2 +873179|38001234538|2 +857122|38001234656|2 +773314|38001234742|2 +732086|38001234955|2 +599379|38001235073|2 +861122|38001235077|2 +722759|38001235210|2 +893746|38001235215|2 +700024|38001235491|2 +507461|38001235492|2 +499054|38001235494|2 +845678|38001235631|2 +617877|38001235697|2 +873103|38001235806|2 +454289|38001235963|2 +457540|38001236448|2 +662970|38001236516|2 +751106|38001236563|2 +888087|38001236570|2 +679406|38001236638|2 +854863|38001236639|2 +490223|38001236653|2 +785346|38001237053|2 +830391|38001237060|4 +569094|38001237253|2 +519463|38001237569|2 +582718|38001237575|2 +805201|38001237749|2 +621077|38001238128|2 +719179|38001238130|2 +800852|38001238134|2 +606184|38001238146|2 +610938|38001238147|2 +667885|38001238306|2 +544235|38001238771|2 +878500|38001238814|2 +469842|38001238818|2 +521896|38001239306|2 +595952|38001239337|2 +613215|38001239338|2 +737092|38001239344|2 +829769|38001239358|4 +647310|38001239416|2 +620434|38001239597|2 +885299|38001239598|2 +894532|38001239599|2 +512151|38001239740|2 +870300|38001239982|2 +653320|38001239985|2 +517643|38001240160|2 +602652|38001240320|2 +641592|38001240412|2 +692413|38001240508|2 +868319|38001240512|2 +649427|38001240670|2 +577092|38001240739|2 +594045|38001240744|2 +581065|38001240800|2 +546991|38001240957|2 +653322|38001241593|2 +675657|38001241594|2 +506099|38001241643|2 +772350|38001241836|2 +827838|38001242141|4 +845340|38001242193|2 +847838|38001242228|2 +662494|38001242430|2 +548529|38001242760|2 +583376|38001242787|2 +619395|38001242795|2 +604237|38001242802|2 +604261|38001242819|2 +557062|38001242821|2 +637540|38001242827|2 +756636|38001242833|2 +684294|38001242919|2 +793165|38001242921|2 +611869|38001243079|2 +556215|38001243132|2 +621063|38001243298|2 +683979|38001243337|2 +520177|38001243384|2 +547170|38001243517|2 +774920|38001243541|2 +748422|38001243600|2 +897370|38001243873|2 +465382|38001243996|2 +633271|38001244096|2 +525734|38001244262|2 +827511|38001244263|4 +1166108|38001244268|2 +856516|38001244362|2 +856517|38001244363|2 +875413|38001244365|2 +681615|38001244472|2 +515309|38001244678|2 +793172|38001244687|2 +651309|38001244746|2 +540058|38001244749|2 +892202|38001244782|2 +618229|38001244900|2 +880579|38001245107|2 +490389|38001245241|2 +828605|38001245280|4 +471244|38001245404|2 +495877|38001245552|2 +772659|38001245571|2 +478019|38001245686|2 +772912|38001245690|4 +753325|38001245935|2 +707671|38001246082|2 +1122473|38001246088|2 +561063|38001246128|2 +541962|38001246245|2 +534958|38001246288|2 +660789|38001246302|2 +594052|38001246446|2 +805888|38001246641|2 +540588|38001247062|2 +586262|38001247070|2 +798130|38001247203|2 +757601|38001247272|2 +878640|38001247275|2 +887126|38001247373|2 +749664|38001247387|2 +522279|38001247737|2 +533506|38001248096|2 +713296|38001248150|2 +1259632|38001248712|2 +668293|38001248733|2 +553031|38001248781|2 +705896|38001248782|2 +851629|38001248783|2 +652372|38001248974|2 +573512|38001249065|2 +726565|38001249148|2 +839124|38001249151|4 +893130|38001249152|2 +838166|38001249331|4 +740195|38001249343|2 +688316|38001249380|2 +476528|38001249586|2 +713295|38001249723|2 +752112|38001249725|4 +774276|38001249931|2 +769694|38001250053|2 +769695|38001250055|2 +832399|38001250056|4 +664457|38001250157|2 +791515|38001250195|4 +538735|38001250289|2 +660427|38001250485|2 +840107|38001250488|4 +555449|38001250645|2 +718034|38001250651|2 +654730|38001250767|2 +620311|38001251686|2 +731372|38001251946|2 +751626|38001251949|2 +837027|38001252049|4 +522913|38001252224|2 +468123|38001252348|2 +830287|38001252357|4 +637422|38001252421|2 +861130|38001252656|2 +573705|38001252732|2 +668678|38001252735|2 +735922|38001252737|2 +889269|38001252743|2 +570277|38001252781|2 +652129|38001252910|2 +648065|38001253231|2 +852248|38001253446|2 +581785|38001253625|2 +582895|38001253627|2 +583005|38001253629|2 +630915|38001253660|2 +697954|38001253664|2 +782116|38001253710|2 +491719|38001253784|2 +570735|38001254055|2 +481140|38001254205|2 +547623|38001254491|2 +744925|38001254655|2 +523014|38001255130|2 +579305|38001255137|2 +848898|38001255154|2 +882221|38001255155|2 +800652|38001255290|2 +875008|38001255853|2 +1127911|38001255862|2 +1165889|38001255865|2 +484540|38001256075|2 +578249|38001256076|2 +719780|38001256226|2 +730266|38001256298|2 +829457|38001256304|4 +598307|38001256433|2 +692945|38001256601|2 +1127912|38001256876|2 +479076|38001256878|2 +865005|38001257124|2 +668163|38001257219|2 +759846|38001257258|2 +685668|38001257268|2 +519267|38001257336|2 +461456|38001257518|2 +797974|38001257521|2 +736653|38001257592|2 +797928|38001257677|2 +596080|38001258072|2 +643672|38001258073|2 +772886|38001258162|2 +655745|38001258395|2 +662567|38001258492|2 +614757|38001258974|2 +487782|38001259154|2 +620897|38001259291|2 +764345|38001259411|2 +478270|38001259447|2 +679274|38001259515|2 +733168|38001259536|2 +689492|38001259537|2 +556224|38001259670|2 +794867|38001260001|2 +886963|38001260287|2 +451800|38001260799|2 +469335|38001260810|2 +476417|38001260812|2 +478672|38001260813|2 +852001|38001260815|2 +615487|38001260820|2 +511837|38001260869|2 +505486|38001260872|2 +529963|38001260881|2 +674756|38001261018|2 +562694|38001261070|2 +569060|38001261134|2 +494945|38001261564|2 +594391|38001261570|2 +601240|38001261575|2 +607401|38001261582|2 +611317|38001261587|2 +657816|38001261662|2 +679352|38001261703|2 +720958|38001261707|2 +729873|38001261712|2 +735949|38001261861|2 +759402|38001261907|2 +762251|38001261909|2 +765096|38001261912|2 +783348|38001261914|2 +803806|38001261950|2 +846604|38001262063|2 +864808|38001262066|2 +873447|38001262072|2 +902135|38001262089|2 +677999|38001262355|2 +671760|38001262542|2 +671724|38001262544|2 +851631|38001262549|2 +547218|38001262628|2 +590299|38001262930|2 +587269|38001262931|2 +514699|38001262932|2 +455049|38001262933|2 +604182|38001262939|2 +651615|38001263340|2 +726313|38001263435|2 +650147|38001263558|2 +687629|38001263561|2 +663004|38001263735|2 +651966|38001263851|2 +463061|38001263852|2 +601658|38001263857|2 +849357|38001263973|2 +733634|38001263982|2 +554807|38001263984|2 +580849|38001263991|2 +483343|38001263995|2 +858999|38001263996|2 +611776|38001264014|2 +462981|38001264333|2 +882356|38001264536|2 +889681|38001264537|2 +616336|38001264779|2 +693316|38001264891|2 +710798|38001264941|2 +855907|38001264950|2 +770790|38001265080|2 +647314|38001265234|2 +884865|38001265333|2 +519710|38001265435|2 +705001|38001265437|2 +517336|38001265439|2 +852968|38001265760|2 +808721|38001265964|2 +466242|38001266228|2 +478944|38001266303|2 +481157|38001266305|2 +747437|38001266419|2 +485424|38001266475|4 +456101|38001266496|2 +1188564|38001266509|2 +870282|38001266584|2 +894616|38001266587|2 +745305|38001266795|2 +748465|38001266796|2 +771288|38001266798|2 +501242|38001267713|2 +803510|38001267974|2 +865096|38001267977|2 +479287|38001268006|2 +528200|38001268008|2 +579899|38001268009|2 +592123|38001268138|2 +675449|38001268147|2 +698180|38001268149|2 +572782|38001268231|2 +629704|38001268232|2 +507936|38001268284|2 +672067|38001268286|2 +726315|38001268287|2 +885516|38001268303|2 +1105395|38001268316|2 +616941|38001268320|2 +694790|38001268363|2 +533559|38001268404|2 +870301|38001268450|2 +1056072|38001268469|2 +1027620|38001268485|2 +528125|38001268675|2 +718605|38001268677|2 +847960|38001268680|2 +847953|38001268703|2 +541285|38001268728|2 +760898|38001268733|2 +604262|38001268734|2 +615530|38001269271|2 +638963|38001269277|2 +470203|38001269340|2 +490263|38001269341|2 +885419|38001269383|2 +895440|38001269388|2 +735683|38001269426|2 +645935|38001269475|2 +479250|38001269476|2 +479216|38001269477|2 +709417|38001269479|2 +889342|38001269517|2 +480036|38001269666|2 +557568|38001269819|2 +547607|38001269865|2 +889168|38001269868|2 +465046|38001270051|2 +864964|38001270101|2 +1120865|38001270224|2 +860657|38001270872|2 +706510|38001271123|2 +513155|38001271153|2 +502510|38001271339|2 +633104|38001271341|2 +609596|38001271400|4 +650455|38001271509|2 +642627|38001271636|2 +570887|38001271651|4 +840679|38001271768|2 +573713|38001272013|2 +669730|38001272182|2 +669744|38001272183|2 +523833|38001272578|2 +540560|38001272586|2 +739303|38001272589|2 +803338|38001272590|2 +561445|38001272591|2 +556591|38001272594|2 +863667|38001272597|2 +627790|38001273215|2 +539988|38001273352|2 +544136|38001273356|2 +627800|38001273362|2 +846769|38001273365|4 +795553|38001273439|2 +468574|38001273461|2 +563601|38001273565|2 +702961|38001273620|2 +623124|38001274060|2 +879503|38001274091|2 +898706|38001274093|2 +838406|38001274095|4 +1256616|38001274149|2 +708571|38001274214|2 +524130|38001274224|2 +851770|38001274248|2 +544139|38001274407|2 +467129|38001274660|2 +498539|38001275022|2 +512387|38001275171|2 +544056|38001275173|2 +591836|38001275175|4 +655271|38001275182|2 +720160|38001275185|2 +761193|38001275189|2 +790913|38001275190|2 +889215|38001275191|2 +498540|38001275252|2 +457310|38001275382|2 +860632|38001275387|2 +886444|38001275398|2 +601667|38001275409|2 +586658|38001275447|2 +603590|38001275467|2 +882661|38001275472|2 +877607|38001275473|2 +776518|38001275596|2 +776562|38001275598|2 +490264|38001275617|2 +754754|38001275970|2 +780940|38001276881|2 +706581|38001277309|2 +871300|38001277310|2 +774337|38001277639|2 +627825|38001277662|2 +720302|38001277665|2 +858302|38001277667|2 +672834|38001277693|2 +650968|38001277908|2 +538694|38001280329|2 +762947|38001280351|2 +792530|38001280638|2 +478025|38001280644|2 +540517|38001280649|2 +859269|38001280686|2 +498391|38001280705|2 +737469|38001280848|2 +732855|38001280970|2 +853325|38001280975|2 +697730|38001280990|2 +796627|38001280994|2 +665069|38001281101|2 +573722|38001281194|2 +751093|38001281217|2 +475879|38001281230|2 +1156778|38001281235|2 +728239|38001281363|2 +781355|38001281516|2 +693837|38001282652|2 +693925|38001282655|2 +808731|38001282659|2 +549798|38001282675|2 +714034|38001282678|2 +869776|38001282720|2 +591417|38001282729|2 +740567|38001283583|2 +842609|38001283591|2 +856365|38001283822|2 +534438|38001283826|2 +501486|38001283839|2 +531451|38001284695|2 +722674|38001284702|2 +769322|38001284704|2 +762492|38001285099|2 +530305|38001285118|2 +805657|38001285142|2 +475741|38001285143|2 +729292|38001285150|2 +618277|38001285151|2 +473498|38001285152|2 +513659|38001285179|2 +743193|38001285180|2 +878669|38001285182|2 +603070|38001285209|2 +882043|38001285236|2 +475897|38001285248|2 +576550|38001285311|2 +833739|38001285319|4 +854194|38001285324|2 +757502|38001285359|2 +659177|38001285388|2 +475901|38001285475|2 +533411|38001285492|2 +638522|38001285522|2 +876140|38001285526|2 +551057|38001285551|2 +472879|38001285591|2 +534699|38001285593|2 +506010|38001285878|2 +537637|38001285885|2 +646767|38001285897|2 +698883|38001287705|2 +862484|38001287727|2 +591554|38001287935|2 +754049|38001287966|2 +465761|38001287971|2 +688891|38001288083|2 +605921|38001288089|2 +877885|38001288336|2 +697812|38001288342|2 +509925|38001288381|2 +606016|38001288385|2 +471843|38001288389|2 +902365|38001288394|2 +462465|38001288408|2 +530227|38001288439|2 +518990|38001288489|2 +720230|38001288513|2 +613214|38001288629|2 +752766|38001288768|2 +471850|38001288814|2 +458344|38001288842|2 +875283|38001288855|2 +455304|38001288863|2 +779092|38001288865|2 +662718|38001288956|2 +494480|38001288966|2 +805296|38001288985|2 +885037|38001289002|2 +552847|38001289008|2 +452834|38001289015|2 +584489|38001289026|2 +549643|38001289629|2 +604008|38001289668|2 +616796|38001289672|2 +762260|38001289687|2 +774191|38001289690|2 +780762|38001289691|2 +878946|38001289865|2 +928894|38001289876|2 +962182|38001289892|2 +1257853|38001290020|2 +867676|38001290335|2 +872649|38001291602|2 +1258120|38001292994|2 +507640|38001294271|2 +534933|38001295054|2 +479276|38001295056|2 +887313|38001295057|2 +882321|38001295229|2 +633361|38001295540|2 +515744|38001295933|2 +841480|38001295936|2 +504990|38001296237|2 +829252|38001296239|4 +724104|38001296371|2 +859346|38001296374|2 +675807|38001296399|2 +628346|38001296582|2 +544561|38001296698|2 +795215|38001296708|2 +761637|38001297186|2 +697121|38001297448|2 +546145|38001297665|2 +851851|38001298076|2 +545482|38001298219|2 +752061|38001298409|2 +717914|38001298523|2 +544574|38001298580|2 +887282|38001298582|2 +453233|38001299076|2 +807261|38001299079|2 +595638|38001299248|2 +638494|38001299251|2 +633463|38001299510|2 +664906|38001299511|2 +508400|38001299713|2 +733633|38001299714|2 +849760|38001299902|2 +736652|38001300014|2 +747337|38001300017|2 +579204|38001300123|2 +583663|38001300367|2 +792257|38001300432|2 +596255|38001300436|2 +636268|38001300554|2 +807485|38001300735|2 +803874|38001300834|2 +652454|38001300843|2 +737694|38001301100|2 +474892|38001301375|2 +801874|38001301382|2 +784541|38001301574|2 +617330|38001301658|2 +1188135|38001301744|2 +705262|38001302202|2 +841508|38001302399|2 +538349|38001302647|2 +662370|38001302668|2 +675130|38001302712|2 +652737|38001302987|2 +588187|38001303047|4 +786389|38001303389|2 +843920|38001303492|2 +459251|38001303610|2 +795610|38001303794|2 +483287|38001303912|2 +832403|38001304456|4 +754841|38001304510|2 +856603|38001304527|2 +753161|38001304776|2 +720140|38001304973|2 +888132|38001304977|2 +892014|38001305304|2 +706781|38001305326|2 +761739|38001305455|2 +871500|38001305469|2 +598306|38001306054|2 +633298|38001306172|2 +633299|38001306174|2 +595017|38001306250|2 +878203|38001306252|2 +573727|38001306375|2 +558023|38001306377|2 +714848|38001306381|2 +771564|38001306382|2 +886721|38001306383|2 +672592|38001306485|2 +769481|38001306486|2 +819810|38001306519|4 +858303|38001306527|2 +696952|38001306619|2 +555257|38001306858|2 +706155|38001306865|2 +736559|38001306867|2 +921737|38001306876|2 +507893|38001306947|2 +1042637|38001306961|2 +625839|38001307037|2 +480087|38001307292|2 +867048|38001307298|2 +896654|38001307344|2 +638369|38001307448|2 +758084|38001307601|2 +521193|38001307630|2 +594991|38001308084|2 +469336|38001308104|2 +498381|38001308202|2 +806524|38001308235|2 +746065|38001308532|2 +856618|38001308533|2 +499980|38001308535|2 +1166109|38001308539|2 +808058|38001308683|2 +689774|38001308728|4 +727609|38001308732|2 +789940|38001308733|2 +865073|38001309040|2 +642269|38001309041|2 +744449|38001309044|2 +764634|38001309134|2 +777006|38001309234|2 +697815|38001309352|2 +712907|38001309458|2 +853271|38001309467|2 +788093|38001309918|2 +798191|38001309919|2 +863957|38001310059|2 +840155|38001310103|4 +549671|38001310124|2 +481158|38001310204|2 +784258|38001310219|2 +861200|38001310221|2 +735480|38001310575|2 +462104|38001310940|2 +560764|38001311079|2 +507531|38001311145|2 +566599|38001311151|2 +584796|38001311155|2 +580111|38001311240|2 +648570|38001311552|2 +688592|38001311554|2 +759568|38001312064|2 +587137|38001312215|2 +474136|38001312505|4 +569266|38001312507|2 +653516|38001312606|2 +829768|38001312888|4 +883213|38001312984|4 +652862|38001313040|2 +800775|38001313220|2 +686148|38001313359|2 +842248|38001313428|2 +849722|38001313429|2 +607397|38001313500|2 +807491|38001313532|2 +689263|38001313772|2 +569138|38001313923|2 +847472|38001313927|2 +553275|38001314041|2 +671523|38001314099|2 +755260|38001314258|2 +722423|38001314490|2 +852002|38001314867|2 +625284|38001314880|2 +682733|38001315344|2 +789923|38001315348|2 +609332|38001315483|2 +514320|38001315634|2 +657745|38001315717|2 +451890|38001316039|2 +652314|38001316044|2 +758044|38001316046|2 +864474|38001316060|2 +533252|38001316123|2 +833608|38001316206|4 +885433|38001316208|2 +711345|38001316833|2 +860687|38001316861|2 +643895|38001317083|2 +563035|38001317176|2 +844050|38001317520|2 +640243|38001317788|2 +990002|38001317796|2 +594390|38001318445|2 +570862|38001318468|4 +476577|38001318588|2 +720640|38001318589|2 +845283|38001318590|2 +752739|38001318608|2 +585644|38001318898|2 +747317|38001319064|2 +583412|38001319191|2 +488468|38001319300|2 +609359|38001319306|2 +1188774|38001319329|2 +507259|38001319433|4 +722616|38001319437|2 +876878|38001319911|2 +510858|38001320064|2 +871460|38001320070|2 +887294|38001320071|2 +735584|38001320144|2 +786021|38001320350|2 +587421|38001320486|2 +726528|38001320518|2 +756167|38001320519|2 +454693|38001320739|2 +545031|38001320740|2 +515532|38001320863|2 +781854|38001320878|2 +787345|38001320880|2 +896701|38001320903|2 +875632|38001321059|2 +615899|38001321061|2 +876800|38001321281|2 +658497|38001321553|2 +722818|38001321645|2 +859809|38001321646|2 +452619|38001321799|2 +490390|38001322138|2 +888453|38001322151|2 +801125|38001322485|2 +873612|38001322592|2 +465462|38001322791|2 +532979|38001323059|2 +1092564|38001323083|2 +567123|38001323375|2 +801241|38001323386|2 +523950|38001323578|2 +653230|38001323661|2 +521194|38001323736|2 +851748|38001323741|2 +1166708|38001323783|2 +492174|38001323812|2 +508276|38001323892|2 +645310|38001323935|2 +919590|38001324044|2 +452835|38001324120|2 +745889|38001324124|2 +637649|38001324250|2 +502550|38001324446|2 +835519|38001324456|4 +897313|38001324537|2 +534181|38001324637|2 +758200|38001325151|2 +722599|38001325632|2 +556468|38001325658|2 +879028|38001325932|2 +720685|38001326011|2 +806220|38001326086|2 +890458|38001326100|2 +703711|38001326410|2 +796352|38001326456|2 +506373|38001326468|2 +582851|38001326473|2 +822354|38001326586|2 +873949|38001326588|2 +725942|38001326619|2 +628522|38001326752|2 +801181|38001326757|2 +871429|38001327051|2 +679359|38001327255|2 +878428|38001327256|4 +593735|38001327284|2 +696915|38001327286|2 +830439|38001327288|4 +900564|38001327289|2 +558047|38001327386|2 +638289|38001327512|2 +471295|38001327601|2 +539399|38001327785|2 +833469|38001328012|4 +896612|38001328108|2 +739236|38001328295|2 +625293|38001328736|2 +871461|38001328808|2 +491080|38001328943|2 +584664|38001328945|2 +854205|38001328971|2 +787841|38001329130|2 +539070|38001329253|2 +528529|38001329293|2 +748865|38001329449|2 +556367|38001329741|2 +894992|38001329950|2 +640236|38001330016|2 +627209|38001330023|2 +603532|38001330206|2 +708418|38001330520|2 +787938|38001330525|2 +483286|38001330942|2 +692407|38001331187|2 +833740|38001331196|4 +482300|38001331222|2 +762374|38001331237|2 +580087|38001331268|2 +649768|38001331273|2 +729432|38001331285|2 +715094|38001331438|2 +713184|38001331520|2 +878204|38001331543|2 +530224|38001331619|2 +831944|38001331622|4 +894962|38001331688|2 +621228|38001331693|2 +688587|38001331939|2 +777735|38001331942|2 +507752|38001332009|2 +878010|38001332137|2 +760636|38001332281|2 +886379|38001332450|2 +706455|38001332953|2 +870294|38001332958|2 +587845|38001333187|2 +847923|38001333198|2 +744806|38001333208|2 +670463|38001333255|2 +664651|38001333429|2 +650194|38001333494|2 +864536|38001333759|2 +458264|38001333841|2 +462356|38001333844|2 +629523|38001334304|2 +710972|38001334310|2 +765794|38001334311|2 +864608|38001334313|2 +609898|38001334334|2 +781268|38001334337|2 +1264595|38001334966|2 +753274|38001335354|2 +496607|38001335474|2 +554808|38001335475|2 +518094|38001335540|2 +611726|38001335545|2 +650965|38001335553|2 +750116|38001335557|2 +992767|38001335914|2 +879532|38001336298|2 +581553|38001336601|2 +874145|38001336605|2 +807836|38001336756|2 +729148|38001336857|2 +720946|38001337116|2 +832275|38001337135|4 +513169|38001337550|2 +667135|38001337765|2 +785225|38001337785|2 +761636|38001338017|2 +892929|38001338360|4 +460168|38001338960|2 +664652|38001340212|2 +510775|38001340335|2 +510859|38001340422|2 +522726|38001340423|2 +629404|38001340426|2 +807411|38001340431|2 +536090|38001340502|2 +594581|38001340777|2 +835083|38001340778|2 +610016|38001340859|2 +781981|38001341188|2 +616181|38001341219|2 +561360|38001341260|2 +584371|38001341265|2 +525780|38001341435|2 +730835|38001341440|4 +870024|38001341506|2 +718629|38001341563|2 +579587|38001341764|2 +517337|38001342011|2 +733904|38001342018|2 +869245|38001342403|2 +507748|38001342647|2 +610902|38001342649|2 +610903|38001342651|2 +833919|38001342654|4 +486844|38001342874|2 +661089|38001342879|2 +471326|38001342975|2 +682409|38001343036|2 +877139|38001343040|2 +759558|38001343143|2 +647787|38001343384|2 +731357|38001343391|2 +1116919|38001343401|2 +828714|38001343623|4 +862032|38001343684|2 +637281|38001344424|2 +615761|38001344662|2 +484193|38001344986|2 +713741|38001344988|2 +548295|38001344997|2 +553735|38001344998|2 +642559|38001345172|2 +869800|38001345208|2 +661387|38001345294|2 +833317|38001345295|6 +556609|38001345467|2 +746543|38001345472|2 +586589|38001345821|2 +702757|38001346036|2 +661898|38001346847|2 +470188|38001347160|2 +857429|38001347162|2 +611175|38001347279|2 +730349|38001347280|2 +857430|38001347281|2 +876947|38001347363|2 +866023|38001347436|2 +531513|38001347545|2 +807711|38001347700|2 +858102|38001347705|2 +598207|38001347761|2 +468541|38001347882|2 +537410|38001348051|2 +603939|38001348055|2 +615780|38001348057|2 +628674|38001348060|2 +721338|38001348131|2 +793641|38001348132|2 +838719|38001348175|4 +462140|38001348176|2 +626208|38001348177|4 +841458|38001348178|2 +710879|38001348204|2 +777050|38001348263|2 +858137|38001348267|2 +556667|38001348282|2 +621412|38001348551|2 +602863|38001349470|2 +792904|38001349688|2 +454823|38001350377|2 +781847|38001351069|2 +828330|38001351072|4 +697044|38001351374|2 +518515|38001351824|2 +777787|38001351828|2 +801443|38001351836|2 +876831|38001351952|2 +891556|38001352108|2 +839701|38001353156|4 +832410|38001353158|4 +904321|38001353159|2 +685978|38001353634|4 +744476|38001353870|2 +744523|38001353871|2 +607878|38001353937|2 +591205|38001354002|2 +661048|38001354003|2 +751808|38001354051|2 +891581|38001354129|2 +891557|38001354130|2 +527398|38001354161|2 +663719|38001354162|2 +806270|38001354163|2 +750496|38001354170|2 +759900|38001354252|2 +676517|38001354312|2 +831885|38001354328|4 +990449|38001354329|2 +581613|38001354344|2 +836720|38001354378|4 +755237|38001354466|2 +612123|38001354469|2 +495255|38001354474|2 +703299|38001354496|2 +866112|38001354506|2 +537481|38001354507|2 +657774|38001354567|2 +870292|38001354576|2 +629525|38001354835|2 +517074|38001355015|2 +540268|38001355025|2 +506841|38001355133|2 +556302|38001355135|2 +564526|38001355137|2 +652262|38001355145|2 +831603|38001355158|4 +841905|38001355159|2 +852035|38001355160|2 +888146|38001355163|2 +767019|38001355268|2 +453153|38001355752|2 +629764|38001355923|2 +656065|38001355925|2 +700316|38001355926|2 +652225|38001357651|2 +728353|38001357671|2 +515329|38001358110|2 +705927|38001358112|2 +767165|38001358133|2 +780933|38001358140|2 +899235|38001358196|2 +729168|38001358325|2 +489400|38001358328|2 +893939|38001358652|2 +470949|38001358766|2 +715247|38001358767|2 +494199|38001358924|2 +547942|38001358926|2 +526533|38001359147|2 +592028|38001359149|2 +680309|38001359150|2 +807708|38001359152|2 +1123127|38001359156|2 +452836|38001359246|2 +694909|38001359311|2 +537022|38001359354|2 +526907|38001359435|2 +560439|38001359656|2 +772111|38001359672|2 +763991|38001359798|2 +830261|38001359801|4 +604457|38001359967|2 +650240|38001360063|2 +546794|38001360259|2 +452831|38001360353|2 +729003|38001360386|2 +873439|38001360616|2 +693383|38001360917|2 +469880|38001360956|2 +881712|38001361111|2 +481028|38001361163|2 +479923|38001361295|2 +888678|38001361370|2 +483920|38001361669|2 +532716|38001361670|2 +777007|38001361716|2 +577095|38001361861|2 +584385|38001361866|2 +537003|38001361983|2 +537927|38001361986|2 +758207|38001362073|2 +501156|38001362586|2 +1209990|38001362747|2 +552792|38001362759|2 +801875|38001362761|2 +854862|38001362855|2 +554094|38001363112|2 +702863|38001363302|2 +801126|38001363431|2 +649247|38001363600|2 +731254|38001363601|2 +764855|38001363859|2 +599567|38001363912|2 +848197|38001364023|2 +754062|38001364374|2 +721051|38001364462|2 +764385|38001364463|2 +543100|38001364680|2 +676763|38001364736|2 +461896|38001365020|2 +830315|38001365023|4 +633233|38001365348|2 +670792|38001365351|2 +721223|38001365363|2 +617328|38001365462|2 +579881|38001365629|2 +638294|38001365633|2 +622236|38001365928|2 +615639|38001365975|2 +865828|38001365976|2 +870906|38001366111|2 +866791|38001366163|2 +569011|38001366446|2 +769409|38001366448|2 +797113|38001366452|2 +759989|38001366648|2 +469031|38001366721|2 +893451|38001366723|2 +857677|38001367001|2 +807991|38001367163|2 +644255|38001367431|2 +846570|38001367441|2 +462903|38001367547|2 +681769|38001368168|2 +552522|38001368207|2 +607240|38001368209|2 +565602|38001368480|2 +777481|38001368699|2 +700116|38001368902|2 +479267|38001369077|2 +790829|38001369080|2 +1219490|38001369083|2 +457418|38001369151|2 +582860|38001369222|2 +581283|38001369377|2 +1253037|38001369487|2 +549782|38001369691|2 +855230|38001369693|2 +643066|38001369752|2 +769961|38001369974|2 +585243|38001370604|2 +656403|38001370670|2 +863487|38001370675|2 +844688|38001370976|2 +503973|38001371144|2 +760930|38001371801|2 +778680|38001371813|2 +540330|38001372017|2 +744794|38001372232|2 +848500|38001372282|2 +566040|38001372711|2 +705505|38001372726|2 +877806|38001372733|2 +574447|38001372845|2 +472475|38001372846|2 +793223|38001372848|2 +471289|38001373158|2 +894270|38001373163|2 +774011|38001373248|2 +801848|38001373253|2 +727055|38001373671|2 +557472|38001374197|2 +885894|38001374198|2 +759838|38001374265|2 +896655|38001374266|2 +501290|38001374541|2 +601241|38001374545|2 +624255|38001374546|2 +520676|38001374672|2 +688378|38001375057|2 +803461|38001375439|2 +565723|38001375625|2 +680310|38001375635|2 +1073447|38001375641|2 +770793|38001375712|2 +724278|38001376111|2 +688847|38001376280|2 +754840|38001376406|2 +583527|38001376819|2 +478377|38001376982|2 +732662|38001376990|2 +857664|38001376993|2 +741522|38001377090|2 +735951|38001377382|2 +827994|38001377385|4 +882288|38001377399|2 +756039|38001377613|2 +778731|38001377713|2 +746050|38001377789|2 +827731|38001377795|4 +861201|38001377898|2 +788899|38001377905|4 +686048|38001377915|2 +686049|38001377917|2 +576576|38001378127|2 +494312|38001378227|2 +774137|38001378275|2 +497865|38001378555|2 +787962|38001378563|2 +798680|38001378569|2 +798092|38001378863|2 +722985|38001379026|2 +853663|38001379028|2 +832659|38001379171|4 +734286|38001379241|2 +839174|38001379304|4 +876106|38001379356|2 +676123|38001379736|2 +742311|38001379754|2 +880147|38001379799|2 +789318|38001380034|2 +626461|38001380194|2 +830387|38001380403|4 +577755|38001380513|2 +898605|38001380514|2 +615523|38001380588|2 +460319|38001380589|2 +710576|38001380822|2 +861958|38001380866|2 +510539|38001380939|2 +840162|38001380941|4 +857398|38001380967|2 +769990|38001380985|2 +891147|38001381159|2 +762152|38001381171|2 +643087|38001381483|2 +656647|38001381580|2 +833596|38001381581|4 +752887|38001381625|2 +455402|38001381815|2 +533346|38001382126|2 +523688|38001382223|2 +753650|38001382225|2 +538175|38001382251|2 +772660|38001382253|2 +873982|38001382370|2 +707712|38001382656|2 +707729|38001382658|2 +484012|38001382757|2 +769598|38001382764|2 +884043|38001382765|2 +555222|38001383089|2 +666844|38001383099|2 +707703|38001383135|2 +734461|38001383234|2 +896776|38001383417|2 +730449|38001383563|2 +758205|38001383619|2 +587316|38001383620|2 +894178|38001383689|2 +463663|38001384070|2 +599486|38001384080|2 +577675|38001384371|2 +496292|38001384479|2 +627948|38001384602|2 +704982|38001384730|2 +489936|38001385023|2 +479470|38001385275|2 +535653|38001385280|2 +515330|38001385399|2 +476179|38001385547|2 +584164|38001385720|2 +649606|38001385721|2 +688558|38001385724|2 +672091|38001385727|2 +585072|38001385921|2 +764005|38001385932|2 +584756|38001385998|2 +880853|38001386192|2 +565605|38001386261|2 +454016|38001386796|2 +660645|38001386810|2 +678186|38001386813|2 +829464|38001386916|4 +473668|38001387015|2 +626354|38001387124|2 +859427|38001387155|2 +873448|38001387156|2 +510335|38001387189|2 +838318|38001387353|4 +858078|38001387354|2 +869643|38001387355|2 +1097765|38001387486|2 +795559|38001387545|2 +893758|38001387757|2 +654663|38001387765|2 +499016|38001387787|2 +631976|38001388033|2 +850969|38001388045|2 +664434|38001388405|2 +762946|38001388527|2 +783899|38001388632|2 +525564|38001388834|2 +725332|38001388986|2 +661327|38001389142|2 +683992|38001389349|2 +460659|38001389582|2 +613607|38001389584|2 +733482|38001389587|2 +693911|38001389663|2 +633707|38001389687|2 +725327|38001389952|2 +876156|38001390041|2 +458514|38001390198|2 +666859|38001390204|2 +830394|38001390319|4 +791641|38001390366|2 +599699|38001390666|2 +709136|38001391659|2 +619716|38001391932|2 +647260|38001392156|2 +703883|38001392401|2 +732367|38001392402|2 +877474|38001392403|2 +894258|38001392588|2 +680593|38001392751|2 +506999|38001392843|2 +753195|38001393038|2 +893617|38001393072|2 +747033|38001393102|2 +661049|38001393255|2 +508158|38001393334|2 +809467|38001393337|2 +863489|38001393380|2 +863838|38001393534|2 +532397|38001393540|2 +757842|38001393663|2 +884025|38001393664|2 +696984|38001393888|2 +897397|38001393889|2 +715873|38001394043|2 +532687|38001394071|2 +677591|38001394579|2 +759337|38001394584|2 +501128|38001394745|2 +880770|38001394750|2 +764747|38001394829|2 +685710|38001394866|2 +802984|38001394916|2 +706964|38001395193|2 +637408|38001395195|2 +801673|38001395696|2 +677609|38001396194|2 +866858|38001396199|2 +720065|38001396202|2 +1256757|38001396336|2 +669839|38001396768|2 +893675|38001396770|2 +713378|38001397398|2 +803179|38001397400|2 +492762|38001397685|2 +789492|38001397686|2 +871397|38001397690|2 +657902|38001397963|2 +769649|38001397966|2 +805081|38001397967|2 +521035|38001398052|2 +476051|38001398449|2 +476535|38001398458|2 +881401|38001398463|2 +497176|38001398464|2 +723630|38001398524|2 +645217|38001398548|2 +676154|38001398565|2 +527073|38001398773|2 +606938|38001398787|2 +611870|38001398820|2 +727929|38001398826|2 +639978|38001398979|2 +779696|38001399794|2 +843884|38001400258|2 +739634|38001400269|2 +647891|38001402072|2 +609454|38001402074|2 +457324|38001403369|2 +472487|38001403370|4 +498471|38001403371|2 +509824|38001403372|2 +520610|38001403373|2 +521171|38001403374|2 +523331|38001403375|2 +527736|38001403376|2 +567992|38001403377|2 +562695|38001403378|2 +568202|38001403591|2 +576459|38001403594|2 +580840|38001403597|2 +591690|38001403601|2 +601675|38001403602|2 +614392|38001403604|2 +614478|38001403607|2 +624274|38001403608|2 +650523|38001403613|2 +677614|38001403616|2 +660223|38001403618|2 +494517|38001403627|2 +692984|38001403634|2 +611778|38001403635|2 +720309|38001403637|2 +725638|38001403671|2 +732001|38001403676|2 +734268|38001403677|2 +750680|38001403678|2 +753621|38001403679|2 +767851|38001403683|2 +787480|38001403699|2 +833741|38001403707|4 +700361|38001403728|2 +805917|38001403749|2 +683121|38001403791|2 +881802|38001403794|2 +798899|38001403795|2 +648050|38001403803|2 +602957|38001403804|2 +790874|38001403810|2 +480184|38001403813|2 +789320|38001403855|2 +565997|38001403868|2 +831237|38001403883|4 +621649|38001403886|2 +588231|38001403888|2 +625331|38001403890|2 +666669|38001403891|2 +741179|38001403892|2 +485739|38001404225|2 +653451|38001404226|2 +756945|38001404228|2 +596235|38001404229|2 +778983|38001404238|2 +460410|38001404259|2 +689930|38001404261|2 +686305|38001404277|2 +775836|38001404302|2 +533342|38001404341|2 +459805|38001404362|2 +568437|38001404498|2 +867878|38001404537|2 +600244|38001404877|2 +493337|38001405195|2 +582730|38001405196|2 +532211|38001405769|2 +485745|38001405770|2 +586784|38001405783|2 +656519|38001405788|2 +797205|38001405810|2 +628901|38001406094|2 +629908|38001406095|2 +666632|38001406114|2 +733051|38001406122|2 +876802|38001406397|2 +476836|38001407149|2 +516593|38001407152|2 +516640|38001407153|2 +663226|38001407157|2 +706516|38001407162|2 +767691|38001407165|2 +834448|38001407168|2 +856056|38001407169|2 +760239|38001407703|2 +588151|38001407843|2 +612384|38001407901|4 +460648|38001407993|2 +846406|38001408010|2 +773486|38001408167|2 +580926|38001408178|2 +573768|38001408179|2 +527226|38001408195|2 +788851|38001408382|2 +535081|38001408631|2 +582634|38001408707|2 +739325|38001409014|2 +887653|38001409017|2 +990721|38001409020|2 +681191|38001409317|2 +681198|38001409318|2 +803183|38001409322|2 +643088|38001409939|2 +804061|38001409943|2 +829314|38001409945|4 +617378|38001410069|2 +900195|38001410070|2 +557469|38001410568|2 +611172|38001410589|2 +624615|38001410597|2 +764202|38001410606|2 +847925|38001411068|2 +515421|38001411070|2 +724423|38001411869|2 +805082|38001411953|2 +596452|38001412134|2 +638576|38001412147|2 +535130|38001412221|2 +467369|38001412281|2 +507221|38001412282|2 +532698|38001412284|2 +582952|38001412293|2 +607244|38001412298|2 +617268|38001412299|2 +647870|38001412300|2 +740831|38001412301|2 +792155|38001412304|2 +794479|38001412305|2 +803895|38001412307|2 +953293|38001412316|2 +499218|38001412439|2 +1252806|38001412459|2 +663274|38001412789|2 +728443|38001412790|2 +643091|38001412792|2 +783405|38001412794|2 +500900|38001412798|2 +503635|38001412800|2 +536793|38001412801|2 +884167|38001412803|2 +807733|38001412804|2 +626374|38001412805|2 +803192|38001412806|2 +755628|38001412928|2 +688569|38001412971|2 +507958|38001412999|2 +865915|38001413368|2 +469512|38001413383|2 +509290|38001413458|2 +725195|38001413584|2 +735744|38001413591|2 +779905|38001413592|2 +451876|38001415930|2 +469636|38001415935|2 +479025|38001415939|2 +493014|38001415945|2 +500856|38001415950|2 +536024|38001415959|2 +601458|38001415994|2 +614016|38001415997|2 +689723|38001416009|2 +725089|38001416012|2 +762392|38001416035|2 +767332|38001416039|2 +772377|38001416044|2 +791148|38001416046|2 +809408|38001416047|2 +809409|38001416050|2 +846718|38001416052|2 +846719|38001416053|2 +856683|38001416057|2 +864609|38001416686|2 +493164|38001416701|2 +525963|38001416702|2 +553151|38001416703|2 +889332|38001416704|2 +615766|38001416706|2 +616231|38001416707|2 +636683|38001416709|2 +704181|38001416713|2 +778828|38001416714|2 +828673|38001416715|4 +829604|38001416716|4 +867286|38001416717|2 +888133|38001416718|2 +1084637|38001416725|2 +539583|38001416747|2 +537547|38001416749|2 +845350|38001416758|2 +887990|38001416760|2 +863537|38001416954|2 +472917|38001421180|2 +474806|38001421185|2 +474682|38001421190|2 +475703|38001421197|2 +478149|38001421200|2 +496781|38001421242|2 +502384|38001421268|2 +511810|38001421290|2 +516527|38001421301|2 +538170|38001421306|2 +548360|38001421309|2 +552380|38001421312|2 +612451|38001421448|2 +620461|38001421464|2 +621414|38001421467|2 +629532|38001421471|2 +632400|38001421473|2 +635869|38001421475|2 +643142|38001421481|2 +652508|38001421489|2 +661036|38001421492|2 +667786|38001421495|2 +689038|38001421515|2 +705504|38001421530|2 +711713|38001421562|2 +750814|38001421573|2 +756168|38001421577|2 +761526|38001421582|2 +630762|38001421823|2 +663720|38001422003|2 +788405|38001422045|2 +787343|38001422060|2 +791116|38001422072|2 +791150|38001422083|2 +807271|38001422090|2 +827517|38001422100|4 +843121|38001422109|2 +843378|38001422124|2 +880461|38001422155|2 +894035|38001422167|2 +756296|38001422295|2 +659482|38001422418|2 +544372|38001422700|2 +751776|38001422706|2 +1244481|38001423320|2 +649613|38001423758|2 +456276|38001424098|2 +641385|38001424099|2 +833318|38001424102|6 +485300|38001424322|2 +487411|38001424324|2 +490878|38001424326|2 +513164|38001424350|2 +531072|38001424361|2 +531749|38001424363|2 +535583|38001424370|2 +543098|38001424386|2 +552324|38001424408|4 +552657|38001424411|2 +560359|38001424416|2 +563033|38001424421|2 +571264|38001424429|2 +571277|38001424431|2 +581671|38001424435|2 +584645|38001424439|2 +585079|38001424442|2 +606804|38001424480|2 +618219|38001424483|2 +623125|38001424484|2 +625614|38001424615|2 +629723|38001424620|2 +638536|38001424623|2 +657013|38001424631|2 +657306|38001424633|2 +502363|38001424642|2 +662967|38001424645|2 +671182|38001424646|2 +688626|38001424652|2 +703300|38001424664|2 +724404|38001424684|2 +726646|38001424688|2 +729622|38001424689|2 +734615|38001424697|2 +741282|38001424702|2 +754251|38001424715|2 +754856|38001424716|2 +764360|38001424726|2 +767102|38001424730|2 +767741|38001424733|2 +779226|38001424736|2 +788346|38001424756|2 +789213|38001424779|2 +792156|38001424781|2 +793101|38001424851|2 +804529|38001424859|2 +807976|38001424879|2 +834308|38001424888|4 +857251|38001424902|2 +860694|38001424903|2 +867977|38001424908|2 +877387|38001424913|2 +883773|38001424920|2 +886833|38001424922|2 +869247|38001425265|2 +657359|38001425281|2 +850768|38001425282|2 +575133|38001425307|2 +665526|38001425312|2 +493230|38001425329|2 +733201|38001425331|2 +682288|38001425336|2 +688597|38001425337|2 +761136|38001425348|2 +699665|38001425388|2 +554546|38001425408|2 +742507|38001425418|2 +651706|38001425419|2 +489462|38001425443|2 +715568|38001425447|2 +785680|38001425464|2 +643050|38001425465|2 +483597|38001425473|2 +452832|38001425474|2 +493340|38001425476|2 +545786|38001425496|2 +560700|38001425499|2 +478710|38001425587|2 +504619|38001425589|2 +578365|38001425601|2 +595023|38001425603|2 +596832|38001425605|2 +615588|38001425638|2 +620857|38001425667|2 +622502|38001425677|2 +629555|38001425684|2 +633939|38001425689|2 +648020|38001425695|2 +661073|38001425711|2 +664573|38001425719|2 +682734|38001425733|2 +683923|38001425740|2 +698502|38001425755|2 +708443|38001425762|2 +769861|38001425808|2 +780491|38001425834|2 +792924|38001425872|2 +859604|38001425922|2 +863747|38001425926|2 +865071|38001425928|4 +781703|38001427357|2 +1168464|38001427708|2 +702288|38001427985|2 +768059|38001427988|2 +619438|38001428059|2 +629771|38001428061|2 +636360|38001428069|2 +761604|38001428093|2 +783398|38001428099|2 +790504|38001428103|2 +709600|38001429008|2 +745986|38001429040|2 +767129|38001429041|2 +623094|38001429099|2 +848408|38001429160|2 +693474|38001429280|2 +709976|38001429778|2 +755255|38001430317|2 +680671|38001430420|2 +675434|38001430427|2 +612381|38001432119|4 +591653|38001432120|2 +744358|38001432125|2 +843796|38001432131|2 +790867|38001432135|2 +825534|38001432136|4 +685711|38001432138|2 +768199|38001432140|2 +591452|38001432142|2 +640911|38001432145|2 +733660|38001432152|2 +636525|38001432154|2 +670155|38001432160|2 +610532|38001432161|2 +670156|38001432162|2 +596253|38001432163|2 +898221|38001432164|4 +640792|38001432165|2 +772788|38001432166|2 +498384|38001432168|2 +669307|38001432171|2 +462625|38001432173|2 +876790|38001432178|2 +460029|38001435103|2 +470950|38001435107|2 +471077|38001435108|2 +471296|38001435109|2 +472230|38001435112|2 +505469|38001435135|2 +522792|38001435154|2 +539455|38001435169|2 +561393|38001435209|2 +615740|38001435224|2 +638530|38001435226|2 +645033|38001435227|2 +650241|38001435229|2 +700114|38001435250|2 +703087|38001435275|2 +730311|38001435279|2 +741950|38001435360|2 +778751|38001435365|2 +787923|38001435377|2 +789384|38001435378|2 +802599|38001435382|2 +806569|38001435384|2 +809742|38001435387|2 +825651|38001435388|4 +843679|38001435392|2 +850406|38001435393|2 +864758|38001435396|2 +882038|38001435655|2 +1234640|38001435704|2 +611727|38001435952|2 +452822|38001436115|2 +510017|38001436124|2 +547668|38001436127|2 +574540|38001436131|2 +603995|38001436135|2 +604154|38001436136|2 +616234|38001436148|2 +633460|38001436150|2 +650233|38001436152|2 +677022|38001436153|2 +684806|38001436154|2 +607435|38001436343|2 +513302|38001436666|2 +637255|38001436667|2 +642541|38001436668|2 +733041|38001436680|2 +754846|38001436706|2 +876666|38001436718|2 +883128|38001436760|2 +882693|38001436761|2 +734513|38001437321|2 +773370|38001437328|2 +620018|38001437633|2 +529240|38001437699|2 +587658|38001437700|2 +587695|38001437702|2 +595243|38001437704|2 +660720|38001437747|2 +886238|38001437767|2 +558102|38001437887|2 +488775|38001438122|2 +528237|38001438125|2 +883892|38001438129|2 +653281|38001438299|2 +827768|38001438301|4 +538569|38001438565|2 +685908|38001438566|2 +752562|38001438705|2 +460175|38001439314|2 +885919|38001439315|2 +468486|38001439320|2 +582606|38001439322|2 +893665|38001439326|2 +617269|38001439443|2 +771576|38001439447|2 +734115|38001439711|2 +861957|38001439712|2 +768879|38001439781|2 +499323|38001439902|2 +554535|38001439904|2 +748086|38001439907|2 +598681|38001439908|2 +557188|38001440042|2 +875648|38001440047|2 +606411|38001440108|2 +646356|38001440201|2 +465552|38001440230|2 +647711|38001440245|2 +458519|38001440246|2 +624347|38001440360|2 +583146|38001440507|2 +562060|38001440857|2 +594747|38001440858|2 +896769|38001440867|2 +763992|38001441086|2 +582766|38001441255|2 +669821|38001441459|2 +565432|38001441708|2 +656801|38001441709|2 +869235|38001441948|2 +560126|38001441971|2 +649234|38001441981|2 +774138|38001441987|2 +575380|38001442069|2 +672467|38001442125|2 +648066|38001442305|2 +479258|38001442666|2 +701573|38001442684|2 +881998|38001442696|2 +893076|38001442698|2 +644932|38001442826|2 +581284|38001442869|2 +592096|38001442874|2 +834333|38001442876|2 +453911|38001442986|2 +827665|38001442987|4 +727031|38001442990|2 +849399|38001443147|2 +514845|38001443174|2 +559845|38001443491|2 +547392|38001443675|2 +656800|38001443678|2 +786022|38001443707|2 +841698|38001443920|2 +767933|38001443922|2 +1022121|38001443973|2 +536932|38001444056|2 +577674|38001444419|2 +789191|38001444420|2 +828374|38001444421|4 +838539|38001444609|4 +481352|38001445501|2 +506823|38001446477|2 +542254|38001446478|2 +591835|38001446479|4 +596829|38001446481|2 +596858|38001446482|2 +708208|38001446483|2 +621413|38001446484|2 +632921|38001446485|2 +661090|38001446488|2 +692619|38001446493|2 +710286|38001446551|2 +727987|38001446552|2 +740488|38001446553|2 +751624|38001446554|2 +757504|38001446557|2 +757750|38001446558|2 +769349|38001446559|2 +775954|38001446560|2 +783399|38001446561|2 +833198|38001446563|4 +842280|38001446565|2 +851868|38001446566|2 +865878|38001446568|2 +878205|38001446570|2 +897927|38001446571|2 +773759|38001446601|2 +897611|38001446611|2 +591214|38001446661|2 +585249|38001446663|2 +760637|38001446776|2 +477279|38001446839|2 +751829|38001446841|2 +525291|38001446857|2 +618645|38001446858|2 +752448|38001446859|2 +718268|38001446943|2 +511790|38001447092|2 +867216|38001447093|2 +679501|38001447173|2 +732631|38001447244|4 +754948|38001447374|2 +832941|38001447375|4 +570274|38001447562|2 +486264|38001447568|2 +598465|38001447577|2 +532413|38001447699|2 +879472|38001447700|2 +708665|38001447760|2 +856055|38001447867|2 +510616|38001447883|2 +550405|38001447902|2 +575154|38001447907|2 +652855|38001448019|2 +621251|38001448029|2 +707049|38001448035|2 +566805|38001448237|2 +786469|38001448245|2 +457416|38001448247|2 +732105|38001448337|2 +879771|38001448397|4 +608573|38001448446|2 +587506|38001448447|2 +615479|38001448650|2 +502918|38001448854|2 +850858|38001448856|2 +702139|38001448984|2 +711112|38001448986|2 +644052|38001448990|2 +731239|38001449025|2 +619256|38001449221|2 +858752|38001449232|2 +475077|38001449916|2 +579286|38001449930|2 +672847|38001449934|2 +656885|38001450012|2 +796556|38001450049|2 +480456|38001450060|2 +561728|38001450565|2 +763193|38001450568|2 +831025|38001450589|4 +752603|38001453440|2 +745910|38001453835|2 +753316|38001454078|2 +455272|38001454350|2 +462939|38001454383|2 +464924|38001454389|2 +475268|38001454596|2 +479879|38001454620|2 +494233|38001454650|2 +505094|38001454653|2 +508007|38001454656|2 +514706|38001454674|2 +514698|38001454676|2 +525772|38001454681|2 +527892|38001454684|2 +532398|38001454699|2 +540518|38001454703|2 +552170|38001454848|2 +573029|38001454850|2 +575952|38001454854|2 +599477|38001454862|2 +617052|38001454869|2 +617007|38001454870|2 +617470|38001454871|2 +624829|38001454877|2 +635373|38001454879|2 +637107|38001454882|2 +645368|38001454893|2 +669680|38001454904|2 +673288|38001454906|2 +687613|38001454916|2 +718925|38001454917|2 +731820|38001454918|2 +745326|38001454919|2 +766977|38001454920|2 +772206|38001454921|2 +787645|38001454972|2 +583857|38001454977|2 +789304|38001454979|2 +791784|38001455026|2 +829923|38001455030|4 +831914|38001455031|4 +851825|38001455032|2 +861464|38001455034|2 +864946|38001455035|2 +865973|38001455036|2 +879546|38001455037|2 +881152|38001455038|2 +886677|38001455039|2 +889128|38001455040|2 +894459|38001455042|2 +897024|38001455043|4 +1164087|38001455275|2 +808274|38001455295|2 +769997|38001455349|2 +557384|38001455454|2 +674750|38001455497|2 +865892|38001455500|2 +721177|38001455516|2 +544060|38001455519|2 +488044|38001455532|2 +828216|38001455595|4 +635868|38001455756|2 +741298|38001455767|2 +827792|38001455988|4 +507709|38001456111|2 +872968|38001456129|2 +524657|38001456530|2 +671524|38001456534|2 +735785|38001456545|2 +588546|38001456570|2 +636484|38001456582|2 +737193|38001456691|2 +471376|38001456694|2 +889323|38001457018|2 +726795|38001457114|2 +777129|38001457389|2 +783349|38001457392|2 +864170|38001457395|2 +474893|38001458015|2 +483749|38001458016|2 +635536|38001458019|2 +626294|38001458071|2 +688588|38001458077|2 +695183|38001458078|2 +742039|38001458084|2 +774207|38001458088|2 +795764|38001458089|4 +833651|38001458095|4 +888679|38001458108|2 +723915|38001458192|2 +882041|38001458194|2 +606145|38001458250|2 +858049|38001458255|2 +532628|38001458332|2 +605403|38001458335|2 +676716|38001458337|2 +714475|38001458588|2 +479261|38001458595|2 +554325|38001458596|2 +520654|38001458601|2 +607924|38001458638|2 +678005|38001458639|2 +647016|38001458647|2 +457596|38001458685|2 +686320|38001458689|2 +525784|38001458790|2 +704711|38001459108|2 +773154|38001459134|2 +854210|38001459762|2 +827149|38001459884|4 +890007|38001459885|2 +1127885|38001459923|2 +650915|38001459930|2 +594253|38001459932|2 +598084|38001460032|2 +695146|38001460295|2 +462960|38001460330|2 +774202|38001460333|2 +509345|38001460472|2 +623580|38001460473|2 +451879|38001460513|2 +806464|38001460590|2 +808367|38001460682|2 +716070|38001460683|2 +476357|38001460724|2 +796673|38001460811|2 +516059|38001460918|2 +552438|38001460922|2 +553793|38001460925|2 +761062|38001461152|2 +881262|38001461153|2 +673586|38001461183|2 +751885|38001461188|4 +770786|38001461335|2 +563083|38001461376|2 +869596|38001461378|2 +562535|38001461603|2 +861860|38001461665|2 +593953|38001461833|2 +763693|38001461934|2 +613506|38001462021|2 +618657|38001462026|2 +671729|38001462188|2 +723101|38001462190|2 +886788|38001462194|2 +590767|38001462240|2 +859158|38001462699|2 +487567|38001462931|2 +766955|38001462934|2 +873120|38001462940|2 +707298|38001463245|2 +692682|38001463321|2 +635114|38001464043|2 +861959|38001464051|2 +621293|38001464282|2 +453457|38001464380|2 +499026|38001464410|2 +873056|38001464416|2 +735275|38001464423|2 +860133|38001464511|2 +569058|38001464524|2 +487110|38001464668|2 +714503|38001464676|2 +868411|38001464691|2 +773776|38001464767|2 +856588|38001464769|2 +872077|38001465093|2 +878497|38001465375|2 +613313|38001465494|2 +1166110|38001465504|2 +613993|38001465540|4 +677186|38001465620|2 +773116|38001465906|2 +497757|38001466075|2 +656110|38001466162|2 +577753|38001466203|2 +480356|38001466549|2 +608252|38001466550|2 +669609|38001466555|2 +727854|38001468366|2 +583614|38001468368|2 +799300|38001468370|2 +881673|38001468379|2 +469586|38001468394|2 +488811|38001468411|2 +535435|38001468413|2 +790669|38001468415|2 +721855|38001468417|2 +740322|38001468418|2 +495043|38001468540|2 +521416|38001468572|2 +566822|38001468585|2 +828244|38001468888|4 +624261|38001468924|2 +735532|38001468954|2 +875933|38001469067|2 +582912|38001469152|2 +683742|38001469236|2 +561773|38001469411|2 +767096|38001469412|2 +745137|38001469469|2 +737715|38001469478|2 +1165137|38001469479|2 +773069|38001469480|2 +825500|38001469516|4 +681527|38001469694|2 +640478|38001469737|2 +650898|38001469997|2 +833103|38001470000|4 +467640|38001470009|4 +722638|38001470013|2 +849012|38001470312|2 +656886|38001470314|2 +872286|38001470526|2 +499488|38001470545|2 +557186|38001470549|2 +866122|38001470647|2 +688857|38001470663|2 +503486|38001470756|2 +561081|38001471158|2 +540519|38001471304|2 +595543|38001471306|2 +746138|38001471307|2 +754058|38001471308|2 +869789|38001471309|2 +893232|38001471311|2 +675613|38001471326|2 +868593|38001471441|2 +755617|38001471655|2 +562894|38001471784|2 +621000|38001471785|2 +873069|38001471815|2 +661842|38001471968|2 +838421|38001472047|4 +542717|38001472205|2 +487562|38001472540|2 +582601|38001472542|2 +624262|38001472543|2 +647668|38001472545|2 +666938|38001472546|2 +734315|38001472548|2 +748327|38001472550|2 +892358|38001472564|2 +889398|38001473193|2 +838129|38001473272|4 +633349|38001473274|2 +723173|38001473385|2 +834334|38001473387|2 +745960|38001474088|2 +758023|38001474089|2 +503199|38001474434|2 +591365|38001474448|2 +611182|38001474464|2 +620999|38001474465|2 +649692|38001474466|4 +754183|38001474482|2 +756917|38001474484|2 +483928|38001474520|2 +833104|38001474532|4 +880845|38001474536|2 +460923|38001475027|2 +717124|38001475107|2 +608607|38001475348|2 +788335|38001475524|2 +875003|38001475531|2 +884157|38001475590|2 +704557|38001475694|2 +754937|38001475699|2 +465543|38001475705|2 +601785|38001475717|2 +604238|38001475719|2 +606413|38001475720|2 +871494|38001475722|2 +1256931|38001475735|2 +765376|38001475871|2 +587736|38001476047|2 +667761|38001476477|2 +465781|38001477947|2 +469532|38001477954|2 +484609|38001477977|2 +490227|38001477980|2 +609155|38001477994|2 +624275|38001478005|2 +647345|38001478023|2 +680778|38001478039|2 +685424|38001478042|2 +728117|38001478050|2 +746139|38001478054|2 +753108|38001478056|2 +800562|38001478060|2 +766037|38001478063|2 +845183|38001478064|2 +846476|38001478065|2 +876710|38001478090|2 +881060|38001478098|2 +1092816|38001478147|2 +623716|38001478848|2 +609627|38001478850|2 +512897|38001478851|2 +523111|38001478852|2 +660004|38001478855|2 +800319|38001478878|2 +453420|38001478943|2 +456680|38001479183|2 +467409|38001479190|2 +473010|38001479192|2 +475478|38001479196|2 +485490|38001479214|2 +488038|38001479220|2 +504202|38001479229|2 +546958|38001479236|2 +565270|38001479244|2 +565918|38001479246|2 +569752|38001479251|2 +577698|38001479255|2 +589879|38001479259|2 +637285|38001479301|2 +637341|38001479302|2 +790843|38001479335|2 +517644|38001479343|2 +452753|38001479362|2 +570176|38001479366|2 +704958|38001479477|2 +730376|38001479478|2 +777953|38001479496|2 +847193|38001479517|2 +873803|38001479525|2 +873961|38001479526|2 +885860|38001479528|2 +891490|38001479543|2 +869223|38001479883|2 +837309|38001479917|4 +869917|38001480182|2 +869916|38001480185|2 +458254|38001480617|2 +469124|38001480654|2 +705090|38001480824|2 +597182|38001481193|2 +675965|38001481199|2 +471432|38001481330|2 +472690|38001481332|2 +570809|38001481416|2 +643753|38001481419|2 +728099|38001481698|2 +761120|38001481743|2 +781424|38001481753|2 +804611|38001481764|2 +868071|38001481789|2 +882927|38001481795|2 +471377|38001481938|2 +477958|38001482560|2 +729004|38001482884|2 +748605|38001482885|2 +492375|38001482979|2 +495175|38001482981|2 +629864|38001482992|2 +553032|38001483379|2 +687202|38001483591|2 +693381|38001483594|2 +558440|38001483612|2 +800492|38001483761|2 +708593|38001483785|2 +757520|38001483803|2 +840578|38001483884|2 +682793|38001483892|2 +521898|38001483894|2 +659689|38001483895|2 +761357|38001483899|2 +780099|38001483900|2 +455204|38001483981|2 +631064|38001483989|2 +515331|38001484996|2 +515332|38001485000|2 +452823|38001486145|2 +488512|38001486147|2 +500778|38001486148|2 +546795|38001486149|2 +553780|38001486151|2 +585078|38001486152|2 +642542|38001486153|2 +650804|38001486155|2 +682818|38001486156|2 +706782|38001486158|2 +776664|38001486159|2 +839160|38001486160|4 +846121|38001486162|2 +883498|38001486164|2 +893229|38001486165|2 +608602|38001487178|2 +889159|38001487186|2 +784534|38001487248|2 +863860|38001487252|2 +643169|38001487313|2 +892025|38001487314|2 +772341|38001487315|2 +754598|38001487318|2 +594758|38001487792|2 +700366|38001487842|2 +897643|38001488034|2 +719879|38001488042|2 +719802|38001488044|2 +704969|38001488046|2 +474956|38001488053|2 +582593|38001488101|2 +590837|38001488124|2 +896613|38001488216|2 +737563|38001488259|2 +453718|38001489094|2 +465578|38001489175|2 +473648|38001489179|2 +477628|38001489180|2 +490938|38001489182|2 +665960|38001489707|2 +517036|38001489848|2 +452177|38001489952|2 +494121|38001489955|2 +493353|38001489956|2 +550026|38001490543|2 +565842|38001490553|2 +567298|38001490555|2 +606017|38001490696|2 +631808|38001490701|2 +663703|38001490713|2 +684329|38001490722|2 +703406|38001490723|2 +712711|38001490731|2 +718252|38001490733|2 +873352|38001490748|2 +725873|38001490750|2 +736459|38001490757|2 +756538|38001490759|2 +487627|38001490891|2 +752694|38001490896|2 +689424|38001490958|4 +771470|38001490977|2 +799704|38001491055|2 +468572|38001491580|2 +752753|38001491792|2 +540033|38001492400|2 +588330|38001492494|2 +839308|38001492714|4 +457955|38001492903|2 +466243|38001492905|2 +502898|38001492916|2 +529067|38001492942|2 +539255|38001492949|2 +809495|38001493030|2 +623595|38001493039|2 +610393|38001493049|2 +627628|38001493054|2 +633897|38001493063|2 +636591|38001493067|2 +679547|38001493091|2 +723983|38001493105|2 +727060|38001493107|2 +741404|38001493108|2 +759800|38001493109|2 +788603|38001493111|2 +788987|38001493112|2 +855906|38001493138|2 +892049|38001493162|2 +864217|38001493163|2 +872514|38001493290|2 +876455|38001493291|2 +897021|38001493300|2 +596821|38001493342|2 +1091820|38001493551|2 +902366|38001493619|2 +885417|38001493743|2 +891524|38001493788|2 +622163|38001493812|4 +469426|38001493899|2 +499861|38001493914|2 +618386|38001493951|2 +634774|38001493957|2 +699602|38001493960|2 +732689|38001493962|2 +768304|38001493980|2 +807741|38001493994|2 +857607|38001494012|2 +869106|38001494014|2 +874543|38001494017|2 +882845|38001494019|2 +889058|38001494026|2 +926282|38001494046|2 +978963|38001494189|2 +471263|38001494222|2 +492485|38001494226|2 +623287|38001494228|2 +808497|38001494298|2 +893065|38001494530|2 +635769|38001494630|2 +461897|38001494631|2 +465459|38001495476|2 +511600|38001495484|2 +516061|38001495493|2 +653615|38001495498|2 +653627|38001495499|2 +684602|38001495500|2 +826988|38001495518|4 +542942|38001495966|2 +545634|38001495969|2 +548998|38001495970|2 +632546|38001495978|2 +649665|38001495986|2 +658601|38001495987|2 +863880|38001496001|2 +554826|38001496134|2 +577664|38001496162|2 +632991|38001496164|2 +570751|38001496254|2 +669442|38001496266|2 +853564|38001496267|4 +752591|38001496292|2 +1122463|38001496358|2 +461953|38001496466|2 +828299|38001496469|4 +538598|38001496504|2 +557194|38001496506|2 +573943|38001496511|2 +856956|38001496828|2 +747951|38001497218|2 +684645|38001497219|2 +484561|38001497254|2 +575041|38001497256|2 +717270|38001497264|2 +762765|38001497270|2 +875502|38001497272|2 +780248|38001497318|2 +465794|38001497468|2 +482868|38001497865|2 +703563|38001497871|2 +527160|38001498286|2 +527161|38001498287|2 +548868|38001498292|2 +596393|38001498295|2 +722139|38001498297|2 +527990|38001498298|2 +757532|38001498300|2 +773063|38001498311|2 +754184|38001498312|2 +788338|38001498314|2 +895491|38001498316|2 +566316|38001498632|2 +638544|38001498633|2 +721013|38001498637|2 +759285|38001498640|2 +792421|38001498642|2 +861419|38001498644|2 +871551|38001498711|2 +657332|38001498940|2 +456966|38001498996|2 +711502|38001498998|2 +845391|38001498999|2 +827100|38001499292|6 +681616|38001499517|2 +684821|38001499518|2 +666673|38001499568|2 +876859|38001499572|2 +574718|38001499574|2 +637232|38001499577|2 +475622|38001499578|2 +658452|38001499579|2 +684947|38001499580|2 +860720|38001501348|2 +876787|38001501352|2 +507463|38001501368|2 +521195|38001501481|2 +467371|38001501505|2 +473658|38001501506|2 +508860|38001501515|2 +562225|38001501522|2 +609727|38001501528|2 +611270|38001501529|2 +657333|38001501536|2 +570628|38001501552|2 +736364|38001501553|2 +738496|38001501555|2 +754867|38001501556|2 +754906|38001501557|2 +767101|38001501561|2 +777064|38001501564|2 +788406|38001501568|2 +788900|38001501570|4 +788901|38001501572|4 +790748|38001501574|2 +801331|38001501575|2 +828375|38001501578|4 +830059|38001501579|4 +834933|38001501581|6 +837311|38001501583|4 +843723|38001501588|2 +843916|38001501589|2 +864116|38001501591|2 +904322|38001501614|2 +870286|38001502014|2 +818475|38001502041|4 +891937|38001502043|2 +1008392|38001502051|2 +1008229|38001502052|2 +1250933|38001502090|2 +598502|38001502094|2 +464925|38001502436|2 +753326|38001502521|2 +565227|38001502532|2 +661094|38001502533|2 +822268|38001502537|4 +889324|38001502540|2 +640901|38001502813|2 +497401|38001502846|2 +632837|38001502851|2 +698753|38001502855|2 +846751|38001502859|2 +510207|38001502992|2 +563518|38001503001|2 +567454|38001503002|2 +677118|38001503003|2 +741771|38001503022|2 +608530|38001503079|2 +588915|38001503995|2 +583439|38001503998|2 +566094|38001504195|2 +584665|38001504604|2 +700817|38001504626|2 +456404|38001504678|2 +460062|38001504679|2 +481439|38001504680|2 +484514|38001504681|2 +490426|38001504682|2 +503005|38001504683|2 +511979|38001504684|2 +516033|38001504685|2 +709786|38001505590|2 +456094|38001506343|2 +498463|38001506350|2 +543507|38001506359|2 +553232|38001506374|2 +560759|38001506379|2 +568478|38001506381|2 +580792|38001506387|2 +607264|38001506391|2 +617495|38001506393|2 +619871|38001506396|2 +624270|38001506397|2 +624302|38001506398|2 +632712|38001506400|2 +647985|38001506435|2 +654292|38001506450|2 +659134|38001506452|2 +732455|38001506480|2 +673059|38001506481|2 +673515|38001506504|2 +504479|38001506522|2 +685180|38001506663|2 +686008|38001506751|2 +687262|38001506756|2 +702121|38001506769|2 +702984|38001506771|2 +717844|38001506790|2 +740982|38001506793|2 +761781|38001506813|4 +767103|38001506819|2 +770204|38001506820|2 +770998|38001506821|2 +775786|38001506822|2 +788566|38001506823|2 +789388|38001506824|2 +793804|38001506825|2 +801788|38001506826|2 +837235|38001506854|4 +843917|38001506855|2 +844952|38001506856|2 +857374|38001506870|2 +858642|38001506873|2 +863229|38001506876|2 +864115|38001506880|2 +876848|38001506918|2 +878998|38001506920|2 +888174|38001506922|2 +891513|38001506925|2 +901242|38001506929|4 +697345|38001507099|2 +808366|38001507100|2 +885213|38001507398|2 +467370|38001507416|2 +503626|38001507418|2 +562634|38001507424|2 +862192|38001507425|2 +878271|38001507582|2 +462669|38001507694|2 +500775|38001507704|2 +710284|38001507722|2 +741439|38001507723|2 +806276|38001507726|2 +515336|38001507820|2 +683218|38001507822|2 +688406|38001507825|2 +703091|38001507827|2 +799135|38001507839|2 +647761|38001508198|2 +567780|38001508500|2 +607000|38001508521|2 +749343|38001508537|2 +859600|38001508545|2 +1131588|38001508560|2 +752870|38001509135|2 +534701|38001509221|2 +565126|38001509222|2 +608454|38001509223|2 +864937|38001509335|2 +574872|38001509452|2 +873405|38001509454|2 +834677|38001509559|4 +791714|38001509787|2 +552220|38001509789|2 +636773|38001509790|2 +477301|38001509828|2 +504184|38001510012|2 +552072|38001510013|2 +452121|38001510014|2 +554976|38001510166|2 +582944|38001510167|2 +806136|38001510168|2 +872515|38001510169|2 +498464|38001510170|2 +513811|38001510171|2 +572947|38001510308|2 +757814|38001510309|2 +516112|38001510310|2 +527014|38001510311|2 +549494|38001510312|2 +565344|38001510313|2 +608453|38001510314|2 +634085|38001510315|2 +766879|38001510316|2 +806150|38001510317|2 +833386|38001510318|4 +838944|38001510603|4 +463048|38001510605|2 +716343|38001510606|4 +522830|38001510608|2 +454288|38001510609|2 +751320|38001510611|2 +634861|38001510612|2 +706513|38001510613|2 +756060|38001510618|2 +901269|38001510619|2 +472303|38001510700|2 +869801|38001510701|2 +710789|38001510760|2 +835538|38001511017|4 +827154|38001511026|4 +835450|38001511325|4 +561591|38001511446|2 +589254|38001511447|2 +762450|38001511448|2 +868320|38001511450|2 +727123|38001511596|2 +509774|38001511721|2 +509775|38001511722|2 +548435|38001511723|2 +615542|38001511724|2 +496299|38001511828|2 +613554|38001512132|2 +566855|38001512274|2 +510184|38001512711|2 +708119|38001512712|2 +597995|38001512777|2 +636673|38001512778|2 +649116|38001512779|2 +804432|38001512780|2 +884947|38001512781|2 +532602|38001512882|2 +733663|38001512884|2 +607425|38001512936|2 +713067|38001512948|2 +462141|38001513052|2 +497459|38001513502|2 +538301|38001513503|2 +643334|38001513504|2 +754632|38001513505|2 +788988|38001513506|2 +895568|38001513507|2 +661966|38001513606|2 +585080|38001513729|2 +696880|38001513730|2 +695221|38001513824|2 +799270|38001513825|2 +751625|38001513826|2 +1234391|38001513828|2 +795914|38001513862|2 +691275|38001513923|2 +561683|38001513924|2 +845184|38001513927|2 +738610|38001514019|2 +738611|38001514020|2 +636592|38001514313|2 +579366|38001514478|2 +650217|38001514479|2 +688804|38001514809|2 +976882|38001514811|2 +478401|38001514832|2 +581399|38001514833|2 +611779|38001515118|2 +648161|38001515146|2 +852262|38001515167|2 +995654|38001515177|2 +480112|38001515202|2 +859603|38001515348|2 +621416|38001515550|2 +539371|38001515604|4 +629157|38001515606|2 +897361|38001515612|2 +1051570|38001515631|2 +522584|38001515643|2 +676047|38001515654|2 +581405|38001515736|2 +581412|38001515737|2 +637594|38001515741|2 +633664|38001515801|2 +726803|38001515802|2 +708487|38001515805|2 +556120|38001515978|2 +725597|38001515980|2 +690555|38001516129|2 +764526|38001516130|2 +506573|38001516236|2 +569160|38001516237|2 +779330|38001516240|2 +801838|38001516246|2 +740867|38001516367|2 +954090|38001516413|2 +721758|38001516433|2 +867120|38001516519|2 +609449|38001516541|2 +705056|38001516550|2 +686787|38001516557|2 +844389|38001516594|2 +520962|38001516674|2 +671429|38001516675|2 +606114|38001516677|2 +858773|38001516817|2 +471372|38001516880|2 +852830|38001517046|2 +886244|38001517047|2 +891516|38001517048|2 +511982|38001517176|2 +622193|38001517244|2 +627082|38001517249|2 +698783|38001517256|2 +578676|38001517312|2 +640237|38001517313|2 +889349|38001517314|2 +594305|38001517417|2 +721692|38001517419|2 +874386|38001517425|2 +608919|38001517651|2 +656603|38001517708|2 +583514|38001517892|2 +710292|38001517937|2 +518472|38001518001|2 +535098|38001518002|2 +730312|38001518005|2 +534965|38001518148|2 +485038|38001518383|2 +890628|38001518386|2 +458182|38001518596|2 +519508|38001518659|2 +785417|38001518795|2 +607542|38001518853|4 +1131126|38001518860|2 +886977|38001519601|2 +465779|38001519603|2 +470951|38001519624|2 +529989|38001519694|2 +678917|38001519737|2 +465728|38001519738|2 +708257|38001519742|2 +566823|38001519743|2 +580805|38001519744|2 +864203|38001519745|2 +893134|38001519942|2 +463721|38001519945|2 +675836|38001520262|2 +624346|38001520278|2 +471839|38001520348|2 +876546|38001520471|2 +472603|38001520527|2 +570480|38001520580|2 +581017|38001520587|2 +899095|38001520707|2 +886978|38001520725|2 +1114568|38001520938|2 +654109|38001521296|2 +576218|38001521470|2 +761228|38001521473|2 +459127|38001521478|2 +478461|38001521479|2 +581994|38001521581|2 +632489|38001521582|2 +626345|38001521597|2 +625896|38001521598|2 +688315|38001521600|2 +754976|38001521602|2 +766332|38001521604|2 +491824|38001521663|2 +481937|38001521768|2 +738178|38001521769|2 +469263|38001521771|2 +800132|38001521773|2 +565131|38001521924|2 +708311|38001522102|2 +982913|38001522461|2 +526155|38001522531|2 +681696|38001522563|2 +790922|38001522567|2 +851762|38001522568|2 +1088969|38001522569|2 +865592|38001522575|2 +848376|38001522580|2 +796216|38001522585|2 +830332|38001522587|4 +583472|38001523031|2 +801985|38001523034|2 +588337|38001523148|2 +772143|38001523345|2 +553776|38001523347|2 +887969|38001523397|2 +602064|38001523410|2 +730853|38001523417|2 +573871|38001523596|2 +503277|38001523597|2 +557805|38001523633|2 +637403|38001523725|2 +1157006|38001523729|2 +882028|38001523731|2 +739191|38001523732|2 +789142|38001523734|2 +681946|38001524047|2 +581368|38001524283|2 +874781|38001524419|2 +775308|38001524552|2 +862561|38001524556|2 +562609|38001524591|2 +457369|38001524592|2 +501973|38001524593|2 +470270|38001524620|4 +573738|38001524780|2 +644662|38001524781|2 +513139|38001524783|2 +513168|38001524784|2 +469327|38001524815|2 +469328|38001524816|2 +462142|38001524822|2 +737510|38001524825|2 +633118|38001525107|2 +845676|38001525166|2 +741024|38001525169|2 +542388|38001525170|2 +753241|38001525183|2 +464143|38001525253|2 +768906|38001525255|2 +693025|38001525256|2 +571399|38001525552|2 +767378|38001525725|2 +797504|38001527525|2 +701970|38001527648|2 +493166|38001527756|2 +756506|38001527777|2 +634463|38001527847|2 +753232|38001527854|2 +604204|38001527855|2 +451602|38001527857|2 +609201|38001527858|2 +714417|38001527877|2 +882025|38001527878|2 +896248|38001527928|2 +559513|38001527982|2 +626350|38001527983|2 +886844|38001527988|2 +778270|38001527995|2 +744669|38001527999|2 +592880|38001528023|2 +776875|38001528024|2 +546487|38001528026|2 +693520|38001528041|2 +839173|38001528057|4 +490424|38001528123|2 +618695|38001528131|2 +731331|38001528141|2 +453585|38001528146|2 +453589|38001528147|2 +757725|38001528150|2 +539497|38001528350|4 +484560|38001528364|2 +632809|38001528365|4 +632810|38001528366|4 +472691|38001528367|2 +891284|38001528646|2 +720102|38001528772|2 +694190|38001528781|2 +522808|38001529998|2 +643738|38001530007|2 +871390|38001530009|2 +857605|38001530017|2 +648452|38001530023|2 +880363|38001530026|2 +576074|38001530103|2 +726225|38001530137|2 +788592|38001530141|2 +656669|38001530501|2 +884145|38001530546|2 +880021|38001530547|2 +861731|38001530586|2 +495064|38001530603|2 +492971|38001530623|2 +480221|38001530625|2 +607409|38001530633|2 +572922|38001530864|2 +833742|38001531774|4 +637387|38001531775|2 +730205|38001531779|2 +638075|38001531790|2 +793586|38001532044|2 +687647|38001532074|2 +581386|38001532306|2 +688336|38001532319|2 +929226|38001532320|2 +831140|38001532324|4 +783918|38001532351|2 +712287|38001532370|2 +541587|38001532371|2 +751446|38001532376|2 +451838|38001532402|2 +680326|38001532644|2 +695713|38001532645|2 +556060|38001532653|2 +859123|38001532655|2 +855757|38001532976|2 +666667|38001532981|2 +513460|38001533076|2 +831077|38001533079|4 +655584|38001533093|2 +676665|38001533282|2 +792547|38001533335|2 +805554|38001533336|2 +733553|38001533349|2 +804362|38001533351|2 +541148|38001533353|2 +707884|38001533367|2 +569147|38001534924|2 +615959|38001535198|2 +659472|38001535201|2 +675775|38001535204|2 +764187|38001535207|2 +526432|38001535219|2 +704049|38001535231|2 +793706|38001535651|2 +547965|38001535670|2 +655092|38001535716|4 +783468|38001535721|2 +533347|38001535737|2 +531750|38001535777|2 +899338|38001535821|2 +877339|38001535907|2 +541707|38001535909|2 +679058|38001536084|2 +500881|38001536130|2 +532700|38001536162|2 +629338|38001536173|2 +891719|38001536205|2 +532701|38001536211|2 +593669|38001536212|2 +608608|38001536213|2 +626412|38001536227|2 +565125|38001536232|2 +859347|38001536234|2 +881674|38001536241|2 +605532|38001536243|2 +759901|38001536244|2 +837310|38001536375|4 +889163|38001536383|2 +459929|38001536384|2 +539584|38001536407|2 +583349|38001536410|2 +797602|38001536418|2 +459930|38001536501|2 +591992|38001536504|2 +723684|38001536505|2 +1092817|38001536584|2 +724913|38001536674|2 +792012|38001536738|2 +540331|38001537522|2 +540798|38001537523|2 +563643|38001537524|2 +453433|38001537683|2 +761981|38001537944|2 +665015|38001537991|2 +841869|38001538132|2 +491371|38001538134|2 +869131|38001538141|2 +660719|38001538150|2 +796897|38001538151|2 +796898|38001538152|2 +869109|38001538169|2 +657906|38001538171|2 +594264|38001538172|2 +513069|38001538173|2 +619745|38001538174|2 +607333|38001538177|2 +664744|38001538178|2 +645859|38001538179|2 +874828|38001538183|2 +606372|38001538188|2 +720504|38001538194|2 +472232|38001538196|2 +598825|38001538199|2 +868596|38001538206|2 +892692|38001538215|2 +470204|38001538442|2 +556334|38001538705|2 +675339|38001538725|2 +649791|38001538743|2 +613380|38001538750|2 +721326|38001538861|2 +606765|38001538890|2 +657845|38001538891|2 +656619|38001538911|2 +1039283|38001538916|2 +711893|38001538917|2 +453489|38001538918|2 +802389|38001538921|2 +794710|38001538924|2 +752767|38001538925|2 +891514|38001538928|2 +532645|38001538933|2 +791637|38001538935|2 +605943|38001538940|2 +525907|38001538944|2 +525906|38001538945|2 +864791|38001538946|2 +490156|38001538948|2 +871240|38001538988|2 +550309|38001538991|4 +832818|38001538993|4 +616340|38001538995|2 +762552|38001539003|2 +852986|38001539006|2 +753905|38001539014|2 +643504|38001539041|2 +762394|38001539043|2 +674397|38001539063|2 +623708|38001539077|2 +555494|38001539079|2 +539585|38001539607|2 +685377|38001539748|2 +779638|38001539753|2 +602887|38001539965|2 +741011|38001539995|2 +752883|38001540006|2 +467223|38001540008|2 +602930|38001540009|2 +557379|38001540010|2 +612385|38001540021|4 +669052|38001540024|2 +599686|38001540027|2 +747641|38001540033|2 +668177|38001540035|2 +639151|38001540036|2 +738089|38001540037|2 +753741|38001540258|2 +632239|38001541356|2 +687630|38001541359|2 +528879|38001541362|2 +687631|38001541364|2 +797925|38001541369|2 +590746|38001541836|2 +500118|38001541852|2 +537197|38001541859|2 +875521|38001541868|2 +877970|38001541874|2 +865988|38001541965|2 +563431|38001541974|2 +612042|38001542026|2 +740218|38001542151|2 +476479|38001542155|2 +464898|38001542168|2 +872220|38001542172|2 +833609|38001542178|4 +455616|38001542179|2 +706700|38001542182|2 +779909|38001542183|2 +779919|38001542184|2 +582596|38001542187|2 +737651|38001542188|2 +555416|38001542196|2 +595681|38001542242|2 +688002|38001542247|2 +884524|38001542747|2 +765860|38001542753|2 +734418|38001542754|2 +771215|38001542757|2 +703475|38001542761|2 +879756|38001542762|2 +460026|38001542763|2 +751283|38001542764|2 +608738|38001542765|2 +583581|38001542766|2 +754901|38001543201|2 +779899|38001543220|2 +625875|38001543226|2 +552977|38001543421|2 +635947|38001543422|2 +649561|38001543423|2 +833920|38001543919|4 +507809|38001543921|2 +484573|38001543933|2 +669478|38001543936|2 +898192|38001543938|2 +850654|38001543942|2 +454979|38001543946|2 +545568|38001543949|2 +537820|38001543987|2 +569868|38001543991|2 +468093|38001544064|2 +832255|38001544143|4 +625835|38001544261|2 +654910|38001544336|2 +873431|38001544607|2 +900978|38001544608|4 +500840|38001544609|2 +882033|38001544611|2 +751447|38001544615|2 +579320|38001544616|2 +644870|38001544874|2 +758620|38001544879|2 +662842|38001545619|2 +717566|38001545622|2 +802487|38001545637|2 +872952|38001545671|2 +872970|38001545696|2 +493924|38001545700|2 +538251|38001545706|2 +458337|38001545716|2 +458291|38001545742|2 +807311|38001545745|2 +630019|38001545748|2 +825889|38001545749|4 +882928|38001545758|2 +518875|38001545761|2 +557753|38001545764|2 +712838|38001545767|2 +722278|38001545771|2 +566228|38001545773|2 +535709|38001545788|4 +735740|38001545791|2 +843613|38001545792|2 +899150|38001545793|2 +805073|38001545801|2 +786701|38001545807|2 +782831|38001545808|2 +465567|38001545810|2 +710813|38001545814|2 +452326|38001548456|2 +856392|38001548731|2 +722358|38001549756|2 +854481|38001549765|2 +705496|38001549981|2 +797890|38001550011|2 +479760|38001550052|2 +800374|38001550068|2 +620354|38001550198|2 +580797|38001550200|2 +758775|38001550226|2 +512929|38001550227|2 +753320|38001550228|2 +892709|38001550234|2 +671864|38001550239|2 +901075|38001550243|2 +505596|38001550260|2 +712321|38001550262|2 +695662|38001550263|2 +510661|38001550264|2 +598289|38001550266|2 +793523|38001550267|2 +898209|38001550268|2 +864141|38001550272|2 +864139|38001550273|2 +889525|38001550274|2 +486953|38001550276|2 +846993|38001550277|2 +602756|38001552734|2 +756173|38001553058|2 +507939|38001553690|2 +748297|38001553693|2 +774107|38001553735|2 +500284|38001554948|2 +517784|38001554953|2 +708792|38001554961|2 +740353|38001554962|2 +733042|38001555083|2 +714563|38001555219|2 +732098|38001555223|2 +775193|38001555229|2 +767817|38001555243|2 +841915|38001555246|2 +603081|38001555249|2 +573723|38001555515|2 +604630|38001555519|2 +1127913|38001555522|2 +767740|38001555533|2 +858428|38001555546|2 +594771|38001555574|2 +471160|38001555580|2 +1268808|38001555599|2 +826060|38001555602|4 +848073|38001555605|2 +711894|38001555635|2 +465656|38001555648|2 +618696|38001555830|2 +927750|38001556226|2 +626641|38001556283|2 +719158|38001556336|2 +621415|38001556353|2 +660429|38001556355|2 +465579|38001556369|2 +628100|38001556372|2 +660844|38001556373|2 +610966|38001556599|2 +878999|38001556601|2 +452515|38001556602|2 +797436|38001556607|2 +669606|38001556608|4 +458469|38001556625|2 +481455|38001556630|2 +799001|38001556647|2 +781821|38001556752|2 +795765|38001556845|4 +463695|38001556848|2 +550909|38001556860|2 +550897|38001556865|2 +596912|38001556869|2 +616760|38001556871|2 +654425|38001556880|2 +528939|38001556904|2 +479271|38001556926|2 +888440|38001556929|2 +687598|38001556942|2 +774495|38001556947|2 +863301|38001556950|2 +891934|38001556953|2 +547865|38001556956|2 +600094|38001556958|2 +670908|38001556962|2 +708505|38001556963|2 +857684|38001556968|2 +622559|38001557002|2 +461950|38001557092|2 +666644|38001557094|2 +472833|38001557095|2 +714690|38001557098|2 +615527|38001557108|2 +696869|38001557347|2 +885172|38001557348|4 +685436|38001557362|2 +751801|38001557364|2 +645770|38001557383|2 +733520|38001557384|2 +830273|38001557387|4 +859453|38001557388|2 +711876|38001557391|2 +852302|38001557692|2 +570981|38001557698|2 +662661|38001557703|2 +678387|38001557719|2 +460933|38001557737|2 +472488|38001557738|4 +536432|38001557746|2 +571303|38001557748|2 +678388|38001557751|2 +679761|38001557752|2 +901586|38001557763|2 +504620|38001557800|2 +514696|38001557802|2 +607410|38001557804|2 +647764|38001557814|2 +663114|38001557815|2 +880482|38001557853|2 +894722|38001558027|2 +895535|38001558028|2 +1251383|38001558142|2 +866307|38001558151|2 +700015|38001558156|2 +480355|38001558181|2 +747344|38001558183|2 +469088|38001558205|2 +495241|38001558214|2 +532651|38001558216|2 +686463|38001558217|2 +521899|38001558225|2 +480740|38001558346|2 +483377|38001558347|2 +624328|38001558351|2 +479281|38001558370|2 +805206|38001558373|2 +506574|38001558389|2 +499228|38001558405|2 +847572|38001558406|2 +652442|38001558408|2 +668224|38001558409|2 +895745|38001558412|2 +895746|38001558413|2 +650071|38001558414|2 +866049|38001558415|2 +514689|38001558417|2 +720035|38001558418|2 +844772|38001558419|2 +495897|38001558422|2 +703407|38001558424|2 +541363|38001558426|2 +633959|38001558427|2 +651956|38001558428|2 +744247|38001558431|2 +740354|38001558435|2 +529467|38001558437|2 +529462|38001558438|2 +616809|38001558490|2 +649750|38001558495|2 +490027|38001558497|2 +691623|38001558534|2 +804534|38001558535|2 +728883|38001558786|2 +868555|38001558853|2 +852241|38001558857|2 +626768|38001558867|2 +460968|38001558889|2 +741272|38001558890|2 +689404|38001558893|2 +852227|38001558905|2 +454558|38001558917|2 +454850|38001558920|2 +574076|38001558985|2 +729122|38001558986|2 +809076|38001558989|2 +481878|38001559018|2 +561533|38001559138|2 +522694|38001559191|2 +608818|38001559193|2 +638374|38001559197|2 +774108|38001559203|2 +878029|38001559260|2 +489536|38001559804|2 +489531|38001559805|2 +609330|38001559810|2 +666603|38001559820|2 +713712|38001559822|2 +552793|38001559869|2 +577105|38001559870|2 +494264|38001559882|2 +573724|38001559891|2 +749621|38001560090|2 +669682|38001560104|2 +864714|38001560110|2 +801833|38001560147|2 +559806|38001560159|2 +606867|38001560225|2 +638115|38001560226|2 +863668|38001560230|2 +507612|38001560298|4 +516631|38001560504|2 +1198677|38001560600|2 +550327|38001560602|2 +533305|38001560603|2 +523554|38001560604|2 +707893|38001561260|2 +798234|38001561262|2 +1229441|38001561264|2 +529100|38001561265|2 +609484|38001561266|2 +841525|38001561269|2 +553233|38001561315|2 +692684|38001561316|2 +827793|38001561454|4 +541244|38001561455|2 +760299|38001561492|2 +457352|38001561495|2 +624738|38001561496|2 +594948|38001561498|2 +506963|38001561502|2 +581022|38001561513|2 +749291|38001561515|2 +875735|38001561516|2 +793022|38001561522|2 +863642|38001561524|2 +552127|38001561557|2 +760380|38001561558|2 +1159526|38001561570|2 +763328|38001561577|2 +608464|38001561586|2 +479269|38001561609|2 +773117|38001561618|2 +455332|38001561630|2 +606886|38001561639|2 +608032|38001561640|2 +654555|38001561643|2 +465500|38001561653|2 +784012|38001561654|2 +793196|38001561656|2 +637409|38001561713|2 +703092|38001561714|2 +451544|38001561719|2 +784925|38001561720|2 +607963|38001561741|2 +888436|38001561742|2 +898193|38001561744|2 +848001|38001561790|2 +472492|38001562872|2 +462143|38001562913|2 +780865|38001562921|2 +471267|38001563221|2 +532610|38001563252|2 +668017|38001563416|2 +760077|38001563418|2 +594997|38001563543|2 +569009|38001563641|2 +803695|38001563647|2 +839040|38001563648|4 +543923|38001563767|2 +585283|38001563839|2 +585280|38001563840|2 +678447|38001563841|2 +792766|38001563850|2 +799824|38001563851|2 +533090|38001564043|2 +629975|38001564051|2 +757369|38001564088|2 +467372|38001564155|2 +544749|38001564156|2 +471123|38001564329|2 +534506|38001564330|2 +623589|38001564397|2 +675468|38001564668|2 +682754|38001564930|2 +534716|38001564937|2 +590659|38001564938|2 +636435|38001565048|2 +793760|38001565051|2 +892460|38001565055|2 +737315|38001565078|2 +538505|38001565082|2 +581423|38001565087|2 +832400|38001565099|4 +873259|38001565100|2 +679794|38001565101|2 +843783|38001565108|2 +479209|38001565114|2 +901377|38001565198|2 +536720|38001565202|2 +768462|38001565258|2 +536929|38001565435|2 +626672|38001565436|2 +871478|38001566076|2 +880531|38001567572|2 +722352|38001567580|2 +684999|38001567583|2 +893196|38001567584|2 +609314|38001567591|2 +767842|38001567592|2 +623818|38001567991|2 +654643|38001567994|2 +569646|38001568009|2 +804376|38001568010|2 +472629|38001568047|2 +469337|38001568065|2 +521678|38001568067|2 +538217|38001568068|2 +616810|38001568070|2 +482803|38001568078|2 +869629|38001568082|2 +782395|38001568106|2 +895731|38001568110|2 +597955|38001568111|2 +613202|38001568119|2 +745303|38001568120|2 +804355|38001568121|2 +528174|38001568131|2 +710293|38001568136|2 +472364|38001568161|2 +540520|38001568202|2 +479916|38001568203|2 +855802|38001570285|2 +773185|38001570298|2 +791772|38001570301|2 +880023|38001570304|2 +748363|38001570336|2 +877330|38001570339|2 +514975|38001570348|2 +790749|38001570406|2 +500267|38001570410|2 +664653|38001570474|2 +622029|38001570476|4 +650092|38001570477|2 +882416|38001570478|2 +926712|38001570479|2 +857383|38001570488|2 +577703|38001570668|2 +766883|38001570669|2 +453554|38001570681|2 +633457|38001570683|2 +514704|38001570738|2 +840186|38001570742|4 +840187|38001570743|4 +566063|38001570798|2 +582994|38001570811|2 +877703|38001570883|2 +669084|38001570888|2 +768259|38001570896|2 +605303|38001570919|2 +551228|38001571010|2 +519290|38001571059|2 +519317|38001571060|2 +586937|38001571098|2 +679630|38001571104|2 +869267|38001571107|2 +463670|38001571115|2 +870838|38001571153|2 +898602|38001571321|2 +472491|38001571324|2 +579714|38001571428|2 +648811|38001571446|2 +512737|38001571528|2 +588590|38001571538|2 +897752|38001571539|2 +686664|38001571848|2 +563016|38001571880|2 +563023|38001571893|2 +838943|38001571911|4 +837285|38001572130|4 +514697|38001572152|2 +653654|38001572176|2 +852631|38001572188|2 +901580|38001572189|2 +655093|38001572360|4 +754949|38001572378|2 +559861|38001572538|2 +669684|38001572609|2 +740832|38001572619|2 +806526|38001572621|4 +974889|38001572887|2 +897800|38001572892|2 +462308|38001572893|2 +710373|38001572978|2 +631421|38001573200|2 +662015|38001573201|2 +806317|38001573681|2 +836820|38001573682|4 +590750|38001573711|2 +590731|38001573712|2 +452686|38001573826|2 +872188|38001573848|2 +493226|38001573926|2 +808738|38001573948|2 +518615|38001574272|2 +605750|38001574274|2 +589255|38001574276|2 +711703|38001574332|2 +760325|38001575031|2 +756702|38001575102|2 +606764|38001575179|2 +556057|38001575509|2 +626213|38001575513|4 +693835|38001575515|2 +540521|38001575663|2 +603906|38001575667|2 +662897|38001575670|2 +703951|38001575713|2 +825260|38001575714|8 +576393|38001575825|2 +697572|38001575826|2 +697571|38001575827|2 +598832|38001576091|2 +703944|38001576092|2 +537423|38001576159|2 +672841|38001576187|4 +669328|38001576254|2 +533344|38001576532|2 +649759|38001576534|2 +649758|38001576535|2 +767141|38001576918|2 +805341|38001576919|2 +504491|38001576927|2 +573191|38001576928|2 +862752|38001576929|2 +510362|38001576932|2 +843632|38001576933|2 +843621|38001576934|2 +882678|38001577065|2 +626387|38001577210|2 +662253|38001577211|2 +466687|38001577288|2 +896777|38001577342|2 +758082|38001577555|2 +872651|38001577556|2 +451517|39000302638|2 +451726|39000302641|2 +452076|39000302642|2 +452075|39000302643|2 +452077|39000302645|2 +452178|39000302647|2 +452189|39000302650|2 +452215|39000302653|2 +452214|39000302654|2 +452186|39000302655|2 +452197|39000302656|2 +452429|39000302657|2 +452419|39000302658|2 +452418|39000302659|2 +452416|39000302660|2 +452432|39000302661|2 +452863|39000302664|2 +453359|39000302668|2 +453220|39000302669|2 +453315|39000302671|2 +453427|39000302672|2 +453423|39000302673|2 +453459|39000302674|2 +453604|39000302678|2 +453601|39000302679|2 +453615|39000302682|2 +453838|39000302686|4 +453925|39000302688|2 +453923|39000302689|2 +453919|39000302690|2 +453983|39000302691|2 +454616|39000302692|2 +454966|39000302693|2 +454534|39000302695|2 +454753|39000302697|4 +454694|39000302699|2 +454936|39000302701|2 +454573|39000302705|2 +454350|39000302707|2 +455203|39000302709|2 +455205|39000302710|2 +455210|39000302711|2 +455315|39000302712|2 +455313|39000302714|2 +455334|39000302715|2 +455434|39000302716|2 +455484|39000302717|2 +455661|39000302718|2 +456031|39000302721|2 +456029|39000302722|2 +456030|39000302723|2 +456253|39000302725|2 +456766|39000302727|2 +456497|39000302730|2 +456922|39000302731|2 +457311|39000302738|2 +457564|39000302741|2 +457760|39000302742|2 +457762|39000302744|2 +457761|39000302745|2 +457763|39000302746|2 +458239|39000302750|2 +458407|39000302753|2 +458516|39000302755|2 +532439|39000302757|2 +458856|39000302760|2 +458850|39000302761|2 +458859|39000302762|2 +459177|39000302763|2 +459659|39000302766|2 +459768|39000302770|2 +459757|39000302771|2 +459804|39000302772|2 +459807|39000302773|2 +459987|39000302775|4 +460031|39000302776|2 +880253|39000302781|2 +460502|39000302783|2 +460503|39000302784|2 +460504|39000302785|2 +460510|39000302786|2 +460715|39000302788|2 +460778|39000302789|2 +460763|39000302790|2 +461097|39000302794|2 +461025|39000302796|2 +461034|39000302798|2 +461220|39000302800|2 +461297|39000302801|2 +461310|39000302804|2 +461328|39000302806|2 +461294|39000302807|2 +461349|39000302811|2 +461363|39000302814|2 +461368|39000302815|2 +461364|39000302816|2 +461360|39000302817|2 +461369|39000302819|2 +461366|39000302820|2 +461365|39000302823|2 +461419|39000302825|2 +536271|39000302828|2 +461488|39000302829|2 +467361|39000302834|2 +461471|39000302839|2 +461596|39000302842|2 +461674|39000302843|2 +461670|39000302846|2 +461666|39000302848|2 +461523|39000302850|2 +461441|39000302851|2 +461702|39000302852|2 +461710|39000302853|2 +461693|39000302854|2 +461663|39000302860|2 +461446|39000302862|2 +461447|39000302863|2 +461654|39000302864|2 +461574|39000302870|2 +461555|39000302874|2 +461597|39000302878|2 +702485|39000302880|2 +461598|39000302881|2 +461701|39000302883|2 +461645|39000302886|2 +461898|39000302888|2 +462572|39000302892|2 +461880|39000302893|2 +462149|39000302894|2 +461870|39000302898|2 +462240|39000302899|2 +462849|39000302900|2 +462951|39000302901|2 +463684|39000302903|2 +463993|39000302904|2 +463443|39000302907|4 +463803|39000302908|2 +463819|39000302909|2 +463490|39000302910|2 +463613|39000302911|2 +463994|39000302914|2 +463804|39000302918|2 +463305|39000302920|2 +464118|39000302921|2 +464119|39000302922|2 +464168|39000302923|2 +464605|39000302925|2 +464599|39000302926|2 +464816|39000302928|2 +464977|39000302929|2 +522637|39000302935|2 +465393|39000302936|2 +465774|39000302940|2 +465522|39000302941|2 +465481|39000302944|2 +494398|39000302945|2 +465501|39000302946|2 +465777|39000302947|2 +465633|39000302950|2 +465723|39000302951|2 +465622|39000302952|2 +465648|39000302954|2 +466357|39000302955|2 +466316|39000302956|2 +466591|39000302959|2 +466076|39000302961|2 +515571|39000302962|2 +466696|39000302965|2 +466896|39000302966|2 +468082|39000302968|2 +467568|39000302972|2 +467498|39000302974|2 +467387|39000302975|4 +467624|39000302976|2 +467780|39000302978|2 +467925|39000302980|2 +468168|39000302982|2 +468176|39000302983|2 +468213|39000302984|2 +468345|39000302987|2 +470177|39000302997|2 +469509|39000302998|2 +469973|39000302999|2 +469184|39000303001|2 +470631|39000303003|2 +469339|39000303004|2 +469630|39000303005|2 +470613|39000303008|2 +650577|39000303010|2 +470695|39000303013|2 +471671|39000303016|4 +471636|39000303018|4 +471035|39000303019|2 +471431|39000303024|2 +471926|39000303028|2 +471990|39000303030|2 +471964|39000303031|2 +471963|39000303032|2 +471965|39000303034|2 +471960|39000303038|2 +471991|39000303039|2 +472759|39000303044|2 +472412|39000303046|2 +472527|39000303050|2 +472640|39000303052|2 +472789|39000303053|2 +546536|39000303054|2 +473057|39000303055|2 +473060|39000303056|2 +473216|39000303060|2 +473224|39000303061|2 +473363|39000303063|2 +473339|39000303064|2 +473249|39000303065|2 +473419|39000303066|2 +473340|39000303067|2 +473800|39000303073|2 +473799|39000303074|2 +474151|39000303075|2 +474189|39000303076|2 +474152|39000303077|2 +474411|39000303081|2 +474536|39000303082|2 +474587|39000303083|2 +474970|39000303086|2 +474969|39000303087|2 +475125|39000303089|2 +475463|39000303090|2 +475559|39000303093|2 +476338|39000303100|4 +476533|39000303102|2 +476525|39000303103|2 +476778|39000303106|2 +476736|39000303107|2 +476638|39000303110|2 +476738|39000303111|2 +476701|39000303112|2 +476618|39000303113|2 +476839|39000303114|2 +476765|39000303115|2 +476865|39000303116|2 +476810|39000303120|2 +476632|39000303121|2 +476793|39000303123|2 +476639|39000303124|2 +476619|39000303127|2 +476798|39000303128|2 +476818|39000303129|2 +476811|39000303130|2 +476696|39000303132|2 +476682|39000303133|2 +476779|39000303134|2 +476852|39000303136|2 +476755|39000303137|2 +476819|39000303138|2 +476799|39000303139|2 +476855|39000303142|2 +476697|39000303145|2 +476856|39000303146|2 +587041|39000303148|2 +476761|39000303149|2 +476739|39000303150|2 +476890|39000303151|2 +476918|39000303153|2 +477005|39000303157|2 +477006|39000303158|2 +477010|39000303159|2 +470691|39000303160|2 +477233|39000303161|2 +477294|39000303164|2 +477295|39000303165|2 +477286|39000303166|2 +477280|39000303169|2 +477851|39000303172|2 +477713|39000303174|2 +478404|39000303180|2 +478564|39000303183|2 +478382|39000303184|2 +478405|39000303185|2 +478561|39000303187|2 +478536|39000303190|2 +478327|39000303191|2 +478537|39000303192|2 +478565|39000303193|2 +478592|39000303196|2 +478593|39000303197|2 +605147|39000303202|2 +478956|39000303206|2 +478780|39000303207|2 +479061|39000303211|2 +479081|39000303217|2 +479121|39000303218|2 +479198|39000303219|2 +479191|39000303220|2 +479504|39000303221|2 +479532|39000303222|2 +479572|39000303223|2 +479668|39000303224|2 +480000|39000303226|4 +480001|39000303227|4 +479805|39000303228|2 +480034|39000303229|2 +479802|39000303230|2 +479837|39000303231|2 +480078|39000303234|2 +480155|39000303235|2 +480127|39000303236|2 +480107|39000303240|2 +480172|39000303242|2 +480128|39000303243|2 +710938|39000303246|2 +480745|39000303252|2 +481145|39000303254|2 +481122|39000303255|2 +481228|39000303259|2 +481478|39000303261|2 +481416|39000303262|2 +481451|39000303263|2 +481495|39000303265|2 +584246|39000303269|2 +481964|39000303272|2 +481966|39000303274|2 +482097|39000303277|2 +482214|39000303278|2 +482081|39000303280|2 +482155|39000303282|2 +482145|39000303283|2 +482138|39000303288|2 +482049|39000303289|2 +482091|39000303290|2 +482107|39000303291|2 +482199|39000303295|2 +482084|39000303296|2 +482088|39000303298|2 +482119|39000303300|2 +482210|39000303301|2 +482120|39000303302|2 +482223|39000303304|2 +482234|39000303310|2 +482108|39000303311|2 +482032|39000303314|2 +482150|39000303316|2 +482082|39000303317|2 +482056|39000303318|2 +482057|39000303319|2 +482137|39000303322|2 +482079|39000303323|2 +482252|39000303325|2 +482381|39000303335|2 +482344|39000303336|2 +482374|39000303337|2 +482364|39000303338|2 +482372|39000303340|2 +482406|39000303343|2 +482328|39000303346|2 +482418|39000303347|2 +482333|39000303351|2 +482386|39000303352|2 +482407|39000303356|2 +482378|39000303357|2 +482427|39000303362|2 +482457|39000303364|2 +482450|39000303366|2 +482509|39000303371|2 +482710|39000303373|2 +482627|39000303378|2 +482581|39000303379|2 +482851|39000303386|2 +482817|39000303388|2 +482845|39000303390|2 +482818|39000303391|2 +482897|39000303392|2 +482791|39000303393|2 +482865|39000303394|2 +482901|39000303396|2 +482833|39000303398|2 +482809|39000303399|2 +482894|39000303401|2 +482890|39000303406|2 +482873|39000303407|2 +483193|39000303416|2 +483194|39000303417|2 +483333|39000303418|2 +483608|39000303420|2 +483604|39000303421|2 +483915|39000303423|2 +483913|39000303424|2 +483954|39000303426|2 +484081|39000303428|2 +484411|39000303432|2 +484482|39000303433|2 +484493|39000303435|2 +484426|39000303436|2 +484696|39000303438|2 +484886|39000303443|4 +484892|39000303446|2 +484875|39000303447|2 +484840|39000303448|2 +484815|39000303450|2 +484811|39000303453|2 +484805|39000303455|2 +484874|39000303463|2 +484863|39000303467|2 +485003|39000303469|2 +485722|39000303476|2 +485727|39000303477|2 +486165|39000303484|2 +486369|39000303485|4 +486244|39000303488|2 +486274|39000303489|2 +486303|39000303490|2 +486246|39000303498|2 +486293|39000303499|2 +486213|39000303500|2 +486326|39000303503|2 +486247|39000303505|2 +486413|39000303506|2 +486437|39000303512|2 +486426|39000303513|2 +486430|39000303515|2 +486425|39000303518|2 +486417|39000303519|2 +486447|39000303521|2 +486448|39000303522|2 +486418|39000303524|2 +486918|39000303530|2 +486913|39000303531|2 +486906|39000303532|2 +487273|39000303533|2 +487935|39000303536|2 +488012|39000303540|2 +487934|39000303542|2 +488121|39000303545|2 +488160|39000303547|2 +488122|39000303548|2 +488139|39000303549|2 +488140|39000303552|2 +488154|39000303553|2 +488791|39000303559|2 +488572|39000303560|2 +488910|39000303561|4 +489487|39000303567|2 +489482|39000303568|2 +489478|39000303569|2 +489484|39000303570|2 +489479|39000303572|2 +489483|39000303574|2 +489488|39000303575|2 +489778|39000303580|2 +489899|39000303582|2 +489957|39000303584|2 +490152|39000303586|2 +490170|39000303587|2 +490166|39000303589|2 +490231|39000303591|2 +490225|39000303593|2 +490244|39000303595|2 +490788|39000303600|2 +691044|39000303602|2 +490945|39000303607|2 +491007|39000303608|2 +491008|39000303609|2 +491155|39000303610|2 +491159|39000303611|2 +491346|39000303614|2 +491536|39000303615|2 +491838|39000303618|2 +642444|39000303620|2 +492320|39000303622|2 +505257|39000303626|2 +492871|39000303628|2 +732528|39000303632|2 +492885|39000303633|2 +492870|39000303636|2 +492981|39000303640|2 +492987|39000303641|2 +492982|39000303642|2 +492989|39000303645|2 +492983|39000303646|2 +492988|39000303648|2 +493044|39000303649|2 +493083|39000303651|2 +493076|39000303652|2 +493067|39000303653|2 +493366|39000303660|2 +493380|39000303662|2 +493458|39000303668|2 +493459|39000303669|2 +493750|39000303672|2 +493969|39000303678|2 +494357|39000303685|2 +494399|39000303686|2 +494561|39000303688|2 +494557|39000303689|2 +494618|39000303691|2 +494577|39000303692|2 +494988|39000303696|2 +760184|39000303700|4 +494927|39000303701|2 +495119|39000303703|2 +495558|39000303704|2 +495617|39000303705|2 +495571|39000303706|2 +495629|39000303707|2 +495603|39000303710|2 +495623|39000303713|2 +495662|39000303717|2 +495693|39000303718|2 +495694|39000303723|2 +495934|39000303726|2 +496218|39000303729|2 +496242|39000303730|2 +496261|39000303732|2 +496548|39000303737|2 +496698|39000303739|2 +496559|39000303740|2 +496628|39000303741|2 +496385|39000303742|2 +525268|39000303743|2 +496657|39000303744|2 +496441|39000303745|2 +496947|39000303747|2 +881267|39000303749|2 +496953|39000303750|2 +496954|39000303751|2 +496992|39000303753|2 +497002|39000303754|2 +497004|39000303755|2 +497001|39000303756|2 +496998|39000303757|2 +496999|39000303758|2 +496990|39000303759|2 +497055|39000303761|2 +497310|39000303767|2 +497426|39000303769|2 +497624|39000303772|2 +498055|39000303777|2 +498058|39000303778|2 +498088|39000303780|2 +498089|39000303781|2 +498090|39000303782|2 +857314|39000303784|2 +498097|39000303785|2 +498063|39000303787|2 +499958|39000303797|2 +500057|39000303799|4 +500051|39000303803|2 +500043|39000303804|2 +500281|39000303812|2 +500269|39000303813|2 +500265|39000303814|2 +500276|39000303815|2 +500386|39000303816|2 +500387|39000303817|2 +500383|39000303818|2 +500631|39000303822|2 +500687|39000303824|2 +500720|39000303825|2 +500730|39000303826|2 +500727|39000303827|2 +500731|39000303828|2 +500726|39000303830|2 +500851|39000303831|2 +500843|39000303832|2 +500885|39000303834|2 +500875|39000303836|2 +500886|39000303841|2 +500834|39000303842|2 +500819|39000303843|2 +500986|39000303845|2 +500960|39000303848|2 +501013|39000303850|2 +500953|39000303851|2 +501001|39000303853|2 +525288|39000303854|2 +678826|39000303855|2 +500954|39000303856|2 +500915|39000303857|2 +500955|39000303859|2 +500984|39000303861|2 +500927|39000303864|2 +500961|39000303865|2 +500937|39000303866|2 +500908|39000303867|2 +500928|39000303868|2 +500992|39000303869|2 +501002|39000303870|2 +501031|39000303872|2 +501047|39000303882|2 +501050|39000303891|2 +501079|39000303892|2 +501063|39000303893|2 +728335|39000303895|2 +501085|39000303897|2 +501067|39000303898|2 +501086|39000303899|2 +501189|39000303902|2 +501109|39000303911|2 +501126|39000303919|2 +501251|39000303920|2 +501302|39000303925|2 +501356|39000303930|2 +501359|39000303931|2 +501350|39000303935|2 +501355|39000303936|2 +501362|39000303940|2 +501332|39000303942|2 +832360|39000303946|4 +501379|39000303948|2 +501434|39000303949|2 +501420|39000303950|2 +501392|39000303951|2 +501389|39000303952|2 +501438|39000303953|2 +501446|39000303954|2 +501448|39000303955|2 +501440|39000303956|2 +501465|39000303961|2 +501634|39000303962|2 +501519|39000303964|2 +501476|39000303966|2 +501569|39000303968|2 +545578|39000303970|2 +501618|39000303971|2 +501477|39000303975|2 +501595|39000303977|2 +501691|39000303978|2 +501689|39000303979|2 +501802|39000303980|2 +501815|39000303981|2 +501804|39000303982|2 +501821|39000303983|2 +501944|39000303985|2 +502077|39000303986|2 +501868|39000303987|2 +501936|39000303988|2 +502012|39000303992|2 +501945|39000303993|2 +501969|39000303994|2 +501946|39000303996|2 +501913|39000303998|2 +502030|39000303999|2 +501984|39000304001|2 +502075|39000304008|2 +502002|39000304012|2 +501909|39000304013|2 +502078|39000304021|2 +502085|39000304022|2 +502188|39000304026|2 +502183|39000304027|2 +502139|39000304030|2 +502176|39000304031|2 +502142|39000304032|2 +502165|39000304033|2 +502111|39000304034|2 +887723|39000304037|2 +502093|39000304038|2 +502149|39000304041|2 +502150|39000304042|2 +502163|39000304043|2 +502137|39000304044|2 +502252|39000304046|2 +502256|39000304047|2 +502230|39000304048|2 +502324|39000304051|2 +502662|39000304056|2 +502887|39000304060|2 +502942|39000304062|2 +502984|39000304063|2 +504324|39000304064|2 +762361|39000304065|2 +503109|39000304066|2 +503457|39000304070|2 +503455|39000304071|2 +503487|39000304073|2 +503479|39000304074|2 +503436|39000304076|2 +503485|39000304078|2 +503439|39000304081|2 +503474|39000304083|2 +503432|39000304084|2 +503461|39000304085|2 +503494|39000304087|2 +503509|39000304089|2 +503508|39000304091|2 +503794|39000304096|2 +503804|39000304097|2 +503938|39000304102|2 +504013|39000304103|2 +504066|39000304104|2 +503871|39000304107|2 +503985|39000304109|2 +503968|39000304110|2 +504042|39000304111|2 +503943|39000304112|2 +504032|39000304114|2 +503918|39000304115|2 +503907|39000304117|2 +504033|39000304119|2 +504123|39000304122|2 +504170|39000304124|2 +504180|39000304125|2 +504296|39000304128|2 +504301|39000304130|2 +504329|39000304132|2 +504404|39000304134|2 +504406|39000304137|2 +504384|39000304138|2 +504353|39000304139|2 +504385|39000304140|2 +504342|39000304142|2 +504386|39000304148|2 +504325|39000304152|2 +504407|39000304155|2 +504436|39000304157|2 +504416|39000304159|2 +504320|39000304161|2 +504326|39000304163|2 +504439|39000304166|2 +504402|39000304167|2 +504366|39000304168|2 +504359|39000304169|2 +504337|39000304171|2 +504338|39000304173|2 +504422|39000304174|2 +504470|39000304176|2 +504473|39000304178|2 +504499|39000304179|2 +504532|39000304181|2 +504539|39000304183|2 +504657|39000304187|2 +504788|39000304193|2 +504680|39000304194|2 +504650|39000304195|2 +504567|39000304196|2 +504912|39000304197|2 +504900|39000304199|2 +504767|39000304201|2 +504577|39000304202|2 +504864|39000304203|2 +504870|39000304205|4 +504824|39000304208|2 +505107|39000304209|2 +505106|39000304211|2 +505129|39000304215|2 +505131|39000304217|2 +505142|39000304220|2 +505147|39000304221|2 +505152|39000304224|2 +505159|39000304227|2 +505149|39000304229|2 +505122|39000304231|2 +505121|39000304233|2 +505225|39000304234|2 +505291|39000304241|2 +505641|39000304246|2 +505640|39000304247|2 +505643|39000304249|2 +505642|39000304250|2 +505847|39000304253|2 +505873|39000304254|2 +505872|39000304255|2 +506154|39000304260|2 +506209|39000304261|2 +506270|39000304262|2 +506278|39000304263|2 +506293|39000304265|2 +506356|39000304266|4 +506658|39000304270|2 +506675|39000304271|2 +506629|39000304272|2 +506620|39000304274|2 +507109|39000304280|2 +507147|39000304281|2 +507372|39000304284|2 +507574|39000304285|2 +534440|39000304287|2 +507442|39000304289|2 +507424|39000304291|2 +507467|39000304300|2 +507425|39000304301|2 +507458|39000304304|2 +507527|39000304305|2 +507426|39000304306|2 +507516|39000304307|4 +507587|39000304308|2 +507384|39000304313|2 +507374|39000304317|2 +507575|39000304318|2 +507390|39000304319|2 +507411|39000304322|2 +507391|39000304323|2 +507582|39000304326|2 +507576|39000304328|2 +507474|39000304329|2 +507635|39000304331|2 +507412|39000304332|2 +508004|39000304337|2 +507925|39000304338|2 +507961|39000304342|2 +508586|39000304347|2 +508448|39000304350|2 +508452|39000304352|2 +508425|39000304353|2 +508604|39000304354|2 +508466|39000304355|2 +508558|39000304356|2 +508492|39000304357|2 +508643|39000304359|2 +508436|39000304365|2 +508522|39000304368|2 +508626|39000304374|2 +508531|39000304375|2 +508541|39000304379|2 +508495|39000304381|2 +508498|39000304383|2 +508582|39000304385|2 +508662|39000304389|2 +508606|39000304390|2 +508607|39000304391|2 +508446|39000304392|2 +508542|39000304393|2 +508612|39000304394|2 +508539|39000304395|2 +508653|39000304396|2 +508608|39000304400|2 +508496|39000304402|2 +508572|39000304404|2 +508503|39000304405|2 +508430|39000304406|2 +508668|39000304408|2 +508454|39000304409|2 +508663|39000304410|2 +508599|39000304412|2 +617667|39000304413|2 +510473|39000304416|2 +509224|39000304422|2 +509365|39000304423|2 +509499|39000304424|2 +509481|39000304425|2 +509434|39000304426|2 +509554|39000304429|2 +509463|39000304431|2 +509307|39000304435|2 +509582|39000304437|2 +461350|39000304438|2 +509414|39000304440|2 +509471|39000304447|2 +509419|39000304448|2 +509323|39000304450|2 +509580|39000304452|2 +509409|39000304454|2 +509428|39000304456|2 +509343|39000304458|2 +509324|39000304460|2 +509245|39000304461|2 +509537|39000304462|2 +509275|39000304463|2 +509415|39000304465|2 +509366|39000304466|2 +509472|39000304468|2 +509492|39000304470|2 +509601|39000304471|2 +509299|39000304472|2 +509602|39000304473|2 +509279|39000304474|2 +509293|39000304479|2 +509586|39000304481|2 +509308|39000304482|2 +510186|39000304492|2 +510180|39000304493|2 +510407|39000304495|2 +510265|39000304499|2 +510294|39000304501|2 +510471|39000304507|2 +510470|39000304508|2 +510472|39000304509|2 +510481|39000304510|2 +510763|39000304511|2 +510885|39000304512|2 +510822|39000304513|2 +510837|39000304516|2 +510825|39000304517|2 +510931|39000304521|2 +510838|39000304523|2 +510908|39000304527|2 +510852|39000304529|2 +510927|39000304530|2 +510849|39000304531|2 +510814|39000304533|2 +510800|39000304534|2 +510899|39000304535|2 +511134|39000304538|2 +511122|39000304539|2 +511130|39000304540|2 +511516|39000304545|2 +511529|39000304546|2 +511517|39000304547|2 +511586|39000304548|2 +511571|39000304549|2 +511592|39000304551|2 +511569|39000304554|2 +511795|39000304556|2 +511964|39000304558|2 +512045|39000304561|2 +511984|39000304562|2 +511998|39000304563|2 +512099|39000304565|2 +512023|39000304567|2 +512095|39000304568|2 +512079|39000304569|2 +511941|39000304570|2 +511916|39000304575|2 +512064|39000304577|2 +511946|39000304579|2 +512275|39000304583|2 +512349|39000304586|2 +799650|39000304589|2 +512390|39000304590|2 +512512|39000304591|4 +512266|39000304593|2 +512473|39000304596|2 +512455|39000304598|2 +512350|39000304602|2 +513409|39000304605|2 +513552|39000304607|2 +513560|39000304608|2 +513557|39000304610|2 +513958|39000304615|2 +513911|39000304616|2 +514011|39000304619|2 +514143|39000304622|2 +514077|39000304623|2 +514139|39000304624|2 +514121|39000304626|2 +514116|39000304627|2 +514134|39000304629|2 +514140|39000304631|2 +514084|39000304632|2 +514085|39000304633|2 +514152|39000304634|2 +514114|39000304636|2 +514088|39000304638|2 +514141|39000304641|2 +514129|39000304642|2 +514083|39000304644|2 +514094|39000304647|2 +514080|39000304648|2 +514105|39000304649|2 +514078|39000304653|2 +514158|39000304656|2 +514115|39000304657|2 +514095|39000304662|2 +514160|39000304663|4 +514161|39000304664|4 +514193|39000304665|2 +514188|39000304666|2 +514185|39000304667|2 +872865|39000304670|2 +514284|39000304671|2 +514425|39000304672|2 +514428|39000304673|2 +514422|39000304674|2 +514420|39000304676|2 +514450|39000304677|2 +514448|39000304678|2 +514577|39000304682|2 +514585|39000304684|2 +514576|39000304685|2 +514665|39000304686|2 +514658|39000304687|2 +514685|39000304688|2 +514717|39000304689|2 +514769|39000304690|2 +514770|39000304691|2 +514792|39000304692|2 +514825|39000304693|2 +514826|39000304694|2 +514814|39000304695|2 +514812|39000304696|2 +514819|39000304698|2 +514824|39000304699|2 +514827|39000304701|2 +885810|39000304706|2 +515008|39000304708|2 +515009|39000304709|2 +515036|39000304713|2 +515214|39000304716|2 +515215|39000304720|2 +515297|39000304722|2 +515480|39000304723|2 +515479|39000304724|2 +515602|39000304725|2 +515607|39000304726|2 +515616|39000304729|2 +515617|39000304731|2 +515771|39000304733|2 +515796|39000304734|2 +515802|39000304736|2 +516083|39000304737|2 +515902|39000304738|2 +516267|39000304746|2 +516278|39000304752|2 +516311|39000304758|2 +516268|39000304760|2 +516254|39000304764|2 +516283|39000304766|2 +516275|39000304767|2 +516272|39000304768|2 +516242|39000304769|2 +516310|39000304770|4 +516862|39000304776|2 +516843|39000304777|2 +517017|39000304779|2 +517015|39000304780|2 +517142|39000304783|2 +517432|39000304784|2 +517497|39000304785|2 +517487|39000304786|2 +517547|39000304790|2 +517369|39000304791|2 +517515|39000304792|2 +517657|39000304793|2 +517564|39000304795|2 +517498|39000304796|2 +517601|39000304797|2 +517394|39000304799|2 +517484|39000304800|2 +517513|39000304801|2 +517627|39000304802|2 +517385|39000304803|2 +517410|39000304804|2 +517516|39000304808|2 +517551|39000304809|2 +517658|39000304810|2 +517541|39000304812|2 +517628|39000304814|2 +517659|39000304817|2 +517660|39000304819|2 +517480|39000304820|2 +517433|39000304821|2 +517431|39000304822|2 +517571|39000304823|2 +517941|39000304829|2 +518023|39000304830|2 +518072|39000304832|2 +518037|39000304836|2 +518040|39000304839|2 +518004|39000304842|2 +517946|39000304843|2 +517979|39000304847|2 +517944|39000304849|2 +518087|39000304850|2 +518101|39000304851|2 +517938|39000304854|2 +518124|39000304857|2 +518129|39000304858|2 +518149|39000304860|2 +518434|39000304861|2 +518302|39000304863|2 +518363|39000304864|2 +518359|39000304868|2 +518167|39000304869|2 +518387|39000304871|2 +518168|39000304872|2 +518208|39000304876|2 +518430|39000304877|2 +518407|39000304880|2 +557013|39000304882|2 +518179|39000304884|2 +518337|39000304888|2 +518441|39000304890|2 +518191|39000304891|2 +518401|39000304892|2 +518599|39000304895|2 +519044|39000304899|2 +519168|39000304901|2 +519263|39000304902|2 +519231|39000304903|2 +519580|39000304909|2 +520053|39000304913|2 +520274|39000304915|2 +520257|39000304918|2 +701047|39000304921|2 +520461|39000304922|2 +520460|39000304926|2 +520499|39000304930|2 +776089|39000304931|2 +520742|39000304932|2 +520749|39000304935|2 +520750|39000304937|2 +521143|39000304940|2 +521144|39000304941|2 +521149|39000304942|2 +521147|39000304943|2 +521141|39000304945|2 +521247|39000304947|2 +521212|39000304949|2 +521199|39000304950|2 +521281|39000304953|2 +521275|39000304954|2 +521307|39000304955|2 +521311|39000304956|2 +521312|39000304957|2 +521308|39000304958|2 +521315|39000304960|2 +521317|39000304962|2 +521516|39000304964|2 +521424|39000304965|2 +718165|39000304966|2 +521456|39000304968|2 +521518|39000304969|2 +521457|39000304970|2 +521414|39000304971|2 +521478|39000304974|2 +521367|39000304975|2 +521479|39000304977|2 +521507|39000304978|2 +521464|39000304980|2 +521458|39000304981|2 +521382|39000304982|2 +521519|39000304988|2 +521490|39000304989|2 +521461|39000304990|2 +521520|39000304992|2 +521360|39000304994|4 +521542|39000304997|2 +743669|39000304999|2 +521823|39000305005|2 +521832|39000305006|2 +522175|39000305010|2 +522821|39000305015|2 +522760|39000305016|2 +522939|39000305019|2 +522936|39000305020|2 +522915|39000305021|2 +522899|39000305023|2 +522959|39000305025|2 +523281|39000305037|2 +523270|39000305038|2 +523311|39000305040|2 +523344|39000305041|2 +523545|39000305043|2 +523538|39000305044|2 +523544|39000305045|2 +523524|39000305046|2 +523751|39000305049|2 +523752|39000305050|2 +523931|39000305053|2 +642212|39000305055|2 +524052|39000305056|2 +524050|39000305057|2 +524051|39000305058|2 +524127|39000305062|2 +524322|39000305063|2 +524387|39000305064|2 +524388|39000305065|2 +524590|39000305067|2 +524740|39000305069|2 +524734|39000305071|2 +524735|39000305072|2 +524741|39000305073|2 +525078|39000305075|2 +525269|39000305078|2 +525851|39000305084|2 +525849|39000305085|2 +525847|39000305086|2 +525850|39000305087|2 +525846|39000305089|2 +526146|39000305091|2 +526151|39000305092|2 +871588|39000305093|2 +526100|39000305095|2 +526336|39000305098|2 +526057|39000305100|2 +526058|39000305103|2 +526135|39000305104|2 +526203|39000305105|2 +526211|39000305106|2 +526219|39000305108|2 +526204|39000305110|2 +526220|39000305112|2 +526209|39000305113|2 +526389|39000305115|2 +526388|39000305116|2 +755273|39000305120|2 +526529|39000305121|2 +526673|39000305122|2 +526606|39000305127|2 +526659|39000305128|2 +526596|39000305130|2 +526461|39000305133|2 +526530|39000305135|2 +865788|39000305138|2 +526556|39000305139|2 +526460|39000305141|2 +526424|39000305142|2 +526637|39000305146|2 +526551|39000305147|2 +526635|39000305154|2 +526607|39000305157|2 +526471|39000305159|2 +526642|39000305160|2 +526505|39000305162|2 +526763|39000305175|2 +526777|39000305179|2 +526713|39000305180|2 +526544|39000305184|2 +526545|39000305186|2 +526546|39000305188|2 +526714|39000305196|2 +526429|39000305197|2 +526566|39000305201|2 +526580|39000305202|2 +526643|39000305203|2 +526581|39000305204|2 +526779|39000305205|2 +526690|39000305207|2 +526644|39000305208|2 +526462|39000305212|2 +526413|39000305213|2 +526800|39000305216|2 +526992|39000305218|2 +526993|39000305219|2 +526882|39000305222|2 +526956|39000305223|2 +526869|39000305232|2 +526959|39000305233|2 +526870|39000305234|2 +527243|39000305235|2 +527260|39000305236|2 +527309|39000305238|2 +527324|39000305240|2 +527380|39000305248|2 +527423|39000305249|2 +527381|39000305250|2 +527421|39000305252|2 +538570|39000305254|2 +527414|39000305256|2 +661669|39000305259|2 +502651|39000305261|2 +527405|39000305263|2 +527373|39000305265|2 +527386|39000305266|2 +527415|39000305267|2 +527420|39000305268|2 +527441|39000305269|2 +713291|39000305270|2 +527474|39000305274|2 +527475|39000305275|2 +527478|39000305276|2 +527517|39000305280|2 +527524|39000305281|2 +527578|39000305283|2 +527555|39000305284|2 +527598|39000305287|2 +527651|39000305293|2 +527652|39000305294|2 +527643|39000305296|2 +527653|39000305297|2 +527654|39000305301|2 +527658|39000305303|2 +527662|39000305307|2 +527665|39000305309|2 +527659|39000305310|2 +527675|39000305312|2 +527684|39000305313|2 +527673|39000305314|2 +527741|39000305316|2 +527904|39000305320|2 +527863|39000305321|2 +527879|39000305323|2 +527951|39000305329|2 +527944|39000305330|2 +527940|39000305334|2 +527952|39000305337|2 +527973|39000305340|2 +527928|39000305345|2 +527929|39000305348|2 +527974|39000305350|2 +527920|39000305353|2 +527941|39000305355|2 +527969|39000305358|2 +527923|39000305359|2 +527924|39000305360|2 +527942|39000305364|2 +527975|39000305365|2 +528017|39000305370|2 +528019|39000305371|2 +528018|39000305373|2 +528023|39000305375|2 +528074|39000305376|2 +528084|39000305380|2 +528246|39000305385|2 +528231|39000305386|2 +528257|39000305387|2 +528221|39000305389|2 +528247|39000305390|2 +528215|39000305392|2 +528222|39000305394|2 +681372|39000305395|2 +528258|39000305396|2 +528259|39000305397|2 +528216|39000305399|2 +528279|39000305403|2 +528256|39000305404|2 +528280|39000305405|2 +528232|39000305407|2 +528251|39000305408|2 +1127914|39000305411|2 +528565|39000305413|2 +528597|39000305414|2 +528636|39000305415|2 +528580|39000305416|2 +528637|39000305419|2 +528646|39000305420|2 +528600|39000305423|2 +528724|39000305428|2 +863586|39000305433|2 +529561|39000305434|2 +529560|39000305435|2 +530006|39000305440|2 +530079|39000305442|2 +530172|39000305443|2 +530311|39000305445|2 +530309|39000305446|2 +1269454|39000305449|2 +530496|39000305450|2 +530597|39000305451|2 +530690|39000305452|2 +530691|39000305453|2 +530721|39000305454|2 +530713|39000305455|2 +530837|39000305457|2 +530836|39000305459|2 +488149|39000305460|2 +530927|39000305461|2 +530945|39000305462|2 +530944|39000305463|2 +531731|39000305471|2 +531805|39000305472|2 +532083|39000305476|2 +532253|39000305480|2 +532247|39000305481|2 +532276|39000305482|2 +532450|39000305485|2 +532445|39000305486|2 +532437|39000305487|2 +532464|39000305490|2 +532458|39000305492|2 +533047|39000305495|2 +533051|39000305496|2 +533241|39000305497|2 +533242|39000305498|2 +533390|39000305499|2 +533601|39000305504|2 +533992|39000305509|2 +533978|39000305512|2 +534079|39000305513|2 +534167|39000305514|2 +534112|39000305515|4 +534417|39000305519|2 +534399|39000305520|2 +534533|39000305522|2 +534538|39000305523|2 +534592|39000305526|2 +688964|39000305527|2 +535136|39000305531|2 +535213|39000305536|2 +535239|39000305537|2 +535218|39000305538|2 +535178|39000305541|2 +535169|39000305542|2 +535186|39000305545|2 +535214|39000305548|2 +535225|39000305549|2 +535200|39000305550|2 +535217|39000305551|2 +535221|39000305552|2 +535210|39000305553|2 +535242|39000305555|2 +535226|39000305556|2 +535180|39000305558|2 +535189|39000305559|2 +535284|39000305563|2 +535267|39000305564|2 +535286|39000305565|2 +535297|39000305566|2 +535291|39000305567|2 +535302|39000305570|2 +535275|39000305573|2 +535279|39000305574|2 +535276|39000305575|2 +535262|39000305576|2 +535500|39000305579|2 +535446|39000305580|2 +535593|39000305581|2 +535521|39000305584|2 +535594|39000305586|2 +535590|39000305587|2 +535499|39000305588|2 +535771|39000305589|2 +535629|39000305591|2 +536000|39000305593|2 +535967|39000305598|2 +535968|39000305601|2 +535974|39000305602|2 +535965|39000305605|2 +536041|39000305606|2 +536034|39000305607|2 +536033|39000305610|2 +536042|39000305611|2 +536047|39000305612|2 +536035|39000305613|2 +536044|39000305614|2 +536045|39000305615|2 +536036|39000305617|2 +536076|39000305621|2 +536335|39000305623|2 +536307|39000305628|2 +536256|39000305632|4 +536272|39000305635|2 +536331|39000305638|2 +536298|39000305642|2 +536332|39000305643|2 +536284|39000305644|2 +536289|39000305645|2 +536273|39000305646|2 +536302|39000305648|2 +536326|39000305649|2 +536268|39000305651|2 +536329|39000305653|2 +536345|39000305654|2 +536411|39000305659|2 +536412|39000305660|2 +536413|39000305662|2 +536415|39000305666|2 +536748|39000305669|2 +537183|39000305670|2 +537180|39000305671|2 +537181|39000305672|2 +537268|39000305674|2 +537292|39000305675|2 +537511|39000305678|2 +537516|39000305679|2 +537472|39000305680|2 +537451|39000305681|2 +537436|39000305687|2 +537534|39000305689|2 +537495|39000305690|2 +537452|39000305692|2 +514100|39000305694|2 +537450|39000305698|2 +537453|39000305700|2 +537525|39000305701|2 +537501|39000305703|2 +537670|39000305707|2 +537671|39000305709|2 +538105|39000305717|2 +538209|39000305720|2 +538007|39000305721|2 +538102|39000305722|2 +538149|39000305724|2 +538141|39000305726|2 +538562|39000305729|2 +538744|39000305734|2 +538831|39000305736|2 +538762|39000305737|2 +538813|39000305738|2 +538745|39000305740|2 +538764|39000305742|2 +538826|39000305743|2 +538815|39000305744|2 +881008|39000305745|2 +538741|39000305747|2 +538765|39000305748|2 +538766|39000305749|2 +538746|39000305750|2 +538742|39000305752|2 +538767|39000305755|2 +538749|39000305756|2 +538791|39000305757|2 +538743|39000305758|2 +538881|39000305761|2 +538891|39000305763|2 +538888|39000305764|2 +538882|39000305765|2 +538868|39000305768|2 +538985|39000305769|2 +539006|39000305772|2 +538954|39000305774|2 +539030|39000305775|2 +539007|39000305776|2 +539088|39000305778|2 +539087|39000305779|2 +539085|39000305781|2 +539084|39000305782|2 +541420|39000305786|2 +541139|39000305787|2 +540207|39000305789|2 +541548|39000305791|2 +541924|39000305795|2 +539892|39000305796|2 +541140|39000305797|2 +540028|39000305798|2 +688999|39000305799|2 +541141|39000305801|2 +540680|39000305807|4 +542370|39000305817|2 +542372|39000305818|2 +542479|39000305824|2 +542608|39000305826|2 +542621|39000305829|2 +542607|39000305830|2 +542815|39000305832|2 +542837|39000305837|2 +542835|39000305838|2 +542836|39000305839|2 +542838|39000305840|2 +542983|39000305845|2 +542932|39000305847|2 +542937|39000305849|2 +542969|39000305851|2 +543033|39000305853|2 +542890|39000305855|2 +542859|39000305856|2 +542876|39000305857|2 +542860|39000305860|2 +542908|39000305861|2 +542944|39000305862|2 +542985|39000305863|2 +542970|39000305864|2 +542958|39000305865|2 +542952|39000305866|2 +543014|39000305867|2 +542971|39000305868|2 +542939|39000305870|2 +543017|39000305871|2 +542940|39000305874|2 +542941|39000305875|2 +542886|39000305877|2 +542954|39000305879|2 +543009|39000305881|2 +542927|39000305882|2 +543102|39000305884|2 +543160|39000305886|2 +543133|39000305888|2 +543150|39000305889|2 +543146|39000305890|2 +543134|39000305891|2 +543447|39000305893|2 +543609|39000305898|2 +543615|39000305900|2 +543612|39000305901|2 +543721|39000305903|2 +543940|39000305907|2 +543943|39000305908|2 +543948|39000305909|2 +544096|39000305911|2 +544107|39000305912|2 +544116|39000305913|2 +545329|39000305918|2 +545325|39000305919|2 +545577|39000305920|2 +545648|39000305921|2 +545650|39000305922|2 +545952|39000305925|2 +546126|39000305931|2 +546269|39000305935|2 +546267|39000305937|2 +546329|39000305938|2 +546530|39000305940|2 +488611|39000305941|2 +546625|39000305942|2 +546626|39000305945|2 +546710|39000305946|2 +547012|39000305949|2 +547005|39000305950|2 +547196|39000305953|2 +547090|39000305954|2 +547105|39000305955|2 +547048|39000305956|2 +547139|39000305958|2 +547366|39000305960|2 +901133|39000305962|2 +547480|39000305963|2 +547820|39000305964|2 +548067|39000305965|2 +547632|39000305966|2 +548064|39000305968|2 +547887|39000305972|2 +547650|39000305973|2 +548226|39000305975|2 +548207|39000305977|2 +548256|39000305979|2 +548251|39000305980|2 +548245|39000305981|2 +551464|39000305982|2 +548982|39000305984|2 +548977|39000305985|2 +549027|39000305987|2 +548777|39000305990|2 +549262|39000305994|2 +549435|39000305998|2 +549408|39000306000|2 +549409|39000306002|2 +549668|39000306003|2 +549896|39000306007|2 +549891|39000306008|2 +549938|39000306011|2 +550130|39000306013|2 +550109|39000306014|2 +786058|39000306015|2 +550161|39000306016|2 +550175|39000306017|2 +550195|39000306018|2 +597980|39000306022|2 +608724|39000306032|2 +551129|39000306037|2 +551134|39000306038|2 +551226|39000306039|2 +551219|39000306040|2 +551237|39000306041|2 +665554|39000306045|2 +551275|39000306047|2 +454425|39000306049|2 +551328|39000306050|2 +551574|39000306053|2 +551548|39000306054|2 +551651|39000306055|2 +551652|39000306057|2 +551645|39000306058|2 +577438|39000306059|2 +551881|39000306062|2 +551889|39000306063|2 +551874|39000306065|2 +552562|39000306067|2 +553062|39000306069|2 +552345|39000306071|2 +552360|39000306072|2 +877862|39000306073|2 +552565|39000306076|2 +553532|39000306079|2 +553849|39000306081|2 +553862|39000306082|2 +553929|39000306085|2 +554328|39000306089|2 +554336|39000306090|2 +554403|39000306095|2 +554359|39000306096|2 +554409|39000306097|2 +554410|39000306098|2 +554900|39000306100|2 +555484|39000306104|2 +555930|39000306107|2 +556025|39000306110|2 +556026|39000306111|2 +556022|39000306112|2 +556023|39000306113|2 +556093|39000306115|2 +556653|39000306117|2 +556860|39000306120|2 +556864|39000306121|2 +556907|39000306124|2 +556931|39000306128|2 +556978|39000306129|2 +557017|39000306133|2 +557027|39000306134|2 +557003|39000306135|2 +557023|39000306136|2 +557498|39000306139|2 +557752|39000306140|2 +558004|39000306146|2 +558036|39000306148|2 +558207|39000306151|2 +558221|39000306152|2 +558090|39000306153|2 +558176|39000306157|2 +558231|39000306158|2 +558199|39000306159|2 +558129|39000306161|2 +558185|39000306162|2 +558322|39000306163|2 +558603|39000306165|2 +558659|39000306166|2 +558740|39000306168|2 +558731|39000306169|2 +559185|39000306172|2 +559069|39000306174|2 +559250|39000306175|2 +559070|39000306177|2 +559087|39000306179|2 +559424|39000306180|2 +559689|39000306183|2 +559718|39000306185|2 +559724|39000306186|2 +559794|39000306188|2 +559830|39000306190|2 +559885|39000306191|2 +559925|39000306192|2 +560174|39000306195|2 +560162|39000306196|2 +560153|39000306197|2 +560269|39000306198|2 +560342|39000306199|2 +560417|39000306202|2 +560687|39000306203|2 +560639|39000306205|2 +563247|39000306208|2 +560884|39000306210|2 +560970|39000306211|2 +561729|39000306218|2 +561983|39000306221|2 +562850|39000306225|2 +562947|39000306227|2 +562995|39000306228|2 +562997|39000306229|2 +563075|39000306230|2 +563071|39000306231|2 +563201|39000306232|2 +563399|39000306233|2 +563558|39000306234|2 +563559|39000306235|2 +563622|39000306236|2 +563683|39000306237|2 +563598|39000306238|2 +563942|39000306239|2 +563977|39000306240|2 +564345|39000306241|2 +564338|39000306245|4 +564335|39000306248|2 +564337|39000306249|4 +564259|39000306253|2 +564528|39000306257|2 +564554|39000306260|2 +564557|39000306261|2 +564902|39000306262|2 +565320|39000306264|2 +565280|39000306266|2 +565192|39000306270|2 +565288|39000306271|2 +565446|39000306282|2 +565458|39000306283|2 +565445|39000306284|2 +565466|39000306285|2 +565448|39000306287|2 +565442|39000306289|2 +565433|39000306290|2 +565440|39000306291|2 +565779|39000306295|2 +565836|39000306298|2 +566127|39000306302|2 +566160|39000306303|2 +567115|39000306306|2 +567242|39000306308|2 +567239|39000306311|2 +567250|39000306312|2 +567233|39000306313|2 +567468|39000306314|2 +567429|39000306315|2 +567343|39000306317|2 +567400|39000306323|2 +567469|39000306324|2 +567376|39000306326|2 +567413|39000306331|2 +567509|39000306332|2 +567342|39000306338|2 +567414|39000306339|2 +567506|39000306340|2 +567944|39000306350|4 +568105|39000306354|2 +568095|39000306355|2 +568125|39000306356|2 +568131|39000306357|2 +568108|39000306359|2 +568101|39000306360|2 +568099|39000306362|2 +568130|39000306363|2 +568122|39000306364|2 +568115|39000306373|2 +568071|39000306376|2 +568127|39000306380|2 +568092|39000306382|2 +568067|39000306384|2 +568078|39000306386|2 +568140|39000306388|2 +678197|39000306390|2 +568201|39000306391|2 +568269|39000306392|2 +568342|39000306393|2 +568452|39000306398|2 +568343|39000306400|2 +568211|39000306401|2 +634286|39000306402|2 +568801|39000306404|2 +568915|39000306405|2 +568906|39000306407|2 +568843|39000306408|2 +568869|39000306410|2 +568895|39000306411|2 +569347|39000306415|2 +569332|39000306418|2 +569377|39000306419|2 +569379|39000306422|2 +569447|39000306423|2 +569442|39000306427|2 +669825|39000306430|2 +569440|39000306431|2 +558155|39000306433|2 +569464|39000306435|2 +569470|39000306437|2 +569890|39000306441|2 +570100|39000306444|2 +570165|39000306445|2 +570457|39000306449|2 +632915|39000306450|2 +570846|39000306454|4 +571051|39000306458|2 +571031|39000306460|2 +571062|39000306462|2 +571070|39000306463|2 +571087|39000306464|2 +571053|39000306469|2 +571032|39000306470|2 +571089|39000306471|2 +571071|39000306473|2 +572278|39000306476|2 +572340|39000306478|2 +572435|39000306481|2 +572565|39000306482|2 +572618|39000306484|2 +829093|39000306485|4 +573036|39000306488|2 +572897|39000306489|2 +573103|39000306491|2 +573127|39000306492|2 +573141|39000306493|2 +554908|39000306496|2 +573421|39000306498|2 +573530|39000306501|2 +573455|39000306502|2 +573564|39000306504|2 +574064|39000306511|2 +574119|39000306513|2 +574182|39000306514|2 +574575|39000306515|2 +574244|39000306518|2 +860970|39000306522|2 +574795|39000306524|2 +574807|39000306528|2 +575117|39000306536|2 +575337|39000306537|2 +575129|39000306539|2 +575443|39000306542|2 +575469|39000306543|2 +575490|39000306544|2 +575460|39000306546|2 +575479|39000306547|2 +613414|39000306549|2 +576213|39000306551|2 +576259|39000306552|2 +576708|39000306555|2 +576968|39000306558|2 +576973|39000306559|2 +576982|39000306560|2 +577028|39000306563|2 +577029|39000306565|2 +577191|39000306571|2 +577169|39000306572|2 +577219|39000306573|2 +577217|39000306574|2 +577221|39000306576|2 +577222|39000306578|2 +577416|39000306585|2 +577422|39000306586|2 +577417|39000306587|2 +577789|39000306591|2 +577792|39000306592|2 +577798|39000306593|2 +577797|39000306594|2 +577793|39000306595|2 +578817|39000306601|2 +579074|39000306609|2 +579071|39000306611|2 +579066|39000306612|2 +578993|39000306614|2 +579021|39000306615|2 +578969|39000306620|2 +579012|39000306622|2 +579013|39000306623|2 +579586|39000306631|2 +579604|39000306632|2 +579699|39000306633|2 +579820|39000306636|2 +579866|39000306638|2 +579966|39000306645|2 +579955|39000306647|2 +579984|39000306648|2 +579972|39000306653|2 +580044|39000306654|2 +580056|39000306655|2 +580057|39000306656|2 +580131|39000306657|2 +580132|39000306658|2 +580451|39000306662|2 +580459|39000306665|2 +580273|39000306667|2 +580435|39000306668|2 +580257|39000306675|2 +580286|39000306677|2 +580408|39000306682|2 +580287|39000306686|2 +580256|39000306687|2 +580427|39000306690|2 +580301|39000306691|2 +580311|39000306695|2 +580312|39000306696|2 +580392|39000306698|2 +580258|39000306705|2 +580297|39000306706|2 +580394|39000306707|2 +580497|39000306708|2 +580500|39000306709|2 +580525|39000306713|2 +580811|39000306719|2 +581055|39000306723|2 +581210|39000306731|2 +581239|39000306732|2 +581240|39000306733|2 +581265|39000306735|2 +581290|39000306736|2 +581301|39000306737|2 +581378|39000306743|2 +581379|39000306745|2 +581459|39000306755|2 +581464|39000306756|2 +581969|39000306761|2 +582052|39000306767|2 +581973|39000306768|2 +582053|39000306770|2 +582186|39000306774|2 +582216|39000306775|2 +582220|39000306777|2 +582183|39000306779|2 +582297|39000306780|2 +582272|39000306782|2 +582276|39000306783|2 +582305|39000306784|2 +733625|39000306788|2 +582354|39000306791|2 +582390|39000306792|2 +582438|39000306794|2 +582534|39000306795|2 +582535|39000306796|2 +582536|39000306800|2 +582818|39000306807|2 +582662|39000306808|2 +582840|39000306810|2 +582681|39000306814|2 +582720|39000306816|2 +582810|39000306818|2 +582724|39000306819|2 +582692|39000306820|2 +582862|39000306822|2 +582866|39000306831|2 +582980|39000306834|2 +582949|39000306836|2 +582899|39000306843|2 +582900|39000306844|2 +582950|39000306845|2 +582981|39000306846|2 +582999|39000306847|2 +583129|39000306853|2 +583124|39000306855|2 +583036|39000306856|2 +583082|39000306857|2 +583033|39000306862|2 +583261|39000306869|2 +583503|39000306871|2 +583728|39000306872|2 +583723|39000306874|2 +583724|39000306875|2 +583721|39000306876|2 +583693|39000306877|2 +583698|39000306878|2 +583695|39000306879|2 +583703|39000306880|2 +583709|39000306882|2 +583718|39000306883|2 +583705|39000306884|2 +583700|39000306885|2 +583726|39000306886|2 +583699|39000306889|2 +583697|39000306890|2 +583736|39000306891|2 +583869|39000306899|2 +583874|39000306900|2 +1245080|39000306901|2 +808024|39000306903|2 +583866|39000306904|2 +583892|39000306905|2 +583889|39000306906|4 +584111|39000306908|2 +584175|39000306910|2 +584317|39000306912|2 +584420|39000306913|2 +584415|39000306914|2 +584419|39000306915|2 +584424|39000306916|2 +584779|39000306917|2 +584778|39000306918|2 +584781|39000306919|2 +584782|39000306920|2 +584918|39000306922|2 +584915|39000306923|2 +585141|39000306926|2 +585166|39000306927|2 +585193|39000306931|2 +585454|39000306934|2 +585382|39000306935|2 +585418|39000306936|2 +585455|39000306942|2 +585520|39000306946|2 +585529|39000306947|2 +585531|39000306950|2 +585583|39000306957|2 +585748|39000306958|2 +585749|39000306959|2 +585755|39000306961|2 +585772|39000306962|2 +881947|39000306963|2 +586002|39000306964|2 +469732|39000306965|2 +586049|39000306966|2 +586738|39000306967|2 +586983|39000306969|2 +586979|39000306970|2 +587089|39000306971|2 +587071|39000306972|2 +587056|39000306973|2 +587044|39000306974|2 +587042|39000306975|2 +587045|39000306976|2 +587033|39000306977|2 +587164|39000306979|2 +587162|39000306980|2 +587158|39000306981|2 +587215|39000306983|2 +587212|39000306984|2 +587285|39000306986|2 +587289|39000306987|4 +587369|39000306988|2 +587222|39000306989|2 +587313|39000306993|2 +587341|39000306994|2 +587361|39000306995|2 +587618|39000307003|2 +587812|39000307004|2 +588128|39000307006|2 +588250|39000307009|2 +588257|39000307010|2 +588254|39000307011|2 +588248|39000307012|2 +588243|39000307014|2 +588533|39000307016|2 +588646|39000307018|2 +588643|39000307019|2 +588650|39000307020|2 +588647|39000307021|2 +588875|39000307025|2 +588872|39000307028|2 +588973|39000307031|2 +588974|39000307032|2 +589364|39000307035|2 +589363|39000307038|2 +589362|39000307039|2 +589365|39000307041|2 +589450|39000307042|2 +589549|39000307043|2 +589550|39000307045|2 +589774|39000307047|2 +589759|39000307048|2 +589769|39000307049|2 +589772|39000307050|2 +589980|39000307052|2 +590710|39000307055|2 +590717|39000307056|2 +590811|39000307058|2 +590927|39000307063|2 +581254|39000307064|2 +591187|39000307066|2 +591820|39000307067|4 +591619|39000307075|2 +591395|39000307080|2 +591295|39000307082|2 +592189|39000307085|2 +592178|39000307086|2 +592117|39000307087|2 +592663|39000307091|2 +593114|39000307092|2 +593115|39000307093|2 +593180|39000307094|2 +593202|39000307095|2 +593204|39000307097|2 +593207|39000307098|2 +593206|39000307099|2 +593307|39000307100|2 +593351|39000307103|2 +593363|39000307108|2 +593367|39000307109|2 +547935|39000307110|2 +593550|39000307112|2 +593984|39000307117|2 +593975|39000307118|2 +594095|39000307121|2 +594247|39000307126|2 +594246|39000307130|2 +594232|39000307131|2 +594182|39000307133|2 +594294|39000307135|2 +594312|39000307139|2 +594632|39000307141|2 +594741|39000307144|2 +595104|39000307149|2 +595089|39000307150|2 +595103|39000307151|2 +595175|39000307153|2 +595534|39000307156|2 +595696|39000307157|2 +596102|39000307160|2 +596320|39000307162|2 +597321|39000307165|2 +597217|39000307168|2 +597018|39000307170|2 +597532|39000307172|2 +597779|39000307175|2 +597889|39000307180|2 +597887|39000307181|2 +554464|39000307183|2 +597961|39000307184|2 +598011|39000307185|2 +598020|39000307187|2 +598220|39000307191|2 +598227|39000307193|2 +598226|39000307195|2 +598301|39000307201|2 +598303|39000307206|2 +598362|39000307208|2 +598345|39000307209|2 +872504|39000307210|2 +598490|39000307214|2 +598478|39000307215|2 +598538|39000307216|2 +598566|39000307217|2 +758993|39000307219|2 +598698|39000307223|2 +598753|39000307228|2 +599334|39000307229|2 +598879|39000307230|2 +599884|39000307240|2 +599821|39000307241|2 +599639|39000307242|2 +600044|39000307243|2 +599560|39000307245|2 +599702|39000307246|2 +599522|39000307249|2 +599822|39000307253|2 +599618|39000307254|2 +599645|39000307256|2 +599614|39000307257|2 +599796|39000307258|2 +599738|39000307259|2 +599882|39000307260|2 +599701|39000307261|2 +762668|39000307262|2 +599820|39000307263|2 +600098|39000307269|2 +475548|39000307270|2 +599707|39000307271|2 +599937|39000307272|2 +650280|39000307275|2 +600500|39000307278|2 +600494|39000307280|2 +600497|39000307281|2 +600492|39000307283|2 +600498|39000307284|2 +600582|39000307288|2 +600581|39000307291|2 +600859|39000307293|2 +600836|39000307294|2 +600858|39000307295|2 +600874|39000307297|2 +600854|39000307298|2 +601082|39000307304|2 +601236|39000307306|2 +601383|39000307307|2 +601924|39000307310|2 +602142|39000307311|2 +602332|39000307313|2 +602738|39000307315|2 +602731|39000307317|2 +603225|39000307324|2 +603566|39000307327|2 +603662|39000307329|2 +603672|39000307330|2 +603725|39000307332|2 +603865|39000307335|2 +603935|39000307336|2 +603866|39000307338|2 +604132|39000307339|2 +604145|39000307340|2 +604143|39000307343|2 +605092|39000307350|2 +605611|39000307362|2 +605748|39000307363|2 +605813|39000307364|2 +605866|39000307365|2 +605929|39000307366|2 +606314|39000307368|2 +606118|39000307373|2 +606534|39000307376|2 +606533|39000307377|2 +606530|39000307378|2 +606538|39000307380|2 +606732|39000307383|2 +606794|39000307385|2 +606790|39000307387|2 +607641|39000307397|4 +607629|39000307398|2 +607937|39000307403|4 +608314|39000307412|2 +608292|39000307414|2 +608302|39000307415|2 +608572|39000307420|2 +608510|39000307421|2 +608506|39000307423|2 +608458|39000307424|2 +608722|39000307426|2 +609214|39000307429|2 +609747|39000307431|2 +609225|39000307434|2 +609967|39000307435|2 +610017|39000307436|2 +610006|39000307437|2 +610023|39000307439|2 +610025|39000307441|2 +610050|39000307443|2 +610126|39000307444|2 +610225|39000307446|2 +738164|39000307447|2 +610213|39000307450|2 +610171|39000307451|2 +610219|39000307452|2 +610198|39000307455|2 +610205|39000307456|2 +610187|39000307458|2 +610188|39000307459|2 +610154|39000307460|2 +610194|39000307461|2 +610166|39000307463|2 +610186|39000307464|2 +610161|39000307465|2 +610229|39000307466|2 +610182|39000307467|2 +610355|39000307469|2 +610798|39000307471|2 +610806|39000307472|2 +610810|39000307473|2 +610814|39000307474|2 +610807|39000307475|2 +610831|39000307480|2 +611111|39000307482|2 +611136|39000307483|2 +612145|39000307486|2 +612081|39000307489|2 +612910|39000307491|2 +613267|39000307493|2 +613291|39000307494|2 +613446|39000307498|2 +613714|39000307499|2 +613841|39000307502|2 +613600|39000307503|2 +613581|39000307504|2 +613582|39000307506|2 +613601|39000307508|2 +613487|39000307510|4 +614032|39000307511|2 +613900|39000307512|2 +613711|39000307518|2 +613556|39000307520|2 +613467|39000307521|2 +613421|39000307522|2 +613865|39000307524|2 +613739|39000307525|2 +613583|39000307528|2 +613843|39000307530|2 +613715|39000307531|2 +613991|39000307536|4 +613800|39000307537|2 +613494|39000307539|2 +613422|39000307542|2 +613842|39000307544|2 +613412|39000307551|2 +613985|39000307552|2 +614008|39000307555|2 +613495|39000307556|2 +614033|39000307560|2 +613496|39000307564|2 +613844|39000307566|2 +613716|39000307567|2 +613740|39000307568|2 +613717|39000307569|2 +613947|39000307571|2 +613866|39000307572|2 +613845|39000307573|2 +614009|39000307575|2 +613413|39000307576|2 +613503|39000307578|2 +613652|39000307579|2 +614034|39000307581|2 +613468|39000307582|2 +614035|39000307584|2 +597293|39000307585|2 +613948|39000307587|2 +613451|39000307589|2 +614010|39000307591|2 +613681|39000307592|2 +613452|39000307594|2 +613775|39000307595|2 +613718|39000307600|2 +613407|39000307602|2 +613481|39000307603|2 +613859|39000307609|2 +614011|39000307611|2 +613555|39000307618|2 +613727|39000307619|2 +614060|39000307623|2 +614102|39000307625|2 +614128|39000307628|2 +614093|39000307629|2 +614429|39000307634|2 +614451|39000307636|2 +614520|39000307637|2 +614525|39000307639|2 +614771|39000307640|2 +614769|39000307641|2 +614776|39000307643|2 +614773|39000307644|2 +614767|39000307647|2 +614937|39000307650|2 +614961|39000307651|2 +614984|39000307652|2 +614990|39000307656|2 +614985|39000307657|2 +614978|39000307658|2 +614991|39000307659|2 +614972|39000307660|2 +614962|39000307661|2 +614993|39000307663|2 +614977|39000307665|2 +615126|39000307666|2 +615363|39000307671|2 +615284|39000307672|2 +615257|39000307673|2 +615303|39000307674|2 +615332|39000307676|2 +615203|39000307677|2 +615382|39000307678|2 +615300|39000307679|2 +877975|39000307681|2 +615287|39000307682|4 +615339|39000307683|2 +615304|39000307686|2 +615351|39000307687|2 +615319|39000307690|2 +615288|39000307691|4 +615247|39000307692|2 +615260|39000307693|2 +772300|39000307694|2 +615305|39000307695|2 +615413|39000307696|2 +615220|39000307698|2 +615270|39000307699|2 +615404|39000307700|2 +615322|39000307703|2 +615311|39000307704|2 +615267|39000307705|2 +615248|39000307708|2 +615249|39000307714|2 +615210|39000307724|2 +615414|39000307729|2 +615226|39000307730|2 +615289|39000307733|4 +615256|39000307734|2 +615425|39000307735|2 +615430|39000307736|2 +615306|39000307737|2 +615229|39000307739|2 +615333|39000307741|2 +615334|39000307742|2 +615230|39000307743|2 +615356|39000307745|2 +615301|39000307746|2 +615386|39000307752|2 +615405|39000307754|2 +615227|39000307755|2 +615474|39000307756|2 +615481|39000307758|2 +615535|39000307759|2 +615472|39000307764|2 +514089|39000307768|2 +615701|39000307772|2 +615703|39000307774|2 +615697|39000307775|2 +482362|39000307776|2 +615711|39000307777|2 +615694|39000307780|2 +615727|39000307786|2 +615708|39000307787|2 +615922|39000307794|2 +482650|39000307807|2 +616140|39000307810|2 +616324|39000307813|2 +616344|39000307815|2 +616294|39000307817|2 +616842|39000307822|2 +616780|39000307823|2 +616823|39000307825|2 +616874|39000307827|2 +617051|39000307828|2 +616975|39000307831|2 +617247|39000307832|2 +617343|39000307834|2 +617647|39000307836|2 +617661|39000307837|2 +617654|39000307838|2 +617642|39000307839|2 +617655|39000307840|2 +617662|39000307841|2 +617794|39000307842|2 +617818|39000307843|2 +618089|39000307846|2 +618504|39000307848|2 +618512|39000307849|2 +618529|39000307850|2 +618534|39000307851|2 +618507|39000307853|2 +618510|39000307858|2 +618515|39000307859|2 +618506|39000307860|2 +618538|39000307863|2 +618532|39000307864|2 +618941|39000307871|2 +618942|39000307872|2 +619011|39000307873|2 +619077|39000307874|2 +619091|39000307876|2 +619092|39000307877|2 +619342|39000307878|2 +619431|39000307879|2 +452204|39000307880|2 +619508|39000307881|2 +619815|39000307883|2 +619832|39000307884|2 +619865|39000307886|2 +620233|39000307891|2 +620374|39000307894|2 +620355|39000307896|2 +620344|39000307897|2 +620360|39000307900|2 +620330|39000307901|2 +620383|39000307903|2 +620405|39000307904|2 +620346|39000307905|2 +620395|39000307906|2 +620353|39000307907|2 +620318|39000307909|2 +620341|39000307915|2 +620316|39000307916|2 +620388|39000307917|2 +620357|39000307918|2 +620446|39000307919|2 +620509|39000307920|2 +620503|39000307921|2 +620838|39000307923|2 +620723|39000307924|2 +620916|39000307925|2 +620774|39000307926|2 +620983|39000307928|2 +621156|39000307930|2 +621154|39000307931|2 +621149|39000307932|2 +621169|39000307933|2 +900509|39000307937|2 +622147|39000307938|4 +621850|39000307941|2 +621558|39000307943|2 +621869|39000307945|2 +621603|39000307946|2 +621290|39000307947|2 +622211|39000307949|2 +844854|39000307950|2 +621604|39000307952|2 +622102|39000307954|4 +622307|39000307955|2 +621578|39000307956|2 +621459|39000307957|2 +621655|39000307961|2 +621870|39000307962|2 +622405|39000307965|2 +622407|39000307966|2 +622462|39000307968|2 +622458|39000307970|2 +835114|39000307971|6 +622685|39000307972|2 +622686|39000307973|2 +622786|39000307975|2 +622948|39000307976|2 +622949|39000307977|2 +623048|39000307978|2 +623166|39000307979|2 +623033|39000307984|2 +623188|39000307986|2 +623183|39000307987|2 +623338|39000307989|2 +623453|39000307993|2 +623492|39000307995|2 +623652|39000307997|2 +623650|39000307998|2 +623839|39000307999|2 +624095|39000308002|2 +624147|39000308003|2 +624207|39000308004|2 +624010|39000308005|2 +624355|39000308009|2 +624357|39000308010|2 +624365|39000308011|2 +624360|39000308012|2 +624688|39000308014|4 +624508|39000308015|2 +624721|39000308021|2 +624632|39000308022|2 +624839|39000308023|2 +624840|39000308025|2 +612986|39000308029|2 +625055|39000308030|2 +625191|39000308032|2 +625296|39000308033|2 +625448|39000308034|2 +625527|39000308037|2 +865780|39000308038|2 +625827|39000308042|2 +625829|39000308043|2 +625856|39000308045|2 +625868|39000308046|2 +625928|39000308047|2 +625911|39000308048|2 +625988|39000308049|2 +626231|39000308053|4 +629380|39000308054|2 +627118|39000308060|2 +627166|39000308062|2 +627194|39000308068|2 +627169|39000308069|2 +627246|39000308072|2 +627389|39000308073|2 +627486|39000308074|2 +627655|39000308075|2 +627720|39000308077|2 +627623|39000308078|2 +627735|39000308079|2 +627764|39000308080|2 +627774|39000308086|2 +627766|39000308087|2 +627743|39000308088|2 +627780|39000308089|2 +627765|39000308090|2 +627816|39000308093|2 +628048|39000308098|2 +628581|39000308102|2 +628791|39000308104|2 +628782|39000308105|2 +628800|39000308108|2 +628798|39000308109|2 +628799|39000308110|2 +724746|39000308112|2 +628926|39000308115|2 +628960|39000308116|2 +629022|39000308117|2 +629966|39000308123|2 +629960|39000308127|2 +630120|39000308130|2 +630136|39000308131|2 +630139|39000308132|2 +630175|39000308134|2 +630330|39000308135|2 +857905|39000308136|2 +630332|39000308137|2 +630322|39000308138|2 +630326|39000308139|2 +630351|39000308145|2 +630352|39000308146|2 +630357|39000308148|2 +630353|39000308149|2 +630350|39000308150|2 +630454|39000308152|2 +630587|39000308157|2 +858085|39000308162|2 +631048|39000308163|2 +631074|39000308165|2 +840736|39000308166|2 +631202|39000308174|2 +631673|39000308177|2 +631685|39000308179|2 +631705|39000308180|2 +632065|39000308182|2 +632095|39000308183|2 +632003|39000308184|2 +632066|39000308186|2 +632057|39000308189|2 +632067|39000308191|2 +632068|39000308193|2 +632074|39000308194|2 +632126|39000308195|2 +632268|39000308197|2 +632444|39000308199|2 +632437|39000308201|2 +633371|39000308205|2 +633433|39000308207|2 +633447|39000308208|2 +633439|39000308209|2 +633442|39000308210|2 +633434|39000308211|2 +633464|39000308214|2 +633677|39000308218|2 +633609|39000308220|2 +714725|39000308225|2 +634020|39000308226|2 +634406|39000308231|2 +634783|39000308233|2 +634960|39000308234|2 +635571|39000308236|4 +635661|39000308241|2 +634784|39000308244|2 +635896|39000308246|2 +636150|39000308248|2 +636220|39000308249|2 +637019|39000308250|2 +901901|39000308253|2 +637218|39000308254|2 +637560|39000308255|2 +637862|39000308258|2 +638392|39000308265|2 +638551|39000308269|2 +638779|39000308271|2 +638780|39000308272|2 +638806|39000308277|2 +638831|39000308282|2 +638886|39000308285|2 +639071|39000308288|2 +639501|39000308291|2 +639690|39000308293|2 +639714|39000308295|2 +829741|39000308298|4 +639870|39000308299|2 +640412|39000308307|2 +640926|39000308317|2 +640927|39000308318|2 +640935|39000308319|2 +640920|39000308324|2 +641031|39000308331|2 +641064|39000308332|2 +641386|39000308336|2 +641424|39000308338|2 +641305|39000308339|2 +641507|39000308342|2 +641401|39000308343|2 +642156|39000308349|2 +642223|39000308350|2 +642411|39000308352|2 +642405|39000308353|2 +642446|39000308357|2 +642569|39000308362|2 +642780|39000308363|2 +643406|39000308366|4 +643800|39000308371|2 +643932|39000308372|2 +643930|39000308374|2 +643933|39000308375|2 +644170|39000308380|2 +644178|39000308381|2 +644181|39000308382|2 +644397|39000308384|2 +644404|39000308385|2 +644531|39000308388|2 +645077|39000308390|2 +645292|39000308391|2 +645293|39000308393|2 +645307|39000308394|2 +641754|39000308395|2 +641755|39000308397|2 +645749|39000308398|2 +645756|39000308400|2 +645925|39000308401|2 +645926|39000308402|2 +645942|39000308403|2 +646504|39000308407|2 +646707|39000308408|2 +646586|39000308410|2 +646681|39000308412|2 +646554|39000308416|2 +646585|39000308419|2 +646708|39000308420|2 +646682|39000308426|2 +646497|39000308428|2 +646475|39000308430|2 +646491|39000308431|2 +646801|39000308433|2 +647062|39000308434|2 +647058|39000308435|2 +647138|39000308437|2 +647136|39000308439|2 +647139|39000308440|2 +647236|39000308445|2 +647333|39000308447|2 +647408|39000308448|2 +647393|39000308449|2 +647389|39000308452|2 +647379|39000308453|2 +647399|39000308454|2 +647380|39000308456|2 +647390|39000308457|2 +647400|39000308458|2 +647394|39000308459|2 +647591|39000308462|2 +582915|39000308463|2 +647777|39000308464|2 +647827|39000308465|2 +647913|39000308468|2 +800199|39000308469|2 +647911|39000308470|2 +647909|39000308471|2 +647912|39000308472|2 +673858|39000308473|2 +647932|39000308474|2 +647933|39000308475|2 +648182|39000308479|2 +648235|39000308480|2 +648595|39000308482|2 +648601|39000308483|2 +648599|39000308486|2 +648944|39000308488|2 +648987|39000308489|2 +648988|39000308490|2 +649078|39000308492|2 +649086|39000308493|2 +649085|39000308494|2 +649091|39000308498|2 +649079|39000308500|2 +649092|39000308501|2 +649098|39000308503|2 +649093|39000308505|2 +649627|39000308509|2 +649625|39000308510|2 +649799|39000308511|2 +649823|39000308513|2 +649824|39000308514|2 +649818|39000308515|2 +649825|39000308517|2 +649826|39000308518|2 +649956|39000308519|2 +649980|39000308522|2 +649976|39000308523|2 +649983|39000308524|2 +649984|39000308525|2 +650273|39000308527|2 +650300|39000308528|2 +650275|39000308529|2 +650278|39000308530|2 +650286|39000308531|2 +650290|39000308533|2 +650295|39000308535|2 +650291|39000308538|2 +650329|39000308541|2 +650350|39000308543|2 +874163|39000308544|2 +650368|39000308545|2 +650400|39000308546|2 +650390|39000308547|2 +650357|39000308549|2 +650405|39000308555|2 +650503|39000308558|2 +650531|39000308559|2 +650524|39000308560|2 +650530|39000308561|2 +650542|39000308562|2 +672243|39000308563|2 +650549|39000308566|2 +650559|39000308568|2 +650557|39000308570|2 +650546|39000308572|2 +650548|39000308577|2 +650550|39000308578|2 +650619|39000308584|2 +650637|39000308585|2 +650643|39000308586|2 +650648|39000308587|2 +650676|39000308590|2 +650688|39000308591|2 +650693|39000308595|2 +650776|39000308598|2 +650757|39000308600|2 +650754|39000308603|2 +650769|39000308605|2 +650741|39000308606|2 +650784|39000308607|2 +650958|39000308608|2 +651185|39000308610|2 +651182|39000308612|2 +638136|39000308614|2 +651183|39000308615|2 +651197|39000308619|2 +651171|39000308621|2 +651283|39000308631|2 +651264|39000308632|2 +651258|39000308634|2 +651267|39000308635|2 +651249|39000308636|2 +651240|39000308638|2 +651263|39000308639|2 +651310|39000308641|2 +651335|39000308642|2 +651353|39000308643|2 +651384|39000308644|2 +651433|39000308652|2 +651425|39000308653|2 +651431|39000308654|2 +651444|39000308656|2 +651423|39000308660|2 +651523|39000308663|2 +651554|39000308667|2 +651540|39000308671|2 +651518|39000308672|2 +651670|39000308674|2 +651562|39000308679|2 +651654|39000308680|2 +690752|39000308682|2 +651537|39000308687|2 +651627|39000308688|2 +651519|39000308689|2 +651500|39000308693|2 +651693|39000308697|2 +651695|39000308698|2 +651845|39000308701|2 +651834|39000308702|2 +652038|39000308705|2 +652093|39000308707|2 +652088|39000308708|2 +652094|39000308709|2 +652098|39000308710|2 +652091|39000308711|2 +665011|39000308712|2 +736393|39000308713|2 +652085|39000308714|2 +652095|39000308715|2 +652087|39000308716|2 +652092|39000308717|2 +652100|39000308718|2 +652177|39000308723|2 +652141|39000308724|4 +652166|39000308725|2 +652171|39000308726|2 +652159|39000308727|2 +652153|39000308728|2 +500944|39000308729|2 +652152|39000308730|2 +652172|39000308732|2 +652150|39000308733|2 +652356|39000308736|2 +652310|39000308739|2 +652312|39000308740|2 +652294|39000308742|2 +652324|39000308744|2 +826729|39000308745|4 +652381|39000308746|2 +652301|39000308749|2 +652359|39000308750|2 +652406|39000308751|2 +652311|39000308755|2 +652360|39000308758|2 +652440|39000308759|2 +652283|39000308760|2 +652487|39000308761|2 +652387|39000308762|2 +652250|39000308766|2 +652462|39000308768|2 +652411|39000308770|2 +652357|39000308776|2 +652475|39000308777|2 +652566|39000308780|2 +652693|39000308782|2 +652687|39000308784|2 +652688|39000308785|2 +653165|39000308790|2 +653179|39000308792|2 +653333|39000308793|2 +653432|39000308794|2 +653583|39000308796|2 +653674|39000308799|2 +653705|39000308800|2 +653703|39000308802|2 +653740|39000308803|2 +653899|39000308808|2 +653902|39000308809|2 +653898|39000308810|2 +653903|39000308812|2 +653897|39000308813|2 +653946|39000308814|2 +653941|39000308815|2 +653952|39000308816|2 +653943|39000308817|2 +653953|39000308818|2 +653947|39000308819|2 +654232|39000308822|2 +654228|39000308823|2 +654285|39000308824|2 +654318|39000308825|2 +654397|39000308827|2 +654814|39000308829|2 +654706|39000308830|2 +654697|39000308831|2 +654535|39000308832|2 +654815|39000308833|2 +654751|39000308834|2 +654672|39000308835|2 +654536|39000308836|2 +654596|39000308837|2 +654770|39000308838|2 +654961|39000308839|2 +655654|39000308841|4 +655161|39000308843|2 +655536|39000308844|2 +655288|39000308846|2 +655988|39000308847|2 +655746|39000308848|2 +655255|39000308849|2 +655566|39000308854|2 +654976|39000308856|2 +655351|39000308857|2 +655567|39000308859|2 +655961|39000308861|2 +655712|39000308862|2 +655324|39000308864|2 +655247|39000308866|2 +655734|39000308868|2 +655428|39000308869|2 +655568|39000308871|2 +655992|39000308872|2 +656068|39000308873|2 +656072|39000308876|2 +656454|39000308877|2 +656692|39000308882|2 +656697|39000308884|2 +656693|39000308885|2 +656694|39000308886|2 +656699|39000308888|2 +656698|39000308890|2 +657051|39000308894|2 +657057|39000308896|2 +657065|39000308898|2 +657094|39000308899|2 +657261|39000308901|2 +888113|39000308902|2 +657311|39000308905|2 +658169|39000308911|2 +658734|39000308913|2 +659592|39000308920|2 +659838|39000308921|2 +659840|39000308922|2 +659839|39000308923|2 +659836|39000308924|2 +843675|39000308925|2 +660118|39000308926|2 +660301|39000308928|2 +660370|39000308929|2 +660180|39000308930|2 +660209|39000308933|2 +660259|39000308934|2 +660210|39000308936|2 +660341|39000308937|2 +660251|39000308939|2 +660526|39000308942|2 +660448|39000308944|2 +660440|39000308945|2 +660565|39000308946|2 +660614|39000308948|2 +661014|39000308954|2 +661007|39000308956|2 +661008|39000308957|2 +661010|39000308958|2 +661011|39000308959|2 +661009|39000308960|2 +661012|39000308961|2 +661135|39000308963|2 +661759|39000308964|2 +661844|39000308965|2 +662220|39000308969|2 +662233|39000308970|2 +662232|39000308975|2 +662219|39000308977|2 +662838|39000308984|2 +663315|39000308989|2 +663383|39000308992|2 +663375|39000308993|2 +663648|39000308994|2 +663639|39000308995|2 +663643|39000308996|2 +663644|39000308997|2 +663606|39000308998|2 +663640|39000308999|2 +663602|39000309000|2 +663729|39000309002|2 +663692|39000309006|2 +663730|39000309009|2 +663683|39000309010|2 +663681|39000309011|2 +663739|39000309014|2 +663740|39000309015|2 +663769|39000309016|2 +663741|39000309017|2 +663765|39000309018|2 +663734|39000309019|2 +663756|39000309020|2 +664077|39000309022|2 +664451|39000309025|2 +664628|39000309026|2 +665030|39000309029|2 +664961|39000309030|2 +665108|39000309031|2 +665384|39000309034|2 +665389|39000309035|2 +665401|39000309036|2 +665524|39000309039|2 +869046|39000309046|2 +666733|39000309051|2 +666792|39000309052|2 +666732|39000309054|2 +667897|39000309062|2 +667955|39000309063|2 +667900|39000309064|2 +667871|39000309065|2 +667901|39000309066|2 +667924|39000309067|2 +668358|39000309069|2 +668362|39000309070|2 +668453|39000309074|2 +668457|39000309075|2 +668448|39000309076|2 +668447|39000309077|2 +668802|39000309080|2 +668805|39000309081|2 +668795|39000309082|2 +668810|39000309084|2 +668811|39000309085|2 +668803|39000309089|2 +668796|39000309090|2 +668862|39000309094|2 +668931|39000309095|2 +668949|39000309096|2 +669076|39000309099|2 +669082|39000309100|2 +669138|39000309101|2 +669179|39000309102|2 +669108|39000309103|2 +669650|39000309107|2 +669563|39000309108|2 +669615|39000309109|2 +669633|39000309112|2 +669661|39000309113|2 +669664|39000309116|2 +669824|39000309122|2 +669810|39000309125|2 +669795|39000309126|2 +669794|39000309127|2 +669801|39000309129|2 +669823|39000309130|2 +670020|39000309132|2 +670095|39000309135|2 +670230|39000309136|2 +670413|39000309138|2 +670570|39000309140|2 +670440|39000309141|2 +670474|39000309142|2 +670593|39000309143|2 +670475|39000309144|2 +670618|39000309145|2 +670634|39000309147|2 +670632|39000309148|2 +670729|39000309150|2 +670708|39000309151|2 +670749|39000309152|2 +670760|39000309156|2 +670753|39000309158|2 +670733|39000309160|2 +670759|39000309161|2 +671630|39000309166|2 +671366|39000309167|2 +671631|39000309168|2 +671323|39000309170|2 +671225|39000309171|2 +671480|39000309173|2 +671568|39000309174|2 +671382|39000309175|2 +671547|39000309177|2 +671705|39000309178|2 +671751|39000309181|2 +671723|39000309183|2 +671843|39000309186|2 +671845|39000309187|2 +671854|39000309188|2 +671838|39000309191|2 +672059|39000309192|2 +672252|39000309193|2 +672238|39000309194|2 +672239|39000309196|2 +672003|39000309197|2 +671970|39000309198|2 +672333|39000309199|2 +672104|39000309200|2 +672054|39000309201|2 +672055|39000309202|2 +671996|39000309203|2 +672034|39000309205|2 +672019|39000309206|2 +671982|39000309208|2 +671983|39000309209|2 +672026|39000309219|2 +671962|39000309220|2 +672313|39000309221|2 +672250|39000309222|2 +672184|39000309225|2 +672132|39000309226|2 +672314|39000309227|2 +672065|39000309228|2 +672131|39000309233|2 +672236|39000309235|2 +671984|39000309237|2 +672010|39000309240|2 +672291|39000309243|2 +672133|39000309244|2 +672237|39000309245|2 +672089|39000309247|2 +671948|39000309248|2 +672306|39000309249|2 +672198|39000309251|2 +672088|39000309252|2 +672163|39000309254|2 +672020|39000309255|2 +672000|39000309256|2 +671963|39000309258|2 +672134|39000309259|2 +672090|39000309262|2 +672251|39000309265|2 +672728|39000309273|2 +672712|39000309278|2 +672748|39000309279|2 +672729|39000309282|2 +672749|39000309283|2 +672704|39000309284|2 +672718|39000309288|2 +672638|39000309291|2 +672764|39000309295|2 +672757|39000309296|2 +672601|39000309298|2 +672730|39000309301|2 +672578|39000309303|2 +672750|39000309304|2 +672777|39000309306|2 +672765|39000309312|2 +672773|39000309314|2 +672602|39000309315|2 +672928|39000309319|2 +673001|39000309322|2 +673026|39000309326|2 +673218|39000309330|2 +673281|39000309334|2 +673522|39000309335|2 +1004054|39000309338|2 +673881|39000309341|2 +673800|39000309343|2 +673831|39000309344|2 +673921|39000309345|2 +673859|39000309349|2 +673909|39000309350|2 +673832|39000309352|2 +673836|39000309354|2 +673867|39000309355|2 +673873|39000309360|2 +673846|39000309367|2 +673905|39000309369|2 +673801|39000309370|2 +673914|39000309371|2 +673806|39000309373|2 +673877|39000309374|2 +673809|39000309375|2 +673857|39000309378|2 +673878|39000309379|2 +501888|39000309383|2 +673924|39000309384|2 +673926|39000309385|2 +673930|39000309386|2 +674130|39000309388|2 +674153|39000309389|2 +674120|39000309391|2 +674085|39000309393|2 +674121|39000309394|2 +674122|39000309398|2 +674089|39000309399|2 +674148|39000309401|2 +674100|39000309405|2 +674297|39000309408|2 +674323|39000309409|2 +674334|39000309411|2 +674304|39000309414|2 +674292|39000309416|2 +674329|39000309417|2 +674436|39000309419|2 +674388|39000309420|2 +674414|39000309422|2 +674415|39000309424|2 +674434|39000309426|2 +674452|39000309427|2 +674464|39000309428|2 +674420|39000309431|2 +674437|39000309436|2 +674389|39000309437|2 +674600|39000309444|2 +674608|39000309446|2 +754910|39000309449|2 +674777|39000309450|2 +674797|39000309451|2 +674778|39000309452|2 +674779|39000309453|2 +674783|39000309454|2 +674979|39000309456|2 +897269|39000309457|2 +674988|39000309459|2 +674858|39000309462|2 +674869|39000309464|2 +674898|39000309466|2 +674841|39000309469|4 +674842|39000309471|4 +674908|39000309472|2 +674816|39000309473|2 +674997|39000309478|2 +675051|39000309479|2 +675125|39000309482|2 +675108|39000309483|2 +675136|39000309484|2 +675099|39000309485|2 +675153|39000309486|2 +675069|39000309487|2 +675217|39000309491|2 +675311|39000309495|2 +673016|39000309497|2 +675485|39000309498|2 +675487|39000309499|2 +675488|39000309500|2 +854436|39000309505|2 +676151|39000309507|2 +724686|39000309508|2 +676265|39000309509|2 +676308|39000309512|2 +676346|39000309516|2 +676529|39000309517|2 +676579|39000309518|2 +676553|39000309519|2 +676526|39000309522|2 +676581|39000309524|2 +676554|39000309527|2 +676487|39000309528|2 +676611|39000309531|2 +676644|39000309534|2 +882443|39000309541|2 +676710|39000309542|2 +676848|39000309544|2 +676849|39000309545|2 +676846|39000309546|2 +676995|39000309551|2 +676872|39000309555|2 +676894|39000309556|2 +676951|39000309558|2 +677465|39000309562|2 +677463|39000309563|2 +677415|39000309564|2 +677275|39000309565|2 +677458|39000309566|2 +677364|39000309567|2 +660312|39000309568|2 +677295|39000309571|2 +677367|39000309573|2 +677292|39000309574|4 +677461|39000309584|2 +677280|39000309585|2 +677283|39000309588|2 +677299|39000309589|2 +677300|39000309590|2 +677377|39000309593|2 +677397|39000309594|2 +677284|39000309595|2 +677381|39000309596|2 +677446|39000309598|2 +677363|39000309599|2 +677442|39000309600|2 +677351|39000309601|2 +677321|39000309602|2 +677388|39000309610|2 +677313|39000309611|2 +677322|39000309612|2 +677447|39000309613|2 +677244|39000309615|2 +677416|39000309618|2 +677394|39000309622|2 +677341|39000309623|2 +677507|39000309624|2 +677536|39000309625|2 +677512|39000309626|2 +677597|39000309627|2 +677600|39000309628|2 +677599|39000309629|2 +677626|39000309630|2 +677858|39000309631|2 +677877|39000309632|2 +677837|39000309633|2 +678034|39000309636|2 +678026|39000309637|2 +678117|39000309643|2 +678116|39000309646|2 +678106|39000309647|2 +678108|39000309651|2 +678122|39000309652|2 +678213|39000309654|2 +678180|39000309655|2 +678196|39000309656|2 +678214|39000309660|2 +678241|39000309661|4 +678215|39000309662|2 +678199|39000309665|2 +678245|39000309666|2 +678247|39000309667|2 +678277|39000309670|2 +678220|39000309672|2 +678266|39000309673|2 +678287|39000309675|2 +678289|39000309676|2 +678343|39000309679|2 +678358|39000309683|2 +678364|39000309684|2 +678360|39000309685|2 +678573|39000309686|2 +678575|39000309688|2 +678619|39000309689|2 +620226|39000309694|2 +678693|39000309697|2 +678816|39000309698|2 +678855|39000309699|2 +678900|39000309702|2 +678961|39000309703|2 +678962|39000309704|2 +678901|39000309705|2 +511616|39000309708|2 +679172|39000309709|2 +679185|39000309711|2 +679097|39000309712|2 +678959|39000309713|2 +679655|39000309718|2 +679650|39000309719|2 +650687|39000309721|2 +679653|39000309722|2 +679651|39000309723|2 +679654|39000309724|2 +679682|39000309725|2 +679948|39000309730|2 +679949|39000309731|2 +680150|39000309736|2 +680246|39000309737|2 +471820|39000309738|2 +680247|39000309739|2 +680248|39000309740|2 +680252|39000309741|2 +680253|39000309742|2 +680254|39000309743|2 +680258|39000309744|2 +680351|39000309745|2 +680435|39000309746|2 +680536|39000309748|2 +680661|39000309751|2 +680831|39000309753|2 +680997|39000309754|2 +681132|39000309755|2 +681359|39000309757|2 +681430|39000309759|2 +681457|39000309760|2 +681740|39000309762|2 +681647|39000309764|2 +682129|39000309766|2 +682048|39000309768|2 +682062|39000309769|2 +682176|39000309771|2 +682177|39000309774|2 +682093|39000309775|2 +682139|39000309776|2 +682963|39000309781|2 +683620|39000309791|2 +683956|39000309795|2 +684114|39000309797|2 +684141|39000309799|2 +684142|39000309800|2 +684158|39000309802|2 +684381|39000309804|2 +684385|39000309805|2 +684605|39000309806|2 +684646|39000309807|2 +684756|39000309811|2 +684743|39000309812|2 +684905|39000309814|2 +684895|39000309815|2 +684890|39000309816|2 +684881|39000309817|2 +685132|39000309822|2 +685131|39000309824|2 +685248|39000309827|2 +685249|39000309828|2 +685633|39000309830|2 +685642|39000309831|2 +685643|39000309832|2 +685644|39000309833|2 +588883|39000309835|2 +685853|39000309836|2 +685764|39000309838|2 +685950|39000309841|2 +685918|39000309842|2 +685946|39000309843|2 +685930|39000309844|2 +876123|39000309845|2 +685936|39000309846|2 +685991|39000309849|2 +686069|39000309852|2 +686419|39000309856|2 +686428|39000309857|2 +686484|39000309858|2 +686485|39000309859|2 +686486|39000309860|2 +686622|39000309863|2 +686754|39000309864|2 +687271|39000309865|2 +687799|39000309868|2 +687753|39000309869|2 +687686|39000309870|2 +687754|39000309871|2 +687916|39000309873|2 +688332|39000309879|2 +688727|39000309883|2 +688699|39000309884|2 +688623|39000309885|2 +688841|39000309890|2 +689059|39000309893|2 +689023|39000309894|2 +689004|39000309896|2 +688989|39000309903|2 +689068|39000309904|2 +895003|39000309907|2 +689066|39000309908|2 +689017|39000309909|2 +688889|39000309910|2 +688969|39000309912|2 +688990|39000309916|2 +688929|39000309921|2 +689046|39000309923|2 +688901|39000309924|2 +669500|39000309925|2 +688930|39000309926|2 +689002|39000309928|2 +689117|39000309932|2 +689119|39000309933|2 +689365|39000309936|2 +689454|39000309937|2 +689487|39000309938|2 +689535|39000309945|2 +689688|39000309947|2 +689887|39000309951|2 +689984|39000309954|2 +689979|39000309955|2 +690093|39000309957|2 +690640|39000309962|2 +690636|39000309963|2 +690646|39000309964|2 +690756|39000309966|2 +690745|39000309968|2 +690773|39000309971|2 +690774|39000309972|2 +690775|39000309973|2 +690770|39000309974|2 +690776|39000309975|2 +690872|39000309977|2 +690886|39000309979|2 +690916|39000309980|2 +690826|39000309981|2 +690809|39000309983|2 +690987|39000309984|2 +690975|39000309988|2 +690986|39000309990|2 +691008|39000309991|2 +691005|39000309992|2 +691000|39000309994|2 +690993|39000309997|2 +691176|39000309999|2 +691657|39000310006|2 +691662|39000310007|2 +691708|39000310010|2 +691720|39000310011|2 +691717|39000310013|2 +691722|39000310014|2 +692109|39000310018|2 +692110|39000310019|2 +692296|39000310021|2 +692800|39000310024|2 +692778|39000310025|2 +692825|39000310026|2 +692815|39000310028|2 +538352|39000310030|2 +692832|39000310031|2 +692906|39000310033|2 +692903|39000310034|2 +692907|39000310036|2 +693011|39000310038|2 +693463|39000310039|2 +693308|39000310040|2 +693468|39000310041|2 +693798|39000310044|2 +693836|39000310048|2 +693860|39000310051|2 +693906|39000310052|2 +693940|39000310053|4 +693961|39000310055|2 +694065|39000310057|2 +694113|39000310058|2 +694129|39000310060|2 +873004|39000310061|2 +694132|39000310062|2 +694187|39000310065|2 +694618|39000310066|2 +694704|39000310069|2 +694759|39000310073|2 +694743|39000310077|2 +694742|39000310080|2 +694829|39000310082|2 +695403|39000310090|2 +695598|39000310092|2 +695756|39000310095|2 +695768|39000310097|2 +695883|39000310100|2 +695905|39000310102|2 +695924|39000310103|2 +695973|39000310104|2 +696119|39000310105|2 +696117|39000310106|2 +696148|39000310109|2 +696211|39000310110|2 +696170|39000310111|2 +696532|39000310115|2 +696610|39000310117|2 +696801|39000310120|2 +696809|39000310123|2 +696798|39000310124|2 +696802|39000310128|2 +696859|39000310130|2 +696924|39000310131|2 +696865|39000310134|2 +696877|39000310135|2 +696950|39000310137|2 +697182|39000310145|2 +697504|39000310151|2 +658109|39000310154|2 +697568|39000310155|2 +697633|39000310156|2 +697601|39000310157|2 +698073|39000310159|2 +698028|39000310161|2 +697990|39000310162|2 +698256|39000310163|2 +698167|39000310164|2 +698168|39000310165|2 +698222|39000310166|2 +698263|39000310167|2 +698226|39000310169|2 +698204|39000310170|2 +698259|39000310171|2 +698175|39000310172|2 +698986|39000310177|2 +698756|39000310182|2 +698793|39000310183|2 +698488|39000310184|2 +698474|39000310185|2 +698591|39000310187|2 +698781|39000310190|2 +698810|39000310192|2 +698868|39000310193|4 +698547|39000310195|2 +698893|39000310196|2 +698414|39000310197|2 +699095|39000310198|2 +699230|39000310200|2 +699437|39000310201|2 +699326|39000310203|2 +699877|39000310208|2 +754939|39000310210|2 +700236|39000310211|2 +700249|39000310212|2 +700854|39000310214|2 +700544|39000310215|2 +700728|39000310216|2 +701643|39000310219|2 +701649|39000310220|2 +701648|39000310222|2 +701680|39000310224|2 +702016|39000310226|2 +702031|39000310227|2 +702032|39000310228|2 +702053|39000310234|2 +702059|39000310235|2 +702093|39000310236|2 +702360|39000310239|2 +702481|39000310242|2 +702498|39000310243|2 +702487|39000310244|2 +702507|39000310245|2 +702486|39000310246|2 +702489|39000310247|2 +702504|39000310253|2 +702654|39000310257|2 +703123|39000310262|2 +703291|39000310265|2 +703292|39000310266|2 +703297|39000310267|2 +703374|39000310268|2 +703611|39000310269|2 +703624|39000310270|2 +703592|39000310271|2 +703602|39000310272|2 +703691|39000310276|4 +703534|39000310279|2 +703535|39000310280|2 +703964|39000310282|2 +704323|39000310287|2 +521418|39000310288|2 +704322|39000310289|2 +704321|39000310290|2 +704433|39000310291|2 +704461|39000310293|2 +704694|39000310295|2 +523267|39000310296|2 +704684|39000310297|2 +475749|39000310299|2 +704939|39000310300|2 +705513|39000310304|2 +705668|39000310305|2 +705672|39000310307|2 +705649|39000310308|2 +705662|39000310310|2 +705656|39000310311|2 +705652|39000310312|2 +705961|39000310315|2 +706514|39000310320|2 +706726|39000310321|2 +706875|39000310323|2 +706587|39000310324|2 +706740|39000310325|2 +706727|39000310326|2 +576461|39000310332|2 +707224|39000310336|2 +707302|39000310337|2 +707331|39000310338|2 +707945|39000310341|2 +708026|39000310343|2 +708267|39000310346|2 +708352|39000310347|2 +851986|39000310355|2 +708482|39000310356|2 +708583|39000310359|2 +708577|39000310360|2 +708590|39000310362|2 +708619|39000310363|2 +708612|39000310364|2 +708717|39000310367|2 +808766|39000310372|2 +709191|39000310376|2 +599795|39000310377|2 +709035|39000310378|2 +708958|39000310380|2 +708929|39000310382|2 +770706|39000310384|2 +709579|39000310385|2 +709717|39000310387|2 +709710|39000310388|2 +709714|39000310389|2 +710259|39000310397|2 +710138|39000310399|2 +709884|39000310401|2 +710271|39000310402|2 +583896|39000310404|2 +710679|39000310405|2 +710692|39000310406|2 +710693|39000310408|2 +710676|39000310411|2 +710684|39000310414|2 +710683|39000310415|2 +710774|39000310418|2 +710782|39000310419|2 +711004|39000310421|2 +711114|39000310422|2 +714776|39000310424|2 +711256|39000310425|2 +711685|39000310427|2 +711637|39000310430|2 +711686|39000310431|2 +711596|39000310432|2 +711972|39000310435|2 +711916|39000310437|2 +711654|39000310438|2 +711900|39000310441|2 +712072|39000310443|2 +711638|39000310444|2 +711670|39000310447|2 +711917|39000310448|2 +711878|39000310450|2 +698841|39000310459|4 +712109|39000310460|2 +711946|39000310461|2 +509386|39000310463|2 +712001|39000310464|2 +711808|39000310465|2 +711683|39000310466|2 +711955|39000310467|2 +711848|39000310470|2 +711877|39000310471|2 +711645|39000310472|2 +711639|39000310474|2 +712064|39000310475|2 +711849|39000310477|2 +712055|39000310478|2 +712101|39000310480|2 +711640|39000310482|2 +711879|39000310484|2 +711858|39000310487|2 +712070|39000310488|2 +711795|39000310497|2 +712071|39000310498|2 +711611|39000310501|2 +712058|39000310504|2 +711650|39000310508|2 +711956|39000310509|2 +711595|39000310512|2 +712526|39000310516|2 +712649|39000310518|2 +712713|39000310520|2 +712706|39000310523|2 +712761|39000310524|2 +712726|39000310525|2 +712762|39000310528|2 +712724|39000310530|2 +712707|39000310531|2 +712756|39000310535|2 +712733|39000310538|2 +712714|39000310540|2 +712717|39000310541|2 +712885|39000310542|2 +713077|39000310544|2 +713223|39000310547|2 +713249|39000310548|2 +713255|39000310551|2 +713254|39000310553|2 +713266|39000310557|2 +713262|39000310558|2 +713327|39000310559|2 +713276|39000310560|2 +713297|39000310562|2 +713314|39000310563|2 +713306|39000310564|2 +713328|39000310565|2 +713305|39000310567|2 +713334|39000310568|2 +713277|39000310570|2 +713344|39000310572|2 +713335|39000310573|2 +713279|39000310574|2 +713292|39000310577|2 +713278|39000310578|2 +713319|39000310579|2 +713336|39000310582|2 +713285|39000310583|2 +713343|39000310585|2 +713706|39000310587|2 +713876|39000310589|2 +714444|39000310594|4 +714399|39000310597|2 +714364|39000310599|2 +714459|39000310601|2 +714394|39000310604|2 +714495|39000310605|2 +714472|39000310606|2 +714478|39000310609|2 +714468|39000310612|2 +714412|39000310613|2 +714409|39000310615|2 +714473|39000310616|2 +714361|39000310618|2 +885791|39000310619|2 +714465|39000310620|2 +714413|39000310621|2 +714376|39000310623|2 +714689|39000310626|2 +714825|39000310632|2 +715099|39000310633|2 +715021|39000310637|2 +715339|39000310638|2 +715480|39000310639|2 +715523|39000310640|2 +715549|39000310641|2 +661013|39000310643|2 +715685|39000310645|2 +715689|39000310649|2 +715764|39000310651|2 +715698|39000310653|2 +715890|39000310656|2 +715654|39000310659|2 +715572|39000310662|2 +715786|39000310666|2 +715783|39000310668|2 +715935|39000310669|2 +716010|39000310670|2 +716021|39000310671|2 +716005|39000310673|2 +715977|39000310675|2 +716030|39000310676|2 +716039|39000310677|2 +716312|39000310682|2 +716090|39000310688|2 +716175|39000310689|2 +716476|39000310692|2 +716479|39000310693|2 +716533|39000310695|2 +716588|39000310696|2 +716634|39000310697|2 +718220|39000310706|2 +718225|39000310707|2 +718343|39000310709|2 +718325|39000310713|2 +718312|39000310715|2 +718319|39000310716|2 +718335|39000310720|2 +718311|39000310721|2 +718308|39000310723|2 +718320|39000310730|2 +718326|39000310731|2 +718327|39000310734|2 +718539|39000310741|2 +718535|39000310742|2 +718541|39000310743|2 +718540|39000310744|2 +718538|39000310745|2 +718697|39000310749|2 +718955|39000310752|2 +718989|39000310753|2 +718942|39000310754|2 +718977|39000310755|2 +718968|39000310757|2 +718935|39000310758|2 +718993|39000310759|2 +718947|39000310760|2 +718995|39000310762|2 +719003|39000310763|2 +718921|39000310764|2 +718990|39000310765|2 +718949|39000310766|2 +718961|39000310769|2 +718939|39000310770|2 +719014|39000310774|2 +719066|39000310775|2 +719140|39000310776|2 +719125|39000310777|2 +719120|39000310779|2 +718965|39000310780|2 +719365|39000310782|2 +719414|39000310783|2 +719634|39000310786|2 +719635|39000310787|2 +719638|39000310790|2 +719631|39000310791|2 +719637|39000310792|2 +719676|39000310794|2 +719922|39000310796|2 +719820|39000310797|2 +720334|39000310804|2 +720809|39000310807|2 +720816|39000310811|2 +720802|39000310812|2 +720805|39000310815|2 +720808|39000310816|2 +720810|39000310818|2 +720893|39000310819|2 +720892|39000310820|2 +720935|39000310821|2 +721105|39000310824|2 +721100|39000310825|2 +677448|39000310826|2 +721205|39000310827|2 +721246|39000310829|2 +721483|39000310835|2 +721733|39000310840|2 +721708|39000310841|2 +721701|39000310842|2 +721726|39000310844|2 +721717|39000310846|2 +722432|39000310854|2 +723451|39000310857|4 +723616|39000310859|2 +723569|39000310860|2 +724118|39000310864|2 +724171|39000310867|2 +724170|39000310868|2 +724220|39000310869|2 +595457|39000310870|2 +724234|39000310871|2 +724231|39000310872|2 +724204|39000310873|2 +724565|39000310885|2 +724535|39000310893|2 +724577|39000310894|2 +724483|39000310897|4 +724473|39000310901|2 +724517|39000310903|2 +724555|39000310904|2 +724518|39000310905|2 +724469|39000310906|2 +724603|39000310908|2 +724771|39000310910|2 +724806|39000310911|2 +725084|39000310917|2 +725046|39000310918|4 +724757|39000310919|2 +724797|39000310920|2 +725031|39000310921|4 +725157|39000310926|2 +724879|39000310927|2 +724932|39000310928|2 +724824|39000310929|2 +724687|39000310933|2 +724789|39000310934|2 +724957|39000310935|2 +725042|39000310936|4 +724977|39000310938|2 +725047|39000310940|4 +724791|39000310941|2 +725178|39000310947|2 +724894|39000310953|2 +724988|39000310954|2 +724989|39000310955|2 +725032|39000310956|4 +725033|39000310957|4 +724978|39000310960|2 +725179|39000310961|2 +724798|39000310963|2 +724733|39000310964|2 +725199|39000310969|2 +725464|39000310982|2 +725768|39000310983|2 +725754|39000310984|2 +725787|39000310989|2 +725783|39000310991|2 +725775|39000310993|2 +725780|39000310997|2 +725742|39000311000|2 +725921|39000311003|2 +726049|39000311004|2 +719913|39000311005|2 +725977|39000311006|2 +726243|39000311010|2 +726445|39000311014|2 +726441|39000311015|2 +726443|39000311016|2 +726447|39000311017|2 +726903|39000311019|2 +726907|39000311020|2 +726914|39000311021|2 +727243|39000311026|2 +727330|39000311027|2 +727294|39000311028|2 +727432|39000311030|2 +727488|39000311031|2 +727464|39000311033|2 +727489|39000311034|2 +727499|39000311036|2 +727453|39000311039|2 +727450|39000311040|2 +727422|39000311043|2 +727428|39000311044|2 +727454|39000311046|2 +727451|39000311047|2 +727402|39000311050|2 +727517|39000311052|2 +727423|39000311053|2 +727594|39000311056|2 +727723|39000311058|2 +728336|39000311063|2 +728519|39000311065|2 +728642|39000311066|2 +728628|39000311068|2 +728838|39000311069|2 +765751|39000311070|2 +728688|39000311071|2 +729818|39000311073|4 +729585|39000311074|2 +730302|39000311077|2 +728943|39000311078|4 +730182|39000311081|2 +522686|39000311085|2 +729136|39000311087|2 +729586|39000311088|2 +731216|39000311094|2 +730792|39000311095|2 +731424|39000311100|2 +731417|39000311102|2 +731432|39000311103|2 +731418|39000311104|2 +731407|39000311109|2 +731436|39000311110|2 +731437|39000311114|2 +731466|39000311115|2 +731649|39000311120|2 +731614|39000311122|2 +731661|39000311123|2 +731658|39000311124|2 +731607|39000311128|2 +731608|39000311129|2 +731631|39000311133|2 +731900|39000311134|2 +731974|39000311136|2 +732114|39000311138|2 +732119|39000311139|2 +732543|39000311142|2 +732549|39000311143|2 +732722|39000311145|2 +850073|39000311146|2 +732799|39000311147|2 +732835|39000311149|2 +732766|39000311150|2 +732936|39000311152|2 +774814|39000311156|2 +733219|39000311158|2 +733208|39000311159|2 +733258|39000311160|2 +733364|39000311163|2 +733326|39000311167|2 +733423|39000311171|2 +733558|39000311174|2 +733587|39000311178|2 +742540|39000311180|2 +733572|39000311181|2 +733523|39000311182|2 +733573|39000311183|2 +733740|39000311185|2 +733741|39000311186|2 +733750|39000311187|2 +733698|39000311188|2 +733666|39000311189|2 +733727|39000311194|2 +733699|39000311195|2 +733687|39000311196|2 +733742|39000311199|2 +733728|39000311200|2 +733704|39000311201|2 +733737|39000311202|2 +733708|39000311203|2 +733745|39000311205|2 +733723|39000311206|2 +733688|39000311210|2 +733697|39000311212|2 +733736|39000311213|2 +733743|39000311214|2 +733757|39000311215|2 +733891|39000311219|2 +733945|39000311220|2 +734106|39000311222|2 +733972|39000311223|2 +734035|39000311224|2 +733935|39000311225|2 +734044|39000311226|2 +734114|39000311227|2 +734034|39000311228|2 +734082|39000311233|4 +734016|39000311235|2 +598843|39000311236|2 +734190|39000311239|2 +734170|39000311241|2 +734191|39000311243|2 +734177|39000311244|2 +734185|39000311245|2 +901562|39000311248|2 +734321|39000311251|2 +734280|39000311258|2 +632078|39000311259|2 +734372|39000311261|2 +506908|39000311262|2 +734423|39000311265|2 +734422|39000311266|2 +734426|39000311267|2 +734598|39000311269|2 +734812|39000311277|2 +734878|39000311279|2 +734888|39000311281|2 +734886|39000311283|2 +734879|39000311284|2 +735047|39000311286|2 +735053|39000311287|2 +735054|39000311288|2 +735065|39000311289|2 +875854|39000311291|2 +735382|39000311292|2 +735390|39000311293|2 +735400|39000311294|2 +735485|39000311297|2 +735708|39000311298|2 +735704|39000311301|2 +735697|39000311302|2 +735706|39000311304|2 +735669|39000311306|2 +735675|39000311308|2 +735725|39000311310|2 +735693|39000311312|2 +735729|39000311314|2 +735698|39000311318|2 +735701|39000311319|2 +735730|39000311320|2 +735694|39000311321|2 +735680|39000311324|2 +735685|39000311327|2 +735717|39000311328|2 +735672|39000311329|2 +735707|39000311330|2 +736412|39000311335|2 +736484|39000311336|4 +736430|39000311338|2 +736455|39000311341|2 +736375|39000311344|2 +736388|39000311346|2 +736426|39000311348|2 +736568|39000311350|2 +736587|39000311352|4 +736539|39000311356|2 +736742|39000311357|2 +736814|39000311358|2 +736806|39000311359|2 +736800|39000311360|2 +736810|39000311362|2 +736853|39000311365|2 +736832|39000311368|2 +736974|39000311369|2 +737009|39000311371|2 +737000|39000311373|2 +737001|39000311374|2 +634126|39000311375|2 +737006|39000311376|2 +736829|39000311378|2 +737401|39000311385|2 +737297|39000311386|2 +737342|39000311390|2 +737349|39000311391|2 +737464|39000311392|2 +737477|39000311393|2 +737613|39000311394|2 +737618|39000311396|2 +737958|39000311399|2 +762268|39000311400|2 +737959|39000311401|2 +737932|39000311402|2 +737928|39000311404|2 +737937|39000311405|2 +737951|39000311406|2 +738163|39000311407|2 +738184|39000311409|2 +738329|39000311410|2 +738336|39000311411|2 +738341|39000311412|2 +738328|39000311414|2 +738507|39000311415|2 +738462|39000311416|2 +738450|39000311417|2 +738411|39000311419|2 +738473|39000311421|2 +738434|39000311427|2 +738443|39000311428|2 +738353|39000311429|2 +738765|39000311430|2 +738687|39000311432|2 +738766|39000311433|2 +738867|39000311438|2 +738866|39000311439|2 +739032|39000311441|2 +739165|39000311442|2 +739162|39000311443|2 +739163|39000311444|2 +739168|39000311446|2 +739167|39000311447|2 +739393|39000311449|2 +739518|39000311452|2 +739595|39000311462|2 +740620|39000311470|2 +740765|39000311472|2 +740769|39000311473|2 +740935|39000311477|2 +740849|39000311482|2 +740900|39000311483|2 +740926|39000311486|2 +740881|39000311488|2 +740782|39000311489|2 +740783|39000311490|2 +740863|39000311491|2 +740848|39000311495|2 +740940|39000311497|2 +869980|39000311499|2 +508576|39000311500|2 +740819|39000311502|2 +740882|39000311503|2 +740887|39000311505|2 +740850|39000311506|2 +740920|39000311509|2 +740874|39000311512|2 +740791|39000311516|2 +740932|39000311517|2 +740820|39000311518|2 +740915|39000311519|2 +740792|39000311521|2 +740836|39000311524|2 +741104|39000311528|2 +741774|39000311536|2 +741719|39000311540|2 +741787|39000311541|2 +741809|39000311544|2 +741864|39000311549|2 +741693|39000311550|2 +741702|39000311551|2 +741993|39000311552|2 +742285|39000311555|2 +742284|39000311556|2 +742409|39000311557|2 +742380|39000311561|2 +742365|39000311563|2 +742366|39000311564|2 +742558|39000311566|2 +742617|39000311567|2 +742638|39000311570|2 +742636|39000311571|2 +742761|39000311572|2 +742757|39000311573|2 +992768|39000311575|2 +742906|39000311576|2 +742907|39000311577|2 +742877|39000311578|2 +743224|39000311580|2 +743484|39000311582|2 +743808|39000311587|2 +743680|39000311590|2 +743733|39000311591|2 +743574|39000311593|2 +743788|39000311602|2 +743561|39000311603|2 +743591|39000311605|2 +743725|39000311609|2 +743681|39000311610|2 +743679|39000311612|2 +743836|39000311616|2 +743567|39000311618|2 +743627|39000311621|2 +743670|39000311623|2 +743778|39000311624|2 +743652|39000311627|2 +743773|39000311628|2 +743761|39000311629|2 +743605|39000311630|2 +743787|39000311634|2 +743837|39000311639|2 +744024|39000311640|2 +744305|39000311643|2 +744407|39000311648|2 +744635|39000311650|2 +744628|39000311651|2 +744758|39000311652|2 +744770|39000311653|2 +744768|39000311654|2 +744764|39000311656|2 +744771|39000311657|2 +744859|39000311658|2 +744856|39000311659|2 +744952|39000311660|2 +744960|39000311663|2 +744961|39000311664|2 +744966|39000311666|2 +744959|39000311667|2 +744963|39000311668|2 +744964|39000311669|2 +744967|39000311671|2 +744958|39000311672|2 +744968|39000311673|2 +745005|39000311676|2 +745022|39000311677|2 +745014|39000311678|2 +745043|39000311685|2 +745016|39000311689|2 +745008|39000311690|2 +745044|39000311691|2 +745241|39000311692|2 +461058|39000311694|2 +491899|39000311700|2 +745526|39000311701|2 +745525|39000311702|2 +745509|39000311703|2 +745519|39000311708|2 +745522|39000311709|2 +745516|39000311710|2 +745503|39000311711|2 +745527|39000311714|2 +759450|39000311715|2 +745523|39000311716|2 +745777|39000311718|2 +745800|39000311720|2 +745801|39000311721|2 +745815|39000311724|2 +745816|39000311725|2 +745836|39000311728|2 +746061|39000311729|2 +746062|39000311730|2 +745996|39000311731|2 +746059|39000311732|2 +746232|39000311733|2 +746214|39000311737|2 +746227|39000311738|2 +746212|39000311739|2 +746230|39000311740|2 +746252|39000311746|2 +746323|39000311752|2 +746277|39000311757|2 +746308|39000311759|2 +746253|39000311761|2 +746284|39000311764|2 +746351|39000311767|2 +746299|39000311769|2 +746464|39000311775|2 +746466|39000311776|2 +746465|39000311778|2 +747269|39000311783|2 +747278|39000311784|2 +747801|39000311788|2 +747795|39000311790|2 +747797|39000311792|2 +749083|39000311793|4 +749084|39000311794|4 +748271|39000311795|2 +748183|39000311797|2 +748824|39000311798|2 +748298|39000311800|2 +749810|39000311801|2 +749448|39000311802|2 +749372|39000311803|2 +749794|39000311804|2 +749904|39000311805|2 +749973|39000311807|2 +749578|39000311808|2 +750627|39000311812|2 +641054|39000311813|2 +750628|39000311814|2 +750894|39000311816|2 +750999|39000311818|2 +752057|39000311821|2 +751834|39000311822|2 +752482|39000311825|2 +751729|39000311832|2 +751406|39000311834|2 +751536|39000311836|2 +751311|39000311838|2 +751644|39000311840|2 +751835|39000311842|2 +751730|39000311843|2 +753113|39000311849|2 +753338|39000311850|2 +753361|39000311851|2 +753419|39000311852|2 +754696|39000311859|2 +754695|39000311860|2 +754690|39000311862|2 +754684|39000311863|2 +754926|39000311868|2 +754921|39000311870|2 +754916|39000311872|2 +754878|39000311873|2 +754989|39000311875|2 +523262|39000311877|2 +755131|39000311880|4 +755193|39000311885|2 +755290|39000311886|2 +755281|39000311887|2 +755293|39000311888|2 +755319|39000311889|2 +755313|39000311891|2 +755310|39000311893|2 +755271|39000311894|2 +755321|39000311897|2 +755296|39000311898|2 +732309|39000311900|2 +755315|39000311901|2 +755272|39000311902|2 +755298|39000311903|2 +740870|39000311905|2 +755297|39000311906|2 +755318|39000311908|2 +755267|39000311909|2 +755316|39000311912|2 +755287|39000311913|2 +755423|39000311914|2 +755559|39000311918|2 +755560|39000311920|2 +755522|39000311923|2 +755740|39000311924|2 +755829|39000311926|2 +755703|39000311927|2 +755724|39000311929|2 +755844|39000311931|2 +755735|39000311934|2 +755765|39000311935|2 +755815|39000311937|2 +755711|39000311938|2 +755752|39000311939|2 +755704|39000311942|2 +755736|39000311944|2 +755803|39000311946|2 +755795|39000311948|2 +755717|39000311950|2 +755708|39000311952|2 +756143|39000311954|2 +756174|39000311955|2 +756210|39000311956|2 +756273|39000311959|2 +756314|39000311961|2 +756337|39000311962|2 +756322|39000311965|2 +756596|39000311970|2 +756698|39000311975|2 +756699|39000311977|2 +757196|39000311979|2 +756981|39000311980|2 +757380|39000311983|2 +757379|39000311984|2 +757386|39000311986|2 +757373|39000311988|2 +757505|39000311990|2 +757767|39000311991|2 +757791|39000311992|2 +758016|39000311993|2 +758180|39000311994|2 +758005|39000311996|2 +646569|39000311997|2 +758254|39000312000|2 +695479|39000312006|2 +758554|39000312007|2 +758504|39000312009|2 +758523|39000312010|2 +758497|39000312012|2 +758553|39000312013|2 +758541|39000312016|2 +758536|39000312017|2 +758508|39000312018|2 +758524|39000312019|2 +758534|39000312021|2 +758555|39000312022|2 +758514|39000312023|2 +758573|39000312024|2 +758483|39000312025|2 +758567|39000312026|2 +758578|39000312027|2 +758569|39000312031|2 +758537|39000312032|2 +758749|39000312033|2 +758647|39000312034|2 +758994|39000312036|2 +758895|39000312039|2 +758881|39000312041|2 +759218|39000312042|2 +758882|39000312043|2 +758940|39000312044|2 +652133|39000312047|2 +759199|39000312048|2 +759326|39000312051|2 +759327|39000312054|2 +759315|39000312056|2 +758973|39000312058|2 +758922|39000312059|2 +758920|39000312060|2 +759406|39000312061|2 +897111|39000312062|2 +759502|39000312065|2 +759647|39000312067|2 +759674|39000312068|2 +759675|39000312069|2 +759957|39000312071|2 +760209|39000312075|2 +759792|39000312076|2 +760039|39000312077|2 +794151|39000312078|2 +761425|39000312088|2 +761667|39000312091|2 +761640|39000312095|2 +761905|39000312102|2 +762028|39000312103|2 +762286|39000312105|4 +762186|39000312109|2 +762151|39000312110|2 +762182|39000312111|2 +762112|39000312112|2 +762107|39000312113|2 +762244|39000312114|2 +762277|39000312115|2 +762359|39000312118|2 +762340|39000312123|2 +762362|39000312126|2 +762379|39000312127|2 +762337|39000312132|2 +762353|39000312134|2 +762377|39000312136|2 +762544|39000312138|2 +762547|39000312140|2 +762580|39000312142|2 +762586|39000312143|2 +762708|39000312145|2 +762698|39000312148|2 +762867|39000312150|2 +763363|39000312153|2 +763353|39000312154|2 +763708|39000312157|2 +763718|39000312158|2 +763894|39000312162|2 +763891|39000312163|2 +763904|39000312165|2 +764006|39000312166|2 +764038|39000312167|2 +764041|39000312168|2 +764045|39000312169|2 +764042|39000312170|2 +764040|39000312173|2 +764091|39000312175|2 +764649|39000312180|2 +764650|39000312181|2 +764651|39000312182|2 +764718|39000312183|2 +765282|39000312186|2 +765266|39000312187|2 +765283|39000312188|2 +765284|39000312189|2 +765354|39000312197|2 +765466|39000312200|2 +765464|39000312205|2 +765470|39000312206|2 +765527|39000312208|2 +765525|39000312210|2 +765526|39000312211|2 +765530|39000312213|2 +765592|39000312216|2 +765596|39000312217|2 +863287|39000312218|2 +765633|39000312221|2 +765665|39000312222|2 +765641|39000312223|2 +618508|39000312224|2 +765677|39000312225|2 +765752|39000312230|2 +765767|39000312231|2 +765845|39000312232|2 +765764|39000312234|2 +766202|39000312240|2 +525161|39000312241|2 +766210|39000312242|2 +766177|39000312245|2 +766128|39000312249|2 +766110|39000312250|2 +766141|39000312251|2 +766247|39000312252|2 +766258|39000312253|2 +766140|39000312255|2 +766327|39000312258|2 +766357|39000312259|2 +766351|39000312260|2 +766362|39000312261|2 +766364|39000312263|2 +766606|39000312266|2 +766674|39000312268|2 +766676|39000312269|2 +766679|39000312270|2 +766702|39000312271|2 +766670|39000312275|2 +766695|39000312278|2 +766710|39000312279|2 +766714|39000312281|2 +766677|39000312285|2 +766690|39000312287|2 +766737|39000312294|2 +766745|39000312296|2 +766758|39000312298|2 +766760|39000312299|2 +766881|39000312306|2 +766894|39000312309|2 +766908|39000312311|2 +766942|39000312314|2 +767143|39000312320|2 +768076|39000312325|2 +768405|39000312328|2 +768393|39000312329|2 +768406|39000312330|2 +768407|39000312332|2 +768390|39000312333|2 +768366|39000312336|2 +768441|39000312340|2 +769621|39000312351|2 +769622|39000312352|2 +769791|39000312357|2 +769831|39000312358|2 +769806|39000312360|2 +769919|39000312364|2 +770304|39000312365|2 +770261|39000312366|2 +770247|39000312367|2 +770505|39000312370|2 +770708|39000312374|2 +771717|39000312383|2 +771133|39000312385|2 +771127|39000312387|2 +771877|39000312388|2 +772252|39000312389|2 +772161|39000312390|2 +772345|39000312391|2 +772885|39000312396|2 +772805|39000312397|2 +772778|39000312400|2 +772820|39000312401|2 +772929|39000312402|2 +772780|39000312403|2 +772855|39000312404|2 +772942|39000312406|2 +773381|39000312412|2 +773534|39000312413|2 +773547|39000312414|2 +773549|39000312415|2 +773653|39000312416|2 +773616|39000312417|2 +773654|39000312418|2 +773487|39000312419|2 +773699|39000312420|2 +773705|39000312421|2 +774004|39000312430|2 +774017|39000312431|2 +774168|39000312436|2 +774187|39000312437|2 +774165|39000312438|2 +774247|39000312439|2 +774302|39000312440|2 +774543|39000312446|2 +774661|39000312450|4 +774723|39000312451|2 +775433|39000312454|2 +775383|39000312455|2 +775363|39000312456|2 +775335|39000312457|2 +775373|39000312460|2 +775790|39000312467|2 +775801|39000312468|2 +775802|39000312469|2 +775798|39000312471|2 +775891|39000312472|2 +775889|39000312474|2 +776078|39000312475|2 +776026|39000312476|2 +776038|39000312477|2 +776065|39000312478|2 +775992|39000312479|2 +776079|39000312480|2 +776102|39000312481|2 +776109|39000312485|2 +775963|39000312486|2 +776050|39000312487|2 +775984|39000312491|2 +776025|39000312492|2 +776158|39000312493|2 +776157|39000312494|2 +776249|39000312497|2 +776250|39000312498|2 +776277|39000312500|2 +776382|39000312501|2 +776378|39000312502|2 +776420|39000312503|2 +776497|39000312505|2 +776493|39000312506|2 +776507|39000312507|2 +776556|39000312508|2 +776560|39000312511|2 +776488|39000312513|2 +776540|39000312516|2 +776565|39000312517|2 +776489|39000312519|2 +776547|39000312520|2 +776583|39000312521|2 +776623|39000312522|2 +776644|39000312525|2 +776703|39000312528|2 +776721|39000312530|2 +776731|39000312531|2 +776738|39000312532|2 +776672|39000312533|2 +776715|39000312534|2 +863304|39000312535|2 +776745|39000312536|2 +776686|39000312537|2 +776695|39000312538|2 +776679|39000312539|2 +776681|39000312542|2 +776712|39000312544|2 +776699|39000312550|2 +776746|39000312551|2 +869997|39000312552|2 +869136|39000312554|2 +776747|39000312556|2 +776719|39000312557|2 +776692|39000312558|2 +776739|39000312559|2 +776730|39000312561|2 +776886|39000312564|2 +776968|39000312566|2 +776970|39000312569|2 +776993|39000312570|2 +776976|39000312571|2 +776962|39000312576|2 +776965|39000312577|2 +777103|39000312580|2 +777978|39000312593|2 +778375|39000312594|2 +778437|39000312595|2 +778128|39000312596|2 +778274|39000312597|2 +777876|39000312598|2 +778532|39000312599|2 +777731|39000312602|2 +778047|39000312603|2 +778171|39000312607|2 +777932|39000312609|2 +779168|39000312621|2 +779820|39000312623|2 +779780|39000312625|2 +779791|39000312627|2 +721727|39000312628|2 +779821|39000312629|2 +687872|39000312630|2 +780233|39000312637|2 +801827|39000312638|2 +780338|39000312639|2 +780340|39000312640|2 +780920|39000312642|2 +780882|39000312643|2 +781581|39000312648|2 +781780|39000312649|2 +781730|39000312650|2 +781751|39000312651|2 +781778|39000312652|2 +781779|39000312654|2 +781987|39000312655|2 +782024|39000312656|2 +782016|39000312657|2 +782047|39000312658|2 +782009|39000312660|2 +782114|39000312662|2 +545733|39000312664|2 +782197|39000312665|2 +782603|39000312670|2 +782730|39000312672|2 +782720|39000312673|4 +720888|39000312674|2 +782820|39000312676|2 +783062|39000312677|2 +783380|39000312678|2 +783778|39000312679|2 +783609|39000312680|2 +783694|39000312681|2 +783637|39000312682|2 +784087|39000312685|2 +784223|39000312686|2 +784191|39000312687|2 +784192|39000312689|2 +784143|39000312690|2 +784164|39000312691|2 +840762|39000312692|2 +504446|39000312695|2 +784483|39000312698|2 +784568|39000312699|4 +784464|39000312700|4 +784379|39000312702|2 +784339|39000312705|2 +784347|39000312706|2 +784341|39000312710|2 +784642|39000312711|2 +784366|39000312712|2 +784440|39000312715|2 +784397|39000312716|2 +784460|39000312717|4 +784617|39000312718|2 +784324|39000312720|2 +784377|39000312724|2 +784657|39000312725|2 +784612|39000312726|2 +784630|39000312727|2 +784598|39000312731|2 +784681|39000312735|2 +879041|39000312738|2 +784906|39000312739|2 +784998|39000312740|2 +785033|39000312741|2 +785200|39000312742|2 +785482|39000312747|2 +785749|39000312748|2 +785817|39000312749|2 +785837|39000312752|2 +785833|39000312753|2 +785914|39000312762|2 +785896|39000312763|2 +785932|39000312764|2 +786029|39000312770|2 +786009|39000312771|2 +786008|39000312773|2 +786059|39000312776|2 +786019|39000312777|2 +786239|39000312780|2 +786243|39000312783|2 +501333|39000312784|2 +786139|39000312786|2 +786253|39000312788|2 +786394|39000312790|2 +786484|39000312792|2 +787177|39000312794|2 +787212|39000312796|2 +787183|39000312797|2 +787106|39000312798|2 +492977|39000312799|2 +787268|39000312801|2 +787249|39000312802|2 +787358|39000312803|2 +787362|39000312805|2 +787544|39000312810|2 +787564|39000312811|2 +787566|39000312812|2 +787768|39000312813|2 +787756|39000312815|2 +787842|39000312816|2 +787812|39000312817|2 +787898|39000312818|2 +787900|39000312819|2 +788822|39000312821|2 +788197|39000312824|2 +788428|39000312826|2 +788511|39000312827|2 +788954|39000312829|2 +788854|39000312830|2 +788706|39000312832|2 +788707|39000312833|2 +788061|39000312835|2 +789352|39000312837|2 +789135|39000312838|4 +788195|39000312839|2 +789452|39000312842|2 +789444|39000312843|2 +789549|39000312847|2 +789451|39000312849|2 +789424|39000312853|2 +789475|39000312854|2 +542979|39000312855|2 +789474|39000312858|2 +789423|39000312859|2 +789507|39000312863|2 +789433|39000312864|2 +789468|39000312866|2 +789558|39000312868|2 +789556|39000312869|2 +730276|39000312871|2 +790383|39000312882|2 +790364|39000312884|2 +790354|39000312885|2 +790379|39000312888|2 +790548|39000312889|2 +790652|39000312890|2 +790691|39000312891|2 +791220|39000312896|2 +791214|39000312897|2 +791240|39000312898|2 +791399|39000312899|2 +791574|39000312900|4 +791768|39000312903|2 +791771|39000312904|2 +791766|39000312905|2 +791791|39000312906|2 +792051|39000312909|2 +791851|39000312910|2 +792277|39000312911|2 +792068|39000312912|2 +792287|39000312913|2 +792130|39000312914|2 +792408|39000312917|2 +792409|39000312918|2 +538233|39000312920|2 +792085|39000312923|2 +792081|39000312926|2 +792014|39000312927|2 +791842|39000312928|2 +791979|39000312929|2 +791946|39000312931|2 +792544|39000312932|2 +792542|39000312934|2 +792539|39000312938|2 +792540|39000312939|2 +792667|39000312941|2 +792771|39000312943|2 +792984|39000312946|2 +793609|39000312953|2 +592248|39000312954|2 +793754|39000312955|2 +793746|39000312956|2 +793727|39000312957|2 +793750|39000312960|2 +793755|39000312961|2 +793731|39000312962|2 +793980|39000312964|2 +794174|39000312967|2 +794159|39000312968|2 +794200|39000312969|2 +794192|39000312970|2 +794255|39000312971|2 +794350|39000312976|2 +794524|39000312978|2 +794554|39000312979|2 +791395|39000312980|2 +794480|39000312981|2 +794865|39000312983|4 +794733|39000312984|2 +794928|39000312985|2 +794791|39000312986|2 +794902|39000312987|2 +795053|39000312988|2 +795040|39000312990|2 +795049|39000312991|2 +795168|39000312996|2 +795167|39000312997|2 +795180|39000312999|2 +795185|39000313000|2 +795191|39000313002|2 +795232|39000313004|2 +795982|39000313012|2 +795983|39000313013|2 +796244|39000313016|2 +796292|39000313017|2 +796370|39000313018|2 +714982|39000313019|2 +772558|39000313020|2 +796938|39000313023|2 +797578|39000313026|2 +797902|39000313030|2 +797999|39000313031|2 +798036|39000313032|2 +798054|39000313034|2 +798307|39000313041|2 +798305|39000313042|2 +798522|39000313045|2 +798504|39000313047|2 +798538|39000313049|2 +798787|39000313050|2 +798782|39000313051|2 +798822|39000313052|2 +798928|39000313053|2 +799137|39000313055|2 +799138|39000313056|2 +799136|39000313057|2 +799416|39000313060|2 +799441|39000313064|2 +799606|39000313068|2 +799491|39000313069|2 +799626|39000313071|2 +799655|39000313073|2 +799675|39000313074|2 +799492|39000313075|2 +799555|39000313076|2 +799640|39000313078|2 +799619|39000313080|2 +839348|39000313081|4 +799601|39000313083|2 +799607|39000313085|2 +799586|39000313086|2 +671791|39000313087|2 +799686|39000313088|2 +799614|39000313091|2 +799729|39000313092|2 +799605|39000313093|2 +799608|39000313095|2 +799584|39000313096|2 +799488|39000313097|2 +799522|39000313098|2 +799513|39000313101|2 +799493|39000313102|2 +800446|39000313110|2 +800372|39000313111|2 +800389|39000313112|2 +800472|39000313113|2 +800495|39000313114|2 +585931|39000313117|2 +800792|39000313118|2 +800894|39000313121|2 +800990|39000313125|2 +800943|39000313126|2 +801144|39000313127|2 +801146|39000313128|2 +801145|39000313129|2 +801259|39000313130|2 +801254|39000313132|2 +801178|39000313135|2 +801260|39000313136|2 +801354|39000313139|2 +801522|39000313140|2 +781533|39000313141|2 +727463|39000313146|2 +801676|39000313147|2 +801709|39000313148|2 +801692|39000313151|2 +801714|39000313152|2 +801803|39000313155|2 +801805|39000313156|2 +801851|39000313159|2 +801816|39000313162|2 +879014|39000313164|2 +802168|39000313165|2 +802481|39000313166|2 +802864|39000313170|2 +802867|39000313171|2 +803125|39000313175|2 +803315|39000313176|4 +803353|39000313178|2 +803289|39000313179|2 +803398|39000313182|2 +803362|39000313185|2 +803602|39000313188|2 +803312|39000313190|2 +468076|39000313191|2 +803991|39000313199|2 +804289|39000313201|2 +804313|39000313202|2 +804267|39000313203|2 +804406|39000313207|2 +804404|39000313209|2 +583826|39000313210|2 +804409|39000313211|2 +804584|39000313215|2 +804585|39000313217|2 +804985|39000313224|2 +804986|39000313227|2 +805018|39000313228|2 +805353|39000313233|2 +805475|39000313234|6 +805465|39000313235|4 +795497|39000313236|2 +805466|39000313237|4 +805559|39000313238|2 +805701|39000313239|2 +805757|39000313240|2 +805832|39000313242|2 +805916|39000313243|2 +806438|39000313249|2 +807093|39000313253|2 +807094|39000313254|2 +807157|39000313255|2 +807304|39000313257|2 +807720|39000313258|2 +807919|39000313259|2 +808039|39000313262|2 +808075|39000313263|2 +808076|39000313264|2 +808088|39000313266|2 +808106|39000313267|2 +808108|39000313269|2 +808109|39000313270|2 +808122|39000313272|2 +808171|39000313273|2 +808929|39000313279|2 +809045|39000313280|2 +809080|39000313281|2 +809082|39000313282|2 +809083|39000313283|2 +809694|39000313286|2 +825316|39000313289|4 +825317|39000313290|4 +825320|39000313291|4 +825318|39000313292|4 +825811|39000313293|4 +825571|39000313294|4 +826189|39000313295|6 +826322|39000313300|8 +826171|39000313301|4 +826377|39000313302|6 +826214|39000313304|2 +825627|39000313305|4 +826535|39000313307|4 +826540|39000313308|4 +799466|39000313309|2 +826568|39000313310|4 +826581|39000313311|4 +826550|39000313312|4 +826646|39000313313|4 +811503|39000313317|2 +489904|39000313321|2 +827044|39000313323|4 +826128|39000313325|4 +834773|39000313326|4 +827085|39000313327|4 +827057|39000313328|4 +827051|39000313330|4 +827506|39000313334|4 +827530|39000313335|4 +827590|39000313340|4 +827570|39000313343|4 +827575|39000313345|4 +827582|39000313346|4 +827572|39000313347|4 +827581|39000313351|4 +827539|39000313353|4 +827584|39000313354|4 +827543|39000313355|4 +523750|39000313356|2 +827645|39000313359|4 +827646|39000313360|4 +827834|39000313361|4 +828111|39000313363|4 +828085|39000313364|4 +828112|39000313365|4 +828402|39000313368|4 +828407|39000313369|4 +829108|39000313374|4 +829075|39000313375|4 +829091|39000313376|4 +829072|39000313378|4 +829113|39000313380|4 +829088|39000313381|4 +829109|39000313383|4 +829084|39000313384|4 +829085|39000313385|4 +829102|39000313386|4 +829146|39000313388|4 +829144|39000313389|4 +829147|39000313390|4 +829177|39000313391|4 +829170|39000313392|4 +829167|39000313393|4 +829160|39000313396|4 +829212|39000313405|4 +829377|39000313407|4 +829401|39000313408|4 +829532|39000313411|4 +829533|39000313412|4 +829545|39000313413|4 +829728|39000313415|4 +829750|39000313416|4 +829785|39000313417|4 +829977|39000313418|4 +830215|39000313424|4 +815432|39000313429|2 +830712|39000313430|4 +830739|39000313431|4 +830727|39000313432|4 +830939|39000313433|4 +830972|39000313434|4 +830954|39000313435|4 +831002|39000313438|4 +831093|39000313439|4 +831042|39000313441|4 +831281|39000313443|4 +831280|39000313445|4 +831376|39000313448|4 +831385|39000313449|4 +831501|39000313450|4 +831491|39000313451|4 +831492|39000313452|4 +831499|39000313453|4 +831548|39000313456|4 +831568|39000313458|4 +831565|39000313459|4 +831569|39000313460|4 +831999|39000313463|4 +832025|39000313465|4 +831890|39000313466|4 +832149|39000313467|4 +832462|39000313469|4 +832546|39000313475|4 +832534|39000313477|4 +832542|39000313481|4 +832519|39000313483|4 +832629|39000313484|4 +832632|39000313485|4 +833212|39000313486|2 +834774|39000313490|4 +681653|39000313491|2 +832866|39000313493|4 +818477|39000313494|4 +835324|39000313495|8 +834520|39000313496|4 +832942|39000313498|4 +834681|39000313499|4 +835034|39000313501|6 +834572|39000313502|4 +834429|39000313506|4 +835643|39000313507|4 +818523|39000313509|4 +833644|39000313514|4 +833529|39000313518|4 +836164|39000313528|4 +836174|39000313530|4 +836159|39000313531|4 +836191|39000313533|4 +508880|39000313534|2 +836168|39000313535|4 +836196|39000313536|4 +836210|39000313539|4 +836212|39000313540|4 +836216|39000313542|4 +836335|39000313545|4 +836312|39000313551|4 +836336|39000313552|4 +836282|39000313555|4 +836636|39000313562|4 +837065|39000313567|4 +822151|39000313568|2 +836732|39000313571|4 +837576|39000313573|4 +836975|39000313574|4 +821321|39000313575|4 +838098|39000313576|4 +837986|39000313578|4 +838264|39000313579|4 +837998|39000313582|4 +838219|39000313583|4 +837944|39000313585|4 +838324|39000313586|4 +838381|39000313587|4 +838085|39000313591|4 +838389|39000313593|4 +838685|39000313594|4 +838767|39000313595|4 +838844|39000313596|4 +838654|39000313598|4 +838761|39000313600|4 +839126|39000313601|4 +839149|39000313603|4 +839150|39000313604|4 +839335|39000313606|4 +839353|39000313610|4 +839274|39000313611|4 +839313|39000313613|4 +839371|39000313617|4 +839303|39000313618|4 +839341|39000313620|4 +839289|39000313622|4 +839317|39000313623|4 +839324|39000313624|4 +839448|39000313628|4 +839820|39000313632|4 +839823|39000313633|4 +839865|39000313635|4 +839920|39000313638|4 +839931|39000313641|4 +840082|39000313643|4 +840307|39000313646|4 +840343|39000313648|4 +840397|39000313652|4 +840405|39000313653|4 +840376|39000313654|4 +840500|39000313655|4 +840542|39000313656|4 +840540|39000313657|4 +840653|39000313658|2 +840655|39000313659|2 +840658|39000313660|2 +840659|39000313661|2 +840734|39000313662|2 +840840|39000313664|2 +841185|39000313668|2 +841186|39000313669|2 +841189|39000313670|2 +841217|39000313671|2 +841474|39000313677|2 +841583|39000313681|2 +841580|39000313682|2 +841588|39000313683|2 +841842|39000313684|2 +842005|39000313685|2 +841838|39000313687|2 +680199|39000313688|2 +842061|39000313689|4 +841885|39000313690|2 +841910|39000313694|2 +842006|39000313696|2 +841783|39000313701|2 +841942|39000313702|2 +627183|39000313705|2 +842234|39000313709|2 +842237|39000313710|2 +842345|39000313711|2 +842346|39000313712|2 +842573|39000313713|2 +842574|39000313714|2 +843105|39000313722|2 +843182|39000313723|2 +843676|39000313725|2 +844040|39000313728|2 +844358|39000313732|2 +844424|39000313733|2 +844516|39000313734|2 +844615|39000313736|2 +844684|39000313738|2 +844712|39000313739|2 +844728|39000313740|2 +844937|39000313741|2 +845117|39000313745|2 +845253|39000313747|2 +845615|39000313751|2 +845762|39000313752|2 +845727|39000313753|2 +845770|39000313754|2 +845719|39000313755|2 +845818|39000313756|2 +845816|39000313757|2 +845843|39000313759|2 +845862|39000313760|2 +845984|39000313762|2 +845957|39000313763|2 +846068|39000313767|2 +846075|39000313768|2 +846072|39000313769|2 +846160|39000313771|2 +846451|39000313772|4 +847507|39000313776|2 +847432|39000313778|4 +847242|39000313779|2 +847746|39000313783|2 +847751|39000313784|2 +847749|39000313785|2 +847931|39000313788|2 +847932|39000313789|2 +848010|39000313790|2 +848054|39000313791|2 +848640|39000313792|2 +848519|39000313793|2 +848211|39000313794|2 +678104|39000313797|2 +848288|39000313798|2 +848507|39000313800|2 +848587|39000313802|2 +848366|39000313803|2 +849153|39000313809|2 +849452|39000313810|4 +849392|39000313811|2 +849576|39000313812|2 +849587|39000313813|2 +849589|39000313814|2 +849600|39000313817|2 +849615|39000313818|2 +849712|39000313819|2 +849709|39000313820|2 +849718|39000313821|2 +583878|39000313822|2 +850034|39000313825|2 +850043|39000313826|2 +850038|39000313827|2 +850044|39000313828|2 +850072|39000313830|2 +850303|39000313832|2 +850550|39000313834|2 +850548|39000313835|2 +850609|39000313838|2 +850721|39000313840|2 +850729|39000313841|2 +616207|39000313845|2 +851264|39000313848|2 +851275|39000313853|2 +851375|39000313855|2 +851735|39000313859|2 +851732|39000313862|2 +851756|39000313863|2 +851763|39000313864|2 +851853|39000313865|2 +851872|39000313866|2 +851881|39000313867|2 +852597|39000313870|2 +852588|39000313871|2 +853609|39000313874|2 +613901|39000313877|2 +852954|39000313879|2 +852987|39000313882|2 +853661|39000313883|2 +853375|39000313885|2 +853449|39000313886|2 +853437|39000313887|2 +853272|39000313888|2 +853596|39000313889|4 +852871|39000313890|2 +853056|39000313892|2 +853191|39000313897|2 +853261|39000313898|2 +853959|39000313900|2 +853963|39000313902|2 +853974|39000313903|2 +853982|39000313904|2 +853972|39000313905|2 +854415|39000313908|2 +854454|39000313911|2 +854497|39000313912|2 +854805|39000313914|2 +855027|39000313915|2 +855392|39000313918|2 +504440|39000313920|2 +855529|39000313921|2 +855946|39000313924|2 +855952|39000313925|2 +855947|39000313926|2 +855949|39000313927|2 +856049|39000313928|2 +856208|39000313933|2 +856485|39000313935|2 +856509|39000313937|2 +856510|39000313938|2 +856759|39000313943|2 +856923|39000313946|2 +856926|39000313947|2 +856929|39000313950|2 +856927|39000313951|2 +856980|39000313953|2 +857007|39000313954|2 +857029|39000313955|2 +857074|39000313957|2 +857311|39000313959|2 +857308|39000313962|2 +857562|39000313965|2 +857796|39000313967|2 +857794|39000313968|2 +857811|39000313969|2 +858027|39000313971|2 +858244|39000313972|2 +858236|39000313974|2 +858368|39000313976|2 +858743|39000313989|2 +858886|39000313992|2 +859013|39000313995|2 +859216|39000313997|2 +859217|39000313998|2 +859279|39000314001|2 +859786|39000314013|2 +859791|39000314014|2 +859790|39000314015|2 +859923|39000314020|2 +527956|39000314021|2 +860889|39000314030|2 +860915|39000314031|2 +861003|39000314033|2 +861042|39000314034|2 +873200|39000314035|2 +528061|39000314036|2 +861067|39000314037|2 +861190|39000314038|2 +861289|39000314043|2 +861290|39000314044|2 +861288|39000314045|2 +861297|39000314046|2 +861324|39000314047|2 +861331|39000314049|2 +861640|39000314051|2 +861641|39000314052|2 +861642|39000314053|2 +861649|39000314054|2 +861650|39000314056|2 +861647|39000314057|2 +861681|39000314059|2 +861907|39000314060|2 +862633|39000314072|2 +862692|39000314075|2 +862725|39000314076|2 +862760|39000314078|2 +862761|39000314079|2 +888378|39000314080|2 +862925|39000314081|6 +862928|39000314084|6 +862935|39000314085|6 +745500|39000314089|2 +862933|39000314090|6 +862934|39000314091|6 +862936|39000314092|6 +862924|39000314093|6 +862937|39000314094|6 +888398|39000314095|2 +888399|39000314097|2 +888778|39000314101|2 +862938|39000314102|6 +862947|39000314106|6 +891414|39000314108|2 +862943|39000314110|6 +862951|39000314112|6 +862944|39000314113|6 +862952|39000314114|6 +863293|39000314126|2 +863297|39000314130|2 +863353|39000314133|2 +863337|39000314134|2 +863341|39000314136|2 +863351|39000314138|2 +863354|39000314139|2 +863359|39000314140|2 +862965|39000314143|6 +746660|39000314146|2 +863535|39000314149|2 +863538|39000314150|2 +863512|39000314151|2 +863507|39000314153|2 +863530|39000314156|2 +863593|39000314157|2 +863649|39000314158|2 +863794|39000314163|2 +863808|39000314164|2 +863883|39000314169|2 +863888|39000314170|2 +863867|39000314171|2 +863886|39000314174|2 +863875|39000314175|2 +863884|39000314176|2 +863889|39000314177|2 +863876|39000314178|2 +863885|39000314180|2 +863952|39000314182|2 +863938|39000314183|2 +863931|39000314186|2 +863923|39000314187|2 +863962|39000314188|2 +863920|39000314190|2 +669414|39000314191|2 +864003|39000314193|2 +864208|39000314197|2 +864177|39000314199|2 +864175|39000314200|2 +864223|39000314202|2 +864168|39000314205|2 +864165|39000314206|2 +864196|39000314207|2 +864378|39000314211|2 +864417|39000314213|2 +864500|39000314214|2 +864431|39000314215|2 +864421|39000314217|2 +864452|39000314219|2 +864400|39000314220|2 +864454|39000314221|2 +864502|39000314224|2 +864619|39000314226|2 +864642|39000314227|2 +864626|39000314229|2 +864824|39000314232|2 +864811|39000314233|2 +864844|39000314236|2 +864880|39000314237|2 +864859|39000314238|2 +864857|39000314239|2 +864875|39000314240|2 +864886|39000314241|2 +864866|39000314242|2 +864871|39000314243|2 +864909|39000314244|2 +864998|39000314251|2 +864935|39000314252|2 +865044|39000314253|2 +865072|39000314254|2 +864931|39000314256|2 +865081|39000314257|2 +865027|39000314260|2 +864975|39000314264|2 +864995|39000314265|2 +865041|39000314267|2 +864932|39000314271|2 +865045|39000314274|2 +865272|39000314280|2 +865274|39000314281|2 +865271|39000314282|2 +865304|39000314283|2 +865292|39000314284|2 +865306|39000314285|2 +865293|39000314286|2 +580550|39000314288|2 +865550|39000314291|2 +865566|39000314292|2 +865564|39000314293|2 +865573|39000314294|2 +865641|39000314297|2 +627763|39000314299|2 +865532|39000314301|2 +865575|39000314304|2 +865593|39000314306|2 +865524|39000314307|2 +865661|39000314308|2 +865581|39000314310|2 +865642|39000314314|2 +865631|39000314315|2 +865622|39000314316|4 +865567|39000314318|2 +865673|39000314319|2 +865672|39000314320|2 +865671|39000314322|2 +865670|39000314324|2 +865678|39000314325|2 +865667|39000314326|2 +865676|39000314327|2 +865711|39000314329|2 +865689|39000314332|2 +865684|39000314333|2 +865885|39000314334|2 +865834|39000314335|2 +865835|39000314344|2 +865765|39000314345|2 +865906|39000314347|2 +865910|39000314349|2 +865909|39000314350|2 +865907|39000314351|2 +866017|39000314353|2 +865979|39000314354|2 +465778|39000314357|2 +865969|39000314358|2 +865934|39000314360|2 +865984|39000314362|2 +866018|39000314366|2 +865967|39000314368|2 +866086|39000314374|2 +866198|39000314378|2 +766246|39000314379|2 +866155|39000314380|2 +866149|39000314381|2 +866178|39000314384|2 +866215|39000314387|2 +866226|39000314389|2 +866232|39000314390|2 +885032|39000314391|2 +866218|39000314397|2 +866259|39000314402|2 +866251|39000314403|2 +866271|39000314404|2 +866254|39000314405|2 +866239|39000314406|2 +866243|39000314408|2 +866248|39000314409|2 +866280|39000314410|2 +866414|39000314415|2 +866412|39000314416|2 +866413|39000314419|2 +866421|39000314421|2 +866420|39000314422|2 +866442|39000314423|2 +866461|39000314426|2 +866507|39000314432|2 +866583|39000314433|2 +866686|39000314434|2 +866689|39000314435|2 +866690|39000314436|2 +866701|39000314439|2 +872198|39000314444|2 +866874|39000314448|2 +866884|39000314449|2 +866869|39000314450|2 +866876|39000314451|2 +866875|39000314452|2 +866863|39000314455|2 +866873|39000314456|2 +866864|39000314457|2 +866877|39000314458|2 +866881|39000314459|2 +867131|39000314462|2 +867126|39000314465|2 +867132|39000314466|2 +583704|39000314468|2 +867095|39000314469|2 +867106|39000314473|2 +867123|39000314475|2 +867267|39000314476|2 +867528|39000314480|2 +867520|39000314482|2 +867327|39000314483|2 +867385|39000314484|2 +867530|39000314486|2 +867457|39000314491|2 +867465|39000314492|2 +867400|39000314493|2 +867486|39000314495|2 +867378|39000314496|2 +867521|39000314498|2 +867364|39000314499|2 +867329|39000314500|2 +867533|39000314501|2 +867472|39000314502|2 +867534|39000314503|2 +867547|39000314505|2 +867458|39000314506|2 +867386|39000314508|2 +867473|39000314510|2 +867409|39000314511|2 +867489|39000314512|2 +867564|39000314514|2 +867556|39000314515|2 +867734|39000314518|2 +867741|39000314520|2 +867765|39000314522|2 +867773|39000314523|2 +867900|39000314525|2 +867903|39000314526|2 +867944|39000314529|2 +868016|39000314531|2 +868037|39000314534|2 +461528|39000314539|2 +868574|39000314541|2 +868330|39000314547|2 +868575|39000314549|2 +868242|39000314551|2 +868633|39000314554|2 +868243|39000314556|2 +868235|39000314561|2 +868299|39000314566|2 +868281|39000314567|2 +868607|39000314569|4 +868533|39000314573|2 +527399|39000314575|2 +868236|39000314576|2 +868576|39000314577|2 +849620|39000314581|2 +868430|39000314582|2 +868503|39000314584|2 +868302|39000314589|2 +868202|39000314591|2 +868341|39000314594|2 +868481|39000314597|2 +685817|39000314600|2 +868403|39000314602|2 +868429|39000314603|2 +868660|39000314604|2 +868659|39000314605|2 +868664|39000314606|2 +869019|39000314609|2 +869018|39000314615|2 +869051|39000314619|2 +869059|39000314620|2 +869348|39000314633|2 +869325|39000314636|2 +869274|39000314639|2 +869490|39000314641|2 +869389|39000314642|2 +869344|39000314643|2 +869361|39000314644|2 +869438|39000314645|2 +869322|39000314646|2 +869349|39000314649|2 +869452|39000314650|2 +869449|39000314651|2 +869460|39000314653|2 +869478|39000314654|2 +869383|39000314658|2 +869479|39000314659|2 +869324|39000314665|2 +869362|39000314666|2 +869473|39000314669|2 +869326|39000314670|2 +869363|39000314672|2 +869480|39000314675|2 +869340|39000314678|2 +869323|39000314683|2 +869653|39000314685|2 +869650|39000314686|2 +640938|39000314687|2 +869669|39000314689|2 +869666|39000314690|2 +869973|39000314692|2 +869956|39000314695|2 +582021|39000314697|2 +869962|39000314698|2 +869969|39000314699|2 +869970|39000314700|2 +869987|39000314701|2 +869949|39000314703|2 +869964|39000314704|2 +869981|39000314706|2 +869936|39000314711|2 +869975|39000314713|2 +869944|39000314714|2 +869959|39000314715|2 +869943|39000314716|2 +869974|39000314717|2 +869938|39000314719|2 +869982|39000314720|2 +869958|39000314722|2 +869988|39000314724|2 +869937|39000314725|2 +869945|39000314727|2 +869942|39000314729|2 +869976|39000314730|2 +870007|39000314732|2 +870146|39000314734|2 +870156|39000314735|2 +870196|39000314737|2 +870312|39000314743|2 +870605|39000314744|2 +870428|39000314746|2 +870617|39000314747|2 +870494|39000314748|2 +870412|39000314754|2 +870522|39000314755|2 +870419|39000314757|2 +870390|39000314759|2 +870533|39000314762|2 +870557|39000314764|2 +870476|39000314765|2 +870340|39000314767|2 +870420|39000314768|2 +870366|39000314771|2 +870582|39000314773|2 +870508|39000314776|2 +870400|39000314777|2 +870421|39000314779|2 +870515|39000314780|2 +870774|39000314783|2 +870775|39000314784|2 +870819|39000314785|2 +871103|39000314789|2 +871104|39000314791|2 +871226|39000314797|2 +871225|39000314798|2 +871442|39000314799|2 +871555|39000314802|2 +871521|39000314803|2 +871556|39000314804|2 +871603|39000314807|2 +871592|39000314809|2 +871563|39000314812|2 +871676|39000314813|2 +871783|39000314814|2 +871779|39000314816|2 +871778|39000314818|2 +872116|39000314823|2 +872095|39000314824|2 +872121|39000314826|2 +872087|39000314829|2 +872106|39000314831|2 +872119|39000314832|2 +872096|39000314834|2 +872136|39000314838|2 +872129|39000314841|2 +872133|39000314842|2 +872131|39000314843|2 +872150|39000314844|2 +872167|39000314845|2 +872193|39000314847|2 +848293|39000314848|2 +872164|39000314850|2 +872159|39000314852|2 +872158|39000314853|2 +872160|39000314855|2 +872187|39000314856|2 +872182|39000314857|2 +872176|39000314859|2 +872154|39000314861|2 +872174|39000314862|2 +872192|39000314863|2 +872179|39000314865|2 +872166|39000314866|2 +872151|39000314867|2 +872280|39000314870|2 +872486|39000314871|2 +872506|39000314873|2 +872502|39000314874|2 +872682|39000314877|2 +872686|39000314878|2 +872689|39000314879|2 +872679|39000314880|2 +872683|39000314881|2 +872687|39000314883|2 +872909|39000314885|2 +872904|39000314886|2 +872805|39000314888|2 +872912|39000314889|2 +872841|39000314891|2 +872897|39000314896|2 +872878|39000314897|2 +738382|39000314899|2 +872881|39000314900|2 +872766|39000314906|2 +872847|39000314907|2 +872828|39000314909|2 +872767|39000314911|2 +524053|39000314912|2 +872823|39000314915|4 +872768|39000314916|2 +872742|39000314917|2 +872789|39000314919|2 +872758|39000314921|2 +872741|39000314922|2 +872923|39000314925|2 +526564|39000314927|2 +873033|39000314929|2 +873039|39000314933|2 +873077|39000314934|2 +873147|39000314937|2 +873089|39000314939|2 +873050|39000314940|2 +873138|39000314943|2 +872994|39000314944|2 +873194|39000314947|2 +873171|39000314954|2 +873201|39000314956|2 +873224|39000314957|2 +873255|39000314963|2 +873260|39000314965|2 +873272|39000314966|2 +873622|39000314970|2 +868401|39000314971|2 +873623|39000314973|2 +873608|39000314975|2 +873565|39000314977|2 +873631|39000314979|2 +873632|39000314982|2 +873581|39000314983|2 +873583|39000314984|2 +873566|39000314986|2 +873569|39000314987|2 +873550|39000314988|2 +873616|39000314989|2 +873677|39000314993|2 +873743|39000314997|2 +873832|39000315005|2 +873996|39000315008|2 +874001|39000315011|2 +874005|39000315012|2 +874018|39000315014|2 +873997|39000315016|2 +873950|39000315017|2 +873940|39000315018|2 +874096|39000315020|2 +874098|39000315021|2 +874124|39000315023|2 +874114|39000315024|2 +874141|39000315026|2 +874134|39000315028|2 +874118|39000315029|2 +874129|39000315030|2 +885652|39000315031|2 +874168|39000315032|2 +874153|39000315033|2 +874151|39000315034|2 +874155|39000315036|2 +874158|39000315037|2 +874301|39000315040|2 +874279|39000315041|2 +874278|39000315042|2 +874498|39000315043|2 +874352|39000315044|2 +874433|39000315049|2 +874380|39000315050|2 +874436|39000315052|2 +874394|39000315053|2 +874422|39000315055|2 +874409|39000315057|2 +874393|39000315059|2 +874861|39000315060|2 +874834|39000315061|2 +874907|39000315063|2 +874810|39000315064|2 +874785|39000315065|2 +874899|39000315066|2 +874782|39000315067|2 +874800|39000315068|2 +874793|39000315070|2 +874912|39000315071|2 +874794|39000315072|2 +874862|39000315074|2 +874812|39000315076|2 +874838|39000315077|2 +770858|39000315079|2 +874786|39000315081|2 +874937|39000315082|2 +874941|39000315083|2 +874938|39000315086|2 +874939|39000315088|2 +874930|39000315090|2 +875171|39000315099|2 +875204|39000315101|2 +875296|39000315106|2 +875330|39000315107|2 +875433|39000315108|2 +875546|39000315109|2 +875590|39000315113|2 +875520|39000315114|2 +875621|39000315118|2 +875658|39000315120|2 +875649|39000315123|2 +875724|39000315125|2 +875710|39000315127|2 +875715|39000315128|2 +875728|39000315129|2 +875730|39000315130|2 +875701|39000315131|2 +875708|39000315133|2 +872861|39000315134|2 +875762|39000315136|2 +875850|39000315137|2 +875862|39000315138|2 +875861|39000315139|2 +876082|39000315142|2 +876081|39000315143|2 +876080|39000315145|2 +876142|39000315146|2 +876148|39000315149|2 +876160|39000315150|2 +708395|39000315151|2 +876115|39000315155|2 +876141|39000315156|2 +876143|39000315159|2 +876159|39000315161|2 +876113|39000315166|2 +876135|39000315167|2 +876127|39000315168|2 +876146|39000315169|2 +876095|39000315171|2 +876338|39000315174|2 +876414|39000315178|2 +876392|39000315179|2 +876437|39000315182|2 +876457|39000315185|2 +876726|39000315186|2 +877237|39000315189|2 +877265|39000315191|2 +877273|39000315194|2 +751310|39000315195|2 +877266|39000315196|2 +877240|39000315197|2 +877245|39000315198|2 +877271|39000315200|2 +877274|39000315202|2 +877241|39000315203|2 +877260|39000315208|2 +877246|39000315209|2 +877552|39000315214|2 +877396|39000315217|2 +877364|39000315218|2 +877523|39000315219|4 +877354|39000315220|2 +877617|39000315221|2 +461998|39000315223|2 +877317|39000315224|2 +877598|39000315227|2 +877359|39000315230|2 +877365|39000315232|2 +877326|39000315234|2 +877578|39000315237|4 +877618|39000315239|2 +877344|39000315240|2 +877522|39000315242|2 +877639|39000315243|2 +877801|39000315245|2 +877803|39000315246|2 +877810|39000315247|2 +877817|39000315250|2 +877831|39000315251|2 +877949|39000315252|2 +878002|39000315253|2 +461489|39000315254|2 +878042|39000315255|2 +877963|39000315258|2 +877965|39000315259|2 +878018|39000315260|2 +878097|39000315263|2 +878076|39000315264|2 +878094|39000315266|2 +878071|39000315275|2 +878070|39000315276|2 +888503|39000315278|2 +878369|39000315282|2 +878501|39000315286|2 +878381|39000315288|2 +878462|39000315289|2 +878516|39000315292|2 +878235|39000315298|2 +878596|39000315301|2 +878709|39000315302|2 +878719|39000315303|2 +724254|39000315305|2 +878717|39000315306|2 +878707|39000315307|2 +879182|39000315313|2 +879126|39000315316|2 +878966|39000315317|2 +879042|39000315320|2 +878878|39000315323|2 +879349|39000315324|2 +550991|39000315329|2 +879968|39000315331|2 +879942|39000315332|2 +879975|39000315333|2 +879944|39000315334|2 +879976|39000315335|2 +879910|39000315336|2 +879905|39000315337|2 +879977|39000315339|2 +879948|39000315340|2 +879967|39000315341|2 +879934|39000315342|2 +879969|39000315343|2 +879961|39000315344|2 +879906|39000315345|2 +879916|39000315346|2 +879903|39000315347|2 +880058|39000315348|2 +880115|39000315351|2 +880368|39000315354|2 +880673|39000315355|4 +880612|39000315356|2 +880542|39000315357|2 +880581|39000315358|2 +880682|39000315359|2 +880654|39000315361|2 +880866|39000315363|2 +880893|39000315364|2 +881018|39000315366|2 +881225|39000315369|2 +881283|39000315370|2 +881245|39000315371|2 +881349|39000315374|2 +881284|39000315376|2 +881233|39000315377|2 +881277|39000315378|2 +881079|39000315379|2 +735463|39000315380|2 +881148|39000315382|2 +881083|39000315384|2 +881236|39000315385|2 +881182|39000315388|2 +881334|39000315389|4 +881272|39000315390|2 +881141|39000315396|2 +881211|39000315400|2 +881159|39000315402|2 +881363|39000315404|2 +881365|39000315405|2 +881360|39000315407|2 +881366|39000315408|2 +881359|39000315409|2 +881449|39000315414|2 +881486|39000315415|2 +881497|39000315417|2 +881470|39000315420|2 +881482|39000315421|2 +881459|39000315423|2 +881564|39000315424|2 +881547|39000315426|2 +881596|39000315427|2 +881548|39000315429|2 +881593|39000315431|2 +881587|39000315432|2 +881565|39000315435|2 +881542|39000315439|2 +881549|39000315442|2 +881570|39000315444|2 +881550|39000315447|2 +881739|39000315460|2 +881765|39000315462|2 +881705|39000315463|2 +881760|39000315465|2 +881734|39000315466|2 +881799|39000315467|2 +881826|39000315469|2 +881803|39000315472|2 +881823|39000315474|2 +881856|39000315478|2 +881948|39000315479|2 +881863|39000315480|2 +881848|39000315483|2 +881843|39000315484|2 +881838|39000315485|2 +881852|39000315486|2 +881895|39000315487|2 +881875|39000315488|2 +881839|39000315489|2 +881914|39000315491|2 +881921|39000315493|4 +881904|39000315494|2 +882022|39000315496|2 +882233|39000315500|2 +882339|39000315501|2 +882414|39000315503|2 +882313|39000315506|2 +882351|39000315508|2 +882340|39000315509|2 +882392|39000315510|2 +882363|39000315512|2 +882393|39000315513|2 +882399|39000315514|2 +773694|39000315515|2 +882458|39000315519|2 +882523|39000315522|2 +882534|39000315525|2 +882431|39000315527|2 +882449|39000315528|2 +882474|39000315529|2 +882547|39000315531|2 +882433|39000315534|2 +882473|39000315535|2 +882514|39000315536|2 +882560|39000315537|2 +882508|39000315539|2 +882519|39000315544|2 +882477|39000315545|2 +882439|39000315547|2 +882520|39000315548|2 +882535|39000315550|2 +882543|39000315552|2 +882565|39000315553|2 +882750|39000315559|2 +882746|39000315562|2 +883482|39000315564|2 +883846|39000315567|2 +883721|39000315568|4 +731290|39000315572|2 +883825|39000315574|4 +883700|39000315576|2 +883800|39000315579|2 +883827|39000315580|4 +883664|39000315582|2 +898371|39000315584|2 +883959|39000315585|2 +883992|39000315589|2 +527443|39000315590|2 +884116|39000315602|2 +884130|39000315604|2 +884257|39000315605|2 +588242|39000315607|2 +884335|39000315608|2 +884495|39000315609|2 +884576|39000315611|2 +624573|39000315613|2 +884658|39000315614|2 +885018|39000315618|2 +885016|39000315619|2 +885243|39000315621|2 +885260|39000315622|2 +885229|39000315628|2 +885261|39000315629|2 +885324|39000315631|2 +885292|39000315632|2 +573419|39000315642|2 +885598|39000315643|2 +885547|39000315644|2 +577226|39000315645|2 +885533|39000315648|2 +885461|39000315651|2 +885485|39000315653|2 +885457|39000315655|2 +885710|39000315660|2 +885733|39000315661|2 +885639|39000315662|2 +885760|39000315664|2 +885657|39000315667|2 +885640|39000315668|2 +885660|39000315670|2 +885741|39000315671|2 +885681|39000315674|2 +885734|39000315676|2 +885746|39000315679|2 +885717|39000315680|2 +885695|39000315682|2 +885829|39000315684|2 +885816|39000315686|2 +885835|39000315687|2 +885826|39000315688|2 +579243|39000315690|2 +885830|39000315691|2 +885800|39000315692|2 +885813|39000315693|2 +542633|39000315694|2 +584521|39000315696|2 +886057|39000315698|2 +886009|39000315701|2 +885976|39000315702|2 +886030|39000315703|2 +886060|39000315704|2 +886025|39000315712|2 +885985|39000315713|2 +886055|39000315714|2 +886050|39000315716|2 +886008|39000315717|2 +886024|39000315719|2 +885987|39000315720|2 +885975|39000315724|2 +886085|39000315726|2 +886547|39000315732|2 +886557|39000315733|2 +886551|39000315734|2 +886845|39000315737|2 +886780|39000315738|2 +887740|39000315744|2 +887715|39000315745|2 +887736|39000315746|2 +887724|39000315747|2 +887738|39000315749|2 +887741|39000315752|2 +887739|39000315753|2 +887742|39000315754|2 +887745|39000315755|2 +887796|39000315757|2 +887786|39000315758|2 +888088|39000315759|2 +888102|39000315760|2 +888099|39000315761|2 +888101|39000315763|2 +888103|39000315764|2 +888116|39000315765|2 +888182|39000315770|2 +888171|39000315771|2 +862932|39000315782|6 +888508|39000315784|2 +888433|39000315785|2 +888497|39000315787|2 +888514|39000315788|2 +888477|39000315790|2 +888467|39000315794|2 +888498|39000315795|2 +888474|39000315797|2 +888447|39000315798|2 +888509|39000315799|2 +888500|39000315802|2 +888501|39000315803|2 +888461|39000315805|2 +888495|39000315806|2 +888438|39000315808|2 +888709|39000315812|2 +888681|39000315814|2 +888700|39000315818|2 +888726|39000315819|2 +888735|39000315820|2 +888792|39000315821|2 +888863|39000315823|2 +888855|39000315825|2 +889115|39000315832|2 +889185|39000315834|2 +889139|39000315837|2 +889186|39000315840|2 +889134|39000315841|2 +943434|39000315845|2 +889329|39000315847|2 +889461|39000315857|2 +889842|39000315859|2 +889417|39000315860|2 +889601|39000315865|2 +889735|39000315868|2 +889766|39000315869|2 +889749|39000315870|4 +889776|39000315871|2 +889418|39000315872|2 +889621|39000315875|2 +889669|39000315876|2 +890097|39000315880|2 +828281|39000315882|4 +890136|39000315884|2 +565194|39000315888|2 +890170|39000315890|2 +890172|39000315891|2 +890171|39000315893|2 +890175|39000315894|2 +890177|39000315896|2 +890234|39000315897|2 +890233|39000315899|2 +890225|39000315900|2 +890231|39000315901|2 +890237|39000315905|2 +890226|39000315906|2 +890235|39000315907|2 +890238|39000315908|2 +890240|39000315909|2 +890236|39000315910|2 +890228|39000315911|2 +890374|39000315914|2 +890396|39000315915|2 +890383|39000315916|2 +890433|39000315917|2 +890503|39000315918|2 +890420|39000315922|2 +890492|39000315923|2 +890805|39000315929|2 +891670|39000315932|2 +891678|39000315934|2 +891674|39000315936|2 +891677|39000315937|2 +891672|39000315938|2 +891671|39000315939|2 +891676|39000315940|2 +891825|39000315945|2 +891824|39000315946|2 +891819|39000315947|2 +891885|39000315948|2 +891878|39000315949|2 +891882|39000315950|2 +891875|39000315951|2 +892044|39000315952|2 +892457|39000315955|2 +892842|39000315959|2 +892892|39000315960|2 +892660|39000315961|2 +892924|39000315962|2 +893033|39000315963|4 +892804|39000315964|2 +893209|39000315965|2 +893243|39000315970|2 +893287|39000315973|2 +893290|39000315974|2 +893400|39000315975|2 +893937|39000315978|2 +894425|39000315986|2 +894445|39000315988|2 +894519|39000315992|2 +894604|39000315994|2 +894655|39000315995|2 +894975|39000316001|2 +895089|39000316006|2 +895991|39000316008|2 +895898|39000316009|2 +895938|39000316012|2 +895955|39000316013|2 +895984|39000316014|2 +896182|39000316019|2 +896528|39000316021|2 +897120|39000316029|2 +897580|39000316033|2 +898138|39000316036|2 +898070|39000316037|2 +898226|39000316038|2 +898375|39000316039|2 +899037|39000316048|2 +898940|39000316049|2 +898970|39000316050|2 +899023|39000316051|2 +899100|39000316053|2 +900098|39000316056|2 +899839|39000316057|2 +900769|39000316060|2 +900988|39000316061|2 +900989|39000316062|2 +901423|39000316063|2 +901520|39000316064|2 +901068|39000316065|2 +901069|39000316066|2 +901370|39000316067|2 +901503|39000316070|2 +901022|39000316076|4 +900569|39000316077|2 +900437|39000316078|2 +900843|39000316079|2 +900770|39000316080|2 +901424|39000316081|2 +900577|39000316082|2 +901465|39000316083|2 +900649|39000316085|2 +709087|39000316086|2 +901895|39000316088|2 +901891|39000316090|2 +902018|39000316094|2 +902323|39000316102|2 +902335|39000316105|2 +902336|39000316106|2 +902327|39000316111|2 +902324|39000316112|2 +902381|39000316113|2 +902391|39000316114|2 +902392|39000316115|2 +902390|39000316116|2 +902429|39000316117|2 +477327|39000316226|2 +674788|39000316267|2 +845047|39000316274|2 +909734|39000316305|2 +699240|39000316308|2 +680186|39000316359|2 +706069|39000316360|2 +727525|39000316425|2 +916734|39000316438|2 +511512|39000316460|2 +792169|39000316524|2 +627629|39000316529|2 +1101081|39000316607|2 +757445|39000316608|2 +870401|39000316644|2 +924183|39000316665|2 +533209|39000316670|2 +540731|39000316672|2 +925132|39000316685|2 +925133|39000316686|2 +925134|39000316690|2 +886000|39000316712|2 +926636|39000316736|2 +929107|39000316834|2 +785831|39000316839|2 +928034|39000316846|2 +882509|39000316857|2 +930827|39000316887|2 +930740|39000316896|2 +930828|39000316899|2 +574291|39000316914|2 +930289|39000316923|2 +579869|39000316948|2 +472597|39000317015|2 +882536|39000317022|2 +516208|39000317058|2 +938086|39000317086|2 +672296|39000317095|4 +508641|39000317169|2 +943435|39000317182|2 +517020|39000317266|2 +949733|39000317296|2 +949737|39000317298|2 +627163|39000317333|2 +665493|39000317366|2 +958931|39000317409|2 +959089|39000317410|2 +851382|39000317631|2 +724205|39000317637|2 +829152|39000317653|4 +622408|39000317774|2 +971788|39000317779|2 +1015123|39000317792|2 +1076720|39000317801|2 +662199|39000317813|2 +973582|39000317816|2 +974232|39000317842|2 +474538|39000317851|2 +465610|39000317880|2 +978967|39000317908|2 +978932|39000317915|2 +866083|39000317921|2 +732506|39000317928|2 +809046|39000317936|2 +508504|39000317993|2 +981682|39000318005|2 +676847|39000318022|2 +981802|39000318025|2 +982434|39000318064|2 +875072|39000318079|2 +507008|39000318104|2 +709735|39000318177|2 +990407|39000318210|2 +990408|39000318221|2 +992783|39000318259|2 +993154|39000318271|2 +489672|39000318288|2 +775608|39000318292|2 +927687|39000318294|2 +652449|39000318297|2 +462751|39000318324|2 +995861|39000318351|2 +688379|39000318361|2 +475158|39000318434|2 +797940|39000318569|2 +852075|39000318571|2 +899101|39000318707|2 +596274|39000318711|2 +566461|39000318730|2 +759338|39000318745|2 +526738|39000318755|2 +766176|39000318810|2 +506534|39000318811|2 +1071823|39000318833|2 +1021342|39000318877|2 +1021363|39000318880|2 +515909|39000318960|2 +521465|39000318963|2 +696789|39000318967|2 +501237|39000319046|2 +1029220|39000319056|2 +626961|39000319058|2 +1030272|39000319100|2 +1030273|39000319126|2 +1030274|39000319128|2 +1031420|39000319139|2 +1031224|39000319142|2 +862927|39000319213|6 +681806|39000319218|2 +867493|39000319228|2 +1036169|39000319304|2 +865006|39000319332|2 +513338|39000319346|2 +1038921|39000319381|2 +1039185|39000319402|2 +1039301|39000319403|2 +1039619|39000319414|2 +1039579|39000319415|2 +1039580|39000319419|2 +1039578|39000319432|2 +1039581|39000319445|2 +604832|39000319463|2 +493369|39000319479|2 +1044338|39000319497|2 +1043371|39000319503|2 +1043631|39000319513|2 +527400|39000319566|2 +1047493|39000319571|2 +1046685|39000319582|2 +863307|39000319601|2 +678593|39000319652|2 +724480|39000319678|2 +1054723|39000319798|2 +481256|39000319814|2 +826723|39000319851|4 +672148|39000319881|2 +535182|39000319945|2 +1060244|39000319954|2 +1060248|39000319971|2 +517651|39000319982|2 +829013|39000320007|4 +480167|39000320076|2 +690707|39000320088|2 +484839|39000320206|2 +474402|39000320209|2 +673847|39000320297|2 +1074215|39000320363|2 +651440|39000320390|2 +1076843|39000320416|2 +1076721|39000320422|2 +800793|39000320442|2 +620350|39000320539|2 +660828|39000320569|2 +1086365|39000320635|2 +1086627|39000320651|2 +781868|39000320663|2 +728858|39000320699|2 +1092768|39000320768|2 +511534|39000320770|2 +500867|39000320842|2 +671855|39000320877|2 +520151|39000320939|2 +1097732|39000320954|2 +775738|39000320985|2 +1096825|39000321000|2 +1098467|39000321024|2 +741330|39000321033|2 +1099469|39000321064|2 +1099470|39000321077|2 +1100974|39000321160|2 +469955|39000321241|2 +603473|39000321248|2 +525287|39000321252|2 +1106254|39000321282|2 +1105971|39000321308|2 +1107362|39000321312|2 +1106255|39000321316|2 +1106256|39000321319|2 +593522|39000321322|2 +608749|39000321443|2 +1112583|39000321447|2 +535132|39000321535|2 +601083|39000321564|2 +835819|39000321630|4 +832373|39000321631|4 +1120267|39000321634|2 +1120268|39000321635|2 +1122014|39000321652|2 +615433|39000321669|2 +1122456|39000321676|2 +1122458|39000321677|2 +853145|39000321689|2 +508145|39000321700|2 +772255|39000321703|2 +670716|39000321705|2 +704270|39000321723|2 +1127331|39000321793|2 +1127882|39000321804|2 +574340|39000321814|2 +487109|39000321835|2 +1130731|39000321872|2 +1130499|39000321881|2 +746236|39000321937|2 +732525|39000321961|2 +1136532|39000322014|2 +1220214|39000322020|2 +868635|39000322043|2 +591396|39000322119|2 +541806|39000322127|2 +583893|39000322181|2 +1145927|39000322205|2 +778750|39000322243|2 +827677|39000322336|4 +748826|39000322397|2 +476624|39000322435|2 +721017|39000322475|2 +869992|39000322496|2 +1165893|39000322530|2 +1163934|39000322539|2 +873163|39000322669|2 +509538|39000322960|2 +851847|39000323052|2 +1191134|39000323071|2 +500979|39000323076|2 +1191135|39000323079|2 +565222|39000323136|2 +685806|39000323140|2 +503671|39000323217|2 +776711|39000323282|2 +673027|39000323387|2 +1202198|39000323427|2 +870638|39000323439|2 +1202202|39000323440|2 +676398|39000323487|2 +1204090|39000323540|2 +652564|39000323588|2 +504370|39000323649|2 +1212371|39000323667|2 +868544|39000323786|2 +630633|39000323839|2 +873424|39000323844|2 +603337|39000323845|4 +1219542|39000323862|2 +1219543|39000323891|2 +495682|39000323944|2 +1219992|39000323947|2 +873204|39000323948|2 +898439|39000323959|2 +776555|39000324115|2 +1230687|39000324188|2 +1259432|39000324196|2 +873885|39000324259|2 +864682|39000324322|2 +688166|39000324421|2 +1246030|39000324470|2 +527388|39000324542|2 +1253038|39000324558|2 +875167|39000324593|2 +566833|39000324607|2 +511627|39000324608|2 +1258162|39000324625|2 +1257260|39000324641|2 +1259636|39000324671|2 +682730|39000324710|2 +889599|39000324757|2 +501360|39000324779|2 +755705|39000324899|2 +855134|39000324904|2 +780891|39001001640|2 +493204|39001001658|2 +456257|39001001698|2 +526588|39001001701|2 +543937|39001001703|2 +583890|39001001705|4 +580359|39001001711|2 +482689|39001001717|2 +599111|39001001719|2 +829142|39001001735|4 +780892|39001001743|2 +888917|39001001749|2 +486434|39001001806|2 +515680|39001001808|2 +515682|39001001809|2 +606605|39001001810|2 +672149|39001001811|2 +715794|39001001813|2 +863681|39001001817|2 +866209|39001001819|2 +743583|39001001823|2 +784213|39001001836|2 +672063|39001001838|2 +583512|39001001841|2 +723570|39001001845|2 +547123|39001001851|2 +740936|39001001853|2 +651292|39001001854|4 +582013|39001001898|2 +867740|39001001901|2 +516013|39001001902|2 +799622|39001001905|2 +492471|39001001906|2 +927935|39001001911|2 +518232|39001001951|2 +732536|39001002061|2 +482285|39001002106|2 +514010|39001002129|2 +529925|39001002137|2 +536627|39001002175|2 +542634|39001002176|2 +620138|39001002177|2 +646630|39001002179|2 +650563|39001002180|2 +672167|39001002181|2 +672168|39001002182|2 +672656|39001002183|2 +724777|39001002184|2 +842689|39001002185|2 +829089|39001002187|4 +866488|39001002188|2 +544495|39001002368|2 +651174|39001002369|2 +484494|39001002395|2 +508502|39001002401|2 +522969|39001002406|2 +556021|39001002412|2 +663684|39001002420|2 +511935|39001002921|2 +783928|39001002933|2 +532894|39001002947|2 +801249|39001003149|2 +762707|39001003178|2 +850264|39001003185|2 +453605|39001003191|2 +470665|39001003199|2 +480510|39001003201|2 +508025|39001003206|2 +514828|39001003209|2 +550084|39001003232|2 +487349|39001003530|2 +527162|39001003550|2 +525138|39001003569|2 +534854|39001003579|2 +549436|39001003585|2 +558003|39001003591|2 +585781|39001003771|2 +870162|39001003779|2 +622161|39001003789|4 +673237|39001003815|2 +718171|39001003817|2 +669119|39001003820|2 +686020|39001003821|2 +686358|39001003825|2 +696994|39001003845|2 +694003|39001003859|2 +705016|39001003882|2 +615263|39001003904|2 +860877|39001003906|2 +862152|39001003910|2 +867393|39001003918|2 +867733|39001003922|2 +869941|39001003927|2 +871782|39001003939|2 +873038|39001003945|2 +851086|39001004000|2 +847690|39001004410|2 +610821|39001004419|2 +615365|39001004424|2 +748836|39001004442|2 +741281|39001004447|2 +787163|39001004450|2 +868586|39001004454|4 +869107|39001004455|2 +869108|39001004460|2 +870598|39001004462|2 +888914|39001004467|2 +900760|39001004469|2 +628045|39001004484|2 +808110|39001004550|2 +1122430|39001004571|2 +557999|39001004628|2 +888100|39001004654|2 +568930|39001004657|2 +584219|39001004675|2 +651585|39001005208|2 +1122434|39001005816|2 +562711|39001005833|2 +874600|39001005857|2 +901135|39001005863|2 +495557|39001005984|2 +523284|39001005992|2 +779546|39001005996|2 +836916|39001005997|4 +698205|39001006500|2 +842097|39001006511|2 +865908|39001006521|2 +890216|39001006523|2 +890219|39001006524|2 +770845|39001006545|2 +683225|39001006549|2 +829145|39001006550|4 +520446|39001006555|2 +615706|39001006556|2 +622143|39001006557|2 +655237|39001006559|2 +727507|39001006561|2 +786399|39001006562|2 +837328|39001006571|4 +1141322|39001006991|2 +526741|39001006992|2 +453816|39001007860|2 +654840|39001008796|2 +672014|39001008953|2 +737459|39001008954|2 +504809|39001008958|2 +709871|39001008991|2 +502106|39001008994|4 +712716|39001009009|2 +507322|39001009011|2 +553715|39001009013|2 +525154|39001009015|2 +501151|39001009016|2 +787562|39001009018|2 +776716|39001009032|2 +524587|39001009036|2 +617251|39001009039|2 +568549|39001009126|2 +568382|39001009127|2 +801869|39001009128|2 +509417|39001009150|2 +672372|39001009153|2 +878034|39001009156|2 +724498|39001009192|2 +574804|39001009193|2 +875074|39001009195|2 +589868|39001009222|2 +927832|39001009314|2 +501061|39001009318|2 +629263|39001009319|2 +807033|39001009337|2 +478547|39001009353|2 +478456|39001009356|2 +782741|39001009358|2 +510833|39001009359|2 +684151|39001009366|2 +713929|39001009368|2 +887180|39001009369|2 +887091|39001009370|2 +869359|39001009372|2 +734883|39001009447|2 +500930|39001009452|2 +530584|39001009489|2 +885281|39001009504|2 +495632|39001009510|2 +674889|39001009515|2 +872902|39001009523|2 +551852|39001009561|2 +601959|39001009563|2 +769246|39001009565|2 +738776|39001009595|2 +614104|39001009599|2 +775607|39001009606|2 +521244|39001009607|2 +521213|39001009608|2 +556529|39001009610|2 +583919|39001009667|2 +650383|39001009670|2 +504846|39001009685|2 +734673|39001009721|2 +696026|39001009723|2 +504932|39001009725|2 +652363|39001009735|2 +755839|39001009743|4 +620511|39001009748|2 +833958|39001009751|4 +745013|39001009764|2 +734844|39001009782|2 +878058|39001009792|2 +501447|39001009935|2 +737002|39001009950|2 +879132|39001009962|2 +509295|39001009982|2 +783381|39001009993|2 +881711|39001010002|2 +864737|39001010014|2 +738960|39001010017|2 +738959|39001010018|2 +665385|39001010022|2 +622485|39001010025|2 +652423|39001010029|2 +652378|39001010032|2 +851084|39001010033|2 +784408|39001010034|2 +515578|39001010038|2 +546767|39001010044|2 +807975|39001010048|2 +745984|39001010065|2 +523280|39001010078|2 +835146|39001010111|4 +537400|39001010113|2 +741800|39001010119|2 +865677|39001010138|2 +524589|39001010143|2 +696791|39001010159|2 +614774|39001010191|2 +826582|39001010193|4 +505130|39001010194|2 +634479|39001010198|2 +847796|39001010199|2 +739842|39001010201|2 +890179|39001010203|2 +513418|39001010284|2 +856934|39001010806|2 +726912|39001010818|2 +723571|39001010821|2 +569968|39001010822|2 +489205|39001010823|2 +513783|39001010826|2 +744962|39001010833|2 +482837|39001010836|2 +505108|39001010837|2 +464608|39001010843|2 +800232|39001010846|2 +863975|39001010848|2 +603698|39001010849|2 +495546|39001010850|2 +678582|39001010851|2 +527011|39001010852|2 +887727|39001010853|2 +603338|39001010854|2 +552979|39001010859|2 +826823|39001010860|4 +482109|39001010863|2 +531021|39001010867|2 +874379|39001010869|2 +461042|39001010878|2 +686560|39001010880|2 +873343|39001010884|2 +627997|39001010895|2 +863057|39001010901|2 +475299|39001010926|2 +711889|39001010928|2 +482885|39001010956|2 +665388|39001010962|2 +623638|39001010969|2 +500724|39001011127|2 +856710|39001011143|2 +801837|39001011162|2 +594947|39001011181|2 +786457|39001011184|2 +697551|39001011216|2 +826761|39001011236|4 +616876|39001011257|2 +568088|39001011272|2 +583232|39001011283|2 +708821|39001011292|2 +1262884|39001011302|2 +585536|39001011310|2 +646570|39001011311|2 +521482|39001011367|2 +508760|39001011375|2 +494560|39001011421|2 +724778|39001011431|2 +652364|39001011436|2 +732033|39001011443|2 +491011|39001011491|2 +847054|39001011518|2 +885962|39001011525|2 +878769|39001011536|2 +476821|39001012264|2 +501675|39001012308|2 +512734|39001012316|2 +592887|39001012373|2 +682990|39001012387|2 +721090|39001012431|2 +731415|39001012445|2 +767849|39001012480|2 +829306|39001012516|4 +506164|39001012697|2 +526109|39001012910|2 +846838|39001012967|2 +902377|39001013321|2 +504076|39001013327|2 +723765|39001013810|2 +521521|39001014107|2 +567240|39001014113|2 +781814|39001014116|2 +789557|39001014250|2 +496988|39001014315|2 +484793|39001014331|2 +651241|39001014333|2 +859796|39001014339|2 +734421|39001014352|2 +461476|39001014956|2 +489231|39001014959|2 +501152|39001014962|2 +508654|39001014973|2 +512466|39001014980|2 +760151|39001014985|2 +592716|39001014987|2 +599052|39001014989|2 +652368|39001014991|2 +715991|39001015020|2 +784636|39001015041|2 +790283|39001015044|2 +804582|39001015046|2 +840364|39001015075|4 +841237|39001015078|2 +853060|39001015085|2 +892498|39001015099|2 +877586|39001015491|2 +570967|39001015537|4 +885455|39001015637|2 +742910|39001016015|2 +895937|39001016020|2 +510188|39001016021|2 +749652|39001016028|2 +900682|39001016199|4 +542322|39001017216|2 +742066|39001017308|2 +778263|39001017446|2 +890794|39001017601|2 +676871|39001017602|2 +528204|39001017603|2 +504177|39001017684|2 +671867|39001017686|2 +712484|39001017694|2 +772568|39001017780|2 +875855|39001017781|2 +881810|39001017886|2 +479485|39001018225|2 +504179|39001019341|2 +606095|39001019342|2 +481488|39001019833|2 +874138|39001019839|2 +528615|39001019929|2 +538363|39001020242|2 +561090|39001020243|2 +809066|39001020244|2 +886041|39001020448|2 +584741|39001020851|2 +564547|39001021233|2 +870418|39001021239|2 +476668|39001021422|2 +530840|39001021431|2 +708997|39001021433|2 +751250|39001021434|2 +764063|39001021438|2 +885709|39001021440|2 +463185|39001021587|2 +458419|39001021704|2 +495083|39001021717|2 +511206|39001021724|2 +537438|39001021726|2 +669805|39001021730|2 +782032|39001021732|2 +476707|39001022121|2 +719422|39001022122|2 +865525|39001022123|2 +866277|39001022125|2 +845720|39001022146|2 +559161|39001022148|2 +711625|39001022152|2 +737341|39001022154|2 +882916|39001022156|2 +805473|39001022233|4 +663381|39001022248|2 +900657|39001022475|2 +613790|39001022479|2 +766728|39001022481|2 +508669|39001022506|2 +508483|39001022507|2 +502130|39001022539|2 +502161|39001022541|2 +930094|39001022542|2 +496490|39001022550|2 +699226|39001022554|2 +742869|39001022572|2 +624643|39001022595|2 +869454|39001022596|2 +873610|39001022600|2 +502009|39001022630|2 +638680|39001022656|2 +504344|39001022668|2 +552563|39001022671|2 +873066|39001022675|2 +645339|39001022701|2 +756425|39001022706|2 +839336|39001022707|4 +616721|39001022751|2 +866371|39001022825|2 +514071|39001022870|2 +745502|39001022888|2 +459928|39001022891|2 +581310|39001022898|2 +888170|39001022912|2 +680821|39001022930|2 +866741|39001022944|2 +493472|39001023003|2 +657023|39001023004|2 +851679|39001023007|2 +509027|39001023095|2 +725083|39001023152|2 +756965|39001023175|2 +867456|39001023220|2 +668943|39001023512|2 +776981|39001023519|2 +858238|39001023522|2 +682179|39001023637|2 +616103|39001023648|2 +717242|39001023723|2 +833755|39001023737|4 +877251|39001023748|2 +501823|39001023795|2 +650445|39001023797|2 +468872|39001023843|2 +769773|39001023847|2 +593165|39001023864|2 +641395|39001023865|2 +652040|39001023867|2 +882021|39001023869|2 +613990|39001023900|4 +515160|39001023921|2 +655028|39001023922|2 +602066|39001023938|2 +496475|39001024871|2 +567485|39001024886|2 +567391|39001024887|2 +651266|39001024899|2 +651231|39001024902|2 +672043|39001024905|4 +672301|39001024906|4 +503966|39001024907|2 +514107|39001024909|4 +461308|39001024958|2 +743724|39001024970|2 +501187|39001024971|2 +762787|39001024972|2 +745524|39001024973|2 +786458|39001024974|2 +863556|39001024976|2 +863495|39001024977|2 +524274|39001024999|2 +526618|39001025001|2 +890903|39001025011|2 +890419|39001025012|2 +1117114|39001025014|2 +876766|39001025039|2 +709720|39001025076|2 +615578|39001025078|2 +628787|39001025080|2 +869302|39001025082|2 +869440|39001025109|2 +550221|39001025122|2 +559094|39001025157|2 +782208|39001025190|2 +652431|39001025387|2 +518088|39001025440|2 +683888|39001025441|2 +580450|39001025442|2 +724268|39001025446|2 +580323|39001025447|2 +776514|39001025450|2 +864877|39001025451|2 +864865|39001025452|2 +694763|39001025453|2 +796001|39001025549|2 +796002|39001025552|2 +901136|39001025562|2 +1165894|39001025587|2 +795998|39001025589|2 +453292|39001025609|2 +486917|39001025610|2 +577346|39001025630|2 +591279|39001025633|2 +776576|39001025644|2 +651465|39001025733|2 +651451|39001025734|2 +636556|39001025808|2 +509444|39001025824|2 +872838|39001025842|2 +878221|39001025848|2 +741776|39001025884|2 +1204842|39001025886|2 +647872|39001025994|2 +468871|39001026003|2 +793187|39001026005|2 +889663|39001026029|2 +899102|39001026034|2 +1165448|39001026050|2 +672076|39001026093|2 +882235|39001026108|2 +883653|39001026112|2 +885271|39001026116|2 +501153|39001026148|2 +569441|39001026210|2 +690865|39001026217|2 +861749|39001026240|2 +791081|39001026244|2 +776667|39001026498|2 +802645|39001026499|2 +476886|39001026525|2 +482163|39001026784|2 +850785|39001026786|2 +884600|39001026794|2 +792760|39001026809|2 +830666|39001026813|6 +650638|39001026820|2 +661810|39001026822|2 +718686|39001026825|2 +743550|39001026826|2 +698667|39001026830|2 +866194|39001026835|2 +746044|39001027017|2 +575155|39001027041|2 +752558|39001027070|2 +754860|39001027086|2 +526445|39001027825|2 +826425|39001028614|4 +473069|39001030207|2 +473070|39001030209|2 +492446|39001030211|2 +766659|39001030218|2 +726904|39001030219|2 +517423|39001030258|2 +610868|39001030631|2 +546709|39001030635|2 +734659|39001030645|2 +805949|39001030649|2 +579494|39001030699|2 +797159|39001030705|2 +473084|39001030736|2 +866417|39001030739|2 +507476|39001030743|2 +881780|39001030744|2 +893918|39001030750|2 +705827|39001030792|2 +716244|39001030794|2 +501625|39001030829|2 +868612|39001030874|2 +873834|39001030881|2 +659458|39001030888|2 +669820|39001030889|2 +865917|39001030897|2 +901886|39001030898|2 +801987|39001030952|2 +737307|39001030973|2 +594233|39001030985|2 +601063|39001030986|2 +930802|39001030988|2 +605991|39001031014|2 +873845|39001031017|2 +512723|39001031020|2 +577467|39001031021|2 +619947|39001031022|2 +526619|39001031497|2 +528720|39001031501|2 +555835|39001031503|2 +646640|39001031509|2 +597775|39001031521|2 +866872|39001031527|2 +598012|39001031539|2 +546217|39001031629|2 +781900|39001031631|2 +714740|39001031675|2 +877058|39001031678|2 +567515|39001031798|2 +584079|39001032072|2 +652132|39001032073|2 +477774|39001032986|2 +528220|39001032987|2 +579609|39001032988|2 +672135|39001032991|2 +759194|39001032992|2 +764717|39001032993|2 +836477|39001032995|4 +494966|39001033005|2 +501044|39001033006|2 +526608|39001033007|2 +532446|39001033008|2 +616926|39001033009|2 +695776|39001033022|2 +866553|39001033024|2 +874336|39001033026|2 +521438|39001033059|2 +897235|39001033073|2 +744116|39001033230|2 +476512|39001033375|2 +476726|39001033474|2 +869950|39001033717|2 +826889|39001033739|4 +868385|39001033911|2 +652565|39001033915|2 +673296|39001033953|2 +530839|39001036560|2 +569621|39001036584|2 +746002|39001036586|2 +768375|39001036587|2 +465523|39001036611|2 +476653|39001036612|2 +504403|39001036613|2 +523753|39001036615|2 +758574|39001036619|2 +785730|39001036620|2 +571047|39001036627|2 +582867|39001036629|2 +749819|39001036636|2 +517692|39001036682|2 +718303|39001036683|2 +808403|39001036685|2 +471067|39001036712|2 +619385|39001036714|2 +776728|39001036717|2 +501104|39001036719|2 +567444|39001036741|2 +577218|39001036742|2 +597295|39001036743|2 +672315|39001036750|2 +837450|39001036751|4 +733370|39001036761|2 +572620|39001036768|2 +709128|39001036782|2 +761726|39001036783|2 +699372|39001036786|2 +566113|39001036792|2 +566016|39001036793|2 +1093223|39001036799|2 +737222|39001037127|2 +452180|39001037136|2 +457088|39001037216|2 +746275|39001037225|2 +788144|39001037228|2 +486435|39001037229|2 +657855|39001037233|2 +889717|39001037242|2 +789600|39001037281|2 +652248|39001037332|2 +648942|39001037429|2 +652438|39001037433|2 +836217|39001037519|4 +775681|39001037766|2 +872138|39001037767|2 +457457|39001037905|2 +542572|39001037906|2 +836333|39001037948|4 +827800|39001038119|4 +605600|39001038616|2 +511434|39001038757|2 +473465|39001038897|2 +879904|39001038904|2 +900593|39001038992|2 +515870|39001038993|2 +555876|39001039154|2 +711947|39001039159|2 +733377|39001039160|2 +881837|39001039233|2 +576430|39001039411|2 +860038|39001039415|2 +680839|39001039545|2 +695609|39001039548|2 +862156|39001039550|2 +862930|39001039554|6 +454617|39001039694|2 +466732|39001039784|2 +767146|39001039785|2 +511621|39001039790|2 +598816|39001040023|2 +845776|39001040032|2 +588638|39001040184|2 +513605|39001040187|2 +658026|39001040189|2 +543605|39001040190|2 +677433|39001040192|2 +729797|39001040193|2 +745799|39001040197|2 +746427|39001040200|2 +867624|39001040201|2 +863340|39001040203|2 +889718|39001040204|2 +804706|39001040207|2 +682627|39001040209|2 +532447|39001040211|2 +486083|39001040217|2 +652282|39001040221|2 +900990|39001040224|2 +668454|39001040305|2 +790282|39001040466|2 +620980|39001040549|2 +625522|39001040553|2 +581287|39001040574|2 +528242|39001040718|2 +743712|39001040719|2 +715035|39001040723|2 +766935|39001040728|2 +734087|39001040810|4 +862950|39001040840|6 +792179|39001041007|2 +714391|39001041141|2 +867479|39001041145|2 +651214|39001041217|2 +560337|39001041437|2 +865959|39001041457|2 +503105|39001041518|2 +502209|39001041856|2 +713259|39001041858|2 +762198|39001041878|2 +532940|39001041962|2 +453815|39001042093|2 +675144|39001042111|2 +697495|39001042171|2 +774064|39001042298|2 +808078|39001042300|2 +676239|39001042574|2 +805000|39001042821|2 +702109|39001043172|2 +849616|39001043176|2 +621719|39001043229|4 +691555|39001043230|2 +561825|39001043318|2 +601761|39001043545|2 +672673|39001043546|2 +789497|39001043547|2 +889630|39001043552|2 +898725|39001043637|2 +827626|39001043700|4 +583806|39001043734|2 +638787|39001043828|2 +867287|39001043957|2 +588361|39001044100|2 +737688|39001044140|2 +542915|39001044212|2 +829319|39001044217|4 +611481|39001044316|2 +520492|39001044467|2 +523485|39001044468|2 +864204|39001044469|2 +855579|39001044471|2 +864163|39001044472|2 +594629|39001044549|2 +709996|39001044894|2 +657108|39001045073|2 +764024|39001045075|2 +612933|39001045204|2 +483549|39001045313|2 +1147727|39001045317|2 +548892|39001045411|2 +756962|39001045563|2 +901425|39001045653|2 +476709|39001045656|2 +658426|39001045695|2 +867010|39001045710|2 +551170|39001046210|2 +633364|39001046212|2 +863943|39001046213|2 +752481|39001046240|2 +807937|39001046242|2 +807939|39001046243|2 +525079|39001046404|2 +575264|39001046406|2 +789009|39001046407|4 +796369|39001046479|2 +766661|39001046702|2 +695978|39001046858|2 +885503|39001046880|2 +890227|39001046881|2 +873195|39001047121|2 +710670|39001047137|2 +768420|39001047278|2 +583075|39001047632|2 +665405|39001047797|2 +726818|39001047799|2 +751686|39001047974|2 +826215|39001048070|2 +460754|39001048292|2 +486412|39001048300|2 +504800|39001048475|2 +786448|39001048476|2 +872085|39001048478|2 +574707|39001048691|2 +628776|39001048921|2 +672650|39001048922|2 +801694|39001048923|2 +773722|39001049431|2 +493863|39001049851|2 +882217|39001049853|2 +694733|39001049857|2 +849588|39001049862|2 +453356|39001049997|2 +453364|39001050004|2 +729484|39001050012|2 +500855|39001050200|2 +523193|39001050203|2 +634743|39001050205|2 +733433|39001050208|2 +879941|39001050380|2 +543686|39001050676|2 +587616|39001050679|2 +502117|39001051585|2 +547006|39001051602|2 +521425|39001051903|2 +482396|39001051988|2 +484026|39001051992|2 +616015|39001052027|2 +641311|39001052209|2 +752997|39001052249|2 +839509|39001052346|4 +865055|39001052364|2 +736478|39001052482|2 +865686|39001052670|2 +767454|39001052672|2 +864009|39001052674|2 +839517|39001053043|4 +881492|39001053481|2 +660120|39001053502|2 +496489|39001053943|2 +535215|39001054316|2 +476509|39001054347|2 +495082|39001054356|2 +749452|39001054363|2 +502071|39001054446|2 +574816|39001054447|2 +602780|39001054453|2 +883468|39001054477|2 +846298|39001054524|2 +582331|39001054704|2 +565080|39001054741|2 +564564|39001054754|2 +676628|39001054762|2 +626312|39001054905|2 +767147|39001054969|2 +672794|39001055168|2 +502869|39001055264|2 +583717|39001055278|2 +598822|39001055486|2 +665515|39001055574|2 +900376|39001055657|2 +875492|39001055659|2 +485270|39001056002|2 +554127|39001056026|2 +686519|39001056364|2 +623167|39001056448|2 +582378|39001056450|2 +453916|39001056451|2 +453926|39001056462|2 +504866|39001056476|2 +859787|39001056499|2 +565301|39001056510|2 +866275|39001056514|2 +558449|39001056516|2 +845128|39001056528|2 +845119|39001056543|2 +501258|39001056549|2 +524055|39001056550|2 +872437|39001056576|2 +501218|39001056629|2 +613801|39001056637|2 +765850|39001057341|2 +882751|39001057343|2 +602689|39001057348|2 +805015|39001057353|2 +602012|39001057644|2 +641498|39001057651|2 +663674|39001057658|2 +663680|39001057667|2 +788476|39001057752|2 +772150|39001057830|2 +871134|39001057855|2 +475905|39001058927|2 +785440|39001058944|2 +686925|39001059101|2 +873364|39001061709|2 +488128|39001063489|2 +493075|39001063509|2 +480657|39001063592|2 +575807|39001063616|2 +502024|39001063631|2 +664076|39001063670|2 +801143|39001063675|2 +844058|39001063691|2 +791969|39001063918|2 +585448|39001064022|2 +613682|39001064033|2 +651232|39001064195|2 +585776|39001064518|2 +580331|39001064536|2 +679015|39001064730|2 +730113|39001064741|4 +765817|39001064743|2 +741150|39001064781|2 +858458|39001064789|2 +755280|39001064838|2 +736807|39001065047|2 +503999|39001065393|2 +567543|39001065553|2 +603349|39001065619|2 +613584|39001065628|2 +613776|39001065634|2 +514162|39001065665|4 +517454|39001065673|2 +599655|39001065678|2 +865662|39001065679|2 +881234|39001065689|2 +638789|39001065705|2 +514270|39001065707|2 +863344|39001065725|2 +863910|39001065730|2 +692795|39001065733|2 +638788|39001065739|2 +736589|39001065757|2 +641539|39001065765|2 +878331|39001065775|2 +661015|39001065780|2 +677006|39001065793|2 +681944|39001065804|2 +678359|39001066435|2 +692920|39001066444|2 +539515|39001066452|2 +724121|39001066460|2 +577665|39001066469|2 +789457|39001066516|2 +797437|39001066525|2 +669971|39001066585|2 +501262|39001066605|2 +573756|39001066625|2 +861038|39001066636|2 +777728|39001066637|2 +803421|39001066643|2 +680505|39001066646|2 +861050|39001066679|2 +864792|39001066722|2 +776532|39001067042|2 +884575|39001067053|2 +483418|39001067266|2 +603571|39001067276|2 +796890|39001067299|2 +506535|39001067360|2 +825904|39001067668|4 +620968|39001067685|2 +482633|39001067998|2 +464117|39001068017|2 +461529|39001068068|2 +645983|39001068103|2 +501274|39001068133|2 +526691|39001068153|2 +645936|39001068437|2 +840179|39001068443|4 +702224|39001068497|2 +744957|39001068521|2 +826413|39001068525|4 +577968|39001068581|2 +740822|39001068594|2 +514708|39001068614|2 +613704|39001068619|2 +759405|39001068632|2 +672292|39001069033|2 +672603|39001069040|2 +776291|39001069299|2 +786017|39001069353|2 +825881|39001069363|4 +597888|39001070403|2 +844134|39001070426|2 +476677|39001070575|2 +512025|39001070584|2 +473042|39001070598|2 +476853|39001070599|2 +1125383|39001070660|2 +644526|39001070743|2 +521122|39001071121|2 +503113|39001071127|2 +527416|39001071140|2 +634785|39001071158|2 +664068|39001071175|2 +528233|39001071182|2 +721200|39001071185|2 +831974|39001071197|4 +605143|39001071225|2 +527519|39001071238|2 +613908|39001071272|2 +615211|39001071282|2 +650274|39001071294|2 +671072|39001071391|2 +574473|39001071415|2 +672564|39001071445|2 +672670|39001071456|2 +585058|39001071468|2 +484804|39001071493|2 +729839|39001071495|4 +782776|39001071534|2 +569413|39001071549|2 +808077|39001071579|2 +505335|39001071653|2 +720886|39001071659|2 +736542|39001071853|2 +575316|39001071861|2 +588244|39001071868|2 +620385|39001071873|2 +581666|39001072124|2 +862954|39001072240|6 +462158|39001072252|2 +867435|39001072254|2 +645424|39001072268|2 +772151|39001072298|2 +927746|39001072529|2 +930829|39001072584|2 +607653|39001072609|2 +1031070|39001072613|2 +589548|39001072746|2 +711918|39001072750|2 +453617|39001072779|2 +503463|39001072831|2 +476510|39001072836|2 +476587|39001072843|2 +553258|39001072852|2 +478733|39001072854|2 +583715|39001072870|2 +492865|39001072874|2 +589878|39001072919|2 +512406|39001072922|2 +565259|39001072924|2 +638391|39001072942|2 +521508|39001072945|2 +582564|39001072967|2 +694124|39001072972|2 +709101|39001072981|2 +582811|39001072987|2 +711699|39001072999|2 +758977|39001073053|2 +772640|39001073061|2 +808541|39001073097|2 +643332|39001073602|2 +643358|39001073614|2 +695117|39001073847|2 +702495|39001073883|2 +703721|39001073894|2 +838080|39001073920|4 +711964|39001073981|2 +737074|39001073991|2 +753418|39001074177|2 +755741|39001074181|2 +762199|39001074183|2 +782324|39001074190|2 +486421|39001074233|2 +493372|39001074243|2 +500874|39001074252|2 +567610|39001074267|2 +577465|39001074270|2 +587161|39001074306|2 +625233|39001074349|2 +533670|39001074357|2 +655858|39001074360|2 +675909|39001074365|2 +746068|39001074379|2 +784109|39001074400|2 +718316|39001074479|2 +901288|39001074549|2 +901673|39001074686|2 +576355|39001074689|2 +1200450|39001074697|2 +460717|39001074751|2 +471913|39001074771|2 +689161|39001074841|2 +801681|39001074843|2 +847759|39001074992|2 +698853|39001074997|4 +543611|39001074998|2 +691596|39001075001|2 +925032|39001075025|2 +620978|39001075031|2 +660302|39001075038|2 +613753|39001076737|2 +734169|39001077275|2 +721931|39001079426|2 +712137|39001079428|2 +550634|39001079429|2 +769620|39001079450|2 +742873|39001079642|2 +761826|39001079644|2 +452217|39001079681|2 +726877|39001079689|2 +475590|39001079691|2 +482244|39001079692|2 +741029|39001079733|2 +767663|39001079739|2 +483612|39001079746|2 +871646|39001079747|2 +535179|39001079765|2 +483550|39001079797|2 +689379|39001079801|2 +600551|39001079804|2 +611223|39001079874|2 +774647|39001079893|2 +636297|39001079901|2 +676224|39001079911|2 +687609|39001079912|2 +453403|39001079917|2 +534732|39001079923|2 +692312|39001079934|2 +881112|39001079935|2 +637421|39001080059|2 +779067|39001080061|2 +759518|39001080062|2 +759519|39001080063|2 +851058|39001080088|2 +583237|39001080097|2 +876188|39001080098|2 +1173277|39001080107|2 +883833|39001080128|2 +1056869|39001080192|2 +1106250|39001080217|2 +492984|39001080544|2 +795042|39001081114|2 +598349|39001081168|2 +615392|39001081179|2 +509528|39001081199|2 +510474|39001081209|2 +1018139|39001081331|2 +474964|39001081346|2 +588275|39001081348|2 +534839|39001081354|2 +622401|39001081355|2 +559791|39001081356|2 +554383|39001081764|2 +693351|39001081766|2 +615577|39001081770|2 +830425|39001081774|4 +857773|39001081777|2 +884656|39001081778|2 +481466|39001081795|2 +504895|39001081796|2 +625855|39001081799|2 +661016|39001081800|2 +803622|39001081808|2 +724772|39001081828|2 +804399|39001081829|2 +550483|39001081835|2 +650770|39001081836|2 +491742|39001081849|2 +620351|39001081851|2 +657751|39001081852|2 +537566|39001081908|2 +526706|39001081909|2 +581266|39001081913|2 +632026|39001081918|2 +851096|39001081927|2 +634309|39001082046|2 +488897|39001082154|2 +564421|39001082158|2 +501166|39001082206|2 +685137|39001082387|2 +874097|39001082395|2 +494628|39001082407|2 +877647|39001082432|2 +734795|39001082503|2 +550263|39001082703|4 +674441|39001082711|2 +893546|39001082713|2 +557310|39001082796|2 +557413|39001082832|2 +832438|39001082833|4 +501822|39001082972|2 +672174|39001083127|2 +602757|39001083237|2 +690750|39001083238|2 +830586|39001083240|4 +651206|39001083275|2 +500981|39001083281|2 +574811|39001083347|2 +556904|39001083676|2 +694752|39001083678|2 +713702|39001083679|2 +788735|39001083757|2 +859935|39001083773|2 +503991|39001084037|2 +713293|39001084039|2 +730909|39001084040|2 +681147|39001084306|2 +480455|39001084332|2 +595559|39001084337|2 +628049|39001084340|2 +629991|39001084341|2 +867760|39001084342|2 +725773|39001084409|2 +522756|39001084417|4 +598809|39001084421|2 +640936|39001084422|2 +681093|39001084509|2 +675841|39001084510|2 +803469|39001084875|2 +869293|39001084876|2 +832372|39001084949|4 +509459|39001085038|2 +574465|39001085040|2 +463614|39001085139|2 +740205|39001085320|2 +671655|39001085321|2 +652176|39001085322|2 +737360|39001085532|2 +502986|39001085623|2 +633367|39001085724|2 +527947|39001085972|2 +863919|39001085980|2 +874103|39001086026|2 +809473|39001086210|2 +632099|39001086265|2 +615258|39001086370|2 +762781|39001086375|2 +778749|39001086381|2 +890853|39001086413|2 +862931|39001086499|6 +530308|39001086503|2 +483192|39001086517|2 +787176|39001086527|2 +865675|39001086528|2 +883258|39001086629|2 +870105|39001086776|2 +786984|39001086869|2 +901887|39001086984|2 +713290|39001087184|2 +732977|39001087231|2 +535233|39001087366|2 +648035|39001087645|2 +672066|39001087911|2 +766685|39001087912|2 +461530|39001088178|2 +1257253|39001088181|2 +572436|39001088236|2 +593947|39001088237|2 +613170|39001088473|2 +881475|39001088498|2 +882839|39001088508|2 +761759|39001088797|2 +462260|39001088856|2 +801823|39001088972|2 +600495|39001089052|2 +850765|39001089054|2 +873633|39001089058|2 +882042|39001089514|2 +752202|39001089994|2 +776548|39001089996|2 +888262|39001090004|2 +632399|39001090057|2 +651633|39001090579|2 +501997|39001090778|2 +517365|39001090780|2 +558000|39001090879|2 +733751|39001090880|2 +575218|39001091024|4 +711373|39001091025|2 +608183|39001091107|2 +486414|39001091235|2 +734229|39001091334|2 +734336|39001091336|2 +856935|39001091493|2 +895915|39001091559|2 +501190|39001091658|2 +515030|39001091659|2 +533617|39001091661|2 +782021|39001091662|2 +733673|39001091810|2 +549894|39001091971|2 +656700|39001091972|2 +689289|39001091973|2 +826423|39001092065|4 +675126|39001092132|2 +868656|39001092150|2 +1265851|39001092158|2 +833686|39001092339|4 +458513|39001092405|2 +559909|39001092427|2 +690970|39001092447|2 +730301|39001092452|2 +866208|39001092477|2 +872759|39001092480|2 +462174|39001092557|2 +479614|39001092562|2 +623179|39001092563|2 +721624|39001092578|2 +513100|39001092589|2 +775320|39001092600|2 +889665|39001092614|2 +609733|39001092750|2 +742283|39001092819|2 +734373|39001092838|2 +779261|39001092883|2 +806727|39001092887|2 +690096|39001093180|2 +618428|39001093470|2 +652189|39001093472|2 +868194|39001093480|2 +883374|39001093484|4 +460802|39001093746|2 +497447|39001093747|2 +560876|39001093858|2 +736802|39001093860|2 +613108|39001094322|2 +830198|39001094325|4 +882484|39001094331|2 +885669|39001094400|2 +881402|39001094469|2 +842100|39001094814|2 +572975|39001094876|2 +579661|39001094879|2 +617246|39001094880|2 +789520|39001094881|2 +878502|39001094995|2 +727268|39001095215|2 +502014|39001095239|2 +790676|39001095240|2 +600501|39001095400|2 +468915|39001097123|2 +614609|39001097124|2 +779964|39001097125|2 +867459|39001097129|2 +548236|39001097139|2 +538971|39001097160|2 +881561|39001097184|2 +859010|39001097199|2 +1024719|39001097286|2 +493570|39001097301|2 +758538|39001097307|2 +863255|39001097309|2 +523528|39001097317|2 +579830|39001097318|2 +850720|39001097321|2 +765285|39001097340|2 +857426|39001097342|2 +471798|39001097466|2 +560240|39001097477|2 +591311|39001097481|2 +504284|39001097556|2 +600537|39001097606|4 +745261|39001097719|2 +672336|39001097728|2 +680240|39001097729|2 +713598|39001097730|2 +746325|39001097732|2 +864977|39001097858|2 +868038|39001097865|2 +901158|39001097885|2 +1219491|39001098063|2 +530310|39001098145|2 +508467|39001098446|2 +527526|39001098447|2 +792183|39001098449|2 +901575|39001098450|2 +851091|39001098518|2 +776490|39001098546|2 +502599|39001098595|2 +614012|39001098599|2 +768371|39001098603|2 +794444|39001098806|2 +881568|39001098807|2 +844079|39001098902|2 +500711|39001098972|2 +836845|39001098973|4 +667797|39001099037|2 +643283|39001099039|2 +724980|39001099041|2 +526540|39001099071|2 +721734|39001099075|2 +512371|39001099154|2 +891589|39001099157|2 +476703|39001099193|2 +870475|39001099194|2 +740795|39001099198|2 +759500|39001099201|2 +671324|39001099261|2 +468874|39001099263|2 +559137|39001099272|2 +528020|39001099278|2 +615728|39001099286|2 +511942|39001099287|2 +682142|39001099289|2 +745797|39001099291|2 +830529|39001099298|4 +837140|39001099299|4 +461632|39001099807|2 +538222|39001100847|2 +696020|39001100850|2 +839889|39001100852|4 +696118|39001100888|2 +757292|39001100890|2 +514111|39001100891|2 +547654|39001100908|2 +720502|39001100909|2 +725788|39001100910|2 +454434|39001100929|2 +457859|39001100957|2 +471261|39001100959|2 +470882|39001100960|2 +582560|39001100990|2 +494932|39001100996|2 +496994|39001100998|2 +732186|39001101008|2 +869415|39001101009|2 +634799|39001101034|2 +717661|39001101036|2 +884239|39001101043|2 +583067|39001101054|2 +615344|39001101057|2 +518032|39001101072|2 +622679|39001101074|2 +643443|39001101075|2 +835283|39001101076|4 +741110|39001101081|2 +867757|39001101092|2 +872684|39001101093|2 +874295|39001101094|2 +875060|39001101095|2 +553533|39001101096|2 +876124|39001101097|2 +575688|39001101098|4 +884596|39001101099|2 +582007|39001101100|2 +582366|39001101101|2 +884592|39001101103|2 +660508|39001101107|2 +674141|39001101110|2 +680864|39001101111|2 +696987|39001101243|2 +702057|39001101248|2 +709236|39001101256|2 +710668|39001101270|2 +711723|39001101276|2 +711679|39001101278|2 +731220|39001101377|2 +734864|39001101378|2 +746314|39001101383|2 +804583|39001101446|2 +806621|39001101449|2 +568905|39001101452|2 +897957|39001101462|2 +461318|39001101469|2 +486799|39001101473|2 +505290|39001101475|2 +500844|39001101482|2 +556896|39001101485|2 +556901|39001101490|2 +651387|39001101563|2 +755734|39001101564|2 +792702|39001101569|2 +482893|39001101597|2 +504447|39001101627|2 +538727|39001101629|2 +606540|39001101634|2 +620375|39001101635|2 +780842|39001101702|2 +724169|39001101710|2 +588845|39001101920|2 +493445|39001103539|2 +508365|39001103543|2 +508353|39001103544|2 +526769|39001103546|2 +511630|39001104400|2 +551133|39001104404|2 +623181|39001104408|2 +635710|39001104416|2 +674300|39001104444|2 +784807|39001104482|2 +804652|39001104485|2 +526266|39001104555|2 +1252801|39001104602|2 +721195|39001104610|2 +681000|39001104613|2 +832374|39001104614|4 +882410|39001104615|2 +557010|39001104625|2 +532549|39001104629|2 +483607|39001104635|2 +505555|39001104636|2 +731019|39001104637|2 +802102|39001104639|2 +848539|39001104640|2 +484534|39001104642|2 +633264|39001104643|2 +778048|39001105053|2 +459185|39001105059|2 +881357|39001105064|2 +591590|39001105069|4 +454904|39001105166|2 +489857|39001105167|2 +575347|39001105168|2 +889419|39001105170|2 +703141|39001105175|2 +770015|39001105184|2 +745247|39001105231|2 +865204|39001105232|2 +474118|39001105281|2 +864559|39001105287|2 +678975|39001105303|2 +1060319|39001105310|2 +562678|39001105386|2 +568293|39001105388|2 +659841|39001105389|2 +723575|39001105415|2 +861076|39001105416|2 +756597|39001105446|2 +587414|39001105450|2 +587415|39001105451|2 +674099|39001105452|2 +677261|39001105454|2 +751355|39001105468|2 +645191|39001105599|2 +660831|39001105601|2 +830748|39001105606|4 +484632|39001105630|2 +535236|39001105634|2 +549685|39001105639|2 +672105|39001105644|2 +861299|39001105652|2 +598393|39001105678|2 +489498|39001105704|2 +633815|39001105752|2 +664064|39001105753|2 +724991|39001105756|2 +756274|39001105770|2 +462533|39001105774|4 +465720|39001105792|2 +751646|39001105794|2 +864560|39001105795|2 +793517|39001105803|2 +653581|39001105827|2 +640917|39001105933|2 +640921|39001105936|2 +759079|39001105986|2 +841756|39001106694|2 +534853|39001106715|2 +486060|39001106719|2 +504043|39001106752|2 +653321|39001106910|2 +792670|39001106912|2 +838275|39001106913|4 +862956|39001106915|6 +635087|39001106986|2 +530769|39001106987|2 +560330|39001106990|2 +716951|39001106994|2 +752155|39001106997|2 +724092|39001107218|2 +788654|39001107313|2 +549910|39001107315|2 +865061|39001107370|2 +615224|39001107425|2 +651274|39001107432|2 +766686|39001107481|2 +471912|39001107851|2 +485707|39001107955|4 +890970|39001107965|2 +489338|39001107991|2 +504061|39001108016|2 +677417|39001108032|2 +864224|39001108311|2 +895044|39001108381|2 +552007|39001108454|2 +577220|39001108457|2 +619611|39001108466|2 +464533|39001108538|2 +745046|39001108679|2 +652288|39001108684|2 +692064|39001108685|2 +655750|39001108705|2 +672028|39001108708|2 +585774|39001108812|2 +671423|39001108813|2 +896241|39001109075|2 +527529|39001109182|2 +659538|39001109191|2 +769783|39001109203|2 +495044|39001109438|2 +829168|39001109453|4 +490140|39001109960|2 +517493|39001109994|2 +569101|39001110021|2 +638697|39001110249|2 +663318|39001110273|2 +551646|39001110289|2 +691556|39001110305|2 +869412|39001110406|2 +776070|39001110581|2 +723613|39001110837|2 +552230|39001110866|2 +764327|39001110867|2 +743911|39001110881|2 +874784|39001110936|2 +509344|39001111134|2 +534213|39001111137|2 +775799|39001111159|2 +544553|39001111229|2 +539402|39001111264|2 +650397|39001111266|2 +696512|39001111267|2 +838304|39001111268|4 +534556|39001111406|2 +678361|39001111491|2 +872574|39001111512|2 +459926|39001111716|2 +646512|39001111737|2 +652347|39001111757|2 +930752|39001111825|2 +1265853|39001111861|2 +551150|39001111926|2 +882457|39001111966|2 +453222|39001112053|2 +498192|39001112168|2 +765531|39001112211|2 +859199|39001112281|2 +803339|39001112746|2 +873838|39001112760|2 +558179|39001113123|2 +559792|39001113158|2 +567487|39001113171|2 +738373|39001113224|2 +801711|39001113236|2 +869978|39001113244|2 +881158|39001113248|2 +560155|39001113432|2 +841584|39001113460|2 +889170|39001113479|2 +718936|39001113564|2 +767145|39001113585|2 +494949|39001114228|2 +504702|39001114401|2 +461110|39001114414|2 +652280|39001114421|2 +801754|39001114428|2 +878708|39001114430|2 +501876|39001114693|2 +716871|39001114941|2 +465342|39001116065|2 +475346|39001116068|2 +504542|39001116072|2 +529929|39001116076|2 +543533|39001116077|2 +585995|39001116082|2 +615214|39001116084|2 +727436|39001116087|2 +740864|39001116088|2 +536267|39001117261|2 +747799|39001117330|2 +489485|39001118032|2 +455208|39001119192|2 +455214|39001119193|2 +504408|39001119195|2 +559712|39001119238|2 +639794|39001119274|2 +718534|39001119352|2 +804691|39001119397|2 +885413|39001119400|2 +894390|39001119402|2 +473085|39001119461|2 +500271|39001119467|2 +501150|39001119469|2 +507645|39001119471|2 +507646|39001119473|2 +549236|39001119537|2 +566200|39001119540|2 +580490|39001119542|2 +588995|39001119553|2 +603304|39001119613|2 +606042|39001119614|2 +614756|39001119616|2 +614777|39001119617|2 +627619|39001119618|2 +631683|39001119620|2 +646514|39001119626|2 +651306|39001119627|2 +663691|39001119629|2 +452733|39001119632|2 +682203|39001119633|2 +456234|39001119636|2 +696868|39001119639|2 +701327|39001119643|2 +715978|39001119647|2 +505867|39001119652|2 +523425|39001119672|2 +801756|39001119688|2 +534698|39001119694|2 +530602|39001119702|2 +566422|39001119708|2 +570575|39001119714|2 +582865|39001119728|2 +850057|39001119995|2 +863917|39001119996|2 +896082|39001120001|2 +902322|39001120002|2 +905131|39001120014|2 +586912|39001120043|2 +646624|39001120070|2 +866104|39001120100|2 +663377|39001120109|2 +665531|39001120175|2 +667803|39001120180|2 +670630|39001120186|2 +510164|39001120248|2 +524542|39001120251|2 +761291|39001120253|2 +558898|39001120254|2 +569427|39001120256|2 +778266|39001120437|2 +794485|39001120450|2 +806622|39001120466|2 +615387|39001120467|2 +650706|39001120468|2 +827732|39001120469|4 +669870|39001120470|2 +691507|39001120474|2 +849582|39001120484|2 +696814|39001120485|2 +698987|39001120486|2 +703787|39001120488|2 +740838|39001120490|2 +773236|39001120492|2 +781317|39001120493|2 +869342|39001120519|2 +848852|39001120521|2 +889114|39001120525|2 +896486|39001120526|2 +896883|39001120527|2 +898721|39001120655|2 +752669|39001120767|2 +579985|39001120804|2 +742063|39001120831|2 +776549|39001120833|2 +482156|39001121529|2 +726423|39001121573|2 +690991|39001121666|2 +1132878|39001122038|2 +479523|39001122531|2 +617861|39001122731|2 +689032|39001123081|2 +641341|39001123159|2 +743134|39001123232|2 +790377|39001123246|2 +1229288|39001123729|2 +801243|39001123797|2 +746339|39001123927|2 +476794|39001124056|2 +583706|39001124106|2 +583714|39001124108|2 +834178|39001124110|4 +502206|39001124408|2 +649968|39001124426|2 +674728|39001124513|2 +695765|39001124543|2 +727413|39001124553|2 +744100|39001124563|2 +745470|39001124571|2 +768068|39001124585|2 +778216|39001124604|2 +878737|39001124612|2 +461482|39001124686|2 +501908|39001124688|2 +530476|39001124693|2 +545417|39001124695|2 +575275|39001124698|2 +600108|39001124699|2 +733430|39001124701|2 +731433|39001124709|2 +734047|39001124711|2 +738409|39001124721|2 +746233|39001124722|2 +779462|39001124725|2 +809176|39001124726|2 +865669|39001124729|2 +866361|39001124745|2 +613602|39001124746|2 +869462|39001124747|2 +875705|39001124748|2 +880954|39001124749|2 +485413|39001124855|4 +529212|39001124856|2 +794823|39001124857|2 +1077659|39001124868|2 +614772|39001124895|2 +620331|39001125078|2 +789195|39001125092|2 +866217|39001125155|2 +876187|39001125156|2 +580466|39001125158|2 +712092|39001125184|2 +774874|39001125185|2 +507647|39001125492|2 +578816|39001125640|2 +655057|39001125641|2 +729189|39001125642|2 +524060|39001125732|2 +461092|39001125758|2 +528013|39001125760|2 +849710|39001125762|2 +864922|39001126065|2 +773306|39001126066|2 +526916|39001126068|2 +738367|39001126071|2 +508269|39001126124|2 +862724|39001126144|2 +864923|39001126645|2 +714424|39001126895|2 +559205|39001127047|2 +510177|39001127062|2 +511965|39001127095|2 +621480|39001127125|2 +630122|39001127126|2 +770390|39001127132|2 +734180|39001127151|2 +898224|39001127254|2 +667798|39001127755|2 +458195|39001127981|2 +497003|39001128199|2 +519958|39001128206|2 +533050|39001128215|2 +536007|39001128221|2 +592821|39001128564|2 +677336|39001128587|2 +540063|39001128608|2 +686634|39001128674|2 +484908|39001128921|2 +491736|39001128923|2 +613741|39001128937|2 +674609|39001129084|2 +686139|39001129085|2 +744047|39001129087|2 +753487|39001129089|2 +763068|39001129092|2 +853887|39001129195|2 +862232|39001129199|2 +680238|39001129235|2 +808744|39001129236|2 +849721|39001129239|2 +866210|39001129254|2 +872137|39001129257|2 +895267|39001129448|2 +799549|39001129807|2 +514076|39001129839|2 +533551|39001129840|2 +550193|39001129841|2 +595075|39001129853|2 +622708|39001129854|2 +829078|39001129855|4 +650640|39001129860|2 +581731|39001130139|2 +640014|39001130140|2 +707771|39001130142|2 +799959|39001130146|2 +1193140|39001130464|2 +452182|39001130466|2 +615320|39001130484|2 +644335|39001130486|2 +724180|39001130494|2 +727414|39001130495|2 +509191|39001130496|2 +569443|39001130504|2 +766347|39001130606|2 +674855|39001130649|2 +870474|39001130768|2 +611097|39001131067|2 +858723|39001131077|2 +593208|39001131079|2 +698548|39001131088|2 +501363|39001131144|2 +844359|39001131153|2 +542984|39001131156|2 +788701|39001131158|2 +860854|39001131161|2 +865904|39001131162|2 +531892|39001131784|2 +671257|39001131820|2 +681494|39001131822|2 +750679|39001131961|2 +829181|39001131962|4 +492013|39001132137|2 +666819|39001132139|2 +677232|39001132140|2 +873312|39001132146|2 +881212|39001132147|2 +863771|39001132525|2 +693643|39001132569|2 +705314|39001132797|2 +663500|39001133175|2 +666175|39001133178|2 +474967|39001133181|2 +776698|39001133183|2 +490803|39001133341|2 +734091|39001133457|2 +772205|39001133703|2 +538718|39001133903|2 +579136|39001133907|2 +870303|39001133910|2 +647840|39001133986|2 +888838|39001134067|2 +848442|39001134213|2 +496419|39001134267|2 +869150|39001134288|2 +898366|39001134498|2 +536308|39001134596|2 +647799|39001134598|2 +677894|39001134817|2 +592971|39001134895|2 +694700|39001135150|2 +557705|39001135169|2 +663507|39001135173|2 +671945|39001135319|2 +615261|39001135403|2 +615364|39001135404|2 +866878|39001135658|2 +792541|39001135662|2 +636495|39001135664|2 +711082|39001135741|2 +698445|39001136000|4 +834573|39001136007|4 +866879|39001136223|2 +866880|39001136225|2 +788145|39001136235|2 +573568|39001136486|2 +456916|39001136494|2 +581078|39001136532|2 +712140|39001136578|2 +453980|39001136579|2 +751254|39001137037|2 +486756|39001137617|2 +469913|39001138502|2 +503440|39001138505|2 +477778|39001138508|2 +457759|39001138509|2 +486427|39001138512|2 +503514|39001138532|2 +579964|39001138544|2 +1093224|39001138549|2 +511589|39001138560|2 +539496|39001138607|4 +564904|39001138612|2 +526715|39001138643|2 +607904|39001138647|2 +574767|39001138650|2 +599454|39001138660|2 +613846|39001138663|2 +624257|39001138665|2 +859794|39001138667|2 +508598|39001138724|2 +808025|39001138728|4 +885759|39001138732|2 +897110|39001138738|2 +756155|39001138745|2 +679098|39001139092|2 +692111|39001139099|2 +721501|39001139113|2 +721500|39001139120|2 +743614|39001139132|2 +694732|39001139325|2 +759818|39001139332|2 +556659|39001139400|2 +790955|39001139423|2 +830045|39001139428|4 +833784|39001139432|4 +846756|39001139443|2 +826572|39001139485|4 +897163|39001139493|2 +453613|39001139745|2 +455483|39001139747|2 +482192|39001139748|4 +482557|39001139751|2 +489859|39001139755|2 +494231|39001139756|2 +507577|39001139789|2 +509450|39001139792|2 +510881|39001139795|2 +513844|39001139799|2 +517016|39001139801|2 +522937|39001139802|2 +525081|39001140041|2 +527356|39001140043|2 +838252|39001140094|4 +615512|39001140202|2 +616987|39001140203|2 +632058|39001140259|2 +650596|39001140270|2 +651449|39001140272|2 +651436|39001140274|2 +674628|39001140279|2 +900622|39001140555|2 +902375|39001140565|2 +902376|39001140577|2 +523946|39001140839|2 +655735|39001141235|2 +655162|39001141240|2 +451446|39001141313|2 +479213|39001141314|2 +514133|39001141315|2 +681112|39001141318|2 +687625|39001141319|2 +697557|39001141322|2 +714390|39001141327|2 +715645|39001141334|2 +762348|39001141351|2 +766696|39001141361|2 +768233|39001141363|2 +512522|39001141428|2 +640930|39001141437|2 +470719|39001141728|2 +521572|39001141733|2 +532470|39001141739|2 +626618|39001141750|2 +669136|39001141755|2 +692059|39001141769|2 +711905|39001141785|2 +874919|39001141792|2 +510419|39001141885|2 +657557|39001141924|2 +479533|39001141986|2 +526002|39001141992|2 +530856|39001142097|2 +557218|39001142115|2 +463252|39001142129|2 +709131|39001142130|2 +697049|39001142208|2 +791231|39001142417|2 +798647|39001142424|2 +799627|39001142428|2 +837387|39001142431|4 +486443|39001142457|2 +861584|39001142474|2 +733973|39001142896|2 +874353|39001143199|2 +895090|39001143206|2 +896473|39001143209|2 +902163|39001143214|2 +484387|39001143360|2 +509660|39001143377|2 +651379|39001143385|2 +620398|39001143416|2 +621021|39001143422|2 +1017875|39001143450|2 +650763|39001143457|2 +707765|39001143490|2 +734388|39001143516|2 +746352|39001143520|2 +457394|39001143629|2 +465317|39001144069|2 +558953|39001144147|2 +755790|39001144214|2 +779911|39001144216|2 +839512|39001144217|4 +480437|39001144295|2 +621246|39001144573|2 +460322|39001144935|2 +571120|39001144936|2 +764413|39001144938|2 +841214|39001144944|2 +859222|39001144946|2 +689650|39001145486|2 +1127895|39001145490|2 +674620|39001145877|2 +491010|39001145883|2 +881209|39001145887|2 +501466|39001145891|2 +525674|39001145895|2 +525675|39001145900|2 +570752|39001145912|2 +623018|39001145927|2 +638809|39001145947|2 +638821|39001145957|2 +703593|39001145997|2 +659014|39001146016|2 +772302|39001146053|2 +772285|39001146054|2 +839910|39001146056|4 +741714|39001146568|2 +643407|39001146620|4 +651190|39001146626|2 +473362|39001147105|2 +476858|39001147113|2 +751924|39001147215|2 +804400|39001147267|2 +751769|39001147422|2 +538306|39001147785|2 +477222|39001147790|2 +538272|39001147822|2 +474126|39001147833|2 +828717|39001147837|4 +794256|39001147850|2 +858040|39001147857|2 +583880|39001147908|2 +484029|39001147919|2 +652463|39001147921|2 +580431|39001147954|2 +673920|39001147984|2 +747785|39001148014|2 +462937|39001149212|2 +485406|39001149251|4 +513779|39001149314|2 +581434|39001149419|2 +722163|39001149435|2 +871683|39001149452|2 +844928|39001149826|2 +895605|39001149893|2 +476654|39001151303|2 +515228|39001151311|2 +452078|39001151436|2 +588474|39001151441|2 +746133|39001151445|2 +671656|39001151446|2 +801701|39001151449|2 +995854|39001151450|2 +889791|39001151586|2 +577223|39001151590|2 +595759|39001151596|2 +527204|39001151614|2 +709688|39001151998|2 +872123|39001152117|2 +547713|39001152126|2 +713340|39001152140|2 +781731|39001152208|2 +776748|39001152215|2 +650782|39001152637|2 +461483|39001152722|2 +480682|39001152726|2 +734350|39001152735|2 +877463|39001152745|2 +888369|39001152749|2 +779897|39001152753|2 +863352|39001152754|2 +831896|39001152755|4 +864812|39001153568|2 +593823|39001153646|2 +841190|39001153652|2 +688014|39001153660|2 +718821|39001153697|2 +503044|39001153716|2 +569406|39001153725|2 +591762|39001153726|2 +596263|39001153734|2 +762288|39001153741|4 +773084|39001153746|2 +728888|39001153749|2 +628809|39001153754|2 +804553|39001153764|2 +642701|39001153765|2 +731408|39001153787|2 +735731|39001153790|2 +788978|39001153798|2 +490185|39001153802|2 +486126|39001153812|2 +776570|39001153819|2 +657563|39001153821|2 +841216|39001153826|2 +737457|39001153828|2 +711390|39001153852|2 +772076|39001153965|2 +778090|39001154402|2 +483172|39001154445|2 +845723|39001154502|2 +564282|39001154608|2 +620508|39001154625|2 +621721|39001154639|4 +689626|39001154654|2 +730369|39001154662|2 +731422|39001154665|2 +755733|39001154671|2 +762600|39001154677|2 +779014|39001154687|2 +631460|39001154704|2 +809947|39001154707|2 +632022|39001154813|2 +492836|39001154816|2 +592045|39001154946|2 +654215|39001155043|2 +789294|39001155258|2 +863345|39001155317|2 +765396|39001155338|2 +740860|39001155342|2 +788075|39001155373|2 +638741|39001155429|2 +453079|39001155494|2 +494232|39001155507|2 +595715|39001155529|2 +649083|39001155532|2 +724990|39001155550|2 +507980|39001155717|2 +602056|39001155791|2 +671288|39001155802|2 +733325|39001155807|2 +889111|39001155843|2 +476576|39001156036|2 +481497|39001156053|2 +497967|39001156066|2 +658297|39001156078|2 +682061|39001156081|2 +505016|39001156583|2 +507553|39001156605|2 +577873|39001156668|2 +586340|39001156675|2 +602659|39001156706|2 +640016|39001156737|2 +650394|39001156745|2 +672097|39001156766|2 +501927|39001157185|2 +532440|39001157236|2 +621151|39001157259|2 +754532|39001157273|2 +788708|39001157289|2 +859828|39001157338|2 +866222|39001157376|2 +491958|39001157492|2 +544095|39001157586|2 +564856|39001157602|2 +586050|39001157612|2 +625533|39001157781|2 +694830|39001157788|2 +796536|39001157796|2 +797032|39001157804|2 +492426|39001158168|2 +501229|39001158174|2 +580411|39001158178|2 +558002|39001158188|2 +577347|39001158192|2 +655983|39001158475|2 +776561|39001158590|2 +809386|39001158633|2 +838051|39001158711|4 +866235|39001158719|2 +461329|39001158834|2 +494137|39001158849|2 +514790|39001158859|2 +541030|39001159431|2 +560152|39001159468|2 +599999|39001159494|2 +708810|39001159499|2 +732022|39001159509|2 +734122|39001159520|2 +786449|39001159553|2 +808094|39001159561|2 +452216|39001160129|2 +452430|39001160136|2 +460257|39001160207|2 +522729|39001160394|2 +839513|39001160405|4 +580001|39001160413|2 +637831|39001160445|2 +640931|39001160474|2 +695866|39001160518|2 +699231|39001160524|2 +705170|39001160529|2 +768049|39001160689|2 +788380|39001160710|2 +831822|39001160721|4 +839304|39001160729|4 +877464|39001160744|2 +882486|39001160746|2 +891043|39001160748|4 +1077660|39001160896|2 +1204847|39001160945|2 +576966|39001161113|2 +610630|39001161121|2 +703886|39001161122|2 +729162|39001161141|2 +845543|39001161154|2 +901140|39001161159|2 +768442|39001161225|2 +460511|39001161299|2 +514791|39001161329|2 +572042|39001161348|2 +623071|39001161356|2 +624356|39001161369|2 +661851|39001161376|2 +725096|39001161492|2 +738823|39001161502|2 +793232|39001161506|2 +807032|39001161511|2 +831761|39001161519|2 +875647|39001161547|2 +475481|39001161696|2 +516297|39001161725|2 +658057|39001161752|2 +524124|39001161754|2 +527647|39001161756|2 +537573|39001161757|2 +542872|39001161758|2 +547388|39001161767|2 +569415|39001161769|2 +597218|39001161773|2 +614622|39001161784|2 +624601|39001161814|2 +646513|39001161961|2 +655738|39001161972|2 +664695|39001161981|2 +703748|39001162004|2 +736413|39001162012|2 +760255|39001162034|2 +762352|39001162049|2 +826744|39001162092|4 +826848|39001162097|4 +875734|39001162126|2 +874389|39001162138|2 +655248|39001162187|2 +503504|39001162296|2 +527378|39001162357|2 +475273|39001162453|2 +498371|39001162516|2 +625854|39001162545|2 +646806|39001162562|2 +648064|39001162566|2 +651184|39001162570|2 +655235|39001162598|2 +503480|39001162600|2 +667802|39001162617|2 +669123|39001162623|2 +694746|39001162629|2 +546572|39001162659|2 +564565|39001162660|2 +572777|39001162661|2 +581292|39001162662|2 +583719|39001162663|2 +583901|39001162665|2 +643232|39001162668|2 +900537|39001162672|2 +593405|39001162681|2 +593604|39001162683|2 +599954|39001162688|2 +602687|39001162691|2 +609621|39001162692|4 +621337|39001162693|2 +630735|39001162695|2 +570419|39001162988|2 +581268|39001163014|2 +604799|39001163039|2 +708975|39001163050|2 +634305|39001163074|2 +646833|39001163075|2 +737409|39001163078|2 +748103|39001163091|2 +656804|39001163094|2 +770910|39001163105|2 +773658|39001163124|2 +668304|39001163211|2 +677515|39001163215|2 +789722|39001163221|2 +690278|39001163226|2 +800463|39001163241|2 +720817|39001163252|2 +836698|39001163255|4 +727565|39001163256|2 +675000|39001163305|2 +729965|39001163306|2 +731434|39001163311|2 +732931|39001163315|2 +741151|39001163319|2 +750599|39001163328|2 +757824|39001163330|2 +901324|39001163334|2 +900754|39001163336|2 +789324|39001163363|2 +788630|39001163364|2 +801795|39001163396|2 +871224|39001163429|2 +872279|39001163431|2 +885834|39001163434|2 +859793|39001164002|2 +654278|39001164018|2 +676624|39001164138|2 +704862|39001164139|2 +728998|39001164140|2 +579700|39001164286|2 +803594|39001164287|2 +874119|39001164305|2 +1256831|39001164427|2 +543604|39001164441|2 +659827|39001164518|2 +655678|39001164522|2 +683175|39001164922|2 +882035|39001164926|2 +1211393|39001164932|2 +1211641|39001164934|2 +1256832|39001164942|2 +627715|39001165820|2 +525347|39001166784|2 +654229|39001166799|2 +757307|39001166825|2 +808445|39001166835|2 +455206|39001167664|2 +486065|39001167668|2 +539086|39001167674|2 +718432|39001167989|2 +800498|39001168499|2 +1074218|39001168503|2 +586864|39001168804|2 +610852|39001168807|2 +741703|39001168809|2 +766715|39001168810|2 +862939|39001169032|6 +628489|39001169038|2 +478791|39001169294|2 +506571|39001169295|2 +746063|39001169300|2 +868578|39001169314|2 +850590|39001169463|2 +461325|39001170188|2 +501810|39001170193|2 +583363|39001170194|2 +600096|39001170195|2 +632077|39001170196|2 +1044295|39001170198|2 +865596|39001170427|2 +712584|39001170540|2 +622684|39001171316|2 +881498|39001171318|2 +837754|39001171692|4 +523862|39001171871|2 +741503|39001171873|2 +745027|39001171874|2 +865975|39001172039|2 +586000|39001172296|2 +807908|39001172301|2 +672796|39001172381|2 +482080|39001172532|2 +630416|39001172536|2 +672191|39001172537|2 +738767|39001172539|2 +552795|39001172540|2 +516644|39001172841|2 +489424|39001172842|2 +501336|39001172858|2 +864978|39001172988|2 +641244|39001173043|2 +633456|39001173273|2 +981683|39001173400|2 +732924|39001173439|2 +580288|39001173579|2 +859014|39001173583|2 +520145|39001173588|2 +758010|39001173612|2 +502258|39001173783|2 +609309|39001173784|2 +543608|39001173952|2 +621320|39001173954|2 +682970|39001173956|2 +653152|39001174005|2 +743713|39001174228|2 +528563|39001174766|2 +598545|39001174768|2 +607278|39001174953|2 +628796|39001174954|2 +928488|39001174956|2 +526152|39001175245|2 +599533|39001175246|2 +775260|39001175515|2 +788227|39001175517|2 +600866|39001175611|2 +476800|39001176464|2 +488137|39001176465|2 +511182|39001176469|2 +523287|39001176474|2 +653062|39001176579|2 +673907|39001176580|2 +721251|39001176581|2 +779015|39001176582|2 +829101|39001176586|4 +844636|39001176770|2 +794575|39001176813|2 +625523|39001176827|2 +740759|39001176959|2 +613475|39001177302|2 +680824|39001177303|2 +783357|39001177393|2 +863914|39001177498|2 +829163|39001177905|4 +715579|39001178527|2 +489174|39001178530|2 +883449|39001178556|2 +615721|39001178568|2 +622154|39001178569|4 +628920|39001178570|2 +641928|39001178571|2 +755205|39001178630|2 +746311|39001178632|2 +780848|39001178634|2 +513420|39001178638|2 +848050|39001178929|2 +503501|39001179115|2 +671716|39001179116|2 +751647|39001179118|2 +902393|39001179120|2 +514809|39001179151|2 +514820|39001179153|2 +522751|39001179154|2 +853869|39001179164|2 +755753|39001179383|2 +1047494|39001179386|2 +508215|39001179488|2 +479565|39001179621|2 +656080|39001179686|2 +676100|39001179761|2 +512456|39001179923|2 +796333|39001180114|2 +615204|39001180119|2 +671946|39001180121|2 +582235|39001180290|2 +764037|39001180291|2 +470575|39001180352|2 +539828|39001180369|2 +846733|39001180382|2 +765986|39001180457|4 +553421|39001180667|2 +720287|39001180678|2 +1127653|39001180900|2 +542887|39001181039|2 +619830|39001181177|2 +668906|39001181180|2 +452563|39001181445|2 +719803|39001181587|2 +728975|39001181588|2 +695955|39001181743|2 +587159|39001181947|2 +587478|39001181948|2 +474475|39001181949|2 +885742|39001182009|2 +535987|39001182338|2 +528337|39001182342|2 +610003|39001182347|2 +727478|39001182370|2 +871095|39001182406|2 +526367|39001182420|2 +859489|39001182448|2 +480744|39001182515|2 +874115|39001182524|2 +577216|39001182802|2 +527409|39001182891|2 +657125|39001182916|2 +514087|39001183152|2 +682134|39001183164|2 +785203|39001183170|2 +826541|39001183277|4 +890439|39001183285|2 +472486|39001183432|2 +498405|39001183466|2 +759428|39001183619|2 +865551|39001183624|2 +458134|39001183638|2 +633540|39001183639|2 +546716|39001183780|2 +710667|39001183782|2 +533986|39001183798|2 +641353|39001183989|2 +733001|39001183991|2 +785438|39001183995|2 +795207|39001184002|2 +864188|39001184009|2 +511158|39001184010|2 +526798|39001184446|2 +481663|39001184499|2 +595142|39001184500|2 +599588|39001184501|2 +474968|39001184554|2 +474965|39001184555|2 +698679|39001184560|2 +672143|39001184602|2 +873118|39001184621|2 +453924|39001184647|2 +461105|39001184653|2 +458405|39001184656|2 +465630|39001184659|2 +478220|39001184663|2 +553325|39001184676|2 +554705|39001184677|2 +562827|39001184678|2 +599704|39001184680|2 +604196|39001184684|2 +631480|39001184686|2 +699322|39001184687|2 +715934|39001184688|2 +733363|39001184689|2 +745520|39001184690|2 +752134|39001184691|2 +867766|39001184719|2 +1130657|39001184763|2 +808107|39001184788|2 +849617|39001184791|2 +849618|39001184793|2 +849711|39001184815|2 +503965|39001185557|2 +581300|39001185559|2 +610013|39001185564|2 +747007|39001185589|2 +547840|39001185598|2 +501230|39001185599|2 +528459|39001185602|2 +981791|39001185605|2 +826963|39001185693|4 +872152|39001185695|2 +677285|39001185742|2 +502067|39001185959|4 +579724|39001185963|2 +808086|39001185987|2 +838041|39001185988|4 +840657|39001185989|2 +498347|39001186111|2 +498461|39001186113|2 +651418|39001186135|2 +872104|39001186137|2 +484800|39001186322|2 +501718|39001186323|2 +501986|39001186324|2 +502156|39001186325|2 +525092|39001186327|2 +527007|39001186328|2 +568090|39001186334|2 +593810|39001186337|2 +605930|39001186339|2 +608220|39001186340|2 +627109|39001186341|2 +634333|39001186344|2 +636514|39001186347|2 +692837|39001186382|2 +755041|39001186399|2 +780115|39001186405|2 +786820|39001186407|2 +869491|39001186413|2 +895616|39001186421|2 +895958|39001186422|2 +633468|39001186529|2 +482397|39001186532|2 +724484|39001186539|4 +1100973|39001186541|2 +784878|39001186570|2 +530753|39001186754|2 +627023|39001187626|2 +697569|39001187629|2 +703949|39001187630|2 +729266|39001187632|2 +848478|39001187707|2 +863527|39001187709|2 +880336|39001187712|2 +894566|39001187713|2 +454229|39001187729|2 +749255|39001187805|2 +501758|39001187872|2 +511538|39001187873|2 +527267|39001187874|2 +576212|39001187881|2 +598240|39001187887|2 +599998|39001187893|2 +603736|39001187900|2 +621872|39001187901|2 +629317|39001187902|2 +671851|39001187907|2 +678326|39001187908|2 +683227|39001187909|2 +738383|39001187910|2 +503503|39001187955|2 +465527|39001187959|2 +610805|39001187968|2 +755856|39001187974|2 +765678|39001187975|2 +772819|39001187976|2 +805462|39001187977|4 +828839|39001187982|4 +859009|39001187983|2 +760842|39001188095|2 +486634|39001188107|2 +580309|39001188219|2 +579862|39001188224|2 +780072|39001188277|2 +613867|39001188405|2 +545659|39001188603|2 +628473|39001188606|2 +655169|39001188610|2 +788513|39001188611|2 +833213|39001188613|2 +606539|39001188654|2 +792661|39001188713|2 +618643|39001188717|2 +645742|39001188779|2 +850064|39001188917|2 +743555|39001189037|2 +828784|39001189040|4 +828776|39001189041|4 +500820|39001189223|2 +649831|39001189225|2 +702502|39001189229|2 +581982|39001189232|2 +505859|39001189460|2 +648949|39001189496|2 +570653|39001189666|2 +713302|39001189838|2 +731591|39001189839|2 +741799|39001189840|2 +510788|39001189879|2 +455316|39001190213|2 +841188|39001190350|2 +742385|39001190584|2 +782566|39001190820|2 +551857|39001190869|2 +483619|39001191046|2 +554456|39001191156|2 +724708|39001191271|2 +490981|39001191435|2 +661831|39001191490|2 +626590|39001191544|2 +511576|39001191548|2 +672457|39001191691|2 +784903|39001191693|2 +493023|39001191810|2 +482162|39001191811|2 +732166|39001192090|2 +540860|39001192093|2 +586626|39001192134|2 +634214|39001192138|2 +683203|39001192328|2 +615357|39001192405|2 +830550|39001192407|4 +727328|39001192422|2 +630334|39001192473|2 +733369|39001192476|2 +881499|39001192483|2 +476820|39001192575|2 +762806|39001192661|2 +855133|39001192689|2 +551127|39001192781|2 +874462|39001192783|2 +841187|39001192784|2 +533049|39001192967|2 +657039|39001192968|2 +742896|39001192969|2 +633708|39001193057|2 +794493|39001193063|2 +872199|39001193115|2 +501896|39001193170|2 +491025|39001193332|2 +651495|39001193485|2 +488364|39001193583|2 +582288|39001193588|2 +594241|39001193591|2 +607855|39001193592|2 +625263|39001193600|2 +594051|39001193732|2 +886155|39001193936|2 +771878|39001193973|2 +654330|39001194063|2 +727301|39001194109|2 +527446|39001194376|2 +465812|39001194912|2 +533981|39001194913|2 +553087|39001195001|2 +601480|39001195041|2 +845685|39001195044|2 +580391|39001195151|2 +784367|39001195155|2 +675213|39001195275|2 +614094|39001195330|2 +754530|39001195342|2 +577413|39001195427|2 +594680|39001195428|2 +878739|39001195670|2 +883080|39001195676|2 +719753|39001195788|2 +879178|39001195790|2 +724515|39001195846|2 +807354|39001196158|2 +507985|39001196172|2 +532857|39001196181|2 +667801|39001196189|2 +673892|39001196191|2 +639856|39001196271|2 +742878|39001196274|2 +699066|39001196554|2 +891448|39001196662|2 +505113|39001196667|2 +634331|39001196874|2 +575090|39001196904|2 +598273|39001196966|2 +685648|39001196970|2 +755798|39001197010|2 +602768|39001197048|2 +788236|39001197162|2 +828355|39001197163|4 +1266324|39001197166|2 +734607|39001197322|2 +882867|39001197447|2 +465750|39001197652|2 +502001|39001197661|2 +598254|39001197813|2 +644175|39001197814|2 +803422|39001197815|2 +480135|39001197941|2 +729840|39001197964|4 +535175|39001198068|2 +588094|39001198099|2 +463281|39001198595|2 +582289|39001198848|2 +826439|39001199018|4 +671712|39001199020|2 +651318|39001199477|2 +599632|39001199485|2 +557323|39001199649|2 +727724|39001199656|2 +769473|39001199869|2 +881555|39001199870|2 +865700|39001200133|2 +526003|39001200149|2 +849586|39001200157|2 +733674|39001200158|2 +530817|39001200251|2 +746278|39001200252|2 +699548|39001200489|4 +507896|39001200543|2 +842799|39001200547|2 +888817|39001200552|2 +703211|39001200867|2 +806729|39001200917|2 +527344|39001201114|2 +881903|39001201231|2 +663748|39001201234|2 +828780|39001201371|4 +869413|39001201372|2 +461519|39001201444|2 +511931|39001201448|2 +756140|39001201577|2 +796027|39001201881|2 +881252|39001201898|2 +761303|39001201930|2 +777798|39001201931|2 +794752|39001202128|2 +692723|39001202129|2 +457816|39001202233|2 +530875|39001202250|2 +834539|39001202255|4 +496590|39001202396|2 +672011|39001202446|2 +479797|39001202534|2 +629968|39001203456|2 +686699|39001203458|2 +691547|39001203459|2 +746322|39001203466|2 +501316|39001203646|2 +522884|39001203649|2 +622279|39001203661|2 +622278|39001203667|2 +627778|39001203687|2 +665058|39001203728|2 +671698|39001203731|2 +690564|39001203741|2 +734880|39001203763|2 +782010|39001203766|2 +855137|39001203789|2 +927747|39001203851|2 +494574|39001204316|2 +526955|39001204317|2 +621460|39001204520|2 +527844|39001204631|2 +659453|39001204765|2 +763466|39001204781|2 +593803|39001204996|2 +687921|39001205116|2 +799678|39001205238|2 +1060130|39001205249|2 +575038|39001205272|2 +619604|39001205320|2 +894481|39001205373|2 +465807|39001205430|2 +624350|39001205568|2 +563052|39001206032|2 +576974|39001206036|2 +648986|39001206041|2 +465563|39001206078|2 +597896|39001206095|2 +678261|39001206098|2 +830734|39001206253|4 +902271|39001206628|2 +545330|39001207045|2 +545321|39001207052|2 +765713|39001207250|2 +765796|39001207258|2 +465425|39001208718|2 +470717|39001208721|2 +477391|39001208722|2 +522789|39001208727|2 +599883|39001208759|2 +599721|39001208760|2 +641357|39001208767|2 +641541|39001208770|2 +655569|39001208777|2 +695880|39001208786|2 +729900|39001208792|2 +827545|39001208808|4 +900771|39001208813|2 +809548|39001208916|2 +568603|39001209972|2 +704698|39001210011|2 +867859|39001210070|2 +896084|39001210074|2 +502373|39001210270|2 +511793|39001210290|2 +614936|39001210327|2 +495031|39001210552|2 +501059|39001210553|2 +508976|39001210557|2 +474190|39001210569|2 +583694|39001210583|2 +787733|39001210584|2 +613706|39001210596|2 +476722|39001210780|2 +497331|39001210781|2 +536907|39001210787|2 +642259|39001210801|2 +669284|39001210814|2 +677440|39001210868|2 +694619|39001210875|2 +708438|39001210878|2 +712139|39001210880|2 +716623|39001210881|2 +719952|39001210885|2 +742902|39001210912|2 +746364|39001210914|2 +752565|39001210915|2 +777754|39001210921|2 +780840|39001210924|2 +841760|39001210991|2 +601901|39001210999|2 +786054|39001211000|2 +837976|39001211016|4 +841131|39001211017|2 +853313|39001211018|2 +878494|39001211056|2 +969302|39001211073|2 +983782|39001211083|2 +780117|39001211122|2 +709578|39001211324|2 +788013|39001211351|2 +504205|39001211425|2 +636055|39001211430|2 +871805|39001211434|2 +485897|39001211465|2 +1060249|39001211467|2 +715871|39001211639|2 +580179|39001211645|2 +526881|39001211778|2 +657459|39001212159|2 +652034|39001212401|2 +1122472|39001212451|2 +680255|39001213113|2 +861300|39001213123|2 +490893|39001213188|2 +609187|39001213221|4 +620724|39001213227|2 +470092|39001214201|2 +783431|39001214786|2 +849602|39001214817|2 +465865|39001214825|2 +470696|39001214826|2 +503809|39001214835|2 +567686|39001214838|2 +597275|39001214844|2 +669968|39001214851|2 +754788|39001214858|2 +751387|39001214859|2 +850056|39001214861|2 +887149|39001214883|2 +479345|39001214897|2 +538716|39001214914|2 +543859|39001214917|2 +555942|39001214919|2 +780602|39001214920|2 +580332|39001214937|2 +595561|39001214939|2 +576975|39001214941|2 +617535|39001214951|2 +623076|39001214952|2 +631672|39001214955|2 +721723|39001214960|2 +745330|39001214963|2 +788996|39001214964|2 +862239|39001214972|2 +874302|39001214975|2 +623119|39001214991|2 +470693|39001215003|2 +785844|39001215013|2 +578261|39001215213|2 +461611|39001215488|2 +556897|39001215506|2 +650755|39001215607|2 +654329|39001215656|2 +743589|39001215740|4 +613860|39001215745|2 +758995|39001215755|2 +801532|39001215758|2 +807879|39001215759|2 +825812|39001215926|4 +872140|39001215927|2 +889367|39001215931|2 +581251|39001216275|2 +623642|39001216279|2 +659243|39001216281|2 +659241|39001216283|2 +673890|39001216284|2 +680998|39001216293|2 +774066|39001216305|2 +790899|39001216409|2 +779918|39001216596|2 +480156|39001216840|2 +541757|39001217515|2 +900687|39001217516|4 +788228|39001217545|2 +751580|39001217624|2 +865595|39001217776|2 +682941|39001217777|2 +669959|39001217816|2 +613239|39001218073|2 +825714|39001218074|4 +825715|39001218075|4 +545579|39001218076|2 +682957|39001218077|2 +868331|39001218151|2 +752439|39001218355|2 +677819|39001218356|2 +500703|39001218607|2 +526541|39001218608|2 +535381|39001218614|2 +601463|39001218616|2 +542977|39001218687|2 +803934|39001218693|2 +675179|39001218760|2 +521436|39001218851|2 +626118|39001218854|2 +752505|39001219129|2 +575060|39001219548|2 +655139|39001220042|2 +585194|39001220411|2 +490120|39001220484|2 +656803|39001220485|2 +469493|39001220515|2 +826190|39001220569|6 +657562|39001220630|2 +460718|39001220843|2 +507361|39001220844|2 +568876|39001220845|2 +522977|39001220846|2 +615388|39001220848|2 +622308|39001220850|2 +639654|39001220851|2 +581245|39001220902|2 +808119|39001220947|2 +830542|39001221041|4 +808116|39001221123|2 +798473|39001221211|2 +656000|39001221220|2 +696951|39001221221|2 +607572|39001221264|2 +654543|39001221265|2 +774786|39001221283|2 +782737|39001221284|2 +547411|39001221408|2 +865325|39001221415|2 +893289|39001221419|2 +690568|39001221588|2 +583905|39001221751|2 +881454|39001221801|2 +513570|39001221807|2 +583707|39001221896|2 +709011|39001221996|2 +551317|39001222179|2 +725863|39001222189|2 +841582|39001222192|2 +494893|39001222280|2 +543451|39001222419|2 +1142026|39001222439|2 +577282|39001222465|2 +653015|39001222466|2 +549560|39001222601|2 +655846|39001222603|2 +680251|39001222605|2 +682085|39001222618|2 +522863|39001222654|2 +501318|39001222736|2 +511180|39001222737|2 +671653|39001222740|2 +895694|39001222741|2 +769978|39001222813|2 +459311|39001222901|2 +572619|39001222906|2 +724765|39001222916|2 +751766|39001222927|2 +751836|39001222931|2 +515377|39001223159|2 +834331|39001223165|2 +881569|39001223189|2 +881558|39001223191|2 +587480|39001223205|2 +477214|39001223297|2 +692905|39001223349|2 +759359|39001223351|2 +762090|39001223353|2 +660135|39001223451|2 +848180|39001223456|2 +721249|39001223570|2 +826129|39001223571|4 +898941|39001223632|2 +632023|39001223633|2 +731427|39001223667|2 +502013|39001223688|2 +643333|39001223692|2 +778431|39001223701|2 +900578|39001223702|2 +839380|39001223742|4 +646536|39001223908|2 +612668|39001223943|4 +611463|39001223981|2 +643238|39001223984|2 +677398|39001223988|2 +774727|39001223989|2 +881183|39001223994|2 +885690|39001223995|2 +736815|39001224010|2 +741775|39001224012|2 +615423|39001224054|2 +503119|39001224123|2 +833445|39001224130|4 +885827|39001224140|2 +600075|39001224211|2 +687198|39001224359|2 +738108|39001224361|2 +547586|39001224519|2 +599933|39001224732|2 +884035|39001224820|2 +587167|39001224957|2 +809341|39001224970|2 +474636|39001224974|2 +1127915|39001224981|2 +593205|39001225086|2 +782025|39001225088|2 +779046|39001225250|2 +462792|39001225334|2 +557363|39001225513|2 +594681|39001225526|2 +599703|39001225531|2 +711440|39001225755|2 +647626|39001225771|2 +755608|39001225772|2 +867498|39001225774|2 +1166119|39001225926|2 +780290|39001225937|2 +475462|39001226086|2 +484386|39001226089|2 +703742|39001226091|2 +690642|39001226117|2 +480372|39001226127|2 +829327|39001226129|4 +677389|39001226294|2 +749768|39001226298|4 +849606|39001226299|2 +838386|39001226383|4 +464647|39001226515|2 +765469|39001226518|2 +782829|39001226677|2 +674980|39001226737|2 +494914|39001226758|2 +511377|39001226766|2 +635263|39001226782|2 +782015|39001226851|2 +759520|39001226939|2 +782019|39001226945|2 +617672|39001227001|2 +617651|39001227002|2 +576571|39001227092|2 +480747|39001227147|2 +536661|39001227150|4 +875880|39001227185|2 +851060|39001227213|2 +679713|39001227224|2 +587339|39001227225|2 +631477|39001227227|2 +758883|39001227231|2 +663737|39001227232|2 +536937|39001227311|2 +557518|39001227339|2 +571015|39001227342|2 +751026|39001227357|2 +766158|39001227374|2 +775792|39001227398|2 +861778|39001227434|2 +685089|39001227459|2 +518209|39001227536|2 +572948|39001227593|2 +699129|39001227605|2 +654300|39001227684|2 +672021|39001227692|2 +738824|39001227698|2 +881824|39001227760|2 +573676|39001227788|2 +677842|39001227798|2 +740918|39001227845|2 +470890|39001227848|2 +766738|39001227855|2 +508619|39001227885|2 +594682|39001227895|2 +650398|39001227901|2 +858023|39001228014|2 +596197|39001228261|2 +643536|39001228263|2 +734389|39001228266|2 +834332|39001228268|2 +610617|39001228288|2 +641266|39001228350|2 +486422|39001228472|2 +515797|39001228478|2 +930284|39001228482|2 +700951|39001228579|2 +600491|39001228627|2 +611199|39001228630|2 +879043|39001228767|2 +620223|39001228866|2 +809116|39001228874|2 +560167|39001228886|2 +666806|39001228928|2 +737607|39001228931|2 +787719|39001228934|2 +472899|39001229030|2 +529756|39001229045|2 +741655|39001229125|2 +849597|39001229129|2 +874008|39001229131|2 +507020|39001229155|2 +745242|39001229381|2 +567224|39001229391|2 +677409|39001229404|2 +621559|39001229428|2 +505114|39001229612|2 +453211|39001229849|2 +620822|39001229854|2 +865022|39001229946|2 +527229|39001229952|2 +778102|39001230629|2 +684384|39001230668|2 +729467|39001230678|2 +843957|39001230686|2 +792399|39001230710|2 +603790|39001230739|2 +558597|39001230950|2 +499633|39001230971|2 +765046|39001231006|2 +1130730|39001231035|2 +740812|39001231039|2 +543028|39001231087|2 +596619|39001231102|2 +712276|39001231187|2 +699858|39001231218|2 +743632|39001231299|2 +573532|39001231338|2 +830574|39001231375|4 +573517|39001231398|2 +563796|39001231438|2 +589954|39001231447|2 +530581|39001231478|2 +534560|39001231480|2 +535280|39001231482|2 +538307|39001231483|2 +574458|39001231501|2 +582290|39001231503|2 +615201|39001231513|2 +647494|39001231522|2 +647826|39001231524|2 +652407|39001231537|2 +514972|39001231543|2 +695906|39001231546|2 +699130|39001231572|2 +724276|39001231575|2 +727654|39001231579|2 +731638|39001231583|2 +746334|39001231586|2 +752297|39001231595|4 +792001|39001231597|2 +530722|39001231631|2 +870699|39001231650|2 +673388|39001231729|2 +472745|39001231767|2 +668615|39001231771|2 +510125|39001231775|2 +604791|39001231778|2 +573513|39001231779|2 +540749|39001231820|2 +644711|39001231834|2 +688992|39001231867|2 +690999|39001231891|2 +740766|39001231920|2 +466035|39001231923|2 +537564|39001231933|2 +862236|39001231940|2 +869384|39001231943|2 +870360|39001231946|2 +745243|39001231974|2 +507619|39001232084|4 +668801|39001232483|2 +829632|39001232485|4 +467460|39001232829|2 +604716|39001232833|2 +654293|39001232834|2 +673898|39001232835|2 +677434|39001232836|2 +764064|39001232837|2 +486442|39001232871|2 +862233|39001232875|2 +541755|39001233019|2 +618125|39001233028|2 +673813|39001233413|2 +542800|39001233704|2 +771378|39001233719|2 +840661|39001233757|2 +599685|39001233848|2 +606945|39001233940|2 +508455|39001233965|2 +514771|39001233970|2 +535380|39001233972|2 +872793|39001233975|2 +630662|39001233991|2 +658061|39001234029|2 +831973|39001234045|4 +605240|39001234184|2 +697330|39001234198|2 +697570|39001234272|2 +742863|39001234307|2 +786878|39001234313|2 +797331|39001234323|2 +808030|39001234324|2 +829453|39001234326|4 +526628|39001234420|2 +881119|39001234427|2 +891959|39001234428|2 +893840|39001234429|2 +894277|39001234430|2 +466640|39001234469|2 +589911|39001234479|2 +667116|39001234524|2 +673671|39001234532|2 +696928|39001234541|2 +762714|39001234555|2 +771751|39001234558|2 +776083|39001234564|2 +791110|39001234584|2 +462626|39001234736|2 +674149|39001234738|2 +461259|39001234858|2 +634269|39001234859|2 +884987|39001234971|2 +582595|39001235028|2 +509278|39001235105|2 +1106252|39001235152|2 +610737|39001235238|4 +547434|39001235312|2 +801006|39001235352|2 +582306|39001235570|2 +692112|39001235575|2 +837647|39001235733|4 +885658|39001235734|2 +501877|39001236030|2 +783217|39001236031|2 +556108|39001236361|2 +616927|39001236368|2 +676199|39001236390|2 +772028|39001236440|2 +884639|39001236450|2 +1021334|39001236460|2 +543122|39001236731|2 +659834|39001236750|2 +692833|39001236751|2 +720830|39001236752|2 +832130|39001236753|4 +992769|39001236769|2 +554433|39001236955|2 +664977|39001236957|2 +672098|39001236959|2 +801295|39001236961|2 +851242|39001236965|2 +461999|39001237058|2 +631476|39001237171|2 +489166|39001237279|2 +502053|39001237282|2 +521134|39001237283|2 +655953|39001237515|2 +621116|39001237797|2 +808084|39001237801|2 +649712|39001237901|2 +675571|39001237903|2 +714452|39001237906|2 +630614|39001237951|2 +642329|39001237952|2 +743664|39001238018|2 +733795|39001238121|2 +497446|39001238132|2 +721867|39001238249|2 +480743|39001238457|2 +494877|39001238459|2 +522976|39001238462|2 +687496|39001238464|2 +621616|39001238621|2 +558024|39001238632|2 +577338|39001238686|2 +866221|39001238687|2 +504249|39001238745|2 +521566|39001238877|2 +578957|39001238981|2 +655140|39001238983|2 +875572|39001238987|4 +635310|39001239101|2 +676658|39001239249|2 +597210|39001239258|2 +482207|39001239302|2 +869055|39001239314|2 +756424|39001239453|2 +502157|39001239458|2 +850053|39001239476|2 +588873|39001239619|2 +862926|39001239623|6 +604078|39001239639|2 +694186|39001239827|2 +731444|39001239836|2 +666808|39001239852|2 +777990|39001239857|2 +780843|39001239858|2 +787763|39001239860|2 +887213|39001239868|2 +804292|39001239905|2 +742912|39001239920|2 +641294|39001239947|4 +728689|39001239952|2 +467778|39001240008|2 +511615|39001240015|2 +626112|39001240017|2 +792695|39001240035|2 +881510|39001240327|2 +599523|39001240341|2 +641378|39001240349|2 +703708|39001240361|2 +799428|39001240364|2 +648070|39001240374|2 +570321|39001240375|2 +496966|39001240377|2 +614870|39001240383|2 +468243|39001240384|2 +481702|39001242680|2 +482436|39001242682|2 +484388|39001242683|2 +581304|39001242726|2 +630319|39001242818|2 +725034|39001242835|2 +751925|39001242847|2 +452194|39001242880|2 +475960|39001242883|2 +484894|39001242884|2 +485841|39001242885|2 +736816|39001242886|2 +776693|39001243004|2 +869260|39001243094|2 +869939|39001243097|2 +881827|39001243101|2 +671358|39001243103|2 +751242|39001243128|2 +671632|39001243133|2 +545818|39001243251|2 +634326|39001243255|2 +709192|39001243259|2 +501873|39001243436|2 +515835|39001243451|2 +523305|39001243454|2 +549330|39001243477|2 +568123|39001243487|2 +573482|39001243489|2 +578419|39001243490|2 +583725|39001243604|2 +585420|39001243608|2 +593602|39001243614|2 +612980|39001243615|2 +622043|39001243617|2 +625531|39001243618|2 +651609|39001243620|2 +669815|39001243622|2 +703945|39001243628|2 +711846|39001243630|2 +728462|39001243643|2 +731217|39001243644|2 +733626|39001243648|2 +735357|39001243649|2 +784822|39001243736|2 +786912|39001243738|2 +787732|39001243740|2 +793979|39001243742|2 +800102|39001243744|2 +867185|39001243750|2 +868996|39001243752|2 +754789|39001243753|2 +883889|39001243758|2 +886037|39001243759|2 +901406|39001243764|4 +893837|39001245483|2 +465469|39001246101|2 +465762|39001246102|2 +863898|39001246103|2 +479063|39001246104|2 +480074|39001246106|2 +503979|39001246117|2 +493457|39001246120|2 +753328|39001246136|2 +509270|39001246225|2 +511598|39001246226|2 +532699|39001246231|2 +534191|39001246234|2 +522194|39001246238|2 +542914|39001246247|2 +557996|39001246250|2 +649277|39001246252|2 +649599|39001246254|2 +589943|39001246256|2 +651243|39001246257|2 +670553|39001246312|2 +696897|39001246318|2 +698656|39001246332|2 +712776|39001246334|2 +806685|39001246341|2 +885832|39001246343|2 +858774|39001246345|2 +621500|39001246366|2 +1165892|39001246386|2 +1117066|39001246657|2 +652117|39001246661|2 +1098023|39001246679|2 +511591|39001246795|2 +614426|39001246797|2 +614768|39001246798|2 +560440|39001246799|2 +616016|39001246859|2 +624631|39001246860|2 +633643|39001246862|2 +647541|39001246879|2 +649978|39001246880|2 +649988|39001246881|2 +657559|39001246884|2 +527444|39001247380|2 +536227|39001247381|2 +560038|39001247389|2 +590941|39001247417|2 +672249|39001247421|2 +674308|39001247447|2 +709251|39001247450|2 +715389|39001247465|2 +715569|39001247467|2 +729875|39001247471|2 +746340|39001247563|2 +753329|39001247583|2 +764467|39001247591|2 +788516|39001247607|4 +788360|39001247609|2 +793457|39001247611|2 +802617|39001247613|2 +828777|39001247685|4 +834945|39001247693|6 +840505|39001247694|4 +850702|39001247718|2 +851059|39001247719|2 +851075|39001247721|2 +870619|39001247722|2 +881107|39001247735|2 +881303|39001247736|2 +885730|39001247742|2 +526390|39001247771|2 +476938|39001248018|4 +663726|39001248020|2 +770270|39001248023|2 +899954|39001248063|2 +509517|39001248141|2 +776534|39001248142|2 +867474|39001248401|2 +830211|39001248578|4 +569087|39001248686|2 +807158|39001248709|2 +594151|39001248714|2 +700855|39001248718|2 +652163|39001248720|2 +788627|39001248748|2 +865291|39001248750|2 +867764|39001248757|2 +751111|39001248799|2 +667888|39001249033|2 +765599|39001249035|2 +533982|39001249074|2 +858885|39001249079|2 +883843|39001249080|2 +527919|39001249159|2 +699159|39001249160|2 +879990|39001249437|2 +786996|39001249599|2 +801516|39001249601|2 +831283|39001249810|4 +778146|39001249942|2 +496201|39001249955|2 +807129|39001249961|2 +674147|39001249962|2 +840345|39001249963|4 +599455|39001250043|2 +628949|39001250047|2 +838246|39001250054|4 +496974|39001250275|2 +508270|39001250277|2 +850065|39001250281|2 +888400|39001250282|2 +900799|39001250366|2 +504441|39001250438|2 +772845|39001250441|2 +801702|39001250447|2 +500924|39001250666|2 +694735|39001250668|2 +730310|39001250898|2 +458901|39001250917|2 +547171|39001250927|2 +634323|39001250928|2 +640924|39001250931|2 +486419|39001250949|2 +759225|39001250951|2 +583696|39001250958|2 +678846|39001250960|2 +902428|39001251060|2 +838388|39001251101|4 +867994|39001251102|2 +886645|39001251117|2 +474156|39001251329|2 +834357|39001251411|6 +534545|39001251533|2 +613742|39001251677|2 +517359|39001251774|2 +570450|39001251775|2 +679056|39001251780|2 +745511|39001251783|2 +478104|39001251833|2 +601238|39001251835|2 +844131|39001251842|2 +698843|39001251850|4 +725445|39001251945|2 +776544|39001252072|2 +567213|39001252215|2 +613438|39001252217|2 +632020|39001252520|2 +711041|39001252833|2 +522829|39001252899|2 +570466|39001252900|2 +502287|39001252973|2 +522036|39001252974|2 +729798|39001252994|2 +483669|39001253092|2 +547380|39001253103|2 +674365|39001253117|2 +1122460|39001253193|2 +465480|39001253291|2 +536174|39001253375|2 +689366|39001253389|2 +748063|39001253393|2 +790238|39001253396|2 +808052|39001253402|2 +569426|39001253471|2 +748697|39001253474|2 +865946|39001253478|2 +453388|39001253505|2 +535772|39001253510|2 +510798|39001253637|2 +1259635|39001253829|2 +798622|39001253875|2 +701252|39001253963|2 +829110|39001253964|4 +788146|39001253984|2 +626448|39001253992|2 +501820|39001254098|2 +561071|39001254106|2 +660824|39001254272|2 +895706|39001254608|2 +542916|39001254690|2 +475447|39001254716|2 +592896|39001254782|2 +611240|39001254783|2 +1127935|39001254803|2 +500909|39001254905|2 +495029|39001254972|2 +647925|39001254973|2 +832375|39001254976|4 +618961|39001255005|2 +588093|39001255070|2 +773968|39001255071|2 +862929|39001255073|6 +633443|39001255076|2 +790339|39001255079|2 +849719|39001255081|2 +1173410|39001255116|2 +527387|39001255168|2 +727486|39001255173|2 +652568|39001255181|2 +669964|39001255307|2 +780118|39001255310|2 +484500|39001255338|2 +504100|39001255525|2 +788477|39001255529|2 +771953|39001255533|2 +884983|39001255535|2 +487498|39001255613|2 +729424|39001255618|2 +874450|39001255619|2 +582562|39001255917|2 +472676|39001256020|2 +782760|39001256023|2 +457744|39001256081|2 +465559|39001256083|2 +518210|39001256089|2 +600039|39001256091|2 +895612|39001256315|2 +883517|39001256533|2 +670477|39001256597|2 +710374|39001256599|2 +884022|39001256603|2 +512581|39001256773|2 +688069|39001256774|2 +478480|39001256826|2 +511596|39001256828|2 +881523|39001256883|2 +504160|39001257000|2 +515596|39001257238|2 +880008|39001257246|2 +536048|39001257371|2 +510371|39001257386|2 +581288|39001257391|2 +753421|39001257394|2 +1200451|39001257531|2 +462331|39001257557|2 +455336|39001257645|2 +559787|39001257647|2 +574566|39001257650|2 +740813|39001257652|2 +494967|39001257702|2 +494925|39001257706|2 +825846|39001257777|4 +464152|39001257839|2 +581732|39001257849|2 +826240|39001257867|2 +776580|39001257871|2 +786634|39001257872|2 +835545|39001257874|8 +836862|39001257884|4 +637003|39001257901|2 +589896|39001257988|2 +718948|39001258194|2 +514960|39001258285|2 +527562|39001258287|2 +560400|39001258306|2 +611100|39001258308|2 +652697|39001258397|2 +464598|39001258606|2 +575065|39001258652|2 +758938|39001258959|2 +504242|39001258971|2 +484423|39001259262|2 +650292|39001259281|2 +477259|39001259322|2 +668377|39001259365|2 +578523|39001259471|2 +625857|39001259472|2 +743918|39001259473|2 +524565|39001259533|2 +521540|39001260680|2 +534558|39001260720|2 +538062|39001260729|2 +547666|39001260834|2 +567228|39001260841|2 +583920|39001260845|2 +592084|39001260876|2 +610612|39001260899|2 +616554|39001260914|2 +643446|39001260973|2 +672337|39001260976|2 +674450|39001260986|2 +677603|39001260990|2 +677601|39001260994|2 +679702|39001261000|2 +703749|39001261015|2 +709991|39001261042|2 +726446|39001261048|2 +740767|39001261082|2 +740768|39001261103|2 +744306|39001261120|2 +751912|39001261306|2 +754828|39001261316|2 +775789|39001261348|2 +783215|39001261366|2 +787760|39001261372|2 +788356|39001261380|2 +804394|39001261382|2 +804653|39001261384|2 +808115|39001261385|2 +826192|39001261386|6 +834723|39001261405|4 +885312|39001261688|2 +901468|39001261711|2 +874303|39001261794|2 +874367|39001261798|2 +882919|39001261803|2 +882318|39001261806|2 +900913|39001261812|2 +573446|39001261855|2 +757389|39001262151|2 +479245|39001262206|2 +1012534|39001262208|2 +495568|39001262222|2 +505145|39001262229|2 +506516|39001262232|2 +513410|39001262234|2 +522886|39001262237|2 +524946|39001262282|2 +526645|39001262284|2 +527533|39001262286|2 +528273|39001262287|2 +535230|39001262288|2 +542375|39001262296|2 +543034|39001262297|2 +543081|39001262299|2 +792090|39001262371|2 +621422|39001262386|2 +466697|39001262452|2 +526311|39001262502|2 +548893|39001262582|2 +549065|39001262583|2 +566368|39001262586|2 +581387|39001262591|2 +594661|39001262593|2 +881536|39001262595|2 +610857|39001262600|2 +620110|39001262601|2 +623195|39001262602|2 +633541|39001262604|2 +646476|39001262605|2 +655379|39001262606|2 +526130|39001262716|2 +663568|39001262718|2 +690941|39001262724|2 +695882|39001262728|2 +719010|39001262735|2 +719633|39001262736|2 +736498|39001262738|2 +746260|39001262740|2 +762360|39001262742|2 +550828|39001262796|2 +643528|39001262798|2 +763995|39001262807|2 +764096|39001262809|2 +778211|39001262811|2 +778187|39001262813|2 +506502|39001262828|2 +800159|39001262848|2 +807046|39001262849|2 +839428|39001262850|4 +900438|39001262853|2 +901096|39001262854|2 +501467|39001262915|2 +1092623|39001262918|2 +482834|39001262958|2 +583516|39001263091|2 +688835|39001263190|2 +792638|39001263226|2 +826879|39001263359|4 +460508|39001263560|2 +714397|39001263572|2 +767221|39001263574|2 +530777|39001263674|2 +727652|39001263675|2 +879204|39001263691|2 +829049|39001263692|4 +695887|39001263742|2 +928915|39001263747|2 +594242|39001263777|2 +687275|39001264070|2 +857026|39001264440|2 +526629|39001264472|2 +666906|39001264475|2 +668988|39001264655|2 +761775|39001264708|2 +602171|39001264719|2 +509708|39001264742|2 +515628|39001264744|2 +527959|39001264745|4 +666773|39001264746|2 +710839|39001264748|2 +877574|39001264954|2 +643284|39001265065|2 +751431|39001265105|2 +788014|39001265115|2 +765045|39001265663|2 +836511|39001265666|4 +778051|39001265724|2 +872190|39001265725|2 +486057|39001265923|2 +567252|39001265929|2 +673815|39001265949|2 +759116|39001265951|2 +689807|39001266005|2 +773666|39001266265|2 +849149|39001266293|2 +874347|39001266306|2 +865013|39001266339|2 +589296|39001266404|2 +705024|39001266499|2 +895973|39001266501|4 +495124|39001266560|2 +708613|39001266651|2 +879923|39001266848|2 +669816|39001266984|2 +552159|39001266997|2 +701214|39001266998|2 +717338|39001266999|2 +741760|39001267000|2 +515614|39001267082|2 +873153|39001267094|2 +1094766|39001267182|2 +608315|39001267237|2 +528655|39001267373|2 +581291|39001267413|2 +582244|39001267418|2 +708484|39001267421|2 +801675|39001267539|2 +886929|39001267545|2 +762369|39001267576|2 +891449|39001267577|2 +740888|39001267801|2 +510103|39001267869|2 +674430|39001267989|2 +730217|39001267990|2 +866990|39001268000|2 +878000|39001268142|2 +681782|39001268146|2 +511536|39001268474|2 +526427|39001268615|2 +452287|39001268707|2 +527369|39001268720|2 +528318|39001268721|2 +602135|39001268738|2 +743549|39001268803|2 +855178|39001268821|2 +899062|39001268839|2 +788997|39001268958|2 +760036|39001269240|2 +766854|39001269241|2 +545200|39001269378|2 +594475|39001269394|2 +805330|39001269524|2 +869036|39001269574|2 +465859|39001270171|2 +486895|39001270176|2 +666809|39001270210|2 +733838|39001270243|2 +597688|39001270252|2 +491450|39001270276|2 +629225|39001270397|2 +603561|39001270417|2 +801055|39001270422|2 +847678|39001270429|2 +857998|39001270637|2 +502095|39001270769|2 +801201|39001270770|2 +801202|39001270776|2 +766884|39001270886|2 +483851|39001270928|2 +460256|39001271106|2 +467953|39001271114|2 +455648|39001271295|2 +492047|39001271560|2 +529559|39001271561|2 +652404|39001271629|2 +583155|39001271642|2 +511193|39001271708|2 +622272|39001271831|2 +730313|39001271850|2 +989181|39001271875|2 +651295|39001271880|2 +728885|39001272016|2 +782960|39001272019|2 +495220|39001272279|2 +495222|39001272281|2 +547517|39001272284|2 +553698|39001272285|2 +626292|39001272297|2 +666894|39001272317|2 +867480|39001272325|2 +881951|39001272344|2 +506241|39001272759|2 +728665|39001272794|2 +869636|39001272801|2 +706661|39001272872|2 +588374|39001273077|2 +473660|39001273080|2 +496995|39001273087|2 +538817|39001273089|2 +655141|39001273090|2 +685122|39001273092|2 +853995|39001273093|2 +699002|39001273099|4 +708494|39001273107|2 +838391|39001273110|4 +528226|39001273126|2 +582385|39001273143|2 +476710|39001273819|2 +479495|39001273932|2 +883261|39001273989|2 +535199|39001274138|2 +787586|39001274139|2 +455433|39001274455|2 +455432|39001274459|2 +486436|39001274467|2 +482856|39001274469|2 +524530|39001274478|2 +532474|39001274485|2 +576002|39001274503|2 +600840|39001274504|2 +613989|39001274512|4 +624012|39001274514|2 +680847|39001274522|2 +629990|39001274537|2 +642496|39001274556|2 +687934|39001274560|2 +695858|39001274561|2 +466691|39001274703|2 +497000|39001274704|2 +508368|39001274711|2 +882391|39001274798|2 +479120|39001275659|2 +698188|39001275669|2 +579659|39001276126|2 +762101|39001276413|2 +696968|39001276429|2 +1258024|39001276446|2 +742259|39001276649|2 +792983|39001276707|2 +509707|39001276845|2 +556672|39001276867|2 +508610|39001277106|2 +557470|39001277181|2 +577407|39001277384|2 +582177|39001277392|2 +583906|39001277397|2 +708956|39001277401|2 +585378|39001277406|2 +610168|39001277443|2 +609759|39001277448|2 +628046|39001277631|2 +637427|39001277707|2 +657545|39001277795|2 +637329|39001277811|2 +670747|39001277814|2 +672165|39001277823|2 +570442|39001278097|2 +514583|39001278293|2 +670843|39001278647|2 +687624|39001278650|2 +624083|39001278690|2 +761717|39001278702|2 +890373|39001278758|2 +451846|39001279355|2 +660823|39001279438|2 +530887|39001279522|2 +590667|39001279536|2 +805331|39001279898|2 +636583|39001279920|2 +569319|39001280397|2 +841703|39001280429|2 +689651|39001280564|2 +692834|39001280571|2 +695600|39001280574|2 +535208|39001280577|2 +480399|39001280671|2 +510117|39001280890|2 +530956|39001280972|2 +703172|39001281070|2 +718170|39001281130|2 +630462|39001281366|2 +485418|39001281381|4 +618126|39001281532|2 +800531|39001281542|2 +795285|39001281559|2 +513574|39001281596|2 +568106|39001281635|2 +574936|39001281637|2 +588948|39001281645|2 +591334|39001281648|2 +603567|39001281651|2 +630675|39001281672|2 +479132|39001282274|2 +680709|39001282330|2 +682838|39001282331|2 +688946|39001282333|2 +692311|39001282335|2 +710797|39001282337|2 +565347|39001282376|2 +724566|39001282386|2 +730075|39001282387|4 +730017|39001282389|4 +742893|39001282400|2 +754775|39001282423|2 +641506|39001282430|2 +762729|39001282433|2 +766697|39001282437|2 +627676|39001282533|2 +692058|39001282567|2 +707776|39001282607|2 +753091|39001282610|2 +779467|39001282612|2 +787722|39001282615|2 +803440|39001282635|2 +452678|39001282640|2 +809474|39001282707|2 +827262|39001282713|4 +844600|39001282722|2 +863961|39001282728|2 +577054|39001282750|2 +515469|39001283110|2 +799495|39001283179|2 +756430|39001283322|2 +776327|39001283521|2 +788196|39001283524|2 +837757|39001283534|6 +839932|39001283537|4 +866231|39001283551|2 +872857|39001283568|2 +872792|39001283574|2 +872757|39001283575|2 +634282|39001283769|2 +715646|39001283793|2 +504448|39001284417|2 +508616|39001284421|2 +873567|39001284464|2 +874495|39001284466|2 +678824|39001284467|2 +834249|39001284468|4 +893253|39001284471|2 +900986|39001284472|2 +961231|39001284672|2 +742856|39001284693|2 +767409|39001284705|2 +775736|39001284711|2 +869008|39001284716|2 +871566|39001284719|2 +496177|39001284885|2 +496222|39001284888|2 +1047459|39001284917|2 +1265854|39001284944|2 +1122462|39001284991|2 +827261|39001285088|4 +661590|39001285091|2 +710040|39001285092|4 +1211823|39001285160|2 +677505|39001285812|2 +733896|39001285826|2 +673385|39001285857|2 +724453|39001285965|2 +863482|39001286244|2 +708607|39001286320|2 +507484|39001288644|2 +724909|39001288954|2 +567225|39001288961|2 +589779|39001288965|2 +741735|39001288968|2 +884267|39001288975|2 +469999|39001288987|2 +655741|39001288992|2 +528392|39001289009|2 +758862|39001289021|2 +671774|39001289035|2 +465988|39001289041|2 +709826|39001289051|2 +452209|39001289059|2 +714422|39001289100|2 +592823|39001289116|2 +534593|39001289122|2 +655054|39001289124|2 +743656|39001289128|2 +581307|39001289142|2 +695778|39001289195|2 +836915|39001289200|4 +452610|39001289207|2 +579725|39001289259|2 +504432|39001289312|2 +671193|39001289320|2 +473575|39001289341|2 +476830|39001289348|2 +511811|39001289843|2 +634284|39001289857|2 +608146|39001289860|2 +540886|39001289862|2 +524275|39001289864|2 +589963|39001289895|2 +745035|39001289930|2 +664624|39001289937|2 +650385|39001289942|2 +695597|39001289952|2 +508506|39001289954|2 +634583|39001289957|2 +523556|39001289996|2 +606129|39001290013|2 +639872|39001290029|2 +624359|39001290040|2 +564236|39001290061|2 +802220|39001290070|2 +452196|39001290073|2 +776492|39001290078|2 +762126|39001290080|2 +458090|39001290094|2 +465748|39001290099|2 +472672|39001290105|2 +484912|39001290108|2 +641332|39001290113|2 +872576|39001290119|2 +747980|39001290802|2 +528561|39001290805|2 +516892|39001290816|2 +560942|39001290818|2 +843490|39001290831|2 +885394|39001291960|2 +1163164|39001292259|2 +1130732|39001292282|2 +510140|39001292774|2 +874381|39001293296|2 +1086366|39001293431|2 +463139|39001293539|2 +510753|39001293551|2 +456212|39001293959|2 +464157|39001293964|2 +461510|39001293965|2 +465767|39001294047|2 +480689|39001294052|2 +634026|39001294053|2 +496406|39001294057|2 +500890|39001294097|2 +594774|39001294430|2 +621873|39001294530|2 +783122|39001294687|2 +509276|39001294883|2 +502083|39001294913|2 +477634|39001294961|2 +477883|39001295082|2 +488760|39001295096|4 +494403|39001295295|2 +513548|39001295421|2 +555743|39001295428|2 +567489|39001295432|2 +596609|39001295441|2 +604405|39001295443|2 +789186|39001295444|2 +623493|39001295445|2 +462498|39001295640|2 +643497|39001295668|2 +453439|39001295682|2 +572898|39001295685|2 +681990|39001295718|2 +712641|39001295800|2 +513569|39001295824|2 +766725|39001295827|2 +784599|39001295834|2 +530695|39001295837|2 +789258|39001295850|2 +803515|39001295859|2 +547197|39001295879|2 +557385|39001295881|2 +569387|39001295883|2 +575248|39001295885|4 +541424|39001295949|2 +593269|39001295963|2 +896030|39001295985|2 +599076|39001296001|2 +600076|39001296009|2 +608300|39001296011|2 +614113|39001296018|2 +620333|39001296054|2 +621289|39001296061|2 +622343|39001296063|2 +629218|39001296074|2 +632055|39001296080|2 +521152|39001296215|2 +643520|39001296218|2 +650761|39001296224|2 +878077|39001296407|2 +467770|39001296421|2 +645932|39001296443|2 +761336|39001296444|2 +807048|39001296452|2 +517966|39001296656|2 +548956|39001296657|2 +577197|39001296659|2 +485355|39001296895|2 +568920|39001296970|2 +582222|39001296973|2 +598206|39001296974|2 +613521|39001296976|2 +657116|39001296995|2 +883751|39001297142|2 +572746|39001297154|2 +684876|39001297156|2 +697639|39001297159|2 +718040|39001297398|2 +718041|39001297401|2 +660133|39001297508|2 +725488|39001297510|2 +727516|39001297512|2 +729901|39001297515|2 +734683|39001297521|2 +740557|39001297523|2 +741299|39001297524|2 +749979|39001297550|2 +760532|39001297560|2 +775374|39001297566|2 +615400|39001297598|2 +786360|39001297606|2 +788737|39001297624|2 +791111|39001297625|2 +799683|39001297641|2 +800780|39001297642|2 +801067|39001297644|2 +832509|39001297656|4 +840660|39001297658|2 +853962|39001297686|2 +874282|39001297717|2 +882141|39001297720|2 +891883|39001297721|2 +894186|39001297722|2 +673899|39001297878|2 +875709|39001297884|2 +1047181|39001297965|2 +591630|39001298140|2 +643002|39001298305|2 +1204841|39001298315|2 +1214243|39001298350|2 +877342|39001298446|2 +504372|39001298728|2 +635845|39001298729|2 +640937|39001298732|2 +479223|39001298763|2 +607643|39001298806|2 +616062|39001298810|2 +771512|39001298942|2 +598063|39001298967|2 +507967|39001298980|2 +691932|39001298984|2 +861279|39001298986|2 +462972|39001299154|2 +517994|39001299191|2 +709239|39001299193|2 +595695|39001299235|2 +479600|39001299441|2 +643001|39001299518|2 +662480|39001299550|2 +501987|39001299730|2 +727465|39001299731|2 +850280|39001299847|2 +731025|39001299865|2 +560180|39001299880|2 +600069|39001299955|2 +787254|39001300092|2 +652698|39001300143|2 +516895|39001300293|2 +752683|39001300308|2 +754583|39001300309|2 +527603|39001300414|2 +659237|39001300505|2 +879734|39001300506|2 +462958|39001300611|2 +794974|39001300615|4 +472375|39001300698|2 +574667|39001300699|2 +874106|39001300700|2 +503882|39001300721|2 +665031|39001300728|2 +678470|39001300731|2 +741306|39001300736|2 +767717|39001300739|2 +759417|39001300791|2 +641293|39001300971|4 +751831|39001300979|2 +880337|39001300983|2 +455691|39001300992|2 +577421|39001300994|2 +584185|39001300995|2 +692063|39001300996|2 +741658|39001300998|2 +747005|39001300999|2 +832266|39001301001|4 +582310|39001301068|2 +623192|39001301143|2 +829169|39001301146|4 +462028|39001301153|2 +522261|39001301154|2 +627742|39001301156|2 +790296|39001301163|2 +833816|39001301164|4 +881012|39001301165|2 +504710|39001301289|2 +665536|39001301317|2 +854304|39001301361|2 +691653|39001301368|2 +859797|39001301811|2 +720794|39001301816|2 +467885|39001302040|2 +491959|39001302041|2 +492142|39001302043|2 +612082|39001302048|2 +680999|39001302051|2 +688338|39001302052|2 +688386|39001302053|2 +736494|39001302054|2 +800534|39001302063|2 +831567|39001302065|4 +875372|39001302066|2 +598367|39001302110|2 +891420|39001302115|2 +599817|39001302117|2 +680880|39001302119|2 +730316|39001302217|2 +825834|39001302304|4 +654301|39001302417|2 +808117|39001302554|2 +711391|39001302639|2 +724557|39001302640|2 +638901|39001302738|2 +900824|39001302750|4 +901588|39001302751|2 +501916|39001302802|2 +807050|39001303004|2 +899498|39001303008|2 +496786|39001303018|2 +496788|39001303019|2 +662789|39001303281|2 +525558|39001303505|2 +528261|39001303632|2 +526612|39001303633|2 +751561|39001303639|2 +627177|39001303767|2 +858127|39001303773|2 +865023|39001303815|2 +573168|39001303938|2 +698493|39001303941|2 +555681|39001303942|2 +897562|39001303946|2 +458837|39001304031|2 +785481|39001304037|2 +849585|39001304038|2 +499591|39001304130|2 +511541|39001304180|2 +525931|39001304185|2 +671441|39001304227|2 +551171|39001304271|2 +486440|39001304285|2 +788326|39001304463|2 +755314|39001304535|2 +517891|39001304560|2 +853888|39001304574|2 +720795|39001304578|2 +550024|39001304710|2 +528566|39001304801|2 +800991|39001304854|2 +885719|39001304858|2 +583034|39001305014|2 +569424|39001305212|2 +756394|39001305213|2 +650595|39001305281|2 +751562|39001305282|2 +514810|39001305368|2 +877247|39001305369|2 +891834|39001305494|2 +534126|39001305603|2 +545827|39001305673|2 +486890|39001305694|2 +477773|39001305793|2 +630896|39001305796|4 +528300|39001306044|2 +575474|39001306046|2 +637485|39001306047|2 +584411|39001306153|2 +808350|39001306155|2 +649577|39001306219|2 +763996|39001306220|2 +484530|39001306260|2 +1166085|39001306391|2 +722141|39001306432|2 +792206|39001306646|2 +636295|39001306711|2 +689664|39001306713|2 +807877|39001306714|2 +482345|39001306986|2 +522777|39001307005|2 +800350|39001307046|2 +863892|39001307089|2 +634872|39001307120|2 +757771|39001307125|2 +768454|39001307206|2 +524947|39001307297|2 +582833|39001307305|2 +1257259|39001307319|2 +600107|39001307391|2 +504389|39001307521|2 +513603|39001307522|2 +871682|39001307523|2 +763360|39001307685|2 +806434|39001307687|2 +694705|39001307753|2 +739018|39001307789|2 +519955|39001307792|2 +688915|39001307806|2 +620324|39001307888|2 +855135|39001307889|2 +512500|39001307970|2 +801517|39001307973|2 +585526|39001308027|2 +581271|39001308069|2 +632248|39001308070|2 +622349|39001308131|2 +678101|39001308132|2 +465528|39001308318|2 +511602|39001308328|2 +650414|39001308341|2 +852628|39001308408|2 +486930|39001308773|2 +526080|39001308778|2 +572996|39001308784|2 +577167|39001308785|2 +610879|39001308786|2 +530609|39001309255|2 +734346|39001309374|2 +564530|39001309516|2 +479505|39001309529|2 +851082|39001309610|2 +501171|39001309658|2 +1084635|39001309672|2 +727914|39001309780|2 +727924|39001309781|2 +534541|39001309936|2 +526621|39001310091|2 +879919|39001310095|2 +697132|39001310148|2 +599391|39001310293|2 +452210|39001310405|2 +674881|39001310448|2 +600843|39001310480|2 +482568|39001310583|2 +511131|39001310593|2 +703603|39001310678|2 +859785|39001310762|2 +528234|39001310962|2 +686268|39001310982|2 +673456|39001311060|2 +694131|39001311061|2 +765364|39001311181|2 +589485|39001311229|2 +808026|39001311230|2 +504456|39001311307|2 +547936|39001311382|2 +627245|39001311396|2 +646533|39001311430|2 +724735|39001311574|2 +734424|39001311578|2 +843120|39001311698|2 +546771|39001311911|2 +635704|39001311915|2 +608242|39001312154|2 +654811|39001312158|2 +753883|39001312258|4 +511992|39001312660|2 +741839|39001312663|2 +761341|39001312674|2 +844966|39001312675|2 +870626|39001312677|2 +461661|39001312760|2 +559136|39001312894|2 +685993|39001312904|2 +629221|39001312990|2 +690977|39001313017|2 +557558|39001313150|2 +463141|39001313178|2 +655142|39001313179|2 +664721|39001313180|2 +755770|39001313182|2 +762091|39001313183|2 +766221|39001313184|2 +746654|39001313263|2 +791149|39001313264|2 +885754|39001313266|2 +742760|39001313397|2 +788238|39001313398|2 +1071817|39001313402|2 +622381|39001313455|2 +568853|39001313463|2 +615651|39001313652|2 +580982|39001313698|2 +654252|39001313701|2 +802639|39001313702|2 +870333|39001313704|2 +877327|39001313705|2 +496863|39001313820|2 +697838|39001313821|2 +482499|39001313871|2 +736602|39001313905|2 +505868|39001314027|2 +829074|39001314031|4 +523152|39001314085|2 +695777|39001314246|2 +1076839|39001314248|2 +869946|39001314326|2 +484572|39001314345|2 +758515|39001314427|2 +652249|39001314444|2 +539831|39001314466|2 +484457|39001314522|2 +872831|39001314580|2 +509287|39001314628|2 +460790|39001314935|2 +864933|39001315150|2 +867098|39001315151|2 +652090|39001315157|2 +789774|39001315158|2 +827568|39001315242|4 +647332|39001315249|2 +608280|39001315250|2 +650773|39001315251|2 +650737|39001315252|2 +563081|39001315253|2 +694114|39001315294|2 +533833|39001315355|2 +872746|39001315368|2 +514581|39001315452|2 +981845|39001315463|2 +464127|39001315478|2 +773080|39001315480|2 +784882|39001315523|2 +574937|39001315581|2 +501015|39001315834|2 +594412|39001315835|2 +651471|39001315837|2 +452195|39001316987|2 +471773|39001316988|2 +477852|39001316989|2 +502294|39001316990|2 +465521|39001316991|2 +513604|39001316992|2 +513606|39001316993|2 +455481|39001317053|2 +484832|39001317063|2 +502166|39001317064|2 +506558|39001317068|2 +615183|39001317292|2 +632081|39001317293|2 +655329|39001317298|2 +661157|39001317302|2 +649562|39001317303|2 +710784|39001317305|2 +737953|39001317306|2 +803392|39001317309|2 +855136|39001317310|2 +865321|39001317311|2 +866886|39001317313|2 +784823|39001317497|2 +1105466|39001317527|2 +582299|39001317608|2 +582640|39001317610|2 +634091|39001317611|2 +784133|39001317627|2 +838387|39001317629|4 +877534|39001317631|4 +881324|39001317632|2 +884579|39001317642|2 +696969|39001317666|2 +455482|39001319020|2 +486908|39001319022|2 +460506|39001319369|2 +473071|39001319375|2 +476615|39001319376|2 +482810|39001319378|2 +506627|39001319381|2 +508453|39001319382|2 +598640|39001319401|2 +606541|39001319402|2 +647852|39001319403|2 +657457|39001319405|2 +454315|39001319411|2 +716067|39001319412|2 +745798|39001319413|2 +746298|39001319414|2 +766694|39001319415|2 +451909|39001319417|2 +775619|39001319418|2 +846535|39001319421|2 +475449|39001319883|2 +705107|39001319895|2 +484791|39001320106|2 +495127|39001320107|2 +509585|39001320109|2 +522828|39001320111|2 +547743|39001320114|2 +630323|39001320117|2 +745903|39001320127|2 +775357|39001320159|2 +788855|39001320165|2 +489730|39001320191|2 +606750|39001320192|2 +771046|39001320294|2 +542018|39001320523|2 +626726|39001320530|2 +646679|39001320531|2 +660192|39001320538|2 +667662|39001320543|2 +883687|39001320607|2 +520466|39001321301|2 +793462|39001321692|2 +501496|39001321702|2 +460722|39001321704|2 +476720|39001321705|2 +501423|39001321706|2 +503112|39001321707|2 +504253|39001321717|2 +549913|39001321718|2 +519522|39001321722|2 +581250|39001321752|2 +594283|39001321754|2 +627958|39001321756|2 +635181|39001321757|2 +643254|39001321758|2 +655507|39001321759|2 +682626|39001321766|2 +687081|39001321770|2 +724578|39001321804|2 +731409|39001321805|2 +743841|39001321806|2 +650642|39001321861|2 +746951|39001321865|2 +754587|39001321868|2 +771305|39001321883|2 +776437|39001321884|2 +776449|39001321885|2 +779136|39001321887|2 +786160|39001321892|4 +676200|39001322084|2 +690755|39001322465|2 +789536|39001322469|2 +829502|39001322477|4 +839133|39001322478|4 +863899|39001322484|2 +803476|39001322634|2 +700664|39001322772|2 +500740|39001323306|2 +514163|39001323326|2 +517958|39001323328|2 +528562|39001323329|2 +532483|39001323330|2 +600054|39001323331|2 +600276|39001323332|2 +691012|39001323335|2 +761720|39001323342|2 +787710|39001323345|2 +798443|39001323349|2 +801942|39001323350|2 +804270|39001323351|2 +805013|39001323352|2 +808028|39001323353|2 +844413|39001323358|2 +861790|39001323362|2 +863114|39001323364|2 +885708|39001323372|2 +598181|39001323559|2 +768558|39001323708|2 +547102|39001324383|2 +465372|39001324400|2 +483404|39001324419|2 +619086|39001324421|2 +599526|39001324422|2 +619088|39001324423|2 +570494|39001324936|2 +689745|39001324939|2 +692712|39001324941|2 +752495|39001324950|2 +764008|39001324953|2 +778446|39001324955|2 +900568|39001324959|2 +873827|39001325306|2 +573499|39001326280|2 +577411|39001326281|2 +580103|39001326282|2 +605149|39001326292|2 +655981|39001326295|2 +678171|39001326339|2 +707268|39001326342|2 +867563|39001326506|2 +870759|39001326510|2 +905129|39001326567|2 +534561|39001326594|2 +589765|39001326612|2 +628863|39001327342|2 +928438|39001327351|2 +1105972|39001327437|2 +966236|39001327527|2 +1013000|39001327556|2 +627247|39001327562|2 +464346|39001327794|2 +470664|39001327796|2 +477711|39001327800|2 +521605|39001327810|2 +733712|39001327836|2 +535571|39001327872|2 +535997|39001327873|2 +558084|39001327916|2 +878488|39001327943|2 +615348|39001327952|2 +627167|39001327962|2 +627732|39001327963|2 +631406|39001327967|2 +648602|39001327968|2 +670819|39001327969|2 +672690|39001327970|2 +684376|39001327971|2 +694126|39001327973|2 +702090|39001327974|2 +704405|39001327975|2 +729810|39001327977|2 +733755|39001327979|2 +744312|39001327982|2 +773623|39001327983|2 +800935|39001327987|2 +841218|39001327988|2 +508672|39001328441|2 +509497|39001328443|2 +551914|39001328446|2 +611895|39001328449|2 +636109|39001328450|2 +667792|39001328451|2 +723800|39001328452|2 +754776|39001328454|2 +786531|39001328455|2 +841701|39001328495|2 +844855|39001328496|2 +846231|39001328497|2 +864205|39001328498|2 +542885|39001328838|2 +607869|39001328842|2 +801852|39001328856|2 +872573|39001328861|2 +680834|39001328871|2 +687924|39001328886|2 +758571|39001328892|2 +859247|39001328908|2 +462147|39001328921|2 +865998|39001328932|2 +879336|39001329091|2 +864189|39001329234|2 +900607|39001329252|2 +452611|39001330293|2 +455664|39001330301|2 +465876|39001330302|2 +888184|39001330310|2 +641367|39001330403|2 +615395|39001330421|2 +622481|39001330433|2 +646591|39001330434|4 +973531|39001330558|2 +686833|39001330581|2 +732538|39001330584|2 +683016|39001330647|2 +703766|39001330676|2 +703828|39001330697|2 +650359|39001330829|2 +515781|39001331100|2 +515782|39001331101|2 +534809|39001331159|2 +585436|39001331160|2 +594954|39001331162|2 +801917|39001331234|2 +835145|39001331242|4 +854917|39001331377|2 +786192|39001331459|2 +1262887|39001331482|2 +452425|39001331484|2 +459927|39001331485|2 +487657|39001331486|2 +492887|39001331487|2 +498769|39001331488|2 +514808|39001331490|2 +538035|39001331492|2 +569445|39001331495|2 +574546|39001331496|2 +608257|39001331498|2 +610757|39001331499|2 +654474|39001331570|2 +690134|39001331579|2 +693704|39001331580|2 +703862|39001331583|2 +711571|39001331584|2 +712066|39001331586|2 +712740|39001331587|2 +733405|39001331589|2 +739166|39001331590|2 +760201|39001331602|2 +766698|39001331603|2 +792450|39001331606|2 +802977|39001331607|2 +809389|39001331608|2 +832210|39001331730|4 +851097|39001331745|2 +859533|39001331753|2 +859532|39001331756|2 +879122|39001331769|2 +470684|39001332065|2 +696894|39001332072|2 +991581|39001332098|2 +1114574|39001332252|2 +662624|39001332324|2 +754663|39001332340|2 +871593|39001332418|2 +891747|39001332419|2 +651644|39001332439|4 +788521|39001332445|2 +503266|39001332493|2 +481950|39001332877|2 +509574|39001332882|2 +652348|39001332884|2 +784375|39001332885|2 +806700|39001332886|2 +837938|39001332888|4 +841477|39001332889|2 +794983|39001333001|2 +702649|39001333048|2 +752159|39001333053|2 +598321|39001333073|2 +654290|39001333075|2 +666145|39001333331|2 +788327|39001333431|2 +983831|39001333444|2 +891675|39001333449|2 +598225|39001333452|2 +683273|39001333454|4 +751830|39001333630|2 +808114|39001333693|2 +829275|39001333696|4 +855177|39001333699|2 +856587|39001333772|2 +707387|39001333988|2 +600490|39001334155|2 +867143|39001334160|2 +481660|39001334301|2 +713182|39001334305|2 +656954|39001334402|2 +746317|39001334406|2 +1021368|39001334410|2 +561986|39001334567|2 +570761|39001334569|2 +606973|39001334578|2 +610671|39001334708|2 +678916|39001334713|2 +849619|39001334730|2 +457582|39001334801|2 +690513|39001334805|2 +467221|39001334879|2 +844969|39001334883|2 +585230|39001335007|2 +602726|39001335076|2 +500410|39001335135|2 +879582|39001335193|2 +477672|39001335212|2 +643444|39001335220|2 +891843|39001335222|2 +1047468|39001335224|2 +583918|39001335260|2 +835874|39001335264|4 +534602|39001335460|2 +741195|39001335464|2 +617643|39001335490|2 +710390|39001335491|2 +791141|39001335494|2 +826394|39001335495|4 +800432|39001335923|2 +521234|39001336094|2 +873621|39001336415|2 +754304|39001336689|2 +473364|39001336706|2 +486814|39001336863|2 +681988|39001336869|2 +699225|39001336885|2 +734963|39001336971|2 +490786|39001336977|2 +706991|39001337003|2 +508960|39001337117|2 +661563|39001337126|2 +864319|39001337131|2 +829050|39001337229|4 +475075|39001337255|2 +627248|39001337348|2 +844108|39001337465|2 +608122|39001337507|2 +880340|39001337509|2 +547493|39001337692|2 +623037|39001337693|2 +704237|39001337694|2 +560343|39001337829|2 +788702|39001338023|2 +551068|39001338070|2 +455690|39001338079|2 +490157|39001338179|2 +672100|39001338180|2 +759801|39001338188|2 +789422|39001338189|2 +888693|39001338190|2 +487484|39001338258|2 +754929|39001338259|2 +590988|39001338323|2 +613733|39001338326|2 +676962|39001338330|2 +494911|39001338434|2 +501571|39001338440|2 +792295|39001338504|2 +885313|39001338595|2 +752654|39001338853|2 +832292|39001338908|4 +485898|39001338924|2 +703567|39001338970|2 +496716|39001339000|2 +514416|39001339002|2 +468711|39001339093|2 +751095|39001339186|2 +773390|39001339187|2 +832156|39001339202|4 +891136|39001339208|4 +800528|39001339280|2 +455777|39001339720|2 +901511|39001339850|2 +643498|39001339887|2 +900653|39001339899|2 +876420|39001340162|2 +891025|39001340163|4 +895930|39001340164|2 +546279|39001340385|2 +641546|39001340387|2 +661562|39001340388|2 +859135|39001340390|2 +732783|39001340474|2 +768679|39001340476|2 +674086|39001340711|2 +766630|39001340712|2 +855179|39001340784|2 +474356|39001340807|2 +481947|39001340809|2 +840188|39001340813|4 +692510|39001340814|2 +468703|39001340824|2 +706302|39001340826|2 +763491|39001340836|2 +543085|39001340999|2 +551222|39001341000|2 +654497|39001341002|2 +476647|39001341216|2 +510801|39001341217|2 +517472|39001341218|2 +678170|39001341220|2 +535990|39001341337|2 +546647|39001341339|2 +758309|39001341342|2 +1221073|39001341381|2 +713281|39001341449|2 +900382|39001341450|2 +885984|39001341453|2 +606528|39001341491|2 +600115|39001341579|2 +711652|39001341826|2 +520052|39001341991|2 +583094|39001341994|2 +733372|39001342002|2 +738696|39001342005|2 +695957|39001342013|2 +584416|39001342174|2 +517143|39001342653|2 +542651|39001342657|2 +672340|39001342658|2 +900730|39001342749|2 +584913|39001342869|2 +655129|39001342871|2 +1221072|39001342968|2 +466642|39001343032|2 +891668|39001343035|2 +465824|39001343119|2 +639873|39001343236|2 +518133|39001343379|2 +611375|39001343424|2 +518113|39001343606|2 +599920|39001343612|2 +475490|39001343715|2 +741844|39001343758|2 +598335|39001343772|2 +724237|39001343874|2 +751291|39001343931|4 +764488|39001343936|2 +689168|39001344082|2 +826093|39001344085|4 +557559|39001344092|2 +559122|39001344100|2 +765793|39001344110|2 +622377|39001344233|2 +647910|39001344413|2 +697567|39001344425|2 +492439|39001344507|2 +660550|39001344555|2 +525754|39001344682|2 +731006|39001345097|2 +465660|39001345205|2 +851089|39001345287|2 +876447|39001345298|2 +850730|39001345538|2 +568087|39001345609|2 +876433|39001346101|2 +663738|39001347095|2 +636516|39001347124|2 +900561|39001347126|2 +527968|39001347605|2 +468211|39001347787|2 +477073|39001347788|2 +514426|39001347793|2 +521851|39001347795|2 +585532|39001347798|2 +594359|39001347799|2 +601055|39001347802|2 +631479|39001347850|2 +677418|39001347851|2 +692051|39001347852|2 +709189|39001347853|2 +709689|39001347854|2 +709690|39001347855|2 +718172|39001347856|2 +728690|39001347859|2 +744067|39001347861|2 +755719|39001347862|2 +767073|39001347863|2 +805318|39001347878|2 +796552|39001347885|2 +808112|39001347886|2 +856515|39001347887|2 +866263|39001347888|2 +874320|39001347889|2 +874305|39001347890|2 +681794|39001347995|2 +672612|39001348230|2 +453332|39001348233|2 +806701|39001348234|2 +829635|39001348240|4 +863385|39001348245|2 +621482|39001348269|2 +482367|39001348273|2 +527518|39001348276|2 +579712|39001348277|2 +581624|39001348278|2 +634304|39001348302|2 +1204840|39001348304|2 +647619|39001348305|2 +651196|39001348307|2 +694925|39001348330|2 +527523|39001348331|2 +672064|39001348360|2 +734743|39001348380|2 +465766|39001348381|2 +810815|39001348408|4 +609979|39001348422|2 +765770|39001348424|2 +881573|39001348426|2 +837464|39001348429|6 +887744|39001348451|2 +621793|39001348705|4 +716068|39001348770|2 +682624|39001349409|2 +655985|39001349433|2 +711298|39001349639|2 +808027|39001349686|2 +859221|39001349692|2 +487496|39001349698|2 +482408|39001349703|2 +687358|39001350067|2 +829077|39001350071|4 +841062|39001350393|2 +541283|39001351178|2 +690380|39001351210|4 +532028|39001351216|2 +1129942|39001351223|2 +527341|39001351395|2 +630868|39001351397|2 +718175|39001351398|2 +778533|39001351399|2 +850304|39001351402|2 +607588|39001352637|2 +468724|39001352652|2 +581296|39001352656|2 +859161|39001353897|2 +720516|39001353903|2 +730328|39001353908|2 +687602|39001353918|2 +547500|39001353921|2 +582190|39001353924|2 +792502|39001353926|2 +580436|39001353932|2 +851087|39001353933|2 +829506|39001354634|4 +836286|39001354644|4 +836287|39001354646|4 +755789|39001354836|2 +484628|39001355048|2 +514128|39001355626|2 +547516|39001355627|2 +547390|39001355628|2 +590673|39001355635|2 +597113|39001355638|2 +698972|39001355651|2 +703741|39001355653|2 +707496|39001355655|2 +743571|39001355657|2 +765115|39001355666|2 +775539|39001355673|2 +789456|39001355679|2 +801058|39001355681|2 +807725|39001355866|2 +468238|39001357027|2 +489259|39001357220|2 +494641|39001357222|2 +547068|39001357237|2 +582763|39001357253|2 +605952|39001357257|2 +608972|39001357259|2 +640929|39001357272|2 +658009|39001357273|2 +667791|39001357275|2 +676226|39001357276|2 +687552|39001357278|2 +694709|39001357279|2 +781712|39001357281|2 +784439|39001357282|2 +834682|39001357285|4 +858026|39001357286|2 +865024|39001357288|2 +680056|39001357296|2 +989182|39001357433|2 +867965|39001357452|2 +833474|39001357454|4 +452433|39001357565|2 +463280|39001357577|2 +476817|39001357585|2 +619302|39001357594|2 +492550|39001357600|2 +501520|39001357622|2 +524083|39001357625|2 +577345|39001357727|2 +581299|39001357728|2 +482106|39001359313|2 +866229|39001359318|2 +462148|39001359763|2 +477931|39001359765|2 +493687|39001359795|2 +496997|39001359796|2 +509816|39001359800|2 +509818|39001359803|2 +511594|39001359805|2 +524197|39001359813|2 +543144|39001359818|2 +588272|39001359855|2 +600083|39001359857|2 +605599|39001359859|2 +607521|39001359860|2 +613734|39001359862|2 +614871|39001359864|2 +616253|39001359865|2 +636464|39001359871|2 +527476|39001359898|2 +623651|39001359899|2 +803740|39001359918|2 +803741|39001359920|2 +886928|39001359922|2 +900648|39001359924|2 +878243|39001359935|2 +759414|39001359947|2 +511570|39001359953|2 +460708|39001359966|2 +606918|39001359974|2 +752531|39001359978|2 +789798|39001359982|2 +624922|39001360025|2 +594607|39001360411|2 +452741|39001360414|2 +639881|39001360420|2 +647627|39001360425|2 +649101|39001360431|2 +653334|39001360432|2 +660830|39001360436|2 +662393|39001360437|2 +662787|39001360439|2 +678689|39001360444|2 +691432|39001360463|2 +699842|39001360465|2 +709009|39001360466|2 +711213|39001360478|2 +718733|39001360484|2 +720458|39001360485|2 +743909|39001360531|2 +756598|39001360544|2 +758996|39001360545|2 +761723|39001360558|2 +766754|39001360564|2 +789503|39001360591|2 +791187|39001360598|2 +798961|39001360601|4 +804456|39001360606|2 +808170|39001360614|2 +826021|39001360615|4 +836473|39001360617|4 +854598|39001360643|2 +856676|39001360659|2 +862237|39001360667|2 +873009|39001360731|2 +895088|39001360747|2 +453242|39001360776|2 +978173|39001360821|2 +758723|39001360913|2 +1017932|39001360915|2 +848070|39001360948|2 +607586|39001361098|2 +801997|39001361101|2 +833475|39001361105|4 +832918|39001361106|4 +850058|39001361108|2 +886211|39001361112|2 +1234541|39001361237|2 +1268780|39001361249|2 +463318|39001361433|2 +481739|39001361435|2 +528607|39001361437|2 +562612|39001361439|2 +615235|39001361574|2 +630331|39001361576|2 +470718|39001361606|2 +654819|39001361701|2 +665399|39001361702|2 +779804|39001361705|2 +866411|39001361708|2 +455531|39001361892|2 +593369|39001361894|2 +835272|39001362035|4 +473030|39001362042|2 +628925|39001362096|2 +803329|39001362138|2 +866979|39001362146|2 +465811|39001362290|2 +752200|39001362295|2 +787982|39001362296|2 +808877|39001362297|2 +686844|39001362301|2 +690765|39001362302|2 +789783|39001362558|2 +713301|39001362681|2 +567512|39001362830|2 +653977|39001362835|2 +802011|39001362896|2 +553316|39001362996|2 +863118|39001363493|2 +461065|39001363534|2 +466540|39001363537|4 +522803|39001363547|2 +551913|39001363555|2 +651376|39001363561|2 +557336|39001363564|2 +822123|39001363578|2 +526689|39001363715|2 +634308|39001363719|2 +527445|39001363722|2 +596866|39001363725|2 +746213|39001363742|2 +793717|39001363749|2 +806975|39001363751|2 +868022|39001363762|2 +901540|39001363826|2 +1021350|39001363828|2 +463020|39001364013|2 +834262|39001364014|8 +534638|39001364264|2 +592700|39001364316|2 +655673|39001364318|2 +863894|39001364329|2 +1177329|39001364340|2 +473250|39001364436|2 +456372|39001364473|2 +787856|39001364477|2 +1128075|39001364483|2 +460801|39001364547|2 +454090|39001364856|2 +451880|39001364922|2 +514159|39001364924|4 +655502|39001364927|2 +711272|39001364928|2 +741526|39001364941|2 +884245|39001364951|2 +481961|39001365437|2 +654302|39001365440|2 +733162|39001365491|2 +787897|39001365492|2 +792084|39001365493|2 +586878|39001365525|2 +655249|39001365526|2 +656450|39001365527|2 +710822|39001365528|2 +460726|39001365926|2 +733322|39001365932|2 +527642|39001365945|2 +663649|39001365948|2 +671582|39001365998|2 +783693|39001366025|2 +866278|39001366032|2 +456272|39001366131|2 +711344|39001366148|2 +610813|39001366207|2 +682625|39001366459|2 +899838|39001366497|2 +458589|39001366500|2 +465489|39001366508|2 +546715|39001366530|2 +619414|39001366534|2 +620363|39001366535|2 +662186|39001366543|2 +703545|39001366662|2 +738945|39001366669|2 +751229|39001366670|2 +776734|39001366676|2 +832427|39001366679|4 +839868|39001366694|4 +673028|39001366908|2 +888452|39001367042|2 +1166671|39001367131|2 +455930|39001367291|2 +468250|39001367346|2 +504989|39001367357|2 +641558|39001367371|2 +609086|39001367377|2 +702168|39001367401|2 +492447|39001367476|2 +1218145|39001367485|2 +461300|39001367588|2 +487013|39001367590|2 +742889|39001367605|2 +526786|39001367691|2 +803547|39001367862|2 +534546|39001367908|2 +557493|39001367912|2 +623180|39001367913|2 +826426|39001367915|4 +873662|39001367916|2 +888169|39001367917|2 +831716|39001368046|4 +789662|39001368191|2 +568595|39001368444|2 +595694|39001368445|2 +600112|39001368453|2 +676655|39001368456|2 +504541|39001368467|2 +652474|39001368472|2 +722043|39001368507|2 +745245|39001368515|2 +746384|39001368518|2 +867762|39001368554|2 +453921|39001368609|2 +870311|39001368618|2 +549735|39001368682|2 +871785|39001368683|2 +882882|39001368686|2 +647730|39001368844|2 +675225|39001368964|2 +888904|39001369045|2 +885017|39001369139|2 +776985|39001369224|2 +789714|39001369226|2 +831284|39001369402|4 +687079|39001369529|2 +665943|39001369619|2 +665946|39001369621|2 +731634|39001369626|2 +840346|39001369631|4 +651466|39001369696|2 +470694|39001369699|2 +504410|39001369707|2 +527527|39001369710|2 +675166|39001369713|2 +540410|39001369721|2 +687145|39001369723|2 +579698|39001369726|2 +701650|39001369762|2 +926675|39001369791|2 +765590|39001369802|2 +788351|39001369815|2 +686437|39001369820|2 +600019|39001369864|2 +768892|39001369875|2 +508670|39001370069|2 +808876|39001370087|2 +756589|39001370152|2 +734685|39001370187|2 +703866|39001370677|2 +1017879|39001370682|2 +668443|39001370900|2 +758255|39001370901|2 +778432|39001370903|2 +779370|39001370905|2 +858106|39001370908|2 +864407|39001370911|2 +479126|39001371009|2 +827842|39001371015|4 +674161|39001371016|2 +710966|39001371017|2 +481467|39001371018|2 +582945|39001371519|2 +808087|39001371527|2 +461966|39001371641|2 +1062020|39001371842|2 +636696|39001371899|2 +675098|39001371923|2 +648052|39001372043|2 +688060|39001372091|2 +740921|39001372095|2 +521483|39001372131|2 +666869|39001372320|2 +697234|39001372324|2 +887578|39001372529|2 +674098|39001372583|2 +559159|39001372624|2 +599576|39001372627|2 +684771|39001372635|2 +709002|39001372636|2 +730322|39001372637|2 +799625|39001372653|2 +868104|39001372657|2 +683796|39001373107|2 +731428|39001373109|2 +636519|39001373181|2 +643409|39001373185|4 +792114|39001373273|2 +482206|39001373293|2 +499867|39001373339|2 +663618|39001373341|2 +662646|39001373350|2 +624449|39001373549|2 +643535|39001373667|2 +472477|39001373767|2 +695645|39001373768|2 +708690|39001373808|2 +872837|39001373815|2 +531665|39001373826|2 +710856|39001374000|2 +886961|39001374002|2 +505006|39001374127|2 +650487|39001374203|2 +754194|39001374205|2 +776474|39001374420|2 +468723|39001374561|2 +793714|39001374582|2 +877434|39001374703|2 +626109|39001375083|2 +499538|39001375217|2 +499497|39001375218|2 +698156|39001375232|2 +744774|39001375234|2 +560149|39001375551|2 +864222|39001375672|4 +529987|39001375763|2 +615009|39001375911|2 +674834|39001375914|2 +843068|39001375916|2 +714363|39001376141|2 +733717|39001376286|2 +623087|39001376319|2 +775175|39001376360|2 +526829|39001376570|2 +617921|39001376571|2 +621805|39001376572|2 +729837|39001376574|4 +751313|39001376575|2 +752664|39001376576|2 +764036|39001376577|2 +463740|39001376606|2 +503545|39001376607|2 +575083|39001376752|2 +744388|39001376848|2 +714533|39001376962|2 +777877|39001376967|2 +897044|39001377122|2 +774664|39001377215|2 +582934|39001377283|2 +603578|39001377285|2 +613614|39001377560|2 +613868|39001377561|2 +568865|39001377580|2 +886233|39001377639|2 +484586|39001377692|2 +703296|39001377700|2 +801286|39001377786|2 +502049|39001377843|2 +628966|39001377844|2 +697048|39001377927|2 +751314|39001377934|2 +494239|39001378099|2 +799006|39001378195|2 +898229|39001378204|2 +692053|39001378237|2 +517565|39001378453|2 +528508|39001378458|2 +672367|39001378459|2 +563101|39001378494|2 +495225|39001378576|2 +766550|39001378580|2 +779350|39001378658|2 +773542|39001378729|2 +750743|39001378731|2 +588126|39001378771|2 +689905|39001378780|2 +848113|39001378782|2 +571400|39001378825|2 +568902|39001378909|2 +836374|39001378919|4 +874307|39001379094|2 +472037|39001379295|2 +890526|39001379306|4 +880597|39001379526|2 +573720|39001379527|2 +581439|39001379528|2 +499258|39001379678|2 +556020|39001379682|2 +584425|39001379692|2 +587142|39001379696|2 +593375|39001379699|2 +678825|39001379727|2 +743562|39001379728|2 +589756|39001379818|2 +621417|39001379820|2 +640690|39001379836|2 +667615|39001379873|2 +893202|39001379877|2 +860812|39001380004|2 +461344|39001380073|2 +769578|39001380122|2 +522034|39001380226|2 +478595|39001380309|2 +553324|39001380311|2 +600128|39001380312|2 +866739|39001380319|2 +647861|39001380419|2 +535193|39001380545|2 +657310|39001380546|2 +762356|39001380548|2 +832211|39001380549|4 +827644|39001380573|4 +635085|39001380689|2 +464644|39001381007|2 +482329|39001381008|2 +482239|39001381183|2 +592907|39001381185|2 +625567|39001381189|2 +645752|39001381190|2 +749990|39001381209|2 +790413|39001381242|2 +468320|39001381532|2 +484456|39001381538|2 +682939|39001381717|2 +461499|39001381750|2 +479058|39001381759|2 +526807|39001381822|2 +894629|39001381825|2 +678847|39001381836|2 +635404|39001381894|2 +764233|39001381920|2 +898039|39001381976|2 +530559|39001381995|2 +798817|39001382030|2 +804917|39001382034|2 +553875|39001382152|2 +647924|39001382205|2 +501000|39001382398|2 +509491|39001382400|2 +625310|39001382507|2 +466944|39001382825|2 +517576|39001382841|2 +651083|39001382852|2 +458851|39001382961|2 +840499|39001382974|4 +499489|39001383260|2 +504590|39001383261|2 +526688|39001383360|2 +560086|39001383374|2 +636721|39001383380|2 +646498|39001383383|2 +829633|39001383455|4 +507883|39001383465|2 +731703|39001383469|2 +511749|39001383522|2 +728016|39001383523|2 +453254|39001383538|2 +553531|39001383546|2 +606718|39001383562|2 +628279|39001383564|2 +641480|39001383573|2 +690379|39001383641|4 +736146|39001383647|2 +886204|39001383651|2 +698111|39001383708|2 +502251|39001383979|2 +624086|39001383982|2 +689865|39001383987|2 +876114|39001383993|2 +732990|39001384031|2 +827638|39001384039|4 +837915|39001384117|4 +581348|39001384130|2 +452830|39001384139|2 +830199|39001384144|4 +893782|39001384169|2 +495814|39001384225|2 +599538|39001384240|2 +547467|39001384241|2 +875733|39001384244|2 +634302|39001384246|2 +687141|39001384258|2 +692877|39001384280|2 +751923|39001384319|2 +827336|39001384320|4 +886864|39001384324|2 +491931|39001384399|2 +650371|39001384412|2 +883781|39001384413|2 +615285|39001384513|2 +651375|39001384647|2 +480483|39001384696|2 +643225|39001384700|2 +749992|39001384703|2 +857963|39001384806|2 +766855|39001384891|2 +498873|39001384919|2 +752096|39001384925|2 +789806|39001384932|2 +844657|39001384937|2 +680617|39001384980|2 +1017574|39001385050|2 +512360|39001385318|4 +591567|39001385319|2 +721616|39001385403|2 +568848|39001385459|2 +508359|39001385461|2 +608926|39001385465|2 +689904|39001385468|2 +752571|39001385473|2 +758884|39001385518|2 +832261|39001385566|4 +703504|39001385600|2 +619742|39001385625|2 +630933|39001385629|2 +889212|39001385760|2 +572333|39001385794|2 +633555|39001386108|2 +655978|39001386260|2 +559184|39001386407|2 +684898|39001386409|2 +746731|39001386411|2 +567941|39001386529|4 +835575|39001386598|2 +613466|39001386613|2 +598409|39001386729|2 +597362|39001386747|2 +625858|39001386820|2 +651085|39001386824|2 +762541|39001386883|2 +765468|39001386884|2 +635358|39001387074|2 +793215|39001387081|2 +769587|39001387192|2 +590662|39001387260|2 +560143|39001387408|2 +600036|39001387611|2 +642981|39001387614|2 +673160|39001387616|2 +687616|39001387617|2 +752118|39001387619|4 +828004|39001387714|4 +661567|39001387847|2 +749480|39001388065|2 +456738|39001388069|2 +730406|39001388179|2 +610789|39001388207|2 +632000|39001388211|2 +643496|39001388222|2 +689024|39001388224|2 +752348|39001388228|2 +780841|39001388233|2 +874449|39001388248|2 +742289|39001388292|2 +517998|39001388436|2 +641481|39001388447|2 +701697|39001388448|2 +517357|39001388539|2 +686968|39001388542|2 +552789|39001388595|2 +711806|39001388600|2 +510354|39001388680|2 +815263|39001388700|2 +585628|39001388717|2 +585773|39001388846|2 +510112|39001388848|2 +761290|39001388851|2 +873096|39001388853|2 +510153|39001388895|2 +789397|39001388907|2 +552998|39001389071|2 +460712|39001389103|2 +558345|39001389104|2 +465312|39001389176|2 +886930|39001389225|2 +832241|39001389271|4 +558765|39001389414|2 +459873|39001389457|2 +672018|39001389458|2 +740081|39001389460|2 +867759|39001389462|2 +475557|39001389526|2 +735791|39001389551|2 +623191|39001389555|2 +713283|39001389557|2 +754046|39001389559|2 +669144|39001389644|2 +517381|39001389649|2 +721893|39001389658|2 +743711|39001389732|2 +536743|39001389757|2 +536735|39001389758|2 +527950|39001390004|2 +550770|39001390114|2 +801993|39001390166|2 +900507|39001390168|2 +657546|39001390226|2 +874023|39001390438|2 +873193|39001390502|2 +522470|39001390524|2 +596506|39001390525|2 +660343|39001390528|4 +755769|39001390530|2 +856322|39001390618|2 +627756|39001390753|2 +643461|39001390754|2 +532990|39001390801|2 +582797|39001390841|2 +790815|39001390842|2 +857896|39001390843|2 +695599|39001390944|2 +477653|39001390991|2 +604263|39001391012|2 +618540|39001391040|2 +677226|39001391264|2 +685128|39001391276|2 +668317|39001391371|2 +830822|39001391384|4 +1106246|39001391400|2 +692529|39001391491|2 +730219|39001391499|2 +732522|39001391507|2 +870459|39001391573|2 +749785|39001391635|2 +759924|39001391636|2 +900731|39001391648|2 +654231|39001391778|2 +799585|39001391858|2 +864840|39001391859|2 +850052|39001391874|2 +522733|39001392068|2 +682771|39001392221|2 +791495|39001392257|2 +572848|39001392259|2 +567226|39001392306|2 +675264|39001392307|2 +767076|39001392308|2 +737456|39001392349|2 +555698|39001392443|2 +557229|39001392445|2 +858371|39001392535|2 +499294|39001393131|2 +514719|39001393141|2 +613986|39001393143|2 +576353|39001393164|2 +588500|39001393170|2 +613587|39001393173|2 +622313|39001393179|2 +703870|39001393181|2 +633370|39001393183|2 +674586|39001393196|2 +692394|39001393204|2 +651195|39001393209|2 +674712|39001393211|2 +831497|39001393217|4 +827311|39001393221|4 +861675|39001393223|2 +865629|39001393225|2 +874341|39001393234|2 +674119|39001393360|2 +894187|39001393361|2 +563000|39001393550|2 +799494|39001393551|2 +557298|39001393579|2 +574998|39001393580|2 +577194|39001393583|2 +596194|39001393588|2 +609001|39001393594|2 +655238|39001393600|2 +682978|39001393602|2 +881485|39001393619|2 +900732|39001393623|2 +900647|39001393626|2 +900987|39001393633|2 +569420|39001393641|2 +512398|39001393796|2 +744969|39001393803|2 +751385|39001393806|2 +859932|39001393845|2 +569105|39001393993|2 +1097758|39001394032|2 +477882|39001394193|2 +514429|39001394194|2 +591432|39001394197|2 +599801|39001394201|2 +621479|39001394203|2 +657150|39001394212|2 +880339|39001394458|2 +527418|39001394486|2 +527419|39001394490|2 +527364|39001394495|2 +621458|39001394519|2 +628365|39001394522|2 +465297|39001394573|2 +492567|39001394577|2 +674610|39001394582|2 +734405|39001394585|2 +901254|39001394697|2 +485840|39001394837|2 +777889|39001394857|2 +888385|39001394878|2 +866273|39001395084|2 +498102|39001395183|2 +528235|39001395185|2 +611242|39001395205|2 +762648|39001395223|2 +578882|39001395257|2 +502965|39001395538|2 +627985|39001395539|2 +862302|39001395743|2 +765350|39001395751|2 +492985|39001395807|2 +529174|39001395815|2 +590487|39001395818|2 +640934|39001395821|2 +716580|39001395841|2 +769232|39001395844|2 +769233|39001395845|2 +858025|39001395858|2 +877582|39001395859|4 +660205|39001396088|2 +1221045|39001396282|2 +478459|39001396410|2 +539519|39001396412|2 +614778|39001396416|2 +882209|39001396423|2 +896018|39001396426|2 +1265852|39001396443|2 +534403|39001396559|2 +870386|39001396576|2 +542907|39001396596|2 +499937|39001396643|2 +686697|39001396678|2 +522740|39001396689|2 +671852|39001396703|2 +501878|39001396752|2 +517388|39001396754|2 +686842|39001396755|2 +686837|39001396763|2 +457745|39001396842|2 +670499|39001396890|2 +784530|39001396905|2 +622232|39001397040|2 +577439|39001397052|2 +626928|39001397127|2 +878731|39001397138|2 +516894|39001397285|2 +516891|39001397286|2 +516893|39001397287|2 +648476|39001397299|2 +796900|39001397361|2 +526780|39001397520|2 +677368|39001397539|2 +690927|39001397588|2 +698796|39001397592|2 +527964|39001397665|2 +535636|39001397668|2 +615361|39001397679|2 +631929|39001397700|2 +738179|39001397701|2 +647201|39001397753|2 +830614|39001397826|4 +839024|39001397834|4 +869609|39001397835|2 +888813|39001397846|2 +590926|39001397908|2 +773183|39001398039|2 +881259|39001398055|2 +781474|39001398071|2 +551353|39001398320|2 +539516|39001398614|2 +672075|39001398629|2 +507148|39001398710|2 +510832|39001398881|2 +802497|39001398883|2 +629977|39001398895|2 +733709|39001398990|2 +525080|39001399085|2 +461063|39001399100|2 +866882|39001399110|2 +633404|39001399260|2 +655930|39001399266|2 +752676|39001399269|2 +900651|39001399271|2 +901653|39001399277|2 +461070|39001399302|2 +470229|39001399324|2 +900580|39001399332|2 +703912|39001399335|2 +481054|39001399757|2 +502870|39001399764|2 +510924|39001399770|2 +850759|39001399850|2 +587216|39001399893|2 +839023|39001399898|4 +766718|39001400413|2 +1098016|39001400460|2 +465502|39001400464|2 +548809|39001400466|2 +703878|39001400475|2 +464280|39001400527|2 +634266|39001400542|2 +643352|39001400565|2 +757298|39001400568|2 +655740|39001400579|2 +830749|39001400583|4 +859792|39001400600|2 +737465|39001400601|2 +900772|39001400638|2 +865977|39001400641|2 +583713|39001400679|2 +852498|39001400680|2 +731195|39001400681|2 +882190|39001400689|2 +641987|39001400691|2 +455675|39001400749|2 +465355|39001400754|2 +753051|39001400760|2 +655783|39001400766|2 +746234|39001400767|2 +739495|39001401965|2 +781229|39001401975|2 +460759|39001403277|2 +481898|39001403279|2 +495396|39001403300|2 +628837|39001403309|2 +620452|39001403310|2 +532548|39001403323|2 +536040|39001403324|2 +602178|39001403325|2 +615312|39001403326|2 +625426|39001403327|2 +630321|39001403328|2 +632638|39001403334|2 +635036|39001403335|2 +656953|39001403336|2 +672082|39001403337|2 +692567|39001403338|2 +707198|39001403339|2 +716006|39001403342|2 +742009|39001403347|2 +788736|39001403386|2 +828778|39001403389|4 +840526|39001403391|4 +859788|39001403398|2 +868577|39001403399|2 +888580|39001403401|2 +895680|39001403408|2 +900900|39001403409|2 +1021365|39001403442|2 +654872|39001403453|2 +482157|39001403584|2 +543135|39001403587|2 +549303|39001403589|2 +581460|39001403595|2 +637861|39001403611|2 +661872|39001403612|2 +745512|39001403623|2 +859180|39001403644|2 +881457|39001403646|2 +886831|39001403648|2 +528581|39001403651|2 +461351|39001403769|2 +510913|39001403776|2 +512474|39001403777|2 +524945|39001403787|2 +546528|39001403800|2 +622487|39001403823|2 +657556|39001403850|2 +673455|39001403851|2 +695840|39001403854|2 +702558|39001403859|2 +730186|39001403864|2 +826578|39001403869|4 +836180|39001403870|4 +876718|39001403955|2 +882521|39001403965|2 +1092622|39001404071|2 +654336|39001404212|2 +500052|39001404412|2 +869979|39001404432|2 +530571|39001404645|2 +757691|39001404651|2 +695110|39001404729|2 +879744|39001404788|2 +1117271|39001404790|2 +825275|39001404795|8 +582594|39001404864|2 +840656|39001404869|2 +451896|39001404989|2 +504330|39001405015|2 +504741|39001405019|2 +510134|39001405038|2 +527648|39001405045|2 +553491|39001405064|4 +586778|39001405103|2 +592685|39001405104|2 +609057|39001405116|2 +647614|39001405299|2 +662187|39001405310|2 +692061|39001405334|2 +719923|39001405344|2 +724981|39001405347|2 +741652|39001405360|2 +802016|39001405386|2 +827125|39001405391|4 +829501|39001405392|4 +847716|39001405398|2 +535720|39001405399|2 +840516|39001405418|4 +897166|39001405419|2 +875200|39001405498|2 +881522|39001405505|2 +893613|39001405525|2 +900579|39001405535|2 +901878|39001405537|2 +585918|39001406085|2 +797418|39001406090|2 +833756|39001406124|4 +614013|39001406216|2 +466744|39001406748|2 +528568|39001406749|2 +674337|39001406756|2 +676048|39001406758|2 +680242|39001406759|2 +695030|39001406839|2 +759219|39001406843|2 +768785|39001406844|4 +769297|39001406845|2 +844055|39001406850|2 +858024|39001406855|2 +871409|39001406857|2 +655264|39001406883|2 +476723|39001407359|2 +605552|39001407368|2 +685992|39001407370|2 +713964|39001407380|2 +840654|39001407526|2 +456265|39001407541|2 +524366|39001407549|2 +547462|39001407552|2 +560171|39001407555|2 +566686|39001407564|2 +589909|39001407569|2 +621751|39001407676|2 +642982|39001407681|2 +643200|39001407685|2 +652130|39001407687|2 +655739|39001407689|2 +655328|39001407700|2 +656032|39001407704|2 +703865|39001407733|2 +705103|39001407737|2 +708950|39001407739|2 +522687|39001407780|2 +672375|39001407781|2 +755481|39001407783|2 +721651|39001407863|2 +901611|39001407907|2 +751537|39001408009|2 +760009|39001408081|2 +609085|39001408083|2 +881574|39001408211|2 +881551|39001408214|2 +492863|39001408222|2 +895943|39001408264|2 +574547|39001408320|2 +461116|39001408349|2 +455782|39001408368|2 +861826|39001408434|2 +655966|39001408456|2 +788893|39001408485|4 +599936|39001408501|2 +1212304|39001408521|2 +522033|39001408533|2 +552462|39001408557|2 +845701|39001408625|2 +551786|39001408689|2 +665403|39001408705|2 +709577|39001408735|2 +718240|39001408753|2 +622766|39001408755|2 +687272|39001408758|2 +697124|39001408765|2 +674325|39001408858|2 +547862|39001408859|2 +860127|39001408861|2 +714877|39001408913|2 +562883|39001408920|2 +788103|39001408928|2 +752496|39001408941|2 +583712|39001408947|2 +620356|39001409033|2 +859177|39001409041|2 +468307|39001409042|2 +808090|39001409043|2 +864918|39001409053|2 +688127|39001409054|2 +572282|39001409074|2 +792029|39001409075|2 +527958|39001409082|4 +460941|39001409085|2 +460965|39001409086|2 +667723|39001409151|2 +650564|39001409255|2 +578146|39001409278|2 +667479|39001409279|2 +655126|39001409346|2 +470725|39001409358|2 +600049|39001409416|2 +568903|39001409429|2 +765738|39001409450|2 +826794|39001409451|4 +731695|39001409483|2 +470688|39001409502|2 +504360|39001409550|2 +501004|39001409553|2 +466851|39001409637|2 +480188|39001409662|2 +726442|39001409700|2 +532414|39001409753|2 +466164|39001409754|2 +676908|39001409755|2 +874319|39001409762|2 +636226|39001409780|2 +458472|39001409818|2 +732674|39001409892|2 +500893|39001409896|2 +829459|39001409914|4 +600080|39001409924|2 +831580|39001409925|4 +901058|39001409926|2 +655170|39001409931|2 +728664|39001409935|2 +510093|39001409946|2 +577409|39001409954|2 +648950|39001409966|2 +655955|39001409974|2 +527520|39001410072|2 +594755|39001410075|2 +560168|39001411489|2 +830747|39001411506|4 +599578|39001411542|2 +732589|39001411552|2 +805479|39001411555|2 +685135|39001411557|2 +468727|39001411648|2 +503872|39001411664|2 +498851|39001411755|2 +577882|39001411774|2 +644343|39001411787|2 +559186|39001411867|2 +581014|39001411868|2 +601958|39001411872|2 +847795|39001411882|2 +652731|39001411886|2 +676952|39001411901|2 +762222|39001411912|2 +681126|39001412126|2 +696392|39001412129|2 +829094|39001412135|4 +870022|39001412149|2 +901289|39001412187|2 +901584|39001412188|2 +1105464|39001412344|2 +759020|39001412350|2 +598488|39001412430|2 +668391|39001412505|2 +481499|39001412529|2 +559172|39001412534|2 +578855|39001412567|2 +801053|39001412572|2 +485409|39001412577|4 +553546|39001412594|2 +831198|39001412601|4 +567598|39001412605|2 +667724|39001412622|2 +848121|39001412683|2 +598042|39001412687|2 +770556|39001412705|2 +873546|39001412716|2 +873604|39001412717|2 +834248|39001412719|4 +502143|39001412724|2 +502107|39001412730|2 +669814|39001412752|2 +557237|39001412754|2 +577868|39001412756|2 +832431|39001412761|4 +557560|39001412830|2 +613838|39001412831|2 +891669|39001412837|2 +535299|39001412845|2 +623648|39001412846|2 +659239|39001412848|2 +816942|39001412849|4 +792043|39001412856|2 +754641|39001412868|2 +851095|39001412920|2 +601092|39001413003|2 +557997|39001413012|2 +885692|39001413038|2 +1076751|39001413065|2 +836846|39001413081|4 +881400|39001413101|2 +504535|39001413113|2 +571173|39001413121|2 +460779|39001413172|2 +552705|39001413194|2 +898368|39001413202|2 +624509|39001413205|2 +596120|39001413212|2 +775964|39001413273|2 +485575|39001413275|2 +865107|39001413294|2 +770200|39001413313|2 +699131|39001413318|2 +887795|39001413338|2 +788956|39001413356|2 +790816|39001413359|2 +855283|39001413381|2 +476732|39001413441|2 +889298|39001413475|2 +622249|39001413629|2 +508677|39001413776|2 +517554|39001413786|2 +523964|39001413792|2 +596631|39001413807|2 +675334|39001413866|2 +755725|39001413941|2 +653782|39001414288|2 +653805|39001414296|2 +658787|39001414334|2 +553002|39001414340|2 +487497|39001414453|2 +535237|39001414469|2 +625255|39001414488|2 +662890|39001414491|2 +694920|39001414498|2 +725593|39001414500|2 +752346|39001414504|2 +709960|39001414517|2 +480487|39001414523|2 +792184|39001414537|2 +832240|39001414538|4 +858411|39001414541|2 +873941|39001414544|2 +776379|39001414546|2 +849599|39001414562|2 +551909|39001414570|2 +788514|39001414573|2 +929245|39001414584|2 +522775|39001414943|2 +550474|39001415258|2 +768438|39001415327|2 +769813|39001415341|2 +647060|39001415350|2 +868386|39001415351|2 +459755|39001415355|2 +502374|39001415359|2 +502375|39001415364|2 +522231|39001415368|2 +536091|39001415371|2 +536092|39001415373|2 +564312|39001415378|2 +647061|39001415472|2 +896210|39001415475|2 +711690|39001415487|4 +734305|39001415499|2 +734347|39001415501|2 +750671|39001415510|2 +881527|39001415726|2 +849829|39001415748|2 +479124|39001415765|2 +524586|39001415789|2 +642880|39001416127|2 +660635|39001416345|2 +536037|39001416367|2 +478935|39001416377|2 +887387|39001416399|2 +853968|39001416403|2 +621804|39001416424|2 +730277|39001416530|2 +847369|39001416531|2 +707887|39001416545|2 +768551|39001416551|2 +792185|39001416634|2 +882143|39001416636|2 +793257|39001416674|2 +570423|39001416789|2 +479337|39001416791|2 +566261|39001416805|2 +530500|39001416811|2 +752643|39001417270|2 +478538|39001417272|2 +788324|39001417425|2 +465582|39001418576|2 +475086|39001418578|2 +480192|39001418581|2 +481496|39001418583|2 +482085|39001418585|2 +517572|39001418611|2 +605603|39001418633|2 +568594|39001418653|2 +490687|39001418654|2 +498091|39001418670|2 +498321|39001418672|2 +510947|39001418702|2 +539200|39001418707|2 +557546|39001418708|2 +560158|39001418709|2 +564891|39001418710|2 +490691|39001418733|2 +503049|39001418734|2 +545954|39001418742|2 +564930|39001418746|2 +580446|39001418747|2 +588353|39001418749|2 +616814|39001418761|2 +631478|39001418765|2 +636308|39001418770|2 +632436|39001418781|2 +634051|39001418786|2 +677296|39001418788|2 +715741|39001418791|2 +526904|39001418844|2 +464809|39001418847|2 +599938|39001418849|2 +600008|39001418851|2 +624903|39001418852|2 +630590|39001418853|2 +673884|39001418854|2 +692062|39001418857|2 +744085|39001418860|2 +774649|39001418862|2 +799514|39001418863|2 +895091|39001418865|2 +662227|39001419037|2 +672266|39001419050|2 +707330|39001419316|2 +710866|39001419319|2 +460597|39001419345|2 +465854|39001419362|2 +742846|39001419365|2 +471821|39001419368|2 +752554|39001419386|2 +757391|39001419391|2 +478792|39001419423|2 +757746|39001419426|2 +761570|39001419427|2 +505709|39001419429|2 +772943|39001419430|2 +773717|39001419432|2 +489175|39001419494|2 +776527|39001419495|2 +779817|39001419497|2 +566553|39001419601|2 +791597|39001419603|2 +729587|39001419634|2 +730218|39001419635|2 +736603|39001419649|2 +737130|39001419652|2 +850708|39001419686|2 +865020|39001419707|2 +603747|39001419778|2 +782182|39001419784|2 +807095|39001419790|2 +829073|39001419793|4 +832552|39001419795|4 +843640|39001419881|2 +849604|39001419892|2 +853705|39001419893|2 +853971|39001419896|2 +860895|39001419904|2 +865965|39001420011|2 +867388|39001420015|2 +869275|39001420017|2 +870323|39001420020|2 +876762|39001420042|2 +894027|39001420065|2 +475943|39001420130|2 +650363|39001420337|2 +570641|39001421965|2 +577896|39001422972|2 +579584|39001422986|2 +754220|39001423026|2 +762125|39001423037|2 +764731|39001423041|2 +776264|39001423073|2 +928956|39001423249|2 +803898|39001423259|2 +506500|39001423268|2 +721715|39001423360|2 +749514|39001423376|2 +750303|39001423379|2 +751369|39001423381|2 +752660|39001423382|2 +881860|39001423492|2 +882450|39001423559|2 +884216|39001423567|2 +629299|39001423580|2 +633441|39001423586|4 +638504|39001423588|2 +639059|39001423595|2 +477266|39001423678|2 +483887|39001423685|2 +504929|39001423704|2 +598378|39001423770|2 +601086|39001423775|2 +615236|39001423786|2 +615231|39001423819|2 +663710|39001424080|2 +669193|39001424093|2 +670566|39001424094|2 +676219|39001424208|2 +683268|39001424222|2 +684961|39001424226|2 +688902|39001424252|2 +732523|39001424267|2 +752957|39001424270|2 +782709|39001424272|2 +788515|39001424280|2 +803391|39001424288|2 +833214|39001424345|2 +868408|39001424362|2 +869054|39001424377|2 +873098|39001424394|2 +768410|39001424417|2 +859540|39001424468|2 +770558|39001424774|2 +612408|39001425717|2 +875377|39001425750|2 +477287|39001426068|2 +468894|39001426314|2 +693543|39001426401|2 +461514|39001426739|2 +732531|39001426768|2 +553092|39001426823|2 +625279|39001426884|2 +507648|39001426942|2 +531153|39001426948|2 +547444|39001426949|2 +622390|39001426952|2 +681975|39001426957|2 +677531|39001426965|2 +866220|39001426970|2 +894042|39001426979|2 +560154|39001426990|2 +577166|39001427405|2 +894014|39001427449|2 +475072|39001427455|2 +466371|39001427582|2 +475493|39001427592|2 +476762|39001427612|2 +482394|39001427614|2 +515604|39001427630|2 +517499|39001427632|2 +527666|39001427641|2 +534333|39001427658|4 +551141|39001427682|2 +583835|39001427697|2 +585527|39001427702|2 +585784|39001427738|2 +588866|39001427740|2 +589214|39001427743|2 +593804|39001427745|2 +652148|39001427886|2 +701545|39001427896|4 +743817|39001427921|2 +745238|39001427932|2 +747639|39001427933|2 +751147|39001427936|2 +770330|39001427960|2 +788200|39001427972|2 +807355|39001428010|2 +827710|39001428016|4 +845724|39001428040|2 +846069|39001428049|2 +851381|39001428055|2 +854001|39001428067|2 +705862|39001428772|2 +710673|39001428859|2 +794107|39001428861|2 +512044|39001428892|2 +622262|39001428896|2 +512273|39001428900|2 +746221|39001428901|2 +498259|39001428902|2 +1212305|39001429021|2 +476564|39001429782|2 +564381|39001429783|2 +470716|39001429789|2 +474910|39001429809|2 +845970|39001429815|2 +582767|39001429889|2 +599643|39001429930|2 +504719|39001429975|2 +474953|39001429982|2 +771479|39001432469|2 +980737|39001432471|2 +538335|39001432473|2 +837936|39001432478|4 +527963|39001432482|2 +672170|39001432483|2 +689635|39001432484|2 +470722|39001432829|2 +470710|39001432830|2 +866945|39001432865|2 +711957|39001432897|2 +836445|39001432928|8 +562890|39001432937|2 +796901|39001432966|2 +461599|39001433010|2 +461600|39001433011|2 +799621|39001433012|2 +840798|39001433038|2 +506552|39001433056|2 +876121|39001433097|2 +850571|39001433165|2 +884018|39001433208|2 +512010|39001433231|2 +703165|39001433267|2 +721206|39001433382|2 +482387|39001433415|2 +572771|39001433452|2 +620609|39001433513|2 +791366|39001433526|2 +721189|39001433547|2 +865668|39001433554|2 +832355|39001433569|4 +849273|39001433584|2 +579989|39001433672|2 +641701|39001434206|2 +489900|39001434238|2 +902325|39001434427|2 +650510|39001434433|2 +790189|39001434435|2 +485182|39001434437|2 +485781|39001437324|2 +504356|39001437329|2 +749917|39001437486|2 +829693|39001437490|4 +789804|39001437492|2 +462790|39001437493|2 +464808|39001437497|2 +465620|39001437535|2 +465815|39001437537|2 +591979|39001437540|2 +630940|39001437549|2 +486889|39001437595|2 +488691|39001437606|2 +500282|39001437625|2 +783432|39001437881|2 +802631|39001437911|2 +859542|39001437946|2 +477941|39001438076|2 +459179|39001438086|2 +529684|39001438091|2 +547888|39001438147|2 +574413|39001438166|2 +616161|39001438206|2 +641306|39001438208|2 +657547|39001438228|2 +698415|39001438256|2 +725523|39001438261|2 +692300|39001438271|2 +468895|39001438393|2 +641959|39001438394|2 +778049|39001438407|2 +798785|39001438408|2 +454926|39001438450|2 +508573|39001438455|2 +512216|39001438463|2 +517919|39001438466|2 +518084|39001438468|2 +518308|39001438469|2 +522450|39001438477|2 +522978|39001438478|2 +527275|39001438480|2 +527532|39001438481|2 +534731|39001438495|2 +550638|39001438510|2 +560160|39001438516|2 +568526|39001438588|2 +572576|39001438590|2 +576001|39001438606|2 +614545|39001438664|2 +614766|39001438665|2 +615383|39001438666|2 +494547|39001438715|2 +546993|39001438722|2 +627741|39001438729|2 +840527|39001438755|4 +780055|39001438777|2 +789323|39001438782|2 +798488|39001438788|2 +762437|39001438819|2 +775597|39001438852|2 +755491|39001438916|2 +758549|39001438919|2 +764471|39001438923|2 +796899|39001438959|2 +841134|39001438988|2 +849595|39001438989|2 +850719|39001438990|2 +630132|39001439204|2 +633956|39001439209|2 +639351|39001439212|2 +640778|39001439213|2 +644341|39001439215|2 +645958|39001439216|2 +649837|39001439243|2 +649820|39001439244|2 +652694|39001439274|2 +654241|39001439275|2 +654254|39001439277|2 +660631|39001439312|2 +457356|39001440203|2 +480129|39001440206|2 +505536|39001440218|2 +516687|39001440219|2 +564099|39001440269|2 +574967|39001440271|2 +615262|39001440273|2 +615323|39001440275|2 +625524|39001440278|2 +637460|39001440279|2 +664998|39001440301|4 +674611|39001440302|2 +685239|39001440304|2 +856512|39001440433|2 +872331|39001440445|2 +879938|39001440452|2 +882500|39001440457|2 +579980|39001440479|2 +694411|39001440482|2 +716396|39001440486|2 +721696|39001440487|2 +743730|39001440489|2 +751648|39001440491|2 +754827|39001440492|2 +464810|39001440569|2 +764567|39001440571|2 +804271|39001440572|2 +805284|39001440573|2 +830728|39001440575|4 +849603|39001440583|2 +856552|39001440588|2 +641126|39001440589|2 +868452|39001440593|2 +869996|39001440594|2 +870510|39001440595|2 +755606|39001440631|2 +755561|39001440632|2 +871775|39001440642|2 +880343|39001440655|2 +896198|39001440657|2 +896197|39001440658|2 +897162|39001440659|2 +889668|39001440681|2 +489841|39001440720|2 +489939|39001440721|2 +859541|39001440725|2 +718333|39001440805|2 +498602|39001440895|2 +692467|39001440902|2 +467297|39001441083|2 +766377|39001441085|2 +670125|39001441135|2 +684452|39001441153|2 +464812|39001441468|2 +548958|39001441469|2 +517885|39001441505|2 +557344|39001441812|2 +570410|39001441818|2 +685130|39001441834|2 +710155|39001441836|2 +731460|39001441838|2 +881902|39001441841|2 +886812|39001441862|2 +751432|39001441868|2 +858818|39001441873|2 +795741|39001441991|2 +494987|39001442005|2 +1097731|39001442033|2 +652421|39001442034|2 +592684|39001442078|2 +858557|39001442101|2 +667804|39001442208|2 +461064|39001442222|2 +589898|39001442223|2 +760227|39001442224|2 +488411|39001442457|2 +490954|39001442458|2 +654287|39001442474|2 +486809|39001442531|2 +462718|39001442680|2 +594215|39001442690|2 +630981|39001442692|2 +651255|39001442693|2 +730525|39001442695|2 +737960|39001442697|2 +827628|39001442784|4 +836800|39001442785|4 +701562|39001443128|2 +897155|39001443483|2 +639187|39001443661|2 +530221|39001443724|2 +1163162|39001443726|2 +487963|39001443842|2 +721641|39001443843|2 +490242|39001443906|2 +602770|39001443913|2 +791651|39001444254|2 +718062|39001444294|2 +1269447|39001444295|2 +657541|39001444430|2 +786633|39001444434|2 +852153|39001444462|2 +586627|39001444464|2 +769117|39001444468|4 +806681|39001444471|2 +830530|39001444472|4 +695770|39001444545|2 +712769|39001444546|2 +703285|39001444650|2 +869258|39001444654|2 +718584|39001444690|2 +889670|39001444691|2 +655984|39001444864|2 +586046|39001444871|2 +654959|39001444874|2 +714960|39001444877|2 +726022|39001444878|2 +776937|39001444879|2 +883097|39001444880|2 +899143|39001444899|2 +1128067|39001444906|2 +547216|39001444907|4 +642443|39001444908|2 +576104|39001444932|2 +625398|39001444939|2 +672207|39001444946|2 +863475|39001445075|2 +863528|39001445077|2 +613712|39001445156|2 +687487|39001445202|2 +577420|39001445327|2 +686949|39001445339|2 +675280|39001445391|2 +655996|39001445394|2 +1163163|39001445418|2 +771599|39001445426|2 +675054|39001445476|2 +865047|39001445493|2 +495261|39001445514|2 +488111|39001445586|2 +733478|39001445588|2 +801060|39001445600|4 +691010|39001445649|2 +634627|39001445693|2 +849596|39001445694|2 +715320|39001446077|4 +744379|39001446097|2 +502253|39001446261|2 +722137|39001446265|2 +628948|39001446454|2 +1095614|39001446660|2 +890656|39001446709|2 +893225|39001446768|2 +598360|39001446773|2 +696864|39001446775|2 +584381|39001446791|2 +480968|39001446793|2 +849601|39001446838|2 +535569|39001446842|2 +801892|39001446843|2 +849590|39001446898|2 +582281|39001447169|2 +856523|39001447171|2 +684055|39001447388|2 +826435|39001447389|4 +889368|39001447390|2 +572603|39001447549|2 +768568|39001447561|2 +488540|39001447573|2 +630179|39001447637|2 +721865|39001447757|2 +777991|39001447856|2 +600035|39001447947|2 +640908|39001448130|2 +473029|39001448208|2 +472718|39001448212|2 +512681|39001448214|2 +614059|39001448426|2 +622355|39001448514|2 +636507|39001448515|2 +477847|39001448745|2 +482288|39001448874|2 +637640|39001448875|2 +509965|39001449036|2 +453247|39001449137|2 +652377|39001449153|2 +735678|39001449155|2 +833712|39001449156|4 +498322|39001449239|2 +621423|39001449617|2 +595623|39001449652|2 +484323|39001449730|2 +828231|39001449774|4 +751522|39001449799|2 +805334|39001449828|2 +476559|39001449932|2 +746417|39001449933|2 +488502|39001449958|2 +532885|39001449959|2 +870830|39001450029|4 +870556|39001450084|2 +772651|39001450097|2 +746182|39001450171|2 +624130|39001450229|2 +636731|39001450232|2 +737502|39001450233|2 +709945|39001450344|2 +881821|39001450476|2 +787757|39001450552|2 +616956|39001450580|2 +627754|39001450581|2 +660825|39001450582|2 +509265|39001450691|4 +752509|39001450754|2 +581289|39001450806|2 +660625|39001450807|2 +461951|39001450895|4 +524736|39001450898|2 +698577|39001450901|2 +881191|39001450902|2 +532745|39001450958|2 +525103|39001451043|2 +525104|39001451044|2 +581235|39001451047|2 +833092|39001451148|4 +763277|39001451149|2 +647831|39001451199|2 +864781|39001451269|2 +465442|39001451346|2 +600641|39001451498|2 +870802|39001451499|2 +651173|39001451586|2 +526542|39001451618|2 +874510|39001451698|2 +726906|39001451703|2 +792231|39001451751|2 +867729|39001451755|2 +540975|39001451826|2 +555742|39001451827|2 +713036|39001451913|2 +779812|39001451915|4 +589971|39001452087|2 +712461|39001452178|2 +456917|39001452375|2 +689058|39001452376|2 +695775|39001452378|2 +660371|39001452398|2 +881521|39001452400|2 +643408|39001452407|4 +674404|39001452429|2 +796991|39001452437|2 +620447|39001452474|2 +572994|39001452520|2 +600072|39001452675|2 +528068|39001452716|2 +641570|39001452717|2 +567251|39001452761|2 +677405|39001452810|2 +863890|39001452869|2 +854453|39001452903|2 +557525|39001452904|2 +748887|39001452930|2 +527410|39001453034|2 +674390|39001453145|2 +674488|39001453150|2 +867278|39001453154|2 +679437|39001453241|2 +526709|39001453329|2 +586882|39001453414|2 +451948|39001453468|2 +569425|39001453469|2 +635498|39001453470|4 +568788|39001453544|2 +807041|39001453733|2 +620093|39001453933|2 +506121|39001454088|2 +614290|39001454089|2 +749085|39001454158|4 +840185|39001454159|4 +606892|39001454164|2 +490697|39001454951|2 +495510|39001454953|2 +881149|39001454957|2 +897977|39001454958|2 +475950|39001455297|2 +590462|39001455298|2 +652096|39001455302|2 +730040|39001455303|2 +857582|39001455307|2 +565465|39001456062|2 +453370|39001456067|2 +619276|39001456076|2 +735375|39001456128|2 +735596|39001456134|2 +776039|39001456136|2 +885428|39001456157|2 +1077637|39001456192|2 +771078|39001456364|2 +530072|39001456379|2 +696981|39001456380|2 +475444|39001456381|2 +462856|39001456385|2 +705105|39001456405|2 +643542|39001456409|2 +728121|39001456411|2 +624602|39001456446|2 +743671|39001456515|2 +621243|39001456577|2 +901623|39001456670|2 +453284|39001456690|2 +630457|39001457074|2 +792417|39001457088|2 +798046|39001457089|2 +864005|39001457102|2 +887148|39001457103|2 +488573|39001457165|2 +633480|39001457166|2 +1114538|39001457170|2 +875770|39001457217|2 +785743|39001457264|2 +789219|39001457292|2 +622335|39001457299|2 +460724|39001457325|2 +707764|39001457327|2 +537329|39001457383|2 +885532|39001457384|2 +885304|39001457418|2 +476947|39001457449|2 +657672|39001457583|2 +731106|39001457585|2 +514965|39001457845|2 +453960|39001457892|2 +475340|39001457991|2 +643543|39001458104|2 +856170|39001458105|2 +600021|39001458112|2 +691426|39001458114|2 +483888|39001458148|2 +578402|39001458153|2 +776166|39001458213|2 +895866|39001458214|2 +552986|39001458288|2 +554460|39001458450|2 +606263|39001458451|2 +647057|39001458454|2 +704675|39001458456|2 +712758|39001458457|2 +741130|39001458458|2 +847519|39001458460|2 +878098|39001458575|2 +619387|39001458578|2 +479496|39001458581|2 +751390|39001458583|2 +610691|39001458592|2 +777933|39001458593|2 +575315|39001458738|2 +523263|39001458865|2 +881096|39001458866|2 +593985|39001459008|2 +614052|39001459010|2 +633485|39001459012|2 +663397|39001459013|2 +456350|39001459075|2 +636724|39001459076|2 +592099|39001459118|2 +751343|39001459262|2 +686353|39001459409|2 +806158|39001459497|2 +665424|39001459580|2 +602057|39001459765|2 +524673|39001459766|2 +785895|39001459875|2 +651605|39001459893|2 +452417|39001459956|2 +526799|39001459957|2 +687992|39001459958|2 +827686|39001460106|4 +703855|39001460161|2 +829619|39001460170|4 +556097|39001460214|2 +606049|39001460380|2 +826332|39001460391|8 +648995|39001460640|2 +740941|39001460663|2 +768456|39001460835|2 +770524|39001460837|2 +515057|39001460897|2 +900841|39001460957|2 +560443|39001461009|2 +632977|39001461055|2 +648990|39001461060|2 +743596|39001461065|2 +858890|39001461066|2 +801787|39001461383|2 +492095|39001461385|2 +573170|39001461714|2 +494899|39001462045|2 +521911|39001462046|2 +522761|39001462047|2 +576731|39001462049|2 +588941|39001462051|2 +855310|39001462071|2 +696980|39001462074|2 +785483|39001462075|2 +796980|39001462076|2 +688271|39001462090|2 +703569|39001462094|2 +830575|39001462095|4 +492146|39001462125|2 +728017|39001462284|2 +845844|39001462288|2 +901577|39001462292|2 +1117272|39001462315|2 +465436|39001462486|2 +514519|39001462498|2 +744101|39001462505|2 +766381|39001462515|2 +859140|39001462516|2 +1253047|39001462533|2 +542764|39001462641|2 +653584|39001462643|2 +535396|39001462703|2 +581253|39001462704|2 +779165|39001462705|2 +473883|39001462738|2 +721605|39001462744|2 +581252|39001462772|2 +583065|39001462793|2 +622344|39001462806|2 +515514|39001462881|2 +521916|39001462882|2 +725492|39001462907|2 +788758|39001462910|2 +901466|39001462914|2 +487475|39001462998|2 +703223|39001463102|2 +800870|39001463173|2 +489769|39001463178|2 +762542|39001463181|2 +730183|39001463182|2 +600003|39001463205|2 +486267|39001463207|2 +827850|39001463208|4 +864406|39001463350|2 +575509|39001463351|2 +707035|39001463354|2 +701553|39001463357|2 +740807|39001463573|2 +606078|39001463583|2 +576215|39001463586|2 +732550|39001463592|2 +502131|39001463594|2 +464646|39001463603|2 +599695|39001463608|2 +712622|39001463771|2 +678615|39001463927|2 +781801|39001463928|2 +830190|39001463930|4 +804184|39001464029|2 +570899|39001464100|2 +852076|39001464118|2 +719064|39001464154|2 +751911|39001464251|2 +780903|39001464401|2 +676220|39001464849|2 +884355|39001464938|2 +568901|39001465056|2 +475569|39001465058|2 +1163982|39001465062|2 +792259|39001465063|2 +770489|39001465071|2 +457666|39001465154|2 +473885|39001465208|2 +897570|39001465509|2 +665269|39001465510|2 +676679|39001465545|2 +885644|39001465556|2 +1107043|39001465560|2 +511132|39001465734|2 +514243|39001465735|2 +553424|39001465736|2 +585456|39001465737|2 +636521|39001465739|2 +665263|39001465741|2 +895950|39001465745|2 +489225|39001465958|2 +620675|39001465961|2 +625598|39001465962|2 +746003|39001465965|2 +877999|39001465968|2 +573462|39001466100|2 +732374|39001466146|2 +553796|39001466271|2 +480158|39001466272|2 +478659|39001466334|2 +514247|39001466539|2 +754879|39001466610|2 +611241|39001466621|2 +1021367|39001466659|2 +672983|39001466697|2 +893313|39001466698|2 +755461|39001466712|2 +514117|39001466784|2 +540438|39001466786|4 +594899|39001466787|2 +620116|39001466897|2 +866717|39001466990|2 +872859|39001466991|2 +599524|39001467110|2 +587209|39001467115|2 +634021|39001467116|2 +634606|39001467117|2 +728311|39001467118|2 +504015|39001467187|2 +738435|39001467249|2 +711011|39001467283|2 +731655|39001467285|2 +477811|39001467377|2 +711809|39001467378|2 +719580|39001467430|2 +557021|39001467514|2 +901640|39001467516|2 +477288|39001467578|2 +790702|39001467686|2 +795428|39001467692|2 +826191|39001467797|6 +813865|39001467799|2 +845969|39001467805|2 +464607|39001467862|2 +600082|39001468019|2 +573444|39001468031|2 +869645|39001468043|2 +535212|39001468150|2 +660636|39001468212|2 +930631|39001468249|2 +677058|39001468350|2 +855680|39001468351|2 +592625|39001468354|2 +647059|39001468357|2 +680316|39001468441|2 +717668|39001468443|2 +636526|39001468665|2 +761833|39001468679|2 +539548|39001468718|2 +789222|39001468728|2 +546529|39001468744|2 +468875|39001468904|2 +609348|39001468905|2 +522850|39001468949|2 +674318|39001468955|2 +878015|39001469014|2 +461348|39001469106|2 +830420|39001469108|4 +718208|39001469195|2 +851873|39001469319|2 +720244|39001469320|2 +528272|39001469548|2 +498450|39001469562|2 +547247|39001469563|2 +742173|39001469575|2 +829454|39001469578|4 +862214|39001469579|2 +548297|39001469889|2 +604959|39001469892|2 +613292|39001469894|2 +699580|39001469899|2 +559918|39001469944|2 +492872|39001469947|2 +480482|39001470268|2 +501338|39001470269|2 +673908|39001470273|2 +882537|39001470276|2 +779464|39001470307|2 +701651|39001470415|2 +515283|39001470504|2 +558919|39001470505|2 +792021|39001470509|2 +749933|39001470723|2 +622044|39001470766|2 +488112|39001470926|2 +737991|39001470930|2 +478784|39001470939|2 +512026|39001471002|2 +591999|39001471016|2 +870822|39001471023|4 +464645|39001471146|2 +898228|39001471152|2 +923681|39001471153|2 +691738|39001471164|2 +597053|39001471267|2 +788043|39001471278|4 +492990|39001471394|2 +535788|39001471398|2 +783027|39001471401|2 +845137|39001471402|2 +561947|39001471470|2 +872980|39001472445|2 +671754|39001473476|2 +458897|39001473482|2 +475546|39001473492|2 +482195|39001473495|4 +510131|39001473515|2 +536862|39001473526|2 +555770|39001473527|2 +523481|39001473626|2 +628967|39001473643|2 +636510|39001473644|2 +643925|39001473647|2 +653633|39001473651|2 +665148|39001473653|2 +724347|39001473678|2 +731617|39001473679|2 +745504|39001473688|2 +768756|39001473765|2 +789265|39001473772|2 +790412|39001473774|2 +800806|39001473778|2 +602732|39001473813|2 +696405|39001473815|2 +732935|39001473820|2 +734281|39001473824|2 +523245|39001474110|2 +457013|39001474397|2 +473043|39001474398|2 +551380|39001474406|2 +551333|39001474407|2 +591380|39001474409|2 +759859|39001474415|2 +825903|39001474416|4 +828096|39001474418|4 +829246|39001474419|4 +853077|39001474420|2 +864422|39001474422|2 +887044|39001474437|2 +895359|39001474440|2 +627677|39001474686|2 +521383|39001474827|2 +535263|39001474933|2 +618867|39001474938|2 +647959|39001474941|2 +755831|39001474942|2 +827090|39001474952|4 +845817|39001474955|2 +878390|39001474956|2 +727360|39001475239|2 +704273|39001475418|2 +615237|39001475780|2 +459012|39001475944|2 +538816|39001475952|2 +681586|39001476045|2 +889557|39001476073|2 +969297|39001476081|2 +583184|39001476125|2 +495039|39001476176|2 +503811|39001476179|2 +600796|39001476196|2 +653975|39001476209|2 +650399|39001476213|2 +657561|39001476223|2 +880308|39001476231|2 +831806|39001476241|4 +760073|39001476244|2 +787061|39001476254|2 +797678|39001476257|2 +827548|39001476259|4 +866446|39001476264|2 +500938|39001476277|2 +842347|39001476290|2 +851098|39001476293|2 +669097|39001476321|2 +547490|39001476329|2 +572327|39001476333|2 +600851|39001476338|2 +839480|39001476407|4 +684748|39001476441|2 +766727|39001476448|2 +901609|39001476484|2 +872535|39001476502|2 +966706|39001476596|2 +459996|39001476737|2 +524111|39001476745|2 +557342|39001476750|2 +656967|39001476752|2 +657318|39001476753|2 +465327|39001476818|2 +530428|39001476822|2 +790673|39001476823|2 +488145|39001476982|2 +825319|39001476983|4 +453650|39001477615|2 +477289|39001477621|2 +495751|39001477645|2 +499291|39001477647|2 +519694|39001477657|2 +522423|39001477659|2 +526957|39001477662|2 +572797|39001477669|2 +583330|39001477688|2 +606793|39001477698|2 +608516|39001477711|2 +637026|39001477714|2 +673842|39001477744|2 +674123|39001477746|2 +689039|39001477764|2 +713258|39001477772|2 +740774|39001477775|2 +772944|39001477822|2 +776673|39001477900|2 +799628|39001477905|2 +802995|39001477907|2 +808172|39001477909|2 +856514|39001477960|2 +774656|39001477971|2 +797514|39001478037|2 +866597|39001478248|2 +870451|39001478252|2 +873342|39001478253|2 +884988|39001478254|2 +896459|39001478256|2 +1028824|39001478269|2 +557371|39001478270|2 +859179|39001479497|2 +458898|39001479887|2 +477896|39001479920|2 +506528|39001479991|2 +512274|39001480007|2 +518904|39001480016|2 +521285|39001480021|2 +530693|39001480034|2 +540208|39001480054|2 +867110|39001480099|2 +591753|39001480277|2 +630653|39001480312|2 +651084|39001480326|2 +679536|39001480477|2 +703242|39001480501|2 +712588|39001480531|2 +751192|39001480607|4 +752553|39001480620|2 +860278|39001481247|2 +866054|39001481440|2 +478521|39001481646|2 +560653|39001481654|2 +751837|39001481659|2 +760664|39001481666|2 +763344|39001481667|2 +766366|39001481675|2 +786978|39001481697|2 +789644|39001481703|2 +830201|39001481720|4 +832170|39001481724|4 +837141|39001481755|4 +854524|39001481768|2 +863804|39001481776|2 +868231|39001481787|2 +875702|39001481819|2 +886803|39001481845|2 +891876|39001481977|2 +901059|39001481986|2 +887743|39001482140|2 +731629|39001482301|2 +565822|39001482420|2 +735127|39001482427|2 +803846|39001482430|2 +476613|39001482871|2 +708223|39001483081|2 +827642|39001483118|4 +649946|39001483135|2 +610704|39001484173|2 +691198|39001484200|2 +662685|39001484222|2 +575257|39001484297|2 +498860|39001484379|2 +720955|39001484408|2 +1058120|39001484610|2 +455766|39001484755|2 +479234|39001484766|2 +833300|39001484786|4 +501080|39001484793|2 +758491|39001484803|2 +505275|39001484804|2 +508245|39001484812|2 +672590|39001484814|2 +672639|39001484815|2 +830746|39001484834|4 +517395|39001484838|2 +521366|39001484839|2 +522469|39001484840|2 +550231|39001484854|2 +571500|39001484864|4 +571665|39001484866|2 +581232|39001484870|2 +588062|39001484871|2 +607273|39001484876|2 +473976|39001484888|2 +490976|39001484890|2 +623184|39001484899|2 +630126|39001484922|2 +643236|39001484928|2 +650639|39001484929|2 +460441|39001484931|2 +654504|39001484933|2 +660641|39001484935|2 +548530|39001484941|2 +680020|39001484958|2 +683957|39001484964|2 +685865|39001484994|2 +695552|39001484998|2 +709917|39001484999|2 +716456|39001485004|2 +727776|39001485006|2 +752135|39001485028|2 +765122|39001485029|2 +772040|39001485032|2 +808543|39001485045|2 +832522|39001485046|4 +838042|39001485051|4 +842099|39001485071|2 +845756|39001485078|2 +851093|39001485080|2 +475345|39001485107|2 +885118|39001485110|2 +888244|39001485112|2 +927748|39001485194|2 +787034|39001485202|2 +547421|39001485244|2 +685715|39001485246|2 +930830|39001485254|2 +585476|39001485255|2 +711548|39001485256|4 +793417|39001485259|2 +1083577|39001485260|2 +851218|39001485263|2 +1106253|39001485266|2 +587740|39001485360|2 +635280|39001485363|2 +682321|39001485376|2 +716457|39001485377|2 +835366|39001485379|4 +822148|39001485380|2 +845258|39001485381|2 +476763|39001486201|2 +519167|39001486204|2 +526111|39001486206|2 +571061|39001486208|2 +586909|39001486212|2 +696896|39001486213|2 +719632|39001486214|2 +729311|39001486216|2 +828636|39001486218|4 +854416|39001486219|2 +870432|39001486220|2 +549426|39001486594|2 +590661|39001486598|2 +740762|39001486599|2 +776709|39001486602|2 +895707|39001486611|2 +826773|39001486642|4 +581309|39001486653|2 +485150|39001486743|2 +612222|39001486851|2 +764397|39001486855|2 +764400|39001486860|2 +585220|39001486895|2 +486828|39001488804|2 +453425|39001489222|2 +483357|39001489271|2 +484437|39001489273|2 +486062|39001489425|2 +488574|39001489429|2 +489785|39001489432|2 +502168|39001489435|2 +502104|39001489437|2 +510222|39001489439|2 +511582|39001489442|2 +516074|39001489444|2 +518361|39001489447|2 +523243|39001489449|2 +524738|39001489503|2 +530392|39001489504|2 +541105|39001489506|2 +547491|39001489508|2 +556748|39001489518|2 +569629|39001489723|2 +571475|39001489724|2 +577405|39001489725|2 +588266|39001489732|2 +600642|39001489737|2 +603293|39001489740|2 +603264|39001489742|2 +608928|39001489755|2 +624368|39001489780|2 +626357|39001489794|2 +654331|39001490062|2 +665921|39001490065|2 +665911|39001490067|2 +667404|39001490068|2 +674929|39001490129|2 +680506|39001490214|2 +682141|39001490217|2 +713025|39001490264|2 +719113|39001490268|2 +519670|39001490387|2 +540681|39001490388|4 +629142|39001490389|2 +741436|39001490390|2 +744772|39001490396|2 +744775|39001490398|2 +748885|39001490403|2 +765379|39001490409|2 +775598|39001490412|2 +776749|39001490416|2 +808664|39001490499|2 +833647|39001490509|4 +837180|39001490510|4 +823670|39001490511|2 +838941|39001490512|4 +840705|39001490513|2 +841478|39001490514|2 +851057|39001490519|2 +858410|39001490520|2 +482884|39001490617|2 +863859|39001490625|2 +866980|39001490626|2 +877296|39001490630|2 +887002|39001490631|2 +889370|39001490633|2 +890395|39001490634|2 +505019|39001490869|2 +889113|39001490873|2 +891726|39001490874|2 +895730|39001490875|2 +473801|39001490969|2 +680586|39001491117|2 +677217|39001491122|2 +562856|39001492277|2 +687645|39001492370|2 +863872|39001492392|2 +452819|39001492722|2 +454010|39001492724|2 +475958|39001492726|2 +497712|39001492728|2 +556962|39001492733|2 +569386|39001492738|2 +588273|39001492741|2 +613644|39001492749|2 +625528|39001492751|2 +643315|39001492813|2 +652199|39001492814|2 +762779|39001492827|2 +764044|39001492846|2 +765925|39001492851|2 +775599|39001492862|2 +834411|39001492896|4 +856556|39001492914|2 +874675|39001492918|2 +1046686|39001493027|2 +1105465|39001493103|2 +1177776|39001493204|2 +486428|39001493267|2 +504896|39001493273|2 +510139|39001493277|2 +521535|39001493298|2 +522853|39001493299|2 +631699|39001493305|2 +677437|39001493369|2 +740784|39001493388|4 +801693|39001493396|2 +865634|39001493414|2 +867401|39001493416|2 +901647|39001493430|2 +1166670|39001493583|2 +849607|39001493716|2 +578537|39001493734|2 +712621|39001493777|2 +712749|39001493794|2 +712695|39001493796|2 +733954|39001493798|2 +784622|39001493804|2 +827828|39001493806|4 +886095|39001493846|2 +457405|39001493890|2 +505200|39001493895|2 +511334|39001493898|2 +605856|39001493922|2 +628013|39001493925|2 +675135|39001493929|2 +675855|39001493930|2 +495243|39001494122|2 +466902|39001494187|2 +767314|39001494190|2 +766367|39001494224|2 +484542|39001494234|2 +892514|39001494691|2 +741720|39001494735|2 +487598|39001494897|2 +524588|39001494921|2 +526791|39001494922|2 +537437|39001494924|2 +560151|39001494928|2 +574481|39001494929|2 +646537|39001494965|2 +669651|39001494975|2 +1130658|39001494978|2 +746292|39001494980|2 +768387|39001494981|2 +809333|39001494982|2 +845213|39001494987|2 +852490|39001494989|2 +872177|39001494995|2 +900783|39001495002|2 +499592|39001495266|2 +500479|39001495267|2 +507475|39001495271|2 +508040|39001495273|2 +509294|39001495279|2 +525167|39001495281|2 +544890|39001495295|2 +602448|39001495305|2 +643360|39001495310|2 +654893|39001495311|2 +669932|39001495313|2 +683830|39001495314|2 +731300|39001495319|2 +773484|39001495323|2 +773488|39001495324|2 +842732|39001495331|2 +862676|39001495344|2 +863887|39001495345|2 +865273|39001495346|2 +876234|39001495350|2 +888571|39001495366|2 +882564|39001495385|2 +1114539|39001495415|2 +629845|39001495515|2 +788122|39001495517|2 +461056|39001495527|2 +626352|39001495542|2 +686998|39001495544|2 +455901|39001495545|2 +572553|39001495549|2 +641552|39001495550|2 +653949|39001495560|2 +752347|39001495967|2 +505371|39001495974|2 +752520|39001495984|2 +698773|39001495998|2 +628281|39001496005|2 +788499|39001496014|2 +666675|39001497287|2 +480371|39001497436|2 +485414|39001497438|4 +494982|39001497448|2 +501353|39001497450|2 +509420|39001497480|2 +513554|39001497487|2 +527676|39001497492|2 +529762|39001497493|2 +533746|39001497496|2 +577410|39001497510|2 +587479|39001497514|2 +604503|39001497521|2 +622772|39001497525|2 +636365|39001497528|2 +652567|39001497530|2 +666572|39001497532|2 +677344|39001497535|2 +688001|39001497550|2 +724688|39001497564|2 +735724|39001497565|2 +741999|39001497566|2 +744035|39001497580|2 +744965|39001497582|2 +746315|39001497584|2 +748808|39001497586|2 +728999|39001497595|2 +641954|39001497596|2 +762807|39001497655|2 +786879|39001497659|2 +798097|39001497660|2 +854525|39001497661|2 +878074|39001497696|2 +882195|39001497700|2 +769408|39001497943|2 +460393|39001498723|4 +462496|39001498725|2 +465431|39001498728|2 +471770|39001498735|2 +476438|39001498736|2 +498816|39001498737|2 +514822|39001498746|2 +514830|39001498747|2 +514859|39001498751|2 +515792|39001498752|2 +559933|39001498757|2 +584224|39001498758|2 +604992|39001498765|2 +615199|39001498767|2 +622376|39001498772|2 +630423|39001498777|2 +646659|39001498850|2 +672740|39001498876|2 +686091|39001498877|2 +690757|39001498878|2 +710055|39001498879|2 +541031|39001498945|2 +632794|39001498948|4 +776494|39001498957|2 +490686|39001498959|2 +760900|39001499034|2 +792418|39001499045|2 +851094|39001499060|2 +875752|39001499065|2 +887525|39001499067|2 +893841|39001499068|2 +572815|39001499519|2 +464166|39001499582|2 +483383|39001499586|2 +518313|39001499601|2 +545164|39001499605|2 +550421|39001499607|2 +568640|39001499612|2 +573680|39001499613|2 +599839|39001499623|2 +618007|39001499640|2 +623081|39001499641|2 +623301|39001499642|2 +624082|39001499643|2 +633149|39001499648|2 +640823|39001499649|2 +647154|39001499650|2 +647406|39001499652|2 +661301|39001499656|2 +663755|39001499659|2 +746134|39001499753|2 +749415|39001499754|2 +752136|39001499755|2 +758074|39001499757|2 +762738|39001499758|2 +769825|39001499760|2 +779063|39001499761|2 +800735|39001499762|2 +854391|39001499765|2 +854523|39001499766|2 +875750|39001499768|2 +888906|39001499777|2 +1047234|39001499838|2 +1107348|39001499864|2 +501686|39001499967|2 +532104|39001499970|2 +667962|39001499994|2 +730287|39001499995|2 +778209|39001499996|2 +785053|39001499997|2 +884010|39001500000|2 +671837|39001500049|2 +840278|39001500060|4 +865102|39001500061|2 +480124|39001500374|2 +854656|39001500376|2 +514892|39001500383|2 +550898|39001500391|2 +544883|39001500409|2 +546713|39001500413|2 +568251|39001500415|2 +768823|39001500419|2 +867954|39001500422|2 +546123|39001500590|2 +877771|39001500592|2 +626379|39001500607|2 +460442|39001500618|2 +627755|39001500709|2 +616557|39001500717|2 +711823|39001500743|2 +711115|39001500764|2 +893307|39001500767|2 +879283|39001500826|2 +527338|39001500936|2 +869021|39001501034|4 +554128|39001501075|2 +613520|39001501082|2 +560971|39001501165|2 +647331|39001501167|2 +649173|39001501169|2 +501901|39001501250|2 +650641|39001501251|2 +890421|39001501252|2 +847574|39001501380|2 +486793|39001501495|2 +721020|39001501502|2 +508523|39001501560|2 +599869|39001501562|2 +671049|39001501590|2 +729836|39001501746|4 +713088|39001501772|2 +539781|39001501872|4 +826378|39001501878|6 +883081|39001501879|2 +622759|39001501888|2 +599371|39001501969|2 +714867|39001501970|2 +808089|39001501978|2 +878913|39001501980|2 +756929|39001502134|2 +901426|39001502180|2 +1047411|39001502182|2 +636674|39001502253|2 +469582|39001502361|2 +676095|39001502363|2 +790237|39001502367|2 +900581|39001502368|2 +497162|39001502425|2 +632863|39001502446|2 +456820|39001502525|2 +630461|39001502531|2 +709667|39001502538|2 +703924|39001502625|2 +900755|39001502626|2 +495450|39001503111|2 +542016|39001503115|2 +696813|39001503123|2 +718700|39001503126|2 +734597|39001503127|2 +776248|39001503131|2 +897167|39001503270|2 +1107044|39001503279|2 +662238|39001503592|2 +687214|39001503612|2 +865039|39001503647|2 +501688|39001504029|2 +522843|39001504031|2 +586841|39001504033|2 +845945|39001504092|2 +622330|39001504093|2 +885474|39001504094|2 +463155|39001504095|2 +1107349|39001504096|2 +527693|39001504312|2 +613651|39001504328|2 +618198|39001504330|2 +628545|39001504331|2 +634746|39001504335|2 +654338|39001504341|2 +734042|39001504370|2 +734526|39001504371|2 +736371|39001504373|2 +745040|39001504376|2 +772650|39001504395|2 +847724|39001504419|2 +847725|39001504420|2 +860813|39001504423|2 +865769|39001504428|2 +930632|39001504441|2 +508628|39001507551|2 +509573|39001507552|2 +627250|39001507623|2 +660137|39001507624|2 +452810|39001507669|2 +464061|39001507672|2 +489230|39001507699|2 +510986|39001507732|2 +513793|39001507733|2 +515468|39001507749|2 +528016|39001507755|2 +539829|39001507761|2 +543530|39001507766|2 +575336|39001507779|2 +581051|39001507783|2 +597897|39001507794|2 +600000|39001507973|2 +604197|39001507975|2 +609349|39001507978|2 +610167|39001507980|2 +610702|39001507981|2 +610808|39001507982|2 +628947|39001507994|2 +630901|39001507998|2 +660344|39001508127|4 +671164|39001508134|2 +677045|39001508141|2 +677068|39001508142|2 +688152|39001508144|2 +692398|39001508154|2 +714469|39001508155|2 +723448|39001508157|4 +734425|39001508171|2 +737466|39001508177|2 +738182|39001508178|2 +739582|39001508179|2 +761133|39001508216|2 +766269|39001508217|2 +806475|39001508219|2 +851921|39001508228|2 +851922|39001508230|2 +865612|39001508276|2 +867767|39001508286|2 +871361|39001508288|2 +872507|39001508289|2 +894012|39001508304|2 +901587|39001508307|2 +630133|39001508314|2 +1044296|39001508424|2 +539356|39001508689|2 +802993|39001508784|2 +583716|39001509296|2 +504375|39001509310|2 +546519|39001509347|2 +842348|39001509416|2 +512838|39001509523|2 +730282|39001509557|2 +466876|39001509595|2 +572297|39001509600|2 +677912|39001509603|2 +509447|39001509676|2 +696805|39001509749|2 +573147|39001509935|2 +585421|39001509971|2 +887550|39001509985|2 +515926|39001510002|2 +606262|39001510116|2 +1266315|39001510195|2 +718923|39001510243|2 +733318|39001510555|2 +636836|39001510565|2 +711769|39001510568|2 +748825|39001510651|2 +730409|39001510695|2 +659417|39001510978|2 +494099|39001511139|2 +564536|39001511141|2 +605225|39001511142|2 +629987|39001511152|2 +682033|39001511154|2 +873585|39001511160|2 +884723|39001511178|2 +885119|39001511180|2 +455460|39001511319|2 +457014|39001511320|2 +465137|39001511321|2 +465798|39001511322|2 +465836|39001511323|2 +482363|39001511324|2 +494746|39001511343|2 +499779|39001511344|2 +501149|39001511346|2 +502790|39001511348|2 +890832|39001511354|2 +509490|39001511356|2 +509416|39001511357|2 +517346|39001511362|2 +519684|39001511363|2 +529933|39001511377|2 +719008|39001511378|2 +530335|39001511379|2 +539517|39001511388|2 +553163|39001511394|2 +570701|39001511396|2 +719013|39001511398|2 +573169|39001511403|2 +574357|39001511406|2 +597241|39001511410|4 +606172|39001511418|2 +616106|39001511429|2 +623052|39001511691|2 +650279|39001511708|2 +657630|39001511748|2 +665425|39001511768|2 +669890|39001511771|2 +689553|39001511774|2 +693862|39001511777|2 +743809|39001511822|2 +746027|39001511824|2 +747689|39001511826|2 +756701|39001511848|2 +753711|39001511851|2 +789317|39001511878|2 +512082|39001511880|2 +850035|39001511888|2 +802623|39001511890|2 +842044|39001511895|2 +842285|39001511896|2 +846173|39001511898|2 +848081|39001511899|2 +868280|39001511919|2 +868360|39001511922|2 +873099|39001511931|2 +877679|39001511935|2 +887515|39001511943|2 +889885|39001511949|2 +898884|39001511951|2 +859136|39001512355|2 +464576|39001512387|2 +689074|39001512391|2 +478518|39001512395|2 +535794|39001512441|2 +568270|39001512456|2 +578691|39001512457|2 +595693|39001512834|2 +589059|39001512866|2 +597480|39001512867|2 +602341|39001512876|2 +630431|39001512888|2 +639168|39001512891|2 +660627|39001512907|2 +679080|39001512917|2 +684545|39001512918|2 +691484|39001512919|2 +703645|39001512921|2 +712734|39001512923|2 +716074|39001512926|2 +718765|39001512928|2 +697858|39001513118|2 +1044297|39001513376|2 +765553|39001513382|2 +778050|39001514265|2 +476247|39001514293|2 +498616|39001514304|2 +498904|39001514305|2 +525052|39001514307|2 +526414|39001514308|2 +537871|39001514329|2 +543483|39001514333|2 +548008|39001514337|2 +573144|39001514350|2 +581522|39001514360|2 +613909|39001514433|2 +619353|39001514434|2 +625389|39001514435|2 +625902|39001514437|2 +634578|39001514438|2 +669969|39001514447|2 +849605|39001514456|2 +702497|39001514461|2 +724221|39001514466|2 +725735|39001514490|2 +557450|39001514539|2 +726669|39001514569|2 +728944|39001514570|4 +734807|39001514571|2 +718976|39001514572|2 +751079|39001514577|2 +752484|39001514578|2 +764463|39001514588|2 +779600|39001514589|2 +788325|39001514590|2 +789842|39001514592|2 +793318|39001514593|2 +1252049|39001514600|2 +805285|39001514643|2 +828497|39001514644|4 +829071|39001514645|4 +845788|39001514650|2 +849826|39001514653|2 +864166|39001514654|2 +875588|39001514665|2 +879282|39001514668|2 +893340|39001514673|2 +894179|39001514674|2 +896550|39001514675|2 +901134|39001514677|2 +458522|39001514929|2 +605061|39001515435|2 +563044|39001515800|2 +549542|39001515825|2 +792812|39001515826|2 +795578|39001515827|2 +873853|39001515828|2 +502171|39001515854|2 +674155|39001515859|2 +844460|39001515869|2 +873951|39001515889|2 +509464|39001515891|2 +580158|39001515894|2 +708466|39001515896|2 +847930|39001515898|2 +861980|39001515907|2 +686267|39001515919|2 +617817|39001515925|2 +729425|39001515964|2 +500995|39001515975|2 +603584|39001515976|2 +867431|39001516030|2 +733390|39001516037|2 +603273|39001516039|2 +635983|39001516040|2 +801057|39001516051|2 +877635|39001516055|2 +698060|39001516065|2 +654282|39001516069|2 +592883|39001516070|2 +876761|39001516206|2 +770824|39001516326|2 +688877|39001516383|2 +503288|39001516494|2 +621501|39001516495|2 +901467|39001516496|2 +632075|39001516632|2 +613603|39001516665|2 +644955|39001516864|2 +827643|39001516886|4 +667444|39001516888|2 +831057|39001516891|4 +493527|39001516976|2 +616892|39001516981|2 +669124|39001516982|2 +693464|39001517010|2 +697134|39001517090|2 +844918|39001517384|2 +888899|39001517394|2 +613949|39001517397|2 +652632|39001517562|2 +834084|39001517592|4 +866279|39001517610|2 +802374|39001517799|2 +853144|39001517801|2 +516287|39001517806|2 +680038|39001517807|2 +684090|39001517808|2 +748374|39001517809|2 +745246|39001517833|2 +508851|39001517859|2 +899006|39001517879|2 +613585|39001517882|2 +577198|39001517887|2 +719394|39001517958|2 +829213|39001517959|4 +1044298|39001517983|2 +622476|39001518056|2 +638751|39001518061|2 +876767|39001518067|2 +847975|39001518163|2 +482990|39001518250|2 +486410|39001518251|2 +658079|39001518255|2 +840398|39001518259|4 +1107045|39001518263|2 +464265|39001518444|2 +790577|39001518451|2 +865980|39001518452|2 +908426|39001518453|2 +498306|39001518466|2 +547513|39001518470|2 +694720|39001518471|2 +749970|39001518473|2 +748679|39001518524|2 +798563|39001518566|2 +752095|39001518613|2 +505826|39001518638|2 +535795|39001518706|2 +765799|39001518731|2 +660211|39001518768|2 +872534|39001518775|2 +613449|39001518777|2 +622269|39001518793|2 +486878|39001518899|2 +460359|39001518923|2 +525998|39001518945|2 +451665|39001519011|2 +776940|39001519018|2 +517765|39001519042|2 +851092|39001519076|2 +487041|39001519173|2 +498874|39001519670|2 +553088|39001519671|2 +788957|39001519672|2 +608586|39001519819|2 +617445|39001520027|2 +630108|39001520028|2 +800770|39001520033|2 +702106|39001520037|2 +718441|39001520038|2 +780484|39001520039|2 +1266280|39001520089|2 +508358|39001520094|2 +545975|39001520096|2 +605489|39001520097|2 +622342|39001520098|2 +716828|39001520099|2 +748886|39001520100|2 +803126|39001520103|2 +522407|39001520363|2 +751388|39001520410|2 +675684|39001520418|2 +581297|39001520503|2 +831141|39001520507|4 +514092|39001520513|2 +551113|39001520517|2 +568298|39001520518|2 +831196|39001520531|4 +844652|39001520533|2 +521413|39001520537|2 +867168|39001520540|2 +677323|39001520618|2 +454104|39001520671|2 +529374|39001520672|2 +687938|39001520744|2 +825541|39001521108|4 +594570|39001521119|2 +526781|39001521121|2 +585640|39001521213|2 +769276|39001521214|2 +808169|39001521215|2 +867514|39001521219|2 +880582|39001521221|2 +616426|39001521228|2 +678587|39001521231|2 +861343|39001521248|2 +583938|39001521251|2 +637466|39001521253|2 +862218|39001521258|2 +881491|39001521259|2 +886725|39001521415|2 +832091|39001521456|4 +540861|39001521458|2 +580298|39001521529|2 +841585|39001521530|2 +505860|39001521784|2 +1166084|39001521787|2 +733758|39001521788|2 +578253|39001521791|2 +495059|39001521803|2 +503885|39001521804|2 +787213|39001521807|2 +853955|39001521808|2 +863524|39001521836|2 +677602|39001521844|2 +476812|39001521915|2 +582127|39001521920|2 +565866|39001522354|2 +748350|39001522401|2 +787596|39001522404|2 +474558|39001522480|2 +486214|39001522485|2 +647987|39001522490|2 +457835|39001522811|2 +523128|39001522812|2 +616908|39001522815|2 +809387|39001522816|2 +792186|39001522827|2 +861674|39001522835|2 +789421|39001522868|2 +754382|39001522884|2 +772941|39001522886|2 +881749|39001522929|2 +740876|39001522945|2 +542371|39001522947|2 +602865|39001523144|2 +682660|39001523147|2 +607785|39001523253|2 +623311|39001523256|2 +663745|39001523257|2 +663746|39001523258|2 +775595|39001523280|2 +864364|39001523289|2 +710904|39001523402|2 +710905|39001523403|2 +563045|39001523694|2 +860316|39001523707|2 +779553|39001523714|2 +804302|39001523715|2 +885031|39001523716|2 +1214246|39001523719|2 +652042|39001523727|2 +890562|39001523735|2 +766171|39001523748|2 +576984|39001523766|2 +861736|39001523769|2 +634257|39001523771|2 +636509|39001523924|2 +721159|39001523984|2 +504453|39001523988|2 +500868|39001524110|2 +600735|39001524111|2 +463745|39001524182|2 +692431|39001524190|2 +493610|39001524210|2 +535171|39001524212|2 +658593|39001524215|2 +563202|39001524301|2 +849988|39001524336|2 +646071|39001524338|2 +1103818|39001524352|2 +573514|39001524457|2 +689920|39001524522|2 +559435|39001524611|2 +775839|39001524612|2 +515584|39001524690|2 +832376|39001524731|4 +765120|39001524733|2 +558907|39001524735|2 +613274|39001524892|2 +687579|39001524959|2 +641467|39001524970|2 +713247|39001524973|2 +697507|39001524974|2 +639043|39001525074|2 +757392|39001525078|2 +884249|39001525092|2 +770939|39001525130|2 +1039180|39001525131|2 +832370|39001525221|4 +474186|39001525227|2 +608622|39001525233|2 +741657|39001525234|2 +775640|39001525240|2 +834150|39001525314|4 +859178|39001525332|2 +696153|39001525334|2 +503264|39001525340|2 +621176|39001525482|2 +808683|39001525719|2 +842235|39001525860|2 +884965|39001525931|2 +808931|39001525932|2 +854868|39001525984|2 +465507|39001525986|2 +707758|39001525994|2 +743795|39001526094|2 +763713|39001526105|2 +549911|39001526187|2 +866406|39001526188|2 +784889|39001526193|2 +864864|39001526206|2 +865296|39001526257|2 +629899|39001526268|2 +787730|39001526275|2 +888163|39001526501|2 +676303|39001526548|2 +720134|39001526554|2 +587166|39001526555|2 +762245|39001526926|2 +665398|39001526928|2 +768883|39001526930|2 +770918|39001526932|2 +473764|39001526951|2 +671050|39001527010|2 +684400|39001527012|2 +757201|39001527015|2 +575304|39001527026|2 +511535|39001528567|2 +484562|39001528568|2 +775965|39001528575|2 +647107|39001529823|2 +853881|39001529864|2 +559813|39001529928|2 +509518|39001529984|2 +592344|39001530072|2 +878967|39001530074|2 +558870|39001530106|2 +515619|39001530120|2 +704688|39001530122|2 +593394|39001530138|2 +762176|39001530143|2 +455067|39001530151|2 +548003|39001530165|2 +597488|39001530171|2 +677971|39001530228|2 +724845|39001530229|2 +724059|39001530232|2 +613423|39001530236|2 +827019|39001530237|4 +600792|39001530250|2 +675282|39001530251|2 +675303|39001530253|2 +797134|39001530269|2 +539830|39001530282|2 +632080|39001530285|2 +650366|39001530286|2 +710820|39001530288|2 +588009|39001530298|2 +766851|39001530307|2 +636159|39001530326|2 +463491|39001530352|2 +455598|39001530354|2 +478167|39001530355|2 +503265|39001530356|2 +678362|39001530777|2 +841023|39001530787|2 +682605|39001530796|2 +872071|39001530797|2 +539033|39001530798|2 +749256|39001530801|2 +689594|39001530805|2 +863874|39001530806|2 +728516|39001530811|2 +831493|39001530812|4 +453962|39001530851|2 +613837|39001530918|2 +480973|39001530922|2 +480974|39001530923|2 +530917|39001530932|2 +676094|39001530943|2 +731896|39001530946|2 +735052|39001530950|2 +643518|39001530951|2 +832231|39001530953|4 +765787|39001530968|2 +840502|39001530973|4 +879675|39001530975|2 +482655|39001530992|2 +465613|39001530994|2 +514823|39001531016|2 +770825|39001531017|2 +795277|39001531018|2 +828356|39001531021|4 +731435|39001531024|2 +746948|39001531025|2 +475271|39001531027|2 +672591|39001531056|2 +473886|39001531057|2 +579729|39001531058|2 +707213|39001531059|2 +725757|39001531061|2 +718178|39001531078|2 +615586|39001531087|2 +765690|39001531098|2 +776521|39001531099|2 +873715|39001531101|2 +634414|39001531116|2 +741711|39001531260|2 +751550|39001531262|2 +522259|39001531416|2 +690177|39001531417|2 +763370|39001531418|2 +724618|39001531423|2 +613613|39001531536|2 +826174|39001531539|6 +839819|39001531541|4 +622111|39001531691|4 +778170|39001531885|2 +869431|39001531886|2 +874340|39001532067|2 +534431|39001532078|2 +657540|39001532080|2 +693331|39001532085|2 +767712|39001532087|2 +710811|39001532160|2 +800787|39001532162|2 +806459|39001532163|2 +567677|39001532177|2 +512673|39001532378|2 +685949|39001532380|2 +510396|39001532505|2 +567488|39001532508|2 +581293|39001532509|2 +594571|39001532510|2 +522938|39001532532|2 +635507|39001532559|2 +751913|39001532648|2 +515620|39001532649|2 +630119|39001532676|2 +752530|39001532878|2 +891710|39001532880|2 +661006|39001532891|2 +602743|39001533155|2 +622189|39001533156|2 +1091967|39001533165|2 +805009|39001533960|2 +599525|39001533986|2 +576960|39001533999|2 +583520|39001534024|2 +555158|39001534759|2 +856187|39001534763|2 +675988|39001534826|2 +554499|39001534865|2 +863983|39001534870|2 +499575|39001534881|2 +531685|39001535110|2 +595721|39001535112|2 +599633|39001535116|2 +626001|39001535142|2 +626002|39001535145|2 +709762|39001535161|2 +735369|39001535184|2 +762269|39001535210|2 +776085|39001535217|2 +878089|39001535252|2 +883338|39001535286|2 +889587|39001535297|2 +894795|39001535304|2 +570050|39001535503|2 +648993|39001535715|2 +548917|39001536020|2 +670709|39001536148|2 +560843|39001536182|2 +576947|39001536186|2 +609005|39001536189|2 +606173|39001536284|2 +576834|39001536305|2 +576833|39001536313|2 +618635|39001536318|2 +723436|39001536346|4 +874304|39001536468|2 +776710|39001536473|2 +502016|39001536475|2 +692069|39001536488|2 +698716|39001537247|2 +799665|39001537257|2 +704597|39001537911|2 +704590|39001537922|2 +796732|39001537927|2 +620240|39001537934|2 +766378|39001538181|2 +503897|39001538182|2 +454018|39001538184|2 +724776|39001538190|2 +888402|39001538191|2 +563248|39001538201|2 +539782|39001538202|4 +864936|39001538203|2 +603535|39001538217|2 +630644|39001538220|2 +733460|39001538221|2 +843643|39001538222|2 +859200|39001538223|2 +565402|39001538229|2 +585612|39001538236|2 +482141|39001538240|2 +461295|39001538250|2 +460520|39001538289|2 +591728|39001538290|2 +670867|39001538291|2 +684962|39001538292|2 +717046|39001538294|2 +826331|39001538306|8 +895944|39001538309|2 +801786|39001538333|2 +754701|39001538337|2 +873130|39001538338|2 +652949|39001538340|2 +585227|39001538344|2 +545978|39001538348|2 +457354|39001538359|2 +779914|39001538363|2 +776581|39001538367|2 +640705|39001538368|2 +866244|39001538378|2 +677438|39001538383|2 +460046|39001538385|2 +582687|39001538388|2 +585229|39001538418|2 +847745|39001538434|2 +888183|39001538451|2 +800325|39001538462|2 +565457|39001538473|2 +461464|39001538479|2 +765788|39001538516|2 +611137|39001538530|2 +522209|39001538531|2 +525930|39001538560|2 +786225|39001538564|2 +746220|39001538781|2 +521447|39001538880|2 +741963|39001539000|2 +567834|39001539005|2 +539334|39001539007|4 +594204|39001539009|2 +537972|39001539015|2 +466987|39001539017|2 +589717|39001539018|2 +663427|39001539020|2 +808113|39001539022|2 +867678|39001539027|2 +482315|39001539028|2 +758087|39001539038|2 +832867|39001539045|4 +708884|39001539046|2 +669208|39001539082|2 +615290|39001539113|4 +751389|39001539168|2 +883477|39001539180|2 +501424|39001539195|2 +764128|39001539217|2 +637208|39001539231|2 +692057|39001539237|2 +867856|39001539248|2 +867862|39001539250|2 +496074|39001539293|2 +885486|39001539307|2 +698279|39001539346|2 +930824|39001539400|2 +636871|39001539423|2 +579829|39001539426|2 +496765|39001539452|2 +888167|39001539459|2 +613604|39001539471|2 +570493|39001539521|2 +692049|39001539571|2 +545796|39001539703|2 +621527|39001539709|2 +636304|39001539714|2 +593814|39001539760|2 +663428|39001539791|2 +713708|39001539794|2 +462497|39001539814|2 +629226|39001539815|2 +708817|39001539941|2 +869062|39001539943|2 +501805|39001540153|2 +478168|39001540159|2 +478169|39001540162|2 +511531|39001540181|2 +622477|39001540187|2 +751914|39001540189|2 +459228|39001540295|2 +465640|39001540325|2 +731671|39001540331|2 +892661|39001540332|2 +797988|39001540376|2 +514831|39001540377|2 +627719|39001540382|2 +555789|39001540384|2 +476740|39001540387|2 +752386|39001540388|2 +618615|39001540389|2 +501961|39001540414|2 +843492|39001540452|2 +677899|39001540455|2 +692166|39001540512|2 +799544|39001540543|2 +770559|39001540616|2 +551910|39001540619|2 +498344|39001540634|2 +763823|39001540635|2 +855180|39001540639|2 +1159081|39001540640|2 +666767|39001540647|2 +896336|39001540648|2 +488358|39001540659|2 +608121|39001540664|2 +599930|39001540666|2 +504920|39001540716|2 +582263|39001540720|2 +597389|39001540722|2 +602145|39001540724|2 +466746|39001540836|2 +465623|39001540838|2 +500272|39001540840|2 +554369|39001540850|2 +527560|39001540851|2 +711862|39001540854|2 +866883|39001540855|2 +714365|39001540863|2 +672387|39001540905|2 +730211|39001540909|2 +781127|39001540915|2 +832868|39001540918|4 +652097|39001540927|2 +540887|39001540931|2 +830415|39001540935|4 +835797|39001541074|4 +867411|39001541079|2 +597709|39001541105|2 +881150|39001541126|2 +735318|39001541132|2 +788628|39001541184|2 +555666|39001541267|2 +538003|39001541270|2 +751312|39001541274|2 +556905|39001541798|2 +461104|39001541808|2 +463902|39001541822|4 +874513|39001541834|2 +648596|39001541837|2 +555881|39001541841|2 +603269|39001541850|2 +705499|39001541897|2 +723827|39001541901|2 +877272|39001541946|2 +886058|39001542058|2 +537454|39001542068|2 +545843|39001542072|2 +630124|39001542082|2 +790341|39001542114|2 +473129|39001542217|2 +842794|39001542239|2 +838655|39001542264|4 +853071|39001542266|2 +508501|39001542343|2 +465978|39001542643|2 +691127|39001542859|2 +872135|39001543339|2 +455517|39001543566|2 +594029|39001543792|2 +453619|39001543904|2 +783790|39001543906|2 +783752|39001543907|2 +616428|39001543908|2 +573560|39001543909|2 +616429|39001543911|2 +616430|39001543912|2 +804410|39001543915|2 +838942|39001543918|4 +724567|39001543922|2 +671029|39001543924|2 +837260|39001543931|8 +666793|39001543999|2 +899955|39001544007|2 +735736|39001544010|2 +803590|39001544015|2 +764513|39001544024|2 +533041|39001544029|2 +493413|39001544035|2 +859181|39001544039|2 +639050|39001544043|2 +808537|39001544048|2 +704676|39001544050|2 +894188|39001544053|2 +595618|39001544057|2 +696998|39001544070|2 +706017|39001544074|2 +898827|39001544076|2 +685822|39001544255|2 +685767|39001544259|2 +783201|39001544466|2 +783314|39001544477|2 +772276|39001544482|2 +772273|39001544491|2 +869012|39001544562|2 +711061|39001544570|2 +485005|39001545053|2 +707212|39001545117|2 +900652|39001545119|2 +831285|39001545128|4 +495575|39001545132|2 +510162|39001545139|2 +743469|39001545148|2 +712011|39001545151|2 +736881|39001545155|2 +489224|39001545158|2 +511135|39001545161|2 +739017|39001545163|2 +509452|39001545171|2 +672803|39001545177|2 +872860|39001545182|2 +885555|39001545253|2 +899176|39001545256|2 +508671|39001545258|2 +866868|39001545263|2 +530745|39001545270|2 +610549|39001545272|2 +791140|39001545276|2 +568641|39001545285|2 +1122429|39001545294|2 +636342|39001545295|2 +511136|39001545296|2 +583413|39001545347|2 +569434|39001545352|2 +702496|39001545355|2 +1060131|39001545357|2 +892587|39001545365|2 +490693|39001545374|2 +891729|39001545381|2 +479153|39001545385|2 +478594|39001545386|2 +686907|39001545388|2 +502883|39001545589|2 +792663|39001545685|2 +665395|39001545691|2 +459244|39001547503|2 +646164|39001547509|2 +859125|39001547570|2 +762601|39001547584|2 +775737|39001547586|2 +458171|39001547587|2 +696976|39001547595|2 +538763|39001547623|2 +881964|39001547643|2 +850074|39001547689|2 +653053|39001547693|2 +524122|39001547699|2 +776691|39001548143|2 +782295|39001548387|2 +841865|39001548388|2 +566011|39001548392|2 +838112|39001548393|4 +884246|39001548394|2 +522776|39001548420|2 +699368|39001549179|2 +787277|39001549180|2 +773622|39001549182|2 +703184|39001549184|2 +859138|39001549215|2 +458658|39001549220|2 +754721|39001549232|2 +827335|39001549234|4 +827337|39001549236|4 +768240|39001549243|4 +749969|39001549266|2 +600057|39001549279|2 +641028|39001549313|2 +486444|39001549324|2 +451729|39001549357|2 +616129|39001549392|2 +1044299|39001549434|2 +722066|39001551290|2 +857836|39001551294|2 +723589|39001551302|2 +878054|39001551312|2 +541423|39001551329|2 +900560|39001551330|2 +546158|39001551332|2 +835540|39001551360|8 +751193|39001551364|4 +647130|39001551382|2 +860138|39001551385|2 +902328|39001551386|2 +870588|39001551389|4 +778010|39001551405|2 +586905|39001551409|2 +745348|39001551412|2 +463444|39001551413|4 +630452|39001551414|2 +551845|39001551420|2 +465441|39001551424|2 +556994|39001551435|2 +461850|39001551446|2 +472614|39001551448|2 +694125|39001551457|2 +728753|39001551458|4 +544076|39001551466|2 +678588|39001551470|2 +682966|39001551474|2 +692070|39001551480|2 +490600|39001551481|2 +547492|39001551482|2 +802624|39001551483|2 +626384|39001551486|2 +484824|39001551488|2 +783168|39001551490|2 +654280|39001551492|2 +509421|39001551493|2 +614750|39001551495|2 +656012|39001551499|2 +639862|39001551504|2 +524890|39001551508|2 +725781|39001551517|4 +509350|39001551521|2 +524057|39001551534|2 +631684|39001551536|2 +452861|39001551549|2 +831309|39001551553|4 +738821|39001551557|2 +786920|39001551561|2 +713325|39001551565|2 +563004|39001551567|2 +857834|39001551580|2 +776743|39001551613|2 +869276|39001551615|2 +559015|39001551616|2 +703261|39001551623|2 +844465|39001551625|2 +795182|39001551642|2 +471599|39001551655|2 +671002|39001551659|2 +488409|39001551664|2 +523359|39001551670|2 +807697|39001551672|2 +660833|39001551708|2 +880345|39001551717|2 +527953|39001551735|2 +713286|39001551737|2 +857835|39001551739|2 +461296|39001551742|2 +542337|39001551755|2 +525929|39001551767|2 +900796|39001551770|2 +830524|39001553331|4 +865085|39001553333|2 +861819|39001553347|2 +480702|39001553357|2 +737458|39001553395|2 +674967|39001553420|2 +734835|39001553426|2 +515603|39001553429|2 +600502|39001553430|2 +873185|39001553431|2 +474913|39001553456|2 +533364|39001553459|2 +603359|39001553465|2 +676612|39001553472|2 +498086|39001553521|2 +465849|39001553538|2 +655725|39001553567|2 +526680|39001553573|2 +807047|39001553577|2 +465363|39001553592|2 +684835|39001553600|2 +877370|39001553604|2 +641392|39001553620|2 +800320|39001553631|2 +470714|39001553647|2 +526399|39001553649|2 +558886|39001553650|2 +586221|39001553651|2 +779767|39001553673|2 +645751|39001553698|2 +677215|39001553720|2 +526441|39001553724|2 +608299|39001553726|2 +526768|39001553751|2 +871288|39001553765|2 +849720|39001553770|2 +613338|39001553772|2 +542883|39001553776|2 +542884|39001553777|2 +724537|39001553778|2 +495259|39001553780|2 +622170|39001553783|4 +724538|39001553798|2 +677820|39001553807|2 +771675|39001553828|2 +571029|39001553854|2 +571033|39001553855|2 +575187|39001553858|2 +896710|39001553865|2 +868258|39001553894|2 +852902|39001553992|2 +787985|39001553994|2 +643316|39001553995|2 +460674|39001553999|2 +762672|39001554001|2 +752692|39001554004|2 +694712|39001554014|2 +662243|39001554017|2 +706934|39001554032|2 +460725|39001554041|2 +674747|39001554044|2 +521909|39001554067|2 +680867|39001554083|2 +643394|39001554151|4 +869060|39001554154|2 +833346|39001554158|4 +798496|39001554184|2 +691905|39001554191|2 +642438|39001554203|2 +868585|39001554214|4 +711724|39001554255|2 +697328|39001554330|2 +878487|39001554385|2 +776478|39001554401|2 +505088|39001554438|2 +531652|39001554467|2 +656291|39001554498|4 +692830|39001554499|2 +711859|39001554501|2 +734391|39001554502|2 +762752|39001554514|2 +764035|39001554518|2 +770554|39001554519|2 +776385|39001554520|2 +868580|39001554543|2 +886345|39001554547|2 +886350|39001554548|2 +785585|39001554640|2 +697080|39001554653|2 +871905|39001554673|2 +703235|39001554681|2 +857325|39001554687|2 +849584|39001554697|2 +584585|39001554708|2 +676306|39001554714|2 +781047|39001554716|2 +549916|39001554750|2 +621408|39001554753|2 +775793|39001554755|2 +547378|39001554768|2 +778245|39001554769|2 +896521|39001554777|2 +751412|39001554781|2 +772301|39001554798|2 +495749|39001554834|2 +849754|39001554842|2 +683171|39001554890|2 +531845|39001554895|2 +704012|39001554911|2 +487462|39001554941|2 +752551|39001554950|2 +865927|39001554955|2 +872098|39001554956|2 +883549|39001554958|2 +784646|39001554968|2 +751915|39001554979|2 +755268|39001554988|2 +770982|39001555001|2 +875101|39001555003|2 +882470|39001555004|2 +476875|39001555200|2 +534258|39001555206|2 +725868|39001555211|2 +868332|39001555213|2 +1107350|39001555224|2 +526630|39001556401|2 +643533|39001556411|2 +680403|39001556412|2 +886777|39001556413|2 +703188|39001556423|2 +738410|39001556427|2 +888285|39001556430|2 +796168|39001556453|2 +832535|39001556456|4 +482177|39001556672|2 +518211|39001556690|2 +716145|39001556806|4 +751649|39001556815|2 +849062|39001556830|2 +1212306|39001557140|2 +545814|39001557141|2 +758501|39001557143|2 +808029|39001557146|2 +516919|39001557155|2 +659164|39001557157|2 +756253|39001557158|2 +848083|39001557159|2 +827382|39001557165|4 +470675|39001557342|2 +626409|39001557454|2 +874630|39001557588|2 +618768|39001557720|2 +672142|39001557722|2 +895487|39001557723|2 +746011|39001557894|2 +536079|39001558144|2 +556781|39001558249|2 +851378|39001558250|2 +520780|39001558357|2 +662240|39001558358|2 +675970|39001558359|2 +732039|39001558500|2 +504599|39001558512|2 +496492|39001558778|2 +760455|39001558782|2 +761018|39001558783|2 +868504|39001558869|2 +663675|39001559049|2 +687633|39001559278|2 +482208|39001559280|2 +498079|39001559282|2 +642854|39001559290|2 +652738|39001559292|2 +655881|39001559293|2 +674326|39001559296|2 +699540|39001559302|4 +786182|39001559313|2 +832437|39001559428|4 +847575|39001559431|2 +874448|39001559447|2 +889201|39001559448|2 +1127652|39001559581|2 +660138|39001559626|2 +786864|39001559786|2 +620243|39001559808|2 +838001|39001559809|4 +495050|39001559851|2 +752117|39001559855|4 +828999|39001559856|4 +752587|39001559946|2 +474962|39001560031|2 +564311|39001560033|2 +547389|39001560044|2 +577224|39001560130|2 +453776|39001560169|2 +508524|39001560170|2 +581010|39001560172|2 +675736|39001560173|2 +705432|39001560176|2 +509312|39001560337|2 +679161|39001560340|2 +538715|39001560453|2 +671096|39001560454|2 +541551|39001560514|2 +573887|39001560516|2 +700014|39001560518|2 +479304|39001560648|2 +519677|39001560652|2 +482038|39001560801|2 +494289|39001561118|2 +600068|39001561119|2 +651172|39001561120|2 +580393|39001561121|2 +455976|39001561129|2 +499593|39001561130|2 +512740|39001561131|2 +533439|39001561132|2 +543810|39001561133|2 +774065|39001561134|2 +514586|39001561136|2 +573066|39001561137|2 +743970|39001561138|2 +509418|39001561141|2 +871255|39001561142|2 +891863|39001561143|2 +464817|39001561147|2 +690178|39001561151|2 +490930|39001561155|2 +715463|39001561156|2 +622251|39001561161|2 +652051|39001561162|2 +806893|39001561163|2 +863881|39001561164|2 +614775|39001561183|2 +839636|39001561184|4 +548507|39001561188|4 +592640|39001561189|2 +762720|39001561190|2 +860067|39001561191|2 +886304|39001561192|2 +602638|39001561195|2 +669178|39001561196|2 +494956|39001561197|2 +542017|39001561199|2 +628497|39001561204|2 +660634|39001561205|2 +866063|39001561206|2 +587153|39001561214|2 +597713|39001561215|2 +640925|39001561216|2 +862019|39001561217|2 +899441|39001561444|2 +484503|39001561548|2 +775814|39001561617|2 +891616|39001561658|2 +883450|39001561673|2 +1258161|39001561681|2 +793307|39001561753|2 +900196|39001561756|2 +473081|39001561767|2 +784814|39001561778|2 +731698|39001561818|2 +738357|39001561820|2 +830288|39001561821|4 +454969|39001561829|2 +752207|39001561849|2 +882786|39001561860|2 +863022|39001561912|2 +1205189|39001561923|2 +795937|39001561934|2 +805258|39001561937|2 +663637|39001561942|2 +901624|39001561975|2 +543013|39001561977|4 +620810|39001562217|2 +625537|39001562218|4 +867763|39001562219|2 +473082|39001562249|2 +655005|39001562335|2 +685121|39001562460|2 +773237|39001562462|2 +516151|39001562463|2 +886302|39001562467|2 +459103|39001562485|2 +743672|39001562612|2 +524557|39001562652|2 +691499|39001562678|2 +865527|39001562720|2 +460904|39001562844|2 +503902|39001562845|2 +840501|39001562850|4 +493726|39001562980|2 +869364|39001563002|2 +713753|39001563008|2 +463697|39001563178|2 +483822|39001563179|2 +522230|39001563356|2 +524832|39001563357|2 +657034|39001563361|2 +752116|39001563452|4 +754880|39001563453|2 +573569|39001563688|2 +629220|39001563689|2 +715342|39001563692|2 +613586|39001563719|2 +501570|39001563746|2 +838390|39001563748|4 +695327|39001563930|2 +732350|39001563931|2 +865323|39001563933|2 +892248|39001564068|2 +482308|39001564138|2 +746863|39001564139|2 +896086|39001564140|2 +898711|39001564141|2 +547487|39001564291|2 +655860|39001564299|2 +678336|39001564402|2 +740901|39001564565|2 +488410|39001564639|2 +547245|39001564640|2 +803382|39001564641|2 +831942|39001564642|4 +866014|39001564643|2 +550233|39001564705|2 +676676|39001564718|2 +458848|39001564806|2 +526611|39001564809|2 +506605|39001564922|2 +539518|39001564924|2 +636092|39001564926|2 +881098|39001564931|2 +652264|39001564988|2 +544691|39001565041|2 +582189|39001565094|2 +600496|39001565104|2 +615839|39001565105|4 +674877|39001565106|2 +682293|39001565107|2 +881539|39001565111|2 +761544|39001565113|2 +457883|39001565239|2 +459522|39001565240|2 +634504|39001565247|2 +634505|39001565248|2 +684936|39001565249|2 +791852|39001565250|2 +470263|39001565342|4 +590778|39001565344|2 +765602|39001565345|2 +891160|39001565346|2 +623637|39001565468|2 +566187|39001565570|2 +494389|39001565771|2 +502241|39001565845|2 +607817|39001565847|2 +662377|39001565850|2 +668798|39001565852|2 +690771|39001565853|2 +792434|39001565855|2 +457576|39001565941|2 +553848|39001566009|2 +719190|39001566010|2 +790679|39001566011|2 +799447|39001566012|2 +548631|39001566067|2 +634953|39001566069|2 +468443|39001566079|2 +677012|39001566082|2 +751454|39001566219|2 +671849|39001566315|2 +756378|39001566377|2 +468671|39001566469|2 +496701|39001566481|2 +660643|39001566485|2 +695601|39001566487|2 +778945|39001566601|2 +675155|39001566735|2 +725567|39001566844|2 +452205|39001566937|2 +556703|39001566938|2 +598216|39001566939|2 +713342|39001566942|2 +898796|39001566943|2 +598215|39001567060|2 +1224289|39001567069|2 +543031|39001567141|2 +784108|39001567142|2 +884240|39001567150|2 +488361|39001567245|2 +545976|39001567247|2 +564328|39001567249|2 +571666|39001567397|2 +530070|39001567539|2 +598044|39001567607|2 +718059|39001567614|2 +461655|39001567660|2 +508273|39001567773|2 +838819|39001567879|4 +668316|39001567937|2 +571011|39001568051|2 +738828|39001568164|2 +473961|39001568169|2 +760456|39001568173|2 +641774|39001568264|2 +641772|39001568265|2 +880857|39001568266|2 +880881|39001568267|2 +551912|39001568413|2 +826447|39001568414|4 +898655|39001568415|2 +594189|39001568538|2 +458570|39001568628|2 +475341|39001568630|2 +575286|39001568631|2 +680243|39001568632|2 +901421|39001568634|2 +759281|39001568749|2 +500283|39001568844|2 +604207|39001568845|2 +703634|39001568849|2 +653560|39001569000|2 +654977|39001569001|2 +796251|39001569002|2 +725197|39001569014|2 +614436|39001569039|2 +655929|39001569040|2 +667686|39001569041|2 +737398|39001569043|2 +862234|39001569044|2 +540303|39001569174|2 +828774|39001569176|4 +768376|39001569357|2 +798725|39001569358|2 +840662|39001569359|2 +798726|39001569361|2 +838639|39001569439|4 +706777|39001569499|2 +683831|39001569500|2 +828773|39001569501|4 +703877|39001569586|2 +557392|39001569589|2 +723568|39001569597|2 +732337|39001569598|2 +741918|39001569599|2 +827310|39001569724|4 +850975|39001569725|2 +878179|39001569726|2 +476874|39001569934|2 +900759|39001570006|2 +831538|39001570024|4 +636286|39001570027|2 +579990|39001570030|2 +652055|39001570033|2 +454291|39001570034|2 +851090|39001570152|2 +523507|39001570153|2 +838392|39001570154|4 +871717|39001570281|2 +507649|39001570421|2 +498639|39001570503|2 +844086|39001570511|2 +458351|39001570514|2 +500398|39001570626|2 +616928|39001570630|2 +791176|39001570820|2 +799615|39001570821|2 +752387|39001570864|2 +592639|39001571164|2 +580049|39001571167|2 +760074|39001571170|2 +500980|39001571396|2 +616418|39001571397|2 +862170|39001571409|2 +528349|39001571602|2 +832244|39001571604|4 +640801|39001571625|2 +476623|39001571708|2 +724240|39001571903|2 +725745|39001571904|2 +757989|39001571905|2 +708858|39001571983|2 +560441|39001571997|2 +668799|39001572013|2 +782130|39001572014|2 +696977|39001572148|2 +510645|39001572252|2 +645764|39001572253|2 +504649|39001572344|2 +767569|39001572347|2 +800166|39001572348|2 +641437|39001572569|2 +496375|39001572603|2 +695774|39001572673|2 +784881|39001572674|2 +487270|39001572863|2 +773304|39001572864|2 +787323|39001572943|2 +536903|39001572982|2 +490814|39001573071|2 +603945|39001573073|2 +890525|39001573077|4 +895897|39001573078|2 +574524|39001573182|2 +529451|39001573269|2 +781426|39001573343|2 +863584|39001573349|2 +527528|39001573471|2 +583746|39001573472|2 +616341|39001573577|2 +641607|39001573954|2 +831613|39001573957|4 +597112|39001574093|2 +670165|39001574096|2 +608628|39001574118|2 +476698|39001574159|2 +476635|39001574160|2 +532972|39001574263|2 +454838|39001574282|2 +603902|39001574337|2 +749971|39001574345|2 +578866|39001574440|2 +844767|39001574441|2 +853998|39001574442|2 +678328|39001574755|2 +520627|39001574798|2 +697217|39001574821|2 +706638|39001574822|2 +531695|39001574992|2 +569576|39001575057|2 +550551|39001575174|2 +566970|39001575244|2 +575485|39001575306|2 +773334|39001575401|2 +992771|39001575402|2 +456274|39001575520|2 +604915|39001575522|2 +866866|39001575527|2 +992772|39001575528|2 +850764|39001575645|2 +646960|39001575709|2 +622265|39001575787|2 +556796|39001575873|2 +584743|39001575875|2 +612929|39001575876|2 +666365|39001575877|2 +730335|39001575880|2 +744851|39001575884|2 +749588|39001575886|4 +543010|39001576049|2 +679012|39001576060|2 +730338|39001576066|2 +741851|39001576067|2 +531895|39001576176|2 +829504|39001576180|4 +1252821|39001576183|2 +550939|39001576245|2 +640196|39001576349|2 +1047180|39001576355|2 +591460|39001576358|2 +727671|39001576471|2 +787000|39001576473|2 +880013|39001576474|2 +563712|39001576619|2 +772316|39001576625|2 +846506|39001576751|2 +700655|39001576835|2 +751114|39001576873|2 +691546|39001576910|2 +504056|39001577028|4 +503787|39001577119|2 +508028|39001577123|2 +577414|39001577125|2 +707757|39001577126|2 +842880|39001577129|2 +482528|39001577186|2 +745244|39001577187|2 +458340|39001577237|2 +575666|39001577303|2 +744730|39001577375|2 +552104|39001577385|2 +476835|39001577482|2 +735489|39001577544|2 +557758|39001577589|2 +828134|39001577590|4 +865056|39001577597|2 diff --git a/js/leaflet.draw.js b/js/leaflet.draw.js new file mode 100644 index 0000000..71aeb33 --- /dev/null +++ b/js/leaflet.draw.js @@ -0,0 +1,10 @@ +/* + Leaflet.draw 1.0.4, a plugin that adds drawing and editing tools to Leaflet powered maps. + (c) 2012-2017, Jacob Toye, Jon West, Smartrak, Leaflet + + https://github.com/Leaflet/Leaflet.draw + http://leafletjs.com + */ +!function(t,e,i){function o(t,e){for(;(t=t.parentElement)&&!t.classList.contains(e););return t}L.drawVersion="1.0.4",L.Draw={},L.drawLocal={draw:{toolbar:{actions:{title:"Cancel drawing",text:"Cancel"},finish:{title:"Finish drawing",text:"Finish"},undo:{title:"Delete last point drawn",text:"Delete last point"},buttons:{polyline:"Draw a polyline",polygon:"Draw a polygon",rectangle:"Draw a rectangle",circle:"Draw a circle",marker:"Draw a marker",circlemarker:"Draw a circlemarker"}},handlers:{circle:{tooltip:{start:"Click and drag to draw circle."},radius:"Radius"},circlemarker:{tooltip:{start:"Click map to place circle marker."}},marker:{tooltip:{start:"Click map to place marker."}},polygon:{tooltip:{start:"Click to start drawing shape.",cont:"Click to continue drawing shape.",end:"Click first point to close this shape."}},polyline:{error:"Error: shape edges cannot cross!",tooltip:{start:"Click to start drawing line.",cont:"Click to continue drawing line.",end:"Click last point to finish line."}},rectangle:{tooltip:{start:"Click and drag to draw rectangle."}},simpleshape:{tooltip:{end:"Release mouse to finish drawing."}}}},edit:{toolbar:{actions:{save:{title:"Save changes",text:"Save"},cancel:{title:"Cancel editing, discards all changes",text:"Cancel"},clearAll:{title:"Clear all layers",text:"Clear All"}},buttons:{edit:"Edit layers",editDisabled:"No layers to edit",remove:"Delete layers",removeDisabled:"No layers to delete"}},handlers:{edit:{tooltip:{text:"Drag handles or markers to edit features.",subtext:"Click cancel to undo changes."}},remove:{tooltip:{text:"Click on a feature to remove."}}}}},L.Draw.Event={},L.Draw.Event.CREATED="draw:created",L.Draw.Event.EDITED="draw:edited",L.Draw.Event.DELETED="draw:deleted",L.Draw.Event.DRAWSTART="draw:drawstart",L.Draw.Event.DRAWSTOP="draw:drawstop",L.Draw.Event.DRAWVERTEX="draw:drawvertex",L.Draw.Event.EDITSTART="draw:editstart",L.Draw.Event.EDITMOVE="draw:editmove",L.Draw.Event.EDITRESIZE="draw:editresize",L.Draw.Event.EDITVERTEX="draw:editvertex",L.Draw.Event.EDITSTOP="draw:editstop",L.Draw.Event.DELETESTART="draw:deletestart",L.Draw.Event.DELETESTOP="draw:deletestop",L.Draw.Event.TOOLBAROPENED="draw:toolbaropened",L.Draw.Event.TOOLBARCLOSED="draw:toolbarclosed",L.Draw.Event.MARKERCONTEXT="draw:markercontext",L.Draw=L.Draw||{},L.Draw.Feature=L.Handler.extend({initialize:function(t,e){this._map=t,this._container=t._container,this._overlayPane=t._panes.overlayPane,this._popupPane=t._panes.popupPane,e&&e.shapeOptions&&(e.shapeOptions=L.Util.extend({},this.options.shapeOptions,e.shapeOptions)),L.setOptions(this,e);var i=L.version.split(".");1===parseInt(i[0],10)&&parseInt(i[1],10)>=2?L.Draw.Feature.include(L.Evented.prototype):L.Draw.Feature.include(L.Mixin.Events)},enable:function(){this._enabled||(L.Handler.prototype.enable.call(this),this.fire("enabled",{handler:this.type}),this._map.fire(L.Draw.Event.DRAWSTART,{layerType:this.type}))},disable:function(){this._enabled&&(L.Handler.prototype.disable.call(this),this._map.fire(L.Draw.Event.DRAWSTOP,{layerType:this.type}),this.fire("disabled",{handler:this.type}))},addHooks:function(){var t=this._map;t&&(L.DomUtil.disableTextSelection(),t.getContainer().focus(),this._tooltip=new L.Draw.Tooltip(this._map),L.DomEvent.on(this._container,"keyup",this._cancelDrawing,this))},removeHooks:function(){this._map&&(L.DomUtil.enableTextSelection(),this._tooltip.dispose(),this._tooltip=null,L.DomEvent.off(this._container,"keyup",this._cancelDrawing,this))},setOptions:function(t){L.setOptions(this,t)},_fireCreatedEvent:function(t){this._map.fire(L.Draw.Event.CREATED,{layer:t,layerType:this.type})},_cancelDrawing:function(t){27===t.keyCode&&(this._map.fire("draw:canceled",{layerType:this.type}),this.disable())}}),L.Draw.Polyline=L.Draw.Feature.extend({statics:{TYPE:"polyline"},Poly:L.Polyline,options:{allowIntersection:!0,repeatMode:!1,drawError:{color:"#b00b00",timeout:2500},icon:new L.DivIcon({iconSize:new L.Point(8,8),className:"leaflet-div-icon leaflet-editing-icon"}),touchIcon:new L.DivIcon({iconSize:new L.Point(20,20),className:"leaflet-div-icon leaflet-editing-icon leaflet-touch-icon"}),guidelineDistance:20,maxGuideLineLength:4e3,shapeOptions:{stroke:!0,color:"#3388ff",weight:4,opacity:.5,fill:!1,clickable:!0},metric:!0,feet:!0,nautic:!1,showLength:!0,zIndexOffset:2e3,factor:1,maxPoints:0},initialize:function(t,e){L.Browser.touch&&(this.options.icon=this.options.touchIcon),this.options.drawError.message=L.drawLocal.draw.handlers.polyline.error,e&&e.drawError&&(e.drawError=L.Util.extend({},this.options.drawError,e.drawError)),this.type=L.Draw.Polyline.TYPE,L.Draw.Feature.prototype.initialize.call(this,t,e)},addHooks:function(){L.Draw.Feature.prototype.addHooks.call(this),this._map&&(this._markers=[],this._markerGroup=new L.LayerGroup,this._map.addLayer(this._markerGroup),this._poly=new L.Polyline([],this.options.shapeOptions),this._tooltip.updateContent(this._getTooltipText()),this._mouseMarker||(this._mouseMarker=L.marker(this._map.getCenter(),{icon:L.divIcon({className:"leaflet-mouse-marker",iconAnchor:[20,20],iconSize:[40,40]}),opacity:0,zIndexOffset:this.options.zIndexOffset})),this._mouseMarker.on("mouseout",this._onMouseOut,this).on("mousemove",this._onMouseMove,this).on("mousedown",this._onMouseDown,this).on("mouseup",this._onMouseUp,this).addTo(this._map),this._map.on("mouseup",this._onMouseUp,this).on("mousemove",this._onMouseMove,this).on("zoomlevelschange",this._onZoomEnd,this).on("touchstart",this._onTouch,this).on("zoomend",this._onZoomEnd,this))},removeHooks:function(){L.Draw.Feature.prototype.removeHooks.call(this),this._clearHideErrorTimeout(),this._cleanUpShape(),this._map.removeLayer(this._markerGroup),delete this._markerGroup,delete this._markers,this._map.removeLayer(this._poly),delete this._poly,this._mouseMarker.off("mousedown",this._onMouseDown,this).off("mouseout",this._onMouseOut,this).off("mouseup",this._onMouseUp,this).off("mousemove",this._onMouseMove,this),this._map.removeLayer(this._mouseMarker),delete this._mouseMarker,this._clearGuides(),this._map.off("mouseup",this._onMouseUp,this).off("mousemove",this._onMouseMove,this).off("zoomlevelschange",this._onZoomEnd,this).off("zoomend",this._onZoomEnd,this).off("touchstart",this._onTouch,this).off("click",this._onTouch,this)},deleteLastVertex:function(){if(!(this._markers.length<=1)){var t=this._markers.pop(),e=this._poly,i=e.getLatLngs(),o=i.splice(-1,1)[0];this._poly.setLatLngs(i),this._markerGroup.removeLayer(t),e.getLatLngs().length<2&&this._map.removeLayer(e),this._vertexChanged(o,!1)}},addVertex:function(t){if(this._markers.length>=2&&!this.options.allowIntersection&&this._poly.newLatLngIntersects(t))return void this._showErrorTooltip();this._errorShown&&this._hideErrorTooltip(),this._markers.push(this._createMarker(t)),this._poly.addLatLng(t),2===this._poly.getLatLngs().length&&this._map.addLayer(this._poly),this._vertexChanged(t,!0)},completeShape:function(){this._markers.length<=1||!this._shapeIsValid()||(this._fireCreatedEvent(),this.disable(),this.options.repeatMode&&this.enable())},_finishShape:function(){var t=this._poly._defaultShape?this._poly._defaultShape():this._poly.getLatLngs(),e=this._poly.newLatLngIntersects(t[t.length-1]);if(!this.options.allowIntersection&&e||!this._shapeIsValid())return void this._showErrorTooltip();this._fireCreatedEvent(),this.disable(),this.options.repeatMode&&this.enable()},_shapeIsValid:function(){return!0},_onZoomEnd:function(){null!==this._markers&&this._updateGuide()},_onMouseMove:function(t){var e=this._map.mouseEventToLayerPoint(t.originalEvent),i=this._map.layerPointToLatLng(e);this._currentLatLng=i,this._updateTooltip(i),this._updateGuide(e),this._mouseMarker.setLatLng(i),L.DomEvent.preventDefault(t.originalEvent)},_vertexChanged:function(t,e){this._map.fire(L.Draw.Event.DRAWVERTEX,{layers:this._markerGroup}),this._updateFinishHandler(),this._updateRunningMeasure(t,e),this._clearGuides(),this._updateTooltip()},_onMouseDown:function(t){if(!this._clickHandled&&!this._touchHandled&&!this._disableMarkers){this._onMouseMove(t),this._clickHandled=!0,this._disableNewMarkers();var e=t.originalEvent,i=e.clientX,o=e.clientY;this._startPoint.call(this,i,o)}},_startPoint:function(t,e){this._mouseDownOrigin=L.point(t,e)},_onMouseUp:function(t){var e=t.originalEvent,i=e.clientX,o=e.clientY;this._endPoint.call(this,i,o,t),this._clickHandled=null},_endPoint:function(e,i,o){if(this._mouseDownOrigin){var a=L.point(e,i).distanceTo(this._mouseDownOrigin),n=this._calculateFinishDistance(o.latlng);this.options.maxPoints>1&&this.options.maxPoints==this._markers.length+1?(this.addVertex(o.latlng),this._finishShape()):n<10&&L.Browser.touch?this._finishShape():Math.abs(a)<9*(t.devicePixelRatio||1)&&this.addVertex(o.latlng),this._enableNewMarkers()}this._mouseDownOrigin=null},_onTouch:function(t){var e,i,o=t.originalEvent;!o.touches||!o.touches[0]||this._clickHandled||this._touchHandled||this._disableMarkers||(e=o.touches[0].clientX,i=o.touches[0].clientY,this._disableNewMarkers(),this._touchHandled=!0,this._startPoint.call(this,e,i),this._endPoint.call(this,e,i,t),this._touchHandled=null),this._clickHandled=null},_onMouseOut:function(){this._tooltip&&this._tooltip._onMouseOut.call(this._tooltip)},_calculateFinishDistance:function(t){var e;if(this._markers.length>0){var i;if(this.type===L.Draw.Polyline.TYPE)i=this._markers[this._markers.length-1];else{if(this.type!==L.Draw.Polygon.TYPE)return 1/0;i=this._markers[0]}var o=this._map.latLngToContainerPoint(i.getLatLng()),a=new L.Marker(t,{icon:this.options.icon,zIndexOffset:2*this.options.zIndexOffset}),n=this._map.latLngToContainerPoint(a.getLatLng());e=o.distanceTo(n)}else e=1/0;return e},_updateFinishHandler:function(){var t=this._markers.length;t>1&&this._markers[t-1].on("click",this._finishShape,this),t>2&&this._markers[t-2].off("click",this._finishShape,this)},_createMarker:function(t){var e=new L.Marker(t,{icon:this.options.icon,zIndexOffset:2*this.options.zIndexOffset});return this._markerGroup.addLayer(e),e},_updateGuide:function(t){var e=this._markers?this._markers.length:0;e>0&&(t=t||this._map.latLngToLayerPoint(this._currentLatLng),this._clearGuides(),this._drawGuide(this._map.latLngToLayerPoint(this._markers[e-1].getLatLng()),t))},_updateTooltip:function(t){var e=this._getTooltipText();t&&this._tooltip.updatePosition(t),this._errorShown||this._tooltip.updateContent(e)},_drawGuide:function(t,e){var i,o,a,n=Math.floor(Math.sqrt(Math.pow(e.x-t.x,2)+Math.pow(e.y-t.y,2))),s=this.options.guidelineDistance,r=this.options.maxGuideLineLength,l=n>r?n-r:s;for(this._guidesContainer||(this._guidesContainer=L.DomUtil.create("div","leaflet-draw-guides",this._overlayPane));l1&&this._markers[this._markers.length-1].off("click",this._finishShape,this)},_fireCreatedEvent:function(){var t=new this.Poly(this._poly.getLatLngs(),this.options.shapeOptions);L.Draw.Feature.prototype._fireCreatedEvent.call(this,t)}}),L.Draw.Polygon=L.Draw.Polyline.extend({statics:{TYPE:"polygon"},Poly:L.Polygon,options:{showArea:!1,showLength:!1,shapeOptions:{stroke:!0,color:"#3388ff",weight:4,opacity:.5,fill:!0,fillColor:null,fillOpacity:.2,clickable:!0},metric:!0,feet:!0,nautic:!1,precision:{}},initialize:function(t,e){L.Draw.Polyline.prototype.initialize.call(this,t,e),this.type=L.Draw.Polygon.TYPE},_updateFinishHandler:function(){var t=this._markers.length;1===t&&this._markers[0].on("click",this._finishShape,this),t>2&&(this._markers[t-1].on("dblclick",this._finishShape,this),t>3&&this._markers[t-2].off("dblclick",this._finishShape,this))},_getTooltipText:function(){var t,e;return 0===this._markers.length?t=L.drawLocal.draw.handlers.polygon.tooltip.start:this._markers.length<3?(t=L.drawLocal.draw.handlers.polygon.tooltip.cont,e=this._getMeasurementString()):(t=L.drawLocal.draw.handlers.polygon.tooltip.end,e=this._getMeasurementString()),{text:t,subtext:e}},_getMeasurementString:function(){var t=this._area,e="";return t||this.options.showLength?(this.options.showLength&&(e=L.Draw.Polyline.prototype._getMeasurementString.call(this)),t&&(e+="
"+L.GeometryUtil.readableArea(t,this.options.metric,this.options.precision)),e):null},_shapeIsValid:function(){return this._markers.length>=3},_vertexChanged:function(t,e){var i;!this.options.allowIntersection&&this.options.showArea&&(i=this._poly.getLatLngs(),this._area=L.GeometryUtil.geodesicArea(i)),L.Draw.Polyline.prototype._vertexChanged.call(this,t,e)},_cleanUpShape:function(){var t=this._markers.length;t>0&&(this._markers[0].off("click",this._finishShape,this),t>2&&this._markers[t-1].off("dblclick",this._finishShape,this))}}),L.SimpleShape={},L.Draw.SimpleShape=L.Draw.Feature.extend({options:{repeatMode:!1},initialize:function(t,e){this._endLabelText=L.drawLocal.draw.handlers.simpleshape.tooltip.end,L.Draw.Feature.prototype.initialize.call(this,t,e)},addHooks:function(){L.Draw.Feature.prototype.addHooks.call(this),this._map&&(this._mapDraggable=this._map.dragging.enabled(),this._mapDraggable&&this._map.dragging.disable(),this._container.style.cursor="crosshair",this._tooltip.updateContent({text:this._initialLabelText}),this._map.on("mousedown",this._onMouseDown,this).on("mousemove",this._onMouseMove,this).on("touchstart",this._onMouseDown,this).on("touchmove",this._onMouseMove,this),e.addEventListener("touchstart",L.DomEvent.preventDefault,{passive:!1}))},removeHooks:function(){L.Draw.Feature.prototype.removeHooks.call(this),this._map&&(this._mapDraggable&&this._map.dragging.enable(),this._container.style.cursor="",this._map.off("mousedown",this._onMouseDown,this).off("mousemove",this._onMouseMove,this).off("touchstart",this._onMouseDown,this).off("touchmove",this._onMouseMove,this),L.DomEvent.off(e,"mouseup",this._onMouseUp,this),L.DomEvent.off(e,"touchend",this._onMouseUp,this),e.removeEventListener("touchstart",L.DomEvent.preventDefault),this._shape&&(this._map.removeLayer(this._shape),delete this._shape)),this._isDrawing=!1},_getTooltipText:function(){return{text:this._endLabelText}},_onMouseDown:function(t){this._isDrawing=!0,this._startLatLng=t.latlng,L.DomEvent.on(e,"mouseup",this._onMouseUp,this).on(e,"touchend",this._onMouseUp,this).preventDefault(t.originalEvent)},_onMouseMove:function(t){var e=t.latlng;this._tooltip.updatePosition(e),this._isDrawing&&(this._tooltip.updateContent(this._getTooltipText()),this._drawShape(e))},_onMouseUp:function(){this._shape&&this._fireCreatedEvent(),this.disable(),this.options.repeatMode&&this.enable()}}),L.Draw.Rectangle=L.Draw.SimpleShape.extend({statics:{TYPE:"rectangle"},options:{shapeOptions:{stroke:!0,color:"#3388ff",weight:4,opacity:.5,fill:!0,fillColor:null,fillOpacity:.2,clickable:!0},showArea:!0,metric:!0},initialize:function(t,e){this.type=L.Draw.Rectangle.TYPE,this._initialLabelText=L.drawLocal.draw.handlers.rectangle.tooltip.start,L.Draw.SimpleShape.prototype.initialize.call(this,t,e)},disable:function(){this._enabled&&(this._isCurrentlyTwoClickDrawing=!1,L.Draw.SimpleShape.prototype.disable.call(this))},_onMouseUp:function(t){if(!this._shape&&!this._isCurrentlyTwoClickDrawing)return void(this._isCurrentlyTwoClickDrawing=!0);this._isCurrentlyTwoClickDrawing&&!o(t.target,"leaflet-pane")||L.Draw.SimpleShape.prototype._onMouseUp.call(this)},_drawShape:function(t){this._shape?this._shape.setBounds(new L.LatLngBounds(this._startLatLng,t)):(this._shape=new L.Rectangle(new L.LatLngBounds(this._startLatLng,t),this.options.shapeOptions),this._map.addLayer(this._shape))},_fireCreatedEvent:function(){var t=new L.Rectangle(this._shape.getBounds(),this.options.shapeOptions);L.Draw.SimpleShape.prototype._fireCreatedEvent.call(this,t)},_getTooltipText:function(){var t,e,i,o=L.Draw.SimpleShape.prototype._getTooltipText.call(this),a=this._shape,n=this.options.showArea;return a&&(t=this._shape._defaultShape?this._shape._defaultShape():this._shape.getLatLngs(),e=L.GeometryUtil.geodesicArea(t),i=n?L.GeometryUtil.readableArea(e,this.options.metric):""),{text:o.text,subtext:i}}}),L.Draw.Marker=L.Draw.Feature.extend({statics:{TYPE:"marker"},options:{icon:new L.Icon.Default,repeatMode:!1,zIndexOffset:2e3},initialize:function(t,e){this.type=L.Draw.Marker.TYPE,this._initialLabelText=L.drawLocal.draw.handlers.marker.tooltip.start,L.Draw.Feature.prototype.initialize.call(this,t,e)},addHooks:function(){L.Draw.Feature.prototype.addHooks.call(this),this._map&&(this._tooltip.updateContent({text:this._initialLabelText}),this._mouseMarker||(this._mouseMarker=L.marker(this._map.getCenter(),{icon:L.divIcon({className:"leaflet-mouse-marker",iconAnchor:[20,20],iconSize:[40,40]}),opacity:0,zIndexOffset:this.options.zIndexOffset})),this._mouseMarker.on("click",this._onClick,this).addTo(this._map),this._map.on("mousemove",this._onMouseMove,this),this._map.on("click",this._onTouch,this))},removeHooks:function(){L.Draw.Feature.prototype.removeHooks.call(this),this._map&&(this._map.off("click",this._onClick,this).off("click",this._onTouch,this),this._marker&&(this._marker.off("click",this._onClick,this),this._map.removeLayer(this._marker),delete this._marker),this._mouseMarker.off("click",this._onClick,this),this._map.removeLayer(this._mouseMarker),delete this._mouseMarker,this._map.off("mousemove",this._onMouseMove,this))},_onMouseMove:function(t){var e=t.latlng;this._tooltip.updatePosition(e),this._mouseMarker.setLatLng(e),this._marker?(e=this._mouseMarker.getLatLng(),this._marker.setLatLng(e)):(this._marker=this._createMarker(e),this._marker.on("click",this._onClick,this),this._map.on("click",this._onClick,this).addLayer(this._marker))},_createMarker:function(t){return new L.Marker(t,{icon:this.options.icon,zIndexOffset:this.options.zIndexOffset})},_onClick:function(){this._fireCreatedEvent(),this.disable(),this.options.repeatMode&&this.enable()},_onTouch:function(t){this._onMouseMove(t),this._onClick()},_fireCreatedEvent:function(){var t=new L.Marker.Touch(this._marker.getLatLng(),{icon:this.options.icon});L.Draw.Feature.prototype._fireCreatedEvent.call(this,t)}}),L.Draw.CircleMarker=L.Draw.Marker.extend({statics:{TYPE:"circlemarker"},options:{stroke:!0,color:"#3388ff",weight:4,opacity:.5,fill:!0,fillColor:null,fillOpacity:.2,clickable:!0,zIndexOffset:2e3},initialize:function(t,e){this.type=L.Draw.CircleMarker.TYPE,this._initialLabelText=L.drawLocal.draw.handlers.circlemarker.tooltip.start,L.Draw.Feature.prototype.initialize.call(this,t,e)},_fireCreatedEvent:function(){var t=new L.CircleMarker(this._marker.getLatLng(),this.options);L.Draw.Feature.prototype._fireCreatedEvent.call(this,t)},_createMarker:function(t){return new L.CircleMarker(t,this.options)}}),L.Draw.Circle=L.Draw.SimpleShape.extend({statics:{TYPE:"circle"},options:{shapeOptions:{stroke:!0,color:"#3388ff",weight:4,opacity:.5,fill:!0,fillColor:null,fillOpacity:.2,clickable:!0},showRadius:!0,metric:!0,feet:!0,nautic:!1},initialize:function(t,e){this.type=L.Draw.Circle.TYPE,this._initialLabelText=L.drawLocal.draw.handlers.circle.tooltip.start,L.Draw.SimpleShape.prototype.initialize.call(this,t,e)},_drawShape:function(t){if(L.GeometryUtil.isVersion07x())var e=this._startLatLng.distanceTo(t);else var e=this._map.distance(this._startLatLng,t);this._shape?this._shape.setRadius(e):(this._shape=new L.Circle(this._startLatLng,e,this.options.shapeOptions),this._map.addLayer(this._shape))},_fireCreatedEvent:function(){var t=new L.Circle(this._startLatLng,this._shape.getRadius(),this.options.shapeOptions);L.Draw.SimpleShape.prototype._fireCreatedEvent.call(this,t)},_onMouseMove:function(t){var e,i=t.latlng,o=this.options.showRadius,a=this.options.metric;if(this._tooltip.updatePosition(i),this._isDrawing){this._drawShape(i),e=this._shape.getRadius().toFixed(1);var n="";o&&(n=L.drawLocal.draw.handlers.circle.radius+": "+L.GeometryUtil.readableDistance(e,a,this.options.feet,this.options.nautic)),this._tooltip.updateContent({text:this._endLabelText,subtext:n})}}}),L.Edit=L.Edit||{},L.Edit.Marker=L.Handler.extend({initialize:function(t,e){this._marker=t,L.setOptions(this,e)},addHooks:function(){var t=this._marker;t.dragging.enable(),t.on("dragend",this._onDragEnd,t),this._toggleMarkerHighlight()},removeHooks:function(){var t=this._marker;t.dragging.disable(),t.off("dragend",this._onDragEnd,t),this._toggleMarkerHighlight()},_onDragEnd:function(t){var e=t.target;e.edited=!0,this._map.fire(L.Draw.Event.EDITMOVE,{layer:e})},_toggleMarkerHighlight:function(){var t=this._marker._icon;t&&(t.style.display="none",L.DomUtil.hasClass(t,"leaflet-edit-marker-selected")?(L.DomUtil.removeClass(t,"leaflet-edit-marker-selected"),this._offsetMarker(t,-4)):(L.DomUtil.addClass(t,"leaflet-edit-marker-selected"),this._offsetMarker(t,4)),t.style.display="")},_offsetMarker:function(t,e){var i=parseInt(t.style.marginTop,10)-e,o=parseInt(t.style.marginLeft,10)-e;t.style.marginTop=i+"px",t.style.marginLeft=o+"px"}}),L.Marker.addInitHook(function(){L.Edit.Marker&&(this.editing=new L.Edit.Marker(this),this.options.editable&&this.editing.enable())}),L.Edit=L.Edit||{},L.Edit.Poly=L.Handler.extend({initialize:function(t){this.latlngs=[t._latlngs],t._holes&&(this.latlngs=this.latlngs.concat(t._holes)),this._poly=t,this._poly.on("revert-edited",this._updateLatLngs,this)},_defaultShape:function(){return L.Polyline._flat?L.Polyline._flat(this._poly._latlngs)?this._poly._latlngs:this._poly._latlngs[0]:this._poly._latlngs},_eachVertexHandler:function(t){for(var e=0;et&&(i._index+=e)})},_createMiddleMarker:function(t,e){var i,o,a,n=this._getMiddleLatLng(t,e),s=this._createMarker(n);s.setOpacity(.6),t._middleRight=e._middleLeft=s,o=function(){s.off("touchmove",o,this);var a=e._index;s._index=a,s.off("click",i,this).on("click",this._onMarkerClick,this),n.lat=s.getLatLng().lat,n.lng=s.getLatLng().lng,this._spliceLatLngs(a,0,n),this._markers.splice(a,0,s),s.setOpacity(1),this._updateIndexes(a,1),e._index++,this._updatePrevNext(t,s),this._updatePrevNext(s,e),this._poly.fire("editstart")},a=function(){s.off("dragstart",o,this),s.off("dragend",a,this),s.off("touchmove",o,this),this._createMiddleMarker(t,s),this._createMiddleMarker(s,e)},i=function(){o.call(this),a.call(this),this._fireEdit()},s.on("click",i,this).on("dragstart",o,this).on("dragend",a,this).on("touchmove",o,this),this._markerGroup.addLayer(s)},_updatePrevNext:function(t,e){t&&(t._next=e),e&&(e._prev=t)},_getMiddleLatLng:function(t,e){var i=this._poly._map,o=i.project(t.getLatLng()),a=i.project(e.getLatLng());return i.unproject(o._add(a)._divideBy(2))}}),L.Polyline.addInitHook(function(){this.editing||(L.Edit.Poly&&(this.editing=new L.Edit.Poly(this),this.options.editable&&this.editing.enable()),this.on("add",function(){this.editing&&this.editing.enabled()&&this.editing.addHooks()}),this.on("remove",function(){this.editing&&this.editing.enabled()&&this.editing.removeHooks()}))}),L.Edit=L.Edit||{},L.Edit.SimpleShape=L.Handler.extend({options:{moveIcon:new L.DivIcon({iconSize:new L.Point(8,8),className:"leaflet-div-icon leaflet-editing-icon leaflet-edit-move"}),resizeIcon:new L.DivIcon({iconSize:new L.Point(8,8), +className:"leaflet-div-icon leaflet-editing-icon leaflet-edit-resize"}),touchMoveIcon:new L.DivIcon({iconSize:new L.Point(20,20),className:"leaflet-div-icon leaflet-editing-icon leaflet-edit-move leaflet-touch-icon"}),touchResizeIcon:new L.DivIcon({iconSize:new L.Point(20,20),className:"leaflet-div-icon leaflet-editing-icon leaflet-edit-resize leaflet-touch-icon"})},initialize:function(t,e){L.Browser.touch&&(this.options.moveIcon=this.options.touchMoveIcon,this.options.resizeIcon=this.options.touchResizeIcon),this._shape=t,L.Util.setOptions(this,e)},addHooks:function(){var t=this._shape;this._shape._map&&(this._map=this._shape._map,t.setStyle(t.options.editing),t._map&&(this._map=t._map,this._markerGroup||this._initMarkers(),this._map.addLayer(this._markerGroup)))},removeHooks:function(){var t=this._shape;if(t.setStyle(t.options.original),t._map){this._unbindMarker(this._moveMarker);for(var e=0,i=this._resizeMarkers.length;e"+L.drawLocal.edit.handlers.edit.tooltip.text,subtext:L.drawLocal.draw.handlers.circle.radius+": "+L.GeometryUtil.readableDistance(radius,!0,this.options.feet,this.options.nautic)}),this._shape.setRadius(radius),this._map.fire(L.Draw.Event.EDITRESIZE,{layer:this._shape})}}),L.Circle.addInitHook(function(){L.Edit.Circle&&(this.editing=new L.Edit.Circle(this),this.options.editable&&this.editing.enable())}),L.Map.mergeOptions({touchExtend:!0}),L.Map.TouchExtend=L.Handler.extend({initialize:function(t){this._map=t,this._container=t._container,this._pane=t._panes.overlayPane},addHooks:function(){L.DomEvent.on(this._container,"touchstart",this._onTouchStart,this),L.DomEvent.on(this._container,"touchend",this._onTouchEnd,this),L.DomEvent.on(this._container,"touchmove",this._onTouchMove,this),this._detectIE()?(L.DomEvent.on(this._container,"MSPointerDown",this._onTouchStart,this),L.DomEvent.on(this._container,"MSPointerUp",this._onTouchEnd,this),L.DomEvent.on(this._container,"MSPointerMove",this._onTouchMove,this),L.DomEvent.on(this._container,"MSPointerCancel",this._onTouchCancel,this)):(L.DomEvent.on(this._container,"touchcancel",this._onTouchCancel,this),L.DomEvent.on(this._container,"touchleave",this._onTouchLeave,this))},removeHooks:function(){L.DomEvent.off(this._container,"touchstart",this._onTouchStart,this),L.DomEvent.off(this._container,"touchend",this._onTouchEnd,this),L.DomEvent.off(this._container,"touchmove",this._onTouchMove,this),this._detectIE()?(L.DomEvent.off(this._container,"MSPointerDown",this._onTouchStart,this),L.DomEvent.off(this._container,"MSPointerUp",this._onTouchEnd,this),L.DomEvent.off(this._container,"MSPointerMove",this._onTouchMove,this),L.DomEvent.off(this._container,"MSPointerCancel",this._onTouchCancel,this)):(L.DomEvent.off(this._container,"touchcancel",this._onTouchCancel,this),L.DomEvent.off(this._container,"touchleave",this._onTouchLeave,this))},_touchEvent:function(t,e){var i={};if(void 0!==t.touches){if(!t.touches.length)return;i=t.touches[0]}else{if("touch"!==t.pointerType)return;if(i=t,!this._filterClick(t))return}var o=this._map.mouseEventToContainerPoint(i),a=this._map.mouseEventToLayerPoint(i),n=this._map.layerPointToLatLng(a);this._map.fire(e,{latlng:n,layerPoint:a,containerPoint:o,pageX:i.pageX,pageY:i.pageY,originalEvent:t})},_filterClick:function(t){var e=t.timeStamp||t.originalEvent.timeStamp,i=L.DomEvent._lastClick&&e-L.DomEvent._lastClick;return i&&i>100&&i<500||t.target._simulatedClick&&!t._simulated?(L.DomEvent.stop(t),!1):(L.DomEvent._lastClick=e,!0)},_onTouchStart:function(t){if(this._map._loaded){this._touchEvent(t,"touchstart")}},_onTouchEnd:function(t){if(this._map._loaded){this._touchEvent(t,"touchend")}},_onTouchCancel:function(t){if(this._map._loaded){var e="touchcancel";this._detectIE()&&(e="pointercancel"),this._touchEvent(t,e)}},_onTouchLeave:function(t){if(this._map._loaded){this._touchEvent(t,"touchleave")}},_onTouchMove:function(t){if(this._map._loaded){this._touchEvent(t,"touchmove")}},_detectIE:function(){var e=t.navigator.userAgent,i=e.indexOf("MSIE ");if(i>0)return parseInt(e.substring(i+5,e.indexOf(".",i)),10);if(e.indexOf("Trident/")>0){var o=e.indexOf("rv:");return parseInt(e.substring(o+3,e.indexOf(".",o)),10)}var a=e.indexOf("Edge/");return a>0&&parseInt(e.substring(a+5,e.indexOf(".",a)),10)}}),L.Map.addInitHook("addHandler","touchExtend",L.Map.TouchExtend),L.Marker.Touch=L.Marker.extend({_initInteraction:function(){return this.addInteractiveTarget?L.Marker.prototype._initInteraction.apply(this):this._initInteractionLegacy()},_initInteractionLegacy:function(){if(this.options.clickable){var t=this._icon,e=["dblclick","mousedown","mouseover","mouseout","contextmenu","touchstart","touchend","touchmove"];this._detectIE?e.concat(["MSPointerDown","MSPointerUp","MSPointerMove","MSPointerCancel"]):e.concat(["touchcancel"]),L.DomUtil.addClass(t,"leaflet-clickable"),L.DomEvent.on(t,"click",this._onMouseClick,this),L.DomEvent.on(t,"keypress",this._onKeyPress,this);for(var i=0;i0)return parseInt(e.substring(i+5,e.indexOf(".",i)),10);if(e.indexOf("Trident/")>0){var o=e.indexOf("rv:");return parseInt(e.substring(o+3,e.indexOf(".",o)),10)}var a=e.indexOf("Edge/");return a>0&&parseInt(e.substring(a+5,e.indexOf(".",a)),10)}}),L.LatLngUtil={cloneLatLngs:function(t){for(var e=[],i=0,o=t.length;i2){for(var s=0;s1&&(i=i+s+r[1])}return i},readableArea:function(e,i,o){var a,n,o=L.Util.extend({},t,o);return i?(n=["ha","m"],type=typeof i,"string"===type?n=[i]:"boolean"!==type&&(n=i),a=e>=1e6&&-1!==n.indexOf("km")?L.GeometryUtil.formattedNumber(1e-6*e,o.km)+" km²":e>=1e4&&-1!==n.indexOf("ha")?L.GeometryUtil.formattedNumber(1e-4*e,o.ha)+" ha":L.GeometryUtil.formattedNumber(e,o.m)+" m²"):(e/=.836127,a=e>=3097600?L.GeometryUtil.formattedNumber(e/3097600,o.mi)+" mi²":e>=4840?L.GeometryUtil.formattedNumber(e/4840,o.ac)+" acres":L.GeometryUtil.formattedNumber(e,o.yd)+" yd²"),a},readableDistance:function(e,i,o,a,n){var s,n=L.Util.extend({},t,n);switch(i?"string"==typeof i?i:"metric":o?"feet":a?"nauticalMile":"yards"){case"metric":s=e>1e3?L.GeometryUtil.formattedNumber(e/1e3,n.km)+" km":L.GeometryUtil.formattedNumber(e,n.m)+" m";break;case"feet":e*=3.28083,s=L.GeometryUtil.formattedNumber(e,n.ft)+" ft";break;case"nauticalMile":e*=.53996,s=L.GeometryUtil.formattedNumber(e/1e3,n.nm)+" nm";break;case"yards":default:e*=1.09361,s=e>1760?L.GeometryUtil.formattedNumber(e/1760,n.mi)+" miles":L.GeometryUtil.formattedNumber(e,n.yd)+" yd"}return s},isVersion07x:function(){var t=L.version.split(".");return 0===parseInt(t[0],10)&&7===parseInt(t[1],10)}})}(),L.Util.extend(L.LineUtil,{segmentsIntersect:function(t,e,i,o){return this._checkCounterclockwise(t,i,o)!==this._checkCounterclockwise(e,i,o)&&this._checkCounterclockwise(t,e,i)!==this._checkCounterclockwise(t,e,o)},_checkCounterclockwise:function(t,e,i){return(i.y-t.y)*(e.x-t.x)>(e.y-t.y)*(i.x-t.x)}}),L.Polyline.include({intersects:function(){var t,e,i,o=this._getProjectedPoints(),a=o?o.length:0;if(this._tooFewPointsForIntersection())return!1;for(t=a-1;t>=3;t--)if(e=o[t-1],i=o[t],this._lineSegmentsIntersectsRange(e,i,t-2))return!0;return!1},newLatLngIntersects:function(t,e){return!!this._map&&this.newPointIntersects(this._map.latLngToLayerPoint(t),e)},newPointIntersects:function(t,e){var i=this._getProjectedPoints(),o=i?i.length:0,a=i?i[o-1]:null,n=o-2;return!this._tooFewPointsForIntersection(1)&&this._lineSegmentsIntersectsRange(a,t,n,e?1:0)},_tooFewPointsForIntersection:function(t){var e=this._getProjectedPoints(),i=e?e.length:0;return i+=t||0,!e||i<=3},_lineSegmentsIntersectsRange:function(t,e,i,o){var a,n,s=this._getProjectedPoints();o=o||0;for(var r=i;r>o;r--)if(a=s[r-1],n=s[r],L.LineUtil.segmentsIntersect(t,e,a,n))return!0;return!1},_getProjectedPoints:function(){if(!this._defaultShape)return this._originalPoints;for(var t=[],e=this._defaultShape(),i=0;i=2?L.Toolbar.include(L.Evented.prototype):L.Toolbar.include(L.Mixin.Events)},enabled:function(){return null!==this._activeMode},disable:function(){this.enabled()&&this._activeMode.handler.disable()},addToolbar:function(t){var e,i=L.DomUtil.create("div","leaflet-draw-section"),o=0,a=this._toolbarClass||"",n=this.getModeHandlers(t);for(this._toolbarContainer=L.DomUtil.create("div","leaflet-draw-toolbar leaflet-bar"),this._map=t,e=0;e0&&this._singleLineLabel&&(L.DomUtil.removeClass(this._container,"leaflet-draw-tooltip-single"),this._singleLineLabel=!1):(L.DomUtil.addClass(this._container,"leaflet-draw-tooltip-single"),this._singleLineLabel=!0),this._container.innerHTML=(t.subtext.length>0?''+t.subtext+"
":"")+""+t.text+"",t.text||t.subtext?(this._visible=!0,this._container.style.visibility="inherit"):(this._visible=!1,this._container.style.visibility="hidden"),this):this},updatePosition:function(t){var e=this._map.latLngToLayerPoint(t),i=this._container;return this._container&&(this._visible&&(i.style.visibility="inherit"),L.DomUtil.setPosition(i,e)),this},showAsError:function(){return this._container&&L.DomUtil.addClass(this._container,"leaflet-error-draw-tooltip"),this},removeError:function(){return this._container&&L.DomUtil.removeClass(this._container,"leaflet-error-draw-tooltip"),this},_onMouseOut:function(){this._container&&(this._container.style.visibility="hidden")}}),L.DrawToolbar=L.Toolbar.extend({statics:{TYPE:"draw"},options:{polyline:{},polygon:{},rectangle:{},circle:{},marker:{},circlemarker:{}},initialize:function(t){for(var e in this.options)this.options.hasOwnProperty(e)&&t[e]&&(t[e]=L.extend({},this.options[e],t[e]));this._toolbarClass="leaflet-draw-draw",L.Toolbar.prototype.initialize.call(this,t)},getModeHandlers:function(t){return[{enabled:this.options.polyline,handler:new L.Draw.Polyline(t,this.options.polyline),title:L.drawLocal.draw.toolbar.buttons.polyline},{enabled:this.options.polygon,handler:new L.Draw.Polygon(t,this.options.polygon),title:L.drawLocal.draw.toolbar.buttons.polygon},{enabled:this.options.rectangle,handler:new L.Draw.Rectangle(t,this.options.rectangle),title:L.drawLocal.draw.toolbar.buttons.rectangle},{enabled:this.options.circle,handler:new L.Draw.Circle(t,this.options.circle),title:L.drawLocal.draw.toolbar.buttons.circle},{enabled:this.options.marker,handler:new L.Draw.Marker(t,this.options.marker),title:L.drawLocal.draw.toolbar.buttons.marker},{enabled:this.options.circlemarker,handler:new L.Draw.CircleMarker(t,this.options.circlemarker),title:L.drawLocal.draw.toolbar.buttons.circlemarker}]},getActions:function(t){return[{enabled:t.completeShape,title:L.drawLocal.draw.toolbar.finish.title,text:L.drawLocal.draw.toolbar.finish.text,callback:t.completeShape,context:t},{enabled:t.deleteLastVertex,title:L.drawLocal.draw.toolbar.undo.title,text:L.drawLocal.draw.toolbar.undo.text,callback:t.deleteLastVertex,context:t},{title:L.drawLocal.draw.toolbar.actions.title,text:L.drawLocal.draw.toolbar.actions.text,callback:this.disable,context:this}]},setOptions:function(t){L.setOptions(this,t);for(var e in this._modes)this._modes.hasOwnProperty(e)&&t.hasOwnProperty(e)&&this._modes[e].handler.setOptions(t[e])}}),L.EditToolbar=L.Toolbar.extend({statics:{TYPE:"edit"},options:{edit:{selectedPathOptions:{dashArray:"10, 10",fill:!0,fillColor:"#fe57a1",fillOpacity:.1,maintainColor:!1}},remove:{},poly:null,featureGroup:null},initialize:function(t){t.edit&&(void 0===t.edit.selectedPathOptions&&(t.edit.selectedPathOptions=this.options.edit.selectedPathOptions),t.edit.selectedPathOptions=L.extend({},this.options.edit.selectedPathOptions,t.edit.selectedPathOptions)),t.remove&&(t.remove=L.extend({},this.options.remove,t.remove)),t.poly&&(t.poly=L.extend({},this.options.poly,t.poly)),this._toolbarClass="leaflet-draw-edit",L.Toolbar.prototype.initialize.call(this,t),this._selectedFeatureCount=0},getModeHandlers:function(t){var e=this.options.featureGroup;return[{enabled:this.options.edit,handler:new L.EditToolbar.Edit(t,{featureGroup:e,selectedPathOptions:this.options.edit.selectedPathOptions,poly:this.options.poly}),title:L.drawLocal.edit.toolbar.buttons.edit},{enabled:this.options.remove,handler:new L.EditToolbar.Delete(t,{featureGroup:e}),title:L.drawLocal.edit.toolbar.buttons.remove}]},getActions:function(t){var e=[{title:L.drawLocal.edit.toolbar.actions.save.title,text:L.drawLocal.edit.toolbar.actions.save.text,callback:this._save,context:this},{title:L.drawLocal.edit.toolbar.actions.cancel.title,text:L.drawLocal.edit.toolbar.actions.cancel.text,callback:this.disable,context:this}];return t.removeAllLayers&&e.push({title:L.drawLocal.edit.toolbar.actions.clearAll.title,text:L.drawLocal.edit.toolbar.actions.clearAll.text,callback:this._clearAllLayers,context:this}),e},addToolbar:function(t){var e=L.Toolbar.prototype.addToolbar.call(this,t);return this._checkDisabled(),this.options.featureGroup.on("layeradd layerremove",this._checkDisabled,this),e},removeToolbar:function(){this.options.featureGroup.off("layeradd layerremove",this._checkDisabled,this),L.Toolbar.prototype.removeToolbar.call(this)},disable:function(){this.enabled()&&(this._activeMode.handler.revertLayers(),L.Toolbar.prototype.disable.call(this))},_save:function(){this._activeMode.handler.save(),this._activeMode&&this._activeMode.handler.disable()},_clearAllLayers:function(){this._activeMode.handler.removeAllLayers(),this._activeMode&&this._activeMode.handler.disable()},_checkDisabled:function(){var t,e=this.options.featureGroup,i=0!==e.getLayers().length;this.options.edit&&(t=this._modes[L.EditToolbar.Edit.TYPE].button,i?L.DomUtil.removeClass(t,"leaflet-disabled"):L.DomUtil.addClass(t,"leaflet-disabled"),t.setAttribute("title",i?L.drawLocal.edit.toolbar.buttons.edit:L.drawLocal.edit.toolbar.buttons.editDisabled)),this.options.remove&&(t=this._modes[L.EditToolbar.Delete.TYPE].button,i?L.DomUtil.removeClass(t,"leaflet-disabled"):L.DomUtil.addClass(t,"leaflet-disabled"),t.setAttribute("title",i?L.drawLocal.edit.toolbar.buttons.remove:L.drawLocal.edit.toolbar.buttons.removeDisabled))}}),L.EditToolbar.Edit=L.Handler.extend({statics:{TYPE:"edit"},initialize:function(t,e){if(L.Handler.prototype.initialize.call(this,t),L.setOptions(this,e),this._featureGroup=e.featureGroup,!(this._featureGroup instanceof L.FeatureGroup))throw new Error("options.featureGroup must be a L.FeatureGroup");this._uneditedLayerProps={},this.type=L.EditToolbar.Edit.TYPE;var i=L.version.split(".");1===parseInt(i[0],10)&&parseInt(i[1],10)>=2?L.EditToolbar.Edit.include(L.Evented.prototype):L.EditToolbar.Edit.include(L.Mixin.Events)},enable:function(){!this._enabled&&this._hasAvailableLayers()&&(this.fire("enabled",{handler:this.type}),this._map.fire(L.Draw.Event.EDITSTART,{handler:this.type}),L.Handler.prototype.enable.call(this),this._featureGroup.on("layeradd",this._enableLayerEdit,this).on("layerremove",this._disableLayerEdit,this))},disable:function(){this._enabled&&(this._featureGroup.off("layeradd",this._enableLayerEdit,this).off("layerremove",this._disableLayerEdit,this),L.Handler.prototype.disable.call(this),this._map.fire(L.Draw.Event.EDITSTOP,{handler:this.type}),this.fire("disabled",{handler:this.type}))},addHooks:function(){var t=this._map;t&&(t.getContainer().focus(),this._featureGroup.eachLayer(this._enableLayerEdit,this),this._tooltip=new L.Draw.Tooltip(this._map),this._tooltip.updateContent({text:L.drawLocal.edit.handlers.edit.tooltip.text,subtext:L.drawLocal.edit.handlers.edit.tooltip.subtext}),t._editTooltip=this._tooltip,this._updateTooltip(),this._map.on("mousemove",this._onMouseMove,this).on("touchmove",this._onMouseMove,this).on("MSPointerMove",this._onMouseMove,this).on(L.Draw.Event.EDITVERTEX,this._updateTooltip,this))},removeHooks:function(){this._map&&(this._featureGroup.eachLayer(this._disableLayerEdit,this),this._uneditedLayerProps={},this._tooltip.dispose(),this._tooltip=null,this._map.off("mousemove",this._onMouseMove,this).off("touchmove",this._onMouseMove,this).off("MSPointerMove",this._onMouseMove,this).off(L.Draw.Event.EDITVERTEX,this._updateTooltip,this))},revertLayers:function(){this._featureGroup.eachLayer(function(t){this._revertLayer(t)},this)},save:function(){var t=new L.LayerGroup;this._featureGroup.eachLayer(function(e){e.edited&&(t.addLayer(e),e.edited=!1)}),this._map.fire(L.Draw.Event.EDITED,{layers:t})},_backupLayer:function(t){var e=L.Util.stamp(t);this._uneditedLayerProps[e]||(t instanceof L.Polyline||t instanceof L.Polygon||t instanceof L.Rectangle?this._uneditedLayerProps[e]={latlngs:L.LatLngUtil.cloneLatLngs(t.getLatLngs())}:t instanceof L.Circle?this._uneditedLayerProps[e]={latlng:L.LatLngUtil.cloneLatLng(t.getLatLng()),radius:t.getRadius()}:(t instanceof L.Marker||t instanceof L.CircleMarker)&&(this._uneditedLayerProps[e]={latlng:L.LatLngUtil.cloneLatLng(t.getLatLng())}))},_getTooltipText:function(){return{text:L.drawLocal.edit.handlers.edit.tooltip.text,subtext:L.drawLocal.edit.handlers.edit.tooltip.subtext}},_updateTooltip:function(){this._tooltip.updateContent(this._getTooltipText())},_revertLayer:function(t){var e=L.Util.stamp(t);t.edited=!1,this._uneditedLayerProps.hasOwnProperty(e)&&(t instanceof L.Polyline||t instanceof L.Polygon||t instanceof L.Rectangle?t.setLatLngs(this._uneditedLayerProps[e].latlngs):t instanceof L.Circle?(t.setLatLng(this._uneditedLayerProps[e].latlng),t.setRadius(this._uneditedLayerProps[e].radius)):(t instanceof L.Marker||t instanceof L.CircleMarker)&&t.setLatLng(this._uneditedLayerProps[e].latlng),t.fire("revert-edited",{layer:t}))},_enableLayerEdit:function(t){var e,i,o=t.layer||t.target||t;this._backupLayer(o),this.options.poly&&(i=L.Util.extend({},this.options.poly),o.options.poly=i),this.options.selectedPathOptions&&(e=L.Util.extend({},this.options.selectedPathOptions),e.maintainColor&&(e.color=o.options.color,e.fillColor=o.options.fillColor),o.options.original=L.extend({},o.options),o.options.editing=e),o instanceof L.Marker?(o.editing&&o.editing.enable(),o.dragging.enable(),o.on("dragend",this._onMarkerDragEnd).on("touchmove",this._onTouchMove,this).on("MSPointerMove",this._onTouchMove,this).on("touchend",this._onMarkerDragEnd,this).on("MSPointerUp",this._onMarkerDragEnd,this)):o.editing.enable()},_disableLayerEdit:function(t){var e=t.layer||t.target||t;e.edited=!1,e.editing&&e.editing.disable(),delete e.options.editing,delete e.options.original, +this._selectedPathOptions&&(e instanceof L.Marker?this._toggleMarkerHighlight(e):(e.setStyle(e.options.previousOptions),delete e.options.previousOptions)),e instanceof L.Marker?(e.dragging.disable(),e.off("dragend",this._onMarkerDragEnd,this).off("touchmove",this._onTouchMove,this).off("MSPointerMove",this._onTouchMove,this).off("touchend",this._onMarkerDragEnd,this).off("MSPointerUp",this._onMarkerDragEnd,this)):e.editing.disable()},_onMouseMove:function(t){this._tooltip.updatePosition(t.latlng)},_onMarkerDragEnd:function(t){var e=t.target;e.edited=!0,this._map.fire(L.Draw.Event.EDITMOVE,{layer:e})},_onTouchMove:function(t){var e=t.originalEvent.changedTouches[0],i=this._map.mouseEventToLayerPoint(e),o=this._map.layerPointToLatLng(i);t.target.setLatLng(o)},_hasAvailableLayers:function(){return 0!==this._featureGroup.getLayers().length}}),L.EditToolbar.Delete=L.Handler.extend({statics:{TYPE:"remove"},initialize:function(t,e){if(L.Handler.prototype.initialize.call(this,t),L.Util.setOptions(this,e),this._deletableLayers=this.options.featureGroup,!(this._deletableLayers instanceof L.FeatureGroup))throw new Error("options.featureGroup must be a L.FeatureGroup");this.type=L.EditToolbar.Delete.TYPE;var i=L.version.split(".");1===parseInt(i[0],10)&&parseInt(i[1],10)>=2?L.EditToolbar.Delete.include(L.Evented.prototype):L.EditToolbar.Delete.include(L.Mixin.Events)},enable:function(){!this._enabled&&this._hasAvailableLayers()&&(this.fire("enabled",{handler:this.type}),this._map.fire(L.Draw.Event.DELETESTART,{handler:this.type}),L.Handler.prototype.enable.call(this),this._deletableLayers.on("layeradd",this._enableLayerDelete,this).on("layerremove",this._disableLayerDelete,this))},disable:function(){this._enabled&&(this._deletableLayers.off("layeradd",this._enableLayerDelete,this).off("layerremove",this._disableLayerDelete,this),L.Handler.prototype.disable.call(this),this._map.fire(L.Draw.Event.DELETESTOP,{handler:this.type}),this.fire("disabled",{handler:this.type}))},addHooks:function(){var t=this._map;t&&(t.getContainer().focus(),this._deletableLayers.eachLayer(this._enableLayerDelete,this),this._deletedLayers=new L.LayerGroup,this._tooltip=new L.Draw.Tooltip(this._map),this._tooltip.updateContent({text:L.drawLocal.edit.handlers.remove.tooltip.text}),this._map.on("mousemove",this._onMouseMove,this))},removeHooks:function(){this._map&&(this._deletableLayers.eachLayer(this._disableLayerDelete,this),this._deletedLayers=null,this._tooltip.dispose(),this._tooltip=null,this._map.off("mousemove",this._onMouseMove,this))},revertLayers:function(){this._deletedLayers.eachLayer(function(t){this._deletableLayers.addLayer(t),t.fire("revert-deleted",{layer:t})},this)},save:function(){this._map.fire(L.Draw.Event.DELETED,{layers:this._deletedLayers})},removeAllLayers:function(){this._deletableLayers.eachLayer(function(t){this._removeLayer({layer:t})},this),this.save()},_enableLayerDelete:function(t){(t.layer||t.target||t).on("click",this._removeLayer,this)},_disableLayerDelete:function(t){var e=t.layer||t.target||t;e.off("click",this._removeLayer,this),this._deletedLayers.removeLayer(e)},_removeLayer:function(t){var e=t.layer||t.target||t;this._deletableLayers.removeLayer(e),this._deletedLayers.addLayer(e),e.fire("deleted")},_onMouseMove:function(t){this._tooltip.updatePosition(t.latlng)},_hasAvailableLayers:function(){return 0!==this._deletableLayers.getLayers().length}})}(window,document); \ No newline at end of file diff --git a/js/license-table.html b/js/license-table.html new file mode 100644 index 0000000..23e027f --- /dev/null +++ b/js/license-table.html @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
common.jsGNU-AGPL-3.0-or-latercommon.js
precincts.jsGNU-AGPL-3.0-or-laterprecincts.js
canvassing.jsGNU-AGPL-3.0-or-latercanvassing.js
contests.jsGNU-AGPL-3.0-or-latercontests.js
voters.jsGNU-AGPL-3.0-or-latervoters.js
demographics.jsGNU-AGPL-3.0-or-laterdemographics.js
leaflet.jsBSD-2-CLAUSEleaflet.zip
leaflet.draw.jsMITdevelop.zip
Control.Geocoder.jsBSD-2-CLAUSEmaster.zip
turf@6.jsMITv6.5.0.zip
diff --git a/js/login.js b/js/login.js new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/js/login.js @@ -0,0 +1 @@ + diff --git a/js/phonebanking.js b/js/phonebanking.js new file mode 100644 index 0000000..8d1c8b6 --- /dev/null +++ b/js/phonebanking.js @@ -0,0 +1 @@ + diff --git a/js/precincts.js b/js/precincts.js new file mode 100644 index 0000000..bb05d37 --- /dev/null +++ b/js/precincts.js @@ -0,0 +1,134 @@ +/* +* This file is part of the Cargobike Community Canvassing Program (CCCP). +* Copyright 2023, Brian Flowers, SlightlyCyberpunk.com +* +* CCCP is free software: you can redistribute it and/or modify it under the terms +* of the GNU Affero General Public License as published by the Free Software +* Foundation, either version 3 of the License, or (at your option) any later version. +* +* CCCP 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 Affero General Public License for more details. + +* You should have received a copy of the Affero GNU General Public License along with CCCP. +* If not, see . +*/ + + +// Populate the list of precincts in the menu +function loadPrecincts() { + fetch("api.php?get=precincts").then(data => data.json()) + .then(precinctList => { + var cities = Object.keys(precinctList); + document.getElementById("precinct-list").innerHTML = ""; + for(var i = 0; i < cities.length; i++) { + var city = cities[i]; + var precincts = precinctList[city]; + var cityCat = document.createElement("input"); + cityCat.setAttribute("id", "precinctCheck-"+city.replaceAll(' ', '_')); + cityCat.setAttribute("type", "checkbox"); + cityCat.setAttribute("class", "precinct-group"); + cityCat.onclick = togglePrecincts.bind(null, precincts, + 'precinct-group-clr-'+city.replaceAll(' ', '_'), true); + var cityLab = document.createElement("label"); + cityLab.setAttribute("for", "precinctCheck-"+city); + cityLab.innerHTML = city; + cityClr = document.createElement("input"); + cityClr.setAttribute("type", "color"); + cityClr.value = colors[i % colors.length]; + cityClr.setAttribute("id", 'precinct-group-clr-'+city.replaceAll(' ', '_')); + var cityList = document.createElement("table"); + cityList.setAttribute("class", "subcategory"); + cityList.setAttribute("id", "precinct-list-"+city); + for(var j = 0; j < precincts.length; j++) { + var precinctRow = document.createElement("tr"); + var precinctCheck = document.createElement("input"); + precinctCheck.setAttribute("id", "precinct-"+precincts[j].precinctId); + precinctCheck.setAttribute("type", "checkbox"); + precinctCheck.setAttribute("class", "precinct-check"); + precinctCheck.onclick = togglePrecincts.bind(null, [precincts[j]], + 'precinct-group-clr-'+city.replaceAll(' ', '_')); + var precinctLab = document.createElement("label"); + precinctLab.setAttribute("for", "precinct-"+precincts[j].precinctId); + precinctLab.innerHTML = precincts[j].precinctName; + precinctRow.appendChild(precinctCheck); + precinctRow.appendChild(precinctLab); + cityList.appendChild(precinctRow); + } + document.getElementById("precinct-list").appendChild(cityCat); + document.getElementById("precinct-list").appendChild(cityLab); + document.getElementById("precinct-list").appendChild(cityClr); + document.getElementById("precinct-list").appendChild(cityList); + } + }); +} + +// Enable/disable a precinct displayed on the map +function togglePrecincts(pids, colorId=null, targetState = null) { + setLoading(1); + console.log("togglePrecincts"); + if(colorId != null) { + var color = document.getElementById(colorId).value; + } else { + var color = colors[0]; + } + + // Match the precinct(s) given as a parameter to those in displayAreas[] + // p = PID from the pids list parameter + // t = types in the displayAreas array + // i = ids in the displayAreas type array + for(var p = 0; p < pids.length; p++) { + for(var t = 0; t < displayAreas.length; t++) { + if(displayAreas[t][0].type == "precinct") { + for(var i = 0; i < displayAreas[t].length; i++) { + if(displayAreas[t][i].typeId == pids[p].precinctId) { + + // If the json is not already on the map, add it + if(displayAreas[t][i].mapElem == null && targetState != false) { + var geojs = geoJsonBuilder(displayAreas[t][i].json); + var opacity = document.getElementById("precinct-transparency").value / 100; +console.log(geojs); + displayAreas[t][i].mapElem = L.geoJSON(geojs).addTo(map); + displayAreas[t][i].mapElem.setStyle({fill: true, opacity: opacity, + fillOpacity: opacity, weight: 1, + fillColor: color, color: color}); + // Also ensure the checkbox is in sync + document.getElementById("precinct-"+pids[p].precinctId).checked = true; + // If the json IS already on the map, update it + } else if(displayAreas[t][i].mapElem != null && targetState != true) { + map.removeLayer(displayAreas[t][i].mapElem); + displayAreas[t][i].mapElem = null; + + // Also ensure the checkbox is in sync + document.getElementById("precinct-"+pids[p].precinctId).checked = false; + } + } + } + } + } + } + + // Ensure the checkboxes are in sync + if(pids.length > 1) { + document.getElementById(colorId.replace("-group-clr", "Check")).onclick = + togglePrecincts.bind(null, pids, colorId, !targetState); + } + setLoading(-1); +} + +// Update the transparency of precinct areas (onchange event from the slider) +function updatePrecinctTransparency() { + // Find the displayAreas list for precincts + for(var das = 0; das < displayAreas.length; das++) { + if(displayAreas[das][0].type == "precinct") { + break; + } + } + + for(var i = 0; i < displayAreas[das].length; i++) { + if(displayAreas[das][i].mapElem != null) { + var opacity = document.getElementById("precinct-transparency").value / 100; + displayAreas[das][i].mapElem.setStyle({opacity: opacity, fillOpacity: opacity}); + } + } +} diff --git a/js/settings.js b/js/settings.js new file mode 100644 index 0000000..175621e --- /dev/null +++ b/js/settings.js @@ -0,0 +1,134 @@ +/* +* This file is part of the Cargobike Community Canvassing Program (CCCP). +* Copyright 2023, Brian Flowers, SlightlyCyberpunk.com +* +* CCCP is free software: you can redistribute it and/or modify it under the terms +* of the GNU Affero General Public License as published by the Free Software +* Foundation, either version 3 of the License, or (at your option) any later version. +* +* CCCP 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 Affero General Public License for more details. + +* You should have received a copy of the Affero GNU General Public License along with CCCP. +* If not, see . +*/ + +// Get status of ongoing tasks +function getStatus() { + fetch("settings-api.php?get=taskStatus").then(data => data.json()) + .then(taskObj => { + var tasksDiv = document.getElementById("tasksList"); + if(taskObj.length == 0) { + tasksDiv.innerHTML = ""; + return; + } + tasksDiv.innerHTML = "

Active Tasks:

"; + tasksDiv.setAttribute("id", "tasksList"); + for(var i = 0; i < taskObj.length; i++) { + var task = document.createElement("div"); + task.innerHTML = taskObj[i].taskName; + if(taskObj[i].taskArgs != null) { + task.innerHTML+=" ("+taskObj[i].taskArgs+")"; + } + task.innerHTML += " : "+taskObj[i].taskPercent+"%
"; + var progress = document.createElement("progress"); + progress.value = parseInt(taskObj[i].taskPercent); + progress.setAttribute("max", "100"); + progress.innerHTML = taskObj[i].taskPercent + "%"; + progress.style.width = "100%"; + task.appendChild(progress); + tasksDiv.appendChild(task); + } + document.body.appendChild(tasksDiv); + }); + setTimeout(getStatus, 5000); +} + +setTimeout(getStatus, 5000); + + +// Client-side mapping assist using turf.js +var mrq; +var sr; +var tg; +function clientAreaMapping() { + fetch("settings-api.php?get=mapassist").then(data=>data.json()) + .then(mapreq => { + document.getElementById("camProgress").value=0; + mrq = mapreq; mrq.idx=0; + console.log(mapreq); + if(mapreq.type == "intersect") { + for(var so = 0; so < mapreq.source.length; so++) { + var src = geoJsonBuilder(mapreq.source[so].json); + for(var si = 0; si < src.features.length; si++) { + for(var to = 0; to < mapreq.target.length; to++) { + var tgt = geoJsonBuilder(mapreq.target[to].json); + for(var ti = 0; ti < tgt.features.length; ti++) { +/* var src = mapreq.source[so].json; + if( src.indexOf("LineString") != -1) { +//console.log("SRC is linestr"); + src = turf.lineToPolygon(geoJsonBuilder(src)); + } else { + src = geoJsonBuilder(src); + } + var tgt = mrq.target[to].json; + if( tgt.indexOf("LineString") != -1) { +//console.log("TGT is linestr"); + tgt = turf.lineToPolygon(geoJsonBuilder(tgt)); + } else { + tgt = geoJsonBuilder(tgt); + }*/ +/*console.log(src); +console.log(tgt); +sr = src; +tg = tgt; +var ti = turf.intersect(src,src); +var ti = turf.intersect(tgt,tgt);*/ +//tgt.features[ti].geometry.coordinates = Array(tgt.features[ti].geometry.coordinates); +//console.log("------"); +//console.log(tgt.features[ti]); + var intersection = turf.intersect(src.features[si],tgt.features[ti]); + if( intersection != null ) { + console.log(turf.area(intersection)); + console.log(turf.area(tgt.features[ti])); + console.log(turf.area(intersection) / turf.area(tgt.features[ti]) ); + console.log(intersection); +console.log("-----"); +console.log(mapreq.source[so]); +console.log(mapreq.target[to]); +if( turf.area(intersection) / turf.area(tgt.features[ti]) > 0.1) { +console.log(src.features[si].json); + var e1 = L.geoJSON(src.features[si]).addTo(map); + var e2 = L.geoJSON(tgt.features[ti]).addTo(map); + e1.setStyle({color: "red"}); +//console.log(e1); +/* e1.setAttribute("SRC", "SRC"); + e2.setAttribute("TGT", "TGT");*/ +}}} + } + } + } + } + }); +} + +function mrqScan() { + if(mrq.mapElem != null) { + map.removeLayer(mrq.mapElem); + mrq.mapElem = null; + } + mrq.mapElem = L.geoJSON(geoJsonBuilder(mrq.target[mrq.idx].json)).addTo(map) + toastMessage("SCANNING: "+mrq.idx); + mrq.idx++; + setTimeout(mrqScan, 100); +} + + +function deleteList(listId) { + fetch("settings-api.php?delete=list&id="+listId).then(data=>data.json()) + .then(resp => { + var tr = document.getElementById("manageList-"+listId); + tr.parentElement.removeChild(tr); + }); +} diff --git a/js/uscd.json b/js/uscd.json new file mode 100644 index 0000000..282da23 --- /dev/null +++ b/js/uscd.json @@ -0,0 +1 @@ +[{"type":"CD","affgeoid":"5001800US4401","name":"Congressional District 1","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[-71.345913,41.53694999906],[-71.344984,41.53792299906],[-71.343126,41.53583699906],[-71.342382,41.53249799906],[-71.342568,41.52901999906],[-71.344426,41.52915899906],[-71.345913,41.52957699906],[-71.346285,41.53416799906],[-71.345913,41.53694999906]],[[-71.405096,41.49821399906],[-71.402966,41.50299899906],[-71.403626,41.50456599906],[-71.401407,41.50626699906],[-71.399621,41.50661699906],[-71.397391,41.50619999906],[-71.396276,41.50369499906],[-71.400349,41.50010599906],[-71.401791,41.50009499906],[-71.403238,41.49758299906],[-71.404475,41.49732799906],[-71.405096,41.49821399906]],[[-71.343126,41.49729199906],[-71.341267,41.50049399906],[-71.33978,41.49882299906],[-71.338665,41.49617899906],[-71.338665,41.49492599906],[-71.343126,41.49492599906],[-71.343126,41.49729199906]],[[-71.301515,41.58565799906],[-71.298562,41.58492199906],[-71.298,41.58313399906],[-71.297719,41.58176699906],[-71.297156,41.57976799906],[-71.299125,41.57976799906],[-71.300812,41.58060999906],[-71.301234,41.58302899906],[-71.301515,41.58565799906]],[[-71.40056,41.46093999906],[-71.399063,41.46387799906],[-71.395904,41.46471299906],[-71.394417,41.46721999906],[-71.39609,41.47139699906],[-71.397577,41.47376399906],[-71.396648,41.47891599906],[-71.398134,41.48490299906],[-71.397507,41.48697899906],[-71.399993,41.48880099906],[-71.40055,41.49033199906],[-71.399435,41.49297699906],[-71.396833,41.49325499906],[-71.395927,41.49221499906],[-71.392373,41.49186299906],[-71.388846,41.49285899906],[-71.386511,41.49307099906],[-71.38401,41.49381199906],[-71.38494,41.49701399906],[-71.383453,41.50104999906],[-71.378914,41.50494799906],[-71.379179,41.50619999906],[-71.382996,41.50819999906],[-71.38494,41.51079199906],[-71.391005,41.51457799906],[-71.392559,41.51761099906],[-71.392137,41.52446799906],[-71.388842,41.53444599906],[-71.385683,41.53903599906],[-71.386613,41.54583199906],[-71.385497,41.54835499906],[-71.384478,41.55673599906],[-71.383734,41.55824099906],[-71.381409,41.55878599906],[-71.38132,41.56312299906],[-71.379021,41.56777199906],[-71.373618,41.57321399906],[-71.370194,41.57396299906],[-71.36356,41.57085999906],[-71.362825,41.56559899906],[-71.361907,41.56434599906],[-71.359868,41.55630799906],[-71.360405,41.54779199906],[-71.362267,41.54376599906],[-71.364683,41.54140099906],[-71.364869,41.53959299906],[-71.36394,41.53541999906],[-71.362639,41.53249799906],[-71.361338,41.52637699906],[-71.361561,41.52358699906],[-71.363382,41.51858499906],[-71.365426,41.51663699906],[-71.365612,41.51399299906],[-71.365233,41.51202599906],[-71.363382,41.51009699906],[-71.361152,41.51009699906],[-71.359851,41.51065299906],[-71.357621,41.50870499906],[-71.358922,41.50327699906],[-71.363175,41.50119099906],[-71.365984,41.49882299906],[-71.366541,41.49478699906],[-71.360867,41.48614799906],[-71.35948,41.48309299906],[-71.355949,41.48114399906],[-71.35409,41.48044799906],[-71.354315,41.47889099906],[-71.357064,41.47919499906],[-71.358736,41.47710599906],[-71.364239,41.47647599906],[-71.368214,41.47780199906],[-71.371745,41.47752399906],[-71.37286,41.47543499906],[-71.37509,41.47376399906],[-71.376763,41.47487799906],[-71.378249,41.47933399906],[-71.378249,41.48281499906],[-71.379179,41.48615599906],[-71.380665,41.48880099906],[-71.383453,41.48866199906],[-71.38624,41.48768699906],[-71.385311,41.48532099906],[-71.384702,41.48282199906],[-71.384754,41.47835899906],[-71.382152,41.47237199906],[-71.381594,41.46805499906],[-71.383586,41.46478199906],[-71.384505,41.46410799906],[-71.386798,41.46457399906],[-71.389028,41.46554899906],[-71.390143,41.46415599906],[-71.389284,41.46060499906],[-71.390275,41.45504299906],[-71.396037,41.45201599906],[-71.399568,41.44859599906],[-71.40078,41.45497499906],[-71.40056,41.46093999906]],[[-71.362911,41.46174599906],[-71.361185,41.46461999906],[-71.359559,41.46422899906],[-71.358273,41.46443099906],[-71.357206,41.46612399906],[-71.352766,41.46924499906],[-71.3479,41.47058999906],[-71.341833,41.47601199906],[-71.336442,41.48198499906],[-71.33438,41.47820399906],[-71.336366,41.47173799906],[-71.335992,41.46964699906],[-71.323531,41.47583399906],[-71.316519,41.47755999906],[-71.318065,41.48776399906],[-71.321154,41.48811999906],[-71.322818,41.49114699906],[-71.323125,41.50308799906],[-71.327804,41.50425799906],[-71.330694,41.50769899906],[-71.329315,41.51382899906],[-71.326035,41.51430999906],[-71.325451,41.51727999906],[-71.328031,41.51884799906],[-71.327128,41.52158899906],[-71.323991,41.52240699906],[-71.320901,41.51948899906],[-71.314579,41.51980899906],[-71.311251,41.52262099906],[-71.311346,41.52422199906],[-71.314151,41.53144599906],[-71.312696,41.53651399906],[-71.308082,41.53937699906],[-71.308082,41.54293499906],[-71.311129,41.54405199906],[-71.310533,41.54691999906],[-71.303652,41.55992499906],[-71.296673,41.56712399906],[-71.294363,41.57141599906],[-71.288376,41.57327399906],[-71.285142,41.57712699906],[-71.284076,41.57939299906],[-71.28574,41.58277099906],[-71.289073,41.58270599906],[-71.285635,41.59164199906],[-71.285265,41.59236999906],[-71.28065,41.59285399906],[-71.273445,41.60698999906],[-71.272412,41.61504099906],[-71.275234,41.61944399906],[-71.271862,41.62398599906],[-71.264824,41.62524699906],[-71.261021,41.62737899906],[-71.258879,41.63322999906],[-71.251082,41.63877999906],[-71.246285,41.63981399906],[-71.242482,41.63839299906],[-71.23654,41.63839299906],[-71.233234,41.64022999906],[-71.232262,41.64336599906],[-71.225369,41.64709599906],[-71.223706,41.65064799906],[-71.22228,41.65419999906],[-71.220331,41.65557199906],[-71.21919,41.65366699906],[-71.217288,41.64620799906],[-71.217051,41.64283399906],[-71.216575,41.63910299906],[-71.211822,41.63910299906],[-71.210871,41.64230099906],[-71.208019,41.65313499906],[-71.19564,41.67508999906],[-71.19439,41.67480199906],[-71.191178,41.67421599906],[-71.191175,41.67429199906],[-71.18433318989,41.67305306734],[-71.18432990614,41.67305247271],[-71.18129,41.67250199906],[-71.17599,41.67140199906],[-71.17608658195,41.66860112258],[-71.17609,41.66850199906],[-71.17609,41.66810199906],[-71.1621482835,41.66557872564],[-71.153989,41.66410199906],[-71.15358861219,41.66403754447],[-71.14587,41.66279499906],[-71.135188,41.66050199906],[-71.134688,41.66050199906],[-71.132888,41.66010199906],[-71.13267,41.65874399906],[-71.134478,41.64126199906],[-71.134484,41.64119799906],[-71.13470117132,41.63888992245],[-71.13567574949,41.62853219632],[-71.135688,41.62840199906],[-71.140468,41.62389299906],[-71.141509,41.61607599906],[-71.14091,41.60740499906],[-71.14086788925,41.60710381569],[-71.140588,41.60510199906],[-71.13854907,41.60342857493],[-71.137492,41.60256099906],[-71.13669155952,41.60138323143],[-71.131618,41.59391799906],[-71.13149152643,41.59325256623],[-71.131312,41.59230799906],[-71.12761807958,41.56323081037],[-71.12659522283,41.5551792567],[-71.1224,41.52215599906],[-71.12057,41.49744799906],[-71.129229,41.49628399906],[-71.136867,41.49394199906],[-71.141093,41.48993699906],[-71.140224,41.48585499906],[-71.139087,41.48344499906],[-71.142439,41.48121499906],[-71.145747,41.48117599906],[-71.14646,41.47850499906],[-71.148905,41.47705599906],[-71.150859,41.47581899906],[-71.154394,41.47669199906],[-71.159274,41.47598499906],[-71.162086,41.47400899906],[-71.163097,41.47173799906],[-71.167345,41.47140499906],[-71.170233,41.46838099906],[-71.170131,41.46397399906],[-71.168648,41.46145199906],[-71.170444,41.46062099906],[-71.173619,41.46142199906],[-71.175535,41.45985399906],[-71.177916,41.46080999906],[-71.180544,41.45974199906],[-71.186279,41.46028499906],[-71.193979,41.45639599906],[-71.194967,41.45903699906],[-71.196857,41.46111599906],[-71.196607,41.46475599906],[-71.192354,41.46656399906],[-71.192459,41.47044299906],[-71.191924,41.47436299906],[-71.190016,41.47827499906],[-71.190167,41.48428499906],[-71.19939,41.49176899906],[-71.199692,41.49551099906],[-71.202262,41.49838399906],[-71.206382,41.49921499906],[-71.200788,41.51437099906],[-71.202034,41.51706499906],[-71.204773,41.51910399906],[-71.204796,41.52334399906],[-71.207306,41.52638799906],[-71.208257,41.52887999906],[-71.204929,41.54079999906],[-71.20683,41.54346799906],[-71.215995,41.54717799906],[-71.215953,41.54846399906],[-71.215343,41.54929699906],[-71.215701,41.55213099906],[-71.215015,41.55383599906],[-71.213532,41.55474099906],[-71.213778,41.55679499906],[-71.218739,41.55929599906],[-71.220276,41.55958699906],[-71.220998,41.56087699906],[-71.219933,41.56248299906],[-71.218714,41.56267799906],[-71.216863,41.56181899906],[-71.211415,41.55821899906],[-71.209823,41.55870899906],[-71.209563,41.56029199906],[-71.210207,41.56303899906],[-71.20865,41.57102799906],[-71.208352,41.58117199906],[-71.214436,41.58365899906],[-71.214674,41.58597099906],[-71.209445,41.59059299906],[-71.209207,41.59396999906],[-71.205404,41.59432499906],[-71.203741,41.59610299906],[-71.204454,41.59841399906],[-71.20778,41.60065999906],[-71.212656,41.61007199906],[-71.212115,41.61861899906],[-71.211837,41.62352899906],[-71.215308,41.62549099906],[-71.218018,41.62567199906],[-71.219336,41.62548199906],[-71.220074,41.62493999906],[-71.219972,41.62394399906],[-71.221005,41.62350199906],[-71.224126,41.62288699906],[-71.236487,41.62136799906],[-71.238792,41.62059299906],[-71.240709,41.61922499906],[-71.241056,41.60694499906],[-71.241532,41.60463399906],[-71.2436,41.58750799906],[-71.237788,41.57759499906],[-71.234877,41.57654799906],[-71.23613,41.57476699906],[-71.236259,41.56499299906],[-71.238204,41.55876499906],[-71.237016,41.55485199906],[-71.233844,41.55378999906],[-71.233688,41.55236199906],[-71.234877,41.54916099906],[-71.236523,41.54489099906],[-71.234877,41.54168899906],[-71.236642,41.53585199906],[-71.234775,41.53253799906],[-71.228935,41.53030299906],[-71.227989,41.52829699906],[-71.229444,41.52154399906],[-71.233456,41.51405299906],[-71.240737,41.50555099906],[-71.24074,41.50170399906],[-71.246666,41.49426499906],[-71.247992,41.49028999906],[-71.246855,41.48741499906],[-71.24426,41.48573699906],[-71.242033,41.48534399906],[-71.238112,41.48605699906],[-71.237437,41.48571099906],[-71.237615,41.48227599906],[-71.238326,41.48075899906],[-71.239676,41.48025299906],[-71.240428,41.47614699906],[-71.242285,41.47523899906],[-71.243728,41.47520399906],[-71.244895,41.47383499906],[-71.246427,41.47294799906],[-71.247366,41.47299599906],[-71.247715,41.47368999906],[-71.24524,41.48028499906],[-71.245859,41.48163699906],[-71.252079,41.48592399906],[-71.258192,41.48792099906],[-71.264793,41.48890199906],[-71.26764,41.48821399906],[-71.26886,41.48469799906],[-71.274861,41.47984599906],[-71.27664,41.48003799906],[-71.282314,41.48828599906],[-71.285486,41.48900399906],[-71.29133,41.48786199906],[-71.296918,41.48552099906],[-71.297392,41.48478999906],[-71.296516,41.47983099906],[-71.297393,41.47344299906],[-71.296851,41.46913099906],[-71.298182,41.46749199906],[-71.301414,41.46727799906],[-71.303981,41.46371599906],[-71.302762,41.45974799906],[-71.303052,41.45908299906],[-71.303911,41.45867999906],[-71.304394,41.45450199906],[-71.307639,41.45243499906],[-71.310168,41.45112399906],[-71.312049,41.45138199906],[-71.311918,41.45288499906],[-71.310983,41.45510599906],[-71.312558,41.45649799906],[-71.314711,41.45638899906],[-71.316908,41.45478799906],[-71.31848,41.45572399906],[-71.319485,41.45838499906],[-71.320326,41.45978299906],[-71.323751,41.46012899906],[-71.326909,41.45894199906],[-71.327536,41.45707199906],[-71.331466,41.45280299906],[-71.334764,41.44951599906],[-71.337483,41.44931699906],[-71.338036,41.44952799906],[-71.337544,41.45097899906],[-71.337933,41.45169299906],[-71.339006,41.45190199906],[-71.339697,41.45257699906],[-71.344177,41.45402799906],[-71.353609,41.44975099906],[-71.356163,41.45053799906],[-71.357245,41.45614599906],[-71.358447,41.45743899906],[-71.358795,41.45966099906],[-71.360038,41.46048599906],[-71.36189,41.46019599906],[-71.362911,41.46174599906]],[[-71.288017,41.64557499906],[-71.286471,41.64757099906],[-71.281571,41.64820699906],[-71.278171,41.64730899906],[-71.276634,41.64364899906],[-71.276347,41.64053099906],[-71.272692,41.63853499906],[-71.272129,41.63706399906],[-71.277045,41.63803099906],[-71.283791,41.63779699906],[-71.285346,41.63685299906],[-71.285908,41.63800899906],[-71.285344,41.64037899906],[-71.288158,41.64294799906],[-71.288017,41.64557499906]],[[-71.353819,41.64746599906],[-71.352835,41.64925199906],[-71.350304,41.64904199906],[-71.348898,41.65124799906],[-71.347633,41.65282399906],[-71.346367,41.65334899906],[-71.344118,41.65282399906],[-71.343274,41.65376899906],[-71.343836,41.65486099906],[-71.345946,41.65534499906],[-71.350023,41.65713099906],[-71.35157,41.65860199906],[-71.351007,41.65975699906],[-71.348336,41.66122799906],[-71.34693,41.66332899906],[-71.348898,41.66532399906],[-71.344821,41.66700499906],[-71.344258,41.66406399906],[-71.344021,41.66149499906],[-71.33765,41.65797199906],[-71.337515,41.65704899906],[-71.339337,41.65502999906],[-71.338072,41.65082799906],[-71.334979,41.64746599906],[-71.332448,41.64378899906],[-71.333432,41.64179199906],[-71.336525,41.64189699906],[-71.334979,41.64420899906],[-71.335682,41.64578499906],[-71.337088,41.64672999906],[-71.338705,41.64573499906],[-71.342645,41.64423699906],[-71.34468,41.64252799906],[-71.343666,41.63989999906],[-71.340603,41.63969099906],[-71.339056,41.63706399906],[-71.336103,41.63622299906],[-71.334697,41.63443699906],[-71.330711,41.63299199906],[-71.326824,41.63170399906],[-71.317122,41.63138899906],[-71.315247,41.62995199906],[-71.314029,41.62792099906],[-71.308123,41.62623899906],[-71.307321,41.62401699906],[-71.304046,41.61877699906],[-71.303526,41.60963899906],[-71.304327,41.60794899906],[-71.30264,41.60553099906],[-71.30489,41.60447999906],[-71.306093,41.60134299906],[-71.307561,41.59911799906],[-71.307773,41.59740899906],[-71.309517,41.59485299906],[-71.313466,41.58797199906],[-71.315716,41.58450099906],[-71.3167,41.58313399906],[-71.321612,41.58097899906],[-71.326103,41.57858299906],[-71.3312,41.58031799906],[-71.335949,41.58589799906],[-71.337048,41.59468799906],[-71.333751,41.60585899906],[-71.331182,41.60689799906],[-71.329559,41.60909699906],[-71.330057,41.61110299906],[-71.326609,41.61611399906],[-71.325558,41.62413699906],[-71.327386,41.62634399906],[-71.328841,41.62620199906],[-71.333994,41.62928699906],[-71.337369,41.63128399906],[-71.344961,41.63233499906],[-71.347352,41.63128399906],[-71.350726,41.63391099906],[-71.352248,41.63892799906],[-71.353257,41.64084599906],[-71.352976,41.64473399906],[-71.353819,41.64746599906]],[[-71.328827,41.49233399906],[-71.326957,41.49311599906],[-71.325657,41.49005399906],[-71.325365,41.48760099906],[-71.3264,41.48378899906],[-71.327822,41.48298499906],[-71.329002,41.48712999906],[-71.328827,41.49233399906]],[[-71.60673402532,42.01341142415],[-71.59411891923,42.01370181535],[-71.5911031923,42.01377123535],[-71.576908,42.01409799906],[-71.56366502123,42.01428297169],[-71.559439,42.01434199906],[-71.55361486286,42.01446202023],[-71.55336097543,42.01446725223],[-71.53803620617,42.01478305811],[-71.52892806735,42.0149707545],[-71.52769996117,42.01499606275],[-71.527606,42.01499799906],[-71.527306,42.01509799906],[-71.52464118753,42.01529987115],[-71.51163339947,42.01628527231],[-71.50205550327,42.01701084302],[-71.50204954111,42.01701129469],[-71.500905,42.01709799906],[-71.499905,42.01719799906],[-71.49825830106,42.01722023222],[-71.49135428024,42.01731344792],[-71.48378311796,42.01741567113],[-71.48371288296,42.01741661942],[-71.45811664513,42.01776221097],[-71.45810351919,42.01776238819],[-71.42435692338,42.01821802305],[-71.41441861461,42.01835220665],[-71.381401,42.01879799906],[-71.38143704125,42.00002086862],[-71.3814657108,41.98508431905],[-71.38147025969,41.98271439138],[-71.38149197829,41.97139921783],[-71.381501,41.96669899906],[-71.381401,41.96479899906],[-71.38145768251,41.95286433955],[-71.38145769228,41.95286228256],[-71.38148189871,41.94776555229],[-71.3816,41.92289899906],[-71.3817,41.92269899906],[-71.3817,41.91557713774],[-71.3817,41.91481599906],[-71.3817,41.91465965229],[-71.3817,41.90359799906],[-71.3817,41.89706199906],[-71.3817,41.89375174631],[-71.3817,41.89319899906],[-71.38152935439,41.893225767],[-71.3766,41.89399899906],[-71.37649639772,41.8940137941],[-71.37635234406,41.89403436585],[-71.373799,41.89439899906],[-71.37119032656,41.89458533288],[-71.370999,41.89459899906],[-71.365399,41.89529899906],[-71.364699,41.89539899906],[-71.362499,41.89559899906],[-71.354699,41.89649899906],[-71.35451882563,41.8965170165],[-71.352699,41.89669899906],[-71.3490536354,41.89714161886],[-71.34587490942,41.89752757945],[-71.33976318964,41.89826966384],[-71.33876249372,41.89839116824],[-71.338698,41.89839899906],[-71.33917771698,41.89456126321],[-71.339298,41.89359899906],[-71.339298,41.89339899906],[-71.33971575571,41.89011293266],[-71.33971887079,41.89008842943],[-71.340798,41.88159999906],[-71.3388638434,41.8761112147],[-71.33782886617,41.87317413774],[-71.33782668207,41.87316793965],[-71.333997,41.86229999906],[-71.33449398868,41.86123948182],[-71.34167342264,41.84591938741],[-71.342198,41.84479999906],[-71.341797,41.84369999906],[-71.34079565848,41.84245590809],[-71.335197,41.83549999906],[-71.33750452,41.83376935906],[-71.337597,41.83369999906],[-71.339597,41.83199999906],[-71.3428393693,41.82955292789],[-71.344897,41.82799999906],[-71.34588873174,41.82588717927],[-71.347197,41.82309999906],[-71.339197,41.80899999906],[-71.3390217069,41.80859098182],[-71.33900374314,41.8085490664],[-71.338897,41.80829999906],[-71.33927361176,41.80660524612],[-71.339297,41.80649999906],[-71.339297,41.80439999906],[-71.340797,41.80019999906],[-71.340697,41.79829999906],[-71.339297,41.79629999906],[-71.335797,41.79479999906],[-71.333896,41.79449999906],[-71.332196,41.79229999906],[-71.33106075427,41.79014694681],[-71.33011616476,41.78835548395],[-71.329296,41.78679999906],[-71.329396,41.78259999906],[-71.327896,41.78050099906],[-71.31792423356,41.77615729326],[-71.317795,41.77610099906],[-71.31638784427,41.77550723089],[-71.29768756485,41.76761639795],[-71.29475805142,41.76638025059],[-71.28440177169,41.76201027988],[-71.261392,41.75230099906],[-71.25474299447,41.74471835744],[-71.25213074575,41.74173930353],[-71.24533260386,41.73398658421],[-71.24524649557,41.73388838481],[-71.22623673166,41.71220931921],[-71.225791,41.71170099906],[-71.224798,41.71049799906],[-71.227875,41.70549799906],[-71.232975,41.70195299906],[-71.240991,41.69774399906],[-71.243671,41.69840399906],[-71.24581,41.69716199906],[-71.245335,41.69485499906],[-71.242482,41.68793299906],[-71.237635,41.68163499906],[-71.234639,41.67745999906],[-71.235352,41.67213399906],[-71.236778,41.66804999906],[-71.238442,41.66556499906],[-71.240343,41.66556499906],[-71.244384,41.66911599906],[-71.250326,41.66503199906],[-71.253416,41.66059299906],[-71.254604,41.65224699906],[-71.256743,41.65029299906],[-71.257219,41.64674099906],[-71.25956,41.64259499906],[-71.263161,41.64301099906],[-71.267055,41.64494499906],[-71.270075,41.65243899906],[-71.26918,41.65489999906],[-71.267676,41.65739699906],[-71.269103,41.66005999906],[-71.272192,41.66130299906],[-71.277659,41.66627499906],[-71.280366,41.67257499906],[-71.278847,41.67834699906],[-71.282175,41.67958999906],[-71.285502,41.68242999906],[-71.287404,41.68047799906],[-71.289068,41.67958999906],[-71.287637,41.67246299906],[-71.290546,41.66239499906],[-71.293346,41.66023799906],[-71.297862,41.65828399906],[-71.297624,41.65384499906],[-71.299159,41.64953099906],[-71.301396,41.64997799906],[-71.303746,41.65478799906],[-71.304992,41.65934999906],[-71.306095,41.67257499906],[-71.302627,41.68174699906],[-71.298935,41.68152399906],[-71.293119,41.68834699906],[-71.291217,41.70266599906],[-71.2988,41.71100799906],[-71.29905,41.70869599906],[-71.301446,41.70644099906],[-71.303804,41.70656699906],[-71.305468,41.70851899906],[-71.307983,41.71275599906],[-71.305759,41.71866199906],[-71.307131,41.72164799906],[-71.31482,41.72380799906],[-71.324188,41.72538199906],[-71.339456,41.72484099906],[-71.341119,41.72909799906],[-71.341119,41.73477399906],[-71.344447,41.73619299906],[-71.34825,41.74204599906],[-71.35229,41.74506099906],[-71.359896,41.74506099906],[-71.359421,41.74665699906],[-71.360134,41.74949399906],[-71.362348,41.75088999906],[-71.360847,41.75516799906],[-71.361798,41.76066399906],[-71.36465,41.76474199906],[-71.369641,41.76456499906],[-71.366076,41.77112399906],[-71.366314,41.77520099906],[-71.365125,41.77750499906],[-71.367977,41.78069499906],[-71.370583,41.78087399906],[-71.371542,41.78335399906],[-71.381287,41.78530299906],[-71.38247156425,41.78509918245],[-71.389413,41.78633499906],[-71.395042,41.78614799906],[-71.397728,41.78602999906],[-71.398247,41.78601099906],[-71.401657,41.78588899906],[-71.404259,41.78584899906],[-71.406639,41.78654099906],[-71.410255,41.78713199906],[-71.413391,41.78613999906],[-71.413948,41.78873799906],[-71.414268,41.78841799906],[-71.415909,41.78964599906],[-71.417412,41.78891799906],[-71.417107,41.78667199906],[-71.418617,41.78596899906],[-71.420063,41.78703299906],[-71.42061,41.78618399906],[-71.421667,41.78618999906],[-71.431603,41.78625399906],[-71.434046,41.78630699906],[-71.436482,41.78841199906],[-71.437642,41.79323899906],[-71.438541,41.79422899906],[-71.43934,41.79724099906],[-71.439266,41.80202699906],[-71.439938,41.80341499906],[-71.440252,41.80370499906],[-71.440541,41.80394599906],[-71.440944,41.80597399906],[-71.440809,41.80864099906],[-71.439835,41.80887599906],[-71.440086,41.80916999906],[-71.440002,41.81127499906],[-71.435463,41.81106899906],[-71.435684,41.81177099906],[-71.431168,41.81188999906],[-71.431061,41.81185899906],[-71.429588,41.81260299906],[-71.426933,41.81395699906],[-71.425895,41.81283099906],[-71.425461,41.81273999906],[-71.422173,41.81276699906],[-71.421631,41.81218299906],[-71.421272,41.81075299906],[-71.421005,41.80977199906],[-71.42086,41.81001699906],[-71.415802,41.80929899906],[-71.414223,41.80920799906],[-71.412758,41.80936399906],[-71.411865,41.80946399906],[-71.407211,41.81013099906],[-71.407181,41.81081799906],[-71.406833,41.81407899906],[-71.410038,41.81453799906],[-71.411874,41.81512999906],[-71.413316,41.81576999906],[-71.415329,41.81692899906],[-71.416509,41.81771999906],[-71.414314,41.82003399906],[-71.412231,41.81912599906],[-71.411462,41.81878699906],[-71.409103,41.81912599906],[-71.408234,41.81793999906],[-71.407478,41.81824899906],[-71.408035,41.81903799906],[-71.408058,41.81935999906],[-71.408508,41.82446699906],[-71.409187,41.82562999906],[-71.410149,41.82634699906],[-71.409804,41.82653899906],[-71.410915,41.82843499906],[-71.411504,41.83122899906],[-71.411507,41.83139399906],[-71.411562,41.83139399906],[-71.41229,41.83146799906],[-71.412148,41.83098299906],[-71.412903,41.82938599906],[-71.41568,41.82939099906],[-71.41629,41.83182499906],[-71.41745,41.83201199906],[-71.416283,41.83473599906],[-71.416756,41.83490399906],[-71.416603,41.83527399906],[-71.417152,41.83549899906],[-71.41716,41.83652899906],[-71.41819,41.83651699906],[-71.419449,41.83639899906],[-71.419662,41.83606699906],[-71.420242,41.83630799906],[-71.422318,41.83718499906],[-71.421401,41.83843399906],[-71.421178,41.83875899906],[-71.424324,41.84023699906],[-71.426659,41.84225799906],[-71.427498,41.84175499906],[-71.42778,41.84347499906],[-71.428993,41.84605399906],[-71.432643,41.84678999906],[-71.433313,41.84693899906],[-71.432793,41.84803399906],[-71.434099,41.85046999906],[-71.435921,41.85195199906],[-71.437141,41.85275299906],[-71.43792,41.85327099906],[-71.436264,41.85488099906],[-71.432587,41.85451099906],[-71.431679,41.85439099906],[-71.428825,41.85367599906],[-71.426628,41.85308099906],[-71.429451,41.85922999906],[-71.429906,41.86125499906],[-71.434998,41.86182399906],[-71.442986,41.85655599906],[-71.446686,41.85404999906],[-71.448324,41.85298099906],[-71.455905,41.84790299906],[-71.459526,41.84543999906],[-71.460292,41.84495699906],[-71.46456,41.84206599906],[-71.468742,41.83925999906],[-71.472459,41.83698099906],[-71.47331,41.83898199906],[-71.477216,41.83791099906],[-71.47764,41.84146899906],[-71.478659,41.84236899906],[-71.479012,41.84345799906],[-71.479521,41.84428299906],[-71.48033,41.84504399906],[-71.480974,41.85082099906],[-71.485636,41.85351899906],[-71.486065,41.85431199906],[-71.48708,41.85610499906],[-71.487421,41.85907299906],[-71.487654,41.85960299906],[-71.488251,41.86227799906],[-71.492353,41.86536499906],[-71.494084,41.86827599906],[-71.495545,41.86898299906],[-71.505093,41.86772399906],[-71.514588,41.86648799906],[-71.531464,41.86426899906],[-71.540216,41.86309499906],[-71.545655,41.86252999906],[-71.550423,41.86176499906],[-71.573608,41.85880699906],[-71.574642,41.85874799906],[-71.575653,41.86357299906],[-71.579348,41.88161699906],[-71.579389,41.88181199906],[-71.579908,41.88471999906],[-71.581891,41.89466499906],[-71.590312,41.93366499906],[-71.596898,41.96612299906],[-71.600443,41.98302699906],[-71.60673402532,42.01341142415]],[[-71.372238,41.59985399906],[-71.369426,41.60206199906],[-71.36788,41.60395399906],[-71.367317,41.60595199906],[-71.365489,41.60668799906],[-71.36338,41.60668799906],[-71.363943,41.60542599906],[-71.36338,41.60353399906],[-71.364786,41.60143099906],[-71.369426,41.59817199906],[-71.371676,41.59732999906],[-71.373363,41.59743599906],[-71.372238,41.59985399906]],[[-71.327568,41.45286799906],[-71.326348,41.45470999906],[-71.324955,41.45468999906],[-71.324296,41.45392399906],[-71.325649,41.45210599906],[-71.32689,41.45195999906],[-71.327568,41.45286799906]],[[-71.367036,41.66070299906],[-71.364786,41.66049299906],[-71.362115,41.66017799906],[-71.360709,41.66112299906],[-71.354663,41.65975699906],[-71.353398,41.65786599906],[-71.354241,41.65608099906],[-71.355507,41.65387499906],[-71.35635,41.65208899906],[-71.358178,41.65124799906],[-71.360006,41.64988199906],[-71.362537,41.65114299906],[-71.364083,41.65587099906],[-71.364646,41.65755099906],[-71.366333,41.65891699906],[-71.367036,41.66070299906]]]}}},{"type":"CD","affgeoid":"5001800US4402","name":"Congressional District 2","json":{"geometry":{"type":"MultiPolygon","coordinates":[[[-71.862109,41.31661199906],[-71.860513,41.32024799906],[-71.857458,41.32078899906],[-71.851923,41.32466399906],[-71.847709,41.32960399906],[-71.844666,41.33058499906],[-71.836156,41.33601299906],[-71.83061772372,41.34124704635],[-71.829384,41.34241299906],[-71.829902,41.34663599906],[-71.831303,41.35129499906],[-71.835703,41.35356799906],[-71.836768,41.35510299906],[-71.837873,41.36014499906],[-71.83773172145,41.36329668814],[-71.83771339082,41.36370561389],[-71.837633,41.36549899906],[-71.83558816822,41.36706866834],[-71.83494691638,41.36756091094],[-71.832499,41.36943999906],[-71.83210776209,41.37008426103],[-71.83201075958,41.37024399768],[-71.831613,41.37089899906],[-71.83207658003,41.37296217051],[-71.832674,41.37562099906],[-71.83131395979,41.37772482169],[-71.830637,41.37877199906],[-71.83164333776,41.38002244502],[-71.833531,41.38236799906],[-71.83300056282,41.3852672379],[-71.832655,41.38715599906],[-71.835204,41.38955799906],[-71.83817,41.39059499906],[-71.83863230444,41.39115102491],[-71.8410615506,41.39407274384],[-71.842131,41.39535899906],[-71.842244,41.39687899906],[-71.84115,41.39922999906],[-71.841726,41.40324099906],[-71.843256,41.40446099906],[-71.843472,41.40582999906],[-71.84281656981,41.40873220644],[-71.842563,41.40985499906],[-71.839649,41.41211899906],[-71.836883,41.41222799906],[-71.834107,41.41158199906],[-71.827902,41.41433399906],[-71.824573,41.41523499906],[-71.823873,41.41716399906],[-71.82033,41.41938199906],[-71.816904,41.41992699906],[-71.8129,41.41940399906],[-71.806812,41.41667299906],[-71.803684,41.41742799906],[-71.801439,41.41554499906],[-71.797683,41.41670899906],[-71.79767369255,41.41691041756],[-71.79723545398,41.42639414864],[-71.79673945896,41.4371277619],[-71.79648590811,41.44261474607],[-71.7956834365,41.45998068665],[-71.79498466265,41.47510254884],[-71.79356831589,41.50575309554],[-71.7925957022,41.52680100701],[-71.79170363083,41.54610593728],[-71.79050845462,41.57197022784],[-71.78935867274,41.59685215941],[-71.789356,41.59690999906],[-71.7878551986,41.63445036681],[-71.78763664589,41.63991714536],[-71.786994,41.65599199906],[-71.78699889568,41.65611738614],[-71.78864754066,41.69834210795],[-71.789678,41.72473399906],[-71.78969211199,41.72519833872],[-71.79010633574,41.73882791629],[-71.79105925492,41.77018267528],[-71.791062,41.77027299906],[-71.79125806358,41.77449647297],[-71.79262703816,41.8039860322],[-71.79265663506,41.8046235893],[-71.792767,41.80700099906],[-71.792786,41.80866999906],[-71.79315733695,41.8171691591],[-71.794161,41.84014099906],[-71.794161,41.84110099906],[-71.79448235605,41.84915788492],[-71.79469178266,41.8544085291],[-71.79668779468,41.90445159128],[-71.79715894256,41.91626398655],[-71.79765282895,41.92864647087],[-71.79780125342,41.93236769834],[-71.797922,41.93539499906],[-71.79882688153,41.98521146936],[-71.79886543354,41.98733387436],[-71.799242,42.00806499906],[-71.76601,42.00974499906],[-71.75510919805,42.00999592814],[-71.68087581631,42.01170473033],[-71.67802296857,42.01177040095],[-71.66160371444,42.01214836106],[-71.60673402532,42.01341142415],[-71.600443,41.98302699906],[-71.596898,41.96612299906],[-71.590312,41.93366499906],[-71.581891,41.89466499906],[-71.579908,41.88471999906],[-71.579389,41.88181199906],[-71.579348,41.88161699906],[-71.575653,41.86357299906],[-71.574642,41.85874799906],[-71.573608,41.85880699906],[-71.550423,41.86176499906],[-71.545655,41.86252999906],[-71.540216,41.86309499906],[-71.531464,41.86426899906],[-71.514588,41.86648799906],[-71.505093,41.86772399906],[-71.495545,41.86898299906],[-71.494084,41.86827599906],[-71.492353,41.86536499906],[-71.488251,41.86227799906],[-71.487654,41.85960299906],[-71.487421,41.85907299906],[-71.48708,41.85610499906],[-71.486065,41.85431199906],[-71.485636,41.85351899906],[-71.480974,41.85082099906],[-71.48033,41.84504399906],[-71.479521,41.84428299906],[-71.479012,41.84345799906],[-71.478659,41.84236899906],[-71.47764,41.84146899906],[-71.477216,41.83791099906],[-71.47331,41.83898199906],[-71.472459,41.83698099906],[-71.468742,41.83925999906],[-71.46456,41.84206599906],[-71.460292,41.84495699906],[-71.459526,41.84543999906],[-71.455905,41.84790299906],[-71.448324,41.85298099906],[-71.446686,41.85404999906],[-71.442986,41.85655599906],[-71.434998,41.86182399906],[-71.429906,41.86125499906],[-71.429451,41.85922999906],[-71.426628,41.85308099906],[-71.428825,41.85367599906],[-71.431679,41.85439099906],[-71.432587,41.85451099906],[-71.436264,41.85488099906],[-71.43792,41.85327099906],[-71.437141,41.85275299906],[-71.435921,41.85195199906],[-71.434099,41.85046999906],[-71.432793,41.84803399906],[-71.433313,41.84693899906],[-71.432643,41.84678999906],[-71.428993,41.84605399906],[-71.42778,41.84347499906],[-71.427498,41.84175499906],[-71.426659,41.84225799906],[-71.424324,41.84023699906],[-71.421178,41.83875899906],[-71.421401,41.83843399906],[-71.422318,41.83718499906],[-71.420242,41.83630799906],[-71.419662,41.83606699906],[-71.419449,41.83639899906],[-71.41819,41.83651699906],[-71.41716,41.83652899906],[-71.417152,41.83549899906],[-71.416603,41.83527399906],[-71.416756,41.83490399906],[-71.416283,41.83473599906],[-71.41745,41.83201199906],[-71.41629,41.83182499906],[-71.41568,41.82939099906],[-71.412903,41.82938599906],[-71.412148,41.83098299906],[-71.41229,41.83146799906],[-71.411562,41.83139399906],[-71.411507,41.83139399906],[-71.411504,41.83122899906],[-71.410915,41.82843499906],[-71.409804,41.82653899906],[-71.410149,41.82634699906],[-71.409187,41.82562999906],[-71.408508,41.82446699906],[-71.408058,41.81935999906],[-71.408035,41.81903799906],[-71.407478,41.81824899906],[-71.408234,41.81793999906],[-71.409103,41.81912599906],[-71.411462,41.81878699906],[-71.412231,41.81912599906],[-71.414314,41.82003399906],[-71.416509,41.81771999906],[-71.415329,41.81692899906],[-71.413316,41.81576999906],[-71.411874,41.81512999906],[-71.410038,41.81453799906],[-71.406833,41.81407899906],[-71.407181,41.81081799906],[-71.407211,41.81013099906],[-71.411865,41.80946399906],[-71.412758,41.80936399906],[-71.414223,41.80920799906],[-71.415802,41.80929899906],[-71.42086,41.81001699906],[-71.421005,41.80977199906],[-71.421272,41.81075299906],[-71.421631,41.81218299906],[-71.422173,41.81276699906],[-71.425461,41.81273999906],[-71.425895,41.81283099906],[-71.426933,41.81395699906],[-71.429588,41.81260299906],[-71.431061,41.81185899906],[-71.431168,41.81188999906],[-71.435684,41.81177099906],[-71.435463,41.81106899906],[-71.440002,41.81127499906],[-71.440086,41.80916999906],[-71.439835,41.80887599906],[-71.440809,41.80864099906],[-71.440944,41.80597399906],[-71.440541,41.80394599906],[-71.440252,41.80370499906],[-71.439938,41.80341499906],[-71.439266,41.80202699906],[-71.43934,41.79724099906],[-71.438541,41.79422899906],[-71.437642,41.79323899906],[-71.436482,41.78841199906],[-71.434046,41.78630699906],[-71.431603,41.78625399906],[-71.421667,41.78618999906],[-71.42061,41.78618399906],[-71.420063,41.78703299906],[-71.418617,41.78596899906],[-71.417107,41.78667199906],[-71.417412,41.78891799906],[-71.415909,41.78964599906],[-71.414268,41.78841799906],[-71.413948,41.78873799906],[-71.413391,41.78613999906],[-71.410255,41.78713199906],[-71.406639,41.78654099906],[-71.404259,41.78584899906],[-71.401657,41.78588899906],[-71.398247,41.78601099906],[-71.397728,41.78602999906],[-71.395042,41.78614799906],[-71.389413,41.78633499906],[-71.38247156425,41.78509918245],[-71.390557,41.78370799906],[-71.391745,41.78104999906],[-71.389844,41.77644099906],[-71.385495,41.76866399906],[-71.385566,41.76030999906],[-71.38105,41.75569999906],[-71.380099,41.74931599906],[-71.380574,41.74594699906],[-71.376058,41.74417399906],[-71.380812,41.73885299906],[-71.380574,41.73353299906],[-71.38105,41.72732399906],[-71.376534,41.72164799906],[-71.369879,41.71827699906],[-71.363937,41.71738999906],[-71.357282,41.71818799906],[-71.357282,41.71659199906],[-71.365717,41.71161499906],[-71.365717,41.70789799906],[-71.364412,41.70470399906],[-71.365646,41.70062199906],[-71.365601,41.69370099906],[-71.362748,41.69192599906],[-71.364887,41.68837699906],[-71.371542,41.68535899906],[-71.373444,41.67861399906],[-71.372988,41.67257499906],[-71.37791,41.66664599906],[-71.382049,41.66731699906],[-71.386279,41.67097999906],[-71.38988,41.67190299906],[-71.390775,41.68062899906],[-71.389432,41.68342499906],[-71.390551,41.68409599906],[-71.398163,41.68340699906],[-71.418069,41.68420799906],[-71.433815,41.68695699906],[-71.441336,41.68644599906],[-71.443082,41.68830299906],[-71.441896,41.69002499906],[-71.445923,41.69114399906],[-71.44848,41.68841399906],[-71.450198,41.68645899906],[-71.449997,41.68398999906],[-71.447699,41.67786999906],[-71.444574,41.67429799906],[-71.444268,41.67364699906],[-71.444621,41.67301599906],[-71.446573,41.67195899906],[-71.447018,41.67121599906],[-71.446247,41.66630999906],[-71.444801,41.66380099906],[-71.443541,41.66301899906],[-71.442148,41.66372799906],[-71.440996,41.66623099906],[-71.440153,41.66684299906],[-71.434748,41.66626299906],[-71.430038,41.66754099906],[-71.426647,41.66952599906],[-71.426086,41.67048399906],[-71.424285,41.67027499906],[-71.417652,41.66529799906],[-71.408621,41.66316799906],[-71.408858,41.65784099906],[-71.408893,41.65146599906],[-71.407525,41.63332599906],[-71.403154,41.62746799906],[-71.403392,41.62551299906],[-71.408621,41.62195999906],[-71.407907,41.61964999906],[-71.402441,41.61556299906],[-71.404342,41.61183199906],[-71.409571,41.61040999906],[-71.411948,41.61112099906],[-71.416939,41.60490099906],[-71.414325,41.60258999906],[-71.403613,41.60295899906],[-71.403392,41.60063499906],[-71.40377,41.58932099906],[-71.410997,41.58659299906],[-71.419584,41.58578099906],[-71.430249,41.58339299906],[-71.439519,41.57734799906],[-71.438806,41.58143699906],[-71.440945,41.58499299906],[-71.446412,41.58321499906],[-71.444272,41.57894799906],[-71.44705,41.57842899906],[-71.446412,41.57450299906],[-71.443322,41.57308099906],[-71.438093,41.57059099906],[-71.444091,41.56804299906],[-71.443831,41.56606799906],[-71.442157,41.56381599906],[-71.439064,41.56367999906],[-71.437356,41.56222299906],[-71.435179,41.56213199906],[-71.434371,41.56163299906],[-71.435227,41.55954099906],[-71.434783,41.55809699906],[-71.432716,41.55738399906],[-71.430175,41.55823699906],[-71.428407,41.55708499906],[-71.427873,41.55547499906],[-71.431045,41.55010299906],[-71.428646,41.54698599906],[-71.424777,41.54943099906],[-71.423357,41.54818199906],[-71.426671,41.54356299906],[-71.423119,41.53875399906],[-71.417652,41.53626299906],[-71.418128,41.53217099906],[-71.415513,41.52985799906],[-71.415911,41.52794099906],[-71.414825,41.52312599906],[-71.414937,41.51630299906],[-71.421425,41.49862899906],[-71.420858,41.49321499906],[-71.418603,41.49212599906],[-71.420759,41.48997899906],[-71.420267,41.48357999906],[-71.417957,41.48207299906],[-71.417621,41.47793399906],[-71.418404,41.47265199906],[-71.421157,41.46988799906],[-71.422991,41.47268199906],[-71.427635,41.47253999906],[-71.430744,41.47063599906],[-71.430926,41.46565499906],[-71.430012,41.46114099906],[-71.426684,41.45882499906],[-71.425817,41.45600199906],[-71.426855,41.45412699906],[-71.430259,41.45303599906],[-71.432087,41.44938899906],[-71.431137,41.44730099906],[-71.433612,41.44499499906],[-71.438129,41.44165399906],[-71.43833,41.43958499906],[-71.4406,41.43836799906],[-71.442223,41.43972099906],[-71.442788,41.44139799906],[-71.448948,41.43847899906],[-71.455845,41.43298599906],[-71.455004,41.43031799906],[-71.455388,41.42800499906],[-71.45482,41.42182099906],[-71.452643,41.41777999906],[-71.452639,41.41475799906],[-71.452974,41.40967599906],[-71.455371,41.40796199906],[-71.456211,41.40512299906],[-71.459242,41.40311899906],[-71.462325,41.40127599906],[-71.462523,41.39822399906],[-71.463743,41.39575299906],[-71.467312,41.39495099906],[-71.468984,41.39362099906],[-71.474918,41.38610399906],[-71.484203,41.37184199906],[-71.48294,41.36592899906],[-71.480439,41.36241599906],[-71.480875,41.36024799906],[-71.484658,41.36143599906],[-71.487696,41.36148699906],[-71.489218,41.36237299906],[-71.488956,41.36435099906],[-71.494898,41.36827499906],[-71.497275,41.37130699906],[-71.502926,41.37419999906],[-71.513401,41.37523699906],[-71.520163,41.37652299906],[-71.526429,41.37691899906],[-71.531546,41.37649299906],[-71.535372,41.37496399906],[-71.537237,41.37332899906],[-71.540901,41.37301099906],[-71.545289,41.37403899906],[-71.551566,41.37442299906],[-71.586094,41.36808999906],[-71.594756,41.36516199906],[-71.598051,41.36506399906],[-71.606487,41.36394299906],[-71.616506,41.36298899906],[-71.624158,41.36120999906],[-71.632989,41.35846199906],[-71.638315,41.35543399906],[-71.642851,41.35566199906],[-71.68807,41.34282299906],[-71.696688,41.34097799906],[-71.701631,41.33696799906],[-71.70517,41.33428499906],[-71.716036,41.33108899906],[-71.72074,41.33156699906],[-71.72427,41.33208899906],[-71.730717,41.33163999906],[-71.746758,41.32809499906],[-71.751656,41.32540199906],[-71.761029,41.32849299906],[-71.766395,41.32885799906],[-71.773702,41.32797699906],[-71.785957,41.32573899906],[-71.815337,41.32023799906],[-71.833755,41.31563099906],[-71.845285,41.31186999906],[-71.857432,41.30631799906],[-71.859899,41.30942399906],[-71.862772,41.30979099906],[-71.862109,41.31661199906]],[[-71.613133,41.16028099907],[-71.610529,41.16264299907],[-71.610572,41.16837399906],[-71.609353,41.17172699906],[-71.607985,41.17286199906],[-71.607794,41.17539899906],[-71.605565,41.18213899906],[-71.601294,41.18321299906],[-71.597457,41.18518599906],[-71.594994,41.18839199906],[-71.593419,41.19144499906],[-71.592944,41.19891099906],[-71.58955,41.19655699906],[-71.585853,41.20024899906],[-71.580634,41.20337399906],[-71.578519,41.20907999906],[-71.576924,41.21102399906],[-71.576725,41.21573799906],[-71.576319,41.22490999906],[-71.577691,41.23123199906],[-71.574376,41.22783799906],[-71.570301,41.22534199906],[-71.567977,41.22467299906],[-71.565785,41.22494999906],[-71.562546,41.22421699906],[-71.55991,41.22163199906],[-71.55862,41.21919299906],[-71.555861,41.21663699906],[-71.554067,41.21295699906],[-71.555564,41.20831499906],[-71.557951,41.20451499906],[-71.561372,41.20060099906],[-71.564119,41.19537199906],[-71.566405,41.18820699906],[-71.566345,41.18427699906],[-71.564667,41.17967399906],[-71.561299,41.17576499906],[-71.55791,41.17301799906],[-71.554627,41.17342299906],[-71.552889,41.16911699906],[-71.550226,41.16678699906],[-71.544446,41.16491199907],[-71.545594,41.16345299907],[-71.543872,41.16132099907],[-71.545434,41.15996099907],[-71.545468,41.15748599907],[-71.547051,41.15368399907],[-71.551953,41.15171799907],[-71.556527,41.15156899907],[-71.561479,41.15049099907],[-71.56589,41.14900899907],[-71.568668,41.14936799907],[-71.575549,41.14824099907],[-71.578573,41.14761999907],[-71.580505,41.14909199907],[-71.584674,41.14822199907],[-71.587375,41.14806199907],[-71.5937,41.14633899907],[-71.595495,41.14737099907],[-71.599993,41.14693199907],[-71.611567,41.15390499907],[-71.613133,41.16028099907]]]}}}] \ No newline at end of file diff --git a/js/voters.js b/js/voters.js new file mode 100644 index 0000000..3ba2285 --- /dev/null +++ b/js/voters.js @@ -0,0 +1,592 @@ +/* +* This file is part of the Cargobike Community Canvassing Program (CCCP). +* Copyright 2023, Brian Flowers, SlightlyCyberpunk.com +* +* CCCP is free software: you can redistribute it and/or modify it under the terms +* of the GNU Affero General Public License as published by the Free Software +* Foundation, either version 3 of the License, or (at your option) any later version. +* +* CCCP 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 Affero General Public License for more details. + +* You should have received a copy of the Affero GNU General Public License along with CCCP. +* If not, see . +*/ + +// Load and display the selected voters +var lastLoc = {}; +function loadVoters(force = false, pending) { + setLoading(1); + + + if(lastLoc.lat > map.getBounds()._southWest.lat && + lastLoc.lat < map.getBounds()._northEast.lat && + lastLoc.lng > map.getBounds()._southWest.lng && + lastLoc.lng < map.getBounds()._northEast.lng && + force == false) { + console.log("SKIP REFRESH"); + setLoading(-1); + return; + } + lastLoc = map.getCenter(); + + // Clear any existing pins on the map + var layerKeys = Object.keys(map._layers); + for(var i = 0; i < layerKeys.length; i++) { + if(typeof map._layers[layerKeys[i]].options.icon != "undefined" && + map._layers[layerKeys[i]].options.persist != true) { + map.removeLayer(map._layers[layerKeys[i]]); + } + } + + // Build the request parameters + var latlon = ""; + var minLat = map.getBounds()._southWest.lat; + var minLon = map.getBounds()._southWest.lng; + var maxLat = map.getBounds()._northEast.lat; + var maxLon = map.getBounds()._northEast.lng; + if(turfLayer != null) { + if(minLat < turfLayer.getBounds()._southWest.lat) { + minLat = turfLayer.getBounds()._southWest.lat; + } + if(maxLat > turfLayer.getBounds()._northEast.lat) { + maxLat = turfLayer.getBounds()._northEast.lat; + } + if(minLon < turfLayer.getBounds()._southWest.lng) { + minLon = turfLayer.getBounds()._southWest.lng; + } + if(maxLon > turfLayer.getBounds()._northEast.lng) { + maxLon = turfLayer.getBounds()._northEast.lng; + } + } + + latlon += "&minLat="+minLat+ + "&maxLat="+maxLat+ + "&minLon="+minLon+ + "&maxLon="+maxLon; + + + var pendingStr = ""; + if(pending) { + pendingStr = "&pending"; + } + // Send the request and drop the map markers + var options = { + method: "POST", + headers: {"Content-Type": "application/x-www-form-urlencoded; charset=UTF-8"}, + body: getVoterString()+latlon+pendingStr + } + fetch("api.php?get=voterLocs", options).then(data => data.json()) + .then(locObj => { + if(locObj.overflow) { + toastMessage("More than "+locObj.count+" results were returned. Please zoom in or make a more precise selection."); + } + var locList = locObj.voterLocs; + for(var i = 0; i < locList.length; i++) { + var shade = ""; + if(locList[i].history == "likely") { + shade = ""; + } else if(locList[i].history == "unlikely") { + shade = "-light" + } else if(locList[i].history == "non") { + shade = "-hollow"; + } else { + shade = "-small"; + } + var iconImg = "marker-icon-purple"+shade+".png"; + if(locList[i].party.charAt(0) == "D") { + iconImg = "marker-icon-blue"+shade+".png"; + } else if(locList[i].party.charAt(0) == "R") { + iconImg = "marker-icon-red"+shade+".png"; + } else if(locList[i].party == "Unknown") { + iconImg = "marker-icon-tricolor.png"; + } + if(locList[i].icon) { + iconImg = locList[i].icon; + } + var markerIcon = L.icon({ + iconUrl: "images/"+iconImg, + iconSize: [24, 36], + iconAnchor: [12,36], + }); + var markerTitle = locList[i].addressLine1 + " ("+locList[i].count+" voters)"; + var newMarker = new L.marker([locList[i].latitude, locList[i].longitude], + {icon: markerIcon, title: markerTitle}).addTo(map); + newMarker.on('click', voterList.bind(null, locList[i].latitude, locList[i].longitude)); + } + + setLoading(-1); + }); +} + +// Prepare a list of voters for the details screen +function voterList(lat, lon, event) { + setLoading(1); + var options = { + method: "POST", + headers: {"Content-Type": "application/x-www-form-urlencoded; charset=UTF-8"}, + body: getVoterString() + } + fetch("api.php?get=voterList&lat="+lat+"&lon="+lon, options).then(data => data.json()) + .then(details => { + var select = null; + voterDetails(details[0].id, null); + if( document.getElementById("voterSel") == null) { + select = document.createElement("select"); + select.setAttribute("id", "voterSel"); + } else { + select = document.getElementById("voterSel"); + } + select.innerHTML = ""; + for(var i = 0; i < details.length; i++) { + var option = document.createElement("option"); + option.value = details[i].id; + option.innerHTML = details[i].lastName + ", " + details[i].firstName +" | " + details[i].addressLine1 + " " + details[i].addressLine2; + select.appendChild(option); + } + if( document.getElementById("voterSel") == null) { + document.getElementById("details").prepend(select); + } + select.onchange = function() { + var id = document.getElementById("voterSel").value; + voterDetails(id); + }; + }); + setLoading(-1); +} + +// Show details of a voter when clicking their map pin +function voterDetails(id, event) { + setLoading(1); + showVoterInfo(null, null, null, false); + fetch("api.php?get=voterDetails&id="+id).then(data => data.json()) + .then(details => { + + results = details.canvass; + if(results == undefined) { + results = Object(); + } + voter = details.voter; + custom = details.custom; + showVoterInfo(voter, results, custom, false); + setLoading(-1); + }); +} + +// +function showVoterInfo(details, results, custom, editable) { + document.getElementById("details").style.display = "block"; + document.getElementById("map").style.display = "none"; + + if(details == null) { + details = Object(); + } if(results == null) { + results = Object(); + } if(custom == null) { + custom = Array(); + } + + var table = document.getElementById("detailsTable"); + table.innerHTML = ""; + var keys = Object.keys(details); + for(var i = 0; i < keys.length; i++) { + if(keys[i] == "history" || keys[i] == "lat" || keys[i] == "lon" || keys[i] == "id") { + continue; + } + var row = document.createElement("tr"); + var cell = document.createElement("th"); + var cellName = keys[i].replace("historyStr", "votingHistory").replace("birthyear", "birthYear").replace(/([A-Z])/, ' $1'); + cellName = cellName.charAt(0).toUpperCase() + cellName.slice(1); + cell.innerHTML = cellName; + row.appendChild(cell); + cell = document.createElement("td"); + if( editable ) { + if(details[keys[i]] != null && typeof details[keys[i]] == "object") { + var input = document.createElement("select"); + for(var j = 0; j < details[keys[i]].length; j++) { + var option = document.createElement("option"); + option.value = details[keys[i]][j]; + option.innerHTML = details[keys[i]][j]; + input.appendChild(option); + } + } else { + var input = document.createElement("input"); + input.setAttribute("type", "text"); + input.value = details[keys[i]]; + } + input.setAttribute("class", "newVoterDetails"); + input.setAttribute("id", "voterDetails"+keys[i]); + cell.appendChild(input); + } else { + cell.innerHTML = details[keys[i]]; + } + row.appendChild(cell); + table.appendChild(row); + } + + if(details.lat != null) { + var input = document.createElement("input"); + input.setAttribute("type", "hidden"); + input.setAttribute("class", "newVoterDetails"); + input.setAttribute("id", "voterDetailslat"); + input.value = details.lat; + table.appendChild(input); + + input = document.createElement("input"); + input.setAttribute("type", "hidden"); + input.setAttribute("class", "newVoterDetails"); + input.setAttribute("id", "voterDetailslon"); + input.value = details.lon; + table.appendChild(input); + } + + for(var i = 0; i < custom.length; i++) { + var row = document.createElement("tr"); + var cell = document.createElement("th"); + cell.setAttribute("colspan", 2); + var icon = document.createElement("img"); + icon.setAttribute("src", "images/"+custom[i].icon); + cell.appendChild(icon); + cell.innerHTML += " "+custom[i].name; + row.appendChild(cell); + table.appendChild(row); + + var extraKeys = Object.keys(custom[i].extras); + for(var j = 0; j < extraKeys.length; j++) { + var row = document.createElement("tr"); + var cell = document.createElement("th"); + cell.innerHTML = extraKeys[j]; + row.appendChild(cell); + var cell = document.createElement("td"); + cell.innerHTML = custom[i].extras[extraKeys[j]]; + row.appendChild(cell); + table.appendChild(row); + } + } + + var controls = document.getElementById("detailsControls"); + controls.innerHTML = ""; + + var voterId = document.createElement("input"); + voterId.setAttribute("type", "hidden"); + voterId.setAttribute("id", "voterId"); + voterId.value = details.id; + controls.appendChild(voterId); + + var value = results.estSupportPct; + if(value == undefined) { + value = 0; + } + var supportLabel = document.createElement("label"); + supportLabel.setAttribute("for", "voterSupportRange"); + supportLabel.innerHTML = "Estimated Support Level:"; +/* var supportRange = document.createElement("input"); + supportRange.setAttribute("id", "voterSupportRange"); + supportRange.setAttribute("type", "range"); + supportRange.setAttribute("min", -100); + supportRange.setAttribute("max", 100); + supportRange.setAttribute("value", value); + supportRange.onchange = function() { + document.getElementById("supportText").value = + document.getElementById("voterSupportRange").value; + document.getElementById("voterSave").classList.add("unsaved"); + } + var supportText = document.createElement("input"); + supportText.setAttribute("id", "supportText"); + supportText.setAttribute("disabled", true); + supportText.setAttribute("value", value); + controls.appendChild(supportLabel); + controls.appendChild(supportRange); + controls.appendChild(supportText);*/ + var supportList = document.createElement("select"); + supportList.setAttribute("id", "voterSupportRange"); + + var supportOpt = document.createElement("option"); + supportOpt.innerHTML = "Extremely Opposed"; + supportOpt.value = -100; + supportList.appendChild(supportOpt); + supportOpt = document.createElement("option"); + supportOpt.innerHTML = "Very Opposed"; + supportOpt.value = -60; + supportList.appendChild(supportOpt); + supportOpt = document.createElement("option"); + supportOpt.innerHTML = "Somewhat Opposed"; + supportOpt.value = -30; + supportList.appendChild(supportOpt); + supportOpt = document.createElement("option"); + supportOpt.innerHTML = "Neutral"; + supportOpt.value = 0; + supportList.appendChild(supportOpt); + supportOpt = document.createElement("option"); + supportOpt.innerHTML = "Somwhat Supportive"; + supportOpt.value = 30; + supportList.appendChild(supportOpt); + supportOpt = document.createElement("option"); + supportOpt.innerHTML = "Very Supportive"; + supportOpt.value = 60; + supportList.appendChild(supportOpt); + supportOpt = document.createElement("option"); + supportOpt.innerHTML = "Extremely Supportive"; + supportOpt.value = 100; + supportList.appendChild(supportOpt); + supportList.onchange = function() { + document.getElementById("voterSave").classList.add("unsaved"); + } + controls.appendChild(supportLabel); + controls.appendChild(supportList); + + for(var j = 0; j < supportList.children.length; j++) { + if(supportList.children[j].value <= value) { + supportList.value = supportList.children[j].value; + } + } + + var notesLabel = document.createElement("label"); + notesLabel.setAttribute("for", "voterNotes"); + notesLabel.innerHTML = "Additional Notes:"; + var notes = document.createElement("textarea"); + notes.setAttribute("id", "voterNotes"); + if(results.notes == "undefined") { + notes.innerHTML = ""; + } else { + notes.innerHTML = results.notes; + } + notes.onchange = function() { document.getElementById("voterSave").classList.add("unsaved"); }; + controls.appendChild(notesLabel); + controls.appendChild(notes); + + var flagTable = document.createElement("table"); + var row = document.createElement("tr"); + var cell = document.createElement("td"); + var checkbox = document.createElement("input"); + checkbox.setAttribute("type", "checkbox"); + checkbox.id = "correctionsCheck"; + checkbox.onchange = function() { document.getElementById("voterSave").classList.add("unsaved"); }; + if(results.corrections == 1) { + checkbox.setAttribute("checked", true); + } + cell.appendChild(checkbox); + row.appendChild(cell); + cell = document.createElement("td"); + var label = document.createElement("label"); + label.setAttribute("for", "correctionsCheck"); + label.innerHTML = "Corrections needed?"; + cell.appendChild(label); + cell.innerHTML += "Please indicate in the notes what corrections are needed for this voter's data."; + row.appendChild(cell); + flagTable.appendChild(row); + + var row = document.createElement("tr"); + var cell = document.createElement("td"); + var checkbox = document.createElement("input"); + checkbox.setAttribute("type", "checkbox"); + checkbox.onchange = function() { document.getElementById("voterSave").classList.add("unsaved"); }; + if(results.priority == 1) { + checkbox.setAttribute("checked", true); + } + checkbox.id = "priorityCheck"; + cell.appendChild(checkbox); + row.appendChild(cell); + cell = document.createElement("td"); + var label = document.createElement("label"); + label.setAttribute("for", "priorityCheck"); + label.innerHTML = "Priority"; + cell.appendChild(label); + cell.innerHTML += "Mark for priority follow-up or review"; + row.appendChild(cell); + flagTable.appendChild(row); + + var row = document.createElement("tr"); + var cell = document.createElement("td"); + var checkbox = document.createElement("input"); + checkbox.setAttribute("type", "checkbox"); + checkbox.id = "noContactCheck"; + checkbox.onchange = function() { document.getElementById("voterSave").classList.add("unsaved"); }; + if(results.dnc == 1) { + checkbox.setAttribute("checked", true); + } + cell.appendChild(checkbox); + row.appendChild(cell); + cell = document.createElement("td"); + var label = document.createElement("label"); + label.setAttribute("for", "noContactCheck"); + label.innerHTML = "Do not contact"; + cell.appendChild(label); + cell.innerHTML += "Mark to avoid contacting this voter in the future."; + row.appendChild(cell); + flagTable.appendChild(row); + +// var row = document.createElement("tr"); +// var cell = document.createElement("td"); + var save = document.createElement("button"); + save.innerHTML = "save"; + save.onclick = saveVoterDetails; + save.setAttribute("id", "voterSave"); +// cell.appendChild(save); +// row.appendChild(cell); + +// var cell = document.createElement("td"); + var back = document.createElement("button"); + back.innerHTML = "back"; + back.onclick = restoreMap; + back.setAttribute("id", "voterBack"); +// cell.appendChild(back); +// row.appendChild(cell); + +// flagTable.appendChild(row); + + controls.appendChild(flagTable); + controls.appendChild(save); + controls.appendChild(back); + var mr = document.getElementById("mapReturn"); + + if(mr != null) { + mr.parentElement.removeChild(mr); + } +} + +// +function saveVoterDetails() { + setLoading(1); + var id = document.getElementById("voterId").value; + var supportPct = document.getElementById("voterSupportRange").value; + var notes = document.getElementById("voterNotes").value; + var corrections = document.getElementById("correctionsCheck").checked; + var priority = document.getElementById("priorityCheck").checked; + var dnc = document.getElementById("noContactCheck").checked; + var newEntryBody = ""; + var newEntryItems = document.getElementsByClassName("newVoterDetails"); + if(newEntryItems.length > 0) { + for(var i = 0; i < newEntryItems.length; i++) { + var name = newEntryItems[i].id.replace("voterDetails", ""); + var value = newEntryItems[i].value; + newEntryBody += "&"+name+"="+encodeURIComponent(value); + } + } + + // Send the request and drop the map markers + if( currentCanvass != null ) { + var canvassId = currentCanvass.id; + } else { + var canvassId = 0; + } + var options = { + method: "POST", + headers: {"Content-Type": "application/x-www-form-urlencoded; charset=UTF-8"}, + body: "id="+id+"&supportPct="+supportPct+"¬es="+encodeURIComponent(notes)+ + "&corrections="+corrections+"&priority="+priority+"&dnc="+dnc+"&canvassId="+canvassId+ + newEntryBody + }; + fetch("api.php?get=set&set=canvassResult", options).then(data => data.json()) + .then(resp => { + console.log(resp); + }); + + document.getElementById("voterSave").classList.remove("unsaved"); + setLoading(-1); +} + +// Generate a string representing the voter selection +function getVoterString() { + var parties = ""; + if(document.getElementById("voters-dem").checked) { + parties += "Democrat"; + } + if(document.getElementById("voters-rep").checked) { + parties += ",Republican"; + } + if(document.getElementById("voters-other").checked) { + parties += ",Unaffiliated,"; + } + if(document.getElementById("voters-unknown").checked) { + parties += ",Unknown,"; + } + + + parties = parties.replace(/^,|,$/g, ''); + + var history = ","; + if(document.getElementById("voters-likely").checked) { + history += "likely,"; + } + if(document.getElementById("voters-unlikely").checked) { + history += "unlikely,"; + } + if(document.getElementById("voters-new").checked) { + history += "new,"; + } + if(document.getElementById("voters-non").checked) { + history += "non,"; + } + history = history.replace(/^,|,$/g, ''); + + var affs = ""; + + var precincts=""; + var precinctChecks=document.getElementsByClassName("precinct-check"); + for(var i = 0; i < precinctChecks.length; i++) { + if( precinctChecks[i].checked) { + precincts += precinctChecks[i].id.replace("precinct-","")+","; + } + } + precincts = precincts.replace(/^,|,$/g, ''); + + var lists=""; + var listChecks=document.getElementsByClassName("list-check"); + for(var i = 0; i < listChecks.length; i++) { + if( listChecks[i].checked ) { + lists += listChecks[i].id.replace("voters-", "")+","; + } + } + lists = lists.replace(/^,|,$/g, ''); + + return "parties="+parties+"&history="+history+"&affiliations="+affs+"&precincts="+precincts+"&lists="+lists; +} + +// Configure voter selection from an existing voter string +function setVoterString(voterStr) { + // Clear all precincts so we can update + var precinctChecks = document.getElementsByClassName("precinct-check"); + for(var i = 0; i < precinctChecks.length; i++) { + if(precinctChecks[i].checked) { + precinctChecks[i].checked = false; + precinctChecks[i].onclick(); + } + } + + var aspects = voterStr.split("&"); + for(var a = 0; a < aspects.length; a++) { + var elementId = aspects[a].split("=")[0]; + var elements = aspects[a].split("=")[1].split(","); + if(elementId == "parties") { + document.getElementById("voters-dem").checked = elements.indexOf("Democrat") != -1; + document.getElementById("voters-rep").checked = elements.indexOf("Republican") != -1; + document.getElementById("voters-other").checked = elements.indexOf("Unaffiliated") != -1; + document.getElementById("voters-unknown").checked = elements.indexOf("Unknown") != -1; + } else if(elementId == "history") { + document.getElementById("voters-likely").checked = elements.indexOf("likely") != -1; + document.getElementById("voters-unlikely").checked= elements.indexOf("unlikely") != -1; + document.getElementById("voters-non").checked = elements.indexOf("non") != -1; + document.getElementById("voters-new").checked = elements.indexOf("new") != -1; + } else if(elementId == "lists") { + var listChecks=document.getElementsByClassName("list-check"); + var lists = Array(); + for(var i = 0; i < listChecks.length; i++) { + listChecks[i].checked = false; + if( elements.indexOf(listChecks[i].id.replace("voters-", "")) != -1 ) { + listChecks[i].checked = true; + lists += listChecks[i].id.replace("voters-", "")+","; + } + } + } else if(elementId == "precincts" && document.getElementById("precinct-list") != null) { + for(var e = 0; e < elements.length; e++) { + if(elements[e] != "" && !document.getElementById("precinct-"+elements[e]).checked) { + document.getElementById("precinct-"+elements[e]).checked = true; + document.getElementById("precinct-"+elements[e]).onclick(); + } + } + } + } + loadVoters(true); +} diff --git a/login.php b/login.php new file mode 100644 index 0000000..5b95547 --- /dev/null +++ b/login.php @@ -0,0 +1,80 @@ + + + + + +$2y$10$GBn6IBJDct2zRTsQwnGehumQWZo9MLM8//8SiKw9HLZtk6a9k5t7u + +*/ + +// Connect to MariaDB +$options = [ + PDO::ATTR_EMULATE_PREPARES => false, // Disable emulation mode for "real" prepared statements + PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC, // Make the default fetch be an associative array +]; +$dbh = new PDO("mysql:host=localhost;dbname=CCCP", "root", "yix", $options); + +// Check if password is valid +if( isset($_POST) && sizeof($_POST) > 0 ) { + $_POST['username']; + $_POST['password']; + + $query = "SELECT * FROM users WHERE UPPER(username) = ?;"; + $params= Array(strtoupper($_POST['username'])); + $stmt = $dbh->prepare($query); + $stmt -> execute($params); + $row = $stmt->fetchAll(); + if(password_verify($_POST['password'], $row[0]['passhash']) ) { + $_SESSION['username'] = $_POST['username']; + $_SESSION['userId'] = $row[0]['id']; + $_SESSION['authtime'] = time(); + $_SESSION['permissions'] = $row[0]['permissions']; + header("Location: ./index.php"); + } + + $auth_error = "Unable to login."; +} + +?> + + + + + + + + + +
+
+ + + + + +
+ +
+ + diff --git a/phonebank.php b/phonebank.php new file mode 100644 index 0000000..f750dc4 --- /dev/null +++ b/phonebank.php @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + Phonebank | CCCP: Cargobike Community Canvassing Program + + + +
+
+ Content is loading...please stand by... + (0) +
+ Home | Phonebank + + Phonebank Coming Soon + + +
+ +
+ +
+
+ +
+ + + diff --git a/research.php b/research.php new file mode 100644 index 0000000..fcdf870 --- /dev/null +++ b/research.php @@ -0,0 +1,233 @@ + + + + false, // Disable emulation mode for "real" prepared statements + PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC, // Make the default fetch be an associative array +]; +$dbh = new PDO("mysql:host=localhost;dbname=CCCP", "root", "yix", $options); + +?> + + + + + + + + + + + + + + + + + + + + + + + + + + + + CCCP: Cargobike Community Canvassing Program + + + +
+
+ Content is loading...please stand by... + (0) +
+ Home | Research + +
+Districts & Areas + +
+ + + +
+ + +
+ + +
+
+
+ + + + +
+Demographics + + +
+

Absolute Stats

+
+
+

Relative Stats

+
+
+
+
+ +
+Voters +
+

Use the checkboxes below to display pins on the map for each category of voter.

+

To load fewer pins (which may load faster), select a turf first or zoom in. + A maximum of 3000 voters will be shown at once.

+ + + + + + + + + + + + + + + + + + + +
+
+
+
+
+ + + + + + + + + + + + + + + + + + +
+
+
+
+
+ + + + +prepare($query); +$stmt->execute(); +$rows = $stmt->fetchAll(PDO::FETCH_ASSOC); + +for($i = 0; $i < sizeOf($rows); $i++) { + $id = $rows[$i]['id']; + $name = $rows[$i]['name']; + $icon = $rows[$i]['icon']; + echo<< + + + +EOF; +} +?> +
+
+ + +
+
+ + +
+Voter Contacts +
+

Use the link below to open the turf menu on the map, which you can use to define a + new area to canvass. Once the turf is created, select the desired voter attributes + in the Voters panel above, then create a canvass to target these voters.

+ Cut A New Turf +

+
+
+
+
+ + Hide Menu + + +
+ +
+ +
+
+
+ +
+ + + diff --git a/settings-api.php b/settings-api.php new file mode 100644 index 0000000..fd7fbd7 --- /dev/null +++ b/settings-api.php @@ -0,0 +1,390 @@ + + +. +*/ +?> + + + false, // Disable emulation mode for "real" prepared statements + PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC, // Make the default fetch be an associative array +]; +$dbh = new PDO("mysql:host=localhost;dbname=CCCP", "root", "yix", $options); + +if(isset($_GET['get']) && $_GET['get'] == "taskStatus") { + $query = "SELECT * FROM tasks WHERE taskComplete is NULL;"; + $params= Array(); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + $rows = $stmt->fetchAll(); + + echo json_encode($rows); + +// URL: ?get=mapassist +// provide a mapping tasks to process with turf.js +} else if( isset($_GET['get']) && $_GET['get'] == "mapassist") { + $matask = Array(); + $matask['remaining'] = 0; + $matask['total'] = 0; + $matask['type'] = "intersect"; + $matask['source'] = Array(); + $matask['target'] = Array(); + + // Fetch blockgroups needing precincts + $query = "SELECT * FROM demographicArea WHERE json IS NOT NULL AND type='blockgroup' AND precinctId IS NULL LIMIT 1;"; + $stmt = $dbh->prepare($query); + $stmt->execute(); + $rows = $stmt->fetchAll(); + $matask['source'] = $rows; + + // Fetch precincts + $query = "SELECT * FROM demographicArea WHERE json IS NOT NULL AND type='precinct';"; + $stmt = $dbh->prepare($query); + $stmt->execute(); + $rows = $stmt->fetchAll(); + $matask['target'] = $rows; + + echo json_encode($matask); + + +} else if(isset($_GET['set']) && $_GET['set'] == "voterFile") { +// $dbh = new PDO("mysql:host=localhost;dbname=CCCP", "root", "", $options); + + // Place the file in the tasks directory + $targetName = floor(microtime(true)*1000).".csv"; + if($_FILES['voterUpload']['size'] > 100000000) { + echo "ERROR: File too large (max size: 100MB)"; + die(); + } + session_write_close(); + move_uploaded_file($_FILES['voterUpload']['tmp_name'], "/var/www/html/CCCP/tasks/".$targetName); + + // Insert the task in the tasks table + $linecount = 0; + $handle = fopen("tasks/".$targetName, "r"); + while(!feof($handle)){ + $line = fgets($handle); + $linecount++; + } + + $query = "INSERT INTO tasks(taskName, taskArgs, taskStart, taskStep, taskLastStep, taskPercent) ". + "VALUES(?, ?, CURRENT_TIMESTAMP, 0, ?, 0);"; + $params= Array("voterFile", $targetName, $linecount); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + + // Trigger task execution + exec("nohup php ./taskRunner.php 1>>taskRunner.log 2>&1 &"); + + // Return task status + $query = "SELECT * FROM tasks WHERE id=?"; + $params= Array($dbh->lastInsertId()); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + $rows = $stmt->fetchAll(); + header('Location: settings.php'); + die(); + +} else if(isset($_GET['set']) && $_GET['set'] == "customVoterFile") { + // Determine if/how to bump list priorities + $priority = $_POST['listPriority']; + $query = "SELECT MIN(priority) as min, MAX(priority) as max, ". + "(select count(*) from customLists where priority=1) as cnt ". + "FROM customLists;"; + $stmt = $dbh->prepare($query); + $stmt->execute(); + $res = $stmt->fetchAll(); + if( $priority >= $res[0]['min'] && $priority <= $res[0]['max'] && $res[0]['cnt'] > 0 ) { + if( $priority < 0 ) { + $query = "UPDATE customLists SET priority = priority - 1 WHERE priority <= ?;"; + $params= Array($priority); + $stmt = $dbh->prepare($query); +//print_r($dbh->errorInfo()); + $stmt -> execute($params); + } else { + $query = "UPDATE customLists SET priority = priority + 1 WHERE priority >= ?;"; + $params= Array($priority); + $stmt = $dbh->prepare($query); +//print_r($dbh->errorInfo()); + $stmt -> execute($params); + } + } + + $query = "INSERT INTO customLists(name, priority, icon) VALUES(?,?,?);"; + $params = Array($_POST['listName'],$_POST['listPriority'],$_POST['listIcons']); + + $stmt = $dbh->prepare($query); + $stmt->execute($params); + $lid = $dbh->lastInsertId(); + + + // Place the file in the tasks directory + $targetName = floor(microtime(true)*1000).".csv"; + if($_FILES['customVoterUpload']['size'] > 100000000) { + echo "ERROR: File too large (max size: 100MB)"; + die(); + } + session_write_close(); + move_uploaded_file($_FILES['customVoterUpload']['tmp_name'], "/var/www/html/CCCP/tasks/".$targetName); + + // Insert the task in the tasks table + $linecount = 0; + $handle = fopen("tasks/".$targetName, "r"); + while(!feof($handle)){ + $line = fgets($handle); + $linecount++; + } + + $query = "INSERT INTO tasks(taskName, taskArgs, taskStart, taskStep, taskLastStep, taskPercent) ". + "VALUES(?, ?, CURRENT_TIMESTAMP, 0, ?, 0);"; + $params= Array("customVoterFile", $targetName."|".$lid, $linecount); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + + // Trigger task execution + exec("nohup php ./taskRunner.php 1>>taskRunner.log 2>&1 &"); + + // Return task status + $query = "SELECT * FROM tasks WHERE id=?"; + $params= Array($dbh->lastInsertId()); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + $rows = $stmt->fetchAll(); + header('Location: settings.php'); + die(); + + +// URL: ?set=geocoder +// POST: geoapifyToggle +// geoapifySave +// geoapifyKey +// geoapifyMaxDaily +// mapscoToggle +// mapscoSave +// mapscoKey +// mapscoMaxDaily +// tomtomToggle +// tomtomSave +// tomtomKey +// tomtomMaxDaily +} else if(isset($_GET['set']) && $_GET['set'] == "geocoder") { + // GEOAPIFY + if( isset($_POST['geoapifyToggle']) && $_POST['geoapifyToggle'] == "OFF" ) { + // Enable geocoding + $query = "INSERT INTO tasks(taskName, taskStart, taskStep, taskLastStep, taskPercent) ". + "VALUES('geocoder.geoapify', CURRENT_TIMESTAMP, 0, ?, 0);"; + $params= Array($_POST['geoapifyDailyMax']); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + + // Trigger task execution + exec("nohup php ./taskRunner.php 1>>taskRunner.log 2>&1 &"); + + } else if( isset($_POST['geoapifyToggle']) && $_POST['geoapifyToggle'] == "ON" ) { + // Disable geocoding + $query = "UPDATE tasks SET taskComplete=CURRENT_TIMESTAMP WHERE taskName='geocoder.geoapify'"; + $stmt = $dbh->prepare($query); + $stmt->execute(); + + } else if( isset($_POST['geoapifySave']) ) { + // Update geocoding configuration + $query = "REPLACE INTO config(configValue, configName) VALUES(?,'geocoder.geoapify.key'); "; + $params= Array($_POST['geoapifyKey']); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + + $query = "REPLACE INTO config(configValue, configName) VALUES(?,'geocoder.geoapify.maxdaily');"; + $params= Array($_POST['geoapifyDailyMax']); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + } + // MAPS.CO + if( isset($_POST['mapscoToggle']) && $_POST['mapscoToggle'] == "OFF" ) { + // Enable geocoding + $query = "INSERT INTO tasks(taskName, taskStart, taskStep, taskLastStep, taskPercent) ". + "VALUES('geocoder.maps.co', CURRENT_TIMESTAMP, 0, ?, 0);"; + $params= Array($_POST['mapscoDailyMax']); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + + // Trigger task execution + exec("nohup php ./taskRunner.php 1>>taskRunner.log 2>&1 &"); + + } else if( isset($_POST['mapscoToggle']) && $_POST['mapscoToggle'] == "ON" ) { + // Disable geocoding + $query = "UPDATE tasks SET taskComplete=CURRENT_TIMESTAMP WHERE taskName='geocoder.maps.co'"; + $stmt = $dbh->prepare($query); + $stmt->execute(); + } else if( isset($_POST['mapscoSave']) ) { + // Update geocoding configuration + $query = "REPLACE INTO config (configValue, configName) VALUES(?, 'geocoder.maps.co.key'); "; + $params= Array($_POST['mapscoKey']); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + + $query = "REPLACE INTO config (configValue, configName) VALUES (?,'geocoder.maps.co.maxdaily');"; + $params= Array($_POST['mapscoDailyMax']); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + } + + // TOMTOM + if( isset($_POST['tomtomToggle']) && $_POST['tomtomToggle'] == "OFF" ) { + // Enable geocoding + $query = "INSERT INTO tasks(taskName, taskStart, taskStep, taskLastStep, taskPercent) ". + "VALUES('geocoder.tomtom', CURRENT_TIMESTAMP, 0, ?, 0);"; + $params= Array($_POST['tomtomDailyMax']); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + + // Trigger task execution + exec("nohup php ./taskRunner.php 1>>taskRunner.log 2>&1 &"); + + } else if( isset($_POST['tomtomToggle']) && $_POST['tomtomToggle'] == "ON" ) { + // Disable geocoding + $query = "UPDATE tasks SET taskComplete=CURRENT_TIMESTAMP WHERE taskName='geocoder.tomtom'"; + $stmt = $dbh->prepare($query); + $stmt->execute(); + } else if( isset($_POST['tomtomSave']) ) { + // Update geocoding configuration + $query = "REPLACE INTO config (configValue, configName) VALUES(?, 'geocoder.tomtom.key'); "; + $params= Array($_POST['tomtomKey']); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + + $query = "REPLACE INTO config (configValue, configName) VALUES (?,'geocoder.tomtom.maxdaily');"; + $params= Array($_POST['tomtomDailyMax']); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + } + + + header('Location: settings.php'); + die(); + +// URL: ?set=censusFile +// POST:censusUpload -- a zip file containing census data +} else if(isset($_GET['set']) && $_GET['set'] == "censusFile") { + + // Place the file in the tasks directory + $targetName = $_FILES['censusUpload']['name']; + if($_FILES['censusUpload']['size'] > 100000000) { + echo "ERROR: File too large (max size: 100MB)"; + die(); + } + session_write_close(); + move_uploaded_file($_FILES['censusUpload']['tmp_name'], "/var/www/html/CCCP/tasks/".$targetName); + + // Unzip the archive + $path = "/var/www/html/CCCP/tasks/".pathinfo($targetName, PATHINFO_FILENAME)."/"; + + $zip = new ZipArchive; + $res = $zip->open("/var/www/html/CCCP/tasks/".$targetName); + if ($res === TRUE) { + // extract it to the path we determined above + $zip->extractTo($path); + $zip->close(); + } else { + echo "Unable to uncompress archive: ".$targetName; + die(); + } + + // Insert the task in the tasks table + $linecount = 0; + $dataFiles = glob($path."*-Data.csv"); + $handle = fopen($dataFiles[0], "r"); + while(!feof($handle) && $handle !== FALSE){ + $line = fgets($handle); + $linecount++; + } + + $query = "INSERT INTO tasks(taskName, taskArgs, taskStart, taskStep, taskLastStep, taskPercent) ". + "VALUES(?, ?, CURRENT_TIMESTAMP, 0, ?, 0);"; + $params= Array("censusFile", pathinfo($targetName, PATHINFO_FILENAME), $linecount-1); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + + // Trigger task execution + exec("nohup php ./taskRunner.php 1>>taskRunner.log 2>&1 &"); + + header('Location: settings.php'); + die(); + +// URL: ?set=censusArea +// POST:censusAreaUpload -- a geojson file containing census area definitions +} else if(isset($_GET['set']) && $_GET['set'] == "censusArea") { + + // Place the file in the tasks directory + $targetName = floor(microtime(true)*1000).".geojson"; + if($_FILES['censusAreaUpload']['size'] > 500000000) { + echo "ERROR: File too large (max size: 500MB)"; + die(); + } + + session_write_close(); + move_uploaded_file($_FILES['censusAreaUpload']['tmp_name'], "/var/www/html/CCCP/tasks/".$targetName); + + // Insert the task in the tasks table + $linecount = 0; + $handle = fopen("/var/www/html/CCCP/tasks/".$targetName, "r"); + while(!feof($handle) && $handle !== FALSE){ + $line = fgets($handle); + $linecount++; + } + + $query = "INSERT INTO tasks(taskName, taskArgs, taskStart, taskStep, taskLastStep, taskPercent) ". + "VALUES(?, ?, CURRENT_TIMESTAMP, 0, ?, 0);"; + $params= Array("censusAreaFile", $targetName, $linecount-1); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + + // Trigger task execution + exec("nohup php ./taskRunner.php 1>>taskRunner.log 2>&1 &"); + + header('Location: settings.php'); + die(); + +// URL: ?delete=list +// FET: id +} else if(isset($_GET['delete']) && $_GET['delete'] == "list" && isset($_GET['id'])) { + $id = $_GET['id']; + + $query = "DELETE FROM customVoter WHERE listId = ?;"; + $stmt = $dbh->prepare($query); + $stmt->execute(Array($id)); + + $query = "DELETE FROM customLists WHERE id = ?;"; + $stmt = $dbh->prepare($query); + $stmt->execute(Array($id)); + + echo json_encode($dbh->errorInfo()); +} + +?> diff --git a/settings.php b/settings.php new file mode 100644 index 0000000..b543b18 --- /dev/null +++ b/settings.php @@ -0,0 +1,546 @@ + + + + + false, // Disable emulation mode for "real" prepared statements + PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC, // Make the default fetch be an associative array +]; +$dbh = new PDO("mysql:host=localhost;dbname=CCCP", "root", "yix", $options); + +// Fetch configuration values +$query = "SELECT * FROM config"; +$stmt = $dbh->prepare($query); +$stmt->execute(); +$rows = $stmt->fetchAll(); + +$CONFIG = Array(); +for($i = 0; $i < sizeof($rows); $i++) { + $CONFIG[$rows[$i]['configName']] = $rows[$i]['configValue']; +} + + +// Fetch any status details +$STATUS = Array(); + +// Current min/max list priorities +$query = "SELECT min(priority) min, max(priority) max FROM customLists"; +$stmt = $dbh->prepare($query); +$stmt->execute(); +$rows = $stmt->fetchAll(); + +$min = -2; +$max = 2; +if( sizeof($rows) != 0 ) { + $min = $rows[0]['min'] - 1; + $max = $rows[0]['max'] + 1; +} +$STATUS['cv.list.min'] = $min; +$STATUS['cv.list.max'] = $max; + +// Geoapify status check +$query = "SELECT * FROM tasks WHERE taskName = 'geocoder.geoapify' AND taskComplete IS NULL ORDER BY taskUpdate DESC;"; +$stmt = $dbh->prepare($query); +$stmt->execute(); +$rows = $stmt->fetchAll(); + +if( sizeof($rows) == 0 ) { + $STATUS['geocoder.geoapify'] = "OFF"; +} else if (sizeof($rows) > 10) { + $STATUS['geocoder.geoapify'] = "ERROR"; + $STATUS['geocoder.geoapify.last'] = $rows[0]['taskUpdate']; +} else { + $STATUS['geocoder.geoapify'] = "ON"; + $STATUS['geocoder.geoapify.last'] = $rows[0]['taskUpdate']; +} + +// Geocode.maps.co status check +$query = "SELECT * FROM tasks WHERE taskName = 'geocoder.maps.co' AND taskComplete IS NULL ORDER BY taskUpdate DESC;"; +$stmt = $dbh->prepare($query); +$stmt->execute(); +$rows = $stmt->fetchAll(); + +if( sizeof($rows) == 0 ) { + $STATUS['geocoder.maps.co'] = "OFF"; +} else if (sizeof($rows) > 10) { + $STATUS['geocoder.maps.co'] = "ERROR"; + $STATUS['geocoder.maps.co.last'] = $rows[0]['taskUpdate']; +} else { + $STATUS['geocoder.maps.co'] = "ON"; + $STATUS['geocoder.maps.co.last'] = $rows[0]['taskUpdate']; +} + +// TomTom status check +$query = "SELECT * FROM tasks WHERE taskName = 'geocoder.tomtom' AND taskComplete IS NULL ORDER BY taskUpdate DESC;"; +$stmt = $dbh->prepare($query); +$stmt->execute(); +$rows = $stmt->fetchAll(); + +if( sizeof($rows) == 0 ) { + $STATUS['geocoder.tomtom'] = "OFF"; +} else if (sizeof($rows) > 10) { + $STATUS['geocoder.tomtom'] = "ERROR"; + $STATUS['geocoder.tommtom.last'] = $rows[0]['taskUpdate']; +} else { + $STATUS['geocoder.tomtom'] = "ON"; + $STATUS['geocoder.tomtom.last'] = $rows[0]['taskUpdate']; +} + + +// Global geocoder status +$query = "SELECT count(*) cnt FROM voterAddresses va, voters v WHERE v.addressId = va.id AND va.latitude IS NULL;"; +$stmt = $dbh->prepare($query); +$stmt->execute(); +$rows = $stmt->fetchAll(); +//print_r($rows[0]['cnt']); +if( sizeof($rows) == 0) { + $STATUS['geocoder.remaining'] = "N/A"; +} else { + $STATUS['geocoder.remaining'] = $rows[0]['cnt']; +} + +/*$STATUS['geocoder.maxDaily'] = 1; +$STATUS['geocoder.maxDaily'] += $STATUS['geocoder.geoapify'] == "ON" ? $CONFIG['geocoder.geoapify.maxdaily'] : 0; +$STATUS['geocoder.maxDaily'] += $STATUS['geocoder.maps.co'] == "ON" ? $CONFIG['geocoder.maps.co.maxdaily'] : 0; +$STATUS['geocoder.maxDaily'] += $STATUS['geocoder.tomtom'] == "ON" ? $CONFIG['geocoder.tomtom.maxdaily'] : 0;*/ +$query = "select count(*) cnt from geocodeResults where latitude IS NOT NULL ". + "AND updateDate > DATE_SUB(CURDATE(), INTERVAL 1 DAY);"; +$stmt = $dbh->prepare($query); +$stmt->execute(); +$rows = $stmt->fetchAll(); +//print_r($rows[0]['cnt']); +if( sizeof($rows) == 0) { + $STATUS['geocoder.maxDaily'] = "N/A"; +} else { + $STATUS['geocoder.maxDaily'] = $rows[0]['cnt']; +} + + + +?> + + + + + + + + + + + + + + + + + + + Settings | CCCP: Cargobike Community Canvassing Program + + + +
+
+ Content is loading...please stand by... + (0) +
+ Home | Settings + +
+Voters +
+ Import Voter File + + + + +
+
+ Use the form below to upload your state voter file. This should be uploaded + as a CSV file with the following columns:
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
Column NumberColumn NameExample Value
1 First Name Euguene
2 Middle Name Victor
3 Last Name Debs
4 Birth Year 1855
5 Status Inctive
6 Party Unaffiliated
7 Precinct 0101
8 National Congressional District01
9 State Senate District 03
10State House District 04
11Rep Vote 83
12Ward Council
13Ward District
14School District
15Special District
16Phone 826-968-8333
17Email
18State Voter ID 77658288
19Address Line 1 151 N Desplaines St
20Address Line 2
21City Chicago
21State Illinois
21Zip 60661
21Registration Date 1848-02-21
21Voting History 1904;1908-General;1912-Primary;1920
+
+ The first line of this file should be a header containing the field names. + (It will be ignored.)
+ State voter ID is the only unique column -- if you upload multiple files, + records containing the same voter ID will overwrite each other, If + you want to upload multiple files, you should start with the oldest (or least accurate) first.
+ If the state voter ID is left blank, this could result in duplicate entries.
+
+
+
+ +
+
+ + Import Custom List + + + + + +
+
+ Use the form below to upload an additional CSV list of voters to target.
+ This is for lists of members, donors to a particular candidate, or anyone else + you might want to include separately from the main voter file.
+
+ + + + + + + + + + + +
Column NumberColumn NameExample Value
1CCCP Internal Voter ID *708370
2CCCP Internal Address ID *717885
3First Name Richard
4Last Name Stallman
5Address Line 1 51 Franklin St
6Address Line 1
7City Boston
8State MA
9Zip 02110
+

* If you have extracted voters from the CCCP internal database in order to build these lists, + you can include the CCCP voters.id and voterAddresses.id values to ensure the voters are linked correctly. + If you are not sure what this means please leave these columns blank, voters will be matched based + on the name and address instead.

+

In addition to columns listed above, any additional columns will be stored and displayed + on the voter details screen. For example, you could add a tenth column with the amount + contributed to a campaign, and an eleventh column with the date of the contribution.

+

The first row should be a header containing the column names.

+
+

+
+

+
+

+
+ + Manage Custom Lists + +prepare($query); +$stmt->execute(); +$rows = $stmt->fetchAll(); + +for($i = 0; $i < sizeof($rows); $i++) { + echo ''.PHP_EOL; + echo ''.PHP_EOL; + echo ''.PHP_EOL; + echo ''.PHP_EOL; + echo ''.PHP_EOL; +} +?> +
'.$rows[$i]['name'].'Priority '.$rows[$i]['priority'].'
+ + Voter Geocoding +
+ + + + + + + + + + + + + + + + + + + +
+

Geocoding converts voter addresses into a longitude and latitude position. This is needed + in order to locate voters on the map; pins will not appear for voters who are not yet geocoded.

+ Geoapify.com
+ + + +
+ + + +
+ + + +
Last triggered:
+ + + + + + + + + + + + + + + + + + + + + +
Maps.co
+ + + +
+ + + +
+ + + +
Last triggered:
+ + + + + + + + + + + + + + + + + + + + + +
TomTom
+ + + +
+ + + +
+ + + +
Last triggered:
+ + + + + + + + + +
Records Remaining: + + +
+ +
+
+
+ +
+Demographics +
+ Import Census Statistics + + + + +
+
+

Use the form below to upload a census data file for display in the demographics panel. + (To display that data you must also upload a corresponding area file in the section below.)

+

These data files can be downloaded from data.census.gov

+

The file you download (and then upload) should be a .zip archive containing three files:

+
    +
  • [file ID]-Column-Metadata.csv
  • +
  • [file ID]-Data.csv
  • +
  • [file ID]-Table-Notes.txt
  • +
+

You can download these by using the Advanced Search tool. There is a more detailed guide + available on the census website, but the basic process is:

+
    +
  1. Select a geography of either blocks, block groups, or precincts (select all within your state)
  2. +
  3. Select a topic of demographics you want to add
  4. +
  5. Open the Tables tab and find the table with the data you want to import
  6. +
  7. Using the Download Table Data link, download a zip file to upload below:
  8. +
+
+
+ +
+
+ + Import Census Areas + + + + +
+
+

Use the form below to upload a geojson file containing a demographic area or voting district. Be aware of redistricting when choosing + which files to upload. At this time, CCCP cannot handle data from multiple years, so you should only update data that uses current + divisions.

+

Blockgroup and precinct files can be downloaded (as Census Block Groups and Voting Districts) from the following link:
+ US Census Cartographic Files
+ Block files are also available from the census, although a bit harder to find, but you can use the link below for the 2020 Census:
+ Census TIGER TABBLOCK for 2020

+

These files must then be converted into geojson format, using a tool like JOSM

+

Simply open the .shp file from JOSM and then save the same file but change the format to geojson.

+
+
+ +
+
+ + + +
+
+ + + + +
+ +
+ +
+
+ +
+ +
+
+ + + diff --git a/taskRunner.php b/taskRunner.php new file mode 100644 index 0000000..12456af --- /dev/null +++ b/taskRunner.php @@ -0,0 +1,958 @@ +. +*/ + +// Connect to MariaDB +$options = [ + PDO::ATTR_EMULATE_PREPARES => false, // Disable emulation mode for "real" prepared statements + PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC, // Make the default fetch be an associative array +]; +$dbh = new PDO("mysql:host=localhost;dbname=CCCP", "root", "yix", $options); + +// Check if this is already running and abort if it is +$query = "SELECT * FROM config WHERE configName='taskRunStatus';"; +$stmt = $dbh->prepare($query); +$stmt->execute(); +$rows = $stmt->fetchAll(); +if(sizeof($rows) != 0 && $rows[0]['configValue'] != "") { + echo "Already running since: ".$rows[0]['configValue']; + echo "(If this in incorrect, UPDATE config SET configValue='' WHERE configName='taskRunStatus';)".PHP_EOL; + die(); +} else { + $query = "REPLACE INTO config(configValue, configName) VALUES(CURRENT_TIMESTAMP, 'taskRunStatus');"; + $stmt = $dbh->prepare($query); + $stmt->execute(); +} + +// Select all tasks that are not yet completed +$query = "SELECT * FROM tasks WHERE taskComplete IS NULL;"; +$stmt = $dbh->prepare($query); +$stmt->execute(); +$tasks = $stmt->fetchAll(); + +// Iterate through the tasks +for($i = 0; $i < sizeof($tasks); $i++) { +/////////////////////////////////////////////// +// VOTERS +// VOTERS +/////////////////////////////////////////////// + + /////////////////////////////////////////////// + // Voter Files -- settings-api.php will drop the file with a timestamped filename into the tasks folder + // need to pick up the file from there and process + /////////////////////////////////////////////// + if($tasks[$i]['taskName'] == "voterFile" && $tasks[$i]['taskUpdate'] == "") { + $filename = $tasks[$i]['taskArgs']; + $header = Array(); + $rowcount = 0; + $pct = 0; + if(($fh = fopen("tasks/".$filename, 'r')) !== FALSE ) { + while(($data = fgetcsv($fh, 1000, ",")) !== FALSE) { + $rowcount++; + if(sizeOf($header) == 0) { + $header = $data; + } else { + // Insert the voter into the database, starting with the address + // First, check if the address already exists + // (This check is pretty basic; geocoder will normalize and verify these a bit more) + $query = "SELECT * FROM voterAddresses WHERE addressLine1=? AND addressLine2=? AND city=? AND zip=?;"; + $params = Array(strtoupper($data[18]), strtoupper($data[19]), strtoupper($data[20]), strtoupper($data[22])); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + $addresses = $stmt->fetchAll(); + $aids = Array(); + if(sizeof($addresses) != 0) { + for($j = 0; $j < sizeof($addresses); $j++) { + array_push($aids, $addresses[$j]['id']); + } + } else { + $query = "INSERT INTO voterAddresses(addressLine1, addressLine2, city, state, zip,". + "precinct, natConDistrict, stSenDistrict, stHouDistrict,". + "wardCouncil, wardDistrict, schoolDistrict, specialDistrict) ". + "VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?);"; + $params = Array(strtoupper($data[18]), strtoupper($data[19]), strtoupper($data[20]), strtoupper($data[21]), strtoupper($data[22]), + strtoupper($data[6]), strtoupper($data[7]), strtoupper($data[8]), strtoupper($data[9]), + strtoupper($data[11]), strtoupper($data[12]), strtoupper($data[13]), strtoupper($data[14])); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + $aids = Array($dbh->lastInsertId()); + } + if($aids == Array()) { + echo "ERROR: Could not find or insert address for line number: ".$rowcount." (".$data[18].", ".$data[20].")"; + continue; + } + + // Next, check if the voter already exists, by voter ID if we have it + if($data[17] != "") { + $query = "SELECT * FROM voters WHERE stateVoterId = ?;"; + $params = Array($data[17]); + } else { + $query = "SELECT * FROM voters WHERE firstName = ? AND lastName = ? AND birthYear = ? AND ". + "addressId IN(".str_repeat("?,",sizeof($aids)-1)."?);"; + $params = Array(strtoupper($data[0]), strtoupper($data[2]), strtoupper($data[3])); + for($j = 0; $j < sizeof($aids); $j++) { + array_push($params, $aids[$j]); + } + } + $stmt = $dbh->prepare($query); + $stmt->execute($params); + $voters = $stmt->fetchAll(); + + if(sizeof($voters) == 1) { + $vid = $voters[0]['id']; + // If this record has a newer registration date, update the voter details + if( strtotime($data[23]) > strtotime($voters[0]['registrationDate']) ) { + $query = "UPDATE voters SET firstName=?, middleName=?, lastName=?, birthYear=?, ". + "status=?, party=?, phone=?, email=?, stateVoterId=?, addressId=?, registrationDate=? ". + "WHERE id=?"; + $params = Array(strtoupper($data[0]), strtoupper($data[1]), strtoupper($data[2]), strtoupper($data[3]), + strtoupper($data[4]), strtoupper($data[5]), strtoupper($data[15]), strtoupper($data[16]), + strtoupper($data[17]), $aids[0], $data[23], $vid); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + $vid = $dbh->lastInsertId(); + } + } else { + $query = "INSERT INTO voters(firstName, middleName, lastName, birthYear, ". + "status, party, phone, email, ". + "stateVoterId, addressId, registrationDate) ". + "VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?);"; + $params = Array(strtoupper($data[0]), strtoupper($data[1]), strtoupper($data[2]), strtoupper($data[3]), + strtoupper($data[4]), strtoupper($data[5]), strtoupper($data[15]), strtoupper($data[16]), + strtoupper($data[17]), $aids[0], $data[23]); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + $vid = $dbh->lastInsertId(); + } + if($vid == null) { + echo "ERROR: Could not find or insert voter for line number: ".$rowcount." (".$data[3].", ".$data[1].")"; + continue; + } + + // Log the voting history + $histories = explode(";", $data[24]); + for($h = 0; $h < sizeof($histories); $h++) { + $query = "INSERT INTO voterHistory(voterId, year, election, voted) VALUES(?, ?, ?, ?);"; + $segments = explode("-", $histories[$h]); + $year = 0; + $election = ""; + if( sizeof($segments) > 0) { + $year = $segments[0]; + } + if( sizeof($segments) > 1) { + $election = $segments[1]; + } + $params= Array($vid, $year, $election, 1); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + } + + // Update when the percent changes + // Saving some time by not updating every single line...this is status info not a restart journal + if( floor(($rowcount*100) / $tasks[$i]['taskLastStep']) > $pct) { + $pct = floor(($rowcount*100) / $tasks[$i]['taskLastStep']); + $query = "UPDATE tasks SET taskStep=?, taskPercent=?, taskUpdate=CURRENT_TIMESTAMP WHERE id=?;"; + $params = Array((int)$rowcount, $pct, $tasks[$i]['id']); + //print_r($params); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + //print_r($dbh->errorInfo()); + } + } + } + } + $query = "UPDATE tasks SET taskStep=?, taskPercent=100, taskUpdate=CURRENT_TIMESTAMP, taskComplete = CURRENT_TIMESTAMP WHERE id=?"; + $params = Array($rowcount, $tasks[$i]['id']); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + + /////////////////////////////////////////////// + // Custom voter list + /////////////////////////////////////////////// + } else if($tasks[$i]['taskName'] == "customVoterFile" && $tasks[$i]['taskUpdate'] == "") { + $args = $tasks[$i]['taskArgs']; + $argArr = explode("|", $args); + $lid = $argArr[1]; + $filename = $argArr[0]; + + $rowCount = 0; + $insertCount = 0; + + $header = Array(); + if(($fh = fopen("/var/www/html/CCCP/tasks/".$filename, 'r')) !== FALSE ) { + while(($data = fgetcsv($fh, 1000, ",")) !== FALSE) { + if(sizeOf($header) == 0) { + $header = $data; + } else { + $rowCount++; + $vid = $data[0]; + $aid = $data[1]; + $fname = $data[2]; + $lname = $data[3]; + $addr1 = $data[4]; + $addr2 = $data[5]; + $city = $data[6]; + $state = $data[7]; + $zip = $data[8]; + $extra = Array(); + for($e = 9; $e < sizeOf($header); $e++) { + $extra[$header[$e]] = $data[$e]; + } + + $query = "UPDATE tasks SET taskStep = taskStep+1, taskPercent=100*(taskStep/taskLastStep), taskUpdate=CURRENT_TIMESTAMP WHERE id=?"; + $params= Array($tasks[$i]['id']); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + + if($vid == "" || $aid == "") { + // Check for existing matching address(es) + $query = "SELECT id FROM voterAddresses WHERE UPPER(CONCAT(addressLine1, ' ', addressLine2)) = ? AND UPPER(city) = ? AND ZIP = ?"; + $params = Array(strtoupper($addr1." ".$addr2), strtoupper($city), $zip); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + $aidRes = $stmt->fetchAll(); + + // Check for existing matching voter(s) + $query = "SELECT id, addressId FROM voters WHERE UPPER(firstName) = ? AND UPPER(lastName) = ?"; + $params = Array(strtoupper($fname), strtoupper($lname)); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + $vidRes = $stmt->fetchAll(); + + $options = Array(); + for($v = 0; $v < sizeOf($vidRes); $v++) { + for($a = 0; $a < sizeOf($aidRes); $a++) { + if($aidRes[$a]['id'] == $vidRes[$v]['addressId']) { + if( ($vid == "" || $vidRes[$v]['id'] == $vid) && + ($aid == "" || $vidRes[$v]['addressId'] == $aid) ) { + array_push($options, $vidRes[$v]); + } + } + } + } + + // If there are no matching voter/address combinations, insert an address and voter + // (These rows will be used for the geocoding and map display) + if( sizeOf($options) == 0 ) { + $query = "INSERT INTO voterAddresses(addressLine1,addressLine2,city,state,zip) VALUES (?,?,?,?,?);"; + $params = Array($addr1, $addr2, $city, $state, $zip); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + $aid = $dbh->lastInsertId(); + + $query = "INSERT INTO voters(addressId, firstName, lastName) VALUES (?,?,?);"; + $params = Array($aid, $fname, $lname); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + $vid = $dbh->lastInsertId(); + } if( sizeOf($options) == 1) { + if($vid == "") { + $vid = $options[0]['id']; + } if($aid == "") { + $aid = $options[0]['addressId']; + } + } else if ($aid == "") { + echo "Could not add voter; multiple matches on line: ".$rowCount." : ".$lname.", ".$fname.PHP_EOL; + continue; + } + + // Now insert the custom voter into the table + $query = "INSERT INTO customVoter(voterId, addressId, listId, extras) VALUES(?, ?, ?, ?);"; + $params = Array($vid, $aid, $lid, json_encode($extra)); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + + if($dbh->errorInfo()[0] == "00000") { + $insertCount++; + } else { + echo "Could not add voter; ".$dbh->errorInfo()[2]."(".$dbh->errorInfo()[0].") on line: ".$rowCount." : ".$lname.", ".$fname.PHP_EOL; + } + } + } + } + $query = "UPDATE tasks SET taskStep = taskStep+1, taskPercent=100, taskUpdate=CURRENT_TIMESTAMP, taskComplete=CURRENT_TIMESTAMP WHERE id=?;"; + $params= Array($tasks[$i]['id']); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + } + +/////////////////////////////////////////////// +// DEMOGRAPHICS +// DEMOGRAPHICS +/////////////////////////////////////////////// + + /////////////////////////////////////////////// + // CENSUS FILES + /////////////////////////////////////////////// + } else if($tasks[$i]['taskName'] == "censusFile") { + // Select the census data files + $pathArg = $tasks[$i]['taskArgs']; + $path = "/var/www/html/CCCP/tasks/".$pathArg."/"; + $metaFile = glob($path."*-Metadata.csv")[0]; + $descFile = glob($path."*-Table-Notes.txt")[0]; + $dataFile = glob($path."*-Data.csv")[0]; + + // Read the description and check if it is already loaded + $descFH = fopen($descFile, "r") or die("Unable to open data descriptor file at /var/www/html/CCCP/tasks/". + $pathArg."/".$descFile); + while($line = fgets($descFH)) { + if( preg_match("/ID: /", $line) != 0 ) { + $sourceId = trim(explode(":", $line)[1]); + } + if( preg_match("/Title: /", $line) != 0 ) { + $sourceDesc = trim(explode(":", $line)[1]); + } + } + fclose($descFH); + + if( !isset($sourceId) ) { + echo "Unable to read source ID from metadata file (".$metaFile.")".PHP_EOL; + $query = "UPDATE tasks SET taskStep=-1, taskPercent=0, taskUpdate=CURRENT_TIMESTAMP, taskComplete = CURRENT_TIMESTAMP WHERE id=?"; + $params = Array($idx, $tasks[$i]['id']); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + } + + // Check if it has been loaded already + $query = "SELECT * FROM demographicDefinitions WHERE sourceId = ?;"; + $params= Array($sourceId); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + $rows = $stmt->fetchAll(); + if(sizeof($rows) > 0) { + echo "Skipping already existing source file (".$metaFile.")".PHP_EOL; + $query = "UPDATE tasks SET taskStep=-1, taskPercent=0, taskUpdate=CURRENT_TIMESTAMP, taskComplete = CURRENT_TIMESTAMP WHERE id=?"; + $params = Array($tasks[$i]['id']); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + continue; + } + + // Store column definitions and types + $metaFH = fopen($metaFile, "r") or die("Unable to open metadata file at /var/www/html/CCCP/tasks/". + $pathArg."/".$metaFile); + + $totals=Array(); + $idx = 0; + while($line = fgetcsv($metaFH)) { + if( $line[0] == "Column Name" ) { + continue; + } + if( preg_match("/Annotation of/", $line[1]) == 0 && + preg_match("/Margin of Error/", $line[1]) == 0) { + $code = $line[0]; + $desc = $line[1]; + $descs = explode("!!", $desc); + $subdesc = str_replace("'", "", $descs[sizeof($descs)-1]); + // Insert a definition for each row + if( $code != "GEO_ID" && $code != "NAME" ) { + $query = "INSERT INTO demographicDefinitions(code, type, description, sourceName, sourceId) ". + "VALUES(?, 'R', ?, ?, ?) ON DUPLICATE KEY UPDATE code=?, type='R', description=?, sourceName=?, sourceId=?; "; + $params= Array($code, $subdesc, $sourceDesc, $sourceId, $code, $subdesc, $sourceDesc, $sourceId); + try { + $stmt = $dbh->prepare($query); + $stmt->execute($params); + } catch(Exception $ex) { + echo "Unable to insert or update definition ".$code.":".$subdesc." from source ".$sourceId.":".$sourceDesc.PHP_EOL; + print_r($ex); + continue; + } + } + // If the row is a total, set the type as 'T' + // Also store the column index into $totals + if( preg_match("/^Total:?$/", $descs[sizeof($descs)-1]) ) { + array_push($totals, $idx); + $query = "UPDATE demographicDefinitions SET type='T' WHERE code=?"; + $params= Array($code); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + } + } + + $idx++; + } + + // Store the areas for each stat + $dataFH = fopen($dataFile, "r") or die("Unable to open data file at /var/www/html/CCCP/tasks/". + $pathArg."/".$dataFile); + + $idx=0; + $cols = Array(); + while($line = fgetcsv($dataFH)) { + $idx++; + // First two rows are headers + if($idx == 1) { + $cols = $line; + } + if($idx <= 2) { + continue; + } + // Store the area type and ID, then find the corresponding ID in the database + $areaType = 0; + $typeId = 0; + for($iidx = 0; $iidx < sizeof($line); $iidx++) { + if( strpos($cols[$iidx], "GEO_ID") !== false ) { + if( preg_match("/^\"?7000000/", $line[$iidx]) != 0) { + $areaType = "precinct"; + $typeId = substr($line[$iidx], 16); + } + if( preg_match("/^\"?0400000/", $line[$iidx]) != 0) { + $areaType = "state"; + $typeId = substr($line[$iidx], 9); + } + if( preg_match("/^\"?1000000/", $line[$iidx]) != 0) { + $areaType = "block"; + $typeId = substr($line[$iidx], 14); + } + if( preg_match("/^\"?1500000/", $line[$iidx]) != 0) { + $areaType = "blockgroup"; + $typeId = substr($line[$iidx], 14); + } + } + } + $query = "SELECT id FROM demographicArea WHERE type=? AND typeid=?;"; + $params= Array($areaType, $typeId); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + $rows = $stmt->fetchAll(); + if( sizeof($rows) == 0) { + $query = "INSERT INTO demographicArea(type, typeId) VALUES(?,?);"; + $params= Array($areaType, $typeId); + try { + $stmt = $dbh->prepare($query); + $stmt->execute($params); + } catch(Exception $ex) { + echo "ERROR: Unable to insert into demographicArea(".$areaType.",".$typeId.")".PHP_EOL; + print_r($ex); + continue; + } + $areaId = $dbh->lastInsertId(); + } else { + $areaId = $rows[0]['id']; + } + + // Insert the stats + // For each column which has a value and is not the GEOID or NAME... + for($iidx = 0; $iidx < sizeof($line); $iidx++) { + if( $line[$iidx] != "null" && $cols[$iidx] != "GEO_ID" && + $cols[$iidx] != "NAME" && $line[$iidx] != "" && + preg_match("/Annotation of/", $cols[$iidx]) == 0 && + preg_match("/Margin of Error/", $cols[$iidx]) == 0) { + // If we flagged some total columns when reading the metadata earlier, + // then we can use those to calculate the percentages + if( sizeof($totals) > 0 ) { + // But there might be multiple totals, so find the nearest preceeding one to the selected data column + for($tidx = 0; $tidx < sizeof($totals); $tidx++) { + if( $totals[$tidx] < $iidx && $totals[$tidx] != $iidx && + ($tidx+1 == sizeof($totals) || $totals[$tidx+1] > $iidx) ) { + // Assuming we have a value in the cell and the total, calculate the relative percent + if( isset($line[$totals[$tidx]]) && (float)$line[$iidx] != 0 && + $line[$totals[$tidx]] != "" && (float)$line[$totals[$tidx]] != 0) { + $query = "UPDATE demographicDefinitions SET type='R' WHERE code=?"; + $params= Array($cols[$iidx]); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + $line[$iidx] = ((float)$line[$iidx] / (float)$line[$totals[$tidx]]); + break; + } + } + } + $query = "REPLACE INTO demographicStats(areaId, definitionId, value) ". + "VALUES(?, (SELECT id FROM demographicDefinitions WHERE code = ?), ?);"; + $params= Array($areaId, $cols[$iidx], $line[$iidx]); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + } + } + } + $query = "UPDATE tasks SET taskStep=?, taskPercent=100*(taskStep/taskLastStep), taskUpdate=CURRENT_TIMESTAMP WHERE id=?"; + $params = Array($idx, $tasks[$i]['id']); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + } + $query = "UPDATE tasks SET taskStep=?, taskPercent=100, taskUpdate=CURRENT_TIMESTAMP, taskComplete = CURRENT_TIMESTAMP WHERE id=?"; + $params = Array($idx, $tasks[$i]['id']); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + + /////////////////////////////////////////////// + // CENSUS AREA FILE + /////////////////////////////////////////////// + } else if($tasks[$i]['taskName'] == "censusAreaFile") { + // Open the geojson file + $targetFile = "/var/www/html/CCCP/tasks/".$tasks[$i]['taskArgs']; + $geojson = file_get_contents($targetFile); + $geoObj = json_decode($geojson); + + // Initial status update based on the number of features to be loaded + $query = "UPDATE tasks SET taskLastStep=? WHERE id=?"; + $params = Array(sizeof((array)$geoObj->features), $tasks[$i]['id']); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + + // Generate a random valua to identify this iteration + // Some areas are not contiguous which means they may appear in features list twice + // And when this happens we need to know if we are overwriting existing data or adding to it + $pid = rand(); + + // Iterate through each feature + $progress = 0; + foreach($geoObj->features as $feature) { + // Update the progress + $progress++; + $query = "UPDATE tasks SET taskStep=?, taskPercent=100*(taskStep/taskLastStep), taskUpdate=CURRENT_TIMESTAMP WHERE id=?;"; + $params = Array($progress, $tasks[$i]['id']); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + + // Get the feature's GEO ID and attempt to determine the type + $areaType = "0"; + $typeId = "0"; + if( isset($feature->properties->AFFGEOID) ) { + $geoid = $feature->properties->AFFGEOID; + } else if( isset($feature->properties->AFFGEOID20) ) { + $geoid = $feature->properties->AFFGEOID20; + } else { + $geoid = $feature->properties->GEOID20; + } + + // https://www.census.gov/programs-surveys/geography/technical-documentation/naming-convention/cartographic-boundary-file/carto-boundary-summary-level.html + if( preg_match("/^7000000/", $geoid) != 0) { + $areaType = "precinct"; + $typeId = substr($geoid, 16); + } else if( preg_match("/^0400000/", $geoid) != 0) { + $areaType = "state"; + $typeId = substr($geoid, 9); + } else if( preg_match("/^1500000/", $geoid) != 0) { + $areaType = "blockgroup"; + $typeId = substr($geoid, 14); + } else if( preg_match("/^1000000/", $geoid) != 0) { + $areaType = "block"; + $typeId = substr($geoid, 14); + } else if( preg_match("/^970/", $geoid) != 0) { + $areaType = "unified school"; + $typeId = substr($geoid, 11); + } else if( preg_match("/^610/", $geoid) != 0) { + $areaType = "state senate"; + $typeId = substr($geoid, 11); + } else if( preg_match("/^620/", $geoid) != 0) { + $areaType = "state house"; + $typeId = substr($geoid, 11); + } else if( preg_match("/^Block/", $feature->properties->NAME20) != 0) { + $areaType = "block"; + $typeId = substr($geoid, 5); + } else if( isset($feature->properties->DISTRICT) ) { + $areaType = "precinct"; + $typeId = $feature->properties->DISTRICT; + } + + // Purge any prior entries for this area + $query = "UPDATE demographicArea SET json='' WHERE type=? AND typeId=? AND updatedBy != ?;"; + $params= Array($areaType, $typeId, $pid); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + + // Select any current entries for this area + $query = "SELECT * FROM demographicArea WHERE type=? AND typeId=?;"; + $params= Array($areaType, $typeId); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + $row = $stmt->fetchAll(); + + // Use MariaDB to normalize json + // If it's a multipolygon, leave it + // If it's a linestring, ST_GeomFromGeoJSON(@j) to create geometry object; ST_AsGeoJSON(g[, max_decimals[, options]]) to convert back to geojson + // convert linestring to multipolygon with MULTIPOLYGON(POLYGON(...)) + + // Add the current feature to any existing json + // Very clumsy attempts to transform object types + if( (isset($feature->properties->type) && $feature->properties->type != "multipolygon") || + (isset($feature->geometry->type) && $feature->geometry->type != "MultiPolygon")) { + $query = "SELECT ST_AsGeoJSON(MULTIPOLYGON(POLYGON(ST_GeomFromGeoJSON(?)))) as json FROM dual;"; + $params = Array(json_encode($feature)); + $stmt = $dbh->prepare($query); + $stmt -> execute($params); + $irow = $stmt->fetchAll(); + $geometry = json_decode($irow[0]['json']); + if( $geometry->coordinates != null ) { + $feature->geometry = $geometry; + } else { + echo "NULL COORDINATES: ".PHP_EOL; + print_r($geometry); + echo json_encode($feature->geometry).PHP_EOL; + } + if( isset($feature->geometry) ) { + $feature->geometry->type = "MultiPolygon"; + } + } + + // Ensure it's a proper multipolygon? +/* if( !is_array($feature->geometry->coordinates[0][0]) ) { + $feature->geometry->coordinates = Array($feature->geometry->coordinates); + } + if( !is_array($feature->geometry->coordinates[0][0][0]) && sizeof($feature->geometry->coordinates) == 1 ) { + $feature->geometry->coordinates = Array($feature->geometry->coordinates); + }*/ + + // Append to any existing data + // TODO: CONVERT TO MARIADB -- ST_COLLECT AND ST_LINEMERGE THEN MULTIPOLYGON +/* if(sizeof($row) > 0 && $row[0]['json'] == "") { + echo "NULL JSON APPEND: ".$typeId.PHP_EOL; + }*/ + if(sizeof($row) > 0 && $row[0]['json'] != "") { + echo "Appending for: ".$typeId.PHP_EOL; +/* $currObj = json_decode($row[0]['json']); + $coords = $feature->geometry->coordinates; + for($c = 0; $c < sizeof($currObj->geometry->coordinates); $c++ ) { + for($d = 0; $d < sizeof($currObj->geometry->coordinates[$c]); $d++) { + array_push($coords[0], $currObj->geometry->coordinates[$c][$d]); + } + } + $feature->geometry->coordinates = $coords;*/ + $query = "SELECT ST_AsGeoJSON(MULTIPOLYGON(POLYGON(ST_GeomFromGeoJSON(?), ST_GeomFromGeoJSON(?)))) as json FROM dual;"; + $params = Array(json_encode($feature), $row[0]['json']); + $stmt = $dbh->prepare($query); + $stmt -> execute($params); + $irow = $stmt->fetchAll(); + $geometry = json_decode($irow[0]['json']); + if( $geometry->coordinates != null ) { + $feature->geometry = $geometry; + } else { + echo "NULL COORDINATES 2: ".PHP_EOL; + print_r($geometry); + echo json_encode($feature->geometry).PHP_EOL; + } + if( isset($feature->geometry) ) { + $feature->geometry->type = "MultiPolygon"; + } + } + + // Calculate min/max lat/lon values + $minLat = 0; + $minLon = 0; + $maxLat = 0; + $maxLon = 0; + + foreach($feature->geometry->coordinates as $oset) { + foreach($oset as $mset) { + if( !is_array($mset) ) { + $mset = $oset; + } + foreach($mset as $set) { + if( !is_array($set) ) { + $set = $mset; + } + foreach($set as $coords) { + if( !is_array($coords) ) { + $coords = $set; + } + if( $coords[0] < $minLat || $minLat == 0 ) { + $minLat = $coords[0]; + } + if( $coords[0] > $maxLat || $maxLat == 0 ) { + $maxLat = $coords[0]; + } + if( $coords[1] < $minLon || $minLon == 0 ) { + $minLon = $coords[1]; + } + if( $coords[1] > $maxLon || $maxLon == 0 ) { + $maxLon = $coords[1]; + } + } + } + } + } + + $feature->geometry->type = "MultiPolygon"; + + + // Update the demographicArea table + $query = "INSERT INTO demographicArea(type, typeId, minLat, minLon, maxLat, maxLon, json, geometry, updatedBy) ". + "VALUES(?, ?, ?, ?, ?, ?, ?, ST_GeomFromGeoJSON(?), ?) ON DUPLICATE KEY UPDATE ". + "minLat=VALUES(minLat), minLon=VALUES(minLon), maxLat=VALUES(maxLat), maxLon=VALUES(maxLon), json=VALUES(json), geometry=ST_GeomFromGeoJSON(VALUES(geometry)) updatedBy=VALUES(updatedBy);"; + $params= Array($areaType, $typeId, $minLat, $minLon, $maxLat, $maxLon, json_encode($feature), json_encode($feature), $pid); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + } + $query = "UPDATE tasks SET taskStep=?, taskPercent=100, taskUpdate=CURRENT_TIMESTAMP, taskComplete = CURRENT_TIMESTAMP WHERE id=?;"; + $params = Array($progress, $tasks[$i]['id']); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + + + /////////////////////////////////////////////// + // GEOCODING + /////////////////////////////////////////////// + } else if($tasks[$i]['taskName'] == "geocoder.geoapify" || + $tasks[$i]['taskName'] == "geocoder.maps.co" || + $tasks[$i]['taskName'] == "geocoder.tomtom") { + // Fetch geocoder config + $query = "SELECT * FROM config WHERE configName LIKE 'geocoder.%'"; + $stmt = $dbh->prepare($query); + $stmt->execute(); + $rows = $stmt->fetchAll(); + + $CONFIG = Array(); + for($j = 0; $j < sizeof($rows); $j++) { + $CONFIG[$rows[$j]['configName']] = $rows[$j]['configValue']; + } + + if($tasks[$i]['taskName'] == "geocoder.geoapify") { + $maxDaily = (int)($CONFIG['geocoder.geoapify.maxdaily']); + } else if($tasks[$i]['taskName'] == "geocoder.maps.co") { + $maxDaily = (int)($CONFIG['geocoder.maps.co.maxdaily']); + } else if($tasks[$i]['taskName'] == "geocoder.tomtom") { + $maxDaily = (int)($CONFIG['geocoder.tomtom.maxdaily']); + } + $maxCount = $maxDaily / 20; + + // If no geocode task for today, close out any existing and create one + $query = "SELECT * FROM CCCP.tasks WHERE taskName=? AND taskStart > date_sub(current_timestamp, interval 1 day)"; + $stmt = $dbh->prepare($query); + $stmt->execute( Array($tasks[$i]['taskName']) ); + $geoTasks = $stmt->fetchAll(); + if( sizeof($geoTasks) == 0) { + echo "Opening a new daily geocoder task".PHP_EOL; + // Update any unfinished old tasks as complete and start a new one for today + $query = "UPDATE CCCP.tasks SET taskComplete=CURRENT_TIMESTAMP ". + "WHERE taskName=? AND taskComplete IS NULL AND ". + "taskStart < current_timestamp"; + $stmt = $dbh->prepare($query); + $stmt->execute(Array($tasks[$i]['taskName'])); + + $query = "INSERT INTO CCCP.tasks(taskName, taskStart, taskStep, taskLastStep, taskPercent) ". + "VALUES(?, CURRENT_TIMESTAMP, ?, ?, ?)"; + $params= Array($tasks[$i]['taskName'], 0, $maxDaily, 0); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + $tid = $dbh->lastInsertId(); + } else { + $tid = $geoTasks[0]['id']; + } + + // Check if we are over 100% + if($tasks[$i]['taskStep'] >= $tasks[$i]['taskLastStep']) { + $query = "UPDATE tasks SET taskPercent=100*(taskStep/taskLastStep), taskUpdate=CURRENT_TIMESTAMP WHERE id=?"; + $params= Array($tid); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + continue; + } else { + $maxGeocodes = $tasks[$i]['taskLastStep'] - $tasks[$i]['taskStep']; + } + + // Run (approximately) one hour's worth of geocodes + $updated = $tasks[$i]['taskStep']; + // Select the next max addresses; just don't worry about parents being in the same batch + $query = "select va.id as id, va.addressLine1, va.addressLine2, va.city, va.state, va.zip ". + "from voterAddresses va, voters v WHERE v.addressId = va.id AND va.latitude IS NULL ". + "AND (SELECT id FROM geocodeResults WHERE engine=? AND addressId=va.id LIMIT 1) IS NULL ". + "order by va.id desc limit ?;"; + $stmt = $dbh->prepare($query); + $stmt->execute( Array($tasks[$i]['taskName'], $maxGeocodes) ); + $geocodes = $stmt->fetchAll(); + if( sizeof($geocodes) == 0 ) { + echo "No pending geocodes"; + continue; + } + + // Run the geocode + for($g = 0; $g < $maxCount && $g < sizeof($geocodes); $g++) { + $addr1= $geocodes[$g]['addressLine1']; + $addr2= $geocodes[$g]['addressLine2']; + $addr = $addr1." ".$addr2; + $city = $geocodes[$g]['city']; + $state= $geocodes[$g]['state']; + $zip = sprintf("%05d", $geocodes[$g]['zip']); + + $query = "UPDATE tasks SET taskStep = taskStep+1, taskPercent=100*(taskStep/taskLastStep), ". + "taskUpdate=CURRENT_TIMESTAMP WHERE id=?"; + $params= Array($tid); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + + // Query the address + if($tasks[$i]['taskName'] == "geocoder.geoapify") { + $url = "https://api.geoapify.com/v1/geocode/search?text=".urlencode($addr." ".$city." ".$state." ".$zip). + "&apiKey=".$CONFIG['geocoder.geoapify.key']; + $results = file_get_contents($url); + $resultsObj = json_decode($results); + + if( !isset($resultsObj->features[0]->properties->lat) ) { + echo "ERROR: Invalid response returned from ".$tasks[$i]['taskName'].PHP_EOL; + print_r($resultsObj); + continue 1; + } + + $lat = $resultsObj->features[0]->properties->lat; + $lon = $resultsObj->features[0]->properties->lon; + $resAddr = $resultsObj->features[0]->properties->address_line1; + $resCity = $resultsObj->features[0]->properties->city; + $resState= $resultsObj->features[0]->properties->state_code; + $resZip = $resultsObj->features[0]->properties->postcode; + // Sometimes geoapify doesn't return a zipcode...not sure why...but we don't really need it anyway + if( !isset($resultsObj->features[0]->properties->postcode) ) { + echo "ERROR: Postcode not returned from geocoder.geoapify".PHP_EOL; + continue; + } + } else if($tasks[$i]['taskName'] == "geocoder.maps.co") { + $addr = preg_replace('/APT [0-9]* /', "", $addr); + $addr = preg_replace('/UNIT [0-9]* /', "", $addr); + $query = preg_replace('/ */', ' ', $addr." ".$city." ".$state." ".$zip); + + $url = "https://geocode.maps.co/search?q=".urlencode($query). + "&api_key=".$CONFIG['geocoder.maps.co.key']; + sleep(1); + $results = file_get_contents($url); + $resultsObj = json_decode($results); + + // Maps.co is less effective at parsing certain addresses, so it's likely to get no results + if( !is_array($resultsObj) || sizeof($resultsObj) == 0) { + echo "No Maps.co results for address ID: ".$geocodes[$g]['id'].PHP_EOL; + continue; + } + + if( !isset($resultsObj[0]->lat) ) { + echo "ERROR: Invalid response returned from ".$tasks[$i]['taskName'].PHP_EOL; + print_r($resultsObj); + continue; + } + + $lat = $resultsObj[0]->lat; + $lon = $resultsObj[0]->lon; + $resAddr = ""; + $resCity = ""; + $resState= ""; + $resZip = ""; + } else if($tasks[$i]['taskName'] == "geocoder.tomtom") { + $url = "https://api.tomtom.com/search/2/geocode/".urlencode($addr." ".$city." ".$state." ".$zip). + ".json?key=".$CONFIG['geocoder.tomtom.key']. + "&typeahead=false&limit=1&ofs=0&lat=41.5&lon=-71.5"; + sleep(.5); + $results = file_get_contents($url); + $resultsObj = json_decode($results); + + // Maps.co is less effective at parsing certain addresses, so it's likely to get no results + if( !is_array($resultsObj->results) || sizeof($resultsObj->results) == 0) { + echo "No TomTom results for address ID: ".$geocodes[$g]['id']; + continue; + } + + if( !isset($resultsObj->results[0]->position->lat) ) { + echo "ERROR: Invalid response returned from ".$tasks[$i]['taskName'].PHP_EOL; + print_r($resultsObj); + print_r($geocodes[$g]); + continue; + } + + if( !isset($resultsObj->results[0]->address->streetNumber) ) { + echo "ERROR: Invalid address returned from ".$tasks[$i]['taskName'].PHP_EOL; + print_r($resultsObj); + print_r($geocodes[$g]); + continue; + } + + $lat = $resultsObj->results[0]->position->lat; + $lon = $resultsObj->results[0]->position->lon; + $resAddr = $resultsObj->results[0]->address->streetNumber. + " ".$resultsObj->results[0]->address->streetName; + $resCity = $resultsObj->results[0]->address->municipality; + $resState= $resultsObj->results[0]->address->countrySubdivision; + $resZip = $resultsObj->results[0]->address->postalCode; + } + + + // Log the geocode result + $query = "INSERT INTO geocodeResults(engine, addressId, latitude, longitude, response) VALUES(?,?,?,?,?);"; + $params= Array($tasks[$i]['taskName'], $geocodes[$g]['id'], $lat, $lon, json_encode($resultsObj)); + $stmt = $dbh->prepare($query); + $stmt->execute($params); + + // Update the address + $query = "UPDATE voterAddresses SET longitude=?, latitude=?, addressLine1=?, city=?, state=?, zip=? WHERE id=?;"; + $params= Array($lon, $lat, + $resAddr != "" ? $resAddr : $addr1, + $resCity != "" ? $resCity : $city, + $resState!= "" ? $resState : $state, + $resZip != "" ? $resZip : $zip, + $geocodes[$g]['id']); + $stmt = $dbh->prepare($query); + if( $dbh->errorInfo()[0] == "00000") { + try { + $stmt->execute($params); + } catch(Exeception $ex) { + echo "ERROR INSERTING DATA INTO voteAddresses".PHP_EOL; + print_r($params); + print_r($ex); + continue; + } + } + if( $dbh->errorInfo()[0] == "00000" ) { + echo $g.":Updated voterAddress: ".$geocodes[$g]['id'].PHP_EOL; + $updated++; + } else { + echo "FAILED to update voterAddress ID:".geocodes[$g]['id'].PHP_EOL; + echo "BEGIN DATASET: ERROR INFO, PARAMS".PHP_EOL; + print_r($dhb->errorInfo()); + print_r($params); + echo "END DATASET".PHP_EOL; + } + + // Check if it's an apartment, and update all similar addresses + if( preg_match("/APT/", strtoupper($addr)) !== FALSE || + preg_match("/UNIT/", strtoupper($addr)) !== FALSE ) { + $searchAddr = str_replace("UNIT [0-9A-Z]*", "", str_replace("APT [0-9A-Z]*", "", $addr)); + $query = "UPDATE voterAddresses SET latitude=?, longitude=?, parentGeocode=? WHERE CONCAT(UPPER(addressLine1),' ',UPPER(addressLine2)) = ? AND city=? AND state=? AND zip=? AND latitude IS NULL;"; + $params= Array($lon, $lat, $geocodes[$g]['id'], $searchAddr, $city, $state, $zip); + } + +// if( $g % 10 == 0) { +// $query = "UPDATE tasks SET taskStep = taskStep+1, taskPercent=100*(taskStep/taskLastStep), taskUpdate=CURRENT_TIMESTAMP WHERE id=?"; +// $params= Array($tid); +// $stmt = $dbh->prepare($query); +// $stmt->execute($params); +// } + } + + // Update today's geocoder task +/* $query = "UPDATE tasks SET taskStep = taskStep + ?, taskPercent=100*(taskStep/taskLastStep), taskUpdate=CURRENT_TIMESTAMP WHERE id=?"; + $params= Array($updated, $tid); + $stmt = $dbh->prepare($query); + $stmt->execute($params);*/ + } + +/////////////////////////////////////////////// +// DISTRICTS & ELECTIONS +// DISTRICTS & ELECTIONS +/////////////////////////////////////////////// + + /////////////////////////////////////////////// + // Load Districts + /////////////////////////////////////////////// + else if($tasks[$i]['taskName'] == "districtFile" && $tasks[$i]['taskUpdate'] == "") { + + } +} + +// Trigger task execution +// TODO: Only trigger if it hasn't run in past hour? +// exec("sleep 3600; nohup php ./taskRunner.php 1>>taskRunner.log 2>&1 &"); + +$query = "UPDATE config SET configValue='' WHERE configName='taskRunStatus';"; +$stmt = $dbh->prepare($query); +$stmt->execute(); + +?> -- 1.8.3.1